diff --git a/docs/JFM_WYQ/SR_Draft.md b/docs/JFM_WYQ/SR_Draft.md new file mode 100644 index 0000000..4cfc5ee --- /dev/null +++ b/docs/JFM_WYQ/SR_Draft.md @@ -0,0 +1,452 @@ +# Symbolic regression of learned flow-control policies + +## 1. Purpose, evidence hierarchy and scope + +The deep-reinforcement-learning (DRL) controllers used for hydrodynamic cloaking and illusion are effective, but their neural-network representation does not directly expose the control mechanism. Symbolic regression (SR) is therefore used as a post hoc policy-reduction method. The fitted expressions are empirical observation-to-action surrogates on states visited by PPO; they are not governing equations and are not identified directly from the Navier--Stokes equations. + +This distinction matters in closed loop. A formula can reproduce PPO actions on a recorded trajectory and still alter the state distribution after deployment, accumulate phase error, develop an action bias, or destabilize CFD. Consequently, offline regression metrics are used to discover variables and topologies, whereas finite closed-loop CFD and trajectory similarity decide whether a candidate is useful. Term deletion and coefficient scaling then assess which parts of a deployed candidate matter. + +The active software has three executable stages: + +1. `stage_1_infer.py` collects contract-audited PPO trajectories; +2. `stage_2_fit.py` performs symbolic discovery and fixed-topology coefficient refitting; +3. `stage_3_validate.py` deploys PPO, symbolic, constant, or uncontrolled policies in CFD. + +Within Stages 2--3, model selection has five phases: per-case discovery, within-objective joint discovery, topology freezing and coefficient refit, short and standard CFD screening, and term deletion/scaling. These phases are not additional software stages. + +The fitted article evidence is deliberately narrower than the complete flow-control project. It contains four periodic Kármán-street cloaking policies and three cylinder-wake illusion policies. Kármán and illusion are never pooled into one regression. The disturbance-free steady scene is used only for post-selection calibration of the Kármán law. Transient-vortex, erase, V5, and historical SINDy analyses are outside the fitted evidence considered here. + +Two evidence generations must remain separate: + +- the **2026-07-18 primary evidence** contains the seven training trajectories, symbolic discovery, fixed-topology refits, 40-step screening, 200-step validation, and term tests; +- the **2026-07-20 coefficient-frozen extension** contains steady calibration, per-case diagnostic refits, 400-step duration tests, CSV exports, and pointwise unseen-condition deployments. + +No extension condition participated in topology selection or coefficient estimation. + +## 2. Physical labels, state contract and action units + +### 2.1 Reynolds-number and target-size conventions + +The inlet speed is \(U_0=0.01\) in lattice units and the pinball-cylinder diameter is \(D=20\). The historical Kármán scene names use a code Reynolds label based on the reference length \(2D=40\): + +\[ +Re_D=\frac{U_0D}{\nu}=\frac{\texttt{re\_code}}{2}. +\] + +Thus `karman_re50`, `karman_re100`, `karman_re200`, and `karman_re400` denote \(\texttt{re\_code}=50,100,200,400\), corresponding to \(Re_D=25,50,100,200\). Both conventions must be stated whenever physical Reynolds numbers are compared. + +The illusion scene names `illusion_0.75L`, `illusion_1L`, and `illusion_1.5L` are legacy target-size labels. Despite the historical configuration field name `target_diameter`, its value times \(L=20\) is passed to `LegacyCelerisLab.add_cylinder` as the cylinder **radius**. The labels are retained for provenance, but they must not be described as target-cylinder diameters. + +The Kármán control sampling interval is 800 lattice steps. Illusion intervals are 400, 600, and 800 steps for the 0.75L, 1L, and 1.5L labels. With the convective scale \(D/U_0=2000\) lattice steps, + +\[ +\Delta t_c=\frac{\mathrm{sample\ interval}}{D/U_0}, +\] + +so the dimensionless control intervals are 0.4 for Kármán and 0.2, 0.3, and 0.4 for the three illusion scenes. + +### 2.2 Native ordering + +The canonical body and action order is + +\[ +(\mathrm{front},\mathrm{upper},\mathrm{lower}). +\] + +The six downstream sensor channels are ordered + +\[ +(u_U,v_U,u_C,v_C,u_L,v_L), +\] + +and the six force channels are + +\[ +(F_{x,F},F_{y,F},F_{x,U},F_{y,U},F_{x,L},F_{y,L}). +\] + +This order follows the audited LegacyCelerisLab object IDs and force slots. It is not inferred from force signs. The runtime order gate is rerun after CFD or kernel changes because a silent slot permutation would change the physical meaning of every fitted coefficient. + +### 2.3 PPO normalization and SR nondimensionalization + +Two different transformations must not be conflated. PPO receives a clipped normalized observation: forces are divided by `force_norm_fact`, sensor velocities are centred by `sens_deviation` and divided by `sens_norm_fact`, and the result is clipped to \([-1,1]\). Illusion appends the normalized two-component target-cylinder force. The article trajectories use frozen existing normalization rather than recomputing normalization on each rollout. + +SR does not fit these clipped PPO inputs. Recorded raw lattice data are converted to physical dimensionless features: + +\[ +\hat u=u/U_0,\qquad \hat v=v/U_0, +\] + +\[ +C_d=\frac{2F_x}{\rho U_0^2D},\qquad +C_l=\frac{2F_y}{\rho U_0^2D}, +\] + +with \(\rho=1\). The regression target is dimensionless cylinder surface velocity + +\[ +\boldsymbol{\alpha}_t +=\frac{\boldsymbol{\omega}_t}{U_0} +=(\alpha_{F,t},\alpha_{U,t},\alpha_{L,t})^{\mathsf T}. +\] + +A PPO-normalized command is decoded before fitting as + +\[ +\boldsymbol{\alpha} +=s_a\mathbf a_{\mathrm{norm}}+\mathbf b_a. +\] + +The Kármán action scale and bias are \(s_a=8\) and \((0,-4,4)\); the illusion values are \(s_a=4\) and \((0,-2,2)\). Stage 1 stores the normalized command, dimensionless \(\alpha\), and lattice \(\omega=U_0\alpha\), making unit conversion auditable. + +## 3. Article trajectories and causal dataset + +Seven new deterministic PPO trajectories were collected: + +\[ +\mathcal D_K=\{\texttt{re50},\texttt{re100},\texttt{re200},\texttt{re400}\}, +\] + +\[ +\mathcal D_I=\{0.75L,1L,1.5L\}. +\] + +Each trajectory contains 200 recorded post-action states. The causal contract is + +\[ +x_i\longmapsto\alpha_{i+1}, +\] + +named `causal_post_state_to_next_action`. At state \(x_i\), action-history features may use \(\alpha_i\) and \(\alpha_{i-1}\), but never a future action. The requirement for \(\alpha_{i+1}\) removes the final state and the two-row action-history warm-up removes indices 0 and 1, leaving state indices 2--198: 197 fitted rows per trajectory. + +Every trajectory is aligned and split independently before stacking. The discovery split is contiguous 60/20/20% train, validation, and blind data; temporal rows are not randomly shuffled and boundaries never cross trajectories. The blind block is not fitted during topology discovery. After a topology has been frozen, its numerical constants are refitted on all eligible aligned rows. Therefore, the blind block protects topology selection but is no longer an untouched holdout after final refitting; final scientific acceptance comes from closed-loop CFD. + +The PPO model was replayed on each stored causal state using the frozen observation normalization and decoder. All seven action sequences reproduced exactly. Historical and pre-contract trajectories remain available for diagnosis but are not pooled with the article dataset. + +## 4. Candidate variables and reflection symmetry + +### 4.1 Feature libraries + +The `raw_complete` representation contains twelve variables: six dimensionless sensor velocities and the drag/lift coefficients of the front, upper, and lower cylinders. + +The `symmetry` representation contains fourteen variables: + +\[ +(u_s,u_a,u_c,v_s,v_a,v_c, +C_{d,F},C_{d,\mathrm{rear},s},C_{d,\mathrm{rear},a},C_{d,\mathrm{tot}}, +C_{l,F},C_{l,\mathrm{rear},s},C_{l,\mathrm{rear},a},C_{l,\mathrm{tot}}). +\] + +The rear and sensor coordinates use half-sums and half-differences. For example, + +\[ +u_s=\frac{u_U+u_L}{2},\qquad +u_a=\frac{u_U-u_L}{2}, +\] + +\[ +C_{d,\mathrm{rear},s}=\frac{C_{d,U}+C_{d,L}}{2},\qquad +C_{d,\mathrm{rear},a}=\frac{C_{d,U}-C_{d,L}}{2}, +\] + +with identical conventions for \(v\) and lift. This factor of one half is part of the formula contract: omitting it would rescale the reported coefficients. + +Illusion discovery compares four controlled profiles: + +- `actual_only`: actual-state variables only; +- `target_only`: target \(C_d\) and \(C_l\) only; +- `actual_plus_target`: actual state plus target force coefficients; +- `actual_plus_error`: actual state plus \(C_{d,\mathrm{tot}}-C_{d,\mathrm{target}}\) and \(C_{l,\mathrm{tot}}-C_{l,\mathrm{target}}\). + +The article discovery does not add trigonometric phase coordinates or a manual bias column. PySR may still create numerical constants. Cross-correlation is never used to choose a feature lag. + +### 4.2 Complete reflection map + +Reflection \(G\) about the centreline exchanges upper and lower positions. Streamwise velocity is even, transverse velocity is odd, drag is even, and lift is odd. Thus upper/lower sensor and force slots are exchanged with the appropriate transverse/lift sign reversal. Front drag is even and front lift is odd. Target drag is even and target lift is odd. The same map is applied to any action history. + +The native action transforms as + +\[ +G_a(\alpha_F,\alpha_U,\alpha_L) +=(-\alpha_F,-\alpha_L,-\alpha_U). +\] + +Fit augmentation and deployment architecture are separate. G augmentation adds mirrored state-action rows during fitting. The final mapped-shared deployment imposes + +\[ +\operatorname{odd}[h](x)=\frac{h(x)-h(Gx)}{2}, +\] + +\[ +\alpha_F(x)=\operatorname{odd}[h_F](x),\qquad +\alpha_U(x)=h_R(x),\qquad +\alpha_L(x)=-h_R(Gx). +\] + +This is a physical inductive bias imposed on the symbolic controller. It does not establish exact PPO equivariance, and symmetrization may modify as well as simplify the PPO policy. Independent three-head fits are retained only as diagnostics of PPO structure. + +## 5. Discovery, refitting and safety + +### 5.1 PySR discovery + +The discovery grammar uses binary \(+\), \(-\), and multiplication, with `square` as the unary operator. Search is deterministic and serial, without batching. The full defaults are 30 populations, population size 33, tournament size 10, maximum expression size 15, constant complexity 2, and parsimony 0.01. The bounded article discovery configuration (`--smoke`) uses two populations, population size 16, tournament size 4, and maximum size 7. At least three deterministic seeds are run per case/profile. + +Only training blocks are fitted. Up to 25 retained Pareto candidates per head are evaluated on contiguous train, validation, and blind blocks using \(R^2\), MAE, RMSE, maximum error, complexity, and used variables. Static safety is a finite-value probe over sparse points spanning observed feature ranges; because no required output interval is supplied, it is not a global action-range guarantee. + +Topology selection is a manual, evidence-based scientific step. It considers recurrence across seeds and cases, held-out diagnostics, complexity, finite static evaluation, compatibility with mapped-shared deployment, and CFD viability. PySR score or \(R^2\) never automatically promotes a formula, and an average cannot hide failure in one required scene. + +### 5.2 Fixed-topology refit + +After selecting a recurring topology, every numerical literal is replaced by a separate optimization parameter while operators and feature occurrences remain fixed. Constants are optimized with `scipy.optimize.least_squares`. Residuals use square-root sample weights so each case has equal total mass and trajectories within a case also have equal mass. Mapped-shared refits retain G augmentation. The artifact records initial/refitted constants, optimizer status, aggregate/per-case/per-trajectory metrics, discovery-parent path and hash, dataset hashes, feature order, action units, alignment, and deployment semantics. + +Offline metrics describe PPO action imitation on PPO-visited states. They cannot be ranked directly against closed-loop DTW because symbolic deployment changes the state distribution. + +### 5.3 Formula and CFD safety + +Formula artifacts carry separate fitted/deployment expressions and hashes. Evaluation permits only declared features and a restricted function set, rejects unsupported syntax and variables, and performs a zero-state probe when Stage 3 loads a formula pair. Static finite probing is only a pre-screen. + +Closed-loop safety is decisive. The symbolic policy maintains separate online feature histories for \(x\) and \(Gx\), initialized from the scene policy action. Every action and raw CFD observation is checked for finiteness. A failure retains partial telemetry, failed-step information, hashes, and the exception instead of overwriting the run. Candidates first receive a 40-step screen, then a 200-step standard validation. The 2026-07-20 extension adds 400-step tests without changing coefficients. + +### 5.4 Legacy DTW metric + +The only article metric is `legacy_dtw_v1_abs_n_unclipped`, recorded under `legacy_reference_cycle_vs_last_recorded_cycle`. For Kármán, `conv_len=30`; for illusion, `conv_len=36`. Lag is selected from transverse sensor channel 1 by cross-correlating target samples `conv_len:2*conv_len` with the final controlled `conv_len` samples. The complete target sequence is circularly shifted by that lag. Absolute, normalized, unclipped DTW similarity + +\[ +S_j=1-\frac{d_{\mathrm{DTW}}(y^{\mathrm{target}}_j,y^{\mathrm{controlled}}_j)}{N} +\] + +is then computed independently for all six sensor channels, and the reported value is their arithmetic mean. One is ideal; the metric may be negative. Lag is a metric-alignment parameter, not a physical observation or actuation delay. The scalar score compares a reference cycle with the final recorded cycle; 400-step CSV convergence files are needed to inspect its evolution over duration. + +## 6. Attempt ledger and selection lessons + +Broad per-case searches showed heterogeneous Kármán formulas rather than a clean two-regime partition. Joint symmetry searches repeatedly selected front rear-drag asymmetry and a rear lift-plus-constant topology. For illusion, endpoint cases selected different variable families, motivating profile-controlled joint searches instead of a hand-reduced universal library. + +Two illusion front topologies remained plausible offline. Topology A combined \(C_{d,\mathrm{rear},a}\) and \(C_{l,F}\). Topology B used \(C_{d,\mathrm{rear},s}C_{l,F}-C_{l,\mathrm{tot}}\). Topology B completed 40 steps at 0.75L with similarity 0.958889 and lag 7, but both 1L and 1.5L failed with `FloatingPointError: raw observation contains non-finite values`. Its formula-pair hash is `93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38`. It was rejected, and its failures were retained. This is the clearest demonstration that an offline Pareto candidate and even one successful scene cannot substitute for all-case closed-loop screening. + +Older pre-force-order formulas, round-one results, SINDy paths, V5 experiments, and archived Stage 4 figures remain historical or diagnostic. They are not alternative current entrypoints and their numbers are not imported into the article evidence. + +## 7. Kármán-street cloaking results + +### 7.1 Joint law and offline fit + +The selected fixed-topology law is + +\[ +\boxed{\alpha_F(x)=\operatorname{odd}\!\left[-0.381391\,C_{d,\mathrm{rear},a}\right]}, +\] + +\[ +\boxed{\alpha_U(x)=1.307782\,C_{l,\mathrm{rear},s}-3.431209,\qquad +\alpha_L(x)=-\alpha_U(Gx)}. +\] + +The formula-pair hash is `a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1`; the front and rear deployment-expression hashes are `367b5b7e...d4650` and `75207940...60f7`. + +Aggregate offline metrics are: + +- front head: \(R^2=0.5699\), MAE 0.8872, RMSE 1.1876, maximum error 3.1129; +- rear shared head: \(R^2=0.4363\), MAE 1.6187, RMSE 2.0608, maximum error 5.6964. + +The per-case contrast is scientifically informative. Front \(R^2\) is 0.2488, 0.8671, 0.6100, and 0.8893 for the four code-Re labels. Rear \(R^2\) is -0.5315, 0.5666, 0.5483, and 0.2242. Re50 therefore has poor offline rear-action imitation but excellent closed-loop similarity, whereas Re400 has a strong front offline fit and the weakest standard closed-loop score. Offline action accuracy is not the control-performance ordering. + +### 7.2 Standard and duration validation + +The 200-step similarities at code labels Re50, Re100, Re200, and Re400 are 0.9543, 0.9427, 0.8560, and 0.7827. The shared law is strongest at lower/intermediate conditions and degrades at Re400; it is not a universal cross-Re law. + +At 400 steps, similarities are 0.952178, 0.944339, 0.863850, and 0.833365. Every telemetry channel remains finite. The Re400 limitation is therefore not delayed numerical blow-up over this tested horizon, although one 400-step realization cannot establish statistical robustness. + +### 7.3 Term deletion + +Forty-step deletion tests provide the following sequence over Re50/Re100/Re200/Re400: + +- delete front feedback: 0.939361 / 0.912182 / 0.881434 / 0.813289; +- remove rear lift feedback but retain the constant: 0.917126 / 0.869943 / 0.825250 / 0.789535; +- remove the rear constant but retain lift feedback: 0.839344 / 0.817735 / 0.708089 / 0.647401. + +Within this short ablation horizon, the supported ordering is + +\[ +\text{rear constant}>\text{rear lift feedback}>\text{tested front feedback}. +\] + +The persistent rear counter-rotation is therefore the dominant tested controller component. Its interpretation as downstream-deficit compensation is consistent with the expected gap-flow and momentum correction, but SR alone does not observe the spatial momentum field and does not prove causality. + +### 7.4 Per-case fixed-topology diagnostics + +Refitting the same topology separately gives \((a,b,c)\) in \(\alpha_F=-aC_{d,\mathrm{rear},a}\), \(\alpha_U=bC_{l,\mathrm{rear},s}-c\): + +- Re50: (0.5836, 0.2212, 3.5820), rear \(R^2=0.0221\); +- Re100: (0.3248, 1.3203, 4.1774), rear \(R^2=0.7131\); +- Re200: (0.5003, 1.6971, 3.4109), rear \(R^2=0.5788\); +- Re400: (0.2947, 1.0549, 2.5545), rear \(R^2=0.3285\). + +The coefficients vary non-monotonically and do not support a clean low/high-Re split. These fits are offline diagnostics and were not promoted as independent closed-loop controllers. + +### 7.5 Steady calibration + +A disturbance-free pinball independently calibrates the order of magnitude of the rear constant. A discrete constant counter-rotation sweep \(A=0,1,\ldots,6\), with rear commands \((-A,+A)\), gives similarities 0.631830, 0.723858, 0.857286, 0.955029, 0.976376, 0.987212, and 0.978674. Thus \(A=5\) is the best **sampled** value, not a continuously optimized value. + +The Kármán law in the same steady scene gives similarity 0.966494. Its final-cycle mean actions are -0.000563, -3.430589, and 3.431828 for front, upper, and lower, consistent with its analytical constant magnitude 3.431209. The fitted value is about 68.6% of the sampled \(5U_0\) optimum. This establishes scale consistency between the learned constant and useful steady compensation; it is not an equality between wake velocity deficit, momentum deficit, and cylinder surface speed. + +### 7.6 Pointwise unseen-Re extension + +Without coefficient retuning, 200-step deployments at code labels Re25, Re70, Re150, and Re300 give 0.988078, 0.954339, 0.907496, and 0.835758. Re70/Re150/Re300 are interpolation points within the fitted code-label range; Re25 is one low-Re extrapolation. The results show finite pointwise deployment at these sampled configurations only. There is no high-Re extrapolation above Re400, no continuous coefficient law, and no repeated-initial-condition uncertainty estimate. + +## 8. Illusion results + +### 8.1 Per-size discovery and selected law + +Broad discovery changes systematically across legacy target-size labels. At 0.75L, \(C_{d,\mathrm{rear},a}\) and \(C_{d,\mathrm{rear},s}\) appear 15 and 10 times across audited heads. The 1L searches are mixed/transitional, led by \(C_{d,F}\) (13) and \(C_{l,\mathrm{rear},s}\) (12). At 1.5L, \(C_{l,F}\) and \(C_{l,\mathrm{rear},s}\) appear 54 and 46 times, showing a lift-contrast-dominated endpoint. + +The stable joint numerical candidate is + +\[ +\boxed{\alpha_F(x)=\operatorname{odd}\!\left[-1.826604\,C_{d,\mathrm{rear},a}+2.064493\,C_{l,F}\right]}, +\] + +\[ +\boxed{\alpha_U(x)=1.254440\,C_{d,\mathrm{rear},a}-1.528074\,C_{l,F},\qquad +\alpha_L(x)=-\alpha_U(Gx)}. +\] + +Its formula-pair hash is `ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83`; front/rear expression hashes are `1df7c515...0487` and `485de2ca...b8e8`. + +### 8.2 Offline fit versus closed-loop performance + +Aggregate offline metrics are: + +- front head: \(R^2=0.4851\), MAE 1.3075, RMSE 1.9726, maximum error 6.6080; +- rear shared head: \(R^2=0.3598\), MAE 1.3347, RMSE 1.5823, maximum error 5.1284. + +Per-case front \(R^2\) is 0.5850, -1.7176, and 0.5054 for 0.75L, 1L, and 1.5L; rear \(R^2\) is -5.7162, -12.5115, and 0.5923. The negative values must be retained: the candidate is not a uniformly accurate PPO action surrogate. + +Nevertheless, 200-step closed-loop similarities are 0.8749, 0.9217, and 0.8306. At 400 steps they are 0.854379, 0.915609, and 0.833587, with finite telemetry. Closed-loop viability despite weak offline action fit again demonstrates that the deployed controller cannot be selected by \(R^2\) alone. + +### 8.3 Per-size fixed-topology diagnostics + +Separate refits produce: + +- 0.75L front: \(-0.2420C_{d,\mathrm{rear},a}-0.8373C_{l,F}\), \(R^2=0.8035\); rear: \(0.2486C_{d,\mathrm{rear},a}+0.0829C_{l,F}\), \(R^2=-5.4396\); +- 1L front: \(2.0438C_{d,\mathrm{rear},a}-2.2193C_{l,F}\), \(R^2=0.6060\); rear: \(0.1843C_{d,\mathrm{rear},a}-0.1588C_{l,F}\), \(R^2=-11.2480\); +- 1.5L front: \(-0.0441C_{d,\mathrm{rear},a}+2.1015C_{l,F}\), \(R^2=0.5421\); rear: \(1.5683C_{d,\mathrm{rear},a}-1.6011C_{l,F}\), \(R^2=0.5948\). + +The 1.5L front is nearly pure front-lift feedback and its rear coefficients are roughly an order of magnitude larger than the poorly identified smaller-target rear fits. Sign changes and very negative smaller-target rear \(R^2\) values prevent promotion of a clean two-group coefficient mechanism. These are diagnostics of the compromise made by a shared static topology. + +### 8.4 Deletion and non-uniqueness + +All four one-term deletion variants completed 40 steps. For 0.75L/1L/1.5L: + +- delete first front term: 0.939375 / 0.933481 / 0.885085; +- delete second front term: 0.960067 / 0.927035 / 0.836563; +- delete first rear term: 0.954488 / 0.936851 / 0.887603; +- delete second rear term: 0.954641 / 0.930454 / 0.850816. + +Thirty-seven preregistered coefficient-scaling shadow variants remained finite. The \(C_{l,F}\) terms dominate action-amplitude sensitivity, while \(C_{d,\mathrm{rear},a}\) is weaker and partly replaceable. Because all one-term deletions remain stable and differences are modest over 40 steps, the four-term expression is not unique and no individual term is established as universally necessary. + +Target and error variables were available but did not recur in the selected low-complexity static topology. This is negative evidence against claiming explicit target tracking; it is not proof that target information is physically irrelevant. Target phase may be aliased into PPO-visited forces, may require memory, or may enter differently across size regimes. + +### 8.5 Pointwise unseen-size extension + +Coefficient-frozen 200-step interpolation at 0.8L and 1.2L gives 0.884573 and 0.925530. Extrapolation at 0.5L, 0.6L, and 2L gives 0.784055, 0.821103, and 0.756880. Every sampled run completes, but degradation toward the extremes is clear. These are single pointwise realizations and do not define a universal target-size law. + +The defensible illusion conclusion is therefore narrower than for Kármán: a shared symmetric numerical controller exists over the tested family, with 1.5L a structurally different boundary regime, but the present static law does not identify a unique target-dependent mechanism. + +## 9. SR-to-OID/CCD handover + +SR identifies actuator-side observation-to-action structure. It does not identify where the corresponding flow correction is located. The handover to OID/CCD is therefore a ranked, falsifiable target list rather than a claim that the structures have already been found. + +For Kármán: + +1. **Rear steady counter-rotation, strongest evidence.** OID should search for a reflection-symmetric streamwise correction generated in the rear gap and retained at the sensor station. CCD should quantify the rear-pair relation to the mean/low-frequency downstream deficit mode. +2. **Symmetric rear lift feedback, moderate evidence.** Coefficients vary from 0.22 to 1.70, so the term is a condition-dependent modulation rather than a universal gain. Seek a rear-cylinder force-correlated source and lagged downstream descendant. +3. **Rear drag asymmetry in front action, weak evidence.** Test an antisymmetric near-front structure and expect weaker downstream canonical correlation. + +For illusion: + +1. **Front lift, moderate evidence.** Compare front-body source structures across target-size labels and test whether descendants change wavelength or phase. +2. **Rear drag asymmetry, weak-to-moderate evidence.** Search for antisymmetric rear-gap structures, explicitly contrasting 1.5L with smaller labels. +3. **Absence of explicit target/error terms, negative evidence.** Use lagged and phase-resolved analyses because static obs--act regression can alias memory or phase into force observations. + +For every element, actuator-to-source and source-to-downstream relations must be reported separately; upper/lower parity must be preserved; lag must be stated in \(D/U_0\); and spatial coincidence must not be promoted to causality without time-lagged evidence. Agreement between SR ranking and OID/CCD correlation is convergent evidence. Contradictions must be retained and used to revise the interpretation rather than forcing agreement. + +## 10. Limitations and claim discipline + +The analysis has the following explicit limitations. + +1. There is one 200-step PPO trajectory per fitted case. PySR seed recurrence is not recurrence over independent PPO or CFD trajectories. +2. Temporal rows are correlated; 197 rows are not 197 independent flow realizations. +3. The symbolic grammar, complexity bound, population settings, and finite seed count do not establish a global symbolic optimum. +4. Exact reflection symmetry is imposed, not discovered, and may modify the original PPO. +5. The selected laws are static and instantaneous. They cannot represent explicit memory, and failure to select target variables does not show memory or target information is unnecessary. +6. All eligible rows are reused after topology freezing, so final coefficient metrics are not a fully blind estimate. +7. The standard and extension runs report one deterministic realization per condition; no repeated-initial-phase or disturbance uncertainty interval is available. +8. The DTW result depends on the selected reference/final-cycle window and lag alignment, is not a full-field metric, and cannot prove mechanism identity. +9. Generalization is pointwise over sampled Reynolds labels and target sizes. Geometry perturbations, sensor noise, actuator mismatch, altered sampling, and other disturbances are untested. +10. No preregistered scalar DTW success threshold exists. Finiteness is a hard gate, while performance language is relative and case-specific. +11. There is no transient-vortex SR evidence in the current fitted package. +12. The steady sweep does not establish a momentum-balance equality or a continuous optimum. +13. OID/CCD causal structures are future/independent evidence, not present SR results. + +Accordingly, the evidence **establishes** a reproducible discovery-to-CFD workflow, the dominance of the rear constant within the tested Kármán law, secondary short-horizon value of rear lift feedback, a finite shared illusion numerical candidate, and the inadequacy of offline fit alone for controller selection. It **supports, with bounded scope**, a shared Kármán backbone over tested conditions and finite pointwise extension performance. It does **not establish** uniqueness, universality, explicit illusion target tracking, necessity of every illusion term, physical delay from DTW lag, or causal deficit compensation without field-level analysis. + +## 11. Reproducibility and evidence map + +### 11.1 Environments and resources + +Stage 1, policy replay, and Stage 3 use conda environment `pycuda_3_10`. PySR discovery and numerical refitting use `sr_env`. CFD runs are strictly serialized on physical GPU 2. With `CUDA_VISIBLE_DEVICES=2`, scripts use logical device 0; provenance records visibility and GPU identity. Run IDs are immutable and failure telemetry is retained. + +At the 2026-07-21 final-consolidation revision, the CPU contract suite is run from the repository root with: + +```bash +PYTHONPATH=src conda run -n sr_env python -m pytest \ + src/SR_analysis/tests tests/test_stage_3_validate.py -q +``` + +The expected result at the 2026-07-21 plotting-package revision is 88 passed tests. This count is revision-specific rather than a timeless scientific result. + +### 11.2 Primary and extension packages + +The primary evidence index is: + +```text +src/SR_analysis/results/runs/article-joint-sr-final-20260718/ + readable_summary.txt + evidence_manifest.json +``` + +The coefficient-frozen extension is indexed by: + +```text +src/SR_analysis/results/runs/article2-sr-elements-20260720/ +src/SR_analysis/results/runs/article2-steady-analysis-20260720/ +src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/ +src/SR_analysis/results/runs/article2-generalization-summary-20260720/ +``` + +Standard-duration PPO/SR/target CSVs, including wide/long tables and DTW convergence, are under `article2-timeseries-csv-20260720/`. Four-hundred-step SR/target exports are under `article2-long-timeseries-csv-20260720/`. + +### 11.3 Stable identities + +The archived fitting Git SHA is `ca8ee5f238ee58eaaf48027ad026c35784f76d4d`. Kármán and illusion dataset hashes are respectively + +```text +dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6 +50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7 +``` + +Formula-pair hashes are + +```text +Karman: a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1 +Illusion: ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83 +``` + +Formula JSON files carry exact commands, parent hashes, feature order, expression hashes, optimizer state, environment, and offline metrics. Validation JSON files carry formula/configuration hashes, metric details, GPU identity, telemetry hash, termination, and record hash. `scene_registry.json` is not the authority for current article evidence, and integrity auditing does not automatically promote a candidate. + +## 12. Final paper-level conclusion + +The Kármán analysis provides the strongest mechanism-oriented SR result. A persistent rear-pair counter-rotation is the dominant tested component; rear symmetric-lift feedback gives secondary short-horizon value; the tested front correction is weak. The constant has the same physical order as independently useful steady counter-rotation, which is consistent with a wake-deficit-compensation hypothesis. Spatial momentum correction and causality remain for OID/CCD, and reduced Re400 performance prevents a universal-law claim. + +The illusion analysis provides a stable shared symmetric numerical controller but not a unique target-tracking mechanism. Front-lift terms dominate action sensitivity, drag-asymmetry terms are partly replaceable, and 1.5L is a distinct boundary regime. Static target/error variables were not selected robustly, so further mechanism work should use controlled target-aware dynamic structures and independent field decomposition rather than broader unconstrained symbolic searches. + +The general methodological conclusion is that SR in closed-loop flow control should be treated as hypothesis generation plus deployment testing. Formula compactness and offline fit identify candidates; CFD stability, trajectory similarity, ablation, and independent flow-field evidence determine what can be interpreted physically. diff --git a/src/SR_analysis/PIPELINE.md b/src/SR_analysis/PIPELINE.md index 0485f76..7ee079c 100644 --- a/src/SR_analysis/PIPELINE.md +++ b/src/SR_analysis/PIPELINE.md @@ -1,210 +1,358 @@ -# SR_analysis Pipeline +# Article SR pipeline -> Symbolic regression pipeline for extracting interpretable DRL control laws (obs -> act) -> from the fluidic pinball. Four independent stages: inference -> fitting -> validation -> analysis. +This is the authoritative execution and design document for `SR_analysis`. Read `README.md` first for the scientific summary and current conclusions. -## Pipeline Architecture +## 1. Method in one diagram -``` -[PPO Inference] [PySR Fitting] [CFD Validation] [Analysis/Figures] -stage_1_infer.py -> stage_2_fit.py -> stage_3_validate.py -> stage_4_analyze.py - | | | | -controlled.npz formulas/*.json validations/*.json figures/*.png+pdf -target.npz FIGURE_INDEX.md +```mermaid +flowchart LR + contracts[Channel and causal contracts] --> data[PPO trajectories] + data --> perCase[Per-case broad discovery] + perCase --> joint[Within-objective joint discovery] + joint --> refit[Fixed-topology all-data refit] + refit --> safety[Static and replay safety] + safety --> shortCFD[Short serial CFD] + shortCFD --> standardCFD[200-step legacy DTW] + standardCFD --> longCFD[400-step duration check] + longCFD --> generalization[Unseen-condition CFD] + standardCFD --> steady[Steady-cloak calibration] + standardCFD --> ablation[Term deletion and scaling] + steady --> interpretation[Physical interpretation and limits] + generalization --> interpretation + ablation --> interpretation ``` -## Environments +The workflow has one scientific route: -| Env | Used For | Key Packages | -|-----|----------|-------------| -| `pycuda_3_10` | Stage 1 (CFD inference), Stage 3 (CFD validation), Stage 4 (analysis) | pycuda, numpy, matplotlib, torch, stable-baselines3 | -| `sr_env` | Stage 2 (PySR symbolic regression) | pysr, numpy, sympy | +```text +stage_1_infer.py -> stage_2_fit.py -> stage_3_validate.py +``` -GPU: device 2 recommended (device 0 may conflict with PyTorch). +Checks and diagnostics gate or interpret this route; they do not create a parallel pipeline. -## Key Conventions +## 1.1 Article2 extension commands -### Reynolds Number -- Code Re uses reference length 2D = 40: `Re = U0 * 40 / nu` -- Physical Re_D uses D = 20: `Re_D = Re / 2` -- Default: Re_code=100 -> Re_D=50, nu=0.004 - -### Action -- `controlled.npz` stores actions as **normalized [-1, +1]** (not physical omega) -- Physical omega: `omega = (action * scale + bias) * U0` -- Fitting target: **non-dimensional alpha = (omega * radius) / (surface_vel * U0)** - -### Action Decoder Bias (scene-specific) -| Scene | Scale | Bias | -|-------|:-----:|------| -| Karman | 8 | [0, -4, 4] | -| Illusion | 8 | [0, -2, 2] | -| Vortex | 4 | [0, -4, 4] | - -### G-Mirror Symmetry -- Correct: `[aF, aT, aB] -> [-aF, -aB, -aT]` -- v23 structure: Front no-bias, rear shared-head (alpha_B = -Top composed with G) - -### Inlet -- Parabolic velocity profile (not uniform). Top/bottom walls are no-slip bounce-back. -- U0 = 0.01 at centerline (lattice units) - -### Sample Interval & Validation Steps -| Scene | SI | Validation Steps (rule: >= NX/U0/SI) | -|-------|:--:|:-------------------------------------:| -| Karman | 800 | 160-200 | -| Illusion 0.75L | 400 | 320 | -| Illusion 1L | 600 | 214 | -| Illusion 1.5L | 800 | 160 | -| Vortex | 800 | 150 (transient) | - ---- - -## Stage 1: PPO Inference Data Generation - -Generates `controlled.npz` (sensors, forces, actions) and `target.npz` for all scenes. +All CFD commands remain serialized and use physical GPU 2. `--device 0` is the logical device after masking. ```bash -# Karman cloak (all trained Reynolds numbers) -for re in 50 100 200 400; do - conda run -n pycuda_3_10 python stage_1_infer.py --scene karman_re${re} --device 2 -done +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_3_validate.py --scene steady --mode constant \ + --constant-alpha 0 -5 5 --device 0 --steps 200 \ + --run-id article2-steady-sweep-a5-20260720 -# Illusion (trained diameters) -for d in 0.75 1.0; do - conda run -n pycuda_3_10 python stage_1_infer.py --scene illusion_${d}L --device 2 -done +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 \ + --mode pysr --formula-front --formula-rear \ + --device 0 --steps 400 --run-id article2-long-karman-20260720 -# Illusion target-only (generalization diameters -- no PPO model, just target recording) -for d in 0.5 0.6 0.8 1.2 1.5 2.0; do - conda run -n pycuda_3_10 python stage_1_infer.py --scene illusion_${d}L --target-only --device 2 -done - -# Vortex -for v in lamb taylor; do - conda run -n pycuda_3_10 python stage_1_infer.py --scene vortex_${v} --device 2 -done +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_3_validate.py --group karman_re25,karman_re70,karman_re150,karman_re300 \ + --mode pysr --formula-front --formula-rear \ + --device 0 --steps 200 --run-id article2-gen-karman-20260720 ``` -**Output per scene** (in `data/{scene_id}/{scene_name}/`): -- `controlled.npz`: actions [N,3], sensors [N,6], forces [N,6] -- `target.npz`: target signals [FIFO_LEN, 6] for Karman/Vortex; **8 columns for Illusion** = [cyl_fx,cyl_fy, s0_ux,s0_uy, s1_ux,s1_uy, s2_ux,s2_uy] — extract sensors with `target[:, 2:8]` -- `norm.json`: normalization factors -- `result.json`: similarity + reward summary -- `target_harmonics.json` (Illusion only): FFT harmonics for force reconstruction +Illusion uses the corresponding article topology-A formulas and either the three training scenes for the duration test or `--group illusion_generalization`. Generalization PySR deployment does not require a PPO normalization file; target harmonics remain frozen per scene. ---- - -## Stage 2: PySR Symbolic Regression Fitting - -Runs PySR on `controlled.npz` data to discover interpretable control laws. +Export any Stage 1 or Stage 3 trajectory with: ```bash -# Illusion joint (0.75L + 1.0L) -- primary contribution -conda run -n sr_env python stage_2_fit.py \ - --scenes illusion_0.75L,illusion_1L --mode joint --deep - -# Karman cross-Re joint (re50-400) -conda run -n sr_env python stage_2_fit.py \ - --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --deep - -# Per-scene individual fitting (optional, for comparison) -conda run -n sr_env python stage_2_fit.py --scene karman_re100 --mode per-scene --deep -conda run -n sr_env python stage_2_fit.py --scene illusion_0.75L --mode per-scene --deep +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.tools.telemetry_to_csv \ + --input --target --output-dir \ + --scene --source ppo --sample-interval --conv-len ``` -**Feature sets**: -| Name | Features | Dim | Used For | -|------|----------|:---:|----------| -| ILLUSION_PHASE | u_a, du_a/dt, Cl_tot, dCl_tot/dt, Cd_tot, Cd_rear, Cd_err, Cl_err, dCd_err/dt, dCl_err/dt | 10 | Illusion | -| PHYS_DADT+mu | Static + daF/dt, daB/dt, daT/dt + mu terms | 17 | Karman joint | +The exporter writes wide and long CSV files, target tables, manifests and legacy-DTW window convergence diagnostics. For Stage 3 telemetry use `--source sr`; embedded target sensors are used automatically. -**Constraints (v23)**: -- Front no-bias: alpha_F = 0 when features = 0 -- Rear shared-head: alpha_B = -Top composed with G-mirror - -**Output**: `results/formulas/{scene}_{channel}.json` - ---- - -## Stage 3: CFD Closed-Loop Validation - -Validates PySR formulas or PPO baselines in closed-loop CFD. This is the final arbiter. +Build the complete derived plotting package from immutable article artifacts with: ```bash -# Karman cross-Re (trained + generalization) -for re in 50 100 200 400 25 70 150 300; do - conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene karman_re${re} --device 2 --mode pysr \ - --formula-front results/formulas/karman_joint_front.json \ - --formula-top results/formulas/karman_joint_top.json -done - -# Illusion trained (joint formula) -for d in 0.75 1.0; do - conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene illusion_${d}L --device 2 --mode pysr \ - --formula-front results/formulas/illusion_joint_front.json \ - --formula-top results/formulas/illusion_joint_top.json -done - -# Illusion generalization (joint formula on unseen diameters) -for d in 0.5 0.6 0.8 1.2 2.0; do - conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene illusion_${d}L --device 2 --mode pysr \ - --formula-front results/formulas/illusion_joint_front.json \ - --formula-top results/formulas/illusion_joint_top.json -done - -# PPO baselines -for d in 0.75 1.0 1.5; do - conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene illusion_${d}L --device 2 --mode ppo -done - -# Vortex generalization -for v in lamb taylor; do - conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene vortex_${v} --device 2 --mode pysr \ - --formula-front results/formulas/karman_joint_front.json \ - --formula-top results/formulas/karman_joint_top.json -done +PYTHONPATH=src conda run -n sr_env python -m SR_analysis.tools.prepare_plotting_data \ + --output-dir src/SR_analysis/results/runs/article2-plotting-package- ``` -**Output**: `results/validations/{scene_name}.json` with similarity scores. +This creates causal PPO-state predictions/residuals, feature and additive-term contributions, unified ablation/scaling summaries and steady-sweep time series. Render diagnostic PNG/PDF figures in an environment containing Matplotlib with `python -m SR_analysis.tools.plot_sr_diagnostics`. For 400-step PPO CFD, keep `--model-device cpu`; GPU 2 is reserved for the active PyCUDA context. ---- +## 2. Design decisions -## Stage 4: Publication Figures +### Why fit PPO actions? -Generates all figures and the figure index. No CLI arguments needed. +The PPO policy supplies successful state-action trajectories. Fitting its dimensionless physical actions provides candidate feedback structures without rerunning symbolic search inside CFD. The fitted expression is a policy surrogate, not a Navier–Stokes equation. + +### Why not select the highest R² formula? + +A candidate changes the closed-loop state distribution after deployment. A formula can imitate PPO actions well on recorded states and still drift or become unstable in CFD. R² and Pareto complexity are therefore used to discover recurring variables and topologies; CFD stability and legacy DTW decide closed-loop value. + +### Why per-case before joint? + +Per-case searches reveal whether variables and topologies recur across operating conditions. Joint search begins only after broad variables have been considered, preventing a compact hand-selected library from predetermining the mechanism. + +### Why freeze topology before the final coefficient fit? + +Unrestricted symbolic search on all rows would use the blind data for structure selection. The workflow first selects topology from discovery runs, then refits only its numerical constants using all accepted trajectories with case-equal and trajectory-equal weighting. The refit records its parent discovery artifact. + +### Why exact G deployment? + +The geometry and objective are reflection-symmetric, while the legacy PPO was not trained with an equivariance constraint. The final architecture deliberately imposes physical symmetry: + +\[ +\alpha_F(x)=\frac{h_F(x)-h_F(Gx)}{2},\quad +\alpha_U(x)=h_R(x),\quad +\alpha_L(x)=-h_R(Gx). +\] + +This is physical symmetrization, not a claim that PPO itself is exactly equivariant. Three independent heads are retained only for diagnostic structure discovery. + +### Why no automatic lag search? + +For Illusion, target and actual forces share a causal deployment timeline. Cross-correlation can produce a statistically useful shift without identifying a physical delay. Temporal/derivative features are introduced only after controlled static-variable comparisons show insufficiency. DTW lag is reported as part of the legacy metric, not interpreted as control delay. + +### Why separate Kármán and Illusion joint fits? + +They are different objectives. Kármán seeks restoration of an incident wake; Illusion seeks a non-zero target wake. Joint means shared structure within one objective, not one formula across unrelated policies. + +## 3. Contracts and gates + +### Physical labels + +Kármán names use `re_code`, whose reference length is `2D`; report \(Re_D=\texttt{re\_code}/2\) whenever the physical Reynolds number is intended. Illusion names are legacy target-size labels. Despite the historical field name `target_diameter`, the value is passed to `LegacyCelerisLab.add_cylinder` as its `radius` argument. Rear symmetric and antisymmetric force coordinates are half-sums and half-differences, so changing that convention would rescale fitted coefficients. + +A run may proceed to fitting only when all applicable gates pass. + +### Physical order gate + +Canonical orders: + +- body/action: `front, upper, lower` +- forces: `front_fx, front_fy, upper_fx, upper_fy, lower_fx, lower_fy` +- sensors: upper, centre, lower, each with streamwise/transverse components + +Run after CFD/kernel changes: ```bash -conda run -n pycuda_3_10 python stage_4_analyze.py +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python -m SR_analysis.checks.order_contract \ + --scene karman_re100 --device 0 \ + --output src/SR_analysis/results/runs//karman_re100.json ``` -**Output** (in `results/figures/`): -- `fig_illusion_degradation.png/pdf` — Main result: cross-diameter generalization -- `fig_karman_cross_re.png/pdf` — Karman cross-Re validation bars -- `fig_formula_comparison.png/pdf` — Formula structure diagram -- `fig_vortex_generalization.png/pdf` — Vortex cross-scene transfer -- `fig_action_comparison.png/pdf` — PPO action timeseries -- `fig_master_table.png/pdf` — Complete results table -- `FIGURE_INDEX.md` — Figure catalog with paper-ready captions +Repeat for `illusion_1L`. The impulse response is diagnostic; object IDs, centres and slot mapping define the contract. ---- +### Temporal gate -## Canonical Formulas +The article alignment is `causal_post_state_to_next_action`. Post-state `i` predicts normalized PPO action `i+1`. Warm-up rows are removed. Each trajectory is processed independently before stacking. -| Formula File | Scene | Formula | CFD Similarity | -|-------------|-------|---------|:---:| -| `results/formulas/karman_joint_front.json` | Karman cross-Re | `daF_dt - 14.952*mu*Cl_tot` | avg 0.847 | -| `results/formulas/karman_joint_top.json` | Karman cross-Re | `3.414` (constant) | — | -| `results/formulas/illusion_joint_front.json` | Illusion joint | `Cd_tot - (Cd_err + 5.428) - (-0.00978)*(du_a_dt + u_a)` | 0.978/0.970 | -| `results/formulas/illusion_joint_top.json` | Illusion joint | `(Cd_err - (Cd_rear - Cl_err))*0.535 + 2.782` | — | +### PPO wiring gate -## Known Limitations +```bash +PYTHONPATH=src conda run -n pycuda_3_10 \ + python -m SR_analysis.checks.policy_replay \ + --scene \ + --trajectory ///controlled.npz \ + --model-device cpu \ + --output .json +``` -- **Karman rear formula is constant** (alpha_T = 3.414): rear control information not fully utilized by the joint formula. -- **Illusion 1.5L is non-fittable**: PPO policy uses high-frequency modulation (5.6x shedding frequency) that the current feature set cannot capture. -- **daB_dt in Karman front formula** must be removed for deployment: it's a training distribution artifact (PPO trajectories have correlated front/rear actions, but rear is constant at deployment). +The seven article trajectories passed with zero action replay error. + +### Artifact gate + +- Existing non-empty run directories are not overwritten. +- Formula strings, formula files, telemetry and validations carry hashes. +- Integrity audit never grants scientific promotion; `promotion_eligible` defaults to false. +- Failed and incomplete validations remain rejected evidence. + +## 4. Stage 1: collect article data + +Environment: `pycuda_3_10`. CFD is serial on physical GPU 2. Isolate physical GPU 2 with `CUDA_VISIBLE_DEVICES=2`, then select logical device 0. + +Kármán: + +```bash +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_1_infer.py \ + --group karman_trained \ + --run-id \ + --device 0 --model-device cpu --steps 200 --norm-source existing +``` + +Illusion: + +```bash +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_1_infer.py \ + --group illusion_trained \ + --run-id \ + --device 0 --model-device cpu --steps 200 --norm-source existing +``` + +Outputs: + +```text +data/runs//// + config.json + controlled.npz + manifest.json + norm.json + result.json + target.npz + target_harmonics.json # Illusion + uncontrolled.npz # Kármán Stage 1 baseline asset +``` + +The article run uses 200 recorded rows per scene and 197 aligned Stage 2 rows after warm-up/causal alignment. + +## 5. Stage 2A: per-case broad discovery + +Environment: `sr_env`. + +Use complete variable representations first: + +- `raw_complete` +- `symmetry` + +For Illusion, compare: + +- `actual_only` +- `target_only` +- `actual_plus_target` +- `actual_plus_error` + +Example diagnostic three-head discovery: + +```bash +PYTHONPATH=src conda run -n sr_env \ + python src/SR_analysis/stage_2_fit.py \ + --scene karman_re100 --mode per-scene \ + --run-id \ + --data-root \ + --feature-set symmetry --feature-profile actual_only \ + --deployment-architecture three_head_independent \ + --fit-augmentation none \ + --fit-purpose discovery \ + --seed 0 --niterations 20 --smoke +``` + +Repeat for at least three seeds. `--smoke` in the article discovery denotes the bounded PySR population/complexity configuration; the resulting candidates are still diagnostic until CFD validation. + +Up to 25 retained Pareto candidates per fitted head record: + +- expression and used variables +- complexity/loss/PySR score +- contiguous train/validation/blind R², MAE, RMSE and max error +- static finite-value probing over observed feature ranges (not a global action-range guarantee) +- seed, feature set, data and trajectory provenance + +The blind block is not used for fitting. + +## 6. Stage 2B: within-objective joint discovery + +Kármán example: + +```bash +PYTHONPATH=src conda run -n sr_env \ + python src/SR_analysis/stage_2_fit.py \ + --scenes karman_re50,karman_re100,karman_re200,karman_re400 \ + --mode joint --run-id \ + --data-root \ + --feature-set symmetry --feature-profile actual_only \ + --deployment-architecture mapped_shared \ + --fit-augmentation G --fit-purpose discovery \ + --seed 0 --niterations 40 --smoke +``` + +Illusion uses the three trained diameters and separate profile comparisons. Joint fitting is accepted only when scene objective, feature order, action order and action conversion contracts match. + +If multiple data roots are accepted, provide repeated `--data-root` arguments or comma-separated `--data-roots`. Every trajectory is constructed and split independently. Joint PySR receives explicit case-equal, trajectory-equal sample weights. + +## 7. Stage 2C: fixed-topology refit + +Freeze a recurring topology before using all eligible rows. Example: + +```bash +PYTHONPATH=src conda run -n sr_env \ + python src/SR_analysis/stage_2_fit.py \ + --scenes karman_re50,karman_re100,karman_re200,karman_re400 \ + --mode joint --run-id \ + --data-root \ + --feature-set symmetry --feature-profile actual_only \ + --deployment-architecture mapped_shared --fit-augmentation G \ + --fit-purpose fixed-topology-refit \ + '--front-topology-expression=-0.377*Cd_rear_a' \ + '--rear-topology-expression=1.0*Cl_rear_s-3.398' \ + --front-discovery-parent-path \ + --rear-discovery-parent-path +``` + +Only numerical constants are optimized. Outputs report aggregate, per-case and per-trajectory errors and retain discovery-parent hashes. + +## 8. Stage 3: closed-loop screening + +Environment: `pycuda_3_10`, physical GPU 2, one CFD process at a time. + +Short screening: + +```bash +CUDA_VISIBLE_DEVICES=2 PYTHONPATH=src conda run -n pycuda_3_10 \ + python src/SR_analysis/stage_3_validate.py \ + --group karman_re50,karman_re100,karman_re200,karman_re400 \ + --mode pysr \ + --formula-front \ + --formula-rear \ + --device 0 --steps 40 --run-id +``` + +Standard validation changes `--steps` to 200 and uses a new run ID. + +The only active metric is `legacy_dtw_v1_abs_n_unclipped`, reported under `legacy_reference_cycle_vs_last_recorded_cycle`. It estimates lag from transverse sensor channel 1 between target samples `conv_len:2*conv_len` and the final controlled `conv_len` samples, circularly shifts the complete target sequence, computes absolute normalized unclipped DTW similarity independently for all six sensor channels, and reports their arithmetic mean. The lag is an alignment parameter, not a physical delay. Every validation stores per-channel values, lag, action ranges, termination, telemetry hash, formula hashes, scene config and GPU identity. + +A candidate is rejected if any training case becomes non-finite or terminates early. Averages do not hide case failures. + +## 9. Term necessity and coefficient robustness + +`utils/formula_schema.py` deterministically decomposes top-level additive terms and creates immutable formula variants. + +For each shortlisted law: + +1. delete each term; +2. delete physically linked groups where necessary; +3. scale each term with the preregistered grid `0, 0.5, 0.75, 1, 1.25, 1.5`; +4. run recorded-state shadow checks for finite values and action ranges; +5. send only informative variants to short CFD. + +A term is called important only when deletion causes repeatable closed-loop degradation. Scale zero must agree with deletion. The parent formula is never mutated. + +## 10. Article evidence and interpretation + +The current authoritative evidence chain is indexed by `results/README.md` and ends at: + +```text +results/runs/article-joint-sr-final-20260718/ + readable_summary.txt + evidence_manifest.json +``` + +Current conclusions: + +- Kármán: rear constant is dominant, rear lift feedback is secondary, tested front feedback is weak; high-Re performance remains a limitation. +- Illusion: a symmetric numerical family exists, but terms are replaceable and static target/error variables do not establish explicit target tracking; 1.5L is the weakest/different regime. + +The manuscript draft must preserve these distinctions and must not import older historical numbers as current evidence. + +## 11. Historical and inactive material + +- `results/formulas/`, `results/validations/`, `scene_registry.json`, `old/` and old docs are `historical_frozen` context. +- `round1-legacy-v2-20260716-*` is diagnostic only because it predates the final force-order contract. +- `experiments/v5/` is a separate excluded experiment. +- `archive/stage4/` and `archive/stage_docs/` are inactive publication tooling/history. +- `diagnostics/` outputs do not become mechanism claims without closed-loop validation. + +## 12. Tests + +Run from the repository root: + +```bash +PYTHONPATH=src conda run -n sr_env python -m pytest \ + src/SR_analysis/tests tests/test_stage_3_validate.py -q +``` + +Expected result at the 2026-07-21 plotting-package revision: `88 passed`. diff --git a/src/SR_analysis/README.md b/src/SR_analysis/README.md index 45dc028..daf5386 100644 --- a/src/SR_analysis/README.md +++ b/src/SR_analysis/README.md @@ -1,81 +1,254 @@ -# SR_analysis: Symbolic Regression for DRL Flow Control +# SR analysis: agent entry point -Extracts interpretable control laws (obs -> act) from DRL-trained PPO policies -for the fluidic pinball using PySR symbolic regression. Validates all formulas -in CFD closed-loop and produces publication-quality figures. +This directory contains the active symbolic-regression analysis for extracting compact control laws from the legacy PPO policies of the fluidic pinball. -## Pipeline +**Start here, then read `PIPELINE.md`.** The active scientific workflow has exactly three entry points: -``` -stage_1_infer.py -> stage_2_fit.py -> stage_3_validate.py -> stage_4_analyze.py - (PPO data) (PySR formula) (CFD closed-loop) (paper figures) +1. `stage_1_infer.py` — collect run-scoped PPO trajectories. +2. `stage_2_fit.py` — discover and refit symbolic structures. +3. `stage_3_validate.py` — evaluate formulas in closed-loop CFD with the legacy DTW metric. + +The current article evidence is indexed in `results/README.md`. The manuscript-ready SR section is `../../docs/JFM_WYQ/SR_Draft.md`. + +## Scientific question + +SR is not used to maximize imitation of PPO actions. It is used to determine whether successful PPO control contains a compact, symmetric and physically interpretable feedback structure that remains effective when deployed in CFD. + +The selection chain is therefore: + +```text +PPO trajectories + -> broad per-case variable/topology discovery using R² and Pareto fronts + -> within-objective joint topology discovery + -> fixed-topology coefficient refit using all accepted rows + -> short and standard closed-loop CFD screening using legacy DTW + -> term-deletion and coefficient-scaling tests + -> physical interpretation and explicit limitations ``` -## Quick Start +R² is a discovery diagnostic. It is not the acceptance criterion. Closed-loop stability and DTW decide whether a candidate is useful; deletion and scaling tests decide whether its terms are necessary. + +## Current article scope + +Two objectives are fitted separately: + +- **Kármán cloaking:** `karman_re50`, `karman_re100`, `karman_re200`, `karman_re400`. +- **Illusion:** `illusion_0.75L`, `illusion_1L`, `illusion_1.5L`. + +Kármán and Illusion are never pooled into one fit. The fitted evidence is limited to these seven training scenes. The coefficient-frozen 2026-07-20 extension tests additional Reynolds-number and target-size points, but those points did not participate in fitting or model selection. Vortex, V5 and historical figures remain outside the current article evidence. + +Seven new 200-step PPO trajectories were collected in: + +- `data/runs/article-joint-data-karman-20260718/` +- `data/runs/article-joint-data-illusion-20260718/` + +All seven passed exact recorded-state policy replay. The accepted data inventory is: + +- `results/runs/article-joint-data-audit-20260718/data_inventory.json` + +Historical and round-one assets are retained, but are not silently pooled with the article data. The old `round1-legacy-v2-20260716-*` formulas are diagnostic only because they predate the final force-order contract. + +## Non-negotiable contracts + +### Native order + +The canonical body, force and action order is: + +```text +front, upper, lower +``` + +Sensors are ordered upper, centre, lower. Verify runtime binding with `checks/order_contract.py` before collecting data after any CFD change. + +### Alignment + +The article workflow uses: + +```text +causal_post_state_to_next_action +``` + +Recorded post-state `i` predicts action `i+1`. Each trajectory is built independently so lag features and contiguous splits never cross trajectory boundaries. + +### Action definition + +Formula outputs are dimensionless cylinder surface velocities: + +\[ +\alpha_i = \omega_i/U_0. +\] + +Normalized PPO actions are decoded with the scene action scale and bias before fitting. + +### Exact reflection symmetry + +The article candidate uses mapped-shared deployment: + +\[ +\alpha_F(x)=\frac{h_F(x)-h_F(Gx)}{2},\qquad +\alpha_U(x)=h_R(x),\qquad +\alpha_L(x)=-h_R(Gx). +\] + +The front projection is exactly odd. The lower action is generated from the shared upper law. Three-head-independent fitting exists only as a PPO-structure diagnostic and is not the final physical architecture. + +Fit augmentation and deployment architecture are separate choices: + +- `--fit-augmentation none|G` +- `--deployment-architecture mapped_shared|three_head_independent` + +Hard G symmetry is a deliberate physical symmetrization; it is not presented as a property that the legacy PPO was trained to satisfy. + +### Metric + +The closed-loop metric is: + +```text +legacy_dtw_v1_abs_n_unclipped +``` + +Its exact window is named: + +```text +legacy_reference_cycle_vs_last_recorded_cycle +``` + +There are not separate “full” and “tail” DTW algorithms. Lag is part of the legacy comparison procedure and is not interpreted as a physical observation/control delay. + +## Physical labels and units + +The Kármán scene names contain the historical code Reynolds label `re_code`, defined with reference length `2D`; the cylinder-diameter Reynolds number is therefore \(Re_D=\texttt{re\_code}/2\). The Illusion names `0.75L`, `1L` and `1.5L` are legacy target-size labels: the stored `target_diameter` value is passed to `LegacyCelerisLab.add_cylinder` as a radius. Paper text must not silently reinterpret these labels as physical diameters. + +SR uses dimensionless velocities and force coefficients, not the clipped PPO observation. Rear symmetry coordinates are half-sums and half-differences, for example + +\[ +C_{d,\mathrm{rear},s}=\frac{C_{d,U}+C_{d,L}}{2},\qquad +C_{d,\mathrm{rear},a}=\frac{C_{d,U}-C_{d,L}}{2}, +\] + +with the same convention for rear lift. + +## Feature strategy + +Broad discovery starts from complete, dimensionless variable representations: + +- `raw_complete`: six velocity components and six cylinder-force components. +- `symmetry`: symmetric/antisymmetric velocity and force coordinates. +- `physics_reduced`: compact diagnostics only; it is not the starting point for article discovery. + +Illusion comparisons use non-overlapping profiles: + +- `actual_only` +- `target_only` +- `actual_plus_target` +- `actual_plus_error` + +Target/error derivatives or other temporal features are added only after static variables are shown insufficient. Cross-correlation is never used to select a lag. + +## Current results + +### Kármán joint candidate + +\[ +\alpha_F=\operatorname{odd}\!\left[-0.381391\,C_{d,\mathrm{rear},a}\right], +\] + +\[ +\alpha_U=1.307782\,C_{l,\mathrm{rear},s}-3.431209, +\qquad +\alpha_L=-\alpha_U(Gx). +\] + +Standard 200-step legacy DTW: + +- Re50: `0.9543` +- Re100: `0.9427` +- Re200: `0.8560` +- Re400: `0.7827` + +Deletion tests support the ordering: + +```text +rear constant > rear lift feedback > front drag-asymmetry feedback +``` + +This is consistent with the physical hypothesis that persistent rear counter-rotation provides the principal downstream velocity-deficit compensation. The SR evidence ranks controller terms but does not establish the spatial momentum correction or causality; those claims require OID/CCD. The law is not uniformly strong at Re400 and must not be called universal. + +### Illusion joint numerical candidate + +\[ +\alpha_F=\operatorname{odd}\!\left[-1.826604\,C_{d,\mathrm{rear},a}+2.064493\,C_{l,F}\right], +\] + +\[ +\alpha_U=1.254440\,C_{d,\mathrm{rear},a}-1.528074\,C_{l,F}, +\qquad +\alpha_L=-\alpha_U(Gx). +\] + +Standard 200-step legacy DTW: + +- 0.75L: `0.8749` +- 1.0L: `0.9217` +- 1.5L: `0.8306` + +Scaling tests show that the `Cl_F` terms dominate action magnitude; the `Cd_rear,a` terms are weaker and partly replaceable. Every one-term deletion remained stable, so the current expression is not a unique mechanism law. Target/error variables were available but were not selected stably by low-complexity static joint discovery. This is a numerical joint reference, not proof of explicit target tracking. + +## What can and cannot be claimed + +Supported: + +- A complete, reproducible discovery-to-CFD-to-ablation workflow. +- Strong Kármán evidence for dominant rear counter-rotation and secondary rear lift feedback. +- A symmetric Illusion joint family that remains finite across all three trained target-size labels. +- R² and formula appearance alone are insufficient predictors of closed-loop value. + +Not supported: + +- Global symbolic optimality or uniqueness. +- A universal Kármán law at Re400. +- An explicit target-tracking mechanism for Illusion. +- Necessity of every Illusion term. +- Physical delay inferred from DTW lag or cross-correlation. +- Distribution-wide or universal generalization. The Article2 extension supports only finite pointwise deployment at its explicitly sampled unseen conditions. + +## Directory map + +```text +SR_analysis/ +├── README.md # this agent entry point +├── PIPELINE.md # exact method, commands and design decisions +├── configs.py # scene and action contracts +├── stage_1_infer.py # PPO data collection +├── stage_2_fit.py # discovery and fixed-topology refit +├── stage_3_validate.py # closed-loop CFD and legacy DTW +├── checks/ # pre-fit physical/wiring gates +├── diagnostics/ # diagnostic-only analyses +├── utils/ # feature, G, formula, data and provenance contracts +├── tests/ # SR CPU contract tests +├── results/README.md # evidence index and result status +├── tools/ # integrity audit; audit is not scientific promotion +├── experiments/v5/ # excluded experimental pipeline +└── archive/ # inactive Stage 4 and historical guides +``` + +`old/`, `archive/`, `experiments/v5/`, historical formula directories and old reports are context only. They are not authoritative sources for article numbers. + +## Environments and resource discipline + +- Stage 1, policy replay and Stage 3: `pycuda_3_10`; PPO inference defaults to CPU so physical GPU 2 remains dedicated to the PyCUDA CFD context. +- Stage 2/PySR and coefficient refit: `sr_env`. +- CFD uses physical GPU 2 and is strictly serial. +- When `CUDA_VISIBLE_DEVICES=2`, the process uses logical device `0`; provenance records both visibility and GPU UUID rather than mislabelling the physical ordinal. +- Every run ID is immutable; failed telemetry is retained. + +## Verification + +At the 2026-07-21 plotting-package revision, the SR contract suite contains 88 passing tests. Run from the repository root: ```bash -# Generate PPO inference data -conda run -n pycuda_3_10 python stage_1_infer.py --scene karman_re100 --device 2 - -# Fit symbolic formula -conda run -n sr_env python stage_2_fit.py --scenes illusion_0.75L,illusion_1L --mode joint --deep - -# Validate in CFD -conda run -n pycuda_3_10 python stage_3_validate.py \ - --scene illusion_1L --device 2 --mode pysr \ - --formula-front results/formulas/illusion_joint_front.json \ - --formula-top results/formulas/illusion_joint_top.json - -# Generate figures -conda run -n pycuda_3_10 python stage_4_analyze.py +PYTHONPATH=src conda run -n sr_env python -m pytest \ + src/SR_analysis/tests tests/test_stage_3_validate.py -q ``` -## Directory Structure - -``` -SR_analysis/ - stage_1_infer.py # PPO inference (all scenes) - stage_2_fit.py # PySR symbolic regression fitting - stage_3_validate.py # CFD closed-loop validation - stage_4_analyze.py # Publication figure generation - configs.py # All scene definitions (19 scenes) - scene_registry.json # Canonical results registry - utils/ # Shared library (features, CFD, fitting) - data/ # Runtime .npz data per scene - results/ - formulas/ # Canonical formula JSONs - validations/ # CFD validation outputs - figures/ # Publication-quality PNG/PDF - FIGURE_INDEX.md # Figure catalog with captions - README.md # Formula + validation index - docs/ - SR_analysis_report.md # Full analysis report - illusion_joint_formula_analysis.md - PIPELINE.md # Detailed reproduction guide - literature_note.md # Paper writing + literature positioning - old/ # Archived historical files -``` - -## Key Results - -| Scene | Formula | CFD Similarity | -|-------|---------|:---:| -| Karman cross-Re (joint) | alpha_F = daF_dt - 14.95*mu*Cl_tot | avg 0.847 | -| Illusion joint (0.75L+1L) | alpha_F = Cd_tot - Cd_err - 5.43 + 0.01*(du_a_dt+u_a) | 0.978/0.970 | -| Vortex lamb (Karman formula) | Karman joint, zero retraining | 0.949 (exceeds PPO) | - -## Environments - -- `pycuda_3_10`: CFD + DRL model loading + visualization (stages 1, 3, 4) -- `sr_env`: PySR symbolic regression (stage 2) -- GPU: device 2 recommended - -## Documentation - -| File | Content | -|------|---------| -| `PIPELINE.md` | Full reproduction guide with all commands | -| `docs/SR_analysis_report.md` | Complete methodology + results + discussion | -| `results/figures/FIGURE_INDEX.md` | All figures with paper-ready captions | -| `literature_note.md` | Literature positioning + writing guidance | -| `results/README.md` | Formula + validation file index | +See `PIPELINE.md` for reproducible commands and `results/README.md` for the exact evidence chain. diff --git a/src/SR_analysis/archive/__init__.py b/src/SR_analysis/archive/__init__.py new file mode 100644 index 0000000..38232a3 --- /dev/null +++ b/src/SR_analysis/archive/__init__.py @@ -0,0 +1 @@ +"""Archived SR workflows retained for historical reference.""" diff --git a/src/SR_analysis/archive/stage4/__init__.py b/src/SR_analysis/archive/stage4/__init__.py new file mode 100644 index 0000000..631ba47 --- /dev/null +++ b/src/SR_analysis/archive/stage4/__init__.py @@ -0,0 +1 @@ +"""Archived Stage 4 publication analysis.""" diff --git a/src/SR_analysis/stage_4_analyze.py b/src/SR_analysis/archive/stage4/stage_4_analyze.py similarity index 98% rename from src/SR_analysis/stage_4_analyze.py rename to src/SR_analysis/archive/stage4/stage_4_analyze.py index fba016b..906f981 100644 --- a/src/SR_analysis/stage_4_analyze.py +++ b/src/SR_analysis/archive/stage4/stage_4_analyze.py @@ -5,7 +5,7 @@ Reads scene_registry.json + results/validations/*.json and produces 6 figures to results/figures/. Also creates FIGURE_INDEX.md. Usage: - conda run -n pycuda_3_10 python stage_4_analyze.py + PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze """ from __future__ import annotations @@ -20,7 +20,8 @@ matplotlib.use("Agg") import matplotlib.pyplot as plt from matplotlib.ticker import FuncFormatter -_REPO = Path(__file__).resolve().parents[1] +_SR_ROOT = Path(__file__).resolve().parents[2] +_REPO = _SR_ROOT.parents[1] if str(_REPO) not in sys.path: sys.path.insert(0, str(_REPO)) _SRC = _REPO / "src" @@ -29,7 +30,7 @@ if str(_SRC) not in sys.path: from SR_analysis.configs import get_scene, SCENES -SR_DIR = Path(__file__).resolve().parent +SR_DIR = _SR_ROOT FIG_DIR = SR_DIR / "results" / "figures" VAL_DIR = SR_DIR / "results" / "validations" FIG_DIR.mkdir(parents=True, exist_ok=True) @@ -549,7 +550,7 @@ All numerical values in these figures are derived from: To regenerate all figures: ```bash -conda run -n pycuda_3_10 python stage_4_analyze.py +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze ``` """ path = FIG_DIR / "FIGURE_INDEX.md" diff --git a/src/SR_analysis/STAGE_1_INFER.md b/src/SR_analysis/archive/stage_docs/STAGE_1_INFER.md similarity index 100% rename from src/SR_analysis/STAGE_1_INFER.md rename to src/SR_analysis/archive/stage_docs/STAGE_1_INFER.md diff --git a/src/SR_analysis/STAGE_2_FIT.md b/src/SR_analysis/archive/stage_docs/STAGE_2_FIT.md similarity index 100% rename from src/SR_analysis/STAGE_2_FIT.md rename to src/SR_analysis/archive/stage_docs/STAGE_2_FIT.md diff --git a/src/SR_analysis/STAGE_3_VALIDATE.md b/src/SR_analysis/archive/stage_docs/STAGE_3_VALIDATE.md similarity index 100% rename from src/SR_analysis/STAGE_3_VALIDATE.md rename to src/SR_analysis/archive/stage_docs/STAGE_3_VALIDATE.md diff --git a/src/SR_analysis/STAGE_4_ANALYZE.md b/src/SR_analysis/archive/stage_docs/STAGE_4_ANALYZE.md similarity index 76% rename from src/SR_analysis/STAGE_4_ANALYZE.md rename to src/SR_analysis/archive/stage_docs/STAGE_4_ANALYZE.md index 4028f62..9d020d3 100644 --- a/src/SR_analysis/STAGE_4_ANALYZE.md +++ b/src/SR_analysis/archive/stage_docs/STAGE_4_ANALYZE.md @@ -6,14 +6,14 @@ Analyzes PPO policies and SR formulas. Generates FFT spectra, action timeseries, ```bash # PPO action visualization (timeseries + FFT) -conda run -n pycuda_3_10 python stage_4_analyze.py --scene illusion_1L --mode ppo-viz +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze --scene illusion_1L --mode ppo-viz # Cross-diameter degradation analysis -conda run -n pycuda_3_10 python stage_4_analyze.py \ +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze \ --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode degradation # Formula comparison (coming soon) -conda run -n pycuda_3_10 python stage_4_analyze.py --scene illusion_1L --mode formula-compare +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze --scene illusion_1L --mode formula-compare ``` ## Modes diff --git a/src/SR_analysis/checks/__init__.py b/src/SR_analysis/checks/__init__.py new file mode 100644 index 0000000..7455650 --- /dev/null +++ b/src/SR_analysis/checks/__init__.py @@ -0,0 +1 @@ +"""Pre-fit scientific contract checks.""" diff --git a/src/SR_analysis/checks/order_contract.py b/src/SR_analysis/checks/order_contract.py new file mode 100644 index 0000000..ac7ee81 --- /dev/null +++ b/src/SR_analysis/checks/order_contract.py @@ -0,0 +1,163 @@ +#!/usr/bin/env python3 +"""Verify the legacy fluidic-pinball geometry/action/force channel contract.""" +from __future__ import annotations + +import argparse +import json +import sys +from pathlib import Path +from typing import Any, Mapping, Sequence + +import numpy as np + +REPO_ROOT = Path(__file__).resolve().parents[3] +SRC_ROOT = REPO_ROOT / "src" +if str(REPO_ROOT) not in sys.path: + sys.path.insert(0, str(REPO_ROOT)) +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) + +from SR_analysis.configs import LEGACY_CFG_DIR, get_scene +from SR_analysis.utils.cfd_interface import load_legacy_configs +from SR_analysis.utils.provenance import atomic_write_json + +CONTRACT_VERSION = "legacy-pinball-order-v1" +BODY_NAMES = ("front", "upper", "lower") + + +def expected_ledger(scene: str) -> dict[str, Any]: + cfg = get_scene(scene) + body_ids = tuple(range(int(cfg["n_objects_env"]) - 3, int(cfg["n_objects_env"]))) + return { + "contract_version": CONTRACT_VERSION, + "scene": scene, + "geometry_order": [ + {"name": "front", "y_offset_L": 0.0}, + {"name": "upper", "y_offset_L": 0.75}, + {"name": "lower", "y_offset_L": -0.75}, + ], + "body_object_ids": dict(zip(BODY_NAMES, body_ids)), + "sensor_layout": list(cfg["sensor_layout"]), + "force_layout": list(cfg["force_layout"]), + "action_layout": list(cfg["action_layout"]), + "ppo_decoder": { + "alpha": "normalized_action * action_scale + action_bias", + "action_scale": float(cfg["action_scale"]), + "action_bias": list(cfg["action_bias"]), + "native_slots": list(body_ids), + }, + "kernel_binding": "action[id_obj] and obs[2*id_obj:2*id_obj+2] share id_obj", + } + + +def _centers_by_id(objects: Mapping[Any, Mapping[str, Any]]) -> list[tuple[float, float, float]]: + return [tuple(float(value) for value in objects[key]["center"]) for key in sorted(objects, key=int)] + + +def verify_runtime_objects(flow_field: Any, scene: str) -> dict[str, Any]: + cfg = get_scene(scene) + ledger = expected_ledger(scene) + centers = _centers_by_id(flow_field.objects) + body_ids = [ledger["body_object_ids"][name] for name in BODY_NAMES] + body_centers = [centers[index] for index in body_ids] + cy = (float(flow_field.FIELD_SHAPE[1]) - 1.0) / 2.0 + l0 = 20.0 + expected = [ + (float(cfg["pinball_front_x"]) * l0, cy, 0.0), + (float(cfg["pinball_rear_x"]) * l0, cy + 0.75 * l0, 0.0), + (float(cfg["pinball_rear_x"]) * l0, cy - 0.75 * l0, 0.0), + ] + np.testing.assert_allclose(body_centers, expected) + ledger["runtime_centers"] = {name: list(center) for name, center in zip(BODY_NAMES, body_centers)} + ledger["runtime_verified"] = True + return ledger + + +def impulse_commands(n_objects: int, epsilon: float) -> dict[str, np.ndarray]: + if n_objects < 3: + raise ValueError("pinball impulse test requires at least three objects") + commands: dict[str, np.ndarray] = {} + for offset, name in enumerate(BODY_NAMES, start=n_objects - 3): + command = np.zeros(n_objects, dtype=np.float32) + command[offset] = float(epsilon) + commands[name] = command + return commands + + +def build_runtime_environment(scene: str, device: int) -> Any: + from LegacyCelerisLab import FlowField + + cfg = get_scene(scene) + cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) + field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) + ff = FlowField(field_cfg, cuda_cfg, device_id=device) + cy = (ff.FIELD_SHAPE[1] - 1) / 2.0 + l0 = 20.0 + if cfg["scene_id"] == "karman": + ff.add_cylinder((10.0 * l0, cy, 0.0), l0) + for y in (cy + 2 * l0, cy, cy - 2 * l0): + ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + ff.add_cylinder((float(cfg["pinball_front_x"]) * l0, cy, 0.0), l0 / 2.0) + ff.add_cylinder((float(cfg["pinball_rear_x"]) * l0, cy + 0.75 * l0, 0.0), l0 / 2.0) + ff.add_cylinder((float(cfg["pinball_rear_x"]) * l0, cy - 0.75 * l0, 0.0), l0 / 2.0) + return ff + + +def run_impulse_test(scene: str, device: int, epsilon: float, steps: int) -> dict[str, Any]: + ff = build_runtime_environment(scene, device) + ledger = verify_runtime_objects(ff, scene) + n_objects = len(ff.objects) + zero = np.zeros(n_objects, dtype=np.float32) + warmup = int(4 * ff.FIELD_SHAPE[0] / float(get_scene(scene)["u0"])) + ff.run(warmup, zero) + ff.get_ddf() + ff.save_ddf() + responses: dict[str, Any] = {} + body_ids = ledger["body_object_ids"] + for name, command in impulse_commands(n_objects, epsilon).items(): + ff.restore_ddf() + ff.apply_ddf() + ff.run(steps, command) + force_pairs = np.asarray(ff.obs, dtype=np.float64).reshape(-1, 2) + responses[name] = { + "nonzero_action_slots": np.flatnonzero(command).tolist(), + "command": float(command[body_ids[name]]), + "force_at_commanded_body": force_pairs[body_ids[name]].tolist(), + "all_body_forces": { + body: force_pairs[index].tolist() for body, index in body_ids.items() + }, + } + del ff + ledger["impulse_test"] = { + "epsilon": float(epsilon), + "steps": int(steps), + "responses": responses, + "interpretation": "slot identity is exact; force magnitude is diagnostic and is not used to infer causality", + } + return ledger + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--scene", choices=("karman_re100", "illusion_1L"), required=True) + parser.add_argument("--device", type=int, default=2) + parser.add_argument("--epsilon", type=float, default=1e-4) + parser.add_argument("--steps", type=int, default=10) + parser.add_argument("--output", type=Path) + parser.add_argument("--source-only", action="store_true") + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + document = expected_ledger(args.scene) if args.source_only else run_impulse_test( + args.scene, args.device, args.epsilon, args.steps + ) + if args.output: + atomic_write_json(args.output.resolve(), document) + print(json.dumps(document, indent=2, sort_keys=True)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/checks/policy_replay.py b/src/SR_analysis/checks/policy_replay.py new file mode 100644 index 0000000..81de933 --- /dev/null +++ b/src/SR_analysis/checks/policy_replay.py @@ -0,0 +1,91 @@ +#!/usr/bin/env python3 +"""Verify recorded PPO actions by replaying the policy on causal recorded states.""" +from __future__ import annotations + +import argparse +import json +from pathlib import Path +from typing import Any, Sequence + +import numpy as np + +from SR_analysis.configs import get_scene, model_path_for_scene +from SR_analysis.stage_1_infer import illusion_observation, load_existing_norm, normalize_raw_observation +from SR_analysis.utils.cfd_interface import load_ppo_model +from SR_analysis.utils.provenance import atomic_write_json, hash_file + +SCHEMA_VERSION = "sr-policy-replay-parity-v1" + + +def replay(scene: str, trajectory: Path, *, model_device: str = "cpu") -> dict[str, Any]: + cfg = get_scene(scene) + norm, norm_path = load_existing_norm(scene, cfg) + model_path = model_path_for_scene(scene) + if model_path is None: + raise FileNotFoundError(f"no PPO model configured for {scene}") + model = load_ppo_model(model_path, device=model_device, s_dim=int(cfg["s_dim"])) + with np.load(trajectory, allow_pickle=False) as data: + sensors = np.asarray(data["sensors"], dtype=np.float64) + forces = np.asarray(data["forces"], dtype=np.float64) + actions = np.asarray(data["actions_norm" if "actions_norm" in data else "actions"], dtype=np.float64) + targets = np.asarray(data["target_forces"], dtype=np.float64) if "target_forces" in data else None + + if len(actions) < 2: + raise ValueError("policy replay requires at least two recorded actions") + raw = np.column_stack((sensors, forces)) + predicted = [] + for index in range(1, len(actions)): + state = raw[index - 1] + if cfg["scene_id"] == "illusion": + if targets is None: + raise ValueError("Illusion policy replay requires target_forces") + observation = illusion_observation(state, norm, targets[index]) + else: + observation = normalize_raw_observation(state, norm) + action, _ = model.predict(observation, deterministic=True) + predicted.append(np.asarray(action, dtype=np.float64).reshape(3)) + + predicted_array = np.asarray(predicted) + recorded = actions[1:] + residual = predicted_array - recorded + max_abs = np.max(np.abs(residual), axis=0) + rmse = np.sqrt(np.mean(residual**2, axis=0)) + tolerance = 2e-6 + return { + "schema_version": SCHEMA_VERSION, + "scene": scene, + "status": "passed" if float(np.max(max_abs)) <= tolerance else "failed", + "semantics": "recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored", + "tolerance": tolerance, + "n_compared": int(len(recorded)), + "action_layout": list(cfg["action_layout"]), + "max_abs_error": max_abs.tolist(), + "rmse": rmse.tolist(), + "sources": { + "trajectory": {"path": str(trajectory), "sha256": hash_file(trajectory)}, + "model": {"path": str(model_path), "sha256": hash_file(Path(model_path))}, + "norm": {"path": str(norm_path), "sha256": hash_file(norm_path)}, + }, + "interpretation": "This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.", + } + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--scene", required=True) + parser.add_argument("--trajectory", type=Path, required=True) + parser.add_argument("--model-device", default="cpu") + parser.add_argument("--output", type=Path, required=True) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + report = replay(args.scene, args.trajectory.resolve(), model_device=args.model_device) + atomic_write_json(args.output.resolve(), report) + print(json.dumps(report, indent=2, sort_keys=True)) + return 0 if report["status"] == "passed" else 1 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/configs.py b/src/SR_analysis/configs.py index 71fbea3..1a0eb28 100644 --- a/src/SR_analysis/configs.py +++ b/src/SR_analysis/configs.py @@ -14,9 +14,13 @@ import os from typing import Any, Dict, List, Optional, Tuple # -- Root paths (resolved when configs.py is imported) ----------------------- -_PROJ = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) -MODEL_DIR = os.path.join(_PROJ, "..", "models") -LEGACY_CFG_DIR = os.path.join(_PROJ, "..", "configs", "legacy_configs") +SR_ANALYSIS_DIR = os.path.abspath(os.path.dirname(__file__)) +SRC_DIR = os.path.dirname(SR_ANALYSIS_DIR) +PROJECT_ROOT = os.path.dirname(SRC_DIR) +# Historical private alias retained for callers that imported it. +_PROJ = PROJECT_ROOT +MODEL_DIR = os.path.join(PROJECT_ROOT, "models") +LEGACY_CFG_DIR = os.path.join(PROJECT_ROOT, "configs", "legacy_configs") # -- Physics constants ------------------------------------------------------- U0 = 0.01 # default inlet velocity (lattice) @@ -28,6 +32,18 @@ NY = 512 CENTER_Y = (NY - 1) / 2.0 FIFO_LEN = 150 CONV_LEN = 30 # default; per-scene conv_len overrides this (Illusion=36) +CONTROL_TIME_SCALE_STEPS = 2000 # D_CYL / U0 in lattice steps + +# Native legacy order follows object insertion in the actual environments. +SENSOR_LAYOUT = ("upper_ux", "upper_uy", "center_ux", "center_uy", "lower_ux", "lower_uy") +BODY_LAYOUT = ("front", "upper", "lower") +FORCE_LAYOUT = ("front_fx", "front_fy", "upper_fx", "upper_fy", "lower_fx", "lower_fy") +ACTION_LAYOUT = BODY_LAYOUT +RAW_LAYOUT = SENSOR_LAYOUT + FORCE_LAYOUT +TARGET_SENSOR_SLICE = (0, 6) +ILLUSION_TARGET_FORCE_SLICE = (0, 2) +ILLUSION_TARGET_SENSOR_SLICE = (2, 8) +DTW_VERSION = "legacy_dtw_v1_abs_n_unclipped" def nu_from_re(re_code: float, u0: float = U0) -> float: @@ -35,6 +51,11 @@ def nu_from_re(re_code: float, u0: float = U0) -> float: return u0 * D_REF / re_code +def control_dt(sample_interval: float, control_time_scale_steps: float = CONTROL_TIME_SCALE_STEPS) -> float: + """Return nondimensional control interval, SI / (D/U0).""" + return float(sample_interval) / float(control_time_scale_steps) + + # -- Scene definitions ------------------------------------------------------- # Each scene dict has fields: @@ -115,6 +136,23 @@ SCENES["steady"] = { "target_type": "steady", "s_dim": 12, "u0": U0, + "control_time_scale_steps": CONTROL_TIME_SCALE_STEPS, + "control_dt": control_dt(800), + "fifo_len": FIFO_LEN, + "conv_len": CONV_LEN, + "sensor_layout": SENSOR_LAYOUT, + "body_layout": BODY_LAYOUT, + "action_layout": ACTION_LAYOUT, + "force_layout": FORCE_LAYOUT, + "raw_layout": RAW_LAYOUT, + "raw_sensor_slice": TARGET_SENSOR_SLICE, + "raw_force_slice": (6, 12), + "target_sensor_slice": TARGET_SENSOR_SLICE, + "target_force_slice": None, + "fifo_init_action": (0.0, 0.0, 0.0), + "policy_init_action": (0.0, 0.0, 0.0), + "dtw_version": DTW_VERSION, + "dtw_lag_channel": 1, } # -- Illusion (cylinder imitation, 3 diameters) ---------------------------- @@ -243,6 +281,51 @@ for diam, mn, si in [ } +# -- Legacy contract completion --------------------------------------------- + +def _complete_legacy_contract(cfg: dict) -> None: + """Add explicit metadata without changing historical fields or values.""" + scene_id = cfg["scene_id"] + if scene_id not in {"karman", "illusion"}: + return + + cfg["re_d"] = cfg["re_code"] / 2.0 + cfg["control_time_scale_steps"] = CONTROL_TIME_SCALE_STEPS + cfg["control_dt"] = control_dt(cfg["sample_interval"]) + cfg["fifo_len"] = FIFO_LEN + cfg.setdefault("conv_len", CONV_LEN) + cfg["sensor_layout"] = SENSOR_LAYOUT + cfg["body_layout"] = BODY_LAYOUT + cfg["action_layout"] = ACTION_LAYOUT + cfg["force_layout"] = FORCE_LAYOUT + cfg["raw_layout"] = RAW_LAYOUT + cfg["raw_sensor_slice"] = TARGET_SENSOR_SLICE + cfg["raw_force_slice"] = (6, 12) + cfg["target_sensor_slice"] = ( + ILLUSION_TARGET_SENSOR_SLICE if scene_id == "illusion" else TARGET_SENSOR_SLICE + ) + cfg["target_force_slice"] = ( + ILLUSION_TARGET_FORCE_SLICE if scene_id == "illusion" else None + ) + cfg["fifo_init_action"] = ( + (0.0, -1.0, 1.0) if scene_id == "illusion" else tuple(cfg["action_bias"]) + ) + cfg["policy_init_action"] = cfg["fifo_init_action"] + cfg["dtw_version"] = DTW_VERSION + cfg["dtw_lag_channel"] = 1 + + if scene_id == "illusion": + # Legacy add_cylinder takes radius despite the historical diameter name. + cfg["target_center_x"] = 20.0 + cfg["target_center"] = (20.0, CENTER_Y / L0, 0.0) + cfg["target_radius"] = cfg["target_diameter"] + cfg["target_radius_lattice"] = cfg["target_diameter"] * L0 + + +for _scene_cfg in SCENES.values(): + _complete_legacy_contract(_scene_cfg) + + # -- Utility helpers --------------------------------------------------------- def get_scene(name: str) -> dict: diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/config.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/config.json new file mode 100644 index 0000000..ad0a9e8 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/manifest.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/manifest.json new file mode 100644 index 0000000..274ec21 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/manifest.json @@ -0,0 +1,129 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:39:32.938755+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip", + "model_sha256": "1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_0.75L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/norm.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/norm.json new file mode 100644 index 0000000..1be6aa1 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.013459767680615187, + "sens_deviation": [ + 0.9466423392295837, + -0.1479361653327942, + 0.6496055126190186, + -0.06913633644580841, + 0.9421071410179138, + 0.08593743294477463 + ], + "sens_norm_fact": [ + 2.1083030700683594, + 2.7172951698303223, + 0.7220026850700378, + 3.7818100452423096, + 2.1336052417755127, + 2.4038033485412598 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/result.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/result.json new file mode 100644 index 0000000..1700707 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip", + "model_sha256": "1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_0.75L/norm.json", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_0.75L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9780213679370245, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/target_harmonics.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/target_harmonics.json new file mode 100644 index 0000000..2342b41 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 3.9416146258902704e-05, + 8.083888512803517e-06, + 7.8259297225391e-06, + 7.444669325137454e-06, + 2.650481928433631e-06 + ], + "dc": 0.004288840930288037, + "freqs": [ + 0.06666666666666667, + 0.09333333333333334, + 0.08666666666666667, + 0.18000000000000002, + 0.08 + ], + "phases": [ + 0.7540124427379341, + -1.808706740982317, + 1.1476006137783652, + 1.6512590989501288, + 1.0813017136850769 + ] + }, + { + "amps": [ + 0.0011724241253350106, + 2.705315291989001e-06, + 2.5632054945621657e-06, + 1.9131915711276497e-06, + 1.3943678699705464e-06 + ], + "dc": 4.169326712144539e-07, + "freqs": [ + 0.03333333333333333, + 0.02666666666666667, + 0.04, + 0.1, + 0.02 + ], + "phases": [ + -2.3577812321489438, + 0.6391458229570252, + -2.265503747033405, + 0.43570069935086664, + 0.5243541447170742 + ] + }, + { + "amps": [ + 0.2489885040388675, + 0.03210098144538428, + 0.030384440489745625, + 0.00958367379623687, + 0.005213279199801526 + ], + "dc": 1.0451179893811544, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + 1.1103723558571972, + 1.8423551657801926, + -3.1355535027285106, + -2.5782919322455338, + -1.2633346617424976 + ] + }, + { + "amps": [ + 0.3305720031167745, + 0.08539685324391007, + 0.0385190706390166, + 0.021865254179959034, + 0.007357771642788919 + ], + "dc": -0.022074917741119863, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + -0.7133847984074813, + -0.4026908612284969, + 0.8343738694616963, + 1.3490248554891444, + 2.2330562888870022 + ] + }, + { + "amps": [ + 0.07163229134495475, + 0.008434240998878524, + 0.0008098102661636355, + 0.0003771090075918297, + 0.00035352636858903685 + ], + "dc": 0.9039795788129171, + "freqs": [ + 0.06666666666666667, + 0.13333333333333333, + 0.2, + 0.08666666666666667, + 0.09333333333333334 + ], + "phases": [ + -1.6197193338232723, + 0.45502589602091653, + -2.3033617160120254, + -0.6336257774708539, + -3.049232811380861 + ] + }, + { + "amps": [ + 0.6375122846399932, + 0.12728152140142718, + 0.012378504391920099, + 0.0015804850101977547, + 0.0014716918044797723 + ], + "dc": -0.00022492741545041402, + "freqs": [ + 0.03333333333333333, + 0.1, + 0.16666666666666669, + 0.23333333333333334, + 0.02666666666666667 + ], + "phases": [ + -0.6326179569707989, + 1.336743513951696, + 3.01228107257918, + 2.0216300775728637, + 2.6520289818367324 + ] + }, + { + "amps": [ + 0.24905942483676188, + 0.03187505826568132, + 0.030242379554754367, + 0.009569319724256058, + 0.005273017386654554 + ], + "dc": 1.0452390058835348, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + -2.030970816485462, + 1.8477546647859373, + 0.010423750748169737, + -2.560726118782934, + 1.9011052975482974 + ] + }, + { + "amps": [ + 0.33080869088948045, + 0.08523425024086101, + 0.03856791973969837, + 0.021888225016193145, + 0.007347291749017247 + ], + "dc": 0.021862111476560434, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + -0.713292514035412, + 2.740949082033163, + 0.837418113709308, + -1.7879991149366732, + 2.2429923596709345 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/config.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/config.json new file mode 100644 index 0000000..651d671 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_15L_2U", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 800, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.5, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.5, + "target_radius_lattice": 30.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/manifest.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/manifest.json new file mode 100644 index 0000000..c3cafd4 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/manifest.json @@ -0,0 +1,129 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_15L_2U", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 800, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.5, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.5, + "target_radius_lattice": 30.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:44:10.797263+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_15L_2U.zip", + "model_sha256": "3e115a36d4365cfc70994c9307053aa44d9c3ded8c4312f636520b62862be9b6", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_1.5L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/norm.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/norm.json new file mode 100644 index 0000000..1623c6a --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.013502256944775581, + "sens_deviation": [ + 0.9501011371612549, + -0.1168946698307991, + 0.6514688730239868, + 0.0026063816621899605, + 0.9466588497161865, + 0.1172625869512558 + ], + "sens_norm_fact": [ + 2.11934757232666, + 2.5621178150177, + 0.7280007004737854, + 3.4596621990203857, + 2.1354496479034424, + 2.5682904720306396 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/result.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/result.json new file mode 100644 index 0000000..65b7deb --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_15L_2U", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 800, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.5, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.5, + "target_radius_lattice": 30.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_15L_2U.zip", + "model_sha256": "3e115a36d4365cfc70994c9307053aa44d9c3ded8c4312f636520b62862be9b6", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1.5L/norm.json", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_1.5L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9380685413642048, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/target_harmonics.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/target_harmonics.json new file mode 100644 index 0000000..ca22c2d --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 0.0002593145208769718, + 0.00013555774253418688, + 0.00013495714775771432, + 6.980395318390833e-05, + 5.5269861879110814e-05 + ], + "dc": 0.008455509891112645, + "freqs": [ + 0.08, + 0.18000000000000002, + 0.07333333333333333, + 0.08666666666666667, + 0.36000000000000004 + ], + "phases": [ + 1.9138979974014636, + -3.1233126897188073, + -1.236904392081521, + 1.9254877121068814, + 0.1298353556235514 + ] + }, + { + "amps": [ + 0.004410042862580617, + 0.0008893415120801246, + 0.0006923634361164468, + 0.0003907491851769848, + 0.00037768599220085614 + ], + "dc": -5.815988754572269e-05, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.05333333333333334, + 0.02666666666666667 + ], + "phases": [ + 1.2524630875800902, + -1.9856661519393908, + 1.331816078986651, + 1.3984468632293299, + -2.108462214109479 + ] + }, + { + "amps": [ + 0.39473791484702975, + 0.07812373736809153, + 0.06365312495666806, + 0.05578793977128341, + 0.04494323306664869 + ], + "dc": 0.9446588867902755, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.11333333333333334, + 0.12000000000000001 + ], + "phases": [ + 2.260615488419265, + -0.8537155586511778, + 2.2527336748950324, + -3.063008654548352, + 0.29218667131459247 + ] + }, + { + "amps": [ + 0.5977098005256445, + 0.14034942157637617, + 0.12888913011672254, + 0.08993838973022406, + 0.08036452212897999 + ], + "dc": -0.09525545587142309, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.08, + 0.11333333333333334, + 0.04666666666666667 + ], + "phases": [ + 0.36056127401744614, + -2.82720001369774, + 1.2123976016401927, + 1.1454240756697094, + 0.38912274684310827 + ] + }, + { + "amps": [ + 0.08326368756380634, + 0.04587985149377177, + 0.024756520022768454, + 0.02141702906744529, + 0.018444598865080177 + ], + "dc": 0.9157892549037934, + "freqs": [ + 0.08, + 0.07333333333333333, + 0.15333333333333335, + 0.08666666666666667, + 0.06666666666666667 + ], + "phases": [ + -0.05233769791529121, + 3.080770961519612, + 0.8853688244086093, + -0.039849508324659125, + 3.076363067151665 + ] + }, + { + "amps": [ + 0.8741199230882291, + 0.19550568066644888, + 0.16265409257981334, + 0.1336506114834541, + 0.1269247384905412 + ], + "dc": -0.023665335749586423, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.11333333333333334, + 0.12000000000000001, + 0.04666666666666667 + ], + "phases": [ + 0.4463654130128962, + -2.7755331237159115, + 1.4718172123953857, + -1.5843887891107975, + 0.5302492921976192 + ] + }, + { + "amps": [ + 0.39292160700808704, + 0.079540287340843, + 0.0612842837491059, + 0.057763809861229164, + 0.044325089175110945 + ], + "dc": 0.934531484246254, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.11333333333333334, + 0.12000000000000001 + ], + "phases": [ + -0.8816538413228083, + 2.2919156068347846, + -0.8919232033681086, + 0.005956538497457574, + -2.750984236179875 + ] + }, + { + "amps": [ + 0.6087630645329644, + 0.1308037498368575, + 0.09692848009841636, + 0.09368203821989057, + 0.0771579858674427 + ], + "dc": 0.062215093951672316, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.08, + 0.04666666666666667, + 0.07333333333333333 + ], + "phases": [ + 0.3681906174761973, + -2.8525744545686225, + -1.7575623630090065, + 0.4606331587384596, + 1.0755980567082095 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/config.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/config.json new file mode 100644 index 0000000..821e92d --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/manifest.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/manifest.json new file mode 100644 index 0000000..d7495cf --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/manifest.json @@ -0,0 +1,129 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:41:50.510389+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_1L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/norm.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/norm.json new file mode 100644 index 0000000..2f4176d --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.01349810091778636, + "sens_deviation": [ + 0.9381087422370911, + -0.12299147248268127, + 0.648796796798706, + -0.022100985050201416, + 0.9596271514892578, + 0.11032649874687195 + ], + "sens_norm_fact": [ + 2.1753337383270264, + 2.5954699516296387, + 0.707850456237793, + 3.554702043533325, + 2.0688724517822266, + 2.5344114303588867 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/result.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/result.json new file mode 100644 index 0000000..c6023e7 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group illusion_trained --run-id article-joint-data-illusion-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json", + "run_id": "article-joint-data-illusion-20260718", + "scene": "illusion_1L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9812757387688315, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/target_harmonics.json b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/target_harmonics.json new file mode 100644 index 0000000..f688aa9 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 9.95525576232295e-05, + 3.062854458070903e-05, + 1.3442917277488369e-05, + 1.1594195224550438e-05, + 1.1332674606193098e-05 + ], + "dc": 0.005645080665126443, + "freqs": [ + 0.08, + 0.13333333333333333, + 0.26666666666666666, + 0.08666666666666667, + 0.2733333333333334 + ], + "phases": [ + -1.3987741128960087, + -0.14617921317235077, + 1.1206149864146715, + 1.6305529908100604, + -1.712315261017203 + ] + }, + { + "amps": [ + 0.0021059072380715986, + 0.0001072786042455763, + 0.00010704577345347245, + 5.887771172539229e-05, + 5.0190303048842245e-05 + ], + "dc": 1.577417790637507e-05, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.02666666666666667, + 0.05333333333333334 + ], + "phases": [ + -0.3398328993468615, + -0.29080491774378675, + 2.7566046303431384, + -0.23762089174818304, + 2.714746291666295 + ] + }, + { + "amps": [ + 0.3146239226288843, + 0.048104490548155014, + 0.02379706856237292, + 0.01833765043922671, + 0.013599248761509778 + ], + "dc": 1.0103612458705902, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + -1.4210505997757181, + 1.847793032148095, + -3.031075979923603, + 1.7605437654882392, + -1.4596841582777982 + ] + }, + { + "amps": [ + 0.44915320062667263, + 0.10377397412301913, + 0.06678149272586904, + 0.038204045584297346, + 0.024949908375127946 + ], + "dc": -0.0391404936578086, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + 3.0395602606613705, + 0.6607552965105951, + -0.3398422181779207, + -2.609046860476507, + -0.07363307669730089 + ] + }, + { + "amps": [ + 0.07895319422377668, + 0.014476546457719106, + 0.00914226506193232, + 0.007075297824234122, + 0.004463113727851041 + ], + "dc": 0.9198990468184153, + "freqs": [ + 0.08, + 0.16, + 0.08666666666666667, + 0.07333333333333333, + 0.09333333333333334 + ], + "phases": [ + -0.5417908626550348, + 2.7150365858062173, + 2.589233496651188, + -0.524009247773754, + 2.5833882013669687 + ] + }, + { + "amps": [ + 0.7614606041726437, + 0.17577971193056693, + 0.040704869372920414, + 0.03727793388501702, + 0.02951532233167403 + ], + "dc": -0.0050505975137154265, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.04666666666666667, + 0.03333333333333333, + 0.12666666666666668 + ], + "phases": [ + 3.113587774285551, + 0.04444146345124639, + -0.028405904503340355, + 3.115253374153316, + -3.091502158920583 + ] + }, + { + "amps": [ + 0.3145260975487943, + 0.048267787638706657, + 0.024221969215475172, + 0.018450798636158533, + 0.013537092346057293 + ], + "dc": 1.0102008271217346, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + 1.7229918107099456, + -1.2652997907663959, + -2.6593825064997976, + -1.4285406671392833, + 1.733743280730367 + ] + }, + { + "amps": [ + 0.4518235029867277, + 0.09818259354399247, + 0.06939518691080716, + 0.03690841267867748, + 0.023821009095001514 + ], + "dc": 0.03264622828457504, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.03333333333333333 + ], + "phases": [ + 3.0430721485694527, + -2.4129819490293962, + -0.27109978435044924, + 0.6040464416290057, + 3.0821178412302936 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/config.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/config.json new file mode 100644 index 0000000..bbdc87d --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/manifest.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/manifest.json new file mode 100644 index 0000000..4c72b6c --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/manifest.json @@ -0,0 +1,117 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:30:46.602689+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re100", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/norm.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/norm.json new file mode 100644 index 0000000..af92328 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.019199129194021225, + "sens_deviation": [ + 0.8231719732284546, + -0.12661591172218323, + 0.24832786619663239, + -0.01064519677311182, + 0.7844515442848206, + 0.1161285787820816 + ], + "sens_norm_fact": [ + 3.3014419078826904, + 3.2062995433807373, + 1.8544995784759521, + 3.4928226470947266, + 3.1099960803985596, + 2.815072774887085 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/result.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/result.json new file mode 100644 index 0000000..c71c279 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.18115064725939095, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re100", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9525476844593262 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/config.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/config.json new file mode 100644 index 0000000..040d420 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/manifest.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/manifest.json new file mode 100644 index 0000000..a60ebf2 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/manifest.json @@ -0,0 +1,117 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:33:41.006848+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip", + "model_sha256": "62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re200", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/norm.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/norm.json new file mode 100644 index 0000000..8178aae --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.02405486349016428, + "sens_deviation": [ + 0.761349618434906, + -0.10393908619880676, + -0.0060332342982292175, + -0.01062991376966238, + 0.7603892087936401, + 0.08925710618495941 + ], + "sens_norm_fact": [ + 2.458379030227661, + 2.4950430393218994, + 0.986889123916626, + 2.259662389755249, + 2.737121820449829, + 2.521576404571533 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/result.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/result.json new file mode 100644 index 0000000..ced5bfb --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.11295380363625826, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip", + "model_sha256": "62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re200/norm.json", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re200", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9019246985126909 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/config.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/config.json new file mode 100644 index 0000000..7908206 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/manifest.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/manifest.json new file mode 100644 index 0000000..9bb7e88 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/manifest.json @@ -0,0 +1,117 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:36:34.723694+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip", + "model_sha256": "e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re400", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/norm.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/norm.json new file mode 100644 index 0000000..5ad00bc --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.030264523811638355, + "sens_deviation": [ + 0.8747888207435608, + -0.024021463468670845, + 0.5912007689476013, + 0.017280835658311844, + 0.9475194215774536, + 0.07682034373283386 + ], + "sens_norm_fact": [ + 5.08115291595459, + 5.131664276123047, + 3.3446834087371826, + 5.320921897888184, + 4.4046711921691895, + 5.202882766723633 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/result.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/result.json new file mode 100644 index 0000000..280245c --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.03504574790598314, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip", + "model_sha256": "e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re400/norm.json", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re400", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.7772853368207708 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/config.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/config.json new file mode 100644 index 0000000..9e97ee1 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/manifest.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/manifest.json new file mode 100644 index 0000000..92e9597 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/manifest.json @@ -0,0 +1,117 @@ +{ + "cfd_device": 0, + "cfd_device_logical": 0, + "cfd_gpu_name": "Tesla V100-SXM2-16GB", + "cfd_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-18T09:27:42.439484+00:00", + "cuda_visible_devices": "2", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re50", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/norm.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/norm.json new file mode 100644 index 0000000..1da2c30 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.015911692287772894, + "sens_deviation": [ + 0.6078279614448547, + -0.04162348061800003, + 0.07135022431612015, + -0.0008823801181279123, + 0.6027681827545166, + 0.0418982058763504 + ], + "sens_norm_fact": [ + 0.789494514465332, + 1.1795930862426758, + 0.18662318587303162, + 1.1806247234344482, + 0.8472481369972229, + 1.2091511487960815 + ] +} diff --git a/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/result.json b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/result.json new file mode 100644 index 0000000..15290b9 --- /dev/null +++ b/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.19516606600816055, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id article-joint-data-karman-20260718 --device 0 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re50/norm.json", + "run_id": "article-joint-data-karman-20260718", + "scene": "karman_re50", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9560975831726358 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/config.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/config.json new file mode 100644 index 0000000..bbdc87d --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/manifest.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/manifest.json new file mode 100644 index 0000000..ae5e2db --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/manifest.json @@ -0,0 +1,111 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-20260716 --norm-source existing --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T15:33:13.359477+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100", + "run_id": "round1-legacy-20260716", + "scene": "karman_re100", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/norm.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/norm.json new file mode 100644 index 0000000..af92328 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re100/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.019199129194021225, + "sens_deviation": [ + 0.8231719732284546, + -0.12661591172218323, + 0.24832786619663239, + -0.01064519677311182, + 0.7844515442848206, + 0.1161285787820816 + ], + "sens_norm_fact": [ + 3.3014419078826904, + 3.2062995433807373, + 1.8544995784759521, + 3.4928226470947266, + 3.1099960803985596, + 2.815072774887085 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/config.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/config.json new file mode 100644 index 0000000..9e97ee1 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/manifest.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/manifest.json new file mode 100644 index 0000000..9002cbd --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/manifest.json @@ -0,0 +1,111 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-20260716 --norm-source existing --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T15:30:00.174858+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50", + "run_id": "round1-legacy-20260716", + "scene": "karman_re50", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/norm.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/norm.json new file mode 100644 index 0000000..1da2c30 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.015911692287772894, + "sens_deviation": [ + 0.6078279614448547, + -0.04162348061800003, + 0.07135022431612015, + -0.0008823801181279123, + 0.6027681827545166, + 0.0418982058763504 + ], + "sens_norm_fact": [ + 0.789494514465332, + 1.1795930862426758, + 0.18662318587303162, + 1.1806247234344482, + 0.8472481369972229, + 1.2091511487960815 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/result.json b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/result.json new file mode 100644 index 0000000..fa9fad2 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-20260716/karman/karman_re50/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.19782328174062683, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-20260716 --norm-source existing --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re50/norm.json", + "run_id": "round1-legacy-20260716", + "scene": "karman_re50", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9538252232596278 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/config.json new file mode 100644 index 0000000..ad0a9e8 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/manifest.json new file mode 100644 index 0000000..2bdcf51 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/manifest.json @@ -0,0 +1,125 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_0.75L --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T16:39:59.246257+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip", + "model_sha256": "1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L", + "run_id": "round1-legacy-v2-20260716", + "scene": "illusion_0.75L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/norm.json new file mode 100644 index 0000000..1be6aa1 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.013459767680615187, + "sens_deviation": [ + 0.9466423392295837, + -0.1479361653327942, + 0.6496055126190186, + -0.06913633644580841, + 0.9421071410179138, + 0.08593743294477463 + ], + "sens_norm_fact": [ + 2.1083030700683594, + 2.7172951698303223, + 0.7220026850700378, + 3.7818100452423096, + 2.1336052417755127, + 2.4038033485412598 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/result.json new file mode 100644 index 0000000..6feab89 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_0.75L --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.2, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_075L_2U_400S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 400, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 0.75, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 0.75, + "target_radius_lattice": 15.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip", + "model_sha256": "1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_0.75L/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "illusion_0.75L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9781681831464758, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/target_harmonics.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/target_harmonics.json new file mode 100644 index 0000000..5c24594 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 3.8455211793365706e-05, + 8.275450949679295e-06, + 8.079411468771617e-06, + 7.703868459170013e-06, + 3.4893412287373916e-06 + ], + "dc": 0.004289336018264294, + "freqs": [ + 0.06666666666666667, + 0.08666666666666667, + 0.09333333333333334, + 0.18000000000000002, + 0.1 + ], + "phases": [ + -0.09027229604986224, + 1.1771545263254184, + -1.7735084849793448, + 1.6978693131794365, + -1.7975434944250634 + ] + }, + { + "amps": [ + 0.0011723440153265285, + 2.8622262322820926e-06, + 2.3151027134545353e-06, + 2.1242075647001297e-06, + 1.604450387313593e-06 + ], + "dc": -4.7423382056877015e-07, + "freqs": [ + 0.03333333333333333, + 0.02666666666666667, + 0.04, + 0.1, + 0.02 + ], + "phases": [ + 0.3530080939318378, + -2.8379714810098675, + 0.39873349113082845, + 2.3378598414739864, + -2.9400347939224174 + ] + }, + { + "amps": [ + 0.24895820326360354, + 0.03191204254867192, + 0.030453305064819785, + 0.009513250962316023, + 0.005321433970164499 + ], + "dc": 1.0453963434696198, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + -2.4618486314327845, + 0.9863940246906102, + -1.287471815531323, + 1.9953239608863989, + -0.25503064326534286 + ] + }, + { + "amps": [ + 0.33085045262917817, + 0.08517004748666594, + 0.038583915719320745, + 0.021846336418179752, + 0.00737888145588223 + ], + "dc": -0.021879322317739328, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + 1.9976521164367769, + -1.262943768730912, + 2.687620932707098, + -0.3686931534340266, + -3.05728661831384 + ] + }, + { + "amps": [ + 0.0716083026905364, + 0.00846750552489408, + 0.0007813395036211814, + 0.00042612893328348897, + 0.0003674080876422995 + ], + "dc": 0.9041156069437662, + "freqs": [ + 0.06666666666666667, + 0.13333333333333333, + 0.2, + 0.060000000000000005, + 0.09333333333333334 + ], + "phases": [ + -2.482222589272965, + -1.265378160509392, + 1.411428578816568, + 0.5675569819554193, + 3.131072391856925 + ] + }, + { + "amps": [ + 0.6376527910791839, + 0.12734248975352097, + 0.012382558510752689, + 0.001647010727150886, + 0.0014319508559823516 + ], + "dc": 0.00017987216512362162, + "freqs": [ + 0.03333333333333333, + 0.1, + 0.16666666666666669, + 0.23333333333333334, + 0.02666666666666667 + ], + "phases": [ + 2.078229108474305, + -3.097292180022822, + -2.2903972319166037, + 2.1628352810611506, + -0.9135680435394102 + ] + }, + { + "amps": [ + 0.24900638497594532, + 0.0320362542669637, + 0.03024473777928113, + 0.009611121032916274, + 0.005279091558057458 + ], + "dc": 1.0451870659987132, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + 0.6798900741813563, + 0.9863702478090999, + 1.8653507401881053, + 1.9902477027500673, + 2.8614320188386118 + ] + }, + { + "amps": [ + 0.3306929095087968, + 0.08548418983500956, + 0.03861379218924948, + 0.02194624227154387, + 0.0074365715362979265 + ], + "dc": 0.021999197993427515, + "freqs": [ + 0.03333333333333333, + 0.06666666666666667, + 0.1, + 0.13333333333333333, + 0.16666666666666669 + ], + "phases": [ + 1.9975600909207532, + 1.8782427755946722, + 2.6838143318810674, + 2.7664213671107905, + -3.0717431383539835 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/config.json new file mode 100644 index 0000000..821e92d --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/manifest.json new file mode 100644 index 0000000..f8e72ce --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/manifest.json @@ -0,0 +1,125 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T16:14:04.823052+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L", + "run_id": "round1-legacy-v2-20260716", + "scene": "illusion_1L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/norm.json new file mode 100644 index 0000000..2f4176d --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.01349810091778636, + "sens_deviation": [ + 0.9381087422370911, + -0.12299147248268127, + 0.648796796798706, + -0.022100985050201416, + 0.9596271514892578, + 0.11032649874687195 + ], + "sens_norm_fact": [ + 2.1753337383270264, + 2.5954699516296387, + 0.707850456237793, + 3.554702043533325, + 2.0688724517822266, + 2.5344114303588867 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/result.json new file mode 100644 index 0000000..e413fb6 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "illusion_1L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9712801660298956, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/target_harmonics.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/target_harmonics.json new file mode 100644 index 0000000..03486c9 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 0.00010205708255214146, + 3.0248093490965592e-05, + 1.3150227020475523e-05, + 1.1607369515791603e-05, + 1.1036696588396827e-05 + ], + "dc": 0.005646450578545531, + "freqs": [ + 0.08, + 0.13333333333333333, + 0.26666666666666666, + 0.2733333333333334, + 0.07333333333333333 + ], + "phases": [ + -0.10231600311226928, + -0.1972446247801372, + 1.1108103260960227, + -1.6776896410003184, + -0.09560354412318577 + ] + }, + { + "amps": [ + 0.002109026801983347, + 0.00011012509884861676, + 0.0001043715603670594, + 6.192627653273236e-05, + 4.746673018624633e-05 + ], + "dc": 1.715375133547544e-05, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.02666666666666667, + 0.05333333333333334 + ], + "phases": [ + 0.3082920945848423, + 0.2571952650069411, + -2.783781997604738, + 0.20836688401808104, + -2.7312639011375293 + ] + }, + { + "amps": [ + 0.3155440457066763, + 0.04652979024570437, + 0.021784389674249973, + 0.017486323042208485, + 0.014453075152406385 + ], + "dc": 1.0117336698373158, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + -0.766062272072484, + -2.520484135313382, + -1.676937530529786, + 2.3813121650836684, + -0.7457378774674286 + ] + }, + { + "amps": [ + 0.4500898765242194, + 0.10334445143259781, + 0.06606956446349073, + 0.03843800022276183, + 0.024089669153800685 + ], + "dc": -0.03956304603954777, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + -2.5961945770466985, + 1.9634892656764606, + 1.6057708007102416, + -0.035110790445565206, + 0.685401354792863 + ] + }, + { + "amps": [ + 0.07928524671005938, + 0.01416057863436279, + 0.008822679738690276, + 0.0073944904893691555, + 0.004274967427879971 + ], + "dc": 0.9201729357242584, + "freqs": [ + 0.08, + 0.16, + 0.08666666666666667, + 0.07333333333333333, + 0.09333333333333334 + ], + "phases": [ + 0.7545049238438057, + -0.9806295046785551, + -2.3116737608204234, + 0.6756930987832405, + -2.21374206436862 + ] + }, + { + "amps": [ + 0.7624573312055939, + 0.1752999739049753, + 0.03981102820306488, + 0.03817959962818357, + 0.030035340442593258 + ], + "dc": -0.005461694399515788, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.04666666666666667, + 0.03333333333333333, + 0.12666666666666668 + ], + "phases": [ + -2.5223017431056736, + 1.9905492746244613, + 0.7323723101143929, + -2.6324440393725337, + -1.0602928926817423 + ] + }, + { + "amps": [ + 0.3153989439537227, + 0.04648743847198824, + 0.025715081115708482, + 0.01769277774751535, + 0.014536837024573751 + ], + "dc": 1.009100293715795, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + 2.377859545359567, + 0.6504773051217484, + -1.4310032291911887, + -0.7934055658540536, + 2.4219628545287097 + ] + }, + { + "amps": [ + 0.4510401036131541, + 0.09796160643556902, + 0.0700978398942289, + 0.036773708690719546, + 0.02297123045471385 + ], + "dc": 0.03311382582876831, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.03333333333333333 + ], + "phases": [ + -2.592195908805058, + -1.1095158360930863, + 1.6657355074615787, + -3.107414747343894, + -2.6551572803892065 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/config.json new file mode 100644 index 0000000..bbdc87d --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/manifest.json new file mode 100644 index 0000000..524730a --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T15:56:10.558872+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re100", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/norm.json new file mode 100644 index 0000000..af92328 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.019199129194021225, + "sens_deviation": [ + 0.8231719732284546, + -0.12661591172218323, + 0.24832786619663239, + -0.01064519677311182, + 0.7844515442848206, + 0.1161285787820816 + ], + "sens_norm_fact": [ + 3.3014419078826904, + 3.2062995433807373, + 1.8544995784759521, + 3.4928226470947266, + 3.1099960803985596, + 2.815072774887085 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/result.json new file mode 100644 index 0000000..a1b1780 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.1855554806645312, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re100", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9454895479138941 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/config.json new file mode 100644 index 0000000..040d420 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/manifest.json new file mode 100644 index 0000000..aded7da --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T15:59:17.195761+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip", + "model_sha256": "62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re200", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/norm.json new file mode 100644 index 0000000..8178aae --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.02405486349016428, + "sens_deviation": [ + 0.761349618434906, + -0.10393908619880676, + -0.0060332342982292175, + -0.01062991376966238, + 0.7603892087936401, + 0.08925710618495941 + ], + "sens_norm_fact": [ + 2.458379030227661, + 2.4950430393218994, + 0.986889123916626, + 2.259662389755249, + 2.737121820449829, + 2.521576404571533 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/result.json new file mode 100644 index 0000000..b5ec165 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.11469697644647159, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re200", + "mu": 0.01, + "n_objects_env": 7, + "nu": 0.002, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 200, + "re_d": 100.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip", + "model_sha256": "62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re200/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re200", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.904306268518687 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/config.json new file mode 100644 index 0000000..7908206 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/manifest.json new file mode 100644 index 0000000..5b6b147 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T16:02:22.388480+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip", + "model_sha256": "e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re400", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/norm.json new file mode 100644 index 0000000..5ad00bc --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.030264523811638355, + "sens_deviation": [ + 0.8747888207435608, + -0.024021463468670845, + 0.5912007689476013, + 0.017280835658311844, + 0.9475194215774536, + 0.07682034373283386 + ], + "sens_norm_fact": [ + 5.08115291595459, + 5.131664276123047, + 3.3446834087371826, + 5.320921897888184, + 4.4046711921691895, + 5.202882766723633 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/result.json new file mode 100644 index 0000000..e8dc8a2 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.03748913974167962, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re400", + "mu": 0.005, + "n_objects_env": 7, + "nu": 0.001, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 400, + "re_d": 200.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip", + "model_sha256": "e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re400/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re400", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.7817098527577602 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/config.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/config.json new file mode 100644 index 0000000..9e97ee1 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/manifest.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/manifest.json new file mode 100644 index 0000000..932446d --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-16T15:52:57.057404+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re50", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/norm.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/norm.json new file mode 100644 index 0000000..1da2c30 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.015911692287772894, + "sens_deviation": [ + 0.6078279614448547, + -0.04162348061800003, + 0.07135022431612015, + -0.0008823801181279123, + 0.6027681827545166, + 0.0418982058763504 + ], + "sens_norm_fact": [ + 0.789494514465332, + 1.1795930862426758, + 0.18662318587303162, + 1.1806247234344482, + 0.8472481369972229, + 1.2091511487960815 + ] +} diff --git a/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/result.json b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/result.json new file mode 100644 index 0000000..b0075f2 --- /dev/null +++ b/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.19767691502014098, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --group karman_trained --run-id round1-legacy-v2-20260716 --norm-source existing --model-device cpu --device 2 --steps 200", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re50", + "mu": 0.04, + "n_objects_env": 7, + "nu": 0.008, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 50, + "re_d": 25.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip", + "model_sha256": "dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re50/norm.json", + "run_id": "round1-legacy-v2-20260716", + "scene": "karman_re50", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.953781367331976 +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/config.json b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/config.json new file mode 100644 index 0000000..821e92d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/manifest.json b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/manifest.json new file mode 100644 index 0000000..531f557 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/manifest.json @@ -0,0 +1,125 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id trusted-baseline-illusion-1L-20260717 --device 2 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-17T14:30:20.061623+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L", + "run_id": "trusted-baseline-illusion-1L-20260717", + "scene": "illusion_1L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/norm.json b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/norm.json new file mode 100644 index 0000000..2f4176d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.01349810091778636, + "sens_deviation": [ + 0.9381087422370911, + -0.12299147248268127, + 0.648796796798706, + -0.022100985050201416, + 0.9596271514892578, + 0.11032649874687195 + ], + "sens_norm_fact": [ + 2.1753337383270264, + 2.5954699516296387, + 0.707850456237793, + 3.554702043533325, + 2.0688724517822266, + 2.5344114303588867 + ] +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/result.json b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/result.json new file mode 100644 index 0000000..1b4a38e --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id trusted-baseline-illusion-1L-20260717 --device 2 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json", + "run_id": "trusted-baseline-illusion-1L-20260717", + "scene": "illusion_1L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9720213095199681, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/target_harmonics.json b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/target_harmonics.json new file mode 100644 index 0000000..447931c --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 0.00010196774356419014, + 3.032701814051478e-05, + 1.3228762280839473e-05, + 1.1673375144869918e-05, + 1.0964842249249103e-05 + ], + "dc": 0.0056462297185013695, + "freqs": [ + 0.08, + 0.13333333333333333, + 0.26666666666666666, + 0.2733333333333334, + 0.07333333333333333 + ], + "phases": [ + 0.03921127148867175, + -0.20521784776001037, + 1.117788657118904, + -1.6465117556376254, + 0.02795306706095781 + ] + }, + { + "amps": [ + 0.002108351623232651, + 0.00010962462789660424, + 0.00010476229400614519, + 6.123869990851442e-05, + 4.802141065079675e-05 + ], + "dc": 1.7033609062006387e-05, + "freqs": [ + 0.04, + 0.03333333333333333, + 0.04666666666666667, + 0.02666666666666667, + 0.05333333333333334 + ], + "phases": [ + 0.37869413350756936, + 0.3173332115115616, + -2.7014492558727667, + 0.2534779505164423, + -2.643156573058147 + ] + }, + { + "amps": [ + 0.31570653803276794, + 0.046163244835151995, + 0.02162658867400612, + 0.0172669656623398, + 0.01476969869324928 + ], + "dc": 1.011843715508779, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + -0.6947432521717131, + -2.3064024401768686, + -1.5240254680520227, + 2.451591762128242, + -0.6745235757730336 + ] + }, + { + "amps": [ + 0.45013711146880914, + 0.10336157533147983, + 0.06600727530922762, + 0.03830901014633774, + 0.024015733278508953 + ], + "dc": -0.03963665588370835, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + -2.525913116723188, + 2.104892743012555, + 1.8181122471584426, + 0.24481879148524657, + 0.7715937550294908 + ] + }, + { + "amps": [ + 0.07926809296790842, + 0.014154811211794916, + 0.008844410543414708, + 0.0073552671239413584, + 0.004181543938695215 + ], + "dc": 0.9201145060857137, + "freqs": [ + 0.08, + 0.16, + 0.08666666666666667, + 0.07333333333333333, + 0.09333333333333334 + ], + "phases": [ + 0.895994021819374, + -0.695178280624656, + -2.159387993799781, + 0.8108673559556853, + -2.06819012077892 + ] + }, + { + "amps": [ + 0.7625183846891965, + 0.1752750324845121, + 0.039706341470235294, + 0.03827810670972904, + 0.03001636791934177 + ], + "dc": -0.0055768885601234315, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.04666666666666667, + 0.03333333333333333, + 0.12666666666666668 + ], + "phases": [ + -2.4520050717676893, + 2.202338653276725, + 0.8177172306739968, + -2.574816071319194, + -0.8402515143535457 + ] + }, + { + "amps": [ + 0.31558575520571946, + 0.0462242484755283, + 0.02569259450931368, + 0.017517897942108, + 0.01466179958491772 + ], + "dc": 1.0089127842585246, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.04666666666666667, + 0.03333333333333333 + ], + "phases": [ + 2.4486066229372128, + 0.8621504700214153, + -1.3026311952152456, + -0.724446974046741, + 2.4986185998985477 + ] + }, + { + "amps": [ + 0.4508230973881, + 0.0979933577610358, + 0.07014096184533862, + 0.036576312657725214, + 0.022942349526841748 + ], + "dc": 0.0331866528155903, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + -2.5216190520635173, + -0.9665070933349191, + 1.8736886903806256, + -2.8287826555595905, + 0.6641213742709987 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/config.json b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/config.json new file mode 100644 index 0000000..bbdc87d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/manifest.json b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/manifest.json new file mode 100644 index 0000000..c55a92f --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene karman_re100 --run-id trusted-baseline-karman-re100-20260717 --device 2 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-17T14:26:25.026331+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100", + "run_id": "trusted-baseline-karman-re100-20260717", + "scene": "karman_re100", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/norm.json b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/norm.json new file mode 100644 index 0000000..af92328 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.019199129194021225, + "sens_deviation": [ + 0.8231719732284546, + -0.12661591172218323, + 0.24832786619663239, + -0.01064519677311182, + 0.7844515442848206, + 0.1161285787820816 + ], + "sens_norm_fact": [ + 3.3014419078826904, + 3.2062995433807373, + 1.8544995784759521, + 3.4928226470947266, + 3.1099960803985596, + 2.815072774887085 + ] +} diff --git a/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/result.json b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/result.json new file mode 100644 index 0000000..209698a --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.18065288270204463, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene karman_re100 --run-id trusted-baseline-karman-re100-20260717 --device 2 --model-device cpu --steps 200 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json", + "run_id": "trusted-baseline-karman-re100-20260717", + "scene": "karman_re100", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9533619948248897 +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/config.json b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/config.json new file mode 100644 index 0000000..821e92d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/config.json @@ -0,0 +1,109 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/manifest.json b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/manifest.json new file mode 100644 index 0000000..4760a3b --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/manifest.json @@ -0,0 +1,125 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id trusted-parity-stage1-illusion-20260717 --device 2 --model-device cpu --steps 40 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-17T14:13:57.682595+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L", + "run_id": "trusted-parity-stage1-illusion-20260717", + "scene": "illusion_1L", + "scene_id": "illusion", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/norm.json b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/norm.json new file mode 100644 index 0000000..2f4176d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "force_norm_fact": 0.01349810091778636, + "sens_deviation": [ + 0.9381087422370911, + -0.12299147248268127, + 0.648796796798706, + -0.022100985050201416, + 0.9596271514892578, + 0.11032649874687195 + ], + "sens_norm_fact": [ + 2.1753337383270264, + 2.5954699516296387, + 0.707850456237793, + 3.554702043533325, + 2.0688724517822266, + 2.5344114303588867 + ] +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/result.json b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/result.json new file mode 100644 index 0000000..5ceca1e --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/result.json @@ -0,0 +1,124 @@ +{ + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene illusion_1L --run-id trusted-parity-stage1-illusion-20260717 --device 2 --model-device cpu --steps 40 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -2.0, + 2.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.3, + "control_time_scale_steps": 2000, + "conv_len": 36, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": false, + "model_name": "d1a3o14_250525_imit_1L_2U_600S", + "mu": 0.02, + "n_objects_env": 6, + "nu": 0.004, + "obs_slice": [ + 0, + 12 + ], + "pinball_front_x": 19.0, + "pinball_rear_x": 20.3, + "policy_init_action": [ + 0.0, + -1.0, + 1.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 14, + "sample_interval": 600, + "scene_id": "illusion", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 30.0, + "source": "PPO_inference", + "target_center": [ + 20.0, + 12.775, + 0.0 + ], + "target_center_x": 20.0, + "target_diameter": 1.0, + "target_force_slice": [ + 0, + 2 + ], + "target_radius": 1.0, + "target_radius_lattice": 20.0, + "target_sensor_slice": [ + 2, + 8 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip", + "model_sha256": "570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json", + "run_id": "trusted-parity-stage1-illusion-20260717", + "scene": "illusion_1L", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9439514846437507, + "target_only": false +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/target_harmonics.json b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/target_harmonics.json new file mode 100644 index 0000000..c179283 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/target_harmonics.json @@ -0,0 +1,207 @@ +{ + "channel_names": [ + "target_cylinder_fx", + "target_cylinder_fy", + "sensor_top_ux", + "sensor_top_uy", + "sensor_center_ux", + "sensor_center_uy", + "sensor_bottom_ux", + "sensor_bottom_uy" + ], + "harmonics": [ + { + "amps": [ + 9.896524272324539e-05, + 3.270217010752068e-05, + 1.3227312277965475e-05, + 1.2543848981281935e-05, + 1.1587945089095987e-05 + ], + "dc": 0.005646179253235459, + "freqs": [ + 0.08, + 0.13333333333333333, + 0.26666666666666666, + 0.08666666666666667, + 0.2733333333333334 + ], + "phases": [ + 1.6521698259783169, + -0.2194277854570294, + 1.0577465313978591, + -1.3370367889098733, + -1.6226727170998827 + ] + }, + { + "amps": [ + 0.002096128010984951, + 0.00011596305538626617, + 9.643768836790472e-05, + 5.838634255822089e-05, + 4.6525265661515145e-05 + ], + "dc": -7.480152538240266e-06, + "freqs": [ + 0.04, + 0.04666666666666667, + 0.03333333333333333, + 0.05333333333333334, + 0.02666666666666667 + ], + "phases": [ + -1.9489917996678838, + 1.2632774854166908, + -2.035393858435223, + 1.3244218313587275, + -2.1432460008395715 + ] + }, + { + "amps": [ + 0.3176871363824446, + 0.04616894933493302, + 0.024168858643944226, + 0.01680346091456866, + 0.015422194312928307 + ], + "dc": 1.007818570137024, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.03333333333333333, + 0.04666666666666667 + ], + "phases": [ + -3.0224428062709814, + -2.9487512179549316, + 0.2282638168672656, + -3.0310722454581676, + 0.1252777551444909 + ] + }, + { + "amps": [ + 0.4476750318510778, + 0.10310320287245037, + 0.06564826578823499, + 0.037341700503247185, + 0.026079817048927274 + ], + "dc": -0.036230880088793736, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + 1.4386667184552577, + -2.4797874123184793, + 1.1395690268136565, + -2.6389547409332357, + -1.7295856930453837 + ] + }, + { + "amps": [ + 0.07932461031001699, + 0.013153282488351407, + 0.008790908001969843, + 0.007511912073189613, + 0.00410096312687044 + ], + "dc": 0.919138089021047, + "freqs": [ + 0.08, + 0.16, + 0.08666666666666667, + 0.07333333333333333, + 0.16666666666666669 + ], + "phases": [ + 2.539462585331961, + 2.604864348660965, + -0.654460615742855, + 2.589552669530259, + -0.5650832440467509 + ] + }, + { + "amps": [ + 0.7597455574742427, + 0.16954562722942987, + 0.04161616263670536, + 0.03513609233486273, + 0.03471969830763307 + ], + "dc": 0.0015289543693264326, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.04666666666666667, + 0.12666666666666668, + 0.03333333333333333 + ], + "phases": [ + 1.50705513402573, + 1.5030892775788058, + -1.564639488745293, + -1.538221973154802, + 1.4281983790782813 + ] + }, + { + "amps": [ + 0.3193730467488092, + 0.046643000483885505, + 0.023902549697790296, + 0.018351904772743278, + 0.013724588911044297 + ], + "dc": 1.0139576609929402, + "freqs": [ + 0.04, + 0.12000000000000001, + 0.08, + 0.03333333333333333, + 0.04666666666666667 + ], + "phases": [ + 0.11830773170808705, + 0.18705442139226408, + 0.22195349082173735, + 0.09392190234217508, + -2.9953365615890957 + ] + }, + { + "amps": [ + 0.4500198774613176, + 0.1021275817018489, + 0.06508205088037668, + 0.03709764322583649, + 0.023727545093224195 + ], + "dc": 0.03883644153053562, + "freqs": [ + 0.04, + 0.08, + 0.12000000000000001, + 0.16, + 0.04666666666666667 + ], + "phases": [ + 1.4270222590490442, + 0.5863701483399966, + 1.1146787610401374, + 0.3225195172689922, + -1.4937154896098552 + ] + } + ], + "schema_version": "sr-target-harmonics-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/config.json b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/config.json new file mode 100644 index 0000000..bbdc87d --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/config.json @@ -0,0 +1,97 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/manifest.json b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/manifest.json new file mode 100644 index 0000000..4382dd8 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/manifest.json @@ -0,0 +1,113 @@ +{ + "cfd_device": 2, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene karman_re100 --run-id trusted-parity-stage1-karman-20260717 --device 2 --model-device cpu --steps 40 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "created_utc": "2026-07-17T14:03:52.744099+00:00", + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_device": "cpu", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "output_dir": "/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100", + "run_id": "trusted-parity-stage1-karman-20260717", + "scene": "karman_re100", + "scene_id": "karman", + "schema_version": "sr-stage1-manifest-v2" +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/norm.json b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/norm.json new file mode 100644 index 0000000..af92328 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/norm.json @@ -0,0 +1,24 @@ +{ + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "force_norm_fact": 0.019199129194021225, + "sens_deviation": [ + 0.8231719732284546, + -0.12661591172218323, + 0.24832786619663239, + -0.01064519677311182, + 0.7844515442848206, + 0.1161285787820816 + ], + "sens_norm_fact": [ + 3.3014419078826904, + 3.2062995433807373, + 1.8544995784759521, + 3.4928226470947266, + 3.1099960803985596, + 2.815072774887085 + ] +} diff --git a/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/result.json b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/result.json new file mode 100644 index 0000000..a19a1a4 --- /dev/null +++ b/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/result.json @@ -0,0 +1,112 @@ +{ + "avg_reward_last100": 0.1122341498708183, + "command": "/home/frank14f/anaconda3/envs/pycuda_3_10/bin/python /home/frank14f/DynamisLab/src/SR_analysis/stage_1_infer.py --scene karman_re100 --run-id trusted-parity-stage1-karman-20260717 --device 2 --model-device cpu --steps 40 --norm-source existing", + "config": { + "action_bias": [ + 0.0, + -4.0, + 4.0 + ], + "action_layout": [ + "front", + "upper", + "lower" + ], + "action_scale": 8.0, + "body_layout": [ + "front", + "upper", + "lower" + ], + "control_dt": 0.4, + "control_time_scale_steps": 2000, + "conv_len": 30, + "dtw_lag_channel": 1, + "dtw_version": "legacy_dtw_v1_abs_n_unclipped", + "fifo_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "fifo_len": 150, + "force_layout": [ + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "has_disturbance": true, + "model_name": "d1a3o12_re100", + "mu": 0.02, + "n_objects_env": 7, + "nu": 0.004, + "obs_slice": [ + 2, + 14 + ], + "pinball_front_x": 30.0, + "pinball_rear_x": 31.3, + "policy_init_action": [ + 0.0, + -4.0, + 4.0 + ], + "raw_force_slice": [ + 6, + 12 + ], + "raw_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy", + "front_fx", + "front_fy", + "upper_fx", + "upper_fy", + "lower_fx", + "lower_fy" + ], + "raw_sensor_slice": [ + 0, + 6 + ], + "re_code": 100, + "re_d": 50.0, + "s_dim": 12, + "sample_interval": 800, + "scene_id": "karman", + "sensor_layout": [ + "upper_ux", + "upper_uy", + "center_ux", + "center_uy", + "lower_ux", + "lower_uy" + ], + "sensor_x": 40.0, + "source": "PPO_inference", + "target_force_slice": null, + "target_sensor_slice": [ + 0, + 6 + ], + "target_type": "periodic", + "u0": 0.01 + }, + "controlled": true, + "git_sha": "ca8ee5f238ee58eaaf48027ad026c35784f76d4d", + "metric_id": "legacy_similarity_v1", + "model_path": "/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip", + "model_sha256": "148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d", + "norm_source": "existing", + "norm_source_path": "/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json", + "run_id": "trusted-parity-stage1-karman-20260717", + "scene": "karman_re100", + "schema_version": "sr-stage1-result-v2", + "similarity": 0.9193018703204062 +} diff --git a/src/SR_analysis/data/v5/ill_075L_sc/config.json b/src/SR_analysis/data/v5/ill_075L_sc/config.json new file mode 100644 index 0000000..e21d876 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_075L_sc/config.json @@ -0,0 +1,23 @@ +{ + "case_name": "ill_075L_sc", + "scene_type": "illusion", + "seed": 43, + "SI": 400, + "conv_len": 36, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 14, + "obs_slice": [ + 0, + 12 + ], + "n_objects": 6, + "dtw_sim_v5": 0.807, + "target_diam": 0.75 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_075L_sc/norm.json b/src/SR_analysis/data/v5/ill_075L_sc/norm.json new file mode 100644 index 0000000..32402fd --- /dev/null +++ b/src/SR_analysis/data/v5/ill_075L_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0027, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.93, + 0.93, + 0.93, + 0.93, + 0.93, + 0.93 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_075L_sc/target_harmonics.json b/src/SR_analysis/data/v5/ill_075L_sc/target_harmonics.json new file mode 100644 index 0000000..d1a4ffa --- /dev/null +++ b/src/SR_analysis/data/v5/ill_075L_sc/target_harmonics.json @@ -0,0 +1,194 @@ +[ + { + "dc": 0.6880434715747833, + "amps": [ + 0.20458854492288428, + 0.029587454617069717, + 0.023086505618233506, + 0.015887573451687485, + 0.015224800527538423 + ], + "freqs": [ + 0.04666666666666667, + 0.09333333333333334, + 0.14, + 0.04, + 0.05333333333333334 + ], + "phases": [ + 0.8052693464963836, + 0.8585544263338698, + 1.5640671931988963, + 0.6910392906444525, + -2.216224115427546 + ] + }, + { + "dc": -0.03409056488269319, + "amps": [ + 0.28250401992411595, + 0.0839014032107188, + 0.023194630910947703, + 0.0224081212732497, + 0.019443415576586083 + ], + "freqs": [ + 0.04666666666666667, + 0.09333333333333334, + 0.05333333333333334, + 0.14, + 0.04 + ], + "phases": [ + -1.1822505843673459, + -1.6295483036248934, + 2.0225321750676226, + -1.3294886137563726, + -1.2266528328867428 + ] + }, + { + "dc": 0.5679984021186829, + "amps": [ + 0.0709233637307587, + 0.012005284914812347, + 0.009957602905498198, + 0.007673219000155801, + 0.005642999478245448 + ], + "freqs": [ + 0.09333333333333334, + 0.1, + 0.08666666666666667, + 0.18666666666666668, + 0.08 + ], + "phases": [ + -2.9098548394911363, + 0.2444772386755709, + -2.923760907258934, + -2.3476370568341025, + -2.9384376175358975 + ] + }, + { + "dc": 0.002600441810985406, + "amps": [ + 0.4577146477003557, + 0.07132710651328872, + 0.03879305754033502, + 0.031533998376329836, + 0.023207703607031185 + ], + "freqs": [ + 0.04666666666666667, + 0.14, + 0.05333333333333334, + 0.04, + 0.14666666666666667 + ], + "phases": [ + -1.0453955275913698, + 0.023733604405332853, + 2.027674250857449, + -0.9668436080107814, + 2.9974194919092074 + ] + }, + { + "dc": 0.6843333508570989, + "amps": [ + 0.2027868050587619, + 0.03224986194391876, + 0.023683399224590198, + 0.017188052917190243, + 0.014195586293361808 + ], + "freqs": [ + 0.04666666666666667, + 0.09333333333333334, + 0.14, + 0.05333333333333334, + 0.04 + ], + "phases": [ + -2.332747687836994, + 0.901723727828658, + -1.5698392646942605, + 0.8720854157784957, + -2.4095136755460116 + ] + }, + { + "dc": 0.03538458936226865, + "amps": [ + 0.28056052556752703, + 0.08980764376406389, + 0.025910222962895864, + 0.025769124827608153, + 0.018025383425213076 + ], + "freqs": [ + 0.04666666666666667, + 0.09333333333333334, + 0.14, + 0.05333333333333334, + 0.04 + ], + "phases": [ + -1.1738666976140295, + 1.5542442005746904, + -1.3251908712196567, + 1.914224046821627, + -1.1116570339811487 + ] + }, + { + "dc": 0.002806983096525073, + "amps": [ + 1.863819876324592e-05, + 3.4708330705432185e-06, + 2.39060217225783e-06, + 1.6423800325272625e-06, + 1.214928267259123e-06 + ], + "freqs": [ + 0.09333333333333334, + 0.1, + 0.08666666666666667, + 0.10666666666666667, + 0.08 + ], + "phases": [ + 1.6786485599243235, + -1.430910501668555, + 1.6430924473318198, + -1.4004219000745928, + 1.6107600770410602 + ] + }, + { + "dc": 3.3828392588475254e-06, + "amps": [ + 0.0006693090637555961, + 5.748734281187716e-05, + 4.546729268385329e-05, + 2.861502365890377e-05, + 2.252313774853955e-05 + ], + "freqs": [ + 0.04666666666666667, + 0.05333333333333334, + 0.04, + 0.060000000000000005, + 0.03333333333333333 + ], + "phases": [ + 1.2285674314114634, + -1.837985680644138, + 1.1401638162714627, + -1.7728251272357027, + 1.033861654550007 + ] + } +] \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_15L_sc/config.json b/src/SR_analysis/data/v5/ill_15L_sc/config.json new file mode 100644 index 0000000..4dbe1b5 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_15L_sc/config.json @@ -0,0 +1,23 @@ +{ + "case_name": "ill_15L_sc", + "scene_type": "illusion", + "seed": 43, + "SI": 800, + "conv_len": 36, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 14, + "obs_slice": [ + 0, + 12 + ], + "n_objects": 6, + "dtw_sim_v5": 0.906, + "target_diam": 1.5 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_15L_sc/norm.json b/src/SR_analysis/data/v5/ill_15L_sc/norm.json new file mode 100644 index 0000000..32402fd --- /dev/null +++ b/src/SR_analysis/data/v5/ill_15L_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0027, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.93, + 0.93, + 0.93, + 0.93, + 0.93, + 0.93 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_15L_sc/target_harmonics.json b/src/SR_analysis/data/v5/ill_15L_sc/target_harmonics.json new file mode 100644 index 0000000..1bfdcf9 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_15L_sc/target_harmonics.json @@ -0,0 +1,194 @@ +[ + { + "dc": 0.6800722096363704, + "amps": [ + 0.17726790484077085, + 0.07214986888098779, + 0.03718919937950333, + 0.03164193453752531, + 0.02359206759504287 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.15333333333333335 + ], + "phases": [ + -0.2956153668445557, + 2.8592793665026592, + -0.29661213181143936, + 2.8821564617940507, + 1.255409944272186 + ] + }, + { + "dc": -0.026392826264103254, + "amps": [ + 0.24848326510643062, + 0.09923721198795286, + 0.06874542829633351, + 0.05410676915071553, + 0.046867520687297916 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.060000000000000005, + 0.10666666666666667 + ], + "phases": [ + -2.2474521851184464, + 0.7628350165871889, + -0.7996134261733369, + -2.1043795062015, + 2.630564859533038 + ] + }, + { + "dc": 0.567871309518814, + "amps": [ + 0.051754012581630815, + 0.040670985618124454, + 0.015753059502468768, + 0.014673381314016274, + 0.010377000987110948 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.2066666666666667 + ], + "phases": [ + -2.004131830540984, + 1.190566077709509, + -2.059817760903508, + 1.2412081654269276, + 2.5256212696677265 + ] + }, + { + "dc": 0.010556117304755995, + "amps": [ + 0.4052473633329253, + 0.1581445290021722, + 0.08904341389696892, + 0.07972284700513148, + 0.0667056517233862 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.15333333333333335, + 0.04 + ], + "phases": [ + -2.1316748242195067, + 0.9131455351644303, + -2.041940377123958, + -0.29850462113363907, + 0.8082924531559439 + ] + }, + { + "dc": 0.6916141651074091, + "amps": [ + 0.17793274925137637, + 0.07169462974502694, + 0.038129209689909134, + 0.031353890099582386, + 0.026095813478720604 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.1 + ], + "phases": [ + 2.8363812061074105, + -0.26281755290451375, + 2.7898758810927955, + -0.2229603901942551, + 1.9959114315732633 + ] + }, + { + "dc": 0.04023058448805689, + "amps": [ + 0.25004200467056115, + 0.09706112555094, + 0.06029326036261921, + 0.05550261362615218, + 0.05492183478744509 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.10666666666666667, + 0.060000000000000005 + ], + "phases": [ + -2.2755872535615786, + 0.8236303331608154, + 2.6281272839181957, + -0.8253870478466591, + -2.256228774462711 + ] + }, + { + "dc": 0.0028066928094873825, + "amps": [ + 1.3792983924300716e-05, + 1.0856925544863143e-05, + 4.181537579850468e-06, + 3.918741041987559e-06, + 2.4701262133819703e-06 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.08666666666666667 + ], + "phases": [ + 2.617337127005809, + -0.5385997982546826, + 2.632816952941782, + -0.5516603431099111, + 2.6469896394704255 + ] + }, + { + "dc": -2.1627074820571578e-05, + "amps": [ + 0.0005823734634155305, + 0.00024258955252046499, + 0.00011977992126339381, + 0.00010901031046165002, + 7.439842964385736e-05 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.03333333333333333 + ], + "phases": [ + 0.13218357585762947, + -3.025842932244956, + 0.14860502496430095, + -3.042353685000239, + -3.0588193156738965 + ] + } +] \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_1L_sc/config.json b/src/SR_analysis/data/v5/ill_1L_sc/config.json new file mode 100644 index 0000000..b909c3d --- /dev/null +++ b/src/SR_analysis/data/v5/ill_1L_sc/config.json @@ -0,0 +1,23 @@ +{ + "case_name": "ill_1L_sc", + "scene_type": "illusion", + "seed": 43, + "SI": 600, + "conv_len": 36, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 14, + "obs_slice": [ + 0, + 12 + ], + "n_objects": 6, + "dtw_sim_v5": 0.9, + "target_diam": 1.0 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_1L_sc/norm.json b/src/SR_analysis/data/v5/ill_1L_sc/norm.json new file mode 100644 index 0000000..32402fd --- /dev/null +++ b/src/SR_analysis/data/v5/ill_1L_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0027, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.93, + 0.93, + 0.93, + 0.93, + 0.93, + 0.93 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_1L_sc/target_harmonics.json b/src/SR_analysis/data/v5/ill_1L_sc/target_harmonics.json new file mode 100644 index 0000000..192b593 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_1L_sc/target_harmonics.json @@ -0,0 +1,194 @@ +[ + { + "dc": 0.6800722130139669, + "amps": [ + 0.17726790501460862, + 0.07214984105228388, + 0.03718921134043499, + 0.031641944554990135, + 0.02359207407770252 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.15333333333333335 + ], + "phases": [ + -0.29561529608664466, + 2.859279412341932, + -0.2966121328386332, + 2.8821562660306626, + 1.2554102673988916 + ] + }, + { + "dc": -0.026392827241215853, + "amps": [ + 0.24848325787361872, + 0.09923720512503463, + 0.06874542525838713, + 0.05410677031427399, + 0.04686751774314243 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.060000000000000005, + 0.10666666666666667 + ], + "phases": [ + -2.2474522070617517, + 0.7628350282526473, + -0.7996134213490298, + -2.104379540499502, + 2.630564839356059 + ] + }, + { + "dc": 0.5678713063398997, + "amps": [ + 0.05175401049579949, + 0.040670986113749814, + 0.01575306159988629, + 0.014673388945481137, + 0.010377003906900764 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.2066666666666667 + ], + "phases": [ + -2.0041318262765477, + 1.190566050588202, + -2.0598179954465694, + 1.2412078072708483, + 2.525621345040741 + ] + }, + { + "dc": 0.010556113358664637, + "amps": [ + 0.4052473657226, + 0.1581445281134495, + 0.08904341630881729, + 0.07972285102061069, + 0.06670566153000128 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.15333333333333335, + 0.04 + ], + "phases": [ + -2.1316748218914814, + 0.9131455323554333, + -2.041940314094351, + -0.29850462935771405, + 0.8082923840423487 + ] + }, + { + "dc": 0.6916141629219055, + "amps": [ + 0.17793274522042563, + 0.07169462219766379, + 0.03812920723863683, + 0.03135388775897376, + 0.026095810591241556 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.1 + ], + "phases": [ + 2.8363812070701218, + -0.2628176290812337, + 2.7898759842976544, + -0.22296012436681334, + 1.9959116645989934 + ] + }, + { + "dc": 0.040230584421833554, + "amps": [ + 0.2500420078327503, + 0.09706112657070609, + 0.06029326223125769, + 0.055502615688171296, + 0.05492183260352714 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.10666666666666667, + 0.060000000000000005 + ], + "phases": [ + -2.2755872545450564, + 0.823630307842851, + 2.6281272659858206, + -0.8253870632765498, + -2.2562287881535075 + ] + }, + { + "dc": 0.0028066811307022967, + "amps": [ + 1.3793325018692266e-05, + 1.0862521027901373e-05, + 4.199951506606359e-06, + 3.923494296433542e-06, + 2.4782404414485182e-06 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.08666666666666667 + ], + "phases": [ + 2.6166745367484774, + -0.538359231283386, + 2.6326795516260217, + -0.5493784462640929, + 2.652095248006331 + ] + }, + { + "dc": -2.1626665141714814e-05, + "amps": [ + 0.0005823740039278348, + 0.00024259003721153547, + 0.00011978058085199847, + 0.00010901094493335354, + 7.43983879569571e-05 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.03333333333333333 + ], + "phases": [ + 0.1321832798150878, + -3.0258406748908007, + 0.14859796948658313, + -3.0423477260597314, + -3.0587999570628788 + ] + } +] \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_2L_sc/config.json b/src/SR_analysis/data/v5/ill_2L_sc/config.json new file mode 100644 index 0000000..2f452d7 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_2L_sc/config.json @@ -0,0 +1,23 @@ +{ + "case_name": "ill_2L_sc", + "scene_type": "illusion", + "seed": 43, + "SI": 800, + "conv_len": 36, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 14, + "obs_slice": [ + 0, + 12 + ], + "n_objects": 6, + "dtw_sim_v5": 0.8, + "target_diam": 2.0 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_2L_sc/norm.json b/src/SR_analysis/data/v5/ill_2L_sc/norm.json new file mode 100644 index 0000000..32402fd --- /dev/null +++ b/src/SR_analysis/data/v5/ill_2L_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0027, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.93, + 0.93, + 0.93, + 0.93, + 0.93, + 0.93 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/ill_2L_sc/target_harmonics.json b/src/SR_analysis/data/v5/ill_2L_sc/target_harmonics.json new file mode 100644 index 0000000..2657bf6 --- /dev/null +++ b/src/SR_analysis/data/v5/ill_2L_sc/target_harmonics.json @@ -0,0 +1,194 @@ +[ + { + "dc": 0.6800722235441208, + "amps": [ + 0.177267911121579, + 0.07214984949339467, + 0.037189215230999, + 0.031641944117347276, + 0.023592072983959364 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.15333333333333335 + ], + "phases": [ + -0.2956153262624066, + 2.859279510498844, + -0.29661197693672914, + 2.8821569735581014, + 1.2554104506699733 + ] + }, + { + "dc": -0.026392828535754233, + "amps": [ + 0.24848325944946797, + 0.09923721180337518, + 0.06874542477958405, + 0.054106769102866006, + 0.04686751374809854 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.060000000000000005, + 0.10666666666666667 + ], + "phases": [ + -2.2474521816244146, + 0.76283497333665, + -0.7996133919477979, + -2.10437949449064, + 2.6305648907362196 + ] + }, + { + "dc": 0.5678712936242422, + "amps": [ + 0.051754016656216026, + 0.040670976114858294, + 0.015753066658846626, + 0.014673390947528927, + 0.0103770002621012 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.2066666666666667 + ], + "phases": [ + -2.0041319862243383, + 1.1905660052747455, + -2.059817935376591, + 1.2412084701074793, + 2.5256208311704453 + ] + }, + { + "dc": 0.010556115614017472, + "amps": [ + 0.40524736214830265, + 0.1581445265600707, + 0.08904341268789316, + 0.07972285238310393, + 0.06670565308918606 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.15333333333333335, + 0.04 + ], + "phases": [ + -2.1316748412628233, + 0.9131455229027158, + -2.0419403649149572, + -0.29850453655284237, + 0.8082924516207763 + ] + }, + { + "dc": 0.6916141607364019, + "amps": [ + 0.17793275006177459, + 0.0716946188547612, + 0.0381292139071596, + 0.03135388880103451, + 0.026095813959354595 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.1 + ], + "phases": [ + 2.836381162338234, + -0.26281764059267515, + 2.7898757607815488, + -0.22296014380514637, + 1.9959116671082548 + ] + }, + { + "dc": 0.0402305850226306, + "amps": [ + 0.25004200440345725, + 0.09706112473961438, + 0.060293259821748615, + 0.055502613563783075, + 0.0549218367444578 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.1, + 0.10666666666666667, + 0.060000000000000005 + ], + "phases": [ + -2.2755872645630086, + 0.8236303288133414, + 2.628127249793657, + -0.8253870056354246, + -2.2562287814804427 + ] + }, + { + "dc": 0.002806687153254946, + "amps": [ + 1.3794141931935692e-05, + 1.0845130456553577e-05, + 4.194260947161015e-06, + 3.922675051690568e-06, + 2.4742061825854045e-06 + ], + "freqs": [ + 0.1, + 0.10666666666666667, + 0.09333333333333334, + 0.11333333333333334, + 0.08666666666666667 + ], + "phases": [ + 2.6173893235986094, + -0.5377864293300657, + 2.6310104014705695, + -0.5503844428604254, + 2.6468269242398774 + ] + }, + { + "dc": -2.1627838129158288e-05, + "amps": [ + 0.0005823746402945498, + 0.00024259012500565122, + 0.0001197809678505114, + 0.00010901015739990155, + 7.439802302683745e-05 + ], + "freqs": [ + 0.05333333333333334, + 0.04666666666666667, + 0.060000000000000005, + 0.04, + 0.03333333333333333 + ], + "phases": [ + 0.13218399982357354, + -3.0258389401223935, + 0.14860961266547285, + -3.0423564970711667, + -3.05880090358688 + ] + } +] \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d075_sc/config.json b/src/SR_analysis/data/v5/kar_d075_sc/config.json new file mode 100644 index 0000000..c515169 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d075_sc/config.json @@ -0,0 +1,22 @@ +{ + "case_name": "kar_d075_sc", + "scene_type": "karman", + "seed": 44, + "SI": 800, + "conv_len": 30, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 12, + "obs_slice": [ + 2, + 14 + ], + "n_objects": 7, + "dtw_sim_v5": 0.911 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d075_sc/norm.json b/src/SR_analysis/data/v5/kar_d075_sc/norm.json new file mode 100644 index 0000000..29b2407 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d075_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0018, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.84, + 0.84, + 0.84, + 0.84, + 0.84, + 0.84 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d15_sc/config.json b/src/SR_analysis/data/v5/kar_d15_sc/config.json new file mode 100644 index 0000000..c43b911 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d15_sc/config.json @@ -0,0 +1,22 @@ +{ + "case_name": "kar_d15_sc", + "scene_type": "karman", + "seed": 45, + "SI": 800, + "conv_len": 30, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 12, + "obs_slice": [ + 2, + 14 + ], + "n_objects": 7, + "dtw_sim_v5": 0.892 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d15_sc/norm.json b/src/SR_analysis/data/v5/kar_d15_sc/norm.json new file mode 100644 index 0000000..d8ab289 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d15_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0036, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d2_sc/config.json b/src/SR_analysis/data/v5/kar_d2_sc/config.json new file mode 100644 index 0000000..ec7e239 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d2_sc/config.json @@ -0,0 +1,22 @@ +{ + "case_name": "kar_d2_sc", + "scene_type": "karman", + "seed": 45, + "SI": 800, + "conv_len": 30, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 12, + "obs_slice": [ + 2, + 14 + ], + "n_objects": 7, + "dtw_sim_v5": 0.816 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_d2_sc/norm.json b/src/SR_analysis/data/v5/kar_d2_sc/norm.json new file mode 100644 index 0000000..085def0 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_d2_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0046, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.77, + 0.77, + 0.77, + 0.77, + 0.77, + 0.77 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_re100_sc/config.json b/src/SR_analysis/data/v5/kar_re100_sc/config.json new file mode 100644 index 0000000..75d9feb --- /dev/null +++ b/src/SR_analysis/data/v5/kar_re100_sc/config.json @@ -0,0 +1,22 @@ +{ + "case_name": "kar_re100_sc", + "scene_type": "karman", + "seed": 45, + "SI": 800, + "conv_len": 30, + "action_scale": 12.0, + "action_bias": [ + 0.0, + 0.0, + 0.0 + ], + "u0": 0.01, + "l0": 20.0, + "s_dim": 12, + "obs_slice": [ + 2, + 14 + ], + "n_objects": 7, + "dtw_sim_v5": 0.918 +} \ No newline at end of file diff --git a/src/SR_analysis/data/v5/kar_re100_sc/norm.json b/src/SR_analysis/data/v5/kar_re100_sc/norm.json new file mode 100644 index 0000000..6dacff3 --- /dev/null +++ b/src/SR_analysis/data/v5/kar_re100_sc/norm.json @@ -0,0 +1,24 @@ +{ + "force_norm_fact": 0.0024, + "sens_deviation": [ + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "sens_norm_fact": [ + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75 + ], + "action_bias": [ + 0.0, + 0.0, + 0.0 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/diagnostics/__init__.py b/src/SR_analysis/diagnostics/__init__.py new file mode 100644 index 0000000..c698892 --- /dev/null +++ b/src/SR_analysis/diagnostics/__init__.py @@ -0,0 +1 @@ +"""Scientific diagnostics that do not produce canonical candidates.""" diff --git a/src/SR_analysis/diagnostics/audit_symmetry.py b/src/SR_analysis/diagnostics/audit_symmetry.py new file mode 100644 index 0000000..cb6b37a --- /dev/null +++ b/src/SR_analysis/diagnostics/audit_symmetry.py @@ -0,0 +1,92 @@ +#!/usr/bin/env python3 +"""Evaluate empirical PPO G-equivariance on recorded physical states.""" +from __future__ import annotations + +import argparse +import json +from pathlib import Path +from typing import Any, Sequence + +import numpy as np + +from SR_analysis.configs import get_scene +from SR_analysis.stage_1_infer import ( + illusion_observation, + load_existing_norm, + model_path_for_scene, + normalize_raw_observation, +) +from SR_analysis.utils.cfd_interface import load_ppo_model +from SR_analysis.utils.g_operator import apply_G_raw12, apply_G_target_force +from SR_analysis.utils.provenance import atomic_write_json, hash_file +from SR_analysis.utils.symmetry_dataset import empirical_equivariance_defect + +SCHEMA_VERSION = "sr-ppo-g-audit-v1" + + +def _alpha(model: Any, observation: np.ndarray, cfg: dict[str, Any]) -> np.ndarray: + normalized, _ = model.predict(observation, deterministic=True) + normalized = np.asarray(normalized, dtype=np.float64).reshape(3) + return normalized * float(cfg["action_scale"]) + np.asarray(cfg["action_bias"], dtype=np.float64) + + +def audit(scene: str, trajectory_path: Path, *, model_device: str = "cpu") -> dict[str, Any]: + cfg = get_scene(scene) + norm, norm_path = load_existing_norm(scene, cfg) + model_path = model_path_for_scene(scene) + if model_path is None: + raise FileNotFoundError(f"no PPO model configured for {scene}") + model = load_ppo_model(model_path, device=model_device, s_dim=int(cfg["s_dim"])) + with np.load(trajectory_path, allow_pickle=False) as data: + sensors = np.asarray(data["sensors"], dtype=np.float64) + forces = np.asarray(data["forces"], dtype=np.float64) + targets = np.asarray(data["target_forces"], dtype=np.float64) if "target_forces" in data else None + raw = np.column_stack((sensors, forces)) + mirrored_raw = apply_G_raw12(raw) + actions, mirrored_actions = [], [] + for index, (state, mirrored_state) in enumerate(zip(raw, mirrored_raw)): + if cfg["scene_id"] == "illusion": + if targets is None: + raise ValueError("illusion symmetry audit requires target_forces") + target = targets[index] + observation = illusion_observation(state, norm, target) + mirrored_observation = illusion_observation( + mirrored_state, norm, apply_G_target_force(target), + ) + else: + observation = normalize_raw_observation(state, norm) + mirrored_observation = normalize_raw_observation(mirrored_state, norm) + actions.append(_alpha(model, observation, cfg)) + mirrored_actions.append(_alpha(model, mirrored_observation, cfg)) + return { + "schema_version": SCHEMA_VERSION, + "scene": scene, + "status": "diagnostic_only", + "g_contract": "raw state and target are mirrored before PPO normalization/evaluation", + "trajectory": {"path": str(trajectory_path), "sha256": hash_file(trajectory_path)}, + "model": {"path": str(model_path), "sha256": hash_file(model_path)}, + "norm": {"path": str(norm_path), "sha256": hash_file(norm_path)}, + "defect": empirical_equivariance_defect(np.asarray(actions), np.asarray(mirrored_actions)), + "interpretation": "A nonzero defect means hard-G fitting changes the empirical PPO policy and must be reported as physical symmetrization.", + } + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--scene", required=True) + parser.add_argument("--trajectory", type=Path, required=True) + parser.add_argument("--model-device", default="cpu") + parser.add_argument("--output", type=Path, required=True) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + document = audit(args.scene, args.trajectory.resolve(), model_device=args.model_device) + atomic_write_json(args.output.resolve(), document) + print(json.dumps(document, indent=2, sort_keys=True)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/diagnostics/compare_trajectories.py b/src/SR_analysis/diagnostics/compare_trajectories.py new file mode 100644 index 0000000..ca74a15 --- /dev/null +++ b/src/SR_analysis/diagnostics/compare_trajectories.py @@ -0,0 +1,187 @@ +#!/usr/bin/env python3 +"""Compare frozen historical and reproduction PPO trajectories without refitting.""" +from __future__ import annotations + +import argparse +import json +from pathlib import Path +from typing import Any, Mapping, Sequence + +import numpy as np + +from SR_analysis.configs import get_scene +from SR_analysis.utils.cfd_interface import ( + LEGACY_DTW_VERSION, + compute_similarity_illusion_legacy_v1, + compute_similarity_karman_legacy_v1, +) +from SR_analysis.utils.provenance import atomic_write_json, hash_file + +SCHEMA_VERSION = "sr-trajectory-equivalence-v1" +ARRAY_KEYS = ("sensors", "forces", "actions") +CHANNELS = { + "sensors": ("upper_ux", "upper_uy", "center_ux", "center_uy", "lower_ux", "lower_uy"), + "forces": ("front_fx", "front_fy", "upper_fx", "upper_fy", "lower_fx", "lower_fy"), + "actions": ("front", "upper", "lower"), +} + + +def _load(path: Path) -> dict[str, np.ndarray]: + with np.load(path, allow_pickle=False) as data: + return {key: np.asarray(data[key]) for key in data.files} + + +def _dominant_frequency(values: np.ndarray) -> dict[str, Any]: + centered = np.asarray(values, dtype=np.float64) - np.mean(values, axis=0, keepdims=True) + spectrum = np.fft.rfft(centered, axis=0) + power = np.abs(spectrum) + if power.shape[0] <= 1: + bins = np.zeros(centered.shape[1], dtype=int) + else: + bins = np.argmax(power[1:], axis=0) + 1 + return { + "bin": bins.tolist(), + "cycles_per_sample": (bins / max(centered.shape[0], 1)).tolist(), + "phase_rad": np.angle(spectrum[bins, np.arange(centered.shape[1])]).tolist(), + } + + +def _array_metrics(reference: np.ndarray, candidate: np.ndarray, names: Sequence[str]) -> dict[str, Any]: + rows = min(len(reference), len(candidate)) + ref = np.asarray(reference[:rows], dtype=np.float64) + cur = np.asarray(candidate[:rows], dtype=np.float64) + if ref.shape != cur.shape: + raise ValueError(f"aligned arrays differ in shape: {ref.shape} versus {cur.shape}") + difference = cur - ref + rmse = np.sqrt(np.mean(difference**2, axis=0)) + scale = np.ptp(ref, axis=0) + nrmse = rmse / np.where(scale > 1e-12, scale, 1.0) + return { + "n_aligned": rows, + "channels": list(names), + "rmse": rmse.tolist(), + "range_normalized_rmse": nrmse.tolist(), + "max_abs_error": np.max(np.abs(difference), axis=0).tolist(), + "reference_mean": np.mean(ref, axis=0).tolist(), + "candidate_mean": np.mean(cur, axis=0).tolist(), + "reference_std": np.std(ref, axis=0).tolist(), + "candidate_std": np.std(cur, axis=0).tolist(), + "reference_range": np.ptp(ref, axis=0).tolist(), + "candidate_range": np.ptp(cur, axis=0).tolist(), + "reference_frequency": _dominant_frequency(ref), + "candidate_frequency": _dominant_frequency(cur), + } + + +def _target_states(path: Path) -> np.ndarray: + data = _load(path) + if "target_states" in data: + return np.asarray(data["target_states"]) + if "target" in data: + return np.asarray(data["target"]) + raise KeyError(f"target NPZ has no target_states array: {path}") + + +def compare( + scene: str, + historical: Path, + candidate: Path, + historical_target: Path, + candidate_target: Path, + *, + transient_count: int, +) -> dict[str, Any]: + cfg = get_scene(scene) + old = _load(historical) + new = _load(candidate) + missing = [key for key in ARRAY_KEYS if key not in old or key not in new] + if missing: + raise KeyError(f"trajectory pair lacks required arrays: {missing}") + n = min(*(len(old[key]) for key in ARRAY_KEYS), *(len(new[key]) for key in ARRAY_KEYS)) + if not 0 <= transient_count < n: + raise ValueError("transient_count must be non-negative and smaller than aligned trajectory length") + segments = { + "all_recorded_steps": slice(0, n), + "initial_control_segment": slice(0, transient_count), + "post_initial_segment": slice(transient_count, n), + } + segment_metrics: dict[str, Any] = {} + for label, selection in segments.items(): + if selection.start == selection.stop: + continue + segment_metrics[label] = { + key: _array_metrics(old[key][selection], new[key][selection], CHANNELS[key]) + for key in ARRAY_KEYS + } + old_target = _target_states(historical_target) + new_target = _target_states(candidate_target) + conv_len = int(cfg["conv_len"]) + similarity = ( + compute_similarity_illusion_legacy_v1 + if cfg["scene_id"] == "illusion" + else compute_similarity_karman_legacy_v1 + ) + return { + "schema_version": SCHEMA_VERSION, + "scene": scene, + "status": "diagnostic_only", + "comparison_semantics": { + "alignment": "same recorded index; no lag optimization", + "transient_count": int(transient_count), + "metric_algorithm": LEGACY_DTW_VERSION, + "metric_window": { + "target": f"indices {conv_len}:{2 * conv_len}", + "state": f"last {conv_len} recorded samples", + }, + }, + "sources": { + "historical": {"path": str(historical), "sha256": hash_file(historical)}, + "candidate": {"path": str(candidate), "sha256": hash_file(candidate)}, + "historical_target": {"path": str(historical_target), "sha256": hash_file(historical_target)}, + "candidate_target": {"path": str(candidate_target), "sha256": hash_file(candidate_target)}, + }, + "lengths": { + "historical": {key: len(old[key]) for key in ARRAY_KEYS}, + "candidate": {key: len(new[key]) for key in ARRAY_KEYS}, + "aligned": n, + }, + "segments": segment_metrics, + "legacy_dtw": { + "historical_with_historical_target": float(similarity(old_target, old["sensors"][:n], conv_len)), + "candidate_with_candidate_target": float(similarity(new_target, new["sensors"][:n], conv_len)), + "algorithm": LEGACY_DTW_VERSION, + "window_label": "legacy_reference_cycle_vs_last_recorded_cycle", + }, + "interpretation": "Differences are reported, not auto-accepted; frequency phase is descriptive and is not a physical-delay estimate.", + } + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--scene", required=True) + parser.add_argument("--historical", type=Path, required=True) + parser.add_argument("--candidate", type=Path, required=True) + parser.add_argument("--historical-target", type=Path, required=True) + parser.add_argument("--candidate-target", type=Path, required=True) + parser.add_argument("--transient-count", type=int, default=50) + parser.add_argument("--output", type=Path, required=True) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + document = compare( + args.scene, + args.historical.resolve(), + args.candidate.resolve(), + args.historical_target.resolve(), + args.candidate_target.resolve(), + transient_count=args.transient_count, + ) + atomic_write_json(args.output.resolve(), document) + print(json.dumps(document, indent=2, sort_keys=True)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/diagnostics/diagnose_illusion_phase.py b/src/SR_analysis/diagnostics/diagnose_illusion_phase.py new file mode 100644 index 0000000..401b635 --- /dev/null +++ b/src/SR_analysis/diagnostics/diagnose_illusion_phase.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python3 +"""Static Illusion proxy/phase diagnostic without introducing lag features.""" +from __future__ import annotations + +import argparse +import json +from pathlib import Path +from typing import Any, Sequence + +import numpy as np + +from SR_analysis.configs import get_scene +from SR_analysis.utils.data_contracts import build_batch_dataset +from SR_analysis.utils.provenance import atomic_write_json, hash_file + +SCHEMA_VERSION = "sr-illusion-static-proxy-diagnostic-v1" +FEATURE_GROUPS = { + "lift_only": ("Cl_F", "Cl_T", "Cl_B", "target_Cl"), + "drag_only": ("Cd_F", "Cd_T", "Cd_B", "target_Cd"), + "actual_only": ("Cd_F", "Cl_F", "Cd_T", "Cl_T", "Cd_B", "Cl_B"), + "target_only": ("target_Cd", "target_Cl"), + "error_only": ("Cd_err", "Cl_err"), + "actual_target": ( + "Cd_F", "Cl_F", "Cd_T", "Cl_T", "Cd_B", "Cl_B", "target_Cd", "target_Cl", + ), +} + + +def _fit_block(X: np.ndarray, y: np.ndarray, split: int) -> dict[str, Any]: + train_X = np.column_stack((np.ones(split), X[:split])) + test_X = np.column_stack((np.ones(len(X) - split), X[split:])) + coefficients, *_ = np.linalg.lstsq(train_X, y[:split], rcond=None) + prediction = test_X @ coefficients + truth = y[split:] + residual = truth - prediction + denominator = np.sum((truth - np.mean(truth, axis=0)) ** 2, axis=0) + r2 = 1.0 - np.sum(residual**2, axis=0) / np.where(denominator > 1e-12, denominator, 1.0) + return { + "coefficients": coefficients.tolist(), + "test_r2": r2.tolist(), + "test_mae": np.mean(np.abs(residual), axis=0).tolist(), + "train_indices": [0, split], + "test_indices": [split, len(X)], + } + + +def diagnose(path: Path, *, split_fraction: float = 0.6) -> dict[str, Any]: + cfg = get_scene("illusion_1L") + with np.load(path, allow_pickle=False) as data: + sensors = np.asarray(data["sensors"]) + forces = np.asarray(data["forces"]) + actions = np.asarray(data["actions"]) + target = np.asarray(data["target_forces"]) + all_features = tuple(dict.fromkeys(key for group in FEATURE_GROUPS.values() for key in group)) + dataset = build_batch_dataset( + sensors, forces, actions, all_features, + mu=float(cfg["mu"]), dt_c=float(cfg["control_dt"]), + alignment="historical_post_state_same_action", action_mode="normalized", + action_scale=float(cfg["action_scale"]), action_bias=cfg["action_bias"], + target_forces=target, illusion=True, u0=float(cfg["u0"]), + include_cos_sin=False, warmup=2, + ) + split = max(2, min(len(dataset.X) - 2, int(len(dataset.X) * split_fraction))) + index = {name: i for i, name in enumerate(all_features)} + diagnostics = { + name: { + "feature_names": list(features), + **_fit_block(dataset.X[:, [index[key] for key in features]], dataset.Y, split), + } + for name, features in FEATURE_GROUPS.items() + } + return { + "schema_version": SCHEMA_VERSION, + "scene": "illusion_1L", + "status": "diagnostic_only", + "triggered_by": [ + "mapped-shared rear static fit collapsed to a constant", + "independent rear fit selected drag terms while front selected lift/target-lift terms", + "PPO empirical G defect is large", + ], + "trajectory": {"path": str(path), "sha256": hash_file(path)}, + "action_layout": ["front", "upper", "lower"], + "ablations": diagnostics, + "evidence_boundary": ( + "All regressions use current-time static signals only. Differences identify statistical proxy value; " + "they do not establish transport delay, and no cross-correlation-selected lag is used." + ), + } + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--trajectory", type=Path, required=True) + parser.add_argument("--split-fraction", type=float, default=0.6) + parser.add_argument("--output", type=Path, required=True) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + if not 0.1 <= args.split_fraction <= 0.9: + raise ValueError("split fraction must lie in [0.1, 0.9]") + document = diagnose(args.trajectory.resolve(), split_fraction=args.split_fraction) + atomic_write_json(args.output.resolve(), document) + print(json.dumps(document, indent=2, sort_keys=True)) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/experiments/__init__.py b/src/SR_analysis/experiments/__init__.py new file mode 100644 index 0000000..cbb4752 --- /dev/null +++ b/src/SR_analysis/experiments/__init__.py @@ -0,0 +1 @@ +"""Optional and non-canonical SR experiments.""" diff --git a/src/SR_analysis/experiments/v5/__init__.py b/src/SR_analysis/experiments/v5/__init__.py new file mode 100644 index 0000000..7f996aa --- /dev/null +++ b/src/SR_analysis/experiments/v5/__init__.py @@ -0,0 +1 @@ +"""V5 bridge and fitting experiments; data and results remain in place.""" diff --git a/src/SR_analysis/experiments/v5/bridge_v5.py b/src/SR_analysis/experiments/v5/bridge_v5.py new file mode 100644 index 0000000..b1eac6c --- /dev/null +++ b/src/SR_analysis/experiments/v5/bridge_v5.py @@ -0,0 +1,229 @@ +#!/usr/bin/env python3 +"""Bridge V5 eval outputs to SR_analysis/data/v5/ format. + +For each effective V5 case: + 1. Reads signals.npz from eval/output/train/{case}/ + 2. Finds best seed from metrics.json + 3. Finds target.npy and target_harmonics.json from train/output/{case}_seed{N}/ + 4. Uses calibration.json from calibrations/ + 5. Creates SR_analysis/data/v5/{case}/ with controlled.npz, target.npz, etc. + +Effective cases (with best seed and DTW): + - kar_re100_sc (seed45, dtw=0.918) — baseline + - kar_d075_sc (seed44, dtw=0.911) — vardist + - kar_d15_sc (seed45, dtw=0.892) — vardist + - kar_d2_sc (seed45, dtw=0.816) — vardist, borderline + - ill_075L_sc (seed43, dtw=0.807) + - ill_1L_sc (seed43, dtw=0.900) + - ill_15L_sc (seed43, dtw=0.906) + - ill_2L_sc (seed43, dtw=0.800) + +Usage: + PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.experiments.v5.bridge_v5 + PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.experiments.v5.bridge_v5 --include-failed + PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.experiments.v5.bridge_v5 --cases kar_re100_sc,ill_1L_sc +""" +from __future__ import annotations + +import argparse +import json +import shutil +from pathlib import Path + +import numpy as np + +_SR_ROOT = Path(__file__).resolve().parents[2] +_REPO = _SR_ROOT.parents[1] +_EVAL_OUT = _REPO / "src" / "drl_pinball" / "eval" / "output" / "train" +_TRAIN_OUT = _REPO / "src" / "drl_pinball" / "train" / "output" +_TRAIN_CAL = _REPO / "src" / "drl_pinball" / "train" / "calibrations" +_SR_DATA = _SR_ROOT / "data" / "v5" + +L0 = 20.0 +U0 = 0.01 + +# Best seeds from eval metrics.json +EFFECTIVE_CASES = { + "kar_re100_sc": {"seed": 45, "dtw": 0.918, "scene_type": "karman", + "cal_name": "kar_re100", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "kar_d075_sc": {"seed": 44, "dtw": 0.911, "scene_type": "karman", + "cal_name": "kar_d075_sc", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "kar_d15_sc": {"seed": 45, "dtw": 0.892, "scene_type": "karman", + "cal_name": "kar_d15_sc", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "kar_d2_sc": {"seed": 45, "dtw": 0.816, "scene_type": "karman", + "cal_name": "kar_d2_sc", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "ill_075L_sc": {"seed": 43, "dtw": 0.807, "scene_type": "illusion", + "cal_name": "ill_075L", + "si": 400, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 14, "conv_len": 36, + "target_diam": 0.75, + "obs_slice": (0, 12), "n_objects": 6}, + "ill_1L_sc": {"seed": 43, "dtw": 0.900, "scene_type": "illusion", + "cal_name": "ill_1L", + "si": 600, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 14, "conv_len": 36, + "target_diam": 1.0, + "obs_slice": (0, 12), "n_objects": 6}, + "ill_15L_sc": {"seed": 43, "dtw": 0.906, "scene_type": "illusion", + "cal_name": "ill_15L", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 14, "conv_len": 36, + "target_diam": 1.5, + "obs_slice": (0, 12), "n_objects": 6}, + "ill_2L_sc": {"seed": 43, "dtw": 0.800, "scene_type": "illusion", + "cal_name": "ill_2L", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 14, "conv_len": 36, + "target_diam": 2.0, + "obs_slice": (0, 12), "n_objects": 6}, +} + +FAILED_CASES = { + "kar_re60_sc": {"seed": 43, "dtw": 0.364, "scene_type": "karman", + "cal_name": "kar_re60_sc", + "si": 800, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "kar_re200_sc": {"seed": 43, "dtw": 0.712, "scene_type": "karman", + "cal_name": "kar_re200_sc", + "si": 500, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, + "kar_re400_sc": {"seed": 43, "dtw": 0.565, "scene_type": "karman", + "cal_name": "kar_re400_sc", + "si": 400, "action_scale": 12.0, "action_bias": (0.0, 0.0, 0.0), + "s_dim": 12, "conv_len": 30, + "obs_slice": (2, 14), "n_objects": 7}, +} + + +def bridge_case(case_name: str, cfg: dict, out_dir: Path) -> bool: + seed = cfg["seed"] + scene_type = cfg["scene_type"] + cal_name = cfg["cal_name"] + + signals_path = _EVAL_OUT / case_name / "signals.npz" + if not signals_path.exists(): + print(f" SKIP {case_name}: signals.npz not found") + return False + + target_dir = _TRAIN_OUT / "{}_seed{}".format(case_name, seed) + target_npy = target_dir / "target.npy" + target_harm = target_dir / "target_harmonics.json" + + if not target_npy.exists(): + print(f" SKIP {case_name}: target.npy not found at {target_npy}") + return False + + cal_path = _TRAIN_CAL / cal_name / "calibration.json" + if not cal_path.exists(): + cal_path = target_dir / "calibration.json" + if not cal_path.exists(): + print(f" SKIP {case_name}: calibration.json not found") + return False + + out_dir.mkdir(parents=True, exist_ok=True) + print(f" Bridging {case_name} (seed={seed}, dtw={cfg['dtw']:.3f})...") + + # 1. signals.npz -> controlled.npz + data = dict(np.load(signals_path, allow_pickle=True)) + np.savez_compressed(out_dir / "controlled.npz", + sensors=data["sensors"], + forces=data["forces"], + actions=data["actions"]) + + # 2. target + target = np.load(target_npy) + np.savez_compressed(out_dir / "target.npz", target_states=target) + + # 3. Harmonics (illusion only) + if scene_type == "illusion" and target_harm.exists(): + shutil.copy(target_harm, out_dir / "target_harmonics.json") + + # 4. norm.json from calibration + with open(cal_path) as f: + cal = json.load(f) + + force_scale = float(cal.get("FORCE_SCALE", 1.0)) + sens_scale = float(cal.get("SENS_SCALE", 1.0)) + action_bias = cal.get("ACTION_BIAS", [0.0, 0.0, 0.0]) + + norm = { + "force_norm_fact": force_scale, + "sens_deviation": [0.0] * 6, + "sens_norm_fact": [sens_scale] * 6, + "action_bias": action_bias, + } + with open(out_dir / "norm.json", "w") as f: + json.dump(norm, f, indent=2) + + # 5. config.json + config = { + "case_name": case_name, + "scene_type": scene_type, + "seed": seed, + "SI": cfg["si"], + "conv_len": cfg["conv_len"], + "action_scale": cfg["action_scale"], + "action_bias": list(cfg["action_bias"]), + "u0": U0, + "l0": L0, + "s_dim": cfg["s_dim"], + "obs_slice": cfg["obs_slice"], + "n_objects": cfg["n_objects"], + "dtw_sim_v5": cfg["dtw"], + } + if "target_diam" in cfg: + config["target_diam"] = cfg["target_diam"] + with open(out_dir / "config.json", "w") as f: + json.dump(config, f, indent=2) + + print(f" -> {out_dir}") + return True + + +def main() -> int: + parser = argparse.ArgumentParser(description="Bridge V5 eval data to SR_analysis format") + parser.add_argument("--cases", type=str, default=None, + help="Comma-separated case names (default: all effective)") + parser.add_argument("--include-failed", action="store_true", + help="Also bridge cross-Re failed cases") + args = parser.parse_args() + + all_cases = dict(EFFECTIVE_CASES) + if args.include_failed: + all_cases.update(FAILED_CASES) + + if args.cases: + requested = [c.strip() for c in args.cases.split(",")] + cases = {k: v for k, v in all_cases.items() if k in requested} + else: + cases = all_cases + + print(f"Bridging {len(cases)} V5 cases to SR_analysis/data/v5/...") + print(f"SR data root: {_SR_DATA}") + + success = 0 + for case_name, cfg in cases.items(): + out_dir = _SR_DATA / case_name + if bridge_case(case_name, cfg, out_dir): + success += 1 + + print(f"\nDone: {success}/{len(cases)} cases bridged.") + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/experiments/v5/stage_2_fit_v5.py b/src/SR_analysis/experiments/v5/stage_2_fit_v5.py new file mode 100644 index 0000000..14710a8 --- /dev/null +++ b/src/SR_analysis/experiments/v5/stage_2_fit_v5.py @@ -0,0 +1,260 @@ +#!/usr/bin/env python3 +"""Stage 2 V5: PySR symbolic regression on V5-trained PPO models. + +Loads V5 controlled.npz from SR_analysis/data/v5/, uses V5 action decoder +(action_scale=12, action_bias=[0,0,0]), and outputs formulas to +SR_analysis/results/formulas_v5/. + +Supports per-scene individual and cross-scene joint fitting. + +Usage: + # Per-scene (fast, niter=40) + PYTHONPATH=src conda run -n sr_env python -m SR_analysis.experiments.v5.stage_2_fit_v5 --scene kar_re100_sc + + # Per-scene deep search (niter=120) + PYTHONPATH=src conda run -n sr_env python -m SR_analysis.experiments.v5.stage_2_fit_v5 --scene kar_re100_sc --deep + + # Joint: all effective Karman cases + PYTHONPATH=src conda run -n sr_env python -m SR_analysis.experiments.v5.stage_2_fit_v5 --group karman_v5 --mode joint + + # Joint: all Illusion cases + PYTHONPATH=src conda run -n sr_env python -m SR_analysis.experiments.v5.stage_2_fit_v5 --group illusion_v5 --mode joint + + # Joint: mixed V5 + legacy (cross-solver) + PYTHONPATH=src conda run -n sr_env python -m SR_analysis.experiments.v5.stage_2_fit_v5 --scenes kar_re100_sc,kar_d075_sc,kar_d15_sc,karman_re100,karman_re200 --mode joint --output-label mixed_karman +""" +from __future__ import annotations + +import argparse +import json +import os +import sys +from pathlib import Path + +import numpy as np + +_SR_ROOT = Path(__file__).resolve().parents[2] +_REPO = _SR_ROOT.parents[1] +if str(_REPO) not in sys.path: + sys.path.insert(0, str(_REPO)) +_SRC = _REPO / "src" +if str(_SRC) not in sys.path: + sys.path.insert(0, str(_SRC)) + +from SR_analysis.utils.feature_builder import ( + compute_dimensionless, compute_features, build_feature_matrix, + PHASE_STATE_KEYS, ILLUSION_PHASE_KEYS, CORE_FEAT_KEYS_V2, MU_FEAT_KEYS, +) +from SR_analysis.configs import get_scene # for legacy scenes + +ALL_MU = list(MU_FEAT_KEYS) + ["mu_Cl_tot"] +PHYS = [k for k in CORE_FEAT_KEYS_V2 if not k.startswith(("aF_","aB_","aT_","daF","daB","daT"))] +PHYS_DADT = PHYS + ["daF_dt","daB_dt","daT_dt"] + +# V5 action decoder (all cases: no-bias, scale=12) +V5_ACTION_SCALE = 12.0 +V5_ACTION_BIAS = (0.0, 0.0, 0.0) +V5_U0 = 0.01 + +# V5 scene configs (for scenes without legacy configs.py entry) +V5_KARMAN_CFG = { + "scene_id": "karman", "u0": V5_U0, "mu": 2.0 / 100, # Re=100 + "sample_interval": 800, "action_scale": V5_ACTION_SCALE, + "action_bias": V5_ACTION_BIAS, +} +V5_ILLUSION_CFG = { + "scene_id": "illusion", "u0": V5_U0, "mu": 2.0 / 100, # Re=100 + "sample_interval": 600, "action_scale": V5_ACTION_SCALE, + "action_bias": V5_ACTION_BIAS, +} + +# SI overrides per case +V5_SI_OVERRIDE = { + "ill_075L_sc": 400, "ill_1L_sc": 600, "ill_15L_sc": 800, "ill_2L_sc": 800, + "kar_re60_sc": 800, "kar_re200_sc": 500, "kar_re400_sc": 400, +} + + +def is_v5_scene(name: str) -> bool: + return "_sc" in name or "_tr" in name + + +def load_controlled_v5(case_name: str): + """Load controlled.npz from V5 data directory with V5 action decoder.""" + data_dir = _SR_ROOT / "data" / "v5" / case_name + config_path = data_dir / "config.json" + + npz = np.load(data_dir / "controlled.npz", allow_pickle=True) + s = npz["sensors"].astype(np.float64) + f = npz["forces"].astype(np.float64) + a = npz["actions"].astype(np.float64) # normalized [-1,1] + + # Load config to get SI + cfg = V5_KARMAN_CFG.copy() if "ill_" not in case_name else V5_ILLUSION_CFG.copy() + if config_path.exists(): + with open(config_path) as fp: + v5_cfg = json.load(fp) + cfg["si_actual"] = v5_cfg.get("SI", 800) + cfg["scene_type"] = v5_cfg.get("scene_type", "") + + # Apply SI override + si = V5_SI_OVERRIDE.get(case_name, cfg.get("si_actual", 800)) + cfg["sample_interval"] = si + cfg["si_actual"] = si # for feature builder + + # Convert normalized action to physical surface velocity + ap = (a * V5_ACTION_SCALE + np.array(V5_ACTION_BIAS)) * V5_U0 + return s, f, ap, None, cfg # No target_forces for V5 karman + + +def load_controlled_any(scene_name: str): + """Load from either V5 or legacy based on scene name.""" + if is_v5_scene(scene_name): + return load_controlled_v5(scene_name) + else: + # Legacy scene - use original configs.py + cfg = get_scene(scene_name) + sid = cfg["scene_id"] + data_dir = f"src/SR_analysis/data/{sid}/{scene_name}" + npz = np.load(os.path.join(data_dir, "controlled.npz"), allow_pickle=True) + s = npz["sensors"].astype(np.float64) + f = npz["forces"].astype(np.float64) + a = npz["actions"].astype(np.float64) + ap = (a * cfg["action_scale"] + np.array(cfg["action_bias"])) * cfg["u0"] + tf = npz["target_forces"].astype(np.float64) if "target_forces" in npz else None + return s, f, ap, tf, cfg + + +def build_features_v5(s, f, ap, cfg, feat_keys): + """Build feature matrix from raw V5 data.""" + T = s.shape[0] + a1 = np.zeros((T, 3)); a2 = np.zeros((T, 3)) + a1[1:] = ap[:-1]; a2[2:] = ap[:-2] + dim = compute_dimensionless(s, f, u0=cfg["u0"], d=20.0) + si = cfg.get("sample_interval", 800) + dt_c = si / 2000.0 + mu = cfg["mu"] + sym = compute_features(dim, a1, a2, mu, alpha_mode=False, + include_mu="mu" in feat_keys, + include_cos_sin=False, u0=cfg["u0"], + target_forces=None, dt_c=dt_c, + sensors_raw=s, forces_raw=f) + X = build_feature_matrix(sym, feat_keys, add_bias=False)[2:] + Y = ap[2:] / cfg["u0"] + return X, Y + + +FORMULA_DIR = _SR_ROOT / "results" / "formulas_v5" +os.makedirs(FORMULA_DIR, exist_ok=True) + +FIT_GROUPS_V5 = { + "karman_v5": ["kar_re100_sc", "kar_d075_sc", "kar_d15_sc", "kar_d2_sc"], + "illusion_v5": ["ill_075L_sc", "ill_1L_sc", "ill_15L_sc", "ill_2L_sc"], +} + + +def get_feature_keys_v5(scene_name: str): + if "ill_" in scene_name: + return ILLUSION_PHASE_KEYS + return PHYS_DADT + ALL_MU + + +def fit_v5(scene_name, feat_keys, niter, output_label): + s, f, ap, tf, cfg = load_controlled_any(scene_name) + X, Y = build_features_v5(s, f, ap, cfg, feat_keys) + from pysr import PySRRegressor + m = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], + niterations=niter, populations=30, maxsize=15, + complexity_of_constants=2, parsimony=0.01, batching=False) + m.fit(X, Y[:, 0], variable_names=feat_keys) + front = {"scene": output_label, "channel": "front", "output": "alpha", + "feature_keys": feat_keys, "best_sympy": str(m.sympy()), + "best_score": float(m.score(X, Y[:, 0])), "niterations": niter} + json.dump(front, open(os.path.join(FORMULA_DIR, f"{output_label}_front.json"), "w"), indent=2) + print(f" Front: {front['best_sympy']} (R2={front['best_score']:.4f})") + + # Top (with bias) + m2 = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], + niterations=niter, populations=30, maxsize=15, + complexity_of_constants=2, parsimony=0.01, batching=False) + Xt = build_feature_matrix( + dict(zip(feat_keys, [X[:, i] for i in range(len(feat_keys))])), + feat_keys, add_bias=True) + if isinstance(Xt, list): + Xt = Xt[0] + if Xt.ndim == 1: + Xt = Xt.reshape(-1, 1) + m2.fit(Xt, Y[:, 2], variable_names=["bias"] + feat_keys) + top = {"scene": output_label, "channel": "top", "output": "alpha", + "feature_keys": ["bias"] + feat_keys, "best_sympy": str(m2.sympy()), + "best_score": float(m2.score(Xt, Y[:, 2])), "niterations": niter} + json.dump(top, open(os.path.join(FORMULA_DIR, f"{output_label}_top.json"), "w"), indent=2) + print(f" Top: {top['best_sympy']} (R2={top['best_score']:.4f})") + return front, top + + +def fit_joint_v5(scene_names, feat_keys, niter, output_label): + Xl, Yl = [], [] + for sn in scene_names: + s, f, ap, tf, cfg = load_controlled_any(sn) + X, Y = build_features_v5(s, f, ap, cfg, feat_keys) + Xl.append(X); Yl.append(Y[:, 0]) + X_all = np.vstack(Xl); Y_all = np.concatenate(Yl) + from pysr import PySRRegressor + m = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], + niterations=niter, populations=40, maxsize=15, + complexity_of_constants=2, parsimony=0.01, batching=False) + m.fit(X_all, Y_all, variable_names=feat_keys) + front = {"scene": output_label, "channel": "front", "output": "alpha", + "feature_keys": feat_keys, "best_sympy": str(m.sympy()), + "best_score": float(m.score(X_all, Y_all)), "niterations": niter, + "n_samples": int(X_all.shape[0])} + json.dump(front, open(os.path.join(FORMULA_DIR, f"{output_label}_front.json"), "w"), indent=2) + print(f" Joint Front: {front['best_sympy']} (R2={front['best_score']:.4f})") + return front + + +def main(): + ap = argparse.ArgumentParser(description="Stage 2 V5: PySR fitting on V5 models") + ap.add_argument("--scene", type=str, default=None) + ap.add_argument("--scenes", type=str, default=None) + ap.add_argument("--group", type=str, default=None) + ap.add_argument("--mode", type=str, default="per-scene", choices=["per-scene", "joint"]) + ap.add_argument("--deep", action="store_true", help="Deep search (niter=120)") + ap.add_argument("--output-label", type=str, default=None) + ap.add_argument("--feat-keys", type=str, default=None, + help="Comma-separated feat keys override (e.g. PHYS_DADT)") + args = ap.parse_args() + + niter = 120 if args.deep else 40 + + if args.group and args.group in FIT_GROUPS_V5: + scene_names = FIT_GROUPS_V5[args.group] + elif args.scenes: + scene_names = [s.strip() for s in args.scenes.split(",")] + elif args.scene: + scene_names = [args.scene] + else: + ap.error("Need --scene, --scenes, or --group") + + label = args.output_label or ("_".join(scene_names) if len(scene_names) > 1 else scene_names[0]) + + if args.mode == "per-scene": + for sn in scene_names: + keys = get_feature_keys_v5(sn) + if args.feat_keys: + keys = [k.strip() for k in args.feat_keys.split(",")] + print(f"\n=== {sn} (niter={niter}, {len(keys)} features) ===") + fit_v5(sn, keys, niter, sn) + elif args.mode == "joint": + keys = get_feature_keys_v5(scene_names[0]) + if args.feat_keys: + keys = [k.strip() for k in args.feat_keys.split(",")] + print(f"\n=== Joint {label} (niter={niter}, {len(keys)} features, {len(scene_names)} scenes) ===") + fit_joint_v5(scene_names, keys, niter, label) + + print("\nDone.") + + +if __name__ == "__main__": + main() diff --git a/src/SR_analysis/results/README.md b/src/SR_analysis/results/README.md index 574c3bd..1612809 100644 --- a/src/SR_analysis/results/README.md +++ b/src/SR_analysis/results/README.md @@ -1,80 +1,288 @@ -# Results Reference Table +# SR article evidence index -> Canonical result files for PySR symbolic regression and CFD closed-loop validation. -> See `docs/SR_analysis_report.md` and `docs/illusion_joint_formula_analysis.md` for analysis. +This is the authoritative index for current SR results. Read `../README.md` for the scientific summary and `../PIPELINE.md` for the method and commands. ---- +## Status vocabulary -## Category A: Canonical PySR Formulas +- **article evidence:** generated under the final channel, alignment, symmetry and metric contracts. +- **numerical candidate:** closed-loop tested, but not necessarily unique or fully physically explained. +- **diagnostic:** useful for understanding or failure analysis; not an article conclusion by itself. +- **historical frozen:** preserved context that is not current evidence. +- **rejected:** failed stability, integrity or scientific screening; retained rather than overwritten. -| File | Scene | Formula | R2 | -|------|-------|---------|:--:| -| `formulas/karman_joint_front.json` | Karman cross-Re | `daF_dt - 14.952*mu*Cl_tot` | 1.000 | -| `formulas/karman_joint_top.json` | Karman cross-Re | `3.414` (constant) | 1.000 | -| `formulas/illusion_joint_front.json` | Illusion joint | `Cd_tot - (Cd_err + 5.428) - 0.00978*(du_a_dt + u_a)` | 0.907 | -| `formulas/illusion_joint_top.json` | Illusion joint | `(Cd_err - (Cd_rear - Cl_err))*0.535 + 2.782` | 0.828 | -| `formulas/karman_re50_front.json` | Karman Re=50 | Independent per-Re | 1.000 | -| `formulas/karman_re100_front.json` | Karman Re=100 | Independent per-Re | 1.000 | -| `formulas/karman_re200_front.json` | Karman Re=200 | Independent per-Re | 1.000 | -| `formulas/karman_re400_front.json` | Karman Re=400 | Independent per-Re | 1.000 | -| `formulas/illusion_0.75L_front.json` | Illusion 0.75L | `-0.169*(Cl_tot + dCl_tot_dt) - 1.240` | 0.692 | -| `formulas/illusion_1L_front.json` | Illusion 1L | `(du_a_dt + u_a + 26.5)*0.0123` | 0.929 | -| `formulas/illusion_1.5L_front.json` | Illusion 1.5L | Non-SR (see report) | — | -| `formulas/illusion_joint_marker_front.json` | Illusion joint + marker | `diam*((du_a_dt+u_a)*0.01 + 6.32) - 6.00` | 0.942 | +Integrity audit is not scientific promotion. `scene_registry.json` is not updated automatically. ---- +## One-stop final package -## Category B: CFD Closed-Loop Validation +```text +runs/article-joint-sr-final-20260718/ +├── readable_summary.txt +└── evidence_manifest.json +``` -| File | Scene | Mode | Similarity | -|------|-------|------|:---:| -| `validations/karman_re50.json` | Karman Re=50 | Joint formula | 0.847 | -| `validations/karman_re100.json` | Karman Re=100 | Joint formula | 0.888 | -| `validations/karman_re200.json` | Karman Re=200 | Joint formula | 0.845 | -| `validations/karman_re400.json` | Karman Re=400 | Joint formula | 0.806 | -| `validations/karman_re50_ppo.json` | Karman Re=50 | PPO baseline | 0.961 | -| `validations/karman_re100_ppo.json` | Karman Re=100 | PPO baseline | 0.954 | -| `validations/karman_re200_ppo.json` | Karman Re=200 | PPO baseline | 0.884 | -| `validations/karman_re400_ppo.json` | Karman Re=400 | PPO baseline | 0.795 | -| `validations/illusion_0.75L.json` | Illusion 0.75L | Joint formula | 0.978 | -| `validations/illusion_1L.json` | Illusion 1L | Joint formula | 0.970 | -| `validations/illusion_0.5L.json` | Illusion 0.5L | Joint formula (gen) | 0.854 | -| `validations/illusion_0.6L.json` | Illusion 0.6L | Joint formula (gen) | 0.939 | -| `validations/illusion_0.8L.json` | Illusion 0.8L | Joint formula (gen) | 0.908 | -| `validations/illusion_1.2L.json` | Illusion 1.2L | Joint formula (gen) | 0.849 | -| `validations/illusion_2L.json` | Illusion 2L | Joint formula (gen) | 0.676 | -| `validations/vortex_lamb.json` | Vortex lamb | Karman formula | 0.949 | -| `validations/vortex_taylor.json` | Vortex taylor | Karman formula | 0.905 | +`readable_summary.txt` is the fastest result review. `evidence_manifest.json` links the machine-readable chain and records explicit non-claims. ---- +## Article2 coefficient-frozen extension: steady calibration, duration and sampled unseen conditions -## Category C: Source Data +The 2026-07-20 extension is indexed by: -| Path | Content | -|------|---------| -| `data/karman/karman_re{50,100,200,400}/controlled.npz` | PPO actions, sensors, forces | -| `data/illusion/illusion_{0.5L..2L}/controlled.npz` | PPO data (trained diameters only) | -| `data/illusion/illusion_{0.5L..2L}/target.npz` | Target signals (8 columns: [cyl_fx,cyl_fy, s0_ux,s0_uy, s1_ux,s1_uy, s2_ux,s2_uy]; use `[:, 2:8]` for pure sensor channels) | -| `data/illusion/illusion_{0.5L..2L}/target_harmonics.json` | FFT harmonics | -| `data/vortex/vortex_{lamb,taylor}/controlled.npz` | Vortex PPO data | +```text +runs/article2-sr-elements-20260720/ +runs/article2-steady-analysis-20260720/ +runs/article2-percase-refit-summary-20260720/ +runs/article2-timeseries-csv-20260720/ +runs/article2-long-timeseries-csv-20260720/ +runs/article2-generalization-summary-20260720/ +``` ---- +Key results, all using `legacy_dtw_v1_abs_n_unclipped`: -## How to Read These Files +- A disturbance-free constant-speed sweep peaks at sampled rear speed magnitude `5 U0` (0.987212). The Kármán joint law gives 0.966494 and converges to rear actions `(-3.4306, +3.4318)`, quantitatively matching its constant magnitude 3.4312. +- The 400-step Kármán similarities are 0.952178, 0.944339, 0.863850 and 0.833365 at Re50, Re100, Re200 and Re400. Illusion gives 0.854379, 0.915609 and 0.833587 at 0.75L, 1L and 1.5L. All telemetry remains finite. +- With coefficients frozen, pointwise Kármán deployment gives 0.988078, 0.954339, 0.907496 and 0.835758 at unseen Re25, Re70, Re150 and Re300. Illusion gives 0.784055, 0.821103, 0.884573, 0.925530 and 0.756880 at 0.5L, 0.6L, 0.8L, 1.2L and 2L. These are one 200-step sampled realization per condition, not a continuous parameter-law or statistical robustness result. +- Per-case frozen-topology refits do not support a clean low/high-Re split. Illusion 1.5L has a distinct coefficient emphasis, but several single-case rear fits are poorly identified and remain diagnostics. +- `sr_key_elements.md` and `.csv` provide the explicit SR-to-OID/CCD handover. These additions do not claim a direct momentum-balance equality, universality beyond tested conditions, or causal flow structures. -**Formula JSONs** (`results/formulas/*.json`): -- `feature_names`: list of feature names used in the formula -- `best_sympy`: the symbolic expression (parseable by sympy) -- `best_score`: one-step R-squared on training/validation data +## Plotting-ready package (2026-07-21) -**Validation JSONs** (`results/validations/*.json`): -- `similarity`: CFD closed-loop DTW similarity (the final metric) -- `mode`: "pysr", "ppo", or "uncontrolled" -- `n_steps`: number of control steps used in validation +The final plotting audit and derived CSV package is: -**NPZ data** (`data/*/controlled.npz`): -- `actions`: shape [N, 3], normalized [-1, 1] -- `sensors`: shape [N, 6], raw sensor velocities [s0_ux, s0_uy, s1_ux, s1_uy, s2_ux, s2_uy] -- `forces`: shape [N, 6], raw forces [front_fx, front_fy, bottom_fx, bottom_fy, top_fx, top_fy] +```text +runs/article2-plotting-package-20260721/ +``` -The single source of truth for all numerical results is `scene_registry.json` at the root of SR_analysis/. +It adds, without refitting formulas: + +- seven 400-step PPO baselines under `long_ppo//`, paired with the existing 400-step SR exports; +- `offline_predictions.csv`: causal PPO-state features, PPO next actions, SR predictions and residuals; +- `term_contributions_ppo_states.csv`: additive symbolic terms evaluated on PPO-visited states; +- `term_contributions_sr_closed_loop_400.csv`: additive terms on 400-step SR trajectories, with exact next-action reconstruction; +- `ablation_summary.csv` and `scaling_summary.csv`; +- seven constant-rotation steady time-series exports; +- publication-starting-point PNG/PDF diagnostics under `figures/`; +- a SHA-256 manifest for the complete derived package. + +The 400-step PPO similarities are `0.954856`, `0.946973`, `0.900280`, `0.845378` for Kármán Re50/100/200/400 and `0.976328`, `0.975728`, `0.926701` for Illusion 0.75L/1L/1.5L. All completed with finite telemetry. PPO inference runs on CPU while physical GPU 2 remains dedicated to PyCUDA CFD, avoiding PyTorch/PyCUDA context conflicts. + +## Evidence chain + +### 1. Accepted article data + +```text +../data/runs/article-joint-data-karman-20260718/ +../data/runs/article-joint-data-illusion-20260718/ +runs/article-joint-data-audit-20260718/ +``` + +Scope: + +- Kármán: Re50, Re100, Re200, Re400. +- Illusion: 0.75L, 1L, 1.5L. +- 200 recorded steps per scene; 197 causally aligned rows after warm-up. +- Seven exact PPO policy-replay passes. + +Key files: + +- `runs/article-joint-data-audit-20260718/data_inventory.json` +- `runs/article-joint-data-audit-20260718/policy_replay/*.json` + +### 2. Per-case broad discovery + +```text +runs/article-discovery-*/ +runs/article-discovery-v2-*/ +runs/article-discovery-v3-*/ +runs/article-per-case-discovery-summary-20260718/summary.json +``` + +Purpose: identify recurrent variables and expression topology using `raw_complete` and `symmetry` representations, three seeds and contiguous train/validation/blind diagnostics. These are offline discovery artifacts, not accepted controllers. + +Main recurrence: + +- Kármán has no clean low/high-Re binary split: Re50 favours simple front-force/affine laws, Re400 repeatedly selects `Cl_rear_s-Cl_tot`, and Re100/Re200 remain heterogeneous lift-based intermediates. +- Illusion has distinct endpoint families: 0.75L is rear-drag dominated, 1L is mixed/transitional, and 1.5L overwhelmingly selects front/rear lift contrast. +- Across the audited heads, the leading Illusion counts are `Cd_rear_a=15`, `Cd_rear_s=10` at 0.75L; `Cd_F=13`, `Cl_rear_s=12` at 1L; and `Cl_F=54`, `Cl_rear_s=46` at 1.5L. +- Target/error variables were available but did not recur stably in low-complexity static joint structures. + +### 3. Joint topology discovery + +Kármán: + +```text +runs/article-joint-karman-raw_complete-s*-20260718/ +runs/article-joint-karman-symmetry-s*-20260718/ +``` + +Stable symmetry topology: + +```text +front ~ Cd_rear_a +rear ~ Cl_rear_s + constant +``` + +Illusion: + +```text +runs/article-joint-illusion-actual_only-s*-20260718/ +runs/article-joint-illusion-actual_plus_target-s*-20260718/ +runs/article-joint-illusion-actual_plus_error-s*-20260718/ +``` + +Stable rear topology: + +```text +rear ~ Cd_rear_a - Cl_F +``` + +Competing front topologies: + +```text +-Cd_rear_a + Cl_F +Cd_rear_s*Cl_F - Cl_tot +``` + +The second Illusion topology later failed short CFD in 1L and 1.5L and is rejected. + +### 4. Fixed-topology all-data refit + +```text +runs/article-refit-karman-topology-a-20260718/ +runs/article-refit-illusion-topology-a-20260718/ +runs/article-refit-illusion-topology-b-20260718/ +``` + +These artifacts freeze the discovery topology and optimize only numerical constants using all accepted rows with case-equal and trajectory-equal weighting. They report aggregate, per-case and per-trajectory offline metrics. + +### 5. Short CFD screening + +```text +runs/article-L2-karman-20260718/ +runs/article-L2-illusionA-20260718/ +runs/article-L2-illusionB-20260718/ +``` + +- Kármán A: stable in all four Re. +- Illusion A: stable at all three training target-size labels. +- Illusion B: 0.75L completed; 1L and 1.5L became non-finite. Its failed telemetry is retained and the candidate is rejected. + +### 6. Standard 200-step CFD + +```text +runs/article-L3-karman-20260718/ +runs/article-L3-illusionA-20260718/ +``` + +All values use `legacy_dtw_v1_abs_n_unclipped`, window `legacy_reference_cycle_vs_last_recorded_cycle`. + +Kármán candidate: + +- Re50: `0.9543` +- Re100: `0.9427` +- Re200: `0.8560` +- Re400: `0.7827` + +Illusion numerical candidate: + +- 0.75L: `0.8749` +- 1L: `0.9217` +- 1.5L: `0.8306` + +### 7. Term deletion + +Formula variants: + +```text +runs/article-ablation-formulas-v2-20260718/formulas/ +``` + +Short closed-loop results: + +```text +runs/article-ablation-L2-k_front0-20260718/ +runs/article-ablation-L2-k_rear0-20260718/ +runs/article-ablation-L2-k_rear1-20260718/ +runs/article-ablation-L2-i_front0-20260718/ +runs/article-ablation-L2-i_front1-20260718/ +runs/article-ablation-L2-i_rear0-20260718/ +runs/article-ablation-L2-i_rear1-20260718/ +``` + +Interpretation: + +- Kármán rear constant is dominant. +- Kármán rear lift feedback has secondary value. +- The tested Kármán front feedback is weak. +- Every one-term Illusion deletion remained stable with relatively small DTW changes; no four-term uniqueness claim is justified. + +### 8. Coefficient scaling shadow + +```text +runs/article-scaling-L1-v2-20260718/summary.json +``` + +Thirty-seven preregistered variants were evaluated on recorded states with scale values `0, 0.5, 0.75, 1, 1.25, 1.5`. All remained finite. + +- Kármán rear constant has the largest action-amplitude influence. +- Illusion `Cl_F` terms dominate front and rear action magnitude. +- Illusion `Cd_rear_a` terms are weaker and partly replaceable. + +## Current formulas + +### Kármán candidate + +\[ +\alpha_F=\operatorname{odd}\!\left[-0.381391\,C_{d,\mathrm{rear},a}\right], +\] + +\[ +\alpha_U=1.307782\,C_{l,\mathrm{rear},s}-3.431209, +\qquad +\alpha_L=-\alpha_U(Gx). +\] + +Status: article candidate with strong mechanism evidence at Re50/100 and reduced performance at Re400. Not universal. + +### Illusion numerical candidate + +\[ +\alpha_F=\operatorname{odd}\!\left[-1.826604\,C_{d,\mathrm{rear},a}+2.064493\,C_{l,F}\right], +\] + +\[ +\alpha_U=1.254440\,C_{d,\mathrm{rear},a}-1.528074\,C_{l,F}, +\qquad +\alpha_L=-\alpha_U(Gx). +\] + +Status: symmetric numerical candidate. It does not establish explicit target tracking or term uniqueness. + +## Article claims supported by this evidence + +1. PPO policies can be reduced through a reproducible pipeline that separates offline discovery, joint structure, coefficient estimation, closed-loop acceptance and term necessity. +2. Within the tested symbolic controller, persistent Kármán rear counter-rotation is the dominant term and rear lift feedback provides a secondary correction; interpreting the associated field as deficit compensation remains a hypothesis for OID/CCD. +3. Different formulas with similar offline fit can have different closed-loop outcomes; R² alone is not a controller-selection metric. +4. Illusion admits a shared symmetric numerical family, but the available static library does not establish a unique target-dependent mechanism across 0.75L–1.5L. +5. The 1.5L Illusion trajectory is a distinct/difficult regime and should be discussed as a boundary rather than hidden by average performance. + +## Claims not supported + +- One globally optimal symbolic formula. +- Universal Kármán performance through Re400. +- Explicit target tracking by the current Illusion formula. +- Necessity of every Illusion term. +- Unseen-condition or Vortex generalization from the 2026-07-18 primary run; the Article2 extension supplies only pointwise evidence at explicitly sampled Re and target-size values. +- Physical delay inferred from DTW lag. + +## Historical frozen material + +The following remain for context and recovery but are not authoritative article evidence: + +- `formulas/` +- `validations/` +- `scene_registry.json` +- old reports under `docs/` +- `round1-legacy-v2-20260716-*` +- smoke/wiring runs from earlier rebuilds +- `formulas_v5/` and `experiments/v5/` + +Do not copy their numbers into the manuscript without explicitly labelling them historical and reconciling their contracts with the article run. diff --git a/src/SR_analysis/results/figures/FIGURE_INDEX.md b/src/SR_analysis/results/figures/FIGURE_INDEX.md index 2cb54df..1a02872 100644 --- a/src/SR_analysis/results/figures/FIGURE_INDEX.md +++ b/src/SR_analysis/results/figures/FIGURE_INDEX.md @@ -98,5 +98,5 @@ All numerical values in these figures are derived from: To regenerate all figures: ```bash -conda run -n pycuda_3_10 python stage_4_analyze.py +PYTHONPATH=src conda run -n pycuda_3_10 python -m SR_analysis.archive.stage4.stage_4_analyze ``` diff --git a/src/SR_analysis/results/formulas_v5/ill_075L_sc_ill_1L_sc_ill_15L_sc_ill_2L_sc_front.json b/src/SR_analysis/results/formulas_v5/ill_075L_sc_ill_1L_sc_ill_15L_sc_ill_2L_sc_front.json new file mode 100644 index 0000000..68b6d83 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/ill_075L_sc_ill_1L_sc_ill_15L_sc_ill_2L_sc_front.json @@ -0,0 +1,21 @@ +{ + "scene": "ill_075L_sc_ill_1L_sc_ill_15L_sc_ill_2L_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_a", + "du_a_dt", + "Cl_tot", + "dCl_tot_dt", + "Cd_tot", + "Cd_rear", + "Cd_err", + "Cl_err", + "dCd_err_dt", + "dCl_err_dt" + ], + "best_sympy": "Cd_err - dCl_tot_dt", + "best_score": 0.03699740118331907, + "niterations": 120, + "n_samples": 1432 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/ill_1L_sc_front.json b/src/SR_analysis/results/formulas_v5/ill_1L_sc_front.json new file mode 100644 index 0000000..877d7c3 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/ill_1L_sc_front.json @@ -0,0 +1,20 @@ +{ + "scene": "ill_1L_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_a", + "du_a_dt", + "Cl_tot", + "dCl_tot_dt", + "Cd_tot", + "Cd_rear", + "Cd_err", + "Cl_err", + "dCd_err_dt", + "dCl_err_dt" + ], + "best_sympy": "Cd_rear*39.417385 - 8.783737*Cd_tot**2", + "best_score": 0.2857188366914536, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/ill_1L_sc_top.json b/src/SR_analysis/results/formulas_v5/ill_1L_sc_top.json new file mode 100644 index 0000000..4271da9 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/ill_1L_sc_top.json @@ -0,0 +1,21 @@ +{ + "scene": "ill_1L_sc", + "channel": "top", + "output": "alpha", + "feature_keys": [ + "bias", + "u_a", + "du_a_dt", + "Cl_tot", + "dCl_tot_dt", + "Cd_tot", + "Cd_rear", + "Cd_err", + "Cl_err", + "dCd_err_dt", + "dCl_err_dt" + ], + "best_sympy": "Cd_tot*23.775885 - 64.462715", + "best_score": 0.24296041275208324, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d075_sc_front.json b/src/SR_analysis/results/formulas_v5/kar_d075_sc_front.json new file mode 100644 index 0000000..eafb242 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d075_sc_front.json @@ -0,0 +1,27 @@ +{ + "scene": "kar_d075_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "daF_dt*0.41405594", + "best_score": 0.37917569513447735, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d075_sc_top.json b/src/SR_analysis/results/formulas_v5/kar_d075_sc_top.json new file mode 100644 index 0000000..c97fb5e --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d075_sc_top.json @@ -0,0 +1,28 @@ +{ + "scene": "kar_d075_sc", + "channel": "top", + "output": "alpha", + "feature_keys": [ + "bias", + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "daT_dt*0.39163446 - 1*(-2.8636527)", + "best_score": 0.305276644939362, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d15_sc_front.json b/src/SR_analysis/results/formulas_v5/kar_d15_sc_front.json new file mode 100644 index 0000000..1197a0a --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d15_sc_front.json @@ -0,0 +1,27 @@ +{ + "scene": "kar_d15_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "mu_u_a*(-mu_v_a*u_m + (Cd_rear + Cd_rear)**2)", + "best_score": 0.5956046015454158, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d15_sc_top.json b/src/SR_analysis/results/formulas_v5/kar_d15_sc_top.json new file mode 100644 index 0000000..deef4a0 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d15_sc_top.json @@ -0,0 +1,28 @@ +{ + "scene": "kar_d15_sc", + "channel": "top", + "output": "alpha", + "feature_keys": [ + "bias", + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "(Cd_rear + Cl_diff)**2", + "best_score": 0.3719336984189675, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d2_sc_front.json b/src/SR_analysis/results/formulas_v5/kar_d2_sc_front.json new file mode 100644 index 0000000..36f2336 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d2_sc_front.json @@ -0,0 +1,27 @@ +{ + "scene": "kar_d2_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "u_a*(0.10308963 - mu_Cl_diff) + (Cd_tot**2 + daF_dt)/2.545903", + "best_score": 0.7457522893623865, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_d2_sc_top.json b/src/SR_analysis/results/formulas_v5/kar_d2_sc_top.json new file mode 100644 index 0000000..52fc0be --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_d2_sc_top.json @@ -0,0 +1,28 @@ +{ + "scene": "kar_d2_sc", + "channel": "top", + "output": "alpha", + "feature_keys": [ + "bias", + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "(-daT_dt + v_a)*(mu_u_a - 0.36293036) + 3.2632432", + "best_score": 0.5707536479471909, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_re100_sc_front.json b/src/SR_analysis/results/formulas_v5/kar_re100_sc_front.json new file mode 100644 index 0000000..b7dd0c8 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_re100_sc_front.json @@ -0,0 +1,27 @@ +{ + "scene": "kar_re100_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "-Cl_diff**2*mu_u_a + daF_dt*0.5123117", + "best_score": 0.512653440416756, + "niterations": 120 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/kar_re100_sc_kar_d075_sc_kar_d15_sc_kar_d2_sc_front.json b/src/SR_analysis/results/formulas_v5/kar_re100_sc_kar_d075_sc_kar_d15_sc_kar_d2_sc_front.json new file mode 100644 index 0000000..71d57a0 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/kar_re100_sc_kar_d075_sc_kar_d15_sc_kar_d2_sc_front.json @@ -0,0 +1,28 @@ +{ + "scene": "kar_re100_sc_kar_d075_sc_kar_d15_sc_kar_d2_sc", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "daF_dt*0.4358058", + "best_score": 0.30991253976207, + "niterations": 120, + "n_samples": 1432 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/karman_v5_nodadt_front.json b/src/SR_analysis/results/formulas_v5/karman_v5_nodadt_front.json new file mode 100644 index 0000000..161fad3 --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/karman_v5_nodadt_front.json @@ -0,0 +1,27 @@ +{ + "scene": "karman_v5_nodadt", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "mu_u_a", + "mu_v_a", + "mu_u_m", + "mu_u_c", + "mu_Cd_tot", + "mu_Cd_rear", + "mu_Cl_tot", + "mu_Cl_diff" + ], + "best_sympy": "Cd_rear*0.04394478*(Cd_rear**2 + u_a)", + "best_score": 0.13022819111167572, + "niterations": 120, + "n_samples": 1432 +} \ No newline at end of file diff --git a/src/SR_analysis/results/formulas_v5/mixed_karman_5cases_front.json b/src/SR_analysis/results/formulas_v5/mixed_karman_5cases_front.json new file mode 100644 index 0000000..dc43b9f --- /dev/null +++ b/src/SR_analysis/results/formulas_v5/mixed_karman_5cases_front.json @@ -0,0 +1,28 @@ +{ + "scene": "mixed_karman_5cases", + "channel": "front", + "output": "alpha", + "feature_keys": [ + "u_m", + "u_a", + "u_c", + "v_a", + "Cd_tot", + "Cd_rear", + "Cl_tot", + "Cl_diff", + "daF_dt", + "daB_dt", + "daT_dt", + "mu", + "mu_u_a", + "mu_v_a", + "mu_Cd_tot", + "mu_Cl_diff", + "mu_Cl_tot" + ], + "best_sympy": "daF_dt*0.43680468", + "best_score": 0.3137504393083681, + "niterations": 120, + "n_samples": 1470 +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json new file mode 100644 index 0000000..b8f7e66 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.027858299815121442,0.018607908342481425,0.018607908342481425],"min":[-0.03486112192853427,-0.011180106764025324,-0.011180106764025324]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.00027858299815121444,0.00018607908342481425,0.00018607908342481425],"min":[-0.00034861121928534273,-0.00011180106764025324,-0.00011180106764025324]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionA-20260718-illusion_0p75L__pysr__f-ae67ae507106__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T11:30:15.695566+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"e81fd10830ea323ccb243bfd904f507b1d83df7e158ac66545ec9c647db101fb"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":15,"per_channel":{"0":0.9477276007334391,"1":0.9816861665814132,"2":0.9183859858247969,"3":0.9611691762175825,"4":0.9464054819610384,"5":0.9773624097255783},"similarity":0.9554561368406415},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionA-20260718","created_at":"2026-07-18T11:30:15.695532+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"ba804b295e370df790f19caf3085f1ca6e976398539881600b53fa9b76a8dc9d","run_id":"article-L2-illusionA-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionA-20260718/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz","sha256":"40efc807345d5cc8c0d534c98d17f4916504c747102cc9ae861be136dfacec6d","telemetry_hash":"40efc807345d5cc8c0d534c98d17f4916504c747102cc9ae861be136dfacec6d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json new file mode 100644 index 0000000..860b80c --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.1444897875198139,0.027819935474496984,0.027819935474496984],"min":[-0.03159016069939141,-0.10524081902730739,-0.10524081902730739]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.001444897875198139,0.00027819935474496986,0.00027819935474496986],"min":[-0.0003159016069939141,-0.001052408190273074,-0.001052408190273074]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionA-20260718-illusion_1L__pysr__f-ae67ae507106__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T11:32:24.622703+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"899fbd0eb5d195f795b0c36a6128c667b09a0af46fb71f4a247c900ceb5b1865"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-1,"per_channel":{"0":0.9669093688329061,"1":0.9213498977834307,"2":0.9464834531148275,"3":0.902579221357074,"4":0.9684156742360857,"5":0.954110394542416},"similarity":0.9433080016444566},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionA-20260718","created_at":"2026-07-18T11:32:24.622673+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"7476409c8537aac97df41a829e7df76ac0658decf4f3c088015ba04ff052d826","run_id":"article-L2-illusionA-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionA-20260718/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz","sha256":"e4e908baca77b86779faf8d3db51177db8c61025071cbbb0d9deecb189767e3b","telemetry_hash":"e4e908baca77b86779faf8d3db51177db8c61025071cbbb0d9deecb189767e3b"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json new file mode 100644 index 0000000..79ee83d --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.07815904151585262,0.06214444636359535,0.06214444636359535],"min":[-0.077785754852455,-0.05793071038373405,-0.05793071038373405]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0007815904151585262,0.0006214444636359535,0.0006214444636359535],"min":[-0.00077785754852455,-0.0005793071038373405,-0.0005793071038373405]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionA-20260718-illusion_1p5L__pysr__f-ae67ae507106__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T11:34:40.605315+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"6a64c7852678be5ed6ca55103d3c89a86b91b2e064e3f61559ebe1623975cd47"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-1,"per_channel":{"0":0.87747489909331,"1":0.8507810683610538,"2":0.9161408411131965,"3":0.8511601055247916,"4":0.8734767528043853,"5":0.9073523059099292},"similarity":0.8793976621344445},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionA-20260718","created_at":"2026-07-18T11:34:40.605282+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"1d9dccce33d4cdc3be37ce48f6293d730b71f36e6ccc26657f09e58a6645e30f","run_id":"article-L2-illusionA-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionA-20260718/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz","sha256":"9c7d8a16a9957e80c83d2058ec8fe10d28ff7c182f8ae92b5ef14fe2d06ee635","telemetry_hash":"9c7d8a16a9957e80c83d2058ec8fe10d28ff7c182f8ae92b5ef14fe2d06ee635"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_0p75L__pysr__f-93615f0809c7__si-400.json b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_0p75L__pysr__f-93615f0809c7__si-400.json new file mode 100644 index 0000000..a5d3fb3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_0p75L__pysr__f-93615f0809c7__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.07474141951916251,0.02924089183467057,0.02924089183467057],"min":[-0.6367684489149312,-1.891085085039326,-1.891085085039326]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0007474141951916251,0.0002924089183467057,0.0002924089183467057],"min":[-0.006367684489149312,-0.01891085085039326,-0.01891085085039326]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionB-20260718-illusion_0p75L__pysr__f-93615f0809c7__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T11:36:44.918658+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"515cd83c705621321d41e4f896a751f55418439bbbefd0796910b92378a18fa0"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","formula_hashes":{"front_deployment_expression":"61b4cd009615b69fa5e3593c85d64f88594042b6e9b26c8760ebfd701985741c","front_source":"ace899db7c74d70c8ee039ea288d6dd6b05ce7e0d554c07791fe0bfe0bf3da9d","pair":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"9f110f640a6c74d48a18428061fa864d955ab8874cd89d5eb0aff38691f248db"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":7,"per_channel":{"0":0.9408308234479692,"1":0.9591874444546798,"2":0.9442732267909579,"3":0.9700912296603847,"4":0.9565915796491835,"5":0.9823624061795676},"similarity":0.9588894516971238},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionB-20260718","created_at":"2026-07-18T11:36:44.918625+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"e4154c6da98d153583e9bf1e621eed07983a88708295ab7dd28d6f64b32f0e53","run_id":"article-L2-illusionB-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_0p75L__pysr__f-93615f0809c7__si-400.npz","sha256":"e572444178eaa5ab48479c6a1d261b629780e79de96f745984d0fd742d53d3a5","telemetry_hash":"e572444178eaa5ab48479c6a1d261b629780e79de96f745984d0fd742d53d3a5"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1L__pysr__f-93615f0809c7__si-600.json b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1L__pysr__f-93615f0809c7__si-600.json new file mode 100644 index 0000000..0177f8f --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1L__pysr__f-93615f0809c7__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionB-20260718-illusion_1L__pysr__f-93615f0809c7__si-600","completed_steps":33,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T11:38:53.561979+00:00","dt_c":0.3,"exception_type":"FloatingPointError","failed_step":33,"formula_hash":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","formula_hashes":{"front_deployment_expression":"61b4cd009615b69fa5e3593c85d64f88594042b6e9b26c8760ebfd701985741c","front_source":"ace899db7c74d70c8ee039ea288d6dd6b05ce7e0d554c07791fe0bfe0bf3da9d","pair":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"9f110f640a6c74d48a18428061fa864d955ab8874cd89d5eb0aff38691f248db"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionB-20260718","created_at":"2026-07-18T11:38:53.561979+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"f6e9f904e34bbffc8a41e1adf7f6aa19d3e2d9f9ee97d36959c77e332f7d625e","run_id":"article-L2-illusionB-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_1L__pysr__f-93615f0809c7__si-600.npz","sha256":"791e83c5481ba8c42c21cffb3fa449089eef5dce8af906e19b5dc37e19399655","telemetry_hash":"791e83c5481ba8c42c21cffb3fa449089eef5dce8af906e19b5dc37e19399655"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1p5L__pysr__f-93615f0809c7__si-800.json b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1p5L__pysr__f-93615f0809c7__si-800.json new file mode 100644 index 0000000..40b1d5d --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1p5L__pysr__f-93615f0809c7__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-illusionB-20260718-illusion_1p5L__pysr__f-93615f0809c7__si-800","completed_steps":24,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T11:41:08.611219+00:00","dt_c":0.4,"exception_type":"FloatingPointError","failed_step":24,"formula_hash":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","formula_hashes":{"front_deployment_expression":"61b4cd009615b69fa5e3593c85d64f88594042b6e9b26c8760ebfd701985741c","front_source":"ace899db7c74d70c8ee039ea288d6dd6b05ce7e0d554c07791fe0bfe0bf3da9d","pair":"93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"9f110f640a6c74d48a18428061fa864d955ab8874cd89d5eb0aff38691f248db"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-illusionB-20260718","created_at":"2026-07-18T11:41:08.611219+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"fef601e944018b50b89280b09e40813e43c3a7ed1bb33dec1a5048166527e9ab","run_id":"article-L2-illusionB-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_1p5L__pysr__f-93615f0809c7__si-800.npz","sha256":"a25595ff6dd07139379b09f402a8926fb0373eee168b941e08e8765222d3288e","telemetry_hash":"a25595ff6dd07139379b09f402a8926fb0373eee168b941e08e8765222d3288e"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..fd1abd9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.503601193480109,-0.6854929854223788,6.176924375598853],"min":[-2.5203582132541817,-6.135951823548419,0.7264655374728126]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02503601193480109,-0.006854929854223788,0.06176924375598853],"min":[-0.025203582132541816,-0.061359518235484196,0.007264655374728126]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-karman-20260718-karman_re100__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-18T11:23:23.089118+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"bfa9ea26769074a6b13c6545214f8540e076e2d15e0e5139dd0ceba81c19d674"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-5,"per_channel":{"0":0.9572525302569072,"1":0.9416189276923735,"2":0.7811569372812907,"3":0.8971000251049797,"4":0.948307599623998,"5":0.9441855673678219},"similarity":0.9116035978878952},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-karman-20260718","created_at":"2026-07-18T11:23:23.089097+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"e44b40923e9860922e89c4ce7abeb4bc9c7bffa4a76f7588796f8dc46b1afca0","run_id":"article-L2-karman-20260718","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-karman-20260718/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz","sha256":"b4977bb95d2f0894f16762a5c3447f6a32bd2f5e126e003a72e2bf19e9999cf2","telemetry_hash":"b4977bb95d2f0894f16762a5c3447f6a32bd2f5e126e003a72e2bf19e9999cf2"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..6246bf6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.228759434890923,0.6184443513628133,7.480861712384046],"min":[-3.0292503251377485,-7.315733136539583,-0.45331577551835034]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.03228759434890923,0.006184443513628133,0.07480861712384046],"min":[-0.030292503251377487,-0.07315733136539583,-0.004533157755183504]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-karman-20260718-karman_re200__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-18T11:25:47.158963+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"6dba526a814db0681764d3a4fbbeae1801c99aeaa044822315ed840a2719ca65"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":2,"per_channel":{"0":0.9195386071999868,"1":0.9343057362052302,"2":0.7611216505368551,"3":0.839418870707353,"4":0.9180052657922109,"5":0.9472899549951156},"similarity":0.8866133475727919},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-karman-20260718","created_at":"2026-07-18T11:25:47.158907+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"33d1a91c50ffbb65d72516fbb353438abceac94b8ec6fc93412f8c498c27e67e","run_id":"article-L2-karman-20260718","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-karman-20260718/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz","sha256":"a85da4e84119f9ac2fec7d6e7e5b5ab7cdbd8e4a3ed479eeedc6745acf933881","telemetry_hash":"a85da4e84119f9ac2fec7d6e7e5b5ab7cdbd8e4a3ed479eeedc6745acf933881"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..9f7f01b --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.875050685129056,0.4605469199420984,7.32296428096333],"min":[-3.409821757033914,-7.4953483605655515,-0.6329309995443189]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02875050685129056,0.004605469199420984,0.0732296428096333],"min":[-0.034098217570339144,-0.07495348360565551,-0.006329309995443189]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-karman-20260718-karman_re400__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-18T11:28:11.478926+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"96b31c72e86ab2effc3d4b6e1792e16ef410fcb72689bdb4c5ff27f9c16acbcc"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":4,"per_channel":{"0":0.882340544462204,"1":0.9101819748679797,"2":0.7630385816097259,"3":0.680563855667909,"4":0.8843584895133972,"5":0.9104146112998327},"similarity":0.8384830095701749},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-karman-20260718","created_at":"2026-07-18T11:28:11.478901+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"2401856073853a7f1a72a7af6fc0172323cc57e5ae6c28d26b547654f274b758","run_id":"article-L2-karman-20260718","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-karman-20260718/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz","sha256":"81ea8c892873d7bad252c4f90e59f20ea750cc6d3bc1e9a13e68848c1b9cd93b","telemetry_hash":"81ea8c892873d7bad252c4f90e59f20ea750cc6d3bc1e9a13e68848c1b9cd93b"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..415103f --- /dev/null +++ b/src/SR_analysis/results/runs/article-L2-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.3919211025046347,-2.4142984420845512,4.4481189189366805],"min":[-1.6609282969899888,-4.45432978788001,2.408087573141223]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.013919211025046348,-0.024142984420845514,0.044481189189366804],"min":[-0.01660928296989989,-0.0445432978788001,0.02408087573141223]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L2-karman-20260718-karman_re50__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-18T11:20:58.905244+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"67569acc3f2f36a43ed6708b6653abf86dc8e11d85745aa1e89e66fea0b4cf92"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":1,"per_channel":{"0":0.958056656519572,"1":0.9513828748837113,"2":0.9137239654858907,"3":0.9238178003579378,"4":0.9594967345396678,"5":0.9688099840035042},"similarity":0.9458813359650472},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-L2-karman-20260718","created_at":"2026-07-18T11:20:58.905211+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"3a299a963b7b05f9675e21dce1e3319758ae3b2b9b1bfd14c546bab53af302e5","run_id":"article-L2-karman-20260718","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-karman-20260718/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz","sha256":"4414948f346d44da26be729e33d0352164aecbbdfa0059a31acad8d8e273afb9","telemetry_hash":"4414948f346d44da26be729e33d0352164aecbbdfa0059a31acad8d8e273afb9"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json new file mode 100644 index 0000000..c7fc459 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.08378423896653334,0.009667563518883787,0.009667563518883787],"min":[-0.023895080675304325,-0.05697559957518511,-0.05697559957518511]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0008378423896653334,9.667563518883788e-05,9.667563518883788e-05],"min":[-0.00023895080675304326,-0.0005697559957518511,-0.0005697559957518511]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-illusionA-20260718-illusion_0p75L__pysr__f-ae67ae507106__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T11:55:31.545692+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"85bea9aeef4767c059a94f42f27c25235a30fdeca1965d99b0005b18001839a7"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-10,"per_channel":{"0":0.9257550951507356,"1":0.8768414369939516,"2":0.842402782705095,"3":0.7687778922910284,"4":0.9447607646385828,"5":0.8911182117234502},"similarity":0.874942697250474},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-illusionA-20260718","created_at":"2026-07-18T11:55:31.545650+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"adb7f8b607fa434e1b38a9b9e66a8a07787b93c014296ba19d8bfd70660ef2c9","run_id":"article-L3-illusionA-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz","sha256":"95e40e3eedcdb8bf23fc4073988ac8303e271eb786e29e5833f441f1dce5ec3d","telemetry_hash":"95e40e3eedcdb8bf23fc4073988ac8303e271eb786e29e5833f441f1dce5ec3d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json new file mode 100644 index 0000000..edb0a26 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.057711614206820604,0.06451124867087857,0.06451124867087857],"min":[-0.08241633558656292,-0.04327202550609269,-0.04327202550609269]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0005771161420682061,0.0006451124867087857,0.0006451124867087857],"min":[-0.0008241633558656292,-0.0004327202550609269,-0.0004327202550609269]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-illusionA-20260718-illusion_1L__pysr__f-ae67ae507106__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T11:57:51.491345+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"e0234a51f21a0e0980f28646e975a8a533b147dd69b741e0c2073ce82c7fd549"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.9637112004889382,"1":0.9560219088776244,"2":0.7709939976533254,"3":0.9182358270336408,"4":0.9581615030765533,"5":0.9632575050927699},"similarity":0.9217303237038087},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-illusionA-20260718","created_at":"2026-07-18T11:57:51.491313+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"664ebeedd852ad325717e33a0dcaf4d7f214a532bae8f9db09bfac14835f8e67","run_id":"article-L3-illusionA-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz","sha256":"ce03b1fda4b3382c579315837600c8ddb109c8865f5fdacd59d910ebc51988ce","telemetry_hash":"ce03b1fda4b3382c579315837600c8ddb109c8865f5fdacd59d910ebc51988ce"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json new file mode 100644 index 0000000..389d285 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.05812700286995892,0.050293141809114796,0.050293141809114796],"min":[-0.07680606653190336,-0.03246912363232379,-0.03246912363232379]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0005812700286995892,0.0005029314180911479,0.0005029314180911479],"min":[-0.0007680606653190336,-0.00032469123632323794,-0.00032469123632323794]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-illusionA-20260718-illusion_1p5L__pysr__f-ae67ae507106__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T12:00:22.003258+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"9835871ed4ba77fa8c835471b8440837a2147de35a1ba704cc23c685947fe13e"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-7,"per_channel":{"0":0.910318603946103,"1":0.7779754769936618,"2":0.7479163971212175,"3":0.7731653744122013,"4":0.951814376645618,"5":0.8226178328687739},"similarity":0.8306346769979293},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-illusionA-20260718","created_at":"2026-07-18T12:00:22.003225+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"1ab0782caf5b23c56cc78df99e264b234c930d3faf3b41bf91316e34df8c0d9b","run_id":"article-L3-illusionA-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz","sha256":"8c8798910d9c8da418dec479f47e6e4b5b3eda3b6ac23b178fdf1ddbc84bd824","telemetry_hash":"8c8798910d9c8da418dec479f47e6e4b5b3eda3b6ac23b178fdf1ddbc84bd824"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..03ce231 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.6946125354659642,-0.6077656238824005,6.254651737138832],"min":[-2.5877481507735207,-6.2353237474457845,0.6270936135754481]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.026946125354659643,-0.006077656238824006,0.06254651737138832],"min":[-0.02587748150773521,-0.06235323747445785,0.006270936135754482]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-karman-20260718-karman_re100__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-18T11:48:03.774560+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"6c98860028e4205516fdca2afe9aabefa150e02fdef8d6343b4c8809e2a2f3ea"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-8,"per_channel":{"0":0.9814277211825053,"1":0.9649004686623812,"2":0.8044749160607656,"3":0.9586062712594867,"4":0.9800249854723613,"5":0.9668169762939215},"similarity":0.9427085564885704},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-karman-20260718","created_at":"2026-07-18T11:48:03.774522+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"256f3685dd3322519df55d93363b2beaf25ac4a3116c6a8d16987435783fd89a","run_id":"article-L3-karman-20260718","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz","sha256":"bfde93ac38b902c04ed6f613095c1f3ff9060478c8577c0aff729e986d221b1c","telemetry_hash":"bfde93ac38b902c04ed6f613095c1f3ff9060478c8577c0aff729e986d221b1c"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..fa87b0a --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.1716498285706156,-0.20183909376273634,6.660578267258496],"min":[-2.8346632891345194,-6.737746049222517,0.12467131179871549]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.031716498285706156,-0.0020183909376273635,0.06660578267258496],"min":[-0.028346632891345196,-0.06737746049222518,0.001246713117987155]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-karman-20260718-karman_re200__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-18T11:50:41.202561+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2eeb44f2d2a0db3cd0d0eb4b37a778a07c008d1e5f664bc06e69ba3d18de3c0c"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":4,"per_channel":{"0":0.8941423873106639,"1":0.9268932865001261,"2":0.721358698606491,"3":0.7802774014572302,"4":0.8943212985992431,"5":0.9191929107842346},"similarity":0.8560309972096647},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-karman-20260718","created_at":"2026-07-18T11:50:41.202528+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"5e4a6429020bd4e4117aeedb9bc2b7363e8b38fb414936b3e756101f0bfe5b25","run_id":"article-L3-karman-20260718","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz","sha256":"d0f70c18f619d1461f6f99855e2b41ee237d3ea0fde5521b0796f0e7f226d325","telemetry_hash":"d0f70c18f619d1461f6f99855e2b41ee237d3ea0fde5521b0796f0e7f226d325"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..2dda232 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.5118027257384017,-0.6898283759542441,6.172588985066988],"min":[-3.6751645022886845,-6.738444857616925,0.12397250340430777]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.025118027257384018,-0.006898283759542441,0.06172588985066988],"min":[-0.036751645022886845,-0.06738444857616925,0.0012397250340430777]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-karman-20260718-karman_re400__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-18T11:53:19.354204+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"6a7ef7a9c899e2abbc2231905eb8beceaf67b7c23b975a5a0934ab1df1798ab9"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.8825860738754272,"1":0.9030919977929444,"2":0.5968757390975952,"3":0.5579024016857147,"4":0.8755418141682942,"5":0.8800828016673525},"similarity":0.7826801380478882},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-karman-20260718","created_at":"2026-07-18T11:53:19.354174+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"04a1b571019ce614c1467718bc8495b9053012c056b238a6c9ce95bbf187b7b9","run_id":"article-L3-karman-20260718","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz","sha256":"3c908f98ced3a2c7aa6a55c76686edf3badf7da3051014fc608d2022cf347898","telemetry_hash":"3c908f98ced3a2c7aa6a55c76686edf3badf7da3051014fc608d2022cf347898"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..1ddb026 --- /dev/null +++ b/src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.6935671719520418,-2.4021783032021045,4.460239057819128],"min":[-1.3753334235925858,-4.431356652221141,2.431060708800091]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.01693567171952042,-0.024021783032021043,0.04460239057819128],"min":[-0.013753334235925858,-0.04431356652221141,0.02431060708800091]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-L3-karman-20260718-karman_re50__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-18T11:45:26.254606+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"6c125b931b206d1e74cb232a2d65baeb1919b50fe19c4bea499adad3677939c6"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":4,"per_channel":{"0":0.9457357048988342,"1":0.9668876960097502,"2":0.9563833932081859,"3":0.9367514126623671,"4":0.9596255481243133,"5":0.9602047061251748},"similarity":0.9542647435047709},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article-L3-karman-20260718","created_at":"2026-07-18T11:45:26.254585+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"29353ef78a26df8fb7cfa183242f627ce73fe5d434b4db6cc59f403173537966","run_id":"article-L3-karman-20260718","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz","sha256":"f28df2c80fd5688218e97ccbc7d6a9f69d08cf2e866439af64075a99656e5adc","telemetry_hash":"f28df2c80fd5688218e97ccbc7d6a9f69d08cf2e866439af64075a99656e5adc"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_0p75L__pysr__f-028cce8471d1__si-400.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_0p75L__pysr__f-028cce8471d1__si-400.json new file mode 100644 index 0000000..85c235e --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_0p75L__pysr__f-028cce8471d1__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.11589530564571549,-0.020259954860003558,-0.020259954860003558],"min":[-0.0527018013377267,-0.4248283064548987,-0.4248283064548987]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0011589530564571548,-0.00020259954860003557,-0.00020259954860003557],"min":[-0.000527018013377267,-0.004248283064548987,-0.004248283064548987]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front0-20260718-illusion_0p75L__pysr__f-028cce8471d1__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T12:37:03.358091+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"db066eb75170299cad529a38e98d6ae4ce29274caf4332a547be986db3270790"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","formula_hashes":{"front_deployment_expression":"5d2b112b8b52007a68ee96f29808ef56560e71547cac3c1f5409c2f5d48d62f7","front_source":"a1f75aa337ca04e0fb0324f06348bae2d058614b8121cb8f82fbd76d6b1c9af5","pair":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":11,"per_channel":{"0":0.9568884256813261,"1":0.9238094933744934,"2":0.9455921600262324,"3":0.8666782427786125,"4":0.9708618770043055,"5":0.9724193947768072},"similarity":0.9393749322736294},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front0-20260718","created_at":"2026-07-18T12:37:03.358060+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"fdd9910fdef66f370398634c2f1a88c6f486acd0c1f5652b19a5bfa012da2ea3","run_id":"article-ablation-L2-i_front0-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_0p75L__pysr__f-028cce8471d1__si-400.npz","sha256":"1fd3f65f81415fcf0b06386fedca01ac70cfcff02cf7b7a5b1936590b7665f85","telemetry_hash":"1fd3f65f81415fcf0b06386fedca01ac70cfcff02cf7b7a5b1936590b7665f85"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1L__pysr__f-028cce8471d1__si-600.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1L__pysr__f-028cce8471d1__si-600.json new file mode 100644 index 0000000..e49149d --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1L__pysr__f-028cce8471d1__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.09059735647574871,0.292911281278432,0.292911281278432],"min":[-0.13094937847789007,-0.20551777001088206,-0.20551777001088206]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0009059735647574871,0.00292911281278432,0.00292911281278432],"min":[-0.0013094937847789006,-0.002055177700108821,-0.002055177700108821]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front0-20260718-illusion_1L__pysr__f-028cce8471d1__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T12:39:12.075771+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"727268f344f5cd9b412b6a084cccca9cb8f6339e8cb33b43dfade0fae545ee9d"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","formula_hashes":{"front_deployment_expression":"5d2b112b8b52007a68ee96f29808ef56560e71547cac3c1f5409c2f5d48d62f7","front_source":"a1f75aa337ca04e0fb0324f06348bae2d058614b8121cb8f82fbd76d6b1c9af5","pair":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.9665456497006946,"1":0.944839437543932,"2":0.8883379068639543,"3":0.90095640858797,"4":0.9600556840499243,"5":0.940153369479554},"similarity":0.9334814093710048},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front0-20260718","created_at":"2026-07-18T12:39:12.075733+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"c51ed28bb5908ac4a594b5ce3c7d2b26fc3f711d55c7d3c2770c8854c9bdd1f4","run_id":"article-ablation-L2-i_front0-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_1L__pysr__f-028cce8471d1__si-600.npz","sha256":"fe591c8181fe680547bc0c1fb55d57c8bb83b5a9aebe25e351e21d08dac33bf8","telemetry_hash":"fe591c8181fe680547bc0c1fb55d57c8bb83b5a9aebe25e351e21d08dac33bf8"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1p5L__pysr__f-028cce8471d1__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1p5L__pysr__f-028cce8471d1__si-800.json new file mode 100644 index 0000000..6d88d55 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1p5L__pysr__f-028cce8471d1__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.17331383054530333,0.16544247046180463,0.16544247046180463],"min":[-0.17000882953576169,-0.49307443531872586,-0.49307443531872586]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0017331383054530333,0.0016544247046180462,0.0016544247046180462],"min":[-0.0017000882953576168,-0.004930744353187259,-0.004930744353187259]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front0-20260718-illusion_1p5L__pysr__f-028cce8471d1__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T12:41:27.619422+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"89a3d5452bd89a1a486d150c1ad1e1d51c2b5aa5f4853d5c10319c78cb04b10a"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","formula_hashes":{"front_deployment_expression":"5d2b112b8b52007a68ee96f29808ef56560e71547cac3c1f5409c2f5d48d62f7","front_source":"a1f75aa337ca04e0fb0324f06348bae2d058614b8121cb8f82fbd76d6b1c9af5","pair":"028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.8829544542564286,"1":0.9043059252803182,"2":0.9185581770208147,"3":0.8397065458508829,"4":0.8963926749096977,"5":0.8685903923016869},"similarity":0.8850846949366383},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front0-20260718","created_at":"2026-07-18T12:41:27.619388+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"eed6761e1889ef387de56f962d581ffa32461c01283e6d680ee3f91b83875d3e","run_id":"article-ablation-L2-i_front0-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_1p5L__pysr__f-028cce8471d1__si-800.npz","sha256":"98bfd351de391f80b69d480236e9b05a7263027390d04c421aeb604cac86af0c","telemetry_hash":"98bfd351de391f80b69d480236e9b05a7263027390d04c421aeb604cac86af0c"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_0p75L__pysr__f-278b1137701d__si-400.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_0p75L__pysr__f-278b1137701d__si-400.json new file mode 100644 index 0000000..def3081 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_0p75L__pysr__f-278b1137701d__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.30817620310092547,0.8106932781901943,0.8106932781901943],"min":[-0.5674655989777897,-0.99423503824117,-0.99423503824117]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0030817620310092547,0.008106932781901943,0.008106932781901943],"min":[-0.0056746559897778975,-0.0099423503824117,-0.0099423503824117]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front1-20260718-illusion_0p75L__pysr__f-278b1137701d__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T12:43:32.019947+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"16e4943506ef72f6607a662ccc0849dc740651ca9f38463dbf0ba8e231edd555"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","formula_hashes":{"front_deployment_expression":"c3e96313241ad74d73bb0573fb43327198540d90d534361a5ff4cb061282ffcf","front_source":"7029151a22c40a4e846ebf1b7614112ad5c670a8181347965eb282d85c3b8924","pair":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":15,"per_channel":{"0":0.9578075624174542,"1":0.9775036726819558,"2":0.9411989798148473,"3":0.9697771366271708,"4":0.9364889545573128,"5":0.9776285456545237},"similarity":0.9600674752922108},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front1-20260718","created_at":"2026-07-18T12:43:32.019917+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"eb25d4f5ab765431ad7e18e0def65e90fa9a26a08d90edc8e2b10a9ae9c1105e","run_id":"article-ablation-L2-i_front1-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_0p75L__pysr__f-278b1137701d__si-400.npz","sha256":"fe408ad495d54ac9e2c3ca61d1a6ef7a013cce1ffba6eb1208baf69d5633c610","telemetry_hash":"fe408ad495d54ac9e2c3ca61d1a6ef7a013cce1ffba6eb1208baf69d5633c610"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1L__pysr__f-278b1137701d__si-600.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1L__pysr__f-278b1137701d__si-600.json new file mode 100644 index 0000000..b3f155d --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1L__pysr__f-278b1137701d__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.7010384224969979,2.1899505011174716,2.1899505011174716],"min":[-2.5136012964596905,-2.7482266111112756,-2.7482266111112756]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.01701038422496998,0.021899505011174717,0.021899505011174717],"min":[-0.025136012964596905,-0.027482266111112756,-0.027482266111112756]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front1-20260718-illusion_1L__pysr__f-278b1137701d__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T12:45:41.812292+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"8214047fff3ebc3d6e58f40799a648a785a0221f0e1321c3268a6754d9b2f4fd"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","formula_hashes":{"front_deployment_expression":"c3e96313241ad74d73bb0573fb43327198540d90d534361a5ff4cb061282ffcf","front_source":"7029151a22c40a4e846ebf1b7614112ad5c670a8181347965eb282d85c3b8924","pair":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":5,"per_channel":{"0":0.9534095724423727,"1":0.9087295572583874,"2":0.9665000554588106,"3":0.869433000166383,"4":0.9362858285506567,"5":0.9278491968030317},"similarity":0.9270345351132736},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front1-20260718","created_at":"2026-07-18T12:45:41.812257+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"efa5fa745fda797d5066af67c95b095ac8fe3fc61236a9b169d05804ecb52ff3","run_id":"article-ablation-L2-i_front1-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_1L__pysr__f-278b1137701d__si-600.npz","sha256":"0e85a6dd127adb66d771f383998be6e5d06b357f56ca783c213e9f8d90e6f8a0","telemetry_hash":"0e85a6dd127adb66d771f383998be6e5d06b357f56ca783c213e9f8d90e6f8a0"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1p5L__pysr__f-278b1137701d__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1p5L__pysr__f-278b1137701d__si-800.json new file mode 100644 index 0000000..7d707f3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1p5L__pysr__f-278b1137701d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[7.1451362644528915,2.0558744177882997,2.0558744177882997],"min":[-2.6507698960097232,-4.24663199489875,-4.24663199489875]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.07145136264452892,0.020558744177882997,0.020558744177882997],"min":[-0.026507698960097234,-0.0424663199489875,-0.0424663199489875]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_front1-20260718-illusion_1p5L__pysr__f-278b1137701d__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T12:47:58.303813+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"626594a830d20c16990807e6f02f532de8c36f21b496fb37539aa2c6dd7f6634"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","formula_hashes":{"front_deployment_expression":"c3e96313241ad74d73bb0573fb43327198540d90d534361a5ff4cb061282ffcf","front_source":"7029151a22c40a4e846ebf1b7614112ad5c670a8181347965eb282d85c3b8924","pair":"278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":9,"per_channel":{"0":0.8854793020420604,"1":0.8453607961742414,"2":0.8987970021035936,"3":0.7395097280128134,"4":0.8836076143715117,"5":0.7666244040657249},"similarity":0.8365631411283242},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-i_front1-20260718","created_at":"2026-07-18T12:47:58.303785+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"cb83f95f7a8b5daeeed44eda52b94f4e367d853602a28fa0d8f40760b213ee4b","run_id":"article-ablation-L2-i_front1-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_1p5L__pysr__f-278b1137701d__si-800.npz","sha256":"35cc6c160d4cf5ac51db61614b508e493e1f06672ca09d2923f889d54456062f","telemetry_hash":"35cc6c160d4cf5ac51db61614b508e493e1f06672ca09d2923f889d54456062f"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.json new file mode 100644 index 0000000..fa66fc6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0393100277869632,0.08893319604877525,0.08893319604877525],"min":[-0.04449743872253431,-0.0734707438535183,-0.0734707438535183]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.000393100277869632,0.0008893319604877525,0.0008893319604877525],"min":[-0.0004449743872253431,-0.000734707438535183,-0.000734707438535183]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear0-20260718-illusion_0p75L__pysr__f-56d7d5018cb0__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T12:50:03.015084+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"2a04911d8ccea73a614badec5d97b173c78532234950029246118216c83d97d6"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","rear_deployment_expression":"6a7e110eab02240f6bdda9f23e421516d58e0bd0a91cb9353ec76debf140b619","rear_source":"4218dc47f7efbee1e0c917c83546ab0de7f2853065acba8fa55ac12ad98e8120"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":10,"per_channel":{"0":0.9290310276879205,"1":0.9747209231265717,"2":0.9275765601131651,"3":0.9650096133506546,"4":0.9524878097905053,"5":0.978099466434085},"similarity":0.9544875667504836},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear0-20260718","created_at":"2026-07-18T12:50:03.015066+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"cbd119e6ebe57a183378648a7473270cb801073fb35288808380f7c4520dfde6","run_id":"article-ablation-L2-i_rear0-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.npz","sha256":"69f805ad3146536deafab3557b5cc4b1f4b9a6072ffe60dee24cac81e8e728d7","telemetry_hash":"69f805ad3146536deafab3557b5cc4b1f4b9a6072ffe60dee24cac81e8e728d7"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1L__pysr__f-56d7d5018cb0__si-600.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1L__pysr__f-56d7d5018cb0__si-600.json new file mode 100644 index 0000000..78139d2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1L__pysr__f-56d7d5018cb0__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.06972673543429,0.13839121136964672,0.13839121136964672],"min":[-0.07811900139537702,-0.09952240633015838,-0.09952240633015838]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0006972673543429001,0.0013839121136964671,0.0013839121136964671],"min":[-0.0007811900139537702,-0.0009952240633015839,-0.0009952240633015839]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear0-20260718-illusion_1L__pysr__f-56d7d5018cb0__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T12:52:12.906639+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"690b06c6212dc4b38e7feb0e13a12747ec8c2372d96d7ced4555417b50fafcbc"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","rear_deployment_expression":"6a7e110eab02240f6bdda9f23e421516d58e0bd0a91cb9353ec76debf140b619","rear_source":"4218dc47f7efbee1e0c917c83546ab0de7f2853065acba8fa55ac12ad98e8120"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":2,"per_channel":{"0":0.9627078473567963,"1":0.9285070540176498,"2":0.9250590884023242,"3":0.8916143405561646,"4":0.9720334559679031,"5":0.9411830572514899},"similarity":0.9368508072587213},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear0-20260718","created_at":"2026-07-18T12:52:12.906600+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"e9bc6f5e4aef568a31096c2d0bdc17e14e4d7938aa763505290ca0ace288ad5e","run_id":"article-ablation-L2-i_rear0-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_1L__pysr__f-56d7d5018cb0__si-600.npz","sha256":"0f0eabcb6244554039e7a82ae25c68b478d5968de187d275a4319d528dab2483","telemetry_hash":"0f0eabcb6244554039e7a82ae25c68b478d5968de187d275a4319d528dab2483"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.json new file mode 100644 index 0000000..2258ff4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.1359172427903776,0.13403300910428423,0.13403300910428423],"min":[-0.10217121743948697,-0.1606600941914222,-0.1606600941914222]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0013591724279037759,0.0013403300910428424,0.0013403300910428424],"min":[-0.0010217121743948698,-0.0016066009419142219,-0.0016066009419142219]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear0-20260718-illusion_1p5L__pysr__f-56d7d5018cb0__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T12:54:28.479314+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"b9e1365f8dd7881a8e13fbbae30a211cc166f41a3e08cde68db1e16c2ba687b1"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a","rear_deployment_expression":"6a7e110eab02240f6bdda9f23e421516d58e0bd0a91cb9353ec76debf140b619","rear_source":"4218dc47f7efbee1e0c917c83546ab0de7f2853065acba8fa55ac12ad98e8120"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-19,"per_channel":{"0":0.8788606019483672,"1":0.8648237820404271,"2":0.9297672477033403,"3":0.8540923096653488,"4":0.8851698877082931,"5":0.9129043929796252},"similarity":0.8876030370075668},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear0-20260718","created_at":"2026-07-18T12:54:28.479296+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"4fcdbff83ab2869afd49dab0694cb055a2aab62238ba1039e51e0b70bc44fc82","run_id":"article-ablation-L2-i_rear0-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.npz","sha256":"b9146dc9796da8e56328c54be91456d13b5bcbb194f256085a8c27518871ae61","telemetry_hash":"b9146dc9796da8e56328c54be91456d13b5bcbb194f256085a8c27518871ae61"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_0p75L__pysr__f-620e339914f7__si-400.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_0p75L__pysr__f-620e339914f7__si-400.json new file mode 100644 index 0000000..88424bd --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_0p75L__pysr__f-620e339914f7__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.14034192414317798,-0.021929203093504608,-0.021929203093504608],"min":[-0.04419979214050846,-0.36053556253460833,-0.36053556253460833]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0014034192414317799,-0.00021929203093504608,-0.00021929203093504608],"min":[-0.0004419979214050846,-0.0036053556253460833,-0.0036053556253460833]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear1-20260718-illusion_0p75L__pysr__f-620e339914f7__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-18T12:56:32.765368+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"d2dc399070b6303a00d17dba00127468a5cbbd41ae78ea68562a77a45830df49"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","rear_deployment_expression":"9f0f926964e0a261244bc01d3442b724315afb394f9089c38bbd97ef6f7bb37b","rear_source":"1e9d4a615e578b27bed7222937d84a5c71d55173bb5e4cd08316eb4f6c740435"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":6,"per_channel":{"0":0.9253541380167007,"1":0.9768045194602261,"2":0.9244664940569136,"3":0.969719537275119,"4":0.9538280020157496,"5":0.9776712069287896},"similarity":0.9546406496255831},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear1-20260718","created_at":"2026-07-18T12:56:32.765328+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"96352506b78f6b1949b3a0890be44092c5182a0c0a083f3f7b498d5130c89c87","run_id":"article-ablation-L2-i_rear1-20260718","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_0p75L__pysr__f-620e339914f7__si-400.npz","sha256":"60ce407f3a67d82878108b878ca2d9b1741bbb41d9de5cb69c9397cb552ed90f","telemetry_hash":"60ce407f3a67d82878108b878ca2d9b1741bbb41d9de5cb69c9397cb552ed90f"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1L__pysr__f-620e339914f7__si-600.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1L__pysr__f-620e339914f7__si-600.json new file mode 100644 index 0000000..3c8ea35 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1L__pysr__f-620e339914f7__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.13414381421973345,0.3519214833428403,0.3519214833428403],"min":[-0.14301830543159705,-0.11744265817816128,-0.11744265817816128]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0013414381421973346,0.003519214833428403,0.003519214833428403],"min":[-0.0014301830543159706,-0.0011744265817816128,-0.0011744265817816128]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear1-20260718-illusion_1L__pysr__f-620e339914f7__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-18T12:58:41.471648+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"86364adfa1ad237ebb7aa8ed29d93122f06237723e7765222fb02bbbfe4e078a"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","rear_deployment_expression":"9f0f926964e0a261244bc01d3442b724315afb394f9089c38bbd97ef6f7bb37b","rear_source":"1e9d4a615e578b27bed7222937d84a5c71d55173bb5e4cd08316eb4f6c740435"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-16,"per_channel":{"0":0.9622624996635649,"1":0.9487610896596581,"2":0.876058409611384,"3":0.9016962272839414,"4":0.966166208187739,"5":0.927782178339031},"similarity":0.9304544354575531},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear1-20260718","created_at":"2026-07-18T12:58:41.471611+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"432c0acb2ed27f7e4c5c29a6af5035f771d64e71f6e78ca81bd1299901a127ce","run_id":"article-ablation-L2-i_rear1-20260718","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_1L__pysr__f-620e339914f7__si-600.npz","sha256":"6186846b8edbf4943796a58e4686563450a8bc53152cf82d17bf764ba90946ad","telemetry_hash":"6186846b8edbf4943796a58e4686563450a8bc53152cf82d17bf764ba90946ad"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1p5L__pysr__f-620e339914f7__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1p5L__pysr__f-620e339914f7__si-800.json new file mode 100644 index 0000000..6f28b01 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1p5L__pysr__f-620e339914f7__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.143447020652757,0.3017953582931943,0.3017953582931943],"min":[-0.21948901434262028,-0.16446077216757599,-0.16446077216757599]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.00143447020652757,0.003017953582931943,0.003017953582931943],"min":[-0.002194890143426203,-0.00164460772167576,-0.00164460772167576]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-i_rear1-20260718-illusion_1p5L__pysr__f-620e339914f7__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-18T13:00:57.634933+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"789a3f7aeb211ea9e03c4c6b02774dc7cc202f5f70db39b36fb65c0aaed6b166"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6","rear_deployment_expression":"9f0f926964e0a261244bc01d3442b724315afb394f9089c38bbd97ef6f7bb37b","rear_source":"1e9d4a615e578b27bed7222937d84a5c71d55173bb5e4cd08316eb4f6c740435"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-4,"per_channel":{"0":0.8745060430632697,"1":0.8636023045207063,"2":0.9040154036548402,"3":0.7843390609551635,"4":0.8977711515294181,"5":0.7806609074274699},"similarity":0.850815811858478},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-i_rear1-20260718","created_at":"2026-07-18T13:00:57.634890+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"ced430f1901a0b906fa97e190896b33df8e4363f46e0a56c5f66558b9b872826","run_id":"article-ablation-L2-i_rear1-20260718","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_1p5L__pysr__f-620e339914f7__si-800.npz","sha256":"6a64754ccae8d15a766ecbfe35e54b527bee6026af6950b5f0fbe88be516dfb0","telemetry_hash":"6a64754ccae8d15a766ecbfe35e54b527bee6026af6950b5f0fbe88be516dfb0"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re100__pysr__f-8b5536a5b124__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re100__pysr__f-8b5536a5b124__si-800.json new file mode 100644 index 0000000..57a34ae --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re100__pysr__f-8b5536a5b124__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-1.9291556622564743,4.933261698764758],"min":[0.0,-4.950045736635069,1.9123716243861635]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.019291556622564744,0.04933261698764758],"min":[0.0,-0.04950045736635069,0.019123716243861635]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_front0-20260718-karman_re100__pysr__f-8b5536a5b124__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-18T12:10:53.304793+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"5c0c15c507b4d7fd75b9ab3507d92a955ba32d20647a1dd26fc7c40f2e3dd0f5"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","formula_hashes":{"front_deployment_expression":"5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9","front_source":"1f64ba2ad3d62b1f419be730dce79ac5e2a7c7973e796e9e2c8356ec77183ffd","pair":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-5,"per_channel":{"0":0.9387358208497365,"1":0.9461646167639022,"2":0.8023134430249532,"3":0.8957718860978882,"4":0.936514538526535,"5":0.9535934302334984},"similarity":0.912182289249419},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-k_front0-20260718","created_at":"2026-07-18T12:10:53.304755+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"2b509eec43ae804e91d9e9dba91c6f8b47389bf2da0cbab3cab43389a3bf926c","run_id":"article-ablation-L2-k_front0-20260718","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re100__pysr__f-8b5536a5b124__si-800.npz","sha256":"d4fb7998cd2531ae71bc9073dfcb436ef879b13456fe2709d63d1c1590f0edbf","telemetry_hash":"d4fb7998cd2531ae71bc9073dfcb436ef879b13456fe2709d63d1c1590f0edbf"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re200__pysr__f-8b5536a5b124__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re200__pysr__f-8b5536a5b124__si-800.json new file mode 100644 index 0000000..5da576a --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re200__pysr__f-8b5536a5b124__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-1.5406690450753369,5.321748315945896],"min":[0.0,-5.5145382857711,1.3478790752501322]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.01540669045075337,0.053217483159458956],"min":[0.0,-0.055145382857711,0.013478790752501323]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_front0-20260718-karman_re200__pysr__f-8b5536a5b124__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-18T12:13:17.424789+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"ae6d9d342b028d6db0c42e354ef5dc180065f549f16ea7120a94c396de1137d1"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","formula_hashes":{"front_deployment_expression":"5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9","front_source":"1f64ba2ad3d62b1f419be730dce79ac5e2a7c7973e796e9e2c8356ec77183ffd","pair":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":2,"per_channel":{"0":0.918447091182073,"1":0.9358566281075279,"2":0.7494440933068593,"3":0.8236464420023064,"4":0.9066294213136037,"5":0.9545807862925965},"similarity":0.8814340770341612},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-k_front0-20260718","created_at":"2026-07-18T12:13:17.424748+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"4efa097fab393a2f9b53b825af9721aea9fabc4adf666cccd7f8e725b509af1c","run_id":"article-ablation-L2-k_front0-20260718","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re200__pysr__f-8b5536a5b124__si-800.npz","sha256":"5b296551d825f47730a3887de2cc7cd6793ba98e78363f043ec36b78ec36a2cd","telemetry_hash":"5b296551d825f47730a3887de2cc7cd6793ba98e78363f043ec36b78ec36a2cd"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re400__pysr__f-8b5536a5b124__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re400__pysr__f-8b5536a5b124__si-800.json new file mode 100644 index 0000000..a5670b8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re400__pysr__f-8b5536a5b124__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-0.679742431768918,6.182674929252315],"min":[0.0,-5.957691054616319,0.9047263064049136]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.00679742431768918,0.061826749292523145],"min":[0.0,-0.059576910546163195,0.009047263064049136]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_front0-20260718-karman_re400__pysr__f-8b5536a5b124__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-18T12:15:41.781054+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"5762344e76d2e8b0f00bb39d684cdcf2de960cd6ff2110d4d2d560a68151154c"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","formula_hashes":{"front_deployment_expression":"5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9","front_source":"1f64ba2ad3d62b1f419be730dce79ac5e2a7c7973e796e9e2c8356ec77183ffd","pair":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.872294835249583,"1":0.9274473261864236,"2":0.6066410680611929,"3":0.6621373971613744,"4":0.8801437517007192,"5":0.9310709147558858},"similarity":0.8132892155191964},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-k_front0-20260718","created_at":"2026-07-18T12:15:41.781017+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"f5479b9be1d00f57f32108b9682409b074f95c0fa85012e1c991e2b094ce32f8","run_id":"article-ablation-L2-k_front0-20260718","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re400__pysr__f-8b5536a5b124__si-800.npz","sha256":"57de28dfab9b28fe574b404414108372488e8fd51c18a0ddbb0ec543be84f8bc","telemetry_hash":"57de28dfab9b28fe574b404414108372488e8fd51c18a0ddbb0ec543be84f8bc"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re50__pysr__f-8b5536a5b124__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re50__pysr__f-8b5536a5b124__si-800.json new file mode 100644 index 0000000..b0aea4f --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re50__pysr__f-8b5536a5b124__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-2.8798200828593554,3.982597278161877],"min":[0.0,-3.974754333839887,2.8876630271813446]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.028798200828593554,0.03982597278161877],"min":[0.0,-0.039747543338398875,0.028876630271813447]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_front0-20260718-karman_re50__pysr__f-8b5536a5b124__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-18T12:08:29.291424+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"a0e74dfcbfc7b31bd50f6a1d5490fa753553a80a89987dd46ee02233bf52e577"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","formula_hashes":{"front_deployment_expression":"5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9","front_source":"1f64ba2ad3d62b1f419be730dce79ac5e2a7c7973e796e9e2c8356ec77183ffd","pair":"8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":0,"per_channel":{"0":0.9515972554683685,"1":0.956623067210118,"2":0.9113735616207123,"3":0.9168378410240015,"4":0.939357743660609,"5":0.9603768208685021},"similarity":0.9393610483087186},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 40 --run-id article-ablation-L2-k_front0-20260718","created_at":"2026-07-18T12:08:29.291394+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"941f4150e7e780eb751fe1a3f755b4c3e607f271d23743c80a1d78fa7e7ca8c1","run_id":"article-ablation-L2-k_front0-20260718","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re50__pysr__f-8b5536a5b124__si-800.npz","sha256":"051650aecb4e001b312b1cdc89f1f1e2360391edb1224726fb104521d9891909","telemetry_hash":"051650aecb4e001b312b1cdc89f1f1e2360391edb1224726fb104521d9891909"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re100__pysr__f-888dfc90293c__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re100__pysr__f-888dfc90293c__si-800.json new file mode 100644 index 0000000..9eba835 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re100__pysr__f-888dfc90293c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.1280585724687344,-3.431208680510616,3.431208680510616],"min":[-2.690050277747966,-3.431208680510616,3.431208680510616]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.021280585724687346,-0.03431208680510616,0.03431208680510616],"min":[-0.026900502777479657,-0.03431208680510616,0.03431208680510616]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear0-20260718-karman_re100__pysr__f-888dfc90293c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-18T12:20:31.961412+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"db48156d6ef73fac5e4076ea9f5375c8219bac1cac1b6677ac42041fe2bed90d"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","rear_deployment_expression":"911b278bd18430966f3d96f188779a1db851476c366ecc9efdc3fb4f904c0adb","rear_source":"6d396bccd95410ec46d29f47a23028187e7b59292ee19731458c5b86b42f1ee3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":12,"per_channel":{"0":0.9016213198502858,"1":0.900708321807906,"2":0.8249286353588104,"3":0.7978617196747413,"4":0.8890358507633209,"5":0.9055042253962408},"similarity":0.8699433454752175},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear0-20260718","created_at":"2026-07-18T12:20:31.961377+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"2fb0ec073cf151b2bee83cefd448e1d3279ea57fbbfdb5db03c81824035a3450","run_id":"article-ablation-L2-k_rear0-20260718","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re100__pysr__f-888dfc90293c__si-800.npz","sha256":"08833ad6e8c6ba97db64879c186947ea618441a132c2f330271c1b57779bae16","telemetry_hash":"08833ad6e8c6ba97db64879c186947ea618441a132c2f330271c1b57779bae16"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re200__pysr__f-888dfc90293c__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re200__pysr__f-888dfc90293c__si-800.json new file mode 100644 index 0000000..ee74f0d --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re200__pysr__f-888dfc90293c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.845615123007189,-3.431208680510616,3.431208680510616],"min":[-3.885896817531909,-3.431208680510616,3.431208680510616]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02845615123007189,-0.03431208680510616,0.03431208680510616],"min":[-0.03885896817531909,-0.03431208680510616,0.03431208680510616]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear0-20260718-karman_re200__pysr__f-888dfc90293c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-18T12:22:56.480312+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"ff925ebebe577eaa2be1acf89eec7350300f98359c3d66b347353700c938e89f"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","rear_deployment_expression":"911b278bd18430966f3d96f188779a1db851476c366ecc9efdc3fb4f904c0adb","rear_source":"6d396bccd95410ec46d29f47a23028187e7b59292ee19731458c5b86b42f1ee3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":2,"per_channel":{"0":0.873462587594986,"1":0.8565255843102932,"2":0.8250199814637502,"3":0.7022966179996729,"4":0.8619844178358713,"5":0.8322119706873006},"similarity":0.8252501933153124},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear0-20260718","created_at":"2026-07-18T12:22:56.480272+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"b91168ec5abc93a102895b57c9a39da6fb4e50e00290437dffb8adeac2973b73","run_id":"article-ablation-L2-k_rear0-20260718","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re200__pysr__f-888dfc90293c__si-800.npz","sha256":"bc62140c51d947b62f03ac1bf6139d68b83a12d9c5ae8fd1752c0130fa3b56ac","telemetry_hash":"bc62140c51d947b62f03ac1bf6139d68b83a12d9c5ae8fd1752c0130fa3b56ac"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re400__pysr__f-888dfc90293c__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re400__pysr__f-888dfc90293c__si-800.json new file mode 100644 index 0000000..6b8bca0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re400__pysr__f-888dfc90293c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.6817662207188544,-3.431208680510616,3.431208680510616],"min":[-2.22305977286011,-3.431208680510616,3.431208680510616]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.036817662207188545,-0.03431208680510616,0.03431208680510616],"min":[-0.022230597728601097,-0.03431208680510616,0.03431208680510616]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear0-20260718-karman_re400__pysr__f-888dfc90293c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-18T12:25:20.511423+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"c3e2ef752c9d4449c3fdeeaa8c3a5797aaab4ab892b5c26f132230d98a9e54c7"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","rear_deployment_expression":"911b278bd18430966f3d96f188779a1db851476c366ecc9efdc3fb4f904c0adb","rear_source":"6d396bccd95410ec46d29f47a23028187e7b59292ee19731458c5b86b42f1ee3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":4,"per_channel":{"0":0.8309973001480102,"1":0.9050553360022604,"2":0.7512357413768769,"3":0.5395516683347523,"4":0.8072951356569926,"5":0.9030727255584983},"similarity":0.7895346511795651},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear0-20260718","created_at":"2026-07-18T12:25:20.511388+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"6506c58ff220a8e63093012c7ab99b4b811067e772e293542bcde11f9278bb74","run_id":"article-ablation-L2-k_rear0-20260718","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re400__pysr__f-888dfc90293c__si-800.npz","sha256":"2722e2aad998434cfc07d37eb09269674d5ca51e35ec3e2076a047451361a268","telemetry_hash":"2722e2aad998434cfc07d37eb09269674d5ca51e35ec3e2076a047451361a268"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re50__pysr__f-888dfc90293c__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re50__pysr__f-888dfc90293c__si-800.json new file mode 100644 index 0000000..abb5b56 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re50__pysr__f-888dfc90293c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.3288032400374337,-3.431208680510616,3.431208680510616],"min":[-1.5543080668335372,-3.431208680510616,3.431208680510616]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.023288032400374338,-0.03431208680510616,0.03431208680510616],"min":[-0.015543080668335372,-0.03431208680510616,0.03431208680510616]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear0-20260718-karman_re50__pysr__f-888dfc90293c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-18T12:18:07.636360+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"0269c46a511ed2116613fa13132b094a8750cd3fee7849b6c853b682964848a9"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257","rear_deployment_expression":"911b278bd18430966f3d96f188779a1db851476c366ecc9efdc3fb4f904c0adb","rear_source":"6d396bccd95410ec46d29f47a23028187e7b59292ee19731458c5b86b42f1ee3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-1,"per_channel":{"0":0.9289728005727133,"1":0.9421259949333034,"2":0.8610146919886271,"3":0.8874717075998584,"4":0.95934299826622,"5":0.9238297692500055},"similarity":0.917126327101788},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear0-20260718","created_at":"2026-07-18T12:18:07.636327+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"40e363a02d8834f663daf3c75685f3c2ee2610b041855977c8c402e8da79261f","run_id":"article-ablation-L2-k_rear0-20260718","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re50__pysr__f-888dfc90293c__si-800.npz","sha256":"271bd1efebe98d0a5fd8cc2d0b77f73cf5cf1516d7dd187375837c3445299246","telemetry_hash":"271bd1efebe98d0a5fd8cc2d0b77f73cf5cf1516d7dd187375837c3445299246"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re100__pysr__f-67ae1e890bc1__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re100__pysr__f-67ae1e890bc1__si-800.json new file mode 100644 index 0000000..2158ca4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re100__pysr__f-67ae1e890bc1__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.0932289666537343,1.0975159883170786,1.0975159883170786],"min":[-0.1976521100458499,-1.589453928066951,-1.589453928066951]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.020932289666537342,0.010975159883170786,0.010975159883170786],"min":[-0.001976521100458499,-0.01589453928066951,-0.01589453928066951]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear1-20260718-karman_re100__pysr__f-67ae1e890bc1__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-18T12:30:10.406632+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"d6cd5a3cc2f76f0da2ab79906eeea851729443fadb3164d80b4491523ca85d95"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","rear_deployment_expression":"8b41c1ef07524348c067d1e35ecfee1b4257e92729fea6728be5f645110285b6","rear_source":"5297fdd3be51ce41083caf88c7b234b81ca020d567aaa59992a2bea351a1b7a1"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-10,"per_channel":{"0":0.9083760658899943,"1":0.8708966345759108,"2":0.47761470476786294,"3":0.8619284469634294,"4":0.8516557554403941,"5":0.935938379195674},"similarity":0.8177349978055443},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear1-20260718","created_at":"2026-07-18T12:30:10.406612+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"f01b8388712f1cefff41eaf4adb33e8dcbcd367af4a1f522b345614eb20d124e","run_id":"article-ablation-L2-k_rear1-20260718","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re100__pysr__f-67ae1e890bc1__si-800.npz","sha256":"bcf878e13d0662978f3e5e9308070885991087c7a37af61c3999216c3f7676b0","telemetry_hash":"bcf878e13d0662978f3e5e9308070885991087c7a37af61c3999216c3f7676b0"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re200__pysr__f-67ae1e890bc1__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re200__pysr__f-67ae1e890bc1__si-800.json new file mode 100644 index 0000000..7af2882 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re200__pysr__f-67ae1e890bc1__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.44678572913886355,1.7571124491170949,1.7571124491170949],"min":[-3.1869959112934545,-1.515859727009732,-1.515859727009732]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.004467857291388636,0.017571124491170948,0.017571124491170948],"min":[-0.03186995911293455,-0.01515859727009732,-0.01515859727009732]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear1-20260718-karman_re200__pysr__f-67ae1e890bc1__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-18T12:32:34.921920+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"be6f3265fe82efad6ffcb835f88eb337b6e4b56c63d3d858f9f00dfa28a56e03"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","rear_deployment_expression":"8b41c1ef07524348c067d1e35ecfee1b4257e92729fea6728be5f645110285b6","rear_source":"5297fdd3be51ce41083caf88c7b234b81ca020d567aaa59992a2bea351a1b7a1"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-6,"per_channel":{"0":0.8011639912923177,"1":0.7798799796029925,"2":0.34993312765533724,"3":0.6737252861261368,"4":0.8416845977306366,"5":0.802145602243642},"similarity":0.7080887641085104},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear1-20260718","created_at":"2026-07-18T12:32:34.921887+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"608fbcecfb278140cbfcfb4f0c99275d1ced329e58095e22319eeb3973f51a8b","run_id":"article-ablation-L2-k_rear1-20260718","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re200__pysr__f-67ae1e890bc1__si-800.npz","sha256":"0bf70c62de4115b15afb214b80b4890f5c8f17a3e0b462233fd3d1be5d1e5aea","telemetry_hash":"0bf70c62de4115b15afb214b80b4890f5c8f17a3e0b462233fd3d1be5d1e5aea"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re400__pysr__f-67ae1e890bc1__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re400__pysr__f-67ae1e890bc1__si-800.json new file mode 100644 index 0000000..03116e8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re400__pysr__f-67ae1e890bc1__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.7216133897981187,2.614154053140615,2.614154053140615],"min":[-1.2818720972905462,-2.7682408854315397,-2.7682408854315397]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02721613389798119,0.026141540531406153,0.026141540531406153],"min":[-0.012818720972905462,-0.0276824088543154,-0.0276824088543154]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear1-20260718-karman_re400__pysr__f-67ae1e890bc1__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-18T12:34:59.326620+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"3cda6c259b38ef1525f2fa50abd8ea72e938794e765f34f328531b990b45dd03"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","rear_deployment_expression":"8b41c1ef07524348c067d1e35ecfee1b4257e92729fea6728be5f645110285b6","rear_source":"5297fdd3be51ce41083caf88c7b234b81ca020d567aaa59992a2bea351a1b7a1"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-19,"per_channel":{"0":0.7510450800259908,"1":0.7991168874005476,"2":0.3485611192726841,"3":0.5647797482088208,"4":0.6888120899597804,"5":0.7320905187477669},"similarity":0.6474009072692651},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear1-20260718","created_at":"2026-07-18T12:34:59.326589+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"55af2f92ae0a7a7d0b3b346b6af859fcc86013dd75d157528941c47b7d1a719a","run_id":"article-ablation-L2-k_rear1-20260718","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re400__pysr__f-67ae1e890bc1__si-800.npz","sha256":"46f0eaf87b0d58538fe725e51ecea191c72970ff230b8c8bbeabcdfe3a5fb702","telemetry_hash":"46f0eaf87b0d58538fe725e51ecea191c72970ff230b8c8bbeabcdfe3a5fb702"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re50__pysr__f-67ae1e890bc1__si-800.json b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re50__pysr__f-67ae1e890bc1__si-800.json new file mode 100644 index 0000000..50462f4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re50__pysr__f-67ae1e890bc1__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.45036142315623773,1.1807954225151616,1.1807954225151616],"min":[-1.4072539984849404,-0.6912803039935159,-0.6912803039935159]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.004503614231562377,0.011807954225151615,0.011807954225151615],"min":[-0.014072539984849404,-0.00691280303993516,-0.00691280303993516]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article-ablation-L2-k_rear1-20260718-karman_re50__pysr__f-67ae1e890bc1__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-18T12:27:46.170024+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"8c66c9f1c20d8cda052776a52831f176d5688a002ba6f16dd4ffa364bc1fe165"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec","rear_deployment_expression":"8b41c1ef07524348c067d1e35ecfee1b4257e92729fea6728be5f645110285b6","rear_source":"5297fdd3be51ce41083caf88c7b234b81ca020d567aaa59992a2bea351a1b7a1"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-4,"per_channel":{"0":0.8144503355026245,"1":0.9467540740345916,"2":0.5850751648346584,"3":0.9059413614061972,"4":0.9074225266774496,"5":0.8764213264143715},"similarity":0.8393441314783155},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json --device 0 --steps 40 --run-id article-ablation-L2-k_rear1-20260718","created_at":"2026-07-18T12:27:46.169992+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"bd65a1dbbd4e2170d2ee280a067e1e4d6d4a89880532af231bcb0b1c62d819ca","run_id":"article-ablation-L2-k_rear1-20260718","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re50__pysr__f-67ae1e890bc1__si-800.npz","sha256":"140e98d3c18939aeefb03ec5cec9f8120ef9c47c8f0435e6cf6565d57d1052ee","telemetry_hash":"140e98d3c18939aeefb03ec5cec9f8120ef9c47c8f0435e6cf6565d57d1052ee"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json new file mode 100644 index 0000000..6162144 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"2.064492712013321*Cl_F","deployment_expression_hash":"5d2b112b8b52007a68ee96f29808ef56560e71547cac3c1f5409c2f5d48d62f7","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"eee0c503e5cddd8ec93e75057dced90575260c9fb99efb154a05c97920572fff","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.0,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json new file mode 100644 index 0000000..fe8ecd5 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__delete_t1.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a","deployment_expression_hash":"c3e96313241ad74d73bb0573fb43327198540d90d534361a5ff4cb061282ffcf","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"0dd94056a364105533e04effe5bd5ea90efdb729dee05eacb216bc16455ec083","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.0,"term_identity":"2.064492712013321*Cl_F","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p5.json new file mode 100644 index 0000000..18c98a8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.9133020945423844*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"1a1075612513a440fcc26fde1c94e6ef250f2ea457056f074a5fe5e5028edda9","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"ca8557722d26aaeb60a4f90d1b8213f52bdb393dceb59e79e51d018540e1784a","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.5,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p75.json new file mode 100644 index 0000000..7fd59bb --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.3699531418135766*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"5408f0aa510133ad2ae56ad30ee579cb5ef43f98f703ff22d8d378a8a775a902","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"7a9da5c7343ce6f752f59f637fa312607ef0c0f9c3062cc3972c90b845a475bd","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.75,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p0.json new file mode 100644 index 0000000..2cc581d --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"44cf19a59ea65381aa4431baf393178bf9d9d15556e865ead577abad9f9616c3","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"fd1b94c974452b60f590eaf695327e8193960962c8db267a1b86e6a59febe395","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.0,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p25.json new file mode 100644 index 0000000..b9ac029 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-2.283255236355961*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"e8b48f7379fe78a8f162a745d3a05f32ad5225aa72298a5d46bdd3036a40a652","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"3e9a5b07a213b688371417b408e0a00b3c1a6843c5854636badcb11a03defdc0","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.25,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p5.json new file mode 100644 index 0000000..a66b371 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-2.7399062836271532*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"5c5fcf5dafb20a3f0da6649fd524b467f0ee9cb2f1bd0b03d992d8e2a82ee8c8","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"339a50ca020127cb0337217a997651a1617ebe652a661c14e00c3a32f7b82f02","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.5,"term_identity":"-1.8266041890847688*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p5.json new file mode 100644 index 0000000..38fc3a8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 1.032246356006661*Cl_F","deployment_expression_hash":"49584c7ac886c232ceabcd8554f1f43acd0c972bd93bb8678e3d1099bae9ed15","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"ec16ff3b07fb89b4c351e2629f4f65ce9e5048589207b72e82a5e5fbb226e266","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.5,"term_identity":"2.064492712013321*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p75.json new file mode 100644 index 0000000..7162154 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 1.548369534009991*Cl_F","deployment_expression_hash":"4bf5c4e721a95a409aff507f6be330ce234c47da590f7c76b002f15282fad1d0","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"b3ea5bc01d808e93854caf31d805bd05ef291d0d7f801b38c3817e3da8394407","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.75,"term_identity":"2.064492712013321*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p0.json new file mode 100644 index 0000000..93bba27 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 2.064492712013321*Cl_F","deployment_expression_hash":"44cf19a59ea65381aa4431baf393178bf9d9d15556e865ead577abad9f9616c3","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"ee21321d55cfd635f2e9ee7e037599a48bbafa6fa334017f6a62a372fb689bf3","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.0,"term_identity":"2.064492712013321*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p25.json new file mode 100644 index 0000000..4dcb150 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 2.580615890016651*Cl_F","deployment_expression_hash":"9be1d895da4a6a6a975fb07aa6ac7248efc78f9bb6f1028934c1a7282eec9152","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"e5bc7b055f8f78f21a13e0f4d9a0f9a764eebc14767598668f62e6dfb0ae5176","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.25,"term_identity":"2.064492712013321*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p5.json new file mode 100644 index 0000000..affa84e --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688*Cd_rear_a + 3.096739068019982*Cl_F","deployment_expression_hash":"100694b01ad2c87a5fb40c777a5a11a1560569068276e61a54e15579002aeaeb","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","parent_source_hash":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"22fdb50a39a268aaa498394e25044b79a0fbc10abb01ca2c3875804f7ecc8cc4","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.5,"term_identity":"2.064492712013321*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json new file mode 100644 index 0000000..df87877 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"-1.5280742226055937*Cl_F","deployment_expression_hash":"6a7e110eab02240f6bdda9f23e421516d58e0bd0a91cb9353ec76debf140b619","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"0abf22277765811e36acfad990b9e866ef26201f8cb0d7d584a94b15f82cbe0d","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.0,"term_identity":"1.2544396437730243*Cd_rear_a","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json new file mode 100644 index 0000000..5152572 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__delete_t1.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a","deployment_expression_hash":"9f0f926964e0a261244bc01d3442b724315afb394f9089c38bbd97ef6f7bb37b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"34dcc71cc7cab52e4ed8bbb3ac03323405766faa705ab92ec32d57f392897dc9","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.0,"term_identity":"-1.5280742226055937*Cl_F","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p5.json new file mode 100644 index 0000000..59448b1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"0.62721982188651215*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"c6ef227d43e2367f7600a84e6269f8930553893dfe0b42e7976f696a55f6b0ee","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"01ac1a6d71fe57ea4622fd7f3405f271e31460cf492eaeb3a6840548f976119a","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.5,"term_identity":"1.2544396437730243*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p75.json new file mode 100644 index 0000000..a7390ff --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"0.94082973282976822*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"d348f2f60afdf9a8d3529637470f6daaeeaee8d97124e5f1d79682b9e6ce861b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"f14f5c181c8fdfb5353f459055eb506f538d390df2ae6254272130ccb3ca1ffa","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.75,"term_identity":"1.2544396437730243*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p0.json new file mode 100644 index 0000000..ab741b9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"0742a1aca1d5a4fe2d1aaa63bab567c29d6754875caead066f8a02be8642d924","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"66bbd0093e249fe60b0eeb55cebe172b0468f61f5a44ca8b4ed0407d4756fd1d","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.0,"term_identity":"1.2544396437730243*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p25.json new file mode 100644 index 0000000..3443c80 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.5680495547162804*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"812e5895727dc2bc656b5218b46ae52281691e1981a46a990e00766dbf163c38","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"b1f9fecacc3dd36766f397cb1996d1753205dc94ce159afa0c0435ee61bfd72e","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.25,"term_identity":"1.2544396437730243*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p5.json new file mode 100644 index 0000000..047acd6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.8816594656595364*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"3684fdbb6fd8360d93ab5fad1fae11707b15a8a24f63c2fcfa625c256b2923b3","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"bee0642dff9ce954b6051814c2f02df43b41b1381577f8419f5e5af148fada91","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.5,"term_identity":"1.2544396437730243*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p5.json new file mode 100644 index 0000000..186ee14 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 0.76403711130279685*Cl_F","deployment_expression_hash":"596c83048a88829b5602c88c41292e6f7e526b48bf4ffa04a2d277444af58be9","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"483e62692d372ae6c4ca27f2fb0a8d1cee6b82b8b1499473c0b4884e8768d485","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.5,"term_identity":"-1.5280742226055937*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p75.json new file mode 100644 index 0000000..58e7907 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 1.1460556669541953*Cl_F","deployment_expression_hash":"6e13d99b28c9a9fb5f0afb0372052ec385c1e596dd46ca8975a6aa35a8b716b7","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"d1112b26b2cc5a4481d2b685f57809baa468edce1f61e2f04d591bb26754fa65","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":0.75,"term_identity":"-1.5280742226055937*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p0.json new file mode 100644 index 0000000..ef2dd8a --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 1.5280742226055937*Cl_F","deployment_expression_hash":"0742a1aca1d5a4fe2d1aaa63bab567c29d6754875caead066f8a02be8642d924","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"aacc292c6dee21cf178747f0c32c50c00f59c1973c7f1c38f90d20676d35c268","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.0,"term_identity":"-1.5280742226055937*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p25.json new file mode 100644 index 0000000..1348c73 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 1.9100927782569921*Cl_F","deployment_expression_hash":"0c8396f743e33d1a1b5c702a2ee1f5df6028d0bb418f0c4e02c348f62c91a612","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"d2a0181acc9b60ea044f3c1a915cb73f319614e8794f34c82381bdf910d00f1f","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.25,"term_identity":"-1.5280742226055937*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p5.json new file mode 100644 index 0000000..54b8f41 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243*Cd_rear_a - 2.2921113339083906*Cl_F","deployment_expression_hash":"4fa6e7d1ddedfe2c6447a3cd2202f8ae3325da6dad152567fa19f3f180ae920d","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fit_score":null,"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","parent_source_hash":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8","provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","source_hash":"7c59a6230504f62e0b9f7b6d9c2f658aa5ae22a27333ca828019befc7ff51dbf","source_path":null,"training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"],"variant_metadata":{"scale":1.5,"term_identity":"-1.5280742226055937*Cl_F","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json new file mode 100644 index 0000000..00386b8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__delete_t0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"0","deployment_expression_hash":"5feceb66ffc86f38d952786c6d696c79c2dbc239dd4e91b46729d73a27fb57e9","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"21a9d5dab10dd7ac5986cd2cd9c3b4de6d8ea020df30a9fe2577d0f3349c30fa","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.0,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p5.json new file mode 100644 index 0000000..31a6db8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.1906957169037274*Cd_rear_a","deployment_expression_hash":"b8e93ad870413178b8431789e38883fb90b2d4a5ad271bed5712ce23e889c454","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"111ea38a9552209cd50de770ac8dac13a611ee49bedae3b083aa5847192eb7cc","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.5,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p75.json new file mode 100644 index 0000000..b20e30e --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.2860435753555912*Cd_rear_a","deployment_expression_hash":"bbd50d4b4a86fce726690d40d33cc531c101880b94b3f941b2f460ca34608d97","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"76e509dc9018ec84f552f50183cf1f1ce06aa3c4f9b653e3dd9bb3c17469fbdf","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.75,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p0.json new file mode 100644 index 0000000..5bdd0fb --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.3813914338074549*Cd_rear_a","deployment_expression_hash":"67fdc9d2a65ccfc48a982498b77312a918f8c3086cb2111cea15889d5afdb649","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"a495b379aa3e3fa28559a207aae33a1ace51d93cfa5ba0f053919303a92208af","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.0,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p25.json new file mode 100644 index 0000000..f07a7a8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.4767392922593186*Cd_rear_a","deployment_expression_hash":"cdd7b2540b907dec7cb84280e8d9d7fd8305542a8bbfaabfc1494ce9024b7d2b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"e98df5d4fec5e71f02c1e26d42a2bdb0f09f8df149b190c52ce9204cae2ce845","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.25,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p5.json new file mode 100644 index 0000000..97e2ff9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.5720871507111824*Cd_rear_a","deployment_expression_hash":"528c779b4eb40f908920315d212df517b237212e9042ac0c7cb1365cb5763764","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","parent_source_hash":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"cb2635889b225fe7a37d04f4581d67218dff5282d559cfa497e30a900439d0fa","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.5,"term_identity":"-0.3813914338074549*Cd_rear_a","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json new file mode 100644 index 0000000..4223317 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"-3.431208680510616","deployment_expression_hash":"911b278bd18430966f3d96f188779a1db851476c366ecc9efdc3fb4f904c0adb","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"f17bca62c06771ece28e57ee095b52e24938510190ca5a7be966152e7b724edc","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.0,"term_identity":"1.3077817865589976*Cl_rear_s","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json new file mode 100644 index 0000000..bcd4f65 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__delete_t1.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s","deployment_expression_hash":"8b41c1ef07524348c067d1e35ecfee1b4257e92729fea6728be5f645110285b6","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"12026e68756102ef467944134011fee28c445827d55388513aa9dc72904d8851","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.0,"term_identity":"-3.431208680510616","type":"term_deletion"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p5.json new file mode 100644 index 0000000..74f1bac --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"0.6538908932794988*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"01690a649520901a960d3bf8549c133ce6313eb113b0e38f9ff7434251f3cea5","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"b68c905c3ade9742796b3d80f06a89de987754b8486310415069f8303c081cbe","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.5,"term_identity":"1.3077817865589976*Cl_rear_s","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p75.json new file mode 100644 index 0000000..66290b8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"0.9808363399192482*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"7652e7887b95d6676b6b69d9157637b2e64beffc54f571c375db23695832cb3b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"5878973018d7cb214e4ebbfc7b96c51403d98642dc81f08e50965643484a5483","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.75,"term_identity":"1.3077817865589976*Cl_rear_s","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p0.json new file mode 100644 index 0000000..2566707 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"d900ca2373092313230e7aee88da6052be36740166cc0f499b06c28ac4038c77","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"f35944ecc3a9a0b32d7328dae1396532f261b08d2a8aee15c0fc5d03d2e56541","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.0,"term_identity":"1.3077817865589976*Cl_rear_s","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p25.json new file mode 100644 index 0000000..8cb562e --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.634727233198747*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"4a387c68d6b14f05fb3a4123a049c5f8eee2f12cb17fdeac3fbf64232a0792b9","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"c8ce54948c492f37127afb7c3f9a53c4e5a29af90c597ce9bf0ebe5e024b64b2","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.25,"term_identity":"1.3077817865589976*Cl_rear_s","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p5.json new file mode 100644 index 0000000..a319e51 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.9616726798384964*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"5739ae14fb2fb53a96550fac1daa7fb84b2ff941953d8d726d9a39664d47b64b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"e345864c7cadadb0839341b308266d4d24bba303f6c3b3ea57f1b77b5d074460","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.5,"term_identity":"1.3077817865589976*Cl_rear_s","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p5.json new file mode 100644 index 0000000..d866334 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 1.715604340255308","deployment_expression_hash":"369d405244f8e7e130651e837bada24b2fd9f5d2688bca46b396cddc5f42e661","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"4ead829725f9a4cdfe8372c820e33085213a1326ff4ab8bc7496609c786ceec6","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.5,"term_identity":"-3.431208680510616","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p75.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p75.json new file mode 100644 index 0000000..702ae80 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p75.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 2.573406510382962","deployment_expression_hash":"d0b5f69c0526fdc718e5a3b7c16d7ecc3e4a5e1a258bdba3d2c3f91615f68b05","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"6763e20390bf8dd7cb254f6dde8ba502924b54708ae2d096ef3e47c806ea1a5c","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":0.75,"term_identity":"-3.431208680510616","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p0.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p0.json new file mode 100644 index 0000000..d38e385 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p0.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 3.431208680510616","deployment_expression_hash":"d900ca2373092313230e7aee88da6052be36740166cc0f499b06c28ac4038c77","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"3c54f3ac62da9f97aaeec4077c7cd37d118b0e3f689827730b6f119fb425ef9f","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.0,"term_identity":"-3.431208680510616","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p25.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p25.json new file mode 100644 index 0000000..dd3ae69 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p25.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 4.28901085063827","deployment_expression_hash":"272c304833d481c8055504c52ea5d2a2e1ae7980b50b15297bf575f788421014","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"662a36c34838e4ac35654fc75ffeab59a662b03842e5e73c5dcb53a5ecf06284","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.25,"term_identity":"-3.431208680510616","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p5.json b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p5.json new file mode 100644 index 0000000..eeba410 --- /dev/null +++ b/src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p5.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976*Cl_rear_s - 5.146813020765924","deployment_expression_hash":"5ef7d397939b99db2bcaba1e7535a1cb2f223a5d11057763d2cd92d51d86e09e","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fit_score":null,"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","legacy":false,"model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"parent_deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","parent_source_hash":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b","provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","source_hash":"f618c0208712758f0cd385e20d9636add41817062d5cffb6960c5e1321739162","source_path":null,"training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"],"variant_metadata":{"scale":1.5,"term_identity":"-3.431208680510616","type":"coefficient_scaling"}} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..c0a5e52 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014130000000","deployment_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-1.25014130000000","fitted_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:19:39.069930+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_c","loss":1795.7644,"metrics":{"blind":{"mae":45.35216000506189,"max_error":58.27738380432129,"r2":-36030.96272415244,"rmse":47.83651117123836},"train":{"mae":39.673786984219895,"max_error":56.892298102378845,"r2":-18738.101827222483,"rmse":42.37646142349489},"validation":{"mae":40.639498504308555,"max_error":56.547361850738525,"r2":-42442.902309734956,"rmse":43.89707928965587}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-59.07445549964905,56.71560764312744],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_c"]},{"complexity":2.0,"expression":"-1.25014130000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"score":9.83836774186579,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"Cd_rear_s*(-0.1021931) - 1.1808428","loss":0.09537381,"metrics":{"blind":{"mae":0.21167520232405476,"max_error":0.527244350031302,"r2":-0.045645931052497035,"rmse":0.25769611080702465},"train":{"mae":0.25015171919412793,"max_error":0.6894867511281992,"r2":0.004758271900377142,"rmse":0.30882652282304474},"validation":{"mae":0.170675737393013,"max_error":0.49231003775580473,"r2":-0.05571424967397287,"rmse":0.2189279265336012}},"score":0.0009539169020276404,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2982081267062036,-1.196080145168821],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..63ca759 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s**2","deployment_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a + Cd_rear_s**2","fitted_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:19:40.846894+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":4.1107926,"metrics":{"blind":{"mae":2.158855006447993,"max_error":3.299970930442214,"r2":-15.82401616993143,"rmse":2.2751178250425803},"train":{"mae":1.9458032226884516,"max_error":3.18065120652318,"r2":-25.709465659479914,"rmse":2.027508867353181},"validation":{"mae":2.4236966903584127,"max_error":3.2632875638082623,"r2":-18.399504797154982,"rmse":2.518740068524495}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.1983056105673313,4.634926444850862],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"1.83892350000000","loss":0.15390767,"metrics":{"blind":{"mae":0.5132875328216553,"max_error":0.8983499546661378,"r2":-0.10138908408629299,"rmse":0.5821158686458454},"train":{"mae":0.32564716652382025,"max_error":0.8501426716461182,"r2":-6.328271240363392e-14,"rmse":0.39231070816080155},"validation":{"mae":0.5255319039588341,"max_error":0.9007474918975831,"r2":-0.03646813425727147,"rmse":0.5821916954747169}},"score":3.2850182584532326,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389235,1.8389235],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a + Cd_rear_s","loss":0.10971323,"metrics":{"blind":{"mae":0.4504156879847869,"max_error":0.6326611861586571,"r2":0.3136649253238505,"rmse":0.4595228919344721},"train":{"mae":0.3094089455839436,"max_error":0.5029259501025081,"r2":0.28714927289771797,"rmse":0.3312298446121608},"validation":{"mae":0.4534945357590914,"max_error":0.6293875817209482,"r2":0.33548878734554943,"rmse":0.46616448744007905}},"score":0.3384829155096089,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.25175127666443586,3.4783706068992615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":4.0,"expression":"Cd_rear_a + Cd_rear_s**2","loss":0.033301342,"metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"score":1.1922722651755668,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s**4","loss":0.026770882,"metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"score":0.21828289215605354,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..c2a6d19 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s0-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cd_F + Cd_rear_a","deployment_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cd_F + Cd_rear_a","fitted_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:19:39.941886+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.8152605,"metrics":{"blind":{"mae":0.7046440394362434,"max_error":1.8781830510124564,"r2":-0.9956336158156958,"rmse":0.87674871146624},"train":{"mae":0.7295411288169986,"max_error":1.9389081485569477,"r2":-2.1449900493638516,"rmse":0.9029178051115037},"validation":{"mae":0.9826974206341382,"max_error":1.9332711258903146,"r2":-2.244472115267538,"rmse":1.1731017374006025}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9491200326010585,0.25663443375378847],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-1.16735900000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347436238759995,"max_error":1.1372507755432129,"r2":-0.02537937769625498,"rmse":0.6284591015360349},"train":{"mae":0.4284045060409208,"max_error":1.0161541755523682,"r2":-1.8508684807017062e-08,"rmse":0.5091416004050288},"validation":{"mae":0.5885631519203428,"max_error":1.1131833736572265,"r2":-0.12346447512640157,"rmse":0.6903086686374265}},"score":1.1458107821322527,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167359,-1.167359],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.13072658,"metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"score":0.6845889454969006,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..b67df46 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014220000000","deployment_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-1.25014220000000","fitted_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:20:19.927129+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":14.731233,"metrics":{"blind":{"mae":3.8053490723948924,"max_error":4.138215005397797,"r2":-228.41687326460715,"rmse":3.817053230929877},"train":{"mae":3.8083398237161465,"max_error":5.076661160215735,"r2":-152.72286077106395,"rmse":3.8381286903795773},"validation":{"mae":3.7572018771599502,"max_error":4.01996910944581,"r2":-311.373362923034,"rmse":3.765866920057727}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.7976047238335013,3.485238179564476],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-1.25014220000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"score":5.035151615701742,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.08235938,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.151481242767624,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":6.0,"expression":"-Cd_F + Cd_rear_a - 0.16580658","loss":0.064719655,"metrics":{"blind":{"mae":0.37714819275328926,"max_error":0.7785431242225709,"r2":-2.0004627655721254,"rmse":0.43652554086645096},"train":{"mae":0.20991882856519822,"max_error":0.5580560317755694,"r2":0.32463955661021904,"rmse":0.2544005894487599},"validation":{"mae":0.36118030189301176,"max_error":0.7187944277100282,"r2":-2.904470535125737,"rmse":0.4210261269551138}},"score":0.08034247070805912,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8607634907964634,-1.3211404063183831],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..6ba58ff --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s**2","deployment_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a + Cd_rear_s**2","fitted_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:20:21.673418+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":0.7003962,"metrics":{"blind":{"mae":0.5703262576367706,"max_error":1.4667464680969715,"r2":-0.6984206898422467,"rmse":0.7228724783839271},"train":{"mae":0.7254418877695324,"max_error":1.5016526486724615,"r2":-3.550755328809367,"rmse":0.836896796695819},"validation":{"mae":0.8017440668474405,"max_error":1.5274721421301365,"r2":-1.8424819802662538,"rmse":0.9641328693329608}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.7976047238335013,3.485238179564476],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"1.83892740000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132865578216552,"max_error":0.8983460546661377,"r2":-0.10138460647537229,"rmse":0.5821146853714434},"train":{"mae":0.32564736482890505,"max_error":0.8501387716461182,"r2":-1.0386802529183115e-10,"rmse":0.3923107081811634},"validation":{"mae":0.5255330039588341,"max_error":0.900743591897583,"r2":-0.036470739037585576,"rmse":0.5821924270362886}},"score":1.5152933627400027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389274,1.8389274],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a + Cd_rear_s","loss":0.10971323,"metrics":{"blind":{"mae":0.4504156879847869,"max_error":0.6326611861586571,"r2":0.3136649253238505,"rmse":0.4595228919344721},"train":{"mae":0.3094089455839436,"max_error":0.5029259501025081,"r2":0.28714927289771797,"rmse":0.3312298446121608},"validation":{"mae":0.4534945357590914,"max_error":0.6293875817209482,"r2":0.33548878734554943,"rmse":0.46616448744007905}},"score":0.33848285053558697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.25175127666443586,3.4783706068992615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":4.0,"expression":"Cd_rear_a + Cd_rear_s**2","loss":0.033301342,"metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"score":1.1922722651755668,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s**4","loss":0.026770882,"metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"score":0.21828289215605354,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..e31af17 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s1-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-(-1.1552219)*Cl_F - 2.1981544","deployment_expression_hash":"34d2d4bb0dbec2b3d793ebc67c9b96cfcd37cb4457c4d6ba79e59e9fc692f4a4","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-(-1.1552219)*Cl_F - 2.1981544","fitted_expression_hash":"34d2d4bb0dbec2b3d793ebc67c9b96cfcd37cb4457c4d6ba79e59e9fc692f4a4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:20:20.836297+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.31901532176042285,"max_error":0.9328125674074463,"r2":0.41837512003089117,"rmse":0.3882934523874604},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.35707119038138624,"max_error":0.7710020353215343,"r2":0.5379210579674205,"rmse":0.42188377115027165},"train":{"mae":0.31901532176042285,"max_error":0.9328125674074463,"r2":0.41837512003089117,"rmse":0.3882934523874604},"validation":{"mae":0.3819373889705565,"max_error":0.8372252674846332,"r2":0.5273818543847824,"rmse":0.4477327379925914}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7835981835171586,-0.4883149293335045],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.8152605,"metrics":{"blind":{"mae":0.7046440394362434,"max_error":1.8781830510124564,"r2":-0.9956336158156958,"rmse":0.87674871146624},"train":{"mae":0.7295411288169986,"max_error":1.9389081485569477,"r2":-2.1449900493638516,"rmse":0.9029178051115037},"validation":{"mae":0.9826974206341382,"max_error":1.9332711258903146,"r2":-2.244472115267538,"rmse":1.1731017374006025}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9491200326010585,0.25663443375378847],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-1.16731300000000","loss":0.25922516,"metrics":{"blind":{"mae":0.5347275238759994,"max_error":1.1372967755432128,"r2":-0.025355767883523228,"rmse":0.6284518662202911},"train":{"mae":0.42840294671888673,"max_error":1.0161081755523682,"r2":-2.088351047646597e-09,"rmse":0.5091415962248912},"validation":{"mae":0.5885784852536764,"max_error":1.1132293736572265,"r2":-0.12351411593266692,"rmse":0.6903239192755726}},"score":1.145810666402739,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167313,-1.167313],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-1.5527908*Cd_rear_s","loss":0.23063362,"metrics":{"blind":{"mae":0.5293690118994506,"max_error":0.8997008234066366,"r2":0.15443828364403422,"rmse":0.5706993614985326},"train":{"mae":0.39181134539339635,"max_error":0.9926162313148146,"r2":0.1102961780470808,"rmse":0.48024329206242233},"validation":{"mae":0.5489733189159,"max_error":0.9145122143256827,"r2":0.12153441248477392,"rmse":0.6104161729390322}},"score":0.05843331843925149,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7833278327831066,-0.23152648656875824],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - 1*2.30389441447438","loss":0.21229711,"metrics":{"blind":{"mae":0.3963124990028793,"max_error":0.8814039436158421,"r2":0.38951462125844705,"rmse":0.4849225321975584},"train":{"mae":0.41338491139043476,"max_error":0.8760763228881476,"r2":0.1810328375551702,"rmse":0.46075687447531205},"validation":{"mae":0.4464764339958691,"max_error":0.7981432807621243,"r2":0.38367677127494826,"rmse":0.5112907351300191}},"score":0.041421817492785236,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.201246601437342,0.02600993877171298],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":7.0,"expression":"-(-1.1552219)*Cl_F - 2.1981544","loss":0.15077178,"metrics":{"blind":{"mae":0.35707119038138624,"max_error":0.7710020353215343,"r2":0.5379210579674205,"rmse":0.42188377115027165},"train":{"mae":0.31901532176042285,"max_error":0.9328125674074463,"r2":0.41837512003089117,"rmse":0.3882934523874604},"validation":{"mae":0.3819373889705565,"max_error":0.8372252674846332,"r2":0.5273818543847824,"rmse":0.4477327379925914}},"score":0.34221945302114687,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7835981835171586,-0.4883149293335045],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..c884bae --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014130000000","deployment_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-1.25014130000000","fitted_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:21:02.880306+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":357.44168,"metrics":{"blind":{"mae":14.903031180799008,"max_error":32.20011222362518,"r2":-4738.040975773873,"rmse":17.34845365117759},"train":{"mae":16.636443722551153,"max_error":32.67215371131897,"r2":-3728.9636360517325,"rmse":18.906128362289277},"validation":{"mae":17.462003593261425,"max_error":31.310849905014038,"r2":-8559.848884336976,"rmse":19.71452817333348}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-29.53658103942871,31.446141004562378],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":2.0,"expression":"-1.25014130000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"score":8.224153897968753,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.08235938,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.151481242767624,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":6.0,"expression":"-Cd_F + Cd_rear_a - 1*0.08176654","loss":0.066788785,"metrics":{"blind":{"mae":0.4018634652521039,"max_error":0.7049259545265054,"r2":-2.3964336421792383,"rmse":0.46443731455296555},"train":{"mae":0.19837044426754277,"max_error":0.60749141936957,"r2":0.30304787778152176,"rmse":0.2584352651899343},"validation":{"mae":0.34537835033433456,"max_error":0.7007598785667037,"r2":-2.6574966827066593,"rmse":0.40749280278383265}},"score":0.06985239232633524,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7767234507964635,-1.2371003663183833],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..1d32f84 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_F + 0.94657123","deployment_expression_hash":"f7f86f4ee204f416e585e0dbb68c47492aa205b684b4fc12ca88db0e2dd21b59","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + 0.94657123","fitted_expression_hash":"f7f86f4ee204f416e585e0dbb68c47492aa205b684b4fc12ca88db0e2dd21b59","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:21:04.737288+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1883531346364398,"max_error":0.5191982946860385,"r2":0.6359217458042972,"rmse":0.23671595576792673},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.24908668004542206,"max_error":0.5579576398747754,"r2":0.7330737686354335,"rmse":0.2865726118712382},"train":{"mae":0.1883531346364398,"max_error":0.5191982946860385,"r2":0.6359217458042972,"rmse":0.23671595576792673},"validation":{"mae":0.28396721098708455,"max_error":0.5753685337993097,"r2":0.6861750792053432,"rmse":0.32035517428384613}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3054254176524687,2.4266673662197995],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.83892490000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132871828216553,"max_error":0.8983485546661376,"r2":-0.10138747672740656,"rmse":0.5821154438779459},"train":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"validation":{"mae":0.5255322988306288,"max_error":0.9007460918975829,"r2":-0.03646906929591265,"rmse":0.5821919580836631}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389249,1.8389249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_F + Cl_F","loss":0.12363231,"metrics":{"blind":{"mae":0.31417756244773043,"max_error":0.7740932633168995,"r2":0.5278057392379903,"rmse":0.38115305635776603},"train":{"mae":0.27680154993609224,"max_error":0.9379146005958319,"r2":0.19671130107346646,"rmse":0.3516138641332259},"validation":{"mae":0.3200772907346105,"max_error":0.7511786371469498,"r2":0.505880456968314,"rmse":0.4019796285935783}},"score":0.2190408935562934,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7177083753049374,2.960192272439599],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":4.0,"expression":"Cl_F + 0.94657123","loss":0.05603443,"metrics":{"blind":{"mae":0.24908668004542206,"max_error":0.5579576398747754,"r2":0.7330737686354335,"rmse":0.2865726118712382},"train":{"mae":0.1883531346364398,"max_error":0.5191982946860385,"r2":0.6359217458042972,"rmse":0.23671595576792673},"validation":{"mae":0.28396721098708455,"max_error":0.5753685337993097,"r2":0.6861750792053432,"rmse":0.32035517428384613}},"score":0.7913455953910644,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3054254176524687,2.4266673662197995],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..f53916a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_only-s2-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-1.16729120000000","deployment_expression_hash":"ec8fed4a7465ad78a2a66baf062e1e9da1c1975e31050d49c8c31781424aadca","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-1.16729120000000","fitted_expression_hash":"ec8fed4a7465ad78a2a66baf062e1e9da1c1975e31050d49c8c31781424aadca","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:21:03.846395+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4284022077358358,"max_error":1.0160863755523681,"r2":-8.30180368893707e-12,"rmse":0.5091415956953714},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5347198938759995,"max_error":1.137318575543213,"r2":-0.025344582722536035,"rmse":0.6284484384566374},"train":{"mae":0.4284022077358358,"max_error":1.0160863755523681,"r2":-8.30180368893707e-12,"rmse":0.5091415956953714},"validation":{"mae":0.5885857519203429,"max_error":1.1132511736572266,"r2":-0.12353764484289242,"rmse":0.6903311477047729}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672912,-1.1672912],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.8152605,"metrics":{"blind":{"mae":0.7046440394362434,"max_error":1.8781830510124564,"r2":-0.9956336158156958,"rmse":0.87674871146624},"train":{"mae":0.7295411288169986,"max_error":1.9389081485569477,"r2":-2.1449900493638516,"rmse":0.9029178051115037},"validation":{"mae":0.9826974206341382,"max_error":1.9332711258903146,"r2":-2.244472115267538,"rmse":1.1731017374006025}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9491200326010585,0.25663443375378847],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-1.16729120000000","loss":0.25922516,"metrics":{"blind":{"mae":0.5347198938759995,"max_error":1.137318575543213,"r2":-0.025344582722536035,"rmse":0.6284484384566374},"train":{"mae":0.4284022077358358,"max_error":1.0160863755523681,"r2":-8.30180368893707e-12,"rmse":0.5091415956953714},"validation":{"mae":0.5885857519203429,"max_error":1.1132511736572266,"r2":-0.12353764484289242,"rmse":0.6903311477047729}},"score":1.145810666402739,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672912,-1.1672912],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cd_rear_s - 0.39053884","loss":0.21792232,"metrics":{"blind":{"mae":0.5148059097455807,"max_error":1.0093071050667723,"r2":0.1448252129876736,"rmse":0.5739342929713116},"train":{"mae":0.3695630296083613,"max_error":0.970812242389139,"r2":0.15933197000734656,"rmse":0.4668214951513886},"validation":{"mae":0.5566887534779814,"max_error":1.0102777139707988,"r2":0.042004736867973236,"rmse":0.6374488410462434}},"score":0.08677917932771424,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5390050936531687,-0.5396423036273981],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":6.0,"expression":"-Cl_rear_s + Cl_tot - 1*1.5218376","loss":0.17721088,"metrics":{"blind":{"mae":0.24620876273945713,"max_error":0.7810445230400354,"r2":0.720299355240313,"rmse":0.3282324123286752},"train":{"mae":0.3463826941098582,"max_error":0.9223401281463146,"r2":0.31638236292870237,"rmse":0.4209642436134386},"validation":{"mae":0.3546881799535109,"max_error":0.8607345014291048,"r2":0.504260278525623,"rmse":0.4585540296214995}},"score":0.10339911658925187,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8275504051295877,-0.38968904917666913],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..eb87138 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014130000000","deployment_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-1.25014130000000","fitted_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:25:36.978805+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.6142325,"metrics":{"blind":{"mae":1.212098748369317,"max_error":1.6771366819739342,"r2":-23.68236213879684,"rmse":1.2520131727946806},"train":{"mae":1.2380614117211148,"max_error":1.9798884929623455,"r2":-15.84478705792263,"rmse":1.270524563688887},"validation":{"mae":1.141771501625697,"max_error":1.6373399123549461,"r2":-29.090853742469825,"rmse":1.168813521160756}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8413145551458001,0.38794876309111714],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"-1.25014130000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"score":2.8240412935273045,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.08235938,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.151481242767624,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":4.0,"expression":"Cl_err - 1.2380613","loss":0.081436604,"metrics":{"blind":{"mae":0.25899614570291896,"max_error":0.6081272100431949,"r2":-0.5592848315568002,"rmse":0.3146866109959461},"train":{"mae":0.22437788645473541,"max_error":0.7418271929623454,"r2":0.15019541837805495,"rmse":0.28537100018041295},"validation":{"mae":0.21358333564452495,"max_error":0.586626380203116,"r2":-0.5804976982877943,"rmse":0.2678705108715223}},"score":0.011267501682916943,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0793758551458,-0.8501125369088829],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..c123833 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a*Cd_rear_s + Cl_F**2","deployment_expression_hash":"c371a8d3a7cb340b686fc04a56187e517bd7c872ee7a71edd9af433bcc143739","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a*Cd_rear_s + Cl_F**2","fitted_expression_hash":"c371a8d3a7cb340b686fc04a56187e517bd7c872ee7a71edd9af433bcc143739","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:25:39.028809+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3520116394627414,"max_error":1.1709507695791088,"r2":-0.2564796521397741,"rmse":0.4397520698940713},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4990912975187955,"max_error":1.2396291398737054,"r2":-0.3337385932690742,"rmse":0.6405815317335071},"train":{"mae":0.3520116394627414,"max_error":1.1709507695791088,"r2":-0.2564796521397741,"rmse":0.4397520698940713},"validation":{"mae":0.328480856355261,"max_error":1.0866024291095906,"r2":0.41953920223064456,"rmse":0.43568687414888724}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14408147245331313,4.866501096395528],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cl_F**8","loss":18.618937,"metrics":{"blind":{"mae":5.095659162723,"max_error":20.43592246188043,"r2":-202.19486629481042,"rmse":7.906702899923131},"train":{"mae":2.68541697488003,"max_error":16.499064827266647,"r2":-119.97469628823265,"rmse":4.314966542672318},"validation":{"mae":2.7456938234745873,"max_error":14.56864102827144,"r2":-60.481196309039646,"rmse":4.48393371378724}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0002750072535156161,23.031350213421568],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cd_rear_a*Cd_rear_s + Cl_F**2","loss":0.19338188,"metrics":{"blind":{"mae":0.4990912975187955,"max_error":1.2396291398737054,"r2":-0.3337385932690742,"rmse":0.6405815317335071},"train":{"mae":0.3520116394627414,"max_error":1.1709507695791088,"r2":-0.2564796521397741,"rmse":0.4397520698940713},"validation":{"mae":0.328480856355261,"max_error":1.0866024291095906,"r2":0.41953920223064456,"rmse":0.43568687414888724}},"score":2.283633786625262,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14408147245331313,4.866501096395528],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s","Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..aba2967 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s0-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.47404155*Cd_tot + Cl_F","deployment_expression_hash":"29ee8c67c2a84aa2b6c6d3909424c0a065a7c38bd6b3a7c2cfe13d4a9fbee07a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-0.47404155*Cd_tot + Cl_F","fitted_expression_hash":"29ee8c67c2a84aa2b6c6d3909424c0a065a7c38bd6b3a7c2cfe13d4a9fbee07a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:25:37.831752+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3215137437358022,"max_error":0.8012151332468931,"r2":0.4217440605026449,"rmse":0.38716726491157477},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.3146141759590141,"max_error":0.730721095230594,"r2":0.6127748692645987,"rmse":0.3862037606314466},"train":{"mae":0.3215137437358022,"max_error":0.8012151332468931,"r2":0.4217440605026449,"rmse":0.38716726491157477},"validation":{"mae":0.36731718432052585,"max_error":0.7361356560564283,"r2":0.5408807124067766,"rmse":0.441292375526178}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1195337854678566,-0.6518236832883209],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.5673456,"metrics":{"blind":{"mae":1.049946623427968,"max_error":2.216416583629325,"r2":-2.615607362207564,"rmse":1.1801178024018635},"train":{"mae":1.155209247784993,"max_error":2.2259959327057004,"r2":-5.046270538831778,"rmse":1.2519366896249258},"validation":{"mae":1.2943169380782937,"max_error":2.098045433172956,"r2":-3.621394203082361,"rmse":1.40007133071763}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8413145551458001,0.38794876309111714],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"-1.16725720000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347079938759995,"max_error":1.1373525755432128,"r2":-0.025327142901466315,"rmse":0.6284430938753585},"train":{"mae":0.42840105519346294,"max_error":1.0160523755523683,"r2":-4.082922444581527e-09,"rmse":0.5091415967326508},"validation":{"mae":0.5885970852536762,"max_error":1.1132851736572265,"r2":-0.12357434578124704,"rmse":0.6903424226247161}},"score":1.7994418549190487,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672572,-1.1672572],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cd_rear_s - 0.48909","loss":0.20821016,"metrics":{"blind":{"mae":0.5593813677998531,"max_error":0.9107559450667724,"r2":0.032346324194617915,"rmse":0.6105127049778645},"train":{"mae":0.36479943708270757,"max_error":1.069363402389139,"r2":0.19679792544297714,"rmse":0.45630054774866896},"validation":{"mae":0.5531527187207858,"max_error":0.9590945268982649,"r2":0.08853985609755666,"rmse":0.6217739121839582}},"score":0.10957447885866183,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6375562536531687,-0.638193463627398],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":6.0,"expression":"-0.47404155*Cd_tot + Cl_F","loss":0.14989848,"metrics":{"blind":{"mae":0.3146141759590141,"max_error":0.730721095230594,"r2":0.6127748692645987,"rmse":0.3862037606314466},"train":{"mae":0.3215137437358022,"max_error":0.8012151332468931,"r2":0.4217440605026449,"rmse":0.38716726491157477},"validation":{"mae":0.36731718432052585,"max_error":0.7361356560564283,"r2":0.5408807124067766,"rmse":0.441292375526178}},"score":0.16429484462899382,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1195337854678566,-0.6518236832883209],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..07772f2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_a - Cl_err - (Cd_F - Cl_err)","deployment_expression_hash":"60b86108e7846c5b0ce01de356bf097538fd3841e00b1d351cf6d1b1d6eefdd5","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a - Cl_err - (Cd_F - Cl_err)","fitted_expression_hash":"60b86108e7846c5b0ce01de356bf097538fd3841e00b1d351cf6d1b1d6eefdd5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:26:18.224910+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.25014270000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142963255212782,"max_error":0.4956533973648072,"r2":-0.005989859004401854,"rmse":0.25276232391275316},"train":{"mae":0.24963164456927417,"max_error":0.6792430812881469,"r2":-6.729949930672774e-12,"rmse":0.309563895618016},"validation":{"mae":0.17219051273449631,"max_error":0.45827693395156865,"r2":-0.0009270982942641837,"rmse":0.21317152675837367}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501427,-1.2501427],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":5.0,"expression":"-Cl_err**2 - 1.2501427","loss":0.092842035,"metrics":{"blind":{"mae":0.20637338816620718,"max_error":0.5094039675785236,"r2":-0.001398318318252656,"rmse":0.25218483509329725},"train":{"mae":0.25136036585050237,"max_error":0.6768238590355948,"r2":0.031177678932102992,"rmse":0.30469994184853605},"validation":{"mae":0.1702791597206299,"max_error":0.47275748570722054,"r2":0.005600156382637778,"rmse":0.21247532185135146}},"score":0.010558032125137064,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9579528807001756,-1.2554753478862308],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":7.0,"expression":"Cd_rear_a - Cl_err - (Cd_F - Cl_err)","loss":0.082359396,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.05990347606085324,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a","Cl_err"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..976dc71 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s - 0.29595318","deployment_expression_hash":"a2a61ce86110ea3002dc0e700f44921b33f14dda4ad63b17efc266d132e3dd15","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a + Cd_rear_s - 0.29595318","fitted_expression_hash":"a2a61ce86110ea3002dc0e700f44921b33f14dda4ad63b17efc266d132e3dd15","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:26:19.987170+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.12480135933084381,"max_error":0.7289079123286533,"r2":0.808084564828352,"rmse":0.17186407895802183},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.15522164546771872,"max_error":0.33670800615865715,"r2":0.8955173273980964,"rmse":0.17929211528107397},"train":{"mae":0.12480135933084381,"max_error":0.7289079123286533,"r2":0.808084564828352,"rmse":0.17186407895802183},"validation":{"mae":0.1618956133373223,"max_error":0.3334344017209483,"r2":0.8884741981722156,"rmse":0.19097464271816414}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.04420190333556412,3.1824174268992613],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":0.2448916,"metrics":{"blind":{"mae":0.3980671165122658,"max_error":0.6893636407330632,"r2":0.4210961338187449,"rmse":0.42202898512102954},"train":{"mae":0.4098922748489713,"max_error":1.581420985981822,"r2":-0.591158972220446,"rmse":0.49486523882977723},"validation":{"mae":0.402749445915199,"max_error":0.7417573679704219,"r2":0.4418478036727461,"rmse":0.42723256449853164}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10264781303703785,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"1.83892490000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132871828216553,"max_error":0.8983485546661376,"r2":-0.10138747672740656,"rmse":0.5821154438779459},"train":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"validation":{"mae":0.5255322988306288,"max_error":0.9007460918975829,"r2":-0.03646906929591265,"rmse":0.5821919580836631}},"score":0.4644628514698874,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389249,1.8389249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a + Cd_rear_s","loss":0.10971323,"metrics":{"blind":{"mae":0.4504156879847869,"max_error":0.6326611861586571,"r2":0.3136649253238505,"rmse":0.4595228919344721},"train":{"mae":0.3094089455839436,"max_error":0.5029259501025081,"r2":0.28714927289771797,"rmse":0.3312298446121608},"validation":{"mae":0.4534945357590914,"max_error":0.6293875817209482,"r2":0.33548878734554943,"rmse":0.46616448744007905}},"score":0.33848285053558697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.25175127666443586,3.4783706068992615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":4.0,"expression":"Cl_F - 1*(-0.94657123)","loss":0.05603443,"metrics":{"blind":{"mae":0.24908668004542206,"max_error":0.5579576398747754,"r2":0.7330737686354335,"rmse":0.2865726118712382},"train":{"mae":0.1883531346364398,"max_error":0.5191982946860385,"r2":0.6359217458042972,"rmse":0.23671595576792673},"validation":{"mae":0.28396721098708455,"max_error":0.5753685337993097,"r2":0.6861750792053432,"rmse":0.32035517428384613}},"score":0.6719036384117709,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3054254176524687,2.4266673662197995],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cd_rear_a + Cd_rear_s - 0.29595318","loss":0.029537266,"metrics":{"blind":{"mae":0.15522164546771872,"max_error":0.33670800615865715,"r2":0.8955173273980964,"rmse":0.17929211528107397},"train":{"mae":0.12480135933084381,"max_error":0.7289079123286533,"r2":0.808084564828352,"rmse":0.17186407895802183},"validation":{"mae":0.1618956133373223,"max_error":0.3334344017209483,"r2":0.8884741981722156,"rmse":0.19097464271816414}},"score":0.32015680144484754,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.04420190333556412,3.1824174268992613],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..184a46c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s1-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-1.16729400000000","deployment_expression_hash":"5c3e959294c649c9302bb995e6ad42a8bae89adf08d748ea9e8d5d2d1ea210db","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-1.16729400000000","fitted_expression_hash":"5c3e959294c649c9302bb995e6ad42a8bae89adf08d748ea9e8d5d2d1ea210db","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:26:19.116119+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4284023026510902,"max_error":1.0160891755523682,"r2":-7.02371494298859e-11,"rmse":0.5091415957111384},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5347208738759994,"max_error":1.1373157755432128,"r2":-0.025346019210602533,"rmse":0.628448878678579},"train":{"mae":0.4284023026510902,"max_error":1.0160891755523682,"r2":-7.02371494298859e-11,"rmse":0.5091415957111384},"validation":{"mae":0.58858481858701,"max_error":1.1132483736572265,"r2":-0.12353462265560378,"rmse":0.6903302192483779}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167294,-1.167294],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_s","loss":455.65863,"metrics":{"blind":{"mae":22.472052685823293,"max_error":30.544151723384857,"r2":-1475.3289452710537,"rmse":23.84659073372629},"train":{"mae":19.400034532903977,"max_error":33.05724340677261,"r2":-1756.7716420896215,"rmse":21.346162254904996},"validation":{"mae":20.08307202292296,"max_error":29.725873827934265,"r2":-1131.297773981455,"rmse":21.91512649587383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-32.42918699979782,31.567879021167755],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]},{"complexity":2.0,"expression":"-1.16729400000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347208738759994,"max_error":1.1373157755432128,"r2":-0.025346019210602533,"rmse":0.628448878678579},"train":{"mae":0.4284023026510902,"max_error":1.0160891755523682,"r2":-7.02371494298859e-11,"rmse":0.5091415957111384},"validation":{"mae":0.58858481858701,"max_error":1.1132483736572265,"r2":-0.12353462265560378,"rmse":0.6903302192483779}},"score":7.471802277781716,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167294,-1.167294],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"(3.094686 - Cl_tot)*(-0.36888832)","loss":0.19809917,"metrics":{"blind":{"mae":0.33213009222378187,"max_error":0.9874126368122973,"r2":0.5618674512719433,"rmse":0.41080667330275633},"train":{"mae":0.36928064219589957,"max_error":1.0145743698998222,"r2":0.23580277349776746,"rmse":0.4450833087454493},"validation":{"mae":0.486311890203276,"max_error":1.0339245737764664,"r2":0.24071527235593093,"rmse":0.5675001586449817}},"score":0.05378582960929168,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6044866968588107,-0.6292876974422805],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..1395488 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_err - 1.2380614","deployment_expression_hash":"8d18eb532dd97e851ed1bff93f6a5cf1fa19f13f547a0a5e09d6306a26e7be0b","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cl_err - 1.2380614","fitted_expression_hash":"8d18eb532dd97e851ed1bff93f6a5cf1fa19f13f547a0a5e09d6306a26e7be0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:26:57.788192+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.22437789831914223,"max_error":0.7418270929623454,"r2":0.15019541837818384,"rmse":0.2853710001803913},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.25899614070291893,"max_error":0.608127310043195,"r2":-0.559284913317976,"rmse":0.3146866192462498},"train":{"mae":0.22437789831914223,"max_error":0.7418270929623454,"r2":0.15019541837818384,"rmse":0.2853710001803913},"validation":{"mae":0.213583358721448,"max_error":0.586626480203116,"r2":-0.5804981224720598,"rmse":0.26787054681793604}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0793759551458004,-0.850112636908883],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.25014270000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142963255212782,"max_error":0.4956533973648072,"r2":-0.005989859004401854,"rmse":0.25276232391275316},"train":{"mae":0.24963164456927417,"max_error":0.6792430812881469,"r2":-6.729949930672774e-12,"rmse":0.309563895618016},"validation":{"mae":0.17219051273449631,"max_error":0.45827693395156865,"r2":-0.0009270982942641837,"rmse":0.21317152675837367}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501427,-1.2501427],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_err - 1.2380614","loss":0.08143661,"metrics":{"blind":{"mae":0.25899614070291893,"max_error":0.608127310043195,"r2":-0.559284913317976,"rmse":0.3146866192462498},"train":{"mae":0.22437789831914223,"max_error":0.7418270929623454,"r2":0.15019541837818384,"rmse":0.2853710001803913},"validation":{"mae":0.213583358721448,"max_error":0.586626480203116,"r2":-0.5804981224720598,"rmse":0.26787054681793604}},"score":0.08137433538680049,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0793759551458004,-0.850112636908883],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..305b7ac --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s**2","deployment_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a + Cd_rear_s**2","fitted_expression_hash":"167133891fa4465598e0432b4292349998e0700026fe772124fac97c8ea649d2","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:26:59.462682+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":0.7003962,"metrics":{"blind":{"mae":0.5703262576367706,"max_error":1.4667464680969715,"r2":-0.6984206898422467,"rmse":0.7228724783839271},"train":{"mae":0.7254418877695324,"max_error":1.5016526486724615,"r2":-3.550755328809367,"rmse":0.836896796695819},"validation":{"mae":0.8017440668474405,"max_error":1.5274721421301365,"r2":-1.8424819802662538,"rmse":0.9641328693329608}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.7976047238335013,3.485238179564476],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"1.83894480000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132822078216552,"max_error":0.8983286546661378,"r2":-0.10136463064665668,"rmse":0.5821094064362262},"train":{"mae":0.3256482495746677,"max_error":0.8501213716461182,"r2":-2.9750633068204024e-09,"rmse":0.39231070874436375},"validation":{"mae":0.5255379116511418,"max_error":0.9007261918975831,"r2":-0.036482361498459515,"rmse":0.5821956912334726}},"score":1.5152933627400027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389448,1.8389448],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_F + Cl_F","loss":0.12363231,"metrics":{"blind":{"mae":0.31417756244773043,"max_error":0.7740932633168995,"r2":0.5278057392379903,"rmse":0.38115305635776603},"train":{"mae":0.27680154993609224,"max_error":0.9379146005958319,"r2":0.19671130107346646,"rmse":0.3516138641332259},"validation":{"mae":0.3200772907346105,"max_error":0.7511786371469498,"r2":0.505880456968314,"rmse":0.4019796285935783}},"score":0.2190408935562934,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7177083753049374,2.960192272439599],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":4.0,"expression":"Cd_rear_a + Cd_rear_s**2","loss":0.033301342,"metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"score":1.3117142221548603,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s**4","loss":0.026770882,"metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"score":0.21828289215605354,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..3f0216f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_error-s2-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_rear_a - 1.6383044 - 1*0.9151014","deployment_expression_hash":"44918ebd54b75f82c484c0fe76ee95b5e5837370090ac86aaf75c061bc7d4c1e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a - 1.6383044 - 1*0.9151014","fitted_expression_hash":"44918ebd54b75f82c484c0fe76ee95b5e5837370090ac86aaf75c061bc7d4c1e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:26:58.664798+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2827480725745169,"max_error":1.125587708413768,"r2":0.5329186510171173,"rmse":0.3479644227628132},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.27589169299386784,"max_error":0.6318925580902219,"r2":0.7228710083469518,"rmse":0.32671999339459334},"train":{"mae":0.2827480725745169,"max_error":1.125587708413768,"r2":0.5329186510171173,"rmse":0.3479644227628132},"validation":{"mae":0.29233447625590503,"max_error":0.5486318952365041,"r2":0.7301790450295194,"rmse":0.33829960642956663}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4507579869629623,-0.22350144675390737],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_s","loss":10594.218,"metrics":{"blind":{"mae":105.80064274072647,"max_error":110.66395282745361,"r2":-29075.86793361482,"rmse":105.8299382676485},"train":{"mae":102.77230143256612,"max_error":112.1254848241806,"r2":-40867.789247904846,"rmse":102.92822068935568},"validation":{"mae":106.07056792691732,"max_error":110.91145694255829,"r2":-26545.303183849966,"rmse":106.11228828517315}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[91.11984372138977,110.90611517429352],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_s"]},{"complexity":2.0,"expression":"-1.16729400000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347208738759994,"max_error":1.1373157755432128,"r2":-0.025346019210602533,"rmse":0.628448878678579},"train":{"mae":0.4284023026510902,"max_error":1.0160891755523682,"r2":-7.02371494298859e-11,"rmse":0.5091415957111384},"validation":{"mae":0.58858481858701,"max_error":1.1132483736572265,"r2":-0.12353462265560378,"rmse":0.6903302192483779}},"score":10.618122026621316,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167294,-1.167294],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_F - 1.8192275","loss":0.21052895,"metrics":{"blind":{"mae":0.3822036721696723,"max_error":0.9616173984287679,"r2":0.4553208005978113,"rmse":0.4580418141169238},"train":{"mae":0.39198864864621447,"max_error":0.855395754686594,"r2":0.1878529821874665,"rmse":0.4588343320440133},"validation":{"mae":0.47600968092440793,"max_error":0.9612077915845811,"r2":0.2693887051314152,"rmse":0.5566815732859082}},"score":0.10403686929087502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4603733123475313,-0.3391313637802005],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":7.0,"expression":"Cd_rear_a - 1.6383044 - 1*0.9151014","loss":0.12107925,"metrics":{"blind":{"mae":0.27589169299386784,"max_error":0.6318925580902219,"r2":0.7228710083469518,"rmse":0.32671999339459334},"train":{"mae":0.2827480725745169,"max_error":1.125587708413768,"r2":0.5329186510171173,"rmse":0.3479644227628132},"validation":{"mae":0.29233447625590503,"max_error":0.5486318952365041,"r2":0.7301790450295194,"rmse":0.33829960642956663}},"score":0.1843926278249025,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4507579869629623,-0.22350144675390737],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..1356c3f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cd_F + Cd_rear_a","deployment_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_F + Cd_rear_a","fitted_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:23:40.880357+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_a","loss":65.25079,"metrics":{"blind":{"mae":5.793712385091931,"max_error":13.745277598500252,"r2":-719.2068546018407,"rmse":6.763074375024274},"train":{"mae":6.795806496066704,"max_error":15.689359575510025,"r2":-679.9029635068018,"rmse":8.077796638719105},"validation":{"mae":5.23216525467041,"max_error":13.13139782845974,"r2":-832.8793958202715,"rmse":6.152896271921403}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-16.77680630236864,10.556279867887497],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_a"]},{"complexity":2.0,"expression":"-1.25014130000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"score":6.523419835418641,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.08235938,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.151481242767624,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":6.0,"expression":"-(Cd_F - Cd_rear_a) - 0.13609879","loss":0.06383699,"metrics":{"blind":{"mae":0.38409066946231996,"max_error":0.7488353342225711,"r2":-2.1150213541565357,"rmse":0.4447808211972949},"train":{"mae":0.2032237255320506,"max_error":0.55315916936957,"r2":0.33385030120356196,"rmse":0.2526598425735016},"validation":{"mae":0.3531074033519054,"max_error":0.6890866377100284,"r2":-2.7816136890838434,"rmse":0.41434924592106037}},"score":0.08491985043262819,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8310557007964634,-1.2914326163183831],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..6ee4c7e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s**4","deployment_expression_hash":"eb70b55a80157950e6e079a45b4fb0f4dea87b74a7f2d959e42a4ef97a3616c1","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a + Cd_rear_s**4","fitted_expression_hash":"eb70b55a80157950e6e079a45b4fb0f4dea87b74a7f2d959e42a4ef97a3616c1","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:23:42.522897+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":1.5667146,"metrics":{"blind":{"mae":1.1670585701863274,"max_error":1.9351262897253036,"r2":-4.6617483363527965,"rmse":1.3198188752463091},"train":{"mae":1.1607225897271947,"max_error":2.0409625717438757,"r2":-9.179572160629121,"rmse":1.2516846464341422},"validation":{"mae":0.8734739454270405,"max_error":1.8961975234560668,"r2":-2.3784950569203214,"rmse":1.05111364271861}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14910346362739801,1.1484662536531687],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"1.83892490000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132871828216553,"max_error":0.8983485546661376,"r2":-0.10138747672740656,"rmse":0.5821154438779459},"train":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"validation":{"mae":0.5255322988306288,"max_error":0.9007460918975829,"r2":-0.03646906929591265,"rmse":0.5821919580836631}},"score":2.320383282120864,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389249,1.8389249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a + Cd_rear_s","loss":0.10971323,"metrics":{"blind":{"mae":0.4504156879847869,"max_error":0.6326611861586571,"r2":0.3136649253238505,"rmse":0.4595228919344721},"train":{"mae":0.3094089455839436,"max_error":0.5029259501025081,"r2":0.28714927289771797,"rmse":0.3312298446121608},"validation":{"mae":0.4534945357590914,"max_error":0.6293875817209482,"r2":0.33548878734554943,"rmse":0.46616448744007905}},"score":0.33848285053558697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.25175127666443586,3.4783706068992615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":4.0,"expression":"Cd_rear_a + Cd_rear_s**2","loss":0.033301342,"metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"score":1.1922722651755668,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s**4","loss":0.026770882,"metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"score":0.21828289215605354,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":7.0,"expression":"Cd_rear_a + (Cd_rear_s - 0.0794455)**2","loss":0.021813689,"metrics":{"blind":{"mae":0.20532413774652794,"max_error":0.43390900252461817,"r2":0.8255272421959117,"rmse":0.231687640858546},"train":{"mae":0.12096627882029687,"max_error":0.43861561424063344,"r2":0.8582676977083498,"rmse":0.14769458856155313},"validation":{"mae":0.20805587247408497,"max_error":0.4012110454510238,"r2":0.8312434838041407,"rmse":0.23491908718792698}},"score":0.10238854790646393,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10750004493375376,3.4727097249872814],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..3af85d2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s0-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_rear_s - (Cd_rear_s - (-Cd_F + Cd_rear_a))","deployment_expression_hash":"1077d3eb664ebeb8e4994995bb92c5b328338c89f217bf95b3ac15f10d298cb9","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_s - (Cd_rear_s - (-Cd_F + Cd_rear_a))","fitted_expression_hash":"1077d3eb664ebeb8e4994995bb92c5b328338c89f217bf95b3ac15f10d298cb9","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:23:41.663171+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.8152605,"metrics":{"blind":{"mae":0.7046440394362434,"max_error":1.8781830510124564,"r2":-0.9956336158156958,"rmse":0.87674871146624},"train":{"mae":0.7295411288169986,"max_error":1.9389081485569477,"r2":-2.1449900493638516,"rmse":0.9029178051115037},"validation":{"mae":0.9826974206341382,"max_error":1.9332711258903146,"r2":-2.244472115267538,"rmse":1.1731017374006025}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9491200326010585,0.25663443375378847],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-1.16726650000000","loss":0.25922516,"metrics":{"blind":{"mae":0.5347112488759994,"max_error":1.137343275543213,"r2":-0.02533191260910206,"rmse":0.6284445555972871},"train":{"mae":0.4284013704477005,"max_error":1.0160616755523681,"r2":-2.082253258706146e-09,"rmse":0.5091415962233389},"validation":{"mae":0.5885939852536763,"max_error":1.1132758736572266,"r2":-0.1235643064536005,"rmse":0.6903393384544178}},"score":1.145810666402739,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672665,-1.1672665],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_F - 1*2.2917778","loss":0.20661718,"metrics":{"blind":{"mae":0.42098508624112146,"max_error":0.9827288507248344,"r2":0.304935490845612,"rmse":0.517424856122053},"train":{"mae":0.35476096214762365,"max_error":1.1654337287644925,"r2":0.2029432652986719,"rmse":0.45455160668613753},"validation":{"mae":0.3953173744437874,"max_error":1.0492590686070802,"r2":0.44326863212141,"rmse":0.48594430939796185}},"score":0.11341465929178036,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9329236123475315,-0.8116816637802007],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":7.0,"expression":"Cd_rear_s - (Cd_rear_s - (-Cd_F + Cd_rear_a))","loss":0.13072659,"metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"score":0.15258655538243968,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..8c35dc4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cd_F + Cd_rear_a - 0.14964145","deployment_expression_hash":"d6629a5ed1926578f548cfb366552ae587a0bf44ba84b2aa1cdfe385167eea35","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_F + Cd_rear_a - 0.14964145","fitted_expression_hash":"d6629a5ed1926578f548cfb366552ae587a0bf44ba84b2aa1cdfe385167eea35","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:24:19.573366+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.20590874519762428,"max_error":0.5418909017755695,"r2":0.33193592525029614,"rmse":0.25302262808781295},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.38070500446232,"max_error":0.7623779942225708,"r2":-2.0593513323213757,"rmse":0.4407884590859931},"train":{"mae":0.20590874519762428,"max_error":0.5418909017755695,"r2":0.33193592525029614,"rmse":0.25302262808781295},"validation":{"mae":0.3566209062519863,"max_error":0.7026292977100281,"r2":-2.832797487086633,"rmse":0.41714391103483267}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8445983607964636,-1.3049752763183833],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.25014220000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.08235938,"metrics":{"blind":{"mae":0.4420947122128382,"max_error":0.7866924945265055,"r2":-2.99516713229729,"rmse":0.5037128316981775},"train":{"mae":0.21391128887286975,"max_error":0.68925795936957,"r2":0.14056626308820508,"rmse":0.2869832187118817},"validation":{"mae":0.34925007922114065,"max_error":0.7825264185667038,"r2":-2.7158258616617026,"rmse":0.41072926557791417}},"score":0.151481242767624,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":5.0,"expression":"Cl_rear_s**2 - 1*1.5493082","loss":0.08188012,"metrics":{"blind":{"mae":0.21675877275077693,"max_error":0.6051563438690276,"r2":-0.15244219710602902,"rmse":0.27053603091796624},"train":{"mae":0.24201040773220858,"max_error":0.6071664699411887,"r2":0.14556728242975503,"rmse":0.2861470270884908},"validation":{"mae":0.22821046498255512,"max_error":0.5640173075152422,"r2":-0.6769623502818845,"rmse":0.2759240959326515}},"score":0.0029180639268529245,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5473007852004947,-0.6484793637153657],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"-Cd_F + Cd_rear_a - 0.14964145","loss":0.064020455,"metrics":{"blind":{"mae":0.38070500446232,"max_error":0.7623779942225708,"r2":-2.0593513323213757,"rmse":0.4407884590859931},"train":{"mae":0.20590874519762428,"max_error":0.5418909017755695,"r2":0.33193592525029614,"rmse":0.25302262808781295},"validation":{"mae":0.3566209062519863,"max_error":0.7026292977100281,"r2":-2.832797487086633,"rmse":0.41714391103483267}},"score":0.2460535846808943,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8445983607964636,-1.3049752763183833],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..75a8e35 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s*Cd_rear_s","deployment_expression_hash":"7b6a3971e089411dd0266422a4a6bf4c35ccfb532247b9213248baf859f0c3dc","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a + Cd_rear_s*Cd_rear_s","fitted_expression_hash":"7b6a3971e089411dd0266422a4a6bf4c35ccfb532247b9213248baf859f0c3dc","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:24:21.490513+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.83894500000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132821578216553,"max_error":0.8983284546661376,"r2":-0.10136440105087097,"rmse":0.5821093457615552},"train":{"mae":0.3256482597441593,"max_error":0.8501211716461181,"r2":-3.030936168713083e-09,"rmse":0.39231070875532353},"validation":{"mae":0.5255379680613981,"max_error":0.900725991897583,"r2":-0.036482495100727874,"rmse":0.5821957287558972}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.838945,1.838945],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a + Cd_rear_s","loss":0.10971323,"metrics":{"blind":{"mae":0.4504156879847869,"max_error":0.6326611861586571,"r2":0.3136649253238505,"rmse":0.4595228919344721},"train":{"mae":0.3094089455839436,"max_error":0.5029259501025081,"r2":0.28714927289771797,"rmse":0.3312298446121608},"validation":{"mae":0.4534945357590914,"max_error":0.6293875817209482,"r2":0.33548878734554943,"rmse":0.46616448744007905}},"score":0.33848285053558697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.25175127666443586,3.4783706068992615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":4.0,"expression":"Cl_F + 0.94657123","loss":0.05603443,"metrics":{"blind":{"mae":0.24908668004542206,"max_error":0.5579576398747754,"r2":0.7330737686354335,"rmse":0.2865726118712382},"train":{"mae":0.1883531346364398,"max_error":0.5191982946860385,"r2":0.6359217458042972,"rmse":0.23671595576792673},"validation":{"mae":0.28396721098708455,"max_error":0.5753685337993097,"r2":0.6861750792053432,"rmse":0.32035517428384613}},"score":0.6719036384117709,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3054254176524687,2.4266673662197995],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s*Cd_rear_s","loss":0.033301342,"metrics":{"blind":{"mae":0.33382883156561916,"max_error":0.5780272898805476,"r2":0.5926825730389134,"rmse":0.3540018652411146},"train":{"mae":0.15750274932677116,"max_error":0.3447414510191389,"r2":0.7836278157718259,"rmse":0.1824865568494987},"validation":{"mae":0.3377937474960447,"max_error":0.5395710971560153,"r2":0.6109457791451522,"rmse":0.35669177476048874}},"score":0.520368626763796,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12487965590272465,3.648879089026237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a + Cd_rear_s - 1*0.29565868","loss":0.02952997,"metrics":{"blind":{"mae":0.15550142046771886,"max_error":0.337002506158657,"r2":0.8952213394103982,"rmse":0.17954589315663835},"train":{"mae":0.12483130848338607,"max_error":0.7286134123286534,"r2":0.8081319257514666,"rmse":0.17184287132649415},"validation":{"mae":0.16212970308091204,"max_error":0.33372890172094816,"r2":0.8881901843019764,"rmse":0.191217658049989}},"score":0.12019201663536551,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.043907403335564144,3.1827119268992616],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..dad8dfb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s1-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cd_F + Cd_rear_a","deployment_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_F + Cd_rear_a","fitted_expression_hash":"f760bd7f2d78824d5c65dad3856f692975a1878ee7fab3ce178378bc3ec28378","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:24:20.575271+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":6.9373436,"metrics":{"blind":{"mae":2.685960826502833,"max_error":3.185298358090222,"r2":-17.96117210481587,"rmse":2.7025100703864875},"train":{"mae":2.611442683366415,"max_error":3.094777006888762,"r2":-25.7618456815382,"rmse":2.6338837954977725},"validation":{"mae":2.723168916087907,"max_error":3.102037695236504,"r2":-16.68511296079042,"rmse":2.7388457520776726}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10264781303703785,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-1.16728770000000","loss":0.25922516,"metrics":{"blind":{"mae":0.5347186688759995,"max_error":1.137322075543213,"r2":-0.02534278716969829,"rmse":0.62844788819632},"train":{"mae":0.42840208909176797,"max_error":1.016082875552368,"r2":-1.5943912856641873e-11,"rmse":0.5091415956973169},"validation":{"mae":0.5885869185870097,"max_error":1.1132546736572266,"r2":-0.12354142262898904,"rmse":0.6903323082894811}},"score":3.2869771859878525,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672877,-1.1672877],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_F + Cd_rear_a","loss":0.13072658,"metrics":{"blind":{"mae":0.2791490838319987,"max_error":0.5301438071765006,"r2":0.7569632168167219,"rmse":0.305964285303882},"train":{"mae":0.32418260832645945,"max_error":0.6586174031253904,"r2":0.4957025718117566,"rmse":0.3615613139723507},"validation":{"mae":0.3059463289110938,"max_error":0.557322297245264,"r2":0.7389935564784096,"rmse":0.3327279387102607}},"score":0.6845890612264143,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.6949569107964635,-1.1553338263183832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a"]},{"complexity":4.0,"expression":"Cd_rear_a - 1*2.54999","loss":0.1214874,"metrics":{"blind":{"mae":0.2765748529938678,"max_error":0.6353083580902217,"r2":0.7204897359522907,"rmse":0.32812068616967727},"train":{"mae":0.28390191863424075,"max_error":1.122171908413768,"r2":0.5313441416021529,"rmse":0.34855041524965047},"validation":{"mae":0.2936482454866741,"max_error":0.5520476952365039,"r2":0.7274172856274381,"rmse":0.3400265358819893}},"score":0.07329741274285746,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4473421869629624,-0.2200856467539074],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..2d041e6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014220000000","deployment_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-1.25014220000000","fitted_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:24:58.297918+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.6670542,"metrics":{"blind":{"mae":1.4517560574007802,"max_error":2.69845350086689,"r2":-46.39399656118302,"rmse":1.73491101586468},"train":{"mae":1.3000969583680655,"max_error":2.9517030268907547,"r2":-26.83115532798653,"rmse":1.63311181523923},"validation":{"mae":1.2698764542971428,"max_error":2.6524334819987416,"r2":-50.23313766953331,"rmse":1.52511800836077}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.172684133052826,1.1736537562683225],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-1.25014220000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"score":3.3261562494625085,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..165857f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_a + Cd_rear_s**4","deployment_expression_hash":"eb70b55a80157950e6e079a45b4fb0f4dea87b74a7f2d959e42a4ef97a3616c1","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a + Cd_rear_s**4","fitted_expression_hash":"eb70b55a80157950e6e079a45b4fb0f4dea87b74a7f2d959e42a4ef97a3616c1","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:24:59.810720+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.83889370000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132949828216553,"max_error":0.8983797546661376,"r2":-0.10142330089028118,"rmse":0.5821249108590683},"train":{"mae":0.32564565126958295,"max_error":0.8501724716461181,"r2":-5.731969121569591e-09,"rmse":0.39231070928514555},"validation":{"mae":0.525523498830629,"max_error":0.9007772918975829,"r2":-0.03644823413503673,"rmse":0.5821861064261332}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8388937,1.8388937],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_F + Cl_F","loss":0.12363231,"metrics":{"blind":{"mae":0.31417756244773043,"max_error":0.7740932633168995,"r2":0.5278057392379903,"rmse":0.38115305635776603},"train":{"mae":0.27680154993609224,"max_error":0.9379146005958319,"r2":0.19671130107346646,"rmse":0.3516138641332259},"validation":{"mae":0.3200772907346105,"max_error":0.7511786371469498,"r2":0.505880456968314,"rmse":0.4019796285935783}},"score":0.2190408935562934,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7177083753049374,2.960192272439599],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":4.0,"expression":"Cl_F + 0.95969105","loss":0.05620656,"metrics":{"blind":{"mae":0.2416009555611188,"max_error":0.5448378198747754,"r2":0.7447311543121564,"rmse":0.2802450573761107},"train":{"mae":0.18736789868615086,"max_error":0.5111095286006808,"r2":0.6348033919352678,"rmse":0.23707924197966213},"validation":{"mae":0.2816123714999051,"max_error":0.5622487137993097,"r2":0.6893242649554243,"rmse":0.31874376359571205}},"score":0.7882784425631774,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3185452376524687,2.4397871862197995],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a + Cd_rear_s**4","loss":0.026770882,"metrics":{"blind":{"mae":0.1917389443730604,"max_error":0.4851074731075582,"r2":0.7974085094528938,"rmse":0.24966039562108314},"train":{"mae":0.12991678619802208,"max_error":0.39323272854382685,"r2":0.8260588504684969,"rmse":0.16361809442290243},"validation":{"mae":0.19671759936477495,"max_error":0.40544930092803555,"r2":0.848710595996576,"rmse":0.22242944849882526}},"score":0.7417186717477366,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10314206787424243,4.0695987068723944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..fc26071 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-actual_plus_target-s2-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cd_rear_s - 0.66684914 - 1*(-0.10272021)","deployment_expression_hash":"6aa76f36de5a47b77a59a2a004dc7560461404b403a3039f717c269a64f4e469","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_rear_s - 0.66684914 - 1*(-0.10272021)","fitted_expression_hash":"6aa76f36de5a47b77a59a2a004dc7560461404b403a3039f717c269a64f4e469","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:24:59.157726+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3714588995122068,"max_error":1.144402332389139,"r2":0.17507548593966138,"rmse":0.4624296625742828},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5992439304021975,"max_error":0.9653727777948309,"r2":-0.08711501877850858,"rmse":0.6471016075038617},"train":{"mae":0.3714588995122068,"max_error":1.144402332389139,"r2":0.17507548593966138,"rmse":0.4624296625742828},"validation":{"mae":0.5545833097033475,"max_error":1.034133456898265,"r2":0.09326236293872447,"rmse":0.6201610358946443}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7125951836531685,-0.713232393627398],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.16728800000000","loss":0.25922516,"metrics":{"blind":{"mae":0.5347187738759995,"max_error":1.1373217755432128,"r2":-0.025342941071734737,"rmse":0.6284479353607452},"train":{"mae":0.4284020992612597,"max_error":1.0160831755523683,"r2":-1.1585621351173359e-11,"rmse":0.5091415956962074},"validation":{"mae":0.5885868185870098,"max_error":1.1132543736572265,"r2":-0.12354109881648889,"rmse":0.690332208810173}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.167288,-1.167288],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"-Cd_rear_s - 0.66684914 - 1*(-0.10272021)","loss":0.21384118,"metrics":{"blind":{"mae":0.5992439304021975,"max_error":0.9653727777948309,"r2":-0.08711501877850858,"rmse":0.6471016075038617},"train":{"mae":0.3714588995122068,"max_error":1.144402332389139,"r2":0.17507548593966138,"rmse":0.4624296625742828},"validation":{"mae":0.5545833097033475,"max_error":1.034133456898265,"r2":0.09326236293872447,"rmse":0.6201610358946443}},"score":0.03849268754174495,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7125951836531685,-0.713232393627398],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..f53ee92 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014130000000","deployment_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-1.25014130000000","fitted_expression_hash":"c03c4e172a4529bde1ad9ced0574d4f1bc368d1215e8223881c4b086ba21fc2a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:21:42.781226+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.6670542,"metrics":{"blind":{"mae":1.4517560574007802,"max_error":2.69845350086689,"r2":-46.39399656118302,"rmse":1.73491101586468},"train":{"mae":1.3000969583680655,"max_error":2.9517030268907547,"r2":-26.83115532798653,"rmse":1.63311181523923},"validation":{"mae":1.2698764542971428,"max_error":2.6524334819987416,"r2":-50.23313766953331,"rmse":1.52511800836077}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.172684133052826,1.1736537562683225],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-1.25014130000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142977255212786,"max_error":0.49565199736480703,"r2":-0.00598899912963291,"rmse":0.25276221588781167},"train":{"mae":0.24963147846757922,"max_error":0.6792444812881471,"r2":-3.718358954074574e-12,"rmse":0.3095638956175499},"validation":{"mae":0.17219097940116296,"max_error":0.4582755339515685,"r2":-0.0009266982149573888,"rmse":0.21317148415510853}},"score":3.3261562494625085,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501413,-1.2501413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd*(-0.29157054)","loss":0.09530941,"metrics":{"blind":{"mae":0.2105699359424722,"max_error":0.4883373133554496,"r2":0.008267560089198378,"rmse":0.25096479177969877},"train":{"mae":0.24835207042966595,"max_error":0.6868324765739684,"r2":0.005430468418380907,"rmse":0.3087222128992583},"validation":{"mae":0.17072031340653415,"max_error":0.44903042782161373,"r2":0.0303094407348663,"rmse":0.20981887581982034}},"score":0.0027225251843146516,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2668017038299515,-1.2329111055484414],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":7.0,"expression":"3.855533 - 1.1906328*target_Cd","loss":0.09462008,"metrics":{"blind":{"mae":0.20798891724470003,"max_error":0.4650793647399243,"r2":0.04050783703538863,"rmse":0.24685177486984242},"train":{"mae":0.24649955358364223,"max_error":0.7109331847285776,"r2":0.012623375535763093,"rmse":0.30760381962452227},"validation":{"mae":0.16932344253629908,"max_error":0.419819992804348,"r2":0.10442134709817574,"rmse":0.20164146248650888}},"score":0.002419610304738049,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.3174713085828418,-1.1790785274548532],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..cb6efc9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"1.83892490000000","deployment_expression_hash":"7fb50bfbc183eb8f2b88f5721bfc40bd5b09c9f9672360dde75e90f260596bec","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"1.83892490000000","fitted_expression_hash":"7fb50bfbc183eb8f2b88f5721bfc40bd5b09c9f9672360dde75e90f260596bec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:21:44.489084+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5132871828216553,"max_error":0.8983485546661376,"r2":-0.10138747672740656,"rmse":0.5821154438779459},"train":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"validation":{"mae":0.5255322988306288,"max_error":0.9007460918975829,"r2":-0.03646906929591265,"rmse":0.5821919580836631}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389249,1.8389249],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.83892490000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132871828216553,"max_error":0.8983485546661376,"r2":-0.10138747672740656,"rmse":0.5821154438779459},"train":{"mae":0.32564723771026094,"max_error":0.8501412716461181,"r2":-1.458588805292038e-11,"rmse":0.3923107081636502},"validation":{"mae":0.5255322988306288,"max_error":0.9007460918975829,"r2":-0.03646906929591265,"rmse":0.5821919580836631}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389249,1.8389249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..ca72a8d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s0-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-1.16730840000000","deployment_expression_hash":"4cafc43a272f1840872f6b4ef91b385d46059bc1a3073b1db1a695fd00dd96dc","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-1.16730840000000","fitted_expression_hash":"4cafc43a272f1840872f6b4ef91b385d46059bc1a3073b1db1a695fd00dd96dc","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:21:43.596627+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4284027907866832,"max_error":1.0161035755523682,"r2":-1.344224287436191e-09,"rmse":0.5091415960354583},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5347259138759994,"max_error":1.1373013755432129,"r2":-0.025353407506530923,"rmse":0.6284511428693207},"train":{"mae":0.4284027907866832,"max_error":1.0161035755523682,"r2":-1.344224287436191e-09,"rmse":0.5091415960354583},"validation":{"mae":0.5885800185870098,"max_error":1.1132339736572265,"r2":-0.12351908056205141,"rmse":0.6903254444894439}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1673084,-1.1673084],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":30.018343,"metrics":{"blind":{"mae":5.362485073786229,"max_error":6.604667663574219,"r2":-74.63503256307311,"rmse":5.397544479989621},"train":{"mae":5.45548529042152,"max_error":6.325402982532978,"r2":-114.80025988764376,"rmse":5.478899653623264},"validation":{"mae":5.68173850251314,"max_error":6.5535192638635635,"r2":-76.08425107206772,"rmse":5.71803071202467}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.228517413139343,4.344752058386803],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"-1.16730840000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347259138759994,"max_error":1.1373013755432129,"r2":-0.025353407506530923,"rmse":0.6284511428693207},"train":{"mae":0.4284027907866832,"max_error":1.0161035755523682,"r2":-1.344224287436191e-09,"rmse":0.5091415960354583},"validation":{"mae":0.5885800185870098,"max_error":1.1132339736572265,"r2":-0.12351908056205141,"rmse":0.6903254444894439}},"score":4.751866995189369,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1673084,-1.1673084],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cl*0.20134164 - 1*1.1698992","loss":0.23126191,"metrics":{"blind":{"mae":0.4325109378074149,"max_error":1.0507305548501997,"r2":0.32647843083013606,"rmse":0.5093431677889952},"train":{"mae":0.40053828675640735,"max_error":1.022792413106532,"r2":0.10787236160392366,"rmse":0.4808970095426501},"validation":{"mae":0.5392610326647566,"max_error":1.0810085583012397,"r2":0.05015227858524318,"rmse":0.6347323709698001}},"score":0.022829206834007597,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.406009346550834,-0.9335938279207756],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..687d640 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"target_Cd*(-0.2915729)","deployment_expression_hash":"4e6dcd065b30ca3a31f287796d2f2aad29a1922298279b1bfa4c39cd3fb59946","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cd*(-0.2915729)","fitted_expression_hash":"4e6dcd065b30ca3a31f287796d2f2aad29a1922298279b1bfa4c39cd3fb59946","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:22:22.317035+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24835326245700573,"max_error":0.6868224192279855,"r2":0.0054304693449686026,"rmse":0.30872221275544826},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2105689171064773,"max_error":0.48834737291364005,"r2":0.008260857872245286,"rmse":0.2509656397995742},"train":{"mae":0.24835326245700573,"max_error":0.6868224192279855,"r2":0.0054304693449686026,"rmse":0.30872221275544826},"validation":{"mae":0.17071692858150658,"max_error":0.449040471754782,"r2":0.0303070551561897,"rmse":0.20981913391201454}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2668119574448096,-1.2329210848495364],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.25014220000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd*(-0.2915729)","loss":0.095309384,"metrics":{"blind":{"mae":0.2105689171064773,"max_error":0.48834737291364005,"r2":0.008260857872245286,"rmse":0.2509656397995742},"train":{"mae":0.24835326245700573,"max_error":0.6868224192279855,"r2":0.0054304693449686026,"rmse":0.30872221275544826},"validation":{"mae":0.17071692858150658,"max_error":0.449040471754782,"r2":0.0303070551561897,"rmse":0.20981913391201454}},"score":0.0027226615821978667,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2668119574448096,-1.2329210848495364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..a19918a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"1.83892730000000","deployment_expression_hash":"40abad1c7fec1f71fa01c382c1a07b2ade619cbcaab3c70d64e132f7d3b6eddd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"1.83892730000000","fitted_expression_hash":"40abad1c7fec1f71fa01c382c1a07b2ade619cbcaab3c70d64e132f7d3b6eddd","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:22:24.003285+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.32564735974415926,"max_error":0.8501388716461182,"r2":-9.873724060582845e-11,"rmse":0.392310708180157},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5132865828216553,"max_error":0.8983461546661378,"r2":-0.10138472128467368,"rmse":0.5821147157115164},"train":{"mae":0.32564735974415926,"max_error":0.8501388716461182,"r2":-9.873724060582845e-11,"rmse":0.392310708180157},"validation":{"mae":0.5255329757537063,"max_error":0.9007436918975831,"r2":-0.03647067224718481,"rmse":0.5821924082779847}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389273,1.8389273],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.83892730000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132865828216553,"max_error":0.8983461546661378,"r2":-0.10138472128467368,"rmse":0.5821147157115164},"train":{"mae":0.32564735974415926,"max_error":0.8501388716461182,"r2":-9.873724060582845e-11,"rmse":0.392310708180157},"validation":{"mae":0.5255329757537063,"max_error":0.9007436918975831,"r2":-0.03647067224718481,"rmse":0.5821924082779847}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389273,1.8389273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..d5da75c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s1-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-1.16733190000000","deployment_expression_hash":"6af00c3fb1d800fcabf21ad3c11996795ac0dfa614a16df0ec5413663bf6eb10","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-1.16733190000000","fitted_expression_hash":"6af00c3fb1d800fcabf21ad3c11996795ac0dfa614a16df0ec5413663bf6eb10","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:22:23.150010+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.42840358739685275,"max_error":1.0161270755523681,"r2":-6.8591168300713434e-09,"rmse":0.5091415974393889},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5347341388759994,"max_error":1.137277875543213,"r2":-0.02536546710729093,"rmse":0.628454838593907},"train":{"mae":0.42840358739685275,"max_error":1.0161270755523681,"r2":-6.8591168300713434e-09,"rmse":0.5091415974393889},"validation":{"mae":0.5885721852536764,"max_error":1.1132104736572266,"r2":-0.12349371882863314,"rmse":0.6903176529223034}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1673319,-1.1673319],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.16733190000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347341388759994,"max_error":1.137277875543213,"r2":-0.02536546710729093,"rmse":0.628454838593907},"train":{"mae":0.42840358739685275,"max_error":1.0161270755523681,"r2":-6.8591168300713434e-09,"rmse":0.5091415974393889},"validation":{"mae":0.5885721852536764,"max_error":1.1132104736572266,"r2":-0.12349371882863314,"rmse":0.6903176529223034}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1673319,-1.1673319],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..bce5125 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-1.25014220000000","deployment_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-1.25014220000000","fitted_expression_hash":"77bf42dcaf00c9c0fed599f26ee4d0cf0d7c03079fdcb2f6dd00bebe5cf9f33e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:23:00.639395+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.6670542,"metrics":{"blind":{"mae":1.4517560574007802,"max_error":2.69845350086689,"r2":-46.39399656118302,"rmse":1.73491101586468},"train":{"mae":1.3000969583680655,"max_error":2.9517030268907547,"r2":-26.83115532798653,"rmse":1.63311181523923},"validation":{"mae":1.2698764542971428,"max_error":2.6524334819987416,"r2":-50.23313766953331,"rmse":1.52511800836077}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.172684133052826,1.1736537562683225],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-1.25014220000000","loss":0.09582979,"metrics":{"blind":{"mae":0.21142968255212785,"max_error":0.4956528973648071,"r2":-0.0059895518991845975,"rmse":0.25276228533153206},"train":{"mae":0.24963158524724022,"max_error":0.679243581288147,"r2":-9.587886040662852e-13,"rmse":0.3095638956171227},"validation":{"mae":0.17219067940116295,"max_error":0.4582764339515686,"r2":-0.0009269553988853207,"rmse":0.2131715115418673}},"score":3.3261562494625085,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2501422,-1.2501422],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_0.75L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_lower.json new file mode 100644 index 0000000..e638fba --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"1.83892710000000","deployment_expression_hash":"530bc94d173b5bac31e9a55a9946225cbc0f1c84904820fd899540be23efb462","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"1.83892710000000","fitted_expression_hash":"530bc94d173b5bac31e9a55a9946225cbc0f1c84904820fd899540be23efb462","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:23:02.348404+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3256473495746677,"max_error":0.8501390716461181,"r2":-8.886535951546648e-11,"rmse":0.39231070817822056},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5132866328216552,"max_error":0.8983463546661377,"r2":-0.10138495090347122,"rmse":0.5821147763917089},"train":{"mae":0.3256473495746677,"max_error":0.8501390716461181,"r2":-8.886535951546648e-11,"rmse":0.39231070817822056},"validation":{"mae":0.5255329193434495,"max_error":0.900743891897583,"r2":-0.03647053866656669,"rmse":0.5821923707614266}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389271,1.8389271],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":6.155688,"metrics":{"blind":{"mae":2.2784571307711303,"max_error":3.2237260304391384,"r2":-16.87534077112278,"rmse":2.3451262039987597},"train":{"mae":2.449272155667008,"max_error":3.1435747370123863,"r2":-38.995973855055226,"rmse":2.481065902959803},"validation":{"mae":2.555820140510033,"max_error":3.2317652739584446,"r2":-19.98722227926321,"rmse":2.619784149250746}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.228517413139343,4.344752058386803],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"1.83892710000000","loss":0.15390766,"metrics":{"blind":{"mae":0.5132866328216552,"max_error":0.8983463546661377,"r2":-0.10138495090347122,"rmse":0.5821147763917089},"train":{"mae":0.3256473495746677,"max_error":0.8501390716461181,"r2":-8.886535951546648e-11,"rmse":0.39231070817822056},"validation":{"mae":0.5255329193434495,"max_error":0.900743891897583,"r2":-0.03647053866656669,"rmse":0.5821923707614266}},"score":3.688778999227355,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.8389271,1.8389271],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_0.75L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_upper.json new file mode 100644 index 0000000..b383690 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_0.75L-target_only-s2-20260718/formulas/illusion_0.75L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_0.75L-target_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-1.16725720000000","deployment_expression_hash":"7539f7276938e0b027667f695690e849fb87a259f762ed17a386b796cac6afaa","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-1.16725720000000","fitted_expression_hash":"7539f7276938e0b027667f695690e849fb87a259f762ed17a386b796cac6afaa","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_0.75L --mode per-scene --run-id article-discovery-illusion_0.75L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:23:01.425896+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.42840105519346294,"max_error":1.0160523755523683,"r2":-4.082922444581527e-09,"rmse":0.5091415967326508},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5347079938759995,"max_error":1.1373525755432128,"r2":-0.025327142901466315,"rmse":0.6284430938753585},"train":{"mae":0.42840105519346294,"max_error":1.0160523755523683,"r2":-4.082922444581527e-09,"rmse":0.5091415967326508},"validation":{"mae":0.5885970852536762,"max_error":1.1132851736572265,"r2":-0.12357434578124704,"rmse":0.6903424226247161}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_0.75L":197},"scene_sample_counts":{"illusion_0.75L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672572,-1.1672572],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.0642493,"metrics":{"blind":{"mae":1.2850665187244885,"max_error":2.1217537302873097,"r2":-4.039612781455497,"rmse":1.3932636776188412},"train":{"mae":1.1903751263354503,"max_error":2.7293727239593863,"r2":-6.963152369599728,"rmse":1.4367496242108286},"validation":{"mae":1.408416786765417,"max_error":2.5440643671900034,"r2":-4.956151281703764,"rmse":1.5894486982761837}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.172684133052826,1.1736537562683225],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-1.16725720000000","loss":0.25922513,"metrics":{"blind":{"mae":0.5347079938759995,"max_error":1.1373525755432128,"r2":-0.025327142901466315,"rmse":0.6284430938753585},"train":{"mae":0.42840105519346294,"max_error":1.0160523755523683,"r2":-4.082922444581527e-09,"rmse":0.5091415967326508},"validation":{"mae":0.5885970852536762,"max_error":1.1132851736572265,"r2":-0.12357434578124704,"rmse":0.6903424226247161}},"score":2.074824992252211,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1672572,-1.1672572],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cl*0.20134811 - 1.1698997","loss":0.2312619,"metrics":{"blind":{"mae":0.43250817883523085,"max_error":1.050727356199618,"r2":0.3264871600963999,"rmse":0.5093398670732192},"train":{"mae":0.40053864554723373,"max_error":1.0227953262059015,"r2":0.10787236144861645,"rmse":0.48089700958450887},"validation":{"mae":0.5392604624619076,"max_error":1.0810084480881668,"r2":0.05015644721477508,"rmse":0.634730978132322}},"score":0.02282921548221104,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.406017433817175,-0.9335867343809726],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_0.75L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..c162639 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:35:29.071669+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..34161a8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:35:30.667584+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_a","loss":191.64392,"metrics":{"blind":{"mae":8.946770895536611,"max_error":22.72684144973755,"r2":-13.214181416226406,"rmse":10.600821175427468},"train":{"mae":10.379043003482057,"max_error":36.916726121795364,"r2":-25.31807816849691,"rmse":13.843551563619178},"validation":{"mae":13.343664954165714,"max_error":37.26983158290386,"r2":-41.36342576713366,"rmse":17.210617717983677}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-36.914467497263104,24.888122081756592],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_a"]},{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":3.2702562308705003,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - (Cl_F - 1*(-0.59404755))","loss":1.0782164,"metrics":{"blind":{"mae":0.850160636606725,"max_error":2.35873895406698,"r2":0.869266048684074,"rmse":1.0166530671683427},"train":{"mae":0.911267140577165,"max_error":2.3369390204360068,"r2":0.8519306746517525,"rmse":1.0383720394256022},"validation":{"mae":0.8205551018956302,"max_error":1.8085162481337145,"r2":0.8731427425060434,"rmse":0.9417997720423049}},"score":0.09437941981072263,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031663324495137,0.6086039969187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..50c4f24 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.7488202","deployment_expression_hash":"e2c6c6a743005012a2483e771e1e00797512f78727024be5c26163684524e96d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.7488202","fitted_expression_hash":"e2c6c6a743005012a2483e771e1e00797512f78727024be5c26163684524e96d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:35:29.871786+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7160473385261967,"max_error":1.7155727306623305,"r2":0.949156062673045,"rmse":0.8560271631971101},"train":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"validation":{"mae":0.6933020127867742,"max_error":2.438225590970476,"r2":0.9256753930684369,"rmse":0.8852977169089}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0652392309471148,2.103221318812823],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":20.969328,"metrics":{"blind":{"mae":4.191663545393385,"max_error":9.973199748899788,"r2":-0.7973199585785216,"rmse":5.089564903194417},"train":{"mae":3.7302562353216997,"max_error":8.877923464402556,"r2":-0.7381366570431249,"rmse":4.579227732129818},"validation":{"mae":3.466056225522875,"max_error":8.178853660821915,"r2":-0.7269867739059013,"rmse":4.267441137594878}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.739195198751986,5.0361244939267635],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"0.143827810000000","loss":12.064256,"metrics":{"blind":{"mae":3.4650387822698177,"max_error":7.235419645021973,"r2":-0.0035163114270235774,"rmse":3.803033722674547},"train":{"mae":3.091486338841713,"max_error":6.597023381899414,"r2":-1.5720758028692217e-11,"rmse":3.4733638727164386},"validation":{"mae":2.919128959490879,"max_error":5.649128542233886,"r2":-0.011766460288657354,"rmse":3.266353414651336}},"score":0.5528137674210594,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382781,0.14382781],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381931945046,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.7488202","loss":0.91714734,"metrics":{"blind":{"mae":0.7160473385261967,"max_error":1.7155727306623305,"r2":0.949156062673045,"rmse":0.8560271631971101},"train":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"validation":{"mae":0.6933020127867742,"max_error":2.438225590970476,"r2":0.9256753930684369,"rmse":0.8852977169089}},"score":0.6258072168923339,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0652392309471148,2.103221318812823],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..3edf0ef --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:36:12.265733+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":12.471686,"metrics":{"blind":{"mae":3.2428961154930223,"max_error":6.226958494167775,"r2":0.40691009585619586,"rmse":3.7159234327646655},"train":{"mae":3.0982147504648805,"max_error":6.838292457978241,"r2":0.3898880700202144,"rmse":3.5315273100880353},"validation":{"mae":3.005148292302739,"max_error":6.6842275691451505,"r2":0.3813697308736541,"rmse":3.4249355932022034}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.3322020899504423],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.17908929289150666,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..37399c3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:36:14.097306+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":7.5975533,"metrics":{"blind":{"mae":2.6558976942906156,"max_error":4.736926860176027,"r2":-0.04357067873523324,"rmse":2.872364268391371},"train":{"mae":2.469170547650843,"max_error":5.412976400926709,"r2":-0.04335681064907715,"rmse":2.756365872185182},"validation":{"mae":2.407381284301384,"max_error":4.681656027212739,"r2":-0.03506926123670895,"rmse":2.690206561278342}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0887602111324668,1.1846119305118918],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":7.4590683,"metrics":{"blind":{"mae":2.603286109749732,"max_error":5.59873563700196,"r2":-0.043665725025229696,"rmse":2.8724950699541356},"train":{"mae":2.421452895586196,"max_error":5.025533917378795,"r2":-0.02433891666622312,"rmse":2.7311293713261584},"validation":{"mae":2.3256521447799496,"max_error":4.736126283897318,"r2":-0.004749402239728973,"rmse":2.650512154509886}},"score":0.018395747595291514,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6509840597665262,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 1*0.17549714","loss":1.2533977,"metrics":{"blind":{"mae":0.9624630429663499,"max_error":1.942548719155245,"r2":0.8446786723192736,"rmse":1.108138716262782},"train":{"mae":0.9537660591101255,"max_error":2.534066990695071,"r2":0.8278733879525801,"rmse":1.119552455328835},"validation":{"mae":0.879851283690775,"max_error":1.7960401223177245,"r2":0.8559258973389283,"rmse":1.003676795382573}},"score":0.044196143363340205,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7846159224495137,1.027154406918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..aacb5c2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 0.36529","deployment_expression_hash":"140defc5e6e4f0eb8a7d7021631ba852e3d8673c61fca4fd4796bfb0cfdcc300","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F - 0.36529","fitted_expression_hash":"140defc5e6e4f0eb8a7d7021631ba852e3d8673c61fca4fd4796bfb0cfdcc300","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:36:13.198460+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.385891279309094,"r2":0.4500958545600159,"rmse":2.815214270168483},"train":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"validation":{"mae":1.959210752500087,"max_error":4.560068361474164,"r2":0.4638546825498884,"rmse":2.377739608462646}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.697492089950442,3.3689612514442207],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":79.64449,"metrics":{"blind":{"mae":8.918612605868839,"max_error":16.039940646849573,"r2":-5.546913059479274,"rmse":9.713734864892977},"train":{"mae":8.168622492607367,"max_error":15.619017649441957,"r2":-5.601689890426466,"rmse":8.924375652088562},"validation":{"mae":7.8344310045194545,"max_error":13.831453628838062,"r2":-5.928242845213141,"rmse":8.547410945784991}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.413439754396677,12.009300757199526],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"0.143781530000000","loss":12.064255,"metrics":{"blind":{"mae":3.465034154269817,"max_error":7.235373365021973,"r2":-0.003514865806151679,"rmse":3.80303098343312},"train":{"mae":3.091486338841713,"max_error":6.596977101899414,"r2":-8.759748482134455e-11,"rmse":3.473363872841266},"validation":{"mae":2.9191348928242125,"max_error":5.649174822233887,"r2":-0.011769552376035719,"rmse":3.266358405843892}},"score":1.8873259080008291,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378153,0.14378153],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":9.1098385,"metrics":{"blind":{"mae":2.7927571163294713,"max_error":6.190081419888884,"r2":0.3002396330111866,"rmse":3.1757231073329266},"train":{"mae":2.6384921903613834,"max_error":5.672955624293536,"r2":0.24489027443629796,"rmse":3.0182507325257593},"validation":{"mae":2.427702316368269,"max_error":5.4019861604319885,"r2":0.2598294369589328,"rmse":2.793758991137804}},"score":0.28089196496706703,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4428394933929667,1.5384713769890368],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"-Cl_F - 0.36529","loss":6.1790094,"metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.385891279309094,"r2":0.4500958545600159,"rmse":2.815214270168483},"train":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"validation":{"mae":1.959210752500087,"max_error":4.560068361474164,"r2":0.4638546825498884,"rmse":2.377739608462646}},"score":0.3881970159836026,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.697492089950442,3.3689612514442207],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.36529","loss":6.144563,"metrics":{"blind":{"mae":2.4444275594940335,"max_error":4.849125986815393,"r2":0.48837028774601865,"rmse":2.7154751778632837},"train":{"mae":2.197180150723919,"max_error":4.770331701250784,"r2":0.4906803215769452,"rmse":2.4788229642115733},"validation":{"mae":2.0433020978140237,"max_error":4.542349949492104,"r2":0.4706197178286933,"rmse":2.3626909305950345}},"score":0.0027951707988204035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5128801594385504,2.280201040311754],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":7.0,"expression":"-Cl_F + Cl_rear_s*0.282767155498103","loss":4.9887347,"metrics":{"blind":{"mae":2.203116660248301,"max_error":5.233496907093516,"r2":0.5644260502169456,"rmse":2.5055259637718397},"train":{"mae":1.9617524636365244,"max_error":4.854007445872771,"r2":0.5864863544001163,"rmse":2.2335475649407064},"validation":{"mae":1.787527494342338,"max_error":4.052039510647688,"r2":0.5929226834530358,"rmse":2.0718651489677287}},"score":0.20838531528622783,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5622035689040388,3.018398004135726],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..158c70d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F","deployment_expression_hash":"51706c82567e2fab40e68cebf38592735362f9778a63f093b220d42a92849e6b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F","fitted_expression_hash":"51706c82567e2fab40e68cebf38592735362f9778a63f093b220d42a92849e6b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:36:56.621918+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5281394128538524,"max_error":6.5520814172923565,"r2":0.6052144804848902,"rmse":3.031706105458745},"train":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"validation":{"mae":2.5145889475720766,"max_error":6.6223766470793635,"r2":0.4931295601776019,"rmse":3.100168563587967}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.468502502888441,6.664404179900885],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F + Cl_F","loss":9.631797,"metrics":{"blind":{"mae":2.5281394128538524,"max_error":6.5520814172923565,"r2":0.6052144804848902,"rmse":3.031706105458745},"train":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"validation":{"mae":2.5145889475720766,"max_error":6.6223766470793635,"r2":0.4931295601776019,"rmse":3.100168563587967}},"score":0.7517073553692639,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.468502502888441,6.664404179900885],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_F - Cl_rear_s + 1.1968722","loss":8.678935,"metrics":{"blind":{"mae":2.6892490512451417,"max_error":6.155007798106309,"r2":0.5956852150941833,"rmse":3.068077335411973},"train":{"mae":2.473942405765389,"max_error":6.379296006749284,"r2":0.5754284444280373,"rmse":2.9460034968485105},"validation":{"mae":2.4228819565861306,"max_error":5.707997869232569,"r2":0.5541162892769211,"rmse":2.907686829538924}},"score":0.03472366249033484,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0057793469187870095,1.8059909824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..026516c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_F*(-1.2758577) + Cl_rear_s","deployment_expression_hash":"63d32c3c524cb1e364f68113ed55ddd936675ce16136d4129b110fc490abab18","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F*(-1.2758577) + Cl_rear_s","fitted_expression_hash":"63d32c3c524cb1e364f68113ed55ddd936675ce16136d4129b110fc490abab18","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:36:58.102441+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.857014485189054,"max_error":2.2698428205255246,"r2":0.8721225301382429,"rmse":1.0054850064795287},"train":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"validation":{"mae":0.8029596981246041,"max_error":2.0283650756907607,"r2":0.8706170784457591,"rmse":0.9511289455034331}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5283323869184358,2.2327735083643114],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190564840000000","loss":7.2818346,"metrics":{"blind":{"mae":2.560605532779184,"max_error":4.544629366237793,"r2":-0.0030287738153189636,"rmse":2.816017032899438},"train":{"mae":2.394518314936273,"max_error":4.85748550192627,"r2":-1.9545460805403536e-09,"rmse":2.6984876627560244},"validation":{"mae":2.3222467386540027,"max_error":4.930033414523926,"r2":-0.009521599501956413,"rmse":2.6567991864362264}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19056484,-0.19056484],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_F*(-1.238342)","loss":3.3506489,"metrics":{"blind":{"mae":1.4893296581537059,"max_error":4.780798659522901,"r2":0.545419079295379,"rmse":1.8957636138169245},"train":{"mae":1.437354217477816,"max_error":4.852917384267581,"r2":0.5398619949270989,"rmse":1.8304778966418376},"validation":{"mae":1.4984236397023367,"max_error":4.418475551743264,"r2":0.5134741083464254,"rmse":1.8443948483427763}},"score":0.3881144036916243,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.126405800473411,4.624280163215939],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_F*(-1.2758577) + Cl_rear_s","loss":1.120188,"metrics":{"blind":{"mae":0.857014485189054,"max_error":2.2698428205255246,"r2":0.8721225301382429,"rmse":1.0054850064795287},"train":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"validation":{"mae":0.8029596981246041,"max_error":2.0283650756907607,"r2":0.8706170784457591,"rmse":0.9511289455034331}},"score":0.5478287501041871,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5283323869184358,2.2327735083643114],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..cb95daf --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:36:57.439093+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143823330000000","loss":12.064255,"metrics":{"blind":{"mae":3.465038334269818,"max_error":7.235415165021973,"r2":-0.003516171474931218,"rmse":3.803033457485761},"train":{"mae":3.091486338841713,"max_error":6.597018901899414,"r2":-7.156275572128834e-12,"rmse":3.473363872701565},"validation":{"mae":2.919129533849853,"max_error":5.649133022233887,"r2":-0.011766759591370857,"rmse":3.2663538977807964}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382333,0.14382333],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..8c29c00 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F - Cl_tot","deployment_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_s*Cl_F - Cl_tot","fitted_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:41:37.509726+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2507785211212867,"max_error":4.001777603933579,"r2":0.8901939245008494,"rmse":1.5988940119791073},"train":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"validation":{"mae":1.9290069916072292,"max_error":4.776706961830401,"r2":0.7403310088912097,"rmse":2.218946704087503}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.232171973526933,11.187869097014694],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":26.876112,"metrics":{"blind":{"mae":4.9802059647059425,"max_error":9.474022333975881,"r2":-0.3383869989322399,"rmse":5.582096572166272},"train":{"mae":4.606637572187506,"max_error":9.147010634187609,"r2":-0.3147731660934172,"rmse":5.184217650919956},"validation":{"mae":4.400175814454717,"max_error":8.548744691303,"r2":-0.3046091881710049,"rmse":4.97367086645555}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.2744606942037784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.7131195,"metrics":{"blind":{"mae":1.2507785211212867,"max_error":4.001777603933579,"r2":0.8901939245008494,"rmse":1.5988940119791073},"train":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"validation":{"mae":1.9290069916072292,"max_error":4.776706961830401,"r2":0.7403310088912097,"rmse":2.218946704087503}},"score":0.4267050051828752,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.232171973526933,11.187869097014694],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..8e1af61 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:41:39.195292+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3227209","loss":1.0684577,"metrics":{"blind":{"mae":0.8845928930637843,"max_error":1.8622569873317403,"r2":0.8788041057066416,"rmse":0.9788644027068699},"train":{"mae":0.892192103079984,"max_error":2.714166815256423,"r2":0.8532708205488431,"rmse":1.0336623095038426},"validation":{"mae":0.7528927060089874,"max_error":2.1298423058250737,"r2":0.8836777623653503,"rmse":0.9018458182118712}},"score":0.09741008236744514,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8056941441285255,1.5907723365268107],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..6cbb809 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.7256862","deployment_expression_hash":"09a7dc2e7d33262323d24ad8374169783f6c89ea9f6456225d5bac6a5136fe1d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.7256862","fitted_expression_hash":"09a7dc2e7d33262323d24ad8374169783f6c89ea9f6456225d5bac6a5136fe1d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:41:38.396260+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7272594113406761,"max_error":1.6452022395889214,"r2":0.9474836249589981,"rmse":0.8699921400740901},"train":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"validation":{"mae":0.691179485238551,"max_error":2.4167119088150573,"r2":0.9267276401052396,"rmse":0.879008598230566}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0511478770339275,2.0753991779264034],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":9.464525,"metrics":{"blind":{"mae":2.871323101643088,"max_error":6.173607891763822,"r2":0.2597775952635182,"rmse":3.2662473579754896},"train":{"mae":2.657563481553691,"max_error":6.2327276398427784,"r2":0.21549047083446882,"rmse":3.076446693638971},"validation":{"mae":2.5147417782239083,"max_error":5.5459857085952535,"r2":0.21066761018846647,"rmse":2.8850476854011875}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":0.5740708802525868,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.7256862","loss":0.92111176,"metrics":{"blind":{"mae":0.7272594113406761,"max_error":1.6452022395889214,"r2":0.9474836249589981,"rmse":0.8699921400740901},"train":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"validation":{"mae":0.691179485238551,"max_error":2.4167119088150573,"r2":0.9267276401052396,"rmse":0.879008598230566}},"score":0.6214939771034674,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0511478770339275,2.0753991779264034],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..cf8f054 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*2.134053","deployment_expression_hash":"253dc16f1fa2751464c22f2b1a43b4bb78f7f134a0f6c65931867ca3ba0796bf","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*2.134053","fitted_expression_hash":"253dc16f1fa2751464c22f2b1a43b4bb78f7f134a0f6c65931867ca3ba0796bf","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:42:21.550666+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.386519629147577,"max_error":4.395785460702027,"r2":0.8697027353832361,"rmse":1.7417031619759435},"train":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"validation":{"mae":2.099846207439779,"max_error":4.670135654499427,"r2":0.6948271358959908,"rmse":2.4055244903329154}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5665221416566792,1.2998917650427328],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*2.134053","loss":4.0856447,"metrics":{"blind":{"mae":1.386519629147577,"max_error":4.395785460702027,"r2":0.8697027353832361,"rmse":1.7417031619759435},"train":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"validation":{"mae":2.099846207439779,"max_error":4.670135654499427,"r2":0.6948271358959908,"rmse":2.4055244903329154}},"score":0.2544839540903014,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5665221416566792,1.2998917650427328],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..42039ce --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:42:23.273629+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":12.82839,"metrics":{"blind":{"mae":3.066237190621905,"max_error":7.920327190309763,"r2":-0.8447311707786469,"rmse":3.818960131678844},"train":{"mae":2.8051718414240217,"max_error":8.15645425580442,"r2":-0.7616972959141541,"rmse":3.581674214259532},"validation":{"mae":2.5296275901297727,"max_error":6.603535659611225,"r2":-0.5204823899841422,"rmse":3.2605556663091}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.2752949260175228,3.448729170486331],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-0.190555840000000","loss":7.281835,"metrics":{"blind":{"mae":2.560606432779184,"max_error":4.544638366237793,"r2":-0.003029126137490401,"rmse":2.8160175274740573},"train":{"mae":2.3945180098515273,"max_error":4.85747650192627,"r2":-2.2605695093602662e-09,"rmse":2.698487663168925},"validation":{"mae":2.3222460463463106,"max_error":4.930024414523926,"r2":-0.009520935271226216,"rmse":2.6567983123945242}},"score":0.5662777927275988,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19055584,-0.19055584],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3173803","loss":1.068355,"metrics":{"blind":{"mae":0.8853839861797794,"max_error":1.8460116063069867,"r2":0.8786933766838456,"rmse":0.9793114638623729},"train":{"mae":0.892098329365764,"max_error":2.714090646972409,"r2":0.8532849258471034,"rmse":1.0336126245480297},"validation":{"mae":0.7538968338571171,"max_error":2.124875764331202,"r2":0.883723530183266,"rmse":0.9016683819070377}},"score":0.09744212385929855,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8024410843589753,1.5843494556753357],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..1abb77f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:42:22.465484+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":12.77347,"metrics":{"blind":{"mae":3.4994011299560723,"max_error":7.357363823801279,"r2":-0.083406320608441,"rmse":3.9515150550024125},"train":{"mae":3.085396948542978,"max_error":7.221683262847364,"r2":-0.05878635781204378,"rmse":3.573999202135012},"validation":{"mae":2.8812344467425226,"max_error":6.01305794948712,"r2":-0.06482280799802931,"rmse":3.3509018413431946}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0987235143838916,2.9128919122740626],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"0.143808250000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650368262698175,"max_error":7.235400085021973,"r2":-0.003515700406657718,"rmse":3.803032564880008},"train":{"mae":3.091486338841713,"max_error":6.597003821899414,"r2":-2.7771118737973666e-12,"rmse":3.47336387269396},"validation":{"mae":2.9191314671831865,"max_error":5.6491481022338865,"r2":-0.011767767093656012,"rmse":3.2663555240736972}},"score":0.05712341544089163,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14380825,0.14380825],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..76d8a91 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*2.1342423","deployment_expression_hash":"07cff7c161bb52124f1e35ba8c69c698fa9181c452d0c5b49ec54b305fb06a77","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*2.1342423","fitted_expression_hash":"07cff7c161bb52124f1e35ba8c69c698fa9181c452d0c5b49ec54b305fb06a77","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:00.929201+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.3864668290324642,"max_error":4.395499430741707,"r2":0.8697120440701003,"rmse":1.741640945554997},"train":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"validation":{"mae":2.09991304360981,"max_error":4.669953336131166,"r2":0.694812254461288,"rmse":2.4055831410575395}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5667498035945107,1.300007071228249],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*2.1342423","loss":4.0856447,"metrics":{"blind":{"mae":1.3864668290324642,"max_error":4.395499430741707,"r2":0.8697120440701003,"rmse":1.741640945554997},"train":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"validation":{"mae":2.09991304360981,"max_error":4.669953336131166,"r2":0.694812254461288,"rmse":2.4055831410575395}},"score":0.2544839540903014,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5667498035945107,1.300007071228249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..00d0b17 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:02.712713+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":8.101086,"metrics":{"blind":{"mae":2.464478864030616,"max_error":5.109544320963323,"r2":-0.05550680533513175,"rmse":2.8887442918873947},"train":{"mae":2.396869670327652,"max_error":5.629323720932007,"r2":-0.11250605318905915,"rmse":2.8462407208405156},"validation":{"mae":2.406934879278803,"max_error":5.637858564266935,"r2":-0.19806430118381768,"rmse":2.8942829465407396}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7558916006237268,1.3834001147188246],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"-0.190674700000000","loss":7.281835,"metrics":{"blind":{"mae":2.5605945467791846,"max_error":4.544519506237793,"r2":-0.0030244747876635447,"rmse":2.8160109981034323},"train":{"mae":2.3945220390040696,"max_error":4.857595361926269,"r2":-1.22397647572825e-11,"rmse":2.69848766013538},"validation":{"mae":2.3222551894232337,"max_error":4.9301432745239255,"r2":-0.009529709412623433,"rmse":2.6568098580062056}},"score":0.10661523587908218,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.1906747,-0.1906747],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.5940415","loss":1.0782163,"metrics":{"blind":{"mae":0.850161241606725,"max_error":2.3587329040669798,"r2":0.8692660135694263,"rmse":1.0166532037029286},"train":{"mae":0.911267140577165,"max_error":2.3369329704360067,"r2":0.8519306746531529,"rmse":1.0383720394206917},"validation":{"mae":0.8205555672802456,"max_error":1.8085101981337144,"r2":0.8731428557980092,"rmse":0.941799351497302}},"score":0.09437945072597759,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031602824495136,0.6086100469187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..410a64e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 0.65825987","deployment_expression_hash":"08af4baaec8d759cffa0be254df317cb34921d9809d780a6635c4a445f55e91d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F - 0.65825987","fitted_expression_hash":"08af4baaec8d759cffa0be254df317cb34921d9809d780a6635c4a445f55e91d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:01.816606+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4283804456968627,"max_error":5.338348132539357,"r2":0.4326714995178855,"rmse":2.859468121172649},"train":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"validation":{"mae":1.9995138309011504,"max_error":4.853038231474164,"r2":0.4364754820232333,"rmse":2.437695422255785}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.9904619599504425,3.0759913814442204],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143823330000000","loss":12.064255,"metrics":{"blind":{"mae":3.465038334269818,"max_error":7.235415165021973,"r2":-0.003516171474931218,"rmse":3.803033457485761},"train":{"mae":3.091486338841713,"max_error":6.597018901899414,"r2":-7.156275572128834e-12,"rmse":3.473363872701565},"validation":{"mae":2.919129533849853,"max_error":5.649133022233887,"r2":-0.011766759591370857,"rmse":3.2663538977807964}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382333,0.14382333],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_F - 0.65825987","loss":6.330698,"metrics":{"blind":{"mae":2.4283804456968627,"max_error":5.338348132539357,"r2":0.4326714995178855,"rmse":2.859468121172649},"train":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"validation":{"mae":1.9995138309011504,"max_error":4.853038231474164,"r2":0.4364754820232333,"rmse":2.437695422255785}},"score":0.3224182248353804,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.9904619599504425,3.0759913814442204],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"-Cd_rear_s + Cd_rear_s - Cl_F","loss":6.230333,"metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.751181279309094,"r2":0.4551374783487877,"rmse":2.8022793496604264},"train":{"mae":2.1528677745667726,"max_error":5.56093297235202,"r2":0.483570939447598,"rmse":2.496063440324064},"validation":{"mae":1.955529954665018,"max_error":4.690463332692161,"r2":0.4751896389217174,"rmse":2.3524707592077654}},"score":0.015980716225110724,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3322020899504423,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..4f7f5d9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","deployment_expression_hash":"2dc10f9933aa1c0de5341282f1fd07632318632cd92b1286fc06461aa0001a33","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","fitted_expression_hash":"2dc10f9933aa1c0de5341282f1fd07632318632cd92b1286fc06461aa0001a33","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:39:34.236364+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.9878341766104959,"max_error":7.255011921150796,"r2":0.7007762883494801,"rmse":2.6393956336404947},"train":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"validation":{"mae":2.330805658838245,"max_error":6.170408169972479,"r2":0.6018779490119056,"rmse":2.7475458108314688}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1000676742312168,3.0675980200048434],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":26.876112,"metrics":{"blind":{"mae":4.9802059647059425,"max_error":9.474022333975881,"r2":-0.3383869989322399,"rmse":5.582096572166272},"train":{"mae":4.606637572187506,"max_error":9.147010634187609,"r2":-0.3147731660934172,"rmse":5.184217650919956},"validation":{"mae":4.400175814454717,"max_error":8.548744691303,"r2":-0.3046091881710049,"rmse":4.97367086645555}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.2744606942037784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","loss":6.1158457,"metrics":{"blind":{"mae":1.9878341766104959,"max_error":7.255011921150796,"r2":0.7007762883494801,"rmse":2.6393956336404947},"train":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"validation":{"mae":2.330805658838245,"max_error":6.170408169972479,"r2":0.6018779490119056,"rmse":2.7475458108314688}},"score":0.1771996552098137,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1000676742312168,3.0675980200048434],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_F*2.16617 - Cl_rear_s","loss":5.1981616,"metrics":{"blind":{"mae":1.6743529543186835,"max_error":4.164195125696715,"r2":0.8300528673377916,"rmse":1.989131119271582},"train":{"mae":1.9423863623227544,"max_error":4.808203913070174,"r2":0.7457071304109751,"rmse":2.2799477895894977},"validation":{"mae":2.0100661056491864,"max_error":4.809432679267629,"r2":0.6866959625501288,"rmse":2.437360797733557}},"score":0.16257803422439096,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.557423328815494,4.495032893687021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cd_rear_s*(Cl_F - Cl_rear_s) + Cl_rear_s","loss":4.3726034,"metrics":{"blind":{"mae":1.504226609805059,"max_error":5.603823625240906,"r2":0.8281270358622314,"rmse":2.0003697318547125},"train":{"mae":1.7264422587415433,"max_error":4.432853025711526,"r2":0.7860932367045816,"rmse":2.0910772092891885},"validation":{"mae":1.9789722482506158,"max_error":5.256828597768205,"r2":0.7225903623501921,"rmse":2.293493948041881}},"score":0.17294644918663044,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.623245500698237,5.790681327505772],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..17fbe4d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:39:36.011164+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.5940359","loss":1.0782163,"metrics":{"blind":{"mae":0.8501618016067249,"max_error":2.3587273040669796,"r2":0.8692659810583601,"rmse":1.0166533301141187},"train":{"mae":0.911267140577165,"max_error":2.3369273704360065,"r2":0.85193067464549,"rmse":1.0383720394475608},"validation":{"mae":0.8205559980494763,"max_error":1.8085045981337142,"r2":0.8731429606539692,"rmse":0.9417989622669747}},"score":0.09437945072597759,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031546824495136,0.6086156469187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..505b13f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:39:35.098998+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143823130000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650383142698176,"max_error":7.235414965021973,"r2":-0.0035161652271349375,"rmse":3.8030334456470984},"train":{"mae":3.091486338841713,"max_error":6.597018701899414,"r2":-6.851408329566766e-12,"rmse":3.4733638727010354},"validation":{"mae":2.919129559490879,"max_error":5.649133222233886,"r2":-0.011766772953188065,"rmse":3.2663539193492177}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382313,0.14382313],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.115698084","loss":2.9557192,"metrics":{"blind":{"mae":1.7263071365276885,"max_error":3.8047034807992492,"r2":0.751535860354166,"rmse":1.8923428203529682},"train":{"mae":1.5402657343754362,"max_error":3.1006026428682123,"r2":0.7550019491767872,"rmse":1.719220564586204},"validation":{"mae":1.402198580778,"max_error":2.5399597845413115,"r2":0.7754565244303062,"rmse":1.5387683817263578}},"score":0.00522227755513013,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7248168664495137,1.0869534629187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.9684213766983452,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..ed46442 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:40:13.624823+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..f8534fc --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:40:15.405032+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190640510000000","loss":7.281835,"metrics":{"blind":{"mae":2.560597965779184,"max_error":4.544553696237793,"r2":-0.0030258123791890856,"rmse":2.816012875760103},"train":{"mae":2.394520880021019,"max_error":4.857561171926269,"r2":-2.614242156084856e-10,"rmse":2.6984876604715904},"validation":{"mae":2.3222525594232333,"max_error":4.9301090845239255,"r2":-0.009527185122657045,"rmse":2.6568065363790176}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19064051,-0.19064051],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3173821","loss":1.068355,"metrics":{"blind":{"mae":0.8853837195491373,"max_error":1.84601708166291,"r2":0.8786934187824809,"rmse":0.9793112939306801},"train":{"mae":0.8920983145845278,"max_error":2.714090672644227,"r2":0.8532849258455403,"rmse":1.0336126245535358},"validation":{"mae":0.7538964954250822,"max_error":2.1248774382582303,"r2":0.8837235196971325,"rmse":0.9016684225645107}},"score":0.09744212385929855,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8024421807727831,1.5843516204481203],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..e8ebc9b --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.761219","deployment_expression_hash":"2b48fa378257f3ccdc091cd07ce2a7abe378cf4a74cdbd8f681dbdb3a35e3016","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.761219","fitted_expression_hash":"2b48fa378257f3ccdc091cd07ce2a7abe378cf4a74cdbd8f681dbdb3a35e3016","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:40:14.550381+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7112898397896394,"max_error":1.75328819900853,"r2":0.9499322441125659,"rmse":0.8494679963367596},"train":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"validation":{"mae":0.6946843343032865,"max_error":2.4497559723272935,"r2":0.9249612834128556,"rmse":0.8895405133677108}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.07279157290695,2.118132754812759],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":20.969328,"metrics":{"blind":{"mae":4.191663545393385,"max_error":9.973199748899788,"r2":-0.7973199585785216,"rmse":5.089564903194417},"train":{"mae":3.7302562353216997,"max_error":8.877923464402556,"r2":-0.7381366570431249,"rmse":4.579227732129818},"validation":{"mae":3.466056225522875,"max_error":8.178853660821915,"r2":-0.7269867739059013,"rmse":4.267441137594878}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.739195198751986,5.0361244939267635],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"0.144155530000000","loss":12.064255,"metrics":{"blind":{"mae":3.465071554269817,"max_error":7.235747365021973,"r2":-0.0035265567263156328,"rmse":3.803053135970981},"train":{"mae":3.0914863388417126,"max_error":6.597351101899414,"r2":-9.666281330922288e-09,"rmse":3.473363889476393},"validation":{"mae":2.9190869441062635,"max_error":5.648800822233887,"r2":-0.011744576084885328,"rmse":3.2663180893400816}},"score":0.5528138503105506,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14415553,0.14415553],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.761219","loss":0.9166092,"metrics":{"blind":{"mae":0.7112898397896394,"max_error":1.75328819900853,"r2":0.9499322441125659,"rmse":0.8494679963367596},"train":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"validation":{"mae":0.6946843343032865,"max_error":2.4497559723272935,"r2":0.9249612834128556,"rmse":0.8895405133677108}},"score":0.62639414324129,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.07279157290695,2.118132754812759],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..fb8ca14 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:40:55.804852+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..b7046f6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:40:57.340602+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":9.154741,"metrics":{"blind":{"mae":2.803621444680016,"max_error":6.160513136186637,"r2":-0.34409202415370643,"rmse":3.259815973005322},"train":{"mae":2.53182666864604,"max_error":6.420141713228077,"r2":-0.25720254553019894,"rmse":3.0256804718266026},"validation":{"mae":2.5128238714135547,"max_error":5.706686818040907,"r2":-0.23500276794665464,"rmse":2.9385621971416147}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0987235143838916,2.9128919122740626],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"-0.190663890000000","loss":7.281835,"metrics":{"blind":{"mae":2.5605956277791844,"max_error":4.544530316237793,"r2":-0.0030248976677866857,"rmse":2.8160115917255135},"train":{"mae":2.3945216725633918,"max_error":4.857584551926269,"r2":-5.631761723634554e-11,"rmse":2.6984876601948518},"validation":{"mae":2.3222543578847716,"max_error":4.9301324645239255,"r2":-0.009528911260813233,"rmse":2.656808807745873}},"score":0.22888899628841797,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19066389,-0.19066389],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.2746769","loss":1.0749221,"metrics":{"blind":{"mae":0.8917095611656596,"max_error":1.7161136540071604,"r2":0.8767878206923864,"rmse":0.9869732930341507},"train":{"mae":0.892449001053716,"max_error":2.713481605909691,"r2":0.8523830824883538,"rmse":1.0367845160626001},"validation":{"mae":0.7619258330612954,"max_error":2.085163333512679,"r2":0.8830349389057175,"rmse":0.9043342887701387}},"score":0.09539942001679175,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7764296413445204,1.5329921456066442],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..c211c21 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:40:56.481240+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":16.349226,"metrics":{"blind":{"mae":3.739293554914184,"max_error":10.276724819093943,"r2":-0.40104513887056603,"rmse":4.493595978972901},"train":{"mae":3.293040373725659,"max_error":9.735904386267066,"r2":-0.35517881233786364,"rmse":4.0434174803282605},"validation":{"mae":2.8207295660216074,"max_error":7.7155923917889595,"r2":-0.19514555292858704,"rmse":3.5500415294033356}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.2752949260175228,3.448729170486331],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"0.143822970000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650382982698176,"max_error":7.235414805021973,"r2":-0.003516160228901777,"rmse":3.803033436176176},"train":{"mae":3.0914863388417126,"max_error":6.5970185418994145,"r2":-6.612488334667432e-12,"rmse":3.4733638727006206},"validation":{"mae":2.919129580003699,"max_error":5.649133382233886,"r2":-0.01176678364264716,"rmse":3.266353936603964}},"score":0.3039336084630583,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382297,0.14382297],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_s - (Cl_F + Cl_F)","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..26f57e3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.210873400000000","deployment_expression_hash":"d2aba5e475c607189c3196bd78af6e7c6f36589b9cf076bed5b5320634cbd2cb","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.210873400000000","fitted_expression_hash":"d2aba5e475c607189c3196bd78af6e7c6f36589b9cf076bed5b5320634cbd2cb","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:37:37.285993+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341055377333002,"max_error":8.2108734,"r2":-0.000479211570497462,"rmse":4.826257900684281},"train":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"validation":{"mae":3.8223303893903195,"max_error":7.758483206060791,"r2":-0.0005072132470955726,"rmse":4.355589457740559}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.2108734,0.2108734],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":88.36215,"metrics":{"blind":{"mae":8.155772847495973,"max_error":16.236602880060673,"r2":-2.850661911270331,"rmse":9.468347433098586},"train":{"mae":8.23939423023139,"max_error":16.67884999513626,"r2":-3.3226561478431798,"rmse":9.40011476020677},"validation":{"mae":8.36223486237801,"max_error":16.384586058557034,"r2":-3.7006741484409345,"rmse":9.440976125155151}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[8.025186136364937,8.977879770100117],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"0.210873400000000","loss":20.441631,"metrics":{"blind":{"mae":4.341055377333002,"max_error":8.2108734,"r2":-0.000479211570497462,"rmse":4.826257900684281},"train":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"validation":{"mae":3.8223303893903195,"max_error":7.758483206060791,"r2":-0.0005072132470955726,"rmse":4.355589457740559}},"score":1.4638701538603016,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.2108734,0.2108734],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595207","loss":20.38907,"metrics":{"blind":{"mae":4.337084360977709,"max_error":7.955951392394025,"r2":5.070442707777456e-05,"rmse":4.824979588259406},"train":{"mae":4.021479580244513,"max_error":7.944618908658111,"r2":0.0025712611291425214,"rmse":4.5154262064971835},"validation":{"mae":3.81421578726415,"max_error":7.42544724964383,"r2":0.0078577428728549,"rmse":4.337343317949237}},"score":0.0012872918599486618,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4613707783860853,0.4480675872115558],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"target_Cl*0.06125333 + 0.25349393","loss":20.350576,"metrics":{"blind":{"mae":4.336442764877329,"max_error":8.225374433487529,"r2":0.002837113121100465,"rmse":4.818252375162919},"train":{"mae":4.0047746911255,"max_error":7.835732450443947,"r2":0.004454578752060678,"rmse":4.511161240260129},"validation":{"mae":3.8216947665840983,"max_error":7.54729407402532,"r2":0.005645752677852389,"rmse":4.342175699197213}},"score":0.000629918932133942,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.041033291151557794,0.5395287365630392],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..e66ff36 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"target_Cd*0.11249822 - 1.1412257","deployment_expression_hash":"93ff95b5041d17b9bc51928efb139f4be3289853785435ed81c33f50908ef787","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cd*0.11249822 - 1.1412257","fitted_expression_hash":"93ff95b5041d17b9bc51928efb139f4be3289853785435ed81c33f50908ef787","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:37:39.026124+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.563106192234203,"max_error":4.547663751727756,"r2":-0.003139516345064708,"rmse":2.8161724841939937},"train":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"validation":{"mae":2.319203859668912,"max_error":4.967831976767608,"r2":-0.008442495468560018,"rmse":2.6553788457164123}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2384065444902672,-0.1312302064897275],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190636110000000","loss":7.281835,"metrics":{"blind":{"mae":2.560598405779184,"max_error":4.544558096237793,"r2":-0.0030259845387972106,"rmse":2.8160131174306793},"train":{"mae":2.394520730868476,"max_error":4.857556771926269,"r2":-3.168099116379608e-10,"rmse":2.6984876605463195},"validation":{"mae":2.322252220961695,"max_error":4.930104684523926,"r2":-0.009526860289501782,"rmse":2.656806108941831}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19063611,-0.19063611],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cd*0.11249822 - 1.1412257","loss":7.281117,"metrics":{"blind":{"mae":2.563106192234203,"max_error":4.547663751727756,"r2":-0.003139516345064708,"rmse":2.8161724841939937},"train":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"validation":{"mae":2.319203859668912,"max_error":4.967831976767608,"r2":-0.008442495468560018,"rmse":2.6553788457164123}},"score":1.9721276306668917e-05,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2384065444902672,-0.1312302064897275],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..b42b423 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143781450000000","deployment_expression_hash":"fc616f25c85ffeca12dfd83c28c8cffba58236d782126b5e6d459bc401f14100","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143781450000000","fitted_expression_hash":"fc616f25c85ffeca12dfd83c28c8cffba58236d782126b5e6d459bc401f14100","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:37:38.179088+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650341462698173,"max_error":7.235373285021972,"r2":-0.0035148633074963964,"rmse":3.80303097869853},"train":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"validation":{"mae":2.9191349030806224,"max_error":5.649174902233887,"r2":-0.011769557721395651,"rmse":3.266358414472271}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378145,0.14378145],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143781450000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650341462698173,"max_error":7.235373285021972,"r2":-0.0035148633074963964,"rmse":3.80303097869853},"train":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"validation":{"mae":2.9191349030806224,"max_error":5.649174902233887,"r2":-0.011769557721395651,"rmse":3.266358414472271}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378145,0.14378145],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":6.0,"expression":"(target_Cd + target_Cl)*0.019962905","loss":12.064181,"metrics":{"blind":{"mae":3.467987732962052,"max_error":7.207015878762938,"r2":-0.002527038726331199,"rmse":3.8011587331674255},"train":{"mae":3.0925223627243033,"max_error":6.5629320779512925,"r2":6.355047854067486e-06,"rmse":3.4733528359747896},"validation":{"mae":2.9141320777715545,"max_error":5.656525901716321,"r2":-0.008005803121609034,"rmse":3.2602773726727285}},"score":1.5334603535902882e-06,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06421746854784667,0.2724453812748636],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd","target_Cl"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..46f9b8d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.210852710000000","deployment_expression_hash":"c28a9d70f3f42500bc6a6403c8288f6ed8eadc698dcfc02fb4c480b2f182a348","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.210852710000000","fitted_expression_hash":"c28a9d70f3f42500bc6a6403c8288f6ed8eadc698dcfc02fb4c480b2f182a348","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:38:14.459154+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341056411833002,"max_error":8.21085271,"r2":-0.00047939932491991577,"rmse":4.826258353542877},"train":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"validation":{"mae":3.822329858877499,"max_error":7.758462516060791,"r2":-0.0005069992523349942,"rmse":4.355588991940134}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21085271,0.21085271],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":29.007162,"metrics":{"blind":{"mae":4.703315188037232,"max_error":10.42662987858057,"r2":-0.3830471215064184,"rmse":5.6744657572911805},"train":{"mae":4.492369573981397,"max_error":11.288995686918497,"r2":-0.4190237518379516,"rmse":5.385830022702619},"validation":{"mae":4.432045555075045,"max_error":10.415710713714361,"r2":-0.42963386385687596,"rmse":5.206540360380409}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.210852710000000","loss":20.441631,"metrics":{"blind":{"mae":4.341056411833002,"max_error":8.21085271,"r2":-0.00047939932491991577,"rmse":4.826258353542877},"train":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"validation":{"mae":3.822329858877499,"max_error":7.758462516060791,"r2":-0.0005069992523349942,"rmse":4.355588991940134}},"score":0.3499692083401138,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21085271,0.21085271],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595178","loss":20.38907,"metrics":{"blind":{"mae":4.337084355615472,"max_error":7.955951525523995,"r2":5.070432382503487e-05,"rmse":4.824979588508516},"train":{"mae":4.021479548357001,"max_error":7.944619076038726,"r2":0.0025712611288198906,"rmse":4.515426206497914},"validation":{"mae":3.814215795447418,"max_error":7.4254475687731984,"r2":0.007857733034880576,"rmse":4.337343339453549}},"score":0.0012872918599486618,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.46136938396566546,0.4480662329979334],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"(-target_Cl - 2.332723)*(-0.1021511)","loss":20.33241,"metrics":{"blind":{"mae":4.337198983971919,"max_error":8.191395831190135,"r2":0.0028699979033199874,"rmse":4.818172925512077},"train":{"mae":4.010044754724081,"max_error":7.702750765957865,"r2":0.00534316469452456,"rmse":4.5091475454316985},"validation":{"mae":3.8201508676312037,"max_error":7.36262612176407,"r2":0.007929902690179569,"rmse":4.337185584725825}},"score":0.0009276027715542614,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2528876407513875,0.7153054313522283],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..c7693b7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-0.190718860000000","deployment_expression_hash":"ab3e8e63542c5fad50ab016cab71c370440d480fdf166c1ecd5ef7d7ed95b384","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.190718860000000","fitted_expression_hash":"ab3e8e63542c5fad50ab016cab71c370440d480fdf166c1ecd5ef7d7ed95b384","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:38:16.061585+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5605901307791843,"max_error":4.544475346237793,"r2":-0.0030227475844148977,"rmse":2.8160085735237934},"train":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"validation":{"mae":2.3222585863463108,"max_error":4.930187434523925,"r2":-0.009532970294856336,"rmse":2.656814148883921}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071886,-0.19071886],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190718860000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605901307791843,"max_error":4.544475346237793,"r2":-0.0030227475844148977,"rmse":2.8160085735237934},"train":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"validation":{"mae":2.3222585863463108,"max_error":4.930187434523925,"r2":-0.009532970294856336,"rmse":2.656814148883921}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071886,-0.19071886],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..d207766 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143719640000000","deployment_expression_hash":"d3d2ccdba76425d313fc341e15f2ff32c19ed285d17f77a705044c27b3bb6596","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143719640000000","fitted_expression_hash":"d3d2ccdba76425d313fc341e15f2ff32c19ed285d17f77a705044c27b3bb6596","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:38:15.262229+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650279652698175,"max_error":7.235311475021972,"r2":-0.003512933049487188,"rmse":3.8030273211370904},"train":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"validation":{"mae":2.9191428274395967,"max_error":5.649236712233887,"r2":-0.01177368804304968,"rmse":3.2663650815522485}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14371964,0.14371964],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143719640000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650279652698175,"max_error":7.235311475021972,"r2":-0.003512933049487188,"rmse":3.8030273211370904},"train":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"validation":{"mae":2.9191428274395967,"max_error":5.649236712233887,"r2":-0.01177368804304968,"rmse":3.2663650815522485}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14371964,0.14371964],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..6ff10af --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.211101620000000","deployment_expression_hash":"cb30d8e25ffdbe533b71536e1a564643f0f1eb96cc5c2372e86456a42ea22019","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.211101620000000","fitted_expression_hash":"cb30d8e25ffdbe533b71536e1a564643f0f1eb96cc5c2372e86456a42ea22019","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:38:53.045087+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341043966333002,"max_error":8.21110162,"r2":-0.0004771429947836303,"rmse":4.826252911332715},"train":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"validation":{"mae":3.822336241185191,"max_error":7.758711426060791,"r2":-0.0005095767013552077,"rmse":4.355594602246387}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21110162,0.21110162],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":29.007162,"metrics":{"blind":{"mae":4.703315188037232,"max_error":10.42662987858057,"r2":-0.3830471215064184,"rmse":5.6744657572911805},"train":{"mae":4.492369573981397,"max_error":11.288995686918497,"r2":-0.4190237518379516,"rmse":5.385830022702619},"validation":{"mae":4.432045555075045,"max_error":10.415710713714361,"r2":-0.42963386385687596,"rmse":5.206540360380409}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.211101620000000","loss":20.44163,"metrics":{"blind":{"mae":4.341043966333002,"max_error":8.21110162,"r2":-0.0004771429947836303,"rmse":4.826252911332715},"train":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"validation":{"mae":3.822336241185191,"max_error":7.758711426060791,"r2":-0.0005095767013552077,"rmse":4.355594602246387}},"score":0.3499692572598906,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21110162,0.21110162],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595","loss":20.38907,"metrics":{"blind":{"mae":4.337084322702431,"max_error":7.955952342666569,"r2":5.07036883374834e-05,"rmse":4.8249795900417},"train":{"mae":4.021479352633649,"max_error":7.944620103409397,"r2":0.002571261124938218,"rmse":4.5154262065066995},"validation":{"mae":3.8142158456757604,"max_error":7.4254495275672525,"r2":0.007857672647962444,"rmse":4.33734347145014}},"score":0.0012872674000603012,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4613608251092955,0.44805792092811314],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":6.0,"expression":"target_Cd*target_Cl*0.011570744","loss":20.382257,"metrics":{"blind":{"mae":4.33705200504257,"max_error":7.9562490740576495,"r2":8.858873163630765e-05,"rmse":4.824888187261192},"train":{"mae":4.021500652546696,"max_error":7.944235978332486,"r2":0.0029045592923867547,"rmse":4.5146717119911814},"validation":{"mae":3.8143631851545763,"max_error":7.426824539270403,"r2":0.008041417284998631,"rmse":4.336941815113796}},"score":0.00016710273039224546,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44649041001818424,0.48509215413833534],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd","target_Cl"]},{"complexity":7.0,"expression":"target_Cl*(0.00791813445921*target_Cl**2)","loss":20.368267,"metrics":{"blind":{"mae":4.336942580714816,"max_error":7.999233951297074,"r2":-0.0026318165013972106,"rmse":4.831447136127072},"train":{"mae":4.020412661062827,"max_error":7.998477545379793,"r2":0.0035892981703051774,"rmse":4.5131212575234345},"validation":{"mae":3.8208380922127625,"max_error":7.520485466356343,"r2":0.0070168086407497166,"rmse":4.339181082589505}},"score":0.0006866169647105784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8802582020372663,0.8062884026519549],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..c792830 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-0.190718080000000","deployment_expression_hash":"62702d1c3a9f6b2e9dacef31e074a1fe681eaccb84be4b0210a24b10c97513ef","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.190718080000000","fitted_expression_hash":"62702d1c3a9f6b2e9dacef31e074a1fe681eaccb84be4b0210a24b10c97513ef","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:38:54.869725+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5605902087791845,"max_error":4.544476126237793,"r2":-0.003022778087800937,"rmse":2.816008616343259},"train":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"validation":{"mae":2.3222585263463102,"max_error":4.930186654523926,"r2":-0.009532912692912676,"rmse":2.656814073087654}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071808,-0.19071808],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":17.987856,"metrics":{"blind":{"mae":3.420140590937808,"max_error":8.480937790125608,"r2":-1.283469403767389,"rmse":4.24889677162957},"train":{"mae":3.4292164030960874,"max_error":9.36471475660801,"r2":-1.470236179108332,"rmse":4.241209011288094},"validation":{"mae":3.286712185887154,"max_error":8.54935321956873,"r2":-1.3732910635216617,"rmse":4.073581633123382}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-0.190718080000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605902087791845,"max_error":4.544476126237793,"r2":-0.003022778087800937,"rmse":2.816008616343259},"train":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"validation":{"mae":2.3222585263463102,"max_error":4.930186654523926,"r2":-0.009532912692912676,"rmse":2.656814073087654}},"score":0.9043140275844778,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071808,-0.19071808],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cd*0.1070144 - 1*1.094982","loss":7.2811165,"metrics":{"blind":{"mae":2.5629745894724905,"max_error":4.547418777852536,"r2":-0.0031263155001142184,"rmse":2.8161539543793386},"train":{"mae":2.3947611836762106,"max_error":4.86986661241126,"r2":9.862607569621762e-05,"rmse":2.698354586213529},"validation":{"mae":2.319359653524918,"max_error":4.96608651439023,"r2":-0.008498941233796131,"rmse":2.6554531597176}},"score":1.972402422148215e-05,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.23617152072858805,-0.134219583130598],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..7dba67f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1.5L-target_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143794900000000","deployment_expression_hash":"9bd473ed1850231caf3e48e1d4f6fcc3b4507f8c7ac7e10755196f7c3adf4f26","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143794900000000","fitted_expression_hash":"9bd473ed1850231caf3e48e1d4f6fcc3b4507f8c7ac7e10755196f7c3adf4f26","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:38:54.076982+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650354912698176,"max_error":7.235386735021972,"r2":-0.0035152834063707505,"rmse":3.803031774725038},"train":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"validation":{"mae":2.919133178721648,"max_error":5.649161452233887,"r2":-0.011768659049774755,"rmse":3.2663569638532834}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.1437949,0.1437949],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143794900000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650354912698176,"max_error":7.235386735021972,"r2":-0.0035152834063707505,"rmse":3.803031774725038},"train":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"validation":{"mae":2.919133178721648,"max_error":5.649161452233887,"r2":-0.011768659049774755,"rmse":3.2663569638532834}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.1437949,0.1437949],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..1c11ec2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.0697473046381225*(Cd_F + Cl_rear_s)**2","deployment_expression_hash":"c23a93e41ee3e25ebda857c3ac3b161d45224a646cf4e4fe0b90ec0c7fd7a704","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.0697473046381225*(Cd_F + Cl_rear_s)**2","fitted_expression_hash":"c23a93e41ee3e25ebda857c3ac3b161d45224a646cf4e4fe0b90ec0c7fd7a704","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:27:35.795673+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.18713746015863228,"max_error":0.6193364514215287,"r2":0.6557284109024092,"rmse":0.24106595998307723},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19569280077134968,"max_error":0.5056468681458284,"r2":0.6580990877377474,"rmse":0.23874288598544186},"train":{"mae":0.18713746015863228,"max_error":0.6193364514215287,"r2":0.6557284109024092,"rmse":0.24106595998307723},"validation":{"mae":0.1434142453932822,"max_error":0.5176470071699228,"r2":0.7679608848431232,"rmse":0.1927836342558092}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06313020032222702,0.9625991789947039],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":4.0,"expression":"Cd_rear_a**2 + Cl_rear_s","loss":0.09910931,"metrics":{"blind":{"mae":0.21824468822194518,"max_error":0.5959173027974658,"r2":0.558661099801377,"rmse":0.27124791828932077},"train":{"mae":0.2594922631320915,"max_error":0.8602284563919619,"r2":0.4128570230918519,"rmse":0.3148163162072535},"validation":{"mae":0.25218801999895757,"max_error":0.5403949515593882,"r2":0.45754933741569415,"rmse":0.29476077163606684}},"score":0.21116927302919797,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10437763279571655,1.58737729903945],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_s*0.50780374821225","loss":0.09214402,"metrics":{"blind":{"mae":0.23015542885757762,"max_error":0.41578265985894336,"r2":0.6167538507542205,"rmse":0.2527663222891317},"train":{"mae":0.2715782824017221,"max_error":0.5657427888268746,"r2":0.4541207641331009,"rmse":0.30355233994934583},"validation":{"mae":0.26386511821353503,"max_error":0.5098439180082844,"r2":0.46266966763818773,"rmse":0.29336631209987374}},"score":0.0728705946170612,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.414807231715756,0.6567312427131641],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":7.0,"expression":"0.0697473046381225*(Cd_F + Cl_rear_s)**2","loss":0.058112796,"metrics":{"blind":{"mae":0.19569280077134968,"max_error":0.5056468681458284,"r2":0.6580990877377474,"rmse":0.23874288598544186},"train":{"mae":0.18713746015863228,"max_error":0.6193364514215287,"r2":0.6557284109024092,"rmse":0.24106595998307723},"validation":{"mae":0.1434142453932822,"max_error":0.5176470071699228,"r2":0.7679608848431232,"rmse":0.1927836342558092}},"score":0.230483453621812,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06313020032222702,0.9625991789947039],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..e056d73 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1.2064608","deployment_expression_hash":"857cb86c5f789654acf872933e2c4fd6c1e669d3eb258795a351ffeb167f03dc","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_F - 1.2064608","fitted_expression_hash":"857cb86c5f789654acf872933e2c4fd6c1e669d3eb258795a351ffeb167f03dc","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:27:36.946607+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16017004297526116,"max_error":0.4472616557250737,"r2":0.5727596279574638,"rmse":0.19934626553874576},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16511078309486626,"max_error":0.4128734115730046,"r2":0.16504564621448026,"rmse":0.2045696729897131},"train":{"mae":0.16017004297526116,"max_error":0.4472616557250737,"r2":0.5727596279574638,"rmse":0.19934626553874576},"validation":{"mae":0.18544714406222257,"max_error":0.4649629853884696,"r2":0.36433211897167994,"rmse":0.22218395966588034}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5617863079751848,1.2152633443693637],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.71638745,"metrics":{"blind":{"mae":0.7555996993090958,"max_error":1.5304674226790667,"r2":-16.12660692274411,"rmse":0.9265002678971328},"train":{"mae":0.7051824198372788,"max_error":1.4891180042177439,"r2":-6.702010276024187,"rmse":0.8463967922634102},"validation":{"mae":0.5192852084142848,"max_error":1.5245017381384969,"r2":-5.128856872679614,"rmse":0.689901847583349}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8168652420863509,1.2932776589877903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":2.0414814535090176,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1.2064608","loss":0.03973893,"metrics":{"blind":{"mae":0.16511078309486626,"max_error":0.4128734115730046,"r2":0.16504564621448026,"rmse":0.2045696729897131},"train":{"mae":0.16017004297526116,"max_error":0.4472616557250737,"r2":0.5727596279574638,"rmse":0.19934626553874576},"validation":{"mae":0.18544714406222257,"max_error":0.4649629853884696,"r2":0.36433211897167994,"rmse":0.22218395966588034}},"score":0.42520419331460163,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5617863079751848,1.2152633443693637],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":7.0,"expression":"Cd_F - 0.9738043 - 1*0.23789898","loss":0.039711438,"metrics":{"blind":{"mae":0.1645865350948663,"max_error":0.4076309315730049,"r2":0.1814182428760216,"rmse":0.20255404244933106},"train":{"mae":0.1599570131321772,"max_error":0.45243667253664,"r2":0.5730551063124315,"rmse":0.19927731993084608},"validation":{"mae":0.18477503124170974,"max_error":0.45972050538846987,"r2":0.3731031200897549,"rmse":0.22064577837397922}},"score":0.00023068490672691373,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5565438279751849,1.2100208643693637],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..142e457 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s0-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942241300000000","deployment_expression_hash":"2c73f754fc8d207bf9ab8326a225a81b30c8d7216016b8109172e28283bd2ddb","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.942241300000000","fitted_expression_hash":"2c73f754fc8d207bf9ab8326a225a81b30c8d7216016b8109172e28283bd2ddb","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:27:36.406676+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180778869522094,"r2":-1.1227774265876178e-10,"rmse":0.22619347406163898},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274296952222825,"max_error":0.35665403689270014,"r2":-0.0037564522975219727,"rmse":0.14831918987154535},"train":{"mae":0.16644193711927383,"max_error":0.7180778869522094,"r2":-1.1227774265876178e-10,"rmse":0.22619347406163898},"validation":{"mae":0.11859242948985955,"max_error":0.32858322943572993,"r2":-0.007767032958891251,"rmse":0.1445587790596484}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9422413,-0.9422413],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.46353057,"metrics":{"blind":{"mae":0.5827726590187012,"max_error":1.3141757168341428,"r2":-21.72259987442313,"rmse":0.7056871025605645},"train":{"mae":0.5669855430052725,"max_error":1.4811755518894643,"r2":-8.059791255049982,"rmse":0.6808307561086059},"validation":{"mae":0.6131191903640194,"max_error":1.2822435218840837,"r2":-24.243064396910242,"rmse":0.7234948357979383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.942241300000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274296952222825,"max_error":0.35665403689270014,"r2":-0.0037564522975219727,"rmse":0.14831918987154535},"train":{"mae":0.16644193711927383,"max_error":0.7180778869522094,"r2":-1.1227774265876178e-10,"rmse":0.22619347406163898},"validation":{"mae":0.11859242948985955,"max_error":0.32858322943572993,"r2":-0.007767032958891251,"rmse":0.1445587790596484}},"score":2.2038462825986183,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9422413,-0.9422413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.8962113 - Cd_rear_s","loss":0.04216251,"metrics":{"blind":{"mae":0.09761728905270912,"max_error":0.27137455712203984,"r2":0.375462698560446,"rmse":0.11699366897279681},"train":{"mae":0.15294666633053447,"max_error":0.6327283936100185,"r2":0.17592575850984993,"rmse":0.20533512198425105},"validation":{"mae":0.0859115389512393,"max_error":0.21411644439081545,"r2":0.49032212103241934,"rmse":0.1028045390860861}},"score":0.09674730867980293,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1505481731599092,-0.42212851140516694],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":7.0,"expression":"Cd_rear_s*(-0.75612694) - 1*(-0.40070465)","loss":0.036776718,"metrics":{"blind":{"mae":0.09647140368693638,"max_error":0.23016695948502308,"r2":0.358706018933343,"rmse":0.11855278250072669},"train":{"mae":0.1414564679066486,"max_error":0.5546943357822418,"r2":0.28119205198590536,"rmse":0.19177257783258628},"validation":{"mae":0.085029121941808,"max_error":0.2381038199598846,"r2":0.43962393932018207,"rmse":0.10779638203327546}},"score":0.04555548521654467,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1469053273564143,-0.5961275974779661],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..ce9f3e2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(-Cd_rear_a + Cl_rear_s)*0.6098909","deployment_expression_hash":"48f1404a8c52aa70f4678974f54da39875466b24cf9037d07d8515090e02fb04","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(-Cd_rear_a + Cl_rear_s)*0.6098909","fitted_expression_hash":"48f1404a8c52aa70f4678974f54da39875466b24cf9037d07d8515090e02fb04","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:28:17.096724+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15961938983481874,"max_error":0.4372331057712319,"r2":0.7914240968032376,"rmse":0.18763651752286112},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19070784584749045,"max_error":0.4314114212143293,"r2":0.7105708591570566,"rmse":0.21966023169140855},"train":{"mae":0.15961938983481874,"max_error":0.4372331057712319,"r2":0.7914240968032376,"rmse":0.18763651752286112},"validation":{"mae":0.16914828483479985,"max_error":0.3569562706176774,"r2":0.7783978086918621,"rmse":0.18839813012625534}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12229477767150387,0.458008620343206],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.17075412,"metrics":{"blind":{"mae":0.27673085175920276,"max_error":0.601998895406723,"r2":0.3108234960479447,"rmse":0.3389577287731067},"train":{"mae":0.3492160899785616,"max_error":0.9297878360375762,"r2":-0.011580860521255065,"rmse":0.4132240590406017},"validation":{"mae":0.2720837906982081,"max_error":0.6755692316219211,"r2":0.3105860059099895,"rmse":0.3322994405475299}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8168652420863509,1.2932776589877903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.12166269851182035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.5879332","loss":0.089055166,"metrics":{"blind":{"mae":0.21833021327429097,"max_error":0.3662705128411297,"r2":0.6465886950934582,"rmse":0.24272836382573232},"train":{"mae":0.2591751250319479,"max_error":0.5931847896998284,"r2":0.47241975169209915,"rmse":0.29842112379473357},"validation":{"mae":0.23068372945011748,"max_error":0.44920451883361673,"r2":0.5554294655043812,"rmse":0.26684551033087833}},"score":0.1738918048766951,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.480262195748603,0.7603608725372004],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_rear_s)*0.6098909","loss":0.035207465,"metrics":{"blind":{"mae":0.19070784584749045,"max_error":0.4314114212143293,"r2":0.7105708591570566,"rmse":0.21966023169140855},"train":{"mae":0.15961938983481874,"max_error":0.4372331057712319,"r2":0.7914240968032376,"rmse":0.18763651752286112},"validation":{"mae":0.16914828483479985,"max_error":0.3569562706176774,"r2":0.7783978086918621,"rmse":0.18839813012625534}},"score":0.4639989432112127,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.12229477767150387,0.458008620343206],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..7ada589 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.2116861","deployment_expression_hash":"438a3eab0bcfaf7bec3155acc92ca12cd52579e562517fda558545374e25288b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_F - 1*1.2116861","fitted_expression_hash":"438a3eab0bcfaf7bec3155acc92ca12cd52579e562517fda558545374e25288b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:28:18.456590+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15995730431861785,"max_error":0.45241949253664027,"r2":0.5730551031480431,"rmse":0.19927732066933815},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16458825309486627,"max_error":0.4076481115730046,"r2":0.18136637972777447,"rmse":0.2025604589885783},"train":{"mae":0.15995730431861785,"max_error":0.45241949253664027,"r2":0.5730551031480431,"rmse":0.19927732066933815},"validation":{"mae":0.18477723380581232,"max_error":0.4597376853884696,"r2":0.3730755328120513,"rmse":0.2206506331990647}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5565610079751848,1.2100380443693637],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":1.5079364,"metrics":{"blind":{"mae":1.2873475741129368,"max_error":1.6193342115730047,"r2":-32.76967135652383,"rmse":1.3009880312497824},"train":{"mae":1.2117032560488303,"max_error":1.6537224557250738,"r2":-15.212091725239919,"rmse":1.2279805499103629},"validation":{"mae":1.2740467531272235,"max_error":1.6714237853884697,"r2":-20.478259335686854,"rmse":1.2915080255370905}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.768247107975185,2.421724144369364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":2.7857576742343877,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.2116861","loss":0.03971144,"metrics":{"blind":{"mae":0.16458825309486627,"max_error":0.4076481115730046,"r2":0.18136637972777447,"rmse":0.2025604589885783},"train":{"mae":0.15995730431861785,"max_error":0.45241949253664027,"r2":0.5730551031480431,"rmse":0.19927732066933815},"validation":{"mae":0.18477723380581232,"max_error":0.4597376853884696,"r2":0.3730755328120513,"rmse":0.2206506331990647}},"score":0.4255501954930309,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5565610079751848,1.2100380443693637],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..6c4aadf --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s1-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.8077099 - Cd_rear_s","deployment_expression_hash":"ef88250b8d608ef7d535e030b25988f7d82e81314e1b6946cc5359d2f4a80812","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.8077099 - Cd_rear_s","fitted_expression_hash":"ef88250b8d608ef7d535e030b25988f7d82e81314e1b6946cc5359d2f4a80812","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:28:17.884097+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.14858675290652962,"max_error":0.5526611969910027,"r2":0.23859728951668824,"rmse":0.19737278995427096},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.10676801355155838,"max_error":0.2579573469340266,"r2":0.23235732071469462,"rmse":0.12970679431783158},"train":{"mae":0.14858675290652962,"max_error":0.5526611969910027,"r2":0.23859728951668824,"rmse":0.19737278995427096},"validation":{"mae":0.09389756940362529,"max_error":0.3026178443908156,"r2":0.2702540032941274,"rmse":0.12301278712902361}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2390495731599094,-0.510629911405167],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.942223670000000","loss":0.05116348,"metrics":{"blind":{"mae":0.12274649552222824,"max_error":0.35663640689270015,"r2":-0.0037710643020074652,"rmse":0.1483202694326159},"train":{"mae":0.16644193711927383,"max_error":0.7180602569522094,"r2":-7.839021654021394e-09,"rmse":0.2261934749355085},"validation":{"mae":0.11859830615652624,"max_error":0.32856559943572994,"r2":-0.007788627652036251,"rmse":0.1445603278728414}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94222367,-0.94222367],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.8077099 - Cd_rear_s","loss":0.03895602,"metrics":{"blind":{"mae":0.10676801355155838,"max_error":0.2579573469340266,"r2":0.23235732071469462,"rmse":0.12970679431783158},"train":{"mae":0.14858675290652962,"max_error":0.5526611969910027,"r2":0.23859728951668824,"rmse":0.19737278995427096},"validation":{"mae":0.09389756940362529,"max_error":0.3026178443908156,"r2":0.2702540032941274,"rmse":0.12301278712902361}},"score":0.1362963393954035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2390495731599094,-0.510629911405167],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":5.0,"expression":"0.827110452394577 - Cd_rear_s","loss":0.03831833,"metrics":{"blind":{"mae":0.09968354719706296,"max_error":0.23855679453944933,"r2":0.3248966749665906,"rmse":0.12163772619098949},"train":{"mae":0.14530156881995637,"max_error":0.5636275460045955,"r2":0.2510611236893381,"rmse":0.19575067046607153},"validation":{"mae":0.0855785479531017,"max_error":0.28321729199623835,"r2":0.3831455561166165,"rmse":0.11309821401026905}},"score":0.016504945721329423,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.219649020765332,-0.49122935901058995],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":7.0,"expression":"0.8077099 - 0.98149323*Cd_rear_s","loss":0.03809983,"metrics":{"blind":{"mae":0.09580033396590595,"max_error":0.2228715455580228,"r2":0.3713348780198281,"rmse":0.11737966155223771},"train":{"mae":0.14423120589885585,"max_error":0.5759076935800568,"r2":0.2553316482368788,"rmse":0.19519177763867496},"validation":{"mae":0.08197136167968747,"max_error":0.26672926104838535,"r2":0.44435648306397524,"rmse":0.10734023053402178}},"score":0.0028592757983905486,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2011706663448178,-0.4862316997336481],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..96746d6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.59087545*Cl_rear_s","deployment_expression_hash":"f716bb09482b3fc0249e12ce843b52370787a5a4c01f2bb00419fa4c1cee0a5a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.59087545*Cl_rear_s","fitted_expression_hash":"f716bb09482b3fc0249e12ce843b52370787a5a4c01f2bb00419fa4c1cee0a5a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:28:56.498359+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2587417199615073,"max_error":0.5955882114583568,"r2":0.47239498859229445,"rmse":0.2984281272272765},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2179201313092724,"max_error":0.3679459205005376,"r2":0.6470946626492444,"rmse":0.2425545484108187},"train":{"mae":0.2587417199615073,"max_error":0.5955882114583568,"r2":0.47239498859229445,"rmse":0.2984281272272765},"validation":{"mae":0.2294653517012248,"max_error":0.4469779183984327,"r2":0.5579655622809336,"rmse":0.2660832983870146}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4826656175071315,0.7641660187293571],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.17075412,"metrics":{"blind":{"mae":0.27673085175920276,"max_error":0.601998895406723,"r2":0.3108234960479447,"rmse":0.3389577287731067},"train":{"mae":0.3492160899785616,"max_error":0.9297878360375762,"r2":-0.011580860521255065,"rmse":0.4132240590406017},"validation":{"mae":0.2720837906982081,"max_error":0.6755692316219211,"r2":0.3105860059099895,"rmse":0.3322994405475299}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8168652420863509,1.2932776589877903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.12166269851182035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"0.59087545*Cl_rear_s","loss":0.089059345,"metrics":{"blind":{"mae":0.2179201313092724,"max_error":0.3679459205005376,"r2":0.6470946626492444,"rmse":0.2425545484108187},"train":{"mae":0.2587417199615073,"max_error":0.5955882114583568,"r2":0.47239498859229445,"rmse":0.2984281272272765},"validation":{"mae":0.2294653517012248,"max_error":0.4469779183984327,"r2":0.5579655622809336,"rmse":0.2660832983870146}},"score":0.17384488000822373,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4826656175071315,0.7641660187293571],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_rear_s)*0.40437156","loss":0.06432144,"metrics":{"blind":{"mae":0.22096450574292564,"max_error":0.4897902084728633,"r2":0.594682048861876,"rmse":0.2599430611332611},"train":{"mae":0.21352236696152382,"max_error":0.4875576597469533,"r2":0.618947158535113,"rmse":0.25361673062769274},"validation":{"mae":0.2529045428988639,"max_error":0.4414542244211701,"r2":0.47970473285198323,"rmse":0.2886785401783229}},"score":0.16270496629714906,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.08108422346829436,0.30367014871287623],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..a7a4547 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.0395364 - 0.19649251","deployment_expression_hash":"dccb8c03a1b397674dda3b09940d126443cbdf3a3429ac223abf6c2df21a9283","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_F - 1*1.0395364 - 0.19649251","fitted_expression_hash":"dccb8c03a1b397674dda3b09940d126443cbdf3a3429ac223abf6c2df21a9283","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:28:58.358738+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16105853832312497,"max_error":0.4767623025366402,"r2":0.5666932314134521,"rmse":0.2007565383218496},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16234323427359892,"max_error":0.3833053015730048,"r2":0.24303819568339258,"rmse":0.19478112374421025},"train":{"mae":0.16105853832312497,"max_error":0.4767623025366402,"r2":0.5666932314134521,"rmse":0.2007565383218496},"validation":{"mae":0.1816569747971515,"max_error":0.43539487538846966,"r2":0.404539701230625,"rmse":0.21504233831676142}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.532218197975185,1.1856952343693639],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":22.85003,"metrics":{"blind":{"mae":4.9293365005054515,"max_error":5.253181368112564,"r2":-484.3858649311181,"rmse":4.932345002862499},"train":{"mae":4.76388085092481,"max_error":5.310444512404501,"r2":-244.66477884850693,"rmse":4.7801707468783965},"validation":{"mae":4.939395042673613,"max_error":5.324023731984198,"r2":-313.8065744425589,"rmse":4.944466799877614}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.975766642019153,5.967098171822727],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"0.803519100000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123840035484313,"max_error":0.49805697803649907,"r2":-0.1101403716744298,"rmse":0.23588418939942235},"train":{"mae":0.24896455923536912,"max_error":0.6767682134613037,"r2":-3.0971283315750497e-09,"rmse":0.30498042309986884},"validation":{"mae":0.24085299250533268,"max_error":0.4790464937194824,"r2":-0.0002597827693773258,"rmse":0.2787109118045739}},"score":5.503968010853966,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035191,0.8035191],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.0395364","loss":0.069352895,"metrics":{"blind":{"mae":0.24812038914498508,"max_error":0.5797978115730047,"r2":-0.929659220443469,"rmse":0.31099269910393906},"train":{"mae":0.21563635221502894,"max_error":0.6141860557250738,"r2":0.25437483818888285,"rmse":0.26334934319371084},"validation":{"mae":0.2530321167743592,"max_error":0.6318873853884697,"r2":-0.28500480956538565,"rmse":0.31590023202990736}},"score":0.14676590385768232,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7287107079751849,1.3821877443693638],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":7.0,"expression":"Cd_F - 1*1.0395364 - 0.19649251","loss":0.04030319,"metrics":{"blind":{"mae":0.16234323427359892,"max_error":0.3833053015730048,"r2":0.24303819568339258,"rmse":0.19478112374421025},"train":{"mae":0.16105853832312497,"max_error":0.4767623025366402,"r2":0.5666932314134521,"rmse":0.2007565383218496},"validation":{"mae":0.1816569747971515,"max_error":0.43539487538846966,"r2":0.404539701230625,"rmse":0.21504233831676142}},"score":0.18092575617165296,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.532218197975185,1.1856952343693639],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..baafe8c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_only-s2-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942243750000000","deployment_expression_hash":"86951aef23deb909a29a23a3e23214f34dfd889c2c6aa097429ad5b2e62fd51a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.942243750000000","fitted_expression_hash":"86951aef23deb909a29a23a3e23214f34dfd889c2c6aa097429ad5b2e62fd51a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:28:57.455475+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274247952222823,"max_error":0.35665648689270024,"r2":-0.003754423946049412,"rmse":0.14831904001268342},"train":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"validation":{"mae":0.11859161282319287,"max_error":0.32858567943573,"r2":-0.007764034367198969,"rmse":0.1445585639935358}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224375,-0.94224375],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_s","loss":930.02747,"metrics":{"blind":{"mae":29.78763811495155,"max_error":39.15629816055298,"r2":-45005.44857889332,"rmse":31.40657241791608},"train":{"mae":28.03092538533827,"max_error":50.02856117486954,"r2":-18176.562520950953,"rmse":30.49635218348233},"validation":{"mae":28.720286585127887,"max_error":39.819745779037476,"r2":-46296.18864870921,"rmse":30.984301341818675}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-44.143104553222656,48.6307218670845],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]},{"complexity":2.0,"expression":"-0.942243750000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274247952222823,"max_error":0.35665648689270024,"r2":-0.003754423946049412,"rmse":0.14831904001268342},"train":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"validation":{"mae":0.11859161282319287,"max_error":0.32858567943573,"r2":-0.007764034367198969,"rmse":0.1445585639935358}},"score":9.807943347402686,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224375,-0.94224375],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-0.5385857*Cd_rear_s","loss":0.038173143,"metrics":{"blind":{"mae":0.10122940305431354,"max_error":0.27560980323089745,"r2":0.2861166367090472,"rmse":0.12508257124543656},"train":{"mae":0.14181860737491403,"max_error":0.5263863144511067,"r2":0.2538986146542759,"rmse":0.19537950008592625},"validation":{"mae":0.09153287267990577,"max_error":0.2784680166966601,"r2":0.3581232995674145,"rmse":0.11536928567874152}},"score":0.14644692470210005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1023553835834607,-0.7100389701635198],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..9b301a3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","deployment_expression_hash":"c49ebb582252f9846d661af9b1b61909580635d34e22b5a6aec432b1bb46100f","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","fitted_expression_hash":"c49ebb582252f9846d661af9b1b61909580635d34e22b5a6aec432b1bb46100f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:33:29.505976+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19952740724620205,"max_error":0.45330504223115275,"r2":0.6935664040425086,"rmse":0.2260208471823694},"train":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"validation":{"mae":0.1943183443829695,"max_error":0.3833102211668622,"r2":0.7097245249291118,"rmse":0.21562282665233704}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10683970746556293,0.40012752748620695],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.17075412,"metrics":{"blind":{"mae":0.27673085175920276,"max_error":0.601998895406723,"r2":0.3108234960479447,"rmse":0.3389577287731067},"train":{"mae":0.3492160899785616,"max_error":0.9297878360375762,"r2":-0.011580860521255065,"rmse":0.4132240590406017},"validation":{"mae":0.2720837906982081,"max_error":0.6755692316219211,"r2":0.3105860059099895,"rmse":0.3322994405475299}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8168652420863509,1.2932776589877903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.12166269851182035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.5878966","loss":0.08905516,"metrics":{"blind":{"mae":0.21833531447232643,"max_error":0.36624967167524153,"r2":0.6465821381627274,"rmse":0.24273061551613365},"train":{"mae":0.2591805163568109,"max_error":0.5931548924319678,"r2":0.47241974896866756,"rmse":0.29842112456497616},"validation":{"mae":0.23069888541089897,"max_error":0.4492322165397694,"r2":0.5553975297896814,"rmse":0.26685509457948287}},"score":0.17389187225066657,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802322984807426,0.7603135385748814],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","loss":0.040756624,"metrics":{"blind":{"mae":0.19952740724620205,"max_error":0.45330504223115275,"r2":0.6935664040425086,"rmse":0.2260208471823694},"train":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"validation":{"mae":0.1943183443829695,"max_error":0.3833102211668622,"r2":0.7097245249291118,"rmse":0.21562282665233704}},"score":0.39081878720385826,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10683970746556293,0.40012752748620695],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..285892c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.211704","deployment_expression_hash":"26bbe9a68ad4a3a9615e2bb1339a60b37355cb9b1aad76ab49c847e14c48140b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_F - 1*1.211704","fitted_expression_hash":"26bbe9a68ad4a3a9615e2bb1339a60b37355cb9b1aad76ab49c847e14c48140b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:33:30.879783+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1645864630948663,"max_error":0.40763021157300483,"r2":0.1814204161617674,"rmse":0.2025537735647013},"train":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"validation":{"mae":0.18477493893401745,"max_error":0.4597197853884698,"r2":0.37310427608444874,"rmse":0.22064557493903258}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.556543107975185,1.210020144369364],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_a","loss":97.78473,"metrics":{"blind":{"mae":5.788825842179358,"max_error":16.891722723841667,"r2":-1204.8595073363222,"rmse":7.77424530478247},"train":{"mae":7.619751162132469,"max_error":27.66404962539673,"r2":-1050.3009761206567,"rmse":9.88861561913578},"validation":{"mae":5.818579872138798,"max_error":16.301202476024628,"r2":-706.3587773148363,"rmse":7.411693335505686}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-26.770468056201935,14.523997902870178],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_a"]},{"complexity":2.0,"expression":"0.803504050000000","loss":0.09301303,"metrics":{"blind":{"mae":0.19123388535484315,"max_error":0.49804192803649905,"r2":-0.11009575616124301,"rmse":0.23587944936826424},"train":{"mae":0.2489609880489285,"max_error":0.6767832634613037,"r2":-3.974576223697568e-11,"rmse":0.30498042263364794},"validation":{"mae":0.24085260660789679,"max_error":0.4790615437194824,"r2":-0.0002615265870786754,"rmse":0.27871115475186525}},"score":6.957784117997256,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.80350405,0.80350405],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.211704","loss":0.03971144,"metrics":{"blind":{"mae":0.1645864630948663,"max_error":0.40763021157300483,"r2":0.1814204161617674,"rmse":0.2025537735647013},"train":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"validation":{"mae":0.18477493893401745,"max_error":0.4597197853884698,"r2":0.37310427608444874,"rmse":0.22064557493903258}},"score":0.42555014173712447,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.556543107975185,1.210020144369364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..813071e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942242000000000","deployment_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-0.942242000000000","fitted_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:33:30.243381+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_c","loss":7995.286,"metrics":{"blind":{"mae":95.22794934660196,"max_error":102.51884329319,"r2":-415091.6752316687,"rmse":95.37964563924966},"train":{"mae":88.75841325167882,"max_error":107.91507428884506,"r2":-156268.3746661708,"rmse":89.41636443617715},"validation":{"mae":93.7591081078236,"max_error":100.98786520957947,"r2":-425462.5258011721,"rmse":93.92810603284819}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[60.57933568954468,107.03669786453247],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_c"]},{"complexity":2.0,"expression":"-0.942242000000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"score":11.959336621043166,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_s*(-0.5323005)","loss":0.038047586,"metrics":{"blind":{"mae":0.10195184570049931,"max_error":0.2655597855617524,"r2":0.3085241674850272,"rmse":0.12310386052949307},"train":{"mae":0.14244434945160778,"max_error":0.5371455952684338,"r2":0.25635276107361316,"rmse":0.1950579051555742},"validation":{"mae":0.09145833556549601,"max_error":0.26805706281568553,"r2":0.38446603319134276,"rmse":0.11297709661418942}},"score":0.14809420773409543,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0894910909427562,-0.701752940780876],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..25cd313 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_rear_s*0.51447266 + 0.20592265","deployment_expression_hash":"96c47246bf53e29e1800c38afd86d7ab0bc15ab154dd0c00db22706b5c66dea9","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cl_rear_s*0.51447266 + 0.20592265","fitted_expression_hash":"96c47246bf53e29e1800c38afd86d7ab0bc15ab154dd0c00db22706b5c66dea9","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:34:06.873304+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12035675821188119,"max_error":0.3444441446835744,"r2":0.8626873715854264,"rmse":0.1512988231095407},"train":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"validation":{"mae":0.14353316177820133,"max_error":0.4177760694458509,"r2":0.8021441942259171,"rmse":0.17801801823975036}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2143321839577089,0.8712786473380214],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.4877938","loss":0.09387947,"metrics":{"blind":{"mae":0.23404751860376508,"max_error":0.4364018676654552,"r2":0.6044704081155772,"rmse":0.25678508823270585},"train":{"mae":0.2749696573485111,"max_error":0.5700701279862318,"r2":0.44383963119330283,"rmse":0.30639757007424695},"validation":{"mae":0.2726361566404786,"max_error":0.5249868050496327,"r2":0.4323738653668856,"rmse":0.3015232143950605}},"score":0.23827510151466724,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.39846180052522107,0.6308528237327584],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"0.57513506742756*Cl_rear_s**2","loss":0.09302676,"metrics":{"blind":{"mae":0.2788957196937717,"max_error":0.5421800554088019,"r2":0.37808546721293923,"rmse":0.3219924305538004},"train":{"mae":0.25998645729739006,"max_error":0.6486621291884458,"r2":0.4488912902318467,"rmse":0.3050028762629017},"validation":{"mae":0.2593559595873616,"max_error":0.5973526917450399,"r2":0.3965877663570655,"rmse":0.3108827451640552}},"score":0.009124531763018447,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.000375792197453859,0.9619519936972959],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s*(-0.49069914) + Cl_rear_s","loss":0.09202967,"metrics":{"blind":{"mae":0.22990077840351636,"max_error":0.41423996425904686,"r2":0.6175952160485727,"rmse":0.25248871263629535},"train":{"mae":0.2713245452428019,"max_error":0.5654190243475092,"r2":0.4547982045663501,"rmse":0.3033639260524783},"validation":{"mae":0.2632451682807287,"max_error":0.50871095182318,"r2":0.46482175059030595,"rmse":0.2927782361716201}},"score":0.010776168641875387,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.41603017029868666,0.6586674239412683],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_rear_s*0.51447266 + 0.20592265","loss":0.04924688,"metrics":{"blind":{"mae":0.12035675821188119,"max_error":0.3444441446835744,"r2":0.8626873715854264,"rmse":0.1512988231095407},"train":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"validation":{"mae":0.14353316177820133,"max_error":0.4177760694458509,"r2":0.8021441942259171,"rmse":0.17801801823975036}},"score":0.6252650096995146,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2143321839577089,0.8712786473380214],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..d4ec370 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.20018438794809*Cd_F**2","deployment_expression_hash":"3e0cca1ada5e64bd8c4d2b5d769fc33b36dee4a2f2906e1d5abb1a3b386cf7d6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"0.20018438794809*Cd_F**2","fitted_expression_hash":"3e0cca1ada5e64bd8c4d2b5d769fc33b36dee4a2f2906e1d5abb1a3b386cf7d6","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:34:08.576094+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1634407760291699,"max_error":0.4052062529436298,"r2":0.16051749312853647,"rmse":0.20512363756844773},"train":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"validation":{"mae":0.1896178442300578,"max_error":0.43642061661647347,"r2":0.3523599079355254,"rmse":0.22426651338498732}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6259160923705888,1.1740309551030066],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":0.9510737,"metrics":{"blind":{"mae":0.710097011027392,"max_error":1.126124419271946,"r2":-9.970358338687541,"rmse":0.7415155979978445},"train":{"mae":0.883020389773804,"max_error":2.0674071786925197,"r2":-9.225163732394384,"rmse":0.9752301006447736},"validation":{"mae":0.7041060948290695,"max_error":1.1799194104969501,"r2":-6.3075581237791285,"rmse":0.7533273022447557}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7985222619026899,0.3508760128170252],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_err"]},{"complexity":2.0,"expression":"0.803504050000000","loss":0.09301303,"metrics":{"blind":{"mae":0.19123388535484315,"max_error":0.49804192803649905,"r2":-0.11009575616124301,"rmse":0.23587944936826424},"train":{"mae":0.2489609880489285,"max_error":0.6767832634613037,"r2":-3.974576223697568e-11,"rmse":0.30498042263364794},"validation":{"mae":0.24085260660789679,"max_error":0.4790615437194824,"r2":-0.0002615265870786754,"rmse":0.27871115475186525}},"score":2.3248519660478175,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.80350405,0.80350405],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1.0668246","loss":0.06070128,"metrics":{"blind":{"mae":0.22489940135827968,"max_error":0.5525096115730048,"r2":-0.6746763849038127,"rmse":0.2897179024367254},"train":{"mae":0.20064650076201357,"max_error":0.5868978557250739,"r2":0.3473897493416064,"rmse":0.24637628785525514},"validation":{"mae":0.23535883800347215,"max_error":0.6045991853884698,"r2":-0.12978787142816905,"rmse":0.2962074806944902}},"score":0.2133874028541071,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.701422507975185,1.3548995443693639],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":5.0,"expression":"0.20018438794809*Cd_F**2","loss":0.04458775,"metrics":{"blind":{"mae":0.1634407760291699,"max_error":0.4052062529436298,"r2":0.16051749312853647,"rmse":0.20512363756844773},"train":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"validation":{"mae":0.1896178442300578,"max_error":0.43642061661647347,"r2":0.3523599079355254,"rmse":0.22426651338498732}},"score":0.3085056275358683,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6259160923705888,1.1740309551030066],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..77d93d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_err**4 - 0.93708986","deployment_expression_hash":"ef5439733203bf7e9e613302859b83c89d15ebad9632ce8767cbb4f94f8a3c2f","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cl_err**4 - 0.93708986","fitted_expression_hash":"ef5439733203bf7e9e613302859b83c89d15ebad9632ce8767cbb4f94f8a3c2f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:34:07.794661+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.10113808026896538,"max_error":0.23080492795637708,"r2":0.36799129202404024,"rmse":0.11769139232958219},"train":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"validation":{"mae":0.10354684747329734,"max_error":0.24173238581026824,"r2":0.2781532556152557,"rmse":0.12234518978489203}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.937088705737113,-0.6799074803852985],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.942243750000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274247952222823,"max_error":0.35665648689270024,"r2":-0.003754423946049412,"rmse":0.14831904001268342},"train":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"validation":{"mae":0.11859161282319287,"max_error":0.32858567943573,"r2":-0.007764034367198969,"rmse":0.1445585639935358}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224375,-0.94224375],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":6.0,"expression":"Cl_err**4 - 0.93708986","loss":0.049211014,"metrics":{"blind":{"mae":0.10113808026896538,"max_error":0.23080492795637708,"r2":0.36799129202404024,"rmse":0.11769139232958219},"train":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"validation":{"mae":0.10354684747329734,"max_error":0.24173238581026824,"r2":0.2781532556152557,"rmse":0.12234518978489203}},"score":0.009727148672841048,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.937088705737113,-0.6799074803852985],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..69088b9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","deployment_expression_hash":"412bb6c9da7cfef0002050b60cd71a49cde56fd9d41b017b9f0d8283b01ac271","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","fitted_expression_hash":"412bb6c9da7cfef0002050b60cd71a49cde56fd9d41b017b9f0d8283b01ac271","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:34:48.524386+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.17457551462063783,"max_error":0.4196667261955416,"r2":0.7454528335390933,"rmse":0.2059986826635149},"train":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"validation":{"mae":0.12805053866355137,"max_error":0.3494996128400467,"r2":0.8369357104078647,"rmse":0.1616102842518539}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06697057970742465,0.48471876867424],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":3.077293,"metrics":{"blind":{"mae":1.795773611916229,"max_error":2.253900172188878,"r2":-19.09028590209665,"rmse":1.830093877968411},"train":{"mae":1.7209845404929907,"max_error":2.2174073616042733,"r2":-17.230484941638476,"rmse":1.7542214139566625},"validation":{"mae":1.6458853284995525,"max_error":2.2143625784665346,"r2":-16.6126461175921,"rmse":1.6795845356106587}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.768247107975185,2.421724144369364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":3.013243664916769,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.58792293","loss":0.08905516,"metrics":{"blind":{"mae":0.21833164467603483,"max_error":0.3662646647872042,"r2":0.6465868558637489,"rmse":0.2427289954306513},"train":{"mae":0.2591766378435967,"max_error":0.593176400493792,"r2":0.47241975169866435,"rmse":0.2984211237928768},"validation":{"mae":0.23068798222927667,"max_error":0.44921229084023395,"r2":0.5554205052703649,"rmse":0.2668481994274174}},"score":0.17389187225066657,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802538065425667,0.7603475905756425],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","loss":0.030799598,"metrics":{"blind":{"mae":0.17457551462063783,"max_error":0.4196667261955416,"r2":0.7454528335390933,"rmse":0.2059986826635149},"train":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"validation":{"mae":0.12805053866355137,"max_error":0.3494996128400467,"r2":0.8369357104078647,"rmse":0.1616102842518539}},"score":0.5308771575426796,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06697057970742465,0.48471876867424],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..b7a6ce7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.1971676","deployment_expression_hash":"26b671fabe9ed64f1d1abf92768688590a02597a2bc9fd31c5d9f8d61fec799e","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_F - 1*1.1971676","fitted_expression_hash":"26b671fabe9ed64f1d1abf92768688590a02597a2bc9fd31c5d9f8d61fec799e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:34:50.259352+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16604010309486628,"max_error":0.4221666115730047,"r2":0.1333272576168858,"rmse":0.2084190696930846},"train":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"validation":{"mae":0.18663857995965846,"max_error":0.4742561853884697,"r2":0.3470445825354267,"rmse":0.2251849352382468}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5710795079751849,1.2245565443693638],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.87259287,"metrics":{"blind":{"mae":0.7672155196485619,"max_error":1.6639559054747224,"r2":-16.238205505201513,"rmse":0.9295139479811793},"train":{"mae":0.8333614186206016,"max_error":1.5885829450562596,"r2":-8.38140059799011,"rmse":0.9341267364164152},"validation":{"mae":0.8691019496055117,"max_error":1.5712010501883924,"r2":-12.024528187807253,"rmse":1.0057234310359096}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7121316739358008,0.6465766200562939],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"0.803506100000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123450035484313,"max_error":0.498043978036499,"r2":-0.11010183282567798,"rmse":0.2358800949694619},"train":{"mae":0.2489614744896064,"max_error":0.6767812134613037,"r2":-1.696809359685858e-10,"rmse":0.30498042265346176},"validation":{"mae":0.2408526591719994,"max_error":0.4790594937194824,"r2":-0.0002612887139286091,"rmse":0.2787111216115802}},"score":2.2387293912950503,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035061,0.8035061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.1971676","loss":0.03992274,"metrics":{"blind":{"mae":0.16604010309486628,"max_error":0.4221666115730047,"r2":0.1333272576168858,"rmse":0.2084190696930846},"train":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"validation":{"mae":0.18663857995965846,"max_error":0.4742561853884697,"r2":0.3470445825354267,"rmse":0.2251849352382468}},"score":0.42289680600771257,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5710795079751849,1.2245565443693638],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..1934f99 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942249240000000","deployment_expression_hash":"973b9ab806369718228d56d3963e398aed1f8e1540124200841f8c267278933d","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-0.942249240000000","fitted_expression_hash":"973b9ab806369718228d56d3963e398aed1f8e1540124200841f8c267278933d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:34:49.376818+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274138152222824,"max_error":0.3566619768927002,"r2":-0.00374988077191607,"rmse":0.1483187043528983},"train":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"validation":{"mae":0.1185897828231929,"max_error":0.32859116943572997,"r2":-0.007757317176130263,"rmse":0.14455808221948954}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224924,-0.94224924],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.46353057,"metrics":{"blind":{"mae":0.5827726590187012,"max_error":1.3141757168341428,"r2":-21.72259987442313,"rmse":0.7056871025605645},"train":{"mae":0.5669855430052725,"max_error":1.4811755518894643,"r2":-8.059791255049982,"rmse":0.6808307561086059},"validation":{"mae":0.6131191903640194,"max_error":1.2822435218840837,"r2":-24.243064396910242,"rmse":0.7234948357979383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.942249240000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274138152222824,"max_error":0.3566619768927002,"r2":-0.00374988077191607,"rmse":0.1483187043528983},"train":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"validation":{"mae":0.1185897828231929,"max_error":0.32859116943572997,"r2":-0.007757317176130263,"rmse":0.14455808221948954}},"score":2.2038462825986183,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224924,-0.94224924],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"-Cd_rear_s + Cd_rear_s*0.407908233687764","loss":0.049414404,"metrics":{"blind":{"mae":0.1397743706214069,"max_error":0.3621292056517029,"r2":-0.39005756485604337,"rmse":0.17454184502612693},"train":{"mae":0.17401915264209836,"max_error":0.5878565877103972,"r2":0.0341862277658852,"rmse":0.2222935020607664},"validation":{"mae":0.13197281439577935,"max_error":0.3670967299800967,"r2":-0.38605234117467413,"rmse":0.16953298676104428}},"score":0.006956818856913556,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2118694316795524,-0.7805781475346255],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..da83a7d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.61362891901809*(-Cl_F + Cl_rear_s)","deployment_expression_hash":"24bf583d8c67a283c41af93de169477c48b2fced4115688767371abb6164e05b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"0.61362891901809*(-Cl_F + Cl_rear_s)","fitted_expression_hash":"24bf583d8c67a283c41af93de169477c48b2fced4115688767371abb6164e05b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:31:30.238704+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15338456905674805,"max_error":0.4696001420352597,"r2":0.8006922095414605,"rmse":0.18342031493848668},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19299667640735557,"max_error":0.41552867380027975,"r2":0.7207572061058916,"rmse":0.2157601805781459},"train":{"mae":0.15338456905674805,"max_error":0.4696001420352597,"r2":0.8006922095414605,"rmse":0.18342031493848668},"validation":{"mae":0.14355656286611998,"max_error":0.32110983512919944,"r2":0.8244669744305733,"rmse":0.16767525753733423}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.07577306889588165,0.5484293075308144],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.80733895,"metrics":{"blind":{"mae":0.696158525246392,"max_error":1.5813681320287287,"r2":-3.218013474077466,"rmse":0.8385602869923516},"train":{"mae":0.7675379431658889,"max_error":1.5932811493985355,"r2":-3.782833919352938,"rmse":0.8985204124834466},"validation":{"mae":0.8699088570063349,"max_error":1.589142348151654,"r2":-5.313344392831486,"rmse":1.0055861962407384}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":1.6751816639896868,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.5879267","loss":0.089055166,"metrics":{"blind":{"mae":0.21833111922476175,"max_error":0.3662668115411769,"r2":0.6465875310831275,"rmse":0.2427287635555747},"train":{"mae":0.2591760825076749,"max_error":0.5931794800757547,"r2":0.4724197517661024,"rmse":0.298421123773804},"validation":{"mae":0.23068642108249668,"max_error":0.44920943782514655,"r2":0.555423794557411,"rmse":0.266847212267686}},"score":0.2646529540428457,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.48025688612452944,0.7603524662324169],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"0.29328072 - Cl_F*Cl_rear_s","loss":0.074955784,"metrics":{"blind":{"mae":0.22187213723262236,"max_error":0.5720042389546274,"r2":0.5593640200714737,"rmse":0.2710318239922885},"train":{"mae":0.22568085058416903,"max_error":0.6345843265281923,"r2":0.5559472232297744,"rmse":0.2737805506270983},"validation":{"mae":0.211377697047173,"max_error":0.5872548683917067,"r2":0.5774044955712216,"rmse":0.2601668742030789}},"score":0.08617881369347735,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.47485751250161384,0.3576938954674561],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"0.61362891901809*(-Cl_F + Cl_rear_s)","loss":0.033643015,"metrics":{"blind":{"mae":0.19299667640735557,"max_error":0.41552867380027975,"r2":0.7207572061058916,"rmse":0.2157601805781459},"train":{"mae":0.15338456905674805,"max_error":0.4696001420352597,"r2":0.8006922095414605,"rmse":0.18342031493848668},"validation":{"mae":0.14355656286611998,"max_error":0.32110983512919944,"r2":0.8244669744305733,"rmse":0.16767525753733423}},"score":0.8010929364841508,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.07577306889588165,0.5484293075308144],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..d99466d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.200176710299654*Cd_F**2","deployment_expression_hash":"d997a3bf059a3dae8f0a14c971d1730e3d988a16114899a41602557eb872c486","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"0.200176710299654*Cd_F**2","fitted_expression_hash":"d997a3bf059a3dae8f0a14c971d1730e3d988a16114899a41602557eb872c486","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:31:31.598875+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1711156589828175,"max_error":0.46641163924094275,"r2":0.5206289799988969,"rmse":0.21115815062671273},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16343384708743733,"max_error":0.4051789967625008,"r2":0.16063607088577203,"rmse":0.20510915009570344},"train":{"mae":0.1711156589828175,"max_error":0.46641163924094275,"r2":0.5206289799988969,"rmse":0.21115815062671273},"validation":{"mae":0.1896137437119345,"max_error":0.43638227506977423,"r2":0.3524163250617013,"rmse":0.22425674503687643}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6258920866838472,1.1739859276309912],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd - 4.843399","loss":0.08078733,"metrics":{"blind":{"mae":0.1628010710832358,"max_error":0.4078796760926249,"r2":0.20531985195587354,"rmse":0.19957496699500452},"train":{"mae":0.23660908614306744,"max_error":0.6804012289454935,"r2":0.1314410194148743,"rmse":0.2842311154663145},"validation":{"mae":0.20752600473901553,"max_error":0.3729730391690733,"r2":0.28611153133757516,"rmse":0.2354576210339294}},"score":0.0704597760384715,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6469561936149599,0.944137967545748],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":5.0,"expression":"0.200176710299654*Cd_F**2","loss":0.044587757,"metrics":{"blind":{"mae":0.16343384708743733,"max_error":0.4051789967625008,"r2":0.16063607088577203,"rmse":0.20510915009570344},"train":{"mae":0.1711156589828175,"max_error":0.46641163924094275,"r2":0.5206289799988969,"rmse":0.21115815062671273},"validation":{"mae":0.1896137437119345,"max_error":0.43638227506977423,"r2":0.3524163250617013,"rmse":0.22425674503687643}},"score":0.5943608316851716,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6258920866838472,1.1739859276309912],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..d515ef4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s0-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942242000000000","deployment_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-0.942242000000000","fitted_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:31:30.907329+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_s","loss":930.02747,"metrics":{"blind":{"mae":29.78763811495155,"max_error":39.15629816055298,"r2":-45005.44857889332,"rmse":31.40657241791608},"train":{"mae":28.03092538533827,"max_error":50.02856117486954,"r2":-18176.562520950953,"rmse":30.49635218348233},"validation":{"mae":28.720286585127887,"max_error":39.819745779037476,"r2":-46296.18864870921,"rmse":30.984301341818675}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-44.143104553222656,48.6307218670845],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]},{"complexity":2.0,"expression":"-0.942242000000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"score":9.807943347402686,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-0.5293938*Cd_rear_s","loss":0.038074475,"metrics":{"blind":{"mae":0.10251503738188608,"max_error":0.26091198018421424,"r2":0.3148329462141385,"rmse":0.12254099589799888},"train":{"mae":0.14290246061215897,"max_error":0.5421214117184631,"r2":0.2558272761212339,"rmse":0.19512681006612032},"validation":{"mae":0.09168800390353561,"max_error":0.26324233621258175,"r2":0.3923065799753539,"rmse":0.11225525089867465}},"score":0.14774097240697567,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0835417751821224,-0.6979209224510647],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..aa5f68d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(-Cd_rear_a + Cl_rear_s)*0.44499984","deployment_expression_hash":"36aac085d5d9f1f7ac921f616b1444ec129f82a7b6cbc3857fc383b074b7b252","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"(-Cd_rear_a + Cl_rear_s)*0.44499984","fitted_expression_hash":"36aac085d5d9f1f7ac921f616b1444ec129f82a7b6cbc3857fc383b074b7b252","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:32:09.743112+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.19984399691390148,"max_error":0.43440542359078305,"r2":0.6745687222132433,"rmse":0.23437697421055695},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2136694696205807,"max_error":0.47824954414998183,"r2":0.63549507911388,"rmse":0.24650856157493958},"train":{"mae":0.19984399691390148,"max_error":0.43440542359078305,"r2":0.6745687222132433,"rmse":0.23437697421055695},"validation":{"mae":0.2326372135629955,"max_error":0.4195795199468453,"r2":0.5680835078429455,"rmse":0.2630204136368888}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.08923096982862799,0.33418069161443037],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"0.5921496*Cl_rear_s","loss":0.089063734,"metrics":{"blind":{"mae":0.2177425441104523,"max_error":0.36867146070590245,"r2":0.647300815468794,"rmse":0.2424836928535916},"train":{"mae":0.25855403262341503,"max_error":0.5966290203065612,"r2":0.472368951799944,"rmse":0.2984354907048333},"validation":{"mae":0.22893772964030143,"max_error":0.4460136825433932,"r2":0.5590447054348742,"rmse":0.265758303985885}},"score":0.17379559947674472,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4837064263553359,0.7658138484585565],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_rear_s)*0.44499984","loss":0.05493256,"metrics":{"blind":{"mae":0.2136694696205807,"max_error":0.47824954414998183,"r2":0.63549507911388,"rmse":0.24650856157493958},"train":{"mae":0.19984399691390148,"max_error":0.43440542359078305,"r2":0.6745687222132433,"rmse":0.23437697421055695},"validation":{"mae":0.2326372135629955,"max_error":0.4195795199468453,"r2":0.5680835078429455,"rmse":0.2630204136368888}},"score":0.2416229873836566,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.08923096982862799,0.33418069161443037],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_rear_s - 0.198024857600026*Cl_tot","loss":0.046387058,"metrics":{"blind":{"mae":0.1413597010325951,"max_error":0.3362189813746122,"r2":0.8373810139514178,"rmse":0.1646515919392336},"train":{"mae":0.17809615080016206,"max_error":0.49074611702247456,"r2":0.7251939910751308,"rmse":0.21537654701405665},"validation":{"mae":0.1501483004017823,"max_error":0.30245485920025494,"r2":0.8146378383520221,"rmse":0.17230588290710974}},"score":0.16908575312594196,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3778235230712493,0.8618448062564336],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..87e82a1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(Cd_F - 1.1455569)**2","deployment_expression_hash":"bdc3a69d0e9856be07e3f5b58c7164c27bbcd65147c49e324d005687dd4db37e","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"(Cd_F - 1.1455569)**2","fitted_expression_hash":"bdc3a69d0e9856be07e3f5b58c7164c27bbcd65147c49e324d005687dd4db37e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:32:11.498596+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17358329645468776,"max_error":0.6700320186487567,"r2":0.48669154552968397,"rmse":0.218504895009392},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2278168533453993,"max_error":0.697077679468777,"r2":-0.6410167937443476,"rmse":0.2867915801849091},"train":{"mae":0.17358329645468776,"max_error":0.6700320186487567,"r2":0.48669154552968397,"rmse":0.218504895009392},"validation":{"mae":0.24661423527199375,"max_error":0.7228468100305927,"r2":-0.314986126020393,"rmse":0.3195642244869848}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.38774309510817895,1.6286028356012952],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_s","loss":933.5714,"metrics":{"blind":{"mae":29.52893976923078,"max_error":40.4289111495018,"r2":-19358.087981010878,"rmse":31.149589725585326},"train":{"mae":28.157618568420915,"max_error":47.789261639118195,"r2":-10035.99381655593,"rmse":30.554402135745665},"validation":{"mae":29.35081851360603,"max_error":41.98858571052551,"r2":-12884.462654376322,"rmse":31.633524089955447}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-44.143104553222656,48.6307218670845],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]},{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":9.2140330270029,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.4728348*Cd_F","loss":0.08205643,"metrics":{"blind":{"mae":0.2368719583606417,"max_error":0.5854355519897304,"r2":-0.7109015386926087,"rmse":0.2928346019451408},"train":{"mae":0.2488947188782162,"max_error":0.647772735557938,"r2":0.11779644412173285,"rmse":0.2864549714612945},"validation":{"mae":0.24058814687953592,"max_error":0.5422867842549458,"r2":-0.07661069930448439,"rmse":0.2891524750432593}},"score":0.06266625853137339,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8360887676500249,1.1450754514580592],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":5.0,"expression":"(Cd_F - 1.1455569)**2","loss":0.047744382,"metrics":{"blind":{"mae":0.2278168533453993,"max_error":0.697077679468777,"r2":-0.6410167937443476,"rmse":0.2867915801849091},"train":{"mae":0.17358329645468776,"max_error":0.6700320186487567,"r2":0.48669154552968397,"rmse":0.218504895009392},"validation":{"mae":0.24661423527199375,"max_error":0.7228468100305927,"r2":-0.314986126020393,"rmse":0.3195642244869848}},"score":0.541545775760411,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.38774309510817895,1.6286028356012952],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":7.0,"expression":"Cd_F - 1.0263871 - 1*0.17810671","loss":0.03976342,"metrics":{"blind":{"mae":0.1653074820948663,"max_error":0.4148404015730047,"r2":0.15861967763935259,"rmse":0.20535536785875136},"train":{"mae":0.16027005941593916,"max_error":0.4492286457250738,"r2":0.5724963018462195,"rmse":0.1994076887964735},"validation":{"mae":0.18569932226735078,"max_error":0.4669299753884697,"r2":0.36085861607678993,"rmse":0.22279017655712088}},"score":0.09145700568443463,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5637532979751849,1.2172303343693638],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..3b99ba6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s1-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942232430000000","deployment_expression_hash":"e46c13345e93f7df1b194e000b6778c2ed744aa8050a31d909cd8c4628b72d46","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-0.942232430000000","fitted_expression_hash":"e46c13345e93f7df1b194e000b6778c2ed744aa8050a31d909cd8c4628b72d46","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:32:10.877007+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180690169522095,"r2":-2.481070016102649e-09,"rmse":0.22619347432954168},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274474352222824,"max_error":0.3566451668927002,"r2":-0.003763800339208645,"rmse":0.14831973275901225},"train":{"mae":0.16644193711927383,"max_error":0.7180690169522095,"r2":-2.481070016102649e-09,"rmse":0.22619347432954168},"validation":{"mae":0.11859538615652622,"max_error":0.32857435943573,"r2":-0.0077778939269155245,"rmse":0.14455955803137277}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94223243,-0.94223243],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.46353057,"metrics":{"blind":{"mae":0.5827726590187012,"max_error":1.3141757168341428,"r2":-21.72259987442313,"rmse":0.7056871025605645},"train":{"mae":0.5669855430052725,"max_error":1.4811755518894643,"r2":-8.059791255049982,"rmse":0.6808307561086059},"validation":{"mae":0.6131191903640194,"max_error":1.2822435218840837,"r2":-24.243064396910242,"rmse":0.7234948357979383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.942232430000000","loss":0.05116348,"metrics":{"blind":{"mae":0.12274474352222824,"max_error":0.3566451668927002,"r2":-0.003763800339208645,"rmse":0.14831973275901225},"train":{"mae":0.16644193711927383,"max_error":0.7180690169522095,"r2":-2.481070016102649e-09,"rmse":0.22619347432954168},"validation":{"mae":0.11859538615652622,"max_error":0.32857435943573,"r2":-0.0077778939269155245,"rmse":0.14455955803137277}},"score":2.20384634123419,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94223243,-0.94223243],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_s*(-0.5323017)","loss":0.03804759,"metrics":{"blind":{"mae":0.10195170776834514,"max_error":0.2655617043584818,"r2":0.30852103350961946,"rmse":0.12310413950094529},"train":{"mae":0.1424441863089026,"max_error":0.537143541055842,"r2":0.256352761153985,"rmse":0.1950579051450335},"validation":{"mae":0.09145824074937958,"max_error":0.2680590505240572,"r2":0.38446222921041806,"rmse":0.11297744571113585}},"score":0.14809412585055937,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.089493547054124,-0.7017545227886498],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..7149fa6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_rear_s*0.5879381","deployment_expression_hash":"c3c3a11ebf037342fc4f7c9ee64224f9bd56faf7db27e73e69fbe0255cee4f5c","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cl_rear_s*0.5879381","fitted_expression_hash":"c3c3a11ebf037342fc4f7c9ee64224f9bd56faf7db27e73e69fbe0255cee4f5c","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:32:49.295678+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.25917440324255364,"max_error":0.5931887923395145,"r2":0.4724197514770909,"rmse":0.2984211238555423},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.21832953032701305,"max_error":0.36627330305186334,"r2":0.6465895724434361,"rmse":0.24272806253676132},"train":{"mae":0.25917440324255364,"max_error":0.5931887923395145,"r2":0.4724197514770909,"rmse":0.2984211238555423},"validation":{"mae":0.23068170037340083,"max_error":0.44920081067077117,"r2":0.5554337403271283,"rmse":0.2668442273848538}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802661983882892,0.7603672095977294],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.80733895,"metrics":{"blind":{"mae":0.696158525246392,"max_error":1.5813681320287287,"r2":-3.218013474077466,"rmse":0.8385602869923516},"train":{"mae":0.7675379431658889,"max_error":1.5932811493985355,"r2":-3.782833919352938,"rmse":0.8985204124834466},"validation":{"mae":0.8699088570063349,"max_error":1.589142348151654,"r2":-5.313344392831486,"rmse":1.0055861962407384}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":1.6751816639896868,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"Cd_F - Cd_rear_s","loss":0.13329367,"metrics":{"blind":{"mae":0.3083123697608244,"max_error":0.663125607650727,"r2":0.22526863777908868,"rmse":0.3593816333882767},"train":{"mae":0.30653471831366486,"max_error":0.7952101309783757,"r2":0.21034221229703143,"rmse":0.365094053105025},"validation":{"mae":0.34121338738343465,"max_error":0.6883837869390845,"r2":0.002734142345385604,"rmse":0.3996640069080585}},"score":0.12600718930591367,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.37496467120945454,0.44990729657001793],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.5879381","loss":0.08905516,"metrics":{"blind":{"mae":0.21832953032701305,"max_error":0.36627330305186334,"r2":0.6465895724434361,"rmse":0.24272806253676132},"train":{"mae":0.25917440324255364,"max_error":0.5931887923395145,"r2":0.4724197514770909,"rmse":0.2984211238555423},"validation":{"mae":0.23068170037340083,"max_error":0.44920081067077117,"r2":0.5554337403271283,"rmse":0.2668442273848538}},"score":0.40329878615374914,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802661983882892,0.7603672095977294],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":7.0,"expression":"Cd_rear_a**2 + Cl_rear_s - 0.20285276","loss":0.07935074,"metrics":{"blind":{"mae":0.23467806131113528,"max_error":0.4228578823239474,"r2":0.5805144604691292,"rmse":0.26444709882796913},"train":{"mae":0.23068966851486156,"max_error":0.6573756963919619,"r2":0.5299107088689357,"rmse":0.28169262473894724},"validation":{"mae":0.15257650195239383,"max_error":0.3622911101306774,"r2":0.7902538730265183,"rmse":0.18328905743279222}},"score":0.03845939344360957,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.09847512720428345,1.3845245390394498],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..19f507a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(Cd_F - 1*1.139033)**2","deployment_expression_hash":"5e394ef51c451707270b9a8c3f4c6a9ccc72230d5c461a187079aef3b6f47542","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"(Cd_F - 1*1.139033)**2","fitted_expression_hash":"5e394ef51c451707270b9a8c3f4c6a9ccc72230d5c461a187079aef3b6f47542","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:32:51.608265+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17296536625680622,"max_error":0.6857126242399145,"r2":0.48393644767782906,"rmse":0.2190905046319178},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.22894130467893398,"max_error":0.7126485915675447,"r2":-0.6902531278668729,"rmse":0.29106216689894726},"train":{"mae":0.17296536625680622,"max_error":0.6857126242399145,"r2":0.48393644767782906,"rmse":0.2190905046319178},"validation":{"mae":0.24872447405892445,"max_error":0.7383750301317822,"r2":-0.3643815262401022,"rmse":0.32551086077567254}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3959103936750077,1.6452965718435881],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.803504050000000","loss":0.09301303,"metrics":{"blind":{"mae":0.19123388535484315,"max_error":0.49804192803649905,"r2":-0.11009575616124301,"rmse":0.23587944936826424},"train":{"mae":0.2489609880489285,"max_error":0.6767832634613037,"r2":-3.974576223697568e-11,"rmse":0.30498042263364794},"validation":{"mae":0.24085260660789679,"max_error":0.4790615437194824,"r2":-0.0002615265870786754,"rmse":0.27871115475186525}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.80350405,0.80350405],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F*0.40605012","loss":0.063788444,"metrics":{"blind":{"mae":0.17151675102284553,"max_error":0.45960235175211916,"r2":0.10782294066137632,"rmse":0.21146349709167267},"train":{"mae":0.20680515722582143,"max_error":0.5515464298675861,"r2":0.3141990100084907,"rmse":0.2525637491528948},"validation":{"mae":0.2058548201709442,"max_error":0.4166916005204432,"r2":0.2740268666341693,"rmse":0.23744216454237665}},"score":0.18858377272382448,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7179969503829768,0.9833413794280775],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":5.0,"expression":"(Cd_F - 1*1.139033)**2","loss":0.04800065,"metrics":{"blind":{"mae":0.22894130467893398,"max_error":0.7126485915675447,"r2":-0.6902531278668729,"rmse":0.29106216689894726},"train":{"mae":0.17296536625680622,"max_error":0.6857126242399145,"r2":0.48393644767782906,"rmse":0.2190905046319178},"validation":{"mae":0.24872447405892445,"max_error":0.7383750301317822,"r2":-0.3643815262401022,"rmse":0.32551086077567254}},"score":0.2843574929354757,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3959103936750077,1.6452965718435881],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..8d15455 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-actual_plus_target-s2-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942186200000000","deployment_expression_hash":"bc2fe3eb3317cd000aa0e49cd5c56d15bc47539aac291f7b27bf4aeedcb7fbbd","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-0.942186200000000","fitted_expression_hash":"bc2fe3eb3317cd000aa0e49cd5c56d15bc47539aac291f7b27bf4aeedcb7fbbd","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:32:50.140836+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927385,"max_error":0.7180227869522094,"r2":-6.461402857205201e-08,"rmse":0.22619348135657644},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12275398952222824,"max_error":0.35659893689270017,"r2":-0.003802214195546494,"rmse":0.14832257081632935},"train":{"mae":0.16644193711927385,"max_error":0.7180227869522094,"r2":-6.461402857205201e-08,"rmse":0.22619348135657644},"validation":{"mae":0.11861079615652621,"max_error":0.32852812943572995,"r2":-0.007834623595443846,"rmse":0.14456362673562428}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9421862,-0.9421862],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.46353057,"metrics":{"blind":{"mae":0.5827726590187012,"max_error":1.3141757168341428,"r2":-21.72259987442313,"rmse":0.7056871025605645},"train":{"mae":0.5669855430052725,"max_error":1.4811755518894643,"r2":-8.059791255049982,"rmse":0.6808307561086059},"validation":{"mae":0.6131191903640194,"max_error":1.2822435218840837,"r2":-24.243064396910242,"rmse":0.7234948357979383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.942186200000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12275398952222824,"max_error":0.35659893689270017,"r2":-0.003802214195546494,"rmse":0.14832257081632935},"train":{"mae":0.16644193711927385,"max_error":0.7180227869522094,"r2":-6.461402857205201e-08,"rmse":0.22619348135657644},"validation":{"mae":0.11861079615652621,"max_error":0.32852812943572995,"r2":-0.007834623595443846,"rmse":0.14456362673562428}},"score":2.2038462825986183,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9421862,-0.9421862],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_s*(-0.5323016)","loss":0.03804759,"metrics":{"blind":{"mae":0.10195171926269131,"max_error":0.26556154445875446,"r2":0.30852129469092715,"rmse":0.12310411625186272},"train":{"mae":0.14244419990412802,"max_error":0.5371437122402246,"r2":0.2563527611541234,"rmse":0.19505790514501534},"validation":{"mae":0.0914582486507226,"max_error":0.26805888488169305,"r2":0.38446254622670517,"rmse":0.11297741661812427}},"score":0.1480941551683454,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0894933423781767,-0.7017543909546687],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..8afc425 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"target_Cl*0.21710813","deployment_expression_hash":"cf0b9ecd60d54bda501a8ec609a6e665aa5e013caddb0bb526a58bea4edb3273","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cl*0.21710813","fitted_expression_hash":"cf0b9ecd60d54bda501a8ec609a6e665aa5e013caddb0bb526a58bea4edb3273","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:29:35.000976+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.34825610975266635,"max_error":0.7094304118976245,"r2":0.10879946240526228,"rmse":0.3878582355572821},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.30103300573183583,"max_error":0.5398263875105942,"r2":0.33128843945723674,"rmse":0.33388716550396935},"train":{"mae":0.34825610975266635,"max_error":0.7094304118976245,"r2":0.10879946240526228,"rmse":0.3878582355572821},"validation":{"mae":0.3523619409388265,"max_error":0.6599144125853875,"r2":0.05537536289534206,"rmse":0.388972767585036}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.45627114668370694,0.4636334683319833],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.294221000000000","loss":0.16879924,"metrics":{"blind":{"mae":0.3724867193957567,"max_error":0.667314068599701,"r2":-0.03234078724974032,"rmse":0.4148507244641141},"train":{"mae":0.36908401607574653,"max_error":0.7223586279907226,"r2":-1.4632739464559563e-13,"rmse":0.41085189792521676},"validation":{"mae":0.3834750396417226,"max_error":0.6489756543197631,"r2":-0.12580521816256485,"rmse":0.4246402837763002}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.294221,0.294221],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.21710813","loss":0.15043399,"metrics":{"blind":{"mae":0.30103300573183583,"max_error":0.5398263875105942,"r2":0.33128843945723674,"rmse":0.33388716550396935},"train":{"mae":0.34825610975266635,"max_error":0.7094304118976245,"r2":0.10879946240526228,"rmse":0.3878582355572821},"validation":{"mae":0.3523619409388265,"max_error":0.6599144125853875,"r2":0.05537536289534206,"rmse":0.388972767585036}},"score":0.057592848229719926,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.45627114668370694,0.4636334683319833],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..3a10357 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.803501900000000","deployment_expression_hash":"707b3f873225eecf468c7357aca36fbc33001ba459eaf794e12ad50f391dce9b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.803501900000000","fitted_expression_hash":"707b3f873225eecf468c7357aca36fbc33001ba459eaf794e12ad50f391dce9b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:29:36.702156+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.6476278,"metrics":{"blind":{"mae":1.480902001503273,"max_error":2.9576990716159344,"r2":-60.939521876736336,"rmse":1.7619509267689957},"train":{"mae":1.381970311505445,"max_error":2.9085206631571054,"r2":-27.465118152492117,"rmse":1.6271532475436994},"validation":{"mae":1.1038513973083657,"max_error":2.9586687702685595,"r2":-23.08611445248322,"rmse":1.3676688046981806}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.101584803313017,2.1354956552386284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":3.3486796498873748,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd - 1*4.843399","loss":0.08078733,"metrics":{"blind":{"mae":0.1628010710832358,"max_error":0.4078796760926249,"r2":0.20531985195587354,"rmse":0.19957496699500452},"train":{"mae":0.23660908614306744,"max_error":0.6804012289454935,"r2":0.1314410194148743,"rmse":0.2842311154663145},"validation":{"mae":0.20752600473901553,"max_error":0.3729730391690733,"r2":0.28611153133757516,"rmse":0.2354576210339294}},"score":0.0704597760384715,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6469561936149599,0.944137967545748],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":5.0,"expression":"(target_Cd - 1*4.754616)**2","loss":0.079647645,"metrics":{"blind":{"mae":0.1593500933435231,"max_error":0.38419244958323395,"r2":0.30444962079953986,"rmse":0.1867128379060887},"train":{"mae":0.23513627447602548,"max_error":0.6911784944961832,"r2":0.14369399355217005,"rmse":0.28221913542997107},"validation":{"mae":0.18547523633019836,"max_error":0.35876907191919805,"r2":0.4249985279637494,"rmse":0.2113158371124731}},"score":0.014207677236905645,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5413121610211906,1.0669257251956428],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":6.0,"expression":"(target_Cd + target_Cl)*0.14254752","loss":0.07746646,"metrics":{"blind":{"mae":0.2119840774531892,"max_error":0.5362200019444898,"r2":-0.3946218794445704,"rmse":0.26438579727802963},"train":{"mae":0.2287943671085195,"max_error":0.6437453949327582,"r2":0.1671443483404642,"rmse":0.2783279561747831},"validation":{"mae":0.2059463245668273,"max_error":0.5793581589296833,"r2":0.10229641155108582,"rmse":0.2640365496724347}},"score":0.02776740057198462,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.48306081498697406,1.1294086512570085],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd","target_Cl"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..c7f0d15 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s0-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"target_Cd*(-0.16703847)","deployment_expression_hash":"e61b705e1fc5c189bf4f282c55476a55988d92376781a230eafaef4f930a200c","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cd*(-0.16703847)","fitted_expression_hash":"e61b705e1fc5c189bf4f282c55476a55988d92376781a230eafaef4f930a200c","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:29:35.804765+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16296209006313087,"max_error":0.7118988319287449,"r2":0.04023692016478675,"rmse":0.2215960887116426},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12010642594929528,"max_error":0.34287383744117805,"r2":0.0380280807545742,"rmse":0.14519924798178993},"train":{"mae":0.16296209006313087,"max_error":0.7118988319287449,"r2":0.04023692016478675,"rmse":0.2215960887116426},"validation":{"mae":0.11599367995722652,"max_error":0.31760089704666283,"r2":0.03299275766791043,"rmse":0.14160521941910317}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9667413201272813,-0.9171005312979966],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.942268000000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12273762952222825,"max_error":0.3566807368927002,"r2":-0.003734376949105611,"rmse":0.14831755889035061},"train":{"mae":0.16644193711927383,"max_error":0.7181045869522095,"r2":-1.154430195882128e-08,"rmse":0.22619347535456363},"validation":{"mae":0.11858352948985959,"max_error":0.32860992943573,"r2":-0.007734385653428877,"rmse":0.14455643750019767}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942268,-0.942268],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd*(-0.16703847)","loss":0.049104825,"metrics":{"blind":{"mae":0.12010642594929528,"max_error":0.34287383744117805,"r2":0.0380280807545742,"rmse":0.14519924798178993},"train":{"mae":0.16296209006313087,"max_error":0.7118988319287449,"r2":0.04023692016478675,"rmse":0.2215960887116426},"validation":{"mae":0.11599367995722652,"max_error":0.31760089704666283,"r2":0.03299275766791043,"rmse":0.14160521941910317}},"score":0.020534378056710233,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9667413201272813,-0.9171005312979966],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":6.0,"expression":"target_Cd*target_Cd*(-0.029595971)","loss":0.04736739,"metrics":{"blind":{"mae":0.11755132429516808,"max_error":0.32879335577910485,"r2":0.06576498347510806,"rmse":0.14309064466045512},"train":{"mae":0.16062879917124315,"max_error":0.7052502314160225,"r2":0.07419538871430009,"rmse":0.21764051287449962},"validation":{"mae":0.11453444307451455,"max_error":0.3062417242721964,"r2":0.06123032456094302,"rmse":0.13952239548031103}},"score":0.018011640778603125,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9913343371524322,-0.8921409543242083],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":7.0,"expression":"(3.3101525 - target_Cd)*0.4024812","loss":0.046753332,"metrics":{"blind":{"mae":0.11747569757474952,"max_error":0.31927676133895966,"r2":0.06953221473867788,"rmse":0.14280185219172672},"train":{"mae":0.15999338679224429,"max_error":0.6990156602059558,"r2":0.08619722564331844,"rmse":0.2162251997528319},"validation":{"mae":0.11478782352874473,"max_error":0.29794744817810803,"r2":0.06414054924867574,"rmse":0.1393059650258933}},"score":0.013048491332117782,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9971006733591736,-0.8774905963693811],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..3e36388 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(-target_Cl - 1.3644923)*(-0.22505078)","deployment_expression_hash":"9023e5f6ca5d17585ddb7c3b339cf6807bf53fc952f85a5ef9de7e1e74d92fcd","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"(-target_Cl - 1.3644923)*(-0.22505078)","fitted_expression_hash":"9023e5f6ca5d17585ddb7c3b339cf6807bf53fc952f85a5ef9de7e1e74d92fcd","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:30:13.316952+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.18720899326198392,"max_error":0.6105076283122236,"r2":0.666743727886962,"rmse":0.23717803326668183},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.11820863035524412,"max_error":0.34313217829641285,"r2":0.8627365984140306,"rmse":0.15127170022592154},"train":{"mae":0.18720899326198392,"max_error":0.6105076283122236,"r2":0.666743727886962,"rmse":0.23717803326668183},"validation":{"mae":0.15005401415939634,"max_error":0.4274340564816245,"r2":0.7715230650618408,"rmse":0.19129813884223487}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.16588324280274708,0.7876750193170584],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":28.820745,"metrics":{"blind":{"mae":5.418639480881393,"max_error":6.0763815604150295,"r2":-176.2205137926703,"rmse":5.435472530759538},"train":{"mae":5.352680397867146,"max_error":6.031478215008974,"r2":-169.73974012872955,"rmse":5.368495650319664},"validation":{"mae":5.20732899564199,"max_error":6.071603357791901,"r2":-169.29195322602436,"rmse":5.222598337569704}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[5.49035519361496,5.787536967545748],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"0.294221000000000","loss":0.16879924,"metrics":{"blind":{"mae":0.3724867193957567,"max_error":0.667314068599701,"r2":-0.03234078724974032,"rmse":0.4148507244641141},"train":{"mae":0.36908401607574653,"max_error":0.7223586279907226,"r2":-1.4632739464559563e-13,"rmse":0.41085189792521676},"validation":{"mae":0.3834750396417226,"max_error":0.6489756543197631,"r2":-0.12580521816256485,"rmse":0.4246402837763002}},"score":5.140140639541446,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.294221,0.294221],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.21710864","loss":0.150434,"metrics":{"blind":{"mae":0.30103303569660467,"max_error":0.5398254497152754,"r2":0.3312884731393979,"rmse":0.3338871570952307},"train":{"mae":0.3482561089163519,"max_error":0.7094304914609761,"r2":0.10879946239716065,"rmse":0.3878582355590451},"validation":{"mae":0.3523616459025584,"max_error":0.6599138623907045,"r2":0.05537675424586741,"rmse":0.3889724811232805}},"score":0.057592814992551575,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4562722184919566,0.46363455743476745],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"(-target_Cl - 1.3644923)*(-0.22505078)","loss":0.056253422,"metrics":{"blind":{"mae":0.11820863035524412,"max_error":0.34313217829641285,"r2":0.8627365984140306,"rmse":0.15127170022592154},"train":{"mae":0.18720899326198392,"max_error":0.6105076283122236,"r2":0.666743727886962,"rmse":0.23717803326668183},"validation":{"mae":0.15005401415939634,"max_error":0.4274340564816245,"r2":0.7715230650618408,"rmse":0.19129813884223487}},"score":0.3278858583357573,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.16588324280274708,0.7876750193170584],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..daa14ed --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.803504000000000","deployment_expression_hash":"c3867c632d301844bde3547d22d8cfcb58d2d4d8e0b5403872600809aa5314b5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.803504000000000","fitted_expression_hash":"c3867c632d301844bde3547d22d8cfcb58d2d4d8e0b5403872600809aa5314b5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:30:14.676777+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24896097618452173,"max_error":0.6767833134613037,"r2":-3.7705394362319566e-11,"rmse":0.3049804226333368},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19123387035484316,"max_error":0.498041878036499,"r2":-0.11009560795201012,"rmse":0.23587943362209404},"train":{"mae":0.24896097618452173,"max_error":0.6767833134613037,"r2":-3.7705394362319566e-11,"rmse":0.3049804226333368},"validation":{"mae":0.24085260532584557,"max_error":0.4790615937194824,"r2":-0.0002615323902150912,"rmse":0.27871115556035325}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.803504,0.803504],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.6476278,"metrics":{"blind":{"mae":1.480902001503273,"max_error":2.9576990716159344,"r2":-60.939521876736336,"rmse":1.7619509267689957},"train":{"mae":1.381970311505445,"max_error":2.9085206631571054,"r2":-27.465118152492117,"rmse":1.6271532475436994},"validation":{"mae":1.1038513973083657,"max_error":2.9586687702685595,"r2":-23.08611445248322,"rmse":1.3676688046981806}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.101584803313017,2.1354956552386284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.803504000000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123387035484316,"max_error":0.498041878036499,"r2":-0.11009560795201012,"rmse":0.23587943362209404},"train":{"mae":0.24896097618452173,"max_error":0.6767833134613037,"r2":-3.7705394362319566e-11,"rmse":0.3049804226333368},"validation":{"mae":0.24085260532584557,"max_error":0.4790615937194824,"r2":-0.0002615323902150912,"rmse":0.27871115556035325}},"score":3.3486796498873748,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.803504,0.803504],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd - 4.843399","loss":0.08078733,"metrics":{"blind":{"mae":0.1628010710832358,"max_error":0.4078796760926249,"r2":0.20531985195587354,"rmse":0.19957496699500452},"train":{"mae":0.23660908614306744,"max_error":0.6804012289454935,"r2":0.1314410194148743,"rmse":0.2842311154663145},"validation":{"mae":0.20752600473901553,"max_error":0.3729730391690733,"r2":0.28611153133757516,"rmse":0.2354576210339294}},"score":0.0704597760384715,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6469561936149599,0.944137967545748],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":5.0,"expression":"(target_Cd - 4.7548404)**2","loss":0.07964785,"metrics":{"blind":{"mae":0.15928599742527186,"max_error":0.38380088402706747,"r2":0.30536991916018386,"rmse":0.18658927504137973},"train":{"mae":0.23505345122212698,"max_error":0.6915769182283427,"r2":0.14369179470401483,"rmse":0.28221949777510363},"validation":{"mae":0.1854976534691091,"max_error":0.35914939429666914,"r2":0.4247977754227169,"rmse":0.21135272266078295}},"score":0.014205103403916853,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5409820116264569,1.0664622006207691],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..1c81c1e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s1-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942262350000000","deployment_expression_hash":"0831afed773d1fda8df54d4534250cd4639c603423de0672d96b1f4493cd5bad","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.942262350000000","fitted_expression_hash":"0831afed773d1fda8df54d4534250cd4639c603423de0672d96b1f4493cd5bad","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:30:14.115836+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180989369522095,"r2":-6.800607854628993e-09,"rmse":0.2261934748180673},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12273875952222824,"max_error":0.3566750868927002,"r2":-0.003739042897652256,"rmse":0.14831790362363365},"train":{"mae":0.16644193711927383,"max_error":0.7180989369522095,"r2":-6.800607854628993e-09,"rmse":0.2261934748180673},"validation":{"mae":0.11858541282319288,"max_error":0.32860427943573,"r2":-0.007741288430127113,"rmse":0.14455693259052793}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94226235,-0.94226235],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":3.0248346,"metrics":{"blind":{"mae":1.2764834593894192,"max_error":3.167892448604107,"r2":-113.74844628316532,"rmse":1.5858298071747228},"train":{"mae":1.405719258370374,"max_error":3.553594645112753,"r2":-58.12096192534913,"rmse":1.7392051657057173},"validation":{"mae":1.7438528197205578,"max_error":3.136259203776717,"r2":-195.73070351076083,"rmse":2.0197632712402607}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.101584803313017,2.1354956552386284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-0.942262350000000","loss":0.05116348,"metrics":{"blind":{"mae":0.12273875952222824,"max_error":0.3566750868927002,"r2":-0.003739042897652256,"rmse":0.14831790362363365},"train":{"mae":0.16644193711927383,"max_error":0.7180989369522095,"r2":-6.800607854628993e-09,"rmse":0.2261934748180673},"validation":{"mae":0.11858541282319288,"max_error":0.32860427943573,"r2":-0.007741288430127113,"rmse":0.14455693259052793}},"score":4.079585694994751,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94226235,-0.94226235],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"4.7046576 - target_Cd","loss":0.043664064,"metrics":{"blind":{"mae":0.118849568389256,"max_error":0.30855725400099754,"r2":0.037462524510548656,"rmse":0.1452419240067384},"train":{"mae":0.15464722434345465,"max_error":0.6750512265419006,"r2":0.14657768358661083,"rmse":0.2089594749962524},"validation":{"mae":0.11571286634172293,"max_error":0.27034069530715943,"r2":0.045962804337256524,"rmse":0.14065236904696343}},"score":0.07925028329304343,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0828793675457478,-0.7856975936149597],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..bbd63b9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"target_Cl*0.22501326 + 0.30711526","deployment_expression_hash":"7cb16fcb982a60fa60b5da0cf7c5752f98bb75098d558e05f612028c52c588ab","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cl*0.22501326 + 0.30711526","fitted_expression_hash":"7cb16fcb982a60fa60b5da0cf7c5752f98bb75098d558e05f612028c52c588ab","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:30:52.411988+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1872011262747403,"max_error":0.6105297812589926,"r2":0.6667437544728975,"rmse":0.23717802380609465},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1182162855355555,"max_error":0.3432146704188029,"r2":0.8626905640357871,"rmse":0.1512970642880998},"train":{"mae":0.1872011262747403,"max_error":0.6105297812589926,"r2":0.6667437544728975,"rmse":0.23717802380609465},"validation":{"mae":0.15004820275907876,"max_error":0.4275040726765983,"r2":0.7715058878793075,"rmse":0.1913053297240884}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.16576918775992072,0.7876300991010798],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":1.5148845,"metrics":{"blind":{"mae":1.036934501430369,"max_error":1.9805030636489391,"r2":-7.540823138772231,"rmse":1.193246513196175},"train":{"mae":1.0661067202777226,"max_error":2.23390980809927,"r2":-7.97447100287709,"rmse":1.230806346211008},"validation":{"mae":0.9126892686860325,"max_error":2.0859514493495226,"r2":-6.271999205151219,"rmse":1.079236125483707}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.101584803313017,2.1354956552386284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.294221000000000","loss":0.16879924,"metrics":{"blind":{"mae":0.3724867193957567,"max_error":0.667314068599701,"r2":-0.03234078724974032,"rmse":0.4148507244641141},"train":{"mae":0.36908401607574653,"max_error":0.7223586279907226,"r2":-1.4632739464559563e-13,"rmse":0.41085189792521676},"validation":{"mae":0.3834750396417226,"max_error":0.6489756543197631,"r2":-0.12580521816256485,"rmse":0.4246402837763002}},"score":2.194384397631419,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.294221,0.294221],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.21711498","loss":0.15043399,"metrics":{"blind":{"mae":0.30103340819980984,"max_error":0.5398137916322914,"r2":0.3312888912934413,"rmse":0.33388705270321634},"train":{"mae":0.34825609851981537,"max_error":0.7094314805426432,"r2":0.10879946172369948,"rmse":0.3878582357055932},"validation":{"mae":0.3523579781967961,"max_error":0.6599070227156254,"r2":0.055394050042924525,"rmse":0.3889689201163288}},"score":0.057592848229719926,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4562855425396096,0.4636480964772217],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"target_Cl*0.22501326 + 0.30711526","loss":0.056253407,"metrics":{"blind":{"mae":0.1182162855355555,"max_error":0.3432146704188029,"r2":0.8626905640357871,"rmse":0.1512970642880998},"train":{"mae":0.1872011262747403,"max_error":0.6105297812589926,"r2":0.6667437544728975,"rmse":0.23717802380609465},"validation":{"mae":0.15004820275907876,"max_error":0.4275040726765983,"r2":0.7715058878793075,"rmse":0.1913053297240884}},"score":0.3278859250611385,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.16576918775992072,0.7876300991010798],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-illusion_1L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..cde787a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.803501900000000","deployment_expression_hash":"707b3f873225eecf468c7357aca36fbc33001ba459eaf794e12ad50f391dce9b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.803501900000000","fitted_expression_hash":"707b3f873225eecf468c7357aca36fbc33001ba459eaf794e12ad50f391dce9b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:30:54.118388+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":23.539303,"metrics":{"blind":{"mae":4.910213443078101,"max_error":5.251278676092625,"r2":-480.74537180753293,"rmse":4.913813392288327},"train":{"mae":4.8433991134229855,"max_error":5.339932549744844,"r2":-252.07524296005897,"rmse":4.851731886543791},"validation":{"mae":4.83549042026966,"max_error":5.216372039169073,"r2":-300.7958634114618,"rmse":4.841213210569151}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[5.49035519361496,5.787536967545748],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"0.803501900000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123324035484313,"max_error":0.498039778036499,"r2":-0.11008938325431661,"rmse":0.235878772291568},"train":{"mae":0.24896047787943698,"max_error":0.6767854134613037,"r2":-5.555556015224283e-13,"rmse":0.30498042262767183},"validation":{"mae":0.2408525514796917,"max_error":0.47906369371948243,"r2":-0.0002617761800738361,"rmse":0.278711189524945}},"score":5.533687072822229,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035019,0.8035019],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cd*0.14254752","loss":0.0905635,"metrics":{"blind":{"mae":0.1869244536646754,"max_error":0.48663749808222057,"r2":-0.056347353206507966,"rmse":0.23009821962823965},"train":{"mae":0.24686097637070312,"max_error":0.6751620821420847,"r2":0.026335622266630998,"rmse":0.3009377035531578},"validation":{"mae":0.2356121858369081,"max_error":0.4616424797092378,"r2":0.047884141684319426,"rmse":0.2719208240509497}},"score":0.013344218129935637,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7826365167689324,0.8249990416319669],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":5.0,"expression":"0.0246831938904996*target_Cd**2","loss":0.08871263,"metrics":{"blind":{"mae":0.1771028008738023,"max_error":0.4566899465343204,"r2":0.04080032267939404,"rmse":0.21926251744077352},"train":{"mae":0.23988454044356414,"max_error":0.6936302195685663,"r2":0.04623467739272813,"rmse":0.2978466542493909},"validation":{"mae":0.23137284554151313,"max_error":0.463936848208944,"r2":0.08556097098719329,"rmse":0.26648633575665753}},"score":0.020648992859989907,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.7440502003884171,0.8267779980674865],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":7.0,"expression":"0.808776 - (-0.09205173)*target_Cl","loss":0.07417759,"metrics":{"blind":{"mae":0.19309708881007742,"max_error":0.5353323604222576,"r2":-0.1478122949111933,"rmse":0.2398530913934321},"train":{"mae":0.2194459148916464,"max_error":0.6179467261743531,"r2":0.20250333398460052,"rmse":0.2723556568153348},"validation":{"mae":0.2075826519122262,"max_error":0.5336273474565989,"r2":0.1659939688696631,"rmse":0.2544967050571626}},"score":0.08947009313282576,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6153214831133271,1.0053520694721994],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-illusion_1L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..3967f33 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-illusion_1L-target_only-s2-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-illusion_1L-target_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"4.7046576 - target_Cd","deployment_expression_hash":"f34444fd2d0e2e5147699cead709cf1bf85fb096bdff7e45da0718dcf290ef58","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"4.7046576 - target_Cd","fitted_expression_hash":"f34444fd2d0e2e5147699cead709cf1bf85fb096bdff7e45da0718dcf290ef58","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-illusion_1L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:30:53.238170+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15464722434345465,"max_error":0.6750512265419006,"r2":0.14657768358661083,"rmse":0.2089594749962524},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.118849568389256,"max_error":0.30855725400099754,"r2":0.037462524510548656,"rmse":0.1452419240067384},"train":{"mae":0.15464722434345465,"max_error":0.6750512265419006,"r2":0.14657768358661083,"rmse":0.2089594749962524},"validation":{"mae":0.11571286634172293,"max_error":0.27034069530715943,"r2":0.045962804337256524,"rmse":0.14065236904696343}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0828793675457478,-0.7856975936149597],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.942243750000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274247952222823,"max_error":0.35665648689270024,"r2":-0.003754423946049412,"rmse":0.14831904001268342},"train":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"validation":{"mae":0.11859161282319287,"max_error":0.32858567943573,"r2":-0.007764034367198969,"rmse":0.1445585639935358}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224375,-0.94224375],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"4.7046576 - target_Cd","loss":0.043664064,"metrics":{"blind":{"mae":0.118849568389256,"max_error":0.30855725400099754,"r2":0.037462524510548656,"rmse":0.1452419240067384},"train":{"mae":0.15464722434345465,"max_error":0.6750512265419006,"r2":0.14657768358661083,"rmse":0.2089594749962524},"validation":{"mae":0.11571286634172293,"max_error":0.27034069530715943,"r2":0.045962804337256524,"rmse":0.14065236904696343}},"score":0.07925031261082945,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0828793675457478,-0.7856975936149597],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-illusion_1L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..bec96d1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cl_F - 0.97393936","deployment_expression_hash":"17c80186646f321af5756dc3d6edaf6ba296c7d79ae1f1b3e70dce15b8f3d871","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 0.97393936","fitted_expression_hash":"17c80186646f321af5756dc3d6edaf6ba296c7d79ae1f1b3e70dce15b8f3d871","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:55:44.480654+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6658938359650768,"max_error":2.029082779891982,"r2":0.7877028698664693,"rmse":0.8361376447007807},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.49041997909498025,"max_error":1.2572607857903533,"r2":0.9001963385690752,"rmse":0.5927999328070218},"train":{"mae":0.6658938359650768,"max_error":2.029082779891982,"r2":0.7877028698664693,"rmse":0.8361376447007807},"validation":{"mae":0.8370798448866674,"max_error":1.5362721941171147,"r2":0.7216586100302188,"rmse":0.9308683824349571}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4319655270053007,2.4830841693358563],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_hat_C","loss":572.42816,"score":0.0},{"complexity":2.0,"expression":"-0.996727000000000","loss":3.293149,"score":5.158042992973096},{"complexity":3.0,"expression":"Cd_B - Cl_F","loss":2.3283682,"score":0.3466765709902704},{"complexity":4.0,"expression":"-Cl_F - 0.97393936","loss":0.699126,"score":1.2030919743570359},{"complexity":6.0,"expression":"Cd_T*(-0.6324934) - Cl_F","loss":0.69181806,"score":0.005253990763430652}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-karman_re50-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..a156f63 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cd_F + Cl_T","deployment_expression_hash":"c4a861217d4c53190620b96025014145874a1ba066987707a09ad1f3b640e83e","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cd_F + Cl_T","fitted_expression_hash":"c4a861217d4c53190620b96025014145874a1ba066987707a09ad1f3b640e83e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:55:46.820538+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5996233581300673,"max_error":1.703632699791342,"r2":0.26958021650371866,"rmse":0.7314690748236615},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7118404753586219,"max_error":1.656642786692828,"r2":0.1251484814267848,"rmse":0.8303213536757458},"train":{"mae":0.5996233581300673,"max_error":1.703632699791342,"r2":0.26958021650371866,"rmse":0.7314690748236615},"validation":{"mae":0.6638345209104068,"max_error":1.4289310396416113,"r2":-0.5246841013635692,"rmse":0.7861136228399879}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.566681243479252,2.8894172282889485],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"3.58962660000000","loss":0.73251975,"score":0.0},{"complexity":3.0,"expression":"-Cd_F + Cl_T","loss":0.535047,"score":0.31413570948040975},{"complexity":6.0,"expression":"-Cd_F + Cl_T + 0.2021903","loss":0.52543455,"score":0.006042986331297801},{"complexity":7.0,"expression":"-Cd_F + 1.8107936 + 2.1841455","loss":0.4734393,"score":0.10420192440001749}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-karman_re50-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..038ace9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s0-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_F - Cd_T + Cl_B","deployment_expression_hash":"7b7ef93f7b7b1f6f25c2dc6f907bfe358db4eb6e7e1d4e004d38f09e5848fb64","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_F - Cd_T + Cl_B","fitted_expression_hash":"7b7ef93f7b7b1f6f25c2dc6f907bfe358db4eb6e7e1d4e004d38f09e5848fb64","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:55:45.905413+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7342316690731007,"max_error":2.512784048449248,"r2":0.3171506454301751,"rmse":0.9539102441187086},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6231878152546415,"max_error":1.9885636125691235,"r2":0.552056076461005,"rmse":0.7620471086093406},"train":{"mae":0.7342316690731007,"max_error":2.512784048449248,"r2":0.3171506454301751,"rmse":0.9539102441187086},"validation":{"mae":1.1329897828974749,"max_error":3.074340256745927,"r2":-0.15227570867977192,"rmse":1.4113776536134601}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.882742836140096,-2.2407632786780596],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.42718480000000","loss":1.3325701,"score":0.0},{"complexity":4.0,"expression":"Cl_B - 0.4373363","loss":1.2897294,"score":0.01633852731329421},{"complexity":5.0,"expression":"Cd_F - Cd_T + Cl_B","loss":0.90994483,"score":0.3488037366101736},{"complexity":6.0,"expression":"Cd_F + Cl_B - 1.1818507","loss":0.8240926,"score":0.09910106906317463},{"complexity":7.0,"expression":"Cd_F + Cl_B - 1*1.27998970477569","loss":0.81691647,"score":0.00874605250517483}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-karman_re50-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..d30d180 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cl_F - 0.97393924","deployment_expression_hash":"aaef8391ce7346f43e2108f425028596812b48962d49b1ce2cede71670ffb44c","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 0.97393924","fitted_expression_hash":"aaef8391ce7346f43e2108f425028596812b48962d49b1ce2cede71670ffb44c","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T09:56:25.571713+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6658938074905006,"max_error":2.029082899891982,"r2":0.7877028698754074,"rmse":0.8361376446831793},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.49041991309498023,"max_error":1.2572609057903534,"r2":0.9001963519109014,"rmse":0.5927998931840569},"train":{"mae":0.6658938074905006,"max_error":2.029082899891982,"r2":0.7877028698754074,"rmse":0.8361376446831793},"validation":{"mae":0.8370797802712827,"max_error":1.5362720741171145,"r2":0.721658657915631,"rmse":0.930868302362392}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4319654070053005,2.4830842893358565],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":12.74901,"score":0.0},{"complexity":2.0,"expression":"-0.997001600000000","loss":3.293149,"score":1.3536093716656468},{"complexity":3.0,"expression":"Cd_B - Cl_F","loss":2.3283682,"score":0.3466765709902704},{"complexity":4.0,"expression":"-Cl_F - 0.97393924","loss":0.699126,"score":1.2030919743570359}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-karman_re50-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..ace5a74 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"4.2450795 - Cd_F","deployment_expression_hash":"45c2b8a2cea49223551b84ec196637b9dda3f7760d28afbc6a3c33c2c733f285","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"4.2450795 - Cd_F","fitted_expression_hash":"45c2b8a2cea49223551b84ec196637b9dda3f7760d28afbc6a3c33c2c733f285","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T09:56:27.107754+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5326837151615536,"max_error":1.6600372158968897,"r2":0.43910665731966037,"rmse":0.6409879253453624},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4864931112617771,"max_error":1.484462705305785,"r2":0.509530960113372,"rmse":0.621705674278736},"train":{"mae":0.5326837151615536,"max_error":1.6600372158968897,"r2":0.43910665731966037,"rmse":0.6409879253453624},"validation":{"mae":0.44861828354208444,"max_error":1.117764292149812,"r2":0.2763871297757494,"rmse":0.541562429485952}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4947009322745801,5.308837658124983],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"3.58959820000000","loss":0.73251975,"score":0.0},{"complexity":4.0,"expression":"4.2450795 - Cd_F","loss":0.4108655,"score":0.28911219632764146}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-karman_re50-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..23d19b7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s1-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(u_hat_C - v_hat_C)*(-0.03525998)","deployment_expression_hash":"8fa0dd106c15bb6f0519667b32e5c2e8d29a1443994377301947a5999be6bef2","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(u_hat_C - v_hat_C)*(-0.03525998)","fitted_expression_hash":"8fa0dd106c15bb6f0519667b32e5c2e8d29a1443994377301947a5999be6bef2","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T09:56:26.351321+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5350727642971097,"max_error":1.6167995529800656,"r2":0.6907469763245383,"rmse":0.6419512345520259},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5505187343700306,"max_error":1.6983451666185858,"r2":0.651808249982069,"rmse":0.6718606923994995},"train":{"mae":0.5350727642971097,"max_error":1.6167995529800656,"r2":0.6907469763245383,"rmse":0.6419512345520259},"validation":{"mae":0.5768797566853501,"max_error":1.5815477839698793,"r2":0.7155536722687605,"rmse":0.7012376074867244}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.173268176374138,-2.7133816210427284],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_B","loss":1.6338015,"score":0.0},{"complexity":2.0,"expression":"-3.42718580000000","loss":1.3325701,"score":0.20380002447619994},{"complexity":3.0,"expression":"Cd_F - Cl_T","loss":1.2707369,"score":0.04751251513501657},{"complexity":4.0,"expression":"Cl_B - 0.6122672","loss":1.2592077,"score":0.009114254763073109},{"complexity":5.0,"expression":"Cd_F - Cd_T + Cl_B","loss":0.9099448,"score":0.32485405430770486},{"complexity":6.0,"expression":"(u_hat_C - v_hat_C)*(-0.03525998)","loss":0.41210136,"score":0.7921145998211963}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-karman_re50-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..62b26b8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cl_F - 1.0641414","deployment_expression_hash":"d2a65ff3790cb3907934c31fa3ee8f4b1d3f1b7a3c5703d810f083008aa507a9","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 1.0641414","fitted_expression_hash":"d2a65ff3790cb3907934c31fa3ee8f4b1d3f1b7a3c5703d810f083008aa507a9","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T09:57:06.323793+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6904518763946521,"max_error":1.938880739891982,"r2":0.7852254407727535,"rmse":0.8410022027029342},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5461006173765695,"max_error":1.1670587457903534,"r2":0.8878566997573463,"rmse":0.6283788729509503},"train":{"mae":0.6904518763946521,"max_error":1.938880739891982,"r2":0.7852254407727535,"rmse":0.8410022027029342},"validation":{"mae":0.8856501741174367,"max_error":1.6264742341171146,"r2":0.6830503554415559,"rmse":0.993332209837076}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.5221675670053005,2.3928821293358564],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.996941270000000","loss":3.2931488,"score":0.0},{"complexity":4.0,"expression":"-Cl_F - 1.0641414","loss":0.70728475,"score":0.7690830625855118},{"complexity":7.0,"expression":"-Cl_F - 1*0.81994265 - 0.16563436","loss":0.69926447,"score":0.0038014391586658866}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-karman_re50-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..ddadf8c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-v_hat_B + v_hat_B - (Cd_F - Cl_T)","deployment_expression_hash":"18dab396f9b2e8e9447d449721c6abee65f4efaf9eb8fc58103e391ae51290b7","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-v_hat_B + v_hat_B - (Cd_F - Cl_T)","fitted_expression_hash":"18dab396f9b2e8e9447d449721c6abee65f4efaf9eb8fc58103e391ae51290b7","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T09:57:07.968632+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5996233581300673,"max_error":1.703632699791342,"r2":0.26958021650371866,"rmse":0.7314690748236615},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7118404753586219,"max_error":1.656642786692828,"r2":0.1251484814267848,"rmse":0.8303213536757458},"train":{"mae":0.5996233581300673,"max_error":1.703632699791342,"r2":0.26958021650371866,"rmse":0.7314690748236615},"validation":{"mae":0.6638345209104068,"max_error":1.4289310396416113,"r2":-0.5246841013635692,"rmse":0.7861136228399879}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.566681243479252,2.8894172282889485],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"3.58965020000000","loss":0.73251975,"score":0.0},{"complexity":6.0,"expression":"-Cd_F + Cl_T - 0.15480581","loss":0.5976719,"score":0.05086209045299802},{"complexity":7.0,"expression":"-v_hat_B + v_hat_B - (Cd_F - Cl_T)","loss":0.535047,"score":0.11068734766841769}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-karman_re50-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..ccbc1ef --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-raw_complete-s2-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-raw_complete-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_F + Cl_B - 1*0.9876573","deployment_expression_hash":"1ffc60734d70dd4c2b511504cc6113ab022a5420b5595ba53631121bf35f5afa","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_F + Cl_B - 1*0.9876573","fitted_expression_hash":"1ffc60734d70dd4c2b511504cc6113ab022a5420b5595ba53631121bf35f5afa","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T09:57:07.178623+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7645155493522319,"max_error":2.2401701030683845,"r2":0.32831930732182246,"rmse":0.9460770195705993},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7602784167117583,"max_error":1.8539407197748452,"r2":0.38036913861198673,"rmse":0.8962651603440794},"train":{"mae":0.7645155493522319,"max_error":2.2401701030683845,"r2":0.32831930732182246,"rmse":0.9460770195705993},"validation":{"mae":0.7690160760757967,"max_error":2.386317430915232,"r2":0.41384686920967395,"rmse":1.0066316431429736}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.312546856504786,0.5494526580079317],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.42718460000000","loss":1.3325702,"score":0.0},{"complexity":4.0,"expression":"Cl_B - 1*0.6120373","loss":1.2592075,"score":0.028313501885544157},{"complexity":6.0,"expression":"Cd_F + Cl_B - 1*0.9876573","loss":0.8950617,"score":0.17067258968092752}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-karman_re50-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..23aee43 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-symmetry-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-0.7096292*Cl_tot","deployment_expression_hash":"1f18dab6e59e890a5b9371d75d8b9d6a6575e375bb168cf4d0d88e426ad791f7","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.7096292*Cl_tot","fitted_expression_hash":"1f18dab6e59e890a5b9371d75d8b9d6a6575e375bb168cf4d0d88e426ad791f7","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:57:45.855996+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6306711155476785,"max_error":2.0480659163367,"r2":0.8055278933837895,"rmse":0.8002660156939427},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.723727670553521,"max_error":1.9640253273595125,"r2":0.7775228127295778,"rmse":0.8850700629795708},"train":{"mae":0.6306711155476785,"max_error":2.0480659163367,"r2":0.8055278933837895,"rmse":0.8002660156939427},"validation":{"mae":0.6708888933891096,"max_error":1.6380930786557497,"r2":0.7849291042328842,"rmse":0.8182578974052923}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.090369147002604,1.1728771332262082],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":3.2979498,"score":0.0},{"complexity":2.0,"expression":"-0.996727000000000","loss":3.293149,"score":0.0014567528100149184},{"complexity":3.0,"expression":"Cd_tot - Cl_tot","loss":1.454674,"score":0.8170624293287055},{"complexity":4.0,"expression":"-0.7096292*Cl_tot","loss":0.6404257,"score":0.8204039880333618},{"complexity":5.0,"expression":"0.36803198766096 - Cl_tot","loss":0.59198165,"score":0.07865747370336694},{"complexity":7.0,"expression":"0.14725198 + Cl_tot*(-0.9106349)","loss":0.54498553,"score":0.04135819696496}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-karman_re50-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..ea5b03f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-symmetry-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"3.58964090000000","deployment_expression_hash":"bfd0ef50c1e653abfe3a681e472cfd5f4db15ac68684f7408cea2c479fa847ab","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"3.58964090000000","fitted_expression_hash":"bfd0ef50c1e653abfe3a681e472cfd5f4db15ac68684f7408cea2c479fa847ab","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:57:47.701821+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6809710190879433,"max_error":1.9874151195129395,"r2":-2.8191671219701675e-11,"rmse":0.8558737485989972},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7156033613034058,"max_error":1.9754965747436524,"r2":-0.01512041648919027,"rmse":0.8944124034450779},"train":{"mae":0.6809710190879433,"max_error":1.9874151195129395,"r2":-2.8191671219701675e-11,"rmse":0.8558737485989972},"validation":{"mae":0.5411794717615371,"max_error":1.2444975818237305,"r2":-0.033619034378585155,"rmse":0.6472553304095511}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.5896409,3.5896409],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":9.530709,"score":0.0},{"complexity":2.0,"expression":"3.58964090000000","loss":0.73251975,"score":2.5657840875380575},{"complexity":4.0,"expression":"Cd_rear_s + 3.7976456","loss":0.49500462,"score":0.1959616035633057}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-karman_re50-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..81253fb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-karman_re50-symmetry-s0-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-karman_re50-symmetry-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cd_rear_s - 3.6351843","deployment_expression_hash":"c93e737f34ddf5c6349a54f5a94c92daca682c397daa5bdcbe8b1aee49ba68c4","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cd_rear_s - 3.6351843","fitted_expression_hash":"c93e737f34ddf5c6349a54f5a94c92daca682c397daa5bdcbe8b1aee49ba68c4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"946b41b5a15b1ab1948eccf52a1f8133ec6022cae07a5591a974a7facf66db33","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-karman_re50-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T09:57:46.775424+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8708439090619147,"max_error":2.6352282928844573,"r2":0.15208411978409986,"rmse":1.0629710719029888},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.8747539490556357,"max_error":2.6797796868329526,"r2":0.1520684811696743,"rmse":1.04845642211977},"train":{"mae":0.8708439090619147,"max_error":2.6352282928844573,"r2":0.15208411978409986,"rmse":1.0629710719029888},"validation":{"mae":1.1558900409119415,"max_error":2.635687287881191,"r2":-0.018275154376978797,"rmse":1.3267760009687817}},"scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1417251768132335,-2.699976946095157],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.42718580000000","loss":1.3325701,"score":0.0},{"complexity":4.0,"expression":"-Cd_rear_s - 3.6351843","loss":1.1299074,"score":0.08248690054513905},{"complexity":7.0,"expression":"0.43898523*Cl_tot - 3.6351478","loss":1.0423651,"score":0.026881138875174886}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-karman_re50-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..b69aec5 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:36:23.808383+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..ef531f3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:36:24.984197+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_a","loss":191.64392,"metrics":{"blind":{"mae":8.946770895536611,"max_error":22.72684144973755,"r2":-13.214181416226406,"rmse":10.600821175427468},"train":{"mae":10.379043003482057,"max_error":36.916726121795364,"r2":-25.31807816849691,"rmse":13.843551563619178},"validation":{"mae":13.343664954165714,"max_error":37.26983158290386,"r2":-41.36342576713366,"rmse":17.210617717983677}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-36.914467497263104,24.888122081756592],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_a"]},{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":3.2702562308705003,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - (Cl_F - 1*(-0.59404755))","loss":1.0782164,"metrics":{"blind":{"mae":0.850160636606725,"max_error":2.35873895406698,"r2":0.869266048684074,"rmse":1.0166530671683427},"train":{"mae":0.911267140577165,"max_error":2.3369390204360068,"r2":0.8519306746517525,"rmse":1.0383720394256022},"validation":{"mae":0.8205551018956302,"max_error":1.8085162481337145,"r2":0.8731427425060434,"rmse":0.9417997720423049}},"score":0.09437941981072263,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031663324495137,0.6086039969187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..d345128 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.7488202","deployment_expression_hash":"e2c6c6a743005012a2483e771e1e00797512f78727024be5c26163684524e96d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.7488202","fitted_expression_hash":"e2c6c6a743005012a2483e771e1e00797512f78727024be5c26163684524e96d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:36:24.388505+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7160473385261967,"max_error":1.7155727306623305,"r2":0.949156062673045,"rmse":0.8560271631971101},"train":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"validation":{"mae":0.6933020127867742,"max_error":2.438225590970476,"r2":0.9256753930684369,"rmse":0.8852977169089}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0652392309471148,2.103221318812823],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":20.969328,"metrics":{"blind":{"mae":4.191663545393385,"max_error":9.973199748899788,"r2":-0.7973199585785216,"rmse":5.089564903194417},"train":{"mae":3.7302562353216997,"max_error":8.877923464402556,"r2":-0.7381366570431249,"rmse":4.579227732129818},"validation":{"mae":3.466056225522875,"max_error":8.178853660821915,"r2":-0.7269867739059013,"rmse":4.267441137594878}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.739195198751986,5.0361244939267635],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"0.143827810000000","loss":12.064256,"metrics":{"blind":{"mae":3.4650387822698177,"max_error":7.235419645021973,"r2":-0.0035163114270235774,"rmse":3.803033722674547},"train":{"mae":3.091486338841713,"max_error":6.597023381899414,"r2":-1.5720758028692217e-11,"rmse":3.4733638727164386},"validation":{"mae":2.919128959490879,"max_error":5.649128542233886,"r2":-0.011766460288657354,"rmse":3.266353414651336}},"score":0.5528137674210594,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382781,0.14382781],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381931945046,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.7488202","loss":0.91714734,"metrics":{"blind":{"mae":0.7160473385261967,"max_error":1.7155727306623305,"r2":0.949156062673045,"rmse":0.8560271631971101},"train":{"mae":0.7707944689364431,"max_error":2.9521565079940353,"r2":0.9239781270387752,"rmse":0.9576781202556536},"validation":{"mae":0.6933020127867742,"max_error":2.438225590970476,"r2":0.9256753930684369,"rmse":0.8852977169089}},"score":0.6258072168923339,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0652392309471148,2.103221318812823],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..667a9a4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:37:01.896998+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":12.471686,"metrics":{"blind":{"mae":3.2428961154930223,"max_error":6.226958494167775,"r2":0.40691009585619586,"rmse":3.7159234327646655},"train":{"mae":3.0982147504648805,"max_error":6.838292457978241,"r2":0.3898880700202144,"rmse":3.5315273100880353},"validation":{"mae":3.005148292302739,"max_error":6.6842275691451505,"r2":0.3813697308736541,"rmse":3.4249355932022034}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.3322020899504423],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.17908929289150666,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..dddf5ea --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:37:03.748268+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":7.5975533,"metrics":{"blind":{"mae":2.6558976942906156,"max_error":4.736926860176027,"r2":-0.04357067873523324,"rmse":2.872364268391371},"train":{"mae":2.469170547650843,"max_error":5.412976400926709,"r2":-0.04335681064907715,"rmse":2.756365872185182},"validation":{"mae":2.407381284301384,"max_error":4.681656027212739,"r2":-0.03506926123670895,"rmse":2.690206561278342}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0887602111324668,1.1846119305118918],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":7.4590683,"metrics":{"blind":{"mae":2.603286109749732,"max_error":5.59873563700196,"r2":-0.043665725025229696,"rmse":2.8724950699541356},"train":{"mae":2.421452895586196,"max_error":5.025533917378795,"r2":-0.02433891666622312,"rmse":2.7311293713261584},"validation":{"mae":2.3256521447799496,"max_error":4.736126283897318,"r2":-0.004749402239728973,"rmse":2.650512154509886}},"score":0.018395747595291514,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6509840597665262,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 1*0.17549714","loss":1.2533977,"metrics":{"blind":{"mae":0.9624630429663499,"max_error":1.942548719155245,"r2":0.8446786723192736,"rmse":1.108138716262782},"train":{"mae":0.9537660591101255,"max_error":2.534066990695071,"r2":0.8278733879525801,"rmse":1.119552455328835},"validation":{"mae":0.879851283690775,"max_error":1.7960401223177245,"r2":0.8559258973389283,"rmse":1.003676795382573}},"score":0.044196143363340205,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7846159224495137,1.027154406918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..147e274 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 0.36529","deployment_expression_hash":"140defc5e6e4f0eb8a7d7021631ba852e3d8673c61fca4fd4796bfb0cfdcc300","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F - 0.36529","fitted_expression_hash":"140defc5e6e4f0eb8a7d7021631ba852e3d8673c61fca4fd4796bfb0cfdcc300","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:37:02.837586+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.385891279309094,"r2":0.4500958545600159,"rmse":2.815214270168483},"train":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"validation":{"mae":1.959210752500087,"max_error":4.560068361474164,"r2":0.4638546825498884,"rmse":2.377739608462646}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.697492089950442,3.3689612514442207],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":79.64449,"metrics":{"blind":{"mae":8.918612605868839,"max_error":16.039940646849573,"r2":-5.546913059479274,"rmse":9.713734864892977},"train":{"mae":8.168622492607367,"max_error":15.619017649441957,"r2":-5.601689890426466,"rmse":8.924375652088562},"validation":{"mae":7.8344310045194545,"max_error":13.831453628838062,"r2":-5.928242845213141,"rmse":8.547410945784991}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.413439754396677,12.009300757199526],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"0.143781530000000","loss":12.064255,"metrics":{"blind":{"mae":3.465034154269817,"max_error":7.235373365021973,"r2":-0.003514865806151679,"rmse":3.80303098343312},"train":{"mae":3.091486338841713,"max_error":6.596977101899414,"r2":-8.759748482134455e-11,"rmse":3.473363872841266},"validation":{"mae":2.9191348928242125,"max_error":5.649174822233887,"r2":-0.011769552376035719,"rmse":3.266358405843892}},"score":1.8873259080008291,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378153,0.14378153],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":9.1098385,"metrics":{"blind":{"mae":2.7927571163294713,"max_error":6.190081419888884,"r2":0.3002396330111866,"rmse":3.1757231073329266},"train":{"mae":2.6384921903613834,"max_error":5.672955624293536,"r2":0.24489027443629796,"rmse":3.0182507325257593},"validation":{"mae":2.427702316368269,"max_error":5.4019861604319885,"r2":0.2598294369589328,"rmse":2.793758991137804}},"score":0.28089196496706703,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4428394933929667,1.5384713769890368],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"-Cl_F - 0.36529","loss":6.1790094,"metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.385891279309094,"r2":0.4500958545600159,"rmse":2.815214270168483},"train":{"mae":2.1197524126066445,"max_error":5.1956429723520205,"r2":0.48782507704698375,"rmse":2.485761390509013},"validation":{"mae":1.959210752500087,"max_error":4.560068361474164,"r2":0.4638546825498884,"rmse":2.377739608462646}},"score":0.3881970159836026,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.697492089950442,3.3689612514442207],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.36529","loss":6.144563,"metrics":{"blind":{"mae":2.4444275594940335,"max_error":4.849125986815393,"r2":0.48837028774601865,"rmse":2.7154751778632837},"train":{"mae":2.197180150723919,"max_error":4.770331701250784,"r2":0.4906803215769452,"rmse":2.4788229642115733},"validation":{"mae":2.0433020978140237,"max_error":4.542349949492104,"r2":0.4706197178286933,"rmse":2.3626909305950345}},"score":0.0027951707988204035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5128801594385504,2.280201040311754],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":7.0,"expression":"-Cl_F + Cl_rear_s*0.282767155498103","loss":4.9887347,"metrics":{"blind":{"mae":2.203116660248301,"max_error":5.233496907093516,"r2":0.5644260502169456,"rmse":2.5055259637718397},"train":{"mae":1.9617524636365244,"max_error":4.854007445872771,"r2":0.5864863544001163,"rmse":2.2335475649407064},"validation":{"mae":1.787527494342338,"max_error":4.052039510647688,"r2":0.5929226834530358,"rmse":2.0718651489677287}},"score":0.20838531528622783,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5622035689040388,3.018398004135726],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..a5f5c29 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F","deployment_expression_hash":"51706c82567e2fab40e68cebf38592735362f9778a63f093b220d42a92849e6b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F + Cl_F","fitted_expression_hash":"51706c82567e2fab40e68cebf38592735362f9778a63f093b220d42a92849e6b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:37:43.214529+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5281394128538524,"max_error":6.5520814172923565,"r2":0.6052144804848902,"rmse":3.031706105458745},"train":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"validation":{"mae":2.5145889475720766,"max_error":6.6223766470793635,"r2":0.4931295601776019,"rmse":3.100168563587967}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.468502502888441,6.664404179900885],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F + Cl_F","loss":9.631797,"metrics":{"blind":{"mae":2.5281394128538524,"max_error":6.5520814172923565,"r2":0.6052144804848902,"rmse":3.031706105458745},"train":{"mae":2.6045724394925083,"max_error":7.029601292451844,"r2":0.5288148181115895,"rmse":3.1035133832968236},"validation":{"mae":2.5145889475720766,"max_error":6.6223766470793635,"r2":0.4931295601776019,"rmse":3.100168563587967}},"score":0.7517073553692639,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.468502502888441,6.664404179900885],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_F - Cl_rear_s + 1.1968722","loss":8.678935,"metrics":{"blind":{"mae":2.6892490512451417,"max_error":6.155007798106309,"r2":0.5956852150941833,"rmse":3.068077335411973},"train":{"mae":2.473942405765389,"max_error":6.379296006749284,"r2":0.5754284444280373,"rmse":2.9460034968485105},"validation":{"mae":2.4228819565861306,"max_error":5.707997869232569,"r2":0.5541162892769211,"rmse":2.907686829538924}},"score":0.03472366249033484,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0057793469187870095,1.8059909824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..1e94ccd --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_F*(-1.2758577) + Cl_rear_s","deployment_expression_hash":"63d32c3c524cb1e364f68113ed55ddd936675ce16136d4129b110fc490abab18","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F*(-1.2758577) + Cl_rear_s","fitted_expression_hash":"63d32c3c524cb1e364f68113ed55ddd936675ce16136d4129b110fc490abab18","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:37:44.467817+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.857014485189054,"max_error":2.2698428205255246,"r2":0.8721225301382429,"rmse":1.0054850064795287},"train":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"validation":{"mae":0.8029596981246041,"max_error":2.0283650756907607,"r2":0.8706170784457591,"rmse":0.9511289455034331}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5283323869184358,2.2327735083643114],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190564840000000","loss":7.2818346,"metrics":{"blind":{"mae":2.560605532779184,"max_error":4.544629366237793,"r2":-0.0030287738153189636,"rmse":2.816017032899438},"train":{"mae":2.394518314936273,"max_error":4.85748550192627,"r2":-1.9545460805403536e-09,"rmse":2.6984876627560244},"validation":{"mae":2.3222467386540027,"max_error":4.930033414523926,"r2":-0.009521599501956413,"rmse":2.6567991864362264}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19056484,-0.19056484],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_F*(-1.238342)","loss":3.3506489,"metrics":{"blind":{"mae":1.4893296581537059,"max_error":4.780798659522901,"r2":0.545419079295379,"rmse":1.8957636138169245},"train":{"mae":1.437354217477816,"max_error":4.852917384267581,"r2":0.5398619949270989,"rmse":1.8304778966418376},"validation":{"mae":1.4984236397023367,"max_error":4.418475551743264,"r2":0.5134741083464254,"rmse":1.8443948483427763}},"score":0.3881144036916243,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.126405800473411,4.624280163215939],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_F*(-1.2758577) + Cl_rear_s","loss":1.120188,"metrics":{"blind":{"mae":0.857014485189054,"max_error":2.2698428205255246,"r2":0.8721225301382429,"rmse":1.0054850064795287},"train":{"mae":0.854776155699636,"max_error":2.7963347805420637,"r2":0.8461668152669859,"rmse":1.0583893277149572},"validation":{"mae":0.8029596981246041,"max_error":2.0283650756907607,"r2":0.8706170784457591,"rmse":0.9511289455034331}},"score":0.5478287501041871,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.5283323869184358,2.2327735083643114],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..1f78130 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_only-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:37:43.887046+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143823330000000","loss":12.064255,"metrics":{"blind":{"mae":3.465038334269818,"max_error":7.235415165021973,"r2":-0.003516171474931218,"rmse":3.803033457485761},"train":{"mae":3.091486338841713,"max_error":6.597018901899414,"r2":-7.156275572128834e-12,"rmse":3.473363872701565},"validation":{"mae":2.919129533849853,"max_error":5.649133022233887,"r2":-0.011766759591370857,"rmse":3.2663538977807964}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382333,0.14382333],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..a6d9999 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F - Cl_tot","deployment_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_s*Cl_F - Cl_tot","fitted_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:42:25.173702+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2507785211212867,"max_error":4.001777603933579,"r2":0.8901939245008494,"rmse":1.5988940119791073},"train":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"validation":{"mae":1.9290069916072292,"max_error":4.776706961830401,"r2":0.7403310088912097,"rmse":2.218946704087503}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.232171973526933,11.187869097014694],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":26.876112,"metrics":{"blind":{"mae":4.9802059647059425,"max_error":9.474022333975881,"r2":-0.3383869989322399,"rmse":5.582096572166272},"train":{"mae":4.606637572187506,"max_error":9.147010634187609,"r2":-0.3147731660934172,"rmse":5.184217650919956},"validation":{"mae":4.400175814454717,"max_error":8.548744691303,"r2":-0.3046091881710049,"rmse":4.97367086645555}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.2744606942037784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.7131195,"metrics":{"blind":{"mae":1.2507785211212867,"max_error":4.001777603933579,"r2":0.8901939245008494,"rmse":1.5988940119791073},"train":{"mae":1.5885010423464567,"max_error":4.5155048168893925,"r2":0.818355048704915,"rmse":1.9269456978712451},"validation":{"mae":1.9290069916072292,"max_error":4.776706961830401,"r2":0.7403310088912097,"rmse":2.218946704087503}},"score":0.4267050051828752,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.232171973526933,11.187869097014694],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..631d6e2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:42:26.728906+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3227209","loss":1.0684577,"metrics":{"blind":{"mae":0.8845928930637843,"max_error":1.8622569873317403,"r2":0.8788041057066416,"rmse":0.9788644027068699},"train":{"mae":0.892192103079984,"max_error":2.714166815256423,"r2":0.8532708205488431,"rmse":1.0336623095038426},"validation":{"mae":0.7528927060089874,"max_error":2.1298423058250737,"r2":0.8836777623653503,"rmse":0.9018458182118712}},"score":0.09741008236744514,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8056941441285255,1.5907723365268107],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..111a42a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.7256862","deployment_expression_hash":"09a7dc2e7d33262323d24ad8374169783f6c89ea9f6456225d5bac6a5136fe1d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.7256862","fitted_expression_hash":"09a7dc2e7d33262323d24ad8374169783f6c89ea9f6456225d5bac6a5136fe1d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:42:26.035289+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7272594113406761,"max_error":1.6452022395889214,"r2":0.9474836249589981,"rmse":0.8699921400740901},"train":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"validation":{"mae":0.691179485238551,"max_error":2.4167119088150573,"r2":0.9267276401052396,"rmse":0.879008598230566}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0511478770339275,2.0753991779264034],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":9.464525,"metrics":{"blind":{"mae":2.871323101643088,"max_error":6.173607891763822,"r2":0.2597775952635182,"rmse":3.2662473579754896},"train":{"mae":2.657563481553691,"max_error":6.2327276398427784,"r2":0.21549047083446882,"rmse":3.076446693638971},"validation":{"mae":2.5147417782239083,"max_error":5.5459857085952535,"r2":0.21066761018846647,"rmse":2.8850476854011875}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":0.5740708802525868,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.7256862","loss":0.92111176,"metrics":{"blind":{"mae":0.7272594113406761,"max_error":1.6452022395889214,"r2":0.9474836249589981,"rmse":0.8699921400740901},"train":{"mae":0.7722555983393125,"max_error":2.9518265680842175,"r2":0.9236495175368439,"rmse":0.9597457014054844},"validation":{"mae":0.691179485238551,"max_error":2.4167119088150573,"r2":0.9267276401052396,"rmse":0.879008598230566}},"score":0.6214939771034674,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0511478770339275,2.0753991779264034],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..dbfb054 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*2.134053","deployment_expression_hash":"253dc16f1fa2751464c22f2b1a43b4bb78f7f134a0f6c65931867ca3ba0796bf","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*2.134053","fitted_expression_hash":"253dc16f1fa2751464c22f2b1a43b4bb78f7f134a0f6c65931867ca3ba0796bf","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:43:05.389426+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.386519629147577,"max_error":4.395785460702027,"r2":0.8697027353832361,"rmse":1.7417031619759435},"train":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"validation":{"mae":2.099846207439779,"max_error":4.670135654499427,"r2":0.6948271358959908,"rmse":2.4055244903329154}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5665221416566792,1.2998917650427328],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*2.134053","loss":4.0856447,"metrics":{"blind":{"mae":1.386519629147577,"max_error":4.395785460702027,"r2":0.8697027353832361,"rmse":1.7417031619759435},"train":{"mae":1.7127707013575593,"max_error":4.504063370458606,"r2":0.8001311886922295,"rmse":2.021297902351192},"validation":{"mae":2.099846207439779,"max_error":4.670135654499427,"r2":0.6948271358959908,"rmse":2.4055244903329154}},"score":0.2544839540903014,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5665221416566792,1.2998917650427328],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..bbff512 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:43:06.750172+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":12.82839,"metrics":{"blind":{"mae":3.066237190621905,"max_error":7.920327190309763,"r2":-0.8447311707786469,"rmse":3.818960131678844},"train":{"mae":2.8051718414240217,"max_error":8.15645425580442,"r2":-0.7616972959141541,"rmse":3.581674214259532},"validation":{"mae":2.5296275901297727,"max_error":6.603535659611225,"r2":-0.5204823899841422,"rmse":3.2605556663091}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.2752949260175228,3.448729170486331],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-0.190555840000000","loss":7.281835,"metrics":{"blind":{"mae":2.560606432779184,"max_error":4.544638366237793,"r2":-0.003029126137490401,"rmse":2.8160175274740573},"train":{"mae":2.3945180098515273,"max_error":4.85747650192627,"r2":-2.2605695093602662e-09,"rmse":2.698487663168925},"validation":{"mae":2.3222460463463106,"max_error":4.930024414523926,"r2":-0.009520935271226216,"rmse":2.6567983123945242}},"score":0.5662777927275988,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19055584,-0.19055584],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3173803","loss":1.068355,"metrics":{"blind":{"mae":0.8853839861797794,"max_error":1.8460116063069867,"r2":0.8786933766838456,"rmse":0.9793114638623729},"train":{"mae":0.892098329365764,"max_error":2.714090646972409,"r2":0.8532849258471034,"rmse":1.0336126245480297},"validation":{"mae":0.7538968338571171,"max_error":2.124875764331202,"r2":0.883723530183266,"rmse":0.9016683819070377}},"score":0.09744212385929855,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8024410843589753,1.5843494556753357],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..98d0263 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:43:05.955975+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":12.77347,"metrics":{"blind":{"mae":3.4994011299560723,"max_error":7.357363823801279,"r2":-0.083406320608441,"rmse":3.9515150550024125},"train":{"mae":3.085396948542978,"max_error":7.221683262847364,"r2":-0.05878635781204378,"rmse":3.573999202135012},"validation":{"mae":2.8812344467425226,"max_error":6.01305794948712,"r2":-0.06482280799802931,"rmse":3.3509018413431946}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0987235143838916,2.9128919122740626],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"0.143808250000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650368262698175,"max_error":7.235400085021973,"r2":-0.003515700406657718,"rmse":3.803032564880008},"train":{"mae":3.091486338841713,"max_error":6.597003821899414,"r2":-2.7771118737973666e-12,"rmse":3.47336387269396},"validation":{"mae":2.9191314671831865,"max_error":5.6491481022338865,"r2":-0.011767767093656012,"rmse":3.2663555240736972}},"score":0.05712341544089163,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14380825,0.14380825],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..4d1c5a0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*2.1342423","deployment_expression_hash":"07cff7c161bb52124f1e35ba8c69c698fa9181c452d0c5b49ec54b305fb06a77","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*2.1342423","fitted_expression_hash":"07cff7c161bb52124f1e35ba8c69c698fa9181c452d0c5b49ec54b305fb06a77","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:45.727688+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.3864668290324642,"max_error":4.395499430741707,"r2":0.8697120440701003,"rmse":1.741640945554997},"train":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"validation":{"mae":2.09991304360981,"max_error":4.669953336131166,"r2":0.694812254461288,"rmse":2.4055831410575395}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5667498035945107,1.300007071228249],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*2.1342423","loss":4.0856447,"metrics":{"blind":{"mae":1.3864668290324642,"max_error":4.395499430741707,"r2":0.8697120440701003,"rmse":1.741640945554997},"train":{"mae":1.7127666895452982,"max_error":4.503891117441089,"r2":0.8001311824423234,"rmse":2.0212979339542274},"validation":{"mae":2.09991304360981,"max_error":4.669953336131166,"r2":0.694812254461288,"rmse":2.4055831410575395}},"score":0.2544839540903014,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5667498035945107,1.300007071228249],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..e1d7d7e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:47.301633+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":8.101086,"metrics":{"blind":{"mae":2.464478864030616,"max_error":5.109544320963323,"r2":-0.05550680533513175,"rmse":2.8887442918873947},"train":{"mae":2.396869670327652,"max_error":5.629323720932007,"r2":-0.11250605318905915,"rmse":2.8462407208405156},"validation":{"mae":2.406934879278803,"max_error":5.637858564266935,"r2":-0.19806430118381768,"rmse":2.8942829465407396}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7558916006237268,1.3834001147188246],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"-0.190674700000000","loss":7.281835,"metrics":{"blind":{"mae":2.5605945467791846,"max_error":4.544519506237793,"r2":-0.0030244747876635447,"rmse":2.8160109981034323},"train":{"mae":2.3945220390040696,"max_error":4.857595361926269,"r2":-1.22397647572825e-11,"rmse":2.69848766013538},"validation":{"mae":2.3222551894232337,"max_error":4.9301432745239255,"r2":-0.009529709412623433,"rmse":2.6568098580062056}},"score":0.10661523587908218,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.1906747,-0.1906747],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.5940415","loss":1.0782163,"metrics":{"blind":{"mae":0.850161241606725,"max_error":2.3587329040669798,"r2":0.8692660135694263,"rmse":1.0166532037029286},"train":{"mae":0.911267140577165,"max_error":2.3369329704360067,"r2":0.8519306746531529,"rmse":1.0383720394206917},"validation":{"mae":0.8205555672802456,"max_error":1.8085101981337144,"r2":0.8731428557980092,"rmse":0.941799351497302}},"score":0.09437945072597759,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031602824495136,0.6086100469187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..6ad405c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 0.65825987","deployment_expression_hash":"08af4baaec8d759cffa0be254df317cb34921d9809d780a6635c4a445f55e91d","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cl_F - 0.65825987","fitted_expression_hash":"08af4baaec8d759cffa0be254df317cb34921d9809d780a6635c4a445f55e91d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:43:46.591979+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4283804456968627,"max_error":5.338348132539357,"r2":0.4326714995178855,"rmse":2.859468121172649},"train":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"validation":{"mae":1.9995138309011504,"max_error":4.853038231474164,"r2":0.4364754820232333,"rmse":2.437695422255785}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.9904619599504425,3.0759913814442204],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143823330000000","loss":12.064255,"metrics":{"blind":{"mae":3.465038334269818,"max_error":7.235415165021973,"r2":-0.003516171474931218,"rmse":3.803033457485761},"train":{"mae":3.091486338841713,"max_error":6.597018901899414,"r2":-7.156275572128834e-12,"rmse":3.473363872701565},"validation":{"mae":2.919129533849853,"max_error":5.649133022233887,"r2":-0.011766759591370857,"rmse":3.2663538977807964}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382333,0.14382333],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_F - 0.65825987","loss":6.330698,"metrics":{"blind":{"mae":2.4283804456968627,"max_error":5.338348132539357,"r2":0.4326714995178855,"rmse":2.859468121172649},"train":{"mae":2.110861760335809,"max_error":5.141733483392562,"r2":0.47525171779645825,"rmse":2.516087820957035},"validation":{"mae":1.9995138309011504,"max_error":4.853038231474164,"r2":0.4364754820232333,"rmse":2.437695422255785}},"score":0.3224182248353804,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.9904619599504425,3.0759913814442204],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"-Cd_rear_s + Cd_rear_s - Cl_F","loss":6.230333,"metrics":{"blind":{"mae":2.4184679991956726,"max_error":5.751181279309094,"r2":0.4551374783487877,"rmse":2.8022793496604264},"train":{"mae":2.1528677745667726,"max_error":5.56093297235202,"r2":0.483570939447598,"rmse":2.496063440324064},"validation":{"mae":1.955529954665018,"max_error":4.690463332692161,"r2":0.4751896389217174,"rmse":2.3524707592077654}},"score":0.015980716225110724,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3322020899504423,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..1d1858d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","deployment_expression_hash":"2dc10f9933aa1c0de5341282f1fd07632318632cd92b1286fc06461aa0001a33","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","fitted_expression_hash":"2dc10f9933aa1c0de5341282f1fd07632318632cd92b1286fc06461aa0001a33","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:40:23.726742+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.9878341766104959,"max_error":7.255011921150796,"r2":0.7007762883494801,"rmse":2.6393956336404947},"train":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"validation":{"mae":2.330805658838245,"max_error":6.170408169972479,"r2":0.6018779490119056,"rmse":2.7475458108314688}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1000676742312168,3.0675980200048434],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":26.876112,"metrics":{"blind":{"mae":4.9802059647059425,"max_error":9.474022333975881,"r2":-0.3383869989322399,"rmse":5.582096572166272},"train":{"mae":4.606637572187506,"max_error":9.147010634187609,"r2":-0.3147731660934172,"rmse":5.184217650919956},"validation":{"mae":4.400175814454717,"max_error":8.548744691303,"r2":-0.3046091881710049,"rmse":4.97367086645555}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5315997045254335,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.2744606942037784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_rear_s*(Cl_F - Cl_rear_s)","loss":6.1158457,"metrics":{"blind":{"mae":1.9878341766104959,"max_error":7.255011921150796,"r2":0.7007762883494801,"rmse":2.6393956336404947},"train":{"mae":2.0053258342064604,"max_error":7.003711742062352,"r2":0.7008142713728753,"rmse":2.4730235227683433},"validation":{"mae":2.330805658838245,"max_error":6.170408169972479,"r2":0.6018779490119056,"rmse":2.7475458108314688}},"score":0.1771996552098137,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1000676742312168,3.0675980200048434],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_F*2.16617 - Cl_rear_s","loss":5.1981616,"metrics":{"blind":{"mae":1.6743529543186835,"max_error":4.164195125696715,"r2":0.8300528673377916,"rmse":1.989131119271582},"train":{"mae":1.9423863623227544,"max_error":4.808203913070174,"r2":0.7457071304109751,"rmse":2.2799477895894977},"validation":{"mae":2.0100661056491864,"max_error":4.809432679267629,"r2":0.6866959625501288,"rmse":2.437360797733557}},"score":0.16257803422439096,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.557423328815494,4.495032893687021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cd_rear_s*(Cl_F - Cl_rear_s) + Cl_rear_s","loss":4.3726034,"metrics":{"blind":{"mae":1.504226609805059,"max_error":5.603823625240906,"r2":0.8281270358622314,"rmse":2.0003697318547125},"train":{"mae":1.7264422587415433,"max_error":4.432853025711526,"r2":0.7860932367045816,"rmse":2.0910772092891885},"validation":{"mae":1.9789722482506158,"max_error":5.256828597768205,"r2":0.7225903623501921,"rmse":2.293493948041881}},"score":0.17294644918663044,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.623245500698237,5.790681327505772],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..0b4d321 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:40:25.339152+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190741550000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605878617791844,"max_error":4.544452656237793,"r2":-0.0030218603160885316,"rmse":2.8160073280107816},"train":{"mae":2.394524305105765,"max_error":4.85766221192627,"r2":-4.5260795111801144e-10,"rmse":2.698487660729544},"validation":{"mae":2.322260331730926,"max_error":4.930210124523926,"r2":-0.009534645996800206,"rmse":2.656816353877179}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19074155,-0.19074155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269363820670502,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.5940359","loss":1.0782163,"metrics":{"blind":{"mae":0.8501618016067249,"max_error":2.3587273040669796,"r2":0.8692659810583601,"rmse":1.0166533301141187},"train":{"mae":0.911267140577165,"max_error":2.3369273704360065,"r2":0.85193067464549,"rmse":1.0383720394475608},"validation":{"mae":0.8205559980494763,"max_error":1.8085045981337142,"r2":0.8731429606539692,"rmse":0.9417989622669747}},"score":0.09437945072597759,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2031546824495136,0.6086156469187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..facde65 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:40:24.485744+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143823130000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650383142698176,"max_error":7.235414965021973,"r2":-0.0035161652271349375,"rmse":3.8030334456470984},"train":{"mae":3.091486338841713,"max_error":6.597018701899414,"r2":-6.851408329566766e-12,"rmse":3.4733638727010354},"validation":{"mae":2.919129559490879,"max_error":5.649133222233886,"r2":-0.011766772953188065,"rmse":3.2663539193492177}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382313,0.14382313],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"-Cl_F + Cl_rear_s - 0.115698084","loss":2.9557192,"metrics":{"blind":{"mae":1.7263071365276885,"max_error":3.8047034807992492,"r2":0.751535860354166,"rmse":1.8923428203529682},"train":{"mae":1.5402657343754362,"max_error":3.1006026428682123,"r2":0.7550019491767872,"rmse":1.719220564586204},"validation":{"mae":1.402198580778,"max_error":2.5399597845413115,"r2":0.7754565244303062,"rmse":1.5387683817263578}},"score":0.00522227755513013,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7248168664495137,1.0869534629187871],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.9684213766983452,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..6c88f4e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:41:05.548271+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..fa499af --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:41:07.106658+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190640510000000","loss":7.281835,"metrics":{"blind":{"mae":2.560597965779184,"max_error":4.544553696237793,"r2":-0.0030258123791890856,"rmse":2.816012875760103},"train":{"mae":2.394520880021019,"max_error":4.857561171926269,"r2":-2.614242156084856e-10,"rmse":2.6984876604715904},"validation":{"mae":2.3222525594232333,"max_error":4.9301090845239255,"r2":-0.009527185122657045,"rmse":2.6568065363790176}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19064051,-0.19064051],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.3173821","loss":1.068355,"metrics":{"blind":{"mae":0.8853837195491373,"max_error":1.84601708166291,"r2":0.8786934187824809,"rmse":0.9793112939306801},"train":{"mae":0.8920983145845278,"max_error":2.714090672644227,"r2":0.8532849258455403,"rmse":1.0336126245535358},"validation":{"mae":0.7538964954250822,"max_error":2.1248774382582303,"r2":0.8837235196971325,"rmse":0.9016684225645107}},"score":0.09744212385929855,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8024421807727831,1.5843516204481203],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..3e46a69 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_rear_s)*1.761219","deployment_expression_hash":"2b48fa378257f3ccdc091cd07ce2a7abe378cf4a74cdbd8f681dbdb3a35e3016","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"(-Cl_F + Cl_rear_s)*1.761219","fitted_expression_hash":"2b48fa378257f3ccdc091cd07ce2a7abe378cf4a74cdbd8f681dbdb3a35e3016","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:41:06.243367+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7112898397896394,"max_error":1.75328819900853,"r2":0.9499322441125659,"rmse":0.8494679963367596},"train":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"validation":{"mae":0.6946843343032865,"max_error":2.4497559723272935,"r2":0.9249612834128556,"rmse":0.8895405133677108}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.07279157290695,2.118132754812759],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":20.969328,"metrics":{"blind":{"mae":4.191663545393385,"max_error":9.973199748899788,"r2":-0.7973199585785216,"rmse":5.089564903194417},"train":{"mae":3.7302562353216997,"max_error":8.877923464402556,"r2":-0.7381366570431249,"rmse":4.579227732129818},"validation":{"mae":3.466056225522875,"max_error":8.178853660821915,"r2":-0.7269867739059013,"rmse":4.267441137594878}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.739195198751986,5.0361244939267635],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"0.144155530000000","loss":12.064255,"metrics":{"blind":{"mae":3.465071554269817,"max_error":7.235747365021973,"r2":-0.0035265567263156328,"rmse":3.803053135970981},"train":{"mae":3.0914863388417126,"max_error":6.597351101899414,"r2":-9.666281330922288e-09,"rmse":3.473363889476393},"validation":{"mae":2.9190869441062635,"max_error":5.648800822233887,"r2":-0.011744576084885328,"rmse":3.2663180893400816}},"score":0.5528138503105506,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14415553,0.14415553],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F - Cl_F + Cl_rear_s","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.761219","loss":0.9166092,"metrics":{"blind":{"mae":0.7112898397896394,"max_error":1.75328819900853,"r2":0.9499322441125659,"rmse":0.8494679963367596},"train":{"mae":0.7708467088268184,"max_error":2.9523333411812853,"r2":0.9240227382855046,"rmse":0.9573970861084576},"validation":{"mae":0.6946843343032865,"max_error":2.4497559723272935,"r2":0.9249612834128556,"rmse":0.8895405133677108}},"score":0.62639414324129,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.07279157290695,2.118132754812759],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..54bfc3d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_F + Cl_F - Cl_rear_s","deployment_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cl_F + Cl_F - Cl_rear_s","fitted_expression_hash":"1cc7d052cc0b5173bc590600967624343a454463b09a515c68c953d070931f0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:41:44.931630+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cd_rear_a**2","loss":20.425358,"metrics":{"blind":{"mae":4.3682377253475995,"max_error":8.003182794611417,"r2":-0.0027298701148659177,"rmse":4.831683379013161},"train":{"mae":3.9975417509577063,"max_error":8.367744123190592,"r2":0.0007963527660341807,"rmse":4.519441984862817},"validation":{"mae":3.829696441495133,"max_error":8.640100389411396,"r2":-0.006889634563786107,"rmse":4.369459929339718}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.002296888026998012,1.4033054259111113],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":3.0,"expression":"Cl_F - Cl_rear_s","loss":8.717063,"metrics":{"blind":{"mae":2.6731962888787395,"max_error":6.109325527213514,"r2":0.5967398101438517,"rmse":3.0640734108353294},"train":{"mae":2.5037562090053713,"max_error":5.714875306526665,"r2":0.5735632603128857,"rmse":2.952467445307398},"validation":{"mae":2.441059390421194,"max_error":6.046982986154035,"r2":0.5401787321138756,"rmse":2.9527817856908025}},"score":0.8514947988718344,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.202651546918787,0.6091187824495137],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_F + Cl_F - Cl_rear_s","loss":5.2696476,"metrics":{"blind":{"mae":1.7507548859063036,"max_error":4.173646760173142,"r2":0.8144970904736049,"rmse":2.0781737455372644},"train":{"mae":1.9594601366085753,"max_error":4.888490844692569,"r2":0.7422100753654481,"rmse":2.2955712676139184},"validation":{"mae":2.010805040541387,"max_error":4.950400014640763,"r2":0.6882747120400154,"rmse":2.431212070881803}},"score":0.25165943900659005,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.936902798363008,3.941320872399956],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_F + Cl_F - Cl_rear_s - Cl_rear_s","loss":4.15036,"metrics":{"blind":{"mae":1.458321751790163,"max_error":4.598337886855006,"r2":0.8600721336236876,"rmse":1.8049226588130487},"train":{"mae":1.7213386663575352,"max_error":4.626044531352818,"r2":0.7969653396269547,"rmse":2.0372433187672905},"validation":{"mae":2.0525161012539264,"max_error":4.799244604422711,"r2":0.701954611732467,"rmse":2.3772673684953998}},"score":0.11938420688948492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.405303093837574,1.2182375648990273],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..81b08e3 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-Cl_F + Cl_rear_s","deployment_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F + Cl_rear_s","fitted_expression_hash":"1778cb4dd8426afecbad8744858c3cd59292c55c04cdf39e2ad25ab939226cec","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:41:46.409317+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":9.154741,"metrics":{"blind":{"mae":2.803621444680016,"max_error":6.160513136186637,"r2":-0.34409202415370643,"rmse":3.259815973005322},"train":{"mae":2.53182666864604,"max_error":6.420141713228077,"r2":-0.25720254553019894,"rmse":3.0256804718266026},"validation":{"mae":2.5128238714135547,"max_error":5.706686818040907,"r2":-0.23500276794665464,"rmse":2.9385621971416147}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0987235143838916,2.9128919122740626],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"-0.190663890000000","loss":7.281835,"metrics":{"blind":{"mae":2.5605956277791844,"max_error":4.544530316237793,"r2":-0.0030248976677866857,"rmse":2.8160115917255135},"train":{"mae":2.3945216725633918,"max_error":4.857584551926269,"r2":-5.631761723634554e-11,"rmse":2.6984876601948518},"validation":{"mae":2.3222543578847716,"max_error":4.9301324645239255,"r2":-0.009528911260813233,"rmse":2.656808807745873}},"score":0.22888899628841797,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19066389,-0.19066389],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":1.4311044,"metrics":{"blind":{"mae":1.0367433372055301,"max_error":2.118045859155245,"r2":0.8211826087443591,"rmse":1.1890043919390938},"train":{"mae":1.0005956655373758,"max_error":2.709564130695071,"r2":0.8034692820552423,"rmse":1.1962877532628584},"validation":{"mae":0.9293504770241083,"max_error":1.9715372623177245,"r2":0.8337965133006328,"rmse":1.0780055259095744}},"score":1.6269364369982608,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_rear_s)*1.2746769","loss":1.0749221,"metrics":{"blind":{"mae":0.8917095611656596,"max_error":1.7161136540071604,"r2":0.8767878206923864,"rmse":0.9869732930341507},"train":{"mae":0.892449001053716,"max_error":2.713481605909691,"r2":0.8523830824883538,"rmse":1.0367845160626001},"validation":{"mae":0.7619258330612954,"max_error":2.085163333512679,"r2":0.8830349389057175,"rmse":0.9043342887701387}},"score":0.09539942001679175,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7764296413445204,1.5329921456066442],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..7405396 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"0947971d2deb69b67348d97aae1ce6a2320f2d2f5c152705e7e017768b422e99","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:41:45.498165+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":16.349226,"metrics":{"blind":{"mae":3.739293554914184,"max_error":10.276724819093943,"r2":-0.40104513887056603,"rmse":4.493595978972901},"train":{"mae":3.293040373725659,"max_error":9.735904386267066,"r2":-0.35517881233786364,"rmse":4.0434174803282605},"validation":{"mae":2.8207295660216074,"max_error":7.7155923917889595,"r2":-0.19514555292858704,"rmse":3.5500415294033356}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.2752949260175228,3.448729170486331],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"0.143822970000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650382982698176,"max_error":7.235414805021973,"r2":-0.003516160228901777,"rmse":3.803033436176176},"train":{"mae":3.0914863388417126,"max_error":6.5970185418994145,"r2":-6.612488334667432e-12,"rmse":3.4733638727006206},"validation":{"mae":2.919129580003699,"max_error":5.649133382233886,"r2":-0.01176678364264716,"rmse":3.266353936603964}},"score":0.3039336084630583,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14382297,0.14382297],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_rear_s","loss":3.0023906,"metrics":{"blind":{"mae":1.7378769449276887,"max_error":3.920401564799249,"r2":0.7467975725709302,"rmse":1.9103013864961396},"train":{"mae":1.5448515553122226,"max_error":3.2163007268682122,"r2":0.7511333487526752,"rmse":1.732740932126008},"validation":{"mae":1.3992787267490758,"max_error":2.6556578685413115,"r2":0.7745324209071407,"rmse":1.5419315136082006}},"score":1.3908381103050131,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6091187824495137,1.202651546918787],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_s - (Cl_F + Cl_F)","loss":1.7148405,"metrics":{"blind":{"mae":0.978274441301096,"max_error":2.753370095626451,"r2":0.8898878284685252,"rmse":1.2597536408060677},"train":{"mae":1.0809501346135468,"max_error":3.2522147961426526,"r2":0.8578577515580312,"rmse":1.3095192086343115},"validation":{"mae":1.0830210981939439,"max_error":2.44301188190002,"r2":0.852389609240439,"rmse":1.2476176171146902}},"score":0.28004438231384526,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.941320872399956,4.936902798363008],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]},{"complexity":7.0,"expression":"-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s","loss":1.1222332,"metrics":{"blind":{"mae":0.6979470132005645,"max_error":2.479627622757107,"r2":0.9485205438022372,"rmse":0.8613604634981914},"train":{"mae":0.8454848639843383,"max_error":3.1988168857060373,"r2":0.9069786844782092,"rmse":1.0593550013993294},"validation":{"mae":0.8033325217536633,"max_error":2.6718126222258434,"r2":0.8907674954801773,"rmse":1.0732452607177319}},"score":0.21199972236802253,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2182375648990273,2.405303093837574],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..926f39a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.210873400000000","deployment_expression_hash":"d2aba5e475c607189c3196bd78af6e7c6f36589b9cf076bed5b5320634cbd2cb","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.210873400000000","fitted_expression_hash":"d2aba5e475c607189c3196bd78af6e7c6f36589b9cf076bed5b5320634cbd2cb","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:38:23.161904+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341055377333002,"max_error":8.2108734,"r2":-0.000479211570497462,"rmse":4.826257900684281},"train":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"validation":{"mae":3.8223303893903195,"max_error":7.758483206060791,"r2":-0.0005072132470955726,"rmse":4.355589457740559}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.2108734,0.2108734],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cd","loss":88.36215,"metrics":{"blind":{"mae":8.155772847495973,"max_error":16.236602880060673,"r2":-2.850661911270331,"rmse":9.468347433098586},"train":{"mae":8.23939423023139,"max_error":16.67884999513626,"r2":-3.3226561478431798,"rmse":9.40011476020677},"validation":{"mae":8.36223486237801,"max_error":16.384586058557034,"r2":-3.7006741484409345,"rmse":9.440976125155151}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[8.025186136364937,8.977879770100117],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]},{"complexity":2.0,"expression":"0.210873400000000","loss":20.441631,"metrics":{"blind":{"mae":4.341055377333002,"max_error":8.2108734,"r2":-0.000479211570497462,"rmse":4.826257900684281},"train":{"mae":4.003859225516143,"max_error":8.053208147314454,"r2":-8.407494700435336e-10,"rmse":4.521242597338528},"validation":{"mae":3.8223303893903195,"max_error":7.758483206060791,"r2":-0.0005072132470955726,"rmse":4.355589457740559}},"score":1.4638701538603016,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.2108734,0.2108734],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595207","loss":20.38907,"metrics":{"blind":{"mae":4.337084360977709,"max_error":7.955951392394025,"r2":5.070442707777456e-05,"rmse":4.824979588259406},"train":{"mae":4.021479580244513,"max_error":7.944618908658111,"r2":0.0025712611291425214,"rmse":4.5154262064971835},"validation":{"mae":3.81421578726415,"max_error":7.42544724964383,"r2":0.0078577428728549,"rmse":4.337343317949237}},"score":0.0012872918599486618,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4613707783860853,0.4480675872115558],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"target_Cl*0.06125333 + 0.25349393","loss":20.350576,"metrics":{"blind":{"mae":4.336442764877329,"max_error":8.225374433487529,"r2":0.002837113121100465,"rmse":4.818252375162919},"train":{"mae":4.0047746911255,"max_error":7.835732450443947,"r2":0.004454578752060678,"rmse":4.511161240260129},"validation":{"mae":3.8216947665840983,"max_error":7.54729407402532,"r2":0.005645752677852389,"rmse":4.342175699197213}},"score":0.000629918932133942,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.041033291151557794,0.5395287365630392],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..2a0ee45 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"target_Cd*0.11249822 - 1.1412257","deployment_expression_hash":"93ff95b5041d17b9bc51928efb139f4be3289853785435ed81c33f50908ef787","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cd*0.11249822 - 1.1412257","fitted_expression_hash":"93ff95b5041d17b9bc51928efb139f4be3289853785435ed81c33f50908ef787","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:38:24.409926+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.563106192234203,"max_error":4.547663751727756,"r2":-0.003139516345064708,"rmse":2.8161724841939937},"train":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"validation":{"mae":2.319203859668912,"max_error":4.967831976767608,"r2":-0.008442495468560018,"rmse":2.6553788457164123}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2384065444902672,-0.1312302064897275],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190636110000000","loss":7.281835,"metrics":{"blind":{"mae":2.560598405779184,"max_error":4.544558096237793,"r2":-0.0030259845387972106,"rmse":2.8160131174306793},"train":{"mae":2.394520730868476,"max_error":4.857556771926269,"r2":-3.168099116379608e-10,"rmse":2.6984876605463195},"validation":{"mae":2.322252220961695,"max_error":4.930104684523926,"r2":-0.009526860289501782,"rmse":2.656806108941831}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19063611,-0.19063611],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cd*0.11249822 - 1.1412257","loss":7.281117,"metrics":{"blind":{"mae":2.563106192234203,"max_error":4.547663751727756,"r2":-0.003139516345064708,"rmse":2.8161724841939937},"train":{"mae":2.394780821488774,"max_error":4.871264835896135,"r2":9.859209540674652e-05,"rmse":2.6983546320634857},"validation":{"mae":2.319203859668912,"max_error":4.967831976767608,"r2":-0.008442495468560018,"rmse":2.6553788457164123}},"score":1.9721276306668917e-05,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2384065444902672,-0.1312302064897275],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..13a22e0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s0-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143781450000000","deployment_expression_hash":"fc616f25c85ffeca12dfd83c28c8cffba58236d782126b5e6d459bc401f14100","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143781450000000","fitted_expression_hash":"fc616f25c85ffeca12dfd83c28c8cffba58236d782126b5e6d459bc401f14100","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:38:23.834175+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650341462698173,"max_error":7.235373285021972,"r2":-0.0035148633074963964,"rmse":3.80303097869853},"train":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"validation":{"mae":2.9191349030806224,"max_error":5.649174902233887,"r2":-0.011769557721395651,"rmse":3.266358414472271}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378145,0.14378145],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143781450000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650341462698173,"max_error":7.235373285021972,"r2":-0.0035148633074963964,"rmse":3.80303097869853},"train":{"mae":3.091486338841713,"max_error":6.596977021899414,"r2":-8.802913953331881e-11,"rmse":3.4733638728420155},"validation":{"mae":2.9191349030806224,"max_error":5.649174902233887,"r2":-0.011769557721395651,"rmse":3.266358414472271}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14378145,0.14378145],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":6.0,"expression":"(target_Cd + target_Cl)*0.019962905","loss":12.064181,"metrics":{"blind":{"mae":3.467987732962052,"max_error":7.207015878762938,"r2":-0.002527038726331199,"rmse":3.8011587331674255},"train":{"mae":3.0925223627243033,"max_error":6.5629320779512925,"r2":6.355047854067486e-06,"rmse":3.4733528359747896},"validation":{"mae":2.9141320777715545,"max_error":5.656525901716321,"r2":-0.008005803121609034,"rmse":3.2602773726727285}},"score":1.5334603535902882e-06,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06421746854784667,0.2724453812748636],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd","target_Cl"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..d6b32bc --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.210852710000000","deployment_expression_hash":"c28a9d70f3f42500bc6a6403c8288f6ed8eadc698dcfc02fb4c480b2f182a348","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.210852710000000","fitted_expression_hash":"c28a9d70f3f42500bc6a6403c8288f6ed8eadc698dcfc02fb4c480b2f182a348","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:39:01.341391+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341056411833002,"max_error":8.21085271,"r2":-0.00047939932491991577,"rmse":4.826258353542877},"train":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"validation":{"mae":3.822329858877499,"max_error":7.758462516060791,"r2":-0.0005069992523349942,"rmse":4.355588991940134}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21085271,0.21085271],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":29.007162,"metrics":{"blind":{"mae":4.703315188037232,"max_error":10.42662987858057,"r2":-0.3830471215064184,"rmse":5.6744657572911805},"train":{"mae":4.492369573981397,"max_error":11.288995686918497,"r2":-0.4190237518379516,"rmse":5.385830022702619},"validation":{"mae":4.432045555075045,"max_error":10.415710713714361,"r2":-0.42963386385687596,"rmse":5.206540360380409}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.210852710000000","loss":20.441631,"metrics":{"blind":{"mae":4.341056411833002,"max_error":8.21085271,"r2":-0.00047939932491991577,"rmse":4.826258353542877},"train":{"mae":4.003859576194109,"max_error":8.053187457314452,"r2":-1.1270697708454236e-09,"rmse":4.52124259798579},"validation":{"mae":3.822329858877499,"max_error":7.758462516060791,"r2":-0.0005069992523349942,"rmse":4.355588991940134}},"score":0.3499692083401138,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21085271,0.21085271],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595178","loss":20.38907,"metrics":{"blind":{"mae":4.337084355615472,"max_error":7.955951525523995,"r2":5.070432382503487e-05,"rmse":4.824979588508516},"train":{"mae":4.021479548357001,"max_error":7.944619076038726,"r2":0.0025712611288198906,"rmse":4.515426206497914},"validation":{"mae":3.814215795447418,"max_error":7.4254475687731984,"r2":0.007857733034880576,"rmse":4.337343339453549}},"score":0.0012872918599486618,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.46136938396566546,0.4480662329979334],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":7.0,"expression":"(-target_Cl - 2.332723)*(-0.1021511)","loss":20.33241,"metrics":{"blind":{"mae":4.337198983971919,"max_error":8.191395831190135,"r2":0.0028699979033199874,"rmse":4.818172925512077},"train":{"mae":4.010044754724081,"max_error":7.702750765957865,"r2":0.00534316469452456,"rmse":4.5091475454316985},"validation":{"mae":3.8201508676312037,"max_error":7.36262612176407,"r2":0.007929902690179569,"rmse":4.337185584725825}},"score":0.0009276027715542614,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2528876407513875,0.7153054313522283],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..a457d8c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-0.190718860000000","deployment_expression_hash":"ab3e8e63542c5fad50ab016cab71c370440d480fdf166c1ecd5ef7d7ed95b384","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.190718860000000","fitted_expression_hash":"ab3e8e63542c5fad50ab016cab71c370440d480fdf166c1ecd5ef7d7ed95b384","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:39:02.589464+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5605901307791843,"max_error":4.544475346237793,"r2":-0.0030227475844148977,"rmse":2.8160085735237934},"train":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"validation":{"mae":2.3222585863463108,"max_error":4.930187434523925,"r2":-0.009532970294856336,"rmse":2.656814148883921}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071886,-0.19071886],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.190718860000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605901307791843,"max_error":4.544475346237793,"r2":-0.0030227475844148977,"rmse":2.8160085735237934},"train":{"mae":2.394523535953222,"max_error":4.857639521926269,"r2":-1.655382497744995e-10,"rmse":2.698487660342217},"validation":{"mae":2.3222585863463108,"max_error":4.930187434523925,"r2":-0.009532970294856336,"rmse":2.656814148883921}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071886,-0.19071886],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..6c093cb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s1-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143719640000000","deployment_expression_hash":"d3d2ccdba76425d313fc341e15f2ff32c19ed285d17f77a705044c27b3bb6596","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143719640000000","fitted_expression_hash":"d3d2ccdba76425d313fc341e15f2ff32c19ed285d17f77a705044c27b3bb6596","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:39:01.959426+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650279652698175,"max_error":7.235311475021972,"r2":-0.003512933049487188,"rmse":3.8030273211370904},"train":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"validation":{"mae":2.9191428274395967,"max_error":5.649236712233887,"r2":-0.01177368804304968,"rmse":3.2663650815522485}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14371964,0.14371964],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":22.454378,"metrics":{"blind":{"mae":3.9536669769790023,"max_error":9.807020496577024,"r2":-0.6340903429250009,"rmse":4.85295193714826},"train":{"mae":3.8201914632584906,"max_error":9.976981297135353,"r2":-0.8612317734117354,"rmse":4.738605036486199},"validation":{"mae":3.5869924475435906,"max_error":9.392770864069462,"r2":-0.9308885817779711,"rmse":4.512338181979646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.143719640000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650279652698175,"max_error":7.235311475021972,"r2":-0.003512933049487188,"rmse":3.8030273211370904},"train":{"mae":3.0914863388417126,"max_error":6.596915211899414,"r2":-7.38633376684561e-10,"rmse":3.4733638739719086},"validation":{"mae":2.9191428274395967,"max_error":5.649236712233887,"r2":-0.01177368804304968,"rmse":3.2663650815522485}},"score":0.6212386580018051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14371964,0.14371964],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..c9798c6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.211101620000000","deployment_expression_hash":"cb30d8e25ffdbe533b71536e1a564643f0f1eb96cc5c2372e86456a42ea22019","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.211101620000000","fitted_expression_hash":"cb30d8e25ffdbe533b71536e1a564643f0f1eb96cc5c2372e86456a42ea22019","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:39:40.837348+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.341043966333002,"max_error":8.21110162,"r2":-0.0004771429947836303,"rmse":4.826252911332715},"train":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"validation":{"mae":3.822336241185191,"max_error":7.758711426060791,"r2":-0.0005095767013552077,"rmse":4.355594602246387}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21110162,0.21110162],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":29.007162,"metrics":{"blind":{"mae":4.703315188037232,"max_error":10.42662987858057,"r2":-0.3830471215064184,"rmse":5.6744657572911805},"train":{"mae":4.492369573981397,"max_error":11.288995686918497,"r2":-0.4190237518379516,"rmse":5.385830022702619},"validation":{"mae":4.432045555075045,"max_error":10.415710713714361,"r2":-0.42963386385687596,"rmse":5.206540360380409}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"0.211101620000000","loss":20.44163,"metrics":{"blind":{"mae":4.341043966333002,"max_error":8.21110162,"r2":-0.0004771429947836303,"rmse":4.826252911332715},"train":{"mae":4.00385535738055,"max_error":8.053436367314454,"r2":-4.614586490703232e-10,"rmse":4.521242596481096},"validation":{"mae":3.822336241185191,"max_error":7.758711426060791,"r2":-0.0005095767013552077,"rmse":4.355594602246387}},"score":0.3499692572598906,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.21110162,0.21110162],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"target_Cl*0.09595","loss":20.38907,"metrics":{"blind":{"mae":4.337084322702431,"max_error":7.955952342666569,"r2":5.07036883374834e-05,"rmse":4.8249795900417},"train":{"mae":4.021479352633649,"max_error":7.944620103409397,"r2":0.002571261124938218,"rmse":4.5154262065066995},"validation":{"mae":3.8142158456757604,"max_error":7.4254495275672525,"r2":0.007857672647962444,"rmse":4.33734347145014}},"score":0.0012872674000603012,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4613608251092955,0.44805792092811314],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":6.0,"expression":"target_Cd*target_Cl*0.011570744","loss":20.382257,"metrics":{"blind":{"mae":4.33705200504257,"max_error":7.9562490740576495,"r2":8.858873163630765e-05,"rmse":4.824888187261192},"train":{"mae":4.021500652546696,"max_error":7.944235978332486,"r2":0.0029045592923867547,"rmse":4.5146717119911814},"validation":{"mae":3.8143631851545763,"max_error":7.426824539270403,"r2":0.008041417284998631,"rmse":4.336941815113796}},"score":0.00016710273039224546,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44649041001818424,0.48509215413833534],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd","target_Cl"]},{"complexity":7.0,"expression":"target_Cl*(0.00791813445921*target_Cl**2)","loss":20.368267,"metrics":{"blind":{"mae":4.336942580714816,"max_error":7.999233951297074,"r2":-0.0026318165013972106,"rmse":4.831447136127072},"train":{"mae":4.020412661062827,"max_error":7.998477545379793,"r2":0.0035892981703051774,"rmse":4.5131212575234345},"validation":{"mae":3.8208380922127625,"max_error":7.520485466356343,"r2":0.0070168086407497166,"rmse":4.339181082589505}},"score":0.0006866169647105784,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8802582020372663,0.8062884026519549],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json new file mode 100644 index 0000000..3e11f4f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"-0.190718080000000","deployment_expression_hash":"62702d1c3a9f6b2e9dacef31e074a1fe681eaccb84be4b0210a24b10c97513ef","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.190718080000000","fitted_expression_hash":"62702d1c3a9f6b2e9dacef31e074a1fe681eaccb84be4b0210a24b10c97513ef","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:39:43.170334+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.5605902087791845,"max_error":4.544476126237793,"r2":-0.003022778087800937,"rmse":2.816008616343259},"train":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"validation":{"mae":2.3222585263463102,"max_error":4.930186654523926,"r2":-0.009532912692912676,"rmse":2.656814073087654}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071808,-0.19071808],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":17.987856,"metrics":{"blind":{"mae":3.420140590937808,"max_error":8.480937790125608,"r2":-1.283469403767389,"rmse":4.24889677162957},"train":{"mae":3.4292164030960874,"max_error":9.36471475660801,"r2":-1.470236179108332,"rmse":4.241209011288094},"validation":{"mae":3.286712185887154,"max_error":8.54935321956873,"r2":-1.3732910635216617,"rmse":4.073581633123382}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.669702146202326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-0.190718080000000","loss":7.2818346,"metrics":{"blind":{"mae":2.5605902087791845,"max_error":4.544476126237793,"r2":-0.003022778087800937,"rmse":2.816008616343259},"train":{"mae":2.394523509512544,"max_error":4.857638741926269,"r2":-1.5818391041477753e-10,"rmse":2.6984876603322943},"validation":{"mae":2.3222585263463102,"max_error":4.930186654523926,"r2":-0.009532912692912676,"rmse":2.656814073087654}},"score":0.9043140275844778,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19071808,-0.19071808],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"target_Cd*0.1070144 - 1*1.094982","loss":7.2811165,"metrics":{"blind":{"mae":2.5629745894724905,"max_error":4.547418777852536,"r2":-0.0031263155001142184,"rmse":2.8161539543793386},"train":{"mae":2.3947611836762106,"max_error":4.86986661241126,"r2":9.862607569621762e-05,"rmse":2.698354586213529},"validation":{"mae":2.319359653524918,"max_error":4.96608651439023,"r2":-0.008498941233796131,"rmse":2.6554531597176}},"score":1.972402422148215e-05,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.23617152072858805,-0.134219583130598],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cd"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json new file mode 100644 index 0000000..a1625f7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1.5L-target_only-s2-20260718/formulas/illusion_1.5L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"0.143794900000000","deployment_expression_hash":"9bd473ed1850231caf3e48e1d4f6fcc3b4507f8c7ac7e10755196f7c3adf4f26","dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.143794900000000","fitted_expression_hash":"9bd473ed1850231caf3e48e1d4f6fcc3b4507f8c7ac7e10755196f7c3adf4f26","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1.5L --mode per-scene --run-id article-discovery-v2-illusion_1.5L-target_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile target_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:39:42.426658+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.4650354912698176,"max_error":7.235386735021972,"r2":-0.0035152834063707505,"rmse":3.803031774725038},"train":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"validation":{"mae":2.919133178721648,"max_error":5.649161452233887,"r2":-0.011768659049774755,"rmse":3.2663569638532834}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1.5L":197},"scene_sample_counts":{"illusion_1.5L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.1437949,0.1437949],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.143794900000000","loss":12.064255,"metrics":{"blind":{"mae":3.4650354912698176,"max_error":7.235386735021972,"r2":-0.0035152834063707505,"rmse":3.803031774725038},"train":{"mae":3.091486338841713,"max_error":6.596990471899414,"r2":-3.036104700981923e-11,"rmse":3.4733638727418645},"validation":{"mae":2.919133178721648,"max_error":5.649161452233887,"r2":-0.011768659049774755,"rmse":3.2663569638532834}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.1437949,0.1437949],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1.5L-target_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..79c21bc --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","deployment_expression_hash":"c49ebb582252f9846d661af9b1b61909580635d34e22b5a6aec432b1bb46100f","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","fitted_expression_hash":"c49ebb582252f9846d661af9b1b61909580635d34e22b5a6aec432b1bb46100f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:34:25.156020+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.19952740724620205,"max_error":0.45330504223115275,"r2":0.6935664040425086,"rmse":0.2260208471823694},"train":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"validation":{"mae":0.1943183443829695,"max_error":0.3833102211668622,"r2":0.7097245249291118,"rmse":0.21562282665233704}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10683970746556293,0.40012752748620695],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":0.17075412,"metrics":{"blind":{"mae":0.27673085175920276,"max_error":0.601998895406723,"r2":0.3108234960479447,"rmse":0.3389577287731067},"train":{"mae":0.3492160899785616,"max_error":0.9297878360375762,"r2":-0.011580860521255065,"rmse":0.4132240590406017},"validation":{"mae":0.2720837906982081,"max_error":0.6755692316219211,"r2":0.3105860059099895,"rmse":0.3322994405475299}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8168652420863509,1.2932776589877903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.12166269851182035,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.5878966","loss":0.08905516,"metrics":{"blind":{"mae":0.21833531447232643,"max_error":0.36624967167524153,"r2":0.6465821381627274,"rmse":0.24273061551613365},"train":{"mae":0.2591805163568109,"max_error":0.5931548924319678,"r2":0.47241974896866756,"rmse":0.29842112456497616},"validation":{"mae":0.23069888541089897,"max_error":0.4492322165397694,"r2":0.5553975297896814,"rmse":0.26685509457948287}},"score":0.17389187225066657,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802322984807426,0.7603135385748814],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_rear_s)*0.5328156","loss":0.040756624,"metrics":{"blind":{"mae":0.19952740724620205,"max_error":0.45330504223115275,"r2":0.6935664040425086,"rmse":0.2260208471823694},"train":{"mae":0.17494185461311526,"max_error":0.4235542354709003,"r2":0.7585497986231277,"rmse":0.20188269028846392},"validation":{"mae":0.1943183443829695,"max_error":0.3833102211668622,"r2":0.7097245249291118,"rmse":0.21562282665233704}},"score":0.39081878720385826,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.10683970746556293,0.40012752748620695],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..4463e92 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.211704","deployment_expression_hash":"26bbe9a68ad4a3a9615e2bb1339a60b37355cb9b1aad76ab49c847e14c48140b","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_F - 1*1.211704","fitted_expression_hash":"26bbe9a68ad4a3a9615e2bb1339a60b37355cb9b1aad76ab49c847e14c48140b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:34:26.398436+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1645864630948663,"max_error":0.40763021157300483,"r2":0.1814204161617674,"rmse":0.2025537735647013},"train":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"validation":{"mae":0.18477493893401745,"max_error":0.4597197853884698,"r2":0.37310427608444874,"rmse":0.22064557493903258}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.556543107975185,1.210020144369364],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_a","loss":97.78473,"metrics":{"blind":{"mae":5.788825842179358,"max_error":16.891722723841667,"r2":-1204.8595073363222,"rmse":7.77424530478247},"train":{"mae":7.619751162132469,"max_error":27.66404962539673,"r2":-1050.3009761206567,"rmse":9.88861561913578},"validation":{"mae":5.818579872138798,"max_error":16.301202476024628,"r2":-706.3587773148363,"rmse":7.411693335505686}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-26.770468056201935,14.523997902870178],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_a"]},{"complexity":2.0,"expression":"0.803504050000000","loss":0.09301303,"metrics":{"blind":{"mae":0.19123388535484315,"max_error":0.49804192803649905,"r2":-0.11009575616124301,"rmse":0.23587944936826424},"train":{"mae":0.2489609880489285,"max_error":0.6767832634613037,"r2":-3.974576223697568e-11,"rmse":0.30498042263364794},"validation":{"mae":0.24085260660789679,"max_error":0.4790615437194824,"r2":-0.0002615265870786754,"rmse":0.27871115475186525}},"score":6.957784117997256,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.80350405,0.80350405],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.211704","loss":0.03971144,"metrics":{"blind":{"mae":0.1645864630948663,"max_error":0.40763021157300483,"r2":0.1814204161617674,"rmse":0.2025537735647013},"train":{"mae":0.15995700092878734,"max_error":0.45243739253664006,"r2":0.5730551063064874,"rmse":0.1992773199322333},"validation":{"mae":0.18477493893401745,"max_error":0.4597197853884698,"r2":0.37310427608444874,"rmse":0.22064557493903258}},"score":0.42555014173712447,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.556543107975185,1.210020144369364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..5d75d37 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942242000000000","deployment_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-0.942242000000000","fitted_expression_hash":"c5917595e23ca07f41f0a3270c309f57ccb378bf80448e258752f1a2ad64c8c5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:34:25.844851+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_c","loss":7995.286,"metrics":{"blind":{"mae":95.22794934660196,"max_error":102.51884329319,"r2":-415091.6752316687,"rmse":95.37964563924966},"train":{"mae":88.75841325167882,"max_error":107.91507428884506,"r2":-156268.3746661708,"rmse":89.41636443617715},"validation":{"mae":93.7591081078236,"max_error":100.98786520957947,"r2":-425462.5258011721,"rmse":93.92810603284819}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[60.57933568954468,107.03669786453247],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_c"]},{"complexity":2.0,"expression":"-0.942242000000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274282952222823,"max_error":0.3566547368927002,"r2":-0.003755872712635,"rmse":0.1483191470506135},"train":{"mae":0.16644193711927383,"max_error":0.7180785869522095,"r2":-5.6271431958521134e-11,"rmse":0.22619347405530485},"validation":{"mae":0.1185921961565262,"max_error":0.32858392943573,"r2":-0.007766176159332394,"rmse":0.14455871760798328}},"score":11.959336621043166,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.942242,-0.942242],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_s*(-0.5323005)","loss":0.038047586,"metrics":{"blind":{"mae":0.10195184570049931,"max_error":0.2655597855617524,"r2":0.3085241674850272,"rmse":0.12310386052949307},"train":{"mae":0.14244434945160778,"max_error":0.5371455952684338,"r2":0.25635276107361316,"rmse":0.1950579051555742},"validation":{"mae":0.09145833556549601,"max_error":0.26805706281568553,"r2":0.38446603319134276,"rmse":0.11297709661418942}},"score":0.14809420773409543,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.0894910909427562,-0.701752940780876],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..d6b2d73 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_rear_s*0.51447266 + 0.20592265","deployment_expression_hash":"96c47246bf53e29e1800c38afd86d7ab0bc15ab154dd0c00db22706b5c66dea9","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cl_rear_s*0.51447266 + 0.20592265","fitted_expression_hash":"96c47246bf53e29e1800c38afd86d7ab0bc15ab154dd0c00db22706b5c66dea9","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:35:06.607152+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12035675821188119,"max_error":0.3444441446835744,"r2":0.8626873715854264,"rmse":0.1512988231095407},"train":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"validation":{"mae":0.14353316177820133,"max_error":0.4177760694458509,"r2":0.8021441942259171,"rmse":0.17801801823975036}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2143321839577089,0.8712786473380214],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.4877938","loss":0.09387947,"metrics":{"blind":{"mae":0.23404751860376508,"max_error":0.4364018676654552,"r2":0.6044704081155772,"rmse":0.25678508823270585},"train":{"mae":0.2749696573485111,"max_error":0.5700701279862318,"r2":0.44383963119330283,"rmse":0.30639757007424695},"validation":{"mae":0.2726361566404786,"max_error":0.5249868050496327,"r2":0.4323738653668856,"rmse":0.3015232143950605}},"score":0.23827510151466724,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.39846180052522107,0.6308528237327584],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"0.57513506742756*Cl_rear_s**2","loss":0.09302676,"metrics":{"blind":{"mae":0.2788957196937717,"max_error":0.5421800554088019,"r2":0.37808546721293923,"rmse":0.3219924305538004},"train":{"mae":0.25998645729739006,"max_error":0.6486621291884458,"r2":0.4488912902318467,"rmse":0.3050028762629017},"validation":{"mae":0.2593559595873616,"max_error":0.5973526917450399,"r2":0.3965877663570655,"rmse":0.3108827451640552}},"score":0.009124531763018447,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.000375792197453859,0.9619519936972959],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s*(-0.49069914) + Cl_rear_s","loss":0.09202967,"metrics":{"blind":{"mae":0.22990077840351636,"max_error":0.41423996425904686,"r2":0.6175952160485727,"rmse":0.25248871263629535},"train":{"mae":0.2713245452428019,"max_error":0.5654190243475092,"r2":0.4547982045663501,"rmse":0.3033639260524783},"validation":{"mae":0.2632451682807287,"max_error":0.50871095182318,"r2":0.46482175059030595,"rmse":0.2927782361716201}},"score":0.010776168641875387,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.41603017029868666,0.6586674239412683],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":7.0,"expression":"Cl_rear_s*0.51447266 + 0.20592265","loss":0.04924688,"metrics":{"blind":{"mae":0.12035675821188119,"max_error":0.3444441446835744,"r2":0.8626873715854264,"rmse":0.1512988231095407},"train":{"mae":0.1686899888448771,"max_error":0.647175750846957,"r2":0.7082518121881701,"rmse":0.22191639109317585},"validation":{"mae":0.14353316177820133,"max_error":0.4177760694458509,"r2":0.8021441942259171,"rmse":0.17801801823975036}},"score":0.6252650096995146,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2143321839577089,0.8712786473380214],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..6b72107 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.20018438794809*Cd_F**2","deployment_expression_hash":"3e0cca1ada5e64bd8c4d2b5d769fc33b36dee4a2f2906e1d5abb1a3b386cf7d6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"0.20018438794809*Cd_F**2","fitted_expression_hash":"3e0cca1ada5e64bd8c4d2b5d769fc33b36dee4a2f2906e1d5abb1a3b386cf7d6","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:35:08.248370+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.1634407760291699,"max_error":0.4052062529436298,"r2":0.16051749312853647,"rmse":0.20512363756844773},"train":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"validation":{"mae":0.1896178442300578,"max_error":0.43642061661647347,"r2":0.3523599079355254,"rmse":0.22426651338498732}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6259160923705888,1.1740309551030066],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":0.9510737,"metrics":{"blind":{"mae":0.710097011027392,"max_error":1.126124419271946,"r2":-9.970358338687541,"rmse":0.7415155979978445},"train":{"mae":0.883020389773804,"max_error":2.0674071786925197,"r2":-9.225163732394384,"rmse":0.9752301006447736},"validation":{"mae":0.7041060948290695,"max_error":1.1799194104969501,"r2":-6.3075581237791285,"rmse":0.7533273022447557}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7985222619026899,0.3508760128170252],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_err"]},{"complexity":2.0,"expression":"0.803504050000000","loss":0.09301303,"metrics":{"blind":{"mae":0.19123388535484315,"max_error":0.49804192803649905,"r2":-0.11009575616124301,"rmse":0.23587944936826424},"train":{"mae":0.2489609880489285,"max_error":0.6767832634613037,"r2":-3.974576223697568e-11,"rmse":0.30498042263364794},"validation":{"mae":0.24085260660789679,"max_error":0.4790615437194824,"r2":-0.0002615265870786754,"rmse":0.27871115475186525}},"score":2.3248519660478175,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.80350405,0.80350405],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1.0668246","loss":0.06070128,"metrics":{"blind":{"mae":0.22489940135827968,"max_error":0.5525096115730048,"r2":-0.6746763849038127,"rmse":0.2897179024367254},"train":{"mae":0.20064650076201357,"max_error":0.5868978557250739,"r2":0.3473897493416064,"rmse":0.24637628785525514},"validation":{"mae":0.23535883800347215,"max_error":0.6045991853884698,"r2":-0.12978787142816905,"rmse":0.2962074806944902}},"score":0.2133874028541071,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.701422507975185,1.3548995443693639],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":5.0,"expression":"0.20018438794809*Cd_F**2","loss":0.04458775,"metrics":{"blind":{"mae":0.1634407760291699,"max_error":0.4052062529436298,"r2":0.16051749312853647,"rmse":0.20512363756844773},"train":{"mae":0.17111603602146136,"max_error":0.46637591049926486,"r2":0.5206290379539061,"rmse":0.21115813786241072},"validation":{"mae":0.1896178442300578,"max_error":0.43642061661647347,"r2":0.3523599079355254,"rmse":0.22426651338498732}},"score":0.3085056275358683,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.6259160923705888,1.1740309551030066],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..26c676e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_err**4 - 0.93708986","deployment_expression_hash":"ef5439733203bf7e9e613302859b83c89d15ebad9632ce8767cbb4f94f8a3c2f","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cl_err**4 - 0.93708986","fitted_expression_hash":"ef5439733203bf7e9e613302859b83c89d15ebad9632ce8767cbb4f94f8a3c2f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:35:07.530382+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.10113808026896538,"max_error":0.23080492795637708,"r2":0.36799129202404024,"rmse":0.11769139232958219},"train":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"validation":{"mae":0.10354684747329734,"max_error":0.24173238581026824,"r2":0.2781532556152557,"rmse":0.12234518978489203}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.937088705737113,-0.6799074803852985],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.942243750000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274247952222823,"max_error":0.35665648689270024,"r2":-0.003754423946049412,"rmse":0.14831904001268342},"train":{"mae":0.16644193711927383,"max_error":0.7180803369522095,"r2":-5.5067062021407764e-14,"rmse":0.226193474048947},"validation":{"mae":0.11859161282319287,"max_error":0.32858567943573,"r2":-0.007764034367198969,"rmse":0.1445585639935358}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224375,-0.94224375],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":6.0,"expression":"Cl_err**4 - 0.93708986","loss":0.049211014,"metrics":{"blind":{"mae":0.10113808026896538,"max_error":0.23080492795637708,"r2":0.36799129202404024,"rmse":0.11769139232958219},"train":{"mae":0.16179250604225434,"max_error":0.712926409750473,"r2":0.0381615059317425,"rmse":0.22183555162076202},"validation":{"mae":0.10354684747329734,"max_error":0.24173238581026824,"r2":0.2781532556152557,"rmse":0.12234518978489203}},"score":0.009727148672841048,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.937088705737113,-0.6799074803852985],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json new file mode 100644 index 0000000..5618352 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","deployment_expression_hash":"412bb6c9da7cfef0002050b60cd71a49cde56fd9d41b017b9f0d8283b01ac271","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","fitted_expression_hash":"412bb6c9da7cfef0002050b60cd71a49cde56fd9d41b017b9f0d8283b01ac271","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:35:45.274668+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.17457551462063783,"max_error":0.4196667261955416,"r2":0.7454528335390933,"rmse":0.2059986826635149},"train":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"validation":{"mae":0.12805053866355137,"max_error":0.3494996128400467,"r2":0.8369357104078647,"rmse":0.1616102842518539}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06697057970742465,0.48471876867424],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":3.077293,"metrics":{"blind":{"mae":1.795773611916229,"max_error":2.253900172188878,"r2":-19.09028590209665,"rmse":1.830093877968411},"train":{"mae":1.7209845404929907,"max_error":2.2174073616042733,"r2":-17.230484941638476,"rmse":1.7542214139566625},"validation":{"mae":1.6458853284995525,"max_error":2.2143625784665346,"r2":-16.6126461175921,"rmse":1.6795845356106587}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.768247107975185,2.421724144369364],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"Cl_rear_s**2","loss":0.15119372,"metrics":{"blind":{"mae":0.33653790619615653,"max_error":0.7025349537376737,"r2":0.07006576935977515,"rmse":0.3937371802529342},"train":{"mae":0.34183147687927906,"max_error":0.7846544125974435,"r2":0.10429871752711806,"rmse":0.38883638383468355},"validation":{"mae":0.3299288490024817,"max_error":0.7039151528196921,"r2":0.0795009693563764,"rmse":0.38397348056414565}},"score":3.013243664916769,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0006533981645992941,1.6725671032369394],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_rear_s","loss":0.10596913,"metrics":{"blind":{"mae":0.27211319109774196,"max_error":0.7053476527798921,"r2":0.30957389814757186,"rmse":0.33926488451629405},"train":{"mae":0.2707407824020296,"max_error":0.7377704896498471,"r2":0.37221813878340015,"rmse":0.32552899631833204},"validation":{"mae":0.2834278109471481,"max_error":0.6335099679417908,"r2":0.3280210457559877,"rmse":0.3280706647022518}},"score":0.3554141032089962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20051910541951656,0.7509681163355708],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s*0.58792293","loss":0.08905516,"metrics":{"blind":{"mae":0.21833164467603483,"max_error":0.3662646647872042,"r2":0.6465868558637489,"rmse":0.2427289954306513},"train":{"mae":0.2591766378435967,"max_error":0.593176400493792,"r2":0.47241975169866435,"rmse":0.2984211237928768},"validation":{"mae":0.23068798222927667,"max_error":0.44921229084023395,"r2":0.5554205052703649,"rmse":0.2668481994274174}},"score":0.17389187225066657,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4802538065425667,0.7603475905756425],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"(Cl_F - Cl_rear_s)*(-0.5423442)","loss":0.030799598,"metrics":{"blind":{"mae":0.17457551462063783,"max_error":0.4196667261955416,"r2":0.7454528335390933,"rmse":0.2059986826635149},"train":{"mae":0.14304126607514106,"max_error":0.4532659672499587,"r2":0.817537157908072,"rmse":0.17549813885633836},"validation":{"mae":0.12805053866355137,"max_error":0.3494996128400467,"r2":0.8369357104078647,"rmse":0.1616102842518539}},"score":0.5308771575426796,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.06697057970742465,0.48471876867424],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..a212926 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_F - 1*1.1971676","deployment_expression_hash":"26b671fabe9ed64f1d1abf92768688590a02597a2bc9fd31c5d9f8d61fec799e","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_F - 1*1.1971676","fitted_expression_hash":"26b671fabe9ed64f1d1abf92768688590a02597a2bc9fd31c5d9f8d61fec799e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:35:46.465963+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.16604010309486628,"max_error":0.4221666115730047,"r2":0.1333272576168858,"rmse":0.2084190696930846},"train":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"validation":{"mae":0.18663857995965846,"max_error":0.4742561853884697,"r2":0.3470445825354267,"rmse":0.2251849352382468}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5710795079751849,1.2245565443693638],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.87259287,"metrics":{"blind":{"mae":0.7672155196485619,"max_error":1.6639559054747224,"r2":-16.238205505201513,"rmse":0.9295139479811793},"train":{"mae":0.8333614186206016,"max_error":1.5885829450562596,"r2":-8.38140059799011,"rmse":0.9341267364164152},"validation":{"mae":0.8691019496055117,"max_error":1.5712010501883924,"r2":-12.024528187807253,"rmse":1.0057234310359096}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7121316739358008,0.6465766200562939],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_err"]},{"complexity":2.0,"expression":"0.803506100000000","loss":0.09301304,"metrics":{"blind":{"mae":0.19123450035484313,"max_error":0.498043978036499,"r2":-0.11010183282567798,"rmse":0.2358800949694619},"train":{"mae":0.2489614744896064,"max_error":0.6767812134613037,"r2":-1.696809359685858e-10,"rmse":0.30498042265346176},"validation":{"mae":0.2408526591719994,"max_error":0.4790594937194824,"r2":-0.0002612887139286091,"rmse":0.2787111216115802}},"score":2.2387293912950503,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.8035061,0.8035061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_F - 1*1.1971676","loss":0.03992274,"metrics":{"blind":{"mae":0.16604010309486628,"max_error":0.4221666115730047,"r2":0.1333272576168858,"rmse":0.2084190696930846},"train":{"mae":0.16083104244246268,"max_error":0.4565548557250738,"r2":0.5707835403528801,"rmse":0.19980674547069252},"validation":{"mae":0.18663857995965846,"max_error":0.4742561853884697,"r2":0.3470445825354267,"rmse":0.2251849352382468}},"score":0.42289680600771257,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5710795079751849,1.2245565443693638],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..e16cf11 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.942249240000000","deployment_expression_hash":"973b9ab806369718228d56d3963e398aed1f8e1540124200841f8c267278933d","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-0.942249240000000","fitted_expression_hash":"973b9ab806369718228d56d3963e398aed1f8e1540124200841f8c267278933d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:35:45.886127+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.12274138152222824,"max_error":0.3566619768927002,"r2":-0.00374988077191607,"rmse":0.1483187043528983},"train":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"validation":{"mae":0.1185897828231929,"max_error":0.32859116943572997,"r2":-0.007757317176130263,"rmse":0.14455808221948954}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224924,-0.94224924],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":0.46353057,"metrics":{"blind":{"mae":0.5827726590187012,"max_error":1.3141757168341428,"r2":-21.72259987442313,"rmse":0.7056871025605645},"train":{"mae":0.5669855430052725,"max_error":1.4811755518894643,"r2":-8.059791255049982,"rmse":0.6808307561086059},"validation":{"mae":0.6131191903640194,"max_error":1.2822435218840837,"r2":-24.243064396910242,"rmse":0.7234948357979383}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.940348778385669,0.399530166760087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.942249240000000","loss":0.051163483,"metrics":{"blind":{"mae":0.12274138152222824,"max_error":0.3566619768927002,"r2":-0.00374988077191607,"rmse":0.1483187043528983},"train":{"mae":0.16644193711927388,"max_error":0.7180858269522095,"r2":-6.005713704126947e-10,"rmse":0.2261934741168634},"validation":{"mae":0.1185897828231929,"max_error":0.32859116943572997,"r2":-0.007757317176130263,"rmse":0.14455808221948954}},"score":2.2038462825986183,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.94224924,-0.94224924],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":7.0,"expression":"-Cd_rear_s + Cd_rear_s*0.407908233687764","loss":0.049414404,"metrics":{"blind":{"mae":0.1397743706214069,"max_error":0.3621292056517029,"r2":-0.39005756485604337,"rmse":0.17454184502612693},"train":{"mae":0.17401915264209836,"max_error":0.5878565877103972,"r2":0.0341862277658852,"rmse":0.2222935020607664},"validation":{"mae":0.13197281439577935,"max_error":0.3670967299800967,"r2":-0.38605234117467413,"rmse":0.16953298676104428}},"score":0.006956818856913556,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2118694316795524,-0.7805781475346255],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..adbac65 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.27914348*Cd_B","deployment_expression_hash":"edc35285decc8d02b458f269095602a616efcafd5dd97d948ef063f33b2e0904","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"0.27914348*Cd_B","fitted_expression_hash":"edc35285decc8d02b458f269095602a616efcafd5dd97d948ef063f33b2e0904","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:05:56.601932+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4569642480270114,"max_error":1.0909820727363135,"r2":0.8518243306331426,"rmse":0.5268530314007679},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4718407384258326,"max_error":0.939236371983774,"r2":0.8409665724627509,"rmse":0.5398758712160157},"train":{"mae":0.4569642480270114,"max_error":1.0909820727363135,"r2":0.8518243306331426,"rmse":0.5268530314007679},"validation":{"mae":0.4661343122919942,"max_error":0.9410157898409758,"r2":0.8487457503695586,"rmse":0.5245356162615408}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5808985073971002,1.5276489262063242],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":10.450283,"metrics":{"blind":{"mae":2.2718711820314637,"max_error":7.7805018946528435,"r2":-4.849034006756704,"rmse":3.274098806724633},"train":{"mae":2.2820890134628873,"max_error":7.869233101606369,"r2":-4.578610097828176,"rmse":3.232689842662442},"validation":{"mae":2.471632557682311,"max_error":7.667709652334452,"r2":-5.567604099636679,"rmse":3.4564053788184586}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2623434886336327,5.74492197483778],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-0.327564150000000","loss":1.873277,"metrics":{"blind":{"mae":1.180013022944331,"max_error":2.328698247766113,"r2":-3.997858843973745e-08,"rmse":1.3537850599767338},"train":{"mae":1.207290967800102,"max_error":2.4136008321289064,"r2":-3.956034611007908e-09,"rmse":1.3686772080041438},"validation":{"mae":1.2000615742035108,"max_error":2.3516784609313963,"r2":-0.012080125997384172,"rmse":1.3568399995145848}},"score":1.718939755772874,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.32756415,-0.32756415],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.27914348*Cd_B","loss":0.27757406,"metrics":{"blind":{"mae":0.4718407384258326,"max_error":0.939236371983774,"r2":0.8409665724627509,"rmse":0.5398758712160157},"train":{"mae":0.4569642480270114,"max_error":1.0909820727363135,"r2":0.8518243306331426,"rmse":0.5268530314007679},"validation":{"mae":0.4661343122919942,"max_error":0.9410157898409758,"r2":0.8487457503695586,"rmse":0.5245356162615408}},"score":0.9546784010653162,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5808985073971002,1.5276489262063242],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..59657b9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_T - 0.22311148","deployment_expression_hash":"14d4edfc5f3ffc5520ac93461ac8ff1152ee79be02bc1a9bf017cfee427b0fd7","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_T - 0.22311148","fitted_expression_hash":"14d4edfc5f3ffc5520ac93461ac8ff1152ee79be02bc1a9bf017cfee427b0fd7","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:05:58.470518+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7307666803538662,"max_error":1.7880384991788674,"r2":0.7628998810087523,"rmse":0.8998683547522778},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7640748257318364,"max_error":1.7166635761880684,"r2":0.7254150866451317,"rmse":0.9213577920232415},"train":{"mae":0.7307666803538662,"max_error":1.7880384991788674,"r2":0.7628998810087523,"rmse":0.8998683547522778},"validation":{"mae":0.7510740946988338,"max_error":1.7422816823148537,"r2":0.7184160480017295,"rmse":0.919301771670748}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1273025279021454,6.707724996385593],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"4.24591800000000","loss":3.415279,"metrics":{"blind":{"mae":1.5591779447624206,"max_error":3.2044613716430668,"r2":-0.02406663116781904,"rmse":1.7793200994639695},"train":{"mae":1.5779010116563572,"max_error":3.4492376205749515,"r2":-9.682032953151065e-12,"rmse":1.8480473462854305},"validation":{"mae":1.4972436536035783,"max_error":3.1794803497619633,"r2":-0.011123348762971164,"rmse":1.7420323540760914}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.245918,4.245918],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_T - 0.22311148","loss":0.80976313,"metrics":{"blind":{"mae":0.7640748257318364,"max_error":1.7166635761880684,"r2":0.7254150866451317,"rmse":0.9213577920232415},"train":{"mae":0.7307666803538662,"max_error":1.7880384991788674,"r2":0.7628998810087523,"rmse":0.8998683547522778},"validation":{"mae":0.7510740946988338,"max_error":1.7422816823148537,"r2":0.7184160480017295,"rmse":0.919301771670748}},"score":0.719636347128051,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1273025279021454,6.707724996385593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":6.0,"expression":"-Cl_B - Cl_F + 0.099073574","loss":0.6961987,"metrics":{"blind":{"mae":0.5813199658183126,"max_error":1.6391731921997472,"r2":0.8085344915231101,"rmse":0.7693700070019489},"train":{"mae":0.6285041862396099,"max_error":2.475059796177744,"r2":0.7961517327593929,"rmse":0.8343852258317862},"validation":{"mae":0.6315454721340055,"max_error":1.6581968218618623,"r2":0.7755971103008207,"rmse":0.8206696444485316}},"score":0.0755533323525187,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5636734766355165,10.360266957485079],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..97e8210 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s0-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.054456804*Cl_F**4","deployment_expression_hash":"45640179da5995aefe30217c0845d559fcb4a0c9d97c4367e849ebd8a50baa64","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-0.054456804*Cl_F**4","fitted_expression_hash":"45640179da5995aefe30217c0845d559fcb4a0c9d97c4367e849ebd8a50baa64","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:05:57.576730+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.6381510618340256,"max_error":12.7341942834099,"r2":-3.874343497164179,"rmse":4.52429448192982},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":3.5720563084185786,"max_error":10.770288679246269,"r2":-3.1653875326166183,"rmse":4.40994507126978},"train":{"mae":3.6381510618340256,"max_error":12.7341942834099,"r2":-3.874343497164179,"rmse":4.52429448192982},"validation":{"mae":3.830150570915375,"max_error":10.213286564027664,"r2":-4.013907291058014,"rmse":4.6009239527827095}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-14.014895920677967,-5.274276301295203e-05],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cl_F**8","loss":270688740.0,"metrics":{"blind":{"mae":8938.798444171398,"max_error":48446.02375995016,"r2":-53409001.53475149,"rmse":15791.111761342445},"train":{"mae":8990.611037611678,"max_error":66234.43747103309,"r2":-64459154.11376121,"rmse":16452.62139630955},"validation":{"mae":7987.729634847723,"max_error":43957.55947245608,"r2":-55462620.86932421,"rmse":15302.313786909626}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[9.380402103234645e-07,66233.15676939582],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"-0.054456804*Cl_F**4","loss":20.46924,"metrics":{"blind":{"mae":3.5720563084185786,"max_error":10.770288679246269,"r2":-3.1653875326166183,"rmse":4.40994507126978},"train":{"mae":3.6381510618340256,"max_error":12.7341942834099,"r2":-3.874343497164179,"rmse":4.52429448192982},"validation":{"mae":3.830150570915375,"max_error":10.213286564027664,"r2":-4.013907291058014,"rmse":4.6009239527827095}},"score":8.198778443188264,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-14.014895920677967,-5.274276301295203e-05],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..61d56dd --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-0.28566077*(Cd_F + Cd_T)","deployment_expression_hash":"48b12533ea63e8f0985782745ed532a8b63909801f9dfcc431f06598abba3432","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-0.28566077*(Cd_F + Cd_T)","fitted_expression_hash":"48b12533ea63e8f0985782745ed532a8b63909801f9dfcc431f06598abba3432","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:06:34.299045+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4247293733374534,"max_error":0.9472087437196582,"r2":0.8710896709278544,"rmse":0.491411021644485},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4696075065524722,"max_error":0.9248360134560528,"r2":0.8424886109441527,"rmse":0.5372862037833512},"train":{"mae":0.4247293733374534,"max_error":0.9472087437196582,"r2":0.8710896709278544,"rmse":0.491411021644485},"validation":{"mae":0.465673059093117,"max_error":0.9178595836869877,"r2":0.8500310427161305,"rmse":0.5223022246131974}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.205210475208988,2.8245415548642727],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":10.450283,"metrics":{"blind":{"mae":2.2718711820314637,"max_error":7.7805018946528435,"r2":-4.849034006756704,"rmse":3.274098806724633},"train":{"mae":2.2820890134628873,"max_error":7.869233101606369,"r2":-4.578610097828176,"rmse":3.232689842662442},"validation":{"mae":2.471632557682311,"max_error":7.667709652334452,"r2":-5.567604099636679,"rmse":3.4564053788184586}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2623434886336327,5.74492197483778],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-0.327619050000000","loss":1.8732771,"metrics":{"blind":{"mae":1.180013022944331,"max_error":2.3286433477661133,"r2":-2.540628685210322e-08,"rmse":1.353785050112852},"train":{"mae":1.2072909678001016,"max_error":2.4136557321289063,"r2":-5.191695962025733e-10,"rmse":1.3686772056521646},"validation":{"mae":1.200057351126587,"max_error":2.3516235609313965,"r2":-0.012071179841651736,"rmse":1.3568340026925683}},"score":1.7189397023904875,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.32761905,-0.32761905],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_B*0.34788042","loss":0.3870552,"metrics":{"blind":{"mae":0.5374560960101189,"max_error":1.0954088490656577,"r2":0.7711217828870066,"rmse":0.6476672532920973},"train":{"mae":0.5193735086253186,"max_error":1.2765877668686958,"r2":0.7933807578744746,"rmse":0.622137552656831},"validation":{"mae":0.5142089684993675,"max_error":1.1172172754802507,"r2":0.7891216943970054,"rmse":0.6193514252960541}},"score":0.7884386587291458,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.2164249608505147,1.9038207521852386],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":6.0,"expression":"-0.28566077*(Cd_F + Cd_T)","loss":0.24148482,"metrics":{"blind":{"mae":0.4696075065524722,"max_error":0.9248360134560528,"r2":0.8424886109441527,"rmse":0.5372862037833512},"train":{"mae":0.4247293733374534,"max_error":0.9472087437196582,"r2":0.8710896709278544,"rmse":0.491411021644485},"validation":{"mae":0.465673059093117,"max_error":0.9178595836869877,"r2":0.8500310427161305,"rmse":0.5223022246131974}},"score":0.23588035227151044,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.205210475208988,2.8245415548642727],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_T"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..17bf3e0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"0.186381502186178*Cl_T**2","deployment_expression_hash":"cab0d072b8f691425670dd136fcff88eb0c43d73b8fa27f7b8e57301c4325233","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"0.186381502186178*Cl_T**2","fitted_expression_hash":"cab0d072b8f691425670dd136fcff88eb0c43d73b8fa27f7b8e57301c4325233","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:06:35.676576+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.705312308447216,"max_error":1.6866544795110634,"r2":0.81273177396943,"rmse":0.799733229658958},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6398135103847394,"max_error":1.2431144960059681,"r2":0.8318840362097184,"rmse":0.720932251475495},"train":{"mae":0.705312308447216,"max_error":1.6866544795110634,"r2":0.81273177396943,"rmse":0.799733229658958},"validation":{"mae":0.6339297915538933,"max_error":1.3065207727481498,"r2":0.8279890495552521,"rmse":0.7185089709719097}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3398886609003136,8.953113960383286],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_T","loss":0.8682069,"metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3504140079021454,6.930836476385593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":4.0,"expression":"Cl_T - 0.24253239","loss":0.8093858,"metrics":{"blind":{"mae":0.7563064617318365,"max_error":1.7360844861880684,"r2":0.7278628836070193,"rmse":0.9172418602041262},"train":{"mae":0.7269080240769648,"max_error":1.8074594091788674,"r2":0.7630102937209258,"rmse":0.8996588051411522},"validation":{"mae":0.7436045139296029,"max_error":1.7617025923148537,"r2":0.7206723745466141,"rmse":0.9156111903574762}},"score":0.02338478729441036,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1078816179021453,6.688304086385593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":5.0,"expression":"0.186381502186178*Cl_T**2","loss":0.6395732,"metrics":{"blind":{"mae":0.6398135103847394,"max_error":1.2431144960059681,"r2":0.8318840362097184,"rmse":0.720932251475495},"train":{"mae":0.705312308447216,"max_error":1.6866544795110634,"r2":0.81273177396943,"rmse":0.799733229658958},"validation":{"mae":0.6339297915538933,"max_error":1.3065207727481498,"r2":0.8279890495552521,"rmse":0.7185089709719097}},"score":0.23547460953454363,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3398886609003136,8.953113960383286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..b155a6d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s1-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 2.4342265 - 1.8745719","deployment_expression_hash":"8fe0736cc8f503934cb31858e5de6ced9025ae41923f9fc3fd06b9fa4dd9debf","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 2.4342265 - 1.8745719","fitted_expression_hash":"8fe0736cc8f503934cb31858e5de6ced9025ae41923f9fc3fd06b9fa4dd9debf","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:06:34.905715+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6224060178179622,"max_error":1.9435719207527873,"r2":0.8585195804538694,"rmse":0.7707986920735266},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5558477496709427,"max_error":1.43625144728992,"r2":0.8999162854209984,"rmse":0.6835765903491295},"train":{"mae":0.6224060178179622,"max_error":1.9435719207527873,"r2":0.8585195804538694,"rmse":0.7707986920735266},"validation":{"mae":0.5457504583688547,"max_error":1.430676567122078,"r2":0.8899878799726847,"rmse":0.681517751330412}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.961269052014017,-0.3035041068347928],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.07322900000000","loss":4.1993833,"metrics":{"blind":{"mae":1.9941100746393203,"max_error":3.1925504952392574,"r2":-0.03697604119425435,"rmse":2.200340207605013},"train":{"mae":1.8435941525463166,"max_error":3.183053806396484,"r2":-2.4624746686185972e-12,"rmse":2.0492398824348905},"validation":{"mae":1.8414382418782158,"max_error":3.18965990838623,"r2":-0.01114205274671165,"rmse":2.066155443056149}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.073229,-4.073229],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_B + 0.11135051","loss":0.99562246,"metrics":{"blind":{"mae":0.8036197760694588,"max_error":1.6819807027566531,"r2":0.7879431021328992,"rmse":0.9950196917078394},"train":{"mae":0.7872663450425117,"max_error":2.3365258571791747,"r2":0.7629122485082622,"rmse":0.9978088659216601},"validation":{"mae":0.7039612269377901,"max_error":1.6644320299017528,"r2":0.8068121348851376,"rmse":0.9031228424032041}},"score":0.7196624153286646,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.144548580319872,-0.8783730913785005],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":7.0,"expression":"-Cl_F - 2.4342265 - 1.8745719","loss":0.59413064,"metrics":{"blind":{"mae":0.5558477496709427,"max_error":1.43625144728992,"r2":0.8999162854209984,"rmse":0.6835765903491295},"train":{"mae":0.6224060178179622,"max_error":1.9435719207527873,"r2":0.8585195804538694,"rmse":0.7707986920735266},"validation":{"mae":0.5457504583688547,"max_error":1.430676567122078,"r2":0.8899878799726847,"rmse":0.681517751330412}},"score":0.17208963388626405,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.961269052014017,-0.3035041068347928],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..18de781 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.3191684*Cd_B","deployment_expression_hash":"669483a958deb47dddc6d9f96af6c5d819c414ad5ff6cf85e914a1c6c15dc6c5","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"0.3191684*Cd_B","fitted_expression_hash":"669483a958deb47dddc6d9f96af6c5d819c414ad5ff6cf85e914a1c6c15dc6c5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:07:14.739151+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.4789387675998012,"max_error":1.1823480307382532,"r2":0.8313606897600454,"rmse":0.5620571060501935},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.49796472538731934,"max_error":1.030174241801724,"r2":0.8142993248025534,"rmse":0.5833866004092221},"train":{"mae":0.4789387675998012,"max_error":1.1823480307382532,"r2":0.8313606897600454,"rmse":0.5620571060501935},"validation":{"mae":0.4806763501722024,"max_error":1.0436163764628583,"r2":0.8284096341214434,"rmse":0.5586858085866808}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.950960012278706,1.746690496009402],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_T","loss":29.012447,"metrics":{"blind":{"mae":4.728634100826457,"max_error":8.368377137929201,"r2":-13.99992201462043,"rmse":5.243173257078328},"train":{"mae":4.829852831715686,"max_error":8.508786346763372,"r2":-14.487533168949,"rmse":5.386320098093307},"validation":{"mae":4.946172620528019,"max_error":8.361047185957432,"r2":-15.096954009862063,"rmse":5.411193214050578}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.3504140079021454,6.930836476385593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":2.0,"expression":"-0.327694860000000","loss":1.8732771,"metrics":{"blind":{"mae":1.180013022944331,"max_error":2.3285675377661135,"r2":-1.0690515139799572e-08,"rmse":1.3537850401518563},"train":{"mae":1.2072909678001016,"max_error":2.413731542128906,"r2":-1.0630176738857244e-09,"rmse":1.3686772060243408},"validation":{"mae":1.200051519588126,"max_error":2.3515477509313967,"r2":-0.012058831772411738,"rmse":1.3568257254430771}},"score":2.7400355878067404,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.32769486,-0.32769486],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.3191684*Cd_B","loss":0.31590816,"metrics":{"blind":{"mae":0.49796472538731934,"max_error":1.030174241801724,"r2":0.8142993248025534,"rmse":0.5833866004092221},"train":{"mae":0.4789387675998012,"max_error":1.1823480307382532,"r2":0.8313606897600454,"rmse":0.5620571060501935},"validation":{"mae":0.4806763501722024,"max_error":1.0436163764628583,"r2":0.8284096341214434,"rmse":0.5586858085866808}},"score":0.8899965487709497,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.950960012278706,1.746690496009402],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":5.0,"expression":"0.30310761481441*Cd_B","loss":0.2920138,"metrics":{"blind":{"mae":0.4827070899146181,"max_error":0.9936836356398318,"r2":0.8296898140134084,"rmse":0.5586888704695373},"train":{"mae":0.4670556251822333,"max_error":1.1456856457854592,"r2":0.8441160975658141,"rmse":0.540382988874516},"validation":{"mae":0.4729005321248714,"max_error":1.002445876143318,"r2":0.8413867954635865,"rmse":0.5371441613495211}},"score":0.07865047700806758,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.8024655659347872,1.658795764444126],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":7.0,"expression":"Cd_B*0.27811527 + 0.011115579","loss":0.2773993,"metrics":{"blind":{"mae":0.4726161076087692,"max_error":0.9480158257116807,"r2":0.840107137353366,"rmse":0.5413326816240276},"train":{"mae":0.45518990001870546,"max_error":1.0997505292017233,"r2":0.8519176348525587,"rmse":0.526687129157976},"validation":{"mae":0.464988954961177,"max_error":0.9494956371725431,"r2":0.8480412780699045,"rmse":0.5257557193250366}},"score":0.025671538489921365,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5602763275110947,1.5331374925230454],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..1de75ab --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_T - 1*0.24250285","deployment_expression_hash":"9bd9c4ee301b11b0b5b97bffc796b5dd69850f0a1fba1948ed7dd7bac84faa4e","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_T - 1*0.24250285","fitted_expression_hash":"9bd9c4ee301b11b0b5b97bffc796b5dd69850f0a1fba1948ed7dd7bac84faa4e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:07:16.626533+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7269135315345918,"max_error":1.8074298691788675,"r2":0.7630102935017334,"rmse":0.8996588055572006},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7563182777318364,"max_error":1.7360549461880685,"r2":0.7278593456920013,"rmse":0.9172478224801442},"train":{"mae":0.7269135315345918,"max_error":1.8074298691788675,"r2":0.7630102935017334,"rmse":0.8996588055572006},"validation":{"mae":0.7436158754680644,"max_error":1.7616730523148538,"r2":0.7206691334396138,"rmse":0.9156165023727584}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1079111579021454,6.688333626385593],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_hat_B","loss":850.0002,"metrics":{"blind":{"mae":26.97296577692032,"max_error":43.732608914375305,"r2":-282.111258125184,"rmse":29.584793820848258},"train":{"mae":26.443328551229847,"max_error":48.30289125442505,"r2":-247.88163137381096,"rmse":29.154763035278258},"validation":{"mae":25.345304394761722,"max_error":43.876291275024414,"r2":-268.7101044911533,"rmse":28.451341976839196}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-41.375577449798584,38.98056149482727],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]},{"complexity":2.0,"expression":"4.24613430000000","loss":3.4152784,"metrics":{"blind":{"mae":1.5592644647624205,"max_error":3.204245071643067,"r2":-0.0241048147216818,"rmse":1.7793532711978626},"train":{"mae":1.577945004876696,"max_error":3.4490213205749516,"r2":-1.2980228003556249e-08,"rmse":1.848047358270522},"validation":{"mae":1.4973268459112705,"max_error":3.1792640497619633,"r2":-0.011149700371596127,"rmse":1.7420550541036268}},"score":5.516977572384496,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.2461343,4.2461343],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_T - 1*0.24250285","loss":0.8093858,"metrics":{"blind":{"mae":0.7563182777318364,"max_error":1.7360549461880685,"r2":0.7278593456920013,"rmse":0.9172478224801442},"train":{"mae":0.7269135315345918,"max_error":1.8074298691788675,"r2":0.7630102935017334,"rmse":0.8996588055572006},"validation":{"mae":0.7436158754680644,"max_error":1.7616730523148538,"r2":0.7206691334396138,"rmse":0.9156165023727584}},"score":0.7198693014739362,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1079111579021454,6.688333626385593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..4ccd9cb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-raw_complete-s2-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_B + 0.111351624","deployment_expression_hash":"46b1a6af885f34ba1337e993419ee2e9f8db24aba1496f310ea834422656d09d","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_B + 0.111351624","fitted_expression_hash":"46b1a6af885f34ba1337e993419ee2e9f8db24aba1496f310ea834422656d09d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:07:15.714226+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7872664960933592,"max_error":2.3365269711791745,"r2":0.7629122485081916,"rmse":0.9978088659218084},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.8036202216694587,"max_error":1.681981816756653,"r2":0.7879429856498432,"rmse":0.995019964990434},"train":{"mae":0.7872664960933592,"max_error":2.3365269711791745,"r2":0.7629122485081916,"rmse":0.9978088659218084},"validation":{"mae":0.7039616553993284,"max_error":1.6644331439017526,"r2":0.8068120662266948,"rmse":0.9031230028868932}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.144547466319872,-0.8783719773785005],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.07344770000000","loss":4.1993833,"metrics":{"blind":{"mae":1.9941100746393203,"max_error":3.192331795239258,"r2":-0.036937126000393006,"rmse":2.2002989205040127},"train":{"mae":1.8436163932242833,"max_error":3.1828351063964844,"r2":-1.172711638908197e-08,"rmse":2.0492398944482044},"validation":{"mae":1.8414550649551393,"max_error":3.1894412083862305,"r2":-0.011119594002760191,"rmse":2.0661324969658317}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.0734477,-4.0734477],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_B - Cl_F","loss":4.034028,"metrics":{"blind":{"mae":1.7916127349146336,"max_error":4.034711551852524,"r2":0.09171438546947219,"rmse":2.059286116847715},"train":{"mae":1.7252742814184245,"max_error":4.055768484249711,"r2":0.039376327430193814,"rmse":2.008488927674725},"validation":{"mae":1.7166738736529787,"max_error":3.988095107488334,"r2":0.02892028471473751,"rmse":2.024810323688483}},"score":0.040172300665501245,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.642194253392518,-2.250604797154665],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]},{"complexity":4.0,"expression":"Cl_B + 0.111351624","loss":0.99562246,"metrics":{"blind":{"mae":0.8036202216694587,"max_error":1.681981816756653,"r2":0.7879429856498432,"rmse":0.995019964990434},"train":{"mae":0.7872664960933592,"max_error":2.3365269711791745,"r2":0.7629122485081916,"rmse":0.9978088659218084},"validation":{"mae":0.7039616553993284,"max_error":1.6644331439017526,"r2":0.8068120662266948,"rmse":0.9031230028868932}},"score":1.399152529991828,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.144547466319872,-0.8783719773785005],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":6.0,"expression":"Cl_B - 0.46092096*Cl_F","loss":0.7791905,"metrics":{"blind":{"mae":0.679972712278599,"max_error":1.958324312645644,"r2":0.8313439298169693,"rmse":0.887373514244542},"train":{"mae":0.7204504116861231,"max_error":1.9794475164981187,"r2":0.8144512705922048,"rmse":0.8827176124117947},"validation":{"mae":0.7003986488446098,"max_error":1.936793120277375,"r2":0.8079791532950474,"rmse":0.9003908967059939}},"score":0.12255628461875596,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.409774999631644,-2.673223880676627],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..cd637ab --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_rear_a*(-0.32170123)","deployment_expression_hash":"df521c6ed091031e931433fd5c70296fcbda600feac6fc1663e7201f53cf82a5","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a*(-0.32170123)","fitted_expression_hash":"df521c6ed091031e931433fd5c70296fcbda600feac6fc1663e7201f53cf82a5","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:07:51.593099+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.35046297854472647,"max_error":0.9943481515232799,"r2":0.895292986890374,"rmse":0.4428829077789573},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4017341972044505,"max_error":0.8811577077555598,"r2":0.8719768757382294,"rmse":0.48438860616566376},"train":{"mae":0.35046297854472647,"max_error":0.9943481515232799,"r2":0.895292986890374,"rmse":0.4428829077789573},"validation":{"mae":0.3922792701701595,"max_error":0.8725527036472859,"r2":0.8750802526434391,"rmse":0.47669076490987355}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1559881771479525,2.1512392466023216],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.327756900000000","loss":1.8732772,"metrics":{"blind":{"mae":1.180013022944331,"max_error":2.3285054977661135,"r2":-3.314060581516287e-09,"rmse":1.3537850351587895},"train":{"mae":1.2072909678001023,"max_error":2.413793582128906,"r2":-6.07345751468813e-09,"rmse":1.368677209453178},"validation":{"mae":1.2000467472804344,"max_error":2.3514857109313967,"r2":-0.012048731287051417,"rmse":1.3568189547731617}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3277569,-0.3277569],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_s","loss":1.0143605,"metrics":{"blind":{"mae":0.6466839023132707,"max_error":1.580681887397077,"r2":0.6399040951400572,"rmse":0.8123792080143714},"train":{"mae":0.788108906623936,"max_error":3.2347959647886455,"r2":0.45851021335430886,"rmse":1.0071546660445698},"validation":{"mae":0.707549379468382,"max_error":1.5773957969504409,"r2":0.5734556666119529,"rmse":0.8808526759914559}},"score":0.6134310457075133,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.51456193998456,-0.266213552094996],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s"]},{"complexity":4.0,"expression":"Cd_rear_a*(-0.32170123)","loss":0.19614527,"metrics":{"blind":{"mae":0.4017341972044505,"max_error":0.8811577077555598,"r2":0.8719768757382294,"rmse":0.48438860616566376},"train":{"mae":0.35046297854472647,"max_error":0.9943481515232799,"r2":0.895292986890374,"rmse":0.4428829077789573},"validation":{"mae":0.3922792701701595,"max_error":0.8725527036472859,"r2":0.8750802526434391,"rmse":0.47669076490987355}},"score":1.6431580854838683,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1559881771479525,2.1512392466023216],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..4985755 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_a + Cl_rear_s","deployment_expression_hash":"d2071fee5267d6818ca5d3ab182405137b5051d930395133cfc6f43304b3edb4","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_a + Cl_rear_s","fitted_expression_hash":"d2071fee5267d6818ca5d3ab182405137b5051d930395133cfc6f43304b3edb4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:07:53.454885+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.0621860274113715,7.952745538204908],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":3.1510062,"metrics":{"blind":{"mae":1.7217753697768785,"max_error":2.640393459238112,"r2":-0.10957029550658381,"rmse":1.8521126071029597},"train":{"mae":1.646218115649328,"max_error":2.652620416134596,"r2":0.07737961564528417,"rmse":1.775107325824629},"validation":{"mae":1.6529426879655473,"max_error":2.6520344810560346,"r2":-0.09124931425513227,"rmse":1.8097398061712509}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9981411644257605,5.608937470242381],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":0.8682069,"metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"score":0.6445235295366055,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.0621860274113715,7.952745538204908],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_a - (Cl_F + Cl_rear_s)","loss":0.6494191,"metrics":{"blind":{"mae":0.5709213404554248,"max_error":1.540099618199747,"r2":0.8222535217478513,"rmse":0.7412939905654585},"train":{"mae":0.6219925793692849,"max_error":2.375986222177744,"r2":0.809848872451901,"rmse":0.805865467442032},"validation":{"mae":0.6183931644429835,"max_error":1.5591232478618622,"r2":0.7932462742175872,"rmse":0.7877362283947309}},"score":0.1451758896552589,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3873412497341633,8.939390594605356],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..d5164ff --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s0-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"8.79444826162819e-6*Cd_rear_a**2","deployment_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:07:52.584721+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.073377425040873,"max_error":7.256532547196885,"r2":-3.951112699892538,"rmse":4.5597833203126665},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.488867427309487,"max_error":7.265917377540208,"r2":-4.31576055302082,"rmse":4.981821684698185},"train":{"mae":4.073377425040873,"max_error":7.256532547196885,"r2":-3.951112699892538,"rmse":4.5597833203126665},"validation":{"mae":4.290260326076165,"max_error":7.263034610087799,"r2":-4.359608578790053,"rmse":4.756893651018947}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.79109519551355e-10,0.0003949989174706668],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":3578.158,"metrics":{"blind":{"mae":4.4887424366999635,"max_error":7.265779495239258,"r2":-4.315576497603191,"rmse":4.981735437471774},"train":{"mae":11.617897483986345,"max_error":556.6359458340917,"r2":-851.0674747623143,"rmse":59.81771144087626},"validation":{"mae":4.29014214029745,"max_error":7.262888908387982,"r2":-4.359436145923766,"rmse":4.756817129441646}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.748651609267024e-10,553.1012852563176],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":20.791626,"metrics":{"blind":{"mae":4.488867427309487,"max_error":7.265917377540208,"r2":-4.31576055302082,"rmse":4.981821684698185},"train":{"mae":4.073377425040873,"max_error":7.256532547196885,"r2":-3.951112699892538,"rmse":4.5597833203126665},"validation":{"mae":4.290260326076165,"max_error":7.263034610087799,"r2":-4.359608578790053,"rmse":4.756893651018947}},"score":2.5740265561758813,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.79109519551355e-10,0.0003949989174706668],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..2eb25eb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cl_rear_s - 0.13295394","deployment_expression_hash":"40cd77705d444bdd620b0e3a9e4c4379655b2aec73da37252661e781a977e84f","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_rear_s - 0.13295394","fitted_expression_hash":"40cd77705d444bdd620b0e3a9e4c4379655b2aec73da37252661e781a977e84f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:08:30.497884+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6632170817139045,"max_error":1.7119185402583457,"r2":0.6341472145778903,"rmse":0.8278548878008},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6697613450035291,"max_error":1.6455433796685315,"r2":0.6213154019939058,"rmse":0.8330834928054753},"train":{"mae":0.6632170817139045,"max_error":1.7119185402583457,"r2":0.6341472145778903,"rmse":0.8278548878008},"validation":{"mae":0.7505533131339729,"max_error":1.7043563462387896,"r2":0.5320395506982926,"rmse":0.922626159870372}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4767620079625274,1.803001197014389],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.04679865000000e-8","loss":1.9806321,"metrics":{"blind":{"mae":1.195263706298541,"max_error":2.6562624082340998,"r2":-0.05864227463438443,"rmse":1.3929140680392205},"train":{"mae":1.2206303374595486,"max_error":2.6851811513676447,"r2":-0.05730848511534603,"rmse":1.407349272967417},"validation":{"mae":1.250443079119104,"max_error":2.679242621399383,"r2":-0.12445398415534137,"rmse":1.4301843896868622}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.04679865e-08,1.04679865e-08],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_s","loss":1.0143605,"metrics":{"blind":{"mae":0.6466839023132707,"max_error":1.580681887397077,"r2":0.6399040951400572,"rmse":0.8123792080143714},"train":{"mae":0.788108906623936,"max_error":3.2347959647886455,"r2":0.45851021335430886,"rmse":1.0071546660445698},"validation":{"mae":0.707549379468382,"max_error":1.5773957969504409,"r2":0.5734556666119529,"rmse":0.8808526759914559}},"score":0.669157671515443,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.51456193998456,-0.266213552094996],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s"]},{"complexity":4.0,"expression":"-Cl_rear_s - 0.13295394","loss":0.6853437,"metrics":{"blind":{"mae":0.6697613450035291,"max_error":1.6455433796685315,"r2":0.6213154019939058,"rmse":0.8330834928054753},"train":{"mae":0.6632170817139045,"max_error":1.7119185402583457,"r2":0.6341472145778903,"rmse":0.8278548878008},"validation":{"mae":0.7505533131339729,"max_error":1.7043563462387896,"r2":0.5320395506982926,"rmse":0.922626159870372}},"score":0.3920931793986741,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4767620079625274,1.803001197014389],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_tot - Cl_rear_s - Cl_tot","loss":0.66452235,"metrics":{"blind":{"mae":0.5260507892769966,"max_error":1.4311184668331407,"r2":0.7757831121812975,"rmse":0.641038138255975},"train":{"mae":0.6544337436494909,"max_error":2.4367560686077923,"r2":0.6452621196422264,"rmse":0.8151824433785311},"validation":{"mae":0.5826364151643924,"max_error":1.4712483021430671,"r2":0.718112555692682,"rmse":0.7160758970991353}},"score":0.030851952352494553,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9421760700643063,1.8042904557660222],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s","Cl_tot"]},{"complexity":6.0,"expression":"-Cl_rear_s - Cl_tot - 0.2820885","loss":0.6468627,"metrics":{"blind":{"mae":0.5890430072873242,"max_error":1.3862902861838937,"r2":0.7017489978642873,"rmse":0.7393339752101757},"train":{"mae":0.6525609482242819,"max_error":2.228889913781941,"r2":0.6546893126657019,"rmse":0.8042777314905551},"validation":{"mae":0.6342493951284462,"max_error":1.5266530006011725,"r2":0.6615124915468521,"rmse":0.7846798722754661}},"score":0.026934450118989203,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.053510698042274,3.7243706448754073],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"-Cd_tot + Cd_tot - Cl_rear_s - Cl_tot","loss":0.6348374,"metrics":{"blind":{"mae":0.5424754095192839,"max_error":1.6683787861838937,"r2":0.7321498749630706,"rmse":0.7006411409451148},"train":{"mae":0.6310737695055619,"max_error":2.0221562003716826,"r2":0.6611087250084603,"rmse":0.7967667977520138},"validation":{"mae":0.6307425086986489,"max_error":1.8087415006011724,"r2":0.6472834019177829,"rmse":0.8010029918247763}},"score":0.018765158669362493,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7714221980422735,4.006459144875407],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..58634f8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_a + Cl_rear_s","deployment_expression_hash":"d2071fee5267d6818ca5d3ab182405137b5051d930395133cfc6f43304b3edb4","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_a + Cl_rear_s","fitted_expression_hash":"d2071fee5267d6818ca5d3ab182405137b5051d930395133cfc6f43304b3edb4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:08:32.339579+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.0621860274113715,7.952745538204908],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"4.24590000000000","loss":3.4152784,"metrics":{"blind":{"mae":1.5591707447624203,"max_error":3.2044793716430666,"r2":-0.024063454982418797,"rmse":1.779317340144052},"train":{"mae":1.5778973506394076,"max_error":3.4492556205749514,"r2":-1.6516543688283036e-10,"rmse":1.8480473464291007},"validation":{"mae":1.4972367305266552,"max_error":3.179498349761963,"r2":-0.011121157246504865,"rmse":1.742030466227956}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.2459,4.2459],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":0.8682069,"metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"score":1.3695842410646415,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.0621860274113715,7.952745538204908],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_F + Cl_rear_a - Cl_rear_s","loss":0.6494191,"metrics":{"blind":{"mae":0.5709213404554248,"max_error":1.540099618199747,"r2":0.8222535217478513,"rmse":0.7412939905654585},"train":{"mae":0.6219925793692849,"max_error":2.375986222177744,"r2":0.809848872451901,"rmse":0.805865467442032},"validation":{"mae":0.6183931644429835,"max_error":1.5591232478618622,"r2":0.7932462742175872,"rmse":0.7877362283947309}},"score":0.1451758896552589,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3873412497341633,8.939390594605356],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_a","Cl_rear_s"]},{"complexity":7.0,"expression":"Cd_tot + Cl_rear_a - (Cl_F + Cl_rear_s)","loss":0.64191943,"metrics":{"blind":{"mae":0.5518796480271704,"max_error":1.561237882822752,"r2":0.8349846793983626,"rmse":0.7142530619845925},"train":{"mae":0.6591107667843323,"max_error":2.031525501748547,"r2":0.8120447845760563,"rmse":0.8011987887316682},"validation":{"mae":0.5996228409960914,"max_error":1.6077650617808104,"r2":0.811394223080119,"rmse":0.7523702986654471}},"score":0.005807736814464496,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.441904878243804,6.737221905495971],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_F","Cl_rear_a","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..211eeb6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s1-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"(-Cl_F - 5.1348825)*0.8251871","deployment_expression_hash":"26679f30e109582c980d78991aaa90a00493743b37330e9e79a7baf6ecd68da4","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(-Cl_F - 5.1348825)*0.8251871","fitted_expression_hash":"26679f30e109582c980d78991aaa90a00493743b37330e9e79a7baf6ecd68da4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:08:31.376872+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.46077672733050806,"max_error":1.4287705722232023,"r2":0.9304248046718734,"rmse":0.5405302662383796},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4209465079293853,"max_error":0.9663578109525,"r2":0.9489867863310391,"rmse":0.48803033244288385},"train":{"mae":0.46077672733050806,"max_error":1.4287705722232023,"r2":0.9304248046718734,"rmse":0.5405302662383796},"validation":{"mae":0.43709675526855857,"max_error":0.9430907944547566,"r2":0.9411496285791633,"rmse":0.4984613729515203}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.251210464186306,-0.9321216165922035],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_s","loss":11699.062,"metrics":{"blind":{"mae":109.07122538387776,"max_error":111.93370831012726,"r2":-2548.266710942976,"rmse":109.09707606213765},"train":{"mae":108.13502531839629,"max_error":112.22170972824097,"r2":-2784.8991945393745,"rmse":108.16219658418252},"validation":{"mae":108.88030309860522,"max_error":112.06716847419739,"r2":-2808.183724079844,"rmse":108.90478878142012}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[101.3777107000351,106.10468089580536],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_s"]},{"complexity":2.0,"expression":"-4.07322900000000","loss":4.1993833,"metrics":{"blind":{"mae":1.9941100746393203,"max_error":3.1925504952392574,"r2":-0.03697604119425435,"rmse":2.200340207605013},"train":{"mae":1.8435941525463166,"max_error":3.183053806396484,"r2":-2.4624746686185972e-12,"rmse":2.0492398824348905},"validation":{"mae":1.8414382418782158,"max_error":3.18965990838623,"r2":-0.01114205274671165,"rmse":2.066155443056149}},"score":7.932326265456895,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.073229,-4.073229],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":1.0080215,"metrics":{"blind":{"mae":0.76278423180338,"max_error":1.716776017099619,"r2":0.7969305402212199,"rmse":0.9737058526186907},"train":{"mae":0.7838172165803232,"max_error":2.2251753471791744,"r2":0.759959665401756,"rmse":1.0040027706389638},"validation":{"mae":0.6673623029238138,"max_error":1.7662314400076866,"r2":0.8107381250353262,"rmse":0.8938990472588834}},"score":1.4269481823881316,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.9340963014401495,-3.265129402279854],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_rear_a + Cl_rear_s - Cl_tot","loss":0.6922998,"metrics":{"blind":{"mae":0.5345555526624594,"max_error":1.47508526686579,"r2":0.902285940262134,"rmse":0.675435685855989},"train":{"mae":0.6496265290731217,"max_error":2.5360406197141856,"r2":0.835142519407039,"rmse":0.8320456009544964},"validation":{"mae":0.5137720672124161,"max_error":1.403320170007646,"r2":0.8963246514975095,"rmse":0.661598721420705}},"score":0.18786283948854315,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.6927435323596,-2.8635922935791314],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"(-Cl_F - 5.1348825)*0.8251871","loss":0.292173,"metrics":{"blind":{"mae":0.4209465079293853,"max_error":0.9663578109525,"r2":0.9489867863310391,"rmse":0.48803033244288385},"train":{"mae":0.46077672733050806,"max_error":1.4287705722232023,"r2":0.9304248046718734,"rmse":0.5405302662383796},"validation":{"mae":0.43709675526855857,"max_error":0.9430907944547566,"r2":0.9411496285791633,"rmse":0.4984613729515203}},"score":0.43133650310433824,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.251210464186306,-0.9321216165922035],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_front.json new file mode 100644 index 0000000..d0e3228 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-Cl_rear_s - 0.17571262","deployment_expression_hash":"504c611a92db72d195d49f43cbe4282f40e560402f5290984ede210b9ac69288","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_rear_s - 0.17571262","fitted_expression_hash":"504c611a92db72d195d49f43cbe4282f40e560402f5290984ede210b9ac69288","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:09:08.640971+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.663051355588307,"max_error":1.6691598602583455,"r2":0.6351231593994338,"rmse":0.8267499621910729},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6612096090035291,"max_error":1.6027846996685313,"r2":0.628365519198979,"rmse":0.8252921404424423},"train":{"mae":0.663051355588307,"max_error":1.6691598602583455,"r2":0.6351231593994338,"rmse":0.8267499621910729},"validation":{"mae":0.7428786782621781,"max_error":1.6615976662387895,"r2":0.5424746471203461,"rmse":0.912281298389541}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5195206879625274,1.760242517014389],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.327654060000000","loss":1.8732772,"metrics":{"blind":{"mae":1.180013022944331,"max_error":2.3286083377661133,"r2":-1.783097425267499e-08,"rmse":1.3537850449851796},"train":{"mae":1.2072909678001027,"max_error":2.413690742128906,"r2":-7.807310353769026e-12,"rmse":1.3686772053022196},"validation":{"mae":1.2000546580496645,"max_error":2.3515885509313965,"r2":-0.012065476564588451,"rmse":1.3568301796358}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.32765406,-0.32765406],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_s","loss":1.0143605,"metrics":{"blind":{"mae":0.6466839023132707,"max_error":1.580681887397077,"r2":0.6399040951400572,"rmse":0.8123792080143714},"train":{"mae":0.788108906623936,"max_error":3.2347959647886455,"r2":0.45851021335430886,"rmse":1.0071546660445698},"validation":{"mae":0.707549379468382,"max_error":1.5773957969504409,"r2":0.5734556666119529,"rmse":0.8808526759914559}},"score":0.6134310457075133,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.51456193998456,-0.266213552094996],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s"]},{"complexity":4.0,"expression":"-Cl_rear_s - 0.17571262","loss":0.68351537,"metrics":{"blind":{"mae":0.6612096090035291,"max_error":1.6027846996685313,"r2":0.628365519198979,"rmse":0.8252921404424423},"train":{"mae":0.663051355588307,"max_error":1.6691598602583455,"r2":0.6351231593994338,"rmse":0.8267499621910729},"validation":{"mae":0.7428786782621781,"max_error":1.6615976662387895,"r2":0.5424746471203461,"rmse":0.912281298389541}},"score":0.39476450054094503,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5195206879625274,1.760242517014389],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_tot - Cl_rear_s - Cl_tot","loss":0.66452235,"metrics":{"blind":{"mae":0.5260507892769966,"max_error":1.4311184668331407,"r2":0.7757831121812975,"rmse":0.641038138255975},"train":{"mae":0.6544337436494909,"max_error":2.4367560686077923,"r2":0.6452621196422264,"rmse":0.8151824433785311},"validation":{"mae":0.5826364151643924,"max_error":1.4712483021430671,"r2":0.718112555692682,"rmse":0.7160758970991353}},"score":0.02818063121022353,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9421760700643063,1.8042904557660222],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s","Cl_tot"]},{"complexity":6.0,"expression":"-Cl_rear_s - Cl_tot - 0.015358614","loss":0.6313955,"metrics":{"blind":{"mae":0.5409395481192838,"max_error":1.6530201721838937,"r2":0.7327299069299735,"rmse":0.6998821073060408},"train":{"mae":0.6305531385225114,"max_error":2.0067975863716825,"r2":0.6629460764486488,"rmse":0.7946039650474442},"validation":{"mae":0.6279858343909565,"max_error":1.7933828866011723,"r2":0.6503101872162111,"rmse":0.7975587424964259}},"score":0.05113606282001992,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7867808120422737,3.991100530875407],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_lower.json new file mode 100644 index 0000000..3775759 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_a - (Cl_F + Cl_rear_s)","deployment_expression_hash":"7123616374ced32c5853059c0a39692381220b176bf9da2bbde4cc5774f32bb3","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_a - (Cl_F + Cl_rear_s)","fitted_expression_hash":"7123616374ced32c5853059c0a39692381220b176bf9da2bbde4cc5774f32bb3","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:09:10.022847+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6219925793692849,"max_error":2.375986222177744,"r2":0.809848872451901,"rmse":0.805865467442032},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5709213404554248,"max_error":1.540099618199747,"r2":0.8222535217478513,"rmse":0.7412939905654585},"train":{"mae":0.6219925793692849,"max_error":2.375986222177744,"r2":0.809848872451901,"rmse":0.805865467442032},"validation":{"mae":0.6183931644429835,"max_error":1.5591232478618622,"r2":0.7932462742175872,"rmse":0.7877362283947309}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3873412497341633,8.939390594605356],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":3.1510062,"metrics":{"blind":{"mae":1.7217753697768785,"max_error":2.640393459238112,"r2":-0.10957029550658381,"rmse":1.8521126071029597},"train":{"mae":1.646218115649328,"max_error":2.652620416134596,"r2":0.07737961564528417,"rmse":1.775107325824629},"validation":{"mae":1.6529426879655473,"max_error":2.6520344810560346,"r2":-0.09124931425513227,"rmse":1.8097398061712509}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9981411644257605,5.608937470242381],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":0.8682069,"metrics":{"blind":{"mae":0.868871595012024,"max_error":1.6891211345791817,"r2":0.6797913142559153,"rmse":0.9949620844274529},"train":{"mae":0.7936711047176208,"max_error":1.7444764822721481,"r2":0.7457874132025045,"rmse":0.931776211179547},"validation":{"mae":0.8574613564862654,"max_error":1.662232369184494,"r2":0.674465409292653,"rmse":0.9884454770024312}},"score":0.6445235295366055,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.0621860274113715,7.952745538204908],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_a - (Cl_F + Cl_rear_s)","loss":0.6494191,"metrics":{"blind":{"mae":0.5709213404554248,"max_error":1.540099618199747,"r2":0.8222535217478513,"rmse":0.7412939905654585},"train":{"mae":0.6219925793692849,"max_error":2.375986222177744,"r2":0.809848872451901,"rmse":0.805865467442032},"validation":{"mae":0.6183931644429835,"max_error":1.5591232478618622,"r2":0.7932462742175872,"rmse":0.7877362283947309}},"score":0.1451758896552589,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3873412497341633,8.939390594605356],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_a","Cl_rear_s"]},{"complexity":7.0,"expression":"-0.66069602279041*Cl_F + Cl_rear_a","loss":0.50063825,"metrics":{"blind":{"mae":0.5635636043260199,"max_error":1.1868972356298713,"r2":0.8524215254689624,"rmse":0.6754628771234146},"train":{"mae":0.5944526864733084,"max_error":1.5062844092531282,"r2":0.8534122089374888,"rmse":0.7075579153711145},"validation":{"mae":0.5873891690392568,"max_error":1.1871235476925017,"r2":0.8331582093637186,"rmse":0.7076305404856617}},"score":0.13009724330609923,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.1957646370980246,5.644423174025139],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_rear_a"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_upper.json new file mode 100644 index 0000000..300a25f --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re100-symmetry-s2-20260718/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_rear_a + Cl_rear_s","deployment_expression_hash":"08769828a30f764dd476df830d8e531992fb2798a905e170178e946cbf75e413","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_rear_a + Cl_rear_s","fitted_expression_hash":"08769828a30f764dd476df830d8e531992fb2798a905e170178e946cbf75e413","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id article-discovery-v2-karman_re100-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:09:09.344770+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7838172165803232,"max_error":2.2251753471791744,"r2":0.759959665401756,"rmse":1.0040027706389638},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.76278423180338,"max_error":1.716776017099619,"r2":0.7969305402212199,"rmse":0.9737058526186907},"train":{"mae":0.7838172165803232,"max_error":2.2251753471791744,"r2":0.759959665401756,"rmse":1.0040027706389638},"validation":{"mae":0.6673623029238138,"max_error":1.7662314400076866,"r2":0.8107381250353262,"rmse":0.8938990472588834}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.9340963014401495,-3.265129402279854],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":34.481194,"metrics":{"blind":{"mae":5.651785489381291,"max_error":8.157763626426458,"r2":-6.766107459522475,"rmse":6.021534396086218},"train":{"mae":5.444793993686706,"max_error":8.996288612484932,"r2":-7.211012900688207,"rmse":5.872069225167548},"validation":{"mae":5.71126135583155,"max_error":8.12537245824933,"r2":-7.810689725436289,"rmse":6.099045300137728}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2623434886336327,5.74492197483778],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-4.07322900000000","loss":4.1993833,"metrics":{"blind":{"mae":1.9941100746393203,"max_error":3.1925504952392574,"r2":-0.03697604119425435,"rmse":2.200340207605013},"train":{"mae":1.8435941525463166,"max_error":3.183053806396484,"r2":-2.4624746686185972e-12,"rmse":2.0492398824348905},"validation":{"mae":1.8414382418782158,"max_error":3.18965990838623,"r2":-0.01114205274671165,"rmse":2.066155443056149}},"score":2.105476392791312,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.073229,-4.073229],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":1.0080215,"metrics":{"blind":{"mae":0.76278423180338,"max_error":1.716776017099619,"r2":0.7969305402212199,"rmse":0.9737058526186907},"train":{"mae":0.7838172165803232,"max_error":2.2251753471791744,"r2":0.759959665401756,"rmse":1.0040027706389638},"validation":{"mae":0.6673623029238138,"max_error":1.7662314400076866,"r2":0.8107381250353262,"rmse":0.8938990472588834}},"score":1.4269481823881316,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.9340963014401495,-3.265129402279854],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":5.0,"expression":"-Cl_rear_a + Cl_rear_s - Cl_tot","loss":0.6922998,"metrics":{"blind":{"mae":0.5345555526624594,"max_error":1.47508526686579,"r2":0.902285940262134,"rmse":0.675435685855989},"train":{"mae":0.6496265290731217,"max_error":2.5360406197141856,"r2":0.835142519407039,"rmse":0.8320456009544964},"validation":{"mae":0.5137720672124161,"max_error":1.403320170007646,"r2":0.8963246514975095,"rmse":0.661598721420705}},"score":0.18786283948854315,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.6927435323596,-2.8635922935791314],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re100-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..9de4ea2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"0.0399635363137924*v_hat_C","deployment_expression_hash":"310e229c954b4b729883d637d33a320804028733db5a01b804380bfdf8a0998c","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"0.0399635363137924*v_hat_C","fitted_expression_hash":"310e229c954b4b729883d637d33a320804028733db5a01b804380bfdf8a0998c","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:09:46.545423+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6913736879664928,"max_error":2.0514581548553164,"r2":0.855467428177445,"rmse":0.8499682575055779},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.6684497115993138,"max_error":1.780906184864774,"r2":0.8909993982275927,"rmse":0.8348762170210479},"train":{"mae":0.6913736879664928,"max_error":2.0514581548553164,"r2":0.855467428177445,"rmse":0.8499682575055779},"validation":{"mae":0.6080797267932841,"max_error":2.0106636184520483,"r2":0.8800318251327308,"rmse":0.7819251576469644}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.909498790152749,3.470332406982024],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_T","loss":32.459534,"metrics":{"blind":{"mae":4.7806623067750476,"max_error":10.960537321865559,"r2":-4.3905167706989685,"rmse":5.8711454895536415},"train":{"mae":4.778367838215565,"max_error":13.117907747626305,"r2":-5.493855776695942,"rmse":5.697327192145364},"validation":{"mae":4.608524857705327,"max_error":11.772722974419594,"r2":-4.959892418533547,"rmse":5.5112659745601515}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7661841809749603,10.05167979747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":2.0,"expression":"0.537584070000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.6141543424456786,"r2":-0.0035947205333335397,"rmse":2.5333011820182514},"train":{"mae":2.049670043578998,"max_error":3.797780040535278,"r2":-2.1243562464690058e-10,"rmse":2.2357325091320024},"validation":{"mae":2.1364156383250807,"max_error":3.23141837480957,"r2":-0.009003107994261406,"rmse":2.267662469629004}},"score":1.8708565384877123,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.53758407,0.53758407],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_T*(-0.44916344)","loss":2.0832195,"metrics":{"blind":{"mae":1.3096708514529893,"max_error":3.013763500495851,"r2":0.6211168617649865,"rmse":1.5565399822268258},"train":{"mae":1.0956631307694424,"max_error":3.8614588545864823,"r2":0.5832309781093712,"rmse":1.4433363758869064},"validation":{"mae":1.3164281149370458,"max_error":3.546802176913954,"r2":0.5315026163168115,"rmse":1.545203721401377}},"score":0.43761156688883956,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.30921880229041,4.718008122380003],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T"]},{"complexity":5.0,"expression":"0.0399635363137924*v_hat_C","loss":0.722446,"metrics":{"blind":{"mae":0.6684497115993138,"max_error":1.780906184864774,"r2":0.8909993982275927,"rmse":0.8348762170210479},"train":{"mae":0.6913736879664928,"max_error":2.0514581548553164,"r2":0.855467428177445,"rmse":0.8499682575055779},"validation":{"mae":0.6080797267932841,"max_error":2.0106636184520483,"r2":0.8800318251327308,"rmse":0.7819251576469644}},"score":1.0590271358605692,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.909498790152749,3.470332406982024],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_C"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..5e3590d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_T)*0.7221497","deployment_expression_hash":"a611abf4ddc242b1676ee69255ec3346b1184bf40c8ee300ed4399bbdf7d6a0b","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(-Cl_F + Cl_T)*0.7221497","fitted_expression_hash":"a611abf4ddc242b1676ee69255ec3346b1184bf40c8ee300ed4399bbdf7d6a0b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:09:48.122179+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.6477295144150614,"max_error":5.191789545782516,"r2":0.7534338397079867,"rmse":2.057409309200101},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.0051955745724888,"max_error":4.089586757217883,"r2":0.7901559413285015,"rmse":2.258450348247221},"train":{"mae":1.6477295144150614,"max_error":5.191789545782516,"r2":0.7534338397079867,"rmse":2.057409309200101},"validation":{"mae":1.3534420527332343,"max_error":4.034775429836521,"r2":0.8378767125980984,"rmse":1.7250837701497157}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.789302511202497,4.233697484609904],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_hat_B","loss":935.264,"metrics":{"blind":{"mae":30.41858489769511,"max_error":47.71058189868927,"r2":-43.86323260076358,"rmse":33.02231303446685},"train":{"mae":27.827328515073315,"max_error":51.16220510005951,"r2":-53.47864298254769,"rmse":30.58208598854008},"validation":{"mae":28.78901490690306,"max_error":44.84466791152954,"r2":-51.00250178645847,"rmse":30.895811544139207}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-42.29918420314789,46.549493074417114],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]},{"complexity":2.0,"expression":"2.98670000000000","loss":17.167532,"metrics":{"blind":{"mae":4.194987813302278,"max_error":8.352806149291993,"r2":-5.366328641454032e-07,"rmse":4.930174883377342},"train":{"mae":3.3187770254597817,"max_error":9.013300000000001,"r2":-6.312173006506328e-11,"rmse":4.14337235958326},"validation":{"mae":3.6407172671012384,"max_error":9.013300000000001,"r2":-0.009094782499435405,"rmse":4.303813751808403}},"score":3.997808916877631,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9867,2.9867],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_F + Cl_T","loss":7.871448,"metrics":{"blind":{"mae":2.0370678328035865,"max_error":4.608404110185802,"r2":0.7712516335499242,"rmse":2.3579859281314874},"train":{"mae":2.1521556351118782,"max_error":7.516789857298136,"r2":0.5414922471091241,"rmse":2.8056100353457007},"validation":{"mae":1.8507355690947942,"max_error":4.215013526380062,"r2":0.7387148476628552,"rmse":2.190003728754536}},"score":0.7797778901580684,"static_safety":{"finite":true,"grid_size":9,"observed_range":[5.247253458946943,5.862631369382143],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]},{"complexity":4.0,"expression":"Cl_T - 1*1.7105204","loss":7.6759605,"metrics":{"blind":{"mae":2.970297511391982,"max_error":5.910767339435601,"r2":0.5088622141865822,"rmse":3.455125941649745},"train":{"mae":2.2283320436720886,"max_error":6.081739610326672,"r2":0.5528792113116066,"rmse":2.770552574764245},"validation":{"mae":2.595014475922844,"max_error":6.206671708929157,"r2":0.4441205928503307,"rmse":3.1943152981850944}},"score":0.025148603117188285,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4767045809749604,8.34115939747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":5.0,"expression":"0.127993484073533*Cl_T**2","loss":6.94977,"metrics":{"blind":{"mae":2.7871256869831402,"max_error":6.002885822943536,"r2":0.5710728816848204,"rmse":3.228895284268075},"train":{"mae":2.1607406123080892,"max_error":5.610008348878978,"r2":0.5951794303063229,"rmse":2.6362418516136885},"validation":{"mae":2.623641336245957,"max_error":6.043489145029072,"r2":0.46582715710496614,"rmse":3.131326771364643}},"score":0.09938486671896739,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0439597736198047,12.931983799227734],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_T)*0.7221497","loss":4.232933,"metrics":{"blind":{"mae":2.0051955745724888,"max_error":4.089586757217883,"r2":0.7901559413285015,"rmse":2.258450348247221},"train":{"mae":1.6477295144150614,"max_error":5.191789545782516,"r2":0.7534338397079867,"rmse":2.057409309200101},"validation":{"mae":1.3534420527332343,"max_error":4.034775429836521,"r2":0.8378767125980984,"rmse":1.7250837701497157}},"score":0.49581343210834994,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.789302511202497,4.233697484609904],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..0685e76 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s0-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 3.835137","deployment_expression_hash":"10b1bb06ef8b75c29e02c0b25bc215e692e08464cc7efea47ad838e973d97045","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 3.835137","fitted_expression_hash":"10b1bb06ef8b75c29e02c0b25bc215e692e08464cc7efea47ad838e973d97045","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:09:47.546556+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7644764718324455,"max_error":5.894642371991754,"r2":0.5017708330989927,"rmse":2.2056231555264443},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.5971283941938996,"max_error":4.669538779491663,"r2":0.6980891415245511,"rmse":1.9741788135110265},"train":{"mae":1.7644764718324455,"max_error":5.894642371991754,"r2":0.5017708330989927,"rmse":2.2056231555264443},"validation":{"mae":1.459480996470102,"max_error":4.42589107931602,"r2":0.6894131968447483,"rmse":1.8859636712405994}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.639563338523626,2.7936785503571033],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.74074700000000","loss":9.764127,"metrics":{"blind":{"mae":2.998637965255642,"max_error":7.018220926544189,"r2":-0.0021879820019539142,"rmse":3.5968449380025955},"train":{"mae":2.5186205523618885,"max_error":7.740747,"r2":-1.1349809980742975e-11,"rmse":3.124760517483303},"validation":{"mae":2.8484629627620994,"max_error":7.534225727340698,"r2":-0.0010187858266368366,"rmse":3.3858127603636805}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.740747,-3.740747],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_F - 3.835137","loss":4.864773,"metrics":{"blind":{"mae":1.5971283941938996,"max_error":4.669538779491663,"r2":0.6980891415245511,"rmse":1.9741788135110265},"train":{"mae":1.7644764718324455,"max_error":5.894642371991754,"r2":0.5017708330989927,"rmse":2.2056231555264443},"validation":{"mae":1.459480996470102,"max_error":4.42589107931602,"r2":0.6894131968447483,"rmse":1.8859636712405994}},"score":0.3483475523380613,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.639563338523626,2.7936785503571033],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..84834c4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"v_hat_B*0.06050576","deployment_expression_hash":"5ecd4062021ba940f11b5b9177ebca7615645fd9fab514615140ce2579668ae0","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"v_hat_B*0.06050576","fitted_expression_hash":"5ecd4062021ba940f11b5b9177ebca7615645fd9fab514615140ce2579668ae0","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:10:23.721100+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7788919106141011,"max_error":2.3582454585232737,"r2":0.8199076856271778,"rmse":0.9487841728327023},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.8549838953790576,"max_error":2.3749211310019493,"r2":0.8205343668529953,"rmse":1.0712683878788072},"train":{"mae":0.7788919106141011,"max_error":2.3582454585232737,"r2":0.8199076856271778,"rmse":0.9487841728327023},"validation":{"mae":0.6690514632007147,"max_error":2.3052639545699356,"r2":0.8410448313521403,"rmse":0.9000559091599221}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.559344287591457,2.816512456082344],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":10.777925,"metrics":{"blind":{"mae":3.5525628746196163,"max_error":8.509316250681877,"r2":-1.7044867821496967,"rmse":4.158628000209527},"train":{"mae":2.78990506720633,"max_error":7.856997657567263,"r2":-1.1562315308800346,"rmse":3.282974716097005},"validation":{"mae":3.0647510544643946,"max_error":7.6040208786726,"r2":-1.4904177655001756,"rmse":3.5626098418254135}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.8385177720338106,7.871423847973347],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"0.537585000000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.6141552724456787,"r2":-0.0035947646333955863,"rmse":2.5333012376775406},"train":{"mae":2.0496700120535745,"max_error":3.7977809705352783,"r2":-2.2473467531369806e-10,"rmse":2.235732509145751},"validation":{"mae":2.1364155667866194,"max_error":3.2314193048095703,"r2":-0.009003029817788777,"rmse":2.267662381780981}},"score":0.7683623935026234,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.537585,0.537585],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"v_hat_B*0.06050576","loss":0.90019137,"metrics":{"blind":{"mae":0.8549838953790576,"max_error":2.3749211310019493,"r2":0.8205343668529953,"rmse":1.0712683878788072},"train":{"mae":0.7788919106141011,"max_error":2.3582454585232737,"r2":0.8199076856271778,"rmse":0.9487841728327023},"validation":{"mae":0.6690514632007147,"max_error":2.3052639545699356,"r2":0.8410448313521403,"rmse":0.9000559091599221}},"score":0.8571427861464082,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.559344287591457,2.816512456082344],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]},{"complexity":5.0,"expression":"v_hat_B*0.0612489984646225","loss":0.88252026,"metrics":{"blind":{"mae":0.8411887202912804,"max_error":2.364313036978733,"r2":0.8246117484478147,"rmse":1.059029093294394},"train":{"mae":0.7713126856039264,"max_error":2.344621632518068,"r2":0.82344296945152,"rmse":0.9394255111223344},"validation":{"mae":0.6557283745990404,"max_error":2.3027620287910056,"r2":0.8451081614314835,"rmse":0.888477487272526}},"score":0.01982562800336659,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5907826683133894,2.8511098298439297],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]},{"complexity":6.0,"expression":"(v_hat_B + v_hat_B)*0.03859856","loss":0.71514493,"metrics":{"blind":{"mae":0.6870863722079728,"max_error":2.2855358279093503,"r2":0.8753329866213144,"rmse":0.8928601075895004},"train":{"mae":0.7040052357566163,"max_error":2.052286879609108,"r2":0.8569280778486466,"rmse":0.8456624513378407},"validation":{"mae":0.5497956884754169,"max_error":2.249076679748774,"r2":0.8876799859057941,"rmse":0.756590240852266}},"score":0.21029652459703504,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.2653751988325115,3.5934868028049465],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..fbcd095 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_T)*0.802298","deployment_expression_hash":"2d2685e507120f3aa17bfaf9e710e8b24891f233f3ad91b84cc5465a9bb8df20","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(-Cl_F + Cl_T)*0.802298","fitted_expression_hash":"2d2685e507120f3aa17bfaf9e710e8b24891f233f3ad91b84cc5465a9bb8df20","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:10:25.391529+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.6296739970194276,"max_error":5.862455809117295,"r2":0.7323176985708051,"rmse":2.1436989404425},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.824305976823742,"max_error":4.099529607424047,"r2":0.8111907028243428,"rmse":2.142268471329624},"train":{"mae":1.6296739970194276,"max_error":5.862455809117295,"r2":0.7323176985708051,"rmse":2.1436989404425},"validation":{"mae":1.2268610807447118,"max_error":4.05320819032751,"r2":0.8470926942785612,"rmse":1.675334787700032}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.209860955606215,4.703577422392555],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_T","loss":10.601864,"metrics":{"blind":{"mae":3.007898118025332,"max_error":7.5319707822054625,"r2":0.4366542488808024,"rmse":3.7004089261568374},"train":{"mae":2.7252668787999537,"max_error":7.180802566930652,"r2":0.38244691943932074,"rmse":3.256050340782676},"validation":{"mae":2.723462588492578,"max_error":7.917192108929157,"r2":0.3979511337315552,"rmse":3.324324114962916}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7661841809749603,10.05167979747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":3.0,"expression":"-Cl_F + Cl_T","loss":7.871448,"metrics":{"blind":{"mae":2.0370678328035865,"max_error":4.608404110185802,"r2":0.7712516335499242,"rmse":2.3579859281314874},"train":{"mae":2.1521556351118782,"max_error":7.516789857298136,"r2":0.5414922471091241,"rmse":2.8056100353457007},"validation":{"mae":1.8507355690947942,"max_error":4.215013526380062,"r2":0.7387148476628552,"rmse":2.190003728754536}},"score":0.14889389968745922,"static_safety":{"finite":true,"grid_size":9,"observed_range":[5.247253458946943,5.862631369382143],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]},{"complexity":4.0,"expression":"Cl_T - 1.7105405","loss":7.675961,"metrics":{"blind":{"mae":2.970297511391982,"max_error":5.910787439435602,"r2":0.5088616481819758,"rmse":3.4551279325540203},"train":{"mae":2.2283310216381906,"max_error":6.081759710326672,"r2":0.5528792113032777,"rmse":2.7705525747900492},"validation":{"mae":2.5950160220766896,"max_error":6.206651608929157,"r2":0.44411926230699683,"rmse":3.194319121111729}},"score":0.025148537978762573,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4767246809749603,8.34113929747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":5.0,"expression":"Cl_T**2*0.12801749","loss":6.9497695,"metrics":{"blind":{"mae":2.78694457629302,"max_error":6.002694677321016,"r2":0.5711041787028159,"rmse":3.228777482626542},"train":{"mae":2.160711372083484,"max_error":5.609488535788492,"r2":0.5951794700316595,"rmse":2.6362417222655212},"validation":{"mae":2.623732170833035,"max_error":6.044374117696717,"r2":0.4658227058012948,"rmse":3.1313398181317162}},"score":0.09938500380222266,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0439680185324318,12.934409268417856],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_T)*0.802298","loss":4.5954456,"metrics":{"blind":{"mae":1.824305976823742,"max_error":4.099529607424047,"r2":0.8111907028243428,"rmse":2.142268471329624},"train":{"mae":1.6296739970194276,"max_error":5.862455809117295,"r2":0.7323176985708051,"rmse":2.1436989404425},"validation":{"mae":1.2268610807447118,"max_error":4.05320819032751,"r2":0.8470926942785612,"rmse":1.675334787700032}},"score":0.41364276748041057,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.209860955606215,4.703577422392555],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]},{"complexity":7.0,"expression":"(-Cl_F + Cl_T)*0.69711528531649","loss":4.2338753,"metrics":{"blind":{"mae":2.075480755656199,"max_error":4.086481096396667,"r2":0.7791839781721417,"rmse":2.3167410773634285},"train":{"mae":1.661619773158796,"max_error":4.982306158729229,"r2":0.7533789650019348,"rmse":2.0576382405547036},"validation":{"mae":1.4248158782538425,"max_error":4.033569886815005,"r2":0.828713184051983,"rmse":1.7731662511637902}},"score":0.0819480058545194,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.657940592161738,4.086929939772237],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..622e59d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s1-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_B + 1.4663798","deployment_expression_hash":"682b85241b05494cef158f4605da414d41ebb7473d0bfe1e5f444527b2b0a619","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_B + 1.4663798","fitted_expression_hash":"682b85241b05494cef158f4605da414d41ebb7473d0bfe1e5f444527b2b0a619","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:10:24.556925+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.2021294305265804,"max_error":6.309976833752584,"r2":0.275520883814676,"rmse":2.659681754450053},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4780500723168957,"max_error":5.402269719979953,"r2":0.3643289137130613,"rmse":2.8645957893887553},"train":{"mae":2.2021294305265804,"max_error":6.309976833752584,"r2":0.275520883814676,"rmse":2.659681754450053},"validation":{"mae":2.532532788261515,"max_error":5.383991918406677,"r2":0.2576609027534701,"rmse":2.9157010329789568}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.046961254320335,-0.2568355331860901],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_hat_B","loss":10982.676,"metrics":{"blind":{"mae":97.0373657003045,"max_error":123.00970029830933,"r2":-741.5972763296515,"rmse":97.9092663419157},"train":{"mae":103.75223441099969,"max_error":133.1940574645996,"r2":-1123.7983252662523,"rmse":104.79825928886983},"validation":{"mae":100.25041894729321,"max_error":125.90315866470337,"r2":-892.5760618436993,"rmse":101.15971251044529}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[66.10040068626404,134.5365285873413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_hat_B"]},{"complexity":2.0,"expression":"-3.74075580000000","loss":9.764127,"metrics":{"blind":{"mae":2.9986353252556417,"max_error":7.01822972654419,"r2":-0.0021877528750697817,"rmse":3.596844526835262},"train":{"mae":2.5186181659212106,"max_error":7.7407558000000005,"r2":-3.825628702713857e-11,"rmse":3.1247605175253406},"validation":{"mae":2.848460480710817,"max_error":7.534234527340699,"r2":-0.001018951835005888,"rmse":3.385813041114271}},"score":7.025359241806151,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7407558,-3.7407558],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_B + 1.4663798","loss":7.0739064,"metrics":{"blind":{"mae":2.4780500723168957,"max_error":5.402269719979953,"r2":0.3643289137130613,"rmse":2.8645957893887553},"train":{"mae":2.2021294305265804,"max_error":6.309976833752584,"r2":0.275520883814676,"rmse":2.659681754450053},"validation":{"mae":2.532532788261515,"max_error":5.383991918406677,"r2":0.2576609027534701,"rmse":2.9157010329789568}},"score":0.16115115013344722,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.046961254320335,-0.2568355331860901],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":6.0,"expression":"(Cl_B - Cl_F)*0.47073436","loss":5.9092965,"metrics":{"blind":{"mae":2.1859227262958316,"max_error":5.602987833155268,"r2":0.4574045313591073,"rmse":2.6465810684210593},"train":{"mae":1.976423633414863,"max_error":5.733730592206279,"r2":0.39479527355593724,"rmse":2.4309044801532353},"validation":{"mae":2.2047578933771113,"max_error":5.658346907794871,"r2":0.38547429271222944,"rmse":2.6528448492777077}},"score":0.08994303517193385,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0727852246416036,-1.82857962701181],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..f65a232 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"(v_hat_C + 16.745419)*0.03420825","deployment_expression_hash":"d5163c34d14deab1a79ce7d871d334a9d974f425afa956ad823e88cc2b7e8ec6","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(v_hat_C + 16.745419)*0.03420825","fitted_expression_hash":"d5163c34d14deab1a79ce7d871d334a9d974f425afa956ad823e88cc2b7e8ec6","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:11:04.398511+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.42811254711443447,"max_error":1.0347549468854478,"r2":0.949353221289663,"rmse":0.5031480059126261},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.44382568927398214,"max_error":1.0144669332256504,"r2":0.9570368515374358,"rmse":0.5241501227657581},"train":{"mae":0.42811254711443447,"max_error":1.0347549468854478,"r2":0.949353221289663,"rmse":0.5031480059126261},"validation":{"mae":0.4331757414929777,"max_error":0.9187665063345842,"r2":0.9508235148239786,"rmse":0.5006231204367834}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7736469436774067,3.5433893808146903],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_hat_T","loss":10279.813,"metrics":{"blind":{"mae":98.45876452624798,"max_error":124.28035372495651,"r2":-1594.2449505631478,"rmse":100.99999006506003},"train":{"mae":99.00021959771797,"max_error":140.03689694404602,"r2":-2055.580132476354,"rmse":101.38942492403635},"validation":{"mae":86.56880200635165,"max_error":129.5477851331234,"r2":-1641.3280099624665,"rmse":91.48757377472376}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[32.61740505695343,141.26019477844238],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_hat_T"]},{"complexity":2.0,"expression":"0.537587050000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.6141573224456787,"r2":-0.0035948618441652425,"rmse":2.533301360368574},"train":{"mae":2.049669942562049,"max_error":3.7977830205352783,"r2":-2.530671228129222e-10,"rmse":2.235732509177423},"validation":{"mae":2.1364154090943117,"max_error":3.2314213548095703,"r2":-0.009002857494505134,"rmse":2.267662188138825}},"score":7.628799680817165,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.53758705,0.53758705],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"v_hat_C*0.034062605","loss":0.58120507,"metrics":{"blind":{"mae":0.6282085230530006,"max_error":1.231549599102408,"r2":0.9171501743355234,"rmse":0.7278693654721722},"train":{"mae":0.6278562244055106,"max_error":1.5963536754277352,"r2":0.8837240936763684,"rmse":0.7623680872594811},"validation":{"mae":0.5559275382313629,"max_error":1.4784623554070295,"r2":0.903565522010711,"rmse":0.701048924563357}},"score":1.075894645679039,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.332230461071372,2.957910457912386],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_C"]},{"complexity":6.0,"expression":"0.034062605*(Cd_B + v_hat_C)","loss":0.5286795,"metrics":{"blind":{"mae":0.6103343279878001,"max_error":1.2207801963151406,"r2":0.9213472978553889,"rmse":0.7091930412125264},"train":{"mae":0.6086945272301614,"max_error":1.5395797352823846,"r2":0.894232372262359,"rmse":0.7271034806146198},"validation":{"mae":0.552573207482894,"max_error":1.4531977802013443,"r2":0.9057697068493518,"rmse":0.6929907401751555}},"score":0.04736063342582187,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.701223010036681,3.2712935051560033],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B","v_hat_C"]},{"complexity":7.0,"expression":"(v_hat_C + 16.745419)*0.03420825","loss":0.25315788,"metrics":{"blind":{"mae":0.44382568927398214,"max_error":1.0144669332256504,"r2":0.9570368515374358,"rmse":0.5241501227657581},"train":{"mae":0.42811254711443447,"max_error":1.0347549468854478,"r2":0.949353221289663,"rmse":0.5031480059126261},"validation":{"mae":0.4331757414929777,"max_error":0.9187665063345842,"r2":0.9508235148239786,"rmse":0.5006231204367834}},"score":0.7363690624161687,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7736469436774067,3.5433893808146903],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_C"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..7fdc6fb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(-Cl_F + Cl_T)*0.66783756","deployment_expression_hash":"0ea55d0a3d3665d2ad943187e63ee9d9f911a2abe12286f029521cb97cfcfcef","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(-Cl_F + Cl_T)*0.66783756","fitted_expression_hash":"0ea55d0a3d3665d2ad943187e63ee9d9f911a2abe12286f029521cb97cfcfcef","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:11:06.190529+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.6887483928090667,"max_error":4.737315527150613,"r2":0.7492986529864394,"rmse":2.0745900863367845},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.1658243443726426,"max_error":4.082849028876843,"r2":0.7636941489894997,"rmse":2.396621471397061},"train":{"mae":1.6887483928090667,"max_error":4.737315527150613,"r2":0.7492986529864394,"rmse":2.0745900863367845},"validation":{"mae":1.5124168374243323,"max_error":4.032160005342345,"r2":0.8142011011172448,"rmse":1.8467540346290523}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.504312946724687,3.9152854289076298],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_T","loss":10.601864,"metrics":{"blind":{"mae":3.007898118025332,"max_error":7.5319707822054625,"r2":0.4366542488808024,"rmse":3.7004089261568374},"train":{"mae":2.7252668787999537,"max_error":7.180802566930652,"r2":0.38244691943932074,"rmse":3.256050340782676},"validation":{"mae":2.723462588492578,"max_error":7.917192108929157,"r2":0.3979511337315552,"rmse":3.324324114962916}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7661841809749603,10.05167979747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":3.0,"expression":"-Cl_F + Cl_T","loss":7.871448,"metrics":{"blind":{"mae":2.0370678328035865,"max_error":4.608404110185802,"r2":0.7712516335499242,"rmse":2.3579859281314874},"train":{"mae":2.1521556351118782,"max_error":7.516789857298136,"r2":0.5414922471091241,"rmse":2.8056100353457007},"validation":{"mae":1.8507355690947942,"max_error":4.215013526380062,"r2":0.7387148476628552,"rmse":2.190003728754536}},"score":0.14889389968745922,"static_safety":{"finite":true,"grid_size":9,"observed_range":[5.247253458946943,5.862631369382143],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]},{"complexity":4.0,"expression":"Cl_T - 1*1.6451899","loss":7.68023,"metrics":{"blind":{"mae":2.970297511391982,"max_error":5.886780882205462,"r2":0.5105262368689646,"rmse":3.4492678237655716},"train":{"mae":2.2346544876386214,"max_error":6.016409110326672,"r2":0.5526305487776446,"rmse":2.7713228776462864},"validation":{"mae":2.589989052845921,"max_error":6.272002208929157,"r2":0.44821263300802283,"rmse":3.1825362945897067}},"score":0.024592540712256257,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4113740809749604,8.40648989747057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":5.0,"expression":"Cl_T**2*0.12801841","loss":6.9497695,"metrics":{"blind":{"mae":2.7869376354305153,"max_error":6.002687351881068,"r2":0.5711053770450999,"rmse":3.2287729719935476},"train":{"mae":2.160710251484924,"max_error":5.609468614539299,"r2":0.5951794699941918,"rmse":2.6362417223875183},"validation":{"mae":2.623735651965923,"max_error":6.044408033273995,"r2":0.46582253364601744,"rmse":3.131340322717588}},"score":0.09994100106872897,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0439683345093897,12.934502221783266],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":6.0,"expression":"(-Cl_F + Cl_T)*0.66783756","loss":4.303924,"metrics":{"blind":{"mae":2.1658243443726426,"max_error":4.082849028876843,"r2":0.7636941489894997,"rmse":2.396621471397061},"train":{"mae":1.6887483928090667,"max_error":4.737315527150613,"r2":0.7492986529864394,"rmse":2.0745900863367845},"validation":{"mae":1.5124168374243323,"max_error":4.032160005342345,"r2":0.8142011011172448,"rmse":1.8467540346290523}},"score":0.4791813288480745,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.504312946724687,3.9152854289076298],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F","Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..55c1ee8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-raw_complete-s2-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_B + 1.4638376","deployment_expression_hash":"90741a931cef62032644c52e4c1798fbcc35b522ea506675bf70ca8d80f4ef2a","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_B + 1.4638376","fitted_expression_hash":"90741a931cef62032644c52e4c1798fbcc35b522ea506675bf70ca8d80f4ef2a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:11:05.284754+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.201913989848613,"max_error":6.312519033752585,"r2":0.27552020762190943,"rmse":2.659682995657083},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.4777958523168957,"max_error":5.404811919979954,"r2":0.36437926522550845,"rmse":2.864482334812939},"train":{"mae":2.201913989848613,"max_error":6.312519033752585,"r2":0.27552020762190943,"rmse":2.659682995657083},"validation":{"mae":2.5320764959538233,"max_error":5.3865341184066775,"r2":0.2577961525179474,"rmse":2.9154354091939134}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.049503454320336,-0.25937773318609003],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.74073500000000","loss":9.764127,"metrics":{"blind":{"mae":2.9986415652556415,"max_error":7.018208926544189,"r2":-0.002188294467040608,"rmse":3.596845498719945},"train":{"mae":2.518623806599178,"max_error":7.740735,"r2":-2.2248869413488137e-13,"rmse":3.1247605174659174},"validation":{"mae":2.8484663473774834,"max_error":7.534213727340698,"r2":-0.0010185594733838066,"rmse":3.3858123775587887}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.740735,-3.740735],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_B + 1.4638376","loss":7.0739136,"metrics":{"blind":{"mae":2.4777958523168957,"max_error":5.404811919979954,"r2":0.36437926522550845,"rmse":2.864482334812939},"train":{"mae":2.201913989848613,"max_error":6.312519033752585,"r2":0.27552020762190943,"rmse":2.659682995657083},"validation":{"mae":2.5320764959538233,"max_error":5.3865341184066775,"r2":0.2577961525179474,"rmse":2.9154354091939134}},"score":0.1611506412211201,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.049503454320336,-0.25937773318609003],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":7.0,"expression":"-Cl_F - 1.8880354 - 1.8880354","loss":4.868252,"metrics":{"blind":{"mae":1.6030350141938996,"max_error":4.728604979491664,"r2":0.6974875414535187,"rmse":1.9761447498490055},"train":{"mae":1.7587280484115797,"max_error":5.953708571991754,"r2":0.5014145717619338,"rmse":2.2064115857189424},"validation":{"mae":1.470082622111128,"max_error":4.484957279316021,"r2":0.6855513730844855,"rmse":1.8976524470875948}},"score":0.12455964551451039,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.580497138523626,2.8527447503571035],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..2047fda --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"v_s*0.07145526 - 1*(-0.5851183)","deployment_expression_hash":"4b66f6e8ddfe51a8eff92698e58e41c8f3a50f802cefb5f18b1845f4d78ebe39","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"v_s*0.07145526 - 1*(-0.5851183)","fitted_expression_hash":"4b66f6e8ddfe51a8eff92698e58e41c8f3a50f802cefb5f18b1845f4d78ebe39","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:11:42.377665+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6765968129828485,"max_error":1.8858858025978684,"r2":0.8697683362649627,"rmse":0.8068227511775795},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7420600438540699,"max_error":1.8311556628867283,"r2":0.8788630394663897,"rmse":0.8801282844203305},"train":{"mae":0.6765968129828485,"max_error":1.8858858025978684,"r2":0.8697683362649627,"rmse":0.8068227511775795},"validation":{"mae":0.6043540324811727,"max_error":1.8463173394667833,"r2":0.8826853814560102,"rmse":0.773229165495083}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.455979178814006,3.7509897843752387],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":10.966224,"metrics":{"blind":{"mae":3.1662198211553916,"max_error":6.719977606553584,"r2":-1.2883313285920974,"rmse":3.825314044294598},"train":{"mae":2.7357751203240173,"max_error":6.745328560122289,"r2":-1.1939033949403988,"rmse":3.3115292227968007},"validation":{"mae":2.893959149441425,"max_error":6.483615390956402,"r2":-1.2927363320228764,"rmse":3.4182924596239426}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4748436883091927,3.0628510285168886],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"0.537530960000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.6141012324456785,"r2":-0.003592202536678135,"rmse":2.5332980040183206},"train":{"mae":2.0496718439179813,"max_error":3.797726930535278,"r2":-8.427059050575281e-11,"rmse":2.235732508988731},"validation":{"mae":2.1364197237096962,"max_error":3.23136526480957,"r2":-0.009007573022426829,"rmse":2.267667487039513}},"score":0.7856823361818368,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.53753096,0.53753096],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"v_s*0.07145526","loss":0.99854153,"metrics":{"blind":{"mae":0.8047980066155759,"max_error":2.4162739628867285,"r2":0.8235499600774527,"rmse":1.0622299007578893},"train":{"mae":0.8182493487282801,"max_error":2.21303012713258,"r2":0.8002317437083497,"rmse":0.9992705336263207},"validation":{"mae":0.7306811647645955,"max_error":2.323934419296214,"r2":0.8351979243358325,"rmse":0.9164599676871091}},"score":0.805298600983842,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.041097478814006,3.1658714843752387],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]},{"complexity":7.0,"expression":"v_s*0.07145526 - 1*(-0.5851183)","loss":0.6509629,"metrics":{"blind":{"mae":0.7420600438540699,"max_error":1.8311556628867283,"r2":0.8788630394663897,"rmse":0.8801282844203305},"train":{"mae":0.6765968129828485,"max_error":1.8858858025978684,"r2":0.8697683362649627,"rmse":0.8068227511775795},"validation":{"mae":0.6043540324811727,"max_error":1.8463173394667833,"r2":0.8826853814560102,"rmse":0.773229165495083}},"score":0.14261436434740157,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.455979178814006,3.7509897843752387],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_s"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..1f9c8dd --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s + Cl_rear_s + 3.496592","deployment_expression_hash":"c10d2b7bcbb8c7c77b778c08f3ab6a322b54513b1249670f9bcdc3693105834d","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s + Cl_rear_s + 3.496592","fitted_expression_hash":"c10d2b7bcbb8c7c77b778c08f3ab6a322b54513b1249670f9bcdc3693105834d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:11:44.225148+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.035801436231275,"max_error":5.798230724536062,"r2":0.6711861069707891,"rmse":2.3759048498713593},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.56368695355497,"max_error":5.225412553303123,"r2":0.6553879733699013,"rmse":2.8941925632789784},"train":{"mae":2.035801436231275,"max_error":5.798230724536062,"r2":0.6711861069707891,"rmse":2.3759048498713593},"validation":{"mae":2.436340574469411,"max_error":5.393145319201231,"r2":0.5694667076124709,"rmse":2.81119426865924}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453095376618385,9.622294057033777],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":19.28765,"metrics":{"blind":{"mae":4.156242282481253,"max_error":8.888153115287423,"r2":-0.01725172171079037,"rmse":4.97251870096794},"train":{"mae":3.5819024734709104,"max_error":9.784167295321822,"r2":-0.12349558243810521,"rmse":4.391770620410337},"validation":{"mae":4.100822391547412,"max_error":9.235134476795793,"r2":-0.21474522804521534,"rmse":4.722044651182954}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4748436883091927,3.0628510285168886],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"2.98672840000000","loss":17.167532,"metrics":{"blind":{"mae":4.194986393302278,"max_error":8.352777749291992,"r2":-5.282263906281059e-07,"rmse":4.9301748626546615},"train":{"mae":3.3187784695275795,"max_error":9.0132716,"r2":-1.1894929485833927e-12,"rmse":4.143372359454957},"validation":{"mae":3.640715082485854,"max_error":9.0132716,"r2":-0.00909351822338178,"rmse":4.303811055723524}},"score":0.1164450692185755,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9867284,2.9867284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":10.601864,"metrics":{"blind":{"mae":3.007898118025332,"max_error":7.5319707822054625,"r2":0.4366542488808024,"rmse":3.7004089261568374},"train":{"mae":2.7252668787999537,"max_error":7.180802566930652,"r2":0.38244691943932074,"rmse":3.256050340782676},"validation":{"mae":2.723462588492578,"max_error":7.917192108929157,"r2":0.3979511337315552,"rmse":3.324324114962916}},"score":0.48199009078315,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.349753398448229,10.679074563086033],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s - 1*(-3.2419837)","loss":8.779192,"metrics":{"blind":{"mae":3.1688860215224848,"max_error":5.646169415287423,"r2":0.4663933803283504,"rmse":3.60141204407201},"train":{"mae":2.3784248066710734,"max_error":6.542183595321822,"r2":0.48861653790569437,"rmse":2.9629703395198197},"validation":{"mae":2.584921384755914,"max_error":5.993150776795792,"r2":0.4640912815514554,"rmse":3.1364105049156445}},"score":0.18864545863759394,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.23285998830919263,6.304834728516889],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","loss":7.186998,"metrics":{"blind":{"mae":2.402185729827761,"max_error":5.921716262586415,"r2":0.627717373796451,"rmse":3.0081437968673983},"train":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"validation":{"mae":2.4187452670430036,"max_error":7.056821120902896,"r2":0.4833608598416258,"rmse":3.079506612778233}},"score":0.20011081587135973,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.8245970867574215,13.741925591602921],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s + Cl_rear_s + 3.496592","loss":5.644923,"metrics":{"blind":{"mae":2.56368695355497,"max_error":5.225412553303123,"r2":0.6553879733699013,"rmse":2.8941925632789784},"train":{"mae":2.035801436231275,"max_error":5.798230724536062,"r2":0.6711861069707891,"rmse":2.3759048498713593},"validation":{"mae":2.436340574469411,"max_error":5.393145319201231,"r2":0.5694667076124709,"rmse":2.81119426865924}},"score":0.2415170030871696,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453095376618385,9.622294057033777],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..764d4f1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s0-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"8.79444826162819e-6*Cd_rear_a**2","deployment_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:11:43.388277+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":4.328336064825795,"max_error":8.76412768747445,"r2":-1.4332321708577416,"rmse":4.874258002946551},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":4.695139157056033,"max_error":8.702054453320647,"r2":-1.1836693119423116,"rmse":5.30934022112671},"train":{"mae":4.328336064825795,"max_error":8.76412768747445,"r2":-1.4332321708577416,"rmse":4.874258002946551},"validation":{"mae":4.360320289590147,"max_error":8.399317055512984,"r2":-1.1524698839682008,"rmse":4.964898396852078}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.742262491142485e-06,0.0008536230078588619],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":117829070000000.0,"metrics":{"blind":{"mae":1286591.113154075,"max_error":26741739.327283926,"r2":-1575856327774.822,"rmse":4510300.006120977},"train":{"mae":2471511.5809718934,"max_error":89525563.38108778,"r2":-12067549287299.86,"rmse":10854911.303430634},"validation":{"mae":1107704.0368365294,"max_error":19620292.94212952,"r2":-1278160054317.9292,"rmse":3825907.3066826537}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0036688635305350435,89525564.5222454],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":23.75839,"metrics":{"blind":{"mae":4.695139157056033,"max_error":8.702054453320647,"r2":-1.1836693119423116,"rmse":5.30934022112671},"train":{"mae":4.328336064825795,"max_error":8.76412768747445,"r2":-1.4332321708577416,"rmse":4.874258002946551},"validation":{"mae":4.360320289590147,"max_error":8.399317055512984,"r2":-1.1524698839682008,"rmse":4.964898396852078}},"score":14.616160199820017,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.742262491142485e-06,0.0008536230078588619],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..8b7a9f9 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"v_c*0.034208246 - 1*(-0.5728301)","deployment_expression_hash":"7ceb89a717fbaf76a4cbbd0bcf1c78358eac51eeccb13ca6ca1ee995aaa2b25d","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"v_c*0.034208246 - 1*(-0.5728301)","fitted_expression_hash":"7ceb89a717fbaf76a4cbbd0bcf1c78358eac51eeccb13ca6ca1ee995aaa2b25d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:12:26.218448+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.42811256423339034,"max_error":1.034756017895484,"r2":0.949353221290591,"rmse":0.5031480059080171},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4438258388109972,"max_error":1.0144658309051993,"r2":0.9570368762825233,"rmse":0.5241499718207857},"train":{"mae":0.42811256423339034,"max_error":1.034756017895484,"r2":0.949353221290591,"rmse":0.5031480059080171},"validation":{"mae":0.43317549119187543,"max_error":0.9187675250838634,"r2":0.9508235600908531,"rmse":0.5006228900253474}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7736479318775653,3.543387653958058],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.537584900000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.614155172445679,"r2":-0.0035947598914403134,"rmse":2.533301231692654},"train":{"mae":2.049670015443405,"max_error":3.7977808705352785,"r2":-2.2339530225679027e-10,"rmse":2.235732509144254},"validation":{"mae":2.136415574478927,"max_error":3.2314192048095705,"r2":-0.009003038223844628,"rmse":2.2676623912269864}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.5375849,0.5375849],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.034208246*v_c","loss":0.58129114,"metrics":{"blind":{"mae":0.6272082901552024,"max_error":1.2436703898831247,"r2":0.9171767831905621,"rmse":0.7277524712867426},"train":{"mae":0.6279347377681908,"max_error":1.607586117895484,"r2":0.8837068815693842,"rmse":0.7624245111392222},"validation":{"mae":0.5549408355238133,"max_error":1.4915976250838634,"r2":0.903692997764587,"rmse":0.7005854166209258}},"score":1.0758206067278435,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3464780318775653,2.970557553958058],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_c"]},{"complexity":6.0,"expression":"0.034208246*(-Cl_rear_s + v_c)","loss":0.5328401,"metrics":{"blind":{"mae":0.5840484177051479,"max_error":1.17480935927331,"r2":0.9271989717250099,"rmse":0.6823016138465448},"train":{"mae":0.6039084506331401,"max_error":1.5095442833887274,"r2":0.8934000034303667,"rmse":0.729958948849083},"validation":{"mae":0.5272883045909145,"max_error":1.3976929809588392,"r2":0.9134272574450397,"rmse":0.6642365181006434}},"score":0.04351517686733385,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.2276097241763373,2.8657827925131993],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","v_c"]},{"complexity":7.0,"expression":"v_c*0.034208246 - 1*(-0.5728301)","loss":0.2531579,"metrics":{"blind":{"mae":0.4438258388109972,"max_error":1.0144658309051993,"r2":0.9570368762825233,"rmse":0.5241499718207857},"train":{"mae":0.42811256423339034,"max_error":1.034756017895484,"r2":0.949353221290591,"rmse":0.5031480059080171},"validation":{"mae":0.43317549119187543,"max_error":0.9187675250838634,"r2":0.9508235600908531,"rmse":0.5006228900253474}},"score":0.7442079744334557,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7736479318775653,3.543387653958058],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_c"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..46084eb --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"77e0ecf2f8850bfb5d321cf059219cd2056314228d6f307609e6cd4bf62cea44","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"77e0ecf2f8850bfb5d321cf059219cd2056314228d6f307609e6cd4bf62cea44","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:12:28.096720+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.402185729827761,"max_error":5.921716262586415,"r2":0.627717373796451,"rmse":3.0081437968673983},"train":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"validation":{"mae":2.4187452670430036,"max_error":7.056821120902896,"r2":0.4833608598416258,"rmse":3.079506612778233}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.8245970867574215,13.741925591602921],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":19.400791,"metrics":{"blind":{"mae":4.237056224325352,"max_error":9.338398739695549,"r2":-0.045066197482964254,"rmse":5.040041456536976},"train":{"mae":3.6963393963686926,"max_error":9.506030633114278,"r2":-0.13008617963690705,"rmse":4.4046331841760935},"validation":{"mae":3.612492709601961,"max_error":9.383857758715749,"r2":-0.05635785269580551,"rmse":4.403449510362245}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1250902898609638,7.616223534569144],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"2.98670000000000","loss":17.167532,"metrics":{"blind":{"mae":4.194987813302278,"max_error":8.352806149291993,"r2":-5.366328641454032e-07,"rmse":4.930174883377342},"train":{"mae":3.3187770254597817,"max_error":9.013300000000001,"r2":-6.312173006506328e-11,"rmse":4.14337235958326},"validation":{"mae":3.6407172671012384,"max_error":9.013300000000001,"r2":-0.009094782499435405,"rmse":4.303813751808403}},"score":0.12229391293581231,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9867,2.9867],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":10.601864,"metrics":{"blind":{"mae":3.007898118025332,"max_error":7.5319707822054625,"r2":0.4366542488808024,"rmse":3.7004089261568374},"train":{"mae":2.7252668787999537,"max_error":7.180802566930652,"r2":0.38244691943932074,"rmse":3.256050340782676},"validation":{"mae":2.723462588492578,"max_error":7.917192108929157,"r2":0.3979511337315552,"rmse":3.324324114962916}},"score":0.48199009078315,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.349753398448229,10.679074563086033],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s + 3.2414374","loss":8.779192,"metrics":{"blind":{"mae":3.1688860215224848,"max_error":5.6467157152874226,"r2":0.46638473478153486,"rmse":3.601441219169511},"train":{"mae":2.3783507320948023,"max_error":6.542729895321822,"r2":0.48861654017568523,"rmse":2.962970332943624},"validation":{"mae":2.5849914232174522,"max_error":5.993697076795792,"r2":0.4640733625603023,"rmse":3.136462940004278}},"score":0.18864545863759394,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.23340628830919252,6.304288428516889],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","loss":7.186998,"metrics":{"blind":{"mae":2.402185729827761,"max_error":5.921716262586415,"r2":0.627717373796451,"rmse":3.0081437968673983},"train":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"validation":{"mae":2.4187452670430036,"max_error":7.056821120902896,"r2":0.4833608598416258,"rmse":3.079506612778233}},"score":0.20011081587135973,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.8245970867574215,13.741925591602921],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":7.0,"expression":"(-Cl_rear_s - 1.6795528)*(-2.0965374)","loss":5.620439,"metrics":{"blind":{"mae":2.533504342138071,"max_error":5.468149551731296,"r2":0.6589531507511925,"rmse":2.8791827334132485},"train":{"mae":2.021934005842612,"max_error":6.107989036665851,"r2":0.6726123103518383,"rmse":2.3707466038953053},"validation":{"mae":2.4471323811247303,"max_error":5.6334957128675365,"r2":0.5601748042457964,"rmse":2.841368365403068}},"score":0.12293189273608274,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7638944912194447,9.942626992388844],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..cf62775 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s1-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - 3.4856358","deployment_expression_hash":"1fe430a1d77f1fa5cd0bdda011134594a8e17ff798ef56d4225be9834d262b38","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - 3.4856358","fitted_expression_hash":"1fe430a1d77f1fa5cd0bdda011134594a8e17ff798ef56d4225be9834d262b38","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:12:27.220381+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.8415383698321022,"max_error":5.12453278497951,"r2":0.4876396406335143,"rmse":2.2366833214246946},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.206776937163913,"max_error":4.935707623783219,"r2":0.49993125240049474,"rmse":2.540750250806977},"train":{"mae":1.8415383698321022,"max_error":5.12453278497951,"r2":0.4876396406335143,"rmse":2.2366833214246946},"validation":{"mae":2.2390799875756713,"max_error":4.514249004136491,"r2":0.40644385780950276,"rmse":2.6071902613401856}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.9604794883091925,-0.4227847714831112],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":85.72546,"metrics":{"blind":{"mae":8.7111534278818,"max_error":13.971171204000711,"r2":-5.8668356406604305,"rmse":9.415111044841925},"train":{"mae":8.6929382487803,"max_error":14.21402986254543,"r2":-7.779632862939268,"rmse":9.25880454627438},"validation":{"mae":8.278471073269312,"max_error":13.511718764901161,"r2":-6.177052947930781,"rmse":9.065982963268285}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.1250902898609638,7.616223534569144],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"-3.74058490000000","loss":9.764126,"metrics":{"blind":{"mae":2.998686595255642,"max_error":7.018058826544189,"r2":-0.0021922047693190283,"rmse":3.5968525157343656},"train":{"mae":2.5186645116839226,"max_error":7.7405849,"r2":-2.3529362902507955e-09,"rmse":3.1247605211417513},"validation":{"mae":2.8485086832749196,"max_error":7.534063627340698,"r2":-0.001015730296056283,"rmse":3.38580759289706}},"score":2.172434807335737,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7405849,-3.7405849],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_rear_s - 3.4856358","loss":5.002752,"metrics":{"blind":{"mae":2.206776937163913,"max_error":4.935707623783219,"r2":0.49993125240049474,"rmse":2.540750250806977},"train":{"mae":1.8415383698321022,"max_error":5.12453278497951,"r2":0.4876396406335143,"rmse":2.2366833214246946},"validation":{"mae":2.2390799875756713,"max_error":4.514249004136491,"r2":0.40644385780950276,"rmse":2.6071902613401856}},"score":0.33436344798759515,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.9604794883091925,-0.4227847714831112],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":7.0,"expression":"(Cl_rear_s - 2.1822174)*1.48526","loss":4.600272,"metrics":{"blind":{"mae":1.99197396079096,"max_error":5.3669575939066965,"r2":0.5563406583784678,"rmse":2.393161103167581},"train":{"mae":1.7586489774051852,"max_error":5.1083630417259664,"r2":0.5288599771507043,"rmse":2.144824381241102},"validation":{"mae":2.2481585064268534,"max_error":5.397339465147375,"r2":0.389362050209497,"rmse":2.6444400085664217}},"score":0.027957576279293378,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.402206552022111,1.3079699030909944],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_front.json new file mode 100644 index 0000000..0b9934c --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"5.42883056622201 - Cl_rear_a","deployment_expression_hash":"8a8dbb356f8fb0194e010cc99dc33b0d3e43248e08b8948c8342a343831b2eb4","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"5.42883056622201 - Cl_rear_a","fitted_expression_hash":"8a8dbb356f8fb0194e010cc99dc33b0d3e43248e08b8948c8342a343831b2eb4","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:13:09.928959+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.69422449535976,"max_error":4.2274514495974165,"r2":0.2592787864805839,"rmse":1.9241868089279077},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.1328766632252942,"max_error":4.046867193060158,"r2":0.1484931758153799,"rmse":2.3334672403228636},"train":{"mae":1.69422449535976,"max_error":4.2274514495974165,"r2":0.2592787864805839,"rmse":1.9241868089279077},"validation":{"mae":1.8740837794840433,"max_error":4.167620261793794,"r2":0.08035382556053183,"rmse":2.1649234505134847}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.187392968347134,4.303740276361046],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.537587640000000","loss":4.998499,"metrics":{"blind":{"mae":2.4040077328681946,"max_error":3.6141579124456786,"r2":-0.0035948898221422887,"rmse":2.533301395679958},"train":{"mae":2.049669922562049,"max_error":3.7977836105352782,"r2":-2.6153257337568903e-10,"rmse":2.235732509186886},"validation":{"mae":2.1364153637096965,"max_error":3.2314219448095702,"r2":-0.009002807899328724,"rmse":2.2676621324080077}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.53758764,0.53758764],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"0.25136358 - Cl_rear_s","loss":4.913869,"metrics":{"blind":{"mae":1.7851169628943082,"max_error":5.074798956398265,"r2":0.12249923310962663,"rmse":2.3688163615934887},"train":{"mae":1.7197731627774544,"max_error":5.257964691032068,"r2":0.01693141583730018,"rmse":2.2167246495183623},"validation":{"mae":1.8870099151724777,"max_error":5.3283254791762396,"r2":-0.21052067163872645,"rmse":2.4838093952907467}},"score":0.008538026074038151,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.8114874485168886,3.7262072683091927],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"5.42883056622201 - Cl_rear_a","loss":3.7024953,"metrics":{"blind":{"mae":2.1328766632252942,"max_error":4.046867193060158,"r2":0.1484931758153799,"rmse":2.3334672403228636},"train":{"mae":1.69422449535976,"max_error":4.2274514495974165,"r2":0.2592787864805839,"rmse":1.9241868089279077},"validation":{"mae":1.8740837794840433,"max_error":4.167620261793794,"r2":0.08035382556053183,"rmse":2.1649234505134847}},"score":0.2830546174705321,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.187392968347134,4.303740276361046],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":7.0,"expression":"(0.00939094726761*Cl_rear_s**2)*v_c","loss":3.5841317,"metrics":{"blind":{"mae":1.2873077346149913,"max_error":4.637383980561998,"r2":0.5530440897562817,"rmse":1.6905965718406148},"train":{"mae":1.4835516524741184,"max_error":8.354778039166073,"r2":0.2829585399846256,"rmse":1.893180295503503},"validation":{"mae":1.7632716879096035,"max_error":7.1898151772414565,"r2":-0.16413725752101915,"rmse":2.4357586574691283}},"score":0.016245378328561936,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-11.092696224631464,7.650121178222709],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","v_c"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_lower.json new file mode 100644 index 0000000..1c38507 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","deployment_expression_hash":"77e0ecf2f8850bfb5d321cf059219cd2056314228d6f307609e6cd4bf62cea44","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","fitted_expression_hash":"77e0ecf2f8850bfb5d321cf059219cd2056314228d6f307609e6cd4bf62cea44","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:13:11.469440+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.402185729827761,"max_error":5.921716262586415,"r2":0.627717373796451,"rmse":3.0081437968673983},"train":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"validation":{"mae":2.4187452670430036,"max_error":7.056821120902896,"r2":0.4833608598416258,"rmse":3.079506612778233}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.8245970867574215,13.741925591602921],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.98672840000000","loss":17.167532,"metrics":{"blind":{"mae":4.194986393302278,"max_error":8.352777749291992,"r2":-5.282263906281059e-07,"rmse":4.9301748626546615},"train":{"mae":3.3187784695275795,"max_error":9.0132716,"r2":-1.1894929485833927e-12,"rmse":4.143372359454957},"validation":{"mae":3.640715082485854,"max_error":9.0132716,"r2":-0.00909351822338178,"rmse":4.303811055723524}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.9867284,2.9867284],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_a + Cl_rear_s","loss":10.601864,"metrics":{"blind":{"mae":3.007898118025332,"max_error":7.5319707822054625,"r2":0.4366542488808024,"rmse":3.7004089261568374},"train":{"mae":2.7252668787999537,"max_error":7.180802566930652,"r2":0.38244691943932074,"rmse":3.256050340782676},"validation":{"mae":2.723462588492578,"max_error":7.917192108929157,"r2":0.3979511337315552,"rmse":3.324324114962916}},"score":0.48199009078315,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.349753398448229,10.679074563086033],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s + 3.2416747","loss":8.779192,"metrics":{"blind":{"mae":3.1688860215224848,"max_error":5.646478415287423,"r2":0.4663884932224672,"rmse":3.601428536035416},"train":{"mae":2.3783829083659884,"max_error":6.542492595321822,"r2":0.48861654346083805,"rmse":2.9629703234264895},"validation":{"mae":2.584961000140529,"max_error":5.993459776795793,"r2":0.46408115014750817,"rmse":3.1364401518410383}},"score":0.18864545863759394,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.23316898830919275,6.3045257285168885],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cl_rear_a + Cl_rear_s + Cl_rear_s","loss":7.186998,"metrics":{"blind":{"mae":2.402185729827761,"max_error":5.921716262586415,"r2":0.627717373796451,"rmse":3.0081437968673983},"train":{"mae":2.1755986108727776,"max_error":5.718464311212301,"r2":0.5813611411980587,"rmse":2.6808575223838487},"validation":{"mae":2.4187452670430036,"max_error":7.056821120902896,"r2":0.4833608598416258,"rmse":3.079506612778233}},"score":0.20011081587135973,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.8245970867574215,13.741925591602921],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s + Cl_rear_s + 2.638214","loss":6.3817787,"metrics":{"blind":{"mae":2.7162037146857196,"max_error":6.083790553303123,"r2":0.598151912105739,"rmse":3.1253104308125415},"train":{"mae":2.0501280245264795,"max_error":6.656608724536062,"r2":0.6282646585806155,"rmse":2.526218379724926},"validation":{"mae":2.5819403815035877,"max_error":6.251523319201231,"r2":0.5112170259772265,"rmse":2.99533584249013}},"score":0.11882670860146759,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.311473376618386,8.763916057033777],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_upper.json new file mode 100644 index 0000000..85a9efd --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re200-symmetry-s2-20260718/formulas/karman_re200_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 3.8350446","deployment_expression_hash":"136b724a2986472036ee257c352f221788c9c4117b09a7cdcda351228248c0b8","dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_F - 3.8350446","fitted_expression_hash":"136b724a2986472036ee257c352f221788c9c4117b09a7cdcda351228248c0b8","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re200 --mode per-scene --run-id article-discovery-v2-karman_re200-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:13:10.516951+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.764467075222276,"max_error":5.894734771991754,"r2":0.5017708338643116,"rmse":2.2056231538324393},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.5971376341938996,"max_error":4.669631179491663,"r2":0.6980886225345068,"rmse":1.974180510334246},"train":{"mae":1.764467075222276,"max_error":5.894734771991754,"r2":0.5017708338643116,"rmse":2.2056231538324393},"validation":{"mae":1.4594975810854867,"max_error":4.42598347931602,"r2":0.6894076314396751,"rmse":1.8859805684568651}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re200":197},"scene_sample_counts":{"karman_re200":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.639470938523626,2.7937709503571035],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":17.153517,"metrics":{"blind":{"mae":3.680435727767326,"max_error":7.4954813700169325,"r2":-0.4301395342730787,"rmse":4.296712808112732},"train":{"mae":3.663267948391938,"max_error":7.2125118700787425,"r2":-0.7567892496097219,"rmse":4.141680288764198},"validation":{"mae":3.634326576770922,"max_error":7.485991456545889,"r2":-0.6542452674075749,"rmse":4.352530007336589}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4748436883091927,3.0628510285168886],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-3.74097440000000","loss":9.764126,"metrics":{"blind":{"mae":2.9985697452556423,"max_error":7.018448326544189,"r2":-0.002182065005722933,"rmse":3.5968343199600037},"train":{"mae":2.518558884565277,"max_error":7.7409744,"r2":-5.797678115371241e-09,"rmse":3.124760526523748},"validation":{"mae":2.8483988243005607,"max_error":7.534453127340698,"r2":-0.0010230799744754826,"rmse":3.3858200225475477}},"score":0.563488168478909,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7409744,-3.7409744],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":9.2242565,"metrics":{"blind":{"mae":2.4863606837578116,"max_error":6.868649519979954,"r2":0.22709047841966123,"rmse":3.1587223187587172},"train":{"mae":2.355168372708357,"max_error":7.7763566337525845,"r2":0.05529126299218179,"rmse":3.0371462438045884},"validation":{"mae":2.6068538692660437,"max_error":6.850371718406677,"r2":0.1482378623431353,"rmse":3.1232085794885442}},"score":0.056878466522187296,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.5999339781701565,-4.553372506052256],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"-Cl_F - 3.8350446","loss":4.864773,"metrics":{"blind":{"mae":1.5971376341938996,"max_error":4.669631179491663,"r2":0.6980886225345068,"rmse":1.974180510334246},"train":{"mae":1.764467075222276,"max_error":5.894734771991754,"r2":0.5017708338643116,"rmse":2.2056231538324393},"validation":{"mae":1.4594975810854867,"max_error":4.42598347931602,"r2":0.6894076314396751,"rmse":1.8859805684568651}},"score":0.63981653573822,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.639470938523626,2.7937709503571035],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re200-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..66d8cb1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_B*0.2692533","deployment_expression_hash":"5801818ff1dd81ee6094314e26cbb91b0be3020418193f79b606151413cd95f2","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_B*0.2692533","fitted_expression_hash":"5801818ff1dd81ee6094314e26cbb91b0be3020418193f79b606151413cd95f2","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:13:46.184295+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3483298806400306,"max_error":1.157058565539401,"r2":0.8853428404831007,"rmse":0.4160378027970303},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2644694746934241,"max_error":0.5729582203528379,"r2":0.9410227694854031,"rmse":0.29858726570330263},"train":{"mae":0.3483298806400306,"max_error":1.157058565539401,"r2":0.8853428404831007,"rmse":0.4160378027970303},"validation":{"mae":0.28241140319350017,"max_error":0.5108621202411363,"r2":0.9273060441756398,"rmse":0.3122461308574684}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.440386808021087,1.7800372779579832],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_hat_C","loss":5331.4062,"metrics":{"blind":{"mae":54.799458439275625,"max_error":83.66550278663635,"r2":-2189.7158259903213,"rmse":57.54692433325125},"train":{"mae":66.82000434359189,"max_error":139.5469467639923,"r2":-3530.647638374916,"rmse":73.01647924592486},"validation":{"mae":53.61618777526877,"max_error":76.47284805774689,"r2":-2314.4226023574624,"rmse":55.72666439065606}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6034653168171644,141.31550788879395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_hat_C"]},{"complexity":2.0,"expression":"-0.0134165950000000","loss":1.5096085,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895791106045532,"r2":-0.008168273427643369,"rmse":1.234512829089597},"train":{"mae":1.1050599479951082,"max_error":2.074335031968384,"r2":-6.994405055138486e-14,"rmse":1.2286613725146893},"validation":{"mae":1.0536851592568284,"max_error":1.7522894673168945,"r2":-0.03943768734950037,"rmse":1.1807206092239575}},"score":8.169519964068702,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013416595,-0.013416595],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_B*0.2692533","loss":0.17308743,"metrics":{"blind":{"mae":0.2644694746934241,"max_error":0.5729582203528379,"r2":0.9410227694854031,"rmse":0.29858726570330263},"train":{"mae":0.3483298806400306,"max_error":1.157058565539401,"r2":0.8853428404831007,"rmse":0.4160378027970303},"validation":{"mae":0.28241140319350017,"max_error":0.5108621202411363,"r2":0.9273060441756398,"rmse":0.3122461308574684}},"score":1.0829043910540492,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.440386808021087,1.7800372779579832],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..d12ced1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(Cd_T + Cl_T)*0.52739537","deployment_expression_hash":"be5dc15bcc8b2eaa249993f128f471642474b61826f05707bf013a99a624e552","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(Cd_T + Cl_T)*0.52739537","fitted_expression_hash":"be5dc15bcc8b2eaa249993f128f471642474b61826f05707bf013a99a624e552","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:13:48.567229+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.2165238432415624,"max_error":3.577697103596984,"r2":0.815018557327847,"rmse":1.3710039575142963},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.1494169340889968,"max_error":2.36521024969566,"r2":0.8309543589016671,"rmse":1.2893078691203381},"train":{"mae":1.2165238432415624,"max_error":3.577697103596984,"r2":0.815018557327847,"rmse":1.3710039575142963},"validation":{"mae":1.1801027094031222,"max_error":2.219711113809401,"r2":0.8209313352218812,"rmse":1.309911943533746}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.4008930686786645,10.369549164714357],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_hat_B","loss":738.2611,"metrics":{"blind":{"mae":14.078036199696362,"max_error":33.70130932331085,"r2":-24.763221840710628,"rmse":15.916762332856544},"train":{"mae":22.01753630002929,"max_error":79.05038845539093,"r2":-71.65419803176212,"rmse":27.17096005464046},"validation":{"mae":15.973071198910475,"max_error":30.807437300682068,"r2":-30.556230051865715,"rmse":17.389010153611572}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-77.45170593261719,58.82806181907654],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["v_hat_B"]},{"complexity":2.0,"expression":"2.62159370000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908343366708182,"max_error":4.670797123364258,"r2":-0.0071771837939811345,"rmse":3.147078560667099},"train":{"mae":2.92106644735411,"max_error":5.319190754345703,"r2":-6.429123899920342e-11,"rmse":3.1876793373676775},"validation":{"mae":2.862607467126175,"max_error":4.659857525280762,"r2":-0.013551756264030823,"rmse":3.1164148818712865}},"score":4.285711464584932,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215937,2.6215937],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_B + Cl_T","loss":9.548729,"metrics":{"blind":{"mae":2.3655700692266692,"max_error":7.197188675403595,"r2":0.030480305678966424,"rmse":3.087684820152311},"train":{"mae":2.4088075546877286,"max_error":7.675443187355995,"r2":0.06028451769608145,"rmse":3.0901020232760414},"validation":{"mae":2.4186702898990076,"max_error":6.623677289113402,"r2":-0.009029411303992152,"rmse":3.1094545766412383}},"score":0.062178034852852275,"static_safety":{"finite":true,"grid_size":9,"observed_range":[6.832542829215527,9.473880112636834],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B","Cl_T"]},{"complexity":4.0,"expression":"2.6215773 - Cl_F","loss":4.6083293,"metrics":{"blind":{"mae":1.908491731632004,"max_error":3.570000057908702,"r2":0.5467776474668883,"rmse":2.1111072893192318},"train":{"mae":1.9104817161635663,"max_error":4.506845649666149,"r2":0.5464823041795944,"rmse":2.146701926615511},"validation":{"mae":1.9225471459291161,"max_error":3.72277358533721,"r2":0.534370728775315,"rmse":2.112284641445926}},"score":0.7285426731164096,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6383874790193556,9.026100106406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"(Cd_T + Cl_T)*0.52739537","loss":1.8796519,"metrics":{"blind":{"mae":1.1494169340889968,"max_error":2.36521024969566,"r2":0.8309543589016671,"rmse":1.2893078691203381},"train":{"mae":1.2165238432415624,"max_error":3.577697103596984,"r2":0.815018557327847,"rmse":1.3710039575142963},"validation":{"mae":1.1801027094031222,"max_error":2.219711113809401,"r2":0.8209313352218812,"rmse":1.309911943533746}},"score":0.4483893916953133,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.4008930686786645,10.369549164714357],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T","Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..3b280b1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s0-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"8.79444826162819e-6*Cl_F**2","deployment_expression_hash":"70953582f0d640e1209cbb14679f9d34a54a8533da035dcbdd3fc240bc744fb3","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"8.79444826162819e-6*Cl_F**2","fitted_expression_hash":"70953582f0d640e1209cbb14679f9d34a54a8533da035dcbdd3fc240bc744fb3","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:13:47.741289+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.972246769422129,"max_error":7.164639198589403,"r2":-0.7871423109440332,"rmse":3.760004737426781},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.6899944061293453,"max_error":6.270797472985999,"r2":-0.6004107759171582,"rmse":3.5029785769178257},"train":{"mae":2.972246769422129,"max_error":7.164639198589403,"r2":-0.7871423109440332,"rmse":3.760004737426781},"validation":{"mae":2.723670243816128,"max_error":6.261918215945687,"r2":-0.5908549672746435,"rmse":3.5795221833892445}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.594444751872984e-08,0.0003607299082063395],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cl_F**8","loss":439196200000.0,"metrics":{"blind":{"mae":335661.00203557336,"max_error":1253710.483174712,"r2":-36181303325.68759,"rmse":526700.6464184341},"train":{"mae":387819.8921105429,"max_error":2830701.295115749,"r2":-55518901991.692,"rmse":662718.7496789197},"validation":{"mae":360616.70749693486,"max_error":1428457.3754778951,"r2":-35624149053.6083,"rmse":535651.115507212}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[7.448995998680288e-10,2830702.393023292],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"8.79444826162819e-6*Cl_F**2","loss":14.137635,"metrics":{"blind":{"mae":2.6899944061293453,"max_error":6.270797472985999,"r2":-0.6004107759171582,"rmse":3.5029785769178257},"train":{"mae":2.972246769422129,"max_error":7.164639198589403,"r2":-0.7871423109440332,"rmse":3.760004737426781},"validation":{"mae":2.723670243816128,"max_error":6.261918215945687,"r2":-0.5908549672746435,"rmse":3.5795221833892445}},"score":12.07968584227066,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.594444751872984e-08,0.0003607299082063395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":7.0,"expression":"-0.054456804*1.64048916455867e-5","loss":14.136858,"metrics":{"blind":{"mae":2.6899787986567674,"max_error":6.270525515791201,"r2":-0.600327852221368,"rmse":3.5028878240632855},"train":{"mae":2.9722113443503213,"max_error":7.164399207350039,"r2":-0.7870439126765398,"rmse":3.7599012249525763},"validation":{"mae":2.7236521749673486,"max_error":6.261659205671572,"r2":-0.5907617322621797,"rmse":3.5794172895767327}},"score":5.496119772651448e-05,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.93357968984952e-07,-8.93357968984952e-07],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..be3679b --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_B*0.26181275","deployment_expression_hash":"c95aa3eeb9890c24f301b0fe4dbb98ee10c52df97e075fc2800b0549dd7d2d08","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_B*0.26181275","fitted_expression_hash":"c95aa3eeb9890c24f301b0fe4dbb98ee10c52df97e075fc2800b0549dd7d2d08","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:14:25.565918+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.347649718092982,"max_error":1.1410368380222935,"r2":0.884666907204244,"rmse":0.4172623253550877},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2686183428438797,"max_error":0.5993010758192977,"r2":0.9381708136210515,"rmse":0.30572141439254524},"train":{"mae":0.347649718092982,"max_error":1.1410368380222935,"r2":0.884666907204244,"rmse":0.4172623253550877},"validation":{"mae":0.2820627543408105,"max_error":0.5390501993838116,"r2":0.9264184930258239,"rmse":0.31414652010990857}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.3729491199243347,1.730847699339967],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134323540000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895633516045531,"r2":-0.008165956759142556,"rmse":1.2345114106961088},"train":{"mae":1.1050602150968036,"max_error":2.0743397178916014,"r2":-1.5780421414035573e-10,"rmse":1.2286613726115903},"validation":{"mae":1.053683138872213,"max_error":1.7522737083168944,"r2":-0.039432282898578475,"rmse":1.1807175397013892}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013432354,-0.013432354],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_B*0.26181275","loss":0.17410782,"metrics":{"blind":{"mae":0.2686183428438797,"max_error":0.5993010758192977,"r2":0.9381708136210515,"rmse":0.30572141439254524},"train":{"mae":0.347649718092982,"max_error":1.1410368380222935,"r2":0.884666907204244,"rmse":0.4172623253550877},"validation":{"mae":0.2820627543408105,"max_error":0.5390501993838116,"r2":0.9264184930258239,"rmse":0.31414652010990857}},"score":1.0799654642157537,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.3729491199243347,1.730847699339967],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":7.0,"expression":"(0.39170504 - Cd_B)*(-0.27122352)","loss":0.16187364,"metrics":{"blind":{"mae":0.2536400537365719,"max_error":0.6722223852381969,"r2":0.941995569159484,"rmse":0.29611450338104267},"train":{"mae":0.3342776150401505,"max_error":1.0550614181852227,"r2":0.8927711195601926,"rmse":0.4023352558848804},"validation":{"mae":0.25627230647836047,"max_error":0.609637679231588,"r2":0.9364332799805741,"rmse":0.2919865291461788}},"score":0.024286243868614093,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.5644835864281768,1.686822809786934],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..e6e0fae --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"2.4873955 - Cl_F","deployment_expression_hash":"f65373749bb7c7d4e371c485277844a3be2abd6a8101a2e63c541d3f90cfcfde","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"2.4873955 - Cl_F","fitted_expression_hash":"f65373749bb7c7d4e371c485277844a3be2abd6a8101a2e63c541d3f90cfcfde","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:14:27.105599+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.9022779389641102,"max_error":4.372663849666148,"r2":0.548253696864917,"rmse":2.1425054282371616},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.888364461632004,"max_error":3.4358182579087018,"r2":0.5500519690638318,"rmse":2.103467579740382},"train":{"mae":1.9022779389641102,"max_error":4.372663849666148,"r2":0.548253696864917,"rmse":2.1425054282371616},"validation":{"mae":1.9259877049034746,"max_error":3.5885917853372096,"r2":0.5265939394066103,"rmse":2.1298509456647907}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.772569279019356,8.891918306406021],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":21.957544,"metrics":{"blind":{"mae":3.680170154478401,"max_error":9.345994178205729,"r2":-1.2704553637812652,"rmse":4.72510135886013},"train":{"mae":3.6163880256713976,"max_error":10.119863444939256,"r2":-1.1608992430882745,"rmse":4.685887805102277},"validation":{"mae":3.7324689200673347,"max_error":9.499940821900964,"r2":-1.3911669768646844,"rmse":4.786711539126735}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0948242638260126,5.441469606012106],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"2.62157320000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908353616708182,"max_error":4.6708176233642575,"r2":-0.007178291496138467,"rmse":3.1470802912587015},"train":{"mae":2.921066099896483,"max_error":5.319211254345703,"r2":-2.51909604287448e-12,"rmse":3.1876793372692225},"validation":{"mae":2.8626079927672006,"max_error":4.6598780252807614,"r2":-0.013553298183515139,"rmse":3.1164172523762805}},"score":0.7705246791951142,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215732,2.6215732],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"2.4873955 - Cl_F","loss":4.5903287,"metrics":{"blind":{"mae":1.888364461632004,"max_error":3.4358182579087018,"r2":0.5500519690638318,"rmse":2.103467579740382},"train":{"mae":1.9022779389641102,"max_error":4.372663849666148,"r2":0.548253696864917,"rmse":2.1425054282371616},"validation":{"mae":1.9259877049034746,"max_error":3.5885917853372096,"r2":0.5265939394066103,"rmse":2.1298509456647907}},"score":0.3973172288871349,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.772569279019356,8.891918306406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"-Cl_B - Cl_F - 1.9013499","loss":3.1913152,"metrics":{"blind":{"mae":1.2071629313354664,"max_error":3.379955460027063,"r2":0.7740368545653629,"rmse":1.4906423330861522},"train":{"mae":1.3600953833544478,"max_error":6.9115724424489,"r2":0.6859343037070447,"rmse":1.7864253750666357},"validation":{"mae":1.2414869772556956,"max_error":3.660839239310676,"r2":0.7515407493760062,"rmse":1.5429785540643088}},"score":0.1817592567391804,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.986836793425695,13.736028308339215],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..fb6243d --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s1-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 2.4952118","deployment_expression_hash":"a5e500fcf92e3244de3df91a86415f5cbd690ecdb6c32323e5bd31e3ec91f7fb","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 2.4952118","fitted_expression_hash":"a5e500fcf92e3244de3df91a86415f5cbd690ecdb6c32323e5bd31e3ec91f7fb","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:14:26.184960+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.1135330416736497,"max_error":4.497220558485317,"r2":0.34596978945063783,"rmse":2.274614107437733},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.0769620588262274,"max_error":3.683890930747914,"r2":0.3417615215794614,"rmse":2.246535992260974},"train":{"mae":2.1135330416736497,"max_error":4.497220558485317,"r2":0.34596978945063783,"rmse":2.274614107437733},"validation":{"mae":2.1616329426732706,"max_error":3.804503375103998,"r2":0.33690875262367215,"rmse":2.310981196095308}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.755176579019356,3.9093110064060212],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":51.72763,"metrics":{"blind":{"mae":5.946224889361656,"max_error":11.822296738624573,"r2":-5.122615765738399,"rmse":6.851572389824767},"train":{"mae":6.28793881771202,"max_error":12.674978144466877,"r2":-5.538903756188097,"rmse":7.192192390787411},"validation":{"mae":6.296210129494564,"max_error":11.937244892120361,"r2":-5.402118931539415,"rmse":7.180780192020746}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.404522806406021,6.259964779019356],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-2.49521500000000","loss":7.910749,"metrics":{"blind":{"mae":2.6104326271798612,"max_error":3.77531140914917,"r2":-0.01595645703142612,"rmse":2.790996522067032},"train":{"mae":2.5900424034215446,"max_error":4.669185100708008,"r2":-9.967582315084655e-13,"rmse":2.8126055127101743},"validation":{"mae":2.692108583919819,"max_error":3.766445099029541,"r2":-0.012234735917928674,"rmse":2.8552910387075103}},"score":1.8777696005960292,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.495215,-2.495215],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_F - 2.4952118","loss":5.173869,"metrics":{"blind":{"mae":2.0769620588262274,"max_error":3.683890930747914,"r2":0.3417615215794614,"rmse":2.246535992260974},"train":{"mae":2.1135330416736497,"max_error":4.497220558485317,"r2":0.34596978945063783,"rmse":2.274614107437733},"validation":{"mae":2.1616329426732706,"max_error":3.804503375103998,"r2":0.33690875262367215,"rmse":2.310981196095308}},"score":0.2123008515105519,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.755176579019356,3.9093110064060212],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":7.0,"expression":"-(Cl_F - 1*(-0.13263243)) - 2.4952118","loss":5.155873,"metrics":{"blind":{"mae":2.0590403820963665,"max_error":3.8165233607479143,"r2":0.34302988150109215,"rmse":2.2443705231583277},"train":{"mae":2.1102226075557193,"max_error":4.629852988485317,"r2":0.3482447285735757,"rmse":2.2706547213548207},"validation":{"mae":2.171835437288656,"max_error":3.937135805103998,"r2":0.329319154245603,"rmse":2.3241690614864896}},"score":0.0011614370882697693,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.887809009019357,3.776678576406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..8c4cfe7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cd_B*0.26925227","deployment_expression_hash":"435d4f7a7a69adfb5234a39ae79b30f7ae650ec18a8d3109fea246dcaf124f28","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_B*0.26925227","fitted_expression_hash":"435d4f7a7a69adfb5234a39ae79b30f7ae650ec18a8d3109fea246dcaf124f28","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:15:03.844779+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.3483295784457812,"max_error":1.157056347641619,"r2":0.8853428405043051,"rmse":0.4160378027585599},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.26446959824140864,"max_error":0.5729618670108308,"r2":0.9410224668736117,"rmse":0.29858803172699244},"train":{"mae":0.3483295784457812,"max_error":1.157056347641619,"r2":0.8853428405043051,"rmse":0.4160378027585599},"validation":{"mae":0.28241133568146687,"max_error":0.5108660223345993,"r2":0.927306023420118,"rmse":0.31224617543360145}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.440377472579656,1.7800304686137849],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134101260000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895855796045533,"r2":-0.008169224504967376,"rmse":1.2345134113916354},"train":{"mae":1.1050598383510408,"max_error":2.0743415009683837,"r2":-3.057243347370786e-11,"rmse":1.2286613725334279},"validation":{"mae":1.0536859886158034,"max_error":1.7522959363168946,"r2":-0.039439905959981036,"rmse":1.1807218693080166}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013410126,-0.013410126],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_B*0.26925227","loss":0.17308743,"metrics":{"blind":{"mae":0.26446959824140864,"max_error":0.5729618670108308,"r2":0.9410224668736117,"rmse":0.29858803172699244},"train":{"mae":0.3483295784457812,"max_error":1.157056347641619,"r2":0.8853428405043051,"rmse":0.4160378027585599},"validation":{"mae":0.28241133568146687,"max_error":0.5108660223345993,"r2":0.927306023420118,"rmse":0.31224617543360145}},"score":1.0829044241752184,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.440377472579656,1.7800304686137849],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..3503e42 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"(Cd_T + Cl_T)*0.6119776441","deployment_expression_hash":"4fb79d390b7affc11b92bb8e250d227c521143bfe75bdd892c2db82beb73c344","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(Cd_T + Cl_T)*0.6119776441","fitted_expression_hash":"4fb79d390b7affc11b92bb8e250d227c521143bfe75bdd892c2db82beb73c344","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:15:05.491235+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.1036517539700872,"max_error":4.119687132659115,"r2":0.8012103045777732,"rmse":1.4212535467239031},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.9510929967296496,"max_error":2.6759884360655466,"r2":0.8415518211307527,"rmse":1.248240504207712},"train":{"mae":1.1036517539700872,"max_error":4.119687132659115,"r2":0.8012103045777732,"rmse":1.4212535467239031},"validation":{"mae":0.9825677215525744,"max_error":2.4644200714451614,"r2":0.8237130444133063,"rmse":1.2996978280392613}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.427451364061062,12.032590024825238],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.62157500000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908352716708183,"max_error":4.670815823364258,"r2":-0.007178194231062696,"rmse":3.1470801392990073},"train":{"mae":2.921066130404957,"max_error":5.319209454345703,"r2":-4.630296146501678e-12,"rmse":3.1876793372725873},"validation":{"mae":2.862607946613355,"max_error":4.659876225280762,"r2":-0.013553162791950069,"rmse":3.1164170442290504}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.621575,2.621575],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_T - 2.3272831","loss":7.3166456,"metrics":{"blind":{"mae":2.3865860195830466,"max_error":4.2669721350461485,"r2":0.2842788495694747,"rmse":2.652934762996533},"train":{"mae":2.352713571841656,"max_error":5.9295468882113935,"r2":0.27994981135518915,"rmse":2.7049298813570255},"validation":{"mae":2.292249431398814,"max_error":4.208171457758522,"r2":0.30486722182039283,"rmse":2.5808703489705924}},"score":0.1642170599526365,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.916938357295817,11.116273514220143],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_T"]},{"complexity":6.0,"expression":"(Cd_T + Cl_T)*0.78229","loss":4.458467,"metrics":{"blind":{"mae":1.72609764658297,"max_error":3.3017621652089293,"r2":0.6459876369701307,"rmse":1.865794718634497},"train":{"mae":1.9038365952706786,"max_error":5.211022163622547,"r2":0.5612305712185137,"rmse":2.1115083713786937},"validation":{"mae":1.8318262736825612,"max_error":3.1331198970017433,"r2":0.5964125671158589,"rmse":1.966532469957175}},"score":0.24767349330245683,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.494498669369495,15.38123972545378],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T","Cl_T"]},{"complexity":7.0,"expression":"(Cd_T + Cl_T)*0.6119776441","loss":2.0199616,"metrics":{"blind":{"mae":0.9510929967296496,"max_error":2.6759884360655466,"r2":0.8415518211307527,"rmse":1.248240504207712},"train":{"mae":1.1036517539700872,"max_error":4.119687132659115,"r2":0.8012103045777732,"rmse":1.4212535467239031},"validation":{"mae":0.9825677215525744,"max_error":2.4644200714451614,"r2":0.8237130444133063,"rmse":1.2996978280392613}},"score":0.7917264836415085,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.427451364061062,12.032590024825238],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T","Cl_T"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..ebf7f91 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-raw_complete-s2-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-Cl_F - 2.495228","deployment_expression_hash":"703c3bbd61a2f68bd4e50ca7146cd58fc97911c881e9a68509f64bc7f7ea3f3e","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 2.495228","fitted_expression_hash":"703c3bbd61a2f68bd4e50ca7146cd58fc97911c881e9a68509f64bc7f7ea3f3e","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:15:04.659556+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":2.113532217944836,"max_error":4.497236758485317,"r2":0.3459703388940807,"rmse":2.2746131519986355},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":2.076959628826227,"max_error":3.6839071307479143,"r2":0.3417619566996144,"rmse":2.2465352497388653},"train":{"mae":2.113532217944836,"max_error":4.497236758485317,"r2":0.3459703388940807,"rmse":2.2746131519986355},"validation":{"mae":2.1616341888271178,"max_error":3.804519575103998,"r2":0.33690809235685726,"rmse":2.3109823466638155}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.755192779019357,3.909294806406021],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_hat_B","loss":11803.69,"metrics":{"blind":{"mae":105.45604132786393,"max_error":142.57856565713882,"r2":-1476.6317128927221,"rmse":106.43999599480811},"train":{"mae":106.11366953997542,"max_error":168.21234035491943,"r2":-1491.1078394582985,"rmse":108.64479623060025},"validation":{"mae":106.2022843055236,"max_error":130.18561697006226,"r2":-1421.728739394745,"rmse":107.04609185547683}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.352971702814102,170.13936042785645],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_hat_B"]},{"complexity":2.0,"expression":"-2.49521230000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432357179861,"max_error":3.77531410914917,"r2":-0.015956210689366035,"rmse":2.7909961836962927},"train":{"mae":2.59004231189612,"max_error":4.669187800708007,"r2":-3.835376460870066e-12,"rmse":2.812605512714166},"validation":{"mae":2.6921082377659724,"max_error":3.766447799029541,"r2":-0.01223452545314907,"rmse":2.8552907418701223}},"score":7.307945005871789,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952123,-2.4952123],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_F - 2.495228","loss":5.173865,"metrics":{"blind":{"mae":2.076959628826227,"max_error":3.6839071307479143,"r2":0.3417619566996144,"rmse":2.2465352497388653},"train":{"mae":2.113532217944836,"max_error":4.497236758485317,"r2":0.3459703388940807,"rmse":2.2746131519986355},"validation":{"mae":2.1616341888271178,"max_error":3.804519575103998,"r2":0.33690809235685726,"rmse":2.3109823466638155}},"score":0.21230123806861378,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.755192779019357,3.909294806406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":7.0,"expression":"-0.6641982*Cl_F - 1*1.2132107","loss":4.003378,"metrics":{"blind":{"mae":1.7225956458478708,"max_error":3.425530861446097,"r2":0.5209827336628492,"rmse":1.9164492887469284},"train":{"mae":1.778366902652771,"max_error":3.6450999967275033,"r2":0.49393198619161827,"rmse":2.0008441778158605},"validation":{"mae":1.6327335217074317,"max_error":3.480052286962963,"r2":0.5918399449469813,"rmse":1.8131135935567115}},"score":0.08549382889819428,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.371068038288054,3.0406618198738276],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..279c0bf --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*0.04777057","deployment_expression_hash":"c7319f4a4f649c131c12cefe7df915629e08bde11dbfdf3ad08eb95caf4ba591","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"u_a*0.04777057","fitted_expression_hash":"c7319f4a4f649c131c12cefe7df915629e08bde11dbfdf3ad08eb95caf4ba591","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:15:41.661169+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7925490183237807,"max_error":1.3553333600861728,"r2":0.49552772765665365,"rmse":0.8732683992874666},"train":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"validation":{"mae":0.8431856691617988,"max_error":1.4136953324948847,"r2":0.36265865624082505,"rmse":0.9245575726717673}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9757581623610256,2.9263782197897323],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":426.11127,"metrics":{"blind":{"mae":13.34319668225944,"max_error":30.741247236728668,"r2":-161.25589727673974,"rmse":15.661355202811817},"train":{"mae":16.8524036591841,"max_error":59.49045713245869,"r2":-281.26605371406964,"rmse":20.64246375031093},"validation":{"mae":12.996848466973274,"max_error":32.82349652051926,"r2":-167.0321085391632,"rmse":15.012190014837994}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-41.35931730270386,61.25901825726032],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":2.0,"expression":"-0.0134123950000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895833106045532,"r2":-0.008168890908549109,"rmse":1.2345132071455245},"train":{"mae":1.1050598768086677,"max_error":2.0743392319683838,"r2":-1.3560930156586437e-11,"rmse":1.2286613725229774},"validation":{"mae":1.053685697718367,"max_error":1.7522936673168945,"r2":-0.0394391277758499,"rmse":1.1807214273299913}},"score":5.642850097417103,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013412395,-0.013412395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.04777057","loss":0.43848303,"metrics":{"blind":{"mae":0.7925490183237807,"max_error":1.3553333600861728,"r2":0.49552772765665365,"rmse":0.8732683992874666},"train":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"validation":{"mae":0.8431856691617988,"max_error":1.4136953324948847,"r2":0.36265865624082505,"rmse":0.9245575726717673}},"score":0.6181422899810566,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9757581623610256,2.9263782197897323],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..3bf2db5 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","deployment_expression_hash":"181a0bb9182d6e46e494e76b25bf1b7cd01f810364f5332cce03f84ea2737168","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","fitted_expression_hash":"181a0bb9182d6e46e494e76b25bf1b7cd01f810364f5332cce03f84ea2737168","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:15:43.475734+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2208094649827292,"max_error":3.2984159151464816,"r2":0.7754975781867444,"rmse":1.4858164425108333},"train":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"validation":{"mae":1.1510649598368563,"max_error":3.3530027996612013,"r2":0.7907998177604689,"rmse":1.4158372478930847}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3140238248606444,5.8938879654606104],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":15.183542,"metrics":{"blind":{"mae":3.363853280546027,"max_error":7.699157832190394,"r2":-0.5912875987412041,"rmse":3.955751341592366},"train":{"mae":3.277273721721169,"max_error":7.754033166915178,"r2":-0.49425203351840863,"rmse":3.89660653987248},"validation":{"mae":3.433332153157188,"max_error":7.321317885071039,"r2":-0.6878084693295914,"rmse":4.021553820325949}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.010679967701435,7.418640423566103],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"2.62157320000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908353616708182,"max_error":4.6708176233642575,"r2":-0.007178291496138467,"rmse":3.1470802912587015},"train":{"mae":2.921066099896483,"max_error":5.319211254345703,"r2":-2.51909604287448e-12,"rmse":3.1876793372692225},"validation":{"mae":2.8626079927672006,"max_error":4.6598780252807614,"r2":-0.013553298183515139,"rmse":3.1164172523762805}},"score":0.4016259865997008,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215732,2.6215732],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":9.129955,"metrics":{"blind":{"mae":2.622986019572818,"max_error":4.889133624732494,"r2":0.13665652238125992,"rmse":2.913710849469257},"train":{"mae":2.6856006253821483,"max_error":7.146483373770025,"r2":0.10149730483339814,"rmse":3.0215815459067383},"validation":{"mae":2.783640778826502,"max_error":4.973117732908577,"r2":0.04383618665933464,"rmse":3.0269026673471604}},"score":0.10702532569453102,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0798288751393557,3.5000352654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"3.130229 - Cl_F","loss":5.00354,"metrics":{"blind":{"mae":1.9900333357343043,"max_error":4.078651757908702,"r2":0.5011140801867573,"rmse":2.2149058407140387},"train":{"mae":1.966617911453936,"max_error":5.015497349666148,"r2":0.5075885776481766,"rmse":2.236859398334498},"validation":{"mae":1.9129208970265152,"max_error":4.23142528533721,"r2":0.5297271467371938,"rmse":2.1227911047736714}},"score":0.6014151038682609,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.129735779019356,9.534751806406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"2.61131734904041 - Cl_F","loss":4.6056814,"metrics":{"blind":{"mae":1.9069527389880654,"max_error":3.559740106949112,"r2":0.5471573077539751,"rmse":2.1102228762728723},"train":{"mae":1.9096122287941102,"max_error":4.496585698706559,"r2":0.5467428752334238,"rmse":2.146085138385904},"validation":{"mae":1.922810221594747,"max_error":3.7125136343776197,"r2":0.5339087787238634,"rmse":2.113332178793874}},"score":0.08285503356122426,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6486474299789458,9.015840155446432],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","loss":2.7579598,"metrics":{"blind":{"mae":1.2208094649827292,"max_error":3.2984159151464816,"r2":0.7754975781867444,"rmse":1.4858164425108333},"train":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"validation":{"mae":1.1510649598368563,"max_error":3.3530027996612013,"r2":0.7907998177604689,"rmse":1.4158372478930847}},"score":0.5127994248737797,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3140238248606444,5.8938879654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..8d91274 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*2.0656142","deployment_expression_hash":"6d6750195593406998142bf48b16b11ef421a6cd499c429937ba0591bc6cc43f","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*2.0656142","fitted_expression_hash":"6d6750195593406998142bf48b16b11ef421a6cd499c429937ba0591bc6cc43f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:15:42.633286+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.3402769290537544,"max_error":3.0360437918345453,"r2":0.6678464189823687,"rmse":1.5958468745098728},"train":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"validation":{"mae":1.3300093312300907,"max_error":3.218960764155072,"r2":0.6765219954423487,"rmse":1.6141063340094688}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.145443075139356,1.4344210654606102],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":12.544421,"metrics":{"blind":{"mae":2.8684347361078837,"max_error":6.3771596774458885,"r2":-0.5406305792338024,"rmse":3.436932514805208},"train":{"mae":3.008694631994161,"max_error":7.889390256255865,"r2":-0.5857438481503101,"rmse":3.5418106643670146},"validation":{"mae":3.182659452084082,"max_error":5.969889731146395,"r2":-0.6944867156826684,"rmse":3.6942718296402592}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.321071742102504,7.115950575098395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-2.49521160000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432287179861,"max_error":3.7753148091491697,"r2":-0.01595614682321611,"rmse":2.790996095970965},"train":{"mae":2.5900422881673064,"max_error":4.669188500708008,"r2":-4.871880676660112e-12,"rmse":2.8126055127156238},"validation":{"mae":2.692108148022383,"max_error":3.766448499029541,"r2":-0.012234470888502491,"rmse":2.855290664912694}},"score":0.46105355734490117,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952116,-2.4952116],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_rear_s - 1*2.5349655","loss":5.054905,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.6708211989580395,"r2":0.2722652745791272,"rmse":2.3621544857253993},"train":{"mae":2.013348879064355,"max_error":4.02626412385416,"r2":0.36100802225398165,"rmse":2.248311731291436},"validation":{"mae":2.0668845619370004,"max_error":3.7112145868568422,"r2":0.33413055471269004,"rmse":2.3158173723013027}},"score":0.22393170427017814,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.669909743356586,2.4838543219984768],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*2.0656142","loss":3.108637,"metrics":{"blind":{"mae":1.3402769290537544,"max_error":3.0360437918345453,"r2":0.6678464189823687,"rmse":1.5958468745098728},"train":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"validation":{"mae":1.3300093312300907,"max_error":3.218960764155072,"r2":0.6765219954423487,"rmse":1.6141063340094688}},"score":0.24308734628094714,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.145443075139356,1.4344210654606102],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..18d7e38 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*0.047770567","deployment_expression_hash":"146cb4e4486918475c7b7aeb031dd038431af03c751e6f112ef87677b89b597a","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"u_a*0.047770567","fitted_expression_hash":"146cb4e4486918475c7b7aeb031dd038431af03c751e6f112ef87677b89b597a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:16:19.306934+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.792549026468526,"max_error":1.3553333800936729,"r2":0.4955277217542605,"rmse":0.8732684043961452},"train":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"validation":{"mae":0.843185672421323,"max_error":1.41369525890418,"r2":0.3626586571053291,"rmse":0.924557572044722}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.975758038283074,2.9263780360126774],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134232600000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895724456045533,"r2":-0.008167293592157288,"rmse":1.2345122291799373},"train":{"mae":1.1050600609612102,"max_error":2.0743306238916017,"r2":-2.6630253557868855e-11,"rmse":1.228661372531006},"validation":{"mae":1.053684304769649,"max_error":1.7522828023168946,"r2":-0.03943540158406056,"rmse":1.1807193109970993}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.01342326,-0.01342326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.047770567","loss":0.43848303,"metrics":{"blind":{"mae":0.792549026468526,"max_error":1.3553333800936729,"r2":0.4955277217542605,"rmse":0.8732684043961452},"train":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"validation":{"mae":0.843185672421323,"max_error":1.41369525890418,"r2":0.3626586571053291,"rmse":0.924557572044722}},"score":0.6181422899810566,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.975758038283074,2.9263780360126774],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":7.0,"expression":"-0.22265555*(Cd_rear_a - 2.1157632)","loss":0.41677454,"metrics":{"blind":{"mae":0.5597545800863513,"max_error":1.0831070856676421,"r2":0.7259030764264068,"rmse":0.6436965402824143},"train":{"mae":0.5537463594057348,"max_error":1.3419679876102468,"r2":0.7239188465943218,"rmse":0.6455807694984669},"validation":{"mae":0.580474118022863,"max_error":1.0644880352826773,"r2":0.6832494771086401,"rmse":0.6517883362160121}},"score":0.016925235609630964,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1133194701055895,2.323819224293051],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..90007c8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot + 2.527837","deployment_expression_hash":"bf2f4dcbc26f25561a1f79c6512f0f2e63ad9b49206ee9ebd7b674fdbcea7778","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot + 2.527837","fitted_expression_hash":"bf2f4dcbc26f25561a1f79c6512f0f2e63ad9b49206ee9ebd7b674fdbcea7778","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:16:21.026745+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.1806141749827292,"max_error":3.4324002151464814,"r2":0.7768111869604954,"rmse":1.481463159928899},"train":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"validation":{"mae":1.1064035265035226,"max_error":3.486987099661201,"r2":0.7972616408363717,"rmse":1.393799383056294}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.44800812486064423,6.02787226546061],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":13.496986,"metrics":{"blind":{"mae":3.1259986830409616,"max_error":7.124041182920337,"r2":-0.5341537178900584,"rmse":3.8840882004039416},"train":{"mae":2.9146646192475907,"max_error":7.397327907383442,"r2":-0.3282736960013657,"rmse":3.6738245629120185},"validation":{"mae":3.335230086643535,"max_error":7.214824199676514,"r2":-0.6722606116507828,"rmse":4.002987966695086}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.1349442433565855,5.018819821998477],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"2.62157460000000","loss":10.161297,"metrics":{"blind":{"mae":2.890835291670818,"max_error":4.670816223364257,"r2":-0.007178215845467184,"rmse":3.14708017306774},"train":{"mae":2.9210661236252955,"max_error":5.3192098543457025,"r2":-4.106048834273679e-12,"rmse":3.187679337271752},"validation":{"mae":2.862607956869765,"max_error":4.659876625280761,"r2":-0.013553192878906106,"rmse":3.116417090483902}},"score":0.283880309775938,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215746,2.6215746],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":9.129955,"metrics":{"blind":{"mae":2.622986019572818,"max_error":4.889133624732494,"r2":0.13665652238125992,"rmse":2.913710849469257},"train":{"mae":2.6856006253821483,"max_error":7.146483373770025,"r2":0.10149730483339814,"rmse":3.0215815459067383},"validation":{"mae":2.783640778826502,"max_error":4.973117732908577,"r2":0.04383618665933464,"rmse":3.0269026673471604}},"score":0.10702532569453102,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0798288751393557,3.5000352654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"2.4874291 - Cl_F","loss":4.590328,"metrics":{"blind":{"mae":1.888369501632004,"max_error":3.435851857908702,"r2":0.5500516075208732,"rmse":2.1034684248310227},"train":{"mae":1.9022790779471612,"max_error":4.372697449666148,"r2":0.5482536968795856,"rmse":2.142505428202377},"validation":{"mae":1.9259868433650134,"max_error":3.5886253853372097,"r2":0.5265963571570702,"rmse":2.129845506935646}},"score":0.6876092845742764,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.772535679019356,8.891951906406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot + 2.527837","loss":2.7400086,"metrics":{"blind":{"mae":1.1806141749827292,"max_error":3.4324002151464814,"r2":0.7768111869604954,"rmse":1.481463159928899},"train":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"validation":{"mae":1.1064035265035226,"max_error":3.486987099661201,"r2":0.7972616408363717,"rmse":1.393799383056294}},"score":0.25799521106656803,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.44800812486064423,6.02787226546061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"2.6337664 - 0.5651944*Cl_F","loss":2.6598601,"metrics":{"blind":{"mae":1.3842499648009514,"max_error":3.2334565127882353,"r2":0.7331511643474851,"rmse":1.619896626634004},"train":{"mae":1.3464571127814537,"max_error":4.296159168137576,"r2":0.7382362286772759,"rmse":1.6309077514193777},"validation":{"mae":1.2545942095061848,"max_error":3.2818635564896868,"r2":0.767260755745036,"rmse":1.4933689394168923}},"score":0.029687531655651335,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9043306372989774,6.253566824852967],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..c207827 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 2.5888972","deployment_expression_hash":"ab0fac5fbe0dfe582418b064efd1a83468b6e7147c24a79e44e0b94ce5fd16db","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 2.5888972","fitted_expression_hash":"ab0fac5fbe0dfe582418b064efd1a83468b6e7147c24a79e44e0b94ce5fd16db","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:16:20.214428+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.218866819110669,"max_error":3.559326791834545,"r2":0.6946531499789537,"rmse":1.5300952605635216},"train":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"validation":{"mae":1.2223595461132464,"max_error":3.742243764155072,"r2":0.6952446526704492,"rmse":1.5666985134960223}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.668726075139356,0.9111380654606105],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":64.219315,"metrics":{"blind":{"mae":7.071967412205413,"max_error":12.342433592304587,"r2":-6.613319870329023,"rmse":7.640271405462806},"train":{"mae":7.417815929255547,"max_error":13.616677049547434,"r2":-7.11798090585588,"rmse":8.013695501130307},"validation":{"mae":7.217908509481603,"max_error":12.146136071532965,"r2":-6.6175326392721505,"rmse":7.832797986585039}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.609025668585673,8.424736792221665],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"-2.49521260000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432387179861,"max_error":3.77531380914917,"r2":-0.01595623806061197,"rmse":2.7909962212929145},"train":{"mae":2.5900423220656115,"max_error":4.6691875007080075,"r2":-3.4285907446474084e-12,"rmse":2.812605512713594},"validation":{"mae":2.6921082762275113,"max_error":3.766447499029541,"r2":-0.012234548838035098,"rmse":2.85529077485193}},"score":2.0940815545832248,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952126,-2.4952126],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_rear_s - 2.6249537","loss":5.062883,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.760809398958039,"r2":0.26381545029302644,"rmse":2.3758285517349487},"train":{"mae":2.0087732078779146,"max_error":4.111411532157612,"r2":0.3599996578910566,"rmse":2.250085011552875},"validation":{"mae":2.0784215106549495,"max_error":3.801202786856842,"r2":0.322088185209798,"rmse":2.336664526788717}},"score":0.22314319183510378,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.759897943356585,2.393866121998477],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 2.5888972","loss":2.8347545,"metrics":{"blind":{"mae":1.218866819110669,"max_error":3.559326791834545,"r2":0.6946531499789537,"rmse":1.5300952605635216},"train":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"validation":{"mae":1.2223595461132464,"max_error":3.742243764155072,"r2":0.6952446526704492,"rmse":1.5666985134960223}},"score":0.28999037329093796,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.668726075139356,0.9111380654606105],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..d55fd66 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","deployment_expression_hash":"ad3957f187930836e042e4076d519939b9b4b82baba96672ae0908daa35d1512","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","fitted_expression_hash":"ad3957f187930836e042e4076d519939b9b4b82baba96672ae0908daa35d1512","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:17:02.354184+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2729105290933312,"max_error":0.5534815064043161,"r2":0.9363418710292042,"rmse":0.31021016822394026},"train":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"validation":{"mae":0.2729342924176888,"max_error":0.5442857986780238,"r2":0.9311555963691932,"rmse":0.3038660884073519}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.717928398774878,2.423205664335203],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134323540000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895633516045531,"r2":-0.008165956759142556,"rmse":1.2345114106961088},"train":{"mae":1.1050602150968036,"max_error":2.0743397178916014,"r2":-1.5780421414035573e-10,"rmse":1.2286613726115903},"validation":{"mae":1.053683138872213,"max_error":1.7522737083168944,"r2":-0.039432282898578475,"rmse":1.1807175397013892}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013432354,-0.013432354],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.042408347","loss":0.4519814,"metrics":{"blind":{"mae":0.813586543020139,"max_error":1.3910949190707593,"r2":0.4797890789250051,"rmse":0.8867859977204867},"train":{"mae":0.5660871312071853,"max_error":1.5464987342679084,"r2":0.7005969931280094,"rmse":0.6722956227971508},"validation":{"mae":0.8535760498650665,"max_error":1.424967352069816,"r2":0.35890436759481037,"rmse":0.9272766488995434}},"score":0.6029823311842033,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7539802798561692,2.5978937031332308],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":7.0,"expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","loss":0.1294061,"metrics":{"blind":{"mae":0.2729105290933312,"max_error":0.5534815064043161,"r2":0.9363418710292042,"rmse":0.31021016822394026},"train":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"validation":{"mae":0.2729342924176888,"max_error":0.5442857986780238,"r2":0.9311555963691932,"rmse":0.3038660884073519}},"score":0.4168951689793953,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.717928398774878,2.423205664335203],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..95972da --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","deployment_expression_hash":"9cbfc156504212533bf240188feac0d63233b461dcb3ca132a5a27979377b348","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","fitted_expression_hash":"9cbfc156504212533bf240188feac0d63233b461dcb3ca132a5a27979377b348","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:17:04.102221+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2755299445953692,"max_error":3.1184842151464816,"r2":0.767989526151351,"rmse":1.5104572582637101},"train":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"validation":{"mae":1.2253899443191987,"max_error":3.1730710996612013,"r2":0.7762274041086467,"rmse":1.4643191914463538}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.13409212486064437,5.71395626546061],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.62159370000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908343366708182,"max_error":4.670797123364258,"r2":-0.0071771837939811345,"rmse":3.147078560667099},"train":{"mae":2.92106644735411,"max_error":5.319190754345703,"r2":-6.429123899920342e-11,"rmse":3.1876793373676775},"validation":{"mae":2.862607467126175,"max_error":4.659857525280762,"r2":-0.013551756264030823,"rmse":3.1164148818712865}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215937,2.6215937],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"2.6215758 - Cl_F","loss":4.6083293,"metrics":{"blind":{"mae":1.908491506632004,"max_error":3.569998557908702,"r2":0.5467777045378612,"rmse":2.1111071564010846},"train":{"mae":1.910481589044923,"max_error":4.506844149666149,"r2":0.5464823437893013,"rmse":2.146701832870287},"validation":{"mae":1.9225471843906543,"max_error":3.7227720853372097,"r2":0.5343706628442977,"rmse":2.1122847909909384}},"score":0.39536035398463093,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6383889790193558,9.026098606406022],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","loss":2.8385503,"metrics":{"blind":{"mae":1.2755299445953692,"max_error":3.1184842151464816,"r2":0.767989526151351,"rmse":1.5104572582637101},"train":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"validation":{"mae":1.2253899443191987,"max_error":3.1730710996612013,"r2":0.7762274041086467,"rmse":1.4643191914463538}},"score":0.24228595970756947,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.13409212486064437,5.71395626546061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"Cl_F*(-0.6569848) - 1*(-2.533426)","loss":2.502614,"metrics":{"blind":{"mae":1.3206681901676227,"max_error":3.163523516475059,"r2":0.748315077631081,"rmse":1.5731974887997946},"train":{"mae":1.2895264356909288,"max_error":4.242869309296062,"r2":0.7537112132910557,"rmse":1.581965277537945},"validation":{"mae":1.2427061096977319,"max_error":3.2228470921425374,"r2":0.7721975516596017,"rmse":1.477445596703377}},"score":0.12595767848350647,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.579275708351076,6.741100135062098],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..b7aa142 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*2.3353596","deployment_expression_hash":"e41d80e12026baa0ac8e7faa87ad06fc3c91b90a970ec0b508f1a9ccd4c2c91a","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*2.3353596","fitted_expression_hash":"e41d80e12026baa0ac8e7faa87ad06fc3c91b90a970ec0b508f1a9ccd4c2c91a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v2-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:17:03.197732+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2510060677422536,"max_error":3.305789191834545,"r2":0.6905846859243807,"rmse":1.5402550813103861},"train":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"validation":{"mae":1.263171385450738,"max_error":3.488706164155072,"r2":0.6946646282441555,"rmse":1.5681887111977686}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.415188475139356,1.1646756654606105],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":17.19205,"metrics":{"blind":{"mae":2.720237749362423,"max_error":7.639943297486752,"r2":-0.7201762537462626,"rmse":3.6316854153749443},"train":{"mae":3.187765304700144,"max_error":9.732513713650405,"r2":-1.1732518346275844,"rmse":4.146329877276113},"validation":{"mae":2.9314079958279855,"max_error":7.841783597599715,"r2":-0.9505947222473161,"rmse":3.9636316391931063}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.2260747868567705,3.1508038518950343],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"-2.49521160000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432287179861,"max_error":3.7753148091491697,"r2":-0.01595614682321611,"rmse":2.790996095970965},"train":{"mae":2.5900422881673064,"max_error":4.669188500708008,"r2":-4.871880676660112e-12,"rmse":2.8126055127156238},"validation":{"mae":2.692108148022383,"max_error":3.766448499029541,"r2":-0.012234470888502491,"rmse":2.855290664912694}},"score":0.7762246001032266,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952116,-2.4952116],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_tot - 2.5485299","loss":6.2971563,"metrics":{"blind":{"mae":1.7029901163345862,"max_error":3.7573635190208794,"r2":0.4829200623297367,"rmse":1.9911344742924055},"train":{"mae":2.0644126064997086,"max_error":8.097680332809256,"r2":0.2039746660452325,"rmse":2.509413721886488},"validation":{"mae":1.8427386461340525,"max_error":4.019179345895106,"r2":0.452045784418171,"rmse":2.1007864147039568}},"score":0.11406215851007544,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.647178597137833,4.086449608817196],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_tot"]},{"complexity":5.0,"expression":"Cl_rear_s - 1*2.41165401309001","loss":5.070277,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.547509712048049,"r2":0.28041368704902747,"rmse":2.348892790651724},"train":{"mae":2.02033603354626,"max_error":4.149575610764151,"r2":0.35906491030345355,"rmse":2.2517275842069915},"validation":{"mae":2.0545208999461226,"max_error":3.587903099946852,"r2":0.34736661699343185,"rmse":2.29268508879271}},"score":0.2167026993229283,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.546598256446595,2.607165808908467],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*2.3353596","loss":2.8990638,"metrics":{"blind":{"mae":1.2510060677422536,"max_error":3.305789191834545,"r2":0.6905846859243807,"rmse":1.5402550813103861},"train":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"validation":{"mae":1.263171385450738,"max_error":3.488706164155072,"r2":0.6946646282441555,"rmse":1.5681887111977686}},"score":0.5590075939329512,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.415188475139356,1.1646756654606105],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..a9a1303 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot","deployment_expression_hash":"dfcad8d41d75b0c8dbfecc48d1d073fbc8b5d198d8264287ad85e71c978a3758","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot","fitted_expression_hash":"dfcad8d41d75b0c8dbfecc48d1d073fbc8b5d198d8264287ad85e71c978a3758","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:04:40.745549+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4807591224031057,"max_error":1.627055261284113,"r2":0.8842103151952228,"rmse":0.6385131479629004},"train":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"validation":{"mae":0.48503216925578624,"max_error":1.2458199402317405,"r2":0.8863621001990252,"rmse":0.5947863360502038}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9610751662403345,1.5654251910746098],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":3.2979498,"metrics":{"blind":{"mae":1.5436556888310862,"max_error":3.2464210209436715,"r2":0.06427470012181435,"rmse":1.8151356834967187},"train":{"mae":1.5708730238916746,"max_error":3.3454196541570127,"r2":-0.0014577304171550232,"rmse":1.816025852382777},"validation":{"mae":1.4997133829727738,"max_error":2.7058748302515596,"r2":0.05968860954826727,"rmse":1.7109417819599864}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9352073539048433,0.5065408768132329],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"-0.996941300000000","loss":3.2931488,"metrics":{"blind":{"mae":1.7200390351827193,"max_error":2.8156977611434937,"r2":-0.01742040900005759,"rmse":1.892714595604996},"train":{"mae":1.6267555234535644,"max_error":3.0961813646209717,"r2":-3.2946620986962216e-09,"rmse":1.8147036626854143},"validation":{"mae":1.6889744670037719,"max_error":3.101093502606201,"r2":-0.18743284695808082,"rmse":1.9226662937548094}},"score":0.001456813542160996,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9969413,-0.9969413],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":0.6104254,"metrics":{"blind":{"mae":0.4807591224031057,"max_error":1.627055261284113,"r2":0.8842103151952228,"rmse":0.6385131479629004},"train":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"validation":{"mae":0.48503216925578624,"max_error":1.2458199402317405,"r2":0.8863621001990252,"rmse":0.5947863360502038}},"score":1.6854433769531103,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9610751662403345,1.5654251910746098],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"0.3312638 - Cl_tot","loss":0.5906293,"metrics":{"blind":{"mae":0.6031477179297087,"max_error":1.7469508953738688,"r2":0.82388128422657,"rmse":0.7874766110574662},"train":{"mae":0.6116669796714734,"max_error":2.1142226505678416,"r2":0.8206490872044006,"rmse":0.7685241349057617},"validation":{"mae":0.49694033073690735,"max_error":1.9446131765496255,"r2":0.8610860156410802,"rmse":0.6576159946181962}},"score":0.032967512517371254,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.023643166909766,1.9840666063476085],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_tot"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*0.36166105","loss":0.50883603,"metrics":{"blind":{"mae":0.5115897817526611,"max_error":1.3084667483314454,"r2":0.8913520806262037,"rmse":0.6185084190755046},"train":{"mae":0.5795634345522055,"max_error":1.5807728045650244,"r2":0.845486504602687,"rmse":0.7133274286136856},"validation":{"mae":0.6033473594860524,"max_error":1.6074809902317404,"r2":0.8323003613461467,"rmse":0.7225459099894854}},"score":0.07453137772339904,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3227362162403344,1.2037641410746098],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..257a6e6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"4.2450876 - Cd_F","deployment_expression_hash":"560d207094dc51b5b0c113561d108ceb9e3a7b123d80c43edd79fcd329d6dc2b","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"4.2450876 - Cd_F","fitted_expression_hash":"560d207094dc51b5b0c113561d108ceb9e3a7b123d80c43edd79fcd329d6dc2b","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:04:42.546179+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.532682616856469,"max_error":1.6600453158968893,"r2":0.4391066573852819,"rmse":0.6409879253078663},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4864923012617771,"max_error":1.4844708053057847,"r2":0.5095307268937257,"rmse":0.621705822090268},"train":{"mae":0.532682616856469,"max_error":1.6600453158968893,"r2":0.4391066573852819,"rmse":0.6409879253078663},"validation":{"mae":0.4486209835420844,"max_error":1.1177723921498117,"r2":0.2763789347829002,"rmse":0.5415654961033757}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4947090322745797,5.308845758124983],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":12.83894,"metrics":{"blind":{"mae":3.410895864161921,"max_error":5.270724028814584,"r2":-16.353806974602914,"rmse":3.69808094752343},"train":{"mae":3.3522688799284417,"max_error":5.331191410223255,"r2":-16.527088709326897,"rmse":3.5831467740708467},"validation":{"mae":3.7664415053305,"max_error":5.270716132217785,"r2":-37.48526057083856,"rmse":3.9495044019490466}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9717117354739457,2.1014768863096833],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"3.58964230000000","loss":0.73251975,"metrics":{"blind":{"mae":0.7156032913034058,"max_error":1.9754979747436523,"r2":-0.015120028644284744,"rmse":0.894412232581936},"train":{"mae":0.6809710428167568,"max_error":1.9874165195129394,"r2":-1.3496981310368028e-11,"rmse":0.8558737485927089},"validation":{"mae":0.541179220479486,"max_error":1.2444989818237304,"r2":-0.03361822797461311,"rmse":0.6472550779232124}},"score":2.863747716333927,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.5896423,3.5896423],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"4.2450876 - Cd_F","loss":0.41086546,"metrics":{"blind":{"mae":0.4864923012617771,"max_error":1.4844708053057847,"r2":0.5095307268937257,"rmse":0.621705822090268},"train":{"mae":0.532682616856469,"max_error":1.6600453158968893,"r2":0.4391066573852819,"rmse":0.6409879253078663},"validation":{"mae":0.4486209835420844,"max_error":1.1177723921498117,"r2":0.2763789347829002,"rmse":0.5415654961033757}},"score":0.2891122450053741,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4947090322745797,5.308845758124983],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":7.0,"expression":"(5.324223 - Cd_F)*0.7627375","loss":0.3358053,"metrics":{"blind":{"mae":0.4589053249149124,"max_error":1.263673335381367,"r2":0.6122909973024155,"rmse":0.5527541027302021},"train":{"mae":0.4893818823065092,"max_error":1.3685764356791825,"r2":0.5415752194359944,"rmse":0.5794870682571727},"validation":{"mae":0.41473485466623145,"max_error":0.8880761070592547,"r2":0.45388153753298177,"rmse":0.4704774537223519}},"score":0.06724476175038548,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.9631676676620327,4.872352778595355],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..4cbb3da --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s1-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-3.42718580000000","deployment_expression_hash":"80b7b061100c3450defbc0617131116151a57e1f2e21128ba95ff8448a0efc0d","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-3.42718580000000","fitted_expression_hash":"80b7b061100c3450defbc0617131116151a57e1f2e21128ba95ff8448a0efc0d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:04:41.666962+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.9544928717990875,"max_error":2.6677375101287844,"r2":-0.06960118015226113,"rmse":1.1775542696652672},"train":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"validation":{"mae":1.1611861102038068,"max_error":2.453357245846558,"r2":-0.02474796598124085,"rmse":1.3309862414902394}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4271858,-3.4271858],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":14.924565,"metrics":{"blind":{"mae":4.015475215521382,"max_error":5.428431107196957,"r2":-12.492117051655832,"rmse":4.182250530397289},"train":{"mae":3.666626389869326,"max_error":5.4882073793851305,"r2":-10.199833829937404,"rmse":3.8632325419886757},"validation":{"mae":3.573956801699518,"max_error":5.306768887676299,"r2":-7.347420144707828,"rmse":3.798753998542295}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9717117354739457,2.1014768863096833],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"-3.42718580000000","loss":1.3325701,"metrics":{"blind":{"mae":0.9544928717990875,"max_error":2.6677375101287844,"r2":-0.06960118015226113,"rmse":1.1775542696652672},"train":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"validation":{"mae":1.1611861102038068,"max_error":2.453357245846558,"r2":-0.02474796598124085,"rmse":1.3309862414902394}},"score":2.4158990295712357,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4271858,-3.4271858],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_a","loss":1.2548754,"metrics":{"blind":{"mae":1.0449586209085282,"max_error":2.449974110815674,"r2":-0.16331101247692859,"rmse":1.2280552736678032},"train":{"mae":0.944066776534058,"max_error":2.35066295764409,"r2":0.05830445580236965,"rmse":1.1202122533467724},"validation":{"mae":1.0301506146462112,"max_error":2.44936775311362,"r2":0.15944264802101826,"rmse":1.2054486341829402}},"score":0.06007319876769049,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.716223447350785,-2.496328321285546],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_a"]},{"complexity":5.0,"expression":"Cd_F + Cd_rear_s - Cl_rear_a","loss":1.1308674,"metrics":{"blind":{"mae":1.0528625244176966,"max_error":2.2540177875198424,"r2":-0.0741091218348422,"rmse":1.1800331209839525},"train":{"mae":0.9068121204115214,"max_error":2.3066944039892405,"r2":0.1513638410233421,"rmse":1.0634224568677353},"validation":{"mae":1.055953425432586,"max_error":2.4236992951482534,"r2":0.144494821296957,"rmse":1.2161197879395234}},"score":0.05202566795249283,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.743477223906666,-1.3408857630565763],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_s","Cl_rear_a"]},{"complexity":6.0,"expression":"Cd_F - Cl_rear_a - 0.6148392","loss":0.90536934,"metrics":{"blind":{"mae":0.6670868822679534,"max_error":2.6729006642240107,"r2":0.3887930894727254,"rmse":0.8901518990766994},"train":{"mae":0.6859475623004999,"max_error":2.877565050334391,"r2":0.32058412557066684,"rmse":0.9515090121756004},"validation":{"mae":0.8716926283936811,"max_error":3.012870037182887,"r2":0.15108006119686745,"rmse":1.2114302129564491}},"score":0.22239725692077716,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4231090700018227,-2.462265839869809],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cl_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_front.json new file mode 100644 index 0000000..76fb308 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot","deployment_expression_hash":"dfcad8d41d75b0c8dbfecc48d1d073fbc8b5d198d8264287ad85e71c978a3758","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot","fitted_expression_hash":"dfcad8d41d75b0c8dbfecc48d1d073fbc8b5d198d8264287ad85e71c978a3758","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:05:19.996720+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.4807591224031057,"max_error":1.627055261284113,"r2":0.8842103151952228,"rmse":0.6385131479629004},"train":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"validation":{"mae":0.48503216925578624,"max_error":1.2458199402317405,"r2":0.8863621001990252,"rmse":0.5947863360502038}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9610751662403345,1.5654251910746098],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.996842800000000","loss":3.293149,"metrics":{"blind":{"mae":1.7200291851827192,"max_error":2.8155992611434937,"r2":-0.01740655503398214,"rmse":1.8927017092441418},"train":{"mae":1.626760531928141,"max_error":3.0960828646209717,"r2":-9.736655925962623e-12,"rmse":1.8147036597048312},"validation":{"mae":1.6889466849524895,"max_error":3.100995002606201,"r2":-0.18738451196153494,"rmse":1.9226271618516302}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9968428,-0.9968428],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":0.6104254,"metrics":{"blind":{"mae":0.4807591224031057,"max_error":1.627055261284113,"r2":0.8842103151952228,"rmse":0.6385131479629004},"train":{"mae":0.6030272865280464,"max_error":1.9424338545650244,"r2":0.8146377915041603,"rmse":0.7812972805506826},"validation":{"mae":0.48503216925578624,"max_error":1.2458199402317405,"r2":0.8863621001990252,"rmse":0.5947863360502038}},"score":1.6854434376852563,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.9610751662403345,1.5654251910746098],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"0.3312596 - Cl_tot","loss":0.59062934,"metrics":{"blind":{"mae":0.6031481379297087,"max_error":1.746946695373869,"r2":0.8238812466549623,"rmse":0.7874766950541061},"train":{"mae":0.6116669084850327,"max_error":2.1142268505678414,"r2":0.8206490872116979,"rmse":0.7685241348901267},"validation":{"mae":0.4969410845830613,"max_error":1.9446173765496253,"r2":0.8610856777335283,"rmse":0.6576167944414708}},"score":0.03296744479299885,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.023647366909766,1.9840624063476087],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_tot"]},{"complexity":5.0,"expression":"-Cd_tot + Cl_rear_s - Cl_tot","loss":0.43822038,"metrics":{"blind":{"mae":0.4485898249259662,"max_error":1.4922307189553976,"r2":0.8925188211545467,"rmse":0.6151784580069828},"train":{"mae":0.4951097644540931,"max_error":1.633214071393013,"r2":0.8669296871659338,"rmse":0.6619821879852604},"validation":{"mae":0.33305069900476764,"max_error":1.0505659061018378,"r2":0.9335120593704735,"rmse":0.4549574953623542}},"score":0.2984667118456428,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.062552052550018,2.5371369265485555],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_lower.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_lower.json new file mode 100644 index 0000000..38bb581 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cd_rear_s - 1*(-3.797646)","deployment_expression_hash":"c38ca96bad52e59d29e64c07dd300b1254fefd10d59326fc62206618a6a3c95c","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_s - 1*(-3.797646)","fitted_expression_hash":"c38ca96bad52e59d29e64c07dd300b1254fefd10d59326fc62206618a6a3c95c","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:05:21.774830+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5887325040894211,"max_error":1.682232260654032,"r2":0.3242440775514327,"rmse":0.7035656634903266},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.5933509859058155,"max_error":1.6154779665603338,"r2":0.32705078694623346,"rmse":0.7282327008549573},"train":{"mae":0.5887325040894211,"max_error":1.682232260654032,"r2":0.3242440775514327,"rmse":0.7035656634903266},"validation":{"mae":0.5868111061441245,"max_error":1.0712929106748699,"r2":-0.1082595105926838,"rmse":0.6702180501635275}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.8624386460951565,4.304186876813233],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"3.58964230000000","loss":0.73251975,"metrics":{"blind":{"mae":0.7156032913034058,"max_error":1.9754979747436523,"r2":-0.015120028644284744,"rmse":0.894412232581936},"train":{"mae":0.6809710428167568,"max_error":1.9874165195129394,"r2":-1.3496981310368028e-11,"rmse":0.8558737485927089},"validation":{"mae":0.541179220479486,"max_error":1.2444989818237304,"r2":-0.03361822797461311,"rmse":0.6472550779232124}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.5896423,3.5896423],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_s - 1*(-3.797646)","loss":0.4950046,"metrics":{"blind":{"mae":0.5933509859058155,"max_error":1.6154779665603338,"r2":0.32705078694623346,"rmse":0.7282327008549573},"train":{"mae":0.5887325040894211,"max_error":1.682232260654032,"r2":0.3242440775514327,"rmse":0.7035656634903266},"validation":{"mae":0.5868111061441245,"max_error":1.0712929106748699,"r2":-0.1082595105926838,"rmse":0.6702180501635275}},"score":0.19596162376513773,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.8624386460951565,4.304186876813233],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_s + Cd_rear_s - 1*(-4.005648)","loss":0.44762772,"metrics":{"blind":{"mae":0.5520231275010701,"max_error":1.3169503005425929,"r2":0.4577865432432776,"rmse":0.6536784653031794},"train":{"mae":0.579769508551828,"max_error":1.3770463017951249,"r2":0.3889206242245522,"rmse":0.6690499137238294},"validation":{"mae":0.6498931870246827,"max_error":1.3446644844282867,"r2":-0.3264650947573231,"rmse":0.7332351897438764}},"score":0.05030257531986474,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.135233292190313,5.018729753626466],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_upper.json b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_upper.json new file mode 100644 index 0000000..809ce70 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v2-karman_re50-symmetry-s2-20260718/formulas/karman_re50_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"-3.42718580000000","deployment_expression_hash":"80b7b061100c3450defbc0617131116151a57e1f2e21128ba95ff8448a0efc0d","dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-3.42718580000000","fitted_expression_hash":"80b7b061100c3450defbc0617131116151a57e1f2e21128ba95ff8448a0efc0d","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re50 --mode per-scene --run-id article-discovery-v2-karman_re50-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:05:20.860193+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.9544928717990875,"max_error":2.6677375101287844,"r2":-0.06960118015226113,"rmse":1.1775542696652672},"train":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"validation":{"mae":1.1611861102038068,"max_error":2.453357245846558,"r2":-0.02474796598124085,"rmse":1.3309862414902394}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re50":197},"scene_sample_counts":{"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4271858,-3.4271858],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":12.088527,"metrics":{"blind":{"mae":3.604053920690467,"max_error":5.507440937450156,"r2":-10.324960188781834,"rmse":3.831672100422448},"train":{"mae":3.2191855638507225,"max_error":5.482499948469922,"r2":-8.071586939600623,"rmse":3.476855925181549},"validation":{"mae":3.43715241420404,"max_error":5.008954750814155,"r2":-6.871280799844309,"rmse":3.688822315858675}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9352073539048433,0.5065408768132329],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"-3.42718580000000","loss":1.3325701,"metrics":{"blind":{"mae":0.9544928717990875,"max_error":2.6677375101287844,"r2":-0.06960118015226113,"rmse":1.1775542696652672},"train":{"mae":0.9356876636247213,"max_error":2.5723350309570314,"r2":0.0,"rmse":1.1543700781767878},"validation":{"mae":1.1611861102038068,"max_error":2.453357245846558,"r2":-0.02474796598124085,"rmse":1.3309862414902394}},"score":2.2051473374217356,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.4271858,-3.4271858],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_a","loss":1.2548754,"metrics":{"blind":{"mae":1.0449586209085282,"max_error":2.449974110815674,"r2":-0.16331101247692859,"rmse":1.2280552736678032},"train":{"mae":0.944066776534058,"max_error":2.35066295764409,"r2":0.05830445580236965,"rmse":1.1202122533467724},"validation":{"mae":1.0301506146462112,"max_error":2.44936775311362,"r2":0.15944264802101826,"rmse":1.2054486341829402}},"score":0.06007319876769049,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.716223447350785,-2.496328321285546],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot","Cl_rear_a"]},{"complexity":4.0,"expression":"Cl_rear_s - 4.079724","loss":1.1671332,"metrics":{"blind":{"mae":0.9769536198856027,"max_error":2.0741068498944637,"r2":0.002200116706522759,"rmse":1.1373436813298115},"train":{"mae":0.9089042345216766,"max_error":2.1135234992733,"r2":0.12414875776806178,"rmse":1.0803394525857546},"validation":{"mae":0.9597405955830078,"max_error":2.168394806959271,"r2":0.2688186250476442,"rmse":1.1242880480019906}},"score":0.07248579917779054,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1671016152729985,-2.685892199330568],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":5.0,"expression":"Cd_F + Cd_rear_s - Cl_rear_a","loss":1.1308674,"metrics":{"blind":{"mae":1.0528625244176966,"max_error":2.2540177875198424,"r2":-0.0741091218348422,"rmse":1.1800331209839525},"train":{"mae":0.9068121204115214,"max_error":2.3066944039892405,"r2":0.1513638410233421,"rmse":1.0634224568677353},"validation":{"mae":1.055953425432586,"max_error":2.4236992951482534,"r2":0.144494821296957,"rmse":1.2161197879395234}},"score":0.031565536727195136,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.743477223906666,-1.3408857630565763],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_s","Cl_rear_a"]},{"complexity":6.0,"expression":"Cd_F - Cl_rear_a - 0.6149357","loss":0.90536934,"metrics":{"blind":{"mae":0.6670193322679534,"max_error":2.672997164224011,"r2":0.38882810685178626,"rmse":0.8901263993380607},"train":{"mae":0.6859148504360932,"max_error":2.877661550334391,"r2":0.3205841337867452,"rmse":0.9515090064223695},"validation":{"mae":0.8716604617270145,"max_error":3.012966537182887,"r2":0.15106141278682828,"rmse":1.211443518759651}},"score":0.22239725692077716,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.423205570001823,-2.4623623398698093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cl_rear_a"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v2-karman_re50-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..e7f8acc --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*0.04777057","deployment_expression_hash":"c7319f4a4f649c131c12cefe7df915629e08bde11dbfdf3ad08eb95caf4ba591","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"u_a*0.04777057","fitted_expression_hash":"c7319f4a4f649c131c12cefe7df915629e08bde11dbfdf3ad08eb95caf4ba591","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:16:43.629263+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.7925490183237807,"max_error":1.3553333600861728,"r2":0.49552772765665365,"rmse":0.8732683992874666},"train":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"validation":{"mae":0.8431856691617988,"max_error":1.4136953324948847,"r2":0.36265865624082505,"rmse":0.9245575726717673}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9757581623610256,2.9263782197897323],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":426.11127,"metrics":{"blind":{"mae":13.34319668225944,"max_error":30.741247236728668,"r2":-161.25589727673974,"rmse":15.661355202811817},"train":{"mae":16.8524036591841,"max_error":59.49045713245869,"r2":-281.26605371406964,"rmse":20.64246375031093},"validation":{"mae":12.996848466973274,"max_error":32.82349652051926,"r2":-167.0321085391632,"rmse":15.012190014837994}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-41.35931730270386,61.25901825726032],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":2.0,"expression":"-0.0134123950000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895833106045532,"r2":-0.008168890908549109,"rmse":1.2345132071455245},"train":{"mae":1.1050598768086677,"max_error":2.0743392319683838,"r2":-1.3560930156586437e-11,"rmse":1.2286613725229774},"validation":{"mae":1.053685697718367,"max_error":1.7522936673168945,"r2":-0.0394391277758499,"rmse":1.1807214273299913}},"score":5.642850097417103,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013412395,-0.013412395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.04777057","loss":0.43848303,"metrics":{"blind":{"mae":0.7925490183237807,"max_error":1.3553333600861728,"r2":0.49552772765665365,"rmse":0.8732683992874666},"train":{"mae":0.5566115746979067,"max_error":1.5402477034856676,"r2":0.7095386266334591,"rmse":0.6621805162411314},"validation":{"mae":0.8431856691617988,"max_error":1.4136953324948847,"r2":0.36265865624082505,"rmse":0.9245575726717673}},"score":0.6181422899810566,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.9757581623610256,2.9263782197897323],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..c1ebae2 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","deployment_expression_hash":"181a0bb9182d6e46e494e76b25bf1b7cd01f810364f5332cce03f84ea2737168","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","fitted_expression_hash":"181a0bb9182d6e46e494e76b25bf1b7cd01f810364f5332cce03f84ea2737168","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:16:45.117117+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2208094649827292,"max_error":3.2984159151464816,"r2":0.7754975781867444,"rmse":1.4858164425108333},"train":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"validation":{"mae":1.1510649598368563,"max_error":3.3530027996612013,"r2":0.7907998177604689,"rmse":1.4158372478930847}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3140238248606444,5.8938879654606104],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":15.183542,"metrics":{"blind":{"mae":3.363853280546027,"max_error":7.699157832190394,"r2":-0.5912875987412041,"rmse":3.955751341592366},"train":{"mae":3.277273721721169,"max_error":7.754033166915178,"r2":-0.49425203351840863,"rmse":3.89660653987248},"validation":{"mae":3.433332153157188,"max_error":7.321317885071039,"r2":-0.6878084693295914,"rmse":4.021553820325949}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.010679967701435,7.418640423566103],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"2.62157320000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908353616708182,"max_error":4.6708176233642575,"r2":-0.007178291496138467,"rmse":3.1470802912587015},"train":{"mae":2.921066099896483,"max_error":5.319211254345703,"r2":-2.51909604287448e-12,"rmse":3.1876793372692225},"validation":{"mae":2.8626079927672006,"max_error":4.6598780252807614,"r2":-0.013553298183515139,"rmse":3.1164172523762805}},"score":0.4016259865997008,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215732,2.6215732],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":9.129955,"metrics":{"blind":{"mae":2.622986019572818,"max_error":4.889133624732494,"r2":0.13665652238125992,"rmse":2.913710849469257},"train":{"mae":2.6856006253821483,"max_error":7.146483373770025,"r2":0.10149730483339814,"rmse":3.0215815459067383},"validation":{"mae":2.783640778826502,"max_error":4.973117732908577,"r2":0.04383618665933464,"rmse":3.0269026673471604}},"score":0.10702532569453102,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0798288751393557,3.5000352654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"3.130229 - Cl_F","loss":5.00354,"metrics":{"blind":{"mae":1.9900333357343043,"max_error":4.078651757908702,"r2":0.5011140801867573,"rmse":2.2149058407140387},"train":{"mae":1.966617911453936,"max_error":5.015497349666148,"r2":0.5075885776481766,"rmse":2.236859398334498},"validation":{"mae":1.9129208970265152,"max_error":4.23142528533721,"r2":0.5297271467371938,"rmse":2.1227911047736714}},"score":0.6014151038682609,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.129735779019356,9.534751806406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":5.0,"expression":"2.61131734904041 - Cl_F","loss":4.6056814,"metrics":{"blind":{"mae":1.9069527389880654,"max_error":3.559740106949112,"r2":0.5471573077539751,"rmse":2.1102228762728723},"train":{"mae":1.9096122287941102,"max_error":4.496585698706559,"r2":0.5467428752334238,"rmse":2.146085138385904},"validation":{"mae":1.922810221594747,"max_error":3.7125136343776197,"r2":0.5339087787238634,"rmse":2.113332178793874}},"score":0.08285503356122426,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6486474299789458,9.015840155446432],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*(-2.3938527)","loss":2.7579598,"metrics":{"blind":{"mae":1.2208094649827292,"max_error":3.2984159151464816,"r2":0.7754975781867444,"rmse":1.4858164425108333},"train":{"mae":1.3085449666788695,"max_error":4.752630673770025,"r2":0.72858196861815,"rmse":1.6607106677877295},"validation":{"mae":1.1510649598368563,"max_error":3.3530027996612013,"r2":0.7907998177604689,"rmse":1.4158372478930847}},"score":0.5127994248737797,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.3140238248606444,5.8938879654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..1b82fc0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s0-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*2.0656142","deployment_expression_hash":"6d6750195593406998142bf48b16b11ef421a6cd499c429937ba0591bc6cc43f","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*2.0656142","fitted_expression_hash":"6d6750195593406998142bf48b16b11ef421a6cd499c429937ba0591bc6cc43f","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 0 --niterations 20 --smoke","created_at":"2026-07-18T10:16:44.288445+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.3402769290537544,"max_error":3.0360437918345453,"r2":0.6678464189823687,"rmse":1.5958468745098728},"train":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"validation":{"mae":1.3300093312300907,"max_error":3.218960764155072,"r2":0.6765219954423487,"rmse":1.6141063340094688}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.145443075139356,1.4344210654606102],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":12.544421,"metrics":{"blind":{"mae":2.8684347361078837,"max_error":6.3771596774458885,"r2":-0.5406305792338024,"rmse":3.436932514805208},"train":{"mae":3.008694631994161,"max_error":7.889390256255865,"r2":-0.5857438481503101,"rmse":3.5418106643670146},"validation":{"mae":3.182659452084082,"max_error":5.969889731146395,"r2":-0.6944867156826684,"rmse":3.6942718296402592}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.321071742102504,7.115950575098395],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-2.49521160000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432287179861,"max_error":3.7753148091491697,"r2":-0.01595614682321611,"rmse":2.790996095970965},"train":{"mae":2.5900422881673064,"max_error":4.669188500708008,"r2":-4.871880676660112e-12,"rmse":2.8126055127156238},"validation":{"mae":2.692108148022383,"max_error":3.766448499029541,"r2":-0.012234470888502491,"rmse":2.855290664912694}},"score":0.46105355734490117,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952116,-2.4952116],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_rear_s - 1*2.5349655","loss":5.054905,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.6708211989580395,"r2":0.2722652745791272,"rmse":2.3621544857253993},"train":{"mae":2.013348879064355,"max_error":4.02626412385416,"r2":0.36100802225398165,"rmse":2.248311731291436},"validation":{"mae":2.0668845619370004,"max_error":3.7112145868568422,"r2":0.33413055471269004,"rmse":2.3158173723013027}},"score":0.22393170427017814,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.669909743356586,2.4838543219984768],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*2.0656142","loss":3.108637,"metrics":{"blind":{"mae":1.3402769290537544,"max_error":3.0360437918345453,"r2":0.6678464189823687,"rmse":1.5958468745098728},"train":{"mae":1.4173269365776728,"max_error":5.652981687081793,"r2":0.6070363627796147,"rmse":1.7631327241040575},"validation":{"mae":1.3300093312300907,"max_error":3.218960764155072,"r2":0.6765219954423487,"rmse":1.6141063340094688}},"score":0.24308734628094714,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.145443075139356,1.4344210654606102],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..bc5d645 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*0.047770567","deployment_expression_hash":"146cb4e4486918475c7b7aeb031dd038431af03c751e6f112ef87677b89b597a","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"u_a*0.047770567","fitted_expression_hash":"146cb4e4486918475c7b7aeb031dd038431af03c751e6f112ef87677b89b597a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:17:23.883880+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.792549026468526,"max_error":1.3553333800936729,"r2":0.4955277217542605,"rmse":0.8732684043961452},"train":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"validation":{"mae":0.843185672421323,"max_error":1.41369525890418,"r2":0.3626586571053291,"rmse":0.924557572044722}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.975758038283074,2.9263780360126774],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134232600000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895724456045533,"r2":-0.008167293592157288,"rmse":1.2345122291799373},"train":{"mae":1.1050600609612102,"max_error":2.0743306238916017,"r2":-2.6630253557868855e-11,"rmse":1.228661372531006},"validation":{"mae":1.053684304769649,"max_error":1.7522828023168946,"r2":-0.03943540158406056,"rmse":1.1807193109970993}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.01342326,-0.01342326],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.047770567","loss":0.43848303,"metrics":{"blind":{"mae":0.792549026468526,"max_error":1.3553333800936729,"r2":0.4955277217542605,"rmse":0.8732684043961452},"train":{"mae":0.5566115747262482,"max_error":1.5402477069829286,"r2":0.70953862663347,"rmse":0.662180516241119},"validation":{"mae":0.843185672421323,"max_error":1.41369525890418,"r2":0.3626586571053291,"rmse":0.924557572044722}},"score":0.6181422899810566,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.975758038283074,2.9263780360126774],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":7.0,"expression":"-0.22265555*(Cd_rear_a - 2.1157632)","loss":0.41677454,"metrics":{"blind":{"mae":0.5597545800863513,"max_error":1.0831070856676421,"r2":0.7259030764264068,"rmse":0.6436965402824143},"train":{"mae":0.5537463594057348,"max_error":1.3419679876102468,"r2":0.7239188465943218,"rmse":0.6455807694984669},"validation":{"mae":0.580474118022863,"max_error":1.0644880352826773,"r2":0.6832494771086401,"rmse":0.6517883362160121}},"score":0.016925235609630964,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.1133194701055895,2.323819224293051],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..2491b3e --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot + 2.527837","deployment_expression_hash":"bf2f4dcbc26f25561a1f79c6512f0f2e63ad9b49206ee9ebd7b674fdbcea7778","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot + 2.527837","fitted_expression_hash":"bf2f4dcbc26f25561a1f79c6512f0f2e63ad9b49206ee9ebd7b674fdbcea7778","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:17:25.663881+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.1806141749827292,"max_error":3.4324002151464814,"r2":0.7768111869604954,"rmse":1.481463159928899},"train":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"validation":{"mae":1.1064035265035226,"max_error":3.486987099661201,"r2":0.7972616408363717,"rmse":1.393799383056294}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.44800812486064423,6.02787226546061],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":13.496986,"metrics":{"blind":{"mae":3.1259986830409616,"max_error":7.124041182920337,"r2":-0.5341537178900584,"rmse":3.8840882004039416},"train":{"mae":2.9146646192475907,"max_error":7.397327907383442,"r2":-0.3282736960013657,"rmse":3.6738245629120185},"validation":{"mae":3.335230086643535,"max_error":7.214824199676514,"r2":-0.6722606116507828,"rmse":4.002987966695086}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.1349442433565855,5.018819821998477],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"2.62157460000000","loss":10.161297,"metrics":{"blind":{"mae":2.890835291670818,"max_error":4.670816223364257,"r2":-0.007178215845467184,"rmse":3.14708017306774},"train":{"mae":2.9210661236252955,"max_error":5.3192098543457025,"r2":-4.106048834273679e-12,"rmse":3.187679337271752},"validation":{"mae":2.862607956869765,"max_error":4.659876625280761,"r2":-0.013553192878906106,"rmse":3.116417090483902}},"score":0.283880309775938,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215746,2.6215746],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cl_rear_s - Cl_tot","loss":9.129955,"metrics":{"blind":{"mae":2.622986019572818,"max_error":4.889133624732494,"r2":0.13665652238125992,"rmse":2.913710849469257},"train":{"mae":2.6856006253821483,"max_error":7.146483373770025,"r2":0.10149730483339814,"rmse":3.0215815459067383},"validation":{"mae":2.783640778826502,"max_error":4.973117732908577,"r2":0.04383618665933464,"rmse":3.0269026673471604}},"score":0.10702532569453102,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.0798288751393557,3.5000352654606104],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":4.0,"expression":"2.4874291 - Cl_F","loss":4.590328,"metrics":{"blind":{"mae":1.888369501632004,"max_error":3.435851857908702,"r2":0.5500516075208732,"rmse":2.1034684248310227},"train":{"mae":1.9022790779471612,"max_error":4.372697449666148,"r2":0.5482536968795856,"rmse":2.142505428202377},"validation":{"mae":1.9259868433650134,"max_error":3.5886253853372097,"r2":0.5265963571570702,"rmse":2.129845506935646}},"score":0.6876092845742764,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.772535679019356,8.891951906406021],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot + 2.527837","loss":2.7400086,"metrics":{"blind":{"mae":1.1806141749827292,"max_error":3.4324002151464814,"r2":0.7768111869604954,"rmse":1.481463159928899},"train":{"mae":1.2806867026071551,"max_error":4.618646373770025,"r2":0.7303485798201136,"rmse":1.6552972109200392},"validation":{"mae":1.1064035265035226,"max_error":3.486987099661201,"r2":0.7972616408363717,"rmse":1.393799383056294}},"score":0.25799521106656803,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.44800812486064423,6.02787226546061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"2.6337664 - 0.5651944*Cl_F","loss":2.6598601,"metrics":{"blind":{"mae":1.3842499648009514,"max_error":3.2334565127882353,"r2":0.7331511643474851,"rmse":1.619896626634004},"train":{"mae":1.3464571127814537,"max_error":4.296159168137576,"r2":0.7382362286772759,"rmse":1.6309077514193777},"validation":{"mae":1.2545942095061848,"max_error":3.2818635564896868,"r2":0.767260755745036,"rmse":1.4933689394168923}},"score":0.029687531655651335,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9043306372989774,6.253566824852967],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..7969d6a --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s1-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 2.5888972","deployment_expression_hash":"ab0fac5fbe0dfe582418b064efd1a83468b6e7147c24a79e44e0b94ce5fd16db","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 2.5888972","fitted_expression_hash":"ab0fac5fbe0dfe582418b064efd1a83468b6e7147c24a79e44e0b94ce5fd16db","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 1 --niterations 20 --smoke","created_at":"2026-07-18T10:17:24.849444+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.218866819110669,"max_error":3.559326791834545,"r2":0.6946531499789537,"rmse":1.5300952605635216},"train":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"validation":{"mae":1.2223595461132464,"max_error":3.742243764155072,"r2":0.6952446526704492,"rmse":1.5666985134960223}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.668726075139356,0.9111380654606105],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_a","loss":64.219315,"metrics":{"blind":{"mae":7.071967412205413,"max_error":12.342433592304587,"r2":-6.613319870329023,"rmse":7.640271405462806},"train":{"mae":7.417815929255547,"max_error":13.616677049547434,"r2":-7.11798090585588,"rmse":8.013695501130307},"validation":{"mae":7.217908509481603,"max_error":12.146136071532965,"r2":-6.6175326392721505,"rmse":7.832797986585039}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.609025668585673,8.424736792221665],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a"]},{"complexity":2.0,"expression":"-2.49521260000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432387179861,"max_error":3.77531380914917,"r2":-0.01595623806061197,"rmse":2.7909962212929145},"train":{"mae":2.5900423220656115,"max_error":4.6691875007080075,"r2":-3.4285907446474084e-12,"rmse":2.812605512713594},"validation":{"mae":2.6921082762275113,"max_error":3.766447499029541,"r2":-0.012234548838035098,"rmse":2.85529077485193}},"score":2.0940815545832248,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952126,-2.4952126],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_rear_s - 2.6249537","loss":5.062883,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.760809398958039,"r2":0.26381545029302644,"rmse":2.3758285517349487},"train":{"mae":2.0087732078779146,"max_error":4.111411532157612,"r2":0.3599996578910566,"rmse":2.250085011552875},"validation":{"mae":2.0784215106549495,"max_error":3.801202786856842,"r2":0.322088185209798,"rmse":2.336664526788717}},"score":0.22314319183510378,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.759897943356585,2.393866121998477],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 2.5888972","loss":2.8347545,"metrics":{"blind":{"mae":1.218866819110669,"max_error":3.559326791834545,"r2":0.6946531499789537,"rmse":1.5300952605635216},"train":{"mae":1.3270261602676514,"max_error":6.176264687081792,"r2":0.6416578719692014,"rmse":1.6836730403923057},"validation":{"mae":1.2223595461132464,"max_error":3.742243764155072,"r2":0.6952446526704492,"rmse":1.5666985134960223}},"score":0.28999037329093796,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.668726075139356,0.9111380654606105],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json new file mode 100644 index 0000000..85df712 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718-per-scene-front_independent-anchor-upper","deployment_expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","deployment_expression_hash":"ad3957f187930836e042e4076d519939b9b4b82baba96672ae0908daa35d1512","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","fitted_expression_hash":"ad3957f187930836e042e4076d519939b9b4b82baba96672ae0908daa35d1512","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:18:03.817890+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":0.2729105290933312,"max_error":0.5534815064043161,"r2":0.9363418710292042,"rmse":0.31021016822394026},"train":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"validation":{"mae":0.2729342924176888,"max_error":0.5442857986780238,"r2":0.9311555963691932,"rmse":0.3038660884073519}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.717928398774878,2.423205664335203],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.0134323540000000","loss":1.5096086,"metrics":{"blind":{"mae":1.1271926674991846,"max_error":1.8895633516045531,"r2":-0.008165956759142556,"rmse":1.2345114106961088},"train":{"mae":1.1050602150968036,"max_error":2.0743397178916014,"r2":-1.5780421414035573e-10,"rmse":1.2286613726115903},"validation":{"mae":1.053683138872213,"max_error":1.7522737083168944,"r2":-0.039432282898578475,"rmse":1.1807175397013892}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.013432354,-0.013432354],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"u_a*0.042408347","loss":0.4519814,"metrics":{"blind":{"mae":0.813586543020139,"max_error":1.3910949190707593,"r2":0.4797890789250051,"rmse":0.8867859977204867},"train":{"mae":0.5660871312071853,"max_error":1.5464987342679084,"r2":0.7005969931280094,"rmse":0.6722956227971508},"validation":{"mae":0.8535760498650665,"max_error":1.424967352069816,"r2":0.35890436759481037,"rmse":0.9272766488995434}},"score":0.6029823311842033,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7539802798561692,2.5978937031332308],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_a"]},{"complexity":7.0,"expression":"-0.2682599*(Cd_rear_a - 1*0.7119804)","loss":0.1294061,"metrics":{"blind":{"mae":0.2729105290933312,"max_error":0.5534815064043161,"r2":0.9363418710292042,"rmse":0.31021016822394026},"train":{"mae":0.30008299642334907,"max_error":0.8272692467555527,"r2":0.9142783816412453,"rmse":0.3597306029629161},"validation":{"mae":0.2729342924176888,"max_error":0.5442857986780238,"r2":0.9311555963691932,"rmse":0.3038660884073519}},"score":0.4168951689793953,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.717928398774878,2.423205664335203],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json new file mode 100644 index 0000000..ba9f009 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","deployment_expression_hash":"9cbfc156504212533bf240188feac0d63233b461dcb3ca132a5a27979377b348","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","fitted_expression_hash":"9cbfc156504212533bf240188feac0d63233b461dcb3ca132a5a27979377b348","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:18:05.783522+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2755299445953692,"max_error":3.1184842151464816,"r2":0.767989526151351,"rmse":1.5104572582637101},"train":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"validation":{"mae":1.2253899443191987,"max_error":3.1730710996612013,"r2":0.7762274041086467,"rmse":1.4643191914463538}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.13409212486064437,5.71395626546061],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.62159370000000","loss":10.161297,"metrics":{"blind":{"mae":2.8908343366708182,"max_error":4.670797123364258,"r2":-0.0071771837939811345,"rmse":3.147078560667099},"train":{"mae":2.92106644735411,"max_error":5.319190754345703,"r2":-6.429123899920342e-11,"rmse":3.1876793373676775},"validation":{"mae":2.862607467126175,"max_error":4.659857525280762,"r2":-0.013551756264030823,"rmse":3.1164148818712865}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.6215937,2.6215937],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"2.6215758 - Cl_F","loss":4.6083293,"metrics":{"blind":{"mae":1.908491506632004,"max_error":3.569998557908702,"r2":0.5467777045378612,"rmse":2.1111071564010846},"train":{"mae":1.910481589044923,"max_error":4.506844149666149,"r2":0.5464823437893013,"rmse":2.146701832870287},"validation":{"mae":1.9225471843906543,"max_error":3.7227720853372097,"r2":0.5343706628442977,"rmse":2.1122847909909384}},"score":0.39536035398463093,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6383889790193558,9.026098606406022],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*(-2.213921)","loss":2.8385503,"metrics":{"blind":{"mae":1.2755299445953692,"max_error":3.1184842151464816,"r2":0.767989526151351,"rmse":1.5104572582637101},"train":{"mae":1.3529698304257134,"max_error":4.932562373770025,"r2":0.7206508486255898,"rmse":1.6847998124918837},"validation":{"mae":1.2253899443191987,"max_error":3.1730710996612013,"r2":0.7762274041086467,"rmse":1.4643191914463538}},"score":0.24228595970756947,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.13409212486064437,5.71395626546061],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]},{"complexity":7.0,"expression":"Cl_F*(-0.6569848) - 1*(-2.533426)","loss":2.502614,"metrics":{"blind":{"mae":1.3206681901676227,"max_error":3.163523516475059,"r2":0.748315077631081,"rmse":1.5731974887997946},"train":{"mae":1.2895264356909288,"max_error":4.242869309296062,"r2":0.7537112132910557,"rmse":1.581965277537945},"validation":{"mae":1.2427061096977319,"max_error":3.2228470921425374,"r2":0.7721975516596017,"rmse":1.477445596703377}},"score":0.12595767848350647,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.579275708351076,6.741100135062098],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json new file mode 100644 index 0000000..db8acd5 --- /dev/null +++ b/src/SR_analysis/results/runs/article-discovery-v3-karman_re400-symmetry-s2-20260718/formulas/karman_re400_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718-per-scene-upper_independent-anchor-upper","deployment_expression":"Cl_rear_s - Cl_tot - 1*2.3353596","deployment_expression_hash":"e41d80e12026baa0ac8e7faa87ad06fc3c91b90a970ec0b508f1a9ccd4c2c91a","dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - Cl_tot - 1*2.3353596","fitted_expression_hash":"e41d80e12026baa0ac8e7faa87ad06fc3c91b90a970ec0b508f1a9ccd4c2c91a","g_metadata":{"deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","fit_augmentation":"none","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re400 --mode per-scene --run-id article-discovery-v3-karman_re400-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture three_head_independent --fit-augmentation none --seed 2 --niterations 20 --smoke","created_at":"2026-07-18T10:18:04.841444+00:00","deployment_architecture":"three_head_independent","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"none","g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":20,"offline_metrics":{"blind":{"mae":1.2510060677422536,"max_error":3.305789191834545,"r2":0.6905846859243807,"rmse":1.5402550813103861},"train":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"validation":{"mae":1.263171385450738,"max_error":3.488706164155072,"r2":0.6946646282441555,"rmse":1.5681887111977686}},"sample_weighting":"uniform","scene_augmented_sample_counts":{"karman_re400":197},"scene_sample_counts":{"karman_re400":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.415188475139356,1.1646756654606105],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":20,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":17.19205,"metrics":{"blind":{"mae":2.720237749362423,"max_error":7.639943297486752,"r2":-0.7201762537462626,"rmse":3.6316854153749443},"train":{"mae":3.187765304700144,"max_error":9.732513713650405,"r2":-1.1732518346275844,"rmse":4.146329877276113},"validation":{"mae":2.9314079958279855,"max_error":7.841783597599715,"r2":-0.9505947222473161,"rmse":3.9636316391931063}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.2260747868567705,3.1508038518950343],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"-2.49521160000000","loss":7.910749,"metrics":{"blind":{"mae":2.610432287179861,"max_error":3.7753148091491697,"r2":-0.01595614682321611,"rmse":2.790996095970965},"train":{"mae":2.5900422881673064,"max_error":4.669188500708008,"r2":-4.871880676660112e-12,"rmse":2.8126055127156238},"validation":{"mae":2.692108148022383,"max_error":3.766448499029541,"r2":-0.012234470888502491,"rmse":2.855290664912694}},"score":0.7762246001032266,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.4952116,-2.4952116],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"-Cl_tot - 2.5485299","loss":6.2971563,"metrics":{"blind":{"mae":1.7029901163345862,"max_error":3.7573635190208794,"r2":0.4829200623297367,"rmse":1.9911344742924055},"train":{"mae":2.0644126064997086,"max_error":8.097680332809256,"r2":0.2039746660452325,"rmse":2.509413721886488},"validation":{"mae":1.8427386461340525,"max_error":4.019179345895106,"r2":0.452045784418171,"rmse":2.1007864147039568}},"score":0.11406215851007544,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.647178597137833,4.086449608817196],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_tot"]},{"complexity":5.0,"expression":"Cl_rear_s - 1*2.41165401309001","loss":5.070277,"metrics":{"blind":{"mae":2.1355614013038577,"max_error":3.547509712048049,"r2":0.28041368704902747,"rmse":2.348892790651724},"train":{"mae":2.02033603354626,"max_error":4.149575610764151,"r2":0.35906491030345355,"rmse":2.2517275842069915},"validation":{"mae":2.0545208999461226,"max_error":3.587903099946852,"r2":0.34736661699343185,"rmse":2.29268508879271}},"score":0.2167026993229283,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-5.546598256446595,2.607165808908467],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":6.0,"expression":"Cl_rear_s - Cl_tot - 1*2.3353596","loss":2.8990638,"metrics":{"blind":{"mae":1.2510060677422536,"max_error":3.305789191834545,"r2":0.6905846859243807,"rmse":1.5402550813103861},"train":{"mae":1.3495174179740683,"max_error":5.9227270870817925,"r2":0.6335285627804531,"rmse":1.7026637477024036},"validation":{"mae":1.263171385450738,"max_error":3.488706164155072,"r2":0.6946646282441555,"rmse":1.5681887111977686}},"score":0.5590075939329512,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.415188475139356,1.1646756654606105],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s","Cl_tot"]}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"article-discovery-v3-karman_re400-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/data_inventory.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/data_inventory.json new file mode 100644 index 0000000..07373d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/data_inventory.json @@ -0,0 +1,59 @@ +{ + "schema_version": "sr-article-joint-data-inventory-v1", + "status": "ready_for_discovery", + "alignment": "causal_post_state_to_next_action", + "transient_boundary": 50, + "weighting": "case_equal; trajectory_equal_within_case", + "accepted_primary_runs": { + "karman": { + "run_id": "article-joint-data-karman-20260718", + "scenes": ["karman_re50", "karman_re100", "karman_re200", "karman_re400"], + "trajectories_per_scene": 1, + "recorded_samples_per_trajectory": 200, + "aligned_samples_per_trajectory": 197, + "transient_aligned_samples": 48, + "steady_aligned_samples": 150, + "policy_replay": "passed_exactly" + }, + "illusion": { + "run_id": "article-joint-data-illusion-20260718", + "scenes": ["illusion_0.75L", "illusion_1L", "illusion_1.5L"], + "trajectories_per_scene": 1, + "recorded_samples_per_trajectory": 200, + "aligned_samples_per_trajectory": 197, + "transient_aligned_samples": 48, + "steady_aligned_samples": 150, + "policy_replay": "passed_exactly" + } + }, + "accepted_supplementary_runs": { + "round1-legacy-v2-20260716": { + "status": "eligible_after_current_contract_recheck", + "karman": ["karman_re50", "karman_re100", "karman_re200", "karman_re400"], + "illusion": ["illusion_0.75L", "illusion_1L"], + "note": "kept as independent trajectories; not mixed until multi-trajectory Stage 2 loader records each source separately" + }, + "trusted_recollections_20260717": { + "status": "eligible_after_current_contract_recheck", + "karman": ["karman_re100"], + "illusion": ["illusion_1L"] + } + }, + "historical_canonical_directories": { + "status": "diagnostic_only_not_used_for_primary_discovery", + "reason": "pre-contract assets lack current run-scoped manifest and include known force-order history; preserving them avoids data loss but they are not silently pooled" + }, + "excluded": { + "round1-legacy-v2-20260716-joint-formulas": "diagnostic only because their physical interpretation predates final force-order contract", + "v5": "outside legacy article fitting scope", + "unseen_scenes": "validation only, not PPO-action fitting" + }, + "resource_provenance": { + "conda_env": "pycuda_3_10", + "cuda_visible_devices": "2", + "requested_logical_device": 0, + "physical_gpu_uuid": "GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76", + "cfd_execution": "serial" + }, + "replay_reports": "policy_replay/*.json" +} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_0.75L.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_0.75L.json new file mode 100644 index 0000000..cf61b46 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_0.75L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"illusion_0.75L","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip","sha256":"1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_0.75L/norm.json","sha256":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sha256":"57cb888449c63aa89298e6d82de2d3bc0222437ba7974e9d7cd11b54dd13595c"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1.5L.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1.5L.json new file mode 100644 index 0000000..1ba33d1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1.5L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"illusion_1.5L","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_15L_2U.zip","sha256":"3e115a36d4365cfc70994c9307053aa44d9c3ded8c4312f636520b62862be9b6"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1.5L/norm.json","sha256":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sha256":"00a949ea5724867939a942d690ece5bfce7b009725b14c3b643bd0ff7c365d33"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1L.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1L.json new file mode 100644 index 0000000..15bdfec --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/illusion_1L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"illusion_1L","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json","sha256":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sha256":"a7f6cc788495e2ad580e8ec8f269edd391d7f84e3faff195e50b0110aabe84ae"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re100.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re100.json new file mode 100644 index 0000000..eb07b3b --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re100.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"karman_re100","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json","sha256":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sha256":"0944173cf46bda15c2cf06273be7b3b19e61e0d4ab982a44661534b22fe33f5f"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re200.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re200.json new file mode 100644 index 0000000..c612b7e --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re200.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"karman_re200","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip","sha256":"62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re200/norm.json","sha256":"ee532839c659c4e0dbb8c921fae09b8b4a02b57ad832e483710693d1e7fe9c09"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sha256":"6fa9a92731acb7163769daa0cc42d8209f26782422dd1ac68be65c1c8b9c5801"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re400.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re400.json new file mode 100644 index 0000000..5e8f349 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"karman_re400","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip","sha256":"e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re400/norm.json","sha256":"375f9d23d57f9b45945d740eb6823c9d23b73bd667ec02978b9c3728021970cc"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sha256":"52a0bf575fb6cd5c1b1d1bba04fe09d25fc03a50d327ed45b87358885d4873bc"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re50.json b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re50.json new file mode 100644 index 0000000..f32fe61 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-data-audit-20260718/policy_replay/karman_re50.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":199,"rmse":[0.0,0.0,0.0],"scene":"karman_re50","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip","sha256":"dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re50/norm.json","sha256":"bb4134a978c72fc9a814a11b0082cbd77b9b2bc76e26fb9530e5c84ea8333a34"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sha256":"ff1e47f000068647fdbefee52add5cce158254b95174e91531dae1b3d3c242d9"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json new file mode 100644 index 0000000..bad9cdd --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s0-20260718-joint-front_odd-anchor-upper","deployment_expression":"-Cd_rear_a + Cl_F","deployment_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cd_rear_a + Cl_F","fitted_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:56:02.233446+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":9.274203,"metrics":{"blind":{"mae":2.575035371052551,"max_error":7.9435837380588055,"r2":-0.25589913318873636,"rmse":3.246410160867095},"train":{"mae":2.4399027110733797,"max_error":7.4402279844507575,"r2":-0.24206937903330927,"rmse":3.0453577523837314},"validation":{"mae":2.343520218729678,"max_error":7.3667490016669035,"r2":-0.2179440006350315,"rmse":2.914071737856406}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.329904353246093,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"0.000348772480000000","loss":7.466735,"metrics":{"blind":{"mae":1.9837712106605372,"max_error":8.00034877248,"r2":-1.4495473266151748e-08,"rmse":2.896850026213648},"train":{"mae":1.8886183639093812,"max_error":8.00034877248,"r2":-1.6291221038855497e-08,"rmse":2.732532867970103},"validation":{"mae":1.8592776812804053,"max_error":7.547958578540791,"r2":-1.7446618372218836e-08,"rmse":2.640502496601355}},"score":0.2167788529454529,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.00034877248,0.00034877248],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.43917857882415867,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_F","loss":3.7071116,"metrics":{"blind":{"mae":1.3808146653055402,"max_error":6.569455318421422,"r2":0.5756573160943428,"rmse":1.8870541736210258},"train":{"mae":1.3765847672672855,"max_error":7.051829727032368,"r2":0.503516403739517,"rmse":1.9253861480035301},"validation":{"mae":1.5120690991090773,"max_error":6.5887382361385,"r2":0.43688239435217224,"rmse":1.9814637497413998}},"score":0.13051310709537692,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9165125483842924,15.07190294243069],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..6d67337 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s0-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:56:04.298864+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":4.9040117,"metrics":{"blind":{"mae":1.837936255679233,"max_error":6.162322535645217,"r2":-0.22865880060188193,"rmse":2.3283644484033825},"train":{"mae":1.743404057618141,"max_error":6.117111683823168,"r2":-0.2800998273386548,"rmse":2.214500289394257},"validation":{"mae":1.7341510439948298,"max_error":5.7351438049227,"r2":-0.29707249915591505,"rmse":2.1722511954356905}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.329904353246093,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-0.736240570000000","loss":3.8309598,"metrics":{"blind":{"mae":1.388452493817108,"max_error":6.619877044609375,"r2":-4.3476086151184035e-05,"rmse":2.1006067277279215},"train":{"mae":1.289730684040676,"max_error":6.73624057,"r2":-2.185363001672158e-12,"rmse":1.9572838915616697},"validation":{"mae":1.2739628077271024,"max_error":6.529196922233886,"r2":-1.3987660097969368e-05,"rmse":1.9073524720045119}},"score":0.2469382121188863,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.73624057,-0.73624057],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 1*0.73621625","loss":2.1679358,"metrics":{"blind":{"mae":1.0328996605703427,"max_error":5.220052236815393,"r2":0.4739826508045383,"rmse":1.5234750486086694},"train":{"mae":1.0110050145523755,"max_error":5.1352823522253335,"r2":0.4341011376478723,"rmse":1.4723912649478381},"validation":{"mae":1.0004860414293413,"max_error":4.913276199492104,"r2":0.4135932956897229,"rmse":1.460586837778083}},"score":0.004288519881894939,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1405631481981278,0.6681306481981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_only-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_front.json new file mode 100644 index 0000000..dcee657 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s1-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F - Cl_tot","deployment_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_s*Cl_F - Cl_tot","fitted_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:56:41.861841+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":6.009536,"metrics":{"blind":{"mae":2.031806132430817,"max_error":6.226958494167775,"r2":0.23389874322412185,"rmse":2.5355320002563877},"train":{"mae":2.0027488392901596,"max_error":6.838292457978241,"r2":0.1951589321325523,"rmse":2.451435411517872},"validation":{"mae":1.9520170104445622,"max_error":6.6842275691451505,"r2":0.1996888307431276,"rmse":2.3621964781141096}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.11103414889760924,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.6948836,"metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"score":0.13216509561918352,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]},{"complexity":6.0,"expression":"Cl_F*(Cd_rear_s - 1.2606156)","loss":3.6469362,"metrics":{"blind":{"mae":1.2841160850235895,"max_error":6.424422148445824,"r2":0.5874969158745018,"rmse":1.8605425584170379},"train":{"mae":1.3090087955068748,"max_error":7.001971660350729,"r2":0.5115755998137101,"rmse":1.909695245702074},"validation":{"mae":1.4319755405592243,"max_error":6.604857551303228,"r2":0.455999783158625,"rmse":1.9475387837214335}},"score":0.013061634031217052,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.6732115157728208,14.098698811984802],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..efb3e16 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s1-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s1-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:56:43.698425+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_c","loss":7520.438,"metrics":{"blind":{"mae":86.91756296766302,"max_error":109.02841687202454,"r2":-1746.9428024162592,"rmse":87.82110963355167},"train":{"mae":85.95073762360308,"max_error":119.5268120765686,"r2":-1962.068630607652,"rmse":86.72045812180427},"validation":{"mae":88.80668647657347,"max_error":113.98404169082642,"r2":-2190.067676654594,"rmse":89.28033583177147}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[44.058844447135925,117.42533445358276],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["u_c"]},{"complexity":2.0,"expression":"-0.736269650000000","loss":3.8309598,"metrics":{"blind":{"mae":1.3884442544837745,"max_error":6.619906124609375,"r2":-4.329371415701111e-05,"rmse":2.100606536190321},"train":{"mae":1.2897207442666645,"max_error":6.73626965,"r2":-1.7900103621570906e-10,"rmse":1.957283891734709},"validation":{"mae":1.27395286584676,"max_error":6.529226002233886,"r2":-1.3873849449508313e-05,"rmse":1.9073523634675162}},"score":7.582264287608899,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.73626965,-0.73626965],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - (Cl_F + 0.7362498)","loss":2.1679358,"metrics":{"blind":{"mae":1.032888149272504,"max_error":5.2200857868153925,"r2":0.47398286154549496,"rmse":1.5234747434299316},"train":{"mae":1.0109943998631101,"max_error":5.135315902225333,"r2":0.4341011378307005,"rmse":1.472391264709991},"validation":{"mae":1.0004751448481448,"max_error":4.913309749492104,"r2":0.41359342740199545,"rmse":1.4605866737475381}},"score":0.004288519881894939,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1405966981981277,0.6680970981981278],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_only-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_front.json new file mode 100644 index 0000000..a5d011a --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s2-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F","deployment_expression_hash":"60c0207175247dbb7f3eea4bbc219dc10f6af7a1acafd5e481ab069686b799a5","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_s*Cl_F","fitted_expression_hash":"60c0207175247dbb7f3eea4bbc219dc10f6af7a1acafd5e481ab069686b799a5","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:57:22.998078+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.916121153246358,"max_error":7.243138561505971,"r2":0.2605810762432256,"rmse":2.349690557154624},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.923689371165529,"max_error":7.1259575768265115,"r2":0.33868910611758596,"rmse":2.35574808699271},"train":{"mae":1.916121153246358,"max_error":7.243138561505971,"r2":0.2605810762432256,"rmse":2.349690557154624},"validation":{"mae":2.0004452216128983,"max_error":6.681372030214402,"r2":0.1503568834654364,"rmse":2.4339118788596616}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.559565447601343,18.80615419387491],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_s","loss":11.908521,"metrics":{"blind":{"mae":2.6141768729876884,"max_error":12.731569439172745,"r2":-0.6155643716919921,"rmse":3.6820369476877457},"train":{"mae":2.504490804474401,"max_error":13.036124493926764,"r2":-0.5948766076430356,"rmse":3.450872670462302},"validation":{"mae":2.4764641449949902,"max_error":11.640891381539404,"r2":-0.6587731958404672,"rmse":3.4007921003899275}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.14910346362739801,5.0361244939267635],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s"]},{"complexity":2.0,"expression":"-2.19122700000000e-6","loss":7.466735,"metrics":{"blind":{"mae":1.9837712106605374,"max_error":8.000002191227,"r2":-5.722089468918057e-13,"rmse":2.8968500052188713},"train":{"mae":1.8886183639093812,"max_error":8.000002191227,"r2":-6.432632204678157e-13,"rmse":2.7325328457128335},"validation":{"mae":1.859277681280405,"max_error":7.547611997287791,"r2":-6.887823644774471e-13,"rmse":2.6405024735683447}},"score":0.46679637235914234,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.191227e-06,-2.191227e-06],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_s*Cl_F","loss":5.5210457,"metrics":{"blind":{"mae":1.923689371165529,"max_error":7.1259575768265115,"r2":0.33868910611758596,"rmse":2.35574808699271},"train":{"mae":1.916121153246358,"max_error":7.243138561505971,"r2":0.2605810762432256,"rmse":2.349690557154624},"validation":{"mae":2.0004452216128983,"max_error":6.681372030214402,"r2":0.1503568834654364,"rmse":2.4339118788596616}},"score":0.3018905411831093,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.559565447601343,18.80615419387491],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]},{"complexity":5.0,"expression":"-Cd_rear_a + Cl_F - Cl_rear_s","loss":4.375585,"metrics":{"blind":{"mae":1.5596630176584236,"max_error":6.624425956979394,"r2":0.46830565790079215,"rmse":2.1123069505247942},"train":{"mae":1.607532428459832,"max_error":6.8994872370385565,"r2":0.41398953413811024,"rmse":2.091789974405039},"validation":{"mae":1.6518449366734644,"max_error":6.3203327427618206,"r2":0.3307885242991767,"rmse":2.1600722044636145}},"score":0.11626352779863913,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..bc81ab1 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s2-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_only-s2-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_only-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:57:24.919422+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":7.840916,"metrics":{"blind":{"mae":2.1925443676325207,"max_error":8.794990671798587,"r2":-0.9134524132042416,"rmse":2.905655649361184},"train":{"mae":2.0909037518359495,"max_error":9.339534034952521,"r2":-1.0467232854724529,"rmse":2.8001634796699992},"validation":{"mae":2.0561481826967545,"max_error":8.869173489511013,"r2":-1.0608990535706466,"rmse":2.738143968373225}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.736309650000000","loss":3.8309598,"metrics":{"blind":{"mae":1.388432921150441,"max_error":6.619946124609375,"r2":-4.304348483508136e-05,"rmse":2.1006062733850075},"train":{"mae":1.2897070719502803,"max_error":6.73630965,"r2":-1.143495076405543e-09,"rmse":1.9572838926786034},"validation":{"mae":1.2739391906330848,"max_error":6.529266002233887,"r2":-1.3718060653200581e-05,"rmse":1.907352214897507}},"score":0.7162402919524486,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.73630965,-0.73630965],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.72701037","loss":2.1680212,"metrics":{"blind":{"mae":1.0361831302680649,"max_error":5.210846356815393,"r2":0.47390554797498863,"rmse":1.5235866988546722},"train":{"mae":1.0139445521240582,"max_error":5.126076472225334,"r2":0.43407888493171665,"rmse":1.4724202139217406},"validation":{"mae":1.003488734269508,"max_error":4.904070319492105,"r2":0.41353377423827575,"rmse":1.4606609621374835}},"score":0.004249128347333599,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1313572681981277,0.6773365281981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_only-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_front.json new file mode 100644 index 0000000..b228e87 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s0-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F - Cl_tot","deployment_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_s*Cl_F - Cl_tot","fitted_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T11:00:02.471653+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":6.009536,"metrics":{"blind":{"mae":2.031806132430817,"max_error":6.226958494167775,"r2":0.23389874322412185,"rmse":2.5355320002563877},"train":{"mae":2.0027488392901596,"max_error":6.838292457978241,"r2":0.1951589321325523,"rmse":2.451435411517872},"validation":{"mae":1.9520170104445622,"max_error":6.6842275691451505,"r2":0.1996888307431276,"rmse":2.3621964781141096}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.11103414889760924,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.6948836,"metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"score":0.13216509561918352,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..a0b97c4 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s0-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s0-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T11:00:04.453666+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":4.317816,"metrics":{"blind":{"mae":1.812935277890756,"max_error":7.562515444122255,"r2":-0.19185030842859763,"rmse":2.293222362555291},"train":{"mae":1.6017405730519674,"max_error":7.269033696502447,"r2":-0.12708445979138228,"rmse":2.0779354522565288},"validation":{"mae":1.7374916308051156,"max_error":6.192167541012168,"r2":-0.2311695755137324,"rmse":2.1163469008930584}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.3200982250273228,3.6593168042600155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_err"]},{"complexity":2.0,"expression":"-0.736548660000000","loss":3.8309598,"metrics":{"blind":{"mae":1.388365201650441,"max_error":6.620185134609375,"r2":-4.1563415585255115e-05,"rmse":2.100604718929966},"train":{"mae":1.2896253764418057,"max_error":6.73654866,"r2":-2.431376033840138e-08,"rmse":1.9572839153539967},"validation":{"mae":1.273857477812572,"max_error":6.529505012233887,"r2":-1.2805514386871053e-05,"rmse":1.9073513446356758}},"score":0.11963434654448411,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.73654866,-0.73654866],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.73624504","loss":2.1679358,"metrics":{"blind":{"mae":1.032889775605837,"max_error":5.220081026815393,"r2":0.4739828316770911,"rmse":1.5234747866830454},"train":{"mae":1.0109959058518105,"max_error":5.1353111422253335,"r2":0.43410113784053295,"rmse":1.4723912646971997},"validation":{"mae":1.0004766908310507,"max_error":4.913304989492104,"r2":0.4135934087526184,"rmse":1.4605866969729184}},"score":0.004288519881894939,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1405919381981278,0.6681018581981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":7.0,"expression":"Cd_err + Cd_rear_a - Cl_F + Cl_rear_s","loss":2.1220539,"metrics":{"blind":{"mae":1.3457319247789503,"max_error":4.3036063419312995,"r2":0.4136629375339065,"rmse":1.6084552590323553},"train":{"mae":1.1862662038095184,"max_error":5.367777106584981,"r2":0.4460778168455153,"rmse":1.4567271039474774},"validation":{"mae":1.342681833137171,"max_error":4.125366969499737,"r2":0.30806286568582786,"rmse":1.5865773079263017}},"score":0.021391030158107435,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.6388346343301237,4.978053213562816],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_err","Cd_rear_a","Cl_F","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_error-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_front.json new file mode 100644 index 0000000..f62ce78 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s1-20260718-joint-front_odd-anchor-upper","deployment_expression":"-Cd_rear_a + Cl_F","deployment_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cd_rear_a + Cl_F","fitted_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T11:00:43.599735+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":9.342685,"metrics":{"blind":{"mae":2.043979332375352,"max_error":9.474022333975881,"r2":-0.2862261864789777,"rmse":3.2853729890722394},"train":{"mae":1.9213620842249526,"max_error":9.147010634187609,"r2":-0.25124091731091847,"rmse":3.0565806537322326},"validation":{"mae":1.8386040117631295,"max_error":8.548744691303,"r2":-0.23433686603193915,"rmse":2.9336171023917257}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7230833075009286,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"0.000272454980000000","loss":7.4667354,"metrics":{"blind":{"mae":1.9837712106605372,"max_error":8.00027245498,"r2":-8.845807641932879e-09,"rmse":2.8968500180305305},"train":{"mae":1.8886183639093812,"max_error":8.00027245498,"r2":-9.941655720879794e-09,"rmse":2.732532859294905},"validation":{"mae":1.859277681280405,"max_error":7.547882261040791,"r2":-1.064673260664506e-08,"rmse":2.6405024876237975}},"score":0.22413580865398497,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.00027245498,0.00027245498],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.4391786323950955,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_F*(-Cd_rear_a + Cl_F)","loss":4.431331,"metrics":{"blind":{"mae":1.2766920157806676,"max_error":6.006883742593512,"r2":0.5804231292319337,"rmse":1.8764274538778623},"train":{"mae":1.4334646474154897,"max_error":6.559103036964556,"r2":0.4065236371633876,"rmse":2.105072724845872},"validation":{"mae":1.557716997223686,"max_error":6.6156646782871205,"r2":0.2974795009639948,"rmse":2.2131766483484796}},"score":0.04128962635737662,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.790956473640519,4.8944834269530615],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F","Cd_rear_a","Cl_F"]},{"complexity":6.0,"expression":"Cl_F*(Cd_rear_s - 0.6021119)","loss":4.1280074,"metrics":{"blind":{"mae":1.5738124764154093,"max_error":6.790880944663932,"r2":0.5177714053020674,"rmse":2.0116503086959066},"train":{"mae":1.551881133790573,"max_error":7.127949235694284,"r2":0.44714699002755764,"rmse":2.0317498211287406},"validation":{"mae":1.6581610264874178,"max_error":6.564128490274496,"r2":0.3633892530080153,"rmse":2.1068012221737087}},"score":0.07090516958449558,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4353468895591144,16.557717077790453],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]},{"complexity":7.0,"expression":"-Cd_rear_a - Cd_rear_a + Cl_F + Cl_F","loss":4.043479,"metrics":{"blind":{"mae":1.192898108602397,"max_error":5.951440755277872,"r2":0.5939291389518113,"rmse":1.8459797041945711},"train":{"mae":1.3304349884132185,"max_error":6.558693446218967,"r2":0.45846764324747635,"rmse":2.0108403739514933},"validation":{"mae":1.3730522949907369,"max_error":6.610972369322553,"r2":0.40178912238596187,"rmse":2.0422726980662285}},"score":0.02068936079352553,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.8086937963962555,2.8086937963962555],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..db2987c --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s1-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s1-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T11:00:45.446460+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":4.317816,"metrics":{"blind":{"mae":1.812935277890756,"max_error":7.562515444122255,"r2":-0.19185030842859763,"rmse":2.293222362555291},"train":{"mae":1.6017405730519674,"max_error":7.269033696502447,"r2":-0.12708445979138228,"rmse":2.0779354522565288},"validation":{"mae":1.7374916308051156,"max_error":6.192167541012168,"r2":-0.2311695755137324,"rmse":2.1163469008930584}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.3200982250273228,3.6593168042600155],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_err"]},{"complexity":2.0,"expression":"-0.736242000000000","loss":3.8309598,"metrics":{"blind":{"mae":1.3884520886504412,"max_error":6.619878474609375,"r2":-4.346710910407836e-05,"rmse":2.1006067182997086},"train":{"mae":1.289730195255365,"max_error":6.736242,"r2":-5.588862705963038e-13,"rmse":1.957283891560078},"validation":{"mae":1.2739623188382132,"max_error":6.529198352233887,"r2":-1.3982052625705066e-05,"rmse":1.9073524666568737}},"score":0.11963434654448411,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.736242,-0.736242],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 1*0.34263384","loss":2.3228645,"metrics":{"blind":{"mae":1.2413333907968043,"max_error":4.826469826815393,"r2":0.43639984235535456,"rmse":1.5769606792427853},"train":{"mae":1.2058653717608345,"max_error":4.792987861250785,"r2":0.3936599622254584,"rmse":1.52409467287295},"validation":{"mae":1.1947857434183597,"max_error":4.519693789492104,"r2":0.3694635531102807,"rmse":1.5145479126306676}},"score":0.051381335669800514,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7469807381981277,1.0617130581981278],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_error-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_front.json new file mode 100644 index 0000000..557572d --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s2-20260718-joint-front_odd-anchor-upper","deployment_expression":"-Cd_rear_a + Cl_F","deployment_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"-Cd_rear_a + Cl_F","fitted_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T11:01:27.353313+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":9.274203,"metrics":{"blind":{"mae":2.575035371052551,"max_error":7.9435837380588055,"r2":-0.25589913318873636,"rmse":3.246410160867095},"train":{"mae":2.4399027110733797,"max_error":7.4402279844507575,"r2":-0.24206937903330927,"rmse":3.0453577523837314},"validation":{"mae":2.343520218729678,"max_error":7.3667490016669035,"r2":-0.2179440006350315,"rmse":2.914071737856406}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.329904353246093,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"2.46073070000000e-5","loss":7.4667354,"metrics":{"blind":{"mae":1.9837712106605372,"max_error":8.000024607307,"r2":-7.21567250394628e-11,"rmse":2.8968500053225554},"train":{"mae":1.8886183639093812,"max_error":8.000024607307,"r2":-8.109557469992978e-11,"rmse":2.7325328458227527},"validation":{"mae":1.859277681280405,"max_error":7.547634413367791,"r2":-8.684697405669795e-11,"rmse":2.6405024736820955}},"score":0.21677879937451605,"static_safety":{"finite":true,"grid_size":9,"observed_range":[2.4607307e-05,2.4607307e-05],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.4391786323950955,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"-Cd_rear_a + Cl_F - Cl_rear_s","loss":4.375585,"metrics":{"blind":{"mae":1.5596630176584236,"max_error":6.624425956979394,"r2":0.46830565790079215,"rmse":2.1123069505247942},"train":{"mae":1.607532428459832,"max_error":6.8994872370385565,"r2":0.41398953413811024,"rmse":2.091789974405039},"validation":{"mae":1.6518449366734644,"max_error":6.3203327427618206,"r2":0.3307885242991767,"rmse":2.1600722044636145}},"score":0.047619508978114455,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"(-Cd_rear_a + Cl_F)*1.6921936","loss":4.079512,"metrics":{"blind":{"mae":1.2071931558582145,"max_error":5.872586318460479,"r2":0.5552428094039558,"rmse":1.9319127013376052},"train":{"mae":1.327721767915197,"max_error":6.6028295445856875,"r2":0.45364186439029064,"rmse":2.0197801427486834},"validation":{"mae":1.3262552475427742,"max_error":6.631765633820765,"r2":0.4093101710123418,"rmse":2.0293937806805347}},"score":0.07006285173698919,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.376426833310723,2.376426833310723],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":7.0,"expression":"-Cd_rear_a + Cl_F - Cl_err - Cl_rear_s","loss":4.0314507,"metrics":{"blind":{"mae":1.495919120411592,"max_error":6.452978065208299,"r2":0.5205997696650719,"rmse":2.005742273137411},"train":{"mae":1.5705874104337427,"max_error":6.553813813487068,"r2":0.4600785686808212,"rmse":2.007847268839186},"validation":{"mae":1.599923848660167,"max_error":5.574988106382079,"r2":0.39982079545277516,"rmse":2.045629841209676}},"score":0.011851087050171552,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0746280099265277,3.0746280099265277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_err","Cl_rear_s"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..7ca5c33 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_error-s2-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_error-s2-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","Cd_err","Cl_err"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_error-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_error --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T11:01:29.600596+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_error","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_rear_s","loss":4.0199127,"metrics":{"blind":{"mae":1.637653021389057,"max_error":6.173607891763822,"r2":0.022928970069593047,"rmse":2.076339566578289},"train":{"mae":1.5862690625281637,"max_error":6.2327276398427784,"r2":-0.04932248986908494,"rmse":2.0049720021481408},"validation":{"mae":1.5729671390655646,"max_error":5.5459857085952535,"r2":-0.04982336619028138,"rmse":1.9542766208524667}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.7230833075009286,2.7230833075009286],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]},{"complexity":2.0,"expression":"-0.735793300000000","loss":3.8309598,"metrics":{"blind":{"mae":1.388579220317108,"max_error":6.619429774609375,"r2":-4.632937679915905e-05,"rmse":2.100609724416265},"train":{"mae":1.2898835644644047,"max_error":6.7357933,"r2":-5.289717242007441e-08,"rmse":1.9572839433269222},"validation":{"mae":1.274115720547615,"max_error":6.528749652233887,"r2":-1.5796709837756495e-05,"rmse":1.9073541972273464}},"score":0.048144813657532454,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7357933,-0.7357933],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.736252","loss":2.1679358,"metrics":{"blind":{"mae":1.0328873976058368,"max_error":5.220087986815393,"r2":0.473982875346749,"rmse":1.523474723444022},"train":{"mae":1.0109937038179122,"max_error":5.135318102225334,"r2":0.4341011378221591,"rmse":1.4723912647211028},"validation":{"mae":1.0004744303182302,"max_error":4.913311949492105,"r2":0.4135934360172463,"rmse":1.4605866630183604}},"score":0.004288519881894939,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1405988981981277,0.6680948981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_error-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json new file mode 100644 index 0000000..68c72bf --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s0-20260718-joint-front_odd-anchor-upper","deployment_expression":"-Cd_rear_a + Cl_F","deployment_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_rear_a + Cl_F","fitted_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:58:02.511657+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":9.274203,"metrics":{"blind":{"mae":2.575035371052551,"max_error":7.9435837380588055,"r2":-0.25589913318873636,"rmse":3.246410160867095},"train":{"mae":2.4399027110733797,"max_error":7.4402279844507575,"r2":-0.24206937903330927,"rmse":3.0453577523837314},"validation":{"mae":2.343520218729678,"max_error":7.3667490016669035,"r2":-0.2179440006350315,"rmse":2.914071737856406}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.329904353246093,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-0.000429064120000000","loss":7.4667354,"metrics":{"blind":{"mae":1.9837712106605372,"max_error":8.00042906412,"r2":-2.1937764937973725e-08,"rmse":2.896850036993249},"train":{"mae":1.8886183639093812,"max_error":8.00042906412,"r2":-2.4655488761737843e-08,"rmse":2.7325328793979207},"validation":{"mae":1.8592776812804053,"max_error":7.5480388701807914,"r2":-2.6404092245968513e-08,"rmse":2.6405025084274705}},"score":0.21677879937451605,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.00042906412,-0.00042906412],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.4391786323950955,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.6948836,"metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"score":0.13216509561918352,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..d611355 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s0-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:58:04.030987+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":7.840916,"metrics":{"blind":{"mae":2.1925443676325207,"max_error":8.794990671798587,"r2":-0.9134524132042416,"rmse":2.905655649361184},"train":{"mae":2.0909037518359495,"max_error":9.339534034952521,"r2":-1.0467232854724529,"rmse":2.8001634796699992},"validation":{"mae":2.0561481826967545,"max_error":8.869173489511013,"r2":-1.0608990535706466,"rmse":2.738143968373225}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"-0.736065700000000","loss":3.8309598,"metrics":{"blind":{"mae":1.3885020403171078,"max_error":6.619702174609375,"r2":-4.4580846881858704e-05,"rmse":2.100607888011068},"train":{"mae":1.2897904559898283,"max_error":6.7360657,"r2":-8.248526972565173e-09,"rmse":1.9572838996318855},"validation":{"mae":1.2740225923424868,"max_error":6.529022052233887,"r2":-1.4681853878872886e-05,"rmse":1.9073531340312488}},"score":0.7162402919524486,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7360657,-0.7360657],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 0.73624116","loss":2.1679358,"metrics":{"blind":{"mae":1.0328911012725035,"max_error":5.220077146815393,"r2":0.4739828073229796,"rmse":1.5234748219507863},"train":{"mae":1.010997133422432,"max_error":5.135307262225333,"r2":0.4341011378397972,"rmse":1.4723912646981567},"validation":{"mae":1.0004779510019908,"max_error":4.913301109492104,"r2":0.4135933935418106,"rmse":1.4605867159160064}},"score":0.004288519881894939,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.140588058198128,0.6681057381981278],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_target-s0-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_front.json new file mode 100644 index 0000000..b8eeb97 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s1-20260718-joint-front_odd-anchor-upper","deployment_expression":"-Cd_rear_a + Cl_F","deployment_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-Cd_rear_a + Cl_F","fitted_expression_hash":"58f09be57dd1819d036cf3a28e6cd7b2fcf120db955edb0a29f1afc5c16237dd","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:58:42.938308+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":11.063035,"metrics":{"blind":{"mae":2.397335248956127,"max_error":10.42662987858057,"r2":-0.4551338701802181,"rmse":3.4944391588586203},"train":{"mae":2.2861910842090616,"max_error":11.288995686918497,"r2":-0.48164269701234774,"rmse":3.326114023721584},"validation":{"mae":2.204870426019407,"max_error":10.415710713714361,"r2":-0.46288422144974994,"rmse":3.193681161201786}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.808346275240183],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"9.34154450000000e-5","loss":7.466735,"metrics":{"blind":{"mae":1.9837712106605367,"max_error":8.000093415445,"r2":-1.0398852889892396e-09,"rmse":2.8968500067242378},"train":{"mae":1.8886183639093812,"max_error":8.000093415445,"r2":-1.1687095735624098e-09,"rmse":2.732532847308723},"validation":{"mae":1.859277681280405,"max_error":7.547703221505791,"r2":-1.25159593800106e-09,"rmse":2.6405024752198565}},"score":0.3931515488098637,"static_safety":{"finite":true,"grid_size":9,"observed_range":[9.3415445e-05,9.3415445e-05],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cd_rear_a + Cl_F","loss":4.812801,"metrics":{"blind":{"mae":1.4348240343198086,"max_error":6.19973483029753,"r2":0.39818265826934685,"rmse":2.2472860589715657},"train":{"mae":1.4691360757638432,"max_error":6.753902945318259,"r2":0.3554344252239292,"rmse":2.1938096595342067},"validation":{"mae":1.4516590742381454,"max_error":6.678525430266745,"r2":0.3340524392115237,"rmse":2.1547981545693817}},"score":0.43917857882415867,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.6948836,"metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"score":0.13216509561918352,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..3ab4c4b --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s1-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s1-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:58:44.729934+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":8.725534,"metrics":{"blind":{"mae":2.2025368286374336,"max_error":9.807020496577024,"r2":-1.0009663750950644,"rmse":2.971359550249414},"train":{"mae":2.175572534066202,"max_error":9.976981297135353,"r2":-1.2776364997755074,"rmse":2.9539016324096634},"validation":{"mae":2.141221202077129,"max_error":9.392770864069462,"r2":-1.2488342091767866,"rmse":2.8602674164832402}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.808346275240183,4.808346275240183],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["target_Cl"]},{"complexity":2.0,"expression":"-0.736259160000000","loss":3.8309598,"metrics":{"blind":{"mae":1.3884472266504413,"max_error":6.619895634609375,"r2":-4.335945683231479e-05,"rmse":2.1006066052370773},"train":{"mae":1.2897243298316365,"max_error":6.73625916,"r2":-6.431499777193039e-11,"rmse":1.9572838916224724},"validation":{"mae":1.2739564521715467,"max_error":6.529215512233887,"r2":-1.3914850649721089e-05,"rmse":1.9073524025688413}},"score":0.8231382973343503,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.73625916,-0.73625916],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 1*0.7209395","loss":2.1681702,"metrics":{"blind":{"mae":1.0383755961633392,"max_error":5.204775486815393,"r2":0.4738336831120894,"rmse":1.5236907567951044},"train":{"mae":1.0159187895711814,"max_error":5.1200056022253335,"r2":0.43404000139565013,"rmse":1.4724707968736428},"validation":{"mae":1.0055860080551213,"max_error":4.897999449492104,"r2":0.41346902917753847,"rmse":1.4607415873879968}},"score":0.004180404443652337,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.125286398198128,0.6834073981981278],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_target-s1-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json new file mode 100644 index 0000000..6ff98aa --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s2-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_s*Cl_F - Cl_tot","deployment_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_s*Cl_F - Cl_tot","fitted_expression_hash":"e912cb0d3af775d998c85a409b14d478954cbeee2c3048e1682126c4198a7cfa","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:59:22.805650+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":6.009536,"metrics":{"blind":{"mae":2.031806132430817,"max_error":6.226958494167775,"r2":0.23389874322412185,"rmse":2.5355320002563877},"train":{"mae":2.0027488392901596,"max_error":6.838292457978241,"r2":0.1951589321325523,"rmse":2.451435411517872},"validation":{"mae":1.9520170104445622,"max_error":6.6842275691451505,"r2":0.1996888307431276,"rmse":2.3621964781141096}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7342512514442205,3.7342512514442205],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":3.0,"expression":"Cd_rear_s*Cl_F","loss":5.5210457,"metrics":{"blind":{"mae":1.923689371165529,"max_error":7.1259575768265115,"r2":0.33868910611758596,"rmse":2.35574808699271},"train":{"mae":1.916121153246358,"max_error":7.243138561505971,"r2":0.2605810762432256,"rmse":2.349690557154624},"validation":{"mae":2.0004452216128983,"max_error":6.681372030214402,"r2":0.1503568834654364,"rmse":2.4339118788596616}},"score":0.04239013007708457,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.559565447601343,18.80615419387491],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_s*Cl_F - Cl_tot","loss":3.6948836,"metrics":{"blind":{"mae":1.4446291572693488,"max_error":4.001777603933579,"r2":0.6362911380467735,"rmse":1.7470404082377418},"train":{"mae":1.633566124291565,"max_error":4.5155048168893925,"r2":0.5051541140802822,"rmse":1.9222079670445635},"validation":{"mae":1.9060330547285516,"max_error":4.776706961830401,"r2":0.32370345254765676,"rmse":2.1714766504588714}},"score":0.20080911443970814,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.44670733400484397,13.192682084912896],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_s","Cl_F","Cl_tot"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-illusion-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..836c5dd --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-illusion-actual_plus_target-s2-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cd_rear_a - Cl_F","deployment_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"Cd_rear_a - Cl_F","fitted_expression_hash":"a6c081ffcbc620f54cd8b5241bf1e49079caf6b434118dbd6eac9aebcd3210de","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-joint-illusion-actual_plus_target-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:59:24.872534+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":708,"niterations":40,"offline_metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1.5L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear_a","loss":4.9040117,"metrics":{"blind":{"mae":1.837936255679233,"max_error":6.162322535645217,"r2":-0.22865880060188193,"rmse":2.3283644484033825},"train":{"mae":1.743404057618141,"max_error":6.117111683823168,"r2":-0.2800998273386548,"rmse":2.214500289394257},"validation":{"mae":1.7341510439948298,"max_error":5.7351438049227,"r2":-0.29707249915591505,"rmse":2.1722511954356905}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.329904353246093,2.329904353246093],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":2.0,"expression":"-0.736034500000000","loss":3.8309598,"metrics":{"blind":{"mae":1.3885108803171078,"max_error":6.619670974609375,"r2":-4.477941349345649e-05,"rmse":2.1006080965570555},"train":{"mae":1.289801120396608,"max_error":6.7360345,"r2":-1.1398094246217738e-08,"rmse":1.9572839027141842},"validation":{"mae":1.274033259009153,"max_error":6.528990852233886,"r2":-1.4807478033951327e-05,"rmse":1.907353253834299}},"score":0.2469382121188863,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7360345,-0.7360345],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"Cd_rear_a - Cl_F","loss":2.7099905,"metrics":{"blind":{"mae":1.4613756679439271,"max_error":4.821911979932338,"r2":0.34651248053432737,"rmse":1.6980636311326003},"train":{"mae":1.4254029617590338,"max_error":5.135621701250784,"r2":0.29260803837021354,"rmse":1.6462048698604461},"validation":{"mae":1.4094412313952334,"max_error":4.429321879753843,"r2":0.26170697257335795,"rmse":1.6388616875053181}},"score":0.34617024296927223,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.4043468981981277,1.4043468981981277],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]},{"complexity":5.0,"expression":"Cd_rear_a - Cl_F + Cl_rear_s","loss":2.177253,"metrics":{"blind":{"mae":1.3157116377248712,"max_error":3.5170546589943115,"r2":0.47799944679162987,"rmse":1.517647088975289},"train":{"mae":1.2700021725968174,"max_error":3.6548037329339422,"r2":0.43166917716592934,"rmse":1.4755516869927663},"validation":{"mae":1.290678241830252,"max_error":3.1161962996120565,"r2":0.38733203488471846,"rmse":1.4929336452816895}},"score":0.10944056943785027,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.318736409302801,1.318736409302801],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F","Cl_rear_s"]},{"complexity":6.0,"expression":"Cd_rear_a - Cl_F - 1*0.73960984","loss":2.1679473,"metrics":{"blind":{"mae":1.0317452247920462,"max_error":5.223445826815393,"r2":0.4740013830573252,"rmse":1.5234479217716512},"train":{"mae":1.009931336360285,"max_error":5.138675942225333,"r2":0.43409817970754283,"rmse":1.472395113020437},"validation":{"mae":0.9993838498054096,"max_error":4.916669789492104,"r2":0.4136034840619893,"rmse":1.4605741494280366}},"score":0.004283215310837786,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1439567381981277,0.6647370581981278],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-illusion-actual_plus_target-s2-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_front.json new file mode 100644 index 0000000..493af83 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s0-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_T*(-0.34344983)","deployment_expression_hash":"dbc5bf40ac7a8d964561e97fc696bd1c9475c5b12f179f6dbdca3d6e62b11c86","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_T*(-0.34344983)","fitted_expression_hash":"dbc5bf40ac7a8d964561e97fc696bd1c9475c5b12f179f6dbdca3d6e62b11c86","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:51:07.792620+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.9696924985480688,"max_error":4.153298433868193,"r2":0.516384014357219,"rmse":1.2568119821352057},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.007277908530341,"max_error":3.2795263262695213,"r2":0.5157046710989952,"rmse":1.3062720994574688},"train":{"mae":0.9696924985480688,"max_error":4.153298433868193,"r2":0.516384014357219,"rmse":1.2568119821352057},"validation":{"mae":0.9237994076681512,"max_error":3.398623549041191,"r2":0.5401506101875969,"rmse":1.1879206476204678}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.1598098354692015,4.309315342356153],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":9.008039,"metrics":{"blind":{"mae":2.387957213955815,"max_error":9.966445583850145,"r2":-1.8247961728525195,"rmse":3.1548017194407563},"train":{"mae":2.3155587536225615,"max_error":10.346056532114744,"r2":-1.7579750169267072,"rmse":3.0013396976262037},"validation":{"mae":2.387930435925507,"max_error":10.433292753994465,"r2":-2.303752510736991,"rmse":3.1840756448645107}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0948242638260126,7.871423847973347],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-0.000161527410000000","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.593385814443081,"r2":-7.405176916108758e-09,"rmse":1.8770615445863048},"train":{"mae":1.5516717651527439,"max_error":3.8232477891592676,"r2":-7.988265382508075e-09,"rmse":1.8072573112348538},"validation":{"mae":1.513710749681848,"max_error":3.7386082399038965,"r2":-8.502237136553958e-09,"rmse":1.7517802495516612}},"score":1.0144968762743332,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.00016152741,-0.00016152741],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_T*(-0.34344983)","loss":1.5795761,"metrics":{"blind":{"mae":1.007277908530341,"max_error":3.2795263262695213,"r2":0.5157046710989952,"rmse":1.3062720994574688},"train":{"mae":0.9696924985480688,"max_error":4.153298433868193,"r2":0.516384014357219,"rmse":1.2568119821352057},"validation":{"mae":0.9237994076681512,"max_error":3.398623549041191,"r2":0.5401506101875969,"rmse":1.1879206476204678}},"score":0.36323200234770137,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.1598098354692015,4.309315342356153],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..9abf862 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s0-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s0-20260718-joint-rear_shared-anchor-upper","deployment_expression":"-(Cd_B + Cl_B) - 6.934077","deployment_expression_hash":"a07bcc1d38375f9acb98678e574ed9fe8d96d3b41ed77041bdb756d6da3ce19b","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-(Cd_B + Cl_B) - 6.934077","fitted_expression_hash":"a07bcc1d38375f9acb98678e574ed9fe8d96d3b41ed77041bdb756d6da3ce19b","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:51:10.240118+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":2.951507689473895,"max_error":16.81008413644838,"r2":-1.1615068984323216,"rmse":3.944992124804021},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":3.033057734808094,"max_error":14.860396104178905,"r2":-0.8184328452081104,"rmse":3.945560240532802},"train":{"mae":2.951507689473895,"max_error":16.81008413644838,"r2":-1.1615068984323216,"rmse":3.944992124804021},"validation":{"mae":3.0786829037900056,"max_error":16.778190987430094,"r2":-1.2924769914459366,"rmse":4.140907963629816}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-16.90046907005501,19.056626143179415],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cl_F**8","loss":165428800000.0,"metrics":{"blind":{"mae":105941.37445577653,"max_error":1253718.5459693973,"r2":-9345429478.439764,"rmse":282852.27573828347},"train":{"mae":135346.91348446527,"max_error":3728111.356041695,"r2":-22976055533.857616,"rmse":406729.3978618605},"validation":{"mae":112971.98500999068,"max_error":1428465.5835448354,"r2":-10774965457.734009,"rmse":283890.61030855187}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0,3728099.356041695],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":6.0,"expression":"-(Cd_B + Cl_B) - 6.934077","loss":15.562963,"metrics":{"blind":{"mae":3.033057734808094,"max_error":14.860396104178905,"r2":-0.8184328452081104,"rmse":3.945560240532802},"train":{"mae":2.951507689473895,"max_error":16.81008413644838,"r2":-1.1615068984323216,"rmse":3.944992124804021},"validation":{"mae":3.0786829037900056,"max_error":16.778190987430094,"r2":-1.2924769914459366,"rmse":4.140907963629816}},"score":11.543456401464633,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-16.90046907005501,19.056626143179415],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B","Cl_B"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-raw_complete-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_front.json new file mode 100644 index 0000000..c634ef6 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s1-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_B*0.34349024","deployment_expression_hash":"1762a0034edbc948a296025af754d1b9df44478c7ba80f5dcf4905954f270ffc","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_B*0.34349024","fitted_expression_hash":"1762a0034edbc948a296025af754d1b9df44478c7ba80f5dcf4905954f270ffc","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:51:48.410643+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.9697084544424474,"max_error":4.153403515505716,"r2":0.5163840089888443,"rmse":1.2568119891108205},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.007286960958479,"max_error":3.2795813173501194,"r2":0.5157104251570419,"rmse":1.306264339329131},"train":{"mae":0.9697084544424474,"max_error":4.153403515505716,"r2":0.5163840089888443,"rmse":1.2568119891108205},"validation":{"mae":0.9238086001355662,"max_error":3.3986412288695296,"r2":0.5401532639332787,"rmse":1.1879172199288073}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.309822372547388,3.160181615869999],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_F","loss":10.725681,"metrics":{"blind":{"mae":2.720903423461641,"max_error":7.295253429561853,"r2":-1.8336629129322257,"rmse":3.1597491366334935},"train":{"mae":2.8342446179334946,"max_error":7.942499291151762,"r2":-2.2838619823722546,"rmse":3.275008537997942},"validation":{"mae":2.7068503883879784,"max_error":6.795848874375224,"r2":-2.1838009534223244,"rmse":3.1257380389182177}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.628815550357103,6.628815550357103],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]},{"complexity":2.0,"expression":"0.000120830075000000","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.5933451171080812,"r2":-4.1437455688964064e-09,"rmse":1.877061541525351},"train":{"mae":1.5516717651527439,"max_error":3.8232070918242678,"r2":-4.4700267931574444e-09,"rmse":1.8072573080556726},"validation":{"mae":1.5137107496818483,"max_error":3.7385675425688967,"r2":-4.7576320660880356e-09,"rmse":1.7517802462717984}},"score":1.189020434703228,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.000120830075,0.000120830075],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_B*0.34349024","loss":1.5795761,"metrics":{"blind":{"mae":1.007286960958479,"max_error":3.2795813173501194,"r2":0.5157104251570419,"rmse":1.306264339329131},"train":{"mae":0.9697084544424474,"max_error":4.153403515505716,"r2":0.5163840089888443,"rmse":1.2568119891108205},"validation":{"mae":0.9238086001355662,"max_error":3.3986412288695296,"r2":0.5401532639332787,"rmse":1.1879172199288073}},"score":0.36323200234770137,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.309822372547388,3.160181615869999],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":7.0,"expression":"(-Cd_B - 0.17573798)*(-0.34420493)","loss":1.5759083,"metrics":{"blind":{"mae":1.0031270073066207,"max_error":3.341043766991173,"r2":0.5169329778755738,"rmse":1.3046145142673196},"train":{"mae":0.9663236236109262,"max_error":4.215751865174696,"r2":0.517506979228215,"rmse":1.255351964271725},"validation":{"mae":0.9200997240962219,"max_error":3.3384640346580228,"r2":0.5431623929529941,"rmse":1.184024114965638}},"score":0.0007749051464860187,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.2582998135959285,3.227246791550487],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..8bb744e --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s1-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s1-20260718-joint-rear_shared-anchor-upper","deployment_expression":"-Cl_F - 3.397522","deployment_expression_hash":"1e4ff4cce1b34d0ad19ba532f2cd130fae2409bad516ecce143cbd267c93deba","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F - 3.397522","fitted_expression_hash":"1e4ff4cce1b34d0ad19ba532f2cd130fae2409bad516ecce143cbd267c93deba","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:51:49.966480+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.7674631105580496,"max_error":8.989527383223296,"r2":0.33239806710469844,"rmse":2.192434463905853},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.7819559627792743,"max_error":7.103796423748255,"r2":0.4523954557305271,"rmse":2.1651778057255298},"train":{"mae":1.7674631105580496,"max_error":8.989527383223296,"r2":0.33239806710469844,"rmse":2.192434463905853},"validation":{"mae":1.6832502939754375,"max_error":7.316147621125102,"r2":0.4179072168121456,"rmse":2.086599949846992}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-10.026337550357104,3.2312935503571034],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_B","loss":6.221806,"metrics":{"blind":{"mae":1.908025815422843,"max_error":7.5319707822054625,"r2":0.2086088440770253,"rmse":2.6028889591830424},"train":{"mae":1.823149103423683,"max_error":8.256829988211393,"r2":0.1358665729138887,"rmse":2.4943548121433583},"validation":{"mae":1.8389189652029576,"max_error":7.917192108929157,"r2":0.16687492438371587,"rmse":2.4963081132780673}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-13.443556614220142,0.7661841809749603],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":4.0,"expression":"-Cl_F - 3.397522","loss":4.8067675,"metrics":{"blind":{"mae":1.7819559627792743,"max_error":7.103796423748255,"r2":0.4523954557305271,"rmse":2.1651778057255298},"train":{"mae":1.7674631105580496,"max_error":8.989527383223296,"r2":0.33239806710469844,"rmse":2.192434463905853},"validation":{"mae":1.6832502939754375,"max_error":7.316147621125102,"r2":0.4179072168121456,"rmse":2.086599949846992}},"score":0.08601179917569952,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-10.026337550357104,3.2312935503571034],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-raw_complete-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_front.json new file mode 100644 index 0000000..66cba7a --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s2-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_T*(-0.34345186)","deployment_expression_hash":"cdc6e19ebc9b08888b11fcbc5ee0e2df47b6d0d04727c66de5c4d5ce2c9c77f5","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_T*(-0.34345186)","fitted_expression_hash":"cdc6e19ebc9b08888b11fcbc5ee0e2df47b6d0d04727c66de5c4d5ce2c9c77f5","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:52:26.739410+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.9696933000938642,"max_error":4.153303712653746,"r2":0.5163840144286012,"rmse":1.2568119820424524},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.007278363279886,"max_error":3.2795290887514223,"r2":0.5157049604629074,"rmse":1.3062717092120557},"train":{"mae":0.9696933000938642,"max_error":4.153303712653746,"r2":0.5163840144286012,"rmse":1.2568119820424524},"validation":{"mae":0.9237998694525822,"max_error":3.398624437188964,"r2":0.5401507438405841,"rmse":1.1879204749887777}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.159828511891216,4.309340813063606],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_B","loss":7.7427235,"metrics":{"blind":{"mae":2.284336532921418,"max_error":7.162379436194897,"r2":-1.0963498776931222,"rmse":2.717755570091757},"train":{"mae":2.292091095165341,"max_error":10.951210111379623,"r2":-1.3705757235903513,"rmse":2.7825751667118337},"validation":{"mae":2.1708113695023528,"max_error":6.999263897538185,"r2":-1.3078677256570557,"rmse":2.66124636131308}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-12.547146528959274,9.200207889080048],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_B"]},{"complexity":2.0,"expression":"0.000121306360000000","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.593345593393081,"r2":-4.17647738615301e-09,"rmse":1.877061541556071},"train":{"mae":1.5516717651527439,"max_error":3.8232075681092677,"r2":-4.505335882143413e-09,"rmse":1.807257308087579},"validation":{"mae":1.513710749681848,"max_error":3.7385680188538966,"r2":-4.795213115471597e-09,"rmse":1.7517802463047154}},"score":0.8631329744951962,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.00012130636,0.00012130636],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_T*(-0.34345186)","loss":1.5795761,"metrics":{"blind":{"mae":1.007278363279886,"max_error":3.2795290887514223,"r2":0.5157049604629074,"rmse":1.3062717092120557},"train":{"mae":0.9696933000938642,"max_error":4.153303712653746,"r2":0.5163840144286012,"rmse":1.2568119820424524},"validation":{"mae":0.9237998694525822,"max_error":3.398624437188964,"r2":0.5401507438405841,"rmse":1.1879204749887777}},"score":0.36323200234770137,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.159828511891216,4.309340813063606],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_T"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..f5c0e51 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-raw_complete-s2-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-raw_complete-s2-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cl_B*0.7748039","deployment_expression_hash":"c7b01c3646847209f3a4d541312c31b28bf7eb3e3962f2f6efd8e80b7c9f6593","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cl_B*0.7748039","fitted_expression_hash":"c7b01c3646847209f3a4d541312c31b28bf7eb3e3962f2f6efd8e80b7c9f6593","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-raw_complete-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set raw_complete --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:52:28.665430+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.730164643474319,"max_error":6.70206069132681,"r2":0.296364164313056,"rmse":2.2508253743200655},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"raw_complete","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.9240151848811338,"max_error":6.736584736738843,"r2":0.2951956679614375,"rmse":2.456373069544471},"train":{"mae":1.730164643474319,"max_error":6.70206069132681,"r2":0.296364164313056,"rmse":2.2508253743200655},"validation":{"mae":1.8020066264652927,"max_error":7.035055723047536,"r2":0.28615559155854675,"rmse":2.3107069264510103}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-10.416120094568562,0.5936424915377051],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":30.925922,"metrics":{"blind":{"mae":5.1659192759887445,"max_error":13.912647623568773,"r2":-2.984275245338899,"rmse":5.840294020156238},"train":{"mae":4.933772642637188,"max_error":13.894172262400389,"r2":-3.2952360054374923,"rmse":5.561108178821877},"validation":{"mae":5.112590770069148,"max_error":13.631708230823278,"r2":-3.535924963132379,"rmse":5.824732911145172}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0948242638260126,7.871423847973347],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"-3.39752400000000","loss":7.2000513,"metrics":{"blind":{"mae":2.267256268388152,"max_error":7.9419821492919915,"r2":-0.0007472726866277757,"rmse":2.926996833216771},"train":{"mae":2.0837267648933175,"max_error":8.602476,"r2":-4.226397010143046e-12,"rmse":2.6832913313831375},"validation":{"mae":2.160468161646952,"max_error":8.602476,"r2":-0.001037683928616584,"rmse":2.736328907611458}},"score":1.4575065809037837,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.397524,-3.397524],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cl_B*0.7748039","loss":5.0662146,"metrics":{"blind":{"mae":1.9240151848811338,"max_error":6.736584736738843,"r2":0.2951956679614375,"rmse":2.456373069544471},"train":{"mae":1.730164643474319,"max_error":6.70206069132681,"r2":0.296364164313056,"rmse":2.2508253743200655},"validation":{"mae":1.8020066264652927,"max_error":7.035055723047536,"r2":0.28615559155854675,"rmse":2.3107069264510103}},"score":0.175747119738693,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-10.416120094568562,0.5936424915377051],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B"]},{"complexity":6.0,"expression":"(Cl_B - Cl_F)*0.6203772","loss":4.0581274,"metrics":{"blind":{"mae":1.7994247832122994,"max_error":5.390893553674826,"r2":0.47740340835941075,"rmse":2.115160518852808},"train":{"mae":1.6803431149168129,"max_error":6.0984077942973,"r2":0.4363752525258069,"rmse":2.01447951051983},"validation":{"mae":1.6878923293972825,"max_error":5.46660253713117,"r2":0.4666687739090466,"rmse":1.997292131868136}},"score":0.11093613791633596,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.227709979924373,-3.6370428335694593],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_B","Cl_F"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-raw_complete-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json new file mode 100644 index 0000000..975a08f --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s0-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_a*(-0.19189945)","deployment_expression_hash":"ebe3ad7459b3fcd17b4598e7ef00e33c608d9a44c57d1b545b8eb4a7bb3bcc38","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a*(-0.19189945)","fitted_expression_hash":"ebe3ad7459b3fcd17b4598e7ef00e33c608d9a44c57d1b545b8eb4a7bb3bcc38","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:53:06.846820+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.0678786226348502,"max_error":3.326370174328523,"r2":0.430274455832776,"rmse":1.364120810997894},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.1369416800852938,"max_error":3.1897596168707736,"r2":0.4149204243295129,"rmse":1.4357736531705527},"train":{"mae":1.0678786226348502,"max_error":3.326370174328523,"r2":0.430274455832776,"rmse":1.364120810997894},"validation":{"mae":1.0443713680775544,"max_error":3.0232170791702404,"r2":0.44262470012469723,"rmse":1.3078365887050538}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8906123346781591,1.8906123346781591],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_F","loss":9.008039,"metrics":{"blind":{"mae":2.387957213955815,"max_error":9.966445583850145,"r2":-1.8247961728525195,"rmse":3.1548017194407563},"train":{"mae":2.3155587536225615,"max_error":10.346056532114744,"r2":-1.7579750169267072,"rmse":3.0013396976262037},"validation":{"mae":2.387930435925507,"max_error":10.433292753994465,"r2":-2.303752510736991,"rmse":3.1840756448645107}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.0948242638260126,7.871423847973347],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_F"]},{"complexity":2.0,"expression":"3.01349850000000e-5","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.593254422018081,"r2":-2.577420499250138e-10,"rmse":1.8770615378782174},"train":{"mae":1.5516717651527439,"max_error":3.8231163967342674,"r2":-2.7803670477055675e-10,"rmse":1.80725730426767},"validation":{"mae":1.513710749681848,"max_error":3.7384768474788963,"r2":-2.959257283663419e-10,"rmse":1.751780242363834}},"score":1.0144968762743332,"static_safety":{"finite":true,"grid_size":9,"observed_range":[3.0134985e-05,3.0134985e-05],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_a*(-0.19189945)","loss":1.8608255,"metrics":{"blind":{"mae":1.1369416800852938,"max_error":3.1897596168707736,"r2":0.4149204243295129,"rmse":1.4357736531705527},"train":{"mae":1.0678786226348502,"max_error":3.326370174328523,"r2":0.430274455832776,"rmse":1.364120810997894},"validation":{"mae":1.0443713680775544,"max_error":3.0232170791702404,"r2":0.44262470012469723,"rmse":1.3078365887050538}},"score":0.2813001590634227,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8906123346781591,1.8906123346781591],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]},{"complexity":7.0,"expression":"Cd_rear_a*(-1*0.2373924 - 0.19189945)","loss":1.4489092,"metrics":{"blind":{"mae":1.001458569856318,"max_error":2.7729693946067595,"r2":0.5573328724831621,"rmse":1.2488697520250018},"train":{"mae":0.9463681836314943,"max_error":3.0778141953791915,"r2":0.5563901796520117,"rmse":1.2037063856961312},"validation":{"mae":0.9069092667311673,"max_error":2.686806891331848,"r2":0.5796438335540499,"rmse":1.1357646178113239}},"score":0.0834030696675825,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.2294257059455145,4.2294257059455145],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..22648d0 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s0-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cl_rear_s - 1*3.3975308","deployment_expression_hash":"9a7774c39e8202f69036fed59305f4aec2916030cc47786fda725dc459b14148","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - 1*3.3975308","fitted_expression_hash":"9a7774c39e8202f69036fed59305f4aec2916030cc47786fda725dc459b14148","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s0-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 0 --niterations 40 --smoke","created_at":"2026-07-18T10:53:08.876520+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.7597651227020648,"max_error":5.7872762803809525,"r2":0.4035140723197239,"rmse":2.259748704440717},"train":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"validation":{"mae":1.6080307930188815,"max_error":5.930865150213409,"r2":0.4015057329036751,"rmse":2.1157925447235675}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416350621998477,1.6212890219984768],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.39767890000000","loss":7.2000513,"metrics":{"blind":{"mae":2.267236905888152,"max_error":7.941827249291992,"r2":-0.0007443810735501266,"rmse":2.926992604502556},"train":{"mae":2.0837205295119614,"max_error":8.602321100000001,"r2":-3.0993532185163986e-09,"rmse":2.683291335535701},"validation":{"mae":2.1604453238264396,"max_error":8.602321100000001,"r2":-0.0010340381616065208,"rmse":2.736323924768702}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3976789,-3.3976789],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":6.221806,"metrics":{"blind":{"mae":1.908025815422843,"max_error":7.5319707822054625,"r2":0.2086088440770253,"rmse":2.6028889591830424},"train":{"mae":1.823149103423683,"max_error":8.256829988211393,"r2":0.1358665729138887,"rmse":2.4943548121433583},"validation":{"mae":1.8389189652029576,"max_error":7.917192108929157,"r2":0.16687492438371587,"rmse":2.4963081132780673}},"score":0.14602793269226697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.143910111859441,-3.4059169702231884],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s - 1*3.3975308","loss":4.185148,"metrics":{"blind":{"mae":1.7597651227020648,"max_error":5.7872762803809525,"r2":0.4035140723197239,"rmse":2.259748704440717},"train":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"validation":{"mae":1.6080307930188815,"max_error":5.930865150213409,"r2":0.4015057329036751,"rmse":2.1157925447235675}},"score":0.39651815059157225,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416350621998477,1.6212890219984768],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-symmetry-s0-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json new file mode 100644 index 0000000..0242a0e --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s1-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_a*(-0.3772466)","deployment_expression_hash":"5cb4b33ffa75bea0dfe2ab6d29f26ce112cebd6fbf760d5c63f47d96c985a6cb","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a*(-0.3772466)","fitted_expression_hash":"5cb4b33ffa75bea0dfe2ab6d29f26ce112cebd6fbf760d5c63f47d96c985a6cb","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:53:47.286150+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.8805187088086815,"max_error":3.115978598873158,"r2":0.5671865778857618,"rmse":1.1889685000786414},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":0.9384378616999005,"max_error":2.8625566501166206,"r2":0.5612159517416686,"rmse":1.2433801395085586},"train":{"mae":0.8805187088086815,"max_error":3.115978598873158,"r2":0.5671865778857618,"rmse":1.1889685000786414},"validation":{"mae":0.8359612554594407,"max_error":2.6693678467497084,"r2":0.5884638863038991,"rmse":1.123785954339253}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7166707626071758,3.7166707626071758],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":7.7001934,"metrics":{"blind":{"mae":2.046306536209522,"max_error":11.292205783072859,"r2":-1.3490346834908906,"rmse":2.876889792846079},"train":{"mae":2.0137312982440068,"max_error":13.122840568423271,"r2":-1.3575537405321891,"rmse":2.7749220585957564},"validation":{"mae":1.940510671887564,"max_error":10.648910135030746,"r2":-1.34613395322455,"rmse":2.683218416347524}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.7113416735082865,9.862644597887993],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"0.000118047970000000","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.593342335003081,"r2":-3.955123339949296e-09,"rmse":1.8770615413483234},"train":{"mae":1.5516717651527439,"max_error":3.8232043097192676,"r2":-4.266552444676108e-09,"rmse":1.8072573078718073},"validation":{"mae":1.513710749681848,"max_error":3.7385647604638965,"r2":-4.5410659677003196e-09,"rmse":1.7517802460821104}},"score":0.8576249208287999,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.00011804797,0.00011804797],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_a*(-0.3772466)","loss":1.4136462,"metrics":{"blind":{"mae":0.9384378616999005,"max_error":2.8625566501166206,"r2":0.5612159517416686,"rmse":1.2433801395085586},"train":{"mae":0.8805187088086815,"max_error":3.115978598873158,"r2":0.5671865778857618,"rmse":1.1889685000786414},"validation":{"mae":0.8359612554594407,"max_error":2.6693678467497084,"r2":0.5884638863038991,"rmse":1.123785954339253}},"score":0.4187241002982551,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.7166707626071758,3.7166707626071758],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..9daf15a --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s1-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cl_rear_s - 3.3975308","deployment_expression_hash":"6ebf28e653cf37ef19c4d3eb83e360f05d57f6cf813ef4ae3afce79355eac5d0","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - 3.3975308","fitted_expression_hash":"6ebf28e653cf37ef19c4d3eb83e360f05d57f6cf813ef4ae3afce79355eac5d0","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s1-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 1 --niterations 40 --smoke","created_at":"2026-07-18T10:53:49.284831+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.7597651227020648,"max_error":5.7872762803809525,"r2":0.4035140723197239,"rmse":2.259748704440717},"train":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"validation":{"mae":1.6080307930188815,"max_error":5.930865150213409,"r2":0.4015057329036751,"rmse":2.1157925447235675}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416350621998477,1.6212890219984768],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.39728950000000","loss":7.2000504,"metrics":{"blind":{"mae":2.267285580888152,"max_error":7.942216649291993,"r2":-0.0007516609080304715,"rmse":2.927003250569293},"train":{"mae":2.0837362045119616,"max_error":8.6027105,"r2":-8.001024509596277e-09,"rmse":2.683291342112007},"validation":{"mae":2.160502735364901,"max_error":8.6027105,"r2":-0.0010432153903228158,"rmse":2.7363364677052995}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3972895,-3.3972895],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":6.221806,"metrics":{"blind":{"mae":1.908025815422843,"max_error":7.5319707822054625,"r2":0.2086088440770253,"rmse":2.6028889591830424},"train":{"mae":1.823149103423683,"max_error":8.256829988211393,"r2":0.1358665729138887,"rmse":2.4943548121433583},"validation":{"mae":1.8389189652029576,"max_error":7.917192108929157,"r2":0.16687492438371587,"rmse":2.4963081132780673}},"score":0.1460278076931498,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.143910111859441,-3.4059169702231884],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s - 3.3975308","loss":4.185148,"metrics":{"blind":{"mae":1.7597651227020648,"max_error":5.7872762803809525,"r2":0.4035140723197239,"rmse":2.259748704440717},"train":{"mae":1.5608106301344782,"max_error":6.386636495321822,"r2":0.4187335672607714,"rmse":2.045763611977368},"validation":{"mae":1.6080307930188815,"max_error":5.930865150213409,"r2":0.4015057329036751,"rmse":2.1157925447235675}},"score":0.39651815059157225,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416350621998477,1.6212890219984768],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-symmetry-s1-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_front.json new file mode 100644 index 0000000..764a1e8 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s2-20260718-joint-front_odd-anchor-upper","deployment_expression":"Cd_rear_a*(-0.37720785)","deployment_expression_hash":"eef2afba31fcd3a6c74b12dd306a6785275b2721c98e7b2a0a4cb9a3943db751","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a*(-0.37720785)","fitted_expression_hash":"eef2afba31fcd3a6c74b12dd306a6785275b2721c98e7b2a0a4cb9a3943db751","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:54:27.463052+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.880483933116267,"max_error":3.1160070139664735,"r2":0.5671865725750067,"rmse":1.1889685073731477},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":0.9384083349378187,"max_error":2.862623351806996,"r2":0.5612114980605107,"rmse":1.2433864496794382},"train":{"mae":0.880483933116267,"max_error":3.1160070139664735,"r2":0.5671865725750067,"rmse":1.1889685073731477},"validation":{"mae":0.8359281754910582,"max_error":2.66942731968137,"r2":0.5884623228795614,"rmse":1.1237880889667913}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.716288993779966,3.716288993779966],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":7.7001934,"metrics":{"blind":{"mae":2.046306536209522,"max_error":11.292205783072859,"r2":-1.3490346834908906,"rmse":2.876889792846079},"train":{"mae":2.0137312982440068,"max_error":13.122840568423271,"r2":-1.3575537405321891,"rmse":2.7749220585957564},"validation":{"mae":1.940510671887564,"max_error":10.648910135030746,"r2":-1.34613395322455,"rmse":2.683218416347524}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.7113416735082865,9.862644597887993],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_tot"]},{"complexity":2.0,"expression":"0.000121280900000000","loss":3.2661781,"metrics":{"blind":{"mae":1.6166954983957111,"max_error":3.5933455679330812,"r2":-4.174724343997127e-09,"rmse":1.8770615415544258},"train":{"mae":1.5516717651527439,"max_error":3.8232075426492678,"r2":-4.5034449502878715e-09,"rmse":1.80725730808587},"validation":{"mae":1.513710749681848,"max_error":3.7385679933938967,"r2":-4.793200281127952e-09,"rmse":1.7517802463029524}},"score":0.8576249208287999,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0001212809,0.0001212809],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":4.0,"expression":"Cd_rear_a*(-0.37720785)","loss":1.413646,"metrics":{"blind":{"mae":0.9384083349378187,"max_error":2.862623351806996,"r2":0.5612114980605107,"rmse":1.2433864496794382},"train":{"mae":0.880483933116267,"max_error":3.1160070139664735,"r2":0.5671865725750067,"rmse":1.1889685073731477},"validation":{"mae":0.8359281754910582,"max_error":2.66942731968137,"r2":0.5884623228795614,"rmse":1.1237880889667913}},"score":0.4187241710373177,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.716288993779966,3.716288993779966],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cd_rear_a"]}],"unary_operators":["square"]}},"role":"front_odd","run_id":"article-joint-karman-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..51d30ab --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-karman-symmetry-s2-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-joint-karman-symmetry-s2-20260718-joint-rear_shared-anchor-upper","deployment_expression":"Cl_rear_s - 3.3974605","deployment_expression_hash":"f24608ff637455c45b5628380b42517f3f66c169bb25f182828a1cd3662e802d","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_rear_s - 3.3974605","fitted_expression_hash":"f24608ff637455c45b5628380b42517f3f66c169bb25f182828a1cd3662e802d","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-joint-karman-symmetry-s2-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --sample-segment all --transient-count 50 --deployment-architecture mapped_shared --fit-augmentation G --seed 2 --niterations 40 --smoke","created_at":"2026-07-18T10:54:29.980173+00:00","deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.5608177792870208,"max_error":6.386706795321822,"r2":0.4187335665994437,"rmse":2.0457636131411374},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":944,"niterations":40,"offline_metrics":{"blind":{"mae":1.7597752283270651,"max_error":5.787205980380953,"r2":0.40351275824900557,"rmse":2.2597511935756907},"train":{"mae":1.5608177792870208,"max_error":6.386706795321822,"r2":0.4187335665994437,"rmse":2.0457636131411374},"validation":{"mae":1.6080443122496508,"max_error":5.930794850213409,"r2":0.4015040763156733,"rmse":2.11579547290042}},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416280321998478,1.6213593219984768],"required_output_range":null,"safe":true,"within_output_range":true}},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.39752460000000","loss":7.2000513,"metrics":{"blind":{"mae":2.2672561933881523,"max_error":7.941981549291992,"r2":-0.0007472614752463969,"rmse":2.9269968168211835},"train":{"mae":2.0837267407407754,"max_error":8.6024754,"r2":-3.3568703372566233e-12,"rmse":2.683291331381971},"validation":{"mae":2.1604680731854136,"max_error":8.6024754,"r2":-0.0010376697944818325,"rmse":2.736328888293683}},"score":0.0,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.3975246,-3.3975246],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":[]},{"complexity":3.0,"expression":"-Cl_rear_a + Cl_rear_s","loss":6.221806,"metrics":{"blind":{"mae":1.908025815422843,"max_error":7.5319707822054625,"r2":0.2086088440770253,"rmse":2.6028889591830424},"train":{"mae":1.823149103423683,"max_error":8.256829988211393,"r2":0.1358665729138887,"rmse":2.4943548121433583},"validation":{"mae":1.8389189652029576,"max_error":7.917192108929157,"r2":0.16687492438371587,"rmse":2.4963081132780673}},"score":0.14602793269226697,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-6.143910111859441,-3.4059169702231884],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_a","Cl_rear_s"]},{"complexity":4.0,"expression":"Cl_rear_s - 3.3974605","loss":4.1851482,"metrics":{"blind":{"mae":1.7597752283270651,"max_error":5.787205980380953,"r2":0.40351275824900557,"rmse":2.2597511935756907},"train":{"mae":1.5608177792870208,"max_error":6.386706795321822,"r2":0.4187335665994437,"rmse":2.0457636131411374},"validation":{"mae":1.6080443122496508,"max_error":5.930794850213409,"r2":0.4015040763156733,"rmse":2.11579547290042}},"score":0.39651810280353794,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.416280321998478,1.6213593219984768],"required_output_range":null,"safe":true,"within_output_range":true},"used_features":["Cl_rear_s"]}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"article-joint-karman-symmetry-s2-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-joint-sr-final-20260718/evidence_manifest.json b/src/SR_analysis/results/runs/article-joint-sr-final-20260718/evidence_manifest.json new file mode 100644 index 0000000..3794c54 --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-sr-final-20260718/evidence_manifest.json @@ -0,0 +1,863 @@ +{ + "ablation": { + "formula_variants": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas", + "scale_grid": [ + 0, + 0.5, + 0.75, + 1, + 1.25, + 1.5 + ], + "scaling_shadow": "src/SR_analysis/results/runs/article-scaling-L1-v2-20260718/summary.json", + "short_cfd": { + "article-ablation-L2-i_front0-20260718": [ + { + "formula_hash": "028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533", + "lag": 11, + "per_channel": { + "0": 0.9568884256813261, + "1": 0.9238094933744934, + "2": 0.9455921600262324, + "3": 0.8666782427786125, + "4": 0.9708618770043055, + "5": 0.9724193947768072 + }, + "scene": "illusion_0.75L", + "similarity": 0.9393749322736294, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_0p75L__pysr__f-028cce8471d1__si-400.npz", + "sha256": "1fd3f65f81415fcf0b06386fedca01ac70cfcff02cf7b7a5b1936590b7665f85", + "telemetry_hash": "1fd3f65f81415fcf0b06386fedca01ac70cfcff02cf7b7a5b1936590b7665f85" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_0p75L__pysr__f-028cce8471d1__si-400.json" + }, + { + "formula_hash": "028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533", + "lag": 3, + "per_channel": { + "0": 0.9665456497006946, + "1": 0.944839437543932, + "2": 0.8883379068639543, + "3": 0.90095640858797, + "4": 0.9600556840499243, + "5": 0.940153369479554 + }, + "scene": "illusion_1L", + "similarity": 0.9334814093710048, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_1L__pysr__f-028cce8471d1__si-600.npz", + "sha256": "fe591c8181fe680547bc0c1fb55d57c8bb83b5a9aebe25e351e21d08dac33bf8", + "telemetry_hash": "fe591c8181fe680547bc0c1fb55d57c8bb83b5a9aebe25e351e21d08dac33bf8" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1L__pysr__f-028cce8471d1__si-600.json" + }, + { + "formula_hash": "028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533", + "lag": 3, + "per_channel": { + "0": 0.8829544542564286, + "1": 0.9043059252803182, + "2": 0.9185581770208147, + "3": 0.8397065458508829, + "4": 0.8963926749096977, + "5": 0.8685903923016869 + }, + "scene": "illusion_1.5L", + "similarity": 0.8850846949366383, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/telemetry/illusion_1p5L__pysr__f-028cce8471d1__si-800.npz", + "sha256": "98bfd351de391f80b69d480236e9b05a7263027390d04c421aeb604cac86af0c", + "telemetry_hash": "98bfd351de391f80b69d480236e9b05a7263027390d04c421aeb604cac86af0c" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front0-20260718/validations/illusion_1p5L__pysr__f-028cce8471d1__si-800.json" + } + ], + "article-ablation-L2-i_front1-20260718": [ + { + "formula_hash": "278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef", + "lag": 15, + "per_channel": { + "0": 0.9578075624174542, + "1": 0.9775036726819558, + "2": 0.9411989798148473, + "3": 0.9697771366271708, + "4": 0.9364889545573128, + "5": 0.9776285456545237 + }, + "scene": "illusion_0.75L", + "similarity": 0.9600674752922108, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_0p75L__pysr__f-278b1137701d__si-400.npz", + "sha256": "fe408ad495d54ac9e2c3ca61d1a6ef7a013cce1ffba6eb1208baf69d5633c610", + "telemetry_hash": "fe408ad495d54ac9e2c3ca61d1a6ef7a013cce1ffba6eb1208baf69d5633c610" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_0p75L__pysr__f-278b1137701d__si-400.json" + }, + { + "formula_hash": "278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef", + "lag": 5, + "per_channel": { + "0": 0.9534095724423727, + "1": 0.9087295572583874, + "2": 0.9665000554588106, + "3": 0.869433000166383, + "4": 0.9362858285506567, + "5": 0.9278491968030317 + }, + "scene": "illusion_1L", + "similarity": 0.9270345351132736, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_1L__pysr__f-278b1137701d__si-600.npz", + "sha256": "0e85a6dd127adb66d771f383998be6e5d06b357f56ca783c213e9f8d90e6f8a0", + "telemetry_hash": "0e85a6dd127adb66d771f383998be6e5d06b357f56ca783c213e9f8d90e6f8a0" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1L__pysr__f-278b1137701d__si-600.json" + }, + { + "formula_hash": "278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef", + "lag": 9, + "per_channel": { + "0": 0.8854793020420604, + "1": 0.8453607961742414, + "2": 0.8987970021035936, + "3": 0.7395097280128134, + "4": 0.8836076143715117, + "5": 0.7666244040657249 + }, + "scene": "illusion_1.5L", + "similarity": 0.8365631411283242, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/telemetry/illusion_1p5L__pysr__f-278b1137701d__si-800.npz", + "sha256": "35cc6c160d4cf5ac51db61614b508e493e1f06672ca09d2923f889d54456062f", + "telemetry_hash": "35cc6c160d4cf5ac51db61614b508e493e1f06672ca09d2923f889d54456062f" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_front1-20260718/validations/illusion_1p5L__pysr__f-278b1137701d__si-800.json" + } + ], + "article-ablation-L2-i_rear0-20260718": [ + { + "formula_hash": "56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a", + "lag": 10, + "per_channel": { + "0": 0.9290310276879205, + "1": 0.9747209231265717, + "2": 0.9275765601131651, + "3": 0.9650096133506546, + "4": 0.9524878097905053, + "5": 0.978099466434085 + }, + "scene": "illusion_0.75L", + "similarity": 0.9544875667504836, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.npz", + "sha256": "69f805ad3146536deafab3557b5cc4b1f4b9a6072ffe60dee24cac81e8e728d7", + "telemetry_hash": "69f805ad3146536deafab3557b5cc4b1f4b9a6072ffe60dee24cac81e8e728d7" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_0p75L__pysr__f-56d7d5018cb0__si-400.json" + }, + { + "formula_hash": "56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a", + "lag": 2, + "per_channel": { + "0": 0.9627078473567963, + "1": 0.9285070540176498, + "2": 0.9250590884023242, + "3": 0.8916143405561646, + "4": 0.9720334559679031, + "5": 0.9411830572514899 + }, + "scene": "illusion_1L", + "similarity": 0.9368508072587213, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_1L__pysr__f-56d7d5018cb0__si-600.npz", + "sha256": "0f0eabcb6244554039e7a82ae25c68b478d5968de187d275a4319d528dab2483", + "telemetry_hash": "0f0eabcb6244554039e7a82ae25c68b478d5968de187d275a4319d528dab2483" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1L__pysr__f-56d7d5018cb0__si-600.json" + }, + { + "formula_hash": "56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a", + "lag": -19, + "per_channel": { + "0": 0.8788606019483672, + "1": 0.8648237820404271, + "2": 0.9297672477033403, + "3": 0.8540923096653488, + "4": 0.8851698877082931, + "5": 0.9129043929796252 + }, + "scene": "illusion_1.5L", + "similarity": 0.8876030370075668, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/telemetry/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.npz", + "sha256": "b9146dc9796da8e56328c54be91456d13b5bcbb194f256085a8c27518871ae61", + "telemetry_hash": "b9146dc9796da8e56328c54be91456d13b5bcbb194f256085a8c27518871ae61" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear0-20260718/validations/illusion_1p5L__pysr__f-56d7d5018cb0__si-800.json" + } + ], + "article-ablation-L2-i_rear1-20260718": [ + { + "formula_hash": "620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6", + "lag": 6, + "per_channel": { + "0": 0.9253541380167007, + "1": 0.9768045194602261, + "2": 0.9244664940569136, + "3": 0.969719537275119, + "4": 0.9538280020157496, + "5": 0.9776712069287896 + }, + "scene": "illusion_0.75L", + "similarity": 0.9546406496255831, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_0p75L__pysr__f-620e339914f7__si-400.npz", + "sha256": "60ce407f3a67d82878108b878ca2d9b1741bbb41d9de5cb69c9397cb552ed90f", + "telemetry_hash": "60ce407f3a67d82878108b878ca2d9b1741bbb41d9de5cb69c9397cb552ed90f" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_0p75L__pysr__f-620e339914f7__si-400.json" + }, + { + "formula_hash": "620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6", + "lag": -16, + "per_channel": { + "0": 0.9622624996635649, + "1": 0.9487610896596581, + "2": 0.876058409611384, + "3": 0.9016962272839414, + "4": 0.966166208187739, + "5": 0.927782178339031 + }, + "scene": "illusion_1L", + "similarity": 0.9304544354575531, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_1L__pysr__f-620e339914f7__si-600.npz", + "sha256": "6186846b8edbf4943796a58e4686563450a8bc53152cf82d17bf764ba90946ad", + "telemetry_hash": "6186846b8edbf4943796a58e4686563450a8bc53152cf82d17bf764ba90946ad" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1L__pysr__f-620e339914f7__si-600.json" + }, + { + "formula_hash": "620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6", + "lag": -4, + "per_channel": { + "0": 0.8745060430632697, + "1": 0.8636023045207063, + "2": 0.9040154036548402, + "3": 0.7843390609551635, + "4": 0.8977711515294181, + "5": 0.7806609074274699 + }, + "scene": "illusion_1.5L", + "similarity": 0.850815811858478, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/telemetry/illusion_1p5L__pysr__f-620e339914f7__si-800.npz", + "sha256": "6a64754ccae8d15a766ecbfe35e54b527bee6026af6950b5f0fbe88be516dfb0", + "telemetry_hash": "6a64754ccae8d15a766ecbfe35e54b527bee6026af6950b5f0fbe88be516dfb0" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-i_rear1-20260718/validations/illusion_1p5L__pysr__f-620e339914f7__si-800.json" + } + ], + "article-ablation-L2-k_front0-20260718": [ + { + "formula_hash": "8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309", + "lag": -5, + "per_channel": { + "0": 0.9387358208497365, + "1": 0.9461646167639022, + "2": 0.8023134430249532, + "3": 0.8957718860978882, + "4": 0.936514538526535, + "5": 0.9535934302334984 + }, + "scene": "karman_re100", + "similarity": 0.912182289249419, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re100__pysr__f-8b5536a5b124__si-800.npz", + "sha256": "d4fb7998cd2531ae71bc9073dfcb436ef879b13456fe2709d63d1c1590f0edbf", + "telemetry_hash": "d4fb7998cd2531ae71bc9073dfcb436ef879b13456fe2709d63d1c1590f0edbf" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re100__pysr__f-8b5536a5b124__si-800.json" + }, + { + "formula_hash": "8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309", + "lag": 2, + "per_channel": { + "0": 0.918447091182073, + "1": 0.9358566281075279, + "2": 0.7494440933068593, + "3": 0.8236464420023064, + "4": 0.9066294213136037, + "5": 0.9545807862925965 + }, + "scene": "karman_re200", + "similarity": 0.8814340770341612, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re200__pysr__f-8b5536a5b124__si-800.npz", + "sha256": "5b296551d825f47730a3887de2cc7cd6793ba98e78363f043ec36b78ec36a2cd", + "telemetry_hash": "5b296551d825f47730a3887de2cc7cd6793ba98e78363f043ec36b78ec36a2cd" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re200__pysr__f-8b5536a5b124__si-800.json" + }, + { + "formula_hash": "8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309", + "lag": 3, + "per_channel": { + "0": 0.872294835249583, + "1": 0.9274473261864236, + "2": 0.6066410680611929, + "3": 0.6621373971613744, + "4": 0.8801437517007192, + "5": 0.9310709147558858 + }, + "scene": "karman_re400", + "similarity": 0.8132892155191964, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re400__pysr__f-8b5536a5b124__si-800.npz", + "sha256": "57de28dfab9b28fe574b404414108372488e8fd51c18a0ddbb0ec543be84f8bc", + "telemetry_hash": "57de28dfab9b28fe574b404414108372488e8fd51c18a0ddbb0ec543be84f8bc" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re400__pysr__f-8b5536a5b124__si-800.json" + }, + { + "formula_hash": "8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309", + "lag": 0, + "per_channel": { + "0": 0.9515972554683685, + "1": 0.956623067210118, + "2": 0.9113735616207123, + "3": 0.9168378410240015, + "4": 0.939357743660609, + "5": 0.9603768208685021 + }, + "scene": "karman_re50", + "similarity": 0.9393610483087186, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/telemetry/karman_re50__pysr__f-8b5536a5b124__si-800.npz", + "sha256": "051650aecb4e001b312b1cdc89f1f1e2360391edb1224726fb104521d9891909", + "telemetry_hash": "051650aecb4e001b312b1cdc89f1f1e2360391edb1224726fb104521d9891909" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_front0-20260718/validations/karman_re50__pysr__f-8b5536a5b124__si-800.json" + } + ], + "article-ablation-L2-k_rear0-20260718": [ + { + "formula_hash": "888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257", + "lag": 12, + "per_channel": { + "0": 0.9016213198502858, + "1": 0.900708321807906, + "2": 0.8249286353588104, + "3": 0.7978617196747413, + "4": 0.8890358507633209, + "5": 0.9055042253962408 + }, + "scene": "karman_re100", + "similarity": 0.8699433454752175, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re100__pysr__f-888dfc90293c__si-800.npz", + "sha256": "08833ad6e8c6ba97db64879c186947ea618441a132c2f330271c1b57779bae16", + "telemetry_hash": "08833ad6e8c6ba97db64879c186947ea618441a132c2f330271c1b57779bae16" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re100__pysr__f-888dfc90293c__si-800.json" + }, + { + "formula_hash": "888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257", + "lag": 2, + "per_channel": { + "0": 0.873462587594986, + "1": 0.8565255843102932, + "2": 0.8250199814637502, + "3": 0.7022966179996729, + "4": 0.8619844178358713, + "5": 0.8322119706873006 + }, + "scene": "karman_re200", + "similarity": 0.8252501933153124, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re200__pysr__f-888dfc90293c__si-800.npz", + "sha256": "bc62140c51d947b62f03ac1bf6139d68b83a12d9c5ae8fd1752c0130fa3b56ac", + "telemetry_hash": "bc62140c51d947b62f03ac1bf6139d68b83a12d9c5ae8fd1752c0130fa3b56ac" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re200__pysr__f-888dfc90293c__si-800.json" + }, + { + "formula_hash": "888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257", + "lag": 4, + "per_channel": { + "0": 0.8309973001480102, + "1": 0.9050553360022604, + "2": 0.7512357413768769, + "3": 0.5395516683347523, + "4": 0.8072951356569926, + "5": 0.9030727255584983 + }, + "scene": "karman_re400", + "similarity": 0.7895346511795651, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re400__pysr__f-888dfc90293c__si-800.npz", + "sha256": "2722e2aad998434cfc07d37eb09269674d5ca51e35ec3e2076a047451361a268", + "telemetry_hash": "2722e2aad998434cfc07d37eb09269674d5ca51e35ec3e2076a047451361a268" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re400__pysr__f-888dfc90293c__si-800.json" + }, + { + "formula_hash": "888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257", + "lag": -1, + "per_channel": { + "0": 0.9289728005727133, + "1": 0.9421259949333034, + "2": 0.8610146919886271, + "3": 0.8874717075998584, + "4": 0.95934299826622, + "5": 0.9238297692500055 + }, + "scene": "karman_re50", + "similarity": 0.917126327101788, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/telemetry/karman_re50__pysr__f-888dfc90293c__si-800.npz", + "sha256": "271bd1efebe98d0a5fd8cc2d0b77f73cf5cf1516d7dd187375837c3445299246", + "telemetry_hash": "271bd1efebe98d0a5fd8cc2d0b77f73cf5cf1516d7dd187375837c3445299246" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear0-20260718/validations/karman_re50__pysr__f-888dfc90293c__si-800.json" + } + ], + "article-ablation-L2-k_rear1-20260718": [ + { + "formula_hash": "67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec", + "lag": -10, + "per_channel": { + "0": 0.9083760658899943, + "1": 0.8708966345759108, + "2": 0.47761470476786294, + "3": 0.8619284469634294, + "4": 0.8516557554403941, + "5": 0.935938379195674 + }, + "scene": "karman_re100", + "similarity": 0.8177349978055443, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re100__pysr__f-67ae1e890bc1__si-800.npz", + "sha256": "bcf878e13d0662978f3e5e9308070885991087c7a37af61c3999216c3f7676b0", + "telemetry_hash": "bcf878e13d0662978f3e5e9308070885991087c7a37af61c3999216c3f7676b0" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re100__pysr__f-67ae1e890bc1__si-800.json" + }, + { + "formula_hash": "67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec", + "lag": -6, + "per_channel": { + "0": 0.8011639912923177, + "1": 0.7798799796029925, + "2": 0.34993312765533724, + "3": 0.6737252861261368, + "4": 0.8416845977306366, + "5": 0.802145602243642 + }, + "scene": "karman_re200", + "similarity": 0.7080887641085104, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re200__pysr__f-67ae1e890bc1__si-800.npz", + "sha256": "0bf70c62de4115b15afb214b80b4890f5c8f17a3e0b462233fd3d1be5d1e5aea", + "telemetry_hash": "0bf70c62de4115b15afb214b80b4890f5c8f17a3e0b462233fd3d1be5d1e5aea" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re200__pysr__f-67ae1e890bc1__si-800.json" + }, + { + "formula_hash": "67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec", + "lag": -19, + "per_channel": { + "0": 0.7510450800259908, + "1": 0.7991168874005476, + "2": 0.3485611192726841, + "3": 0.5647797482088208, + "4": 0.6888120899597804, + "5": 0.7320905187477669 + }, + "scene": "karman_re400", + "similarity": 0.6474009072692651, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re400__pysr__f-67ae1e890bc1__si-800.npz", + "sha256": "46f0eaf87b0d58538fe725e51ecea191c72970ff230b8c8bbeabcdfe3a5fb702", + "telemetry_hash": "46f0eaf87b0d58538fe725e51ecea191c72970ff230b8c8bbeabcdfe3a5fb702" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re400__pysr__f-67ae1e890bc1__si-800.json" + }, + { + "formula_hash": "67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec", + "lag": -4, + "per_channel": { + "0": 0.8144503355026245, + "1": 0.9467540740345916, + "2": 0.5850751648346584, + "3": 0.9059413614061972, + "4": 0.9074225266774496, + "5": 0.8764213264143715 + }, + "scene": "karman_re50", + "similarity": 0.8393441314783155, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/telemetry/karman_re50__pysr__f-67ae1e890bc1__si-800.npz", + "sha256": "140e98d3c18939aeefb03ec5cec9f8120ef9c47c8f0435e6cf6565d57d1052ee", + "telemetry_hash": "140e98d3c18939aeefb03ec5cec9f8120ef9c47c8f0435e6cf6565d57d1052ee" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-ablation-L2-k_rear1-20260718/validations/karman_re50__pysr__f-67ae1e890bc1__si-800.json" + } + ] + } + }, + "authority": { + "human_summary": "src/SR_analysis/results/runs/article-joint-sr-final-20260718/readable_summary.txt", + "manuscript_draft": "docs/JFM_WYQ/SR_Draft.md", + "method": "src/SR_analysis/PIPELINE.md" + }, + "canonical_registry_updated": false, + "data": { + "contract": "seven 200-step trajectories; 197 causal rows each; all policy replays passed exactly", + "illusion_run": "src/SR_analysis/data/runs/article-joint-data-illusion-20260718", + "inventory": "src/SR_analysis/results/runs/article-joint-data-audit-20260718/data_inventory.json", + "karman_run": "src/SR_analysis/data/runs/article-joint-data-karman-20260718" + }, + "discovery": { + "joint_illusion_glob": "src/SR_analysis/results/runs/article-joint-illusion-*-20260718", + "joint_karman_glob": "src/SR_analysis/results/runs/article-joint-karman-*-20260718", + "per_case_summary": "src/SR_analysis/results/runs/article-per-case-discovery-summary-20260718/summary.json", + "selection": "R2 and Pareto fronts identify recurrent variables/topologies only" + }, + "illusion": { + "claim": "a symmetric joint numerical family exists", + "formula": { + "artifact_dir": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas", + "front": "odd_projection(-1.8266041891*Cd_rear_a+2.0644927120*Cl_F)", + "lower": "-upper(Gx)", + "upper": "1.2544396438*Cd_rear_a-1.5280742226*Cl_F" + }, + "limitation": "does not establish explicit target tracking or formula-term uniqueness; 1.5L is weakest/different", + "rejected_candidate": [ + { + "formula_hash": "93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38", + "lag": 7, + "per_channel": { + "0": 0.9408308234479692, + "1": 0.9591874444546798, + "2": 0.9442732267909579, + "3": 0.9700912296603847, + "4": 0.9565915796491835, + "5": 0.9823624061795676 + }, + "scene": "illusion_0.75L", + "similarity": 0.9588894516971238, + "status": "completed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_0p75L__pysr__f-93615f0809c7__si-400.npz", + "sha256": "e572444178eaa5ab48479c6a1d261b629780e79de96f745984d0fd742d53d3a5", + "telemetry_hash": "e572444178eaa5ab48479c6a1d261b629780e79de96f745984d0fd742d53d3a5" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_0p75L__pysr__f-93615f0809c7__si-400.json" + }, + { + "formula_hash": "93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38", + "lag": null, + "per_channel": null, + "scene": "illusion_1L", + "similarity": null, + "status": "failed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_1L__pysr__f-93615f0809c7__si-600.npz", + "sha256": "791e83c5481ba8c42c21cffb3fa449089eef5dce8af906e19b5dc37e19399655", + "telemetry_hash": "791e83c5481ba8c42c21cffb3fa449089eef5dce8af906e19b5dc37e19399655" + }, + "termination_reason": "FloatingPointError: raw observation contains non-finite values", + "validation": "src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1L__pysr__f-93615f0809c7__si-600.json" + }, + { + "formula_hash": "93615f0809c76d722a9cd781e08b23e1167a2004957964807a3d661f5c98ee38", + "lag": null, + "per_channel": null, + "scene": "illusion_1.5L", + "similarity": null, + "status": "failed", + "steps": 40, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L2-illusionB-20260718/telemetry/illusion_1p5L__pysr__f-93615f0809c7__si-800.npz", + "sha256": "a25595ff6dd07139379b09f402a8926fb0373eee168b941e08e8765222d3288e", + "telemetry_hash": "a25595ff6dd07139379b09f402a8926fb0373eee168b941e08e8765222d3288e" + }, + "termination_reason": "FloatingPointError: raw observation contains non-finite values", + "validation": "src/SR_analysis/results/runs/article-L2-illusionB-20260718/validations/illusion_1p5L__pysr__f-93615f0809c7__si-800.json" + } + ], + "standard_validation": [ + { + "formula_hash": "ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83", + "lag": -10, + "per_channel": { + "0": 0.9257550951507356, + "1": 0.8768414369939516, + "2": 0.842402782705095, + "3": 0.7687778922910284, + "4": 0.9447607646385828, + "5": 0.8911182117234502 + }, + "scene": "illusion_0.75L", + "similarity": 0.874942697250474, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz", + "sha256": "95e40e3eedcdb8bf23fc4073988ac8303e271eb786e29e5833f441f1dce5ec3d", + "telemetry_hash": "95e40e3eedcdb8bf23fc4073988ac8303e271eb786e29e5833f441f1dce5ec3d" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json" + }, + { + "formula_hash": "ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83", + "lag": 3, + "per_channel": { + "0": 0.9637112004889382, + "1": 0.9560219088776244, + "2": 0.7709939976533254, + "3": 0.9182358270336408, + "4": 0.9581615030765533, + "5": 0.9632575050927699 + }, + "scene": "illusion_1L", + "similarity": 0.9217303237038087, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz", + "sha256": "ce03b1fda4b3382c579315837600c8ddb109c8865f5fdacd59d910ebc51988ce", + "telemetry_hash": "ce03b1fda4b3382c579315837600c8ddb109c8865f5fdacd59d910ebc51988ce" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json" + }, + { + "formula_hash": "ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83", + "lag": -7, + "per_channel": { + "0": 0.910318603946103, + "1": 0.7779754769936618, + "2": 0.7479163971212175, + "3": 0.7731653744122013, + "4": 0.951814376645618, + "5": 0.8226178328687739 + }, + "scene": "illusion_1.5L", + "similarity": 0.8306346769979293, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz", + "sha256": "8c8798910d9c8da418dec479f47e6e4b5b3eda3b6ac23b178fdf1ddbc84bd824", + "telemetry_hash": "8c8798910d9c8da418dec479f47e6e4b5b3eda3b6ac23b178fdf1ddbc84bd824" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json" + } + ], + "term_importance": [ + "Cl_F terms dominate action magnitude", + "Cd_rear_a terms are weaker and partly replaceable", + "all one-term deletions remained stable" + ] + }, + "karman": { + "claim": "supports persistent rear counter-rotation as the principal downstream-deficit compensation", + "formula": { + "artifact_dir": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas", + "front": "odd_projection(-0.3813914338*Cd_rear_a)", + "lower": "-upper(Gx)", + "upper": "1.3077817866*Cl_rear_s-3.4312086805" + }, + "limitation": "DTW decreases to 0.7827 at Re400; not a universal cross-Re law", + "standard_validation": [ + { + "formula_hash": "a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1", + "lag": -8, + "per_channel": { + "0": 0.9814277211825053, + "1": 0.9649004686623812, + "2": 0.8044749160607656, + "3": 0.9586062712594867, + "4": 0.9800249854723613, + "5": 0.9668169762939215 + }, + "scene": "karman_re100", + "similarity": 0.9427085564885704, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "bfde93ac38b902c04ed6f613095c1f3ff9060478c8577c0aff729e986d221b1c", + "telemetry_hash": "bfde93ac38b902c04ed6f613095c1f3ff9060478c8577c0aff729e986d221b1c" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json" + }, + { + "formula_hash": "a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1", + "lag": 4, + "per_channel": { + "0": 0.8941423873106639, + "1": 0.9268932865001261, + "2": 0.721358698606491, + "3": 0.7802774014572302, + "4": 0.8943212985992431, + "5": 0.9191929107842346 + }, + "scene": "karman_re200", + "similarity": 0.8560309972096647, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "d0f70c18f619d1461f6f99855e2b41ee237d3ea0fde5521b0796f0e7f226d325", + "telemetry_hash": "d0f70c18f619d1461f6f99855e2b41ee237d3ea0fde5521b0796f0e7f226d325" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json" + }, + { + "formula_hash": "a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1", + "lag": 3, + "per_channel": { + "0": 0.8825860738754272, + "1": 0.9030919977929444, + "2": 0.5968757390975952, + "3": 0.5579024016857147, + "4": 0.8755418141682942, + "5": 0.8800828016673525 + }, + "scene": "karman_re400", + "similarity": 0.7826801380478882, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "3c908f98ced3a2c7aa6a55c76686edf3badf7da3051014fc608d2022cf347898", + "telemetry_hash": "3c908f98ced3a2c7aa6a55c76686edf3badf7da3051014fc608d2022cf347898" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json" + }, + { + "formula_hash": "a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1", + "lag": 4, + "per_channel": { + "0": 0.9457357048988342, + "1": 0.9668876960097502, + "2": 0.9563833932081859, + "3": 0.9367514126623671, + "4": 0.9596255481243133, + "5": 0.9602047061251748 + }, + "scene": "karman_re50", + "similarity": 0.9542647435047709, + "status": "completed", + "steps": 200, + "telemetry": { + "path": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "f28df2c80fd5688218e97ccbc7d6a9f69d08cf2e866439af64075a99656e5adc", + "telemetry_hash": "f28df2c80fd5688218e97ccbc7d6a9f69d08cf2e866439af64075a99656e5adc" + }, + "termination_reason": "completed", + "validation": "src/SR_analysis/results/runs/article-L3-karman-20260718/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json" + } + ], + "term_importance": [ + "rear constant: dominant", + "rear Cl_rear_s feedback: secondary", + "front Cd_rear_a feedback: weak" + ] + }, + "nonclaims": [ + "global symbolic optimum", + "universal Karman performance through Re400", + "explicit target tracking by the Illusion law", + "necessity of every Illusion term", + "unseen-condition or Vortex generalization", + "physical delay inferred from DTW lag" + ], + "schema_version": "sr-joint-article-evidence-v2", + "selection_principle": "R2/Pareto for structure; finite CFD and legacy DTW for controller selection; deletion/scaling for term importance", + "status": "complete_analysis_requires_scientific_review" +} diff --git a/src/SR_analysis/results/runs/article-joint-sr-final-20260718/readable_summary.txt b/src/SR_analysis/results/runs/article-joint-sr-final-20260718/readable_summary.txt new file mode 100644 index 0000000..9a1c18c --- /dev/null +++ b/src/SR_analysis/results/runs/article-joint-sr-final-20260718/readable_summary.txt @@ -0,0 +1,50 @@ +JOINT SR ARTICLE ANALYSIS — REVIEW SUMMARY + +Method +1. Seven trained cases were recollected under one causal contract; all seven PPO policy replays matched exactly. +2. Broad per-case searches used raw_complete or symmetry-complete variables with three seeds. +3. R2/Pareto fronts identified recurring variables and topologies only. +4. Karman and Illusion were fitted separately as within-objective joint laws. +5. Frozen topologies were refitted with all eligible training-case rows using case-equal weighting. +6. Candidate laws were screened by short CFD, standard 200-step legacy DTW, term deletion, and coefficient-scaling shadow tests. + +Karman recommended candidate + alpha_F(x) = odd_projection[-0.381391 Cd_rear_a] + alpha_U(x) = 1.307782 Cl_rear_s - 3.431209 + alpha_L(x) = -alpha_U(Gx) + +Standard 200-step legacy DTW + Re50 : 0.9543 + Re100 : 0.9427 + Re200 : 0.8560 + Re400 : 0.7827 + +Term importance + 1. Rear constant: dominant; deleting it caused the largest degradation, especially at Re200/400. + 2. Rear lift feedback Cl_rear_s: secondary; deleting it caused moderate degradation. + 3. Front Cd_rear_a feedback: weak; deleting it changed short-window DTW only slightly. + +Scientific interpretation +The result supports the theory that steady rear counter-rotation supplies the principal downstream-deficit compensation. Rear lift feedback adjusts the oscillatory/asymmetric response. The tested front feedback is not strongly supported as necessary. The current law is not yet uniformly strong at Re400, so it should not be called the final universal Karman law. + +Illusion recommended numerical candidate + alpha_F(x) = odd_projection[-1.826604 Cd_rear_a + 2.064493 Cl_F] + alpha_U(x) = 1.254440 Cd_rear_a - 1.528074 Cl_F + alpha_L(x) = -alpha_U(Gx) + +Standard 200-step legacy DTW + 0.75L : 0.8749 + 1.0L : 0.9217 + 1.5L : 0.8306 + +Term importance + - Cl_F terms dominate front and rear action magnitude in scaling shadow tests. + - Cd_rear_a terms have weaker magnitude influence and are partly replaceable. + - Every one-term deletion remained stable and had relatively small DTW differences. + - Therefore the present four-term law is not demonstrated to be a uniquely necessary mechanism. + +Scientific interpretation +The result supports a front-lift/rear-asymmetry control family, but it does not establish explicit target tracking: target/error variables were available yet were not selected stably by the static low-complexity joint searches. The 1.5L case behaves differently and remains the weakest case. This candidate is a numerical joint reference, not a final article mechanism law. + +Conclusion +The complete workflow is now clear and operational. It produced substantive Karman mechanism evidence and a stable but non-unique Illusion numerical family. It did not honestly produce a single final law satisfying high DTW, exact symmetry, and complete theoretical support across every case. Further work should focus narrowly on Re400 Karman and target-aware/dynamic Illusion structures rather than adding more infrastructure. diff --git a/src/SR_analysis/results/runs/article-per-case-discovery-summary-20260718/summary.json b/src/SR_analysis/results/runs/article-per-case-discovery-summary-20260718/summary.json new file mode 100644 index 0000000..d08d474 --- /dev/null +++ b/src/SR_analysis/results/runs/article-per-case-discovery-summary-20260718/summary.json @@ -0,0 +1,41044 @@ +{ + "illusion": { + "illusion_0.75L": { + "feature_frequency": { + "Cd_F": 6, + "Cd_rear_a": 15, + "Cd_rear_s": 10, + "Cd_tot": 1, + "Cl_F": 4, + "Cl_err": 2, + "target_Cd": 1 + }, + "fits": [ + { + "expression": "Cd_rear_a*Cd_rear_s + Cl_F**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.4990912975187955, + "max_error": 1.2396291398737054, + "r2": -0.3337385932690742, + "rmse": 0.6405815317335071 + }, + "train": { + "mae": 0.3520116394627414, + "max_error": 1.1709507695791088, + "r2": -0.2564796521397741, + "rmse": 0.4397520698940713 + }, + "validation": { + "mae": 0.328480856355261, + "max_error": 1.0866024291095906, + "r2": 0.41953920223064456, + "rmse": 0.43568687414888724 + } + }, + "pareto": [ + { + "complexity": 4.0, + "expression": "Cl_F**8", + "loss": 18.618937, + "metrics": { + "blind": { + "mae": 5.095659162723, + "max_error": 20.43592246188043, + "r2": -202.19486629481042, + "rmse": 7.906702899923131 + }, + "train": { + "mae": 2.68541697488003, + "max_error": 16.499064827266647, + "r2": -119.97469628823265, + "rmse": 4.314966542672318 + }, + "validation": { + "mae": 2.7456938234745873, + "max_error": 14.56864102827144, + "r2": -60.481196309039646, + "rmse": 4.48393371378724 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0002750072535156161, + 23.031350213421568 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a*Cd_rear_s + Cl_F**2", + "loss": 0.19338188, + "metrics": { + "blind": { + "mae": 0.4990912975187955, + "max_error": 1.2396291398737054, + "r2": -0.3337385932690742, + "rmse": 0.6405815317335071 + }, + "train": { + "mae": 0.3520116394627414, + "max_error": 1.1709507695791088, + "r2": -0.2564796521397741, + "rmse": 0.4397520698940713 + }, + "validation": { + "mae": 0.328480856355261, + "max_error": 1.0866024291095906, + "r2": 0.41953920223064456, + "rmse": 0.43568687414888724 + } + }, + "score": 2.283633786625262, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14408147245331313, + 4.866501096395528 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s", + "Cl_F" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s", + "Cl_F" + ] + }, + { + "expression": "-1.25014130000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 1.6142325, + "metrics": { + "blind": { + "mae": 1.212098748369317, + "max_error": 1.6771366819739342, + "r2": -23.68236213879684, + "rmse": 1.2520131727946806 + }, + "train": { + "mae": 1.2380614117211148, + "max_error": 1.9798884929623455, + "r2": -15.84478705792263, + "rmse": 1.270524563688887 + }, + "validation": { + "mae": 1.141771501625697, + "max_error": 1.6373399123549461, + "r2": -29.090853742469825, + "rmse": 1.168813521160756 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8413145551458001, + 0.38794876309111714 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014130000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "score": 2.8240412935273045, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501413, + -1.2501413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.08235938, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.151481242767624, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_err - 1.2380613", + "loss": 0.081436604, + "metrics": { + "blind": { + "mae": 0.25899614570291896, + "max_error": 0.6081272100431949, + "r2": -0.5592848315568002, + "rmse": 0.3146866109959461 + }, + "train": { + "mae": 0.22437788645473541, + "max_error": 0.7418271929623454, + "r2": 0.15019541837805495, + "rmse": 0.28537100018041295 + }, + "validation": { + "mae": 0.21358333564452495, + "max_error": 0.586626380203116, + "r2": -0.5804976982877943, + "rmse": 0.2678705108715223 + } + }, + "score": 0.011267501682916943, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0793758551458, + -0.8501125369088829 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s0-20260718", + "used_features": [] + }, + { + "expression": "-0.47404155*Cd_tot + Cl_F", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.3146141759590141, + "max_error": 0.730721095230594, + "r2": 0.6127748692645987, + "rmse": 0.3862037606314466 + }, + "train": { + "mae": 0.3215137437358022, + "max_error": 0.8012151332468931, + "r2": 0.4217440605026449, + "rmse": 0.38716726491157477 + }, + "validation": { + "mae": 0.36731718432052585, + "max_error": 0.7361356560564283, + "r2": 0.5408807124067766, + "rmse": 0.441292375526178 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 1.5673456, + "metrics": { + "blind": { + "mae": 1.049946623427968, + "max_error": 2.216416583629325, + "r2": -2.615607362207564, + "rmse": 1.1801178024018635 + }, + "train": { + "mae": 1.155209247784993, + "max_error": 2.2259959327057004, + "r2": -5.046270538831778, + "rmse": 1.2519366896249258 + }, + "validation": { + "mae": 1.2943169380782937, + "max_error": 2.098045433172956, + "r2": -3.621394203082361, + "rmse": 1.40007133071763 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8413145551458001, + 0.38794876309111714 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16725720000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347079938759995, + "max_error": 1.1373525755432128, + "r2": -0.025327142901466315, + "rmse": 0.6284430938753585 + }, + "train": { + "mae": 0.42840105519346294, + "max_error": 1.0160523755523683, + "r2": -4.082922444581527e-09, + "rmse": 0.5091415967326508 + }, + "validation": { + "mae": 0.5885970852536762, + "max_error": 1.1132851736572265, + "r2": -0.12357434578124704, + "rmse": 0.6903424226247161 + } + }, + "score": 1.7994418549190487, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1672572, + -1.1672572 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cd_rear_s - 0.48909", + "loss": 0.20821016, + "metrics": { + "blind": { + "mae": 0.5593813677998531, + "max_error": 0.9107559450667724, + "r2": 0.032346324194617915, + "rmse": 0.6105127049778645 + }, + "train": { + "mae": 0.36479943708270757, + "max_error": 1.069363402389139, + "r2": 0.19679792544297714, + "rmse": 0.45630054774866896 + }, + "validation": { + "mae": 0.5531527187207858, + "max_error": 0.9590945268982649, + "r2": 0.08853985609755666, + "rmse": 0.6217739121839582 + } + }, + "score": 0.10957447885866183, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6375562536531687, + -0.638193463627398 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-0.47404155*Cd_tot + Cl_F", + "loss": 0.14989848, + "metrics": { + "blind": { + "mae": 0.3146141759590141, + "max_error": 0.730721095230594, + "r2": 0.6127748692645987, + "rmse": 0.3862037606314466 + }, + "train": { + "mae": 0.3215137437358022, + "max_error": 0.8012151332468931, + "r2": 0.4217440605026449, + "rmse": 0.38716726491157477 + }, + "validation": { + "mae": 0.36731718432052585, + "max_error": 0.7361356560564283, + "r2": 0.5408807124067766, + "rmse": 0.441292375526178 + } + }, + "score": 0.16429484462899382, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1195337854678566, + -0.6518236832883209 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_F" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_tot", + "Cl_F" + ] + }, + { + "expression": "1.83892730000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.5132865828216553, + "max_error": 0.8983461546661378, + "r2": -0.10138472128467368, + "rmse": 0.5821147157115164 + }, + "train": { + "mae": 0.32564735974415926, + "max_error": 0.8501388716461182, + "r2": -9.873724060582845e-11, + "rmse": 0.392310708180157 + }, + "validation": { + "mae": 0.5255329757537063, + "max_error": 0.9007436918975831, + "r2": -0.03647067224718481, + "rmse": 0.5821924082779847 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.83892730000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132865828216553, + "max_error": 0.8983461546661378, + "r2": -0.10138472128467368, + "rmse": 0.5821147157115164 + }, + "train": { + "mae": 0.32564735974415926, + "max_error": 0.8501388716461182, + "r2": -9.873724060582845e-11, + "rmse": 0.392310708180157 + }, + "validation": { + "mae": 0.5255329757537063, + "max_error": 0.9007436918975831, + "r2": -0.03647067224718481, + "rmse": 0.5821924082779847 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389273, + 1.8389273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "target_Cd*(-0.2915729)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2105689171064773, + "max_error": 0.48834737291364005, + "r2": 0.008260857872245286, + "rmse": 0.2509656397995742 + }, + "train": { + "mae": 0.24835326245700573, + "max_error": 0.6868224192279855, + "r2": 0.0054304693449686026, + "rmse": 0.30872221275544826 + }, + "validation": { + "mae": 0.17071692858150658, + "max_error": 0.449040471754782, + "r2": 0.0303070551561897, + "rmse": 0.20981913391201454 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.25014220000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501422, + -1.2501422 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd*(-0.2915729)", + "loss": 0.095309384, + "metrics": { + "blind": { + "mae": 0.2105689171064773, + "max_error": 0.48834737291364005, + "r2": 0.008260857872245286, + "rmse": 0.2509656397995742 + }, + "train": { + "mae": 0.24835326245700573, + "max_error": 0.6868224192279855, + "r2": 0.0054304693449686026, + "rmse": 0.30872221275544826 + }, + "validation": { + "mae": 0.17071692858150658, + "max_error": 0.449040471754782, + "r2": 0.0303070551561897, + "rmse": 0.20981913391201454 + } + }, + "score": 0.0027226615821978667, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2668119574448096, + -1.2329210848495364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s1-20260718", + "used_features": [ + "target_Cd" + ] + }, + { + "expression": "-1.16733190000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5347341388759994, + "max_error": 1.137277875543213, + "r2": -0.02536546710729093, + "rmse": 0.628454838593907 + }, + "train": { + "mae": 0.42840358739685275, + "max_error": 1.0161270755523681, + "r2": -6.8591168300713434e-09, + "rmse": 0.5091415974393889 + }, + "validation": { + "mae": 0.5885721852536764, + "max_error": 1.1132104736572266, + "r2": -0.12349371882863314, + "rmse": 0.6903176529223034 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.16733190000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347341388759994, + "max_error": 1.137277875543213, + "r2": -0.02536546710729093, + "rmse": 0.628454838593907 + }, + "train": { + "mae": 0.42840358739685275, + "max_error": 1.0161270755523681, + "r2": -6.8591168300713434e-09, + "rmse": 0.5091415974393889 + }, + "validation": { + "mae": 0.5885721852536764, + "max_error": 1.1132104736572266, + "r2": -0.12349371882863314, + "rmse": 0.6903176529223034 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1673319, + -1.1673319 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "Cd_rear_a + Cd_rear_s**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 0.7003962, + "metrics": { + "blind": { + "mae": 0.5703262576367706, + "max_error": 1.4667464680969715, + "r2": -0.6984206898422467, + "rmse": 0.7228724783839271 + }, + "train": { + "mae": 0.7254418877695324, + "max_error": 1.5016526486724615, + "r2": -3.550755328809367, + "rmse": 0.836896796695819 + }, + "validation": { + "mae": 0.8017440668474405, + "max_error": 1.5274721421301365, + "r2": -1.8424819802662538, + "rmse": 0.9641328693329608 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.7976047238335013, + 3.485238179564476 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "1.83892740000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132865578216552, + "max_error": 0.8983460546661377, + "r2": -0.10138460647537229, + "rmse": 0.5821146853714434 + }, + "train": { + "mae": 0.32564736482890505, + "max_error": 0.8501387716461182, + "r2": -1.0386802529183115e-10, + "rmse": 0.3923107081811634 + }, + "validation": { + "mae": 0.5255330039588341, + "max_error": 0.900743591897583, + "r2": -0.036470739037585576, + "rmse": 0.5821924270362886 + } + }, + "score": 1.5152933627400027, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389274, + 1.8389274 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_rear_a + Cd_rear_s", + "loss": 0.10971323, + "metrics": { + "blind": { + "mae": 0.4504156879847869, + "max_error": 0.6326611861586571, + "r2": 0.3136649253238505, + "rmse": 0.4595228919344721 + }, + "train": { + "mae": 0.3094089455839436, + "max_error": 0.5029259501025081, + "r2": 0.28714927289771797, + "rmse": 0.3312298446121608 + }, + "validation": { + "mae": 0.4534945357590914, + "max_error": 0.6293875817209482, + "r2": 0.33548878734554943, + "rmse": 0.46616448744007905 + } + }, + "score": 0.33848285053558697, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.25175127666443586, + 3.4783706068992615 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a + Cd_rear_s**2", + "loss": 0.033301342, + "metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "score": 1.1922722651755668, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12487965590272465, + 3.648879089026237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s**4", + "loss": 0.026770882, + "metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "score": 0.21828289215605354, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10314206787424243, + 4.0695987068723944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s1-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "-1.25014220000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 14.731233, + "metrics": { + "blind": { + "mae": 3.8053490723948924, + "max_error": 4.138215005397797, + "r2": -228.41687326460715, + "rmse": 3.817053230929877 + }, + "train": { + "mae": 3.8083398237161465, + "max_error": 5.076661160215735, + "r2": -152.72286077106395, + "rmse": 3.8381286903795773 + }, + "validation": { + "mae": 3.7572018771599502, + "max_error": 4.01996910944581, + "r2": -311.373362923034, + "rmse": 3.765866920057727 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.7976047238335013, + 3.485238179564476 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014220000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "score": 5.035151615701742, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501422, + -1.2501422 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.08235938, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.151481242767624, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 6.0, + "expression": "-Cd_F + Cd_rear_a - 0.16580658", + "loss": 0.064719655, + "metrics": { + "blind": { + "mae": 0.37714819275328926, + "max_error": 0.7785431242225709, + "r2": -2.0004627655721254, + "rmse": 0.43652554086645096 + }, + "train": { + "mae": 0.20991882856519822, + "max_error": 0.5580560317755694, + "r2": 0.32463955661021904, + "rmse": 0.2544005894487599 + }, + "validation": { + "mae": 0.36118030189301176, + "max_error": 0.7187944277100282, + "r2": -2.904470535125737, + "rmse": 0.4210261269551138 + } + }, + "score": 0.08034247070805912, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.8607634907964634, + -1.3211404063183831 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s1-20260718", + "used_features": [] + }, + { + "expression": "-(-1.1552219)*Cl_F - 2.1981544", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.35707119038138624, + "max_error": 0.7710020353215343, + "r2": 0.5379210579674205, + "rmse": 0.42188377115027165 + }, + "train": { + "mae": 0.31901532176042285, + "max_error": 0.9328125674074463, + "r2": 0.41837512003089117, + "rmse": 0.3882934523874604 + }, + "validation": { + "mae": 0.3819373889705565, + "max_error": 0.8372252674846332, + "r2": 0.5273818543847824, + "rmse": 0.4477327379925914 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.8152605, + "metrics": { + "blind": { + "mae": 0.7046440394362434, + "max_error": 1.8781830510124564, + "r2": -0.9956336158156958, + "rmse": 0.87674871146624 + }, + "train": { + "mae": 0.7295411288169986, + "max_error": 1.9389081485569477, + "r2": -2.1449900493638516, + "rmse": 0.9029178051115037 + }, + "validation": { + "mae": 0.9826974206341382, + "max_error": 1.9332711258903146, + "r2": -2.244472115267538, + "rmse": 1.1731017374006025 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9491200326010585, + 0.25663443375378847 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16731300000000", + "loss": 0.25922516, + "metrics": { + "blind": { + "mae": 0.5347275238759994, + "max_error": 1.1372967755432128, + "r2": -0.025355767883523228, + "rmse": 0.6284518662202911 + }, + "train": { + "mae": 0.42840294671888673, + "max_error": 1.0161081755523682, + "r2": -2.088351047646597e-09, + "rmse": 0.5091415962248912 + }, + "validation": { + "mae": 0.5885784852536764, + "max_error": 1.1132293736572265, + "r2": -0.12351411593266692, + "rmse": 0.6903239192755726 + } + }, + "score": 1.145810666402739, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.167313, + -1.167313 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-1.5527908*Cd_rear_s", + "loss": 0.23063362, + "metrics": { + "blind": { + "mae": 0.5293690118994506, + "max_error": 0.8997008234066366, + "r2": 0.15443828364403422, + "rmse": 0.5706993614985326 + }, + "train": { + "mae": 0.39181134539339635, + "max_error": 0.9926162313148146, + "r2": 0.1102961780470808, + "rmse": 0.48024329206242233 + }, + "validation": { + "mae": 0.5489733189159, + "max_error": 0.9145122143256827, + "r2": 0.12153441248477392, + "rmse": 0.6104161729390322 + } + }, + "score": 0.05843331843925149, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7833278327831066, + -0.23152648656875824 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a - 1*2.30389441447438", + "loss": 0.21229711, + "metrics": { + "blind": { + "mae": 0.3963124990028793, + "max_error": 0.8814039436158421, + "r2": 0.38951462125844705, + "rmse": 0.4849225321975584 + }, + "train": { + "mae": 0.41338491139043476, + "max_error": 0.8760763228881476, + "r2": 0.1810328375551702, + "rmse": 0.46075687447531205 + }, + "validation": { + "mae": 0.4464764339958691, + "max_error": 0.7981432807621243, + "r2": 0.38367677127494826, + "rmse": 0.5112907351300191 + } + }, + "score": 0.041421817492785236, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.201246601437342, + 0.02600993877171298 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 7.0, + "expression": "-(-1.1552219)*Cl_F - 2.1981544", + "loss": 0.15077178, + "metrics": { + "blind": { + "mae": 0.35707119038138624, + "max_error": 0.7710020353215343, + "r2": 0.5379210579674205, + "rmse": 0.42188377115027165 + }, + "train": { + "mae": 0.31901532176042285, + "max_error": 0.9328125674074463, + "r2": 0.41837512003089117, + "rmse": 0.3882934523874604 + }, + "validation": { + "mae": 0.3819373889705565, + "max_error": 0.8372252674846332, + "r2": 0.5273818543847824, + "rmse": 0.4477327379925914 + } + }, + "score": 0.34221945302114687, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7835981835171586, + -0.4883149293335045 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cd_rear_a + Cd_rear_s**4", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 1.5667146, + "metrics": { + "blind": { + "mae": 1.1670585701863274, + "max_error": 1.9351262897253036, + "r2": -4.6617483363527965, + "rmse": 1.3198188752463091 + }, + "train": { + "mae": 1.1607225897271947, + "max_error": 2.0409625717438757, + "r2": -9.179572160629121, + "rmse": 1.2516846464341422 + }, + "validation": { + "mae": 0.8734739454270405, + "max_error": 1.8961975234560668, + "r2": -2.3784950569203214, + "rmse": 1.05111364271861 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14910346362739801, + 1.1484662536531687 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "1.83892490000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132871828216553, + "max_error": 0.8983485546661376, + "r2": -0.10138747672740656, + "rmse": 0.5821154438779459 + }, + "train": { + "mae": 0.32564723771026094, + "max_error": 0.8501412716461181, + "r2": -1.458588805292038e-11, + "rmse": 0.3923107081636502 + }, + "validation": { + "mae": 0.5255322988306288, + "max_error": 0.9007460918975829, + "r2": -0.03646906929591265, + "rmse": 0.5821919580836631 + } + }, + "score": 2.320383282120864, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389249, + 1.8389249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_rear_a + Cd_rear_s", + "loss": 0.10971323, + "metrics": { + "blind": { + "mae": 0.4504156879847869, + "max_error": 0.6326611861586571, + "r2": 0.3136649253238505, + "rmse": 0.4595228919344721 + }, + "train": { + "mae": 0.3094089455839436, + "max_error": 0.5029259501025081, + "r2": 0.28714927289771797, + "rmse": 0.3312298446121608 + }, + "validation": { + "mae": 0.4534945357590914, + "max_error": 0.6293875817209482, + "r2": 0.33548878734554943, + "rmse": 0.46616448744007905 + } + }, + "score": 0.33848285053558697, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.25175127666443586, + 3.4783706068992615 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a + Cd_rear_s**2", + "loss": 0.033301342, + "metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "score": 1.1922722651755668, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12487965590272465, + 3.648879089026237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s**4", + "loss": 0.026770882, + "metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "score": 0.21828289215605354, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10314206787424243, + 4.0695987068723944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_a + (Cd_rear_s - 0.0794455)**2", + "loss": 0.021813689, + "metrics": { + "blind": { + "mae": 0.20532413774652794, + "max_error": 0.43390900252461817, + "r2": 0.8255272421959117, + "rmse": 0.231687640858546 + }, + "train": { + "mae": 0.12096627882029687, + "max_error": 0.43861561424063344, + "r2": 0.8582676977083498, + "rmse": 0.14769458856155313 + }, + "validation": { + "mae": 0.20805587247408497, + "max_error": 0.4012110454510238, + "r2": 0.8312434838041407, + "rmse": 0.23491908718792698 + } + }, + "score": 0.10238854790646393, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10750004493375376, + 3.4727097249872814 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "-Cd_F + Cd_rear_a", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_a", + "loss": 65.25079, + "metrics": { + "blind": { + "mae": 5.793712385091931, + "max_error": 13.745277598500252, + "r2": -719.2068546018407, + "rmse": 6.763074375024274 + }, + "train": { + "mae": 6.795806496066704, + "max_error": 15.689359575510025, + "r2": -679.9029635068018, + "rmse": 8.077796638719105 + }, + "validation": { + "mae": 5.23216525467041, + "max_error": 13.13139782845974, + "r2": -832.8793958202715, + "rmse": 6.152896271921403 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -16.77680630236864, + 10.556279867887497 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_a" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014130000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "score": 6.523419835418641, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501413, + -1.2501413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.08235938, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.151481242767624, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 6.0, + "expression": "-(Cd_F - Cd_rear_a) - 0.13609879", + "loss": 0.06383699, + "metrics": { + "blind": { + "mae": 0.38409066946231996, + "max_error": 0.7488353342225711, + "r2": -2.1150213541565357, + "rmse": 0.4447808211972949 + }, + "train": { + "mae": 0.2032237255320506, + "max_error": 0.55315916936957, + "r2": 0.33385030120356196, + "rmse": 0.2526598425735016 + }, + "validation": { + "mae": 0.3531074033519054, + "max_error": 0.6890866377100284, + "r2": -2.7816136890838434, + "rmse": 0.41434924592106037 + } + }, + "score": 0.08491985043262819, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.8310557007964634, + -1.2914326163183831 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "expression": "Cd_rear_s - (Cd_rear_s - (-Cd_F + Cd_rear_a))", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.8152605, + "metrics": { + "blind": { + "mae": 0.7046440394362434, + "max_error": 1.8781830510124564, + "r2": -0.9956336158156958, + "rmse": 0.87674871146624 + }, + "train": { + "mae": 0.7295411288169986, + "max_error": 1.9389081485569477, + "r2": -2.1449900493638516, + "rmse": 0.9029178051115037 + }, + "validation": { + "mae": 0.9826974206341382, + "max_error": 1.9332711258903146, + "r2": -2.244472115267538, + "rmse": 1.1731017374006025 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9491200326010585, + 0.25663443375378847 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16726650000000", + "loss": 0.25922516, + "metrics": { + "blind": { + "mae": 0.5347112488759994, + "max_error": 1.137343275543213, + "r2": -0.02533191260910206, + "rmse": 0.6284445555972871 + }, + "train": { + "mae": 0.4284013704477005, + "max_error": 1.0160616755523681, + "r2": -2.082253258706146e-09, + "rmse": 0.5091415962233389 + }, + "validation": { + "mae": 0.5885939852536763, + "max_error": 1.1132758736572266, + "r2": -0.1235643064536005, + "rmse": 0.6903393384544178 + } + }, + "score": 1.145810666402739, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1672665, + -1.1672665 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_F - 1*2.2917778", + "loss": 0.20661718, + "metrics": { + "blind": { + "mae": 0.42098508624112146, + "max_error": 0.9827288507248344, + "r2": 0.304935490845612, + "rmse": 0.517424856122053 + }, + "train": { + "mae": 0.35476096214762365, + "max_error": 1.1654337287644925, + "r2": 0.2029432652986719, + "rmse": 0.45455160668613753 + }, + "validation": { + "mae": 0.3953173744437874, + "max_error": 1.0492590686070802, + "r2": 0.44326863212141, + "rmse": 0.48594430939796185 + } + }, + "score": 0.11341465929178036, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.9329236123475315, + -0.8116816637802007 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_s - (Cd_rear_s - (-Cd_F + Cd_rear_a))", + "loss": 0.13072659, + "metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "score": 0.15258655538243968, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "Cd_rear_a + Cd_rear_s*Cd_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.83894500000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132821578216553, + "max_error": 0.8983284546661376, + "r2": -0.10136440105087097, + "rmse": 0.5821093457615552 + }, + "train": { + "mae": 0.3256482597441593, + "max_error": 0.8501211716461181, + "r2": -3.030936168713083e-09, + "rmse": 0.39231070875532353 + }, + "validation": { + "mae": 0.5255379680613981, + "max_error": 0.900725991897583, + "r2": -0.036482495100727874, + "rmse": 0.5821957287558972 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.838945, + 1.838945 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_rear_a + Cd_rear_s", + "loss": 0.10971323, + "metrics": { + "blind": { + "mae": 0.4504156879847869, + "max_error": 0.6326611861586571, + "r2": 0.3136649253238505, + "rmse": 0.4595228919344721 + }, + "train": { + "mae": 0.3094089455839436, + "max_error": 0.5029259501025081, + "r2": 0.28714927289771797, + "rmse": 0.3312298446121608 + }, + "validation": { + "mae": 0.4534945357590914, + "max_error": 0.6293875817209482, + "r2": 0.33548878734554943, + "rmse": 0.46616448744007905 + } + }, + "score": 0.33848285053558697, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.25175127666443586, + 3.4783706068992615 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_F + 0.94657123", + "loss": 0.05603443, + "metrics": { + "blind": { + "mae": 0.24908668004542206, + "max_error": 0.5579576398747754, + "r2": 0.7330737686354335, + "rmse": 0.2865726118712382 + }, + "train": { + "mae": 0.1883531346364398, + "max_error": 0.5191982946860385, + "r2": 0.6359217458042972, + "rmse": 0.23671595576792673 + }, + "validation": { + "mae": 0.28396721098708455, + "max_error": 0.5753685337993097, + "r2": 0.6861750792053432, + "rmse": 0.32035517428384613 + } + }, + "score": 0.6719036384117709, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3054254176524687, + 2.4266673662197995 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s*Cd_rear_s", + "loss": 0.033301342, + "metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "score": 0.520368626763796, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12487965590272465, + 3.648879089026237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a + Cd_rear_s - 1*0.29565868", + "loss": 0.02952997, + "metrics": { + "blind": { + "mae": 0.15550142046771886, + "max_error": 0.337002506158657, + "r2": 0.8952213394103982, + "rmse": 0.17954589315663835 + }, + "train": { + "mae": 0.12483130848338607, + "max_error": 0.7286134123286534, + "r2": 0.8081319257514666, + "rmse": 0.17184287132649415 + }, + "validation": { + "mae": 0.16212970308091204, + "max_error": 0.33372890172094816, + "r2": 0.8881901843019764, + "rmse": 0.191217658049989 + } + }, + "score": 0.12019201663536551, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.043907403335564144, + 3.1827119268992616 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s1-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "-Cd_F + Cd_rear_a - 0.14964145", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.38070500446232, + "max_error": 0.7623779942225708, + "r2": -2.0593513323213757, + "rmse": 0.4407884590859931 + }, + "train": { + "mae": 0.20590874519762428, + "max_error": 0.5418909017755695, + "r2": 0.33193592525029614, + "rmse": 0.25302262808781295 + }, + "validation": { + "mae": 0.3566209062519863, + "max_error": 0.7026292977100281, + "r2": -2.832797487086633, + "rmse": 0.41714391103483267 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.25014220000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501422, + -1.2501422 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.08235938, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.151481242767624, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s**2 - 1*1.5493082", + "loss": 0.08188012, + "metrics": { + "blind": { + "mae": 0.21675877275077693, + "max_error": 0.6051563438690276, + "r2": -0.15244219710602902, + "rmse": 0.27053603091796624 + }, + "train": { + "mae": 0.24201040773220858, + "max_error": 0.6071664699411887, + "r2": 0.14556728242975503, + "rmse": 0.2861470270884908 + }, + "validation": { + "mae": 0.22821046498255512, + "max_error": 0.5640173075152422, + "r2": -0.6769623502818845, + "rmse": 0.2759240959326515 + } + }, + "score": 0.0029180639268529245, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.5473007852004947, + -0.6484793637153657 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cd_F + Cd_rear_a - 0.14964145", + "loss": 0.064020455, + "metrics": { + "blind": { + "mae": 0.38070500446232, + "max_error": 0.7623779942225708, + "r2": -2.0593513323213757, + "rmse": 0.4407884590859931 + }, + "train": { + "mae": 0.20590874519762428, + "max_error": 0.5418909017755695, + "r2": 0.33193592525029614, + "rmse": 0.25302262808781295 + }, + "validation": { + "mae": 0.3566209062519863, + "max_error": 0.7026292977100281, + "r2": -2.832797487086633, + "rmse": 0.41714391103483267 + } + }, + "score": 0.2460535846808943, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.8445983607964636, + -1.3049752763183833 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s1-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "expression": "-Cd_F + Cd_rear_a", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 6.9373436, + "metrics": { + "blind": { + "mae": 2.685960826502833, + "max_error": 3.185298358090222, + "r2": -17.96117210481587, + "rmse": 2.7025100703864875 + }, + "train": { + "mae": 2.611442683366415, + "max_error": 3.094777006888762, + "r2": -25.7618456815382, + "rmse": 2.6338837954977725 + }, + "validation": { + "mae": 2.723168916087907, + "max_error": 3.102037695236504, + "r2": -16.68511296079042, + "rmse": 2.7388457520776726 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10264781303703785, + 2.329904353246093 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16728770000000", + "loss": 0.25922516, + "metrics": { + "blind": { + "mae": 0.5347186688759995, + "max_error": 1.137322075543213, + "r2": -0.02534278716969829, + "rmse": 0.62844788819632 + }, + "train": { + "mae": 0.42840208909176797, + "max_error": 1.016082875552368, + "r2": -1.5943912856641873e-11, + "rmse": 0.5091415956973169 + }, + "validation": { + "mae": 0.5885869185870097, + "max_error": 1.1132546736572266, + "r2": -0.12354142262898904, + "rmse": 0.6903323082894811 + } + }, + "score": 3.2869771859878525, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1672877, + -1.1672877 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.13072658, + "metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "score": 0.6845890612264143, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a - 1*2.54999", + "loss": 0.1214874, + "metrics": { + "blind": { + "mae": 0.2765748529938678, + "max_error": 0.6353083580902217, + "r2": 0.7204897359522907, + "rmse": 0.32812068616967727 + }, + "train": { + "mae": 0.28390191863424075, + "max_error": 1.122171908413768, + "r2": 0.5313441416021529, + "rmse": 0.34855041524965047 + }, + "validation": { + "mae": 0.2936482454866741, + "max_error": 0.5520476952365039, + "r2": 0.7274172856274381, + "rmse": 0.3400265358819893 + } + }, + "score": 0.07329741274285746, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4473421869629624, + -0.2200856467539074 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s1-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "expression": "1.83892490000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.5132871828216553, + "max_error": 0.8983485546661376, + "r2": -0.10138747672740656, + "rmse": 0.5821154438779459 + }, + "train": { + "mae": 0.32564723771026094, + "max_error": 0.8501412716461181, + "r2": -1.458588805292038e-11, + "rmse": 0.3923107081636502 + }, + "validation": { + "mae": 0.5255322988306288, + "max_error": 0.9007460918975829, + "r2": -0.03646906929591265, + "rmse": 0.5821919580836631 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.83892490000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132871828216553, + "max_error": 0.8983485546661376, + "r2": -0.10138747672740656, + "rmse": 0.5821154438779459 + }, + "train": { + "mae": 0.32564723771026094, + "max_error": 0.8501412716461181, + "r2": -1.458588805292038e-11, + "rmse": 0.3923107081636502 + }, + "validation": { + "mae": 0.5255322988306288, + "max_error": 0.9007460918975829, + "r2": -0.03646906929591265, + "rmse": 0.5821919580836631 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389249, + 1.8389249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "-1.25014130000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.6670542, + "metrics": { + "blind": { + "mae": 1.4517560574007802, + "max_error": 2.69845350086689, + "r2": -46.39399656118302, + "rmse": 1.73491101586468 + }, + "train": { + "mae": 1.3000969583680655, + "max_error": 2.9517030268907547, + "r2": -26.83115532798653, + "rmse": 1.63311181523923 + }, + "validation": { + "mae": 1.2698764542971428, + "max_error": 2.6524334819987416, + "r2": -50.23313766953331, + "rmse": 1.52511800836077 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.172684133052826, + 1.1736537562683225 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014130000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "score": 3.3261562494625085, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501413, + -1.2501413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd*(-0.29157054)", + "loss": 0.09530941, + "metrics": { + "blind": { + "mae": 0.2105699359424722, + "max_error": 0.4883373133554496, + "r2": 0.008267560089198378, + "rmse": 0.25096479177969877 + }, + "train": { + "mae": 0.24835207042966595, + "max_error": 0.6868324765739684, + "r2": 0.005430468418380907, + "rmse": 0.3087222128992583 + }, + "validation": { + "mae": 0.17072031340653415, + "max_error": 0.44903042782161373, + "r2": 0.0303094407348663, + "rmse": 0.20981887581982034 + } + }, + "score": 0.0027225251843146516, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2668017038299515, + -1.2329111055484414 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 7.0, + "expression": "3.855533 - 1.1906328*target_Cd", + "loss": 0.09462008, + "metrics": { + "blind": { + "mae": 0.20798891724470003, + "max_error": 0.4650793647399243, + "r2": 0.04050783703538863, + "rmse": 0.24685177486984242 + }, + "train": { + "mae": 0.24649955358364223, + "max_error": 0.7109331847285776, + "r2": 0.012623375535763093, + "rmse": 0.30760381962452227 + }, + "validation": { + "mae": 0.16932344253629908, + "max_error": 0.419819992804348, + "r2": 0.10442134709817574, + "rmse": 0.20164146248650888 + } + }, + "score": 0.002419610304738049, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.3174713085828418, + -1.1790785274548532 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "-1.16730840000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5347259138759994, + "max_error": 1.1373013755432129, + "r2": -0.025353407506530923, + "rmse": 0.6284511428693207 + }, + "train": { + "mae": 0.4284027907866832, + "max_error": 1.0161035755523682, + "r2": -1.344224287436191e-09, + "rmse": 0.5091415960354583 + }, + "validation": { + "mae": 0.5885800185870098, + "max_error": 1.1132339736572265, + "r2": -0.12351908056205141, + "rmse": 0.6903254444894439 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 30.018343, + "metrics": { + "blind": { + "mae": 5.362485073786229, + "max_error": 6.604667663574219, + "r2": -74.63503256307311, + "rmse": 5.397544479989621 + }, + "train": { + "mae": 5.45548529042152, + "max_error": 6.325402982532978, + "r2": -114.80025988764376, + "rmse": 5.478899653623264 + }, + "validation": { + "mae": 5.68173850251314, + "max_error": 6.5535192638635635, + "r2": -76.08425107206772, + "rmse": 5.71803071202467 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.228517413139343, + 4.344752058386803 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16730840000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347259138759994, + "max_error": 1.1373013755432129, + "r2": -0.025353407506530923, + "rmse": 0.6284511428693207 + }, + "train": { + "mae": 0.4284027907866832, + "max_error": 1.0161035755523682, + "r2": -1.344224287436191e-09, + "rmse": 0.5091415960354583 + }, + "validation": { + "mae": 0.5885800185870098, + "max_error": 1.1132339736572265, + "r2": -0.12351908056205141, + "rmse": 0.6903254444894439 + } + }, + "score": 4.751866995189369, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1673084, + -1.1673084 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cl*0.20134164 - 1*1.1698992", + "loss": 0.23126191, + "metrics": { + "blind": { + "mae": 0.4325109378074149, + "max_error": 1.0507305548501997, + "r2": 0.32647843083013606, + "rmse": 0.5093431677889952 + }, + "train": { + "mae": 0.40053828675640735, + "max_error": 1.022792413106532, + "r2": 0.10787236160392366, + "rmse": 0.4808970095426501 + }, + "validation": { + "mae": 0.5392610326647566, + "max_error": 1.0810085583012397, + "r2": 0.05015227858524318, + "rmse": 0.6347323709698001 + } + }, + "score": 0.022829206834007597, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.406009346550834, + -0.9335938279207756 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "Cd_rear_a + Cd_rear_s**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 4.1107926, + "metrics": { + "blind": { + "mae": 2.158855006447993, + "max_error": 3.299970930442214, + "r2": -15.82401616993143, + "rmse": 2.2751178250425803 + }, + "train": { + "mae": 1.9458032226884516, + "max_error": 3.18065120652318, + "r2": -25.709465659479914, + "rmse": 2.027508867353181 + }, + "validation": { + "mae": 2.4236966903584127, + "max_error": 3.2632875638082623, + "r2": -18.399504797154982, + "rmse": 2.518740068524495 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.1983056105673313, + 4.634926444850862 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "1.83892350000000", + "loss": 0.15390767, + "metrics": { + "blind": { + "mae": 0.5132875328216553, + "max_error": 0.8983499546661378, + "r2": -0.10138908408629299, + "rmse": 0.5821158686458454 + }, + "train": { + "mae": 0.32564716652382025, + "max_error": 0.8501426716461182, + "r2": -6.328271240363392e-14, + "rmse": 0.39231070816080155 + }, + "validation": { + "mae": 0.5255319039588341, + "max_error": 0.9007474918975831, + "r2": -0.03646813425727147, + "rmse": 0.5821916954747169 + } + }, + "score": 3.2850182584532326, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389235, + 1.8389235 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_rear_a + Cd_rear_s", + "loss": 0.10971323, + "metrics": { + "blind": { + "mae": 0.4504156879847869, + "max_error": 0.6326611861586571, + "r2": 0.3136649253238505, + "rmse": 0.4595228919344721 + }, + "train": { + "mae": 0.3094089455839436, + "max_error": 0.5029259501025081, + "r2": 0.28714927289771797, + "rmse": 0.3312298446121608 + }, + "validation": { + "mae": 0.4534945357590914, + "max_error": 0.6293875817209482, + "r2": 0.33548878734554943, + "rmse": 0.46616448744007905 + } + }, + "score": 0.3384829155096089, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.25175127666443586, + 3.4783706068992615 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a + Cd_rear_s**2", + "loss": 0.033301342, + "metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "score": 1.1922722651755668, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12487965590272465, + 3.648879089026237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s**4", + "loss": 0.026770882, + "metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "score": 0.21828289215605354, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10314206787424243, + 4.0695987068723944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s0-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "-1.25014130000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_c", + "loss": 1795.7644, + "metrics": { + "blind": { + "mae": 45.35216000506189, + "max_error": 58.27738380432129, + "r2": -36030.96272415244, + "rmse": 47.83651117123836 + }, + "train": { + "mae": 39.673786984219895, + "max_error": 56.892298102378845, + "r2": -18738.101827222483, + "rmse": 42.37646142349489 + }, + "validation": { + "mae": 40.639498504308555, + "max_error": 56.547361850738525, + "r2": -42442.902309734956, + "rmse": 43.89707928965587 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -59.07445549964905, + 56.71560764312744 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_c" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014130000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "score": 9.83836774186579, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501413, + -1.2501413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_s*(-0.1021931) - 1.1808428", + "loss": 0.09537381, + "metrics": { + "blind": { + "mae": 0.21167520232405476, + "max_error": 0.527244350031302, + "r2": -0.045645931052497035, + "rmse": 0.25769611080702465 + }, + "train": { + "mae": 0.25015171919412793, + "max_error": 0.6894867511281992, + "r2": 0.004758271900377142, + "rmse": 0.30882652282304474 + }, + "validation": { + "mae": 0.170675737393013, + "max_error": 0.49231003775580473, + "r2": -0.05571424967397287, + "rmse": 0.2189279265336012 + } + }, + "score": 0.0009539169020276404, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2982081267062036, + -1.196080145168821 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s0-20260718", + "used_features": [] + }, + { + "expression": "-Cd_F + Cd_rear_a", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.8152605, + "metrics": { + "blind": { + "mae": 0.7046440394362434, + "max_error": 1.8781830510124564, + "r2": -0.9956336158156958, + "rmse": 0.87674871146624 + }, + "train": { + "mae": 0.7295411288169986, + "max_error": 1.9389081485569477, + "r2": -2.1449900493638516, + "rmse": 0.9029178051115037 + }, + "validation": { + "mae": 0.9826974206341382, + "max_error": 1.9332711258903146, + "r2": -2.244472115267538, + "rmse": 1.1731017374006025 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9491200326010585, + 0.25663443375378847 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16735900000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347436238759995, + "max_error": 1.1372507755432129, + "r2": -0.02537937769625498, + "rmse": 0.6284591015360349 + }, + "train": { + "mae": 0.4284045060409208, + "max_error": 1.0161541755523682, + "r2": -1.8508684807017062e-08, + "rmse": 0.5091416004050288 + }, + "validation": { + "mae": 0.5885631519203428, + "max_error": 1.1131833736572265, + "r2": -0.12346447512640157, + "rmse": 0.6903086686374265 + } + }, + "score": 1.1458107821322527, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.167359, + -1.167359 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.13072658, + "metrics": { + "blind": { + "mae": 0.2791490838319987, + "max_error": 0.5301438071765006, + "r2": 0.7569632168167219, + "rmse": 0.305964285303882 + }, + "train": { + "mae": 0.32418260832645945, + "max_error": 0.6586174031253904, + "r2": 0.4957025718117566, + "rmse": 0.3615613139723507 + }, + "validation": { + "mae": 0.3059463289110938, + "max_error": 0.557322297245264, + "r2": 0.7389935564784096, + "rmse": 0.3327279387102607 + } + }, + "score": 0.6845889454969006, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s0-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "expression": "Cl_F + 0.94657123", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.24908668004542206, + "max_error": 0.5579576398747754, + "r2": 0.7330737686354335, + "rmse": 0.2865726118712382 + }, + "train": { + "mae": 0.1883531346364398, + "max_error": 0.5191982946860385, + "r2": 0.6359217458042972, + "rmse": 0.23671595576792673 + }, + "validation": { + "mae": 0.28396721098708455, + "max_error": 0.5753685337993097, + "r2": 0.6861750792053432, + "rmse": 0.32035517428384613 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.83892490000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132871828216553, + "max_error": 0.8983485546661376, + "r2": -0.10138747672740656, + "rmse": 0.5821154438779459 + }, + "train": { + "mae": 0.32564723771026094, + "max_error": 0.8501412716461181, + "r2": -1.458588805292038e-11, + "rmse": 0.3923107081636502 + }, + "validation": { + "mae": 0.5255322988306288, + "max_error": 0.9007460918975829, + "r2": -0.03646906929591265, + "rmse": 0.5821919580836631 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389249, + 1.8389249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_F + Cl_F", + "loss": 0.12363231, + "metrics": { + "blind": { + "mae": 0.31417756244773043, + "max_error": 0.7740932633168995, + "r2": 0.5278057392379903, + "rmse": 0.38115305635776603 + }, + "train": { + "mae": 0.27680154993609224, + "max_error": 0.9379146005958319, + "r2": 0.19671130107346646, + "rmse": 0.3516138641332259 + }, + "validation": { + "mae": 0.3200772907346105, + "max_error": 0.7511786371469498, + "r2": 0.505880456968314, + "rmse": 0.4019796285935783 + } + }, + "score": 0.2190408935562934, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7177083753049374, + 2.960192272439599 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_F + 0.94657123", + "loss": 0.05603443, + "metrics": { + "blind": { + "mae": 0.24908668004542206, + "max_error": 0.5579576398747754, + "r2": 0.7330737686354335, + "rmse": 0.2865726118712382 + }, + "train": { + "mae": 0.1883531346364398, + "max_error": 0.5191982946860385, + "r2": 0.6359217458042972, + "rmse": 0.23671595576792673 + }, + "validation": { + "mae": 0.28396721098708455, + "max_error": 0.5753685337993097, + "r2": 0.6861750792053432, + "rmse": 0.32035517428384613 + } + }, + "score": 0.7913455953910644, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3054254176524687, + 2.4266673662197995 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "-1.25014130000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_a", + "loss": 357.44168, + "metrics": { + "blind": { + "mae": 14.903031180799008, + "max_error": 32.20011222362518, + "r2": -4738.040975773873, + "rmse": 17.34845365117759 + }, + "train": { + "mae": 16.636443722551153, + "max_error": 32.67215371131897, + "r2": -3728.9636360517325, + "rmse": 18.906128362289277 + }, + "validation": { + "mae": 17.462003593261425, + "max_error": 31.310849905014038, + "r2": -8559.848884336976, + "rmse": 19.71452817333348 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -29.53658103942871, + 31.446141004562378 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014130000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142977255212786, + "max_error": 0.49565199736480703, + "r2": -0.00598899912963291, + "rmse": 0.25276221588781167 + }, + "train": { + "mae": 0.24963147846757922, + "max_error": 0.6792444812881471, + "r2": -3.718358954074574e-12, + "rmse": 0.3095638956175499 + }, + "validation": { + "mae": 0.17219097940116296, + "max_error": 0.4582755339515685, + "r2": -0.0009266982149573888, + "rmse": 0.21317148415510853 + } + }, + "score": 8.224153897968753, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501413, + -1.2501413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cd_rear_a", + "loss": 0.08235938, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.151481242767624, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + }, + { + "complexity": 6.0, + "expression": "-Cd_F + Cd_rear_a - 1*0.08176654", + "loss": 0.066788785, + "metrics": { + "blind": { + "mae": 0.4018634652521039, + "max_error": 0.7049259545265054, + "r2": -2.3964336421792383, + "rmse": 0.46443731455296555 + }, + "train": { + "mae": 0.19837044426754277, + "max_error": 0.60749141936957, + "r2": 0.30304787778152176, + "rmse": 0.2584352651899343 + }, + "validation": { + "mae": 0.34537835033433456, + "max_error": 0.7007598785667037, + "r2": -2.6574966827066593, + "rmse": 0.40749280278383265 + } + }, + "score": 0.06985239232633524, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7767234507964635, + -1.2371003663183833 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s2-20260718", + "used_features": [] + }, + { + "expression": "-1.16729120000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5347198938759995, + "max_error": 1.137318575543213, + "r2": -0.025344582722536035, + "rmse": 0.6284484384566374 + }, + "train": { + "mae": 0.4284022077358358, + "max_error": 1.0160863755523681, + "r2": -8.30180368893707e-12, + "rmse": 0.5091415956953714 + }, + "validation": { + "mae": 0.5885857519203429, + "max_error": 1.1132511736572266, + "r2": -0.12353764484289242, + "rmse": 0.6903311477047729 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.8152605, + "metrics": { + "blind": { + "mae": 0.7046440394362434, + "max_error": 1.8781830510124564, + "r2": -0.9956336158156958, + "rmse": 0.87674871146624 + }, + "train": { + "mae": 0.7295411288169986, + "max_error": 1.9389081485569477, + "r2": -2.1449900493638516, + "rmse": 0.9029178051115037 + }, + "validation": { + "mae": 0.9826974206341382, + "max_error": 1.9332711258903146, + "r2": -2.244472115267538, + "rmse": 1.1731017374006025 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9491200326010585, + 0.25663443375378847 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16729120000000", + "loss": 0.25922516, + "metrics": { + "blind": { + "mae": 0.5347198938759995, + "max_error": 1.137318575543213, + "r2": -0.025344582722536035, + "rmse": 0.6284484384566374 + }, + "train": { + "mae": 0.4284022077358358, + "max_error": 1.0160863755523681, + "r2": -8.30180368893707e-12, + "rmse": 0.5091415956953714 + }, + "validation": { + "mae": 0.5885857519203429, + "max_error": 1.1132511736572266, + "r2": -0.12353764484289242, + "rmse": 0.6903311477047729 + } + }, + "score": 1.145810666402739, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1672912, + -1.1672912 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cd_rear_s - 0.39053884", + "loss": 0.21792232, + "metrics": { + "blind": { + "mae": 0.5148059097455807, + "max_error": 1.0093071050667723, + "r2": 0.1448252129876736, + "rmse": 0.5739342929713116 + }, + "train": { + "mae": 0.3695630296083613, + "max_error": 0.970812242389139, + "r2": 0.15933197000734656, + "rmse": 0.4668214951513886 + }, + "validation": { + "mae": 0.5566887534779814, + "max_error": 1.0102777139707988, + "r2": 0.042004736867973236, + "rmse": 0.6374488410462434 + } + }, + "score": 0.08677917932771424, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.5390050936531687, + -0.5396423036273981 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_rear_s + Cl_tot - 1*1.5218376", + "loss": 0.17721088, + "metrics": { + "blind": { + "mae": 0.24620876273945713, + "max_error": 0.7810445230400354, + "r2": 0.720299355240313, + "rmse": 0.3282324123286752 + }, + "train": { + "mae": 0.3463826941098582, + "max_error": 0.9223401281463146, + "r2": 0.31638236292870237, + "rmse": 0.4209642436134386 + }, + "validation": { + "mae": 0.3546881799535109, + "max_error": 0.8607345014291048, + "r2": 0.504260278525623, + "rmse": 0.4585540296214995 + } + }, + "score": 0.10339911658925187, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.8275504051295877, + -0.38968904917666913 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_only-s2-20260718", + "used_features": [] + }, + { + "expression": "Cd_rear_a + Cd_rear_s**4", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.83889370000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132949828216553, + "max_error": 0.8983797546661376, + "r2": -0.10142330089028118, + "rmse": 0.5821249108590683 + }, + "train": { + "mae": 0.32564565126958295, + "max_error": 0.8501724716461181, + "r2": -5.731969121569591e-09, + "rmse": 0.39231070928514555 + }, + "validation": { + "mae": 0.525523498830629, + "max_error": 0.9007772918975829, + "r2": -0.03644823413503673, + "rmse": 0.5821861064261332 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8388937, + 1.8388937 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_F + Cl_F", + "loss": 0.12363231, + "metrics": { + "blind": { + "mae": 0.31417756244773043, + "max_error": 0.7740932633168995, + "r2": 0.5278057392379903, + "rmse": 0.38115305635776603 + }, + "train": { + "mae": 0.27680154993609224, + "max_error": 0.9379146005958319, + "r2": 0.19671130107346646, + "rmse": 0.3516138641332259 + }, + "validation": { + "mae": 0.3200772907346105, + "max_error": 0.7511786371469498, + "r2": 0.505880456968314, + "rmse": 0.4019796285935783 + } + }, + "score": 0.2190408935562934, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7177083753049374, + 2.960192272439599 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_F + 0.95969105", + "loss": 0.05620656, + "metrics": { + "blind": { + "mae": 0.2416009555611188, + "max_error": 0.5448378198747754, + "r2": 0.7447311543121564, + "rmse": 0.2802450573761107 + }, + "train": { + "mae": 0.18736789868615086, + "max_error": 0.5111095286006808, + "r2": 0.6348033919352678, + "rmse": 0.23707924197966213 + }, + "validation": { + "mae": 0.2816123714999051, + "max_error": 0.5622487137993097, + "r2": 0.6893242649554243, + "rmse": 0.31874376359571205 + } + }, + "score": 0.7882784425631774, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3185452376524687, + 2.4397871862197995 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s**4", + "loss": 0.026770882, + "metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "score": 0.7417186717477366, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10314206787424243, + 4.0695987068723944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s2-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "-1.25014220000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.6670542, + "metrics": { + "blind": { + "mae": 1.4517560574007802, + "max_error": 2.69845350086689, + "r2": -46.39399656118302, + "rmse": 1.73491101586468 + }, + "train": { + "mae": 1.3000969583680655, + "max_error": 2.9517030268907547, + "r2": -26.83115532798653, + "rmse": 1.63311181523923 + }, + "validation": { + "mae": 1.2698764542971428, + "max_error": 2.6524334819987416, + "r2": -50.23313766953331, + "rmse": 1.52511800836077 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.172684133052826, + 1.1736537562683225 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014220000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "score": 3.3261562494625085, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501422, + -1.2501422 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s2-20260718", + "used_features": [] + }, + { + "expression": "-Cd_rear_s - 0.66684914 - 1*(-0.10272021)", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5992439304021975, + "max_error": 0.9653727777948309, + "r2": -0.08711501877850858, + "rmse": 0.6471016075038617 + }, + "train": { + "mae": 0.3714588995122068, + "max_error": 1.144402332389139, + "r2": 0.17507548593966138, + "rmse": 0.4624296625742828 + }, + "validation": { + "mae": 0.5545833097033475, + "max_error": 1.034133456898265, + "r2": 0.09326236293872447, + "rmse": 0.6201610358946443 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.16728800000000", + "loss": 0.25922516, + "metrics": { + "blind": { + "mae": 0.5347187738759995, + "max_error": 1.1373217755432128, + "r2": -0.025342941071734737, + "rmse": 0.6284479353607452 + }, + "train": { + "mae": 0.4284020992612597, + "max_error": 1.0160831755523683, + "r2": -1.1585621351173359e-11, + "rmse": 0.5091415956962074 + }, + "validation": { + "mae": 0.5885868185870098, + "max_error": 1.1132543736572265, + "r2": -0.12354109881648889, + "rmse": 0.690332208810173 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.167288, + -1.167288 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "-Cd_rear_s - 0.66684914 - 1*(-0.10272021)", + "loss": 0.21384118, + "metrics": { + "blind": { + "mae": 0.5992439304021975, + "max_error": 0.9653727777948309, + "r2": -0.08711501877850858, + "rmse": 0.6471016075038617 + }, + "train": { + "mae": 0.3714588995122068, + "max_error": 1.144402332389139, + "r2": 0.17507548593966138, + "rmse": 0.4624296625742828 + }, + "validation": { + "mae": 0.5545833097033475, + "max_error": 1.034133456898265, + "r2": 0.09326236293872447, + "rmse": 0.6201610358946443 + } + }, + "score": 0.03849268754174495, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7125951836531685, + -0.713232393627398 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_target-s2-20260718", + "used_features": [ + "Cd_rear_s" + ] + }, + { + "expression": "1.83892710000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.5132866328216552, + "max_error": 0.8983463546661377, + "r2": -0.10138495090347122, + "rmse": 0.5821147763917089 + }, + "train": { + "mae": 0.3256473495746677, + "max_error": 0.8501390716461181, + "r2": -8.886535951546648e-11, + "rmse": 0.39231070817822056 + }, + "validation": { + "mae": 0.5255329193434495, + "max_error": 0.900743891897583, + "r2": -0.03647053866656669, + "rmse": 0.5821923707614266 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 6.155688, + "metrics": { + "blind": { + "mae": 2.2784571307711303, + "max_error": 3.2237260304391384, + "r2": -16.87534077112278, + "rmse": 2.3451262039987597 + }, + "train": { + "mae": 2.449272155667008, + "max_error": 3.1435747370123863, + "r2": -38.995973855055226, + "rmse": 2.481065902959803 + }, + "validation": { + "mae": 2.555820140510033, + "max_error": 3.2317652739584446, + "r2": -19.98722227926321, + "rmse": 2.619784149250746 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.228517413139343, + 4.344752058386803 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "1.83892710000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132866328216552, + "max_error": 0.8983463546661377, + "r2": -0.10138495090347122, + "rmse": 0.5821147763917089 + }, + "train": { + "mae": 0.3256473495746677, + "max_error": 0.8501390716461181, + "r2": -8.886535951546648e-11, + "rmse": 0.39231070817822056 + }, + "validation": { + "mae": 0.5255329193434495, + "max_error": 0.900743891897583, + "r2": -0.03647053866656669, + "rmse": 0.5821923707614266 + } + }, + "score": 3.688778999227355, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389271, + 1.8389271 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "-1.25014220000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.6670542, + "metrics": { + "blind": { + "mae": 1.4517560574007802, + "max_error": 2.69845350086689, + "r2": -46.39399656118302, + "rmse": 1.73491101586468 + }, + "train": { + "mae": 1.3000969583680655, + "max_error": 2.9517030268907547, + "r2": -26.83115532798653, + "rmse": 1.63311181523923 + }, + "validation": { + "mae": 1.2698764542971428, + "max_error": 2.6524334819987416, + "r2": -50.23313766953331, + "rmse": 1.52511800836077 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.172684133052826, + 1.1736537562683225 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-1.25014220000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142968255212785, + "max_error": 0.4956528973648071, + "r2": -0.0059895518991845975, + "rmse": 0.25276228533153206 + }, + "train": { + "mae": 0.24963158524724022, + "max_error": 0.679243581288147, + "r2": -9.587886040662852e-13, + "rmse": 0.3095638956171227 + }, + "validation": { + "mae": 0.17219067940116295, + "max_error": 0.4582764339515686, + "r2": -0.0009269553988853207, + "rmse": 0.2131715115418673 + } + }, + "score": 3.3261562494625085, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501422, + -1.2501422 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "-1.16725720000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5347079938759995, + "max_error": 1.1373525755432128, + "r2": -0.025327142901466315, + "rmse": 0.6284430938753585 + }, + "train": { + "mae": 0.42840105519346294, + "max_error": 1.0160523755523683, + "r2": -4.082922444581527e-09, + "rmse": 0.5091415967326508 + }, + "validation": { + "mae": 0.5885970852536762, + "max_error": 1.1132851736572265, + "r2": -0.12357434578124704, + "rmse": 0.6903424226247161 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.0642493, + "metrics": { + "blind": { + "mae": 1.2850665187244885, + "max_error": 2.1217537302873097, + "r2": -4.039612781455497, + "rmse": 1.3932636776188412 + }, + "train": { + "mae": 1.1903751263354503, + "max_error": 2.7293727239593863, + "r2": -6.963152369599728, + "rmse": 1.4367496242108286 + }, + "validation": { + "mae": 1.408416786765417, + "max_error": 2.5440643671900034, + "r2": -4.956151281703764, + "rmse": 1.5894486982761837 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.172684133052826, + 1.1736537562683225 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16725720000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347079938759995, + "max_error": 1.1373525755432128, + "r2": -0.025327142901466315, + "rmse": 0.6284430938753585 + }, + "train": { + "mae": 0.42840105519346294, + "max_error": 1.0160523755523683, + "r2": -4.082922444581527e-09, + "rmse": 0.5091415967326508 + }, + "validation": { + "mae": 0.5885970852536762, + "max_error": 1.1132851736572265, + "r2": -0.12357434578124704, + "rmse": 0.6903424226247161 + } + }, + "score": 2.074824992252211, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1672572, + -1.1672572 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cl*0.20134811 - 1.1698997", + "loss": 0.2312619, + "metrics": { + "blind": { + "mae": 0.43250817883523085, + "max_error": 1.050727356199618, + "r2": 0.3264871600963999, + "rmse": 0.5093398670732192 + }, + "train": { + "mae": 0.40053864554723373, + "max_error": 1.0227953262059015, + "r2": 0.10787236144861645, + "rmse": 0.48089700958450887 + }, + "validation": { + "mae": 0.5392604624619076, + "max_error": 1.0810084480881668, + "r2": 0.05015644721477508, + "rmse": 0.634730978132322 + } + }, + "score": 0.02282921548221104, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.406017433817175, + -0.9335867343809726 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_0.75L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "Cd_rear_a + Cd_rear_s**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 0.7003962, + "metrics": { + "blind": { + "mae": 0.5703262576367706, + "max_error": 1.4667464680969715, + "r2": -0.6984206898422467, + "rmse": 0.7228724783839271 + }, + "train": { + "mae": 0.7254418877695324, + "max_error": 1.5016526486724615, + "r2": -3.550755328809367, + "rmse": 0.836896796695819 + }, + "validation": { + "mae": 0.8017440668474405, + "max_error": 1.5274721421301365, + "r2": -1.8424819802662538, + "rmse": 0.9641328693329608 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.7976047238335013, + 3.485238179564476 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "1.83894480000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132822078216552, + "max_error": 0.8983286546661378, + "r2": -0.10136463064665668, + "rmse": 0.5821094064362262 + }, + "train": { + "mae": 0.3256482495746677, + "max_error": 0.8501213716461182, + "r2": -2.9750633068204024e-09, + "rmse": 0.39231070874436375 + }, + "validation": { + "mae": 0.5255379116511418, + "max_error": 0.9007261918975831, + "r2": -0.036482361498459515, + "rmse": 0.5821956912334726 + } + }, + "score": 1.5152933627400027, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389448, + 1.8389448 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_F + Cl_F", + "loss": 0.12363231, + "metrics": { + "blind": { + "mae": 0.31417756244773043, + "max_error": 0.7740932633168995, + "r2": 0.5278057392379903, + "rmse": 0.38115305635776603 + }, + "train": { + "mae": 0.27680154993609224, + "max_error": 0.9379146005958319, + "r2": 0.19671130107346646, + "rmse": 0.3516138641332259 + }, + "validation": { + "mae": 0.3200772907346105, + "max_error": 0.7511786371469498, + "r2": 0.505880456968314, + "rmse": 0.4019796285935783 + } + }, + "score": 0.2190408935562934, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7177083753049374, + 2.960192272439599 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a + Cd_rear_s**2", + "loss": 0.033301342, + "metrics": { + "blind": { + "mae": 0.33382883156561916, + "max_error": 0.5780272898805476, + "r2": 0.5926825730389134, + "rmse": 0.3540018652411146 + }, + "train": { + "mae": 0.15750274932677116, + "max_error": 0.3447414510191389, + "r2": 0.7836278157718259, + "rmse": 0.1824865568494987 + }, + "validation": { + "mae": 0.3377937474960447, + "max_error": 0.5395710971560153, + "r2": 0.6109457791451522, + "rmse": 0.35669177476048874 + } + }, + "score": 1.3117142221548603, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12487965590272465, + 3.648879089026237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_a + Cd_rear_s**4", + "loss": 0.026770882, + "metrics": { + "blind": { + "mae": 0.1917389443730604, + "max_error": 0.4851074731075582, + "r2": 0.7974085094528938, + "rmse": 0.24966039562108314 + }, + "train": { + "mae": 0.12991678619802208, + "max_error": 0.39323272854382685, + "r2": 0.8260588504684969, + "rmse": 0.16361809442290243 + }, + "validation": { + "mae": 0.19671759936477495, + "max_error": 0.40544930092803555, + "r2": 0.848710595996576, + "rmse": 0.22242944849882526 + } + }, + "score": 0.21828289215605354, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10314206787424243, + 4.0695987068723944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s2-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "Cl_err - 1.2380614", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.25899614070291893, + "max_error": 0.608127310043195, + "r2": -0.559284913317976, + "rmse": 0.3146866192462498 + }, + "train": { + "mae": 0.22437789831914223, + "max_error": 0.7418270929623454, + "r2": 0.15019541837818384, + "rmse": 0.2853710001803913 + }, + "validation": { + "mae": 0.213583358721448, + "max_error": 0.586626480203116, + "r2": -0.5804981224720598, + "rmse": 0.26787054681793604 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.25014270000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142963255212782, + "max_error": 0.4956533973648072, + "r2": -0.005989859004401854, + "rmse": 0.25276232391275316 + }, + "train": { + "mae": 0.24963164456927417, + "max_error": 0.6792430812881469, + "r2": -6.729949930672774e-12, + "rmse": 0.309563895618016 + }, + "validation": { + "mae": 0.17219051273449631, + "max_error": 0.45827693395156865, + "r2": -0.0009270982942641837, + "rmse": 0.21317152675837367 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501427, + -1.2501427 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_err - 1.2380614", + "loss": 0.08143661, + "metrics": { + "blind": { + "mae": 0.25899614070291893, + "max_error": 0.608127310043195, + "r2": -0.559284913317976, + "rmse": 0.3146866192462498 + }, + "train": { + "mae": 0.22437789831914223, + "max_error": 0.7418270929623454, + "r2": 0.15019541837818384, + "rmse": 0.2853710001803913 + }, + "validation": { + "mae": 0.213583358721448, + "max_error": 0.586626480203116, + "r2": -0.5804981224720598, + "rmse": 0.26787054681793604 + } + }, + "score": 0.08137433538680049, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0793759551458004, + -0.850112636908883 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_err" + ] + }, + { + "expression": "Cd_rear_a - 1.6383044 - 1*0.9151014", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.27589169299386784, + "max_error": 0.6318925580902219, + "r2": 0.7228710083469518, + "rmse": 0.32671999339459334 + }, + "train": { + "mae": 0.2827480725745169, + "max_error": 1.125587708413768, + "r2": 0.5329186510171173, + "rmse": 0.3479644227628132 + }, + "validation": { + "mae": 0.29233447625590503, + "max_error": 0.5486318952365041, + "r2": 0.7301790450295194, + "rmse": 0.33829960642956663 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_s", + "loss": 10594.218, + "metrics": { + "blind": { + "mae": 105.80064274072647, + "max_error": 110.66395282745361, + "r2": -29075.86793361482, + "rmse": 105.8299382676485 + }, + "train": { + "mae": 102.77230143256612, + "max_error": 112.1254848241806, + "r2": -40867.789247904846, + "rmse": 102.92822068935568 + }, + "validation": { + "mae": 106.07056792691732, + "max_error": 110.91145694255829, + "r2": -26545.303183849966, + "rmse": 106.11228828517315 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 91.11984372138977, + 110.90611517429352 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16729400000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347208738759994, + "max_error": 1.1373157755432128, + "r2": -0.025346019210602533, + "rmse": 0.628448878678579 + }, + "train": { + "mae": 0.4284023026510902, + "max_error": 1.0160891755523682, + "r2": -7.02371494298859e-11, + "rmse": 0.5091415957111384 + }, + "validation": { + "mae": 0.58858481858701, + "max_error": 1.1132483736572265, + "r2": -0.12353462265560378, + "rmse": 0.6903302192483779 + } + }, + "score": 10.618122026621316, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.167294, + -1.167294 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_F - 1.8192275", + "loss": 0.21052895, + "metrics": { + "blind": { + "mae": 0.3822036721696723, + "max_error": 0.9616173984287679, + "r2": 0.4553208005978113, + "rmse": 0.4580418141169238 + }, + "train": { + "mae": 0.39198864864621447, + "max_error": 0.855395754686594, + "r2": 0.1878529821874665, + "rmse": 0.4588343320440133 + }, + "validation": { + "mae": 0.47600968092440793, + "max_error": 0.9612077915845811, + "r2": 0.2693887051314152, + "rmse": 0.5566815732859082 + } + }, + "score": 0.10403686929087502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.4603733123475313, + -0.3391313637802005 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_a - 1.6383044 - 1*0.9151014", + "loss": 0.12107925, + "metrics": { + "blind": { + "mae": 0.27589169299386784, + "max_error": 0.6318925580902219, + "r2": 0.7228710083469518, + "rmse": 0.32671999339459334 + }, + "train": { + "mae": 0.2827480725745169, + "max_error": 1.125587708413768, + "r2": 0.5329186510171173, + "rmse": 0.3479644227628132 + }, + "validation": { + "mae": 0.29233447625590503, + "max_error": 0.5486318952365041, + "r2": 0.7301790450295194, + "rmse": 0.33829960642956663 + } + }, + "score": 0.1843926278249025, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4507579869629623, + -0.22350144675390737 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s2-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "Cd_rear_a + Cd_rear_s - 0.29595318", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.15522164546771872, + "max_error": 0.33670800615865715, + "r2": 0.8955173273980964, + "rmse": 0.17929211528107397 + }, + "train": { + "mae": 0.12480135933084381, + "max_error": 0.7289079123286533, + "r2": 0.808084564828352, + "rmse": 0.17186407895802183 + }, + "validation": { + "mae": 0.1618956133373223, + "max_error": 0.3334344017209483, + "r2": 0.8884741981722156, + "rmse": 0.19097464271816414 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 0.2448916, + "metrics": { + "blind": { + "mae": 0.3980671165122658, + "max_error": 0.6893636407330632, + "r2": 0.4210961338187449, + "rmse": 0.42202898512102954 + }, + "train": { + "mae": 0.4098922748489713, + "max_error": 1.581420985981822, + "r2": -0.591158972220446, + "rmse": 0.49486523882977723 + }, + "validation": { + "mae": 0.402749445915199, + "max_error": 0.7417573679704219, + "r2": 0.4418478036727461, + "rmse": 0.42723256449853164 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10264781303703785, + 2.329904353246093 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "1.83892490000000", + "loss": 0.15390766, + "metrics": { + "blind": { + "mae": 0.5132871828216553, + "max_error": 0.8983485546661376, + "r2": -0.10138747672740656, + "rmse": 0.5821154438779459 + }, + "train": { + "mae": 0.32564723771026094, + "max_error": 0.8501412716461181, + "r2": -1.458588805292038e-11, + "rmse": 0.3923107081636502 + }, + "validation": { + "mae": 0.5255322988306288, + "max_error": 0.9007460918975829, + "r2": -0.03646906929591265, + "rmse": 0.5821919580836631 + } + }, + "score": 0.4644628514698874, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.8389249, + 1.8389249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_rear_a + Cd_rear_s", + "loss": 0.10971323, + "metrics": { + "blind": { + "mae": 0.4504156879847869, + "max_error": 0.6326611861586571, + "r2": 0.3136649253238505, + "rmse": 0.4595228919344721 + }, + "train": { + "mae": 0.3094089455839436, + "max_error": 0.5029259501025081, + "r2": 0.28714927289771797, + "rmse": 0.3312298446121608 + }, + "validation": { + "mae": 0.4534945357590914, + "max_error": 0.6293875817209482, + "r2": 0.33548878734554943, + "rmse": 0.46616448744007905 + } + }, + "score": 0.33848285053558697, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.25175127666443586, + 3.4783706068992615 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_F - 1*(-0.94657123)", + "loss": 0.05603443, + "metrics": { + "blind": { + "mae": 0.24908668004542206, + "max_error": 0.5579576398747754, + "r2": 0.7330737686354335, + "rmse": 0.2865726118712382 + }, + "train": { + "mae": 0.1883531346364398, + "max_error": 0.5191982946860385, + "r2": 0.6359217458042972, + "rmse": 0.23671595576792673 + }, + "validation": { + "mae": 0.28396721098708455, + "max_error": 0.5753685337993097, + "r2": 0.6861750792053432, + "rmse": 0.32035517428384613 + } + }, + "score": 0.6719036384117709, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3054254176524687, + 2.4266673662197995 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a + Cd_rear_s - 0.29595318", + "loss": 0.029537266, + "metrics": { + "blind": { + "mae": 0.15522164546771872, + "max_error": 0.33670800615865715, + "r2": 0.8955173273980964, + "rmse": 0.17929211528107397 + }, + "train": { + "mae": 0.12480135933084381, + "max_error": 0.7289079123286533, + "r2": 0.808084564828352, + "rmse": 0.17186407895802183 + }, + "validation": { + "mae": 0.1618956133373223, + "max_error": 0.3334344017209483, + "r2": 0.8884741981722156, + "rmse": 0.19097464271816414 + } + }, + "score": 0.32015680144484754, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.04420190333556412, + 3.1824174268992613 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s1-20260718", + "used_features": [ + "Cd_rear_a", + "Cd_rear_s" + ] + }, + { + "expression": "Cd_rear_a - Cl_err - (Cd_F - Cl_err)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-1.25014270000000", + "loss": 0.09582979, + "metrics": { + "blind": { + "mae": 0.21142963255212782, + "max_error": 0.4956533973648072, + "r2": -0.005989859004401854, + "rmse": 0.25276232391275316 + }, + "train": { + "mae": 0.24963164456927417, + "max_error": 0.6792430812881469, + "r2": -6.729949930672774e-12, + "rmse": 0.309563895618016 + }, + "validation": { + "mae": 0.17219051273449631, + "max_error": 0.45827693395156865, + "r2": -0.0009270982942641837, + "rmse": 0.21317152675837367 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2501427, + -1.2501427 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 5.0, + "expression": "-Cl_err**2 - 1.2501427", + "loss": 0.092842035, + "metrics": { + "blind": { + "mae": 0.20637338816620718, + "max_error": 0.5094039675785236, + "r2": -0.001398318318252656, + "rmse": 0.25218483509329725 + }, + "train": { + "mae": 0.25136036585050237, + "max_error": 0.6768238590355948, + "r2": 0.031177678932102992, + "rmse": 0.30469994184853605 + }, + "validation": { + "mae": 0.1702791597206299, + "max_error": 0.47275748570722054, + "r2": 0.005600156382637778, + "rmse": 0.21247532185135146 + } + }, + "score": 0.010558032125137064, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.9579528807001756, + -1.2554753478862308 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_a - Cl_err - (Cd_F - Cl_err)", + "loss": 0.082359396, + "metrics": { + "blind": { + "mae": 0.4420947122128382, + "max_error": 0.7866924945265055, + "r2": -2.99516713229729, + "rmse": 0.5037128316981775 + }, + "train": { + "mae": 0.21391128887286975, + "max_error": 0.68925795936957, + "r2": 0.14056626308820508, + "rmse": 0.2869832187118817 + }, + "validation": { + "mae": 0.34925007922114065, + "max_error": 0.7825264185667038, + "r2": -2.7158258616617026, + "rmse": 0.41072926557791417 + } + }, + "score": 0.05990347606085324, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6949569107964635, + -1.1553338263183832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_a", + "Cl_err" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s1-20260718", + "used_features": [ + "Cd_F", + "Cd_rear_a", + "Cl_err" + ] + }, + { + "expression": "-1.16729400000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5347208738759994, + "max_error": 1.1373157755432128, + "r2": -0.025346019210602533, + "rmse": 0.628448878678579 + }, + "train": { + "mae": 0.4284023026510902, + "max_error": 1.0160891755523682, + "r2": -7.02371494298859e-11, + "rmse": 0.5091415957111384 + }, + "validation": { + "mae": 0.58858481858701, + "max_error": 1.1132483736572265, + "r2": -0.12353462265560378, + "rmse": 0.6903302192483779 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_s", + "loss": 455.65863, + "metrics": { + "blind": { + "mae": 22.472052685823293, + "max_error": 30.544151723384857, + "r2": -1475.3289452710537, + "rmse": 23.84659073372629 + }, + "train": { + "mae": 19.400034532903977, + "max_error": 33.05724340677261, + "r2": -1756.7716420896215, + "rmse": 21.346162254904996 + }, + "validation": { + "mae": 20.08307202292296, + "max_error": 29.725873827934265, + "r2": -1131.297773981455, + "rmse": 21.91512649587383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -32.42918699979782, + 31.567879021167755 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + }, + { + "complexity": 2.0, + "expression": "-1.16729400000000", + "loss": 0.25922513, + "metrics": { + "blind": { + "mae": 0.5347208738759994, + "max_error": 1.1373157755432128, + "r2": -0.025346019210602533, + "rmse": 0.628448878678579 + }, + "train": { + "mae": 0.4284023026510902, + "max_error": 1.0160891755523682, + "r2": -7.02371494298859e-11, + "rmse": 0.5091415957111384 + }, + "validation": { + "mae": 0.58858481858701, + "max_error": 1.1132483736572265, + "r2": -0.12353462265560378, + "rmse": 0.6903302192483779 + } + }, + "score": 7.471802277781716, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.167294, + -1.167294 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "(3.094686 - Cl_tot)*(-0.36888832)", + "loss": 0.19809917, + "metrics": { + "blind": { + "mae": 0.33213009222378187, + "max_error": 0.9874126368122973, + "r2": 0.5618674512719433, + "rmse": 0.41080667330275633 + }, + "train": { + "mae": 0.36928064219589957, + "max_error": 1.0145743698998222, + "r2": 0.23580277349776746, + "rmse": 0.4450833087454493 + }, + "validation": { + "mae": 0.486311890203276, + "max_error": 1.0339245737764664, + "r2": 0.24071527235593093, + "rmse": 0.5675001586449817 + } + }, + "score": 0.05378582960929168, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.6044866968588107, + -0.6292876974422805 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_tot" + ] + } + ], + "run": "article-discovery-illusion_0.75L-actual_plus_error-s1-20260718", + "used_features": [] + } + ], + "n_head_fits": 36 + }, + "illusion_1.5L": { + "feature_frequency": { + "Cd_rear_s": 4, + "Cl_F": 54, + "Cl_rear_s": 46, + "Cl_tot": 2, + "target_Cd": 2 + }, + "fits": [ + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 7.5975533, + "metrics": { + "blind": { + "mae": 2.6558976942906156, + "max_error": 4.736926860176027, + "r2": -0.04357067873523324, + "rmse": 2.872364268391371 + }, + "train": { + "mae": 2.469170547650843, + "max_error": 5.412976400926709, + "r2": -0.04335681064907715, + "rmse": 2.756365872185182 + }, + "validation": { + "mae": 2.407381284301384, + "max_error": 4.681656027212739, + "r2": -0.03506926123670895, + "rmse": 2.690206561278342 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0887602111324668, + 1.1846119305118918 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 7.4590683, + "metrics": { + "blind": { + "mae": 2.603286109749732, + "max_error": 5.59873563700196, + "r2": -0.043665725025229696, + "rmse": 2.8724950699541356 + }, + "train": { + "mae": 2.421452895586196, + "max_error": 5.025533917378795, + "r2": -0.02433891666622312, + "rmse": 2.7311293713261584 + }, + "validation": { + "mae": 2.3256521447799496, + "max_error": 4.736126283897318, + "r2": -0.004749402239728973, + "rmse": 2.650512154509886 + } + }, + "score": 0.018395747595291514, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6509840597665262, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 1*0.17549714", + "loss": 1.2533977, + "metrics": { + "blind": { + "mae": 0.9624630429663499, + "max_error": 1.942548719155245, + "r2": 0.8446786723192736, + "rmse": 1.108138716262782 + }, + "train": { + "mae": 0.9537660591101255, + "max_error": 2.534066990695071, + "r2": 0.8278733879525801, + "rmse": 1.119552455328835 + }, + "validation": { + "mae": 0.879851283690775, + "max_error": 1.7960401223177245, + "r2": 0.8559258973389283, + "rmse": 1.003676795382573 + } + }, + "score": 0.044196143363340205, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7846159224495137, + 1.027154406918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - 0.36529", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.385891279309094, + "r2": 0.4500958545600159, + "rmse": 2.815214270168483 + }, + "train": { + "mae": 2.1197524126066445, + "max_error": 5.1956429723520205, + "r2": 0.48782507704698375, + "rmse": 2.485761390509013 + }, + "validation": { + "mae": 1.959210752500087, + "max_error": 4.560068361474164, + "r2": 0.4638546825498884, + "rmse": 2.377739608462646 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 79.64449, + "metrics": { + "blind": { + "mae": 8.918612605868839, + "max_error": 16.039940646849573, + "r2": -5.546913059479274, + "rmse": 9.713734864892977 + }, + "train": { + "mae": 8.168622492607367, + "max_error": 15.619017649441957, + "r2": -5.601689890426466, + "rmse": 8.924375652088562 + }, + "validation": { + "mae": 7.8344310045194545, + "max_error": 13.831453628838062, + "r2": -5.928242845213141, + "rmse": 8.547410945784991 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 6.413439754396677, + 12.009300757199526 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "0.143781530000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465034154269817, + "max_error": 7.235373365021973, + "r2": -0.003514865806151679, + "rmse": 3.80303098343312 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977101899414, + "r2": -8.759748482134455e-11, + "rmse": 3.473363872841266 + }, + "validation": { + "mae": 2.9191348928242125, + "max_error": 5.649174822233887, + "r2": -0.011769552376035719, + "rmse": 3.266358405843892 + } + }, + "score": 1.8873259080008291, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14378153, + 0.14378153 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 9.1098385, + "metrics": { + "blind": { + "mae": 2.7927571163294713, + "max_error": 6.190081419888884, + "r2": 0.3002396330111866, + "rmse": 3.1757231073329266 + }, + "train": { + "mae": 2.6384921903613834, + "max_error": 5.672955624293536, + "r2": 0.24489027443629796, + "rmse": 3.0182507325257593 + }, + "validation": { + "mae": 2.427702316368269, + "max_error": 5.4019861604319885, + "r2": 0.2598294369589328, + "rmse": 2.793758991137804 + } + }, + "score": 0.28089196496706703, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.4428394933929667, + 1.5384713769890368 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.36529", + "loss": 6.1790094, + "metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.385891279309094, + "r2": 0.4500958545600159, + "rmse": 2.815214270168483 + }, + "train": { + "mae": 2.1197524126066445, + "max_error": 5.1956429723520205, + "r2": 0.48782507704698375, + "rmse": 2.485761390509013 + }, + "validation": { + "mae": 1.959210752500087, + "max_error": 4.560068361474164, + "r2": 0.4638546825498884, + "rmse": 2.377739608462646 + } + }, + "score": 0.3881970159836026, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.697492089950442, + 3.3689612514442207 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a - Cl_F - 0.36529", + "loss": 6.144563, + "metrics": { + "blind": { + "mae": 2.4444275594940335, + "max_error": 4.849125986815393, + "r2": 0.48837028774601865, + "rmse": 2.7154751778632837 + }, + "train": { + "mae": 2.197180150723919, + "max_error": 4.770331701250784, + "r2": 0.4906803215769452, + "rmse": 2.4788229642115733 + }, + "validation": { + "mae": 2.0433020978140237, + "max_error": 4.542349949492104, + "r2": 0.4706197178286933, + "rmse": 2.3626909305950345 + } + }, + "score": 0.0027951707988204035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5128801594385504, + 2.280201040311754 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F + Cl_rear_s*0.282767155498103", + "loss": 4.9887347, + "metrics": { + "blind": { + "mae": 2.203116660248301, + "max_error": 5.233496907093516, + "r2": 0.5644260502169456, + "rmse": 2.5055259637718397 + }, + "train": { + "mae": 1.9617524636365244, + "max_error": 4.854007445872771, + "r2": 0.5864863544001163, + "rmse": 2.2335475649407064 + }, + "validation": { + "mae": 1.787527494342338, + "max_error": 4.052039510647688, + "r2": 0.5929226834530358, + "rmse": 2.0718651489677287 + } + }, + "score": 0.20838531528622783, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5622035689040388, + 3.018398004135726 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 12.471686, + "metrics": { + "blind": { + "mae": 3.2428961154930223, + "max_error": 6.226958494167775, + "r2": 0.40691009585619586, + "rmse": 3.7159234327646655 + }, + "train": { + "mae": 3.0982147504648805, + "max_error": 6.838292457978241, + "r2": 0.3898880700202144, + "rmse": 3.5315273100880353 + }, + "validation": { + "mae": 3.005148292302739, + "max_error": 6.6842275691451505, + "r2": 0.3813697308736541, + "rmse": 3.4249355932022034 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7342512514442205, + 3.3322020899504423 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.17908929289150666, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F*(-1.2758577) + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.857014485189054, + "max_error": 2.2698428205255246, + "r2": 0.8721225301382429, + "rmse": 1.0054850064795287 + }, + "train": { + "mae": 0.854776155699636, + "max_error": 2.7963347805420637, + "r2": 0.8461668152669859, + "rmse": 1.0583893277149572 + }, + "validation": { + "mae": 0.8029596981246041, + "max_error": 2.0283650756907607, + "r2": 0.8706170784457591, + "rmse": 0.9511289455034331 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190564840000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.560605532779184, + "max_error": 4.544629366237793, + "r2": -0.0030287738153189636, + "rmse": 2.816017032899438 + }, + "train": { + "mae": 2.394518314936273, + "max_error": 4.85748550192627, + "r2": -1.9545460805403536e-09, + "rmse": 2.6984876627560244 + }, + "validation": { + "mae": 2.3222467386540027, + "max_error": 4.930033414523926, + "r2": -0.009521599501956413, + "rmse": 2.6567991864362264 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19056484, + -0.19056484 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_F*(-1.238342)", + "loss": 3.3506489, + "metrics": { + "blind": { + "mae": 1.4893296581537059, + "max_error": 4.780798659522901, + "r2": 0.545419079295379, + "rmse": 1.8957636138169245 + }, + "train": { + "mae": 1.437354217477816, + "max_error": 4.852917384267581, + "r2": 0.5398619949270989, + "rmse": 1.8304778966418376 + }, + "validation": { + "mae": 1.4984236397023367, + "max_error": 4.418475551743264, + "r2": 0.5134741083464254, + "rmse": 1.8443948483427763 + } + }, + "score": 0.3881144036916243, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.126405800473411, + 4.624280163215939 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F*(-1.2758577) + Cl_rear_s", + "loss": 1.120188, + "metrics": { + "blind": { + "mae": 0.857014485189054, + "max_error": 2.2698428205255246, + "r2": 0.8721225301382429, + "rmse": 1.0054850064795287 + }, + "train": { + "mae": 0.854776155699636, + "max_error": 2.7963347805420637, + "r2": 0.8461668152669859, + "rmse": 1.0583893277149572 + }, + "validation": { + "mae": 0.8029596981246041, + "max_error": 2.0283650756907607, + "r2": 0.8706170784457591, + "rmse": 0.9511289455034331 + } + }, + "score": 0.5478287501041871, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.5283323869184358, + 2.2327735083643114 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143823330000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465038334269818, + "max_error": 7.235415165021973, + "r2": -0.003516171474931218, + "rmse": 3.803033457485761 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018901899414, + "r2": -7.156275572128834e-12, + "rmse": 3.473363872701565 + }, + "validation": { + "mae": 2.919129533849853, + "max_error": 5.649133022233887, + "r2": -0.011766759591370857, + "rmse": 3.2663538977807964 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382333, + 0.14382333 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 2.5281394128538524, + "max_error": 6.5520814172923565, + "r2": 0.6052144804848902, + "rmse": 3.031706105458745 + }, + "train": { + "mae": 2.6045724394925083, + "max_error": 7.029601292451844, + "r2": 0.5288148181115895, + "rmse": 3.1035133832968236 + }, + "validation": { + "mae": 2.5145889475720766, + "max_error": 6.6223766470793635, + "r2": 0.4931295601776019, + "rmse": 3.100168563587967 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F + Cl_F", + "loss": 9.631797, + "metrics": { + "blind": { + "mae": 2.5281394128538524, + "max_error": 6.5520814172923565, + "r2": 0.6052144804848902, + "rmse": 3.031706105458745 + }, + "train": { + "mae": 2.6045724394925083, + "max_error": 7.029601292451844, + "r2": 0.5288148181115895, + "rmse": 3.1035133832968236 + }, + "validation": { + "mae": 2.5145889475720766, + "max_error": 6.6223766470793635, + "r2": 0.4931295601776019, + "rmse": 3.100168563587967 + } + }, + "score": 0.7517073553692639, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.468502502888441, + 6.664404179900885 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F - Cl_rear_s + 1.1968722", + "loss": 8.678935, + "metrics": { + "blind": { + "mae": 2.6892490512451417, + "max_error": 6.155007798106309, + "r2": 0.5956852150941833, + "rmse": 3.068077335411973 + }, + "train": { + "mae": 2.473942405765389, + "max_error": 6.379296006749284, + "r2": 0.5754284444280373, + "rmse": 2.9460034968485105 + }, + "validation": { + "mae": 2.4228819565861306, + "max_error": 5.707997869232569, + "r2": 0.5541162892769211, + "rmse": 2.907686829538924 + } + }, + "score": 0.03472366249033484, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0057793469187870095, + 1.8059909824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 8.101086, + "metrics": { + "blind": { + "mae": 2.464478864030616, + "max_error": 5.109544320963323, + "r2": -0.05550680533513175, + "rmse": 2.8887442918873947 + }, + "train": { + "mae": 2.396869670327652, + "max_error": 5.629323720932007, + "r2": -0.11250605318905915, + "rmse": 2.8462407208405156 + }, + "validation": { + "mae": 2.406934879278803, + "max_error": 5.637858564266935, + "r2": -0.19806430118381768, + "rmse": 2.8942829465407396 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7558916006237268, + 1.3834001147188246 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190674700000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.5605945467791846, + "max_error": 4.544519506237793, + "r2": -0.0030244747876635447, + "rmse": 2.8160109981034323 + }, + "train": { + "mae": 2.3945220390040696, + "max_error": 4.857595361926269, + "r2": -1.22397647572825e-11, + "rmse": 2.69848766013538 + }, + "validation": { + "mae": 2.3222551894232337, + "max_error": 4.9301432745239255, + "r2": -0.009529709412623433, + "rmse": 2.6568098580062056 + } + }, + "score": 0.10661523587908218, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.1906747, + -0.1906747 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.5940415", + "loss": 1.0782163, + "metrics": { + "blind": { + "mae": 0.850161241606725, + "max_error": 2.3587329040669798, + "r2": 0.8692660135694263, + "rmse": 1.0166532037029286 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369329704360067, + "r2": 0.8519306746531529, + "rmse": 1.0383720394206917 + }, + "validation": { + "mae": 0.8205555672802456, + "max_error": 1.8085101981337144, + "r2": 0.8731428557980092, + "rmse": 0.941799351497302 + } + }, + "score": 0.09437945072597759, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031602824495136, + 0.6086100469187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - 0.65825987", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4283804456968627, + "max_error": 5.338348132539357, + "r2": 0.4326714995178855, + "rmse": 2.859468121172649 + }, + "train": { + "mae": 2.110861760335809, + "max_error": 5.141733483392562, + "r2": 0.47525171779645825, + "rmse": 2.516087820957035 + }, + "validation": { + "mae": 1.9995138309011504, + "max_error": 4.853038231474164, + "r2": 0.4364754820232333, + "rmse": 2.437695422255785 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143823330000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465038334269818, + "max_error": 7.235415165021973, + "r2": -0.003516171474931218, + "rmse": 3.803033457485761 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018901899414, + "r2": -7.156275572128834e-12, + "rmse": 3.473363872701565 + }, + "validation": { + "mae": 2.919129533849853, + "max_error": 5.649133022233887, + "r2": -0.011766759591370857, + "rmse": 3.2663538977807964 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382333, + 0.14382333 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.65825987", + "loss": 6.330698, + "metrics": { + "blind": { + "mae": 2.4283804456968627, + "max_error": 5.338348132539357, + "r2": 0.4326714995178855, + "rmse": 2.859468121172649 + }, + "train": { + "mae": 2.110861760335809, + "max_error": 5.141733483392562, + "r2": 0.47525171779645825, + "rmse": 2.516087820957035 + }, + "validation": { + "mae": 1.9995138309011504, + "max_error": 4.853038231474164, + "r2": 0.4364754820232333, + "rmse": 2.437695422255785 + } + }, + "score": 0.3224182248353804, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.9904619599504425, + 3.0759913814442204 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "-Cd_rear_s + Cd_rear_s - Cl_F", + "loss": 6.230333, + "metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.751181279309094, + "r2": 0.4551374783487877, + "rmse": 2.8022793496604264 + }, + "train": { + "mae": 2.1528677745667726, + "max_error": 5.56093297235202, + "r2": 0.483570939447598, + "rmse": 2.496063440324064 + }, + "validation": { + "mae": 1.955529954665018, + "max_error": 4.690463332692161, + "r2": 0.4751896389217174, + "rmse": 2.3524707592077654 + } + }, + "score": 0.015980716225110724, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.3322020899504423, + 3.7342512514442205 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "(Cl_F - Cl_rear_s)*2.1342423", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.3864668290324642, + "max_error": 4.395499430741707, + "r2": 0.8697120440701003, + "rmse": 1.741640945554997 + }, + "train": { + "mae": 1.7127666895452982, + "max_error": 4.503891117441089, + "r2": 0.8001311824423234, + "rmse": 2.0212979339542274 + }, + "validation": { + "mae": 2.09991304360981, + "max_error": 4.669953336131166, + "r2": 0.694812254461288, + "rmse": 2.4055831410575395 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*2.1342423", + "loss": 4.0856447, + "metrics": { + "blind": { + "mae": 1.3864668290324642, + "max_error": 4.395499430741707, + "r2": 0.8697120440701003, + "rmse": 1.741640945554997 + }, + "train": { + "mae": 1.7127666895452982, + "max_error": 4.503891117441089, + "r2": 0.8001311824423234, + "rmse": 2.0212979339542274 + }, + "validation": { + "mae": 2.09991304360981, + "max_error": 4.669953336131166, + "r2": 0.694812254461288, + "rmse": 2.4055831410575395 + } + }, + "score": 0.2544839540903014, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5667498035945107, + 1.300007071228249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-0.190718080000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.5605902087791845, + "max_error": 4.544476126237793, + "r2": -0.003022778087800937, + "rmse": 2.816008616343259 + }, + "train": { + "mae": 2.394523509512544, + "max_error": 4.857638741926269, + "r2": -1.5818391041477753e-10, + "rmse": 2.6984876603322943 + }, + "validation": { + "mae": 2.3222585263463102, + "max_error": 4.930186654523926, + "r2": -0.009532912692912676, + "rmse": 2.656814073087654 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 17.987856, + "metrics": { + "blind": { + "mae": 3.420140590937808, + "max_error": 8.480937790125608, + "r2": -1.283469403767389, + "rmse": 4.24889677162957 + }, + "train": { + "mae": 3.4292164030960874, + "max_error": 9.36471475660801, + "r2": -1.470236179108332, + "rmse": 4.241209011288094 + }, + "validation": { + "mae": 3.286712185887154, + "max_error": 8.54935321956873, + "r2": -1.3732910635216617, + "rmse": 4.073581633123382 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190718080000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605902087791845, + "max_error": 4.544476126237793, + "r2": -0.003022778087800937, + "rmse": 2.816008616343259 + }, + "train": { + "mae": 2.394523509512544, + "max_error": 4.857638741926269, + "r2": -1.5818391041477753e-10, + "rmse": 2.6984876603322943 + }, + "validation": { + "mae": 2.3222585263463102, + "max_error": 4.930186654523926, + "r2": -0.009532912692912676, + "rmse": 2.656814073087654 + } + }, + "score": 0.9043140275844778, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19071808, + -0.19071808 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cd*0.1070144 - 1*1.094982", + "loss": 7.2811165, + "metrics": { + "blind": { + "mae": 2.5629745894724905, + "max_error": 4.547418777852536, + "r2": -0.0031263155001142184, + "rmse": 2.8161539543793386 + }, + "train": { + "mae": 2.3947611836762106, + "max_error": 4.86986661241126, + "r2": 9.862607569621762e-05, + "rmse": 2.698354586213529 + }, + "validation": { + "mae": 2.319359653524918, + "max_error": 4.96608651439023, + "r2": -0.008498941233796131, + "rmse": 2.6554531597176 + } + }, + "score": 1.972402422148215e-05, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.23617152072858805, + -0.134219583130598 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "0.143794900000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650354912698176, + "max_error": 7.235386735021972, + "r2": -0.0035152834063707505, + "rmse": 3.803031774725038 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596990471899414, + "r2": -3.036104700981923e-11, + "rmse": 3.4733638727418645 + }, + "validation": { + "mae": 2.919133178721648, + "max_error": 5.649161452233887, + "r2": -0.011768659049774755, + "rmse": 3.2663569638532834 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143794900000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650354912698176, + "max_error": 7.235386735021972, + "r2": -0.0035152834063707505, + "rmse": 3.803031774725038 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596990471899414, + "r2": -3.036104700981923e-11, + "rmse": 3.4733638727418645 + }, + "validation": { + "mae": 2.919133178721648, + "max_error": 5.649161452233887, + "r2": -0.011768659049774755, + "rmse": 3.2663569638532834 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.1437949, + 0.1437949 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "0.211101620000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341043966333002, + "max_error": 8.21110162, + "r2": -0.0004771429947836303, + "rmse": 4.826252911332715 + }, + "train": { + "mae": 4.00385535738055, + "max_error": 8.053436367314454, + "r2": -4.614586490703232e-10, + "rmse": 4.521242596481096 + }, + "validation": { + "mae": 3.822336241185191, + "max_error": 7.758711426060791, + "r2": -0.0005095767013552077, + "rmse": 4.355594602246387 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 29.007162, + "metrics": { + "blind": { + "mae": 4.703315188037232, + "max_error": 10.42662987858057, + "r2": -0.3830471215064184, + "rmse": 5.6744657572911805 + }, + "train": { + "mae": 4.492369573981397, + "max_error": 11.288995686918497, + "r2": -0.4190237518379516, + "rmse": 5.385830022702619 + }, + "validation": { + "mae": 4.432045555075045, + "max_error": 10.415710713714361, + "r2": -0.42963386385687596, + "rmse": 5.206540360380409 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.211101620000000", + "loss": 20.44163, + "metrics": { + "blind": { + "mae": 4.341043966333002, + "max_error": 8.21110162, + "r2": -0.0004771429947836303, + "rmse": 4.826252911332715 + }, + "train": { + "mae": 4.00385535738055, + "max_error": 8.053436367314454, + "r2": -4.614586490703232e-10, + "rmse": 4.521242596481096 + }, + "validation": { + "mae": 3.822336241185191, + "max_error": 7.758711426060791, + "r2": -0.0005095767013552077, + "rmse": 4.355594602246387 + } + }, + "score": 0.3499692572598906, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.21110162, + 0.21110162 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084322702431, + "max_error": 7.955952342666569, + "r2": 5.07036883374834e-05, + "rmse": 4.8249795900417 + }, + "train": { + "mae": 4.021479352633649, + "max_error": 7.944620103409397, + "r2": 0.002571261124938218, + "rmse": 4.5154262065066995 + }, + "validation": { + "mae": 3.8142158456757604, + "max_error": 7.4254495275672525, + "r2": 0.007857672647962444, + "rmse": 4.33734347145014 + } + }, + "score": 0.0012872674000603012, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4613608251092955, + 0.44805792092811314 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 6.0, + "expression": "target_Cd*target_Cl*0.011570744", + "loss": 20.382257, + "metrics": { + "blind": { + "mae": 4.33705200504257, + "max_error": 7.9562490740576495, + "r2": 8.858873163630765e-05, + "rmse": 4.824888187261192 + }, + "train": { + "mae": 4.021500652546696, + "max_error": 7.944235978332486, + "r2": 0.0029045592923867547, + "rmse": 4.5146717119911814 + }, + "validation": { + "mae": 3.8143631851545763, + "max_error": 7.426824539270403, + "r2": 0.008041417284998631, + "rmse": 4.336941815113796 + } + }, + "score": 0.00016710273039224546, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.44649041001818424, + 0.48509215413833534 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd", + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "target_Cl*(0.00791813445921*target_Cl**2)", + "loss": 20.368267, + "metrics": { + "blind": { + "mae": 4.336942580714816, + "max_error": 7.999233951297074, + "r2": -0.0026318165013972106, + "rmse": 4.831447136127072 + }, + "train": { + "mae": 4.020412661062827, + "max_error": 7.998477545379793, + "r2": 0.0035892981703051774, + "rmse": 4.5131212575234345 + }, + "validation": { + "mae": 3.8208380922127625, + "max_error": 7.520485466356343, + "r2": 0.0070168086407497166, + "rmse": 4.339181082589505 + } + }, + "score": 0.0006866169647105784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8802582020372663, + 0.8062884026519549 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "-0.190718080000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.5605902087791845, + "max_error": 4.544476126237793, + "r2": -0.003022778087800937, + "rmse": 2.816008616343259 + }, + "train": { + "mae": 2.394523509512544, + "max_error": 4.857638741926269, + "r2": -1.5818391041477753e-10, + "rmse": 2.6984876603322943 + }, + "validation": { + "mae": 2.3222585263463102, + "max_error": 4.930186654523926, + "r2": -0.009532912692912676, + "rmse": 2.656814073087654 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 17.987856, + "metrics": { + "blind": { + "mae": 3.420140590937808, + "max_error": 8.480937790125608, + "r2": -1.283469403767389, + "rmse": 4.24889677162957 + }, + "train": { + "mae": 3.4292164030960874, + "max_error": 9.36471475660801, + "r2": -1.470236179108332, + "rmse": 4.241209011288094 + }, + "validation": { + "mae": 3.286712185887154, + "max_error": 8.54935321956873, + "r2": -1.3732910635216617, + "rmse": 4.073581633123382 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190718080000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605902087791845, + "max_error": 4.544476126237793, + "r2": -0.003022778087800937, + "rmse": 2.816008616343259 + }, + "train": { + "mae": 2.394523509512544, + "max_error": 4.857638741926269, + "r2": -1.5818391041477753e-10, + "rmse": 2.6984876603322943 + }, + "validation": { + "mae": 2.3222585263463102, + "max_error": 4.930186654523926, + "r2": -0.009532912692912676, + "rmse": 2.656814073087654 + } + }, + "score": 0.9043140275844778, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19071808, + -0.19071808 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cd*0.1070144 - 1*1.094982", + "loss": 7.2811165, + "metrics": { + "blind": { + "mae": 2.5629745894724905, + "max_error": 4.547418777852536, + "r2": -0.0031263155001142184, + "rmse": 2.8161539543793386 + }, + "train": { + "mae": 2.3947611836762106, + "max_error": 4.86986661241126, + "r2": 9.862607569621762e-05, + "rmse": 2.698354586213529 + }, + "validation": { + "mae": 2.319359653524918, + "max_error": 4.96608651439023, + "r2": -0.008498941233796131, + "rmse": 2.6554531597176 + } + }, + "score": 1.972402422148215e-05, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.23617152072858805, + -0.134219583130598 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "0.143794900000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650354912698176, + "max_error": 7.235386735021972, + "r2": -0.0035152834063707505, + "rmse": 3.803031774725038 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596990471899414, + "r2": -3.036104700981923e-11, + "rmse": 3.4733638727418645 + }, + "validation": { + "mae": 2.919133178721648, + "max_error": 5.649161452233887, + "r2": -0.011768659049774755, + "rmse": 3.2663569638532834 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143794900000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650354912698176, + "max_error": 7.235386735021972, + "r2": -0.0035152834063707505, + "rmse": 3.803031774725038 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596990471899414, + "r2": -3.036104700981923e-11, + "rmse": 3.4733638727418645 + }, + "validation": { + "mae": 2.919133178721648, + "max_error": 5.649161452233887, + "r2": -0.011768659049774755, + "rmse": 3.2663569638532834 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.1437949, + 0.1437949 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "0.211101620000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341043966333002, + "max_error": 8.21110162, + "r2": -0.0004771429947836303, + "rmse": 4.826252911332715 + }, + "train": { + "mae": 4.00385535738055, + "max_error": 8.053436367314454, + "r2": -4.614586490703232e-10, + "rmse": 4.521242596481096 + }, + "validation": { + "mae": 3.822336241185191, + "max_error": 7.758711426060791, + "r2": -0.0005095767013552077, + "rmse": 4.355594602246387 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 29.007162, + "metrics": { + "blind": { + "mae": 4.703315188037232, + "max_error": 10.42662987858057, + "r2": -0.3830471215064184, + "rmse": 5.6744657572911805 + }, + "train": { + "mae": 4.492369573981397, + "max_error": 11.288995686918497, + "r2": -0.4190237518379516, + "rmse": 5.385830022702619 + }, + "validation": { + "mae": 4.432045555075045, + "max_error": 10.415710713714361, + "r2": -0.42963386385687596, + "rmse": 5.206540360380409 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.211101620000000", + "loss": 20.44163, + "metrics": { + "blind": { + "mae": 4.341043966333002, + "max_error": 8.21110162, + "r2": -0.0004771429947836303, + "rmse": 4.826252911332715 + }, + "train": { + "mae": 4.00385535738055, + "max_error": 8.053436367314454, + "r2": -4.614586490703232e-10, + "rmse": 4.521242596481096 + }, + "validation": { + "mae": 3.822336241185191, + "max_error": 7.758711426060791, + "r2": -0.0005095767013552077, + "rmse": 4.355594602246387 + } + }, + "score": 0.3499692572598906, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.21110162, + 0.21110162 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084322702431, + "max_error": 7.955952342666569, + "r2": 5.07036883374834e-05, + "rmse": 4.8249795900417 + }, + "train": { + "mae": 4.021479352633649, + "max_error": 7.944620103409397, + "r2": 0.002571261124938218, + "rmse": 4.5154262065066995 + }, + "validation": { + "mae": 3.8142158456757604, + "max_error": 7.4254495275672525, + "r2": 0.007857672647962444, + "rmse": 4.33734347145014 + } + }, + "score": 0.0012872674000603012, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4613608251092955, + 0.44805792092811314 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 6.0, + "expression": "target_Cd*target_Cl*0.011570744", + "loss": 20.382257, + "metrics": { + "blind": { + "mae": 4.33705200504257, + "max_error": 7.9562490740576495, + "r2": 8.858873163630765e-05, + "rmse": 4.824888187261192 + }, + "train": { + "mae": 4.021500652546696, + "max_error": 7.944235978332486, + "r2": 0.0029045592923867547, + "rmse": 4.5146717119911814 + }, + "validation": { + "mae": 3.8143631851545763, + "max_error": 7.426824539270403, + "r2": 0.008041417284998631, + "rmse": 4.336941815113796 + } + }, + "score": 0.00016710273039224546, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.44649041001818424, + 0.48509215413833534 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd", + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "target_Cl*(0.00791813445921*target_Cl**2)", + "loss": 20.368267, + "metrics": { + "blind": { + "mae": 4.336942580714816, + "max_error": 7.999233951297074, + "r2": -0.0026318165013972106, + "rmse": 4.831447136127072 + }, + "train": { + "mae": 4.020412661062827, + "max_error": 7.998477545379793, + "r2": 0.0035892981703051774, + "rmse": 4.5131212575234345 + }, + "validation": { + "mae": 3.8208380922127625, + "max_error": 7.520485466356343, + "r2": 0.0070168086407497166, + "rmse": 4.339181082589505 + } + }, + "score": 0.0006866169647105784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8802582020372663, + 0.8062884026519549 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "target_Cd*0.11249822 - 1.1412257", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.563106192234203, + "max_error": 4.547663751727756, + "r2": -0.003139516345064708, + "rmse": 2.8161724841939937 + }, + "train": { + "mae": 2.394780821488774, + "max_error": 4.871264835896135, + "r2": 9.859209540674652e-05, + "rmse": 2.6983546320634857 + }, + "validation": { + "mae": 2.319203859668912, + "max_error": 4.967831976767608, + "r2": -0.008442495468560018, + "rmse": 2.6553788457164123 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190636110000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560598405779184, + "max_error": 4.544558096237793, + "r2": -0.0030259845387972106, + "rmse": 2.8160131174306793 + }, + "train": { + "mae": 2.394520730868476, + "max_error": 4.857556771926269, + "r2": -3.168099116379608e-10, + "rmse": 2.6984876605463195 + }, + "validation": { + "mae": 2.322252220961695, + "max_error": 4.930104684523926, + "r2": -0.009526860289501782, + "rmse": 2.656806108941831 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19063611, + -0.19063611 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cd*0.11249822 - 1.1412257", + "loss": 7.281117, + "metrics": { + "blind": { + "mae": 2.563106192234203, + "max_error": 4.547663751727756, + "r2": -0.003139516345064708, + "rmse": 2.8161724841939937 + }, + "train": { + "mae": 2.394780821488774, + "max_error": 4.871264835896135, + "r2": 9.859209540674652e-05, + "rmse": 2.6983546320634857 + }, + "validation": { + "mae": 2.319203859668912, + "max_error": 4.967831976767608, + "r2": -0.008442495468560018, + "rmse": 2.6553788457164123 + } + }, + "score": 1.9721276306668917e-05, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2384065444902672, + -0.1312302064897275 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s0-20260718", + "used_features": [ + "target_Cd" + ] + }, + { + "expression": "0.143781450000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650341462698173, + "max_error": 7.235373285021972, + "r2": -0.0035148633074963964, + "rmse": 3.80303097869853 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977021899414, + "r2": -8.802913953331881e-11, + "rmse": 3.4733638728420155 + }, + "validation": { + "mae": 2.9191349030806224, + "max_error": 5.649174902233887, + "r2": -0.011769557721395651, + "rmse": 3.266358414472271 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143781450000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650341462698173, + "max_error": 7.235373285021972, + "r2": -0.0035148633074963964, + "rmse": 3.80303097869853 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977021899414, + "r2": -8.802913953331881e-11, + "rmse": 3.4733638728420155 + }, + "validation": { + "mae": 2.9191349030806224, + "max_error": 5.649174902233887, + "r2": -0.011769557721395651, + "rmse": 3.266358414472271 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14378145, + 0.14378145 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 6.0, + "expression": "(target_Cd + target_Cl)*0.019962905", + "loss": 12.064181, + "metrics": { + "blind": { + "mae": 3.467987732962052, + "max_error": 7.207015878762938, + "r2": -0.002527038726331199, + "rmse": 3.8011587331674255 + }, + "train": { + "mae": 3.0925223627243033, + "max_error": 6.5629320779512925, + "r2": 6.355047854067486e-06, + "rmse": 3.4733528359747896 + }, + "validation": { + "mae": 2.9141320777715545, + "max_error": 5.656525901716321, + "r2": -0.008005803121609034, + "rmse": 3.2602773726727285 + } + }, + "score": 1.5334603535902882e-06, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.06421746854784667, + 0.2724453812748636 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd", + "target_Cl" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "0.210873400000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341055377333002, + "max_error": 8.2108734, + "r2": -0.000479211570497462, + "rmse": 4.826257900684281 + }, + "train": { + "mae": 4.003859225516143, + "max_error": 8.053208147314454, + "r2": -8.407494700435336e-10, + "rmse": 4.521242597338528 + }, + "validation": { + "mae": 3.8223303893903195, + "max_error": 7.758483206060791, + "r2": -0.0005072132470955726, + "rmse": 4.355589457740559 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 88.36215, + "metrics": { + "blind": { + "mae": 8.155772847495973, + "max_error": 16.236602880060673, + "r2": -2.850661911270331, + "rmse": 9.468347433098586 + }, + "train": { + "mae": 8.23939423023139, + "max_error": 16.67884999513626, + "r2": -3.3226561478431798, + "rmse": 9.40011476020677 + }, + "validation": { + "mae": 8.36223486237801, + "max_error": 16.384586058557034, + "r2": -3.7006741484409345, + "rmse": 9.440976125155151 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 8.025186136364937, + 8.977879770100117 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "0.210873400000000", + "loss": 20.441631, + "metrics": { + "blind": { + "mae": 4.341055377333002, + "max_error": 8.2108734, + "r2": -0.000479211570497462, + "rmse": 4.826257900684281 + }, + "train": { + "mae": 4.003859225516143, + "max_error": 8.053208147314454, + "r2": -8.407494700435336e-10, + "rmse": 4.521242597338528 + }, + "validation": { + "mae": 3.8223303893903195, + "max_error": 7.758483206060791, + "r2": -0.0005072132470955726, + "rmse": 4.355589457740559 + } + }, + "score": 1.4638701538603016, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.2108734, + 0.2108734 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595207", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084360977709, + "max_error": 7.955951392394025, + "r2": 5.070442707777456e-05, + "rmse": 4.824979588259406 + }, + "train": { + "mae": 4.021479580244513, + "max_error": 7.944618908658111, + "r2": 0.0025712611291425214, + "rmse": 4.5154262064971835 + }, + "validation": { + "mae": 3.81421578726415, + "max_error": 7.42544724964383, + "r2": 0.0078577428728549, + "rmse": 4.337343317949237 + } + }, + "score": 0.0012872918599486618, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4613707783860853, + 0.4480675872115558 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "target_Cl*0.06125333 + 0.25349393", + "loss": 20.350576, + "metrics": { + "blind": { + "mae": 4.336442764877329, + "max_error": 8.225374433487529, + "r2": 0.002837113121100465, + "rmse": 4.818252375162919 + }, + "train": { + "mae": 4.0047746911255, + "max_error": 7.835732450443947, + "r2": 0.004454578752060678, + "rmse": 4.511161240260129 + }, + "validation": { + "mae": 3.8216947665840983, + "max_error": 7.54729407402532, + "r2": 0.005645752677852389, + "rmse": 4.342175699197213 + } + }, + "score": 0.000629918932133942, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.041033291151557794, + 0.5395287365630392 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3227209", + "loss": 1.0684577, + "metrics": { + "blind": { + "mae": 0.8845928930637843, + "max_error": 1.8622569873317403, + "r2": 0.8788041057066416, + "rmse": 0.9788644027068699 + }, + "train": { + "mae": 0.892192103079984, + "max_error": 2.714166815256423, + "r2": 0.8532708205488431, + "rmse": 1.0336623095038426 + }, + "validation": { + "mae": 0.7528927060089874, + "max_error": 2.1298423058250737, + "r2": 0.8836777623653503, + "rmse": 0.9018458182118712 + } + }, + "score": 0.09741008236744514, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8056941441285255, + 1.5907723365268107 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.7256862", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7272594113406761, + "max_error": 1.6452022395889214, + "r2": 0.9474836249589981, + "rmse": 0.8699921400740901 + }, + "train": { + "mae": 0.7722555983393125, + "max_error": 2.9518265680842175, + "r2": 0.9236495175368439, + "rmse": 0.9597457014054844 + }, + "validation": { + "mae": 0.691179485238551, + "max_error": 2.4167119088150573, + "r2": 0.9267276401052396, + "rmse": 0.879008598230566 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 9.464525, + "metrics": { + "blind": { + "mae": 2.871323101643088, + "max_error": 6.173607891763822, + "r2": 0.2597775952635182, + "rmse": 3.2662473579754896 + }, + "train": { + "mae": 2.657563481553691, + "max_error": 6.2327276398427784, + "r2": 0.21549047083446882, + "rmse": 3.076446693638971 + }, + "validation": { + "mae": 2.5147417782239083, + "max_error": 5.5459857085952535, + "r2": 0.21066761018846647, + "rmse": 2.8850476854011875 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 0.5740708802525868, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.7256862", + "loss": 0.92111176, + "metrics": { + "blind": { + "mae": 0.7272594113406761, + "max_error": 1.6452022395889214, + "r2": 0.9474836249589981, + "rmse": 0.8699921400740901 + }, + "train": { + "mae": 0.7722555983393125, + "max_error": 2.9518265680842175, + "r2": 0.9236495175368439, + "rmse": 0.9597457014054844 + }, + "validation": { + "mae": 0.691179485238551, + "max_error": 2.4167119088150573, + "r2": 0.9267276401052396, + "rmse": 0.879008598230566 + } + }, + "score": 0.6214939771034674, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0511478770339275, + 2.0753991779264034 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_rear_s*Cl_F - Cl_tot", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.2507785211212867, + "max_error": 4.001777603933579, + "r2": 0.8901939245008494, + "rmse": 1.5988940119791073 + }, + "train": { + "mae": 1.5885010423464567, + "max_error": 4.5155048168893925, + "r2": 0.818355048704915, + "rmse": 1.9269456978712451 + }, + "validation": { + "mae": 1.9290069916072292, + "max_error": 4.776706961830401, + "r2": 0.7403310088912097, + "rmse": 2.218946704087503 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 26.876112, + "metrics": { + "blind": { + "mae": 4.9802059647059425, + "max_error": 9.474022333975881, + "r2": -0.3383869989322399, + "rmse": 5.582096572166272 + }, + "train": { + "mae": 4.606637572187506, + "max_error": 9.147010634187609, + "r2": -0.3147731660934172, + "rmse": 5.184217650919956 + }, + "validation": { + "mae": 4.400175814454717, + "max_error": 8.548744691303, + "r2": -0.3046091881710049, + "rmse": 4.97367086645555 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.2744606942037784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_s*Cl_F - Cl_tot", + "loss": 3.7131195, + "metrics": { + "blind": { + "mae": 1.2507785211212867, + "max_error": 4.001777603933579, + "r2": 0.8901939245008494, + "rmse": 1.5988940119791073 + }, + "train": { + "mae": 1.5885010423464567, + "max_error": 4.5155048168893925, + "r2": 0.818355048704915, + "rmse": 1.9269456978712451 + }, + "validation": { + "mae": 1.9290069916072292, + "max_error": 4.776706961830401, + "r2": 0.7403310088912097, + "rmse": 2.218946704087503 + } + }, + "score": 0.4267050051828752, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.232171973526933, + 11.187869097014694 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_tot" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3227209", + "loss": 1.0684577, + "metrics": { + "blind": { + "mae": 0.8845928930637843, + "max_error": 1.8622569873317403, + "r2": 0.8788041057066416, + "rmse": 0.9788644027068699 + }, + "train": { + "mae": 0.892192103079984, + "max_error": 2.714166815256423, + "r2": 0.8532708205488431, + "rmse": 1.0336623095038426 + }, + "validation": { + "mae": 0.7528927060089874, + "max_error": 2.1298423058250737, + "r2": 0.8836777623653503, + "rmse": 0.9018458182118712 + } + }, + "score": 0.09741008236744514, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8056941441285255, + 1.5907723365268107 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.7256862", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7272594113406761, + "max_error": 1.6452022395889214, + "r2": 0.9474836249589981, + "rmse": 0.8699921400740901 + }, + "train": { + "mae": 0.7722555983393125, + "max_error": 2.9518265680842175, + "r2": 0.9236495175368439, + "rmse": 0.9597457014054844 + }, + "validation": { + "mae": 0.691179485238551, + "max_error": 2.4167119088150573, + "r2": 0.9267276401052396, + "rmse": 0.879008598230566 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 9.464525, + "metrics": { + "blind": { + "mae": 2.871323101643088, + "max_error": 6.173607891763822, + "r2": 0.2597775952635182, + "rmse": 3.2662473579754896 + }, + "train": { + "mae": 2.657563481553691, + "max_error": 6.2327276398427784, + "r2": 0.21549047083446882, + "rmse": 3.076446693638971 + }, + "validation": { + "mae": 2.5147417782239083, + "max_error": 5.5459857085952535, + "r2": 0.21066761018846647, + "rmse": 2.8850476854011875 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 0.5740708802525868, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.7256862", + "loss": 0.92111176, + "metrics": { + "blind": { + "mae": 0.7272594113406761, + "max_error": 1.6452022395889214, + "r2": 0.9474836249589981, + "rmse": 0.8699921400740901 + }, + "train": { + "mae": 0.7722555983393125, + "max_error": 2.9518265680842175, + "r2": 0.9236495175368439, + "rmse": 0.9597457014054844 + }, + "validation": { + "mae": 0.691179485238551, + "max_error": 2.4167119088150573, + "r2": 0.9267276401052396, + "rmse": 0.879008598230566 + } + }, + "score": 0.6214939771034674, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0511478770339275, + 2.0753991779264034 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_rear_s*Cl_F - Cl_tot", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.2507785211212867, + "max_error": 4.001777603933579, + "r2": 0.8901939245008494, + "rmse": 1.5988940119791073 + }, + "train": { + "mae": 1.5885010423464567, + "max_error": 4.5155048168893925, + "r2": 0.818355048704915, + "rmse": 1.9269456978712451 + }, + "validation": { + "mae": 1.9290069916072292, + "max_error": 4.776706961830401, + "r2": 0.7403310088912097, + "rmse": 2.218946704087503 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 26.876112, + "metrics": { + "blind": { + "mae": 4.9802059647059425, + "max_error": 9.474022333975881, + "r2": -0.3383869989322399, + "rmse": 5.582096572166272 + }, + "train": { + "mae": 4.606637572187506, + "max_error": 9.147010634187609, + "r2": -0.3147731660934172, + "rmse": 5.184217650919956 + }, + "validation": { + "mae": 4.400175814454717, + "max_error": 8.548744691303, + "r2": -0.3046091881710049, + "rmse": 4.97367086645555 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.2744606942037784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_s*Cl_F - Cl_tot", + "loss": 3.7131195, + "metrics": { + "blind": { + "mae": 1.2507785211212867, + "max_error": 4.001777603933579, + "r2": 0.8901939245008494, + "rmse": 1.5988940119791073 + }, + "train": { + "mae": 1.5885010423464567, + "max_error": 4.5155048168893925, + "r2": 0.818355048704915, + "rmse": 1.9269456978712451 + }, + "validation": { + "mae": 1.9290069916072292, + "max_error": 4.776706961830401, + "r2": 0.7403310088912097, + "rmse": 2.218946704087503 + } + }, + "score": 0.4267050051828752, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.232171973526933, + 11.187869097014694 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_tot" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_tot" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190640510000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560597965779184, + "max_error": 4.544553696237793, + "r2": -0.0030258123791890856, + "rmse": 2.816012875760103 + }, + "train": { + "mae": 2.394520880021019, + "max_error": 4.857561171926269, + "r2": -2.614242156084856e-10, + "rmse": 2.6984876604715904 + }, + "validation": { + "mae": 2.3222525594232333, + "max_error": 4.9301090845239255, + "r2": -0.009527185122657045, + "rmse": 2.6568065363790176 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19064051, + -0.19064051 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3173821", + "loss": 1.068355, + "metrics": { + "blind": { + "mae": 0.8853837195491373, + "max_error": 1.84601708166291, + "r2": 0.8786934187824809, + "rmse": 0.9793112939306801 + }, + "train": { + "mae": 0.8920983145845278, + "max_error": 2.714090672644227, + "r2": 0.8532849258455403, + "rmse": 1.0336126245535358 + }, + "validation": { + "mae": 0.7538964954250822, + "max_error": 2.1248774382582303, + "r2": 0.8837235196971325, + "rmse": 0.9016684225645107 + } + }, + "score": 0.09744212385929855, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8024421807727831, + 1.5843516204481203 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.761219", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7112898397896394, + "max_error": 1.75328819900853, + "r2": 0.9499322441125659, + "rmse": 0.8494679963367596 + }, + "train": { + "mae": 0.7708467088268184, + "max_error": 2.9523333411812853, + "r2": 0.9240227382855046, + "rmse": 0.9573970861084576 + }, + "validation": { + "mae": 0.6946843343032865, + "max_error": 2.4497559723272935, + "r2": 0.9249612834128556, + "rmse": 0.8895405133677108 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 20.969328, + "metrics": { + "blind": { + "mae": 4.191663545393385, + "max_error": 9.973199748899788, + "r2": -0.7973199585785216, + "rmse": 5.089564903194417 + }, + "train": { + "mae": 3.7302562353216997, + "max_error": 8.877923464402556, + "r2": -0.7381366570431249, + "rmse": 4.579227732129818 + }, + "validation": { + "mae": 3.466056225522875, + "max_error": 8.178853660821915, + "r2": -0.7269867739059013, + "rmse": 4.267441137594878 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.739195198751986, + 5.0361244939267635 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.144155530000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465071554269817, + "max_error": 7.235747365021973, + "r2": -0.0035265567263156328, + "rmse": 3.803053135970981 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.597351101899414, + "r2": -9.666281330922288e-09, + "rmse": 3.473363889476393 + }, + "validation": { + "mae": 2.9190869441062635, + "max_error": 5.648800822233887, + "r2": -0.011744576084885328, + "rmse": 3.2663180893400816 + } + }, + "score": 0.5528138503105506, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14415553, + 0.14415553 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.761219", + "loss": 0.9166092, + "metrics": { + "blind": { + "mae": 0.7112898397896394, + "max_error": 1.75328819900853, + "r2": 0.9499322441125659, + "rmse": 0.8494679963367596 + }, + "train": { + "mae": 0.7708467088268184, + "max_error": 2.9523333411812853, + "r2": 0.9240227382855046, + "rmse": 0.9573970861084576 + }, + "validation": { + "mae": 0.6946843343032865, + "max_error": 2.4497559723272935, + "r2": 0.9249612834128556, + "rmse": 0.8895405133677108 + } + }, + "score": 0.62639414324129, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.07279157290695, + 2.118132754812759 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190640510000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560597965779184, + "max_error": 4.544553696237793, + "r2": -0.0030258123791890856, + "rmse": 2.816012875760103 + }, + "train": { + "mae": 2.394520880021019, + "max_error": 4.857561171926269, + "r2": -2.614242156084856e-10, + "rmse": 2.6984876604715904 + }, + "validation": { + "mae": 2.3222525594232333, + "max_error": 4.9301090845239255, + "r2": -0.009527185122657045, + "rmse": 2.6568065363790176 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19064051, + -0.19064051 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3173821", + "loss": 1.068355, + "metrics": { + "blind": { + "mae": 0.8853837195491373, + "max_error": 1.84601708166291, + "r2": 0.8786934187824809, + "rmse": 0.9793112939306801 + }, + "train": { + "mae": 0.8920983145845278, + "max_error": 2.714090672644227, + "r2": 0.8532849258455403, + "rmse": 1.0336126245535358 + }, + "validation": { + "mae": 0.7538964954250822, + "max_error": 2.1248774382582303, + "r2": 0.8837235196971325, + "rmse": 0.9016684225645107 + } + }, + "score": 0.09744212385929855, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8024421807727831, + 1.5843516204481203 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.761219", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7112898397896394, + "max_error": 1.75328819900853, + "r2": 0.9499322441125659, + "rmse": 0.8494679963367596 + }, + "train": { + "mae": 0.7708467088268184, + "max_error": 2.9523333411812853, + "r2": 0.9240227382855046, + "rmse": 0.9573970861084576 + }, + "validation": { + "mae": 0.6946843343032865, + "max_error": 2.4497559723272935, + "r2": 0.9249612834128556, + "rmse": 0.8895405133677108 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 20.969328, + "metrics": { + "blind": { + "mae": 4.191663545393385, + "max_error": 9.973199748899788, + "r2": -0.7973199585785216, + "rmse": 5.089564903194417 + }, + "train": { + "mae": 3.7302562353216997, + "max_error": 8.877923464402556, + "r2": -0.7381366570431249, + "rmse": 4.579227732129818 + }, + "validation": { + "mae": 3.466056225522875, + "max_error": 8.178853660821915, + "r2": -0.7269867739059013, + "rmse": 4.267441137594878 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.739195198751986, + 5.0361244939267635 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.144155530000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465071554269817, + "max_error": 7.235747365021973, + "r2": -0.0035265567263156328, + "rmse": 3.803053135970981 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.597351101899414, + "r2": -9.666281330922288e-09, + "rmse": 3.473363889476393 + }, + "validation": { + "mae": 2.9190869441062635, + "max_error": 5.648800822233887, + "r2": -0.011744576084885328, + "rmse": 3.2663180893400816 + } + }, + "score": 0.5528138503105506, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14415553, + 0.14415553 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.761219", + "loss": 0.9166092, + "metrics": { + "blind": { + "mae": 0.7112898397896394, + "max_error": 1.75328819900853, + "r2": 0.9499322441125659, + "rmse": 0.8494679963367596 + }, + "train": { + "mae": 0.7708467088268184, + "max_error": 2.9523333411812853, + "r2": 0.9240227382855046, + "rmse": 0.9573970861084576 + }, + "validation": { + "mae": 0.6946843343032865, + "max_error": 2.4497559723272935, + "r2": 0.9249612834128556, + "rmse": 0.8895405133677108 + } + }, + "score": 0.62639414324129, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.07279157290695, + 2.118132754812759 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 12.82839, + "metrics": { + "blind": { + "mae": 3.066237190621905, + "max_error": 7.920327190309763, + "r2": -0.8447311707786469, + "rmse": 3.818960131678844 + }, + "train": { + "mae": 2.8051718414240217, + "max_error": 8.15645425580442, + "r2": -0.7616972959141541, + "rmse": 3.581674214259532 + }, + "validation": { + "mae": 2.5296275901297727, + "max_error": 6.603535659611225, + "r2": -0.5204823899841422, + "rmse": 3.2605556663091 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.2752949260175228, + 3.448729170486331 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190555840000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560606432779184, + "max_error": 4.544638366237793, + "r2": -0.003029126137490401, + "rmse": 2.8160175274740573 + }, + "train": { + "mae": 2.3945180098515273, + "max_error": 4.85747650192627, + "r2": -2.2605695093602662e-09, + "rmse": 2.698487663168925 + }, + "validation": { + "mae": 2.3222460463463106, + "max_error": 4.930024414523926, + "r2": -0.009520935271226216, + "rmse": 2.6567983123945242 + } + }, + "score": 0.5662777927275988, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19055584, + -0.19055584 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3173803", + "loss": 1.068355, + "metrics": { + "blind": { + "mae": 0.8853839861797794, + "max_error": 1.8460116063069867, + "r2": 0.8786933766838456, + "rmse": 0.9793114638623729 + }, + "train": { + "mae": 0.892098329365764, + "max_error": 2.714090646972409, + "r2": 0.8532849258471034, + "rmse": 1.0336126245480297 + }, + "validation": { + "mae": 0.7538968338571171, + "max_error": 2.124875764331202, + "r2": 0.883723530183266, + "rmse": 0.9016683819070377 + } + }, + "score": 0.09744212385929855, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8024410843589753, + 1.5843494556753357 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 12.77347, + "metrics": { + "blind": { + "mae": 3.4994011299560723, + "max_error": 7.357363823801279, + "r2": -0.083406320608441, + "rmse": 3.9515150550024125 + }, + "train": { + "mae": 3.085396948542978, + "max_error": 7.221683262847364, + "r2": -0.05878635781204378, + "rmse": 3.573999202135012 + }, + "validation": { + "mae": 2.8812344467425226, + "max_error": 6.01305794948712, + "r2": -0.06482280799802931, + "rmse": 3.3509018413431946 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0987235143838916, + 2.9128919122740626 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "0.143808250000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650368262698175, + "max_error": 7.235400085021973, + "r2": -0.003515700406657718, + "rmse": 3.803032564880008 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597003821899414, + "r2": -2.7771118737973666e-12, + "rmse": 3.47336387269396 + }, + "validation": { + "mae": 2.9191314671831865, + "max_error": 5.6491481022338865, + "r2": -0.011767767093656012, + "rmse": 3.2663555240736972 + } + }, + "score": 0.05712341544089163, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14380825, + 0.14380825 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(Cl_F - Cl_rear_s)*2.134053", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.386519629147577, + "max_error": 4.395785460702027, + "r2": 0.8697027353832361, + "rmse": 1.7417031619759435 + }, + "train": { + "mae": 1.7127707013575593, + "max_error": 4.504063370458606, + "r2": 0.8001311886922295, + "rmse": 2.021297902351192 + }, + "validation": { + "mae": 2.099846207439779, + "max_error": 4.670135654499427, + "r2": 0.6948271358959908, + "rmse": 2.4055244903329154 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*2.134053", + "loss": 4.0856447, + "metrics": { + "blind": { + "mae": 1.386519629147577, + "max_error": 4.395785460702027, + "r2": 0.8697027353832361, + "rmse": 1.7417031619759435 + }, + "train": { + "mae": 1.7127707013575593, + "max_error": 4.504063370458606, + "r2": 0.8001311886922295, + "rmse": 2.021297902351192 + }, + "validation": { + "mae": 2.099846207439779, + "max_error": 4.670135654499427, + "r2": 0.6948271358959908, + "rmse": 2.4055244903329154 + } + }, + "score": 0.2544839540903014, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5665221416566792, + 1.2998917650427328 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "target_Cd*0.11249822 - 1.1412257", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.563106192234203, + "max_error": 4.547663751727756, + "r2": -0.003139516345064708, + "rmse": 2.8161724841939937 + }, + "train": { + "mae": 2.394780821488774, + "max_error": 4.871264835896135, + "r2": 9.859209540674652e-05, + "rmse": 2.6983546320634857 + }, + "validation": { + "mae": 2.319203859668912, + "max_error": 4.967831976767608, + "r2": -0.008442495468560018, + "rmse": 2.6553788457164123 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190636110000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560598405779184, + "max_error": 4.544558096237793, + "r2": -0.0030259845387972106, + "rmse": 2.8160131174306793 + }, + "train": { + "mae": 2.394520730868476, + "max_error": 4.857556771926269, + "r2": -3.168099116379608e-10, + "rmse": 2.6984876605463195 + }, + "validation": { + "mae": 2.322252220961695, + "max_error": 4.930104684523926, + "r2": -0.009526860289501782, + "rmse": 2.656806108941831 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19063611, + -0.19063611 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "target_Cd*0.11249822 - 1.1412257", + "loss": 7.281117, + "metrics": { + "blind": { + "mae": 2.563106192234203, + "max_error": 4.547663751727756, + "r2": -0.003139516345064708, + "rmse": 2.8161724841939937 + }, + "train": { + "mae": 2.394780821488774, + "max_error": 4.871264835896135, + "r2": 9.859209540674652e-05, + "rmse": 2.6983546320634857 + }, + "validation": { + "mae": 2.319203859668912, + "max_error": 4.967831976767608, + "r2": -0.008442495468560018, + "rmse": 2.6553788457164123 + } + }, + "score": 1.9721276306668917e-05, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2384065444902672, + -0.1312302064897275 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s0-20260718", + "used_features": [ + "target_Cd" + ] + }, + { + "expression": "0.143781450000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650341462698173, + "max_error": 7.235373285021972, + "r2": -0.0035148633074963964, + "rmse": 3.80303097869853 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977021899414, + "r2": -8.802913953331881e-11, + "rmse": 3.4733638728420155 + }, + "validation": { + "mae": 2.9191349030806224, + "max_error": 5.649174902233887, + "r2": -0.011769557721395651, + "rmse": 3.266358414472271 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143781450000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650341462698173, + "max_error": 7.235373285021972, + "r2": -0.0035148633074963964, + "rmse": 3.80303097869853 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977021899414, + "r2": -8.802913953331881e-11, + "rmse": 3.4733638728420155 + }, + "validation": { + "mae": 2.9191349030806224, + "max_error": 5.649174902233887, + "r2": -0.011769557721395651, + "rmse": 3.266358414472271 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14378145, + 0.14378145 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 6.0, + "expression": "(target_Cd + target_Cl)*0.019962905", + "loss": 12.064181, + "metrics": { + "blind": { + "mae": 3.467987732962052, + "max_error": 7.207015878762938, + "r2": -0.002527038726331199, + "rmse": 3.8011587331674255 + }, + "train": { + "mae": 3.0925223627243033, + "max_error": 6.5629320779512925, + "r2": 6.355047854067486e-06, + "rmse": 3.4733528359747896 + }, + "validation": { + "mae": 2.9141320777715545, + "max_error": 5.656525901716321, + "r2": -0.008005803121609034, + "rmse": 3.2602773726727285 + } + }, + "score": 1.5334603535902882e-06, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.06421746854784667, + 0.2724453812748636 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd", + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "0.210873400000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341055377333002, + "max_error": 8.2108734, + "r2": -0.000479211570497462, + "rmse": 4.826257900684281 + }, + "train": { + "mae": 4.003859225516143, + "max_error": 8.053208147314454, + "r2": -8.407494700435336e-10, + "rmse": 4.521242597338528 + }, + "validation": { + "mae": 3.8223303893903195, + "max_error": 7.758483206060791, + "r2": -0.0005072132470955726, + "rmse": 4.355589457740559 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 88.36215, + "metrics": { + "blind": { + "mae": 8.155772847495973, + "max_error": 16.236602880060673, + "r2": -2.850661911270331, + "rmse": 9.468347433098586 + }, + "train": { + "mae": 8.23939423023139, + "max_error": 16.67884999513626, + "r2": -3.3226561478431798, + "rmse": 9.40011476020677 + }, + "validation": { + "mae": 8.36223486237801, + "max_error": 16.384586058557034, + "r2": -3.7006741484409345, + "rmse": 9.440976125155151 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 8.025186136364937, + 8.977879770100117 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "0.210873400000000", + "loss": 20.441631, + "metrics": { + "blind": { + "mae": 4.341055377333002, + "max_error": 8.2108734, + "r2": -0.000479211570497462, + "rmse": 4.826257900684281 + }, + "train": { + "mae": 4.003859225516143, + "max_error": 8.053208147314454, + "r2": -8.407494700435336e-10, + "rmse": 4.521242597338528 + }, + "validation": { + "mae": 3.8223303893903195, + "max_error": 7.758483206060791, + "r2": -0.0005072132470955726, + "rmse": 4.355589457740559 + } + }, + "score": 1.4638701538603016, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.2108734, + 0.2108734 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595207", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084360977709, + "max_error": 7.955951392394025, + "r2": 5.070442707777456e-05, + "rmse": 4.824979588259406 + }, + "train": { + "mae": 4.021479580244513, + "max_error": 7.944618908658111, + "r2": 0.0025712611291425214, + "rmse": 4.5154262064971835 + }, + "validation": { + "mae": 3.81421578726415, + "max_error": 7.42544724964383, + "r2": 0.0078577428728549, + "rmse": 4.337343317949237 + } + }, + "score": 0.0012872918599486618, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4613707783860853, + 0.4480675872115558 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "target_Cl*0.06125333 + 0.25349393", + "loss": 20.350576, + "metrics": { + "blind": { + "mae": 4.336442764877329, + "max_error": 8.225374433487529, + "r2": 0.002837113121100465, + "rmse": 4.818252375162919 + }, + "train": { + "mae": 4.0047746911255, + "max_error": 7.835732450443947, + "r2": 0.004454578752060678, + "rmse": 4.511161240260129 + }, + "validation": { + "mae": 3.8216947665840983, + "max_error": 7.54729407402532, + "r2": 0.005645752677852389, + "rmse": 4.342175699197213 + } + }, + "score": 0.000629918932133942, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.041033291151557794, + 0.5395287365630392 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.5940359", + "loss": 1.0782163, + "metrics": { + "blind": { + "mae": 0.8501618016067249, + "max_error": 2.3587273040669796, + "r2": 0.8692659810583601, + "rmse": 1.0166533301141187 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369273704360065, + "r2": 0.85193067464549, + "rmse": 1.0383720394475608 + }, + "validation": { + "mae": 0.8205559980494763, + "max_error": 1.8085045981337142, + "r2": 0.8731429606539692, + "rmse": 0.9417989622669747 + } + }, + "score": 0.09437945072597759, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031546824495136, + 0.6086156469187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143823130000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650383142698176, + "max_error": 7.235414965021973, + "r2": -0.0035161652271349375, + "rmse": 3.8030334456470984 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018701899414, + "r2": -6.851408329566766e-12, + "rmse": 3.4733638727010354 + }, + "validation": { + "mae": 2.919129559490879, + "max_error": 5.649133222233886, + "r2": -0.011766772953188065, + "rmse": 3.2663539193492177 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382313, + 0.14382313 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.115698084", + "loss": 2.9557192, + "metrics": { + "blind": { + "mae": 1.7263071365276885, + "max_error": 3.8047034807992492, + "r2": 0.751535860354166, + "rmse": 1.8923428203529682 + }, + "train": { + "mae": 1.5402657343754362, + "max_error": 3.1006026428682123, + "r2": 0.7550019491767872, + "rmse": 1.719220564586204 + }, + "validation": { + "mae": 1.402198580778, + "max_error": 2.5399597845413115, + "r2": 0.7754565244303062, + "rmse": 1.5387683817263578 + } + }, + "score": 0.00522227755513013, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7248168664495137, + 1.0869534629187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.9684213766983452, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.9878341766104959, + "max_error": 7.255011921150796, + "r2": 0.7007762883494801, + "rmse": 2.6393956336404947 + }, + "train": { + "mae": 2.0053258342064604, + "max_error": 7.003711742062352, + "r2": 0.7008142713728753, + "rmse": 2.4730235227683433 + }, + "validation": { + "mae": 2.330805658838245, + "max_error": 6.170408169972479, + "r2": 0.6018779490119056, + "rmse": 2.7475458108314688 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 26.876112, + "metrics": { + "blind": { + "mae": 4.9802059647059425, + "max_error": 9.474022333975881, + "r2": -0.3383869989322399, + "rmse": 5.582096572166272 + }, + "train": { + "mae": 4.606637572187506, + "max_error": 9.147010634187609, + "r2": -0.3147731660934172, + "rmse": 5.184217650919956 + }, + "validation": { + "mae": 4.400175814454717, + "max_error": 8.548744691303, + "r2": -0.3046091881710049, + "rmse": 4.97367086645555 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.2744606942037784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s)", + "loss": 6.1158457, + "metrics": { + "blind": { + "mae": 1.9878341766104959, + "max_error": 7.255011921150796, + "r2": 0.7007762883494801, + "rmse": 2.6393956336404947 + }, + "train": { + "mae": 2.0053258342064604, + "max_error": 7.003711742062352, + "r2": 0.7008142713728753, + "rmse": 2.4730235227683433 + }, + "validation": { + "mae": 2.330805658838245, + "max_error": 6.170408169972479, + "r2": 0.6018779490119056, + "rmse": 2.7475458108314688 + } + }, + "score": 0.1771996552098137, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.1000676742312168, + 3.0675980200048434 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F*2.16617 - Cl_rear_s", + "loss": 5.1981616, + "metrics": { + "blind": { + "mae": 1.6743529543186835, + "max_error": 4.164195125696715, + "r2": 0.8300528673377916, + "rmse": 1.989131119271582 + }, + "train": { + "mae": 1.9423863623227544, + "max_error": 4.808203913070174, + "r2": 0.7457071304109751, + "rmse": 2.2799477895894977 + }, + "validation": { + "mae": 2.0100661056491864, + "max_error": 4.809432679267629, + "r2": 0.6866959625501288, + "rmse": 2.437360797733557 + } + }, + "score": 0.16257803422439096, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.557423328815494, + 4.495032893687021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s) + Cl_rear_s", + "loss": 4.3726034, + "metrics": { + "blind": { + "mae": 1.504226609805059, + "max_error": 5.603823625240906, + "r2": 0.8281270358622314, + "rmse": 2.0003697318547125 + }, + "train": { + "mae": 1.7264422587415433, + "max_error": 4.432853025711526, + "r2": 0.7860932367045816, + "rmse": 2.0910772092891885 + }, + "validation": { + "mae": 1.9789722482506158, + "max_error": 5.256828597768205, + "r2": 0.7225903623501921, + "rmse": 2.293493948041881 + } + }, + "score": 0.17294644918663044, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.623245500698237, + 5.790681327505772 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_a", + "loss": 191.64392, + "metrics": { + "blind": { + "mae": 8.946770895536611, + "max_error": 22.72684144973755, + "r2": -13.214181416226406, + "rmse": 10.600821175427468 + }, + "train": { + "mae": 10.379043003482057, + "max_error": 36.916726121795364, + "r2": -25.31807816849691, + "rmse": 13.843551563619178 + }, + "validation": { + "mae": 13.343664954165714, + "max_error": 37.26983158290386, + "r2": -41.36342576713366, + "rmse": 17.210617717983677 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -36.914467497263104, + 24.888122081756592 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 3.2702562308705003, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - (Cl_F - 1*(-0.59404755))", + "loss": 1.0782164, + "metrics": { + "blind": { + "mae": 0.850160636606725, + "max_error": 2.35873895406698, + "r2": 0.869266048684074, + "rmse": 1.0166530671683427 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369390204360068, + "r2": 0.8519306746517525, + "rmse": 1.0383720394256022 + }, + "validation": { + "mae": 0.8205551018956302, + "max_error": 1.8085162481337145, + "r2": 0.8731427425060434, + "rmse": 0.9417997720423049 + } + }, + "score": 0.09437941981072263, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031663324495137, + 0.6086039969187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.7488202", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7160473385261967, + "max_error": 1.7155727306623305, + "r2": 0.949156062673045, + "rmse": 0.8560271631971101 + }, + "train": { + "mae": 0.7707944689364431, + "max_error": 2.9521565079940353, + "r2": 0.9239781270387752, + "rmse": 0.9576781202556536 + }, + "validation": { + "mae": 0.6933020127867742, + "max_error": 2.438225590970476, + "r2": 0.9256753930684369, + "rmse": 0.8852977169089 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 20.969328, + "metrics": { + "blind": { + "mae": 4.191663545393385, + "max_error": 9.973199748899788, + "r2": -0.7973199585785216, + "rmse": 5.089564903194417 + }, + "train": { + "mae": 3.7302562353216997, + "max_error": 8.877923464402556, + "r2": -0.7381366570431249, + "rmse": 4.579227732129818 + }, + "validation": { + "mae": 3.466056225522875, + "max_error": 8.178853660821915, + "r2": -0.7269867739059013, + "rmse": 4.267441137594878 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.739195198751986, + 5.0361244939267635 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.143827810000000", + "loss": 12.064256, + "metrics": { + "blind": { + "mae": 3.4650387822698177, + "max_error": 7.235419645021973, + "r2": -0.0035163114270235774, + "rmse": 3.803033722674547 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597023381899414, + "r2": -1.5720758028692217e-11, + "rmse": 3.4733638727164386 + }, + "validation": { + "mae": 2.919128959490879, + "max_error": 5.649128542233886, + "r2": -0.011766460288657354, + "rmse": 3.266353414651336 + } + }, + "score": 0.5528137674210594, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382781, + 0.14382781 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381931945046, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.7488202", + "loss": 0.91714734, + "metrics": { + "blind": { + "mae": 0.7160473385261967, + "max_error": 1.7155727306623305, + "r2": 0.949156062673045, + "rmse": 0.8560271631971101 + }, + "train": { + "mae": 0.7707944689364431, + "max_error": 2.9521565079940353, + "r2": 0.9239781270387752, + "rmse": 0.9576781202556536 + }, + "validation": { + "mae": 0.6933020127867742, + "max_error": 2.438225590970476, + "r2": 0.9256753930684369, + "rmse": 0.8852977169089 + } + }, + "score": 0.6258072168923339, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0652392309471148, + 2.103221318812823 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 12.82839, + "metrics": { + "blind": { + "mae": 3.066237190621905, + "max_error": 7.920327190309763, + "r2": -0.8447311707786469, + "rmse": 3.818960131678844 + }, + "train": { + "mae": 2.8051718414240217, + "max_error": 8.15645425580442, + "r2": -0.7616972959141541, + "rmse": 3.581674214259532 + }, + "validation": { + "mae": 2.5296275901297727, + "max_error": 6.603535659611225, + "r2": -0.5204823899841422, + "rmse": 3.2605556663091 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.2752949260175228, + 3.448729170486331 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190555840000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.560606432779184, + "max_error": 4.544638366237793, + "r2": -0.003029126137490401, + "rmse": 2.8160175274740573 + }, + "train": { + "mae": 2.3945180098515273, + "max_error": 4.85747650192627, + "r2": -2.2605695093602662e-09, + "rmse": 2.698487663168925 + }, + "validation": { + "mae": 2.3222460463463106, + "max_error": 4.930024414523926, + "r2": -0.009520935271226216, + "rmse": 2.6567983123945242 + } + }, + "score": 0.5662777927275988, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19055584, + -0.19055584 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.3173803", + "loss": 1.068355, + "metrics": { + "blind": { + "mae": 0.8853839861797794, + "max_error": 1.8460116063069867, + "r2": 0.8786933766838456, + "rmse": 0.9793114638623729 + }, + "train": { + "mae": 0.892098329365764, + "max_error": 2.714090646972409, + "r2": 0.8532849258471034, + "rmse": 1.0336126245480297 + }, + "validation": { + "mae": 0.7538968338571171, + "max_error": 2.124875764331202, + "r2": 0.883723530183266, + "rmse": 0.9016683819070377 + } + }, + "score": 0.09744212385929855, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8024410843589753, + 1.5843494556753357 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 12.77347, + "metrics": { + "blind": { + "mae": 3.4994011299560723, + "max_error": 7.357363823801279, + "r2": -0.083406320608441, + "rmse": 3.9515150550024125 + }, + "train": { + "mae": 3.085396948542978, + "max_error": 7.221683262847364, + "r2": -0.05878635781204378, + "rmse": 3.573999202135012 + }, + "validation": { + "mae": 2.8812344467425226, + "max_error": 6.01305794948712, + "r2": -0.06482280799802931, + "rmse": 3.3509018413431946 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0987235143838916, + 2.9128919122740626 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "0.143808250000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650368262698175, + "max_error": 7.235400085021973, + "r2": -0.003515700406657718, + "rmse": 3.803032564880008 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597003821899414, + "r2": -2.7771118737973666e-12, + "rmse": 3.47336387269396 + }, + "validation": { + "mae": 2.9191314671831865, + "max_error": 5.6491481022338865, + "r2": -0.011767767093656012, + "rmse": 3.2663555240736972 + } + }, + "score": 0.05712341544089163, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14380825, + 0.14380825 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(Cl_F - Cl_rear_s)*2.134053", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.386519629147577, + "max_error": 4.395785460702027, + "r2": 0.8697027353832361, + "rmse": 1.7417031619759435 + }, + "train": { + "mae": 1.7127707013575593, + "max_error": 4.504063370458606, + "r2": 0.8001311886922295, + "rmse": 2.021297902351192 + }, + "validation": { + "mae": 2.099846207439779, + "max_error": 4.670135654499427, + "r2": 0.6948271358959908, + "rmse": 2.4055244903329154 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*2.134053", + "loss": 4.0856447, + "metrics": { + "blind": { + "mae": 1.386519629147577, + "max_error": 4.395785460702027, + "r2": 0.8697027353832361, + "rmse": 1.7417031619759435 + }, + "train": { + "mae": 1.7127707013575593, + "max_error": 4.504063370458606, + "r2": 0.8001311886922295, + "rmse": 2.021297902351192 + }, + "validation": { + "mae": 2.099846207439779, + "max_error": 4.670135654499427, + "r2": 0.6948271358959908, + "rmse": 2.4055244903329154 + } + }, + "score": 0.2544839540903014, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5665221416566792, + 1.2998917650427328 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 9.154741, + "metrics": { + "blind": { + "mae": 2.803621444680016, + "max_error": 6.160513136186637, + "r2": -0.34409202415370643, + "rmse": 3.259815973005322 + }, + "train": { + "mae": 2.53182666864604, + "max_error": 6.420141713228077, + "r2": -0.25720254553019894, + "rmse": 3.0256804718266026 + }, + "validation": { + "mae": 2.5128238714135547, + "max_error": 5.706686818040907, + "r2": -0.23500276794665464, + "rmse": 2.9385621971416147 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0987235143838916, + 2.9128919122740626 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190663890000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.5605956277791844, + "max_error": 4.544530316237793, + "r2": -0.0030248976677866857, + "rmse": 2.8160115917255135 + }, + "train": { + "mae": 2.3945216725633918, + "max_error": 4.857584551926269, + "r2": -5.631761723634554e-11, + "rmse": 2.6984876601948518 + }, + "validation": { + "mae": 2.3222543578847716, + "max_error": 4.9301324645239255, + "r2": -0.009528911260813233, + "rmse": 2.656808807745873 + } + }, + "score": 0.22888899628841797, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19066389, + -0.19066389 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.2746769", + "loss": 1.0749221, + "metrics": { + "blind": { + "mae": 0.8917095611656596, + "max_error": 1.7161136540071604, + "r2": 0.8767878206923864, + "rmse": 0.9869732930341507 + }, + "train": { + "mae": 0.892449001053716, + "max_error": 2.713481605909691, + "r2": 0.8523830824883538, + "rmse": 1.0367845160626001 + }, + "validation": { + "mae": 0.7619258330612954, + "max_error": 2.085163333512679, + "r2": 0.8830349389057175, + "rmse": 0.9043342887701387 + } + }, + "score": 0.09539942001679175, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7764296413445204, + 1.5329921456066442 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 16.349226, + "metrics": { + "blind": { + "mae": 3.739293554914184, + "max_error": 10.276724819093943, + "r2": -0.40104513887056603, + "rmse": 4.493595978972901 + }, + "train": { + "mae": 3.293040373725659, + "max_error": 9.735904386267066, + "r2": -0.35517881233786364, + "rmse": 4.0434174803282605 + }, + "validation": { + "mae": 2.8207295660216074, + "max_error": 7.7155923917889595, + "r2": -0.19514555292858704, + "rmse": 3.5500415294033356 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.2752949260175228, + 3.448729170486331 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "0.143822970000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650382982698176, + "max_error": 7.235414805021973, + "r2": -0.003516160228901777, + "rmse": 3.803033436176176 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.5970185418994145, + "r2": -6.612488334667432e-12, + "rmse": 3.4733638727006206 + }, + "validation": { + "mae": 2.919129580003699, + "max_error": 5.649133382233886, + "r2": -0.01176678364264716, + "rmse": 3.266353936603964 + } + }, + "score": 0.3039336084630583, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382297, + 0.14382297 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s - (Cl_F + Cl_F)", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_a", + "loss": 191.64392, + "metrics": { + "blind": { + "mae": 8.946770895536611, + "max_error": 22.72684144973755, + "r2": -13.214181416226406, + "rmse": 10.600821175427468 + }, + "train": { + "mae": 10.379043003482057, + "max_error": 36.916726121795364, + "r2": -25.31807816849691, + "rmse": 13.843551563619178 + }, + "validation": { + "mae": 13.343664954165714, + "max_error": 37.26983158290386, + "r2": -41.36342576713366, + "rmse": 17.210617717983677 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -36.914467497263104, + 24.888122081756592 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 3.2702562308705003, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - (Cl_F - 1*(-0.59404755))", + "loss": 1.0782164, + "metrics": { + "blind": { + "mae": 0.850160636606725, + "max_error": 2.35873895406698, + "r2": 0.869266048684074, + "rmse": 1.0166530671683427 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369390204360068, + "r2": 0.8519306746517525, + "rmse": 1.0383720394256022 + }, + "validation": { + "mae": 0.8205551018956302, + "max_error": 1.8085162481337145, + "r2": 0.8731427425060434, + "rmse": 0.9417997720423049 + } + }, + "score": 0.09437941981072263, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031663324495137, + 0.6086039969187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F + Cl_rear_s)*1.7488202", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7160473385261967, + "max_error": 1.7155727306623305, + "r2": 0.949156062673045, + "rmse": 0.8560271631971101 + }, + "train": { + "mae": 0.7707944689364431, + "max_error": 2.9521565079940353, + "r2": 0.9239781270387752, + "rmse": 0.9576781202556536 + }, + "validation": { + "mae": 0.6933020127867742, + "max_error": 2.438225590970476, + "r2": 0.9256753930684369, + "rmse": 0.8852977169089 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 20.969328, + "metrics": { + "blind": { + "mae": 4.191663545393385, + "max_error": 9.973199748899788, + "r2": -0.7973199585785216, + "rmse": 5.089564903194417 + }, + "train": { + "mae": 3.7302562353216997, + "max_error": 8.877923464402556, + "r2": -0.7381366570431249, + "rmse": 4.579227732129818 + }, + "validation": { + "mae": 3.466056225522875, + "max_error": 8.178853660821915, + "r2": -0.7269867739059013, + "rmse": 4.267441137594878 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.739195198751986, + 5.0361244939267635 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.143827810000000", + "loss": 12.064256, + "metrics": { + "blind": { + "mae": 3.4650387822698177, + "max_error": 7.235419645021973, + "r2": -0.0035163114270235774, + "rmse": 3.803033722674547 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597023381899414, + "r2": -1.5720758028692217e-11, + "rmse": 3.4733638727164386 + }, + "validation": { + "mae": 2.919128959490879, + "max_error": 5.649128542233886, + "r2": -0.011766460288657354, + "rmse": 3.266353414651336 + } + }, + "score": 0.5528137674210594, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382781, + 0.14382781 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381931945046, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.7488202", + "loss": 0.91714734, + "metrics": { + "blind": { + "mae": 0.7160473385261967, + "max_error": 1.7155727306623305, + "r2": 0.949156062673045, + "rmse": 0.8560271631971101 + }, + "train": { + "mae": 0.7707944689364431, + "max_error": 2.9521565079940353, + "r2": 0.9239781270387752, + "rmse": 0.9576781202556536 + }, + "validation": { + "mae": 0.6933020127867742, + "max_error": 2.438225590970476, + "r2": 0.9256753930684369, + "rmse": 0.8852977169089 + } + }, + "score": 0.6258072168923339, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0652392309471148, + 2.103221318812823 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_only-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F*(-1.2758577) + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.857014485189054, + "max_error": 2.2698428205255246, + "r2": 0.8721225301382429, + "rmse": 1.0054850064795287 + }, + "train": { + "mae": 0.854776155699636, + "max_error": 2.7963347805420637, + "r2": 0.8461668152669859, + "rmse": 1.0583893277149572 + }, + "validation": { + "mae": 0.8029596981246041, + "max_error": 2.0283650756907607, + "r2": 0.8706170784457591, + "rmse": 0.9511289455034331 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190564840000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.560605532779184, + "max_error": 4.544629366237793, + "r2": -0.0030287738153189636, + "rmse": 2.816017032899438 + }, + "train": { + "mae": 2.394518314936273, + "max_error": 4.85748550192627, + "r2": -1.9545460805403536e-09, + "rmse": 2.6984876627560244 + }, + "validation": { + "mae": 2.3222467386540027, + "max_error": 4.930033414523926, + "r2": -0.009521599501956413, + "rmse": 2.6567991864362264 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19056484, + -0.19056484 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_F*(-1.238342)", + "loss": 3.3506489, + "metrics": { + "blind": { + "mae": 1.4893296581537059, + "max_error": 4.780798659522901, + "r2": 0.545419079295379, + "rmse": 1.8957636138169245 + }, + "train": { + "mae": 1.437354217477816, + "max_error": 4.852917384267581, + "r2": 0.5398619949270989, + "rmse": 1.8304778966418376 + }, + "validation": { + "mae": 1.4984236397023367, + "max_error": 4.418475551743264, + "r2": 0.5134741083464254, + "rmse": 1.8443948483427763 + } + }, + "score": 0.3881144036916243, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.126405800473411, + 4.624280163215939 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F*(-1.2758577) + Cl_rear_s", + "loss": 1.120188, + "metrics": { + "blind": { + "mae": 0.857014485189054, + "max_error": 2.2698428205255246, + "r2": 0.8721225301382429, + "rmse": 1.0054850064795287 + }, + "train": { + "mae": 0.854776155699636, + "max_error": 2.7963347805420637, + "r2": 0.8461668152669859, + "rmse": 1.0583893277149572 + }, + "validation": { + "mae": 0.8029596981246041, + "max_error": 2.0283650756907607, + "r2": 0.8706170784457591, + "rmse": 0.9511289455034331 + } + }, + "score": 0.5478287501041871, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.5283323869184358, + 2.2327735083643114 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143823330000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465038334269818, + "max_error": 7.235415165021973, + "r2": -0.003516171474931218, + "rmse": 3.803033457485761 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018901899414, + "r2": -7.156275572128834e-12, + "rmse": 3.473363872701565 + }, + "validation": { + "mae": 2.919129533849853, + "max_error": 5.649133022233887, + "r2": -0.011766759591370857, + "rmse": 3.2663538977807964 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382333, + 0.14382333 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 2.5281394128538524, + "max_error": 6.5520814172923565, + "r2": 0.6052144804848902, + "rmse": 3.031706105458745 + }, + "train": { + "mae": 2.6045724394925083, + "max_error": 7.029601292451844, + "r2": 0.5288148181115895, + "rmse": 3.1035133832968236 + }, + "validation": { + "mae": 2.5145889475720766, + "max_error": 6.6223766470793635, + "r2": 0.4931295601776019, + "rmse": 3.100168563587967 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F + Cl_F", + "loss": 9.631797, + "metrics": { + "blind": { + "mae": 2.5281394128538524, + "max_error": 6.5520814172923565, + "r2": 0.6052144804848902, + "rmse": 3.031706105458745 + }, + "train": { + "mae": 2.6045724394925083, + "max_error": 7.029601292451844, + "r2": 0.5288148181115895, + "rmse": 3.1035133832968236 + }, + "validation": { + "mae": 2.5145889475720766, + "max_error": 6.6223766470793635, + "r2": 0.4931295601776019, + "rmse": 3.100168563587967 + } + }, + "score": 0.7517073553692639, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.468502502888441, + 6.664404179900885 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F - Cl_rear_s + 1.1968722", + "loss": 8.678935, + "metrics": { + "blind": { + "mae": 2.6892490512451417, + "max_error": 6.155007798106309, + "r2": 0.5956852150941833, + "rmse": 3.068077335411973 + }, + "train": { + "mae": 2.473942405765389, + "max_error": 6.379296006749284, + "r2": 0.5754284444280373, + "rmse": 2.9460034968485105 + }, + "validation": { + "mae": 2.4228819565861306, + "max_error": 5.707997869232569, + "r2": 0.5541162892769211, + "rmse": 2.907686829538924 + } + }, + "score": 0.03472366249033484, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0057793469187870095, + 1.8059909824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 7.5975533, + "metrics": { + "blind": { + "mae": 2.6558976942906156, + "max_error": 4.736926860176027, + "r2": -0.04357067873523324, + "rmse": 2.872364268391371 + }, + "train": { + "mae": 2.469170547650843, + "max_error": 5.412976400926709, + "r2": -0.04335681064907715, + "rmse": 2.756365872185182 + }, + "validation": { + "mae": 2.407381284301384, + "max_error": 4.681656027212739, + "r2": -0.03506926123670895, + "rmse": 2.690206561278342 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0887602111324668, + 1.1846119305118918 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 7.4590683, + "metrics": { + "blind": { + "mae": 2.603286109749732, + "max_error": 5.59873563700196, + "r2": -0.043665725025229696, + "rmse": 2.8724950699541356 + }, + "train": { + "mae": 2.421452895586196, + "max_error": 5.025533917378795, + "r2": -0.02433891666622312, + "rmse": 2.7311293713261584 + }, + "validation": { + "mae": 2.3256521447799496, + "max_error": 4.736126283897318, + "r2": -0.004749402239728973, + "rmse": 2.650512154509886 + } + }, + "score": 0.018395747595291514, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6509840597665262, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 1*0.17549714", + "loss": 1.2533977, + "metrics": { + "blind": { + "mae": 0.9624630429663499, + "max_error": 1.942548719155245, + "r2": 0.8446786723192736, + "rmse": 1.108138716262782 + }, + "train": { + "mae": 0.9537660591101255, + "max_error": 2.534066990695071, + "r2": 0.8278733879525801, + "rmse": 1.119552455328835 + }, + "validation": { + "mae": 0.879851283690775, + "max_error": 1.7960401223177245, + "r2": 0.8559258973389283, + "rmse": 1.003676795382573 + } + }, + "score": 0.044196143363340205, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7846159224495137, + 1.027154406918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - 0.36529", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.385891279309094, + "r2": 0.4500958545600159, + "rmse": 2.815214270168483 + }, + "train": { + "mae": 2.1197524126066445, + "max_error": 5.1956429723520205, + "r2": 0.48782507704698375, + "rmse": 2.485761390509013 + }, + "validation": { + "mae": 1.959210752500087, + "max_error": 4.560068361474164, + "r2": 0.4638546825498884, + "rmse": 2.377739608462646 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 79.64449, + "metrics": { + "blind": { + "mae": 8.918612605868839, + "max_error": 16.039940646849573, + "r2": -5.546913059479274, + "rmse": 9.713734864892977 + }, + "train": { + "mae": 8.168622492607367, + "max_error": 15.619017649441957, + "r2": -5.601689890426466, + "rmse": 8.924375652088562 + }, + "validation": { + "mae": 7.8344310045194545, + "max_error": 13.831453628838062, + "r2": -5.928242845213141, + "rmse": 8.547410945784991 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 6.413439754396677, + 12.009300757199526 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "0.143781530000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465034154269817, + "max_error": 7.235373365021973, + "r2": -0.003514865806151679, + "rmse": 3.80303098343312 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.596977101899414, + "r2": -8.759748482134455e-11, + "rmse": 3.473363872841266 + }, + "validation": { + "mae": 2.9191348928242125, + "max_error": 5.649174822233887, + "r2": -0.011769552376035719, + "rmse": 3.266358405843892 + } + }, + "score": 1.8873259080008291, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14378153, + 0.14378153 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 9.1098385, + "metrics": { + "blind": { + "mae": 2.7927571163294713, + "max_error": 6.190081419888884, + "r2": 0.3002396330111866, + "rmse": 3.1757231073329266 + }, + "train": { + "mae": 2.6384921903613834, + "max_error": 5.672955624293536, + "r2": 0.24489027443629796, + "rmse": 3.0182507325257593 + }, + "validation": { + "mae": 2.427702316368269, + "max_error": 5.4019861604319885, + "r2": 0.2598294369589328, + "rmse": 2.793758991137804 + } + }, + "score": 0.28089196496706703, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.4428394933929667, + 1.5384713769890368 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.36529", + "loss": 6.1790094, + "metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.385891279309094, + "r2": 0.4500958545600159, + "rmse": 2.815214270168483 + }, + "train": { + "mae": 2.1197524126066445, + "max_error": 5.1956429723520205, + "r2": 0.48782507704698375, + "rmse": 2.485761390509013 + }, + "validation": { + "mae": 1.959210752500087, + "max_error": 4.560068361474164, + "r2": 0.4638546825498884, + "rmse": 2.377739608462646 + } + }, + "score": 0.3881970159836026, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.697492089950442, + 3.3689612514442207 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_a - Cl_F - 0.36529", + "loss": 6.144563, + "metrics": { + "blind": { + "mae": 2.4444275594940335, + "max_error": 4.849125986815393, + "r2": 0.48837028774601865, + "rmse": 2.7154751778632837 + }, + "train": { + "mae": 2.197180150723919, + "max_error": 4.770331701250784, + "r2": 0.4906803215769452, + "rmse": 2.4788229642115733 + }, + "validation": { + "mae": 2.0433020978140237, + "max_error": 4.542349949492104, + "r2": 0.4706197178286933, + "rmse": 2.3626909305950345 + } + }, + "score": 0.0027951707988204035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5128801594385504, + 2.280201040311754 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F + Cl_rear_s*0.282767155498103", + "loss": 4.9887347, + "metrics": { + "blind": { + "mae": 2.203116660248301, + "max_error": 5.233496907093516, + "r2": 0.5644260502169456, + "rmse": 2.5055259637718397 + }, + "train": { + "mae": 1.9617524636365244, + "max_error": 4.854007445872771, + "r2": 0.5864863544001163, + "rmse": 2.2335475649407064 + }, + "validation": { + "mae": 1.787527494342338, + "max_error": 4.052039510647688, + "r2": 0.5929226834530358, + "rmse": 2.0718651489677287 + } + }, + "score": 0.20838531528622783, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5622035689040388, + 3.018398004135726 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 12.471686, + "metrics": { + "blind": { + "mae": 3.2428961154930223, + "max_error": 6.226958494167775, + "r2": 0.40691009585619586, + "rmse": 3.7159234327646655 + }, + "train": { + "mae": 3.0982147504648805, + "max_error": 6.838292457978241, + "r2": 0.3898880700202144, + "rmse": 3.5315273100880353 + }, + "validation": { + "mae": 3.005148292302739, + "max_error": 6.6842275691451505, + "r2": 0.3813697308736541, + "rmse": 3.4249355932022034 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7342512514442205, + 3.3322020899504423 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.17908929289150666, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_only-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-0.190718860000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.5605901307791843, + "max_error": 4.544475346237793, + "r2": -0.0030227475844148977, + "rmse": 2.8160085735237934 + }, + "train": { + "mae": 2.394523535953222, + "max_error": 4.857639521926269, + "r2": -1.655382497744995e-10, + "rmse": 2.698487660342217 + }, + "validation": { + "mae": 2.3222585863463108, + "max_error": 4.930187434523925, + "r2": -0.009532970294856336, + "rmse": 2.656814148883921 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190718860000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605901307791843, + "max_error": 4.544475346237793, + "r2": -0.0030227475844148977, + "rmse": 2.8160085735237934 + }, + "train": { + "mae": 2.394523535953222, + "max_error": 4.857639521926269, + "r2": -1.655382497744995e-10, + "rmse": 2.698487660342217 + }, + "validation": { + "mae": 2.3222585863463108, + "max_error": 4.930187434523925, + "r2": -0.009532970294856336, + "rmse": 2.656814148883921 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19071886, + -0.19071886 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "0.143719640000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650279652698175, + "max_error": 7.235311475021972, + "r2": -0.003512933049487188, + "rmse": 3.8030273211370904 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.596915211899414, + "r2": -7.38633376684561e-10, + "rmse": 3.4733638739719086 + }, + "validation": { + "mae": 2.9191428274395967, + "max_error": 5.649236712233887, + "r2": -0.01177368804304968, + "rmse": 3.2663650815522485 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143719640000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650279652698175, + "max_error": 7.235311475021972, + "r2": -0.003512933049487188, + "rmse": 3.8030273211370904 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.596915211899414, + "r2": -7.38633376684561e-10, + "rmse": 3.4733638739719086 + }, + "validation": { + "mae": 2.9191428274395967, + "max_error": 5.649236712233887, + "r2": -0.01177368804304968, + "rmse": 3.2663650815522485 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14371964, + 0.14371964 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "0.210852710000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341056411833002, + "max_error": 8.21085271, + "r2": -0.00047939932491991577, + "rmse": 4.826258353542877 + }, + "train": { + "mae": 4.003859576194109, + "max_error": 8.053187457314452, + "r2": -1.1270697708454236e-09, + "rmse": 4.52124259798579 + }, + "validation": { + "mae": 3.822329858877499, + "max_error": 7.758462516060791, + "r2": -0.0005069992523349942, + "rmse": 4.355588991940134 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 29.007162, + "metrics": { + "blind": { + "mae": 4.703315188037232, + "max_error": 10.42662987858057, + "r2": -0.3830471215064184, + "rmse": 5.6744657572911805 + }, + "train": { + "mae": 4.492369573981397, + "max_error": 11.288995686918497, + "r2": -0.4190237518379516, + "rmse": 5.385830022702619 + }, + "validation": { + "mae": 4.432045555075045, + "max_error": 10.415710713714361, + "r2": -0.42963386385687596, + "rmse": 5.206540360380409 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.210852710000000", + "loss": 20.441631, + "metrics": { + "blind": { + "mae": 4.341056411833002, + "max_error": 8.21085271, + "r2": -0.00047939932491991577, + "rmse": 4.826258353542877 + }, + "train": { + "mae": 4.003859576194109, + "max_error": 8.053187457314452, + "r2": -1.1270697708454236e-09, + "rmse": 4.52124259798579 + }, + "validation": { + "mae": 3.822329858877499, + "max_error": 7.758462516060791, + "r2": -0.0005069992523349942, + "rmse": 4.355588991940134 + } + }, + "score": 0.3499692083401138, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.21085271, + 0.21085271 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595178", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084355615472, + "max_error": 7.955951525523995, + "r2": 5.070432382503487e-05, + "rmse": 4.824979588508516 + }, + "train": { + "mae": 4.021479548357001, + "max_error": 7.944619076038726, + "r2": 0.0025712611288198906, + "rmse": 4.515426206497914 + }, + "validation": { + "mae": 3.814215795447418, + "max_error": 7.4254475687731984, + "r2": 0.007857733034880576, + "rmse": 4.337343339453549 + } + }, + "score": 0.0012872918599486618, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.46136938396566546, + 0.4480662329979334 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "(-target_Cl - 2.332723)*(-0.1021511)", + "loss": 20.33241, + "metrics": { + "blind": { + "mae": 4.337198983971919, + "max_error": 8.191395831190135, + "r2": 0.0028699979033199874, + "rmse": 4.818172925512077 + }, + "train": { + "mae": 4.010044754724081, + "max_error": 7.702750765957865, + "r2": 0.00534316469452456, + "rmse": 4.5091475454316985 + }, + "validation": { + "mae": 3.8201508676312037, + "max_error": 7.36262612176407, + "r2": 0.007929902690179569, + "rmse": 4.337185584725825 + } + }, + "score": 0.0009276027715542614, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2528876407513875, + 0.7153054313522283 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190741550000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605878617791844, + "max_error": 4.544452656237793, + "r2": -0.0030218603160885316, + "rmse": 2.8160073280107816 + }, + "train": { + "mae": 2.394524305105765, + "max_error": 4.85766221192627, + "r2": -4.5260795111801144e-10, + "rmse": 2.698487660729544 + }, + "validation": { + "mae": 2.322260331730926, + "max_error": 4.930210124523926, + "r2": -0.009534645996800206, + "rmse": 2.656816353877179 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19074155, + -0.19074155 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269363820670502, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.5940359", + "loss": 1.0782163, + "metrics": { + "blind": { + "mae": 0.8501618016067249, + "max_error": 2.3587273040669796, + "r2": 0.8692659810583601, + "rmse": 1.0166533301141187 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369273704360065, + "r2": 0.85193067464549, + "rmse": 1.0383720394475608 + }, + "validation": { + "mae": 0.8205559980494763, + "max_error": 1.8085045981337142, + "r2": 0.8731429606539692, + "rmse": 0.9417989622669747 + } + }, + "score": 0.09437945072597759, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031546824495136, + 0.6086156469187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143823130000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650383142698176, + "max_error": 7.235414965021973, + "r2": -0.0035161652271349375, + "rmse": 3.8030334456470984 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018701899414, + "r2": -6.851408329566766e-12, + "rmse": 3.4733638727010354 + }, + "validation": { + "mae": 2.919129559490879, + "max_error": 5.649133222233886, + "r2": -0.011766772953188065, + "rmse": 3.2663539193492177 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382313, + 0.14382313 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.115698084", + "loss": 2.9557192, + "metrics": { + "blind": { + "mae": 1.7263071365276885, + "max_error": 3.8047034807992492, + "r2": 0.751535860354166, + "rmse": 1.8923428203529682 + }, + "train": { + "mae": 1.5402657343754362, + "max_error": 3.1006026428682123, + "r2": 0.7550019491767872, + "rmse": 1.719220564586204 + }, + "validation": { + "mae": 1.402198580778, + "max_error": 2.5399597845413115, + "r2": 0.7754565244303062, + "rmse": 1.5387683817263578 + } + }, + "score": 0.00522227755513013, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7248168664495137, + 1.0869534629187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.9684213766983452, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.9878341766104959, + "max_error": 7.255011921150796, + "r2": 0.7007762883494801, + "rmse": 2.6393956336404947 + }, + "train": { + "mae": 2.0053258342064604, + "max_error": 7.003711742062352, + "r2": 0.7008142713728753, + "rmse": 2.4730235227683433 + }, + "validation": { + "mae": 2.330805658838245, + "max_error": 6.170408169972479, + "r2": 0.6018779490119056, + "rmse": 2.7475458108314688 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 26.876112, + "metrics": { + "blind": { + "mae": 4.9802059647059425, + "max_error": 9.474022333975881, + "r2": -0.3383869989322399, + "rmse": 5.582096572166272 + }, + "train": { + "mae": 4.606637572187506, + "max_error": 9.147010634187609, + "r2": -0.3147731660934172, + "rmse": 5.184217650919956 + }, + "validation": { + "mae": 4.400175814454717, + "max_error": 8.548744691303, + "r2": -0.3046091881710049, + "rmse": 4.97367086645555 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5315997045254335, + 2.7230833075009286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.2744606942037784, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s)", + "loss": 6.1158457, + "metrics": { + "blind": { + "mae": 1.9878341766104959, + "max_error": 7.255011921150796, + "r2": 0.7007762883494801, + "rmse": 2.6393956336404947 + }, + "train": { + "mae": 2.0053258342064604, + "max_error": 7.003711742062352, + "r2": 0.7008142713728753, + "rmse": 2.4730235227683433 + }, + "validation": { + "mae": 2.330805658838245, + "max_error": 6.170408169972479, + "r2": 0.6018779490119056, + "rmse": 2.7475458108314688 + } + }, + "score": 0.1771996552098137, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.1000676742312168, + 3.0675980200048434 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_F*2.16617 - Cl_rear_s", + "loss": 5.1981616, + "metrics": { + "blind": { + "mae": 1.6743529543186835, + "max_error": 4.164195125696715, + "r2": 0.8300528673377916, + "rmse": 1.989131119271582 + }, + "train": { + "mae": 1.9423863623227544, + "max_error": 4.808203913070174, + "r2": 0.7457071304109751, + "rmse": 2.2799477895894977 + }, + "validation": { + "mae": 2.0100661056491864, + "max_error": 4.809432679267629, + "r2": 0.6866959625501288, + "rmse": 2.437360797733557 + } + }, + "score": 0.16257803422439096, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.557423328815494, + 4.495032893687021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_s*(Cl_F - Cl_rear_s) + Cl_rear_s", + "loss": 4.3726034, + "metrics": { + "blind": { + "mae": 1.504226609805059, + "max_error": 5.603823625240906, + "r2": 0.8281270358622314, + "rmse": 2.0003697318547125 + }, + "train": { + "mae": 1.7264422587415433, + "max_error": 4.432853025711526, + "r2": 0.7860932367045816, + "rmse": 2.0910772092891885 + }, + "validation": { + "mae": 1.9789722482506158, + "max_error": 5.256828597768205, + "r2": 0.7225903623501921, + "rmse": 2.293493948041881 + } + }, + "score": 0.17294644918663044, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.623245500698237, + 5.790681327505772 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_rear_s", + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-0.190718860000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.5605901307791843, + "max_error": 4.544475346237793, + "r2": -0.0030227475844148977, + "rmse": 2.8160085735237934 + }, + "train": { + "mae": 2.394523535953222, + "max_error": 4.857639521926269, + "r2": -1.655382497744995e-10, + "rmse": 2.698487660342217 + }, + "validation": { + "mae": 2.3222585863463108, + "max_error": 4.930187434523925, + "r2": -0.009532970294856336, + "rmse": 2.656814148883921 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.190718860000000", + "loss": 7.2818346, + "metrics": { + "blind": { + "mae": 2.5605901307791843, + "max_error": 4.544475346237793, + "r2": -0.0030227475844148977, + "rmse": 2.8160085735237934 + }, + "train": { + "mae": 2.394523535953222, + "max_error": 4.857639521926269, + "r2": -1.655382497744995e-10, + "rmse": 2.698487660342217 + }, + "validation": { + "mae": 2.3222585863463108, + "max_error": 4.930187434523925, + "r2": -0.009532970294856336, + "rmse": 2.656814148883921 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19071886, + -0.19071886 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "0.143719640000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.4650279652698175, + "max_error": 7.235311475021972, + "r2": -0.003512933049487188, + "rmse": 3.8030273211370904 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.596915211899414, + "r2": -7.38633376684561e-10, + "rmse": 3.4733638739719086 + }, + "validation": { + "mae": 2.9191428274395967, + "max_error": 5.649236712233887, + "r2": -0.01177368804304968, + "rmse": 3.2663650815522485 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 22.454378, + "metrics": { + "blind": { + "mae": 3.9536669769790023, + "max_error": 9.807020496577024, + "r2": -0.6340903429250009, + "rmse": 4.85295193714826 + }, + "train": { + "mae": 3.8201914632584906, + "max_error": 9.976981297135353, + "r2": -0.8612317734117354, + "rmse": 4.738605036486199 + }, + "validation": { + "mae": 3.5869924475435906, + "max_error": 9.392770864069462, + "r2": -0.9308885817779711, + "rmse": 4.512338181979646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.143719640000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650279652698175, + "max_error": 7.235311475021972, + "r2": -0.003512933049487188, + "rmse": 3.8030273211370904 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.596915211899414, + "r2": -7.38633376684561e-10, + "rmse": 3.4733638739719086 + }, + "validation": { + "mae": 2.9191428274395967, + "max_error": 5.649236712233887, + "r2": -0.01177368804304968, + "rmse": 3.2663650815522485 + } + }, + "score": 0.6212386580018051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14371964, + 0.14371964 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "0.210852710000000", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 4.341056411833002, + "max_error": 8.21085271, + "r2": -0.00047939932491991577, + "rmse": 4.826258353542877 + }, + "train": { + "mae": 4.003859576194109, + "max_error": 8.053187457314452, + "r2": -1.1270697708454236e-09, + "rmse": 4.52124259798579 + }, + "validation": { + "mae": 3.822329858877499, + "max_error": 7.758462516060791, + "r2": -0.0005069992523349942, + "rmse": 4.355588991940134 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 29.007162, + "metrics": { + "blind": { + "mae": 4.703315188037232, + "max_error": 10.42662987858057, + "r2": -0.3830471215064184, + "rmse": 5.6744657572911805 + }, + "train": { + "mae": 4.492369573981397, + "max_error": 11.288995686918497, + "r2": -0.4190237518379516, + "rmse": 5.385830022702619 + }, + "validation": { + "mae": 4.432045555075045, + "max_error": 10.415710713714361, + "r2": -0.42963386385687596, + "rmse": 5.206540360380409 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.808346275240183, + 4.669702146202326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.210852710000000", + "loss": 20.441631, + "metrics": { + "blind": { + "mae": 4.341056411833002, + "max_error": 8.21085271, + "r2": -0.00047939932491991577, + "rmse": 4.826258353542877 + }, + "train": { + "mae": 4.003859576194109, + "max_error": 8.053187457314452, + "r2": -1.1270697708454236e-09, + "rmse": 4.52124259798579 + }, + "validation": { + "mae": 3.822329858877499, + "max_error": 7.758462516060791, + "r2": -0.0005069992523349942, + "rmse": 4.355588991940134 + } + }, + "score": 0.3499692083401138, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.21085271, + 0.21085271 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.09595178", + "loss": 20.38907, + "metrics": { + "blind": { + "mae": 4.337084355615472, + "max_error": 7.955951525523995, + "r2": 5.070432382503487e-05, + "rmse": 4.824979588508516 + }, + "train": { + "mae": 4.021479548357001, + "max_error": 7.944619076038726, + "r2": 0.0025712611288198906, + "rmse": 4.515426206497914 + }, + "validation": { + "mae": 3.814215795447418, + "max_error": 7.4254475687731984, + "r2": 0.007857733034880576, + "rmse": 4.337343339453549 + } + }, + "score": 0.0012872918599486618, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.46136938396566546, + 0.4480662329979334 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "(-target_Cl - 2.332723)*(-0.1021511)", + "loss": 20.33241, + "metrics": { + "blind": { + "mae": 4.337198983971919, + "max_error": 8.191395831190135, + "r2": 0.0028699979033199874, + "rmse": 4.818172925512077 + }, + "train": { + "mae": 4.010044754724081, + "max_error": 7.702750765957865, + "r2": 0.00534316469452456, + "rmse": 4.5091475454316985 + }, + "validation": { + "mae": 3.8201508676312037, + "max_error": 7.36262612176407, + "r2": 0.007929902690179569, + "rmse": 4.337185584725825 + } + }, + "score": 0.0009276027715542614, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2528876407513875, + 0.7153054313522283 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1.5L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 8.101086, + "metrics": { + "blind": { + "mae": 2.464478864030616, + "max_error": 5.109544320963323, + "r2": -0.05550680533513175, + "rmse": 2.8887442918873947 + }, + "train": { + "mae": 2.396869670327652, + "max_error": 5.629323720932007, + "r2": -0.11250605318905915, + "rmse": 2.8462407208405156 + }, + "validation": { + "mae": 2.406934879278803, + "max_error": 5.637858564266935, + "r2": -0.19806430118381768, + "rmse": 2.8942829465407396 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7558916006237268, + 1.3834001147188246 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190674700000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.5605945467791846, + "max_error": 4.544519506237793, + "r2": -0.0030244747876635447, + "rmse": 2.8160109981034323 + }, + "train": { + "mae": 2.3945220390040696, + "max_error": 4.857595361926269, + "r2": -1.22397647572825e-11, + "rmse": 2.69848766013538 + }, + "validation": { + "mae": 2.3222551894232337, + "max_error": 4.9301432745239255, + "r2": -0.009529709412623433, + "rmse": 2.6568098580062056 + } + }, + "score": 0.10661523587908218, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.1906747, + -0.1906747 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_F + Cl_rear_s - 0.5940415", + "loss": 1.0782163, + "metrics": { + "blind": { + "mae": 0.850161241606725, + "max_error": 2.3587329040669798, + "r2": 0.8692660135694263, + "rmse": 1.0166532037029286 + }, + "train": { + "mae": 0.911267140577165, + "max_error": 2.3369329704360067, + "r2": 0.8519306746531529, + "rmse": 1.0383720394206917 + }, + "validation": { + "mae": 0.8205555672802456, + "max_error": 1.8085101981337144, + "r2": 0.8731428557980092, + "rmse": 0.941799351497302 + } + }, + "score": 0.09437945072597759, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2031602824495136, + 0.6086100469187871 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - 0.65825987", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4283804456968627, + "max_error": 5.338348132539357, + "r2": 0.4326714995178855, + "rmse": 2.859468121172649 + }, + "train": { + "mae": 2.110861760335809, + "max_error": 5.141733483392562, + "r2": 0.47525171779645825, + "rmse": 2.516087820957035 + }, + "validation": { + "mae": 1.9995138309011504, + "max_error": 4.853038231474164, + "r2": 0.4364754820232333, + "rmse": 2.437695422255785 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.143823330000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.465038334269818, + "max_error": 7.235415165021973, + "r2": -0.003516171474931218, + "rmse": 3.803033457485761 + }, + "train": { + "mae": 3.091486338841713, + "max_error": 6.597018901899414, + "r2": -7.156275572128834e-12, + "rmse": 3.473363872701565 + }, + "validation": { + "mae": 2.919129533849853, + "max_error": 5.649133022233887, + "r2": -0.011766759591370857, + "rmse": 3.2663538977807964 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382333, + 0.14382333 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.65825987", + "loss": 6.330698, + "metrics": { + "blind": { + "mae": 2.4283804456968627, + "max_error": 5.338348132539357, + "r2": 0.4326714995178855, + "rmse": 2.859468121172649 + }, + "train": { + "mae": 2.110861760335809, + "max_error": 5.141733483392562, + "r2": 0.47525171779645825, + "rmse": 2.516087820957035 + }, + "validation": { + "mae": 1.9995138309011504, + "max_error": 4.853038231474164, + "r2": 0.4364754820232333, + "rmse": 2.437695422255785 + } + }, + "score": 0.3224182248353804, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.9904619599504425, + 3.0759913814442204 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "-Cd_rear_s + Cd_rear_s - Cl_F", + "loss": 6.230333, + "metrics": { + "blind": { + "mae": 2.4184679991956726, + "max_error": 5.751181279309094, + "r2": 0.4551374783487877, + "rmse": 2.8022793496604264 + }, + "train": { + "mae": 2.1528677745667726, + "max_error": 5.56093297235202, + "r2": 0.483570939447598, + "rmse": 2.496063440324064 + }, + "validation": { + "mae": 1.955529954665018, + "max_error": 4.690463332692161, + "r2": 0.4751896389217174, + "rmse": 2.3524707592077654 + } + }, + "score": 0.015980716225110724, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.3322020899504423, + 3.7342512514442205 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s", + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "(Cl_F - Cl_rear_s)*2.1342423", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.3864668290324642, + "max_error": 4.395499430741707, + "r2": 0.8697120440701003, + "rmse": 1.741640945554997 + }, + "train": { + "mae": 1.7127666895452982, + "max_error": 4.503891117441089, + "r2": 0.8001311824423234, + "rmse": 2.0212979339542274 + }, + "validation": { + "mae": 2.09991304360981, + "max_error": 4.669953336131166, + "r2": 0.694812254461288, + "rmse": 2.4055831410575395 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*2.1342423", + "loss": 4.0856447, + "metrics": { + "blind": { + "mae": 1.3864668290324642, + "max_error": 4.395499430741707, + "r2": 0.8697120440701003, + "rmse": 1.741640945554997 + }, + "train": { + "mae": 1.7127666895452982, + "max_error": 4.503891117441089, + "r2": 0.8001311824423234, + "rmse": 2.0212979339542274 + }, + "validation": { + "mae": 2.09991304360981, + "max_error": 4.669953336131166, + "r2": 0.694812254461288, + "rmse": 2.4055831410575395 + } + }, + "score": 0.2544839540903014, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5667498035945107, + 1.300007071228249 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1.5L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 9.154741, + "metrics": { + "blind": { + "mae": 2.803621444680016, + "max_error": 6.160513136186637, + "r2": -0.34409202415370643, + "rmse": 3.259815973005322 + }, + "train": { + "mae": 2.53182666864604, + "max_error": 6.420141713228077, + "r2": -0.25720254553019894, + "rmse": 3.0256804718266026 + }, + "validation": { + "mae": 2.5128238714135547, + "max_error": 5.706686818040907, + "r2": -0.23500276794665464, + "rmse": 2.9385621971416147 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.0987235143838916, + 2.9128919122740626 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.190663890000000", + "loss": 7.281835, + "metrics": { + "blind": { + "mae": 2.5605956277791844, + "max_error": 4.544530316237793, + "r2": -0.0030248976677866857, + "rmse": 2.8160115917255135 + }, + "train": { + "mae": 2.3945216725633918, + "max_error": 4.857584551926269, + "r2": -5.631761723634554e-11, + "rmse": 2.6984876601948518 + }, + "validation": { + "mae": 2.3222543578847716, + "max_error": 4.9301324645239255, + "r2": -0.009528911260813233, + "rmse": 2.656808807745873 + } + }, + "score": 0.22888899628841797, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.19066389, + -0.19066389 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 1.4311044, + "metrics": { + "blind": { + "mae": 1.0367433372055301, + "max_error": 2.118045859155245, + "r2": 0.8211826087443591, + "rmse": 1.1890043919390938 + }, + "train": { + "mae": 1.0005956655373758, + "max_error": 2.709564130695071, + "r2": 0.8034692820552423, + "rmse": 1.1962877532628584 + }, + "validation": { + "mae": 0.9293504770241083, + "max_error": 1.9715372623177245, + "r2": 0.8337965133006328, + "rmse": 1.0780055259095744 + } + }, + "score": 1.6269364369982608, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_rear_s)*1.2746769", + "loss": 1.0749221, + "metrics": { + "blind": { + "mae": 0.8917095611656596, + "max_error": 1.7161136540071604, + "r2": 0.8767878206923864, + "rmse": 0.9869732930341507 + }, + "train": { + "mae": 0.892449001053716, + "max_error": 2.713481605909691, + "r2": 0.8523830824883538, + "rmse": 1.0367845160626001 + }, + "validation": { + "mae": 0.7619258330612954, + "max_error": 2.085163333512679, + "r2": 0.8830349389057175, + "rmse": 0.9043342887701387 + } + }, + "score": 0.09539942001679175, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7764296413445204, + 1.5329921456066442 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 16.349226, + "metrics": { + "blind": { + "mae": 3.739293554914184, + "max_error": 10.276724819093943, + "r2": -0.40104513887056603, + "rmse": 4.493595978972901 + }, + "train": { + "mae": 3.293040373725659, + "max_error": 9.735904386267066, + "r2": -0.35517881233786364, + "rmse": 4.0434174803282605 + }, + "validation": { + "mae": 2.8207295660216074, + "max_error": 7.7155923917889595, + "r2": -0.19514555292858704, + "rmse": 3.5500415294033356 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.2752949260175228, + 3.448729170486331 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "0.143822970000000", + "loss": 12.064255, + "metrics": { + "blind": { + "mae": 3.4650382982698176, + "max_error": 7.235414805021973, + "r2": -0.003516160228901777, + "rmse": 3.803033436176176 + }, + "train": { + "mae": 3.0914863388417126, + "max_error": 6.5970185418994145, + "r2": -6.612488334667432e-12, + "rmse": 3.4733638727006206 + }, + "validation": { + "mae": 2.919129580003699, + "max_error": 5.649133382233886, + "r2": -0.01176678364264716, + "rmse": 3.266353936603964 + } + }, + "score": 0.3039336084630583, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.14382297, + 0.14382297 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_rear_s", + "loss": 3.0023906, + "metrics": { + "blind": { + "mae": 1.7378769449276887, + "max_error": 3.920401564799249, + "r2": 0.7467975725709302, + "rmse": 1.9103013864961396 + }, + "train": { + "mae": 1.5448515553122226, + "max_error": 3.2163007268682122, + "r2": 0.7511333487526752, + "rmse": 1.732740932126008 + }, + "validation": { + "mae": 1.3992787267490758, + "max_error": 2.6556578685413115, + "r2": 0.7745324209071407, + "rmse": 1.5419315136082006 + } + }, + "score": 1.3908381103050131, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6091187824495137, + 1.202651546918787 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s - (Cl_F + Cl_F)", + "loss": 1.7148405, + "metrics": { + "blind": { + "mae": 0.978274441301096, + "max_error": 2.753370095626451, + "r2": 0.8898878284685252, + "rmse": 1.2597536408060677 + }, + "train": { + "mae": 1.0809501346135468, + "max_error": 3.2522147961426526, + "r2": 0.8578577515580312, + "rmse": 1.3095192086343115 + }, + "validation": { + "mae": 1.0830210981939439, + "max_error": 2.44301188190002, + "r2": 0.852389609240439, + "rmse": 1.2476176171146902 + } + }, + "score": 0.28004438231384526, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.941320872399956, + 4.936902798363008 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - Cl_F + Cl_rear_s + Cl_rear_s", + "loss": 1.1222332, + "metrics": { + "blind": { + "mae": 0.6979470132005645, + "max_error": 2.479627622757107, + "r2": 0.9485205438022372, + "rmse": 0.8613604634981914 + }, + "train": { + "mae": 0.8454848639843383, + "max_error": 3.1988168857060373, + "r2": 0.9069786844782092, + "rmse": 1.0593550013993294 + }, + "validation": { + "mae": 0.8033325217536633, + "max_error": 2.6718126222258434, + "r2": 0.8907674954801773, + "rmse": 1.0732452607177319 + } + }, + "score": 0.21199972236802253, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2182375648990273, + 2.405303093837574 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_F + Cl_F - Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cd_rear_a**2", + "loss": 20.425358, + "metrics": { + "blind": { + "mae": 4.3682377253475995, + "max_error": 8.003182794611417, + "r2": -0.0027298701148659177, + "rmse": 4.831683379013161 + }, + "train": { + "mae": 3.9975417509577063, + "max_error": 8.367744123190592, + "r2": 0.0007963527660341807, + "rmse": 4.519441984862817 + }, + "validation": { + "mae": 3.829696441495133, + "max_error": 8.640100389411396, + "r2": -0.006889634563786107, + "rmse": 4.369459929339718 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.002296888026998012, + 1.4033054259111113 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_F - Cl_rear_s", + "loss": 8.717063, + "metrics": { + "blind": { + "mae": 2.6731962888787395, + "max_error": 6.109325527213514, + "r2": 0.5967398101438517, + "rmse": 3.0640734108353294 + }, + "train": { + "mae": 2.5037562090053713, + "max_error": 5.714875306526665, + "r2": 0.5735632603128857, + "rmse": 2.952467445307398 + }, + "validation": { + "mae": 2.441059390421194, + "max_error": 6.046982986154035, + "r2": 0.5401787321138756, + "rmse": 2.9527817856908025 + } + }, + "score": 0.8514947988718344, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.202651546918787, + 0.6091187824495137 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_F + Cl_F - Cl_rear_s", + "loss": 5.2696476, + "metrics": { + "blind": { + "mae": 1.7507548859063036, + "max_error": 4.173646760173142, + "r2": 0.8144970904736049, + "rmse": 2.0781737455372644 + }, + "train": { + "mae": 1.9594601366085753, + "max_error": 4.888490844692569, + "r2": 0.7422100753654481, + "rmse": 2.2955712676139184 + }, + "validation": { + "mae": 2.010805040541387, + "max_error": 4.950400014640763, + "r2": 0.6882747120400154, + "rmse": 2.431212070881803 + } + }, + "score": 0.25165943900659005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.936902798363008, + 3.941320872399956 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F + Cl_F - Cl_rear_s - Cl_rear_s", + "loss": 4.15036, + "metrics": { + "blind": { + "mae": 1.458321751790163, + "max_error": 4.598337886855006, + "r2": 0.8600721336236876, + "rmse": 1.8049226588130487 + }, + "train": { + "mae": 1.7213386663575352, + "max_error": 4.626044531352818, + "r2": 0.7969653396269547, + "rmse": 2.0372433187672905 + }, + "validation": { + "mae": 2.0525161012539264, + "max_error": 4.799244604422711, + "r2": 0.701954611732467, + "rmse": 2.3772673684953998 + } + }, + "score": 0.11938420688948492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.405303093837574, + 1.2182375648990273 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1.5L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "n_head_fits": 72 + }, + "illusion_1L": { + "feature_frequency": { + "Cd_F": 13, + "Cd_rear_a": 4, + "Cd_rear_s": 1, + "Cl_F": 3, + "Cl_err": 2, + "Cl_rear_s": 12, + "target_Cd": 2, + "target_Cl": 3 + }, + "fits": [ + { + "expression": "Cd_F - 1*1.0395364 - 0.19649251", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16234323427359892, + "max_error": 0.3833053015730048, + "r2": 0.24303819568339258, + "rmse": 0.19478112374421025 + }, + "train": { + "mae": 0.16105853832312497, + "max_error": 0.4767623025366402, + "r2": 0.5666932314134521, + "rmse": 0.2007565383218496 + }, + "validation": { + "mae": 0.1816569747971515, + "max_error": 0.43539487538846966, + "r2": 0.404539701230625, + "rmse": 0.21504233831676142 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 22.85003, + "metrics": { + "blind": { + "mae": 4.9293365005054515, + "max_error": 5.253181368112564, + "r2": -484.3858649311181, + "rmse": 4.932345002862499 + }, + "train": { + "mae": 4.76388085092481, + "max_error": 5.310444512404501, + "r2": -244.66477884850693, + "rmse": 4.7801707468783965 + }, + "validation": { + "mae": 4.939395042673613, + "max_error": 5.324023731984198, + "r2": -313.8065744425589, + "rmse": 4.944466799877614 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.975766642019153, + 5.967098171822727 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "0.803519100000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123840035484313, + "max_error": 0.49805697803649907, + "r2": -0.1101403716744298, + "rmse": 0.23588418939942235 + }, + "train": { + "mae": 0.24896455923536912, + "max_error": 0.6767682134613037, + "r2": -3.0971283315750497e-09, + "rmse": 0.30498042309986884 + }, + "validation": { + "mae": 0.24085299250533268, + "max_error": 0.4790464937194824, + "r2": -0.0002597827693773258, + "rmse": 0.2787109118045739 + } + }, + "score": 5.503968010853966, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035191, + 0.8035191 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.0395364", + "loss": 0.069352895, + "metrics": { + "blind": { + "mae": 0.24812038914498508, + "max_error": 0.5797978115730047, + "r2": -0.929659220443469, + "rmse": 0.31099269910393906 + }, + "train": { + "mae": 0.21563635221502894, + "max_error": 0.6141860557250738, + "r2": 0.25437483818888285, + "rmse": 0.26334934319371084 + }, + "validation": { + "mae": 0.2530321167743592, + "max_error": 0.6318873853884697, + "r2": -0.28500480956538565, + "rmse": 0.31590023202990736 + } + }, + "score": 0.14676590385768232, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7287107079751849, + 1.3821877443693638 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_F - 1*1.0395364 - 0.19649251", + "loss": 0.04030319, + "metrics": { + "blind": { + "mae": 0.16234323427359892, + "max_error": 0.3833053015730048, + "r2": 0.24303819568339258, + "rmse": 0.19478112374421025 + }, + "train": { + "mae": 0.16105853832312497, + "max_error": 0.4767623025366402, + "r2": 0.5666932314134521, + "rmse": 0.2007565383218496 + }, + "validation": { + "mae": 0.1816569747971515, + "max_error": 0.43539487538846966, + "r2": 0.404539701230625, + "rmse": 0.21504233831676142 + } + }, + "score": 0.18092575617165296, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.532218197975185, + 1.1856952343693639 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s2-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942243750000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274247952222823, + "max_error": 0.35665648689270024, + "r2": -0.003754423946049412, + "rmse": 0.14831904001268342 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180803369522095, + "r2": -5.5067062021407764e-14, + "rmse": 0.226193474048947 + }, + "validation": { + "mae": 0.11859161282319287, + "max_error": 0.32858567943573, + "r2": -0.007764034367198969, + "rmse": 0.1445585639935358 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_s", + "loss": 930.02747, + "metrics": { + "blind": { + "mae": 29.78763811495155, + "max_error": 39.15629816055298, + "r2": -45005.44857889332, + "rmse": 31.40657241791608 + }, + "train": { + "mae": 28.03092538533827, + "max_error": 50.02856117486954, + "r2": -18176.562520950953, + "rmse": 30.49635218348233 + }, + "validation": { + "mae": 28.720286585127887, + "max_error": 39.819745779037476, + "r2": -46296.18864870921, + "rmse": 30.984301341818675 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -44.143104553222656, + 48.6307218670845 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942243750000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274247952222823, + "max_error": 0.35665648689270024, + "r2": -0.003754423946049412, + "rmse": 0.14831904001268342 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180803369522095, + "r2": -5.5067062021407764e-14, + "rmse": 0.226193474048947 + }, + "validation": { + "mae": 0.11859161282319287, + "max_error": 0.32858567943573, + "r2": -0.007764034367198969, + "rmse": 0.1445585639935358 + } + }, + "score": 9.807943347402686, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224375, + -0.94224375 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-0.5385857*Cd_rear_s", + "loss": 0.038173143, + "metrics": { + "blind": { + "mae": 0.10122940305431354, + "max_error": 0.27560980323089745, + "r2": 0.2861166367090472, + "rmse": 0.12508257124543656 + }, + "train": { + "mae": 0.14181860737491403, + "max_error": 0.5263863144511067, + "r2": 0.2538986146542759, + "rmse": 0.19537950008592625 + }, + "validation": { + "mae": 0.09153287267990577, + "max_error": 0.2784680166966601, + "r2": 0.3581232995674145, + "rmse": 0.11536928567874152 + } + }, + "score": 0.14644692470210005, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1023553835834607, + -0.7100389701635198 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s2-20260718", + "used_features": [] + }, + { + "expression": "0.59087545*Cl_rear_s", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2179201313092724, + "max_error": 0.3679459205005376, + "r2": 0.6470946626492444, + "rmse": 0.2425545484108187 + }, + "train": { + "mae": 0.2587417199615073, + "max_error": 0.5955882114583568, + "r2": 0.47239498859229445, + "rmse": 0.2984281272272765 + }, + "validation": { + "mae": 0.2294653517012248, + "max_error": 0.4469779183984327, + "r2": 0.5579655622809336, + "rmse": 0.2660832983870146 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.17075412, + "metrics": { + "blind": { + "mae": 0.27673085175920276, + "max_error": 0.601998895406723, + "r2": 0.3108234960479447, + "rmse": 0.3389577287731067 + }, + "train": { + "mae": 0.3492160899785616, + "max_error": 0.9297878360375762, + "r2": -0.011580860521255065, + "rmse": 0.4132240590406017 + }, + "validation": { + "mae": 0.2720837906982081, + "max_error": 0.6755692316219211, + "r2": 0.3105860059099895, + "rmse": 0.3322994405475299 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8168652420863509, + 1.2932776589877903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.12166269851182035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "0.59087545*Cl_rear_s", + "loss": 0.089059345, + "metrics": { + "blind": { + "mae": 0.2179201313092724, + "max_error": 0.3679459205005376, + "r2": 0.6470946626492444, + "rmse": 0.2425545484108187 + }, + "train": { + "mae": 0.2587417199615073, + "max_error": 0.5955882114583568, + "r2": 0.47239498859229445, + "rmse": 0.2984281272272765 + }, + "validation": { + "mae": 0.2294653517012248, + "max_error": 0.4469779183984327, + "r2": 0.5579655622809336, + "rmse": 0.2660832983870146 + } + }, + "score": 0.17384488000822373, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4826656175071315, + 0.7641660187293571 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cd_rear_a + Cl_rear_s)*0.40437156", + "loss": 0.06432144, + "metrics": { + "blind": { + "mae": 0.22096450574292564, + "max_error": 0.4897902084728633, + "r2": 0.594682048861876, + "rmse": 0.2599430611332611 + }, + "train": { + "mae": 0.21352236696152382, + "max_error": 0.4875576597469533, + "r2": 0.618947158535113, + "rmse": 0.25361673062769274 + }, + "validation": { + "mae": 0.2529045428988639, + "max_error": 0.4414542244211701, + "r2": 0.47970473285198323, + "rmse": 0.2886785401783229 + } + }, + "score": 0.16270496629714906, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.08108422346829436, + 0.30367014871287623 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s2-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "Cd_F - 1.2064608", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16511078309486626, + "max_error": 0.4128734115730046, + "r2": 0.16504564621448026, + "rmse": 0.2045696729897131 + }, + "train": { + "mae": 0.16017004297526116, + "max_error": 0.4472616557250737, + "r2": 0.5727596279574638, + "rmse": 0.19934626553874576 + }, + "validation": { + "mae": 0.18544714406222257, + "max_error": 0.4649629853884696, + "r2": 0.36433211897167994, + "rmse": 0.22218395966588034 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.71638745, + "metrics": { + "blind": { + "mae": 0.7555996993090958, + "max_error": 1.5304674226790667, + "r2": -16.12660692274411, + "rmse": 0.9265002678971328 + }, + "train": { + "mae": 0.7051824198372788, + "max_error": 1.4891180042177439, + "r2": -6.702010276024187, + "rmse": 0.8463967922634102 + }, + "validation": { + "mae": 0.5192852084142848, + "max_error": 1.5245017381384969, + "r2": -5.128856872679614, + "rmse": 0.689901847583349 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8168652420863509, + 1.2932776589877903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 2.0414814535090176, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1.2064608", + "loss": 0.03973893, + "metrics": { + "blind": { + "mae": 0.16511078309486626, + "max_error": 0.4128734115730046, + "r2": 0.16504564621448026, + "rmse": 0.2045696729897131 + }, + "train": { + "mae": 0.16017004297526116, + "max_error": 0.4472616557250737, + "r2": 0.5727596279574638, + "rmse": 0.19934626553874576 + }, + "validation": { + "mae": 0.18544714406222257, + "max_error": 0.4649629853884696, + "r2": 0.36433211897167994, + "rmse": 0.22218395966588034 + } + }, + "score": 0.42520419331460163, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5617863079751848, + 1.2152633443693637 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_F - 0.9738043 - 1*0.23789898", + "loss": 0.039711438, + "metrics": { + "blind": { + "mae": 0.1645865350948663, + "max_error": 0.4076309315730049, + "r2": 0.1814182428760216, + "rmse": 0.20255404244933106 + }, + "train": { + "mae": 0.1599570131321772, + "max_error": 0.45243667253664, + "r2": 0.5730551063124315, + "rmse": 0.19927731993084608 + }, + "validation": { + "mae": 0.18477503124170974, + "max_error": 0.45972050538846987, + "r2": 0.3731031200897549, + "rmse": 0.22064577837397922 + } + }, + "score": 0.00023068490672691373, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5565438279751849, + 1.2100208643693637 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s0-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942241300000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274296952222825, + "max_error": 0.35665403689270014, + "r2": -0.0037564522975219727, + "rmse": 0.14831918987154535 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180778869522094, + "r2": -1.1227774265876178e-10, + "rmse": 0.22619347406163898 + }, + "validation": { + "mae": 0.11859242948985955, + "max_error": 0.32858322943572993, + "r2": -0.007767032958891251, + "rmse": 0.1445587790596484 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.46353057, + "metrics": { + "blind": { + "mae": 0.5827726590187012, + "max_error": 1.3141757168341428, + "r2": -21.72259987442313, + "rmse": 0.7056871025605645 + }, + "train": { + "mae": 0.5669855430052725, + "max_error": 1.4811755518894643, + "r2": -8.059791255049982, + "rmse": 0.6808307561086059 + }, + "validation": { + "mae": 0.6131191903640194, + "max_error": 1.2822435218840837, + "r2": -24.243064396910242, + "rmse": 0.7234948357979383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942241300000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274296952222825, + "max_error": 0.35665403689270014, + "r2": -0.0037564522975219727, + "rmse": 0.14831918987154535 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180778869522094, + "r2": -1.1227774265876178e-10, + "rmse": 0.22619347406163898 + }, + "validation": { + "mae": 0.11859242948985955, + "max_error": 0.32858322943572993, + "r2": -0.007767032958891251, + "rmse": 0.1445587790596484 + } + }, + "score": 2.2038462825986183, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9422413, + -0.9422413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.8962113 - Cd_rear_s", + "loss": 0.04216251, + "metrics": { + "blind": { + "mae": 0.09761728905270912, + "max_error": 0.27137455712203984, + "r2": 0.375462698560446, + "rmse": 0.11699366897279681 + }, + "train": { + "mae": 0.15294666633053447, + "max_error": 0.6327283936100185, + "r2": 0.17592575850984993, + "rmse": 0.20533512198425105 + }, + "validation": { + "mae": 0.0859115389512393, + "max_error": 0.21411644439081545, + "r2": 0.49032212103241934, + "rmse": 0.1028045390860861 + } + }, + "score": 0.09674730867980293, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1505481731599092, + -0.42212851140516694 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_s*(-0.75612694) - 1*(-0.40070465)", + "loss": 0.036776718, + "metrics": { + "blind": { + "mae": 0.09647140368693638, + "max_error": 0.23016695948502308, + "r2": 0.358706018933343, + "rmse": 0.11855278250072669 + }, + "train": { + "mae": 0.1414564679066486, + "max_error": 0.5546943357822418, + "r2": 0.28119205198590536, + "rmse": 0.19177257783258628 + }, + "validation": { + "mae": 0.085029121941808, + "max_error": 0.2381038199598846, + "r2": 0.43962393932018207, + "rmse": 0.10779638203327546 + } + }, + "score": 0.04555548521654467, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1469053273564143, + -0.5961275974779661 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s0-20260718", + "used_features": [] + }, + { + "expression": "0.0697473046381225*(Cd_F + Cl_rear_s)**2", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.19569280077134968, + "max_error": 0.5056468681458284, + "r2": 0.6580990877377474, + "rmse": 0.23874288598544186 + }, + "train": { + "mae": 0.18713746015863228, + "max_error": 0.6193364514215287, + "r2": 0.6557284109024092, + "rmse": 0.24106595998307723 + }, + "validation": { + "mae": 0.1434142453932822, + "max_error": 0.5176470071699228, + "r2": 0.7679608848431232, + "rmse": 0.1927836342558092 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a**2 + Cl_rear_s", + "loss": 0.09910931, + "metrics": { + "blind": { + "mae": 0.21824468822194518, + "max_error": 0.5959173027974658, + "r2": 0.558661099801377, + "rmse": 0.27124791828932077 + }, + "train": { + "mae": 0.2594922631320915, + "max_error": 0.8602284563919619, + "r2": 0.4128570230918519, + "rmse": 0.3148163162072535 + }, + "validation": { + "mae": 0.25218801999895757, + "max_error": 0.5403949515593882, + "r2": 0.45754933741569415, + "rmse": 0.29476077163606684 + } + }, + "score": 0.21116927302919797, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10437763279571655, + 1.58737729903945 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s*0.50780374821225", + "loss": 0.09214402, + "metrics": { + "blind": { + "mae": 0.23015542885757762, + "max_error": 0.41578265985894336, + "r2": 0.6167538507542205, + "rmse": 0.2527663222891317 + }, + "train": { + "mae": 0.2715782824017221, + "max_error": 0.5657427888268746, + "r2": 0.4541207641331009, + "rmse": 0.30355233994934583 + }, + "validation": { + "mae": 0.26386511821353503, + "max_error": 0.5098439180082844, + "r2": 0.46266966763818773, + "rmse": 0.29336631209987374 + } + }, + "score": 0.0728705946170612, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.414807231715756, + 0.6567312427131641 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "0.0697473046381225*(Cd_F + Cl_rear_s)**2", + "loss": 0.058112796, + "metrics": { + "blind": { + "mae": 0.19569280077134968, + "max_error": 0.5056468681458284, + "r2": 0.6580990877377474, + "rmse": 0.23874288598544186 + }, + "train": { + "mae": 0.18713746015863228, + "max_error": 0.6193364514215287, + "r2": 0.6557284109024092, + "rmse": 0.24106595998307723 + }, + "validation": { + "mae": 0.1434142453932822, + "max_error": 0.5176470071699228, + "r2": 0.7679608848431232, + "rmse": 0.1927836342558092 + } + }, + "score": 0.230483453621812, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.06313020032222702, + 0.9625991789947039 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s0-20260718", + "used_features": [ + "Cd_F", + "Cl_rear_s" + ] + }, + { + "expression": "0.803504000000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.19123387035484316, + "max_error": 0.498041878036499, + "r2": -0.11009560795201012, + "rmse": 0.23587943362209404 + }, + "train": { + "mae": 0.24896097618452173, + "max_error": 0.6767833134613037, + "r2": -3.7705394362319566e-11, + "rmse": 0.3049804226333368 + }, + "validation": { + "mae": 0.24085260532584557, + "max_error": 0.4790615937194824, + "r2": -0.0002615323902150912, + "rmse": 0.27871115556035325 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.6476278, + "metrics": { + "blind": { + "mae": 1.480902001503273, + "max_error": 2.9576990716159344, + "r2": -60.939521876736336, + "rmse": 1.7619509267689957 + }, + "train": { + "mae": 1.381970311505445, + "max_error": 2.9085206631571054, + "r2": -27.465118152492117, + "rmse": 1.6271532475436994 + }, + "validation": { + "mae": 1.1038513973083657, + "max_error": 2.9586687702685595, + "r2": -23.08611445248322, + "rmse": 1.3676688046981806 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.101584803313017, + 2.1354956552386284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.803504000000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123387035484316, + "max_error": 0.498041878036499, + "r2": -0.11009560795201012, + "rmse": 0.23587943362209404 + }, + "train": { + "mae": 0.24896097618452173, + "max_error": 0.6767833134613037, + "r2": -3.7705394362319566e-11, + "rmse": 0.3049804226333368 + }, + "validation": { + "mae": 0.24085260532584557, + "max_error": 0.4790615937194824, + "r2": -0.0002615323902150912, + "rmse": 0.27871115556035325 + } + }, + "score": 3.3486796498873748, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.803504, + 0.803504 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd - 4.843399", + "loss": 0.08078733, + "metrics": { + "blind": { + "mae": 0.1628010710832358, + "max_error": 0.4078796760926249, + "r2": 0.20531985195587354, + "rmse": 0.19957496699500452 + }, + "train": { + "mae": 0.23660908614306744, + "max_error": 0.6804012289454935, + "r2": 0.1314410194148743, + "rmse": 0.2842311154663145 + }, + "validation": { + "mae": 0.20752600473901553, + "max_error": 0.3729730391690733, + "r2": 0.28611153133757516, + "rmse": 0.2354576210339294 + } + }, + "score": 0.0704597760384715, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6469561936149599, + 0.944137967545748 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 5.0, + "expression": "(target_Cd - 4.7548404)**2", + "loss": 0.07964785, + "metrics": { + "blind": { + "mae": 0.15928599742527186, + "max_error": 0.38380088402706747, + "r2": 0.30536991916018386, + "rmse": 0.18658927504137973 + }, + "train": { + "mae": 0.23505345122212698, + "max_error": 0.6915769182283427, + "r2": 0.14369179470401483, + "rmse": 0.28221949777510363 + }, + "validation": { + "mae": 0.1854976534691091, + "max_error": 0.35914939429666914, + "r2": 0.4247977754227169, + "rmse": 0.21135272266078295 + } + }, + "score": 0.014205103403916853, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5409820116264569, + 1.0664622006207691 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "-0.942262350000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12273875952222824, + "max_error": 0.3566750868927002, + "r2": -0.003739042897652256, + "rmse": 0.14831790362363365 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180989369522095, + "r2": -6.800607854628993e-09, + "rmse": 0.2261934748180673 + }, + "validation": { + "mae": 0.11858541282319288, + "max_error": 0.32860427943573, + "r2": -0.007741288430127113, + "rmse": 0.14455693259052793 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 3.0248346, + "metrics": { + "blind": { + "mae": 1.2764834593894192, + "max_error": 3.167892448604107, + "r2": -113.74844628316532, + "rmse": 1.5858298071747228 + }, + "train": { + "mae": 1.405719258370374, + "max_error": 3.553594645112753, + "r2": -58.12096192534913, + "rmse": 1.7392051657057173 + }, + "validation": { + "mae": 1.7438528197205578, + "max_error": 3.136259203776717, + "r2": -195.73070351076083, + "rmse": 2.0197632712402607 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.101584803313017, + 2.1354956552386284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942262350000000", + "loss": 0.05116348, + "metrics": { + "blind": { + "mae": 0.12273875952222824, + "max_error": 0.3566750868927002, + "r2": -0.003739042897652256, + "rmse": 0.14831790362363365 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180989369522095, + "r2": -6.800607854628993e-09, + "rmse": 0.2261934748180673 + }, + "validation": { + "mae": 0.11858541282319288, + "max_error": 0.32860427943573, + "r2": -0.007741288430127113, + "rmse": 0.14455693259052793 + } + }, + "score": 4.079585694994751, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94226235, + -0.94226235 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "4.7046576 - target_Cd", + "loss": 0.043664064, + "metrics": { + "blind": { + "mae": 0.118849568389256, + "max_error": 0.30855725400099754, + "r2": 0.037462524510548656, + "rmse": 0.1452419240067384 + }, + "train": { + "mae": 0.15464722434345465, + "max_error": 0.6750512265419006, + "r2": 0.14657768358661083, + "rmse": 0.2089594749962524 + }, + "validation": { + "mae": 0.11571286634172293, + "max_error": 0.27034069530715943, + "r2": 0.045962804337256524, + "rmse": 0.14065236904696343 + } + }, + "score": 0.07925028329304343, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0828793675457478, + -0.7856975936149597 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s1-20260718", + "used_features": [] + }, + { + "expression": "(-target_Cl - 1.3644923)*(-0.22505078)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.11820863035524412, + "max_error": 0.34313217829641285, + "r2": 0.8627365984140306, + "rmse": 0.15127170022592154 + }, + "train": { + "mae": 0.18720899326198392, + "max_error": 0.6105076283122236, + "r2": 0.666743727886962, + "rmse": 0.23717803326668183 + }, + "validation": { + "mae": 0.15005401415939634, + "max_error": 0.4274340564816245, + "r2": 0.7715230650618408, + "rmse": 0.19129813884223487 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 28.820745, + "metrics": { + "blind": { + "mae": 5.418639480881393, + "max_error": 6.0763815604150295, + "r2": -176.2205137926703, + "rmse": 5.435472530759538 + }, + "train": { + "mae": 5.352680397867146, + "max_error": 6.031478215008974, + "r2": -169.73974012872955, + "rmse": 5.368495650319664 + }, + "validation": { + "mae": 5.20732899564199, + "max_error": 6.071603357791901, + "r2": -169.29195322602436, + "rmse": 5.222598337569704 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 5.49035519361496, + 5.787536967545748 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "0.294221000000000", + "loss": 0.16879924, + "metrics": { + "blind": { + "mae": 0.3724867193957567, + "max_error": 0.667314068599701, + "r2": -0.03234078724974032, + "rmse": 0.4148507244641141 + }, + "train": { + "mae": 0.36908401607574653, + "max_error": 0.7223586279907226, + "r2": -1.4632739464559563e-13, + "rmse": 0.41085189792521676 + }, + "validation": { + "mae": 0.3834750396417226, + "max_error": 0.6489756543197631, + "r2": -0.12580521816256485, + "rmse": 0.4246402837763002 + } + }, + "score": 5.140140639541446, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.294221, + 0.294221 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.21710864", + "loss": 0.150434, + "metrics": { + "blind": { + "mae": 0.30103303569660467, + "max_error": 0.5398254497152754, + "r2": 0.3312884731393979, + "rmse": 0.3338871570952307 + }, + "train": { + "mae": 0.3482561089163519, + "max_error": 0.7094304914609761, + "r2": 0.10879946239716065, + "rmse": 0.3878582355590451 + }, + "validation": { + "mae": 0.3523616459025584, + "max_error": 0.6599138623907045, + "r2": 0.05537675424586741, + "rmse": 0.3889724811232805 + } + }, + "score": 0.057592814992551575, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4562722184919566, + 0.46363455743476745 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "(-target_Cl - 1.3644923)*(-0.22505078)", + "loss": 0.056253422, + "metrics": { + "blind": { + "mae": 0.11820863035524412, + "max_error": 0.34313217829641285, + "r2": 0.8627365984140306, + "rmse": 0.15127170022592154 + }, + "train": { + "mae": 0.18720899326198392, + "max_error": 0.6105076283122236, + "r2": 0.666743727886962, + "rmse": 0.23717803326668183 + }, + "validation": { + "mae": 0.15005401415939634, + "max_error": 0.4274340564816245, + "r2": 0.7715230650618408, + "rmse": 0.19129813884223487 + } + }, + "score": 0.3278858583357573, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.16588324280274708, + 0.7876750193170584 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s1-20260718", + "used_features": [ + "target_Cl" + ] + }, + { + "expression": "Cd_F - 1*1.1971676", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16604010309486628, + "max_error": 0.4221666115730047, + "r2": 0.1333272576168858, + "rmse": 0.2084190696930846 + }, + "train": { + "mae": 0.16083104244246268, + "max_error": 0.4565548557250738, + "r2": 0.5707835403528801, + "rmse": 0.19980674547069252 + }, + "validation": { + "mae": 0.18663857995965846, + "max_error": 0.4742561853884697, + "r2": 0.3470445825354267, + "rmse": 0.2251849352382468 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 0.87259287, + "metrics": { + "blind": { + "mae": 0.7672155196485619, + "max_error": 1.6639559054747224, + "r2": -16.238205505201513, + "rmse": 0.9295139479811793 + }, + "train": { + "mae": 0.8333614186206016, + "max_error": 1.5885829450562596, + "r2": -8.38140059799011, + "rmse": 0.9341267364164152 + }, + "validation": { + "mae": 0.8691019496055117, + "max_error": 1.5712010501883924, + "r2": -12.024528187807253, + "rmse": 1.0057234310359096 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7121316739358008, + 0.6465766200562939 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "0.803506100000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123450035484313, + "max_error": 0.498043978036499, + "r2": -0.11010183282567798, + "rmse": 0.2358800949694619 + }, + "train": { + "mae": 0.2489614744896064, + "max_error": 0.6767812134613037, + "r2": -1.696809359685858e-10, + "rmse": 0.30498042265346176 + }, + "validation": { + "mae": 0.2408526591719994, + "max_error": 0.4790594937194824, + "r2": -0.0002612887139286091, + "rmse": 0.2787111216115802 + } + }, + "score": 2.2387293912950503, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035061, + 0.8035061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.1971676", + "loss": 0.03992274, + "metrics": { + "blind": { + "mae": 0.16604010309486628, + "max_error": 0.4221666115730047, + "r2": 0.1333272576168858, + "rmse": 0.2084190696930846 + }, + "train": { + "mae": 0.16083104244246268, + "max_error": 0.4565548557250738, + "r2": 0.5707835403528801, + "rmse": 0.19980674547069252 + }, + "validation": { + "mae": 0.18663857995965846, + "max_error": 0.4742561853884697, + "r2": 0.3470445825354267, + "rmse": 0.2251849352382468 + } + }, + "score": 0.42289680600771257, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5710795079751849, + 1.2245565443693638 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942249240000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274138152222824, + "max_error": 0.3566619768927002, + "r2": -0.00374988077191607, + "rmse": 0.1483187043528983 + }, + "train": { + "mae": 0.16644193711927388, + "max_error": 0.7180858269522095, + "r2": -6.005713704126947e-10, + "rmse": 0.2261934741168634 + }, + "validation": { + "mae": 0.1185897828231929, + "max_error": 0.32859116943572997, + "r2": -0.007757317176130263, + "rmse": 0.14455808221948954 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.46353057, + "metrics": { + "blind": { + "mae": 0.5827726590187012, + "max_error": 1.3141757168341428, + "r2": -21.72259987442313, + "rmse": 0.7056871025605645 + }, + "train": { + "mae": 0.5669855430052725, + "max_error": 1.4811755518894643, + "r2": -8.059791255049982, + "rmse": 0.6808307561086059 + }, + "validation": { + "mae": 0.6131191903640194, + "max_error": 1.2822435218840837, + "r2": -24.243064396910242, + "rmse": 0.7234948357979383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942249240000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274138152222824, + "max_error": 0.3566619768927002, + "r2": -0.00374988077191607, + "rmse": 0.1483187043528983 + }, + "train": { + "mae": 0.16644193711927388, + "max_error": 0.7180858269522095, + "r2": -6.005713704126947e-10, + "rmse": 0.2261934741168634 + }, + "validation": { + "mae": 0.1185897828231929, + "max_error": 0.32859116943572997, + "r2": -0.007757317176130263, + "rmse": 0.14455808221948954 + } + }, + "score": 2.2038462825986183, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224924, + -0.94224924 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "-Cd_rear_s + Cd_rear_s*0.407908233687764", + "loss": 0.049414404, + "metrics": { + "blind": { + "mae": 0.1397743706214069, + "max_error": 0.3621292056517029, + "r2": -0.39005756485604337, + "rmse": 0.17454184502612693 + }, + "train": { + "mae": 0.17401915264209836, + "max_error": 0.5878565877103972, + "r2": 0.0341862277658852, + "rmse": 0.2222935020607664 + }, + "validation": { + "mae": 0.13197281439577935, + "max_error": 0.3670967299800967, + "r2": -0.38605234117467413, + "rmse": 0.16953298676104428 + } + }, + "score": 0.006956818856913556, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2118694316795524, + -0.7805781475346255 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [] + }, + { + "expression": "(Cl_F - Cl_rear_s)*(-0.5423442)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.17457551462063783, + "max_error": 0.4196667261955416, + "r2": 0.7454528335390933, + "rmse": 0.2059986826635149 + }, + "train": { + "mae": 0.14304126607514106, + "max_error": 0.4532659672499587, + "r2": 0.817537157908072, + "rmse": 0.17549813885633836 + }, + "validation": { + "mae": 0.12805053866355137, + "max_error": 0.3494996128400467, + "r2": 0.8369357104078647, + "rmse": 0.1616102842518539 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 3.077293, + "metrics": { + "blind": { + "mae": 1.795773611916229, + "max_error": 2.253900172188878, + "r2": -19.09028590209665, + "rmse": 1.830093877968411 + }, + "train": { + "mae": 1.7209845404929907, + "max_error": 2.2174073616042733, + "r2": -17.230484941638476, + "rmse": 1.7542214139566625 + }, + "validation": { + "mae": 1.6458853284995525, + "max_error": 2.2143625784665346, + "r2": -16.6126461175921, + "rmse": 1.6795845356106587 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.768247107975185, + 2.421724144369364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 3.013243664916769, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.58792293", + "loss": 0.08905516, + "metrics": { + "blind": { + "mae": 0.21833164467603483, + "max_error": 0.3662646647872042, + "r2": 0.6465868558637489, + "rmse": 0.2427289954306513 + }, + "train": { + "mae": 0.2591766378435967, + "max_error": 0.593176400493792, + "r2": 0.47241975169866435, + "rmse": 0.2984211237928768 + }, + "validation": { + "mae": 0.23068798222927667, + "max_error": 0.44921229084023395, + "r2": 0.5554205052703649, + "rmse": 0.2668481994274174 + } + }, + "score": 0.17389187225066657, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4802538065425667, + 0.7603475905756425 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*(-0.5423442)", + "loss": 0.030799598, + "metrics": { + "blind": { + "mae": 0.17457551462063783, + "max_error": 0.4196667261955416, + "r2": 0.7454528335390933, + "rmse": 0.2059986826635149 + }, + "train": { + "mae": 0.14304126607514106, + "max_error": 0.4532659672499587, + "r2": 0.817537157908072, + "rmse": 0.17549813885633836 + }, + "validation": { + "mae": 0.12805053866355137, + "max_error": 0.3494996128400467, + "r2": 0.8369357104078647, + "rmse": 0.1616102842518539 + } + }, + "score": 0.5308771575426796, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.06697057970742465, + 0.48471876867424 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_F - 1*1.211704", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1645864630948663, + "max_error": 0.40763021157300483, + "r2": 0.1814204161617674, + "rmse": 0.2025537735647013 + }, + "train": { + "mae": 0.15995700092878734, + "max_error": 0.45243739253664006, + "r2": 0.5730551063064874, + "rmse": 0.1992773199322333 + }, + "validation": { + "mae": 0.18477493893401745, + "max_error": 0.4597197853884698, + "r2": 0.37310427608444874, + "rmse": 0.22064557493903258 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_a", + "loss": 97.78473, + "metrics": { + "blind": { + "mae": 5.788825842179358, + "max_error": 16.891722723841667, + "r2": -1204.8595073363222, + "rmse": 7.77424530478247 + }, + "train": { + "mae": 7.619751162132469, + "max_error": 27.66404962539673, + "r2": -1050.3009761206567, + "rmse": 9.88861561913578 + }, + "validation": { + "mae": 5.818579872138798, + "max_error": 16.301202476024628, + "r2": -706.3587773148363, + "rmse": 7.411693335505686 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -26.770468056201935, + 14.523997902870178 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_a" + ] + }, + { + "complexity": 2.0, + "expression": "0.803504050000000", + "loss": 0.09301303, + "metrics": { + "blind": { + "mae": 0.19123388535484315, + "max_error": 0.49804192803649905, + "r2": -0.11009575616124301, + "rmse": 0.23587944936826424 + }, + "train": { + "mae": 0.2489609880489285, + "max_error": 0.6767832634613037, + "r2": -3.974576223697568e-11, + "rmse": 0.30498042263364794 + }, + "validation": { + "mae": 0.24085260660789679, + "max_error": 0.4790615437194824, + "r2": -0.0002615265870786754, + "rmse": 0.27871115475186525 + } + }, + "score": 6.957784117997256, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.80350405, + 0.80350405 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.211704", + "loss": 0.03971144, + "metrics": { + "blind": { + "mae": 0.1645864630948663, + "max_error": 0.40763021157300483, + "r2": 0.1814204161617674, + "rmse": 0.2025537735647013 + }, + "train": { + "mae": 0.15995700092878734, + "max_error": 0.45243739253664006, + "r2": 0.5730551063064874, + "rmse": 0.1992773199322333 + }, + "validation": { + "mae": 0.18477493893401745, + "max_error": 0.4597197853884698, + "r2": 0.37310427608444874, + "rmse": 0.22064557493903258 + } + }, + "score": 0.42555014173712447, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.556543107975185, + 1.210020144369364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942242000000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_c", + "loss": 7995.286, + "metrics": { + "blind": { + "mae": 95.22794934660196, + "max_error": 102.51884329319, + "r2": -415091.6752316687, + "rmse": 95.37964563924966 + }, + "train": { + "mae": 88.75841325167882, + "max_error": 107.91507428884506, + "r2": -156268.3746661708, + "rmse": 89.41636443617715 + }, + "validation": { + "mae": 93.7591081078236, + "max_error": 100.98786520957947, + "r2": -425462.5258011721, + "rmse": 93.92810603284819 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 60.57933568954468, + 107.03669786453247 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_c" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942242000000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "score": 11.959336621043166, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.942242, + -0.942242 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s*(-0.5323005)", + "loss": 0.038047586, + "metrics": { + "blind": { + "mae": 0.10195184570049931, + "max_error": 0.2655597855617524, + "r2": 0.3085241674850272, + "rmse": 0.12310386052949307 + }, + "train": { + "mae": 0.14244434945160778, + "max_error": 0.5371455952684338, + "r2": 0.25635276107361316, + "rmse": 0.1950579051555742 + }, + "validation": { + "mae": 0.09145833556549601, + "max_error": 0.26805706281568553, + "r2": 0.38446603319134276, + "rmse": 0.11297709661418942 + } + }, + "score": 0.14809420773409543, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0894910909427562, + -0.701752940780876 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [] + }, + { + "expression": "(-Cd_rear_a + Cl_rear_s)*0.5328156", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.19952740724620205, + "max_error": 0.45330504223115275, + "r2": 0.6935664040425086, + "rmse": 0.2260208471823694 + }, + "train": { + "mae": 0.17494185461311526, + "max_error": 0.4235542354709003, + "r2": 0.7585497986231277, + "rmse": 0.20188269028846392 + }, + "validation": { + "mae": 0.1943183443829695, + "max_error": 0.3833102211668622, + "r2": 0.7097245249291118, + "rmse": 0.21562282665233704 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.17075412, + "metrics": { + "blind": { + "mae": 0.27673085175920276, + "max_error": 0.601998895406723, + "r2": 0.3108234960479447, + "rmse": 0.3389577287731067 + }, + "train": { + "mae": 0.3492160899785616, + "max_error": 0.9297878360375762, + "r2": -0.011580860521255065, + "rmse": 0.4132240590406017 + }, + "validation": { + "mae": 0.2720837906982081, + "max_error": 0.6755692316219211, + "r2": 0.3105860059099895, + "rmse": 0.3322994405475299 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8168652420863509, + 1.2932776589877903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.12166269851182035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.5878966", + "loss": 0.08905516, + "metrics": { + "blind": { + "mae": 0.21833531447232643, + "max_error": 0.36624967167524153, + "r2": 0.6465821381627274, + "rmse": 0.24273061551613365 + }, + "train": { + "mae": 0.2591805163568109, + "max_error": 0.5931548924319678, + "r2": 0.47241974896866756, + "rmse": 0.29842112456497616 + }, + "validation": { + "mae": 0.23069888541089897, + "max_error": 0.4492322165397694, + "r2": 0.5553975297896814, + "rmse": 0.26685509457948287 + } + }, + "score": 0.17389187225066657, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4802322984807426, + 0.7603135385748814 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cd_rear_a + Cl_rear_s)*0.5328156", + "loss": 0.040756624, + "metrics": { + "blind": { + "mae": 0.19952740724620205, + "max_error": 0.45330504223115275, + "r2": 0.6935664040425086, + "rmse": 0.2260208471823694 + }, + "train": { + "mae": 0.17494185461311526, + "max_error": 0.4235542354709003, + "r2": 0.7585497986231277, + "rmse": 0.20188269028846392 + }, + "validation": { + "mae": 0.1943183443829695, + "max_error": 0.3833102211668622, + "r2": 0.7097245249291118, + "rmse": 0.21562282665233704 + } + }, + "score": 0.39081878720385826, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10683970746556293, + 0.40012752748620695 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "0.803501900000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 2.6476278, + "metrics": { + "blind": { + "mae": 1.480902001503273, + "max_error": 2.9576990716159344, + "r2": -60.939521876736336, + "rmse": 1.7619509267689957 + }, + "train": { + "mae": 1.381970311505445, + "max_error": 2.9085206631571054, + "r2": -27.465118152492117, + "rmse": 1.6271532475436994 + }, + "validation": { + "mae": 1.1038513973083657, + "max_error": 2.9586687702685595, + "r2": -23.08611445248322, + "rmse": 1.3676688046981806 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.101584803313017, + 2.1354956552386284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 3.3486796498873748, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd - 1*4.843399", + "loss": 0.08078733, + "metrics": { + "blind": { + "mae": 0.1628010710832358, + "max_error": 0.4078796760926249, + "r2": 0.20531985195587354, + "rmse": 0.19957496699500452 + }, + "train": { + "mae": 0.23660908614306744, + "max_error": 0.6804012289454935, + "r2": 0.1314410194148743, + "rmse": 0.2842311154663145 + }, + "validation": { + "mae": 0.20752600473901553, + "max_error": 0.3729730391690733, + "r2": 0.28611153133757516, + "rmse": 0.2354576210339294 + } + }, + "score": 0.0704597760384715, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6469561936149599, + 0.944137967545748 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 5.0, + "expression": "(target_Cd - 1*4.754616)**2", + "loss": 0.079647645, + "metrics": { + "blind": { + "mae": 0.1593500933435231, + "max_error": 0.38419244958323395, + "r2": 0.30444962079953986, + "rmse": 0.1867128379060887 + }, + "train": { + "mae": 0.23513627447602548, + "max_error": 0.6911784944961832, + "r2": 0.14369399355217005, + "rmse": 0.28221913542997107 + }, + "validation": { + "mae": 0.18547523633019836, + "max_error": 0.35876907191919805, + "r2": 0.4249985279637494, + "rmse": 0.2113158371124731 + } + }, + "score": 0.014207677236905645, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5413121610211906, + 1.0669257251956428 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 6.0, + "expression": "(target_Cd + target_Cl)*0.14254752", + "loss": 0.07746646, + "metrics": { + "blind": { + "mae": 0.2119840774531892, + "max_error": 0.5362200019444898, + "r2": -0.3946218794445704, + "rmse": 0.26438579727802963 + }, + "train": { + "mae": 0.2287943671085195, + "max_error": 0.6437453949327582, + "r2": 0.1671443483404642, + "rmse": 0.2783279561747831 + }, + "validation": { + "mae": 0.2059463245668273, + "max_error": 0.5793581589296833, + "r2": 0.10229641155108582, + "rmse": 0.2640365496724347 + } + }, + "score": 0.02776740057198462, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.48306081498697406, + 1.1294086512570085 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd", + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s0-20260718", + "used_features": [] + }, + { + "expression": "target_Cd*(-0.16703847)", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12010642594929528, + "max_error": 0.34287383744117805, + "r2": 0.0380280807545742, + "rmse": 0.14519924798178993 + }, + "train": { + "mae": 0.16296209006313087, + "max_error": 0.7118988319287449, + "r2": 0.04023692016478675, + "rmse": 0.2215960887116426 + }, + "validation": { + "mae": 0.11599367995722652, + "max_error": 0.31760089704666283, + "r2": 0.03299275766791043, + "rmse": 0.14160521941910317 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.942268000000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12273762952222825, + "max_error": 0.3566807368927002, + "r2": -0.003734376949105611, + "rmse": 0.14831755889035061 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7181045869522095, + "r2": -1.154430195882128e-08, + "rmse": 0.22619347535456363 + }, + "validation": { + "mae": 0.11858352948985959, + "max_error": 0.32860992943573, + "r2": -0.007734385653428877, + "rmse": 0.14455643750019767 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.942268, + -0.942268 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd*(-0.16703847)", + "loss": 0.049104825, + "metrics": { + "blind": { + "mae": 0.12010642594929528, + "max_error": 0.34287383744117805, + "r2": 0.0380280807545742, + "rmse": 0.14519924798178993 + }, + "train": { + "mae": 0.16296209006313087, + "max_error": 0.7118988319287449, + "r2": 0.04023692016478675, + "rmse": 0.2215960887116426 + }, + "validation": { + "mae": 0.11599367995722652, + "max_error": 0.31760089704666283, + "r2": 0.03299275766791043, + "rmse": 0.14160521941910317 + } + }, + "score": 0.020534378056710233, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9667413201272813, + -0.9171005312979966 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 6.0, + "expression": "target_Cd*target_Cd*(-0.029595971)", + "loss": 0.04736739, + "metrics": { + "blind": { + "mae": 0.11755132429516808, + "max_error": 0.32879335577910485, + "r2": 0.06576498347510806, + "rmse": 0.14309064466045512 + }, + "train": { + "mae": 0.16062879917124315, + "max_error": 0.7052502314160225, + "r2": 0.07419538871430009, + "rmse": 0.21764051287449962 + }, + "validation": { + "mae": 0.11453444307451455, + "max_error": 0.3062417242721964, + "r2": 0.06123032456094302, + "rmse": 0.13952239548031103 + } + }, + "score": 0.018011640778603125, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9913343371524322, + -0.8921409543242083 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 7.0, + "expression": "(3.3101525 - target_Cd)*0.4024812", + "loss": 0.046753332, + "metrics": { + "blind": { + "mae": 0.11747569757474952, + "max_error": 0.31927676133895966, + "r2": 0.06953221473867788, + "rmse": 0.14280185219172672 + }, + "train": { + "mae": 0.15999338679224429, + "max_error": 0.6990156602059558, + "r2": 0.08619722564331844, + "rmse": 0.2162251997528319 + }, + "validation": { + "mae": 0.11478782352874473, + "max_error": 0.29794744817810803, + "r2": 0.06414054924867574, + "rmse": 0.1393059650258933 + } + }, + "score": 0.013048491332117782, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9971006733591736, + -0.8774905963693811 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s0-20260718", + "used_features": [ + "target_Cd" + ] + }, + { + "expression": "target_Cl*0.21710813", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.30103300573183583, + "max_error": 0.5398263875105942, + "r2": 0.33128843945723674, + "rmse": 0.33388716550396935 + }, + "train": { + "mae": 0.34825610975266635, + "max_error": 0.7094304118976245, + "r2": 0.10879946240526228, + "rmse": 0.3878582355572821 + }, + "validation": { + "mae": 0.3523619409388265, + "max_error": 0.6599144125853875, + "r2": 0.05537536289534206, + "rmse": 0.388972767585036 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.294221000000000", + "loss": 0.16879924, + "metrics": { + "blind": { + "mae": 0.3724867193957567, + "max_error": 0.667314068599701, + "r2": -0.03234078724974032, + "rmse": 0.4148507244641141 + }, + "train": { + "mae": 0.36908401607574653, + "max_error": 0.7223586279907226, + "r2": -1.4632739464559563e-13, + "rmse": 0.41085189792521676 + }, + "validation": { + "mae": 0.3834750396417226, + "max_error": 0.6489756543197631, + "r2": -0.12580521816256485, + "rmse": 0.4246402837763002 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.294221, + 0.294221 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.21710813", + "loss": 0.15043399, + "metrics": { + "blind": { + "mae": 0.30103300573183583, + "max_error": 0.5398263875105942, + "r2": 0.33128843945723674, + "rmse": 0.33388716550396935 + }, + "train": { + "mae": 0.34825610975266635, + "max_error": 0.7094304118976245, + "r2": 0.10879946240526228, + "rmse": 0.3878582355572821 + }, + "validation": { + "mae": 0.3523619409388265, + "max_error": 0.6599144125853875, + "r2": 0.05537536289534206, + "rmse": 0.388972767585036 + } + }, + "score": 0.057592848229719926, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.45627114668370694, + 0.4636334683319833 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s0-20260718", + "used_features": [ + "target_Cl" + ] + }, + { + "expression": "(Cd_F - 1.1455569)**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.2278168533453993, + "max_error": 0.697077679468777, + "r2": -0.6410167937443476, + "rmse": 0.2867915801849091 + }, + "train": { + "mae": 0.17358329645468776, + "max_error": 0.6700320186487567, + "r2": 0.48669154552968397, + "rmse": 0.218504895009392 + }, + "validation": { + "mae": 0.24661423527199375, + "max_error": 0.7228468100305927, + "r2": -0.314986126020393, + "rmse": 0.3195642244869848 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_s", + "loss": 933.5714, + "metrics": { + "blind": { + "mae": 29.52893976923078, + "max_error": 40.4289111495018, + "r2": -19358.087981010878, + "rmse": 31.149589725585326 + }, + "train": { + "mae": 28.157618568420915, + "max_error": 47.789261639118195, + "r2": -10035.99381655593, + "rmse": 30.554402135745665 + }, + "validation": { + "mae": 29.35081851360603, + "max_error": 41.98858571052551, + "r2": -12884.462654376322, + "rmse": 31.633524089955447 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -44.143104553222656, + 48.6307218670845 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 9.2140330270029, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.4728348*Cd_F", + "loss": 0.08205643, + "metrics": { + "blind": { + "mae": 0.2368719583606417, + "max_error": 0.5854355519897304, + "r2": -0.7109015386926087, + "rmse": 0.2928346019451408 + }, + "train": { + "mae": 0.2488947188782162, + "max_error": 0.647772735557938, + "r2": 0.11779644412173285, + "rmse": 0.2864549714612945 + }, + "validation": { + "mae": 0.24058814687953592, + "max_error": 0.5422867842549458, + "r2": -0.07661069930448439, + "rmse": 0.2891524750432593 + } + }, + "score": 0.06266625853137339, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8360887676500249, + 1.1450754514580592 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 5.0, + "expression": "(Cd_F - 1.1455569)**2", + "loss": 0.047744382, + "metrics": { + "blind": { + "mae": 0.2278168533453993, + "max_error": 0.697077679468777, + "r2": -0.6410167937443476, + "rmse": 0.2867915801849091 + }, + "train": { + "mae": 0.17358329645468776, + "max_error": 0.6700320186487567, + "r2": 0.48669154552968397, + "rmse": 0.218504895009392 + }, + "validation": { + "mae": 0.24661423527199375, + "max_error": 0.7228468100305927, + "r2": -0.314986126020393, + "rmse": 0.3195642244869848 + } + }, + "score": 0.541545775760411, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.38774309510817895, + 1.6286028356012952 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_F - 1.0263871 - 1*0.17810671", + "loss": 0.03976342, + "metrics": { + "blind": { + "mae": 0.1653074820948663, + "max_error": 0.4148404015730047, + "r2": 0.15861967763935259, + "rmse": 0.20535536785875136 + }, + "train": { + "mae": 0.16027005941593916, + "max_error": 0.4492286457250738, + "r2": 0.5724963018462195, + "rmse": 0.1994076887964735 + }, + "validation": { + "mae": 0.18569932226735078, + "max_error": 0.4669299753884697, + "r2": 0.36085861607678993, + "rmse": 0.22279017655712088 + } + }, + "score": 0.09145700568443463, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5637532979751849, + 1.2172303343693638 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s1-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942232430000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274474352222824, + "max_error": 0.3566451668927002, + "r2": -0.003763800339208645, + "rmse": 0.14831973275901225 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180690169522095, + "r2": -2.481070016102649e-09, + "rmse": 0.22619347432954168 + }, + "validation": { + "mae": 0.11859538615652622, + "max_error": 0.32857435943573, + "r2": -0.0077778939269155245, + "rmse": 0.14455955803137277 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.46353057, + "metrics": { + "blind": { + "mae": 0.5827726590187012, + "max_error": 1.3141757168341428, + "r2": -21.72259987442313, + "rmse": 0.7056871025605645 + }, + "train": { + "mae": 0.5669855430052725, + "max_error": 1.4811755518894643, + "r2": -8.059791255049982, + "rmse": 0.6808307561086059 + }, + "validation": { + "mae": 0.6131191903640194, + "max_error": 1.2822435218840837, + "r2": -24.243064396910242, + "rmse": 0.7234948357979383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942232430000000", + "loss": 0.05116348, + "metrics": { + "blind": { + "mae": 0.12274474352222824, + "max_error": 0.3566451668927002, + "r2": -0.003763800339208645, + "rmse": 0.14831973275901225 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180690169522095, + "r2": -2.481070016102649e-09, + "rmse": 0.22619347432954168 + }, + "validation": { + "mae": 0.11859538615652622, + "max_error": 0.32857435943573, + "r2": -0.0077778939269155245, + "rmse": 0.14455955803137277 + } + }, + "score": 2.20384634123419, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94223243, + -0.94223243 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s*(-0.5323017)", + "loss": 0.03804759, + "metrics": { + "blind": { + "mae": 0.10195170776834514, + "max_error": 0.2655617043584818, + "r2": 0.30852103350961946, + "rmse": 0.12310413950094529 + }, + "train": { + "mae": 0.1424441863089026, + "max_error": 0.537143541055842, + "r2": 0.256352761153985, + "rmse": 0.1950579051450335 + }, + "validation": { + "mae": 0.09145824074937958, + "max_error": 0.2680590505240572, + "r2": 0.38446222921041806, + "rmse": 0.11297744571113585 + } + }, + "score": 0.14809412585055937, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.089493547054124, + -0.7017545227886498 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s1-20260718", + "used_features": [] + }, + { + "expression": "(-Cd_rear_a + Cl_rear_s)*0.44499984", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2136694696205807, + "max_error": 0.47824954414998183, + "r2": 0.63549507911388, + "rmse": 0.24650856157493958 + }, + "train": { + "mae": 0.19984399691390148, + "max_error": 0.43440542359078305, + "r2": 0.6745687222132433, + "rmse": 0.23437697421055695 + }, + "validation": { + "mae": 0.2326372135629955, + "max_error": 0.4195795199468453, + "r2": 0.5680835078429455, + "rmse": 0.2630204136368888 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "0.5921496*Cl_rear_s", + "loss": 0.089063734, + "metrics": { + "blind": { + "mae": 0.2177425441104523, + "max_error": 0.36867146070590245, + "r2": 0.647300815468794, + "rmse": 0.2424836928535916 + }, + "train": { + "mae": 0.25855403262341503, + "max_error": 0.5966290203065612, + "r2": 0.472368951799944, + "rmse": 0.2984354907048333 + }, + "validation": { + "mae": 0.22893772964030143, + "max_error": 0.4460136825433932, + "r2": 0.5590447054348742, + "rmse": 0.265758303985885 + } + }, + "score": 0.17379559947674472, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4837064263553359, + 0.7658138484585565 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cd_rear_a + Cl_rear_s)*0.44499984", + "loss": 0.05493256, + "metrics": { + "blind": { + "mae": 0.2136694696205807, + "max_error": 0.47824954414998183, + "r2": 0.63549507911388, + "rmse": 0.24650856157493958 + }, + "train": { + "mae": 0.19984399691390148, + "max_error": 0.43440542359078305, + "r2": 0.6745687222132433, + "rmse": 0.23437697421055695 + }, + "validation": { + "mae": 0.2326372135629955, + "max_error": 0.4195795199468453, + "r2": 0.5680835078429455, + "rmse": 0.2630204136368888 + } + }, + "score": 0.2416229873836566, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.08923096982862799, + 0.33418069161443037 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_rear_s - 0.198024857600026*Cl_tot", + "loss": 0.046387058, + "metrics": { + "blind": { + "mae": 0.1413597010325951, + "max_error": 0.3362189813746122, + "r2": 0.8373810139514178, + "rmse": 0.1646515919392336 + }, + "train": { + "mae": 0.17809615080016206, + "max_error": 0.49074611702247456, + "r2": 0.7251939910751308, + "rmse": 0.21537654701405665 + }, + "validation": { + "mae": 0.1501483004017823, + "max_error": 0.30245485920025494, + "r2": 0.8146378383520221, + "rmse": 0.17230588290710974 + } + }, + "score": 0.16908575312594196, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.3778235230712493, + 0.8618448062564336 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s1-20260718", + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "0.200176710299654*Cd_F**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16343384708743733, + "max_error": 0.4051789967625008, + "r2": 0.16063607088577203, + "rmse": 0.20510915009570344 + }, + "train": { + "mae": 0.1711156589828175, + "max_error": 0.46641163924094275, + "r2": 0.5206289799988969, + "rmse": 0.21115815062671273 + }, + "validation": { + "mae": 0.1896137437119345, + "max_error": 0.43638227506977423, + "r2": 0.3524163250617013, + "rmse": 0.22425674503687643 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd - 4.843399", + "loss": 0.08078733, + "metrics": { + "blind": { + "mae": 0.1628010710832358, + "max_error": 0.4078796760926249, + "r2": 0.20531985195587354, + "rmse": 0.19957496699500452 + }, + "train": { + "mae": 0.23660908614306744, + "max_error": 0.6804012289454935, + "r2": 0.1314410194148743, + "rmse": 0.2842311154663145 + }, + "validation": { + "mae": 0.20752600473901553, + "max_error": 0.3729730391690733, + "r2": 0.28611153133757516, + "rmse": 0.2354576210339294 + } + }, + "score": 0.0704597760384715, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6469561936149599, + 0.944137967545748 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 5.0, + "expression": "0.200176710299654*Cd_F**2", + "loss": 0.044587757, + "metrics": { + "blind": { + "mae": 0.16343384708743733, + "max_error": 0.4051789967625008, + "r2": 0.16063607088577203, + "rmse": 0.20510915009570344 + }, + "train": { + "mae": 0.1711156589828175, + "max_error": 0.46641163924094275, + "r2": 0.5206289799988969, + "rmse": 0.21115815062671273 + }, + "validation": { + "mae": 0.1896137437119345, + "max_error": 0.43638227506977423, + "r2": 0.3524163250617013, + "rmse": 0.22425674503687643 + } + }, + "score": 0.5943608316851716, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6258920866838472, + 1.1739859276309912 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s0-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942242000000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_s", + "loss": 930.02747, + "metrics": { + "blind": { + "mae": 29.78763811495155, + "max_error": 39.15629816055298, + "r2": -45005.44857889332, + "rmse": 31.40657241791608 + }, + "train": { + "mae": 28.03092538533827, + "max_error": 50.02856117486954, + "r2": -18176.562520950953, + "rmse": 30.49635218348233 + }, + "validation": { + "mae": 28.720286585127887, + "max_error": 39.819745779037476, + "r2": -46296.18864870921, + "rmse": 30.984301341818675 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -44.143104553222656, + 48.6307218670845 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942242000000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "score": 9.807943347402686, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.942242, + -0.942242 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-0.5293938*Cd_rear_s", + "loss": 0.038074475, + "metrics": { + "blind": { + "mae": 0.10251503738188608, + "max_error": 0.26091198018421424, + "r2": 0.3148329462141385, + "rmse": 0.12254099589799888 + }, + "train": { + "mae": 0.14290246061215897, + "max_error": 0.5421214117184631, + "r2": 0.2558272761212339, + "rmse": 0.19512681006612032 + }, + "validation": { + "mae": 0.09168800390353561, + "max_error": 0.26324233621258175, + "r2": 0.3923065799753539, + "rmse": 0.11225525089867465 + } + }, + "score": 0.14774097240697567, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0835417751821224, + -0.6979209224510647 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s0-20260718", + "used_features": [] + }, + { + "expression": "0.61362891901809*(-Cl_F + Cl_rear_s)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.19299667640735557, + "max_error": 0.41552867380027975, + "r2": 0.7207572061058916, + "rmse": 0.2157601805781459 + }, + "train": { + "mae": 0.15338456905674805, + "max_error": 0.4696001420352597, + "r2": 0.8006922095414605, + "rmse": 0.18342031493848668 + }, + "validation": { + "mae": 0.14355656286611998, + "max_error": 0.32110983512919944, + "r2": 0.8244669744305733, + "rmse": 0.16767525753733423 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.80733895, + "metrics": { + "blind": { + "mae": 0.696158525246392, + "max_error": 1.5813681320287287, + "r2": -3.218013474077466, + "rmse": 0.8385602869923516 + }, + "train": { + "mae": 0.7675379431658889, + "max_error": 1.5932811493985355, + "r2": -3.782833919352938, + "rmse": 0.8985204124834466 + }, + "validation": { + "mae": 0.8699088570063349, + "max_error": 1.589142348151654, + "r2": -5.313344392831486, + "rmse": 1.0055861962407384 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 1.6751816639896868, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.5879267", + "loss": 0.089055166, + "metrics": { + "blind": { + "mae": 0.21833111922476175, + "max_error": 0.3662668115411769, + "r2": 0.6465875310831275, + "rmse": 0.2427287635555747 + }, + "train": { + "mae": 0.2591760825076749, + "max_error": 0.5931794800757547, + "r2": 0.4724197517661024, + "rmse": 0.298421123773804 + }, + "validation": { + "mae": 0.23068642108249668, + "max_error": 0.44920943782514655, + "r2": 0.555423794557411, + "rmse": 0.266847212267686 + } + }, + "score": 0.2646529540428457, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.48025688612452944, + 0.7603524662324169 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "0.29328072 - Cl_F*Cl_rear_s", + "loss": 0.074955784, + "metrics": { + "blind": { + "mae": 0.22187213723262236, + "max_error": 0.5720042389546274, + "r2": 0.5593640200714737, + "rmse": 0.2710318239922885 + }, + "train": { + "mae": 0.22568085058416903, + "max_error": 0.6345843265281923, + "r2": 0.5559472232297744, + "rmse": 0.2737805506270983 + }, + "validation": { + "mae": 0.211377697047173, + "max_error": 0.5872548683917067, + "r2": 0.5774044955712216, + "rmse": 0.2601668742030789 + } + }, + "score": 0.08617881369347735, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.47485751250161384, + 0.3576938954674561 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "0.61362891901809*(-Cl_F + Cl_rear_s)", + "loss": 0.033643015, + "metrics": { + "blind": { + "mae": 0.19299667640735557, + "max_error": 0.41552867380027975, + "r2": 0.7207572061058916, + "rmse": 0.2157601805781459 + }, + "train": { + "mae": 0.15338456905674805, + "max_error": 0.4696001420352597, + "r2": 0.8006922095414605, + "rmse": 0.18342031493848668 + }, + "validation": { + "mae": 0.14355656286611998, + "max_error": 0.32110983512919944, + "r2": 0.8244669744305733, + "rmse": 0.16767525753733423 + } + }, + "score": 0.8010929364841508, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.07577306889588165, + 0.5484293075308144 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_F - 1*1.1971676", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16604010309486628, + "max_error": 0.4221666115730047, + "r2": 0.1333272576168858, + "rmse": 0.2084190696930846 + }, + "train": { + "mae": 0.16083104244246268, + "max_error": 0.4565548557250738, + "r2": 0.5707835403528801, + "rmse": 0.19980674547069252 + }, + "validation": { + "mae": 0.18663857995965846, + "max_error": 0.4742561853884697, + "r2": 0.3470445825354267, + "rmse": 0.2251849352382468 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_err", + "loss": 0.87259287, + "metrics": { + "blind": { + "mae": 0.7672155196485619, + "max_error": 1.6639559054747224, + "r2": -16.238205505201513, + "rmse": 0.9295139479811793 + }, + "train": { + "mae": 0.8333614186206016, + "max_error": 1.5885829450562596, + "r2": -8.38140059799011, + "rmse": 0.9341267364164152 + }, + "validation": { + "mae": 0.8691019496055117, + "max_error": 1.5712010501883924, + "r2": -12.024528187807253, + "rmse": 1.0057234310359096 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7121316739358008, + 0.6465766200562939 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + }, + { + "complexity": 2.0, + "expression": "0.803506100000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123450035484313, + "max_error": 0.498043978036499, + "r2": -0.11010183282567798, + "rmse": 0.2358800949694619 + }, + "train": { + "mae": 0.2489614744896064, + "max_error": 0.6767812134613037, + "r2": -1.696809359685858e-10, + "rmse": 0.30498042265346176 + }, + "validation": { + "mae": 0.2408526591719994, + "max_error": 0.4790594937194824, + "r2": -0.0002612887139286091, + "rmse": 0.2787111216115802 + } + }, + "score": 2.2387293912950503, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035061, + 0.8035061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.1971676", + "loss": 0.03992274, + "metrics": { + "blind": { + "mae": 0.16604010309486628, + "max_error": 0.4221666115730047, + "r2": 0.1333272576168858, + "rmse": 0.2084190696930846 + }, + "train": { + "mae": 0.16083104244246268, + "max_error": 0.4565548557250738, + "r2": 0.5707835403528801, + "rmse": 0.19980674547069252 + }, + "validation": { + "mae": 0.18663857995965846, + "max_error": 0.4742561853884697, + "r2": 0.3470445825354267, + "rmse": 0.2251849352382468 + } + }, + "score": 0.42289680600771257, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5710795079751849, + 1.2245565443693638 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942249240000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274138152222824, + "max_error": 0.3566619768927002, + "r2": -0.00374988077191607, + "rmse": 0.1483187043528983 + }, + "train": { + "mae": 0.16644193711927388, + "max_error": 0.7180858269522095, + "r2": -6.005713704126947e-10, + "rmse": 0.2261934741168634 + }, + "validation": { + "mae": 0.1185897828231929, + "max_error": 0.32859116943572997, + "r2": -0.007757317176130263, + "rmse": 0.14455808221948954 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.46353057, + "metrics": { + "blind": { + "mae": 0.5827726590187012, + "max_error": 1.3141757168341428, + "r2": -21.72259987442313, + "rmse": 0.7056871025605645 + }, + "train": { + "mae": 0.5669855430052725, + "max_error": 1.4811755518894643, + "r2": -8.059791255049982, + "rmse": 0.6808307561086059 + }, + "validation": { + "mae": 0.6131191903640194, + "max_error": 1.2822435218840837, + "r2": -24.243064396910242, + "rmse": 0.7234948357979383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942249240000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274138152222824, + "max_error": 0.3566619768927002, + "r2": -0.00374988077191607, + "rmse": 0.1483187043528983 + }, + "train": { + "mae": 0.16644193711927388, + "max_error": 0.7180858269522095, + "r2": -6.005713704126947e-10, + "rmse": 0.2261934741168634 + }, + "validation": { + "mae": 0.1185897828231929, + "max_error": 0.32859116943572997, + "r2": -0.007757317176130263, + "rmse": 0.14455808221948954 + } + }, + "score": 2.2038462825986183, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224924, + -0.94224924 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 7.0, + "expression": "-Cd_rear_s + Cd_rear_s*0.407908233687764", + "loss": 0.049414404, + "metrics": { + "blind": { + "mae": 0.1397743706214069, + "max_error": 0.3621292056517029, + "r2": -0.39005756485604337, + "rmse": 0.17454184502612693 + }, + "train": { + "mae": 0.17401915264209836, + "max_error": 0.5878565877103972, + "r2": 0.0341862277658852, + "rmse": 0.2222935020607664 + }, + "validation": { + "mae": 0.13197281439577935, + "max_error": 0.3670967299800967, + "r2": -0.38605234117467413, + "rmse": 0.16953298676104428 + } + }, + "score": 0.006956818856913556, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2118694316795524, + -0.7805781475346255 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [] + }, + { + "expression": "(Cl_F - Cl_rear_s)*(-0.5423442)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.17457551462063783, + "max_error": 0.4196667261955416, + "r2": 0.7454528335390933, + "rmse": 0.2059986826635149 + }, + "train": { + "mae": 0.14304126607514106, + "max_error": 0.4532659672499587, + "r2": 0.817537157908072, + "rmse": 0.17549813885633836 + }, + "validation": { + "mae": 0.12805053866355137, + "max_error": 0.3494996128400467, + "r2": 0.8369357104078647, + "rmse": 0.1616102842518539 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 3.077293, + "metrics": { + "blind": { + "mae": 1.795773611916229, + "max_error": 2.253900172188878, + "r2": -19.09028590209665, + "rmse": 1.830093877968411 + }, + "train": { + "mae": 1.7209845404929907, + "max_error": 2.2174073616042733, + "r2": -17.230484941638476, + "rmse": 1.7542214139566625 + }, + "validation": { + "mae": 1.6458853284995525, + "max_error": 2.2143625784665346, + "r2": -16.6126461175921, + "rmse": 1.6795845356106587 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.768247107975185, + 2.421724144369364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 3.013243664916769, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.58792293", + "loss": 0.08905516, + "metrics": { + "blind": { + "mae": 0.21833164467603483, + "max_error": 0.3662646647872042, + "r2": 0.6465868558637489, + "rmse": 0.2427289954306513 + }, + "train": { + "mae": 0.2591766378435967, + "max_error": 0.593176400493792, + "r2": 0.47241975169866435, + "rmse": 0.2984211237928768 + }, + "validation": { + "mae": 0.23068798222927667, + "max_error": 0.44921229084023395, + "r2": 0.5554205052703649, + "rmse": 0.2668481994274174 + } + }, + "score": 0.17389187225066657, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4802538065425667, + 0.7603475905756425 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_F - Cl_rear_s)*(-0.5423442)", + "loss": 0.030799598, + "metrics": { + "blind": { + "mae": 0.17457551462063783, + "max_error": 0.4196667261955416, + "r2": 0.7454528335390933, + "rmse": 0.2059986826635149 + }, + "train": { + "mae": 0.14304126607514106, + "max_error": 0.4532659672499587, + "r2": 0.817537157908072, + "rmse": 0.17549813885633836 + }, + "validation": { + "mae": 0.12805053866355137, + "max_error": 0.3494996128400467, + "r2": 0.8369357104078647, + "rmse": 0.1616102842518539 + } + }, + "score": 0.5308771575426796, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.06697057970742465, + 0.48471876867424 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_s" + ] + }, + { + "expression": "(Cd_F - 1*1.139033)**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.22894130467893398, + "max_error": 0.7126485915675447, + "r2": -0.6902531278668729, + "rmse": 0.29106216689894726 + }, + "train": { + "mae": 0.17296536625680622, + "max_error": 0.6857126242399145, + "r2": 0.48393644767782906, + "rmse": 0.2190905046319178 + }, + "validation": { + "mae": 0.24872447405892445, + "max_error": 0.7383750301317822, + "r2": -0.3643815262401022, + "rmse": 0.32551086077567254 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.803504050000000", + "loss": 0.09301303, + "metrics": { + "blind": { + "mae": 0.19123388535484315, + "max_error": 0.49804192803649905, + "r2": -0.11009575616124301, + "rmse": 0.23587944936826424 + }, + "train": { + "mae": 0.2489609880489285, + "max_error": 0.6767832634613037, + "r2": -3.974576223697568e-11, + "rmse": 0.30498042263364794 + }, + "validation": { + "mae": 0.24085260660789679, + "max_error": 0.4790615437194824, + "r2": -0.0002615265870786754, + "rmse": 0.27871115475186525 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.80350405, + 0.80350405 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F*0.40605012", + "loss": 0.063788444, + "metrics": { + "blind": { + "mae": 0.17151675102284553, + "max_error": 0.45960235175211916, + "r2": 0.10782294066137632, + "rmse": 0.21146349709167267 + }, + "train": { + "mae": 0.20680515722582143, + "max_error": 0.5515464298675861, + "r2": 0.3141990100084907, + "rmse": 0.2525637491528948 + }, + "validation": { + "mae": 0.2058548201709442, + "max_error": 0.4166916005204432, + "r2": 0.2740268666341693, + "rmse": 0.23744216454237665 + } + }, + "score": 0.18858377272382448, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7179969503829768, + 0.9833413794280775 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 5.0, + "expression": "(Cd_F - 1*1.139033)**2", + "loss": 0.04800065, + "metrics": { + "blind": { + "mae": 0.22894130467893398, + "max_error": 0.7126485915675447, + "r2": -0.6902531278668729, + "rmse": 0.29106216689894726 + }, + "train": { + "mae": 0.17296536625680622, + "max_error": 0.6857126242399145, + "r2": 0.48393644767782906, + "rmse": 0.2190905046319178 + }, + "validation": { + "mae": 0.24872447405892445, + "max_error": 0.7383750301317822, + "r2": -0.3643815262401022, + "rmse": 0.32551086077567254 + } + }, + "score": 0.2843574929354757, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.3959103936750077, + 1.6452965718435881 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s2-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942186200000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12275398952222824, + "max_error": 0.35659893689270017, + "r2": -0.003802214195546494, + "rmse": 0.14832257081632935 + }, + "train": { + "mae": 0.16644193711927385, + "max_error": 0.7180227869522094, + "r2": -6.461402857205201e-08, + "rmse": 0.22619348135657644 + }, + "validation": { + "mae": 0.11861079615652621, + "max_error": 0.32852812943572995, + "r2": -0.007834623595443846, + "rmse": 0.14456362673562428 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.46353057, + "metrics": { + "blind": { + "mae": 0.5827726590187012, + "max_error": 1.3141757168341428, + "r2": -21.72259987442313, + "rmse": 0.7056871025605645 + }, + "train": { + "mae": 0.5669855430052725, + "max_error": 1.4811755518894643, + "r2": -8.059791255049982, + "rmse": 0.6808307561086059 + }, + "validation": { + "mae": 0.6131191903640194, + "max_error": 1.2822435218840837, + "r2": -24.243064396910242, + "rmse": 0.7234948357979383 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942186200000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12275398952222824, + "max_error": 0.35659893689270017, + "r2": -0.003802214195546494, + "rmse": 0.14832257081632935 + }, + "train": { + "mae": 0.16644193711927385, + "max_error": 0.7180227869522094, + "r2": -6.461402857205201e-08, + "rmse": 0.22619348135657644 + }, + "validation": { + "mae": 0.11861079615652621, + "max_error": 0.32852812943572995, + "r2": -0.007834623595443846, + "rmse": 0.14456362673562428 + } + }, + "score": 2.2038462825986183, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9421862, + -0.9421862 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s*(-0.5323016)", + "loss": 0.03804759, + "metrics": { + "blind": { + "mae": 0.10195171926269131, + "max_error": 0.26556154445875446, + "r2": 0.30852129469092715, + "rmse": 0.12310411625186272 + }, + "train": { + "mae": 0.14244419990412802, + "max_error": 0.5371437122402246, + "r2": 0.2563527611541234, + "rmse": 0.19505790514501534 + }, + "validation": { + "mae": 0.0914582486507226, + "max_error": 0.26805888488169305, + "r2": 0.38446254622670517, + "rmse": 0.11297741661812427 + } + }, + "score": 0.1480941551683454, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0894933423781767, + -0.7017543909546687 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s2-20260718", + "used_features": [] + }, + { + "expression": "Cl_rear_s*0.5879381", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.21832953032701305, + "max_error": 0.36627330305186334, + "r2": 0.6465895724434361, + "rmse": 0.24272806253676132 + }, + "train": { + "mae": 0.25917440324255364, + "max_error": 0.5931887923395145, + "r2": 0.4724197514770909, + "rmse": 0.2984211238555423 + }, + "validation": { + "mae": 0.23068170037340083, + "max_error": 0.44920081067077117, + "r2": 0.5554337403271283, + "rmse": 0.2668442273848538 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 0.80733895, + "metrics": { + "blind": { + "mae": 0.696158525246392, + "max_error": 1.5813681320287287, + "r2": -3.218013474077466, + "rmse": 0.8385602869923516 + }, + "train": { + "mae": 0.7675379431658889, + "max_error": 1.5932811493985355, + "r2": -3.782833919352938, + "rmse": 0.8985204124834466 + }, + "validation": { + "mae": 0.8699088570063349, + "max_error": 1.589142348151654, + "r2": -5.313344392831486, + "rmse": 1.0055861962407384 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.940348778385669, + 0.399530166760087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 1.6751816639896868, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "Cd_F - Cd_rear_s", + "loss": 0.13329367, + "metrics": { + "blind": { + "mae": 0.3083123697608244, + "max_error": 0.663125607650727, + "r2": 0.22526863777908868, + "rmse": 0.3593816333882767 + }, + "train": { + "mae": 0.30653471831366486, + "max_error": 0.7952101309783757, + "r2": 0.21034221229703143, + "rmse": 0.365094053105025 + }, + "validation": { + "mae": 0.34121338738343465, + "max_error": 0.6883837869390845, + "r2": 0.002734142345385604, + "rmse": 0.3996640069080585 + } + }, + "score": 0.12600718930591367, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.37496467120945454, + 0.44990729657001793 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.5879381", + "loss": 0.08905516, + "metrics": { + "blind": { + "mae": 0.21832953032701305, + "max_error": 0.36627330305186334, + "r2": 0.6465895724434361, + "rmse": 0.24272806253676132 + }, + "train": { + "mae": 0.25917440324255364, + "max_error": 0.5931887923395145, + "r2": 0.4724197514770909, + "rmse": 0.2984211238555423 + }, + "validation": { + "mae": 0.23068170037340083, + "max_error": 0.44920081067077117, + "r2": 0.5554337403271283, + "rmse": 0.2668442273848538 + } + }, + "score": 0.40329878615374914, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4802661983882892, + 0.7603672095977294 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_rear_a**2 + Cl_rear_s - 0.20285276", + "loss": 0.07935074, + "metrics": { + "blind": { + "mae": 0.23467806131113528, + "max_error": 0.4228578823239474, + "r2": 0.5805144604691292, + "rmse": 0.26444709882796913 + }, + "train": { + "mae": 0.23068966851486156, + "max_error": 0.6573756963919619, + "r2": 0.5299107088689357, + "rmse": 0.28169262473894724 + }, + "validation": { + "mae": 0.15257650195239383, + "max_error": 0.3622911101306774, + "r2": 0.7902538730265183, + "rmse": 0.18328905743279222 + } + }, + "score": 0.03845939344360957, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.09847512720428345, + 1.3845245390394498 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_target-s2-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "0.20018438794809*Cd_F**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1634407760291699, + "max_error": 0.4052062529436298, + "r2": 0.16051749312853647, + "rmse": 0.20512363756844773 + }, + "train": { + "mae": 0.17111603602146136, + "max_error": 0.46637591049926486, + "r2": 0.5206290379539061, + "rmse": 0.21115813786241072 + }, + "validation": { + "mae": 0.1896178442300578, + "max_error": 0.43642061661647347, + "r2": 0.3523599079355254, + "rmse": 0.22426651338498732 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_err", + "loss": 0.9510737, + "metrics": { + "blind": { + "mae": 0.710097011027392, + "max_error": 1.126124419271946, + "r2": -9.970358338687541, + "rmse": 0.7415155979978445 + }, + "train": { + "mae": 0.883020389773804, + "max_error": 2.0674071786925197, + "r2": -9.225163732394384, + "rmse": 0.9752301006447736 + }, + "validation": { + "mae": 0.7041060948290695, + "max_error": 1.1799194104969501, + "r2": -6.3075581237791285, + "rmse": 0.7533273022447557 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7985222619026899, + 0.3508760128170252 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_err" + ] + }, + { + "complexity": 2.0, + "expression": "0.803504050000000", + "loss": 0.09301303, + "metrics": { + "blind": { + "mae": 0.19123388535484315, + "max_error": 0.49804192803649905, + "r2": -0.11009575616124301, + "rmse": 0.23587944936826424 + }, + "train": { + "mae": 0.2489609880489285, + "max_error": 0.6767832634613037, + "r2": -3.974576223697568e-11, + "rmse": 0.30498042263364794 + }, + "validation": { + "mae": 0.24085260660789679, + "max_error": 0.4790615437194824, + "r2": -0.0002615265870786754, + "rmse": 0.27871115475186525 + } + }, + "score": 2.3248519660478175, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.80350405, + 0.80350405 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1.0668246", + "loss": 0.06070128, + "metrics": { + "blind": { + "mae": 0.22489940135827968, + "max_error": 0.5525096115730048, + "r2": -0.6746763849038127, + "rmse": 0.2897179024367254 + }, + "train": { + "mae": 0.20064650076201357, + "max_error": 0.5868978557250739, + "r2": 0.3473897493416064, + "rmse": 0.24637628785525514 + }, + "validation": { + "mae": 0.23535883800347215, + "max_error": 0.6045991853884698, + "r2": -0.12978787142816905, + "rmse": 0.2962074806944902 + } + }, + "score": 0.2133874028541071, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.701422507975185, + 1.3548995443693639 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 5.0, + "expression": "0.20018438794809*Cd_F**2", + "loss": 0.04458775, + "metrics": { + "blind": { + "mae": 0.1634407760291699, + "max_error": 0.4052062529436298, + "r2": 0.16051749312853647, + "rmse": 0.20512363756844773 + }, + "train": { + "mae": 0.17111603602146136, + "max_error": 0.46637591049926486, + "r2": 0.5206290379539061, + "rmse": 0.21115813786241072 + }, + "validation": { + "mae": 0.1896178442300578, + "max_error": 0.43642061661647347, + "r2": 0.3523599079355254, + "rmse": 0.22426651338498732 + } + }, + "score": 0.3085056275358683, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6259160923705888, + 1.1740309551030066 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "Cl_err**4 - 0.93708986", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.10113808026896538, + "max_error": 0.23080492795637708, + "r2": 0.36799129202404024, + "rmse": 0.11769139232958219 + }, + "train": { + "mae": 0.16179250604225434, + "max_error": 0.712926409750473, + "r2": 0.0381615059317425, + "rmse": 0.22183555162076202 + }, + "validation": { + "mae": 0.10354684747329734, + "max_error": 0.24173238581026824, + "r2": 0.2781532556152557, + "rmse": 0.12234518978489203 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.942243750000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274247952222823, + "max_error": 0.35665648689270024, + "r2": -0.003754423946049412, + "rmse": 0.14831904001268342 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180803369522095, + "r2": -5.5067062021407764e-14, + "rmse": 0.226193474048947 + }, + "validation": { + "mae": 0.11859161282319287, + "max_error": 0.32858567943573, + "r2": -0.007764034367198969, + "rmse": 0.1445585639935358 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224375, + -0.94224375 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 6.0, + "expression": "Cl_err**4 - 0.93708986", + "loss": 0.049211014, + "metrics": { + "blind": { + "mae": 0.10113808026896538, + "max_error": 0.23080492795637708, + "r2": 0.36799129202404024, + "rmse": 0.11769139232958219 + }, + "train": { + "mae": 0.16179250604225434, + "max_error": 0.712926409750473, + "r2": 0.0381615059317425, + "rmse": 0.22183555162076202 + }, + "validation": { + "mae": 0.10354684747329734, + "max_error": 0.24173238581026824, + "r2": 0.2781532556152557, + "rmse": 0.12234518978489203 + } + }, + "score": 0.009727148672841048, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.937088705737113, + -0.6799074803852985 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_err" + ] + }, + { + "expression": "Cl_rear_s*0.51447266 + 0.20592265", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.12035675821188119, + "max_error": 0.3444441446835744, + "r2": 0.8626873715854264, + "rmse": 0.1512988231095407 + }, + "train": { + "mae": 0.1686899888448771, + "max_error": 0.647175750846957, + "r2": 0.7082518121881701, + "rmse": 0.22191639109317585 + }, + "validation": { + "mae": 0.14353316177820133, + "max_error": 0.4177760694458509, + "r2": 0.8021441942259171, + "rmse": 0.17801801823975036 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.4877938", + "loss": 0.09387947, + "metrics": { + "blind": { + "mae": 0.23404751860376508, + "max_error": 0.4364018676654552, + "r2": 0.6044704081155772, + "rmse": 0.25678508823270585 + }, + "train": { + "mae": 0.2749696573485111, + "max_error": 0.5700701279862318, + "r2": 0.44383963119330283, + "rmse": 0.30639757007424695 + }, + "validation": { + "mae": 0.2726361566404786, + "max_error": 0.5249868050496327, + "r2": 0.4323738653668856, + "rmse": 0.3015232143950605 + } + }, + "score": 0.23827510151466724, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.39846180052522107, + 0.6308528237327584 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "0.57513506742756*Cl_rear_s**2", + "loss": 0.09302676, + "metrics": { + "blind": { + "mae": 0.2788957196937717, + "max_error": 0.5421800554088019, + "r2": 0.37808546721293923, + "rmse": 0.3219924305538004 + }, + "train": { + "mae": 0.25998645729739006, + "max_error": 0.6486621291884458, + "r2": 0.4488912902318467, + "rmse": 0.3050028762629017 + }, + "validation": { + "mae": 0.2593559595873616, + "max_error": 0.5973526917450399, + "r2": 0.3965877663570655, + "rmse": 0.3108827451640552 + } + }, + "score": 0.009124531763018447, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.000375792197453859, + 0.9619519936972959 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s*(-0.49069914) + Cl_rear_s", + "loss": 0.09202967, + "metrics": { + "blind": { + "mae": 0.22990077840351636, + "max_error": 0.41423996425904686, + "r2": 0.6175952160485727, + "rmse": 0.25248871263629535 + }, + "train": { + "mae": 0.2713245452428019, + "max_error": 0.5654190243475092, + "r2": 0.4547982045663501, + "rmse": 0.3033639260524783 + }, + "validation": { + "mae": 0.2632451682807287, + "max_error": 0.50871095182318, + "r2": 0.46482175059030595, + "rmse": 0.2927782361716201 + } + }, + "score": 0.010776168641875387, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.41603017029868666, + 0.6586674239412683 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_rear_s*0.51447266 + 0.20592265", + "loss": 0.04924688, + "metrics": { + "blind": { + "mae": 0.12035675821188119, + "max_error": 0.3444441446835744, + "r2": 0.8626873715854264, + "rmse": 0.1512988231095407 + }, + "train": { + "mae": 0.1686899888448771, + "max_error": 0.647175750846957, + "r2": 0.7082518121881701, + "rmse": 0.22191639109317585 + }, + "validation": { + "mae": 0.14353316177820133, + "max_error": 0.4177760694458509, + "r2": 0.8021441942259171, + "rmse": 0.17801801823975036 + } + }, + "score": 0.6252650096995146, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2143321839577089, + 0.8712786473380214 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "0.20018438794809*Cd_F**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1634407760291699, + "max_error": 0.4052062529436298, + "r2": 0.16051749312853647, + "rmse": 0.20512363756844773 + }, + "train": { + "mae": 0.17111603602146136, + "max_error": 0.46637591049926486, + "r2": 0.5206290379539061, + "rmse": 0.21115813786241072 + }, + "validation": { + "mae": 0.1896178442300578, + "max_error": 0.43642061661647347, + "r2": 0.3523599079355254, + "rmse": 0.22426651338498732 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_err", + "loss": 0.9510737, + "metrics": { + "blind": { + "mae": 0.710097011027392, + "max_error": 1.126124419271946, + "r2": -9.970358338687541, + "rmse": 0.7415155979978445 + }, + "train": { + "mae": 0.883020389773804, + "max_error": 2.0674071786925197, + "r2": -9.225163732394384, + "rmse": 0.9752301006447736 + }, + "validation": { + "mae": 0.7041060948290695, + "max_error": 1.1799194104969501, + "r2": -6.3075581237791285, + "rmse": 0.7533273022447557 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7985222619026899, + 0.3508760128170252 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_err" + ] + }, + { + "complexity": 2.0, + "expression": "0.803504050000000", + "loss": 0.09301303, + "metrics": { + "blind": { + "mae": 0.19123388535484315, + "max_error": 0.49804192803649905, + "r2": -0.11009575616124301, + "rmse": 0.23587944936826424 + }, + "train": { + "mae": 0.2489609880489285, + "max_error": 0.6767832634613037, + "r2": -3.974576223697568e-11, + "rmse": 0.30498042263364794 + }, + "validation": { + "mae": 0.24085260660789679, + "max_error": 0.4790615437194824, + "r2": -0.0002615265870786754, + "rmse": 0.27871115475186525 + } + }, + "score": 2.3248519660478175, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.80350405, + 0.80350405 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1.0668246", + "loss": 0.06070128, + "metrics": { + "blind": { + "mae": 0.22489940135827968, + "max_error": 0.5525096115730048, + "r2": -0.6746763849038127, + "rmse": 0.2897179024367254 + }, + "train": { + "mae": 0.20064650076201357, + "max_error": 0.5868978557250739, + "r2": 0.3473897493416064, + "rmse": 0.24637628785525514 + }, + "validation": { + "mae": 0.23535883800347215, + "max_error": 0.6045991853884698, + "r2": -0.12978787142816905, + "rmse": 0.2962074806944902 + } + }, + "score": 0.2133874028541071, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.701422507975185, + 1.3548995443693639 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 5.0, + "expression": "0.20018438794809*Cd_F**2", + "loss": 0.04458775, + "metrics": { + "blind": { + "mae": 0.1634407760291699, + "max_error": 0.4052062529436298, + "r2": 0.16051749312853647, + "rmse": 0.20512363756844773 + }, + "train": { + "mae": 0.17111603602146136, + "max_error": 0.46637591049926486, + "r2": 0.5206290379539061, + "rmse": 0.21115813786241072 + }, + "validation": { + "mae": 0.1896178442300578, + "max_error": 0.43642061661647347, + "r2": 0.3523599079355254, + "rmse": 0.22426651338498732 + } + }, + "score": 0.3085056275358683, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6259160923705888, + 1.1740309551030066 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "Cl_err**4 - 0.93708986", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.10113808026896538, + "max_error": 0.23080492795637708, + "r2": 0.36799129202404024, + "rmse": 0.11769139232958219 + }, + "train": { + "mae": 0.16179250604225434, + "max_error": 0.712926409750473, + "r2": 0.0381615059317425, + "rmse": 0.22183555162076202 + }, + "validation": { + "mae": 0.10354684747329734, + "max_error": 0.24173238581026824, + "r2": 0.2781532556152557, + "rmse": 0.12234518978489203 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.942243750000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274247952222823, + "max_error": 0.35665648689270024, + "r2": -0.003754423946049412, + "rmse": 0.14831904001268342 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180803369522095, + "r2": -5.5067062021407764e-14, + "rmse": 0.226193474048947 + }, + "validation": { + "mae": 0.11859161282319287, + "max_error": 0.32858567943573, + "r2": -0.007764034367198969, + "rmse": 0.1445585639935358 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224375, + -0.94224375 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 6.0, + "expression": "Cl_err**4 - 0.93708986", + "loss": 0.049211014, + "metrics": { + "blind": { + "mae": 0.10113808026896538, + "max_error": 0.23080492795637708, + "r2": 0.36799129202404024, + "rmse": 0.11769139232958219 + }, + "train": { + "mae": 0.16179250604225434, + "max_error": 0.712926409750473, + "r2": 0.0381615059317425, + "rmse": 0.22183555162076202 + }, + "validation": { + "mae": 0.10354684747329734, + "max_error": 0.24173238581026824, + "r2": 0.2781532556152557, + "rmse": 0.12234518978489203 + } + }, + "score": 0.009727148672841048, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.937088705737113, + -0.6799074803852985 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_err" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_err" + ] + }, + { + "expression": "Cl_rear_s*0.51447266 + 0.20592265", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.12035675821188119, + "max_error": 0.3444441446835744, + "r2": 0.8626873715854264, + "rmse": 0.1512988231095407 + }, + "train": { + "mae": 0.1686899888448771, + "max_error": 0.647175750846957, + "r2": 0.7082518121881701, + "rmse": 0.22191639109317585 + }, + "validation": { + "mae": 0.14353316177820133, + "max_error": 0.4177760694458509, + "r2": 0.8021441942259171, + "rmse": 0.17801801823975036 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.4877938", + "loss": 0.09387947, + "metrics": { + "blind": { + "mae": 0.23404751860376508, + "max_error": 0.4364018676654552, + "r2": 0.6044704081155772, + "rmse": 0.25678508823270585 + }, + "train": { + "mae": 0.2749696573485111, + "max_error": 0.5700701279862318, + "r2": 0.44383963119330283, + "rmse": 0.30639757007424695 + }, + "validation": { + "mae": 0.2726361566404786, + "max_error": 0.5249868050496327, + "r2": 0.4323738653668856, + "rmse": 0.3015232143950605 + } + }, + "score": 0.23827510151466724, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.39846180052522107, + 0.6308528237327584 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "0.57513506742756*Cl_rear_s**2", + "loss": 0.09302676, + "metrics": { + "blind": { + "mae": 0.2788957196937717, + "max_error": 0.5421800554088019, + "r2": 0.37808546721293923, + "rmse": 0.3219924305538004 + }, + "train": { + "mae": 0.25998645729739006, + "max_error": 0.6486621291884458, + "r2": 0.4488912902318467, + "rmse": 0.3050028762629017 + }, + "validation": { + "mae": 0.2593559595873616, + "max_error": 0.5973526917450399, + "r2": 0.3965877663570655, + "rmse": 0.3108827451640552 + } + }, + "score": 0.009124531763018447, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.000375792197453859, + 0.9619519936972959 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s*(-0.49069914) + Cl_rear_s", + "loss": 0.09202967, + "metrics": { + "blind": { + "mae": 0.22990077840351636, + "max_error": 0.41423996425904686, + "r2": 0.6175952160485727, + "rmse": 0.25248871263629535 + }, + "train": { + "mae": 0.2713245452428019, + "max_error": 0.5654190243475092, + "r2": 0.4547982045663501, + "rmse": 0.3033639260524783 + }, + "validation": { + "mae": 0.2632451682807287, + "max_error": 0.50871095182318, + "r2": 0.46482175059030595, + "rmse": 0.2927782361716201 + } + }, + "score": 0.010776168641875387, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.41603017029868666, + 0.6586674239412683 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_rear_s*0.51447266 + 0.20592265", + "loss": 0.04924688, + "metrics": { + "blind": { + "mae": 0.12035675821188119, + "max_error": 0.3444441446835744, + "r2": 0.8626873715854264, + "rmse": 0.1512988231095407 + }, + "train": { + "mae": 0.1686899888448771, + "max_error": 0.647175750846957, + "r2": 0.7082518121881701, + "rmse": 0.22191639109317585 + }, + "validation": { + "mae": 0.14353316177820133, + "max_error": 0.4177760694458509, + "r2": 0.8021441942259171, + "rmse": 0.17801801823975036 + } + }, + "score": 0.6252650096995146, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.2143321839577089, + 0.8712786473380214 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s1-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "Cd_F - 1*1.2116861", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.16458825309486627, + "max_error": 0.4076481115730046, + "r2": 0.18136637972777447, + "rmse": 0.2025604589885783 + }, + "train": { + "mae": 0.15995730431861785, + "max_error": 0.45241949253664027, + "r2": 0.5730551031480431, + "rmse": 0.19927732066933815 + }, + "validation": { + "mae": 0.18477723380581232, + "max_error": 0.4597376853884696, + "r2": 0.3730755328120513, + "rmse": 0.2206506331990647 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 1.5079364, + "metrics": { + "blind": { + "mae": 1.2873475741129368, + "max_error": 1.6193342115730047, + "r2": -32.76967135652383, + "rmse": 1.3009880312497824 + }, + "train": { + "mae": 1.2117032560488303, + "max_error": 1.6537224557250738, + "r2": -15.212091725239919, + "rmse": 1.2279805499103629 + }, + "validation": { + "mae": 1.2740467531272235, + "max_error": 1.6714237853884697, + "r2": -20.478259335686854, + "rmse": 1.2915080255370905 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.768247107975185, + 2.421724144369364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 2.7857576742343877, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.2116861", + "loss": 0.03971144, + "metrics": { + "blind": { + "mae": 0.16458825309486627, + "max_error": 0.4076481115730046, + "r2": 0.18136637972777447, + "rmse": 0.2025604589885783 + }, + "train": { + "mae": 0.15995730431861785, + "max_error": 0.45241949253664027, + "r2": 0.5730551031480431, + "rmse": 0.19927732066933815 + }, + "validation": { + "mae": 0.18477723380581232, + "max_error": 0.4597376853884696, + "r2": 0.3730755328120513, + "rmse": 0.2206506331990647 + } + }, + "score": 0.4255501954930309, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5565610079751848, + 1.2100380443693637 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s1-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "0.8077099 - Cd_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.10676801355155838, + "max_error": 0.2579573469340266, + "r2": 0.23235732071469462, + "rmse": 0.12970679431783158 + }, + "train": { + "mae": 0.14858675290652962, + "max_error": 0.5526611969910027, + "r2": 0.23859728951668824, + "rmse": 0.19737278995427096 + }, + "validation": { + "mae": 0.09389756940362529, + "max_error": 0.3026178443908156, + "r2": 0.2702540032941274, + "rmse": 0.12301278712902361 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.942223670000000", + "loss": 0.05116348, + "metrics": { + "blind": { + "mae": 0.12274649552222824, + "max_error": 0.35663640689270015, + "r2": -0.0037710643020074652, + "rmse": 0.1483202694326159 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180602569522094, + "r2": -7.839021654021394e-09, + "rmse": 0.2261934749355085 + }, + "validation": { + "mae": 0.11859830615652624, + "max_error": 0.32856559943572994, + "r2": -0.007788627652036251, + "rmse": 0.1445603278728414 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94222367, + -0.94222367 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.8077099 - Cd_rear_s", + "loss": 0.03895602, + "metrics": { + "blind": { + "mae": 0.10676801355155838, + "max_error": 0.2579573469340266, + "r2": 0.23235732071469462, + "rmse": 0.12970679431783158 + }, + "train": { + "mae": 0.14858675290652962, + "max_error": 0.5526611969910027, + "r2": 0.23859728951668824, + "rmse": 0.19737278995427096 + }, + "validation": { + "mae": 0.09389756940362529, + "max_error": 0.3026178443908156, + "r2": 0.2702540032941274, + "rmse": 0.12301278712902361 + } + }, + "score": 0.1362963393954035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2390495731599094, + -0.510629911405167 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "0.827110452394577 - Cd_rear_s", + "loss": 0.03831833, + "metrics": { + "blind": { + "mae": 0.09968354719706296, + "max_error": 0.23855679453944933, + "r2": 0.3248966749665906, + "rmse": 0.12163772619098949 + }, + "train": { + "mae": 0.14530156881995637, + "max_error": 0.5636275460045955, + "r2": 0.2510611236893381, + "rmse": 0.19575067046607153 + }, + "validation": { + "mae": 0.0855785479531017, + "max_error": 0.28321729199623835, + "r2": 0.3831455561166165, + "rmse": 0.11309821401026905 + } + }, + "score": 0.016504945721329423, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.219649020765332, + -0.49122935901058995 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "0.8077099 - 0.98149323*Cd_rear_s", + "loss": 0.03809983, + "metrics": { + "blind": { + "mae": 0.09580033396590595, + "max_error": 0.2228715455580228, + "r2": 0.3713348780198281, + "rmse": 0.11737966155223771 + }, + "train": { + "mae": 0.14423120589885585, + "max_error": 0.5759076935800568, + "r2": 0.2553316482368788, + "rmse": 0.19519177763867496 + }, + "validation": { + "mae": 0.08197136167968747, + "max_error": 0.26672926104838535, + "r2": 0.44435648306397524, + "rmse": 0.10734023053402178 + } + }, + "score": 0.0028592757983905486, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2011706663448178, + -0.4862316997336481 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s1-20260718", + "used_features": [ + "Cd_rear_s" + ] + }, + { + "expression": "(-Cd_rear_a + Cl_rear_s)*0.6098909", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.19070784584749045, + "max_error": 0.4314114212143293, + "r2": 0.7105708591570566, + "rmse": 0.21966023169140855 + }, + "train": { + "mae": 0.15961938983481874, + "max_error": 0.4372331057712319, + "r2": 0.7914240968032376, + "rmse": 0.18763651752286112 + }, + "validation": { + "mae": 0.16914828483479985, + "max_error": 0.3569562706176774, + "r2": 0.7783978086918621, + "rmse": 0.18839813012625534 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.17075412, + "metrics": { + "blind": { + "mae": 0.27673085175920276, + "max_error": 0.601998895406723, + "r2": 0.3108234960479447, + "rmse": 0.3389577287731067 + }, + "train": { + "mae": 0.3492160899785616, + "max_error": 0.9297878360375762, + "r2": -0.011580860521255065, + "rmse": 0.4132240590406017 + }, + "validation": { + "mae": 0.2720837906982081, + "max_error": 0.6755692316219211, + "r2": 0.3105860059099895, + "rmse": 0.3322994405475299 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8168652420863509, + 1.2932776589877903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.12166269851182035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.5879332", + "loss": 0.089055166, + "metrics": { + "blind": { + "mae": 0.21833021327429097, + "max_error": 0.3662705128411297, + "r2": 0.6465886950934582, + "rmse": 0.24272836382573232 + }, + "train": { + "mae": 0.2591751250319479, + "max_error": 0.5931847896998284, + "r2": 0.47241975169209915, + "rmse": 0.29842112379473357 + }, + "validation": { + "mae": 0.23068372945011748, + "max_error": 0.44920451883361673, + "r2": 0.5554294655043812, + "rmse": 0.26684551033087833 + } + }, + "score": 0.1738918048766951, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.480262195748603, + 0.7603608725372004 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cd_rear_a + Cl_rear_s)*0.6098909", + "loss": 0.035207465, + "metrics": { + "blind": { + "mae": 0.19070784584749045, + "max_error": 0.4314114212143293, + "r2": 0.7105708591570566, + "rmse": 0.21966023169140855 + }, + "train": { + "mae": 0.15961938983481874, + "max_error": 0.4372331057712319, + "r2": 0.7914240968032376, + "rmse": 0.18763651752286112 + }, + "validation": { + "mae": 0.16914828483479985, + "max_error": 0.3569562706176774, + "r2": 0.7783978086918621, + "rmse": 0.18839813012625534 + } + }, + "score": 0.4639989432112127, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.12229477767150387, + 0.458008620343206 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-illusion_1L-actual_only-s1-20260718", + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "0.803501900000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cd", + "loss": 23.539303, + "metrics": { + "blind": { + "mae": 4.910213443078101, + "max_error": 5.251278676092625, + "r2": -480.74537180753293, + "rmse": 4.913813392288327 + }, + "train": { + "mae": 4.8433991134229855, + "max_error": 5.339932549744844, + "r2": -252.07524296005897, + "rmse": 4.851731886543791 + }, + "validation": { + "mae": 4.83549042026966, + "max_error": 5.216372039169073, + "r2": -300.7958634114618, + "rmse": 4.841213210569151 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 5.49035519361496, + 5.787536967545748 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 2.0, + "expression": "0.803501900000000", + "loss": 0.09301304, + "metrics": { + "blind": { + "mae": 0.19123324035484313, + "max_error": 0.498039778036499, + "r2": -0.11008938325431661, + "rmse": 0.235878772291568 + }, + "train": { + "mae": 0.24896047787943698, + "max_error": 0.6767854134613037, + "r2": -5.555556015224283e-13, + "rmse": 0.30498042262767183 + }, + "validation": { + "mae": 0.2408525514796917, + "max_error": 0.47906369371948243, + "r2": -0.0002617761800738361, + "rmse": 0.278711189524945 + } + }, + "score": 5.533687072822229, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.8035019, + 0.8035019 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cd*0.14254752", + "loss": 0.0905635, + "metrics": { + "blind": { + "mae": 0.1869244536646754, + "max_error": 0.48663749808222057, + "r2": -0.056347353206507966, + "rmse": 0.23009821962823965 + }, + "train": { + "mae": 0.24686097637070312, + "max_error": 0.6751620821420847, + "r2": 0.026335622266630998, + "rmse": 0.3009377035531578 + }, + "validation": { + "mae": 0.2356121858369081, + "max_error": 0.4616424797092378, + "r2": 0.047884141684319426, + "rmse": 0.2719208240509497 + } + }, + "score": 0.013344218129935637, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7826365167689324, + 0.8249990416319669 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 5.0, + "expression": "0.0246831938904996*target_Cd**2", + "loss": 0.08871263, + "metrics": { + "blind": { + "mae": 0.1771028008738023, + "max_error": 0.4566899465343204, + "r2": 0.04080032267939404, + "rmse": 0.21926251744077352 + }, + "train": { + "mae": 0.23988454044356414, + "max_error": 0.6936302195685663, + "r2": 0.04623467739272813, + "rmse": 0.2978466542493909 + }, + "validation": { + "mae": 0.23137284554151313, + "max_error": 0.463936848208944, + "r2": 0.08556097098719329, + "rmse": 0.26648633575665753 + } + }, + "score": 0.020648992859989907, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.7440502003884171, + 0.8267779980674865 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + }, + { + "complexity": 7.0, + "expression": "0.808776 - (-0.09205173)*target_Cl", + "loss": 0.07417759, + "metrics": { + "blind": { + "mae": 0.19309708881007742, + "max_error": 0.5353323604222576, + "r2": -0.1478122949111933, + "rmse": 0.2398530913934321 + }, + "train": { + "mae": 0.2194459148916464, + "max_error": 0.6179467261743531, + "r2": 0.20250333398460052, + "rmse": 0.2723556568153348 + }, + "validation": { + "mae": 0.2075826519122262, + "max_error": 0.5336273474565989, + "r2": 0.1659939688696631, + "rmse": 0.2544967050571626 + } + }, + "score": 0.08947009313282576, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.6153214831133271, + 1.0053520694721994 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s2-20260718", + "used_features": [] + }, + { + "expression": "4.7046576 - target_Cd", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.118849568389256, + "max_error": 0.30855725400099754, + "r2": 0.037462524510548656, + "rmse": 0.1452419240067384 + }, + "train": { + "mae": 0.15464722434345465, + "max_error": 0.6750512265419006, + "r2": 0.14657768358661083, + "rmse": 0.2089594749962524 + }, + "validation": { + "mae": 0.11571286634172293, + "max_error": 0.27034069530715943, + "r2": 0.045962804337256524, + "rmse": 0.14065236904696343 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.942243750000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274247952222823, + "max_error": 0.35665648689270024, + "r2": -0.003754423946049412, + "rmse": 0.14831904001268342 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180803369522095, + "r2": -5.5067062021407764e-14, + "rmse": 0.226193474048947 + }, + "validation": { + "mae": 0.11859161282319287, + "max_error": 0.32858567943573, + "r2": -0.007764034367198969, + "rmse": 0.1445585639935358 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.94224375, + -0.94224375 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "4.7046576 - target_Cd", + "loss": 0.043664064, + "metrics": { + "blind": { + "mae": 0.118849568389256, + "max_error": 0.30855725400099754, + "r2": 0.037462524510548656, + "rmse": 0.1452419240067384 + }, + "train": { + "mae": 0.15464722434345465, + "max_error": 0.6750512265419006, + "r2": 0.14657768358661083, + "rmse": 0.2089594749962524 + }, + "validation": { + "mae": 0.11571286634172293, + "max_error": 0.27034069530715943, + "r2": 0.045962804337256524, + "rmse": 0.14065236904696343 + } + }, + "score": 0.07925031261082945, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0828793675457478, + -0.7856975936149597 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cd" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s2-20260718", + "used_features": [ + "target_Cd" + ] + }, + { + "expression": "target_Cl*0.22501326 + 0.30711526", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.1182162855355555, + "max_error": 0.3432146704188029, + "r2": 0.8626905640357871, + "rmse": 0.1512970642880998 + }, + "train": { + "mae": 0.1872011262747403, + "max_error": 0.6105297812589926, + "r2": 0.6667437544728975, + "rmse": 0.23717802380609465 + }, + "validation": { + "mae": 0.15004820275907876, + "max_error": 0.4275040726765983, + "r2": 0.7715058878793075, + "rmse": 0.1913053297240884 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "target_Cl", + "loss": 1.5148845, + "metrics": { + "blind": { + "mae": 1.036934501430369, + "max_error": 1.9805030636489391, + "r2": -7.540823138772231, + "rmse": 1.193246513196175 + }, + "train": { + "mae": 1.0661067202777226, + "max_error": 2.23390980809927, + "r2": -7.97447100287709, + "rmse": 1.230806346211008 + }, + "validation": { + "mae": 0.9126892686860325, + "max_error": 2.0859514493495226, + "r2": -6.271999205151219, + "rmse": 1.079236125483707 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.101584803313017, + 2.1354956552386284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 2.0, + "expression": "0.294221000000000", + "loss": 0.16879924, + "metrics": { + "blind": { + "mae": 0.3724867193957567, + "max_error": 0.667314068599701, + "r2": -0.03234078724974032, + "rmse": 0.4148507244641141 + }, + "train": { + "mae": 0.36908401607574653, + "max_error": 0.7223586279907226, + "r2": -1.4632739464559563e-13, + "rmse": 0.41085189792521676 + }, + "validation": { + "mae": 0.3834750396417226, + "max_error": 0.6489756543197631, + "r2": -0.12580521816256485, + "rmse": 0.4246402837763002 + } + }, + "score": 2.194384397631419, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.294221, + 0.294221 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "target_Cl*0.21711498", + "loss": 0.15043399, + "metrics": { + "blind": { + "mae": 0.30103340819980984, + "max_error": 0.5398137916322914, + "r2": 0.3312888912934413, + "rmse": 0.33388705270321634 + }, + "train": { + "mae": 0.34825609851981537, + "max_error": 0.7094314805426432, + "r2": 0.10879946172369948, + "rmse": 0.3878582357055932 + }, + "validation": { + "mae": 0.3523579781967961, + "max_error": 0.6599070227156254, + "r2": 0.055394050042924525, + "rmse": 0.3889689201163288 + } + }, + "score": 0.057592848229719926, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4562855425396096, + 0.4636480964772217 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + }, + { + "complexity": 7.0, + "expression": "target_Cl*0.22501326 + 0.30711526", + "loss": 0.056253407, + "metrics": { + "blind": { + "mae": 0.1182162855355555, + "max_error": 0.3432146704188029, + "r2": 0.8626905640357871, + "rmse": 0.1512970642880998 + }, + "train": { + "mae": 0.1872011262747403, + "max_error": 0.6105297812589926, + "r2": 0.6667437544728975, + "rmse": 0.23717802380609465 + }, + "validation": { + "mae": 0.15004820275907876, + "max_error": 0.4275040726765983, + "r2": 0.7715058878793075, + "rmse": 0.1913053297240884 + } + }, + "score": 0.3278859250611385, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.16576918775992072, + 0.7876300991010798 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "target_Cl" + ] + } + ], + "run": "article-discovery-illusion_1L-target_only-s2-20260718", + "used_features": [ + "target_Cl" + ] + }, + { + "expression": "Cd_F - 1*1.211704", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.1645864630948663, + "max_error": 0.40763021157300483, + "r2": 0.1814204161617674, + "rmse": 0.2025537735647013 + }, + "train": { + "mae": 0.15995700092878734, + "max_error": 0.45243739253664006, + "r2": 0.5730551063064874, + "rmse": 0.1992773199322333 + }, + "validation": { + "mae": 0.18477493893401745, + "max_error": 0.4597197853884698, + "r2": 0.37310427608444874, + "rmse": 0.22064557493903258 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_a", + "loss": 97.78473, + "metrics": { + "blind": { + "mae": 5.788825842179358, + "max_error": 16.891722723841667, + "r2": -1204.8595073363222, + "rmse": 7.77424530478247 + }, + "train": { + "mae": 7.619751162132469, + "max_error": 27.66404962539673, + "r2": -1050.3009761206567, + "rmse": 9.88861561913578 + }, + "validation": { + "mae": 5.818579872138798, + "max_error": 16.301202476024628, + "r2": -706.3587773148363, + "rmse": 7.411693335505686 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -26.770468056201935, + 14.523997902870178 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_a" + ] + }, + { + "complexity": 2.0, + "expression": "0.803504050000000", + "loss": 0.09301303, + "metrics": { + "blind": { + "mae": 0.19123388535484315, + "max_error": 0.49804192803649905, + "r2": -0.11009575616124301, + "rmse": 0.23587944936826424 + }, + "train": { + "mae": 0.2489609880489285, + "max_error": 0.6767832634613037, + "r2": -3.974576223697568e-11, + "rmse": 0.30498042263364794 + }, + "validation": { + "mae": 0.24085260660789679, + "max_error": 0.4790615437194824, + "r2": -0.0002615265870786754, + "rmse": 0.27871115475186525 + } + }, + "score": 6.957784117997256, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.80350405, + 0.80350405 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_F - 1*1.211704", + "loss": 0.03971144, + "metrics": { + "blind": { + "mae": 0.1645864630948663, + "max_error": 0.40763021157300483, + "r2": 0.1814204161617674, + "rmse": 0.2025537735647013 + }, + "train": { + "mae": 0.15995700092878734, + "max_error": 0.45243739253664006, + "r2": 0.5730551063064874, + "rmse": 0.1992773199322333 + }, + "validation": { + "mae": 0.18477493893401745, + "max_error": 0.4597197853884698, + "r2": 0.37310427608444874, + "rmse": 0.22064557493903258 + } + }, + "score": 0.42555014173712447, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.556543107975185, + 1.210020144369364 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-0.942242000000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_c", + "loss": 7995.286, + "metrics": { + "blind": { + "mae": 95.22794934660196, + "max_error": 102.51884329319, + "r2": -415091.6752316687, + "rmse": 95.37964563924966 + }, + "train": { + "mae": 88.75841325167882, + "max_error": 107.91507428884506, + "r2": -156268.3746661708, + "rmse": 89.41636443617715 + }, + "validation": { + "mae": 93.7591081078236, + "max_error": 100.98786520957947, + "r2": -425462.5258011721, + "rmse": 93.92810603284819 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 60.57933568954468, + 107.03669786453247 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_c" + ] + }, + { + "complexity": 2.0, + "expression": "-0.942242000000000", + "loss": 0.051163483, + "metrics": { + "blind": { + "mae": 0.12274282952222823, + "max_error": 0.3566547368927002, + "r2": -0.003755872712635, + "rmse": 0.1483191470506135 + }, + "train": { + "mae": 0.16644193711927383, + "max_error": 0.7180785869522095, + "r2": -5.6271431958521134e-11, + "rmse": 0.22619347405530485 + }, + "validation": { + "mae": 0.1185921961565262, + "max_error": 0.32858392943573, + "r2": -0.007766176159332394, + "rmse": 0.14455871760798328 + } + }, + "score": 11.959336621043166, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.942242, + -0.942242 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s*(-0.5323005)", + "loss": 0.038047586, + "metrics": { + "blind": { + "mae": 0.10195184570049931, + "max_error": 0.2655597855617524, + "r2": 0.3085241674850272, + "rmse": 0.12310386052949307 + }, + "train": { + "mae": 0.14244434945160778, + "max_error": 0.5371455952684338, + "r2": 0.25635276107361316, + "rmse": 0.1950579051555742 + }, + "validation": { + "mae": 0.09145833556549601, + "max_error": 0.26805706281568553, + "r2": 0.38446603319134276, + "rmse": 0.11297709661418942 + } + }, + "score": 0.14809420773409543, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.0894910909427562, + -0.701752940780876 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [] + }, + { + "expression": "(-Cd_rear_a + Cl_rear_s)*0.5328156", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.19952740724620205, + "max_error": 0.45330504223115275, + "r2": 0.6935664040425086, + "rmse": 0.2260208471823694 + }, + "train": { + "mae": 0.17494185461311526, + "max_error": 0.4235542354709003, + "r2": 0.7585497986231277, + "rmse": 0.20188269028846392 + }, + "validation": { + "mae": 0.1943183443829695, + "max_error": 0.3833102211668622, + "r2": 0.7097245249291118, + "rmse": 0.21562282665233704 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 0.17075412, + "metrics": { + "blind": { + "mae": 0.27673085175920276, + "max_error": 0.601998895406723, + "r2": 0.3108234960479447, + "rmse": 0.3389577287731067 + }, + "train": { + "mae": 0.3492160899785616, + "max_error": 0.9297878360375762, + "r2": -0.011580860521255065, + "rmse": 0.4132240590406017 + }, + "validation": { + "mae": 0.2720837906982081, + "max_error": 0.6755692316219211, + "r2": 0.3105860059099895, + "rmse": 0.3322994405475299 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.8168652420863509, + 1.2932776589877903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "Cl_rear_s**2", + "loss": 0.15119372, + "metrics": { + "blind": { + "mae": 0.33653790619615653, + "max_error": 0.7025349537376737, + "r2": 0.07006576935977515, + "rmse": 0.3937371802529342 + }, + "train": { + "mae": 0.34183147687927906, + "max_error": 0.7846544125974435, + "r2": 0.10429871752711806, + "rmse": 0.38883638383468355 + }, + "validation": { + "mae": 0.3299288490024817, + "max_error": 0.7039151528196921, + "r2": 0.0795009693563764, + "rmse": 0.38397348056414565 + } + }, + "score": 0.12166269851182035, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0006533981645992941, + 1.6725671032369394 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 3.0, + "expression": "-Cd_rear_a + Cl_rear_s", + "loss": 0.10596913, + "metrics": { + "blind": { + "mae": 0.27211319109774196, + "max_error": 0.7053476527798921, + "r2": 0.30957389814757186, + "rmse": 0.33926488451629405 + }, + "train": { + "mae": 0.2707407824020296, + "max_error": 0.7377704896498471, + "r2": 0.37221813878340015, + "rmse": 0.32552899631833204 + }, + "validation": { + "mae": 0.2834278109471481, + "max_error": 0.6335099679417908, + "r2": 0.3280210457559877, + "rmse": 0.3280706647022518 + } + }, + "score": 0.3554141032089962, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.20051910541951656, + 0.7509681163355708 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s*0.5878966", + "loss": 0.08905516, + "metrics": { + "blind": { + "mae": 0.21833531447232643, + "max_error": 0.36624967167524153, + "r2": 0.6465821381627274, + "rmse": 0.24273061551613365 + }, + "train": { + "mae": 0.2591805163568109, + "max_error": 0.5931548924319678, + "r2": 0.47241974896866756, + "rmse": 0.29842112456497616 + }, + "validation": { + "mae": 0.23069888541089897, + "max_error": 0.4492322165397694, + "r2": 0.5553975297896814, + "rmse": 0.26685509457948287 + } + }, + "score": 0.17389187225066657, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.4802322984807426, + 0.7603135385748814 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cd_rear_a + Cl_rear_s)*0.5328156", + "loss": 0.040756624, + "metrics": { + "blind": { + "mae": 0.19952740724620205, + "max_error": 0.45330504223115275, + "r2": 0.6935664040425086, + "rmse": 0.2260208471823694 + }, + "train": { + "mae": 0.17494185461311526, + "max_error": 0.4235542354709003, + "r2": 0.7585497986231277, + "rmse": 0.20188269028846392 + }, + "validation": { + "mae": 0.1943183443829695, + "max_error": 0.3833102211668622, + "r2": 0.7097245249291118, + "rmse": 0.21562282665233704 + } + }, + "score": 0.39081878720385826, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.10683970746556293, + 0.40012752748620695 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-illusion_1L-actual_plus_error-s0-20260718", + "used_features": [ + "Cd_rear_a", + "Cl_rear_s" + ] + } + ], + "n_head_fits": 45 + } + }, + "karman": { + "karman_re100": { + "feature_frequency": { + "Cd_B": 2, + "Cd_F": 1, + "Cd_T": 1, + "Cd_rear_a": 2, + "Cl_B": 1, + "Cl_F": 4, + "Cl_T": 3, + "Cl_rear_a": 4, + "Cl_rear_s": 6 + }, + "fits": [ + { + "expression": "-Cl_rear_s - 0.13295394", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.6697613450035291, + "max_error": 1.6455433796685315, + "r2": 0.6213154019939058, + "rmse": 0.8330834928054753 + }, + "train": { + "mae": 0.6632170817139045, + "max_error": 1.7119185402583457, + "r2": 0.6341472145778903, + "rmse": 0.8278548878008 + }, + "validation": { + "mae": 0.7505533131339729, + "max_error": 1.7043563462387896, + "r2": 0.5320395506982926, + "rmse": 0.922626159870372 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "1.04679865000000e-8", + "loss": 1.9806321, + "metrics": { + "blind": { + "mae": 1.195263706298541, + "max_error": 2.6562624082340998, + "r2": -0.05864227463438443, + "rmse": 1.3929140680392205 + }, + "train": { + "mae": 1.2206303374595486, + "max_error": 2.6851811513676447, + "r2": -0.05730848511534603, + "rmse": 1.407349272967417 + }, + "validation": { + "mae": 1.250443079119104, + "max_error": 2.679242621399383, + "r2": -0.12445398415534137, + "rmse": 1.4301843896868622 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.04679865e-08, + 1.04679865e-08 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_rear_s", + "loss": 1.0143605, + "metrics": { + "blind": { + "mae": 0.6466839023132707, + "max_error": 1.580681887397077, + "r2": 0.6399040951400572, + "rmse": 0.8123792080143714 + }, + "train": { + "mae": 0.788108906623936, + "max_error": 3.2347959647886455, + "r2": 0.45851021335430886, + "rmse": 1.0071546660445698 + }, + "validation": { + "mae": 0.707549379468382, + "max_error": 1.5773957969504409, + "r2": 0.5734556666119529, + "rmse": 0.8808526759914559 + } + }, + "score": 0.669157671515443, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.51456193998456, + -0.266213552094996 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "-Cl_rear_s - 0.13295394", + "loss": 0.6853437, + "metrics": { + "blind": { + "mae": 0.6697613450035291, + "max_error": 1.6455433796685315, + "r2": 0.6213154019939058, + "rmse": 0.8330834928054753 + }, + "train": { + "mae": 0.6632170817139045, + "max_error": 1.7119185402583457, + "r2": 0.6341472145778903, + "rmse": 0.8278548878008 + }, + "validation": { + "mae": 0.7505533131339729, + "max_error": 1.7043563462387896, + "r2": 0.5320395506982926, + "rmse": 0.922626159870372 + } + }, + "score": 0.3920931793986741, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4767620079625274, + 1.803001197014389 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_tot - Cl_rear_s - Cl_tot", + "loss": 0.66452235, + "metrics": { + "blind": { + "mae": 0.5260507892769966, + "max_error": 1.4311184668331407, + "r2": 0.7757831121812975, + "rmse": 0.641038138255975 + }, + "train": { + "mae": 0.6544337436494909, + "max_error": 2.4367560686077923, + "r2": 0.6452621196422264, + "rmse": 0.8151824433785311 + }, + "validation": { + "mae": 0.5826364151643924, + "max_error": 1.4712483021430671, + "r2": 0.718112555692682, + "rmse": 0.7160758970991353 + } + }, + "score": 0.030851952352494553, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.9421760700643063, + 1.8042904557660222 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_rear_s - Cl_tot - 0.2820885", + "loss": 0.6468627, + "metrics": { + "blind": { + "mae": 0.5890430072873242, + "max_error": 1.3862902861838937, + "r2": 0.7017489978642873, + "rmse": 0.7393339752101757 + }, + "train": { + "mae": 0.6525609482242819, + "max_error": 2.228889913781941, + "r2": 0.6546893126657019, + "rmse": 0.8042777314905551 + }, + "validation": { + "mae": 0.6342493951284462, + "max_error": 1.5266530006011725, + "r2": 0.6615124915468521, + "rmse": 0.7846798722754661 + } + }, + "score": 0.026934450118989203, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.053510698042274, + 3.7243706448754073 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "-Cd_tot + Cd_tot - Cl_rear_s - Cl_tot", + "loss": 0.6348374, + "metrics": { + "blind": { + "mae": 0.5424754095192839, + "max_error": 1.6683787861838937, + "r2": 0.7321498749630706, + "rmse": 0.7006411409451148 + }, + "train": { + "mae": 0.6310737695055619, + "max_error": 2.0221562003716826, + "r2": 0.6611087250084603, + "rmse": 0.7967667977520138 + }, + "validation": { + "mae": 0.6307425086986489, + "max_error": 1.8087415006011724, + "r2": 0.6472834019177829, + "rmse": 0.8010029918247763 + } + }, + "score": 0.018765158669362493, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7714221980422735, + 4.006459144875407 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "Cl_rear_a + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "4.24590000000000", + "loss": 3.4152784, + "metrics": { + "blind": { + "mae": 1.5591707447624203, + "max_error": 3.2044793716430666, + "r2": -0.024063454982418797, + "rmse": 1.779317340144052 + }, + "train": { + "mae": 1.5778973506394076, + "max_error": 3.4492556205749514, + "r2": -1.6516543688283036e-10, + "rmse": 1.8480473464291007 + }, + "validation": { + "mae": 1.4972367305266552, + "max_error": 3.179498349761963, + "r2": -0.011121157246504865, + "rmse": 1.742030466227956 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.2459, + 4.2459 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 0.8682069, + "metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "score": 1.3695842410646415, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.0621860274113715, + 7.952745538204908 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_F + Cl_rear_a - Cl_rear_s", + "loss": 0.6494191, + "metrics": { + "blind": { + "mae": 0.5709213404554248, + "max_error": 1.540099618199747, + "r2": 0.8222535217478513, + "rmse": 0.7412939905654585 + }, + "train": { + "mae": 0.6219925793692849, + "max_error": 2.375986222177744, + "r2": 0.809848872451901, + "rmse": 0.805865467442032 + }, + "validation": { + "mae": 0.6183931644429835, + "max_error": 1.5591232478618622, + "r2": 0.7932462742175872, + "rmse": 0.7877362283947309 + } + }, + "score": 0.1451758896552589, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.3873412497341633, + 8.939390594605356 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_tot + Cl_rear_a - (Cl_F + Cl_rear_s)", + "loss": 0.64191943, + "metrics": { + "blind": { + "mae": 0.5518796480271704, + "max_error": 1.561237882822752, + "r2": 0.8349846793983626, + "rmse": 0.7142530619845925 + }, + "train": { + "mae": 0.6591107667843323, + "max_error": 2.031525501748547, + "r2": 0.8120447845760563, + "rmse": 0.8011987887316682 + }, + "validation": { + "mae": 0.5996228409960914, + "max_error": 1.6077650617808104, + "r2": 0.811394223080119, + "rmse": 0.7523702986654471 + } + }, + "score": 0.005807736814464496, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.441904878243804, + 6.737221905495971 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_F", + "Cl_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "(-Cl_F - 5.1348825)*0.8251871", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.4209465079293853, + "max_error": 0.9663578109525, + "r2": 0.9489867863310391, + "rmse": 0.48803033244288385 + }, + "train": { + "mae": 0.46077672733050806, + "max_error": 1.4287705722232023, + "r2": 0.9304248046718734, + "rmse": 0.5405302662383796 + }, + "validation": { + "mae": 0.43709675526855857, + "max_error": 0.9430907944547566, + "r2": 0.9411496285791633, + "rmse": 0.4984613729515203 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_s", + "loss": 11699.062, + "metrics": { + "blind": { + "mae": 109.07122538387776, + "max_error": 111.93370831012726, + "r2": -2548.266710942976, + "rmse": 109.09707606213765 + }, + "train": { + "mae": 108.13502531839629, + "max_error": 112.22170972824097, + "r2": -2784.8991945393745, + "rmse": 108.16219658418252 + }, + "validation": { + "mae": 108.88030309860522, + "max_error": 112.06716847419739, + "r2": -2808.183724079844, + "rmse": 108.90478878142012 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 101.3777107000351, + 106.10468089580536 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_s" + ] + }, + { + "complexity": 2.0, + "expression": "-4.07322900000000", + "loss": 4.1993833, + "metrics": { + "blind": { + "mae": 1.9941100746393203, + "max_error": 3.1925504952392574, + "r2": -0.03697604119425435, + "rmse": 2.200340207605013 + }, + "train": { + "mae": 1.8435941525463166, + "max_error": 3.183053806396484, + "r2": -2.4624746686185972e-12, + "rmse": 2.0492398824348905 + }, + "validation": { + "mae": 1.8414382418782158, + "max_error": 3.18965990838623, + "r2": -0.01114205274671165, + "rmse": 2.066155443056149 + } + }, + "score": 7.932326265456895, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.073229, + -4.073229 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_rear_a + Cl_rear_s", + "loss": 1.0080215, + "metrics": { + "blind": { + "mae": 0.76278423180338, + "max_error": 1.716776017099619, + "r2": 0.7969305402212199, + "rmse": 0.9737058526186907 + }, + "train": { + "mae": 0.7838172165803232, + "max_error": 2.2251753471791744, + "r2": 0.759959665401756, + "rmse": 1.0040027706389638 + }, + "validation": { + "mae": 0.6673623029238138, + "max_error": 1.7662314400076866, + "r2": 0.8107381250353262, + "rmse": 0.8938990472588834 + } + }, + "score": 1.4269481823881316, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.9340963014401495, + -3.265129402279854 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_rear_a + Cl_rear_s - Cl_tot", + "loss": 0.6922998, + "metrics": { + "blind": { + "mae": 0.5345555526624594, + "max_error": 1.47508526686579, + "r2": 0.902285940262134, + "rmse": 0.675435685855989 + }, + "train": { + "mae": 0.6496265290731217, + "max_error": 2.5360406197141856, + "r2": 0.835142519407039, + "rmse": 0.8320456009544964 + }, + "validation": { + "mae": 0.5137720672124161, + "max_error": 1.403320170007646, + "r2": 0.8963246514975095, + "rmse": 0.661598721420705 + } + }, + "score": 0.18786283948854315, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.6927435323596, + -2.8635922935791314 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "(-Cl_F - 5.1348825)*0.8251871", + "loss": 0.292173, + "metrics": { + "blind": { + "mae": 0.4209465079293853, + "max_error": 0.9663578109525, + "r2": 0.9489867863310391, + "rmse": 0.48803033244288385 + }, + "train": { + "mae": 0.46077672733050806, + "max_error": 1.4287705722232023, + "r2": 0.9304248046718734, + "rmse": 0.5405302662383796 + }, + "validation": { + "mae": 0.43709675526855857, + "max_error": 0.9430907944547566, + "r2": 0.9411496285791633, + "rmse": 0.4984613729515203 + } + }, + "score": 0.43133650310433824, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.251210464186306, + -0.9321216165922035 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "0.27914348*Cd_B", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4718407384258326, + "max_error": 0.939236371983774, + "r2": 0.8409665724627509, + "rmse": 0.5398758712160157 + }, + "train": { + "mae": 0.4569642480270114, + "max_error": 1.0909820727363135, + "r2": 0.8518243306331426, + "rmse": 0.5268530314007679 + }, + "validation": { + "mae": 0.4661343122919942, + "max_error": 0.9410157898409758, + "r2": 0.8487457503695586, + "rmse": 0.5245356162615408 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 10.450283, + "metrics": { + "blind": { + "mae": 2.2718711820314637, + "max_error": 7.7805018946528435, + "r2": -4.849034006756704, + "rmse": 3.274098806724633 + }, + "train": { + "mae": 2.2820890134628873, + "max_error": 7.869233101606369, + "r2": -4.578610097828176, + "rmse": 3.232689842662442 + }, + "validation": { + "mae": 2.471632557682311, + "max_error": 7.667709652334452, + "r2": -5.567604099636679, + "rmse": 3.4564053788184586 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2623434886336327, + 5.74492197483778 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.327564150000000", + "loss": 1.873277, + "metrics": { + "blind": { + "mae": 1.180013022944331, + "max_error": 2.328698247766113, + "r2": -3.997858843973745e-08, + "rmse": 1.3537850599767338 + }, + "train": { + "mae": 1.207290967800102, + "max_error": 2.4136008321289064, + "r2": -3.956034611007908e-09, + "rmse": 1.3686772080041438 + }, + "validation": { + "mae": 1.2000615742035108, + "max_error": 2.3516784609313963, + "r2": -0.012080125997384172, + "rmse": 1.3568399995145848 + } + }, + "score": 1.718939755772874, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.32756415, + -0.32756415 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.27914348*Cd_B", + "loss": 0.27757406, + "metrics": { + "blind": { + "mae": 0.4718407384258326, + "max_error": 0.939236371983774, + "r2": 0.8409665724627509, + "rmse": 0.5398758712160157 + }, + "train": { + "mae": 0.4569642480270114, + "max_error": 1.0909820727363135, + "r2": 0.8518243306331426, + "rmse": 0.5268530314007679 + }, + "validation": { + "mae": 0.4661343122919942, + "max_error": 0.9410157898409758, + "r2": 0.8487457503695586, + "rmse": 0.5245356162615408 + } + }, + "score": 0.9546784010653162, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5808985073971002, + 1.5276489262063242 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s0-20260718", + "used_features": [ + "Cd_B" + ] + }, + { + "expression": "Cl_T - 0.22311148", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.7640748257318364, + "max_error": 1.7166635761880684, + "r2": 0.7254150866451317, + "rmse": 0.9213577920232415 + }, + "train": { + "mae": 0.7307666803538662, + "max_error": 1.7880384991788674, + "r2": 0.7628998810087523, + "rmse": 0.8998683547522778 + }, + "validation": { + "mae": 0.7510740946988338, + "max_error": 1.7422816823148537, + "r2": 0.7184160480017295, + "rmse": 0.919301771670748 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "4.24591800000000", + "loss": 3.415279, + "metrics": { + "blind": { + "mae": 1.5591779447624206, + "max_error": 3.2044613716430668, + "r2": -0.02406663116781904, + "rmse": 1.7793200994639695 + }, + "train": { + "mae": 1.5779010116563572, + "max_error": 3.4492376205749515, + "r2": -9.682032953151065e-12, + "rmse": 1.8480473462854305 + }, + "validation": { + "mae": 1.4972436536035783, + "max_error": 3.1794803497619633, + "r2": -0.011123348762971164, + "rmse": 1.7420323540760914 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.245918, + 4.245918 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 0.22311148", + "loss": 0.80976313, + "metrics": { + "blind": { + "mae": 0.7640748257318364, + "max_error": 1.7166635761880684, + "r2": 0.7254150866451317, + "rmse": 0.9213577920232415 + }, + "train": { + "mae": 0.7307666803538662, + "max_error": 1.7880384991788674, + "r2": 0.7628998810087523, + "rmse": 0.8998683547522778 + }, + "validation": { + "mae": 0.7510740946988338, + "max_error": 1.7422816823148537, + "r2": 0.7184160480017295, + "rmse": 0.919301771670748 + } + }, + "score": 0.719636347128051, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.1273025279021454, + 6.707724996385593 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_B - Cl_F + 0.099073574", + "loss": 0.6961987, + "metrics": { + "blind": { + "mae": 0.5813199658183126, + "max_error": 1.6391731921997472, + "r2": 0.8085344915231101, + "rmse": 0.7693700070019489 + }, + "train": { + "mae": 0.6285041862396099, + "max_error": 2.475059796177744, + "r2": 0.7961517327593929, + "rmse": 0.8343852258317862 + }, + "validation": { + "mae": 0.6315454721340055, + "max_error": 1.6581968218618623, + "r2": 0.7755971103008207, + "rmse": 0.8206696444485316 + } + }, + "score": 0.0755533323525187, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5636734766355165, + 10.360266957485079 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B", + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s0-20260718", + "used_features": [ + "Cl_T" + ] + }, + { + "expression": "-0.054456804*Cl_F**4", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 3.5720563084185786, + "max_error": 10.770288679246269, + "r2": -3.1653875326166183, + "rmse": 4.40994507126978 + }, + "train": { + "mae": 3.6381510618340256, + "max_error": 12.7341942834099, + "r2": -3.874343497164179, + "rmse": 4.52429448192982 + }, + "validation": { + "mae": 3.830150570915375, + "max_error": 10.213286564027664, + "r2": -4.013907291058014, + "rmse": 4.6009239527827095 + } + }, + "pareto": [ + { + "complexity": 4.0, + "expression": "Cl_F**8", + "loss": 270688740.0, + "metrics": { + "blind": { + "mae": 8938.798444171398, + "max_error": 48446.02375995016, + "r2": -53409001.53475149, + "rmse": 15791.111761342445 + }, + "train": { + "mae": 8990.611037611678, + "max_error": 66234.43747103309, + "r2": -64459154.11376121, + "rmse": 16452.62139630955 + }, + "validation": { + "mae": 7987.729634847723, + "max_error": 43957.55947245608, + "r2": -55462620.86932421, + "rmse": 15302.313786909626 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 9.380402103234645e-07, + 66233.15676939582 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "-0.054456804*Cl_F**4", + "loss": 20.46924, + "metrics": { + "blind": { + "mae": 3.5720563084185786, + "max_error": 10.770288679246269, + "r2": -3.1653875326166183, + "rmse": 4.40994507126978 + }, + "train": { + "mae": 3.6381510618340256, + "max_error": 12.7341942834099, + "r2": -3.874343497164179, + "rmse": 4.52429448192982 + }, + "validation": { + "mae": 3.830150570915375, + "max_error": 10.213286564027664, + "r2": -4.013907291058014, + "rmse": 4.6009239527827095 + } + }, + "score": 8.198778443188264, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -14.014895920677967, + -5.274276301295203e-05 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s0-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "-Cl_rear_s - 0.17571262", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.6612096090035291, + "max_error": 1.6027846996685313, + "r2": 0.628365519198979, + "rmse": 0.8252921404424423 + }, + "train": { + "mae": 0.663051355588307, + "max_error": 1.6691598602583455, + "r2": 0.6351231593994338, + "rmse": 0.8267499621910729 + }, + "validation": { + "mae": 0.7428786782621781, + "max_error": 1.6615976662387895, + "r2": 0.5424746471203461, + "rmse": 0.912281298389541 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.327654060000000", + "loss": 1.8732772, + "metrics": { + "blind": { + "mae": 1.180013022944331, + "max_error": 2.3286083377661133, + "r2": -1.783097425267499e-08, + "rmse": 1.3537850449851796 + }, + "train": { + "mae": 1.2072909678001027, + "max_error": 2.413690742128906, + "r2": -7.807310353769026e-12, + "rmse": 1.3686772053022196 + }, + "validation": { + "mae": 1.2000546580496645, + "max_error": 2.3515885509313965, + "r2": -0.012065476564588451, + "rmse": 1.3568301796358 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.32765406, + -0.32765406 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_rear_s", + "loss": 1.0143605, + "metrics": { + "blind": { + "mae": 0.6466839023132707, + "max_error": 1.580681887397077, + "r2": 0.6399040951400572, + "rmse": 0.8123792080143714 + }, + "train": { + "mae": 0.788108906623936, + "max_error": 3.2347959647886455, + "r2": 0.45851021335430886, + "rmse": 1.0071546660445698 + }, + "validation": { + "mae": 0.707549379468382, + "max_error": 1.5773957969504409, + "r2": 0.5734556666119529, + "rmse": 0.8808526759914559 + } + }, + "score": 0.6134310457075133, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.51456193998456, + -0.266213552094996 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "-Cl_rear_s - 0.17571262", + "loss": 0.68351537, + "metrics": { + "blind": { + "mae": 0.6612096090035291, + "max_error": 1.6027846996685313, + "r2": 0.628365519198979, + "rmse": 0.8252921404424423 + }, + "train": { + "mae": 0.663051355588307, + "max_error": 1.6691598602583455, + "r2": 0.6351231593994338, + "rmse": 0.8267499621910729 + }, + "validation": { + "mae": 0.7428786782621781, + "max_error": 1.6615976662387895, + "r2": 0.5424746471203461, + "rmse": 0.912281298389541 + } + }, + "score": 0.39476450054094503, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5195206879625274, + 1.760242517014389 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_tot - Cl_rear_s - Cl_tot", + "loss": 0.66452235, + "metrics": { + "blind": { + "mae": 0.5260507892769966, + "max_error": 1.4311184668331407, + "r2": 0.7757831121812975, + "rmse": 0.641038138255975 + }, + "train": { + "mae": 0.6544337436494909, + "max_error": 2.4367560686077923, + "r2": 0.6452621196422264, + "rmse": 0.8151824433785311 + }, + "validation": { + "mae": 0.5826364151643924, + "max_error": 1.4712483021430671, + "r2": 0.718112555692682, + "rmse": 0.7160758970991353 + } + }, + "score": 0.02818063121022353, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.9421760700643063, + 1.8042904557660222 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_rear_s - Cl_tot - 0.015358614", + "loss": 0.6313955, + "metrics": { + "blind": { + "mae": 0.5409395481192838, + "max_error": 1.6530201721838937, + "r2": 0.7327299069299735, + "rmse": 0.6998821073060408 + }, + "train": { + "mae": 0.6305531385225114, + "max_error": 2.0067975863716825, + "r2": 0.6629460764486488, + "rmse": 0.7946039650474442 + }, + "validation": { + "mae": 0.6279858343909565, + "max_error": 1.7933828866011723, + "r2": 0.6503101872162111, + "rmse": 0.7975587424964259 + } + }, + "score": 0.05113606282001992, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7867808120422737, + 3.991100530875407 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "Cl_rear_a - (Cl_F + Cl_rear_s)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.5709213404554248, + "max_error": 1.540099618199747, + "r2": 0.8222535217478513, + "rmse": 0.7412939905654585 + }, + "train": { + "mae": 0.6219925793692849, + "max_error": 2.375986222177744, + "r2": 0.809848872451901, + "rmse": 0.805865467442032 + }, + "validation": { + "mae": 0.6183931644429835, + "max_error": 1.5591232478618622, + "r2": 0.7932462742175872, + "rmse": 0.7877362283947309 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 3.1510062, + "metrics": { + "blind": { + "mae": 1.7217753697768785, + "max_error": 2.640393459238112, + "r2": -0.10957029550658381, + "rmse": 1.8521126071029597 + }, + "train": { + "mae": 1.646218115649328, + "max_error": 2.652620416134596, + "r2": 0.07737961564528417, + "rmse": 1.775107325824629 + }, + "validation": { + "mae": 1.6529426879655473, + "max_error": 2.6520344810560346, + "r2": -0.09124931425513227, + "rmse": 1.8097398061712509 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9981411644257605, + 5.608937470242381 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 0.8682069, + "metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "score": 0.6445235295366055, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.0621860274113715, + 7.952745538204908 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_a - (Cl_F + Cl_rear_s)", + "loss": 0.6494191, + "metrics": { + "blind": { + "mae": 0.5709213404554248, + "max_error": 1.540099618199747, + "r2": 0.8222535217478513, + "rmse": 0.7412939905654585 + }, + "train": { + "mae": 0.6219925793692849, + "max_error": 2.375986222177744, + "r2": 0.809848872451901, + "rmse": 0.805865467442032 + }, + "validation": { + "mae": 0.6183931644429835, + "max_error": 1.5591232478618622, + "r2": 0.7932462742175872, + "rmse": 0.7877362283947309 + } + }, + "score": 0.1451758896552589, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.3873412497341633, + 8.939390594605356 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "-0.66069602279041*Cl_F + Cl_rear_a", + "loss": 0.50063825, + "metrics": { + "blind": { + "mae": 0.5635636043260199, + "max_error": 1.1868972356298713, + "r2": 0.8524215254689624, + "rmse": 0.6754628771234146 + }, + "train": { + "mae": 0.5944526864733084, + "max_error": 1.5062844092531282, + "r2": 0.8534122089374888, + "rmse": 0.7075579153711145 + }, + "validation": { + "mae": 0.5873891690392568, + "max_error": 1.1871235476925017, + "r2": 0.8331582093637186, + "rmse": 0.7076305404856617 + } + }, + "score": 0.13009724330609923, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.1957646370980246, + 5.644423174025139 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_rear_a + Cl_rear_s", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.76278423180338, + "max_error": 1.716776017099619, + "r2": 0.7969305402212199, + "rmse": 0.9737058526186907 + }, + "train": { + "mae": 0.7838172165803232, + "max_error": 2.2251753471791744, + "r2": 0.759959665401756, + "rmse": 1.0040027706389638 + }, + "validation": { + "mae": 0.6673623029238138, + "max_error": 1.7662314400076866, + "r2": 0.8107381250353262, + "rmse": 0.8938990472588834 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 34.481194, + "metrics": { + "blind": { + "mae": 5.651785489381291, + "max_error": 8.157763626426458, + "r2": -6.766107459522475, + "rmse": 6.021534396086218 + }, + "train": { + "mae": 5.444793993686706, + "max_error": 8.996288612484932, + "r2": -7.211012900688207, + "rmse": 5.872069225167548 + }, + "validation": { + "mae": 5.71126135583155, + "max_error": 8.12537245824933, + "r2": -7.810689725436289, + "rmse": 6.099045300137728 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2623434886336327, + 5.74492197483778 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-4.07322900000000", + "loss": 4.1993833, + "metrics": { + "blind": { + "mae": 1.9941100746393203, + "max_error": 3.1925504952392574, + "r2": -0.03697604119425435, + "rmse": 2.200340207605013 + }, + "train": { + "mae": 1.8435941525463166, + "max_error": 3.183053806396484, + "r2": -2.4624746686185972e-12, + "rmse": 2.0492398824348905 + }, + "validation": { + "mae": 1.8414382418782158, + "max_error": 3.18965990838623, + "r2": -0.01114205274671165, + "rmse": 2.066155443056149 + } + }, + "score": 2.105476392791312, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.073229, + -4.073229 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_rear_a + Cl_rear_s", + "loss": 1.0080215, + "metrics": { + "blind": { + "mae": 0.76278423180338, + "max_error": 1.716776017099619, + "r2": 0.7969305402212199, + "rmse": 0.9737058526186907 + }, + "train": { + "mae": 0.7838172165803232, + "max_error": 2.2251753471791744, + "r2": 0.759959665401756, + "rmse": 1.0040027706389638 + }, + "validation": { + "mae": 0.6673623029238138, + "max_error": 1.7662314400076866, + "r2": 0.8107381250353262, + "rmse": 0.8938990472588834 + } + }, + "score": 1.4269481823881316, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.9340963014401495, + -3.265129402279854 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "-Cl_rear_a + Cl_rear_s - Cl_tot", + "loss": 0.6922998, + "metrics": { + "blind": { + "mae": 0.5345555526624594, + "max_error": 1.47508526686579, + "r2": 0.902285940262134, + "rmse": 0.675435685855989 + }, + "train": { + "mae": 0.6496265290731217, + "max_error": 2.5360406197141856, + "r2": 0.835142519407039, + "rmse": 0.8320456009544964 + }, + "validation": { + "mae": 0.5137720672124161, + "max_error": 1.403320170007646, + "r2": 0.8963246514975095, + "rmse": 0.661598721420705 + } + }, + "score": 0.18786283948854315, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.6927435323596, + -2.8635922935791314 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "Cd_rear_a*(-0.32170123)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4017341972044505, + "max_error": 0.8811577077555598, + "r2": 0.8719768757382294, + "rmse": 0.48438860616566376 + }, + "train": { + "mae": 0.35046297854472647, + "max_error": 0.9943481515232799, + "r2": 0.895292986890374, + "rmse": 0.4428829077789573 + }, + "validation": { + "mae": 0.3922792701701595, + "max_error": 0.8725527036472859, + "r2": 0.8750802526434391, + "rmse": 0.47669076490987355 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.327756900000000", + "loss": 1.8732772, + "metrics": { + "blind": { + "mae": 1.180013022944331, + "max_error": 2.3285054977661135, + "r2": -3.314060581516287e-09, + "rmse": 1.3537850351587895 + }, + "train": { + "mae": 1.2072909678001023, + "max_error": 2.413793582128906, + "r2": -6.07345751468813e-09, + "rmse": 1.368677209453178 + }, + "validation": { + "mae": 1.2000467472804344, + "max_error": 2.3514857109313967, + "r2": -0.012048731287051417, + "rmse": 1.3568189547731617 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.3277569, + -0.3277569 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_rear_s", + "loss": 1.0143605, + "metrics": { + "blind": { + "mae": 0.6466839023132707, + "max_error": 1.580681887397077, + "r2": 0.6399040951400572, + "rmse": 0.8123792080143714 + }, + "train": { + "mae": 0.788108906623936, + "max_error": 3.2347959647886455, + "r2": 0.45851021335430886, + "rmse": 1.0071546660445698 + }, + "validation": { + "mae": 0.707549379468382, + "max_error": 1.5773957969504409, + "r2": 0.5734556666119529, + "rmse": 0.8808526759914559 + } + }, + "score": 0.6134310457075133, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.51456193998456, + -0.266213552094996 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_a*(-0.32170123)", + "loss": 0.19614527, + "metrics": { + "blind": { + "mae": 0.4017341972044505, + "max_error": 0.8811577077555598, + "r2": 0.8719768757382294, + "rmse": 0.48438860616566376 + }, + "train": { + "mae": 0.35046297854472647, + "max_error": 0.9943481515232799, + "r2": 0.895292986890374, + "rmse": 0.4428829077789573 + }, + "validation": { + "mae": 0.3922792701701595, + "max_error": 0.8725527036472859, + "r2": 0.8750802526434391, + "rmse": 0.47669076490987355 + } + }, + "score": 1.6431580854838683, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.1559881771479525, + 2.1512392466023216 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s0-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "Cl_rear_a + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 3.1510062, + "metrics": { + "blind": { + "mae": 1.7217753697768785, + "max_error": 2.640393459238112, + "r2": -0.10957029550658381, + "rmse": 1.8521126071029597 + }, + "train": { + "mae": 1.646218115649328, + "max_error": 2.652620416134596, + "r2": 0.07737961564528417, + "rmse": 1.775107325824629 + }, + "validation": { + "mae": 1.6529426879655473, + "max_error": 2.6520344810560346, + "r2": -0.09124931425513227, + "rmse": 1.8097398061712509 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9981411644257605, + 5.608937470242381 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 0.8682069, + "metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "score": 0.6445235295366055, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.0621860274113715, + 7.952745538204908 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_a - (Cl_F + Cl_rear_s)", + "loss": 0.6494191, + "metrics": { + "blind": { + "mae": 0.5709213404554248, + "max_error": 1.540099618199747, + "r2": 0.8222535217478513, + "rmse": 0.7412939905654585 + }, + "train": { + "mae": 0.6219925793692849, + "max_error": 2.375986222177744, + "r2": 0.809848872451901, + "rmse": 0.805865467442032 + }, + "validation": { + "mae": 0.6183931644429835, + "max_error": 1.5591232478618622, + "r2": 0.7932462742175872, + "rmse": 0.7877362283947309 + } + }, + "score": 0.1451758896552589, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.3873412497341633, + 8.939390594605356 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_rear_a", + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "8.79444826162819e-6*Cd_rear_a**2", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 4.488867427309487, + "max_error": 7.265917377540208, + "r2": -4.31576055302082, + "rmse": 4.981821684698185 + }, + "train": { + "mae": 4.073377425040873, + "max_error": 7.256532547196885, + "r2": -3.951112699892538, + "rmse": 4.5597833203126665 + }, + "validation": { + "mae": 4.290260326076165, + "max_error": 7.263034610087799, + "r2": -4.359608578790053, + "rmse": 4.756893651018947 + } + }, + "pareto": [ + { + "complexity": 4.0, + "expression": "Cd_tot**8", + "loss": 3578.158, + "metrics": { + "blind": { + "mae": 4.4887424366999635, + "max_error": 7.265779495239258, + "r2": -4.315576497603191, + "rmse": 4.981735437471774 + }, + "train": { + "mae": 11.617897483986345, + "max_error": 556.6359458340917, + "r2": -851.0674747623143, + "rmse": 59.81771144087626 + }, + "validation": { + "mae": 4.29014214029745, + "max_error": 7.262888908387982, + "r2": -4.359436145923766, + "rmse": 4.756817129441646 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 6.748651609267024e-10, + 553.1012852563176 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 6.0, + "expression": "8.79444826162819e-6*Cd_rear_a**2", + "loss": 20.791626, + "metrics": { + "blind": { + "mae": 4.488867427309487, + "max_error": 7.265917377540208, + "r2": -4.31576055302082, + "rmse": 4.981821684698185 + }, + "train": { + "mae": 4.073377425040873, + "max_error": 7.256532547196885, + "r2": -3.951112699892538, + "rmse": 4.5597833203126665 + }, + "validation": { + "mae": 4.290260326076165, + "max_error": 7.263034610087799, + "r2": -4.359608578790053, + "rmse": 4.756893651018947 + } + }, + "score": 2.5740265561758813, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.79109519551355e-10, + 0.0003949989174706668 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re100-symmetry-s0-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "-0.28566077*(Cd_F + Cd_T)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4696075065524722, + "max_error": 0.9248360134560528, + "r2": 0.8424886109441527, + "rmse": 0.5372862037833512 + }, + "train": { + "mae": 0.4247293733374534, + "max_error": 0.9472087437196582, + "r2": 0.8710896709278544, + "rmse": 0.491411021644485 + }, + "validation": { + "mae": 0.465673059093117, + "max_error": 0.9178595836869877, + "r2": 0.8500310427161305, + "rmse": 0.5223022246131974 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 10.450283, + "metrics": { + "blind": { + "mae": 2.2718711820314637, + "max_error": 7.7805018946528435, + "r2": -4.849034006756704, + "rmse": 3.274098806724633 + }, + "train": { + "mae": 2.2820890134628873, + "max_error": 7.869233101606369, + "r2": -4.578610097828176, + "rmse": 3.232689842662442 + }, + "validation": { + "mae": 2.471632557682311, + "max_error": 7.667709652334452, + "r2": -5.567604099636679, + "rmse": 3.4564053788184586 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.2623434886336327, + 5.74492197483778 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "-0.327619050000000", + "loss": 1.8732771, + "metrics": { + "blind": { + "mae": 1.180013022944331, + "max_error": 2.3286433477661133, + "r2": -2.540628685210322e-08, + "rmse": 1.353785050112852 + }, + "train": { + "mae": 1.2072909678001016, + "max_error": 2.4136557321289063, + "r2": -5.191695962025733e-10, + "rmse": 1.3686772056521646 + }, + "validation": { + "mae": 1.200057351126587, + "max_error": 2.3516235609313965, + "r2": -0.012071179841651736, + "rmse": 1.3568340026925683 + } + }, + "score": 1.7189397023904875, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.32761905, + -0.32761905 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_B*0.34788042", + "loss": 0.3870552, + "metrics": { + "blind": { + "mae": 0.5374560960101189, + "max_error": 1.0954088490656577, + "r2": 0.7711217828870066, + "rmse": 0.6476672532920973 + }, + "train": { + "mae": 0.5193735086253186, + "max_error": 1.2765877668686958, + "r2": 0.7933807578744746, + "rmse": 0.622137552656831 + }, + "validation": { + "mae": 0.5142089684993675, + "max_error": 1.1172172754802507, + "r2": 0.7891216943970054, + "rmse": 0.6193514252960541 + } + }, + "score": 0.7884386587291458, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.2164249608505147, + 1.9038207521852386 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + }, + { + "complexity": 6.0, + "expression": "-0.28566077*(Cd_F + Cd_T)", + "loss": 0.24148482, + "metrics": { + "blind": { + "mae": 0.4696075065524722, + "max_error": 0.9248360134560528, + "r2": 0.8424886109441527, + "rmse": 0.5372862037833512 + }, + "train": { + "mae": 0.4247293733374534, + "max_error": 0.9472087437196582, + "r2": 0.8710896709278544, + "rmse": 0.491411021644485 + }, + "validation": { + "mae": 0.465673059093117, + "max_error": 0.9178595836869877, + "r2": 0.8500310427161305, + "rmse": 0.5223022246131974 + } + }, + "score": 0.23588035227151044, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.205210475208988, + 2.8245415548642727 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_T" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s1-20260718", + "used_features": [ + "Cd_F", + "Cd_T" + ] + }, + { + "expression": "0.186381502186178*Cl_T**2", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.6398135103847394, + "max_error": 1.2431144960059681, + "r2": 0.8318840362097184, + "rmse": 0.720932251475495 + }, + "train": { + "mae": 0.705312308447216, + "max_error": 1.6866544795110634, + "r2": 0.81273177396943, + "rmse": 0.799733229658958 + }, + "validation": { + "mae": 0.6339297915538933, + "max_error": 1.3065207727481498, + "r2": 0.8279890495552521, + "rmse": 0.7185089709719097 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_T", + "loss": 0.8682069, + "metrics": { + "blind": { + "mae": 0.868871595012024, + "max_error": 1.6891211345791817, + "r2": 0.6797913142559153, + "rmse": 0.9949620844274529 + }, + "train": { + "mae": 0.7936711047176208, + "max_error": 1.7444764822721481, + "r2": 0.7457874132025045, + "rmse": 0.931776211179547 + }, + "validation": { + "mae": 0.8574613564862654, + "max_error": 1.662232369184494, + "r2": 0.674465409292653, + "rmse": 0.9884454770024312 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3504140079021454, + 6.930836476385593 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 0.24253239", + "loss": 0.8093858, + "metrics": { + "blind": { + "mae": 0.7563064617318365, + "max_error": 1.7360844861880684, + "r2": 0.7278628836070193, + "rmse": 0.9172418602041262 + }, + "train": { + "mae": 0.7269080240769648, + "max_error": 1.8074594091788674, + "r2": 0.7630102937209258, + "rmse": 0.8996588051411522 + }, + "validation": { + "mae": 0.7436045139296029, + "max_error": 1.7617025923148537, + "r2": 0.7206723745466141, + "rmse": 0.9156111903574762 + } + }, + "score": 0.02338478729441036, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.1078816179021453, + 6.688304086385593 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 5.0, + "expression": "0.186381502186178*Cl_T**2", + "loss": 0.6395732, + "metrics": { + "blind": { + "mae": 0.6398135103847394, + "max_error": 1.2431144960059681, + "r2": 0.8318840362097184, + "rmse": 0.720932251475495 + }, + "train": { + "mae": 0.705312308447216, + "max_error": 1.6866544795110634, + "r2": 0.81273177396943, + "rmse": 0.799733229658958 + }, + "validation": { + "mae": 0.6339297915538933, + "max_error": 1.3065207727481498, + "r2": 0.8279890495552521, + "rmse": 0.7185089709719097 + } + }, + "score": 0.23547460953454363, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.3398886609003136, + 8.953113960383286 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s1-20260718", + "used_features": [ + "Cl_T" + ] + }, + { + "expression": "-Cl_F - 2.4342265 - 1.8745719", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5558477496709427, + "max_error": 1.43625144728992, + "r2": 0.8999162854209984, + "rmse": 0.6835765903491295 + }, + "train": { + "mae": 0.6224060178179622, + "max_error": 1.9435719207527873, + "r2": 0.8585195804538694, + "rmse": 0.7707986920735266 + }, + "validation": { + "mae": 0.5457504583688547, + "max_error": 1.430676567122078, + "r2": 0.8899878799726847, + "rmse": 0.681517751330412 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-4.07322900000000", + "loss": 4.1993833, + "metrics": { + "blind": { + "mae": 1.9941100746393203, + "max_error": 3.1925504952392574, + "r2": -0.03697604119425435, + "rmse": 2.200340207605013 + }, + "train": { + "mae": 1.8435941525463166, + "max_error": 3.183053806396484, + "r2": -2.4624746686185972e-12, + "rmse": 2.0492398824348905 + }, + "validation": { + "mae": 1.8414382418782158, + "max_error": 3.18965990838623, + "r2": -0.01114205274671165, + "rmse": 2.066155443056149 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.073229, + -4.073229 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_B + 0.11135051", + "loss": 0.99562246, + "metrics": { + "blind": { + "mae": 0.8036197760694588, + "max_error": 1.6819807027566531, + "r2": 0.7879431021328992, + "rmse": 0.9950196917078394 + }, + "train": { + "mae": 0.7872663450425117, + "max_error": 2.3365258571791747, + "r2": 0.7629122485082622, + "rmse": 0.9978088659216601 + }, + "validation": { + "mae": 0.7039612269377901, + "max_error": 1.6644320299017528, + "r2": 0.8068121348851376, + "rmse": 0.9031228424032041 + } + }, + "score": 0.7196624153286646, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -6.144548580319872, + -0.8783730913785005 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - 2.4342265 - 1.8745719", + "loss": 0.59413064, + "metrics": { + "blind": { + "mae": 0.5558477496709427, + "max_error": 1.43625144728992, + "r2": 0.8999162854209984, + "rmse": 0.6835765903491295 + }, + "train": { + "mae": 0.6224060178179622, + "max_error": 1.9435719207527873, + "r2": 0.8585195804538694, + "rmse": 0.7707986920735266 + }, + "validation": { + "mae": 0.5457504583688547, + "max_error": 1.430676567122078, + "r2": 0.8899878799726847, + "rmse": 0.681517751330412 + } + }, + "score": 0.17208963388626405, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.961269052014017, + -0.3035041068347928 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "0.3191684*Cd_B", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.49796472538731934, + "max_error": 1.030174241801724, + "r2": 0.8142993248025534, + "rmse": 0.5833866004092221 + }, + "train": { + "mae": 0.4789387675998012, + "max_error": 1.1823480307382532, + "r2": 0.8313606897600454, + "rmse": 0.5620571060501935 + }, + "validation": { + "mae": 0.4806763501722024, + "max_error": 1.0436163764628583, + "r2": 0.8284096341214434, + "rmse": 0.5586858085866808 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_T", + "loss": 29.012447, + "metrics": { + "blind": { + "mae": 4.728634100826457, + "max_error": 8.368377137929201, + "r2": -13.99992201462043, + "rmse": 5.243173257078328 + }, + "train": { + "mae": 4.829852831715686, + "max_error": 8.508786346763372, + "r2": -14.487533168949, + "rmse": 5.386320098093307 + }, + "validation": { + "mae": 4.946172620528019, + "max_error": 8.361047185957432, + "r2": -15.096954009862063, + "rmse": 5.411193214050578 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.3504140079021454, + 6.930836476385593 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 2.0, + "expression": "-0.327694860000000", + "loss": 1.8732771, + "metrics": { + "blind": { + "mae": 1.180013022944331, + "max_error": 2.3285675377661135, + "r2": -1.0690515139799572e-08, + "rmse": 1.3537850401518563 + }, + "train": { + "mae": 1.2072909678001016, + "max_error": 2.413731542128906, + "r2": -1.0630176738857244e-09, + "rmse": 1.3686772060243408 + }, + "validation": { + "mae": 1.200051519588126, + "max_error": 2.3515477509313967, + "r2": -0.012058831772411738, + "rmse": 1.3568257254430771 + } + }, + "score": 2.7400355878067404, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.32769486, + -0.32769486 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.3191684*Cd_B", + "loss": 0.31590816, + "metrics": { + "blind": { + "mae": 0.49796472538731934, + "max_error": 1.030174241801724, + "r2": 0.8142993248025534, + "rmse": 0.5833866004092221 + }, + "train": { + "mae": 0.4789387675998012, + "max_error": 1.1823480307382532, + "r2": 0.8313606897600454, + "rmse": 0.5620571060501935 + }, + "validation": { + "mae": 0.4806763501722024, + "max_error": 1.0436163764628583, + "r2": 0.8284096341214434, + "rmse": 0.5586858085866808 + } + }, + "score": 0.8899965487709497, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.950960012278706, + 1.746690496009402 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + }, + { + "complexity": 5.0, + "expression": "0.30310761481441*Cd_B", + "loss": 0.2920138, + "metrics": { + "blind": { + "mae": 0.4827070899146181, + "max_error": 0.9936836356398318, + "r2": 0.8296898140134084, + "rmse": 0.5586888704695373 + }, + "train": { + "mae": 0.4670556251822333, + "max_error": 1.1456856457854592, + "r2": 0.8441160975658141, + "rmse": 0.540382988874516 + }, + "validation": { + "mae": 0.4729005321248714, + "max_error": 1.002445876143318, + "r2": 0.8413867954635865, + "rmse": 0.5371441613495211 + } + }, + "score": 0.07865047700806758, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.8024655659347872, + 1.658795764444126 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + }, + { + "complexity": 7.0, + "expression": "Cd_B*0.27811527 + 0.011115579", + "loss": 0.2773993, + "metrics": { + "blind": { + "mae": 0.4726161076087692, + "max_error": 0.9480158257116807, + "r2": 0.840107137353366, + "rmse": 0.5413326816240276 + }, + "train": { + "mae": 0.45518990001870546, + "max_error": 1.0997505292017233, + "r2": 0.8519176348525587, + "rmse": 0.526687129157976 + }, + "validation": { + "mae": 0.464988954961177, + "max_error": 0.9494956371725431, + "r2": 0.8480412780699045, + "rmse": 0.5257557193250366 + } + }, + "score": 0.025671538489921365, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5602763275110947, + 1.5331374925230454 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s2-20260718", + "used_features": [ + "Cd_B" + ] + }, + { + "expression": "Cl_T - 1*0.24250285", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.7563182777318364, + "max_error": 1.7360549461880685, + "r2": 0.7278593456920013, + "rmse": 0.9172478224801442 + }, + "train": { + "mae": 0.7269135315345918, + "max_error": 1.8074298691788675, + "r2": 0.7630102935017334, + "rmse": 0.8996588055572006 + }, + "validation": { + "mae": 0.7436158754680644, + "max_error": 1.7616730523148538, + "r2": 0.7206691334396138, + "rmse": 0.9156165023727584 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_hat_B", + "loss": 850.0002, + "metrics": { + "blind": { + "mae": 26.97296577692032, + "max_error": 43.732608914375305, + "r2": -282.111258125184, + "rmse": 29.584793820848258 + }, + "train": { + "mae": 26.443328551229847, + "max_error": 48.30289125442505, + "r2": -247.88163137381096, + "rmse": 29.154763035278258 + }, + "validation": { + "mae": 25.345304394761722, + "max_error": 43.876291275024414, + "r2": -268.7101044911533, + "rmse": 28.451341976839196 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -41.375577449798584, + 38.98056149482727 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + }, + { + "complexity": 2.0, + "expression": "4.24613430000000", + "loss": 3.4152784, + "metrics": { + "blind": { + "mae": 1.5592644647624205, + "max_error": 3.204245071643067, + "r2": -0.0241048147216818, + "rmse": 1.7793532711978626 + }, + "train": { + "mae": 1.577945004876696, + "max_error": 3.4490213205749516, + "r2": -1.2980228003556249e-08, + "rmse": 1.848047358270522 + }, + "validation": { + "mae": 1.4973268459112705, + "max_error": 3.1792640497619633, + "r2": -0.011149700371596127, + "rmse": 1.7420550541036268 + } + }, + "score": 5.516977572384496, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.2461343, + 4.2461343 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 1*0.24250285", + "loss": 0.8093858, + "metrics": { + "blind": { + "mae": 0.7563182777318364, + "max_error": 1.7360549461880685, + "r2": 0.7278593456920013, + "rmse": 0.9172478224801442 + }, + "train": { + "mae": 0.7269135315345918, + "max_error": 1.8074298691788675, + "r2": 0.7630102935017334, + "rmse": 0.8996588055572006 + }, + "validation": { + "mae": 0.7436158754680644, + "max_error": 1.7616730523148538, + "r2": 0.7206691334396138, + "rmse": 0.9156165023727584 + } + }, + "score": 0.7198693014739362, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.1079111579021454, + 6.688333626385593 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s2-20260718", + "used_features": [ + "Cl_T" + ] + }, + { + "expression": "Cl_B + 0.111351624", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.8036202216694587, + "max_error": 1.681981816756653, + "r2": 0.7879429856498432, + "rmse": 0.995019964990434 + }, + "train": { + "mae": 0.7872664960933592, + "max_error": 2.3365269711791745, + "r2": 0.7629122485081916, + "rmse": 0.9978088659218084 + }, + "validation": { + "mae": 0.7039616553993284, + "max_error": 1.6644331439017526, + "r2": 0.8068120662266948, + "rmse": 0.9031230028868932 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-4.07344770000000", + "loss": 4.1993833, + "metrics": { + "blind": { + "mae": 1.9941100746393203, + "max_error": 3.192331795239258, + "r2": -0.036937126000393006, + "rmse": 2.2002989205040127 + }, + "train": { + "mae": 1.8436163932242833, + "max_error": 3.1828351063964844, + "r2": -1.172711638908197e-08, + "rmse": 2.0492398944482044 + }, + "validation": { + "mae": 1.8414550649551393, + "max_error": 3.1894412083862305, + "r2": -0.011119594002760191, + "rmse": 2.0661324969658317 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.0734477, + -4.0734477 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_B - Cl_F", + "loss": 4.034028, + "metrics": { + "blind": { + "mae": 1.7916127349146336, + "max_error": 4.034711551852524, + "r2": 0.09171438546947219, + "rmse": 2.059286116847715 + }, + "train": { + "mae": 1.7252742814184245, + "max_error": 4.055768484249711, + "r2": 0.039376327430193814, + "rmse": 2.008488927674725 + }, + "validation": { + "mae": 1.7166738736529787, + "max_error": 3.988095107488334, + "r2": 0.02892028471473751, + "rmse": 2.024810323688483 + } + }, + "score": 0.040172300665501245, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.642194253392518, + -2.250604797154665 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B", + "Cl_F" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_B + 0.111351624", + "loss": 0.99562246, + "metrics": { + "blind": { + "mae": 0.8036202216694587, + "max_error": 1.681981816756653, + "r2": 0.7879429856498432, + "rmse": 0.995019964990434 + }, + "train": { + "mae": 0.7872664960933592, + "max_error": 2.3365269711791745, + "r2": 0.7629122485081916, + "rmse": 0.9978088659218084 + }, + "validation": { + "mae": 0.7039616553993284, + "max_error": 1.6644331439017526, + "r2": 0.8068120662266948, + "rmse": 0.9031230028868932 + } + }, + "score": 1.399152529991828, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -6.144547466319872, + -0.8783719773785005 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_B - 0.46092096*Cl_F", + "loss": 0.7791905, + "metrics": { + "blind": { + "mae": 0.679972712278599, + "max_error": 1.958324312645644, + "r2": 0.8313439298169693, + "rmse": 0.887373514244542 + }, + "train": { + "mae": 0.7204504116861231, + "max_error": 1.9794475164981187, + "r2": 0.8144512705922048, + "rmse": 0.8827176124117947 + }, + "validation": { + "mae": 0.7003986488446098, + "max_error": 1.936793120277375, + "r2": 0.8079791532950474, + "rmse": 0.9003908967059939 + } + }, + "score": 0.12255628461875596, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.409774999631644, + -2.673223880676627 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B", + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re100-raw_complete-s2-20260718", + "used_features": [ + "Cl_B" + ] + } + ], + "n_head_fits": 18 + }, + "karman_re200": { + "feature_frequency": { + "Cd_rear_a": 1, + "Cl_B": 2, + "Cl_F": 5, + "Cl_T": 3, + "Cl_rear_a": 3, + "Cl_rear_s": 4, + "v_c": 1, + "v_hat_B": 1, + "v_hat_C": 2, + "v_s": 1 + }, + "fits": [ + { + "expression": "Cl_rear_s + Cl_rear_s + 3.496592", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.56368695355497, + "max_error": 5.225412553303123, + "r2": 0.6553879733699013, + "rmse": 2.8941925632789784 + }, + "train": { + "mae": 2.035801436231275, + "max_error": 5.798230724536062, + "r2": 0.6711861069707891, + "rmse": 2.3759048498713593 + }, + "validation": { + "mae": 2.436340574469411, + "max_error": 5.393145319201231, + "r2": 0.5694667076124709, + "rmse": 2.81119426865924 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 19.28765, + "metrics": { + "blind": { + "mae": 4.156242282481253, + "max_error": 8.888153115287423, + "r2": -0.01725172171079037, + "rmse": 4.97251870096794 + }, + "train": { + "mae": 3.5819024734709104, + "max_error": 9.784167295321822, + "r2": -0.12349558243810521, + "rmse": 4.391770620410337 + }, + "validation": { + "mae": 4.100822391547412, + "max_error": 9.235134476795793, + "r2": -0.21474522804521534, + "rmse": 4.722044651182954 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4748436883091927, + 3.0628510285168886 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "2.98672840000000", + "loss": 17.167532, + "metrics": { + "blind": { + "mae": 4.194986393302278, + "max_error": 8.352777749291992, + "r2": -5.282263906281059e-07, + "rmse": 4.9301748626546615 + }, + "train": { + "mae": 3.3187784695275795, + "max_error": 9.0132716, + "r2": -1.1894929485833927e-12, + "rmse": 4.143372359454957 + }, + "validation": { + "mae": 3.640715082485854, + "max_error": 9.0132716, + "r2": -0.00909351822338178, + "rmse": 4.303811055723524 + } + }, + "score": 0.1164450692185755, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9867284, + 2.9867284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 10.601864, + "metrics": { + "blind": { + "mae": 3.007898118025332, + "max_error": 7.5319707822054625, + "r2": 0.4366542488808024, + "rmse": 3.7004089261568374 + }, + "train": { + "mae": 2.7252668787999537, + "max_error": 7.180802566930652, + "r2": 0.38244691943932074, + "rmse": 3.256050340782676 + }, + "validation": { + "mae": 2.723462588492578, + "max_error": 7.917192108929157, + "r2": 0.3979511337315552, + "rmse": 3.324324114962916 + } + }, + "score": 0.48199009078315, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.349753398448229, + 10.679074563086033 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 1*(-3.2419837)", + "loss": 8.779192, + "metrics": { + "blind": { + "mae": 3.1688860215224848, + "max_error": 5.646169415287423, + "r2": 0.4663933803283504, + "rmse": 3.60141204407201 + }, + "train": { + "mae": 2.3784248066710734, + "max_error": 6.542183595321822, + "r2": 0.48861653790569437, + "rmse": 2.9629703395198197 + }, + "validation": { + "mae": 2.584921384755914, + "max_error": 5.993150776795792, + "r2": 0.4640912815514554, + "rmse": 3.1364105049156445 + } + }, + "score": 0.18864545863759394, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.23285998830919263, + 6.304834728516889 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_a + Cl_rear_s + Cl_rear_s", + "loss": 7.186998, + "metrics": { + "blind": { + "mae": 2.402185729827761, + "max_error": 5.921716262586415, + "r2": 0.627717373796451, + "rmse": 3.0081437968673983 + }, + "train": { + "mae": 2.1755986108727776, + "max_error": 5.718464311212301, + "r2": 0.5813611411980587, + "rmse": 2.6808575223838487 + }, + "validation": { + "mae": 2.4187452670430036, + "max_error": 7.056821120902896, + "r2": 0.4833608598416258, + "rmse": 3.079506612778233 + } + }, + "score": 0.20011081587135973, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.8245970867574215, + 13.741925591602921 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s + Cl_rear_s + 3.496592", + "loss": 5.644923, + "metrics": { + "blind": { + "mae": 2.56368695355497, + "max_error": 5.225412553303123, + "r2": 0.6553879733699013, + "rmse": 2.8941925632789784 + }, + "train": { + "mae": 2.035801436231275, + "max_error": 5.798230724536062, + "r2": 0.6711861069707891, + "rmse": 2.3759048498713593 + }, + "validation": { + "mae": 2.436340574469411, + "max_error": 5.393145319201231, + "r2": 0.5694667076124709, + "rmse": 2.81119426865924 + } + }, + "score": 0.2415170030871696, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.453095376618385, + 9.622294057033777 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "8.79444826162819e-6*Cd_rear_a**2", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 4.695139157056033, + "max_error": 8.702054453320647, + "r2": -1.1836693119423116, + "rmse": 5.30934022112671 + }, + "train": { + "mae": 4.328336064825795, + "max_error": 8.76412768747445, + "r2": -1.4332321708577416, + "rmse": 4.874258002946551 + }, + "validation": { + "mae": 4.360320289590147, + "max_error": 8.399317055512984, + "r2": -1.1524698839682008, + "rmse": 4.964898396852078 + } + }, + "pareto": [ + { + "complexity": 4.0, + "expression": "Cd_tot**8", + "loss": 117829070000000.0, + "metrics": { + "blind": { + "mae": 1286591.113154075, + "max_error": 26741739.327283926, + "r2": -1575856327774.822, + "rmse": 4510300.006120977 + }, + "train": { + "mae": 2471511.5809718934, + "max_error": 89525563.38108778, + "r2": -12067549287299.86, + "rmse": 10854911.303430634 + }, + "validation": { + "mae": 1107704.0368365294, + "max_error": 19620292.94212952, + "r2": -1278160054317.9292, + "rmse": 3825907.3066826537 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0036688635305350435, + 89525564.5222454 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 6.0, + "expression": "8.79444826162819e-6*Cd_rear_a**2", + "loss": 23.75839, + "metrics": { + "blind": { + "mae": 4.695139157056033, + "max_error": 8.702054453320647, + "r2": -1.1836693119423116, + "rmse": 5.30934022112671 + }, + "train": { + "mae": 4.328336064825795, + "max_error": 8.76412768747445, + "r2": -1.4332321708577416, + "rmse": 4.874258002946551 + }, + "validation": { + "mae": 4.360320289590147, + "max_error": 8.399317055512984, + "r2": -1.1524698839682008, + "rmse": 4.964898396852078 + } + }, + "score": 14.616160199820017, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 6.742262491142485e-06, + 0.0008536230078588619 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s0-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "v_s*0.07145526 - 1*(-0.5851183)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.7420600438540699, + "max_error": 1.8311556628867283, + "r2": 0.8788630394663897, + "rmse": 0.8801282844203305 + }, + "train": { + "mae": 0.6765968129828485, + "max_error": 1.8858858025978684, + "r2": 0.8697683362649627, + "rmse": 0.8068227511775795 + }, + "validation": { + "mae": 0.6043540324811727, + "max_error": 1.8463173394667833, + "r2": 0.8826853814560102, + "rmse": 0.773229165495083 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 10.966224, + "metrics": { + "blind": { + "mae": 3.1662198211553916, + "max_error": 6.719977606553584, + "r2": -1.2883313285920974, + "rmse": 3.825314044294598 + }, + "train": { + "mae": 2.7357751203240173, + "max_error": 6.745328560122289, + "r2": -1.1939033949403988, + "rmse": 3.3115292227968007 + }, + "validation": { + "mae": 2.893959149441425, + "max_error": 6.483615390956402, + "r2": -1.2927363320228764, + "rmse": 3.4182924596239426 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4748436883091927, + 3.0628510285168886 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "0.537530960000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.6141012324456785, + "r2": -0.003592202536678135, + "rmse": 2.5332980040183206 + }, + "train": { + "mae": 2.0496718439179813, + "max_error": 3.797726930535278, + "r2": -8.427059050575281e-11, + "rmse": 2.235732508988731 + }, + "validation": { + "mae": 2.1364197237096962, + "max_error": 3.23136526480957, + "r2": -0.009007573022426829, + "rmse": 2.267667487039513 + } + }, + "score": 0.7856823361818368, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.53753096, + 0.53753096 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "v_s*0.07145526", + "loss": 0.99854153, + "metrics": { + "blind": { + "mae": 0.8047980066155759, + "max_error": 2.4162739628867285, + "r2": 0.8235499600774527, + "rmse": 1.0622299007578893 + }, + "train": { + "mae": 0.8182493487282801, + "max_error": 2.21303012713258, + "r2": 0.8002317437083497, + "rmse": 0.9992705336263207 + }, + "validation": { + "mae": 0.7306811647645955, + "max_error": 2.323934419296214, + "r2": 0.8351979243358325, + "rmse": 0.9164599676871091 + } + }, + "score": 0.805298600983842, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.041097478814006, + 3.1658714843752387 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + }, + { + "complexity": 7.0, + "expression": "v_s*0.07145526 - 1*(-0.5851183)", + "loss": 0.6509629, + "metrics": { + "blind": { + "mae": 0.7420600438540699, + "max_error": 1.8311556628867283, + "r2": 0.8788630394663897, + "rmse": 0.8801282844203305 + }, + "train": { + "mae": 0.6765968129828485, + "max_error": 1.8858858025978684, + "r2": 0.8697683362649627, + "rmse": 0.8068227511775795 + }, + "validation": { + "mae": 0.6043540324811727, + "max_error": 1.8463173394667833, + "r2": 0.8826853814560102, + "rmse": 0.773229165495083 + } + }, + "score": 0.14261436434740157, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.455979178814006, + 3.7509897843752387 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_s" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s0-20260718", + "used_features": [ + "v_s" + ] + }, + { + "expression": "(-Cl_F + Cl_T)*0.66783756", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.1658243443726426, + "max_error": 4.082849028876843, + "r2": 0.7636941489894997, + "rmse": 2.396621471397061 + }, + "train": { + "mae": 1.6887483928090667, + "max_error": 4.737315527150613, + "r2": 0.7492986529864394, + "rmse": 2.0745900863367845 + }, + "validation": { + "mae": 1.5124168374243323, + "max_error": 4.032160005342345, + "r2": 0.8142011011172448, + "rmse": 1.8467540346290523 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_T", + "loss": 10.601864, + "metrics": { + "blind": { + "mae": 3.007898118025332, + "max_error": 7.5319707822054625, + "r2": 0.4366542488808024, + "rmse": 3.7004089261568374 + }, + "train": { + "mae": 2.7252668787999537, + "max_error": 7.180802566930652, + "r2": 0.38244691943932074, + "rmse": 3.256050340782676 + }, + "validation": { + "mae": 2.723462588492578, + "max_error": 7.917192108929157, + "r2": 0.3979511337315552, + "rmse": 3.324324114962916 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7661841809749603, + 10.05167979747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_T", + "loss": 7.871448, + "metrics": { + "blind": { + "mae": 2.0370678328035865, + "max_error": 4.608404110185802, + "r2": 0.7712516335499242, + "rmse": 2.3579859281314874 + }, + "train": { + "mae": 2.1521556351118782, + "max_error": 7.516789857298136, + "r2": 0.5414922471091241, + "rmse": 2.8056100353457007 + }, + "validation": { + "mae": 1.8507355690947942, + "max_error": 4.215013526380062, + "r2": 0.7387148476628552, + "rmse": 2.190003728754536 + } + }, + "score": 0.14889389968745922, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 5.247253458946943, + 5.862631369382143 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 1*1.6451899", + "loss": 7.68023, + "metrics": { + "blind": { + "mae": 2.970297511391982, + "max_error": 5.886780882205462, + "r2": 0.5105262368689646, + "rmse": 3.4492678237655716 + }, + "train": { + "mae": 2.2346544876386214, + "max_error": 6.016409110326672, + "r2": 0.5526305487776446, + "rmse": 2.7713228776462864 + }, + "validation": { + "mae": 2.589989052845921, + "max_error": 6.272002208929157, + "r2": 0.44821263300802283, + "rmse": 3.1825362945897067 + } + }, + "score": 0.024592540712256257, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4113740809749604, + 8.40648989747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_T**2*0.12801841", + "loss": 6.9497695, + "metrics": { + "blind": { + "mae": 2.7869376354305153, + "max_error": 6.002687351881068, + "r2": 0.5711053770450999, + "rmse": 3.2287729719935476 + }, + "train": { + "mae": 2.160710251484924, + "max_error": 5.609468614539299, + "r2": 0.5951794699941918, + "rmse": 2.6362417223875183 + }, + "validation": { + "mae": 2.623735651965923, + "max_error": 6.044408033273995, + "r2": 0.46582253364601744, + "rmse": 3.131340322717588 + } + }, + "score": 0.09994100106872897, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0439683345093897, + 12.934502221783266 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_T)*0.66783756", + "loss": 4.303924, + "metrics": { + "blind": { + "mae": 2.1658243443726426, + "max_error": 4.082849028876843, + "r2": 0.7636941489894997, + "rmse": 2.396621471397061 + }, + "train": { + "mae": 1.6887483928090667, + "max_error": 4.737315527150613, + "r2": 0.7492986529864394, + "rmse": 2.0745900863367845 + }, + "validation": { + "mae": 1.5124168374243323, + "max_error": 4.032160005342345, + "r2": 0.8142011011172448, + "rmse": 1.8467540346290523 + } + }, + "score": 0.4791813288480745, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.504312946724687, + 3.9152854289076298 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s2-20260718", + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "expression": "Cl_B + 1.4638376", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4777958523168957, + "max_error": 5.404811919979954, + "r2": 0.36437926522550845, + "rmse": 2.864482334812939 + }, + "train": { + "mae": 2.201913989848613, + "max_error": 6.312519033752585, + "r2": 0.27552020762190943, + "rmse": 2.659682995657083 + }, + "validation": { + "mae": 2.5320764959538233, + "max_error": 5.3865341184066775, + "r2": 0.2577961525179474, + "rmse": 2.9154354091939134 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-3.74073500000000", + "loss": 9.764127, + "metrics": { + "blind": { + "mae": 2.9986415652556415, + "max_error": 7.018208926544189, + "r2": -0.002188294467040608, + "rmse": 3.596845498719945 + }, + "train": { + "mae": 2.518623806599178, + "max_error": 7.740735, + "r2": -2.2248869413488137e-13, + "rmse": 3.1247605174659174 + }, + "validation": { + "mae": 2.8484663473774834, + "max_error": 7.534213727340698, + "r2": -0.0010185594733838066, + "rmse": 3.3858123775587887 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.740735, + -3.740735 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_B + 1.4638376", + "loss": 7.0739136, + "metrics": { + "blind": { + "mae": 2.4777958523168957, + "max_error": 5.404811919979954, + "r2": 0.36437926522550845, + "rmse": 2.864482334812939 + }, + "train": { + "mae": 2.201913989848613, + "max_error": 6.312519033752585, + "r2": 0.27552020762190943, + "rmse": 2.659682995657083 + }, + "validation": { + "mae": 2.5320764959538233, + "max_error": 5.3865341184066775, + "r2": 0.2577961525179474, + "rmse": 2.9154354091939134 + } + }, + "score": 0.1611506412211201, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -9.049503454320336, + -0.25937773318609003 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B" + ] + }, + { + "complexity": 7.0, + "expression": "-Cl_F - 1.8880354 - 1.8880354", + "loss": 4.868252, + "metrics": { + "blind": { + "mae": 1.6030350141938996, + "max_error": 4.728604979491664, + "r2": 0.6974875414535187, + "rmse": 1.9761447498490055 + }, + "train": { + "mae": 1.7587280484115797, + "max_error": 5.953708571991754, + "r2": 0.5014145717619338, + "rmse": 2.2064115857189424 + }, + "validation": { + "mae": 1.470082622111128, + "max_error": 4.484957279316021, + "r2": 0.6855513730844855, + "rmse": 1.8976524470875948 + } + }, + "score": 0.12455964551451039, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.580497138523626, + 2.8527447503571035 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s2-20260718", + "used_features": [ + "Cl_B" + ] + }, + { + "expression": "(v_hat_C + 16.745419)*0.03420825", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.44382568927398214, + "max_error": 1.0144669332256504, + "r2": 0.9570368515374358, + "rmse": 0.5241501227657581 + }, + "train": { + "mae": 0.42811254711443447, + "max_error": 1.0347549468854478, + "r2": 0.949353221289663, + "rmse": 0.5031480059126261 + }, + "validation": { + "mae": 0.4331757414929777, + "max_error": 0.9187665063345842, + "r2": 0.9508235148239786, + "rmse": 0.5006231204367834 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_hat_T", + "loss": 10279.813, + "metrics": { + "blind": { + "mae": 98.45876452624798, + "max_error": 124.28035372495651, + "r2": -1594.2449505631478, + "rmse": 100.99999006506003 + }, + "train": { + "mae": 99.00021959771797, + "max_error": 140.03689694404602, + "r2": -2055.580132476354, + "rmse": 101.38942492403635 + }, + "validation": { + "mae": 86.56880200635165, + "max_error": 129.5477851331234, + "r2": -1641.3280099624665, + "rmse": 91.48757377472376 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 32.61740505695343, + 141.26019477844238 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_hat_T" + ] + }, + { + "complexity": 2.0, + "expression": "0.537587050000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.6141573224456787, + "r2": -0.0035948618441652425, + "rmse": 2.533301360368574 + }, + "train": { + "mae": 2.049669942562049, + "max_error": 3.7977830205352783, + "r2": -2.530671228129222e-10, + "rmse": 2.235732509177423 + }, + "validation": { + "mae": 2.1364154090943117, + "max_error": 3.2314213548095703, + "r2": -0.009002857494505134, + "rmse": 2.267662188138825 + } + }, + "score": 7.628799680817165, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.53758705, + 0.53758705 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "v_hat_C*0.034062605", + "loss": 0.58120507, + "metrics": { + "blind": { + "mae": 0.6282085230530006, + "max_error": 1.231549599102408, + "r2": 0.9171501743355234, + "rmse": 0.7278693654721722 + }, + "train": { + "mae": 0.6278562244055106, + "max_error": 1.5963536754277352, + "r2": 0.8837240936763684, + "rmse": 0.7623680872594811 + }, + "validation": { + "mae": 0.5559275382313629, + "max_error": 1.4784623554070295, + "r2": 0.903565522010711, + "rmse": 0.701048924563357 + } + }, + "score": 1.075894645679039, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.332230461071372, + 2.957910457912386 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_C" + ] + }, + { + "complexity": 6.0, + "expression": "0.034062605*(Cd_B + v_hat_C)", + "loss": 0.5286795, + "metrics": { + "blind": { + "mae": 0.6103343279878001, + "max_error": 1.2207801963151406, + "r2": 0.9213472978553889, + "rmse": 0.7091930412125264 + }, + "train": { + "mae": 0.6086945272301614, + "max_error": 1.5395797352823846, + "r2": 0.894232372262359, + "rmse": 0.7271034806146198 + }, + "validation": { + "mae": 0.552573207482894, + "max_error": 1.4531977802013443, + "r2": 0.9057697068493518, + "rmse": 0.6929907401751555 + } + }, + "score": 0.04736063342582187, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.701223010036681, + 3.2712935051560033 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B", + "v_hat_C" + ] + }, + { + "complexity": 7.0, + "expression": "(v_hat_C + 16.745419)*0.03420825", + "loss": 0.25315788, + "metrics": { + "blind": { + "mae": 0.44382568927398214, + "max_error": 1.0144669332256504, + "r2": 0.9570368515374358, + "rmse": 0.5241501227657581 + }, + "train": { + "mae": 0.42811254711443447, + "max_error": 1.0347549468854478, + "r2": 0.949353221289663, + "rmse": 0.5031480059126261 + }, + "validation": { + "mae": 0.4331757414929777, + "max_error": 0.9187665063345842, + "r2": 0.9508235148239786, + "rmse": 0.5006231204367834 + } + }, + "score": 0.7363690624161687, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.7736469436774067, + 3.5433893808146903 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_C" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s2-20260718", + "used_features": [ + "v_hat_C" + ] + }, + { + "expression": "Cl_rear_a + Cl_rear_s + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.402185729827761, + "max_error": 5.921716262586415, + "r2": 0.627717373796451, + "rmse": 3.0081437968673983 + }, + "train": { + "mae": 2.1755986108727776, + "max_error": 5.718464311212301, + "r2": 0.5813611411980587, + "rmse": 2.6808575223838487 + }, + "validation": { + "mae": 2.4187452670430036, + "max_error": 7.056821120902896, + "r2": 0.4833608598416258, + "rmse": 3.079506612778233 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "2.98672840000000", + "loss": 17.167532, + "metrics": { + "blind": { + "mae": 4.194986393302278, + "max_error": 8.352777749291992, + "r2": -5.282263906281059e-07, + "rmse": 4.9301748626546615 + }, + "train": { + "mae": 3.3187784695275795, + "max_error": 9.0132716, + "r2": -1.1894929485833927e-12, + "rmse": 4.143372359454957 + }, + "validation": { + "mae": 3.640715082485854, + "max_error": 9.0132716, + "r2": -0.00909351822338178, + "rmse": 4.303811055723524 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9867284, + 2.9867284 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 10.601864, + "metrics": { + "blind": { + "mae": 3.007898118025332, + "max_error": 7.5319707822054625, + "r2": 0.4366542488808024, + "rmse": 3.7004089261568374 + }, + "train": { + "mae": 2.7252668787999537, + "max_error": 7.180802566930652, + "r2": 0.38244691943932074, + "rmse": 3.256050340782676 + }, + "validation": { + "mae": 2.723462588492578, + "max_error": 7.917192108929157, + "r2": 0.3979511337315552, + "rmse": 3.324324114962916 + } + }, + "score": 0.48199009078315, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.349753398448229, + 10.679074563086033 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s + 3.2416747", + "loss": 8.779192, + "metrics": { + "blind": { + "mae": 3.1688860215224848, + "max_error": 5.646478415287423, + "r2": 0.4663884932224672, + "rmse": 3.601428536035416 + }, + "train": { + "mae": 2.3783829083659884, + "max_error": 6.542492595321822, + "r2": 0.48861654346083805, + "rmse": 2.9629703234264895 + }, + "validation": { + "mae": 2.584961000140529, + "max_error": 5.993459776795793, + "r2": 0.46408115014750817, + "rmse": 3.1364401518410383 + } + }, + "score": 0.18864545863759394, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.23316898830919275, + 6.3045257285168885 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_a + Cl_rear_s + Cl_rear_s", + "loss": 7.186998, + "metrics": { + "blind": { + "mae": 2.402185729827761, + "max_error": 5.921716262586415, + "r2": 0.627717373796451, + "rmse": 3.0081437968673983 + }, + "train": { + "mae": 2.1755986108727776, + "max_error": 5.718464311212301, + "r2": 0.5813611411980587, + "rmse": 2.6808575223838487 + }, + "validation": { + "mae": 2.4187452670430036, + "max_error": 7.056821120902896, + "r2": 0.4833608598416258, + "rmse": 3.079506612778233 + } + }, + "score": 0.20011081587135973, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.8245970867574215, + 13.741925591602921 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s + Cl_rear_s + 2.638214", + "loss": 6.3817787, + "metrics": { + "blind": { + "mae": 2.7162037146857196, + "max_error": 6.083790553303123, + "r2": 0.598151912105739, + "rmse": 3.1253104308125415 + }, + "train": { + "mae": 2.0501280245264795, + "max_error": 6.656608724536062, + "r2": 0.6282646585806155, + "rmse": 2.526218379724926 + }, + "validation": { + "mae": 2.5819403815035877, + "max_error": 6.251523319201231, + "r2": 0.5112170259772265, + "rmse": 2.99533584249013 + } + }, + "score": 0.11882670860146759, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.311473376618386, + 8.763916057033777 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "-Cl_F - 3.8350446", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.5971376341938996, + "max_error": 4.669631179491663, + "r2": 0.6980886225345068, + "rmse": 1.974180510334246 + }, + "train": { + "mae": 1.764467075222276, + "max_error": 5.894734771991754, + "r2": 0.5017708338643116, + "rmse": 2.2056231538324393 + }, + "validation": { + "mae": 1.4594975810854867, + "max_error": 4.42598347931602, + "r2": 0.6894076314396751, + "rmse": 1.8859805684568651 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 17.153517, + "metrics": { + "blind": { + "mae": 3.680435727767326, + "max_error": 7.4954813700169325, + "r2": -0.4301395342730787, + "rmse": 4.296712808112732 + }, + "train": { + "mae": 3.663267948391938, + "max_error": 7.2125118700787425, + "r2": -0.7567892496097219, + "rmse": 4.141680288764198 + }, + "validation": { + "mae": 3.634326576770922, + "max_error": 7.485991456545889, + "r2": -0.6542452674075749, + "rmse": 4.352530007336589 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4748436883091927, + 3.0628510285168886 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-3.74097440000000", + "loss": 9.764126, + "metrics": { + "blind": { + "mae": 2.9985697452556423, + "max_error": 7.018448326544189, + "r2": -0.002182065005722933, + "rmse": 3.5968343199600037 + }, + "train": { + "mae": 2.518558884565277, + "max_error": 7.7409744, + "r2": -5.797678115371241e-09, + "rmse": 3.124760526523748 + }, + "validation": { + "mae": 2.8483988243005607, + "max_error": 7.534453127340698, + "r2": -0.0010230799744754826, + "rmse": 3.3858200225475477 + } + }, + "score": 0.563488168478909, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7409744, + -3.7409744 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_rear_a + Cl_rear_s", + "loss": 9.2242565, + "metrics": { + "blind": { + "mae": 2.4863606837578116, + "max_error": 6.868649519979954, + "r2": 0.22709047841966123, + "rmse": 3.1587223187587172 + }, + "train": { + "mae": 2.355168372708357, + "max_error": 7.7763566337525845, + "r2": 0.05529126299218179, + "rmse": 3.0371462438045884 + }, + "validation": { + "mae": 2.6068538692660437, + "max_error": 6.850371718406677, + "r2": 0.1482378623431353, + "rmse": 3.1232085794885442 + } + }, + "score": 0.056878466522187296, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.5999339781701565, + -4.553372506052256 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 3.8350446", + "loss": 4.864773, + "metrics": { + "blind": { + "mae": 1.5971376341938996, + "max_error": 4.669631179491663, + "r2": 0.6980886225345068, + "rmse": 1.974180510334246 + }, + "train": { + "mae": 1.764467075222276, + "max_error": 5.894734771991754, + "r2": 0.5017708338643116, + "rmse": 2.2056231538324393 + }, + "validation": { + "mae": 1.4594975810854867, + "max_error": 4.42598347931602, + "r2": 0.6894076314396751, + "rmse": 1.8859805684568651 + } + }, + "score": 0.63981653573822, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.639470938523626, + 2.7937709503571035 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "5.42883056622201 - Cl_rear_a", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 2.1328766632252942, + "max_error": 4.046867193060158, + "r2": 0.1484931758153799, + "rmse": 2.3334672403228636 + }, + "train": { + "mae": 1.69422449535976, + "max_error": 4.2274514495974165, + "r2": 0.2592787864805839, + "rmse": 1.9241868089279077 + }, + "validation": { + "mae": 1.8740837794840433, + "max_error": 4.167620261793794, + "r2": 0.08035382556053183, + "rmse": 2.1649234505134847 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.537587640000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.6141579124456786, + "r2": -0.0035948898221422887, + "rmse": 2.533301395679958 + }, + "train": { + "mae": 2.049669922562049, + "max_error": 3.7977836105352782, + "r2": -2.6153257337568903e-10, + "rmse": 2.235732509186886 + }, + "validation": { + "mae": 2.1364153637096965, + "max_error": 3.2314219448095702, + "r2": -0.009002807899328724, + "rmse": 2.2676621324080077 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.53758764, + 0.53758764 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.25136358 - Cl_rear_s", + "loss": 4.913869, + "metrics": { + "blind": { + "mae": 1.7851169628943082, + "max_error": 5.074798956398265, + "r2": 0.12249923310962663, + "rmse": 2.3688163615934887 + }, + "train": { + "mae": 1.7197731627774544, + "max_error": 5.257964691032068, + "r2": 0.01693141583730018, + "rmse": 2.2167246495183623 + }, + "validation": { + "mae": 1.8870099151724777, + "max_error": 5.3283254791762396, + "r2": -0.21052067163872645, + "rmse": 2.4838093952907467 + } + }, + "score": 0.008538026074038151, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.8114874485168886, + 3.7262072683091927 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "5.42883056622201 - Cl_rear_a", + "loss": 3.7024953, + "metrics": { + "blind": { + "mae": 2.1328766632252942, + "max_error": 4.046867193060158, + "r2": 0.1484931758153799, + "rmse": 2.3334672403228636 + }, + "train": { + "mae": 1.69422449535976, + "max_error": 4.2274514495974165, + "r2": 0.2592787864805839, + "rmse": 1.9241868089279077 + }, + "validation": { + "mae": 1.8740837794840433, + "max_error": 4.167620261793794, + "r2": 0.08035382556053183, + "rmse": 2.1649234505134847 + } + }, + "score": 0.2830546174705321, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.187392968347134, + 4.303740276361046 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 7.0, + "expression": "(0.00939094726761*Cl_rear_s**2)*v_c", + "loss": 3.5841317, + "metrics": { + "blind": { + "mae": 1.2873077346149913, + "max_error": 4.637383980561998, + "r2": 0.5530440897562817, + "rmse": 1.6905965718406148 + }, + "train": { + "mae": 1.4835516524741184, + "max_error": 8.354778039166073, + "r2": 0.2829585399846256, + "rmse": 1.893180295503503 + }, + "validation": { + "mae": 1.7632716879096035, + "max_error": 7.1898151772414565, + "r2": -0.16413725752101915, + "rmse": 2.4357586574691283 + } + }, + "score": 0.016245378328561936, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -11.092696224631464, + 7.650121178222709 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "v_c" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_a" + ] + }, + { + "expression": "Cl_rear_a + Cl_rear_s + Cl_rear_s", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.402185729827761, + "max_error": 5.921716262586415, + "r2": 0.627717373796451, + "rmse": 3.0081437968673983 + }, + "train": { + "mae": 2.1755986108727776, + "max_error": 5.718464311212301, + "r2": 0.5813611411980587, + "rmse": 2.6808575223838487 + }, + "validation": { + "mae": 2.4187452670430036, + "max_error": 7.056821120902896, + "r2": 0.4833608598416258, + "rmse": 3.079506612778233 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 19.400791, + "metrics": { + "blind": { + "mae": 4.237056224325352, + "max_error": 9.338398739695549, + "r2": -0.045066197482964254, + "rmse": 5.040041456536976 + }, + "train": { + "mae": 3.6963393963686926, + "max_error": 9.506030633114278, + "r2": -0.13008617963690705, + "rmse": 4.4046331841760935 + }, + "validation": { + "mae": 3.612492709601961, + "max_error": 9.383857758715749, + "r2": -0.05635785269580551, + "rmse": 4.403449510362245 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.1250902898609638, + 7.616223534569144 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "2.98670000000000", + "loss": 17.167532, + "metrics": { + "blind": { + "mae": 4.194987813302278, + "max_error": 8.352806149291993, + "r2": -5.366328641454032e-07, + "rmse": 4.930174883377342 + }, + "train": { + "mae": 3.3187770254597817, + "max_error": 9.013300000000001, + "r2": -6.312173006506328e-11, + "rmse": 4.14337235958326 + }, + "validation": { + "mae": 3.6407172671012384, + "max_error": 9.013300000000001, + "r2": -0.009094782499435405, + "rmse": 4.303813751808403 + } + }, + "score": 0.12229391293581231, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9867, + 2.9867 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_a + Cl_rear_s", + "loss": 10.601864, + "metrics": { + "blind": { + "mae": 3.007898118025332, + "max_error": 7.5319707822054625, + "r2": 0.4366542488808024, + "rmse": 3.7004089261568374 + }, + "train": { + "mae": 2.7252668787999537, + "max_error": 7.180802566930652, + "r2": 0.38244691943932074, + "rmse": 3.256050340782676 + }, + "validation": { + "mae": 2.723462588492578, + "max_error": 7.917192108929157, + "r2": 0.3979511337315552, + "rmse": 3.324324114962916 + } + }, + "score": 0.48199009078315, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.349753398448229, + 10.679074563086033 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s + 3.2414374", + "loss": 8.779192, + "metrics": { + "blind": { + "mae": 3.1688860215224848, + "max_error": 5.6467157152874226, + "r2": 0.46638473478153486, + "rmse": 3.601441219169511 + }, + "train": { + "mae": 2.3783507320948023, + "max_error": 6.542729895321822, + "r2": 0.48861654017568523, + "rmse": 2.962970332943624 + }, + "validation": { + "mae": 2.5849914232174522, + "max_error": 5.993697076795792, + "r2": 0.4640733625603023, + "rmse": 3.136462940004278 + } + }, + "score": 0.18864545863759394, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.23340628830919252, + 6.304288428516889 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_a + Cl_rear_s + Cl_rear_s", + "loss": 7.186998, + "metrics": { + "blind": { + "mae": 2.402185729827761, + "max_error": 5.921716262586415, + "r2": 0.627717373796451, + "rmse": 3.0081437968673983 + }, + "train": { + "mae": 2.1755986108727776, + "max_error": 5.718464311212301, + "r2": 0.5813611411980587, + "rmse": 2.6808575223838487 + }, + "validation": { + "mae": 2.4187452670430036, + "max_error": 7.056821120902896, + "r2": 0.4833608598416258, + "rmse": 3.079506612778233 + } + }, + "score": 0.20011081587135973, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.8245970867574215, + 13.741925591602921 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "(-Cl_rear_s - 1.6795528)*(-2.0965374)", + "loss": 5.620439, + "metrics": { + "blind": { + "mae": 2.533504342138071, + "max_error": 5.468149551731296, + "r2": 0.6589531507511925, + "rmse": 2.8791827334132485 + }, + "train": { + "mae": 2.021934005842612, + "max_error": 6.107989036665851, + "r2": 0.6726123103518383, + "rmse": 2.3707466038953053 + }, + "validation": { + "mae": 2.4471323811247303, + "max_error": 5.6334957128675365, + "r2": 0.5601748042457964, + "rmse": 2.841368365403068 + } + }, + "score": 0.12293189273608274, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7638944912194447, + 9.942626992388844 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_a", + "Cl_rear_s" + ] + }, + { + "expression": "Cl_rear_s - 3.4856358", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.206776937163913, + "max_error": 4.935707623783219, + "r2": 0.49993125240049474, + "rmse": 2.540750250806977 + }, + "train": { + "mae": 1.8415383698321022, + "max_error": 5.12453278497951, + "r2": 0.4876396406335143, + "rmse": 2.2366833214246946 + }, + "validation": { + "mae": 2.2390799875756713, + "max_error": 4.514249004136491, + "r2": 0.40644385780950276, + "rmse": 2.6071902613401856 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 85.72546, + "metrics": { + "blind": { + "mae": 8.7111534278818, + "max_error": 13.971171204000711, + "r2": -5.8668356406604305, + "rmse": 9.415111044841925 + }, + "train": { + "mae": 8.6929382487803, + "max_error": 14.21402986254543, + "r2": -7.779632862939268, + "rmse": 9.25880454627438 + }, + "validation": { + "mae": 8.278471073269312, + "max_error": 13.511718764901161, + "r2": -6.177052947930781, + "rmse": 9.065982963268285 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.1250902898609638, + 7.616223534569144 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-3.74058490000000", + "loss": 9.764126, + "metrics": { + "blind": { + "mae": 2.998686595255642, + "max_error": 7.018058826544189, + "r2": -0.0021922047693190283, + "rmse": 3.5968525157343656 + }, + "train": { + "mae": 2.5186645116839226, + "max_error": 7.7405849, + "r2": -2.3529362902507955e-09, + "rmse": 3.1247605211417513 + }, + "validation": { + "mae": 2.8485086832749196, + "max_error": 7.534063627340698, + "r2": -0.001015730296056283, + "rmse": 3.38580759289706 + } + }, + "score": 2.172434807335737, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7405849, + -3.7405849 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 3.4856358", + "loss": 5.002752, + "metrics": { + "blind": { + "mae": 2.206776937163913, + "max_error": 4.935707623783219, + "r2": 0.49993125240049474, + "rmse": 2.540750250806977 + }, + "train": { + "mae": 1.8415383698321022, + "max_error": 5.12453278497951, + "r2": 0.4876396406335143, + "rmse": 2.2366833214246946 + }, + "validation": { + "mae": 2.2390799875756713, + "max_error": 4.514249004136491, + "r2": 0.40644385780950276, + "rmse": 2.6071902613401856 + } + }, + "score": 0.33436344798759515, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -6.9604794883091925, + -0.4227847714831112 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 7.0, + "expression": "(Cl_rear_s - 2.1822174)*1.48526", + "loss": 4.600272, + "metrics": { + "blind": { + "mae": 1.99197396079096, + "max_error": 5.3669575939066965, + "r2": 0.5563406583784678, + "rmse": 2.393161103167581 + }, + "train": { + "mae": 1.7586489774051852, + "max_error": 5.1083630417259664, + "r2": 0.5288599771507043, + "rmse": 2.144824381241102 + }, + "validation": { + "mae": 2.2481585064268534, + "max_error": 5.397339465147375, + "r2": 0.389362050209497, + "rmse": 2.6444400085664217 + } + }, + "score": 0.027957576279293378, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.402206552022111, + 1.3079699030909944 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s" + ] + }, + { + "expression": "v_c*0.034208246 - 1*(-0.5728301)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4438258388109972, + "max_error": 1.0144658309051993, + "r2": 0.9570368762825233, + "rmse": 0.5241499718207857 + }, + "train": { + "mae": 0.42811256423339034, + "max_error": 1.034756017895484, + "r2": 0.949353221290591, + "rmse": 0.5031480059080171 + }, + "validation": { + "mae": 0.43317549119187543, + "max_error": 0.9187675250838634, + "r2": 0.9508235600908531, + "rmse": 0.5006228900253474 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "0.537584900000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.614155172445679, + "r2": -0.0035947598914403134, + "rmse": 2.533301231692654 + }, + "train": { + "mae": 2.049670015443405, + "max_error": 3.7977808705352785, + "r2": -2.2339530225679027e-10, + "rmse": 2.235732509144254 + }, + "validation": { + "mae": 2.136415574478927, + "max_error": 3.2314192048095705, + "r2": -0.009003038223844628, + "rmse": 2.2676623912269864 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.5375849, + 0.5375849 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "0.034208246*v_c", + "loss": 0.58129114, + "metrics": { + "blind": { + "mae": 0.6272082901552024, + "max_error": 1.2436703898831247, + "r2": 0.9171767831905621, + "rmse": 0.7277524712867426 + }, + "train": { + "mae": 0.6279347377681908, + "max_error": 1.607586117895484, + "r2": 0.8837068815693842, + "rmse": 0.7624245111392222 + }, + "validation": { + "mae": 0.5549408355238133, + "max_error": 1.4915976250838634, + "r2": 0.903692997764587, + "rmse": 0.7005854166209258 + } + }, + "score": 1.0758206067278435, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.3464780318775653, + 2.970557553958058 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_c" + ] + }, + { + "complexity": 6.0, + "expression": "0.034208246*(-Cl_rear_s + v_c)", + "loss": 0.5328401, + "metrics": { + "blind": { + "mae": 0.5840484177051479, + "max_error": 1.17480935927331, + "r2": 0.9271989717250099, + "rmse": 0.6823016138465448 + }, + "train": { + "mae": 0.6039084506331401, + "max_error": 1.5095442833887274, + "r2": 0.8934000034303667, + "rmse": 0.729958948849083 + }, + "validation": { + "mae": 0.5272883045909145, + "max_error": 1.3976929809588392, + "r2": 0.9134272574450397, + "rmse": 0.6642365181006434 + } + }, + "score": 0.04351517686733385, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.2276097241763373, + 2.8657827925131993 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "v_c" + ] + }, + { + "complexity": 7.0, + "expression": "v_c*0.034208246 - 1*(-0.5728301)", + "loss": 0.2531579, + "metrics": { + "blind": { + "mae": 0.4438258388109972, + "max_error": 1.0144658309051993, + "r2": 0.9570368762825233, + "rmse": 0.5241499718207857 + }, + "train": { + "mae": 0.42811256423339034, + "max_error": 1.034756017895484, + "r2": 0.949353221290591, + "rmse": 0.5031480059080171 + }, + "validation": { + "mae": 0.43317549119187543, + "max_error": 0.9187675250838634, + "r2": 0.9508235600908531, + "rmse": 0.5006228900253474 + } + }, + "score": 0.7442079744334557, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.7736479318775653, + 3.543387653958058 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_c" + ] + } + ], + "run": "article-discovery-v2-karman_re200-symmetry-s1-20260718", + "used_features": [ + "v_c" + ] + }, + { + "expression": "(-Cl_F + Cl_T)*0.7221497", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 2.0051955745724888, + "max_error": 4.089586757217883, + "r2": 0.7901559413285015, + "rmse": 2.258450348247221 + }, + "train": { + "mae": 1.6477295144150614, + "max_error": 5.191789545782516, + "r2": 0.7534338397079867, + "rmse": 2.057409309200101 + }, + "validation": { + "mae": 1.3534420527332343, + "max_error": 4.034775429836521, + "r2": 0.8378767125980984, + "rmse": 1.7250837701497157 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_hat_B", + "loss": 935.264, + "metrics": { + "blind": { + "mae": 30.41858489769511, + "max_error": 47.71058189868927, + "r2": -43.86323260076358, + "rmse": 33.02231303446685 + }, + "train": { + "mae": 27.827328515073315, + "max_error": 51.16220510005951, + "r2": -53.47864298254769, + "rmse": 30.58208598854008 + }, + "validation": { + "mae": 28.78901490690306, + "max_error": 44.84466791152954, + "r2": -51.00250178645847, + "rmse": 30.895811544139207 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -42.29918420314789, + 46.549493074417114 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + }, + { + "complexity": 2.0, + "expression": "2.98670000000000", + "loss": 17.167532, + "metrics": { + "blind": { + "mae": 4.194987813302278, + "max_error": 8.352806149291993, + "r2": -5.366328641454032e-07, + "rmse": 4.930174883377342 + }, + "train": { + "mae": 3.3187770254597817, + "max_error": 9.013300000000001, + "r2": -6.312173006506328e-11, + "rmse": 4.14337235958326 + }, + "validation": { + "mae": 3.6407172671012384, + "max_error": 9.013300000000001, + "r2": -0.009094782499435405, + "rmse": 4.303813751808403 + } + }, + "score": 3.997808916877631, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.9867, + 2.9867 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_T", + "loss": 7.871448, + "metrics": { + "blind": { + "mae": 2.0370678328035865, + "max_error": 4.608404110185802, + "r2": 0.7712516335499242, + "rmse": 2.3579859281314874 + }, + "train": { + "mae": 2.1521556351118782, + "max_error": 7.516789857298136, + "r2": 0.5414922471091241, + "rmse": 2.8056100353457007 + }, + "validation": { + "mae": 1.8507355690947942, + "max_error": 4.215013526380062, + "r2": 0.7387148476628552, + "rmse": 2.190003728754536 + } + }, + "score": 0.7797778901580684, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 5.247253458946943, + 5.862631369382143 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 1*1.7105204", + "loss": 7.6759605, + "metrics": { + "blind": { + "mae": 2.970297511391982, + "max_error": 5.910767339435601, + "r2": 0.5088622141865822, + "rmse": 3.455125941649745 + }, + "train": { + "mae": 2.2283320436720886, + "max_error": 6.081739610326672, + "r2": 0.5528792113116066, + "rmse": 2.770552574764245 + }, + "validation": { + "mae": 2.595014475922844, + "max_error": 6.206671708929157, + "r2": 0.4441205928503307, + "rmse": 3.1943152981850944 + } + }, + "score": 0.025148603117188285, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4767045809749604, + 8.34115939747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 5.0, + "expression": "0.127993484073533*Cl_T**2", + "loss": 6.94977, + "metrics": { + "blind": { + "mae": 2.7871256869831402, + "max_error": 6.002885822943536, + "r2": 0.5710728816848204, + "rmse": 3.228895284268075 + }, + "train": { + "mae": 2.1607406123080892, + "max_error": 5.610008348878978, + "r2": 0.5951794303063229, + "rmse": 2.6362418516136885 + }, + "validation": { + "mae": 2.623641336245957, + "max_error": 6.043489145029072, + "r2": 0.46582715710496614, + "rmse": 3.131326771364643 + } + }, + "score": 0.09938486671896739, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0439597736198047, + 12.931983799227734 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_T)*0.7221497", + "loss": 4.232933, + "metrics": { + "blind": { + "mae": 2.0051955745724888, + "max_error": 4.089586757217883, + "r2": 0.7901559413285015, + "rmse": 2.258450348247221 + }, + "train": { + "mae": 1.6477295144150614, + "max_error": 5.191789545782516, + "r2": 0.7534338397079867, + "rmse": 2.057409309200101 + }, + "validation": { + "mae": 1.3534420527332343, + "max_error": 4.034775429836521, + "r2": 0.8378767125980984, + "rmse": 1.7250837701497157 + } + }, + "score": 0.49581343210834994, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.789302511202497, + 4.233697484609904 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s0-20260718", + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "expression": "-Cl_F - 3.835137", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.5971283941938996, + "max_error": 4.669538779491663, + "r2": 0.6980891415245511, + "rmse": 1.9741788135110265 + }, + "train": { + "mae": 1.7644764718324455, + "max_error": 5.894642371991754, + "r2": 0.5017708330989927, + "rmse": 2.2056231555264443 + }, + "validation": { + "mae": 1.459480996470102, + "max_error": 4.42589107931602, + "r2": 0.6894131968447483, + "rmse": 1.8859636712405994 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-3.74074700000000", + "loss": 9.764127, + "metrics": { + "blind": { + "mae": 2.998637965255642, + "max_error": 7.018220926544189, + "r2": -0.0021879820019539142, + "rmse": 3.5968449380025955 + }, + "train": { + "mae": 2.5186205523618885, + "max_error": 7.740747, + "r2": -1.1349809980742975e-11, + "rmse": 3.124760517483303 + }, + "validation": { + "mae": 2.8484629627620994, + "max_error": 7.534225727340698, + "r2": -0.0010187858266368366, + "rmse": 3.3858127603636805 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.740747, + -3.740747 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 3.835137", + "loss": 4.864773, + "metrics": { + "blind": { + "mae": 1.5971283941938996, + "max_error": 4.669538779491663, + "r2": 0.6980891415245511, + "rmse": 1.9741788135110265 + }, + "train": { + "mae": 1.7644764718324455, + "max_error": 5.894642371991754, + "r2": 0.5017708330989927, + "rmse": 2.2056231555264443 + }, + "validation": { + "mae": 1.459480996470102, + "max_error": 4.42589107931602, + "r2": 0.6894131968447483, + "rmse": 1.8859636712405994 + } + }, + "score": 0.3483475523380613, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.639563338523626, + 2.7936785503571033 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s0-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "0.0399635363137924*v_hat_C", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.6684497115993138, + "max_error": 1.780906184864774, + "r2": 0.8909993982275927, + "rmse": 0.8348762170210479 + }, + "train": { + "mae": 0.6913736879664928, + "max_error": 2.0514581548553164, + "r2": 0.855467428177445, + "rmse": 0.8499682575055779 + }, + "validation": { + "mae": 0.6080797267932841, + "max_error": 2.0106636184520483, + "r2": 0.8800318251327308, + "rmse": 0.7819251576469644 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_T", + "loss": 32.459534, + "metrics": { + "blind": { + "mae": 4.7806623067750476, + "max_error": 10.960537321865559, + "r2": -4.3905167706989685, + "rmse": 5.8711454895536415 + }, + "train": { + "mae": 4.778367838215565, + "max_error": 13.117907747626305, + "r2": -5.493855776695942, + "rmse": 5.697327192145364 + }, + "validation": { + "mae": 4.608524857705327, + "max_error": 11.772722974419594, + "r2": -4.959892418533547, + "rmse": 5.5112659745601515 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7661841809749603, + 10.05167979747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 2.0, + "expression": "0.537584070000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.6141543424456786, + "r2": -0.0035947205333335397, + "rmse": 2.5333011820182514 + }, + "train": { + "mae": 2.049670043578998, + "max_error": 3.797780040535278, + "r2": -2.1243562464690058e-10, + "rmse": 2.2357325091320024 + }, + "validation": { + "mae": 2.1364156383250807, + "max_error": 3.23141837480957, + "r2": -0.009003107994261406, + "rmse": 2.267662469629004 + } + }, + "score": 1.8708565384877123, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.53758407, + 0.53758407 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_T*(-0.44916344)", + "loss": 2.0832195, + "metrics": { + "blind": { + "mae": 1.3096708514529893, + "max_error": 3.013763500495851, + "r2": 0.6211168617649865, + "rmse": 1.5565399822268258 + }, + "train": { + "mae": 1.0956631307694424, + "max_error": 3.8614588545864823, + "r2": 0.5832309781093712, + "rmse": 1.4433363758869064 + }, + "validation": { + "mae": 1.3164281149370458, + "max_error": 3.546802176913954, + "r2": 0.5315026163168115, + "rmse": 1.545203721401377 + } + }, + "score": 0.43761156688883956, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.30921880229041, + 4.718008122380003 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_T" + ] + }, + { + "complexity": 5.0, + "expression": "0.0399635363137924*v_hat_C", + "loss": 0.722446, + "metrics": { + "blind": { + "mae": 0.6684497115993138, + "max_error": 1.780906184864774, + "r2": 0.8909993982275927, + "rmse": 0.8348762170210479 + }, + "train": { + "mae": 0.6913736879664928, + "max_error": 2.0514581548553164, + "r2": 0.855467428177445, + "rmse": 0.8499682575055779 + }, + "validation": { + "mae": 0.6080797267932841, + "max_error": 2.0106636184520483, + "r2": 0.8800318251327308, + "rmse": 0.7819251576469644 + } + }, + "score": 1.0590271358605692, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.909498790152749, + 3.470332406982024 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_C" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s0-20260718", + "used_features": [ + "v_hat_C" + ] + }, + { + "expression": "(-Cl_F + Cl_T)*0.802298", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.824305976823742, + "max_error": 4.099529607424047, + "r2": 0.8111907028243428, + "rmse": 2.142268471329624 + }, + "train": { + "mae": 1.6296739970194276, + "max_error": 5.862455809117295, + "r2": 0.7323176985708051, + "rmse": 2.1436989404425 + }, + "validation": { + "mae": 1.2268610807447118, + "max_error": 4.05320819032751, + "r2": 0.8470926942785612, + "rmse": 1.675334787700032 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_T", + "loss": 10.601864, + "metrics": { + "blind": { + "mae": 3.007898118025332, + "max_error": 7.5319707822054625, + "r2": 0.4366542488808024, + "rmse": 3.7004089261568374 + }, + "train": { + "mae": 2.7252668787999537, + "max_error": 7.180802566930652, + "r2": 0.38244691943932074, + "rmse": 3.256050340782676 + }, + "validation": { + "mae": 2.723462588492578, + "max_error": 7.917192108929157, + "r2": 0.3979511337315552, + "rmse": 3.324324114962916 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.7661841809749603, + 10.05167979747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 3.0, + "expression": "-Cl_F + Cl_T", + "loss": 7.871448, + "metrics": { + "blind": { + "mae": 2.0370678328035865, + "max_error": 4.608404110185802, + "r2": 0.7712516335499242, + "rmse": 2.3579859281314874 + }, + "train": { + "mae": 2.1521556351118782, + "max_error": 7.516789857298136, + "r2": 0.5414922471091241, + "rmse": 2.8056100353457007 + }, + "validation": { + "mae": 1.8507355690947942, + "max_error": 4.215013526380062, + "r2": 0.7387148476628552, + "rmse": 2.190003728754536 + } + }, + "score": 0.14889389968745922, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 5.247253458946943, + 5.862631369382143 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 1.7105405", + "loss": 7.675961, + "metrics": { + "blind": { + "mae": 2.970297511391982, + "max_error": 5.910787439435602, + "r2": 0.5088616481819758, + "rmse": 3.4551279325540203 + }, + "train": { + "mae": 2.2283310216381906, + "max_error": 6.081759710326672, + "r2": 0.5528792113032777, + "rmse": 2.7705525747900492 + }, + "validation": { + "mae": 2.5950160220766896, + "max_error": 6.206651608929157, + "r2": 0.44411926230699683, + "rmse": 3.194319121111729 + } + }, + "score": 0.025148537978762573, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4767246809749603, + 8.34113929747057 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_T**2*0.12801749", + "loss": 6.9497695, + "metrics": { + "blind": { + "mae": 2.78694457629302, + "max_error": 6.002694677321016, + "r2": 0.5711041787028159, + "rmse": 3.228777482626542 + }, + "train": { + "mae": 2.160711372083484, + "max_error": 5.609488535788492, + "r2": 0.5951794700316595, + "rmse": 2.6362417222655212 + }, + "validation": { + "mae": 2.623732170833035, + "max_error": 6.044374117696717, + "r2": 0.4658227058012948, + "rmse": 3.1313398181317162 + } + }, + "score": 0.09938500380222266, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.0439680185324318, + 12.934409268417856 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 6.0, + "expression": "(-Cl_F + Cl_T)*0.802298", + "loss": 4.5954456, + "metrics": { + "blind": { + "mae": 1.824305976823742, + "max_error": 4.099529607424047, + "r2": 0.8111907028243428, + "rmse": 2.142268471329624 + }, + "train": { + "mae": 1.6296739970194276, + "max_error": 5.862455809117295, + "r2": 0.7323176985708051, + "rmse": 2.1436989404425 + }, + "validation": { + "mae": 1.2268610807447118, + "max_error": 4.05320819032751, + "r2": 0.8470926942785612, + "rmse": 1.675334787700032 + } + }, + "score": 0.41364276748041057, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.209860955606215, + 4.703577422392555 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "complexity": 7.0, + "expression": "(-Cl_F + Cl_T)*0.69711528531649", + "loss": 4.2338753, + "metrics": { + "blind": { + "mae": 2.075480755656199, + "max_error": 4.086481096396667, + "r2": 0.7791839781721417, + "rmse": 2.3167410773634285 + }, + "train": { + "mae": 1.661619773158796, + "max_error": 4.982306158729229, + "r2": 0.7533789650019348, + "rmse": 2.0576382405547036 + }, + "validation": { + "mae": 1.4248158782538425, + "max_error": 4.033569886815005, + "r2": 0.828713184051983, + "rmse": 1.7731662511637902 + } + }, + "score": 0.0819480058545194, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.657940592161738, + 4.086929939772237 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F", + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s1-20260718", + "used_features": [ + "Cl_F", + "Cl_T" + ] + }, + { + "expression": "Cl_B + 1.4663798", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.4780500723168957, + "max_error": 5.402269719979953, + "r2": 0.3643289137130613, + "rmse": 2.8645957893887553 + }, + "train": { + "mae": 2.2021294305265804, + "max_error": 6.309976833752584, + "r2": 0.275520883814676, + "rmse": 2.659681754450053 + }, + "validation": { + "mae": 2.532532788261515, + "max_error": 5.383991918406677, + "r2": 0.2576609027534701, + "rmse": 2.9157010329789568 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_hat_B", + "loss": 10982.676, + "metrics": { + "blind": { + "mae": 97.0373657003045, + "max_error": 123.00970029830933, + "r2": -741.5972763296515, + "rmse": 97.9092663419157 + }, + "train": { + "mae": 103.75223441099969, + "max_error": 133.1940574645996, + "r2": -1123.7983252662523, + "rmse": 104.79825928886983 + }, + "validation": { + "mae": 100.25041894729321, + "max_error": 125.90315866470337, + "r2": -892.5760618436993, + "rmse": 101.15971251044529 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 66.10040068626404, + 134.5365285873413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_hat_B" + ] + }, + { + "complexity": 2.0, + "expression": "-3.74075580000000", + "loss": 9.764127, + "metrics": { + "blind": { + "mae": 2.9986353252556417, + "max_error": 7.01822972654419, + "r2": -0.0021877528750697817, + "rmse": 3.596844526835262 + }, + "train": { + "mae": 2.5186181659212106, + "max_error": 7.7407558000000005, + "r2": -3.825628702713857e-11, + "rmse": 3.1247605175253406 + }, + "validation": { + "mae": 2.848460480710817, + "max_error": 7.534234527340699, + "r2": -0.001018951835005888, + "rmse": 3.385813041114271 + } + }, + "score": 7.025359241806151, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.7407558, + -3.7407558 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_B + 1.4663798", + "loss": 7.0739064, + "metrics": { + "blind": { + "mae": 2.4780500723168957, + "max_error": 5.402269719979953, + "r2": 0.3643289137130613, + "rmse": 2.8645957893887553 + }, + "train": { + "mae": 2.2021294305265804, + "max_error": 6.309976833752584, + "r2": 0.275520883814676, + "rmse": 2.659681754450053 + }, + "validation": { + "mae": 2.532532788261515, + "max_error": 5.383991918406677, + "r2": 0.2576609027534701, + "rmse": 2.9157010329789568 + } + }, + "score": 0.16115115013344722, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -9.046961254320335, + -0.2568355331860901 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B" + ] + }, + { + "complexity": 6.0, + "expression": "(Cl_B - Cl_F)*0.47073436", + "loss": 5.9092965, + "metrics": { + "blind": { + "mae": 2.1859227262958316, + "max_error": 5.602987833155268, + "r2": 0.4574045313591073, + "rmse": 2.6465810684210593 + }, + "train": { + "mae": 1.976423633414863, + "max_error": 5.733730592206279, + "r2": 0.39479527355593724, + "rmse": 2.4309044801532353 + }, + "validation": { + "mae": 2.2047578933771113, + "max_error": 5.658346907794871, + "r2": 0.38547429271222944, + "rmse": 2.6528448492777077 + } + }, + "score": 0.08994303517193385, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.0727852246416036, + -1.82857962701181 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B", + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s1-20260718", + "used_features": [ + "Cl_B" + ] + }, + { + "expression": "v_hat_B*0.06050576", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.8549838953790576, + "max_error": 2.3749211310019493, + "r2": 0.8205343668529953, + "rmse": 1.0712683878788072 + }, + "train": { + "mae": 0.7788919106141011, + "max_error": 2.3582454585232737, + "r2": 0.8199076856271778, + "rmse": 0.9487841728327023 + }, + "validation": { + "mae": 0.6690514632007147, + "max_error": 2.3052639545699356, + "r2": 0.8410448313521403, + "rmse": 0.9000559091599221 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 10.777925, + "metrics": { + "blind": { + "mae": 3.5525628746196163, + "max_error": 8.509316250681877, + "r2": -1.7044867821496967, + "rmse": 4.158628000209527 + }, + "train": { + "mae": 2.78990506720633, + "max_error": 7.856997657567263, + "r2": -1.1562315308800346, + "rmse": 3.282974716097005 + }, + "validation": { + "mae": 3.0647510544643946, + "max_error": 7.6040208786726, + "r2": -1.4904177655001756, + "rmse": 3.5626098418254135 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.8385177720338106, + 7.871423847973347 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "0.537585000000000", + "loss": 4.998499, + "metrics": { + "blind": { + "mae": 2.4040077328681946, + "max_error": 3.6141552724456787, + "r2": -0.0035947646333955863, + "rmse": 2.5333012376775406 + }, + "train": { + "mae": 2.0496700120535745, + "max_error": 3.7977809705352783, + "r2": -2.2473467531369806e-10, + "rmse": 2.235732509145751 + }, + "validation": { + "mae": 2.1364155667866194, + "max_error": 3.2314193048095703, + "r2": -0.009003029817788777, + "rmse": 2.267662381780981 + } + }, + "score": 0.7683623935026234, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.537585, + 0.537585 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "v_hat_B*0.06050576", + "loss": 0.90019137, + "metrics": { + "blind": { + "mae": 0.8549838953790576, + "max_error": 2.3749211310019493, + "r2": 0.8205343668529953, + "rmse": 1.0712683878788072 + }, + "train": { + "mae": 0.7788919106141011, + "max_error": 2.3582454585232737, + "r2": 0.8199076856271778, + "rmse": 0.9487841728327023 + }, + "validation": { + "mae": 0.6690514632007147, + "max_error": 2.3052639545699356, + "r2": 0.8410448313521403, + "rmse": 0.9000559091599221 + } + }, + "score": 0.8571427861464082, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.559344287591457, + 2.816512456082344 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + }, + { + "complexity": 5.0, + "expression": "v_hat_B*0.0612489984646225", + "loss": 0.88252026, + "metrics": { + "blind": { + "mae": 0.8411887202912804, + "max_error": 2.364313036978733, + "r2": 0.8246117484478147, + "rmse": 1.059029093294394 + }, + "train": { + "mae": 0.7713126856039264, + "max_error": 2.344621632518068, + "r2": 0.82344296945152, + "rmse": 0.9394255111223344 + }, + "validation": { + "mae": 0.6557283745990404, + "max_error": 2.3027620287910056, + "r2": 0.8451081614314835, + "rmse": 0.888477487272526 + } + }, + "score": 0.01982562800336659, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5907826683133894, + 2.8511098298439297 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + }, + { + "complexity": 6.0, + "expression": "(v_hat_B + v_hat_B)*0.03859856", + "loss": 0.71514493, + "metrics": { + "blind": { + "mae": 0.6870863722079728, + "max_error": 2.2855358279093503, + "r2": 0.8753329866213144, + "rmse": 0.8928601075895004 + }, + "train": { + "mae": 0.7040052357566163, + "max_error": 2.052286879609108, + "r2": 0.8569280778486466, + "rmse": 0.8456624513378407 + }, + "validation": { + "mae": 0.5497956884754169, + "max_error": 2.249076679748774, + "r2": 0.8876799859057941, + "rmse": 0.756590240852266 + } + }, + "score": 0.21029652459703504, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.2653751988325115, + 3.5934868028049465 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + } + ], + "run": "article-discovery-v2-karman_re200-raw_complete-s1-20260718", + "used_features": [ + "v_hat_B" + ] + } + ], + "n_head_fits": 18 + }, + "karman_re400": { + "feature_frequency": { + "Cd_B": 3, + "Cd_T": 2, + "Cd_rear_a": 2, + "Cl_F": 4, + "Cl_T": 2, + "Cl_rear_s": 12, + "Cl_tot": 12, + "u_a": 4 + }, + "fits": [ + { + "expression": "Cl_rear_s - Cl_tot - 1*(-2.213921)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.2755299445953692, + "max_error": 3.1184842151464816, + "r2": 0.767989526151351, + "rmse": 1.5104572582637101 + }, + "train": { + "mae": 1.3529698304257134, + "max_error": 4.932562373770025, + "r2": 0.7206508486255898, + "rmse": 1.6847998124918837 + }, + "validation": { + "mae": 1.2253899443191987, + "max_error": 3.1730710996612013, + "r2": 0.7762274041086467, + "rmse": 1.4643191914463538 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "2.62159370000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908343366708182, + "max_error": 4.670797123364258, + "r2": -0.0071771837939811345, + "rmse": 3.147078560667099 + }, + "train": { + "mae": 2.92106644735411, + "max_error": 5.319190754345703, + "r2": -6.429123899920342e-11, + "rmse": 3.1876793373676775 + }, + "validation": { + "mae": 2.862607467126175, + "max_error": 4.659857525280762, + "r2": -0.013551756264030823, + "rmse": 3.1164148818712865 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215937, + 2.6215937 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "2.6215758 - Cl_F", + "loss": 4.6083293, + "metrics": { + "blind": { + "mae": 1.908491506632004, + "max_error": 3.569998557908702, + "r2": 0.5467777045378612, + "rmse": 2.1111071564010846 + }, + "train": { + "mae": 1.910481589044923, + "max_error": 4.506844149666149, + "r2": 0.5464823437893013, + "rmse": 2.146701832870287 + }, + "validation": { + "mae": 1.9225471843906543, + "max_error": 3.7227720853372097, + "r2": 0.5343706628442977, + "rmse": 2.1122847909909384 + } + }, + "score": 0.39536035398463093, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.6383889790193558, + 9.026098606406022 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*(-2.213921)", + "loss": 2.8385503, + "metrics": { + "blind": { + "mae": 1.2755299445953692, + "max_error": 3.1184842151464816, + "r2": 0.767989526151351, + "rmse": 1.5104572582637101 + }, + "train": { + "mae": 1.3529698304257134, + "max_error": 4.932562373770025, + "r2": 0.7206508486255898, + "rmse": 1.6847998124918837 + }, + "validation": { + "mae": 1.2253899443191987, + "max_error": 3.1730710996612013, + "r2": 0.7762274041086467, + "rmse": 1.4643191914463538 + } + }, + "score": 0.24228595970756947, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.13409212486064437, + 5.71395626546061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F*(-0.6569848) - 1*(-2.533426)", + "loss": 2.502614, + "metrics": { + "blind": { + "mae": 1.3206681901676227, + "max_error": 3.163523516475059, + "r2": 0.748315077631081, + "rmse": 1.5731974887997946 + }, + "train": { + "mae": 1.2895264356909288, + "max_error": 4.242869309296062, + "r2": 0.7537112132910557, + "rmse": 1.581965277537945 + }, + "validation": { + "mae": 1.2427061096977319, + "max_error": 3.2228470921425374, + "r2": 0.7721975516596017, + "rmse": 1.477445596703377 + } + }, + "score": 0.12595767848350647, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.579275708351076, + 6.741100135062098 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "-0.2682599*(Cd_rear_a - 1*0.7119804)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2729105290933312, + "max_error": 0.5534815064043161, + "r2": 0.9363418710292042, + "rmse": 0.31021016822394026 + }, + "train": { + "mae": 0.30008299642334907, + "max_error": 0.8272692467555527, + "r2": 0.9142783816412453, + "rmse": 0.3597306029629161 + }, + "validation": { + "mae": 0.2729342924176888, + "max_error": 0.5442857986780238, + "r2": 0.9311555963691932, + "rmse": 0.3038660884073519 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134323540000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895633516045531, + "r2": -0.008165956759142556, + "rmse": 1.2345114106961088 + }, + "train": { + "mae": 1.1050602150968036, + "max_error": 2.0743397178916014, + "r2": -1.5780421414035573e-10, + "rmse": 1.2286613726115903 + }, + "validation": { + "mae": 1.053683138872213, + "max_error": 1.7522737083168944, + "r2": -0.039432282898578475, + "rmse": 1.1807175397013892 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013432354, + -0.013432354 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.042408347", + "loss": 0.4519814, + "metrics": { + "blind": { + "mae": 0.813586543020139, + "max_error": 1.3910949190707593, + "r2": 0.4797890789250051, + "rmse": 0.8867859977204867 + }, + "train": { + "mae": 0.5660871312071853, + "max_error": 1.5464987342679084, + "r2": 0.7005969931280094, + "rmse": 0.6722956227971508 + }, + "validation": { + "mae": 0.8535760498650665, + "max_error": 1.424967352069816, + "r2": 0.35890436759481037, + "rmse": 0.9272766488995434 + } + }, + "score": 0.6029823311842033, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7539802798561692, + 2.5978937031332308 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 7.0, + "expression": "-0.2682599*(Cd_rear_a - 1*0.7119804)", + "loss": 0.1294061, + "metrics": { + "blind": { + "mae": 0.2729105290933312, + "max_error": 0.5534815064043161, + "r2": 0.9363418710292042, + "rmse": 0.31021016822394026 + }, + "train": { + "mae": 0.30008299642334907, + "max_error": 0.8272692467555527, + "r2": 0.9142783816412453, + "rmse": 0.3597306029629161 + }, + "validation": { + "mae": 0.2729342924176888, + "max_error": 0.5442857986780238, + "r2": 0.9311555963691932, + "rmse": 0.3038660884073519 + } + }, + "score": 0.4168951689793953, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.717928398774878, + 2.423205664335203 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*2.3353596", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.2510060677422536, + "max_error": 3.305789191834545, + "r2": 0.6905846859243807, + "rmse": 1.5402550813103861 + }, + "train": { + "mae": 1.3495174179740683, + "max_error": 5.9227270870817925, + "r2": 0.6335285627804531, + "rmse": 1.7026637477024036 + }, + "validation": { + "mae": 1.263171385450738, + "max_error": 3.488706164155072, + "r2": 0.6946646282441555, + "rmse": 1.5681887111977686 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 17.19205, + "metrics": { + "blind": { + "mae": 2.720237749362423, + "max_error": 7.639943297486752, + "r2": -0.7201762537462626, + "rmse": 3.6316854153749443 + }, + "train": { + "mae": 3.187765304700144, + "max_error": 9.732513713650405, + "r2": -1.1732518346275844, + "rmse": 4.146329877276113 + }, + "validation": { + "mae": 2.9314079958279855, + "max_error": 7.841783597599715, + "r2": -0.9505947222473161, + "rmse": 3.9636316391931063 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.2260747868567705, + 3.1508038518950343 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521160000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432287179861, + "max_error": 3.7753148091491697, + "r2": -0.01595614682321611, + "rmse": 2.790996095970965 + }, + "train": { + "mae": 2.5900422881673064, + "max_error": 4.669188500708008, + "r2": -4.871880676660112e-12, + "rmse": 2.8126055127156238 + }, + "validation": { + "mae": 2.692108148022383, + "max_error": 3.766448499029541, + "r2": -0.012234470888502491, + "rmse": 2.855290664912694 + } + }, + "score": 0.7762246001032266, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952116, + -2.4952116 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_tot - 2.5485299", + "loss": 6.2971563, + "metrics": { + "blind": { + "mae": 1.7029901163345862, + "max_error": 3.7573635190208794, + "r2": 0.4829200623297367, + "rmse": 1.9911344742924055 + }, + "train": { + "mae": 2.0644126064997086, + "max_error": 8.097680332809256, + "r2": 0.2039746660452325, + "rmse": 2.509413721886488 + }, + "validation": { + "mae": 1.8427386461340525, + "max_error": 4.019179345895106, + "r2": 0.452045784418171, + "rmse": 2.1007864147039568 + } + }, + "score": 0.11406215851007544, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -9.647178597137833, + 4.086449608817196 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_tot" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s - 1*2.41165401309001", + "loss": 5.070277, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.547509712048049, + "r2": 0.28041368704902747, + "rmse": 2.348892790651724 + }, + "train": { + "mae": 2.02033603354626, + "max_error": 4.149575610764151, + "r2": 0.35906491030345355, + "rmse": 2.2517275842069915 + }, + "validation": { + "mae": 2.0545208999461226, + "max_error": 3.587903099946852, + "r2": 0.34736661699343185, + "rmse": 2.29268508879271 + } + }, + "score": 0.2167026993229283, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.546598256446595, + 2.607165808908467 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*2.3353596", + "loss": 2.8990638, + "metrics": { + "blind": { + "mae": 1.2510060677422536, + "max_error": 3.305789191834545, + "r2": 0.6905846859243807, + "rmse": 1.5402550813103861 + }, + "train": { + "mae": 1.3495174179740683, + "max_error": 5.9227270870817925, + "r2": 0.6335285627804531, + "rmse": 1.7026637477024036 + }, + "validation": { + "mae": 1.263171385450738, + "max_error": 3.488706164155072, + "r2": 0.6946646282441555, + "rmse": 1.5681887111977686 + } + }, + "score": 0.5590075939329512, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.415188475139356, + 1.1646756654606105 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*(-2.3938527)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.2208094649827292, + "max_error": 3.2984159151464816, + "r2": 0.7754975781867444, + "rmse": 1.4858164425108333 + }, + "train": { + "mae": 1.3085449666788695, + "max_error": 4.752630673770025, + "r2": 0.72858196861815, + "rmse": 1.6607106677877295 + }, + "validation": { + "mae": 1.1510649598368563, + "max_error": 3.3530027996612013, + "r2": 0.7907998177604689, + "rmse": 1.4158372478930847 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 15.183542, + "metrics": { + "blind": { + "mae": 3.363853280546027, + "max_error": 7.699157832190394, + "r2": -0.5912875987412041, + "rmse": 3.955751341592366 + }, + "train": { + "mae": 3.277273721721169, + "max_error": 7.754033166915178, + "r2": -0.49425203351840863, + "rmse": 3.89660653987248 + }, + "validation": { + "mae": 3.433332153157188, + "max_error": 7.321317885071039, + "r2": -0.6878084693295914, + "rmse": 4.021553820325949 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.010679967701435, + 7.418640423566103 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "2.62157320000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908353616708182, + "max_error": 4.6708176233642575, + "r2": -0.007178291496138467, + "rmse": 3.1470802912587015 + }, + "train": { + "mae": 2.921066099896483, + "max_error": 5.319211254345703, + "r2": -2.51909604287448e-12, + "rmse": 3.1876793372692225 + }, + "validation": { + "mae": 2.8626079927672006, + "max_error": 4.6598780252807614, + "r2": -0.013553298183515139, + "rmse": 3.1164172523762805 + } + }, + "score": 0.4016259865997008, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215732, + 2.6215732 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 9.129955, + "metrics": { + "blind": { + "mae": 2.622986019572818, + "max_error": 4.889133624732494, + "r2": 0.13665652238125992, + "rmse": 2.913710849469257 + }, + "train": { + "mae": 2.6856006253821483, + "max_error": 7.146483373770025, + "r2": 0.10149730483339814, + "rmse": 3.0215815459067383 + }, + "validation": { + "mae": 2.783640778826502, + "max_error": 4.973117732908577, + "r2": 0.04383618665933464, + "rmse": 3.0269026673471604 + } + }, + "score": 0.10702532569453102, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0798288751393557, + 3.5000352654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "3.130229 - Cl_F", + "loss": 5.00354, + "metrics": { + "blind": { + "mae": 1.9900333357343043, + "max_error": 4.078651757908702, + "r2": 0.5011140801867573, + "rmse": 2.2149058407140387 + }, + "train": { + "mae": 1.966617911453936, + "max_error": 5.015497349666148, + "r2": 0.5075885776481766, + "rmse": 2.236859398334498 + }, + "validation": { + "mae": 1.9129208970265152, + "max_error": 4.23142528533721, + "r2": 0.5297271467371938, + "rmse": 2.1227911047736714 + } + }, + "score": 0.6014151038682609, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.129735779019356, + 9.534751806406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "2.61131734904041 - Cl_F", + "loss": 4.6056814, + "metrics": { + "blind": { + "mae": 1.9069527389880654, + "max_error": 3.559740106949112, + "r2": 0.5471573077539751, + "rmse": 2.1102228762728723 + }, + "train": { + "mae": 1.9096122287941102, + "max_error": 4.496585698706559, + "r2": 0.5467428752334238, + "rmse": 2.146085138385904 + }, + "validation": { + "mae": 1.922810221594747, + "max_error": 3.7125136343776197, + "r2": 0.5339087787238634, + "rmse": 2.113332178793874 + } + }, + "score": 0.08285503356122426, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.6486474299789458, + 9.015840155446432 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*(-2.3938527)", + "loss": 2.7579598, + "metrics": { + "blind": { + "mae": 1.2208094649827292, + "max_error": 3.2984159151464816, + "r2": 0.7754975781867444, + "rmse": 1.4858164425108333 + }, + "train": { + "mae": 1.3085449666788695, + "max_error": 4.752630673770025, + "r2": 0.72858196861815, + "rmse": 1.6607106677877295 + }, + "validation": { + "mae": 1.1510649598368563, + "max_error": 3.3530027996612013, + "r2": 0.7907998177604689, + "rmse": 1.4158372478930847 + } + }, + "score": 0.5127994248737797, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.3140238248606444, + 5.8938879654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "u_a*0.04777057", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.7925490183237807, + "max_error": 1.3553333600861728, + "r2": 0.49552772765665365, + "rmse": 0.8732683992874666 + }, + "train": { + "mae": 0.5566115746979067, + "max_error": 1.5402477034856676, + "r2": 0.7095386266334591, + "rmse": 0.6621805162411314 + }, + "validation": { + "mae": 0.8431856691617988, + "max_error": 1.4136953324948847, + "r2": 0.36265865624082505, + "rmse": 0.9245575726717673 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_a", + "loss": 426.11127, + "metrics": { + "blind": { + "mae": 13.34319668225944, + "max_error": 30.741247236728668, + "r2": -161.25589727673974, + "rmse": 15.661355202811817 + }, + "train": { + "mae": 16.8524036591841, + "max_error": 59.49045713245869, + "r2": -281.26605371406964, + "rmse": 20.64246375031093 + }, + "validation": { + "mae": 12.996848466973274, + "max_error": 32.82349652051926, + "r2": -167.0321085391632, + "rmse": 15.012190014837994 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -41.35931730270386, + 61.25901825726032 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.0134123950000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895833106045532, + "r2": -0.008168890908549109, + "rmse": 1.2345132071455245 + }, + "train": { + "mae": 1.1050598768086677, + "max_error": 2.0743392319683838, + "r2": -1.3560930156586437e-11, + "rmse": 1.2286613725229774 + }, + "validation": { + "mae": 1.053685697718367, + "max_error": 1.7522936673168945, + "r2": -0.0394391277758499, + "rmse": 1.1807214273299913 + } + }, + "score": 5.642850097417103, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013412395, + -0.013412395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.04777057", + "loss": 0.43848303, + "metrics": { + "blind": { + "mae": 0.7925490183237807, + "max_error": 1.3553333600861728, + "r2": 0.49552772765665365, + "rmse": 0.8732683992874666 + }, + "train": { + "mae": 0.5566115746979067, + "max_error": 1.5402477034856676, + "r2": 0.7095386266334591, + "rmse": 0.6621805162411314 + }, + "validation": { + "mae": 0.8431856691617988, + "max_error": 1.4136953324948847, + "r2": 0.36265865624082505, + "rmse": 0.9245575726717673 + } + }, + "score": 0.6181422899810566, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.9757581623610256, + 2.9263782197897323 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s0-20260718", + "used_features": [ + "u_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*2.0656142", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.3402769290537544, + "max_error": 3.0360437918345453, + "r2": 0.6678464189823687, + "rmse": 1.5958468745098728 + }, + "train": { + "mae": 1.4173269365776728, + "max_error": 5.652981687081793, + "r2": 0.6070363627796147, + "rmse": 1.7631327241040575 + }, + "validation": { + "mae": 1.3300093312300907, + "max_error": 3.218960764155072, + "r2": 0.6765219954423487, + "rmse": 1.6141063340094688 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 12.544421, + "metrics": { + "blind": { + "mae": 2.8684347361078837, + "max_error": 6.3771596774458885, + "r2": -0.5406305792338024, + "rmse": 3.436932514805208 + }, + "train": { + "mae": 3.008694631994161, + "max_error": 7.889390256255865, + "r2": -0.5857438481503101, + "rmse": 3.5418106643670146 + }, + "validation": { + "mae": 3.182659452084082, + "max_error": 5.969889731146395, + "r2": -0.6944867156826684, + "rmse": 3.6942718296402592 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.321071742102504, + 7.115950575098395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521160000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432287179861, + "max_error": 3.7753148091491697, + "r2": -0.01595614682321611, + "rmse": 2.790996095970965 + }, + "train": { + "mae": 2.5900422881673064, + "max_error": 4.669188500708008, + "r2": -4.871880676660112e-12, + "rmse": 2.8126055127156238 + }, + "validation": { + "mae": 2.692108148022383, + "max_error": 3.766448499029541, + "r2": -0.012234470888502491, + "rmse": 2.855290664912694 + } + }, + "score": 0.46105355734490117, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952116, + -2.4952116 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 1*2.5349655", + "loss": 5.054905, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.6708211989580395, + "r2": 0.2722652745791272, + "rmse": 2.3621544857253993 + }, + "train": { + "mae": 2.013348879064355, + "max_error": 4.02626412385416, + "r2": 0.36100802225398165, + "rmse": 2.248311731291436 + }, + "validation": { + "mae": 2.0668845619370004, + "max_error": 3.7112145868568422, + "r2": 0.33413055471269004, + "rmse": 2.3158173723013027 + } + }, + "score": 0.22393170427017814, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.669909743356586, + 2.4838543219984768 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*2.0656142", + "loss": 3.108637, + "metrics": { + "blind": { + "mae": 1.3402769290537544, + "max_error": 3.0360437918345453, + "r2": 0.6678464189823687, + "rmse": 1.5958468745098728 + }, + "train": { + "mae": 1.4173269365776728, + "max_error": 5.652981687081793, + "r2": 0.6070363627796147, + "rmse": 1.7631327241040575 + }, + "validation": { + "mae": 1.3300093312300907, + "max_error": 3.218960764155072, + "r2": 0.6765219954423487, + "rmse": 1.6141063340094688 + } + }, + "score": 0.24308734628094714, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.145443075139356, + 1.4344210654606102 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot + 2.527837", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.1806141749827292, + "max_error": 3.4324002151464814, + "r2": 0.7768111869604954, + "rmse": 1.481463159928899 + }, + "train": { + "mae": 1.2806867026071551, + "max_error": 4.618646373770025, + "r2": 0.7303485798201136, + "rmse": 1.6552972109200392 + }, + "validation": { + "mae": 1.1064035265035226, + "max_error": 3.486987099661201, + "r2": 0.7972616408363717, + "rmse": 1.393799383056294 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 13.496986, + "metrics": { + "blind": { + "mae": 3.1259986830409616, + "max_error": 7.124041182920337, + "r2": -0.5341537178900584, + "rmse": 3.8840882004039416 + }, + "train": { + "mae": 2.9146646192475907, + "max_error": 7.397327907383442, + "r2": -0.3282736960013657, + "rmse": 3.6738245629120185 + }, + "validation": { + "mae": 3.335230086643535, + "max_error": 7.214824199676514, + "r2": -0.6722606116507828, + "rmse": 4.002987966695086 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.1349442433565855, + 5.018819821998477 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "2.62157460000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.890835291670818, + "max_error": 4.670816223364257, + "r2": -0.007178215845467184, + "rmse": 3.14708017306774 + }, + "train": { + "mae": 2.9210661236252955, + "max_error": 5.3192098543457025, + "r2": -4.106048834273679e-12, + "rmse": 3.187679337271752 + }, + "validation": { + "mae": 2.862607956869765, + "max_error": 4.659876625280761, + "r2": -0.013553192878906106, + "rmse": 3.116417090483902 + } + }, + "score": 0.283880309775938, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215746, + 2.6215746 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 9.129955, + "metrics": { + "blind": { + "mae": 2.622986019572818, + "max_error": 4.889133624732494, + "r2": 0.13665652238125992, + "rmse": 2.913710849469257 + }, + "train": { + "mae": 2.6856006253821483, + "max_error": 7.146483373770025, + "r2": 0.10149730483339814, + "rmse": 3.0215815459067383 + }, + "validation": { + "mae": 2.783640778826502, + "max_error": 4.973117732908577, + "r2": 0.04383618665933464, + "rmse": 3.0269026673471604 + } + }, + "score": 0.10702532569453102, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0798288751393557, + 3.5000352654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "2.4874291 - Cl_F", + "loss": 4.590328, + "metrics": { + "blind": { + "mae": 1.888369501632004, + "max_error": 3.435851857908702, + "r2": 0.5500516075208732, + "rmse": 2.1034684248310227 + }, + "train": { + "mae": 1.9022790779471612, + "max_error": 4.372697449666148, + "r2": 0.5482536968795856, + "rmse": 2.142505428202377 + }, + "validation": { + "mae": 1.9259868433650134, + "max_error": 3.5886253853372097, + "r2": 0.5265963571570702, + "rmse": 2.129845506935646 + } + }, + "score": 0.6876092845742764, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.772535679019356, + 8.891951906406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot + 2.527837", + "loss": 2.7400086, + "metrics": { + "blind": { + "mae": 1.1806141749827292, + "max_error": 3.4324002151464814, + "r2": 0.7768111869604954, + "rmse": 1.481463159928899 + }, + "train": { + "mae": 1.2806867026071551, + "max_error": 4.618646373770025, + "r2": 0.7303485798201136, + "rmse": 1.6552972109200392 + }, + "validation": { + "mae": 1.1064035265035226, + "max_error": 3.486987099661201, + "r2": 0.7972616408363717, + "rmse": 1.393799383056294 + } + }, + "score": 0.25799521106656803, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.44800812486064423, + 6.02787226546061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "2.6337664 - 0.5651944*Cl_F", + "loss": 2.6598601, + "metrics": { + "blind": { + "mae": 1.3842499648009514, + "max_error": 3.2334565127882353, + "r2": 0.7331511643474851, + "rmse": 1.619896626634004 + }, + "train": { + "mae": 1.3464571127814537, + "max_error": 4.296159168137576, + "r2": 0.7382362286772759, + "rmse": 1.6309077514193777 + }, + "validation": { + "mae": 1.2545942095061848, + "max_error": 3.2818635564896868, + "r2": 0.767260755745036, + "rmse": 1.4933689394168923 + } + }, + "score": 0.029687531655651335, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9043306372989774, + 6.253566824852967 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "u_a*0.047770567", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.792549026468526, + "max_error": 1.3553333800936729, + "r2": 0.4955277217542605, + "rmse": 0.8732684043961452 + }, + "train": { + "mae": 0.5566115747262482, + "max_error": 1.5402477069829286, + "r2": 0.70953862663347, + "rmse": 0.662180516241119 + }, + "validation": { + "mae": 0.843185672421323, + "max_error": 1.41369525890418, + "r2": 0.3626586571053291, + "rmse": 0.924557572044722 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134232600000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895724456045533, + "r2": -0.008167293592157288, + "rmse": 1.2345122291799373 + }, + "train": { + "mae": 1.1050600609612102, + "max_error": 2.0743306238916017, + "r2": -2.6630253557868855e-11, + "rmse": 1.228661372531006 + }, + "validation": { + "mae": 1.053684304769649, + "max_error": 1.7522828023168946, + "r2": -0.03943540158406056, + "rmse": 1.1807193109970993 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.01342326, + -0.01342326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.047770567", + "loss": 0.43848303, + "metrics": { + "blind": { + "mae": 0.792549026468526, + "max_error": 1.3553333800936729, + "r2": 0.4955277217542605, + "rmse": 0.8732684043961452 + }, + "train": { + "mae": 0.5566115747262482, + "max_error": 1.5402477069829286, + "r2": 0.70953862663347, + "rmse": 0.662180516241119 + }, + "validation": { + "mae": 0.843185672421323, + "max_error": 1.41369525890418, + "r2": 0.3626586571053291, + "rmse": 0.924557572044722 + } + }, + "score": 0.6181422899810566, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.975758038283074, + 2.9263780360126774 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 7.0, + "expression": "-0.22265555*(Cd_rear_a - 2.1157632)", + "loss": 0.41677454, + "metrics": { + "blind": { + "mae": 0.5597545800863513, + "max_error": 1.0831070856676421, + "r2": 0.7259030764264068, + "rmse": 0.6436965402824143 + }, + "train": { + "mae": 0.5537463594057348, + "max_error": 1.3419679876102468, + "r2": 0.7239188465943218, + "rmse": 0.6455807694984669 + }, + "validation": { + "mae": 0.580474118022863, + "max_error": 1.0644880352826773, + "r2": 0.6832494771086401, + "rmse": 0.6517883362160121 + } + }, + "score": 0.016925235609630964, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1133194701055895, + 2.323819224293051 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s1-20260718", + "used_features": [ + "u_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 2.5888972", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.218866819110669, + "max_error": 3.559326791834545, + "r2": 0.6946531499789537, + "rmse": 1.5300952605635216 + }, + "train": { + "mae": 1.3270261602676514, + "max_error": 6.176264687081792, + "r2": 0.6416578719692014, + "rmse": 1.6836730403923057 + }, + "validation": { + "mae": 1.2223595461132464, + "max_error": 3.742243764155072, + "r2": 0.6952446526704492, + "rmse": 1.5666985134960223 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 64.219315, + "metrics": { + "blind": { + "mae": 7.071967412205413, + "max_error": 12.342433592304587, + "r2": -6.613319870329023, + "rmse": 7.640271405462806 + }, + "train": { + "mae": 7.417815929255547, + "max_error": 13.616677049547434, + "r2": -7.11798090585588, + "rmse": 8.013695501130307 + }, + "validation": { + "mae": 7.217908509481603, + "max_error": 12.146136071532965, + "r2": -6.6175326392721505, + "rmse": 7.832797986585039 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.609025668585673, + 8.424736792221665 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521260000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432387179861, + "max_error": 3.77531380914917, + "r2": -0.01595623806061197, + "rmse": 2.7909962212929145 + }, + "train": { + "mae": 2.5900423220656115, + "max_error": 4.6691875007080075, + "r2": -3.4285907446474084e-12, + "rmse": 2.812605512713594 + }, + "validation": { + "mae": 2.6921082762275113, + "max_error": 3.766447499029541, + "r2": -0.012234548838035098, + "rmse": 2.85529077485193 + } + }, + "score": 2.0940815545832248, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952126, + -2.4952126 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 2.6249537", + "loss": 5.062883, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.760809398958039, + "r2": 0.26381545029302644, + "rmse": 2.3758285517349487 + }, + "train": { + "mae": 2.0087732078779146, + "max_error": 4.111411532157612, + "r2": 0.3599996578910566, + "rmse": 2.250085011552875 + }, + "validation": { + "mae": 2.0784215106549495, + "max_error": 3.801202786856842, + "r2": 0.322088185209798, + "rmse": 2.336664526788717 + } + }, + "score": 0.22314319183510378, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.759897943356585, + 2.393866121998477 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 2.5888972", + "loss": 2.8347545, + "metrics": { + "blind": { + "mae": 1.218866819110669, + "max_error": 3.559326791834545, + "r2": 0.6946531499789537, + "rmse": 1.5300952605635216 + }, + "train": { + "mae": 1.3270261602676514, + "max_error": 6.176264687081792, + "r2": 0.6416578719692014, + "rmse": 1.6836730403923057 + }, + "validation": { + "mae": 1.2223595461132464, + "max_error": 3.742243764155072, + "r2": 0.6952446526704492, + "rmse": 1.5666985134960223 + } + }, + "score": 0.28999037329093796, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.668726075139356, + 0.9111380654606105 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v3-karman_re400-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "(Cd_T + Cl_T)*0.6119776441", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.9510929967296496, + "max_error": 2.6759884360655466, + "r2": 0.8415518211307527, + "rmse": 1.248240504207712 + }, + "train": { + "mae": 1.1036517539700872, + "max_error": 4.119687132659115, + "r2": 0.8012103045777732, + "rmse": 1.4212535467239031 + }, + "validation": { + "mae": 0.9825677215525744, + "max_error": 2.4644200714451614, + "r2": 0.8237130444133063, + "rmse": 1.2996978280392613 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "2.62157500000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908352716708183, + "max_error": 4.670815823364258, + "r2": -0.007178194231062696, + "rmse": 3.1470801392990073 + }, + "train": { + "mae": 2.921066130404957, + "max_error": 5.319209454345703, + "r2": -4.630296146501678e-12, + "rmse": 3.1876793372725873 + }, + "validation": { + "mae": 2.862607946613355, + "max_error": 4.659876225280762, + "r2": -0.013553162791950069, + "rmse": 3.1164170442290504 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.621575, + 2.621575 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_T - 2.3272831", + "loss": 7.3166456, + "metrics": { + "blind": { + "mae": 2.3865860195830466, + "max_error": 4.2669721350461485, + "r2": 0.2842788495694747, + "rmse": 2.652934762996533 + }, + "train": { + "mae": 2.352713571841656, + "max_error": 5.9295468882113935, + "r2": 0.27994981135518915, + "rmse": 2.7049298813570255 + }, + "validation": { + "mae": 2.292249431398814, + "max_error": 4.208171457758522, + "r2": 0.30486722182039283, + "rmse": 2.5808703489705924 + } + }, + "score": 0.1642170599526365, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.916938357295817, + 11.116273514220143 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_T" + ] + }, + { + "complexity": 6.0, + "expression": "(Cd_T + Cl_T)*0.78229", + "loss": 4.458467, + "metrics": { + "blind": { + "mae": 1.72609764658297, + "max_error": 3.3017621652089293, + "r2": 0.6459876369701307, + "rmse": 1.865794718634497 + }, + "train": { + "mae": 1.9038365952706786, + "max_error": 5.211022163622547, + "r2": 0.5612305712185137, + "rmse": 2.1115083713786937 + }, + "validation": { + "mae": 1.8318262736825612, + "max_error": 3.1331198970017433, + "r2": 0.5964125671158589, + "rmse": 1.966532469957175 + } + }, + "score": 0.24767349330245683, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -9.494498669369495, + 15.38123972545378 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_T", + "Cl_T" + ] + }, + { + "complexity": 7.0, + "expression": "(Cd_T + Cl_T)*0.6119776441", + "loss": 2.0199616, + "metrics": { + "blind": { + "mae": 0.9510929967296496, + "max_error": 2.6759884360655466, + "r2": 0.8415518211307527, + "rmse": 1.248240504207712 + }, + "train": { + "mae": 1.1036517539700872, + "max_error": 4.119687132659115, + "r2": 0.8012103045777732, + "rmse": 1.4212535467239031 + }, + "validation": { + "mae": 0.9825677215525744, + "max_error": 2.4644200714451614, + "r2": 0.8237130444133063, + "rmse": 1.2996978280392613 + } + }, + "score": 0.7917264836415085, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.427451364061062, + 12.032590024825238 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_T", + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s2-20260718", + "used_features": [ + "Cd_T", + "Cl_T" + ] + }, + { + "expression": "Cd_B*0.26925227", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.26446959824140864, + "max_error": 0.5729618670108308, + "r2": 0.9410224668736117, + "rmse": 0.29858803172699244 + }, + "train": { + "mae": 0.3483295784457812, + "max_error": 1.157056347641619, + "r2": 0.8853428405043051, + "rmse": 0.4160378027585599 + }, + "validation": { + "mae": 0.28241133568146687, + "max_error": 0.5108660223345993, + "r2": 0.927306023420118, + "rmse": 0.31224617543360145 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134101260000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895855796045533, + "r2": -0.008169224504967376, + "rmse": 1.2345134113916354 + }, + "train": { + "mae": 1.1050598383510408, + "max_error": 2.0743415009683837, + "r2": -3.057243347370786e-11, + "rmse": 1.2286613725334279 + }, + "validation": { + "mae": 1.0536859886158034, + "max_error": 1.7522959363168946, + "r2": -0.039439905959981036, + "rmse": 1.1807218693080166 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013410126, + -0.013410126 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_B*0.26925227", + "loss": 0.17308743, + "metrics": { + "blind": { + "mae": 0.26446959824140864, + "max_error": 0.5729618670108308, + "r2": 0.9410224668736117, + "rmse": 0.29858803172699244 + }, + "train": { + "mae": 0.3483295784457812, + "max_error": 1.157056347641619, + "r2": 0.8853428405043051, + "rmse": 0.4160378027585599 + }, + "validation": { + "mae": 0.28241133568146687, + "max_error": 0.5108660223345993, + "r2": 0.927306023420118, + "rmse": 0.31224617543360145 + } + }, + "score": 1.0829044241752184, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.440377472579656, + 1.7800304686137849 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s2-20260718", + "used_features": [ + "Cd_B" + ] + }, + { + "expression": "-Cl_F - 2.495228", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.076959628826227, + "max_error": 3.6839071307479143, + "r2": 0.3417619566996144, + "rmse": 2.2465352497388653 + }, + "train": { + "mae": 2.113532217944836, + "max_error": 4.497236758485317, + "r2": 0.3459703388940807, + "rmse": 2.2746131519986355 + }, + "validation": { + "mae": 2.1616341888271178, + "max_error": 3.804519575103998, + "r2": 0.33690809235685726, + "rmse": 2.3109823466638155 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_hat_B", + "loss": 11803.69, + "metrics": { + "blind": { + "mae": 105.45604132786393, + "max_error": 142.57856565713882, + "r2": -1476.6317128927221, + "rmse": 106.43999599480811 + }, + "train": { + "mae": 106.11366953997542, + "max_error": 168.21234035491943, + "r2": -1491.1078394582985, + "rmse": 108.64479623060025 + }, + "validation": { + "mae": 106.2022843055236, + "max_error": 130.18561697006226, + "r2": -1421.728739394745, + "rmse": 107.04609185547683 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.352971702814102, + 170.13936042785645 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_hat_B" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521230000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432357179861, + "max_error": 3.77531410914917, + "r2": -0.015956210689366035, + "rmse": 2.7909961836962927 + }, + "train": { + "mae": 2.59004231189612, + "max_error": 4.669187800708007, + "r2": -3.835376460870066e-12, + "rmse": 2.812605512714166 + }, + "validation": { + "mae": 2.6921082377659724, + "max_error": 3.766447799029541, + "r2": -0.01223452545314907, + "rmse": 2.8552907418701223 + } + }, + "score": 7.307945005871789, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952123, + -2.4952123 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 2.495228", + "loss": 5.173865, + "metrics": { + "blind": { + "mae": 2.076959628826227, + "max_error": 3.6839071307479143, + "r2": 0.3417619566996144, + "rmse": 2.2465352497388653 + }, + "train": { + "mae": 2.113532217944836, + "max_error": 4.497236758485317, + "r2": 0.3459703388940807, + "rmse": 2.2746131519986355 + }, + "validation": { + "mae": 2.1616341888271178, + "max_error": 3.804519575103998, + "r2": 0.33690809235685726, + "rmse": 2.3109823466638155 + } + }, + "score": 0.21230123806861378, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.755192779019357, + 3.909294806406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "-0.6641982*Cl_F - 1*1.2132107", + "loss": 4.003378, + "metrics": { + "blind": { + "mae": 1.7225956458478708, + "max_error": 3.425530861446097, + "r2": 0.5209827336628492, + "rmse": 1.9164492887469284 + }, + "train": { + "mae": 1.778366902652771, + "max_error": 3.6450999967275033, + "r2": 0.49393198619161827, + "rmse": 2.0008441778158605 + }, + "validation": { + "mae": 1.6327335217074317, + "max_error": 3.480052286962963, + "r2": 0.5918399449469813, + "rmse": 1.8131135935567115 + } + }, + "score": 0.08549382889819428, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.371068038288054, + 3.0406618198738276 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "(Cd_T + Cl_T)*0.52739537", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.1494169340889968, + "max_error": 2.36521024969566, + "r2": 0.8309543589016671, + "rmse": 1.2893078691203381 + }, + "train": { + "mae": 1.2165238432415624, + "max_error": 3.577697103596984, + "r2": 0.815018557327847, + "rmse": 1.3710039575142963 + }, + "validation": { + "mae": 1.1801027094031222, + "max_error": 2.219711113809401, + "r2": 0.8209313352218812, + "rmse": 1.309911943533746 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_hat_B", + "loss": 738.2611, + "metrics": { + "blind": { + "mae": 14.078036199696362, + "max_error": 33.70130932331085, + "r2": -24.763221840710628, + "rmse": 15.916762332856544 + }, + "train": { + "mae": 22.01753630002929, + "max_error": 79.05038845539093, + "r2": -71.65419803176212, + "rmse": 27.17096005464046 + }, + "validation": { + "mae": 15.973071198910475, + "max_error": 30.807437300682068, + "r2": -30.556230051865715, + "rmse": 17.389010153611572 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -77.45170593261719, + 58.82806181907654 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "v_hat_B" + ] + }, + { + "complexity": 2.0, + "expression": "2.62159370000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908343366708182, + "max_error": 4.670797123364258, + "r2": -0.0071771837939811345, + "rmse": 3.147078560667099 + }, + "train": { + "mae": 2.92106644735411, + "max_error": 5.319190754345703, + "r2": -6.429123899920342e-11, + "rmse": 3.1876793373676775 + }, + "validation": { + "mae": 2.862607467126175, + "max_error": 4.659857525280762, + "r2": -0.013551756264030823, + "rmse": 3.1164148818712865 + } + }, + "score": 4.285711464584932, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215937, + 2.6215937 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "-Cd_B + Cl_T", + "loss": 9.548729, + "metrics": { + "blind": { + "mae": 2.3655700692266692, + "max_error": 7.197188675403595, + "r2": 0.030480305678966424, + "rmse": 3.087684820152311 + }, + "train": { + "mae": 2.4088075546877286, + "max_error": 7.675443187355995, + "r2": 0.06028451769608145, + "rmse": 3.0901020232760414 + }, + "validation": { + "mae": 2.4186702898990076, + "max_error": 6.623677289113402, + "r2": -0.009029411303992152, + "rmse": 3.1094545766412383 + } + }, + "score": 0.062178034852852275, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 6.832542829215527, + 9.473880112636834 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B", + "Cl_T" + ] + }, + { + "complexity": 4.0, + "expression": "2.6215773 - Cl_F", + "loss": 4.6083293, + "metrics": { + "blind": { + "mae": 1.908491731632004, + "max_error": 3.570000057908702, + "r2": 0.5467776474668883, + "rmse": 2.1111072893192318 + }, + "train": { + "mae": 1.9104817161635663, + "max_error": 4.506845649666149, + "r2": 0.5464823041795944, + "rmse": 2.146701926615511 + }, + "validation": { + "mae": 1.9225471459291161, + "max_error": 3.72277358533721, + "r2": 0.534370728775315, + "rmse": 2.112284641445926 + } + }, + "score": 0.7285426731164096, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.6383874790193556, + 9.026100106406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "(Cd_T + Cl_T)*0.52739537", + "loss": 1.8796519, + "metrics": { + "blind": { + "mae": 1.1494169340889968, + "max_error": 2.36521024969566, + "r2": 0.8309543589016671, + "rmse": 1.2893078691203381 + }, + "train": { + "mae": 1.2165238432415624, + "max_error": 3.577697103596984, + "r2": 0.815018557327847, + "rmse": 1.3710039575142963 + }, + "validation": { + "mae": 1.1801027094031222, + "max_error": 2.219711113809401, + "r2": 0.8209313352218812, + "rmse": 1.309911943533746 + } + }, + "score": 0.4483893916953133, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -6.4008930686786645, + 10.369549164714357 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_T", + "Cl_T" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s0-20260718", + "used_features": [ + "Cd_T", + "Cl_T" + ] + }, + { + "expression": "Cd_B*0.2692533", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2644694746934241, + "max_error": 0.5729582203528379, + "r2": 0.9410227694854031, + "rmse": 0.29858726570330263 + }, + "train": { + "mae": 0.3483298806400306, + "max_error": 1.157058565539401, + "r2": 0.8853428404831007, + "rmse": 0.4160378027970303 + }, + "validation": { + "mae": 0.28241140319350017, + "max_error": 0.5108621202411363, + "r2": 0.9273060441756398, + "rmse": 0.3122461308574684 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_hat_C", + "loss": 5331.4062, + "metrics": { + "blind": { + "mae": 54.799458439275625, + "max_error": 83.66550278663635, + "r2": -2189.7158259903213, + "rmse": 57.54692433325125 + }, + "train": { + "mae": 66.82000434359189, + "max_error": 139.5469467639923, + "r2": -3530.647638374916, + "rmse": 73.01647924592486 + }, + "validation": { + "mae": 53.61618777526877, + "max_error": 76.47284805774689, + "r2": -2314.4226023574624, + "rmse": 55.72666439065606 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.6034653168171644, + 141.31550788879395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_hat_C" + ] + }, + { + "complexity": 2.0, + "expression": "-0.0134165950000000", + "loss": 1.5096085, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895791106045532, + "r2": -0.008168273427643369, + "rmse": 1.234512829089597 + }, + "train": { + "mae": 1.1050599479951082, + "max_error": 2.074335031968384, + "r2": -6.994405055138486e-14, + "rmse": 1.2286613725146893 + }, + "validation": { + "mae": 1.0536851592568284, + "max_error": 1.7522894673168945, + "r2": -0.03943768734950037, + "rmse": 1.1807206092239575 + } + }, + "score": 8.169519964068702, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013416595, + -0.013416595 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_B*0.2692533", + "loss": 0.17308743, + "metrics": { + "blind": { + "mae": 0.2644694746934241, + "max_error": 0.5729582203528379, + "r2": 0.9410227694854031, + "rmse": 0.29858726570330263 + }, + "train": { + "mae": 0.3483298806400306, + "max_error": 1.157058565539401, + "r2": 0.8853428404831007, + "rmse": 0.4160378027970303 + }, + "validation": { + "mae": 0.28241140319350017, + "max_error": 0.5108621202411363, + "r2": 0.9273060441756398, + "rmse": 0.3122461308574684 + } + }, + "score": 1.0829043910540492, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.440386808021087, + 1.7800372779579832 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s0-20260718", + "used_features": [ + "Cd_B" + ] + }, + { + "expression": "8.79444826162819e-6*Cl_F**2", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.6899944061293453, + "max_error": 6.270797472985999, + "r2": -0.6004107759171582, + "rmse": 3.5029785769178257 + }, + "train": { + "mae": 2.972246769422129, + "max_error": 7.164639198589403, + "r2": -0.7871423109440332, + "rmse": 3.760004737426781 + }, + "validation": { + "mae": 2.723670243816128, + "max_error": 6.261918215945687, + "r2": -0.5908549672746435, + "rmse": 3.5795221833892445 + } + }, + "pareto": [ + { + "complexity": 4.0, + "expression": "Cl_F**8", + "loss": 439196200000.0, + "metrics": { + "blind": { + "mae": 335661.00203557336, + "max_error": 1253710.483174712, + "r2": -36181303325.68759, + "rmse": 526700.6464184341 + }, + "train": { + "mae": 387819.8921105429, + "max_error": 2830701.295115749, + "r2": -55518901991.692, + "rmse": 662718.7496789197 + }, + "validation": { + "mae": 360616.70749693486, + "max_error": 1428457.3754778951, + "r2": -35624149053.6083, + "rmse": 535651.115507212 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 7.448995998680288e-10, + 2830702.393023292 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "8.79444826162819e-6*Cl_F**2", + "loss": 14.137635, + "metrics": { + "blind": { + "mae": 2.6899944061293453, + "max_error": 6.270797472985999, + "r2": -0.6004107759171582, + "rmse": 3.5029785769178257 + }, + "train": { + "mae": 2.972246769422129, + "max_error": 7.164639198589403, + "r2": -0.7871423109440332, + "rmse": 3.760004737426781 + }, + "validation": { + "mae": 2.723670243816128, + "max_error": 6.261918215945687, + "r2": -0.5908549672746435, + "rmse": 3.5795221833892445 + } + }, + "score": 12.07968584227066, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 4.594444751872984e-08, + 0.0003607299082063395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "-0.054456804*1.64048916455867e-5", + "loss": 14.136858, + "metrics": { + "blind": { + "mae": 2.6899787986567674, + "max_error": 6.270525515791201, + "r2": -0.600327852221368, + "rmse": 3.5028878240632855 + }, + "train": { + "mae": 2.9722113443503213, + "max_error": 7.164399207350039, + "r2": -0.7870439126765398, + "rmse": 3.7599012249525763 + }, + "validation": { + "mae": 2.7236521749673486, + "max_error": 6.261659205671572, + "r2": -0.5907617322621797, + "rmse": 3.5794172895767327 + } + }, + "score": 5.496119772651448e-05, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.93357968984952e-07, + -8.93357968984952e-07 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s0-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*(-2.3938527)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.2208094649827292, + "max_error": 3.2984159151464816, + "r2": 0.7754975781867444, + "rmse": 1.4858164425108333 + }, + "train": { + "mae": 1.3085449666788695, + "max_error": 4.752630673770025, + "r2": 0.72858196861815, + "rmse": 1.6607106677877295 + }, + "validation": { + "mae": 1.1510649598368563, + "max_error": 3.3530027996612013, + "r2": 0.7907998177604689, + "rmse": 1.4158372478930847 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 15.183542, + "metrics": { + "blind": { + "mae": 3.363853280546027, + "max_error": 7.699157832190394, + "r2": -0.5912875987412041, + "rmse": 3.955751341592366 + }, + "train": { + "mae": 3.277273721721169, + "max_error": 7.754033166915178, + "r2": -0.49425203351840863, + "rmse": 3.89660653987248 + }, + "validation": { + "mae": 3.433332153157188, + "max_error": 7.321317885071039, + "r2": -0.6878084693295914, + "rmse": 4.021553820325949 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.010679967701435, + 7.418640423566103 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "2.62157320000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908353616708182, + "max_error": 4.6708176233642575, + "r2": -0.007178291496138467, + "rmse": 3.1470802912587015 + }, + "train": { + "mae": 2.921066099896483, + "max_error": 5.319211254345703, + "r2": -2.51909604287448e-12, + "rmse": 3.1876793372692225 + }, + "validation": { + "mae": 2.8626079927672006, + "max_error": 4.6598780252807614, + "r2": -0.013553298183515139, + "rmse": 3.1164172523762805 + } + }, + "score": 0.4016259865997008, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215732, + 2.6215732 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 9.129955, + "metrics": { + "blind": { + "mae": 2.622986019572818, + "max_error": 4.889133624732494, + "r2": 0.13665652238125992, + "rmse": 2.913710849469257 + }, + "train": { + "mae": 2.6856006253821483, + "max_error": 7.146483373770025, + "r2": 0.10149730483339814, + "rmse": 3.0215815459067383 + }, + "validation": { + "mae": 2.783640778826502, + "max_error": 4.973117732908577, + "r2": 0.04383618665933464, + "rmse": 3.0269026673471604 + } + }, + "score": 0.10702532569453102, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0798288751393557, + 3.5000352654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "3.130229 - Cl_F", + "loss": 5.00354, + "metrics": { + "blind": { + "mae": 1.9900333357343043, + "max_error": 4.078651757908702, + "r2": 0.5011140801867573, + "rmse": 2.2149058407140387 + }, + "train": { + "mae": 1.966617911453936, + "max_error": 5.015497349666148, + "r2": 0.5075885776481766, + "rmse": 2.236859398334498 + }, + "validation": { + "mae": 1.9129208970265152, + "max_error": 4.23142528533721, + "r2": 0.5297271467371938, + "rmse": 2.1227911047736714 + } + }, + "score": 0.6014151038682609, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.129735779019356, + 9.534751806406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 5.0, + "expression": "2.61131734904041 - Cl_F", + "loss": 4.6056814, + "metrics": { + "blind": { + "mae": 1.9069527389880654, + "max_error": 3.559740106949112, + "r2": 0.5471573077539751, + "rmse": 2.1102228762728723 + }, + "train": { + "mae": 1.9096122287941102, + "max_error": 4.496585698706559, + "r2": 0.5467428752334238, + "rmse": 2.146085138385904 + }, + "validation": { + "mae": 1.922810221594747, + "max_error": 3.7125136343776197, + "r2": 0.5339087787238634, + "rmse": 2.113332178793874 + } + }, + "score": 0.08285503356122426, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.6486474299789458, + 9.015840155446432 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*(-2.3938527)", + "loss": 2.7579598, + "metrics": { + "blind": { + "mae": 1.2208094649827292, + "max_error": 3.2984159151464816, + "r2": 0.7754975781867444, + "rmse": 1.4858164425108333 + }, + "train": { + "mae": 1.3085449666788695, + "max_error": 4.752630673770025, + "r2": 0.72858196861815, + "rmse": 1.6607106677877295 + }, + "validation": { + "mae": 1.1510649598368563, + "max_error": 3.3530027996612013, + "r2": 0.7907998177604689, + "rmse": 1.4158372478930847 + } + }, + "score": 0.5127994248737797, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.3140238248606444, + 5.8938879654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "u_a*0.04777057", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.7925490183237807, + "max_error": 1.3553333600861728, + "r2": 0.49552772765665365, + "rmse": 0.8732683992874666 + }, + "train": { + "mae": 0.5566115746979067, + "max_error": 1.5402477034856676, + "r2": 0.7095386266334591, + "rmse": 0.6621805162411314 + }, + "validation": { + "mae": 0.8431856691617988, + "max_error": 1.4136953324948847, + "r2": 0.36265865624082505, + "rmse": 0.9245575726717673 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "u_a", + "loss": 426.11127, + "metrics": { + "blind": { + "mae": 13.34319668225944, + "max_error": 30.741247236728668, + "r2": -161.25589727673974, + "rmse": 15.661355202811817 + }, + "train": { + "mae": 16.8524036591841, + "max_error": 59.49045713245869, + "r2": -281.26605371406964, + "rmse": 20.64246375031093 + }, + "validation": { + "mae": 12.996848466973274, + "max_error": 32.82349652051926, + "r2": -167.0321085391632, + "rmse": 15.012190014837994 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -41.35931730270386, + 61.25901825726032 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 2.0, + "expression": "-0.0134123950000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895833106045532, + "r2": -0.008168890908549109, + "rmse": 1.2345132071455245 + }, + "train": { + "mae": 1.1050598768086677, + "max_error": 2.0743392319683838, + "r2": -1.3560930156586437e-11, + "rmse": 1.2286613725229774 + }, + "validation": { + "mae": 1.053685697718367, + "max_error": 1.7522936673168945, + "r2": -0.0394391277758499, + "rmse": 1.1807214273299913 + } + }, + "score": 5.642850097417103, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013412395, + -0.013412395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.04777057", + "loss": 0.43848303, + "metrics": { + "blind": { + "mae": 0.7925490183237807, + "max_error": 1.3553333600861728, + "r2": 0.49552772765665365, + "rmse": 0.8732683992874666 + }, + "train": { + "mae": 0.5566115746979067, + "max_error": 1.5402477034856676, + "r2": 0.7095386266334591, + "rmse": 0.6621805162411314 + }, + "validation": { + "mae": 0.8431856691617988, + "max_error": 1.4136953324948847, + "r2": 0.36265865624082505, + "rmse": 0.9245575726717673 + } + }, + "score": 0.6181422899810566, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.9757581623610256, + 2.9263782197897323 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s0-20260718", + "used_features": [ + "u_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*2.0656142", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.3402769290537544, + "max_error": 3.0360437918345453, + "r2": 0.6678464189823687, + "rmse": 1.5958468745098728 + }, + "train": { + "mae": 1.4173269365776728, + "max_error": 5.652981687081793, + "r2": 0.6070363627796147, + "rmse": 1.7631327241040575 + }, + "validation": { + "mae": 1.3300093312300907, + "max_error": 3.218960764155072, + "r2": 0.6765219954423487, + "rmse": 1.6141063340094688 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_a", + "loss": 12.544421, + "metrics": { + "blind": { + "mae": 2.8684347361078837, + "max_error": 6.3771596774458885, + "r2": -0.5406305792338024, + "rmse": 3.436932514805208 + }, + "train": { + "mae": 3.008694631994161, + "max_error": 7.889390256255865, + "r2": -0.5857438481503101, + "rmse": 3.5418106643670146 + }, + "validation": { + "mae": 3.182659452084082, + "max_error": 5.969889731146395, + "r2": -0.6944867156826684, + "rmse": 3.6942718296402592 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.321071742102504, + 7.115950575098395 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521160000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432287179861, + "max_error": 3.7753148091491697, + "r2": -0.01595614682321611, + "rmse": 2.790996095970965 + }, + "train": { + "mae": 2.5900422881673064, + "max_error": 4.669188500708008, + "r2": -4.871880676660112e-12, + "rmse": 2.8126055127156238 + }, + "validation": { + "mae": 2.692108148022383, + "max_error": 3.766448499029541, + "r2": -0.012234470888502491, + "rmse": 2.855290664912694 + } + }, + "score": 0.46105355734490117, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952116, + -2.4952116 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 1*2.5349655", + "loss": 5.054905, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.6708211989580395, + "r2": 0.2722652745791272, + "rmse": 2.3621544857253993 + }, + "train": { + "mae": 2.013348879064355, + "max_error": 4.02626412385416, + "r2": 0.36100802225398165, + "rmse": 2.248311731291436 + }, + "validation": { + "mae": 2.0668845619370004, + "max_error": 3.7112145868568422, + "r2": 0.33413055471269004, + "rmse": 2.3158173723013027 + } + }, + "score": 0.22393170427017814, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.669909743356586, + 2.4838543219984768 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*2.0656142", + "loss": 3.108637, + "metrics": { + "blind": { + "mae": 1.3402769290537544, + "max_error": 3.0360437918345453, + "r2": 0.6678464189823687, + "rmse": 1.5958468745098728 + }, + "train": { + "mae": 1.4173269365776728, + "max_error": 5.652981687081793, + "r2": 0.6070363627796147, + "rmse": 1.7631327241040575 + }, + "validation": { + "mae": 1.3300093312300907, + "max_error": 3.218960764155072, + "r2": 0.6765219954423487, + "rmse": 1.6141063340094688 + } + }, + "score": 0.24308734628094714, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.145443075139356, + 1.4344210654606102 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s0-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot + 2.527837", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.1806141749827292, + "max_error": 3.4324002151464814, + "r2": 0.7768111869604954, + "rmse": 1.481463159928899 + }, + "train": { + "mae": 1.2806867026071551, + "max_error": 4.618646373770025, + "r2": 0.7303485798201136, + "rmse": 1.6552972109200392 + }, + "validation": { + "mae": 1.1064035265035226, + "max_error": 3.486987099661201, + "r2": 0.7972616408363717, + "rmse": 1.393799383056294 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 13.496986, + "metrics": { + "blind": { + "mae": 3.1259986830409616, + "max_error": 7.124041182920337, + "r2": -0.5341537178900584, + "rmse": 3.8840882004039416 + }, + "train": { + "mae": 2.9146646192475907, + "max_error": 7.397327907383442, + "r2": -0.3282736960013657, + "rmse": 3.6738245629120185 + }, + "validation": { + "mae": 3.335230086643535, + "max_error": 7.214824199676514, + "r2": -0.6722606116507828, + "rmse": 4.002987966695086 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.1349442433565855, + 5.018819821998477 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "2.62157460000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.890835291670818, + "max_error": 4.670816223364257, + "r2": -0.007178215845467184, + "rmse": 3.14708017306774 + }, + "train": { + "mae": 2.9210661236252955, + "max_error": 5.3192098543457025, + "r2": -4.106048834273679e-12, + "rmse": 3.187679337271752 + }, + "validation": { + "mae": 2.862607956869765, + "max_error": 4.659876625280761, + "r2": -0.013553192878906106, + "rmse": 3.116417090483902 + } + }, + "score": 0.283880309775938, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215746, + 2.6215746 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 9.129955, + "metrics": { + "blind": { + "mae": 2.622986019572818, + "max_error": 4.889133624732494, + "r2": 0.13665652238125992, + "rmse": 2.913710849469257 + }, + "train": { + "mae": 2.6856006253821483, + "max_error": 7.146483373770025, + "r2": 0.10149730483339814, + "rmse": 3.0215815459067383 + }, + "validation": { + "mae": 2.783640778826502, + "max_error": 4.973117732908577, + "r2": 0.04383618665933464, + "rmse": 3.0269026673471604 + } + }, + "score": 0.10702532569453102, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.0798288751393557, + 3.5000352654606104 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "2.4874291 - Cl_F", + "loss": 4.590328, + "metrics": { + "blind": { + "mae": 1.888369501632004, + "max_error": 3.435851857908702, + "r2": 0.5500516075208732, + "rmse": 2.1034684248310227 + }, + "train": { + "mae": 1.9022790779471612, + "max_error": 4.372697449666148, + "r2": 0.5482536968795856, + "rmse": 2.142505428202377 + }, + "validation": { + "mae": 1.9259868433650134, + "max_error": 3.5886253853372097, + "r2": 0.5265963571570702, + "rmse": 2.129845506935646 + } + }, + "score": 0.6876092845742764, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.772535679019356, + 8.891951906406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot + 2.527837", + "loss": 2.7400086, + "metrics": { + "blind": { + "mae": 1.1806141749827292, + "max_error": 3.4324002151464814, + "r2": 0.7768111869604954, + "rmse": 1.481463159928899 + }, + "train": { + "mae": 1.2806867026071551, + "max_error": 4.618646373770025, + "r2": 0.7303485798201136, + "rmse": 1.6552972109200392 + }, + "validation": { + "mae": 1.1064035265035226, + "max_error": 3.486987099661201, + "r2": 0.7972616408363717, + "rmse": 1.393799383056294 + } + }, + "score": 0.25799521106656803, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.44800812486064423, + 6.02787226546061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "2.6337664 - 0.5651944*Cl_F", + "loss": 2.6598601, + "metrics": { + "blind": { + "mae": 1.3842499648009514, + "max_error": 3.2334565127882353, + "r2": 0.7331511643474851, + "rmse": 1.619896626634004 + }, + "train": { + "mae": 1.3464571127814537, + "max_error": 4.296159168137576, + "r2": 0.7382362286772759, + "rmse": 1.6309077514193777 + }, + "validation": { + "mae": 1.2545942095061848, + "max_error": 3.2818635564896868, + "r2": 0.767260755745036, + "rmse": 1.4933689394168923 + } + }, + "score": 0.029687531655651335, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9043306372989774, + 6.253566824852967 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "u_a*0.047770567", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.792549026468526, + "max_error": 1.3553333800936729, + "r2": 0.4955277217542605, + "rmse": 0.8732684043961452 + }, + "train": { + "mae": 0.5566115747262482, + "max_error": 1.5402477069829286, + "r2": 0.70953862663347, + "rmse": 0.662180516241119 + }, + "validation": { + "mae": 0.843185672421323, + "max_error": 1.41369525890418, + "r2": 0.3626586571053291, + "rmse": 0.924557572044722 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134232600000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895724456045533, + "r2": -0.008167293592157288, + "rmse": 1.2345122291799373 + }, + "train": { + "mae": 1.1050600609612102, + "max_error": 2.0743306238916017, + "r2": -2.6630253557868855e-11, + "rmse": 1.228661372531006 + }, + "validation": { + "mae": 1.053684304769649, + "max_error": 1.7522828023168946, + "r2": -0.03943540158406056, + "rmse": 1.1807193109970993 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.01342326, + -0.01342326 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.047770567", + "loss": 0.43848303, + "metrics": { + "blind": { + "mae": 0.792549026468526, + "max_error": 1.3553333800936729, + "r2": 0.4955277217542605, + "rmse": 0.8732684043961452 + }, + "train": { + "mae": 0.5566115747262482, + "max_error": 1.5402477069829286, + "r2": 0.70953862663347, + "rmse": 0.662180516241119 + }, + "validation": { + "mae": 0.843185672421323, + "max_error": 1.41369525890418, + "r2": 0.3626586571053291, + "rmse": 0.924557572044722 + } + }, + "score": 0.6181422899810566, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.975758038283074, + 2.9263780360126774 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 7.0, + "expression": "-0.22265555*(Cd_rear_a - 2.1157632)", + "loss": 0.41677454, + "metrics": { + "blind": { + "mae": 0.5597545800863513, + "max_error": 1.0831070856676421, + "r2": 0.7259030764264068, + "rmse": 0.6436965402824143 + }, + "train": { + "mae": 0.5537463594057348, + "max_error": 1.3419679876102468, + "r2": 0.7239188465943218, + "rmse": 0.6455807694984669 + }, + "validation": { + "mae": 0.580474118022863, + "max_error": 1.0644880352826773, + "r2": 0.6832494771086401, + "rmse": 0.6517883362160121 + } + }, + "score": 0.016925235609630964, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.1133194701055895, + 2.323819224293051 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s1-20260718", + "used_features": [ + "u_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 2.5888972", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.218866819110669, + "max_error": 3.559326791834545, + "r2": 0.6946531499789537, + "rmse": 1.5300952605635216 + }, + "train": { + "mae": 1.3270261602676514, + "max_error": 6.176264687081792, + "r2": 0.6416578719692014, + "rmse": 1.6836730403923057 + }, + "validation": { + "mae": 1.2223595461132464, + "max_error": 3.742243764155072, + "r2": 0.6952446526704492, + "rmse": 1.5666985134960223 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_a", + "loss": 64.219315, + "metrics": { + "blind": { + "mae": 7.071967412205413, + "max_error": 12.342433592304587, + "r2": -6.613319870329023, + "rmse": 7.640271405462806 + }, + "train": { + "mae": 7.417815929255547, + "max_error": 13.616677049547434, + "r2": -7.11798090585588, + "rmse": 8.013695501130307 + }, + "validation": { + "mae": 7.217908509481603, + "max_error": 12.146136071532965, + "r2": -6.6175326392721505, + "rmse": 7.832797986585039 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.609025668585673, + 8.424736792221665 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_a" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521260000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432387179861, + "max_error": 3.77531380914917, + "r2": -0.01595623806061197, + "rmse": 2.7909962212929145 + }, + "train": { + "mae": 2.5900423220656115, + "max_error": 4.6691875007080075, + "r2": -3.4285907446474084e-12, + "rmse": 2.812605512713594 + }, + "validation": { + "mae": 2.6921082762275113, + "max_error": 3.766447499029541, + "r2": -0.012234548838035098, + "rmse": 2.85529077485193 + } + }, + "score": 2.0940815545832248, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952126, + -2.4952126 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 2.6249537", + "loss": 5.062883, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.760809398958039, + "r2": 0.26381545029302644, + "rmse": 2.3758285517349487 + }, + "train": { + "mae": 2.0087732078779146, + "max_error": 4.111411532157612, + "r2": 0.3599996578910566, + "rmse": 2.250085011552875 + }, + "validation": { + "mae": 2.0784215106549495, + "max_error": 3.801202786856842, + "r2": 0.322088185209798, + "rmse": 2.336664526788717 + } + }, + "score": 0.22314319183510378, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.759897943356585, + 2.393866121998477 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 2.5888972", + "loss": 2.8347545, + "metrics": { + "blind": { + "mae": 1.218866819110669, + "max_error": 3.559326791834545, + "r2": 0.6946531499789537, + "rmse": 1.5300952605635216 + }, + "train": { + "mae": 1.3270261602676514, + "max_error": 6.176264687081792, + "r2": 0.6416578719692014, + "rmse": 1.6836730403923057 + }, + "validation": { + "mae": 1.2223595461132464, + "max_error": 3.742243764155072, + "r2": 0.6952446526704492, + "rmse": 1.5666985134960223 + } + }, + "score": 0.28999037329093796, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.668726075139356, + 0.9111380654606105 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "2.4873955 - Cl_F", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.888364461632004, + "max_error": 3.4358182579087018, + "r2": 0.5500519690638318, + "rmse": 2.103467579740382 + }, + "train": { + "mae": 1.9022779389641102, + "max_error": 4.372663849666148, + "r2": 0.548253696864917, + "rmse": 2.1425054282371616 + }, + "validation": { + "mae": 1.9259877049034746, + "max_error": 3.5885917853372096, + "r2": 0.5265939394066103, + "rmse": 2.1298509456647907 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_F", + "loss": 21.957544, + "metrics": { + "blind": { + "mae": 3.680170154478401, + "max_error": 9.345994178205729, + "r2": -1.2704553637812652, + "rmse": 4.72510135886013 + }, + "train": { + "mae": 3.6163880256713976, + "max_error": 10.119863444939256, + "r2": -1.1608992430882745, + "rmse": 4.685887805102277 + }, + "validation": { + "mae": 3.7324689200673347, + "max_error": 9.499940821900964, + "r2": -1.3911669768646844, + "rmse": 4.786711539126735 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.0948242638260126, + 5.441469606012106 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 2.0, + "expression": "2.62157320000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908353616708182, + "max_error": 4.6708176233642575, + "r2": -0.007178291496138467, + "rmse": 3.1470802912587015 + }, + "train": { + "mae": 2.921066099896483, + "max_error": 5.319211254345703, + "r2": -2.51909604287448e-12, + "rmse": 3.1876793372692225 + }, + "validation": { + "mae": 2.8626079927672006, + "max_error": 4.6598780252807614, + "r2": -0.013553298183515139, + "rmse": 3.1164172523762805 + } + }, + "score": 0.7705246791951142, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215732, + 2.6215732 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "2.4873955 - Cl_F", + "loss": 4.5903287, + "metrics": { + "blind": { + "mae": 1.888364461632004, + "max_error": 3.4358182579087018, + "r2": 0.5500519690638318, + "rmse": 2.103467579740382 + }, + "train": { + "mae": 1.9022779389641102, + "max_error": 4.372663849666148, + "r2": 0.548253696864917, + "rmse": 2.1425054282371616 + }, + "validation": { + "mae": 1.9259877049034746, + "max_error": 3.5885917853372096, + "r2": 0.5265939394066103, + "rmse": 2.1298509456647907 + } + }, + "score": 0.3973172288871349, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.772569279019356, + 8.891918306406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "-Cl_B - Cl_F - 1.9013499", + "loss": 3.1913152, + "metrics": { + "blind": { + "mae": 1.2071629313354664, + "max_error": 3.379955460027063, + "r2": 0.7740368545653629, + "rmse": 1.4906423330861522 + }, + "train": { + "mae": 1.3600953833544478, + "max_error": 6.9115724424489, + "r2": 0.6859343037070447, + "rmse": 1.7864253750666357 + }, + "validation": { + "mae": 1.2414869772556956, + "max_error": 3.660839239310676, + "r2": 0.7515407493760062, + "rmse": 1.5429785540643088 + } + }, + "score": 0.1817592567391804, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -7.986836793425695, + 13.736028308339215 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_B", + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cd_B*0.26181275", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2686183428438797, + "max_error": 0.5993010758192977, + "r2": 0.9381708136210515, + "rmse": 0.30572141439254524 + }, + "train": { + "mae": 0.347649718092982, + "max_error": 1.1410368380222935, + "r2": 0.884666907204244, + "rmse": 0.4172623253550877 + }, + "validation": { + "mae": 0.2820627543408105, + "max_error": 0.5390501993838116, + "r2": 0.9264184930258239, + "rmse": 0.31414652010990857 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134323540000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895633516045531, + "r2": -0.008165956759142556, + "rmse": 1.2345114106961088 + }, + "train": { + "mae": 1.1050602150968036, + "max_error": 2.0743397178916014, + "r2": -1.5780421414035573e-10, + "rmse": 1.2286613726115903 + }, + "validation": { + "mae": 1.053683138872213, + "max_error": 1.7522737083168944, + "r2": -0.039432282898578475, + "rmse": 1.1807175397013892 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013432354, + -0.013432354 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_B*0.26181275", + "loss": 0.17410782, + "metrics": { + "blind": { + "mae": 0.2686183428438797, + "max_error": 0.5993010758192977, + "r2": 0.9381708136210515, + "rmse": 0.30572141439254524 + }, + "train": { + "mae": 0.347649718092982, + "max_error": 1.1410368380222935, + "r2": 0.884666907204244, + "rmse": 0.4172623253550877 + }, + "validation": { + "mae": 0.2820627543408105, + "max_error": 0.5390501993838116, + "r2": 0.9264184930258239, + "rmse": 0.31414652010990857 + } + }, + "score": 1.0799654642157537, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.3729491199243347, + 1.730847699339967 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + }, + { + "complexity": 7.0, + "expression": "(0.39170504 - Cd_B)*(-0.27122352)", + "loss": 0.16187364, + "metrics": { + "blind": { + "mae": 0.2536400537365719, + "max_error": 0.6722223852381969, + "r2": 0.941995569159484, + "rmse": 0.29611450338104267 + }, + "train": { + "mae": 0.3342776150401505, + "max_error": 1.0550614181852227, + "r2": 0.8927711195601926, + "rmse": 0.4023352558848804 + }, + "validation": { + "mae": 0.25627230647836047, + "max_error": 0.609637679231588, + "r2": 0.9364332799805741, + "rmse": 0.2919865291461788 + } + }, + "score": 0.024286243868614093, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.5644835864281768, + 1.686822809786934 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_B" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s1-20260718", + "used_features": [ + "Cd_B" + ] + }, + { + "expression": "-Cl_F - 2.4952118", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 2.0769620588262274, + "max_error": 3.683890930747914, + "r2": 0.3417615215794614, + "rmse": 2.246535992260974 + }, + "train": { + "mae": 2.1135330416736497, + "max_error": 4.497220558485317, + "r2": 0.34596978945063783, + "rmse": 2.274614107437733 + }, + "validation": { + "mae": 2.1616329426732706, + "max_error": 3.804503375103998, + "r2": 0.33690875262367215, + "rmse": 2.310981196095308 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 51.72763, + "metrics": { + "blind": { + "mae": 5.946224889361656, + "max_error": 11.822296738624573, + "r2": -5.122615765738399, + "rmse": 6.851572389824767 + }, + "train": { + "mae": 6.28793881771202, + "max_error": 12.674978144466877, + "r2": -5.538903756188097, + "rmse": 7.192192390787411 + }, + "validation": { + "mae": 6.296210129494564, + "max_error": 11.937244892120361, + "r2": -5.402118931539415, + "rmse": 7.180780192020746 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -6.404522806406021, + 6.259964779019356 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521500000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.6104326271798612, + "max_error": 3.77531140914917, + "r2": -0.01595645703142612, + "rmse": 2.790996522067032 + }, + "train": { + "mae": 2.5900424034215446, + "max_error": 4.669185100708008, + "r2": -9.967582315084655e-13, + "rmse": 2.8126055127101743 + }, + "validation": { + "mae": 2.692108583919819, + "max_error": 3.766445099029541, + "r2": -0.012234735917928674, + "rmse": 2.8552910387075103 + } + }, + "score": 1.8777696005960292, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.495215, + -2.495215 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 2.4952118", + "loss": 5.173869, + "metrics": { + "blind": { + "mae": 2.0769620588262274, + "max_error": 3.683890930747914, + "r2": 0.3417615215794614, + "rmse": 2.246535992260974 + }, + "train": { + "mae": 2.1135330416736497, + "max_error": 4.497220558485317, + "r2": 0.34596978945063783, + "rmse": 2.274614107437733 + }, + "validation": { + "mae": 2.1616329426732706, + "max_error": 3.804503375103998, + "r2": 0.33690875262367215, + "rmse": 2.310981196095308 + } + }, + "score": 0.2123008515105519, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.755176579019356, + 3.9093110064060212 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 7.0, + "expression": "-(Cl_F - 1*(-0.13263243)) - 2.4952118", + "loss": 5.155873, + "metrics": { + "blind": { + "mae": 2.0590403820963665, + "max_error": 3.8165233607479143, + "r2": 0.34302988150109215, + "rmse": 2.2443705231583277 + }, + "train": { + "mae": 2.1102226075557193, + "max_error": 4.629852988485317, + "r2": 0.3482447285735757, + "rmse": 2.2706547213548207 + }, + "validation": { + "mae": 2.171835437288656, + "max_error": 3.937135805103998, + "r2": 0.329319154245603, + "rmse": 2.3241690614864896 + } + }, + "score": 0.0011614370882697693, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -8.887809009019357, + 3.776678576406021 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re400-raw_complete-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*(-2.213921)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 1.2755299445953692, + "max_error": 3.1184842151464816, + "r2": 0.767989526151351, + "rmse": 1.5104572582637101 + }, + "train": { + "mae": 1.3529698304257134, + "max_error": 4.932562373770025, + "r2": 0.7206508486255898, + "rmse": 1.6847998124918837 + }, + "validation": { + "mae": 1.2253899443191987, + "max_error": 3.1730710996612013, + "r2": 0.7762274041086467, + "rmse": 1.4643191914463538 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "2.62159370000000", + "loss": 10.161297, + "metrics": { + "blind": { + "mae": 2.8908343366708182, + "max_error": 4.670797123364258, + "r2": -0.0071771837939811345, + "rmse": 3.147078560667099 + }, + "train": { + "mae": 2.92106644735411, + "max_error": 5.319190754345703, + "r2": -6.429123899920342e-11, + "rmse": 3.1876793373676775 + }, + "validation": { + "mae": 2.862607467126175, + "max_error": 4.659857525280762, + "r2": -0.013551756264030823, + "rmse": 3.1164148818712865 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.6215937, + 2.6215937 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "2.6215758 - Cl_F", + "loss": 4.6083293, + "metrics": { + "blind": { + "mae": 1.908491506632004, + "max_error": 3.569998557908702, + "r2": 0.5467777045378612, + "rmse": 2.1111071564010846 + }, + "train": { + "mae": 1.910481589044923, + "max_error": 4.506844149666149, + "r2": 0.5464823437893013, + "rmse": 2.146701832870287 + }, + "validation": { + "mae": 1.9225471843906543, + "max_error": 3.7227720853372097, + "r2": 0.5343706628442977, + "rmse": 2.1122847909909384 + } + }, + "score": 0.39536035398463093, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.6383889790193558, + 9.026098606406022 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*(-2.213921)", + "loss": 2.8385503, + "metrics": { + "blind": { + "mae": 1.2755299445953692, + "max_error": 3.1184842151464816, + "r2": 0.767989526151351, + "rmse": 1.5104572582637101 + }, + "train": { + "mae": 1.3529698304257134, + "max_error": 4.932562373770025, + "r2": 0.7206508486255898, + "rmse": 1.6847998124918837 + }, + "validation": { + "mae": 1.2253899443191987, + "max_error": 3.1730710996612013, + "r2": 0.7762274041086467, + "rmse": 1.4643191914463538 + } + }, + "score": 0.24228595970756947, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 0.13409212486064437, + 5.71395626546061 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 7.0, + "expression": "Cl_F*(-0.6569848) - 1*(-2.533426)", + "loss": 2.502614, + "metrics": { + "blind": { + "mae": 1.3206681901676227, + "max_error": 3.163523516475059, + "r2": 0.748315077631081, + "rmse": 1.5731974887997946 + }, + "train": { + "mae": 1.2895264356909288, + "max_error": 4.242869309296062, + "r2": 0.7537112132910557, + "rmse": 1.581965277537945 + }, + "validation": { + "mae": 1.2427061096977319, + "max_error": 3.2228470921425374, + "r2": 0.7721975516596017, + "rmse": 1.477445596703377 + } + }, + "score": 0.12595767848350647, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.579275708351076, + 6.741100135062098 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_F" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "-0.2682599*(Cd_rear_a - 1*0.7119804)", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.2729105290933312, + "max_error": 0.5534815064043161, + "r2": 0.9363418710292042, + "rmse": 0.31021016822394026 + }, + "train": { + "mae": 0.30008299642334907, + "max_error": 0.8272692467555527, + "r2": 0.9142783816412453, + "rmse": 0.3597306029629161 + }, + "validation": { + "mae": 0.2729342924176888, + "max_error": 0.5442857986780238, + "r2": 0.9311555963691932, + "rmse": 0.3038660884073519 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.0134323540000000", + "loss": 1.5096086, + "metrics": { + "blind": { + "mae": 1.1271926674991846, + "max_error": 1.8895633516045531, + "r2": -0.008165956759142556, + "rmse": 1.2345114106961088 + }, + "train": { + "mae": 1.1050602150968036, + "max_error": 2.0743397178916014, + "r2": -1.5780421414035573e-10, + "rmse": 1.2286613726115903 + }, + "validation": { + "mae": 1.053683138872213, + "max_error": 1.7522737083168944, + "r2": -0.039432282898578475, + "rmse": 1.1807175397013892 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.013432354, + -0.013432354 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "u_a*0.042408347", + "loss": 0.4519814, + "metrics": { + "blind": { + "mae": 0.813586543020139, + "max_error": 1.3910949190707593, + "r2": 0.4797890789250051, + "rmse": 0.8867859977204867 + }, + "train": { + "mae": 0.5660871312071853, + "max_error": 1.5464987342679084, + "r2": 0.7005969931280094, + "rmse": 0.6722956227971508 + }, + "validation": { + "mae": 0.8535760498650665, + "max_error": 1.424967352069816, + "r2": 0.35890436759481037, + "rmse": 0.9272766488995434 + } + }, + "score": 0.6029823311842033, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.7539802798561692, + 2.5978937031332308 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "u_a" + ] + }, + { + "complexity": 7.0, + "expression": "-0.2682599*(Cd_rear_a - 1*0.7119804)", + "loss": 0.1294061, + "metrics": { + "blind": { + "mae": 0.2729105290933312, + "max_error": 0.5534815064043161, + "r2": 0.9363418710292042, + "rmse": 0.31021016822394026 + }, + "train": { + "mae": 0.30008299642334907, + "max_error": 0.8272692467555527, + "r2": 0.9142783816412453, + "rmse": 0.3597306029629161 + }, + "validation": { + "mae": 0.2729342924176888, + "max_error": 0.5442857986780238, + "r2": 0.9311555963691932, + "rmse": 0.3038660884073519 + } + }, + "score": 0.4168951689793953, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -1.717928398774878, + 2.423205664335203 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cd_rear_a" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot - 1*2.3353596", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 1.2510060677422536, + "max_error": 3.305789191834545, + "r2": 0.6905846859243807, + "rmse": 1.5402550813103861 + }, + "train": { + "mae": 1.3495174179740683, + "max_error": 5.9227270870817925, + "r2": 0.6335285627804531, + "rmse": 1.7026637477024036 + }, + "validation": { + "mae": 1.263171385450738, + "max_error": 3.488706164155072, + "r2": 0.6946646282441555, + "rmse": 1.5681887111977686 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 17.19205, + "metrics": { + "blind": { + "mae": 2.720237749362423, + "max_error": 7.639943297486752, + "r2": -0.7201762537462626, + "rmse": 3.6316854153749443 + }, + "train": { + "mae": 3.187765304700144, + "max_error": 9.732513713650405, + "r2": -1.1732518346275844, + "rmse": 4.146329877276113 + }, + "validation": { + "mae": 2.9314079958279855, + "max_error": 7.841783597599715, + "r2": -0.9505947222473161, + "rmse": 3.9636316391931063 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.2260747868567705, + 3.1508038518950343 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-2.49521160000000", + "loss": 7.910749, + "metrics": { + "blind": { + "mae": 2.610432287179861, + "max_error": 3.7753148091491697, + "r2": -0.01595614682321611, + "rmse": 2.790996095970965 + }, + "train": { + "mae": 2.5900422881673064, + "max_error": 4.669188500708008, + "r2": -4.871880676660112e-12, + "rmse": 2.8126055127156238 + }, + "validation": { + "mae": 2.692108148022383, + "max_error": 3.766448499029541, + "r2": -0.012234470888502491, + "rmse": 2.855290664912694 + } + }, + "score": 0.7762246001032266, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.4952116, + -2.4952116 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "-Cl_tot - 2.5485299", + "loss": 6.2971563, + "metrics": { + "blind": { + "mae": 1.7029901163345862, + "max_error": 3.7573635190208794, + "r2": 0.4829200623297367, + "rmse": 1.9911344742924055 + }, + "train": { + "mae": 2.0644126064997086, + "max_error": 8.097680332809256, + "r2": 0.2039746660452325, + "rmse": 2.509413721886488 + }, + "validation": { + "mae": 1.8427386461340525, + "max_error": 4.019179345895106, + "r2": 0.452045784418171, + "rmse": 2.1007864147039568 + } + }, + "score": 0.11406215851007544, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -9.647178597137833, + 4.086449608817196 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_tot" + ] + }, + { + "complexity": 5.0, + "expression": "Cl_rear_s - 1*2.41165401309001", + "loss": 5.070277, + "metrics": { + "blind": { + "mae": 2.1355614013038577, + "max_error": 3.547509712048049, + "r2": 0.28041368704902747, + "rmse": 2.348892790651724 + }, + "train": { + "mae": 2.02033603354626, + "max_error": 4.149575610764151, + "r2": 0.35906491030345355, + "rmse": 2.2517275842069915 + }, + "validation": { + "mae": 2.0545208999461226, + "max_error": 3.587903099946852, + "r2": 0.34736661699343185, + "rmse": 2.29268508879271 + } + }, + "score": 0.2167026993229283, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.546598256446595, + 2.607165808908467 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*2.3353596", + "loss": 2.8990638, + "metrics": { + "blind": { + "mae": 1.2510060677422536, + "max_error": 3.305789191834545, + "r2": 0.6905846859243807, + "rmse": 1.5402550813103861 + }, + "train": { + "mae": 1.3495174179740683, + "max_error": 5.9227270870817925, + "r2": 0.6335285627804531, + "rmse": 1.7026637477024036 + }, + "validation": { + "mae": 1.263171385450738, + "max_error": 3.488706164155072, + "r2": 0.6946646282441555, + "rmse": 1.5681887111977686 + } + }, + "score": 0.5590075939329512, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.415188475139356, + 1.1646756654606105 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re400-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "n_head_fits": 27 + }, + "karman_re50": { + "feature_frequency": { + "Cd_F": 6, + "Cd_T": 1, + "Cd_rear_s": 2, + "Cl_B": 2, + "Cl_F": 3, + "Cl_T": 2, + "Cl_rear_s": 2, + "Cl_tot": 3, + "u_hat_C": 1, + "v_hat_B": 1, + "v_hat_C": 1 + }, + "fits": [ + { + "expression": "Cl_rear_s - Cl_tot", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4807591224031057, + "max_error": 1.627055261284113, + "r2": 0.8842103151952228, + "rmse": 0.6385131479629004 + }, + "train": { + "mae": 0.6030272865280464, + "max_error": 1.9424338545650244, + "r2": 0.8146377915041603, + "rmse": 0.7812972805506826 + }, + "validation": { + "mae": 0.48503216925578624, + "max_error": 1.2458199402317405, + "r2": 0.8863621001990252, + "rmse": 0.5947863360502038 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 3.2979498, + "metrics": { + "blind": { + "mae": 1.5436556888310862, + "max_error": 3.2464210209436715, + "r2": 0.06427470012181435, + "rmse": 1.8151356834967187 + }, + "train": { + "mae": 1.5708730238916746, + "max_error": 3.3454196541570127, + "r2": -0.0014577304171550232, + "rmse": 1.816025852382777 + }, + "validation": { + "mae": 1.4997133829727738, + "max_error": 2.7058748302515596, + "r2": 0.05968860954826727, + "rmse": 1.7109417819599864 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9352073539048433, + 0.5065408768132329 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-0.996941300000000", + "loss": 3.2931488, + "metrics": { + "blind": { + "mae": 1.7200390351827193, + "max_error": 2.8156977611434937, + "r2": -0.01742040900005759, + "rmse": 1.892714595604996 + }, + "train": { + "mae": 1.6267555234535644, + "max_error": 3.0961813646209717, + "r2": -3.2946620986962216e-09, + "rmse": 1.8147036626854143 + }, + "validation": { + "mae": 1.6889744670037719, + "max_error": 3.101093502606201, + "r2": -0.18743284695808082, + "rmse": 1.9226662937548094 + } + }, + "score": 0.001456813542160996, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9969413, + -0.9969413 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 0.6104254, + "metrics": { + "blind": { + "mae": 0.4807591224031057, + "max_error": 1.627055261284113, + "r2": 0.8842103151952228, + "rmse": 0.6385131479629004 + }, + "train": { + "mae": 0.6030272865280464, + "max_error": 1.9424338545650244, + "r2": 0.8146377915041603, + "rmse": 0.7812972805506826 + }, + "validation": { + "mae": 0.48503216925578624, + "max_error": 1.2458199402317405, + "r2": 0.8863621001990252, + "rmse": 0.5947863360502038 + } + }, + "score": 1.6854433769531103, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.9610751662403345, + 1.5654251910746098 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "0.3312638 - Cl_tot", + "loss": 0.5906293, + "metrics": { + "blind": { + "mae": 0.6031477179297087, + "max_error": 1.7469508953738688, + "r2": 0.82388128422657, + "rmse": 0.7874766110574662 + }, + "train": { + "mae": 0.6116669796714734, + "max_error": 2.1142226505678416, + "r2": 0.8206490872044006, + "rmse": 0.7685241349057617 + }, + "validation": { + "mae": 0.49694033073690735, + "max_error": 1.9446131765496255, + "r2": 0.8610860156410802, + "rmse": 0.6576159946181962 + } + }, + "score": 0.032967512517371254, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.023643166909766, + 1.9840666063476085 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_tot" + ] + }, + { + "complexity": 6.0, + "expression": "Cl_rear_s - Cl_tot - 1*0.36166105", + "loss": 0.50883603, + "metrics": { + "blind": { + "mae": 0.5115897817526611, + "max_error": 1.3084667483314454, + "r2": 0.8913520806262037, + "rmse": 0.6185084190755046 + }, + "train": { + "mae": 0.5795634345522055, + "max_error": 1.5807728045650244, + "r2": 0.845486504602687, + "rmse": 0.7133274286136856 + }, + "validation": { + "mae": 0.6033473594860524, + "max_error": 1.6074809902317404, + "r2": 0.8323003613461467, + "rmse": 0.7225459099894854 + } + }, + "score": 0.07453137772339904, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.3227362162403344, + 1.2037641410746098 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s1-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "-3.42718580000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.9544928717990875, + "max_error": 2.6677375101287844, + "r2": -0.06960118015226113, + "rmse": 1.1775542696652672 + }, + "train": { + "mae": 0.9356876636247213, + "max_error": 2.5723350309570314, + "r2": 0.0, + "rmse": 1.1543700781767878 + }, + "validation": { + "mae": 1.1611861102038068, + "max_error": 2.453357245846558, + "r2": -0.02474796598124085, + "rmse": 1.3309862414902394 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 14.924565, + "metrics": { + "blind": { + "mae": 4.015475215521382, + "max_error": 5.428431107196957, + "r2": -12.492117051655832, + "rmse": 4.182250530397289 + }, + "train": { + "mae": 3.666626389869326, + "max_error": 5.4882073793851305, + "r2": -10.199833829937404, + "rmse": 3.8632325419886757 + }, + "validation": { + "mae": 3.573956801699518, + "max_error": 5.306768887676299, + "r2": -7.347420144707828, + "rmse": 3.798753998542295 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9717117354739457, + 2.1014768863096833 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "-3.42718580000000", + "loss": 1.3325701, + "metrics": { + "blind": { + "mae": 0.9544928717990875, + "max_error": 2.6677375101287844, + "r2": -0.06960118015226113, + "rmse": 1.1775542696652672 + }, + "train": { + "mae": 0.9356876636247213, + "max_error": 2.5723350309570314, + "r2": 0.0, + "rmse": 1.1543700781767878 + }, + "validation": { + "mae": 1.1611861102038068, + "max_error": 2.453357245846558, + "r2": -0.02474796598124085, + "rmse": 1.3309862414902394 + } + }, + "score": 2.4158990295712357, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4271858, + -3.4271858 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_rear_a", + "loss": 1.2548754, + "metrics": { + "blind": { + "mae": 1.0449586209085282, + "max_error": 2.449974110815674, + "r2": -0.16331101247692859, + "rmse": 1.2280552736678032 + }, + "train": { + "mae": 0.944066776534058, + "max_error": 2.35066295764409, + "r2": 0.05830445580236965, + "rmse": 1.1202122533467724 + }, + "validation": { + "mae": 1.0301506146462112, + "max_error": 2.44936775311362, + "r2": 0.15944264802101826, + "rmse": 1.2054486341829402 + } + }, + "score": 0.06007319876769049, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.716223447350785, + -2.496328321285546 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_a" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_F + Cd_rear_s - Cl_rear_a", + "loss": 1.1308674, + "metrics": { + "blind": { + "mae": 1.0528625244176966, + "max_error": 2.2540177875198424, + "r2": -0.0741091218348422, + "rmse": 1.1800331209839525 + }, + "train": { + "mae": 0.9068121204115214, + "max_error": 2.3066944039892405, + "r2": 0.1513638410233421, + "rmse": 1.0634224568677353 + }, + "validation": { + "mae": 1.055953425432586, + "max_error": 2.4236992951482534, + "r2": 0.144494821296957, + "rmse": 1.2161197879395234 + } + }, + "score": 0.05202566795249283, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.743477223906666, + -1.3408857630565763 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_s", + "Cl_rear_a" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_F - Cl_rear_a - 0.6148392", + "loss": 0.90536934, + "metrics": { + "blind": { + "mae": 0.6670868822679534, + "max_error": 2.6729006642240107, + "r2": 0.3887930894727254, + "rmse": 0.8901518990766994 + }, + "train": { + "mae": 0.6859475623004999, + "max_error": 2.877565050334391, + "r2": 0.32058412557066684, + "rmse": 0.9515090121756004 + }, + "validation": { + "mae": 0.8716926283936811, + "max_error": 3.012870037182887, + "r2": 0.15108006119686745, + "rmse": 1.2114302129564491 + } + }, + "score": 0.22239725692077716, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4231090700018227, + -2.462265839869809 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cl_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s1-20260718", + "used_features": [] + }, + { + "expression": "4.2450876 - Cd_F", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.4864923012617771, + "max_error": 1.4844708053057847, + "r2": 0.5095307268937257, + "rmse": 0.621705822090268 + }, + "train": { + "mae": 0.532682616856469, + "max_error": 1.6600453158968893, + "r2": 0.4391066573852819, + "rmse": 0.6409879253078663 + }, + "validation": { + "mae": 0.4486209835420844, + "max_error": 1.1177723921498117, + "r2": 0.2763789347829002, + "rmse": 0.5415654961033757 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_tot", + "loss": 12.83894, + "metrics": { + "blind": { + "mae": 3.410895864161921, + "max_error": 5.270724028814584, + "r2": -16.353806974602914, + "rmse": 3.69808094752343 + }, + "train": { + "mae": 3.3522688799284417, + "max_error": 5.331191410223255, + "r2": -16.527088709326897, + "rmse": 3.5831467740708467 + }, + "validation": { + "mae": 3.7664415053305, + "max_error": 5.270716132217785, + "r2": -37.48526057083856, + "rmse": 3.9495044019490466 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9717117354739457, + 2.1014768863096833 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot" + ] + }, + { + "complexity": 2.0, + "expression": "3.58964230000000", + "loss": 0.73251975, + "metrics": { + "blind": { + "mae": 0.7156032913034058, + "max_error": 1.9754979747436523, + "r2": -0.015120028644284744, + "rmse": 0.894412232581936 + }, + "train": { + "mae": 0.6809710428167568, + "max_error": 1.9874165195129394, + "r2": -1.3496981310368028e-11, + "rmse": 0.8558737485927089 + }, + "validation": { + "mae": 0.541179220479486, + "max_error": 1.2444989818237304, + "r2": -0.03361822797461311, + "rmse": 0.6472550779232124 + } + }, + "score": 2.863747716333927, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.5896423, + 3.5896423 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "4.2450876 - Cd_F", + "loss": 0.41086546, + "metrics": { + "blind": { + "mae": 0.4864923012617771, + "max_error": 1.4844708053057847, + "r2": 0.5095307268937257, + "rmse": 0.621705822090268 + }, + "train": { + "mae": 0.532682616856469, + "max_error": 1.6600453158968893, + "r2": 0.4391066573852819, + "rmse": 0.6409879253078663 + }, + "validation": { + "mae": 0.4486209835420844, + "max_error": 1.1177723921498117, + "r2": 0.2763789347829002, + "rmse": 0.5415654961033757 + } + }, + "score": 0.2891122450053741, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.4947090322745797, + 5.308845758124983 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + }, + { + "complexity": 7.0, + "expression": "(5.324223 - Cd_F)*0.7627375", + "loss": 0.3358053, + "metrics": { + "blind": { + "mae": 0.4589053249149124, + "max_error": 1.263673335381367, + "r2": 0.6122909973024155, + "rmse": 0.5527541027302021 + }, + "train": { + "mae": 0.4893818823065092, + "max_error": 1.3685764356791825, + "r2": 0.5415752194359944, + "rmse": 0.5794870682571727 + }, + "validation": { + "mae": 0.41473485466623145, + "max_error": 0.8880761070592547, + "r2": 0.45388153753298177, + "rmse": 0.4704774537223519 + } + }, + "score": 0.06724476175038548, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 1.9631676676620327, + 4.872352778595355 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s1-20260718", + "used_features": [ + "Cd_F" + ] + }, + { + "expression": "-Cl_F - 0.97393936", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.49041997909498025, + "max_error": 1.2572607857903533, + "r2": 0.9001963385690752, + "rmse": 0.5927999328070218 + }, + "train": { + "mae": 0.6658938359650768, + "max_error": 2.029082779891982, + "r2": 0.7877028698664693, + "rmse": 0.8361376447007807 + }, + "validation": { + "mae": 0.8370798448866674, + "max_error": 1.5362721941171147, + "r2": 0.7216586100302188, + "rmse": 0.9308683824349571 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "v_hat_C", + "loss": 572.42816, + "score": 0.0 + }, + { + "complexity": 2.0, + "expression": "-0.996727000000000", + "loss": 3.293149, + "score": 5.158042992973096 + }, + { + "complexity": 3.0, + "expression": "Cd_B - Cl_F", + "loss": 2.3283682, + "score": 0.3466765709902704 + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.97393936", + "loss": 0.699126, + "score": 1.2030919743570359 + }, + { + "complexity": 6.0, + "expression": "Cd_T*(-0.6324934) - Cl_F", + "loss": 0.69181806, + "score": 0.005253990763430652 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s0-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cd_F - Cd_T + Cl_B", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.6231878152546415, + "max_error": 1.9885636125691235, + "r2": 0.552056076461005, + "rmse": 0.7620471086093406 + }, + "train": { + "mae": 0.7342316690731007, + "max_error": 2.512784048449248, + "r2": 0.3171506454301751, + "rmse": 0.9539102441187086 + }, + "validation": { + "mae": 1.1329897828974749, + "max_error": 3.074340256745927, + "r2": -0.15227570867977192, + "rmse": 1.4113776536134601 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-3.42718480000000", + "loss": 1.3325701, + "score": 0.0 + }, + { + "complexity": 4.0, + "expression": "Cl_B - 0.4373363", + "loss": 1.2897294, + "score": 0.01633852731329421 + }, + { + "complexity": 5.0, + "expression": "Cd_F - Cd_T + Cl_B", + "loss": 0.90994483, + "score": 0.3488037366101736 + }, + { + "complexity": 6.0, + "expression": "Cd_F + Cl_B - 1.1818507", + "loss": 0.8240926, + "score": 0.09910106906317463 + }, + { + "complexity": 7.0, + "expression": "Cd_F + Cl_B - 1*1.27998970477569", + "loss": 0.81691647, + "score": 0.00874605250517483 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s0-20260718", + "used_features": [ + "Cd_F", + "Cd_T", + "Cl_B" + ] + }, + { + "expression": "-Cd_F + Cl_T", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.7118404753586219, + "max_error": 1.656642786692828, + "r2": 0.1251484814267848, + "rmse": 0.8303213536757458 + }, + "train": { + "mae": 0.5996233581300673, + "max_error": 1.703632699791342, + "r2": 0.26958021650371866, + "rmse": 0.7314690748236615 + }, + "validation": { + "mae": 0.6638345209104068, + "max_error": 1.4289310396416113, + "r2": -0.5246841013635692, + "rmse": 0.7861136228399879 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "3.58962660000000", + "loss": 0.73251975, + "score": 0.0 + }, + { + "complexity": 3.0, + "expression": "-Cd_F + Cl_T", + "loss": 0.535047, + "score": 0.31413570948040975 + }, + { + "complexity": 6.0, + "expression": "-Cd_F + Cl_T + 0.2021903", + "loss": 0.52543455, + "score": 0.006042986331297801 + }, + { + "complexity": 7.0, + "expression": "-Cd_F + 1.8107936 + 2.1841455", + "loss": 0.4734393, + "score": 0.10420192440001749 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s0-20260718", + "used_features": [ + "Cd_F", + "Cl_T" + ] + }, + { + "expression": "-Cl_F - 1.0641414", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.5461006173765695, + "max_error": 1.1670587457903534, + "r2": 0.8878566997573463, + "rmse": 0.6283788729509503 + }, + "train": { + "mae": 0.6904518763946521, + "max_error": 1.938880739891982, + "r2": 0.7852254407727535, + "rmse": 0.8410022027029342 + }, + "validation": { + "mae": 0.8856501741174367, + "max_error": 1.6264742341171146, + "r2": 0.6830503554415559, + "rmse": 0.993332209837076 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.996941270000000", + "loss": 3.2931488, + "score": 0.0 + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 1.0641414", + "loss": 0.70728475, + "score": 0.7690830625855118 + }, + { + "complexity": 7.0, + "expression": "-Cl_F - 1*0.81994265 - 0.16563436", + "loss": 0.69926447, + "score": 0.0038014391586658866 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s2-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "Cd_F + Cl_B - 1*0.9876573", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.7602784167117583, + "max_error": 1.8539407197748452, + "r2": 0.38036913861198673, + "rmse": 0.8962651603440794 + }, + "train": { + "mae": 0.7645155493522319, + "max_error": 2.2401701030683845, + "r2": 0.32831930732182246, + "rmse": 0.9460770195705993 + }, + "validation": { + "mae": 0.7690160760757967, + "max_error": 2.386317430915232, + "r2": 0.41384686920967395, + "rmse": 1.0066316431429736 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-3.42718460000000", + "loss": 1.3325702, + "score": 0.0 + }, + { + "complexity": 4.0, + "expression": "Cl_B - 1*0.6120373", + "loss": 1.2592075, + "score": 0.028313501885544157 + }, + { + "complexity": 6.0, + "expression": "Cd_F + Cl_B - 1*0.9876573", + "loss": 0.8950617, + "score": 0.17067258968092752 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s2-20260718", + "used_features": [ + "Cd_F", + "Cl_B" + ] + }, + { + "expression": "-v_hat_B + v_hat_B - (Cd_F - Cl_T)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.7118404753586219, + "max_error": 1.656642786692828, + "r2": 0.1251484814267848, + "rmse": 0.8303213536757458 + }, + "train": { + "mae": 0.5996233581300673, + "max_error": 1.703632699791342, + "r2": 0.26958021650371866, + "rmse": 0.7314690748236615 + }, + "validation": { + "mae": 0.6638345209104068, + "max_error": 1.4289310396416113, + "r2": -0.5246841013635692, + "rmse": 0.7861136228399879 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "3.58965020000000", + "loss": 0.73251975, + "score": 0.0 + }, + { + "complexity": 6.0, + "expression": "-Cd_F + Cl_T - 0.15480581", + "loss": 0.5976719, + "score": 0.05086209045299802 + }, + { + "complexity": 7.0, + "expression": "-v_hat_B + v_hat_B - (Cd_F - Cl_T)", + "loss": 0.535047, + "score": 0.11068734766841769 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s2-20260718", + "used_features": [ + "Cd_F", + "Cl_T", + "v_hat_B" + ] + }, + { + "expression": "Cl_rear_s - Cl_tot", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.4807591224031057, + "max_error": 1.627055261284113, + "r2": 0.8842103151952228, + "rmse": 0.6385131479629004 + }, + "train": { + "mae": 0.6030272865280464, + "max_error": 1.9424338545650244, + "r2": 0.8146377915041603, + "rmse": 0.7812972805506826 + }, + "validation": { + "mae": 0.48503216925578624, + "max_error": 1.2458199402317405, + "r2": 0.8863621001990252, + "rmse": 0.5947863360502038 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-0.996842800000000", + "loss": 3.293149, + "metrics": { + "blind": { + "mae": 1.7200291851827192, + "max_error": 2.8155992611434937, + "r2": -0.01740655503398214, + "rmse": 1.8927017092441418 + }, + "train": { + "mae": 1.626760531928141, + "max_error": 3.0960828646209717, + "r2": -9.736655925962623e-12, + "rmse": 1.8147036597048312 + }, + "validation": { + "mae": 1.6889466849524895, + "max_error": 3.100995002606201, + "r2": -0.18738451196153494, + "rmse": 1.9226271618516302 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9968428, + -0.9968428 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cl_rear_s - Cl_tot", + "loss": 0.6104254, + "metrics": { + "blind": { + "mae": 0.4807591224031057, + "max_error": 1.627055261284113, + "r2": 0.8842103151952228, + "rmse": 0.6385131479629004 + }, + "train": { + "mae": 0.6030272865280464, + "max_error": 1.9424338545650244, + "r2": 0.8146377915041603, + "rmse": 0.7812972805506826 + }, + "validation": { + "mae": 0.48503216925578624, + "max_error": 1.2458199402317405, + "r2": 0.8863621001990252, + "rmse": 0.5947863360502038 + } + }, + "score": 1.6854434376852563, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.9610751662403345, + 1.5654251910746098 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "complexity": 4.0, + "expression": "0.3312596 - Cl_tot", + "loss": 0.59062934, + "metrics": { + "blind": { + "mae": 0.6031481379297087, + "max_error": 1.746946695373869, + "r2": 0.8238812466549623, + "rmse": 0.7874766950541061 + }, + "train": { + "mae": 0.6116669084850327, + "max_error": 2.1142268505678414, + "r2": 0.8206490872116979, + "rmse": 0.7685241348901267 + }, + "validation": { + "mae": 0.4969410845830613, + "max_error": 1.9446173765496253, + "r2": 0.8610856777335283, + "rmse": 0.6576167944414708 + } + }, + "score": 0.03296744479299885, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.023647366909766, + 1.9840624063476087 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_tot" + ] + }, + { + "complexity": 5.0, + "expression": "-Cd_tot + Cl_rear_s - Cl_tot", + "loss": 0.43822038, + "metrics": { + "blind": { + "mae": 0.4485898249259662, + "max_error": 1.4922307189553976, + "r2": 0.8925188211545467, + "rmse": 0.6151784580069828 + }, + "train": { + "mae": 0.4951097644540931, + "max_error": 1.633214071393013, + "r2": 0.8669296871659338, + "rmse": 0.6619821879852604 + }, + "validation": { + "mae": 0.33305069900476764, + "max_error": 1.0505659061018378, + "r2": 0.9335120593704735, + "rmse": 0.4549574953623542 + } + }, + "score": 0.2984667118456428, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -5.062552052550018, + 2.5371369265485555 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_s", + "Cl_tot" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s2-20260718", + "used_features": [ + "Cl_rear_s", + "Cl_tot" + ] + }, + { + "expression": "-3.42718580000000", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.9544928717990875, + "max_error": 2.6677375101287844, + "r2": -0.06960118015226113, + "rmse": 1.1775542696652672 + }, + "train": { + "mae": 0.9356876636247213, + "max_error": 2.5723350309570314, + "r2": 0.0, + "rmse": 1.1543700781767878 + }, + "validation": { + "mae": 1.1611861102038068, + "max_error": 2.453357245846558, + "r2": -0.02474796598124085, + "rmse": 1.3309862414902394 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 12.088527, + "metrics": { + "blind": { + "mae": 3.604053920690467, + "max_error": 5.507440937450156, + "r2": -10.324960188781834, + "rmse": 3.831672100422448 + }, + "train": { + "mae": 3.2191855638507225, + "max_error": 5.482499948469922, + "r2": -8.071586939600623, + "rmse": 3.476855925181549 + }, + "validation": { + "mae": 3.43715241420404, + "max_error": 5.008954750814155, + "r2": -6.871280799844309, + "rmse": 3.688822315858675 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -0.9352073539048433, + 0.5065408768132329 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 2.0, + "expression": "-3.42718580000000", + "loss": 1.3325701, + "metrics": { + "blind": { + "mae": 0.9544928717990875, + "max_error": 2.6677375101287844, + "r2": -0.06960118015226113, + "rmse": 1.1775542696652672 + }, + "train": { + "mae": 0.9356876636247213, + "max_error": 2.5723350309570314, + "r2": 0.0, + "rmse": 1.1543700781767878 + }, + "validation": { + "mae": 1.1611861102038068, + "max_error": 2.453357245846558, + "r2": -0.02474796598124085, + "rmse": 1.3309862414902394 + } + }, + "score": 2.2051473374217356, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.4271858, + -3.4271858 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_rear_a", + "loss": 1.2548754, + "metrics": { + "blind": { + "mae": 1.0449586209085282, + "max_error": 2.449974110815674, + "r2": -0.16331101247692859, + "rmse": 1.2280552736678032 + }, + "train": { + "mae": 0.944066776534058, + "max_error": 2.35066295764409, + "r2": 0.05830445580236965, + "rmse": 1.1202122533467724 + }, + "validation": { + "mae": 1.0301506146462112, + "max_error": 2.44936775311362, + "r2": 0.15944264802101826, + "rmse": 1.2054486341829402 + } + }, + "score": 0.06007319876769049, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -2.716223447350785, + -2.496328321285546 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_tot", + "Cl_rear_a" + ] + }, + { + "complexity": 4.0, + "expression": "Cl_rear_s - 4.079724", + "loss": 1.1671332, + "metrics": { + "blind": { + "mae": 0.9769536198856027, + "max_error": 2.0741068498944637, + "r2": 0.002200116706522759, + "rmse": 1.1373436813298115 + }, + "train": { + "mae": 0.9089042345216766, + "max_error": 2.1135234992733, + "r2": 0.12414875776806178, + "rmse": 1.0803394525857546 + }, + "validation": { + "mae": 0.9597405955830078, + "max_error": 2.168394806959271, + "r2": 0.2688186250476442, + "rmse": 1.1242880480019906 + } + }, + "score": 0.07248579917779054, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -4.1671016152729985, + -2.685892199330568 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cl_rear_s" + ] + }, + { + "complexity": 5.0, + "expression": "Cd_F + Cd_rear_s - Cl_rear_a", + "loss": 1.1308674, + "metrics": { + "blind": { + "mae": 1.0528625244176966, + "max_error": 2.2540177875198424, + "r2": -0.0741091218348422, + "rmse": 1.1800331209839525 + }, + "train": { + "mae": 0.9068121204115214, + "max_error": 2.3066944039892405, + "r2": 0.1513638410233421, + "rmse": 1.0634224568677353 + }, + "validation": { + "mae": 1.055953425432586, + "max_error": 2.4236992951482534, + "r2": 0.144494821296957, + "rmse": 1.2161197879395234 + } + }, + "score": 0.031565536727195136, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.743477223906666, + -1.3408857630565763 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cd_rear_s", + "Cl_rear_a" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_F - Cl_rear_a - 0.6149357", + "loss": 0.90536934, + "metrics": { + "blind": { + "mae": 0.6670193322679534, + "max_error": 2.672997164224011, + "r2": 0.38882810685178626, + "rmse": 0.8901263993380607 + }, + "train": { + "mae": 0.6859148504360932, + "max_error": 2.877661550334391, + "r2": 0.3205841337867452, + "rmse": 0.9515090064223695 + }, + "validation": { + "mae": 0.8716604617270145, + "max_error": 3.012966537182887, + "r2": 0.15106141278682828, + "rmse": 1.211443518759651 + } + }, + "score": 0.22239725692077716, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + -3.423205570001823, + -2.4623623398698093 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_F", + "Cl_rear_a" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s2-20260718", + "used_features": [] + }, + { + "expression": "Cd_rear_s - 1*(-3.797646)", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.5933509859058155, + "max_error": 1.6154779665603338, + "r2": 0.32705078694623346, + "rmse": 0.7282327008549573 + }, + "train": { + "mae": 0.5887325040894211, + "max_error": 1.682232260654032, + "r2": 0.3242440775514327, + "rmse": 0.7035656634903266 + }, + "validation": { + "mae": 0.5868111061441245, + "max_error": 1.0712929106748699, + "r2": -0.1082595105926838, + "rmse": 0.6702180501635275 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "3.58964230000000", + "loss": 0.73251975, + "metrics": { + "blind": { + "mae": 0.7156032913034058, + "max_error": 1.9754979747436523, + "r2": -0.015120028644284744, + "rmse": 0.894412232581936 + }, + "train": { + "mae": 0.6809710428167568, + "max_error": 1.9874165195129394, + "r2": -1.3496981310368028e-11, + "rmse": 0.8558737485927089 + }, + "validation": { + "mae": 0.541179220479486, + "max_error": 1.2444989818237304, + "r2": -0.03361822797461311, + "rmse": 0.6472550779232124 + } + }, + "score": 0.0, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 3.5896423, + 3.5896423 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [] + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s - 1*(-3.797646)", + "loss": 0.4950046, + "metrics": { + "blind": { + "mae": 0.5933509859058155, + "max_error": 1.6154779665603338, + "r2": 0.32705078694623346, + "rmse": 0.7282327008549573 + }, + "train": { + "mae": 0.5887325040894211, + "max_error": 1.682232260654032, + "r2": 0.3242440775514327, + "rmse": 0.7035656634903266 + }, + "validation": { + "mae": 0.5868111061441245, + "max_error": 1.0712929106748699, + "r2": -0.1082595105926838, + "rmse": 0.6702180501635275 + } + }, + "score": 0.19596162376513773, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.8624386460951565, + 4.304186876813233 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + }, + { + "complexity": 6.0, + "expression": "Cd_rear_s + Cd_rear_s - 1*(-4.005648)", + "loss": 0.44762772, + "metrics": { + "blind": { + "mae": 0.5520231275010701, + "max_error": 1.3169503005425929, + "r2": 0.4577865432432776, + "rmse": 0.6536784653031794 + }, + "train": { + "mae": 0.579769508551828, + "max_error": 1.3770463017951249, + "r2": 0.3889206242245522, + "rmse": 0.6690499137238294 + }, + "validation": { + "mae": 0.6498931870246827, + "max_error": 1.3446644844282867, + "r2": -0.3264650947573231, + "rmse": 0.7332351897438764 + } + }, + "score": 0.05030257531986474, + "static_safety": { + "finite": true, + "grid_size": 9, + "observed_range": [ + 2.135233292190313, + 5.018729753626466 + ], + "required_output_range": null, + "safe": true, + "within_output_range": true + }, + "used_features": [ + "Cd_rear_s" + ] + } + ], + "run": "article-discovery-v2-karman_re50-symmetry-s2-20260718", + "used_features": [ + "Cd_rear_s" + ] + }, + { + "expression": "-0.7096292*Cl_tot", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.723727670553521, + "max_error": 1.9640253273595125, + "r2": 0.7775228127295778, + "rmse": 0.8850700629795708 + }, + "train": { + "mae": 0.6306711155476785, + "max_error": 2.0480659163367, + "r2": 0.8055278933837895, + "rmse": 0.8002660156939427 + }, + "validation": { + "mae": 0.6708888933891096, + "max_error": 1.6380930786557497, + "r2": 0.7849291042328842, + "rmse": 0.8182578974052923 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cd_rear_s", + "loss": 3.2979498, + "score": 0.0 + }, + { + "complexity": 2.0, + "expression": "-0.996727000000000", + "loss": 3.293149, + "score": 0.0014567528100149184 + }, + { + "complexity": 3.0, + "expression": "Cd_tot - Cl_tot", + "loss": 1.454674, + "score": 0.8170624293287055 + }, + { + "complexity": 4.0, + "expression": "-0.7096292*Cl_tot", + "loss": 0.6404257, + "score": 0.8204039880333618 + }, + { + "complexity": 5.0, + "expression": "0.36803198766096 - Cl_tot", + "loss": 0.59198165, + "score": 0.07865747370336694 + }, + { + "complexity": 7.0, + "expression": "0.14725198 + Cl_tot*(-0.9106349)", + "loss": 0.54498553, + "score": 0.04135819696496 + } + ], + "run": "article-discovery-karman_re50-symmetry-s0-20260718", + "used_features": [ + "Cl_tot" + ] + }, + { + "expression": "-Cd_rear_s - 3.6351843", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.8747539490556357, + "max_error": 2.6797796868329526, + "r2": 0.1520684811696743, + "rmse": 1.04845642211977 + }, + "train": { + "mae": 0.8708439090619147, + "max_error": 2.6352282928844573, + "r2": 0.15208411978409986, + "rmse": 1.0629710719029888 + }, + "validation": { + "mae": 1.1558900409119415, + "max_error": 2.635687287881191, + "r2": -0.018275154376978797, + "rmse": 1.3267760009687817 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "-3.42718580000000", + "loss": 1.3325701, + "score": 0.0 + }, + { + "complexity": 4.0, + "expression": "-Cd_rear_s - 3.6351843", + "loss": 1.1299074, + "score": 0.08248690054513905 + }, + { + "complexity": 7.0, + "expression": "0.43898523*Cl_tot - 3.6351478", + "loss": 1.0423651, + "score": 0.026881138875174886 + } + ], + "run": "article-discovery-karman_re50-symmetry-s0-20260718", + "used_features": [ + "Cd_rear_s" + ] + }, + { + "expression": "3.58964090000000", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.7156033613034058, + "max_error": 1.9754965747436524, + "r2": -0.01512041648919027, + "rmse": 0.8944124034450779 + }, + "train": { + "mae": 0.6809710190879433, + "max_error": 1.9874151195129395, + "r2": -2.8191671219701675e-11, + "rmse": 0.8558737485989972 + }, + "validation": { + "mae": 0.5411794717615371, + "max_error": 1.2444975818237305, + "r2": -0.033619034378585155, + "rmse": 0.6472553304095511 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_rear_s", + "loss": 9.530709, + "score": 0.0 + }, + { + "complexity": 2.0, + "expression": "3.58964090000000", + "loss": 0.73251975, + "score": 2.5657840875380575 + }, + { + "complexity": 4.0, + "expression": "Cd_rear_s + 3.7976456", + "loss": 0.49500462, + "score": 0.1959616035633057 + } + ], + "run": "article-discovery-karman_re50-symmetry-s0-20260718", + "used_features": [] + }, + { + "expression": "-Cl_F - 0.97393924", + "head": "front_independent", + "offline_metrics": { + "blind": { + "mae": 0.49041991309498023, + "max_error": 1.2572609057903534, + "r2": 0.9001963519109014, + "rmse": 0.5927998931840569 + }, + "train": { + "mae": 0.6658938074905006, + "max_error": 2.029082899891982, + "r2": 0.7877028698754074, + "rmse": 0.8361376446831793 + }, + "validation": { + "mae": 0.8370797802712827, + "max_error": 1.5362720741171145, + "r2": 0.721658657915631, + "rmse": 0.930868302362392 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_F", + "loss": 12.74901, + "score": 0.0 + }, + { + "complexity": 2.0, + "expression": "-0.997001600000000", + "loss": 3.293149, + "score": 1.3536093716656468 + }, + { + "complexity": 3.0, + "expression": "Cd_B - Cl_F", + "loss": 2.3283682, + "score": 0.3466765709902704 + }, + { + "complexity": 4.0, + "expression": "-Cl_F - 0.97393924", + "loss": 0.699126, + "score": 1.2030919743570359 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s1-20260718", + "used_features": [ + "Cl_F" + ] + }, + { + "expression": "(u_hat_C - v_hat_C)*(-0.03525998)", + "head": "upper_independent", + "offline_metrics": { + "blind": { + "mae": 0.5505187343700306, + "max_error": 1.6983451666185858, + "r2": 0.651808249982069, + "rmse": 0.6718606923994995 + }, + "train": { + "mae": 0.5350727642971097, + "max_error": 1.6167995529800656, + "r2": 0.6907469763245383, + "rmse": 0.6419512345520259 + }, + "validation": { + "mae": 0.5768797566853501, + "max_error": 1.5815477839698793, + "r2": 0.7155536722687605, + "rmse": 0.7012376074867244 + } + }, + "pareto": [ + { + "complexity": 1.0, + "expression": "Cl_B", + "loss": 1.6338015, + "score": 0.0 + }, + { + "complexity": 2.0, + "expression": "-3.42718580000000", + "loss": 1.3325701, + "score": 0.20380002447619994 + }, + { + "complexity": 3.0, + "expression": "Cd_F - Cl_T", + "loss": 1.2707369, + "score": 0.04751251513501657 + }, + { + "complexity": 4.0, + "expression": "Cl_B - 0.6122672", + "loss": 1.2592077, + "score": 0.009114254763073109 + }, + { + "complexity": 5.0, + "expression": "Cd_F - Cd_T + Cl_B", + "loss": 0.9099448, + "score": 0.32485405430770486 + }, + { + "complexity": 6.0, + "expression": "(u_hat_C - v_hat_C)*(-0.03525998)", + "loss": 0.41210136, + "score": 0.7921145998211963 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s1-20260718", + "used_features": [ + "u_hat_C", + "v_hat_C" + ] + }, + { + "expression": "4.2450795 - Cd_F", + "head": "lower_independent", + "offline_metrics": { + "blind": { + "mae": 0.4864931112617771, + "max_error": 1.484462705305785, + "r2": 0.509530960113372, + "rmse": 0.621705674278736 + }, + "train": { + "mae": 0.5326837151615536, + "max_error": 1.6600372158968897, + "r2": 0.43910665731966037, + "rmse": 0.6409879253453624 + }, + "validation": { + "mae": 0.44861828354208444, + "max_error": 1.117764292149812, + "r2": 0.2763871297757494, + "rmse": 0.541562429485952 + } + }, + "pareto": [ + { + "complexity": 2.0, + "expression": "3.58959820000000", + "loss": 0.73251975, + "score": 0.0 + }, + { + "complexity": 4.0, + "expression": "4.2450795 - Cd_F", + "loss": 0.4108655, + "score": 0.28911219632764146 + } + ], + "run": "article-discovery-karman_re50-raw_complete-s1-20260718", + "used_features": [ + "Cd_F" + ] + } + ], + "n_head_fits": 18 + } + }, + "schema_version": "sr-per-case-discovery-summary-v1", + "status": "offline_structure_discovery_only" +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json new file mode 100644 index 0000000..c7e126b --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","deployment_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json","sha256":"706065fe25f1de68b46ec6c48ff77494f88a8334034f088e2aa0bd832709bffd"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"-1.8266041890847688 * Cd_rear_a + 2.064492712013321 * Cl_F","fitted_expression_hash":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.923970+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.307503612438916,"max_error":6.6079721626127785,"r2":0.4850695270815516,"rmse":1.9726011328480333},"per_case":{"illusion_0.75L":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.5739591302681346,"max_error":3.3424080910109764,"r2":0.5849593103911039,"rmse":0.8222819810233019},"illusion_1.5L:trajectory-001":{"mae":2.6947750368964387,"max_error":6.6079721626127785,"r2":0.5054483693010415,"rmse":3.2053404976775877},"illusion_1L:trajectory-001":{"mae":0.6537766701521746,"max_error":1.6590883178597347,"r2":-1.7176468806077265,"rmse":0.8503589392559022}}},"optimizer":{"cost":2299.6727405241863,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.8266041890847688,2.064492712013321],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.453521441627065,3.453521441627065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.0*Cd_rear_a+1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..7ddf033 --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"4fa91734e96c3b803fe3c5102f2972c783fb2cae6d1c53121264e04f8dee44ef"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.0*Cd_rear_a+1.0*Cl_F --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:05.948557+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-a-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json new file mode 100644 index 0000000..6d5455d --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-b-20260718-joint-front_odd-anchor-upper","deployment_expression":"0.8521893407148629 * Cd_rear_s * Cl_F - 0.5910125146472169 * Cl_tot","deployment_expression_hash":"61b4cd009615b69fa5e3593c85d64f88594042b6e9b26c8760ebfd701985741c","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json","sha256":"63dbfe927b3b0a56e1399d9f09bbe5bf8e6a17bfc619109fce8ac3ed86e7f6c1"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"0.8521893407148629 * Cd_rear_s * Cl_F - 0.5910125146472169 * Cl_tot","fitted_expression_hash":"61b4cd009615b69fa5e3593c85d64f88594042b6e9b26c8760ebfd701985741c","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-b-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=1.0*Cd_rear_s*Cl_F-1.0*Cl_tot --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:07.867900+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.5331620759226978,"max_error":4.597459365895853,"r2":0.5704346338351429,"rmse":1.8016881034318797},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.5331620759226978,"max_error":4.597459365895853,"r2":0.5704346338351429,"rmse":1.8016881034318797},"per_case":{"illusion_0.75L":{"mae":1.7659104728838297,"max_error":2.7278834280912285,"r2":-1.0353522897778906,"rmse":1.82093829992918},"illusion_1.5L":{"mae":1.7429866328409351,"max_error":4.597459365895853,"r2":0.7891695184573272,"rmse":2.0928352995455333},"illusion_1L":{"mae":1.0905891220433288,"max_error":2.7677971478813035,"r2":-6.6761404440053465,"rmse":1.4291480619484727}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.7659104728838297,"max_error":2.7278834280912285,"r2":-1.0353522897778906,"rmse":1.82093829992918},"illusion_1.5L:trajectory-001":{"mae":1.7429866328409351,"max_error":4.597459365895853,"r2":0.7891695184573272,"rmse":2.0928352995455333},"illusion_1L:trajectory-001":{"mae":1.0905891220433288,"max_error":2.7677971478813035,"r2":-6.6761404440053465,"rmse":1.4291480619484727}}},"optimizer":{"cost":1918.433293030346,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.8521893407148629,0.5910125146472169],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7472064356175704,12.708771876840656],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_s*Cl_F-1.0*Cl_tot"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-illusion-topology-b-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..63f9222 --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-illusion-topology-b-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-illusion-topology-b-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","deployment_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json","sha256":"6cb38413c1f3f71958d73e9b17af1a6149c3537964a1613b8b1bb955749b8089"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1.5L":0.4,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl"],"fitted_expression":"1.2544396437730243 * Cd_rear_a - 1.5280742226055937 * Cl_F","fitted_expression_hash":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"50c1d9f95bd72afc14e2d06a205bf4432672224ebf7daeb442ea6c517fbd9ab7","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0","illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5","illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}],"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}],"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode joint --run-id article-refit-illusion-topology-b-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_plus_target --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=1.0*Cd_rear_s*Cl_F-1.0*Cl_tot --rear-topology-expression=1.0*Cd_rear_a-1.0*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_plus_target-s2-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:07.892842+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_plus_target","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1182,"offline_metrics":{"aggregate":{"mae":1.3347434522491872,"max_error":5.1284309169813636,"r2":0.35977551190618673,"rmse":1.582342893396769},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.8418913657002385,"r2":-5.716214401690077,"rmse":1.6135181404524286},"illusion_1.5L:trajectory-001":{"mae":1.6134200605811944,"max_error":5.1284309169813636,"r2":0.5923157000574751,"rmse":2.001037886690218},"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.644677644209391,"r2":-12.51145232816593,"rmse":0.950701679451056}}},"optimizer":{"cost":1479.7511380794053,"initial_constants":[1.0,1.0],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.2544396437730243,1.5280742226055937],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197,"illusion_1.5L":197,"illusion_1L":197},"source_n_samples":591,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.783488691153346,2.783488691153346],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cd_rear_a-1.0*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-illusion-topology-b-20260718","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L","illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json b/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json new file mode 100644 index 0000000..76c7471 --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-front_odd-anchor-upper","deployment_expression":"-0.3813914338074549 * Cd_rear_a","deployment_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json","sha256":"9a1a2460de70c4f4ada69346063a08a69129d7e92327b27b3edce7c6658266f2"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.3813914338074549 * Cd_rear_a","fitted_expression_hash":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.909757+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":0.8871970121691837,"max_error":3.1129392223720718,"r2":0.569893129188437,"rmse":1.1876253306847817},"per_case":{"karman_re100":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.4185936275080585,"max_error":1.0955821056835267,"r2":0.8671467983940033,"rmse":0.5135631126152992},"karman_re200:trajectory-001":{"mae":1.2298118937935285,"max_error":3.1129392223720718,"r2":0.6100439984925499,"rmse":1.479939170343044},"karman_re400:trajectory-001":{"mae":0.33672077170019626,"max_error":1.5776490649555193,"r2":0.889317319501568,"rmse":0.40632824118402716},"karman_re50:trajectory-001":{"mae":1.5636617556749512,"max_error":2.9759021257795277,"r2":0.24877051861854704,"rmse":1.7386046261867798}}},"optimizer":{"cost":1111.4376937542997,"initial_constants":[0.377],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.3813914338074549],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.757506074649838,3.757506074649838],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.377*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..8a4a699 --- /dev/null +++ b/src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article-refit-karman-topology-a-20260718-joint-rear_shared-anchor-upper","deployment_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","deployment_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","sha256":"6b1df3305d4383d01e878514f9829d3f93972dceb72545ee0c88d4c0ea5c774d"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.3077817865589976 * Cl_rear_s - 3.431208680510616","fitted_expression_hash":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"dcbfdaaa48a61bd904bb540f3067760530bd69e88ce87d54110a79ecc54b79d6","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f","karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54","karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297","karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}],"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}],"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}],"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint --run-id article-refit-karman-topology-a-20260718 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.377*Cd_rear_a --rear-topology-expression=1.0*Cl_rear_s-3.398 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s1-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-18T11:16:03.984925+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"joint","n_samples":1576,"offline_metrics":{"aggregate":{"mae":1.6187300987800453,"max_error":5.696368795667644,"r2":0.43628212827609136,"rmse":2.0607605371174653},"per_case":{"karman_re100":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":1.0006688314254448,"max_error":2.8981380386291606,"r2":0.5666493042582955,"rmse":1.2840386166065354},"karman_re200:trajectory-001":{"mae":2.1666670671113346,"max_error":5.670965666249501,"r2":0.5482857091180131,"rmse":2.5968601036466894},"karman_re400:trajectory-001":{"mae":2.2429778016421604,"max_error":5.696368795667644,"r2":0.2241685628053649,"rmse":2.64205797128055},"karman_re50:trajectory-001":{"mae":1.0646066949412405,"max_error":2.8922650453346073,"r2":-0.531526183356178,"rmse":1.2704440463502682}}},"optimizer":{"cost":3346.4263851764426,"initial_constants":[1.0,3.398],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3077817865589976,3.431208680510616],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"source_n_samples":788,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.994729833741495,3.1323124727202623],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.0*Cl_rear_s-3.398"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article-refit-karman-topology-a-20260718","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/article-scaling-L1-v2-20260718/summary.json b/src/SR_analysis/results/runs/article-scaling-L1-v2-20260718/summary.json new file mode 100644 index 0000000..9d537cd --- /dev/null +++ b/src/SR_analysis/results/runs/article-scaling-L1-v2-20260718/summary.json @@ -0,0 +1,893 @@ +{ + "schema_version": "sr-scaling-shadow-v1", + "rows": [ + { + "family": "karman", + "scene": "karman_re400", + "variant": "parent", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 3.64809775864367, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.5845745432483256, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_front__scale_t0_0p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -1.35698129636988, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 1.824048879321835, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 0.7922872716241626, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_front__scale_t0_0p75", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_0p75.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -2.0354719445548204, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 2.7360733189827533, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.1884309074362447, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_front__scale_t0_1p0", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p0.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 3.64809775864367, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.5845745432483256, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_front__scale_t0_1p25", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p25.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -3.3924532409247004, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 4.560122198304588, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.9807181790604074, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_front__scale_t0_1p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_front__scale_t0_1p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -4.070943889109641, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 5.472146637965507, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 2.3768618148724894, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t0_0p5", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p5.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -5.481120172180477, + 1.381297188840756 + ], + "action_max": [ + 3.64809775864367, + -0.14944810389517693, + 6.712969257126054 + ], + "action_rms": [ + 1.5845745432483256, + 3.598098404900574, + 3.5873899625564776 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t0_0p75", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_0p75.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -6.506075918015407, + 0.3563414430058258 + ], + "action_max": [ + 3.64809775864367, + 1.491432184412543, + 8.353849545433775 + ], + "action_rms": [ + 1.5845745432483256, + 3.7926055046046474, + 3.777358658072044 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t0_1p0", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p0.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 3.64809775864367, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.5845745432483256, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t0_1p25", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p25.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -8.555987409685267, + -1.6935700486640344 + ], + "action_max": [ + 3.64809775864367, + 4.773192761027982, + 11.635610122049215 + ], + "action_rms": [ + 1.5845745432483256, + 4.35441326934622, + 4.332268626310667 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t0_1p5", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t0_1p5.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -9.580943155520197, + -2.7185257944989645 + ], + "action_max": [ + 3.64809775864367, + 6.414073049335701, + 13.276490410356937 + ], + "action_rms": [ + 1.5845745432483256, + 4.701109331290859, + 4.676493641721191 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t1_0p5", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p5.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -5.815427323595029, + -2.384218643084412 + ], + "action_max": [ + 3.64809775864367, + 4.84791681297557, + 8.279125493486186 + ], + "action_rms": [ + 1.5845745432483256, + 2.742326869467574, + 2.728261584069009 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t1_0p75", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_0p75.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -6.673229493722682, + -1.5264164729567584 + ], + "action_max": [ + 3.64809775864367, + 3.990114642847917, + 9.13692766361384 + ], + "action_rms": [ + 1.5845745432483256, + 3.349435149597116, + 3.332161121481227 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t1_1p0", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p0.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -7.531031663850338, + -0.6686143028291043 + ], + "action_max": [ + 3.64809775864367, + 3.1323124727202623, + 9.994729833741495 + ], + "action_rms": [ + 1.5845745432483256, + 4.048298915576876, + 4.029247241615578 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t1_1p25", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p25.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -8.38883383397799, + 0.18918786729854986 + ], + "action_max": [ + 3.64809775864367, + 2.274510302592608, + 10.852532003869149 + ], + "action_rms": [ + 1.5845745432483256, + 4.798997970880651, + 4.778913899075174 + ] + }, + { + "family": "karman", + "scene": "karman_re400", + "variant": "karman_rear__scale_t1_1p5", + "front": "src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/karman_rear__scale_t1_1p5.json", + "failed": null, + "n": 200, + "action_min": [ + -2.7139625927397604, + -9.246636004105644, + 1.0469900374262036 + ], + "action_max": [ + 3.64809775864367, + 1.4167081324649544, + 11.710334173996802 + ], + "action_rms": [ + 1.5845745432483256, + 5.580653014238004, + 5.559932724559934 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "parent", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.782940764483794, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.124129747069443, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t0_0p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.397167161685415, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 6.331123847071019, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.181503340685403, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t0_0p75", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_0p75.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.241083495811513, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 6.0570323057774065, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.145513425262957, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t0_1p0", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p0.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.782940764483794, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.124129747069443, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t0_1p25", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p25.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -6.92891616406371, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.715612771011644, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.1176528688801204, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t0_1p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t0_1p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.124501846751194, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.825641366163605, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.126175444764142, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t1_0p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -3.7670435191698624, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 3.081041106716933, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 1.593763016539683, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t1_0p75", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_0p75.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -5.240980087166262, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 4.314216727046723, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 2.3391215556414013, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t1_1p0", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p0.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.782940764483794, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.124129747069443, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t1_1p25", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p25.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -9.012333453295913, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 7.502767496898353, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.9250696333012325, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_front__scale_t1_1p5", + "front": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_front__scale_t1_1p5.json", + "rear": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json", + "failed": null, + "n": 200, + "action_min": [ + -10.93966707665422, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 9.222594229312918, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 4.733861478886358, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t0_0p5", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p5.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.715381618999938, + -4.715381618999938 + ], + "action_max": [ + 5.782940764483794, + 5.491828878808212, + 5.491828878808212 + ], + "action_rms": [ + 3.124129747069443, + 2.3595685568437843, + 2.3595685568437843 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t0_0p75", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_0p75.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.527146369417029, + -4.527146369417029 + ], + "action_max": [ + 5.782940764483794, + 5.384636779180021, + 5.384636779180021 + ], + "action_rms": [ + 3.124129747069443, + 2.3330727388670986, + 2.3330727388670986 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t0_1p0", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p0.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.782940764483794, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.124129747069443, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t0_1p25", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p25.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.2011388818922875, + -4.2011388818922875 + ], + "action_max": [ + 5.782940764483794, + 5.170252579923641, + 5.170252579923641 + ], + "action_rms": [ + 3.124129747069443, + 2.3080406976993144, + 2.3080406976993144 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t0_1p5", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t0_1p5.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.276702177176543, + -4.276702177176543 + ], + "action_max": [ + 5.782940764483794, + 5.207711486589237, + 5.207711486589237 + ], + "action_rms": [ + 3.124129747069443, + 2.3098075004703063, + 2.3098075004703063 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t1_0p5", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p5.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -2.213914383872528, + -2.213914383872528 + ], + "action_max": [ + 5.782940764483794, + 2.7444992129913737, + 2.7444992129913737 + ], + "action_rms": [ + 3.124129747069443, + 1.1708994982285597, + 1.1708994982285597 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t1_0p75", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_0p75.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -3.169744985240279, + -3.169744985240279 + ], + "action_max": [ + 5.782940764483794, + 3.850891410035683, + 3.850891410035683 + ], + "action_rms": [ + 3.124129747069443, + 1.7306750581223147, + 1.7306750581223147 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t1_1p0", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p0.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -4.33891111983412, + -4.33891111983412 + ], + "action_max": [ + 5.782940764483794, + 5.277444679551832, + 5.277444679551832 + ], + "action_rms": [ + 3.124129747069443, + 2.315827663588474, + 2.315827663588474 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t1_1p25", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p25.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -5.611874149375559, + -5.611874149375559 + ], + "action_max": [ + 5.782940764483794, + 6.703997949067979, + 6.703997949067979 + ], + "action_rms": [ + 3.124129747069443, + 2.9110943761508006, + 2.9110943761508006 + ] + }, + { + "family": "illusion", + "scene": "illusion_1.5L", + "variant": "illusion_rear__scale_t1_1p5", + "front": "src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json", + "rear": "src/SR_analysis/results/runs/article-ablation-formulas-v2-20260718/formulas/illusion_rear__scale_t1_1p5.json", + "failed": null, + "n": 200, + "action_min": [ + -7.084999829937612, + -6.884837178916999, + -6.884837178916999 + ], + "action_max": [ + 5.782940764483794, + 8.130551218584127, + 8.130551218584127 + ], + "action_rms": [ + 3.124129747069443, + 3.511335110047482, + 3.511335110047482 + ] + } + ] +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p5L__pysr__f-ae67ae507106__si-400.json b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p5L__pysr__f-ae67ae507106__si-400.json new file mode 100644 index 0000000..71752bc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p5L__pysr__f-ae67ae507106__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.05102444458128158,0.009016115476615502,0.009016115476615502],"min":[-0.0245612311737278,-0.03260520968990352,-0.03260520968990352]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0005102444458128158,9.016115476615502e-05,9.016115476615502e-05],"min":[-0.000245612311737278,-0.0003260520968990352,-0.0003260520968990352]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-illusion-v2-20260720-illusion_0p5L__pysr__f-ae67ae507106__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"generalization","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.5,"target_force_slice":[0,2],"target_radius":0.5,"target_radius_lattice":10.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"afc6f7f929e719534a8161be3ea08e08a247ac3da1b144e6c91b653c79a53133","created_utc":"2026-07-20T15:01:23.289907+00:00","data_hashes":{"harmonics":"8ae0a7ee6679eaca01f36df85432caa8b30e264287578b13a8bf740b3a524b24","norm":null,"target_sensors":"ef31c3722e9ef0040560388bc90d8bff1436ac1c9f2034727209de0905cb2efc"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":26,"per_channel":{"0":0.7544848240084119,"1":0.7440733746043406,"2":0.8386049022277197,"3":0.7473791140493833,"4":0.787977417310079,"5":0.8318130493474504},"similarity":0.7840554469245641},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_generalization --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-illusion-v2-20260720","created_at":"2026-07-20T15:01:23.289875+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"fad231e54b13fbbca8741df6ab22313fc7a35644080de1406e432d274ab6dc52","run_id":"article2-gen-illusion-v2-20260720","sample_interval":400,"scene":"illusion_0.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/telemetry/illusion_0p5L__pysr__f-ae67ae507106__si-400.npz","sha256":"51825f8591cf16b9e8b36c5329edb237d66b1b0ad39dd704539b2911e455c88d","telemetry_hash":"51825f8591cf16b9e8b36c5329edb237d66b1b0ad39dd704539b2911e455c88d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p6L__pysr__f-ae67ae507106__si-400.json b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p6L__pysr__f-ae67ae507106__si-400.json new file mode 100644 index 0000000..7d300ed --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p6L__pysr__f-ae67ae507106__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.12446094168693396,0.022983708311380108,0.022983708311380108],"min":[-0.026468990435465634,-0.09054170221995748,-0.09054170221995748]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0012446094168693396,0.0002298370831138011,0.0002298370831138011],"min":[-0.00026468990435465635,-0.0009054170221995749,-0.0009054170221995749]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-illusion-v2-20260720-illusion_0p6L__pysr__f-ae67ae507106__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"generalization","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.6,"target_force_slice":[0,2],"target_radius":0.6,"target_radius_lattice":12.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"9476f59215ca15d603068dde7e8c21e4ad97080942aa092fbb1035a90437cce7","created_utc":"2026-07-20T15:04:01.354565+00:00","data_hashes":{"harmonics":"5d2753cf8a13fce3aeeeae18bca633b6187c931d42207527d6eedd728aa4ee71","norm":null,"target_sensors":"4c6108414214d2f0a466f04db4643f34fab597f7443768eb5549742694e0cf77"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":8,"per_channel":{"0":0.8661508046918445,"1":0.8495833181918392,"2":0.8278365814023547,"3":0.6711600046190951,"4":0.9133288595411513,"5":0.7985577119761729},"similarity":0.8211028800704095},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_generalization --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-illusion-v2-20260720","created_at":"2026-07-20T15:04:01.354530+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"ecf49df1a863d274f072e8a96b2d84493f209658ba2583bfa4fa09f6f0d32738","run_id":"article2-gen-illusion-v2-20260720","sample_interval":400,"scene":"illusion_0.6L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/telemetry/illusion_0p6L__pysr__f-ae67ae507106__si-400.npz","sha256":"02e1f1c7d4a94b080c3b6faa82b78113e8b6a51ecb4dc8ff74d2aa813e4500cf","telemetry_hash":"02e1f1c7d4a94b080c3b6faa82b78113e8b6a51ecb4dc8ff74d2aa813e4500cf"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p8L__pysr__f-ae67ae507106__si-600.json b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p8L__pysr__f-ae67ae507106__si-600.json new file mode 100644 index 0000000..be21a1a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_0p8L__pysr__f-ae67ae507106__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.03959615049727805,0.03002600291883413,0.03002600291883413],"min":[-0.05476442358026876,-0.016098282080993398,-0.016098282080993398]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0003959615049727805,0.0003002600291883413,0.0003002600291883413],"min":[-0.0005476442358026876,-0.000160982820809934,-0.000160982820809934]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-illusion-v2-20260720-illusion_0p8L__pysr__f-ae67ae507106__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"generalization","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.8,"target_force_slice":[0,2],"target_radius":0.8,"target_radius_lattice":16.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"80548dc7e1bf0c84339bd77e61f779be0014abcef18b965aa91ccc9ac0f5ce95","created_utc":"2026-07-20T15:06:50.738826+00:00","data_hashes":{"harmonics":"5fa7e71700074c995c37be053739f009f7c0ee28461a2db9a542eabf32a0f5d9","norm":null,"target_sensors":"3ec5b165e27183c5554f6799d2a4b5ffe4fd8af64ce3c12e9d9c253a39dfa8b0"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-2,"per_channel":{"0":0.8979753040605121,"1":0.8910498851910233,"2":0.7796691606442133,"3":0.9252256462867889,"4":0.863973918888304,"5":0.949544553593215},"similarity":0.8845730781106761},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_generalization --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-illusion-v2-20260720","created_at":"2026-07-20T15:06:50.738787+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"5520a0a3b8c215cfa639329973d5f64657becc79e539cba56e8676876548b3f7","run_id":"article2-gen-illusion-v2-20260720","sample_interval":600,"scene":"illusion_0.8L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/telemetry/illusion_0p8L__pysr__f-ae67ae507106__si-600.npz","sha256":"9043a05352525ab9474b372dd2838ca96394141bcfb39f1d573750df530c9258","telemetry_hash":"9043a05352525ab9474b372dd2838ca96394141bcfb39f1d573750df530c9258"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_1p2L__pysr__f-ae67ae507106__si-600.json b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_1p2L__pysr__f-ae67ae507106__si-600.json new file mode 100644 index 0000000..35df6b0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_1p2L__pysr__f-ae67ae507106__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.05826668279275605,0.022952422080605092,0.022952422080605092],"min":[-0.04706245209439991,-0.036194006805816525,-0.036194006805816525]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0005826668279275605,0.00022952422080605093,0.00022952422080605093],"min":[-0.0004706245209439991,-0.00036194006805816527,-0.00036194006805816527]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-illusion-v2-20260720-illusion_1p2L__pysr__f-ae67ae507106__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"generalization","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.2,"target_force_slice":[0,2],"target_radius":1.2,"target_radius_lattice":24.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"9554bf539db39f9acb0844e776227877f0d6228a8ba62c1b9e9d2e16b7403c83","created_utc":"2026-07-20T15:09:41.027436+00:00","data_hashes":{"harmonics":"a25637716e6467193f365d0c896df838d8e9ce4f89aa54c8f88c961fa55b7d75","norm":null,"target_sensors":"72efbf22ba3cbf7cfe300a0df05155bcc2c81157a3e664c42f620b6066ee7354"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-14,"per_channel":{"0":0.9772755586438708,"1":0.954084955750861,"2":0.7717115200228162,"3":0.9435591980194052,"4":0.964805038438903,"5":0.9417445834519135},"similarity":0.9255301423879616},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_generalization --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-illusion-v2-20260720","created_at":"2026-07-20T15:09:41.027399+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"7e619a1f109ecb337dfde444377b20d7af147f6d11930b0f1c36c4ca209813cf","run_id":"article2-gen-illusion-v2-20260720","sample_interval":600,"scene":"illusion_1.2L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/telemetry/illusion_1p2L__pysr__f-ae67ae507106__si-600.npz","sha256":"0ae5246c48da05a7e0421a294775a37a0ddecee54f5bed289ab046ca45232f4d","telemetry_hash":"0ae5246c48da05a7e0421a294775a37a0ddecee54f5bed289ab046ca45232f4d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_2L__pysr__f-ae67ae507106__si-800.json b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_2L__pysr__f-ae67ae507106__si-800.json new file mode 100644 index 0000000..298a2f1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/validations/illusion_2L__pysr__f-ae67ae507106__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.04222692729133723,0.0333658850588551,0.0333658850588551],"min":[-0.06037457250172254,-0.018865105932750814,-0.018865105932750814]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0004222692729133723,0.000333658850588551,0.000333658850588551],"min":[-0.0006037457250172254,-0.00018865105932750815,-0.00018865105932750815]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-illusion-v2-20260720-illusion_2L__pysr__f-ae67ae507106__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"generalization","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":2.0,"target_force_slice":[0,2],"target_radius":2.0,"target_radius_lattice":40.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"2276769d233f7c246c03a970d8e139dd4b7521b0140f882af1c720f079e3fab3","created_utc":"2026-07-20T15:12:42.158999+00:00","data_hashes":{"harmonics":"6ed3fb05b5d79bb9e0bdb35295f5702d303d29428c1d6ae21f756042bfb97c60","norm":null,"target_sensors":"c08ca88808cd060cf01b3ee9b62b4e8007977a9567738005eb058381c715c078"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-11,"per_channel":{"0":0.8024905249476433,"1":0.6365409481416766,"2":0.8719367484251658,"3":0.6571836133177082,"4":0.8593595284554694,"5":0.7137666437257495},"similarity":0.7568796678355688},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_generalization --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-illusion-v2-20260720","created_at":"2026-07-20T15:12:42.158967+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"72a25f6da3013394374925c584f6afbc76c969232956192ec6836c237d828819","run_id":"article2-gen-illusion-v2-20260720","sample_interval":800,"scene":"illusion_2L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-illusion-v2-20260720/telemetry/illusion_2L__pysr__f-ae67ae507106__si-800.npz","sha256":"58253c0934e5fd6ea2f8edec791918fad626567325c55f6e399dcbcd7c5f31ee","telemetry_hash":"58253c0934e5fd6ea2f8edec791918fad626567325c55f6e399dcbcd7c5f31ee"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re150__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re150__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..2bb138f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re150__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.057754645717902,-0.2315860273493167,6.630831333671916],"min":[-2.928092736375486,-6.648211870733793,0.2142054902874393]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.03057754645717902,-0.002315860273493167,0.06630831333671916],"min":[-0.029280927363754858,-0.06648211870733793,0.002142054902874393]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-karman-20260720-karman_re150__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":null,"mu":0.013333333333333334,"n_objects_env":7,"nu":0.002666666666666667,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":150,"re_d":75.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"generalization","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"c7322171145e60fdf6d04afcd8ed7c26eb7113f6f86c3a40c41c0c1b682caf1b","created_utc":"2026-07-20T14:49:50.372236+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2a9fea7eef572fd0422cee5ba2640434dfbf3f9428e2307811e15bcd435b5e70"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":0,"per_channel":{"0":0.941134238243103,"1":0.9505219565044778,"2":0.7639504909515381,"3":0.8887729374691844,"4":0.9505954265594483,"5":0.9500013650084536},"similarity":0.9074960691227009},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re25,karman_re70,karman_re150,karman_re300 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-karman-20260720","created_at":"2026-07-20T14:49:50.372200+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"9167041611c1d819d314ee6d60e845afa54d077886b049655c7ced37add5b7eb","run_id":"article2-gen-karman-20260720","sample_interval":800,"scene":"karman_re150","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-karman-20260720/telemetry/karman_re150__pysr__f-a678f2019e0d__si-800.npz","sha256":"b701e9d8a16f9dd80e5a72ed1a10dd89845c2810a9d3d37847f2cead92fc847e","telemetry_hash":"b701e9d8a16f9dd80e5a72ed1a10dd89845c2810a9d3d37847f2cead92fc847e"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re25__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re25__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..6769576 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re25__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0024328318978877775,-3.428500379306231,3.433916981715001],"min":[-0.0003393282962308832,-3.43372408623881,3.4286932747824226]},"actions_omega":{"layout":["front","upper","lower"],"max":[2.4328318978877774e-05,-0.03428500379306231,0.03433916981715001],"min":[-3.393282962308832e-06,-0.0343372408623881,0.034286932747824225]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-karman-20260720-karman_re25__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":null,"mu":0.08,"n_objects_env":7,"nu":0.016,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":25,"re_d":12.5,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"generalization","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"392268c8d7f09b93435bba127719f478b0cf966cbfe6bb87ede9972f819b7164","created_utc":"2026-07-20T14:43:22.133165+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"267ad2d88081cdbf848c68d94f6d44bb1d19eb03af4b2b74419a82185faa8314"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-3,"per_channel":{"0":0.9906055331230164,"1":0.9881714189735552,"2":0.9709311246871948,"3":0.9999813991778699,"4":0.9905951718489329,"5":0.9881827098007003},"similarity":0.9880778929352115},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re25,karman_re70,karman_re150,karman_re300 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-karman-20260720","created_at":"2026-07-20T14:43:22.133124+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"b51ac62277b40068930f0ecff2821d7a63d83de38b533eeb4c69c1e0da223b9d","run_id":"article2-gen-karman-20260720","sample_interval":800,"scene":"karman_re25","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-karman-20260720/telemetry/karman_re25__pysr__f-a678f2019e0d__si-800.npz","sha256":"35181381187d7a236753f7a4b896cd015efd956dd31ae64b23df6d158b72bf93","telemetry_hash":"35181381187d7a236753f7a4b896cd015efd956dd31ae64b23df6d158b72bf93"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re300__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re300__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..a2bae75 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re300__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.5795534261551047,0.4308396463962026,7.293257007417435],"min":[-2.8353893147705502,-6.839476489512468,0.02294087150876445]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.03579553426155105,0.004308396463962026,0.07293257007417435],"min":[-0.028353893147705502,-0.06839476489512468,0.0002294087150876445]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-karman-20260720-karman_re300__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":null,"mu":0.006666666666666667,"n_objects_env":7,"nu":0.0013333333333333335,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":300,"re_d":150.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"generalization","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"43423b3b84a1e3d590bb6f926b70ae1ee85e7afaf0d1b4e54106df650efcd6cd","created_utc":"2026-07-20T14:53:03.589630+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"c0034d91c2244faefcdbf0f024ef0f0c532fe3cfcf419af2a998c7f571309302"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":0,"per_channel":{"0":0.8865606307983398,"1":0.8882386937737465,"2":0.7468874911467234,"3":0.6884187476709485,"4":0.8869633674621582,"5":0.9174768696616714},"similarity":0.8357576334189313},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re25,karman_re70,karman_re150,karman_re300 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-karman-20260720","created_at":"2026-07-20T14:53:03.589592+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"92eac516705fc9dea04349eb446525b1997d07226a1df0993474456f4301ba81","run_id":"article2-gen-karman-20260720","sample_interval":800,"scene":"karman_re300","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-karman-20260720/telemetry/karman_re300__pysr__f-a678f2019e0d__si-800.npz","sha256":"89804c26ea574dd63127232dd9dedae4f4b57a43d31c8f890a9ee3d497764ec0","telemetry_hash":"89804c26ea574dd63127232dd9dedae4f4b57a43d31c8f890a9ee3d497764ec0"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re70__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re70__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..3b71679 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-gen-karman-20260720/validations/karman_re70__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.8438547006094432,-1.7386648329472068,5.123752528074025],"min":[-1.843904739191379,-5.029944656679108,1.832472704342124]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.018438547006094434,-0.01738664832947207,0.05123752528074025],"min":[-0.01843904739191379,-0.050299446566791084,0.01832472704342124]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-gen-karman-20260720-karman_re70__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":null,"mu":0.02857142857142857,"n_objects_env":7,"nu":0.005714285714285714,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":70,"re_d":35.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"generalization","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"ac77216b5cd4bf6f37d5d3529ee44db7efeef5fccd3cad14cb257dd717995e3b","created_utc":"2026-07-20T14:46:36.435621+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"db0a20f8231aa9f15ad462b60ab6ea2546bc54f6d50c1f563acd7ce0dede08b4"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":2,"per_channel":{"0":0.9649381657441457,"1":0.9725396384523871,"2":0.8920285999774933,"3":0.956178159903114,"4":0.9679563045501709,"5":0.9723903836566024},"similarity":0.9543385420473189},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re25,karman_re70,karman_re150,karman_re300 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-gen-karman-20260720","created_at":"2026-07-20T14:46:36.435604+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"03007666f18976c4557bceea735afadd0875f5b4dbaa8559052750fb0c933db5","run_id":"article2-gen-karman-20260720","sample_interval":800,"scene":"karman_re70","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-gen-karman-20260720/telemetry/karman_re70__pysr__f-a678f2019e0d__si-800.npz","sha256":"2f189ea812785d3ed824f013e7114034fc8621cc0196e9caeb193640d0c9cae3","telemetry_hash":"2f189ea812785d3ed824f013e7114034fc8621cc0196e9caeb193640d0c9cae3"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-generalization-summary-20260720/generalization.csv b/src/SR_analysis/results/runs/article2-generalization-summary-20260720/generalization.csv new file mode 100644 index 0000000..a302b81 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-generalization-summary-20260720/generalization.csv @@ -0,0 +1,10 @@ +objective,scene,parameter,classification,legacy_dtw,status +illusion,illusion_0.5L,0.5,extrapolation,0.7840554469245641,completed +illusion,illusion_0.6L,0.6,extrapolation,0.8211028800704095,completed +illusion,illusion_0.8L,0.8,interpolation,0.8845730781106761,completed +illusion,illusion_1.2L,1.2,interpolation,0.9255301423879616,completed +illusion,illusion_2L,2.0,extrapolation,0.7568796678355688,completed +karman,karman_re150,150.0,interpolation,0.9074960691227009,completed +karman,karman_re25,25.0,extrapolation,0.9880778929352115,completed +karman,karman_re300,300.0,interpolation,0.8357576334189313,completed +karman,karman_re70,70.0,interpolation,0.9543385420473189,completed diff --git a/src/SR_analysis/results/runs/article2-generalization-summary-20260720/summary.json b/src/SR_analysis/results/runs/article2-generalization-summary-20260720/summary.json new file mode 100644 index 0000000..26d2938 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-generalization-summary-20260720/summary.json @@ -0,0 +1,77 @@ +{ + "metric_version": "legacy_dtw_v1_abs_n_unclipped", + "results": [ + { + "objective": "illusion", + "scene": "illusion_0.5L", + "parameter": 0.5, + "classification": "extrapolation", + "legacy_dtw": 0.7840554469245641, + "status": "completed" + }, + { + "objective": "illusion", + "scene": "illusion_0.6L", + "parameter": 0.6, + "classification": "extrapolation", + "legacy_dtw": 0.8211028800704095, + "status": "completed" + }, + { + "objective": "illusion", + "scene": "illusion_0.8L", + "parameter": 0.8, + "classification": "interpolation", + "legacy_dtw": 0.8845730781106761, + "status": "completed" + }, + { + "objective": "illusion", + "scene": "illusion_1.2L", + "parameter": 1.2, + "classification": "interpolation", + "legacy_dtw": 0.9255301423879616, + "status": "completed" + }, + { + "objective": "illusion", + "scene": "illusion_2L", + "parameter": 2.0, + "classification": "extrapolation", + "legacy_dtw": 0.7568796678355688, + "status": "completed" + }, + { + "objective": "karman", + "scene": "karman_re150", + "parameter": 150.0, + "classification": "interpolation", + "legacy_dtw": 0.9074960691227009, + "status": "completed" + }, + { + "objective": "karman", + "scene": "karman_re25", + "parameter": 25.0, + "classification": "extrapolation", + "legacy_dtw": 0.9880778929352115, + "status": "completed" + }, + { + "objective": "karman", + "scene": "karman_re300", + "parameter": 300.0, + "classification": "interpolation", + "legacy_dtw": 0.8357576334189313, + "status": "completed" + }, + { + "objective": "karman", + "scene": "karman_re70", + "parameter": 70.0, + "classification": "interpolation", + "legacy_dtw": 0.9543385420473189, + "status": "completed" + } + ] +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json new file mode 100644 index 0000000..35a389c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.03721944705698309,0.033484695299226826,0.033484695299226826],"min":[-0.0403485810211414,-0.02467507557589893,-0.02467507557589893]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0003721944705698309,0.00033484695299226824,0.00033484695299226824],"min":[-0.00040348581021141405,-0.0002467507557589893,-0.0002467507557589893]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-illusion-20260720-illusion_0p75L__pysr__f-ae67ae507106__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"109cdc68e08fa3bd3bdeb5dce1ce844e90d71734a77020073fbcf4d5e87cda4d","created_utc":"2026-07-20T14:29:40.660821+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"b9189b6933ac62456e61159800a3e92f55b521c8b4faf05a70c132992b728d8c"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-4,"per_channel":{"0":0.8535474042097727,"1":0.8440696756458945,"2":0.7896651824315389,"3":0.8309722849581804,"4":0.9131841493977441,"5":0.8948334565179216},"similarity":0.8543786921935087},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-illusion-20260720","created_at":"2026-07-20T14:29:40.660803+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"4d02a94c1b0c58d5fcb7918ddbc88b3719987ad7b69c9f71ea5460240b03c9c1","run_id":"article2-long-illusion-20260720","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz","sha256":"b500115bc6cb273977ddf6f516e062c77398d55f628a9736fcecd1929fc83951","telemetry_hash":"b500115bc6cb273977ddf6f516e062c77398d55f628a9736fcecd1929fc83951"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json new file mode 100644 index 0000000..2ad9d64 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.04751875632493757,0.03655664863053004,0.03655664863053004],"min":[-0.059035610476469116,-0.022503613711949186,-0.022503613711949186]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.00047518756324937576,0.00036556648630530045,0.00036556648630530045],"min":[-0.0005903561047646912,-0.00022503613711949186,-0.00022503613711949186]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-illusion-20260720-illusion_1L__pysr__f-ae67ae507106__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-20T14:32:45.642404+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"c5b796f69991531849697649bce900e1874aa91c6442027c1beb7023f95f4dd3"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-1,"per_channel":{"0":0.9548678083552254,"1":0.9586846847087145,"2":0.7286621448066499,"3":0.9272604249676483,"4":0.9609709895319409,"5":0.9632054832052543},"similarity":0.9156085892625722},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-illusion-20260720","created_at":"2026-07-20T14:32:45.642371+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"81a81ebfac4b277ae0a9ffe193f34ff9b4890b5311bc2fdb1d14d1a22faf5ea2","run_id":"article2-long-illusion-20260720","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz","sha256":"91fb383f91637afbcb68f6ad3d3ee048ff05c159da89334330be154aa09186f8","telemetry_hash":"91fb383f91637afbcb68f6ad3d3ee048ff05c159da89334330be154aa09186f8"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json new file mode 100644 index 0000000..198ec9a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.14266170227978886,0.039567958821340954,0.039567958821340954],"min":[-0.042428232858790355,-0.10658694103971597,-0.10658694103971597]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0014266170227978886,0.00039567958821340953,0.00039567958821340953],"min":[-0.0004242823285879036,-0.0010658694103971597,-0.0010658694103971597]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-illusion-20260720-illusion_1p5L__pysr__f-ae67ae507106__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"28ba939dd5b07209e5d507ca4bf475afcc9de08ca56da0053c07cd38ed6649aa","created_utc":"2026-07-20T14:36:06.684428+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"3c3847615b55b36a741eed737c805debe03aacdf1da94f8a5a7c2083b58400c0"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","formula_hashes":{"front_deployment_expression":"1df7c515d56d50a9b07d53bf6ffb854635b8b312dcdeceb614b83b09519c0487","front_source":"75a15088f8312f553eb81586c5057726d1e309a6e86db53c1e2de0569d0282c3","pair":"ae67ae5071065b7ee8412791ee1841011530746865528641beddb1a203c51b83","rear_deployment_expression":"485de2caa81b48501f7a970089b1bfcf783a9847e98d055bf84d0564b0e2b8e8","rear_source":"23bc28bdba1ef2bd9fd4603e48e37a31e46224b98c3efc1753df7fa626dcfcd8"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":6,"per_channel":{"0":0.9570548012852669,"1":0.844912696733243,"2":0.724519819021225,"3":0.7552428144133754,"4":0.940351676609781,"5":0.7794387135654688},"similarity":0.8335867536047267},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L,illusion_1.5L --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-illusion-20260720","created_at":"2026-07-20T14:36:06.684395+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"51fe427734e089707e8519d0b8fa6a4e9a9e969fde75e5b3a3a35d457be9647d","run_id":"article2-long-illusion-20260720","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz","sha256":"118163cc274ab9034e9424072720be07bda4cd51c07c90004bcb1c6d2fc01857","telemetry_hash":"118163cc274ab9034e9424072720be07bda4cd51c07c90004bcb1c6d2fc01857"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..3e69d43 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.6574730741171537,-0.8207456754558459,6.041671685565387],"min":[-2.6294547538190454,-6.027175902633626,0.8352414583876056]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02657473074117154,-0.00820745675455846,0.06041671685565387],"min":[-0.026294547538190455,-0.06027175902633626,0.008352414583876056]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-karman-20260720-karman_re100__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-20T14:19:40.608074+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"7fd18e7d3257e9514e26c5323feedff9d5b91a6c808838fad8be118282571688"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-7,"per_channel":{"0":0.9762412130832672,"1":0.9753058478236198,"2":0.8019972602526346,"3":0.967667116286854,"4":0.9728509267171224,"5":0.9719735374053319},"similarity":0.9443393169281383},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-karman-20260720","created_at":"2026-07-20T14:19:40.608038+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"7f28e766ff29735a8928fa4fef43c8b7f96696779809ee20a2449e66d09d86b2","run_id":"article2-long-karman-20260720","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz","sha256":"8557d977962ead46aa7e66a37d1f6a76dd1858794d3cd3dae2ddc9c03539532e","telemetry_hash":"8557d977962ead46aa7e66a37d1f6a76dd1858794d3cd3dae2ddc9c03539532e"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..3d0e919 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.0193102740558,-0.17787453320966629,6.6845428278115655],"min":[-3.147681925021072,-6.789048100736916,0.07336926028431634]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.030193102740558003,-0.0017787453320966629,0.06684542827811565],"min":[-0.03147681925021072,-0.06789048100736916,0.0007336926028431634]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-karman-20260720-karman_re200__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"40f5f9b8b0edc986d26a224527aba95b4bffb85d2eee20905a98385e5324d02d","created_utc":"2026-07-20T14:23:16.470297+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2195952a1147b45b3a14760a4ac06eb27e8d2040c40437bbc1e96a73eb354fe7"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-1,"per_channel":{"0":0.8958912909030914,"1":0.9308393463492394,"2":0.7527182896931967,"3":0.7863030238697926,"4":0.8942160546779633,"5":0.9231339962221682},"similarity":0.8638503336192419},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-karman-20260720","created_at":"2026-07-20T14:23:16.470279+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"2d49690c17936ecffe44eec95d465bc1f4c116f46d5df47269a9cab389806e9d","run_id":"article2-long-karman-20260720","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz","sha256":"0b87f3c01277294b6afc8791efa4cde3a9b129e7b42d538ecdaee13ddb1e689b","telemetry_hash":"0b87f3c01277294b6afc8791efa4cde3a9b129e7b42d538ecdaee13ddb1e689b"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..5bb9f65 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.118209688659029,1.477119895776505,8.339537256797737],"min":[-3.3857310436195687,-7.737017084908686,-0.8745997238874543]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.031182096886590294,0.01477119895776505,0.08339537256797737],"min":[-0.033857310436195685,-0.07737017084908686,-0.008745997238874544]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-karman-20260720-karman_re400__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"a5afd2a7a436f1816a979f4ed5cdd9b51352e791b893edd42e89a704b39dd063","created_utc":"2026-07-20T14:26:50.466284+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2b9e376473a755f5d474319933713275b08299c5670c6c37ea3b364b5fd30ddf"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":1,"per_channel":{"0":0.8545339703559875,"1":0.9155989743613948,"2":0.7822309533754984,"3":0.6791878794630368,"4":0.8531994819641113,"5":0.9154372548994919},"similarity":0.8333647524032535},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-karman-20260720","created_at":"2026-07-20T14:26:50.466251+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"d194fe1978dbb79eea333fb87baed34a4da2c4f22cf1d9d084a3890444c83551","run_id":"article2-long-karman-20260720","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz","sha256":"91f03419cf51c3c6cbd669865b15f04961db8fd560caa51b225f50e701801867","telemetry_hash":"91f03419cf51c3c6cbd669865b15f04961db8fd560caa51b225f50e701801867"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..5bf61d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.4629415234025795,-2.3743555286335467,4.488061832387686],"min":[-1.7407936477423442,-4.432033993952453,2.430383367068779]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.014629415234025795,-0.02374355528633547,0.04488061832387686],"min":[-0.017407936477423443,-0.044320339939524535,0.02430383367068779]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-karman-20260720-karman_re50__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-20T14:16:08.609815+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"282ba1a67d5423bc63c9c465f21ba78233e84b9f819c3c2f30c291fca773425a"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":3,"per_channel":{"0":0.9476927002271016,"1":0.9670580059988424,"2":0.9461903611818949,"3":0.9327708172767113,"4":0.9499107122421264,"5":0.9694447935869296},"similarity":0.9521778984189343},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400 --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 400 --run-id article2-long-karman-20260720","created_at":"2026-07-20T14:16:08.609796+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"4e37528c962cea39f2ce08e4ca5e70ee5209c0dbe63fd4fef25bfe2efdb5986f","run_id":"article2-long-karman-20260720","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz","sha256":"825c856e6b11439cd5cdb495d0c9a091dfb3a50c53d559cc226a688448b2f4da","telemetry_hash":"825c856e6b11439cd5cdb495d0c9a091dfb3a50c53d559cc226a688448b2f4da"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-20260721/validations/karman_re50__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/article2-long-ppo-20260721/validations/karman_re50__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..e30601f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-20260721/validations/karman_re50__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.545637607574463,-0.7860596179962159,5.6938241720199585],"min":[-3.740260124206543,-5.185780167579651,1.2509546279907227]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.02545637607574463,-0.007860596179962159,0.05693824172019959],"min":[-0.03740260124206543,-0.05185780167579651,0.012509546279907227]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-20260721-karman_re50__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"f9d6fb9362d17553d0011be524a582fa5f5d9efefc4cd9b49857035376891172","created_utc":"2026-07-21T08:24:23.458811+00:00","data_hashes":{"harmonics":null,"norm":"bb4134a978c72fc9a814a11b0082cbd77b9b2bc76e26fb9530e5c84ea8333a34","target_sensors":"2bde41822d8788a41edcac2a77b8dd9038ef0943d1b8e1a44a4d046aee187f33"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":4,"per_channel":{"0":0.9642230868339539,"1":0.9712836809611569,"2":0.9510893980662029,"3":0.9364747092748682,"4":0.9438153803348541,"5":0.962246788914005},"similarity":0.9548555073975068},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re50.zip","sha256":"dfd2163b0bf89115303015b010aa5ad5fe95b8f4bd81176a356714a1984445f4"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re50,karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --device 0 --steps 400 --run-id article2-long-ppo-20260721","created_at":"2026-07-21T08:24:23.458750+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"dc2194609a9bfbc8149fce70997be7a8f4dd9a76aa2baacdd87fd3c105b2376e","run_id":"article2-long-ppo-20260721","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-20260721/telemetry/karman_re50__ppo__f-ppo__si-800.npz","sha256":"18911f2b0511dd6d33eaafa11c4ac4d7fd840c7feae62290b0cd59591d3d695d","telemetry_hash":"18911f2b0511dd6d33eaafa11c4ac4d7fd840c7feae62290b0cd59591d3d695d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_0p75L__ppo__f-ppo__si-400.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_0p75L__ppo__f-ppo__si-400.json new file mode 100644 index 0000000..6b700b1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_0p75L__ppo__f-ppo__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[-0.7183976769447327,-0.2426251173019409,2.6866795420646667],"min":[-1.963219165802002,-2.273040324449539,1.1146145462989807]},"actions_omega":{"layout":["front","upper","lower"],"max":[-0.007183976769447327,-0.002426251173019409,0.02686679542064667],"min":[-0.01963219165802002,-0.022730403244495392,0.011146145462989808]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-illusion_0p75L__ppo__f-ppo__si-400","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_device":"cpu","model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"ea81f039db261d8d01efd087ef99afd70b3b15d6145e53fd8dbdb2375cb1f9d6","created_utc":"2026-07-21T09:03:51.888988+00:00","data_hashes":{"harmonics":"026b460e9100ae70942ec654908d09bec7c1437ded3a7a6ac2b3115bf47f89b8","norm":"ae0697e1ff0c31e894641c2f2155f8ed48e88fc678d51d76d5a96dc476d2b297","target_sensors":"789f24a2c34df37160774d347d5b3c8715131899bfb929abfb638a75a5cef5fa"},"dt_c":0.2,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-17,"per_channel":{"0":0.9719278878635831,"1":0.980109131730084,"2":0.9730200469493866,"3":0.9680408756766055,"4":0.9794242911868625,"5":0.9854460851897279},"similarity":0.9763280530993748},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_075L_2U_400S.zip","sha256":"1a2d9f77bd6ac44fe7ebe0fe9255e1474c97939238a0200270954fe71f719526"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T09:03:51.888948+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"b97e08f5e890037f0142e210d4b25535ed25d59076dad8122049525a6382fa35","run_id":"article2-long-ppo-cpu-20260721","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_0p75L__ppo__f-ppo__si-400.npz","sha256":"e8865b5378f8766dd76c73003490ee2b5a2b86ffa16bf61e678d06de5bd48b16","telemetry_hash":"e8865b5378f8766dd76c73003490ee2b5a2b86ffa16bf61e678d06de5bd48b16"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1L__ppo__f-ppo__si-600.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1L__ppo__f-ppo__si-600.json new file mode 100644 index 0000000..02927b4 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1L__ppo__f-ppo__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.9136507511138916,-0.5174829959869385,1.424617350101471],"min":[-0.33214765787124634,-1.41354900598526,0.09794557094573975]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.009136507511138916,-0.005174829959869385,0.01424617350101471],"min":[-0.0033214765787124637,-0.0141354900598526,0.0009794557094573975]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-illusion_1L__ppo__f-ppo__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_device":"cpu","model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"1b30bb846fff43c6bba5d2bc1e179147c182235f5f2e47f193fc55ec8cad44b8","created_utc":"2026-07-21T09:06:52.970751+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"5ec96d5803f6ab5aefd52febcc5e39cfd91fcc789f44d5791dd5217580427306"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-10,"per_channel":{"0":0.9822900113132265,"1":0.9632354462777989,"2":0.9845577693647809,"3":0.9636691509642534,"4":0.9809905737638474,"5":0.9796280103683885},"similarity":0.9757284936753826},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T09:06:52.970707+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"e365886f5cbb960d5ff4519a24db32cf923ef3feb286b956035a10850b9e0aab","run_id":"article2-long-ppo-cpu-20260721","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_1L__ppo__f-ppo__si-600.npz","sha256":"635abb56ad3eb2841878b0e3366e7337ece439e3360f6cf9160dc0d4a9ec2210","telemetry_hash":"635abb56ad3eb2841878b0e3366e7337ece439e3360f6cf9160dc0d4a9ec2210"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1p5L__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1p5L__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..2148d9c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/illusion_1p5L__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.941986322402954,3.209744453430176,1.732092022895813],"min":[-2.13261079788208,-1.5269116759300232,-1.8308806419372559]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.01941986322402954,0.03209744453430176,0.01732092022895813],"min":[-0.021326107978820803,-0.015269116759300233,-0.018308806419372558]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-illusion_1p5L__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_device":"cpu","model_name":"d1a3o14_250525_imit_15L_2U","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":800,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.5,"target_force_slice":[0,2],"target_radius":1.5,"target_radius_lattice":30.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"842b661b112122b7865c98e331e805404f396c83e683ee7092219008b8894e38","created_utc":"2026-07-21T09:10:12.001407+00:00","data_hashes":{"harmonics":"7d8ad38f49460c51dc049d774db99ec5d32e45023fd6c8c53f187edaf04e8b34","norm":"861c462697706b36723f9e5150cdf549bcc481bed743c788f01d3398fedf8dc3","target_sensors":"84d276c16720c9be6db60a7ef6e8129607e891a6e710a98e90016b83f3d6a77f"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-7,"per_channel":{"0":0.9403367870383792,"1":0.9316085944624825,"2":0.9431894636816449,"3":0.8604755275365379,"4":0.9461659598681662,"5":0.9384314125765942},"similarity":0.9267012908606341},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_15L_2U.zip","sha256":"3e115a36d4365cfc70994c9307053aa44d9c3ded8c4312f636520b62862be9b6"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T09:10:12.001364+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"c67c0a68cec416ae54c7eea5385727ee4dc9f9357399a64166dc32626a3d9b81","run_id":"article2-long-ppo-cpu-20260721","sample_interval":800,"scene":"illusion_1.5L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_1p5L__ppo__f-ppo__si-800.npz","sha256":"7c27510ee26c3c167fd31cc24c78b2bc4760a3e63b855c873eca9a16fa13b79a","telemetry_hash":"7c27510ee26c3c167fd31cc24c78b2bc4760a3e63b855c873eca9a16fa13b79a"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re100__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re100__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..80dcdaa --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re100__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.2169880867004395,-0.8985059261322021,7.453007459640502],"min":[-2.6229281425476074,-7.235546350479126,1.5537383556365967]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.022169880867004395,-0.008985059261322021,0.07453007459640502],"min":[-0.026229281425476075,-0.07235546350479126,0.015537383556365967]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-karman_re100__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_device":"cpu","model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"7ee51cb66ede200b2c26da1bdc898e86bfc9eb43c93ae3ffb6dcca26a2b0844f","created_utc":"2026-07-21T08:51:02.599062+00:00","data_hashes":{"harmonics":null,"norm":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0","target_sensors":"7e56104d3adb9aea4f3aa5a8bda6a9409917a21f17069d7c4e919615c3c2b91b"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-5,"per_channel":{"0":0.9739215950171153,"1":0.9618603806011379,"2":0.8764793833096822,"3":0.9318430633788618,"4":0.9766342361768087,"5":0.9610971386932458},"similarity":0.9469726328628086},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T08:51:02.598993+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"46130608f32d11b82b4d48f8ad7743529a64874e21f7e1f7d8b0d05334394270","run_id":"article2-long-ppo-cpu-20260721","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re100__ppo__f-ppo__si-800.npz","sha256":"4dd3c744ab75e5fba8f789c604f0ac4337ba0da5d9ff1fd45723ec33b2c75f03","telemetry_hash":"4dd3c744ab75e5fba8f789c604f0ac4337ba0da5d9ff1fd45723ec33b2c75f03"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re200__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re200__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..8054ace --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re200__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[3.6165974140167236,3.29508113861084,11.749144077301025],"min":[-3.2289481163024902,-8.698554039001465,-4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.036165974140167235,0.0329508113861084,0.11749144077301026],"min":[-0.0322894811630249,-0.08698554039001465,-0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-karman_re200__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_device":"cpu","model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"9481d7121899de6cb115eef34993112d644fb82f70b2669be9deec79a76ecff5","created_utc":"2026-07-21T08:54:32.539116+00:00","data_hashes":{"harmonics":null,"norm":"ee532839c659c4e0dbb8c921fae09b8b4a02b57ad832e483710693d1e7fe9c09","target_sensors":"ce9d0b163edb49a17b9e3f7edcb8a88e4939d431a83d7c2502112a6afdf4e64b"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":0,"per_channel":{"0":0.923685896396637,"1":0.9450443419317405,"2":0.7783155977725983,"3":0.878074959324052,"4":0.9300873657067616,"5":0.9464702692814171},"similarity":0.9002797384022011},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re200.zip","sha256":"62ceb682fbfcff1119e049d306d3ac05144b780f166c2835d7d01ca719ffad11"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T08:54:32.539070+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"bd114f4ebfc61c77ac60e5dcf86ab90d8b186d1b194add03599ac6a3424bcbcb","run_id":"article2-long-ppo-cpu-20260721","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re200__ppo__f-ppo__si-800.npz","sha256":"10768d867e75013cd20dda07a67b13095be749af271af9089e2ff84cf857401b","telemetry_hash":"10768d867e75013cd20dda07a67b13095be749af271af9089e2ff84cf857401b"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re400__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re400__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..c5b8466 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/validations/karman_re400__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.3372193574905396,0.09775972366333008,5.3633294105529785],"min":[-0.7251408100128174,-5.202730655670166,-1.4215474128723145]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.013372193574905395,0.0009775972366333008,0.053633294105529784],"min":[-0.007251408100128174,-0.05202730655670166,-0.014215474128723146]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-long-ppo-cpu-20260721-karman_re400__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_device":"cpu","model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"147c126f7209c1541d3e2474ea2bff8b4a3afa332bd18371b5a6415c673a6e4c","created_utc":"2026-07-21T09:01:06.854885+00:00","data_hashes":{"harmonics":null,"norm":"375f9d23d57f9b45945d740eb6823c9d23b73bd667ec02978b9c3728021970cc","target_sensors":"ea2fba52f308eb878ad9c07418fcf26254117f8da27797c875bbda3b5e7ca40e"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-2,"per_channel":{"0":0.8961168130238851,"1":0.9254036091888944,"2":0.7089218576749166,"3":0.7418246450523536,"4":0.8856405993302663,"5":0.9143587894116839},"similarity":0.8453777189469999},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re400.zip","sha256":"e251240ed1179290345f0331f7e014abb74429ec517039fe5836f5f070352617"},"n_steps":400,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_re100,karman_re200,karman_re400,illusion_0.75L,illusion_1L,illusion_1.5L --mode ppo --model-device cpu --device 0 --steps 400 --run-id article2-long-ppo-cpu-20260721","created_at":"2026-07-21T09:01:06.854840+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"6c1ce7387211987d792c1f1dcb4e7232e583b78fcad319932db1db5f7b1a6abc","run_id":"article2-long-ppo-cpu-20260721","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re400__ppo__f-ppo__si-800.npz","sha256":"7d7648ade886256439da88e885038b6ac272e529e22ab5cf570f05d09ca8d2eb","telemetry_hash":"7d7648ade886256439da88e885038b6ac272e529e22ab5cf570f05d09ca8d2eb"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv new file mode 100644 index 0000000..d68718b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_0.75L,sr,72,14.4,36,0.8821041760578131,-3,0.9112451573212942,0.8868466217019078,0.8332091851366891,0.9010089092060096,0.8711686283349991,0.8891465546459787 +illusion_0.75L,sr,108,21.6,36,0.8650008504865346,-6,0.898059563504325,0.8155071995117598,0.9280403388871087,0.7313203975920461,0.952650765577952,0.8644268378460159 +illusion_0.75L,sr,144,28.8,36,0.9063016702895293,-8,0.9170128322309918,0.9423120646064894,0.8888918691211276,0.8428049669601023,0.9550268203020096,0.8917614685164558 +illusion_0.75L,sr,180,36.0,36,0.9109880695878356,-10,0.8996230661869049,0.9562068513801528,0.8339496403932571,0.9200589254291521,0.9374295274416605,0.9186604066958858 +illusion_0.75L,sr,216,43.2,36,0.8933577866754838,15,0.8971297939618429,0.9319797828146774,0.8189815531174341,0.9167894782084558,0.8693543142742581,0.9259117976762354 +illusion_0.75L,sr,252,50.4,36,0.8645366374317005,10,0.9296413676606284,0.8852868890907202,0.8283063206407759,0.8031662767753005,0.8886893391609192,0.8521296312618587 +illusion_0.75L,sr,288,57.6,36,0.8723057078076871,5,0.9435261636972427,0.8763844569006728,0.7749416728814443,0.7908251910056505,0.8938780029614767,0.9542787593996359 +illusion_0.75L,sr,324,64.8,36,0.8839090969443162,0,0.8876008739074072,0.9202129819443345,0.7608263459470537,0.9178492389797207,0.8767580870125029,0.940207053874878 +illusion_0.75L,sr,360,72.0,36,0.8636248283151805,-2,0.8217195686366823,0.871847957405003,0.7829646749628915,0.8924668330033051,0.8975756863753,0.9151742495079007 +illusion_0.75L,sr,396,79.2,36,0.861431107321685,-7,0.9122107459439172,0.9034093711525202,0.7756833384434382,0.7501610953671237,0.945162264837159,0.8819598281859524 +illusion_0.75L,sr,400,80.0,36,0.8543786921935087,-4,0.8535474042097727,0.8440696756458945,0.7896651824315389,0.8309722849581804,0.9131841493977441,0.8948334565179216 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_long.csv new file mode 100644 index 0000000..4566a7e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,sr,0,0.0,velocity,upper_ux,0.7729189991950989 +illusion_0.75L,sr,0,0.0,velocity,upper_uy,0.30032414197921753 +illusion_0.75L,sr,0,0.0,velocity,center_ux,0.8785650730133057 +illusion_0.75L,sr,0,0.0,velocity,center_uy,0.5399895310401917 +illusion_0.75L,sr,0,0.0,velocity,lower_ux,1.0687040090560913 +illusion_0.75L,sr,0,0.0,velocity,lower_uy,0.31180307269096375 +illusion_0.75L,sr,1,0.2,velocity,upper_ux,0.7474719882011414 +illusion_0.75L,sr,1,0.2,velocity,upper_uy,0.2595135271549225 +illusion_0.75L,sr,1,0.2,velocity,center_ux,0.8851585984230042 +illusion_0.75L,sr,1,0.2,velocity,center_uy,0.5446141362190247 +illusion_0.75L,sr,1,0.2,velocity,lower_ux,1.1026451587677002 +illusion_0.75L,sr,1,0.2,velocity,lower_uy,0.3230607509613037 +illusion_0.75L,sr,2,0.4,velocity,upper_ux,0.7271630764007568 +illusion_0.75L,sr,2,0.4,velocity,upper_uy,0.21385109424591064 +illusion_0.75L,sr,2,0.4,velocity,center_ux,0.884249746799469 +illusion_0.75L,sr,2,0.4,velocity,center_uy,0.5382837057113647 +illusion_0.75L,sr,2,0.4,velocity,lower_ux,1.1382644176483154 +illusion_0.75L,sr,2,0.4,velocity,lower_uy,0.33165866136550903 +illusion_0.75L,sr,3,0.6,velocity,upper_ux,0.7122536301612854 +illusion_0.75L,sr,3,0.6,velocity,upper_uy,0.16483819484710693 +illusion_0.75L,sr,3,0.6,velocity,center_ux,0.8746607303619385 +illusion_0.75L,sr,3,0.6,velocity,center_uy,0.5131117105484009 +illusion_0.75L,sr,3,0.6,velocity,lower_ux,1.1758792400360107 +illusion_0.75L,sr,3,0.6,velocity,lower_uy,0.33709415793418884 +illusion_0.75L,sr,4,0.8,velocity,upper_ux,0.7049154043197632 +illusion_0.75L,sr,4,0.8,velocity,upper_uy,0.11450065672397614 +illusion_0.75L,sr,4,0.8,velocity,center_ux,0.8556989431381226 +illusion_0.75L,sr,4,0.8,velocity,center_uy,0.46138325333595276 +illusion_0.75L,sr,4,0.8,velocity,lower_ux,1.2155529260635376 +illusion_0.75L,sr,4,0.8,velocity,lower_uy,0.33846551179885864 +illusion_0.75L,sr,5,1.0,velocity,upper_ux,0.7077232599258423 +illusion_0.75L,sr,5,1.0,velocity,upper_uy,0.06581878662109375 +illusion_0.75L,sr,5,1.0,velocity,center_ux,0.8279233574867249 +illusion_0.75L,sr,5,1.0,velocity,center_uy,0.3781977891921997 +illusion_0.75L,sr,5,1.0,velocity,lower_ux,1.256837010383606 +illusion_0.75L,sr,5,1.0,velocity,lower_uy,0.3342783451080322 +illusion_0.75L,sr,6,1.2,velocity,upper_ux,0.7215998768806458 +illusion_0.75L,sr,6,1.2,velocity,upper_uy,0.021798953413963318 +illusion_0.75L,sr,6,1.2,velocity,center_ux,0.793182909488678 +illusion_0.75L,sr,6,1.2,velocity,center_uy,0.2633153796195984 +illusion_0.75L,sr,6,1.2,velocity,lower_ux,1.2979792356491089 +illusion_0.75L,sr,6,1.2,velocity,lower_uy,0.32207274436950684 +illusion_0.75L,sr,7,1.4,velocity,upper_ux,0.7447476983070374 +illusion_0.75L,sr,7,1.4,velocity,upper_uy,-0.01636715605854988 +illusion_0.75L,sr,7,1.4,velocity,center_ux,0.7549883127212524 +illusion_0.75L,sr,7,1.4,velocity,center_uy,0.12142791599035263 +illusion_0.75L,sr,7,1.4,velocity,lower_ux,1.3354713916778564 +illusion_0.75L,sr,7,1.4,velocity,lower_uy,0.29816898703575134 +illusion_0.75L,sr,8,1.6,velocity,upper_ux,0.7728207111358643 +illusion_0.75L,sr,8,1.6,velocity,upper_uy,-0.05026066675782204 +illusion_0.75L,sr,8,1.6,velocity,center_ux,0.7183037400245667 +illusion_0.75L,sr,8,1.6,velocity,center_uy,-0.03809146583080292 +illusion_0.75L,sr,8,1.6,velocity,lower_ux,1.3633068799972534 +illusion_0.75L,sr,8,1.6,velocity,lower_uy,0.25774338841438293 +illusion_0.75L,sr,9,1.8,velocity,upper_ux,0.8014190793037415 +illusion_0.75L,sr,9,1.8,velocity,upper_uy,-0.08288320899009705 +illusion_0.75L,sr,9,1.8,velocity,center_ux,0.6894593238830566 +illusion_0.75L,sr,9,1.8,velocity,center_uy,-0.20076648890972137 +illusion_0.75L,sr,9,1.8,velocity,lower_ux,1.3734050989151 +illusion_0.75L,sr,9,1.8,velocity,lower_uy,0.19594620168209076 +illusion_0.75L,sr,10,2.0,velocity,upper_ux,0.8283942937850952 +illusion_0.75L,sr,10,2.0,velocity,upper_uy,-0.11600003391504288 +illusion_0.75L,sr,10,2.0,velocity,center_ux,0.6754499077796936 +illusion_0.75L,sr,10,2.0,velocity,center_uy,-0.3465092182159424 +illusion_0.75L,sr,10,2.0,velocity,lower_ux,1.3573791980743408 +illusion_0.75L,sr,10,2.0,velocity,lower_uy,0.1104092225432396 +illusion_0.75L,sr,11,2.2,velocity,upper_ux,0.8541346788406372 +illusion_0.75L,sr,11,2.2,velocity,upper_uy,-0.14897842705249786 +illusion_0.75L,sr,11,2.2,velocity,center_ux,0.6822471022605896 +illusion_0.75L,sr,11,2.2,velocity,center_uy,-0.45239707827568054 +illusion_0.75L,sr,11,2.2,velocity,lower_ux,1.3101434707641602 +illusion_0.75L,sr,11,2.2,velocity,lower_uy,0.004501662217080593 +illusion_0.75L,sr,12,2.4,velocity,upper_ux,0.8798618316650391 +illusion_0.75L,sr,12,2.4,velocity,upper_uy,-0.1801336407661438 +illusion_0.75L,sr,12,2.4,velocity,center_ux,0.7105386257171631 +illusion_0.75L,sr,12,2.4,velocity,center_uy,-0.5049126148223877 +illusion_0.75L,sr,12,2.4,velocity,lower_ux,1.233644962310791 +illusion_0.75L,sr,12,2.4,velocity,lower_uy,-0.11039287596940994 +illusion_0.75L,sr,13,2.6,velocity,upper_ux,0.9064728617668152 +illusion_0.75L,sr,13,2.6,velocity,upper_uy,-0.2083013504743576 +illusion_0.75L,sr,13,2.6,velocity,center_ux,0.7520163059234619 +illusion_0.75L,sr,13,2.6,velocity,center_uy,-0.5146246552467346 +illusion_0.75L,sr,13,2.6,velocity,lower_ux,1.1383835077285767 +illusion_0.75L,sr,13,2.6,velocity,lower_uy,-0.21657684445381165 +illusion_0.75L,sr,14,2.8,velocity,upper_ux,0.9341423511505127 +illusion_0.75L,sr,14,2.8,velocity,upper_uy,-0.23320496082305908 +illusion_0.75L,sr,14,2.8,velocity,center_ux,0.7938551902770996 +illusion_0.75L,sr,14,2.8,velocity,center_uy,-0.5085902810096741 +illusion_0.75L,sr,14,2.8,velocity,lower_ux,1.0400385856628418 +illusion_0.75L,sr,14,2.8,velocity,lower_uy,-0.2965388894081116 +illusion_0.75L,sr,15,3.0,velocity,upper_ux,0.9629361629486084 +illusion_0.75L,sr,15,3.0,velocity,upper_uy,-0.2550898492336273 +illusion_0.75L,sr,15,3.0,velocity,center_ux,0.8285510540008545 +illusion_0.75L,sr,15,3.0,velocity,center_uy,-0.5060709714889526 +illusion_0.75L,sr,15,3.0,velocity,lower_ux,0.953369140625 +illusion_0.75L,sr,15,3.0,velocity,lower_uy,-0.34076786041259766 +illusion_0.75L,sr,16,3.2,velocity,upper_ux,0.9928867816925049 +illusion_0.75L,sr,16,3.2,velocity,upper_uy,-0.27425262331962585 +illusion_0.75L,sr,16,3.2,velocity,center_ux,0.8554810285568237 +illusion_0.75L,sr,16,3.2,velocity,center_uy,-0.5109230279922485 +illusion_0.75L,sr,16,3.2,velocity,lower_ux,0.8862640857696533 +illusion_0.75L,sr,16,3.2,velocity,lower_uy,-0.3511905372142792 +illusion_0.75L,sr,17,3.4,velocity,upper_ux,1.0240286588668823 +illusion_0.75L,sr,17,3.4,velocity,upper_uy,-0.2909493148326874 +illusion_0.75L,sr,17,3.4,velocity,center_ux,0.8762803673744202 +illusion_0.75L,sr,17,3.4,velocity,center_uy,-0.520581066608429 +illusion_0.75L,sr,17,3.4,velocity,lower_ux,0.8381295204162598 +illusion_0.75L,sr,17,3.4,velocity,lower_uy,-0.33737170696258545 +illusion_0.75L,sr,18,3.6,velocity,upper_ux,1.0564205646514893 +illusion_0.75L,sr,18,3.6,velocity,upper_uy,-0.30532118678092957 +illusion_0.75L,sr,18,3.6,velocity,center_ux,0.891807496547699 +illusion_0.75L,sr,18,3.6,velocity,center_uy,-0.5320786237716675 +illusion_0.75L,sr,18,3.6,velocity,lower_ux,0.8031907081604004 +illusion_0.75L,sr,18,3.6,velocity,lower_uy,-0.30947867035865784 +illusion_0.75L,sr,19,3.8,velocity,upper_ux,1.0902135372161865 +illusion_0.75L,sr,19,3.8,velocity,upper_uy,-0.3173716962337494 +illusion_0.75L,sr,19,3.8,velocity,center_ux,0.9018285274505615 +illusion_0.75L,sr,19,3.8,velocity,center_uy,-0.5419957637786865 +illusion_0.75L,sr,19,3.8,velocity,lower_ux,0.7753744721412659 +illusion_0.75L,sr,19,3.8,velocity,lower_uy,-0.27383363246917725 +illusion_0.75L,sr,20,4.0,velocity,upper_ux,1.125667691230774 +illusion_0.75L,sr,20,4.0,velocity,upper_uy,-0.3269473910331726 +illusion_0.75L,sr,20,4.0,velocity,center_ux,0.9053035974502563 +illusion_0.75L,sr,20,4.0,velocity,center_uy,-0.5451036691665649 +illusion_0.75L,sr,20,4.0,velocity,lower_ux,0.751273512840271 +illusion_0.75L,sr,20,4.0,velocity,lower_uy,-0.23288659751415253 +illusion_0.75L,sr,21,4.2,velocity,upper_ux,1.1630377769470215 +illusion_0.75L,sr,21,4.2,velocity,upper_uy,-0.3336437940597534 +illusion_0.75L,sr,21,4.2,velocity,center_ux,0.9006638526916504 +illusion_0.75L,sr,21,4.2,velocity,center_uy,-0.5338748693466187 +illusion_0.75L,sr,21,4.2,velocity,lower_ux,0.7305144667625427 +illusion_0.75L,sr,21,4.2,velocity,lower_uy,-0.18741963803768158 +illusion_0.75L,sr,22,4.4,velocity,upper_ux,1.202476978302002 +illusion_0.75L,sr,22,4.4,velocity,upper_uy,-0.33675137162208557 +illusion_0.75L,sr,22,4.4,velocity,center_ux,0.8864471912384033 +illusion_0.75L,sr,22,4.4,velocity,center_uy,-0.4995129406452179 +illusion_0.75L,sr,22,4.4,velocity,lower_ux,0.7149428725242615 +illusion_0.75L,sr,22,4.4,velocity,lower_uy,-0.13851988315582275 +illusion_0.75L,sr,23,4.6,velocity,upper_ux,1.2439199686050415 +illusion_0.75L,sr,23,4.6,velocity,upper_uy,-0.335026353597641 +illusion_0.75L,sr,23,4.6,velocity,center_ux,0.8622937798500061 +illusion_0.75L,sr,23,4.6,velocity,center_uy,-0.4345165193080902 +illusion_0.75L,sr,23,4.6,velocity,lower_ux,0.7074276208877563 +illusion_0.75L,sr,23,4.6,velocity,lower_uy,-0.0885261818766594 +illusion_0.75L,sr,24,4.8,velocity,upper_ux,1.2866477966308594 +illusion_0.75L,sr,24,4.8,velocity,upper_uy,-0.32641640305519104 +illusion_0.75L,sr,24,4.8,velocity,center_ux,0.8296562433242798 +illusion_0.75L,sr,24,4.8,velocity,center_uy,-0.3355105519294739 +illusion_0.75L,sr,24,4.8,velocity,lower_ux,0.7103252410888672 +illusion_0.75L,sr,24,4.8,velocity,lower_uy,-0.04061242192983627 +illusion_0.75L,sr,25,5.0,velocity,upper_ux,1.328325629234314 +illusion_0.75L,sr,25,5.0,velocity,upper_uy,-0.30757465958595276 +illusion_0.75L,sr,25,5.0,velocity,center_ux,0.7918391227722168 +illusion_0.75L,sr,25,5.0,velocity,center_uy,-0.20467419922351837 +illusion_0.75L,sr,25,5.0,velocity,lower_ux,0.7237629890441895 +illusion_0.75L,sr,25,5.0,velocity,lower_uy,0.002629284281283617 +illusion_0.75L,sr,26,5.2,velocity,upper_ux,1.364102840423584 +illusion_0.75L,sr,26,5.2,velocity,upper_uy,-0.2735605835914612 +illusion_0.75L,sr,26,5.2,velocity,center_ux,0.753956139087677 +illusion_0.75L,sr,26,5.2,velocity,center_uy,-0.04979461804032326 +illusion_0.75L,sr,26,5.2,velocity,lower_ux,0.7451231479644775 +illusion_0.75L,sr,26,5.2,velocity,lower_uy,0.040802668780088425 +illusion_0.75L,sr,27,5.4,velocity,upper_ux,1.3859275579452515 +illusion_0.75L,sr,27,5.4,velocity,upper_uy,-0.21841789782047272 +illusion_0.75L,sr,27,5.4,velocity,center_ux,0.7224009037017822 +illusion_0.75L,sr,27,5.4,velocity,center_uy,0.11568113416433334 +illusion_0.75L,sr,27,5.4,velocity,lower_ux,0.7701816558837891 +illusion_0.75L,sr,27,5.4,velocity,lower_uy,0.07581786066293716 +illusion_0.75L,sr,28,5.6,velocity,upper_ux,1.3835694789886475 +illusion_0.75L,sr,28,5.6,velocity,upper_uy,-0.13759779930114746 +illusion_0.75L,sr,28,5.6,velocity,center_ux,0.7038339376449585 +illusion_0.75L,sr,28,5.6,velocity,center_uy,0.2724418640136719 +illusion_0.75L,sr,28,5.6,velocity,lower_ux,0.7954264879226685 +illusion_0.75L,sr,28,5.6,velocity,lower_uy,0.10992245376110077 +illusion_0.75L,sr,29,5.8,velocity,upper_ux,1.3488942384719849 +illusion_0.75L,sr,29,5.8,velocity,upper_uy,-0.032675229012966156 +illusion_0.75L,sr,29,5.8,velocity,center_ux,0.7038487195968628 +illusion_0.75L,sr,29,5.8,velocity,center_uy,0.3968706429004669 +illusion_0.75L,sr,29,5.8,velocity,lower_ux,0.8196261525154114 +illusion_0.75L,sr,29,5.8,velocity,lower_uy,0.1437682956457138 +illusion_0.75L,sr,30,6.0,velocity,upper_ux,1.2818934917449951 +illusion_0.75L,sr,30,6.0,velocity,upper_uy,0.08452760428190231 +illusion_0.75L,sr,30,6.0,velocity,center_ux,0.7243274450302124 +illusion_0.75L,sr,30,6.0,velocity,center_uy,0.46917396783828735 +illusion_0.75L,sr,30,6.0,velocity,lower_ux,0.8431936502456665 +illusion_0.75L,sr,30,6.0,velocity,lower_uy,0.1763702630996704 +illusion_0.75L,sr,31,6.2,velocity,upper_ux,1.1935429573059082 +illusion_0.75L,sr,31,6.2,velocity,upper_uy,0.19347615540027618 +illusion_0.75L,sr,31,6.2,velocity,center_ux,0.7600223422050476 +illusion_0.75L,sr,31,6.2,velocity,center_uy,0.4885654151439667 +illusion_0.75L,sr,31,6.2,velocity,lower_ux,0.866780698299408 +illusion_0.75L,sr,31,6.2,velocity,lower_uy,0.2066032588481903 +illusion_0.75L,sr,32,6.4,velocity,upper_ux,1.1014240980148315 +illusion_0.75L,sr,32,6.4,velocity,upper_uy,0.2740408182144165 +illusion_0.75L,sr,32,6.4,velocity,center_ux,0.7996034026145935 +illusion_0.75L,sr,32,6.4,velocity,center_uy,0.4769640862941742 +illusion_0.75L,sr,32,6.4,velocity,lower_ux,0.8905647397041321 +illusion_0.75L,sr,32,6.4,velocity,lower_uy,0.23404113948345184 +illusion_0.75L,sr,33,6.6,velocity,upper_ux,1.0212441682815552 +illusion_0.75L,sr,33,6.6,velocity,upper_uy,0.31655287742614746 +illusion_0.75L,sr,33,6.6,velocity,center_ux,0.8331983089447021 +illusion_0.75L,sr,33,6.6,velocity,center_uy,0.4596003293991089 +illusion_0.75L,sr,33,6.6,velocity,lower_ux,0.9143783450126648 +illusion_0.75L,sr,33,6.6,velocity,lower_uy,0.25889986753463745 +illusion_0.75L,sr,34,6.8,velocity,upper_ux,0.9607333540916443 +illusion_0.75L,sr,34,6.8,velocity,upper_uy,0.32475775480270386 +illusion_0.75L,sr,34,6.8,velocity,center_ux,0.8575257062911987 +illusion_0.75L,sr,34,6.8,velocity,center_uy,0.4480450749397278 +illusion_0.75L,sr,34,6.8,velocity,lower_ux,0.9381912350654602 +illusion_0.75L,sr,34,6.8,velocity,lower_uy,0.28167304396629333 +illusion_0.75L,sr,35,7.0,velocity,upper_ux,0.9189087152481079 +illusion_0.75L,sr,35,7.0,velocity,upper_uy,0.310247540473938 +illusion_0.75L,sr,35,7.0,velocity,center_ux,0.8735553026199341 +illusion_0.75L,sr,35,7.0,velocity,center_uy,0.44308605790138245 +illusion_0.75L,sr,35,7.0,velocity,lower_ux,0.9621249437332153 +illusion_0.75L,sr,35,7.0,velocity,lower_uy,0.30285778641700745 +illusion_0.75L,sr,36,7.2,velocity,upper_ux,0.8900255560874939 +illusion_0.75L,sr,36,7.2,velocity,upper_uy,0.2843179404735565 +illusion_0.75L,sr,36,7.2,velocity,center_ux,0.8829125761985779 +illusion_0.75L,sr,36,7.2,velocity,center_uy,0.44309139251708984 +illusion_0.75L,sr,36,7.2,velocity,lower_ux,0.9864216446876526 +illusion_0.75L,sr,36,7.2,velocity,lower_uy,0.3228818476200104 +illusion_0.75L,sr,37,7.4,velocity,upper_ux,0.868253231048584 +illusion_0.75L,sr,37,7.4,velocity,upper_uy,0.2538405954837799 +illusion_0.75L,sr,37,7.4,velocity,center_ux,0.8865901231765747 +illusion_0.75L,sr,37,7.4,velocity,center_uy,0.44699355959892273 +illusion_0.75L,sr,37,7.4,velocity,lower_ux,1.0114455223083496 +illusion_0.75L,sr,37,7.4,velocity,lower_uy,0.34205058217048645 +illusion_0.75L,sr,38,7.6,velocity,upper_ux,0.849996030330658 +illusion_0.75L,sr,38,7.6,velocity,upper_uy,0.2216825634241104 +illusion_0.75L,sr,38,7.6,velocity,center_ux,0.8849536776542664 +illusion_0.75L,sr,38,7.6,velocity,center_uy,0.4539549946784973 +illusion_0.75L,sr,38,7.6,velocity,lower_ux,1.0376607179641724 +illusion_0.75L,sr,38,7.6,velocity,lower_uy,0.3605656325817108 +illusion_0.75L,sr,39,7.8,velocity,upper_ux,0.833831250667572 +illusion_0.75L,sr,39,7.8,velocity,upper_uy,0.18871715664863586 +illusion_0.75L,sr,39,7.8,velocity,center_ux,0.8777444362640381 +illusion_0.75L,sr,39,7.8,velocity,center_uy,0.46250495314598083 +illusion_0.75L,sr,39,7.8,velocity,lower_ux,1.0654369592666626 +illusion_0.75L,sr,39,7.8,velocity,lower_uy,0.3785002529621124 +illusion_0.75L,sr,40,8.0,velocity,upper_ux,0.8198115825653076 +illusion_0.75L,sr,40,8.0,velocity,upper_uy,0.155272975564003 +illusion_0.75L,sr,40,8.0,velocity,center_ux,0.8643121123313904 +illusion_0.75L,sr,40,8.0,velocity,center_uy,0.4697569012641907 +illusion_0.75L,sr,40,8.0,velocity,lower_ux,1.095109224319458 +illusion_0.75L,sr,40,8.0,velocity,lower_uy,0.3957800269126892 +illusion_0.75L,sr,41,8.2,velocity,upper_ux,0.8086155652999878 +illusion_0.75L,sr,41,8.2,velocity,upper_uy,0.12162425369024277 +illusion_0.75L,sr,41,8.2,velocity,center_ux,0.843829333782196 +illusion_0.75L,sr,41,8.2,velocity,center_uy,0.4708871841430664 +illusion_0.75L,sr,41,8.2,velocity,lower_ux,1.1269482374191284 +illusion_0.75L,sr,41,8.2,velocity,lower_uy,0.41214972734451294 +illusion_0.75L,sr,42,8.4,velocity,upper_ux,0.8008779287338257 +illusion_0.75L,sr,42,8.4,velocity,upper_uy,0.08793484419584274 +illusion_0.75L,sr,42,8.4,velocity,center_ux,0.8156610131263733 +illusion_0.75L,sr,42,8.4,velocity,center_uy,0.4593403935432434 +illusion_0.75L,sr,42,8.4,velocity,lower_ux,1.1611180305480957 +illusion_0.75L,sr,42,8.4,velocity,lower_uy,0.42707929015159607 +illusion_0.75L,sr,43,8.6,velocity,upper_ux,0.7966946363449097 +illusion_0.75L,sr,43,8.6,velocity,upper_uy,0.054060932248830795 +illusion_0.75L,sr,43,8.6,velocity,center_ux,0.7797173857688904 +illusion_0.75L,sr,43,8.6,velocity,center_uy,0.4281364679336548 +illusion_0.75L,sr,43,8.6,velocity,lower_ux,1.1974376440048218 +illusion_0.75L,sr,43,8.6,velocity,lower_uy,0.4396336078643799 +illusion_0.75L,sr,44,8.8,velocity,upper_ux,0.7955496311187744 +illusion_0.75L,sr,44,8.8,velocity,upper_uy,0.01951615698635578 +illusion_0.75L,sr,44,8.8,velocity,center_ux,0.7367463707923889 +illusion_0.75L,sr,44,8.8,velocity,center_uy,0.3719099164009094 +illusion_0.75L,sr,44,8.8,velocity,lower_ux,1.2350422143936157 +illusion_0.75L,sr,44,8.8,velocity,lower_uy,0.44824448227882385 +illusion_0.75L,sr,45,9.0,velocity,upper_ux,0.7968044281005859 +illusion_0.75L,sr,45,9.0,velocity,upper_uy,-0.01625620760023594 +illusion_0.75L,sr,45,9.0,velocity,center_ux,0.6886207461357117 +illusion_0.75L,sr,45,9.0,velocity,center_uy,0.28860682249069214 +illusion_0.75L,sr,45,9.0,velocity,lower_ux,1.2720948457717896 +illusion_0.75L,sr,45,9.0,velocity,lower_uy,0.4503138065338135 +illusion_0.75L,sr,46,9.2,velocity,upper_ux,0.8001260161399841 +illusion_0.75L,sr,46,9.2,velocity,upper_uy,-0.053531888872385025 +illusion_0.75L,sr,46,9.2,velocity,center_ux,0.6383110284805298 +illusion_0.75L,sr,46,9.2,velocity,center_uy,0.1800389289855957 +illusion_0.75L,sr,46,9.2,velocity,lower_ux,1.3052804470062256 +illusion_0.75L,sr,46,9.2,velocity,lower_uy,0.44189155101776123 +illusion_0.75L,sr,47,9.4,velocity,upper_ux,0.8056843280792236 +illusion_0.75L,sr,47,9.4,velocity,upper_uy,-0.0919676199555397 +illusion_0.75L,sr,47,9.4,velocity,center_ux,0.5899476408958435 +illusion_0.75L,sr,47,9.4,velocity,center_uy,0.051645226776599884 +illusion_0.75L,sr,47,9.4,velocity,lower_ux,1.3295217752456665 +illusion_0.75L,sr,47,9.4,velocity,lower_uy,0.4174729287624359 +illusion_0.75L,sr,48,9.6,velocity,upper_ux,0.8140136003494263 +illusion_0.75L,sr,48,9.6,velocity,upper_uy,-0.13077177107334137 +illusion_0.75L,sr,48,9.6,velocity,center_ux,0.5487868785858154 +illusion_0.75L,sr,48,9.6,velocity,center_uy,-0.08783705532550812 +illusion_0.75L,sr,48,9.6,velocity,lower_ux,1.3382433652877808 +illusion_0.75L,sr,48,9.6,velocity,lower_uy,0.37034693360328674 +illusion_0.75L,sr,49,9.8,velocity,upper_ux,0.8256300091743469 +illusion_0.75L,sr,49,9.8,velocity,upper_uy,-0.1690080463886261 +illusion_0.75L,sr,49,9.8,velocity,center_ux,0.5206279158592224 +illusion_0.75L,sr,49,9.8,velocity,center_uy,-0.22679167985916138 +illusion_0.75L,sr,49,9.8,velocity,lower_ux,1.324366807937622 +illusion_0.75L,sr,49,9.8,velocity,lower_uy,0.2935999631881714 +illusion_0.75L,sr,50,10.0,velocity,upper_ux,0.8406533002853394 +illusion_0.75L,sr,50,10.0,velocity,upper_uy,-0.2059585601091385 +illusion_0.75L,sr,50,10.0,velocity,center_ux,0.5105053186416626 +illusion_0.75L,sr,50,10.0,velocity,center_uy,-0.3519304692745209 +illusion_0.75L,sr,50,10.0,velocity,lower_ux,1.2823354005813599 +illusion_0.75L,sr,50,10.0,velocity,lower_uy,0.18285685777664185 +illusion_0.75L,sr,51,10.2,velocity,upper_ux,0.8588995933532715 +illusion_0.75L,sr,51,10.2,velocity,upper_uy,-0.24116112291812897 +illusion_0.75L,sr,51,10.2,velocity,center_ux,0.5209473967552185 +illusion_0.75L,sr,51,10.2,velocity,center_uy,-0.45154887437820435 +illusion_0.75L,sr,51,10.2,velocity,lower_ux,1.211491346359253 +illusion_0.75L,sr,51,10.2,velocity,lower_uy,0.040737334638834 +illusion_0.75L,sr,52,10.4,velocity,upper_ux,0.8799861669540405 +illusion_0.75L,sr,52,10.4,velocity,upper_uy,-0.27434924244880676 +illusion_0.75L,sr,52,10.4,velocity,center_ux,0.5495209693908691 +illusion_0.75L,sr,52,10.4,velocity,center_uy,-0.5212547779083252 +illusion_0.75L,sr,52,10.4,velocity,lower_ux,1.1183801889419556 +illusion_0.75L,sr,52,10.4,velocity,lower_uy,-0.11978336423635483 +illusion_0.75L,sr,53,10.6,velocity,upper_ux,0.9035808444023132 +illusion_0.75L,sr,53,10.6,velocity,upper_uy,-0.3054010570049286 +illusion_0.75L,sr,53,10.6,velocity,center_ux,0.5887051224708557 +illusion_0.75L,sr,53,10.6,velocity,center_uy,-0.5670849084854126 +illusion_0.75L,sr,53,10.6,velocity,lower_ux,1.0153971910476685 +illusion_0.75L,sr,53,10.6,velocity,lower_uy,-0.27747851610183716 +illusion_0.75L,sr,54,10.8,velocity,upper_ux,0.9293305277824402 +illusion_0.75L,sr,54,10.8,velocity,upper_uy,-0.3342611789703369 +illusion_0.75L,sr,54,10.8,velocity,center_ux,0.6298875212669373 +illusion_0.75L,sr,54,10.8,velocity,center_uy,-0.6002712845802307 +illusion_0.75L,sr,54,10.8,velocity,lower_ux,0.916246235370636 +illusion_0.75L,sr,54,10.8,velocity,lower_uy,-0.4100797176361084 +illusion_0.75L,sr,55,11.0,velocity,upper_ux,0.9569528698921204 +illusion_0.75L,sr,55,11.0,velocity,upper_uy,-0.36095112562179565 +illusion_0.75L,sr,55,11.0,velocity,center_ux,0.6679442524909973 +illusion_0.75L,sr,55,11.0,velocity,center_uy,-0.6290715336799622 +illusion_0.75L,sr,55,11.0,velocity,lower_ux,0.8319222331047058 +illusion_0.75L,sr,55,11.0,velocity,lower_uy,-0.5019747018814087 +illusion_0.75L,sr,56,11.2,velocity,upper_ux,0.9862973093986511 +illusion_0.75L,sr,56,11.2,velocity,upper_uy,-0.38550761342048645 +illusion_0.75L,sr,56,11.2,velocity,center_ux,0.7015168070793152 +illusion_0.75L,sr,56,11.2,velocity,center_uy,-0.6565442085266113 +illusion_0.75L,sr,56,11.2,velocity,lower_ux,0.7679184675216675 +illusion_0.75L,sr,56,11.2,velocity,lower_uy,-0.5493245124816895 +illusion_0.75L,sr,57,11.4,velocity,upper_ux,1.0173523426055908 +illusion_0.75L,sr,57,11.4,velocity,upper_uy,-0.40799739956855774 +illusion_0.75L,sr,57,11.4,velocity,center_ux,0.730811595916748 +illusion_0.75L,sr,57,11.4,velocity,center_uy,-0.6827117204666138 +illusion_0.75L,sr,57,11.4,velocity,lower_ux,0.7229458093643188 +illusion_0.75L,sr,57,11.4,velocity,lower_uy,-0.5599085688591003 +illusion_0.75L,sr,58,11.6,velocity,upper_ux,1.0501635074615479 +illusion_0.75L,sr,58,11.6,velocity,upper_uy,-0.42847973108291626 +illusion_0.75L,sr,58,11.6,velocity,center_ux,0.7560880184173584 +illusion_0.75L,sr,58,11.6,velocity,center_uy,-0.7059265375137329 +illusion_0.75L,sr,58,11.6,velocity,lower_ux,0.6906680464744568 +illusion_0.75L,sr,58,11.6,velocity,lower_uy,-0.5468576550483704 +illusion_0.75L,sr,59,11.8,velocity,upper_ux,1.0848376750946045 +illusion_0.75L,sr,59,11.8,velocity,upper_uy,-0.44700196385383606 +illusion_0.75L,sr,59,11.8,velocity,center_ux,0.7772124409675598 +illusion_0.75L,sr,59,11.8,velocity,center_uy,-0.722855806350708 +illusion_0.75L,sr,59,11.8,velocity,lower_ux,0.6639434099197388 +illusion_0.75L,sr,59,11.8,velocity,lower_uy,-0.5208200216293335 +illusion_0.75L,sr,60,12.0,velocity,upper_ux,1.1215287446975708 +illusion_0.75L,sr,60,12.0,velocity,upper_uy,-0.46358123421669006 +illusion_0.75L,sr,60,12.0,velocity,center_ux,0.7935652136802673 +illusion_0.75L,sr,60,12.0,velocity,center_uy,-0.7284600734710693 +illusion_0.75L,sr,60,12.0,velocity,lower_ux,0.6381462216377258 +illusion_0.75L,sr,60,12.0,velocity,lower_uy,-0.4864623546600342 +illusion_0.75L,sr,61,12.2,velocity,upper_ux,1.1602765321731567 +illusion_0.75L,sr,61,12.2,velocity,upper_uy,-0.47810277342796326 +illusion_0.75L,sr,61,12.2,velocity,center_ux,0.804013192653656 +illusion_0.75L,sr,61,12.2,velocity,center_uy,-0.716854453086853 +illusion_0.75L,sr,61,12.2,velocity,lower_ux,0.6117109060287476 +illusion_0.75L,sr,61,12.2,velocity,lower_uy,-0.4437788426876068 +illusion_0.75L,sr,62,12.4,velocity,upper_ux,1.2009371519088745 +illusion_0.75L,sr,62,12.4,velocity,upper_uy,-0.49020764231681824 +illusion_0.75L,sr,62,12.4,velocity,center_ux,0.8073142170906067 +illusion_0.75L,sr,62,12.4,velocity,center_uy,-0.6832166314125061 +illusion_0.75L,sr,62,12.4,velocity,lower_ux,0.5852582454681396 +illusion_0.75L,sr,62,12.4,velocity,lower_uy,-0.3909410834312439 +illusion_0.75L,sr,63,12.6,velocity,upper_ux,1.2429808378219604 +illusion_0.75L,sr,63,12.6,velocity,upper_uy,-0.49906834959983826 +illusion_0.75L,sr,63,12.6,velocity,center_ux,0.8025637865066528 +illusion_0.75L,sr,63,12.6,velocity,center_uy,-0.6257297396659851 +illusion_0.75L,sr,63,12.6,velocity,lower_ux,0.5605047345161438 +illusion_0.75L,sr,63,12.6,velocity,lower_uy,-0.32652851939201355 +illusion_0.75L,sr,64,12.8,velocity,upper_ux,1.285250186920166 +illusion_0.75L,sr,64,12.8,velocity,upper_uy,-0.5029978156089783 +illusion_0.75L,sr,64,12.8,velocity,center_ux,0.7895828485488892 +illusion_0.75L,sr,64,12.8,velocity,center_uy,-0.5457673072814941 +illusion_0.75L,sr,64,12.8,velocity,lower_ux,0.5396496653556824 +illusion_0.75L,sr,64,12.8,velocity,lower_uy,-0.2506650984287262 +illusion_0.75L,sr,65,13.0,velocity,upper_ux,1.3253586292266846 +illusion_0.75L,sr,65,13.0,velocity,upper_uy,-0.49894165992736816 +illusion_0.75L,sr,65,13.0,velocity,center_ux,0.7688325643539429 +illusion_0.75L,sr,65,13.0,velocity,center_uy,-0.44579818844795227 +illusion_0.75L,sr,65,13.0,velocity,lower_ux,0.5249039530754089 +illusion_0.75L,sr,65,13.0,velocity,lower_uy,-0.16539114713668823 +illusion_0.75L,sr,66,13.2,velocity,upper_ux,1.3593690395355225 +illusion_0.75L,sr,66,13.2,velocity,upper_uy,-0.48208820819854736 +illusion_0.75L,sr,66,13.2,velocity,center_ux,0.741611659526825 +illusion_0.75L,sr,66,13.2,velocity,center_uy,-0.3271453082561493 +illusion_0.75L,sr,66,13.2,velocity,lower_ux,0.5185093283653259 +illusion_0.75L,sr,66,13.2,velocity,lower_uy,-0.07477250695228577 +illusion_0.75L,sr,67,13.4,velocity,upper_ux,1.382016897201538 +illusion_0.75L,sr,67,13.4,velocity,upper_uy,-0.4460495710372925 +illusion_0.75L,sr,67,13.4,velocity,center_ux,0.7104594707489014 +illusion_0.75L,sr,67,13.4,velocity,center_uy,-0.19021382927894592 +illusion_0.75L,sr,67,13.4,velocity,lower_ux,0.5229355692863464 +illusion_0.75L,sr,67,13.4,velocity,lower_uy,0.015082947909832 +illusion_0.75L,sr,68,13.6,velocity,upper_ux,1.387419581413269 +illusion_0.75L,sr,68,13.6,velocity,upper_uy,-0.38348671793937683 +illusion_0.75L,sr,68,13.6,velocity,center_ux,0.6790826916694641 +illusion_0.75L,sr,68,13.6,velocity,center_uy,-0.03685305267572403 +illusion_0.75L,sr,68,13.6,velocity,lower_ux,0.5406337976455688 +illusion_0.75L,sr,68,13.6,velocity,lower_uy,0.09643027186393738 +illusion_0.75L,sr,69,13.8,velocity,upper_ux,1.3697574138641357 +illusion_0.75L,sr,69,13.8,velocity,upper_uy,-0.2872790992259979 +illusion_0.75L,sr,69,13.8,velocity,center_ux,0.65131676197052 +illusion_0.75L,sr,69,13.8,velocity,center_uy,0.12800277769565582 +illusion_0.75L,sr,69,13.8,velocity,lower_ux,0.5724765658378601 +illusion_0.75L,sr,69,13.8,velocity,lower_uy,0.1622745394706726 +illusion_0.75L,sr,70,14.0,velocity,upper_ux,1.3251502513885498 +illusion_0.75L,sr,70,14.0,velocity,upper_uy,-0.15393735468387604 +illusion_0.75L,sr,70,14.0,velocity,center_ux,0.630388081073761 +illusion_0.75L,sr,70,14.0,velocity,center_uy,0.2962217628955841 +illusion_0.75L,sr,70,14.0,velocity,lower_ux,0.6157649755477905 +illusion_0.75L,sr,70,14.0,velocity,lower_uy,0.21070092916488647 +illusion_0.75L,sr,71,14.2,velocity,upper_ux,1.2557251453399658 +illusion_0.75L,sr,71,14.2,velocity,upper_uy,0.009840321727097034 +illusion_0.75L,sr,71,14.2,velocity,center_ux,0.6194464564323425 +illusion_0.75L,sr,71,14.2,velocity,center_uy,0.4553751051425934 +illusion_0.75L,sr,71,14.2,velocity,lower_ux,0.6644347906112671 +illusion_0.75L,sr,71,14.2,velocity,lower_uy,0.24685479700565338 +illusion_0.75L,sr,72,14.4,velocity,upper_ux,1.1713707447052002 +illusion_0.75L,sr,72,14.4,velocity,upper_uy,0.18494167923927307 +illusion_0.75L,sr,72,14.4,velocity,center_ux,0.6224006414413452 +illusion_0.75L,sr,72,14.4,velocity,center_uy,0.5871471762657166 +illusion_0.75L,sr,72,14.4,velocity,lower_ux,0.7127309441566467 +illusion_0.75L,sr,72,14.4,velocity,lower_uy,0.2783908545970917 +illusion_0.75L,sr,73,14.6,velocity,upper_ux,1.084506630897522 +illusion_0.75L,sr,73,14.6,velocity,upper_uy,0.34751659631729126 +illusion_0.75L,sr,73,14.6,velocity,center_ux,0.6419800519943237 +illusion_0.75L,sr,73,14.6,velocity,center_uy,0.6733613014221191 +illusion_0.75L,sr,73,14.6,velocity,lower_ux,0.7583438158035278 +illusion_0.75L,sr,73,14.6,velocity,lower_uy,0.3091561198234558 +illusion_0.75L,sr,74,14.8,velocity,upper_ux,1.004581332206726 +illusion_0.75L,sr,74,14.8,velocity,upper_uy,0.47726309299468994 +illusion_0.75L,sr,74,14.8,velocity,center_ux,0.6755945682525635 +illusion_0.75L,sr,74,14.8,velocity,center_uy,0.7118940949440002 +illusion_0.75L,sr,74,14.8,velocity,lower_ux,0.8018209934234619 +illusion_0.75L,sr,74,14.8,velocity,lower_uy,0.3386367857456207 +illusion_0.75L,sr,75,15.0,velocity,upper_ux,0.9377080798149109 +illusion_0.75L,sr,75,15.0,velocity,upper_uy,0.5608385801315308 +illusion_0.75L,sr,75,15.0,velocity,center_ux,0.715089738368988 +illusion_0.75L,sr,75,15.0,velocity,center_uy,0.7220091223716736 +illusion_0.75L,sr,75,15.0,velocity,lower_ux,0.8442132472991943 +illusion_0.75L,sr,75,15.0,velocity,lower_uy,0.3654205799102783 +illusion_0.75L,sr,76,15.2,velocity,upper_ux,0.8866533041000366 +illusion_0.75L,sr,76,15.2,velocity,upper_uy,0.5964643359184265 +illusion_0.75L,sr,76,15.2,velocity,center_ux,0.7528240084648132 +illusion_0.75L,sr,76,15.2,velocity,center_uy,0.7263292670249939 +illusion_0.75L,sr,76,15.2,velocity,lower_ux,0.8860465288162231 +illusion_0.75L,sr,76,15.2,velocity,lower_uy,0.3890237510204315 +illusion_0.75L,sr,77,15.4,velocity,upper_ux,0.8490622043609619 +illusion_0.75L,sr,77,15.4,velocity,upper_uy,0.5962154865264893 +illusion_0.75L,sr,77,15.4,velocity,center_ux,0.7860327959060669 +illusion_0.75L,sr,77,15.4,velocity,center_uy,0.7347886562347412 +illusion_0.75L,sr,77,15.4,velocity,lower_ux,0.92753005027771 +illusion_0.75L,sr,77,15.4,velocity,lower_uy,0.4095855951309204 +illusion_0.75L,sr,78,15.6,velocity,upper_ux,0.8184185028076172 +illusion_0.75L,sr,78,15.6,velocity,upper_uy,0.5779340267181396 +illusion_0.75L,sr,78,15.6,velocity,center_ux,0.8151519298553467 +illusion_0.75L,sr,78,15.6,velocity,center_uy,0.7475373148918152 +illusion_0.75L,sr,78,15.6,velocity,lower_ux,0.9688687920570374 +illusion_0.75L,sr,78,15.6,velocity,lower_uy,0.4273620545864105 +illusion_0.75L,sr,79,15.8,velocity,upper_ux,0.7883287072181702 +illusion_0.75L,sr,79,15.8,velocity,upper_uy,0.5538148880004883 +illusion_0.75L,sr,79,15.8,velocity,center_ux,0.8410215973854065 +illusion_0.75L,sr,79,15.8,velocity,center_uy,0.7619355916976929 +illusion_0.75L,sr,79,15.8,velocity,lower_ux,1.0103836059570312 +illusion_0.75L,sr,79,15.8,velocity,lower_uy,0.44258221983909607 +illusion_0.75L,sr,80,16.0,velocity,upper_ux,0.755422830581665 +illusion_0.75L,sr,80,16.0,velocity,upper_uy,0.5268856287002563 +illusion_0.75L,sr,80,16.0,velocity,center_ux,0.8637174367904663 +illusion_0.75L,sr,80,16.0,velocity,center_uy,0.773824155330658 +illusion_0.75L,sr,80,16.0,velocity,lower_ux,1.0524064302444458 +illusion_0.75L,sr,80,16.0,velocity,lower_uy,0.4553831219673157 +illusion_0.75L,sr,81,16.2,velocity,upper_ux,0.7193898558616638 +illusion_0.75L,sr,81,16.2,velocity,upper_uy,0.4943135976791382 +illusion_0.75L,sr,81,16.2,velocity,center_ux,0.8824225068092346 +illusion_0.75L,sr,81,16.2,velocity,center_uy,0.7766489386558533 +illusion_0.75L,sr,81,16.2,velocity,lower_ux,1.0953319072723389 +illusion_0.75L,sr,81,16.2,velocity,lower_uy,0.4658002555370331 +illusion_0.75L,sr,82,16.4,velocity,upper_ux,0.6817111968994141 +illusion_0.75L,sr,82,16.4,velocity,upper_uy,0.4515308141708374 +illusion_0.75L,sr,82,16.4,velocity,center_ux,0.8954489231109619 +illusion_0.75L,sr,82,16.4,velocity,center_uy,0.7621068358421326 +illusion_0.75L,sr,82,16.4,velocity,lower_ux,1.1395173072814941 +illusion_0.75L,sr,82,16.4,velocity,lower_uy,0.4737274646759033 +illusion_0.75L,sr,83,16.6,velocity,upper_ux,0.6447682976722717 +illusion_0.75L,sr,83,16.6,velocity,upper_uy,0.39477208256721497 +illusion_0.75L,sr,83,16.6,velocity,center_ux,0.9008268117904663 +illusion_0.75L,sr,83,16.6,velocity,center_uy,0.723124623298645 +illusion_0.75L,sr,83,16.6,velocity,lower_ux,1.1852059364318848 +illusion_0.75L,sr,83,16.6,velocity,lower_uy,0.4788210690021515 +illusion_0.75L,sr,84,16.8,velocity,upper_ux,0.6112213134765625 +illusion_0.75L,sr,84,16.8,velocity,upper_uy,0.3224012851715088 +illusion_0.75L,sr,84,16.8,velocity,center_ux,0.8970694541931152 +illusion_0.75L,sr,84,16.8,velocity,center_uy,0.6573247313499451 +illusion_0.75L,sr,84,16.8,velocity,lower_ux,1.23222815990448 +illusion_0.75L,sr,84,16.8,velocity,lower_uy,0.4803018271923065 +illusion_0.75L,sr,85,17.0,velocity,upper_ux,0.5837637186050415 +illusion_0.75L,sr,85,17.0,velocity,upper_uy,0.23552446067333221 +illusion_0.75L,sr,85,17.0,velocity,center_ux,0.8837564587593079 +illusion_0.75L,sr,85,17.0,velocity,center_uy,0.5671320557594299 +illusion_0.75L,sr,85,17.0,velocity,lower_ux,1.2797693014144897 +illusion_0.75L,sr,85,17.0,velocity,lower_uy,0.4765302240848541 +illusion_0.75L,sr,86,17.2,velocity,upper_ux,0.5649199485778809 +illusion_0.75L,sr,86,17.2,velocity,upper_uy,0.1379210352897644 +illusion_0.75L,sr,86,17.2,velocity,center_ux,0.8613158464431763 +illusion_0.75L,sr,86,17.2,velocity,center_uy,0.455423504114151 +illusion_0.75L,sr,86,17.2,velocity,lower_ux,1.325783371925354 +illusion_0.75L,sr,86,17.2,velocity,lower_uy,0.4644870460033417 +illusion_0.75L,sr,87,17.4,velocity,upper_ux,0.5571096539497375 +illusion_0.75L,sr,87,17.4,velocity,upper_uy,0.03583459183573723 +illusion_0.75L,sr,87,17.4,velocity,center_ux,0.8311254978179932 +illusion_0.75L,sr,87,17.4,velocity,center_uy,0.32176968455314636 +illusion_0.75L,sr,87,17.4,velocity,lower_ux,1.3663655519485474 +illusion_0.75L,sr,87,17.4,velocity,lower_uy,0.43925079703330994 +illusion_0.75L,sr,88,17.6,velocity,upper_ux,0.5627855658531189 +illusion_0.75L,sr,88,17.6,velocity,upper_uy,-0.062270473688840866 +illusion_0.75L,sr,88,17.6,velocity,center_ux,0.7963017225265503 +illusion_0.75L,sr,88,17.6,velocity,center_uy,0.16467729210853577 +illusion_0.75L,sr,88,17.6,velocity,lower_ux,1.395664930343628 +illusion_0.75L,sr,88,17.6,velocity,lower_uy,0.3941820561885834 +illusion_0.75L,sr,89,17.8,velocity,upper_ux,0.5839122533798218 +illusion_0.75L,sr,89,17.8,velocity,upper_uy,-0.14675450325012207 +illusion_0.75L,sr,89,17.8,velocity,center_ux,0.7617865800857544 +illusion_0.75L,sr,89,17.8,velocity,center_uy,-0.012725739739835262 +illusion_0.75L,sr,89,17.8,velocity,lower_ux,1.4066277742385864 +illusion_0.75L,sr,89,17.8,velocity,lower_uy,0.32197460532188416 +illusion_0.75L,sr,90,18.0,velocity,upper_ux,0.6199930906295776 +illusion_0.75L,sr,90,18.0,velocity,upper_uy,-0.21061153709888458 +illusion_0.75L,sr,90,18.0,velocity,center_ux,0.7328324913978577 +illusion_0.75L,sr,90,18.0,velocity,center_uy,-0.20006729662418365 +illusion_0.75L,sr,90,18.0,velocity,lower_ux,1.392055630683899 +illusion_0.75L,sr,90,18.0,velocity,lower_uy,0.21673554182052612 +illusion_0.75L,sr,91,18.2,velocity,upper_ux,0.6663534641265869 +illusion_0.75L,sr,91,18.2,velocity,upper_uy,-0.25447148084640503 +illusion_0.75L,sr,91,18.2,velocity,center_ux,0.7139019966125488 +illusion_0.75L,sr,91,18.2,velocity,center_uy,-0.380208283662796 +illusion_0.75L,sr,91,18.2,velocity,lower_ux,1.3469957113265991 +illusion_0.75L,sr,91,18.2,velocity,lower_uy,0.07852257043123245 +illusion_0.75L,sr,92,18.4,velocity,upper_ux,0.7159980535507202 +illusion_0.75L,sr,92,18.4,velocity,upper_uy,-0.2861867845058441 +illusion_0.75L,sr,92,18.4,velocity,center_ux,0.7089841365814209 +illusion_0.75L,sr,92,18.4,velocity,center_uy,-0.5300249457359314 +illusion_0.75L,sr,92,18.4,velocity,lower_ux,1.2738041877746582 +illusion_0.75L,sr,92,18.4,velocity,lower_uy,-0.0800488069653511 +illusion_0.75L,sr,93,18.6,velocity,upper_ux,0.7640628814697266 +illusion_0.75L,sr,93,18.6,velocity,upper_uy,-0.313594251871109 +illusion_0.75L,sr,93,18.6,velocity,center_ux,0.7205715775489807 +illusion_0.75L,sr,93,18.6,velocity,center_uy,-0.6276603937149048 +illusion_0.75L,sr,93,18.6,velocity,lower_ux,1.1844069957733154 +illusion_0.75L,sr,93,18.6,velocity,lower_uy,-0.2340206354856491 +illusion_0.75L,sr,94,18.8,velocity,upper_ux,0.8095109462738037 +illusion_0.75L,sr,94,18.8,velocity,upper_uy,-0.3393784463405609 +illusion_0.75L,sr,94,18.8,velocity,center_ux,0.7462029457092285 +illusion_0.75L,sr,94,18.8,velocity,center_uy,-0.6696165204048157 +illusion_0.75L,sr,94,18.8,velocity,lower_ux,1.0944212675094604 +illusion_0.75L,sr,94,18.8,velocity,lower_uy,-0.3575142025947571 +illusion_0.75L,sr,95,19.0,velocity,upper_ux,0.8530789017677307 +illusion_0.75L,sr,95,19.0,velocity,upper_uy,-0.36296147108078003 +illusion_0.75L,sr,95,19.0,velocity,center_ux,0.7780287265777588 +illusion_0.75L,sr,95,19.0,velocity,center_uy,-0.6769059896469116 +illusion_0.75L,sr,95,19.0,velocity,lower_ux,1.0158162117004395 +illusion_0.75L,sr,95,19.0,velocity,lower_uy,-0.43568283319473267 +illusion_0.75L,sr,96,19.2,velocity,upper_ux,0.895496666431427 +illusion_0.75L,sr,96,19.2,velocity,upper_uy,-0.3837108612060547 +illusion_0.75L,sr,96,19.2,velocity,center_ux,0.8084813952445984 +illusion_0.75L,sr,96,19.2,velocity,center_uy,-0.675687849521637 +illusion_0.75L,sr,96,19.2,velocity,lower_ux,0.9539273977279663 +illusion_0.75L,sr,96,19.2,velocity,lower_uy,-0.46931323409080505 +illusion_0.75L,sr,97,19.4,velocity,upper_ux,0.9371540546417236 +illusion_0.75L,sr,97,19.4,velocity,upper_uy,-0.401647686958313 +illusion_0.75L,sr,97,19.4,velocity,center_ux,0.8345701694488525 +illusion_0.75L,sr,97,19.4,velocity,center_uy,-0.6787852644920349 +illusion_0.75L,sr,97,19.4,velocity,lower_ux,0.9071764945983887 +illusion_0.75L,sr,97,19.4,velocity,lower_uy,-0.4712364077568054 +illusion_0.75L,sr,98,19.6,velocity,upper_ux,0.9783384203910828 +illusion_0.75L,sr,98,19.6,velocity,upper_uy,-0.417027086019516 +illusion_0.75L,sr,98,19.6,velocity,center_ux,0.8565735816955566 +illusion_0.75L,sr,98,19.6,velocity,center_uy,-0.6876915693283081 +illusion_0.75L,sr,98,19.6,velocity,lower_ux,0.8695356249809265 +illusion_0.75L,sr,98,19.6,velocity,lower_uy,-0.45679938793182373 +illusion_0.75L,sr,99,19.8,velocity,upper_ux,1.0193111896514893 +illusion_0.75L,sr,99,19.8,velocity,upper_uy,-0.4300605356693268 +illusion_0.75L,sr,99,19.8,velocity,center_ux,0.8752682209014893 +illusion_0.75L,sr,99,19.8,velocity,center_uy,-0.7002556324005127 +illusion_0.75L,sr,99,19.8,velocity,lower_ux,0.8346579074859619 +illusion_0.75L,sr,99,19.8,velocity,lower_uy,-0.43580082058906555 +illusion_0.75L,sr,100,20.0,velocity,upper_ux,1.0604065656661987 +illusion_0.75L,sr,100,20.0,velocity,upper_uy,-0.44086116552352905 +illusion_0.75L,sr,100,20.0,velocity,center_ux,0.8908575177192688 +illusion_0.75L,sr,100,20.0,velocity,center_uy,-0.7126674652099609 +illusion_0.75L,sr,100,20.0,velocity,lower_ux,0.7986857891082764 +illusion_0.75L,sr,100,20.0,velocity,lower_uy,-0.41093674302101135 +illusion_0.75L,sr,101,20.2,velocity,upper_ux,1.102017879486084 +illusion_0.75L,sr,101,20.2,velocity,upper_uy,-0.4494178891181946 +illusion_0.75L,sr,101,20.2,velocity,center_ux,0.9026979804039001 +illusion_0.75L,sr,101,20.2,velocity,center_uy,-0.7185840010643005 +illusion_0.75L,sr,101,20.2,velocity,lower_ux,0.7605519890785217 +illusion_0.75L,sr,101,20.2,velocity,lower_uy,-0.3804857134819031 +illusion_0.75L,sr,102,20.4,velocity,upper_ux,1.1445550918579102 +illusion_0.75L,sr,102,20.4,velocity,upper_uy,-0.4555767774581909 +illusion_0.75L,sr,102,20.4,velocity,center_ux,0.9093180894851685 +illusion_0.75L,sr,102,20.4,velocity,center_uy,-0.7093160152435303 +illusion_0.75L,sr,102,20.4,velocity,lower_ux,0.7211816906929016 +illusion_0.75L,sr,102,20.4,velocity,lower_uy,-0.34129852056503296 +illusion_0.75L,sr,103,20.6,velocity,upper_ux,1.188337802886963 +illusion_0.75L,sr,103,20.6,velocity,upper_uy,-0.4589846730232239 +illusion_0.75L,sr,103,20.6,velocity,center_ux,0.9088514447212219 +illusion_0.75L,sr,103,20.6,velocity,center_uy,-0.6764540076255798 +illusion_0.75L,sr,103,20.6,velocity,lower_ux,0.6827476620674133 +illusion_0.75L,sr,103,20.6,velocity,lower_uy,-0.2907634973526001 +illusion_0.75L,sr,104,20.8,velocity,upper_ux,1.2334691286087036 +illusion_0.75L,sr,104,20.8,velocity,upper_uy,-0.4589391350746155 +illusion_0.75L,sr,104,20.8,velocity,center_ux,0.8998619318008423 +illusion_0.75L,sr,104,20.8,velocity,center_uy,-0.6157480478286743 +illusion_0.75L,sr,104,20.8,velocity,lower_ux,0.6482179760932922 +illusion_0.75L,sr,104,20.8,velocity,lower_uy,-0.2280004322528839 +illusion_0.75L,sr,105,21.0,velocity,upper_ux,1.2795071601867676 +illusion_0.75L,sr,105,21.0,velocity,upper_uy,-0.454113245010376 +illusion_0.75L,sr,105,21.0,velocity,center_ux,0.8817808032035828 +illusion_0.75L,sr,105,21.0,velocity,center_uy,-0.5283870100975037 +illusion_0.75L,sr,105,21.0,velocity,lower_ux,0.6209748983383179 +illusion_0.75L,sr,105,21.0,velocity,lower_uy,-0.15453115105628967 +illusion_0.75L,sr,106,21.2,velocity,upper_ux,1.3248573541641235 +illusion_0.75L,sr,106,21.2,velocity,upper_uy,-0.44210219383239746 +illusion_0.75L,sr,106,21.2,velocity,center_ux,0.8546989560127258 +illusion_0.75L,sr,106,21.2,velocity,center_uy,-0.41754981875419617 +illusion_0.75L,sr,106,21.2,velocity,lower_ux,0.6044337749481201 +illusion_0.75L,sr,106,21.2,velocity,lower_uy,-0.0745600014925003 +illusion_0.75L,sr,107,21.4,velocity,upper_ux,1.3663055896759033 +illusion_0.75L,sr,107,21.4,velocity,upper_uy,-0.4190039336681366 +illusion_0.75L,sr,107,21.4,velocity,center_ux,0.819638729095459 +illusion_0.75L,sr,107,21.4,velocity,center_uy,-0.2842869460582733 +illusion_0.75L,sr,107,21.4,velocity,lower_ux,0.6017800569534302 +illusion_0.75L,sr,107,21.4,velocity,lower_uy,0.005298770498484373 +illusion_0.75L,sr,108,21.6,velocity,upper_ux,1.398708462715149 +illusion_0.75L,sr,108,21.6,velocity,upper_uy,-0.37934520840644836 +illusion_0.75L,sr,108,21.6,velocity,center_ux,0.7794159054756165 +illusion_0.75L,sr,108,21.6,velocity,center_uy,-0.1284283846616745 +illusion_0.75L,sr,108,21.6,velocity,lower_ux,0.6149627566337585 +illusion_0.75L,sr,108,21.6,velocity,lower_uy,0.07747629284858704 +illusion_0.75L,sr,109,21.8,velocity,upper_ux,1.415248155593872 +illusion_0.75L,sr,109,21.8,velocity,upper_uy,-0.3166906237602234 +illusion_0.75L,sr,109,21.8,velocity,center_ux,0.7389514446258545 +illusion_0.75L,sr,109,21.8,velocity,center_uy,0.046388477087020874 +illusion_0.75L,sr,109,21.8,velocity,lower_ux,0.6429228186607361 +illusion_0.75L,sr,109,21.8,velocity,lower_uy,0.13666106760501862 +illusion_0.75L,sr,110,22.0,velocity,upper_ux,1.4081653356552124 +illusion_0.75L,sr,110,22.0,velocity,upper_uy,-0.22510641813278198 +illusion_0.75L,sr,110,22.0,velocity,center_ux,0.7043786644935608 +illusion_0.75L,sr,110,22.0,velocity,center_uy,0.22898440062999725 +illusion_0.75L,sr,110,22.0,velocity,lower_ux,0.6807909607887268 +illusion_0.75L,sr,110,22.0,velocity,lower_uy,0.18301209807395935 +illusion_0.75L,sr,111,22.2,velocity,upper_ux,1.3704743385314941 +illusion_0.75L,sr,111,22.2,velocity,upper_uy,-0.102428138256073 +illusion_0.75L,sr,111,22.2,velocity,center_ux,0.682055652141571 +illusion_0.75L,sr,111,22.2,velocity,center_uy,0.39999186992645264 +illusion_0.75L,sr,111,22.2,velocity,lower_ux,0.7221084833145142 +illusion_0.75L,sr,111,22.2,velocity,lower_uy,0.2213551104068756 +illusion_0.75L,sr,112,22.4,velocity,upper_ux,1.300718069076538 +illusion_0.75L,sr,112,22.4,velocity,upper_uy,0.0436658039689064 +illusion_0.75L,sr,112,22.4,velocity,center_ux,0.6777024269104004 +illusion_0.75L,sr,112,22.4,velocity,center_uy,0.5347963571548462 +illusion_0.75L,sr,112,22.4,velocity,lower_ux,0.7626623511314392 +illusion_0.75L,sr,112,22.4,velocity,lower_uy,0.25631439685821533 +illusion_0.75L,sr,113,22.6,velocity,upper_ux,1.2078019380569458 +illusion_0.75L,sr,113,22.6,velocity,upper_uy,0.19251589477062225 +illusion_0.75L,sr,113,22.6,velocity,center_ux,0.6933766007423401 +illusion_0.75L,sr,113,22.6,velocity,center_uy,0.6150445342063904 +illusion_0.75L,sr,113,22.6,velocity,lower_ux,0.8016313910484314 +illusion_0.75L,sr,113,22.6,velocity,lower_uy,0.28909623622894287 +illusion_0.75L,sr,114,22.8,velocity,upper_ux,1.1084481477737427 +illusion_0.75L,sr,114,22.8,velocity,upper_uy,0.3180704712867737 +illusion_0.75L,sr,114,22.8,velocity,center_ux,0.7238434553146362 +illusion_0.75L,sr,114,22.8,velocity,center_uy,0.6447902917861938 +illusion_0.75L,sr,114,22.8,velocity,lower_ux,0.8397786021232605 +illusion_0.75L,sr,114,22.8,velocity,lower_uy,0.31888315081596375 +illusion_0.75L,sr,115,23.0,velocity,upper_ux,1.018640398979187 +illusion_0.75L,sr,115,23.0,velocity,upper_uy,0.40206483006477356 +illusion_0.75L,sr,115,23.0,velocity,center_ux,0.7588515281677246 +illusion_0.75L,sr,115,23.0,velocity,center_uy,0.6486999988555908 +illusion_0.75L,sr,115,23.0,velocity,lower_ux,0.8777801990509033 +illusion_0.75L,sr,115,23.0,velocity,lower_uy,0.34510403871536255 +illusion_0.75L,sr,116,23.2,velocity,upper_ux,0.9472984075546265 +illusion_0.75L,sr,116,23.2,velocity,upper_uy,0.44153285026550293 +illusion_0.75L,sr,116,23.2,velocity,center_ux,0.790666937828064 +illusion_0.75L,sr,116,23.2,velocity,center_uy,0.6496181488037109 +illusion_0.75L,sr,116,23.2,velocity,lower_ux,0.9159325361251831 +illusion_0.75L,sr,116,23.2,velocity,lower_uy,0.3678642213344574 +illusion_0.75L,sr,117,23.4,velocity,upper_ux,0.8946454524993896 +illusion_0.75L,sr,117,23.4,velocity,upper_uy,0.4468050003051758 +illusion_0.75L,sr,117,23.4,velocity,center_ux,0.81718909740448 +illusion_0.75L,sr,117,23.4,velocity,center_uy,0.6559693217277527 +illusion_0.75L,sr,117,23.4,velocity,lower_ux,0.9543043375015259 +illusion_0.75L,sr,117,23.4,velocity,lower_uy,0.38751673698425293 +illusion_0.75L,sr,118,23.6,velocity,upper_ux,0.8547742962837219 +illusion_0.75L,sr,118,23.6,velocity,upper_uy,0.4326803982257843 +illusion_0.75L,sr,118,23.6,velocity,center_ux,0.8392107486724854 +illusion_0.75L,sr,118,23.6,velocity,center_uy,0.6674996018409729 +illusion_0.75L,sr,118,23.6,velocity,lower_ux,0.9929699897766113 +illusion_0.75L,sr,118,23.6,velocity,lower_uy,0.4043641984462738 +illusion_0.75L,sr,119,23.8,velocity,upper_ux,0.8204212188720703 +illusion_0.75L,sr,119,23.8,velocity,upper_uy,0.40986308455467224 +illusion_0.75L,sr,119,23.8,velocity,center_ux,0.8576256632804871 +illusion_0.75L,sr,119,23.8,velocity,center_uy,0.681692898273468 +illusion_0.75L,sr,119,23.8,velocity,lower_ux,1.0320696830749512 +illusion_0.75L,sr,119,23.8,velocity,lower_uy,0.4186115562915802 +illusion_0.75L,sr,120,24.0,velocity,upper_ux,0.7865390181541443 +illusion_0.75L,sr,120,24.0,velocity,upper_uy,0.3823326528072357 +illusion_0.75L,sr,120,24.0,velocity,center_ux,0.8725711703300476 +illusion_0.75L,sr,120,24.0,velocity,center_uy,0.6944336891174316 +illusion_0.75L,sr,120,24.0,velocity,lower_ux,1.071762204170227 +illusion_0.75L,sr,120,24.0,velocity,lower_uy,0.4303506910800934 +illusion_0.75L,sr,121,24.2,velocity,upper_ux,0.7511964440345764 +illusion_0.75L,sr,121,24.2,velocity,upper_uy,0.34939271211624146 +illusion_0.75L,sr,121,24.2,velocity,center_ux,0.8833544254302979 +illusion_0.75L,sr,121,24.2,velocity,center_uy,0.6991021037101746 +illusion_0.75L,sr,121,24.2,velocity,lower_ux,1.1122292280197144 +illusion_0.75L,sr,121,24.2,velocity,lower_uy,0.4395409822463989 +illusion_0.75L,sr,122,24.4,velocity,upper_ux,0.7148829102516174 +illusion_0.75L,sr,122,24.4,velocity,upper_uy,0.3086319863796234 +illusion_0.75L,sr,122,24.4,velocity,center_ux,0.8885596990585327 +illusion_0.75L,sr,122,24.4,velocity,center_uy,0.6871373057365417 +illusion_0.75L,sr,122,24.4,velocity,lower_ux,1.1536284685134888 +illusion_0.75L,sr,122,24.4,velocity,lower_uy,0.445999413728714 +illusion_0.75L,sr,123,24.6,velocity,upper_ux,0.6797095537185669 +illusion_0.75L,sr,123,24.6,velocity,upper_uy,0.2580548822879791 +illusion_0.75L,sr,123,24.6,velocity,center_ux,0.8866098523139954 +illusion_0.75L,sr,123,24.6,velocity,center_uy,0.6508795022964478 +illusion_0.75L,sr,123,24.6,velocity,lower_ux,1.1961112022399902 +illusion_0.75L,sr,123,24.6,velocity,lower_uy,0.4493320882320404 +illusion_0.75L,sr,124,24.8,velocity,upper_ux,0.6487321257591248 +illusion_0.75L,sr,124,24.8,velocity,upper_uy,0.19729629158973694 +illusion_0.75L,sr,124,24.8,velocity,center_ux,0.8763512969017029 +illusion_0.75L,sr,124,24.8,velocity,center_uy,0.5871474742889404 +illusion_0.75L,sr,124,24.8,velocity,lower_ux,1.239601492881775 +illusion_0.75L,sr,124,24.8,velocity,lower_uy,0.44884243607521057 +illusion_0.75L,sr,125,25.0,velocity,upper_ux,0.6255401372909546 +illusion_0.75L,sr,125,25.0,velocity,upper_uy,0.1283198893070221 +illusion_0.75L,sr,125,25.0,velocity,center_ux,0.8573508262634277 +illusion_0.75L,sr,125,25.0,velocity,center_uy,0.4979459047317505 +illusion_0.75L,sr,125,25.0,velocity,lower_ux,1.283535361289978 +illusion_0.75L,sr,125,25.0,velocity,lower_uy,0.443266898393631 +illusion_0.75L,sr,126,25.2,velocity,upper_ux,0.6138198971748352 +illusion_0.75L,sr,126,25.2,velocity,upper_uy,0.055536899715662 +illusion_0.75L,sr,126,25.2,velocity,center_ux,0.8297526836395264 +illusion_0.75L,sr,126,25.2,velocity,center_uy,0.38689735531806946 +illusion_0.75L,sr,126,25.2,velocity,lower_ux,1.3264541625976562 +illusion_0.75L,sr,126,25.2,velocity,lower_uy,0.4304955005645752 +illusion_0.75L,sr,127,25.4,velocity,upper_ux,0.6165409684181213 +illusion_0.75L,sr,127,25.4,velocity,upper_uy,-0.014868774451315403 +illusion_0.75L,sr,127,25.4,velocity,center_ux,0.794471263885498 +illusion_0.75L,sr,127,25.4,velocity,center_uy,0.25542107224464417 +illusion_0.75L,sr,127,25.4,velocity,lower_ux,1.365545392036438 +illusion_0.75L,sr,127,25.4,velocity,lower_uy,0.40726929903030396 +illusion_0.75L,sr,128,25.6,velocity,upper_ux,0.6343692541122437 +illusion_0.75L,sr,128,25.6,velocity,upper_uy,-0.07706588506698608 +illusion_0.75L,sr,128,25.6,velocity,center_ux,0.7539116144180298 +illusion_0.75L,sr,128,25.6,velocity,center_uy,0.10356050729751587 +illusion_0.75L,sr,128,25.6,velocity,lower_ux,1.3962815999984741 +illusion_0.75L,sr,128,25.6,velocity,lower_uy,0.36918342113494873 +illusion_0.75L,sr,129,25.8,velocity,upper_ux,0.6644730567932129 +illusion_0.75L,sr,129,25.8,velocity,upper_uy,-0.12860095500946045 +illusion_0.75L,sr,129,25.8,velocity,center_ux,0.7126386761665344 +illusion_0.75L,sr,129,25.8,velocity,center_uy,-0.06539412587881088 +illusion_0.75L,sr,129,25.8,velocity,lower_ux,1.412810206413269 +illusion_0.75L,sr,129,25.8,velocity,lower_uy,0.31115058064460754 +illusion_0.75L,sr,130,26.0,velocity,upper_ux,0.7011903524398804 +illusion_0.75L,sr,130,26.0,velocity,upper_uy,-0.17169611155986786 +illusion_0.75L,sr,130,26.0,velocity,center_ux,0.6768869161605835 +illusion_0.75L,sr,130,26.0,velocity,center_uy,-0.24098050594329834 +illusion_0.75L,sr,130,26.0,velocity,lower_ux,1.4084115028381348 +illusion_0.75L,sr,130,26.0,velocity,lower_uy,0.22834989428520203 +illusion_0.75L,sr,131,26.2,velocity,upper_ux,0.7391920685768127 +illusion_0.75L,sr,131,26.2,velocity,upper_uy,-0.21059443056583405 +illusion_0.75L,sr,131,26.2,velocity,center_ux,0.653725802898407 +illusion_0.75L,sr,131,26.2,velocity,center_uy,-0.4044734239578247 +illusion_0.75L,sr,131,26.2,velocity,lower_ux,1.3763514757156372 +illusion_0.75L,sr,131,26.2,velocity,lower_uy,0.11820622533559799 +illusion_0.75L,sr,132,26.4,velocity,upper_ux,0.7761132121086121 +illusion_0.75L,sr,132,26.4,velocity,upper_uy,-0.24755524098873138 +illusion_0.75L,sr,132,26.4,velocity,center_ux,0.6496036052703857 +illusion_0.75L,sr,132,26.4,velocity,center_uy,-0.5321639180183411 +illusion_0.75L,sr,132,26.4,velocity,lower_ux,1.3129816055297852 +illusion_0.75L,sr,132,26.4,velocity,lower_uy,-0.01524089090526104 +illusion_0.75L,sr,133,26.6,velocity,upper_ux,0.8121086955070496 +illusion_0.75L,sr,133,26.6,velocity,upper_uy,-0.28214481472969055 +illusion_0.75L,sr,133,26.6,velocity,center_ux,0.6666501760482788 +illusion_0.75L,sr,133,26.6,velocity,center_uy,-0.6072860360145569 +illusion_0.75L,sr,133,26.6,velocity,lower_ux,1.2230125665664673 +illusion_0.75L,sr,133,26.6,velocity,lower_uy,-0.15694357454776764 +illusion_0.75L,sr,134,26.8,velocity,upper_ux,0.8479570746421814 +illusion_0.75L,sr,134,26.8,velocity,upper_uy,-0.3133075535297394 +illusion_0.75L,sr,134,26.8,velocity,center_ux,0.6989403367042542 +illusion_0.75L,sr,134,26.8,velocity,center_uy,-0.635158896446228 +illusion_0.75L,sr,134,26.8,velocity,lower_ux,1.1205849647521973 +illusion_0.75L,sr,134,26.8,velocity,lower_uy,-0.2838578224182129 +illusion_0.75L,sr,135,27.0,velocity,upper_ux,0.884041428565979 +illusion_0.75L,sr,135,27.0,velocity,upper_uy,-0.3407204747200012 +illusion_0.75L,sr,135,27.0,velocity,center_ux,0.7353368997573853 +illusion_0.75L,sr,135,27.0,velocity,center_uy,-0.6399925351142883 +illusion_0.75L,sr,135,27.0,velocity,lower_ux,1.022753357887268 +illusion_0.75L,sr,135,27.0,velocity,lower_uy,-0.3757801949977875 +illusion_0.75L,sr,136,27.2,velocity,upper_ux,0.9205041527748108 +illusion_0.75L,sr,136,27.2,velocity,upper_uy,-0.3646160960197449 +illusion_0.75L,sr,136,27.2,velocity,center_ux,0.7677897810935974 +illusion_0.75L,sr,136,27.2,velocity,center_uy,-0.6430181264877319 +illusion_0.75L,sr,136,27.2,velocity,lower_ux,0.9417452216148376 +illusion_0.75L,sr,136,27.2,velocity,lower_uy,-0.4248831868171692 +illusion_0.75L,sr,137,27.4,velocity,upper_ux,0.9574669003486633 +illusion_0.75L,sr,137,27.4,velocity,upper_uy,-0.3853384852409363 +illusion_0.75L,sr,137,27.4,velocity,center_ux,0.7944279313087463 +illusion_0.75L,sr,137,27.4,velocity,center_uy,-0.6514232754707336 +illusion_0.75L,sr,137,27.4,velocity,lower_ux,0.8811395168304443 +illusion_0.75L,sr,137,27.4,velocity,lower_uy,-0.43714389204978943 +illusion_0.75L,sr,138,27.6,velocity,upper_ux,0.9951258897781372 +illusion_0.75L,sr,138,27.6,velocity,upper_uy,-0.40315884351730347 +illusion_0.75L,sr,138,27.6,velocity,center_ux,0.8163448572158813 +illusion_0.75L,sr,138,27.6,velocity,center_uy,-0.6644322276115417 +illusion_0.75L,sr,138,27.6,velocity,lower_ux,0.836869478225708 +illusion_0.75L,sr,138,27.6,velocity,lower_uy,-0.425801545381546 +illusion_0.75L,sr,139,27.8,velocity,upper_ux,1.0335781574249268 +illusion_0.75L,sr,139,27.8,velocity,upper_uy,-0.4182589054107666 +illusion_0.75L,sr,139,27.8,velocity,center_ux,0.8344733715057373 +illusion_0.75L,sr,139,27.8,velocity,center_uy,-0.679269015789032 +illusion_0.75L,sr,139,27.8,velocity,lower_ux,0.8015077114105225 +illusion_0.75L,sr,139,27.8,velocity,lower_uy,-0.402574360370636 +illusion_0.75L,sr,140,28.0,velocity,upper_ux,1.0729432106018066 +illusion_0.75L,sr,140,28.0,velocity,upper_uy,-0.4306970536708832 +illusion_0.75L,sr,140,28.0,velocity,center_ux,0.8489962816238403 +illusion_0.75L,sr,140,28.0,velocity,center_uy,-0.6915991902351379 +illusion_0.75L,sr,140,28.0,velocity,lower_ux,0.7688960433006287 +illusion_0.75L,sr,140,28.0,velocity,lower_uy,-0.37325936555862427 +illusion_0.75L,sr,141,28.2,velocity,upper_ux,1.1133098602294922 +illusion_0.75L,sr,141,28.2,velocity,upper_uy,-0.44040828943252563 +illusion_0.75L,sr,141,28.2,velocity,center_ux,0.8593019843101501 +illusion_0.75L,sr,141,28.2,velocity,center_uy,-0.694735050201416 +illusion_0.75L,sr,141,28.2,velocity,lower_ux,0.7360044717788696 +illusion_0.75L,sr,141,28.2,velocity,lower_uy,-0.3385259211063385 +illusion_0.75L,sr,142,28.4,velocity,upper_ux,1.1547412872314453 +illusion_0.75L,sr,142,28.4,velocity,upper_uy,-0.4471653401851654 +illusion_0.75L,sr,142,28.4,velocity,center_ux,0.8641855120658875 +illusion_0.75L,sr,142,28.4,velocity,center_uy,-0.6804216504096985 +illusion_0.75L,sr,142,28.4,velocity,lower_ux,0.702660322189331 +illusion_0.75L,sr,142,28.4,velocity,lower_uy,-0.29674455523490906 +illusion_0.75L,sr,143,28.6,velocity,upper_ux,1.1971691846847534 +illusion_0.75L,sr,143,28.6,velocity,upper_uy,-0.4505671560764313 +illusion_0.75L,sr,143,28.6,velocity,center_ux,0.8622496128082275 +illusion_0.75L,sr,143,28.6,velocity,center_uy,-0.6417048573493958 +illusion_0.75L,sr,143,28.6,velocity,lower_ux,0.6705774068832397 +illusion_0.75L,sr,143,28.6,velocity,lower_uy,-0.24630172550678253 +illusion_0.75L,sr,144,28.8,velocity,upper_ux,1.2402732372283936 +illusion_0.75L,sr,144,28.8,velocity,upper_uy,-0.4498988091945648 +illusion_0.75L,sr,144,28.8,velocity,center_ux,0.8524564504623413 +illusion_0.75L,sr,144,28.8,velocity,center_uy,-0.576195478439331 +illusion_0.75L,sr,144,28.8,velocity,lower_ux,0.6426210999488831 +illusion_0.75L,sr,144,28.8,velocity,lower_uy,-0.18703433871269226 +illusion_0.75L,sr,145,29.0,velocity,upper_ux,1.2833102941513062 +illusion_0.75L,sr,145,29.0,velocity,upper_uy,-0.44395241141319275 +illusion_0.75L,sr,145,29.0,velocity,center_ux,0.8343715667724609 +illusion_0.75L,sr,145,29.0,velocity,center_uy,-0.4864847660064697 +illusion_0.75L,sr,145,29.0,velocity,lower_ux,0.6223383545875549 +illusion_0.75L,sr,145,29.0,velocity,lower_uy,-0.1209276020526886 +illusion_0.75L,sr,146,29.2,velocity,upper_ux,1.324732780456543 +illusion_0.75L,sr,146,29.2,velocity,upper_uy,-0.43078938126564026 +illusion_0.75L,sr,146,29.2,velocity,center_ux,0.8079671263694763 +illusion_0.75L,sr,146,29.2,velocity,center_uy,-0.37661221623420715 +illusion_0.75L,sr,146,29.2,velocity,lower_ux,0.6133373379707336 +illusion_0.75L,sr,146,29.2,velocity,lower_uy,-0.05222037434577942 +illusion_0.75L,sr,147,29.4,velocity,upper_ux,1.3618462085723877 +illusion_0.75L,sr,147,29.4,velocity,upper_uy,-0.40757614374160767 +illusion_0.75L,sr,147,29.4,velocity,center_ux,0.7738128900527954 +illusion_0.75L,sr,147,29.4,velocity,center_uy,-0.24835175275802612 +illusion_0.75L,sr,147,29.4,velocity,lower_ux,0.6182845234870911 +illusion_0.75L,sr,147,29.4,velocity,lower_uy,0.013457512483000755 +illusion_0.75L,sr,148,29.6,velocity,upper_ux,1.3907558917999268 +illusion_0.75L,sr,148,29.6,velocity,upper_uy,-0.37067168951034546 +illusion_0.75L,sr,148,29.6,velocity,center_ux,0.7339436411857605 +illusion_0.75L,sr,148,29.6,velocity,center_uy,-0.10169564187526703 +illusion_0.75L,sr,148,29.6,velocity,lower_ux,0.6374242901802063 +illusion_0.75L,sr,148,29.6,velocity,lower_uy,0.07129094004631042 +illusion_0.75L,sr,149,29.8,velocity,upper_ux,1.406680941581726 +illusion_0.75L,sr,149,29.8,velocity,upper_uy,-0.3160425126552582 +illusion_0.75L,sr,149,29.8,velocity,center_ux,0.6925144791603088 +illusion_0.75L,sr,149,29.8,velocity,center_uy,0.06098800152540207 +illusion_0.75L,sr,149,29.8,velocity,lower_ux,0.6675649285316467 +illusion_0.75L,sr,149,29.8,velocity,lower_uy,0.11991339921951294 +illusion_0.75L,sr,150,30.0,velocity,upper_ux,1.4042134284973145 +illusion_0.75L,sr,150,30.0,velocity,upper_uy,-0.23989839851856232 +illusion_0.75L,sr,150,30.0,velocity,center_ux,0.6555002331733704 +illusion_0.75L,sr,150,30.0,velocity,center_uy,0.23097935318946838 +illusion_0.75L,sr,150,30.0,velocity,lower_ux,0.7031247615814209 +illusion_0.75L,sr,150,30.0,velocity,lower_uy,0.16199003159999847 +illusion_0.75L,sr,151,30.2,velocity,upper_ux,1.3775829076766968 +illusion_0.75L,sr,151,30.2,velocity,upper_uy,-0.13962338864803314 +illusion_0.75L,sr,151,30.2,velocity,center_ux,0.6301426291465759 +illusion_0.75L,sr,151,30.2,velocity,center_uy,0.39159873127937317 +illusion_0.75L,sr,151,30.2,velocity,lower_ux,0.7393926978111267 +illusion_0.75L,sr,151,30.2,velocity,lower_uy,0.20127399265766144 +illusion_0.75L,sr,152,30.4,velocity,upper_ux,1.3221288919448853 +illusion_0.75L,sr,152,30.4,velocity,upper_uy,-0.01655823178589344 +illusion_0.75L,sr,152,30.4,velocity,center_ux,0.6235410571098328 +illusion_0.75L,sr,152,30.4,velocity,center_uy,0.5205003619194031 +illusion_0.75L,sr,152,30.4,velocity,lower_ux,0.7746533155441284 +illusion_0.75L,sr,152,30.4,velocity,lower_uy,0.23924914002418518 +illusion_0.75L,sr,153,30.6,velocity,upper_ux,1.2388046979904175 +illusion_0.75L,sr,153,30.6,velocity,upper_uy,0.11950285732746124 +illusion_0.75L,sr,153,30.6,velocity,center_ux,0.639028787612915 +illusion_0.75L,sr,153,30.6,velocity,center_uy,0.5999331474304199 +illusion_0.75L,sr,153,30.6,velocity,lower_ux,0.8093879818916321 +illusion_0.75L,sr,153,30.6,velocity,lower_uy,0.27500447630882263 +illusion_0.75L,sr,154,30.8,velocity,upper_ux,1.1376566886901855 +illusion_0.75L,sr,154,30.8,velocity,upper_uy,0.24951602518558502 +illusion_0.75L,sr,154,30.8,velocity,center_ux,0.6716423630714417 +illusion_0.75L,sr,154,30.8,velocity,center_uy,0.6319806575775146 +illusion_0.75L,sr,154,30.8,velocity,lower_ux,0.8443093299865723 +illusion_0.75L,sr,154,30.8,velocity,lower_uy,0.3073473870754242 +illusion_0.75L,sr,155,31.0,velocity,upper_ux,1.0348118543624878 +illusion_0.75L,sr,155,31.0,velocity,upper_uy,0.3524116575717926 +illusion_0.75L,sr,155,31.0,velocity,center_ux,0.7099401950836182 +illusion_0.75L,sr,155,31.0,velocity,center_uy,0.6388297080993652 +illusion_0.75L,sr,155,31.0,velocity,lower_ux,0.8796587586402893 +illusion_0.75L,sr,155,31.0,velocity,lower_uy,0.3359178304672241 +illusion_0.75L,sr,156,31.2,velocity,upper_ux,0.9450066089630127 +illusion_0.75L,sr,156,31.2,velocity,upper_uy,0.4152733087539673 +illusion_0.75L,sr,156,31.2,velocity,center_ux,0.7445926666259766 +illusion_0.75L,sr,156,31.2,velocity,center_uy,0.6424989104270935 +illusion_0.75L,sr,156,31.2,velocity,lower_ux,0.9154576063156128 +illusion_0.75L,sr,156,31.2,velocity,lower_uy,0.3609122931957245 +illusion_0.75L,sr,157,31.4,velocity,upper_ux,0.8756974935531616 +illusion_0.75L,sr,157,31.4,velocity,upper_uy,0.4385240972042084 +illusion_0.75L,sr,157,31.4,velocity,center_ux,0.7729094624519348 +illusion_0.75L,sr,157,31.4,velocity,center_uy,0.6513544321060181 +illusion_0.75L,sr,157,31.4,velocity,lower_ux,0.9517676830291748 +illusion_0.75L,sr,157,31.4,velocity,lower_uy,0.38264086842536926 +illusion_0.75L,sr,158,31.6,velocity,upper_ux,0.8256296515464783 +illusion_0.75L,sr,158,31.6,velocity,upper_uy,0.432888388633728 +illusion_0.75L,sr,158,31.6,velocity,center_ux,0.7958663105964661 +illusion_0.75L,sr,158,31.6,velocity,center_uy,0.6648297905921936 +illusion_0.75L,sr,158,31.6,velocity,lower_ux,0.9887000322341919 +illusion_0.75L,sr,158,31.6,velocity,lower_uy,0.4013512134552002 +illusion_0.75L,sr,159,31.8,velocity,upper_ux,0.7880966067314148 +illusion_0.75L,sr,159,31.8,velocity,upper_uy,0.4110797941684723 +illusion_0.75L,sr,159,31.8,velocity,center_ux,0.8147076368331909 +illusion_0.75L,sr,159,31.8,velocity,center_uy,0.6801123023033142 +illusion_0.75L,sr,159,31.8,velocity,lower_ux,1.0264610052108765 +illusion_0.75L,sr,159,31.8,velocity,lower_uy,0.41720783710479736 +illusion_0.75L,sr,160,32.0,velocity,upper_ux,0.7559812664985657 +illusion_0.75L,sr,160,32.0,velocity,upper_uy,0.3812412917613983 +illusion_0.75L,sr,160,32.0,velocity,center_ux,0.8299290537834167 +illusion_0.75L,sr,160,32.0,velocity,center_uy,0.6930790543556213 +illusion_0.75L,sr,160,32.0,velocity,lower_ux,1.065273642539978 +illusion_0.75L,sr,160,32.0,velocity,lower_uy,0.4302677810192108 +illusion_0.75L,sr,161,32.2,velocity,upper_ux,0.7248584628105164 +illusion_0.75L,sr,161,32.2,velocity,upper_uy,0.34586021304130554 +illusion_0.75L,sr,161,32.2,velocity,center_ux,0.8411803245544434 +illusion_0.75L,sr,161,32.2,velocity,center_uy,0.6974326372146606 +illusion_0.75L,sr,161,32.2,velocity,lower_ux,1.1052511930465698 +illusion_0.75L,sr,161,32.2,velocity,lower_uy,0.44046565890312195 +illusion_0.75L,sr,162,32.4,velocity,upper_ux,0.6935107707977295 +illusion_0.75L,sr,162,32.4,velocity,upper_uy,0.3041142523288727 +illusion_0.75L,sr,162,32.4,velocity,center_ux,0.8474854230880737 +illusion_0.75L,sr,162,32.4,velocity,center_uy,0.6852009296417236 +illusion_0.75L,sr,162,32.4,velocity,lower_ux,1.1464118957519531 +illusion_0.75L,sr,162,32.4,velocity,lower_uy,0.447594553232193 +illusion_0.75L,sr,163,32.6,velocity,upper_ux,0.6630602478981018 +illusion_0.75L,sr,163,32.6,velocity,upper_uy,0.25449538230895996 +illusion_0.75L,sr,163,32.6,velocity,center_ux,0.8476091623306274 +illusion_0.75L,sr,163,32.6,velocity,center_uy,0.6493040323257446 +illusion_0.75L,sr,163,32.6,velocity,lower_ux,1.1886334419250488 +illusion_0.75L,sr,163,32.6,velocity,lower_uy,0.451270192861557 +illusion_0.75L,sr,164,32.8,velocity,upper_ux,0.6360819339752197 +illusion_0.75L,sr,164,32.8,velocity,upper_uy,0.19654497504234314 +illusion_0.75L,sr,164,32.8,velocity,center_ux,0.840556800365448 +illusion_0.75L,sr,164,32.8,velocity,center_uy,0.5868855714797974 +illusion_0.75L,sr,164,32.8,velocity,lower_ux,1.231569766998291 +illusion_0.75L,sr,164,32.8,velocity,lower_uy,0.4508424699306488 +illusion_0.75L,sr,165,33.0,velocity,upper_ux,0.6159189343452454 +illusion_0.75L,sr,165,33.0,velocity,upper_uy,0.13177518546581268 +illusion_0.75L,sr,165,33.0,velocity,center_ux,0.8257308006286621 +illusion_0.75L,sr,165,33.0,velocity,center_uy,0.5003179311752319 +illusion_0.75L,sr,165,33.0,velocity,lower_ux,1.2744122743606567 +illusion_0.75L,sr,165,33.0,velocity,lower_uy,0.4452539086341858 +illusion_0.75L,sr,166,33.2,velocity,upper_ux,0.6061319708824158 +illusion_0.75L,sr,166,33.2,velocity,upper_uy,0.06393466144800186 +illusion_0.75L,sr,166,33.2,velocity,center_ux,0.8028026819229126 +illusion_0.75L,sr,166,33.2,velocity,center_uy,0.39418357610702515 +illusion_0.75L,sr,166,33.2,velocity,lower_ux,1.3156497478485107 +illusion_0.75L,sr,166,33.2,velocity,lower_uy,0.43285325169563293 +illusion_0.75L,sr,167,33.4,velocity,upper_ux,0.6096265912055969 +illusion_0.75L,sr,167,33.4,velocity,upper_uy,-0.0016437917947769165 +illusion_0.75L,sr,167,33.4,velocity,center_ux,0.7718429565429688 +illusion_0.75L,sr,167,33.4,velocity,center_uy,0.2711013853549957 +illusion_0.75L,sr,167,33.4,velocity,lower_ux,1.3528449535369873 +illusion_0.75L,sr,167,33.4,velocity,lower_uy,0.4112723171710968 +illusion_0.75L,sr,168,33.6,velocity,upper_ux,0.6271711587905884 +illusion_0.75L,sr,168,33.6,velocity,upper_uy,-0.05997418239712715 +illusion_0.75L,sr,168,33.6,velocity,center_ux,0.7340794205665588 +illusion_0.75L,sr,168,33.6,velocity,center_uy,0.13107608258724213 +illusion_0.75L,sr,168,33.6,velocity,lower_ux,1.3825596570968628 +illusion_0.75L,sr,168,33.6,velocity,lower_uy,0.37750008702278137 +illusion_0.75L,sr,169,33.8,velocity,upper_ux,0.6561198234558105 +illusion_0.75L,sr,169,33.8,velocity,upper_uy,-0.10912152379751205 +illusion_0.75L,sr,169,33.8,velocity,center_ux,0.6927429437637329 +illusion_0.75L,sr,169,33.8,velocity,center_uy,-0.02496696636080742 +illusion_0.75L,sr,169,33.8,velocity,lower_ux,1.4006489515304565 +illusion_0.75L,sr,169,33.8,velocity,lower_uy,0.32827967405319214 +illusion_0.75L,sr,170,34.0,velocity,upper_ux,0.6911635398864746 +illusion_0.75L,sr,170,34.0,velocity,upper_uy,-0.15131022036075592 +illusion_0.75L,sr,170,34.0,velocity,center_ux,0.6532924771308899 +illusion_0.75L,sr,170,34.0,velocity,center_uy,-0.1908748596906662 +illusion_0.75L,sr,170,34.0,velocity,lower_ux,1.4027769565582275 +illusion_0.75L,sr,170,34.0,velocity,lower_uy,0.26061055064201355 +illusion_0.75L,sr,171,34.2,velocity,upper_ux,0.727303683757782 +illusion_0.75L,sr,171,34.2,velocity,upper_uy,-0.19052667915821075 +illusion_0.75L,sr,171,34.2,velocity,center_ux,0.6229029297828674 +illusion_0.75L,sr,171,34.2,velocity,center_uy,-0.352904349565506 +illusion_0.75L,sr,171,34.2,velocity,lower_ux,1.384409785270691 +illusion_0.75L,sr,171,34.2,velocity,lower_uy,0.17219074070453644 +illusion_0.75L,sr,172,34.4,velocity,upper_ux,0.7623726725578308 +illusion_0.75L,sr,172,34.4,velocity,upper_uy,-0.22881971299648285 +illusion_0.75L,sr,172,34.4,velocity,center_ux,0.6092973947525024 +illusion_0.75L,sr,172,34.4,velocity,center_uy,-0.4904854893684387 +illusion_0.75L,sr,172,34.4,velocity,lower_ux,1.3408257961273193 +illusion_0.75L,sr,172,34.4,velocity,lower_uy,0.06259992718696594 +illusion_0.75L,sr,173,34.6,velocity,upper_ux,0.7967193126678467 +illusion_0.75L,sr,173,34.6,velocity,upper_uy,-0.26548218727111816 +illusion_0.75L,sr,173,34.6,velocity,center_ux,0.6178005933761597 +illusion_0.75L,sr,173,34.6,velocity,center_uy,-0.583442747592926 +illusion_0.75L,sr,173,34.6,velocity,lower_ux,1.2696250677108765 +illusion_0.75L,sr,173,34.6,velocity,lower_uy,-0.06340626627206802 +illusion_0.75L,sr,174,34.8,velocity,upper_ux,0.8312502503395081 +illusion_0.75L,sr,174,34.8,velocity,upper_uy,-0.2990868091583252 +illusion_0.75L,sr,174,34.8,velocity,center_ux,0.6464341878890991 +illusion_0.75L,sr,174,34.8,velocity,center_uy,-0.6267727017402649 +illusion_0.75L,sr,174,34.8,velocity,lower_ux,1.1753778457641602 +illusion_0.75L,sr,174,34.8,velocity,lower_uy,-0.19261597096920013 +illusion_0.75L,sr,175,35.0,velocity,upper_ux,0.8663594126701355 +illusion_0.75L,sr,175,35.0,velocity,upper_uy,-0.32898613810539246 +illusion_0.75L,sr,175,35.0,velocity,center_ux,0.684884250164032 +illusion_0.75L,sr,175,35.0,velocity,center_uy,-0.6377372145652771 +illusion_0.75L,sr,175,35.0,velocity,lower_ux,1.0708553791046143 +illusion_0.75L,sr,175,35.0,velocity,lower_uy,-0.30570441484451294 +illusion_0.75L,sr,176,35.2,velocity,upper_ux,0.9020407199859619 +illusion_0.75L,sr,176,35.2,velocity,upper_uy,-0.3552531898021698 +illusion_0.75L,sr,176,35.2,velocity,center_ux,0.7219070196151733 +illusion_0.75L,sr,176,35.2,velocity,center_uy,-0.640462338924408 +illusion_0.75L,sr,176,35.2,velocity,lower_ux,0.9719763994216919 +illusion_0.75L,sr,176,35.2,velocity,lower_uy,-0.3856668174266815 +illusion_0.75L,sr,177,35.4,velocity,upper_ux,0.9382196664810181 +illusion_0.75L,sr,177,35.4,velocity,upper_uy,-0.37817496061325073 +illusion_0.75L,sr,177,35.4,velocity,center_ux,0.7525022029876709 +illusion_0.75L,sr,177,35.4,velocity,center_uy,-0.6474746465682983 +illusion_0.75L,sr,177,35.4,velocity,lower_ux,0.8906335234642029 +illusion_0.75L,sr,177,35.4,velocity,lower_uy,-0.4259350597858429 +illusion_0.75L,sr,178,35.6,velocity,upper_ux,0.9749318957328796 +illusion_0.75L,sr,178,35.6,velocity,upper_uy,-0.39801254868507385 +illusion_0.75L,sr,178,35.6,velocity,center_ux,0.7769244313240051 +illusion_0.75L,sr,178,35.6,velocity,center_uy,-0.6598101258277893 +illusion_0.75L,sr,178,35.6,velocity,lower_ux,0.8303914666175842 +illusion_0.75L,sr,178,35.6,velocity,lower_uy,-0.4320293664932251 +illusion_0.75L,sr,179,35.8,velocity,upper_ux,1.0123200416564941 +illusion_0.75L,sr,179,35.8,velocity,upper_uy,-0.41494259238243103 +illusion_0.75L,sr,179,35.8,velocity,center_ux,0.7965663075447083 +illusion_0.75L,sr,179,35.8,velocity,center_uy,-0.6748555898666382 +illusion_0.75L,sr,179,35.8,velocity,lower_ux,0.7870641946792603 +illusion_0.75L,sr,179,35.8,velocity,lower_uy,-0.4158797562122345 +illusion_0.75L,sr,180,36.0,velocity,upper_ux,1.050560474395752 +illusion_0.75L,sr,180,36.0,velocity,upper_uy,-0.4290344715118408 +illusion_0.75L,sr,180,36.0,velocity,center_ux,0.8121841549873352 +illusion_0.75L,sr,180,36.0,velocity,center_uy,-0.688983142375946 +illusion_0.75L,sr,180,36.0,velocity,lower_ux,0.7532015442848206 +illusion_0.75L,sr,180,36.0,velocity,lower_uy,-0.3880062997341156 +illusion_0.75L,sr,181,36.2,velocity,upper_ux,1.089861273765564 +illusion_0.75L,sr,181,36.2,velocity,upper_uy,-0.44024693965911865 +illusion_0.75L,sr,181,36.2,velocity,center_ux,0.8238421082496643 +illusion_0.75L,sr,181,36.2,velocity,center_uy,-0.6967395544052124 +illusion_0.75L,sr,181,36.2,velocity,lower_ux,0.7227320075035095 +illusion_0.75L,sr,181,36.2,velocity,lower_uy,-0.3536268472671509 +illusion_0.75L,sr,182,36.4,velocity,upper_ux,1.1303880214691162 +illusion_0.75L,sr,182,36.4,velocity,upper_uy,-0.4483971893787384 +illusion_0.75L,sr,182,36.4,velocity,center_ux,0.8310243487358093 +illusion_0.75L,sr,182,36.4,velocity,center_uy,-0.6906754374504089 +illusion_0.75L,sr,182,36.4,velocity,lower_ux,0.6928485631942749 +illusion_0.75L,sr,182,36.4,velocity,lower_uy,-0.31351521611213684 +illusion_0.75L,sr,183,36.6,velocity,upper_ux,1.1721172332763672 +illusion_0.75L,sr,183,36.6,velocity,upper_uy,-0.45314857363700867 +illusion_0.75L,sr,183,36.6,velocity,center_ux,0.8328144550323486 +illusion_0.75L,sr,183,36.6,velocity,center_uy,-0.663161039352417 +illusion_0.75L,sr,183,36.6,velocity,lower_ux,0.6635947227478027 +illusion_0.75L,sr,183,36.6,velocity,lower_uy,-0.26658669114112854 +illusion_0.75L,sr,184,36.8,velocity,upper_ux,1.2147493362426758 +illusion_0.75L,sr,184,36.8,velocity,upper_uy,-0.4539385735988617 +illusion_0.75L,sr,184,36.8,velocity,center_ux,0.8282930850982666 +illusion_0.75L,sr,184,36.8,velocity,center_uy,-0.6096578240394592 +illusion_0.75L,sr,184,36.8,velocity,lower_ux,0.6368858218193054 +illusion_0.75L,sr,184,36.8,velocity,lower_uy,-0.2120581865310669 +illusion_0.75L,sr,185,37.0,velocity,upper_ux,1.2575877904891968 +illusion_0.75L,sr,185,37.0,velocity,upper_uy,-0.4498688876628876 +illusion_0.75L,sr,185,37.0,velocity,center_ux,0.8168231248855591 +illusion_0.75L,sr,185,37.0,velocity,center_uy,-0.5309164524078369 +illusion_0.75L,sr,185,37.0,velocity,lower_ux,0.6157435178756714 +illusion_0.75L,sr,185,37.0,velocity,lower_uy,-0.1506923884153366 +illusion_0.75L,sr,186,37.2,velocity,upper_ux,1.2993398904800415 +illusion_0.75L,sr,186,37.2,velocity,upper_uy,-0.43955615162849426 +illusion_0.75L,sr,186,37.2,velocity,center_ux,0.7979505658149719 +illusion_0.75L,sr,186,37.2,velocity,center_uy,-0.43144673109054565 +illusion_0.75L,sr,186,37.2,velocity,lower_ux,0.6036829948425293 +illusion_0.75L,sr,186,37.2,velocity,lower_uy,-0.08532428741455078 +illusion_0.75L,sr,187,37.4,velocity,upper_ux,1.3378586769104004 +illusion_0.75L,sr,187,37.4,velocity,upper_uy,-0.4210317134857178 +illusion_0.75L,sr,187,37.4,velocity,center_ux,0.771300733089447 +illusion_0.75L,sr,187,37.4,velocity,center_uy,-0.31527119874954224 +illusion_0.75L,sr,187,37.4,velocity,lower_ux,0.6038703918457031 +illusion_0.75L,sr,187,37.4,velocity,lower_uy,-0.02061106264591217 +illusion_0.75L,sr,188,37.6,velocity,upper_ux,1.3700758218765259 +illusion_0.75L,sr,188,37.6,velocity,upper_uy,-0.3917924165725708 +illusion_0.75L,sr,188,37.6,velocity,center_ux,0.7371389865875244 +illusion_0.75L,sr,188,37.6,velocity,center_uy,-0.18342159688472748 +illusion_0.75L,sr,188,37.6,velocity,lower_ux,0.6178025007247925 +illusion_0.75L,sr,188,37.6,velocity,lower_uy,0.038423825055360794 +illusion_0.75L,sr,189,37.8,velocity,upper_ux,1.392288088798523 +illusion_0.75L,sr,189,37.8,velocity,upper_uy,-0.3490716218948364 +illusion_0.75L,sr,189,37.8,velocity,center_ux,0.6974353194236755 +illusion_0.75L,sr,189,37.8,velocity,center_uy,-0.035836223512887955 +illusion_0.75L,sr,189,37.8,velocity,lower_ux,0.6438972353935242 +illusion_0.75L,sr,189,37.8,velocity,lower_uy,0.0889049842953682 +illusion_0.75L,sr,190,38.0,velocity,upper_ux,1.4006980657577515 +illusion_0.75L,sr,190,38.0,velocity,upper_uy,-0.2903198003768921 +illusion_0.75L,sr,190,38.0,velocity,center_ux,0.656482458114624 +illusion_0.75L,sr,190,38.0,velocity,center_uy,0.12433996796607971 +illusion_0.75L,sr,190,38.0,velocity,lower_ux,0.6774463653564453 +illusion_0.75L,sr,190,38.0,velocity,lower_uy,0.1319461464881897 +illusion_0.75L,sr,191,38.2,velocity,upper_ux,1.391614556312561 +illusion_0.75L,sr,191,38.2,velocity,upper_uy,-0.21353395283222198 +illusion_0.75L,sr,191,38.2,velocity,center_ux,0.6207242608070374 +illusion_0.75L,sr,191,38.2,velocity,center_uy,0.2873709499835968 +illusion_0.75L,sr,191,38.2,velocity,lower_ux,0.7130008935928345 +illusion_0.75L,sr,191,38.2,velocity,lower_uy,0.17135818302631378 +illusion_0.75L,sr,192,38.4,velocity,upper_ux,1.3610843420028687 +illusion_0.75L,sr,192,38.4,velocity,upper_uy,-0.11755616217851639 +illusion_0.75L,sr,192,38.4,velocity,center_ux,0.5980327725410461 +illusion_0.75L,sr,192,38.4,velocity,center_uy,0.43604910373687744 +illusion_0.75L,sr,192,38.4,velocity,lower_ux,0.7474918961524963 +illusion_0.75L,sr,192,38.4,velocity,lower_uy,0.20999957621097565 +illusion_0.75L,sr,193,38.6,velocity,upper_ux,1.3053059577941895 +illusion_0.75L,sr,193,38.6,velocity,upper_uy,-0.0036190939135849476 +illusion_0.75L,sr,193,38.6,velocity,center_ux,0.5957424640655518 +illusion_0.75L,sr,193,38.6,velocity,center_uy,0.5492265820503235 +illusion_0.75L,sr,193,38.6,velocity,lower_ux,0.7808912396430969 +illusion_0.75L,sr,193,38.6,velocity,lower_uy,0.24780507385730743 +illusion_0.75L,sr,194,38.8,velocity,upper_ux,1.223870038986206 +illusion_0.75L,sr,194,38.8,velocity,upper_uy,0.12119174003601074 +illusion_0.75L,sr,194,38.8,velocity,center_ux,0.616142213344574 +illusion_0.75L,sr,194,38.8,velocity,center_uy,0.6132780909538269 +illusion_0.75L,sr,194,38.8,velocity,lower_ux,0.8143239617347717 +illusion_0.75L,sr,194,38.8,velocity,lower_uy,0.2832011580467224 +illusion_0.75L,sr,195,39.0,velocity,upper_ux,1.1238317489624023 +illusion_0.75L,sr,195,39.0,velocity,upper_uy,0.2421104460954666 +illusion_0.75L,sr,195,39.0,velocity,center_ux,0.6524102687835693 +illusion_0.75L,sr,195,39.0,velocity,center_uy,0.635402262210846 +illusion_0.75L,sr,195,39.0,velocity,lower_ux,0.8484823703765869 +illusion_0.75L,sr,195,39.0,velocity,lower_uy,0.31509608030319214 +illusion_0.75L,sr,196,39.2,velocity,upper_ux,1.0191514492034912 +illusion_0.75L,sr,196,39.2,velocity,upper_uy,0.3408743143081665 +illusion_0.75L,sr,196,39.2,velocity,center_ux,0.6922312378883362 +illusion_0.75L,sr,196,39.2,velocity,center_uy,0.6390847563743591 +illusion_0.75L,sr,196,39.2,velocity,lower_ux,0.8834692239761353 +illusion_0.75L,sr,196,39.2,velocity,lower_uy,0.3432992100715637 +illusion_0.75L,sr,197,39.4,velocity,upper_ux,0.9248437285423279 +illusion_0.75L,sr,197,39.4,velocity,upper_uy,0.40411311388015747 +illusion_0.75L,sr,197,39.4,velocity,center_ux,0.7269818186759949 +illusion_0.75L,sr,197,39.4,velocity,center_uy,0.6433550119400024 +illusion_0.75L,sr,197,39.4,velocity,lower_ux,0.9191986918449402 +illusion_0.75L,sr,197,39.4,velocity,lower_uy,0.36803263425827026 +illusion_0.75L,sr,198,39.6,velocity,upper_ux,0.8503630757331848 +illusion_0.75L,sr,198,39.6,velocity,upper_uy,0.42951226234436035 +illusion_0.75L,sr,198,39.6,velocity,center_ux,0.7548443078994751 +illusion_0.75L,sr,198,39.6,velocity,center_uy,0.6535137891769409 +illusion_0.75L,sr,198,39.6,velocity,lower_ux,0.955589771270752 +illusion_0.75L,sr,198,39.6,velocity,lower_uy,0.3895696997642517 +illusion_0.75L,sr,199,39.8,velocity,upper_ux,0.7965437173843384 +illusion_0.75L,sr,199,39.8,velocity,upper_uy,0.42510727047920227 +illusion_0.75L,sr,199,39.8,velocity,center_ux,0.7770500183105469 +illusion_0.75L,sr,199,39.8,velocity,center_uy,0.6677423715591431 +illusion_0.75L,sr,199,39.8,velocity,lower_ux,0.9926362037658691 +illusion_0.75L,sr,199,39.8,velocity,lower_uy,0.40811458230018616 +illusion_0.75L,sr,200,40.0,velocity,upper_ux,0.7576116323471069 +illusion_0.75L,sr,200,40.0,velocity,upper_uy,0.4025763273239136 +illusion_0.75L,sr,200,40.0,velocity,center_ux,0.7947193384170532 +illusion_0.75L,sr,200,40.0,velocity,center_uy,0.6828230023384094 +illusion_0.75L,sr,200,40.0,velocity,lower_ux,1.0304211378097534 +illusion_0.75L,sr,200,40.0,velocity,lower_uy,0.4237785339355469 +illusion_0.75L,sr,201,40.2,velocity,upper_ux,0.7261691093444824 +illusion_0.75L,sr,201,40.2,velocity,upper_uy,0.37054377794265747 +illusion_0.75L,sr,201,40.2,velocity,center_ux,0.8082470893859863 +illusion_0.75L,sr,201,40.2,velocity,center_uy,0.694344699382782 +illusion_0.75L,sr,201,40.2,velocity,lower_ux,1.069095492362976 +illusion_0.75L,sr,201,40.2,velocity,lower_uy,0.43655145168304443 +illusion_0.75L,sr,202,40.4,velocity,upper_ux,0.6970773935317993 +illusion_0.75L,sr,202,40.4,velocity,upper_uy,0.3325016498565674 +illusion_0.75L,sr,202,40.4,velocity,center_ux,0.8174143433570862 +illusion_0.75L,sr,202,40.4,velocity,center_uy,0.6958649158477783 +illusion_0.75L,sr,202,40.4,velocity,lower_ux,1.1087889671325684 +illusion_0.75L,sr,202,40.4,velocity,lower_uy,0.4462946355342865 +illusion_0.75L,sr,203,40.6,velocity,upper_ux,0.6685660481452942 +illusion_0.75L,sr,203,40.6,velocity,upper_uy,0.2885047495365143 +illusion_0.75L,sr,203,40.6,velocity,center_ux,0.8216236233711243 +illusion_0.75L,sr,203,40.6,velocity,center_uy,0.6796447038650513 +illusion_0.75L,sr,203,40.6,velocity,lower_ux,1.1495829820632935 +illusion_0.75L,sr,203,40.6,velocity,lower_uy,0.45273658633232117 +illusion_0.75L,sr,204,40.8,velocity,upper_ux,0.6415231227874756 +illusion_0.75L,sr,204,40.8,velocity,upper_uy,0.23767206072807312 +illusion_0.75L,sr,204,40.8,velocity,center_ux,0.8201805949211121 +illusion_0.75L,sr,204,40.8,velocity,center_uy,0.6392910480499268 +illusion_0.75L,sr,204,40.8,velocity,lower_ux,1.1914077997207642 +illusion_0.75L,sr,204,40.8,velocity,lower_uy,0.45542648434638977 +illusion_0.75L,sr,205,41.0,velocity,upper_ux,0.6184325814247131 +illusion_0.75L,sr,205,41.0,velocity,upper_uy,0.17994000017642975 +illusion_0.75L,sr,205,41.0,velocity,center_ux,0.8125206828117371 +illusion_0.75L,sr,205,41.0,velocity,center_uy,0.5728350281715393 +illusion_0.75L,sr,205,41.0,velocity,lower_ux,1.2338414192199707 +illusion_0.75L,sr,205,41.0,velocity,lower_uy,0.4536510109901428 +illusion_0.75L,sr,206,41.2,velocity,upper_ux,0.6025866866111755 +illusion_0.75L,sr,206,41.2,velocity,upper_uy,0.11702220886945724 +illusion_0.75L,sr,206,41.2,velocity,center_ux,0.7981922030448914 +illusion_0.75L,sr,206,41.2,velocity,center_uy,0.48336514830589294 +illusion_0.75L,sr,206,41.2,velocity,lower_ux,1.275907039642334 +illusion_0.75L,sr,206,41.2,velocity,lower_uy,0.44631099700927734 +illusion_0.75L,sr,207,41.4,velocity,upper_ux,0.597415566444397 +illusion_0.75L,sr,207,41.4,velocity,upper_uy,0.05260757356882095 +illusion_0.75L,sr,207,41.4,velocity,center_ux,0.7766942381858826 +illusion_0.75L,sr,207,41.4,velocity,center_uy,0.3759111166000366 +illusion_0.75L,sr,207,41.4,velocity,lower_ux,1.3159164190292358 +illusion_0.75L,sr,207,41.4,velocity,lower_uy,0.4318528473377228 +illusion_0.75L,sr,208,41.6,velocity,upper_ux,0.605421245098114 +illusion_0.75L,sr,208,41.6,velocity,upper_uy,-0.008415988646447659 +illusion_0.75L,sr,208,41.6,velocity,center_ux,0.7476626634597778 +illusion_0.75L,sr,208,41.6,velocity,center_uy,0.2534148097038269 +illusion_0.75L,sr,208,41.6,velocity,lower_ux,1.3513449430465698 +illusion_0.75L,sr,208,41.6,velocity,lower_uy,0.40822505950927734 +illusion_0.75L,sr,209,41.8,velocity,upper_ux,0.6266283988952637 +illusion_0.75L,sr,209,41.8,velocity,upper_uy,-0.06201411783695221 +illusion_0.75L,sr,209,41.8,velocity,center_ux,0.7116947770118713 +illusion_0.75L,sr,209,41.8,velocity,center_uy,0.11603221297264099 +illusion_0.75L,sr,209,41.8,velocity,lower_ux,1.3788949251174927 +illusion_0.75L,sr,209,41.8,velocity,lower_uy,0.3730539083480835 +illusion_0.75L,sr,210,42.0,velocity,upper_ux,0.6576683521270752 +illusion_0.75L,sr,210,42.0,velocity,upper_uy,-0.10740523040294647 +illusion_0.75L,sr,210,42.0,velocity,center_ux,0.6714016199111938 +illusion_0.75L,sr,210,42.0,velocity,center_uy,-0.03560573235154152 +illusion_0.75L,sr,210,42.0,velocity,lower_ux,1.394973874092102 +illusion_0.75L,sr,210,42.0,velocity,lower_uy,0.3240220546722412 +illusion_0.75L,sr,211,42.2,velocity,upper_ux,0.6929861307144165 +illusion_0.75L,sr,211,42.2,velocity,upper_uy,-0.14748863875865936 +illusion_0.75L,sr,211,42.2,velocity,center_ux,0.6318132877349854 +illusion_0.75L,sr,211,42.2,velocity,center_uy,-0.19620583951473236 +illusion_0.75L,sr,211,42.2,velocity,lower_ux,1.3962193727493286 +illusion_0.75L,sr,211,42.2,velocity,lower_uy,0.2593013048171997 +illusion_0.75L,sr,212,42.4,velocity,upper_ux,0.728030800819397 +illusion_0.75L,sr,212,42.4,velocity,upper_uy,-0.18605373799800873 +illusion_0.75L,sr,212,42.4,velocity,center_ux,0.6000818014144897 +illusion_0.75L,sr,212,42.4,velocity,center_uy,-0.35335326194763184 +illusion_0.75L,sr,212,42.4,velocity,lower_ux,1.3794853687286377 +illusion_0.75L,sr,212,42.4,velocity,lower_uy,0.17768920958042145 +illusion_0.75L,sr,213,42.6,velocity,upper_ux,0.761363685131073 +illusion_0.75L,sr,213,42.6,velocity,upper_uy,-0.2244850993156433 +illusion_0.75L,sr,213,42.6,velocity,center_ux,0.5843170285224915 +illusion_0.75L,sr,213,42.6,velocity,center_uy,-0.48798754811286926 +illusion_0.75L,sr,213,42.6,velocity,lower_ux,1.3412034511566162 +illusion_0.75L,sr,213,42.6,velocity,lower_uy,0.07888180017471313 +illusion_0.75L,sr,214,42.8,velocity,upper_ux,0.7939119935035706 +illusion_0.75L,sr,214,42.8,velocity,upper_uy,-0.26159873604774475 +illusion_0.75L,sr,214,42.8,velocity,center_ux,0.5907365679740906 +illusion_0.75L,sr,214,42.8,velocity,center_uy,-0.5805882811546326 +illusion_0.75L,sr,214,42.8,velocity,lower_ux,1.278245210647583 +illusion_0.75L,sr,214,42.8,velocity,lower_uy,-0.03471992164850235 +illusion_0.75L,sr,215,43.0,velocity,upper_ux,0.8268810510635376 +illusion_0.75L,sr,215,43.0,velocity,upper_uy,-0.29580262303352356 +illusion_0.75L,sr,215,43.0,velocity,center_ux,0.6185148358345032 +illusion_0.75L,sr,215,43.0,velocity,center_uy,-0.6248415112495422 +illusion_0.75L,sr,215,43.0,velocity,lower_ux,1.191508412361145 +illusion_0.75L,sr,215,43.0,velocity,lower_uy,-0.15486396849155426 +illusion_0.75L,sr,216,43.2,velocity,upper_ux,0.8607949614524841 +illusion_0.75L,sr,216,43.2,velocity,upper_uy,-0.32641637325286865 +illusion_0.75L,sr,216,43.2,velocity,center_ux,0.65777987241745 +illusion_0.75L,sr,216,43.2,velocity,center_uy,-0.636050283908844 +illusion_0.75L,sr,216,43.2,velocity,lower_ux,1.0892481803894043 +illusion_0.75L,sr,216,43.2,velocity,lower_uy,-0.2667323052883148 +illusion_0.75L,sr,217,43.4,velocity,upper_ux,0.8956603407859802 +illusion_0.75L,sr,217,43.4,velocity,upper_uy,-0.3534735143184662 +illusion_0.75L,sr,217,43.4,velocity,center_ux,0.6964691877365112 +illusion_0.75L,sr,217,43.4,velocity,center_uy,-0.638115406036377 +illusion_0.75L,sr,217,43.4,velocity,lower_ux,0.9855613708496094 +illusion_0.75L,sr,217,43.4,velocity,lower_uy,-0.3537732660770416 +illusion_0.75L,sr,218,43.6,velocity,upper_ux,0.9313819408416748 +illusion_0.75L,sr,218,43.6,velocity,upper_uy,-0.3772314786911011 +illusion_0.75L,sr,218,43.6,velocity,center_ux,0.7285807728767395 +illusion_0.75L,sr,218,43.6,velocity,center_uy,-0.644500195980072 +illusion_0.75L,sr,218,43.6,velocity,lower_ux,0.894472062587738 +illusion_0.75L,sr,218,43.6,velocity,lower_uy,-0.405425101518631 +illusion_0.75L,sr,219,43.8,velocity,upper_ux,0.9679096937179565 +illusion_0.75L,sr,219,43.8,velocity,upper_uy,-0.39794662594795227 +illusion_0.75L,sr,219,43.8,velocity,center_ux,0.7540203928947449 +illusion_0.75L,sr,219,43.8,velocity,center_uy,-0.6565651893615723 +illusion_0.75L,sr,219,43.8,velocity,lower_ux,0.823881208896637 +illusion_0.75L,sr,219,43.8,velocity,lower_uy,-0.42180106043815613 +illusion_0.75L,sr,220,44.0,velocity,upper_ux,1.0052419900894165 +illusion_0.75L,sr,220,44.0,velocity,upper_uy,-0.415778249502182 +illusion_0.75L,sr,220,44.0,velocity,center_ux,0.7741960287094116 +illusion_0.75L,sr,220,44.0,velocity,center_uy,-0.6715127825737 +illusion_0.75L,sr,220,44.0,velocity,lower_ux,0.7732818126678467 +illusion_0.75L,sr,220,44.0,velocity,lower_uy,-0.4116748571395874 +illusion_0.75L,sr,221,44.2,velocity,upper_ux,1.0434257984161377 +illusion_0.75L,sr,221,44.2,velocity,upper_uy,-0.43075960874557495 +illusion_0.75L,sr,221,44.2,velocity,center_ux,0.7899143099784851 +illusion_0.75L,sr,221,44.2,velocity,center_uy,-0.6857479214668274 +illusion_0.75L,sr,221,44.2,velocity,lower_ux,0.7364403605461121 +illusion_0.75L,sr,221,44.2,velocity,lower_uy,-0.3857811987400055 +illusion_0.75L,sr,222,44.4,velocity,upper_ux,1.082529902458191 +illusion_0.75L,sr,222,44.4,velocity,upper_uy,-0.442798912525177 +illusion_0.75L,sr,222,44.4,velocity,center_ux,0.8012793064117432 +illusion_0.75L,sr,222,44.4,velocity,center_uy,-0.6942140460014343 +illusion_0.75L,sr,222,44.4,velocity,lower_ux,0.706321656703949 +illusion_0.75L,sr,222,44.4,velocity,lower_uy,-0.3513392508029938 +illusion_0.75L,sr,223,44.6,velocity,upper_ux,1.122636318206787 +illusion_0.75L,sr,223,44.6,velocity,upper_uy,-0.451689213514328 +illusion_0.75L,sr,223,44.6,velocity,center_ux,0.8079679012298584 +illusion_0.75L,sr,223,44.6,velocity,center_uy,-0.6899669766426086 +illusion_0.75L,sr,223,44.6,velocity,lower_ux,0.6784831881523132 +illusion_0.75L,sr,223,44.6,velocity,lower_uy,-0.31099313497543335 +illusion_0.75L,sr,224,44.8,velocity,upper_ux,1.1637109518051147 +illusion_0.75L,sr,224,44.8,velocity,upper_uy,-0.4570644497871399 +illusion_0.75L,sr,224,44.8,velocity,center_ux,0.8094048500061035 +illusion_0.75L,sr,224,44.8,velocity,center_uy,-0.6655374765396118 +illusion_0.75L,sr,224,44.8,velocity,lower_ux,0.651701033115387 +illusion_0.75L,sr,224,44.8,velocity,lower_uy,-0.2646952271461487 +illusion_0.75L,sr,225,45.0,velocity,upper_ux,1.2055410146713257 +illusion_0.75L,sr,225,45.0,velocity,upper_uy,-0.4583422541618347 +illusion_0.75L,sr,225,45.0,velocity,center_ux,0.8050986528396606 +illusion_0.75L,sr,225,45.0,velocity,center_uy,-0.6158897876739502 +illusion_0.75L,sr,225,45.0,velocity,lower_ux,0.6272405982017517 +illusion_0.75L,sr,225,45.0,velocity,lower_uy,-0.2119632363319397 +illusion_0.75L,sr,226,45.2,velocity,upper_ux,1.247555136680603 +illusion_0.75L,sr,226,45.2,velocity,upper_uy,-0.45465514063835144 +illusion_0.75L,sr,226,45.2,velocity,center_ux,0.7947549223899841 +illusion_0.75L,sr,226,45.2,velocity,center_uy,-0.5409327149391174 +illusion_0.75L,sr,226,45.2,velocity,lower_ux,0.607871413230896 +illusion_0.75L,sr,226,45.2,velocity,lower_uy,-0.15339313447475433 +illusion_0.75L,sr,227,45.4,velocity,upper_ux,1.2885985374450684 +illusion_0.75L,sr,227,45.4,velocity,upper_uy,-0.4447617828845978 +illusion_0.75L,sr,227,45.4,velocity,center_ux,0.7780728936195374 +illusion_0.75L,sr,227,45.4,velocity,center_uy,-0.444911926984787 +illusion_0.75L,sr,227,45.4,velocity,lower_ux,0.5970263481140137 +illusion_0.75L,sr,227,45.4,velocity,lower_uy,-0.0913739949464798 +illusion_0.75L,sr,228,45.6,velocity,upper_ux,1.3266927003860474 +illusion_0.75L,sr,228,45.6,velocity,upper_uy,-0.4269980490207672 +illusion_0.75L,sr,228,45.6,velocity,center_ux,0.7545072436332703 +illusion_0.75L,sr,228,45.6,velocity,center_uy,-0.3326414227485657 +illusion_0.75L,sr,228,45.6,velocity,lower_ux,0.597838282585144 +illusion_0.75L,sr,228,45.6,velocity,lower_uy,-0.029955687001347542 +illusion_0.75L,sr,229,45.8,velocity,upper_ux,1.359068751335144 +illusion_0.75L,sr,229,45.8,velocity,upper_uy,-0.3993353247642517 +illusion_0.75L,sr,229,45.8,velocity,center_ux,0.7237507700920105 +illusion_0.75L,sr,229,45.8,velocity,center_uy,-0.206243097782135 +illusion_0.75L,sr,229,45.8,velocity,lower_ux,0.6118982434272766 +illusion_0.75L,sr,229,45.8,velocity,lower_uy,0.026388758793473244 +illusion_0.75L,sr,230,46.0,velocity,upper_ux,1.3824244737625122 +illusion_0.75L,sr,230,46.0,velocity,upper_uy,-0.3596307635307312 +illusion_0.75L,sr,230,46.0,velocity,center_ux,0.6867485642433167 +illusion_0.75L,sr,230,46.0,velocity,center_uy,-0.06570944935083389 +illusion_0.75L,sr,230,46.0,velocity,lower_ux,0.6378371715545654 +illusion_0.75L,sr,230,46.0,velocity,lower_uy,0.07502856105566025 +illusion_0.75L,sr,231,46.2,velocity,upper_ux,1.3934675455093384 +illusion_0.75L,sr,231,46.2,velocity,upper_uy,-0.30604439973831177 +illusion_0.75L,sr,231,46.2,velocity,center_ux,0.6466187834739685 +illusion_0.75L,sr,231,46.2,velocity,center_uy,0.08739499002695084 +illusion_0.75L,sr,231,46.2,velocity,lower_ux,0.671156108379364 +illusion_0.75L,sr,231,46.2,velocity,lower_uy,0.11693084985017776 +illusion_0.75L,sr,232,46.4,velocity,upper_ux,1.3893296718597412 +illusion_0.75L,sr,232,46.4,velocity,upper_uy,-0.237355038523674 +illusion_0.75L,sr,232,46.4,velocity,center_ux,0.6088926196098328 +illusion_0.75L,sr,232,46.4,velocity,center_uy,0.246171772480011 +illusion_0.75L,sr,232,46.4,velocity,lower_ux,0.7063807845115662 +illusion_0.75L,sr,232,46.4,velocity,lower_uy,0.15572069585323334 +illusion_0.75L,sr,233,46.6,velocity,upper_ux,1.3672512769699097 +illusion_0.75L,sr,233,46.6,velocity,upper_uy,-0.15291395783424377 +illusion_0.75L,sr,233,46.6,velocity,center_ux,0.5810661911964417 +illusion_0.75L,sr,233,46.6,velocity,center_uy,0.39664122462272644 +illusion_0.75L,sr,233,46.6,velocity,lower_ux,0.7401580810546875 +illusion_0.75L,sr,233,46.6,velocity,lower_uy,0.194337859749794 +illusion_0.75L,sr,234,46.8,velocity,upper_ux,1.32395601272583 +illusion_0.75L,sr,234,46.8,velocity,upper_uy,-0.05291026085615158 +illusion_0.75L,sr,234,46.8,velocity,center_ux,0.5711952447891235 +illusion_0.75L,sr,234,46.8,velocity,center_uy,0.5192919373512268 +illusion_0.75L,sr,234,46.8,velocity,lower_ux,0.7722821235656738 +illusion_0.75L,sr,234,46.8,velocity,lower_uy,0.23287419974803925 +illusion_0.75L,sr,235,47.0,velocity,upper_ux,1.256709098815918 +illusion_0.75L,sr,235,47.0,velocity,upper_uy,0.05968354642391205 +illusion_0.75L,sr,235,47.0,velocity,center_ux,0.5842366218566895 +illusion_0.75L,sr,235,47.0,velocity,center_uy,0.5971131324768066 +illusion_0.75L,sr,235,47.0,velocity,lower_ux,0.8040381073951721 +illusion_0.75L,sr,235,47.0,velocity,lower_uy,0.2696373164653778 +illusion_0.75L,sr,236,47.2,velocity,upper_ux,1.1670658588409424 +illusion_0.75L,sr,236,47.2,velocity,upper_uy,0.17616727948188782 +illusion_0.75L,sr,236,47.2,velocity,center_ux,0.6168774366378784 +illusion_0.75L,sr,236,47.2,velocity,center_uy,0.6295130252838135 +illusion_0.75L,sr,236,47.2,velocity,lower_ux,0.8364518880844116 +illusion_0.75L,sr,236,47.2,velocity,lower_uy,0.30322396755218506 +illusion_0.75L,sr,237,47.4,velocity,upper_ux,1.0637763738632202 +illusion_0.75L,sr,237,47.4,velocity,upper_uy,0.28203117847442627 +illusion_0.75L,sr,237,47.4,velocity,center_ux,0.6576120853424072 +illusion_0.75L,sr,237,47.4,velocity,center_uy,0.6358660459518433 +illusion_0.75L,sr,237,47.4,velocity,lower_ux,0.8698937892913818 +illusion_0.75L,sr,237,47.4,velocity,lower_uy,0.3331974148750305 +illusion_0.75L,sr,238,47.6,velocity,upper_ux,0.9608616828918457 +illusion_0.75L,sr,238,47.6,velocity,upper_uy,0.36197715997695923 +illusion_0.75L,sr,238,47.6,velocity,center_ux,0.6953259110450745 +illusion_0.75L,sr,238,47.6,velocity,center_uy,0.638404130935669 +illusion_0.75L,sr,238,47.6,velocity,lower_ux,0.9044047594070435 +illusion_0.75L,sr,238,47.6,velocity,lower_uy,0.3596974313259125 +illusion_0.75L,sr,239,47.8,velocity,upper_ux,0.8716650605201721 +illusion_0.75L,sr,239,47.8,velocity,upper_uy,0.4070390462875366 +illusion_0.75L,sr,239,47.8,velocity,center_ux,0.7258460521697998 +illusion_0.75L,sr,239,47.8,velocity,center_uy,0.6466529965400696 +illusion_0.75L,sr,239,47.8,velocity,lower_ux,0.9399138689041138 +illusion_0.75L,sr,239,47.8,velocity,lower_uy,0.3829961121082306 +illusion_0.75L,sr,240,48.0,velocity,upper_ux,0.8032294511795044 +illusion_0.75L,sr,240,48.0,velocity,upper_uy,0.41839736700057983 +illusion_0.75L,sr,240,48.0,velocity,center_ux,0.749912440776825 +illusion_0.75L,sr,240,48.0,velocity,center_uy,0.659992516040802 +illusion_0.75L,sr,240,48.0,velocity,lower_ux,0.9763925075531006 +illusion_0.75L,sr,240,48.0,velocity,lower_uy,0.4033041298389435 +illusion_0.75L,sr,241,48.2,velocity,upper_ux,0.7544567584991455 +illusion_0.75L,sr,241,48.2,velocity,upper_uy,0.40490809082984924 +illusion_0.75L,sr,241,48.2,velocity,center_ux,0.7689344882965088 +illusion_0.75L,sr,241,48.2,velocity,center_uy,0.675203800201416 +illusion_0.75L,sr,241,48.2,velocity,lower_ux,1.013848066329956 +illusion_0.75L,sr,241,48.2,velocity,lower_uy,0.420725554227829 +illusion_0.75L,sr,242,48.4,velocity,upper_ux,0.719002366065979 +illusion_0.75L,sr,242,48.4,velocity,upper_uy,0.37669241428375244 +illusion_0.75L,sr,242,48.4,velocity,center_ux,0.7835350036621094 +illusion_0.75L,sr,242,48.4,velocity,center_uy,0.6883933544158936 +illusion_0.75L,sr,242,48.4,velocity,lower_ux,1.0523064136505127 +illusion_0.75L,sr,242,48.4,velocity,lower_uy,0.4352484941482544 +illusion_0.75L,sr,243,48.6,velocity,upper_ux,0.6900625824928284 +illusion_0.75L,sr,243,48.6,velocity,upper_uy,0.34028229117393494 +illusion_0.75L,sr,243,48.6,velocity,center_ux,0.7936755418777466 +illusion_0.75L,sr,243,48.6,velocity,center_uy,0.6940770745277405 +illusion_0.75L,sr,243,48.6,velocity,lower_ux,1.0917822122573853 +illusion_0.75L,sr,243,48.6,velocity,lower_uy,0.44675061106681824 +illusion_0.75L,sr,244,48.8,velocity,upper_ux,0.663489818572998 +illusion_0.75L,sr,244,48.8,velocity,upper_uy,0.2979965806007385 +illusion_0.75L,sr,244,48.8,velocity,center_ux,0.7989447116851807 +illusion_0.75L,sr,244,48.8,velocity,center_uy,0.6851049065589905 +illusion_0.75L,sr,244,48.8,velocity,lower_ux,1.1322506666183472 +illusion_0.75L,sr,244,48.8,velocity,lower_uy,0.45496833324432373 +illusion_0.75L,sr,245,49.0,velocity,upper_ux,0.6383434534072876 +illusion_0.75L,sr,245,49.0,velocity,upper_uy,0.24984250962734222 +illusion_0.75L,sr,245,49.0,velocity,center_ux,0.7988418340682983 +illusion_0.75L,sr,245,49.0,velocity,center_uy,0.654442310333252 +illusion_0.75L,sr,245,49.0,velocity,lower_ux,1.1735916137695312 +illusion_0.75L,sr,245,49.0,velocity,lower_uy,0.45947265625 +illusion_0.75L,sr,246,49.2,velocity,upper_ux,0.6160646677017212 +illusion_0.75L,sr,246,49.2,velocity,upper_uy,0.1956520974636078 +illusion_0.75L,sr,246,49.2,velocity,center_ux,0.7929942607879639 +illusion_0.75L,sr,246,49.2,velocity,center_uy,0.5981842279434204 +illusion_0.75L,sr,246,49.2,velocity,lower_ux,1.2154405117034912 +illusion_0.75L,sr,246,49.2,velocity,lower_uy,0.45958977937698364 +illusion_0.75L,sr,247,49.4,velocity,upper_ux,0.5995233654975891 +illusion_0.75L,sr,247,49.4,velocity,upper_uy,0.1364574134349823 +illusion_0.75L,sr,247,49.4,velocity,center_ux,0.781199038028717 +illusion_0.75L,sr,247,49.4,velocity,center_uy,0.5175177454948425 +illusion_0.75L,sr,247,49.4,velocity,lower_ux,1.2570394277572632 +illusion_0.75L,sr,247,49.4,velocity,lower_uy,0.45435500144958496 +illusion_0.75L,sr,248,49.6,velocity,upper_ux,0.5921652913093567 +illusion_0.75L,sr,248,49.6,velocity,upper_uy,0.07505961507558823 +illusion_0.75L,sr,248,49.6,velocity,center_ux,0.7631808519363403 +illusion_0.75L,sr,248,49.6,velocity,center_uy,0.4172939956188202 +illusion_0.75L,sr,248,49.6,velocity,lower_ux,1.2970582246780396 +illusion_0.75L,sr,248,49.6,velocity,lower_uy,0.44244930148124695 +illusion_0.75L,sr,249,49.8,velocity,upper_ux,0.5969194173812866 +illusion_0.75L,sr,249,49.8,velocity,upper_uy,0.015628915280103683 +illusion_0.75L,sr,249,49.8,velocity,center_ux,0.7384388446807861 +illusion_0.75L,sr,249,49.8,velocity,center_uy,0.3020331859588623 +illusion_0.75L,sr,249,49.8,velocity,lower_ux,1.3334038257598877 +illusion_0.75L,sr,249,49.8,velocity,lower_uy,0.42216795682907104 +illusion_0.75L,sr,250,50.0,velocity,upper_ux,0.6147242784500122 +illusion_0.75L,sr,250,50.0,velocity,upper_uy,-0.037824857980012894 +illusion_0.75L,sr,250,50.0,velocity,center_ux,0.7067593932151794 +illusion_0.75L,sr,250,50.0,velocity,center_uy,0.17331485450267792 +illusion_0.75L,sr,250,50.0,velocity,lower_ux,1.3632136583328247 +illusion_0.75L,sr,250,50.0,velocity,lower_uy,0.39153027534484863 +illusion_0.75L,sr,251,50.2,velocity,upper_ux,0.6433500051498413 +illusion_0.75L,sr,251,50.2,velocity,upper_uy,-0.08366522938013077 +illusion_0.75L,sr,251,50.2,velocity,center_ux,0.6693353056907654 +illusion_0.75L,sr,251,50.2,velocity,center_uy,0.03114086575806141 +illusion_0.75L,sr,251,50.2,velocity,lower_ux,1.383263349533081 +illusion_0.75L,sr,251,50.2,velocity,lower_uy,0.34862542152404785 +illusion_0.75L,sr,252,50.4,velocity,upper_ux,0.6778062582015991 +illusion_0.75L,sr,252,50.4,velocity,upper_uy,-0.12380208820104599 +illusion_0.75L,sr,252,50.4,velocity,center_ux,0.6296307444572449 +illusion_0.75L,sr,252,50.4,velocity,center_uy,-0.12221221625804901 +illusion_0.75L,sr,252,50.4,velocity,lower_ux,1.3905845880508423 +illusion_0.75L,sr,252,50.4,velocity,lower_uy,0.292049765586853 +illusion_0.75L,sr,253,50.6,velocity,upper_ux,0.7129253149032593 +illusion_0.75L,sr,253,50.6,velocity,upper_uy,-0.16202402114868164 +illusion_0.75L,sr,253,50.6,velocity,center_ux,0.5934942364692688 +illusion_0.75L,sr,253,50.6,velocity,center_uy,-0.27884694933891296 +illusion_0.75L,sr,253,50.6,velocity,lower_ux,1.382737636566162 +illusion_0.75L,sr,253,50.6,velocity,lower_uy,0.221045583486557 +illusion_0.75L,sr,254,50.8,velocity,upper_ux,0.7461626529693604 +illusion_0.75L,sr,254,50.8,velocity,upper_uy,-0.20065292716026306 +illusion_0.75L,sr,254,50.8,velocity,center_ux,0.5685904622077942 +illusion_0.75L,sr,254,50.8,velocity,center_uy,-0.42400801181793213 +illusion_0.75L,sr,254,50.8,velocity,lower_ux,1.3572916984558105 +illusion_0.75L,sr,254,50.8,velocity,lower_uy,0.13532455265522003 +illusion_0.75L,sr,255,51.0,velocity,upper_ux,0.7778701186180115 +illusion_0.75L,sr,255,51.0,velocity,upper_uy,-0.2391156405210495 +illusion_0.75L,sr,255,51.0,velocity,center_ux,0.5627442002296448 +illusion_0.75L,sr,255,51.0,velocity,center_uy,-0.538291335105896 +illusion_0.75L,sr,255,51.0,velocity,lower_ux,1.3111584186553955 +illusion_0.75L,sr,255,51.0,velocity,lower_uy,0.03537621349096298 +illusion_0.75L,sr,256,51.2,velocity,upper_ux,0.8094215393066406 +illusion_0.75L,sr,256,51.2,velocity,upper_uy,-0.2755475342273712 +illusion_0.75L,sr,256,51.2,velocity,center_ux,0.5799320936203003 +illusion_0.75L,sr,256,51.2,velocity,center_uy,-0.6067373156547546 +illusion_0.75L,sr,256,51.2,velocity,lower_ux,1.2418403625488281 +illusion_0.75L,sr,256,51.2,velocity,lower_uy,-0.07553734630346298 +illusion_0.75L,sr,257,51.4,velocity,upper_ux,0.8416927456855774 +illusion_0.75L,sr,257,51.4,velocity,upper_uy,-0.30869171023368835 +illusion_0.75L,sr,257,51.4,velocity,center_ux,0.6152502298355103 +illusion_0.75L,sr,257,51.4,velocity,center_uy,-0.6323673129081726 +illusion_0.75L,sr,257,51.4,velocity,lower_ux,1.151117205619812 +illusion_0.75L,sr,257,51.4,velocity,lower_uy,-0.18869549036026 +illusion_0.75L,sr,258,51.6,velocity,upper_ux,0.8749414682388306 +illusion_0.75L,sr,258,51.6,velocity,upper_uy,-0.3382568359375 +illusion_0.75L,sr,258,51.6,velocity,center_ux,0.656433641910553 +illusion_0.75L,sr,258,51.6,velocity,center_uy,-0.636367917060852 +illusion_0.75L,sr,258,51.6,velocity,lower_ux,1.0477288961410522 +illusion_0.75L,sr,258,51.6,velocity,lower_uy,-0.2900983691215515 +illusion_0.75L,sr,259,51.8,velocity,upper_ux,0.9092219471931458 +illusion_0.75L,sr,259,51.8,velocity,upper_uy,-0.36442017555236816 +illusion_0.75L,sr,259,51.8,velocity,center_ux,0.6931711435317993 +illusion_0.75L,sr,259,51.8,velocity,center_uy,-0.6393588781356812 +illusion_0.75L,sr,259,51.8,velocity,lower_ux,0.9454277157783508 +illusion_0.75L,sr,259,51.8,velocity,lower_uy,-0.3653737008571625 +illusion_0.75L,sr,260,52.0,velocity,upper_ux,0.9445669054985046 +illusion_0.75L,sr,260,52.0,velocity,upper_uy,-0.3874388039112091 +illusion_0.75L,sr,260,52.0,velocity,center_ux,0.7224385738372803 +illusion_0.75L,sr,260,52.0,velocity,center_uy,-0.6485742926597595 +illusion_0.75L,sr,260,52.0,velocity,lower_ux,0.8572044372558594 +illusion_0.75L,sr,260,52.0,velocity,lower_uy,-0.4064498543739319 +illusion_0.75L,sr,261,52.2,velocity,upper_ux,0.9809908270835876 +illusion_0.75L,sr,261,52.2,velocity,upper_uy,-0.4074934720993042 +illusion_0.75L,sr,261,52.2,velocity,center_ux,0.7453901171684265 +illusion_0.75L,sr,261,52.2,velocity,center_uy,-0.662452757358551 +illusion_0.75L,sr,261,52.2,velocity,lower_ux,0.7897428274154663 +illusion_0.75L,sr,261,52.2,velocity,lower_uy,-0.4149426221847534 +illusion_0.75L,sr,262,52.4,velocity,upper_ux,1.018520474433899 +illusion_0.75L,sr,262,52.4,velocity,upper_uy,-0.4246562123298645 +illusion_0.75L,sr,262,52.4,velocity,center_ux,0.7634024620056152 +illusion_0.75L,sr,262,52.4,velocity,center_uy,-0.6775810718536377 +illusion_0.75L,sr,262,52.4,velocity,lower_ux,0.7417780160903931 +illusion_0.75L,sr,262,52.4,velocity,lower_uy,-0.39956197142601013 +illusion_0.75L,sr,263,52.6,velocity,upper_ux,1.0571881532669067 +illusion_0.75L,sr,263,52.6,velocity,upper_uy,-0.4388956129550934 +illusion_0.75L,sr,263,52.6,velocity,center_ux,0.777021586894989 +illusion_0.75L,sr,263,52.6,velocity,center_uy,-0.6898710131645203 +illusion_0.75L,sr,263,52.6,velocity,lower_ux,0.7070466876029968 +illusion_0.75L,sr,263,52.6,velocity,lower_uy,-0.36998501420021057 +illusion_0.75L,sr,264,52.8,velocity,upper_ux,1.0969853401184082 +illusion_0.75L,sr,264,52.8,velocity,upper_uy,-0.45006489753723145 +illusion_0.75L,sr,264,52.8,velocity,center_ux,0.7861680388450623 +illusion_0.75L,sr,264,52.8,velocity,center_uy,-0.6936017870903015 +illusion_0.75L,sr,264,52.8,velocity,lower_ux,0.6789336204528809 +illusion_0.75L,sr,264,52.8,velocity,lower_uy,-0.33239540457725525 +illusion_0.75L,sr,265,53.0,velocity,upper_ux,1.1378265619277954 +illusion_0.75L,sr,265,53.0,velocity,upper_uy,-0.457856148481369 +illusion_0.75L,sr,265,53.0,velocity,center_ux,0.7904342412948608 +illusion_0.75L,sr,265,53.0,velocity,center_uy,-0.6815583109855652 +illusion_0.75L,sr,265,53.0,velocity,lower_ux,0.6534399390220642 +illusion_0.75L,sr,265,53.0,velocity,lower_uy,-0.28899115324020386 +illusion_0.75L,sr,266,53.2,velocity,upper_ux,1.1794745922088623 +illusion_0.75L,sr,266,53.2,velocity,upper_uy,-0.4617655575275421 +illusion_0.75L,sr,266,53.2,velocity,center_ux,0.7893521189689636 +illusion_0.75L,sr,266,53.2,velocity,center_uy,-0.6470400094985962 +illusion_0.75L,sr,266,53.2,velocity,lower_ux,0.6296822428703308 +illusion_0.75L,sr,266,53.2,velocity,lower_uy,-0.23986870050430298 +illusion_0.75L,sr,267,53.4,velocity,upper_ux,1.2214523553848267 +illusion_0.75L,sr,267,53.4,velocity,upper_uy,-0.46107006072998047 +illusion_0.75L,sr,267,53.4,velocity,center_ux,0.7826328277587891 +illusion_0.75L,sr,267,53.4,velocity,center_uy,-0.5868807435035706 +illusion_0.75L,sr,267,53.4,velocity,lower_ux,0.6091492176055908 +illusion_0.75L,sr,267,53.4,velocity,lower_uy,-0.18508531153202057 +illusion_0.75L,sr,268,53.6,velocity,upper_ux,1.2628514766693115 +illusion_0.75L,sr,268,53.6,velocity,upper_uy,-0.45475533604621887 +illusion_0.75L,sr,268,53.6,velocity,center_ux,0.7700950503349304 +illusion_0.75L,sr,268,53.6,velocity,center_uy,-0.5029992461204529 +illusion_0.75L,sr,268,53.6,velocity,lower_ux,0.5947189331054688 +illusion_0.75L,sr,268,53.6,velocity,lower_uy,-0.12595093250274658 +illusion_0.75L,sr,269,53.8,velocity,upper_ux,1.3021639585494995 +illusion_0.75L,sr,269,53.8,velocity,upper_uy,-0.4414392113685608 +illusion_0.75L,sr,269,53.8,velocity,center_ux,0.7513845562934875 +illusion_0.75L,sr,269,53.8,velocity,center_uy,-0.4004746675491333 +illusion_0.75L,sr,269,53.8,velocity,lower_ux,0.5897481441497803 +illusion_0.75L,sr,269,53.8,velocity,lower_uy,-0.06543601304292679 +illusion_0.75L,sr,270,54.0,velocity,upper_ux,1.3371919393539429 +illusion_0.75L,sr,270,54.0,velocity,upper_uy,-0.41939032077789307 +illusion_0.75L,sr,270,54.0,velocity,center_ux,0.7259695529937744 +illusion_0.75L,sr,270,54.0,velocity,center_uy,-0.28357216715812683 +illusion_0.75L,sr,270,54.0,velocity,lower_ux,0.5969448089599609 +illusion_0.75L,sr,270,54.0,velocity,lower_uy,-0.00765572115778923 +illusion_0.75L,sr,271,54.2,velocity,upper_ux,1.365128517150879 +illusion_0.75L,sr,271,54.2,velocity,upper_uy,-0.3867352604866028 +illusion_0.75L,sr,271,54.2,velocity,center_ux,0.6937679052352905 +illusion_0.75L,sr,271,54.2,velocity,center_uy,-0.15362663567066193 +illusion_0.75L,sr,271,54.2,velocity,lower_ux,0.6168693900108337 +illusion_0.75L,sr,271,54.2,velocity,lower_uy,0.04376525804400444 +illusion_0.75L,sr,272,54.4,velocity,upper_ux,1.3829188346862793 +illusion_0.75L,sr,272,54.4,velocity,upper_uy,-0.34180644154548645 +illusion_0.75L,sr,272,54.4,velocity,center_ux,0.6561694145202637 +illusion_0.75L,sr,272,54.4,velocity,center_uy,-0.010761821642518044 +illusion_0.75L,sr,272,54.4,velocity,lower_ux,0.646822988986969 +illusion_0.75L,sr,272,54.4,velocity,lower_uy,0.08783620595932007 +illusion_0.75L,sr,273,54.6,velocity,upper_ux,1.3878785371780396 +illusion_0.75L,sr,273,54.6,velocity,upper_uy,-0.28350162506103516 +illusion_0.75L,sr,273,54.6,velocity,center_ux,0.6168406009674072 +illusion_0.75L,sr,273,54.6,velocity,center_uy,0.1423157900571823 +illusion_0.75L,sr,273,54.6,velocity,lower_ux,0.6816340088844299 +illusion_0.75L,sr,273,54.6,velocity,lower_uy,0.12698443233966827 +illusion_0.75L,sr,274,54.8,velocity,upper_ux,1.377909541130066 +illusion_0.75L,sr,274,54.8,velocity,upper_uy,-0.2113514393568039 +illusion_0.75L,sr,274,54.8,velocity,center_ux,0.5817984938621521 +illusion_0.75L,sr,274,54.8,velocity,center_uy,0.2972359359264374 +illusion_0.75L,sr,274,54.8,velocity,lower_ux,0.7164627909660339 +illusion_0.75L,sr,274,54.8,velocity,lower_uy,0.16497570276260376 +illusion_0.75L,sr,275,55.0,velocity,upper_ux,1.3508126735687256 +illusion_0.75L,sr,275,55.0,velocity,upper_uy,-0.12526915967464447 +illusion_0.75L,sr,275,55.0,velocity,center_ux,0.5587505102157593 +illusion_0.75L,sr,275,55.0,velocity,center_uy,0.4390030801296234 +illusion_0.75L,sr,275,55.0,velocity,lower_ux,0.7492912411689758 +illusion_0.75L,sr,275,55.0,velocity,lower_uy,0.20367099344730377 +illusion_0.75L,sr,276,55.2,velocity,upper_ux,1.3035991191864014 +illusion_0.75L,sr,276,55.2,velocity,upper_uy,-0.025876378640532494 +illusion_0.75L,sr,276,55.2,velocity,center_ux,0.5553393363952637 +illusion_0.75L,sr,276,55.2,velocity,center_uy,0.5485284924507141 +illusion_0.75L,sr,276,55.2,velocity,lower_ux,0.7807717323303223 +illusion_0.75L,sr,276,55.2,velocity,lower_uy,0.24212735891342163 +illusion_0.75L,sr,277,55.4,velocity,upper_ux,1.2337870597839355 +illusion_0.75L,sr,277,55.4,velocity,upper_uy,0.0835307389497757 +illusion_0.75L,sr,277,55.4,velocity,center_ux,0.5749494433403015 +illusion_0.75L,sr,277,55.4,velocity,center_uy,0.6121074557304382 +illusion_0.75L,sr,277,55.4,velocity,lower_ux,0.8122494220733643 +illusion_0.75L,sr,277,55.4,velocity,lower_uy,0.2784190773963928 +illusion_0.75L,sr,278,55.6,velocity,upper_ux,1.1430920362472534 +illusion_0.75L,sr,278,55.6,velocity,upper_uy,0.19441604614257812 +illusion_0.75L,sr,278,55.6,velocity,center_ux,0.6118826270103455 +illusion_0.75L,sr,278,55.6,velocity,center_uy,0.6345005631446838 +illusion_0.75L,sr,278,55.6,velocity,lower_ux,0.8444965481758118 +illusion_0.75L,sr,278,55.6,velocity,lower_uy,0.3113812208175659 +illusion_0.75L,sr,279,55.8,velocity,upper_ux,1.0400079488754272 +illusion_0.75L,sr,279,55.8,velocity,upper_uy,0.2932634949684143 +illusion_0.75L,sr,279,55.8,velocity,center_ux,0.653551459312439 +illusion_0.75L,sr,279,55.8,velocity,center_uy,0.6375095248222351 +illusion_0.75L,sr,279,55.8,velocity,lower_ux,0.8777000308036804 +illusion_0.75L,sr,279,55.8,velocity,lower_uy,0.3407902121543884 +illusion_0.75L,sr,280,56.0,velocity,upper_ux,0.9379332661628723 +illusion_0.75L,sr,280,56.0,velocity,upper_uy,0.36625397205352783 +illusion_0.75L,sr,280,56.0,velocity,center_ux,0.6900078654289246 +illusion_0.75L,sr,280,56.0,velocity,center_uy,0.6407912373542786 +illusion_0.75L,sr,280,56.0,velocity,lower_ux,0.9118665456771851 +illusion_0.75L,sr,280,56.0,velocity,lower_uy,0.3668336868286133 +illusion_0.75L,sr,281,56.2,velocity,upper_ux,0.8496696352958679 +illusion_0.75L,sr,281,56.2,velocity,upper_uy,0.4056228697299957 +illusion_0.75L,sr,281,56.2,velocity,center_ux,0.7187308669090271 +illusion_0.75L,sr,281,56.2,velocity,center_uy,0.6504538059234619 +illusion_0.75L,sr,281,56.2,velocity,lower_ux,0.9470469951629639 +illusion_0.75L,sr,281,56.2,velocity,lower_uy,0.3897347152233124 +illusion_0.75L,sr,282,56.4,velocity,upper_ux,0.7819855213165283 +illusion_0.75L,sr,282,56.4,velocity,upper_uy,0.4129510223865509 +illusion_0.75L,sr,282,56.4,velocity,center_ux,0.7411332130432129 +illusion_0.75L,sr,282,56.4,velocity,center_uy,0.6644831299781799 +illusion_0.75L,sr,282,56.4,velocity,lower_ux,0.9833409786224365 +illusion_0.75L,sr,282,56.4,velocity,lower_uy,0.40964648127555847 +illusion_0.75L,sr,283,56.6,velocity,upper_ux,0.7338166236877441 +illusion_0.75L,sr,283,56.6,velocity,upper_uy,0.39671337604522705 +illusion_0.75L,sr,283,56.6,velocity,center_ux,0.7586255669593811 +illusion_0.75L,sr,283,56.6,velocity,center_uy,0.6793510913848877 +illusion_0.75L,sr,283,56.6,velocity,lower_ux,1.0208181142807007 +illusion_0.75L,sr,283,56.6,velocity,lower_uy,0.42664849758148193 +illusion_0.75L,sr,284,56.8,velocity,upper_ux,0.699088990688324 +illusion_0.75L,sr,284,56.8,velocity,upper_uy,0.36635246872901917 +illusion_0.75L,sr,284,56.8,velocity,center_ux,0.7717366218566895 +illusion_0.75L,sr,284,56.8,velocity,center_uy,0.6908401250839233 +illusion_0.75L,sr,284,56.8,velocity,lower_ux,1.0595166683197021 +illusion_0.75L,sr,284,56.8,velocity,lower_uy,0.44070446491241455 +illusion_0.75L,sr,285,57.0,velocity,upper_ux,0.6713101863861084 +illusion_0.75L,sr,285,57.0,velocity,upper_uy,0.32793211936950684 +illusion_0.75L,sr,285,57.0,velocity,center_ux,0.7803992629051208 +illusion_0.75L,sr,285,57.0,velocity,center_uy,0.6930896639823914 +illusion_0.75L,sr,285,57.0,velocity,lower_ux,1.0994287729263306 +illusion_0.75L,sr,285,57.0,velocity,lower_uy,0.45163246989250183 +illusion_0.75L,sr,286,57.2,velocity,upper_ux,0.6465138792991638 +illusion_0.75L,sr,286,57.2,velocity,upper_uy,0.2836870551109314 +illusion_0.75L,sr,286,57.2,velocity,center_ux,0.784232497215271 +illusion_0.75L,sr,286,57.2,velocity,center_uy,0.6789109110832214 +illusion_0.75L,sr,286,57.2,velocity,lower_ux,1.1404401063919067 +illusion_0.75L,sr,286,57.2,velocity,lower_uy,0.45909202098846436 +illusion_0.75L,sr,287,57.4,velocity,upper_ux,0.6237916350364685 +illusion_0.75L,sr,287,57.4,velocity,upper_uy,0.23385944962501526 +illusion_0.75L,sr,287,57.4,velocity,center_ux,0.7828048467636108 +illusion_0.75L,sr,287,57.4,velocity,center_uy,0.641917884349823 +illusion_0.75L,sr,287,57.4,velocity,lower_ux,1.1822509765625 +illusion_0.75L,sr,287,57.4,velocity,lower_uy,0.4625757336616516 +illusion_0.75L,sr,288,57.6,velocity,upper_ux,0.604575514793396 +illusion_0.75L,sr,288,57.6,velocity,upper_uy,0.1786811500787735 +illusion_0.75L,sr,288,57.6,velocity,center_ux,0.7758328914642334 +illusion_0.75L,sr,288,57.6,velocity,center_uy,0.5794291496276855 +illusion_0.75L,sr,288,57.6,velocity,lower_ux,1.2242794036865234 +illusion_0.75L,sr,288,57.6,velocity,lower_uy,0.461340069770813 +illusion_0.75L,sr,289,57.8,velocity,upper_ux,0.5916991233825684 +illusion_0.75L,sr,289,57.8,velocity,upper_uy,0.11960374563932419 +illusion_0.75L,sr,289,57.8,velocity,center_ux,0.763111412525177 +illusion_0.75L,sr,289,57.8,velocity,center_uy,0.4937387704849243 +illusion_0.75L,sr,289,57.8,velocity,lower_ux,1.2655205726623535 +illusion_0.75L,sr,289,57.8,velocity,lower_uy,0.4543383717536926 +illusion_0.75L,sr,290,58.0,velocity,upper_ux,0.5884339809417725 +illusion_0.75L,sr,290,58.0,velocity,upper_uy,0.05968655273318291 +illusion_0.75L,sr,290,58.0,velocity,center_ux,0.7442302107810974 +illusion_0.75L,sr,290,58.0,velocity,center_uy,0.3899993896484375 +illusion_0.75L,sr,290,58.0,velocity,lower_ux,1.304376244544983 +illusion_0.75L,sr,290,58.0,velocity,lower_uy,0.4401681125164032 +illusion_0.75L,sr,291,58.2,velocity,upper_ux,0.5972709059715271 +illusion_0.75L,sr,291,58.2,velocity,upper_uy,0.0029890567529946566 +illusion_0.75L,sr,291,58.2,velocity,center_ux,0.7185865640640259 +illusion_0.75L,sr,291,58.2,velocity,center_uy,0.27232998609542847 +illusion_0.75L,sr,291,58.2,velocity,lower_ux,1.338566780090332 +illusion_0.75L,sr,291,58.2,velocity,lower_uy,0.41713646054267883 +illusion_0.75L,sr,292,58.4,velocity,upper_ux,0.6184653043746948 +illusion_0.75L,sr,292,58.4,velocity,upper_uy,-0.047137074172496796 +illusion_0.75L,sr,292,58.4,velocity,center_ux,0.6861277222633362 +illusion_0.75L,sr,292,58.4,velocity,center_uy,0.14196395874023438 +illusion_0.75L,sr,292,58.4,velocity,lower_ux,1.3653059005737305 +illusion_0.75L,sr,292,58.4,velocity,lower_uy,0.38346847891807556 +illusion_0.75L,sr,293,58.6,velocity,upper_ux,0.6490803360939026 +illusion_0.75L,sr,293,58.6,velocity,upper_uy,-0.09012746065855026 +illusion_0.75L,sr,293,58.6,velocity,center_ux,0.6483933329582214 +illusion_0.75L,sr,293,58.6,velocity,center_uy,-0.0008786803227849305 +illusion_0.75L,sr,293,58.6,velocity,lower_ux,1.3817200660705566 +illusion_0.75L,sr,293,58.6,velocity,lower_uy,0.33766138553619385 +illusion_0.75L,sr,294,58.8,velocity,upper_ux,0.6839168667793274 +illusion_0.75L,sr,294,58.8,velocity,upper_uy,-0.1287073791027069 +illusion_0.75L,sr,294,58.8,velocity,center_ux,0.6091775298118591 +illusion_0.75L,sr,294,58.8,velocity,center_uy,-0.1532791554927826 +illusion_0.75L,sr,294,58.8,velocity,lower_ux,1.3853529691696167 +illusion_0.75L,sr,294,58.8,velocity,lower_uy,0.27880507707595825 +illusion_0.75L,sr,295,59.0,velocity,upper_ux,0.7183970808982849 +illusion_0.75L,sr,295,59.0,velocity,upper_uy,-0.16658297181129456 +illusion_0.75L,sr,295,59.0,velocity,center_ux,0.574572741985321 +illusion_0.75L,sr,295,59.0,velocity,center_uy,-0.3067026734352112 +illusion_0.75L,sr,295,59.0,velocity,lower_ux,1.3743317127227783 +illusion_0.75L,sr,295,59.0,velocity,lower_uy,0.2066163867712021 +illusion_0.75L,sr,296,59.2,velocity,upper_ux,0.7508585453033447 +illusion_0.75L,sr,296,59.2,velocity,upper_uy,-0.2053127884864807 +illusion_0.75L,sr,296,59.2,velocity,center_ux,0.5523155331611633 +illusion_0.75L,sr,296,59.2,velocity,center_uy,-0.44615304470062256 +illusion_0.75L,sr,296,59.2,velocity,lower_ux,1.346684217453003 +illusion_0.75L,sr,296,59.2,velocity,lower_uy,0.12118488550186157 +illusion_0.75L,sr,297,59.4,velocity,upper_ux,0.7821328639984131 +illusion_0.75L,sr,297,59.4,velocity,upper_uy,-0.2437325119972229 +illusion_0.75L,sr,297,59.4,velocity,center_ux,0.5499863624572754 +illusion_0.75L,sr,297,59.4,velocity,center_uy,-0.5528370141983032 +illusion_0.75L,sr,297,59.4,velocity,lower_ux,1.299594521522522 +illusion_0.75L,sr,297,59.4,velocity,lower_uy,0.0232295710593462 +illusion_0.75L,sr,298,59.6,velocity,upper_ux,0.813545286655426 +illusion_0.75L,sr,298,59.6,velocity,upper_uy,-0.27991941571235657 +illusion_0.75L,sr,298,59.6,velocity,center_ux,0.5707155466079712 +illusion_0.75L,sr,298,59.6,velocity,center_uy,-0.6137821674346924 +illusion_0.75L,sr,298,59.6,velocity,lower_ux,1.230563759803772 +illusion_0.75L,sr,298,59.6,velocity,lower_uy,-0.08409705758094788 +illusion_0.75L,sr,299,59.8,velocity,upper_ux,0.8457755446434021 +illusion_0.75L,sr,299,59.8,velocity,upper_uy,-0.3127920627593994 +illusion_0.75L,sr,299,59.8,velocity,center_ux,0.6084255576133728 +illusion_0.75L,sr,299,59.8,velocity,center_uy,-0.6345760822296143 +illusion_0.75L,sr,299,59.8,velocity,lower_ux,1.1409401893615723 +illusion_0.75L,sr,299,59.8,velocity,lower_uy,-0.19275496900081635 +illusion_0.75L,sr,300,60.0,velocity,upper_ux,0.878954291343689 +illusion_0.75L,sr,300,60.0,velocity,upper_uy,-0.3421561121940613 +illusion_0.75L,sr,300,60.0,velocity,center_ux,0.6503618359565735 +illusion_0.75L,sr,300,60.0,velocity,center_uy,-0.6371381282806396 +illusion_0.75L,sr,300,60.0,velocity,lower_ux,1.038625955581665 +illusion_0.75L,sr,300,60.0,velocity,lower_uy,-0.28985607624053955 +illusion_0.75L,sr,301,60.2,velocity,upper_ux,0.9130620360374451 +illusion_0.75L,sr,301,60.2,velocity,upper_uy,-0.36817196011543274 +illusion_0.75L,sr,301,60.2,velocity,center_ux,0.6867188215255737 +illusion_0.75L,sr,301,60.2,velocity,center_uy,-0.6405326128005981 +illusion_0.75L,sr,301,60.2,velocity,lower_ux,0.9365638494491577 +illusion_0.75L,sr,301,60.2,velocity,lower_uy,-0.36197784543037415 +illusion_0.75L,sr,302,60.4,velocity,upper_ux,0.9481096863746643 +illusion_0.75L,sr,302,60.4,velocity,upper_uy,-0.3910544216632843 +illusion_0.75L,sr,302,60.4,velocity,center_ux,0.715126633644104 +illusion_0.75L,sr,302,60.4,velocity,center_uy,-0.6503450870513916 +illusion_0.75L,sr,302,60.4,velocity,lower_ux,0.8474840521812439 +illusion_0.75L,sr,302,60.4,velocity,lower_uy,-0.4013030529022217 +illusion_0.75L,sr,303,60.6,velocity,upper_ux,0.9842016100883484 +illusion_0.75L,sr,303,60.6,velocity,upper_uy,-0.41096335649490356 +illusion_0.75L,sr,303,60.6,velocity,center_ux,0.737069845199585 +illusion_0.75L,sr,303,60.6,velocity,center_uy,-0.6643862724304199 +illusion_0.75L,sr,303,60.6,velocity,lower_ux,0.7785148620605469 +illusion_0.75L,sr,303,60.6,velocity,lower_uy,-0.40900254249572754 +illusion_0.75L,sr,304,60.8,velocity,upper_ux,1.0214776992797852 +illusion_0.75L,sr,304,60.8,velocity,upper_uy,-0.42796751856803894 +illusion_0.75L,sr,304,60.8,velocity,center_ux,0.7540347576141357 +illusion_0.75L,sr,304,60.8,velocity,center_uy,-0.6790703535079956 +illusion_0.75L,sr,304,60.8,velocity,lower_ux,0.7291562557220459 +illusion_0.75L,sr,304,60.8,velocity,lower_uy,-0.3930850625038147 +illusion_0.75L,sr,305,61.0,velocity,upper_ux,1.0600308179855347 +illusion_0.75L,sr,305,61.0,velocity,upper_uy,-0.44200649857521057 +illusion_0.75L,sr,305,61.0,velocity,center_ux,0.7665987610816956 +illusion_0.75L,sr,305,61.0,velocity,center_uy,-0.6901307106018066 +illusion_0.75L,sr,305,61.0,velocity,lower_ux,0.6937324404716492 +illusion_0.75L,sr,305,61.0,velocity,lower_uy,-0.36275917291641235 +illusion_0.75L,sr,306,61.2,velocity,upper_ux,1.0998620986938477 +illusion_0.75L,sr,306,61.2,velocity,upper_uy,-0.4528839886188507 +illusion_0.75L,sr,306,61.2,velocity,center_ux,0.7747295498847961 +illusion_0.75L,sr,306,61.2,velocity,center_uy,-0.691714882850647 +illusion_0.75L,sr,306,61.2,velocity,lower_ux,0.665859043598175 +illusion_0.75L,sr,306,61.2,velocity,lower_uy,-0.32414668798446655 +illusion_0.75L,sr,307,61.4,velocity,upper_ux,1.1408594846725464 +illusion_0.75L,sr,307,61.4,velocity,upper_uy,-0.4602619409561157 +illusion_0.75L,sr,307,61.4,velocity,center_ux,0.7781029343605042 +illusion_0.75L,sr,307,61.4,velocity,center_uy,-0.6767378449440002 +illusion_0.75L,sr,307,61.4,velocity,lower_ux,0.6414957642555237 +illusion_0.75L,sr,307,61.4,velocity,lower_uy,-0.27967435121536255 +illusion_0.75L,sr,308,61.6,velocity,upper_ux,1.182708978652954 +illusion_0.75L,sr,308,61.6,velocity,upper_uy,-0.46362343430519104 +illusion_0.75L,sr,308,61.6,velocity,center_ux,0.7763555645942688 +illusion_0.75L,sr,308,61.6,velocity,center_uy,-0.638980507850647 +illusion_0.75L,sr,308,61.6,velocity,lower_ux,0.6196013689041138 +illusion_0.75L,sr,308,61.6,velocity,lower_uy,-0.22977767884731293 +illusion_0.75L,sr,309,61.8,velocity,upper_ux,1.224776029586792 +illusion_0.75L,sr,309,61.8,velocity,upper_uy,-0.4622126519680023 +illusion_0.75L,sr,309,61.8,velocity,center_ux,0.7692335247993469 +illusion_0.75L,sr,309,61.8,velocity,center_uy,-0.5759022235870361 +illusion_0.75L,sr,309,61.8,velocity,lower_ux,0.6014734506607056 +illusion_0.75L,sr,309,61.8,velocity,lower_uy,-0.1748095452785492 +illusion_0.75L,sr,310,62.0,velocity,upper_ux,1.2659791707992554 +illusion_0.75L,sr,310,62.0,velocity,upper_uy,-0.4549529552459717 +illusion_0.75L,sr,310,62.0,velocity,center_ux,0.7565104961395264 +illusion_0.75L,sr,310,62.0,velocity,center_uy,-0.4898398518562317 +illusion_0.75L,sr,310,62.0,velocity,lower_ux,0.589823842048645 +illusion_0.75L,sr,310,62.0,velocity,lower_uy,-0.1162753701210022 +illusion_0.75L,sr,311,62.2,velocity,upper_ux,1.3046507835388184 +illusion_0.75L,sr,311,62.2,velocity,upper_uy,-0.44044890999794006 +illusion_0.75L,sr,311,62.2,velocity,center_ux,0.7377209663391113 +illusion_0.75L,sr,311,62.2,velocity,center_uy,-0.3859221339225769 +illusion_0.75L,sr,311,62.2,velocity,lower_ux,0.5877978801727295 +illusion_0.75L,sr,311,62.2,velocity,lower_uy,-0.05721769854426384 +illusion_0.75L,sr,312,62.4,velocity,upper_ux,1.3384828567504883 +illusion_0.75L,sr,312,62.4,velocity,upper_uy,-0.4170585870742798 +illusion_0.75L,sr,312,62.4,velocity,center_ux,0.7122151255607605 +illusion_0.75L,sr,312,62.4,velocity,center_uy,-0.26828432083129883 +illusion_0.75L,sr,312,62.4,velocity,lower_ux,0.5977335572242737 +illusion_0.75L,sr,312,62.4,velocity,lower_uy,-0.0015974387060850859 +illusion_0.75L,sr,313,62.6,velocity,upper_ux,1.3646777868270874 +illusion_0.75L,sr,313,62.6,velocity,upper_uy,-0.38309037685394287 +illusion_0.75L,sr,313,62.6,velocity,center_ux,0.6798678040504456 +illusion_0.75L,sr,313,62.6,velocity,center_uy,-0.13824023306369781 +illusion_0.75L,sr,313,62.6,velocity,lower_ux,0.6196576356887817 +illusion_0.75L,sr,313,62.6,velocity,lower_uy,0.047454215586185455 +illusion_0.75L,sr,314,62.8,velocity,upper_ux,1.3804349899291992 +illusion_0.75L,sr,314,62.8,velocity,upper_uy,-0.3371340036392212 +illusion_0.75L,sr,314,62.8,velocity,center_ux,0.6421788930892944 +illusion_0.75L,sr,314,62.8,velocity,center_uy,0.003927319776266813 +illusion_0.75L,sr,314,62.8,velocity,lower_ux,0.650485634803772 +illusion_0.75L,sr,314,62.8,velocity,lower_uy,0.08964546024799347 +illusion_0.75L,sr,315,63.0,velocity,upper_ux,1.383489966392517 +illusion_0.75L,sr,315,63.0,velocity,upper_uy,-0.2784023582935333 +illusion_0.75L,sr,315,63.0,velocity,center_ux,0.6029540300369263 +illusion_0.75L,sr,315,63.0,velocity,center_uy,0.15532998740673065 +illusion_0.75L,sr,315,63.0,velocity,lower_ux,0.6850926280021667 +illusion_0.75L,sr,315,63.0,velocity,lower_uy,0.12783434987068176 +illusion_0.75L,sr,316,63.2,velocity,upper_ux,1.3721916675567627 +illusion_0.75L,sr,316,63.2,velocity,upper_uy,-0.20676788687705994 +illusion_0.75L,sr,316,63.2,velocity,center_ux,0.5682744383811951 +illusion_0.75L,sr,316,63.2,velocity,center_uy,0.30761319398880005 +illusion_0.75L,sr,316,63.2,velocity,lower_ux,0.7191192507743835 +illusion_0.75L,sr,316,63.2,velocity,lower_uy,0.1656240075826645 +illusion_0.75L,sr,317,63.4,velocity,upper_ux,1.3447942733764648 +illusion_0.75L,sr,317,63.4,velocity,upper_uy,-0.12243959307670593 +illusion_0.75L,sr,317,63.4,velocity,center_ux,0.5458518862724304 +illusion_0.75L,sr,317,63.4,velocity,center_uy,0.44613033533096313 +illusion_0.75L,sr,317,63.4,velocity,lower_ux,0.7511157393455505 +illusion_0.75L,sr,317,63.4,velocity,lower_uy,0.20438896119594574 +illusion_0.75L,sr,318,63.6,velocity,upper_ux,1.2986613512039185 +illusion_0.75L,sr,318,63.6,velocity,upper_uy,-0.02610584907233715 +illusion_0.75L,sr,318,63.6,velocity,center_ux,0.5433110594749451 +illusion_0.75L,sr,318,63.6,velocity,center_uy,0.5524458289146423 +illusion_0.75L,sr,318,63.6,velocity,lower_ux,0.7820279002189636 +illusion_0.75L,sr,318,63.6,velocity,lower_uy,0.24288171529769897 +illusion_0.75L,sr,319,63.8,velocity,upper_ux,1.2312207221984863 +illusion_0.75L,sr,319,63.8,velocity,upper_uy,0.07941053062677383 +illusion_0.75L,sr,319,63.8,velocity,center_ux,0.5639764070510864 +illusion_0.75L,sr,319,63.8,velocity,center_uy,0.6135753393173218 +illusion_0.75L,sr,319,63.8,velocity,lower_ux,0.8132081627845764 +illusion_0.75L,sr,319,63.8,velocity,lower_uy,0.27917736768722534 +illusion_0.75L,sr,320,64.0,velocity,upper_ux,1.143280267715454 +illusion_0.75L,sr,320,64.0,velocity,upper_uy,0.18671013414859772 +illusion_0.75L,sr,320,64.0,velocity,center_ux,0.6019655466079712 +illusion_0.75L,sr,320,64.0,velocity,center_uy,0.6346404552459717 +illusion_0.75L,sr,320,64.0,velocity,lower_ux,0.8453071713447571 +illusion_0.75L,sr,320,64.0,velocity,lower_uy,0.31219249963760376 +illusion_0.75L,sr,321,64.2,velocity,upper_ux,1.0419323444366455 +illusion_0.75L,sr,321,64.2,velocity,upper_uy,0.283565491437912 +illusion_0.75L,sr,321,64.2,velocity,center_ux,0.6444686055183411 +illusion_0.75L,sr,321,64.2,velocity,center_uy,0.6372084617614746 +illusion_0.75L,sr,321,64.2,velocity,lower_ux,0.8784101009368896 +illusion_0.75L,sr,321,64.2,velocity,lower_uy,0.3417148292064667 +illusion_0.75L,sr,322,64.4,velocity,upper_ux,0.9395528435707092 +illusion_0.75L,sr,322,64.4,velocity,upper_uy,0.3567464351654053 +illusion_0.75L,sr,322,64.4,velocity,center_ux,0.6813953518867493 +illusion_0.75L,sr,322,64.4,velocity,center_uy,0.6404528021812439 +illusion_0.75L,sr,322,64.4,velocity,lower_ux,0.9124547839164734 +illusion_0.75L,sr,322,64.4,velocity,lower_uy,0.36790093779563904 +illusion_0.75L,sr,323,64.6,velocity,upper_ux,0.8489570021629333 +illusion_0.75L,sr,323,64.6,velocity,upper_uy,0.3979567587375641 +illusion_0.75L,sr,323,64.6,velocity,center_ux,0.7101792097091675 +illusion_0.75L,sr,323,64.6,velocity,center_uy,0.6501598358154297 +illusion_0.75L,sr,323,64.6,velocity,lower_ux,0.9474279284477234 +illusion_0.75L,sr,323,64.6,velocity,lower_uy,0.3909647762775421 +illusion_0.75L,sr,324,64.8,velocity,upper_ux,0.7779012322425842 +illusion_0.75L,sr,324,64.8,velocity,upper_uy,0.40752166509628296 +illusion_0.75L,sr,324,64.8,velocity,center_ux,0.7322530150413513 +illusion_0.75L,sr,324,64.8,velocity,center_uy,0.6641546487808228 +illusion_0.75L,sr,324,64.8,velocity,lower_ux,0.9833880662918091 +illusion_0.75L,sr,324,64.8,velocity,lower_uy,0.41106483340263367 +illusion_0.75L,sr,325,65.0,velocity,upper_ux,0.7266673445701599 +illusion_0.75L,sr,325,65.0,velocity,upper_uy,0.3928276300430298 +illusion_0.75L,sr,325,65.0,velocity,center_ux,0.749143660068512 +illusion_0.75L,sr,325,65.0,velocity,center_uy,0.6787943243980408 +illusion_0.75L,sr,325,65.0,velocity,lower_ux,1.0204627513885498 +illusion_0.75L,sr,325,65.0,velocity,lower_uy,0.42824989557266235 +illusion_0.75L,sr,326,65.2,velocity,upper_ux,0.6900830268859863 +illusion_0.75L,sr,326,65.2,velocity,upper_uy,0.3629939556121826 +illusion_0.75L,sr,326,65.2,velocity,center_ux,0.7615320086479187 +illusion_0.75L,sr,326,65.2,velocity,center_uy,0.6898161172866821 +illusion_0.75L,sr,326,65.2,velocity,lower_ux,1.058797836303711 +illusion_0.75L,sr,326,65.2,velocity,lower_uy,0.4424435794353485 +illusion_0.75L,sr,327,65.4,velocity,upper_ux,0.6618196964263916 +illusion_0.75L,sr,327,65.4,velocity,upper_uy,0.3244345486164093 +illusion_0.75L,sr,327,65.4,velocity,center_ux,0.769481360912323 +illusion_0.75L,sr,327,65.4,velocity,center_uy,0.6914576888084412 +illusion_0.75L,sr,327,65.4,velocity,lower_ux,1.098449468612671 +illusion_0.75L,sr,327,65.4,velocity,lower_uy,0.45345404744148254 +illusion_0.75L,sr,328,65.6,velocity,upper_ux,0.6376148462295532 +illusion_0.75L,sr,328,65.6,velocity,upper_uy,0.2799227833747864 +illusion_0.75L,sr,328,65.6,velocity,center_ux,0.7727413177490234 +illusion_0.75L,sr,328,65.6,velocity,center_uy,0.6767436265945435 +illusion_0.75L,sr,328,65.6,velocity,lower_ux,1.1393235921859741 +illusion_0.75L,sr,328,65.6,velocity,lower_uy,0.4609561860561371 +illusion_0.75L,sr,329,65.8,velocity,upper_ux,0.616175651550293 +illusion_0.75L,sr,329,65.8,velocity,upper_uy,0.23008961975574493 +illusion_0.75L,sr,329,65.8,velocity,center_ux,0.7710174322128296 +illusion_0.75L,sr,329,65.8,velocity,center_uy,0.6394716501235962 +illusion_0.75L,sr,329,65.8,velocity,lower_ux,1.1811113357543945 +illusion_0.75L,sr,329,65.8,velocity,lower_uy,0.46442916989326477 +illusion_0.75L,sr,330,66.0,velocity,upper_ux,0.5986131429672241 +illusion_0.75L,sr,330,66.0,velocity,upper_uy,0.1753300428390503 +illusion_0.75L,sr,330,66.0,velocity,center_ux,0.7641125321388245 +illusion_0.75L,sr,330,66.0,velocity,center_uy,0.5769882798194885 +illusion_0.75L,sr,330,66.0,velocity,lower_ux,1.2231823205947876 +illusion_0.75L,sr,330,66.0,velocity,lower_uy,0.4630918502807617 +illusion_0.75L,sr,331,66.2,velocity,upper_ux,0.5874999761581421 +illusion_0.75L,sr,331,66.2,velocity,upper_uy,0.1171165481209755 +illusion_0.75L,sr,331,66.2,velocity,center_ux,0.7518038749694824 +illusion_0.75L,sr,331,66.2,velocity,center_uy,0.4914943277835846 +illusion_0.75L,sr,331,66.2,velocity,lower_ux,1.2644292116165161 +illusion_0.75L,sr,331,66.2,velocity,lower_uy,0.45588135719299316 +illusion_0.75L,sr,332,66.4,velocity,upper_ux,0.58589106798172 +illusion_0.75L,sr,332,66.4,velocity,upper_uy,0.058436065912246704 +illusion_0.75L,sr,332,66.4,velocity,center_ux,0.7335906028747559 +illusion_0.75L,sr,332,66.4,velocity,center_uy,0.3881075382232666 +illusion_0.75L,sr,332,66.4,velocity,lower_ux,1.3031506538391113 +illusion_0.75L,sr,332,66.4,velocity,lower_uy,0.4414418935775757 +illusion_0.75L,sr,333,66.6,velocity,upper_ux,0.5960827469825745 +illusion_0.75L,sr,333,66.6,velocity,upper_uy,0.0031680252868682146 +illusion_0.75L,sr,333,66.6,velocity,center_ux,0.7087447643280029 +illusion_0.75L,sr,333,66.6,velocity,center_uy,0.27109143137931824 +illusion_0.75L,sr,333,66.6,velocity,lower_ux,1.3370203971862793 +illusion_0.75L,sr,333,66.6,velocity,lower_uy,0.4181745648384094 +illusion_0.75L,sr,334,66.8,velocity,upper_ux,0.6181282997131348 +illusion_0.75L,sr,334,66.8,velocity,upper_uy,-0.04561319202184677 +illusion_0.75L,sr,334,66.8,velocity,center_ux,0.677030622959137 +illusion_0.75L,sr,334,66.8,velocity,center_uy,0.1418946236371994 +illusion_0.75L,sr,334,66.8,velocity,lower_ux,1.3632540702819824 +illusion_0.75L,sr,334,66.8,velocity,lower_uy,0.3844286799430847 +illusion_0.75L,sr,335,67.0,velocity,upper_ux,0.6489718556404114 +illusion_0.75L,sr,335,67.0,velocity,upper_uy,-0.08759652078151703 +illusion_0.75L,sr,335,67.0,velocity,center_ux,0.6397608518600464 +illusion_0.75L,sr,335,67.0,velocity,center_uy,0.0007977938512340188 +illusion_0.75L,sr,335,67.0,velocity,lower_ux,1.3790678977966309 +illusion_0.75L,sr,335,67.0,velocity,lower_uy,0.3388637602329254 +illusion_0.75L,sr,336,67.2,velocity,upper_ux,0.6835086345672607 +illusion_0.75L,sr,336,67.2,velocity,upper_uy,-0.12559032440185547 +illusion_0.75L,sr,336,67.2,velocity,center_ux,0.6005623936653137 +illusion_0.75L,sr,336,67.2,velocity,center_uy,-0.14952988922595978 +illusion_0.75L,sr,336,67.2,velocity,lower_ux,1.3822494745254517 +illusion_0.75L,sr,336,67.2,velocity,lower_uy,0.2807897627353668 +illusion_0.75L,sr,337,67.4,velocity,upper_ux,0.7174012660980225 +illusion_0.75L,sr,337,67.4,velocity,upper_uy,-0.1632131040096283 +illusion_0.75L,sr,337,67.4,velocity,center_ux,0.5654197931289673 +illusion_0.75L,sr,337,67.4,velocity,center_uy,-0.30117642879486084 +illusion_0.75L,sr,337,67.4,velocity,lower_ux,1.3713220357894897 +illusion_0.75L,sr,337,67.4,velocity,lower_uy,0.21017631888389587 +illusion_0.75L,sr,338,67.6,velocity,upper_ux,0.749199628829956 +illusion_0.75L,sr,338,67.6,velocity,upper_uy,-0.2019197791814804 +illusion_0.75L,sr,338,67.6,velocity,center_ux,0.5419999361038208 +illusion_0.75L,sr,338,67.6,velocity,center_uy,-0.44006478786468506 +illusion_0.75L,sr,338,67.6,velocity,lower_ux,1.3447996377944946 +illusion_0.75L,sr,338,67.6,velocity,lower_uy,0.12731564044952393 +illusion_0.75L,sr,339,67.8,velocity,upper_ux,0.7798700928688049 +illusion_0.75L,sr,339,67.8,velocity,upper_uy,-0.24050864577293396 +illusion_0.75L,sr,339,67.8,velocity,center_ux,0.5380440950393677 +illusion_0.75L,sr,339,67.8,velocity,center_uy,-0.5480818748474121 +illusion_0.75L,sr,339,67.8,velocity,lower_ux,1.300277590751648 +illusion_0.75L,sr,339,67.8,velocity,lower_uy,0.03285014256834984 +illusion_0.75L,sr,340,68.0,velocity,upper_ux,0.8108229041099548 +illusion_0.75L,sr,340,68.0,velocity,upper_uy,-0.2770255208015442 +illusion_0.75L,sr,340,68.0,velocity,center_ux,0.557381272315979 +illusion_0.75L,sr,340,68.0,velocity,center_uy,-0.6116411089897156 +illusion_0.75L,sr,340,68.0,velocity,lower_ux,1.2351171970367432 +illusion_0.75L,sr,340,68.0,velocity,lower_uy,-0.07076825946569443 +illusion_0.75L,sr,341,68.2,velocity,upper_ux,0.8427685499191284 +illusion_0.75L,sr,341,68.2,velocity,upper_uy,-0.31031665205955505 +illusion_0.75L,sr,341,68.2,velocity,center_ux,0.5948414206504822 +illusion_0.75L,sr,341,68.2,velocity,center_uy,-0.6344364285469055 +illusion_0.75L,sr,341,68.2,velocity,lower_ux,1.1495152711868286 +illusion_0.75L,sr,341,68.2,velocity,lower_uy,-0.17688685655593872 +illusion_0.75L,sr,342,68.4,velocity,upper_ux,0.87579745054245 +illusion_0.75L,sr,342,68.4,velocity,upper_uy,-0.3401264250278473 +illusion_0.75L,sr,342,68.4,velocity,center_ux,0.637768030166626 +illusion_0.75L,sr,342,68.4,velocity,center_uy,-0.6372972726821899 +illusion_0.75L,sr,342,68.4,velocity,lower_ux,1.0495988130569458 +illusion_0.75L,sr,342,68.4,velocity,lower_uy,-0.27402544021606445 +illusion_0.75L,sr,343,68.6,velocity,upper_ux,0.9098137617111206 +illusion_0.75L,sr,343,68.6,velocity,upper_uy,-0.36660727858543396 +illusion_0.75L,sr,343,68.6,velocity,center_ux,0.6755194067955017 +illusion_0.75L,sr,343,68.6,velocity,center_uy,-0.6400424838066101 +illusion_0.75L,sr,343,68.6,velocity,lower_ux,0.9470411539077759 +illusion_0.75L,sr,343,68.6,velocity,lower_uy,-0.3491387665271759 +illusion_0.75L,sr,344,68.8,velocity,upper_ux,0.9447632431983948 +illusion_0.75L,sr,344,68.8,velocity,upper_uy,-0.3899811804294586 +illusion_0.75L,sr,344,68.8,velocity,center_ux,0.7049944996833801 +illusion_0.75L,sr,344,68.8,velocity,center_uy,-0.6492794752120972 +illusion_0.75L,sr,344,68.8,velocity,lower_ux,0.8547056317329407 +illusion_0.75L,sr,344,68.8,velocity,lower_uy,-0.3932977020740509 +illusion_0.75L,sr,345,69.0,velocity,upper_ux,0.9806769490242004 +illusion_0.75L,sr,345,69.0,velocity,upper_uy,-0.41039058566093445 +illusion_0.75L,sr,345,69.0,velocity,center_ux,0.7274971008300781 +illusion_0.75L,sr,345,69.0,velocity,center_uy,-0.663044810295105 +illusion_0.75L,sr,345,69.0,velocity,lower_ux,0.7811331748962402 +illusion_0.75L,sr,345,69.0,velocity,lower_uy,-0.4057421088218689 +illusion_0.75L,sr,346,69.2,velocity,upper_ux,1.0176440477371216 +illusion_0.75L,sr,346,69.2,velocity,upper_uy,-0.4278704822063446 +illusion_0.75L,sr,346,69.2,velocity,center_ux,0.7445899248123169 +illusion_0.75L,sr,346,69.2,velocity,center_uy,-0.6776641011238098 +illusion_0.75L,sr,346,69.2,velocity,lower_ux,0.7275624871253967 +illusion_0.75L,sr,346,69.2,velocity,lower_uy,-0.3930615484714508 +illusion_0.75L,sr,347,69.4,velocity,upper_ux,1.0557856559753418 +illusion_0.75L,sr,347,69.4,velocity,upper_uy,-0.44235923886299133 +illusion_0.75L,sr,347,69.4,velocity,center_ux,0.7570057511329651 +illusion_0.75L,sr,347,69.4,velocity,center_uy,-0.6889557838439941 +illusion_0.75L,sr,347,69.4,velocity,lower_ux,0.6893999576568604 +illusion_0.75L,sr,347,69.4,velocity,lower_uy,-0.3642897307872772 +illusion_0.75L,sr,348,69.6,velocity,upper_ux,1.0952092409133911 +illusion_0.75L,sr,348,69.6,velocity,upper_uy,-0.4536799192428589 +illusion_0.75L,sr,348,69.6,velocity,center_ux,0.7649111747741699 +illusion_0.75L,sr,348,69.6,velocity,center_uy,-0.6913268566131592 +illusion_0.75L,sr,348,69.6,velocity,lower_ux,0.6603960394859314 +illusion_0.75L,sr,348,69.6,velocity,lower_uy,-0.3262260854244232 +illusion_0.75L,sr,349,69.8,velocity,upper_ux,1.135879397392273 +illusion_0.75L,sr,349,69.8,velocity,upper_uy,-0.4615028500556946 +illusion_0.75L,sr,349,69.8,velocity,center_ux,0.768160879611969 +illusion_0.75L,sr,349,69.8,velocity,center_uy,-0.6778990030288696 +illusion_0.75L,sr,349,69.8,velocity,lower_ux,0.6360414028167725 +illusion_0.75L,sr,349,69.8,velocity,lower_uy,-0.282047837972641 +illusion_0.75L,sr,350,70.0,velocity,upper_ux,1.1775312423706055 +illusion_0.75L,sr,350,70.0,velocity,upper_uy,-0.4652964770793915 +illusion_0.75L,sr,350,70.0,velocity,center_ux,0.7665367126464844 +illusion_0.75L,sr,350,70.0,velocity,center_uy,-0.6423669457435608 +illusion_0.75L,sr,350,70.0,velocity,lower_ux,0.6147210597991943 +illusion_0.75L,sr,350,70.0,velocity,lower_uy,-0.2326045036315918 +illusion_0.75L,sr,351,70.2,velocity,upper_ux,1.2195594310760498 +illusion_0.75L,sr,351,70.2,velocity,upper_uy,-0.46430012583732605 +illusion_0.75L,sr,351,70.2,velocity,center_ux,0.7598939538002014 +illusion_0.75L,sr,351,70.2,velocity,center_uy,-0.5817610025405884 +illusion_0.75L,sr,351,70.2,velocity,lower_ux,0.5972931385040283 +illusion_0.75L,sr,351,70.2,velocity,lower_uy,-0.17833204567432404 +illusion_0.75L,sr,352,70.4,velocity,upper_ux,1.2608965635299683 +illusion_0.75L,sr,352,70.4,velocity,upper_uy,-0.4574803113937378 +illusion_0.75L,sr,352,70.4,velocity,center_ux,0.7480642795562744 +illusion_0.75L,sr,352,70.4,velocity,center_uy,-0.4979246258735657 +illusion_0.75L,sr,352,70.4,velocity,lower_ux,0.5861888527870178 +illusion_0.75L,sr,352,70.4,velocity,lower_uy,-0.12062378972768784 +illusion_0.75L,sr,353,70.6,velocity,upper_ux,1.2998590469360352 +illusion_0.75L,sr,353,70.6,velocity,upper_uy,-0.44351187348365784 +illusion_0.75L,sr,353,70.6,velocity,center_ux,0.7305559515953064 +illusion_0.75L,sr,353,70.6,velocity,center_uy,-0.39585304260253906 +illusion_0.75L,sr,353,70.6,velocity,lower_ux,0.5843852758407593 +illusion_0.75L,sr,353,70.6,velocity,lower_uy,-0.06232190132141113 +illusion_0.75L,sr,354,70.8,velocity,upper_ux,1.3341307640075684 +illusion_0.75L,sr,354,70.8,velocity,upper_uy,-0.42082148790359497 +illusion_0.75L,sr,354,70.8,velocity,center_ux,0.7065882086753845 +illusion_0.75L,sr,354,70.8,velocity,center_uy,-0.28000113368034363 +illusion_0.75L,sr,354,70.8,velocity,lower_ux,0.5942029356956482 +illusion_0.75L,sr,354,70.8,velocity,lower_uy,-0.007197514176368713 +illusion_0.75L,sr,355,71.0,velocity,upper_ux,1.360934853553772 +illusion_0.75L,sr,355,71.0,velocity,upper_uy,-0.38779404759407043 +illusion_0.75L,sr,355,71.0,velocity,center_ux,0.675764262676239 +illusion_0.75L,sr,355,71.0,velocity,center_uy,-0.15208221971988678 +illusion_0.75L,sr,355,71.0,velocity,lower_ux,0.6158337593078613 +illusion_0.75L,sr,355,71.0,velocity,lower_uy,0.04164474084973335 +illusion_0.75L,sr,356,71.2,velocity,upper_ux,1.3774892091751099 +illusion_0.75L,sr,356,71.2,velocity,upper_uy,-0.34313011169433594 +illusion_0.75L,sr,356,71.2,velocity,center_ux,0.6391515135765076 +illusion_0.75L,sr,356,71.2,velocity,center_uy,-0.012392986565828323 +illusion_0.75L,sr,356,71.2,velocity,lower_ux,0.6464054584503174 +illusion_0.75L,sr,356,71.2,velocity,lower_uy,0.08371103554964066 +illusion_0.75L,sr,357,71.4,velocity,upper_ux,1.381568193435669 +illusion_0.75L,sr,357,71.4,velocity,upper_uy,-0.28617537021636963 +illusion_0.75L,sr,357,71.4,velocity,center_ux,0.600080668926239 +illusion_0.75L,sr,357,71.4,velocity,center_uy,0.1367575079202652 +illusion_0.75L,sr,357,71.4,velocity,lower_ux,0.6808661818504333 +illusion_0.75L,sr,357,71.4,velocity,lower_uy,0.12163970619440079 +illusion_0.75L,sr,358,71.6,velocity,upper_ux,1.37172532081604 +illusion_0.75L,sr,358,71.6,velocity,upper_uy,-0.2169380635023117 +illusion_0.75L,sr,358,71.6,velocity,center_ux,0.5642685890197754 +illusion_0.75L,sr,358,71.6,velocity,center_uy,0.28811922669410706 +illusion_0.75L,sr,358,71.6,velocity,lower_ux,0.7147298455238342 +illusion_0.75L,sr,358,71.6,velocity,lower_uy,0.1590895652770996 +illusion_0.75L,sr,359,71.8,velocity,upper_ux,1.3466883897781372 +illusion_0.75L,sr,359,71.8,velocity,upper_uy,-0.13574808835983276 +illusion_0.75L,sr,359,71.8,velocity,center_ux,0.5392730236053467 +illusion_0.75L,sr,359,71.8,velocity,center_uy,0.42838919162750244 +illusion_0.75L,sr,359,71.8,velocity,lower_ux,0.7463945746421814 +illusion_0.75L,sr,359,71.8,velocity,lower_uy,0.1977216899394989 +illusion_0.75L,sr,360,72.0,velocity,upper_ux,1.3043164014816284 +illusion_0.75L,sr,360,72.0,velocity,upper_uy,-0.04319490119814873 +illusion_0.75L,sr,360,72.0,velocity,center_ux,0.5329997539520264 +illusion_0.75L,sr,360,72.0,velocity,center_uy,0.5398268699645996 +illusion_0.75L,sr,360,72.0,velocity,lower_ux,0.7767937183380127 +illusion_0.75L,sr,360,72.0,velocity,lower_uy,0.23646211624145508 +illusion_0.75L,sr,361,72.2,velocity,upper_ux,1.24193274974823 +illusion_0.75L,sr,361,72.2,velocity,upper_uy,0.058653246611356735 +illusion_0.75L,sr,361,72.2,velocity,center_ux,0.5500200986862183 +illusion_0.75L,sr,361,72.2,velocity,center_uy,0.6078637838363647 +illusion_0.75L,sr,361,72.2,velocity,lower_ux,0.807422935962677 +illusion_0.75L,sr,361,72.2,velocity,lower_uy,0.27330026030540466 +illusion_0.75L,sr,362,72.4,velocity,upper_ux,1.1591007709503174 +illusion_0.75L,sr,362,72.4,velocity,upper_uy,0.16394662857055664 +illusion_0.75L,sr,362,72.4,velocity,center_ux,0.5862882137298584 +illusion_0.75L,sr,362,72.4,velocity,center_uy,0.6339526176452637 +illusion_0.75L,sr,362,72.4,velocity,lower_ux,0.8390846252441406 +illusion_0.75L,sr,362,72.4,velocity,lower_uy,0.3069836497306824 +illusion_0.75L,sr,363,72.6,velocity,upper_ux,1.0609019994735718 +illusion_0.75L,sr,363,72.6,velocity,upper_uy,0.26203811168670654 +illusion_0.75L,sr,363,72.6,velocity,center_ux,0.6295644640922546 +illusion_0.75L,sr,363,72.6,velocity,center_uy,0.637681245803833 +illusion_0.75L,sr,363,72.6,velocity,lower_ux,0.8719270825386047 +illusion_0.75L,sr,363,72.6,velocity,lower_uy,0.3372068703174591 +illusion_0.75L,sr,364,72.8,velocity,upper_ux,0.9581884145736694 +illusion_0.75L,sr,364,72.8,velocity,upper_uy,0.3400537967681885 +illusion_0.75L,sr,364,72.8,velocity,center_ux,0.668476402759552 +illusion_0.75L,sr,364,72.8,velocity,center_uy,0.639812707901001 +illusion_0.75L,sr,364,72.8,velocity,lower_ux,0.9058467149734497 +illusion_0.75L,sr,364,72.8,velocity,lower_uy,0.36410456895828247 +illusion_0.75L,sr,365,73.0,velocity,upper_ux,0.8638284206390381 +illusion_0.75L,sr,365,73.0,velocity,upper_uy,0.38827550411224365 +illusion_0.75L,sr,365,73.0,velocity,center_ux,0.6990807056427002 +illusion_0.75L,sr,365,73.0,velocity,center_uy,0.6483260989189148 +illusion_0.75L,sr,365,73.0,velocity,lower_ux,0.9407505989074707 +illusion_0.75L,sr,365,73.0,velocity,lower_uy,0.3878765106201172 +illusion_0.75L,sr,366,73.2,velocity,upper_ux,0.7872292399406433 +illusion_0.75L,sr,366,73.2,velocity,upper_uy,0.4046366810798645 +illusion_0.75L,sr,366,73.2,velocity,center_ux,0.7224217057228088 +illusion_0.75L,sr,366,73.2,velocity,center_uy,0.6617183685302734 +illusion_0.75L,sr,366,73.2,velocity,lower_ux,0.9766250848770142 +illusion_0.75L,sr,366,73.2,velocity,lower_uy,0.40866619348526 +illusion_0.75L,sr,367,73.4,velocity,upper_ux,0.7307959794998169 +illusion_0.75L,sr,367,73.4,velocity,upper_uy,0.3947647213935852 +illusion_0.75L,sr,367,73.4,velocity,center_ux,0.7401278018951416 +illusion_0.75L,sr,367,73.4,velocity,center_uy,0.676327109336853 +illusion_0.75L,sr,367,73.4,velocity,lower_ux,1.0135279893875122 +illusion_0.75L,sr,367,73.4,velocity,lower_uy,0.4265272915363312 +illusion_0.75L,sr,368,73.6,velocity,upper_ux,0.6906635165214539 +illusion_0.75L,sr,368,73.6,velocity,upper_uy,0.36755236983299255 +illusion_0.75L,sr,368,73.6,velocity,center_ux,0.7529997229576111 +illusion_0.75L,sr,368,73.6,velocity,center_uy,0.6880624890327454 +illusion_0.75L,sr,368,73.6,velocity,lower_ux,1.0515481233596802 +illusion_0.75L,sr,368,73.6,velocity,lower_uy,0.4414120018482208 +illusion_0.75L,sr,369,73.8,velocity,upper_ux,0.6606270670890808 +illusion_0.75L,sr,369,73.8,velocity,upper_uy,0.3302409052848816 +illusion_0.75L,sr,369,73.8,velocity,center_ux,0.7612363696098328 +illusion_0.75L,sr,369,73.8,velocity,center_uy,0.6915193796157837 +illusion_0.75L,sr,369,73.8,velocity,lower_ux,1.0907642841339111 +illusion_0.75L,sr,369,73.8,velocity,lower_uy,0.4531441032886505 +illusion_0.75L,sr,370,74.0,velocity,upper_ux,0.6358602046966553 +illusion_0.75L,sr,370,74.0,velocity,upper_uy,0.2865206003189087 +illusion_0.75L,sr,370,74.0,velocity,center_ux,0.7647756934165955 +illusion_0.75L,sr,370,74.0,velocity,center_uy,0.6799376010894775 +illusion_0.75L,sr,370,74.0,velocity,lower_ux,1.1311858892440796 +illusion_0.75L,sr,370,74.0,velocity,lower_uy,0.46139270067214966 +illusion_0.75L,sr,371,74.2,velocity,upper_ux,0.6143701076507568 +illusion_0.75L,sr,371,74.2,velocity,upper_uy,0.23752759397029877 +illusion_0.75L,sr,371,74.2,velocity,center_ux,0.763481855392456 +illusion_0.75L,sr,371,74.2,velocity,center_uy,0.6468797922134399 +illusion_0.75L,sr,371,74.2,velocity,lower_ux,1.1726202964782715 +illusion_0.75L,sr,371,74.2,velocity,lower_uy,0.46564576029777527 +illusion_0.75L,sr,372,74.4,velocity,upper_ux,0.5967180132865906 +illusion_0.75L,sr,372,74.4,velocity,upper_uy,0.18374735116958618 +illusion_0.75L,sr,372,74.4,velocity,center_ux,0.7572738528251648 +illusion_0.75L,sr,372,74.4,velocity,center_uy,0.5889441967010498 +illusion_0.75L,sr,372,74.4,velocity,lower_ux,1.2145310640335083 +illusion_0.75L,sr,372,74.4,velocity,lower_uy,0.46517327427864075 +illusion_0.75L,sr,373,74.6,velocity,upper_ux,0.5851528644561768 +illusion_0.75L,sr,373,74.6,velocity,upper_uy,0.12645184993743896 +illusion_0.75L,sr,373,74.6,velocity,center_ux,0.7460419535636902 +illusion_0.75L,sr,373,74.6,velocity,center_uy,0.507469654083252 +illusion_0.75L,sr,373,74.6,velocity,lower_ux,1.2559125423431396 +illusion_0.75L,sr,373,74.6,velocity,lower_uy,0.4589809775352478 +illusion_0.75L,sr,374,74.8,velocity,upper_ux,0.5826148390769958 +illusion_0.75L,sr,374,74.8,velocity,upper_uy,0.06829878687858582 +illusion_0.75L,sr,374,74.8,velocity,center_ux,0.7293649911880493 +illusion_0.75L,sr,374,74.8,velocity,center_uy,0.4072425067424774 +illusion_0.75L,sr,374,74.8,velocity,lower_ux,1.295161485671997 +illusion_0.75L,sr,374,74.8,velocity,lower_uy,0.4457695484161377 +illusion_0.75L,sr,375,75.0,velocity,upper_ux,0.5915154218673706 +illusion_0.75L,sr,375,75.0,velocity,upper_uy,0.012952685356140137 +illusion_0.75L,sr,375,75.0,velocity,center_ux,0.706447958946228 +illusion_0.75L,sr,375,75.0,velocity,center_uy,0.2929410934448242 +illusion_0.75L,sr,375,75.0,velocity,lower_ux,1.3300164937973022 +illusion_0.75L,sr,375,75.0,velocity,lower_uy,0.4239967465400696 +illusion_0.75L,sr,376,75.2,velocity,upper_ux,0.6122932434082031 +illusion_0.75L,sr,376,75.2,velocity,upper_uy,-0.036359816789627075 +illusion_0.75L,sr,376,75.2,velocity,center_ux,0.6767343878746033 +illusion_0.75L,sr,376,75.2,velocity,center_uy,0.1666366010904312 +illusion_0.75L,sr,376,75.2,velocity,lower_ux,1.357725977897644 +illusion_0.75L,sr,376,75.2,velocity,lower_uy,0.3920864462852478 +illusion_0.75L,sr,377,75.4,velocity,upper_ux,0.6423709392547607 +illusion_0.75L,sr,377,75.4,velocity,upper_uy,-0.07882772386074066 +illusion_0.75L,sr,377,75.4,velocity,center_ux,0.6409898400306702 +illusion_0.75L,sr,377,75.4,velocity,center_uy,0.028668571263551712 +illusion_0.75L,sr,377,75.4,velocity,lower_ux,1.3754812479019165 +illusion_0.75L,sr,377,75.4,velocity,lower_uy,0.3487543761730194 +illusion_0.75L,sr,378,75.6,velocity,upper_ux,0.6768043041229248 +illusion_0.75L,sr,378,75.6,velocity,upper_uy,-0.11683553457260132 +illusion_0.75L,sr,378,75.6,velocity,center_ux,0.6021766066551208 +illusion_0.75L,sr,378,75.6,velocity,center_uy,-0.11911242455244064 +illusion_0.75L,sr,378,75.6,velocity,lower_ux,1.380996823310852 +illusion_0.75L,sr,378,75.6,velocity,lower_uy,0.2933184504508972 +illusion_0.75L,sr,379,75.8,velocity,upper_ux,0.7108903527259827 +illusion_0.75L,sr,379,75.8,velocity,upper_uy,-0.1541057825088501 +illusion_0.75L,sr,379,75.8,velocity,center_ux,0.5656687021255493 +illusion_0.75L,sr,379,75.8,velocity,center_uy,-0.2702654004096985 +illusion_0.75L,sr,379,75.8,velocity,lower_ux,1.372799277305603 +illusion_0.75L,sr,379,75.8,velocity,lower_uy,0.22577446699142456 +illusion_0.75L,sr,380,76.0,velocity,upper_ux,0.7426602244377136 +illusion_0.75L,sr,380,76.0,velocity,upper_uy,-0.19259808957576752 +illusion_0.75L,sr,380,76.0,velocity,center_ux,0.5387922525405884 +illusion_0.75L,sr,380,76.0,velocity,center_uy,-0.41236087679862976 +illusion_0.75L,sr,380,76.0,velocity,lower_ux,1.3497227430343628 +illusion_0.75L,sr,380,76.0,velocity,lower_uy,0.14650487899780273 +illusion_0.75L,sr,381,76.2,velocity,upper_ux,0.7729020118713379 +illusion_0.75L,sr,381,76.2,velocity,upper_uy,-0.23145028948783875 +illusion_0.75L,sr,381,76.2,velocity,center_ux,0.5295783877372742 +illusion_0.75L,sr,381,76.2,velocity,center_uy,-0.5281031727790833 +illusion_0.75L,sr,381,76.2,velocity,lower_ux,1.3098983764648438 +illusion_0.75L,sr,381,76.2,velocity,lower_uy,0.056084536015987396 +illusion_0.75L,sr,382,76.4,velocity,upper_ux,0.8032078742980957 +illusion_0.75L,sr,382,76.4,velocity,upper_uy,-0.26863884925842285 +illusion_0.75L,sr,382,76.4,velocity,center_ux,0.5434385538101196 +illusion_0.75L,sr,382,76.4,velocity,center_uy,-0.601896345615387 +illusion_0.75L,sr,382,76.4,velocity,lower_ux,1.250706672668457 +illusion_0.75L,sr,382,76.4,velocity,lower_uy,-0.04379330575466156 +illusion_0.75L,sr,383,76.6,velocity,upper_ux,0.8345246315002441 +illusion_0.75L,sr,383,76.6,velocity,upper_uy,-0.3027893006801605 +illusion_0.75L,sr,383,76.6,velocity,center_ux,0.5777415633201599 +illusion_0.75L,sr,383,76.6,velocity,center_uy,-0.6325097680091858 +illusion_0.75L,sr,383,76.6,velocity,lower_ux,1.171118974685669 +illusion_0.75L,sr,383,76.6,velocity,lower_uy,-0.14812712371349335 +illusion_0.75L,sr,384,76.8,velocity,upper_ux,0.8670796155929565 +illusion_0.75L,sr,384,76.8,velocity,upper_uy,-0.3335036039352417 +illusion_0.75L,sr,384,76.8,velocity,center_ux,0.6209599375724792 +illusion_0.75L,sr,384,76.8,velocity,center_uy,-0.637706995010376 +illusion_0.75L,sr,384,76.8,velocity,lower_ux,1.075086236000061 +illusion_0.75L,sr,384,76.8,velocity,lower_uy,-0.24718493223190308 +illusion_0.75L,sr,385,77.0,velocity,upper_ux,0.9008032083511353 +illusion_0.75L,sr,385,77.0,velocity,upper_uy,-0.36087483167648315 +illusion_0.75L,sr,385,77.0,velocity,center_ux,0.661003053188324 +illusion_0.75L,sr,385,77.0,velocity,center_uy,-0.6391867995262146 +illusion_0.75L,sr,385,77.0,velocity,lower_ux,0.9725039601325989 +illusion_0.75L,sr,385,77.0,velocity,lower_uy,-0.32837727665901184 +illusion_0.75L,sr,386,77.2,velocity,upper_ux,0.9355887770652771 +illusion_0.75L,sr,386,77.2,velocity,upper_uy,-0.3850986063480377 +illusion_0.75L,sr,386,77.2,velocity,center_ux,0.6928640007972717 +illusion_0.75L,sr,386,77.2,velocity,center_uy,-0.6467380523681641 +illusion_0.75L,sr,386,77.2,velocity,lower_ux,0.8761175274848938 +illusion_0.75L,sr,386,77.2,velocity,lower_uy,-0.38124725222587585 +illusion_0.75L,sr,387,77.4,velocity,upper_ux,0.9713854193687439 +illusion_0.75L,sr,387,77.4,velocity,upper_uy,-0.4063318967819214 +illusion_0.75L,sr,387,77.4,velocity,center_ux,0.7171871066093445 +illusion_0.75L,sr,387,77.4,velocity,center_uy,-0.6596083641052246 +illusion_0.75L,sr,387,77.4,velocity,lower_ux,0.7961866855621338 +illusion_0.75L,sr,387,77.4,velocity,lower_uy,-0.40232235193252563 +illusion_0.75L,sr,388,77.6,velocity,upper_ux,1.0082149505615234 +illusion_0.75L,sr,388,77.6,velocity,upper_uy,-0.4246496558189392 +illusion_0.75L,sr,388,77.6,velocity,center_ux,0.7356517314910889 +illusion_0.75L,sr,388,77.6,velocity,center_uy,-0.6741893887519836 +illusion_0.75L,sr,388,77.6,velocity,lower_ux,0.7364183664321899 +illusion_0.75L,sr,388,77.6,velocity,lower_uy,-0.39604705572128296 +illusion_0.75L,sr,389,77.8,velocity,upper_ux,1.0461362600326538 +illusion_0.75L,sr,389,77.8,velocity,upper_uy,-0.44001349806785583 +illusion_0.75L,sr,389,77.8,velocity,center_ux,0.7491525411605835 +illusion_0.75L,sr,389,77.8,velocity,center_uy,-0.6864866614341736 +illusion_0.75L,sr,389,77.8,velocity,lower_ux,0.6938835382461548 +illusion_0.75L,sr,389,77.8,velocity,lower_uy,-0.37100300192832947 +illusion_0.75L,sr,390,78.0,velocity,upper_ux,1.0852059125900269 +illusion_0.75L,sr,390,78.0,velocity,upper_uy,-0.4522487223148346 +illusion_0.75L,sr,390,78.0,velocity,center_ux,0.7579317688941956 +illusion_0.75L,sr,390,78.0,velocity,center_uy,-0.691321611404419 +illusion_0.75L,sr,390,78.0,velocity,lower_ux,0.6625474691390991 +illusion_0.75L,sr,390,78.0,velocity,lower_uy,-0.3348499536514282 +illusion_0.75L,sr,391,78.2,velocity,upper_ux,1.1254143714904785 +illusion_0.75L,sr,391,78.2,velocity,upper_uy,-0.46103909611701965 +illusion_0.75L,sr,391,78.2,velocity,center_ux,0.7619302868843079 +illusion_0.75L,sr,391,78.2,velocity,center_uy,-0.6821032762527466 +illusion_0.75L,sr,391,78.2,velocity,lower_ux,0.6372004747390747 +illusion_0.75L,sr,391,78.2,velocity,lower_uy,-0.29186713695526123 +illusion_0.75L,sr,392,78.4,velocity,upper_ux,1.1666154861450195 +illusion_0.75L,sr,392,78.4,velocity,upper_uy,-0.4659048020839691 +illusion_0.75L,sr,392,78.4,velocity,center_ux,0.7610617876052856 +illusion_0.75L,sr,392,78.4,velocity,center_uy,-0.6522638201713562 +illusion_0.75L,sr,392,78.4,velocity,lower_ux,0.6153804659843445 +illusion_0.75L,sr,392,78.4,velocity,lower_uy,-0.24356642365455627 +illusion_0.75L,sr,393,78.6,velocity,upper_ux,1.208369493484497 +illusion_0.75L,sr,393,78.6,velocity,upper_uy,-0.4661494791507721 +illusion_0.75L,sr,393,78.6,velocity,center_ux,0.7553160190582275 +illusion_0.75L,sr,393,78.6,velocity,center_uy,-0.5978623032569885 +illusion_0.75L,sr,393,78.6,velocity,lower_ux,0.5973052382469177 +illusion_0.75L,sr,393,78.6,velocity,lower_uy,-0.1904994398355484 +illusion_0.75L,sr,394,78.8,velocity,upper_ux,1.2497680187225342 +illusion_0.75L,sr,394,78.8,velocity,upper_uy,-0.46079787611961365 +illusion_0.75L,sr,394,78.8,velocity,center_ux,0.7446635365486145 +illusion_0.75L,sr,394,78.8,velocity,center_uy,-0.5195441246032715 +illusion_0.75L,sr,394,78.8,velocity,lower_ux,0.5850127935409546 +illusion_0.75L,sr,394,78.8,velocity,lower_uy,-0.13378822803497314 +illusion_0.75L,sr,395,79.0,velocity,upper_ux,1.2893110513687134 +illusion_0.75L,sr,395,79.0,velocity,upper_uy,-0.44859054684638977 +illusion_0.75L,sr,395,79.0,velocity,center_ux,0.7287764549255371 +illusion_0.75L,sr,395,79.0,velocity,center_uy,-0.4217599928379059 +illusion_0.75L,sr,395,79.0,velocity,lower_ux,0.581378161907196 +illusion_0.75L,sr,395,79.0,velocity,lower_uy,-0.07587170600891113 +illusion_0.75L,sr,396,79.2,velocity,upper_ux,1.3248469829559326 +illusion_0.75L,sr,396,79.2,velocity,upper_uy,-0.4280368387699127 +illusion_0.75L,sr,396,79.2,velocity,center_ux,0.706907331943512 +illusion_0.75L,sr,396,79.2,velocity,center_uy,-0.3094249963760376 +illusion_0.75L,sr,396,79.2,velocity,lower_ux,0.5889408588409424 +illusion_0.75L,sr,396,79.2,velocity,lower_uy,-0.020300142467021942 +illusion_0.75L,sr,397,79.4,velocity,upper_ux,1.3536759614944458 +illusion_0.75L,sr,397,79.4,velocity,upper_uy,-0.3975846767425537 +illusion_0.75L,sr,397,79.4,velocity,center_ux,0.6783812046051025 +illusion_0.75L,sr,397,79.4,velocity,center_uy,-0.18505547940731049 +illusion_0.75L,sr,397,79.4,velocity,lower_ux,0.608451247215271 +illusion_0.75L,sr,397,79.4,velocity,lower_uy,0.02958843670785427 +illusion_0.75L,sr,398,79.6,velocity,upper_ux,1.37296462059021 +illusion_0.75L,sr,398,79.6,velocity,upper_uy,-0.3559165298938751 +illusion_0.75L,sr,398,79.6,velocity,center_ux,0.643642246723175 +illusion_0.75L,sr,398,79.6,velocity,center_uy,-0.04909329488873482 +illusion_0.75L,sr,398,79.6,velocity,lower_ux,0.6377156376838684 +illusion_0.75L,sr,398,79.6,velocity,lower_uy,0.07262814790010452 +illusion_0.75L,sr,399,79.8,velocity,upper_ux,1.3803367614746094 +illusion_0.75L,sr,399,79.8,velocity,upper_uy,-0.30229344964027405 +illusion_0.75L,sr,399,79.8,velocity,center_ux,0.6052219271659851 +illusion_0.75L,sr,399,79.8,velocity,center_uy,0.09707802534103394 +illusion_0.75L,sr,399,79.8,velocity,lower_ux,0.6719809174537659 +illusion_0.75L,sr,399,79.8,velocity,lower_uy,0.11084601283073425 +illusion_0.75L,sr,0,0.0,force,front_fx,0.0018273191526532173 +illusion_0.75L,sr,0,0.0,force,front_fy,-4.922538573737256e-05 +illusion_0.75L,sr,0,0.0,force,upper_fx,0.001272868481464684 +illusion_0.75L,sr,0,0.0,force,upper_fy,0.0025496450252830982 +illusion_0.75L,sr,0,0.0,force,lower_fx,0.0013434828724712133 +illusion_0.75L,sr,0,0.0,force,lower_fy,-0.002868432318791747 +illusion_0.75L,sr,1,0.2,force,front_fx,0.0018322676187381148 +illusion_0.75L,sr,1,0.2,force,front_fy,-4.050692587043159e-05 +illusion_0.75L,sr,1,0.2,force,upper_fx,0.0014494780916720629 +illusion_0.75L,sr,1,0.2,force,upper_fy,0.0022824553307145834 +illusion_0.75L,sr,1,0.2,force,lower_fx,0.001518910052254796 +illusion_0.75L,sr,1,0.2,force,lower_fy,-0.0025947182439267635 +illusion_0.75L,sr,2,0.4,force,front_fx,0.0018591572297737002 +illusion_0.75L,sr,2,0.4,force,front_fy,-3.479413499007933e-05 +illusion_0.75L,sr,2,0.4,force,upper_fx,0.0016092420555651188 +illusion_0.75L,sr,2,0.4,force,upper_fy,0.00205043563619256 +illusion_0.75L,sr,2,0.4,force,lower_fx,0.0016766743501648307 +illusion_0.75L,sr,2,0.4,force,lower_fy,-0.002340527717024088 +illusion_0.75L,sr,3,0.6,force,front_fx,0.0018865815363824368 +illusion_0.75L,sr,3,0.6,force,front_fy,-2.89840972982347e-05 +illusion_0.75L,sr,3,0.6,force,upper_fx,0.0017589456401765347 +illusion_0.75L,sr,3,0.6,force,upper_fy,0.0018210132839158177 +illusion_0.75L,sr,3,0.6,force,lower_fx,0.0018253120360895991 +illusion_0.75L,sr,3,0.6,force,lower_fy,-0.002076725009828806 +illusion_0.75L,sr,4,0.8,force,front_fx,0.0019132004817947745 +illusion_0.75L,sr,4,0.8,force,front_fy,-2.23415408981964e-05 +illusion_0.75L,sr,4,0.8,force,upper_fx,0.0018915599212050438 +illusion_0.75L,sr,4,0.8,force,upper_fy,0.0016009502578526735 +illusion_0.75L,sr,4,0.8,force,lower_fx,0.001957588829100132 +illusion_0.75L,sr,4,0.8,force,lower_fy,-0.0018135163700208068 +illusion_0.75L,sr,5,1.0,force,front_fx,0.0019357773708179593 +illusion_0.75L,sr,5,1.0,force,front_fy,-1.6689260519342497e-05 +illusion_0.75L,sr,5,1.0,force,upper_fx,0.002001832937821746 +illusion_0.75L,sr,5,1.0,force,upper_fy,0.001394609222188592 +illusion_0.75L,sr,5,1.0,force,lower_fx,0.002067241119220853 +illusion_0.75L,sr,5,1.0,force,lower_fy,-0.0015575336292386055 +illusion_0.75L,sr,6,1.2,force,front_fx,0.001954897539690137 +illusion_0.75L,sr,6,1.2,force,front_fy,-1.2463853636290878e-05 +illusion_0.75L,sr,6,1.2,force,upper_fx,0.002087858272716403 +illusion_0.75L,sr,6,1.2,force,upper_fy,0.0012068875366821885 +illusion_0.75L,sr,6,1.2,force,lower_fx,0.002152075758203864 +illusion_0.75L,sr,6,1.2,force,lower_fy,-0.0013171177124604583 +illusion_0.75L,sr,7,1.4,force,front_fx,0.001965953968465328 +illusion_0.75L,sr,7,1.4,force,front_fy,-9.340317774331197e-06 +illusion_0.75L,sr,7,1.4,force,upper_fx,0.00215482828207314 +illusion_0.75L,sr,7,1.4,force,upper_fy,0.0010436843149363995 +illusion_0.75L,sr,7,1.4,force,lower_fx,0.002216694410890341 +illusion_0.75L,sr,7,1.4,force,lower_fy,-0.001100408611819148 +illusion_0.75L,sr,8,1.6,force,front_fx,0.0019763158634305 +illusion_0.75L,sr,8,1.6,force,front_fy,-7.355755769822281e-06 +illusion_0.75L,sr,8,1.6,force,upper_fx,0.0022052889689803123 +illusion_0.75L,sr,8,1.6,force,upper_fy,0.0009055331465788186 +illusion_0.75L,sr,8,1.6,force,lower_fx,0.002262549940496683 +illusion_0.75L,sr,8,1.6,force,lower_fy,-0.00090791069669649 +illusion_0.75L,sr,9,1.8,force,front_fx,0.001980091445147991 +illusion_0.75L,sr,9,1.8,force,front_fy,-4.639299731934443e-06 +illusion_0.75L,sr,9,1.8,force,upper_fx,0.002245902316644788 +illusion_0.75L,sr,9,1.8,force,upper_fy,0.000793378334492445 +illusion_0.75L,sr,9,1.8,force,lower_fx,0.002295134589076042 +illusion_0.75L,sr,9,1.8,force,lower_fy,-0.0007408250821754336 +illusion_0.75L,sr,10,2.0,force,front_fx,0.001984016504138708 +illusion_0.75L,sr,10,2.0,force,front_fy,-2.2067472400522092e-06 +illusion_0.75L,sr,10,2.0,force,upper_fx,0.002279345877468586 +illusion_0.75L,sr,10,2.0,force,upper_fy,0.0007048025727272034 +illusion_0.75L,sr,10,2.0,force,lower_fx,0.002316762926056981 +illusion_0.75L,sr,10,2.0,force,lower_fy,-0.0005979306297376752 +illusion_0.75L,sr,11,2.2,force,front_fx,0.0019826393108814955 +illusion_0.75L,sr,11,2.2,force,front_fy,2.850105715879181e-07 +illusion_0.75L,sr,11,2.2,force,upper_fx,0.0023014021571725607 +illusion_0.75L,sr,11,2.2,force,upper_fy,0.000636428885627538 +illusion_0.75L,sr,11,2.2,force,lower_fx,0.0023230179212987423 +illusion_0.75L,sr,11,2.2,force,lower_fy,-0.0004781815514434129 +illusion_0.75L,sr,12,2.4,force,front_fx,0.00197798409499228 +illusion_0.75L,sr,12,2.4,force,front_fy,4.228926172800129e-06 +illusion_0.75L,sr,12,2.4,force,upper_fx,0.0023198865819722414 +illusion_0.75L,sr,12,2.4,force,upper_fy,0.0005852860631421208 +illusion_0.75L,sr,12,2.4,force,lower_fx,0.002321793232113123 +illusion_0.75L,sr,12,2.4,force,lower_fy,-0.00038005600799806416 +illusion_0.75L,sr,13,2.6,force,front_fx,0.0019752797670662403 +illusion_0.75L,sr,13,2.6,force,front_fy,1.0293666491634212e-05 +illusion_0.75L,sr,13,2.6,force,upper_fx,0.002338079269975424 +illusion_0.75L,sr,13,2.6,force,upper_fy,0.0005483589484356344 +illusion_0.75L,sr,13,2.6,force,lower_fx,0.0023174788802862167 +illusion_0.75L,sr,13,2.6,force,lower_fy,-0.0003007103514391929 +illusion_0.75L,sr,14,2.8,force,front_fx,0.0019760995637625456 +illusion_0.75L,sr,14,2.8,force,front_fy,1.804744533728808e-05 +illusion_0.75L,sr,14,2.8,force,upper_fx,0.002360345097258687 +illusion_0.75L,sr,14,2.8,force,upper_fy,0.0005205115885473788 +illusion_0.75L,sr,14,2.8,force,lower_fx,0.0023153943475335836 +illusion_0.75L,sr,14,2.8,force,lower_fy,-0.00023634657554794103 +illusion_0.75L,sr,15,3.0,force,front_fx,0.0019798323046416044 +illusion_0.75L,sr,15,3.0,force,front_fy,2.5906481823767535e-05 +illusion_0.75L,sr,15,3.0,force,upper_fx,0.0023857580963522196 +illusion_0.75L,sr,15,3.0,force,upper_fy,0.0004992741742171347 +illusion_0.75L,sr,15,3.0,force,lower_fx,0.0023154523223638535 +illusion_0.75L,sr,15,3.0,force,lower_fy,-0.0001860369957285002 +illusion_0.75L,sr,16,3.2,force,front_fx,0.0019829217344522476 +illusion_0.75L,sr,16,3.2,force,front_fy,3.404304152354598e-05 +illusion_0.75L,sr,16,3.2,force,upper_fx,0.0024105228949338198 +illusion_0.75L,sr,16,3.2,force,upper_fy,0.000483206968056038 +illusion_0.75L,sr,16,3.2,force,lower_fx,0.0023143819998949766 +illusion_0.75L,sr,16,3.2,force,lower_fy,-0.0001493598538218066 +illusion_0.75L,sr,17,3.4,force,front_fx,0.0019829897210001945 +illusion_0.75L,sr,17,3.4,force,front_fy,4.339447332313284e-05 +illusion_0.75L,sr,17,3.4,force,upper_fx,0.0024303013924509287 +illusion_0.75L,sr,17,3.4,force,upper_fy,0.0004699633573181927 +illusion_0.75L,sr,17,3.4,force,lower_fx,0.002308824099600315 +illusion_0.75L,sr,17,3.4,force,lower_fy,-0.00012365590373519808 +illusion_0.75L,sr,18,3.6,force,front_fx,0.0019799889996647835 +illusion_0.75L,sr,18,3.6,force,front_fy,5.290406261337921e-05 +illusion_0.75L,sr,18,3.6,force,upper_fx,0.0024463601876050234 +illusion_0.75L,sr,18,3.6,force,upper_fy,0.00045824929839000106 +illusion_0.75L,sr,18,3.6,force,lower_fx,0.002300725784152746 +illusion_0.75L,sr,18,3.6,force,lower_fy,-0.00010759056749520823 +illusion_0.75L,sr,19,3.8,force,front_fx,0.0019756366964429617 +illusion_0.75L,sr,19,3.8,force,front_fy,6.109764217399061e-05 +illusion_0.75L,sr,19,3.8,force,upper_fx,0.002459332114085555 +illusion_0.75L,sr,19,3.8,force,upper_fy,0.00044688821071758866 +illusion_0.75L,sr,19,3.8,force,lower_fx,0.0022912761196494102 +illusion_0.75L,sr,19,3.8,force,lower_fy,-0.00010037315223598853 +illusion_0.75L,sr,20,4.0,force,front_fx,0.0019725924357771873 +illusion_0.75L,sr,20,4.0,force,front_fy,6.84088736306876e-05 +illusion_0.75L,sr,20,4.0,force,upper_fx,0.002472471911460161 +illusion_0.75L,sr,20,4.0,force,upper_fy,0.000435513531556353 +illusion_0.75L,sr,20,4.0,force,lower_fx,0.0022840481251478195 +illusion_0.75L,sr,20,4.0,force,lower_fy,-0.00010160080273635685 +illusion_0.75L,sr,21,4.2,force,front_fx,0.0019689833279699087 +illusion_0.75L,sr,21,4.2,force,front_fy,7.517744961660355e-05 +illusion_0.75L,sr,21,4.2,force,upper_fx,0.0024833709467202425 +illusion_0.75L,sr,21,4.2,force,upper_fy,0.0004239112895447761 +illusion_0.75L,sr,21,4.2,force,lower_fx,0.002277157036587596 +illusion_0.75L,sr,21,4.2,force,lower_fy,-0.00010949678835459054 +illusion_0.75L,sr,22,4.4,force,front_fx,0.001961133675649762 +illusion_0.75L,sr,22,4.4,force,front_fy,8.167914347723126e-05 +illusion_0.75L,sr,22,4.4,force,upper_fx,0.002486606827005744 +illusion_0.75L,sr,22,4.4,force,upper_fy,0.0004136520146857947 +illusion_0.75L,sr,22,4.4,force,lower_fx,0.0022657185327261686 +illusion_0.75L,sr,22,4.4,force,lower_fy,-0.00012391689233481884 +illusion_0.75L,sr,23,4.6,force,front_fx,0.001953704748302698 +illusion_0.75L,sr,23,4.6,force,front_fy,8.71822630870156e-05 +illusion_0.75L,sr,23,4.6,force,upper_fx,0.0024884336162358522 +illusion_0.75L,sr,23,4.6,force,upper_fy,0.0004045465320814401 +illusion_0.75L,sr,23,4.6,force,lower_fx,0.0022563207894563675 +illusion_0.75L,sr,23,4.6,force,lower_fy,-0.00014394578465726227 +illusion_0.75L,sr,24,4.8,force,front_fx,0.0019464812939986587 +illusion_0.75L,sr,24,4.8,force,front_fy,8.936230733525008e-05 +illusion_0.75L,sr,24,4.8,force,upper_fx,0.0024876659736037254 +illusion_0.75L,sr,24,4.8,force,upper_fy,0.0003964299103245139 +illusion_0.75L,sr,24,4.8,force,lower_fx,0.00224806135520339 +illusion_0.75L,sr,24,4.8,force,lower_fy,-0.00016870103718247265 +illusion_0.75L,sr,25,5.0,force,front_fx,0.0019443902419880033 +illusion_0.75L,sr,25,5.0,force,front_fy,9.087618673220277e-05 +illusion_0.75L,sr,25,5.0,force,upper_fx,0.0024899342097342014 +illusion_0.75L,sr,25,5.0,force,upper_fy,0.000388979387935251 +illusion_0.75L,sr,25,5.0,force,lower_fx,0.002246561460196972 +illusion_0.75L,sr,25,5.0,force,lower_fy,-0.0001973381295101717 +illusion_0.75L,sr,26,5.2,force,front_fx,0.00194526684936136 +illusion_0.75L,sr,26,5.2,force,front_fy,9.248302376363426e-05 +illusion_0.75L,sr,26,5.2,force,upper_fx,0.0024936951231211424 +illusion_0.75L,sr,26,5.2,force,upper_fy,0.0003830757341347635 +illusion_0.75L,sr,26,5.2,force,lower_fx,0.002250754041597247 +illusion_0.75L,sr,26,5.2,force,lower_fy,-0.00022902338241692632 +illusion_0.75L,sr,27,5.4,force,front_fx,0.0019464471843093634 +illusion_0.75L,sr,27,5.4,force,front_fy,9.157595923170447e-05 +illusion_0.75L,sr,27,5.4,force,upper_fx,0.0024926867336034775 +illusion_0.75L,sr,27,5.4,force,upper_fy,0.0003788464528042823 +illusion_0.75L,sr,27,5.4,force,lower_fx,0.002254590392112732 +illusion_0.75L,sr,27,5.4,force,lower_fy,-0.0002626159111969173 +illusion_0.75L,sr,28,5.6,force,front_fx,0.001944458344951272 +illusion_0.75L,sr,28,5.6,force,front_fy,8.850912854541093e-05 +illusion_0.75L,sr,28,5.6,force,upper_fx,0.0024863805156201124 +illusion_0.75L,sr,28,5.6,force,upper_fy,0.00037596822949126363 +illusion_0.75L,sr,28,5.6,force,lower_fx,0.002257236046716571 +illusion_0.75L,sr,28,5.6,force,lower_fy,-0.0002987391490023583 +illusion_0.75L,sr,29,5.8,force,front_fx,0.0019405325874686241 +illusion_0.75L,sr,29,5.8,force,front_fy,8.40381981106475e-05 +illusion_0.75L,sr,29,5.8,force,upper_fx,0.0024741990491747856 +illusion_0.75L,sr,29,5.8,force,upper_fy,0.00037281637196429074 +illusion_0.75L,sr,29,5.8,force,lower_fx,0.002258062595501542 +illusion_0.75L,sr,29,5.8,force,lower_fy,-0.00033527647610753775 +illusion_0.75L,sr,30,6.0,force,front_fx,0.0019366288324818015 +illusion_0.75L,sr,30,6.0,force,front_fy,7.818768062861636e-05 +illusion_0.75L,sr,30,6.0,force,upper_fx,0.0024584310594946146 +illusion_0.75L,sr,30,6.0,force,upper_fy,0.00036913034273311496 +illusion_0.75L,sr,30,6.0,force,lower_fx,0.0022590183652937412 +illusion_0.75L,sr,30,6.0,force,lower_fy,-0.00037031364627182484 +illusion_0.75L,sr,31,6.2,force,front_fx,0.0019337086705490947 +illusion_0.75L,sr,31,6.2,force,front_fy,7.171748438850045e-05 +illusion_0.75L,sr,31,6.2,force,upper_fx,0.0024410318583250046 +illusion_0.75L,sr,31,6.2,force,upper_fy,0.00036351627204567194 +illusion_0.75L,sr,31,6.2,force,lower_fx,0.0022616691421717405 +illusion_0.75L,sr,31,6.2,force,lower_fy,-0.0004023822257295251 +illusion_0.75L,sr,32,6.4,force,front_fx,0.0019313202938064933 +illusion_0.75L,sr,32,6.4,force,front_fy,6.27341287326999e-05 +illusion_0.75L,sr,32,6.4,force,upper_fx,0.002422322053462267 +illusion_0.75L,sr,32,6.4,force,upper_fy,0.0003551948757376522 +illusion_0.75L,sr,32,6.4,force,lower_fx,0.0022659061942249537 +illusion_0.75L,sr,32,6.4,force,lower_fy,-0.00043101253686472774 +illusion_0.75L,sr,33,6.6,force,front_fx,0.0019268295727670193 +illusion_0.75L,sr,33,6.6,force,front_fy,5.2645831601694226e-05 +illusion_0.75L,sr,33,6.6,force,upper_fx,0.0023990690242499113 +illusion_0.75L,sr,33,6.6,force,upper_fy,0.00034357942058704793 +illusion_0.75L,sr,33,6.6,force,lower_fx,0.002267644740641117 +illusion_0.75L,sr,33,6.6,force,lower_fy,-0.0004554323968477547 +illusion_0.75L,sr,34,6.8,force,front_fx,0.0019222552655264735 +illusion_0.75L,sr,34,6.8,force,front_fy,4.249222911312245e-05 +illusion_0.75L,sr,34,6.8,force,upper_fx,0.002375649753957987 +illusion_0.75L,sr,34,6.8,force,upper_fy,0.0003287720028311014 +illusion_0.75L,sr,34,6.8,force,lower_fx,0.0022707954049110413 +illusion_0.75L,sr,34,6.8,force,lower_fy,-0.0004745351616293192 +illusion_0.75L,sr,35,7.0,force,front_fx,0.0019201100803911686 +illusion_0.75L,sr,35,7.0,force,front_fy,3.2316329452442005e-05 +illusion_0.75L,sr,35,7.0,force,upper_fx,0.0023540027905255556 +illusion_0.75L,sr,35,7.0,force,upper_fy,0.00031091307755559683 +illusion_0.75L,sr,35,7.0,force,lower_fx,0.002276833401992917 +illusion_0.75L,sr,35,7.0,force,lower_fy,-0.0004874461446888745 +illusion_0.75L,sr,36,7.2,force,front_fx,0.001921876217238605 +illusion_0.75L,sr,36,7.2,force,front_fy,2.1128344087628648e-05 +illusion_0.75L,sr,36,7.2,force,upper_fx,0.0023375432938337326 +illusion_0.75L,sr,36,7.2,force,upper_fy,0.00029020218062214553 +illusion_0.75L,sr,36,7.2,force,lower_fx,0.0022886390797793865 +illusion_0.75L,sr,36,7.2,force,lower_fy,-0.0004945017863065004 +illusion_0.75L,sr,37,7.4,force,front_fx,0.001929698046296835 +illusion_0.75L,sr,37,7.4,force,front_fy,9.526901521894615e-06 +illusion_0.75L,sr,37,7.4,force,upper_fx,0.002329220762476325 +illusion_0.75L,sr,37,7.4,force,upper_fy,0.0002668991219252348 +illusion_0.75L,sr,37,7.4,force,lower_fx,0.0023084976710379124 +illusion_0.75L,sr,37,7.4,force,lower_fy,-0.0004959146026521921 +illusion_0.75L,sr,38,7.6,force,front_fx,0.0019368198700249195 +illusion_0.75L,sr,38,7.6,force,front_fy,-1.3614544513984583e-06 +illusion_0.75L,sr,38,7.6,force,upper_fx,0.0023217713460326195 +illusion_0.75L,sr,38,7.6,force,upper_fy,0.00024327168648596853 +illusion_0.75L,sr,38,7.6,force,lower_fx,0.0023287730291485786 +illusion_0.75L,sr,38,7.6,force,lower_fy,-0.0004928635316900909 +illusion_0.75L,sr,39,7.8,force,front_fx,0.001942506874911487 +illusion_0.75L,sr,39,7.8,force,front_fy,-1.1484461538202595e-05 +illusion_0.75L,sr,39,7.8,force,upper_fx,0.002313466276973486 +illusion_0.75L,sr,39,7.8,force,upper_fy,0.00022099408670328557 +illusion_0.75L,sr,39,7.8,force,lower_fx,0.002347419271245599 +illusion_0.75L,sr,39,7.8,force,lower_fy,-0.000486156641272828 +illusion_0.75L,sr,40,8.0,force,front_fx,0.0019449797691777349 +illusion_0.75L,sr,40,8.0,force,front_fy,-2.1382960767368786e-05 +illusion_0.75L,sr,40,8.0,force,upper_fx,0.0023035372141748667 +illusion_0.75L,sr,40,8.0,force,upper_fy,0.00020088546443730593 +illusion_0.75L,sr,40,8.0,force,lower_fx,0.0023632608354091644 +illusion_0.75L,sr,40,8.0,force,lower_fy,-0.0004763530450873077 +illusion_0.75L,sr,41,8.2,force,front_fx,0.0019471623236313462 +illusion_0.75L,sr,41,8.2,force,front_fy,-3.0861509003443643e-05 +illusion_0.75L,sr,41,8.2,force,upper_fx,0.0022943017538636923 +illusion_0.75L,sr,41,8.2,force,upper_fy,0.00018379357061348855 +illusion_0.75L,sr,41,8.2,force,lower_fx,0.002378244651481509 +illusion_0.75L,sr,41,8.2,force,lower_fy,-0.00046424978063441813 +illusion_0.75L,sr,42,8.4,force,front_fx,0.0019492023857310414 +illusion_0.75L,sr,42,8.4,force,front_fy,-3.957249646191485e-05 +illusion_0.75L,sr,42,8.4,force,upper_fx,0.0022877983283251524 +illusion_0.75L,sr,42,8.4,force,upper_fy,0.00017036082863342017 +illusion_0.75L,sr,42,8.4,force,lower_fx,0.0023940906394273043 +illusion_0.75L,sr,42,8.4,force,lower_fy,-0.00045037592644803226 +illusion_0.75L,sr,43,8.6,force,front_fx,0.001950918696820736 +illusion_0.75L,sr,43,8.6,force,front_fy,-4.704246748588048e-05 +illusion_0.75L,sr,43,8.6,force,upper_fx,0.0022819547448307276 +illusion_0.75L,sr,43,8.6,force,upper_fy,0.00016220900579355657 +illusion_0.75L,sr,43,8.6,force,lower_fx,0.002408461645245552 +illusion_0.75L,sr,43,8.6,force,lower_fy,-0.00043583131628111005 +illusion_0.75L,sr,44,8.8,force,front_fx,0.0019500574562698603 +illusion_0.75L,sr,44,8.8,force,front_fy,-5.337195034371689e-05 +illusion_0.75L,sr,44,8.8,force,upper_fx,0.002275202190503478 +illusion_0.75L,sr,44,8.8,force,upper_fy,0.00016000188770703971 +illusion_0.75L,sr,44,8.8,force,lower_fx,0.0024194668512791395 +illusion_0.75L,sr,44,8.8,force,lower_fy,-0.00042133769602514803 +illusion_0.75L,sr,45,9.0,force,front_fx,0.001946225413121283 +illusion_0.75L,sr,45,9.0,force,front_fy,-5.896680158912204e-05 +illusion_0.75L,sr,45,9.0,force,upper_fx,0.002266975585371256 +illusion_0.75L,sr,45,9.0,force,upper_fy,0.00016449052782263607 +illusion_0.75L,sr,45,9.0,force,lower_fx,0.0024262366350740194 +illusion_0.75L,sr,45,9.0,force,lower_fy,-0.0004083091043867171 +illusion_0.75L,sr,46,9.2,force,front_fx,0.00194317486602813 +illusion_0.75L,sr,46,9.2,force,front_fy,-6.383057188941166e-05 +illusion_0.75L,sr,46,9.2,force,upper_fx,0.00226186728104949 +illusion_0.75L,sr,46,9.2,force,upper_fy,0.00017497874796390533 +illusion_0.75L,sr,46,9.2,force,lower_fx,0.002433036221191287 +illusion_0.75L,sr,46,9.2,force,lower_fy,-0.0003965599462389946 +illusion_0.75L,sr,47,9.4,force,front_fx,0.001943059265613556 +illusion_0.75L,sr,47,9.4,force,front_fy,-6.717537326039746e-05 +illusion_0.75L,sr,47,9.4,force,upper_fx,0.0022617471404373646 +illusion_0.75L,sr,47,9.4,force,upper_fy,0.00019173954206053168 +illusion_0.75L,sr,47,9.4,force,lower_fx,0.0024413890205323696 +illusion_0.75L,sr,47,9.4,force,lower_fy,-0.0003866347251459956 +illusion_0.75L,sr,48,9.6,force,front_fx,0.0019471768755465746 +illusion_0.75L,sr,48,9.6,force,front_fy,-6.869251956231892e-05 +illusion_0.75L,sr,48,9.6,force,upper_fx,0.002268480136990547 +illusion_0.75L,sr,48,9.6,force,upper_fy,0.00021397184173110873 +illusion_0.75L,sr,48,9.6,force,lower_fx,0.0024528605863451958 +illusion_0.75L,sr,48,9.6,force,lower_fy,-0.00037828527274541557 +illusion_0.75L,sr,49,9.8,force,front_fx,0.0019504072843119502 +illusion_0.75L,sr,49,9.8,force,front_fy,-6.934219709364697e-05 +illusion_0.75L,sr,49,9.8,force,upper_fx,0.0022757905535399914 +illusion_0.75L,sr,49,9.8,force,upper_fy,0.0002421144163236022 +illusion_0.75L,sr,49,9.8,force,lower_fx,0.002460958668962121 +illusion_0.75L,sr,49,9.8,force,lower_fy,-0.0003725844726432115 +illusion_0.75L,sr,50,10.0,force,front_fx,0.0019512348808348179 +illusion_0.75L,sr,50,10.0,force,front_fy,-6.836136162746698e-05 +illusion_0.75L,sr,50,10.0,force,upper_fx,0.002281604800373316 +illusion_0.75L,sr,50,10.0,force,upper_fy,0.00027468777261674404 +illusion_0.75L,sr,50,10.0,force,lower_fx,0.0024634944275021553 +illusion_0.75L,sr,50,10.0,force,lower_fy,-0.00036882582935504615 +illusion_0.75L,sr,51,10.2,force,front_fx,0.001949580037035048 +illusion_0.75L,sr,51,10.2,force,front_fy,-6.60050063743256e-05 +illusion_0.75L,sr,51,10.2,force,upper_fx,0.002285420661792159 +illusion_0.75L,sr,51,10.2,force,upper_fy,0.0003106211079284549 +illusion_0.75L,sr,51,10.2,force,lower_fx,0.0024600515607744455 +illusion_0.75L,sr,51,10.2,force,lower_fy,-0.00036652895505540073 +illusion_0.75L,sr,52,10.4,force,front_fx,0.0019463609205558896 +illusion_0.75L,sr,52,10.4,force,front_fy,-6.201864016475156e-05 +illusion_0.75L,sr,52,10.4,force,upper_fx,0.0022885198704898357 +illusion_0.75L,sr,52,10.4,force,upper_fy,0.000347553490428254 +illusion_0.75L,sr,52,10.4,force,lower_fx,0.002452015643939376 +illusion_0.75L,sr,52,10.4,force,lower_fy,-0.0003640132490545511 +illusion_0.75L,sr,53,10.6,force,front_fx,0.001944001647643745 +illusion_0.75L,sr,53,10.6,force,front_fy,-5.678713205270469e-05 +illusion_0.75L,sr,53,10.6,force,upper_fx,0.0022929562255740166 +illusion_0.75L,sr,53,10.6,force,upper_fy,0.0003835685783997178 +illusion_0.75L,sr,53,10.6,force,lower_fx,0.00244177901186049 +illusion_0.75L,sr,53,10.6,force,lower_fy,-0.00036024872679263353 +illusion_0.75L,sr,54,10.8,force,front_fx,0.0019425761420279741 +illusion_0.75L,sr,54,10.8,force,front_fy,-5.01607391925063e-05 +illusion_0.75L,sr,54,10.8,force,upper_fx,0.002298525767400861 +illusion_0.75L,sr,54,10.8,force,upper_fy,0.00041680465801618993 +illusion_0.75L,sr,54,10.8,force,lower_fx,0.0024295833427459 +illusion_0.75L,sr,54,10.8,force,lower_fy,-0.0003541496698744595 +illusion_0.75L,sr,55,11.0,force,front_fx,0.0019394296687096357 +illusion_0.75L,sr,55,11.0,force,front_fy,-4.2496962123550475e-05 +illusion_0.75L,sr,55,11.0,force,upper_fx,0.0023029812145978212 +illusion_0.75L,sr,55,11.0,force,upper_fy,0.00044601369882002473 +illusion_0.75L,sr,55,11.0,force,lower_fx,0.00241378927603364 +illusion_0.75L,sr,55,11.0,force,lower_fy,-0.00034514532308094203 +illusion_0.75L,sr,56,11.2,force,front_fx,0.0019354451214894652 +illusion_0.75L,sr,56,11.2,force,front_fy,-3.4025350032607093e-05 +illusion_0.75L,sr,56,11.2,force,upper_fx,0.002307117683812976 +illusion_0.75L,sr,56,11.2,force,upper_fy,0.0004700944700744003 +illusion_0.75L,sr,56,11.2,force,lower_fx,0.0023957588709890842 +illusion_0.75L,sr,56,11.2,force,lower_fy,-0.0003333313507027924 +illusion_0.75L,sr,57,11.4,force,front_fx,0.0019331093644723296 +illusion_0.75L,sr,57,11.4,force,front_fy,-2.5377179554197937e-05 +illusion_0.75L,sr,57,11.4,force,upper_fx,0.0023132474161684513 +illusion_0.75L,sr,57,11.4,force,upper_fy,0.0004873582220170647 +illusion_0.75L,sr,57,11.4,force,lower_fx,0.002378407632932067 +illusion_0.75L,sr,57,11.4,force,lower_fy,-0.00031767640030011535 +illusion_0.75L,sr,58,11.6,force,front_fx,0.001935251522809267 +illusion_0.75L,sr,58,11.6,force,front_fy,-1.594302011653781e-05 +illusion_0.75L,sr,58,11.6,force,upper_fx,0.0023253881372511387 +illusion_0.75L,sr,58,11.6,force,upper_fy,0.0004978926735930145 +illusion_0.75L,sr,58,11.6,force,lower_fx,0.0023663220927119255 +illusion_0.75L,sr,58,11.6,force,lower_fy,-0.0002989688946399838 +illusion_0.75L,sr,59,11.8,force,front_fx,0.0019423759076744318 +illusion_0.75L,sr,59,11.8,force,front_fy,-6.54776522424072e-06 +illusion_0.75L,sr,59,11.8,force,upper_fx,0.002344168024137616 +illusion_0.75L,sr,59,11.8,force,upper_fy,0.0005013060290366411 +illusion_0.75L,sr,59,11.8,force,lower_fx,0.0023608249612152576 +illusion_0.75L,sr,59,11.8,force,lower_fy,-0.00027768569998443127 +illusion_0.75L,sr,60,12.0,force,front_fx,0.001950202276930213 +illusion_0.75L,sr,60,12.0,force,front_fy,2.3687193788646255e-06 +illusion_0.75L,sr,60,12.0,force,upper_fx,0.0023646377958357334 +illusion_0.75L,sr,60,12.0,force,upper_fy,0.0004991253954358399 +illusion_0.75L,sr,60,12.0,force,lower_fx,0.0023574193473905325 +illusion_0.75L,sr,60,12.0,force,lower_fy,-0.00025621012900955975 +illusion_0.75L,sr,61,12.2,force,front_fx,0.001957328524440527 +illusion_0.75L,sr,61,12.2,force,front_fy,1.0934420060948469e-05 +illusion_0.75L,sr,61,12.2,force,upper_fx,0.0023848777636885643 +illusion_0.75L,sr,61,12.2,force,upper_fy,0.0004918036866001785 +illusion_0.75L,sr,61,12.2,force,lower_fx,0.002354614669457078 +illusion_0.75L,sr,61,12.2,force,lower_fy,-0.0002355874894419685 +illusion_0.75L,sr,62,12.4,force,front_fx,0.0019609250593930483 +illusion_0.75L,sr,62,12.4,force,front_fy,1.918421003210824e-05 +illusion_0.75L,sr,62,12.4,force,upper_fx,0.0024010823108255863 +illusion_0.75L,sr,62,12.4,force,upper_fy,0.0004810804966837168 +illusion_0.75L,sr,62,12.4,force,lower_fx,0.002349147107452154 +illusion_0.75L,sr,62,12.4,force,lower_fy,-0.00021764101984445006 +illusion_0.75L,sr,63,12.6,force,front_fx,0.001963928109034896 +illusion_0.75L,sr,63,12.6,force,front_fy,2.676612166396808e-05 +illusion_0.75L,sr,63,12.6,force,upper_fx,0.00241641141474247 +illusion_0.75L,sr,63,12.6,force,upper_fy,0.0004673880757763982 +illusion_0.75L,sr,63,12.6,force,lower_fx,0.002344653708860278 +illusion_0.75L,sr,63,12.6,force,lower_fy,-0.00020305918587837368 +illusion_0.75L,sr,64,12.8,force,front_fx,0.0019659302197396755 +illusion_0.75L,sr,64,12.8,force,front_fy,3.322857082821429e-05 +illusion_0.75L,sr,64,12.8,force,upper_fx,0.0024303551763296127 +illusion_0.75L,sr,64,12.8,force,upper_fy,0.00045168522046878934 +illusion_0.75L,sr,64,12.8,force,lower_fx,0.0023409321438521147 +illusion_0.75L,sr,64,12.8,force,lower_fy,-0.00019313202938064933 +illusion_0.75L,sr,65,13.0,force,front_fx,0.0019682664424180984 +illusion_0.75L,sr,65,13.0,force,front_fy,3.8545316783711314e-05 +illusion_0.75L,sr,65,13.0,force,upper_fx,0.002443915233016014 +illusion_0.75L,sr,65,13.0,force,upper_fy,0.0004350404778961092 +illusion_0.75L,sr,65,13.0,force,lower_fx,0.0023392033763229847 +illusion_0.75L,sr,65,13.0,force,lower_fy,-0.00018882067524828017 +illusion_0.75L,sr,66,13.2,force,front_fx,0.0019678783137351274 +illusion_0.75L,sr,66,13.2,force,front_fy,4.3246462155366316e-05 +illusion_0.75L,sr,66,13.2,force,upper_fx,0.0024532685056328773 +illusion_0.75L,sr,66,13.2,force,upper_fy,0.0004190901527181268 +illusion_0.75L,sr,66,13.2,force,lower_fx,0.002335989847779274 +illusion_0.75L,sr,66,13.2,force,lower_fy,-0.00019094494928140193 +illusion_0.75L,sr,67,13.4,force,front_fx,0.001964201219379902 +illusion_0.75L,sr,67,13.4,force,front_fy,4.702695514424704e-05 +illusion_0.75L,sr,67,13.4,force,upper_fx,0.0024574685376137495 +illusion_0.75L,sr,67,13.4,force,upper_fy,0.0004048289265483618 +illusion_0.75L,sr,67,13.4,force,lower_fx,0.0023307192604988813 +illusion_0.75L,sr,67,13.4,force,lower_fy,-0.00019958354823756963 +illusion_0.75L,sr,68,13.6,force,front_fx,0.0019609215669333935 +illusion_0.75L,sr,68,13.6,force,front_fy,4.927135887555778e-05 +illusion_0.75L,sr,68,13.6,force,upper_fx,0.0024602070916444063 +illusion_0.75L,sr,68,13.6,force,upper_fy,0.0003921978932339698 +illusion_0.75L,sr,68,13.6,force,lower_fx,0.0023271969985216856 +illusion_0.75L,sr,68,13.6,force,lower_fy,-0.0002142929151887074 +illusion_0.75L,sr,69,13.8,force,front_fx,0.001959514571353793 +illusion_0.75L,sr,69,13.8,force,front_fy,5.0142567488364875e-05 +illusion_0.75L,sr,69,13.8,force,upper_fx,0.0024635065346956253 +illusion_0.75L,sr,69,13.8,force,upper_fy,0.00038130261236801744 +illusion_0.75L,sr,69,13.8,force,lower_fx,0.0023274978157132864 +illusion_0.75L,sr,69,13.8,force,lower_fy,-0.0002346630353713408 +illusion_0.75L,sr,70,14.0,force,front_fx,0.001962363952770829 +illusion_0.75L,sr,70,14.0,force,front_fy,5.044131830800325e-05 +illusion_0.75L,sr,70,14.0,force,upper_fx,0.0024696525651961565 +illusion_0.75L,sr,70,14.0,force,upper_fy,0.0003719666274264455 +illusion_0.75L,sr,70,14.0,force,lower_fx,0.0023340273182839155 +illusion_0.75L,sr,70,14.0,force,lower_fy,-0.0002593972021713853 +illusion_0.75L,sr,71,14.2,force,front_fx,0.001965177711099386 +illusion_0.75L,sr,71,14.2,force,front_fy,4.882382199866697e-05 +illusion_0.75L,sr,71,14.2,force,upper_fx,0.0024734786711633205 +illusion_0.75L,sr,71,14.2,force,upper_fy,0.0003650689614005387 +illusion_0.75L,sr,71,14.2,force,lower_fx,0.002341802464798093 +illusion_0.75L,sr,71,14.2,force,lower_fy,-0.0002876846119761467 +illusion_0.75L,sr,72,14.4,force,front_fx,0.001966722309589386 +illusion_0.75L,sr,72,14.4,force,front_fy,4.6721292164875194e-05 +illusion_0.75L,sr,72,14.4,force,upper_fx,0.002473321743309498 +illusion_0.75L,sr,72,14.4,force,upper_fy,0.0003596264577936381 +illusion_0.75L,sr,72,14.4,force,lower_fx,0.002348845824599266 +illusion_0.75L,sr,72,14.4,force,lower_fy,-0.0003183133958373219 +illusion_0.75L,sr,73,14.6,force,front_fx,0.0019650119356811047 +illusion_0.75L,sr,73,14.6,force,front_fy,4.315917249186896e-05 +illusion_0.75L,sr,73,14.6,force,upper_fx,0.0024670411366969347 +illusion_0.75L,sr,73,14.6,force,upper_fy,0.0003550955152604729 +illusion_0.75L,sr,73,14.6,force,lower_fx,0.002352874493226409 +illusion_0.75L,sr,73,14.6,force,lower_fy,-0.0003504811611492187 +illusion_0.75L,sr,74,14.8,force,front_fx,0.001962983049452305 +illusion_0.75L,sr,74,14.8,force,front_fy,3.796019882429391e-05 +illusion_0.75L,sr,74,14.8,force,upper_fx,0.002457426395267248 +illusion_0.75L,sr,74,14.8,force,upper_fy,0.00034997015609405935 +illusion_0.75L,sr,74,14.8,force,lower_fx,0.0023562319111078978 +illusion_0.75L,sr,74,14.8,force,lower_fy,-0.0003812093345914036 +illusion_0.75L,sr,75,15.0,force,front_fx,0.001960671041160822 +illusion_0.75L,sr,75,15.0,force,front_fy,3.2453808671562e-05 +illusion_0.75L,sr,75,15.0,force,upper_fx,0.0024461164139211178 +illusion_0.75L,sr,75,15.0,force,upper_fy,0.0003439776482991874 +illusion_0.75L,sr,75,15.0,force,lower_fx,0.0023601579014211893 +illusion_0.75L,sr,75,15.0,force,lower_fy,-0.0004090217989869416 +illusion_0.75L,sr,76,15.2,force,front_fx,0.001959363929927349 +illusion_0.75L,sr,76,15.2,force,front_fy,2.671800939424429e-05 +illusion_0.75L,sr,76,15.2,force,upper_fx,0.0024336730130016804 +illusion_0.75L,sr,76,15.2,force,upper_fy,0.0003358320100232959 +illusion_0.75L,sr,76,15.2,force,lower_fx,0.0023648368660360575 +illusion_0.75L,sr,76,15.2,force,lower_fy,-0.00043214778997935355 +illusion_0.75L,sr,77,15.4,force,front_fx,0.001957368804141879 +illusion_0.75L,sr,77,15.4,force,front_fy,1.95368702406995e-05 +illusion_0.75L,sr,77,15.4,force,upper_fx,0.002419705269858241 +illusion_0.75L,sr,77,15.4,force,upper_fy,0.0003257308853790164 +illusion_0.75L,sr,77,15.4,force,lower_fx,0.002369267400354147 +illusion_0.75L,sr,77,15.4,force,lower_fy,-0.00045054685324430466 +illusion_0.75L,sr,78,15.6,force,front_fx,0.0019536525942385197 +illusion_0.75L,sr,78,15.6,force,front_fy,1.1866830391227268e-05 +illusion_0.75L,sr,78,15.6,force,upper_fx,0.0024029589258134365 +illusion_0.75L,sr,78,15.6,force,upper_fy,0.0003133023565169424 +illusion_0.75L,sr,78,15.6,force,lower_fx,0.002371517475694418 +illusion_0.75L,sr,78,15.6,force,lower_fy,-0.00046320405090227723 +illusion_0.75L,sr,79,15.8,force,front_fx,0.001950832549482584 +illusion_0.75L,sr,79,15.8,force,front_fy,4.806666765944101e-06 +illusion_0.75L,sr,79,15.8,force,upper_fx,0.002387415384873748 +illusion_0.75L,sr,79,15.8,force,upper_fy,0.0002992829540744424 +illusion_0.75L,sr,79,15.8,force,lower_fx,0.0023751892149448395 +illusion_0.75L,sr,79,15.8,force,lower_fy,-0.00046975951408967376 +illusion_0.75L,sr,80,16.0,force,front_fx,0.0019514604937285185 +illusion_0.75L,sr,80,16.0,force,front_fy,-1.873513383543468e-06 +illusion_0.75L,sr,80,16.0,force,upper_fx,0.0023764728102833033 +illusion_0.75L,sr,80,16.0,force,upper_fy,0.0002840280067175627 +illusion_0.75L,sr,80,16.0,force,lower_fx,0.0023833378218114376 +illusion_0.75L,sr,80,16.0,force,lower_fy,-0.00046987796667963266 +illusion_0.75L,sr,81,16.2,force,front_fx,0.001956499880179763 +illusion_0.75L,sr,81,16.2,force,front_fy,-8.835769222059753e-06 +illusion_0.75L,sr,81,16.2,force,upper_fx,0.002371403621509671 +illusion_0.75L,sr,81,16.2,force,upper_fy,0.0002683715138118714 +illusion_0.75L,sr,81,16.2,force,lower_fx,0.0023967870511114597 +illusion_0.75L,sr,81,16.2,force,lower_fy,-0.00046457917778752744 +illusion_0.75L,sr,82,16.4,force,front_fx,0.0019634151831269264 +illusion_0.75L,sr,82,16.4,force,front_fy,-1.580825846758671e-05 +illusion_0.75L,sr,82,16.4,force,upper_fx,0.0023703891783952713 +illusion_0.75L,sr,82,16.4,force,upper_fy,0.0002536772517487407 +illusion_0.75L,sr,82,16.4,force,lower_fx,0.002413240261375904 +illusion_0.75L,sr,82,16.4,force,lower_fy,-0.00045548565685749054 +illusion_0.75L,sr,83,16.6,force,front_fx,0.001968969823792577 +illusion_0.75L,sr,83,16.6,force,front_fy,-2.1789262973470613e-05 +illusion_0.75L,sr,83,16.6,force,upper_fx,0.002369253197684884 +illusion_0.75L,sr,83,16.6,force,upper_fy,0.0002417121868347749 +illusion_0.75L,sr,83,16.6,force,lower_fx,0.0024282517842948437 +illusion_0.75L,sr,83,16.6,force,lower_fy,-0.00044381272164173424 +illusion_0.75L,sr,84,16.8,force,front_fx,0.001971410820260644 +illusion_0.75L,sr,84,16.8,force,front_fy,-2.6634323148755357e-05 +illusion_0.75L,sr,84,16.8,force,upper_fx,0.002365939551964402 +illusion_0.75L,sr,84,16.8,force,upper_fy,0.00023400831560138613 +illusion_0.75L,sr,84,16.8,force,lower_fx,0.0024395848158746958 +illusion_0.75L,sr,84,16.8,force,lower_fy,-0.0004307704803068191 +illusion_0.75L,sr,85,17.0,force,front_fx,0.0019725312013179064 +illusion_0.75L,sr,85,17.0,force,front_fy,-3.1346808100352064e-05 +illusion_0.75L,sr,85,17.0,force,upper_fx,0.0023622328881174326 +illusion_0.75L,sr,85,17.0,force,upper_fy,0.0002306872484041378 +illusion_0.75L,sr,85,17.0,force,lower_fx,0.00244874507188797 +illusion_0.75L,sr,85,17.0,force,lower_fy,-0.00041707203490659595 +illusion_0.75L,sr,86,17.2,force,front_fx,0.0019720818381756544 +illusion_0.75L,sr,86,17.2,force,front_fy,-3.547687083482742e-05 +illusion_0.75L,sr,86,17.2,force,upper_fx,0.0023584149312227964 +illusion_0.75L,sr,86,17.2,force,upper_fy,0.00023209302162285894 +illusion_0.75L,sr,86,17.2,force,lower_fx,0.0024556464049965143 +illusion_0.75L,sr,86,17.2,force,lower_fy,-0.00040406984044238925 +illusion_0.75L,sr,87,17.4,force,front_fx,0.001971972407773137 +illusion_0.75L,sr,87,17.4,force,front_fy,-3.887254206347279e-05 +illusion_0.75L,sr,87,17.4,force,upper_fx,0.0023559723049402237 +illusion_0.75L,sr,87,17.4,force,upper_fy,0.00023824510572012514 +illusion_0.75L,sr,87,17.4,force,lower_fx,0.0024616271257400513 +illusion_0.75L,sr,87,17.4,force,lower_fy,-0.0003921225434169173 +illusion_0.75L,sr,88,17.6,force,front_fx,0.0019699367694556713 +illusion_0.75L,sr,88,17.6,force,front_fy,-4.084779357071966e-05 +illusion_0.75L,sr,88,17.6,force,upper_fx,0.0023523918353021145 +illusion_0.75L,sr,88,17.6,force,upper_fy,0.00024964637123048306 +illusion_0.75L,sr,88,17.6,force,lower_fx,0.0024639989715069532 +illusion_0.75L,sr,88,17.6,force,lower_fy,-0.00038178067188709974 +illusion_0.75L,sr,89,17.8,force,front_fx,0.0019651688635349274 +illusion_0.75L,sr,89,17.8,force,front_fy,-4.192320193396881e-05 +illusion_0.75L,sr,89,17.8,force,upper_fx,0.002346348948776722 +illusion_0.75L,sr,89,17.8,force,upper_fy,0.0002657382283359766 +illusion_0.75L,sr,89,17.8,force,lower_fx,0.002461361698806286 +illusion_0.75L,sr,89,17.8,force,lower_fy,-0.00037325744051486254 +illusion_0.75L,sr,90,18.0,force,front_fx,0.001959519926458597 +illusion_0.75L,sr,90,18.0,force,front_fy,-4.257688851794228e-05 +illusion_0.75L,sr,90,18.0,force,upper_fx,0.002340259263291955 +illusion_0.75L,sr,90,18.0,force,upper_fy,0.00028536777244880795 +illusion_0.75L,sr,90,18.0,force,lower_fx,0.0024559786543250084 +illusion_0.75L,sr,90,18.0,force,lower_fy,-0.0003666776174213737 +illusion_0.75L,sr,91,18.2,force,front_fx,0.0019565036054700613 +illusion_0.75L,sr,91,18.2,force,front_fy,-4.219039692543447e-05 +illusion_0.75L,sr,91,18.2,force,upper_fx,0.002338050864636898 +illusion_0.75L,sr,91,18.2,force,upper_fy,0.00030688391416333616 +illusion_0.75L,sr,91,18.2,force,lower_fx,0.002451722975820303 +illusion_0.75L,sr,91,18.2,force,lower_fy,-0.00036113892565481365 +illusion_0.75L,sr,92,18.4,force,front_fx,0.0019572670571506023 +illusion_0.75L,sr,92,18.4,force,front_fy,-4.0567083487985656e-05 +illusion_0.75L,sr,92,18.4,force,upper_fx,0.0023409253917634487 +illusion_0.75L,sr,92,18.4,force,upper_fy,0.0003297650837339461 +illusion_0.75L,sr,92,18.4,force,lower_fx,0.0024499609135091305 +illusion_0.75L,sr,92,18.4,force,lower_fy,-0.00035603801370598376 +illusion_0.75L,sr,93,18.6,force,front_fx,0.0019598091021180153 +illusion_0.75L,sr,93,18.6,force,front_fy,-3.7634108593920246e-05 +illusion_0.75L,sr,93,18.6,force,upper_fx,0.002346951747313142 +illusion_0.75L,sr,93,18.6,force,upper_fy,0.0003529400273691863 +illusion_0.75L,sr,93,18.6,force,lower_fx,0.0024488838389515877 +illusion_0.75L,sr,93,18.6,force,lower_fy,-0.00035083331749774516 +illusion_0.75L,sr,94,18.8,force,front_fx,0.0019618000369518995 +illusion_0.75L,sr,94,18.8,force,front_fy,-3.4420430893078446e-05 +illusion_0.75L,sr,94,18.8,force,upper_fx,0.00235293828882277 +illusion_0.75L,sr,94,18.8,force,upper_fy,0.0003756839723791927 +illusion_0.75L,sr,94,18.8,force,lower_fx,0.0024455662351101637 +illusion_0.75L,sr,94,18.8,force,lower_fy,-0.0003459271101746708 +illusion_0.75L,sr,95,19.0,force,front_fx,0.0019612156320363283 +illusion_0.75L,sr,95,19.0,force,front_fy,-3.0625938961748034e-05 +illusion_0.75L,sr,95,19.0,force,upper_fx,0.0023562107235193253 +illusion_0.75L,sr,95,19.0,force,upper_fy,0.0003966318035963923 +illusion_0.75L,sr,95,19.0,force,lower_fx,0.002437539864331484 +illusion_0.75L,sr,95,19.0,force,lower_fy,-0.0003406595205888152 +illusion_0.75L,sr,96,19.2,force,front_fx,0.0019599192310124636 +illusion_0.75L,sr,96,19.2,force,front_fy,-2.5944169465219602e-05 +illusion_0.75L,sr,96,19.2,force,upper_fx,0.0023591674398630857 +illusion_0.75L,sr,96,19.2,force,upper_fy,0.0004149735614191741 +illusion_0.75L,sr,96,19.2,force,lower_fx,0.002427606610581279 +illusion_0.75L,sr,96,19.2,force,lower_fy,-0.0003344314463902265 +illusion_0.75L,sr,97,19.4,force,front_fx,0.0019580309744924307 +illusion_0.75L,sr,97,19.4,force,front_fy,-2.03561157832155e-05 +illusion_0.75L,sr,97,19.4,force,upper_fx,0.002361769787967205 +illusion_0.75L,sr,97,19.4,force,upper_fy,0.0004296522820368409 +illusion_0.75L,sr,97,19.4,force,lower_fx,0.0024161571636795998 +illusion_0.75L,sr,97,19.4,force,lower_fy,-0.0003264547267463058 +illusion_0.75L,sr,98,19.6,force,front_fx,0.0019573646131902933 +illusion_0.75L,sr,98,19.6,force,front_fy,-1.4830132386123296e-05 +illusion_0.75L,sr,98,19.6,force,upper_fx,0.0023656415287405252 +illusion_0.75L,sr,98,19.6,force,upper_fy,0.0004400657780934125 +illusion_0.75L,sr,98,19.6,force,lower_fx,0.0024052364751696587 +illusion_0.75L,sr,98,19.6,force,lower_fy,-0.00031684129498898983 +illusion_0.75L,sr,99,19.8,force,front_fx,0.0019563762471079826 +illusion_0.75L,sr,99,19.8,force,front_fy,-9.31964041228639e-06 +illusion_0.75L,sr,99,19.8,force,upper_fx,0.0023695111740380526 +illusion_0.75L,sr,99,19.8,force,upper_fy,0.0004458931798581034 +illusion_0.75L,sr,99,19.8,force,lower_fx,0.0023938703816384077 +illusion_0.75L,sr,99,19.8,force,lower_fy,-0.0003060684248339385 +illusion_0.75L,sr,100,20.0,force,front_fx,0.001953104161657393 +illusion_0.75L,sr,100,20.0,force,front_fy,-3.569175532902591e-06 +illusion_0.75L,sr,100,20.0,force,upper_fx,0.002370595233514905 +illusion_0.75L,sr,100,20.0,force,upper_fy,0.0004476612084545195 +illusion_0.75L,sr,100,20.0,force,lower_fx,0.002379701239988208 +illusion_0.75L,sr,100,20.0,force,lower_fy,-0.00029483335674740374 +illusion_0.75L,sr,101,20.2,force,front_fx,0.0019501085625961423 +illusion_0.75L,sr,101,20.2,force,front_fy,2.1653254407283384e-06 +illusion_0.75L,sr,101,20.2,force,upper_fx,0.0023725852370262146 +illusion_0.75L,sr,101,20.2,force,upper_fy,0.0004455050511751324 +illusion_0.75L,sr,101,20.2,force,lower_fx,0.0023667586501687765 +illusion_0.75L,sr,101,20.2,force,lower_fy,-0.0002832860918715596 +illusion_0.75L,sr,102,20.4,force,front_fx,0.0019494466250762343 +illusion_0.75L,sr,102,20.4,force,front_fy,7.554270723630907e-06 +illusion_0.75L,sr,102,20.4,force,upper_fx,0.002377275610342622 +illusion_0.75L,sr,102,20.4,force,upper_fy,0.000439709605416283 +illusion_0.75L,sr,102,20.4,force,lower_fx,0.0023571159690618515 +illusion_0.75L,sr,102,20.4,force,lower_fy,-0.0002719235490076244 +illusion_0.75L,sr,103,20.6,force,front_fx,0.0019526768010109663 +illusion_0.75L,sr,103,20.6,force,front_fy,1.248305579792941e-05 +illusion_0.75L,sr,103,20.6,force,upper_fx,0.00238665915094316 +illusion_0.75L,sr,103,20.6,force,upper_fy,0.00043112735147587955 +illusion_0.75L,sr,103,20.6,force,lower_fx,0.0023530321195721626 +illusion_0.75L,sr,103,20.6,force,lower_fy,-0.0002617795253172517 +illusion_0.75L,sr,104,20.8,force,front_fx,0.001958094770088792 +illusion_0.75L,sr,104,20.8,force,front_fy,1.6930647689150646e-05 +illusion_0.75L,sr,104,20.8,force,upper_fx,0.0023992108181118965 +illusion_0.75L,sr,104,20.8,force,upper_fy,0.0004207323945593089 +illusion_0.75L,sr,104,20.8,force,lower_fx,0.00235324096865952 +illusion_0.75L,sr,104,20.8,force,lower_fy,-0.0002538886619731784 +illusion_0.75L,sr,105,21.0,force,front_fx,0.001962748821824789 +illusion_0.75L,sr,105,21.0,force,front_fy,2.089160079776775e-05 +illusion_0.75L,sr,105,21.0,force,upper_fx,0.002410729182884097 +illusion_0.75L,sr,105,21.0,force,upper_fy,0.00041014686576090753 +illusion_0.75L,sr,105,21.0,force,lower_fx,0.0023537450470030308 +illusion_0.75L,sr,105,21.0,force,lower_fy,-0.000249572069151327 +illusion_0.75L,sr,106,21.2,force,front_fx,0.0019645309075713158 +illusion_0.75L,sr,106,21.2,force,front_fy,2.4493307137163356e-05 +illusion_0.75L,sr,106,21.2,force,upper_fx,0.002418601419776678 +illusion_0.75L,sr,106,21.2,force,upper_fy,0.00040028695366345346 +illusion_0.75L,sr,106,21.2,force,lower_fx,0.0023521347902715206 +illusion_0.75L,sr,106,21.2,force,lower_fy,-0.0002492930507287383 +illusion_0.75L,sr,107,21.4,force,front_fx,0.0019641907420009375 +illusion_0.75L,sr,107,21.4,force,front_fy,2.744600897131022e-05 +illusion_0.75L,sr,107,21.4,force,upper_fx,0.0024232433643192053 +illusion_0.75L,sr,107,21.4,force,upper_fy,0.00039169794763438404 +illusion_0.75L,sr,107,21.4,force,lower_fx,0.0023490909952670336 +illusion_0.75L,sr,107,21.4,force,lower_fy,-0.00025323423324152827 +illusion_0.75L,sr,108,21.6,force,front_fx,0.0019626838620752096 +illusion_0.75L,sr,108,21.6,force,front_fy,2.9578786779893562e-05 +illusion_0.75L,sr,108,21.6,force,upper_fx,0.0024256203323602676 +illusion_0.75L,sr,108,21.6,force,upper_fy,0.0003842699225060642 +illusion_0.75L,sr,108,21.6,force,lower_fx,0.0023457310162484646 +illusion_0.75L,sr,108,21.6,force,lower_fy,-0.0002611503005027771 +illusion_0.75L,sr,109,21.8,force,front_fx,0.001961248926818371 +illusion_0.75L,sr,109,21.8,force,front_fy,3.089802703470923e-05 +illusion_0.75L,sr,109,21.8,force,upper_fx,0.0024264806415885687 +illusion_0.75L,sr,109,21.8,force,upper_fy,0.00037809088826179504 +illusion_0.75L,sr,109,21.8,force,lower_fx,0.0023429514840245247 +illusion_0.75L,sr,109,21.8,force,lower_fy,-0.00027272303123027086 +illusion_0.75L,sr,110,22.0,force,front_fx,0.0019589366856962442 +illusion_0.75L,sr,110,22.0,force,front_fy,3.149855547235347e-05 +illusion_0.75L,sr,110,22.0,force,upper_fx,0.0024251386057585478 +illusion_0.75L,sr,110,22.0,force,upper_fy,0.0003731168108060956 +illusion_0.75L,sr,110,22.0,force,lower_fx,0.002340073697268963 +illusion_0.75L,sr,110,22.0,force,lower_fy,-0.0002872685145121068 +illusion_0.75L,sr,111,22.2,force,front_fx,0.0019538728520274162 +illusion_0.75L,sr,111,22.2,force,front_fy,3.1186154956230894e-05 +illusion_0.75L,sr,111,22.2,force,upper_fx,0.0024185748770833015 +illusion_0.75L,sr,111,22.2,force,upper_fy,0.0003695088380482048 +illusion_0.75L,sr,111,22.2,force,lower_fx,0.0023341502528637648 +illusion_0.75L,sr,111,22.2,force,lower_fy,-0.0003044399491045624 +illusion_0.75L,sr,112,22.4,force,front_fx,0.0019482173956930637 +illusion_0.75L,sr,112,22.4,force,front_fy,3.0642349884146824e-05 +illusion_0.75L,sr,112,22.4,force,upper_fx,0.0024099729489535093 +illusion_0.75L,sr,112,22.4,force,upper_fy,0.00036615095450542867 +illusion_0.75L,sr,112,22.4,force,lower_fx,0.0023283131886273623 +illusion_0.75L,sr,112,22.4,force,lower_fy,-0.0003227835113648325 +illusion_0.75L,sr,113,22.6,force,front_fx,0.0019446336664259434 +illusion_0.75L,sr,113,22.6,force,front_fy,2.8843420295743272e-05 +illusion_0.75L,sr,113,22.6,force,upper_fx,0.0024021961726248264 +illusion_0.75L,sr,113,22.6,force,upper_fy,0.00036260622437112033 +illusion_0.75L,sr,113,22.6,force,lower_fx,0.002325408859178424 +illusion_0.75L,sr,113,22.6,force,lower_fy,-0.00034130431595258415 +illusion_0.75L,sr,114,22.8,force,front_fx,0.0019445189973339438 +illusion_0.75L,sr,114,22.8,force,front_fy,2.625197339511942e-05 +illusion_0.75L,sr,114,22.8,force,upper_fx,0.0023970461916178465 +illusion_0.75L,sr,114,22.8,force,upper_fy,0.00035812571877613664 +illusion_0.75L,sr,114,22.8,force,lower_fx,0.0023269676603376865 +illusion_0.75L,sr,114,22.8,force,lower_fy,-0.0003587768296711147 +illusion_0.75L,sr,115,23.0,force,front_fx,0.0019475673325359821 +illusion_0.75L,sr,115,23.0,force,front_fy,2.3144275473896414e-05 +illusion_0.75L,sr,115,23.0,force,upper_fx,0.0023950436152517796 +illusion_0.75L,sr,115,23.0,force,upper_fy,0.0003526473883539438 +illusion_0.75L,sr,115,23.0,force,lower_fx,0.0023333709686994553 +illusion_0.75L,sr,115,23.0,force,lower_fy,-0.0003747495647985488 +illusion_0.75L,sr,116,23.2,force,front_fx,0.0019504822557792068 +illusion_0.75L,sr,116,23.2,force,front_fy,1.9639777747215703e-05 +illusion_0.75L,sr,116,23.2,force,upper_fx,0.0023918640799820423 +illusion_0.75L,sr,116,23.2,force,upper_fy,0.0003463594475761056 +illusion_0.75L,sr,116,23.2,force,lower_fx,0.002340061357244849 +illusion_0.75L,sr,116,23.2,force,lower_fy,-0.00038891847361810505 +illusion_0.75L,sr,117,23.4,force,front_fx,0.001951234764419496 +illusion_0.75L,sr,117,23.4,force,front_fy,1.550998058519326e-05 +illusion_0.75L,sr,117,23.4,force,upper_fx,0.00238542421720922 +illusion_0.75L,sr,117,23.4,force,upper_fy,0.0003394134109839797 +illusion_0.75L,sr,117,23.4,force,lower_fx,0.002344643697142601 +illusion_0.75L,sr,117,23.4,force,lower_fy,-0.0004011288983747363 +illusion_0.75L,sr,118,23.6,force,front_fx,0.001950814388692379 +illusion_0.75L,sr,118,23.6,force,front_fy,1.0868491699511651e-05 +illusion_0.75L,sr,118,23.6,force,upper_fx,0.002377329394221306 +illusion_0.75L,sr,118,23.6,force,upper_fy,0.0003314900095574558 +illusion_0.75L,sr,118,23.6,force,lower_fx,0.0023483778350055218 +illusion_0.75L,sr,118,23.6,force,lower_fy,-0.00041076846537180245 +illusion_0.75L,sr,119,23.8,force,front_fx,0.0019495397573336959 +illusion_0.75L,sr,119,23.8,force,front_fy,6.138325716165127e-06 +illusion_0.75L,sr,119,23.8,force,upper_fx,0.0023678496945649385 +illusion_0.75L,sr,119,23.8,force,upper_fy,0.00032268979703076184 +illusion_0.75L,sr,119,23.8,force,lower_fx,0.002351240022107959 +illusion_0.75L,sr,119,23.8,force,lower_fy,-0.0004173284105490893 +illusion_0.75L,sr,120,24.0,force,front_fx,0.0019492588471621275 +illusion_0.75L,sr,120,24.0,force,front_fy,1.5940712501105736e-06 +illusion_0.75L,sr,120,24.0,force,upper_fx,0.0023594426456838846 +illusion_0.75L,sr,120,24.0,force,upper_fy,0.0003133077407255769 +illusion_0.75L,sr,120,24.0,force,lower_fx,0.0023554284125566483 +illusion_0.75L,sr,120,24.0,force,lower_fy,-0.00042058355757035315 +illusion_0.75L,sr,121,24.2,force,front_fx,0.001948551507666707 +illusion_0.75L,sr,121,24.2,force,front_fy,-3.076790108025307e-06 +illusion_0.75L,sr,121,24.2,force,upper_fx,0.0023506905417889357 +illusion_0.75L,sr,121,24.2,force,upper_fy,0.0003036949783563614 +illusion_0.75L,sr,121,24.2,force,lower_fx,0.002359248697757721 +illusion_0.75L,sr,121,24.2,force,lower_fy,-0.0004208294558338821 +illusion_0.75L,sr,122,24.4,force,front_fx,0.0019460439216345549 +illusion_0.75L,sr,122,24.4,force,front_fy,-7.952638952701818e-06 +illusion_0.75L,sr,122,24.4,force,upper_fx,0.0023398688063025475 +illusion_0.75L,sr,122,24.4,force,upper_fy,0.00029458265635184944 +illusion_0.75L,sr,122,24.4,force,lower_fx,0.0023606244940310717 +illusion_0.75L,sr,122,24.4,force,lower_fy,-0.00041894891182892025 +illusion_0.75L,sr,123,24.6,force,front_fx,0.0019427002407610416 +illusion_0.75L,sr,123,24.6,force,front_fy,-1.2477917152864393e-05 +illusion_0.75L,sr,123,24.6,force,upper_fx,0.0023291436955332756 +illusion_0.75L,sr,123,24.6,force,upper_fy,0.0002862851833924651 +illusion_0.75L,sr,123,24.6,force,lower_fx,0.0023614568635821342 +illusion_0.75L,sr,123,24.6,force,lower_fy,-0.0004149003652855754 +illusion_0.75L,sr,124,24.8,force,front_fx,0.0019409821834415197 +illusion_0.75L,sr,124,24.8,force,front_fy,-1.6278252587653697e-05 +illusion_0.75L,sr,124,24.8,force,upper_fx,0.002320940373465419 +illusion_0.75L,sr,124,24.8,force,upper_fy,0.00027946842601522803 +illusion_0.75L,sr,124,24.8,force,lower_fx,0.0023640128783881664 +illusion_0.75L,sr,124,24.8,force,lower_fy,-0.00040898993029259145 +illusion_0.75L,sr,125,25.0,force,front_fx,0.0019425529753789306 +illusion_0.75L,sr,125,25.0,force,front_fy,-1.9772893210756592e-05 +illusion_0.75L,sr,125,25.0,force,upper_fx,0.002317412756383419 +illusion_0.75L,sr,125,25.0,force,upper_fy,0.0002743996155913919 +illusion_0.75L,sr,125,25.0,force,lower_fx,0.0023702732287347317 +illusion_0.75L,sr,125,25.0,force,lower_fy,-0.0004017135070171207 +illusion_0.75L,sr,126,25.2,force,front_fx,0.0019468996906653047 +illusion_0.75L,sr,126,25.2,force,front_fy,-2.320406201761216e-05 +illusion_0.75L,sr,126,25.2,force,upper_fx,0.0023185235913842916 +illusion_0.75L,sr,126,25.2,force,upper_fy,0.0002715971786528826 +illusion_0.75L,sr,126,25.2,force,lower_fx,0.0023799240589141846 +illusion_0.75L,sr,126,25.2,force,lower_fy,-0.00039409156306646764 +illusion_0.75L,sr,127,25.4,force,front_fx,0.0019510160200297832 +illusion_0.75L,sr,127,25.4,force,front_fy,-2.610018964332994e-05 +illusion_0.75L,sr,127,25.4,force,upper_fx,0.0023205929901450872 +illusion_0.75L,sr,127,25.4,force,upper_fy,0.0002719857729971409 +illusion_0.75L,sr,127,25.4,force,lower_fx,0.0023890421725809574 +illusion_0.75L,sr,127,25.4,force,lower_fy,-0.00038712163222953677 +illusion_0.75L,sr,128,25.6,force,front_fx,0.0019524279050529003 +illusion_0.75L,sr,128,25.6,force,front_fy,-2.7891266654478386e-05 +illusion_0.75L,sr,128,25.6,force,upper_fx,0.0023204106837511063 +illusion_0.75L,sr,128,25.6,force,upper_fy,0.00027624156791716814 +illusion_0.75L,sr,128,25.6,force,lower_fx,0.002394340466707945 +illusion_0.75L,sr,128,25.6,force,lower_fy,-0.0003812299983110279 +illusion_0.75L,sr,129,25.8,force,front_fx,0.0019521145150065422 +illusion_0.75L,sr,129,25.8,force,front_fy,-2.903861241065897e-05 +illusion_0.75L,sr,129,25.8,force,upper_fx,0.0023189643397927284 +illusion_0.75L,sr,129,25.8,force,upper_fy,0.0002840006782207638 +illusion_0.75L,sr,129,25.8,force,lower_fx,0.0023967621382325888 +illusion_0.75L,sr,129,25.8,force,lower_fy,-0.00037635263288393617 +illusion_0.75L,sr,130,26.0,force,front_fx,0.0019500857451930642 +illusion_0.75L,sr,130,26.0,force,front_fy,-2.9990887924213894e-05 +illusion_0.75L,sr,130,26.0,force,upper_fx,0.002316253026947379 +illusion_0.75L,sr,130,26.0,force,upper_fy,0.00029463876853697 +illusion_0.75L,sr,130,26.0,force,lower_fx,0.0023961213883012533 +illusion_0.75L,sr,130,26.0,force,lower_fy,-0.00037266925210133195 +illusion_0.75L,sr,131,26.2,force,front_fx,0.0019484070362523198 +illusion_0.75L,sr,131,26.2,force,front_fy,-3.030675907211844e-05 +illusion_0.75L,sr,131,26.2,force,upper_fx,0.0023143605794757605 +illusion_0.75L,sr,131,26.2,force,upper_fy,0.0003072308609262109 +illusion_0.75L,sr,131,26.2,force,lower_fx,0.002394396346062422 +illusion_0.75L,sr,131,26.2,force,lower_fy,-0.0003697346255648881 +illusion_0.75L,sr,132,26.4,force,front_fx,0.0019463784992694855 +illusion_0.75L,sr,132,26.4,force,front_fy,-2.970862260553986e-05 +illusion_0.75L,sr,132,26.4,force,upper_fx,0.002312708180397749 +illusion_0.75L,sr,132,26.4,force,upper_fy,0.00032147509045898914 +illusion_0.75L,sr,132,26.4,force,lower_fx,0.0023910747841000557 +illusion_0.75L,sr,132,26.4,force,lower_fy,-0.00036714004818350077 +illusion_0.75L,sr,133,26.6,force,front_fx,0.0019422386540099978 +illusion_0.75L,sr,133,26.6,force,front_fy,-2.8186441340949386e-05 +illusion_0.75L,sr,133,26.6,force,upper_fx,0.002308489056304097 +illusion_0.75L,sr,133,26.6,force,upper_fy,0.0003368178440723568 +illusion_0.75L,sr,133,26.6,force,lower_fx,0.0023834421299397945 +illusion_0.75L,sr,133,26.6,force,lower_fy,-0.00036457483656704426 +illusion_0.75L,sr,134,26.8,force,front_fx,0.0019371607340872288 +illusion_0.75L,sr,134,26.8,force,front_fy,-2.6281471946276724e-05 +illusion_0.75L,sr,134,26.8,force,upper_fx,0.002303995890542865 +illusion_0.75L,sr,134,26.8,force,upper_fy,0.00035215888055972755 +illusion_0.75L,sr,134,26.8,force,lower_fx,0.002373885130509734 +illusion_0.75L,sr,134,26.8,force,lower_fy,-0.0003616293251980096 +illusion_0.75L,sr,135,27.0,force,front_fx,0.0019334341632202268 +illusion_0.75L,sr,135,27.0,force,front_fy,-2.406575731583871e-05 +illusion_0.75L,sr,135,27.0,force,upper_fx,0.0023014377802610397 +illusion_0.75L,sr,135,27.0,force,upper_fy,0.0003662550006993115 +illusion_0.75L,sr,135,27.0,force,lower_fx,0.002364699263125658 +illusion_0.75L,sr,135,27.0,force,lower_fy,-0.000357750803232193 +illusion_0.75L,sr,136,27.2,force,front_fx,0.0019330872455611825 +illusion_0.75L,sr,136,27.2,force,front_fy,-2.125914761563763e-05 +illusion_0.75L,sr,136,27.2,force,upper_fx,0.0023032051976770163 +illusion_0.75L,sr,136,27.2,force,upper_fy,0.00037853975663892925 +illusion_0.75L,sr,136,27.2,force,lower_fx,0.0023584405425935984 +illusion_0.75L,sr,136,27.2,force,lower_fy,-0.00035253100213594735 +illusion_0.75L,sr,137,27.4,force,front_fx,0.0019363737665116787 +illusion_0.75L,sr,137,27.4,force,front_fy,-1.747956412145868e-05 +illusion_0.75L,sr,137,27.4,force,upper_fx,0.0023101072292774916 +illusion_0.75L,sr,137,27.4,force,upper_fy,0.00038883552770130336 +illusion_0.75L,sr,137,27.4,force,lower_fx,0.002356212353333831 +illusion_0.75L,sr,137,27.4,force,lower_fy,-0.0003456058620940894 +illusion_0.75L,sr,138,27.6,force,front_fx,0.0019398134900256991 +illusion_0.75L,sr,138,27.6,force,front_fy,-1.3434259017230943e-05 +illusion_0.75L,sr,138,27.6,force,upper_fx,0.002317724283784628 +illusion_0.75L,sr,138,27.6,force,upper_fy,0.00039736737380735576 +illusion_0.75L,sr,138,27.6,force,lower_fx,0.0023538535460829735 +illusion_0.75L,sr,138,27.6,force,lower_fy,-0.00033772026654332876 +illusion_0.75L,sr,139,27.8,force,front_fx,0.001941859838552773 +illusion_0.75L,sr,139,27.8,force,front_fy,-9.599454642739147e-06 +illusion_0.75L,sr,139,27.8,force,upper_fx,0.0023240370210260153 +illusion_0.75L,sr,139,27.8,force,upper_fy,0.00040386998443864286 +illusion_0.75L,sr,139,27.8,force,lower_fx,0.002349546179175377 +illusion_0.75L,sr,139,27.8,force,lower_fy,-0.00032949031447060406 +illusion_0.75L,sr,140,28.0,force,front_fx,0.0019421849865466356 +illusion_0.75L,sr,140,28.0,force,front_fy,-5.551584763452411e-06 +illusion_0.75L,sr,140,28.0,force,upper_fx,0.002328709000721574 +illusion_0.75L,sr,140,28.0,force,upper_fy,0.0004082714731339365 +illusion_0.75L,sr,140,28.0,force,lower_fx,0.002343188039958477 +illusion_0.75L,sr,140,28.0,force,lower_fy,-0.00032105983700603247 +illusion_0.75L,sr,141,28.2,force,front_fx,0.0019413306144997478 +illusion_0.75L,sr,141,28.2,force,front_fy,-9.528116606816184e-07 +illusion_0.75L,sr,141,28.2,force,upper_fx,0.0023322629276663065 +illusion_0.75L,sr,141,28.2,force,upper_fy,0.0004107345303054899 +illusion_0.75L,sr,141,28.2,force,lower_fx,0.0023356389719992876 +illusion_0.75L,sr,141,28.2,force,lower_fy,-0.00031241762917488813 +illusion_0.75L,sr,142,28.4,force,front_fx,0.0019411006942391396 +illusion_0.75L,sr,142,28.4,force,front_fy,3.55806378138368e-06 +illusion_0.75L,sr,142,28.4,force,upper_fx,0.0023364003282040358 +illusion_0.75L,sr,142,28.4,force,upper_fy,0.00041113398037850857 +illusion_0.75L,sr,142,28.4,force,lower_fx,0.002328909933567047 +illusion_0.75L,sr,142,28.4,force,lower_fy,-0.0003036971320398152 +illusion_0.75L,sr,143,28.6,force,front_fx,0.00194076681509614 +illusion_0.75L,sr,143,28.6,force,front_fy,7.416670996462926e-06 +illusion_0.75L,sr,143,28.6,force,upper_fx,0.0023403428494930267 +illusion_0.75L,sr,143,28.6,force,upper_fy,0.0004095644981134683 +illusion_0.75L,sr,143,28.6,force,lower_fx,0.0023224144242703915 +illusion_0.75L,sr,143,28.6,force,lower_fy,-0.0002956727403216064 +illusion_0.75L,sr,144,28.8,force,front_fx,0.0019387792563065886 +illusion_0.75L,sr,144,28.8,force,front_fy,1.0899417247856036e-05 +illusion_0.75L,sr,144,28.8,force,upper_fx,0.0023419014178216457 +illusion_0.75L,sr,144,28.8,force,upper_fy,0.00040654640179127455 +illusion_0.75L,sr,144,28.8,force,lower_fx,0.0023141212295740843 +illusion_0.75L,sr,144,28.8,force,lower_fy,-0.0002891613985411823 +illusion_0.75L,sr,145,29.0,force,front_fx,0.0019351756200194359 +illusion_0.75L,sr,145,29.0,force,front_fy,1.4339125300466549e-05 +illusion_0.75L,sr,145,29.0,force,upper_fx,0.0023418215569108725 +illusion_0.75L,sr,145,29.0,force,upper_fy,0.00040247486322186887 +illusion_0.75L,sr,145,29.0,force,lower_fx,0.0023049793671816587 +illusion_0.75L,sr,145,29.0,force,lower_fy,-0.00028429029043763876 +illusion_0.75L,sr,146,29.2,force,front_fx,0.0019329376518726349 +illusion_0.75L,sr,146,29.2,force,front_fy,1.7591728465049528e-05 +illusion_0.75L,sr,146,29.2,force,upper_fx,0.0023428844287991524 +illusion_0.75L,sr,146,29.2,force,upper_fy,0.0003975914150942117 +illusion_0.75L,sr,146,29.2,force,lower_fx,0.0022979984059929848 +illusion_0.75L,sr,146,29.2,force,lower_fy,-0.0002809802535921335 +illusion_0.75L,sr,147,29.4,force,front_fx,0.0019331407966092229 +illusion_0.75L,sr,147,29.4,force,front_fy,2.020912324951496e-05 +illusion_0.75L,sr,147,29.4,force,upper_fx,0.0023463531397283077 +illusion_0.75L,sr,147,29.4,force,upper_fy,0.0003921710012946278 +illusion_0.75L,sr,147,29.4,force,lower_fx,0.002294605365023017 +illusion_0.75L,sr,147,29.4,force,lower_fy,-0.00027964540640823543 +illusion_0.75L,sr,148,29.6,force,front_fx,0.001936763641424477 +illusion_0.75L,sr,148,29.6,force,front_fy,2.205415876233019e-05 +illusion_0.75L,sr,148,29.6,force,upper_fx,0.002353783929720521 +illusion_0.75L,sr,148,29.6,force,upper_fy,0.00038636598037555814 +illusion_0.75L,sr,148,29.6,force,lower_fx,0.002296453807502985 +illusion_0.75L,sr,148,29.6,force,lower_fy,-0.00028052038396708667 +illusion_0.75L,sr,149,29.8,force,front_fx,0.00194039405323565 +illusion_0.75L,sr,149,29.8,force,front_fy,2.3476335627492517e-05 +illusion_0.75L,sr,149,29.8,force,upper_fx,0.002360857557505369 +illusion_0.75L,sr,149,29.8,force,upper_fy,0.0003812279610428959 +illusion_0.75L,sr,149,29.8,force,lower_fx,0.0022993539460003376 +illusion_0.75L,sr,149,29.8,force,lower_fy,-0.00028432183898985386 +illusion_0.75L,sr,150,30.0,force,front_fx,0.0019423504127189517 +illusion_0.75L,sr,150,30.0,force,front_fy,2.453910383337643e-05 +illusion_0.75L,sr,150,30.0,force,upper_fx,0.0023651213850826025 +illusion_0.75L,sr,150,30.0,force,upper_fy,0.000377026095520705 +illusion_0.75L,sr,150,30.0,force,lower_fx,0.0023009665310382843 +illusion_0.75L,sr,150,30.0,force,lower_fy,-0.0002909590839408338 +illusion_0.75L,sr,151,30.2,force,front_fx,0.0019421112956479192 +illusion_0.75L,sr,151,30.2,force,front_fy,2.5045674192369916e-05 +illusion_0.75L,sr,151,30.2,force,upper_fx,0.0023661612067371607 +illusion_0.75L,sr,151,30.2,force,upper_fy,0.0003739705425687134 +illusion_0.75L,sr,151,30.2,force,lower_fx,0.0023009374272078276 +illusion_0.75L,sr,151,30.2,force,lower_fy,-0.0003002947196364403 +illusion_0.75L,sr,152,30.4,force,front_fx,0.0019401735626161098 +illusion_0.75L,sr,152,30.4,force,front_fy,2.485842014721129e-05 +illusion_0.75L,sr,152,30.4,force,upper_fx,0.0023639865685254335 +illusion_0.75L,sr,152,30.4,force,upper_fy,0.000371431844541803 +illusion_0.75L,sr,152,30.4,force,lower_fx,0.002299320185557008 +illusion_0.75L,sr,152,30.4,force,lower_fy,-0.00031157894409261644 +illusion_0.75L,sr,153,30.6,force,front_fx,0.0019387002103030682 +illusion_0.75L,sr,153,30.6,force,front_fy,2.3772190616000444e-05 +illusion_0.75L,sr,153,30.6,force,upper_fx,0.002361077116802335 +illusion_0.75L,sr,153,30.6,force,upper_fy,0.0003689834557007998 +illusion_0.75L,sr,153,30.6,force,lower_fx,0.002298591658473015 +illusion_0.75L,sr,153,30.6,force,lower_fy,-0.0003242204838898033 +illusion_0.75L,sr,154,30.8,force,front_fx,0.0019369847141206264 +illusion_0.75L,sr,154,30.8,force,front_fy,2.2313150111585855e-05 +illusion_0.75L,sr,154,30.8,force,upper_fx,0.0023567872121930122 +illusion_0.75L,sr,154,30.8,force,upper_fy,0.0003661905648186803 +illusion_0.75L,sr,154,30.8,force,lower_fx,0.0022979595232754946 +illusion_0.75L,sr,154,30.8,force,lower_fy,-0.0003373768995516002 +illusion_0.75L,sr,155,31.0,force,front_fx,0.0019338520942255855 +illusion_0.75L,sr,155,31.0,force,front_fy,2.057060191873461e-05 +illusion_0.75L,sr,155,31.0,force,upper_fx,0.0023494285997003317 +illusion_0.75L,sr,155,31.0,force,upper_fy,0.0003631889703683555 +illusion_0.75L,sr,155,31.0,force,lower_fx,0.002295674756169319 +illusion_0.75L,sr,155,31.0,force,lower_fy,-0.00035065202973783016 +illusion_0.75L,sr,156,31.2,force,front_fx,0.0019292617216706276 +illusion_0.75L,sr,156,31.2,force,front_fy,1.805847932700999e-05 +illusion_0.75L,sr,156,31.2,force,upper_fx,0.0023397619370371103 +illusion_0.75L,sr,156,31.2,force,upper_fy,0.00035942523390986025 +illusion_0.75L,sr,156,31.2,force,lower_fx,0.0022923753131181 +illusion_0.75L,sr,156,31.2,force,lower_fy,-0.00036315841134637594 +illusion_0.75L,sr,157,31.4,force,front_fx,0.0019257840467616916 +illusion_0.75L,sr,157,31.4,force,front_fy,1.5023458217910957e-05 +illusion_0.75L,sr,157,31.4,force,upper_fx,0.002330382354557514 +illusion_0.75L,sr,157,31.4,force,upper_fy,0.0003543325001373887 +illusion_0.75L,sr,157,31.4,force,lower_fx,0.0022904551587998867 +illusion_0.75L,sr,157,31.4,force,lower_fy,-0.0003743231063708663 +illusion_0.75L,sr,158,31.6,force,front_fx,0.001925013493746519 +illusion_0.75L,sr,158,31.6,force,front_fy,1.161791351478314e-05 +illusion_0.75L,sr,158,31.6,force,upper_fx,0.0023237240966409445 +illusion_0.75L,sr,158,31.6,force,upper_fy,0.00034776650136336684 +illusion_0.75L,sr,158,31.6,force,lower_fx,0.0022921101190149784 +illusion_0.75L,sr,158,31.6,force,lower_fy,-0.000383606442483142 +illusion_0.75L,sr,159,31.8,force,front_fx,0.0019280679989606142 +illusion_0.75L,sr,159,31.8,force,front_fy,8.093486940197181e-06 +illusion_0.75L,sr,159,31.8,force,upper_fx,0.002321447478607297 +illusion_0.75L,sr,159,31.8,force,upper_fy,0.0003397917025722563 +illusion_0.75L,sr,159,31.8,force,lower_fx,0.0022987693082541227 +illusion_0.75L,sr,159,31.8,force,lower_fy,-0.00039055568049661815 +illusion_0.75L,sr,160,32.0,force,front_fx,0.0019318857230246067 +illusion_0.75L,sr,160,32.0,force,front_fy,4.489305865718052e-06 +illusion_0.75L,sr,160,32.0,force,upper_fx,0.0023202381562441587 +illusion_0.75L,sr,160,32.0,force,upper_fy,0.00033131189411506057 +illusion_0.75L,sr,160,32.0,force,lower_fx,0.0023069349117577076 +illusion_0.75L,sr,160,32.0,force,lower_fy,-0.0003957156732212752 +illusion_0.75L,sr,161,32.2,force,front_fx,0.0019346560584381223 +illusion_0.75L,sr,161,32.2,force,front_fy,6.473748612734198e-07 +illusion_0.75L,sr,161,32.2,force,upper_fx,0.0023177331313490868 +illusion_0.75L,sr,161,32.2,force,upper_fy,0.00032271657255478203 +illusion_0.75L,sr,161,32.2,force,lower_fx,0.0023140462581068277 +illusion_0.75L,sr,161,32.2,force,lower_fy,-0.0003992569399997592 +illusion_0.75L,sr,162,32.4,force,front_fx,0.001935381442308426 +illusion_0.75L,sr,162,32.4,force,front_fy,-3.2284965527651366e-06 +illusion_0.75L,sr,162,32.4,force,upper_fx,0.002313219243660569 +illusion_0.75L,sr,162,32.4,force,upper_fy,0.0003145095251966268 +illusion_0.75L,sr,162,32.4,force,lower_fx,0.002319089835509658 +illusion_0.75L,sr,162,32.4,force,lower_fy,-0.00040155951865017414 +illusion_0.75L,sr,163,32.6,force,front_fx,0.001934929983690381 +illusion_0.75L,sr,163,32.6,force,front_fy,-6.943560492800316e-06 +illusion_0.75L,sr,163,32.6,force,upper_fx,0.0023074985947459936 +illusion_0.75L,sr,163,32.6,force,upper_fy,0.0003067681100219488 +illusion_0.75L,sr,163,32.6,force,lower_fx,0.00232264818623662 +illusion_0.75L,sr,163,32.6,force,lower_fy,-0.0004023483779747039 +illusion_0.75L,sr,164,32.8,force,front_fx,0.0019344742177054286 +illusion_0.75L,sr,164,32.8,force,front_fy,-1.0317424312233925e-05 +illusion_0.75L,sr,164,32.8,force,upper_fx,0.002302125096321106 +illusion_0.75L,sr,164,32.8,force,upper_fy,0.0002999602584168315 +illusion_0.75L,sr,164,32.8,force,lower_fx,0.002326092217117548 +illusion_0.75L,sr,164,32.8,force,lower_fy,-0.0004017198516521603 +illusion_0.75L,sr,165,33.0,force,front_fx,0.0019342404557392001 +illusion_0.75L,sr,165,33.0,force,front_fy,-1.3287673027662095e-05 +illusion_0.75L,sr,165,33.0,force,upper_fx,0.002297372790053487 +illusion_0.75L,sr,165,33.0,force,upper_fy,0.00029430139693431556 +illusion_0.75L,sr,165,33.0,force,lower_fx,0.002329567912966013 +illusion_0.75L,sr,165,33.0,force,lower_fy,-0.0003996648301836103 +illusion_0.75L,sr,166,33.2,force,front_fx,0.0019324853783473372 +illusion_0.75L,sr,166,33.2,force,front_fy,-1.608713500900194e-05 +illusion_0.75L,sr,166,33.2,force,upper_fx,0.0022910425905138254 +illusion_0.75L,sr,166,33.2,force,upper_fy,0.0002904319844674319 +illusion_0.75L,sr,166,33.2,force,lower_fx,0.0023306969087570906 +illusion_0.75L,sr,166,33.2,force,lower_fy,-0.0003970177785959095 +illusion_0.75L,sr,167,33.4,force,front_fx,0.0019291025819256902 +illusion_0.75L,sr,167,33.4,force,front_fy,-1.8709466530708596e-05 +illusion_0.75L,sr,167,33.4,force,upper_fx,0.0022837065625935793 +illusion_0.75L,sr,167,33.4,force,upper_fy,0.0002882330445572734 +illusion_0.75L,sr,167,33.4,force,lower_fx,0.002329851035028696 +illusion_0.75L,sr,167,33.4,force,lower_fy,-0.00039387503056786954 +illusion_0.75L,sr,168,33.6,force,front_fx,0.0019262295681983232 +illusion_0.75L,sr,168,33.6,force,front_fy,-2.0677787688327953e-05 +illusion_0.75L,sr,168,33.6,force,upper_fx,0.0022775304969400167 +illusion_0.75L,sr,168,33.6,force,upper_fy,0.00028805338661186397 +illusion_0.75L,sr,168,33.6,force,lower_fx,0.00232905987650156 +illusion_0.75L,sr,168,33.6,force,lower_fy,-0.0003903180477209389 +illusion_0.75L,sr,169,33.8,force,front_fx,0.0019254625076428056 +illusion_0.75L,sr,169,33.8,force,front_fy,-2.1916372134000994e-05 +illusion_0.75L,sr,169,33.8,force,upper_fx,0.002274456899613142 +illusion_0.75L,sr,169,33.8,force,upper_fy,0.0002897899830713868 +illusion_0.75L,sr,169,33.8,force,lower_fx,0.0023302482441067696 +illusion_0.75L,sr,169,33.8,force,lower_fy,-0.00038609610055573285 +illusion_0.75L,sr,170,34.0,force,front_fx,0.0019282763823866844 +illusion_0.75L,sr,170,34.0,force,front_fy,-2.279145337524824e-05 +illusion_0.75L,sr,170,34.0,force,upper_fx,0.002276467625051737 +illusion_0.75L,sr,170,34.0,force,upper_fy,0.00029339498723857105 +illusion_0.75L,sr,170,34.0,force,lower_fx,0.002335301833227277 +illusion_0.75L,sr,170,34.0,force,lower_fy,-0.00038165520527400076 +illusion_0.75L,sr,171,34.2,force,front_fx,0.0019316166872158647 +illusion_0.75L,sr,171,34.2,force,front_fy,-2.352836963837035e-05 +illusion_0.75L,sr,171,34.2,force,upper_fx,0.002280054148286581 +illusion_0.75L,sr,171,34.2,force,upper_fy,0.00029903053655289114 +illusion_0.75L,sr,171,34.2,force,lower_fx,0.0023405735846608877 +illusion_0.75L,sr,171,34.2,force,lower_fy,-0.0003776391677092761 +illusion_0.75L,sr,172,34.4,force,front_fx,0.0019340130966156721 +illusion_0.75L,sr,172,34.4,force,front_fy,-2.3584314476465806e-05 +illusion_0.75L,sr,172,34.4,force,upper_fx,0.0022831829264760017 +illusion_0.75L,sr,172,34.4,force,upper_fy,0.00030697646434418857 +illusion_0.75L,sr,172,34.4,force,lower_fx,0.0023439498618245125 +illusion_0.75L,sr,172,34.4,force,lower_fy,-0.00037426312337629497 +illusion_0.75L,sr,173,34.6,force,front_fx,0.0019339898135513067 +illusion_0.75L,sr,173,34.6,force,front_fy,-2.2791216906625777e-05 +illusion_0.75L,sr,173,34.6,force,upper_fx,0.002284247661009431 +illusion_0.75L,sr,173,34.6,force,upper_fy,0.0003170655982103199 +illusion_0.75L,sr,173,34.6,force,lower_fx,0.00234391656704247 +illusion_0.75L,sr,173,34.6,force,lower_fy,-0.000371294270735234 +illusion_0.75L,sr,174,34.8,force,front_fx,0.0019325834000483155 +illusion_0.75L,sr,174,34.8,force,front_fy,-2.144529025827069e-05 +illusion_0.75L,sr,174,34.8,force,upper_fx,0.0022838697768747807 +illusion_0.75L,sr,174,34.8,force,upper_fy,0.0003285559359937906 +illusion_0.75L,sr,174,34.8,force,lower_fx,0.00234114658087492 +illusion_0.75L,sr,174,34.8,force,lower_fy,-0.00036840501707047224 +illusion_0.75L,sr,175,35.0,force,front_fx,0.001931014470756054 +illusion_0.75L,sr,175,35.0,force,front_fy,-2.0050774764968082e-05 +illusion_0.75L,sr,175,35.0,force,upper_fx,0.0022836874704807997 +illusion_0.75L,sr,175,35.0,force,upper_fy,0.00034054488060064614 +illusion_0.75L,sr,175,35.0,force,lower_fx,0.0023373086005449295 +illusion_0.75L,sr,175,35.0,force,lower_fy,-0.0003653650055639446 +illusion_0.75L,sr,176,35.2,force,front_fx,0.0019297098042443395 +illusion_0.75L,sr,176,35.2,force,front_fy,-1.8324995835428126e-05 +illusion_0.75L,sr,176,35.2,force,upper_fx,0.002283900510519743 +illusion_0.75L,sr,176,35.2,force,upper_fy,0.00035225896863266826 +illusion_0.75L,sr,176,35.2,force,lower_fx,0.0023326193913817406 +illusion_0.75L,sr,176,35.2,force,lower_fy,-0.0003617370093706995 +illusion_0.75L,sr,177,35.4,force,front_fx,0.001927353092469275 +illusion_0.75L,sr,177,35.4,force,front_fy,-1.568260631756857e-05 +illusion_0.75L,sr,177,35.4,force,upper_fx,0.0022830406669527292 +illusion_0.75L,sr,177,35.4,force,upper_fy,0.00036371435271576047 +illusion_0.75L,sr,177,35.4,force,lower_fx,0.0023258209694176912 +illusion_0.75L,sr,177,35.4,force,lower_fy,-0.00035742801264859736 +illusion_0.75L,sr,178,35.6,force,front_fx,0.0019233066122978926 +illusion_0.75L,sr,178,35.6,force,front_fy,-1.2678634448093362e-05 +illusion_0.75L,sr,178,35.6,force,upper_fx,0.0022805039770901203 +illusion_0.75L,sr,178,35.6,force,upper_fy,0.0003742598055396229 +illusion_0.75L,sr,178,35.6,force,lower_fx,0.0023165736347436905 +illusion_0.75L,sr,178,35.6,force,lower_fy,-0.0003520201425999403 +illusion_0.75L,sr,179,35.8,force,front_fx,0.0019199922680854797 +illusion_0.75L,sr,179,35.8,force,front_fy,-9.67194137047045e-06 +illusion_0.75L,sr,179,35.8,force,upper_fx,0.002278889762237668 +illusion_0.75L,sr,179,35.8,force,upper_fy,0.0003832372894976288 +illusion_0.75L,sr,179,35.8,force,lower_fx,0.0023075509816408157 +illusion_0.75L,sr,179,35.8,force,lower_fy,-0.00034569372655823827 +illusion_0.75L,sr,180,36.0,force,front_fx,0.0019188164733350277 +illusion_0.75L,sr,180,36.0,force,front_fy,-6.771974767616484e-06 +illusion_0.75L,sr,180,36.0,force,upper_fx,0.002280064392834902 +illusion_0.75L,sr,180,36.0,force,upper_fy,0.0003899321600329131 +illusion_0.75L,sr,180,36.0,force,lower_fx,0.0023007835261523724 +illusion_0.75L,sr,180,36.0,force,lower_fy,-0.00033824314596131444 +illusion_0.75L,sr,181,36.2,force,front_fx,0.0019214210333302617 +illusion_0.75L,sr,181,36.2,force,front_fy,-3.549942448444199e-06 +illusion_0.75L,sr,181,36.2,force,upper_fx,0.0022859929595142603 +illusion_0.75L,sr,181,36.2,force,upper_fy,0.00039455454680137336 +illusion_0.75L,sr,181,36.2,force,lower_fx,0.0022984291426837444 +illusion_0.75L,sr,181,36.2,force,lower_fy,-0.000329854607116431 +illusion_0.75L,sr,182,36.4,force,front_fx,0.001925252960063517 +illusion_0.75L,sr,182,36.4,force,front_fy,3.7010760678413135e-08 +illusion_0.75L,sr,182,36.4,force,upper_fx,0.0022939976770430803 +illusion_0.75L,sr,182,36.4,force,upper_fy,0.00039758041384629905 +illusion_0.75L,sr,182,36.4,force,lower_fx,0.002298054052516818 +illusion_0.75L,sr,182,36.4,force,lower_fy,-0.00032096271752379835 +illusion_0.75L,sr,183,36.6,force,front_fx,0.0019284988520666957 +illusion_0.75L,sr,183,36.6,force,front_fy,3.382247541594552e-06 +illusion_0.75L,sr,183,36.6,force,upper_fx,0.0023013015743345022 +illusion_0.75L,sr,183,36.6,force,upper_fy,0.0003994106955360621 +illusion_0.75L,sr,183,36.6,force,lower_fx,0.0022970729041844606 +illusion_0.75L,sr,183,36.6,force,lower_fy,-0.00031254038913175464 +illusion_0.75L,sr,184,36.8,force,front_fx,0.0019298135302960873 +illusion_0.75L,sr,184,36.8,force,front_fy,6.152693003969034e-06 +illusion_0.75L,sr,184,36.8,force,upper_fx,0.0023066310677677393 +illusion_0.75L,sr,184,36.8,force,upper_fy,0.0003999782493337989 +illusion_0.75L,sr,184,36.8,force,lower_fx,0.002294316655024886 +illusion_0.75L,sr,184,36.8,force,lower_fy,-0.0003052322135772556 +illusion_0.75L,sr,185,37.0,force,front_fx,0.0019295060774311423 +illusion_0.75L,sr,185,37.0,force,front_fy,8.820251423458103e-06 +illusion_0.75L,sr,185,37.0,force,upper_fx,0.0023099537938833237 +illusion_0.75L,sr,185,37.0,force,upper_fy,0.00039954110980033875 +illusion_0.75L,sr,185,37.0,force,lower_fx,0.0022898835595697165 +illusion_0.75L,sr,185,37.0,force,lower_fy,-0.00029926045681349933 +illusion_0.75L,sr,186,37.2,force,front_fx,0.0019290086347609758 +illusion_0.75L,sr,186,37.2,force,front_fy,1.1807450391643215e-05 +illusion_0.75L,sr,186,37.2,force,upper_fx,0.002312921453267336 +illusion_0.75L,sr,186,37.2,force,upper_fy,0.00039830486639402807 +illusion_0.75L,sr,186,37.2,force,lower_fx,0.0022856707219034433 +illusion_0.75L,sr,186,37.2,force,lower_fy,-0.0002943681611213833 +illusion_0.75L,sr,187,37.4,force,front_fx,0.001928681624121964 +illusion_0.75L,sr,187,37.4,force,front_fy,1.4427543646888807e-05 +illusion_0.75L,sr,187,37.4,force,upper_fx,0.0023156283423304558 +illusion_0.75L,sr,187,37.4,force,upper_fy,0.0003963735653087497 +illusion_0.75L,sr,187,37.4,force,lower_fx,0.002281981986016035 +illusion_0.75L,sr,187,37.4,force,lower_fy,-0.0002908661845140159 +illusion_0.75L,sr,188,37.6,force,front_fx,0.0019272980280220509 +illusion_0.75L,sr,188,37.6,force,front_fy,1.6169446098501794e-05 +illusion_0.75L,sr,188,37.6,force,upper_fx,0.0023165650200098753 +illusion_0.75L,sr,188,37.6,force,upper_fy,0.0003938238078262657 +illusion_0.75L,sr,188,37.6,force,lower_fx,0.0022773509845137596 +illusion_0.75L,sr,188,37.6,force,lower_fy,-0.00028941096388734877 +illusion_0.75L,sr,189,37.8,force,front_fx,0.0019240413093939424 +illusion_0.75L,sr,189,37.8,force,front_fy,1.7493257473688573e-05 +illusion_0.75L,sr,189,37.8,force,upper_fx,0.0023150688502937555 +illusion_0.75L,sr,189,37.8,force,upper_fy,0.0003908938670065254 +illusion_0.75L,sr,189,37.8,force,lower_fx,0.0022711928468197584 +illusion_0.75L,sr,189,37.8,force,lower_fy,-0.0002901421394199133 +illusion_0.75L,sr,190,38.0,force,front_fx,0.001920850481837988 +illusion_0.75L,sr,190,38.0,force,front_fy,1.8879067283705808e-05 +illusion_0.75L,sr,190,38.0,force,upper_fx,0.0023130453191697598 +illusion_0.75L,sr,190,38.0,force,upper_fy,0.0003877406124956906 +illusion_0.75L,sr,190,38.0,force,lower_fx,0.002265562303364277 +illusion_0.75L,sr,190,38.0,force,lower_fy,-0.0002926073793787509 +illusion_0.75L,sr,191,38.2,force,front_fx,0.0019193921471014619 +illusion_0.75L,sr,191,38.2,force,front_fy,1.9870803953381255e-05 +illusion_0.75L,sr,191,38.2,force,upper_fx,0.002312518423423171 +illusion_0.75L,sr,191,38.2,force,upper_fy,0.00038433869485743344 +illusion_0.75L,sr,191,38.2,force,lower_fx,0.002262638183310628 +illusion_0.75L,sr,191,38.2,force,lower_fy,-0.00029654017998836935 +illusion_0.75L,sr,192,38.4,force,front_fx,0.0019211716717109084 +illusion_0.75L,sr,192,38.4,force,front_fy,2.0073528503417037e-05 +illusion_0.75L,sr,192,38.4,force,upper_fx,0.002315250691026449 +illusion_0.75L,sr,192,38.4,force,upper_fy,0.00038045228575356305 +illusion_0.75L,sr,192,38.4,force,lower_fx,0.002264183945953846 +illusion_0.75L,sr,192,38.4,force,lower_fy,-0.00030201757908798754 +illusion_0.75L,sr,193,38.6,force,front_fx,0.0019243232673034072 +illusion_0.75L,sr,193,38.6,force,front_fy,1.9503004295984283e-05 +illusion_0.75L,sr,193,38.6,force,upper_fx,0.002319304272532463 +illusion_0.75L,sr,193,38.6,force,upper_fy,0.00037632498424500227 +illusion_0.75L,sr,193,38.6,force,lower_fx,0.002268231473863125 +illusion_0.75L,sr,193,38.6,force,lower_fy,-0.000309258874040097 +illusion_0.75L,sr,194,38.8,force,front_fx,0.0019269773038104177 +illusion_0.75L,sr,194,38.8,force,front_fy,1.883259574242402e-05 +illusion_0.75L,sr,194,38.8,force,upper_fx,0.0023220935836434364 +illusion_0.75L,sr,194,38.8,force,upper_fy,0.00037250935565680265 +illusion_0.75L,sr,194,38.8,force,lower_fx,0.002272223588079214 +illusion_0.75L,sr,194,38.8,force,lower_fy,-0.0003181489300914109 +illusion_0.75L,sr,195,39.0,force,front_fx,0.0019275398226454854 +illusion_0.75L,sr,195,39.0,force,front_fy,1.798885568859987e-05 +illusion_0.75L,sr,195,39.0,force,upper_fx,0.0023217592388391495 +illusion_0.75L,sr,195,39.0,force,upper_fy,0.0003690954181365669 +illusion_0.75L,sr,195,39.0,force,lower_fx,0.002274342579767108 +illusion_0.75L,sr,195,39.0,force,lower_fy,-0.00032825523521751165 +illusion_0.75L,sr,196,39.2,force,front_fx,0.001926563330926001 +illusion_0.75L,sr,196,39.2,force,front_fy,1.6510148270754144e-05 +illusion_0.75L,sr,196,39.2,force,upper_fx,0.0023188285995274782 +illusion_0.75L,sr,196,39.2,force,upper_fy,0.0003657284833025187 +illusion_0.75L,sr,196,39.2,force,lower_fx,0.0022750329226255417 +illusion_0.75L,sr,196,39.2,force,lower_fy,-0.00033918936969712377 +illusion_0.75L,sr,197,39.4,force,front_fx,0.0019251146586611867 +illusion_0.75L,sr,197,39.4,force,front_fy,1.420631815562956e-05 +illusion_0.75L,sr,197,39.4,force,upper_fx,0.002314528450369835 +illusion_0.75L,sr,197,39.4,force,upper_fy,0.0003617305192165077 +illusion_0.75L,sr,197,39.4,force,lower_fx,0.0022753479424864054 +illusion_0.75L,sr,197,39.4,force,lower_fy,-0.0003502989129628986 +illusion_0.75L,sr,198,39.6,force,front_fx,0.0019240741385146976 +illusion_0.75L,sr,198,39.6,force,front_fy,1.171536587207811e-05 +illusion_0.75L,sr,198,39.6,force,upper_fx,0.0023099256213754416 +illusion_0.75L,sr,198,39.6,force,upper_fy,0.00035697370185516775 +illusion_0.75L,sr,198,39.6,force,lower_fx,0.002276219194754958 +illusion_0.75L,sr,198,39.6,force,lower_fy,-0.0003610224521253258 +illusion_0.75L,sr,199,39.8,force,front_fx,0.0019223077688366175 +illusion_0.75L,sr,199,39.8,force,front_fy,9.365144251205493e-06 +illusion_0.75L,sr,199,39.8,force,upper_fx,0.002303734887391329 +illusion_0.75L,sr,199,39.8,force,upper_fy,0.00035161853884346783 +illusion_0.75L,sr,199,39.8,force,lower_fx,0.002276255516335368 +illusion_0.75L,sr,199,39.8,force,lower_fy,-0.00037075707223266363 +illusion_0.75L,sr,200,40.0,force,front_fx,0.0019189566373825073 +illusion_0.75L,sr,200,40.0,force,front_fy,6.831181053712498e-06 +illusion_0.75L,sr,200,40.0,force,upper_fx,0.0022952177096158266 +illusion_0.75L,sr,200,40.0,force,upper_fy,0.00034582134685479105 +illusion_0.75L,sr,200,40.0,force,lower_fx,0.002274587517604232 +illusion_0.75L,sr,200,40.0,force,lower_fy,-0.00037922218325547874 +illusion_0.75L,sr,201,40.2,force,front_fx,0.0019156776834279299 +illusion_0.75L,sr,201,40.2,force,front_fy,3.8039786431909306e-06 +illusion_0.75L,sr,201,40.2,force,upper_fx,0.0022865755017846823 +illusion_0.75L,sr,201,40.2,force,upper_fy,0.0003391412610653788 +illusion_0.75L,sr,201,40.2,force,lower_fx,0.0022732315119355917 +illusion_0.75L,sr,201,40.2,force,lower_fy,-0.0003860917058773339 +illusion_0.75L,sr,202,40.4,force,front_fx,0.0019140711519867182 +illusion_0.75L,sr,202,40.4,force,front_fy,5.885873406441533e-07 +illusion_0.75L,sr,202,40.4,force,upper_fx,0.0022797160781919956 +illusion_0.75L,sr,202,40.4,force,upper_fy,0.0003316039510536939 +illusion_0.75L,sr,202,40.4,force,lower_fx,0.0022738922853022814 +illusion_0.75L,sr,202,40.4,force,lower_fy,-0.00039117623236961663 +illusion_0.75L,sr,203,40.6,force,front_fx,0.0019159618532285094 +illusion_0.75L,sr,203,40.6,force,front_fy,-2.2591027573071187e-06 +illusion_0.75L,sr,203,40.6,force,upper_fx,0.002277074847370386 +illusion_0.75L,sr,203,40.6,force,upper_fy,0.00032353808637708426 +illusion_0.75L,sr,203,40.6,force,lower_fx,0.0022788573987782 +illusion_0.75L,sr,203,40.6,force,lower_fy,-0.00039411825127899647 +illusion_0.75L,sr,204,40.8,force,front_fx,0.0019196299836039543 +illusion_0.75L,sr,204,40.8,force,front_fy,-4.940153303323314e-06 +illusion_0.75L,sr,204,40.8,force,upper_fx,0.0022770243231207132 +illusion_0.75L,sr,204,40.8,force,upper_fy,0.00031570400460623205 +illusion_0.75L,sr,204,40.8,force,lower_fx,0.0022863855119794607 +illusion_0.75L,sr,204,40.8,force,lower_fy,-0.00039531633956357837 +illusion_0.75L,sr,205,41.0,force,front_fx,0.0019231655169278383 +illusion_0.75L,sr,205,41.0,force,front_fy,-7.644585821253713e-06 +illusion_0.75L,sr,205,41.0,force,upper_fx,0.0022771623916924 +illusion_0.75L,sr,205,41.0,force,upper_fy,0.00030864813015796244 +illusion_0.75L,sr,205,41.0,force,lower_fx,0.0022939073387533426 +illusion_0.75L,sr,205,41.0,force,lower_fy,-0.00039545883191749454 +illusion_0.75L,sr,206,41.2,force,front_fx,0.0019247799646109343 +illusion_0.75L,sr,206,41.2,force,front_fy,-1.0443703104101587e-05 +illusion_0.75L,sr,206,41.2,force,upper_fx,0.002275536535307765 +illusion_0.75L,sr,206,41.2,force,upper_fy,0.00030286581022664905 +illusion_0.75L,sr,206,41.2,force,lower_fx,0.0022993069142103195 +illusion_0.75L,sr,206,41.2,force,lower_fy,-0.00039501700666733086 +illusion_0.75L,sr,207,41.4,force,front_fx,0.001924813142977655 +illusion_0.75L,sr,207,41.4,force,front_fy,-1.289465308218496e-05 +illusion_0.75L,sr,207,41.4,force,upper_fx,0.0022724103182554245 +illusion_0.75L,sr,207,41.4,force,upper_fy,0.0002986159815918654 +illusion_0.75L,sr,207,41.4,force,lower_fx,0.0023026661947369576 +illusion_0.75L,sr,207,41.4,force,lower_fy,-0.0003939896123483777 +illusion_0.75L,sr,208,41.6,force,front_fx,0.0019241796107962728 +illusion_0.75L,sr,208,41.6,force,front_fy,-1.4845946679997724e-05 +illusion_0.75L,sr,208,41.6,force,upper_fx,0.0022689627949148417 +illusion_0.75L,sr,208,41.6,force,upper_fy,0.00029607326723635197 +illusion_0.75L,sr,208,41.6,force,lower_fx,0.0023050550371408463 +illusion_0.75L,sr,208,41.6,force,lower_fy,-0.0003922795585822314 +illusion_0.75L,sr,209,41.8,force,front_fx,0.0019237084779888391 +illusion_0.75L,sr,209,41.8,force,front_fy,-1.6543051970074885e-05 +illusion_0.75L,sr,209,41.8,force,upper_fx,0.0022659532260149717 +illusion_0.75L,sr,209,41.8,force,upper_fy,0.00029522451222874224 +illusion_0.75L,sr,209,41.8,force,lower_fx,0.0023071300238370895 +illusion_0.75L,sr,209,41.8,force,lower_fy,-0.00038997133378870785 +illusion_0.75L,sr,210,42.0,force,front_fx,0.0019225423457100987 +illusion_0.75L,sr,210,42.0,force,front_fy,-1.8087106582242996e-05 +illusion_0.75L,sr,210,42.0,force,upper_fx,0.0022625261917710304 +illusion_0.75L,sr,210,42.0,force,upper_fy,0.00029615461244247854 +illusion_0.75L,sr,210,42.0,force,lower_fx,0.002307893242686987 +illusion_0.75L,sr,210,42.0,force,lower_fy,-0.00038742495235055685 +illusion_0.75L,sr,211,42.2,force,front_fx,0.001919541391544044 +illusion_0.75L,sr,211,42.2,force,front_fy,-1.9308496121084318e-05 +illusion_0.75L,sr,211,42.2,force,upper_fx,0.0022573634050786495 +illusion_0.75L,sr,211,42.2,force,upper_fy,0.0002989481436088681 +illusion_0.75L,sr,211,42.2,force,lower_fx,0.00230590277351439 +illusion_0.75L,sr,211,42.2,force,lower_fy,-0.0003848677733913064 +illusion_0.75L,sr,212,42.4,force,front_fx,0.001916177454404533 +illusion_0.75L,sr,212,42.4,force,front_fy,-1.9887485905201174e-05 +illusion_0.75L,sr,212,42.4,force,upper_fx,0.0022523514926433563 +illusion_0.75L,sr,212,42.4,force,upper_fy,0.00030337536009028554 +illusion_0.75L,sr,212,42.4,force,lower_fx,0.0023029688745737076 +illusion_0.75L,sr,212,42.4,force,lower_fy,-0.00038204086013138294 +illusion_0.75L,sr,213,42.6,force,front_fx,0.001914096181280911 +illusion_0.75L,sr,213,42.6,force,front_fy,-1.99519308807794e-05 +illusion_0.75L,sr,213,42.6,force,upper_fx,0.00224933959543705 +illusion_0.75L,sr,213,42.6,force,upper_fy,0.00030926696490496397 +illusion_0.75L,sr,213,42.6,force,lower_fx,0.002300921594724059 +illusion_0.75L,sr,213,42.6,force,lower_fy,-0.0003787324239965528 +illusion_0.75L,sr,214,42.8,force,front_fx,0.0019150350708514452 +illusion_0.75L,sr,214,42.8,force,front_fy,-1.9544046153896488e-05 +illusion_0.75L,sr,214,42.8,force,upper_fx,0.002250327030196786 +illusion_0.75L,sr,214,42.8,force,upper_fy,0.00031616268097423017 +illusion_0.75L,sr,214,42.8,force,lower_fx,0.0023017595522105694 +illusion_0.75L,sr,214,42.8,force,lower_fy,-0.00037478949525393546 +illusion_0.75L,sr,215,43.0,force,front_fx,0.0019178831716999412 +illusion_0.75L,sr,215,43.0,force,front_fy,-1.910376340674702e-05 +illusion_0.75L,sr,215,43.0,force,upper_fx,0.0022545272950083017 +illusion_0.75L,sr,215,43.0,force,upper_fy,0.00032389062107540667 +illusion_0.75L,sr,215,43.0,force,lower_fx,0.0023046890273690224 +illusion_0.75L,sr,215,43.0,force,lower_fy,-0.00037078422610647976 +illusion_0.75L,sr,216,43.2,force,front_fx,0.001920703100040555 +illusion_0.75L,sr,216,43.2,force,front_fy,-1.840561344579328e-05 +illusion_0.75L,sr,216,43.2,force,upper_fx,0.0022591541055589914 +illusion_0.75L,sr,216,43.2,force,upper_fy,0.00033236388117074966 +illusion_0.75L,sr,216,43.2,force,lower_fx,0.002306810114532709 +illusion_0.75L,sr,216,43.2,force,lower_fy,-0.00036697674659080803 +illusion_0.75L,sr,217,43.4,force,front_fx,0.001921885646879673 +illusion_0.75L,sr,217,43.4,force,front_fy,-1.6890971892280504e-05 +illusion_0.75L,sr,217,43.4,force,upper_fx,0.002262392546981573 +illusion_0.75L,sr,217,43.4,force,upper_fy,0.00034180365037173033 +illusion_0.75L,sr,217,43.4,force,lower_fx,0.002306374255567789 +illusion_0.75L,sr,217,43.4,force,lower_fy,-0.00036326274857856333 +illusion_0.75L,sr,218,43.6,force,front_fx,0.0019214173080399632 +illusion_0.75L,sr,218,43.6,force,front_fy,-1.46445863720146e-05 +illusion_0.75L,sr,218,43.6,force,upper_fx,0.002264077076688409 +illusion_0.75L,sr,218,43.6,force,upper_fy,0.00035162828862667084 +illusion_0.75L,sr,218,43.6,force,lower_fx,0.002303428715094924 +illusion_0.75L,sr,218,43.6,force,lower_fy,-0.00035930174635723233 +illusion_0.75L,sr,219,43.8,force,front_fx,0.0019201365066692233 +illusion_0.75L,sr,219,43.8,force,front_fy,-1.2493364920374006e-05 +illusion_0.75L,sr,219,43.8,force,upper_fx,0.0022650512401014566 +illusion_0.75L,sr,219,43.8,force,upper_fy,0.00036109721986576915 +illusion_0.75L,sr,219,43.8,force,lower_fx,0.002298931358382106 +illusion_0.75L,sr,219,43.8,force,lower_fy,-0.00035511795431375504 +illusion_0.75L,sr,220,44.0,force,front_fx,0.0019193862099200487 +illusion_0.75L,sr,220,44.0,force,front_fy,-1.0416489203635138e-05 +illusion_0.75L,sr,220,44.0,force,upper_fx,0.0022666517179459333 +illusion_0.75L,sr,220,44.0,force,upper_fy,0.00036955217365175486 +illusion_0.75L,sr,220,44.0,force,lower_fx,0.0022942372597754 +illusion_0.75L,sr,220,44.0,force,lower_fy,-0.0003504080814309418 +illusion_0.75L,sr,221,44.2,force,front_fx,0.0019181232200935483 +illusion_0.75L,sr,221,44.2,force,front_fy,-7.720810572209302e-06 +illusion_0.75L,sr,221,44.2,force,upper_fx,0.00226780166849494 +illusion_0.75L,sr,221,44.2,force,upper_fy,0.0003769638133235276 +illusion_0.75L,sr,221,44.2,force,lower_fx,0.002288408810272813 +illusion_0.75L,sr,221,44.2,force,lower_fy,-0.0003451413649599999 +illusion_0.75L,sr,222,44.4,force,front_fx,0.0019154967740178108 +illusion_0.75L,sr,222,44.4,force,front_fy,-4.407489996083314e-06 +illusion_0.75L,sr,222,44.4,force,upper_fx,0.0022673492785543203 +illusion_0.75L,sr,222,44.4,force,upper_fy,0.00038330390816554427 +illusion_0.75L,sr,222,44.4,force,lower_fx,0.002280596410855651 +illusion_0.75L,sr,222,44.4,force,lower_fy,-0.0003393008664716035 +illusion_0.75L,sr,223,44.6,force,front_fx,0.0019123655511066318 +illusion_0.75L,sr,223,44.6,force,front_fy,-1.210679783980595e-06 +illusion_0.75L,sr,223,44.6,force,upper_fx,0.0022664249408990145 +illusion_0.75L,sr,223,44.6,force,upper_fy,0.00038819678593426943 +illusion_0.75L,sr,223,44.6,force,lower_fx,0.0022721542045474052 +illusion_0.75L,sr,223,44.6,force,lower_fy,-0.0003329299797769636 +illusion_0.75L,sr,224,44.8,force,front_fx,0.0019105967367067933 +illusion_0.75L,sr,224,44.8,force,front_fy,1.5398687764900387e-06 +illusion_0.75L,sr,224,44.8,force,upper_fx,0.0022671499755233526 +illusion_0.75L,sr,224,44.8,force,upper_fy,0.0003911841777153313 +illusion_0.75L,sr,224,44.8,force,lower_fx,0.002265263581648469 +illusion_0.75L,sr,224,44.8,force,lower_fy,-0.0003262852260377258 +illusion_0.75L,sr,225,45.0,force,front_fx,0.0019116807961836457 +illusion_0.75L,sr,225,45.0,force,front_fy,4.2611800381564535e-06 +illusion_0.75L,sr,225,45.0,force,upper_fx,0.0022713299840688705 +illusion_0.75L,sr,225,45.0,force,upper_fy,0.00039224489592015743 +illusion_0.75L,sr,225,45.0,force,lower_fx,0.0022618586663156748 +illusion_0.75L,sr,225,45.0,force,lower_fy,-0.0003195134049747139 +illusion_0.75L,sr,226,45.2,force,front_fx,0.0019150027073919773 +illusion_0.75L,sr,226,45.2,force,front_fy,7.371342690021265e-06 +illusion_0.75L,sr,226,45.2,force,upper_fx,0.0022785263136029243 +illusion_0.75L,sr,226,45.2,force,upper_fy,0.00039205997018143535 +illusion_0.75L,sr,226,45.2,force,lower_fx,0.002261766931042075 +illusion_0.75L,sr,226,45.2,force,lower_fy,-0.0003128435055259615 +illusion_0.75L,sr,227,45.4,force,front_fx,0.0019185879500582814 +illusion_0.75L,sr,227,45.4,force,front_fy,1.0405741704744287e-05 +illusion_0.75L,sr,227,45.4,force,upper_fx,0.0022860057651996613 +illusion_0.75L,sr,227,45.4,force,upper_fy,0.0003912040265277028 +illusion_0.75L,sr,227,45.4,force,lower_fx,0.0022624782286584377 +illusion_0.75L,sr,227,45.4,force,lower_fy,-0.00030697500915266573 +illusion_0.75L,sr,228,45.6,force,front_fx,0.0019205339485779405 +illusion_0.75L,sr,228,45.6,force,front_fy,1.2617455467989203e-05 +illusion_0.75L,sr,228,45.6,force,upper_fx,0.0022915061563253403 +illusion_0.75L,sr,228,45.6,force,upper_fy,0.000389819557312876 +illusion_0.75L,sr,228,45.6,force,lower_fx,0.0022617990616708994 +illusion_0.75L,sr,228,45.6,force,lower_fy,-0.00030277855694293976 +illusion_0.75L,sr,229,45.8,force,front_fx,0.0019208836602047086 +illusion_0.75L,sr,229,45.8,force,front_fy,1.4227613974071573e-05 +illusion_0.75L,sr,229,45.8,force,upper_fx,0.002294992795214057 +illusion_0.75L,sr,229,45.8,force,upper_fy,0.00038789527025073767 +illusion_0.75L,sr,229,45.8,force,lower_fx,0.002259731525555253 +illusion_0.75L,sr,229,45.8,force,lower_fy,-0.00030054966919124126 +illusion_0.75L,sr,230,46.0,force,front_fx,0.0019200668903067708 +illusion_0.75L,sr,230,46.0,force,front_fy,1.6028518075472675e-05 +illusion_0.75L,sr,230,46.0,force,upper_fx,0.0022968174889683723 +illusion_0.75L,sr,230,46.0,force,upper_fy,0.00038579999818466604 +illusion_0.75L,sr,230,46.0,force,lower_fx,0.002256770385429263 +illusion_0.75L,sr,230,46.0,force,lower_fy,-0.0003000133146997541 +illusion_0.75L,sr,231,46.2,force,front_fx,0.0019196049543097615 +illusion_0.75L,sr,231,46.2,force,front_fy,1.795423850126099e-05 +illusion_0.75L,sr,231,46.2,force,upper_fx,0.0022983814124017954 +illusion_0.75L,sr,231,46.2,force,upper_fy,0.0003837110416498035 +illusion_0.75L,sr,231,46.2,force,lower_fx,0.002254547318443656 +illusion_0.75L,sr,231,46.2,force,lower_fy,-0.00030071125365793705 +illusion_0.75L,sr,232,46.4,force,front_fx,0.0019185713026672602 +illusion_0.75L,sr,232,46.4,force,front_fy,1.9025257643079385e-05 +illusion_0.75L,sr,232,46.4,force,upper_fx,0.0022987036500126123 +illusion_0.75L,sr,232,46.4,force,upper_fy,0.00038150069303810596 +illusion_0.75L,sr,232,46.4,force,lower_fx,0.0022521554492413998 +illusion_0.75L,sr,232,46.4,force,lower_fy,-0.00030312055605463684 +illusion_0.75L,sr,233,46.6,force,front_fx,0.0019160301890224218 +illusion_0.75L,sr,233,46.6,force,front_fy,1.903401243907865e-05 +illusion_0.75L,sr,233,46.6,force,upper_fx,0.0022965327370911837 +illusion_0.75L,sr,233,46.6,force,upper_fy,0.00037895410787314177 +illusion_0.75L,sr,233,46.6,force,lower_fx,0.0022482769563794136 +illusion_0.75L,sr,233,46.6,force,lower_fy,-0.00030752216116525233 +illusion_0.75L,sr,234,46.8,force,front_fx,0.001912678126245737 +illusion_0.75L,sr,234,46.8,force,front_fy,1.905286990222521e-05 +illusion_0.75L,sr,234,46.8,force,upper_fx,0.0022929671686142683 +illusion_0.75L,sr,234,46.8,force,upper_fy,0.00037632399471476674 +illusion_0.75L,sr,234,46.8,force,lower_fx,0.002244016621261835 +illusion_0.75L,sr,234,46.8,force,lower_fy,-0.00031330331694334745 +illusion_0.75L,sr,235,47.0,force,front_fx,0.0019103609956800938 +illusion_0.75L,sr,235,47.0,force,front_fy,1.933544444909785e-05 +illusion_0.75L,sr,235,47.0,force,upper_fx,0.002289787633344531 +illusion_0.75L,sr,235,47.0,force,upper_fy,0.0003736672515515238 +illusion_0.75L,sr,235,47.0,force,lower_fx,0.0022413418628275394 +illusion_0.75L,sr,235,47.0,force,lower_fy,-0.0003196556062903255 +illusion_0.75L,sr,236,47.2,force,front_fx,0.0019104883540421724 +illusion_0.75L,sr,236,47.2,force,front_fy,1.8915627151727676e-05 +illusion_0.75L,sr,236,47.2,force,upper_fx,0.0022888481616973877 +illusion_0.75L,sr,236,47.2,force,upper_fy,0.0003705943818204105 +illusion_0.75L,sr,236,47.2,force,lower_fx,0.002242141868919134 +illusion_0.75L,sr,236,47.2,force,lower_fy,-0.0003265400300733745 +illusion_0.75L,sr,237,47.4,force,front_fx,0.0019130348227918148 +illusion_0.75L,sr,237,47.4,force,front_fy,1.7238255168194883e-05 +illusion_0.75L,sr,237,47.4,force,upper_fx,0.0022904060315340757 +illusion_0.75L,sr,237,47.4,force,upper_fy,0.00036678806645795703 +illusion_0.75L,sr,237,47.4,force,lower_fx,0.0022465046495199203 +illusion_0.75L,sr,237,47.4,force,lower_fy,-0.00033406750299036503 +illusion_0.75L,sr,238,47.6,force,front_fx,0.0019159592920914292 +illusion_0.75L,sr,238,47.6,force,front_fy,1.5374287613667548e-05 +illusion_0.75L,sr,238,47.6,force,upper_fx,0.002291938289999962 +illusion_0.75L,sr,238,47.6,force,upper_fy,0.00036270570126362145 +illusion_0.75L,sr,238,47.6,force,lower_fx,0.002251763129606843 +illusion_0.75L,sr,238,47.6,force,lower_fy,-0.0003422389563638717 +illusion_0.75L,sr,239,47.8,force,front_fx,0.0019175991183146834 +illusion_0.75L,sr,239,47.8,force,front_fy,1.3756354746874422e-05 +illusion_0.75L,sr,239,47.8,force,upper_fx,0.0022914393339306116 +illusion_0.75L,sr,239,47.8,force,upper_fy,0.0003587951650843024 +illusion_0.75L,sr,239,47.8,force,lower_fx,0.0022559724748134613 +illusion_0.75L,sr,239,47.8,force,lower_fy,-0.00035059440415352583 +illusion_0.75L,sr,240,48.0,force,front_fx,0.0019175895722582936 +illusion_0.75L,sr,240,48.0,force,front_fy,1.1906833606190048e-05 +illusion_0.75L,sr,240,48.0,force,upper_fx,0.0022884865757077932 +illusion_0.75L,sr,240,48.0,force,upper_fy,0.0003549849207047373 +illusion_0.75L,sr,240,48.0,force,lower_fx,0.0022586416453123093 +illusion_0.75L,sr,240,48.0,force,lower_fy,-0.0003587834653444588 +illusion_0.75L,sr,241,48.2,force,front_fx,0.0019165744306519628 +illusion_0.75L,sr,241,48.2,force,front_fy,9.085998499358539e-06 +illusion_0.75L,sr,241,48.2,force,upper_fx,0.002283868147060275 +illusion_0.75L,sr,241,48.2,force,upper_fy,0.00035067013232037425 +illusion_0.75L,sr,241,48.2,force,lower_fx,0.0022603231482207775 +illusion_0.75L,sr,241,48.2,force,lower_fy,-0.00036666783853434026 +illusion_0.75L,sr,242,48.4,force,front_fx,0.0019158964278176427 +illusion_0.75L,sr,242,48.4,force,front_fy,5.784032964584185e-06 +illusion_0.75L,sr,242,48.4,force,upper_fx,0.0022791153751313686 +illusion_0.75L,sr,242,48.4,force,upper_fy,0.00034554259036667645 +illusion_0.75L,sr,242,48.4,force,lower_fx,0.00226227892562747 +illusion_0.75L,sr,242,48.4,force,lower_fy,-0.0003738591040018946 +illusion_0.75L,sr,243,48.6,force,front_fx,0.0019149890867993236 +illusion_0.75L,sr,243,48.6,force,front_fy,2.958385493911919e-06 +illusion_0.75L,sr,243,48.6,force,upper_fx,0.002273844089359045 +illusion_0.75L,sr,243,48.6,force,upper_fy,0.0003399928391445428 +illusion_0.75L,sr,243,48.6,force,lower_fx,0.002264027250930667 +illusion_0.75L,sr,243,48.6,force,lower_fy,-0.0003798373509198427 +illusion_0.75L,sr,244,48.8,force,front_fx,0.0019128503045067191 +illusion_0.75L,sr,244,48.8,force,front_fy,5.172530563868349e-07 +illusion_0.75L,sr,244,48.8,force,upper_fx,0.0022667923476547003 +illusion_0.75L,sr,244,48.8,force,upper_fy,0.00033445723238401115 +illusion_0.75L,sr,244,48.8,force,lower_fx,0.0022642365656793118 +illusion_0.75L,sr,244,48.8,force,lower_fy,-0.0003844207094516605 +illusion_0.75L,sr,245,49.0,force,front_fx,0.0019099032506346703 +illusion_0.75L,sr,245,49.0,force,front_fy,-2.4521648356312653e-06 +illusion_0.75L,sr,245,49.0,force,upper_fx,0.0022588863503187895 +illusion_0.75L,sr,245,49.0,force,upper_fy,0.0003287385916337371 +illusion_0.75L,sr,245,49.0,force,lower_fx,0.0022636172361671925 +illusion_0.75L,sr,245,49.0,force,lower_fy,-0.00038760670577175915 +illusion_0.75L,sr,246,49.2,force,front_fx,0.0019079234916716814 +illusion_0.75L,sr,246,49.2,force,front_fy,-5.780648280051537e-06 +illusion_0.75L,sr,246,49.2,force,upper_fx,0.002252236008644104 +illusion_0.75L,sr,246,49.2,force,upper_fy,0.0003226350527256727 +illusion_0.75L,sr,246,49.2,force,lower_fx,0.0022640274837613106 +illusion_0.75L,sr,246,49.2,force,lower_fy,-0.00038956745993345976 +illusion_0.75L,sr,247,49.4,force,front_fx,0.00190821778960526 +illusion_0.75L,sr,247,49.4,force,front_fy,-8.595454346504994e-06 +illusion_0.75L,sr,247,49.4,force,upper_fx,0.0022485163062810898 +illusion_0.75L,sr,247,49.4,force,upper_fy,0.00031649231095798314 +illusion_0.75L,sr,247,49.4,force,lower_fx,0.002267024479806423 +illusion_0.75L,sr,247,49.4,force,lower_fy,-0.0003900570154655725 +illusion_0.75L,sr,248,49.6,force,front_fx,0.0019111714791506529 +illusion_0.75L,sr,248,49.6,force,front_fy,-1.0548105819907505e-05 +illusion_0.75L,sr,248,49.6,force,upper_fx,0.0022486045490950346 +illusion_0.75L,sr,248,49.6,force,upper_fy,0.0003110970719717443 +illusion_0.75L,sr,248,49.6,force,lower_fx,0.002273427788168192 +illusion_0.75L,sr,248,49.6,force,lower_fy,-0.00038897342165000737 +illusion_0.75L,sr,249,49.8,force,front_fx,0.001914643682539463 +illusion_0.75L,sr,249,49.8,force,front_fy,-1.2500721823016647e-05 +illusion_0.75L,sr,249,49.8,force,upper_fx,0.0022498182952404022 +illusion_0.75L,sr,249,49.8,force,upper_fy,0.00030691767460666597 +illusion_0.75L,sr,249,49.8,force,lower_fx,0.0022804855834692717 +illusion_0.75L,sr,249,49.8,force,lower_fy,-0.00038711505476385355 +illusion_0.75L,sr,250,50.0,force,front_fx,0.0019169794395565987 +illusion_0.75L,sr,250,50.0,force,front_fy,-1.4928880773368292e-05 +illusion_0.75L,sr,250,50.0,force,upper_fx,0.0022502532228827477 +illusion_0.75L,sr,250,50.0,force,upper_fy,0.0003040419251192361 +illusion_0.75L,sr,250,50.0,force,lower_fx,0.002286077942699194 +illusion_0.75L,sr,250,50.0,force,lower_fy,-0.00038536667125299573 +illusion_0.75L,sr,251,50.2,force,front_fx,0.0019176038913428783 +illusion_0.75L,sr,251,50.2,force,front_fy,-1.6891583072720096e-05 +illusion_0.75L,sr,251,50.2,force,upper_fx,0.0022493095602840185 +illusion_0.75L,sr,251,50.2,force,upper_fy,0.00030282861553132534 +illusion_0.75L,sr,251,50.2,force,lower_fx,0.002289416966959834 +illusion_0.75L,sr,251,50.2,force,lower_fy,-0.00038376127486117184 +illusion_0.75L,sr,252,50.4,force,front_fx,0.0019169182050973177 +illusion_0.75L,sr,252,50.4,force,front_fy,-1.7767553799785674e-05 +illusion_0.75L,sr,252,50.4,force,upper_fx,0.0022472417913377285 +illusion_0.75L,sr,252,50.4,force,upper_fy,0.00030359544325619936 +illusion_0.75L,sr,252,50.4,force,lower_fx,0.0022907741367816925 +illusion_0.75L,sr,252,50.4,force,lower_fy,-0.00038189374026842415 +illusion_0.75L,sr,253,50.6,force,front_fx,0.0019163170363754034 +illusion_0.75L,sr,253,50.6,force,front_fy,-1.8310518498765305e-05 +illusion_0.75L,sr,253,50.6,force,upper_fx,0.0022456212900578976 +illusion_0.75L,sr,253,50.6,force,upper_fy,0.00030609144596382976 +illusion_0.75L,sr,253,50.6,force,lower_fx,0.002291707322001457 +illusion_0.75L,sr,253,50.6,force,lower_fy,-0.0003797687531914562 +illusion_0.75L,sr,254,50.8,force,front_fx,0.001915409229695797 +illusion_0.75L,sr,254,50.8,force,front_fy,-1.905121280287858e-05 +illusion_0.75L,sr,254,50.8,force,upper_fx,0.002243980998173356 +illusion_0.75L,sr,254,50.8,force,upper_fy,0.0003098779416177422 +illusion_0.75L,sr,254,50.8,force,lower_fx,0.0022916211746633053 +illusion_0.75L,sr,254,50.8,force,lower_fy,-0.00037765485467389226 +illusion_0.75L,sr,255,51.0,force,front_fx,0.0019132212037220597 +illusion_0.75L,sr,255,51.0,force,front_fy,-1.9591316231526434e-05 +illusion_0.75L,sr,255,51.0,force,upper_fx,0.0022411863319575787 +illusion_0.75L,sr,255,51.0,force,upper_fy,0.0003149620024487376 +illusion_0.75L,sr,255,51.0,force,lower_fx,0.0022892567794770002 +illusion_0.75L,sr,255,51.0,force,lower_fy,-0.0003757932863663882 +illusion_0.75L,sr,256,51.2,force,front_fx,0.0019099904457107186 +illusion_0.75L,sr,256,51.2,force,front_fy,-1.9168628568877466e-05 +illusion_0.75L,sr,256,51.2,force,upper_fx,0.0022376514971256256 +illusion_0.75L,sr,256,51.2,force,upper_fy,0.00032114528585225344 +illusion_0.75L,sr,256,51.2,force,lower_fx,0.002285032533109188 +illusion_0.75L,sr,256,51.2,force,lower_fy,-0.0003737005463335663 +illusion_0.75L,sr,257,51.4,force,front_fx,0.0019073706353083253 +illusion_0.75L,sr,257,51.4,force,front_fy,-1.801738289941568e-05 +illusion_0.75L,sr,257,51.4,force,upper_fx,0.0022352037485688925 +illusion_0.75L,sr,257,51.4,force,upper_fy,0.00032825491507537663 +illusion_0.75L,sr,257,51.4,force,lower_fx,0.0022808804642409086 +illusion_0.75L,sr,257,51.4,force,lower_fy,-0.00037105492083355784 +illusion_0.75L,sr,258,51.6,force,front_fx,0.0019068584078922868 +illusion_0.75L,sr,258,51.6,force,front_fy,-1.6843514458741993e-05 +illusion_0.75L,sr,258,51.6,force,upper_fx,0.002235570689663291 +illusion_0.75L,sr,258,51.6,force,upper_fy,0.00033557857386767864 +illusion_0.75L,sr,258,51.6,force,lower_fx,0.0022785400506109 +illusion_0.75L,sr,258,51.6,force,lower_fy,-0.0003677108616102487 +illusion_0.75L,sr,259,51.8,force,front_fx,0.0019089338602498174 +illusion_0.75L,sr,259,51.8,force,front_fy,-1.560057353344746e-05 +illusion_0.75L,sr,259,51.8,force,upper_fx,0.0022397006396204233 +illusion_0.75L,sr,259,51.8,force,upper_fy,0.0003427688789088279 +illusion_0.75L,sr,259,51.8,force,lower_fx,0.00227895169518888 +illusion_0.75L,sr,259,51.8,force,lower_fy,-0.0003639214555732906 +illusion_0.75L,sr,260,52.0,force,front_fx,0.0019119643839076161 +illusion_0.75L,sr,260,52.0,force,front_fy,-1.3913931070419494e-05 +illusion_0.75L,sr,260,52.0,force,upper_fx,0.002245401032269001 +illusion_0.75L,sr,260,52.0,force,upper_fy,0.0003499426238704473 +illusion_0.75L,sr,260,52.0,force,lower_fx,0.0022800168953835964 +illusion_0.75L,sr,260,52.0,force,lower_fy,-0.0003597914765123278 +illusion_0.75L,sr,261,52.2,force,front_fx,0.0019140142248943448 +illusion_0.75L,sr,261,52.2,force,front_fy,-1.132492889155401e-05 +illusion_0.75L,sr,261,52.2,force,upper_fx,0.002250346355140209 +illusion_0.75L,sr,261,52.2,force,upper_fy,0.0003573506837710738 +illusion_0.75L,sr,261,52.2,force,lower_fx,0.002279532141983509 +illusion_0.75L,sr,261,52.2,force,lower_fy,-0.0003554158902261406 +illusion_0.75L,sr,262,52.4,force,front_fx,0.0019145563710480928 +illusion_0.75L,sr,262,52.4,force,front_fy,-8.568123121222015e-06 +illusion_0.75L,sr,262,52.4,force,upper_fx,0.002253863262012601 +illusion_0.75L,sr,262,52.4,force,upper_fy,0.00036470527993515134 +illusion_0.75L,sr,262,52.4,force,lower_fx,0.002277035964652896 +illusion_0.75L,sr,262,52.4,force,lower_fy,-0.00035071250749751925 +illusion_0.75L,sr,263,52.6,force,front_fx,0.001913785352371633 +illusion_0.75L,sr,263,52.6,force,front_fy,-6.000155281071784e-06 +illusion_0.75L,sr,263,52.6,force,upper_fx,0.0022559696808457375 +illusion_0.75L,sr,263,52.6,force,upper_fy,0.00037146377144381404 +illusion_0.75L,sr,263,52.6,force,lower_fx,0.0022726638708263636 +illusion_0.75L,sr,263,52.6,force,lower_fy,-0.00034585330286063254 +illusion_0.75L,sr,264,52.8,force,front_fx,0.0019131870940327644 +illusion_0.75L,sr,264,52.8,force,front_fy,-3.453745648585027e-06 +illusion_0.75L,sr,264,52.8,force,upper_fx,0.0022581936791539192 +illusion_0.75L,sr,264,52.8,force,upper_fy,0.00037705636350438 +illusion_0.75L,sr,264,52.8,force,lower_fx,0.0022680852562189102 +illusion_0.75L,sr,264,52.8,force,lower_fy,-0.0003407573385629803 +illusion_0.75L,sr,265,53.0,force,front_fx,0.0019125426188111305 +illusion_0.75L,sr,265,53.0,force,front_fy,-5.129235205458826e-07 +illusion_0.75L,sr,265,53.0,force,upper_fx,0.0022603520192205906 +illusion_0.75L,sr,265,53.0,force,upper_fy,0.00038157746894285083 +illusion_0.75L,sr,265,53.0,force,lower_fx,0.002263252856209874 +illusion_0.75L,sr,265,53.0,force,lower_fy,-0.0003352622443344444 +illusion_0.75L,sr,266,53.2,force,front_fx,0.0019108460983261466 +illusion_0.75L,sr,266,53.2,force,front_fy,2.6699783575168112e-06 +illusion_0.75L,sr,266,53.2,force,upper_fx,0.002261056797578931 +illusion_0.75L,sr,266,53.2,force,upper_fy,0.0003851992660202086 +illusion_0.75L,sr,266,53.2,force,lower_fx,0.0022570013534277678 +illusion_0.75L,sr,266,53.2,force,lower_fy,-0.00032956458744592965 +illusion_0.75L,sr,267,53.4,force,front_fx,0.0019081395585089922 +illusion_0.75L,sr,267,53.4,force,front_fy,5.400399459176697e-06 +illusion_0.75L,sr,267,53.4,force,upper_fx,0.0022606258280575275 +illusion_0.75L,sr,267,53.4,force,upper_fy,0.0003875268157571554 +illusion_0.75L,sr,267,53.4,force,lower_fx,0.0022498248144984245 +illusion_0.75L,sr,267,53.4,force,lower_fy,-0.00032401946373283863 +illusion_0.75L,sr,268,53.6,force,front_fx,0.0019059469923377037 +illusion_0.75L,sr,268,53.6,force,front_fy,7.647029633517377e-06 +illusion_0.75L,sr,268,53.6,force,upper_fx,0.0022606474813073874 +illusion_0.75L,sr,268,53.6,force,upper_fy,0.00038840461638756096 +illusion_0.75L,sr,268,53.6,force,lower_fx,0.0022433726117014885 +illusion_0.75L,sr,268,53.6,force,lower_fy,-0.00031887434306554496 +illusion_0.75L,sr,269,53.8,force,front_fx,0.001905659562908113 +illusion_0.75L,sr,269,53.8,force,front_fy,9.941588359652087e-06 +illusion_0.75L,sr,269,53.8,force,upper_fx,0.0022628172300755978 +illusion_0.75L,sr,269,53.8,force,upper_fy,0.0003879413416143507 +illusion_0.75L,sr,269,53.8,force,lower_fx,0.0022394212428480387 +illusion_0.75L,sr,269,53.8,force,lower_fy,-0.00031399138970300555 +illusion_0.75L,sr,270,54.0,force,front_fx,0.0019079996272921562 +illusion_0.75L,sr,270,54.0,force,front_fy,1.2327396689215675e-05 +illusion_0.75L,sr,270,54.0,force,upper_fx,0.0022682277485728264 +illusion_0.75L,sr,270,54.0,force,upper_fy,0.00038657724508084357 +illusion_0.75L,sr,270,54.0,force,lower_fx,0.0022392517421394587 +illusion_0.75L,sr,270,54.0,force,lower_fy,-0.00030960558797232807 +illusion_0.75L,sr,271,54.2,force,front_fx,0.0019113803282380104 +illusion_0.75L,sr,271,54.2,force,front_fy,1.438689560018247e-05 +illusion_0.75L,sr,271,54.2,force,upper_fx,0.0022747956681996584 +illusion_0.75L,sr,271,54.2,force,upper_fy,0.00038469876744784415 +illusion_0.75L,sr,271,54.2,force,lower_fx,0.002240938600152731 +illusion_0.75L,sr,271,54.2,force,lower_fy,-0.00030622974736616015 +illusion_0.75L,sr,272,54.4,force,front_fx,0.0019139534560963511 +illusion_0.75L,sr,272,54.4,force,front_fy,1.5813166100997478e-05 +illusion_0.75L,sr,272,54.4,force,upper_fx,0.0022802138701081276 +illusion_0.75L,sr,272,54.4,force,upper_fy,0.0003827158361673355 +illusion_0.75L,sr,272,54.4,force,lower_fx,0.0022422426845878363 +illusion_0.75L,sr,272,54.4,force,lower_fy,-0.0003046545316465199 +illusion_0.75L,sr,273,54.6,force,front_fx,0.0019149095751345158 +illusion_0.75L,sr,273,54.6,force,front_fy,1.6772224626038224e-05 +illusion_0.75L,sr,273,54.6,force,upper_fx,0.0022835186682641506 +illusion_0.75L,sr,273,54.6,force,upper_fy,0.0003806522872764617 +illusion_0.75L,sr,273,54.6,force,lower_fx,0.0022422161418944597 +illusion_0.75L,sr,273,54.6,force,lower_fy,-0.0003049943770747632 +illusion_0.75L,sr,274,54.8,force,front_fx,0.0019143415847793221 +illusion_0.75L,sr,274,54.8,force,front_fy,1.76240318978671e-05 +illusion_0.75L,sr,274,54.8,force,upper_fx,0.0022846348583698273 +illusion_0.75L,sr,274,54.8,force,upper_fy,0.0003788021276704967 +illusion_0.75L,sr,274,54.8,force,lower_fx,0.0022408789955079556 +illusion_0.75L,sr,274,54.8,force,lower_fy,-0.0003071384271606803 +illusion_0.75L,sr,275,55.0,force,front_fx,0.0019136543851345778 +illusion_0.75L,sr,275,55.0,force,front_fy,1.8435570382280275e-05 +illusion_0.75L,sr,275,55.0,force,upper_fx,0.0022849186789244413 +illusion_0.75L,sr,275,55.0,force,upper_fy,0.0003770235925912857 +illusion_0.75L,sr,275,55.0,force,lower_fx,0.002239710884168744 +illusion_0.75L,sr,275,55.0,force,lower_fy,-0.0003105436626356095 +illusion_0.75L,sr,276,55.2,force,front_fx,0.0019128352869302034 +illusion_0.75L,sr,276,55.2,force,front_fy,1.8648604964255355e-05 +illusion_0.75L,sr,276,55.2,force,upper_fx,0.0022843435872346163 +illusion_0.75L,sr,276,55.2,force,upper_fy,0.0003752289048861712 +illusion_0.75L,sr,276,55.2,force,lower_fx,0.0022387607023119926 +illusion_0.75L,sr,276,55.2,force,lower_fy,-0.0003152136050630361 +illusion_0.75L,sr,277,55.4,force,front_fx,0.0019109456334263086 +illusion_0.75L,sr,277,55.4,force,front_fy,1.805762258300092e-05 +illusion_0.75L,sr,277,55.4,force,upper_fx,0.002281768945977092 +illusion_0.75L,sr,277,55.4,force,upper_fy,0.00037318121758289635 +illusion_0.75L,sr,277,55.4,force,lower_fx,0.002236845437437296 +illusion_0.75L,sr,277,55.4,force,lower_fy,-0.000321254541631788 +illusion_0.75L,sr,278,55.6,force,front_fx,0.0019079047488048673 +illusion_0.75L,sr,278,55.6,force,front_fy,1.7047423170879483e-05 +illusion_0.75L,sr,278,55.6,force,upper_fx,0.002277250401675701 +illusion_0.75L,sr,278,55.6,force,upper_fy,0.000370790105080232 +illusion_0.75L,sr,278,55.6,force,lower_fx,0.002233956940472126 +illusion_0.75L,sr,278,55.6,force,lower_fy,-0.00032831463613547385 +illusion_0.75L,sr,279,55.8,force,front_fx,0.0019051982089877129 +illusion_0.75L,sr,279,55.8,force,front_fy,1.6148573195096105e-05 +illusion_0.75L,sr,279,55.8,force,upper_fx,0.0022724641021341085 +illusion_0.75L,sr,279,55.8,force,upper_fy,0.0003681165399029851 +illusion_0.75L,sr,279,55.8,force,lower_fx,0.0022317685652524233 +illusion_0.75L,sr,279,55.8,force,lower_fy,-0.00033563177566975355 +illusion_0.75L,sr,280,56.0,force,front_fx,0.001904162927530706 +illusion_0.75L,sr,280,56.0,force,front_fy,1.5043390703795012e-05 +illusion_0.75L,sr,280,56.0,force,upper_fx,0.002268946962431073 +illusion_0.75L,sr,280,56.0,force,upper_fy,0.0003649021382443607 +illusion_0.75L,sr,280,56.0,force,lower_fx,0.0022318647243082523 +illusion_0.75L,sr,280,56.0,force,lower_fy,-0.00034273735946044326 +illusion_0.75L,sr,281,56.2,force,front_fx,0.00190573965664953 +illusion_0.75L,sr,281,56.2,force,front_fy,1.2956487807969097e-05 +illusion_0.75L,sr,281,56.2,force,upper_fx,0.0022682766430079937 +illusion_0.75L,sr,281,56.2,force,upper_fy,0.0003607634862419218 +illusion_0.75L,sr,281,56.2,force,lower_fx,0.0022357101552188396 +illusion_0.75L,sr,281,56.2,force,lower_fy,-0.0003497462021186948 +illusion_0.75L,sr,282,56.4,force,front_fx,0.0019086790271103382 +illusion_0.75L,sr,282,56.4,force,front_fy,1.0316562111256644e-05 +illusion_0.75L,sr,282,56.4,force,upper_fx,0.002268922748044133 +illusion_0.75L,sr,282,56.4,force,upper_fy,0.000355834374204278 +illusion_0.75L,sr,282,56.4,force,lower_fx,0.0022415139246731997 +illusion_0.75L,sr,282,56.4,force,lower_fy,-0.0003566754166968167 +illusion_0.75L,sr,283,56.6,force,front_fx,0.001911064377054572 +illusion_0.75L,sr,283,56.6,force,front_fy,7.969760190462694e-06 +illusion_0.75L,sr,283,56.6,force,upper_fx,0.002268640324473381 +illusion_0.75L,sr,283,56.6,force,upper_fy,0.00035083788679912686 +illusion_0.75L,sr,283,56.6,force,lower_fx,0.0022469426039606333 +illusion_0.75L,sr,283,56.6,force,lower_fy,-0.0003633559390436858 +illusion_0.75L,sr,284,56.8,force,front_fx,0.0019120894139632583 +illusion_0.75L,sr,284,56.8,force,front_fy,5.786556812381605e-06 +illusion_0.75L,sr,284,56.8,force,upper_fx,0.0022665716242045164 +illusion_0.75L,sr,284,56.8,force,upper_fy,0.0003459060098975897 +illusion_0.75L,sr,284,56.8,force,lower_fx,0.002251117490231991 +illusion_0.75L,sr,284,56.8,force,lower_fy,-0.0003694449842441827 +illusion_0.75L,sr,285,57.0,force,front_fx,0.0019115868490189314 +illusion_0.75L,sr,285,57.0,force,front_fy,3.0814546789770247e-06 +illusion_0.75L,sr,285,57.0,force,upper_fx,0.0022624984849244356 +illusion_0.75L,sr,285,57.0,force,upper_fy,0.0003409062046557665 +illusion_0.75L,sr,285,57.0,force,lower_fx,0.0022536690812557936 +illusion_0.75L,sr,285,57.0,force,lower_fy,-0.0003750166797544807 +illusion_0.75L,sr,286,57.2,force,front_fx,0.0019110700814053416 +illusion_0.75L,sr,286,57.2,force,front_fy,-1.1640670294355004e-07 +illusion_0.75L,sr,286,57.2,force,upper_fx,0.0022581489756703377 +illusion_0.75L,sr,286,57.2,force,upper_fy,0.00033544734469614923 +illusion_0.75L,sr,286,57.2,force,lower_fx,0.0022560309153050184 +illusion_0.75L,sr,286,57.2,force,lower_fy,-0.00037979427725076675 +illusion_0.75L,sr,287,57.4,force,front_fx,0.0019105046521872282 +illusion_0.75L,sr,287,57.4,force,front_fy,-3.0272381081886124e-06 +illusion_0.75L,sr,287,57.4,force,upper_fx,0.0022537142504006624 +illusion_0.75L,sr,287,57.4,force,upper_fy,0.00032988720340654254 +illusion_0.75L,sr,287,57.4,force,lower_fx,0.002258220687508583 +illusion_0.75L,sr,287,57.4,force,lower_fy,-0.0003835215466096997 +illusion_0.75L,sr,288,57.6,force,front_fx,0.0019092126749455929 +illusion_0.75L,sr,288,57.6,force,front_fy,-5.206654350331519e-06 +illusion_0.75L,sr,288,57.6,force,upper_fx,0.002248289529234171 +illusion_0.75L,sr,288,57.6,force,upper_fy,0.0003247479035053402 +illusion_0.75L,sr,288,57.6,force,lower_fx,0.0022593270987272263 +illusion_0.75L,sr,288,57.6,force,lower_fy,-0.0003859099233523011 +illusion_0.75L,sr,289,57.8,force,front_fx,0.0019067446701228619 +illusion_0.75L,sr,289,57.8,force,front_fy,-7.377648671536008e-06 +illusion_0.75L,sr,289,57.8,force,upper_fx,0.002241723472252488 +illusion_0.75L,sr,289,57.8,force,upper_fy,0.0003201665240339935 +illusion_0.75L,sr,289,57.8,force,lower_fx,0.0022591345477849245 +illusion_0.75L,sr,289,57.8,force,lower_fy,-0.00038710914668627083 +illusion_0.75L,sr,290,58.0,force,front_fx,0.00190445885527879 +illusion_0.75L,sr,290,58.0,force,front_fy,-1.0047951946035028e-05 +illusion_0.75L,sr,290,58.0,force,upper_fx,0.002235559280961752 +illusion_0.75L,sr,290,58.0,force,upper_fy,0.00031578951166011393 +illusion_0.75L,sr,290,58.0,force,lower_fx,0.0022589401341974735 +illusion_0.75L,sr,290,58.0,force,lower_fy,-0.00038742704782634974 +illusion_0.75L,sr,291,58.2,force,front_fx,0.0019036605954170227 +illusion_0.75L,sr,291,58.2,force,front_fy,-1.2607551070686895e-05 +illusion_0.75L,sr,291,58.2,force,upper_fx,0.0022315403912216425 +illusion_0.75L,sr,291,58.2,force,upper_fy,0.00031172134913504124 +illusion_0.75L,sr,291,58.2,force,lower_fx,0.00226026913151145 +illusion_0.75L,sr,291,58.2,force,lower_fy,-0.0003869108040817082 +illusion_0.75L,sr,292,58.4,force,front_fx,0.0019053822616115212 +illusion_0.75L,sr,292,58.4,force,front_fy,-1.4221473975339904e-05 +illusion_0.75L,sr,292,58.4,force,upper_fx,0.0022311084903776646 +illusion_0.75L,sr,292,58.4,force,upper_fy,0.0003085153584834188 +illusion_0.75L,sr,292,58.4,force,lower_fx,0.002264551352709532 +illusion_0.75L,sr,292,58.4,force,lower_fy,-0.0003852727240882814 +illusion_0.75L,sr,293,58.6,force,front_fx,0.0019085368840023875 +illusion_0.75L,sr,293,58.6,force,front_fy,-1.5212588550639339e-05 +illusion_0.75L,sr,293,58.6,force,upper_fx,0.0022330014035105705 +illusion_0.75L,sr,293,58.6,force,upper_fy,0.0003067806246690452 +illusion_0.75L,sr,293,58.6,force,lower_fx,0.002270536497235298 +illusion_0.75L,sr,293,58.6,force,lower_fy,-0.0003828451444860548 +illusion_0.75L,sr,294,58.8,force,front_fx,0.0019112223526462913 +illusion_0.75L,sr,294,58.8,force,front_fy,-1.6496733223902993e-05 +illusion_0.75L,sr,294,58.8,force,upper_fx,0.002234845655038953 +illusion_0.75L,sr,294,58.8,force,upper_fy,0.00030661551863886416 +illusion_0.75L,sr,294,58.8,force,lower_fx,0.002275714185088873 +illusion_0.75L,sr,294,58.8,force,lower_fy,-0.0003804817097261548 +illusion_0.75L,sr,295,59.0,force,front_fx,0.0019124725367873907 +illusion_0.75L,sr,295,59.0,force,front_fy,-1.7965954612009227e-05 +illusion_0.75L,sr,295,59.0,force,upper_fx,0.002235672902315855 +illusion_0.75L,sr,295,59.0,force,upper_fy,0.00030787449213676155 +illusion_0.75L,sr,295,59.0,force,lower_fx,0.002278907224535942 +illusion_0.75L,sr,295,59.0,force,lower_fy,-0.00037863393663428724 +illusion_0.75L,sr,296,59.2,force,front_fx,0.0019120791694149375 +illusion_0.75L,sr,296,59.2,force,front_fy,-1.8533633920014836e-05 +illusion_0.75L,sr,296,59.2,force,upper_fx,0.002235119231045246 +illusion_0.75L,sr,296,59.2,force,upper_fy,0.0003108541131950915 +illusion_0.75L,sr,296,59.2,force,lower_fx,0.002279683481901884 +illusion_0.75L,sr,296,59.2,force,lower_fy,-0.0003770216426346451 +illusion_0.75L,sr,297,59.4,force,front_fx,0.0019112869631499052 +illusion_0.75L,sr,297,59.4,force,front_fy,-1.804084240575321e-05 +illusion_0.75L,sr,297,59.4,force,upper_fx,0.0022343480959534645 +illusion_0.75L,sr,297,59.4,force,upper_fy,0.0003155561862513423 +illusion_0.75L,sr,297,59.4,force,lower_fx,0.00227931747213006 +illusion_0.75L,sr,297,59.4,force,lower_fy,-0.00037500818143598735 +illusion_0.75L,sr,298,59.6,force,front_fx,0.0019104660023003817 +illusion_0.75L,sr,298,59.6,force,front_fy,-1.7542486602906138e-05 +illusion_0.75L,sr,298,59.6,force,upper_fx,0.0022338645067065954 +illusion_0.75L,sr,298,59.6,force,upper_fy,0.00032143190037459135 +illusion_0.75L,sr,298,59.6,force,lower_fx,0.0022783083841204643 +illusion_0.75L,sr,298,59.6,force,lower_fy,-0.0003728097944986075 +illusion_0.75L,sr,299,59.8,force,front_fx,0.0019088868284597993 +illusion_0.75L,sr,299,59.8,force,front_fy,-1.739427534630522e-05 +illusion_0.75L,sr,299,59.8,force,upper_fx,0.0022326959297060966 +illusion_0.75L,sr,299,59.8,force,upper_fy,0.0003278943186160177 +illusion_0.75L,sr,299,59.8,force,lower_fx,0.002275564009323716 +illusion_0.75L,sr,299,59.8,force,lower_fy,-0.00037075637374073267 +illusion_0.75L,sr,300,60.0,force,front_fx,0.001906167366541922 +illusion_0.75L,sr,300,60.0,force,front_fy,-1.6587986465310678e-05 +illusion_0.75L,sr,300,60.0,force,upper_fx,0.002230640733614564 +illusion_0.75L,sr,300,60.0,force,upper_fy,0.0003348973114043474 +illusion_0.75L,sr,300,60.0,force,lower_fx,0.002270843368023634 +illusion_0.75L,sr,300,60.0,force,lower_fy,-0.00036857262603007257 +illusion_0.75L,sr,301,60.2,force,front_fx,0.001903391326777637 +illusion_0.75L,sr,301,60.2,force,front_fy,-1.4616703992942348e-05 +illusion_0.75L,sr,301,60.2,force,upper_fx,0.002228806260973215 +illusion_0.75L,sr,301,60.2,force,upper_fy,0.0003423499583732337 +illusion_0.75L,sr,301,60.2,force,lower_fx,0.002265459392219782 +illusion_0.75L,sr,301,60.2,force,lower_fy,-0.0003656037151813507 +illusion_0.75L,sr,302,60.4,force,front_fx,0.001902029849588871 +illusion_0.75L,sr,302,60.4,force,front_fy,-1.2396953934512567e-05 +illusion_0.75L,sr,302,60.4,force,upper_fx,0.002228755736723542 +illusion_0.75L,sr,302,60.4,force,upper_fy,0.00034978589974343777 +illusion_0.75L,sr,302,60.4,force,lower_fx,0.002261146204546094 +illusion_0.75L,sr,302,60.4,force,lower_fy,-0.0003616908215917647 +illusion_0.75L,sr,303,60.6,force,front_fx,0.0019031089032068849 +illusion_0.75L,sr,303,60.6,force,front_fy,-1.0544811630097684e-05 +illusion_0.75L,sr,303,60.6,force,upper_fx,0.002232116647064686 +illusion_0.75L,sr,303,60.6,force,upper_fy,0.0003564763464964926 +illusion_0.75L,sr,303,60.6,force,lower_fx,0.002259527798742056 +illusion_0.75L,sr,303,60.6,force,lower_fy,-0.00035710755037143826 +illusion_0.75L,sr,304,60.8,force,front_fx,0.001905838493257761 +illusion_0.75L,sr,304,60.8,force,front_fy,-8.620514563517645e-06 +illusion_0.75L,sr,304,60.8,force,upper_fx,0.0022378794383257627 +illusion_0.75L,sr,304,60.8,force,upper_fy,0.0003623767988756299 +illusion_0.75L,sr,304,60.8,force,lower_fx,0.0022596297785639763 +illusion_0.75L,sr,304,60.8,force,lower_fy,-0.00035216897958889604 +illusion_0.75L,sr,305,61.0,force,front_fx,0.0019084833329543471 +illusion_0.75L,sr,305,61.0,force,front_fy,-5.926548510615248e-06 +illusion_0.75L,sr,305,61.0,force,upper_fx,0.002243770519271493 +illusion_0.75L,sr,305,61.0,force,upper_fy,0.0003679627552628517 +illusion_0.75L,sr,305,61.0,force,lower_fx,0.0022593894973397255 +illusion_0.75L,sr,305,61.0,force,lower_fy,-0.00034690205939114094 +illusion_0.75L,sr,306,61.2,force,front_fx,0.0019098625052720308 +illusion_0.75L,sr,306,61.2,force,front_fy,-2.7368432711227797e-06 +illusion_0.75L,sr,306,61.2,force,upper_fx,0.0022483966313302517 +illusion_0.75L,sr,306,61.2,force,upper_fy,0.00037334696389734745 +illusion_0.75L,sr,306,61.2,force,lower_fx,0.002257654443383217 +illusion_0.75L,sr,306,61.2,force,lower_fy,-0.00034134529414586723 +illusion_0.75L,sr,307,61.4,force,front_fx,0.0019097736803814769 +illusion_0.75L,sr,307,61.4,force,front_fy,-1.599957677456132e-08 +illusion_0.75L,sr,307,61.4,force,upper_fx,0.002251360798254609 +illusion_0.75L,sr,307,61.4,force,upper_fy,0.00037804883322678506 +illusion_0.75L,sr,307,61.4,force,lower_fx,0.0022541501093655825 +illusion_0.75L,sr,307,61.4,force,lower_fy,-0.0003359189722687006 +illusion_0.75L,sr,308,61.6,force,front_fx,0.001909188344143331 +illusion_0.75L,sr,308,61.6,force,front_fy,2.1305097561707953e-06 +illusion_0.75L,sr,308,61.6,force,upper_fx,0.002253708429634571 +illusion_0.75L,sr,308,61.6,force,upper_fy,0.0003815267118625343 +illusion_0.75L,sr,308,61.6,force,lower_fx,0.002249967074021697 +illusion_0.75L,sr,308,61.6,force,lower_fy,-0.0003308538580313325 +illusion_0.75L,sr,309,61.8,force,front_fx,0.0019087247783318162 +illusion_0.75L,sr,309,61.8,force,front_fy,4.50517154604313e-06 +illusion_0.75L,sr,309,61.8,force,upper_fx,0.002256090985611081 +illusion_0.75L,sr,309,61.8,force,upper_fy,0.00038383444189094007 +illusion_0.75L,sr,309,61.8,force,lower_fx,0.0022458676248788834 +illusion_0.75L,sr,309,61.8,force,lower_fy,-0.0003259896475356072 +illusion_0.75L,sr,310,62.0,force,front_fx,0.001907739439047873 +illusion_0.75L,sr,310,62.0,force,front_fy,7.3918331509048585e-06 +illusion_0.75L,sr,310,62.0,force,upper_fx,0.002257543383166194 +illusion_0.75L,sr,310,62.0,force,upper_fy,0.00038545296411029994 +illusion_0.75L,sr,310,62.0,force,lower_fx,0.0022411104291677475 +illusion_0.75L,sr,310,62.0,force,lower_fy,-0.0003212457522749901 +illusion_0.75L,sr,311,62.2,force,front_fx,0.0019056083401665092 +illusion_0.75L,sr,311,62.2,force,front_fy,1.0047663636214565e-05 +illusion_0.75L,sr,311,62.2,force,upper_fx,0.0022575431503355503 +illusion_0.75L,sr,311,62.2,force,upper_fy,0.00038635521195828915 +illusion_0.75L,sr,311,62.2,force,lower_fx,0.0022353462409228086 +illusion_0.75L,sr,311,62.2,force,lower_fy,-0.0003169069532305002 +illusion_0.75L,sr,312,62.4,force,front_fx,0.0019033073913305998 +illusion_0.75L,sr,312,62.4,force,front_fy,1.177604281110689e-05 +illusion_0.75L,sr,312,62.4,force,upper_fx,0.002257124986499548 +illusion_0.75L,sr,312,62.4,force,upper_fy,0.0003861458972096443 +illusion_0.75L,sr,312,62.4,force,lower_fx,0.002229678677394986 +illusion_0.75L,sr,312,62.4,force,lower_fy,-0.0003134842263534665 +illusion_0.75L,sr,313,62.6,force,front_fx,0.0019021503394469619 +illusion_0.75L,sr,313,62.6,force,front_fy,1.3182624570617918e-05 +illusion_0.75L,sr,313,62.6,force,upper_fx,0.0022578230127692223 +illusion_0.75L,sr,313,62.6,force,upper_fy,0.0003848205378744751 +illusion_0.75L,sr,313,62.6,force,lower_fx,0.0022256458178162575 +illusion_0.75L,sr,313,62.6,force,lower_fy,-0.0003109722747467458 +illusion_0.75L,sr,314,62.8,force,front_fx,0.0019032374257221818 +illusion_0.75L,sr,314,62.8,force,front_fy,1.4966121852921788e-05 +illusion_0.75L,sr,314,62.8,force,upper_fx,0.002261093584820628 +illusion_0.75L,sr,314,62.8,force,upper_fy,0.0003828923508990556 +illusion_0.75L,sr,314,62.8,force,lower_fx,0.002224856289103627 +illusion_0.75L,sr,314,62.8,force,lower_fy,-0.00030911489739082754 +illusion_0.75L,sr,315,63.0,force,front_fx,0.0019060325575992465 +illusion_0.75L,sr,315,63.0,force,front_fy,1.661793066887185e-05 +illusion_0.75L,sr,315,63.0,force,upper_fx,0.0022662384435534477 +illusion_0.75L,sr,315,63.0,force,upper_fy,0.00038072161260060966 +illusion_0.75L,sr,315,63.0,force,lower_fx,0.0022268013563007116 +illusion_0.75L,sr,315,63.0,force,lower_fy,-0.00030817638617008924 +illusion_0.75L,sr,316,63.2,force,front_fx,0.0019087546970695257 +illusion_0.75L,sr,316,63.2,force,front_fy,1.7403419406036846e-05 +illusion_0.75L,sr,316,63.2,force,upper_fx,0.002270965836942196 +illusion_0.75L,sr,316,63.2,force,upper_fy,0.00037846885970793664 +illusion_0.75L,sr,316,63.2,force,lower_fx,0.0022292304784059525 +illusion_0.75L,sr,316,63.2,force,lower_fy,-0.00030887569300830364 +illusion_0.75L,sr,317,63.4,force,front_fx,0.00191025179810822 +illusion_0.75L,sr,317,63.4,force,front_fy,1.7502881746622734e-05 +illusion_0.75L,sr,317,63.4,force,upper_fx,0.00227395910769701 +illusion_0.75L,sr,317,63.4,force,upper_fy,0.00037623857497237623 +illusion_0.75L,sr,317,63.4,force,lower_fx,0.0022308072075247765 +illusion_0.75L,sr,317,63.4,force,lower_fy,-0.0003114602295681834 +illusion_0.75L,sr,318,63.6,force,front_fx,0.0019100963836535811 +illusion_0.75L,sr,318,63.6,force,front_fy,1.7599673810764216e-05 +illusion_0.75L,sr,318,63.6,force,upper_fx,0.002274556551128626 +illusion_0.75L,sr,318,63.6,force,upper_fy,0.0003742283151950687 +illusion_0.75L,sr,318,63.6,force,lower_fx,0.00223092851229012 +illusion_0.75L,sr,318,63.6,force,lower_fy,-0.0003156479215249419 +illusion_0.75L,sr,319,63.8,force,front_fx,0.0019092683214694262 +illusion_0.75L,sr,319,63.8,force,front_fy,1.7641297745285556e-05 +illusion_0.75L,sr,319,63.8,force,upper_fx,0.0022736950777471066 +illusion_0.75L,sr,319,63.8,force,upper_fy,0.0003724264679476619 +illusion_0.75L,sr,319,63.8,force,lower_fx,0.0022306081373244524 +illusion_0.75L,sr,319,63.8,force,lower_fy,-0.00032091012690216303 +illusion_0.75L,sr,320,64.0,force,front_fx,0.00190848542843014 +illusion_0.75L,sr,320,64.0,force,front_fy,1.7159682101919316e-05 +illusion_0.75L,sr,320,64.0,force,upper_fx,0.0022721649147570133 +illusion_0.75L,sr,320,64.0,force,upper_fy,0.0003705031122080982 +illusion_0.75L,sr,320,64.0,force,lower_fx,0.0022306544706225395 +illusion_0.75L,sr,320,64.0,force,lower_fy,-0.0003269712906330824 +illusion_0.75L,sr,321,64.2,force,front_fx,0.0019071976421400905 +illusion_0.75L,sr,321,64.2,force,front_fy,1.5838813851587474e-05 +illusion_0.75L,sr,321,64.2,force,upper_fx,0.0022692459169775248 +illusion_0.75L,sr,321,64.2,force,upper_fy,0.0003681870875880122 +illusion_0.75L,sr,321,64.2,force,lower_fx,0.0022302730940282345 +illusion_0.75L,sr,321,64.2,force,lower_fy,-0.00033389285090379417 +illusion_0.75L,sr,322,64.4,force,front_fx,0.0019048438407480717 +illusion_0.75L,sr,322,64.4,force,front_fy,1.4020874004927464e-05 +illusion_0.75L,sr,322,64.4,force,upper_fx,0.002264538547024131 +illusion_0.75L,sr,322,64.4,force,upper_fy,0.0003653933817986399 +illusion_0.75L,sr,322,64.4,force,lower_fx,0.00222895760089159 +illusion_0.75L,sr,322,64.4,force,lower_fy,-0.00034135114401578903 +illusion_0.75L,sr,323,64.6,force,front_fx,0.0019021604675799608 +illusion_0.75L,sr,323,64.6,force,front_fy,1.2386346497805789e-05 +illusion_0.75L,sr,323,64.6,force,upper_fx,0.002258890075609088 +illusion_0.75L,sr,323,64.6,force,upper_fy,0.00036215840373188257 +illusion_0.75L,sr,323,64.6,force,lower_fx,0.002227464225143194 +illusion_0.75L,sr,323,64.6,force,lower_fy,-0.00034874508855864406 +illusion_0.75L,sr,324,64.8,force,front_fx,0.0019005393842235208 +illusion_0.75L,sr,324,64.8,force,front_fy,1.0605191164358985e-05 +illusion_0.75L,sr,324,64.8,force,upper_fx,0.002253999002277851 +illusion_0.75L,sr,324,64.8,force,upper_fy,0.00035833517904393375 +illusion_0.75L,sr,324,64.8,force,lower_fx,0.0022274700459092855 +illusion_0.75L,sr,324,64.8,force,lower_fy,-0.00035553795169107616 +illusion_0.75L,sr,325,65.0,force,front_fx,0.0019010554533451796 +illusion_0.75L,sr,325,65.0,force,front_fy,8.231799256464e-06 +illusion_0.75L,sr,325,65.0,force,upper_fx,0.0022513659205287695 +illusion_0.75L,sr,325,65.0,force,upper_fy,0.000353675102815032 +illusion_0.75L,sr,325,65.0,force,lower_fx,0.0022303378209471703 +illusion_0.75L,sr,325,65.0,force,lower_fy,-0.0003616354370024055 +illusion_0.75L,sr,326,65.2,force,front_fx,0.0019035391742363572 +illusion_0.75L,sr,326,65.2,force,front_fy,5.3890335038886406e-06 +illusion_0.75L,sr,326,65.2,force,upper_fx,0.002250978257507086 +illusion_0.75L,sr,326,65.2,force,upper_fy,0.0003481558815110475 +illusion_0.75L,sr,326,65.2,force,lower_fx,0.0022358717396855354 +illusion_0.75L,sr,326,65.2,force,lower_fy,-0.00036715302849188447 +illusion_0.75L,sr,327,65.4,force,front_fx,0.0019062641076743603 +illusion_0.75L,sr,327,65.4,force,front_fy,2.6836369215743616e-06 +illusion_0.75L,sr,327,65.4,force,upper_fx,0.00225081923417747 +illusion_0.75L,sr,327,65.4,force,upper_fy,0.000342415674822405 +illusion_0.75L,sr,327,65.4,force,lower_fx,0.0022418738808482885 +illusion_0.75L,sr,327,65.4,force,lower_fy,-0.0003720819659065455 +illusion_0.75L,sr,328,65.6,force,front_fx,0.0019079684279859066 +illusion_0.75L,sr,328,65.6,force,front_fy,3.863123936298507e-07 +illusion_0.75L,sr,328,65.6,force,upper_fx,0.002249495591968298 +illusion_0.75L,sr,328,65.6,force,upper_fy,0.00033700381754897535 +illusion_0.75L,sr,328,65.6,force,lower_fx,0.002246880205348134 +illusion_0.75L,sr,328,65.6,force,lower_fy,-0.00037617041380144656 +illusion_0.75L,sr,329,65.8,force,front_fx,0.0019081973005086184 +illusion_0.75L,sr,329,65.8,force,front_fy,-1.988896201510215e-06 +illusion_0.75L,sr,329,65.8,force,upper_fx,0.0022464673966169357 +illusion_0.75L,sr,329,65.8,force,upper_fy,0.0003319784882478416 +illusion_0.75L,sr,329,65.8,force,lower_fx,0.0022502909414470196 +illusion_0.75L,sr,329,65.8,force,lower_fy,-0.0003795252414420247 +illusion_0.75L,sr,330,66.0,force,front_fx,0.0019077096367254853 +illusion_0.75L,sr,330,66.0,force,front_fy,-4.8012529987317976e-06 +illusion_0.75L,sr,330,66.0,force,upper_fx,0.002242553047835827 +illusion_0.75L,sr,330,66.0,force,upper_fy,0.00032703723991289735 +illusion_0.75L,sr,330,66.0,force,lower_fx,0.0022527361288666725 +illusion_0.75L,sr,330,66.0,force,lower_fy,-0.00038221661816351116 +illusion_0.75L,sr,331,66.2,force,front_fx,0.0019073460716754198 +illusion_0.75L,sr,331,66.2,force,front_fy,-7.512548563681776e-06 +illusion_0.75L,sr,331,66.2,force,upper_fx,0.0022389038931578398 +illusion_0.75L,sr,331,66.2,force,upper_fy,0.0003222678496968001 +illusion_0.75L,sr,331,66.2,force,lower_fx,0.002255133120343089 +illusion_0.75L,sr,331,66.2,force,lower_fy,-0.00038409463013522327 +illusion_0.75L,sr,332,66.4,force,front_fx,0.0019065707456320524 +illusion_0.75L,sr,332,66.4,force,front_fy,-9.666420737630688e-06 +illusion_0.75L,sr,332,66.4,force,upper_fx,0.0022348558995872736 +illusion_0.75L,sr,332,66.4,force,upper_fy,0.0003181356587447226 +illusion_0.75L,sr,332,66.4,force,lower_fx,0.002256740117445588 +illusion_0.75L,sr,332,66.4,force,lower_fy,-0.0003850171633530408 +illusion_0.75L,sr,333,66.6,force,front_fx,0.00190478446893394 +illusion_0.75L,sr,333,66.6,force,front_fy,-1.1412785170250572e-05 +illusion_0.75L,sr,333,66.6,force,upper_fx,0.002229875884950161 +illusion_0.75L,sr,333,66.6,force,upper_fy,0.00031494323047809303 +illusion_0.75L,sr,333,66.6,force,lower_fx,0.002256999723613262 +illusion_0.75L,sr,333,66.6,force,lower_fy,-0.00038503631367348135 +illusion_0.75L,sr,334,66.8,force,front_fx,0.0019025362562388182 +illusion_0.75L,sr,334,66.8,force,front_fy,-1.3217957530287094e-05 +illusion_0.75L,sr,334,66.8,force,upper_fx,0.002224660012871027 +illusion_0.75L,sr,334,66.8,force,upper_fy,0.000312583870254457 +illusion_0.75L,sr,334,66.8,force,lower_fx,0.0022564982064068317 +illusion_0.75L,sr,334,66.8,force,lower_fy,-0.00038437824696302414 +illusion_0.75L,sr,335,67.0,force,front_fx,0.0019010687246918678 +illusion_0.75L,sr,335,67.0,force,front_fy,-1.5107004401215818e-05 +illusion_0.75L,sr,335,67.0,force,upper_fx,0.0022207582369446754 +illusion_0.75L,sr,335,67.0,force,upper_fy,0.00031087512616068125 +illusion_0.75L,sr,335,67.0,force,lower_fx,0.0022565918043255806 +illusion_0.75L,sr,335,67.0,force,lower_fy,-0.0003831968060694635 +illusion_0.75L,sr,336,67.2,force,front_fx,0.001901559648104012 +illusion_0.75L,sr,336,67.2,force,front_fy,-1.6505915482412092e-05 +illusion_0.75L,sr,336,67.2,force,upper_fx,0.002219710499048233 +illusion_0.75L,sr,336,67.2,force,upper_fy,0.00031001801835373044 +illusion_0.75L,sr,336,67.2,force,lower_fx,0.002258707070723176 +illusion_0.75L,sr,336,67.2,force,lower_fy,-0.0003814107913058251 +illusion_0.75L,sr,337,67.4,force,front_fx,0.0019038596656173468 +illusion_0.75L,sr,337,67.4,force,front_fy,-1.7074100469471887e-05 +illusion_0.75L,sr,337,67.4,force,upper_fx,0.0022215249482542276 +illusion_0.75L,sr,337,67.4,force,upper_fy,0.00031042209593579173 +illusion_0.75L,sr,337,67.4,force,lower_fx,0.0022628644946962595 +illusion_0.75L,sr,337,67.4,force,lower_fy,-0.0003790008195210248 +illusion_0.75L,sr,338,67.6,force,front_fx,0.0019065531669184566 +illusion_0.75L,sr,338,67.6,force,front_fy,-1.737708953442052e-05 +illusion_0.75L,sr,338,67.6,force,upper_fx,0.0022243112325668335 +illusion_0.75L,sr,338,67.6,force,upper_fy,0.0003123522619716823 +illusion_0.75L,sr,338,67.6,force,lower_fx,0.0022671539336442947 +illusion_0.75L,sr,338,67.6,force,lower_fy,-0.00037646424607373774 +illusion_0.75L,sr,339,67.8,force,front_fx,0.0019082040525972843 +illusion_0.75L,sr,339,67.8,force,front_fy,-1.7832790035754442e-05 +illusion_0.75L,sr,339,67.8,force,upper_fx,0.002226474229246378 +illusion_0.75L,sr,339,67.8,force,upper_fy,0.0003156574093736708 +illusion_0.75L,sr,339,67.8,force,lower_fx,0.0022698603570461273 +illusion_0.75L,sr,339,67.8,force,lower_fy,-0.00037427336792461574 +illusion_0.75L,sr,340,68.0,force,front_fx,0.0019083592342212796 +illusion_0.75L,sr,340,68.0,force,front_fy,-1.7871392628876492e-05 +illusion_0.75L,sr,340,68.0,force,upper_fx,0.0022273967042565346 +illusion_0.75L,sr,340,68.0,force,upper_fy,0.00032023797393776476 +illusion_0.75L,sr,340,68.0,force,lower_fx,0.002270270371809602 +illusion_0.75L,sr,340,68.0,force,lower_fy,-0.00037249195156618953 +illusion_0.75L,sr,341,68.2,force,front_fx,0.0019075978780165315 +illusion_0.75L,sr,341,68.2,force,front_fy,-1.7065116480807774e-05 +illusion_0.75L,sr,341,68.2,force,upper_fx,0.0022276011295616627 +illusion_0.75L,sr,341,68.2,force,upper_fy,0.00032606784952804446 +illusion_0.75L,sr,341,68.2,force,lower_fx,0.0022689697798341513 +illusion_0.75L,sr,341,68.2,force,lower_fy,-0.0003705652488861233 +illusion_0.75L,sr,342,68.4,force,front_fx,0.001906837336719036 +illusion_0.75L,sr,342,68.4,force,front_fy,-1.5592167983413674e-05 +illusion_0.75L,sr,342,68.4,force,upper_fx,0.002228047698736191 +illusion_0.75L,sr,342,68.4,force,upper_fy,0.00033286024699918926 +illusion_0.75L,sr,342,68.4,force,lower_fx,0.002267039380967617 +illusion_0.75L,sr,342,68.4,force,lower_fy,-0.0003681484959088266 +illusion_0.75L,sr,343,68.6,force,front_fx,0.0019058111356571317 +illusion_0.75L,sr,343,68.6,force,front_fy,-1.4227664905774873e-05 +illusion_0.75L,sr,343,68.6,force,upper_fx,0.0022282928694039583 +illusion_0.75L,sr,343,68.6,force,upper_fy,0.0003400020068511367 +illusion_0.75L,sr,343,68.6,force,lower_fx,0.0022640826646238565 +illusion_0.75L,sr,343,68.6,force,lower_fy,-0.0003654758620541543 +illusion_0.75L,sr,344,68.8,force,front_fx,0.001903799013234675 +illusion_0.75L,sr,344,68.8,force,front_fy,-1.2973456250620075e-05 +illusion_0.75L,sr,344,68.8,force,upper_fx,0.0022276663221418858 +illusion_0.75L,sr,344,68.8,force,upper_fy,0.00034709309693425894 +illusion_0.75L,sr,344,68.8,force,lower_fx,0.002259385772049427 +illusion_0.75L,sr,344,68.8,force,lower_fy,-0.0003626889083534479 +illusion_0.75L,sr,345,69.0,force,front_fx,0.001901301322504878 +illusion_0.75L,sr,345,69.0,force,front_fy,-1.0899446351686493e-05 +illusion_0.75L,sr,345,69.0,force,upper_fx,0.0022266998421400785 +illusion_0.75L,sr,345,69.0,force,upper_fy,0.00035404894151724875 +illusion_0.75L,sr,345,69.0,force,lower_fx,0.002253582701086998 +illusion_0.75L,sr,345,69.0,force,lower_fy,-0.0003593159781303257 +illusion_0.75L,sr,346,69.2,force,front_fx,0.001899479073472321 +illusion_0.75L,sr,346,69.2,force,front_fy,-8.145525498548523e-06 +illusion_0.75L,sr,346,69.2,force,upper_fx,0.002226660493761301 +illusion_0.75L,sr,346,69.2,force,upper_fy,0.0003607085964176804 +illusion_0.75L,sr,346,69.2,force,lower_fx,0.0022482110653072596 +illusion_0.75L,sr,346,69.2,force,lower_fy,-0.00035497755743563175 +illusion_0.75L,sr,347,69.4,force,front_fx,0.0018995319260284305 +illusion_0.75L,sr,347,69.4,force,front_fy,-5.527076609723736e-06 +illusion_0.75L,sr,347,69.4,force,upper_fx,0.002228997414931655 +illusion_0.75L,sr,347,69.4,force,upper_fy,0.00036649845424108207 +illusion_0.75L,sr,347,69.4,force,lower_fx,0.0022448513191193342 +illusion_0.75L,sr,347,69.4,force,lower_fy,-0.0003498280420899391 +illusion_0.75L,sr,348,69.6,force,front_fx,0.0019015882862731814 +illusion_0.75L,sr,348,69.6,force,front_fy,-3.3972180517594097e-06 +illusion_0.75L,sr,348,69.6,force,upper_fx,0.002234081272035837 +illusion_0.75L,sr,348,69.6,force,upper_fy,0.0003711101016961038 +illusion_0.75L,sr,348,69.6,force,lower_fx,0.0022439020685851574 +illusion_0.75L,sr,348,69.6,force,lower_fy,-0.0003443141176830977 +illusion_0.75L,sr,349,69.8,force,front_fx,0.0019043347565457225 +illusion_0.75L,sr,349,69.8,force,front_fy,-1.0838853086170275e-06 +illusion_0.75L,sr,349,69.8,force,upper_fx,0.002240174449980259 +illusion_0.75L,sr,349,69.8,force,upper_fy,0.00037478626472875476 +illusion_0.75L,sr,349,69.8,force,lower_fx,0.0022437043953686953 +illusion_0.75L,sr,349,69.8,force,lower_fy,-0.0003387544711586088 +illusion_0.75L,sr,350,70.0,force,front_fx,0.0019062957726418972 +illusion_0.75L,sr,350,70.0,force,front_fy,1.7741160718287574e-06 +illusion_0.75L,sr,350,70.0,force,upper_fx,0.0022454930003732443 +illusion_0.75L,sr,350,70.0,force,upper_fy,0.0003779909748118371 +illusion_0.75L,sr,350,70.0,force,lower_fx,0.0022426792420446873 +illusion_0.75L,sr,350,70.0,force,lower_fy,-0.00033325448748655617 +illusion_0.75L,sr,351,70.2,force,front_fx,0.0019068819237872958 +illusion_0.75L,sr,351,70.2,force,front_fy,4.643623469746672e-06 +illusion_0.75L,sr,351,70.2,force,upper_fx,0.0022492539137601852 +illusion_0.75L,sr,351,70.2,force,upper_fy,0.00038074684562161565 +illusion_0.75L,sr,351,70.2,force,lower_fx,0.002240256406366825 +illusion_0.75L,sr,351,70.2,force,lower_fy,-0.0003279830561950803 +illusion_0.75L,sr,352,70.4,force,front_fx,0.0019065469969063997 +illusion_0.75L,sr,352,70.4,force,front_fy,6.897774255776312e-06 +illusion_0.75L,sr,352,70.4,force,upper_fx,0.002251794096082449 +illusion_0.75L,sr,352,70.4,force,upper_fy,0.0003826744796242565 +illusion_0.75L,sr,352,70.4,force,lower_fx,0.0022368328645825386 +illusion_0.75L,sr,352,70.4,force,lower_fy,-0.0003233211173210293 +illusion_0.75L,sr,353,70.6,force,front_fx,0.0019062347710132599 +illusion_0.75L,sr,353,70.6,force,front_fy,8.762955076235812e-06 +illusion_0.75L,sr,353,70.6,force,upper_fx,0.0022541768848896027 +illusion_0.75L,sr,353,70.6,force,upper_fy,0.00038356392178684473 +illusion_0.75L,sr,353,70.6,force,lower_fx,0.0022335294634103775 +illusion_0.75L,sr,353,70.6,force,lower_fy,-0.0003193684678990394 +illusion_0.75L,sr,354,70.8,force,front_fx,0.0019056671299040318 +illusion_0.75L,sr,354,70.8,force,front_fy,1.0929446034424473e-05 +illusion_0.75L,sr,354,70.8,force,upper_fx,0.0022559864446520805 +illusion_0.75L,sr,354,70.8,force,upper_fy,0.00038378164754249156 +illusion_0.75L,sr,354,70.8,force,lower_fx,0.002230067504569888 +illusion_0.75L,sr,354,70.8,force,lower_fy,-0.0003160484484396875 +illusion_0.75L,sr,355,71.0,force,front_fx,0.0019041623454540968 +illusion_0.75L,sr,355,71.0,force,front_fy,1.3193089216656517e-05 +illusion_0.75L,sr,355,71.0,force,upper_fx,0.0022564001847058535 +illusion_0.75L,sr,355,71.0,force,upper_fy,0.00038365929503925145 +illusion_0.75L,sr,355,71.0,force,lower_fx,0.0022258346434682608 +illusion_0.75L,sr,355,71.0,force,lower_fy,-0.0003134064609184861 +illusion_0.75L,sr,356,71.2,force,front_fx,0.0019020322943106294 +illusion_0.75L,sr,356,71.2,force,front_fy,1.4785474377276842e-05 +illusion_0.75L,sr,356,71.2,force,upper_fx,0.0022557436022907495 +illusion_0.75L,sr,356,71.2,force,upper_fy,0.000382970436476171 +illusion_0.75L,sr,356,71.2,force,lower_fx,0.002221227390691638 +illusion_0.75L,sr,356,71.2,force,lower_fy,-0.00031176774064078927 +illusion_0.75L,sr,357,71.4,force,front_fx,0.001900315284729004 +illusion_0.75L,sr,357,71.4,force,front_fy,1.5630175767000765e-05 +illusion_0.75L,sr,357,71.4,force,upper_fx,0.0022552586160600185 +illusion_0.75L,sr,357,71.4,force,upper_fy,0.0003814799420069903 +illusion_0.75L,sr,357,71.4,force,lower_fx,0.002217500237748027 +illusion_0.75L,sr,357,71.4,force,lower_fy,-0.000311351876007393 +illusion_0.75L,sr,358,71.6,force,front_fx,0.0019002275075763464 +illusion_0.75L,sr,358,71.6,force,front_fy,1.642714414629154e-05 +illusion_0.75L,sr,358,71.6,force,upper_fx,0.002256374340504408 +illusion_0.75L,sr,358,71.6,force,upper_fy,0.0003793762589339167 +illusion_0.75L,sr,358,71.6,force,lower_fx,0.0022161253727972507 +illusion_0.75L,sr,358,71.6,force,lower_fy,-0.0003118993772659451 +illusion_0.75L,sr,359,71.8,force,front_fx,0.001902000280097127 +illusion_0.75L,sr,359,71.8,force,front_fy,1.7434264009352773e-05 +illusion_0.75L,sr,359,71.8,force,upper_fx,0.0022595038171857595 +illusion_0.75L,sr,359,71.8,force,upper_fy,0.0003771234769374132 +illusion_0.75L,sr,359,71.8,force,lower_fx,0.0022176874335855246 +illusion_0.75L,sr,359,71.8,force,lower_fy,-0.0003132218262180686 +illusion_0.75L,sr,360,72.0,force,front_fx,0.0019046026282012463 +illusion_0.75L,sr,360,72.0,force,front_fy,1.785686799848918e-05 +illusion_0.75L,sr,360,72.0,force,upper_fx,0.0022631813772022724 +illusion_0.75L,sr,360,72.0,force,upper_fy,0.00037484883796423674 +illusion_0.75L,sr,360,72.0,force,lower_fx,0.002220811555162072 +illusion_0.75L,sr,360,72.0,force,lower_fy,-0.0003156781895086169 +illusion_0.75L,sr,361,72.2,force,front_fx,0.0019063918152824044 +illusion_0.75L,sr,361,72.2,force,front_fy,1.7307331290794536e-05 +illusion_0.75L,sr,361,72.2,force,upper_fx,0.0022654980421066284 +illusion_0.75L,sr,361,72.2,force,upper_fy,0.0003725134884007275 +illusion_0.75L,sr,361,72.2,force,lower_fx,0.0022235156502574682 +illusion_0.75L,sr,361,72.2,force,lower_fy,-0.00031977094477042556 +illusion_0.75L,sr,362,72.4,force,front_fx,0.00190687645226717 +illusion_0.75L,sr,362,72.4,force,front_fy,1.6408837836934254e-05 +illusion_0.75L,sr,362,72.4,force,upper_fx,0.0022658747620880604 +illusion_0.75L,sr,362,72.4,force,upper_fy,0.0003701775858644396 +illusion_0.75L,sr,362,72.4,force,lower_fx,0.002225165721029043 +illusion_0.75L,sr,362,72.4,force,lower_fy,-0.0003252461610827595 +illusion_0.75L,sr,363,72.6,force,front_fx,0.0019062369829043746 +illusion_0.75L,sr,363,72.6,force,front_fy,1.568994775880128e-05 +illusion_0.75L,sr,363,72.6,force,upper_fx,0.0022643518168479204 +illusion_0.75L,sr,363,72.6,force,upper_fy,0.0003680018417071551 +illusion_0.75L,sr,363,72.6,force,lower_fx,0.0022258416283875704 +illusion_0.75L,sr,363,72.6,force,lower_fy,-0.0003315616340842098 +illusion_0.75L,sr,364,72.8,force,front_fx,0.0019055695738643408 +illusion_0.75L,sr,364,72.8,force,front_fy,1.4645887858932838e-05 +illusion_0.75L,sr,364,72.8,force,upper_fx,0.002262089168652892 +illusion_0.75L,sr,364,72.8,force,upper_fy,0.00036568052018992603 +illusion_0.75L,sr,364,72.8,force,lower_fx,0.002226723823696375 +illusion_0.75L,sr,364,72.8,force,lower_fy,-0.0003382285067345947 +illusion_0.75L,sr,365,73.0,force,front_fx,0.001904720556922257 +illusion_0.75L,sr,365,73.0,force,front_fy,1.2787554624082986e-05 +illusion_0.75L,sr,365,73.0,force,upper_fx,0.0022589717991650105 +illusion_0.75L,sr,365,73.0,force,upper_fy,0.00036288093542680144 +illusion_0.75L,sr,365,73.0,force,lower_fx,0.0022275657393038273 +illusion_0.75L,sr,365,73.0,force,lower_fy,-0.0003452533856034279 +illusion_0.75L,sr,366,73.2,force,front_fx,0.0019030356779694557 +illusion_0.75L,sr,366,73.2,force,front_fy,1.0432550880068447e-05 +illusion_0.75L,sr,366,73.2,force,upper_fx,0.002254356164485216 +illusion_0.75L,sr,366,73.2,force,upper_fy,0.0003594558802433312 +illusion_0.75L,sr,366,73.2,force,lower_fx,0.0022275345399975777 +illusion_0.75L,sr,366,73.2,force,lower_fy,-0.00035245358594693244 +illusion_0.75L,sr,367,73.4,force,front_fx,0.00190075789578259 +illusion_0.75L,sr,367,73.4,force,front_fy,8.232457730628084e-06 +illusion_0.75L,sr,367,73.4,force,upper_fx,0.0022486483212560415 +illusion_0.75L,sr,367,73.4,force,upper_fy,0.0003555512521415949 +illusion_0.75L,sr,367,73.4,force,lower_fx,0.002226960612460971 +illusion_0.75L,sr,367,73.4,force,lower_fy,-0.0003593070723582059 +illusion_0.75L,sr,368,73.6,force,front_fx,0.0018987619550898671 +illusion_0.75L,sr,368,73.6,force,front_fy,6.1488785831897985e-06 +illusion_0.75L,sr,368,73.6,force,upper_fx,0.002242955146357417 +illusion_0.75L,sr,368,73.6,force,upper_fy,0.00035119979293085635 +illusion_0.75L,sr,368,73.6,force,lower_fx,0.002226891927421093 +illusion_0.75L,sr,368,73.6,force,lower_fy,-0.00036526008625514805 +illusion_0.75L,sr,369,73.8,force,front_fx,0.0018984181806445122 +illusion_0.75L,sr,369,73.8,force,front_fy,3.758354523597518e-06 +illusion_0.75L,sr,369,73.8,force,upper_fx,0.002238932065665722 +illusion_0.75L,sr,369,73.8,force,upper_fy,0.00034622172825038433 +illusion_0.75L,sr,369,73.8,force,lower_fx,0.0022288416512310505 +illusion_0.75L,sr,369,73.8,force,lower_fy,-0.00037018099101260304 +illusion_0.75L,sr,370,74.0,force,front_fx,0.0019000027095898986 +illusion_0.75L,sr,370,74.0,force,front_fy,9.126638929046749e-07 +illusion_0.75L,sr,370,74.0,force,upper_fx,0.0022373422980308533 +illusion_0.75L,sr,370,74.0,force,upper_fy,0.00034057124867103994 +illusion_0.75L,sr,370,74.0,force,lower_fx,0.0022334016393870115 +illusion_0.75L,sr,370,74.0,force,lower_fy,-0.00037417456042021513 +illusion_0.75L,sr,371,74.2,force,front_fx,0.0019027097150683403 +illusion_0.75L,sr,371,74.2,force,front_fy,-1.8108479480360984e-06 +illusion_0.75L,sr,371,74.2,force,upper_fx,0.0022371604572981596 +illusion_0.75L,sr,371,74.2,force,upper_fy,0.0003347274905536324 +illusion_0.75L,sr,371,74.2,force,lower_fx,0.0022394040133804083 +illusion_0.75L,sr,371,74.2,force,lower_fy,-0.000377297168597579 +illusion_0.75L,sr,372,74.4,force,front_fx,0.0019048366229981184 +illusion_0.75L,sr,372,74.4,force,front_fy,-4.075515789736528e-06 +illusion_0.75L,sr,372,74.4,force,upper_fx,0.002236470580101013 +illusion_0.75L,sr,372,74.4,force,upper_fy,0.0003293303889222443 +illusion_0.75L,sr,372,74.4,force,lower_fx,0.002244838746264577 +illusion_0.75L,sr,372,74.4,force,lower_fy,-0.000379647797672078 +illusion_0.75L,sr,373,74.6,force,front_fx,0.0019058043835684657 +illusion_0.75L,sr,373,74.6,force,front_fy,-6.2722101574763656e-06 +illusion_0.75L,sr,373,74.6,force,upper_fx,0.0022346486803144217 +illusion_0.75L,sr,373,74.6,force,upper_fy,0.0003245706029701978 +illusion_0.75L,sr,373,74.6,force,lower_fx,0.0022489905823022127 +illusion_0.75L,sr,373,74.6,force,lower_fy,-0.0003812932991422713 +illusion_0.75L,sr,374,74.8,force,front_fx,0.0019056518794968724 +illusion_0.75L,sr,374,74.8,force,front_fy,-8.727754902793095e-06 +illusion_0.75L,sr,374,74.8,force,upper_fx,0.0022317105904221535 +illusion_0.75L,sr,374,74.8,force,upper_fy,0.0003204217064194381 +illusion_0.75L,sr,374,74.8,force,lower_fx,0.0022517195902764797 +illusion_0.75L,sr,374,74.8,force,lower_fy,-0.00038248623604886234 +illusion_0.75L,sr,375,75.0,force,front_fx,0.0019053773721680045 +illusion_0.75L,sr,375,75.0,force,front_fy,-1.107073239836609e-05 +illusion_0.75L,sr,375,75.0,force,upper_fx,0.00222878810018301 +illusion_0.75L,sr,375,75.0,force,upper_fy,0.0003167889954056591 +illusion_0.75L,sr,375,75.0,force,lower_fx,0.002253999002277851 +illusion_0.75L,sr,375,75.0,force,lower_fy,-0.00038311348180286586 +illusion_0.75L,sr,376,75.2,force,front_fx,0.001904935808852315 +illusion_0.75L,sr,376,75.2,force,front_fy,-1.2831472304242197e-05 +illusion_0.75L,sr,376,75.2,force,upper_fx,0.002225932665169239 +illusion_0.75L,sr,376,75.2,force,upper_fy,0.0003141082124784589 +illusion_0.75L,sr,376,75.2,force,lower_fx,0.0022557908669114113 +illusion_0.75L,sr,376,75.2,force,lower_fy,-0.00038306924398057163 +illusion_0.75L,sr,377,75.4,force,front_fx,0.001903665834106505 +illusion_0.75L,sr,377,75.4,force,front_fy,-1.4142310647002887e-05 +illusion_0.75L,sr,377,75.4,force,upper_fx,0.0022223598789423704 +illusion_0.75L,sr,377,75.4,force,upper_fy,0.0003125945513602346 +illusion_0.75L,sr,377,75.4,force,lower_fx,0.002256259322166443 +illusion_0.75L,sr,377,75.4,force,lower_fy,-0.00038236414548009634 +illusion_0.75L,sr,378,75.6,force,front_fx,0.001901667914353311 +illusion_0.75L,sr,378,75.6,force,front_fy,-1.5455058019142598e-05 +illusion_0.75L,sr,378,75.6,force,upper_fx,0.002218303270637989 +illusion_0.75L,sr,378,75.6,force,upper_fy,0.00031215898343361914 +illusion_0.75L,sr,378,75.6,force,lower_fx,0.002255556406453252 +illusion_0.75L,sr,378,75.6,force,lower_fy,-0.0003812998184002936 +illusion_0.75L,sr,379,75.8,force,front_fx,0.001899765687994659 +illusion_0.75L,sr,379,75.8,force,front_fy,-1.6697011233191006e-05 +illusion_0.75L,sr,379,75.8,force,upper_fx,0.0022147661074995995 +illusion_0.75L,sr,379,75.8,force,upper_fy,0.00031258835224434733 +illusion_0.75L,sr,379,75.8,force,lower_fx,0.0022545484825968742 +illusion_0.75L,sr,379,75.8,force,lower_fy,-0.00037993176374584436 +illusion_0.75L,sr,380,76.0,force,front_fx,0.0018991610268130898 +illusion_0.75L,sr,380,76.0,force,front_fy,-1.7410893633496016e-05 +illusion_0.75L,sr,380,76.0,force,upper_fx,0.002213231287896633 +illusion_0.75L,sr,380,76.0,force,upper_fy,0.0003139433974865824 +illusion_0.75L,sr,380,76.0,force,lower_fx,0.0022546390537172556 +illusion_0.75L,sr,380,76.0,force,lower_fy,-0.0003781257546506822 +illusion_0.75L,sr,381,76.2,force,front_fx,0.0019003944471478462 +illusion_0.75L,sr,381,76.2,force,front_fy,-1.746612360875588e-05 +illusion_0.75L,sr,381,76.2,force,upper_fx,0.002214557258412242 +illusion_0.75L,sr,381,76.2,force,upper_fy,0.0003163288929499686 +illusion_0.75L,sr,381,76.2,force,lower_fx,0.0022566744592040777 +illusion_0.75L,sr,381,76.2,force,lower_fy,-0.00037576761678792536 +illusion_0.75L,sr,382,76.4,force,front_fx,0.001902810763567686 +illusion_0.75L,sr,382,76.4,force,front_fy,-1.717377017484978e-05 +illusion_0.75L,sr,382,76.4,force,upper_fx,0.002217754488810897 +illusion_0.75L,sr,382,76.4,force,upper_fy,0.0003198662889190018 +illusion_0.75L,sr,382,76.4,force,lower_fx,0.0022596835624426603 +illusion_0.75L,sr,382,76.4,force,lower_fy,-0.0003731429169420153 +illusion_0.75L,sr,383,76.6,force,front_fx,0.0019047280075028539 +illusion_0.75L,sr,383,76.6,force,front_fy,-1.6786783817224205e-05 +illusion_0.75L,sr,383,76.6,force,upper_fx,0.002220909809693694 +illusion_0.75L,sr,383,76.6,force,upper_fy,0.0003245229017920792 +illusion_0.75L,sr,383,76.6,force,lower_fx,0.002261715941131115 +illusion_0.75L,sr,383,76.6,force,lower_fy,-0.00037065392825752497 +illusion_0.75L,sr,384,76.8,force,front_fx,0.0019055274315178394 +illusion_0.75L,sr,384,76.8,force,front_fy,-1.604718818271067e-05 +illusion_0.75L,sr,384,76.8,force,upper_fx,0.0022232667542994022 +illusion_0.75L,sr,384,76.8,force,upper_fy,0.0003301370015833527 +illusion_0.75L,sr,384,76.8,force,lower_fx,0.002261986956000328 +illusion_0.75L,sr,384,76.8,force,lower_fy,-0.0003683544637169689 +illusion_0.75L,sr,385,77.0,force,front_fx,0.0019051249837502837 +illusion_0.75L,sr,385,77.0,force,front_fy,-1.4706531146657653e-05 +illusion_0.75L,sr,385,77.0,force,upper_fx,0.0022245622240006924 +illusion_0.75L,sr,385,77.0,force,upper_fy,0.0003366176097188145 +illusion_0.75L,sr,385,77.0,force,lower_fx,0.0022603003308176994 +illusion_0.75L,sr,385,77.0,force,lower_fy,-0.0003659731592051685 +illusion_0.75L,sr,386,77.2,force,front_fx,0.0019045125227421522 +illusion_0.75L,sr,386,77.2,force,front_fy,-1.2829010302084498e-05 +illusion_0.75L,sr,386,77.2,force,upper_fx,0.0022257661912590265 +illusion_0.75L,sr,386,77.2,force,upper_fy,0.00034360570134595037 +illusion_0.75L,sr,386,77.2,force,lower_fx,0.002257745247334242 +illusion_0.75L,sr,386,77.2,force,lower_fy,-0.0003631229337770492 +illusion_0.75L,sr,387,77.4,force,front_fx,0.0019038148457184434 +illusion_0.75L,sr,387,77.4,force,front_fy,-1.0833793567144312e-05 +illusion_0.75L,sr,387,77.4,force,upper_fx,0.0022270018234848976 +illusion_0.75L,sr,387,77.4,force,upper_fy,0.0003506586654111743 +illusion_0.75L,sr,387,77.4,force,lower_fx,0.0022545666433870792 +illusion_0.75L,sr,387,77.4,force,lower_fy,-0.0003598368784878403 +illusion_0.75L,sr,388,77.6,force,front_fx,0.0019024141365662217 +illusion_0.75L,sr,388,77.6,force,front_fy,-8.86608540895395e-06 +illusion_0.75L,sr,388,77.6,force,upper_fx,0.0022274982184171677 +illusion_0.75L,sr,388,77.6,force,upper_fy,0.000357366050593555 +illusion_0.75L,sr,388,77.6,force,lower_fx,0.0022500548511743546 +illusion_0.75L,sr,388,77.6,force,lower_fy,-0.0003562499477993697 +illusion_0.75L,sr,389,77.8,force,front_fx,0.0019003486959263682 +illusion_0.75L,sr,389,77.8,force,front_fy,-6.6707234509522095e-06 +illusion_0.75L,sr,389,77.8,force,upper_fx,0.0022273666691035032 +illusion_0.75L,sr,389,77.8,force,upper_fy,0.0003635297471191734 +illusion_0.75L,sr,389,77.8,force,lower_fx,0.002244393341243267 +illusion_0.75L,sr,389,77.8,force,lower_fy,-0.0003522776532918215 +illusion_0.75L,sr,390,78.0,force,front_fx,0.0018983219051733613 +illusion_0.75L,sr,390,78.0,force,front_fy,-4.030547188449418e-06 +illusion_0.75L,sr,390,78.0,force,upper_fx,0.0022273471113294363 +illusion_0.75L,sr,390,78.0,force,upper_fy,0.0003690181765705347 +illusion_0.75L,sr,390,78.0,force,lower_fx,0.002238506218418479 +illusion_0.75L,sr,390,78.0,force,lower_fy,-0.00034762927680276334 +illusion_0.75L,sr,391,78.2,force,front_fx,0.0018975880229845643 +illusion_0.75L,sr,391,78.2,force,front_fy,-1.264793127120356e-06 +illusion_0.75L,sr,391,78.2,force,upper_fx,0.002228877507150173 +illusion_0.75L,sr,391,78.2,force,upper_fy,0.0003735375066753477 +illusion_0.75L,sr,391,78.2,force,lower_fx,0.002234020736068487 +illusion_0.75L,sr,391,78.2,force,lower_fy,-0.00034235359635204077 +illusion_0.75L,sr,392,78.4,force,front_fx,0.0018987166695296764 +illusion_0.75L,sr,392,78.4,force,front_fy,1.105845399251848e-06 +illusion_0.75L,sr,392,78.4,force,upper_fx,0.0022328742779791355 +illusion_0.75L,sr,392,78.4,force,upper_fy,0.00037674777559004724 +illusion_0.75L,sr,392,78.4,force,lower_fx,0.0022319243289530277 +illusion_0.75L,sr,392,78.4,force,lower_fy,-0.0003367823373991996 +illusion_0.75L,sr,393,78.6,force,front_fx,0.0019012629054486752 +illusion_0.75L,sr,393,78.6,force,front_fy,3.261506208218634e-06 +illusion_0.75L,sr,393,78.6,force,upper_fx,0.0022386733908206224 +illusion_0.75L,sr,393,78.6,force,upper_fy,0.0003788743051700294 +illusion_0.75L,sr,393,78.6,force,lower_fx,0.00223160139285028 +illusion_0.75L,sr,393,78.6,force,lower_fy,-0.00033127202186733484 +illusion_0.75L,sr,394,78.8,force,front_fx,0.0019035518635064363 +illusion_0.75L,sr,394,78.8,force,front_fy,5.842734026373364e-06 +illusion_0.75L,sr,394,78.8,force,upper_fx,0.002244248054921627 +illusion_0.75L,sr,394,78.8,force,upper_fy,0.0003804131702054292 +illusion_0.75L,sr,394,78.8,force,lower_fx,0.0022311939392238855 +illusion_0.75L,sr,394,78.8,force,lower_fy,-0.00032606921740807593 +illusion_0.75L,sr,395,79.0,force,front_fx,0.0019048519898205996 +illusion_0.75L,sr,395,79.0,force,front_fy,8.446868378086947e-06 +illusion_0.75L,sr,395,79.0,force,upper_fx,0.002248674863949418 +illusion_0.75L,sr,395,79.0,force,upper_fy,0.0003815829404629767 +illusion_0.75L,sr,395,79.0,force,lower_fx,0.002229991601780057 +illusion_0.75L,sr,395,79.0,force,lower_fy,-0.0003214017197024077 +illusion_0.75L,sr,396,79.2,force,front_fx,0.0019049345282837749 +illusion_0.75L,sr,396,79.2,force,front_fy,1.0535115507082082e-05 +illusion_0.75L,sr,396,79.2,force,upper_fx,0.0022515305317938328 +illusion_0.75L,sr,396,79.2,force,upper_fy,0.00038227345794439316 +illusion_0.75L,sr,396,79.2,force,lower_fx,0.002227657474577427 +illusion_0.75L,sr,396,79.2,force,lower_fy,-0.0003176231402903795 +illusion_0.75L,sr,397,79.4,force,front_fx,0.001904672128148377 +illusion_0.75L,sr,397,79.4,force,front_fy,1.2107746442779899e-05 +illusion_0.75L,sr,397,79.4,force,upper_fx,0.002253690268844366 +illusion_0.75L,sr,397,79.4,force,upper_fy,0.00038225066964514554 +illusion_0.75L,sr,397,79.4,force,lower_fx,0.002225098665803671 +illusion_0.75L,sr,397,79.4,force,lower_fy,-0.000314904231345281 +illusion_0.75L,sr,398,79.6,force,front_fx,0.001904322300106287 +illusion_0.75L,sr,398,79.6,force,front_fy,1.3630624380311929e-05 +illusion_0.75L,sr,398,79.6,force,upper_fx,0.0022554551251232624 +illusion_0.75L,sr,398,79.6,force,upper_fy,0.0003816709213424474 +illusion_0.75L,sr,398,79.6,force,lower_fx,0.00222270586527884 +illusion_0.75L,sr,398,79.6,force,lower_fy,-0.00031319502159021795 +illusion_0.75L,sr,399,79.8,force,front_fx,0.0019032205455005169 +illusion_0.75L,sr,399,79.8,force,front_fy,1.5256129699992016e-05 +illusion_0.75L,sr,399,79.8,force,upper_fx,0.002255904721096158 +illusion_0.75L,sr,399,79.8,force,upper_fy,0.00038088540895842016 +illusion_0.75L,sr,399,79.8,force,lower_fx,0.0022197160869836807 +illusion_0.75L,sr,399,79.8,force,lower_fy,-0.00031243532430380583 +illusion_0.75L,sr,0,0.0,alpha,front,-0.0403485810211414 +illusion_0.75L,sr,0,0.0,alpha,upper,0.033484695299226826 +illusion_0.75L,sr,0,0.0,alpha,lower,0.033484695299226826 +illusion_0.75L,sr,1,0.2,alpha,front,-0.03713317888975198 +illusion_0.75L,sr,1,0.2,alpha,upper,0.030929297293356202 +illusion_0.75L,sr,1,0.2,alpha,lower,0.030929297293356202 +illusion_0.75L,sr,2,0.4,alpha,front,-0.020213898217175397 +illusion_0.75L,sr,2,0.4,alpha,upper,0.018348487309668933 +illusion_0.75L,sr,2,0.4,alpha,lower,0.018348487309668933 +illusion_0.75L,sr,3,0.6,alpha,front,-0.01024618221011047 +illusion_0.75L,sr,3,0.6,alpha,upper,0.01087314896796944 +illusion_0.75L,sr,3,0.6,alpha,lower,0.01087314896796944 +illusion_0.75L,sr,4,0.8,alpha,front,0.0007751107581404001 +illusion_0.75L,sr,4,0.8,alpha,upper,0.0026635329230828286 +illusion_0.75L,sr,4,0.8,alpha,lower,0.0026635329230828286 +illusion_0.75L,sr,5,1.0,alpha,front,0.014180391521456212 +illusion_0.75L,sr,5,1.0,alpha,upper,-0.007275107109495597 +illusion_0.75L,sr,5,1.0,alpha,lower,-0.007275107109495597 +illusion_0.75L,sr,6,1.2,alpha,front,0.025282572360938393 +illusion_0.75L,sr,6,1.2,alpha,upper,-0.01552287909311204 +illusion_0.75L,sr,6,1.2,alpha,lower,-0.01552287909311204 +illusion_0.75L,sr,7,1.4,alpha,front,0.032918429006220135 +illusion_0.75L,sr,7,1.4,alpha,upper,-0.021232786353499938 +illusion_0.75L,sr,7,1.4,alpha,lower,-0.021232786353499938 +illusion_0.75L,sr,8,1.6,alpha,front,0.03721944705698309 +illusion_0.75L,sr,8,1.6,alpha,upper,-0.024530963475632255 +illusion_0.75L,sr,8,1.6,alpha,lower,-0.024530963475632255 +illusion_0.75L,sr,9,1.8,alpha,front,0.037110661043285205 +illusion_0.75L,sr,9,1.8,alpha,upper,-0.02467507557589893 +illusion_0.75L,sr,9,1.8,alpha,lower,-0.02467507557589893 +illusion_0.75L,sr,10,2.0,alpha,front,0.03538613704512191 +illusion_0.75L,sr,10,2.0,alpha,upper,-0.023790262814089556 +illusion_0.75L,sr,10,2.0,alpha,lower,-0.023790262814089556 +illusion_0.75L,sr,11,2.2,alpha,front,0.029617255253032132 +illusion_0.75L,sr,11,2.2,alpha,upper,-0.020096640977802338 +illusion_0.75L,sr,11,2.2,alpha,lower,-0.020096640977802338 +illusion_0.75L,sr,12,2.4,alpha,front,0.020330124899465802 +illusion_0.75L,sr,12,2.4,alpha,upper,-0.013993353032778067 +illusion_0.75L,sr,12,2.4,alpha,lower,-0.013993353032778067 +illusion_0.75L,sr,13,2.6,alpha,front,0.010471934830614895 +illusion_0.75L,sr,13,2.6,alpha,upper,-0.007658001835721618 +illusion_0.75L,sr,13,2.6,alpha,lower,-0.007658001835721618 +illusion_0.75L,sr,14,2.8,alpha,front,0.002436820400332402 +illusion_0.75L,sr,14,2.8,alpha,upper,-0.0028085136703079917 +illusion_0.75L,sr,14,2.8,alpha,lower,-0.0028085136703079917 +illusion_0.75L,sr,15,3.0,alpha,front,-0.0037947945058973832 +illusion_0.75L,sr,15,3.0,alpha,upper,0.000616165232451095 +illusion_0.75L,sr,15,3.0,alpha,lower,0.000616165232451095 +illusion_0.75L,sr,16,3.2,alpha,front,-0.010726667722924618 +illusion_0.75L,sr,16,3.2,alpha,upper,0.0045101479652768645 +illusion_0.75L,sr,16,3.2,alpha,lower,0.0045101479652768645 +illusion_0.75L,sr,17,3.4,alpha,front,-0.01752406969002744 +illusion_0.75L,sr,17,3.4,alpha,upper,0.00828118085105059 +illusion_0.75L,sr,17,3.4,alpha,lower,0.00828118085105059 +illusion_0.75L,sr,18,3.6,alpha,front,-0.02135789208253977 +illusion_0.75L,sr,18,3.6,alpha,upper,0.00988298989639215 +illusion_0.75L,sr,18,3.6,alpha,lower,0.00988298989639215 +illusion_0.75L,sr,19,3.8,alpha,front,-0.023788154009177595 +illusion_0.75L,sr,19,3.8,alpha,upper,0.010503450243268653 +illusion_0.75L,sr,19,3.8,alpha,lower,0.010503450243268653 +illusion_0.75L,sr,20,4.0,alpha,front,-0.027350254729533036 +illusion_0.75L,sr,20,4.0,alpha,upper,0.012046318829144018 +illusion_0.75L,sr,20,4.0,alpha,lower,0.012046318829144018 +illusion_0.75L,sr,21,4.2,alpha,front,-0.03085821765307351 +illusion_0.75L,sr,21,4.2,alpha,upper,0.013649297297471942 +illusion_0.75L,sr,21,4.2,alpha,lower,0.013649297297471942 +illusion_0.75L,sr,22,4.4,alpha,front,-0.03313229920669444 +illusion_0.75L,sr,22,4.4,alpha,upper,0.014464729103557145 +illusion_0.75L,sr,22,4.4,alpha,lower,0.014464729103557145 +illusion_0.75L,sr,23,4.6,alpha,front,-0.03311174539319642 +illusion_0.75L,sr,23,4.6,alpha,upper,0.01373372292278982 +illusion_0.75L,sr,23,4.6,alpha,lower,0.01373372292278982 +illusion_0.75L,sr,24,4.8,alpha,front,-0.032001984107885406 +illusion_0.75L,sr,24,4.8,alpha,upper,0.012364796978515558 +illusion_0.75L,sr,24,4.8,alpha,lower,0.012364796978515558 +illusion_0.75L,sr,25,5.0,alpha,front,-0.03434356762473664 +illusion_0.75L,sr,25,5.0,alpha,upper,0.01373252776468961 +illusion_0.75L,sr,25,5.0,alpha,lower,0.01373252776468961 +illusion_0.75L,sr,26,5.2,alpha,front,-0.03465961670269657 +illusion_0.75L,sr,26,5.2,alpha,upper,0.013782654222600332 +illusion_0.75L,sr,26,5.2,alpha,lower,0.013782654222600332 +illusion_0.75L,sr,27,5.4,alpha,front,-0.030948070061187966 +illusion_0.75L,sr,27,5.4,alpha,upper,0.01105653724050415 +illusion_0.75L,sr,27,5.4,alpha,lower,0.01105653724050415 +illusion_0.75L,sr,28,5.6,alpha,front,-0.028395986956893826 +illusion_0.75L,sr,28,5.6,alpha,upper,0.009403882189307267 +illusion_0.75L,sr,28,5.6,alpha,lower,0.009403882189307267 +illusion_0.75L,sr,29,5.8,alpha,front,-0.02655167257375571 +illusion_0.75L,sr,29,5.8,alpha,upper,0.008475435176431373 +illusion_0.75L,sr,29,5.8,alpha,lower,0.008475435176431373 +illusion_0.75L,sr,30,6.0,alpha,front,-0.023901628316572915 +illusion_0.75L,sr,30,6.0,alpha,upper,0.00714846372901165 +illusion_0.75L,sr,30,6.0,alpha,lower,0.00714846372901165 +illusion_0.75L,sr,31,6.2,alpha,front,-0.02070613446499403 +illusion_0.75L,sr,31,6.2,alpha,upper,0.005599015244673919 +illusion_0.75L,sr,31,6.2,alpha,lower,0.005599015244673919 +illusion_0.75L,sr,32,6.4,alpha,front,-0.01575212050159891 +illusion_0.75L,sr,32,6.4,alpha,upper,0.00291021167454468 +illusion_0.75L,sr,32,6.4,alpha,lower,0.00291021167454468 +illusion_0.75L,sr,33,6.6,alpha,front,-0.013340780297920548 +illusion_0.75L,sr,33,6.6,alpha,upper,0.0022447223769937463 +illusion_0.75L,sr,33,6.6,alpha,lower,0.0022447223769937463 +illusion_0.75L,sr,34,6.8,alpha,front,-0.011343137834065792 +illusion_0.75L,sr,34,6.8,alpha,upper,0.001985177558486456 +illusion_0.75L,sr,34,6.8,alpha,lower,0.001985177558486456 +illusion_0.75L,sr,35,7.0,alpha,front,-0.00803879928521209 +illusion_0.75L,sr,35,7.0,alpha,upper,0.0008354461644380224 +illusion_0.75L,sr,35,7.0,alpha,lower,0.0008354461644380224 +illusion_0.75L,sr,36,7.2,alpha,front,-0.0037621375478258806 +illusion_0.75L,sr,36,7.2,alpha,upper,-0.0009795798749739626 +illusion_0.75L,sr,36,7.2,alpha,lower,-0.0009795798749739626 +illusion_0.75L,sr,37,7.4,alpha,front,-0.0010450087419643095 +illusion_0.75L,sr,37,7.4,alpha,upper,-0.00161198553797982 +illusion_0.75L,sr,37,7.4,alpha,lower,-0.00161198553797982 +illusion_0.75L,sr,38,7.6,alpha,front,0.0007417759439244109 +illusion_0.75L,sr,38,7.6,alpha,upper,-0.0015598789159700626 +illusion_0.75L,sr,38,7.6,alpha,lower,-0.0015598789159700626 +illusion_0.75L,sr,39,7.8,alpha,front,0.0035839390624773453 +illusion_0.75L,sr,39,7.8,alpha,upper,-0.0023111909844640843 +illusion_0.75L,sr,39,7.8,alpha,lower,-0.0023111909844640843 +illusion_0.75L,sr,40,8.0,alpha,front,0.007299753637689693 +illusion_0.75L,sr,40,8.0,alpha,upper,-0.003746881382835618 +illusion_0.75L,sr,40,8.0,alpha,lower,-0.003746881382835618 +illusion_0.75L,sr,41,8.2,alpha,front,0.010400741701440529 +illusion_0.75L,sr,41,8.2,alpha,upper,-0.0047850879213907835 +illusion_0.75L,sr,41,8.2,alpha,lower,-0.0047850879213907835 +illusion_0.75L,sr,42,8.4,alpha,front,0.012951863796966239 +illusion_0.75L,sr,42,8.4,alpha,upper,-0.005491972913612184 +illusion_0.75L,sr,42,8.4,alpha,lower,-0.005491972913612184 +illusion_0.75L,sr,43,8.6,alpha,front,0.015379859821549893 +illusion_0.75L,sr,43,8.6,alpha,upper,-0.006198932669794294 +illusion_0.75L,sr,43,8.6,alpha,lower,-0.006198932669794294 +illusion_0.75L,sr,44,8.8,alpha,front,0.018420185843200168 +illusion_0.75L,sr,44,8.8,alpha,upper,-0.007463253612665213 +illusion_0.75L,sr,44,8.8,alpha,lower,-0.007463253612665213 +illusion_0.75L,sr,45,9.0,alpha,front,0.0215712143443178 +illusion_0.75L,sr,45,9.0,alpha,upper,-0.008929353305808949 +illusion_0.75L,sr,45,9.0,alpha,lower,-0.008929353305808949 +illusion_0.75L,sr,46,9.2,alpha,front,0.023716918141074766 +illusion_0.75L,sr,46,9.2,alpha,upper,-0.009786037730190364 +illusion_0.75L,sr,46,9.2,alpha,lower,-0.009786037730190364 +illusion_0.75L,sr,47,9.4,alpha,front,0.024551201082770535 +illusion_0.75L,sr,47,9.4,alpha,upper,-0.009822700629857836 +illusion_0.75L,sr,47,9.4,alpha,lower,-0.009822700629857836 +illusion_0.75L,sr,48,9.6,alpha,front,0.025384236835434865 +illusion_0.75L,sr,48,9.6,alpha,upper,-0.010025991763424794 +illusion_0.75L,sr,48,9.6,alpha,lower,-0.010025991763424794 +illusion_0.75L,sr,49,9.8,alpha,front,0.026579844582026696 +illusion_0.75L,sr,49,9.8,alpha,upper,-0.010679804174567736 +illusion_0.75L,sr,49,9.8,alpha,lower,-0.010679804174567736 +illusion_0.75L,sr,50,10.0,alpha,front,0.02595796712267151 +illusion_0.75L,sr,50,10.0,alpha,upper,-0.010181088456490822 +illusion_0.75L,sr,50,10.0,alpha,lower,-0.010181088456490822 +illusion_0.75L,sr,51,10.2,alpha,front,0.02498864456908972 +illusion_0.75L,sr,51,10.2,alpha,upper,-0.009623545005603348 +illusion_0.75L,sr,51,10.2,alpha,lower,-0.009623545005603348 +illusion_0.75L,sr,52,10.4,alpha,front,0.023223911196153746 +illusion_0.75L,sr,52,10.4,alpha,upper,-0.008671412552026359 +illusion_0.75L,sr,52,10.4,alpha,lower,-0.008671412552026359 +illusion_0.75L,sr,53,10.6,alpha,front,0.02128400171118594 +illusion_0.75L,sr,53,10.6,alpha,upper,-0.0077787045454093115 +illusion_0.75L,sr,53,10.6,alpha,lower,-0.0077787045454093115 +illusion_0.75L,sr,54,10.8,alpha,front,0.018683542172122786 +illusion_0.75L,sr,54,10.8,alpha,upper,-0.006569648841818321 +illusion_0.75L,sr,54,10.8,alpha,lower,-0.006569648841818321 +illusion_0.75L,sr,55,11.0,alpha,front,0.016138677576140598 +illusion_0.75L,sr,55,11.0,alpha,upper,-0.00555257651788274 +illusion_0.75L,sr,55,11.0,alpha,lower,-0.00555257651788274 +illusion_0.75L,sr,56,11.2,alpha,front,0.013466566014738309 +illusion_0.75L,sr,56,11.2,alpha,upper,-0.00456250019732013 +illusion_0.75L,sr,56,11.2,alpha,lower,-0.00456250019732013 +illusion_0.75L,sr,57,11.4,alpha,front,0.01071109474464374 +illusion_0.75L,sr,57,11.4,alpha,upper,-0.0036042493324483778 +illusion_0.75L,sr,57,11.4,alpha,lower,-0.0036042493324483778 +illusion_0.75L,sr,58,11.6,alpha,front,0.007119960209950822 +illusion_0.75L,sr,58,11.6,alpha,upper,-0.0020915656333579252 +illusion_0.75L,sr,58,11.6,alpha,lower,-0.0020915656333579252 +illusion_0.75L,sr,59,11.8,alpha,front,0.0044708184221671984 +illusion_0.75L,sr,59,11.8,alpha,upper,-0.0013124701826612746 +illusion_0.75L,sr,59,11.8,alpha,lower,-0.0013124701826612746 +illusion_0.75L,sr,60,12.0,alpha,front,0.0016950019362514375 +illusion_0.75L,sr,60,12.0,alpha,upper,-0.00044208985217755384 +illusion_0.75L,sr,60,12.0,alpha,lower,-0.00044208985217755384 +illusion_0.75L,sr,61,12.2,alpha,front,-0.001702420189877478 +illusion_0.75L,sr,61,12.2,alpha,upper,0.0009079749246665245 +illusion_0.75L,sr,61,12.2,alpha,lower,0.0009079749246665245 +illusion_0.75L,sr,62,12.4,alpha,front,-0.005065316823029641 +illusion_0.75L,sr,62,12.4,alpha,upper,0.0022730071393307454 +illusion_0.75L,sr,62,12.4,alpha,lower,0.0022730071393307454 +illusion_0.75L,sr,63,12.6,alpha,front,-0.007826868224419997 +illusion_0.75L,sr,63,12.6,alpha,upper,0.003259892178407671 +illusion_0.75L,sr,63,12.6,alpha,lower,0.003259892178407671 +illusion_0.75L,sr,64,12.8,alpha,front,-0.01027799997763805 +illusion_0.75L,sr,64,12.8,alpha,upper,0.004107234948578217 +illusion_0.75L,sr,64,12.8,alpha,lower,0.004107234948578217 +illusion_0.75L,sr,65,13.0,alpha,front,-0.013070100556563798 +illusion_0.75L,sr,65,13.0,alpha,upper,0.0053121759664696705 +illusion_0.75L,sr,65,13.0,alpha,lower,0.0053121759664696705 +illusion_0.75L,sr,66,13.2,alpha,front,-0.01605703245894899 +illusion_0.75L,sr,66,13.2,alpha,upper,0.006777247125051886 +illusion_0.75L,sr,66,13.2,alpha,lower,0.006777247125051886 +illusion_0.75L,sr,67,13.4,alpha,front,-0.017828837922701943 +illusion_0.75L,sr,67,13.4,alpha,upper,0.007475694851522691 +illusion_0.75L,sr,67,13.4,alpha,lower,0.007475694851522691 +illusion_0.75L,sr,68,13.6,alpha,front,-0.01867357410726682 +illusion_0.75L,sr,68,13.6,alpha,upper,0.007638981092678354 +illusion_0.75L,sr,68,13.6,alpha,lower,0.007638981092678354 +illusion_0.75L,sr,69,13.8,alpha,front,-0.01975803533467653 +illusion_0.75L,sr,69,13.8,alpha,upper,0.008136273507052108 +illusion_0.75L,sr,69,13.8,alpha,lower,0.008136273507052108 +illusion_0.75L,sr,70,14.0,alpha,front,-0.020698082781231295 +illusion_0.75L,sr,70,14.0,alpha,upper,0.00868579966088362 +illusion_0.75L,sr,70,14.0,alpha,lower,0.00868579966088362 +illusion_0.75L,sr,71,14.2,alpha,front,-0.01973108804656093 +illusion_0.75L,sr,71,14.2,alpha,upper,0.007988764950906668 +illusion_0.75L,sr,71,14.2,alpha,lower,0.007988764950906668 +illusion_0.75L,sr,72,14.4,alpha,front,-0.01946373038587408 +illusion_0.75L,sr,72,14.4,alpha,upper,0.007983502857842814 +illusion_0.75L,sr,72,14.4,alpha,lower,0.007983502857842814 +illusion_0.75L,sr,73,14.6,alpha,front,-0.017228350107912335 +illusion_0.75L,sr,73,14.6,alpha,upper,0.006680161358621067 +illusion_0.75L,sr,73,14.6,alpha,lower,0.006680161358621067 +illusion_0.75L,sr,74,14.8,alpha,front,-0.015166837542515523 +illusion_0.75L,sr,74,14.8,alpha,upper,0.0056571628291507 +illusion_0.75L,sr,74,14.8,alpha,lower,0.0056571628291507 +illusion_0.75L,sr,75,15.0,alpha,front,-0.014052580519539434 +illusion_0.75L,sr,75,15.0,alpha,upper,0.005465185021938532 +illusion_0.75L,sr,75,15.0,alpha,lower,0.005465185021938532 +illusion_0.75L,sr,76,15.2,alpha,front,-0.011505438030417925 +illusion_0.75L,sr,76,15.2,alpha,upper,0.00432305444344689 +illusion_0.75L,sr,76,15.2,alpha,lower,0.00432305444344689 +illusion_0.75L,sr,77,15.4,alpha,front,-0.0077090615300099965 +illusion_0.75L,sr,77,15.4,alpha,upper,0.002348294404452979 +illusion_0.75L,sr,77,15.4,alpha,lower,0.002348294404452979 +illusion_0.75L,sr,78,15.6,alpha,front,-0.0057312856348705615 +illusion_0.75L,sr,78,15.6,alpha,upper,0.001781843721489814 +illusion_0.75L,sr,78,15.6,alpha,lower,0.001781843721489814 +illusion_0.75L,sr,79,15.8,alpha,front,-0.004216557391762667 +illusion_0.75L,sr,79,15.8,alpha,upper,0.001587303118637435 +illusion_0.75L,sr,79,15.8,alpha,lower,0.001587303118637435 +illusion_0.75L,sr,80,16.0,alpha,front,-0.0012428580969348728 +illusion_0.75L,sr,80,16.0,alpha,upper,0.00032355254346995 +illusion_0.75L,sr,80,16.0,alpha,lower,0.00032355254346995 +illusion_0.75L,sr,81,16.2,alpha,front,0.0024019746815178056 +illusion_0.75L,sr,81,16.2,alpha,upper,-0.0014430038008259169 +illusion_0.75L,sr,81,16.2,alpha,lower,-0.0014430038008259169 +illusion_0.75L,sr,82,16.4,alpha,front,0.004941358258008649 +illusion_0.75L,sr,82,16.4,alpha,upper,-0.0024192790085812276 +illusion_0.75L,sr,82,16.4,alpha,lower,-0.0024192790085812276 +illusion_0.75L,sr,83,16.6,alpha,front,0.0064999494436658025 +illusion_0.75L,sr,83,16.6,alpha,upper,-0.002720856366150791 +illusion_0.75L,sr,83,16.6,alpha,lower,-0.002720856366150791 +illusion_0.75L,sr,84,16.8,alpha,front,0.00889975811704459 +illusion_0.75L,sr,84,16.8,alpha,upper,-0.0037094719057198734 +illusion_0.75L,sr,84,16.8,alpha,lower,-0.0037094719057198734 +illusion_0.75L,sr,85,17.0,alpha,front,0.012274007752384672 +illusion_0.75L,sr,85,17.0,alpha,upper,-0.005492546672439015 +illusion_0.75L,sr,85,17.0,alpha,lower,-0.005492546672439015 +illusion_0.75L,sr,86,17.2,alpha,front,0.014296501773010492 +illusion_0.75L,sr,86,17.2,alpha,upper,-0.0063619070764574515 +illusion_0.75L,sr,86,17.2,alpha,lower,-0.0063619070764574515 +illusion_0.75L,sr,87,17.4,alpha,front,0.015559967369440292 +illusion_0.75L,sr,87,17.4,alpha,upper,-0.006774215840706435 +illusion_0.75L,sr,87,17.4,alpha,lower,-0.006774215840706435 +illusion_0.75L,sr,88,17.6,alpha,front,0.016242689347511954 +illusion_0.75L,sr,88,17.6,alpha,upper,-0.006868668389174777 +illusion_0.75L,sr,88,17.6,alpha,lower,-0.006868668389174777 +illusion_0.75L,sr,89,17.8,alpha,front,0.01760105913318108 +illusion_0.75L,sr,89,17.8,alpha,upper,-0.007583747685931452 +illusion_0.75L,sr,89,17.8,alpha,lower,-0.007583747685931452 +illusion_0.75L,sr,90,18.0,alpha,front,0.018491240644139012 +illusion_0.75L,sr,90,18.0,alpha,upper,-0.008076512383834306 +illusion_0.75L,sr,90,18.0,alpha,lower,-0.008076512383834306 +illusion_0.75L,sr,91,18.2,alpha,front,0.0177870861641614 +illusion_0.75L,sr,91,18.2,alpha,upper,-0.007520850009547719 +illusion_0.75L,sr,91,18.2,alpha,lower,-0.007520850009547719 +illusion_0.75L,sr,92,18.4,alpha,front,0.01671521026534982 +illusion_0.75L,sr,92,18.4,alpha,upper,-0.006827343346664336 +illusion_0.75L,sr,92,18.4,alpha,lower,-0.006827343346664336 +illusion_0.75L,sr,93,18.6,alpha,front,0.01583192218127054 +illusion_0.75L,sr,93,18.6,alpha,upper,-0.00639972596434954 +illusion_0.75L,sr,93,18.6,alpha,lower,-0.00639972596434954 +illusion_0.75L,sr,94,18.8,alpha,front,0.015399449879212617 +illusion_0.75L,sr,94,18.8,alpha,upper,-0.006426117128876475 +illusion_0.75L,sr,94,18.8,alpha,lower,-0.006426117128876475 +illusion_0.75L,sr,95,19.0,alpha,front,0.013536568634317403 +illusion_0.75L,sr,95,19.0,alpha,upper,-0.005501110793402 +illusion_0.75L,sr,95,19.0,alpha,lower,-0.005501110793402 +illusion_0.75L,sr,96,19.2,alpha,front,0.011051046865983322 +illusion_0.75L,sr,96,19.2,alpha,upper,-0.004212541343845681 +illusion_0.75L,sr,96,19.2,alpha,lower,-0.004212541343845681 +illusion_0.75L,sr,97,19.4,alpha,front,0.008944089185485136 +illusion_0.75L,sr,97,19.4,alpha,upper,-0.003281787881212417 +illusion_0.75L,sr,97,19.4,alpha,lower,-0.003281787881212417 +illusion_0.75L,sr,98,19.6,alpha,front,0.007647051475445963 +illusion_0.75L,sr,98,19.6,alpha,upper,-0.00300718430649655 +illusion_0.75L,sr,98,19.6,alpha,lower,-0.00300718430649655 +illusion_0.75L,sr,99,19.8,alpha,front,0.005545447277676786 +illusion_0.75L,sr,99,19.8,alpha,upper,-0.002173192229823661 +illusion_0.75L,sr,99,19.8,alpha,lower,-0.002173192229823661 +illusion_0.75L,sr,100,20.0,alpha,front,0.003006985613047051 +illusion_0.75L,sr,100,20.0,alpha,upper,-0.00103747557442313 +illusion_0.75L,sr,100,20.0,alpha,lower,-0.00103747557442313 +illusion_0.75L,sr,101,20.2,alpha,front,0.000947997909410336 +illusion_0.75L,sr,101,20.2,alpha,upper,-0.0002575026304994024 +illusion_0.75L,sr,101,20.2,alpha,lower,-0.0002575026304994024 +illusion_0.75L,sr,102,20.4,alpha,front,-0.0008511353894106472 +illusion_0.75L,sr,102,20.4,alpha,upper,0.0003457727813995395 +illusion_0.75L,sr,102,20.4,alpha,lower,0.0003457727813995395 +illusion_0.75L,sr,103,20.6,alpha,front,-0.0028161057534390275 +illusion_0.75L,sr,103,20.6,alpha,upper,0.0011010402500562337 +illusion_0.75L,sr,103,20.6,alpha,lower,0.0011010402500562337 +illusion_0.75L,sr,104,20.8,alpha,front,-0.004940460465893522 +illusion_0.75L,sr,104,20.8,alpha,upper,0.0020165048429259327 +illusion_0.75L,sr,104,20.8,alpha,lower,0.0020165048429259327 +illusion_0.75L,sr,105,21.0,alpha,front,-0.007031161026736732 +illusion_0.75L,sr,105,21.0,alpha,upper,0.0029619144798612197 +illusion_0.75L,sr,105,21.0,alpha,lower,0.0029619144798612197 +illusion_0.75L,sr,106,21.2,alpha,front,-0.008913173066582507 +illusion_0.75L,sr,106,21.2,alpha,upper,0.0038176629096438666 +illusion_0.75L,sr,106,21.2,alpha,lower,0.0038176629096438666 +illusion_0.75L,sr,107,21.4,alpha,front,-0.010137857866455352 +illusion_0.75L,sr,107,21.4,alpha,upper,0.00426159625696073 +illusion_0.75L,sr,107,21.4,alpha,lower,0.00426159625696073 +illusion_0.75L,sr,108,21.6,alpha,front,-0.011061428475506119 +illusion_0.75L,sr,108,21.6,alpha,upper,0.004570296886905037 +illusion_0.75L,sr,108,21.6,alpha,lower,0.004570296886905037 +illusion_0.75L,sr,109,21.8,alpha,front,-0.011897889999182155 +illusion_0.75L,sr,109,21.8,alpha,upper,0.004909581007977913 +illusion_0.75L,sr,109,21.8,alpha,lower,0.004909581007977913 +illusion_0.75L,sr,110,22.0,alpha,front,-0.012498602929854455 +illusion_0.75L,sr,110,22.0,alpha,upper,0.00517666468854016 +illusion_0.75L,sr,110,22.0,alpha,lower,0.00517666468854016 +illusion_0.75L,sr,111,22.2,alpha,front,-0.012661420883973108 +illusion_0.75L,sr,111,22.2,alpha,upper,0.005222266085014207 +illusion_0.75L,sr,111,22.2,alpha,lower,0.005222266085014207 +illusion_0.75L,sr,112,22.4,alpha,front,-0.01272159650779986 +illusion_0.75L,sr,112,22.4,alpha,upper,0.005298038275013475 +illusion_0.75L,sr,112,22.4,alpha,lower,0.005298038275013475 +illusion_0.75L,sr,113,22.6,alpha,front,-0.011319122130915876 +illusion_0.75L,sr,113,22.6,alpha,upper,0.004394835349034981 +illusion_0.75L,sr,113,22.6,alpha,lower,0.004394835349034981 +illusion_0.75L,sr,114,22.8,alpha,front,-0.010582983214782946 +illusion_0.75L,sr,114,22.8,alpha,upper,0.004087638017292082 +illusion_0.75L,sr,114,22.8,alpha,lower,0.004087638017292082 +illusion_0.75L,sr,115,23.0,alpha,front,-0.009805861650432443 +illusion_0.75L,sr,115,23.0,alpha,upper,0.0038396800700004553 +illusion_0.75L,sr,115,23.0,alpha,lower,0.0038396800700004553 +illusion_0.75L,sr,116,23.2,alpha,front,-0.008544569231522137 +illusion_0.75L,sr,116,23.2,alpha,upper,0.0033161356332746875 +illusion_0.75L,sr,116,23.2,alpha,lower,0.0033161356332746875 +illusion_0.75L,sr,117,23.4,alpha,front,-0.006765357154188641 +illusion_0.75L,sr,117,23.4,alpha,upper,0.0024806564152353577 +illusion_0.75L,sr,117,23.4,alpha,lower,0.0024806564152353577 +illusion_0.75L,sr,118,23.6,alpha,front,-0.005224692511771198 +illusion_0.75L,sr,118,23.6,alpha,upper,0.0018779490072770091 +illusion_0.75L,sr,118,23.6,alpha,lower,0.0018779490072770091 +illusion_0.75L,sr,119,23.8,alpha,front,-0.0040035977678243885 +illusion_0.75L,sr,119,23.8,alpha,upper,0.0015511298100342845 +illusion_0.75L,sr,119,23.8,alpha,lower,0.0015511298100342845 +illusion_0.75L,sr,120,24.0,alpha,front,-0.0024971199396357033 +illusion_0.75L,sr,120,24.0,alpha,upper,0.0010380985032311957 +illusion_0.75L,sr,120,24.0,alpha,lower,0.0010380985032311957 +illusion_0.75L,sr,121,24.2,alpha,front,-0.0003752590448031557 +illusion_0.75L,sr,121,24.2,alpha,upper,8.194740078548875e-05 +illusion_0.75L,sr,121,24.2,alpha,lower,8.194740078548875e-05 +illusion_0.75L,sr,122,24.4,alpha,front,0.0014641710172990851 +illusion_0.75L,sr,122,24.4,alpha,upper,-0.0006662814099771463 +illusion_0.75L,sr,122,24.4,alpha,lower,-0.0006662814099771463 +illusion_0.75L,sr,123,24.6,alpha,front,0.00253804791700267 +illusion_0.75L,sr,123,24.6,alpha,upper,-0.0008661561749042264 +illusion_0.75L,sr,123,24.6,alpha,lower,-0.0008661561749042264 +illusion_0.75L,sr,124,24.8,alpha,front,0.003751115037128102 +illusion_0.75L,sr,124,24.8,alpha,upper,-0.001200275955093793 +illusion_0.75L,sr,124,24.8,alpha,lower,-0.001200275955093793 +illusion_0.75L,sr,125,25.0,alpha,front,0.005731875131609519 +illusion_0.75L,sr,125,25.0,alpha,upper,-0.002141550697595262 +illusion_0.75L,sr,125,25.0,alpha,lower,-0.002141550697595262 +illusion_0.75L,sr,126,25.2,alpha,front,0.007456586187928973 +illusion_0.75L,sr,126,25.2,alpha,upper,-0.0029406876313369072 +illusion_0.75L,sr,126,25.2,alpha,lower,-0.0029406876313369072 +illusion_0.75L,sr,127,25.4,alpha,front,0.008172558676467448 +illusion_0.75L,sr,127,25.4,alpha,upper,-0.0030540612789933252 +illusion_0.75L,sr,127,25.4,alpha,lower,-0.0030540612789933252 +illusion_0.75L,sr,128,25.6,alpha,front,0.008631130387573786 +illusion_0.75L,sr,128,25.6,alpha,upper,-0.003049657016613902 +illusion_0.75L,sr,128,25.6,alpha,lower,-0.003049657016613902 +illusion_0.75L,sr,129,25.8,alpha,front,0.009938908886553785 +illusion_0.75L,sr,129,25.8,alpha,upper,-0.0037502996877694372 +illusion_0.75L,sr,129,25.8,alpha,lower,-0.0037502996877694372 +illusion_0.75L,sr,130,26.0,alpha,front,0.011102888577125679 +illusion_0.75L,sr,130,26.0,alpha,upper,-0.004423166195649121 +illusion_0.75L,sr,130,26.0,alpha,lower,-0.004423166195649121 +illusion_0.75L,sr,131,26.2,alpha,front,0.011027972165813436 +illusion_0.75L,sr,131,26.2,alpha,upper,-0.004266716632699938 +illusion_0.75L,sr,131,26.2,alpha,lower,-0.004266716632699938 +illusion_0.75L,sr,132,26.4,alpha,front,0.010528750032771053 +illusion_0.75L,sr,132,26.4,alpha,upper,-0.0038890419542137802 +illusion_0.75L,sr,132,26.4,alpha,lower,-0.0038890419542137802 +illusion_0.75L,sr,133,26.6,alpha,front,0.010239148450398493 +illusion_0.75L,sr,133,26.6,alpha,upper,-0.0037561068233684385 +illusion_0.75L,sr,133,26.6,alpha,lower,-0.0037561068233684385 +illusion_0.75L,sr,134,26.8,alpha,front,0.010264096417890986 +illusion_0.75L,sr,134,26.8,alpha,upper,-0.00394107905553933 +illusion_0.75L,sr,134,26.8,alpha,lower,-0.00394107905553933 +illusion_0.75L,sr,135,27.0,alpha,front,0.009572081953646248 +illusion_0.75L,sr,135,27.0,alpha,upper,-0.003675876830565978 +illusion_0.75L,sr,135,27.0,alpha,lower,-0.003675876830565978 +illusion_0.75L,sr,136,27.2,alpha,front,0.008093264216482772 +illusion_0.75L,sr,136,27.2,alpha,upper,-0.0029045926128074134 +illusion_0.75L,sr,136,27.2,alpha,lower,-0.0029045926128074134 +illusion_0.75L,sr,137,27.4,alpha,front,0.006557200888986223 +illusion_0.75L,sr,137,27.4,alpha,upper,-0.0021591477343956625 +illusion_0.75L,sr,137,27.4,alpha,lower,-0.0021591477343956625 +illusion_0.75L,sr,138,27.6,alpha,front,0.006021473631870146 +illusion_0.75L,sr,138,27.6,alpha,upper,-0.0022079763422900613 +illusion_0.75L,sr,138,27.6,alpha,lower,-0.0022079763422900613 +illusion_0.75L,sr,139,27.8,alpha,front,0.0052620010989776825 +illusion_0.75L,sr,139,27.8,alpha,upper,-0.0021324445596220265 +illusion_0.75L,sr,139,27.8,alpha,lower,-0.0021324445596220265 +illusion_0.75L,sr,140,28.0,alpha,front,0.0034795634185874856 +illusion_0.75L,sr,140,28.0,alpha,upper,-0.0013311704402761814 +illusion_0.75L,sr,140,28.0,alpha,lower,-0.0013311704402761814 +illusion_0.75L,sr,141,28.2,alpha,front,0.001762530577753352 +illusion_0.75L,sr,141,28.2,alpha,upper,-0.0005983068396166382 +illusion_0.75L,sr,141,28.2,alpha,lower,-0.0005983068396166382 +illusion_0.75L,sr,142,28.4,alpha,front,0.0011162756311810839 +illusion_0.75L,sr,142,28.4,alpha,upper,-0.0006615549875277713 +illusion_0.75L,sr,142,28.4,alpha,lower,-0.0006615549875277713 +illusion_0.75L,sr,143,28.6,alpha,front,0.000504603634634399 +illusion_0.75L,sr,143,28.6,alpha,upper,-0.0007388615566472859 +illusion_0.75L,sr,143,28.6,alpha,lower,-0.0007388615566472859 +illusion_0.75L,sr,144,28.8,alpha,front,-0.0010624050880810205 +illusion_0.75L,sr,144,28.8,alpha,upper,-8.816009239459403e-05 +illusion_0.75L,sr,144,28.8,alpha,lower,-8.816009239459403e-05 +illusion_0.75L,sr,145,29.0,alpha,front,-0.0028699366398885345 +illusion_0.75L,sr,145,29.0,alpha,upper,0.0007691661867376618 +illusion_0.75L,sr,145,29.0,alpha,lower,0.0007691661867376618 +illusion_0.75L,sr,146,29.2,alpha,front,-0.004045029367759797 +illusion_0.75L,sr,146,29.2,alpha,upper,0.001196903933511892 +illusion_0.75L,sr,146,29.2,alpha,lower,0.001196903933511892 +illusion_0.75L,sr,147,29.4,alpha,front,-0.004676503436738068 +illusion_0.75L,sr,147,29.4,alpha,upper,0.0012719364311591166 +illusion_0.75L,sr,147,29.4,alpha,lower,0.0012719364311591166 +illusion_0.75L,sr,148,29.6,alpha,front,-0.005539763361446903 +illusion_0.75L,sr,148,29.6,alpha,upper,0.0015761897346326483 +illusion_0.75L,sr,148,29.6,alpha,lower,0.0015761897346326483 +illusion_0.75L,sr,149,29.8,alpha,front,-0.0068290706672310825 +illusion_0.75L,sr,149,29.8,alpha,upper,0.002258197540046837 +illusion_0.75L,sr,149,29.8,alpha,lower,0.002258197540046837 +illusion_0.75L,sr,150,30.0,alpha,front,-0.007704653401729454 +illusion_0.75L,sr,150,30.0,alpha,upper,0.0027027009399545193 +illusion_0.75L,sr,150,30.0,alpha,lower,0.0027027009399545193 +illusion_0.75L,sr,151,30.2,alpha,front,-0.007931961550392982 +illusion_0.75L,sr,151,30.2,alpha,upper,0.002741624113207816 +illusion_0.75L,sr,151,30.2,alpha,lower,0.002741624113207816 +illusion_0.75L,sr,152,30.4,alpha,front,-0.007862402620502813 +illusion_0.75L,sr,152,30.4,alpha,upper,0.0026379982580148134 +illusion_0.75L,sr,152,30.4,alpha,lower,0.0026379982580148134 +illusion_0.75L,sr,153,30.6,alpha,front,-0.007739915785460391 +illusion_0.75L,sr,153,30.6,alpha,upper,0.002574526165847864 +illusion_0.75L,sr,153,30.6,alpha,lower,0.002574526165847864 +illusion_0.75L,sr,154,30.8,alpha,front,-0.007990585695284415 +illusion_0.75L,sr,154,30.8,alpha,upper,0.0028664463486362743 +illusion_0.75L,sr,154,30.8,alpha,lower,0.0028664463486362743 +illusion_0.75L,sr,155,31.0,alpha,front,-0.007662115718028466 +illusion_0.75L,sr,155,31.0,alpha,upper,0.0028017430541971006 +illusion_0.75L,sr,155,31.0,alpha,lower,0.0028017430541971006 +illusion_0.75L,sr,156,31.2,alpha,front,-0.006625640143622512 +illusion_0.75L,sr,156,31.2,alpha,upper,0.0022820696297376 +illusion_0.75L,sr,156,31.2,alpha,lower,0.0022820696297376 +illusion_0.75L,sr,157,31.4,alpha,front,-0.005996703917868884 +illusion_0.75L,sr,157,31.4,alpha,upper,0.0021271330552247135 +illusion_0.75L,sr,157,31.4,alpha,lower,0.0021271330552247135 +illusion_0.75L,sr,158,31.6,alpha,front,-0.005449771514531184 +illusion_0.75L,sr,158,31.6,alpha,upper,0.0020861693743451162 +illusion_0.75L,sr,158,31.6,alpha,lower,0.0020861693743451162 +illusion_0.75L,sr,159,31.8,alpha,front,-0.0048880142025400294 +illusion_0.75L,sr,159,31.8,alpha,upper,0.0020758792532813534 +illusion_0.75L,sr,159,31.8,alpha,lower,0.0020758792532813534 +illusion_0.75L,sr,160,32.0,alpha,front,-0.004003075681130938 +illusion_0.75L,sr,160,32.0,alpha,upper,0.0018567492053195769 +illusion_0.75L,sr,160,32.0,alpha,lower,0.0018567492053195769 +illusion_0.75L,sr,161,32.2,alpha,front,-0.002881741811911691 +illusion_0.75L,sr,161,32.2,alpha,upper,0.0014840660665087716 +illusion_0.75L,sr,161,32.2,alpha,lower,0.0014840660665087716 +illusion_0.75L,sr,162,32.4,alpha,front,-0.0020307283714278298 +illusion_0.75L,sr,162,32.4,alpha,upper,0.0013232431404530687 +illusion_0.75L,sr,162,32.4,alpha,lower,0.0013232431404530687 +illusion_0.75L,sr,163,32.6,alpha,front,-0.001303583771967625 +illusion_0.75L,sr,163,32.6,alpha,upper,0.0012512307860976205 +illusion_0.75L,sr,163,32.6,alpha,lower,0.0012512307860976205 +illusion_0.75L,sr,164,32.8,alpha,front,-0.0004987763929593624 +illusion_0.75L,sr,164,32.8,alpha,upper,0.0011081517257466866 +illusion_0.75L,sr,164,32.8,alpha,lower,0.0011081517257466866 +illusion_0.75L,sr,165,33.0,alpha,front,0.0005889743241848586 +illusion_0.75L,sr,165,33.0,alpha,upper,0.0007331368981320155 +illusion_0.75L,sr,165,33.0,alpha,lower,0.0007331368981320155 +illusion_0.75L,sr,166,33.2,alpha,front,0.001971569064835251 +illusion_0.75L,sr,166,33.2,alpha,upper,0.00011113137317306578 +illusion_0.75L,sr,166,33.2,alpha,lower,0.00011113137317306578 +illusion_0.75L,sr,167,33.4,alpha,front,0.003004598925965489 +illusion_0.75L,sr,167,33.4,alpha,upper,-0.0002896381027399711 +illusion_0.75L,sr,167,33.4,alpha,lower,-0.0002896381027399711 +illusion_0.75L,sr,168,33.6,alpha,front,0.003518286028240413 +illusion_0.75L,sr,168,33.6,alpha,upper,-0.00035327425752309724 +illusion_0.75L,sr,168,33.6,alpha,lower,-0.00035327425752309724 +illusion_0.75L,sr,169,33.8,alpha,front,0.004372748300915337 +illusion_0.75L,sr,169,33.8,alpha,upper,-0.0007230539234685182 +illusion_0.75L,sr,169,33.8,alpha,lower,-0.0007230539234685182 +illusion_0.75L,sr,170,34.0,alpha,front,0.005708161238948871 +illusion_0.75L,sr,170,34.0,alpha,upper,-0.0015035938451036443 +illusion_0.75L,sr,170,34.0,alpha,lower,-0.0015035938451036443 +illusion_0.75L,sr,171,34.2,alpha,front,0.006680616168071932 +illusion_0.75L,sr,171,34.2,alpha,upper,-0.0020749491742620696 +illusion_0.75L,sr,171,34.2,alpha,lower,-0.0020749491742620696 +illusion_0.75L,sr,172,34.4,alpha,front,0.006698380357207767 +illusion_0.75L,sr,172,34.4,alpha,upper,-0.002005894959034915 +illusion_0.75L,sr,172,34.4,alpha,lower,-0.002005894959034915 +illusion_0.75L,sr,173,34.6,alpha,front,0.0068089239782225955 +illusion_0.75L,sr,173,34.6,alpha,upper,-0.002075643356570775 +illusion_0.75L,sr,173,34.6,alpha,lower,-0.002075643356570775 +illusion_0.75L,sr,174,34.8,alpha,front,0.007443435657383618 +illusion_0.75L,sr,174,34.8,alpha,upper,-0.002598849557378158 +illusion_0.75L,sr,174,34.8,alpha,lower,-0.002598849557378158 +illusion_0.75L,sr,175,35.0,alpha,front,0.008037379616810676 +illusion_0.75L,sr,175,35.0,alpha,upper,-0.0031551515632377083 +illusion_0.75L,sr,175,35.0,alpha,lower,-0.0031551515632377083 +illusion_0.75L,sr,176,35.2,alpha,front,0.007577612026802177 +illusion_0.75L,sr,176,35.2,alpha,upper,-0.0029931635865585587 +illusion_0.75L,sr,176,35.2,alpha,lower,-0.0029931635865585587 +illusion_0.75L,sr,177,35.4,alpha,front,0.006663235585107473 +illusion_0.75L,sr,177,35.4,alpha,upper,-0.0025554940112997686 +illusion_0.75L,sr,177,35.4,alpha,lower,-0.0025554940112997686 +illusion_0.75L,sr,178,35.6,alpha,front,0.006694713398412148 +illusion_0.75L,sr,178,35.6,alpha,upper,-0.0028684672351764195 +illusion_0.75L,sr,178,35.6,alpha,lower,-0.0028684672351764195 +illusion_0.75L,sr,179,35.8,alpha,front,0.006767545468062602 +illusion_0.75L,sr,179,35.8,alpha,upper,-0.0032497097710089927 +illusion_0.75L,sr,179,35.8,alpha,lower,-0.0032497097710089927 +illusion_0.75L,sr,180,36.0,alpha,front,0.0062086992426772444 +illusion_0.75L,sr,180,36.0,alpha,upper,-0.003197440638324032 +illusion_0.75L,sr,180,36.0,alpha,lower,-0.003197440638324032 +illusion_0.75L,sr,181,36.2,alpha,front,0.0049421353022664205 +illusion_0.75L,sr,181,36.2,alpha,upper,-0.0026473710304965245 +illusion_0.75L,sr,181,36.2,alpha,lower,-0.0026473710304965245 +illusion_0.75L,sr,182,36.4,alpha,front,0.0040291618239228395 +illusion_0.75L,sr,182,36.4,alpha,upper,-0.0023756450453109148 +illusion_0.75L,sr,182,36.4,alpha,lower,-0.0023756450453109148 +illusion_0.75L,sr,183,36.6,alpha,front,0.0037811046621016664 +illusion_0.75L,sr,183,36.6,alpha,upper,-0.002600794291494295 +illusion_0.75L,sr,183,36.6,alpha,lower,-0.002600794291494295 +illusion_0.75L,sr,184,36.8,alpha,front,0.0031205720946850908 +illusion_0.75L,sr,184,36.8,alpha,upper,-0.0025160195444558844 +illusion_0.75L,sr,184,36.8,alpha,lower,-0.0025160195444558844 +illusion_0.75L,sr,185,37.0,alpha,front,0.001455410914842194 +illusion_0.75L,sr,185,37.0,alpha,upper,-0.0016779278117614994 +illusion_0.75L,sr,185,37.0,alpha,lower,-0.0016779278117614994 +illusion_0.75L,sr,186,37.2,alpha,front,-0.00012084225471952967 +illusion_0.75L,sr,186,37.2,alpha,upper,-0.0008895500456853403 +illusion_0.75L,sr,186,37.2,alpha,lower,-0.0008895500456853403 +illusion_0.75L,sr,187,37.4,alpha,front,-0.0005117547514486669 +illusion_0.75L,sr,187,37.4,alpha,upper,-0.0009504617058264386 +illusion_0.75L,sr,187,37.4,alpha,lower,-0.0009504617058264386 +illusion_0.75L,sr,188,37.6,alpha,front,-0.0009437289844237694 +illusion_0.75L,sr,188,37.6,alpha,upper,-0.0009426959276668118 +illusion_0.75L,sr,188,37.6,alpha,lower,-0.0009426959276668118 +illusion_0.75L,sr,189,37.8,alpha,front,-0.0024325571264126877 +illusion_0.75L,sr,189,37.8,alpha,upper,-0.00011229341760613312 +illusion_0.75L,sr,189,37.8,alpha,lower,-0.00011229341760613312 +illusion_0.75L,sr,190,38.0,alpha,front,-0.003957343309147883 +illusion_0.75L,sr,190,38.0,alpha,upper,0.0007889032691063037 +illusion_0.75L,sr,190,38.0,alpha,lower,0.0007889032691063037 +illusion_0.75L,sr,191,38.2,alpha,front,-0.004390640973516879 +illusion_0.75L,sr,191,38.2,alpha,upper,0.0009336726530819532 +illusion_0.75L,sr,191,38.2,alpha,lower,0.0009336726530819532 +illusion_0.75L,sr,192,38.4,alpha,front,-0.004532597827461592 +illusion_0.75L,sr,192,38.4,alpha,upper,0.0009218120154345261 +illusion_0.75L,sr,192,38.4,alpha,lower,0.0009218120154345261 +illusion_0.75L,sr,193,38.6,alpha,front,-0.005197711936574367 +illusion_0.75L,sr,193,38.6,alpha,upper,0.0013562332859519063 +illusion_0.75L,sr,193,38.6,alpha,lower,0.0013562332859519063 +illusion_0.75L,sr,194,38.8,alpha,front,-0.0063810837674240645 +illusion_0.75L,sr,194,38.8,alpha,upper,0.0022318335565682836 +illusion_0.75L,sr,194,38.8,alpha,lower,0.0022318335565682836 +illusion_0.75L,sr,195,39.0,alpha,front,-0.0066666147450961865 +illusion_0.75L,sr,195,39.0,alpha,upper,0.002501845636522688 +illusion_0.75L,sr,195,39.0,alpha,lower,0.002501845636522688 +illusion_0.75L,sr,196,39.2,alpha,front,-0.0061678725801238565 +illusion_0.75L,sr,196,39.2,alpha,upper,0.00225236178569789 +illusion_0.75L,sr,196,39.2,alpha,lower,0.00225236178569789 +illusion_0.75L,sr,197,39.4,alpha,front,-0.005913602667208896 +illusion_0.75L,sr,197,39.4,alpha,upper,0.0022407846818961394 +illusion_0.75L,sr,197,39.4,alpha,lower,0.0022407846818961394 +illusion_0.75L,sr,198,39.6,alpha,front,-0.006454799618330839 +illusion_0.75L,sr,198,39.6,alpha,upper,0.0028664826043163817 +illusion_0.75L,sr,198,39.6,alpha,lower,0.0028664826043163817 +illusion_0.75L,sr,199,39.8,alpha,front,-0.0065978625705518275 +illusion_0.75L,sr,199,39.8,alpha,upper,0.003239390303814527 +illusion_0.75L,sr,199,39.8,alpha,lower,0.003239390303814527 +illusion_0.75L,sr,200,40.0,alpha,front,-0.005762695088549048 +illusion_0.75L,sr,200,40.0,alpha,upper,0.0029249706980229422 +illusion_0.75L,sr,200,40.0,alpha,lower,0.0029249706980229422 +illusion_0.75L,sr,201,40.2,alpha,front,-0.004738674075168139 +illusion_0.75L,sr,201,40.2,alpha,upper,0.0025011136808672334 +illusion_0.75L,sr,201,40.2,alpha,lower,0.0025011136808672334 +illusion_0.75L,sr,202,40.4,alpha,front,-0.004333807693204742 +illusion_0.75L,sr,202,40.4,alpha,upper,0.0025568532283997553 +illusion_0.75L,sr,202,40.4,alpha,lower,0.0025568532283997553 +illusion_0.75L,sr,203,40.6,alpha,front,-0.004103747969213905 +illusion_0.75L,sr,203,40.6,alpha,upper,0.0027533931960001938 +illusion_0.75L,sr,203,40.6,alpha,lower,0.0027533931960001938 +illusion_0.75L,sr,204,40.8,alpha,front,-0.0030358932437637197 +illusion_0.75L,sr,204,40.8,alpha,upper,0.002334025113145564 +illusion_0.75L,sr,204,40.8,alpha,lower,0.002334025113145564 +illusion_0.75L,sr,205,41.0,alpha,front,-0.0016493170988386063 +illusion_0.75L,sr,205,41.0,alpha,upper,0.0016773977098986303 +illusion_0.75L,sr,205,41.0,alpha,lower,0.0016773977098986303 +illusion_0.75L,sr,206,41.2,alpha,front,-0.0004889964905783958 +illusion_0.75L,sr,206,41.2,alpha,upper,0.0011787318228904872 +illusion_0.75L,sr,206,41.2,alpha,lower,0.0011787318228904872 +illusion_0.75L,sr,207,41.4,alpha,front,0.0001485878949205148 +illusion_0.75L,sr,207,41.4,alpha,upper,0.0010495006804885111 +illusion_0.75L,sr,207,41.4,alpha,lower,0.0010495006804885111 +illusion_0.75L,sr,208,41.6,alpha,front,0.0010118380506888465 +illusion_0.75L,sr,208,41.6,alpha,upper,0.0007269015265611335 +illusion_0.75L,sr,208,41.6,alpha,lower,0.0007269015265611335 +illusion_0.75L,sr,209,41.8,alpha,front,0.002313771697947428 +illusion_0.75L,sr,209,41.8,alpha,upper,4.793869140215859e-05 +illusion_0.75L,sr,209,41.8,alpha,lower,4.793869140215859e-05 +illusion_0.75L,sr,210,42.0,alpha,front,0.003453845470811269 +illusion_0.75L,sr,210,42.0,alpha,upper,-0.0005478925171495362 +illusion_0.75L,sr,210,42.0,alpha,lower,-0.0005478925171495362 +illusion_0.75L,sr,211,42.2,alpha,front,0.0040931229043052325 +illusion_0.75L,sr,211,42.2,alpha,upper,-0.0008166722651770825 +illusion_0.75L,sr,211,42.2,alpha,lower,-0.0008166722651770825 +illusion_0.75L,sr,212,42.4,alpha,front,0.0044688573382102165 +illusion_0.75L,sr,212,42.4,alpha,upper,-0.000940038824839888 +illusion_0.75L,sr,212,42.4,alpha,lower,-0.000940038824839888 +illusion_0.75L,sr,213,42.6,alpha,front,0.0051713912256861755 +illusion_0.75L,sr,213,42.6,alpha,upper,-0.0013586707145464873 +illusion_0.75L,sr,213,42.6,alpha,lower,-0.0013586707145464873 +illusion_0.75L,sr,214,42.8,alpha,front,0.005919332095546723 +illusion_0.75L,sr,214,42.8,alpha,upper,-0.0018652211352206093 +illusion_0.75L,sr,214,42.8,alpha,lower,-0.0018652211352206093 +illusion_0.75L,sr,215,43.0,alpha,front,0.0066248892348144475 +illusion_0.75L,sr,215,43.0,alpha,upper,-0.002394744163476157 +illusion_0.75L,sr,215,43.0,alpha,lower,-0.002394744163476157 +illusion_0.75L,sr,216,43.2,alpha,front,0.006373234905664667 +illusion_0.75L,sr,216,43.2,alpha,upper,-0.0022704644202039513 +illusion_0.75L,sr,216,43.2,alpha,lower,-0.0022704644202039513 +illusion_0.75L,sr,217,43.4,alpha,front,0.005526077994252421 +illusion_0.75L,sr,217,43.4,alpha,upper,-0.0017656500025576075 +illusion_0.75L,sr,217,43.4,alpha,lower,-0.0017656500025576075 +illusion_0.75L,sr,218,43.6,alpha,front,0.005297298202908862 +illusion_0.75L,sr,218,43.6,alpha,upper,-0.0017755406823613989 +illusion_0.75L,sr,218,43.6,alpha,lower,-0.0017755406823613989 +illusion_0.75L,sr,219,43.8,alpha,front,0.005706291944871048 +illusion_0.75L,sr,219,43.8,alpha,upper,-0.0023041126964801657 +illusion_0.75L,sr,219,43.8,alpha,lower,-0.0023041126964801657 +illusion_0.75L,sr,220,44.0,alpha,front,0.00515032216242561 +illusion_0.75L,sr,220,44.0,alpha,upper,-0.0021594928650542425 +illusion_0.75L,sr,220,44.0,alpha,lower,-0.0021594928650542425 +illusion_0.75L,sr,221,44.2,alpha,front,0.003689167086268419 +illusion_0.75L,sr,221,44.2,alpha,upper,-0.0013850299907967878 +illusion_0.75L,sr,221,44.2,alpha,lower,-0.0013850299907967878 +illusion_0.75L,sr,222,44.4,alpha,front,0.002880988591101818 +illusion_0.75L,sr,222,44.4,alpha,upper,-0.0011272361824938536 +illusion_0.75L,sr,222,44.4,alpha,lower,-0.0011272361824938536 +illusion_0.75L,sr,223,44.6,alpha,front,0.002999402702299661 +illusion_0.75L,sr,223,44.6,alpha,upper,-0.0015738921131406788 +illusion_0.75L,sr,223,44.6,alpha,lower,-0.0015738921131406788 +illusion_0.75L,sr,224,44.8,alpha,front,0.0027331088996510335 +illusion_0.75L,sr,224,44.8,alpha,upper,-0.001743499155354072 +illusion_0.75L,sr,224,44.8,alpha,lower,-0.001743499155354072 +illusion_0.75L,sr,225,45.0,alpha,front,0.0014562003894573912 +illusion_0.75L,sr,225,45.0,alpha,upper,-0.0011698501533373112 +illusion_0.75L,sr,225,45.0,alpha,lower,-0.0011698501533373112 +illusion_0.75L,sr,226,45.2,alpha,front,0.0001470007912804834 +illusion_0.75L,sr,226,45.2,alpha,upper,-0.0005708011399983897 +illusion_0.75L,sr,226,45.2,alpha,lower,-0.0005708011399983897 +illusion_0.75L,sr,227,45.4,alpha,front,-8.829593475910211e-05 +illusion_0.75L,sr,227,45.4,alpha,upper,-0.0007521418058699242 +illusion_0.75L,sr,227,45.4,alpha,lower,-0.0007521418058699242 +illusion_0.75L,sr,228,45.6,alpha,front,-5.170489984281101e-06 +illusion_0.75L,sr,228,45.6,alpha,upper,-0.0011438083872971072 +illusion_0.75L,sr,228,45.6,alpha,lower,-0.0011438083872971072 +illusion_0.75L,sr,229,45.8,alpha,front,-0.0010829069128533882 +illusion_0.75L,sr,229,45.8,alpha,upper,-0.0006475298375841314 +illusion_0.75L,sr,229,45.8,alpha,lower,-0.0006475298375841314 +illusion_0.75L,sr,230,46.0,alpha,front,-0.0028313860767998147 +illusion_0.75L,sr,230,46.0,alpha,upper,0.00037571711192538326 +illusion_0.75L,sr,230,46.0,alpha,lower,0.00037571711192538326 +illusion_0.75L,sr,231,46.2,alpha,front,-0.003484344791437069 +illusion_0.75L,sr,231,46.2,alpha,upper,0.0006255718511731859 +illusion_0.75L,sr,231,46.2,alpha,lower,0.0006255718511731859 +illusion_0.75L,sr,232,46.4,alpha,front,-0.002967375288734121 +illusion_0.75L,sr,232,46.4,alpha,upper,5.820356469104018e-05 +illusion_0.75L,sr,232,46.4,alpha,lower,5.820356469104018e-05 +illusion_0.75L,sr,233,46.6,alpha,front,-0.0032350635132147587 +illusion_0.75L,sr,233,46.6,alpha,upper,0.0001239484140378999 +illusion_0.75L,sr,233,46.6,alpha,lower,0.0001239484140378999 +illusion_0.75L,sr,234,46.8,alpha,front,-0.004776525636988813 +illusion_0.75L,sr,234,46.8,alpha,upper,0.001181598422120695 +illusion_0.75L,sr,234,46.8,alpha,lower,0.001181598422120695 +illusion_0.75L,sr,235,47.0,alpha,front,-0.005372126369891511 +illusion_0.75L,sr,235,47.0,alpha,upper,0.0015885542273921317 +illusion_0.75L,sr,235,47.0,alpha,lower,0.0015885542273921317 +illusion_0.75L,sr,236,47.2,alpha,front,-0.004327739536187203 +illusion_0.75L,sr,236,47.2,alpha,upper,0.0008401533095334854 +illusion_0.75L,sr,236,47.2,alpha,lower,0.0008401533095334854 +illusion_0.75L,sr,237,47.4,alpha,front,-0.0036057806247857256 +illusion_0.75L,sr,237,47.4,alpha,upper,0.000390630382381952 +illusion_0.75L,sr,237,47.4,alpha,lower,0.000390630382381952 +illusion_0.75L,sr,238,47.6,alpha,front,-0.0045069719842691786 +illusion_0.75L,sr,238,47.6,alpha,upper,0.0011944836422740183 +illusion_0.75L,sr,238,47.6,alpha,lower,0.0011944836422740183 +illusion_0.75L,sr,239,47.8,alpha,front,-0.00495195340479837 +illusion_0.75L,sr,239,47.8,alpha,upper,0.0017056043526642202 +illusion_0.75L,sr,239,47.8,alpha,lower,0.0017056043526642202 +illusion_0.75L,sr,240,48.0,alpha,front,-0.0039920625997409385 +illusion_0.75L,sr,240,48.0,alpha,upper,0.001224785972616136 +illusion_0.75L,sr,240,48.0,alpha,lower,0.001224785972616136 +illusion_0.75L,sr,241,48.2,alpha,front,-0.00267586623853254 +illusion_0.75L,sr,241,48.2,alpha,upper,0.0005248064203977922 +illusion_0.75L,sr,241,48.2,alpha,lower,0.0005248064203977922 +illusion_0.75L,sr,242,48.4,alpha,front,-0.0027457190728214613 +illusion_0.75L,sr,242,48.4,alpha,upper,0.0008838098849249087 +illusion_0.75L,sr,242,48.4,alpha,lower,0.0008838098849249087 +illusion_0.75L,sr,243,48.6,alpha,front,-0.0034356706951388463 +illusion_0.75L,sr,243,48.6,alpha,upper,0.0017217231831544427 +illusion_0.75L,sr,243,48.6,alpha,lower,0.0017217231831544427 +illusion_0.75L,sr,244,48.8,alpha,front,-0.002858173806914806 +illusion_0.75L,sr,244,48.8,alpha,upper,0.0016366830367588615 +illusion_0.75L,sr,244,48.8,alpha,lower,0.0016366830367588615 +illusion_0.75L,sr,245,49.0,alpha,front,-0.0012663358661387785 +illusion_0.75L,sr,245,49.0,alpha,upper,0.00081263605335527 +illusion_0.75L,sr,245,49.0,alpha,lower,0.00081263605335527 +illusion_0.75L,sr,246,49.2,alpha,front,-0.0007417484774287263 +illusion_0.75L,sr,246,49.2,alpha,upper,0.0007797844957072829 +illusion_0.75L,sr,246,49.2,alpha,lower,0.0007797844957072829 +illusion_0.75L,sr,247,49.4,alpha,front,-0.0011649273225895675 +illusion_0.75L,sr,247,49.4,alpha,upper,0.001437412703902568 +illusion_0.75L,sr,247,49.4,alpha,lower,0.001437412703902568 +illusion_0.75L,sr,248,49.6,alpha,front,-0.0008416992079618782 +illusion_0.75L,sr,248,49.6,alpha,upper,0.0015257989164732116 +illusion_0.75L,sr,248,49.6,alpha,lower,0.0015257989164732116 +illusion_0.75L,sr,249,49.8,alpha,front,0.0008946286480965849 +illusion_0.75L,sr,249,49.8,alpha,upper,0.0005486610106046636 +illusion_0.75L,sr,249,49.8,alpha,lower,0.0005486610106046636 +illusion_0.75L,sr,250,50.0,alpha,front,0.0022008494748377225 +illusion_0.75L,sr,250,50.0,alpha,upper,-0.00013310027893887952 +illusion_0.75L,sr,250,50.0,alpha,lower,-0.00013310027893887952 +illusion_0.75L,sr,251,50.2,alpha,front,0.0018982260896198457 +illusion_0.75L,sr,251,50.2,alpha,upper,0.00034246349973069204 +illusion_0.75L,sr,251,50.2,alpha,lower,0.00034246349973069204 +illusion_0.75L,sr,252,50.4,alpha,front,0.0017576283756873604 +illusion_0.75L,sr,252,50.4,alpha,upper,0.000655432200889608 +illusion_0.75L,sr,252,50.4,alpha,lower,0.000655432200889608 +illusion_0.75L,sr,253,50.6,alpha,front,0.0030771969443528363 +illusion_0.75L,sr,253,50.6,alpha,upper,-0.00015420899545466604 +illusion_0.75L,sr,253,50.6,alpha,lower,-0.00015420899545466604 +illusion_0.75L,sr,254,50.8,alpha,front,0.00428853750931419 +illusion_0.75L,sr,254,50.8,alpha,upper,-0.000926241426589456 +illusion_0.75L,sr,254,50.8,alpha,lower,-0.000926241426589456 +illusion_0.75L,sr,255,51.0,alpha,front,0.004178782986081778 +illusion_0.75L,sr,255,51.0,alpha,upper,-0.000769195819215536 +illusion_0.75L,sr,255,51.0,alpha,lower,-0.000769195819215536 +illusion_0.75L,sr,256,51.2,alpha,front,0.003456710826342885 +illusion_0.75L,sr,256,51.2,alpha,upper,-0.00021375221082642684 +illusion_0.75L,sr,256,51.2,alpha,lower,-0.00021375221082642684 +illusion_0.75L,sr,257,51.4,alpha,front,0.003699705425637821 +illusion_0.75L,sr,257,51.4,alpha,upper,-0.0004272377516056671 +illusion_0.75L,sr,257,51.4,alpha,lower,-0.0004272377516056671 +illusion_0.75L,sr,258,51.6,alpha,front,0.004519884409672187 +illusion_0.75L,sr,258,51.6,alpha,upper,-0.001117443100750893 +illusion_0.75L,sr,258,51.6,alpha,lower,-0.001117443100750893 +illusion_0.75L,sr,259,51.8,alpha,front,0.004470694509835144 +illusion_0.75L,sr,259,51.8,alpha,upper,-0.0012130946576482879 +illusion_0.75L,sr,259,51.8,alpha,lower,-0.0012130946576482879 +illusion_0.75L,sr,260,52.0,alpha,front,0.003640800900640798 +illusion_0.75L,sr,260,52.0,alpha,upper,-0.0007802058081808443 +illusion_0.75L,sr,260,52.0,alpha,lower,-0.0007802058081808443 +illusion_0.75L,sr,261,52.2,alpha,front,0.0028895309966157044 +illusion_0.75L,sr,261,52.2,alpha,upper,-0.00045023609336533593 +illusion_0.75L,sr,261,52.2,alpha,lower,-0.00045023609336533593 +illusion_0.75L,sr,262,52.4,alpha,front,0.0032752070941709788 +illusion_0.75L,sr,262,52.4,alpha,upper,-0.001000572113447229 +illusion_0.75L,sr,262,52.4,alpha,lower,-0.001000572113447229 +illusion_0.75L,sr,263,52.6,alpha,front,0.0034748501181936092 +illusion_0.75L,sr,263,52.6,alpha,upper,-0.001441650345024614 +illusion_0.75L,sr,263,52.6,alpha,lower,-0.001441650345024614 +illusion_0.75L,sr,264,52.8,alpha,front,0.002859561827273373 +illusion_0.75L,sr,264,52.8,alpha,upper,-0.0013022442495512886 +illusion_0.75L,sr,264,52.8,alpha,lower,-0.0013022442495512886 +illusion_0.75L,sr,265,53.0,alpha,front,0.0019037653311321807 +illusion_0.75L,sr,265,53.0,alpha,upper,-0.0009266135078413451 +illusion_0.75L,sr,265,53.0,alpha,lower,-0.0009266135078413451 +illusion_0.75L,sr,266,53.2,alpha,front,0.0015904136282515115 +illusion_0.75L,sr,266,53.2,alpha,upper,-0.001035677249825968 +illusion_0.75L,sr,266,53.2,alpha,lower,-0.001035677249825968 +illusion_0.75L,sr,267,53.4,alpha,front,0.0018083052227698322 +illusion_0.75L,sr,267,53.4,alpha,upper,-0.001536270144873043 +illusion_0.75L,sr,267,53.4,alpha,lower,-0.001536270144873043 +illusion_0.75L,sr,268,53.6,alpha,front,0.0012844970187214956 +illusion_0.75L,sr,268,53.6,alpha,upper,-0.0014776014046067052 +illusion_0.75L,sr,268,53.6,alpha,lower,-0.0014776014046067052 +illusion_0.75L,sr,269,53.8,alpha,front,1.0062352932521668e-05 +illusion_0.75L,sr,269,53.8,alpha,upper,-0.0008500882251544009 +illusion_0.75L,sr,269,53.8,alpha,lower,-0.0008500882251544009 +illusion_0.75L,sr,270,54.0,alpha,front,-0.0008432674244783847 +illusion_0.75L,sr,270,54.0,alpha,upper,-0.0005170579624114574 +illusion_0.75L,sr,270,54.0,alpha,lower,-0.0005170579624114574 +illusion_0.75L,sr,271,54.2,alpha,front,-0.0010140267440854472 +illusion_0.75L,sr,271,54.2,alpha,upper,-0.0006628515185046722 +illusion_0.75L,sr,271,54.2,alpha,lower,-0.0006628515185046722 +illusion_0.75L,sr,272,54.4,alpha,front,-0.0012200900472496522 +illusion_0.75L,sr,272,54.4,alpha,upper,-0.0007484201199633063 +illusion_0.75L,sr,272,54.4,alpha,lower,-0.0007484201199633063 +illusion_0.75L,sr,273,54.6,alpha,front,-0.0020329970985741297 +illusion_0.75L,sr,273,54.6,alpha,upper,-0.00034741127785800976 +illusion_0.75L,sr,273,54.6,alpha,lower,-0.00034741127785800976 +illusion_0.75L,sr,274,54.8,alpha,front,-0.0030955483386244926 +illusion_0.75L,sr,274,54.8,alpha,upper,0.00027655912626074405 +illusion_0.75L,sr,274,54.8,alpha,lower,0.00027655912626074405 +illusion_0.75L,sr,275,55.0,alpha,front,-0.003577635790819843 +illusion_0.75L,sr,275,55.0,alpha,upper,0.0005137156692043773 +illusion_0.75L,sr,275,55.0,alpha,lower,0.0005137156692043773 +illusion_0.75L,sr,276,55.2,alpha,front,-0.003228272943994255 +illusion_0.75L,sr,276,55.2,alpha,upper,0.00018430509435678893 +illusion_0.75L,sr,276,55.2,alpha,lower,0.00018430509435678893 +illusion_0.75L,sr,277,55.4,alpha,front,-0.003131035237196017 +illusion_0.75L,sr,277,55.4,alpha,upper,9.403642880806071e-05 +illusion_0.75L,sr,277,55.4,alpha,lower,9.403642880806071e-05 +illusion_0.75L,sr,278,55.6,alpha,front,-0.003748904224695704 +illusion_0.75L,sr,278,55.6,alpha,upper,0.0005835274342236331 +illusion_0.75L,sr,278,55.6,alpha,lower,0.0005835274342236331 +illusion_0.75L,sr,279,55.8,alpha,front,-0.004345727902326915 +illusion_0.75L,sr,279,55.8,alpha,upper,0.0011047891156867676 +illusion_0.75L,sr,279,55.8,alpha,lower,0.0011047891156867676 +illusion_0.75L,sr,280,56.0,alpha,front,-0.003828707401880418 +illusion_0.75L,sr,280,56.0,alpha,upper,0.0008488289632206034 +illusion_0.75L,sr,280,56.0,alpha,lower,0.0008488289632206034 +illusion_0.75L,sr,281,56.2,alpha,front,-0.0028103152759379954 +illusion_0.75L,sr,281,56.2,alpha,upper,0.00027129723549515136 +illusion_0.75L,sr,281,56.2,alpha,lower,0.00027129723549515136 +illusion_0.75L,sr,282,56.4,alpha,front,-0.00299446685688173 +illusion_0.75L,sr,282,56.4,alpha,upper,0.0006278716357212451 +illusion_0.75L,sr,282,56.4,alpha,lower,0.0006278716357212451 +illusion_0.75L,sr,283,56.6,alpha,front,-0.0037340685018937485 +illusion_0.75L,sr,283,56.6,alpha,upper,0.0014268846847149859 +illusion_0.75L,sr,283,56.6,alpha,lower,0.0014268846847149859 +illusion_0.75L,sr,284,56.8,alpha,front,-0.0033630617613836645 +illusion_0.75L,sr,284,56.8,alpha,upper,0.0014308552879546861 +illusion_0.75L,sr,284,56.8,alpha,lower,0.0014308552879546861 +illusion_0.75L,sr,285,57.0,alpha,front,-0.002167988559633389 +illusion_0.75L,sr,285,57.0,alpha,upper,0.0008508508550146792 +illusion_0.75L,sr,285,57.0,alpha,lower,0.0008508508550146792 +illusion_0.75L,sr,286,57.2,alpha,front,-0.001702272136983576 +illusion_0.75L,sr,286,57.2,alpha,upper,0.0008292855333375937 +illusion_0.75L,sr,286,57.2,alpha,lower,0.0008292855333375937 +illusion_0.75L,sr,287,57.4,alpha,front,-0.0021747497578697393 +illusion_0.75L,sr,287,57.4,alpha,upper,0.0015063675271869677 +illusion_0.75L,sr,287,57.4,alpha,lower,0.0015063675271869677 +illusion_0.75L,sr,288,57.6,alpha,front,-0.0021339725622969317 +illusion_0.75L,sr,288,57.6,alpha,upper,0.001799317838639585 +illusion_0.75L,sr,288,57.6,alpha,lower,0.001799317838639585 +illusion_0.75L,sr,289,57.8,alpha,front,-0.000668464623567306 +illusion_0.75L,sr,289,57.8,alpha,upper,0.0010331719272646958 +illusion_0.75L,sr,289,57.8,alpha,lower,0.0010331719272646958 +illusion_0.75L,sr,290,58.0,alpha,front,0.0006704698378289485 +illusion_0.75L,sr,290,58.0,alpha,upper,0.00035302306410722566 +illusion_0.75L,sr,290,58.0,alpha,lower,0.00035302306410722566 +illusion_0.75L,sr,291,58.2,alpha,front,0.0006098586691232304 +illusion_0.75L,sr,291,58.2,alpha,upper,0.0006890817566518603 +illusion_0.75L,sr,291,58.2,alpha,lower,0.0006890817566518603 +illusion_0.75L,sr,292,58.4,alpha,front,0.00020982137847637417 +illusion_0.75L,sr,292,58.4,alpha,upper,0.001246038433703387 +illusion_0.75L,sr,292,58.4,alpha,lower,0.001246038433703387 +illusion_0.75L,sr,293,58.6,alpha,front,0.0011833068390105957 +illusion_0.75L,sr,293,58.6,alpha,upper,0.000755441634004303 +illusion_0.75L,sr,293,58.6,alpha,lower,0.000755441634004303 +illusion_0.75L,sr,294,58.8,alpha,front,0.0028746015239862477 +illusion_0.75L,sr,294,58.8,alpha,upper,-0.00029679037718024007 +illusion_0.75L,sr,294,58.8,alpha,lower,-0.00029679037718024007 +illusion_0.75L,sr,295,59.0,alpha,front,0.00326792858268464 +illusion_0.75L,sr,295,59.0,alpha,upper,-0.00042531934202700775 +illusion_0.75L,sr,295,59.0,alpha,lower,-0.00042531934202700775 +illusion_0.75L,sr,296,59.2,alpha,front,0.0023954146788706943 +illusion_0.75L,sr,296,59.2,alpha,upper,0.0003358882448463059 +illusion_0.75L,sr,296,59.2,alpha,lower,0.0003358882448463059 +illusion_0.75L,sr,297,59.4,alpha,front,0.0024380714940861817 +illusion_0.75L,sr,297,59.4,alpha,upper,0.0003691867595770268 +illusion_0.75L,sr,297,59.4,alpha,lower,0.0003691867595770268 +illusion_0.75L,sr,298,59.6,alpha,front,0.0038254377870908726 +illusion_0.75L,sr,298,59.6,alpha,upper,-0.0006379378815105467 +illusion_0.75L,sr,298,59.6,alpha,lower,-0.0006379378815105467 +illusion_0.75L,sr,299,59.8,alpha,front,0.004374350589380398 +illusion_0.75L,sr,299,59.8,alpha,upper,-0.0010698592971679945 +illusion_0.75L,sr,299,59.8,alpha,lower,-0.0010698592971679945 +illusion_0.75L,sr,300,60.0,alpha,front,0.0032411522205814808 +illusion_0.75L,sr,300,60.0,alpha,upper,-0.00030796548478713784 +illusion_0.75L,sr,300,60.0,alpha,lower,-0.00030796548478713784 +illusion_0.75L,sr,301,60.2,alpha,front,0.0024713730473158724 +illusion_0.75L,sr,301,60.2,alpha,upper,0.00013178532914626465 +illusion_0.75L,sr,301,60.2,alpha,lower,0.00013178532914626465 +illusion_0.75L,sr,302,60.4,alpha,front,0.0032993026719408615 +illusion_0.75L,sr,302,60.4,alpha,upper,-0.000654161860983108 +illusion_0.75L,sr,302,60.4,alpha,lower,-0.000654161860983108 +illusion_0.75L,sr,303,60.6,alpha,front,0.003988861056578138 +illusion_0.75L,sr,303,60.6,alpha,upper,-0.0013724777123240509 +illusion_0.75L,sr,303,60.6,alpha,lower,-0.0013724777123240509 +illusion_0.75L,sr,304,60.8,alpha,front,0.0032649754808711027 +illusion_0.75L,sr,304,60.8,alpha,upper,-0.0010795628386002822 +illusion_0.75L,sr,304,60.8,alpha,lower,-0.0010795628386002822 +illusion_0.75L,sr,305,61.0,alpha,front,0.0020676418063830526 +illusion_0.75L,sr,305,61.0,alpha,upper,-0.0004694584400759105 +illusion_0.75L,sr,305,61.0,alpha,lower,-0.0004694584400759105 +illusion_0.75L,sr,306,61.2,alpha,front,0.0020295291767697572 +illusion_0.75L,sr,306,61.2,alpha,upper,-0.0007403266339134178 +illusion_0.75L,sr,306,61.2,alpha,lower,-0.0007403266339134178 +illusion_0.75L,sr,307,61.4,alpha,front,0.00280498615169714 +illusion_0.75L,sr,307,61.4,alpha,upper,-0.0016245835730053244 +illusion_0.75L,sr,307,61.4,alpha,lower,-0.0016245835730053244 +illusion_0.75L,sr,308,61.6,alpha,front,0.002514452670335934 +illusion_0.75L,sr,308,61.6,alpha,upper,-0.0017250626773689728 +illusion_0.75L,sr,308,61.6,alpha,lower,-0.0017250626773689728 +illusion_0.75L,sr,309,61.8,alpha,front,0.0009814339468221253 +illusion_0.75L,sr,309,61.8,alpha,upper,-0.0009089246382933689 +illusion_0.75L,sr,309,61.8,alpha,lower,-0.0009089246382933689 +illusion_0.75L,sr,310,62.0,alpha,front,-3.61229468027538e-05 +illusion_0.75L,sr,310,62.0,alpha,upper,-0.0004719420103940532 +illusion_0.75L,sr,310,62.0,alpha,lower,-0.0004719420103940532 +illusion_0.75L,sr,311,62.2,alpha,front,0.00025213436216173744 +illusion_0.75L,sr,311,62.2,alpha,upper,-0.0009881952157243593 +illusion_0.75L,sr,311,62.2,alpha,lower,-0.0009881952157243593 +illusion_0.75L,sr,312,62.4,alpha,front,0.00047084449070171 +illusion_0.75L,sr,312,62.4,alpha,upper,-0.0014312342316201935 +illusion_0.75L,sr,312,62.4,alpha,lower,-0.0014312342316201935 +illusion_0.75L,sr,313,62.6,alpha,front,-0.0007552170327669756 +illusion_0.75L,sr,313,62.6,alpha,upper,-0.0007797983559469369 +illusion_0.75L,sr,313,62.6,alpha,lower,-0.0007797983559469369 +illusion_0.75L,sr,314,62.8,alpha,front,-0.002172067195792951 +illusion_0.75L,sr,314,62.8,alpha,upper,3.814569455777572e-05 +illusion_0.75L,sr,314,62.8,alpha,lower,3.814569455777572e-05 +illusion_0.75L,sr,315,63.0,alpha,front,-0.00219814858642842 +illusion_0.75L,sr,315,63.0,alpha,upper,-0.00014059485055783333 +illusion_0.75L,sr,315,63.0,alpha,lower,-0.00014059485055783333 +illusion_0.75L,sr,316,63.2,alpha,front,-0.001710377635946052 +illusion_0.75L,sr,316,63.2,alpha,upper,-0.0006577086457660343 +illusion_0.75L,sr,316,63.2,alpha,lower,-0.0006577086457660343 +illusion_0.75L,sr,317,63.4,alpha,front,-0.002187757839754244 +illusion_0.75L,sr,317,63.4,alpha,upper,-0.00041647243208652035 +illusion_0.75L,sr,317,63.4,alpha,lower,-0.00041647243208652035 +illusion_0.75L,sr,318,63.6,alpha,front,-0.003276149005651187 +illusion_0.75L,sr,318,63.6,alpha,upper,0.00032002472176472993 +illusion_0.75L,sr,318,63.6,alpha,lower,0.00032002472176472993 +illusion_0.75L,sr,319,63.8,alpha,front,-0.0035111809358493516 +illusion_0.75L,sr,319,63.8,alpha,upper,0.0004707628730498507 +illusion_0.75L,sr,319,63.8,alpha,lower,0.0004707628730498507 +illusion_0.75L,sr,320,64.0,alpha,front,-0.0029310623098338998 +illusion_0.75L,sr,320,64.0,alpha,upper,6.77707596508613e-05 +illusion_0.75L,sr,320,64.0,alpha,lower,6.77707596508613e-05 +illusion_0.75L,sr,321,64.2,alpha,front,-0.002485536933521701 +illusion_0.75L,sr,321,64.2,alpha,upper,-0.00018509451159480841 +illusion_0.75L,sr,321,64.2,alpha,lower,-0.00018509451159480841 +illusion_0.75L,sr,322,64.4,alpha,front,-0.00289484506627833 +illusion_0.75L,sr,322,64.4,alpha,upper,0.0002416439054091814 +illusion_0.75L,sr,322,64.4,alpha,lower,0.0002416439054091814 +illusion_0.75L,sr,323,64.6,alpha,front,-0.0035501604294193995 +illusion_0.75L,sr,323,64.6,alpha,upper,0.0008921385504752528 +illusion_0.75L,sr,323,64.6,alpha,lower,0.0008921385504752528 +illusion_0.75L,sr,324,64.8,alpha,front,-0.003129772980084749 +illusion_0.75L,sr,324,64.8,alpha,upper,0.0007836595362919405 +illusion_0.75L,sr,324,64.8,alpha,lower,0.0007836595362919405 +illusion_0.75L,sr,325,65.0,alpha,front,-0.0023346115491072635 +illusion_0.75L,sr,325,65.0,alpha,upper,0.0004339680442651747 +illusion_0.75L,sr,325,65.0,alpha,lower,0.0004339680442651747 +illusion_0.75L,sr,326,65.2,alpha,front,-0.002210517820393814 +illusion_0.75L,sr,326,65.2,alpha,upper,0.0006104406247159806 +illusion_0.75L,sr,326,65.2,alpha,lower,0.0006104406247159806 +illusion_0.75L,sr,327,65.4,alpha,front,-0.002671193974090099 +illusion_0.75L,sr,327,65.4,alpha,upper,0.0012402642353081111 +illusion_0.75L,sr,327,65.4,alpha,lower,0.0012402642353081111 +illusion_0.75L,sr,328,65.6,alpha,front,-0.002629461065683178 +illusion_0.75L,sr,328,65.6,alpha,upper,0.0015099065191508353 +illusion_0.75L,sr,328,65.6,alpha,lower,0.0015099065191508353 +illusion_0.75L,sr,329,65.8,alpha,front,-0.0015910989570245854 +illusion_0.75L,sr,329,65.8,alpha,upper,0.0010501083194847391 +illusion_0.75L,sr,329,65.8,alpha,lower,0.0010501083194847391 +illusion_0.75L,sr,330,66.0,alpha,front,-0.0006140102110765342 +illusion_0.75L,sr,330,66.0,alpha,upper,0.0006409779096656553 +illusion_0.75L,sr,330,66.0,alpha,lower,0.0006409779096656553 +illusion_0.75L,sr,331,66.2,alpha,front,-0.0006119225900477511 +illusion_0.75L,sr,331,66.2,alpha,upper,0.0009496406731469434 +illusion_0.75L,sr,331,66.2,alpha,lower,0.0009496406731469434 +illusion_0.75L,sr,332,66.4,alpha,front,-0.0006874145772747531 +illusion_0.75L,sr,332,66.4,alpha,upper,0.0013004388217469753 +illusion_0.75L,sr,332,66.4,alpha,lower,0.0013004388217469753 +illusion_0.75L,sr,333,66.6,alpha,front,3.064684332751075e-05 +illusion_0.75L,sr,333,66.6,alpha,upper,0.0010447931268159454 +illusion_0.75L,sr,333,66.6,alpha,lower,0.0010447931268159454 +illusion_0.75L,sr,334,66.8,alpha,front,0.001210646855284013 +illusion_0.75L,sr,334,66.8,alpha,upper,0.0004269735716464669 +illusion_0.75L,sr,334,66.8,alpha,lower,0.0004269735716464669 +illusion_0.75L,sr,335,67.0,alpha,front,0.0017895118537169762 +illusion_0.75L,sr,335,67.0,alpha,upper,0.00022847409881144792 +illusion_0.75L,sr,335,67.0,alpha,lower,0.00022847409881144792 +illusion_0.75L,sr,336,67.2,alpha,front,0.0015385716572431198 +illusion_0.75L,sr,336,67.2,alpha,upper,0.00060910025607748 +illusion_0.75L,sr,336,67.2,alpha,lower,0.00060910025607748 +illusion_0.75L,sr,337,67.4,alpha,front,0.0015393083721500292 +illusion_0.75L,sr,337,67.4,alpha,upper,0.0007628412290381567 +illusion_0.75L,sr,337,67.4,alpha,lower,0.0007628412290381567 +illusion_0.75L,sr,338,67.6,alpha,front,0.002506138369531938 +illusion_0.75L,sr,338,67.6,alpha,upper,0.00016150984533763388 +illusion_0.75L,sr,338,67.6,alpha,lower,0.00016150984533763388 +illusion_0.75L,sr,339,67.8,alpha,front,0.003253453930084506 +illusion_0.75L,sr,339,67.8,alpha,upper,-0.00031830875748489057 +illusion_0.75L,sr,339,67.8,alpha,lower,-0.00031830875748489057 +illusion_0.75L,sr,340,68.0,alpha,front,0.0028089763299158563 +illusion_0.75L,sr,340,68.0,alpha,upper,3.7187419869990496e-05 +illusion_0.75L,sr,340,68.0,alpha,lower,3.7187419869990496e-05 +illusion_0.75L,sr,341,68.2,alpha,front,0.0022612505410860434 +illusion_0.75L,sr,341,68.2,alpha,upper,0.00041760027199343533 +illusion_0.75L,sr,341,68.2,alpha,lower,0.00041760027199343533 +illusion_0.75L,sr,342,68.4,alpha,front,0.002551266337969156 +illusion_0.75L,sr,342,68.4,alpha,upper,0.00012952714448853653 +illusion_0.75L,sr,342,68.4,alpha,lower,0.00012952714448853653 +illusion_0.75L,sr,343,68.6,alpha,front,0.003421267885447686 +illusion_0.75L,sr,343,68.6,alpha,upper,-0.0006303660142599685 +illusion_0.75L,sr,343,68.6,alpha,lower,-0.0006303660142599685 +illusion_0.75L,sr,344,68.8,alpha,front,0.0033139844306361473 +illusion_0.75L,sr,344,68.8,alpha,upper,-0.0007071409927944805 +illusion_0.75L,sr,344,68.8,alpha,lower,-0.0007071409927944805 +illusion_0.75L,sr,345,69.0,alpha,front,0.00218583415926088 +illusion_0.75L,sr,345,69.0,alpha,upper,-7.066364667223171e-05 +illusion_0.75L,sr,345,69.0,alpha,lower,-7.066364667223171e-05 +illusion_0.75L,sr,346,69.2,alpha,front,0.0020503438254720584 +illusion_0.75L,sr,346,69.2,alpha,upper,-0.000206298989802331 +illusion_0.75L,sr,346,69.2,alpha,lower,-0.000206298989802331 +illusion_0.75L,sr,347,69.4,alpha,front,0.0028658041042373267 +illusion_0.75L,sr,347,69.4,alpha,upper,-0.0010699781027000647 +illusion_0.75L,sr,347,69.4,alpha,lower,-0.0010699781027000647 +illusion_0.75L,sr,348,69.6,alpha,front,0.0030687945217678283 +illusion_0.75L,sr,348,69.6,alpha,upper,-0.0014980996671168766 +illusion_0.75L,sr,348,69.6,alpha,lower,-0.0014980996671168766 +illusion_0.75L,sr,349,69.8,alpha,front,0.001955822149591384 +illusion_0.75L,sr,349,69.8,alpha,upper,-0.0009685969289843524 +illusion_0.75L,sr,349,69.8,alpha,lower,-0.0009685969289843524 +illusion_0.75L,sr,350,70.0,alpha,front,0.0009862331965809572 +illusion_0.75L,sr,350,70.0,alpha,upper,-0.0005577945174455538 +illusion_0.75L,sr,350,70.0,alpha,lower,-0.0005577945174455538 +illusion_0.75L,sr,351,70.2,alpha,front,0.0010928383255489715 +illusion_0.75L,sr,351,70.2,alpha,upper,-0.0009461360396025973 +illusion_0.75L,sr,351,70.2,alpha,lower,-0.0009461360396025973 +illusion_0.75L,sr,352,70.4,alpha,front,0.0013692844626096105 +illusion_0.75L,sr,352,70.4,alpha,upper,-0.0014523863389203128 +illusion_0.75L,sr,352,70.4,alpha,lower,-0.0014523863389203128 +illusion_0.75L,sr,353,70.6,alpha,front,0.0005762806143616815 +illusion_0.75L,sr,353,70.6,alpha,upper,-0.0011563300770276175 +illusion_0.75L,sr,353,70.6,alpha,lower,-0.0011563300770276175 +illusion_0.75L,sr,354,70.8,alpha,front,-0.0007662763932867815 +illusion_0.75L,sr,354,70.8,alpha,upper,-0.0004399737432314293 +illusion_0.75L,sr,354,70.8,alpha,lower,-0.0004399737432314293 +illusion_0.75L,sr,355,71.0,alpha,front,-0.0011080605809726807 +illusion_0.75L,sr,355,71.0,alpha,upper,-0.0004441317707230552 +illusion_0.75L,sr,355,71.0,alpha,lower,-0.0004441317707230552 +illusion_0.75L,sr,356,71.2,alpha,front,-0.0006785362963861175 +illusion_0.75L,sr,356,71.2,alpha,upper,-0.0009887062176009154 +illusion_0.75L,sr,356,71.2,alpha,lower,-0.0009887062176009154 +illusion_0.75L,sr,357,71.4,alpha,front,-0.00099922425358899 +illusion_0.75L,sr,357,71.4,alpha,upper,-0.000944050173520318 +illusion_0.75L,sr,357,71.4,alpha,lower,-0.000944050173520318 +illusion_0.75L,sr,358,71.6,alpha,front,-0.0022164220404054524 +illusion_0.75L,sr,358,71.6,alpha,upper,-0.00020126536477750934 +illusion_0.75L,sr,358,71.6,alpha,lower,-0.00020126536477750934 +illusion_0.75L,sr,359,71.8,alpha,front,-0.0028457471409042354 +illusion_0.75L,sr,359,71.8,alpha,upper,0.00014305483542460806 +illusion_0.75L,sr,359,71.8,alpha,lower,0.00014305483542460806 +illusion_0.75L,sr,360,72.0,alpha,front,-0.002198079741657484 +illusion_0.75L,sr,360,72.0,alpha,upper,-0.0004127847491149639 +illusion_0.75L,sr,360,72.0,alpha,lower,-0.0004127847491149639 +illusion_0.75L,sr,361,72.2,alpha,front,-0.0018310733724381453 +illusion_0.75L,sr,361,72.2,alpha,upper,-0.0007114274515444483 +illusion_0.75L,sr,361,72.2,alpha,lower,-0.0007114274515444483 +illusion_0.75L,sr,362,72.4,alpha,front,-0.0026117470954917094 +illusion_0.75L,sr,362,72.4,alpha,upper,-0.00011469846955831225 +illusion_0.75L,sr,362,72.4,alpha,lower,-0.00011469846955831225 +illusion_0.75L,sr,363,72.6,alpha,front,-0.0033037263390531257 +illusion_0.75L,sr,363,72.6,alpha,upper,0.0004595953606729049 +illusion_0.75L,sr,363,72.6,alpha,lower,0.0004595953606729049 +illusion_0.75L,sr,364,72.8,alpha,front,-0.0027796529821446647 +illusion_0.75L,sr,364,72.8,alpha,upper,0.00017894882266411907 +illusion_0.75L,sr,364,72.8,alpha,lower,0.00017894882266411907 +illusion_0.75L,sr,365,73.0,alpha,front,-0.002062914877269898 +illusion_0.75L,sr,365,73.0,alpha,upper,-0.0001981583398257096 +illusion_0.75L,sr,365,73.0,alpha,lower,-0.0001981583398257096 +illusion_0.75L,sr,366,73.2,alpha,front,-0.002283406926650522 +illusion_0.75L,sr,366,73.2,alpha,upper,0.00015817068106627197 +illusion_0.75L,sr,366,73.2,alpha,lower,0.00015817068106627197 +illusion_0.75L,sr,367,73.4,alpha,front,-0.0029583205639800575 +illusion_0.75L,sr,367,73.4,alpha,upper,0.0008813424579896188 +illusion_0.75L,sr,367,73.4,alpha,lower,0.0008813424579896188 +illusion_0.75L,sr,368,73.6,alpha,front,-0.0028115808815239104 +illusion_0.75L,sr,368,73.6,alpha,upper,0.001023154400707835 +illusion_0.75L,sr,368,73.6,alpha,lower,0.001023154400707835 +illusion_0.75L,sr,369,73.8,alpha,front,-0.0019762564775875745 +illusion_0.75L,sr,369,73.8,alpha,upper,0.0006792264592613284 +illusion_0.75L,sr,369,73.8,alpha,lower,0.0006792264592613284 +illusion_0.75L,sr,370,74.0,alpha,front,-0.0014565011148567272 +illusion_0.75L,sr,370,74.0,alpha,upper,0.0005858632775531938 +illusion_0.75L,sr,370,74.0,alpha,lower,0.0005858632775531938 +illusion_0.75L,sr,371,74.2,alpha,front,-0.001714823837877809 +illusion_0.75L,sr,371,74.2,alpha,upper,0.001077041044055457 +illusion_0.75L,sr,371,74.2,alpha,lower,0.001077041044055457 +illusion_0.75L,sr,372,74.4,alpha,front,-0.0016894379221437696 +illusion_0.75L,sr,372,74.4,alpha,upper,0.0013599072241517725 +illusion_0.75L,sr,372,74.4,alpha,lower,0.0013599072241517725 +illusion_0.75L,sr,373,74.6,alpha,front,-0.0007712089609448149 +illusion_0.75L,sr,373,74.6,alpha,upper,0.0009790109314912875 +illusion_0.75L,sr,373,74.6,alpha,lower,0.0009790109314912875 +illusion_0.75L,sr,374,74.8,alpha,front,0.00014955696684528126 +illusion_0.75L,sr,374,74.8,alpha,upper,0.0005888774501084815 +illusion_0.75L,sr,374,74.8,alpha,lower,0.0005888774501084815 +illusion_0.75L,sr,375,75.0,alpha,front,0.00025587508759955177 +illusion_0.75L,sr,375,75.0,alpha,upper,0.0007866159634199594 +illusion_0.75L,sr,375,75.0,alpha,lower,0.0007866159634199594 +illusion_0.75L,sr,376,75.2,alpha,front,0.00016972333544472765 +illusion_0.75L,sr,376,75.2,alpha,upper,0.0011041232817833521 +illusion_0.75L,sr,376,75.2,alpha,lower,0.0011041232817833521 +illusion_0.75L,sr,377,75.4,alpha,front,0.0007790771338861863 +illusion_0.75L,sr,377,75.4,alpha,upper,0.0008797860876132817 +illusion_0.75L,sr,377,75.4,alpha,lower,0.0008797860876132817 +illusion_0.75L,sr,378,75.6,alpha,front,0.0017637352386001594 +illusion_0.75L,sr,378,75.6,alpha,upper,0.0003480976067110897 +illusion_0.75L,sr,378,75.6,alpha,lower,0.0003480976067110897 +illusion_0.75L,sr,379,75.8,alpha,front,0.0021165123240885 +illusion_0.75L,sr,379,75.8,alpha,upper,0.00025057055716249527 +illusion_0.75L,sr,379,75.8,alpha,lower,0.00025057055716249527 +illusion_0.75L,sr,380,76.0,alpha,front,0.0018624684988844675 +illusion_0.75L,sr,380,76.0,alpha,upper,0.0005619782372601051 +illusion_0.75L,sr,380,76.0,alpha,lower,0.0005619782372601051 +illusion_0.75L,sr,381,76.2,alpha,front,0.0018731362383033745 +illusion_0.75L,sr,381,76.2,alpha,upper,0.0006333662511438902 +illusion_0.75L,sr,381,76.2,alpha,lower,0.0006333662511438902 +illusion_0.75L,sr,382,76.4,alpha,front,0.00240704280204547 +illusion_0.75L,sr,382,76.4,alpha,upper,0.00027279007636913516 +illusion_0.75L,sr,382,76.4,alpha,lower,0.00027279007636913516 +illusion_0.75L,sr,383,76.6,alpha,front,0.0028387874063423163 +illusion_0.75L,sr,383,76.6,alpha,upper,-5.595058604042358e-05 +illusion_0.75L,sr,383,76.6,alpha,lower,-5.595058604042358e-05 +illusion_0.75L,sr,384,76.8,alpha,front,0.002612132463165766 +illusion_0.75L,sr,384,76.8,alpha,upper,5.703713949633052e-05 +illusion_0.75L,sr,384,76.8,alpha,lower,5.703713949633052e-05 +illusion_0.75L,sr,385,77.0,alpha,front,0.0022339382630466864 +illusion_0.75L,sr,385,77.0,alpha,upper,0.000235216593036755 +illusion_0.75L,sr,385,77.0,alpha,lower,0.000235216593036755 +illusion_0.75L,sr,386,77.2,alpha,front,0.002278161439680383 +illusion_0.75L,sr,386,77.2,alpha,upper,5.702215682952538e-05 +illusion_0.75L,sr,386,77.2,alpha,lower,5.702215682952538e-05 +illusion_0.75L,sr,387,77.4,alpha,front,0.00272114062398527 +illusion_0.75L,sr,387,77.4,alpha,upper,-0.00045421791143842796 +illusion_0.75L,sr,387,77.4,alpha,lower,-0.00045421791143842796 +illusion_0.75L,sr,388,77.6,alpha,front,0.0028087198895198513 +illusion_0.75L,sr,388,77.6,alpha,upper,-0.000734360746396618 +illusion_0.75L,sr,388,77.6,alpha,lower,-0.000734360746396618 +illusion_0.75L,sr,389,77.8,alpha,front,0.0022970512320890715 +illusion_0.75L,sr,389,77.8,alpha,upper,-0.0005999306114801237 +illusion_0.75L,sr,389,77.8,alpha,lower,-0.0005999306114801237 +illusion_0.75L,sr,390,78.0,alpha,front,0.0017788353799855824 +illusion_0.75L,sr,390,78.0,alpha,upper,-0.00048610571529201027 +illusion_0.75L,sr,390,78.0,alpha,lower,-0.00048610571529201027 +illusion_0.75L,sr,391,78.2,alpha,front,0.0018706005816658284 +illusion_0.75L,sr,391,78.2,alpha,upper,-0.0008402378991368481 +illusion_0.75L,sr,391,78.2,alpha,lower,-0.0008402378991368481 +illusion_0.75L,sr,392,78.4,alpha,front,0.0020861655506626067 +illusion_0.75L,sr,392,78.4,alpha,upper,-0.0012932373515851174 +illusion_0.75L,sr,392,78.4,alpha,lower,-0.0012932373515851174 +illusion_0.75L,sr,393,78.6,alpha,front,0.0014154193321161603 +illusion_0.75L,sr,393,78.6,alpha,upper,-0.0010939869898271475 +illusion_0.75L,sr,393,78.6,alpha,lower,-0.0010939869898271475 +illusion_0.75L,sr,394,78.8,alpha,front,0.0002744852381401505 +illusion_0.75L,sr,394,78.8,alpha,upper,-0.0005481262563069231 +illusion_0.75L,sr,394,78.8,alpha,lower,-0.0005481262563069231 +illusion_0.75L,sr,395,79.0,alpha,front,0.00013993060653411798 +illusion_0.75L,sr,395,79.0,alpha,upper,-0.0007403311324183769 +illusion_0.75L,sr,395,79.0,alpha,lower,-0.0007403311324183769 +illusion_0.75L,sr,396,79.2,alpha,front,0.00037503573373428786 +illusion_0.75L,sr,396,79.2,alpha,upper,-0.0011889294601712935 +illusion_0.75L,sr,396,79.2,alpha,lower,-0.0011889294601712935 +illusion_0.75L,sr,397,79.4,alpha,front,-5.3643974284180156e-05 +illusion_0.75L,sr,397,79.4,alpha,upper,-0.001124783743383987 +illusion_0.75L,sr,397,79.4,alpha,lower,-0.001124783743383987 +illusion_0.75L,sr,398,79.6,alpha,front,-0.0011164166533670083 +illusion_0.75L,sr,398,79.6,alpha,upper,-0.00056831506642184 +illusion_0.75L,sr,398,79.6,alpha,lower,-0.00056831506642184 +illusion_0.75L,sr,399,79.8,alpha,front,-0.0017696429172786576 +illusion_0.75L,sr,399,79.8,alpha,upper,-0.000287620827040317 +illusion_0.75L,sr,399,79.8,alpha,lower,-0.000287620827040317 +illusion_0.75L,sr,0,0.0,omega,front,-0.00040348581021141405 +illusion_0.75L,sr,0,0.0,omega,upper,0.00033484695299226824 +illusion_0.75L,sr,0,0.0,omega,lower,0.00033484695299226824 +illusion_0.75L,sr,1,0.2,omega,front,-0.0003713317888975198 +illusion_0.75L,sr,1,0.2,omega,upper,0.000309292972933562 +illusion_0.75L,sr,1,0.2,omega,lower,0.000309292972933562 +illusion_0.75L,sr,2,0.4,omega,front,-0.00020213898217175398 +illusion_0.75L,sr,2,0.4,omega,upper,0.00018348487309668933 +illusion_0.75L,sr,2,0.4,omega,lower,0.00018348487309668933 +illusion_0.75L,sr,3,0.6,omega,front,-0.0001024618221011047 +illusion_0.75L,sr,3,0.6,omega,upper,0.0001087314896796944 +illusion_0.75L,sr,3,0.6,omega,lower,0.0001087314896796944 +illusion_0.75L,sr,4,0.8,omega,front,7.751107581404001e-06 +illusion_0.75L,sr,4,0.8,omega,upper,2.6635329230828287e-05 +illusion_0.75L,sr,4,0.8,omega,lower,2.6635329230828287e-05 +illusion_0.75L,sr,5,1.0,omega,front,0.00014180391521456212 +illusion_0.75L,sr,5,1.0,omega,upper,-7.275107109495597e-05 +illusion_0.75L,sr,5,1.0,omega,lower,-7.275107109495597e-05 +illusion_0.75L,sr,6,1.2,omega,front,0.0002528257236093839 +illusion_0.75L,sr,6,1.2,omega,upper,-0.00015522879093112041 +illusion_0.75L,sr,6,1.2,omega,lower,-0.00015522879093112041 +illusion_0.75L,sr,7,1.4,omega,front,0.00032918429006220136 +illusion_0.75L,sr,7,1.4,omega,upper,-0.00021232786353499937 +illusion_0.75L,sr,7,1.4,omega,lower,-0.00021232786353499937 +illusion_0.75L,sr,8,1.6,omega,front,0.0003721944705698309 +illusion_0.75L,sr,8,1.6,omega,upper,-0.00024530963475632257 +illusion_0.75L,sr,8,1.6,omega,lower,-0.00024530963475632257 +illusion_0.75L,sr,9,1.8,omega,front,0.00037110661043285206 +illusion_0.75L,sr,9,1.8,omega,upper,-0.0002467507557589893 +illusion_0.75L,sr,9,1.8,omega,lower,-0.0002467507557589893 +illusion_0.75L,sr,10,2.0,omega,front,0.00035386137045121914 +illusion_0.75L,sr,10,2.0,omega,upper,-0.00023790262814089557 +illusion_0.75L,sr,10,2.0,omega,lower,-0.00023790262814089557 +illusion_0.75L,sr,11,2.2,omega,front,0.00029617255253032134 +illusion_0.75L,sr,11,2.2,omega,upper,-0.00020096640977802338 +illusion_0.75L,sr,11,2.2,omega,lower,-0.00020096640977802338 +illusion_0.75L,sr,12,2.4,omega,front,0.00020330124899465803 +illusion_0.75L,sr,12,2.4,omega,upper,-0.00013993353032778068 +illusion_0.75L,sr,12,2.4,omega,lower,-0.00013993353032778068 +illusion_0.75L,sr,13,2.6,omega,front,0.00010471934830614895 +illusion_0.75L,sr,13,2.6,omega,upper,-7.658001835721618e-05 +illusion_0.75L,sr,13,2.6,omega,lower,-7.658001835721618e-05 +illusion_0.75L,sr,14,2.8,omega,front,2.436820400332402e-05 +illusion_0.75L,sr,14,2.8,omega,upper,-2.8085136703079916e-05 +illusion_0.75L,sr,14,2.8,omega,lower,-2.8085136703079916e-05 +illusion_0.75L,sr,15,3.0,omega,front,-3.7947945058973835e-05 +illusion_0.75L,sr,15,3.0,omega,upper,6.16165232451095e-06 +illusion_0.75L,sr,15,3.0,omega,lower,6.16165232451095e-06 +illusion_0.75L,sr,16,3.2,omega,front,-0.00010726667722924618 +illusion_0.75L,sr,16,3.2,omega,upper,4.510147965276864e-05 +illusion_0.75L,sr,16,3.2,omega,lower,4.510147965276864e-05 +illusion_0.75L,sr,17,3.4,omega,front,-0.00017524069690027442 +illusion_0.75L,sr,17,3.4,omega,upper,8.28118085105059e-05 +illusion_0.75L,sr,17,3.4,omega,lower,8.28118085105059e-05 +illusion_0.75L,sr,18,3.6,omega,front,-0.0002135789208253977 +illusion_0.75L,sr,18,3.6,omega,upper,9.88298989639215e-05 +illusion_0.75L,sr,18,3.6,omega,lower,9.88298989639215e-05 +illusion_0.75L,sr,19,3.8,omega,front,-0.00023788154009177594 +illusion_0.75L,sr,19,3.8,omega,upper,0.00010503450243268653 +illusion_0.75L,sr,19,3.8,omega,lower,0.00010503450243268653 +illusion_0.75L,sr,20,4.0,omega,front,-0.0002735025472953304 +illusion_0.75L,sr,20,4.0,omega,upper,0.00012046318829144018 +illusion_0.75L,sr,20,4.0,omega,lower,0.00012046318829144018 +illusion_0.75L,sr,21,4.2,omega,front,-0.0003085821765307351 +illusion_0.75L,sr,21,4.2,omega,upper,0.00013649297297471942 +illusion_0.75L,sr,21,4.2,omega,lower,0.00013649297297471942 +illusion_0.75L,sr,22,4.4,omega,front,-0.00033132299206694443 +illusion_0.75L,sr,22,4.4,omega,upper,0.00014464729103557146 +illusion_0.75L,sr,22,4.4,omega,lower,0.00014464729103557146 +illusion_0.75L,sr,23,4.6,omega,front,-0.0003311174539319642 +illusion_0.75L,sr,23,4.6,omega,upper,0.0001373372292278982 +illusion_0.75L,sr,23,4.6,omega,lower,0.0001373372292278982 +illusion_0.75L,sr,24,4.8,omega,front,-0.0003200198410788541 +illusion_0.75L,sr,24,4.8,omega,upper,0.00012364796978515559 +illusion_0.75L,sr,24,4.8,omega,lower,0.00012364796978515559 +illusion_0.75L,sr,25,5.0,omega,front,-0.00034343567624736643 +illusion_0.75L,sr,25,5.0,omega,upper,0.0001373252776468961 +illusion_0.75L,sr,25,5.0,omega,lower,0.0001373252776468961 +illusion_0.75L,sr,26,5.2,omega,front,-0.00034659616702696573 +illusion_0.75L,sr,26,5.2,omega,upper,0.00013782654222600332 +illusion_0.75L,sr,26,5.2,omega,lower,0.00013782654222600332 +illusion_0.75L,sr,27,5.4,omega,front,-0.00030948070061187965 +illusion_0.75L,sr,27,5.4,omega,upper,0.00011056537240504149 +illusion_0.75L,sr,27,5.4,omega,lower,0.00011056537240504149 +illusion_0.75L,sr,28,5.6,omega,front,-0.00028395986956893825 +illusion_0.75L,sr,28,5.6,omega,upper,9.403882189307267e-05 +illusion_0.75L,sr,28,5.6,omega,lower,9.403882189307267e-05 +illusion_0.75L,sr,29,5.8,omega,front,-0.0002655167257375571 +illusion_0.75L,sr,29,5.8,omega,upper,8.475435176431373e-05 +illusion_0.75L,sr,29,5.8,omega,lower,8.475435176431373e-05 +illusion_0.75L,sr,30,6.0,omega,front,-0.00023901628316572916 +illusion_0.75L,sr,30,6.0,omega,upper,7.148463729011651e-05 +illusion_0.75L,sr,30,6.0,omega,lower,7.148463729011651e-05 +illusion_0.75L,sr,31,6.2,omega,front,-0.00020706134464994032 +illusion_0.75L,sr,31,6.2,omega,upper,5.599015244673919e-05 +illusion_0.75L,sr,31,6.2,omega,lower,5.599015244673919e-05 +illusion_0.75L,sr,32,6.4,omega,front,-0.0001575212050159891 +illusion_0.75L,sr,32,6.4,omega,upper,2.91021167454468e-05 +illusion_0.75L,sr,32,6.4,omega,lower,2.91021167454468e-05 +illusion_0.75L,sr,33,6.6,omega,front,-0.00013340780297920547 +illusion_0.75L,sr,33,6.6,omega,upper,2.2447223769937462e-05 +illusion_0.75L,sr,33,6.6,omega,lower,2.2447223769937462e-05 +illusion_0.75L,sr,34,6.8,omega,front,-0.00011343137834065792 +illusion_0.75L,sr,34,6.8,omega,upper,1.985177558486456e-05 +illusion_0.75L,sr,34,6.8,omega,lower,1.985177558486456e-05 +illusion_0.75L,sr,35,7.0,omega,front,-8.03879928521209e-05 +illusion_0.75L,sr,35,7.0,omega,upper,8.354461644380224e-06 +illusion_0.75L,sr,35,7.0,omega,lower,8.354461644380224e-06 +illusion_0.75L,sr,36,7.2,omega,front,-3.762137547825881e-05 +illusion_0.75L,sr,36,7.2,omega,upper,-9.795798749739626e-06 +illusion_0.75L,sr,36,7.2,omega,lower,-9.795798749739626e-06 +illusion_0.75L,sr,37,7.4,omega,front,-1.0450087419643095e-05 +illusion_0.75L,sr,37,7.4,omega,upper,-1.61198553797982e-05 +illusion_0.75L,sr,37,7.4,omega,lower,-1.61198553797982e-05 +illusion_0.75L,sr,38,7.6,omega,front,7.417759439244109e-06 +illusion_0.75L,sr,38,7.6,omega,upper,-1.5598789159700626e-05 +illusion_0.75L,sr,38,7.6,omega,lower,-1.5598789159700626e-05 +illusion_0.75L,sr,39,7.8,omega,front,3.5839390624773454e-05 +illusion_0.75L,sr,39,7.8,omega,upper,-2.3111909844640844e-05 +illusion_0.75L,sr,39,7.8,omega,lower,-2.3111909844640844e-05 +illusion_0.75L,sr,40,8.0,omega,front,7.299753637689692e-05 +illusion_0.75L,sr,40,8.0,omega,upper,-3.746881382835618e-05 +illusion_0.75L,sr,40,8.0,omega,lower,-3.746881382835618e-05 +illusion_0.75L,sr,41,8.2,omega,front,0.00010400741701440529 +illusion_0.75L,sr,41,8.2,omega,upper,-4.785087921390784e-05 +illusion_0.75L,sr,41,8.2,omega,lower,-4.785087921390784e-05 +illusion_0.75L,sr,42,8.4,omega,front,0.00012951863796966238 +illusion_0.75L,sr,42,8.4,omega,upper,-5.4919729136121835e-05 +illusion_0.75L,sr,42,8.4,omega,lower,-5.4919729136121835e-05 +illusion_0.75L,sr,43,8.6,omega,front,0.00015379859821549894 +illusion_0.75L,sr,43,8.6,omega,upper,-6.198932669794294e-05 +illusion_0.75L,sr,43,8.6,omega,lower,-6.198932669794294e-05 +illusion_0.75L,sr,44,8.8,omega,front,0.0001842018584320017 +illusion_0.75L,sr,44,8.8,omega,upper,-7.463253612665213e-05 +illusion_0.75L,sr,44,8.8,omega,lower,-7.463253612665213e-05 +illusion_0.75L,sr,45,9.0,omega,front,0.00021571214344317803 +illusion_0.75L,sr,45,9.0,omega,upper,-8.929353305808949e-05 +illusion_0.75L,sr,45,9.0,omega,lower,-8.929353305808949e-05 +illusion_0.75L,sr,46,9.2,omega,front,0.00023716918141074766 +illusion_0.75L,sr,46,9.2,omega,upper,-9.786037730190364e-05 +illusion_0.75L,sr,46,9.2,omega,lower,-9.786037730190364e-05 +illusion_0.75L,sr,47,9.4,omega,front,0.00024551201082770535 +illusion_0.75L,sr,47,9.4,omega,upper,-9.822700629857836e-05 +illusion_0.75L,sr,47,9.4,omega,lower,-9.822700629857836e-05 +illusion_0.75L,sr,48,9.6,omega,front,0.00025384236835434865 +illusion_0.75L,sr,48,9.6,omega,upper,-0.00010025991763424794 +illusion_0.75L,sr,48,9.6,omega,lower,-0.00010025991763424794 +illusion_0.75L,sr,49,9.8,omega,front,0.00026579844582026697 +illusion_0.75L,sr,49,9.8,omega,upper,-0.00010679804174567737 +illusion_0.75L,sr,49,9.8,omega,lower,-0.00010679804174567737 +illusion_0.75L,sr,50,10.0,omega,front,0.0002595796712267151 +illusion_0.75L,sr,50,10.0,omega,upper,-0.00010181088456490822 +illusion_0.75L,sr,50,10.0,omega,lower,-0.00010181088456490822 +illusion_0.75L,sr,51,10.2,omega,front,0.0002498864456908972 +illusion_0.75L,sr,51,10.2,omega,upper,-9.623545005603349e-05 +illusion_0.75L,sr,51,10.2,omega,lower,-9.623545005603349e-05 +illusion_0.75L,sr,52,10.4,omega,front,0.00023223911196153745 +illusion_0.75L,sr,52,10.4,omega,upper,-8.671412552026359e-05 +illusion_0.75L,sr,52,10.4,omega,lower,-8.671412552026359e-05 +illusion_0.75L,sr,53,10.6,omega,front,0.0002128400171118594 +illusion_0.75L,sr,53,10.6,omega,upper,-7.778704545409312e-05 +illusion_0.75L,sr,53,10.6,omega,lower,-7.778704545409312e-05 +illusion_0.75L,sr,54,10.8,omega,front,0.00018683542172122787 +illusion_0.75L,sr,54,10.8,omega,upper,-6.56964884181832e-05 +illusion_0.75L,sr,54,10.8,omega,lower,-6.56964884181832e-05 +illusion_0.75L,sr,55,11.0,omega,front,0.00016138677576140598 +illusion_0.75L,sr,55,11.0,omega,upper,-5.5525765178827406e-05 +illusion_0.75L,sr,55,11.0,omega,lower,-5.5525765178827406e-05 +illusion_0.75L,sr,56,11.2,omega,front,0.0001346656601473831 +illusion_0.75L,sr,56,11.2,omega,upper,-4.56250019732013e-05 +illusion_0.75L,sr,56,11.2,omega,lower,-4.56250019732013e-05 +illusion_0.75L,sr,57,11.4,omega,front,0.0001071109474464374 +illusion_0.75L,sr,57,11.4,omega,upper,-3.604249332448378e-05 +illusion_0.75L,sr,57,11.4,omega,lower,-3.604249332448378e-05 +illusion_0.75L,sr,58,11.6,omega,front,7.119960209950823e-05 +illusion_0.75L,sr,58,11.6,omega,upper,-2.0915656333579254e-05 +illusion_0.75L,sr,58,11.6,omega,lower,-2.0915656333579254e-05 +illusion_0.75L,sr,59,11.8,omega,front,4.470818422167199e-05 +illusion_0.75L,sr,59,11.8,omega,upper,-1.3124701826612746e-05 +illusion_0.75L,sr,59,11.8,omega,lower,-1.3124701826612746e-05 +illusion_0.75L,sr,60,12.0,omega,front,1.6950019362514374e-05 +illusion_0.75L,sr,60,12.0,omega,upper,-4.420898521775539e-06 +illusion_0.75L,sr,60,12.0,omega,lower,-4.420898521775539e-06 +illusion_0.75L,sr,61,12.2,omega,front,-1.702420189877478e-05 +illusion_0.75L,sr,61,12.2,omega,upper,9.079749246665245e-06 +illusion_0.75L,sr,61,12.2,omega,lower,9.079749246665245e-06 +illusion_0.75L,sr,62,12.4,omega,front,-5.065316823029641e-05 +illusion_0.75L,sr,62,12.4,omega,upper,2.2730071393307455e-05 +illusion_0.75L,sr,62,12.4,omega,lower,2.2730071393307455e-05 +illusion_0.75L,sr,63,12.6,omega,front,-7.826868224419997e-05 +illusion_0.75L,sr,63,12.6,omega,upper,3.259892178407671e-05 +illusion_0.75L,sr,63,12.6,omega,lower,3.259892178407671e-05 +illusion_0.75L,sr,64,12.8,omega,front,-0.0001027799997763805 +illusion_0.75L,sr,64,12.8,omega,upper,4.1072349485782174e-05 +illusion_0.75L,sr,64,12.8,omega,lower,4.1072349485782174e-05 +illusion_0.75L,sr,65,13.0,omega,front,-0.00013070100556563798 +illusion_0.75L,sr,65,13.0,omega,upper,5.31217596646967e-05 +illusion_0.75L,sr,65,13.0,omega,lower,5.31217596646967e-05 +illusion_0.75L,sr,66,13.2,omega,front,-0.00016057032458948988 +illusion_0.75L,sr,66,13.2,omega,upper,6.777247125051886e-05 +illusion_0.75L,sr,66,13.2,omega,lower,6.777247125051886e-05 +illusion_0.75L,sr,67,13.4,omega,front,-0.00017828837922701944 +illusion_0.75L,sr,67,13.4,omega,upper,7.47569485152269e-05 +illusion_0.75L,sr,67,13.4,omega,lower,7.47569485152269e-05 +illusion_0.75L,sr,68,13.6,omega,front,-0.0001867357410726682 +illusion_0.75L,sr,68,13.6,omega,upper,7.638981092678354e-05 +illusion_0.75L,sr,68,13.6,omega,lower,7.638981092678354e-05 +illusion_0.75L,sr,69,13.8,omega,front,-0.0001975803533467653 +illusion_0.75L,sr,69,13.8,omega,upper,8.136273507052108e-05 +illusion_0.75L,sr,69,13.8,omega,lower,8.136273507052108e-05 +illusion_0.75L,sr,70,14.0,omega,front,-0.00020698082781231295 +illusion_0.75L,sr,70,14.0,omega,upper,8.68579966088362e-05 +illusion_0.75L,sr,70,14.0,omega,lower,8.68579966088362e-05 +illusion_0.75L,sr,71,14.2,omega,front,-0.0001973108804656093 +illusion_0.75L,sr,71,14.2,omega,upper,7.988764950906669e-05 +illusion_0.75L,sr,71,14.2,omega,lower,7.988764950906669e-05 +illusion_0.75L,sr,72,14.4,omega,front,-0.00019463730385874082 +illusion_0.75L,sr,72,14.4,omega,upper,7.983502857842814e-05 +illusion_0.75L,sr,72,14.4,omega,lower,7.983502857842814e-05 +illusion_0.75L,sr,73,14.6,omega,front,-0.00017228350107912336 +illusion_0.75L,sr,73,14.6,omega,upper,6.680161358621068e-05 +illusion_0.75L,sr,73,14.6,omega,lower,6.680161358621068e-05 +illusion_0.75L,sr,74,14.8,omega,front,-0.00015166837542515522 +illusion_0.75L,sr,74,14.8,omega,upper,5.6571628291507e-05 +illusion_0.75L,sr,74,14.8,omega,lower,5.6571628291507e-05 +illusion_0.75L,sr,75,15.0,omega,front,-0.00014052580519539434 +illusion_0.75L,sr,75,15.0,omega,upper,5.4651850219385315e-05 +illusion_0.75L,sr,75,15.0,omega,lower,5.4651850219385315e-05 +illusion_0.75L,sr,76,15.2,omega,front,-0.00011505438030417925 +illusion_0.75L,sr,76,15.2,omega,upper,4.32305444344689e-05 +illusion_0.75L,sr,76,15.2,omega,lower,4.32305444344689e-05 +illusion_0.75L,sr,77,15.4,omega,front,-7.709061530009997e-05 +illusion_0.75L,sr,77,15.4,omega,upper,2.3482944044529788e-05 +illusion_0.75L,sr,77,15.4,omega,lower,2.3482944044529788e-05 +illusion_0.75L,sr,78,15.6,omega,front,-5.7312856348705613e-05 +illusion_0.75L,sr,78,15.6,omega,upper,1.781843721489814e-05 +illusion_0.75L,sr,78,15.6,omega,lower,1.781843721489814e-05 +illusion_0.75L,sr,79,15.8,omega,front,-4.2165573917626666e-05 +illusion_0.75L,sr,79,15.8,omega,upper,1.587303118637435e-05 +illusion_0.75L,sr,79,15.8,omega,lower,1.587303118637435e-05 +illusion_0.75L,sr,80,16.0,omega,front,-1.2428580969348728e-05 +illusion_0.75L,sr,80,16.0,omega,upper,3.2355254346995e-06 +illusion_0.75L,sr,80,16.0,omega,lower,3.2355254346995e-06 +illusion_0.75L,sr,81,16.2,omega,front,2.4019746815178056e-05 +illusion_0.75L,sr,81,16.2,omega,upper,-1.4430038008259169e-05 +illusion_0.75L,sr,81,16.2,omega,lower,-1.4430038008259169e-05 +illusion_0.75L,sr,82,16.4,omega,front,4.941358258008649e-05 +illusion_0.75L,sr,82,16.4,omega,upper,-2.4192790085812277e-05 +illusion_0.75L,sr,82,16.4,omega,lower,-2.4192790085812277e-05 +illusion_0.75L,sr,83,16.6,omega,front,6.499949443665803e-05 +illusion_0.75L,sr,83,16.6,omega,upper,-2.7208563661507908e-05 +illusion_0.75L,sr,83,16.6,omega,lower,-2.7208563661507908e-05 +illusion_0.75L,sr,84,16.8,omega,front,8.89975811704459e-05 +illusion_0.75L,sr,84,16.8,omega,upper,-3.709471905719873e-05 +illusion_0.75L,sr,84,16.8,omega,lower,-3.709471905719873e-05 +illusion_0.75L,sr,85,17.0,omega,front,0.00012274007752384672 +illusion_0.75L,sr,85,17.0,omega,upper,-5.4925466724390154e-05 +illusion_0.75L,sr,85,17.0,omega,lower,-5.4925466724390154e-05 +illusion_0.75L,sr,86,17.2,omega,front,0.00014296501773010493 +illusion_0.75L,sr,86,17.2,omega,upper,-6.361907076457451e-05 +illusion_0.75L,sr,86,17.2,omega,lower,-6.361907076457451e-05 +illusion_0.75L,sr,87,17.4,omega,front,0.00015559967369440292 +illusion_0.75L,sr,87,17.4,omega,upper,-6.774215840706435e-05 +illusion_0.75L,sr,87,17.4,omega,lower,-6.774215840706435e-05 +illusion_0.75L,sr,88,17.6,omega,front,0.00016242689347511954 +illusion_0.75L,sr,88,17.6,omega,upper,-6.868668389174777e-05 +illusion_0.75L,sr,88,17.6,omega,lower,-6.868668389174777e-05 +illusion_0.75L,sr,89,17.8,omega,front,0.0001760105913318108 +illusion_0.75L,sr,89,17.8,omega,upper,-7.583747685931453e-05 +illusion_0.75L,sr,89,17.8,omega,lower,-7.583747685931453e-05 +illusion_0.75L,sr,90,18.0,omega,front,0.00018491240644139011 +illusion_0.75L,sr,90,18.0,omega,upper,-8.076512383834305e-05 +illusion_0.75L,sr,90,18.0,omega,lower,-8.076512383834305e-05 +illusion_0.75L,sr,91,18.2,omega,front,0.00017787086164161402 +illusion_0.75L,sr,91,18.2,omega,upper,-7.52085000954772e-05 +illusion_0.75L,sr,91,18.2,omega,lower,-7.52085000954772e-05 +illusion_0.75L,sr,92,18.4,omega,front,0.0001671521026534982 +illusion_0.75L,sr,92,18.4,omega,upper,-6.827343346664336e-05 +illusion_0.75L,sr,92,18.4,omega,lower,-6.827343346664336e-05 +illusion_0.75L,sr,93,18.6,omega,front,0.00015831922181270538 +illusion_0.75L,sr,93,18.6,omega,upper,-6.39972596434954e-05 +illusion_0.75L,sr,93,18.6,omega,lower,-6.39972596434954e-05 +illusion_0.75L,sr,94,18.8,omega,front,0.00015399449879212616 +illusion_0.75L,sr,94,18.8,omega,upper,-6.426117128876475e-05 +illusion_0.75L,sr,94,18.8,omega,lower,-6.426117128876475e-05 +illusion_0.75L,sr,95,19.0,omega,front,0.00013536568634317403 +illusion_0.75L,sr,95,19.0,omega,upper,-5.5011107934020004e-05 +illusion_0.75L,sr,95,19.0,omega,lower,-5.5011107934020004e-05 +illusion_0.75L,sr,96,19.2,omega,front,0.00011051046865983322 +illusion_0.75L,sr,96,19.2,omega,upper,-4.212541343845681e-05 +illusion_0.75L,sr,96,19.2,omega,lower,-4.212541343845681e-05 +illusion_0.75L,sr,97,19.4,omega,front,8.944089185485136e-05 +illusion_0.75L,sr,97,19.4,omega,upper,-3.281787881212417e-05 +illusion_0.75L,sr,97,19.4,omega,lower,-3.281787881212417e-05 +illusion_0.75L,sr,98,19.6,omega,front,7.647051475445963e-05 +illusion_0.75L,sr,98,19.6,omega,upper,-3.00718430649655e-05 +illusion_0.75L,sr,98,19.6,omega,lower,-3.00718430649655e-05 +illusion_0.75L,sr,99,19.8,omega,front,5.5454472776767864e-05 +illusion_0.75L,sr,99,19.8,omega,upper,-2.173192229823661e-05 +illusion_0.75L,sr,99,19.8,omega,lower,-2.173192229823661e-05 +illusion_0.75L,sr,100,20.0,omega,front,3.006985613047051e-05 +illusion_0.75L,sr,100,20.0,omega,upper,-1.03747557442313e-05 +illusion_0.75L,sr,100,20.0,omega,lower,-1.03747557442313e-05 +illusion_0.75L,sr,101,20.2,omega,front,9.47997909410336e-06 +illusion_0.75L,sr,101,20.2,omega,upper,-2.575026304994024e-06 +illusion_0.75L,sr,101,20.2,omega,lower,-2.575026304994024e-06 +illusion_0.75L,sr,102,20.4,omega,front,-8.511353894106472e-06 +illusion_0.75L,sr,102,20.4,omega,upper,3.4577278139953954e-06 +illusion_0.75L,sr,102,20.4,omega,lower,3.4577278139953954e-06 +illusion_0.75L,sr,103,20.6,omega,front,-2.8161057534390274e-05 +illusion_0.75L,sr,103,20.6,omega,upper,1.1010402500562337e-05 +illusion_0.75L,sr,103,20.6,omega,lower,1.1010402500562337e-05 +illusion_0.75L,sr,104,20.8,omega,front,-4.940460465893522e-05 +illusion_0.75L,sr,104,20.8,omega,upper,2.016504842925933e-05 +illusion_0.75L,sr,104,20.8,omega,lower,2.016504842925933e-05 +illusion_0.75L,sr,105,21.0,omega,front,-7.031161026736732e-05 +illusion_0.75L,sr,105,21.0,omega,upper,2.9619144798612196e-05 +illusion_0.75L,sr,105,21.0,omega,lower,2.9619144798612196e-05 +illusion_0.75L,sr,106,21.2,omega,front,-8.913173066582507e-05 +illusion_0.75L,sr,106,21.2,omega,upper,3.817662909643867e-05 +illusion_0.75L,sr,106,21.2,omega,lower,3.817662909643867e-05 +illusion_0.75L,sr,107,21.4,omega,front,-0.00010137857866455352 +illusion_0.75L,sr,107,21.4,omega,upper,4.26159625696073e-05 +illusion_0.75L,sr,107,21.4,omega,lower,4.26159625696073e-05 +illusion_0.75L,sr,108,21.6,omega,front,-0.00011061428475506119 +illusion_0.75L,sr,108,21.6,omega,upper,4.570296886905037e-05 +illusion_0.75L,sr,108,21.6,omega,lower,4.570296886905037e-05 +illusion_0.75L,sr,109,21.8,omega,front,-0.00011897889999182156 +illusion_0.75L,sr,109,21.8,omega,upper,4.909581007977913e-05 +illusion_0.75L,sr,109,21.8,omega,lower,4.909581007977913e-05 +illusion_0.75L,sr,110,22.0,omega,front,-0.00012498602929854455 +illusion_0.75L,sr,110,22.0,omega,upper,5.17666468854016e-05 +illusion_0.75L,sr,110,22.0,omega,lower,5.17666468854016e-05 +illusion_0.75L,sr,111,22.2,omega,front,-0.0001266142088397311 +illusion_0.75L,sr,111,22.2,omega,upper,5.2222660850142074e-05 +illusion_0.75L,sr,111,22.2,omega,lower,5.2222660850142074e-05 +illusion_0.75L,sr,112,22.4,omega,front,-0.0001272159650779986 +illusion_0.75L,sr,112,22.4,omega,upper,5.298038275013475e-05 +illusion_0.75L,sr,112,22.4,omega,lower,5.298038275013475e-05 +illusion_0.75L,sr,113,22.6,omega,front,-0.00011319122130915876 +illusion_0.75L,sr,113,22.6,omega,upper,4.394835349034981e-05 +illusion_0.75L,sr,113,22.6,omega,lower,4.394835349034981e-05 +illusion_0.75L,sr,114,22.8,omega,front,-0.00010582983214782946 +illusion_0.75L,sr,114,22.8,omega,upper,4.087638017292082e-05 +illusion_0.75L,sr,114,22.8,omega,lower,4.087638017292082e-05 +illusion_0.75L,sr,115,23.0,omega,front,-9.805861650432443e-05 +illusion_0.75L,sr,115,23.0,omega,upper,3.839680070000455e-05 +illusion_0.75L,sr,115,23.0,omega,lower,3.839680070000455e-05 +illusion_0.75L,sr,116,23.2,omega,front,-8.544569231522137e-05 +illusion_0.75L,sr,116,23.2,omega,upper,3.3161356332746875e-05 +illusion_0.75L,sr,116,23.2,omega,lower,3.3161356332746875e-05 +illusion_0.75L,sr,117,23.4,omega,front,-6.765357154188641e-05 +illusion_0.75L,sr,117,23.4,omega,upper,2.480656415235358e-05 +illusion_0.75L,sr,117,23.4,omega,lower,2.480656415235358e-05 +illusion_0.75L,sr,118,23.6,omega,front,-5.224692511771198e-05 +illusion_0.75L,sr,118,23.6,omega,upper,1.8779490072770093e-05 +illusion_0.75L,sr,118,23.6,omega,lower,1.8779490072770093e-05 +illusion_0.75L,sr,119,23.8,omega,front,-4.0035977678243883e-05 +illusion_0.75L,sr,119,23.8,omega,upper,1.5511298100342846e-05 +illusion_0.75L,sr,119,23.8,omega,lower,1.5511298100342846e-05 +illusion_0.75L,sr,120,24.0,omega,front,-2.4971199396357033e-05 +illusion_0.75L,sr,120,24.0,omega,upper,1.0380985032311957e-05 +illusion_0.75L,sr,120,24.0,omega,lower,1.0380985032311957e-05 +illusion_0.75L,sr,121,24.2,omega,front,-3.7525904480315574e-06 +illusion_0.75L,sr,121,24.2,omega,upper,8.194740078548875e-07 +illusion_0.75L,sr,121,24.2,omega,lower,8.194740078548875e-07 +illusion_0.75L,sr,122,24.4,omega,front,1.4641710172990852e-05 +illusion_0.75L,sr,122,24.4,omega,upper,-6.662814099771464e-06 +illusion_0.75L,sr,122,24.4,omega,lower,-6.662814099771464e-06 +illusion_0.75L,sr,123,24.6,omega,front,2.53804791700267e-05 +illusion_0.75L,sr,123,24.6,omega,upper,-8.661561749042264e-06 +illusion_0.75L,sr,123,24.6,omega,lower,-8.661561749042264e-06 +illusion_0.75L,sr,124,24.8,omega,front,3.751115037128102e-05 +illusion_0.75L,sr,124,24.8,omega,upper,-1.200275955093793e-05 +illusion_0.75L,sr,124,24.8,omega,lower,-1.200275955093793e-05 +illusion_0.75L,sr,125,25.0,omega,front,5.7318751316095196e-05 +illusion_0.75L,sr,125,25.0,omega,upper,-2.1415506975952617e-05 +illusion_0.75L,sr,125,25.0,omega,lower,-2.1415506975952617e-05 +illusion_0.75L,sr,126,25.2,omega,front,7.456586187928973e-05 +illusion_0.75L,sr,126,25.2,omega,upper,-2.9406876313369074e-05 +illusion_0.75L,sr,126,25.2,omega,lower,-2.9406876313369074e-05 +illusion_0.75L,sr,127,25.4,omega,front,8.172558676467448e-05 +illusion_0.75L,sr,127,25.4,omega,upper,-3.054061278993325e-05 +illusion_0.75L,sr,127,25.4,omega,lower,-3.054061278993325e-05 +illusion_0.75L,sr,128,25.6,omega,front,8.631130387573787e-05 +illusion_0.75L,sr,128,25.6,omega,upper,-3.049657016613902e-05 +illusion_0.75L,sr,128,25.6,omega,lower,-3.049657016613902e-05 +illusion_0.75L,sr,129,25.8,omega,front,9.938908886553785e-05 +illusion_0.75L,sr,129,25.8,omega,upper,-3.750299687769437e-05 +illusion_0.75L,sr,129,25.8,omega,lower,-3.750299687769437e-05 +illusion_0.75L,sr,130,26.0,omega,front,0.00011102888577125679 +illusion_0.75L,sr,130,26.0,omega,upper,-4.423166195649121e-05 +illusion_0.75L,sr,130,26.0,omega,lower,-4.423166195649121e-05 +illusion_0.75L,sr,131,26.2,omega,front,0.00011027972165813437 +illusion_0.75L,sr,131,26.2,omega,upper,-4.266716632699938e-05 +illusion_0.75L,sr,131,26.2,omega,lower,-4.266716632699938e-05 +illusion_0.75L,sr,132,26.4,omega,front,0.00010528750032771053 +illusion_0.75L,sr,132,26.4,omega,upper,-3.88904195421378e-05 +illusion_0.75L,sr,132,26.4,omega,lower,-3.88904195421378e-05 +illusion_0.75L,sr,133,26.6,omega,front,0.00010239148450398494 +illusion_0.75L,sr,133,26.6,omega,upper,-3.7561068233684384e-05 +illusion_0.75L,sr,133,26.6,omega,lower,-3.7561068233684384e-05 +illusion_0.75L,sr,134,26.8,omega,front,0.00010264096417890987 +illusion_0.75L,sr,134,26.8,omega,upper,-3.94107905553933e-05 +illusion_0.75L,sr,134,26.8,omega,lower,-3.94107905553933e-05 +illusion_0.75L,sr,135,27.0,omega,front,9.572081953646248e-05 +illusion_0.75L,sr,135,27.0,omega,upper,-3.6758768305659784e-05 +illusion_0.75L,sr,135,27.0,omega,lower,-3.6758768305659784e-05 +illusion_0.75L,sr,136,27.2,omega,front,8.093264216482772e-05 +illusion_0.75L,sr,136,27.2,omega,upper,-2.9045926128074136e-05 +illusion_0.75L,sr,136,27.2,omega,lower,-2.9045926128074136e-05 +illusion_0.75L,sr,137,27.4,omega,front,6.557200888986224e-05 +illusion_0.75L,sr,137,27.4,omega,upper,-2.1591477343956626e-05 +illusion_0.75L,sr,137,27.4,omega,lower,-2.1591477343956626e-05 +illusion_0.75L,sr,138,27.6,omega,front,6.021473631870146e-05 +illusion_0.75L,sr,138,27.6,omega,upper,-2.2079763422900613e-05 +illusion_0.75L,sr,138,27.6,omega,lower,-2.2079763422900613e-05 +illusion_0.75L,sr,139,27.8,omega,front,5.2620010989776825e-05 +illusion_0.75L,sr,139,27.8,omega,upper,-2.1324445596220266e-05 +illusion_0.75L,sr,139,27.8,omega,lower,-2.1324445596220266e-05 +illusion_0.75L,sr,140,28.0,omega,front,3.479563418587486e-05 +illusion_0.75L,sr,140,28.0,omega,upper,-1.3311704402761814e-05 +illusion_0.75L,sr,140,28.0,omega,lower,-1.3311704402761814e-05 +illusion_0.75L,sr,141,28.2,omega,front,1.762530577753352e-05 +illusion_0.75L,sr,141,28.2,omega,upper,-5.983068396166382e-06 +illusion_0.75L,sr,141,28.2,omega,lower,-5.983068396166382e-06 +illusion_0.75L,sr,142,28.4,omega,front,1.1162756311810838e-05 +illusion_0.75L,sr,142,28.4,omega,upper,-6.6155498752777135e-06 +illusion_0.75L,sr,142,28.4,omega,lower,-6.6155498752777135e-06 +illusion_0.75L,sr,143,28.6,omega,front,5.04603634634399e-06 +illusion_0.75L,sr,143,28.6,omega,upper,-7.388615566472859e-06 +illusion_0.75L,sr,143,28.6,omega,lower,-7.388615566472859e-06 +illusion_0.75L,sr,144,28.8,omega,front,-1.0624050880810206e-05 +illusion_0.75L,sr,144,28.8,omega,upper,-8.816009239459404e-07 +illusion_0.75L,sr,144,28.8,omega,lower,-8.816009239459404e-07 +illusion_0.75L,sr,145,29.0,omega,front,-2.8699366398885347e-05 +illusion_0.75L,sr,145,29.0,omega,upper,7.691661867376618e-06 +illusion_0.75L,sr,145,29.0,omega,lower,7.691661867376618e-06 +illusion_0.75L,sr,146,29.2,omega,front,-4.045029367759797e-05 +illusion_0.75L,sr,146,29.2,omega,upper,1.196903933511892e-05 +illusion_0.75L,sr,146,29.2,omega,lower,1.196903933511892e-05 +illusion_0.75L,sr,147,29.4,omega,front,-4.6765034367380676e-05 +illusion_0.75L,sr,147,29.4,omega,upper,1.2719364311591167e-05 +illusion_0.75L,sr,147,29.4,omega,lower,1.2719364311591167e-05 +illusion_0.75L,sr,148,29.6,omega,front,-5.539763361446904e-05 +illusion_0.75L,sr,148,29.6,omega,upper,1.5761897346326484e-05 +illusion_0.75L,sr,148,29.6,omega,lower,1.5761897346326484e-05 +illusion_0.75L,sr,149,29.8,omega,front,-6.829070667231082e-05 +illusion_0.75L,sr,149,29.8,omega,upper,2.258197540046837e-05 +illusion_0.75L,sr,149,29.8,omega,lower,2.258197540046837e-05 +illusion_0.75L,sr,150,30.0,omega,front,-7.704653401729454e-05 +illusion_0.75L,sr,150,30.0,omega,upper,2.7027009399545192e-05 +illusion_0.75L,sr,150,30.0,omega,lower,2.7027009399545192e-05 +illusion_0.75L,sr,151,30.2,omega,front,-7.931961550392982e-05 +illusion_0.75L,sr,151,30.2,omega,upper,2.741624113207816e-05 +illusion_0.75L,sr,151,30.2,omega,lower,2.741624113207816e-05 +illusion_0.75L,sr,152,30.4,omega,front,-7.862402620502814e-05 +illusion_0.75L,sr,152,30.4,omega,upper,2.6379982580148135e-05 +illusion_0.75L,sr,152,30.4,omega,lower,2.6379982580148135e-05 +illusion_0.75L,sr,153,30.6,omega,front,-7.739915785460391e-05 +illusion_0.75L,sr,153,30.6,omega,upper,2.5745261658478638e-05 +illusion_0.75L,sr,153,30.6,omega,lower,2.5745261658478638e-05 +illusion_0.75L,sr,154,30.8,omega,front,-7.990585695284415e-05 +illusion_0.75L,sr,154,30.8,omega,upper,2.8664463486362742e-05 +illusion_0.75L,sr,154,30.8,omega,lower,2.8664463486362742e-05 +illusion_0.75L,sr,155,31.0,omega,front,-7.662115718028467e-05 +illusion_0.75L,sr,155,31.0,omega,upper,2.8017430541971005e-05 +illusion_0.75L,sr,155,31.0,omega,lower,2.8017430541971005e-05 +illusion_0.75L,sr,156,31.2,omega,front,-6.625640143622512e-05 +illusion_0.75L,sr,156,31.2,omega,upper,2.2820696297376e-05 +illusion_0.75L,sr,156,31.2,omega,lower,2.2820696297376e-05 +illusion_0.75L,sr,157,31.4,omega,front,-5.996703917868884e-05 +illusion_0.75L,sr,157,31.4,omega,upper,2.1271330552247134e-05 +illusion_0.75L,sr,157,31.4,omega,lower,2.1271330552247134e-05 +illusion_0.75L,sr,158,31.6,omega,front,-5.449771514531184e-05 +illusion_0.75L,sr,158,31.6,omega,upper,2.0861693743451163e-05 +illusion_0.75L,sr,158,31.6,omega,lower,2.0861693743451163e-05 +illusion_0.75L,sr,159,31.8,omega,front,-4.88801420254003e-05 +illusion_0.75L,sr,159,31.8,omega,upper,2.0758792532813536e-05 +illusion_0.75L,sr,159,31.8,omega,lower,2.0758792532813536e-05 +illusion_0.75L,sr,160,32.0,omega,front,-4.003075681130938e-05 +illusion_0.75L,sr,160,32.0,omega,upper,1.856749205319577e-05 +illusion_0.75L,sr,160,32.0,omega,lower,1.856749205319577e-05 +illusion_0.75L,sr,161,32.2,omega,front,-2.8817418119116907e-05 +illusion_0.75L,sr,161,32.2,omega,upper,1.4840660665087716e-05 +illusion_0.75L,sr,161,32.2,omega,lower,1.4840660665087716e-05 +illusion_0.75L,sr,162,32.4,omega,front,-2.0307283714278298e-05 +illusion_0.75L,sr,162,32.4,omega,upper,1.3232431404530686e-05 +illusion_0.75L,sr,162,32.4,omega,lower,1.3232431404530686e-05 +illusion_0.75L,sr,163,32.6,omega,front,-1.3035837719676249e-05 +illusion_0.75L,sr,163,32.6,omega,upper,1.2512307860976205e-05 +illusion_0.75L,sr,163,32.6,omega,lower,1.2512307860976205e-05 +illusion_0.75L,sr,164,32.8,omega,front,-4.987763929593623e-06 +illusion_0.75L,sr,164,32.8,omega,upper,1.1081517257466866e-05 +illusion_0.75L,sr,164,32.8,omega,lower,1.1081517257466866e-05 +illusion_0.75L,sr,165,33.0,omega,front,5.889743241848586e-06 +illusion_0.75L,sr,165,33.0,omega,upper,7.331368981320155e-06 +illusion_0.75L,sr,165,33.0,omega,lower,7.331368981320155e-06 +illusion_0.75L,sr,166,33.2,omega,front,1.971569064835251e-05 +illusion_0.75L,sr,166,33.2,omega,upper,1.1113137317306578e-06 +illusion_0.75L,sr,166,33.2,omega,lower,1.1113137317306578e-06 +illusion_0.75L,sr,167,33.4,omega,front,3.004598925965489e-05 +illusion_0.75L,sr,167,33.4,omega,upper,-2.896381027399711e-06 +illusion_0.75L,sr,167,33.4,omega,lower,-2.896381027399711e-06 +illusion_0.75L,sr,168,33.6,omega,front,3.518286028240413e-05 +illusion_0.75L,sr,168,33.6,omega,upper,-3.5327425752309724e-06 +illusion_0.75L,sr,168,33.6,omega,lower,-3.5327425752309724e-06 +illusion_0.75L,sr,169,33.8,omega,front,4.372748300915337e-05 +illusion_0.75L,sr,169,33.8,omega,upper,-7.230539234685182e-06 +illusion_0.75L,sr,169,33.8,omega,lower,-7.230539234685182e-06 +illusion_0.75L,sr,170,34.0,omega,front,5.708161238948871e-05 +illusion_0.75L,sr,170,34.0,omega,upper,-1.5035938451036444e-05 +illusion_0.75L,sr,170,34.0,omega,lower,-1.5035938451036444e-05 +illusion_0.75L,sr,171,34.2,omega,front,6.680616168071932e-05 +illusion_0.75L,sr,171,34.2,omega,upper,-2.0749491742620697e-05 +illusion_0.75L,sr,171,34.2,omega,lower,-2.0749491742620697e-05 +illusion_0.75L,sr,172,34.4,omega,front,6.698380357207767e-05 +illusion_0.75L,sr,172,34.4,omega,upper,-2.0058949590349153e-05 +illusion_0.75L,sr,172,34.4,omega,lower,-2.0058949590349153e-05 +illusion_0.75L,sr,173,34.6,omega,front,6.808923978222595e-05 +illusion_0.75L,sr,173,34.6,omega,upper,-2.075643356570775e-05 +illusion_0.75L,sr,173,34.6,omega,lower,-2.075643356570775e-05 +illusion_0.75L,sr,174,34.8,omega,front,7.443435657383618e-05 +illusion_0.75L,sr,174,34.8,omega,upper,-2.598849557378158e-05 +illusion_0.75L,sr,174,34.8,omega,lower,-2.598849557378158e-05 +illusion_0.75L,sr,175,35.0,omega,front,8.037379616810677e-05 +illusion_0.75L,sr,175,35.0,omega,upper,-3.1551515632377084e-05 +illusion_0.75L,sr,175,35.0,omega,lower,-3.1551515632377084e-05 +illusion_0.75L,sr,176,35.2,omega,front,7.577612026802177e-05 +illusion_0.75L,sr,176,35.2,omega,upper,-2.9931635865585587e-05 +illusion_0.75L,sr,176,35.2,omega,lower,-2.9931635865585587e-05 +illusion_0.75L,sr,177,35.4,omega,front,6.663235585107473e-05 +illusion_0.75L,sr,177,35.4,omega,upper,-2.5554940112997686e-05 +illusion_0.75L,sr,177,35.4,omega,lower,-2.5554940112997686e-05 +illusion_0.75L,sr,178,35.6,omega,front,6.694713398412148e-05 +illusion_0.75L,sr,178,35.6,omega,upper,-2.8684672351764198e-05 +illusion_0.75L,sr,178,35.6,omega,lower,-2.8684672351764198e-05 +illusion_0.75L,sr,179,35.8,omega,front,6.767545468062603e-05 +illusion_0.75L,sr,179,35.8,omega,upper,-3.249709771008993e-05 +illusion_0.75L,sr,179,35.8,omega,lower,-3.249709771008993e-05 +illusion_0.75L,sr,180,36.0,omega,front,6.208699242677245e-05 +illusion_0.75L,sr,180,36.0,omega,upper,-3.197440638324032e-05 +illusion_0.75L,sr,180,36.0,omega,lower,-3.197440638324032e-05 +illusion_0.75L,sr,181,36.2,omega,front,4.942135302266421e-05 +illusion_0.75L,sr,181,36.2,omega,upper,-2.6473710304965245e-05 +illusion_0.75L,sr,181,36.2,omega,lower,-2.6473710304965245e-05 +illusion_0.75L,sr,182,36.4,omega,front,4.02916182392284e-05 +illusion_0.75L,sr,182,36.4,omega,upper,-2.3756450453109147e-05 +illusion_0.75L,sr,182,36.4,omega,lower,-2.3756450453109147e-05 +illusion_0.75L,sr,183,36.6,omega,front,3.7811046621016666e-05 +illusion_0.75L,sr,183,36.6,omega,upper,-2.600794291494295e-05 +illusion_0.75L,sr,183,36.6,omega,lower,-2.600794291494295e-05 +illusion_0.75L,sr,184,36.8,omega,front,3.120572094685091e-05 +illusion_0.75L,sr,184,36.8,omega,upper,-2.5160195444558845e-05 +illusion_0.75L,sr,184,36.8,omega,lower,-2.5160195444558845e-05 +illusion_0.75L,sr,185,37.0,omega,front,1.455410914842194e-05 +illusion_0.75L,sr,185,37.0,omega,upper,-1.6779278117614994e-05 +illusion_0.75L,sr,185,37.0,omega,lower,-1.6779278117614994e-05 +illusion_0.75L,sr,186,37.2,omega,front,-1.2084225471952967e-06 +illusion_0.75L,sr,186,37.2,omega,upper,-8.895500456853403e-06 +illusion_0.75L,sr,186,37.2,omega,lower,-8.895500456853403e-06 +illusion_0.75L,sr,187,37.4,omega,front,-5.117547514486669e-06 +illusion_0.75L,sr,187,37.4,omega,upper,-9.504617058264386e-06 +illusion_0.75L,sr,187,37.4,omega,lower,-9.504617058264386e-06 +illusion_0.75L,sr,188,37.6,omega,front,-9.437289844237695e-06 +illusion_0.75L,sr,188,37.6,omega,upper,-9.426959276668117e-06 +illusion_0.75L,sr,188,37.6,omega,lower,-9.426959276668117e-06 +illusion_0.75L,sr,189,37.8,omega,front,-2.432557126412688e-05 +illusion_0.75L,sr,189,37.8,omega,upper,-1.1229341760613313e-06 +illusion_0.75L,sr,189,37.8,omega,lower,-1.1229341760613313e-06 +illusion_0.75L,sr,190,38.0,omega,front,-3.957343309147883e-05 +illusion_0.75L,sr,190,38.0,omega,upper,7.889032691063037e-06 +illusion_0.75L,sr,190,38.0,omega,lower,7.889032691063037e-06 +illusion_0.75L,sr,191,38.2,omega,front,-4.39064097351688e-05 +illusion_0.75L,sr,191,38.2,omega,upper,9.336726530819532e-06 +illusion_0.75L,sr,191,38.2,omega,lower,9.336726530819532e-06 +illusion_0.75L,sr,192,38.4,omega,front,-4.5325978274615914e-05 +illusion_0.75L,sr,192,38.4,omega,upper,9.218120154345262e-06 +illusion_0.75L,sr,192,38.4,omega,lower,9.218120154345262e-06 +illusion_0.75L,sr,193,38.6,omega,front,-5.1977119365743676e-05 +illusion_0.75L,sr,193,38.6,omega,upper,1.3562332859519063e-05 +illusion_0.75L,sr,193,38.6,omega,lower,1.3562332859519063e-05 +illusion_0.75L,sr,194,38.8,omega,front,-6.381083767424064e-05 +illusion_0.75L,sr,194,38.8,omega,upper,2.2318335565682834e-05 +illusion_0.75L,sr,194,38.8,omega,lower,2.2318335565682834e-05 +illusion_0.75L,sr,195,39.0,omega,front,-6.666614745096187e-05 +illusion_0.75L,sr,195,39.0,omega,upper,2.501845636522688e-05 +illusion_0.75L,sr,195,39.0,omega,lower,2.501845636522688e-05 +illusion_0.75L,sr,196,39.2,omega,front,-6.167872580123857e-05 +illusion_0.75L,sr,196,39.2,omega,upper,2.2523617856978902e-05 +illusion_0.75L,sr,196,39.2,omega,lower,2.2523617856978902e-05 +illusion_0.75L,sr,197,39.4,omega,front,-5.913602667208897e-05 +illusion_0.75L,sr,197,39.4,omega,upper,2.2407846818961393e-05 +illusion_0.75L,sr,197,39.4,omega,lower,2.2407846818961393e-05 +illusion_0.75L,sr,198,39.6,omega,front,-6.454799618330839e-05 +illusion_0.75L,sr,198,39.6,omega,upper,2.8664826043163818e-05 +illusion_0.75L,sr,198,39.6,omega,lower,2.8664826043163818e-05 +illusion_0.75L,sr,199,39.8,omega,front,-6.597862570551828e-05 +illusion_0.75L,sr,199,39.8,omega,upper,3.239390303814527e-05 +illusion_0.75L,sr,199,39.8,omega,lower,3.239390303814527e-05 +illusion_0.75L,sr,200,40.0,omega,front,-5.7626950885490485e-05 +illusion_0.75L,sr,200,40.0,omega,upper,2.9249706980229422e-05 +illusion_0.75L,sr,200,40.0,omega,lower,2.9249706980229422e-05 +illusion_0.75L,sr,201,40.2,omega,front,-4.738674075168139e-05 +illusion_0.75L,sr,201,40.2,omega,upper,2.5011136808672333e-05 +illusion_0.75L,sr,201,40.2,omega,lower,2.5011136808672333e-05 +illusion_0.75L,sr,202,40.4,omega,front,-4.333807693204742e-05 +illusion_0.75L,sr,202,40.4,omega,upper,2.5568532283997552e-05 +illusion_0.75L,sr,202,40.4,omega,lower,2.5568532283997552e-05 +illusion_0.75L,sr,203,40.6,omega,front,-4.103747969213905e-05 +illusion_0.75L,sr,203,40.6,omega,upper,2.7533931960001937e-05 +illusion_0.75L,sr,203,40.6,omega,lower,2.7533931960001937e-05 +illusion_0.75L,sr,204,40.8,omega,front,-3.0358932437637196e-05 +illusion_0.75L,sr,204,40.8,omega,upper,2.334025113145564e-05 +illusion_0.75L,sr,204,40.8,omega,lower,2.334025113145564e-05 +illusion_0.75L,sr,205,41.0,omega,front,-1.6493170988386064e-05 +illusion_0.75L,sr,205,41.0,omega,upper,1.6773977098986302e-05 +illusion_0.75L,sr,205,41.0,omega,lower,1.6773977098986302e-05 +illusion_0.75L,sr,206,41.2,omega,front,-4.8899649057839585e-06 +illusion_0.75L,sr,206,41.2,omega,upper,1.1787318228904873e-05 +illusion_0.75L,sr,206,41.2,omega,lower,1.1787318228904873e-05 +illusion_0.75L,sr,207,41.4,omega,front,1.485878949205148e-06 +illusion_0.75L,sr,207,41.4,omega,upper,1.0495006804885111e-05 +illusion_0.75L,sr,207,41.4,omega,lower,1.0495006804885111e-05 +illusion_0.75L,sr,208,41.6,omega,front,1.0118380506888464e-05 +illusion_0.75L,sr,208,41.6,omega,upper,7.269015265611335e-06 +illusion_0.75L,sr,208,41.6,omega,lower,7.269015265611335e-06 +illusion_0.75L,sr,209,41.8,omega,front,2.313771697947428e-05 +illusion_0.75L,sr,209,41.8,omega,upper,4.793869140215859e-07 +illusion_0.75L,sr,209,41.8,omega,lower,4.793869140215859e-07 +illusion_0.75L,sr,210,42.0,omega,front,3.453845470811269e-05 +illusion_0.75L,sr,210,42.0,omega,upper,-5.478925171495362e-06 +illusion_0.75L,sr,210,42.0,omega,lower,-5.478925171495362e-06 +illusion_0.75L,sr,211,42.2,omega,front,4.0931229043052325e-05 +illusion_0.75L,sr,211,42.2,omega,upper,-8.166722651770826e-06 +illusion_0.75L,sr,211,42.2,omega,lower,-8.166722651770826e-06 +illusion_0.75L,sr,212,42.4,omega,front,4.4688573382102164e-05 +illusion_0.75L,sr,212,42.4,omega,upper,-9.400388248398881e-06 +illusion_0.75L,sr,212,42.4,omega,lower,-9.400388248398881e-06 +illusion_0.75L,sr,213,42.6,omega,front,5.171391225686176e-05 +illusion_0.75L,sr,213,42.6,omega,upper,-1.3586707145464874e-05 +illusion_0.75L,sr,213,42.6,omega,lower,-1.3586707145464874e-05 +illusion_0.75L,sr,214,42.8,omega,front,5.919332095546723e-05 +illusion_0.75L,sr,214,42.8,omega,upper,-1.8652211352206092e-05 +illusion_0.75L,sr,214,42.8,omega,lower,-1.8652211352206092e-05 +illusion_0.75L,sr,215,43.0,omega,front,6.624889234814448e-05 +illusion_0.75L,sr,215,43.0,omega,upper,-2.394744163476157e-05 +illusion_0.75L,sr,215,43.0,omega,lower,-2.394744163476157e-05 +illusion_0.75L,sr,216,43.2,omega,front,6.373234905664667e-05 +illusion_0.75L,sr,216,43.2,omega,upper,-2.2704644202039513e-05 +illusion_0.75L,sr,216,43.2,omega,lower,-2.2704644202039513e-05 +illusion_0.75L,sr,217,43.4,omega,front,5.526077994252421e-05 +illusion_0.75L,sr,217,43.4,omega,upper,-1.7656500025576075e-05 +illusion_0.75L,sr,217,43.4,omega,lower,-1.7656500025576075e-05 +illusion_0.75L,sr,218,43.6,omega,front,5.297298202908862e-05 +illusion_0.75L,sr,218,43.6,omega,upper,-1.775540682361399e-05 +illusion_0.75L,sr,218,43.6,omega,lower,-1.775540682361399e-05 +illusion_0.75L,sr,219,43.8,omega,front,5.7062919448710483e-05 +illusion_0.75L,sr,219,43.8,omega,upper,-2.3041126964801657e-05 +illusion_0.75L,sr,219,43.8,omega,lower,-2.3041126964801657e-05 +illusion_0.75L,sr,220,44.0,omega,front,5.15032216242561e-05 +illusion_0.75L,sr,220,44.0,omega,upper,-2.1594928650542424e-05 +illusion_0.75L,sr,220,44.0,omega,lower,-2.1594928650542424e-05 +illusion_0.75L,sr,221,44.2,omega,front,3.6891670862684194e-05 +illusion_0.75L,sr,221,44.2,omega,upper,-1.3850299907967878e-05 +illusion_0.75L,sr,221,44.2,omega,lower,-1.3850299907967878e-05 +illusion_0.75L,sr,222,44.4,omega,front,2.8809885911018178e-05 +illusion_0.75L,sr,222,44.4,omega,upper,-1.1272361824938536e-05 +illusion_0.75L,sr,222,44.4,omega,lower,-1.1272361824938536e-05 +illusion_0.75L,sr,223,44.6,omega,front,2.999402702299661e-05 +illusion_0.75L,sr,223,44.6,omega,upper,-1.5738921131406787e-05 +illusion_0.75L,sr,223,44.6,omega,lower,-1.5738921131406787e-05 +illusion_0.75L,sr,224,44.8,omega,front,2.7331088996510336e-05 +illusion_0.75L,sr,224,44.8,omega,upper,-1.743499155354072e-05 +illusion_0.75L,sr,224,44.8,omega,lower,-1.743499155354072e-05 +illusion_0.75L,sr,225,45.0,omega,front,1.4562003894573912e-05 +illusion_0.75L,sr,225,45.0,omega,upper,-1.1698501533373112e-05 +illusion_0.75L,sr,225,45.0,omega,lower,-1.1698501533373112e-05 +illusion_0.75L,sr,226,45.2,omega,front,1.470007912804834e-06 +illusion_0.75L,sr,226,45.2,omega,upper,-5.708011399983897e-06 +illusion_0.75L,sr,226,45.2,omega,lower,-5.708011399983897e-06 +illusion_0.75L,sr,227,45.4,omega,front,-8.829593475910211e-07 +illusion_0.75L,sr,227,45.4,omega,upper,-7.521418058699242e-06 +illusion_0.75L,sr,227,45.4,omega,lower,-7.521418058699242e-06 +illusion_0.75L,sr,228,45.6,omega,front,-5.1704899842811014e-08 +illusion_0.75L,sr,228,45.6,omega,upper,-1.1438083872971073e-05 +illusion_0.75L,sr,228,45.6,omega,lower,-1.1438083872971073e-05 +illusion_0.75L,sr,229,45.8,omega,front,-1.0829069128533882e-05 +illusion_0.75L,sr,229,45.8,omega,upper,-6.475298375841314e-06 +illusion_0.75L,sr,229,45.8,omega,lower,-6.475298375841314e-06 +illusion_0.75L,sr,230,46.0,omega,front,-2.8313860767998147e-05 +illusion_0.75L,sr,230,46.0,omega,upper,3.7571711192538326e-06 +illusion_0.75L,sr,230,46.0,omega,lower,3.7571711192538326e-06 +illusion_0.75L,sr,231,46.2,omega,front,-3.484344791437069e-05 +illusion_0.75L,sr,231,46.2,omega,upper,6.2557185117318585e-06 +illusion_0.75L,sr,231,46.2,omega,lower,6.2557185117318585e-06 +illusion_0.75L,sr,232,46.4,omega,front,-2.967375288734121e-05 +illusion_0.75L,sr,232,46.4,omega,upper,5.820356469104018e-07 +illusion_0.75L,sr,232,46.4,omega,lower,5.820356469104018e-07 +illusion_0.75L,sr,233,46.6,omega,front,-3.2350635132147586e-05 +illusion_0.75L,sr,233,46.6,omega,upper,1.2394841403789992e-06 +illusion_0.75L,sr,233,46.6,omega,lower,1.2394841403789992e-06 +illusion_0.75L,sr,234,46.8,omega,front,-4.776525636988813e-05 +illusion_0.75L,sr,234,46.8,omega,upper,1.181598422120695e-05 +illusion_0.75L,sr,234,46.8,omega,lower,1.181598422120695e-05 +illusion_0.75L,sr,235,47.0,omega,front,-5.372126369891511e-05 +illusion_0.75L,sr,235,47.0,omega,upper,1.5885542273921318e-05 +illusion_0.75L,sr,235,47.0,omega,lower,1.5885542273921318e-05 +illusion_0.75L,sr,236,47.2,omega,front,-4.327739536187203e-05 +illusion_0.75L,sr,236,47.2,omega,upper,8.401533095334854e-06 +illusion_0.75L,sr,236,47.2,omega,lower,8.401533095334854e-06 +illusion_0.75L,sr,237,47.4,omega,front,-3.605780624785726e-05 +illusion_0.75L,sr,237,47.4,omega,upper,3.90630382381952e-06 +illusion_0.75L,sr,237,47.4,omega,lower,3.90630382381952e-06 +illusion_0.75L,sr,238,47.6,omega,front,-4.506971984269179e-05 +illusion_0.75L,sr,238,47.6,omega,upper,1.1944836422740185e-05 +illusion_0.75L,sr,238,47.6,omega,lower,1.1944836422740185e-05 +illusion_0.75L,sr,239,47.8,omega,front,-4.9519534047983704e-05 +illusion_0.75L,sr,239,47.8,omega,upper,1.70560435266422e-05 +illusion_0.75L,sr,239,47.8,omega,lower,1.70560435266422e-05 +illusion_0.75L,sr,240,48.0,omega,front,-3.992062599740938e-05 +illusion_0.75L,sr,240,48.0,omega,upper,1.224785972616136e-05 +illusion_0.75L,sr,240,48.0,omega,lower,1.224785972616136e-05 +illusion_0.75L,sr,241,48.2,omega,front,-2.67586623853254e-05 +illusion_0.75L,sr,241,48.2,omega,upper,5.248064203977922e-06 +illusion_0.75L,sr,241,48.2,omega,lower,5.248064203977922e-06 +illusion_0.75L,sr,242,48.4,omega,front,-2.7457190728214612e-05 +illusion_0.75L,sr,242,48.4,omega,upper,8.838098849249087e-06 +illusion_0.75L,sr,242,48.4,omega,lower,8.838098849249087e-06 +illusion_0.75L,sr,243,48.6,omega,front,-3.435670695138846e-05 +illusion_0.75L,sr,243,48.6,omega,upper,1.7217231831544428e-05 +illusion_0.75L,sr,243,48.6,omega,lower,1.7217231831544428e-05 +illusion_0.75L,sr,244,48.8,omega,front,-2.858173806914806e-05 +illusion_0.75L,sr,244,48.8,omega,upper,1.6366830367588615e-05 +illusion_0.75L,sr,244,48.8,omega,lower,1.6366830367588615e-05 +illusion_0.75L,sr,245,49.0,omega,front,-1.2663358661387786e-05 +illusion_0.75L,sr,245,49.0,omega,upper,8.1263605335527e-06 +illusion_0.75L,sr,245,49.0,omega,lower,8.1263605335527e-06 +illusion_0.75L,sr,246,49.2,omega,front,-7.417484774287263e-06 +illusion_0.75L,sr,246,49.2,omega,upper,7.79784495707283e-06 +illusion_0.75L,sr,246,49.2,omega,lower,7.79784495707283e-06 +illusion_0.75L,sr,247,49.4,omega,front,-1.1649273225895676e-05 +illusion_0.75L,sr,247,49.4,omega,upper,1.4374127039025682e-05 +illusion_0.75L,sr,247,49.4,omega,lower,1.4374127039025682e-05 +illusion_0.75L,sr,248,49.6,omega,front,-8.416992079618782e-06 +illusion_0.75L,sr,248,49.6,omega,upper,1.5257989164732116e-05 +illusion_0.75L,sr,248,49.6,omega,lower,1.5257989164732116e-05 +illusion_0.75L,sr,249,49.8,omega,front,8.946286480965849e-06 +illusion_0.75L,sr,249,49.8,omega,upper,5.486610106046636e-06 +illusion_0.75L,sr,249,49.8,omega,lower,5.486610106046636e-06 +illusion_0.75L,sr,250,50.0,omega,front,2.2008494748377226e-05 +illusion_0.75L,sr,250,50.0,omega,upper,-1.3310027893887952e-06 +illusion_0.75L,sr,250,50.0,omega,lower,-1.3310027893887952e-06 +illusion_0.75L,sr,251,50.2,omega,front,1.8982260896198456e-05 +illusion_0.75L,sr,251,50.2,omega,upper,3.4246349973069203e-06 +illusion_0.75L,sr,251,50.2,omega,lower,3.4246349973069203e-06 +illusion_0.75L,sr,252,50.4,omega,front,1.7576283756873605e-05 +illusion_0.75L,sr,252,50.4,omega,upper,6.55432200889608e-06 +illusion_0.75L,sr,252,50.4,omega,lower,6.55432200889608e-06 +illusion_0.75L,sr,253,50.6,omega,front,3.0771969443528364e-05 +illusion_0.75L,sr,253,50.6,omega,upper,-1.5420899545466605e-06 +illusion_0.75L,sr,253,50.6,omega,lower,-1.5420899545466605e-06 +illusion_0.75L,sr,254,50.8,omega,front,4.2885375093141904e-05 +illusion_0.75L,sr,254,50.8,omega,upper,-9.26241426589456e-06 +illusion_0.75L,sr,254,50.8,omega,lower,-9.26241426589456e-06 +illusion_0.75L,sr,255,51.0,omega,front,4.178782986081778e-05 +illusion_0.75L,sr,255,51.0,omega,upper,-7.69195819215536e-06 +illusion_0.75L,sr,255,51.0,omega,lower,-7.69195819215536e-06 +illusion_0.75L,sr,256,51.2,omega,front,3.456710826342885e-05 +illusion_0.75L,sr,256,51.2,omega,upper,-2.1375221082642684e-06 +illusion_0.75L,sr,256,51.2,omega,lower,-2.1375221082642684e-06 +illusion_0.75L,sr,257,51.4,omega,front,3.699705425637821e-05 +illusion_0.75L,sr,257,51.4,omega,upper,-4.272377516056671e-06 +illusion_0.75L,sr,257,51.4,omega,lower,-4.272377516056671e-06 +illusion_0.75L,sr,258,51.6,omega,front,4.519884409672187e-05 +illusion_0.75L,sr,258,51.6,omega,upper,-1.117443100750893e-05 +illusion_0.75L,sr,258,51.6,omega,lower,-1.117443100750893e-05 +illusion_0.75L,sr,259,51.8,omega,front,4.4706945098351435e-05 +illusion_0.75L,sr,259,51.8,omega,upper,-1.2130946576482879e-05 +illusion_0.75L,sr,259,51.8,omega,lower,-1.2130946576482879e-05 +illusion_0.75L,sr,260,52.0,omega,front,3.640800900640798e-05 +illusion_0.75L,sr,260,52.0,omega,upper,-7.802058081808442e-06 +illusion_0.75L,sr,260,52.0,omega,lower,-7.802058081808442e-06 +illusion_0.75L,sr,261,52.2,omega,front,2.8895309966157044e-05 +illusion_0.75L,sr,261,52.2,omega,upper,-4.50236093365336e-06 +illusion_0.75L,sr,261,52.2,omega,lower,-4.50236093365336e-06 +illusion_0.75L,sr,262,52.4,omega,front,3.275207094170979e-05 +illusion_0.75L,sr,262,52.4,omega,upper,-1.000572113447229e-05 +illusion_0.75L,sr,262,52.4,omega,lower,-1.000572113447229e-05 +illusion_0.75L,sr,263,52.6,omega,front,3.4748501181936094e-05 +illusion_0.75L,sr,263,52.6,omega,upper,-1.441650345024614e-05 +illusion_0.75L,sr,263,52.6,omega,lower,-1.441650345024614e-05 +illusion_0.75L,sr,264,52.8,omega,front,2.859561827273373e-05 +illusion_0.75L,sr,264,52.8,omega,upper,-1.3022442495512886e-05 +illusion_0.75L,sr,264,52.8,omega,lower,-1.3022442495512886e-05 +illusion_0.75L,sr,265,53.0,omega,front,1.9037653311321807e-05 +illusion_0.75L,sr,265,53.0,omega,upper,-9.266135078413452e-06 +illusion_0.75L,sr,265,53.0,omega,lower,-9.266135078413452e-06 +illusion_0.75L,sr,266,53.2,omega,front,1.5904136282515115e-05 +illusion_0.75L,sr,266,53.2,omega,upper,-1.035677249825968e-05 +illusion_0.75L,sr,266,53.2,omega,lower,-1.035677249825968e-05 +illusion_0.75L,sr,267,53.4,omega,front,1.808305222769832e-05 +illusion_0.75L,sr,267,53.4,omega,upper,-1.536270144873043e-05 +illusion_0.75L,sr,267,53.4,omega,lower,-1.536270144873043e-05 +illusion_0.75L,sr,268,53.6,omega,front,1.2844970187214957e-05 +illusion_0.75L,sr,268,53.6,omega,upper,-1.4776014046067053e-05 +illusion_0.75L,sr,268,53.6,omega,lower,-1.4776014046067053e-05 +illusion_0.75L,sr,269,53.8,omega,front,1.0062352932521667e-07 +illusion_0.75L,sr,269,53.8,omega,upper,-8.500882251544009e-06 +illusion_0.75L,sr,269,53.8,omega,lower,-8.500882251544009e-06 +illusion_0.75L,sr,270,54.0,omega,front,-8.432674244783847e-06 +illusion_0.75L,sr,270,54.0,omega,upper,-5.170579624114574e-06 +illusion_0.75L,sr,270,54.0,omega,lower,-5.170579624114574e-06 +illusion_0.75L,sr,271,54.2,omega,front,-1.0140267440854472e-05 +illusion_0.75L,sr,271,54.2,omega,upper,-6.628515185046723e-06 +illusion_0.75L,sr,271,54.2,omega,lower,-6.628515185046723e-06 +illusion_0.75L,sr,272,54.4,omega,front,-1.2200900472496522e-05 +illusion_0.75L,sr,272,54.4,omega,upper,-7.484201199633063e-06 +illusion_0.75L,sr,272,54.4,omega,lower,-7.484201199633063e-06 +illusion_0.75L,sr,273,54.6,omega,front,-2.03299709857413e-05 +illusion_0.75L,sr,273,54.6,omega,upper,-3.4741127785800976e-06 +illusion_0.75L,sr,273,54.6,omega,lower,-3.4741127785800976e-06 +illusion_0.75L,sr,274,54.8,omega,front,-3.095548338624493e-05 +illusion_0.75L,sr,274,54.8,omega,upper,2.7655912626074405e-06 +illusion_0.75L,sr,274,54.8,omega,lower,2.7655912626074405e-06 +illusion_0.75L,sr,275,55.0,omega,front,-3.577635790819843e-05 +illusion_0.75L,sr,275,55.0,omega,upper,5.1371566920437735e-06 +illusion_0.75L,sr,275,55.0,omega,lower,5.1371566920437735e-06 +illusion_0.75L,sr,276,55.2,omega,front,-3.228272943994255e-05 +illusion_0.75L,sr,276,55.2,omega,upper,1.8430509435678894e-06 +illusion_0.75L,sr,276,55.2,omega,lower,1.8430509435678894e-06 +illusion_0.75L,sr,277,55.4,omega,front,-3.131035237196017e-05 +illusion_0.75L,sr,277,55.4,omega,upper,9.403642880806071e-07 +illusion_0.75L,sr,277,55.4,omega,lower,9.403642880806071e-07 +illusion_0.75L,sr,278,55.6,omega,front,-3.748904224695704e-05 +illusion_0.75L,sr,278,55.6,omega,upper,5.835274342236331e-06 +illusion_0.75L,sr,278,55.6,omega,lower,5.835274342236331e-06 +illusion_0.75L,sr,279,55.8,omega,front,-4.345727902326915e-05 +illusion_0.75L,sr,279,55.8,omega,upper,1.1047891156867676e-05 +illusion_0.75L,sr,279,55.8,omega,lower,1.1047891156867676e-05 +illusion_0.75L,sr,280,56.0,omega,front,-3.828707401880418e-05 +illusion_0.75L,sr,280,56.0,omega,upper,8.488289632206033e-06 +illusion_0.75L,sr,280,56.0,omega,lower,8.488289632206033e-06 +illusion_0.75L,sr,281,56.2,omega,front,-2.8103152759379956e-05 +illusion_0.75L,sr,281,56.2,omega,upper,2.7129723549515136e-06 +illusion_0.75L,sr,281,56.2,omega,lower,2.7129723549515136e-06 +illusion_0.75L,sr,282,56.4,omega,front,-2.99446685688173e-05 +illusion_0.75L,sr,282,56.4,omega,upper,6.278716357212451e-06 +illusion_0.75L,sr,282,56.4,omega,lower,6.278716357212451e-06 +illusion_0.75L,sr,283,56.6,omega,front,-3.734068501893749e-05 +illusion_0.75L,sr,283,56.6,omega,upper,1.4268846847149859e-05 +illusion_0.75L,sr,283,56.6,omega,lower,1.4268846847149859e-05 +illusion_0.75L,sr,284,56.8,omega,front,-3.363061761383665e-05 +illusion_0.75L,sr,284,56.8,omega,upper,1.4308552879546862e-05 +illusion_0.75L,sr,284,56.8,omega,lower,1.4308552879546862e-05 +illusion_0.75L,sr,285,57.0,omega,front,-2.1679885596333893e-05 +illusion_0.75L,sr,285,57.0,omega,upper,8.508508550146791e-06 +illusion_0.75L,sr,285,57.0,omega,lower,8.508508550146791e-06 +illusion_0.75L,sr,286,57.2,omega,front,-1.702272136983576e-05 +illusion_0.75L,sr,286,57.2,omega,upper,8.292855333375937e-06 +illusion_0.75L,sr,286,57.2,omega,lower,8.292855333375937e-06 +illusion_0.75L,sr,287,57.4,omega,front,-2.1747497578697392e-05 +illusion_0.75L,sr,287,57.4,omega,upper,1.5063675271869678e-05 +illusion_0.75L,sr,287,57.4,omega,lower,1.5063675271869678e-05 +illusion_0.75L,sr,288,57.6,omega,front,-2.1339725622969317e-05 +illusion_0.75L,sr,288,57.6,omega,upper,1.799317838639585e-05 +illusion_0.75L,sr,288,57.6,omega,lower,1.799317838639585e-05 +illusion_0.75L,sr,289,57.8,omega,front,-6.68464623567306e-06 +illusion_0.75L,sr,289,57.8,omega,upper,1.0331719272646958e-05 +illusion_0.75L,sr,289,57.8,omega,lower,1.0331719272646958e-05 +illusion_0.75L,sr,290,58.0,omega,front,6.7046983782894856e-06 +illusion_0.75L,sr,290,58.0,omega,upper,3.5302306410722568e-06 +illusion_0.75L,sr,290,58.0,omega,lower,3.5302306410722568e-06 +illusion_0.75L,sr,291,58.2,omega,front,6.0985866912323035e-06 +illusion_0.75L,sr,291,58.2,omega,upper,6.890817566518603e-06 +illusion_0.75L,sr,291,58.2,omega,lower,6.890817566518603e-06 +illusion_0.75L,sr,292,58.4,omega,front,2.0982137847637418e-06 +illusion_0.75L,sr,292,58.4,omega,upper,1.246038433703387e-05 +illusion_0.75L,sr,292,58.4,omega,lower,1.246038433703387e-05 +illusion_0.75L,sr,293,58.6,omega,front,1.1833068390105956e-05 +illusion_0.75L,sr,293,58.6,omega,upper,7.55441634004303e-06 +illusion_0.75L,sr,293,58.6,omega,lower,7.55441634004303e-06 +illusion_0.75L,sr,294,58.8,omega,front,2.8746015239862478e-05 +illusion_0.75L,sr,294,58.8,omega,upper,-2.967903771802401e-06 +illusion_0.75L,sr,294,58.8,omega,lower,-2.967903771802401e-06 +illusion_0.75L,sr,295,59.0,omega,front,3.26792858268464e-05 +illusion_0.75L,sr,295,59.0,omega,upper,-4.253193420270078e-06 +illusion_0.75L,sr,295,59.0,omega,lower,-4.253193420270078e-06 +illusion_0.75L,sr,296,59.2,omega,front,2.3954146788706944e-05 +illusion_0.75L,sr,296,59.2,omega,upper,3.358882448463059e-06 +illusion_0.75L,sr,296,59.2,omega,lower,3.358882448463059e-06 +illusion_0.75L,sr,297,59.4,omega,front,2.4380714940861816e-05 +illusion_0.75L,sr,297,59.4,omega,upper,3.691867595770268e-06 +illusion_0.75L,sr,297,59.4,omega,lower,3.691867595770268e-06 +illusion_0.75L,sr,298,59.6,omega,front,3.825437787090873e-05 +illusion_0.75L,sr,298,59.6,omega,upper,-6.379378815105468e-06 +illusion_0.75L,sr,298,59.6,omega,lower,-6.379378815105468e-06 +illusion_0.75L,sr,299,59.8,omega,front,4.374350589380398e-05 +illusion_0.75L,sr,299,59.8,omega,upper,-1.0698592971679945e-05 +illusion_0.75L,sr,299,59.8,omega,lower,-1.0698592971679945e-05 +illusion_0.75L,sr,300,60.0,omega,front,3.241152220581481e-05 +illusion_0.75L,sr,300,60.0,omega,upper,-3.0796548478713785e-06 +illusion_0.75L,sr,300,60.0,omega,lower,-3.0796548478713785e-06 +illusion_0.75L,sr,301,60.2,omega,front,2.4713730473158726e-05 +illusion_0.75L,sr,301,60.2,omega,upper,1.3178532914626464e-06 +illusion_0.75L,sr,301,60.2,omega,lower,1.3178532914626464e-06 +illusion_0.75L,sr,302,60.4,omega,front,3.2993026719408615e-05 +illusion_0.75L,sr,302,60.4,omega,upper,-6.541618609831081e-06 +illusion_0.75L,sr,302,60.4,omega,lower,-6.541618609831081e-06 +illusion_0.75L,sr,303,60.6,omega,front,3.988861056578138e-05 +illusion_0.75L,sr,303,60.6,omega,upper,-1.3724777123240509e-05 +illusion_0.75L,sr,303,60.6,omega,lower,-1.3724777123240509e-05 +illusion_0.75L,sr,304,60.8,omega,front,3.264975480871103e-05 +illusion_0.75L,sr,304,60.8,omega,upper,-1.0795628386002821e-05 +illusion_0.75L,sr,304,60.8,omega,lower,-1.0795628386002821e-05 +illusion_0.75L,sr,305,61.0,omega,front,2.0676418063830526e-05 +illusion_0.75L,sr,305,61.0,omega,upper,-4.694584400759105e-06 +illusion_0.75L,sr,305,61.0,omega,lower,-4.694584400759105e-06 +illusion_0.75L,sr,306,61.2,omega,front,2.0295291767697572e-05 +illusion_0.75L,sr,306,61.2,omega,upper,-7.4032663391341775e-06 +illusion_0.75L,sr,306,61.2,omega,lower,-7.4032663391341775e-06 +illusion_0.75L,sr,307,61.4,omega,front,2.8049861516971398e-05 +illusion_0.75L,sr,307,61.4,omega,upper,-1.6245835730053244e-05 +illusion_0.75L,sr,307,61.4,omega,lower,-1.6245835730053244e-05 +illusion_0.75L,sr,308,61.6,omega,front,2.5144526703359338e-05 +illusion_0.75L,sr,308,61.6,omega,upper,-1.7250626773689728e-05 +illusion_0.75L,sr,308,61.6,omega,lower,-1.7250626773689728e-05 +illusion_0.75L,sr,309,61.8,omega,front,9.814339468221253e-06 +illusion_0.75L,sr,309,61.8,omega,upper,-9.089246382933689e-06 +illusion_0.75L,sr,309,61.8,omega,lower,-9.089246382933689e-06 +illusion_0.75L,sr,310,62.0,omega,front,-3.61229468027538e-07 +illusion_0.75L,sr,310,62.0,omega,upper,-4.719420103940532e-06 +illusion_0.75L,sr,310,62.0,omega,lower,-4.719420103940532e-06 +illusion_0.75L,sr,311,62.2,omega,front,2.5213436216173744e-06 +illusion_0.75L,sr,311,62.2,omega,upper,-9.881952157243593e-06 +illusion_0.75L,sr,311,62.2,omega,lower,-9.881952157243593e-06 +illusion_0.75L,sr,312,62.4,omega,front,4.7084449070171e-06 +illusion_0.75L,sr,312,62.4,omega,upper,-1.4312342316201936e-05 +illusion_0.75L,sr,312,62.4,omega,lower,-1.4312342316201936e-05 +illusion_0.75L,sr,313,62.6,omega,front,-7.5521703276697565e-06 +illusion_0.75L,sr,313,62.6,omega,upper,-7.797983559469369e-06 +illusion_0.75L,sr,313,62.6,omega,lower,-7.797983559469369e-06 +illusion_0.75L,sr,314,62.8,omega,front,-2.172067195792951e-05 +illusion_0.75L,sr,314,62.8,omega,upper,3.814569455777572e-07 +illusion_0.75L,sr,314,62.8,omega,lower,3.814569455777572e-07 +illusion_0.75L,sr,315,63.0,omega,front,-2.19814858642842e-05 +illusion_0.75L,sr,315,63.0,omega,upper,-1.4059485055783334e-06 +illusion_0.75L,sr,315,63.0,omega,lower,-1.4059485055783334e-06 +illusion_0.75L,sr,316,63.2,omega,front,-1.710377635946052e-05 +illusion_0.75L,sr,316,63.2,omega,upper,-6.577086457660343e-06 +illusion_0.75L,sr,316,63.2,omega,lower,-6.577086457660343e-06 +illusion_0.75L,sr,317,63.4,omega,front,-2.1877578397542437e-05 +illusion_0.75L,sr,317,63.4,omega,upper,-4.164724320865204e-06 +illusion_0.75L,sr,317,63.4,omega,lower,-4.164724320865204e-06 +illusion_0.75L,sr,318,63.6,omega,front,-3.276149005651187e-05 +illusion_0.75L,sr,318,63.6,omega,upper,3.2002472176472996e-06 +illusion_0.75L,sr,318,63.6,omega,lower,3.2002472176472996e-06 +illusion_0.75L,sr,319,63.8,omega,front,-3.511180935849352e-05 +illusion_0.75L,sr,319,63.8,omega,upper,4.707628730498507e-06 +illusion_0.75L,sr,319,63.8,omega,lower,4.707628730498507e-06 +illusion_0.75L,sr,320,64.0,omega,front,-2.9310623098338997e-05 +illusion_0.75L,sr,320,64.0,omega,upper,6.77707596508613e-07 +illusion_0.75L,sr,320,64.0,omega,lower,6.77707596508613e-07 +illusion_0.75L,sr,321,64.2,omega,front,-2.485536933521701e-05 +illusion_0.75L,sr,321,64.2,omega,upper,-1.8509451159480842e-06 +illusion_0.75L,sr,321,64.2,omega,lower,-1.8509451159480842e-06 +illusion_0.75L,sr,322,64.4,omega,front,-2.89484506627833e-05 +illusion_0.75L,sr,322,64.4,omega,upper,2.416439054091814e-06 +illusion_0.75L,sr,322,64.4,omega,lower,2.416439054091814e-06 +illusion_0.75L,sr,323,64.6,omega,front,-3.5501604294193994e-05 +illusion_0.75L,sr,323,64.6,omega,upper,8.921385504752528e-06 +illusion_0.75L,sr,323,64.6,omega,lower,8.921385504752528e-06 +illusion_0.75L,sr,324,64.8,omega,front,-3.129772980084749e-05 +illusion_0.75L,sr,324,64.8,omega,upper,7.836595362919405e-06 +illusion_0.75L,sr,324,64.8,omega,lower,7.836595362919405e-06 +illusion_0.75L,sr,325,65.0,omega,front,-2.3346115491072634e-05 +illusion_0.75L,sr,325,65.0,omega,upper,4.339680442651747e-06 +illusion_0.75L,sr,325,65.0,omega,lower,4.339680442651747e-06 +illusion_0.75L,sr,326,65.2,omega,front,-2.210517820393814e-05 +illusion_0.75L,sr,326,65.2,omega,upper,6.104406247159806e-06 +illusion_0.75L,sr,326,65.2,omega,lower,6.104406247159806e-06 +illusion_0.75L,sr,327,65.4,omega,front,-2.671193974090099e-05 +illusion_0.75L,sr,327,65.4,omega,upper,1.2402642353081112e-05 +illusion_0.75L,sr,327,65.4,omega,lower,1.2402642353081112e-05 +illusion_0.75L,sr,328,65.6,omega,front,-2.629461065683178e-05 +illusion_0.75L,sr,328,65.6,omega,upper,1.5099065191508352e-05 +illusion_0.75L,sr,328,65.6,omega,lower,1.5099065191508352e-05 +illusion_0.75L,sr,329,65.8,omega,front,-1.5910989570245854e-05 +illusion_0.75L,sr,329,65.8,omega,upper,1.0501083194847392e-05 +illusion_0.75L,sr,329,65.8,omega,lower,1.0501083194847392e-05 +illusion_0.75L,sr,330,66.0,omega,front,-6.140102110765342e-06 +illusion_0.75L,sr,330,66.0,omega,upper,6.4097790966565535e-06 +illusion_0.75L,sr,330,66.0,omega,lower,6.4097790966565535e-06 +illusion_0.75L,sr,331,66.2,omega,front,-6.119225900477511e-06 +illusion_0.75L,sr,331,66.2,omega,upper,9.496406731469434e-06 +illusion_0.75L,sr,331,66.2,omega,lower,9.496406731469434e-06 +illusion_0.75L,sr,332,66.4,omega,front,-6.874145772747531e-06 +illusion_0.75L,sr,332,66.4,omega,upper,1.3004388217469754e-05 +illusion_0.75L,sr,332,66.4,omega,lower,1.3004388217469754e-05 +illusion_0.75L,sr,333,66.6,omega,front,3.0646843327510746e-07 +illusion_0.75L,sr,333,66.6,omega,upper,1.0447931268159454e-05 +illusion_0.75L,sr,333,66.6,omega,lower,1.0447931268159454e-05 +illusion_0.75L,sr,334,66.8,omega,front,1.210646855284013e-05 +illusion_0.75L,sr,334,66.8,omega,upper,4.269735716464669e-06 +illusion_0.75L,sr,334,66.8,omega,lower,4.269735716464669e-06 +illusion_0.75L,sr,335,67.0,omega,front,1.7895118537169762e-05 +illusion_0.75L,sr,335,67.0,omega,upper,2.2847409881144794e-06 +illusion_0.75L,sr,335,67.0,omega,lower,2.2847409881144794e-06 +illusion_0.75L,sr,336,67.2,omega,front,1.53857165724312e-05 +illusion_0.75L,sr,336,67.2,omega,upper,6.0910025607748e-06 +illusion_0.75L,sr,336,67.2,omega,lower,6.0910025607748e-06 +illusion_0.75L,sr,337,67.4,omega,front,1.5393083721500293e-05 +illusion_0.75L,sr,337,67.4,omega,upper,7.628412290381567e-06 +illusion_0.75L,sr,337,67.4,omega,lower,7.628412290381567e-06 +illusion_0.75L,sr,338,67.6,omega,front,2.506138369531938e-05 +illusion_0.75L,sr,338,67.6,omega,upper,1.6150984533763389e-06 +illusion_0.75L,sr,338,67.6,omega,lower,1.6150984533763389e-06 +illusion_0.75L,sr,339,67.8,omega,front,3.253453930084506e-05 +illusion_0.75L,sr,339,67.8,omega,upper,-3.183087574848906e-06 +illusion_0.75L,sr,339,67.8,omega,lower,-3.183087574848906e-06 +illusion_0.75L,sr,340,68.0,omega,front,2.8089763299158564e-05 +illusion_0.75L,sr,340,68.0,omega,upper,3.7187419869990495e-07 +illusion_0.75L,sr,340,68.0,omega,lower,3.7187419869990495e-07 +illusion_0.75L,sr,341,68.2,omega,front,2.2612505410860434e-05 +illusion_0.75L,sr,341,68.2,omega,upper,4.176002719934353e-06 +illusion_0.75L,sr,341,68.2,omega,lower,4.176002719934353e-06 +illusion_0.75L,sr,342,68.4,omega,front,2.551266337969156e-05 +illusion_0.75L,sr,342,68.4,omega,upper,1.2952714448853653e-06 +illusion_0.75L,sr,342,68.4,omega,lower,1.2952714448853653e-06 +illusion_0.75L,sr,343,68.6,omega,front,3.421267885447686e-05 +illusion_0.75L,sr,343,68.6,omega,upper,-6.303660142599685e-06 +illusion_0.75L,sr,343,68.6,omega,lower,-6.303660142599685e-06 +illusion_0.75L,sr,344,68.8,omega,front,3.3139844306361474e-05 +illusion_0.75L,sr,344,68.8,omega,upper,-7.071409927944805e-06 +illusion_0.75L,sr,344,68.8,omega,lower,-7.071409927944805e-06 +illusion_0.75L,sr,345,69.0,omega,front,2.18583415926088e-05 +illusion_0.75L,sr,345,69.0,omega,upper,-7.066364667223172e-07 +illusion_0.75L,sr,345,69.0,omega,lower,-7.066364667223172e-07 +illusion_0.75L,sr,346,69.2,omega,front,2.0503438254720583e-05 +illusion_0.75L,sr,346,69.2,omega,upper,-2.06298989802331e-06 +illusion_0.75L,sr,346,69.2,omega,lower,-2.06298989802331e-06 +illusion_0.75L,sr,347,69.4,omega,front,2.8658041042373268e-05 +illusion_0.75L,sr,347,69.4,omega,upper,-1.0699781027000647e-05 +illusion_0.75L,sr,347,69.4,omega,lower,-1.0699781027000647e-05 +illusion_0.75L,sr,348,69.6,omega,front,3.068794521767828e-05 +illusion_0.75L,sr,348,69.6,omega,upper,-1.4980996671168767e-05 +illusion_0.75L,sr,348,69.6,omega,lower,-1.4980996671168767e-05 +illusion_0.75L,sr,349,69.8,omega,front,1.955822149591384e-05 +illusion_0.75L,sr,349,69.8,omega,upper,-9.685969289843525e-06 +illusion_0.75L,sr,349,69.8,omega,lower,-9.685969289843525e-06 +illusion_0.75L,sr,350,70.0,omega,front,9.862331965809572e-06 +illusion_0.75L,sr,350,70.0,omega,upper,-5.577945174455538e-06 +illusion_0.75L,sr,350,70.0,omega,lower,-5.577945174455538e-06 +illusion_0.75L,sr,351,70.2,omega,front,1.0928383255489715e-05 +illusion_0.75L,sr,351,70.2,omega,upper,-9.461360396025973e-06 +illusion_0.75L,sr,351,70.2,omega,lower,-9.461360396025973e-06 +illusion_0.75L,sr,352,70.4,omega,front,1.3692844626096105e-05 +illusion_0.75L,sr,352,70.4,omega,upper,-1.4523863389203129e-05 +illusion_0.75L,sr,352,70.4,omega,lower,-1.4523863389203129e-05 +illusion_0.75L,sr,353,70.6,omega,front,5.762806143616815e-06 +illusion_0.75L,sr,353,70.6,omega,upper,-1.1563300770276175e-05 +illusion_0.75L,sr,353,70.6,omega,lower,-1.1563300770276175e-05 +illusion_0.75L,sr,354,70.8,omega,front,-7.662763932867815e-06 +illusion_0.75L,sr,354,70.8,omega,upper,-4.399737432314293e-06 +illusion_0.75L,sr,354,70.8,omega,lower,-4.399737432314293e-06 +illusion_0.75L,sr,355,71.0,omega,front,-1.1080605809726806e-05 +illusion_0.75L,sr,355,71.0,omega,upper,-4.441317707230552e-06 +illusion_0.75L,sr,355,71.0,omega,lower,-4.441317707230552e-06 +illusion_0.75L,sr,356,71.2,omega,front,-6.785362963861175e-06 +illusion_0.75L,sr,356,71.2,omega,upper,-9.887062176009154e-06 +illusion_0.75L,sr,356,71.2,omega,lower,-9.887062176009154e-06 +illusion_0.75L,sr,357,71.4,omega,front,-9.992242535889901e-06 +illusion_0.75L,sr,357,71.4,omega,upper,-9.44050173520318e-06 +illusion_0.75L,sr,357,71.4,omega,lower,-9.44050173520318e-06 +illusion_0.75L,sr,358,71.6,omega,front,-2.2164220404054525e-05 +illusion_0.75L,sr,358,71.6,omega,upper,-2.0126536477750935e-06 +illusion_0.75L,sr,358,71.6,omega,lower,-2.0126536477750935e-06 +illusion_0.75L,sr,359,71.8,omega,front,-2.8457471409042355e-05 +illusion_0.75L,sr,359,71.8,omega,upper,1.4305483542460806e-06 +illusion_0.75L,sr,359,71.8,omega,lower,1.4305483542460806e-06 +illusion_0.75L,sr,360,72.0,omega,front,-2.1980797416574842e-05 +illusion_0.75L,sr,360,72.0,omega,upper,-4.127847491149639e-06 +illusion_0.75L,sr,360,72.0,omega,lower,-4.127847491149639e-06 +illusion_0.75L,sr,361,72.2,omega,front,-1.8310733724381453e-05 +illusion_0.75L,sr,361,72.2,omega,upper,-7.114274515444483e-06 +illusion_0.75L,sr,361,72.2,omega,lower,-7.114274515444483e-06 +illusion_0.75L,sr,362,72.4,omega,front,-2.6117470954917094e-05 +illusion_0.75L,sr,362,72.4,omega,upper,-1.1469846955831225e-06 +illusion_0.75L,sr,362,72.4,omega,lower,-1.1469846955831225e-06 +illusion_0.75L,sr,363,72.6,omega,front,-3.303726339053126e-05 +illusion_0.75L,sr,363,72.6,omega,upper,4.595953606729049e-06 +illusion_0.75L,sr,363,72.6,omega,lower,4.595953606729049e-06 +illusion_0.75L,sr,364,72.8,omega,front,-2.7796529821446647e-05 +illusion_0.75L,sr,364,72.8,omega,upper,1.7894882266411909e-06 +illusion_0.75L,sr,364,72.8,omega,lower,1.7894882266411909e-06 +illusion_0.75L,sr,365,73.0,omega,front,-2.0629148772698982e-05 +illusion_0.75L,sr,365,73.0,omega,upper,-1.981583398257096e-06 +illusion_0.75L,sr,365,73.0,omega,lower,-1.981583398257096e-06 +illusion_0.75L,sr,366,73.2,omega,front,-2.283406926650522e-05 +illusion_0.75L,sr,366,73.2,omega,upper,1.5817068106627198e-06 +illusion_0.75L,sr,366,73.2,omega,lower,1.5817068106627198e-06 +illusion_0.75L,sr,367,73.4,omega,front,-2.9583205639800575e-05 +illusion_0.75L,sr,367,73.4,omega,upper,8.813424579896188e-06 +illusion_0.75L,sr,367,73.4,omega,lower,8.813424579896188e-06 +illusion_0.75L,sr,368,73.6,omega,front,-2.8115808815239106e-05 +illusion_0.75L,sr,368,73.6,omega,upper,1.023154400707835e-05 +illusion_0.75L,sr,368,73.6,omega,lower,1.023154400707835e-05 +illusion_0.75L,sr,369,73.8,omega,front,-1.9762564775875747e-05 +illusion_0.75L,sr,369,73.8,omega,upper,6.7922645926132845e-06 +illusion_0.75L,sr,369,73.8,omega,lower,6.7922645926132845e-06 +illusion_0.75L,sr,370,74.0,omega,front,-1.4565011148567272e-05 +illusion_0.75L,sr,370,74.0,omega,upper,5.8586327755319385e-06 +illusion_0.75L,sr,370,74.0,omega,lower,5.8586327755319385e-06 +illusion_0.75L,sr,371,74.2,omega,front,-1.714823837877809e-05 +illusion_0.75L,sr,371,74.2,omega,upper,1.0770410440554569e-05 +illusion_0.75L,sr,371,74.2,omega,lower,1.0770410440554569e-05 +illusion_0.75L,sr,372,74.4,omega,front,-1.6894379221437697e-05 +illusion_0.75L,sr,372,74.4,omega,upper,1.3599072241517725e-05 +illusion_0.75L,sr,372,74.4,omega,lower,1.3599072241517725e-05 +illusion_0.75L,sr,373,74.6,omega,front,-7.71208960944815e-06 +illusion_0.75L,sr,373,74.6,omega,upper,9.790109314912875e-06 +illusion_0.75L,sr,373,74.6,omega,lower,9.790109314912875e-06 +illusion_0.75L,sr,374,74.8,omega,front,1.4955696684528126e-06 +illusion_0.75L,sr,374,74.8,omega,upper,5.888774501084816e-06 +illusion_0.75L,sr,374,74.8,omega,lower,5.888774501084816e-06 +illusion_0.75L,sr,375,75.0,omega,front,2.5587508759955176e-06 +illusion_0.75L,sr,375,75.0,omega,upper,7.866159634199594e-06 +illusion_0.75L,sr,375,75.0,omega,lower,7.866159634199594e-06 +illusion_0.75L,sr,376,75.2,omega,front,1.6972333544472765e-06 +illusion_0.75L,sr,376,75.2,omega,upper,1.1041232817833522e-05 +illusion_0.75L,sr,376,75.2,omega,lower,1.1041232817833522e-05 +illusion_0.75L,sr,377,75.4,omega,front,7.790771338861864e-06 +illusion_0.75L,sr,377,75.4,omega,upper,8.797860876132816e-06 +illusion_0.75L,sr,377,75.4,omega,lower,8.797860876132816e-06 +illusion_0.75L,sr,378,75.6,omega,front,1.7637352386001595e-05 +illusion_0.75L,sr,378,75.6,omega,upper,3.480976067110897e-06 +illusion_0.75L,sr,378,75.6,omega,lower,3.480976067110897e-06 +illusion_0.75L,sr,379,75.8,omega,front,2.1165123240885e-05 +illusion_0.75L,sr,379,75.8,omega,upper,2.5057055716249528e-06 +illusion_0.75L,sr,379,75.8,omega,lower,2.5057055716249528e-06 +illusion_0.75L,sr,380,76.0,omega,front,1.8624684988844675e-05 +illusion_0.75L,sr,380,76.0,omega,upper,5.619782372601051e-06 +illusion_0.75L,sr,380,76.0,omega,lower,5.619782372601051e-06 +illusion_0.75L,sr,381,76.2,omega,front,1.8731362383033744e-05 +illusion_0.75L,sr,381,76.2,omega,upper,6.333662511438902e-06 +illusion_0.75L,sr,381,76.2,omega,lower,6.333662511438902e-06 +illusion_0.75L,sr,382,76.4,omega,front,2.40704280204547e-05 +illusion_0.75L,sr,382,76.4,omega,upper,2.7279007636913518e-06 +illusion_0.75L,sr,382,76.4,omega,lower,2.7279007636913518e-06 +illusion_0.75L,sr,383,76.6,omega,front,2.8387874063423163e-05 +illusion_0.75L,sr,383,76.6,omega,upper,-5.595058604042358e-07 +illusion_0.75L,sr,383,76.6,omega,lower,-5.595058604042358e-07 +illusion_0.75L,sr,384,76.8,omega,front,2.612132463165766e-05 +illusion_0.75L,sr,384,76.8,omega,upper,5.703713949633052e-07 +illusion_0.75L,sr,384,76.8,omega,lower,5.703713949633052e-07 +illusion_0.75L,sr,385,77.0,omega,front,2.2339382630466866e-05 +illusion_0.75L,sr,385,77.0,omega,upper,2.35216593036755e-06 +illusion_0.75L,sr,385,77.0,omega,lower,2.35216593036755e-06 +illusion_0.75L,sr,386,77.2,omega,front,2.2781614396803833e-05 +illusion_0.75L,sr,386,77.2,omega,upper,5.702215682952538e-07 +illusion_0.75L,sr,386,77.2,omega,lower,5.702215682952538e-07 +illusion_0.75L,sr,387,77.4,omega,front,2.72114062398527e-05 +illusion_0.75L,sr,387,77.4,omega,upper,-4.54217911438428e-06 +illusion_0.75L,sr,387,77.4,omega,lower,-4.54217911438428e-06 +illusion_0.75L,sr,388,77.6,omega,front,2.8087198895198512e-05 +illusion_0.75L,sr,388,77.6,omega,upper,-7.34360746396618e-06 +illusion_0.75L,sr,388,77.6,omega,lower,-7.34360746396618e-06 +illusion_0.75L,sr,389,77.8,omega,front,2.2970512320890716e-05 +illusion_0.75L,sr,389,77.8,omega,upper,-5.9993061148012375e-06 +illusion_0.75L,sr,389,77.8,omega,lower,-5.9993061148012375e-06 +illusion_0.75L,sr,390,78.0,omega,front,1.7788353799855823e-05 +illusion_0.75L,sr,390,78.0,omega,upper,-4.861057152920103e-06 +illusion_0.75L,sr,390,78.0,omega,lower,-4.861057152920103e-06 +illusion_0.75L,sr,391,78.2,omega,front,1.8706005816658285e-05 +illusion_0.75L,sr,391,78.2,omega,upper,-8.40237899136848e-06 +illusion_0.75L,sr,391,78.2,omega,lower,-8.40237899136848e-06 +illusion_0.75L,sr,392,78.4,omega,front,2.0861655506626066e-05 +illusion_0.75L,sr,392,78.4,omega,upper,-1.2932373515851174e-05 +illusion_0.75L,sr,392,78.4,omega,lower,-1.2932373515851174e-05 +illusion_0.75L,sr,393,78.6,omega,front,1.4154193321161603e-05 +illusion_0.75L,sr,393,78.6,omega,upper,-1.0939869898271475e-05 +illusion_0.75L,sr,393,78.6,omega,lower,-1.0939869898271475e-05 +illusion_0.75L,sr,394,78.8,omega,front,2.7448523814015048e-06 +illusion_0.75L,sr,394,78.8,omega,upper,-5.481262563069231e-06 +illusion_0.75L,sr,394,78.8,omega,lower,-5.481262563069231e-06 +illusion_0.75L,sr,395,79.0,omega,front,1.39930606534118e-06 +illusion_0.75L,sr,395,79.0,omega,upper,-7.40331132418377e-06 +illusion_0.75L,sr,395,79.0,omega,lower,-7.40331132418377e-06 +illusion_0.75L,sr,396,79.2,omega,front,3.7503573373428788e-06 +illusion_0.75L,sr,396,79.2,omega,upper,-1.1889294601712934e-05 +illusion_0.75L,sr,396,79.2,omega,lower,-1.1889294601712934e-05 +illusion_0.75L,sr,397,79.4,omega,front,-5.364397428418016e-07 +illusion_0.75L,sr,397,79.4,omega,upper,-1.1247837433839871e-05 +illusion_0.75L,sr,397,79.4,omega,lower,-1.1247837433839871e-05 +illusion_0.75L,sr,398,79.6,omega,front,-1.1164166533670084e-05 +illusion_0.75L,sr,398,79.6,omega,upper,-5.6831506642184005e-06 +illusion_0.75L,sr,398,79.6,omega,lower,-5.6831506642184005e-06 +illusion_0.75L,sr,399,79.8,omega,front,-1.7696429172786578e-05 +illusion_0.75L,sr,399,79.8,omega,upper,-2.87620827040317e-06 +illusion_0.75L,sr,399,79.8,omega,lower,-2.87620827040317e-06 +illusion_0.75L,sr,0,0.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,sr,0,0.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,sr,1,0.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,sr,1,0.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,sr,2,0.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,sr,2,0.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,sr,3,0.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,sr,3,0.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,sr,4,0.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,sr,4,0.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,sr,5,1.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,sr,5,1.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,sr,6,1.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,sr,6,1.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,sr,7,1.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,sr,7,1.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,sr,8,1.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,sr,8,1.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,sr,9,1.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,sr,9,1.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,sr,10,2.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,sr,10,2.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,sr,11,2.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,sr,11,2.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,sr,12,2.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,sr,12,2.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,sr,13,2.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,sr,13,2.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,sr,14,2.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,sr,14,2.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,sr,15,3.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,sr,15,3.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,sr,16,3.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,sr,16,3.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,sr,17,3.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,sr,17,3.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,sr,18,3.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,sr,18,3.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,sr,19,3.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,sr,19,3.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,sr,20,4.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,sr,20,4.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,sr,21,4.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,sr,21,4.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,sr,22,4.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,sr,22,4.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,sr,23,4.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,sr,23,4.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,sr,24,4.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,sr,24,4.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,sr,25,5.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,sr,25,5.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,sr,26,5.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,sr,26,5.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,sr,27,5.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,sr,27,5.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,sr,28,5.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,sr,28,5.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,sr,29,5.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,sr,29,5.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,sr,30,6.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,sr,30,6.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,sr,31,6.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,sr,31,6.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,sr,32,6.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,sr,32,6.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,sr,33,6.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,sr,33,6.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,sr,34,6.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,sr,34,6.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,sr,35,7.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,sr,35,7.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,sr,36,7.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,sr,36,7.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,sr,37,7.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,sr,37,7.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,sr,38,7.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,sr,38,7.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,sr,39,7.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,sr,39,7.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,sr,40,8.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,sr,40,8.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,sr,41,8.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,sr,41,8.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,sr,42,8.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,sr,42,8.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,sr,43,8.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,sr,43,8.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,sr,44,8.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,sr,44,8.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,sr,45,9.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,sr,45,9.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,sr,46,9.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,sr,46,9.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,sr,47,9.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,sr,47,9.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,sr,48,9.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,sr,48,9.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,sr,49,9.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,sr,49,9.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,sr,50,10.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,sr,50,10.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,sr,51,10.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,sr,51,10.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,sr,52,10.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,sr,52,10.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,sr,53,10.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,sr,53,10.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,sr,54,10.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,sr,54,10.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,sr,55,11.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,sr,55,11.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,sr,56,11.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,sr,56,11.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,sr,57,11.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,sr,57,11.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,sr,58,11.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,sr,58,11.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,sr,59,11.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,sr,59,11.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,sr,60,12.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,sr,60,12.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,sr,61,12.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,sr,61,12.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,sr,62,12.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,sr,62,12.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,sr,63,12.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,sr,63,12.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,sr,64,12.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,sr,64,12.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,sr,65,13.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,sr,65,13.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,sr,66,13.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,sr,66,13.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,sr,67,13.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,sr,67,13.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,sr,68,13.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,sr,68,13.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,sr,69,13.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,sr,69,13.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,sr,70,14.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,sr,70,14.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,sr,71,14.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,sr,71,14.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,sr,72,14.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,sr,72,14.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,sr,73,14.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,sr,73,14.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,sr,74,14.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,sr,74,14.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,sr,75,15.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,sr,75,15.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,sr,76,15.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,sr,76,15.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,sr,77,15.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,sr,77,15.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,sr,78,15.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,sr,78,15.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,sr,79,15.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,sr,79,15.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,sr,80,16.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,sr,80,16.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,sr,81,16.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,sr,81,16.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,sr,82,16.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,sr,82,16.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,sr,83,16.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,sr,83,16.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,sr,84,16.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,sr,84,16.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,sr,85,17.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,sr,85,17.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,sr,86,17.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,sr,86,17.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,sr,87,17.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,sr,87,17.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,sr,88,17.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,sr,88,17.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,sr,89,17.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,sr,89,17.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,sr,90,18.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,sr,90,18.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,sr,91,18.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,sr,91,18.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,sr,92,18.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,sr,92,18.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,sr,93,18.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,sr,93,18.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,sr,94,18.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,sr,94,18.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,sr,95,19.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,sr,95,19.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,sr,96,19.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,sr,96,19.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,sr,97,19.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,sr,97,19.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,sr,98,19.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,sr,98,19.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,sr,99,19.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,sr,99,19.8,target_force,target_cl,0.0009286822751164436 +illusion_0.75L,sr,100,20.0,target_force,target_cd,0.004329230170696974 +illusion_0.75L,sr,100,20.0,target_force,target_cl,0.0007613134803250432 +illusion_0.75L,sr,101,20.2,target_force,target_cd,0.0043093012645840645 +illusion_0.75L,sr,101,20.2,target_force,target_cl,0.0005613267421722412 +illusion_0.75L,sr,102,20.4,target_force,target_cd,0.004291526973247528 +illusion_0.75L,sr,102,20.4,target_force,target_cl,0.0003369711630512029 +illusion_0.75L,sr,103,20.6,target_force,target_cd,0.004277484491467476 +illusion_0.75L,sr,103,20.6,target_force,target_cl,9.754252096172422e-05 +illusion_0.75L,sr,104,20.8,target_force,target_cd,0.0042631374672055244 +illusion_0.75L,sr,104,20.8,target_force,target_cl,-0.00014684362395200878 +illusion_0.75L,sr,105,21.0,target_force,target_cd,0.004247708711773157 +illusion_0.75L,sr,105,21.0,target_force,target_cl,-0.0003855770919471979 +illusion_0.75L,sr,106,21.2,target_force,target_cd,0.004238303285092115 +illusion_0.75L,sr,106,21.2,target_force,target_cl,-0.0006080058519728482 +illusion_0.75L,sr,107,21.4,target_force,target_cd,0.004244087729603052 +illusion_0.75L,sr,107,21.4,target_force,target_cl,-0.0008040002430789173 +illusion_0.75L,sr,108,21.6,target_force,target_cd,0.004266131203621626 +illusion_0.75L,sr,108,21.6,target_force,target_cl,-0.0009645655518397689 +illusion_0.75L,sr,109,21.8,target_force,target_cd,0.00429448951035738 +illusion_0.75L,sr,109,21.8,target_force,target_cl,-0.0010824102209880948 +illusion_0.75L,sr,110,22.0,target_force,target_cd,0.0043162815272808075 +illusion_0.75L,sr,110,22.0,target_force,target_cl,-0.0011523779248818755 +illusion_0.75L,sr,111,22.2,target_force,target_cd,0.004326277878135443 +illusion_0.75L,sr,111,22.2,target_force,target_cl,-0.0011716809822246432 +illusion_0.75L,sr,112,22.4,target_force,target_cd,0.004328808281570673 +illusion_0.75L,sr,112,22.4,target_force,target_cl,-0.0011399217182770371 +illusion_0.75L,sr,113,22.6,target_force,target_cd,0.0043297018855810165 +illusion_0.75L,sr,113,22.6,target_force,target_cl,-0.0010589387966319919 +illusion_0.75L,sr,114,22.8,target_force,target_cd,0.0043281326070427895 +illusion_0.75L,sr,114,22.8,target_force,target_cl,-0.0009325520950369537 +illusion_0.75L,sr,115,23.0,target_force,target_cd,0.004317938350141048 +illusion_0.75L,sr,115,23.0,target_force,target_cl,-0.0007662828429602087 +illusion_0.75L,sr,116,23.2,target_force,target_cd,0.004296679049730301 +illusion_0.75L,sr,116,23.2,target_force,target_cl,-0.0005671066464856267 +illusion_0.75L,sr,117,23.4,target_force,target_cd,0.004271471872925758 +illusion_0.75L,sr,117,23.4,target_force,target_cl,-0.00034325156593695283 +illusion_0.75L,sr,118,23.6,target_force,target_cd,0.004254178609699011 +illusion_0.75L,sr,118,23.6,target_force,target_cl,-0.00010401237523183227 +illusion_0.75L,sr,119,23.8,target_force,target_cd,0.004250772297382355 +illusion_0.75L,sr,119,23.8,target_force,target_cl,0.00014047697186470032 +illusion_0.75L,sr,120,24.0,target_force,target_cd,0.004256573971360922 +illusion_0.75L,sr,120,24.0,target_force,target_cl,0.000379570439690724 +illusion_0.75L,sr,121,24.2,target_force,target_cd,0.00426256749778986 +illusion_0.75L,sr,121,24.2,target_force,target_cl,0.0006025657639838755 +illusion_0.75L,sr,122,24.4,target_force,target_cd,0.004265558440238237 +illusion_0.75L,sr,122,24.4,target_force,target_cl,0.0007992724422365427 +illusion_0.75L,sr,123,24.6,target_force,target_cd,0.004270726349204779 +illusion_0.75L,sr,123,24.6,target_force,target_cl,0.0009606286184862256 +illusion_0.75L,sr,124,24.8,target_force,target_cd,0.004283971153199673 +illusion_0.75L,sr,124,24.8,target_force,target_cl,0.001079274108633399 +illusion_0.75L,sr,125,25.0,target_force,target_cd,0.004303178749978542 +illusion_0.75L,sr,125,25.0,target_force,target_cl,0.0011499872198328376 +illusion_0.75L,sr,126,25.2,target_force,target_cd,0.004318722058087587 +illusion_0.75L,sr,126,25.2,target_force,target_cl,0.00116992206312716 +illusion_0.75L,sr,127,25.4,target_force,target_cd,0.004322815220803022 +illusion_0.75L,sr,127,25.4,target_force,target_cl,0.001138634397648275 +illusion_0.75L,sr,128,25.6,target_force,target_cd,0.004317114595323801 +illusion_0.75L,sr,128,25.6,target_force,target_cl,0.0010579300578683615 +illusion_0.75L,sr,129,25.8,target_force,target_cd,0.004309931304305792 +illusion_0.75L,sr,129,25.8,target_force,target_cl,0.000931612157728523 +illusion_0.75L,sr,130,26.0,target_force,target_cd,0.004306346643716097 +illusion_0.75L,sr,130,26.0,target_force,target_cl,0.0007652023923583329 +illusion_0.75L,sr,131,26.2,target_force,target_cd,0.00430266372859478 +illusion_0.75L,sr,131,26.2,target_force,target_cl,0.0005656927824020386 +illusion_0.75L,sr,132,26.4,target_force,target_cd,0.00429161824285984 +illusion_0.75L,sr,132,26.4,target_force,target_cl,0.0003413430822547525 +illusion_0.75L,sr,133,26.6,target_force,target_cd,0.004272329621016979 +illusion_0.75L,sr,133,26.6,target_force,target_cl,0.00010149206354981288 +illusion_0.75L,sr,134,26.8,target_force,target_cd,0.004253413062542677 +illusion_0.75L,sr,134,26.8,target_force,target_cl,-0.00014367327094078064 +illusion_0.75L,sr,135,27.0,target_force,target_cd,0.004245383199304342 +illusion_0.75L,sr,135,27.0,target_force,target_cl,-0.0003834486415144056 +illusion_0.75L,sr,136,27.2,target_force,target_cd,0.004250668920576572 +illusion_0.75L,sr,136,27.2,target_force,target_cl,-0.0006070726667530835 +illusion_0.75L,sr,137,27.4,target_force,target_cd,0.004262279253453016 +illusion_0.75L,sr,137,27.4,target_force,target_cl,-0.0008042993140406907 +illusion_0.75L,sr,138,27.6,target_force,target_cd,0.0042722816579043865 +illusion_0.75L,sr,138,27.6,target_force,target_cl,-0.0009660187060944736 +illusion_0.75L,sr,139,27.8,target_force,target_cd,0.004280176013708115 +illusion_0.75L,sr,139,27.8,target_force,target_cl,-0.0010848336387425661 +illusion_0.75L,sr,140,28.0,target_force,target_cd,0.004291605204343796 +illusion_0.75L,sr,140,28.0,target_force,target_cl,-0.0011554996017366648 +illusion_0.75L,sr,141,28.2,target_force,target_cd,0.004309208132326603 +illusion_0.75L,sr,141,28.2,target_force,target_cl,-0.0011751636629924178 +illusion_0.75L,sr,142,28.4,target_force,target_cd,0.004326635040342808 +illusion_0.75L,sr,142,28.4,target_force,target_cl,-0.001143390778452158 +illusion_0.75L,sr,143,28.6,target_force,target_cd,0.004333213437348604 +illusion_0.75L,sr,143,28.6,target_force,target_cl,-0.0010620126267895103 +illusion_0.75L,sr,144,28.8,target_force,target_cd,0.004324445500969887 +illusion_0.75L,sr,144,28.8,target_force,target_cl,-0.0009348725434392691 +illusion_0.75L,sr,145,29.0,target_force,target_cd,0.004306653048843145 +illusion_0.75L,sr,145,29.0,target_force,target_cl,-0.0007675446104258299 +illusion_0.75L,sr,146,29.2,target_force,target_cd,0.004290517885237932 +illusion_0.75L,sr,146,29.2,target_force,target_cl,-0.000567082257475704 +illusion_0.75L,sr,147,29.4,target_force,target_cd,0.004280740395188332 +illusion_0.75L,sr,147,29.4,target_force,target_cl,-0.00034181104274466634 +illusion_0.75L,sr,148,29.6,target_force,target_cd,0.004273268859833479 +illusion_0.75L,sr,148,29.6,target_force,target_cl,-0.00010113600001204759 +illusion_0.75L,sr,149,29.8,target_force,target_cd,0.004262732807546854 +illusion_0.75L,sr,149,29.8,target_force,target_cl,0.00014469395682681352 +illusion_0.75L,sr,150,30.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,sr,150,30.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,sr,151,30.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,sr,151,30.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,sr,152,30.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,sr,152,30.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,sr,153,30.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,sr,153,30.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,sr,154,30.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,sr,154,30.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,sr,155,31.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,sr,155,31.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,sr,156,31.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,sr,156,31.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,sr,157,31.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,sr,157,31.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,sr,158,31.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,sr,158,31.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,sr,159,31.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,sr,159,31.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,sr,160,32.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,sr,160,32.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,sr,161,32.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,sr,161,32.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,sr,162,32.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,sr,162,32.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,sr,163,32.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,sr,163,32.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,sr,164,32.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,sr,164,32.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,sr,165,33.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,sr,165,33.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,sr,166,33.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,sr,166,33.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,sr,167,33.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,sr,167,33.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,sr,168,33.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,sr,168,33.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,sr,169,33.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,sr,169,33.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,sr,170,34.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,sr,170,34.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,sr,171,34.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,sr,171,34.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,sr,172,34.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,sr,172,34.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,sr,173,34.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,sr,173,34.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,sr,174,34.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,sr,174,34.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,sr,175,35.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,sr,175,35.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,sr,176,35.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,sr,176,35.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,sr,177,35.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,sr,177,35.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,sr,178,35.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,sr,178,35.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,sr,179,35.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,sr,179,35.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,sr,180,36.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,sr,180,36.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,sr,181,36.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,sr,181,36.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,sr,182,36.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,sr,182,36.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,sr,183,36.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,sr,183,36.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,sr,184,36.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,sr,184,36.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,sr,185,37.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,sr,185,37.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,sr,186,37.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,sr,186,37.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,sr,187,37.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,sr,187,37.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,sr,188,37.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,sr,188,37.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,sr,189,37.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,sr,189,37.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,sr,190,38.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,sr,190,38.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,sr,191,38.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,sr,191,38.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,sr,192,38.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,sr,192,38.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,sr,193,38.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,sr,193,38.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,sr,194,38.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,sr,194,38.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,sr,195,39.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,sr,195,39.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,sr,196,39.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,sr,196,39.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,sr,197,39.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,sr,197,39.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,sr,198,39.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,sr,198,39.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,sr,199,39.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,sr,199,39.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,sr,200,40.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,sr,200,40.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,sr,201,40.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,sr,201,40.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,sr,202,40.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,sr,202,40.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,sr,203,40.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,sr,203,40.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,sr,204,40.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,sr,204,40.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,sr,205,41.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,sr,205,41.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,sr,206,41.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,sr,206,41.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,sr,207,41.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,sr,207,41.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,sr,208,41.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,sr,208,41.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,sr,209,41.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,sr,209,41.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,sr,210,42.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,sr,210,42.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,sr,211,42.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,sr,211,42.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,sr,212,42.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,sr,212,42.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,sr,213,42.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,sr,213,42.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,sr,214,42.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,sr,214,42.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,sr,215,43.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,sr,215,43.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,sr,216,43.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,sr,216,43.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,sr,217,43.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,sr,217,43.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,sr,218,43.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,sr,218,43.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,sr,219,43.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,sr,219,43.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,sr,220,44.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,sr,220,44.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,sr,221,44.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,sr,221,44.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,sr,222,44.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,sr,222,44.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,sr,223,44.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,sr,223,44.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,sr,224,44.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,sr,224,44.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,sr,225,45.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,sr,225,45.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,sr,226,45.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,sr,226,45.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,sr,227,45.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,sr,227,45.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,sr,228,45.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,sr,228,45.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,sr,229,45.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,sr,229,45.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,sr,230,46.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,sr,230,46.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,sr,231,46.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,sr,231,46.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,sr,232,46.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,sr,232,46.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,sr,233,46.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,sr,233,46.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,sr,234,46.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,sr,234,46.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,sr,235,47.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,sr,235,47.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,sr,236,47.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,sr,236,47.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,sr,237,47.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,sr,237,47.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,sr,238,47.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,sr,238,47.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,sr,239,47.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,sr,239,47.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,sr,240,48.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,sr,240,48.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,sr,241,48.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,sr,241,48.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,sr,242,48.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,sr,242,48.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,sr,243,48.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,sr,243,48.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,sr,244,48.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,sr,244,48.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,sr,245,49.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,sr,245,49.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,sr,246,49.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,sr,246,49.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,sr,247,49.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,sr,247,49.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,sr,248,49.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,sr,248,49.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,sr,249,49.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,sr,249,49.8,target_force,target_cl,0.0009286822751164436 +illusion_0.75L,sr,250,50.0,target_force,target_cd,0.004329230170696974 +illusion_0.75L,sr,250,50.0,target_force,target_cl,0.0007613134803250432 +illusion_0.75L,sr,251,50.2,target_force,target_cd,0.0043093012645840645 +illusion_0.75L,sr,251,50.2,target_force,target_cl,0.0005613267421722412 +illusion_0.75L,sr,252,50.4,target_force,target_cd,0.004291526973247528 +illusion_0.75L,sr,252,50.4,target_force,target_cl,0.0003369711630512029 +illusion_0.75L,sr,253,50.6,target_force,target_cd,0.004277484491467476 +illusion_0.75L,sr,253,50.6,target_force,target_cl,9.754252096172422e-05 +illusion_0.75L,sr,254,50.8,target_force,target_cd,0.0042631374672055244 +illusion_0.75L,sr,254,50.8,target_force,target_cl,-0.00014684362395200878 +illusion_0.75L,sr,255,51.0,target_force,target_cd,0.004247708711773157 +illusion_0.75L,sr,255,51.0,target_force,target_cl,-0.0003855770919471979 +illusion_0.75L,sr,256,51.2,target_force,target_cd,0.004238303285092115 +illusion_0.75L,sr,256,51.2,target_force,target_cl,-0.0006080058519728482 +illusion_0.75L,sr,257,51.4,target_force,target_cd,0.004244087729603052 +illusion_0.75L,sr,257,51.4,target_force,target_cl,-0.0008040002430789173 +illusion_0.75L,sr,258,51.6,target_force,target_cd,0.004266131203621626 +illusion_0.75L,sr,258,51.6,target_force,target_cl,-0.0009645655518397689 +illusion_0.75L,sr,259,51.8,target_force,target_cd,0.00429448951035738 +illusion_0.75L,sr,259,51.8,target_force,target_cl,-0.0010824102209880948 +illusion_0.75L,sr,260,52.0,target_force,target_cd,0.0043162815272808075 +illusion_0.75L,sr,260,52.0,target_force,target_cl,-0.0011523779248818755 +illusion_0.75L,sr,261,52.2,target_force,target_cd,0.004326277878135443 +illusion_0.75L,sr,261,52.2,target_force,target_cl,-0.0011716809822246432 +illusion_0.75L,sr,262,52.4,target_force,target_cd,0.004328808281570673 +illusion_0.75L,sr,262,52.4,target_force,target_cl,-0.0011399217182770371 +illusion_0.75L,sr,263,52.6,target_force,target_cd,0.0043297018855810165 +illusion_0.75L,sr,263,52.6,target_force,target_cl,-0.0010589387966319919 +illusion_0.75L,sr,264,52.8,target_force,target_cd,0.0043281326070427895 +illusion_0.75L,sr,264,52.8,target_force,target_cl,-0.0009325520950369537 +illusion_0.75L,sr,265,53.0,target_force,target_cd,0.004317938350141048 +illusion_0.75L,sr,265,53.0,target_force,target_cl,-0.0007662828429602087 +illusion_0.75L,sr,266,53.2,target_force,target_cd,0.004296679049730301 +illusion_0.75L,sr,266,53.2,target_force,target_cl,-0.0005671066464856267 +illusion_0.75L,sr,267,53.4,target_force,target_cd,0.004271471872925758 +illusion_0.75L,sr,267,53.4,target_force,target_cl,-0.00034325156593695283 +illusion_0.75L,sr,268,53.6,target_force,target_cd,0.004254178609699011 +illusion_0.75L,sr,268,53.6,target_force,target_cl,-0.00010401237523183227 +illusion_0.75L,sr,269,53.8,target_force,target_cd,0.004250772297382355 +illusion_0.75L,sr,269,53.8,target_force,target_cl,0.00014047697186470032 +illusion_0.75L,sr,270,54.0,target_force,target_cd,0.004256573971360922 +illusion_0.75L,sr,270,54.0,target_force,target_cl,0.000379570439690724 +illusion_0.75L,sr,271,54.2,target_force,target_cd,0.00426256749778986 +illusion_0.75L,sr,271,54.2,target_force,target_cl,0.0006025657639838755 +illusion_0.75L,sr,272,54.4,target_force,target_cd,0.004265558440238237 +illusion_0.75L,sr,272,54.4,target_force,target_cl,0.0007992724422365427 +illusion_0.75L,sr,273,54.6,target_force,target_cd,0.004270726349204779 +illusion_0.75L,sr,273,54.6,target_force,target_cl,0.0009606286184862256 +illusion_0.75L,sr,274,54.8,target_force,target_cd,0.004283971153199673 +illusion_0.75L,sr,274,54.8,target_force,target_cl,0.001079274108633399 +illusion_0.75L,sr,275,55.0,target_force,target_cd,0.004303178749978542 +illusion_0.75L,sr,275,55.0,target_force,target_cl,0.0011499872198328376 +illusion_0.75L,sr,276,55.2,target_force,target_cd,0.004318722058087587 +illusion_0.75L,sr,276,55.2,target_force,target_cl,0.00116992206312716 +illusion_0.75L,sr,277,55.4,target_force,target_cd,0.004322815220803022 +illusion_0.75L,sr,277,55.4,target_force,target_cl,0.001138634397648275 +illusion_0.75L,sr,278,55.6,target_force,target_cd,0.004317114595323801 +illusion_0.75L,sr,278,55.6,target_force,target_cl,0.0010579300578683615 +illusion_0.75L,sr,279,55.8,target_force,target_cd,0.004309931304305792 +illusion_0.75L,sr,279,55.8,target_force,target_cl,0.000931612157728523 +illusion_0.75L,sr,280,56.0,target_force,target_cd,0.004306346643716097 +illusion_0.75L,sr,280,56.0,target_force,target_cl,0.0007652023923583329 +illusion_0.75L,sr,281,56.2,target_force,target_cd,0.00430266372859478 +illusion_0.75L,sr,281,56.2,target_force,target_cl,0.0005656927824020386 +illusion_0.75L,sr,282,56.4,target_force,target_cd,0.00429161824285984 +illusion_0.75L,sr,282,56.4,target_force,target_cl,0.0003413430822547525 +illusion_0.75L,sr,283,56.6,target_force,target_cd,0.004272329621016979 +illusion_0.75L,sr,283,56.6,target_force,target_cl,0.00010149206354981288 +illusion_0.75L,sr,284,56.8,target_force,target_cd,0.004253413062542677 +illusion_0.75L,sr,284,56.8,target_force,target_cl,-0.00014367327094078064 +illusion_0.75L,sr,285,57.0,target_force,target_cd,0.004245383199304342 +illusion_0.75L,sr,285,57.0,target_force,target_cl,-0.0003834486415144056 +illusion_0.75L,sr,286,57.2,target_force,target_cd,0.004250668920576572 +illusion_0.75L,sr,286,57.2,target_force,target_cl,-0.0006070726667530835 +illusion_0.75L,sr,287,57.4,target_force,target_cd,0.004262279253453016 +illusion_0.75L,sr,287,57.4,target_force,target_cl,-0.0008042993140406907 +illusion_0.75L,sr,288,57.6,target_force,target_cd,0.0042722816579043865 +illusion_0.75L,sr,288,57.6,target_force,target_cl,-0.0009660187060944736 +illusion_0.75L,sr,289,57.8,target_force,target_cd,0.004280176013708115 +illusion_0.75L,sr,289,57.8,target_force,target_cl,-0.0010848336387425661 +illusion_0.75L,sr,290,58.0,target_force,target_cd,0.004291605204343796 +illusion_0.75L,sr,290,58.0,target_force,target_cl,-0.0011554996017366648 +illusion_0.75L,sr,291,58.2,target_force,target_cd,0.004309208132326603 +illusion_0.75L,sr,291,58.2,target_force,target_cl,-0.0011751636629924178 +illusion_0.75L,sr,292,58.4,target_force,target_cd,0.004326635040342808 +illusion_0.75L,sr,292,58.4,target_force,target_cl,-0.001143390778452158 +illusion_0.75L,sr,293,58.6,target_force,target_cd,0.004333213437348604 +illusion_0.75L,sr,293,58.6,target_force,target_cl,-0.0010620126267895103 +illusion_0.75L,sr,294,58.8,target_force,target_cd,0.004324445500969887 +illusion_0.75L,sr,294,58.8,target_force,target_cl,-0.0009348725434392691 +illusion_0.75L,sr,295,59.0,target_force,target_cd,0.004306653048843145 +illusion_0.75L,sr,295,59.0,target_force,target_cl,-0.0007675446104258299 +illusion_0.75L,sr,296,59.2,target_force,target_cd,0.004290517885237932 +illusion_0.75L,sr,296,59.2,target_force,target_cl,-0.000567082257475704 +illusion_0.75L,sr,297,59.4,target_force,target_cd,0.004280740395188332 +illusion_0.75L,sr,297,59.4,target_force,target_cl,-0.00034181104274466634 +illusion_0.75L,sr,298,59.6,target_force,target_cd,0.004273268859833479 +illusion_0.75L,sr,298,59.6,target_force,target_cl,-0.00010113600001204759 +illusion_0.75L,sr,299,59.8,target_force,target_cd,0.004262732807546854 +illusion_0.75L,sr,299,59.8,target_force,target_cl,0.00014469395682681352 +illusion_0.75L,sr,300,60.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,sr,300,60.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,sr,301,60.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,sr,301,60.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,sr,302,60.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,sr,302,60.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,sr,303,60.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,sr,303,60.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,sr,304,60.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,sr,304,60.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,sr,305,61.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,sr,305,61.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,sr,306,61.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,sr,306,61.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,sr,307,61.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,sr,307,61.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,sr,308,61.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,sr,308,61.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,sr,309,61.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,sr,309,61.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,sr,310,62.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,sr,310,62.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,sr,311,62.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,sr,311,62.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,sr,312,62.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,sr,312,62.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,sr,313,62.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,sr,313,62.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,sr,314,62.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,sr,314,62.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,sr,315,63.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,sr,315,63.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,sr,316,63.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,sr,316,63.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,sr,317,63.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,sr,317,63.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,sr,318,63.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,sr,318,63.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,sr,319,63.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,sr,319,63.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,sr,320,64.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,sr,320,64.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,sr,321,64.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,sr,321,64.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,sr,322,64.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,sr,322,64.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,sr,323,64.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,sr,323,64.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,sr,324,64.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,sr,324,64.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,sr,325,65.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,sr,325,65.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,sr,326,65.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,sr,326,65.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,sr,327,65.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,sr,327,65.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,sr,328,65.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,sr,328,65.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,sr,329,65.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,sr,329,65.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,sr,330,66.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,sr,330,66.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,sr,331,66.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,sr,331,66.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,sr,332,66.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,sr,332,66.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,sr,333,66.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,sr,333,66.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,sr,334,66.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,sr,334,66.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,sr,335,67.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,sr,335,67.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,sr,336,67.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,sr,336,67.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,sr,337,67.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,sr,337,67.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,sr,338,67.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,sr,338,67.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,sr,339,67.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,sr,339,67.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,sr,340,68.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,sr,340,68.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,sr,341,68.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,sr,341,68.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,sr,342,68.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,sr,342,68.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,sr,343,68.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,sr,343,68.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,sr,344,68.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,sr,344,68.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,sr,345,69.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,sr,345,69.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,sr,346,69.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,sr,346,69.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,sr,347,69.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,sr,347,69.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,sr,348,69.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,sr,348,69.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,sr,349,69.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,sr,349,69.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,sr,350,70.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,sr,350,70.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,sr,351,70.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,sr,351,70.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,sr,352,70.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,sr,352,70.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,sr,353,70.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,sr,353,70.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,sr,354,70.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,sr,354,70.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,sr,355,71.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,sr,355,71.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,sr,356,71.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,sr,356,71.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,sr,357,71.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,sr,357,71.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,sr,358,71.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,sr,358,71.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,sr,359,71.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,sr,359,71.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,sr,360,72.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,sr,360,72.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,sr,361,72.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,sr,361,72.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,sr,362,72.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,sr,362,72.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,sr,363,72.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,sr,363,72.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,sr,364,72.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,sr,364,72.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,sr,365,73.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,sr,365,73.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,sr,366,73.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,sr,366,73.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,sr,367,73.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,sr,367,73.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,sr,368,73.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,sr,368,73.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,sr,369,73.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,sr,369,73.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,sr,370,74.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,sr,370,74.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,sr,371,74.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,sr,371,74.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,sr,372,74.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,sr,372,74.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,sr,373,74.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,sr,373,74.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,sr,374,74.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,sr,374,74.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,sr,375,75.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,sr,375,75.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,sr,376,75.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,sr,376,75.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,sr,377,75.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,sr,377,75.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,sr,378,75.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,sr,378,75.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,sr,379,75.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,sr,379,75.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,sr,380,76.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,sr,380,76.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,sr,381,76.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,sr,381,76.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,sr,382,76.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,sr,382,76.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,sr,383,76.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,sr,383,76.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,sr,384,76.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,sr,384,76.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,sr,385,77.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,sr,385,77.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,sr,386,77.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,sr,386,77.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,sr,387,77.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,sr,387,77.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,sr,388,77.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,sr,388,77.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,sr,389,77.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,sr,389,77.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,sr,390,78.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,sr,390,78.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,sr,391,78.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,sr,391,78.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,sr,392,78.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,sr,392,78.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,sr,393,78.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,sr,393,78.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,sr,394,78.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,sr,394,78.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,sr,395,79.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,sr,395,79.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,sr,396,79.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,sr,396,79.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,sr,397,79.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,sr,397,79.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,sr,398,79.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,sr,398,79.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,sr,399,79.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,sr,399,79.8,target_force,target_cl,0.0009286822751164436 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json new file mode 100644 index 0000000..1c39869 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_0.75L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz", + "sample_interval": 400, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv new file mode 100644 index 0000000..c2ec92e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_0.75L,sr,0,0.0,0.7729189991950989,0.30032414197921753,0.8785650730133057,0.5399895310401917,1.0687040090560913,0.31180307269096375,0.0018273191526532173,-4.922538573737256e-05,0.001272868481464684,0.0025496450252830982,0.0013434828724712133,-0.002868432318791747,-0.0403485810211414,0.033484695299226826,0.033484695299226826,-0.00040348581021141405,0.00033484695299226824,0.00033484695299226824,0.0042510125786066055,0.00038492129533551633,0 +illusion_0.75L,sr,1,0.2,0.7474719882011414,0.2595135271549225,0.8851585984230042,0.5446141362190247,1.1026451587677002,0.3230607509613037,0.0018322676187381148,-4.050692587043159e-05,0.0014494780916720629,0.0022824553307145834,0.001518910052254796,-0.0025947182439267635,-0.03713317888975198,0.030929297293356202,0.030929297293356202,-0.0003713317888975198,0.000309292972933562,0.000309292972933562,0.004246690776199102,0.0006087439251132309,1 +illusion_0.75L,sr,2,0.4,0.7271630764007568,0.21385109424591064,0.884249746799469,0.5382837057113647,1.1382644176483154,0.33165866136550903,0.0018591572297737002,-3.479413499007933e-05,0.0016092420555651188,0.00205043563619256,0.0016766743501648307,-0.002340527717024088,-0.020213898217175397,0.018348487309668933,0.018348487309668933,-0.00020213898217175398,0.00018348487309668933,0.00018348487309668933,0.004255807958543301,0.000805890653282404,2 +illusion_0.75L,sr,3,0.6,0.7122536301612854,0.16483819484710693,0.8746607303619385,0.5131117105484009,1.1758792400360107,0.33709415793418884,0.0018865815363824368,-2.89840972982347e-05,0.0017589456401765347,0.0018210132839158177,0.0018253120360895991,-0.002076725009828806,-0.01024618221011047,0.01087314896796944,0.01087314896796944,-0.0001024618221011047,0.0001087314896796944,0.0001087314896796944,0.004274525213986635,0.0009672442683950067,3 +illusion_0.75L,sr,4,0.8,0.7049154043197632,0.11450065672397614,0.8556989431381226,0.46138325333595276,1.2155529260635376,0.33846551179885864,0.0019132004817947745,-2.23415408981964e-05,0.0018915599212050438,0.0016009502578526735,0.001957588829100132,-0.0018135163700208068,0.0007751107581404001,0.0026635329230828286,0.0026635329230828286,7.751107581404001e-06,2.6635329230828287e-05,2.6635329230828287e-05,0.004292297642678022,0.0010854192078113556,4 +illusion_0.75L,sr,5,1.0,0.7077232599258423,0.06581878662109375,0.8279233574867249,0.3781977891921997,1.256837010383606,0.3342783451080322,0.0019357773708179593,-1.6689260519342497e-05,0.002001832937821746,0.001394609222188592,0.002067241119220853,-0.0015575336292386055,0.014180391521456212,-0.007275107109495597,-0.007275107109495597,0.00014180391521456212,-7.275107109495597e-05,-7.275107109495597e-05,0.004302178509533405,0.0011552009964361787,5 +illusion_0.75L,sr,6,1.2,0.7215998768806458,0.021798953413963318,0.793182909488678,0.2633153796195984,1.2979792356491089,0.32207274436950684,0.001954897539690137,-1.2463853636290878e-05,0.002087858272716403,0.0012068875366821885,0.002152075758203864,-0.0013171177124604583,0.025282572360938393,-0.01552287909311204,-0.01552287909311204,0.0002528257236093839,-0.00015522879093112041,-0.00015522879093112041,0.004306729417294264,0.0011737841414287686,6 +illusion_0.75L,sr,7,1.4,0.7447476983070374,-0.01636715605854988,0.7549883127212524,0.12142791599035263,1.3354713916778564,0.29816898703575134,0.001965953968465328,-9.340317774331197e-06,0.00215482828207314,0.0010436843149363995,0.002216694410890341,-0.001100408611819148,0.032918429006220135,-0.021232786353499938,-0.021232786353499938,0.00032918429006220136,-0.00021232786353499937,-0.00021232786353499937,0.004313030280172825,0.0011407959973439574,7 +illusion_0.75L,sr,8,1.6,0.7728207111358643,-0.05026066675782204,0.7183037400245667,-0.03809146583080292,1.3633068799972534,0.25774338841438293,0.0019763158634305,-7.355755769822281e-06,0.0022052889689803123,0.0009055331465788186,0.002262549940496683,-0.00090791069669649,0.03721944705698309,-0.024530963475632255,-0.024530963475632255,0.0003721944705698309,-0.00024530963475632257,-0.00024530963475632257,0.004322762601077557,0.0010581414680927992,8 +illusion_0.75L,sr,9,1.8,0.8014190793037415,-0.08288320899009705,0.6894593238830566,-0.20076648890972137,1.3734050989151,0.19594620168209076,0.001980091445147991,-4.639299731934443e-06,0.002245902316644788,0.000793378334492445,0.002295134589076042,-0.0007408250821754336,0.037110661043285205,-0.02467507557589893,-0.02467507557589893,0.00037110661043285206,-0.0002467507557589893,-0.0002467507557589893,0.00432894192636013,0.0009297445067204535,9 +illusion_0.75L,sr,10,2.0,0.8283942937850952,-0.11600003391504288,0.6754499077796936,-0.3465092182159424,1.3573791980743408,0.1104092225432396,0.001984016504138708,-2.2067472400522092e-06,0.002279345877468586,0.0007048025727272034,0.002316762926056981,-0.0005979306297376752,0.03538613704512191,-0.023790262814089556,-0.023790262814089556,0.00035386137045121914,-0.00023790262814089557,-0.00023790262814089557,0.004323208704590797,0.0007612616172991693,10 +illusion_0.75L,sr,11,2.2,0.8541346788406372,-0.14897842705249786,0.6822471022605896,-0.45239707827568054,1.3101434707641602,0.004501662217080593,0.0019826393108814955,2.850105715879181e-07,0.0023014021571725607,0.000636428885627538,0.0023230179212987423,-0.0004781815514434129,0.029617255253032132,-0.020096640977802338,-0.020096640977802338,0.00029617255253032134,-0.00020096640977802338,-0.00020096640977802338,0.0043054320849478245,0.0005598256830126047,11 +illusion_0.75L,sr,12,2.4,0.8798618316650391,-0.1801336407661438,0.7105386257171631,-0.5049126148223877,1.233644962310791,-0.11039287596940994,0.00197798409499228,4.228926172800129e-06,0.0023198865819722414,0.0005852860631421208,0.002321793232113123,-0.00038005600799806416,0.020330124899465802,-0.013993353032778067,-0.013993353032778067,0.00020330124899465803,-0.00013993353032778068,-0.00013993353032778068,0.0042846668511629105,0.0003338336537126452,12 +illusion_0.75L,sr,13,2.6,0.9064728617668152,-0.2083013504743576,0.7520163059234619,-0.5146246552467346,1.1383835077285767,-0.21657684445381165,0.0019752797670662403,1.0293666491634212e-05,0.002338079269975424,0.0005483589484356344,0.0023174788802862167,-0.0003007103514391929,0.010471934830614895,-0.007658001835721618,-0.007658001835721618,0.00010471934830614895,-7.658001835721618e-05,-7.658001835721618e-05,0.004270360339432955,9.274937474401668e-05,13 +illusion_0.75L,sr,14,2.8,0.9341423511505127,-0.23320496082305908,0.7938551902770996,-0.5085902810096741,1.0400385856628418,-0.2965388894081116,0.0019760995637625456,1.804744533728808e-05,0.002360345097258687,0.0005205115885473788,0.0023153943475335836,-0.00023634657554794103,0.002436820400332402,-0.0028085136703079917,-0.0028085136703079917,2.436820400332402e-05,-2.8085136703079916e-05,-2.8085136703079916e-05,0.004263774491846561,-0.00015313613403122872,14 +illusion_0.75L,sr,15,3.0,0.9629361629486084,-0.2550898492336273,0.8285510540008545,-0.5060709714889526,0.953369140625,-0.34076786041259766,0.0019798323046416044,2.5906481823767535e-05,0.0023857580963522196,0.0004992741742171347,0.0023154523223638535,-0.0001860369957285002,-0.0037947945058973832,0.000616165232451095,0.000616165232451095,-3.7947945058973835e-05,6.16165232451095e-06,6.16165232451095e-06,0.004259183071553707,-0.00039304280653595924,15 +illusion_0.75L,sr,16,3.2,0.9928867816925049,-0.27425262331962585,0.8554810285568237,-0.5109230279922485,0.8862640857696533,-0.3511905372142792,0.0019829217344522476,3.404304152354598e-05,0.0024105228949338198,0.000483206968056038,0.0023143819998949766,-0.0001493598538218066,-0.010726667722924618,0.0045101479652768645,0.0045101479652768645,-0.00010726667722924618,4.510147965276864e-05,4.510147965276864e-05,0.004253040533512831,-0.0006161675555631518,16 +illusion_0.75L,sr,17,3.4,1.0240286588668823,-0.2909493148326874,0.8762803673744202,-0.520581066608429,0.8381295204162598,-0.33737170696258545,0.0019829897210001945,4.339447332313284e-05,0.0024303013924509287,0.0004699633573181927,0.002308824099600315,-0.00012365590373519808,-0.01752406969002744,0.00828118085105059,0.00828118085105059,-0.00017524069690027442,8.28118085105059e-05,8.28118085105059e-05,0.004250074736773968,-0.0008122602594085038,17 +illusion_0.75L,sr,18,3.6,1.0564205646514893,-0.30532118678092957,0.891807496547699,-0.5320786237716675,0.8031907081604004,-0.30947867035865784,0.0019799889996647835,5.290406261337921e-05,0.0024463601876050234,0.00045824929839000106,0.002300725784152746,-0.00010759056749520823,-0.02135789208253977,0.00988298989639215,0.00988298989639215,-0.0002135789208253977,9.88298989639215e-05,9.88298989639215e-05,0.004258817993104458,-0.0009722463437356055,18 +illusion_0.75L,sr,19,3.8,1.0902135372161865,-0.3173716962337494,0.9018285274505615,-0.5419957637786865,0.7753744721412659,-0.27383363246917725,0.0019756366964429617,6.109764217399061e-05,0.002459332114085555,0.00044688821071758866,0.0022912761196494102,-0.00010037315223598853,-0.023788154009177595,0.010503450243268653,0.010503450243268653,-0.00023788154009177594,0.00010503450243268653,0.00010503450243268653,0.004281363915652037,-0.0010888022370636463,19 +illusion_0.75L,sr,20,4.0,1.125667691230774,-0.3269473910331726,0.9053035974502563,-0.5451036691665649,0.751273512840271,-0.23288659751415253,0.0019725924357771873,6.84088736306876e-05,0.002472471911460161,0.000435513531556353,0.0022840481251478195,-0.00010160080273635685,-0.027350254729533036,0.012046318829144018,0.012046318829144018,-0.0002735025472953304,0.00012046318829144018,0.00012046318829144018,0.004309054929763079,-0.001156791695393622,20 +illusion_0.75L,sr,21,4.2,1.1630377769470215,-0.3336437940597534,0.9006638526916504,-0.5338748693466187,0.7305144667625427,-0.18741963803768158,0.0019689833279699087,7.517744961660355e-05,0.0024833709467202425,0.0004239112895447761,0.002277157036587596,-0.00010949678835459054,-0.03085821765307351,0.013649297297471942,0.013649297297471942,-0.0003085821765307351,0.00013649297297471942,0.00013649297297471942,0.004329311661422253,-0.0011734996223822236,21 +illusion_0.75L,sr,22,4.4,1.202476978302002,-0.33675137162208557,0.8864471912384033,-0.4995129406452179,0.7149428725242615,-0.13851988315582275,0.001961133675649762,8.167914347723126e-05,0.002486606827005744,0.0004136520146857947,0.0022657185327261686,-0.00012391689233481884,-0.03313229920669444,0.014464729103557145,0.014464729103557145,-0.00033132299206694443,0.00014464729103557146,0.00014464729103557146,0.004336345009505749,-0.0011386508122086525,22 +illusion_0.75L,sr,23,4.6,1.2439199686050415,-0.335026353597641,0.8622937798500061,-0.4345165193080902,0.7074276208877563,-0.0885261818766594,0.001953704748302698,8.71822630870156e-05,0.0024884336162358522,0.0004045465320814401,0.0022563207894563675,-0.00014394578465726227,-0.03311174539319642,0.01373372292278982,0.01373372292278982,-0.0003311174539319642,0.0001373372292278982,0.0001373372292278982,0.004334232769906521,-0.0010542497038841248,23 +illusion_0.75L,sr,24,4.8,1.2866477966308594,-0.32641640305519104,0.8296562433242798,-0.3355105519294739,0.7103252410888672,-0.04061242192983627,0.0019464812939986587,8.936230733525008e-05,0.0024876659736037254,0.0003964299103245139,0.00224806135520339,-0.00016870103718247265,-0.032001984107885406,0.012364796978515558,0.012364796978515558,-0.0003200198410788541,0.00012364796978515559,0.00012364796978515559,0.004329643212258816,-0.0009243153617717326,24 +illusion_0.75L,sr,25,5.0,1.328325629234314,-0.30757465958595276,0.7918391227722168,-0.20467419922351837,0.7237629890441895,0.002629284281283617,0.0019443902419880033,9.087618673220277e-05,0.0024899342097342014,0.000388979387935251,0.002246561460196972,-0.0001973381295101717,-0.03434356762473664,0.01373252776468961,0.01373252776468961,-0.00034343567624736643,0.0001373252776468961,0.0001373252776468961,0.00432319100946188,-0.0007545904372818768,25 +illusion_0.75L,sr,26,5.2,1.364102840423584,-0.2735605835914612,0.753956139087677,-0.04979461804032326,0.7451231479644775,0.040802668780088425,0.00194526684936136,9.248302376363426e-05,0.0024936951231211424,0.0003830757341347635,0.002250754041597247,-0.00022902338241692632,-0.03465961670269657,0.013782654222600332,0.013782654222600332,-0.00034659616702696573,0.00013782654222600332,0.00013782654222600332,0.004309643525630236,-0.0005522798164747655,26 +illusion_0.75L,sr,27,5.4,1.3859275579452515,-0.21841789782047272,0.7224009037017822,0.11568113416433334,0.7701816558837891,0.07581786066293716,0.0019464471843093634,9.157595923170447e-05,0.0024926867336034775,0.0003788464528042823,0.002254590392112732,-0.0002626159111969173,-0.030948070061187966,0.01105653724050415,0.01105653724050415,-0.00030948070061187965,0.00011056537240504149,0.00011056537240504149,0.004286581184715033,-0.0003258340584579855,27 +illusion_0.75L,sr,28,5.6,1.3835694789886475,-0.13759779930114746,0.7038339376449585,0.2724418640136719,0.7954264879226685,0.10992245376110077,0.001944458344951272,8.850912854541093e-05,0.0024863805156201124,0.00037596822949126363,0.002257236046716571,-0.0002987391490023583,-0.028395986956893826,0.009403882189307267,0.009403882189307267,-0.00028395986956893825,9.403882189307267e-05,9.403882189307267e-05,0.004260983318090439,-8.474913192912936e-05,28 +illusion_0.75L,sr,29,5.8,1.3488942384719849,-0.032675229012966156,0.7038487195968628,0.3968706429004669,0.8196261525154114,0.1437682956457138,0.0019405325874686241,8.40381981106475e-05,0.0024741990491747856,0.00037281637196429074,0.002258062595501542,-0.00033527647610753775,-0.02655167257375571,0.008475435176431373,0.008475435176431373,-0.0002655167257375571,8.475435176431373e-05,8.475435176431373e-05,0.004245322663336992,0.00016067505930550396,29 +illusion_0.75L,sr,30,6.0,1.2818934917449951,0.08452760428190231,0.7243274450302124,0.46917396783828735,0.8431936502456665,0.1763702630996704,0.0019366288324818015,7.818768062861636e-05,0.0024584310594946146,0.00036913034273311496,0.0022590183652937412,-0.00037031364627182484,-0.023901628316572915,0.00714846372901165,0.00714846372901165,-0.00023901628316572916,7.148463729011651e-05,7.148463729011651e-05,0.004246708005666733,0.0003996735031250864,30 +illusion_0.75L,sr,31,6.2,1.1935429573059082,0.19347615540027618,0.7600223422050476,0.4885654151439667,0.866780698299408,0.2066032588481903,0.0019337086705490947,7.171748438850045e-05,0.0024410318583250046,0.00036351627204567194,0.0022616691421717405,-0.0004023822257295251,-0.02070613446499403,0.005599015244673919,0.005599015244673919,-0.00020706134464994032,5.599015244673919e-05,5.599015244673919e-05,0.004260779824107885,0.0006214812165126204,31 +illusion_0.75L,sr,32,6.4,1.1014240980148315,0.2740408182144165,0.7996034026145935,0.4769640862941742,0.8905647397041321,0.23404113948345184,0.0019313202938064933,6.27341287326999e-05,0.002422322053462267,0.0003551948757376522,0.0022659061942249537,-0.00043101253686472774,-0.01575212050159891,0.00291021167454468,0.00291021167454468,-0.0001575212050159891,2.91021167454468e-05,2.91021167454468e-05,0.00427695456892252,0.0008159072604030371,32 +illusion_0.75L,sr,33,6.6,1.0212441682815552,0.31655287742614746,0.8331983089447021,0.4596003293991089,0.9143783450126648,0.25889986753463745,0.0019268295727670193,5.2645831601694226e-05,0.0023990690242499113,0.00034357942058704793,0.002267644740641117,-0.0004554323968477547,-0.013340780297920548,0.0022447223769937463,0.0022447223769937463,-0.00013340780297920547,2.2447223769937462e-05,2.2447223769937462e-05,0.004289029631763697,0.000973953865468502,33 +illusion_0.75L,sr,34,6.8,0.9607333540916443,0.32475775480270386,0.8575257062911987,0.4480450749397278,0.9381912350654602,0.28167304396629333,0.0019222552655264735,4.249222911312245e-05,0.002375649753957987,0.0003287720028311014,0.0022707954049110413,-0.0004745351616293192,-0.011343137834065792,0.001985177558486456,0.001985177558486456,-0.00011343137834065792,1.985177558486456e-05,1.985177558486456e-05,0.004299434833228588,0.0010883876821026206,34 +illusion_0.75L,sr,35,7.0,0.9189087152481079,0.310247540473938,0.8735553026199341,0.44308605790138245,0.9621249437332153,0.30285778641700745,0.0019201100803911686,3.2316329452442005e-05,0.0023540027905255556,0.00031091307755559683,0.002276833401992917,-0.0004874461446888745,-0.00803879928521209,0.0008354461644380224,0.0008354461644380224,-8.03879928521209e-05,8.354461644380224e-06,8.354461644380224e-06,0.0043129948899149895,0.0011541711864992976,35 +illusion_0.75L,sr,36,7.2,0.8900255560874939,0.2843179404735565,0.8829125761985779,0.44309139251708984,0.9864216446876526,0.3228818476200104,0.001921876217238605,2.1128344087628648e-05,0.0023375432938337326,0.00029020218062214553,0.0022886390797793865,-0.0004945017863065004,-0.0037621375478258806,-0.0009795798749739626,-0.0009795798749739626,-3.762137547825881e-05,-9.795798749739626e-06,-9.795798749739626e-06,0.0043281856924295425,0.0011686912039294839,36 +illusion_0.75L,sr,37,7.4,0.868253231048584,0.2538405954837799,0.8865901231765747,0.44699355959892273,1.0114455223083496,0.34205058217048645,0.001929698046296835,9.526901521894615e-06,0.002329220762476325,0.0002668991219252348,0.0023084976710379124,-0.0004959146026521921,-0.0010450087419643095,-0.00161198553797982,-0.00161198553797982,-1.0450087419643095e-05,-1.61198553797982e-05,-1.61198553797982e-05,0.004336609039455652,0.001131771714426577,37 +illusion_0.75L,sr,38,7.6,0.849996030330658,0.2216825634241104,0.8849536776542664,0.4539549946784973,1.0376607179641724,0.3605656325817108,0.0019368198700249195,-1.3614544513984583e-06,0.0023217713460326195,0.00024327168648596853,0.0023287730291485786,-0.0004928635316900909,0.0007417759439244109,-0.0015598789159700626,-0.0015598789159700626,7.417759439244109e-06,-1.5598789159700626e-05,-1.5598789159700626e-05,0.004331659525632858,0.0010455084266141057,38 +illusion_0.75L,sr,39,7.8,0.833831250667572,0.18871715664863586,0.8777444362640381,0.46250495314598083,1.0654369592666626,0.3785002529621124,0.001942506874911487,-1.1484461538202595e-05,0.002313466276973486,0.00022099408670328557,0.002347419271245599,-0.000486156641272828,0.0035839390624773453,-0.0023111909844640843,-0.0023111909844640843,3.5839390624773454e-05,-2.3111909844640844e-05,-2.3111909844640844e-05,0.004316441714763641,0.0009139995672740042,39 +illusion_0.75L,sr,40,8.0,0.8198115825653076,0.155272975564003,0.8643121123313904,0.4697569012641907,1.095109224319458,0.3957800269126892,0.0019449797691777349,-2.1382960767368786e-05,0.0023035372141748667,0.00020088546443730593,0.0023632608354091644,-0.0004763530450873077,0.007299753637689693,-0.003746881382835618,-0.003746881382835618,7.299753637689692e-05,-3.746881382835618e-05,-3.746881382835618e-05,0.004301527515053749,0.0007430499535985291,40 +illusion_0.75L,sr,41,8.2,0.8086155652999878,0.12162425369024277,0.843829333782196,0.4708871841430664,1.1269482374191284,0.41214972734451294,0.0019471623236313462,-3.0861509003443643e-05,0.0022943017538636923,0.00018379357061348855,0.002378244651481509,-0.00046424978063441813,0.010400741701440529,-0.0047850879213907835,-0.0047850879213907835,0.00010400741701440529,-4.785087921390784e-05,-4.785087921390784e-05,0.004294632934033871,0.0005399071960709989,41 +illusion_0.75L,sr,42,8.4,0.8008779287338257,0.08793484419584274,0.8156610131263733,0.4593403935432434,1.1611180305480957,0.42707929015159607,0.0019492023857310414,-3.957249646191485e-05,0.0022877983283251524,0.00017036082863342017,0.0023940906394273043,-0.00045037592644803226,0.012951863796966239,-0.005491972913612184,-0.005491972913612184,0.00012951863796966238,-5.4919729136121835e-05,-5.4919729136121835e-05,0.004293559584766626,0.00031304333242587745,42 +illusion_0.75L,sr,43,8.6,0.7966946363449097,0.054060932248830795,0.7797173857688904,0.4281364679336548,1.1974376440048218,0.4396336078643799,0.001950918696820736,-4.704246748588048e-05,0.0022819547448307276,0.00016220900579355657,0.002408461645245552,-0.00043583131628111005,0.015379859821549893,-0.006198932669794294,-0.006198932669794294,0.00015379859821549894,-6.198932669794294e-05,-6.198932669794294e-05,0.004290138371288776,7.195398939074948e-05,43 +illusion_0.75L,sr,44,8.8,0.7955496311187744,0.01951615698635578,0.7367463707923889,0.3719099164009094,1.2350422143936157,0.44824448227882385,0.0019500574562698603,-5.337195034371689e-05,0.002275202190503478,0.00016000188770703971,0.0024194668512791395,-0.00042133769602514803,0.018420185843200168,-0.007463253612665213,-0.007463253612665213,0.0001842018584320017,-7.463253612665213e-05,-7.463253612665213e-05,0.00428050896152854,-0.0001730822114041075,44 +illusion_0.75L,sr,45,9.0,0.7968044281005859,-0.01625620760023594,0.6886207461357117,0.28860682249069214,1.2720948457717896,0.4503138065338135,0.001946225413121283,-5.896680158912204e-05,0.002266975585371256,0.00016449052782263607,0.0024262366350740194,-0.0004083091043867171,0.0215712143443178,-0.008929353305808949,-0.008929353305808949,0.00021571214344317803,-8.929353305808949e-05,-8.929353305808949e-05,0.0042700087651610374,-0.00041134055936709046,45 +illusion_0.75L,sr,46,9.2,0.8001260161399841,-0.053531888872385025,0.6383110284805298,0.1800389289855957,1.3052804470062256,0.44189155101776123,0.00194317486602813,-6.383057188941166e-05,0.00226186728104949,0.00017497874796390533,0.002433036221191287,-0.0003965599462389946,0.023716918141074766,-0.009786037730190364,-0.009786037730190364,0.00023716918141074766,-9.786037730190364e-05,-9.786037730190364e-05,0.004267278593033552,-0.000632112380117178,46 +illusion_0.75L,sr,47,9.4,0.8056843280792236,-0.0919676199555397,0.5899476408958435,0.051645226776599884,1.3295217752456665,0.4174729287624359,0.001943059265613556,-6.717537326039746e-05,0.0022617471404373646,0.00019173954206053168,0.0024413890205323696,-0.0003866347251459956,0.024551201082770535,-0.009822700629857836,-0.009822700629857836,0.00024551201082770535,-9.822700629857836e-05,-9.822700629857836e-05,0.004274563863873482,-0.0008252749685198069,47 +illusion_0.75L,sr,48,9.6,0.8140136003494263,-0.13077177107334137,0.5487868785858154,-0.08783705532550812,1.3382433652877808,0.37034693360328674,0.0019471768755465746,-6.869251956231892e-05,0.002268480136990547,0.00021397184173110873,0.0024528605863451958,-0.00037828527274541557,0.025384236835434865,-0.010025991763424794,-0.010025991763424794,0.00025384236835434865,-0.00010025991763424794,-0.00010025991763424794,0.004285456147044897,-0.0009819063125178218,48 +illusion_0.75L,sr,49,9.8,0.8256300091743469,-0.1690080463886261,0.5206279158592224,-0.22679167985916138,1.324366807937622,0.2935999631881714,0.0019504072843119502,-6.934219709364697e-05,0.0022757905535399914,0.0002421144163236022,0.002460958668962121,-0.0003725844726432115,0.026579844582026696,-0.010679804174567736,-0.010679804174567736,0.00026579844582026697,-0.00010679804174567737,-0.00010679804174567737,0.004292575176805258,-0.0010948515264317393,49 +illusion_0.75L,sr,50,10.0,0.8406533002853394,-0.2059585601091385,0.5105053186416626,-0.3519304692745209,1.2823354005813599,0.18285685777664185,0.0019512348808348179,-6.836136162746698e-05,0.002281604800373316,0.00027468777261674404,0.0024634944275021553,-0.00036882582935504615,0.02595796712267151,-0.010181088456490822,-0.010181088456490822,0.0002595796712267151,-0.00010181088456490822,-0.00010181088456490822,0.004296126775443554,-0.0011591494549065828,50 +illusion_0.75L,sr,51,10.2,0.8588995933532715,-0.24116112291812897,0.5209473967552185,-0.45154887437820435,1.211491346359253,0.040737334638834,0.001949580037035048,-6.60050063743256e-05,0.002285420661792159,0.0003106211079284549,0.0024600515607744455,-0.00036652895505540073,0.02498864456908972,-0.009623545005603348,-0.009623545005603348,0.0002498864456908972,-9.623545005603349e-05,-9.623545005603349e-05,0.0043031927198171616,-0.0011722566559910774,51 +illusion_0.75L,sr,52,10.4,0.8799861669540405,-0.27434924244880676,0.5495209693908691,-0.5212547779083252,1.1183801889419556,-0.11978336423635483,0.0019463609205558896,-6.201864016475156e-05,0.0022885198704898357,0.000347553490428254,0.002452015643939376,-0.0003640132490545511,0.023223911196153746,-0.008671412552026359,-0.008671412552026359,0.00023223911196153745,-8.671412552026359e-05,-8.671412552026359e-05,0.00431835139170289,-0.001134056132286787,52 +illusion_0.75L,sr,53,10.6,0.9035808444023132,-0.3054010570049286,0.5887051224708557,-0.5670849084854126,1.0153971910476685,-0.27747851610183716,0.001944001647643745,-5.678713205270469e-05,0.0022929562255740166,0.0003835685783997178,0.00244177901186049,-0.00036024872679263353,0.02128400171118594,-0.0077787045454093115,-0.0077787045454093115,0.0002128400171118594,-7.778704545409312e-05,-7.778704545409312e-05,0.004336398560553789,-0.0010466892272233963,53 +illusion_0.75L,sr,54,10.8,0.9293305277824402,-0.3342611789703369,0.6298875212669373,-0.6002712845802307,0.916246235370636,-0.4100797176361084,0.0019425761420279741,-5.01607391925063e-05,0.002298525767400861,0.00041680465801618993,0.0024295833427459,-0.0003541496698744595,0.018683542172122786,-0.006569648841818321,-0.006569648841818321,0.00018683542172122787,-6.56964884181832e-05,-6.56964884181832e-05,0.004345819354057312,-0.0009142835042439401,54 +illusion_0.75L,sr,55,11.0,0.9569528698921204,-0.36095112562179565,0.6679442524909973,-0.6290715336799622,0.8319222331047058,-0.5019747018814087,0.0019394296687096357,-4.2496962123550475e-05,0.0023029812145978212,0.00044601369882002473,0.00241378927603364,-0.00034514532308094203,0.016138677576140598,-0.00555257651788274,-0.00555257651788274,0.00016138677576140598,-5.5525765178827406e-05,-5.5525765178827406e-05,0.004339585080742836,-0.0007426568772643805,55 +illusion_0.75L,sr,56,11.2,0.9862973093986511,-0.38550761342048645,0.7015168070793152,-0.6565442085266113,0.7679184675216675,-0.5493245124816895,0.0019354451214894652,-3.4025350032607093e-05,0.002307117683812976,0.0004700944700744003,0.0023957588709890842,-0.0003333313507027924,0.013466566014738309,-0.00456250019732013,-0.00456250019732013,0.0001346656601473831,-4.56250019732013e-05,-4.56250019732013e-05,0.004321560729295015,-0.0005390531150624156,56 +illusion_0.75L,sr,57,11.4,1.0173523426055908,-0.40799739956855774,0.730811595916748,-0.6827117204666138,0.7229458093643188,-0.5599085688591003,0.0019331093644723296,-2.5377179554197937e-05,0.0023132474161684513,0.0004873582220170647,0.002378407632932067,-0.00031767640030011535,0.01071109474464374,-0.0036042493324483778,-0.0036042493324483778,0.0001071109474464374,-3.604249332448378e-05,-3.604249332448378e-05,0.004301773849874735,-0.000311925308778882,57 +illusion_0.75L,sr,58,11.6,1.0501635074615479,-0.42847973108291626,0.7560880184173584,-0.7059265375137329,0.6906680464744568,-0.5468576550483704,0.001935251522809267,-1.594302011653781e-05,0.0023253881372511387,0.0004978926735930145,0.0023663220927119255,-0.0002989688946399838,0.007119960209950822,-0.0020915656333579252,-0.0020915656333579252,7.119960209950823e-05,-2.0915656333579254e-05,-2.0915656333579254e-05,0.004286319483071566,-7.073696906445548e-05,58 +illusion_0.75L,sr,59,11.8,1.0848376750946045,-0.44700196385383606,0.7772124409675598,-0.722855806350708,0.6639434099197388,-0.5208200216293335,0.0019423759076744318,-6.54776522424072e-06,0.002344168024137616,0.0005013060290366411,0.0023608249612152576,-0.00027768569998443127,0.0044708184221671984,-0.0013124701826612746,-0.0013124701826612746,4.470818422167199e-05,-1.3124701826612746e-05,-1.3124701826612746e-05,0.004273382015526295,0.00017427514831069857,59 +illusion_0.75L,sr,60,12.0,1.1215287446975708,-0.46358123421669006,0.7935652136802673,-0.7284600734710693,0.6381462216377258,-0.4864623546600342,0.001950202276930213,2.3687193788646255e-06,0.0023646377958357334,0.0004991253954358399,0.0023574193473905325,-0.00025621012900955975,0.0016950019362514375,-0.00044208985217755384,-0.00044208985217755384,1.6950019362514374e-05,-4.420898521775539e-06,-4.420898521775539e-06,0.004259394947439432,0.0004124342813156545,60 +illusion_0.75L,sr,61,12.2,1.1602765321731567,-0.47810277342796326,0.804013192653656,-0.716854453086853,0.6117109060287476,-0.4437788426876068,0.001957328524440527,1.0934420060948469e-05,0.0023848777636885643,0.0004918036866001785,0.002354614669457078,-0.0002355874894419685,-0.001702420189877478,0.0009079749246665245,0.0009079749246665245,-1.702420189877478e-05,9.079749246665245e-06,9.079749246665245e-06,0.004247340373694897,0.000633081654086709,61 +illusion_0.75L,sr,62,12.4,1.2009371519088745,-0.49020764231681824,0.8073142170906067,-0.6832166314125061,0.5852582454681396,-0.3909410834312439,0.0019609250593930483,1.918421003210824e-05,0.0024010823108255863,0.0004810804966837168,0.002349147107452154,-0.00021764101984445006,-0.005065316823029641,0.0022730071393307454,0.0022730071393307454,-5.065316823029641e-05,2.2730071393307455e-05,2.2730071393307455e-05,0.004246612079441547,0.0008261421462520957,62 +illusion_0.75L,sr,63,12.6,1.2429808378219604,-0.49906834959983826,0.8025637865066528,-0.6257297396659851,0.5605047345161438,-0.32652851939201355,0.001963928109034896,2.676612166396808e-05,0.00241641141474247,0.0004673880757763982,0.002344653708860278,-0.00020305918587837368,-0.007826868224419997,0.003259892178407671,0.003259892178407671,-7.826868224419997e-05,3.259892178407671e-05,3.259892178407671e-05,0.004263712093234062,0.0009827353060245514,63 +illusion_0.75L,sr,64,12.8,1.285250186920166,-0.5029978156089783,0.7895828485488892,-0.5457673072814941,0.5396496653556824,-0.2506650984287262,0.0019659302197396755,3.322857082821429e-05,0.0024303551763296127,0.00045168522046878934,0.0023409321438521147,-0.00019313202938064933,-0.01027799997763805,0.004107234948578217,0.004107234948578217,-0.0001027799997763805,4.1072349485782174e-05,4.1072349485782174e-05,0.0042939698323607445,0.0010957379126921296,64 +illusion_0.75L,sr,65,13.0,1.3253586292266846,-0.49894165992736816,0.7688325643539429,-0.44579818844795227,0.5249039530754089,-0.16539114713668823,0.0019682664424180984,3.8545316783711314e-05,0.002443915233016014,0.0004350404778961092,0.0023392033763229847,-0.00018882067524828017,-0.013070100556563798,0.0053121759664696705,0.0053121759664696705,-0.00013070100556563798,5.31217596646967e-05,5.31217596646967e-05,0.004323890432715416,0.001160208135843277,65 +illusion_0.75L,sr,66,13.2,1.3593690395355225,-0.48208820819854736,0.741611659526825,-0.3271453082561493,0.5185093283653259,-0.07477250695228577,0.0019678783137351274,4.3246462155366316e-05,0.0024532685056328773,0.0004190901527181268,0.002335989847779274,-0.00019094494928140193,-0.01605703245894899,0.006777247125051886,0.006777247125051886,-0.00016057032458948988,6.777247125051886e-05,6.777247125051886e-05,0.004342077765613794,0.0011736078886315227,66 +illusion_0.75L,sr,67,13.4,1.382016897201538,-0.4460495710372925,0.7104594707489014,-0.19021382927894592,0.5229355692863464,0.015082947909832,0.001964201219379902,4.702695514424704e-05,0.0024574685376137495,0.0004048289265483618,0.0023307192604988813,-0.00019958354823756963,-0.017828837922701943,0.007475694851522691,0.007475694851522691,-0.00017828837922701944,7.47569485152269e-05,7.47569485152269e-05,0.004347268491983414,0.0011358100455254316,67 +illusion_0.75L,sr,68,13.6,1.387419581413269,-0.38348671793937683,0.6790826916694641,-0.03685305267572403,0.5406337976455688,0.09643027186393738,0.0019609215669333935,4.927135887555778e-05,0.0024602070916444063,0.0003921978932339698,0.0023271969985216856,-0.0002142929151887074,-0.01867357410726682,0.007638981092678354,0.007638981092678354,-0.0001867357410726682,7.638981092678354e-05,7.638981092678354e-05,0.004345463588833809,0.0010489318519830704,68 +illusion_0.75L,sr,69,13.8,1.3697574138641357,-0.2872790992259979,0.65131676197052,0.12800277769565582,0.5724765658378601,0.1622745394706726,0.001959514571353793,5.0142567488364875e-05,0.0024635065346956253,0.00038130261236801744,0.0023274978157132864,-0.0002346630353713408,-0.01975803533467653,0.008136273507052108,0.008136273507052108,-0.0001975803533467653,8.136273507052108e-05,8.136273507052108e-05,0.004340487066656351,0.0009170636185444891,69 +illusion_0.75L,sr,70,14.0,1.3251502513885498,-0.15393735468387604,0.630388081073761,0.2962217628955841,0.6157649755477905,0.21070092916488647,0.001962363952770829,5.044131830800325e-05,0.0024696525651961565,0.0003719666274264455,0.0023340273182839155,-0.0002593972021713853,-0.020698082781231295,0.00868579966088362,0.00868579966088362,-0.00020698082781231295,8.68579966088362e-05,8.68579966088362e-05,0.004329410847276449,0.0007459750631824136,70 +illusion_0.75L,sr,71,14.2,1.2557251453399658,0.009840321727097034,0.6194464564323425,0.4553751051425934,0.6644347906112671,0.24685479700565338,0.001965177711099386,4.882382199866697e-05,0.0024734786711633205,0.0003650689614005387,0.002341802464798093,-0.0002876846119761467,-0.01973108804656093,0.007988764950906668,0.007988764950906668,-0.0001973108804656093,7.988764950906669e-05,7.988764950906669e-05,0.004308085888624191,0.000542854773811996,71 +illusion_0.75L,sr,72,14.4,1.1713707447052002,0.18494167923927307,0.6224006414413452,0.5871471762657166,0.7127309441566467,0.2783908545970917,0.001966722309589386,4.6721292164875194e-05,0.002473321743309498,0.0003596264577936381,0.002348845824599266,-0.0003183133958373219,-0.01946373038587408,0.007983502857842814,0.007983502857842814,-0.00019463730385874082,7.983502857842814e-05,7.983502857842814e-05,0.0042798398062586784,0.000316097226459533,72 +illusion_0.75L,sr,73,14.6,1.084506630897522,0.34751659631729126,0.6419800519943237,0.6733613014221191,0.7583438158035278,0.3091561198234558,0.0019650119356811047,4.315917249186896e-05,0.0024670411366969347,0.0003550955152604729,0.002352874493226409,-0.0003504811611492187,-0.017228350107912335,0.006680161358621067,0.006680161358621067,-0.00017228350107912336,6.680161358621068e-05,6.680161358621068e-05,0.004256341140717268,7.510853174608201e-05,73 +illusion_0.75L,sr,74,14.8,1.004581332206726,0.47726309299468994,0.6755945682525635,0.7118940949440002,0.8018209934234619,0.3386367857456207,0.001962983049452305,3.796019882429391e-05,0.002457426395267248,0.00034997015609405935,0.0023562319111078978,-0.0003812093345914036,-0.015166837542515523,0.0056571628291507,0.0056571628291507,-0.00015166837542515522,5.6571628291507e-05,5.6571628291507e-05,0.004248499870300293,-0.00016992665769066662,74 +illusion_0.75L,sr,75,15.0,0.9377080798149109,0.5608385801315308,0.715089738368988,0.7220091223716736,0.8442132472991943,0.3654205799102783,0.001960671041160822,3.2453808671562e-05,0.0024461164139211178,0.0003439776482991874,0.0023601579014211893,-0.0004090217989869416,-0.014052580519539434,0.005465185021938532,0.005465185021938532,-0.00014052580519539434,5.4651850219385315e-05,5.4651850219385315e-05,0.00425688037648797,-0.0004083740059286356,75 +illusion_0.75L,sr,76,15.2,0.8866533041000366,0.5964643359184265,0.7528240084648132,0.7263292670249939,0.8860465288162231,0.3890237510204315,0.001959363929927349,2.671800939424429e-05,0.0024336730130016804,0.0003358320100232959,0.0023648368660360575,-0.00043214778997935355,-0.011505438030417925,0.00432305444344689,0.00432305444344689,-0.00011505438030417925,4.32305444344689e-05,4.32305444344689e-05,0.004272068850696087,-0.0006296037463471293,76 +illusion_0.75L,sr,77,15.4,0.8490622043609619,0.5962154865264893,0.7860327959060669,0.7347886562347412,0.92753005027771,0.4095855951309204,0.001957368804141879,1.95368702406995e-05,0.002419705269858241,0.0003257308853790164,0.002369267400354147,-0.00045054685324430466,-0.0077090615300099965,0.002348294404452979,0.002348294404452979,-7.709061530009997e-05,2.3482944044529788e-05,2.3482944044529788e-05,0.004284536466002464,-0.0008235537097789347,77 +illusion_0.75L,sr,78,15.6,0.8184185028076172,0.5779340267181396,0.8151519298553467,0.7475373148918152,0.9688687920570374,0.4273620545864105,0.0019536525942385197,1.1866830391227268e-05,0.0024029589258134365,0.0003133023565169424,0.002371517475694418,-0.00046320405090227723,-0.0057312856348705615,0.001781843721489814,0.001781843721489814,-5.7312856348705613e-05,1.781843721489814e-05,1.781843721489814e-05,0.004293113015592098,-0.000981337740086019,78 +illusion_0.75L,sr,79,15.8,0.7883287072181702,0.5538148880004883,0.8410215973854065,0.7619355916976929,1.0103836059570312,0.44258221983909607,0.001950832549482584,4.806666765944101e-06,0.002387415384873748,0.0002992829540744424,0.0023751892149448395,-0.00046975951408967376,-0.004216557391762667,0.001587303118637435,0.001587303118637435,-4.2165573917626666e-05,1.587303118637435e-05,1.587303118637435e-05,0.004303110297769308,-0.001095808343961835,79 +illusion_0.75L,sr,80,16.0,0.755422830581665,0.5268856287002563,0.8637174367904663,0.773824155330658,1.0524064302444458,0.4553831219673157,0.0019514604937285185,-1.873513383543468e-06,0.0023764728102833033,0.0002840280067175627,0.0023833378218114376,-0.00046987796667963266,-0.0012428580969348728,0.00032355254346995,0.00032355254346995,-1.2428580969348728e-05,3.2355254346995e-06,3.2355254346995e-06,0.004317091777920723,-0.0011619804427027702,80 +illusion_0.75L,sr,81,16.2,0.7193898558616638,0.4943135976791382,0.8824225068092346,0.7766489386558533,1.0953319072723389,0.4658002555370331,0.001956499880179763,-8.835769222059753e-06,0.002371403621509671,0.0002683715138118714,0.0023967870511114597,-0.00046457917778752744,0.0024019746815178056,-0.0014430038008259169,-0.0014430038008259169,2.4019746815178056e-05,-1.4430038008259169e-05,-1.4430038008259169e-05,0.0043295822106301785,-0.0011772552970796824,81 +illusion_0.75L,sr,82,16.4,0.6817111968994141,0.4515308141708374,0.8954489231109619,0.7621068358421326,1.1395173072814941,0.4737274646759033,0.0019634151831269264,-1.580825846758671e-05,0.0023703891783952713,0.0002536772517487407,0.002413240261375904,-0.00045548565685749054,0.004941358258008649,-0.0024192790085812276,-0.0024192790085812276,4.941358258008649e-05,-2.4192790085812277e-05,-2.4192790085812277e-05,0.004332154523581266,-0.0011414313921704888,82 +illusion_0.75L,sr,83,16.6,0.6447682976722717,0.39477208256721497,0.9008268117904663,0.723124623298645,1.1852059364318848,0.4788210690021515,0.001968969823792577,-2.1789262973470613e-05,0.002369253197684884,0.0002417121868347749,0.0024282517842948437,-0.00044381272164173424,0.0064999494436658025,-0.002720856366150791,-0.002720856366150791,6.499949443665803e-05,-2.7208563661507908e-05,-2.7208563661507908e-05,0.004323046654462814,-0.0010565404081717134,83 +illusion_0.75L,sr,84,16.8,0.6112213134765625,0.3224012851715088,0.8970694541931152,0.6573247313499451,1.23222815990448,0.4803018271923065,0.001971410820260644,-2.6634323148755357e-05,0.002365939551964402,0.00023400831560138613,0.0024395848158746958,-0.0004307704803068191,0.00889975811704459,-0.0037094719057198734,-0.0037094719057198734,8.89975811704459e-05,-3.709471905719873e-05,-3.709471905719873e-05,0.004309957846999168,-0.0009265808621421456,84 +illusion_0.75L,sr,85,17.0,0.5837637186050415,0.23552446067333221,0.8837564587593079,0.5671320557594299,1.2797693014144897,0.4765302240848541,0.0019725312013179064,-3.1346808100352064e-05,0.0023622328881174326,0.0002306872484041378,0.00244874507188797,-0.00041707203490659595,0.012274007752384672,-0.005492546672439015,-0.005492546672439015,0.00012274007752384672,-5.4925466724390154e-05,-5.4925466724390154e-05,0.0043023559264838696,-0.0007572299218736589,85 +illusion_0.75L,sr,86,17.2,0.5649199485778809,0.1379210352897644,0.8613158464431763,0.455423504114151,1.325783371925354,0.4644870460033417,0.0019720818381756544,-3.547687083482742e-05,0.0023584149312227964,0.00023209302162285894,0.0024556464049965143,-0.00040406984044238925,0.014296501773010492,-0.0063619070764574515,-0.0063619070764574515,0.00014296501773010493,-6.361907076457451e-05,-6.361907076457451e-05,0.0043017142452299595,-0.0005555875250138342,86 +illusion_0.75L,sr,87,17.4,0.5571096539497375,0.03583459183573723,0.8311254978179932,0.32176968455314636,1.3663655519485474,0.43925079703330994,0.001971972407773137,-3.887254206347279e-05,0.0023559723049402237,0.00023824510572012514,0.0024616271257400513,-0.0003921225434169173,0.015559967369440292,-0.006774215840706435,-0.006774215840706435,0.00015559967369440292,-6.774215840706435e-05,-6.774215840706435e-05,0.004300643689930439,-0.0003299686941318214,87 +illusion_0.75L,sr,88,17.6,0.5627855658531189,-0.062270473688840866,0.7963017225265503,0.16467729210853577,1.395664930343628,0.3941820561885834,0.0019699367694556713,-4.084779357071966e-05,0.0023523918353021145,0.00024964637123048306,0.0024639989715069532,-0.00038178067188709974,0.016242689347511954,-0.006868668389174777,-0.006868668389174777,0.00016242689347511954,-6.868668389174777e-05,-6.868668389174777e-05,0.00429190369322896,-8.971420174930245e-05,88 +illusion_0.75L,sr,89,17.8,0.5839122533798218,-0.14675450325012207,0.7617865800857544,-0.012725739739835262,1.4066277742385864,0.32197460532188416,0.0019651688635349274,-4.192320193396881e-05,0.002346348948776722,0.0002657382283359766,0.002461361698806286,-0.00037325744051486254,0.01760105913318108,-0.007583747685931452,-0.007583747685931452,0.0001760105913318108,-7.583747685931453e-05,-7.583747685931453e-05,0.004277124535292387,0.00015503856411669403,89 +illusion_0.75L,sr,90,18.0,0.6199930906295776,-0.21061153709888458,0.7328324913978577,-0.20006729662418365,1.392055630683899,0.21673554182052612,0.001959519926458597,-4.257688851794228e-05,0.002340259263291955,0.00028536777244880795,0.0024559786543250084,-0.0003666776174213737,0.018491240644139012,-0.008076512383834306,-0.008076512383834306,0.00018491240644139011,-8.076512383834305e-05,-8.076512383834305e-05,0.004265474621206522,0.00039368137368001044,90 +illusion_0.75L,sr,91,18.2,0.6663534641265869,-0.25447148084640503,0.7139019966125488,-0.380208283662796,1.3469957113265991,0.07852257043123245,0.0019565036054700613,-4.219039692543447e-05,0.002338050864636898,0.00030688391416333616,0.002451722975820303,-0.00036113892565481365,0.0177870861641614,-0.007520850009547719,-0.007520850009547719,0.00017787086164161402,-7.52085000954772e-05,-7.52085000954772e-05,0.004263981245458126,0.0006155874580144882,91 +illusion_0.75L,sr,92,18.4,0.7159980535507202,-0.2861867845058441,0.7089841365814209,-0.5300249457359314,1.2738041877746582,-0.0800488069653511,0.0019572670571506023,-4.0567083487985656e-05,0.0023409253917634487,0.0003297650837339461,0.0024499609135091305,-0.00035603801370598376,0.01671521026534982,-0.006827343346664336,-0.006827343346664336,0.0001671521026534982,-6.827343346664336e-05,-6.827343346664336e-05,0.004270609002560377,0.0008106737514026463,92 +illusion_0.75L,sr,93,18.6,0.7640628814697266,-0.313594251871109,0.7205715775489807,-0.6276603937149048,1.1844069957733154,-0.2340206354856491,0.0019598091021180153,-3.7634108593920246e-05,0.002346951747313142,0.0003529400273691863,0.0024488838389515877,-0.00035083331749774516,0.01583192218127054,-0.00639972596434954,-0.00639972596434954,0.00015831922181270538,-6.39972596434954e-05,-6.39972596434954e-05,0.00427780719473958,0.0009700104128569365,93 +illusion_0.75L,sr,94,18.8,0.8095109462738037,-0.3393784463405609,0.7462029457092285,-0.6696165204048157,1.0944212675094604,-0.3575142025947571,0.0019618000369518995,-3.4420430893078446e-05,0.00235293828882277,0.0003756839723791927,0.0024455662351101637,-0.0003459271101746708,0.015399449879212617,-0.006426117128876475,-0.006426117128876475,0.00015399449879212616,-6.426117128876475e-05,-6.426117128876475e-05,0.004282041918486357,0.00108638487290591,94 +illusion_0.75L,sr,95,19.0,0.8530789017677307,-0.36296147108078003,0.7780287265777588,-0.6769059896469116,1.0158162117004395,-0.43568283319473267,0.0019612156320363283,-3.0625938961748034e-05,0.0023562107235193253,0.0003966318035963923,0.002437539864331484,-0.0003406595205888152,0.013536568634317403,-0.005501110793402,-0.005501110793402,0.00013536568634317403,-5.5011107934020004e-05,-5.5011107934020004e-05,0.004287917632609606,0.001154729281552136,95 +illusion_0.75L,sr,96,19.2,0.895496666431427,-0.3837108612060547,0.8084813952445984,-0.675687849521637,0.9539273977279663,-0.46931323409080505,0.0019599192310124636,-2.5944169465219602e-05,0.0023591674398630857,0.0004149735614191741,0.002427606610581279,-0.0003344314463902265,0.011051046865983322,-0.004212541343845681,-0.004212541343845681,0.00011051046865983322,-4.212541343845681e-05,-4.212541343845681e-05,0.004301857203245163,0.0011723487405106425,96 +illusion_0.75L,sr,97,19.4,0.9371540546417236,-0.401647686958313,0.8345701694488525,-0.6787852644920349,0.9071764945983887,-0.4712364077568054,0.0019580309744924307,-2.03561157832155e-05,0.002361769787967205,0.0004296522820368409,0.0024161571636795998,-0.0003264547267463058,0.008944089185485136,-0.003281787881212417,-0.003281787881212417,8.944089185485136e-05,-3.281787881212417e-05,-3.281787881212417e-05,0.004322571214288473,0.0011389366118237376,97 +illusion_0.75L,sr,98,19.6,0.9783384203910828,-0.417027086019516,0.8565735816955566,-0.6876915693283081,0.8695356249809265,-0.45679938793182373,0.0019573646131902933,-1.4830132386123296e-05,0.0023656415287405252,0.0004400657780934125,0.0024052364751696587,-0.00031684129498898983,0.007647051475445963,-0.00300718430649655,-0.00300718430649655,7.647051475445963e-05,-3.00718430649655e-05,-3.00718430649655e-05,0.0043395934626460075,0.0010564166586846113,98 +illusion_0.75L,sr,99,19.8,1.0193111896514893,-0.4300605356693268,0.8752682209014893,-0.7002556324005127,0.8346579074859619,-0.43580082058906555,0.0019563762471079826,-9.31964041228639e-06,0.0023695111740380526,0.0004458931798581034,0.0023938703816384077,-0.0003060684248339385,0.005545447277676786,-0.002173192229823661,-0.002173192229823661,5.5454472776767864e-05,-2.173192229823661e-05,-2.173192229823661e-05,0.004342196509242058,0.0009286822751164436,99 +illusion_0.75L,sr,100,20.0,1.0604065656661987,-0.44086116552352905,0.8908575177192688,-0.7126674652099609,0.7986857891082764,-0.41093674302101135,0.001953104161657393,-3.569175532902591e-06,0.002370595233514905,0.0004476612084545195,0.002379701239988208,-0.00029483335674740374,0.003006985613047051,-0.00103747557442313,-0.00103747557442313,3.006985613047051e-05,-1.03747557442313e-05,-1.03747557442313e-05,0.004329230170696974,0.0007613134803250432,100 +illusion_0.75L,sr,101,20.2,1.102017879486084,-0.4494178891181946,0.9026979804039001,-0.7185840010643005,0.7605519890785217,-0.3804857134819031,0.0019501085625961423,2.1653254407283384e-06,0.0023725852370262146,0.0004455050511751324,0.0023667586501687765,-0.0002832860918715596,0.000947997909410336,-0.0002575026304994024,-0.0002575026304994024,9.47997909410336e-06,-2.575026304994024e-06,-2.575026304994024e-06,0.0043093012645840645,0.0005613267421722412,101 +illusion_0.75L,sr,102,20.4,1.1445550918579102,-0.4555767774581909,0.9093180894851685,-0.7093160152435303,0.7211816906929016,-0.34129852056503296,0.0019494466250762343,7.554270723630907e-06,0.002377275610342622,0.000439709605416283,0.0023571159690618515,-0.0002719235490076244,-0.0008511353894106472,0.0003457727813995395,0.0003457727813995395,-8.511353894106472e-06,3.4577278139953954e-06,3.4577278139953954e-06,0.004291526973247528,0.0003369711630512029,102 +illusion_0.75L,sr,103,20.6,1.188337802886963,-0.4589846730232239,0.9088514447212219,-0.6764540076255798,0.6827476620674133,-0.2907634973526001,0.0019526768010109663,1.248305579792941e-05,0.00238665915094316,0.00043112735147587955,0.0023530321195721626,-0.0002617795253172517,-0.0028161057534390275,0.0011010402500562337,0.0011010402500562337,-2.8161057534390274e-05,1.1010402500562337e-05,1.1010402500562337e-05,0.004277484491467476,9.754252096172422e-05,103 +illusion_0.75L,sr,104,20.8,1.2334691286087036,-0.4589391350746155,0.8998619318008423,-0.6157480478286743,0.6482179760932922,-0.2280004322528839,0.001958094770088792,1.6930647689150646e-05,0.0023992108181118965,0.0004207323945593089,0.00235324096865952,-0.0002538886619731784,-0.004940460465893522,0.0020165048429259327,0.0020165048429259327,-4.940460465893522e-05,2.016504842925933e-05,2.016504842925933e-05,0.0042631374672055244,-0.00014684362395200878,104 +illusion_0.75L,sr,105,21.0,1.2795071601867676,-0.454113245010376,0.8817808032035828,-0.5283870100975037,0.6209748983383179,-0.15453115105628967,0.001962748821824789,2.089160079776775e-05,0.002410729182884097,0.00041014686576090753,0.0023537450470030308,-0.000249572069151327,-0.007031161026736732,0.0029619144798612197,0.0029619144798612197,-7.031161026736732e-05,2.9619144798612196e-05,2.9619144798612196e-05,0.004247708711773157,-0.0003855770919471979,105 +illusion_0.75L,sr,106,21.2,1.3248573541641235,-0.44210219383239746,0.8546989560127258,-0.41754981875419617,0.6044337749481201,-0.0745600014925003,0.0019645309075713158,2.4493307137163356e-05,0.002418601419776678,0.00040028695366345346,0.0023521347902715206,-0.0002492930507287383,-0.008913173066582507,0.0038176629096438666,0.0038176629096438666,-8.913173066582507e-05,3.817662909643867e-05,3.817662909643867e-05,0.004238303285092115,-0.0006080058519728482,106 +illusion_0.75L,sr,107,21.4,1.3663055896759033,-0.4190039336681366,0.819638729095459,-0.2842869460582733,0.6017800569534302,0.005298770498484373,0.0019641907420009375,2.744600897131022e-05,0.0024232433643192053,0.00039169794763438404,0.0023490909952670336,-0.00025323423324152827,-0.010137857866455352,0.00426159625696073,0.00426159625696073,-0.00010137857866455352,4.26159625696073e-05,4.26159625696073e-05,0.004244087729603052,-0.0008040002430789173,107 +illusion_0.75L,sr,108,21.6,1.398708462715149,-0.37934520840644836,0.7794159054756165,-0.1284283846616745,0.6149627566337585,0.07747629284858704,0.0019626838620752096,2.9578786779893562e-05,0.0024256203323602676,0.0003842699225060642,0.0023457310162484646,-0.0002611503005027771,-0.011061428475506119,0.004570296886905037,0.004570296886905037,-0.00011061428475506119,4.570296886905037e-05,4.570296886905037e-05,0.004266131203621626,-0.0009645655518397689,108 +illusion_0.75L,sr,109,21.8,1.415248155593872,-0.3166906237602234,0.7389514446258545,0.046388477087020874,0.6429228186607361,0.13666106760501862,0.001961248926818371,3.089802703470923e-05,0.0024264806415885687,0.00037809088826179504,0.0023429514840245247,-0.00027272303123027086,-0.011897889999182155,0.004909581007977913,0.004909581007977913,-0.00011897889999182156,4.909581007977913e-05,4.909581007977913e-05,0.00429448951035738,-0.0010824102209880948,109 +illusion_0.75L,sr,110,22.0,1.4081653356552124,-0.22510641813278198,0.7043786644935608,0.22898440062999725,0.6807909607887268,0.18301209807395935,0.0019589366856962442,3.149855547235347e-05,0.0024251386057585478,0.0003731168108060956,0.002340073697268963,-0.0002872685145121068,-0.012498602929854455,0.00517666468854016,0.00517666468854016,-0.00012498602929854455,5.17666468854016e-05,5.17666468854016e-05,0.0043162815272808075,-0.0011523779248818755,110 +illusion_0.75L,sr,111,22.2,1.3704743385314941,-0.102428138256073,0.682055652141571,0.39999186992645264,0.7221084833145142,0.2213551104068756,0.0019538728520274162,3.1186154956230894e-05,0.0024185748770833015,0.0003695088380482048,0.0023341502528637648,-0.0003044399491045624,-0.012661420883973108,0.005222266085014207,0.005222266085014207,-0.0001266142088397311,5.2222660850142074e-05,5.2222660850142074e-05,0.004326277878135443,-0.0011716809822246432,111 +illusion_0.75L,sr,112,22.4,1.300718069076538,0.0436658039689064,0.6777024269104004,0.5347963571548462,0.7626623511314392,0.25631439685821533,0.0019482173956930637,3.0642349884146824e-05,0.0024099729489535093,0.00036615095450542867,0.0023283131886273623,-0.0003227835113648325,-0.01272159650779986,0.005298038275013475,0.005298038275013475,-0.0001272159650779986,5.298038275013475e-05,5.298038275013475e-05,0.004328808281570673,-0.0011399217182770371,112 +illusion_0.75L,sr,113,22.6,1.2078019380569458,0.19251589477062225,0.6933766007423401,0.6150445342063904,0.8016313910484314,0.28909623622894287,0.0019446336664259434,2.8843420295743272e-05,0.0024021961726248264,0.00036260622437112033,0.002325408859178424,-0.00034130431595258415,-0.011319122130915876,0.004394835349034981,0.004394835349034981,-0.00011319122130915876,4.394835349034981e-05,4.394835349034981e-05,0.0043297018855810165,-0.0010589387966319919,113 +illusion_0.75L,sr,114,22.8,1.1084481477737427,0.3180704712867737,0.7238434553146362,0.6447902917861938,0.8397786021232605,0.31888315081596375,0.0019445189973339438,2.625197339511942e-05,0.0023970461916178465,0.00035812571877613664,0.0023269676603376865,-0.0003587768296711147,-0.010582983214782946,0.004087638017292082,0.004087638017292082,-0.00010582983214782946,4.087638017292082e-05,4.087638017292082e-05,0.0043281326070427895,-0.0009325520950369537,114 +illusion_0.75L,sr,115,23.0,1.018640398979187,0.40206483006477356,0.7588515281677246,0.6486999988555908,0.8777801990509033,0.34510403871536255,0.0019475673325359821,2.3144275473896414e-05,0.0023950436152517796,0.0003526473883539438,0.0023333709686994553,-0.0003747495647985488,-0.009805861650432443,0.0038396800700004553,0.0038396800700004553,-9.805861650432443e-05,3.839680070000455e-05,3.839680070000455e-05,0.004317938350141048,-0.0007662828429602087,115 +illusion_0.75L,sr,116,23.2,0.9472984075546265,0.44153285026550293,0.790666937828064,0.6496181488037109,0.9159325361251831,0.3678642213344574,0.0019504822557792068,1.9639777747215703e-05,0.0023918640799820423,0.0003463594475761056,0.002340061357244849,-0.00038891847361810505,-0.008544569231522137,0.0033161356332746875,0.0033161356332746875,-8.544569231522137e-05,3.3161356332746875e-05,3.3161356332746875e-05,0.004296679049730301,-0.0005671066464856267,116 +illusion_0.75L,sr,117,23.4,0.8946454524993896,0.4468050003051758,0.81718909740448,0.6559693217277527,0.9543043375015259,0.38751673698425293,0.001951234764419496,1.550998058519326e-05,0.00238542421720922,0.0003394134109839797,0.002344643697142601,-0.0004011288983747363,-0.006765357154188641,0.0024806564152353577,0.0024806564152353577,-6.765357154188641e-05,2.480656415235358e-05,2.480656415235358e-05,0.004271471872925758,-0.00034325156593695283,117 +illusion_0.75L,sr,118,23.6,0.8547742962837219,0.4326803982257843,0.8392107486724854,0.6674996018409729,0.9929699897766113,0.4043641984462738,0.001950814388692379,1.0868491699511651e-05,0.002377329394221306,0.0003314900095574558,0.0023483778350055218,-0.00041076846537180245,-0.005224692511771198,0.0018779490072770091,0.0018779490072770091,-5.224692511771198e-05,1.8779490072770093e-05,1.8779490072770093e-05,0.004254178609699011,-0.00010401237523183227,118 +illusion_0.75L,sr,119,23.8,0.8204212188720703,0.40986308455467224,0.8576256632804871,0.681692898273468,1.0320696830749512,0.4186115562915802,0.0019495397573336959,6.138325716165127e-06,0.0023678496945649385,0.00032268979703076184,0.002351240022107959,-0.0004173284105490893,-0.0040035977678243885,0.0015511298100342845,0.0015511298100342845,-4.0035977678243883e-05,1.5511298100342846e-05,1.5511298100342846e-05,0.004250772297382355,0.00014047697186470032,119 +illusion_0.75L,sr,120,24.0,0.7865390181541443,0.3823326528072357,0.8725711703300476,0.6944336891174316,1.071762204170227,0.4303506910800934,0.0019492588471621275,1.5940712501105736e-06,0.0023594426456838846,0.0003133077407255769,0.0023554284125566483,-0.00042058355757035315,-0.0024971199396357033,0.0010380985032311957,0.0010380985032311957,-2.4971199396357033e-05,1.0380985032311957e-05,1.0380985032311957e-05,0.004256573971360922,0.000379570439690724,120 +illusion_0.75L,sr,121,24.2,0.7511964440345764,0.34939271211624146,0.8833544254302979,0.6991021037101746,1.1122292280197144,0.4395409822463989,0.001948551507666707,-3.076790108025307e-06,0.0023506905417889357,0.0003036949783563614,0.002359248697757721,-0.0004208294558338821,-0.0003752590448031557,8.194740078548875e-05,8.194740078548875e-05,-3.7525904480315574e-06,8.194740078548875e-07,8.194740078548875e-07,0.00426256749778986,0.0006025657639838755,121 +illusion_0.75L,sr,122,24.4,0.7148829102516174,0.3086319863796234,0.8885596990585327,0.6871373057365417,1.1536284685134888,0.445999413728714,0.0019460439216345549,-7.952638952701818e-06,0.0023398688063025475,0.00029458265635184944,0.0023606244940310717,-0.00041894891182892025,0.0014641710172990851,-0.0006662814099771463,-0.0006662814099771463,1.4641710172990852e-05,-6.662814099771464e-06,-6.662814099771464e-06,0.004265558440238237,0.0007992724422365427,122 +illusion_0.75L,sr,123,24.6,0.6797095537185669,0.2580548822879791,0.8866098523139954,0.6508795022964478,1.1961112022399902,0.4493320882320404,0.0019427002407610416,-1.2477917152864393e-05,0.0023291436955332756,0.0002862851833924651,0.0023614568635821342,-0.0004149003652855754,0.00253804791700267,-0.0008661561749042264,-0.0008661561749042264,2.53804791700267e-05,-8.661561749042264e-06,-8.661561749042264e-06,0.004270726349204779,0.0009606286184862256,123 +illusion_0.75L,sr,124,24.8,0.6487321257591248,0.19729629158973694,0.8763512969017029,0.5871474742889404,1.239601492881775,0.44884243607521057,0.0019409821834415197,-1.6278252587653697e-05,0.002320940373465419,0.00027946842601522803,0.0023640128783881664,-0.00040898993029259145,0.003751115037128102,-0.001200275955093793,-0.001200275955093793,3.751115037128102e-05,-1.200275955093793e-05,-1.200275955093793e-05,0.004283971153199673,0.001079274108633399,124 +illusion_0.75L,sr,125,25.0,0.6255401372909546,0.1283198893070221,0.8573508262634277,0.4979459047317505,1.283535361289978,0.443266898393631,0.0019425529753789306,-1.9772893210756592e-05,0.002317412756383419,0.0002743996155913919,0.0023702732287347317,-0.0004017135070171207,0.005731875131609519,-0.002141550697595262,-0.002141550697595262,5.7318751316095196e-05,-2.1415506975952617e-05,-2.1415506975952617e-05,0.004303178749978542,0.0011499872198328376,125 +illusion_0.75L,sr,126,25.2,0.6138198971748352,0.055536899715662,0.8297526836395264,0.38689735531806946,1.3264541625976562,0.4304955005645752,0.0019468996906653047,-2.320406201761216e-05,0.0023185235913842916,0.0002715971786528826,0.0023799240589141846,-0.00039409156306646764,0.007456586187928973,-0.0029406876313369072,-0.0029406876313369072,7.456586187928973e-05,-2.9406876313369074e-05,-2.9406876313369074e-05,0.004318722058087587,0.00116992206312716,126 +illusion_0.75L,sr,127,25.4,0.6165409684181213,-0.014868774451315403,0.794471263885498,0.25542107224464417,1.365545392036438,0.40726929903030396,0.0019510160200297832,-2.610018964332994e-05,0.0023205929901450872,0.0002719857729971409,0.0023890421725809574,-0.00038712163222953677,0.008172558676467448,-0.0030540612789933252,-0.0030540612789933252,8.172558676467448e-05,-3.054061278993325e-05,-3.054061278993325e-05,0.004322815220803022,0.001138634397648275,127 +illusion_0.75L,sr,128,25.6,0.6343692541122437,-0.07706588506698608,0.7539116144180298,0.10356050729751587,1.3962815999984741,0.36918342113494873,0.0019524279050529003,-2.7891266654478386e-05,0.0023204106837511063,0.00027624156791716814,0.002394340466707945,-0.0003812299983110279,0.008631130387573786,-0.003049657016613902,-0.003049657016613902,8.631130387573787e-05,-3.049657016613902e-05,-3.049657016613902e-05,0.004317114595323801,0.0010579300578683615,128 +illusion_0.75L,sr,129,25.8,0.6644730567932129,-0.12860095500946045,0.7126386761665344,-0.06539412587881088,1.412810206413269,0.31115058064460754,0.0019521145150065422,-2.903861241065897e-05,0.0023189643397927284,0.0002840006782207638,0.0023967621382325888,-0.00037635263288393617,0.009938908886553785,-0.0037502996877694372,-0.0037502996877694372,9.938908886553785e-05,-3.750299687769437e-05,-3.750299687769437e-05,0.004309931304305792,0.000931612157728523,129 +illusion_0.75L,sr,130,26.0,0.7011903524398804,-0.17169611155986786,0.6768869161605835,-0.24098050594329834,1.4084115028381348,0.22834989428520203,0.0019500857451930642,-2.9990887924213894e-05,0.002316253026947379,0.00029463876853697,0.0023961213883012533,-0.00037266925210133195,0.011102888577125679,-0.004423166195649121,-0.004423166195649121,0.00011102888577125679,-4.423166195649121e-05,-4.423166195649121e-05,0.004306346643716097,0.0007652023923583329,130 +illusion_0.75L,sr,131,26.2,0.7391920685768127,-0.21059443056583405,0.653725802898407,-0.4044734239578247,1.3763514757156372,0.11820622533559799,0.0019484070362523198,-3.030675907211844e-05,0.0023143605794757605,0.0003072308609262109,0.002394396346062422,-0.0003697346255648881,0.011027972165813436,-0.004266716632699938,-0.004266716632699938,0.00011027972165813437,-4.266716632699938e-05,-4.266716632699938e-05,0.00430266372859478,0.0005656927824020386,131 +illusion_0.75L,sr,132,26.4,0.7761132121086121,-0.24755524098873138,0.6496036052703857,-0.5321639180183411,1.3129816055297852,-0.01524089090526104,0.0019463784992694855,-2.970862260553986e-05,0.002312708180397749,0.00032147509045898914,0.0023910747841000557,-0.00036714004818350077,0.010528750032771053,-0.0038890419542137802,-0.0038890419542137802,0.00010528750032771053,-3.88904195421378e-05,-3.88904195421378e-05,0.00429161824285984,0.0003413430822547525,132 +illusion_0.75L,sr,133,26.6,0.8121086955070496,-0.28214481472969055,0.6666501760482788,-0.6072860360145569,1.2230125665664673,-0.15694357454776764,0.0019422386540099978,-2.8186441340949386e-05,0.002308489056304097,0.0003368178440723568,0.0023834421299397945,-0.00036457483656704426,0.010239148450398493,-0.0037561068233684385,-0.0037561068233684385,0.00010239148450398494,-3.7561068233684384e-05,-3.7561068233684384e-05,0.004272329621016979,0.00010149206354981288,133 +illusion_0.75L,sr,134,26.8,0.8479570746421814,-0.3133075535297394,0.6989403367042542,-0.635158896446228,1.1205849647521973,-0.2838578224182129,0.0019371607340872288,-2.6281471946276724e-05,0.002303995890542865,0.00035215888055972755,0.002373885130509734,-0.0003616293251980096,0.010264096417890986,-0.00394107905553933,-0.00394107905553933,0.00010264096417890987,-3.94107905553933e-05,-3.94107905553933e-05,0.004253413062542677,-0.00014367327094078064,134 +illusion_0.75L,sr,135,27.0,0.884041428565979,-0.3407204747200012,0.7353368997573853,-0.6399925351142883,1.022753357887268,-0.3757801949977875,0.0019334341632202268,-2.406575731583871e-05,0.0023014377802610397,0.0003662550006993115,0.002364699263125658,-0.000357750803232193,0.009572081953646248,-0.003675876830565978,-0.003675876830565978,9.572081953646248e-05,-3.6758768305659784e-05,-3.6758768305659784e-05,0.004245383199304342,-0.0003834486415144056,135 +illusion_0.75L,sr,136,27.2,0.9205041527748108,-0.3646160960197449,0.7677897810935974,-0.6430181264877319,0.9417452216148376,-0.4248831868171692,0.0019330872455611825,-2.125914761563763e-05,0.0023032051976770163,0.00037853975663892925,0.0023584405425935984,-0.00035253100213594735,0.008093264216482772,-0.0029045926128074134,-0.0029045926128074134,8.093264216482772e-05,-2.9045926128074136e-05,-2.9045926128074136e-05,0.004250668920576572,-0.0006070726667530835,136 +illusion_0.75L,sr,137,27.4,0.9574669003486633,-0.3853384852409363,0.7944279313087463,-0.6514232754707336,0.8811395168304443,-0.43714389204978943,0.0019363737665116787,-1.747956412145868e-05,0.0023101072292774916,0.00038883552770130336,0.002356212353333831,-0.0003456058620940894,0.006557200888986223,-0.0021591477343956625,-0.0021591477343956625,6.557200888986224e-05,-2.1591477343956626e-05,-2.1591477343956626e-05,0.004262279253453016,-0.0008042993140406907,137 +illusion_0.75L,sr,138,27.6,0.9951258897781372,-0.40315884351730347,0.8163448572158813,-0.6644322276115417,0.836869478225708,-0.425801545381546,0.0019398134900256991,-1.3434259017230943e-05,0.002317724283784628,0.00039736737380735576,0.0023538535460829735,-0.00033772026654332876,0.006021473631870146,-0.0022079763422900613,-0.0022079763422900613,6.021473631870146e-05,-2.2079763422900613e-05,-2.2079763422900613e-05,0.0042722816579043865,-0.0009660187060944736,138 +illusion_0.75L,sr,139,27.8,1.0335781574249268,-0.4182589054107666,0.8344733715057373,-0.679269015789032,0.8015077114105225,-0.402574360370636,0.001941859838552773,-9.599454642739147e-06,0.0023240370210260153,0.00040386998443864286,0.002349546179175377,-0.00032949031447060406,0.0052620010989776825,-0.0021324445596220265,-0.0021324445596220265,5.2620010989776825e-05,-2.1324445596220266e-05,-2.1324445596220266e-05,0.004280176013708115,-0.0010848336387425661,139 +illusion_0.75L,sr,140,28.0,1.0729432106018066,-0.4306970536708832,0.8489962816238403,-0.6915991902351379,0.7688960433006287,-0.37325936555862427,0.0019421849865466356,-5.551584763452411e-06,0.002328709000721574,0.0004082714731339365,0.002343188039958477,-0.00032105983700603247,0.0034795634185874856,-0.0013311704402761814,-0.0013311704402761814,3.479563418587486e-05,-1.3311704402761814e-05,-1.3311704402761814e-05,0.004291605204343796,-0.0011554996017366648,140 +illusion_0.75L,sr,141,28.2,1.1133098602294922,-0.44040828943252563,0.8593019843101501,-0.694735050201416,0.7360044717788696,-0.3385259211063385,0.0019413306144997478,-9.528116606816184e-07,0.0023322629276663065,0.0004107345303054899,0.0023356389719992876,-0.00031241762917488813,0.001762530577753352,-0.0005983068396166382,-0.0005983068396166382,1.762530577753352e-05,-5.983068396166382e-06,-5.983068396166382e-06,0.004309208132326603,-0.0011751636629924178,141 +illusion_0.75L,sr,142,28.4,1.1547412872314453,-0.4471653401851654,0.8641855120658875,-0.6804216504096985,0.702660322189331,-0.29674455523490906,0.0019411006942391396,3.55806378138368e-06,0.0023364003282040358,0.00041113398037850857,0.002328909933567047,-0.0003036971320398152,0.0011162756311810839,-0.0006615549875277713,-0.0006615549875277713,1.1162756311810838e-05,-6.6155498752777135e-06,-6.6155498752777135e-06,0.004326635040342808,-0.001143390778452158,142 +illusion_0.75L,sr,143,28.6,1.1971691846847534,-0.4505671560764313,0.8622496128082275,-0.6417048573493958,0.6705774068832397,-0.24630172550678253,0.00194076681509614,7.416670996462926e-06,0.0023403428494930267,0.0004095644981134683,0.0023224144242703915,-0.0002956727403216064,0.000504603634634399,-0.0007388615566472859,-0.0007388615566472859,5.04603634634399e-06,-7.388615566472859e-06,-7.388615566472859e-06,0.004333213437348604,-0.0010620126267895103,143 +illusion_0.75L,sr,144,28.8,1.2402732372283936,-0.4498988091945648,0.8524564504623413,-0.576195478439331,0.6426210999488831,-0.18703433871269226,0.0019387792563065886,1.0899417247856036e-05,0.0023419014178216457,0.00040654640179127455,0.0023141212295740843,-0.0002891613985411823,-0.0010624050880810205,-8.816009239459403e-05,-8.816009239459403e-05,-1.0624050880810206e-05,-8.816009239459404e-07,-8.816009239459404e-07,0.004324445500969887,-0.0009348725434392691,144 +illusion_0.75L,sr,145,29.0,1.2833102941513062,-0.44395241141319275,0.8343715667724609,-0.4864847660064697,0.6223383545875549,-0.1209276020526886,0.0019351756200194359,1.4339125300466549e-05,0.0023418215569108725,0.00040247486322186887,0.0023049793671816587,-0.00028429029043763876,-0.0028699366398885345,0.0007691661867376618,0.0007691661867376618,-2.8699366398885347e-05,7.691661867376618e-06,7.691661867376618e-06,0.004306653048843145,-0.0007675446104258299,145 +illusion_0.75L,sr,146,29.2,1.324732780456543,-0.43078938126564026,0.8079671263694763,-0.37661221623420715,0.6133373379707336,-0.05222037434577942,0.0019329376518726349,1.7591728465049528e-05,0.0023428844287991524,0.0003975914150942117,0.0022979984059929848,-0.0002809802535921335,-0.004045029367759797,0.001196903933511892,0.001196903933511892,-4.045029367759797e-05,1.196903933511892e-05,1.196903933511892e-05,0.004290517885237932,-0.000567082257475704,146 +illusion_0.75L,sr,147,29.4,1.3618462085723877,-0.40757614374160767,0.7738128900527954,-0.24835175275802612,0.6182845234870911,0.013457512483000755,0.0019331407966092229,2.020912324951496e-05,0.0023463531397283077,0.0003921710012946278,0.002294605365023017,-0.00027964540640823543,-0.004676503436738068,0.0012719364311591166,0.0012719364311591166,-4.6765034367380676e-05,1.2719364311591167e-05,1.2719364311591167e-05,0.004280740395188332,-0.00034181104274466634,147 +illusion_0.75L,sr,148,29.6,1.3907558917999268,-0.37067168951034546,0.7339436411857605,-0.10169564187526703,0.6374242901802063,0.07129094004631042,0.001936763641424477,2.205415876233019e-05,0.002353783929720521,0.00038636598037555814,0.002296453807502985,-0.00028052038396708667,-0.005539763361446903,0.0015761897346326483,0.0015761897346326483,-5.539763361446904e-05,1.5761897346326484e-05,1.5761897346326484e-05,0.004273268859833479,-0.00010113600001204759,148 +illusion_0.75L,sr,149,29.8,1.406680941581726,-0.3160425126552582,0.6925144791603088,0.06098800152540207,0.6675649285316467,0.11991339921951294,0.00194039405323565,2.3476335627492517e-05,0.002360857557505369,0.0003812279610428959,0.0022993539460003376,-0.00028432183898985386,-0.0068290706672310825,0.002258197540046837,0.002258197540046837,-6.829070667231082e-05,2.258197540046837e-05,2.258197540046837e-05,0.004262732807546854,0.00014469395682681352,149 +illusion_0.75L,sr,150,30.0,1.4042134284973145,-0.23989839851856232,0.6555002331733704,0.23097935318946838,0.7031247615814209,0.16199003159999847,0.0019423504127189517,2.453910383337643e-05,0.0023651213850826025,0.000377026095520705,0.0023009665310382843,-0.0002909590839408338,-0.007704653401729454,0.0027027009399545193,0.0027027009399545193,-7.704653401729454e-05,2.7027009399545192e-05,2.7027009399545192e-05,0.0042510125786066055,0.00038492129533551633,150 +illusion_0.75L,sr,151,30.2,1.3775829076766968,-0.13962338864803314,0.6301426291465759,0.39159873127937317,0.7393926978111267,0.20127399265766144,0.0019421112956479192,2.5045674192369916e-05,0.0023661612067371607,0.0003739705425687134,0.0023009374272078276,-0.0003002947196364403,-0.007931961550392982,0.002741624113207816,0.002741624113207816,-7.931961550392982e-05,2.741624113207816e-05,2.741624113207816e-05,0.004246690776199102,0.0006087439251132309,151 +illusion_0.75L,sr,152,30.4,1.3221288919448853,-0.01655823178589344,0.6235410571098328,0.5205003619194031,0.7746533155441284,0.23924914002418518,0.0019401735626161098,2.485842014721129e-05,0.0023639865685254335,0.000371431844541803,0.002299320185557008,-0.00031157894409261644,-0.007862402620502813,0.0026379982580148134,0.0026379982580148134,-7.862402620502814e-05,2.6379982580148135e-05,2.6379982580148135e-05,0.004255807958543301,0.000805890653282404,152 +illusion_0.75L,sr,153,30.6,1.2388046979904175,0.11950285732746124,0.639028787612915,0.5999331474304199,0.8093879818916321,0.27500447630882263,0.0019387002103030682,2.3772190616000444e-05,0.002361077116802335,0.0003689834557007998,0.002298591658473015,-0.0003242204838898033,-0.007739915785460391,0.002574526165847864,0.002574526165847864,-7.739915785460391e-05,2.5745261658478638e-05,2.5745261658478638e-05,0.004274525213986635,0.0009672442683950067,153 +illusion_0.75L,sr,154,30.8,1.1376566886901855,0.24951602518558502,0.6716423630714417,0.6319806575775146,0.8443093299865723,0.3073473870754242,0.0019369847141206264,2.2313150111585855e-05,0.0023567872121930122,0.0003661905648186803,0.0022979595232754946,-0.0003373768995516002,-0.007990585695284415,0.0028664463486362743,0.0028664463486362743,-7.990585695284415e-05,2.8664463486362742e-05,2.8664463486362742e-05,0.004292297642678022,0.0010854192078113556,154 +illusion_0.75L,sr,155,31.0,1.0348118543624878,0.3524116575717926,0.7099401950836182,0.6388297080993652,0.8796587586402893,0.3359178304672241,0.0019338520942255855,2.057060191873461e-05,0.0023494285997003317,0.0003631889703683555,0.002295674756169319,-0.00035065202973783016,-0.007662115718028466,0.0028017430541971006,0.0028017430541971006,-7.662115718028467e-05,2.8017430541971005e-05,2.8017430541971005e-05,0.004302178509533405,0.0011552009964361787,155 +illusion_0.75L,sr,156,31.2,0.9450066089630127,0.4152733087539673,0.7445926666259766,0.6424989104270935,0.9154576063156128,0.3609122931957245,0.0019292617216706276,1.805847932700999e-05,0.0023397619370371103,0.00035942523390986025,0.0022923753131181,-0.00036315841134637594,-0.006625640143622512,0.0022820696297376,0.0022820696297376,-6.625640143622512e-05,2.2820696297376e-05,2.2820696297376e-05,0.004306729417294264,0.0011737841414287686,156 +illusion_0.75L,sr,157,31.4,0.8756974935531616,0.4385240972042084,0.7729094624519348,0.6513544321060181,0.9517676830291748,0.38264086842536926,0.0019257840467616916,1.5023458217910957e-05,0.002330382354557514,0.0003543325001373887,0.0022904551587998867,-0.0003743231063708663,-0.005996703917868884,0.0021271330552247135,0.0021271330552247135,-5.996703917868884e-05,2.1271330552247134e-05,2.1271330552247134e-05,0.004313030280172825,0.0011407959973439574,157 +illusion_0.75L,sr,158,31.6,0.8256296515464783,0.432888388633728,0.7958663105964661,0.6648297905921936,0.9887000322341919,0.4013512134552002,0.001925013493746519,1.161791351478314e-05,0.0023237240966409445,0.00034776650136336684,0.0022921101190149784,-0.000383606442483142,-0.005449771514531184,0.0020861693743451162,0.0020861693743451162,-5.449771514531184e-05,2.0861693743451163e-05,2.0861693743451163e-05,0.004322762601077557,0.0010581414680927992,158 +illusion_0.75L,sr,159,31.8,0.7880966067314148,0.4110797941684723,0.8147076368331909,0.6801123023033142,1.0264610052108765,0.41720783710479736,0.0019280679989606142,8.093486940197181e-06,0.002321447478607297,0.0003397917025722563,0.0022987693082541227,-0.00039055568049661815,-0.0048880142025400294,0.0020758792532813534,0.0020758792532813534,-4.88801420254003e-05,2.0758792532813536e-05,2.0758792532813536e-05,0.00432894192636013,0.0009297445067204535,159 +illusion_0.75L,sr,160,32.0,0.7559812664985657,0.3812412917613983,0.8299290537834167,0.6930790543556213,1.065273642539978,0.4302677810192108,0.0019318857230246067,4.489305865718052e-06,0.0023202381562441587,0.00033131189411506057,0.0023069349117577076,-0.0003957156732212752,-0.004003075681130938,0.0018567492053195769,0.0018567492053195769,-4.003075681130938e-05,1.856749205319577e-05,1.856749205319577e-05,0.004323208704590797,0.0007612616172991693,160 +illusion_0.75L,sr,161,32.2,0.7248584628105164,0.34586021304130554,0.8411803245544434,0.6974326372146606,1.1052511930465698,0.44046565890312195,0.0019346560584381223,6.473748612734198e-07,0.0023177331313490868,0.00032271657255478203,0.0023140462581068277,-0.0003992569399997592,-0.002881741811911691,0.0014840660665087716,0.0014840660665087716,-2.8817418119116907e-05,1.4840660665087716e-05,1.4840660665087716e-05,0.0043054320849478245,0.0005598256830126047,161 +illusion_0.75L,sr,162,32.4,0.6935107707977295,0.3041142523288727,0.8474854230880737,0.6852009296417236,1.1464118957519531,0.447594553232193,0.001935381442308426,-3.2284965527651366e-06,0.002313219243660569,0.0003145095251966268,0.002319089835509658,-0.00040155951865017414,-0.0020307283714278298,0.0013232431404530687,0.0013232431404530687,-2.0307283714278298e-05,1.3232431404530686e-05,1.3232431404530686e-05,0.0042846668511629105,0.0003338336537126452,162 +illusion_0.75L,sr,163,32.6,0.6630602478981018,0.25449538230895996,0.8476091623306274,0.6493040323257446,1.1886334419250488,0.451270192861557,0.001934929983690381,-6.943560492800316e-06,0.0023074985947459936,0.0003067681100219488,0.00232264818623662,-0.0004023483779747039,-0.001303583771967625,0.0012512307860976205,0.0012512307860976205,-1.3035837719676249e-05,1.2512307860976205e-05,1.2512307860976205e-05,0.004270360339432955,9.274937474401668e-05,163 +illusion_0.75L,sr,164,32.8,0.6360819339752197,0.19654497504234314,0.840556800365448,0.5868855714797974,1.231569766998291,0.4508424699306488,0.0019344742177054286,-1.0317424312233925e-05,0.002302125096321106,0.0002999602584168315,0.002326092217117548,-0.0004017198516521603,-0.0004987763929593624,0.0011081517257466866,0.0011081517257466866,-4.987763929593623e-06,1.1081517257466866e-05,1.1081517257466866e-05,0.004263774491846561,-0.00015313613403122872,164 +illusion_0.75L,sr,165,33.0,0.6159189343452454,0.13177518546581268,0.8257308006286621,0.5003179311752319,1.2744122743606567,0.4452539086341858,0.0019342404557392001,-1.3287673027662095e-05,0.002297372790053487,0.00029430139693431556,0.002329567912966013,-0.0003996648301836103,0.0005889743241848586,0.0007331368981320155,0.0007331368981320155,5.889743241848586e-06,7.331368981320155e-06,7.331368981320155e-06,0.004259183071553707,-0.00039304280653595924,165 +illusion_0.75L,sr,166,33.2,0.6061319708824158,0.06393466144800186,0.8028026819229126,0.39418357610702515,1.3156497478485107,0.43285325169563293,0.0019324853783473372,-1.608713500900194e-05,0.0022910425905138254,0.0002904319844674319,0.0023306969087570906,-0.0003970177785959095,0.001971569064835251,0.00011113137317306578,0.00011113137317306578,1.971569064835251e-05,1.1113137317306578e-06,1.1113137317306578e-06,0.004253040533512831,-0.0006161675555631518,166 +illusion_0.75L,sr,167,33.4,0.6096265912055969,-0.0016437917947769165,0.7718429565429688,0.2711013853549957,1.3528449535369873,0.4112723171710968,0.0019291025819256902,-1.8709466530708596e-05,0.0022837065625935793,0.0002882330445572734,0.002329851035028696,-0.00039387503056786954,0.003004598925965489,-0.0002896381027399711,-0.0002896381027399711,3.004598925965489e-05,-2.896381027399711e-06,-2.896381027399711e-06,0.004250074736773968,-0.0008122602594085038,167 +illusion_0.75L,sr,168,33.6,0.6271711587905884,-0.05997418239712715,0.7340794205665588,0.13107608258724213,1.3825596570968628,0.37750008702278137,0.0019262295681983232,-2.0677787688327953e-05,0.0022775304969400167,0.00028805338661186397,0.00232905987650156,-0.0003903180477209389,0.003518286028240413,-0.00035327425752309724,-0.00035327425752309724,3.518286028240413e-05,-3.5327425752309724e-06,-3.5327425752309724e-06,0.004258817993104458,-0.0009722463437356055,168 +illusion_0.75L,sr,169,33.8,0.6561198234558105,-0.10912152379751205,0.6927429437637329,-0.02496696636080742,1.4006489515304565,0.32827967405319214,0.0019254625076428056,-2.1916372134000994e-05,0.002274456899613142,0.0002897899830713868,0.0023302482441067696,-0.00038609610055573285,0.004372748300915337,-0.0007230539234685182,-0.0007230539234685182,4.372748300915337e-05,-7.230539234685182e-06,-7.230539234685182e-06,0.004281363915652037,-0.0010888022370636463,169 +illusion_0.75L,sr,170,34.0,0.6911635398864746,-0.15131022036075592,0.6532924771308899,-0.1908748596906662,1.4027769565582275,0.26061055064201355,0.0019282763823866844,-2.279145337524824e-05,0.002276467625051737,0.00029339498723857105,0.002335301833227277,-0.00038165520527400076,0.005708161238948871,-0.0015035938451036443,-0.0015035938451036443,5.708161238948871e-05,-1.5035938451036444e-05,-1.5035938451036444e-05,0.004309054929763079,-0.001156791695393622,170 +illusion_0.75L,sr,171,34.2,0.727303683757782,-0.19052667915821075,0.6229029297828674,-0.352904349565506,1.384409785270691,0.17219074070453644,0.0019316166872158647,-2.352836963837035e-05,0.002280054148286581,0.00029903053655289114,0.0023405735846608877,-0.0003776391677092761,0.006680616168071932,-0.0020749491742620696,-0.0020749491742620696,6.680616168071932e-05,-2.0749491742620697e-05,-2.0749491742620697e-05,0.004329311661422253,-0.0011734996223822236,171 +illusion_0.75L,sr,172,34.4,0.7623726725578308,-0.22881971299648285,0.6092973947525024,-0.4904854893684387,1.3408257961273193,0.06259992718696594,0.0019340130966156721,-2.3584314476465806e-05,0.0022831829264760017,0.00030697646434418857,0.0023439498618245125,-0.00037426312337629497,0.006698380357207767,-0.002005894959034915,-0.002005894959034915,6.698380357207767e-05,-2.0058949590349153e-05,-2.0058949590349153e-05,0.004336345009505749,-0.0011386508122086525,172 +illusion_0.75L,sr,173,34.6,0.7967193126678467,-0.26548218727111816,0.6178005933761597,-0.583442747592926,1.2696250677108765,-0.06340626627206802,0.0019339898135513067,-2.2791216906625777e-05,0.002284247661009431,0.0003170655982103199,0.00234391656704247,-0.000371294270735234,0.0068089239782225955,-0.002075643356570775,-0.002075643356570775,6.808923978222595e-05,-2.075643356570775e-05,-2.075643356570775e-05,0.004334232769906521,-0.0010542497038841248,173 +illusion_0.75L,sr,174,34.8,0.8312502503395081,-0.2990868091583252,0.6464341878890991,-0.6267727017402649,1.1753778457641602,-0.19261597096920013,0.0019325834000483155,-2.144529025827069e-05,0.0022838697768747807,0.0003285559359937906,0.00234114658087492,-0.00036840501707047224,0.007443435657383618,-0.002598849557378158,-0.002598849557378158,7.443435657383618e-05,-2.598849557378158e-05,-2.598849557378158e-05,0.004329643212258816,-0.0009243153617717326,174 +illusion_0.75L,sr,175,35.0,0.8663594126701355,-0.32898613810539246,0.684884250164032,-0.6377372145652771,1.0708553791046143,-0.30570441484451294,0.001931014470756054,-2.0050774764968082e-05,0.0022836874704807997,0.00034054488060064614,0.0023373086005449295,-0.0003653650055639446,0.008037379616810676,-0.0031551515632377083,-0.0031551515632377083,8.037379616810677e-05,-3.1551515632377084e-05,-3.1551515632377084e-05,0.00432319100946188,-0.0007545904372818768,175 +illusion_0.75L,sr,176,35.2,0.9020407199859619,-0.3552531898021698,0.7219070196151733,-0.640462338924408,0.9719763994216919,-0.3856668174266815,0.0019297098042443395,-1.8324995835428126e-05,0.002283900510519743,0.00035225896863266826,0.0023326193913817406,-0.0003617370093706995,0.007577612026802177,-0.0029931635865585587,-0.0029931635865585587,7.577612026802177e-05,-2.9931635865585587e-05,-2.9931635865585587e-05,0.004309643525630236,-0.0005522798164747655,176 +illusion_0.75L,sr,177,35.4,0.9382196664810181,-0.37817496061325073,0.7525022029876709,-0.6474746465682983,0.8906335234642029,-0.4259350597858429,0.001927353092469275,-1.568260631756857e-05,0.0022830406669527292,0.00036371435271576047,0.0023258209694176912,-0.00035742801264859736,0.006663235585107473,-0.0025554940112997686,-0.0025554940112997686,6.663235585107473e-05,-2.5554940112997686e-05,-2.5554940112997686e-05,0.004286581184715033,-0.0003258340584579855,177 +illusion_0.75L,sr,178,35.6,0.9749318957328796,-0.39801254868507385,0.7769244313240051,-0.6598101258277893,0.8303914666175842,-0.4320293664932251,0.0019233066122978926,-1.2678634448093362e-05,0.0022805039770901203,0.0003742598055396229,0.0023165736347436905,-0.0003520201425999403,0.006694713398412148,-0.0028684672351764195,-0.0028684672351764195,6.694713398412148e-05,-2.8684672351764198e-05,-2.8684672351764198e-05,0.004260983318090439,-8.474913192912936e-05,178 +illusion_0.75L,sr,179,35.8,1.0123200416564941,-0.41494259238243103,0.7965663075447083,-0.6748555898666382,0.7870641946792603,-0.4158797562122345,0.0019199922680854797,-9.67194137047045e-06,0.002278889762237668,0.0003832372894976288,0.0023075509816408157,-0.00034569372655823827,0.006767545468062602,-0.0032497097710089927,-0.0032497097710089927,6.767545468062603e-05,-3.249709771008993e-05,-3.249709771008993e-05,0.004245322663336992,0.00016067505930550396,179 +illusion_0.75L,sr,180,36.0,1.050560474395752,-0.4290344715118408,0.8121841549873352,-0.688983142375946,0.7532015442848206,-0.3880062997341156,0.0019188164733350277,-6.771974767616484e-06,0.002280064392834902,0.0003899321600329131,0.0023007835261523724,-0.00033824314596131444,0.0062086992426772444,-0.003197440638324032,-0.003197440638324032,6.208699242677245e-05,-3.197440638324032e-05,-3.197440638324032e-05,0.004246708005666733,0.0003996735031250864,180 +illusion_0.75L,sr,181,36.2,1.089861273765564,-0.44024693965911865,0.8238421082496643,-0.6967395544052124,0.7227320075035095,-0.3536268472671509,0.0019214210333302617,-3.549942448444199e-06,0.0022859929595142603,0.00039455454680137336,0.0022984291426837444,-0.000329854607116431,0.0049421353022664205,-0.0026473710304965245,-0.0026473710304965245,4.942135302266421e-05,-2.6473710304965245e-05,-2.6473710304965245e-05,0.004260779824107885,0.0006214812165126204,181 +illusion_0.75L,sr,182,36.4,1.1303880214691162,-0.4483971893787384,0.8310243487358093,-0.6906754374504089,0.6928485631942749,-0.31351521611213684,0.001925252960063517,3.7010760678413135e-08,0.0022939976770430803,0.00039758041384629905,0.002298054052516818,-0.00032096271752379835,0.0040291618239228395,-0.0023756450453109148,-0.0023756450453109148,4.02916182392284e-05,-2.3756450453109147e-05,-2.3756450453109147e-05,0.00427695456892252,0.0008159072604030371,182 +illusion_0.75L,sr,183,36.6,1.1721172332763672,-0.45314857363700867,0.8328144550323486,-0.663161039352417,0.6635947227478027,-0.26658669114112854,0.0019284988520666957,3.382247541594552e-06,0.0023013015743345022,0.0003994106955360621,0.0022970729041844606,-0.00031254038913175464,0.0037811046621016664,-0.002600794291494295,-0.002600794291494295,3.7811046621016666e-05,-2.600794291494295e-05,-2.600794291494295e-05,0.004289029631763697,0.000973953865468502,183 +illusion_0.75L,sr,184,36.8,1.2147493362426758,-0.4539385735988617,0.8282930850982666,-0.6096578240394592,0.6368858218193054,-0.2120581865310669,0.0019298135302960873,6.152693003969034e-06,0.0023066310677677393,0.0003999782493337989,0.002294316655024886,-0.0003052322135772556,0.0031205720946850908,-0.0025160195444558844,-0.0025160195444558844,3.120572094685091e-05,-2.5160195444558845e-05,-2.5160195444558845e-05,0.004299434833228588,0.0010883876821026206,184 +illusion_0.75L,sr,185,37.0,1.2575877904891968,-0.4498688876628876,0.8168231248855591,-0.5309164524078369,0.6157435178756714,-0.1506923884153366,0.0019295060774311423,8.820251423458103e-06,0.0023099537938833237,0.00039954110980033875,0.0022898835595697165,-0.00029926045681349933,0.001455410914842194,-0.0016779278117614994,-0.0016779278117614994,1.455410914842194e-05,-1.6779278117614994e-05,-1.6779278117614994e-05,0.0043129948899149895,0.0011541711864992976,185 +illusion_0.75L,sr,186,37.2,1.2993398904800415,-0.43955615162849426,0.7979505658149719,-0.43144673109054565,0.6036829948425293,-0.08532428741455078,0.0019290086347609758,1.1807450391643215e-05,0.002312921453267336,0.00039830486639402807,0.0022856707219034433,-0.0002943681611213833,-0.00012084225471952967,-0.0008895500456853403,-0.0008895500456853403,-1.2084225471952967e-06,-8.895500456853403e-06,-8.895500456853403e-06,0.0043281856924295425,0.0011686912039294839,186 +illusion_0.75L,sr,187,37.4,1.3378586769104004,-0.4210317134857178,0.771300733089447,-0.31527119874954224,0.6038703918457031,-0.02061106264591217,0.001928681624121964,1.4427543646888807e-05,0.0023156283423304558,0.0003963735653087497,0.002281981986016035,-0.0002908661845140159,-0.0005117547514486669,-0.0009504617058264386,-0.0009504617058264386,-5.117547514486669e-06,-9.504617058264386e-06,-9.504617058264386e-06,0.004336609039455652,0.001131771714426577,187 +illusion_0.75L,sr,188,37.6,1.3700758218765259,-0.3917924165725708,0.7371389865875244,-0.18342159688472748,0.6178025007247925,0.038423825055360794,0.0019272980280220509,1.6169446098501794e-05,0.0023165650200098753,0.0003938238078262657,0.0022773509845137596,-0.00028941096388734877,-0.0009437289844237694,-0.0009426959276668118,-0.0009426959276668118,-9.437289844237695e-06,-9.426959276668117e-06,-9.426959276668117e-06,0.004331659525632858,0.0010455084266141057,188 +illusion_0.75L,sr,189,37.8,1.392288088798523,-0.3490716218948364,0.6974353194236755,-0.035836223512887955,0.6438972353935242,0.0889049842953682,0.0019240413093939424,1.7493257473688573e-05,0.0023150688502937555,0.0003908938670065254,0.0022711928468197584,-0.0002901421394199133,-0.0024325571264126877,-0.00011229341760613312,-0.00011229341760613312,-2.432557126412688e-05,-1.1229341760613313e-06,-1.1229341760613313e-06,0.004316441714763641,0.0009139995672740042,189 +illusion_0.75L,sr,190,38.0,1.4006980657577515,-0.2903198003768921,0.656482458114624,0.12433996796607971,0.6774463653564453,0.1319461464881897,0.001920850481837988,1.8879067283705808e-05,0.0023130453191697598,0.0003877406124956906,0.002265562303364277,-0.0002926073793787509,-0.003957343309147883,0.0007889032691063037,0.0007889032691063037,-3.957343309147883e-05,7.889032691063037e-06,7.889032691063037e-06,0.004301527515053749,0.0007430499535985291,190 +illusion_0.75L,sr,191,38.2,1.391614556312561,-0.21353395283222198,0.6207242608070374,0.2873709499835968,0.7130008935928345,0.17135818302631378,0.0019193921471014619,1.9870803953381255e-05,0.002312518423423171,0.00038433869485743344,0.002262638183310628,-0.00029654017998836935,-0.004390640973516879,0.0009336726530819532,0.0009336726530819532,-4.39064097351688e-05,9.336726530819532e-06,9.336726530819532e-06,0.004294632934033871,0.0005399071960709989,191 +illusion_0.75L,sr,192,38.4,1.3610843420028687,-0.11755616217851639,0.5980327725410461,0.43604910373687744,0.7474918961524963,0.20999957621097565,0.0019211716717109084,2.0073528503417037e-05,0.002315250691026449,0.00038045228575356305,0.002264183945953846,-0.00030201757908798754,-0.004532597827461592,0.0009218120154345261,0.0009218120154345261,-4.5325978274615914e-05,9.218120154345262e-06,9.218120154345262e-06,0.004293559584766626,0.00031304333242587745,192 +illusion_0.75L,sr,193,38.6,1.3053059577941895,-0.0036190939135849476,0.5957424640655518,0.5492265820503235,0.7808912396430969,0.24780507385730743,0.0019243232673034072,1.9503004295984283e-05,0.002319304272532463,0.00037632498424500227,0.002268231473863125,-0.000309258874040097,-0.005197711936574367,0.0013562332859519063,0.0013562332859519063,-5.1977119365743676e-05,1.3562332859519063e-05,1.3562332859519063e-05,0.004290138371288776,7.195398939074948e-05,193 +illusion_0.75L,sr,194,38.8,1.223870038986206,0.12119174003601074,0.616142213344574,0.6132780909538269,0.8143239617347717,0.2832011580467224,0.0019269773038104177,1.883259574242402e-05,0.0023220935836434364,0.00037250935565680265,0.002272223588079214,-0.0003181489300914109,-0.0063810837674240645,0.0022318335565682836,0.0022318335565682836,-6.381083767424064e-05,2.2318335565682834e-05,2.2318335565682834e-05,0.00428050896152854,-0.0001730822114041075,194 +illusion_0.75L,sr,195,39.0,1.1238317489624023,0.2421104460954666,0.6524102687835693,0.635402262210846,0.8484823703765869,0.31509608030319214,0.0019275398226454854,1.798885568859987e-05,0.0023217592388391495,0.0003690954181365669,0.002274342579767108,-0.00032825523521751165,-0.0066666147450961865,0.002501845636522688,0.002501845636522688,-6.666614745096187e-05,2.501845636522688e-05,2.501845636522688e-05,0.0042700087651610374,-0.00041134055936709046,195 +illusion_0.75L,sr,196,39.2,1.0191514492034912,0.3408743143081665,0.6922312378883362,0.6390847563743591,0.8834692239761353,0.3432992100715637,0.001926563330926001,1.6510148270754144e-05,0.0023188285995274782,0.0003657284833025187,0.0022750329226255417,-0.00033918936969712377,-0.0061678725801238565,0.00225236178569789,0.00225236178569789,-6.167872580123857e-05,2.2523617856978902e-05,2.2523617856978902e-05,0.004267278593033552,-0.000632112380117178,196 +illusion_0.75L,sr,197,39.4,0.9248437285423279,0.40411311388015747,0.7269818186759949,0.6433550119400024,0.9191986918449402,0.36803263425827026,0.0019251146586611867,1.420631815562956e-05,0.002314528450369835,0.0003617305192165077,0.0022753479424864054,-0.0003502989129628986,-0.005913602667208896,0.0022407846818961394,0.0022407846818961394,-5.913602667208897e-05,2.2407846818961393e-05,2.2407846818961393e-05,0.004274563863873482,-0.0008252749685198069,197 +illusion_0.75L,sr,198,39.6,0.8503630757331848,0.42951226234436035,0.7548443078994751,0.6535137891769409,0.955589771270752,0.3895696997642517,0.0019240741385146976,1.171536587207811e-05,0.0023099256213754416,0.00035697370185516775,0.002276219194754958,-0.0003610224521253258,-0.006454799618330839,0.0028664826043163817,0.0028664826043163817,-6.454799618330839e-05,2.8664826043163818e-05,2.8664826043163818e-05,0.004285456147044897,-0.0009819063125178218,198 +illusion_0.75L,sr,199,39.8,0.7965437173843384,0.42510727047920227,0.7770500183105469,0.6677423715591431,0.9926362037658691,0.40811458230018616,0.0019223077688366175,9.365144251205493e-06,0.002303734887391329,0.00035161853884346783,0.002276255516335368,-0.00037075707223266363,-0.0065978625705518275,0.003239390303814527,0.003239390303814527,-6.597862570551828e-05,3.239390303814527e-05,3.239390303814527e-05,0.004292575176805258,-0.0010948515264317393,199 +illusion_0.75L,sr,200,40.0,0.7576116323471069,0.4025763273239136,0.7947193384170532,0.6828230023384094,1.0304211378097534,0.4237785339355469,0.0019189566373825073,6.831181053712498e-06,0.0022952177096158266,0.00034582134685479105,0.002274587517604232,-0.00037922218325547874,-0.005762695088549048,0.0029249706980229422,0.0029249706980229422,-5.7626950885490485e-05,2.9249706980229422e-05,2.9249706980229422e-05,0.004296126775443554,-0.0011591494549065828,200 +illusion_0.75L,sr,201,40.2,0.7261691093444824,0.37054377794265747,0.8082470893859863,0.694344699382782,1.069095492362976,0.43655145168304443,0.0019156776834279299,3.8039786431909306e-06,0.0022865755017846823,0.0003391412610653788,0.0022732315119355917,-0.0003860917058773339,-0.004738674075168139,0.0025011136808672334,0.0025011136808672334,-4.738674075168139e-05,2.5011136808672333e-05,2.5011136808672333e-05,0.0043031927198171616,-0.0011722566559910774,201 +illusion_0.75L,sr,202,40.4,0.6970773935317993,0.3325016498565674,0.8174143433570862,0.6958649158477783,1.1087889671325684,0.4462946355342865,0.0019140711519867182,5.885873406441533e-07,0.0022797160781919956,0.0003316039510536939,0.0022738922853022814,-0.00039117623236961663,-0.004333807693204742,0.0025568532283997553,0.0025568532283997553,-4.333807693204742e-05,2.5568532283997552e-05,2.5568532283997552e-05,0.00431835139170289,-0.001134056132286787,202 +illusion_0.75L,sr,203,40.6,0.6685660481452942,0.2885047495365143,0.8216236233711243,0.6796447038650513,1.1495829820632935,0.45273658633232117,0.0019159618532285094,-2.2591027573071187e-06,0.002277074847370386,0.00032353808637708426,0.0022788573987782,-0.00039411825127899647,-0.004103747969213905,0.0027533931960001938,0.0027533931960001938,-4.103747969213905e-05,2.7533931960001937e-05,2.7533931960001937e-05,0.004336398560553789,-0.0010466892272233963,203 +illusion_0.75L,sr,204,40.8,0.6415231227874756,0.23767206072807312,0.8201805949211121,0.6392910480499268,1.1914077997207642,0.45542648434638977,0.0019196299836039543,-4.940153303323314e-06,0.0022770243231207132,0.00031570400460623205,0.0022863855119794607,-0.00039531633956357837,-0.0030358932437637197,0.002334025113145564,0.002334025113145564,-3.0358932437637196e-05,2.334025113145564e-05,2.334025113145564e-05,0.004345819354057312,-0.0009142835042439401,204 +illusion_0.75L,sr,205,41.0,0.6184325814247131,0.17994000017642975,0.8125206828117371,0.5728350281715393,1.2338414192199707,0.4536510109901428,0.0019231655169278383,-7.644585821253713e-06,0.0022771623916924,0.00030864813015796244,0.0022939073387533426,-0.00039545883191749454,-0.0016493170988386063,0.0016773977098986303,0.0016773977098986303,-1.6493170988386064e-05,1.6773977098986302e-05,1.6773977098986302e-05,0.004339585080742836,-0.0007426568772643805,205 +illusion_0.75L,sr,206,41.2,0.6025866866111755,0.11702220886945724,0.7981922030448914,0.48336514830589294,1.275907039642334,0.44631099700927734,0.0019247799646109343,-1.0443703104101587e-05,0.002275536535307765,0.00030286581022664905,0.0022993069142103195,-0.00039501700666733086,-0.0004889964905783958,0.0011787318228904872,0.0011787318228904872,-4.8899649057839585e-06,1.1787318228904873e-05,1.1787318228904873e-05,0.004321560729295015,-0.0005390531150624156,206 +illusion_0.75L,sr,207,41.4,0.597415566444397,0.05260757356882095,0.7766942381858826,0.3759111166000366,1.3159164190292358,0.4318528473377228,0.001924813142977655,-1.289465308218496e-05,0.0022724103182554245,0.0002986159815918654,0.0023026661947369576,-0.0003939896123483777,0.0001485878949205148,0.0010495006804885111,0.0010495006804885111,1.485878949205148e-06,1.0495006804885111e-05,1.0495006804885111e-05,0.004301773849874735,-0.000311925308778882,207 +illusion_0.75L,sr,208,41.6,0.605421245098114,-0.008415988646447659,0.7476626634597778,0.2534148097038269,1.3513449430465698,0.40822505950927734,0.0019241796107962728,-1.4845946679997724e-05,0.0022689627949148417,0.00029607326723635197,0.0023050550371408463,-0.0003922795585822314,0.0010118380506888465,0.0007269015265611335,0.0007269015265611335,1.0118380506888464e-05,7.269015265611335e-06,7.269015265611335e-06,0.004286319483071566,-7.073696906445548e-05,208 +illusion_0.75L,sr,209,41.8,0.6266283988952637,-0.06201411783695221,0.7116947770118713,0.11603221297264099,1.3788949251174927,0.3730539083480835,0.0019237084779888391,-1.6543051970074885e-05,0.0022659532260149717,0.00029522451222874224,0.0023071300238370895,-0.00038997133378870785,0.002313771697947428,4.793869140215859e-05,4.793869140215859e-05,2.313771697947428e-05,4.793869140215859e-07,4.793869140215859e-07,0.004273382015526295,0.00017427514831069857,209 +illusion_0.75L,sr,210,42.0,0.6576683521270752,-0.10740523040294647,0.6714016199111938,-0.03560573235154152,1.394973874092102,0.3240220546722412,0.0019225423457100987,-1.8087106582242996e-05,0.0022625261917710304,0.00029615461244247854,0.002307893242686987,-0.00038742495235055685,0.003453845470811269,-0.0005478925171495362,-0.0005478925171495362,3.453845470811269e-05,-5.478925171495362e-06,-5.478925171495362e-06,0.004259394947439432,0.0004124342813156545,210 +illusion_0.75L,sr,211,42.2,0.6929861307144165,-0.14748863875865936,0.6318132877349854,-0.19620583951473236,1.3962193727493286,0.2593013048171997,0.001919541391544044,-1.9308496121084318e-05,0.0022573634050786495,0.0002989481436088681,0.00230590277351439,-0.0003848677733913064,0.0040931229043052325,-0.0008166722651770825,-0.0008166722651770825,4.0931229043052325e-05,-8.166722651770826e-06,-8.166722651770826e-06,0.004247340373694897,0.000633081654086709,211 +illusion_0.75L,sr,212,42.4,0.728030800819397,-0.18605373799800873,0.6000818014144897,-0.35335326194763184,1.3794853687286377,0.17768920958042145,0.001916177454404533,-1.9887485905201174e-05,0.0022523514926433563,0.00030337536009028554,0.0023029688745737076,-0.00038204086013138294,0.0044688573382102165,-0.000940038824839888,-0.000940038824839888,4.4688573382102164e-05,-9.400388248398881e-06,-9.400388248398881e-06,0.004246612079441547,0.0008261421462520957,212 +illusion_0.75L,sr,213,42.6,0.761363685131073,-0.2244850993156433,0.5843170285224915,-0.48798754811286926,1.3412034511566162,0.07888180017471313,0.001914096181280911,-1.99519308807794e-05,0.00224933959543705,0.00030926696490496397,0.002300921594724059,-0.0003787324239965528,0.0051713912256861755,-0.0013586707145464873,-0.0013586707145464873,5.171391225686176e-05,-1.3586707145464874e-05,-1.3586707145464874e-05,0.004263712093234062,0.0009827353060245514,213 +illusion_0.75L,sr,214,42.8,0.7939119935035706,-0.26159873604774475,0.5907365679740906,-0.5805882811546326,1.278245210647583,-0.03471992164850235,0.0019150350708514452,-1.9544046153896488e-05,0.002250327030196786,0.00031616268097423017,0.0023017595522105694,-0.00037478949525393546,0.005919332095546723,-0.0018652211352206093,-0.0018652211352206093,5.919332095546723e-05,-1.8652211352206092e-05,-1.8652211352206092e-05,0.0042939698323607445,0.0010957379126921296,214 +illusion_0.75L,sr,215,43.0,0.8268810510635376,-0.29580262303352356,0.6185148358345032,-0.6248415112495422,1.191508412361145,-0.15486396849155426,0.0019178831716999412,-1.910376340674702e-05,0.0022545272950083017,0.00032389062107540667,0.0023046890273690224,-0.00037078422610647976,0.0066248892348144475,-0.002394744163476157,-0.002394744163476157,6.624889234814448e-05,-2.394744163476157e-05,-2.394744163476157e-05,0.004323890432715416,0.001160208135843277,215 +illusion_0.75L,sr,216,43.2,0.8607949614524841,-0.32641637325286865,0.65777987241745,-0.636050283908844,1.0892481803894043,-0.2667323052883148,0.001920703100040555,-1.840561344579328e-05,0.0022591541055589914,0.00033236388117074966,0.002306810114532709,-0.00036697674659080803,0.006373234905664667,-0.0022704644202039513,-0.0022704644202039513,6.373234905664667e-05,-2.2704644202039513e-05,-2.2704644202039513e-05,0.004342077765613794,0.0011736078886315227,216 +illusion_0.75L,sr,217,43.4,0.8956603407859802,-0.3534735143184662,0.6964691877365112,-0.638115406036377,0.9855613708496094,-0.3537732660770416,0.001921885646879673,-1.6890971892280504e-05,0.002262392546981573,0.00034180365037173033,0.002306374255567789,-0.00036326274857856333,0.005526077994252421,-0.0017656500025576075,-0.0017656500025576075,5.526077994252421e-05,-1.7656500025576075e-05,-1.7656500025576075e-05,0.004347268491983414,0.0011358100455254316,217 +illusion_0.75L,sr,218,43.6,0.9313819408416748,-0.3772314786911011,0.7285807728767395,-0.644500195980072,0.894472062587738,-0.405425101518631,0.0019214173080399632,-1.46445863720146e-05,0.002264077076688409,0.00035162828862667084,0.002303428715094924,-0.00035930174635723233,0.005297298202908862,-0.0017755406823613989,-0.0017755406823613989,5.297298202908862e-05,-1.775540682361399e-05,-1.775540682361399e-05,0.004345463588833809,0.0010489318519830704,218 +illusion_0.75L,sr,219,43.8,0.9679096937179565,-0.39794662594795227,0.7540203928947449,-0.6565651893615723,0.823881208896637,-0.42180106043815613,0.0019201365066692233,-1.2493364920374006e-05,0.0022650512401014566,0.00036109721986576915,0.002298931358382106,-0.00035511795431375504,0.005706291944871048,-0.0023041126964801657,-0.0023041126964801657,5.7062919448710483e-05,-2.3041126964801657e-05,-2.3041126964801657e-05,0.004340487066656351,0.0009170636185444891,219 +illusion_0.75L,sr,220,44.0,1.0052419900894165,-0.415778249502182,0.7741960287094116,-0.6715127825737,0.7732818126678467,-0.4116748571395874,0.0019193862099200487,-1.0416489203635138e-05,0.0022666517179459333,0.00036955217365175486,0.0022942372597754,-0.0003504080814309418,0.00515032216242561,-0.0021594928650542425,-0.0021594928650542425,5.15032216242561e-05,-2.1594928650542424e-05,-2.1594928650542424e-05,0.004329410847276449,0.0007459750631824136,220 +illusion_0.75L,sr,221,44.2,1.0434257984161377,-0.43075960874557495,0.7899143099784851,-0.6857479214668274,0.7364403605461121,-0.3857811987400055,0.0019181232200935483,-7.720810572209302e-06,0.00226780166849494,0.0003769638133235276,0.002288408810272813,-0.0003451413649599999,0.003689167086268419,-0.0013850299907967878,-0.0013850299907967878,3.6891670862684194e-05,-1.3850299907967878e-05,-1.3850299907967878e-05,0.004308085888624191,0.000542854773811996,221 +illusion_0.75L,sr,222,44.4,1.082529902458191,-0.442798912525177,0.8012793064117432,-0.6942140460014343,0.706321656703949,-0.3513392508029938,0.0019154967740178108,-4.407489996083314e-06,0.0022673492785543203,0.00038330390816554427,0.002280596410855651,-0.0003393008664716035,0.002880988591101818,-0.0011272361824938536,-0.0011272361824938536,2.8809885911018178e-05,-1.1272361824938536e-05,-1.1272361824938536e-05,0.0042798398062586784,0.000316097226459533,222 +illusion_0.75L,sr,223,44.6,1.122636318206787,-0.451689213514328,0.8079679012298584,-0.6899669766426086,0.6784831881523132,-0.31099313497543335,0.0019123655511066318,-1.210679783980595e-06,0.0022664249408990145,0.00038819678593426943,0.0022721542045474052,-0.0003329299797769636,0.002999402702299661,-0.0015738921131406788,-0.0015738921131406788,2.999402702299661e-05,-1.5738921131406787e-05,-1.5738921131406787e-05,0.004256341140717268,7.510853174608201e-05,223 +illusion_0.75L,sr,224,44.8,1.1637109518051147,-0.4570644497871399,0.8094048500061035,-0.6655374765396118,0.651701033115387,-0.2646952271461487,0.0019105967367067933,1.5398687764900387e-06,0.0022671499755233526,0.0003911841777153313,0.002265263581648469,-0.0003262852260377258,0.0027331088996510335,-0.001743499155354072,-0.001743499155354072,2.7331088996510336e-05,-1.743499155354072e-05,-1.743499155354072e-05,0.004248499870300293,-0.00016992665769066662,224 +illusion_0.75L,sr,225,45.0,1.2055410146713257,-0.4583422541618347,0.8050986528396606,-0.6158897876739502,0.6272405982017517,-0.2119632363319397,0.0019116807961836457,4.2611800381564535e-06,0.0022713299840688705,0.00039224489592015743,0.0022618586663156748,-0.0003195134049747139,0.0014562003894573912,-0.0011698501533373112,-0.0011698501533373112,1.4562003894573912e-05,-1.1698501533373112e-05,-1.1698501533373112e-05,0.00425688037648797,-0.0004083740059286356,225 +illusion_0.75L,sr,226,45.2,1.247555136680603,-0.45465514063835144,0.7947549223899841,-0.5409327149391174,0.607871413230896,-0.15339313447475433,0.0019150027073919773,7.371342690021265e-06,0.0022785263136029243,0.00039205997018143535,0.002261766931042075,-0.0003128435055259615,0.0001470007912804834,-0.0005708011399983897,-0.0005708011399983897,1.470007912804834e-06,-5.708011399983897e-06,-5.708011399983897e-06,0.004272068850696087,-0.0006296037463471293,226 +illusion_0.75L,sr,227,45.4,1.2885985374450684,-0.4447617828845978,0.7780728936195374,-0.444911926984787,0.5970263481140137,-0.0913739949464798,0.0019185879500582814,1.0405741704744287e-05,0.0022860057651996613,0.0003912040265277028,0.0022624782286584377,-0.00030697500915266573,-8.829593475910211e-05,-0.0007521418058699242,-0.0007521418058699242,-8.829593475910211e-07,-7.521418058699242e-06,-7.521418058699242e-06,0.004284536466002464,-0.0008235537097789347,227 +illusion_0.75L,sr,228,45.6,1.3266927003860474,-0.4269980490207672,0.7545072436332703,-0.3326414227485657,0.597838282585144,-0.029955687001347542,0.0019205339485779405,1.2617455467989203e-05,0.0022915061563253403,0.000389819557312876,0.0022617990616708994,-0.00030277855694293976,-5.170489984281101e-06,-0.0011438083872971072,-0.0011438083872971072,-5.1704899842811014e-08,-1.1438083872971073e-05,-1.1438083872971073e-05,0.004293113015592098,-0.000981337740086019,228 +illusion_0.75L,sr,229,45.8,1.359068751335144,-0.3993353247642517,0.7237507700920105,-0.206243097782135,0.6118982434272766,0.026388758793473244,0.0019208836602047086,1.4227613974071573e-05,0.002294992795214057,0.00038789527025073767,0.002259731525555253,-0.00030054966919124126,-0.0010829069128533882,-0.0006475298375841314,-0.0006475298375841314,-1.0829069128533882e-05,-6.475298375841314e-06,-6.475298375841314e-06,0.004303110297769308,-0.001095808343961835,229 +illusion_0.75L,sr,230,46.0,1.3824244737625122,-0.3596307635307312,0.6867485642433167,-0.06570944935083389,0.6378371715545654,0.07502856105566025,0.0019200668903067708,1.6028518075472675e-05,0.0022968174889683723,0.00038579999818466604,0.002256770385429263,-0.0003000133146997541,-0.0028313860767998147,0.00037571711192538326,0.00037571711192538326,-2.8313860767998147e-05,3.7571711192538326e-06,3.7571711192538326e-06,0.004317091777920723,-0.0011619804427027702,230 +illusion_0.75L,sr,231,46.2,1.3934675455093384,-0.30604439973831177,0.6466187834739685,0.08739499002695084,0.671156108379364,0.11693084985017776,0.0019196049543097615,1.795423850126099e-05,0.0022983814124017954,0.0003837110416498035,0.002254547318443656,-0.00030071125365793705,-0.003484344791437069,0.0006255718511731859,0.0006255718511731859,-3.484344791437069e-05,6.2557185117318585e-06,6.2557185117318585e-06,0.0043295822106301785,-0.0011772552970796824,231 +illusion_0.75L,sr,232,46.4,1.3893296718597412,-0.237355038523674,0.6088926196098328,0.246171772480011,0.7063807845115662,0.15572069585323334,0.0019185713026672602,1.9025257643079385e-05,0.0022987036500126123,0.00038150069303810596,0.0022521554492413998,-0.00030312055605463684,-0.002967375288734121,5.820356469104018e-05,5.820356469104018e-05,-2.967375288734121e-05,5.820356469104018e-07,5.820356469104018e-07,0.004332154523581266,-0.0011414313921704888,232 +illusion_0.75L,sr,233,46.6,1.3672512769699097,-0.15291395783424377,0.5810661911964417,0.39664122462272644,0.7401580810546875,0.194337859749794,0.0019160301890224218,1.903401243907865e-05,0.0022965327370911837,0.00037895410787314177,0.0022482769563794136,-0.00030752216116525233,-0.0032350635132147587,0.0001239484140378999,0.0001239484140378999,-3.2350635132147586e-05,1.2394841403789992e-06,1.2394841403789992e-06,0.004323046654462814,-0.0010565404081717134,233 +illusion_0.75L,sr,234,46.8,1.32395601272583,-0.05291026085615158,0.5711952447891235,0.5192919373512268,0.7722821235656738,0.23287419974803925,0.001912678126245737,1.905286990222521e-05,0.0022929671686142683,0.00037632399471476674,0.002244016621261835,-0.00031330331694334745,-0.004776525636988813,0.001181598422120695,0.001181598422120695,-4.776525636988813e-05,1.181598422120695e-05,1.181598422120695e-05,0.004309957846999168,-0.0009265808621421456,234 +illusion_0.75L,sr,235,47.0,1.256709098815918,0.05968354642391205,0.5842366218566895,0.5971131324768066,0.8040381073951721,0.2696373164653778,0.0019103609956800938,1.933544444909785e-05,0.002289787633344531,0.0003736672515515238,0.0022413418628275394,-0.0003196556062903255,-0.005372126369891511,0.0015885542273921317,0.0015885542273921317,-5.372126369891511e-05,1.5885542273921318e-05,1.5885542273921318e-05,0.0043023559264838696,-0.0007572299218736589,235 +illusion_0.75L,sr,236,47.2,1.1670658588409424,0.17616727948188782,0.6168774366378784,0.6295130252838135,0.8364518880844116,0.30322396755218506,0.0019104883540421724,1.8915627151727676e-05,0.0022888481616973877,0.0003705943818204105,0.002242141868919134,-0.0003265400300733745,-0.004327739536187203,0.0008401533095334854,0.0008401533095334854,-4.327739536187203e-05,8.401533095334854e-06,8.401533095334854e-06,0.0043017142452299595,-0.0005555875250138342,236 +illusion_0.75L,sr,237,47.4,1.0637763738632202,0.28203117847442627,0.6576120853424072,0.6358660459518433,0.8698937892913818,0.3331974148750305,0.0019130348227918148,1.7238255168194883e-05,0.0022904060315340757,0.00036678806645795703,0.0022465046495199203,-0.00033406750299036503,-0.0036057806247857256,0.000390630382381952,0.000390630382381952,-3.605780624785726e-05,3.90630382381952e-06,3.90630382381952e-06,0.004300643689930439,-0.0003299686941318214,237 +illusion_0.75L,sr,238,47.6,0.9608616828918457,0.36197715997695923,0.6953259110450745,0.638404130935669,0.9044047594070435,0.3596974313259125,0.0019159592920914292,1.5374287613667548e-05,0.002291938289999962,0.00036270570126362145,0.002251763129606843,-0.0003422389563638717,-0.0045069719842691786,0.0011944836422740183,0.0011944836422740183,-4.506971984269179e-05,1.1944836422740185e-05,1.1944836422740185e-05,0.00429190369322896,-8.971420174930245e-05,238 +illusion_0.75L,sr,239,47.8,0.8716650605201721,0.4070390462875366,0.7258460521697998,0.6466529965400696,0.9399138689041138,0.3829961121082306,0.0019175991183146834,1.3756354746874422e-05,0.0022914393339306116,0.0003587951650843024,0.0022559724748134613,-0.00035059440415352583,-0.00495195340479837,0.0017056043526642202,0.0017056043526642202,-4.9519534047983704e-05,1.70560435266422e-05,1.70560435266422e-05,0.004277124535292387,0.00015503856411669403,239 +illusion_0.75L,sr,240,48.0,0.8032294511795044,0.41839736700057983,0.749912440776825,0.659992516040802,0.9763925075531006,0.4033041298389435,0.0019175895722582936,1.1906833606190048e-05,0.0022884865757077932,0.0003549849207047373,0.0022586416453123093,-0.0003587834653444588,-0.0039920625997409385,0.001224785972616136,0.001224785972616136,-3.992062599740938e-05,1.224785972616136e-05,1.224785972616136e-05,0.004265474621206522,0.00039368137368001044,240 +illusion_0.75L,sr,241,48.2,0.7544567584991455,0.40490809082984924,0.7689344882965088,0.675203800201416,1.013848066329956,0.420725554227829,0.0019165744306519628,9.085998499358539e-06,0.002283868147060275,0.00035067013232037425,0.0022603231482207775,-0.00036666783853434026,-0.00267586623853254,0.0005248064203977922,0.0005248064203977922,-2.67586623853254e-05,5.248064203977922e-06,5.248064203977922e-06,0.004263981245458126,0.0006155874580144882,241 +illusion_0.75L,sr,242,48.4,0.719002366065979,0.37669241428375244,0.7835350036621094,0.6883933544158936,1.0523064136505127,0.4352484941482544,0.0019158964278176427,5.784032964584185e-06,0.0022791153751313686,0.00034554259036667645,0.00226227892562747,-0.0003738591040018946,-0.0027457190728214613,0.0008838098849249087,0.0008838098849249087,-2.7457190728214612e-05,8.838098849249087e-06,8.838098849249087e-06,0.004270609002560377,0.0008106737514026463,242 +illusion_0.75L,sr,243,48.6,0.6900625824928284,0.34028229117393494,0.7936755418777466,0.6940770745277405,1.0917822122573853,0.44675061106681824,0.0019149890867993236,2.958385493911919e-06,0.002273844089359045,0.0003399928391445428,0.002264027250930667,-0.0003798373509198427,-0.0034356706951388463,0.0017217231831544427,0.0017217231831544427,-3.435670695138846e-05,1.7217231831544428e-05,1.7217231831544428e-05,0.00427780719473958,0.0009700104128569365,243 +illusion_0.75L,sr,244,48.8,0.663489818572998,0.2979965806007385,0.7989447116851807,0.6851049065589905,1.1322506666183472,0.45496833324432373,0.0019128503045067191,5.172530563868349e-07,0.0022667923476547003,0.00033445723238401115,0.0022642365656793118,-0.0003844207094516605,-0.002858173806914806,0.0016366830367588615,0.0016366830367588615,-2.858173806914806e-05,1.6366830367588615e-05,1.6366830367588615e-05,0.004282041918486357,0.00108638487290591,244 +illusion_0.75L,sr,245,49.0,0.6383434534072876,0.24984250962734222,0.7988418340682983,0.654442310333252,1.1735916137695312,0.45947265625,0.0019099032506346703,-2.4521648356312653e-06,0.0022588863503187895,0.0003287385916337371,0.0022636172361671925,-0.00038760670577175915,-0.0012663358661387785,0.00081263605335527,0.00081263605335527,-1.2663358661387786e-05,8.1263605335527e-06,8.1263605335527e-06,0.004287917632609606,0.001154729281552136,245 +illusion_0.75L,sr,246,49.2,0.6160646677017212,0.1956520974636078,0.7929942607879639,0.5981842279434204,1.2154405117034912,0.45958977937698364,0.0019079234916716814,-5.780648280051537e-06,0.002252236008644104,0.0003226350527256727,0.0022640274837613106,-0.00038956745993345976,-0.0007417484774287263,0.0007797844957072829,0.0007797844957072829,-7.417484774287263e-06,7.79784495707283e-06,7.79784495707283e-06,0.004301857203245163,0.0011723487405106425,246 +illusion_0.75L,sr,247,49.4,0.5995233654975891,0.1364574134349823,0.781199038028717,0.5175177454948425,1.2570394277572632,0.45435500144958496,0.00190821778960526,-8.595454346504994e-06,0.0022485163062810898,0.00031649231095798314,0.002267024479806423,-0.0003900570154655725,-0.0011649273225895675,0.001437412703902568,0.001437412703902568,-1.1649273225895676e-05,1.4374127039025682e-05,1.4374127039025682e-05,0.004322571214288473,0.0011389366118237376,247 +illusion_0.75L,sr,248,49.6,0.5921652913093567,0.07505961507558823,0.7631808519363403,0.4172939956188202,1.2970582246780396,0.44244930148124695,0.0019111714791506529,-1.0548105819907505e-05,0.0022486045490950346,0.0003110970719717443,0.002273427788168192,-0.00038897342165000737,-0.0008416992079618782,0.0015257989164732116,0.0015257989164732116,-8.416992079618782e-06,1.5257989164732116e-05,1.5257989164732116e-05,0.0043395934626460075,0.0010564166586846113,248 +illusion_0.75L,sr,249,49.8,0.5969194173812866,0.015628915280103683,0.7384388446807861,0.3020331859588623,1.3334038257598877,0.42216795682907104,0.001914643682539463,-1.2500721823016647e-05,0.0022498182952404022,0.00030691767460666597,0.0022804855834692717,-0.00038711505476385355,0.0008946286480965849,0.0005486610106046636,0.0005486610106046636,8.946286480965849e-06,5.486610106046636e-06,5.486610106046636e-06,0.004342196509242058,0.0009286822751164436,249 +illusion_0.75L,sr,250,50.0,0.6147242784500122,-0.037824857980012894,0.7067593932151794,0.17331485450267792,1.3632136583328247,0.39153027534484863,0.0019169794395565987,-1.4928880773368292e-05,0.0022502532228827477,0.0003040419251192361,0.002286077942699194,-0.00038536667125299573,0.0022008494748377225,-0.00013310027893887952,-0.00013310027893887952,2.2008494748377226e-05,-1.3310027893887952e-06,-1.3310027893887952e-06,0.004329230170696974,0.0007613134803250432,250 +illusion_0.75L,sr,251,50.2,0.6433500051498413,-0.08366522938013077,0.6693353056907654,0.03114086575806141,1.383263349533081,0.34862542152404785,0.0019176038913428783,-1.6891583072720096e-05,0.0022493095602840185,0.00030282861553132534,0.002289416966959834,-0.00038376127486117184,0.0018982260896198457,0.00034246349973069204,0.00034246349973069204,1.8982260896198456e-05,3.4246349973069203e-06,3.4246349973069203e-06,0.0043093012645840645,0.0005613267421722412,251 +illusion_0.75L,sr,252,50.4,0.6778062582015991,-0.12380208820104599,0.6296307444572449,-0.12221221625804901,1.3905845880508423,0.292049765586853,0.0019169182050973177,-1.7767553799785674e-05,0.0022472417913377285,0.00030359544325619936,0.0022907741367816925,-0.00038189374026842415,0.0017576283756873604,0.000655432200889608,0.000655432200889608,1.7576283756873605e-05,6.55432200889608e-06,6.55432200889608e-06,0.004291526973247528,0.0003369711630512029,252 +illusion_0.75L,sr,253,50.6,0.7129253149032593,-0.16202402114868164,0.5934942364692688,-0.27884694933891296,1.382737636566162,0.221045583486557,0.0019163170363754034,-1.8310518498765305e-05,0.0022456212900578976,0.00030609144596382976,0.002291707322001457,-0.0003797687531914562,0.0030771969443528363,-0.00015420899545466604,-0.00015420899545466604,3.0771969443528364e-05,-1.5420899545466605e-06,-1.5420899545466605e-06,0.004277484491467476,9.754252096172422e-05,253 +illusion_0.75L,sr,254,50.8,0.7461626529693604,-0.20065292716026306,0.5685904622077942,-0.42400801181793213,1.3572916984558105,0.13532455265522003,0.001915409229695797,-1.905121280287858e-05,0.002243980998173356,0.0003098779416177422,0.0022916211746633053,-0.00037765485467389226,0.00428853750931419,-0.000926241426589456,-0.000926241426589456,4.2885375093141904e-05,-9.26241426589456e-06,-9.26241426589456e-06,0.0042631374672055244,-0.00014684362395200878,254 +illusion_0.75L,sr,255,51.0,0.7778701186180115,-0.2391156405210495,0.5627442002296448,-0.538291335105896,1.3111584186553955,0.03537621349096298,0.0019132212037220597,-1.9591316231526434e-05,0.0022411863319575787,0.0003149620024487376,0.0022892567794770002,-0.0003757932863663882,0.004178782986081778,-0.000769195819215536,-0.000769195819215536,4.178782986081778e-05,-7.69195819215536e-06,-7.69195819215536e-06,0.004247708711773157,-0.0003855770919471979,255 +illusion_0.75L,sr,256,51.2,0.8094215393066406,-0.2755475342273712,0.5799320936203003,-0.6067373156547546,1.2418403625488281,-0.07553734630346298,0.0019099904457107186,-1.9168628568877466e-05,0.0022376514971256256,0.00032114528585225344,0.002285032533109188,-0.0003737005463335663,0.003456710826342885,-0.00021375221082642684,-0.00021375221082642684,3.456710826342885e-05,-2.1375221082642684e-06,-2.1375221082642684e-06,0.004238303285092115,-0.0006080058519728482,256 +illusion_0.75L,sr,257,51.4,0.8416927456855774,-0.30869171023368835,0.6152502298355103,-0.6323673129081726,1.151117205619812,-0.18869549036026,0.0019073706353083253,-1.801738289941568e-05,0.0022352037485688925,0.00032825491507537663,0.0022808804642409086,-0.00037105492083355784,0.003699705425637821,-0.0004272377516056671,-0.0004272377516056671,3.699705425637821e-05,-4.272377516056671e-06,-4.272377516056671e-06,0.004244087729603052,-0.0008040002430789173,257 +illusion_0.75L,sr,258,51.6,0.8749414682388306,-0.3382568359375,0.656433641910553,-0.636367917060852,1.0477288961410522,-0.2900983691215515,0.0019068584078922868,-1.6843514458741993e-05,0.002235570689663291,0.00033557857386767864,0.0022785400506109,-0.0003677108616102487,0.004519884409672187,-0.001117443100750893,-0.001117443100750893,4.519884409672187e-05,-1.117443100750893e-05,-1.117443100750893e-05,0.004266131203621626,-0.0009645655518397689,258 +illusion_0.75L,sr,259,51.8,0.9092219471931458,-0.36442017555236816,0.6931711435317993,-0.6393588781356812,0.9454277157783508,-0.3653737008571625,0.0019089338602498174,-1.560057353344746e-05,0.0022397006396204233,0.0003427688789088279,0.00227895169518888,-0.0003639214555732906,0.004470694509835144,-0.0012130946576482879,-0.0012130946576482879,4.4706945098351435e-05,-1.2130946576482879e-05,-1.2130946576482879e-05,0.00429448951035738,-0.0010824102209880948,259 +illusion_0.75L,sr,260,52.0,0.9445669054985046,-0.3874388039112091,0.7224385738372803,-0.6485742926597595,0.8572044372558594,-0.4064498543739319,0.0019119643839076161,-1.3913931070419494e-05,0.002245401032269001,0.0003499426238704473,0.0022800168953835964,-0.0003597914765123278,0.003640800900640798,-0.0007802058081808443,-0.0007802058081808443,3.640800900640798e-05,-7.802058081808442e-06,-7.802058081808442e-06,0.0043162815272808075,-0.0011523779248818755,260 +illusion_0.75L,sr,261,52.2,0.9809908270835876,-0.4074934720993042,0.7453901171684265,-0.662452757358551,0.7897428274154663,-0.4149426221847534,0.0019140142248943448,-1.132492889155401e-05,0.002250346355140209,0.0003573506837710738,0.002279532141983509,-0.0003554158902261406,0.0028895309966157044,-0.00045023609336533593,-0.00045023609336533593,2.8895309966157044e-05,-4.50236093365336e-06,-4.50236093365336e-06,0.004326277878135443,-0.0011716809822246432,261 +illusion_0.75L,sr,262,52.4,1.018520474433899,-0.4246562123298645,0.7634024620056152,-0.6775810718536377,0.7417780160903931,-0.39956197142601013,0.0019145563710480928,-8.568123121222015e-06,0.002253863262012601,0.00036470527993515134,0.002277035964652896,-0.00035071250749751925,0.0032752070941709788,-0.001000572113447229,-0.001000572113447229,3.275207094170979e-05,-1.000572113447229e-05,-1.000572113447229e-05,0.004328808281570673,-0.0011399217182770371,262 +illusion_0.75L,sr,263,52.6,1.0571881532669067,-0.4388956129550934,0.777021586894989,-0.6898710131645203,0.7070466876029968,-0.36998501420021057,0.001913785352371633,-6.000155281071784e-06,0.0022559696808457375,0.00037146377144381404,0.0022726638708263636,-0.00034585330286063254,0.0034748501181936092,-0.001441650345024614,-0.001441650345024614,3.4748501181936094e-05,-1.441650345024614e-05,-1.441650345024614e-05,0.0043297018855810165,-0.0010589387966319919,263 +illusion_0.75L,sr,264,52.8,1.0969853401184082,-0.45006489753723145,0.7861680388450623,-0.6936017870903015,0.6789336204528809,-0.33239540457725525,0.0019131870940327644,-3.453745648585027e-06,0.0022581936791539192,0.00037705636350438,0.0022680852562189102,-0.0003407573385629803,0.002859561827273373,-0.0013022442495512886,-0.0013022442495512886,2.859561827273373e-05,-1.3022442495512886e-05,-1.3022442495512886e-05,0.0043281326070427895,-0.0009325520950369537,264 +illusion_0.75L,sr,265,53.0,1.1378265619277954,-0.457856148481369,0.7904342412948608,-0.6815583109855652,0.6534399390220642,-0.28899115324020386,0.0019125426188111305,-5.129235205458826e-07,0.0022603520192205906,0.00038157746894285083,0.002263252856209874,-0.0003352622443344444,0.0019037653311321807,-0.0009266135078413451,-0.0009266135078413451,1.9037653311321807e-05,-9.266135078413452e-06,-9.266135078413452e-06,0.004317938350141048,-0.0007662828429602087,265 +illusion_0.75L,sr,266,53.2,1.1794745922088623,-0.4617655575275421,0.7893521189689636,-0.6470400094985962,0.6296822428703308,-0.23986870050430298,0.0019108460983261466,2.6699783575168112e-06,0.002261056797578931,0.0003851992660202086,0.0022570013534277678,-0.00032956458744592965,0.0015904136282515115,-0.001035677249825968,-0.001035677249825968,1.5904136282515115e-05,-1.035677249825968e-05,-1.035677249825968e-05,0.004296679049730301,-0.0005671066464856267,266 +illusion_0.75L,sr,267,53.4,1.2214523553848267,-0.46107006072998047,0.7826328277587891,-0.5868807435035706,0.6091492176055908,-0.18508531153202057,0.0019081395585089922,5.400399459176697e-06,0.0022606258280575275,0.0003875268157571554,0.0022498248144984245,-0.00032401946373283863,0.0018083052227698322,-0.001536270144873043,-0.001536270144873043,1.808305222769832e-05,-1.536270144873043e-05,-1.536270144873043e-05,0.004271471872925758,-0.00034325156593695283,267 +illusion_0.75L,sr,268,53.6,1.2628514766693115,-0.45475533604621887,0.7700950503349304,-0.5029992461204529,0.5947189331054688,-0.12595093250274658,0.0019059469923377037,7.647029633517377e-06,0.0022606474813073874,0.00038840461638756096,0.0022433726117014885,-0.00031887434306554496,0.0012844970187214956,-0.0014776014046067052,-0.0014776014046067052,1.2844970187214957e-05,-1.4776014046067053e-05,-1.4776014046067053e-05,0.004254178609699011,-0.00010401237523183227,268 +illusion_0.75L,sr,269,53.8,1.3021639585494995,-0.4414392113685608,0.7513845562934875,-0.4004746675491333,0.5897481441497803,-0.06543601304292679,0.001905659562908113,9.941588359652087e-06,0.0022628172300755978,0.0003879413416143507,0.0022394212428480387,-0.00031399138970300555,1.0062352932521668e-05,-0.0008500882251544009,-0.0008500882251544009,1.0062352932521667e-07,-8.500882251544009e-06,-8.500882251544009e-06,0.004250772297382355,0.00014047697186470032,269 +illusion_0.75L,sr,270,54.0,1.3371919393539429,-0.41939032077789307,0.7259695529937744,-0.28357216715812683,0.5969448089599609,-0.00765572115778923,0.0019079996272921562,1.2327396689215675e-05,0.0022682277485728264,0.00038657724508084357,0.0022392517421394587,-0.00030960558797232807,-0.0008432674244783847,-0.0005170579624114574,-0.0005170579624114574,-8.432674244783847e-06,-5.170579624114574e-06,-5.170579624114574e-06,0.004256573971360922,0.000379570439690724,270 +illusion_0.75L,sr,271,54.2,1.365128517150879,-0.3867352604866028,0.6937679052352905,-0.15362663567066193,0.6168693900108337,0.04376525804400444,0.0019113803282380104,1.438689560018247e-05,0.0022747956681996584,0.00038469876744784415,0.002240938600152731,-0.00030622974736616015,-0.0010140267440854472,-0.0006628515185046722,-0.0006628515185046722,-1.0140267440854472e-05,-6.628515185046723e-06,-6.628515185046723e-06,0.00426256749778986,0.0006025657639838755,271 +illusion_0.75L,sr,272,54.4,1.3829188346862793,-0.34180644154548645,0.6561694145202637,-0.010761821642518044,0.646822988986969,0.08783620595932007,0.0019139534560963511,1.5813166100997478e-05,0.0022802138701081276,0.0003827158361673355,0.0022422426845878363,-0.0003046545316465199,-0.0012200900472496522,-0.0007484201199633063,-0.0007484201199633063,-1.2200900472496522e-05,-7.484201199633063e-06,-7.484201199633063e-06,0.004265558440238237,0.0007992724422365427,272 +illusion_0.75L,sr,273,54.6,1.3878785371780396,-0.28350162506103516,0.6168406009674072,0.1423157900571823,0.6816340088844299,0.12698443233966827,0.0019149095751345158,1.6772224626038224e-05,0.0022835186682641506,0.0003806522872764617,0.0022422161418944597,-0.0003049943770747632,-0.0020329970985741297,-0.00034741127785800976,-0.00034741127785800976,-2.03299709857413e-05,-3.4741127785800976e-06,-3.4741127785800976e-06,0.004270726349204779,0.0009606286184862256,273 +illusion_0.75L,sr,274,54.8,1.377909541130066,-0.2113514393568039,0.5817984938621521,0.2972359359264374,0.7164627909660339,0.16497570276260376,0.0019143415847793221,1.76240318978671e-05,0.0022846348583698273,0.0003788021276704967,0.0022408789955079556,-0.0003071384271606803,-0.0030955483386244926,0.00027655912626074405,0.00027655912626074405,-3.095548338624493e-05,2.7655912626074405e-06,2.7655912626074405e-06,0.004283971153199673,0.001079274108633399,274 +illusion_0.75L,sr,275,55.0,1.3508126735687256,-0.12526915967464447,0.5587505102157593,0.4390030801296234,0.7492912411689758,0.20367099344730377,0.0019136543851345778,1.8435570382280275e-05,0.0022849186789244413,0.0003770235925912857,0.002239710884168744,-0.0003105436626356095,-0.003577635790819843,0.0005137156692043773,0.0005137156692043773,-3.577635790819843e-05,5.1371566920437735e-06,5.1371566920437735e-06,0.004303178749978542,0.0011499872198328376,275 +illusion_0.75L,sr,276,55.2,1.3035991191864014,-0.025876378640532494,0.5553393363952637,0.5485284924507141,0.7807717323303223,0.24212735891342163,0.0019128352869302034,1.8648604964255355e-05,0.0022843435872346163,0.0003752289048861712,0.0022387607023119926,-0.0003152136050630361,-0.003228272943994255,0.00018430509435678893,0.00018430509435678893,-3.228272943994255e-05,1.8430509435678894e-06,1.8430509435678894e-06,0.004318722058087587,0.00116992206312716,276 +illusion_0.75L,sr,277,55.4,1.2337870597839355,0.0835307389497757,0.5749494433403015,0.6121074557304382,0.8122494220733643,0.2784190773963928,0.0019109456334263086,1.805762258300092e-05,0.002281768945977092,0.00037318121758289635,0.002236845437437296,-0.000321254541631788,-0.003131035237196017,9.403642880806071e-05,9.403642880806071e-05,-3.131035237196017e-05,9.403642880806071e-07,9.403642880806071e-07,0.004322815220803022,0.001138634397648275,277 +illusion_0.75L,sr,278,55.6,1.1430920362472534,0.19441604614257812,0.6118826270103455,0.6345005631446838,0.8444965481758118,0.3113812208175659,0.0019079047488048673,1.7047423170879483e-05,0.002277250401675701,0.000370790105080232,0.002233956940472126,-0.00032831463613547385,-0.003748904224695704,0.0005835274342236331,0.0005835274342236331,-3.748904224695704e-05,5.835274342236331e-06,5.835274342236331e-06,0.004317114595323801,0.0010579300578683615,278 +illusion_0.75L,sr,279,55.8,1.0400079488754272,0.2932634949684143,0.653551459312439,0.6375095248222351,0.8777000308036804,0.3407902121543884,0.0019051982089877129,1.6148573195096105e-05,0.0022724641021341085,0.0003681165399029851,0.0022317685652524233,-0.00033563177566975355,-0.004345727902326915,0.0011047891156867676,0.0011047891156867676,-4.345727902326915e-05,1.1047891156867676e-05,1.1047891156867676e-05,0.004309931304305792,0.000931612157728523,279 +illusion_0.75L,sr,280,56.0,0.9379332661628723,0.36625397205352783,0.6900078654289246,0.6407912373542786,0.9118665456771851,0.3668336868286133,0.001904162927530706,1.5043390703795012e-05,0.002268946962431073,0.0003649021382443607,0.0022318647243082523,-0.00034273735946044326,-0.003828707401880418,0.0008488289632206034,0.0008488289632206034,-3.828707401880418e-05,8.488289632206033e-06,8.488289632206033e-06,0.004306346643716097,0.0007652023923583329,280 +illusion_0.75L,sr,281,56.2,0.8496696352958679,0.4056228697299957,0.7187308669090271,0.6504538059234619,0.9470469951629639,0.3897347152233124,0.00190573965664953,1.2956487807969097e-05,0.0022682766430079937,0.0003607634862419218,0.0022357101552188396,-0.0003497462021186948,-0.0028103152759379954,0.00027129723549515136,0.00027129723549515136,-2.8103152759379956e-05,2.7129723549515136e-06,2.7129723549515136e-06,0.00430266372859478,0.0005656927824020386,281 +illusion_0.75L,sr,282,56.4,0.7819855213165283,0.4129510223865509,0.7411332130432129,0.6644831299781799,0.9833409786224365,0.40964648127555847,0.0019086790271103382,1.0316562111256644e-05,0.002268922748044133,0.000355834374204278,0.0022415139246731997,-0.0003566754166968167,-0.00299446685688173,0.0006278716357212451,0.0006278716357212451,-2.99446685688173e-05,6.278716357212451e-06,6.278716357212451e-06,0.00429161824285984,0.0003413430822547525,282 +illusion_0.75L,sr,283,56.6,0.7338166236877441,0.39671337604522705,0.7586255669593811,0.6793510913848877,1.0208181142807007,0.42664849758148193,0.001911064377054572,7.969760190462694e-06,0.002268640324473381,0.00035083788679912686,0.0022469426039606333,-0.0003633559390436858,-0.0037340685018937485,0.0014268846847149859,0.0014268846847149859,-3.734068501893749e-05,1.4268846847149859e-05,1.4268846847149859e-05,0.004272329621016979,0.00010149206354981288,283 +illusion_0.75L,sr,284,56.8,0.699088990688324,0.36635246872901917,0.7717366218566895,0.6908401250839233,1.0595166683197021,0.44070446491241455,0.0019120894139632583,5.786556812381605e-06,0.0022665716242045164,0.0003459060098975897,0.002251117490231991,-0.0003694449842441827,-0.0033630617613836645,0.0014308552879546861,0.0014308552879546861,-3.363061761383665e-05,1.4308552879546862e-05,1.4308552879546862e-05,0.004253413062542677,-0.00014367327094078064,284 +illusion_0.75L,sr,285,57.0,0.6713101863861084,0.32793211936950684,0.7803992629051208,0.6930896639823914,1.0994287729263306,0.45163246989250183,0.0019115868490189314,3.0814546789770247e-06,0.0022624984849244356,0.0003409062046557665,0.0022536690812557936,-0.0003750166797544807,-0.002167988559633389,0.0008508508550146792,0.0008508508550146792,-2.1679885596333893e-05,8.508508550146791e-06,8.508508550146791e-06,0.004245383199304342,-0.0003834486415144056,285 +illusion_0.75L,sr,286,57.2,0.6465138792991638,0.2836870551109314,0.784232497215271,0.6789109110832214,1.1404401063919067,0.45909202098846436,0.0019110700814053416,-1.1640670294355004e-07,0.0022581489756703377,0.00033544734469614923,0.0022560309153050184,-0.00037979427725076675,-0.001702272136983576,0.0008292855333375937,0.0008292855333375937,-1.702272136983576e-05,8.292855333375937e-06,8.292855333375937e-06,0.004250668920576572,-0.0006070726667530835,286 +illusion_0.75L,sr,287,57.4,0.6237916350364685,0.23385944962501526,0.7828048467636108,0.641917884349823,1.1822509765625,0.4625757336616516,0.0019105046521872282,-3.0272381081886124e-06,0.0022537142504006624,0.00032988720340654254,0.002258220687508583,-0.0003835215466096997,-0.0021747497578697393,0.0015063675271869677,0.0015063675271869677,-2.1747497578697392e-05,1.5063675271869678e-05,1.5063675271869678e-05,0.004262279253453016,-0.0008042993140406907,287 +illusion_0.75L,sr,288,57.6,0.604575514793396,0.1786811500787735,0.7758328914642334,0.5794291496276855,1.2242794036865234,0.461340069770813,0.0019092126749455929,-5.206654350331519e-06,0.002248289529234171,0.0003247479035053402,0.0022593270987272263,-0.0003859099233523011,-0.0021339725622969317,0.001799317838639585,0.001799317838639585,-2.1339725622969317e-05,1.799317838639585e-05,1.799317838639585e-05,0.0042722816579043865,-0.0009660187060944736,288 +illusion_0.75L,sr,289,57.8,0.5916991233825684,0.11960374563932419,0.763111412525177,0.4937387704849243,1.2655205726623535,0.4543383717536926,0.0019067446701228619,-7.377648671536008e-06,0.002241723472252488,0.0003201665240339935,0.0022591345477849245,-0.00038710914668627083,-0.000668464623567306,0.0010331719272646958,0.0010331719272646958,-6.68464623567306e-06,1.0331719272646958e-05,1.0331719272646958e-05,0.004280176013708115,-0.0010848336387425661,289 +illusion_0.75L,sr,290,58.0,0.5884339809417725,0.05968655273318291,0.7442302107810974,0.3899993896484375,1.304376244544983,0.4401681125164032,0.00190445885527879,-1.0047951946035028e-05,0.002235559280961752,0.00031578951166011393,0.0022589401341974735,-0.00038742704782634974,0.0006704698378289485,0.00035302306410722566,0.00035302306410722566,6.7046983782894856e-06,3.5302306410722568e-06,3.5302306410722568e-06,0.004291605204343796,-0.0011554996017366648,290 +illusion_0.75L,sr,291,58.2,0.5972709059715271,0.0029890567529946566,0.7185865640640259,0.27232998609542847,1.338566780090332,0.41713646054267883,0.0019036605954170227,-1.2607551070686895e-05,0.0022315403912216425,0.00031172134913504124,0.00226026913151145,-0.0003869108040817082,0.0006098586691232304,0.0006890817566518603,0.0006890817566518603,6.0985866912323035e-06,6.890817566518603e-06,6.890817566518603e-06,0.004309208132326603,-0.0011751636629924178,291 +illusion_0.75L,sr,292,58.4,0.6184653043746948,-0.047137074172496796,0.6861277222633362,0.14196395874023438,1.3653059005737305,0.38346847891807556,0.0019053822616115212,-1.4221473975339904e-05,0.0022311084903776646,0.0003085153584834188,0.002264551352709532,-0.0003852727240882814,0.00020982137847637417,0.001246038433703387,0.001246038433703387,2.0982137847637418e-06,1.246038433703387e-05,1.246038433703387e-05,0.004326635040342808,-0.001143390778452158,292 +illusion_0.75L,sr,293,58.6,0.6490803360939026,-0.09012746065855026,0.6483933329582214,-0.0008786803227849305,1.3817200660705566,0.33766138553619385,0.0019085368840023875,-1.5212588550639339e-05,0.0022330014035105705,0.0003067806246690452,0.002270536497235298,-0.0003828451444860548,0.0011833068390105957,0.000755441634004303,0.000755441634004303,1.1833068390105956e-05,7.55441634004303e-06,7.55441634004303e-06,0.004333213437348604,-0.0010620126267895103,293 +illusion_0.75L,sr,294,58.8,0.6839168667793274,-0.1287073791027069,0.6091775298118591,-0.1532791554927826,1.3853529691696167,0.27880507707595825,0.0019112223526462913,-1.6496733223902993e-05,0.002234845655038953,0.00030661551863886416,0.002275714185088873,-0.0003804817097261548,0.0028746015239862477,-0.00029679037718024007,-0.00029679037718024007,2.8746015239862478e-05,-2.967903771802401e-06,-2.967903771802401e-06,0.004324445500969887,-0.0009348725434392691,294 +illusion_0.75L,sr,295,59.0,0.7183970808982849,-0.16658297181129456,0.574572741985321,-0.3067026734352112,1.3743317127227783,0.2066163867712021,0.0019124725367873907,-1.7965954612009227e-05,0.002235672902315855,0.00030787449213676155,0.002278907224535942,-0.00037863393663428724,0.00326792858268464,-0.00042531934202700775,-0.00042531934202700775,3.26792858268464e-05,-4.253193420270078e-06,-4.253193420270078e-06,0.004306653048843145,-0.0007675446104258299,295 +illusion_0.75L,sr,296,59.2,0.7508585453033447,-0.2053127884864807,0.5523155331611633,-0.44615304470062256,1.346684217453003,0.12118488550186157,0.0019120791694149375,-1.8533633920014836e-05,0.002235119231045246,0.0003108541131950915,0.002279683481901884,-0.0003770216426346451,0.0023954146788706943,0.0003358882448463059,0.0003358882448463059,2.3954146788706944e-05,3.358882448463059e-06,3.358882448463059e-06,0.004290517885237932,-0.000567082257475704,296 +illusion_0.75L,sr,297,59.4,0.7821328639984131,-0.2437325119972229,0.5499863624572754,-0.5528370141983032,1.299594521522522,0.0232295710593462,0.0019112869631499052,-1.804084240575321e-05,0.0022343480959534645,0.0003155561862513423,0.00227931747213006,-0.00037500818143598735,0.0024380714940861817,0.0003691867595770268,0.0003691867595770268,2.4380714940861816e-05,3.691867595770268e-06,3.691867595770268e-06,0.004280740395188332,-0.00034181104274466634,297 +illusion_0.75L,sr,298,59.6,0.813545286655426,-0.27991941571235657,0.5707155466079712,-0.6137821674346924,1.230563759803772,-0.08409705758094788,0.0019104660023003817,-1.7542486602906138e-05,0.0022338645067065954,0.00032143190037459135,0.0022783083841204643,-0.0003728097944986075,0.0038254377870908726,-0.0006379378815105467,-0.0006379378815105467,3.825437787090873e-05,-6.379378815105468e-06,-6.379378815105468e-06,0.004273268859833479,-0.00010113600001204759,298 +illusion_0.75L,sr,299,59.8,0.8457755446434021,-0.3127920627593994,0.6084255576133728,-0.6345760822296143,1.1409401893615723,-0.19275496900081635,0.0019088868284597993,-1.739427534630522e-05,0.0022326959297060966,0.0003278943186160177,0.002275564009323716,-0.00037075637374073267,0.004374350589380398,-0.0010698592971679945,-0.0010698592971679945,4.374350589380398e-05,-1.0698592971679945e-05,-1.0698592971679945e-05,0.004262732807546854,0.00014469395682681352,299 +illusion_0.75L,sr,300,60.0,0.878954291343689,-0.3421561121940613,0.6503618359565735,-0.6371381282806396,1.038625955581665,-0.28985607624053955,0.001906167366541922,-1.6587986465310678e-05,0.002230640733614564,0.0003348973114043474,0.002270843368023634,-0.00036857262603007257,0.0032411522205814808,-0.00030796548478713784,-0.00030796548478713784,3.241152220581481e-05,-3.0796548478713785e-06,-3.0796548478713785e-06,0.0042510125786066055,0.00038492129533551633,300 +illusion_0.75L,sr,301,60.2,0.9130620360374451,-0.36817196011543274,0.6867188215255737,-0.6405326128005981,0.9365638494491577,-0.36197784543037415,0.001903391326777637,-1.4616703992942348e-05,0.002228806260973215,0.0003423499583732337,0.002265459392219782,-0.0003656037151813507,0.0024713730473158724,0.00013178532914626465,0.00013178532914626465,2.4713730473158726e-05,1.3178532914626464e-06,1.3178532914626464e-06,0.004246690776199102,0.0006087439251132309,301 +illusion_0.75L,sr,302,60.4,0.9481096863746643,-0.3910544216632843,0.715126633644104,-0.6503450870513916,0.8474840521812439,-0.4013030529022217,0.001902029849588871,-1.2396953934512567e-05,0.002228755736723542,0.00034978589974343777,0.002261146204546094,-0.0003616908215917647,0.0032993026719408615,-0.000654161860983108,-0.000654161860983108,3.2993026719408615e-05,-6.541618609831081e-06,-6.541618609831081e-06,0.004255807958543301,0.000805890653282404,302 +illusion_0.75L,sr,303,60.6,0.9842016100883484,-0.41096335649490356,0.737069845199585,-0.6643862724304199,0.7785148620605469,-0.40900254249572754,0.0019031089032068849,-1.0544811630097684e-05,0.002232116647064686,0.0003564763464964926,0.002259527798742056,-0.00035710755037143826,0.003988861056578138,-0.0013724777123240509,-0.0013724777123240509,3.988861056578138e-05,-1.3724777123240509e-05,-1.3724777123240509e-05,0.004274525213986635,0.0009672442683950067,303 +illusion_0.75L,sr,304,60.8,1.0214776992797852,-0.42796751856803894,0.7540347576141357,-0.6790703535079956,0.7291562557220459,-0.3930850625038147,0.001905838493257761,-8.620514563517645e-06,0.0022378794383257627,0.0003623767988756299,0.0022596297785639763,-0.00035216897958889604,0.0032649754808711027,-0.0010795628386002822,-0.0010795628386002822,3.264975480871103e-05,-1.0795628386002821e-05,-1.0795628386002821e-05,0.004292297642678022,0.0010854192078113556,304 +illusion_0.75L,sr,305,61.0,1.0600308179855347,-0.44200649857521057,0.7665987610816956,-0.6901307106018066,0.6937324404716492,-0.36275917291641235,0.0019084833329543471,-5.926548510615248e-06,0.002243770519271493,0.0003679627552628517,0.0022593894973397255,-0.00034690205939114094,0.0020676418063830526,-0.0004694584400759105,-0.0004694584400759105,2.0676418063830526e-05,-4.694584400759105e-06,-4.694584400759105e-06,0.004302178509533405,0.0011552009964361787,305 +illusion_0.75L,sr,306,61.2,1.0998620986938477,-0.4528839886188507,0.7747295498847961,-0.691714882850647,0.665859043598175,-0.32414668798446655,0.0019098625052720308,-2.7368432711227797e-06,0.0022483966313302517,0.00037334696389734745,0.002257654443383217,-0.00034134529414586723,0.0020295291767697572,-0.0007403266339134178,-0.0007403266339134178,2.0295291767697572e-05,-7.4032663391341775e-06,-7.4032663391341775e-06,0.004306729417294264,0.0011737841414287686,306 +illusion_0.75L,sr,307,61.4,1.1408594846725464,-0.4602619409561157,0.7781029343605042,-0.6767378449440002,0.6414957642555237,-0.27967435121536255,0.0019097736803814769,-1.599957677456132e-08,0.002251360798254609,0.00037804883322678506,0.0022541501093655825,-0.0003359189722687006,0.00280498615169714,-0.0016245835730053244,-0.0016245835730053244,2.8049861516971398e-05,-1.6245835730053244e-05,-1.6245835730053244e-05,0.004313030280172825,0.0011407959973439574,307 +illusion_0.75L,sr,308,61.6,1.182708978652954,-0.46362343430519104,0.7763555645942688,-0.638980507850647,0.6196013689041138,-0.22977767884731293,0.001909188344143331,2.1305097561707953e-06,0.002253708429634571,0.0003815267118625343,0.002249967074021697,-0.0003308538580313325,0.002514452670335934,-0.0017250626773689728,-0.0017250626773689728,2.5144526703359338e-05,-1.7250626773689728e-05,-1.7250626773689728e-05,0.004322762601077557,0.0010581414680927992,308 +illusion_0.75L,sr,309,61.8,1.224776029586792,-0.4622126519680023,0.7692335247993469,-0.5759022235870361,0.6014734506607056,-0.1748095452785492,0.0019087247783318162,4.50517154604313e-06,0.002256090985611081,0.00038383444189094007,0.0022458676248788834,-0.0003259896475356072,0.0009814339468221253,-0.0009089246382933689,-0.0009089246382933689,9.814339468221253e-06,-9.089246382933689e-06,-9.089246382933689e-06,0.00432894192636013,0.0009297445067204535,309 +illusion_0.75L,sr,310,62.0,1.2659791707992554,-0.4549529552459717,0.7565104961395264,-0.4898398518562317,0.589823842048645,-0.1162753701210022,0.001907739439047873,7.3918331509048585e-06,0.002257543383166194,0.00038545296411029994,0.0022411104291677475,-0.0003212457522749901,-3.61229468027538e-05,-0.0004719420103940532,-0.0004719420103940532,-3.61229468027538e-07,-4.719420103940532e-06,-4.719420103940532e-06,0.004323208704590797,0.0007612616172991693,310 +illusion_0.75L,sr,311,62.2,1.3046507835388184,-0.44044890999794006,0.7377209663391113,-0.3859221339225769,0.5877978801727295,-0.05721769854426384,0.0019056083401665092,1.0047663636214565e-05,0.0022575431503355503,0.00038635521195828915,0.0022353462409228086,-0.0003169069532305002,0.00025213436216173744,-0.0009881952157243593,-0.0009881952157243593,2.5213436216173744e-06,-9.881952157243593e-06,-9.881952157243593e-06,0.0043054320849478245,0.0005598256830126047,311 +illusion_0.75L,sr,312,62.4,1.3384828567504883,-0.4170585870742798,0.7122151255607605,-0.26828432083129883,0.5977335572242737,-0.0015974387060850859,0.0019033073913305998,1.177604281110689e-05,0.002257124986499548,0.0003861458972096443,0.002229678677394986,-0.0003134842263534665,0.00047084449070171,-0.0014312342316201935,-0.0014312342316201935,4.7084449070171e-06,-1.4312342316201936e-05,-1.4312342316201936e-05,0.0042846668511629105,0.0003338336537126452,312 +illusion_0.75L,sr,313,62.6,1.3646777868270874,-0.38309037685394287,0.6798678040504456,-0.13824023306369781,0.6196576356887817,0.047454215586185455,0.0019021503394469619,1.3182624570617918e-05,0.0022578230127692223,0.0003848205378744751,0.0022256458178162575,-0.0003109722747467458,-0.0007552170327669756,-0.0007797983559469369,-0.0007797983559469369,-7.5521703276697565e-06,-7.797983559469369e-06,-7.797983559469369e-06,0.004270360339432955,9.274937474401668e-05,313 +illusion_0.75L,sr,314,62.8,1.3804349899291992,-0.3371340036392212,0.6421788930892944,0.003927319776266813,0.650485634803772,0.08964546024799347,0.0019032374257221818,1.4966121852921788e-05,0.002261093584820628,0.0003828923508990556,0.002224856289103627,-0.00030911489739082754,-0.002172067195792951,3.814569455777572e-05,3.814569455777572e-05,-2.172067195792951e-05,3.814569455777572e-07,3.814569455777572e-07,0.004263774491846561,-0.00015313613403122872,314 +illusion_0.75L,sr,315,63.0,1.383489966392517,-0.2784023582935333,0.6029540300369263,0.15532998740673065,0.6850926280021667,0.12783434987068176,0.0019060325575992465,1.661793066887185e-05,0.0022662384435534477,0.00038072161260060966,0.0022268013563007116,-0.00030817638617008924,-0.00219814858642842,-0.00014059485055783333,-0.00014059485055783333,-2.19814858642842e-05,-1.4059485055783334e-06,-1.4059485055783334e-06,0.004259183071553707,-0.00039304280653595924,315 +illusion_0.75L,sr,316,63.2,1.3721916675567627,-0.20676788687705994,0.5682744383811951,0.30761319398880005,0.7191192507743835,0.1656240075826645,0.0019087546970695257,1.7403419406036846e-05,0.002270965836942196,0.00037846885970793664,0.0022292304784059525,-0.00030887569300830364,-0.001710377635946052,-0.0006577086457660343,-0.0006577086457660343,-1.710377635946052e-05,-6.577086457660343e-06,-6.577086457660343e-06,0.004253040533512831,-0.0006161675555631518,316 +illusion_0.75L,sr,317,63.4,1.3447942733764648,-0.12243959307670593,0.5458518862724304,0.44613033533096313,0.7511157393455505,0.20438896119594574,0.00191025179810822,1.7502881746622734e-05,0.00227395910769701,0.00037623857497237623,0.0022308072075247765,-0.0003114602295681834,-0.002187757839754244,-0.00041647243208652035,-0.00041647243208652035,-2.1877578397542437e-05,-4.164724320865204e-06,-4.164724320865204e-06,0.004250074736773968,-0.0008122602594085038,317 +illusion_0.75L,sr,318,63.6,1.2986613512039185,-0.02610584907233715,0.5433110594749451,0.5524458289146423,0.7820279002189636,0.24288171529769897,0.0019100963836535811,1.7599673810764216e-05,0.002274556551128626,0.0003742283151950687,0.00223092851229012,-0.0003156479215249419,-0.003276149005651187,0.00032002472176472993,0.00032002472176472993,-3.276149005651187e-05,3.2002472176472996e-06,3.2002472176472996e-06,0.004258817993104458,-0.0009722463437356055,318 +illusion_0.75L,sr,319,63.8,1.2312207221984863,0.07941053062677383,0.5639764070510864,0.6135753393173218,0.8132081627845764,0.27917736768722534,0.0019092683214694262,1.7641297745285556e-05,0.0022736950777471066,0.0003724264679476619,0.0022306081373244524,-0.00032091012690216303,-0.0035111809358493516,0.0004707628730498507,0.0004707628730498507,-3.511180935849352e-05,4.707628730498507e-06,4.707628730498507e-06,0.004281363915652037,-0.0010888022370636463,319 +illusion_0.75L,sr,320,64.0,1.143280267715454,0.18671013414859772,0.6019655466079712,0.6346404552459717,0.8453071713447571,0.31219249963760376,0.00190848542843014,1.7159682101919316e-05,0.0022721649147570133,0.0003705031122080982,0.0022306544706225395,-0.0003269712906330824,-0.0029310623098338998,6.77707596508613e-05,6.77707596508613e-05,-2.9310623098338997e-05,6.77707596508613e-07,6.77707596508613e-07,0.004309054929763079,-0.001156791695393622,320 +illusion_0.75L,sr,321,64.2,1.0419323444366455,0.283565491437912,0.6444686055183411,0.6372084617614746,0.8784101009368896,0.3417148292064667,0.0019071976421400905,1.5838813851587474e-05,0.0022692459169775248,0.0003681870875880122,0.0022302730940282345,-0.00033389285090379417,-0.002485536933521701,-0.00018509451159480841,-0.00018509451159480841,-2.485536933521701e-05,-1.8509451159480842e-06,-1.8509451159480842e-06,0.004329311661422253,-0.0011734996223822236,321 +illusion_0.75L,sr,322,64.4,0.9395528435707092,0.3567464351654053,0.6813953518867493,0.6404528021812439,0.9124547839164734,0.36790093779563904,0.0019048438407480717,1.4020874004927464e-05,0.002264538547024131,0.0003653933817986399,0.00222895760089159,-0.00034135114401578903,-0.00289484506627833,0.0002416439054091814,0.0002416439054091814,-2.89484506627833e-05,2.416439054091814e-06,2.416439054091814e-06,0.004336345009505749,-0.0011386508122086525,322 +illusion_0.75L,sr,323,64.6,0.8489570021629333,0.3979567587375641,0.7101792097091675,0.6501598358154297,0.9474279284477234,0.3909647762775421,0.0019021604675799608,1.2386346497805789e-05,0.002258890075609088,0.00036215840373188257,0.002227464225143194,-0.00034874508855864406,-0.0035501604294193995,0.0008921385504752528,0.0008921385504752528,-3.5501604294193994e-05,8.921385504752528e-06,8.921385504752528e-06,0.004334232769906521,-0.0010542497038841248,323 +illusion_0.75L,sr,324,64.8,0.7779012322425842,0.40752166509628296,0.7322530150413513,0.6641546487808228,0.9833880662918091,0.41106483340263367,0.0019005393842235208,1.0605191164358985e-05,0.002253999002277851,0.00035833517904393375,0.0022274700459092855,-0.00035553795169107616,-0.003129772980084749,0.0007836595362919405,0.0007836595362919405,-3.129772980084749e-05,7.836595362919405e-06,7.836595362919405e-06,0.004329643212258816,-0.0009243153617717326,324 +illusion_0.75L,sr,325,65.0,0.7266673445701599,0.3928276300430298,0.749143660068512,0.6787943243980408,1.0204627513885498,0.42824989557266235,0.0019010554533451796,8.231799256464e-06,0.0022513659205287695,0.000353675102815032,0.0022303378209471703,-0.0003616354370024055,-0.0023346115491072635,0.0004339680442651747,0.0004339680442651747,-2.3346115491072634e-05,4.339680442651747e-06,4.339680442651747e-06,0.00432319100946188,-0.0007545904372818768,325 +illusion_0.75L,sr,326,65.2,0.6900830268859863,0.3629939556121826,0.7615320086479187,0.6898161172866821,1.058797836303711,0.4424435794353485,0.0019035391742363572,5.3890335038886406e-06,0.002250978257507086,0.0003481558815110475,0.0022358717396855354,-0.00036715302849188447,-0.002210517820393814,0.0006104406247159806,0.0006104406247159806,-2.210517820393814e-05,6.104406247159806e-06,6.104406247159806e-06,0.004309643525630236,-0.0005522798164747655,326 +illusion_0.75L,sr,327,65.4,0.6618196964263916,0.3244345486164093,0.769481360912323,0.6914576888084412,1.098449468612671,0.45345404744148254,0.0019062641076743603,2.6836369215743616e-06,0.00225081923417747,0.000342415674822405,0.0022418738808482885,-0.0003720819659065455,-0.002671193974090099,0.0012402642353081111,0.0012402642353081111,-2.671193974090099e-05,1.2402642353081112e-05,1.2402642353081112e-05,0.004286581184715033,-0.0003258340584579855,327 +illusion_0.75L,sr,328,65.6,0.6376148462295532,0.2799227833747864,0.7727413177490234,0.6767436265945435,1.1393235921859741,0.4609561860561371,0.0019079684279859066,3.863123936298507e-07,0.002249495591968298,0.00033700381754897535,0.002246880205348134,-0.00037617041380144656,-0.002629461065683178,0.0015099065191508353,0.0015099065191508353,-2.629461065683178e-05,1.5099065191508352e-05,1.5099065191508352e-05,0.004260983318090439,-8.474913192912936e-05,328 +illusion_0.75L,sr,329,65.8,0.616175651550293,0.23008961975574493,0.7710174322128296,0.6394716501235962,1.1811113357543945,0.46442916989326477,0.0019081973005086184,-1.988896201510215e-06,0.0022464673966169357,0.0003319784882478416,0.0022502909414470196,-0.0003795252414420247,-0.0015910989570245854,0.0010501083194847391,0.0010501083194847391,-1.5910989570245854e-05,1.0501083194847392e-05,1.0501083194847392e-05,0.004245322663336992,0.00016067505930550396,329 +illusion_0.75L,sr,330,66.0,0.5986131429672241,0.1753300428390503,0.7641125321388245,0.5769882798194885,1.2231823205947876,0.4630918502807617,0.0019077096367254853,-4.8012529987317976e-06,0.002242553047835827,0.00032703723991289735,0.0022527361288666725,-0.00038221661816351116,-0.0006140102110765342,0.0006409779096656553,0.0006409779096656553,-6.140102110765342e-06,6.4097790966565535e-06,6.4097790966565535e-06,0.004246708005666733,0.0003996735031250864,330 +illusion_0.75L,sr,331,66.2,0.5874999761581421,0.1171165481209755,0.7518038749694824,0.4914943277835846,1.2644292116165161,0.45588135719299316,0.0019073460716754198,-7.512548563681776e-06,0.0022389038931578398,0.0003222678496968001,0.002255133120343089,-0.00038409463013522327,-0.0006119225900477511,0.0009496406731469434,0.0009496406731469434,-6.119225900477511e-06,9.496406731469434e-06,9.496406731469434e-06,0.004260779824107885,0.0006214812165126204,331 +illusion_0.75L,sr,332,66.4,0.58589106798172,0.058436065912246704,0.7335906028747559,0.3881075382232666,1.3031506538391113,0.4414418935775757,0.0019065707456320524,-9.666420737630688e-06,0.0022348558995872736,0.0003181356587447226,0.002256740117445588,-0.0003850171633530408,-0.0006874145772747531,0.0013004388217469753,0.0013004388217469753,-6.874145772747531e-06,1.3004388217469754e-05,1.3004388217469754e-05,0.00427695456892252,0.0008159072604030371,332 +illusion_0.75L,sr,333,66.6,0.5960827469825745,0.0031680252868682146,0.7087447643280029,0.27109143137931824,1.3370203971862793,0.4181745648384094,0.00190478446893394,-1.1412785170250572e-05,0.002229875884950161,0.00031494323047809303,0.002256999723613262,-0.00038503631367348135,3.064684332751075e-05,0.0010447931268159454,0.0010447931268159454,3.0646843327510746e-07,1.0447931268159454e-05,1.0447931268159454e-05,0.004289029631763697,0.000973953865468502,333 +illusion_0.75L,sr,334,66.8,0.6181282997131348,-0.04561319202184677,0.677030622959137,0.1418946236371994,1.3632540702819824,0.3844286799430847,0.0019025362562388182,-1.3217957530287094e-05,0.002224660012871027,0.000312583870254457,0.0022564982064068317,-0.00038437824696302414,0.001210646855284013,0.0004269735716464669,0.0004269735716464669,1.210646855284013e-05,4.269735716464669e-06,4.269735716464669e-06,0.004299434833228588,0.0010883876821026206,334 +illusion_0.75L,sr,335,67.0,0.6489718556404114,-0.08759652078151703,0.6397608518600464,0.0007977938512340188,1.3790678977966309,0.3388637602329254,0.0019010687246918678,-1.5107004401215818e-05,0.0022207582369446754,0.00031087512616068125,0.0022565918043255806,-0.0003831968060694635,0.0017895118537169762,0.00022847409881144792,0.00022847409881144792,1.7895118537169762e-05,2.2847409881144794e-06,2.2847409881144794e-06,0.0043129948899149895,0.0011541711864992976,335 +illusion_0.75L,sr,336,67.2,0.6835086345672607,-0.12559032440185547,0.6005623936653137,-0.14952988922595978,1.3822494745254517,0.2807897627353668,0.001901559648104012,-1.6505915482412092e-05,0.002219710499048233,0.00031001801835373044,0.002258707070723176,-0.0003814107913058251,0.0015385716572431198,0.00060910025607748,0.00060910025607748,1.53857165724312e-05,6.0910025607748e-06,6.0910025607748e-06,0.0043281856924295425,0.0011686912039294839,336 +illusion_0.75L,sr,337,67.4,0.7174012660980225,-0.1632131040096283,0.5654197931289673,-0.30117642879486084,1.3713220357894897,0.21017631888389587,0.0019038596656173468,-1.7074100469471887e-05,0.0022215249482542276,0.00031042209593579173,0.0022628644946962595,-0.0003790008195210248,0.0015393083721500292,0.0007628412290381567,0.0007628412290381567,1.5393083721500293e-05,7.628412290381567e-06,7.628412290381567e-06,0.004336609039455652,0.001131771714426577,337 +illusion_0.75L,sr,338,67.6,0.749199628829956,-0.2019197791814804,0.5419999361038208,-0.44006478786468506,1.3447996377944946,0.12731564044952393,0.0019065531669184566,-1.737708953442052e-05,0.0022243112325668335,0.0003123522619716823,0.0022671539336442947,-0.00037646424607373774,0.002506138369531938,0.00016150984533763388,0.00016150984533763388,2.506138369531938e-05,1.6150984533763389e-06,1.6150984533763389e-06,0.004331659525632858,0.0010455084266141057,338 +illusion_0.75L,sr,339,67.8,0.7798700928688049,-0.24050864577293396,0.5380440950393677,-0.5480818748474121,1.300277590751648,0.03285014256834984,0.0019082040525972843,-1.7832790035754442e-05,0.002226474229246378,0.0003156574093736708,0.0022698603570461273,-0.00037427336792461574,0.003253453930084506,-0.00031830875748489057,-0.00031830875748489057,3.253453930084506e-05,-3.183087574848906e-06,-3.183087574848906e-06,0.004316441714763641,0.0009139995672740042,339 +illusion_0.75L,sr,340,68.0,0.8108229041099548,-0.2770255208015442,0.557381272315979,-0.6116411089897156,1.2351171970367432,-0.07076825946569443,0.0019083592342212796,-1.7871392628876492e-05,0.0022273967042565346,0.00032023797393776476,0.002270270371809602,-0.00037249195156618953,0.0028089763299158563,3.7187419869990496e-05,3.7187419869990496e-05,2.8089763299158564e-05,3.7187419869990495e-07,3.7187419869990495e-07,0.004301527515053749,0.0007430499535985291,340 +illusion_0.75L,sr,341,68.2,0.8427685499191284,-0.31031665205955505,0.5948414206504822,-0.6344364285469055,1.1495152711868286,-0.17688685655593872,0.0019075978780165315,-1.7065116480807774e-05,0.0022276011295616627,0.00032606784952804446,0.0022689697798341513,-0.0003705652488861233,0.0022612505410860434,0.00041760027199343533,0.00041760027199343533,2.2612505410860434e-05,4.176002719934353e-06,4.176002719934353e-06,0.004294632934033871,0.0005399071960709989,341 +illusion_0.75L,sr,342,68.4,0.87579745054245,-0.3401264250278473,0.637768030166626,-0.6372972726821899,1.0495988130569458,-0.27402544021606445,0.001906837336719036,-1.5592167983413674e-05,0.002228047698736191,0.00033286024699918926,0.002267039380967617,-0.0003681484959088266,0.002551266337969156,0.00012952714448853653,0.00012952714448853653,2.551266337969156e-05,1.2952714448853653e-06,1.2952714448853653e-06,0.004293559584766626,0.00031304333242587745,342 +illusion_0.75L,sr,343,68.6,0.9098137617111206,-0.36660727858543396,0.6755194067955017,-0.6400424838066101,0.9470411539077759,-0.3491387665271759,0.0019058111356571317,-1.4227664905774873e-05,0.0022282928694039583,0.0003400020068511367,0.0022640826646238565,-0.0003654758620541543,0.003421267885447686,-0.0006303660142599685,-0.0006303660142599685,3.421267885447686e-05,-6.303660142599685e-06,-6.303660142599685e-06,0.004290138371288776,7.195398939074948e-05,343 +illusion_0.75L,sr,344,68.8,0.9447632431983948,-0.3899811804294586,0.7049944996833801,-0.6492794752120972,0.8547056317329407,-0.3932977020740509,0.001903799013234675,-1.2973456250620075e-05,0.0022276663221418858,0.00034709309693425894,0.002259385772049427,-0.0003626889083534479,0.0033139844306361473,-0.0007071409927944805,-0.0007071409927944805,3.3139844306361474e-05,-7.071409927944805e-06,-7.071409927944805e-06,0.00428050896152854,-0.0001730822114041075,344 +illusion_0.75L,sr,345,69.0,0.9806769490242004,-0.41039058566093445,0.7274971008300781,-0.663044810295105,0.7811331748962402,-0.4057421088218689,0.001901301322504878,-1.0899446351686493e-05,0.0022266998421400785,0.00035404894151724875,0.002253582701086998,-0.0003593159781303257,0.00218583415926088,-7.066364667223171e-05,-7.066364667223171e-05,2.18583415926088e-05,-7.066364667223172e-07,-7.066364667223172e-07,0.0042700087651610374,-0.00041134055936709046,345 +illusion_0.75L,sr,346,69.2,1.0176440477371216,-0.4278704822063446,0.7445899248123169,-0.6776641011238098,0.7275624871253967,-0.3930615484714508,0.001899479073472321,-8.145525498548523e-06,0.002226660493761301,0.0003607085964176804,0.0022482110653072596,-0.00035497755743563175,0.0020503438254720584,-0.000206298989802331,-0.000206298989802331,2.0503438254720583e-05,-2.06298989802331e-06,-2.06298989802331e-06,0.004267278593033552,-0.000632112380117178,346 +illusion_0.75L,sr,347,69.4,1.0557856559753418,-0.44235923886299133,0.7570057511329651,-0.6889557838439941,0.6893999576568604,-0.3642897307872772,0.0018995319260284305,-5.527076609723736e-06,0.002228997414931655,0.00036649845424108207,0.0022448513191193342,-0.0003498280420899391,0.0028658041042373267,-0.0010699781027000647,-0.0010699781027000647,2.8658041042373268e-05,-1.0699781027000647e-05,-1.0699781027000647e-05,0.004274563863873482,-0.0008252749685198069,347 +illusion_0.75L,sr,348,69.6,1.0952092409133911,-0.4536799192428589,0.7649111747741699,-0.6913268566131592,0.6603960394859314,-0.3262260854244232,0.0019015882862731814,-3.3972180517594097e-06,0.002234081272035837,0.0003711101016961038,0.0022439020685851574,-0.0003443141176830977,0.0030687945217678283,-0.0014980996671168766,-0.0014980996671168766,3.068794521767828e-05,-1.4980996671168767e-05,-1.4980996671168767e-05,0.004285456147044897,-0.0009819063125178218,348 +illusion_0.75L,sr,349,69.8,1.135879397392273,-0.4615028500556946,0.768160879611969,-0.6778990030288696,0.6360414028167725,-0.282047837972641,0.0019043347565457225,-1.0838853086170275e-06,0.002240174449980259,0.00037478626472875476,0.0022437043953686953,-0.0003387544711586088,0.001955822149591384,-0.0009685969289843524,-0.0009685969289843524,1.955822149591384e-05,-9.685969289843525e-06,-9.685969289843525e-06,0.004292575176805258,-0.0010948515264317393,349 +illusion_0.75L,sr,350,70.0,1.1775312423706055,-0.4652964770793915,0.7665367126464844,-0.6423669457435608,0.6147210597991943,-0.2326045036315918,0.0019062957726418972,1.7741160718287574e-06,0.0022454930003732443,0.0003779909748118371,0.0022426792420446873,-0.00033325448748655617,0.0009862331965809572,-0.0005577945174455538,-0.0005577945174455538,9.862331965809572e-06,-5.577945174455538e-06,-5.577945174455538e-06,0.004296126775443554,-0.0011591494549065828,350 +illusion_0.75L,sr,351,70.2,1.2195594310760498,-0.46430012583732605,0.7598939538002014,-0.5817610025405884,0.5972931385040283,-0.17833204567432404,0.0019068819237872958,4.643623469746672e-06,0.0022492539137601852,0.00038074684562161565,0.002240256406366825,-0.0003279830561950803,0.0010928383255489715,-0.0009461360396025973,-0.0009461360396025973,1.0928383255489715e-05,-9.461360396025973e-06,-9.461360396025973e-06,0.0043031927198171616,-0.0011722566559910774,351 +illusion_0.75L,sr,352,70.4,1.2608965635299683,-0.4574803113937378,0.7480642795562744,-0.4979246258735657,0.5861888527870178,-0.12062378972768784,0.0019065469969063997,6.897774255776312e-06,0.002251794096082449,0.0003826744796242565,0.0022368328645825386,-0.0003233211173210293,0.0013692844626096105,-0.0014523863389203128,-0.0014523863389203128,1.3692844626096105e-05,-1.4523863389203129e-05,-1.4523863389203129e-05,0.00431835139170289,-0.001134056132286787,352 +illusion_0.75L,sr,353,70.6,1.2998590469360352,-0.44351187348365784,0.7305559515953064,-0.39585304260253906,0.5843852758407593,-0.06232190132141113,0.0019062347710132599,8.762955076235812e-06,0.0022541768848896027,0.00038356392178684473,0.0022335294634103775,-0.0003193684678990394,0.0005762806143616815,-0.0011563300770276175,-0.0011563300770276175,5.762806143616815e-06,-1.1563300770276175e-05,-1.1563300770276175e-05,0.004336398560553789,-0.0010466892272233963,353 +illusion_0.75L,sr,354,70.8,1.3341307640075684,-0.42082148790359497,0.7065882086753845,-0.28000113368034363,0.5942029356956482,-0.007197514176368713,0.0019056671299040318,1.0929446034424473e-05,0.0022559864446520805,0.00038378164754249156,0.002230067504569888,-0.0003160484484396875,-0.0007662763932867815,-0.0004399737432314293,-0.0004399737432314293,-7.662763932867815e-06,-4.399737432314293e-06,-4.399737432314293e-06,0.004345819354057312,-0.0009142835042439401,354 +illusion_0.75L,sr,355,71.0,1.360934853553772,-0.38779404759407043,0.675764262676239,-0.15208221971988678,0.6158337593078613,0.04164474084973335,0.0019041623454540968,1.3193089216656517e-05,0.0022564001847058535,0.00038365929503925145,0.0022258346434682608,-0.0003134064609184861,-0.0011080605809726807,-0.0004441317707230552,-0.0004441317707230552,-1.1080605809726806e-05,-4.441317707230552e-06,-4.441317707230552e-06,0.004339585080742836,-0.0007426568772643805,355 +illusion_0.75L,sr,356,71.2,1.3774892091751099,-0.34313011169433594,0.6391515135765076,-0.012392986565828323,0.6464054584503174,0.08371103554964066,0.0019020322943106294,1.4785474377276842e-05,0.0022557436022907495,0.000382970436476171,0.002221227390691638,-0.00031176774064078927,-0.0006785362963861175,-0.0009887062176009154,-0.0009887062176009154,-6.785362963861175e-06,-9.887062176009154e-06,-9.887062176009154e-06,0.004321560729295015,-0.0005390531150624156,356 +illusion_0.75L,sr,357,71.4,1.381568193435669,-0.28617537021636963,0.600080668926239,0.1367575079202652,0.6808661818504333,0.12163970619440079,0.001900315284729004,1.5630175767000765e-05,0.0022552586160600185,0.0003814799420069903,0.002217500237748027,-0.000311351876007393,-0.00099922425358899,-0.000944050173520318,-0.000944050173520318,-9.992242535889901e-06,-9.44050173520318e-06,-9.44050173520318e-06,0.004301773849874735,-0.000311925308778882,357 +illusion_0.75L,sr,358,71.6,1.37172532081604,-0.2169380635023117,0.5642685890197754,0.28811922669410706,0.7147298455238342,0.1590895652770996,0.0019002275075763464,1.642714414629154e-05,0.002256374340504408,0.0003793762589339167,0.0022161253727972507,-0.0003118993772659451,-0.0022164220404054524,-0.00020126536477750934,-0.00020126536477750934,-2.2164220404054525e-05,-2.0126536477750935e-06,-2.0126536477750935e-06,0.004286319483071566,-7.073696906445548e-05,358 +illusion_0.75L,sr,359,71.8,1.3466883897781372,-0.13574808835983276,0.5392730236053467,0.42838919162750244,0.7463945746421814,0.1977216899394989,0.001902000280097127,1.7434264009352773e-05,0.0022595038171857595,0.0003771234769374132,0.0022176874335855246,-0.0003132218262180686,-0.0028457471409042354,0.00014305483542460806,0.00014305483542460806,-2.8457471409042355e-05,1.4305483542460806e-06,1.4305483542460806e-06,0.004273382015526295,0.00017427514831069857,359 +illusion_0.75L,sr,360,72.0,1.3043164014816284,-0.04319490119814873,0.5329997539520264,0.5398268699645996,0.7767937183380127,0.23646211624145508,0.0019046026282012463,1.785686799848918e-05,0.0022631813772022724,0.00037484883796423674,0.002220811555162072,-0.0003156781895086169,-0.002198079741657484,-0.0004127847491149639,-0.0004127847491149639,-2.1980797416574842e-05,-4.127847491149639e-06,-4.127847491149639e-06,0.004259394947439432,0.0004124342813156545,360 +illusion_0.75L,sr,361,72.2,1.24193274974823,0.058653246611356735,0.5500200986862183,0.6078637838363647,0.807422935962677,0.27330026030540466,0.0019063918152824044,1.7307331290794536e-05,0.0022654980421066284,0.0003725134884007275,0.0022235156502574682,-0.00031977094477042556,-0.0018310733724381453,-0.0007114274515444483,-0.0007114274515444483,-1.8310733724381453e-05,-7.114274515444483e-06,-7.114274515444483e-06,0.004247340373694897,0.000633081654086709,361 +illusion_0.75L,sr,362,72.4,1.1591007709503174,0.16394662857055664,0.5862882137298584,0.6339526176452637,0.8390846252441406,0.3069836497306824,0.00190687645226717,1.6408837836934254e-05,0.0022658747620880604,0.0003701775858644396,0.002225165721029043,-0.0003252461610827595,-0.0026117470954917094,-0.00011469846955831225,-0.00011469846955831225,-2.6117470954917094e-05,-1.1469846955831225e-06,-1.1469846955831225e-06,0.004246612079441547,0.0008261421462520957,362 +illusion_0.75L,sr,363,72.6,1.0609019994735718,0.26203811168670654,0.6295644640922546,0.637681245803833,0.8719270825386047,0.3372068703174591,0.0019062369829043746,1.568994775880128e-05,0.0022643518168479204,0.0003680018417071551,0.0022258416283875704,-0.0003315616340842098,-0.0033037263390531257,0.0004595953606729049,0.0004595953606729049,-3.303726339053126e-05,4.595953606729049e-06,4.595953606729049e-06,0.004263712093234062,0.0009827353060245514,363 +illusion_0.75L,sr,364,72.8,0.9581884145736694,0.3400537967681885,0.668476402759552,0.639812707901001,0.9058467149734497,0.36410456895828247,0.0019055695738643408,1.4645887858932838e-05,0.002262089168652892,0.00036568052018992603,0.002226723823696375,-0.0003382285067345947,-0.0027796529821446647,0.00017894882266411907,0.00017894882266411907,-2.7796529821446647e-05,1.7894882266411909e-06,1.7894882266411909e-06,0.0042939698323607445,0.0010957379126921296,364 +illusion_0.75L,sr,365,73.0,0.8638284206390381,0.38827550411224365,0.6990807056427002,0.6483260989189148,0.9407505989074707,0.3878765106201172,0.001904720556922257,1.2787554624082986e-05,0.0022589717991650105,0.00036288093542680144,0.0022275657393038273,-0.0003452533856034279,-0.002062914877269898,-0.0001981583398257096,-0.0001981583398257096,-2.0629148772698982e-05,-1.981583398257096e-06,-1.981583398257096e-06,0.004323890432715416,0.001160208135843277,365 +illusion_0.75L,sr,366,73.2,0.7872292399406433,0.4046366810798645,0.7224217057228088,0.6617183685302734,0.9766250848770142,0.40866619348526,0.0019030356779694557,1.0432550880068447e-05,0.002254356164485216,0.0003594558802433312,0.0022275345399975777,-0.00035245358594693244,-0.002283406926650522,0.00015817068106627197,0.00015817068106627197,-2.283406926650522e-05,1.5817068106627198e-06,1.5817068106627198e-06,0.004342077765613794,0.0011736078886315227,366 +illusion_0.75L,sr,367,73.4,0.7307959794998169,0.3947647213935852,0.7401278018951416,0.676327109336853,1.0135279893875122,0.4265272915363312,0.00190075789578259,8.232457730628084e-06,0.0022486483212560415,0.0003555512521415949,0.002226960612460971,-0.0003593070723582059,-0.0029583205639800575,0.0008813424579896188,0.0008813424579896188,-2.9583205639800575e-05,8.813424579896188e-06,8.813424579896188e-06,0.004347268491983414,0.0011358100455254316,367 +illusion_0.75L,sr,368,73.6,0.6906635165214539,0.36755236983299255,0.7529997229576111,0.6880624890327454,1.0515481233596802,0.4414120018482208,0.0018987619550898671,6.1488785831897985e-06,0.002242955146357417,0.00035119979293085635,0.002226891927421093,-0.00036526008625514805,-0.0028115808815239104,0.001023154400707835,0.001023154400707835,-2.8115808815239106e-05,1.023154400707835e-05,1.023154400707835e-05,0.004345463588833809,0.0010489318519830704,368 +illusion_0.75L,sr,369,73.8,0.6606270670890808,0.3302409052848816,0.7612363696098328,0.6915193796157837,1.0907642841339111,0.4531441032886505,0.0018984181806445122,3.758354523597518e-06,0.002238932065665722,0.00034622172825038433,0.0022288416512310505,-0.00037018099101260304,-0.0019762564775875745,0.0006792264592613284,0.0006792264592613284,-1.9762564775875747e-05,6.7922645926132845e-06,6.7922645926132845e-06,0.004340487066656351,0.0009170636185444891,369 +illusion_0.75L,sr,370,74.0,0.6358602046966553,0.2865206003189087,0.7647756934165955,0.6799376010894775,1.1311858892440796,0.46139270067214966,0.0019000027095898986,9.126638929046749e-07,0.0022373422980308533,0.00034057124867103994,0.0022334016393870115,-0.00037417456042021513,-0.0014565011148567272,0.0005858632775531938,0.0005858632775531938,-1.4565011148567272e-05,5.8586327755319385e-06,5.8586327755319385e-06,0.004329410847276449,0.0007459750631824136,370 +illusion_0.75L,sr,371,74.2,0.6143701076507568,0.23752759397029877,0.763481855392456,0.6468797922134399,1.1726202964782715,0.46564576029777527,0.0019027097150683403,-1.8108479480360984e-06,0.0022371604572981596,0.0003347274905536324,0.0022394040133804083,-0.000377297168597579,-0.001714823837877809,0.001077041044055457,0.001077041044055457,-1.714823837877809e-05,1.0770410440554569e-05,1.0770410440554569e-05,0.004308085888624191,0.000542854773811996,371 +illusion_0.75L,sr,372,74.4,0.5967180132865906,0.18374735116958618,0.7572738528251648,0.5889441967010498,1.2145310640335083,0.46517327427864075,0.0019048366229981184,-4.075515789736528e-06,0.002236470580101013,0.0003293303889222443,0.002244838746264577,-0.000379647797672078,-0.0016894379221437696,0.0013599072241517725,0.0013599072241517725,-1.6894379221437697e-05,1.3599072241517725e-05,1.3599072241517725e-05,0.0042798398062586784,0.000316097226459533,372 +illusion_0.75L,sr,373,74.6,0.5851528644561768,0.12645184993743896,0.7460419535636902,0.507469654083252,1.2559125423431396,0.4589809775352478,0.0019058043835684657,-6.2722101574763656e-06,0.0022346486803144217,0.0003245706029701978,0.0022489905823022127,-0.0003812932991422713,-0.0007712089609448149,0.0009790109314912875,0.0009790109314912875,-7.71208960944815e-06,9.790109314912875e-06,9.790109314912875e-06,0.004256341140717268,7.510853174608201e-05,373 +illusion_0.75L,sr,374,74.8,0.5826148390769958,0.06829878687858582,0.7293649911880493,0.4072425067424774,1.295161485671997,0.4457695484161377,0.0019056518794968724,-8.727754902793095e-06,0.0022317105904221535,0.0003204217064194381,0.0022517195902764797,-0.00038248623604886234,0.00014955696684528126,0.0005888774501084815,0.0005888774501084815,1.4955696684528126e-06,5.888774501084816e-06,5.888774501084816e-06,0.004248499870300293,-0.00016992665769066662,374 +illusion_0.75L,sr,375,75.0,0.5915154218673706,0.012952685356140137,0.706447958946228,0.2929410934448242,1.3300164937973022,0.4239967465400696,0.0019053773721680045,-1.107073239836609e-05,0.00222878810018301,0.0003167889954056591,0.002253999002277851,-0.00038311348180286586,0.00025587508759955177,0.0007866159634199594,0.0007866159634199594,2.5587508759955176e-06,7.866159634199594e-06,7.866159634199594e-06,0.00425688037648797,-0.0004083740059286356,375 +illusion_0.75L,sr,376,75.2,0.6122932434082031,-0.036359816789627075,0.6767343878746033,0.1666366010904312,1.357725977897644,0.3920864462852478,0.001904935808852315,-1.2831472304242197e-05,0.002225932665169239,0.0003141082124784589,0.0022557908669114113,-0.00038306924398057163,0.00016972333544472765,0.0011041232817833521,0.0011041232817833521,1.6972333544472765e-06,1.1041232817833522e-05,1.1041232817833522e-05,0.004272068850696087,-0.0006296037463471293,376 +illusion_0.75L,sr,377,75.4,0.6423709392547607,-0.07882772386074066,0.6409898400306702,0.028668571263551712,1.3754812479019165,0.3487543761730194,0.001903665834106505,-1.4142310647002887e-05,0.0022223598789423704,0.0003125945513602346,0.002256259322166443,-0.00038236414548009634,0.0007790771338861863,0.0008797860876132817,0.0008797860876132817,7.790771338861864e-06,8.797860876132816e-06,8.797860876132816e-06,0.004284536466002464,-0.0008235537097789347,377 +illusion_0.75L,sr,378,75.6,0.6768043041229248,-0.11683553457260132,0.6021766066551208,-0.11911242455244064,1.380996823310852,0.2933184504508972,0.001901667914353311,-1.5455058019142598e-05,0.002218303270637989,0.00031215898343361914,0.002255556406453252,-0.0003812998184002936,0.0017637352386001594,0.0003480976067110897,0.0003480976067110897,1.7637352386001595e-05,3.480976067110897e-06,3.480976067110897e-06,0.004293113015592098,-0.000981337740086019,378 +illusion_0.75L,sr,379,75.8,0.7108903527259827,-0.1541057825088501,0.5656687021255493,-0.2702654004096985,1.372799277305603,0.22577446699142456,0.001899765687994659,-1.6697011233191006e-05,0.0022147661074995995,0.00031258835224434733,0.0022545484825968742,-0.00037993176374584436,0.0021165123240885,0.00025057055716249527,0.00025057055716249527,2.1165123240885e-05,2.5057055716249528e-06,2.5057055716249528e-06,0.004303110297769308,-0.001095808343961835,379 +illusion_0.75L,sr,380,76.0,0.7426602244377136,-0.19259808957576752,0.5387922525405884,-0.41236087679862976,1.3497227430343628,0.14650487899780273,0.0018991610268130898,-1.7410893633496016e-05,0.002213231287896633,0.0003139433974865824,0.0022546390537172556,-0.0003781257546506822,0.0018624684988844675,0.0005619782372601051,0.0005619782372601051,1.8624684988844675e-05,5.619782372601051e-06,5.619782372601051e-06,0.004317091777920723,-0.0011619804427027702,380 +illusion_0.75L,sr,381,76.2,0.7729020118713379,-0.23145028948783875,0.5295783877372742,-0.5281031727790833,1.3098983764648438,0.056084536015987396,0.0019003944471478462,-1.746612360875588e-05,0.002214557258412242,0.0003163288929499686,0.0022566744592040777,-0.00037576761678792536,0.0018731362383033745,0.0006333662511438902,0.0006333662511438902,1.8731362383033744e-05,6.333662511438902e-06,6.333662511438902e-06,0.0043295822106301785,-0.0011772552970796824,381 +illusion_0.75L,sr,382,76.4,0.8032078742980957,-0.26863884925842285,0.5434385538101196,-0.601896345615387,1.250706672668457,-0.04379330575466156,0.001902810763567686,-1.717377017484978e-05,0.002217754488810897,0.0003198662889190018,0.0022596835624426603,-0.0003731429169420153,0.00240704280204547,0.00027279007636913516,0.00027279007636913516,2.40704280204547e-05,2.7279007636913518e-06,2.7279007636913518e-06,0.004332154523581266,-0.0011414313921704888,382 +illusion_0.75L,sr,383,76.6,0.8345246315002441,-0.3027893006801605,0.5777415633201599,-0.6325097680091858,1.171118974685669,-0.14812712371349335,0.0019047280075028539,-1.6786783817224205e-05,0.002220909809693694,0.0003245229017920792,0.002261715941131115,-0.00037065392825752497,0.0028387874063423163,-5.595058604042358e-05,-5.595058604042358e-05,2.8387874063423163e-05,-5.595058604042358e-07,-5.595058604042358e-07,0.004323046654462814,-0.0010565404081717134,383 +illusion_0.75L,sr,384,76.8,0.8670796155929565,-0.3335036039352417,0.6209599375724792,-0.637706995010376,1.075086236000061,-0.24718493223190308,0.0019055274315178394,-1.604718818271067e-05,0.0022232667542994022,0.0003301370015833527,0.002261986956000328,-0.0003683544637169689,0.002612132463165766,5.703713949633052e-05,5.703713949633052e-05,2.612132463165766e-05,5.703713949633052e-07,5.703713949633052e-07,0.004309957846999168,-0.0009265808621421456,384 +illusion_0.75L,sr,385,77.0,0.9008032083511353,-0.36087483167648315,0.661003053188324,-0.6391867995262146,0.9725039601325989,-0.32837727665901184,0.0019051249837502837,-1.4706531146657653e-05,0.0022245622240006924,0.0003366176097188145,0.0022603003308176994,-0.0003659731592051685,0.0022339382630466864,0.000235216593036755,0.000235216593036755,2.2339382630466866e-05,2.35216593036755e-06,2.35216593036755e-06,0.0043023559264838696,-0.0007572299218736589,385 +illusion_0.75L,sr,386,77.2,0.9355887770652771,-0.3850986063480377,0.6928640007972717,-0.6467380523681641,0.8761175274848938,-0.38124725222587585,0.0019045125227421522,-1.2829010302084498e-05,0.0022257661912590265,0.00034360570134595037,0.002257745247334242,-0.0003631229337770492,0.002278161439680383,5.702215682952538e-05,5.702215682952538e-05,2.2781614396803833e-05,5.702215682952538e-07,5.702215682952538e-07,0.0043017142452299595,-0.0005555875250138342,386 +illusion_0.75L,sr,387,77.4,0.9713854193687439,-0.4063318967819214,0.7171871066093445,-0.6596083641052246,0.7961866855621338,-0.40232235193252563,0.0019038148457184434,-1.0833793567144312e-05,0.0022270018234848976,0.0003506586654111743,0.0022545666433870792,-0.0003598368784878403,0.00272114062398527,-0.00045421791143842796,-0.00045421791143842796,2.72114062398527e-05,-4.54217911438428e-06,-4.54217911438428e-06,0.004300643689930439,-0.0003299686941318214,387 +illusion_0.75L,sr,388,77.6,1.0082149505615234,-0.4246496558189392,0.7356517314910889,-0.6741893887519836,0.7364183664321899,-0.39604705572128296,0.0019024141365662217,-8.86608540895395e-06,0.0022274982184171677,0.000357366050593555,0.0022500548511743546,-0.0003562499477993697,0.0028087198895198513,-0.000734360746396618,-0.000734360746396618,2.8087198895198512e-05,-7.34360746396618e-06,-7.34360746396618e-06,0.00429190369322896,-8.971420174930245e-05,388 +illusion_0.75L,sr,389,77.8,1.0461362600326538,-0.44001349806785583,0.7491525411605835,-0.6864866614341736,0.6938835382461548,-0.37100300192832947,0.0019003486959263682,-6.6707234509522095e-06,0.0022273666691035032,0.0003635297471191734,0.002244393341243267,-0.0003522776532918215,0.0022970512320890715,-0.0005999306114801237,-0.0005999306114801237,2.2970512320890716e-05,-5.9993061148012375e-06,-5.9993061148012375e-06,0.004277124535292387,0.00015503856411669403,389 +illusion_0.75L,sr,390,78.0,1.0852059125900269,-0.4522487223148346,0.7579317688941956,-0.691321611404419,0.6625474691390991,-0.3348499536514282,0.0018983219051733613,-4.030547188449418e-06,0.0022273471113294363,0.0003690181765705347,0.002238506218418479,-0.00034762927680276334,0.0017788353799855824,-0.00048610571529201027,-0.00048610571529201027,1.7788353799855823e-05,-4.861057152920103e-06,-4.861057152920103e-06,0.004265474621206522,0.00039368137368001044,390 +illusion_0.75L,sr,391,78.2,1.1254143714904785,-0.46103909611701965,0.7619302868843079,-0.6821032762527466,0.6372004747390747,-0.29186713695526123,0.0018975880229845643,-1.264793127120356e-06,0.002228877507150173,0.0003735375066753477,0.002234020736068487,-0.00034235359635204077,0.0018706005816658284,-0.0008402378991368481,-0.0008402378991368481,1.8706005816658285e-05,-8.40237899136848e-06,-8.40237899136848e-06,0.004263981245458126,0.0006155874580144882,391 +illusion_0.75L,sr,392,78.4,1.1666154861450195,-0.4659048020839691,0.7610617876052856,-0.6522638201713562,0.6153804659843445,-0.24356642365455627,0.0018987166695296764,1.105845399251848e-06,0.0022328742779791355,0.00037674777559004724,0.0022319243289530277,-0.0003367823373991996,0.0020861655506626067,-0.0012932373515851174,-0.0012932373515851174,2.0861655506626066e-05,-1.2932373515851174e-05,-1.2932373515851174e-05,0.004270609002560377,0.0008106737514026463,392 +illusion_0.75L,sr,393,78.6,1.208369493484497,-0.4661494791507721,0.7553160190582275,-0.5978623032569885,0.5973052382469177,-0.1904994398355484,0.0019012629054486752,3.261506208218634e-06,0.0022386733908206224,0.0003788743051700294,0.00223160139285028,-0.00033127202186733484,0.0014154193321161603,-0.0010939869898271475,-0.0010939869898271475,1.4154193321161603e-05,-1.0939869898271475e-05,-1.0939869898271475e-05,0.00427780719473958,0.0009700104128569365,393 +illusion_0.75L,sr,394,78.8,1.2497680187225342,-0.46079787611961365,0.7446635365486145,-0.5195441246032715,0.5850127935409546,-0.13378822803497314,0.0019035518635064363,5.842734026373364e-06,0.002244248054921627,0.0003804131702054292,0.0022311939392238855,-0.00032606921740807593,0.0002744852381401505,-0.0005481262563069231,-0.0005481262563069231,2.7448523814015048e-06,-5.481262563069231e-06,-5.481262563069231e-06,0.004282041918486357,0.00108638487290591,394 +illusion_0.75L,sr,395,79.0,1.2893110513687134,-0.44859054684638977,0.7287764549255371,-0.4217599928379059,0.581378161907196,-0.07587170600891113,0.0019048519898205996,8.446868378086947e-06,0.002248674863949418,0.0003815829404629767,0.002229991601780057,-0.0003214017197024077,0.00013993060653411798,-0.0007403311324183769,-0.0007403311324183769,1.39930606534118e-06,-7.40331132418377e-06,-7.40331132418377e-06,0.004287917632609606,0.001154729281552136,395 +illusion_0.75L,sr,396,79.2,1.3248469829559326,-0.4280368387699127,0.706907331943512,-0.3094249963760376,0.5889408588409424,-0.020300142467021942,0.0019049345282837749,1.0535115507082082e-05,0.0022515305317938328,0.00038227345794439316,0.002227657474577427,-0.0003176231402903795,0.00037503573373428786,-0.0011889294601712935,-0.0011889294601712935,3.7503573373428788e-06,-1.1889294601712934e-05,-1.1889294601712934e-05,0.004301857203245163,0.0011723487405106425,396 +illusion_0.75L,sr,397,79.4,1.3536759614944458,-0.3975846767425537,0.6783812046051025,-0.18505547940731049,0.608451247215271,0.02958843670785427,0.001904672128148377,1.2107746442779899e-05,0.002253690268844366,0.00038225066964514554,0.002225098665803671,-0.000314904231345281,-5.3643974284180156e-05,-0.001124783743383987,-0.001124783743383987,-5.364397428418016e-07,-1.1247837433839871e-05,-1.1247837433839871e-05,0.004322571214288473,0.0011389366118237376,397 +illusion_0.75L,sr,398,79.6,1.37296462059021,-0.3559165298938751,0.643642246723175,-0.04909329488873482,0.6377156376838684,0.07262814790010452,0.001904322300106287,1.3630624380311929e-05,0.0022554551251232624,0.0003816709213424474,0.00222270586527884,-0.00031319502159021795,-0.0011164166533670083,-0.00056831506642184,-0.00056831506642184,-1.1164166533670084e-05,-5.6831506642184005e-06,-5.6831506642184005e-06,0.0043395934626460075,0.0010564166586846113,398 +illusion_0.75L,sr,399,79.8,1.3803367614746094,-0.30229344964027405,0.6052219271659851,0.09707802534103394,0.6719809174537659,0.11084601283073425,0.0019032205455005169,1.5256129699992016e-05,0.002255904721096158,0.00038088540895842016,0.0022197160869836807,-0.00031243532430380583,-0.0017696429172786576,-0.000287620827040317,-0.000287620827040317,-1.7696429172786578e-05,-2.87620827040317e-06,-2.87620827040317e-06,0.004342196509242058,0.0009286822751164436,399 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_long.csv new file mode 100644 index 0000000..71d4ce5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,target,0,0.0,velocity,upper_ux,1.2601828575134277 +illusion_0.75L,target,0,0.0,velocity,upper_uy,-0.33079081773757935 +illusion_0.75L,target,0,0.0,velocity,center_ux,0.9250832200050354 +illusion_0.75L,target,0,0.0,velocity,center_uy,-0.511147141456604 +illusion_0.75L,target,0,0.0,velocity,lower_ux,0.8349849581718445 +illusion_0.75L,target,0,0.0,velocity,lower_uy,-0.15618270635604858 +illusion_0.75L,target,1,0.2,velocity,upper_ux,1.3178606033325195 +illusion_0.75L,target,1,0.2,velocity,upper_uy,-0.31947362422943115 +illusion_0.75L,target,1,0.2,velocity,center_ux,0.8900846838951111 +illusion_0.75L,target,1,0.2,velocity,center_uy,-0.40874210000038147 +illusion_0.75L,target,1,0.2,velocity,lower_ux,0.8122916221618652 +illusion_0.75L,target,1,0.2,velocity,lower_uy,-0.09021537005901337 +illusion_0.75L,target,2,0.4,velocity,upper_ux,1.3646230697631836 +illusion_0.75L,target,2,0.4,velocity,upper_uy,-0.27195677161216736 +illusion_0.75L,target,2,0.4,velocity,center_ux,0.8570147156715393 +illusion_0.75L,target,2,0.4,velocity,center_uy,-0.23902627825737 +illusion_0.75L,target,2,0.4,velocity,lower_ux,0.803646445274353 +illusion_0.75L,target,2,0.4,velocity,lower_uy,-0.02236826717853546 +illusion_0.75L,target,3,0.6,velocity,upper_ux,1.3771835565567017 +illusion_0.75L,target,3,0.6,velocity,upper_uy,-0.16725991666316986 +illusion_0.75L,target,3,0.6,velocity,center_ux,0.8359720706939697 +illusion_0.75L,target,3,0.6,velocity,center_uy,-0.025376582518219948 +illusion_0.75L,target,3,0.6,velocity,lower_ux,0.8113715648651123 +illusion_0.75L,target,3,0.6,velocity,lower_uy,0.039294030517339706 +illusion_0.75L,target,4,0.8,velocity,upper_ux,1.3446910381317139 +illusion_0.75L,target,4,0.8,velocity,upper_uy,-0.016543811187148094 +illusion_0.75L,target,4,0.8,velocity,center_ux,0.8315278887748718 +illusion_0.75L,target,4,0.8,velocity,center_uy,0.19166451692581177 +illusion_0.75L,target,4,0.8,velocity,lower_ux,0.8330361843109131 +illusion_0.75L,target,4,0.8,velocity,lower_uy,0.09023195505142212 +illusion_0.75L,target,5,1.0,velocity,upper_ux,1.2829217910766602 +illusion_0.75L,target,5,1.0,velocity,upper_uy,0.13420768082141876 +illusion_0.75L,target,5,1.0,velocity,center_ux,0.8426259756088257 +illusion_0.75L,target,5,1.0,velocity,center_uy,0.37104010581970215 +illusion_0.75L,target,5,1.0,velocity,lower_ux,0.8628497123718262 +illusion_0.75L,target,5,1.0,velocity,lower_uy,0.13140511512756348 +illusion_0.75L,target,6,1.2,velocity,upper_ux,1.2147709131240845 +illusion_0.75L,target,6,1.2,velocity,upper_uy,0.24601377546787262 +illusion_0.75L,target,6,1.2,velocity,center_ux,0.8651878237724304 +illusion_0.75L,target,6,1.2,velocity,center_uy,0.4836704134941101 +illusion_0.75L,target,6,1.2,velocity,lower_ux,0.8957636952400208 +illusion_0.75L,target,6,1.2,velocity,lower_uy,0.16615670919418335 +illusion_0.75L,target,7,1.4,velocity,upper_ux,1.1528273820877075 +illusion_0.75L,target,7,1.4,velocity,upper_uy,0.30932101607322693 +illusion_0.75L,target,7,1.4,velocity,center_ux,0.8935098052024841 +illusion_0.75L,target,7,1.4,velocity,center_uy,0.5276827216148376 +illusion_0.75L,target,7,1.4,velocity,lower_ux,0.9295877814292908 +illusion_0.75L,target,7,1.4,velocity,lower_uy,0.1965356469154358 +illusion_0.75L,target,8,1.6,velocity,upper_ux,1.100472092628479 +illusion_0.75L,target,8,1.6,velocity,upper_uy,0.334623247385025 +illusion_0.75L,target,8,1.6,velocity,center_ux,0.9212415218353271 +illusion_0.75L,target,8,1.6,velocity,center_uy,0.5307248830795288 +illusion_0.75L,target,8,1.6,velocity,lower_ux,0.9639654755592346 +illusion_0.75L,target,8,1.6,velocity,lower_uy,0.22314292192459106 +illusion_0.75L,target,9,1.8,velocity,upper_ux,1.0563198328018188 +illusion_0.75L,target,9,1.8,velocity,upper_uy,0.33748915791511536 +illusion_0.75L,target,9,1.8,velocity,center_ux,0.9439471364021301 +illusion_0.75L,target,9,1.8,velocity,center_uy,0.524278998374939 +illusion_0.75L,target,9,1.8,velocity,lower_ux,0.9991008043289185 +illusion_0.75L,target,9,1.8,velocity,lower_uy,0.24640831351280212 +illusion_0.75L,target,10,2.0,velocity,upper_ux,1.0170913934707642 +illusion_0.75L,target,10,2.0,velocity,upper_uy,0.3290230929851532 +illusion_0.75L,target,10,2.0,velocity,center_ux,0.9602890014648438 +illusion_0.75L,target,10,2.0,velocity,center_uy,0.5232291221618652 +illusion_0.75L,target,10,2.0,velocity,lower_ux,1.035339117050171 +illusion_0.75L,target,10,2.0,velocity,lower_uy,0.26692336797714233 +illusion_0.75L,target,11,2.2,velocity,upper_ux,0.9796668291091919 +illusion_0.75L,target,11,2.2,velocity,upper_uy,0.3135398030281067 +illusion_0.75L,target,11,2.2,velocity,center_ux,0.9703314900398254 +illusion_0.75L,target,11,2.2,velocity,center_uy,0.5299030542373657 +illusion_0.75L,target,11,2.2,velocity,lower_ux,1.0731583833694458 +illusion_0.75L,target,11,2.2,velocity,lower_uy,0.2851960361003876 +illusion_0.75L,target,12,2.4,velocity,upper_ux,0.9421877861022949 +illusion_0.75L,target,12,2.4,velocity,upper_uy,0.2906155288219452 +illusion_0.75L,target,12,2.4,velocity,center_ux,0.9737128615379333 +illusion_0.75L,target,12,2.4,velocity,center_uy,0.5421223640441895 +illusion_0.75L,target,12,2.4,velocity,lower_ux,1.113333821296692 +illusion_0.75L,target,12,2.4,velocity,lower_uy,0.3014600872993469 +illusion_0.75L,target,13,2.6,velocity,upper_ux,0.9043849110603333 +illusion_0.75L,target,13,2.6,velocity,upper_uy,0.2578497529029846 +illusion_0.75L,target,13,2.6,velocity,center_ux,0.9688764810562134 +illusion_0.75L,target,13,2.6,velocity,center_uy,0.5538138151168823 +illusion_0.75L,target,13,2.6,velocity,lower_ux,1.1570261716842651 +illusion_0.75L,target,13,2.6,velocity,lower_uy,0.31552302837371826 +illusion_0.75L,target,14,2.8,velocity,upper_ux,0.8677170276641846 +illusion_0.75L,target,14,2.8,velocity,upper_uy,0.21304048597812653 +illusion_0.75L,target,14,2.8,velocity,center_ux,0.9533351063728333 +illusion_0.75L,target,14,2.8,velocity,center_uy,0.5512546896934509 +illusion_0.75L,target,14,2.8,velocity,lower_ux,1.2056748867034912 +illusion_0.75L,target,14,2.8,velocity,lower_uy,0.3263862729072571 +illusion_0.75L,target,15,3.0,velocity,upper_ux,0.8354063630104065 +illusion_0.75L,target,15,3.0,velocity,upper_uy,0.15601734817028046 +illusion_0.75L,target,15,3.0,velocity,center_ux,0.9258233904838562 +illusion_0.75L,target,15,3.0,velocity,center_uy,0.5111188292503357 +illusion_0.75L,target,15,3.0,velocity,lower_ux,1.2600934505462646 +illusion_0.75L,target,15,3.0,velocity,lower_uy,0.3309067189693451 +illusion_0.75L,target,16,3.2,velocity,upper_ux,0.8122056722640991 +illusion_0.75L,target,16,3.2,velocity,upper_uy,0.09013861417770386 +illusion_0.75L,target,16,3.2,velocity,center_ux,0.8902503252029419 +illusion_0.75L,target,16,3.2,velocity,center_uy,0.40924063324928284 +illusion_0.75L,target,16,3.2,velocity,lower_ux,1.3172355890274048 +illusion_0.75L,target,16,3.2,velocity,lower_uy,0.31984570622444153 +illusion_0.75L,target,17,3.4,velocity,upper_ux,0.8030804395675659 +illusion_0.75L,target,17,3.4,velocity,upper_uy,0.022418634966015816 +illusion_0.75L,target,17,3.4,velocity,center_ux,0.8565428256988525 +illusion_0.75L,target,17,3.4,velocity,center_uy,0.24014003574848175 +illusion_0.75L,target,17,3.4,velocity,lower_ux,1.3636634349822998 +illusion_0.75L,target,17,3.4,velocity,lower_uy,0.27284905314445496 +illusion_0.75L,target,18,3.6,velocity,upper_ux,0.8104504346847534 +illusion_0.75L,target,18,3.6,velocity,upper_uy,-0.03911787271499634 +illusion_0.75L,target,18,3.6,velocity,center_ux,0.8349431753158569 +illusion_0.75L,target,18,3.6,velocity,center_uy,0.02699139527976513 +illusion_0.75L,target,18,3.6,velocity,lower_ux,1.3762744665145874 +illusion_0.75L,target,18,3.6,velocity,lower_uy,0.1688137650489807 +illusion_0.75L,target,19,3.8,velocity,upper_ux,0.8319962024688721 +illusion_0.75L,target,19,3.8,velocity,upper_uy,-0.08997604995965958 +illusion_0.75L,target,19,3.8,velocity,center_ux,0.8301922082901001 +illusion_0.75L,target,19,3.8,velocity,center_uy,-0.18987232446670532 +illusion_0.75L,target,19,3.8,velocity,lower_ux,1.3441212177276611 +illusion_0.75L,target,19,3.8,velocity,lower_uy,0.01840861141681671 +illusion_0.75L,target,20,4.0,velocity,upper_ux,0.8620385527610779 +illusion_0.75L,target,20,4.0,velocity,upper_uy,-0.13112322986125946 +illusion_0.75L,target,20,4.0,velocity,center_ux,0.8413753509521484 +illusion_0.75L,target,20,4.0,velocity,center_uy,-0.36952900886535645 +illusion_0.75L,target,20,4.0,velocity,lower_ux,1.282819390296936 +illusion_0.75L,target,20,4.0,velocity,lower_uy,-0.13266025483608246 +illusion_0.75L,target,21,4.2,velocity,upper_ux,0.8954665660858154 +illusion_0.75L,target,21,4.2,velocity,upper_uy,-0.16589368879795074 +illusion_0.75L,target,21,4.2,velocity,center_ux,0.8643755912780762 +illusion_0.75L,target,21,4.2,velocity,center_uy,-0.4827996790409088 +illusion_0.75L,target,21,4.2,velocity,lower_ux,1.2151905298233032 +illusion_0.75L,target,21,4.2,velocity,lower_uy,-0.2451438158750534 +illusion_0.75L,target,22,4.4,velocity,upper_ux,0.9298505187034607 +illusion_0.75L,target,22,4.4,velocity,upper_uy,-0.1963239461183548 +illusion_0.75L,target,22,4.4,velocity,center_ux,0.8932674527168274 +illusion_0.75L,target,22,4.4,velocity,center_uy,-0.5274070501327515 +illusion_0.75L,target,22,4.4,velocity,lower_ux,1.15369713306427 +illusion_0.75L,target,22,4.4,velocity,lower_uy,-0.3090851306915283 +illusion_0.75L,target,23,4.6,velocity,upper_ux,0.9646396040916443 +illusion_0.75L,target,23,4.6,velocity,upper_uy,-0.2229999154806137 +illusion_0.75L,target,23,4.6,velocity,center_ux,0.9214789867401123 +illusion_0.75L,target,23,4.6,velocity,center_uy,-0.5307221412658691 +illusion_0.75L,target,23,4.6,velocity,lower_ux,1.101616621017456 +illusion_0.75L,target,23,4.6,velocity,lower_uy,-0.3347676992416382 +illusion_0.75L,target,24,4.8,velocity,upper_ux,0.9999062418937683 +illusion_0.75L,target,24,4.8,velocity,upper_uy,-0.24633394181728363 +illusion_0.75L,target,24,4.8,velocity,center_ux,0.9443877935409546 +illusion_0.75L,target,24,4.8,velocity,center_uy,-0.5243254899978638 +illusion_0.75L,target,24,4.8,velocity,lower_ux,1.0574889183044434 +illusion_0.75L,target,24,4.8,velocity,lower_uy,-0.33778026700019836 +illusion_0.75L,target,25,5.0,velocity,upper_ux,1.0359879732131958 +illusion_0.75L,target,25,5.0,velocity,upper_uy,-0.2669082581996918 +illusion_0.75L,target,25,5.0,velocity,center_ux,0.9606144428253174 +illusion_0.75L,target,25,5.0,velocity,center_uy,-0.5232738256454468 +illusion_0.75L,target,25,5.0,velocity,lower_ux,1.0180473327636719 +illusion_0.75L,target,25,5.0,velocity,lower_uy,-0.3293469548225403 +illusion_0.75L,target,26,5.2,velocity,upper_ux,1.073438286781311 +illusion_0.75L,target,26,5.2,velocity,upper_uy,-0.28523117303848267 +illusion_0.75L,target,26,5.2,velocity,center_ux,0.9703036546707153 +illusion_0.75L,target,26,5.2,velocity,center_uy,-0.5299592018127441 +illusion_0.75L,target,26,5.2,velocity,lower_ux,0.9802431464195251 +illusion_0.75L,target,26,5.2,velocity,lower_uy,-0.3138834238052368 +illusion_0.75L,target,27,5.4,velocity,upper_ux,1.1131155490875244 +illusion_0.75L,target,27,5.4,velocity,upper_uy,-0.3015397787094116 +illusion_0.75L,target,27,5.4,velocity,center_ux,0.9731939435005188 +illusion_0.75L,target,27,5.4,velocity,center_uy,-0.5422155857086182 +illusion_0.75L,target,27,5.4,velocity,lower_ux,0.9422938823699951 +illusion_0.75L,target,27,5.4,velocity,lower_uy,-0.29101842641830444 +illusion_0.75L,target,28,5.6,velocity,upper_ux,1.1563129425048828 +illusion_0.75L,target,28,5.6,velocity,upper_uy,-0.3156443238258362 +illusion_0.75L,target,28,5.6,velocity,center_ux,0.9678830504417419 +illusion_0.75L,target,28,5.6,velocity,center_uy,-0.5539894700050354 +illusion_0.75L,target,28,5.6,velocity,lower_ux,0.9040504693984985 +illusion_0.75L,target,28,5.6,velocity,lower_uy,-0.25837019085884094 +illusion_0.75L,target,29,5.8,velocity,upper_ux,1.2045950889587402 +illusion_0.75L,target,29,5.8,velocity,upper_uy,-0.3265523910522461 +illusion_0.75L,target,29,5.8,velocity,center_ux,0.9520381689071655 +illusion_0.75L,target,29,5.8,velocity,center_uy,-0.5516283512115479 +illusion_0.75L,target,29,5.8,velocity,lower_ux,0.8670713901519775 +illusion_0.75L,target,29,5.8,velocity,lower_uy,-0.2137332707643509 +illusion_0.75L,target,30,6.0,velocity,upper_ux,1.2589023113250732 +illusion_0.75L,target,30,6.0,velocity,upper_uy,-0.3311387896537781 +illusion_0.75L,target,30,6.0,velocity,center_ux,0.924511730670929 +illusion_0.75L,target,30,6.0,velocity,center_uy,-0.5119161605834961 +illusion_0.75L,target,30,6.0,velocity,lower_ux,0.8346543908119202 +illusion_0.75L,target,30,6.0,velocity,lower_uy,-0.15689899027347565 +illusion_0.75L,target,31,6.2,velocity,upper_ux,1.3163245916366577 +illusion_0.75L,target,31,6.2,velocity,upper_uy,-0.3202035427093506 +illusion_0.75L,target,31,6.2,velocity,center_ux,0.8892664313316345 +illusion_0.75L,target,31,6.2,velocity,center_uy,-0.4106842279434204 +illusion_0.75L,target,31,6.2,velocity,lower_ux,0.8116008043289185 +illusion_0.75L,target,31,6.2,velocity,lower_uy,-0.09114521741867065 +illusion_0.75L,target,32,6.4,velocity,upper_ux,1.363435983657837 +illusion_0.75L,target,32,6.4,velocity,upper_uy,-0.27341002225875854 +illusion_0.75L,target,32,6.4,velocity,center_ux,0.8561093807220459 +illusion_0.75L,target,32,6.4,velocity,center_uy,-0.24217845499515533 +illusion_0.75L,target,32,6.4,velocity,lower_ux,0.8028104901313782 +illusion_0.75L,target,32,6.4,velocity,lower_uy,-0.023400407284498215 +illusion_0.75L,target,33,6.6,velocity,upper_ux,1.3769031763076782 +illusion_0.75L,target,33,6.6,velocity,upper_uy,-0.16952699422836304 +illusion_0.75L,target,33,6.6,velocity,center_ux,0.8350504040718079 +illusion_0.75L,target,33,6.6,velocity,center_uy,-0.029219510033726692 +illusion_0.75L,target,33,6.6,velocity,lower_ux,0.810547411441803 +illusion_0.75L,target,33,6.6,velocity,lower_uy,0.03830622136592865 +illusion_0.75L,target,34,6.8,velocity,upper_ux,1.3454432487487793 +illusion_0.75L,target,34,6.8,velocity,upper_uy,-0.019037466496229172 +illusion_0.75L,target,34,6.8,velocity,center_ux,0.8306899070739746 +illusion_0.75L,target,34,6.8,velocity,center_uy,0.18797896802425385 +illusion_0.75L,target,34,6.8,velocity,lower_ux,0.8323963284492493 +illusion_0.75L,target,34,6.8,velocity,lower_uy,0.08937177062034607 +illusion_0.75L,target,35,7.0,velocity,upper_ux,1.2844436168670654 +illusion_0.75L,target,35,7.0,velocity,upper_uy,0.13230055570602417 +illusion_0.75L,target,35,7.0,velocity,center_ux,0.8420178890228271 +illusion_0.75L,target,35,7.0,velocity,center_uy,0.3683592975139618 +illusion_0.75L,target,35,7.0,velocity,lower_ux,0.8625726103782654 +illusion_0.75L,target,35,7.0,velocity,lower_uy,0.13067108392715454 +illusion_0.75L,target,36,7.2,velocity,upper_ux,1.2167187929153442 +illusion_0.75L,target,36,7.2,velocity,upper_uy,0.2450498640537262 +illusion_0.75L,target,36,7.2,velocity,center_ux,0.8649032115936279 +illusion_0.75L,target,36,7.2,velocity,center_uy,0.48244234919548035 +illusion_0.75L,target,36,7.2,velocity,lower_ux,0.8958966732025146 +illusion_0.75L,target,36,7.2,velocity,lower_uy,0.16553117334842682 +illusion_0.75L,target,37,7.4,velocity,upper_ux,1.1548449993133545 +illusion_0.75L,target,37,7.4,velocity,upper_uy,0.30916357040405273 +illusion_0.75L,target,37,7.4,velocity,center_ux,0.89349365234375 +illusion_0.75L,target,37,7.4,velocity,center_uy,0.5276117920875549 +illusion_0.75L,target,37,7.4,velocity,lower_ux,0.9299669861793518 +illusion_0.75L,target,37,7.4,velocity,lower_uy,0.19601786136627197 +illusion_0.75L,target,38,7.6,velocity,upper_ux,1.1022210121154785 +illusion_0.75L,target,38,7.6,velocity,upper_uy,0.33493781089782715 +illusion_0.75L,target,38,7.6,velocity,center_ux,0.9212976098060608 +illusion_0.75L,target,38,7.6,velocity,center_uy,0.5311231017112732 +illusion_0.75L,target,38,7.6,velocity,lower_ux,0.9642970561981201 +illusion_0.75L,target,38,7.6,velocity,lower_uy,0.22272691130638123 +illusion_0.75L,target,39,7.8,velocity,upper_ux,1.0575488805770874 +illusion_0.75L,target,39,7.8,velocity,upper_uy,0.3380008339881897 +illusion_0.75L,target,39,7.8,velocity,center_ux,0.943805456161499 +illusion_0.75L,target,39,7.8,velocity,center_uy,0.5247066617012024 +illusion_0.75L,target,39,7.8,velocity,lower_ux,0.999087393283844 +illusion_0.75L,target,39,7.8,velocity,lower_uy,0.24607229232788086 +illusion_0.75L,target,40,8.0,velocity,upper_ux,1.017702579498291 +illusion_0.75L,target,40,8.0,velocity,upper_uy,0.3296063542366028 +illusion_0.75L,target,40,8.0,velocity,center_ux,0.9597617387771606 +illusion_0.75L,target,40,8.0,velocity,center_uy,0.5235730409622192 +illusion_0.75L,target,40,8.0,velocity,lower_ux,1.0348002910614014 +illusion_0.75L,target,40,8.0,velocity,lower_uy,0.2666377127170563 +illusion_0.75L,target,41,8.2,velocity,upper_ux,0.9797514081001282 +illusion_0.75L,target,41,8.2,velocity,upper_uy,0.31418609619140625 +illusion_0.75L,target,41,8.2,velocity,center_ux,0.9694309234619141 +illusion_0.75L,target,41,8.2,velocity,center_uy,0.5301669239997864 +illusion_0.75L,target,41,8.2,velocity,lower_ux,1.0721055269241333 +illusion_0.75L,target,41,8.2,velocity,lower_uy,0.28493747115135193 +illusion_0.75L,target,42,8.4,velocity,upper_ux,0.9419988393783569 +illusion_0.75L,target,42,8.4,velocity,upper_uy,0.29137638211250305 +illusion_0.75L,target,42,8.4,velocity,center_ux,0.9726610779762268 +illusion_0.75L,target,42,8.4,velocity,center_uy,0.5423471331596375 +illusion_0.75L,target,42,8.4,velocity,lower_ux,1.1119625568389893 +illusion_0.75L,target,42,8.4,velocity,lower_uy,0.3012158274650574 +illusion_0.75L,target,43,8.6,velocity,upper_ux,0.9042273163795471 +illusion_0.75L,target,43,8.6,velocity,upper_uy,0.2587854862213135 +illusion_0.75L,target,43,8.6,velocity,center_ux,0.9680097699165344 +illusion_0.75L,target,43,8.6,velocity,center_uy,0.5541167259216309 +illusion_0.75L,target,43,8.6,velocity,lower_ux,1.155624508857727 +illusion_0.75L,target,43,8.6,velocity,lower_uy,0.3152924180030823 +illusion_0.75L,target,44,8.8,velocity,upper_ux,0.8677547574043274 +illusion_0.75L,target,44,8.8,velocity,upper_uy,0.21417807042598724 +illusion_0.75L,target,44,8.8,velocity,center_ux,0.9529058337211609 +illusion_0.75L,target,44,8.8,velocity,center_uy,0.5518838763237 +illusion_0.75L,target,44,8.8,velocity,lower_ux,1.2044416666030884 +illusion_0.75L,target,44,8.8,velocity,lower_uy,0.3261818289756775 +illusion_0.75L,target,45,9.0,velocity,upper_ux,0.8356767892837524 +illusion_0.75L,target,45,9.0,velocity,upper_uy,0.1573115885257721 +illusion_0.75L,target,45,9.0,velocity,center_ux,0.9259577393531799 +illusion_0.75L,target,45,9.0,velocity,center_uy,0.5124067068099976 +illusion_0.75L,target,45,9.0,velocity,lower_ux,1.2591663599014282 +illusion_0.75L,target,45,9.0,velocity,lower_uy,0.3307783007621765 +illusion_0.75L,target,46,9.2,velocity,upper_ux,0.8126861453056335 +illusion_0.75L,target,46,9.2,velocity,upper_uy,0.09145428985357285 +illusion_0.75L,target,46,9.2,velocity,center_ux,0.8909468054771423 +illusion_0.75L,target,46,9.2,velocity,center_uy,0.4113478362560272 +illusion_0.75L,target,46,9.2,velocity,lower_ux,1.31679368019104 +illusion_0.75L,target,46,9.2,velocity,lower_uy,0.3199414908885956 +illusion_0.75L,target,47,9.4,velocity,upper_ux,0.8036858439445496 +illusion_0.75L,target,47,9.4,velocity,upper_uy,0.023572657257318497 +illusion_0.75L,target,47,9.4,velocity,center_ux,0.8576545715332031 +illusion_0.75L,target,47,9.4,velocity,center_uy,0.24280790984630585 +illusion_0.75L,target,47,9.4,velocity,lower_ux,1.3639264106750488 +illusion_0.75L,target,47,9.4,velocity,lower_uy,0.2734200954437256 +illusion_0.75L,target,48,9.6,velocity,upper_ux,0.8110343813896179 +illusion_0.75L,target,48,9.6,velocity,upper_uy,-0.038250867277383804 +illusion_0.75L,target,48,9.6,velocity,center_ux,0.8362107872962952 +illusion_0.75L,target,48,9.6,velocity,center_uy,0.02966763824224472 +illusion_0.75L,target,48,9.6,velocity,lower_ux,1.377282738685608 +illusion_0.75L,target,48,9.6,velocity,lower_uy,0.1699485033750534 +illusion_0.75L,target,49,9.8,velocity,upper_ux,0.8323857188224792 +illusion_0.75L,target,49,9.8,velocity,upper_uy,-0.08938103914260864 +illusion_0.75L,target,49,9.8,velocity,center_ux,0.8313175439834595 +illusion_0.75L,target,49,9.8,velocity,center_uy,-0.18768154084682465 +illusion_0.75L,target,49,9.8,velocity,lower_ux,1.3455108404159546 +illusion_0.75L,target,49,9.8,velocity,lower_uy,0.019796639680862427 +illusion_0.75L,target,50,10.0,velocity,upper_ux,0.8620561957359314 +illusion_0.75L,target,50,10.0,velocity,upper_uy,-0.13069504499435425 +illusion_0.75L,target,50,10.0,velocity,center_ux,0.8420872688293457 +illusion_0.75L,target,50,10.0,velocity,center_uy,-0.36808398365974426 +illusion_0.75L,target,50,10.0,velocity,lower_ux,1.2840402126312256 +illusion_0.75L,target,50,10.0,velocity,lower_uy,-0.13141024112701416 +illusion_0.75L,target,51,10.2,velocity,upper_ux,0.8949806094169617 +illusion_0.75L,target,51,10.2,velocity,upper_uy,-0.1655348539352417 +illusion_0.75L,target,51,10.2,velocity,center_ux,0.8645093441009521 +illusion_0.75L,target,51,10.2,velocity,center_uy,-0.48211735486984253 +illusion_0.75L,target,51,10.2,velocity,lower_ux,1.2158944606781006 +illusion_0.75L,target,51,10.2,velocity,lower_uy,-0.2441941797733307 +illusion_0.75L,target,52,10.4,velocity,upper_ux,0.9288675785064697 +illusion_0.75L,target,52,10.4,velocity,upper_uy,-0.19598805904388428 +illusion_0.75L,target,52,10.4,velocity,center_ux,0.8928530216217041 +illusion_0.75L,target,52,10.4,velocity,center_uy,-0.5272666811943054 +illusion_0.75L,target,52,10.4,velocity,lower_ux,1.1538496017456055 +illusion_0.75L,target,52,10.4,velocity,lower_uy,-0.30843207240104675 +illusion_0.75L,target,53,10.6,velocity,upper_ux,0.9633363485336304 +illusion_0.75L,target,53,10.6,velocity,upper_uy,-0.22266767919063568 +illusion_0.75L,target,53,10.6,velocity,center_ux,0.9207521080970764 +illusion_0.75L,target,53,10.6,velocity,center_uy,-0.5307760834693909 +illusion_0.75L,target,53,10.6,velocity,lower_ux,1.1014118194580078 +illusion_0.75L,target,53,10.6,velocity,lower_uy,-0.33435848355293274 +illusion_0.75L,target,54,10.8,velocity,upper_ux,0.9985678195953369 +illusion_0.75L,target,54,10.8,velocity,upper_uy,-0.2459997683763504 +illusion_0.75L,target,54,10.8,velocity,center_ux,0.9436877965927124 +illusion_0.75L,target,54,10.8,velocity,center_uy,-0.5243223309516907 +illusion_0.75L,target,54,10.8,velocity,lower_ux,1.0572413206100464 +illusion_0.75L,target,54,10.8,velocity,lower_uy,-0.3375506103038788 +illusion_0.75L,target,55,11.0,velocity,upper_ux,1.0348231792449951 +illusion_0.75L,target,55,11.0,velocity,upper_uy,-0.2665696442127228 +illusion_0.75L,target,55,11.0,velocity,center_ux,0.9601895809173584 +illusion_0.75L,target,55,11.0,velocity,center_uy,-0.5231278538703918 +illusion_0.75L,target,55,11.0,velocity,lower_ux,1.0179904699325562 +illusion_0.75L,target,55,11.0,velocity,lower_uy,-0.3292480409145355 +illusion_0.75L,target,56,11.2,velocity,upper_ux,1.072567105293274 +illusion_0.75L,target,56,11.2,velocity,upper_uy,-0.28488972783088684 +illusion_0.75L,target,56,11.2,velocity,center_ux,0.970306396484375 +illusion_0.75L,target,56,11.2,velocity,center_uy,-0.5296688675880432 +illusion_0.75L,target,56,11.2,velocity,lower_ux,0.9805142879486084 +illusion_0.75L,target,56,11.2,velocity,lower_uy,-0.3138939142227173 +illusion_0.75L,target,57,11.4,velocity,upper_ux,1.1126128435134888 +illusion_0.75L,target,57,11.4,velocity,upper_uy,-0.30120113492012024 +illusion_0.75L,target,57,11.4,velocity,center_ux,0.9737427234649658 +illusion_0.75L,target,57,11.4,velocity,center_uy,-0.5418282151222229 +illusion_0.75L,target,57,11.4,velocity,lower_ux,0.9429763555526733 +illusion_0.75L,target,57,11.4,velocity,lower_uy,-0.29113852977752686 +illusion_0.75L,target,58,11.6,velocity,upper_ux,1.1561623811721802 +illusion_0.75L,target,58,11.6,velocity,upper_uy,-0.31532198190689087 +illusion_0.75L,target,58,11.6,velocity,center_ux,0.9690138101577759 +illusion_0.75L,target,58,11.6,velocity,center_uy,-0.5536386370658875 +illusion_0.75L,target,58,11.6,velocity,lower_ux,0.9051186442375183 +illusion_0.75L,target,58,11.6,velocity,lower_uy,-0.2585984170436859 +illusion_0.75L,target,59,11.8,velocity,upper_ux,1.204626202583313 +illusion_0.75L,target,59,11.8,velocity,upper_uy,-0.32627609372138977 +illusion_0.75L,target,59,11.8,velocity,center_ux,0.9536139965057373 +illusion_0.75L,target,59,11.8,velocity,center_uy,-0.5515683889389038 +illusion_0.75L,target,59,11.8,velocity,lower_ux,0.8683356642723083 +illusion_0.75L,target,59,11.8,velocity,lower_uy,-0.21404974162578583 +illusion_0.75L,target,60,12.0,velocity,upper_ux,1.2588415145874023 +illusion_0.75L,target,60,12.0,velocity,upper_uy,-0.33099013566970825 +illusion_0.75L,target,60,12.0,velocity,center_ux,0.9262151122093201 +illusion_0.75L,target,60,12.0,velocity,center_uy,-0.5124561190605164 +illusion_0.75L,target,60,12.0,velocity,lower_ux,0.8358083963394165 +illusion_0.75L,target,60,12.0,velocity,lower_uy,-0.15726888179779053 +illusion_0.75L,target,61,12.2,velocity,upper_ux,1.315972924232483 +illusion_0.75L,target,61,12.2,velocity,upper_uy,-0.3204040825366974 +illusion_0.75L,target,61,12.2,velocity,center_ux,0.8906738758087158 +illusion_0.75L,target,61,12.2,velocity,center_uy,-0.4119979739189148 +illusion_0.75L,target,61,12.2,velocity,lower_ux,0.812339723110199 +illusion_0.75L,target,61,12.2,velocity,lower_uy,-0.09153337776660919 +illusion_0.75L,target,62,12.4,velocity,upper_ux,1.362870454788208 +illusion_0.75L,target,62,12.4,velocity,upper_uy,-0.27436941862106323 +illusion_0.75L,target,62,12.4,velocity,center_ux,0.856862485408783 +illusion_0.75L,target,62,12.4,velocity,center_uy,-0.24416841566562653 +illusion_0.75L,target,62,12.4,velocity,lower_ux,0.8029370903968811 +illusion_0.75L,target,62,12.4,velocity,lower_uy,-0.023789217695593834 +illusion_0.75L,target,63,12.6,velocity,upper_ux,1.3764311075210571 +illusion_0.75L,target,63,12.6,velocity,upper_uy,-0.17149761319160461 +illusion_0.75L,target,63,12.6,velocity,center_ux,0.8350309133529663 +illusion_0.75L,target,63,12.6,velocity,center_uy,-0.03158586099743843 +illusion_0.75L,target,63,12.6,velocity,lower_ux,0.8100537657737732 +illusion_0.75L,target,63,12.6,velocity,lower_uy,0.037926796823740005 +illusion_0.75L,target,64,12.8,velocity,upper_ux,1.3452049493789673 +illusion_0.75L,target,64,12.8,velocity,upper_uy,-0.02158818021416664 +illusion_0.75L,target,64,12.8,velocity,center_ux,0.8300408124923706 +illusion_0.75L,target,64,12.8,velocity,center_uy,0.18562138080596924 +illusion_0.75L,target,64,12.8,velocity,lower_ux,0.8314623832702637 +illusion_0.75L,target,64,12.8,velocity,lower_uy,0.08901010453701019 +illusion_0.75L,target,65,13.0,velocity,upper_ux,1.2843722105026245 +illusion_0.75L,target,65,13.0,velocity,upper_uy,0.12998823821544647 +illusion_0.75L,target,65,13.0,velocity,center_ux,0.8410581350326538 +illusion_0.75L,target,65,13.0,velocity,center_uy,0.3664328455924988 +illusion_0.75L,target,65,13.0,velocity,lower_ux,0.8615087270736694 +illusion_0.75L,target,65,13.0,velocity,lower_uy,0.13032984733581543 +illusion_0.75L,target,66,13.2,velocity,upper_ux,1.2167640924453735 +illusion_0.75L,target,66,13.2,velocity,upper_uy,0.24347025156021118 +illusion_0.75L,target,66,13.2,velocity,center_ux,0.8639346361160278 +illusion_0.75L,target,66,13.2,velocity,center_uy,0.4812544584274292 +illusion_0.75L,target,66,13.2,velocity,lower_ux,0.8949569463729858 +illusion_0.75L,target,66,13.2,velocity,lower_uy,0.1652112901210785 +illusion_0.75L,target,67,13.4,velocity,upper_ux,1.1550577878952026 +illusion_0.75L,target,67,13.4,velocity,upper_uy,0.30833277106285095 +illusion_0.75L,target,67,13.4,velocity,center_ux,0.8927573561668396 +illusion_0.75L,target,67,13.4,velocity,center_uy,0.5270958542823792 +illusion_0.75L,target,67,13.4,velocity,lower_ux,0.9293047189712524 +illusion_0.75L,target,67,13.4,velocity,lower_uy,0.19572953879833221 +illusion_0.75L,target,68,13.6,velocity,upper_ux,1.1027140617370605 +illusion_0.75L,target,68,13.6,velocity,upper_uy,0.334618479013443 +illusion_0.75L,target,68,13.6,velocity,center_ux,0.9209867119789124 +illusion_0.75L,target,68,13.6,velocity,center_uy,0.5309084057807922 +illusion_0.75L,target,68,13.6,velocity,lower_ux,0.9640200734138489 +illusion_0.75L,target,68,13.6,velocity,lower_uy,0.2224840521812439 +illusion_0.75L,target,69,13.8,velocity,upper_ux,1.0583869218826294 +illusion_0.75L,target,69,13.8,velocity,upper_uy,0.337941437959671 +illusion_0.75L,target,69,13.8,velocity,center_ux,0.9439759850502014 +illusion_0.75L,target,69,13.8,velocity,center_uy,0.5245025753974915 +illusion_0.75L,target,69,13.8,velocity,lower_ux,0.9992180466651917 +illusion_0.75L,target,69,13.8,velocity,lower_uy,0.24588340520858765 +illusion_0.75L,target,70,14.0,velocity,upper_ux,1.018803358078003 +illusion_0.75L,target,70,14.0,velocity,upper_uy,0.32966378331184387 +illusion_0.75L,target,70,14.0,velocity,center_ux,0.9602746367454529 +illusion_0.75L,target,70,14.0,velocity,center_uy,0.5232987403869629 +illusion_0.75L,target,70,14.0,velocity,lower_ux,1.0352091789245605 +illusion_0.75L,target,70,14.0,velocity,lower_uy,0.2665083110332489 +illusion_0.75L,target,71,14.2,velocity,upper_ux,0.980886697769165 +illusion_0.75L,target,71,14.2,velocity,upper_uy,0.31432801485061646 +illusion_0.75L,target,71,14.2,velocity,center_ux,0.9700055718421936 +illusion_0.75L,target,71,14.2,velocity,center_uy,0.5298440456390381 +illusion_0.75L,target,71,14.2,velocity,lower_ux,1.0725311040878296 +illusion_0.75L,target,71,14.2,velocity,lower_uy,0.28486984968185425 +illusion_0.75L,target,72,14.4,velocity,upper_ux,0.9428970813751221 +illusion_0.75L,target,72,14.4,velocity,upper_uy,0.29162997007369995 +illusion_0.75L,target,72,14.4,velocity,center_ux,0.9730031490325928 +illusion_0.75L,target,72,14.4,velocity,center_uy,0.5420297384262085 +illusion_0.75L,target,72,14.4,velocity,lower_ux,1.1121044158935547 +illusion_0.75L,target,72,14.4,velocity,lower_uy,0.3012133538722992 +illusion_0.75L,target,73,14.6,velocity,upper_ux,0.9046838879585266 +illusion_0.75L,target,73,14.6,velocity,upper_uy,0.25920388102531433 +illusion_0.75L,target,73,14.6,velocity,center_ux,0.9679255485534668 +illusion_0.75L,target,73,14.6,velocity,center_uy,0.5539096593856812 +illusion_0.75L,target,73,14.6,velocity,lower_ux,1.155250906944275 +illusion_0.75L,target,73,14.6,velocity,lower_uy,0.31536057591438293 +illusion_0.75L,target,74,14.8,velocity,upper_ux,0.8677243590354919 +illusion_0.75L,target,74,14.8,velocity,upper_uy,0.2148166298866272 +illusion_0.75L,target,74,14.8,velocity,center_ux,0.9523988962173462 +illusion_0.75L,target,74,14.8,velocity,center_uy,0.5520220398902893 +illusion_0.75L,target,74,14.8,velocity,lower_ux,1.2034937143325806 +illusion_0.75L,target,74,14.8,velocity,lower_uy,0.32634180784225464 +illusion_0.75L,target,75,15.0,velocity,upper_ux,0.8352644443511963 +illusion_0.75L,target,75,15.0,velocity,upper_uy,0.1581992357969284 +illusion_0.75L,target,75,15.0,velocity,center_ux,0.9252030253410339 +illusion_0.75L,target,75,15.0,velocity,center_uy,0.5132986307144165 +illusion_0.75L,target,75,15.0,velocity,lower_ux,1.257787823677063 +illusion_0.75L,target,75,15.0,velocity,lower_uy,0.33109989762306213 +illusion_0.75L,target,76,15.2,velocity,upper_ux,0.8120766282081604 +illusion_0.75L,target,76,15.2,velocity,upper_uy,0.09254347532987595 +illusion_0.75L,target,76,15.2,velocity,center_ux,0.8901582360267639 +illusion_0.75L,target,76,15.2,velocity,center_uy,0.4133951961994171 +illusion_0.75L,target,76,15.2,velocity,lower_ux,1.315355658531189 +illusion_0.75L,target,76,15.2,velocity,lower_uy,0.320613294839859 +illusion_0.75L,target,77,15.4,velocity,upper_ux,0.803010880947113 +illusion_0.75L,target,77,15.4,velocity,upper_uy,0.024725789204239845 +illusion_0.75L,target,77,15.4,velocity,center_ux,0.8569203019142151 +illusion_0.75L,target,77,15.4,velocity,center_uy,0.24601277709007263 +illusion_0.75L,target,77,15.4,velocity,lower_ux,1.3629443645477295 +illusion_0.75L,target,77,15.4,velocity,lower_uy,0.27475103735923767 +illusion_0.75L,target,78,15.6,velocity,upper_ux,0.8103963732719421 +illusion_0.75L,target,78,15.6,velocity,upper_uy,-0.03719162568449974 +illusion_0.75L,target,78,15.6,velocity,center_ux,0.8355492353439331 +illusion_0.75L,target,78,15.6,velocity,center_uy,0.0334886871278286 +illusion_0.75L,target,78,15.6,velocity,lower_ux,1.3772287368774414 +illusion_0.75L,target,78,15.6,velocity,lower_uy,0.17201504111289978 +illusion_0.75L,target,79,15.8,velocity,upper_ux,0.8319518566131592 +illusion_0.75L,target,79,15.8,velocity,upper_uy,-0.08849235624074936 +illusion_0.75L,target,79,15.8,velocity,center_ux,0.830808162689209 +illusion_0.75L,target,79,15.8,velocity,center_uy,-0.18407905101776123 +illusion_0.75L,target,79,15.8,velocity,lower_ux,1.3464841842651367 +illusion_0.75L,target,79,15.8,velocity,lower_uy,0.02206248976290226 +illusion_0.75L,target,80,16.0,velocity,upper_ux,0.8619651198387146 +illusion_0.75L,target,80,16.0,velocity,upper_uy,-0.12995845079421997 +illusion_0.75L,target,80,16.0,velocity,center_ux,0.8418141007423401 +illusion_0.75L,target,80,16.0,velocity,center_uy,-0.36550581455230713 +illusion_0.75L,target,80,16.0,velocity,lower_ux,1.285750150680542 +illusion_0.75L,target,80,16.0,velocity,lower_uy,-0.12967859208583832 +illusion_0.75L,target,81,16.2,velocity,upper_ux,0.895193338394165 +illusion_0.75L,target,81,16.2,velocity,upper_uy,-0.16491597890853882 +illusion_0.75L,target,81,16.2,velocity,center_ux,0.8644581437110901 +illusion_0.75L,target,81,16.2,velocity,center_uy,-0.4809662103652954 +illusion_0.75L,target,81,16.2,velocity,lower_ux,1.2179269790649414 +illusion_0.75L,target,81,16.2,velocity,lower_uy,-0.24330934882164001 +illusion_0.75L,target,82,16.4,velocity,upper_ux,0.9291621446609497 +illusion_0.75L,target,82,16.4,velocity,upper_uy,-0.19547182321548462 +illusion_0.75L,target,82,16.4,velocity,center_ux,0.8928964138031006 +illusion_0.75L,target,82,16.4,velocity,center_uy,-0.5272390246391296 +illusion_0.75L,target,82,16.4,velocity,lower_ux,1.1557990312576294 +illusion_0.75L,target,82,16.4,velocity,lower_uy,-0.3082677125930786 +illusion_0.75L,target,83,16.6,velocity,upper_ux,0.9634284973144531 +illusion_0.75L,target,83,16.6,velocity,upper_uy,-0.22224201261997223 +illusion_0.75L,target,83,16.6,velocity,center_ux,0.9207000732421875 +illusion_0.75L,target,83,16.6,velocity,center_uy,-0.5311988592147827 +illusion_0.75L,target,83,16.6,velocity,lower_ux,1.1029560565948486 +illusion_0.75L,target,83,16.6,velocity,lower_uy,-0.3346182703971863 +illusion_0.75L,target,84,16.8,velocity,upper_ux,0.9982270002365112 +illusion_0.75L,target,84,16.8,velocity,upper_uy,-0.24563910067081451 +illusion_0.75L,target,84,16.8,velocity,center_ux,0.9433459639549255 +illusion_0.75L,target,84,16.8,velocity,center_uy,-0.5247613787651062 +illusion_0.75L,target,84,16.8,velocity,lower_ux,1.0581949949264526 +illusion_0.75L,target,84,16.8,velocity,lower_uy,-0.33799609541893005 +illusion_0.75L,target,85,17.0,velocity,upper_ux,1.0339795351028442 +illusion_0.75L,target,85,17.0,velocity,upper_uy,-0.2662471532821655 +illusion_0.75L,target,85,17.0,velocity,center_ux,0.959491491317749 +illusion_0.75L,target,85,17.0,velocity,center_uy,-0.5234660506248474 +illusion_0.75L,target,85,17.0,velocity,lower_ux,1.0183619260787964 +illusion_0.75L,target,85,17.0,velocity,lower_uy,-0.32977062463760376 +illusion_0.75L,target,86,17.2,velocity,upper_ux,1.071335792541504 +illusion_0.75L,target,86,17.2,velocity,upper_uy,-0.28458234667778015 +illusion_0.75L,target,86,17.2,velocity,center_ux,0.9693734645843506 +illusion_0.75L,target,86,17.2,velocity,center_uy,-0.5299091935157776 +illusion_0.75L,target,86,17.2,velocity,lower_ux,0.9804916977882385 +illusion_0.75L,target,86,17.2,velocity,lower_uy,-0.314486563205719 +illusion_0.75L,target,87,17.4,velocity,upper_ux,1.1112442016601562 +illusion_0.75L,target,87,17.4,velocity,upper_uy,-0.3008992075920105 +illusion_0.75L,target,87,17.4,velocity,center_ux,0.9728555083274841 +illusion_0.75L,target,87,17.4,velocity,center_uy,-0.5420129895210266 +illusion_0.75L,target,87,17.4,velocity,lower_ux,0.9428555369377136 +illusion_0.75L,target,87,17.4,velocity,lower_uy,-0.29184284806251526 +illusion_0.75L,target,88,17.6,velocity,upper_ux,1.1548805236816406 +illusion_0.75L,target,88,17.6,velocity,upper_uy,-0.3150269389152527 +illusion_0.75L,target,88,17.6,velocity,center_ux,0.9684445858001709 +illusion_0.75L,target,88,17.6,velocity,center_uy,-0.5538886785507202 +illusion_0.75L,target,88,17.6,velocity,lower_ux,0.9051337242126465 +illusion_0.75L,target,88,17.6,velocity,lower_uy,-0.2594638168811798 +illusion_0.75L,target,89,17.8,velocity,upper_ux,1.2035635709762573 +illusion_0.75L,target,89,17.8,velocity,upper_uy,-0.3260015845298767 +illusion_0.75L,target,89,17.8,velocity,center_ux,0.9535495638847351 +illusion_0.75L,target,89,17.8,velocity,center_uy,-0.5521275997161865 +illusion_0.75L,target,89,17.8,velocity,lower_ux,0.8685864806175232 +illusion_0.75L,target,89,17.8,velocity,lower_uy,-0.2150925248861313 +illusion_0.75L,target,90,18.0,velocity,upper_ux,1.2581093311309814 +illusion_0.75L,target,90,18.0,velocity,upper_uy,-0.33078470826148987 +illusion_0.75L,target,90,18.0,velocity,center_ux,0.9267507791519165 +illusion_0.75L,target,90,18.0,velocity,center_uy,-0.5136382579803467 +illusion_0.75L,target,90,18.0,velocity,lower_ux,0.8363189101219177 +illusion_0.75L,target,90,18.0,velocity,lower_uy,-0.15843747556209564 +illusion_0.75L,target,91,18.2,velocity,upper_ux,1.3156957626342773 +illusion_0.75L,target,91,18.2,velocity,upper_uy,-0.32042214274406433 +illusion_0.75L,target,91,18.2,velocity,center_ux,0.8917456269264221 +illusion_0.75L,target,91,18.2,velocity,center_uy,-0.4139384925365448 +illusion_0.75L,target,91,18.2,velocity,lower_ux,0.8130475878715515 +illusion_0.75L,target,91,18.2,velocity,lower_uy,-0.09269897639751434 +illusion_0.75L,target,92,18.4,velocity,upper_ux,1.3631852865219116 +illusion_0.75L,target,92,18.4,velocity,upper_uy,-0.2748872637748718 +illusion_0.75L,target,92,18.4,velocity,center_ux,0.85822594165802 +illusion_0.75L,target,92,18.4,velocity,center_uy,-0.24660661816596985 +illusion_0.75L,target,92,18.4,velocity,lower_ux,0.8036888837814331 +illusion_0.75L,target,92,18.4,velocity,lower_uy,-0.024791214615106583 +illusion_0.75L,target,93,18.6,velocity,upper_ux,1.3773263692855835 +illusion_0.75L,target,93,18.6,velocity,upper_uy,-0.17264439165592194 +illusion_0.75L,target,93,18.6,velocity,center_ux,0.8363674283027649 +illusion_0.75L,target,93,18.6,velocity,center_uy,-0.03401688486337662 +illusion_0.75L,target,93,18.6,velocity,lower_ux,0.8106449842453003 +illusion_0.75L,target,93,18.6,velocity,lower_uy,0.037185292690992355 +illusion_0.75L,target,94,18.8,velocity,upper_ux,1.3463243246078491 +illusion_0.75L,target,94,18.8,velocity,upper_uy,-0.023071112111210823 +illusion_0.75L,target,94,18.8,velocity,center_ux,0.8310595154762268 +illusion_0.75L,target,94,18.8,velocity,center_uy,0.1836155503988266 +illusion_0.75L,target,94,18.8,velocity,lower_ux,0.8317157030105591 +illusion_0.75L,target,94,18.8,velocity,lower_uy,0.08850587904453278 +illusion_0.75L,target,95,19.0,velocity,upper_ux,1.2852195501327515 +illusion_0.75L,target,95,19.0,velocity,upper_uy,0.1285933256149292 +illusion_0.75L,target,95,19.0,velocity,center_ux,0.8415496349334717 +illusion_0.75L,target,95,19.0,velocity,center_uy,0.3650553226470947 +illusion_0.75L,target,95,19.0,velocity,lower_ux,0.8612918257713318 +illusion_0.75L,target,95,19.0,velocity,lower_uy,0.12996473908424377 +illusion_0.75L,target,96,19.2,velocity,upper_ux,1.217099666595459 +illusion_0.75L,target,96,19.2,velocity,upper_uy,0.2423715442419052 +illusion_0.75L,target,96,19.2,velocity,center_ux,0.863841712474823 +illusion_0.75L,target,96,19.2,velocity,center_uy,0.480525404214859 +illusion_0.75L,target,96,19.2,velocity,lower_ux,0.8942391872406006 +illusion_0.75L,target,96,19.2,velocity,lower_uy,0.16489949822425842 +illusion_0.75L,target,97,19.4,velocity,upper_ux,1.1549572944641113 +illusion_0.75L,target,97,19.4,velocity,upper_uy,0.307557076215744 +illusion_0.75L,target,97,19.4,velocity,center_ux,0.8922157883644104 +illusion_0.75L,target,97,19.4,velocity,center_uy,0.5268495678901672 +illusion_0.75L,target,97,19.4,velocity,lower_ux,0.9281975030899048 +illusion_0.75L,target,97,19.4,velocity,lower_uy,0.1954289674758911 +illusion_0.75L,target,98,19.6,velocity,upper_ux,1.102439045906067 +illusion_0.75L,target,98,19.6,velocity,upper_uy,0.3341159522533417 +illusion_0.75L,target,98,19.6,velocity,center_ux,0.9202932119369507 +illusion_0.75L,target,98,19.6,velocity,center_uy,0.5308486819267273 +illusion_0.75L,target,98,19.6,velocity,lower_ux,0.9627668857574463 +illusion_0.75L,target,98,19.6,velocity,lower_uy,0.22218362987041473 +illusion_0.75L,target,99,19.8,velocity,upper_ux,1.0582000017166138 +illusion_0.75L,target,99,19.8,velocity,upper_uy,0.3376369774341583 +illusion_0.75L,target,99,19.8,velocity,center_ux,0.9434226751327515 +illusion_0.75L,target,99,19.8,velocity,center_uy,0.5243942737579346 +illusion_0.75L,target,99,19.8,velocity,lower_ux,0.9980530738830566 +illusion_0.75L,target,99,19.8,velocity,lower_uy,0.24558408558368683 +illusion_0.75L,target,100,20.0,velocity,upper_ux,1.0188722610473633 +illusion_0.75L,target,100,20.0,velocity,upper_uy,0.32949820160865784 +illusion_0.75L,target,100,20.0,velocity,center_ux,0.9600391387939453 +illusion_0.75L,target,100,20.0,velocity,center_uy,0.5230569243431091 +illusion_0.75L,target,100,20.0,velocity,lower_ux,1.0342762470245361 +illusion_0.75L,target,100,20.0,velocity,lower_uy,0.2662116587162018 +illusion_0.75L,target,101,20.2,velocity,upper_ux,0.9813270568847656 +illusion_0.75L,target,101,20.2,velocity,upper_uy,0.3142736256122589 +illusion_0.75L,target,101,20.2,velocity,center_ux,0.9702152013778687 +illusion_0.75L,target,101,20.2,velocity,center_uy,0.5294649600982666 +illusion_0.75L,target,101,20.2,velocity,lower_ux,1.0719273090362549 +illusion_0.75L,target,101,20.2,velocity,lower_uy,0.2845793068408966 +illusion_0.75L,target,102,20.4,velocity,upper_ux,0.9437426924705505 +illusion_0.75L,target,102,20.4,velocity,upper_uy,0.2916841506958008 +illusion_0.75L,target,102,20.4,velocity,center_ux,0.973722517490387 +illusion_0.75L,target,102,20.4,velocity,center_uy,0.5415607690811157 +illusion_0.75L,target,102,20.4,velocity,lower_ux,1.11185884475708 +illusion_0.75L,target,102,20.4,velocity,lower_uy,0.30093538761138916 +illusion_0.75L,target,103,20.6,velocity,upper_ux,0.9058274030685425 +illusion_0.75L,target,103,20.6,velocity,upper_uy,0.25936803221702576 +illusion_0.75L,target,103,20.6,velocity,center_ux,0.9691000580787659 +illusion_0.75L,target,103,20.6,velocity,center_uy,0.553485095500946 +illusion_0.75L,target,103,20.6,velocity,lower_ux,1.1552642583847046 +illusion_0.75L,target,103,20.6,velocity,lower_uy,0.31511205434799194 +illusion_0.75L,target,104,20.8,velocity,upper_ux,0.868916392326355 +illusion_0.75L,target,104,20.8,velocity,upper_uy,0.2150837779045105 +illusion_0.75L,target,104,20.8,velocity,center_ux,0.9538305401802063 +illusion_0.75L,target,104,20.8,velocity,center_uy,0.5518950819969177 +illusion_0.75L,target,104,20.8,velocity,lower_ux,1.203531265258789 +illusion_0.75L,target,104,20.8,velocity,lower_uy,0.32615554332733154 +illusion_0.75L,target,105,21.0,velocity,upper_ux,0.8362061381340027 +illusion_0.75L,target,105,21.0,velocity,upper_uy,0.15854810178279877 +illusion_0.75L,target,105,21.0,velocity,center_ux,0.9265845417976379 +illusion_0.75L,target,105,21.0,velocity,center_uy,0.5137960314750671 +illusion_0.75L,target,105,21.0,velocity,lower_ux,1.2575764656066895 +illusion_0.75L,target,105,21.0,velocity,lower_uy,0.3310571014881134 +illusion_0.75L,target,106,21.2,velocity,upper_ux,0.812516987323761 +illusion_0.75L,target,106,21.2,velocity,upper_uy,0.09295327216386795 +illusion_0.75L,target,106,21.2,velocity,center_ux,0.8911367058753967 +illusion_0.75L,target,106,21.2,velocity,center_uy,0.41474398970603943 +illusion_0.75L,target,106,21.2,velocity,lower_ux,1.314743161201477 +illusion_0.75L,target,106,21.2,velocity,lower_uy,0.32093071937561035 +illusion_0.75L,target,107,21.4,velocity,upper_ux,0.8028479814529419 +illusion_0.75L,target,107,21.4,velocity,upper_uy,0.025176526978611946 +illusion_0.75L,target,107,21.4,velocity,center_ux,0.8572442531585693 +illusion_0.75L,target,107,21.4,velocity,center_uy,0.24817335605621338 +illusion_0.75L,target,107,21.4,velocity,lower_ux,1.3621159791946411 +illusion_0.75L,target,107,21.4,velocity,lower_uy,0.2758369743824005 +illusion_0.75L,target,108,21.6,velocity,upper_ux,0.8097121715545654 +illusion_0.75L,target,108,21.6,velocity,upper_uy,-0.0367264598608017 +illusion_0.75L,target,108,21.6,velocity,center_ux,0.8351957201957703 +illusion_0.75L,target,108,21.6,velocity,center_uy,0.03615189343690872 +illusion_0.75L,target,108,21.6,velocity,lower_ux,1.376619815826416 +illusion_0.75L,target,108,21.6,velocity,lower_uy,0.17411942780017853 +illusion_0.75L,target,109,21.8,velocity,upper_ux,0.8309917449951172 +illusion_0.75L,target,109,21.8,velocity,upper_uy,-0.08804240077733994 +illusion_0.75L,target,109,21.8,velocity,center_ux,0.8299830555915833 +illusion_0.75L,target,109,21.8,velocity,center_uy,-0.181396022439003 +illusion_0.75L,target,109,21.8,velocity,lower_ux,1.346330165863037 +illusion_0.75L,target,109,21.8,velocity,lower_uy,0.024722034111618996 +illusion_0.75L,target,110,22.0,velocity,upper_ux,0.8610038757324219 +illusion_0.75L,target,110,22.0,velocity,upper_uy,-0.12953941524028778 +illusion_0.75L,target,110,22.0,velocity,center_ux,0.8408015370368958 +illusion_0.75L,target,110,22.0,velocity,center_uy,-0.36334776878356934 +illusion_0.75L,target,110,22.0,velocity,lower_ux,1.2859324216842651 +illusion_0.75L,target,110,22.0,velocity,lower_uy,-0.1273341178894043 +illusion_0.75L,target,111,22.2,velocity,upper_ux,0.8944208025932312 +illusion_0.75L,target,111,22.2,velocity,upper_uy,-0.16453391313552856 +illusion_0.75L,target,111,22.2,velocity,center_ux,0.863503634929657 +illusion_0.75L,target,111,22.2,velocity,center_uy,-0.47970226407051086 +illusion_0.75L,target,111,22.2,velocity,lower_ux,1.218300223350525 +illusion_0.75L,target,111,22.2,velocity,lower_uy,-0.24178747832775116 +illusion_0.75L,target,112,22.4,velocity,upper_ux,0.9287114143371582 +illusion_0.75L,target,112,22.4,velocity,upper_uy,-0.1951378881931305 +illusion_0.75L,target,112,22.4,velocity,center_ux,0.8922333717346191 +illusion_0.75L,target,112,22.4,velocity,center_uy,-0.526772141456604 +illusion_0.75L,target,112,22.4,velocity,lower_ux,1.1563677787780762 +illusion_0.75L,target,112,22.4,velocity,lower_uy,-0.30755510926246643 +illusion_0.75L,target,113,22.6,velocity,upper_ux,0.9633644819259644 +illusion_0.75L,target,113,22.6,velocity,upper_uy,-0.22196707129478455 +illusion_0.75L,target,113,22.6,velocity,center_ux,0.9204840660095215 +illusion_0.75L,target,113,22.6,velocity,center_uy,-0.5310868620872498 +illusion_0.75L,target,113,22.6,velocity,lower_ux,1.103776454925537 +illusion_0.75L,target,113,22.6,velocity,lower_uy,-0.3344402015209198 +illusion_0.75L,target,114,22.8,velocity,upper_ux,0.998492419719696 +illusion_0.75L,target,114,22.8,velocity,upper_uy,-0.2454293817281723 +illusion_0.75L,target,114,22.8,velocity,center_ux,0.9435514807701111 +illusion_0.75L,target,114,22.8,velocity,center_uy,-0.5246737003326416 +illusion_0.75L,target,114,22.8,velocity,lower_ux,1.0592507123947144 +illusion_0.75L,target,114,22.8,velocity,lower_uy,-0.33807504177093506 +illusion_0.75L,target,115,23.0,velocity,upper_ux,1.0343785285949707 +illusion_0.75L,target,115,23.0,velocity,upper_uy,-0.26610320806503296 +illusion_0.75L,target,115,23.0,velocity,center_ux,0.9599047303199768 +illusion_0.75L,target,115,23.0,velocity,center_uy,-0.5233180522918701 +illusion_0.75L,target,115,23.0,velocity,lower_ux,1.0195097923278809 +illusion_0.75L,target,115,23.0,velocity,lower_uy,-0.3299590051174164 +illusion_0.75L,target,116,23.2,velocity,upper_ux,1.071596622467041 +illusion_0.75L,target,116,23.2,velocity,upper_uy,-0.2845027446746826 +illusion_0.75L,target,116,23.2,velocity,center_ux,0.9697072505950928 +illusion_0.75L,target,116,23.2,velocity,center_uy,-0.5297194123268127 +illusion_0.75L,target,116,23.2,velocity,lower_ux,0.9815093874931335 +illusion_0.75L,target,116,23.2,velocity,lower_uy,-0.3147534132003784 +illusion_0.75L,target,117,23.4,velocity,upper_ux,1.1111148595809937 +illusion_0.75L,target,117,23.4,velocity,upper_uy,-0.3008788228034973 +illusion_0.75L,target,117,23.4,velocity,center_ux,0.9728617668151855 +illusion_0.75L,target,117,23.4,velocity,center_uy,-0.5418268442153931 +illusion_0.75L,target,117,23.4,velocity,lower_ux,0.9435285329818726 +illusion_0.75L,target,117,23.4,velocity,lower_uy,-0.2922205626964569 +illusion_0.75L,target,118,23.6,velocity,upper_ux,1.1542284488677979 +illusion_0.75L,target,118,23.6,velocity,upper_uy,-0.31506630778312683 +illusion_0.75L,target,118,23.6,velocity,center_ux,0.9680339694023132 +illusion_0.75L,target,118,23.6,velocity,center_uy,-0.5538041591644287 +illusion_0.75L,target,118,23.6,velocity,lower_ux,0.9053619503974915 +illusion_0.75L,target,118,23.6,velocity,lower_uy,-0.2600107789039612 +illusion_0.75L,target,119,23.8,velocity,upper_ux,1.2024362087249756 +illusion_0.75L,target,119,23.8,velocity,upper_uy,-0.3261200785636902 +illusion_0.75L,target,119,23.8,velocity,center_ux,0.9528344869613647 +illusion_0.75L,target,119,23.8,velocity,center_uy,-0.5523790717124939 +illusion_0.75L,target,119,23.8,velocity,lower_ux,0.8684270977973938 +illusion_0.75L,target,119,23.8,velocity,lower_uy,-0.21586951613426208 +illusion_0.75L,target,120,24.0,velocity,upper_ux,1.2567298412322998 +illusion_0.75L,target,120,24.0,velocity,upper_uy,-0.33104994893074036 +illusion_0.75L,target,120,24.0,velocity,center_ux,0.9259787201881409 +illusion_0.75L,target,120,24.0,velocity,center_uy,-0.5146328210830688 +illusion_0.75L,target,120,24.0,velocity,lower_ux,0.835936427116394 +illusion_0.75L,target,120,24.0,velocity,lower_uy,-0.15946480631828308 +illusion_0.75L,target,121,24.2,velocity,upper_ux,1.3144044876098633 +illusion_0.75L,target,121,24.2,velocity,upper_uy,-0.32100650668144226 +illusion_0.75L,target,121,24.2,velocity,center_ux,0.8911015391349792 +illusion_0.75L,target,121,24.2,velocity,center_uy,-0.41604897379875183 +illusion_0.75L,target,121,24.2,velocity,lower_ux,0.8125844597816467 +illusion_0.75L,target,121,24.2,velocity,lower_uy,-0.09390746057033539 +illusion_0.75L,target,122,24.4,velocity,upper_ux,1.3624083995819092 +illusion_0.75L,target,122,24.4,velocity,upper_uy,-0.27607178688049316 +illusion_0.75L,target,122,24.4,velocity,center_ux,0.8577306270599365 +illusion_0.75L,target,122,24.4,velocity,center_uy,-0.24979345500469208 +illusion_0.75L,target,122,24.4,velocity,lower_ux,0.8031997680664062 +illusion_0.75L,target,122,24.4,velocity,lower_uy,-0.026021992787718773 +illusion_0.75L,target,123,24.6,velocity,upper_ux,1.3774828910827637 +illusion_0.75L,target,123,24.6,velocity,upper_uy,-0.17450153827667236 +illusion_0.75L,target,123,24.6,velocity,center_ux,0.8360216617584229 +illusion_0.75L,target,123,24.6,velocity,center_uy,-0.03772808238863945 +illusion_0.75L,target,123,24.6,velocity,lower_ux,0.8102172613143921 +illusion_0.75L,target,123,24.6,velocity,lower_uy,0.03609607368707657 +illusion_0.75L,target,124,24.8,velocity,upper_ux,1.3474725484848022 +illusion_0.75L,target,124,24.8,velocity,upper_uy,-0.025119535624980927 +illusion_0.75L,target,124,24.8,velocity,center_ux,0.8309029936790466 +illusion_0.75L,target,124,24.8,velocity,center_uy,0.18017858266830444 +illusion_0.75L,target,124,24.8,velocity,lower_ux,0.8314883708953857 +illusion_0.75L,target,124,24.8,velocity,lower_uy,0.08762241154909134 +illusion_0.75L,target,125,25.0,velocity,upper_ux,1.2870118618011475 +illusion_0.75L,target,125,25.0,velocity,upper_uy,0.1270086020231247 +illusion_0.75L,target,125,25.0,velocity,center_ux,0.8415818214416504 +illusion_0.75L,target,125,25.0,velocity,center_uy,0.36262720823287964 +illusion_0.75L,target,125,25.0,velocity,lower_ux,0.8613367676734924 +illusion_0.75L,target,125,25.0,velocity,lower_uy,0.12925098836421967 +illusion_0.75L,target,126,25.2,velocity,upper_ux,1.2190769910812378 +illusion_0.75L,target,126,25.2,velocity,upper_uy,0.24152794480323792 +illusion_0.75L,target,126,25.2,velocity,center_ux,0.863961935043335 +illusion_0.75L,target,126,25.2,velocity,center_uy,0.47945430874824524 +illusion_0.75L,target,126,25.2,velocity,lower_ux,0.8944498300552368 +illusion_0.75L,target,126,25.2,velocity,lower_uy,0.16430526971817017 +illusion_0.75L,target,127,25.4,velocity,upper_ux,1.1567176580429077 +illusion_0.75L,target,127,25.4,velocity,upper_uy,0.3073461055755615 +illusion_0.75L,target,127,25.4,velocity,center_ux,0.8922664523124695 +illusion_0.75L,target,127,25.4,velocity,center_uy,0.5268372297286987 +illusion_0.75L,target,127,25.4,velocity,lower_ux,0.9283379912376404 +illusion_0.75L,target,127,25.4,velocity,lower_uy,0.19493122398853302 +illusion_0.75L,target,128,25.6,velocity,upper_ux,1.1037026643753052 +illusion_0.75L,target,128,25.6,velocity,upper_uy,0.3342858850955963 +illusion_0.75L,target,128,25.6,velocity,center_ux,0.9201131463050842 +illusion_0.75L,target,128,25.6,velocity,center_uy,0.5312562584877014 +illusion_0.75L,target,128,25.6,velocity,lower_ux,0.9625876545906067 +illusion_0.75L,target,128,25.6,velocity,lower_uy,0.22176191210746765 +illusion_0.75L,target,129,25.8,velocity,upper_ux,1.0588713884353638 +illusion_0.75L,target,129,25.8,velocity,upper_uy,0.3379835784435272 +illusion_0.75L,target,129,25.8,velocity,center_ux,0.9429183006286621 +illusion_0.75L,target,129,25.8,velocity,center_uy,0.5248033404350281 +illusion_0.75L,target,129,25.8,velocity,lower_ux,0.9974160194396973 +illusion_0.75L,target,129,25.8,velocity,lower_uy,0.24521158635616302 +illusion_0.75L,target,130,26.0,velocity,upper_ux,1.0190585851669312 +illusion_0.75L,target,130,26.0,velocity,upper_uy,0.3299289047718048 +illusion_0.75L,target,130,26.0,velocity,center_ux,0.9592568278312683 +illusion_0.75L,target,130,26.0,velocity,center_uy,0.5233504772186279 +illusion_0.75L,target,130,26.0,velocity,lower_ux,1.0332156419754028 +illusion_0.75L,target,130,26.0,velocity,lower_uy,0.2658635973930359 +illusion_0.75L,target,131,26.2,velocity,upper_ux,0.9812822937965393 +illusion_0.75L,target,131,26.2,velocity,upper_uy,0.31478196382522583 +illusion_0.75L,target,131,26.2,velocity,center_ux,0.9693620800971985 +illusion_0.75L,target,131,26.2,velocity,center_uy,0.5296462774276733 +illusion_0.75L,target,131,26.2,velocity,lower_ux,1.0706366300582886 +illusion_0.75L,target,131,26.2,velocity,lower_uy,0.28423964977264404 +illusion_0.75L,target,132,26.4,velocity,upper_ux,0.9437353014945984 +illusion_0.75L,target,132,26.4,velocity,upper_uy,0.2923038601875305 +illusion_0.75L,target,132,26.4,velocity,center_ux,0.9730633497238159 +illusion_0.75L,target,132,26.4,velocity,center_uy,0.5416767597198486 +illusion_0.75L,target,132,26.4,velocity,lower_ux,1.1105706691741943 +illusion_0.75L,target,132,26.4,velocity,lower_uy,0.3005974590778351 +illusion_0.75L,target,133,26.6,velocity,upper_ux,0.9060145020484924 +illusion_0.75L,target,133,26.6,velocity,upper_uy,0.260135293006897 +illusion_0.75L,target,133,26.6,velocity,center_ux,0.9688385725021362 +illusion_0.75L,target,133,26.6,velocity,center_uy,0.5536535382270813 +illusion_0.75L,target,133,26.6,velocity,lower_ux,1.154131531715393 +illusion_0.75L,target,133,26.6,velocity,lower_uy,0.31477564573287964 +illusion_0.75L,target,134,26.8,velocity,upper_ux,0.8693721890449524 +illusion_0.75L,target,134,26.8,velocity,upper_uy,0.21600341796875 +illusion_0.75L,target,134,26.8,velocity,center_ux,0.9541200399398804 +illusion_0.75L,target,134,26.8,velocity,center_uy,0.5523541569709778 +illusion_0.75L,target,134,26.8,velocity,lower_ux,1.2026541233062744 +illusion_0.75L,target,134,26.8,velocity,lower_uy,0.3258344531059265 +illusion_0.75L,target,135,27.0,velocity,upper_ux,0.8369246125221252 +illusion_0.75L,target,135,27.0,velocity,upper_uy,0.15956884622573853 +illusion_0.75L,target,135,27.0,velocity,center_ux,0.9274756908416748 +illusion_0.75L,target,135,27.0,velocity,center_uy,0.5148499011993408 +illusion_0.75L,target,135,27.0,velocity,lower_ux,1.2570266723632812 +illusion_0.75L,target,135,27.0,velocity,lower_uy,0.33080437779426575 +illusion_0.75L,target,136,27.2,velocity,upper_ux,0.8133804202079773 +illusion_0.75L,target,136,27.2,velocity,upper_uy,0.0939590260386467 +illusion_0.75L,target,136,27.2,velocity,center_ux,0.8924816250801086 +illusion_0.75L,target,136,27.2,velocity,center_uy,0.4165208339691162 +illusion_0.75L,target,136,27.2,velocity,lower_ux,1.3145713806152344 +illusion_0.75L,target,136,27.2,velocity,lower_uy,0.3209109902381897 +illusion_0.75L,target,137,27.4,velocity,upper_ux,0.8036451935768127 +illusion_0.75L,target,137,27.4,velocity,upper_uy,0.026032080873847008 +illusion_0.75L,target,137,27.4,velocity,center_ux,0.8587245941162109 +illusion_0.75L,target,137,27.4,velocity,center_uy,0.2504246234893799 +illusion_0.75L,target,137,27.4,velocity,lower_ux,1.3623920679092407 +illusion_0.75L,target,137,27.4,velocity,lower_uy,0.27635037899017334 +illusion_0.75L,target,138,27.6,velocity,upper_ux,0.8102242350578308 +illusion_0.75L,target,138,27.6,velocity,upper_uy,-0.03609628602862358 +illusion_0.75L,target,138,27.6,velocity,center_ux,0.8364716172218323 +illusion_0.75L,target,138,27.6,velocity,center_uy,0.03841681405901909 +illusion_0.75L,target,138,27.6,velocity,lower_ux,1.3773303031921387 +illusion_0.75L,target,138,27.6,velocity,lower_uy,0.17533284425735474 +illusion_0.75L,target,139,27.8,velocity,upper_ux,0.8310571312904358 +illusion_0.75L,target,139,27.8,velocity,upper_uy,-0.08760925382375717 +illusion_0.75L,target,139,27.8,velocity,center_ux,0.8307963609695435 +illusion_0.75L,target,139,27.8,velocity,center_uy,-0.17948311567306519 +illusion_0.75L,target,139,27.8,velocity,lower_ux,1.3471581935882568 +illusion_0.75L,target,139,27.8,velocity,lower_uy,0.026347286999225616 +illusion_0.75L,target,140,28.0,velocity,upper_ux,0.8605605363845825 +illusion_0.75L,target,140,28.0,velocity,upper_uy,-0.12921670079231262 +illusion_0.75L,target,140,28.0,velocity,center_ux,0.8410295844078064 +illusion_0.75L,target,140,28.0,velocity,center_uy,-0.36196616291999817 +illusion_0.75L,target,140,28.0,velocity,lower_ux,1.286458134651184 +illusion_0.75L,target,140,28.0,velocity,lower_uy,-0.1257689893245697 +illusion_0.75L,target,141,28.2,velocity,upper_ux,0.8935378789901733 +illusion_0.75L,target,141,28.2,velocity,upper_uy,-0.16424953937530518 +illusion_0.75L,target,141,28.2,velocity,center_ux,0.8631994724273682 +illusion_0.75L,target,141,28.2,velocity,center_uy,-0.47889912128448486 +illusion_0.75L,target,141,28.2,velocity,lower_ux,1.2183781862258911 +illusion_0.75L,target,141,28.2,velocity,lower_uy,-0.24054761230945587 +illusion_0.75L,target,142,28.4,velocity,upper_ux,0.9275840520858765 +illusion_0.75L,target,142,28.4,velocity,upper_uy,-0.19486121833324432 +illusion_0.75L,target,142,28.4,velocity,center_ux,0.891619086265564 +illusion_0.75L,target,142,28.4,velocity,center_uy,-0.5264323949813843 +illusion_0.75L,target,142,28.4,velocity,lower_ux,1.1561533212661743 +illusion_0.75L,target,142,28.4,velocity,lower_uy,-0.3066924214363098 +illusion_0.75L,target,143,28.6,velocity,upper_ux,0.9622318744659424 +illusion_0.75L,target,143,28.6,velocity,upper_uy,-0.22169429063796997 +illusion_0.75L,target,143,28.6,velocity,center_ux,0.9198559522628784 +illusion_0.75L,target,143,28.6,velocity,center_uy,-0.5309421420097351 +illusion_0.75L,target,143,28.6,velocity,lower_ux,1.1035258769989014 +illusion_0.75L,target,143,28.6,velocity,lower_uy,-0.33389291167259216 +illusion_0.75L,target,144,28.8,velocity,upper_ux,0.9975237250328064 +illusion_0.75L,target,144,28.8,velocity,upper_uy,-0.24516260623931885 +illusion_0.75L,target,144,28.8,velocity,center_ux,0.9431303143501282 +illusion_0.75L,target,144,28.8,velocity,center_uy,-0.5244922637939453 +illusion_0.75L,target,144,28.8,velocity,lower_ux,1.0591630935668945 +illusion_0.75L,target,144,28.8,velocity,lower_uy,-0.3377439081668854 +illusion_0.75L,target,145,29.0,velocity,upper_ux,1.0336874723434448 +illusion_0.75L,target,145,29.0,velocity,upper_uy,-0.26584625244140625 +illusion_0.75L,target,145,29.0,velocity,center_ux,0.959835946559906 +illusion_0.75L,target,145,29.0,velocity,center_uy,-0.5230111479759216 +illusion_0.75L,target,145,29.0,velocity,lower_ux,1.0197280645370483 +illusion_0.75L,target,145,29.0,velocity,lower_uy,-0.329767107963562 +illusion_0.75L,target,146,29.2,velocity,upper_ux,1.0712497234344482 +illusion_0.75L,target,146,29.2,velocity,upper_uy,-0.2842611074447632 +illusion_0.75L,target,146,29.2,velocity,center_ux,0.9700801372528076 +illusion_0.75L,target,146,29.2,velocity,center_uy,-0.5292857885360718 +illusion_0.75L,target,146,29.2,velocity,lower_ux,0.9821152687072754 +illusion_0.75L,target,146,29.2,velocity,lower_uy,-0.31467127799987793 +illusion_0.75L,target,147,29.4,velocity,upper_ux,1.111072063446045 +illusion_0.75L,target,147,29.4,velocity,upper_uy,-0.300662636756897 +illusion_0.75L,target,147,29.4,velocity,center_ux,0.9736654162406921 +illusion_0.75L,target,147,29.4,velocity,center_uy,-0.5413183569908142 +illusion_0.75L,target,147,29.4,velocity,lower_ux,0.9444876313209534 +illusion_0.75L,target,147,29.4,velocity,lower_uy,-0.292247474193573 +illusion_0.75L,target,148,29.6,velocity,upper_ux,1.154319405555725 +illusion_0.75L,target,148,29.6,velocity,upper_uy,-0.31489187479019165 +illusion_0.75L,target,148,29.6,velocity,center_ux,0.969138503074646 +illusion_0.75L,target,148,29.6,velocity,center_uy,-0.5533506274223328 +illusion_0.75L,target,148,29.6,velocity,lower_ux,0.9064983129501343 +illusion_0.75L,target,148,29.6,velocity,lower_uy,-0.2601546049118042 +illusion_0.75L,target,149,29.8,velocity,upper_ux,1.2024034261703491 +illusion_0.75L,target,149,29.8,velocity,upper_uy,-0.32601919770240784 +illusion_0.75L,target,149,29.8,velocity,center_ux,0.9540192484855652 +illusion_0.75L,target,149,29.8,velocity,center_uy,-0.5522294044494629 +illusion_0.75L,target,149,29.8,velocity,lower_ux,0.8694753050804138 +illusion_0.75L,target,149,29.8,velocity,lower_uy,-0.21613194048404694 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_wide.csv new file mode 100644 index 0000000..a809f0f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_0.75L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_0.75L,target,0,0.0,1.2601828575134277,-0.33079081773757935,0.9250832200050354,-0.511147141456604,0.8349849581718445,-0.15618270635604858 +illusion_0.75L,target,1,0.2,1.3178606033325195,-0.31947362422943115,0.8900846838951111,-0.40874210000038147,0.8122916221618652,-0.09021537005901337 +illusion_0.75L,target,2,0.4,1.3646230697631836,-0.27195677161216736,0.8570147156715393,-0.23902627825737,0.803646445274353,-0.02236826717853546 +illusion_0.75L,target,3,0.6,1.3771835565567017,-0.16725991666316986,0.8359720706939697,-0.025376582518219948,0.8113715648651123,0.039294030517339706 +illusion_0.75L,target,4,0.8,1.3446910381317139,-0.016543811187148094,0.8315278887748718,0.19166451692581177,0.8330361843109131,0.09023195505142212 +illusion_0.75L,target,5,1.0,1.2829217910766602,0.13420768082141876,0.8426259756088257,0.37104010581970215,0.8628497123718262,0.13140511512756348 +illusion_0.75L,target,6,1.2,1.2147709131240845,0.24601377546787262,0.8651878237724304,0.4836704134941101,0.8957636952400208,0.16615670919418335 +illusion_0.75L,target,7,1.4,1.1528273820877075,0.30932101607322693,0.8935098052024841,0.5276827216148376,0.9295877814292908,0.1965356469154358 +illusion_0.75L,target,8,1.6,1.100472092628479,0.334623247385025,0.9212415218353271,0.5307248830795288,0.9639654755592346,0.22314292192459106 +illusion_0.75L,target,9,1.8,1.0563198328018188,0.33748915791511536,0.9439471364021301,0.524278998374939,0.9991008043289185,0.24640831351280212 +illusion_0.75L,target,10,2.0,1.0170913934707642,0.3290230929851532,0.9602890014648438,0.5232291221618652,1.035339117050171,0.26692336797714233 +illusion_0.75L,target,11,2.2,0.9796668291091919,0.3135398030281067,0.9703314900398254,0.5299030542373657,1.0731583833694458,0.2851960361003876 +illusion_0.75L,target,12,2.4,0.9421877861022949,0.2906155288219452,0.9737128615379333,0.5421223640441895,1.113333821296692,0.3014600872993469 +illusion_0.75L,target,13,2.6,0.9043849110603333,0.2578497529029846,0.9688764810562134,0.5538138151168823,1.1570261716842651,0.31552302837371826 +illusion_0.75L,target,14,2.8,0.8677170276641846,0.21304048597812653,0.9533351063728333,0.5512546896934509,1.2056748867034912,0.3263862729072571 +illusion_0.75L,target,15,3.0,0.8354063630104065,0.15601734817028046,0.9258233904838562,0.5111188292503357,1.2600934505462646,0.3309067189693451 +illusion_0.75L,target,16,3.2,0.8122056722640991,0.09013861417770386,0.8902503252029419,0.40924063324928284,1.3172355890274048,0.31984570622444153 +illusion_0.75L,target,17,3.4,0.8030804395675659,0.022418634966015816,0.8565428256988525,0.24014003574848175,1.3636634349822998,0.27284905314445496 +illusion_0.75L,target,18,3.6,0.8104504346847534,-0.03911787271499634,0.8349431753158569,0.02699139527976513,1.3762744665145874,0.1688137650489807 +illusion_0.75L,target,19,3.8,0.8319962024688721,-0.08997604995965958,0.8301922082901001,-0.18987232446670532,1.3441212177276611,0.01840861141681671 +illusion_0.75L,target,20,4.0,0.8620385527610779,-0.13112322986125946,0.8413753509521484,-0.36952900886535645,1.282819390296936,-0.13266025483608246 +illusion_0.75L,target,21,4.2,0.8954665660858154,-0.16589368879795074,0.8643755912780762,-0.4827996790409088,1.2151905298233032,-0.2451438158750534 +illusion_0.75L,target,22,4.4,0.9298505187034607,-0.1963239461183548,0.8932674527168274,-0.5274070501327515,1.15369713306427,-0.3090851306915283 +illusion_0.75L,target,23,4.6,0.9646396040916443,-0.2229999154806137,0.9214789867401123,-0.5307221412658691,1.101616621017456,-0.3347676992416382 +illusion_0.75L,target,24,4.8,0.9999062418937683,-0.24633394181728363,0.9443877935409546,-0.5243254899978638,1.0574889183044434,-0.33778026700019836 +illusion_0.75L,target,25,5.0,1.0359879732131958,-0.2669082581996918,0.9606144428253174,-0.5232738256454468,1.0180473327636719,-0.3293469548225403 +illusion_0.75L,target,26,5.2,1.073438286781311,-0.28523117303848267,0.9703036546707153,-0.5299592018127441,0.9802431464195251,-0.3138834238052368 +illusion_0.75L,target,27,5.4,1.1131155490875244,-0.3015397787094116,0.9731939435005188,-0.5422155857086182,0.9422938823699951,-0.29101842641830444 +illusion_0.75L,target,28,5.6,1.1563129425048828,-0.3156443238258362,0.9678830504417419,-0.5539894700050354,0.9040504693984985,-0.25837019085884094 +illusion_0.75L,target,29,5.8,1.2045950889587402,-0.3265523910522461,0.9520381689071655,-0.5516283512115479,0.8670713901519775,-0.2137332707643509 +illusion_0.75L,target,30,6.0,1.2589023113250732,-0.3311387896537781,0.924511730670929,-0.5119161605834961,0.8346543908119202,-0.15689899027347565 +illusion_0.75L,target,31,6.2,1.3163245916366577,-0.3202035427093506,0.8892664313316345,-0.4106842279434204,0.8116008043289185,-0.09114521741867065 +illusion_0.75L,target,32,6.4,1.363435983657837,-0.27341002225875854,0.8561093807220459,-0.24217845499515533,0.8028104901313782,-0.023400407284498215 +illusion_0.75L,target,33,6.6,1.3769031763076782,-0.16952699422836304,0.8350504040718079,-0.029219510033726692,0.810547411441803,0.03830622136592865 +illusion_0.75L,target,34,6.8,1.3454432487487793,-0.019037466496229172,0.8306899070739746,0.18797896802425385,0.8323963284492493,0.08937177062034607 +illusion_0.75L,target,35,7.0,1.2844436168670654,0.13230055570602417,0.8420178890228271,0.3683592975139618,0.8625726103782654,0.13067108392715454 +illusion_0.75L,target,36,7.2,1.2167187929153442,0.2450498640537262,0.8649032115936279,0.48244234919548035,0.8958966732025146,0.16553117334842682 +illusion_0.75L,target,37,7.4,1.1548449993133545,0.30916357040405273,0.89349365234375,0.5276117920875549,0.9299669861793518,0.19601786136627197 +illusion_0.75L,target,38,7.6,1.1022210121154785,0.33493781089782715,0.9212976098060608,0.5311231017112732,0.9642970561981201,0.22272691130638123 +illusion_0.75L,target,39,7.8,1.0575488805770874,0.3380008339881897,0.943805456161499,0.5247066617012024,0.999087393283844,0.24607229232788086 +illusion_0.75L,target,40,8.0,1.017702579498291,0.3296063542366028,0.9597617387771606,0.5235730409622192,1.0348002910614014,0.2666377127170563 +illusion_0.75L,target,41,8.2,0.9797514081001282,0.31418609619140625,0.9694309234619141,0.5301669239997864,1.0721055269241333,0.28493747115135193 +illusion_0.75L,target,42,8.4,0.9419988393783569,0.29137638211250305,0.9726610779762268,0.5423471331596375,1.1119625568389893,0.3012158274650574 +illusion_0.75L,target,43,8.6,0.9042273163795471,0.2587854862213135,0.9680097699165344,0.5541167259216309,1.155624508857727,0.3152924180030823 +illusion_0.75L,target,44,8.8,0.8677547574043274,0.21417807042598724,0.9529058337211609,0.5518838763237,1.2044416666030884,0.3261818289756775 +illusion_0.75L,target,45,9.0,0.8356767892837524,0.1573115885257721,0.9259577393531799,0.5124067068099976,1.2591663599014282,0.3307783007621765 +illusion_0.75L,target,46,9.2,0.8126861453056335,0.09145428985357285,0.8909468054771423,0.4113478362560272,1.31679368019104,0.3199414908885956 +illusion_0.75L,target,47,9.4,0.8036858439445496,0.023572657257318497,0.8576545715332031,0.24280790984630585,1.3639264106750488,0.2734200954437256 +illusion_0.75L,target,48,9.6,0.8110343813896179,-0.038250867277383804,0.8362107872962952,0.02966763824224472,1.377282738685608,0.1699485033750534 +illusion_0.75L,target,49,9.8,0.8323857188224792,-0.08938103914260864,0.8313175439834595,-0.18768154084682465,1.3455108404159546,0.019796639680862427 +illusion_0.75L,target,50,10.0,0.8620561957359314,-0.13069504499435425,0.8420872688293457,-0.36808398365974426,1.2840402126312256,-0.13141024112701416 +illusion_0.75L,target,51,10.2,0.8949806094169617,-0.1655348539352417,0.8645093441009521,-0.48211735486984253,1.2158944606781006,-0.2441941797733307 +illusion_0.75L,target,52,10.4,0.9288675785064697,-0.19598805904388428,0.8928530216217041,-0.5272666811943054,1.1538496017456055,-0.30843207240104675 +illusion_0.75L,target,53,10.6,0.9633363485336304,-0.22266767919063568,0.9207521080970764,-0.5307760834693909,1.1014118194580078,-0.33435848355293274 +illusion_0.75L,target,54,10.8,0.9985678195953369,-0.2459997683763504,0.9436877965927124,-0.5243223309516907,1.0572413206100464,-0.3375506103038788 +illusion_0.75L,target,55,11.0,1.0348231792449951,-0.2665696442127228,0.9601895809173584,-0.5231278538703918,1.0179904699325562,-0.3292480409145355 +illusion_0.75L,target,56,11.2,1.072567105293274,-0.28488972783088684,0.970306396484375,-0.5296688675880432,0.9805142879486084,-0.3138939142227173 +illusion_0.75L,target,57,11.4,1.1126128435134888,-0.30120113492012024,0.9737427234649658,-0.5418282151222229,0.9429763555526733,-0.29113852977752686 +illusion_0.75L,target,58,11.6,1.1561623811721802,-0.31532198190689087,0.9690138101577759,-0.5536386370658875,0.9051186442375183,-0.2585984170436859 +illusion_0.75L,target,59,11.8,1.204626202583313,-0.32627609372138977,0.9536139965057373,-0.5515683889389038,0.8683356642723083,-0.21404974162578583 +illusion_0.75L,target,60,12.0,1.2588415145874023,-0.33099013566970825,0.9262151122093201,-0.5124561190605164,0.8358083963394165,-0.15726888179779053 +illusion_0.75L,target,61,12.2,1.315972924232483,-0.3204040825366974,0.8906738758087158,-0.4119979739189148,0.812339723110199,-0.09153337776660919 +illusion_0.75L,target,62,12.4,1.362870454788208,-0.27436941862106323,0.856862485408783,-0.24416841566562653,0.8029370903968811,-0.023789217695593834 +illusion_0.75L,target,63,12.6,1.3764311075210571,-0.17149761319160461,0.8350309133529663,-0.03158586099743843,0.8100537657737732,0.037926796823740005 +illusion_0.75L,target,64,12.8,1.3452049493789673,-0.02158818021416664,0.8300408124923706,0.18562138080596924,0.8314623832702637,0.08901010453701019 +illusion_0.75L,target,65,13.0,1.2843722105026245,0.12998823821544647,0.8410581350326538,0.3664328455924988,0.8615087270736694,0.13032984733581543 +illusion_0.75L,target,66,13.2,1.2167640924453735,0.24347025156021118,0.8639346361160278,0.4812544584274292,0.8949569463729858,0.1652112901210785 +illusion_0.75L,target,67,13.4,1.1550577878952026,0.30833277106285095,0.8927573561668396,0.5270958542823792,0.9293047189712524,0.19572953879833221 +illusion_0.75L,target,68,13.6,1.1027140617370605,0.334618479013443,0.9209867119789124,0.5309084057807922,0.9640200734138489,0.2224840521812439 +illusion_0.75L,target,69,13.8,1.0583869218826294,0.337941437959671,0.9439759850502014,0.5245025753974915,0.9992180466651917,0.24588340520858765 +illusion_0.75L,target,70,14.0,1.018803358078003,0.32966378331184387,0.9602746367454529,0.5232987403869629,1.0352091789245605,0.2665083110332489 +illusion_0.75L,target,71,14.2,0.980886697769165,0.31432801485061646,0.9700055718421936,0.5298440456390381,1.0725311040878296,0.28486984968185425 +illusion_0.75L,target,72,14.4,0.9428970813751221,0.29162997007369995,0.9730031490325928,0.5420297384262085,1.1121044158935547,0.3012133538722992 +illusion_0.75L,target,73,14.6,0.9046838879585266,0.25920388102531433,0.9679255485534668,0.5539096593856812,1.155250906944275,0.31536057591438293 +illusion_0.75L,target,74,14.8,0.8677243590354919,0.2148166298866272,0.9523988962173462,0.5520220398902893,1.2034937143325806,0.32634180784225464 +illusion_0.75L,target,75,15.0,0.8352644443511963,0.1581992357969284,0.9252030253410339,0.5132986307144165,1.257787823677063,0.33109989762306213 +illusion_0.75L,target,76,15.2,0.8120766282081604,0.09254347532987595,0.8901582360267639,0.4133951961994171,1.315355658531189,0.320613294839859 +illusion_0.75L,target,77,15.4,0.803010880947113,0.024725789204239845,0.8569203019142151,0.24601277709007263,1.3629443645477295,0.27475103735923767 +illusion_0.75L,target,78,15.6,0.8103963732719421,-0.03719162568449974,0.8355492353439331,0.0334886871278286,1.3772287368774414,0.17201504111289978 +illusion_0.75L,target,79,15.8,0.8319518566131592,-0.08849235624074936,0.830808162689209,-0.18407905101776123,1.3464841842651367,0.02206248976290226 +illusion_0.75L,target,80,16.0,0.8619651198387146,-0.12995845079421997,0.8418141007423401,-0.36550581455230713,1.285750150680542,-0.12967859208583832 +illusion_0.75L,target,81,16.2,0.895193338394165,-0.16491597890853882,0.8644581437110901,-0.4809662103652954,1.2179269790649414,-0.24330934882164001 +illusion_0.75L,target,82,16.4,0.9291621446609497,-0.19547182321548462,0.8928964138031006,-0.5272390246391296,1.1557990312576294,-0.3082677125930786 +illusion_0.75L,target,83,16.6,0.9634284973144531,-0.22224201261997223,0.9207000732421875,-0.5311988592147827,1.1029560565948486,-0.3346182703971863 +illusion_0.75L,target,84,16.8,0.9982270002365112,-0.24563910067081451,0.9433459639549255,-0.5247613787651062,1.0581949949264526,-0.33799609541893005 +illusion_0.75L,target,85,17.0,1.0339795351028442,-0.2662471532821655,0.959491491317749,-0.5234660506248474,1.0183619260787964,-0.32977062463760376 +illusion_0.75L,target,86,17.2,1.071335792541504,-0.28458234667778015,0.9693734645843506,-0.5299091935157776,0.9804916977882385,-0.314486563205719 +illusion_0.75L,target,87,17.4,1.1112442016601562,-0.3008992075920105,0.9728555083274841,-0.5420129895210266,0.9428555369377136,-0.29184284806251526 +illusion_0.75L,target,88,17.6,1.1548805236816406,-0.3150269389152527,0.9684445858001709,-0.5538886785507202,0.9051337242126465,-0.2594638168811798 +illusion_0.75L,target,89,17.8,1.2035635709762573,-0.3260015845298767,0.9535495638847351,-0.5521275997161865,0.8685864806175232,-0.2150925248861313 +illusion_0.75L,target,90,18.0,1.2581093311309814,-0.33078470826148987,0.9267507791519165,-0.5136382579803467,0.8363189101219177,-0.15843747556209564 +illusion_0.75L,target,91,18.2,1.3156957626342773,-0.32042214274406433,0.8917456269264221,-0.4139384925365448,0.8130475878715515,-0.09269897639751434 +illusion_0.75L,target,92,18.4,1.3631852865219116,-0.2748872637748718,0.85822594165802,-0.24660661816596985,0.8036888837814331,-0.024791214615106583 +illusion_0.75L,target,93,18.6,1.3773263692855835,-0.17264439165592194,0.8363674283027649,-0.03401688486337662,0.8106449842453003,0.037185292690992355 +illusion_0.75L,target,94,18.8,1.3463243246078491,-0.023071112111210823,0.8310595154762268,0.1836155503988266,0.8317157030105591,0.08850587904453278 +illusion_0.75L,target,95,19.0,1.2852195501327515,0.1285933256149292,0.8415496349334717,0.3650553226470947,0.8612918257713318,0.12996473908424377 +illusion_0.75L,target,96,19.2,1.217099666595459,0.2423715442419052,0.863841712474823,0.480525404214859,0.8942391872406006,0.16489949822425842 +illusion_0.75L,target,97,19.4,1.1549572944641113,0.307557076215744,0.8922157883644104,0.5268495678901672,0.9281975030899048,0.1954289674758911 +illusion_0.75L,target,98,19.6,1.102439045906067,0.3341159522533417,0.9202932119369507,0.5308486819267273,0.9627668857574463,0.22218362987041473 +illusion_0.75L,target,99,19.8,1.0582000017166138,0.3376369774341583,0.9434226751327515,0.5243942737579346,0.9980530738830566,0.24558408558368683 +illusion_0.75L,target,100,20.0,1.0188722610473633,0.32949820160865784,0.9600391387939453,0.5230569243431091,1.0342762470245361,0.2662116587162018 +illusion_0.75L,target,101,20.2,0.9813270568847656,0.3142736256122589,0.9702152013778687,0.5294649600982666,1.0719273090362549,0.2845793068408966 +illusion_0.75L,target,102,20.4,0.9437426924705505,0.2916841506958008,0.973722517490387,0.5415607690811157,1.11185884475708,0.30093538761138916 +illusion_0.75L,target,103,20.6,0.9058274030685425,0.25936803221702576,0.9691000580787659,0.553485095500946,1.1552642583847046,0.31511205434799194 +illusion_0.75L,target,104,20.8,0.868916392326355,0.2150837779045105,0.9538305401802063,0.5518950819969177,1.203531265258789,0.32615554332733154 +illusion_0.75L,target,105,21.0,0.8362061381340027,0.15854810178279877,0.9265845417976379,0.5137960314750671,1.2575764656066895,0.3310571014881134 +illusion_0.75L,target,106,21.2,0.812516987323761,0.09295327216386795,0.8911367058753967,0.41474398970603943,1.314743161201477,0.32093071937561035 +illusion_0.75L,target,107,21.4,0.8028479814529419,0.025176526978611946,0.8572442531585693,0.24817335605621338,1.3621159791946411,0.2758369743824005 +illusion_0.75L,target,108,21.6,0.8097121715545654,-0.0367264598608017,0.8351957201957703,0.03615189343690872,1.376619815826416,0.17411942780017853 +illusion_0.75L,target,109,21.8,0.8309917449951172,-0.08804240077733994,0.8299830555915833,-0.181396022439003,1.346330165863037,0.024722034111618996 +illusion_0.75L,target,110,22.0,0.8610038757324219,-0.12953941524028778,0.8408015370368958,-0.36334776878356934,1.2859324216842651,-0.1273341178894043 +illusion_0.75L,target,111,22.2,0.8944208025932312,-0.16453391313552856,0.863503634929657,-0.47970226407051086,1.218300223350525,-0.24178747832775116 +illusion_0.75L,target,112,22.4,0.9287114143371582,-0.1951378881931305,0.8922333717346191,-0.526772141456604,1.1563677787780762,-0.30755510926246643 +illusion_0.75L,target,113,22.6,0.9633644819259644,-0.22196707129478455,0.9204840660095215,-0.5310868620872498,1.103776454925537,-0.3344402015209198 +illusion_0.75L,target,114,22.8,0.998492419719696,-0.2454293817281723,0.9435514807701111,-0.5246737003326416,1.0592507123947144,-0.33807504177093506 +illusion_0.75L,target,115,23.0,1.0343785285949707,-0.26610320806503296,0.9599047303199768,-0.5233180522918701,1.0195097923278809,-0.3299590051174164 +illusion_0.75L,target,116,23.2,1.071596622467041,-0.2845027446746826,0.9697072505950928,-0.5297194123268127,0.9815093874931335,-0.3147534132003784 +illusion_0.75L,target,117,23.4,1.1111148595809937,-0.3008788228034973,0.9728617668151855,-0.5418268442153931,0.9435285329818726,-0.2922205626964569 +illusion_0.75L,target,118,23.6,1.1542284488677979,-0.31506630778312683,0.9680339694023132,-0.5538041591644287,0.9053619503974915,-0.2600107789039612 +illusion_0.75L,target,119,23.8,1.2024362087249756,-0.3261200785636902,0.9528344869613647,-0.5523790717124939,0.8684270977973938,-0.21586951613426208 +illusion_0.75L,target,120,24.0,1.2567298412322998,-0.33104994893074036,0.9259787201881409,-0.5146328210830688,0.835936427116394,-0.15946480631828308 +illusion_0.75L,target,121,24.2,1.3144044876098633,-0.32100650668144226,0.8911015391349792,-0.41604897379875183,0.8125844597816467,-0.09390746057033539 +illusion_0.75L,target,122,24.4,1.3624083995819092,-0.27607178688049316,0.8577306270599365,-0.24979345500469208,0.8031997680664062,-0.026021992787718773 +illusion_0.75L,target,123,24.6,1.3774828910827637,-0.17450153827667236,0.8360216617584229,-0.03772808238863945,0.8102172613143921,0.03609607368707657 +illusion_0.75L,target,124,24.8,1.3474725484848022,-0.025119535624980927,0.8309029936790466,0.18017858266830444,0.8314883708953857,0.08762241154909134 +illusion_0.75L,target,125,25.0,1.2870118618011475,0.1270086020231247,0.8415818214416504,0.36262720823287964,0.8613367676734924,0.12925098836421967 +illusion_0.75L,target,126,25.2,1.2190769910812378,0.24152794480323792,0.863961935043335,0.47945430874824524,0.8944498300552368,0.16430526971817017 +illusion_0.75L,target,127,25.4,1.1567176580429077,0.3073461055755615,0.8922664523124695,0.5268372297286987,0.9283379912376404,0.19493122398853302 +illusion_0.75L,target,128,25.6,1.1037026643753052,0.3342858850955963,0.9201131463050842,0.5312562584877014,0.9625876545906067,0.22176191210746765 +illusion_0.75L,target,129,25.8,1.0588713884353638,0.3379835784435272,0.9429183006286621,0.5248033404350281,0.9974160194396973,0.24521158635616302 +illusion_0.75L,target,130,26.0,1.0190585851669312,0.3299289047718048,0.9592568278312683,0.5233504772186279,1.0332156419754028,0.2658635973930359 +illusion_0.75L,target,131,26.2,0.9812822937965393,0.31478196382522583,0.9693620800971985,0.5296462774276733,1.0706366300582886,0.28423964977264404 +illusion_0.75L,target,132,26.4,0.9437353014945984,0.2923038601875305,0.9730633497238159,0.5416767597198486,1.1105706691741943,0.3005974590778351 +illusion_0.75L,target,133,26.6,0.9060145020484924,0.260135293006897,0.9688385725021362,0.5536535382270813,1.154131531715393,0.31477564573287964 +illusion_0.75L,target,134,26.8,0.8693721890449524,0.21600341796875,0.9541200399398804,0.5523541569709778,1.2026541233062744,0.3258344531059265 +illusion_0.75L,target,135,27.0,0.8369246125221252,0.15956884622573853,0.9274756908416748,0.5148499011993408,1.2570266723632812,0.33080437779426575 +illusion_0.75L,target,136,27.2,0.8133804202079773,0.0939590260386467,0.8924816250801086,0.4165208339691162,1.3145713806152344,0.3209109902381897 +illusion_0.75L,target,137,27.4,0.8036451935768127,0.026032080873847008,0.8587245941162109,0.2504246234893799,1.3623920679092407,0.27635037899017334 +illusion_0.75L,target,138,27.6,0.8102242350578308,-0.03609628602862358,0.8364716172218323,0.03841681405901909,1.3773303031921387,0.17533284425735474 +illusion_0.75L,target,139,27.8,0.8310571312904358,-0.08760925382375717,0.8307963609695435,-0.17948311567306519,1.3471581935882568,0.026347286999225616 +illusion_0.75L,target,140,28.0,0.8605605363845825,-0.12921670079231262,0.8410295844078064,-0.36196616291999817,1.286458134651184,-0.1257689893245697 +illusion_0.75L,target,141,28.2,0.8935378789901733,-0.16424953937530518,0.8631994724273682,-0.47889912128448486,1.2183781862258911,-0.24054761230945587 +illusion_0.75L,target,142,28.4,0.9275840520858765,-0.19486121833324432,0.891619086265564,-0.5264323949813843,1.1561533212661743,-0.3066924214363098 +illusion_0.75L,target,143,28.6,0.9622318744659424,-0.22169429063796997,0.9198559522628784,-0.5309421420097351,1.1035258769989014,-0.33389291167259216 +illusion_0.75L,target,144,28.8,0.9975237250328064,-0.24516260623931885,0.9431303143501282,-0.5244922637939453,1.0591630935668945,-0.3377439081668854 +illusion_0.75L,target,145,29.0,1.0336874723434448,-0.26584625244140625,0.959835946559906,-0.5230111479759216,1.0197280645370483,-0.329767107963562 +illusion_0.75L,target,146,29.2,1.0712497234344482,-0.2842611074447632,0.9700801372528076,-0.5292857885360718,0.9821152687072754,-0.31467127799987793 +illusion_0.75L,target,147,29.4,1.111072063446045,-0.300662636756897,0.9736654162406921,-0.5413183569908142,0.9444876313209534,-0.292247474193573 +illusion_0.75L,target,148,29.6,1.154319405555725,-0.31489187479019165,0.969138503074646,-0.5533506274223328,0.9064983129501343,-0.2601546049118042 +illusion_0.75L,target,149,29.8,1.2024034261703491,-0.32601919770240784,0.9540192484855652,-0.5522294044494629,0.8694753050804138,-0.21613194048404694 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv new file mode 100644 index 0000000..8064af8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1.5L,sr,72,28.8,36,0.8560470080981893,-7,0.9403481011589369,0.8106707604601979,0.9172691189580493,0.7195518888507245,0.9498791313833661,0.7985630477778614 +illusion_1.5L,sr,108,43.2,36,0.8869214988253251,-11,0.8982777852151129,0.875106555953001,0.8589977986282773,0.8996426592477493,0.8985641938116815,0.8909400000961291 +illusion_1.5L,sr,144,57.6,36,0.8691606388267785,4,0.9322679622305764,0.8860231363990655,0.812572514017423,0.8298080513357289,0.9264214187860489,0.8278707501918284 +illusion_1.5L,sr,180,72.0,36,0.8747008850095207,-1,0.9177459627389908,0.8787889763738753,0.7641411738263236,0.8896050443872809,0.9289750754833221,0.8689490772473315 +illusion_1.5L,sr,216,86.4,36,0.8641217460109921,-8,0.9304177156753011,0.8479302241208239,0.7633856650855806,0.8285997282687781,0.9512549498014979,0.8631421931139711 +illusion_1.5L,sr,252,100.8,36,0.8250151498639888,7,0.9484966885712411,0.822116802394804,0.7283688220712874,0.74625442446106,0.9199270026551353,0.7849271590304043 +illusion_1.5L,sr,288,115.2,36,0.8771575287397287,0,0.9316314740313424,0.8975990676780283,0.7514010154538684,0.8925016016647633,0.9196378853585985,0.8701741282517711 +illusion_1.5L,sr,324,129.6,36,0.8305038179279546,-6,0.9289650875661108,0.7717749697363211,0.729808156689008,0.7611387677801152,0.9580502857764562,0.8332856400197165 +illusion_1.5L,sr,360,144.0,36,0.8438925484458902,9,0.9150177579787042,0.8181961408586681,0.7266930308606889,0.8426607658103522,0.900547077258428,0.8602405179085003 +illusion_1.5L,sr,396,158.4,36,0.8721611112942574,2,0.9352359341250526,0.9004533275340995,0.7506451424625185,0.8835276061048111,0.9111621131499609,0.8519425443891022 +illusion_1.5L,sr,400,160.0,36,0.8335867536047267,6,0.9570548012852669,0.844912696733243,0.724519819021225,0.7552428144133754,0.940351676609781,0.7794387135654688 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_long.csv new file mode 100644 index 0000000..4326859 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,sr,0,0.0,velocity,upper_ux,1.2853484153747559 +illusion_1.5L,sr,0,0.0,velocity,upper_uy,-0.3347664773464203 +illusion_1.5L,sr,0,0.0,velocity,center_ux,0.8939734697341919 +illusion_1.5L,sr,0,0.0,velocity,center_uy,-0.39780083298683167 +illusion_1.5L,sr,0,0.0,velocity,lower_ux,0.7416527271270752 +illusion_1.5L,sr,0,0.0,velocity,lower_uy,-0.07217772305011749 +illusion_1.5L,sr,1,0.4,velocity,upper_ux,1.3694076538085938 +illusion_1.5L,sr,1,0.4,velocity,upper_uy,-0.2854442298412323 +illusion_1.5L,sr,1,0.4,velocity,center_ux,0.8185009956359863 +illusion_1.5L,sr,1,0.4,velocity,center_uy,-0.10236727446317673 +illusion_1.5L,sr,1,0.4,velocity,lower_ux,0.7593058943748474 +illusion_1.5L,sr,1,0.4,velocity,lower_uy,0.03245874121785164 +illusion_1.5L,sr,2,0.8,velocity,upper_ux,1.3785731792449951 +illusion_1.5L,sr,2,0.8,velocity,upper_uy,-0.12598338723182678 +illusion_1.5L,sr,2,0.8,velocity,center_ux,0.767090916633606 +illusion_1.5L,sr,2,0.8,velocity,center_uy,0.25756019353866577 +illusion_1.5L,sr,2,0.8,velocity,lower_ux,0.8127157092094421 +illusion_1.5L,sr,2,0.8,velocity,lower_uy,0.11251027882099152 +illusion_1.5L,sr,3,1.2,velocity,upper_ux,1.2479976415634155 +illusion_1.5L,sr,3,1.2,velocity,upper_uy,0.13462691009044647 +illusion_1.5L,sr,3,1.2,velocity,center_ux,0.7840788960456848 +illusion_1.5L,sr,3,1.2,velocity,center_uy,0.48559558391571045 +illusion_1.5L,sr,3,1.2,velocity,lower_ux,0.8725901246070862 +illusion_1.5L,sr,3,1.2,velocity,lower_uy,0.17925997078418732 +illusion_1.5L,sr,4,1.6,velocity,upper_ux,1.0699890851974487 +illusion_1.5L,sr,4,1.6,velocity,upper_uy,0.3211340606212616 +illusion_1.5L,sr,4,1.6,velocity,center_ux,0.8496437072753906 +illusion_1.5L,sr,4,1.6,velocity,center_uy,0.520403265953064 +illusion_1.5L,sr,4,1.6,velocity,lower_ux,0.9331063628196716 +illusion_1.5L,sr,4,1.6,velocity,lower_uy,0.23400095105171204 +illusion_1.5L,sr,5,2.0,velocity,upper_ux,0.9520607590675354 +illusion_1.5L,sr,5,2.0,velocity,upper_uy,0.3568200170993805 +illusion_1.5L,sr,5,2.0,velocity,center_ux,0.9054616689682007 +illusion_1.5L,sr,5,2.0,velocity,center_uy,0.5175142884254456 +illusion_1.5L,sr,5,2.0,velocity,lower_ux,0.9958294630050659 +illusion_1.5L,sr,5,2.0,velocity,lower_uy,0.27556321024894714 +illusion_1.5L,sr,6,2.4,velocity,upper_ux,0.8813046216964722 +illusion_1.5L,sr,6,2.4,velocity,upper_uy,0.32061290740966797 +illusion_1.5L,sr,6,2.4,velocity,center_ux,0.9399266242980957 +illusion_1.5L,sr,6,2.4,velocity,center_uy,0.5356393456459045 +illusion_1.5L,sr,6,2.4,velocity,lower_ux,1.0613631010055542 +illusion_1.5L,sr,6,2.4,velocity,lower_uy,0.3067677915096283 +illusion_1.5L,sr,7,2.8,velocity,upper_ux,0.8185665011405945 +illusion_1.5L,sr,7,2.8,velocity,upper_uy,0.2577570974826813 +illusion_1.5L,sr,7,2.8,velocity,center_ux,0.9548571705818176 +illusion_1.5L,sr,7,2.8,velocity,center_uy,0.5564129948616028 +illusion_1.5L,sr,7,2.8,velocity,lower_ux,1.1319578886032104 +illusion_1.5L,sr,7,2.8,velocity,lower_uy,0.32917675375938416 +illusion_1.5L,sr,8,3.2,velocity,upper_ux,0.7616463303565979 +illusion_1.5L,sr,8,3.2,velocity,upper_uy,0.16552351415157318 +illusion_1.5L,sr,8,3.2,velocity,center_ux,0.9391800165176392 +illusion_1.5L,sr,8,3.2,velocity,center_uy,0.5258281230926514 +illusion_1.5L,sr,8,3.2,velocity,lower_ux,1.2112687826156616 +illusion_1.5L,sr,8,3.2,velocity,lower_uy,0.34099140763282776 +illusion_1.5L,sr,9,3.6,velocity,upper_ux,0.7346155643463135 +illusion_1.5L,sr,9,3.6,velocity,upper_uy,0.05309738591313362 +illusion_1.5L,sr,9,3.6,velocity,center_ux,0.8828492760658264 +illusion_1.5L,sr,9,3.6,velocity,center_uy,0.3626258373260498 +illusion_1.5L,sr,9,3.6,velocity,lower_ux,1.300978183746338 +illusion_1.5L,sr,9,3.6,velocity,lower_uy,0.3325258195400238 +illusion_1.5L,sr,10,4.0,velocity,upper_ux,0.7566478252410889 +illusion_1.5L,sr,10,4.0,velocity,upper_uy,-0.04746169596910477 +illusion_1.5L,sr,10,4.0,velocity,center_ux,0.8085324168205261 +illusion_1.5L,sr,10,4.0,velocity,center_uy,0.04782712459564209 +illusion_1.5L,sr,10,4.0,velocity,lower_ux,1.3801246881484985 +illusion_1.5L,sr,10,4.0,velocity,lower_uy,0.2691396474838257 +illusion_1.5L,sr,11,4.4,velocity,upper_ux,0.8096019625663757 +illusion_1.5L,sr,11,4.4,velocity,upper_uy,-0.12370948493480682 +illusion_1.5L,sr,11,4.4,velocity,center_ux,0.7696402072906494 +illusion_1.5L,sr,11,4.4,velocity,center_uy,-0.30209752917289734 +illusion_1.5L,sr,11,4.4,velocity,lower_ux,1.3697516918182373 +illusion_1.5L,sr,11,4.4,velocity,lower_uy,0.08678360283374786 +illusion_1.5L,sr,12,4.8,velocity,upper_ux,0.8661729693412781 +illusion_1.5L,sr,12,4.8,velocity,upper_uy,-0.1867372840642929 +illusion_1.5L,sr,12,4.8,velocity,center_ux,0.8017509579658508 +illusion_1.5L,sr,12,4.8,velocity,center_uy,-0.4903346300125122 +illusion_1.5L,sr,12,4.8,velocity,lower_ux,1.2239415645599365 +illusion_1.5L,sr,12,4.8,velocity,lower_uy,-0.17352065443992615 +illusion_1.5L,sr,13,5.2,velocity,upper_ux,0.9212461113929749 +illusion_1.5L,sr,13,5.2,velocity,upper_uy,-0.2367047518491745 +illusion_1.5L,sr,13,5.2,velocity,center_ux,0.8721705079078674 +illusion_1.5L,sr,13,5.2,velocity,center_uy,-0.49936553835868835 +illusion_1.5L,sr,13,5.2,velocity,lower_ux,1.0563660860061646 +illusion_1.5L,sr,13,5.2,velocity,lower_uy,-0.33038052916526794 +illusion_1.5L,sr,14,5.6,velocity,upper_ux,0.9745296239852905 +illusion_1.5L,sr,14,5.6,velocity,upper_uy,-0.27407217025756836 +illusion_1.5L,sr,14,5.6,velocity,center_ux,0.9293696880340576 +illusion_1.5L,sr,14,5.6,velocity,center_uy,-0.4844802916049957 +illusion_1.5L,sr,14,5.6,velocity,lower_ux,0.9546641707420349 +illusion_1.5L,sr,14,5.6,velocity,lower_uy,-0.34818199276924133 +illusion_1.5L,sr,15,6.0,velocity,upper_ux,1.025780200958252 +illusion_1.5L,sr,15,6.0,velocity,upper_uy,-0.3031139075756073 +illusion_1.5L,sr,15,6.0,velocity,center_ux,0.9695701599121094 +illusion_1.5L,sr,15,6.0,velocity,center_uy,-0.4848438501358032 +illusion_1.5L,sr,15,6.0,velocity,lower_ux,0.8911476135253906 +illusion_1.5L,sr,15,6.0,velocity,lower_uy,-0.3128186762332916 +illusion_1.5L,sr,16,6.4,velocity,upper_ux,1.0765351057052612 +illusion_1.5L,sr,16,6.4,velocity,upper_uy,-0.3276141881942749 +illusion_1.5L,sr,16,6.4,velocity,center_ux,0.9968022108078003 +illusion_1.5L,sr,16,6.4,velocity,center_uy,-0.4917405843734741 +illusion_1.5L,sr,16,6.4,velocity,lower_ux,0.8309836387634277 +illusion_1.5L,sr,16,6.4,velocity,lower_uy,-0.25586628913879395 +illusion_1.5L,sr,17,6.8,velocity,upper_ux,1.1292146444320679 +illusion_1.5L,sr,17,6.8,velocity,upper_uy,-0.350045770406723 +illusion_1.5L,sr,17,6.8,velocity,center_ux,1.00529944896698 +illusion_1.5L,sr,17,6.8,velocity,center_uy,-0.4913525879383087 +illusion_1.5L,sr,17,6.8,velocity,lower_ux,0.7742268443107605 +illusion_1.5L,sr,17,6.8,velocity,lower_uy,-0.17131343483924866 +illusion_1.5L,sr,18,7.2,velocity,upper_ux,1.1872129440307617 +illusion_1.5L,sr,18,7.2,velocity,upper_uy,-0.3711673319339752 +illusion_1.5L,sr,18,7.2,velocity,center_ux,0.9789169430732727 +illusion_1.5L,sr,18,7.2,velocity,center_uy,-0.44915086030960083 +illusion_1.5L,sr,18,7.2,velocity,lower_ux,0.740187406539917 +illusion_1.5L,sr,18,7.2,velocity,lower_uy,-0.06703577190637589 +illusion_1.5L,sr,19,7.6,velocity,upper_ux,1.253464937210083 +illusion_1.5L,sr,19,7.6,velocity,upper_uy,-0.38773903250694275 +illusion_1.5L,sr,19,7.6,velocity,center_ux,0.900881290435791 +illusion_1.5L,sr,19,7.6,velocity,center_uy,-0.3102948069572449 +illusion_1.5L,sr,19,7.6,velocity,lower_ux,0.7444359064102173 +illusion_1.5L,sr,19,7.6,velocity,lower_uy,0.03174014016985893 +illusion_1.5L,sr,20,8.0,velocity,upper_ux,1.320042371749878 +illusion_1.5L,sr,20,8.0,velocity,upper_uy,-0.38084203004837036 +illusion_1.5L,sr,20,8.0,velocity,center_ux,0.7824045419692993 +illusion_1.5L,sr,20,8.0,velocity,center_uy,-0.050456658005714417 +illusion_1.5L,sr,20,8.0,velocity,lower_ux,0.7760822772979736 +illusion_1.5L,sr,20,8.0,velocity,lower_uy,0.11460736393928528 +illusion_1.5L,sr,21,8.4,velocity,upper_ux,1.3378798961639404 +illusion_1.5L,sr,21,8.4,velocity,upper_uy,-0.29120931029319763 +illusion_1.5L,sr,21,8.4,velocity,center_ux,0.6792733669281006 +illusion_1.5L,sr,21,8.4,velocity,center_uy,0.254600465297699 +illusion_1.5L,sr,21,8.4,velocity,lower_ux,0.8160839080810547 +illusion_1.5L,sr,21,8.4,velocity,lower_uy,0.1889987736940384 +illusion_1.5L,sr,22,8.8,velocity,upper_ux,1.2293070554733276 +illusion_1.5L,sr,22,8.8,velocity,upper_uy,-0.05614369735121727 +illusion_1.5L,sr,22,8.8,velocity,center_ux,0.6587418913841248 +illusion_1.5L,sr,22,8.8,velocity,center_uy,0.4571809470653534 +illusion_1.5L,sr,22,8.8,velocity,lower_ux,0.860951840877533 +illusion_1.5L,sr,22,8.8,velocity,lower_uy,0.2553979158401489 +illusion_1.5L,sr,23,9.2,velocity,upper_ux,1.022835612297058 +illusion_1.5L,sr,23,9.2,velocity,upper_uy,0.23967574536800385 +illusion_1.5L,sr,23,9.2,velocity,center_ux,0.7072708010673523 +illusion_1.5L,sr,23,9.2,velocity,center_uy,0.5335742235183716 +illusion_1.5L,sr,23,9.2,velocity,lower_ux,0.9109421372413635 +illusion_1.5L,sr,23,9.2,velocity,lower_uy,0.3125251829624176 +illusion_1.5L,sr,24,9.6,velocity,upper_ux,0.8484265804290771 +illusion_1.5L,sr,24,9.6,velocity,upper_uy,0.4225391149520874 +illusion_1.5L,sr,24,9.6,velocity,center_ux,0.7623031139373779 +illusion_1.5L,sr,24,9.6,velocity,center_uy,0.5773834586143494 +illusion_1.5L,sr,24,9.6,velocity,lower_ux,0.9652373790740967 +illusion_1.5L,sr,24,9.6,velocity,lower_uy,0.3616727888584137 +illusion_1.5L,sr,25,10.0,velocity,upper_ux,0.7565224170684814 +illusion_1.5L,sr,25,10.0,velocity,upper_uy,0.4625617265701294 +illusion_1.5L,sr,25,10.0,velocity,center_ux,0.8051251173019409 +illusion_1.5L,sr,25,10.0,velocity,center_uy,0.6240385174751282 +illusion_1.5L,sr,25,10.0,velocity,lower_ux,1.0237308740615845 +illusion_1.5L,sr,25,10.0,velocity,lower_uy,0.40433797240257263 +illusion_1.5L,sr,26,10.4,velocity,upper_ux,0.7023565769195557 +illusion_1.5L,sr,26,10.4,velocity,upper_uy,0.4379411041736603 +illusion_1.5L,sr,26,10.4,velocity,center_ux,0.8357635736465454 +illusion_1.5L,sr,26,10.4,velocity,center_uy,0.6697564721107483 +illusion_1.5L,sr,26,10.4,velocity,lower_ux,1.0873364210128784 +illusion_1.5L,sr,26,10.4,velocity,lower_uy,0.4416112005710602 +illusion_1.5L,sr,27,10.8,velocity,upper_ux,0.6482239365577698 +illusion_1.5L,sr,27,10.8,velocity,upper_uy,0.38458356261253357 +illusion_1.5L,sr,27,10.8,velocity,center_ux,0.8504985570907593 +illusion_1.5L,sr,27,10.8,velocity,center_uy,0.6886041760444641 +illusion_1.5L,sr,27,10.8,velocity,lower_ux,1.1578925848007202 +illusion_1.5L,sr,27,10.8,velocity,lower_uy,0.47409844398498535 +illusion_1.5L,sr,28,11.2,velocity,upper_ux,0.5924237966537476 +illusion_1.5L,sr,28,11.2,velocity,upper_uy,0.29357028007507324 +illusion_1.5L,sr,28,11.2,velocity,center_ux,0.8394606709480286 +illusion_1.5L,sr,28,11.2,velocity,center_uy,0.6344987750053406 +illusion_1.5L,sr,28,11.2,velocity,lower_ux,1.236741065979004 +illusion_1.5L,sr,28,11.2,velocity,lower_uy,0.5007703304290771 +illusion_1.5L,sr,29,11.6,velocity,upper_ux,0.5500978231430054 +illusion_1.5L,sr,29,11.6,velocity,upper_uy,0.15860719978809357 +illusion_1.5L,sr,29,11.6,velocity,center_ux,0.7961891889572144 +illusion_1.5L,sr,29,11.6,velocity,center_uy,0.480823278427124 +illusion_1.5L,sr,29,11.6,velocity,lower_ux,1.3201984167099 +illusion_1.5L,sr,29,11.6,velocity,lower_uy,0.5131731629371643 +illusion_1.5L,sr,30,12.0,velocity,upper_ux,0.5414053797721863 +illusion_1.5L,sr,30,12.0,velocity,upper_uy,-0.0006387472385540605 +illusion_1.5L,sr,30,12.0,velocity,center_ux,0.7278521060943604 +illusion_1.5L,sr,30,12.0,velocity,center_uy,0.23513954877853394 +illusion_1.5L,sr,30,12.0,velocity,lower_ux,1.3857799768447876 +illusion_1.5L,sr,30,12.0,velocity,lower_uy,0.4786035120487213 +illusion_1.5L,sr,31,12.4,velocity,upper_ux,0.5850970149040222 +illusion_1.5L,sr,31,12.4,velocity,upper_uy,-0.13721656799316406 +illusion_1.5L,sr,31,12.4,velocity,center_ux,0.6593781113624573 +illusion_1.5L,sr,31,12.4,velocity,center_uy,-0.08252492547035217 +illusion_1.5L,sr,31,12.4,velocity,lower_ux,1.3827589750289917 +illusion_1.5L,sr,31,12.4,velocity,lower_uy,0.32627758383750916 +illusion_1.5L,sr,32,12.8,velocity,upper_ux,0.6723821759223938 +illusion_1.5L,sr,32,12.8,velocity,upper_uy,-0.22226624190807343 +illusion_1.5L,sr,32,12.8,velocity,center_ux,0.6211937069892883 +illusion_1.5L,sr,32,12.8,velocity,center_uy,-0.41672056913375854 +illusion_1.5L,sr,32,12.8,velocity,lower_ux,1.271610140800476 +illusion_1.5L,sr,32,12.8,velocity,lower_uy,0.00853498000651598 +illusion_1.5L,sr,33,13.2,velocity,upper_ux,0.7637759447097778 +illusion_1.5L,sr,33,13.2,velocity,upper_uy,-0.2872767150402069 +illusion_1.5L,sr,33,13.2,velocity,center_ux,0.6391782164573669 +illusion_1.5L,sr,33,13.2,velocity,center_uy,-0.6538000702857971 +illusion_1.5L,sr,33,13.2,velocity,lower_ux,1.1063730716705322 +illusion_1.5L,sr,33,13.2,velocity,lower_uy,-0.35371702909469604 +illusion_1.5L,sr,34,13.6,velocity,upper_ux,0.8472319841384888 +illusion_1.5L,sr,34,13.6,velocity,upper_uy,-0.34783822298049927 +illusion_1.5L,sr,34,13.6,velocity,center_ux,0.7119470834732056 +illusion_1.5L,sr,34,13.6,velocity,center_uy,-0.7197402119636536 +illusion_1.5L,sr,34,13.6,velocity,lower_ux,0.9671990871429443 +illusion_1.5L,sr,34,13.6,velocity,lower_uy,-0.579109251499176 +illusion_1.5L,sr,35,14.0,velocity,upper_ux,0.9288363456726074 +illusion_1.5L,sr,35,14.0,velocity,upper_uy,-0.3966549038887024 +illusion_1.5L,sr,35,14.0,velocity,center_ux,0.7879781126976013 +illusion_1.5L,sr,35,14.0,velocity,center_uy,-0.730914294719696 +illusion_1.5L,sr,35,14.0,velocity,lower_ux,0.8799324631690979 +illusion_1.5L,sr,35,14.0,velocity,lower_uy,-0.6181447505950928 +illusion_1.5L,sr,36,14.4,velocity,upper_ux,1.0109918117523193 +illusion_1.5L,sr,36,14.4,velocity,upper_uy,-0.4341167211532593 +illusion_1.5L,sr,36,14.4,velocity,center_ux,0.8464985489845276 +illusion_1.5L,sr,36,14.4,velocity,center_uy,-0.7571253776550293 +illusion_1.5L,sr,36,14.4,velocity,lower_ux,0.8175090551376343 +illusion_1.5L,sr,36,14.4,velocity,lower_uy,-0.576081395149231 +illusion_1.5L,sr,37,14.8,velocity,upper_ux,1.0958915948867798 +illusion_1.5L,sr,37,14.8,velocity,upper_uy,-0.46216607093811035 +illusion_1.5L,sr,37,14.8,velocity,center_ux,0.8898646831512451 +illusion_1.5L,sr,37,14.8,velocity,center_uy,-0.7778922915458679 +illusion_1.5L,sr,37,14.8,velocity,lower_ux,0.7470625042915344 +illusion_1.5L,sr,37,14.8,velocity,lower_uy,-0.5208539962768555 +illusion_1.5L,sr,38,15.2,velocity,upper_ux,1.1867022514343262 +illusion_1.5L,sr,38,15.2,velocity,upper_uy,-0.4810590445995331 +illusion_1.5L,sr,38,15.2,velocity,center_ux,0.9093762040138245 +illusion_1.5L,sr,38,15.2,velocity,center_uy,-0.7412360906600952 +illusion_1.5L,sr,38,15.2,velocity,lower_ux,0.6697779893875122 +illusion_1.5L,sr,38,15.2,velocity,lower_uy,-0.42883166670799255 +illusion_1.5L,sr,39,15.6,velocity,upper_ux,1.2846142053604126 +illusion_1.5L,sr,39,15.6,velocity,upper_uy,-0.48555102944374084 +illusion_1.5L,sr,39,15.6,velocity,center_ux,0.8914536237716675 +illusion_1.5L,sr,39,15.6,velocity,center_uy,-0.6019835472106934 +illusion_1.5L,sr,39,15.6,velocity,lower_ux,0.6039661169052124 +illusion_1.5L,sr,39,15.6,velocity,lower_uy,-0.2742238938808441 +illusion_1.5L,sr,40,16.0,velocity,upper_ux,1.376551628112793 +illusion_1.5L,sr,40,16.0,velocity,upper_uy,-0.45026034116744995 +illusion_1.5L,sr,40,16.0,velocity,center_ux,0.8371829390525818 +illusion_1.5L,sr,40,16.0,velocity,center_uy,-0.35483166575431824 +illusion_1.5L,sr,40,16.0,velocity,lower_ux,0.5701799988746643 +illusion_1.5L,sr,40,16.0,velocity,lower_uy,-0.07077112793922424 +illusion_1.5L,sr,41,16.4,velocity,upper_ux,1.4143084287643433 +illusion_1.5L,sr,41,16.4,velocity,upper_uy,-0.3113105893135071 +illusion_1.5L,sr,41,16.4,velocity,center_ux,0.7725231647491455 +illusion_1.5L,sr,41,16.4,velocity,center_uy,-0.003888288978487253 +illusion_1.5L,sr,41,16.4,velocity,lower_ux,0.5871488451957703 +illusion_1.5L,sr,41,16.4,velocity,lower_uy,0.12747007608413696 +illusion_1.5L,sr,42,16.8,velocity,upper_ux,1.3389209508895874 +illusion_1.5L,sr,42,16.8,velocity,upper_uy,-0.02238169126212597 +illusion_1.5L,sr,42,16.8,velocity,center_ux,0.7367588877677917 +illusion_1.5L,sr,42,16.8,velocity,center_uy,0.3773347735404968 +illusion_1.5L,sr,42,16.8,velocity,lower_ux,0.6616170406341553 +illusion_1.5L,sr,42,16.8,velocity,lower_uy,0.2556875944137573 +illusion_1.5L,sr,43,17.2,velocity,upper_ux,1.1813374757766724 +illusion_1.5L,sr,43,17.2,velocity,upper_uy,0.2948891818523407 +illusion_1.5L,sr,43,17.2,velocity,center_ux,0.7515559196472168 +illusion_1.5L,sr,43,17.2,velocity,center_uy,0.633807897567749 +illusion_1.5L,sr,43,17.2,velocity,lower_ux,0.7610466480255127 +illusion_1.5L,sr,43,17.2,velocity,lower_uy,0.3205516040325165 +illusion_1.5L,sr,44,17.6,velocity,upper_ux,1.0355912446975708 +illusion_1.5L,sr,44,17.6,velocity,upper_uy,0.461806058883667 +illusion_1.5L,sr,44,17.6,velocity,center_ux,0.8072605133056641 +illusion_1.5L,sr,44,17.6,velocity,center_uy,0.6925636529922485 +illusion_1.5L,sr,44,17.6,velocity,lower_ux,0.8543921113014221 +illusion_1.5L,sr,44,17.6,velocity,lower_uy,0.3678685128688812 +illusion_1.5L,sr,45,18.0,velocity,upper_ux,0.9367257952690125 +illusion_1.5L,sr,45,18.0,velocity,upper_uy,0.4793928563594818 +illusion_1.5L,sr,45,18.0,velocity,center_ux,0.8624052405357361 +illusion_1.5L,sr,45,18.0,velocity,center_uy,0.6930235028266907 +illusion_1.5L,sr,45,18.0,velocity,lower_ux,0.941253662109375 +illusion_1.5L,sr,45,18.0,velocity,lower_uy,0.4049588441848755 +illusion_1.5L,sr,46,18.4,velocity,upper_ux,0.8588667511940002 +illusion_1.5L,sr,46,18.4,velocity,upper_uy,0.4463217556476593 +illusion_1.5L,sr,46,18.4,velocity,center_ux,0.903443455696106 +illusion_1.5L,sr,46,18.4,velocity,center_uy,0.710603654384613 +illusion_1.5L,sr,46,18.4,velocity,lower_ux,1.0254820585250854 +illusion_1.5L,sr,46,18.4,velocity,lower_uy,0.43219947814941406 +illusion_1.5L,sr,47,18.8,velocity,upper_ux,0.7772409319877625 +illusion_1.5L,sr,47,18.8,velocity,upper_uy,0.39298492670059204 +illusion_1.5L,sr,47,18.8,velocity,center_ux,0.9312669634819031 +illusion_1.5L,sr,47,18.8,velocity,center_uy,0.7248942852020264 +illusion_1.5L,sr,47,18.8,velocity,lower_ux,1.1102690696716309 +illusion_1.5L,sr,47,18.8,velocity,lower_uy,0.4510027766227722 +illusion_1.5L,sr,48,19.2,velocity,upper_ux,0.6944994330406189 +illusion_1.5L,sr,48,19.2,velocity,upper_uy,0.2979812026023865 +illusion_1.5L,sr,48,19.2,velocity,center_ux,0.9351258873939514 +illusion_1.5L,sr,48,19.2,velocity,center_uy,0.6781249046325684 +illusion_1.5L,sr,48,19.2,velocity,lower_ux,1.1991147994995117 +illusion_1.5L,sr,48,19.2,velocity,lower_uy,0.46082690358161926 +illusion_1.5L,sr,49,19.6,velocity,upper_ux,0.6309234499931335 +illusion_1.5L,sr,49,19.6,velocity,upper_uy,0.15079960227012634 +illusion_1.5L,sr,49,19.6,velocity,center_ux,0.9011482000350952 +illusion_1.5L,sr,49,19.6,velocity,center_uy,0.5235363841056824 +illusion_1.5L,sr,49,19.6,velocity,lower_ux,1.2936474084854126 +illusion_1.5L,sr,49,19.6,velocity,lower_uy,0.45605388283729553 +illusion_1.5L,sr,50,20.0,velocity,upper_ux,0.6127941012382507 +illusion_1.5L,sr,50,20.0,velocity,upper_uy,-0.0198044590651989 +illusion_1.5L,sr,50,20.0,velocity,center_ux,0.8311047554016113 +illusion_1.5L,sr,50,20.0,velocity,center_uy,0.25908249616622925 +illusion_1.5L,sr,50,20.0,velocity,lower_ux,1.3823126554489136 +illusion_1.5L,sr,50,20.0,velocity,lower_uy,0.41465699672698975 +illusion_1.5L,sr,51,20.4,velocity,upper_ux,0.656205415725708 +illusion_1.5L,sr,51,20.4,velocity,upper_uy,-0.15706825256347656 +illusion_1.5L,sr,51,20.4,velocity,center_ux,0.7528651356697083 +illusion_1.5L,sr,51,20.4,velocity,center_uy,-0.09872713685035706 +illusion_1.5L,sr,51,20.4,velocity,lower_ux,1.419792890548706 +illusion_1.5L,sr,51,20.4,velocity,lower_uy,0.28319984674453735 +illusion_1.5L,sr,52,20.8,velocity,upper_ux,0.7378488779067993 +illusion_1.5L,sr,52,20.8,velocity,upper_uy,-0.2428567111492157 +illusion_1.5L,sr,52,20.8,velocity,center_ux,0.7119930386543274 +illusion_1.5L,sr,52,20.8,velocity,center_uy,-0.45085036754608154 +illusion_1.5L,sr,52,20.8,velocity,lower_ux,1.340300440788269 +illusion_1.5L,sr,52,20.8,velocity,lower_uy,0.01749533601105213 +illusion_1.5L,sr,53,21.2,velocity,upper_ux,0.8212339282035828 +illusion_1.5L,sr,53,21.2,velocity,upper_uy,-0.30702197551727295 +illusion_1.5L,sr,53,21.2,velocity,center_ux,0.7384223937988281 +illusion_1.5L,sr,53,21.2,velocity,center_uy,-0.6325084567070007 +illusion_1.5L,sr,53,21.2,velocity,lower_ux,1.1635133028030396 +illusion_1.5L,sr,53,21.2,velocity,lower_uy,-0.2792271077632904 +illusion_1.5L,sr,54,21.6,velocity,upper_ux,0.9005906581878662 +illusion_1.5L,sr,54,21.6,velocity,upper_uy,-0.3582172393798828 +illusion_1.5L,sr,54,21.6,velocity,center_ux,0.8017539978027344 +illusion_1.5L,sr,54,21.6,velocity,center_uy,-0.6556898355484009 +illusion_1.5L,sr,54,21.6,velocity,lower_ux,1.00126314163208 +illusion_1.5L,sr,54,21.6,velocity,lower_uy,-0.43228471279144287 +illusion_1.5L,sr,55,22.0,velocity,upper_ux,0.9790084362030029 +illusion_1.5L,sr,55,22.0,velocity,upper_uy,-0.39646685123443604 +illusion_1.5L,sr,55,22.0,velocity,center_ux,0.8541042804718018 +illusion_1.5L,sr,55,22.0,velocity,center_uy,-0.6657617092132568 +illusion_1.5L,sr,55,22.0,velocity,lower_ux,0.8995391130447388 +illusion_1.5L,sr,55,22.0,velocity,lower_uy,-0.44191157817840576 +illusion_1.5L,sr,56,22.4,velocity,upper_ux,1.0581921339035034 +illusion_1.5L,sr,56,22.4,velocity,upper_uy,-0.4241189956665039 +illusion_1.5L,sr,56,22.4,velocity,center_ux,0.891038715839386 +illusion_1.5L,sr,56,22.4,velocity,center_uy,-0.6906160116195679 +illusion_1.5L,sr,56,22.4,velocity,lower_ux,0.8244715929031372 +illusion_1.5L,sr,56,22.4,velocity,lower_uy,-0.401153028011322 +illusion_1.5L,sr,57,22.8,velocity,upper_ux,1.1401432752609253 +illusion_1.5L,sr,57,22.8,velocity,upper_uy,-0.4421907365322113 +illusion_1.5L,sr,57,22.8,velocity,center_ux,0.9123208522796631 +illusion_1.5L,sr,57,22.8,velocity,center_uy,-0.6956544518470764 +illusion_1.5L,sr,57,22.8,velocity,lower_ux,0.7477474808692932 +illusion_1.5L,sr,57,22.8,velocity,lower_uy,-0.33668601512908936 +illusion_1.5L,sr,58,23.2,velocity,upper_ux,1.2268112897872925 +illusion_1.5L,sr,58,23.2,velocity,upper_uy,-0.44925862550735474 +illusion_1.5L,sr,58,23.2,velocity,center_ux,0.906269907951355 +illusion_1.5L,sr,58,23.2,velocity,center_uy,-0.6214038729667664 +illusion_1.5L,sr,58,23.2,velocity,lower_ux,0.6742027401924133 +illusion_1.5L,sr,58,23.2,velocity,lower_uy,-0.23271244764328003 +illusion_1.5L,sr,59,23.6,velocity,upper_ux,1.3169742822647095 +illusion_1.5L,sr,59,23.6,velocity,upper_uy,-0.43815216422080994 +illusion_1.5L,sr,59,23.6,velocity,center_ux,0.8628895282745361 +illusion_1.5L,sr,59,23.6,velocity,center_uy,-0.4409160315990448 +illusion_1.5L,sr,59,23.6,velocity,lower_ux,0.6269578337669373 +illusion_1.5L,sr,59,23.6,velocity,lower_uy,-0.0896623507142067 +illusion_1.5L,sr,60,24.0,velocity,upper_ux,1.3952223062515259 +illusion_1.5L,sr,60,24.0,velocity,upper_uy,-0.3861345052719116 +illusion_1.5L,sr,60,24.0,velocity,center_ux,0.7874401211738586 +illusion_1.5L,sr,60,24.0,velocity,center_uy,-0.16363434493541718 +illusion_1.5L,sr,60,24.0,velocity,lower_ux,0.6318172216415405 +illusion_1.5L,sr,60,24.0,velocity,lower_uy,0.056213196367025375 +illusion_1.5L,sr,61,24.4,velocity,upper_ux,1.4170811176300049 +illusion_1.5L,sr,61,24.4,velocity,upper_uy,-0.24719783663749695 +illusion_1.5L,sr,61,24.4,velocity,center_ux,0.709622323513031 +illusion_1.5L,sr,61,24.4,velocity,center_uy,0.18687519431114197 +illusion_1.5L,sr,61,24.4,velocity,lower_ux,0.6902596354484558 +illusion_1.5L,sr,61,24.4,velocity,lower_uy,0.16453178226947784 +illusion_1.5L,sr,62,24.8,velocity,upper_ux,1.3247113227844238 +illusion_1.5L,sr,62,24.8,velocity,upper_uy,0.00940055400133133 +illusion_1.5L,sr,62,24.8,velocity,center_ux,0.6775324940681458 +illusion_1.5L,sr,62,24.8,velocity,center_uy,0.5003275871276855 +illusion_1.5L,sr,62,24.8,velocity,lower_ux,0.7676355838775635 +illusion_1.5L,sr,62,24.8,velocity,lower_uy,0.24319520592689514 +illusion_1.5L,sr,63,25.2,velocity,upper_ux,1.1386749744415283 +illusion_1.5L,sr,63,25.2,velocity,upper_uy,0.2876890301704407 +illusion_1.5L,sr,63,25.2,velocity,center_ux,0.7179456949234009 +illusion_1.5L,sr,63,25.2,velocity,center_uy,0.6333780288696289 +illusion_1.5L,sr,63,25.2,velocity,lower_ux,0.8431004285812378 +illusion_1.5L,sr,63,25.2,velocity,lower_uy,0.309138685464859 +illusion_1.5L,sr,64,25.6,velocity,upper_ux,0.9701051115989685 +illusion_1.5L,sr,64,25.6,velocity,upper_uy,0.4289672076702118 +illusion_1.5L,sr,64,25.6,velocity,center_ux,0.7851821184158325 +illusion_1.5L,sr,64,25.6,velocity,center_uy,0.6477783918380737 +illusion_1.5L,sr,64,25.6,velocity,lower_ux,0.9178990125656128 +illusion_1.5L,sr,64,25.6,velocity,lower_uy,0.36088067293167114 +illusion_1.5L,sr,65,26.0,velocity,upper_ux,0.8673630356788635 +illusion_1.5L,sr,65,26.0,velocity,upper_uy,0.43227946758270264 +illusion_1.5L,sr,65,26.0,velocity,center_ux,0.8356739282608032 +illusion_1.5L,sr,65,26.0,velocity,center_uy,0.6654011011123657 +illusion_1.5L,sr,65,26.0,velocity,lower_ux,0.9934735894203186 +illusion_1.5L,sr,65,26.0,velocity,lower_uy,0.39957907795906067 +illusion_1.5L,sr,66,26.4,velocity,upper_ux,0.7948504686355591 +illusion_1.5L,sr,66,26.4,velocity,upper_uy,0.38463664054870605 +illusion_1.5L,sr,66,26.4,velocity,center_ux,0.8701664805412292 +illusion_1.5L,sr,66,26.4,velocity,center_uy,0.6916365027427673 +illusion_1.5L,sr,66,26.4,velocity,lower_ux,1.071302890777588 +illusion_1.5L,sr,66,26.4,velocity,lower_uy,0.42735084891319275 +illusion_1.5L,sr,67,26.8,velocity,upper_ux,0.7229272723197937 +illusion_1.5L,sr,67,26.8,velocity,upper_uy,0.3121165335178375 +illusion_1.5L,sr,67,26.8,velocity,center_ux,0.8875400424003601 +illusion_1.5L,sr,67,26.8,velocity,center_uy,0.6851100325584412 +illusion_1.5L,sr,67,26.8,velocity,lower_ux,1.1529673337936401 +illusion_1.5L,sr,67,26.8,velocity,lower_uy,0.4446435868740082 +illusion_1.5L,sr,68,27.2,velocity,upper_ux,0.657316267490387 +illusion_1.5L,sr,68,27.2,velocity,upper_uy,0.20307797193527222 +illusion_1.5L,sr,68,27.2,velocity,center_ux,0.877112865447998 +illusion_1.5L,sr,68,27.2,velocity,center_uy,0.590523362159729 +illusion_1.5L,sr,68,27.2,velocity,lower_ux,1.2392644882202148 +illusion_1.5L,sr,68,27.2,velocity,lower_uy,0.44931280612945557 +illusion_1.5L,sr,69,27.6,velocity,upper_ux,0.621903657913208 +illusion_1.5L,sr,69,27.6,velocity,upper_uy,0.06378868222236633 +illusion_1.5L,sr,69,27.6,velocity,center_ux,0.8313195705413818 +illusion_1.5L,sr,69,27.6,velocity,center_uy,0.39624157547950745 +illusion_1.5L,sr,69,27.6,velocity,lower_ux,1.3264962434768677 +illusion_1.5L,sr,69,27.6,velocity,lower_uy,0.43328526616096497 +illusion_1.5L,sr,70,28.0,velocity,upper_ux,0.6395828127861023 +illusion_1.5L,sr,70,28.0,velocity,upper_uy,-0.06856894493103027 +illusion_1.5L,sr,70,28.0,velocity,center_ux,0.7554214000701904 +illusion_1.5L,sr,70,28.0,velocity,center_uy,0.1163153201341629 +illusion_1.5L,sr,70,28.0,velocity,lower_ux,1.3969192504882812 +illusion_1.5L,sr,70,28.0,velocity,lower_uy,0.3747069835662842 +illusion_1.5L,sr,71,28.4,velocity,upper_ux,0.7026787400245667 +illusion_1.5L,sr,71,28.4,velocity,upper_uy,-0.1659967303276062 +illusion_1.5L,sr,71,28.4,velocity,center_ux,0.6784841418266296 +illusion_1.5L,sr,71,28.4,velocity,center_uy,-0.22501954436302185 +illusion_1.5L,sr,71,28.4,velocity,lower_ux,1.4101066589355469 +illusion_1.5L,sr,71,28.4,velocity,lower_uy,0.2352297455072403 +illusion_1.5L,sr,72,28.8,velocity,upper_ux,0.7765886783599854 +illusion_1.5L,sr,72,28.8,velocity,upper_uy,-0.2435925155878067 +illusion_1.5L,sr,72,28.8,velocity,center_ux,0.6503197550773621 +illusion_1.5L,sr,72,28.8,velocity,center_uy,-0.518039882183075 +illusion_1.5L,sr,72,28.8,velocity,lower_ux,1.3160712718963623 +illusion_1.5L,sr,72,28.8,velocity,lower_uy,-0.009683806449174881 +illusion_1.5L,sr,73,29.2,velocity,upper_ux,0.8490328788757324 +illusion_1.5L,sr,73,29.2,velocity,upper_uy,-0.31032443046569824 +illusion_1.5L,sr,73,29.2,velocity,center_ux,0.6970846056938171 +illusion_1.5L,sr,73,29.2,velocity,center_uy,-0.6338809132575989 +illusion_1.5L,sr,73,29.2,velocity,lower_ux,1.1277186870574951 +illusion_1.5L,sr,73,29.2,velocity,lower_uy,-0.28092992305755615 +illusion_1.5L,sr,74,29.6,velocity,upper_ux,0.9223983883857727 +illusion_1.5L,sr,74,29.6,velocity,upper_uy,-0.3625795245170593 +illusion_1.5L,sr,74,29.6,velocity,center_ux,0.7671868801116943 +illusion_1.5L,sr,74,29.6,velocity,center_uy,-0.6478908658027649 +illusion_1.5L,sr,74,29.6,velocity,lower_ux,0.9507560729980469 +illusion_1.5L,sr,74,29.6,velocity,lower_uy,-0.42790183424949646 +illusion_1.5L,sr,75,30.0,velocity,upper_ux,0.9973444938659668 +illusion_1.5L,sr,75,30.0,velocity,upper_uy,-0.4017159938812256 +illusion_1.5L,sr,75,30.0,velocity,center_ux,0.8183781504631042 +illusion_1.5L,sr,75,30.0,velocity,center_uy,-0.6691901683807373 +illusion_1.5L,sr,75,30.0,velocity,lower_ux,0.8434784412384033 +illusion_1.5L,sr,75,30.0,velocity,lower_uy,-0.43380045890808105 +illusion_1.5L,sr,76,30.4,velocity,upper_ux,1.0748082399368286 +illusion_1.5L,sr,76,30.4,velocity,upper_uy,-0.42947253584861755 +illusion_1.5L,sr,76,30.4,velocity,center_ux,0.8526104688644409 +illusion_1.5L,sr,76,30.4,velocity,center_uy,-0.6951600909233093 +illusion_1.5L,sr,76,30.4,velocity,lower_ux,0.7725388407707214 +illusion_1.5L,sr,76,30.4,velocity,lower_uy,-0.38202953338623047 +illusion_1.5L,sr,77,30.8,velocity,upper_ux,1.156332015991211 +illusion_1.5L,sr,77,30.8,velocity,upper_uy,-0.4459156394004822 +illusion_1.5L,sr,77,30.8,velocity,center_ux,0.8692378401756287 +illusion_1.5L,sr,77,30.8,velocity,center_uy,-0.6818234920501709 +illusion_1.5L,sr,77,30.8,velocity,lower_ux,0.7045072913169861 +illusion_1.5L,sr,77,30.8,velocity,lower_uy,-0.3044999837875366 +illusion_1.5L,sr,78,31.2,velocity,upper_ux,1.242121696472168 +illusion_1.5L,sr,78,31.2,velocity,upper_uy,-0.44855114817619324 +illusion_1.5L,sr,78,31.2,velocity,center_ux,0.8591176867485046 +illusion_1.5L,sr,78,31.2,velocity,center_uy,-0.5772385597229004 +illusion_1.5L,sr,78,31.2,velocity,lower_ux,0.6436712741851807 +illusion_1.5L,sr,78,31.2,velocity,lower_uy,-0.192975714802742 +illusion_1.5L,sr,79,31.6,velocity,upper_ux,1.3272485733032227 +illusion_1.5L,sr,79,31.6,velocity,upper_uy,-0.42929062247276306 +illusion_1.5L,sr,79,31.6,velocity,center_ux,0.8158023953437805 +illusion_1.5L,sr,79,31.6,velocity,center_uy,-0.37810075283050537 +illusion_1.5L,sr,79,31.6,velocity,lower_ux,0.6139018535614014 +illusion_1.5L,sr,79,31.6,velocity,lower_uy,-0.055403366684913635 +illusion_1.5L,sr,80,32.0,velocity,upper_ux,1.3935855627059937 +illusion_1.5L,sr,80,32.0,velocity,upper_uy,-0.36860713362693787 +illusion_1.5L,sr,80,32.0,velocity,center_ux,0.7425888180732727 +illusion_1.5L,sr,80,32.0,velocity,center_uy,-0.1019299253821373 +illusion_1.5L,sr,80,32.0,velocity,lower_ux,0.6368128657341003 +illusion_1.5L,sr,80,32.0,velocity,lower_uy,0.07180020958185196 +illusion_1.5L,sr,81,32.4,velocity,upper_ux,1.40553617477417 +illusion_1.5L,sr,81,32.4,velocity,upper_uy,-0.23567596077919006 +illusion_1.5L,sr,81,32.4,velocity,center_ux,0.665248692035675 +illusion_1.5L,sr,81,32.4,velocity,center_uy,0.2306208461523056 +illusion_1.5L,sr,81,32.4,velocity,lower_ux,0.70168137550354 +illusion_1.5L,sr,81,32.4,velocity,lower_uy,0.16536132991313934 +illusion_1.5L,sr,82,32.8,velocity,upper_ux,1.3199362754821777 +illusion_1.5L,sr,82,32.8,velocity,upper_uy,-0.009725661017000675 +illusion_1.5L,sr,82,32.8,velocity,center_ux,0.6341621279716492 +illusion_1.5L,sr,82,32.8,velocity,center_uy,0.516976535320282 +illusion_1.5L,sr,82,32.8,velocity,lower_ux,0.7742025256156921 +illusion_1.5L,sr,82,32.8,velocity,lower_uy,0.24246902763843536 +illusion_1.5L,sr,83,33.2,velocity,upper_ux,1.1364994049072266 +illusion_1.5L,sr,83,33.2,velocity,upper_uy,0.2528739869594574 +illusion_1.5L,sr,83,33.2,velocity,center_ux,0.6796123385429382 +illusion_1.5L,sr,83,33.2,velocity,center_uy,0.631389319896698 +illusion_1.5L,sr,83,33.2,velocity,lower_ux,0.8450831770896912 +illusion_1.5L,sr,83,33.2,velocity,lower_uy,0.30980542302131653 +illusion_1.5L,sr,84,33.6,velocity,upper_ux,0.9490420818328857 +illusion_1.5L,sr,84,33.6,velocity,upper_uy,0.41327103972435 +illusion_1.5L,sr,84,33.6,velocity,center_ux,0.7506481409072876 +illusion_1.5L,sr,84,33.6,velocity,center_uy,0.6452322602272034 +illusion_1.5L,sr,84,33.6,velocity,lower_ux,0.9175716638565063 +illusion_1.5L,sr,84,33.6,velocity,lower_uy,0.36283278465270996 +illusion_1.5L,sr,85,34.0,velocity,upper_ux,0.8317368030548096 +illusion_1.5L,sr,85,34.0,velocity,upper_uy,0.43052688241004944 +illusion_1.5L,sr,85,34.0,velocity,center_ux,0.8022506237030029 +illusion_1.5L,sr,85,34.0,velocity,center_uy,0.6666790246963501 +illusion_1.5L,sr,85,34.0,velocity,lower_ux,0.9920657873153687 +illusion_1.5L,sr,85,34.0,velocity,lower_uy,0.4027605950832367 +illusion_1.5L,sr,86,34.4,velocity,upper_ux,0.7607052326202393 +illusion_1.5L,sr,86,34.4,velocity,upper_uy,0.37972527742385864 +illusion_1.5L,sr,86,34.4,velocity,center_ux,0.8360322713851929 +illusion_1.5L,sr,86,34.4,velocity,center_uy,0.6933014392852783 +illusion_1.5L,sr,86,34.4,velocity,lower_ux,1.0692050457000732 +illusion_1.5L,sr,86,34.4,velocity,lower_uy,0.43121787905693054 +illusion_1.5L,sr,87,34.8,velocity,upper_ux,0.6964700222015381 +illusion_1.5L,sr,87,34.8,velocity,upper_uy,0.30228710174560547 +illusion_1.5L,sr,87,34.8,velocity,center_ux,0.8522283434867859 +illusion_1.5L,sr,87,34.8,velocity,center_uy,0.6828078627586365 +illusion_1.5L,sr,87,34.8,velocity,lower_ux,1.1501169204711914 +illusion_1.5L,sr,87,34.8,velocity,lower_uy,0.4481337368488312 +illusion_1.5L,sr,88,35.2,velocity,upper_ux,0.6385085582733154 +illusion_1.5L,sr,88,35.2,velocity,upper_uy,0.1942303329706192 +illusion_1.5L,sr,88,35.2,velocity,center_ux,0.8437281847000122 +illusion_1.5L,sr,88,35.2,velocity,center_uy,0.5831966996192932 +illusion_1.5L,sr,88,35.2,velocity,lower_ux,1.2350465059280396 +illusion_1.5L,sr,88,35.2,velocity,lower_uy,0.45094677805900574 +illusion_1.5L,sr,89,35.6,velocity,upper_ux,0.609472930431366 +illusion_1.5L,sr,89,35.6,velocity,upper_uy,0.06191057711839676 +illusion_1.5L,sr,89,35.6,velocity,center_ux,0.804696261882782 +illusion_1.5L,sr,89,35.6,velocity,center_uy,0.38988062739372253 +illusion_1.5L,sr,89,35.6,velocity,lower_ux,1.3192027807235718 +illusion_1.5L,sr,89,35.6,velocity,lower_uy,0.4321799576282501 +illusion_1.5L,sr,90,36.0,velocity,upper_ux,0.631447434425354 +illusion_1.5L,sr,90,36.0,velocity,upper_uy,-0.061607107520103455 +illusion_1.5L,sr,90,36.0,velocity,center_ux,0.7357273697853088 +illusion_1.5L,sr,90,36.0,velocity,center_uy,0.12399154901504517 +illusion_1.5L,sr,90,36.0,velocity,lower_ux,1.3859570026397705 +illusion_1.5L,sr,90,36.0,velocity,lower_uy,0.37508392333984375 +illusion_1.5L,sr,91,36.4,velocity,upper_ux,0.6950693726539612 +illusion_1.5L,sr,91,36.4,velocity,upper_uy,-0.15397199988365173 +illusion_1.5L,sr,91,36.4,velocity,center_ux,0.6567979454994202 +illusion_1.5L,sr,91,36.4,velocity,center_uy,-0.19884611666202545 +illusion_1.5L,sr,91,36.4,velocity,lower_ux,1.4043563604354858 +illusion_1.5L,sr,91,36.4,velocity,lower_uy,0.2545207142829895 +illusion_1.5L,sr,92,36.8,velocity,upper_ux,0.766120433807373 +illusion_1.5L,sr,92,36.8,velocity,upper_uy,-0.2316950559616089 +illusion_1.5L,sr,92,36.8,velocity,center_ux,0.6162701845169067 +illusion_1.5L,sr,92,36.8,velocity,center_uy,-0.4928039312362671 +illusion_1.5L,sr,92,36.8,velocity,lower_ux,1.3368574380874634 +illusion_1.5L,sr,92,36.8,velocity,lower_uy,0.050884079188108444 +illusion_1.5L,sr,93,37.2,velocity,upper_ux,0.8349295854568481 +illusion_1.5L,sr,93,37.2,velocity,upper_uy,-0.301317036151886 +illusion_1.5L,sr,93,37.2,velocity,center_ux,0.6537798047065735 +illusion_1.5L,sr,93,37.2,velocity,center_uy,-0.6263521313667297 +illusion_1.5L,sr,93,37.2,velocity,lower_ux,1.1677467823028564 +illusion_1.5L,sr,93,37.2,velocity,lower_uy,-0.20462244749069214 +illusion_1.5L,sr,94,37.6,velocity,upper_ux,0.9058565497398376 +illusion_1.5L,sr,94,37.6,velocity,upper_uy,-0.3569188416004181 +illusion_1.5L,sr,94,37.6,velocity,center_ux,0.7272396683692932 +illusion_1.5L,sr,94,37.6,velocity,center_uy,-0.6435884237289429 +illusion_1.5L,sr,94,37.6,velocity,lower_ux,0.9686424732208252 +illusion_1.5L,sr,94,37.6,velocity,lower_uy,-0.390653520822525 +illusion_1.5L,sr,95,38.0,velocity,upper_ux,0.979519248008728 +illusion_1.5L,sr,95,38.0,velocity,upper_uy,-0.39909130334854126 +illusion_1.5L,sr,95,38.0,velocity,center_ux,0.782684862613678 +illusion_1.5L,sr,95,38.0,velocity,center_uy,-0.6631608605384827 +illusion_1.5L,sr,95,38.0,velocity,lower_ux,0.8322261571884155 +illusion_1.5L,sr,95,38.0,velocity,lower_uy,-0.43271541595458984 +illusion_1.5L,sr,96,38.4,velocity,upper_ux,1.0561281442642212 +illusion_1.5L,sr,96,38.4,velocity,upper_uy,-0.42946961522102356 +illusion_1.5L,sr,96,38.4,velocity,center_ux,0.8188308477401733 +illusion_1.5L,sr,96,38.4,velocity,center_uy,-0.6909496188163757 +illusion_1.5L,sr,96,38.4,velocity,lower_ux,0.7560180425643921 +illusion_1.5L,sr,96,38.4,velocity,lower_uy,-0.3879674971103668 +illusion_1.5L,sr,97,38.8,velocity,upper_ux,1.1364272832870483 +illusion_1.5L,sr,97,38.8,velocity,upper_uy,-0.44809433817863464 +illusion_1.5L,sr,97,38.8,velocity,center_ux,0.8376818895339966 +illusion_1.5L,sr,97,38.8,velocity,center_uy,-0.6885457038879395 +illusion_1.5L,sr,97,38.8,velocity,lower_ux,0.6947422027587891 +illusion_1.5L,sr,97,38.8,velocity,lower_uy,-0.31222304701805115 +illusion_1.5L,sr,98,39.2,velocity,upper_ux,1.220388412475586 +illusion_1.5L,sr,98,39.2,velocity,upper_uy,-0.4526952803134918 +illusion_1.5L,sr,98,39.2,velocity,center_ux,0.8335772752761841 +illusion_1.5L,sr,98,39.2,velocity,center_uy,-0.6028428077697754 +illusion_1.5L,sr,98,39.2,velocity,lower_ux,0.6380167603492737 +illusion_1.5L,sr,98,39.2,velocity,lower_uy,-0.2087545245885849 +illusion_1.5L,sr,99,39.6,velocity,upper_ux,1.3041189908981323 +illusion_1.5L,sr,99,39.6,velocity,upper_uy,-0.43687140941619873 +illusion_1.5L,sr,99,39.6,velocity,center_ux,0.8012048602104187 +illusion_1.5L,sr,99,39.6,velocity,center_uy,-0.42185792326927185 +illusion_1.5L,sr,99,39.6,velocity,lower_ux,0.6055439114570618 +illusion_1.5L,sr,99,39.6,velocity,lower_uy,-0.08076551556587219 +illusion_1.5L,sr,100,40.0,velocity,upper_ux,1.373569130897522 +illusion_1.5L,sr,100,40.0,velocity,upper_uy,-0.386733740568161 +illusion_1.5L,sr,100,40.0,velocity,center_ux,0.7390239834785461 +illusion_1.5L,sr,100,40.0,velocity,center_uy,-0.17012609541416168 +illusion_1.5L,sr,100,40.0,velocity,lower_ux,0.621239185333252 +illusion_1.5L,sr,100,40.0,velocity,lower_uy,0.0429191030561924 +illusion_1.5L,sr,101,40.4,velocity,upper_ux,1.4019981622695923 +illusion_1.5L,sr,101,40.4,velocity,upper_uy,-0.28150683641433716 +illusion_1.5L,sr,101,40.4,velocity,center_ux,0.6598422527313232 +illusion_1.5L,sr,101,40.4,velocity,center_uy,0.14001697301864624 +illusion_1.5L,sr,101,40.4,velocity,lower_ux,0.6815013885498047 +illusion_1.5L,sr,101,40.4,velocity,lower_uy,0.1370442509651184 +illusion_1.5L,sr,102,40.8,velocity,upper_ux,1.357263445854187 +illusion_1.5L,sr,102,40.8,velocity,upper_uy,-0.10355737805366516 +illusion_1.5L,sr,102,40.8,velocity,center_ux,0.606356680393219 +illusion_1.5L,sr,102,40.8,velocity,center_uy,0.44538426399230957 +illusion_1.5L,sr,102,40.8,velocity,lower_ux,0.752281129360199 +illusion_1.5L,sr,102,40.8,velocity,lower_uy,0.21532787382602692 +illusion_1.5L,sr,103,41.2,velocity,upper_ux,1.214043378829956 +illusion_1.5L,sr,103,41.2,velocity,upper_uy,0.13602623343467712 +illusion_1.5L,sr,103,41.2,velocity,center_ux,0.6278597712516785 +illusion_1.5L,sr,103,41.2,velocity,center_uy,0.6125096678733826 +illusion_1.5L,sr,103,41.2,velocity,lower_ux,0.8198249936103821 +illusion_1.5L,sr,103,41.2,velocity,lower_uy,0.2875033915042877 +illusion_1.5L,sr,104,41.6,velocity,upper_ux,1.0112913846969604 +illusion_1.5L,sr,104,41.6,velocity,upper_uy,0.34598591923713684 +illusion_1.5L,sr,104,41.6,velocity,center_ux,0.7007017731666565 +illusion_1.5L,sr,104,41.6,velocity,center_uy,0.6396360993385315 +illusion_1.5L,sr,104,41.6,velocity,lower_ux,0.8889411687850952 +illusion_1.5L,sr,104,41.6,velocity,lower_uy,0.3466030955314636 +illusion_1.5L,sr,105,42.0,velocity,upper_ux,0.8490402102470398 +illusion_1.5L,sr,105,42.0,velocity,upper_uy,0.4251972436904907 +illusion_1.5L,sr,105,42.0,velocity,center_ux,0.7609364986419678 +illusion_1.5L,sr,105,42.0,velocity,center_uy,0.6552590131759644 +illusion_1.5L,sr,105,42.0,velocity,lower_ux,0.9611576795578003 +illusion_1.5L,sr,105,42.0,velocity,lower_uy,0.39206522703170776 +illusion_1.5L,sr,106,42.4,velocity,upper_ux,0.7588828802108765 +illusion_1.5L,sr,106,42.4,velocity,upper_uy,0.39619120955467224 +illusion_1.5L,sr,106,42.4,velocity,center_ux,0.7998877763748169 +illusion_1.5L,sr,106,42.4,velocity,center_uy,0.6837252974510193 +illusion_1.5L,sr,106,42.4,velocity,lower_ux,1.036683201789856 +illusion_1.5L,sr,106,42.4,velocity,lower_uy,0.42563334107398987 +illusion_1.5L,sr,107,42.8,velocity,upper_ux,0.6982904672622681 +illusion_1.5L,sr,107,42.8,velocity,upper_uy,0.3256060779094696 +illusion_1.5L,sr,107,42.8,velocity,center_ux,0.8217090368270874 +illusion_1.5L,sr,107,42.8,velocity,center_uy,0.6927487254142761 +illusion_1.5L,sr,107,42.8,velocity,lower_ux,1.1160311698913574 +illusion_1.5L,sr,107,42.8,velocity,lower_uy,0.4475860595703125 +illusion_1.5L,sr,108,43.2,velocity,upper_ux,0.6431583166122437 +illusion_1.5L,sr,108,43.2,velocity,upper_uy,0.22959581017494202 +illusion_1.5L,sr,108,43.2,velocity,center_ux,0.8226600885391235 +illusion_1.5L,sr,108,43.2,velocity,center_uy,0.6298708319664001 +illusion_1.5L,sr,108,43.2,velocity,lower_ux,1.199171543121338 +illusion_1.5L,sr,108,43.2,velocity,lower_uy,0.4559970796108246 +illusion_1.5L,sr,109,43.6,velocity,upper_ux,0.6060715317726135 +illusion_1.5L,sr,109,43.6,velocity,upper_uy,0.10887438803911209 +illusion_1.5L,sr,109,43.6,velocity,center_ux,0.7976576089859009 +illusion_1.5L,sr,109,43.6,velocity,center_uy,0.4697072207927704 +illusion_1.5L,sr,109,43.6,velocity,lower_ux,1.2829726934432983 +illusion_1.5L,sr,109,43.6,velocity,lower_uy,0.4455048441886902 +illusion_1.5L,sr,110,44.0,velocity,upper_ux,0.6117963790893555 +illusion_1.5L,sr,110,44.0,velocity,upper_uy,-0.014230369590222836 +illusion_1.5L,sr,110,44.0,velocity,center_ux,0.7439714074134827 +illusion_1.5L,sr,110,44.0,velocity,center_uy,0.23574276268482208 +illusion_1.5L,sr,110,44.0,velocity,lower_ux,1.3562614917755127 +illusion_1.5L,sr,110,44.0,velocity,lower_uy,0.40469181537628174 +illusion_1.5L,sr,111,44.4,velocity,upper_ux,0.6649507284164429 +illusion_1.5L,sr,111,44.4,velocity,upper_uy,-0.11167879402637482 +illusion_1.5L,sr,111,44.4,velocity,center_ux,0.6673606038093567 +illusion_1.5L,sr,111,44.4,velocity,center_uy,-0.05710272863507271 +illusion_1.5L,sr,111,44.4,velocity,lower_ux,1.3963043689727783 +illusion_1.5L,sr,111,44.4,velocity,lower_uy,0.3160340487957001 +illusion_1.5L,sr,112,44.8,velocity,upper_ux,0.7348455190658569 +illusion_1.5L,sr,112,44.8,velocity,upper_uy,-0.19090452790260315 +illusion_1.5L,sr,112,44.8,velocity,center_ux,0.6010453701019287 +illusion_1.5L,sr,112,44.8,velocity,center_uy,-0.37045857310295105 +illusion_1.5L,sr,112,44.8,velocity,lower_ux,1.3753525018692017 +illusion_1.5L,sr,112,44.8,velocity,lower_uy,0.16350990533828735 +illusion_1.5L,sr,113,45.2,velocity,upper_ux,0.8012850880622864 +illusion_1.5L,sr,113,45.2,velocity,upper_uy,-0.2659953832626343 +illusion_1.5L,sr,113,45.2,velocity,center_ux,0.5992493629455566 +illusion_1.5L,sr,113,45.2,velocity,center_uy,-0.5837951898574829 +illusion_1.5L,sr,113,45.2,velocity,lower_ux,1.26601243019104 +illusion_1.5L,sr,113,45.2,velocity,lower_uy,-0.05423398315906525 +illusion_1.5L,sr,114,45.6,velocity,upper_ux,0.8684378862380981 +illusion_1.5L,sr,114,45.6,velocity,upper_uy,-0.3299957513809204 +illusion_1.5L,sr,114,45.6,velocity,center_ux,0.6664990186691284 +illusion_1.5L,sr,114,45.6,velocity,center_uy,-0.6363348364830017 +illusion_1.5L,sr,114,45.6,velocity,lower_ux,1.0743602514266968 +illusion_1.5L,sr,114,45.6,velocity,lower_uy,-0.2815965414047241 +illusion_1.5L,sr,115,46.0,velocity,upper_ux,0.9387872815132141 +illusion_1.5L,sr,115,46.0,velocity,upper_uy,-0.3800804913043976 +illusion_1.5L,sr,115,46.0,velocity,center_ux,0.7344785928726196 +illusion_1.5L,sr,115,46.0,velocity,center_uy,-0.6476717591285706 +illusion_1.5L,sr,115,46.0,velocity,lower_ux,0.8860500454902649 +illusion_1.5L,sr,115,46.0,velocity,lower_uy,-0.4086250066757202 +illusion_1.5L,sr,116,46.4,velocity,upper_ux,1.0126947164535522 +illusion_1.5L,sr,116,46.4,velocity,upper_uy,-0.41785794496536255 +illusion_1.5L,sr,116,46.4,velocity,center_ux,0.7786988615989685 +illusion_1.5L,sr,116,46.4,velocity,center_uy,-0.6749381422996521 +illusion_1.5L,sr,116,46.4,velocity,lower_ux,0.770588219165802 +illusion_1.5L,sr,116,46.4,velocity,lower_uy,-0.4087097644805908 +illusion_1.5L,sr,117,46.8,velocity,upper_ux,1.0907012224197388 +illusion_1.5L,sr,117,46.8,velocity,upper_uy,-0.4439598321914673 +illusion_1.5L,sr,117,46.8,velocity,center_ux,0.8050500750541687 +illusion_1.5L,sr,117,46.8,velocity,center_uy,-0.6942010521888733 +illusion_1.5L,sr,117,46.8,velocity,lower_ux,0.7048468589782715 +illusion_1.5L,sr,117,46.8,velocity,lower_uy,-0.34648266434669495 +illusion_1.5L,sr,118,47.2,velocity,upper_ux,1.172878384590149 +illusion_1.5L,sr,118,47.2,velocity,upper_uy,-0.4570203125476837 +illusion_1.5L,sr,118,47.2,velocity,center_ux,0.81232088804245 +illusion_1.5L,sr,118,47.2,velocity,center_uy,-0.6572180986404419 +illusion_1.5L,sr,118,47.2,velocity,lower_ux,0.650743305683136 +illusion_1.5L,sr,118,47.2,velocity,lower_uy,-0.2575792074203491 +illusion_1.5L,sr,119,47.6,velocity,upper_ux,1.2569576501846313 +illusion_1.5L,sr,119,47.6,velocity,upper_uy,-0.45278826355934143 +illusion_1.5L,sr,119,47.6,velocity,center_ux,0.7959200143814087 +illusion_1.5L,sr,119,47.6,velocity,center_uy,-0.5246404409408569 +illusion_1.5L,sr,119,47.6,velocity,lower_ux,0.6088631749153137 +illusion_1.5L,sr,119,47.6,velocity,lower_uy,-0.14414207637310028 +illusion_1.5L,sr,120,48.0,velocity,upper_ux,1.3342416286468506 +illusion_1.5L,sr,120,48.0,velocity,upper_uy,-0.42207100987434387 +illusion_1.5L,sr,120,48.0,velocity,center_ux,0.7525155544281006 +illusion_1.5L,sr,120,48.0,velocity,center_uy,-0.31096407771110535 +illusion_1.5L,sr,120,48.0,velocity,lower_ux,0.6020668148994446 +illusion_1.5L,sr,120,48.0,velocity,lower_uy,-0.0209525004029274 +illusion_1.5L,sr,121,48.4,velocity,upper_ux,1.385607123374939 +illusion_1.5L,sr,121,48.4,velocity,upper_uy,-0.34983670711517334 +illusion_1.5L,sr,121,48.4,velocity,center_ux,0.682474672794342 +illusion_1.5L,sr,121,48.4,velocity,center_uy,-0.03838175907731056 +illusion_1.5L,sr,121,48.4,velocity,lower_ux,0.6440885663032532 +illusion_1.5L,sr,121,48.4,velocity,lower_uy,0.0825226902961731 +illusion_1.5L,sr,122,48.8,velocity,upper_ux,1.3860962390899658 +illusion_1.5L,sr,122,48.8,velocity,upper_uy,-0.22105367481708527 +illusion_1.5L,sr,122,48.8,velocity,center_ux,0.6074568033218384 +illusion_1.5L,sr,122,48.8,velocity,center_uy,0.27330073714256287 +illusion_1.5L,sr,122,48.8,velocity,lower_ux,0.7122884392738342 +illusion_1.5L,sr,122,48.8,velocity,lower_uy,0.16351310908794403 +illusion_1.5L,sr,123,49.2,velocity,upper_ux,1.3114863634109497 +illusion_1.5L,sr,123,49.2,velocity,upper_uy,-0.029494188725948334 +illusion_1.5L,sr,123,49.2,velocity,center_ux,0.5787054300308228 +illusion_1.5L,sr,123,49.2,velocity,center_uy,0.5320196747779846 +illusion_1.5L,sr,123,49.2,velocity,lower_ux,0.7788446545600891 +illusion_1.5L,sr,123,49.2,velocity,lower_uy,0.24030494689941406 +illusion_1.5L,sr,124,49.6,velocity,upper_ux,1.1471080780029297 +illusion_1.5L,sr,124,49.6,velocity,upper_uy,0.19934989511966705 +illusion_1.5L,sr,124,49.6,velocity,center_ux,0.6292076706886292 +illusion_1.5L,sr,124,49.6,velocity,center_uy,0.6300756335258484 +illusion_1.5L,sr,124,49.6,velocity,lower_ux,0.8442925214767456 +illusion_1.5L,sr,124,49.6,velocity,lower_uy,0.3093332350254059 +illusion_1.5L,sr,125,50.0,velocity,upper_ux,0.9449718594551086 +illusion_1.5L,sr,125,50.0,velocity,upper_uy,0.3721570670604706 +illusion_1.5L,sr,125,50.0,velocity,center_ux,0.7044328451156616 +illusion_1.5L,sr,125,50.0,velocity,center_uy,0.6411569714546204 +illusion_1.5L,sr,125,50.0,velocity,lower_ux,0.912862241268158 +illusion_1.5L,sr,125,50.0,velocity,lower_uy,0.36460912227630615 +illusion_1.5L,sr,126,50.4,velocity,upper_ux,0.7967264652252197 +illusion_1.5L,sr,126,50.4,velocity,upper_uy,0.4162321090698242 +illusion_1.5L,sr,126,50.4,velocity,center_ux,0.7561394572257996 +illusion_1.5L,sr,126,50.4,velocity,center_uy,0.6639468669891357 +illusion_1.5L,sr,126,50.4,velocity,lower_ux,0.9848904609680176 +illusion_1.5L,sr,126,50.4,velocity,lower_uy,0.40711021423339844 +illusion_1.5L,sr,127,50.8,velocity,upper_ux,0.716469943523407 +illusion_1.5L,sr,127,50.8,velocity,upper_uy,0.37041687965393066 +illusion_1.5L,sr,127,50.8,velocity,center_ux,0.7876319885253906 +illusion_1.5L,sr,127,50.8,velocity,center_uy,0.6904484033584595 +illusion_1.5L,sr,127,50.8,velocity,lower_ux,1.06103515625 +illusion_1.5L,sr,127,50.8,velocity,lower_uy,0.43789833784103394 +illusion_1.5L,sr,128,51.2,velocity,upper_ux,0.6615233421325684 +illusion_1.5L,sr,128,51.2,velocity,upper_uy,0.2897849380970001 +illusion_1.5L,sr,128,51.2,velocity,center_ux,0.8013016581535339 +illusion_1.5L,sr,128,51.2,velocity,center_uy,0.6799041628837585 +illusion_1.5L,sr,128,51.2,velocity,lower_ux,1.1417821645736694 +illusion_1.5L,sr,128,51.2,velocity,lower_uy,0.4562506377696991 +illusion_1.5L,sr,129,51.6,velocity,upper_ux,0.6157703995704651 +illusion_1.5L,sr,129,51.6,velocity,upper_uy,0.18527057766914368 +illusion_1.5L,sr,129,51.6,velocity,center_ux,0.7936803698539734 +illusion_1.5L,sr,129,51.6,velocity,center_uy,0.5831440687179565 +illusion_1.5L,sr,129,51.6,velocity,lower_ux,1.225827693939209 +illusion_1.5L,sr,129,51.6,velocity,lower_uy,0.4589632451534271 +illusion_1.5L,sr,130,52.0,velocity,upper_ux,0.5956955552101135 +illusion_1.5L,sr,130,52.0,velocity,upper_uy,0.06427816301584244 +illusion_1.5L,sr,130,52.0,velocity,center_ux,0.7613789439201355 +illusion_1.5L,sr,130,52.0,velocity,center_uy,0.3954967260360718 +illusion_1.5L,sr,130,52.0,velocity,lower_ux,1.3069159984588623 +illusion_1.5L,sr,130,52.0,velocity,lower_uy,0.43879303336143494 +illusion_1.5L,sr,131,52.4,velocity,upper_ux,0.6218734383583069 +illusion_1.5L,sr,131,52.4,velocity,upper_uy,-0.046619754284620285 +illusion_1.5L,sr,131,52.4,velocity,center_ux,0.7016331553459167 +illusion_1.5L,sr,131,52.4,velocity,center_uy,0.1451602280139923 +illusion_1.5L,sr,131,52.4,velocity,lower_ux,1.369530200958252 +illusion_1.5L,sr,131,52.4,velocity,lower_uy,0.3830339312553406 +illusion_1.5L,sr,132,52.8,velocity,upper_ux,0.6850827932357788 +illusion_1.5L,sr,132,52.8,velocity,upper_uy,-0.13200584053993225 +illusion_1.5L,sr,132,52.8,velocity,center_ux,0.6244220733642578 +illusion_1.5L,sr,132,52.8,velocity,center_uy,-0.15451255440711975 +illusion_1.5L,sr,132,52.8,velocity,lower_ux,1.3905977010726929 +illusion_1.5L,sr,132,52.8,velocity,lower_uy,0.2770501375198364 +illusion_1.5L,sr,133,53.2,velocity,upper_ux,0.752860963344574 +illusion_1.5L,sr,133,53.2,velocity,upper_uy,-0.20918990671634674 +illusion_1.5L,sr,133,53.2,velocity,center_ux,0.570547878742218 +illusion_1.5L,sr,133,53.2,velocity,center_uy,-0.44748497009277344 +illusion_1.5L,sr,133,53.2,velocity,lower_ux,1.3485296964645386 +illusion_1.5L,sr,133,53.2,velocity,lower_uy,0.11254201084375381 +illusion_1.5L,sr,134,53.6,velocity,upper_ux,0.817226767539978 +illusion_1.5L,sr,134,53.6,velocity,upper_uy,-0.28288161754608154 +illusion_1.5L,sr,134,53.6,velocity,center_ux,0.5913773775100708 +illusion_1.5L,sr,134,53.6,velocity,center_uy,-0.6116204261779785 +illusion_1.5L,sr,134,53.6,velocity,lower_ux,1.2222955226898193 +illusion_1.5L,sr,134,53.6,velocity,lower_uy,-0.10347864031791687 +illusion_1.5L,sr,135,54.0,velocity,upper_ux,0.8840951323509216 +illusion_1.5L,sr,135,54.0,velocity,upper_uy,-0.3441644012928009 +illusion_1.5L,sr,135,54.0,velocity,center_ux,0.6676254868507385 +illusion_1.5L,sr,135,54.0,velocity,center_uy,-0.6387264728546143 +illusion_1.5L,sr,135,54.0,velocity,lower_ux,1.0259193181991577 +illusion_1.5L,sr,135,54.0,velocity,lower_uy,-0.3101302683353424 +illusion_1.5L,sr,136,54.4,velocity,upper_ux,0.9545429348945618 +illusion_1.5L,sr,136,54.4,velocity,upper_uy,-0.3920455574989319 +illusion_1.5L,sr,136,54.4,velocity,center_ux,0.7306268215179443 +illusion_1.5L,sr,136,54.4,velocity,center_uy,-0.6535810828208923 +illusion_1.5L,sr,136,54.4,velocity,lower_ux,0.8449613451957703 +illusion_1.5L,sr,136,54.4,velocity,lower_uy,-0.4103676676750183 +illusion_1.5L,sr,137,54.8,velocity,upper_ux,1.0287724733352661 +illusion_1.5L,sr,137,54.8,velocity,upper_uy,-0.4279015362262726 +illusion_1.5L,sr,137,54.8,velocity,center_ux,0.7692804932594299 +illusion_1.5L,sr,137,54.8,velocity,center_uy,-0.6820139288902283 +illusion_1.5L,sr,137,54.8,velocity,lower_ux,0.7374834418296814 +illusion_1.5L,sr,137,54.8,velocity,lower_uy,-0.3944331109523773 +illusion_1.5L,sr,138,55.2,velocity,upper_ux,1.1075636148452759 +illusion_1.5L,sr,138,55.2,velocity,upper_uy,-0.45169493556022644 +illusion_1.5L,sr,138,55.2,velocity,center_ux,0.7898496389389038 +illusion_1.5L,sr,138,55.2,velocity,center_uy,-0.6920215487480164 +illusion_1.5L,sr,138,55.2,velocity,lower_ux,0.6761041283607483 +illusion_1.5L,sr,138,55.2,velocity,lower_uy,-0.3241036534309387 +illusion_1.5L,sr,139,55.6,velocity,upper_ux,1.190641164779663 +illusion_1.5L,sr,139,55.6,velocity,upper_uy,-0.4612562954425812 +illusion_1.5L,sr,139,55.6,velocity,center_ux,0.7910485863685608 +illusion_1.5L,sr,139,55.6,velocity,center_uy,-0.6335712671279907 +illusion_1.5L,sr,139,55.6,velocity,lower_ux,0.6275331377983093 +illusion_1.5L,sr,139,55.6,velocity,lower_uy,-0.22866390645503998 +illusion_1.5L,sr,140,56.0,velocity,upper_ux,1.2740581035614014 +illusion_1.5L,sr,140,56.0,velocity,upper_uy,-0.45114976167678833 +illusion_1.5L,sr,140,56.0,velocity,center_ux,0.7697402834892273 +illusion_1.5L,sr,140,56.0,velocity,center_uy,-0.4792509377002716 +illusion_1.5L,sr,140,56.0,velocity,lower_ux,0.5960848927497864 +illusion_1.5L,sr,140,56.0,velocity,lower_uy,-0.11275316029787064 +illusion_1.5L,sr,141,56.4,velocity,upper_ux,1.3461525440216064 +illusion_1.5L,sr,141,56.4,velocity,upper_uy,-0.41108816862106323 +illusion_1.5L,sr,141,56.4,velocity,center_ux,0.7224979400634766 +illusion_1.5L,sr,141,56.4,velocity,center_uy,-0.2527255117893219 +illusion_1.5L,sr,141,56.4,velocity,lower_ux,0.6038830876350403 +illusion_1.5L,sr,141,56.4,velocity,lower_uy,0.00431776000186801 +illusion_1.5L,sr,142,56.8,velocity,upper_ux,1.3861796855926514 +illusion_1.5L,sr,142,56.8,velocity,upper_uy,-0.3271094858646393 +illusion_1.5L,sr,142,56.8,velocity,center_ux,0.6504209637641907 +illusion_1.5L,sr,142,56.8,velocity,center_uy,0.026993749663233757 +illusion_1.5L,sr,142,56.8,velocity,lower_ux,0.6564229726791382 +illusion_1.5L,sr,142,56.8,velocity,lower_uy,0.0979171171784401 +illusion_1.5L,sr,143,57.2,velocity,upper_ux,1.372666358947754 +illusion_1.5L,sr,143,57.2,velocity,upper_uy,-0.18913988769054413 +illusion_1.5L,sr,143,57.2,velocity,center_ux,0.5799128413200378 +illusion_1.5L,sr,143,57.2,velocity,center_uy,0.3328480124473572 +illusion_1.5L,sr,143,57.2,velocity,lower_ux,0.7249259948730469 +illusion_1.5L,sr,143,57.2,velocity,lower_uy,0.17559951543807983 +illusion_1.5L,sr,144,57.6,velocity,upper_ux,1.2864792346954346 +illusion_1.5L,sr,144,57.6,velocity,upper_uy,0.0035830317065119743 +illusion_1.5L,sr,144,57.6,velocity,center_ux,0.564714252948761 +illusion_1.5L,sr,144,57.6,velocity,center_uy,0.5636506080627441 +illusion_1.5L,sr,144,57.6,velocity,lower_ux,0.7891882061958313 +illusion_1.5L,sr,144,57.6,velocity,lower_uy,0.2520560622215271 +illusion_1.5L,sr,145,58.0,velocity,upper_ux,1.1169394254684448 +illusion_1.5L,sr,145,58.0,velocity,upper_uy,0.22178439795970917 +illusion_1.5L,sr,145,58.0,velocity,center_ux,0.6265422701835632 +illusion_1.5L,sr,145,58.0,velocity,center_uy,0.6349838376045227 +illusion_1.5L,sr,145,58.0,velocity,lower_ux,0.8541204333305359 +illusion_1.5L,sr,145,58.0,velocity,lower_uy,0.31944653391838074 +illusion_1.5L,sr,146,58.4,velocity,upper_ux,0.9170703291893005 +illusion_1.5L,sr,146,58.4,velocity,upper_uy,0.376997709274292 +illusion_1.5L,sr,146,58.4,velocity,center_ux,0.7009750604629517 +illusion_1.5L,sr,146,58.4,velocity,center_uy,0.6440622210502625 +illusion_1.5L,sr,146,58.4,velocity,lower_ux,0.9227858781814575 +illusion_1.5L,sr,146,58.4,velocity,lower_uy,0.3731898069381714 +illusion_1.5L,sr,147,58.8,velocity,upper_ux,0.7730438709259033 +illusion_1.5L,sr,147,58.8,velocity,upper_uy,0.40824049711227417 +illusion_1.5L,sr,147,58.8,velocity,center_ux,0.7491283416748047 +illusion_1.5L,sr,147,58.8,velocity,center_uy,0.6689710021018982 +illusion_1.5L,sr,147,58.8,velocity,lower_ux,0.9951355457305908 +illusion_1.5L,sr,147,58.8,velocity,lower_uy,0.41444283723831177 +illusion_1.5L,sr,148,59.2,velocity,upper_ux,0.6951185464859009 +illusion_1.5L,sr,148,59.2,velocity,upper_uy,0.356006383895874 +illusion_1.5L,sr,148,59.2,velocity,center_ux,0.7768282890319824 +illusion_1.5L,sr,148,59.2,velocity,center_uy,0.6918894052505493 +illusion_1.5L,sr,148,59.2,velocity,lower_ux,1.0716300010681152 +illusion_1.5L,sr,148,59.2,velocity,lower_uy,0.4438566565513611 +illusion_1.5L,sr,149,59.6,velocity,upper_ux,0.6429731249809265 +illusion_1.5L,sr,149,59.6,velocity,upper_uy,0.2705896198749542 +illusion_1.5L,sr,149,59.6,velocity,center_ux,0.786132276058197 +illusion_1.5L,sr,149,59.6,velocity,center_uy,0.6693341135978699 +illusion_1.5L,sr,149,59.6,velocity,lower_ux,1.152754783630371 +illusion_1.5L,sr,149,59.6,velocity,lower_uy,0.46020618081092834 +illusion_1.5L,sr,150,60.0,velocity,upper_ux,0.6033687591552734 +illusion_1.5L,sr,150,60.0,velocity,upper_uy,0.1631941795349121 +illusion_1.5L,sr,150,60.0,velocity,center_ux,0.7747192978858948 +illusion_1.5L,sr,150,60.0,velocity,center_uy,0.5568492412567139 +illusion_1.5L,sr,150,60.0,velocity,lower_ux,1.2366533279418945 +illusion_1.5L,sr,150,60.0,velocity,lower_uy,0.4596155285835266 +illusion_1.5L,sr,151,60.4,velocity,upper_ux,0.593289852142334 +illusion_1.5L,sr,151,60.4,velocity,upper_uy,0.04476981610059738 +illusion_1.5L,sr,151,60.4,velocity,center_ux,0.7398797869682312 +illusion_1.5L,sr,151,60.4,velocity,center_uy,0.3588618338108063 +illusion_1.5L,sr,151,60.4,velocity,lower_ux,1.3155043125152588 +illusion_1.5L,sr,151,60.4,velocity,lower_uy,0.43413233757019043 +illusion_1.5L,sr,152,60.8,velocity,upper_ux,0.6292189955711365 +illusion_1.5L,sr,152,60.8,velocity,upper_uy,-0.05865547060966492 +illusion_1.5L,sr,152,60.8,velocity,center_ux,0.6784409284591675 +illusion_1.5L,sr,152,60.8,velocity,center_uy,0.1032218262553215 +illusion_1.5L,sr,152,60.8,velocity,lower_ux,1.3721611499786377 +illusion_1.5L,sr,152,60.8,velocity,lower_uy,0.37122777104377747 +illusion_1.5L,sr,153,61.2,velocity,upper_ux,0.6950536370277405 +illusion_1.5L,sr,153,61.2,velocity,upper_uy,-0.13945604860782623 +illusion_1.5L,sr,153,61.2,velocity,center_ux,0.6020336747169495 +illusion_1.5L,sr,153,61.2,velocity,center_uy,-0.19590607285499573 +illusion_1.5L,sr,153,61.2,velocity,lower_ux,1.384617567062378 +illusion_1.5L,sr,153,61.2,velocity,lower_uy,0.25904056429862976 +illusion_1.5L,sr,154,61.6,velocity,upper_ux,0.7605715990066528 +illusion_1.5L,sr,154,61.6,velocity,upper_uy,-0.21646608412265778 +illusion_1.5L,sr,154,61.6,velocity,center_ux,0.5541049838066101 +illusion_1.5L,sr,154,61.6,velocity,center_uy,-0.4757685959339142 +illusion_1.5L,sr,154,61.6,velocity,lower_ux,1.3350632190704346 +illusion_1.5L,sr,154,61.6,velocity,lower_uy,0.09329581260681152 +illusion_1.5L,sr,155,62.0,velocity,upper_ux,0.8235057592391968 +illusion_1.5L,sr,155,62.0,velocity,upper_uy,-0.2894814908504486 +illusion_1.5L,sr,155,62.0,velocity,center_ux,0.5837817192077637 +illusion_1.5L,sr,155,62.0,velocity,center_uy,-0.6190942525863647 +illusion_1.5L,sr,155,62.0,velocity,lower_ux,1.2056115865707397 +illusion_1.5L,sr,155,62.0,velocity,lower_uy,-0.11642640084028244 +illusion_1.5L,sr,156,62.4,velocity,upper_ux,0.8899457454681396 +illusion_1.5L,sr,156,62.4,velocity,upper_uy,-0.3497937023639679 +illusion_1.5L,sr,156,62.4,velocity,center_ux,0.662703275680542 +illusion_1.5L,sr,156,62.4,velocity,center_uy,-0.6389849781990051 +illusion_1.5L,sr,156,62.4,velocity,lower_ux,1.0101035833358765 +illusion_1.5L,sr,156,62.4,velocity,lower_uy,-0.31216445565223694 +illusion_1.5L,sr,157,62.8,velocity,upper_ux,0.9603520035743713 +illusion_1.5L,sr,157,62.8,velocity,upper_uy,-0.3969968855381012 +illusion_1.5L,sr,157,62.8,velocity,center_ux,0.7238948345184326 +illusion_1.5L,sr,157,62.8,velocity,center_uy,-0.6555038690567017 +illusion_1.5L,sr,157,62.8,velocity,lower_ux,0.8298418521881104 +illusion_1.5L,sr,157,62.8,velocity,lower_uy,-0.404622346162796 +illusion_1.5L,sr,158,63.2,velocity,upper_ux,1.0347384214401245 +illusion_1.5L,sr,158,63.2,velocity,upper_uy,-0.43226417899131775 +illusion_1.5L,sr,158,63.2,velocity,center_ux,0.7604061365127563 +illusion_1.5L,sr,158,63.2,velocity,center_uy,-0.6833441257476807 +illusion_1.5L,sr,158,63.2,velocity,lower_ux,0.7218186855316162 +illusion_1.5L,sr,158,63.2,velocity,lower_uy,-0.38531070947647095 +illusion_1.5L,sr,159,63.6,velocity,upper_ux,1.1135787963867188 +illusion_1.5L,sr,159,63.6,velocity,upper_uy,-0.4552566111087799 +illusion_1.5L,sr,159,63.6,velocity,center_ux,0.7781083583831787 +illusion_1.5L,sr,159,63.6,velocity,center_uy,-0.6882357001304626 +illusion_1.5L,sr,159,63.6,velocity,lower_ux,0.6610271334648132 +illusion_1.5L,sr,159,63.6,velocity,lower_uy,-0.3122977018356323 +illusion_1.5L,sr,160,64.0,velocity,upper_ux,1.1964552402496338 +illusion_1.5L,sr,160,64.0,velocity,upper_uy,-0.46338751912117004 +illusion_1.5L,sr,160,64.0,velocity,center_ux,0.7762963771820068 +illusion_1.5L,sr,160,64.0,velocity,center_uy,-0.6210381388664246 +illusion_1.5L,sr,160,64.0,velocity,lower_ux,0.6157161593437195 +illusion_1.5L,sr,160,64.0,velocity,lower_uy,-0.21468402445316315 +illusion_1.5L,sr,161,64.4,velocity,upper_ux,1.2789005041122437 +illusion_1.5L,sr,161,64.4,velocity,upper_uy,-0.4507857859134674 +illusion_1.5L,sr,161,64.4,velocity,center_ux,0.7530938982963562 +illusion_1.5L,sr,161,64.4,velocity,center_uy,-0.4596984386444092 +illusion_1.5L,sr,161,64.4,velocity,lower_ux,0.5903177857398987 +illusion_1.5L,sr,161,64.4,velocity,lower_uy,-0.09959588199853897 +illusion_1.5L,sr,162,64.8,velocity,upper_ux,1.3482850790023804 +illusion_1.5L,sr,162,64.8,velocity,upper_uy,-0.40699130296707153 +illusion_1.5L,sr,162,64.8,velocity,center_ux,0.7051566243171692 +illusion_1.5L,sr,162,64.8,velocity,center_uy,-0.23002155125141144 +illusion_1.5L,sr,162,64.8,velocity,lower_ux,0.6054075956344604 +illusion_1.5L,sr,162,64.8,velocity,lower_uy,0.012684984132647514 +illusion_1.5L,sr,163,65.2,velocity,upper_ux,1.3837594985961914 +illusion_1.5L,sr,163,65.2,velocity,upper_uy,-0.3193846344947815 +illusion_1.5L,sr,163,65.2,velocity,center_ux,0.6333577036857605 +illusion_1.5L,sr,163,65.2,velocity,center_uy,0.049520816653966904 +illusion_1.5L,sr,163,65.2,velocity,lower_ux,0.6620226502418518 +illusion_1.5L,sr,163,65.2,velocity,lower_uy,0.10138215124607086 +illusion_1.5L,sr,164,65.6,velocity,upper_ux,1.3660069704055786 +illusion_1.5L,sr,164,65.6,velocity,upper_uy,-0.18065758049488068 +illusion_1.5L,sr,164,65.6,velocity,center_ux,0.5645672678947449 +illusion_1.5L,sr,164,65.6,velocity,center_uy,0.35004088282585144 +illusion_1.5L,sr,164,65.6,velocity,lower_ux,0.7297573089599609 +illusion_1.5L,sr,164,65.6,velocity,lower_uy,0.17798280715942383 +illusion_1.5L,sr,165,66.0,velocity,upper_ux,1.2789098024368286 +illusion_1.5L,sr,165,66.0,velocity,upper_uy,0.007663608994334936 +illusion_1.5L,sr,165,66.0,velocity,center_ux,0.5526919364929199 +illusion_1.5L,sr,165,66.0,velocity,center_uy,0.5709643363952637 +illusion_1.5L,sr,165,66.0,velocity,lower_ux,0.7922396063804626 +illusion_1.5L,sr,165,66.0,velocity,lower_uy,0.2545093595981598 +illusion_1.5L,sr,166,66.4,velocity,upper_ux,1.1118882894515991 +illusion_1.5L,sr,166,66.4,velocity,upper_uy,0.21860291063785553 +illusion_1.5L,sr,166,66.4,velocity,center_ux,0.6173872947692871 +illusion_1.5L,sr,166,66.4,velocity,center_uy,0.6356794238090515 +illusion_1.5L,sr,166,66.4,velocity,lower_ux,0.8560909032821655 +illusion_1.5L,sr,166,66.4,velocity,lower_uy,0.32172244787216187 +illusion_1.5L,sr,167,66.8,velocity,upper_ux,0.9122534394264221 +illusion_1.5L,sr,167,66.8,velocity,upper_uy,0.37081995606422424 +illusion_1.5L,sr,167,66.8,velocity,center_ux,0.6923526525497437 +illusion_1.5L,sr,167,66.8,velocity,center_uy,0.6444305181503296 +illusion_1.5L,sr,167,66.8,velocity,lower_ux,0.9242801070213318 +illusion_1.5L,sr,167,66.8,velocity,lower_uy,0.3754502832889557 +illusion_1.5L,sr,168,67.2,velocity,upper_ux,0.7644780874252319 +illusion_1.5L,sr,168,67.2,velocity,upper_uy,0.4035065472126007 +illusion_1.5L,sr,168,67.2,velocity,center_ux,0.7400673031806946 +illusion_1.5L,sr,168,67.2,velocity,center_uy,0.6696129441261292 +illusion_1.5L,sr,168,67.2,velocity,lower_ux,0.9965438842773438 +illusion_1.5L,sr,168,67.2,velocity,lower_uy,0.41682320833206177 +illusion_1.5L,sr,169,67.6,velocity,upper_ux,0.684268057346344 +illusion_1.5L,sr,169,67.6,velocity,upper_uy,0.351502388715744 +illusion_1.5L,sr,169,67.6,velocity,center_ux,0.766767144203186 +illusion_1.5L,sr,169,67.6,velocity,center_uy,0.6912195682525635 +illusion_1.5L,sr,169,67.6,velocity,lower_ux,1.0731168985366821 +illusion_1.5L,sr,169,67.6,velocity,lower_uy,0.44633105397224426 +illusion_1.5L,sr,170,68.0,velocity,upper_ux,0.6332000494003296 +illusion_1.5L,sr,170,68.0,velocity,upper_uy,0.2649414539337158 +illusion_1.5L,sr,170,68.0,velocity,center_ux,0.7745233774185181 +illusion_1.5L,sr,170,68.0,velocity,center_uy,0.6658273935317993 +illusion_1.5L,sr,170,68.0,velocity,lower_ux,1.1541179418563843 +illusion_1.5L,sr,170,68.0,velocity,lower_uy,0.4625278115272522 +illusion_1.5L,sr,171,68.4,velocity,upper_ux,0.5965766310691833 +illusion_1.5L,sr,171,68.4,velocity,upper_uy,0.15760304033756256 +illusion_1.5L,sr,171,68.4,velocity,center_ux,0.7620038390159607 +illusion_1.5L,sr,171,68.4,velocity,center_uy,0.5508148074150085 +illusion_1.5L,sr,171,68.4,velocity,lower_ux,1.2375420331954956 +illusion_1.5L,sr,171,68.4,velocity,lower_uy,0.46131134033203125 +illusion_1.5L,sr,172,68.8,velocity,upper_ux,0.590204119682312 +illusion_1.5L,sr,172,68.8,velocity,upper_uy,0.04140114784240723 +illusion_1.5L,sr,172,68.8,velocity,center_ux,0.7273284196853638 +illusion_1.5L,sr,172,68.8,velocity,center_uy,0.3519711196422577 +illusion_1.5L,sr,172,68.8,velocity,lower_ux,1.3153443336486816 +illusion_1.5L,sr,172,68.8,velocity,lower_uy,0.43453943729400635 +illusion_1.5L,sr,173,69.2,velocity,upper_ux,0.6290777325630188 +illusion_1.5L,sr,173,69.2,velocity,upper_uy,-0.0588504821062088 +illusion_1.5L,sr,173,69.2,velocity,center_ux,0.6670553088188171 +illusion_1.5L,sr,173,69.2,velocity,center_uy,0.09754357486963272 +illusion_1.5L,sr,173,69.2,velocity,lower_ux,1.3703004121780396 +illusion_1.5L,sr,173,69.2,velocity,lower_uy,0.3702637553215027 +illusion_1.5L,sr,174,69.6,velocity,upper_ux,0.6956362128257751 +illusion_1.5L,sr,174,69.6,velocity,upper_uy,-0.13796424865722656 +illusion_1.5L,sr,174,69.6,velocity,center_ux,0.5916491150856018 +illusion_1.5L,sr,174,69.6,velocity,center_uy,-0.1982395499944687 +illusion_1.5L,sr,174,69.6,velocity,lower_ux,1.3812370300292969 +illusion_1.5L,sr,174,69.6,velocity,lower_uy,0.25817862153053284 +illusion_1.5L,sr,175,70.0,velocity,upper_ux,0.7603727579116821 +illusion_1.5L,sr,175,70.0,velocity,upper_uy,-0.21483904123306274 +illusion_1.5L,sr,175,70.0,velocity,center_ux,0.5433450937271118 +illusion_1.5L,sr,175,70.0,velocity,center_uy,-0.47526922821998596 +illusion_1.5L,sr,175,70.0,velocity,lower_ux,1.3325486183166504 +illusion_1.5L,sr,175,70.0,velocity,lower_uy,0.0960303246974945 +illusion_1.5L,sr,176,70.4,velocity,upper_ux,0.8221843838691711 +illusion_1.5L,sr,176,70.4,velocity,upper_uy,-0.2882556915283203 +illusion_1.5L,sr,176,70.4,velocity,center_ux,0.571943998336792 +illusion_1.5L,sr,176,70.4,velocity,center_uy,-0.6191863417625427 +illusion_1.5L,sr,176,70.4,velocity,lower_ux,1.2079277038574219 +illusion_1.5L,sr,176,70.4,velocity,lower_uy,-0.10725750029087067 +illusion_1.5L,sr,177,70.8,velocity,upper_ux,0.8877256512641907 +illusion_1.5L,sr,177,70.8,velocity,upper_uy,-0.3491523265838623 +illusion_1.5L,sr,177,70.8,velocity,center_ux,0.6516548991203308 +illusion_1.5L,sr,177,70.8,velocity,center_uy,-0.6392903923988342 +illusion_1.5L,sr,177,70.8,velocity,lower_ux,1.0159661769866943 +illusion_1.5L,sr,177,70.8,velocity,lower_uy,-0.30083736777305603 +illusion_1.5L,sr,178,71.2,velocity,upper_ux,0.9577066898345947 +illusion_1.5L,sr,178,71.2,velocity,upper_uy,-0.3970150053501129 +illusion_1.5L,sr,178,71.2,velocity,center_ux,0.7141115069389343 +illusion_1.5L,sr,178,71.2,velocity,center_uy,-0.6551091074943542 +illusion_1.5L,sr,178,71.2,velocity,lower_ux,0.8316105604171753 +illusion_1.5L,sr,178,71.2,velocity,lower_uy,-0.39884236454963684 +illusion_1.5L,sr,179,71.6,velocity,upper_ux,1.0319855213165283 +illusion_1.5L,sr,179,71.6,velocity,upper_uy,-0.4329574704170227 +illusion_1.5L,sr,179,71.6,velocity,center_ux,0.7510918974876404 +illusion_1.5L,sr,179,71.6,velocity,center_uy,-0.6826343536376953 +illusion_1.5L,sr,179,71.6,velocity,lower_ux,0.7173920273780823 +illusion_1.5L,sr,179,71.6,velocity,lower_uy,-0.3845837414264679 +illusion_1.5L,sr,180,72.0,velocity,upper_ux,1.1107990741729736 +illusion_1.5L,sr,180,72.0,velocity,upper_uy,-0.4565716087818146 +illusion_1.5L,sr,180,72.0,velocity,center_ux,0.768782377243042 +illusion_1.5L,sr,180,72.0,velocity,center_uy,-0.68788743019104 +illusion_1.5L,sr,180,72.0,velocity,lower_ux,0.6549320220947266 +illusion_1.5L,sr,180,72.0,velocity,lower_uy,-0.31251659989356995 +illusion_1.5L,sr,181,72.4,velocity,upper_ux,1.193436861038208 +illusion_1.5L,sr,181,72.4,velocity,upper_uy,-0.4652458131313324 +illusion_1.5L,sr,181,72.4,velocity,center_ux,0.7668598890304565 +illusion_1.5L,sr,181,72.4,velocity,center_uy,-0.6227008700370789 +illusion_1.5L,sr,181,72.4,velocity,lower_ux,0.6108036041259766 +illusion_1.5L,sr,181,72.4,velocity,lower_uy,-0.21525812149047852 +illusion_1.5L,sr,182,72.8,velocity,upper_ux,1.2754840850830078 +illusion_1.5L,sr,182,72.8,velocity,upper_uy,-0.4530389904975891 +illusion_1.5L,sr,182,72.8,velocity,center_ux,0.7442308068275452 +illusion_1.5L,sr,182,72.8,velocity,center_uy,-0.464034765958786 +illusion_1.5L,sr,182,72.8,velocity,lower_ux,0.5866484642028809 +illusion_1.5L,sr,182,72.8,velocity,lower_uy,-0.10150516778230667 +illusion_1.5L,sr,183,73.2,velocity,upper_ux,1.3446787595748901 +illusion_1.5L,sr,183,73.2,velocity,upper_uy,-0.40983060002326965 +illusion_1.5L,sr,183,73.2,velocity,center_ux,0.6980257630348206 +illusion_1.5L,sr,183,73.2,velocity,center_uy,-0.23710593581199646 +illusion_1.5L,sr,183,73.2,velocity,lower_ux,0.6021758317947388 +illusion_1.5L,sr,183,73.2,velocity,lower_uy,0.009211096912622452 +illusion_1.5L,sr,184,73.6,velocity,upper_ux,1.38079833984375 +illusion_1.5L,sr,184,73.6,velocity,upper_uy,-0.32374340295791626 +illusion_1.5L,sr,184,73.6,velocity,center_ux,0.6280567049980164 +illusion_1.5L,sr,184,73.6,velocity,center_uy,0.038448501378297806 +illusion_1.5L,sr,184,73.6,velocity,lower_ux,0.6588850617408752 +illusion_1.5L,sr,184,73.6,velocity,lower_uy,0.0969410240650177 +illusion_1.5L,sr,185,74.0,velocity,upper_ux,1.3654322624206543 +illusion_1.5L,sr,185,74.0,velocity,upper_uy,-0.18867500126361847 +illusion_1.5L,sr,185,74.0,velocity,center_ux,0.5584945678710938 +illusion_1.5L,sr,185,74.0,velocity,center_uy,0.3367553949356079 +illusion_1.5L,sr,185,74.0,velocity,lower_ux,0.7267321944236755 +illusion_1.5L,sr,185,74.0,velocity,lower_uy,0.1729489117860794 +illusion_1.5L,sr,186,74.4,velocity,upper_ux,1.2844548225402832 +illusion_1.5L,sr,186,74.4,velocity,upper_uy,-0.006712016649544239 +illusion_1.5L,sr,186,74.4,velocity,center_ux,0.542026698589325 +illusion_1.5L,sr,186,74.4,velocity,center_uy,0.5635943412780762 +illusion_1.5L,sr,186,74.4,velocity,lower_ux,0.7887140512466431 +illusion_1.5L,sr,186,74.4,velocity,lower_uy,0.2497839480638504 +illusion_1.5L,sr,187,74.8,velocity,upper_ux,1.1253082752227783 +illusion_1.5L,sr,187,74.8,velocity,upper_uy,0.20005351305007935 +illusion_1.5L,sr,187,74.8,velocity,center_ux,0.6038303971290588 +illusion_1.5L,sr,187,74.8,velocity,center_uy,0.6355859637260437 +illusion_1.5L,sr,187,74.8,velocity,lower_ux,0.8515651822090149 +illusion_1.5L,sr,187,74.8,velocity,lower_uy,0.3180263042449951 +illusion_1.5L,sr,188,75.2,velocity,upper_ux,0.9254828095436096 +illusion_1.5L,sr,188,75.2,velocity,upper_uy,0.35836708545684814 +illusion_1.5L,sr,188,75.2,velocity,center_ux,0.6808152794837952 +illusion_1.5L,sr,188,75.2,velocity,center_uy,0.6437529921531677 +illusion_1.5L,sr,188,75.2,velocity,lower_ux,0.9188873767852783 +illusion_1.5L,sr,188,75.2,velocity,lower_uy,0.3728770315647125 +illusion_1.5L,sr,189,75.6,velocity,upper_ux,0.7689818739891052 +illusion_1.5L,sr,189,75.6,velocity,upper_uy,0.4018012285232544 +illusion_1.5L,sr,189,75.6,velocity,center_ux,0.7304219007492065 +illusion_1.5L,sr,189,75.6,velocity,center_uy,0.667819082736969 +illusion_1.5L,sr,189,75.6,velocity,lower_ux,0.9906666278839111 +illusion_1.5L,sr,189,75.6,velocity,lower_uy,0.4153389632701874 +illusion_1.5L,sr,190,76.0,velocity,upper_ux,0.6825854778289795 +illusion_1.5L,sr,190,76.0,velocity,upper_uy,0.35489627718925476 +illusion_1.5L,sr,190,76.0,velocity,center_ux,0.7582470178604126 +illusion_1.5L,sr,190,76.0,velocity,center_uy,0.6902284026145935 +illusion_1.5L,sr,190,76.0,velocity,lower_ux,1.0670017004013062 +illusion_1.5L,sr,190,76.0,velocity,lower_uy,0.44592171907424927 +illusion_1.5L,sr,191,76.4,velocity,upper_ux,0.6308030486106873 +illusion_1.5L,sr,191,76.4,velocity,upper_uy,0.26971015334129333 +illusion_1.5L,sr,191,76.4,velocity,center_ux,0.7670018672943115 +illusion_1.5L,sr,191,76.4,velocity,center_uy,0.6690083146095276 +illusion_1.5L,sr,191,76.4,velocity,lower_ux,1.1478333473205566 +illusion_1.5L,sr,191,76.4,velocity,lower_uy,0.463287889957428 +illusion_1.5L,sr,192,76.8,velocity,upper_ux,0.5945128798484802 +illusion_1.5L,sr,192,76.8,velocity,upper_uy,0.16380001604557037 +illusion_1.5L,sr,192,76.8,velocity,center_ux,0.7556552886962891 +illusion_1.5L,sr,192,76.8,velocity,center_uy,0.5605562925338745 +illusion_1.5L,sr,192,76.8,velocity,lower_ux,1.2310594320297241 +illusion_1.5L,sr,192,76.8,velocity,lower_uy,0.46340715885162354 +illusion_1.5L,sr,193,77.2,velocity,upper_ux,0.5869465470314026 +illusion_1.5L,sr,193,77.2,velocity,upper_uy,0.048779524862766266 +illusion_1.5L,sr,193,77.2,velocity,center_ux,0.7229114770889282 +illusion_1.5L,sr,193,77.2,velocity,center_uy,0.36703938245773315 +illusion_1.5L,sr,193,77.2,velocity,lower_ux,1.3090813159942627 +illusion_1.5L,sr,193,77.2,velocity,lower_uy,0.43847110867500305 +illusion_1.5L,sr,194,77.6,velocity,upper_ux,0.6238410472869873 +illusion_1.5L,sr,194,77.6,velocity,upper_uy,-0.05156445503234863 +illusion_1.5L,sr,194,77.6,velocity,center_ux,0.665302038192749 +illusion_1.5L,sr,194,77.6,velocity,center_uy,0.11759524047374725 +illusion_1.5L,sr,194,77.6,velocity,lower_ux,1.365568995475769 +illusion_1.5L,sr,194,77.6,velocity,lower_uy,0.3769962787628174 +illusion_1.5L,sr,195,78.0,velocity,upper_ux,0.6899590492248535 +illusion_1.5L,sr,195,78.0,velocity,upper_uy,-0.13055884838104248 +illusion_1.5L,sr,195,78.0,velocity,center_ux,0.5907028913497925 +illusion_1.5L,sr,195,78.0,velocity,center_uy,-0.173639714717865 +illusion_1.5L,sr,195,78.0,velocity,lower_ux,1.3799742460250854 +illusion_1.5L,sr,195,78.0,velocity,lower_uy,0.26922065019607544 +illusion_1.5L,sr,196,78.4,velocity,upper_ux,0.7549659609794617 +illusion_1.5L,sr,196,78.4,velocity,upper_uy,-0.20712244510650635 +illusion_1.5L,sr,196,78.4,velocity,center_ux,0.5377510190010071 +illusion_1.5L,sr,196,78.4,velocity,center_uy,-0.45469531416893005 +illusion_1.5L,sr,196,78.4,velocity,lower_ux,1.3375455141067505 +illusion_1.5L,sr,196,78.4,velocity,lower_uy,0.1133960410952568 +illusion_1.5L,sr,197,78.8,velocity,upper_ux,0.8161636590957642 +illusion_1.5L,sr,197,78.8,velocity,upper_uy,-0.2815362811088562 +illusion_1.5L,sr,197,78.8,velocity,center_ux,0.5585052371025085 +illusion_1.5L,sr,197,78.8,velocity,center_uy,-0.6132955551147461 +illusion_1.5L,sr,197,78.8,velocity,lower_ux,1.2232334613800049 +illusion_1.5L,sr,197,78.8,velocity,lower_uy,-0.0831986740231514 +illusion_1.5L,sr,198,79.2,velocity,upper_ux,0.880686342716217 +illusion_1.5L,sr,198,79.2,velocity,upper_uy,-0.34397369623184204 +illusion_1.5L,sr,198,79.2,velocity,center_ux,0.6374139189720154 +illusion_1.5L,sr,198,79.2,velocity,center_uy,-0.6391062140464783 +illusion_1.5L,sr,198,79.2,velocity,lower_ux,1.0379745960235596 +illusion_1.5L,sr,198,79.2,velocity,lower_uy,-0.27880969643592834 +illusion_1.5L,sr,199,79.6,velocity,upper_ux,0.9497557282447815 +illusion_1.5L,sr,199,79.6,velocity,upper_uy,-0.39331546425819397 +illusion_1.5L,sr,199,79.6,velocity,center_ux,0.7030993700027466 +illusion_1.5L,sr,199,79.6,velocity,center_uy,-0.6526384949684143 +illusion_1.5L,sr,199,79.6,velocity,lower_ux,0.8473325371742249 +illusion_1.5L,sr,199,79.6,velocity,lower_uy,-0.39035743474960327 +illusion_1.5L,sr,200,80.0,velocity,upper_ux,1.023402452468872 +illusion_1.5L,sr,200,80.0,velocity,upper_uy,-0.4306740164756775 +illusion_1.5L,sr,200,80.0,velocity,center_ux,0.7421496510505676 +illusion_1.5L,sr,200,80.0,velocity,center_uy,-0.6799226999282837 +illusion_1.5L,sr,200,80.0,velocity,lower_ux,0.7222247123718262 +illusion_1.5L,sr,200,80.0,velocity,lower_uy,-0.3877274692058563 +illusion_1.5L,sr,201,80.4,velocity,upper_ux,1.1018120050430298 +illusion_1.5L,sr,201,80.4,velocity,upper_uy,-0.45581844449043274 +illusion_1.5L,sr,201,80.4,velocity,center_ux,0.761552631855011 +illusion_1.5L,sr,201,80.4,velocity,center_uy,-0.6889951825141907 +illusion_1.5L,sr,201,80.4,velocity,lower_ux,0.6552283763885498 +illusion_1.5L,sr,201,80.4,velocity,lower_uy,-0.3197958469390869 +illusion_1.5L,sr,202,80.8,velocity,upper_ux,1.1842361688613892 +illusion_1.5L,sr,202,80.8,velocity,upper_uy,-0.46629956364631653 +illusion_1.5L,sr,202,80.8,velocity,center_ux,0.7615225315093994 +illusion_1.5L,sr,202,80.8,velocity,center_uy,-0.6327240467071533 +illusion_1.5L,sr,202,80.8,velocity,lower_ux,0.6107299327850342 +illusion_1.5L,sr,202,80.8,velocity,lower_uy,-0.22455672919750214 +illusion_1.5L,sr,203,81.2,velocity,upper_ux,1.2665091753005981 +illusion_1.5L,sr,203,81.2,velocity,upper_uy,-0.45655304193496704 +illusion_1.5L,sr,203,81.2,velocity,center_ux,0.7411318421363831 +illusion_1.5L,sr,203,81.2,velocity,center_uy,-0.48337608575820923 +illusion_1.5L,sr,203,81.2,velocity,lower_ux,0.5851686596870422 +illusion_1.5L,sr,203,81.2,velocity,lower_uy,-0.11256255954504013 +illusion_1.5L,sr,204,81.6,velocity,upper_ux,1.3372584581375122 +illusion_1.5L,sr,204,81.6,velocity,upper_uy,-0.41691941022872925 +illusion_1.5L,sr,204,81.6,velocity,center_ux,0.698006272315979 +illusion_1.5L,sr,204,81.6,velocity,center_uy,-0.2629845142364502 +illusion_1.5L,sr,204,81.6,velocity,lower_ux,0.5970668196678162 +illusion_1.5L,sr,204,81.6,velocity,lower_uy,-0.0016465699300169945 +illusion_1.5L,sr,205,82.0,velocity,upper_ux,1.3772196769714355 +illusion_1.5L,sr,205,82.0,velocity,upper_uy,-0.3359126150608063 +illusion_1.5L,sr,205,82.0,velocity,center_ux,0.6306563019752502 +illusion_1.5L,sr,205,82.0,velocity,center_uy,0.00610470911487937 +illusion_1.5L,sr,205,82.0,velocity,lower_ux,0.6510540246963501 +illusion_1.5L,sr,205,82.0,velocity,lower_uy,0.08728744834661484 +illusion_1.5L,sr,206,82.4,velocity,upper_ux,1.3681800365447998 +illusion_1.5L,sr,206,82.4,velocity,upper_uy,-0.20734895765781403 +illusion_1.5L,sr,206,82.4,velocity,center_ux,0.5589991211891174 +illusion_1.5L,sr,206,82.4,velocity,center_uy,0.3030013144016266 +illusion_1.5L,sr,206,82.4,velocity,lower_ux,0.719124436378479 +illusion_1.5L,sr,206,82.4,velocity,lower_uy,0.16295738518238068 +illusion_1.5L,sr,207,82.8,velocity,upper_ux,1.2973427772521973 +illusion_1.5L,sr,207,82.8,velocity,upper_uy,-0.03319641202688217 +illusion_1.5L,sr,207,82.8,velocity,center_ux,0.5330767631530762 +illusion_1.5L,sr,207,82.8,velocity,center_uy,0.5440215468406677 +illusion_1.5L,sr,207,82.8,velocity,lower_ux,0.7812345027923584 +illusion_1.5L,sr,207,82.8,velocity,lower_uy,0.240057110786438 +illusion_1.5L,sr,208,83.2,velocity,upper_ux,1.1504215002059937 +illusion_1.5L,sr,208,83.2,velocity,upper_uy,0.16999951004981995 +illusion_1.5L,sr,208,83.2,velocity,center_ux,0.5873847007751465 +illusion_1.5L,sr,208,83.2,velocity,center_uy,0.6335257887840271 +illusion_1.5L,sr,208,83.2,velocity,lower_ux,0.8432796001434326 +illusion_1.5L,sr,208,83.2,velocity,lower_uy,0.3100382685661316 +illusion_1.5L,sr,209,83.6,velocity,upper_ux,0.952147364616394 +illusion_1.5L,sr,209,83.6,velocity,upper_uy,0.3388832211494446 +illusion_1.5L,sr,209,83.6,velocity,center_ux,0.6670669317245483 +illusion_1.5L,sr,209,83.6,velocity,center_uy,0.6421829462051392 +illusion_1.5L,sr,209,83.6,velocity,lower_ux,0.9095911979675293 +illusion_1.5L,sr,209,83.6,velocity,lower_uy,0.36679863929748535 +illusion_1.5L,sr,210,84.0,velocity,upper_ux,0.7838491797447205 +illusion_1.5L,sr,210,84.0,velocity,upper_uy,0.39995890855789185 +illusion_1.5L,sr,210,84.0,velocity,center_ux,0.7201927900314331 +illusion_1.5L,sr,210,84.0,velocity,center_uy,0.6640437245368958 +illusion_1.5L,sr,210,84.0,velocity,lower_ux,0.9804021716117859 +illusion_1.5L,sr,210,84.0,velocity,lower_uy,0.4110206961631775 +illusion_1.5L,sr,211,84.4,velocity,upper_ux,0.6872178912162781 +illusion_1.5L,sr,211,84.4,velocity,upper_uy,0.3628585934638977 +illusion_1.5L,sr,211,84.4,velocity,center_ux,0.7503232359886169 +illusion_1.5L,sr,211,84.4,velocity,center_uy,0.6883412003517151 +illusion_1.5L,sr,211,84.4,velocity,lower_ux,1.055970549583435 +illusion_1.5L,sr,211,84.4,velocity,lower_uy,0.44338566064834595 +illusion_1.5L,sr,212,84.8,velocity,upper_ux,0.6326772570610046 +illusion_1.5L,sr,212,84.8,velocity,upper_uy,0.28107789158821106 +illusion_1.5L,sr,212,84.8,velocity,center_ux,0.7614538073539734 +illusion_1.5L,sr,212,84.8,velocity,center_uy,0.6753610968589783 +illusion_1.5L,sr,212,84.8,velocity,lower_ux,1.1363157033920288 +illusion_1.5L,sr,212,84.8,velocity,lower_uy,0.46277132630348206 +illusion_1.5L,sr,213,85.2,velocity,upper_ux,0.5952905416488647 +illusion_1.5L,sr,213,85.2,velocity,upper_uy,0.17764267325401306 +illusion_1.5L,sr,213,85.2,velocity,center_ux,0.7528312802314758 +illusion_1.5L,sr,213,85.2,velocity,center_uy,0.579645574092865 +illusion_1.5L,sr,213,85.2,velocity,lower_ux,1.2195453643798828 +illusion_1.5L,sr,213,85.2,velocity,lower_uy,0.4655403196811676 +illusion_1.5L,sr,214,85.6,velocity,upper_ux,0.5839543342590332 +illusion_1.5L,sr,214,85.6,velocity,upper_uy,0.06341499090194702 +illusion_1.5L,sr,214,85.6,velocity,center_ux,0.7234022617340088 +illusion_1.5L,sr,214,85.6,velocity,center_uy,0.3960074186325073 +illusion_1.5L,sr,214,85.6,velocity,lower_ux,1.298743486404419 +illusion_1.5L,sr,214,85.6,velocity,lower_uy,0.4443848729133606 +illusion_1.5L,sr,215,86.0,velocity,upper_ux,0.6156741976737976 +illusion_1.5L,sr,215,86.0,velocity,upper_uy,-0.03892073780298233 +illusion_1.5L,sr,215,86.0,velocity,center_ux,0.6696745157241821 +illusion_1.5L,sr,215,86.0,velocity,center_uy,0.15406125783920288 +illusion_1.5L,sr,215,86.0,velocity,lower_ux,1.3587249517440796 +illusion_1.5L,sr,215,86.0,velocity,lower_uy,0.3883747458457947 +illusion_1.5L,sr,216,86.4,velocity,upper_ux,0.6799973249435425 +illusion_1.5L,sr,216,86.4,velocity,upper_uy,-0.11904184520244598 +illusion_1.5L,sr,216,86.4,velocity,center_ux,0.5962340831756592 +illusion_1.5L,sr,216,86.4,velocity,center_uy,-0.13111662864685059 +illusion_1.5L,sr,216,86.4,velocity,lower_ux,1.379370927810669 +illusion_1.5L,sr,216,86.4,velocity,lower_uy,0.2875401973724365 +illusion_1.5L,sr,217,86.8,velocity,upper_ux,0.7457948923110962 +illusion_1.5L,sr,217,86.8,velocity,upper_uy,-0.1950368881225586 +illusion_1.5L,sr,217,86.8,velocity,center_ux,0.5366379022598267 +illusion_1.5L,sr,217,86.8,velocity,center_uy,-0.41834545135498047 +illusion_1.5L,sr,217,86.8,velocity,lower_ux,1.346065878868103 +illusion_1.5L,sr,217,86.8,velocity,lower_uy,0.13976562023162842 +illusion_1.5L,sr,218,87.2,velocity,upper_ux,0.8066917657852173 +illusion_1.5L,sr,218,87.2,velocity,upper_uy,-0.2706667184829712 +illusion_1.5L,sr,218,87.2,velocity,center_ux,0.5445505380630493 +illusion_1.5L,sr,218,87.2,velocity,center_uy,-0.6005449295043945 +illusion_1.5L,sr,218,87.2,velocity,lower_ux,1.2452939748764038 +illusion_1.5L,sr,218,87.2,velocity,lower_uy,-0.04935679957270622 +illusion_1.5L,sr,219,87.6,velocity,upper_ux,0.8703318238258362 +illusion_1.5L,sr,219,87.6,velocity,upper_uy,-0.33533909916877747 +illusion_1.5L,sr,219,87.6,velocity,center_ux,0.6201391816139221 +illusion_1.5L,sr,219,87.6,velocity,center_uy,-0.6386960744857788 +illusion_1.5L,sr,219,87.6,velocity,lower_ux,1.070634365081787 +illusion_1.5L,sr,219,87.6,velocity,lower_uy,-0.24788250029087067 +illusion_1.5L,sr,220,88.0,velocity,upper_ux,0.9384078979492188 +illusion_1.5L,sr,220,88.0,velocity,upper_uy,-0.38680756092071533 +illusion_1.5L,sr,220,88.0,velocity,center_ux,0.6906909942626953 +illusion_1.5L,sr,220,88.0,velocity,center_uy,-0.6491350531578064 +illusion_1.5L,sr,220,88.0,velocity,lower_ux,0.8744298815727234 +illusion_1.5L,sr,220,88.0,velocity,lower_uy,-0.37757837772369385 +illusion_1.5L,sr,221,88.4,velocity,upper_ux,1.0110154151916504 +illusion_1.5L,sr,221,88.4,velocity,upper_uy,-0.4261934161186218 +illusion_1.5L,sr,221,88.4,velocity,center_ux,0.7330760955810547 +illusion_1.5L,sr,221,88.4,velocity,center_uy,-0.6757361888885498 +illusion_1.5L,sr,221,88.4,velocity,lower_ux,0.7348897457122803 +illusion_1.5L,sr,221,88.4,velocity,lower_uy,-0.3924727737903595 +illusion_1.5L,sr,222,88.8,velocity,upper_ux,1.0885450839996338 +illusion_1.5L,sr,222,88.8,velocity,upper_uy,-0.45347827672958374 +illusion_1.5L,sr,222,88.8,velocity,center_ux,0.7551268935203552 +illusion_1.5L,sr,222,88.8,velocity,center_uy,-0.6901493668556213 +illusion_1.5L,sr,222,88.8,velocity,lower_ux,0.6600604057312012 +illusion_1.5L,sr,222,88.8,velocity,lower_uy,-0.3318026661872864 +illusion_1.5L,sr,223,89.2,velocity,upper_ux,1.1705302000045776 +illusion_1.5L,sr,223,89.2,velocity,upper_uy,-0.4666125774383545 +illusion_1.5L,sr,223,89.2,velocity,center_ux,0.758089542388916 +illusion_1.5L,sr,223,89.2,velocity,center_uy,-0.6470115184783936 +illusion_1.5L,sr,223,89.2,velocity,lower_ux,0.6136825680732727 +illusion_1.5L,sr,223,89.2,velocity,lower_uy,-0.23988227546215057 +illusion_1.5L,sr,224,89.6,velocity,upper_ux,1.2533727884292603 +illusion_1.5L,sr,224,89.6,velocity,upper_uy,-0.4605252146720886 +illusion_1.5L,sr,224,89.6,velocity,center_ux,0.7411550283432007 +illusion_1.5L,sr,224,89.6,velocity,center_uy,-0.5120768547058105 +illusion_1.5L,sr,224,89.6,velocity,lower_ux,0.5852969288825989 +illusion_1.5L,sr,224,89.6,velocity,lower_uy,-0.1301250010728836 +illusion_1.5L,sr,225,90.0,velocity,upper_ux,1.3268240690231323 +illusion_1.5L,sr,225,90.0,velocity,upper_uy,-0.42627063393592834 +illusion_1.5L,sr,225,90.0,velocity,center_ux,0.7023561000823975 +illusion_1.5L,sr,225,90.0,velocity,center_uy,-0.30127254128456116 +illusion_1.5L,sr,225,90.0,velocity,lower_ux,0.5911498069763184 +illusion_1.5L,sr,225,90.0,velocity,lower_uy,-0.018171213567256927 +illusion_1.5L,sr,226,90.4,velocity,upper_ux,1.3725802898406982 +illusion_1.5L,sr,226,90.4,velocity,upper_uy,-0.35250747203826904 +illusion_1.5L,sr,226,90.4,velocity,center_ux,0.6387936472892761 +illusion_1.5L,sr,226,90.4,velocity,center_uy,-0.04039878398180008 +illusion_1.5L,sr,226,90.4,velocity,lower_ux,0.6400741338729858 +illusion_1.5L,sr,226,90.4,velocity,lower_uy,0.07374172657728195 +illusion_1.5L,sr,227,90.8,velocity,upper_ux,1.3720568418502808 +illusion_1.5L,sr,227,90.8,velocity,upper_uy,-0.23229625821113586 +illusion_1.5L,sr,227,90.8,velocity,center_ux,0.5651230812072754 +illusion_1.5L,sr,227,90.8,velocity,center_uy,0.2540130317211151 +illusion_1.5L,sr,227,90.8,velocity,lower_ux,0.7079582810401917 +illusion_1.5L,sr,227,90.8,velocity,lower_uy,0.14952535927295685 +illusion_1.5L,sr,228,91.2,velocity,upper_ux,1.313336968421936 +illusion_1.5L,sr,228,91.2,velocity,upper_uy,-0.06700348854064941 +illusion_1.5L,sr,228,91.2,velocity,center_ux,0.5272156000137329 +illusion_1.5L,sr,228,91.2,velocity,center_uy,0.5122668743133545 +illusion_1.5L,sr,228,91.2,velocity,lower_ux,0.7706792950630188 +illusion_1.5L,sr,228,91.2,velocity,lower_uy,0.22656795382499695 +illusion_1.5L,sr,229,91.6,velocity,upper_ux,1.1817797422409058 +illusion_1.5L,sr,229,91.6,velocity,upper_uy,0.13169750571250916 +illusion_1.5L,sr,229,91.6,velocity,center_ux,0.5691279768943787 +illusion_1.5L,sr,229,91.6,velocity,center_uy,0.6283190250396729 +illusion_1.5L,sr,229,91.6,velocity,lower_ux,0.8320110440254211 +illusion_1.5L,sr,229,91.6,velocity,lower_uy,0.298648476600647 +illusion_1.5L,sr,230,92.0,velocity,upper_ux,0.9888076186180115 +illusion_1.5L,sr,230,92.0,velocity,upper_uy,0.31203776597976685 +illusion_1.5L,sr,230,92.0,velocity,center_ux,0.6508640050888062 +illusion_1.5L,sr,230,92.0,velocity,center_uy,0.6407005786895752 +illusion_1.5L,sr,230,92.0,velocity,lower_ux,0.8974350094795227 +illusion_1.5L,sr,230,92.0,velocity,lower_uy,0.35789424180984497 +illusion_1.5L,sr,231,92.4,velocity,upper_ux,0.8083359599113464 +illusion_1.5L,sr,231,92.4,velocity,upper_uy,0.39562100172042847 +illusion_1.5L,sr,231,92.4,velocity,center_ux,0.7092767357826233 +illusion_1.5L,sr,231,92.4,velocity,center_uy,0.6591126918792725 +illusion_1.5L,sr,231,92.4,velocity,lower_ux,0.9672466516494751 +illusion_1.5L,sr,231,92.4,velocity,lower_uy,0.40442129969596863 +illusion_1.5L,sr,232,92.8,velocity,upper_ux,0.6977419257164001 +illusion_1.5L,sr,232,92.8,velocity,upper_uy,0.3730951249599457 +illusion_1.5L,sr,232,92.8,velocity,center_ux,0.7426632642745972 +illusion_1.5L,sr,232,92.8,velocity,center_uy,0.6851724982261658 +illusion_1.5L,sr,232,92.8,velocity,lower_ux,1.0416996479034424 +illusion_1.5L,sr,232,92.8,velocity,lower_uy,0.4390535056591034 +illusion_1.5L,sr,233,93.2,velocity,upper_ux,0.6379167437553406 +illusion_1.5L,sr,233,93.2,velocity,upper_uy,0.2967274487018585 +illusion_1.5L,sr,233,93.2,velocity,center_ux,0.7568798661231995 +illusion_1.5L,sr,233,93.2,velocity,center_uy,0.6821637153625488 +illusion_1.5L,sr,233,93.2,velocity,lower_ux,1.1211150884628296 +illusion_1.5L,sr,233,93.2,velocity,lower_uy,0.4610351622104645 +illusion_1.5L,sr,234,93.6,velocity,upper_ux,0.5983155965805054 +illusion_1.5L,sr,234,93.6,velocity,upper_uy,0.19659759104251862 +illusion_1.5L,sr,234,93.6,velocity,center_ux,0.7517841458320618 +illusion_1.5L,sr,234,93.6,velocity,center_uy,0.6033063530921936 +illusion_1.5L,sr,234,93.6,velocity,lower_ux,1.2041618824005127 +illusion_1.5L,sr,234,93.6,velocity,lower_uy,0.46718791127204895 +illusion_1.5L,sr,235,94.0,velocity,upper_ux,0.5818583369255066 +illusion_1.5L,sr,235,94.0,velocity,upper_uy,0.08342404663562775 +illusion_1.5L,sr,235,94.0,velocity,center_ux,0.726569652557373 +illusion_1.5L,sr,235,94.0,velocity,center_uy,0.4336429238319397 +illusion_1.5L,sr,235,94.0,velocity,lower_ux,1.2849284410476685 +illusion_1.5L,sr,235,94.0,velocity,lower_uy,0.45094504952430725 +illusion_1.5L,sr,236,94.4,velocity,upper_ux,0.6062259674072266 +illusion_1.5L,sr,236,94.4,velocity,upper_uy,-0.021978208795189857 +illusion_1.5L,sr,236,94.4,velocity,center_ux,0.6779191493988037 +illusion_1.5L,sr,236,94.4,velocity,center_uy,0.2011212855577469 +illusion_1.5L,sr,236,94.4,velocity,lower_ux,1.3495947122573853 +illusion_1.5L,sr,236,94.4,velocity,lower_uy,0.40194350481033325 +illusion_1.5L,sr,237,94.8,velocity,upper_ux,0.6671976447105408 +illusion_1.5L,sr,237,94.8,velocity,upper_uy,-0.10461536049842834 +illusion_1.5L,sr,237,94.8,velocity,center_ux,0.6068587303161621 +illusion_1.5L,sr,237,94.8,velocity,center_uy,-0.0763421356678009 +illusion_1.5L,sr,237,94.8,velocity,lower_ux,1.3782877922058105 +illusion_1.5L,sr,237,94.8,velocity,lower_uy,0.3097938299179077 +illusion_1.5L,sr,238,95.2,velocity,upper_ux,0.7339150309562683 +illusion_1.5L,sr,238,95.2,velocity,upper_uy,-0.17993611097335815 +illusion_1.5L,sr,238,95.2,velocity,center_ux,0.5405558347702026 +illusion_1.5L,sr,238,95.2,velocity,center_uy,-0.36856788396835327 +illusion_1.5L,sr,238,95.2,velocity,lower_ux,1.355621337890625 +illusion_1.5L,sr,238,95.2,velocity,lower_uy,0.17127364873886108 +illusion_1.5L,sr,239,95.6,velocity,upper_ux,0.7947673797607422 +illusion_1.5L,sr,239,95.6,velocity,upper_uy,-0.2565762996673584 +illusion_1.5L,sr,239,95.6,velocity,center_ux,0.5322889685630798 +illusion_1.5L,sr,239,95.6,velocity,center_uy,-0.5787506699562073 +illusion_1.5L,sr,239,95.6,velocity,lower_ux,1.2698924541473389 +illusion_1.5L,sr,239,95.6,velocity,lower_uy,-0.009351124987006187 +illusion_1.5L,sr,240,96.0,velocity,upper_ux,0.8574705719947815 +illusion_1.5L,sr,240,96.0,velocity,upper_uy,-0.3238861858844757 +illusion_1.5L,sr,240,96.0,velocity,center_ux,0.6002610325813293 +illusion_1.5L,sr,240,96.0,velocity,center_uy,-0.6375940442085266 +illusion_1.5L,sr,240,96.0,velocity,lower_ux,1.109513759613037 +illusion_1.5L,sr,240,96.0,velocity,lower_uy,-0.20927223563194275 +illusion_1.5L,sr,241,96.4,velocity,upper_ux,0.9246638417243958 +illusion_1.5L,sr,241,96.4,velocity,upper_uy,-0.3779667913913727 +illusion_1.5L,sr,241,96.4,velocity,center_ux,0.6764896512031555 +illusion_1.5L,sr,241,96.4,velocity,center_uy,-0.6454781889915466 +illusion_1.5L,sr,241,96.4,velocity,lower_ux,0.911001980304718 +illusion_1.5L,sr,241,96.4,velocity,lower_uy,-0.3585769236087799 +illusion_1.5L,sr,242,96.8,velocity,upper_ux,0.9962344169616699 +illusion_1.5L,sr,242,96.8,velocity,upper_uy,-0.4197911322116852 +illusion_1.5L,sr,242,96.8,velocity,center_ux,0.723723292350769 +illusion_1.5L,sr,242,96.8,velocity,center_uy,-0.6702677011489868 +illusion_1.5L,sr,242,96.8,velocity,lower_ux,0.7553446292877197 +illusion_1.5L,sr,242,96.8,velocity,lower_uy,-0.3961162567138672 +illusion_1.5L,sr,243,97.2,velocity,upper_ux,1.0725812911987305 +illusion_1.5L,sr,243,97.2,velocity,upper_uy,-0.4496537744998932 +illusion_1.5L,sr,243,97.2,velocity,center_ux,0.7491552829742432 +illusion_1.5L,sr,243,97.2,velocity,center_uy,-0.6899610161781311 +illusion_1.5L,sr,243,97.2,velocity,lower_ux,0.6691761016845703 +illusion_1.5L,sr,243,97.2,velocity,lower_uy,-0.34629273414611816 +illusion_1.5L,sr,244,97.6,velocity,upper_ux,1.153692603111267 +illusion_1.5L,sr,244,97.6,velocity,upper_uy,-0.46590137481689453 +illusion_1.5L,sr,244,97.6,velocity,center_ux,0.7556232213973999 +illusion_1.5L,sr,244,97.6,velocity,center_uy,-0.6617831587791443 +illusion_1.5L,sr,244,97.6,velocity,lower_ux,0.6191784143447876 +illusion_1.5L,sr,244,97.6,velocity,lower_uy,-0.25886180996894836 +illusion_1.5L,sr,245,98.0,velocity,upper_ux,1.236901879310608 +illusion_1.5L,sr,245,98.0,velocity,upper_uy,-0.46414366364479065 +illusion_1.5L,sr,245,98.0,velocity,center_ux,0.7426713705062866 +illusion_1.5L,sr,245,98.0,velocity,center_uy,-0.5453268885612488 +illusion_1.5L,sr,245,98.0,velocity,lower_ux,0.5871734023094177 +illusion_1.5L,sr,245,98.0,velocity,lower_uy,-0.15204696357250214 +illusion_1.5L,sr,246,98.4,velocity,upper_ux,1.3133971691131592 +illusion_1.5L,sr,246,98.4,velocity,upper_uy,-0.4362073540687561 +illusion_1.5L,sr,246,98.4,velocity,center_ux,0.7088960409164429 +illusion_1.5L,sr,246,98.4,velocity,center_uy,-0.3470654785633087 +illusion_1.5L,sr,246,98.4,velocity,lower_ux,0.5856468677520752 +illusion_1.5L,sr,246,98.4,velocity,lower_uy,-0.039139751344919205 +illusion_1.5L,sr,247,98.8,velocity,upper_ux,1.3660941123962402 +illusion_1.5L,sr,247,98.8,velocity,upper_uy,-0.3710179626941681 +illusion_1.5L,sr,247,98.8,velocity,center_ux,0.6504642367362976 +illusion_1.5L,sr,247,98.8,velocity,center_uy,-0.09582409262657166 +illusion_1.5L,sr,247,98.8,velocity,lower_ux,0.6275022029876709 +illusion_1.5L,sr,247,98.8,velocity,lower_uy,0.056999120861291885 +illusion_1.5L,sr,248,99.2,velocity,upper_ux,1.3756130933761597 +illusion_1.5L,sr,248,99.2,velocity,upper_uy,-0.26047229766845703 +illusion_1.5L,sr,248,99.2,velocity,center_ux,0.5762098431587219 +illusion_1.5L,sr,248,99.2,velocity,center_uy,0.193915456533432 +illusion_1.5L,sr,248,99.2,velocity,lower_ux,0.694395899772644 +illusion_1.5L,sr,248,99.2,velocity,lower_uy,0.1338254064321518 +illusion_1.5L,sr,249,99.6,velocity,upper_ux,1.329820156097412 +illusion_1.5L,sr,249,99.6,velocity,upper_uy,-0.10489117354154587 +illusion_1.5L,sr,249,99.6,velocity,center_ux,0.525983989238739 +illusion_1.5L,sr,249,99.6,velocity,center_uy,0.4681171476840973 +illusion_1.5L,sr,249,99.6,velocity,lower_ux,0.75812166929245 +illusion_1.5L,sr,249,99.6,velocity,lower_uy,0.21035179495811462 +illusion_1.5L,sr,250,100.0,velocity,upper_ux,1.2153840065002441 +illusion_1.5L,sr,250,100.0,velocity,upper_uy,0.08760606497526169 +illusion_1.5L,sr,250,100.0,velocity,center_ux,0.5509670376777649 +illusion_1.5L,sr,250,100.0,velocity,center_uy,0.617449164390564 +illusion_1.5L,sr,250,100.0,velocity,lower_ux,0.8187500238418579 +illusion_1.5L,sr,250,100.0,velocity,lower_uy,0.28451621532440186 +illusion_1.5L,sr,251,100.4,velocity,upper_ux,1.032131314277649 +illusion_1.5L,sr,251,100.4,velocity,upper_uy,0.2775431275367737 +illusion_1.5L,sr,251,100.4,velocity,center_ux,0.6318776607513428 +illusion_1.5L,sr,251,100.4,velocity,center_uy,0.6397234201431274 +illusion_1.5L,sr,251,100.4,velocity,lower_ux,0.8831640481948853 +illusion_1.5L,sr,251,100.4,velocity,lower_uy,0.3466571867465973 +illusion_1.5L,sr,252,100.8,velocity,upper_ux,0.8415724039077759 +illusion_1.5L,sr,252,100.8,velocity,upper_uy,0.3862399756908417 +illusion_1.5L,sr,252,100.8,velocity,center_ux,0.6970928907394409 +illusion_1.5L,sr,252,100.8,velocity,center_uy,0.6536502242088318 +illusion_1.5L,sr,252,100.8,velocity,lower_ux,0.9520778656005859 +illusion_1.5L,sr,252,100.8,velocity,lower_uy,0.39585426449775696 +illusion_1.5L,sr,253,101.2,velocity,upper_ux,0.7142345905303955 +illusion_1.5L,sr,253,101.2,velocity,upper_uy,0.3833034932613373 +illusion_1.5L,sr,253,101.2,velocity,center_ux,0.7349101305007935 +illusion_1.5L,sr,253,101.2,velocity,center_uy,0.6804932951927185 +illusion_1.5L,sr,253,101.2,velocity,lower_ux,1.0254439115524292 +illusion_1.5L,sr,253,101.2,velocity,lower_uy,0.4331131875514984 +illusion_1.5L,sr,254,101.6,velocity,upper_ux,0.6462861895561218 +illusion_1.5L,sr,254,101.6,velocity,upper_uy,0.31468743085861206 +illusion_1.5L,sr,254,101.6,velocity,center_ux,0.7527850866317749 +illusion_1.5L,sr,254,101.6,velocity,center_uy,0.6872643232345581 +illusion_1.5L,sr,254,101.6,velocity,lower_ux,1.103662133216858 +illusion_1.5L,sr,254,101.6,velocity,lower_uy,0.4580139219760895 +illusion_1.5L,sr,255,102.0,velocity,upper_ux,0.6034488081932068 +illusion_1.5L,sr,255,102.0,velocity,upper_uy,0.2186719924211502 +illusion_1.5L,sr,255,102.0,velocity,center_ux,0.751555860042572 +illusion_1.5L,sr,255,102.0,velocity,center_uy,0.6275150179862976 +illusion_1.5L,sr,255,102.0,velocity,lower_ux,1.1860731840133667 +illusion_1.5L,sr,255,102.0,velocity,lower_uy,0.4679568111896515 +illusion_1.5L,sr,256,102.4,velocity,upper_ux,0.5812745094299316 +illusion_1.5L,sr,256,102.4,velocity,upper_uy,0.10726587474346161 +illusion_1.5L,sr,256,102.4,velocity,center_ux,0.7308281064033508 +illusion_1.5L,sr,256,102.4,velocity,center_uy,0.47561362385749817 +illusion_1.5L,sr,256,102.4,velocity,lower_ux,1.268129825592041 +illusion_1.5L,sr,256,102.4,velocity,lower_uy,0.4571389853954315 +illusion_1.5L,sr,257,102.8,velocity,upper_ux,0.5967757105827332 +illusion_1.5L,sr,257,102.8,velocity,upper_uy,-0.0013222700217738748 +illusion_1.5L,sr,257,102.8,velocity,center_ux,0.6879315376281738 +illusion_1.5L,sr,257,102.8,velocity,center_uy,0.2544565200805664 +illusion_1.5L,sr,257,102.8,velocity,lower_ux,1.3377342224121094 +illusion_1.5L,sr,257,102.8,velocity,lower_uy,0.4159586429595947 +illusion_1.5L,sr,258,103.2,velocity,upper_ux,0.6525755524635315 +illusion_1.5L,sr,258,103.2,velocity,upper_uy,-0.08791537582874298 +illusion_1.5L,sr,258,103.2,velocity,center_ux,0.6209390759468079 +illusion_1.5L,sr,258,103.2,velocity,center_uy,-0.01369927916675806 +illusion_1.5L,sr,258,103.2,velocity,lower_ux,1.375550389289856 +illusion_1.5L,sr,258,103.2,velocity,lower_uy,0.33360588550567627 +illusion_1.5L,sr,259,103.6,velocity,upper_ux,0.7201631665229797 +illusion_1.5L,sr,259,103.6,velocity,upper_uy,-0.1628507375717163 +illusion_1.5L,sr,259,103.6,velocity,center_ux,0.5496120452880859 +illusion_1.5L,sr,259,103.6,velocity,center_uy,-0.30771157145500183 +illusion_1.5L,sr,259,103.6,velocity,lower_ux,1.3646353483200073 +illusion_1.5L,sr,259,103.6,velocity,lower_uy,0.20528915524482727 +illusion_1.5L,sr,260,104.0,velocity,upper_ux,0.7813612222671509 +illusion_1.5L,sr,260,104.0,velocity,upper_uy,-0.23997360467910767 +illusion_1.5L,sr,260,104.0,velocity,center_ux,0.5239095091819763 +illusion_1.5L,sr,260,104.0,velocity,center_uy,-0.5457783341407776 +illusion_1.5L,sr,260,104.0,velocity,lower_ux,1.2943387031555176 +illusion_1.5L,sr,260,104.0,velocity,lower_uy,0.03413402661681175 +illusion_1.5L,sr,261,104.4,velocity,upper_ux,0.8429576754570007 +illusion_1.5L,sr,261,104.4,velocity,upper_uy,-0.3100992441177368 +illusion_1.5L,sr,261,104.4,velocity,center_ux,0.578857958316803 +illusion_1.5L,sr,261,104.4,velocity,center_uy,-0.6342636346817017 +illusion_1.5L,sr,261,104.4,velocity,lower_ux,1.15101957321167 +illusion_1.5L,sr,261,104.4,velocity,lower_uy,-0.16444779932498932 +illusion_1.5L,sr,262,104.8,velocity,upper_ux,0.9091246724128723 +illusion_1.5L,sr,262,104.8,velocity,upper_uy,-0.36713725328445435 +illusion_1.5L,sr,262,104.8,velocity,center_ux,0.6597815752029419 +illusion_1.5L,sr,262,104.8,velocity,center_uy,-0.6424477100372314 +illusion_1.5L,sr,262,104.8,velocity,lower_ux,0.954864501953125 +illusion_1.5L,sr,262,104.8,velocity,lower_uy,-0.33200451731681824 +illusion_1.5L,sr,263,105.2,velocity,upper_ux,0.9797548651695251 +illusion_1.5L,sr,263,105.2,velocity,upper_uy,-0.4117158055305481 +illusion_1.5L,sr,263,105.2,velocity,center_ux,0.7134021520614624 +illusion_1.5L,sr,263,105.2,velocity,center_uy,-0.6639440059661865 +illusion_1.5L,sr,263,105.2,velocity,lower_ux,0.7833993434906006 +illusion_1.5L,sr,263,105.2,velocity,lower_uy,-0.3961929380893707 +illusion_1.5L,sr,264,105.6,velocity,upper_ux,1.0549677610397339 +illusion_1.5L,sr,264,105.6,velocity,upper_uy,-0.44440364837646484 +illusion_1.5L,sr,264,105.6,velocity,center_ux,0.7431212663650513 +illusion_1.5L,sr,264,105.6,velocity,center_uy,-0.6877540349960327 +illusion_1.5L,sr,264,105.6,velocity,lower_ux,0.6826340556144714 +illusion_1.5L,sr,264,105.6,velocity,lower_uy,-0.3614262640476227 +illusion_1.5L,sr,265,106.0,velocity,upper_ux,1.1349598169326782 +illusion_1.5L,sr,265,106.0,velocity,upper_uy,-0.46403399109840393 +illusion_1.5L,sr,265,106.0,velocity,center_ux,0.7535735368728638 +illusion_1.5L,sr,265,106.0,velocity,center_uy,-0.6744542121887207 +illusion_1.5L,sr,265,106.0,velocity,lower_ux,0.627114474773407 +illusion_1.5L,sr,265,106.0,velocity,lower_uy,-0.27988293766975403 +illusion_1.5L,sr,266,106.4,velocity,upper_ux,1.2180227041244507 +illusion_1.5L,sr,266,106.4,velocity,upper_uy,-0.4668692648410797 +illusion_1.5L,sr,266,106.4,velocity,center_ux,0.7447811365127563 +illusion_1.5L,sr,266,106.4,velocity,center_uy,-0.5792785286903381 +illusion_1.5L,sr,266,106.4,velocity,lower_ux,0.5910388827323914 +illusion_1.5L,sr,266,106.4,velocity,lower_uy,-0.17672468721866608 +illusion_1.5L,sr,267,106.8,velocity,upper_ux,1.2971551418304443 +illusion_1.5L,sr,267,106.8,velocity,upper_uy,-0.44564583897590637 +illusion_1.5L,sr,267,106.8,velocity,center_ux,0.7161222100257874 +illusion_1.5L,sr,267,106.8,velocity,center_uy,-0.39673101902008057 +illusion_1.5L,sr,267,106.8,velocity,lower_ux,0.5815166234970093 +illusion_1.5L,sr,267,106.8,velocity,lower_uy,-0.06364906579256058 +illusion_1.5L,sr,268,107.2,velocity,upper_ux,1.3569499254226685 +illusion_1.5L,sr,268,107.2,velocity,upper_uy,-0.3896986246109009 +illusion_1.5L,sr,268,107.2,velocity,center_ux,0.6637298464775085 +illusion_1.5L,sr,268,107.2,velocity,center_uy,-0.15638265013694763 +illusion_1.5L,sr,268,107.2,velocity,lower_ux,0.6144117712974548 +illusion_1.5L,sr,268,107.2,velocity,lower_uy,0.0373237282037735 +illusion_1.5L,sr,269,107.6,velocity,upper_ux,1.377494215965271 +illusion_1.5L,sr,269,107.6,velocity,upper_uy,-0.28975731134414673 +illusion_1.5L,sr,269,107.6,velocity,center_ux,0.5910605788230896 +illusion_1.5L,sr,269,107.6,velocity,center_uy,0.1261606365442276 +illusion_1.5L,sr,269,107.6,velocity,lower_ux,0.6789405941963196 +illusion_1.5L,sr,269,107.6,velocity,lower_uy,0.1165485680103302 +illusion_1.5L,sr,270,108.0,velocity,upper_ux,1.3451948165893555 +illusion_1.5L,sr,270,108.0,velocity,upper_uy,-0.14459049701690674 +illusion_1.5L,sr,270,108.0,velocity,center_ux,0.5302620530128479 +illusion_1.5L,sr,270,108.0,velocity,center_uy,0.4121473431587219 +illusion_1.5L,sr,270,108.0,velocity,lower_ux,0.7442223429679871 +illusion_1.5L,sr,270,108.0,velocity,lower_uy,0.19221709668636322 +illusion_1.5L,sr,271,108.4,velocity,upper_ux,1.2484750747680664 +illusion_1.5L,sr,271,108.4,velocity,upper_uy,0.0400012843310833 +illusion_1.5L,sr,271,108.4,velocity,center_ux,0.5352483987808228 +illusion_1.5L,sr,271,108.4,velocity,center_uy,0.5979368686676025 +illusion_1.5L,sr,271,108.4,velocity,lower_ux,0.8043721914291382 +illusion_1.5L,sr,271,108.4,velocity,lower_uy,0.268123060464859 +illusion_1.5L,sr,272,108.8,velocity,upper_ux,1.0791194438934326 +illusion_1.5L,sr,272,108.8,velocity,upper_uy,0.23593881726264954 +illusion_1.5L,sr,272,108.8,velocity,center_ux,0.6103563904762268 +illusion_1.5L,sr,272,108.8,velocity,center_uy,0.6389472484588623 +illusion_1.5L,sr,272,108.8,velocity,lower_ux,0.8675166964530945 +illusion_1.5L,sr,272,108.8,velocity,lower_uy,0.3334108293056488 +illusion_1.5L,sr,273,109.2,velocity,upper_ux,0.8824369311332703 +illusion_1.5L,sr,273,109.2,velocity,upper_uy,0.3698998689651489 +illusion_1.5L,sr,273,109.2,velocity,center_ux,0.6828858852386475 +illusion_1.5L,sr,273,109.2,velocity,center_uy,0.6484369039535522 +illusion_1.5L,sr,273,109.2,velocity,lower_ux,0.9353927373886108 +illusion_1.5L,sr,273,109.2,velocity,lower_uy,0.3855862021446228 +illusion_1.5L,sr,274,109.6,velocity,upper_ux,0.7368426322937012 +illusion_1.5L,sr,274,109.6,velocity,upper_uy,0.39135637879371643 +illusion_1.5L,sr,274,109.6,velocity,center_ux,0.7263462543487549 +illusion_1.5L,sr,274,109.6,velocity,center_uy,0.6744858026504517 +illusion_1.5L,sr,274,109.6,velocity,lower_ux,1.0077595710754395 +illusion_1.5L,sr,274,109.6,velocity,lower_uy,0.425678551197052 +illusion_1.5L,sr,275,110.0,velocity,upper_ux,0.6577799320220947 +illusion_1.5L,sr,275,110.0,velocity,upper_uy,0.3335574269294739 +illusion_1.5L,sr,275,110.0,velocity,center_ux,0.7486096024513245 +illusion_1.5L,sr,275,110.0,velocity,center_uy,0.6896188259124756 +illusion_1.5L,sr,275,110.0,velocity,lower_ux,1.0848326683044434 +illusion_1.5L,sr,275,110.0,velocity,lower_uy,0.453690767288208 +illusion_1.5L,sr,276,110.4,velocity,upper_ux,0.6107617020606995 +illusion_1.5L,sr,276,110.4,velocity,upper_uy,0.24246704578399658 +illusion_1.5L,sr,276,110.4,velocity,center_ux,0.7516607642173767 +illusion_1.5L,sr,276,110.4,velocity,center_uy,0.6493667364120483 +illusion_1.5L,sr,276,110.4,velocity,lower_ux,1.1663438081741333 +illusion_1.5L,sr,276,110.4,velocity,lower_uy,0.4675583243370056 +illusion_1.5L,sr,277,110.8,velocity,upper_ux,0.5827895998954773 +illusion_1.5L,sr,277,110.8,velocity,upper_uy,0.13373368978500366 +illusion_1.5L,sr,277,110.8,velocity,center_ux,0.7354177832603455 +illusion_1.5L,sr,277,110.8,velocity,center_uy,0.5185171365737915 +illusion_1.5L,sr,277,110.8,velocity,lower_ux,1.2490620613098145 +illusion_1.5L,sr,277,110.8,velocity,lower_uy,0.4623170793056488 +illusion_1.5L,sr,278,111.2,velocity,upper_ux,0.5884870290756226 +illusion_1.5L,sr,278,111.2,velocity,upper_uy,0.022587662562727928 +illusion_1.5L,sr,278,111.2,velocity,center_ux,0.6983351111412048 +illusion_1.5L,sr,278,111.2,velocity,center_uy,0.3109188973903656 +illusion_1.5L,sr,278,111.2,velocity,lower_ux,1.3230482339859009 +illusion_1.5L,sr,278,111.2,velocity,lower_uy,0.42921334505081177 +illusion_1.5L,sr,279,111.6,velocity,upper_ux,0.636890709400177 +illusion_1.5L,sr,279,111.6,velocity,upper_uy,-0.06915109604597092 +illusion_1.5L,sr,279,111.6,velocity,center_ux,0.6367801427841187 +illusion_1.5L,sr,279,111.6,velocity,center_uy,0.05338333547115326 +illusion_1.5L,sr,279,111.6,velocity,lower_ux,1.3701282739639282 +illusion_1.5L,sr,279,111.6,velocity,lower_uy,0.35728949308395386 +illusion_1.5L,sr,280,112.0,velocity,upper_ux,0.70472252368927 +illusion_1.5L,sr,280,112.0,velocity,upper_uy,-0.1445491462945938 +illusion_1.5L,sr,280,112.0,velocity,center_ux,0.563099205493927 +illusion_1.5L,sr,280,112.0,velocity,center_uy,-0.238407701253891 +illusion_1.5L,sr,280,112.0,velocity,lower_ux,1.3717635869979858 +illusion_1.5L,sr,280,112.0,velocity,lower_uy,0.23995855450630188 +illusion_1.5L,sr,281,112.4,velocity,upper_ux,0.7670856714248657 +illusion_1.5L,sr,281,112.4,velocity,upper_uy,-0.22146408259868622 +illusion_1.5L,sr,281,112.4,velocity,center_ux,0.5210893750190735 +illusion_1.5L,sr,281,112.4,velocity,center_uy,-0.5004622340202332 +illusion_1.5L,sr,281,112.4,velocity,lower_ux,1.3169734477996826 +illusion_1.5L,sr,281,112.4,velocity,lower_uy,0.07903670519590378 +illusion_1.5L,sr,282,112.8,velocity,upper_ux,0.8276040554046631 +illusion_1.5L,sr,282,112.8,velocity,upper_uy,-0.294299840927124 +illusion_1.5L,sr,282,112.8,velocity,center_ux,0.5578959584236145 +illusion_1.5L,sr,282,112.8,velocity,center_uy,-0.6260329484939575 +illusion_1.5L,sr,282,112.8,velocity,lower_ux,1.1923720836639404 +illusion_1.5L,sr,282,112.8,velocity,lower_uy,-0.11522689461708069 +illusion_1.5L,sr,283,113.2,velocity,upper_ux,0.892465353012085 +illusion_1.5L,sr,283,113.2,velocity,upper_uy,-0.35458388924598694 +illusion_1.5L,sr,283,113.2,velocity,center_ux,0.6403563618659973 +illusion_1.5L,sr,283,113.2,velocity,center_uy,-0.6405563950538635 +illusion_1.5L,sr,283,113.2,velocity,lower_ux,1.0038080215454102 +illusion_1.5L,sr,283,113.2,velocity,lower_uy,-0.2974882125854492 +illusion_1.5L,sr,284,113.6,velocity,upper_ux,0.9620203971862793 +illusion_1.5L,sr,284,113.6,velocity,upper_uy,-0.40212592482566833 +illusion_1.5L,sr,284,113.6,velocity,center_ux,0.7014710903167725 +illusion_1.5L,sr,284,113.6,velocity,center_uy,-0.6573213338851929 +illusion_1.5L,sr,284,113.6,velocity,lower_ux,0.8188020586967468 +illusion_1.5L,sr,284,113.6,velocity,lower_uy,-0.39045506715774536 +illusion_1.5L,sr,285,114.0,velocity,upper_ux,1.0361659526824951 +illusion_1.5L,sr,285,114.0,velocity,upper_uy,-0.43779632449150085 +illusion_1.5L,sr,285,114.0,velocity,center_ux,0.7363361120223999 +illusion_1.5L,sr,285,114.0,velocity,center_uy,-0.6835095286369324 +illusion_1.5L,sr,285,114.0,velocity,lower_ux,0.7006255388259888 +illusion_1.5L,sr,285,114.0,velocity,lower_uy,-0.375510036945343 +illusion_1.5L,sr,286,114.4,velocity,upper_ux,1.1150609254837036 +illusion_1.5L,sr,286,114.4,velocity,upper_uy,-0.46087902784347534 +illusion_1.5L,sr,286,114.4,velocity,center_ux,0.7513816952705383 +illusion_1.5L,sr,286,114.4,velocity,center_uy,-0.6835210919380188 +illusion_1.5L,sr,286,114.4,velocity,lower_ux,0.6373938918113708 +illusion_1.5L,sr,286,114.4,velocity,lower_uy,-0.30173563957214355 +illusion_1.5L,sr,287,114.8,velocity,upper_ux,1.1976412534713745 +illusion_1.5L,sr,287,114.8,velocity,upper_uy,-0.4683424234390259 +illusion_1.5L,sr,287,114.8,velocity,center_ux,0.7470975518226624 +illusion_1.5L,sr,287,114.8,velocity,center_uy,-0.6109687685966492 +illusion_1.5L,sr,287,114.8,velocity,lower_ux,0.5971266031265259 +illusion_1.5L,sr,287,114.8,velocity,lower_uy,-0.20293369889259338 +illusion_1.5L,sr,288,115.2,velocity,upper_ux,1.278620958328247 +illusion_1.5L,sr,288,115.2,velocity,upper_uy,-0.45382872223854065 +illusion_1.5L,sr,288,115.2,velocity,center_ux,0.7233737707138062 +illusion_1.5L,sr,288,115.2,velocity,center_uy,-0.4473748505115509 +illusion_1.5L,sr,288,115.2,velocity,lower_ux,0.5796405673027039 +illusion_1.5L,sr,288,115.2,velocity,lower_uy,-0.09080707281827927 +illusion_1.5L,sr,289,115.6,velocity,upper_ux,1.3448486328125 +illusion_1.5L,sr,289,115.6,velocity,upper_uy,-0.4073309302330017 +illusion_1.5L,sr,289,115.6,velocity,center_ux,0.6772856712341309 +illusion_1.5L,sr,289,115.6,velocity,center_uy,-0.21923966705799103 +illusion_1.5L,sr,289,115.6,velocity,lower_ux,0.6020424365997314 +illusion_1.5L,sr,289,115.6,velocity,lower_uy,0.01483762264251709 +illusion_1.5L,sr,290,116.0,velocity,upper_ux,1.3765878677368164 +illusion_1.5L,sr,290,116.0,velocity,upper_uy,-0.31863269209861755 +illusion_1.5L,sr,290,116.0,velocity,center_ux,0.6082103848457336 +illusion_1.5L,sr,290,116.0,velocity,center_uy,0.05390194430947304 +illusion_1.5L,sr,290,116.0,velocity,lower_ux,0.6619993448257446 +illusion_1.5L,sr,290,116.0,velocity,lower_uy,0.09802250564098358 +illusion_1.5L,sr,291,116.4,velocity,upper_ux,1.3581985235214233 +illusion_1.5L,sr,291,116.4,velocity,upper_uy,-0.18451520800590515 +illusion_1.5L,sr,291,116.4,velocity,center_ux,0.5398554801940918 +illusion_1.5L,sr,291,116.4,velocity,center_uy,0.34604015946388245 +illusion_1.5L,sr,291,116.4,velocity,lower_ux,0.7290381789207458 +illusion_1.5L,sr,291,116.4,velocity,lower_uy,0.17290088534355164 +illusion_1.5L,sr,292,116.8,velocity,upper_ux,1.2792141437530518 +illusion_1.5L,sr,292,116.8,velocity,upper_uy,-0.009227404370903969 +illusion_1.5L,sr,292,116.8,velocity,center_ux,0.5242229700088501 +illusion_1.5L,sr,292,116.8,velocity,center_uy,0.5670421123504639 +illusion_1.5L,sr,292,116.8,velocity,lower_ux,0.7894637584686279 +illusion_1.5L,sr,292,116.8,velocity,lower_uy,0.24985556304454803 +illusion_1.5L,sr,293,117.2,velocity,upper_ux,1.127123236656189 +illusion_1.5L,sr,293,117.2,velocity,upper_uy,0.18845286965370178 +illusion_1.5L,sr,293,117.2,velocity,center_ux,0.5874453186988831 +illusion_1.5L,sr,293,117.2,velocity,center_uy,0.6368994116783142 +illusion_1.5L,sr,293,117.2,velocity,lower_ux,0.8512433767318726 +illusion_1.5L,sr,293,117.2,velocity,lower_uy,0.31840676069259644 +illusion_1.5L,sr,294,117.6,velocity,upper_ux,0.9296524524688721 +illusion_1.5L,sr,294,117.6,velocity,upper_uy,0.345327764749527 +illusion_1.5L,sr,294,117.6,velocity,center_ux,0.6662952899932861 +illusion_1.5L,sr,294,117.6,velocity,center_uy,0.6441642642021179 +illusion_1.5L,sr,294,117.6,velocity,lower_ux,0.9178118705749512 +illusion_1.5L,sr,294,117.6,velocity,lower_uy,0.3737947940826416 +illusion_1.5L,sr,295,118.0,velocity,upper_ux,0.7658401727676392 +illusion_1.5L,sr,295,118.0,velocity,upper_uy,0.39512836933135986 +illusion_1.5L,sr,295,118.0,velocity,center_ux,0.7164088487625122 +illusion_1.5L,sr,295,118.0,velocity,center_uy,0.6675779223442078 +illusion_1.5L,sr,295,118.0,velocity,lower_ux,0.9890450239181519 +illusion_1.5L,sr,295,118.0,velocity,lower_uy,0.4168914556503296 +illusion_1.5L,sr,296,118.4,velocity,upper_ux,0.67242032289505 +illusion_1.5L,sr,296,118.4,velocity,upper_uy,0.35203564167022705 +illusion_1.5L,sr,296,118.4,velocity,center_ux,0.7436435222625732 +illusion_1.5L,sr,296,118.4,velocity,center_uy,0.6889419555664062 +illusion_1.5L,sr,296,118.4,velocity,lower_ux,1.0650027990341187 +illusion_1.5L,sr,296,118.4,velocity,lower_uy,0.4480702579021454 +illusion_1.5L,sr,297,118.8,velocity,upper_ux,0.6200610399246216 +illusion_1.5L,sr,297,118.8,velocity,upper_uy,0.26696720719337463 +illusion_1.5L,sr,297,118.8,velocity,center_ux,0.7515112161636353 +illusion_1.5L,sr,297,118.8,velocity,center_uy,0.667029857635498 +illusion_1.5L,sr,297,118.8,velocity,lower_ux,1.145573377609253 +illusion_1.5L,sr,297,118.8,velocity,lower_uy,0.4658558964729309 +illusion_1.5L,sr,298,119.2,velocity,upper_ux,0.5867646932601929 +illusion_1.5L,sr,298,119.2,velocity,upper_uy,0.16178014874458313 +illusion_1.5L,sr,298,119.2,velocity,center_ux,0.7399911284446716 +illusion_1.5L,sr,298,119.2,velocity,center_uy,0.5596137046813965 +illusion_1.5L,sr,298,119.2,velocity,lower_ux,1.2284953594207764 +illusion_1.5L,sr,298,119.2,velocity,lower_uy,0.4660762548446655 +illusion_1.5L,sr,299,119.6,velocity,upper_ux,0.5824500918388367 +illusion_1.5L,sr,299,119.6,velocity,upper_uy,0.04926333948969841 +illusion_1.5L,sr,299,119.6,velocity,center_ux,0.7084603905677795 +illusion_1.5L,sr,299,119.6,velocity,center_uy,0.36818352341651917 +illusion_1.5L,sr,299,119.6,velocity,lower_ux,1.305902361869812 +illusion_1.5L,sr,299,119.6,velocity,lower_uy,0.4409443140029907 +illusion_1.5L,sr,300,120.0,velocity,upper_ux,0.6212269067764282 +illusion_1.5L,sr,300,120.0,velocity,upper_uy,-0.04824748635292053 +illusion_1.5L,sr,300,120.0,velocity,center_ux,0.653107762336731 +illusion_1.5L,sr,300,120.0,velocity,center_uy,0.12226586043834686 +illusion_1.5L,sr,300,120.0,velocity,lower_ux,1.361573338508606 +illusion_1.5L,sr,300,120.0,velocity,lower_uy,0.3796733021736145 +illusion_1.5L,sr,301,120.4,velocity,upper_ux,0.6876345276832581 +illusion_1.5L,sr,301,120.4,velocity,upper_uy,-0.12551994621753693 +illusion_1.5L,sr,301,120.4,velocity,center_ux,0.5797807574272156 +illusion_1.5L,sr,301,120.4,velocity,center_uy,-0.16351057589054108 +illusion_1.5L,sr,301,120.4,velocity,lower_ux,1.3759338855743408 +illusion_1.5L,sr,301,120.4,velocity,lower_uy,0.27396267652511597 +illusion_1.5L,sr,302,120.8,velocity,upper_ux,0.751945972442627 +illusion_1.5L,sr,302,120.8,velocity,upper_uy,-0.2016008496284485 +illusion_1.5L,sr,302,120.8,velocity,center_ux,0.5243058204650879 +illusion_1.5L,sr,302,120.8,velocity,center_uy,-0.4430614709854126 +illusion_1.5L,sr,302,120.8,velocity,lower_ux,1.3365702629089355 +illusion_1.5L,sr,302,120.8,velocity,lower_uy,0.12392282485961914 +illusion_1.5L,sr,303,121.2,velocity,upper_ux,0.8119122385978699 +illusion_1.5L,sr,303,121.2,velocity,upper_uy,-0.27673372626304626 +illusion_1.5L,sr,303,121.2,velocity,center_ux,0.5396649241447449 +illusion_1.5L,sr,303,121.2,velocity,center_uy,-0.6095404624938965 +illusion_1.5L,sr,303,121.2,velocity,lower_ux,1.231439232826233 +illusion_1.5L,sr,303,121.2,velocity,lower_uy,-0.06344149261713028 +illusion_1.5L,sr,304,121.6,velocity,upper_ux,0.875338613986969 +illusion_1.5L,sr,304,121.6,velocity,upper_uy,-0.34046101570129395 +illusion_1.5L,sr,304,121.6,velocity,center_ux,0.6185399889945984 +illusion_1.5L,sr,304,121.6,velocity,center_uy,-0.6395840048789978 +illusion_1.5L,sr,304,121.6,velocity,lower_ux,1.0555752515792847 +illusion_1.5L,sr,304,121.6,velocity,lower_uy,-0.25550124049186707 +illusion_1.5L,sr,305,122.0,velocity,upper_ux,0.9435754418373108 +illusion_1.5L,sr,305,122.0,velocity,upper_uy,-0.3911822438240051 +illusion_1.5L,sr,305,122.0,velocity,center_ux,0.6876035332679749 +illusion_1.5L,sr,305,122.0,velocity,center_uy,-0.6510584950447083 +illusion_1.5L,sr,305,122.0,velocity,lower_ux,0.8612115979194641 +illusion_1.5L,sr,305,122.0,velocity,lower_uy,-0.37712737917900085 +illusion_1.5L,sr,306,122.4,velocity,upper_ux,1.0165202617645264 +illusion_1.5L,sr,306,122.4,velocity,upper_uy,-0.42991694808006287 +illusion_1.5L,sr,306,122.4,velocity,center_ux,0.7282736301422119 +illusion_1.5L,sr,306,122.4,velocity,center_uy,-0.6775714755058289 +illusion_1.5L,sr,306,122.4,velocity,lower_ux,0.7236354351043701 +illusion_1.5L,sr,306,122.4,velocity,lower_uy,-0.38680925965309143 +illusion_1.5L,sr,307,122.8,velocity,upper_ux,1.0942983627319336 +illusion_1.5L,sr,307,122.8,velocity,upper_uy,-0.45644837617874146 +illusion_1.5L,sr,307,122.8,velocity,center_ux,0.7483232021331787 +illusion_1.5L,sr,307,122.8,velocity,center_uy,-0.6884771585464478 +illusion_1.5L,sr,307,122.8,velocity,lower_ux,0.6498554944992065 +illusion_1.5L,sr,307,122.8,velocity,lower_uy,-0.32350197434425354 +illusion_1.5L,sr,308,123.2,velocity,upper_ux,1.1762505769729614 +illusion_1.5L,sr,308,123.2,velocity,upper_uy,-0.46839767694473267 +illusion_1.5L,sr,308,123.2,velocity,center_ux,0.7490291595458984 +illusion_1.5L,sr,308,123.2,velocity,center_uy,-0.6383458971977234 +illusion_1.5L,sr,308,123.2,velocity,lower_ux,0.6052203178405762 +illusion_1.5L,sr,308,123.2,velocity,lower_uy,-0.22978562116622925 +illusion_1.5L,sr,309,123.6,velocity,upper_ux,1.258446455001831 +illusion_1.5L,sr,309,123.6,velocity,upper_uy,-0.46034884452819824 +illusion_1.5L,sr,309,123.6,velocity,center_ux,0.7303270697593689 +illusion_1.5L,sr,309,123.6,velocity,center_uy,-0.49675124883651733 +illusion_1.5L,sr,309,123.6,velocity,lower_ux,0.5805396437644958 +illusion_1.5L,sr,309,123.6,velocity,lower_uy,-0.11981917172670364 +illusion_1.5L,sr,310,124.0,velocity,upper_ux,1.3300163745880127 +illusion_1.5L,sr,310,124.0,velocity,upper_uy,-0.4231283664703369 +illusion_1.5L,sr,310,124.0,velocity,center_ux,0.690419614315033 +illusion_1.5L,sr,310,124.0,velocity,center_uy,-0.2824746370315552 +illusion_1.5L,sr,310,124.0,velocity,lower_ux,0.5916237831115723 +illusion_1.5L,sr,310,124.0,velocity,lower_uy,-0.010365131311118603 +illusion_1.5L,sr,311,124.4,velocity,upper_ux,1.3723829984664917 +illusion_1.5L,sr,311,124.4,velocity,upper_uy,-0.34598293900489807 +illusion_1.5L,sr,311,124.4,velocity,center_ux,0.6264343857765198 +illusion_1.5L,sr,311,124.4,velocity,center_uy,-0.02025940828025341 +illusion_1.5L,sr,311,124.4,velocity,lower_ux,0.6443431973457336 +illusion_1.5L,sr,311,124.4,velocity,lower_uy,0.07819145172834396 +illusion_1.5L,sr,312,124.8,velocity,upper_ux,1.3679230213165283 +illusion_1.5L,sr,312,124.8,velocity,upper_uy,-0.22352223098278046 +illusion_1.5L,sr,312,124.8,velocity,center_ux,0.5538473129272461 +illusion_1.5L,sr,312,124.8,velocity,center_uy,0.2722586989402771 +illusion_1.5L,sr,312,124.8,velocity,lower_ux,0.7123839855194092 +illusion_1.5L,sr,312,124.8,velocity,lower_uy,0.15298013389110565 +illusion_1.5L,sr,313,125.2,velocity,upper_ux,1.3062504529953003 +illusion_1.5L,sr,313,125.2,velocity,upper_uy,-0.058543261140584946 +illusion_1.5L,sr,313,125.2,velocity,center_ux,0.5192168951034546 +illusion_1.5L,sr,313,125.2,velocity,center_uy,0.5232456922531128 +illusion_1.5L,sr,313,125.2,velocity,lower_ux,0.7740283012390137 +illusion_1.5L,sr,313,125.2,velocity,lower_uy,0.230092853307724 +illusion_1.5L,sr,314,125.6,velocity,upper_ux,1.1737582683563232 +illusion_1.5L,sr,314,125.6,velocity,upper_uy,0.1367516815662384 +illusion_1.5L,sr,314,125.6,velocity,center_ux,0.5648623704910278 +illusion_1.5L,sr,314,125.6,velocity,center_uy,0.6308433413505554 +illusion_1.5L,sr,314,125.6,velocity,lower_ux,0.834746778011322 +illusion_1.5L,sr,314,125.6,velocity,lower_uy,0.30176904797554016 +illusion_1.5L,sr,315,126.0,velocity,upper_ux,0.9816327095031738 +illusion_1.5L,sr,315,126.0,velocity,upper_uy,0.3121987283229828 +illusion_1.5L,sr,315,126.0,velocity,center_ux,0.6472285985946655 +illusion_1.5L,sr,315,126.0,velocity,center_uy,0.6413715481758118 +illusion_1.5L,sr,315,126.0,velocity,lower_ux,0.8999050259590149 +illusion_1.5L,sr,315,126.0,velocity,lower_uy,0.3606099784374237 +illusion_1.5L,sr,316,126.4,velocity,upper_ux,0.801668107509613 +illusion_1.5L,sr,316,126.4,velocity,upper_uy,0.3926308751106262 +illusion_1.5L,sr,316,126.4,velocity,center_ux,0.7048909068107605 +illusion_1.5L,sr,316,126.4,velocity,center_uy,0.6603208780288696 +illusion_1.5L,sr,316,126.4,velocity,lower_ux,0.9697909355163574 +illusion_1.5L,sr,316,126.4,velocity,lower_uy,0.4068485498428345 +illusion_1.5L,sr,317,126.8,velocity,upper_ux,0.6906763315200806 +illusion_1.5L,sr,317,126.8,velocity,upper_uy,0.36884990334510803 +illusion_1.5L,sr,317,126.8,velocity,center_ux,0.7374392151832581 +illusion_1.5L,sr,317,126.8,velocity,center_uy,0.6855273246765137 +illusion_1.5L,sr,317,126.8,velocity,lower_ux,1.0444860458374023 +illusion_1.5L,sr,317,126.8,velocity,lower_uy,0.44122937321662903 +illusion_1.5L,sr,318,127.2,velocity,upper_ux,0.631054162979126 +illusion_1.5L,sr,318,127.2,velocity,upper_uy,0.2914018929004669 +illusion_1.5L,sr,318,127.2,velocity,center_ux,0.7504317760467529 +illusion_1.5L,sr,318,127.2,velocity,center_uy,0.679607093334198 +illusion_1.5L,sr,318,127.2,velocity,lower_ux,1.1240142583847046 +illusion_1.5L,sr,318,127.2,velocity,lower_uy,0.4628160893917084 +illusion_1.5L,sr,319,127.6,velocity,upper_ux,0.5930308699607849 +illusion_1.5L,sr,319,127.6,velocity,upper_uy,0.1905677169561386 +illusion_1.5L,sr,319,127.6,velocity,center_ux,0.7440254092216492 +illusion_1.5L,sr,319,127.6,velocity,center_uy,0.5967872142791748 +illusion_1.5L,sr,319,127.6,velocity,lower_ux,1.206837773323059 +illusion_1.5L,sr,319,127.6,velocity,lower_uy,0.468237966299057 +illusion_1.5L,sr,320,128.0,velocity,upper_ux,0.5794116854667664 +illusion_1.5L,sr,320,128.0,velocity,upper_uy,0.07814723253250122 +illusion_1.5L,sr,320,128.0,velocity,center_ux,0.7179905772209167 +illusion_1.5L,sr,320,128.0,velocity,center_uy,0.4244868755340576 +illusion_1.5L,sr,320,128.0,velocity,lower_ux,1.286836862564087 +illusion_1.5L,sr,320,128.0,velocity,lower_uy,0.4507066011428833 +illusion_1.5L,sr,321,128.4,velocity,upper_ux,0.6068851351737976 +illusion_1.5L,sr,321,128.4,velocity,upper_uy,-0.02501753717660904 +illusion_1.5L,sr,321,128.4,velocity,center_ux,0.6691338419914246 +illusion_1.5L,sr,321,128.4,velocity,center_uy,0.1911097913980484 +illusion_1.5L,sr,321,128.4,velocity,lower_ux,1.3499810695648193 +illusion_1.5L,sr,321,128.4,velocity,lower_uy,0.3999430537223816 +illusion_1.5L,sr,322,128.8,velocity,upper_ux,0.6693456768989563 +illusion_1.5L,sr,322,128.8,velocity,upper_uy,-0.1059023067355156 +illusion_1.5L,sr,322,128.8,velocity,center_ux,0.5985012650489807 +illusion_1.5L,sr,322,128.8,velocity,center_uy,-0.08573079854249954 +illusion_1.5L,sr,322,128.8,velocity,lower_ux,1.3766562938690186 +illusion_1.5L,sr,322,128.8,velocity,lower_uy,0.30629023909568787 +illusion_1.5L,sr,323,129.2,velocity,upper_ux,0.73573899269104 +illusion_1.5L,sr,323,129.2,velocity,upper_uy,-0.18096761405467987 +illusion_1.5L,sr,323,129.2,velocity,center_ux,0.5331649780273438 +illusion_1.5L,sr,323,129.2,velocity,center_uy,-0.37530526518821716 +illusion_1.5L,sr,323,129.2,velocity,lower_ux,1.3523744344711304 +illusion_1.5L,sr,323,129.2,velocity,lower_uy,0.16769738495349884 +illusion_1.5L,sr,324,129.6,velocity,upper_ux,0.7959218621253967 +illusion_1.5L,sr,324,129.6,velocity,upper_uy,-0.2576132118701935 +illusion_1.5L,sr,324,129.6,velocity,center_ux,0.526165246963501 +illusion_1.5L,sr,324,129.6,velocity,center_uy,-0.5816469788551331 +illusion_1.5L,sr,324,129.6,velocity,lower_ux,1.2665306329727173 +illusion_1.5L,sr,324,129.6,velocity,lower_uy,-0.010794166475534439 +illusion_1.5L,sr,325,130.0,velocity,upper_ux,0.8580811023712158 +illusion_1.5L,sr,325,130.0,velocity,upper_uy,-0.3248678147792816 +illusion_1.5L,sr,325,130.0,velocity,center_ux,0.5951434373855591 +illusion_1.5L,sr,325,130.0,velocity,center_uy,-0.6382154226303101 +illusion_1.5L,sr,325,130.0,velocity,lower_ux,1.1077159643173218 +illusion_1.5L,sr,325,130.0,velocity,lower_uy,-0.20729656517505646 +illusion_1.5L,sr,326,130.4,velocity,upper_ux,0.924944281578064 +illusion_1.5L,sr,326,130.4,velocity,upper_uy,-0.3789592683315277 +illusion_1.5L,sr,326,130.4,velocity,center_ux,0.6716392636299133 +illusion_1.5L,sr,326,130.4,velocity,center_uy,-0.6458334922790527 +illusion_1.5L,sr,326,130.4,velocity,lower_ux,0.9099041819572449 +illusion_1.5L,sr,326,130.4,velocity,lower_uy,-0.3550332188606262 +illusion_1.5L,sr,327,130.8,velocity,upper_ux,0.9964950680732727 +illusion_1.5L,sr,327,130.8,velocity,upper_uy,-0.42085734009742737 +illusion_1.5L,sr,327,130.8,velocity,center_ux,0.7188391089439392 +illusion_1.5L,sr,327,130.8,velocity,center_uy,-0.6704829335212708 +illusion_1.5L,sr,327,130.8,velocity,lower_ux,0.75254225730896 +illusion_1.5L,sr,327,130.8,velocity,lower_uy,-0.3934856653213501 +illusion_1.5L,sr,328,131.2,velocity,upper_ux,1.0729739665985107 +illusion_1.5L,sr,328,131.2,velocity,upper_uy,-0.4507793188095093 +illusion_1.5L,sr,328,131.2,velocity,center_ux,0.7440254092216492 +illusion_1.5L,sr,328,131.2,velocity,center_uy,-0.6894242763519287 +illusion_1.5L,sr,328,131.2,velocity,lower_ux,0.6647729277610779 +illusion_1.5L,sr,328,131.2,velocity,lower_uy,-0.3442356586456299 +illusion_1.5L,sr,329,131.6,velocity,upper_ux,1.154077410697937 +illusion_1.5L,sr,329,131.6,velocity,upper_uy,-0.4670049250125885 +illusion_1.5L,sr,329,131.6,velocity,center_ux,0.7499687075614929 +illusion_1.5L,sr,329,131.6,velocity,center_uy,-0.6600915789604187 +illusion_1.5L,sr,329,131.6,velocity,lower_ux,0.6149182319641113 +illusion_1.5L,sr,329,131.6,velocity,lower_uy,-0.25654730200767517 +illusion_1.5L,sr,330,132.0,velocity,upper_ux,1.2369798421859741 +illusion_1.5L,sr,330,132.0,velocity,upper_uy,-0.465020090341568 +illusion_1.5L,sr,330,132.0,velocity,center_ux,0.7365269660949707 +illusion_1.5L,sr,330,132.0,velocity,center_uy,-0.5429009795188904 +illusion_1.5L,sr,330,132.0,velocity,lower_ux,0.5841336846351624 +illusion_1.5L,sr,330,132.0,velocity,lower_uy,-0.14987584948539734 +illusion_1.5L,sr,331,132.4,velocity,upper_ux,1.312876582145691 +illusion_1.5L,sr,331,132.4,velocity,upper_uy,-0.43663156032562256 +illusion_1.5L,sr,331,132.4,velocity,center_ux,0.7027267217636108 +illusion_1.5L,sr,331,132.4,velocity,center_uy,-0.3447060286998749 +illusion_1.5L,sr,331,132.4,velocity,lower_ux,0.5841382145881653 +illusion_1.5L,sr,331,132.4,velocity,lower_uy,-0.03803535923361778 +illusion_1.5L,sr,332,132.8,velocity,upper_ux,1.3648594617843628 +illusion_1.5L,sr,332,132.8,velocity,upper_uy,-0.37101972103118896 +illusion_1.5L,sr,332,132.8,velocity,center_ux,0.6448290944099426 +illusion_1.5L,sr,332,132.8,velocity,center_uy,-0.09435353428125381 +illusion_1.5L,sr,332,132.8,velocity,lower_ux,0.6271570324897766 +illusion_1.5L,sr,332,132.8,velocity,lower_uy,0.05674416571855545 +illusion_1.5L,sr,333,133.2,velocity,upper_ux,1.3740005493164062 +illusion_1.5L,sr,333,133.2,velocity,upper_uy,-0.26071757078170776 +illusion_1.5L,sr,333,133.2,velocity,center_ux,0.5711749792098999 +illusion_1.5L,sr,333,133.2,velocity,center_uy,0.1936352550983429 +illusion_1.5L,sr,333,133.2,velocity,lower_ux,0.6944291591644287 +illusion_1.5L,sr,333,133.2,velocity,lower_uy,0.1328473687171936 +illusion_1.5L,sr,334,133.6,velocity,upper_ux,1.328845500946045 +illusion_1.5L,sr,334,133.6,velocity,upper_uy,-0.10679027438163757 +illusion_1.5L,sr,334,133.6,velocity,center_ux,0.5206601023674011 +illusion_1.5L,sr,334,133.6,velocity,center_uy,0.4667482078075409 +illusion_1.5L,sr,334,133.6,velocity,lower_ux,0.7579492330551147 +illusion_1.5L,sr,334,133.6,velocity,lower_uy,0.2092723250389099 +illusion_1.5L,sr,335,134.0,velocity,upper_ux,1.216877818107605 +illusion_1.5L,sr,335,134.0,velocity,upper_uy,0.0826859399676323 +illusion_1.5L,sr,335,134.0,velocity,center_ux,0.544623851776123 +illusion_1.5L,sr,335,134.0,velocity,center_uy,0.6171947717666626 +illusion_1.5L,sr,335,134.0,velocity,lower_ux,0.8180776834487915 +illusion_1.5L,sr,335,134.0,velocity,lower_uy,0.2836315631866455 +illusion_1.5L,sr,336,134.4,velocity,upper_ux,1.036201000213623 +illusion_1.5L,sr,336,134.4,velocity,upper_uy,0.2710173726081848 +illusion_1.5L,sr,336,134.4,velocity,center_ux,0.6257054805755615 +illusion_1.5L,sr,336,134.4,velocity,center_uy,0.6399877667427063 +illusion_1.5L,sr,336,134.4,velocity,lower_ux,0.8819394111633301 +illusion_1.5L,sr,336,134.4,velocity,lower_uy,0.34607994556427 +illusion_1.5L,sr,337,134.8,velocity,upper_ux,0.8444483876228333 +illusion_1.5L,sr,337,134.8,velocity,upper_uy,0.3821694552898407 +illusion_1.5L,sr,337,134.8,velocity,center_ux,0.6916981339454651 +illusion_1.5L,sr,337,134.8,velocity,center_uy,0.6533685326576233 +illusion_1.5L,sr,337,134.8,velocity,lower_ux,0.9504707455635071 +illusion_1.5L,sr,337,134.8,velocity,lower_uy,0.39562472701072693 +illusion_1.5L,sr,338,135.2,velocity,upper_ux,0.7134925723075867 +illusion_1.5L,sr,338,135.2,velocity,upper_uy,0.3825374245643616 +illusion_1.5L,sr,338,135.2,velocity,center_ux,0.7299537062644958 +illusion_1.5L,sr,338,135.2,velocity,center_uy,0.6799362897872925 +illusion_1.5L,sr,338,135.2,velocity,lower_ux,1.0237247943878174 +illusion_1.5L,sr,338,135.2,velocity,lower_uy,0.4332290589809418 +illusion_1.5L,sr,339,135.6,velocity,upper_ux,0.6437656283378601 +illusion_1.5L,sr,339,135.6,velocity,upper_uy,0.3150792121887207 +illusion_1.5L,sr,339,135.6,velocity,center_ux,0.748087465763092 +illusion_1.5L,sr,339,135.6,velocity,center_uy,0.686928927898407 +illusion_1.5L,sr,339,135.6,velocity,lower_ux,1.101973295211792 +illusion_1.5L,sr,339,135.6,velocity,lower_uy,0.45849189162254333 +illusion_1.5L,sr,340,136.0,velocity,upper_ux,0.6011289358139038 +illusion_1.5L,sr,340,136.0,velocity,upper_uy,0.21935199201107025 +illusion_1.5L,sr,340,136.0,velocity,center_ux,0.7469860911369324 +illusion_1.5L,sr,340,136.0,velocity,center_uy,0.6284046769142151 +illusion_1.5L,sr,340,136.0,velocity,lower_ux,1.1843147277832031 +illusion_1.5L,sr,340,136.0,velocity,lower_uy,0.46878448128700256 +illusion_1.5L,sr,341,136.4,velocity,upper_ux,0.579441249370575 +illusion_1.5L,sr,341,136.4,velocity,upper_uy,0.10855428874492645 +illusion_1.5L,sr,341,136.4,velocity,center_ux,0.7264863848686218 +illusion_1.5L,sr,341,136.4,velocity,center_uy,0.4782666862010956 +illusion_1.5L,sr,341,136.4,velocity,lower_ux,1.2661504745483398 +illusion_1.5L,sr,341,136.4,velocity,lower_uy,0.4583262503147125 +illusion_1.5L,sr,342,136.8,velocity,upper_ux,0.5949985980987549 +illusion_1.5L,sr,342,136.8,velocity,upper_uy,0.0006557253072969615 +illusion_1.5L,sr,342,136.8,velocity,center_ux,0.6842921376228333 +illusion_1.5L,sr,342,136.8,velocity,center_uy,0.2587290406227112 +illusion_1.5L,sr,342,136.8,velocity,lower_ux,1.335644245147705 +illusion_1.5L,sr,342,136.8,velocity,lower_uy,0.41763392090797424 +illusion_1.5L,sr,343,137.2,velocity,upper_ux,0.6507136821746826 +illusion_1.5L,sr,343,137.2,velocity,upper_uy,-0.08549927920103073 +illusion_1.5L,sr,343,137.2,velocity,center_ux,0.6182510852813721 +illusion_1.5L,sr,343,137.2,velocity,center_uy,-0.007321265526115894 +illusion_1.5L,sr,343,137.2,velocity,lower_ux,1.3738540410995483 +illusion_1.5L,sr,343,137.2,velocity,lower_uy,0.33618617057800293 +illusion_1.5L,sr,344,137.6,velocity,upper_ux,0.7184746265411377 +illusion_1.5L,sr,344,137.6,velocity,upper_uy,-0.16006749868392944 +illusion_1.5L,sr,344,137.6,velocity,center_ux,0.5468510985374451 +illusion_1.5L,sr,344,137.6,velocity,center_uy,-0.2998289167881012 +illusion_1.5L,sr,344,137.6,velocity,lower_ux,1.3641881942749023 +illusion_1.5L,sr,344,137.6,velocity,lower_uy,0.20957094430923462 +illusion_1.5L,sr,345,138.0,velocity,upper_ux,0.7795977592468262 +illusion_1.5L,sr,345,138.0,velocity,upper_uy,-0.23722900450229645 +illusion_1.5L,sr,345,138.0,velocity,center_ux,0.518829882144928 +illusion_1.5L,sr,345,138.0,velocity,center_uy,-0.5405226945877075 +illusion_1.5L,sr,345,138.0,velocity,lower_ux,1.2966705560684204 +illusion_1.5L,sr,345,138.0,velocity,lower_uy,0.0412750244140625 +illusion_1.5L,sr,346,138.4,velocity,upper_ux,0.8407139778137207 +illusion_1.5L,sr,346,138.4,velocity,upper_uy,-0.30785906314849854 +illusion_1.5L,sr,346,138.4,velocity,center_ux,0.5714902281761169 +illusion_1.5L,sr,346,138.4,velocity,center_uy,-0.6337824463844299 +illusion_1.5L,sr,346,138.4,velocity,lower_ux,1.1577244997024536 +illusion_1.5L,sr,346,138.4,velocity,lower_uy,-0.1546139270067215 +illusion_1.5L,sr,347,138.8,velocity,upper_ux,0.9063156843185425 +illusion_1.5L,sr,347,138.8,velocity,upper_uy,-0.36550673842430115 +illusion_1.5L,sr,347,138.8,velocity,center_ux,0.6532109975814819 +illusion_1.5L,sr,347,138.8,velocity,center_uy,-0.6422293186187744 +illusion_1.5L,sr,347,138.8,velocity,lower_ux,0.9633230566978455 +illusion_1.5L,sr,347,138.8,velocity,lower_uy,-0.3238264322280884 +illusion_1.5L,sr,348,139.2,velocity,upper_ux,0.9765072464942932 +illusion_1.5L,sr,348,139.2,velocity,upper_uy,-0.4106656312942505 +illusion_1.5L,sr,348,139.2,velocity,center_ux,0.7080091238021851 +illusion_1.5L,sr,348,139.2,velocity,center_uy,-0.6628848314285278 +illusion_1.5L,sr,348,139.2,velocity,lower_ux,0.788119912147522 +illusion_1.5L,sr,348,139.2,velocity,lower_uy,-0.39370647072792053 +illusion_1.5L,sr,349,139.6,velocity,upper_ux,1.0515086650848389 +illusion_1.5L,sr,349,139.6,velocity,upper_uy,-0.4439466595649719 +illusion_1.5L,sr,349,139.6,velocity,center_ux,0.738467276096344 +illusion_1.5L,sr,349,139.6,velocity,center_uy,-0.6869417428970337 +illusion_1.5L,sr,349,139.6,velocity,lower_ux,0.6829317212104797 +illusion_1.5L,sr,349,139.6,velocity,lower_uy,-0.3629339933395386 +illusion_1.5L,sr,350,140.0,velocity,upper_ux,1.1314435005187988 +illusion_1.5L,sr,350,140.0,velocity,upper_uy,-0.4642244279384613 +illusion_1.5L,sr,350,140.0,velocity,center_ux,0.7496215105056763 +illusion_1.5L,sr,350,140.0,velocity,center_uy,-0.6756269931793213 +illusion_1.5L,sr,350,140.0,velocity,lower_ux,0.6260518431663513 +illusion_1.5L,sr,350,140.0,velocity,lower_uy,-0.2826370596885681 +illusion_1.5L,sr,351,140.4,velocity,upper_ux,1.2144594192504883 +illusion_1.5L,sr,351,140.4,velocity,upper_uy,-0.4678472876548767 +illusion_1.5L,sr,351,140.4,velocity,center_ux,0.7415212988853455 +illusion_1.5L,sr,351,140.4,velocity,center_uy,-0.5841166973114014 +illusion_1.5L,sr,351,140.4,velocity,lower_ux,0.5899929404258728 +illusion_1.5L,sr,351,140.4,velocity,lower_uy,-0.18021534383296967 +illusion_1.5L,sr,352,140.8,velocity,upper_ux,1.2936805486679077 +illusion_1.5L,sr,352,140.8,velocity,upper_uy,-0.44767430424690247 +illusion_1.5L,sr,352,140.8,velocity,center_ux,0.7137261033058167 +illusion_1.5L,sr,352,140.8,velocity,center_uy,-0.4048244059085846 +illusion_1.5L,sr,352,140.8,velocity,lower_ux,0.5798863768577576 +illusion_1.5L,sr,352,140.8,velocity,lower_uy,-0.06773458421230316 +illusion_1.5L,sr,353,141.2,velocity,upper_ux,1.3541710376739502 +illusion_1.5L,sr,353,141.2,velocity,upper_uy,-0.39324843883514404 +illusion_1.5L,sr,353,141.2,velocity,center_ux,0.6626238226890564 +illusion_1.5L,sr,353,141.2,velocity,center_uy,-0.1671026647090912 +illusion_1.5L,sr,353,141.2,velocity,lower_ux,0.6115754842758179 +illusion_1.5L,sr,353,141.2,velocity,lower_uy,0.03329705074429512 +illusion_1.5L,sr,354,141.6,velocity,upper_ux,1.376379132270813 +illusion_1.5L,sr,354,141.6,velocity,upper_uy,-0.2954380214214325 +illusion_1.5L,sr,354,141.6,velocity,center_ux,0.590761661529541 +illusion_1.5L,sr,354,141.6,velocity,center_uy,0.11274799704551697 +illusion_1.5L,sr,354,141.6,velocity,lower_ux,0.6756324768066406 +illusion_1.5L,sr,354,141.6,velocity,lower_uy,0.11255089938640594 +illusion_1.5L,sr,355,142.0,velocity,upper_ux,1.3469189405441284 +illusion_1.5L,sr,355,142.0,velocity,upper_uy,-0.15311689674854279 +illusion_1.5L,sr,355,142.0,velocity,center_ux,0.5283150672912598 +illusion_1.5L,sr,355,142.0,velocity,center_uy,0.39934319257736206 +illusion_1.5L,sr,355,142.0,velocity,lower_ux,0.74122154712677 +illusion_1.5L,sr,355,142.0,velocity,lower_uy,0.18788877129554749 +illusion_1.5L,sr,356,142.4,velocity,upper_ux,1.2550463676452637 +illusion_1.5L,sr,356,142.4,velocity,upper_uy,0.02802000194787979 +illusion_1.5L,sr,356,142.4,velocity,center_ux,0.5288584232330322 +illusion_1.5L,sr,356,142.4,velocity,center_uy,0.5924992561340332 +illusion_1.5L,sr,356,142.4,velocity,lower_ux,0.8012580871582031 +illusion_1.5L,sr,356,142.4,velocity,lower_uy,0.2641354501247406 +illusion_1.5L,sr,357,142.8,velocity,upper_ux,1.0907765626907349 +illusion_1.5L,sr,357,142.8,velocity,upper_uy,0.22310997545719147 +illusion_1.5L,sr,357,142.8,velocity,center_ux,0.6021072864532471 +illusion_1.5L,sr,357,142.8,velocity,center_uy,0.638923168182373 +illusion_1.5L,sr,357,142.8,velocity,lower_ux,0.8639046549797058 +illusion_1.5L,sr,357,142.8,velocity,lower_uy,0.330247700214386 +illusion_1.5L,sr,358,143.2,velocity,upper_ux,0.8934643268585205 +illusion_1.5L,sr,358,143.2,velocity,upper_uy,0.36259639263153076 +illusion_1.5L,sr,358,143.2,velocity,center_ux,0.6764116883277893 +illusion_1.5L,sr,358,143.2,velocity,center_uy,0.6474255919456482 +illusion_1.5L,sr,358,143.2,velocity,lower_ux,0.9312079548835754 +illusion_1.5L,sr,358,143.2,velocity,lower_uy,0.3832422196865082 +illusion_1.5L,sr,359,143.6,velocity,upper_ux,0.74196457862854 +illusion_1.5L,sr,359,143.6,velocity,upper_uy,0.39150261878967285 +illusion_1.5L,sr,359,143.6,velocity,center_ux,0.7212156653404236 +illusion_1.5L,sr,359,143.6,velocity,center_uy,0.6728951334953308 +illusion_1.5L,sr,359,143.6,velocity,lower_ux,1.0030816793441772 +illusion_1.5L,sr,359,143.6,velocity,lower_uy,0.42412105202674866 +illusion_1.5L,sr,360,144.0,velocity,upper_ux,0.6587112545967102 +illusion_1.5L,sr,360,144.0,velocity,upper_uy,0.3373351991176605 +illusion_1.5L,sr,360,144.0,velocity,center_ux,0.7444861531257629 +illusion_1.5L,sr,360,144.0,velocity,center_uy,0.6894273161888123 +illusion_1.5L,sr,360,144.0,velocity,lower_ux,1.0798534154891968 +illusion_1.5L,sr,360,144.0,velocity,lower_uy,0.4529477059841156 +illusion_1.5L,sr,361,144.4,velocity,upper_ux,0.610774576663971 +illusion_1.5L,sr,361,144.4,velocity,upper_uy,0.24754634499549866 +illusion_1.5L,sr,361,144.4,velocity,center_ux,0.7486498355865479 +illusion_1.5L,sr,361,144.4,velocity,center_uy,0.6534280180931091 +illusion_1.5L,sr,361,144.4,velocity,lower_ux,1.161267876625061 +illusion_1.5L,sr,361,144.4,velocity,lower_uy,0.46778491139411926 +illusion_1.5L,sr,362,144.8,velocity,upper_ux,0.5822415947914124 +illusion_1.5L,sr,362,144.8,velocity,upper_uy,0.13974028825759888 +illusion_1.5L,sr,362,144.8,velocity,center_ux,0.7335964441299438 +illusion_1.5L,sr,362,144.8,velocity,center_uy,0.5280107259750366 +illusion_1.5L,sr,362,144.8,velocity,lower_ux,1.2441017627716064 +illusion_1.5L,sr,362,144.8,velocity,lower_uy,0.46382632851600647 +illusion_1.5L,sr,363,145.2,velocity,upper_ux,0.5861506462097168 +illusion_1.5L,sr,363,145.2,velocity,upper_uy,0.028661906719207764 +illusion_1.5L,sr,363,145.2,velocity,center_ux,0.6979871988296509 +illusion_1.5L,sr,363,145.2,velocity,center_uy,0.32429927587509155 +illusion_1.5L,sr,363,145.2,velocity,lower_ux,1.3187347650527954 +illusion_1.5L,sr,363,145.2,velocity,lower_uy,0.4325527846813202 +illusion_1.5L,sr,364,145.6,velocity,upper_ux,0.6326749920845032 +illusion_1.5L,sr,364,145.6,velocity,upper_uy,-0.06384874880313873 +illusion_1.5L,sr,364,145.6,velocity,center_ux,0.6380532383918762 +illusion_1.5L,sr,364,145.6,velocity,center_uy,0.07013381272554398 +illusion_1.5L,sr,364,145.6,velocity,lower_ux,1.3675405979156494 +illusion_1.5L,sr,364,145.6,velocity,lower_uy,0.3631690740585327 +illusion_1.5L,sr,365,146.0,velocity,upper_ux,0.7003046274185181 +illusion_1.5L,sr,365,146.0,velocity,upper_uy,-0.13923068344593048 +illusion_1.5L,sr,365,146.0,velocity,center_ux,0.5643205642700195 +illusion_1.5L,sr,365,146.0,velocity,center_uy,-0.21948349475860596 +illusion_1.5L,sr,365,146.0,velocity,lower_ux,1.3720779418945312 +illusion_1.5L,sr,365,146.0,velocity,lower_uy,0.24895481765270233 +illusion_1.5L,sr,366,146.4,velocity,upper_ux,0.7630182504653931 +illusion_1.5L,sr,366,146.4,velocity,upper_uy,-0.21592706441879272 +illusion_1.5L,sr,366,146.4,velocity,center_ux,0.518404483795166 +illusion_1.5L,sr,366,146.4,velocity,center_uy,-0.486145555973053 +illusion_1.5L,sr,366,146.4,velocity,lower_ux,1.3216941356658936 +illusion_1.5L,sr,366,146.4,velocity,lower_uy,0.09170672297477722 +illusion_1.5L,sr,367,146.8,velocity,upper_ux,0.8232925534248352 +illusion_1.5L,sr,367,146.8,velocity,upper_uy,-0.2895127236843109 +illusion_1.5L,sr,367,146.8,velocity,center_ux,0.5496396422386169 +illusion_1.5L,sr,367,146.8,velocity,center_uy,-0.6226407885551453 +illusion_1.5L,sr,367,146.8,velocity,lower_ux,1.2036218643188477 +illusion_1.5L,sr,367,146.8,velocity,lower_uy,-0.09944243729114532 +illusion_1.5L,sr,368,147.2,velocity,upper_ux,0.8876527547836304 +illusion_1.5L,sr,368,147.2,velocity,upper_uy,-0.35083770751953125 +illusion_1.5L,sr,368,147.2,velocity,center_ux,0.6320130825042725 +illusion_1.5L,sr,368,147.2,velocity,center_uy,-0.6403543949127197 +illusion_1.5L,sr,368,147.2,velocity,lower_ux,1.0192182064056396 +illusion_1.5L,sr,368,147.2,velocity,lower_uy,-0.2840481400489807 +illusion_1.5L,sr,369,147.6,velocity,upper_ux,0.9566246867179871 +illusion_1.5L,sr,369,147.6,velocity,upper_uy,-0.3993665277957916 +illusion_1.5L,sr,369,147.6,velocity,center_ux,0.6954410076141357 +illusion_1.5L,sr,369,147.6,velocity,center_uy,-0.6554799675941467 +illusion_1.5L,sr,369,147.6,velocity,lower_ux,0.8304691910743713 +illusion_1.5L,sr,369,147.6,velocity,lower_uy,-0.38585224747657776 +illusion_1.5L,sr,370,148.0,velocity,upper_ux,1.0302201509475708 +illusion_1.5L,sr,370,148.0,velocity,upper_uy,-0.43598899245262146 +illusion_1.5L,sr,370,148.0,velocity,center_ux,0.7317028641700745 +illusion_1.5L,sr,370,148.0,velocity,center_uy,-0.6818388104438782 +illusion_1.5L,sr,370,148.0,velocity,lower_ux,0.7053953409194946 +illusion_1.5L,sr,370,148.0,velocity,lower_uy,-0.3784150779247284 +illusion_1.5L,sr,371,148.4,velocity,upper_ux,1.1087422370910645 +illusion_1.5L,sr,371,148.4,velocity,upper_uy,-0.4601268470287323 +illusion_1.5L,sr,371,148.4,velocity,center_ux,0.748013436794281 +illusion_1.5L,sr,371,148.4,velocity,center_uy,-0.6850662231445312 +illusion_1.5L,sr,371,148.4,velocity,lower_ux,0.6388508677482605 +illusion_1.5L,sr,371,148.4,velocity,lower_uy,-0.3075891435146332 +illusion_1.5L,sr,372,148.8,velocity,upper_ux,1.1912603378295898 +illusion_1.5L,sr,372,148.8,velocity,upper_uy,-0.46891945600509644 +illusion_1.5L,sr,372,148.8,velocity,center_ux,0.7451940178871155 +illusion_1.5L,sr,372,148.8,velocity,center_uy,-0.6190359592437744 +illusion_1.5L,sr,372,148.8,velocity,lower_ux,0.5977904796600342 +illusion_1.5L,sr,372,148.8,velocity,lower_uy,-0.21019649505615234 +illusion_1.5L,sr,373,149.2,velocity,upper_ux,1.2726941108703613 +illusion_1.5L,sr,373,149.2,velocity,upper_uy,-0.4562741816043854 +illusion_1.5L,sr,373,149.2,velocity,center_ux,0.7231151461601257 +illusion_1.5L,sr,373,149.2,velocity,center_uy,-0.46169865131378174 +illusion_1.5L,sr,373,149.2,velocity,lower_ux,0.5788090229034424 +illusion_1.5L,sr,373,149.2,velocity,lower_uy,-0.09882766753435135 +illusion_1.5L,sr,374,149.6,velocity,upper_ux,1.3403855562210083 +illusion_1.5L,sr,374,149.6,velocity,upper_uy,-0.4124581515789032 +illusion_1.5L,sr,374,149.6,velocity,center_ux,0.6790465712547302 +illusion_1.5L,sr,374,149.6,velocity,center_uy,-0.23773083090782166 +illusion_1.5L,sr,374,149.6,velocity,lower_ux,0.5983901023864746 +illusion_1.5L,sr,374,149.6,velocity,lower_uy,0.007582191377878189 +illusion_1.5L,sr,375,150.0,velocity,upper_ux,1.374993085861206 +illusion_1.5L,sr,375,150.0,velocity,upper_uy,-0.32721978425979614 +illusion_1.5L,sr,375,150.0,velocity,center_ux,0.6114516258239746 +illusion_1.5L,sr,375,150.0,velocity,center_uy,0.03165474534034729 +illusion_1.5L,sr,375,150.0,velocity,lower_ux,0.6565529108047485 +illusion_1.5L,sr,375,150.0,velocity,lower_uy,0.09181687980890274 +illusion_1.5L,sr,376,150.4,velocity,upper_ux,1.3606822490692139 +illusion_1.5L,sr,376,150.4,velocity,upper_uy,-0.19698482751846313 +illusion_1.5L,sr,376,150.4,velocity,center_ux,0.5413973927497864 +illusion_1.5L,sr,376,150.4,velocity,center_uy,0.32369178533554077 +illusion_1.5L,sr,376,150.4,velocity,lower_ux,0.7238549590110779 +illusion_1.5L,sr,376,150.4,velocity,lower_uy,0.16638033092021942 +illusion_1.5L,sr,377,150.8,velocity,upper_ux,1.2877321243286133 +illusion_1.5L,sr,377,150.8,velocity,upper_uy,-0.025795500725507736 +illusion_1.5L,sr,377,150.8,velocity,center_ux,0.5194057822227478 +illusion_1.5L,sr,377,150.8,velocity,center_uy,0.5545167922973633 +illusion_1.5L,sr,377,150.8,velocity,lower_ux,0.7844498157501221 +illusion_1.5L,sr,377,150.8,velocity,lower_uy,0.2434913069009781 +illusion_1.5L,sr,378,151.2,velocity,upper_ux,1.1429938077926636 +illusion_1.5L,sr,378,151.2,velocity,upper_uy,0.17033761739730835 +illusion_1.5L,sr,378,151.2,velocity,center_ux,0.5777229070663452 +illusion_1.5L,sr,378,151.2,velocity,center_uy,0.6357060074806213 +illusion_1.5L,sr,378,151.2,velocity,lower_ux,0.8458652496337891 +illusion_1.5L,sr,378,151.2,velocity,lower_uy,0.3131366968154907 +illusion_1.5L,sr,379,151.6,velocity,upper_ux,0.9471610188484192 +illusion_1.5L,sr,379,151.6,velocity,upper_uy,0.33354470133781433 +illusion_1.5L,sr,379,151.6,velocity,center_ux,0.65846848487854 +illusion_1.5L,sr,379,151.6,velocity,center_uy,0.6431358456611633 +illusion_1.5L,sr,379,151.6,velocity,lower_ux,0.9119434356689453 +illusion_1.5L,sr,379,151.6,velocity,lower_uy,0.3697222173213959 +illusion_1.5L,sr,380,152.0,velocity,upper_ux,0.7767627835273743 +illusion_1.5L,sr,380,152.0,velocity,upper_uy,0.3940577208995819 +illusion_1.5L,sr,380,152.0,velocity,center_ux,0.7109547257423401 +illusion_1.5L,sr,380,152.0,velocity,center_uy,0.6651567220687866 +illusion_1.5L,sr,380,152.0,velocity,lower_ux,0.9825789928436279 +illusion_1.5L,sr,380,152.0,velocity,lower_uy,0.41392552852630615 +illusion_1.5L,sr,381,152.4,velocity,upper_ux,0.676694929599762 +illusion_1.5L,sr,381,152.4,velocity,upper_uy,0.35741883516311646 +illusion_1.5L,sr,381,152.4,velocity,center_ux,0.7396700382232666 +illusion_1.5L,sr,381,152.4,velocity,center_uy,0.6879275441169739 +illusion_1.5L,sr,381,152.4,velocity,lower_ux,1.057935357093811 +illusion_1.5L,sr,381,152.4,velocity,lower_uy,0.44623270630836487 +illusion_1.5L,sr,382,152.8,velocity,upper_ux,0.621956467628479 +illusion_1.5L,sr,382,152.8,velocity,upper_uy,0.2747472822666168 +illusion_1.5L,sr,382,152.8,velocity,center_ux,0.7490574717521667 +illusion_1.5L,sr,382,152.8,velocity,center_uy,0.6715089678764343 +illusion_1.5L,sr,382,152.8,velocity,lower_ux,1.1381019353866577 +illusion_1.5L,sr,382,152.8,velocity,lower_uy,0.46533098816871643 +illusion_1.5L,sr,383,153.2,velocity,upper_ux,0.5875285863876343 +illusion_1.5L,sr,383,153.2,velocity,upper_uy,0.17100347578525543 +illusion_1.5L,sr,383,153.2,velocity,center_ux,0.739300549030304 +illusion_1.5L,sr,383,153.2,velocity,center_uy,0.5722873210906982 +illusion_1.5L,sr,383,153.2,velocity,lower_ux,1.2211089134216309 +illusion_1.5L,sr,383,153.2,velocity,lower_uy,0.46730807423591614 +illusion_1.5L,sr,384,153.6,velocity,upper_ux,0.5805965065956116 +illusion_1.5L,sr,384,153.6,velocity,upper_uy,0.05864095315337181 +illusion_1.5L,sr,384,153.6,velocity,center_ux,0.7098796367645264 +illusion_1.5L,sr,384,153.6,velocity,center_uy,0.3870912194252014 +illusion_1.5L,sr,384,153.6,velocity,lower_ux,1.2995195388793945 +illusion_1.5L,sr,384,153.6,velocity,lower_uy,0.4447152614593506 +illusion_1.5L,sr,385,154.0,velocity,upper_ux,0.6160346269607544 +illusion_1.5L,sr,385,154.0,velocity,upper_uy,-0.04044459015130997 +illusion_1.5L,sr,385,154.0,velocity,center_ux,0.6569156050682068 +illusion_1.5L,sr,385,154.0,velocity,center_uy,0.14559586346149445 +illusion_1.5L,sr,385,154.0,velocity,lower_ux,1.3576664924621582 +illusion_1.5L,sr,385,154.0,velocity,lower_uy,0.38697078824043274 +illusion_1.5L,sr,386,154.4,velocity,upper_ux,0.6813618540763855 +illusion_1.5L,sr,386,154.4,velocity,upper_uy,-0.1184743195772171 +illusion_1.5L,sr,386,154.4,velocity,center_ux,0.5842918157577515 +illusion_1.5L,sr,386,154.4,velocity,center_uy,-0.13680289685726166 +illusion_1.5L,sr,386,154.4,velocity,lower_ux,1.3759881258010864 +illusion_1.5L,sr,386,154.4,velocity,lower_uy,0.2854560315608978 +illusion_1.5L,sr,387,154.8,velocity,upper_ux,0.7461857795715332 +illusion_1.5L,sr,387,154.8,velocity,upper_uy,-0.19411718845367432 +illusion_1.5L,sr,387,154.8,velocity,center_ux,0.5247804522514343 +illusion_1.5L,sr,387,154.8,velocity,center_uy,-0.4201293885707855 +illusion_1.5L,sr,387,154.8,velocity,lower_ux,1.3418503999710083 +illusion_1.5L,sr,387,154.8,velocity,lower_uy,0.13981957733631134 +illusion_1.5L,sr,388,155.2,velocity,upper_ux,0.806023359298706 +illusion_1.5L,sr,388,155.2,velocity,upper_uy,-0.2699122130870819 +illusion_1.5L,sr,388,155.2,velocity,center_ux,0.5320520997047424 +illusion_1.5L,sr,388,155.2,velocity,center_uy,-0.6010494828224182 +illusion_1.5L,sr,388,155.2,velocity,lower_ux,1.2442896366119385 +illusion_1.5L,sr,388,155.2,velocity,lower_uy,-0.04362451657652855 +illusion_1.5L,sr,389,155.6,velocity,upper_ux,0.8690185546875 +illusion_1.5L,sr,389,155.6,velocity,upper_uy,-0.334972620010376 +illusion_1.5L,sr,389,155.6,velocity,center_ux,0.6084087491035461 +illusion_1.5L,sr,389,155.6,velocity,center_uy,-0.6393617391586304 +illusion_1.5L,sr,389,155.6,velocity,lower_ux,1.0751924514770508 +illusion_1.5L,sr,389,155.6,velocity,lower_uy,-0.23706018924713135 +illusion_1.5L,sr,390,156.0,velocity,upper_ux,0.9367743730545044 +illusion_1.5L,sr,390,156.0,velocity,upper_uy,-0.3869773745536804 +illusion_1.5L,sr,390,156.0,velocity,center_ux,0.6806047558784485 +illusion_1.5L,sr,390,156.0,velocity,center_uy,-0.6490028500556946 +illusion_1.5L,sr,390,156.0,velocity,lower_ux,0.8789324164390564 +illusion_1.5L,sr,390,156.0,velocity,lower_uy,-0.368769109249115 +illusion_1.5L,sr,391,156.4,velocity,upper_ux,1.009100317955017 +illusion_1.5L,sr,391,156.4,velocity,upper_uy,-0.4269372820854187 +illusion_1.5L,sr,391,156.4,velocity,center_ux,0.7234987020492554 +illusion_1.5L,sr,391,156.4,velocity,center_uy,-0.6750030517578125 +illusion_1.5L,sr,391,156.4,velocity,lower_ux,0.7330687642097473 +illusion_1.5L,sr,391,156.4,velocity,lower_uy,-0.3892741799354553 +illusion_1.5L,sr,392,156.8,velocity,upper_ux,1.0862360000610352 +illusion_1.5L,sr,392,156.8,velocity,upper_uy,-0.4547744393348694 +illusion_1.5L,sr,392,156.8,velocity,center_ux,0.745161771774292 +illusion_1.5L,sr,392,156.8,velocity,center_uy,-0.689076840877533 +illusion_1.5L,sr,392,156.8,velocity,lower_ux,0.6537805795669556 +illusion_1.5L,sr,392,156.8,velocity,lower_uy,-0.33096426725387573 +illusion_1.5L,sr,393,157.2,velocity,upper_ux,1.1678169965744019 +illusion_1.5L,sr,393,157.2,velocity,upper_uy,-0.4683414697647095 +illusion_1.5L,sr,393,157.2,velocity,center_ux,0.7476158142089844 +illusion_1.5L,sr,393,157.2,velocity,center_uy,-0.646817147731781 +illusion_1.5L,sr,393,157.2,velocity,lower_ux,0.6073649525642395 +illusion_1.5L,sr,393,157.2,velocity,lower_uy,-0.23936358094215393 +illusion_1.5L,sr,394,157.6,velocity,upper_ux,1.2503923177719116 +illusion_1.5L,sr,394,157.6,velocity,upper_uy,-0.46255388855934143 +illusion_1.5L,sr,394,157.6,velocity,center_ux,0.7309513092041016 +illusion_1.5L,sr,394,157.6,velocity,center_uy,-0.5141198635101318 +illusion_1.5L,sr,394,157.6,velocity,lower_ux,0.5807815790176392 +illusion_1.5L,sr,394,157.6,velocity,lower_uy,-0.13063108921051025 +illusion_1.5L,sr,395,158.0,velocity,upper_ux,1.3237371444702148 +illusion_1.5L,sr,395,158.0,velocity,upper_uy,-0.42860811948776245 +illusion_1.5L,sr,395,158.0,velocity,center_ux,0.693623423576355 +illusion_1.5L,sr,395,158.0,velocity,center_uy,-0.3056824207305908 +illusion_1.5L,sr,395,158.0,velocity,lower_ux,0.5882010459899902 +illusion_1.5L,sr,395,158.0,velocity,lower_uy,-0.020397191867232323 +illusion_1.5L,sr,396,158.4,velocity,upper_ux,1.3696919679641724 +illusion_1.5L,sr,396,158.4,velocity,upper_uy,-0.355773389339447 +illusion_1.5L,sr,396,158.4,velocity,center_ux,0.6320266127586365 +illusion_1.5L,sr,396,158.4,velocity,center_uy,-0.04813070595264435 +illusion_1.5L,sr,396,158.4,velocity,lower_ux,0.6377919316291809 +illusion_1.5L,sr,396,158.4,velocity,lower_uy,0.07012143731117249 +illusion_1.5L,sr,397,158.8,velocity,upper_ux,1.3701841831207275 +illusion_1.5L,sr,397,158.8,velocity,upper_uy,-0.23802483081817627 +illusion_1.5L,sr,397,158.8,velocity,center_ux,0.5586316585540771 +illusion_1.5L,sr,397,158.8,velocity,center_uy,0.24267879128456116 +illusion_1.5L,sr,397,158.8,velocity,lower_ux,0.7056801319122314 +illusion_1.5L,sr,397,158.8,velocity,lower_uy,0.14505326747894287 +illusion_1.5L,sr,398,159.2,velocity,upper_ux,1.3149826526641846 +illusion_1.5L,sr,398,159.2,velocity,upper_uy,-0.07775565981864929 +illusion_1.5L,sr,398,159.2,velocity,center_ux,0.5172454118728638 +illusion_1.5L,sr,398,159.2,velocity,center_uy,0.502813994884491 +illusion_1.5L,sr,398,159.2,velocity,lower_ux,0.7677265405654907 +illusion_1.5L,sr,398,159.2,velocity,lower_uy,0.22196537256240845 +illusion_1.5L,sr,399,159.6,velocity,upper_ux,1.1911189556121826 +illusion_1.5L,sr,399,159.6,velocity,upper_uy,0.11477431654930115 +illusion_1.5L,sr,399,159.6,velocity,center_ux,0.5547775030136108 +illusion_1.5L,sr,399,159.6,velocity,center_uy,0.6267285943031311 +illusion_1.5L,sr,399,159.6,velocity,lower_ux,0.8280467391014099 +illusion_1.5L,sr,399,159.6,velocity,lower_uy,0.2947840690612793 +illusion_1.5L,sr,0,0.0,force,front_fx,0.0018789551686495543 +illusion_1.5L,sr,0,0.0,force,front_fy,1.5806617739144713e-05 +illusion_1.5L,sr,0,0.0,force,upper_fx,0.0015016896650195122 +illusion_1.5L,sr,0,0.0,force,upper_fy,0.002819690154865384 +illusion_1.5L,sr,0,0.0,force,lower_fx,0.001548096421174705 +illusion_1.5L,sr,0,0.0,force,lower_fy,-0.0025362083688378334 +illusion_1.5L,sr,1,0.4,force,front_fx,0.0019240264082327485 +illusion_1.5L,sr,1,0.4,force,front_fy,-5.117011824040674e-05 +illusion_1.5L,sr,1,0.4,force,upper_fx,0.0017863322282209992 +illusion_1.5L,sr,1,0.4,force,upper_fy,0.002230979735031724 +illusion_1.5L,sr,1,0.4,force,lower_fx,0.0019070329144597054 +illusion_1.5L,sr,1,0.4,force,lower_fy,-0.002092586364597082 +illusion_1.5L,sr,2,0.8,force,front_fx,0.001966069685295224 +illusion_1.5L,sr,2,0.8,force,front_fy,-9.002021397463977e-05 +illusion_1.5L,sr,2,0.8,force,upper_fx,0.0020082578994333744 +illusion_1.5L,sr,2,0.8,force,upper_fy,0.0016399244777858257 +illusion_1.5L,sr,2,0.8,force,lower_fx,0.0021808831952512264 +illusion_1.5L,sr,2,0.8,force,lower_fy,-0.0016787945060059428 +illusion_1.5L,sr,3,1.2,force,front_fx,0.0019950889982283115 +illusion_1.5L,sr,3,1.2,force,front_fy,-0.00011025474668713287 +illusion_1.5L,sr,3,1.2,force,upper_fx,0.0021529877558350563 +illusion_1.5L,sr,3,1.2,force,upper_fy,0.0011106376769021153 +illusion_1.5L,sr,3,1.2,force,lower_fx,0.0023585129529237747 +illusion_1.5L,sr,3,1.2,force,lower_fy,-0.0013034933945164084 +illusion_1.5L,sr,4,1.6,force,front_fx,0.002017511520534754 +illusion_1.5L,sr,4,1.6,force,front_fy,-0.00011620926670730114 +illusion_1.5L,sr,4,1.6,force,upper_fx,0.002244872972369194 +illusion_1.5L,sr,4,1.6,force,upper_fy,0.0006877232808619738 +illusion_1.5L,sr,4,1.6,force,lower_fx,0.002468422520905733 +illusion_1.5L,sr,4,1.6,force,lower_fy,-0.0010068608680739999 +illusion_1.5L,sr,5,2.0,force,front_fx,0.0020343700889497995 +illusion_1.5L,sr,5,2.0,force,front_fy,-0.00011294430441921577 +illusion_1.5L,sr,5,2.0,force,upper_fx,0.002300795866176486 +illusion_1.5L,sr,5,2.0,force,upper_fy,0.0003685935225803405 +illusion_1.5L,sr,5,2.0,force,lower_fx,0.0025446368381381035 +illusion_1.5L,sr,5,2.0,force,lower_fy,-0.000803571252617985 +illusion_1.5L,sr,6,2.4,force,front_fx,0.0020379815250635147 +illusion_1.5L,sr,6,2.4,force,front_fy,-0.0001080596266547218 +illusion_1.5L,sr,6,2.4,force,upper_fx,0.002317755715921521 +illusion_1.5L,sr,6,2.4,force,upper_fy,0.00015287412679754198 +illusion_1.5L,sr,6,2.4,force,lower_fx,0.0025937408208847046 +illusion_1.5L,sr,6,2.4,force,lower_fy,-0.000672929163556546 +illusion_1.5L,sr,7,2.8,force,front_fx,0.0020330804400146008 +illusion_1.5L,sr,7,2.8,force,front_fy,-0.00011272805568296462 +illusion_1.5L,sr,7,2.8,force,upper_fx,0.002318502403795719 +illusion_1.5L,sr,7,2.8,force,upper_fy,3.8322956243064255e-05 +illusion_1.5L,sr,7,2.8,force,lower_fx,0.0026333576533943415 +illusion_1.5L,sr,7,2.8,force,lower_fy,-0.0005843858816660941 +illusion_1.5L,sr,8,3.2,force,front_fx,0.002021165331825614 +illusion_1.5L,sr,8,3.2,force,front_fy,-0.0001239106641151011 +illusion_1.5L,sr,8,3.2,force,upper_fx,0.0023143277503550053 +illusion_1.5L,sr,8,3.2,force,upper_fy,1.60643885465106e-05 +illusion_1.5L,sr,8,3.2,force,lower_fx,0.0026627930346876383 +illusion_1.5L,sr,8,3.2,force,lower_fy,-0.0005196682177484035 +illusion_1.5L,sr,9,3.6,force,front_fx,0.0020028031431138515 +illusion_1.5L,sr,9,3.6,force,front_fy,-0.00013383473560679704 +illusion_1.5L,sr,9,3.6,force,upper_fx,0.0023092948831617832 +illusion_1.5L,sr,9,3.6,force,upper_fy,6.797800597269088e-05 +illusion_1.5L,sr,9,3.6,force,lower_fx,0.002674276940524578 +illusion_1.5L,sr,9,3.6,force,lower_fy,-0.00047001271741464734 +illusion_1.5L,sr,10,4.0,force,front_fx,0.0019899511244148016 +illusion_1.5L,sr,10,4.0,force,front_fy,-0.00013389388914220035 +illusion_1.5L,sr,10,4.0,force,upper_fx,0.0023151489440351725 +illusion_1.5L,sr,10,4.0,force,upper_fy,0.00017156644025817513 +illusion_1.5L,sr,10,4.0,force,lower_fx,0.0026720270980149508 +illusion_1.5L,sr,10,4.0,force,lower_fy,-0.0004306758055463433 +illusion_1.5L,sr,11,4.4,force,front_fx,0.0019773440435528755 +illusion_1.5L,sr,11,4.4,force,front_fy,-0.0001237141841556877 +illusion_1.5L,sr,11,4.4,force,upper_fx,0.0023224109318107367 +illusion_1.5L,sr,11,4.4,force,upper_fy,0.0003014196117874235 +illusion_1.5L,sr,11,4.4,force,lower_fx,0.002643788233399391 +illusion_1.5L,sr,11,4.4,force,lower_fy,-0.00039677537279203534 +illusion_1.5L,sr,12,4.8,force,front_fx,0.001964104827493429 +illusion_1.5L,sr,12,4.8,force,front_fy,-0.00010401396866654977 +illusion_1.5L,sr,12,4.8,force,upper_fx,0.0023295781575143337 +illusion_1.5L,sr,12,4.8,force,upper_fy,0.0004298218700569123 +illusion_1.5L,sr,12,4.8,force,lower_fx,0.00259047350846231 +illusion_1.5L,sr,12,4.8,force,lower_fy,-0.00036293972516432405 +illusion_1.5L,sr,13,5.2,force,front_fx,0.0019578973297029734 +illusion_1.5L,sr,13,5.2,force,front_fy,-7.609262684127316e-05 +illusion_1.5L,sr,13,5.2,force,upper_fx,0.002345853950828314 +illusion_1.5L,sr,13,5.2,force,upper_fy,0.0005320867639966309 +illusion_1.5L,sr,13,5.2,force,lower_fx,0.002527657663449645 +illusion_1.5L,sr,13,5.2,force,lower_fy,-0.00032162005663849413 +illusion_1.5L,sr,14,5.6,force,front_fx,0.0019541133660823107 +illusion_1.5L,sr,14,5.6,force,front_fy,-4.3098858441226184e-05 +illusion_1.5L,sr,14,5.6,force,upper_fx,0.0023674764670431614 +illusion_1.5L,sr,14,5.6,force,upper_fy,0.0005947073805145919 +illusion_1.5L,sr,14,5.6,force,lower_fx,0.0024603288620710373 +illusion_1.5L,sr,14,5.6,force,lower_fy,-0.00026961357798427343 +illusion_1.5L,sr,15,6.0,force,front_fx,0.001958959735929966 +illusion_1.5L,sr,15,6.0,force,front_fy,-8.415579031861853e-06 +illusion_1.5L,sr,15,6.0,force,upper_fx,0.0024023146834224463 +illusion_1.5L,sr,15,6.0,force,upper_fy,0.0006125199142843485 +illusion_1.5L,sr,15,6.0,force,lower_fx,0.0024048711638897657 +illusion_1.5L,sr,15,6.0,force,lower_fy,-0.00020796206081286073 +illusion_1.5L,sr,16,6.4,force,front_fx,0.0019718001130968332 +illusion_1.5L,sr,16,6.4,force,front_fy,2.475151268299669e-05 +illusion_1.5L,sr,16,6.4,force,upper_fx,0.002450003754347563 +illusion_1.5L,sr,16,6.4,force,upper_fy,0.0005906969890929759 +illusion_1.5L,sr,16,6.4,force,lower_fx,0.0023680501617491245 +illusion_1.5L,sr,16,6.4,force,lower_fy,-0.00014502106932923198 +illusion_1.5L,sr,17,6.8,force,front_fx,0.001980337779968977 +illusion_1.5L,sr,17,6.8,force,front_fy,5.349265120457858e-05 +illusion_1.5L,sr,17,6.8,force,upper_fx,0.002495037391781807 +illusion_1.5L,sr,17,6.8,force,upper_fy,0.0005413472536019981 +illusion_1.5L,sr,17,6.8,force,lower_fx,0.002339552855119109 +illusion_1.5L,sr,17,6.8,force,lower_fy,-9.473560203332454e-05 +illusion_1.5L,sr,18,7.2,force,front_fx,0.0019851953256875277 +illusion_1.5L,sr,18,7.2,force,front_fy,7.664148870389909e-05 +illusion_1.5L,sr,18,7.2,force,upper_fx,0.0025360819417983294 +illusion_1.5L,sr,18,7.2,force,upper_fy,0.00047941747470758855 +illusion_1.5L,sr,18,7.2,force,lower_fx,0.0023216349072754383 +illusion_1.5L,sr,18,7.2,force,lower_fy,-7.004794315434992e-05 +illusion_1.5L,sr,19,7.6,force,front_fx,0.0019860556349158287 +illusion_1.5L,sr,19,7.6,force,front_fy,9.285881969844922e-05 +illusion_1.5L,sr,19,7.6,force,upper_fx,0.0025702291168272495 +illusion_1.5L,sr,19,7.6,force,upper_fy,0.00042066533933393657 +illusion_1.5L,sr,19,7.6,force,lower_fx,0.00231386860832572 +illusion_1.5L,sr,19,7.6,force,lower_fy,-8.20009590825066e-05 +illusion_1.5L,sr,20,8.0,force,front_fx,0.001979856053367257 +illusion_1.5L,sr,20,8.0,force,front_fy,0.00010303164162905887 +illusion_1.5L,sr,20,8.0,force,upper_fx,0.0025879109743982553 +illusion_1.5L,sr,20,8.0,force,upper_fy,0.00037918222369626164 +illusion_1.5L,sr,20,8.0,force,lower_fx,0.0023096520453691483 +illusion_1.5L,sr,20,8.0,force,lower_fy,-0.0001349640660919249 +illusion_1.5L,sr,21,8.4,force,front_fx,0.0019758131820708513 +illusion_1.5L,sr,21,8.4,force,front_fy,0.00010444796498632059 +illusion_1.5L,sr,21,8.4,force,upper_fx,0.0025940225459635258 +illusion_1.5L,sr,21,8.4,force,upper_fy,0.0003579815092962235 +illusion_1.5L,sr,21,8.4,force,lower_fx,0.002316885394975543 +illusion_1.5L,sr,21,8.4,force,lower_fy,-0.0002228502999059856 +illusion_1.5L,sr,22,8.8,force,front_fx,0.0019704585429280996 +illusion_1.5L,sr,22,8.8,force,front_fy,9.838354890234768e-05 +illusion_1.5L,sr,22,8.8,force,upper_fx,0.002578945364803076 +illusion_1.5L,sr,22,8.8,force,upper_fy,0.0003524578642100096 +illusion_1.5L,sr,22,8.8,force,lower_fx,0.002327550435438752 +illusion_1.5L,sr,22,8.8,force,lower_fy,-0.00033060868736356497 +illusion_1.5L,sr,23,9.2,force,front_fx,0.0019618147052824497 +illusion_1.5L,sr,23,9.2,force,front_fy,8.241509203799069e-05 +illusion_1.5L,sr,23,9.2,force,upper_fx,0.002540611894801259 +illusion_1.5L,sr,23,9.2,force,upper_fy,0.00034843935281969607 +illusion_1.5L,sr,23,9.2,force,lower_fx,0.00233727740123868 +illusion_1.5L,sr,23,9.2,force,lower_fy,-0.00043729436583817005 +illusion_1.5L,sr,24,9.6,force,front_fx,0.001959262415766716 +illusion_1.5L,sr,24,9.6,force,front_fy,5.946747478446923e-05 +illusion_1.5L,sr,24,9.6,force,upper_fx,0.0024953163228929043 +illusion_1.5L,sr,24,9.6,force,upper_fy,0.0003314359055366367 +illusion_1.5L,sr,24,9.6,force,lower_fx,0.00235669850371778 +illusion_1.5L,sr,24,9.6,force,lower_fy,-0.0005197537830099463 +illusion_1.5L,sr,25,10.0,force,front_fx,0.0019590065348893404 +illusion_1.5L,sr,25,10.0,force,front_fy,3.1083505746209994e-05 +illusion_1.5L,sr,25,10.0,force,upper_fx,0.00244760955683887 +illusion_1.5L,sr,25,10.0,force,upper_fy,0.0002948165638372302 +illusion_1.5L,sr,25,10.0,force,lower_fx,0.0023821420036256313 +illusion_1.5L,sr,25,10.0,force,lower_fy,-0.0005655928398482502 +illusion_1.5L,sr,26,10.4,force,front_fx,0.001966063631698489 +illusion_1.5L,sr,26,10.4,force,front_fy,2.4032365217863116e-06 +illusion_1.5L,sr,26,10.4,force,upper_fx,0.0024112933315336704 +illusion_1.5L,sr,26,10.4,force,upper_fy,0.00024276727344840765 +illusion_1.5L,sr,26,10.4,force,lower_fx,0.0024192449636757374 +illusion_1.5L,sr,26,10.4,force,lower_fy,-0.0005697696469724178 +illusion_1.5L,sr,27,10.8,force,front_fx,0.001981321256607771 +illusion_1.5L,sr,27,10.8,force,front_fy,-2.3801678253221326e-05 +illusion_1.5L,sr,27,10.8,force,upper_fx,0.002393565373495221 +illusion_1.5L,sr,27,10.8,force,upper_fy,0.0001875728485174477 +illusion_1.5L,sr,27,10.8,force,lower_fx,0.0024681142531335354 +illusion_1.5L,sr,27,10.8,force,lower_fy,-0.0005387839628383517 +illusion_1.5L,sr,28,11.2,force,front_fx,0.0019917599856853485 +illusion_1.5L,sr,28,11.2,force,front_fy,-4.505736433202401e-05 +illusion_1.5L,sr,28,11.2,force,upper_fx,0.0023825711105018854 +illusion_1.5L,sr,28,11.2,force,upper_fy,0.00014776139869354665 +illusion_1.5L,sr,28,11.2,force,lower_fx,0.0025119027122855186 +illusion_1.5L,sr,28,11.2,force,lower_fy,-0.00048696459271013737 +illusion_1.5L,sr,29,11.6,force,front_fx,0.001996909035369754 +illusion_1.5L,sr,29,11.6,force,front_fy,-6.023563037160784e-05 +illusion_1.5L,sr,29,11.6,force,upper_fx,0.0023777561727911234 +illusion_1.5L,sr,29,11.6,force,upper_fy,0.00013705958554055542 +illusion_1.5L,sr,29,11.6,force,lower_fx,0.0025467893574386835 +illusion_1.5L,sr,29,11.6,force,lower_fy,-0.00042998488061130047 +illusion_1.5L,sr,30,12.0,force,front_fx,0.001997181214392185 +illusion_1.5L,sr,30,12.0,force,front_fy,-6.956872675800696e-05 +illusion_1.5L,sr,30,12.0,force,upper_fx,0.0023782483767718077 +illusion_1.5L,sr,30,12.0,force,upper_fy,0.0001635027292650193 +illusion_1.5L,sr,30,12.0,force,lower_fx,0.002569905249401927 +illusion_1.5L,sr,30,12.0,force,lower_fy,-0.00038231865619309247 +illusion_1.5L,sr,31,12.4,force,front_fx,0.00199041492305696 +illusion_1.5L,sr,31,12.4,force,front_fy,-7.24473429727368e-05 +illusion_1.5L,sr,31,12.4,force,upper_fx,0.0023781899362802505 +illusion_1.5L,sr,31,12.4,force,upper_fy,0.0002251846162835136 +illusion_1.5L,sr,31,12.4,force,lower_fx,0.0025740107521414757 +illusion_1.5L,sr,31,12.4,force,lower_fy,-0.00035212215152569115 +illusion_1.5L,sr,32,12.8,force,front_fx,0.001986105926334858 +illusion_1.5L,sr,32,12.8,force,front_fy,-6.914840923855081e-05 +illusion_1.5L,sr,32,12.8,force,upper_fx,0.002385749714449048 +illusion_1.5L,sr,32,12.8,force,upper_fy,0.0003084593918174505 +illusion_1.5L,sr,32,12.8,force,lower_fx,0.0025667473673820496 +illusion_1.5L,sr,32,12.8,force,lower_fy,-0.0003372328355908394 +illusion_1.5L,sr,33,13.2,force,front_fx,0.0019833699334412813 +illusion_1.5L,sr,33,13.2,force,front_fy,-5.899179814150557e-05 +illusion_1.5L,sr,33,13.2,force,upper_fx,0.0023977323435246944 +illusion_1.5L,sr,33,13.2,force,upper_fy,0.00039555932744406164 +illusion_1.5L,sr,33,13.2,force,lower_fx,0.00254641892388463 +illusion_1.5L,sr,33,13.2,force,lower_fy,-0.00032924622064456344 +illusion_1.5L,sr,34,13.6,force,front_fx,0.0019778450950980186 +illusion_1.5L,sr,34,13.6,force,front_fy,-4.3051812099292874e-05 +illusion_1.5L,sr,34,13.6,force,upper_fx,0.002408005064353347 +illusion_1.5L,sr,34,13.6,force,upper_fy,0.000467321602627635 +illusion_1.5L,sr,34,13.6,force,lower_fx,0.0025108628906309605 +illusion_1.5L,sr,34,13.6,force,lower_fy,-0.00031782645964995027 +illusion_1.5L,sr,35,14.0,force,front_fx,0.001977166160941124 +illusion_1.5L,sr,35,14.0,force,front_fy,-2.3125905499910004e-05 +illusion_1.5L,sr,35,14.0,force,upper_fx,0.0024251961149275303 +illusion_1.5L,sr,35,14.0,force,upper_fy,0.0005092412466183305 +illusion_1.5L,sr,35,14.0,force,lower_fx,0.002474750392138958 +illusion_1.5L,sr,35,14.0,force,lower_fy,-0.00029477421776391566 +illusion_1.5L,sr,36,14.4,force,front_fx,0.0019776998087763786 +illusion_1.5L,sr,36,14.4,force,front_fy,-2.5702759103296557e-06 +illusion_1.5L,sr,36,14.4,force,upper_fx,0.0024454721715301275 +illusion_1.5L,sr,36,14.4,force,upper_fy,0.0005168576026335359 +illusion_1.5L,sr,36,14.4,force,lower_fx,0.002440407406538725 +illusion_1.5L,sr,36,14.4,force,lower_fy,-0.0002618414582684636 +illusion_1.5L,sr,37,14.8,force,front_fx,0.001982081448659301 +illusion_1.5L,sr,37,14.8,force,front_fy,1.689479177002795e-05 +illusion_1.5L,sr,37,14.8,force,upper_fx,0.0024716125335544348 +illusion_1.5L,sr,37,14.8,force,upper_fy,0.0004946576664224267 +illusion_1.5L,sr,37,14.8,force,lower_fx,0.002415955998003483 +illusion_1.5L,sr,37,14.8,force,lower_fy,-0.00022677351080346853 +illusion_1.5L,sr,38,15.2,force,front_fx,0.00199187733232975 +illusion_1.5L,sr,38,15.2,force,front_fy,3.310172905912623e-05 +illusion_1.5L,sr,38,15.2,force,upper_fx,0.0025051243137568235 +illusion_1.5L,sr,38,15.2,force,upper_fy,0.00045398372458294034 +illusion_1.5L,sr,38,15.2,force,lower_fx,0.0024067573249340057 +illusion_1.5L,sr,38,15.2,force,lower_fy,-0.0002016224170802161 +illusion_1.5L,sr,39,15.6,force,front_fx,0.0019962491933256388 +illusion_1.5L,sr,39,15.6,force,front_fy,4.548275683191605e-05 +illusion_1.5L,sr,39,15.6,force,upper_fx,0.002530645811930299 +illusion_1.5L,sr,39,15.6,force,upper_fy,0.0004105879634153098 +illusion_1.5L,sr,39,15.6,force,lower_fx,0.0024002548307180405 +illusion_1.5L,sr,39,15.6,force,lower_fy,-0.00019872109987773 +illusion_1.5L,sr,40,16.0,force,front_fx,0.0019938882905989885 +illusion_1.5L,sr,40,16.0,force,front_fy,5.362298907130025e-05 +illusion_1.5L,sr,40,16.0,force,upper_fx,0.0025437516160309315 +illusion_1.5L,sr,40,16.0,force,upper_fy,0.0003758224775083363 +illusion_1.5L,sr,40,16.0,force,lower_fx,0.002394031500443816 +illusion_1.5L,sr,40,16.0,force,lower_fy,-0.00022319224081002176 +illusion_1.5L,sr,41,16.4,force,front_fx,0.0019890672992914915 +illusion_1.5L,sr,41,16.4,force,front_fy,5.714583312510513e-05 +illusion_1.5L,sr,41,16.4,force,upper_fx,0.0025448582600802183 +illusion_1.5L,sr,41,16.4,force,upper_fy,0.00035444044624455273 +illusion_1.5L,sr,41,16.4,force,lower_fx,0.002390057547017932 +illusion_1.5L,sr,41,16.4,force,lower_fy,-0.0002719029725994915 +illusion_1.5L,sr,42,16.8,force,front_fx,0.001979883061721921 +illusion_1.5L,sr,42,16.8,force,front_fy,5.53923673578538e-05 +illusion_1.5L,sr,42,16.8,force,upper_fx,0.002529505407437682 +illusion_1.5L,sr,42,16.8,force,upper_fy,0.0003446953487582505 +illusion_1.5L,sr,42,16.8,force,lower_fx,0.0023843562230467796 +illusion_1.5L,sr,42,16.8,force,lower_fy,-0.0003348721074871719 +illusion_1.5L,sr,43,17.2,force,front_fx,0.0019751766230911016 +illusion_1.5L,sr,43,17.2,force,front_fy,4.785053533851169e-05 +illusion_1.5L,sr,43,17.2,force,upper_fx,0.002508648904040456 +illusion_1.5L,sr,43,17.2,force,upper_fy,0.0003377221873961389 +illusion_1.5L,sr,43,17.2,force,lower_fx,0.0023866479750722647 +illusion_1.5L,sr,43,17.2,force,lower_fy,-0.0003972044214606285 +illusion_1.5L,sr,44,17.6,force,front_fx,0.0019755472894757986 +illusion_1.5L,sr,44,17.6,force,front_fy,3.626766556408256e-05 +illusion_1.5L,sr,44,17.6,force,upper_fx,0.002485749078914523 +illusion_1.5L,sr,44,17.6,force,upper_fy,0.0003261197416577488 +illusion_1.5L,sr,44,17.6,force,lower_fx,0.002397203352302313 +illusion_1.5L,sr,44,17.6,force,lower_fy,-0.00044598965905606747 +illusion_1.5L,sr,45,18.0,force,front_fx,0.001973410602658987 +illusion_1.5L,sr,45,18.0,force,front_fy,2.1655048840329982e-05 +illusion_1.5L,sr,45,18.0,force,upper_fx,0.0024559323210269213 +illusion_1.5L,sr,45,18.0,force,upper_fy,0.0003066532372031361 +illusion_1.5L,sr,45,18.0,force,lower_fx,0.002406912390142679 +illusion_1.5L,sr,45,18.0,force,lower_fy,-0.0004734335234388709 +illusion_1.5L,sr,46,18.4,force,front_fx,0.001974262995645404 +illusion_1.5L,sr,46,18.4,force,front_fy,6.096543074818328e-06 +illusion_1.5L,sr,46,18.4,force,upper_fx,0.0024294788017868996 +illusion_1.5L,sr,46,18.4,force,upper_fy,0.00028003251645714045 +illusion_1.5L,sr,46,18.4,force,lower_fx,0.002421528333798051 +illusion_1.5L,sr,46,18.4,force,lower_fy,-0.0004760831652674824 +illusion_1.5L,sr,47,18.8,force,front_fx,0.0019748921040445566 +illusion_1.5L,sr,47,18.8,force,front_fy,-8.477878509438597e-06 +illusion_1.5L,sr,47,18.8,force,upper_fx,0.0024064802564680576 +illusion_1.5L,sr,47,18.8,force,upper_fy,0.00025312407524324954 +illusion_1.5L,sr,47,18.8,force,lower_fx,0.0024373368360102177 +illusion_1.5L,sr,47,18.8,force,lower_fy,-0.0004584569833241403 +illusion_1.5L,sr,48,19.2,force,front_fx,0.0019761077128350735 +illusion_1.5L,sr,48,19.2,force,front_fy,-2.1361640392569825e-05 +illusion_1.5L,sr,48,19.2,force,upper_fx,0.0023898945655673742 +illusion_1.5L,sr,48,19.2,force,upper_fy,0.00023430217697750777 +illusion_1.5L,sr,48,19.2,force,lower_fx,0.002454252215102315 +illusion_1.5L,sr,48,19.2,force,lower_fy,-0.0004290643846616149 +illusion_1.5L,sr,49,19.6,force,front_fx,0.0019813310354948044 +illusion_1.5L,sr,49,19.6,force,front_fy,-3.116948209935799e-05 +illusion_1.5L,sr,49,19.6,force,upper_fx,0.0023848761338740587 +illusion_1.5L,sr,49,19.6,force,upper_fy,0.00023121380945667624 +illusion_1.5L,sr,49,19.6,force,lower_fx,0.0024752309545874596 +illusion_1.5L,sr,49,19.6,force,lower_fy,-0.000397411931771785 +illusion_1.5L,sr,50,20.0,force,front_fx,0.001981981098651886 +illusion_1.5L,sr,50,20.0,force,front_fy,-3.8288944779196754e-05 +illusion_1.5L,sr,50,20.0,force,upper_fx,0.0023805927485227585 +illusion_1.5L,sr,50,20.0,force,upper_fy,0.00024874857626855373 +illusion_1.5L,sr,50,20.0,force,lower_fx,0.0024873879738152027 +illusion_1.5L,sr,50,20.0,force,lower_fy,-0.00037324585719034076 +illusion_1.5L,sr,51,20.4,force,front_fx,0.001977004576474428 +illusion_1.5L,sr,51,20.4,force,front_fy,-4.1353538108523935e-05 +illusion_1.5L,sr,51,20.4,force,upper_fx,0.002374076284468174 +illusion_1.5L,sr,51,20.4,force,upper_fy,0.00028527952963486314 +illusion_1.5L,sr,51,20.4,force,lower_fx,0.0024865048471838236 +illusion_1.5L,sr,51,20.4,force,lower_fy,-0.0003589651023503393 +illusion_1.5L,sr,52,20.8,force,front_fx,0.0019713740330189466 +illusion_1.5L,sr,52,20.8,force,front_fy,-4.0504713979316875e-05 +illusion_1.5L,sr,52,20.8,force,upper_fx,0.002369827823713422 +illusion_1.5L,sr,52,20.8,force,upper_fy,0.0003320972609799355 +illusion_1.5L,sr,52,20.8,force,lower_fx,0.0024764270056039095 +illusion_1.5L,sr,52,20.8,force,lower_fy,-0.0003521220351103693 +illusion_1.5L,sr,53,21.2,force,front_fx,0.001963554648682475 +illusion_1.5L,sr,53,21.2,force,front_fy,-3.511141403578222e-05 +illusion_1.5L,sr,53,21.2,force,upper_fx,0.002365036867558956 +illusion_1.5L,sr,53,21.2,force,upper_fy,0.000379675067961216 +illusion_1.5L,sr,53,21.2,force,lower_fx,0.0024554217234253883 +illusion_1.5L,sr,53,21.2,force,lower_fy,-0.00034670718014240265 +illusion_1.5L,sr,54,21.6,force,front_fx,0.0019607299473136663 +illusion_1.5L,sr,54,21.6,force,front_fy,-2.6547135348664597e-05 +illusion_1.5L,sr,54,21.6,force,upper_fx,0.002368326997384429 +illusion_1.5L,sr,54,21.6,force,upper_fy,0.00041685719043016434 +illusion_1.5L,sr,54,21.6,force,lower_fx,0.002434117253869772 +illusion_1.5L,sr,54,21.6,force,lower_fy,-0.00033670596894808114 +illusion_1.5L,sr,55,22.0,force,front_fx,0.001963716931641102 +illusion_1.5L,sr,55,22.0,force,front_fy,-1.5370449546026066e-05 +illusion_1.5L,sr,55,22.0,force,upper_fx,0.002380895661190152 +illusion_1.5L,sr,55,22.0,force,upper_fy,0.0004383546474855393 +illusion_1.5L,sr,55,22.0,force,lower_fx,0.0024168973322957754 +illusion_1.5L,sr,55,22.0,force,lower_fy,-0.000319395971018821 +illusion_1.5L,sr,56,22.4,force,front_fx,0.0019637311343103647 +illusion_1.5L,sr,56,22.4,force,front_fy,-3.5900179682357702e-06 +illusion_1.5L,sr,56,22.4,force,upper_fx,0.0023919439408928156 +illusion_1.5L,sr,56,22.4,force,upper_fy,0.0004431778797879815 +illusion_1.5L,sr,56,22.4,force,lower_fx,0.002396044321358204 +illusion_1.5L,sr,56,22.4,force,lower_fy,-0.00029802616336382926 +illusion_1.5L,sr,57,22.8,force,front_fx,0.0019642836414277554 +illusion_1.5L,sr,57,22.8,force,front_fy,8.312192221637815e-06 +illusion_1.5L,sr,57,22.8,force,upper_fx,0.002404517726972699 +illusion_1.5L,sr,57,22.8,force,upper_fy,0.00043376072426326573 +illusion_1.5L,sr,57,22.8,force,lower_fx,0.0023777063470333815 +illusion_1.5L,sr,57,22.8,force,lower_fy,-0.0002762415388133377 +illusion_1.5L,sr,58,23.2,force,front_fx,0.001964055234566331 +illusion_1.5L,sr,58,23.2,force,front_fy,1.8680517314351164e-05 +illusion_1.5L,sr,58,23.2,force,upper_fx,0.0024166200309991837 +illusion_1.5L,sr,58,23.2,force,upper_fy,0.00041552912443876266 +illusion_1.5L,sr,58,23.2,force,lower_fx,0.002362338826060295 +illusion_1.5L,sr,58,23.2,force,lower_fy,-0.0002607796632219106 +illusion_1.5L,sr,59,23.6,force,front_fx,0.001962589332833886 +illusion_1.5L,sr,59,23.6,force,front_fy,2.73172900051577e-05 +illusion_1.5L,sr,59,23.6,force,upper_fx,0.002426222199574113 +illusion_1.5L,sr,59,23.6,force,upper_fy,0.0003954552812501788 +illusion_1.5L,sr,59,23.6,force,lower_fx,0.002350105904042721 +illusion_1.5L,sr,59,23.6,force,lower_fy,-0.000257007748587057 +illusion_1.5L,sr,60,24.0,force,front_fx,0.0019648519810289145 +illusion_1.5L,sr,60,24.0,force,front_fy,3.306774306111038e-05 +illusion_1.5L,sr,60,24.0,force,upper_fx,0.0024377868976444006 +illusion_1.5L,sr,60,24.0,force,upper_fy,0.0003782698477152735 +illusion_1.5L,sr,60,24.0,force,lower_fx,0.0023472446482628584 +illusion_1.5L,sr,60,24.0,force,lower_fy,-0.0002677298034541309 +illusion_1.5L,sr,61,24.4,force,front_fx,0.001964753959327936 +illusion_1.5L,sr,61,24.4,force,front_fy,3.5762423067353666e-05 +illusion_1.5L,sr,61,24.4,force,upper_fx,0.0024418397806584835 +illusion_1.5L,sr,61,24.4,force,upper_fy,0.00036748338607139885 +illusion_1.5L,sr,61,24.4,force,lower_fx,0.0023455547634512186 +illusion_1.5L,sr,61,24.4,force,lower_fy,-0.0002933622454293072 +illusion_1.5L,sr,62,24.8,force,front_fx,0.001959635876119137 +illusion_1.5L,sr,62,24.8,force,front_fy,3.527033913997002e-05 +illusion_1.5L,sr,62,24.8,force,upper_fx,0.002434037858620286 +illusion_1.5L,sr,62,24.8,force,upper_fy,0.00036184253985993564 +illusion_1.5L,sr,62,24.8,force,lower_fx,0.002341202460229397 +illusion_1.5L,sr,62,24.8,force,lower_fy,-0.0003289822197984904 +illusion_1.5L,sr,63,25.2,force,front_fx,0.0019555098842829466 +illusion_1.5L,sr,63,25.2,force,front_fy,3.123429269180633e-05 +illusion_1.5L,sr,63,25.2,force,upper_fx,0.0024205304216593504 +illusion_1.5L,sr,63,25.2,force,upper_fy,0.00035633036168292165 +illusion_1.5L,sr,63,25.2,force,lower_fx,0.002339819213375449 +illusion_1.5L,sr,63,25.2,force,lower_fy,-0.0003661889350041747 +illusion_1.5L,sr,64,25.6,force,front_fx,0.00194989622104913 +illusion_1.5L,sr,64,25.6,force,front_fy,2.4445564122288488e-05 +illusion_1.5L,sr,64,25.6,force,upper_fx,0.0024000525008887053 +illusion_1.5L,sr,64,25.6,force,upper_fy,0.0003472801763564348 +illusion_1.5L,sr,64,25.6,force,lower_fx,0.0023386518005281687 +illusion_1.5L,sr,64,25.6,force,lower_fy,-0.00039753978489898145 +illusion_1.5L,sr,65,26.0,force,front_fx,0.0019484906224533916 +illusion_1.5L,sr,65,26.0,force,front_fy,1.535936098662205e-05 +illusion_1.5L,sr,65,26.0,force,upper_fx,0.0023814120795577765 +illusion_1.5L,sr,65,26.0,force,upper_fy,0.0003317542723380029 +illusion_1.5L,sr,65,26.0,force,lower_fx,0.00234420970082283 +illusion_1.5L,sr,65,26.0,force,lower_fy,-0.00041723731555975974 +illusion_1.5L,sr,66,26.4,force,front_fx,0.0019528924021869898 +illusion_1.5L,sr,66,26.4,force,front_fy,5.2399036576389335e-06 +illusion_1.5L,sr,66,26.4,force,upper_fx,0.002369331195950508 +illusion_1.5L,sr,66,26.4,force,upper_fy,0.00031133872107602656 +illusion_1.5L,sr,66,26.4,force,lower_fx,0.002358696423470974 +illusion_1.5L,sr,66,26.4,force,lower_fy,-0.00042367345304228365 +illusion_1.5L,sr,67,26.8,force,front_fx,0.0019539573695510626 +illusion_1.5L,sr,67,26.8,force,front_fy,-4.948722107656067e-06 +illusion_1.5L,sr,67,26.8,force,upper_fx,0.0023549722973257303 +illusion_1.5L,sr,67,26.8,force,upper_fy,0.0002911561750806868 +illusion_1.5L,sr,67,26.8,force,lower_fx,0.0023706601932644844 +illusion_1.5L,sr,67,26.8,force,lower_fy,-0.0004197960952296853 +illusion_1.5L,sr,68,27.2,force,front_fx,0.0019540039356797934 +illusion_1.5L,sr,68,27.2,force,front_fy,-1.4125203051662538e-05 +illusion_1.5L,sr,68,27.2,force,upper_fx,0.0023418928030878305 +illusion_1.5L,sr,68,27.2,force,upper_fy,0.0002758025366347283 +illusion_1.5L,sr,68,27.2,force,lower_fx,0.002381345024332404 +illusion_1.5L,sr,68,27.2,force,lower_fy,-0.0004085906548425555 +illusion_1.5L,sr,69,27.6,force,front_fx,0.001953114289790392 +illusion_1.5L,sr,69,27.6,force,front_fy,-2.1373409254010767e-05 +illusion_1.5L,sr,69,27.6,force,upper_fx,0.0023313022684305906 +illusion_1.5L,sr,69,27.6,force,upper_fy,0.0002699070319067687 +illusion_1.5L,sr,69,27.6,force,lower_fx,0.0023900498636066914 +illusion_1.5L,sr,69,27.6,force,lower_fy,-0.00039443475543521345 +illusion_1.5L,sr,70,28.0,force,front_fx,0.0019503022776916623 +illusion_1.5L,sr,70,28.0,force,front_fy,-2.6625197278917767e-05 +illusion_1.5L,sr,70,28.0,force,upper_fx,0.0023221122100949287 +illusion_1.5L,sr,70,28.0,force,upper_fy,0.00027607957599684596 +illusion_1.5L,sr,70,28.0,force,lower_fx,0.002394200535491109 +illusion_1.5L,sr,70,28.0,force,lower_fy,-0.00038152479100972414 +illusion_1.5L,sr,71,28.4,force,front_fx,0.0019511488499119878 +illusion_1.5L,sr,71,28.4,force,front_fy,-2.9147784516680986e-05 +illusion_1.5L,sr,71,28.4,force,upper_fx,0.0023210174404084682 +illusion_1.5L,sr,71,28.4,force,upper_fy,0.0002938064280897379 +illusion_1.5L,sr,71,28.4,force,lower_fx,0.0023993821814656258 +illusion_1.5L,sr,71,28.4,force,lower_fy,-0.00037133449222892523 +illusion_1.5L,sr,72,28.8,force,front_fx,0.0019515822641551495 +illusion_1.5L,sr,72,28.8,force,front_fy,-2.9206152248661965e-05 +illusion_1.5L,sr,72,28.8,force,upper_fx,0.0023223422467708588 +illusion_1.5L,sr,72,28.8,force,upper_fy,0.0003208320995327085 +illusion_1.5L,sr,72,28.8,force,lower_fx,0.0023993586655706167 +illusion_1.5L,sr,72,28.8,force,lower_fy,-0.0003647039702627808 +illusion_1.5L,sr,73,29.2,force,front_fx,0.0019474539440125227 +illusion_1.5L,sr,73,29.2,force,front_fy,-2.6257243007421494e-05 +illusion_1.5L,sr,73,29.2,force,upper_fx,0.002320914762094617 +illusion_1.5L,sr,73,29.2,force,upper_fy,0.00035213076625950634 +illusion_1.5L,sr,73,29.2,force,lower_fx,0.002389119705185294 +illusion_1.5L,sr,73,29.2,force,lower_fy,-0.00035936140920966864 +illusion_1.5L,sr,74,29.6,force,front_fx,0.0019445772049948573 +illusion_1.5L,sr,74,29.6,force,front_fy,-2.0539746401482262e-05 +illusion_1.5L,sr,74,29.6,force,upper_fx,0.0023222751915454865 +illusion_1.5L,sr,74,29.6,force,upper_fy,0.00038054812466725707 +illusion_1.5L,sr,74,29.6,force,lower_fx,0.0023752939887344837 +illusion_1.5L,sr,74,29.6,force,lower_fy,-0.000351253489498049 +illusion_1.5L,sr,75,30.0,force,front_fx,0.0019406834617257118 +illusion_1.5L,sr,75,30.0,force,front_fy,-1.3161709830455948e-05 +illusion_1.5L,sr,75,30.0,force,upper_fx,0.002323900582268834 +illusion_1.5L,sr,75,30.0,force,upper_fy,0.0004014829464722425 +illusion_1.5L,sr,75,30.0,force,lower_fx,0.002357128309085965 +illusion_1.5L,sr,75,30.0,force,lower_fy,-0.0003385635791346431 +illusion_1.5L,sr,76,30.4,force,front_fx,0.001939724083058536 +illusion_1.5L,sr,76,30.4,force,front_fy,-4.41028896602802e-06 +illusion_1.5L,sr,76,30.4,force,upper_fx,0.0023302421905100346 +illusion_1.5L,sr,76,30.4,force,upper_fy,0.00041194423101842403 +illusion_1.5L,sr,76,30.4,force,lower_fx,0.002341263461858034 +illusion_1.5L,sr,76,30.4,force,lower_fy,-0.0003212457522749901 +illusion_1.5L,sr,77,30.8,force,front_fx,0.0019442845368757844 +illusion_1.5L,sr,77,30.8,force,front_fy,4.2655378820199985e-06 +illusion_1.5L,sr,77,30.8,force,upper_fx,0.0023444632533937693 +illusion_1.5L,sr,77,30.8,force,upper_fy,0.0004122431273572147 +illusion_1.5L,sr,77,30.8,force,lower_fx,0.002332985633984208 +illusion_1.5L,sr,77,30.8,force,lower_fy,-0.0003023092867806554 +illusion_1.5L,sr,78,31.2,force,front_fx,0.0019456985173746943 +illusion_1.5L,sr,78,31.2,force,front_fy,1.2407806025294121e-05 +illusion_1.5L,sr,78,31.2,force,upper_fx,0.002355472184717655 +illusion_1.5L,sr,78,31.2,force,upper_fy,0.0004063998640049249 +illusion_1.5L,sr,78,31.2,force,lower_fx,0.002323349006474018 +illusion_1.5L,sr,78,31.2,force,lower_fy,-0.000287068571196869 +illusion_1.5L,sr,79,31.6,force,front_fx,0.0019449545070528984 +illusion_1.5L,sr,79,31.6,force,front_fy,1.8645012460183352e-05 +illusion_1.5L,sr,79,31.6,force,upper_fx,0.002363100415095687 +illusion_1.5L,sr,79,31.6,force,upper_fy,0.0003969927493017167 +illusion_1.5L,sr,79,31.6,force,lower_fx,0.00231376220472157 +illusion_1.5L,sr,79,31.6,force,lower_fy,-0.0002794945321511477 +illusion_1.5L,sr,80,32.0,force,front_fx,0.0019436150323599577 +illusion_1.5L,sr,80,32.0,force,front_fy,2.3404109015245922e-05 +illusion_1.5L,sr,80,32.0,force,upper_fx,0.002368247602134943 +illusion_1.5L,sr,80,32.0,force,upper_fy,0.00038714450784027576 +illusion_1.5L,sr,80,32.0,force,lower_fx,0.0023065521381795406 +illusion_1.5L,sr,80,32.0,force,lower_fy,-0.0002815697807818651 +illusion_1.5L,sr,81,32.4,force,front_fx,0.0019401396857574582 +illusion_1.5L,sr,81,32.4,force,front_fy,2.5605228074709885e-05 +illusion_1.5L,sr,81,32.4,force,upper_fx,0.002368014072999358 +illusion_1.5L,sr,81,32.4,force,upper_fy,0.0003785732260439545 +illusion_1.5L,sr,81,32.4,force,lower_fx,0.002299669198691845 +illusion_1.5L,sr,81,32.4,force,lower_fy,-0.00029434822499752045 +illusion_1.5L,sr,82,32.8,force,front_fx,0.0019401327008381486 +illusion_1.5L,sr,82,32.8,force,front_fy,2.5964352971641347e-05 +illusion_1.5L,sr,82,32.8,force,upper_fx,0.002368407091125846 +illusion_1.5L,sr,82,32.8,force,upper_fy,0.00037132459692656994 +illusion_1.5L,sr,82,32.8,force,lower_fx,0.002299805637449026 +illusion_1.5L,sr,82,32.8,force,lower_fy,-0.00031490149558521807 +illusion_1.5L,sr,83,33.2,force,front_fx,0.0019412466790527105 +illusion_1.5L,sr,83,33.2,force,front_fy,2.3534312276751734e-05 +illusion_1.5L,sr,83,33.2,force,upper_fx,0.002366091590374708 +illusion_1.5L,sr,83,33.2,force,upper_fy,0.0003644063835963607 +illusion_1.5L,sr,83,33.2,force,lower_fx,0.002303518122062087 +illusion_1.5L,sr,83,33.2,force,lower_fy,-0.0003406033792998642 +illusion_1.5L,sr,84,33.6,force,front_fx,0.0019381169695407152 +illusion_1.5L,sr,84,33.6,force,front_fy,1.9198570953449234e-05 +illusion_1.5L,sr,84,33.6,force,upper_fx,0.00235516345128417 +illusion_1.5L,sr,84,33.6,force,upper_fy,0.0003564858343452215 +illusion_1.5L,sr,84,33.6,force,lower_fx,0.002304298337548971 +illusion_1.5L,sr,84,33.6,force,lower_fy,-0.00036681987694464624 +illusion_1.5L,sr,85,34.0,force,front_fx,0.0019361390732228756 +illusion_1.5L,sr,85,34.0,force,front_fy,1.2928208889206871e-05 +illusion_1.5L,sr,85,34.0,force,upper_fx,0.0023421207442879677 +illusion_1.5L,sr,85,34.0,force,upper_fy,0.00034473289269953966 +illusion_1.5L,sr,85,34.0,force,lower_fx,0.0023072578478604555 +illusion_1.5L,sr,85,34.0,force,lower_fy,-0.0003882186720147729 +illusion_1.5L,sr,86,34.4,force,front_fx,0.0019334412645548582 +illusion_1.5L,sr,86,34.4,force,front_fy,5.770901225332636e-06 +illusion_1.5L,sr,86,34.4,force,upper_fx,0.0023266240023076534 +illusion_1.5L,sr,86,34.4,force,upper_fy,0.0003294501220807433 +illusion_1.5L,sr,86,34.4,force,lower_fx,0.0023104012943804264 +illusion_1.5L,sr,86,34.4,force,lower_fy,-0.0004018355393782258 +illusion_1.5L,sr,87,34.8,force,front_fx,0.001932624145410955 +illusion_1.5L,sr,87,34.8,force,front_fy,-1.7368037106280099e-06 +illusion_1.5L,sr,87,34.8,force,upper_fx,0.0023133354261517525 +illusion_1.5L,sr,87,34.8,force,upper_fy,0.00031211599707603455 +illusion_1.5L,sr,87,34.8,force,lower_fx,0.002316531492397189 +illusion_1.5L,sr,87,34.8,force,lower_fy,-0.00040664448169991374 +illusion_1.5L,sr,88,35.2,force,front_fx,0.001936929184012115 +illusion_1.5L,sr,88,35.2,force,front_fy,-8.802438060229179e-06 +illusion_1.5L,sr,88,35.2,force,upper_fx,0.002307828748598695 +illusion_1.5L,sr,88,35.2,force,upper_fy,0.00029596680542454123 +illusion_1.5L,sr,88,35.2,force,lower_fx,0.0023295029532164335 +illusion_1.5L,sr,88,35.2,force,lower_fy,-0.0004039575287606567 +illusion_1.5L,sr,89,35.6,force,front_fx,0.0019385776249691844 +illusion_1.5L,sr,89,35.6,force,front_fy,-1.4796842151554301e-05 +illusion_1.5L,sr,89,35.6,force,upper_fx,0.0023016633931547403 +illusion_1.5L,sr,89,35.6,force,upper_fy,0.00028599853976629674 +illusion_1.5L,sr,89,35.6,force,lower_fx,0.0023392871953547 +illusion_1.5L,sr,89,35.6,force,lower_fy,-0.0003976181033067405 +illusion_1.5L,sr,90,36.0,force,front_fx,0.00193732266779989 +illusion_1.5L,sr,90,36.0,force,front_fy,-1.929501013364643e-05 +illusion_1.5L,sr,90,36.0,force,upper_fx,0.002294591162353754 +illusion_1.5L,sr,90,36.0,force,upper_fy,0.0002846687857527286 +illusion_1.5L,sr,90,36.0,force,lower_fx,0.0023443084210157394 +illusion_1.5L,sr,90,36.0,force,lower_fy,-0.00039003638084977865 +illusion_1.5L,sr,91,36.4,force,front_fx,0.001935733132995665 +illusion_1.5L,sr,91,36.4,force,front_fy,-2.178554132115096e-05 +illusion_1.5L,sr,91,36.4,force,upper_fx,0.0022896749433130026 +illusion_1.5L,sr,91,36.4,force,upper_fy,0.0002926704182755202 +illusion_1.5L,sr,91,36.4,force,lower_fx,0.002346606459468603 +illusion_1.5L,sr,91,36.4,force,lower_fy,-0.00038245844189077616 +illusion_1.5L,sr,92,36.8,force,front_fx,0.0019320978317409754 +illusion_1.5L,sr,92,36.8,force,front_fy,-2.2238262317841873e-05 +illusion_1.5L,sr,92,36.8,force,upper_fx,0.002284690970554948 +illusion_1.5L,sr,92,36.8,force,upper_fy,0.00030908474582247436 +illusion_1.5L,sr,92,36.8,force,lower_fx,0.0023433563765138388 +illusion_1.5L,sr,92,36.8,force,lower_fy,-0.0003757287049666047 +illusion_1.5L,sr,93,37.2,force,front_fx,0.0019315838580951095 +illusion_1.5L,sr,93,37.2,force,front_fy,-2.055378172372002e-05 +illusion_1.5L,sr,93,37.2,force,upper_fx,0.002285743597894907 +illusion_1.5L,sr,93,37.2,force,upper_fy,0.0003306156722828746 +illusion_1.5L,sr,93,37.2,force,lower_fx,0.002340573351830244 +illusion_1.5L,sr,93,37.2,force,lower_fy,-0.0003685241099447012 +illusion_1.5L,sr,94,37.6,force,front_fx,0.0019334167009219527 +illusion_1.5L,sr,94,37.6,force,front_fy,-1.6907230019569397e-05 +illusion_1.5L,sr,94,37.6,force,upper_fx,0.002291410230100155 +illusion_1.5L,sr,94,37.6,force,upper_fy,0.0003539325261954218 +illusion_1.5L,sr,94,37.6,force,lower_fx,0.002337292768061161 +illusion_1.5L,sr,94,37.6,force,lower_fy,-0.00036001880653202534 +illusion_1.5L,sr,95,38.0,force,front_fx,0.001931346021592617 +illusion_1.5L,sr,95,38.0,force,front_fy,-1.1696404726535548e-05 +illusion_1.5L,sr,95,38.0,force,upper_fx,0.0022940407507121563 +illusion_1.5L,sr,95,38.0,force,upper_fy,0.0003757097292691469 +illusion_1.5L,sr,95,38.0,force,lower_fx,0.002326865680515766 +illusion_1.5L,sr,95,38.0,force,lower_fy,-0.0003496168937999755 +illusion_1.5L,sr,96,38.4,force,front_fx,0.001929791527800262 +illusion_1.5L,sr,96,38.4,force,front_fy,-5.452590812637936e-06 +illusion_1.5L,sr,96,38.4,force,upper_fx,0.00229775533080101 +illusion_1.5L,sr,96,38.4,force,upper_fy,0.000391875539207831 +illusion_1.5L,sr,96,38.4,force,lower_fx,0.0023148581385612488 +illusion_1.5L,sr,96,38.4,force,lower_fy,-0.00033606411307118833 +illusion_1.5L,sr,97,38.8,force,front_fx,0.001927803037688136 +illusion_1.5L,sr,97,38.8,force,front_fy,9.442059649700241e-07 +illusion_1.5L,sr,97,38.8,force,upper_fx,0.0023015534970909357 +illusion_1.5L,sr,97,38.8,force,upper_fy,0.00040069431997835636 +illusion_1.5L,sr,97,38.8,force,lower_fx,0.00230175768956542 +illusion_1.5L,sr,97,38.8,force,lower_fy,-0.0003206476685591042 +illusion_1.5L,sr,98,39.2,force,front_fx,0.0019267542520537972 +illusion_1.5L,sr,98,39.2,force,front_fy,7.22930826668744e-06 +illusion_1.5L,sr,98,39.2,force,upper_fx,0.0023067679721862078 +illusion_1.5L,sr,98,39.2,force,upper_fy,0.00040237754001282156 +illusion_1.5L,sr,98,39.2,force,lower_fx,0.002290409756824374 +illusion_1.5L,sr,98,39.2,force,lower_fy,-0.0003055135894101113 +illusion_1.5L,sr,99,39.6,force,front_fx,0.001930437283590436 +illusion_1.5L,sr,99,39.6,force,front_fy,1.2540262105176225e-05 +illusion_1.5L,sr,99,39.6,force,upper_fx,0.002317936159670353 +illusion_1.5L,sr,99,39.6,force,upper_fy,0.0003982450580224395 +illusion_1.5L,sr,99,39.6,force,lower_fx,0.0022866397630423307 +illusion_1.5L,sr,99,39.6,force,lower_fy,-0.0002937735116574913 +illusion_1.5L,sr,100,40.0,force,front_fx,0.0019322748994454741 +illusion_1.5L,sr,100,40.0,force,front_fy,1.698724736343138e-05 +illusion_1.5L,sr,100,40.0,force,upper_fx,0.002326431917026639 +illusion_1.5L,sr,100,40.0,force,upper_fy,0.0003920810704585165 +illusion_1.5L,sr,100,40.0,force,lower_fx,0.002283080480992794 +illusion_1.5L,sr,100,40.0,force,lower_fy,-0.0002891979238484055 +illusion_1.5L,sr,101,40.4,force,front_fx,0.0019306476460769773 +illusion_1.5L,sr,101,40.4,force,front_fy,1.9778024579863995e-05 +illusion_1.5L,sr,101,40.4,force,upper_fx,0.0023292810656130314 +illusion_1.5L,sr,101,40.4,force,upper_fy,0.0003855162940453738 +illusion_1.5L,sr,101,40.4,force,lower_fx,0.0022777626290917397 +illusion_1.5L,sr,101,40.4,force,lower_fy,-0.0002935031079687178 +illusion_1.5L,sr,102,40.8,force,front_fx,0.0019288707990199327 +illusion_1.5L,sr,102,40.8,force,front_fy,2.1027159164077602e-05 +illusion_1.5L,sr,102,40.8,force,upper_fx,0.0023293246049433947 +illusion_1.5L,sr,102,40.8,force,upper_fy,0.0003790844639297575 +illusion_1.5L,sr,102,40.8,force,lower_fx,0.0022743665613234043 +illusion_1.5L,sr,102,40.8,force,lower_fy,-0.00030560107552446425 +illusion_1.5L,sr,103,41.2,force,front_fx,0.0019252327037975192 +illusion_1.5L,sr,103,41.2,force,front_fy,1.9967723346780986e-05 +illusion_1.5L,sr,103,41.2,force,upper_fx,0.002324010943993926 +illusion_1.5L,sr,103,41.2,force,upper_fy,0.0003724551061168313 +illusion_1.5L,sr,103,41.2,force,lower_fx,0.002270667813718319 +illusion_1.5L,sr,103,41.2,force,lower_fy,-0.0003240669029764831 +illusion_1.5L,sr,104,41.6,force,front_fx,0.0019243666902184486 +illusion_1.5L,sr,104,41.6,force,front_fy,1.7485815988038667e-05 +illusion_1.5L,sr,104,41.6,force,upper_fx,0.002319046063348651 +illusion_1.5L,sr,104,41.6,force,upper_fy,0.0003645199176389724 +illusion_1.5L,sr,104,41.6,force,lower_fx,0.002272173063829541 +illusion_1.5L,sr,104,41.6,force,lower_fy,-0.00034477849840186536 +illusion_1.5L,sr,105,42.0,force,front_fx,0.0019267848692834377 +illusion_1.5L,sr,105,42.0,force,front_fy,1.3431957086140756e-05 +illusion_1.5L,sr,105,42.0,force,upper_fx,0.0023153568617999554 +illusion_1.5L,sr,105,42.0,force,upper_fy,0.00035448241396807134 +illusion_1.5L,sr,105,42.0,force,lower_fx,0.002279222011566162 +illusion_1.5L,sr,105,42.0,force,lower_fy,-0.00036474133958108723 +illusion_1.5L,sr,106,42.4,force,front_fx,0.001925730612128973 +illusion_1.5L,sr,106,42.4,force,front_fy,8.198155228456017e-06 +illusion_1.5L,sr,106,42.4,force,upper_fx,0.002305740723386407 +illusion_1.5L,sr,106,42.4,force,upper_fy,0.0003430390788707882 +illusion_1.5L,sr,106,42.4,force,lower_fx,0.0022835778072476387 +illusion_1.5L,sr,106,42.4,force,lower_fy,-0.0003814214433077723 +illusion_1.5L,sr,107,42.8,force,front_fx,0.001924587762914598 +illusion_1.5L,sr,107,42.8,force,front_fy,2.0847612631769152e-06 +illusion_1.5L,sr,107,42.8,force,upper_fx,0.0022944884840399027 +illusion_1.5L,sr,107,42.8,force,upper_fy,0.0003297296934761107 +illusion_1.5L,sr,107,42.8,force,lower_fx,0.002288297051563859 +illusion_1.5L,sr,107,42.8,force,lower_fy,-0.0003922528412658721 +illusion_1.5L,sr,108,43.2,force,front_fx,0.0019231903133913875 +illusion_1.5L,sr,108,43.2,force,front_fy,-4.419749529915862e-06 +illusion_1.5L,sr,108,43.2,force,upper_fx,0.002283016685396433 +illusion_1.5L,sr,108,43.2,force,upper_fy,0.00031600877991877496 +illusion_1.5L,sr,108,43.2,force,lower_fx,0.002293120138347149 +illusion_1.5L,sr,108,43.2,force,lower_fy,-0.0003967144584748894 +illusion_1.5L,sr,109,43.6,force,front_fx,0.001921952236443758 +illusion_1.5L,sr,109,43.6,force,front_fy,-1.004236128210323e-05 +illusion_1.5L,sr,109,43.6,force,upper_fx,0.0022727353498339653 +illusion_1.5L,sr,109,43.6,force,upper_fy,0.0003044569166377187 +illusion_1.5L,sr,109,43.6,force,lower_fx,0.0022981236688792706 +illusion_1.5L,sr,109,43.6,force,lower_fy,-0.0003954365965910256 +illusion_1.5L,sr,110,44.0,force,front_fx,0.0019249068573117256 +illusion_1.5L,sr,110,44.0,force,front_fy,-1.5245806025632191e-05 +illusion_1.5L,sr,110,44.0,force,upper_fx,0.002269709948450327 +illusion_1.5L,sr,110,44.0,force,upper_fy,0.0002970717032440007 +illusion_1.5L,sr,110,44.0,force,lower_fx,0.002307835267856717 +illusion_1.5L,sr,110,44.0,force,lower_fy,-0.00039029266918078065 +illusion_1.5L,sr,111,44.4,force,front_fx,0.0019268639152869582 +illusion_1.5L,sr,111,44.4,force,front_fy,-1.8215290765510872e-05 +illusion_1.5L,sr,111,44.4,force,upper_fx,0.0022679597605019808 +illusion_1.5L,sr,111,44.4,force,upper_fy,0.000297454243991524 +illusion_1.5L,sr,111,44.4,force,lower_fx,0.002315377350896597 +illusion_1.5L,sr,111,44.4,force,lower_fy,-0.0003837105177808553 +illusion_1.5L,sr,112,44.8,force,front_fx,0.0019251215271651745 +illusion_1.5L,sr,112,44.8,force,front_fy,-2.049258182523772e-05 +illusion_1.5L,sr,112,44.8,force,upper_fx,0.0022642433177679777 +illusion_1.5L,sr,112,44.8,force,upper_fy,0.0003054422268178314 +illusion_1.5L,sr,112,44.8,force,lower_fx,0.002316510770469904 +illusion_1.5L,sr,112,44.8,force,lower_fy,-0.00037797752884216607 +illusion_1.5L,sr,113,45.2,force,front_fx,0.001923395087942481 +illusion_1.5L,sr,113,45.2,force,front_fy,-2.0042169126099907e-05 +illusion_1.5L,sr,113,45.2,force,upper_fx,0.0022624062839895487 +illusion_1.5L,sr,113,45.2,force,upper_fy,0.0003200060164090246 +illusion_1.5L,sr,113,45.2,force,lower_fx,0.002314808079972863 +illusion_1.5L,sr,113,45.2,force,lower_fy,-0.00037193699972704053 +illusion_1.5L,sr,114,45.6,force,front_fx,0.0019201587419956923 +illusion_1.5L,sr,114,45.6,force,front_fy,-1.8736629499471746e-05 +illusion_1.5L,sr,114,45.6,force,upper_fx,0.002260528737679124 +illusion_1.5L,sr,114,45.6,force,upper_fy,0.0003378838300704956 +illusion_1.5L,sr,114,45.6,force,lower_fx,0.002308100461959839 +illusion_1.5L,sr,114,45.6,force,lower_fy,-0.00036612155963666737 +illusion_1.5L,sr,115,46.0,force,front_fx,0.0019191071623936296 +illusion_1.5L,sr,115,46.0,force,front_fy,-1.476355373597471e-05 +illusion_1.5L,sr,115,46.0,force,upper_fx,0.0022629075683653355 +illusion_1.5L,sr,115,46.0,force,upper_fy,0.00035650841891765594 +illusion_1.5L,sr,115,46.0,force,lower_fx,0.0023013437166810036 +illusion_1.5L,sr,115,46.0,force,lower_fy,-0.00035809833207167685 +illusion_1.5L,sr,116,46.4,force,front_fx,0.0019218848319724202 +illusion_1.5L,sr,116,46.4,force,front_fy,-1.0049185220850632e-05 +illusion_1.5L,sr,116,46.4,force,upper_fx,0.002271330449730158 +illusion_1.5L,sr,116,46.4,force,upper_fy,0.00037227728171274066 +illusion_1.5L,sr,116,46.4,force,lower_fx,0.0022969983983784914 +illusion_1.5L,sr,116,46.4,force,lower_fy,-0.0003481518942862749 +illusion_1.5L,sr,117,46.8,force,front_fx,0.0019216164946556091 +illusion_1.5L,sr,117,46.8,force,front_fy,-3.7776062526972964e-06 +illusion_1.5L,sr,117,46.8,force,upper_fx,0.002277268562465906 +illusion_1.5L,sr,117,46.8,force,upper_fy,0.000384786311769858 +illusion_1.5L,sr,117,46.8,force,lower_fx,0.00228806771337986 +illusion_1.5L,sr,117,46.8,force,lower_fy,-0.0003364947915542871 +illusion_1.5L,sr,118,47.2,force,front_fx,0.0019205621210858226 +illusion_1.5L,sr,118,47.2,force,front_fy,2.4034843590925448e-06 +illusion_1.5L,sr,118,47.2,force,upper_fx,0.002282386180013418 +illusion_1.5L,sr,118,47.2,force,upper_fy,0.00039171564276330173 +illusion_1.5L,sr,118,47.2,force,lower_fx,0.002277530264109373 +illusion_1.5L,sr,118,47.2,force,lower_fy,-0.0003242198145017028 +illusion_1.5L,sr,119,47.6,force,front_fx,0.0019194568740203977 +illusion_1.5L,sr,119,47.6,force,front_fy,8.376568075618707e-06 +illusion_1.5L,sr,119,47.6,force,upper_fx,0.0022873247507959604 +illusion_1.5L,sr,119,47.6,force,upper_fy,0.000393416965380311 +illusion_1.5L,sr,119,47.6,force,lower_fx,0.00226766150444746 +illusion_1.5L,sr,119,47.6,force,lower_fy,-0.00031255875364877284 +illusion_1.5L,sr,120,48.0,force,front_fx,0.001917977468110621 +illusion_1.5L,sr,120,48.0,force,front_fy,1.3139039765519556e-05 +illusion_1.5L,sr,120,48.0,force,upper_fx,0.0022913343273103237 +illusion_1.5L,sr,120,48.0,force,upper_fy,0.0003907403443008661 +illusion_1.5L,sr,120,48.0,force,lower_fx,0.0022588116116821766 +illusion_1.5L,sr,120,48.0,force,lower_fy,-0.00030424667056649923 +illusion_1.5L,sr,121,48.4,force,front_fx,0.0019202451221644878 +illusion_1.5L,sr,121,48.4,force,front_fy,1.6839981981320307e-05 +illusion_1.5L,sr,121,48.4,force,upper_fx,0.0022991299629211426 +illusion_1.5L,sr,121,48.4,force,upper_fy,0.00038530692108906806 +illusion_1.5L,sr,121,48.4,force,lower_fx,0.0022567203268408775 +illusion_1.5L,sr,121,48.4,force,lower_fy,-0.000300761079415679 +illusion_1.5L,sr,122,48.8,force,front_fx,0.0019224699353799224 +illusion_1.5L,sr,122,48.8,force,front_fy,1.915790380735416e-05 +illusion_1.5L,sr,122,48.8,force,upper_fx,0.0023055218625813723 +illusion_1.5L,sr,122,48.8,force,upper_fy,0.0003795347874984145 +illusion_1.5L,sr,122,48.8,force,lower_fx,0.0022569664288312197 +illusion_1.5L,sr,122,48.8,force,lower_fy,-0.0003042315074708313 +illusion_1.5L,sr,123,49.2,force,front_fx,0.0019208010053262115 +illusion_1.5L,sr,123,49.2,force,front_fy,1.9757664631470107e-05 +illusion_1.5L,sr,123,49.2,force,upper_fx,0.0023052126634866 +illusion_1.5L,sr,123,49.2,force,upper_fy,0.000374518713215366 +illusion_1.5L,sr,123,49.2,force,lower_fx,0.002254836494103074 +illusion_1.5L,sr,123,49.2,force,lower_fy,-0.000314749195240438 +illusion_1.5L,sr,124,49.6,force,front_fx,0.0019190680468454957 +illusion_1.5L,sr,124,49.6,force,front_fy,1.8897593690780923e-05 +illusion_1.5L,sr,124,49.6,force,upper_fx,0.002301863394677639 +illusion_1.5L,sr,124,49.6,force,upper_fy,0.0003693962062243372 +illusion_1.5L,sr,124,49.6,force,lower_fx,0.0022542476654052734 +illusion_1.5L,sr,124,49.6,force,lower_fy,-0.00032981170807033777 +illusion_1.5L,sr,125,50.0,force,front_fx,0.0019161420641466975 +illusion_1.5L,sr,125,50.0,force,front_fy,1.5867643014644273e-05 +illusion_1.5L,sr,125,50.0,force,upper_fx,0.0022941480856388807 +illusion_1.5L,sr,125,50.0,force,upper_fy,0.00036322977393865585 +illusion_1.5L,sr,125,50.0,force,lower_fx,0.0022536576725542545 +illusion_1.5L,sr,125,50.0,force,lower_fy,-0.0003470687079243362 +illusion_1.5L,sr,126,50.4,force,front_fx,0.001914934953674674 +illusion_1.5L,sr,126,50.4,force,front_fy,1.1650122360151727e-05 +illusion_1.5L,sr,126,50.4,force,upper_fx,0.0022861752659082413 +illusion_1.5L,sr,126,50.4,force,upper_fy,0.0003548653330653906 +illusion_1.5L,sr,126,50.4,force,lower_fx,0.002256549196317792 +illusion_1.5L,sr,126,50.4,force,lower_fy,-0.00036316830664873123 +illusion_1.5L,sr,127,50.8,force,front_fx,0.0019178803777322173 +illusion_1.5L,sr,127,50.8,force,front_fy,6.073853455745848e-06 +illusion_1.5L,sr,127,50.8,force,upper_fx,0.002281767316162586 +illusion_1.5L,sr,127,50.8,force,upper_fy,0.00034385372418910265 +illusion_1.5L,sr,127,50.8,force,lower_fx,0.0022655653301626444 +illusion_1.5L,sr,127,50.8,force,lower_fy,-0.00037603569217026234 +illusion_1.5L,sr,128,51.2,force,front_fx,0.0019183657132089138 +illusion_1.5L,sr,128,51.2,force,front_fy,1.0453739207605395e-07 +illusion_1.5L,sr,128,51.2,force,upper_fx,0.0022740152198821306 +illusion_1.5L,sr,128,51.2,force,upper_fy,0.00033207423985004425 +illusion_1.5L,sr,128,51.2,force,lower_fx,0.00227252091281116 +illusion_1.5L,sr,128,51.2,force,lower_fy,-0.00038502481766045094 +illusion_1.5L,sr,129,51.6,force,front_fx,0.0019173951586708426 +illusion_1.5L,sr,129,51.6,force,front_fy,-5.790733666799497e-06 +illusion_1.5L,sr,129,51.6,force,upper_fx,0.0022645818535238504 +illusion_1.5L,sr,129,51.6,force,upper_fy,0.00032047138665802777 +illusion_1.5L,sr,129,51.6,force,lower_fx,0.002277602208778262 +illusion_1.5L,sr,129,51.6,force,lower_fy,-0.0003894452238455415 +illusion_1.5L,sr,130,52.0,force,front_fx,0.001916456618346274 +illusion_1.5L,sr,130,52.0,force,front_fy,-1.0818529517564457e-05 +illusion_1.5L,sr,130,52.0,force,upper_fx,0.002256214851513505 +illusion_1.5L,sr,130,52.0,force,upper_fy,0.0003109194803982973 +illusion_1.5L,sr,130,52.0,force,lower_fx,0.0022823454346507788 +illusion_1.5L,sr,130,52.0,force,lower_fy,-0.0003892991808243096 +illusion_1.5L,sr,131,52.4,force,front_fx,0.0019148568389937282 +illusion_1.5L,sr,131,52.4,force,front_fy,-1.4849784747639205e-05 +illusion_1.5L,sr,131,52.4,force,upper_fx,0.0022486357484012842 +illusion_1.5L,sr,131,52.4,force,upper_fy,0.00030539219733327627 +illusion_1.5L,sr,131,52.4,force,lower_fx,0.002285483293235302 +illusion_1.5L,sr,131,52.4,force,lower_fy,-0.0003860935103148222 +illusion_1.5L,sr,132,52.8,force,front_fx,0.0019164595287293196 +illusion_1.5L,sr,132,52.8,force,front_fy,-1.7707277947920375e-05 +illusion_1.5L,sr,132,52.8,force,upper_fx,0.0022471516858786345 +illusion_1.5L,sr,132,52.8,force,upper_fy,0.000305037887301296 +illusion_1.5L,sr,132,52.8,force,lower_fx,0.0022914577275514603 +illusion_1.5L,sr,132,52.8,force,lower_fy,-0.0003809492336586118 +illusion_1.5L,sr,133,53.2,force,front_fx,0.001918846508488059 +illusion_1.5L,sr,133,53.2,force,front_fy,-1.8895963876275346e-05 +illusion_1.5L,sr,133,53.2,force,upper_fx,0.0022488702088594437 +illusion_1.5L,sr,133,53.2,force,upper_fy,0.00031116465106606483 +illusion_1.5L,sr,133,53.2,force,lower_fx,0.002296770690008998 +illusion_1.5L,sr,133,53.2,force,lower_fy,-0.00037561339559033513 +illusion_1.5L,sr,134,53.6,force,front_fx,0.0019173399778082967 +illusion_1.5L,sr,134,53.6,force,front_fy,-1.8792899936670437e-05 +illusion_1.5L,sr,134,53.6,force,upper_fx,0.002248096978291869 +illusion_1.5L,sr,134,53.6,force,upper_fy,0.0003232130839023739 +illusion_1.5L,sr,134,53.6,force,lower_fx,0.002295298036187887 +illusion_1.5L,sr,134,53.6,force,lower_fy,-0.000371092144632712 +illusion_1.5L,sr,135,54.0,force,front_fx,0.0019156368216499686 +illusion_1.5L,sr,135,54.0,force,front_fy,-1.6623554984107614e-05 +illusion_1.5L,sr,135,54.0,force,upper_fx,0.002248424105346203 +illusion_1.5L,sr,135,54.0,force,upper_fy,0.0003388335171621293 +illusion_1.5L,sr,135,54.0,force,lower_fx,0.0022906428202986717 +illusion_1.5L,sr,135,54.0,force,lower_fy,-0.0003657321503851563 +illusion_1.5L,sr,136,54.4,force,front_fx,0.0019131131703034043 +illusion_1.5L,sr,136,54.4,force,front_fy,-1.3217597370385192e-05 +illusion_1.5L,sr,136,54.4,force,upper_fx,0.0022490706760436296 +illusion_1.5L,sr,136,54.4,force,upper_fy,0.0003549739776644856 +illusion_1.5L,sr,136,54.4,force,lower_fx,0.002282405737787485 +illusion_1.5L,sr,136,54.4,force,lower_fy,-0.0003590589330997318 +illusion_1.5L,sr,137,54.8,force,front_fx,0.0019118087366223335 +illusion_1.5L,sr,137,54.8,force,front_fy,-8.152242116921116e-06 +illusion_1.5L,sr,137,54.8,force,upper_fx,0.0022522895596921444 +illusion_1.5L,sr,137,54.8,force,upper_fy,0.00036934122908860445 +illusion_1.5L,sr,137,54.8,force,lower_fx,0.0022737726103514433 +illusion_1.5L,sr,137,54.8,force,lower_fy,-0.0003497145662549883 +illusion_1.5L,sr,138,55.2,force,front_fx,0.0019147280836477876 +illusion_1.5L,sr,138,55.2,force,front_fy,-2.6403142783237854e-06 +illusion_1.5L,sr,138,55.2,force,upper_fx,0.0022614558693021536 +illusion_1.5L,sr,138,55.2,force,upper_fy,0.00037958897883072495 +illusion_1.5L,sr,138,55.2,force,lower_fx,0.002269302261993289 +illusion_1.5L,sr,138,55.2,force,lower_fy,-0.00033827029983513057 +illusion_1.5L,sr,139,55.6,force,front_fx,0.0019157525384798646 +illusion_1.5L,sr,139,55.6,force,front_fy,3.1765746371092973e-06 +illusion_1.5L,sr,139,55.6,force,upper_fx,0.0022689681500196457 +illusion_1.5L,sr,139,55.6,force,upper_fy,0.00038620212581008673 +illusion_1.5L,sr,139,55.6,force,lower_fx,0.002262712921947241 +illusion_1.5L,sr,139,55.6,force,lower_fy,-0.0003265107807237655 +illusion_1.5L,sr,140,56.0,force,front_fx,0.001914814580231905 +illusion_1.5L,sr,140,56.0,force,front_fy,8.349215931957588e-06 +illusion_1.5L,sr,140,56.0,force,upper_fx,0.002273823134601116 +illusion_1.5L,sr,140,56.0,force,upper_fy,0.00038859646883793175 +illusion_1.5L,sr,140,56.0,force,lower_fx,0.0022542793303728104 +illusion_1.5L,sr,140,56.0,force,lower_fy,-0.0003163455694448203 +illusion_1.5L,sr,141,56.4,force,front_fx,0.001913997926749289 +illusion_1.5L,sr,141,56.4,force,front_fy,1.2657455044973176e-05 +illusion_1.5L,sr,141,56.4,force,upper_fx,0.0022782250307500362 +illusion_1.5L,sr,141,56.4,force,upper_fy,0.0003873674140777439 +illusion_1.5L,sr,141,56.4,force,lower_fx,0.0022471752017736435 +illusion_1.5L,sr,141,56.4,force,lower_fy,-0.000309035531245172 +illusion_1.5L,sr,142,56.8,force,front_fx,0.0019123092060908675 +illusion_1.5L,sr,142,56.8,force,front_fy,1.6185258573386818e-05 +illusion_1.5L,sr,142,56.8,force,upper_fx,0.002280504209920764 +illusion_1.5L,sr,142,56.8,force,upper_fy,0.0003839356068056077 +illusion_1.5L,sr,142,56.8,force,lower_fx,0.0022407309152185917 +illusion_1.5L,sr,142,56.8,force,lower_fy,-0.00030629761749878526 +illusion_1.5L,sr,143,57.2,force,front_fx,0.0019132521701976657 +illusion_1.5L,sr,143,57.2,force,front_fy,1.7853819372248836e-05 +illusion_1.5L,sr,143,57.2,force,upper_fx,0.002284700982272625 +illusion_1.5L,sr,143,57.2,force,upper_fy,0.00037887284997850657 +illusion_1.5L,sr,143,57.2,force,lower_fx,0.0022395749110728502 +illusion_1.5L,sr,143,57.2,force,lower_fy,-0.00030899239936843514 +illusion_1.5L,sr,144,57.6,force,front_fx,0.0019156640628352761 +illusion_1.5L,sr,144,57.6,force,front_fy,1.8757067664409988e-05 +illusion_1.5L,sr,144,57.6,force,upper_fx,0.0022887878585606813 +illusion_1.5L,sr,144,57.6,force,upper_fy,0.0003739552339538932 +illusion_1.5L,sr,144,57.6,force,lower_fx,0.002242392860352993 +illusion_1.5L,sr,144,57.6,force,lower_fy,-0.000317035592161119 +illusion_1.5L,sr,145,58.0,force,front_fx,0.0019144098041579127 +illusion_1.5L,sr,145,58.0,force,front_fy,1.7139480405603535e-05 +illusion_1.5L,sr,145,58.0,force,upper_fx,0.002286401577293873 +illusion_1.5L,sr,145,58.0,force,upper_fy,0.00036894730874337256 +illusion_1.5L,sr,145,58.0,force,lower_fx,0.002242826158180833 +illusion_1.5L,sr,145,58.0,force,lower_fy,-0.0003305662830825895 +illusion_1.5L,sr,146,58.4,force,front_fx,0.0019127504201605916 +illusion_1.5L,sr,146,58.4,force,front_fy,1.4828222447249573e-05 +illusion_1.5L,sr,146,58.4,force,upper_fx,0.002280651358887553 +illusion_1.5L,sr,146,58.4,force,upper_fy,0.00036338207428343594 +illusion_1.5L,sr,146,58.4,force,lower_fx,0.002244021510705352 +illusion_1.5L,sr,146,58.4,force,lower_fy,-0.0003458098799455911 +illusion_1.5L,sr,147,58.8,force,front_fx,0.0019106704276055098 +illusion_1.5L,sr,147,58.8,force,front_fy,1.0147214197786525e-05 +illusion_1.5L,sr,147,58.8,force,upper_fx,0.002272181911394 +illusion_1.5L,sr,147,58.8,force,upper_fy,0.0003554151626303792 +illusion_1.5L,sr,147,58.8,force,lower_fx,0.0022457153536379337 +illusion_1.5L,sr,147,58.8,force,lower_fy,-0.00036117283161729574 +illusion_1.5L,sr,148,59.2,force,front_fx,0.0019093076698482037 +illusion_1.5L,sr,148,59.2,force,front_fy,5.31083833266166e-06 +illusion_1.5L,sr,148,59.2,force,upper_fx,0.002263089409098029 +illusion_1.5L,sr,148,59.2,force,upper_fy,0.00034565318492241204 +illusion_1.5L,sr,148,59.2,force,lower_fx,0.002249198965728283 +illusion_1.5L,sr,148,59.2,force,lower_fy,-0.00037329416954889894 +illusion_1.5L,sr,149,59.6,force,front_fx,0.0019119578646495938 +illusion_1.5L,sr,149,59.6,force,front_fy,-6.218826342774264e-07 +illusion_1.5L,sr,149,59.6,force,upper_fx,0.0022584882099181414 +illusion_1.5L,sr,149,59.6,force,upper_fy,0.0003336621157359332 +illusion_1.5L,sr,149,59.6,force,lower_fx,0.0022581093944609165 +illusion_1.5L,sr,149,59.6,force,lower_fy,-0.00038158000097610056 +illusion_1.5L,sr,150,60.0,force,front_fx,0.0019134526373818517 +illusion_1.5L,sr,150,60.0,force,front_fy,-5.631975454889471e-06 +illusion_1.5L,sr,150,60.0,force,upper_fx,0.002252973150461912 +illusion_1.5L,sr,150,60.0,force,upper_fy,0.0003227515844628215 +illusion_1.5L,sr,150,60.0,force,lower_fx,0.002266004914417863 +illusion_1.5L,sr,150,60.0,force,lower_fy,-0.00038565549766644835 +illusion_1.5L,sr,151,60.4,force,front_fx,0.0019126125844195485 +illusion_1.5L,sr,151,60.4,force,front_fy,-1.0498638403078075e-05 +illusion_1.5L,sr,151,60.4,force,upper_fx,0.002245580544695258 +illusion_1.5L,sr,151,60.4,force,upper_fy,0.0003140082990285009 +illusion_1.5L,sr,151,60.4,force,lower_fx,0.002270700642839074 +illusion_1.5L,sr,151,60.4,force,lower_fy,-0.0003865906910505146 +illusion_1.5L,sr,152,60.8,force,front_fx,0.0019119010539725423 +illusion_1.5L,sr,152,60.8,force,front_fy,-1.431682630936848e-05 +illusion_1.5L,sr,152,60.8,force,upper_fx,0.002239673398435116 +illusion_1.5L,sr,152,60.8,force,upper_fy,0.00030903820879757404 +illusion_1.5L,sr,152,60.8,force,lower_fx,0.002274694386869669 +illusion_1.5L,sr,152,60.8,force,lower_fy,-0.0003844749298878014 +illusion_1.5L,sr,153,61.2,force,front_fx,0.0019102045334875584 +illusion_1.5L,sr,153,61.2,force,front_fy,-1.683653681538999e-05 +illusion_1.5L,sr,153,61.2,force,upper_fx,0.002234312007203698 +illusion_1.5L,sr,153,61.2,force,upper_fy,0.00030902569415047765 +illusion_1.5L,sr,153,61.2,force,lower_fx,0.0022761994041502476 +illusion_1.5L,sr,153,61.2,force,lower_fy,-0.0003807558096013963 +illusion_1.5L,sr,154,61.6,force,front_fx,0.0019104862585663795 +illusion_1.5L,sr,154,61.6,force,front_fy,-1.8271588487550616e-05 +illusion_1.5L,sr,154,61.6,force,upper_fx,0.002233471255749464 +illusion_1.5L,sr,154,61.6,force,upper_fy,0.0003139571053907275 +illusion_1.5L,sr,154,61.6,force,lower_fx,0.0022785584442317486 +illusion_1.5L,sr,154,61.6,force,lower_fy,-0.00037610807339660823 +illusion_1.5L,sr,155,62.0,force,front_fx,0.0019128498388454318 +illusion_1.5L,sr,155,62.0,force,front_fy,-1.768262700352352e-05 +illusion_1.5L,sr,155,62.0,force,upper_fx,0.0022371462546288967 +illusion_1.5L,sr,155,62.0,force,upper_fy,0.0003239524376112968 +illusion_1.5L,sr,155,62.0,force,lower_fx,0.0022814280819147825 +illusion_1.5L,sr,155,62.0,force,lower_fy,-0.0003708804724738002 +illusion_1.5L,sr,156,62.4,force,front_fx,0.0019120107172057033 +illusion_1.5L,sr,156,62.4,force,front_fy,-1.5960920791258104e-05 +illusion_1.5L,sr,156,62.4,force,upper_fx,0.002238921355456114 +illusion_1.5L,sr,156,62.4,force,upper_fy,0.00033768490538932383 +illusion_1.5L,sr,156,62.4,force,lower_fx,0.0022783027961850166 +illusion_1.5L,sr,156,62.4,force,lower_fy,-0.00036592778633348644 +illusion_1.5L,sr,157,62.8,force,front_fx,0.0019104618113487959 +illusion_1.5L,sr,157,62.8,force,front_fy,-1.21674593174248e-05 +illusion_1.5L,sr,157,62.8,force,upper_fx,0.002240915782749653 +illusion_1.5L,sr,157,62.8,force,upper_fy,0.000352885399479419 +illusion_1.5L,sr,157,62.8,force,lower_fx,0.0022718377877026796 +illusion_1.5L,sr,157,62.8,force,lower_fy,-0.0003593935689423233 +illusion_1.5L,sr,158,63.2,force,front_fx,0.0019087676191702485 +illusion_1.5L,sr,158,63.2,force,front_fy,-7.674078915442806e-06 +illusion_1.5L,sr,158,63.2,force,upper_fx,0.002243596129119396 +illusion_1.5L,sr,158,63.2,force,upper_fy,0.00036647391971200705 +illusion_1.5L,sr,158,63.2,force,lower_fx,0.002263267058879137 +illusion_1.5L,sr,158,63.2,force,lower_fy,-0.000351130060153082 +illusion_1.5L,sr,159,63.6,force,front_fx,0.0019073390867561102 +illusion_1.5L,sr,159,63.6,force,front_fy,-2.135114300472196e-06 +illusion_1.5L,sr,159,63.6,force,upper_fx,0.0022471612319350243 +illusion_1.5L,sr,159,63.6,force,upper_fy,0.0003770537441596389 +illusion_1.5L,sr,159,63.6,force,lower_fx,0.0022540222853422165 +illusion_1.5L,sr,159,63.6,force,lower_fy,-0.0003406837349757552 +illusion_1.5L,sr,160,64.0,force,front_fx,0.0019096413161605597 +illusion_1.5L,sr,160,64.0,force,front_fy,3.0948174298828235e-06 +illusion_1.5L,sr,160,64.0,force,upper_fx,0.002255631610751152 +illusion_1.5L,sr,160,64.0,force,upper_fy,0.0003829500055871904 +illusion_1.5L,sr,160,64.0,force,lower_fx,0.0022492604330182076 +illusion_1.5L,sr,160,64.0,force,lower_fy,-0.00032931778696365654 +illusion_1.5L,sr,161,64.4,force,front_fx,0.0019115284085273743 +illusion_1.5L,sr,161,64.4,force,front_fy,8.004799383343197e-06 +illusion_1.5L,sr,161,64.4,force,upper_fx,0.002263768808916211 +illusion_1.5L,sr,161,64.4,force,upper_fy,0.0003853345988318324 +illusion_1.5L,sr,161,64.4,force,lower_fx,0.0022448506206274033 +illusion_1.5L,sr,161,64.4,force,lower_fy,-0.0003192098520230502 +illusion_1.5L,sr,162,64.8,force,front_fx,0.0019108710112050176 +illusion_1.5L,sr,162,64.8,force,front_fy,1.2427536603354383e-05 +illusion_1.5L,sr,162,64.8,force,upper_fx,0.002268321579322219 +illusion_1.5L,sr,162,64.8,force,upper_fy,0.0003850345965474844 +illusion_1.5L,sr,162,64.8,force,lower_fx,0.002238573506474495 +illusion_1.5L,sr,162,64.8,force,lower_fy,-0.0003122812486253679 +illusion_1.5L,sr,163,65.2,force,front_fx,0.001910176477394998 +illusion_1.5L,sr,163,65.2,force,front_fy,1.540547418699134e-05 +illusion_1.5L,sr,163,65.2,force,upper_fx,0.002271796576678753 +illusion_1.5L,sr,163,65.2,force,upper_fy,0.00038238184060901403 +illusion_1.5L,sr,163,65.2,force,lower_fx,0.00223372969776392 +illusion_1.5L,sr,163,65.2,force,lower_fy,-0.00030964717734605074 +illusion_1.5L,sr,164,65.6,force,front_fx,0.001908457255922258 +illusion_1.5L,sr,164,65.6,force,front_fy,1.7678141375654377e-05 +illusion_1.5L,sr,164,65.6,force,upper_fx,0.0022724363952875137 +illusion_1.5L,sr,164,65.6,force,upper_fy,0.00037884991616010666 +illusion_1.5L,sr,164,65.6,force,lower_fx,0.002229405101388693 +illusion_1.5L,sr,164,65.6,force,lower_fy,-0.00031181861413642764 +illusion_1.5L,sr,165,66.0,force,front_fx,0.0019081600476056337 +illusion_1.5L,sr,165,66.0,force,front_fy,1.7795195162761956e-05 +illusion_1.5L,sr,165,66.0,force,upper_fx,0.002273077378049493 +illusion_1.5L,sr,165,66.0,force,upper_fy,0.0003741180116776377 +illusion_1.5L,sr,165,66.0,force,lower_fx,0.0022287964820861816 +illusion_1.5L,sr,165,66.0,force,lower_fy,-0.0003190448915120214 +illusion_1.5L,sr,166,66.4,force,front_fx,0.0019104263046756387 +illusion_1.5L,sr,166,66.4,force,front_fy,1.7006113921524957e-05 +illusion_1.5L,sr,166,66.4,force,upper_fx,0.0022746820468455553 +illusion_1.5L,sr,166,66.4,force,upper_fy,0.0003690995217766613 +illusion_1.5L,sr,166,66.4,force,lower_fx,0.002233225619420409 +illusion_1.5L,sr,166,66.4,force,lower_fy,-0.00032985120196826756 +illusion_1.5L,sr,167,66.8,force,front_fx,0.001910039340145886 +illusion_1.5L,sr,167,66.8,force,front_fy,1.3917030628363136e-05 +illusion_1.5L,sr,167,66.8,force,upper_fx,0.0022711262572556734 +illusion_1.5L,sr,167,66.8,force,upper_fy,0.000363308034138754 +illusion_1.5L,sr,167,66.8,force,lower_fx,0.00223622377961874 +illusion_1.5L,sr,167,66.8,force,lower_fy,-0.0003440264845266938 +illusion_1.5L,sr,168,67.2,force,front_fx,0.0019086627289652824 +illusion_1.5L,sr,168,67.2,force,front_fy,1.0067838957183994e-05 +illusion_1.5L,sr,168,67.2,force,upper_fx,0.0022641175892204046 +illusion_1.5L,sr,168,67.2,force,upper_fy,0.0003564363287296146 +illusion_1.5L,sr,168,67.2,force,lower_fx,0.0022389658261090517 +illusion_1.5L,sr,168,67.2,force,lower_fy,-0.00035812490386888385 +illusion_1.5L,sr,169,67.6,force,front_fx,0.0019072698196396232 +illusion_1.5L,sr,169,67.6,force,front_fy,4.834840183320921e-06 +illusion_1.5L,sr,169,67.6,force,upper_fx,0.0022556071635335684 +illusion_1.5L,sr,169,67.6,force,upper_fy,0.00034726675949059427 +illusion_1.5L,sr,169,67.6,force,lower_fx,0.0022423129994422197 +illusion_1.5L,sr,169,67.6,force,lower_fy,-0.00037048663944005966 +illusion_1.5L,sr,170,68.0,force,front_fx,0.001905796816572547 +illusion_1.5L,sr,170,68.0,force,front_fy,-3.4160910900027375e-07 +illusion_1.5L,sr,170,68.0,force,upper_fx,0.0022463779896497726 +illusion_1.5L,sr,170,68.0,force,upper_fy,0.0003368837642483413 +illusion_1.5L,sr,170,68.0,force,lower_fx,0.0022459293249994516 +illusion_1.5L,sr,170,68.0,force,lower_fy,-0.0003789870534092188 +illusion_1.5L,sr,171,68.4,force,front_fx,0.0019076976459473372 +illusion_1.5L,sr,171,68.4,force,front_fy,-5.3615012802765705e-06 +illusion_1.5L,sr,171,68.4,force,upper_fx,0.002241525100544095 +illusion_1.5L,sr,171,68.4,force,upper_fy,0.00032593333162367344 +illusion_1.5L,sr,171,68.4,force,lower_fx,0.002253832994028926 +illusion_1.5L,sr,171,68.4,force,lower_fy,-0.00038315850542858243 +illusion_1.5L,sr,172,68.8,force,front_fx,0.0019099477212876081 +illusion_1.5L,sr,172,68.8,force,front_fy,-1.0175820534641389e-05 +illusion_1.5L,sr,172,68.8,force,upper_fx,0.0022381972521543503 +illusion_1.5L,sr,172,68.8,force,upper_fy,0.0003168598632328212 +illusion_1.5L,sr,172,68.8,force,lower_fx,0.0022620842792093754 +illusion_1.5L,sr,172,68.8,force,lower_fy,-0.00038409658009186387 +illusion_1.5L,sr,173,69.2,force,front_fx,0.0019094732124358416 +illusion_1.5L,sr,173,69.2,force,front_fy,-1.3638417840411421e-05 +illusion_1.5L,sr,173,69.2,force,upper_fx,0.0022330237552523613 +illusion_1.5L,sr,173,69.2,force,upper_fy,0.00031184041290543973 +illusion_1.5L,sr,173,69.2,force,lower_fx,0.0022664933931082487 +illusion_1.5L,sr,173,69.2,force,lower_fy,-0.0003827968903351575 +illusion_1.5L,sr,174,69.6,force,front_fx,0.001908740377984941 +illusion_1.5L,sr,174,69.6,force,front_fy,-1.6633410268696025e-05 +illusion_1.5L,sr,174,69.6,force,upper_fx,0.0022291361819952726 +illusion_1.5L,sr,174,69.6,force,upper_fy,0.0003110715770162642 +illusion_1.5L,sr,174,69.6,force,lower_fx,0.0022692459169775248 +illusion_1.5L,sr,174,69.6,force,lower_fy,-0.0003801640123128891 +illusion_1.5L,sr,175,70.0,force,front_fx,0.0019070273265242577 +illusion_1.5L,sr,175,70.0,force,front_fy,-1.7484157069702633e-05 +illusion_1.5L,sr,175,70.0,force,upper_fx,0.0022257331293076277 +illusion_1.5L,sr,175,70.0,force,upper_fy,0.0003156924503855407 +illusion_1.5L,sr,175,70.0,force,lower_fx,0.0022690885234624147 +illusion_1.5L,sr,175,70.0,force,lower_fy,-0.00037630501901730895 +illusion_1.5L,sr,176,70.4,force,front_fx,0.0019062442006543279 +illusion_1.5L,sr,176,70.4,force,front_fy,-1.7633130482863635e-05 +illusion_1.5L,sr,176,70.4,force,upper_fx,0.002225453034043312 +illusion_1.5L,sr,176,70.4,force,upper_fy,0.00032418445334769785 +illusion_1.5L,sr,176,70.4,force,lower_fx,0.0022681034170091152 +illusion_1.5L,sr,176,70.4,force,lower_fy,-0.00037203694228082895 +illusion_1.5L,sr,177,70.8,force,front_fx,0.0019084104569628835 +illusion_1.5L,sr,177,70.8,force,front_fy,-1.5302661267924123e-05 +illusion_1.5L,sr,177,70.8,force,upper_fx,0.002230424666777253 +illusion_1.5L,sr,177,70.8,force,upper_fy,0.0003362176939845085 +illusion_1.5L,sr,177,70.8,force,lower_fx,0.002268601441755891 +illusion_1.5L,sr,177,70.8,force,lower_fy,-0.0003663118986878544 +illusion_1.5L,sr,178,71.2,force,front_fx,0.0019084938103333116 +illusion_1.5L,sr,178,71.2,force,front_fy,-1.2282007446628995e-05 +illusion_1.5L,sr,178,71.2,force,upper_fx,0.002234602812677622 +illusion_1.5L,sr,178,71.2,force,upper_fy,0.00034980830969288945 +illusion_1.5L,sr,178,71.2,force,lower_fx,0.0022647513542324305 +illusion_1.5L,sr,178,71.2,force,lower_fy,-0.0003602943615987897 +illusion_1.5L,sr,179,71.6,force,front_fx,0.0019072750583291054 +illusion_1.5L,sr,179,71.6,force,front_fy,-7.455995728378184e-06 +illusion_1.5L,sr,179,71.6,force,upper_fx,0.0022378957364708185 +illusion_1.5L,sr,179,71.6,force,upper_fy,0.00036335980985313654 +illusion_1.5L,sr,179,71.6,force,lower_fx,0.0022574488539248705 +illusion_1.5L,sr,179,71.6,force,lower_fy,-0.00035239546559751034 +illusion_1.5L,sr,180,72.0,force,front_fx,0.0019060962367802858 +illusion_1.5L,sr,180,72.0,force,front_fy,-2.5287301923526684e-06 +illusion_1.5L,sr,180,72.0,force,upper_fx,0.0022417360451072454 +illusion_1.5L,sr,180,72.0,force,upper_fy,0.0003739165549632162 +illusion_1.5L,sr,180,72.0,force,lower_fx,0.0022490385454148054 +illusion_1.5L,sr,180,72.0,force,lower_fy,-0.00034307653550058603 +illusion_1.5L,sr,181,72.4,force,front_fx,0.0019046389497816563 +illusion_1.5L,sr,181,72.4,force,front_fy,2.670375351954135e-06 +illusion_1.5L,sr,181,72.4,force,upper_fx,0.0022453723940998316 +illusion_1.5L,sr,181,72.4,force,upper_fy,0.0003808393666986376 +illusion_1.5L,sr,181,72.4,force,lower_fx,0.002240000991150737 +illusion_1.5L,sr,181,72.4,force,lower_fy,-0.0003326734877191484 +illusion_1.5L,sr,182,72.8,force,front_fx,0.0019061568891629577 +illusion_1.5L,sr,182,72.8,force,front_fy,7.550816917500924e-06 +illusion_1.5L,sr,182,72.8,force,upper_fx,0.0022526574321091175 +illusion_1.5L,sr,182,72.8,force,upper_fy,0.0003834906965494156 +illusion_1.5L,sr,182,72.8,force,lower_fx,0.002235142048448324 +illusion_1.5L,sr,182,72.8,force,lower_fy,-0.0003225133114028722 +illusion_1.5L,sr,183,73.2,force,front_fx,0.0019086470128968358 +illusion_1.5L,sr,183,73.2,force,front_fy,1.1682548574754037e-05 +illusion_1.5L,sr,183,73.2,force,upper_fx,0.0022608863655477762 +illusion_1.5L,sr,183,73.2,force,upper_fy,0.0003831710200756788 +illusion_1.5L,sr,183,73.2,force,lower_fx,0.002232761587947607 +illusion_1.5L,sr,183,73.2,force,lower_fy,-0.0003148575488012284 +illusion_1.5L,sr,184,73.6,force,front_fx,0.0019083592342212796 +illusion_1.5L,sr,184,73.6,force,front_fy,1.5100908967724536e-05 +illusion_1.5L,sr,184,73.6,force,upper_fx,0.0022650184109807014 +illusion_1.5L,sr,184,73.6,force,upper_fy,0.0003814476658590138 +illusion_1.5L,sr,184,73.6,force,lower_fx,0.002228696830570698 +illusion_1.5L,sr,184,73.6,force,lower_fy,-0.00031150042195804417 +illusion_1.5L,sr,185,74.0,force,front_fx,0.001907508121803403 +illusion_1.5L,sr,185,74.0,force,front_fy,1.6915138985496014e-05 +illusion_1.5L,sr,185,74.0,force,upper_fx,0.002266974188387394 +illusion_1.5L,sr,185,74.0,force,upper_fy,0.0003783819847740233 +illusion_1.5L,sr,185,74.0,force,lower_fx,0.0022255450021475554 +illusion_1.5L,sr,185,74.0,force,lower_fy,-0.00031310893245972693 +illusion_1.5L,sr,186,74.4,force,front_fx,0.0019058145117014647 +illusion_1.5L,sr,186,74.4,force,front_fy,1.7714146451908164e-05 +illusion_1.5L,sr,186,74.4,force,upper_fx,0.002265945775434375 +illusion_1.5L,sr,186,74.4,force,upper_fy,0.0003748119343072176 +illusion_1.5L,sr,186,74.4,force,lower_fx,0.0022230788599699736 +illusion_1.5L,sr,186,74.4,force,lower_fy,-0.000319294718792662 +illusion_1.5L,sr,187,74.8,force,front_fx,0.0019046823726966977 +illusion_1.5L,sr,187,74.8,force,front_fy,1.6491367205162533e-05 +illusion_1.5L,sr,187,74.8,force,upper_fx,0.0022636058274656534 +illusion_1.5L,sr,187,74.8,force,upper_fy,0.000370101653970778 +illusion_1.5L,sr,187,74.8,force,lower_fx,0.002223104937002063 +illusion_1.5L,sr,187,74.8,force,lower_fy,-0.00032948277657851577 +illusion_1.5L,sr,188,75.2,force,front_fx,0.0019066908862441778 +illusion_1.5L,sr,188,75.2,force,front_fy,1.4080149412620813e-05 +illusion_1.5L,sr,188,75.2,force,upper_fx,0.002262981841340661 +illusion_1.5L,sr,188,75.2,force,upper_fy,0.0003642764932010323 +illusion_1.5L,sr,188,75.2,force,lower_fx,0.002228544559329748 +illusion_1.5L,sr,188,75.2,force,lower_fy,-0.00034165644319728017 +illusion_1.5L,sr,189,75.6,force,front_fx,0.0019072385039180517 +illusion_1.5L,sr,189,75.6,force,front_fy,1.0059377018478699e-05 +illusion_1.5L,sr,189,75.6,force,upper_fx,0.002258983440697193 +illusion_1.5L,sr,189,75.6,force,upper_fy,0.00035725790075957775 +illusion_1.5L,sr,189,75.6,force,lower_fx,0.002233674982562661 +illusion_1.5L,sr,189,75.6,force,lower_fy,-0.000355073920218274 +illusion_1.5L,sr,190,76.0,force,front_fx,0.0019061616621911526 +illusion_1.5L,sr,190,76.0,force,front_fy,5.268801032798365e-06 +illusion_1.5L,sr,190,76.0,force,upper_fx,0.002251473255455494 +illusion_1.5L,sr,190,76.0,force,upper_fy,0.0003489689843263477 +illusion_1.5L,sr,190,76.0,force,lower_fx,0.0022374640684574842 +illusion_1.5L,sr,190,76.0,force,lower_fy,-0.0003672695893328637 +illusion_1.5L,sr,191,76.4,force,front_fx,0.0019051365088671446 +illusion_1.5L,sr,191,76.4,force,front_fy,2.42046837684029e-07 +illusion_1.5L,sr,191,76.4,force,upper_fx,0.0022432482801377773 +illusion_1.5L,sr,191,76.4,force,upper_fy,0.00033926728065125644 +illusion_1.5L,sr,191,76.4,force,lower_fx,0.0022416089195758104 +illusion_1.5L,sr,191,76.4,force,lower_fy,-0.00037636340130120516 +illusion_1.5L,sr,192,76.8,force,front_fx,0.0019037486054003239 +illusion_1.5L,sr,192,76.8,force,front_fy,-4.860110948357033e-06 +illusion_1.5L,sr,192,76.8,force,upper_fx,0.002234554383903742 +illusion_1.5L,sr,192,76.8,force,upper_fy,0.0003291727334726602 +illusion_1.5L,sr,192,76.8,force,lower_fx,0.002245292067527771 +illusion_1.5L,sr,192,76.8,force,lower_fy,-0.0003816645476035774 +illusion_1.5L,sr,193,77.2,force,front_fx,0.001904898090288043 +illusion_1.5L,sr,193,77.2,force,front_fy,-9.289936315326486e-06 +illusion_1.5L,sr,193,77.2,force,upper_fx,0.0022297585383057594 +illusion_1.5L,sr,193,77.2,force,upper_fy,0.00032003215164877474 +illusion_1.5L,sr,193,77.2,force,lower_fx,0.002251936122775078 +illusion_1.5L,sr,193,77.2,force,lower_fy,-0.00038297430728562176 +illusion_1.5L,sr,194,77.6,force,front_fx,0.0019075219752267003 +illusion_1.5L,sr,194,77.6,force,front_fy,-1.3322886843525339e-05 +illusion_1.5L,sr,194,77.6,force,upper_fx,0.002228237921372056 +illusion_1.5L,sr,194,77.6,force,upper_fy,0.0003136683953925967 +illusion_1.5L,sr,194,77.6,force,lower_fx,0.0022599101066589355 +illusion_1.5L,sr,194,77.6,force,lower_fy,-0.0003818865225184709 +illusion_1.5L,sr,195,78.0,force,front_fx,0.00190740788821131 +illusion_1.5L,sr,195,78.0,force,front_fy,-1.5775229257997125e-05 +illusion_1.5L,sr,195,78.0,force,upper_fx,0.0022251992486417294 +illusion_1.5L,sr,195,78.0,force,upper_fy,0.00031236078939400613 +illusion_1.5L,sr,195,78.0,force,lower_fx,0.0022637301590293646 +illusion_1.5L,sr,195,78.0,force,lower_fy,-0.0003794986696448177 +illusion_1.5L,sr,196,78.4,force,front_fx,0.0019064220832660794 +illusion_1.5L,sr,196,78.4,force,front_fy,-1.747532769513782e-05 +illusion_1.5L,sr,196,78.4,force,upper_fx,0.002222777809947729 +illusion_1.5L,sr,196,78.4,force,upper_fy,0.0003156655584461987 +illusion_1.5L,sr,196,78.4,force,lower_fx,0.0022647809237241745 +illusion_1.5L,sr,196,78.4,force,lower_fy,-0.00037658054498024285 +illusion_1.5L,sr,197,78.8,force,front_fx,0.0019047914538532495 +illusion_1.5L,sr,197,78.8,force,front_fy,-1.706329385342542e-05 +illusion_1.5L,sr,197,78.8,force,upper_fx,0.002221175469458103 +illusion_1.5L,sr,197,78.8,force,upper_fy,0.0003237486525904387 +illusion_1.5L,sr,197,78.8,force,lower_fx,0.002262991853058338 +illusion_1.5L,sr,197,78.8,force,lower_fy,-0.0003726479480974376 +illusion_1.5L,sr,198,79.2,force,front_fx,0.001903442433103919 +illusion_1.5L,sr,198,79.2,force,front_fy,-1.5631654605385847e-05 +illusion_1.5L,sr,198,79.2,force,upper_fx,0.0022216516081243753 +illusion_1.5L,sr,198,79.2,force,upper_fy,0.00033470115158706903 +illusion_1.5L,sr,198,79.2,force,lower_fx,0.002259467961266637 +illusion_1.5L,sr,198,79.2,force,lower_fy,-0.00036798606743104756 +illusion_1.5L,sr,199,79.6,force,front_fx,0.0019052629359066486 +illusion_1.5L,sr,199,79.6,force,front_fy,-1.224257084686542e-05 +illusion_1.5L,sr,199,79.6,force,upper_fx,0.002227364107966423 +illusion_1.5L,sr,199,79.6,force,upper_fy,0.000347304274328053 +illusion_1.5L,sr,199,79.6,force,lower_fx,0.0022578167263418436 +illusion_1.5L,sr,199,79.6,force,lower_fy,-0.0003614359302446246 +illusion_1.5L,sr,200,80.0,force,front_fx,0.001906197052448988 +illusion_1.5L,sr,200,80.0,force,front_fy,-8.050901669776067e-06 +illusion_1.5L,sr,200,80.0,force,upper_fx,0.0022333054803311825 +illusion_1.5L,sr,200,80.0,force,upper_fy,0.0003598746261559427 +illusion_1.5L,sr,200,80.0,force,lower_fx,0.0022536995820701122 +illusion_1.5L,sr,200,80.0,force,lower_fy,-0.000353894749423489 +illusion_1.5L,sr,201,80.4,force,front_fx,0.001905266777612269 +illusion_1.5L,sr,201,80.4,force,front_fy,-3.0762298592890147e-06 +illusion_1.5L,sr,201,80.4,force,upper_fx,0.002237490378320217 +illusion_1.5L,sr,201,80.4,force,upper_fy,0.00037091519334353507 +illusion_1.5L,sr,201,80.4,force,lower_fx,0.002246159827336669 +illusion_1.5L,sr,201,80.4,force,lower_fy,-0.0003450340882409364 +illusion_1.5L,sr,202,80.8,force,front_fx,0.001904371427372098 +illusion_1.5L,sr,202,80.8,force,front_fy,1.946800693986006e-06 +illusion_1.5L,sr,202,80.8,force,upper_fx,0.002241853391751647 +illusion_1.5L,sr,202,80.8,force,upper_fy,0.00037845649057999253 +illusion_1.5L,sr,202,80.8,force,lower_fx,0.0022381877060979605 +illusion_1.5L,sr,202,80.8,force,lower_fy,-0.00033530432847328484 +illusion_1.5L,sr,203,81.2,force,front_fx,0.0019031171686947346 +illusion_1.5L,sr,203,81.2,force,front_fy,6.697857770632254e-06 +illusion_1.5L,sr,203,81.2,force,upper_fx,0.0022456184960901737 +illusion_1.5L,sr,203,81.2,force,upper_fy,0.00038227453478612006 +illusion_1.5L,sr,203,81.2,force,lower_fx,0.0022299778647720814 +illusion_1.5L,sr,203,81.2,force,lower_fy,-0.0003257828939240426 +illusion_1.5L,sr,204,81.6,force,front_fx,0.001903909258544445 +illusion_1.5L,sr,204,81.6,force,front_fy,1.115787381422706e-05 +illusion_1.5L,sr,204,81.6,force,upper_fx,0.0022515589371323586 +illusion_1.5L,sr,204,81.6,force,upper_fy,0.00038269851938821375 +illusion_1.5L,sr,204,81.6,force,lower_fx,0.0022253459319472313 +illusion_1.5L,sr,204,81.6,force,lower_fy,-0.0003176571917720139 +illusion_1.5L,sr,205,82.0,force,front_fx,0.001906513120047748 +illusion_1.5L,sr,205,82.0,force,front_fy,1.425413393008057e-05 +illusion_1.5L,sr,205,82.0,force,upper_fx,0.0022590993903577328 +illusion_1.5L,sr,205,82.0,force,upper_fy,0.00038069969741627574 +illusion_1.5L,sr,205,82.0,force,lower_fx,0.002224474912509322 +illusion_1.5L,sr,205,82.0,force,lower_fy,-0.00031311227940022945 +illusion_1.5L,sr,206,82.4,force,front_fx,0.0019065645756199956 +illusion_1.5L,sr,206,82.4,force,front_fy,1.6754125681472942e-05 +illusion_1.5L,sr,206,82.4,force,upper_fx,0.0022624856792390347 +illusion_1.5L,sr,206,82.4,force,upper_fy,0.00037826065090484917 +illusion_1.5L,sr,206,82.4,force,lower_fx,0.00222247326746583 +illusion_1.5L,sr,206,82.4,force,lower_fy,-0.0003133515128865838 +illusion_1.5L,sr,207,82.8,force,front_fx,0.0019054701551795006 +illusion_1.5L,sr,207,82.8,force,front_fy,1.7202079106937163e-05 +illusion_1.5L,sr,207,82.8,force,upper_fx,0.0022626665886491537 +illusion_1.5L,sr,207,82.8,force,upper_fy,0.00037491039256565273 +illusion_1.5L,sr,207,82.8,force,lower_fx,0.0022206935100257397 +illusion_1.5L,sr,207,82.8,force,lower_fy,-0.00031879288144409657 +illusion_1.5L,sr,208,83.2,force,front_fx,0.0019039470935240388 +illusion_1.5L,sr,208,83.2,force,front_fy,1.6709762348909862e-05 +illusion_1.5L,sr,208,83.2,force,upper_fx,0.0022601191885769367 +illusion_1.5L,sr,208,83.2,force,upper_fy,0.0003711317549459636 +illusion_1.5L,sr,208,83.2,force,lower_fx,0.002219999209046364 +illusion_1.5L,sr,208,83.2,force,lower_fy,-0.00032791271223686635 +illusion_1.5L,sr,209,83.6,force,front_fx,0.0019024795619770885 +illusion_1.5L,sr,209,83.6,force,front_fy,1.4114745681581553e-05 +illusion_1.5L,sr,209,83.6,force,upper_fx,0.0022556509356945753 +illusion_1.5L,sr,209,83.6,force,upper_fy,0.0003658244095277041 +illusion_1.5L,sr,209,83.6,force,lower_fx,0.0022209289018064737 +illusion_1.5L,sr,209,83.6,force,lower_fy,-0.0003398982807993889 +illusion_1.5L,sr,210,84.0,force,front_fx,0.001904035801999271 +illusion_1.5L,sr,210,84.0,force,front_fy,1.0621838555380236e-05 +illusion_1.5L,sr,210,84.0,force,upper_fx,0.0022529740817844868 +illusion_1.5L,sr,210,84.0,force,upper_fy,0.0003589734551496804 +illusion_1.5L,sr,210,84.0,force,lower_fx,0.002226787619292736 +illusion_1.5L,sr,210,84.0,force,lower_fy,-0.00035217776894569397 +illusion_1.5L,sr,211,84.4,force,front_fx,0.001905294368043542 +illusion_1.5L,sr,211,84.4,force,front_fy,5.893243724131025e-06 +illusion_1.5L,sr,211,84.4,force,upper_fx,0.002248787321150303 +illusion_1.5L,sr,211,84.4,force,upper_fy,0.00035059216315858066 +illusion_1.5L,sr,211,84.4,force,lower_fx,0.002233344130218029 +illusion_1.5L,sr,211,84.4,force,lower_fy,-0.00036403638659976423 +illusion_1.5L,sr,212,84.8,force,front_fx,0.00190453277900815 +illusion_1.5L,sr,212,84.8,force,front_fy,9.77604258878273e-07 +illusion_1.5L,sr,212,84.8,force,upper_fx,0.002241346053779125 +illusion_1.5L,sr,212,84.8,force,upper_fy,0.00034147981205023825 +illusion_1.5L,sr,212,84.8,force,lower_fx,0.002237887354567647 +illusion_1.5L,sr,212,84.8,force,lower_fy,-0.00037359725683927536 +illusion_1.5L,sr,213,85.2,force,front_fx,0.0019037578022107482 +illusion_1.5L,sr,213,85.2,force,front_fy,-3.8993598536762875e-06 +illusion_1.5L,sr,213,85.2,force,upper_fx,0.0022336957044899464 +illusion_1.5L,sr,213,85.2,force,upper_fy,0.00033183000050485134 +illusion_1.5L,sr,213,85.2,force,lower_fx,0.0022424208000302315 +illusion_1.5L,sr,213,85.2,force,lower_fy,-0.00037968793185427785 +illusion_1.5L,sr,214,85.6,force,front_fx,0.0019026888767257333 +illusion_1.5L,sr,214,85.6,force,front_fy,-8.671402611071244e-06 +illusion_1.5L,sr,214,85.6,force,upper_fx,0.0022261219564825296 +illusion_1.5L,sr,214,85.6,force,upper_fy,0.0003228981513530016 +illusion_1.5L,sr,214,85.6,force,lower_fx,0.002246228279545903 +illusion_1.5L,sr,214,85.6,force,lower_fy,-0.00038232936640270054 +illusion_1.5L,sr,215,86.0,force,front_fx,0.0019031171686947346 +illusion_1.5L,sr,215,86.0,force,front_fy,-1.2390104529913515e-05 +illusion_1.5L,sr,215,86.0,force,upper_fx,0.002221658593043685 +illusion_1.5L,sr,215,86.0,force,upper_fy,0.0003162491775583476 +illusion_1.5L,sr,215,86.0,force,lower_fx,0.0022514602169394493 +illusion_1.5L,sr,215,86.0,force,lower_fy,-0.0003817472606897354 +illusion_1.5L,sr,216,86.4,force,front_fx,0.0019055999582633376 +illusion_1.5L,sr,216,86.4,force,front_fy,-1.5488032659050077e-05 +illusion_1.5L,sr,216,86.4,force,upper_fx,0.0022213729098439217 +illusion_1.5L,sr,216,86.4,force,upper_fy,0.00031312843202613294 +illusion_1.5L,sr,216,86.4,force,lower_fx,0.0022583259269595146 +illusion_1.5L,sr,216,86.4,force,lower_fy,-0.0003794684889726341 +illusion_1.5L,sr,217,86.8,force,front_fx,0.001905800891108811 +illusion_1.5L,sr,217,86.8,force,front_fy,-1.690568751655519e-05 +illusion_1.5L,sr,217,86.8,force,upper_fx,0.0022203035186976194 +illusion_1.5L,sr,217,86.8,force,upper_fy,0.0003153966972604394 +illusion_1.5L,sr,217,86.8,force,lower_fx,0.002261263318359852 +illusion_1.5L,sr,217,86.8,force,lower_fy,-0.00037649754085578024 +illusion_1.5L,sr,218,87.2,force,front_fx,0.0019046495435759425 +illusion_1.5L,sr,218,87.2,force,front_fy,-1.723025707178749e-05 +illusion_1.5L,sr,218,87.2,force,upper_fx,0.0022192345932126045 +illusion_1.5L,sr,218,87.2,force,upper_fy,0.0003221850492991507 +illusion_1.5L,sr,218,87.2,force,lower_fx,0.0022605699487030506 +illusion_1.5L,sr,218,87.2,force,lower_fy,-0.0003732829645741731 +illusion_1.5L,sr,219,87.6,force,front_fx,0.0019032623386010528 +illusion_1.5L,sr,219,87.6,force,front_fy,-1.5644216546206735e-05 +illusion_1.5L,sr,219,87.6,force,upper_fx,0.0022193766199052334 +illusion_1.5L,sr,219,87.6,force,upper_fy,0.00033267849357798696 +illusion_1.5L,sr,219,87.6,force,lower_fx,0.002257394837215543 +illusion_1.5L,sr,219,87.6,force,lower_fy,-0.000368990411516279 +illusion_1.5L,sr,220,88.0,force,front_fx,0.0019017773447558284 +illusion_1.5L,sr,220,88.0,force,front_fy,-1.28021820273716e-05 +illusion_1.5L,sr,220,88.0,force,upper_fx,0.002220821101218462 +illusion_1.5L,sr,220,88.0,force,upper_fy,0.0003449083596933633 +illusion_1.5L,sr,220,88.0,force,lower_fx,0.0022521084174513817 +illusion_1.5L,sr,220,88.0,force,lower_fy,-0.0003634667373262346 +illusion_1.5L,sr,221,88.4,force,front_fx,0.0019030330004170537 +illusion_1.5L,sr,221,88.4,force,front_fy,-8.680517566972412e-06 +illusion_1.5L,sr,221,88.4,force,upper_fx,0.0022266716696321964 +illusion_1.5L,sr,221,88.4,force,upper_fy,0.00035703566391021013 +illusion_1.5L,sr,221,88.4,force,lower_fx,0.002248496748507023 +illusion_1.5L,sr,221,88.4,force,lower_fy,-0.0003559163596946746 +illusion_1.5L,sr,222,88.8,force,front_fx,0.0019045172957703471 +illusion_1.5L,sr,222,88.8,force,front_fy,-3.848617780022323e-06 +illusion_1.5L,sr,222,88.8,force,upper_fx,0.0022336887195706367 +illusion_1.5L,sr,222,88.8,force,upper_fy,0.00036777809145860374 +illusion_1.5L,sr,222,88.8,force,lower_fx,0.0022442585323005915 +illusion_1.5L,sr,222,88.8,force,lower_fy,-0.0003470485971774906 +illusion_1.5L,sr,223,89.2,force,front_fx,0.001903971773572266 +illusion_1.5L,sr,223,89.2,force,front_fy,9.10291134914587e-07 +illusion_1.5L,sr,223,89.2,force,upper_fx,0.0022385837510228157 +illusion_1.5L,sr,223,89.2,force,upper_fy,0.0003759231767617166 +illusion_1.5L,sr,223,89.2,force,lower_fx,0.0022370656952261925 +illusion_1.5L,sr,223,89.2,force,lower_fy,-0.0003377438697498292 +illusion_1.5L,sr,224,89.6,force,front_fx,0.0019033136777579784 +illusion_1.5L,sr,224,89.6,force,front_fy,5.977321961836424e-06 +illusion_1.5L,sr,224,89.6,force,upper_fx,0.0022432052064687014 +illusion_1.5L,sr,224,89.6,force,upper_fy,0.00038077766657806933 +illusion_1.5L,sr,224,89.6,force,lower_fx,0.0022298304829746485 +illusion_1.5L,sr,224,89.6,force,lower_fy,-0.0003282775869593024 +illusion_1.5L,sr,225,90.0,force,front_fx,0.0019024000503122807 +illusion_1.5L,sr,225,90.0,force,front_fy,1.0085737812914886e-05 +illusion_1.5L,sr,225,90.0,force,upper_fx,0.002247051801532507 +illusion_1.5L,sr,225,90.0,force,upper_fy,0.00038214237429201603 +illusion_1.5L,sr,225,90.0,force,lower_fx,0.002222924493253231 +illusion_1.5L,sr,225,90.0,force,lower_fy,-0.00032041649683378637 +illusion_1.5L,sr,226,90.4,force,front_fx,0.0019024915527552366 +illusion_1.5L,sr,226,90.4,force,front_fy,1.3872726412955672e-05 +illusion_1.5L,sr,226,90.4,force,upper_fx,0.002251488622277975 +illusion_1.5L,sr,226,90.4,force,upper_fy,0.00038113363552838564 +illusion_1.5L,sr,226,90.4,force,lower_fx,0.002218707697466016 +illusion_1.5L,sr,226,90.4,force,lower_fy,-0.0003149995463900268 +illusion_1.5L,sr,227,90.8,force,front_fx,0.0019047455862164497 +illusion_1.5L,sr,227,90.8,force,front_fy,1.601308395038359e-05 +illusion_1.5L,sr,227,90.8,force,upper_fx,0.0022575431503355503 +illusion_1.5L,sr,227,90.8,force,upper_fy,0.00037822948070243 +illusion_1.5L,sr,227,90.8,force,lower_fx,0.0022188150323927402 +illusion_1.5L,sr,227,90.8,force,lower_fy,-0.0003138572792522609 +illusion_1.5L,sr,228,91.2,force,front_fx,0.0019051063572987914 +illusion_1.5L,sr,228,91.2,force,front_fy,1.7279286112170666e-05 +illusion_1.5L,sr,228,91.2,force,upper_fx,0.0022599443327635527 +illusion_1.5L,sr,228,91.2,force,upper_fy,0.00037526304367929697 +illusion_1.5L,sr,228,91.2,force,lower_fx,0.0022187107242643833 +illusion_1.5L,sr,228,91.2,force,lower_fy,-0.0003175638266839087 +illusion_1.5L,sr,229,91.6,force,front_fx,0.0019039607141166925 +illusion_1.5L,sr,229,91.6,force,front_fy,1.6571793821640313e-05 +illusion_1.5L,sr,229,91.6,force,upper_fx,0.002258491702377796 +illusion_1.5L,sr,229,91.6,force,upper_fy,0.00037162209628149867 +illusion_1.5L,sr,229,91.6,force,lower_fx,0.002218347741290927 +illusion_1.5L,sr,229,91.6,force,lower_fy,-0.0003260124067310244 +illusion_1.5L,sr,230,92.0,force,front_fx,0.0019027048256248236 +illusion_1.5L,sr,230,92.0,force,front_fy,1.4681811080663465e-05 +illusion_1.5L,sr,230,92.0,force,upper_fx,0.002254695165902376 +illusion_1.5L,sr,230,92.0,force,upper_fy,0.0003671617014333606 +illusion_1.5L,sr,230,92.0,force,lower_fx,0.002219288144260645 +illusion_1.5L,sr,230,92.0,force,lower_fy,-0.000337181641953066 +illusion_1.5L,sr,231,92.4,force,front_fx,0.001901242882013321 +illusion_1.5L,sr,231,92.4,force,front_fy,1.113005419028923e-05 +illusion_1.5L,sr,231,92.4,force,upper_fx,0.002248757751658559 +illusion_1.5L,sr,231,92.4,force,upper_fy,0.0003610026906244457 +illusion_1.5L,sr,231,92.4,force,lower_fx,0.0022211961913853884 +illusion_1.5L,sr,231,92.4,force,lower_fy,-0.0003497255966067314 +illusion_1.5L,sr,232,92.8,force,front_fx,0.0019021667540073395 +illusion_1.5L,sr,232,92.8,force,front_fy,6.775238944101147e-06 +illusion_1.5L,sr,232,92.8,force,upper_fx,0.00224427692592144 +illusion_1.5L,sr,232,92.8,force,upper_fy,0.0003529598470777273 +illusion_1.5L,sr,232,92.8,force,lower_fx,0.0022269347682595253 +illusion_1.5L,sr,232,92.8,force,lower_fy,-0.00036128322244621813 +illusion_1.5L,sr,233,93.2,force,front_fx,0.0019038129830732942 +illusion_1.5L,sr,233,93.2,force,front_fy,1.9854655874951277e-06 +illusion_1.5L,sr,233,93.2,force,upper_fx,0.0022400086745619774 +illusion_1.5L,sr,233,93.2,force,upper_fy,0.0003436555853113532 +illusion_1.5L,sr,233,93.2,force,lower_fx,0.0022342803422361612 +illusion_1.5L,sr,233,93.2,force,lower_fy,-0.0003708219446707517 +illusion_1.5L,sr,234,93.6,force,front_fx,0.0019035408040508628 +illusion_1.5L,sr,234,93.6,force,front_fy,-2.9984937555127544e-06 +illusion_1.5L,sr,234,93.6,force,upper_fx,0.002233219798654318 +illusion_1.5L,sr,234,93.6,force,upper_fy,0.0003341634583193809 +illusion_1.5L,sr,234,93.6,force,lower_fx,0.0022395113483071327 +illusion_1.5L,sr,234,93.6,force,lower_fy,-0.0003776740049943328 +illusion_1.5L,sr,235,94.0,force,front_fx,0.0019029970280826092 +illusion_1.5L,sr,235,94.0,force,front_fy,-7.566335170849925e-06 +illusion_1.5L,sr,235,94.0,force,upper_fx,0.0022264316212385893 +illusion_1.5L,sr,235,94.0,force,upper_fy,0.0003253189497627318 +illusion_1.5L,sr,235,94.0,force,lower_fx,0.0022441986948251724 +illusion_1.5L,sr,235,94.0,force,lower_fy,-0.000381128687877208 +illusion_1.5L,sr,236,94.4,force,front_fx,0.0019022214692085981 +illusion_1.5L,sr,236,94.4,force,front_fy,-1.177774538518861e-05 +illusion_1.5L,sr,236,94.4,force,upper_fx,0.0022202632389962673 +illusion_1.5L,sr,236,94.4,force,upper_fy,0.00031830661464482546 +illusion_1.5L,sr,236,94.4,force,lower_fx,0.0022479621693491936 +illusion_1.5L,sr,236,94.4,force,lower_fy,-0.000381764693884179 +illusion_1.5L,sr,237,94.8,force,front_fx,0.0019019816536456347 +illusion_1.5L,sr,237,94.8,force,front_fy,-1.4670936252514366e-05 +illusion_1.5L,sr,237,94.8,force,upper_fx,0.002216286724433303 +illusion_1.5L,sr,237,94.8,force,upper_fy,0.00031470193061977625 +illusion_1.5L,sr,237,94.8,force,lower_fx,0.002251620404422283 +illusion_1.5L,sr,237,94.8,force,lower_fy,-0.0003799929399974644 +illusion_1.5L,sr,238,95.2,force,front_fx,0.001903938828036189 +illusion_1.5L,sr,238,95.2,force,front_fy,-1.6764757674536668e-05 +illusion_1.5L,sr,238,95.2,force,upper_fx,0.0022167598363012075 +illusion_1.5L,sr,238,95.2,force,upper_fy,0.0003150455595459789 +illusion_1.5L,sr,238,95.2,force,lower_fx,0.0022566809784621 +illusion_1.5L,sr,238,95.2,force,lower_fy,-0.00037704932037740946 +illusion_1.5L,sr,239,95.6,force,front_fx,0.0019044625805690885 +illusion_1.5L,sr,239,95.6,force,front_fy,-1.7011263480526395e-05 +illusion_1.5L,sr,239,95.6,force,upper_fx,0.0022175044286996126 +illusion_1.5L,sr,239,95.6,force,upper_fy,0.0003205825632903725 +illusion_1.5L,sr,239,95.6,force,lower_fx,0.002258563879877329 +illusion_1.5L,sr,239,95.6,force,lower_fy,-0.00037358608096838 +illusion_1.5L,sr,240,96.0,force,front_fx,0.0019033907447010279 +illusion_1.5L,sr,240,96.0,force,front_fy,-1.6056328604463488e-05 +illusion_1.5L,sr,240,96.0,force,upper_fx,0.002217936562374234 +illusion_1.5L,sr,240,96.0,force,upper_fy,0.0003300331300124526 +illusion_1.5L,sr,240,96.0,force,lower_fx,0.0022564148530364037 +illusion_1.5L,sr,240,96.0,force,lower_fy,-0.0003698937362059951 +illusion_1.5L,sr,241,96.4,force,front_fx,0.001902267336845398 +illusion_1.5L,sr,241,96.4,force,front_fy,-1.3314980606082827e-05 +illusion_1.5L,sr,241,96.4,force,upper_fx,0.002219591522589326 +illusion_1.5L,sr,241,96.4,force,upper_fy,0.00034200024674646556 +illusion_1.5L,sr,241,96.4,force,lower_fx,0.002252075122669339 +illusion_1.5L,sr,241,96.4,force,lower_fy,-0.00036483429721556604 +illusion_1.5L,sr,242,96.8,force,front_fx,0.0019008662784472108 +illusion_1.5L,sr,242,96.8,force,front_fy,-9.494451660430059e-06 +illusion_1.5L,sr,242,96.8,force,upper_fx,0.002221941016614437 +illusion_1.5L,sr,242,96.8,force,upper_fy,0.0003543612838257104 +illusion_1.5L,sr,242,96.8,force,lower_fx,0.00224558194167912 +illusion_1.5L,sr,242,96.8,force,lower_fy,-0.0003582545032259077 +illusion_1.5L,sr,243,97.2,force,front_fx,0.00190144928637892 +illusion_1.5L,sr,243,97.2,force,front_fy,-4.905661171505926e-06 +illusion_1.5L,sr,243,97.2,force,upper_fx,0.002227509394288063 +illusion_1.5L,sr,243,97.2,force,upper_fy,0.0003652466693893075 +illusion_1.5L,sr,243,97.2,force,lower_fx,0.0022403334733098745 +illusion_1.5L,sr,243,97.2,force,lower_fy,-0.0003496911667753011 +illusion_1.5L,sr,244,97.6,force,front_fx,0.001903205062262714 +illusion_1.5L,sr,244,97.6,force,front_fy,-6.826194276499109e-09 +illusion_1.5L,sr,244,97.6,force,upper_fx,0.0022350538056343794 +illusion_1.5L,sr,244,97.6,force,upper_fy,0.0003735505451913923 +illusion_1.5L,sr,244,97.6,force,lower_fx,0.002236067084595561 +illusion_1.5L,sr,244,97.6,force,lower_fy,-0.00034005832276307046 +illusion_1.5L,sr,245,98.0,force,front_fx,0.001903215772472322 +illusion_1.5L,sr,245,98.0,force,front_fy,4.7441135393455625e-06 +illusion_1.5L,sr,245,98.0,force,upper_fx,0.002240638015791774 +illusion_1.5L,sr,245,98.0,force,upper_fy,0.00037897846777923405 +illusion_1.5L,sr,245,98.0,force,lower_fx,0.002229785080999136 +illusion_1.5L,sr,245,98.0,force,lower_fy,-0.0003307225415483117 +illusion_1.5L,sr,246,98.4,force,front_fx,0.0019027709495276213 +illusion_1.5L,sr,246,98.4,force,front_fy,9.374259207106661e-06 +illusion_1.5L,sr,246,98.4,force,upper_fx,0.0022452929988503456 +illusion_1.5L,sr,246,98.4,force,upper_fy,0.000381437421310693 +illusion_1.5L,sr,246,98.4,force,lower_fx,0.0022235361393541098 +illusion_1.5L,sr,246,98.4,force,lower_fy,-0.00032243088935501873 +illusion_1.5L,sr,247,98.8,force,front_fx,0.001902102492749691 +illusion_1.5L,sr,247,98.8,force,front_fy,1.2880861504527275e-05 +illusion_1.5L,sr,247,98.8,force,upper_fx,0.0022489032708108425 +illusion_1.5L,sr,247,98.8,force,upper_fy,0.0003811184724327177 +illusion_1.5L,sr,247,98.8,force,lower_fx,0.002218053210526705 +illusion_1.5L,sr,247,98.8,force,lower_fy,-0.0003168210678268224 +illusion_1.5L,sr,248,99.2,force,front_fx,0.0019015639554709196 +illusion_1.5L,sr,248,99.2,force,front_fy,1.5705507394159213e-05 +illusion_1.5L,sr,248,99.2,force,upper_fx,0.0022517205215990543 +illusion_1.5L,sr,248,99.2,force,upper_fy,0.00037915099528618157 +illusion_1.5L,sr,248,99.2,force,lower_fx,0.002214403823018074 +illusion_1.5L,sr,248,99.2,force,lower_fy,-0.0003146623494103551 +illusion_1.5L,sr,249,99.6,force,front_fx,0.0019031689735129476 +illusion_1.5L,sr,249,99.6,force,front_fy,1.6892132407519966e-05 +illusion_1.5L,sr,249,99.6,force,upper_fx,0.0022557280026376247 +illusion_1.5L,sr,249,99.6,force,upper_fy,0.000375772244296968 +illusion_1.5L,sr,249,99.6,force,lower_fx,0.0022151393350213766 +illusion_1.5L,sr,249,99.6,force,lower_fy,-0.00031694318749941885 +illusion_1.5L,sr,250,100.0,force,front_fx,0.0019038686295971274 +illusion_1.5L,sr,250,100.0,force,front_fy,1.6837471775943413e-05 +illusion_1.5L,sr,250,100.0,force,upper_fx,0.0022570432629436255 +illusion_1.5L,sr,250,100.0,force,upper_fy,0.00037223496474325657 +illusion_1.5L,sr,250,100.0,force,lower_fx,0.002216783817857504 +illusion_1.5L,sr,250,100.0,force,lower_fy,-0.0003237190539948642 +illusion_1.5L,sr,251,100.4,force,front_fx,0.0019029313698410988 +illusion_1.5L,sr,251,100.4,force,front_fy,1.5070433619257528e-05 +illusion_1.5L,sr,251,100.4,force,upper_fx,0.002254301216453314 +illusion_1.5L,sr,251,100.4,force,upper_fy,0.00036805958370678127 +illusion_1.5L,sr,251,100.4,force,lower_fx,0.0022179661318659782 +illusion_1.5L,sr,251,100.4,force,lower_fy,-0.0003343010612297803 +illusion_1.5L,sr,252,100.8,force,front_fx,0.0019019204191863537 +illusion_1.5L,sr,252,100.8,force,front_fy,1.1900169738510158e-05 +illusion_1.5L,sr,252,100.8,force,upper_fx,0.002249431097880006 +illusion_1.5L,sr,252,100.8,force,upper_fy,0.0003625902463681996 +illusion_1.5L,sr,252,100.8,force,lower_fx,0.002220246708020568 +illusion_1.5L,sr,252,100.8,force,lower_fy,-0.0003465547051746398 +illusion_1.5L,sr,253,101.2,force,front_fx,0.0019005690701305866 +illusion_1.5L,sr,253,101.2,force,front_fy,7.790771633153781e-06 +illusion_1.5L,sr,253,101.2,force,upper_fx,0.002242504619061947 +illusion_1.5L,sr,253,101.2,force,upper_fy,0.0003554375725798309 +illusion_1.5L,sr,253,101.2,force,lower_fx,0.0022229969035834074 +illusion_1.5L,sr,253,101.2,force,lower_fy,-0.000358620221959427 +illusion_1.5L,sr,254,101.6,force,front_fx,0.0019008334493264556 +illusion_1.5L,sr,254,101.6,force,front_fy,2.9336149509617826e-06 +illusion_1.5L,sr,254,101.6,force,upper_fx,0.002236616797745228 +illusion_1.5L,sr,254,101.6,force,upper_fy,0.00034642795799300075 +illusion_1.5L,sr,254,101.6,force,lower_fx,0.0022283457219600677 +illusion_1.5L,sr,254,101.6,force,lower_fy,-0.00036865880247205496 +illusion_1.5L,sr,255,102.0,force,front_fx,0.0019026771187782288 +illusion_1.5L,sr,255,102.0,force,front_fy,-1.7222753285750514e-06 +illusion_1.5L,sr,255,102.0,force,upper_fx,0.002232374157756567 +illusion_1.5L,sr,255,102.0,force,upper_fy,0.00033671592245809734 +illusion_1.5L,sr,255,102.0,force,lower_fx,0.0022360156290233135 +illusion_1.5L,sr,255,102.0,force,lower_fy,-0.0003755695652216673 +illusion_1.5L,sr,256,102.4,force,front_fx,0.0019030029652640224 +illusion_1.5L,sr,256,102.4,force,front_fy,-6.722857506247237e-06 +illusion_1.5L,sr,256,102.4,force,upper_fx,0.0022267266176640987 +illusion_1.5L,sr,256,102.4,force,upper_fy,0.0003274426853749901 +illusion_1.5L,sr,256,102.4,force,lower_fx,0.0022418885491788387 +illusion_1.5L,sr,256,102.4,force,lower_fy,-0.0003798971010837704 +illusion_1.5L,sr,257,102.8,force,front_fx,0.0019026234513148665 +illusion_1.5L,sr,257,102.8,force,front_fy,-1.066036566044204e-05 +illusion_1.5L,sr,257,102.8,force,upper_fx,0.002221011323854327 +illusion_1.5L,sr,257,102.8,force,upper_fy,0.00032021780498325825 +illusion_1.5L,sr,257,102.8,force,lower_fx,0.0022464666981250048 +illusion_1.5L,sr,257,102.8,force,lower_fy,-0.0003811526985373348 +illusion_1.5L,sr,258,103.2,force,front_fx,0.0019020106410607696 +illusion_1.5L,sr,258,103.2,force,front_fy,-1.4207946151145734e-05 +illusion_1.5L,sr,258,103.2,force,upper_fx,0.0022162380628287792 +illusion_1.5L,sr,258,103.2,force,upper_fy,0.00031574428430758417 +illusion_1.5L,sr,258,103.2,force,lower_fx,0.0022497903555631638 +illusion_1.5L,sr,258,103.2,force,lower_fy,-0.0003804158477578312 +illusion_1.5L,sr,259,103.6,force,front_fx,0.0019012113334611058 +illusion_1.5L,sr,259,103.6,force,front_fy,-1.617286579858046e-05 +illusion_1.5L,sr,259,103.6,force,upper_fx,0.002212940249592066 +illusion_1.5L,sr,259,103.6,force,upper_fy,0.0003154912556055933 +illusion_1.5L,sr,259,103.6,force,lower_fx,0.002251794096082449 +illusion_1.5L,sr,259,103.6,force,lower_fy,-0.0003779189719352871 +illusion_1.5L,sr,260,104.0,force,front_fx,0.0019024700159206986 +illusion_1.5L,sr,260,104.0,force,front_fy,-1.7115378796006553e-05 +illusion_1.5L,sr,260,104.0,force,upper_fx,0.002213929081335664 +illusion_1.5L,sr,260,104.0,force,upper_fy,0.00031923726783134043 +illusion_1.5L,sr,260,104.0,force,lower_fx,0.00225466419942677 +illusion_1.5L,sr,260,104.0,force,lower_fy,-0.0003745433932635933 +illusion_1.5L,sr,261,104.4,force,front_fx,0.0019033279968425632 +illusion_1.5L,sr,261,104.4,force,front_fy,-1.623245952941943e-05 +illusion_1.5L,sr,261,104.4,force,upper_fx,0.00221639103256166 +illusion_1.5L,sr,261,104.4,force,upper_fy,0.0003274378541391343 +illusion_1.5L,sr,261,104.4,force,lower_fx,0.0022554234601557255 +illusion_1.5L,sr,261,104.4,force,lower_fy,-0.000370561407180503 +illusion_1.5L,sr,262,104.8,force,front_fx,0.001902573392726481 +illusion_1.5L,sr,262,104.8,force,front_fy,-1.4007132449478377e-05 +illusion_1.5L,sr,262,104.8,force,upper_fx,0.0022183512337505817 +illusion_1.5L,sr,262,104.8,force,upper_fy,0.00033869262551888824 +illusion_1.5L,sr,262,104.8,force,lower_fx,0.002252166159451008 +illusion_1.5L,sr,262,104.8,force,lower_fy,-0.0003660564252641052 +illusion_1.5L,sr,263,105.2,force,front_fx,0.001901630312204361 +illusion_1.5L,sr,263,105.2,force,front_fy,-1.0413236850581598e-05 +illusion_1.5L,sr,263,105.2,force,upper_fx,0.002221157308667898 +illusion_1.5L,sr,263,105.2,force,upper_fy,0.0003511015383992344 +illusion_1.5L,sr,263,105.2,force,lower_fx,0.0022467959206551313 +illusion_1.5L,sr,263,105.2,force,lower_fy,-0.0003600295167416334 +illusion_1.5L,sr,264,105.6,force,front_fx,0.0019003584748134017 +illusion_1.5L,sr,264,105.6,force,front_fy,-5.897459232073743e-06 +illusion_1.5L,sr,264,105.6,force,upper_fx,0.002224262338131666 +illusion_1.5L,sr,264,105.6,force,upper_fy,0.00036266117240302265 +illusion_1.5L,sr,264,105.6,force,lower_fx,0.00223955768160522 +illusion_1.5L,sr,264,105.6,force,lower_fy,-0.0003523200284689665 +illusion_1.5L,sr,265,106.0,force,front_fx,0.0019003668567165732 +illusion_1.5L,sr,265,106.0,force,front_fy,-1.229903091370943e-06 +illusion_1.5L,sr,265,106.0,force,upper_fx,0.002229420468211174 +illusion_1.5L,sr,265,106.0,force,upper_fy,0.00037158987834118307 +illusion_1.5L,sr,265,106.0,force,lower_fx,0.0022331508807837963 +illusion_1.5L,sr,265,106.0,force,lower_fy,-0.0003430993529036641 +illusion_1.5L,sr,266,106.4,force,front_fx,0.0019022300839424133 +illusion_1.5L,sr,266,106.4,force,front_fy,3.731023980435566e-06 +illusion_1.5L,sr,266,106.4,force,upper_fx,0.002237084088847041 +illusion_1.5L,sr,266,106.4,force,upper_fy,0.0003774099750444293 +illusion_1.5L,sr,266,106.4,force,lower_fx,0.00222900602966547 +illusion_1.5L,sr,266,106.4,force,lower_fy,-0.00033318594796583056 +illusion_1.5L,sr,267,106.8,force,front_fx,0.001902855234220624 +illusion_1.5L,sr,267,106.8,force,front_fy,8.174787581083365e-06 +illusion_1.5L,sr,267,106.8,force,upper_fx,0.002243228955194354 +illusion_1.5L,sr,267,106.8,force,upper_fy,0.00038034713361412287 +illusion_1.5L,sr,267,106.8,force,lower_fx,0.0022240171674638987 +illusion_1.5L,sr,267,106.8,force,lower_fy,-0.00032454606844112277 +illusion_1.5L,sr,268,107.2,force,front_fx,0.0019025281071662903 +illusion_1.5L,sr,268,107.2,force,front_fy,1.2202835932839662e-05 +illusion_1.5L,sr,268,107.2,force,upper_fx,0.0022476098965853453 +illusion_1.5L,sr,268,107.2,force,upper_fy,0.00038095194031484425 +illusion_1.5L,sr,268,107.2,force,lower_fx,0.002218901878222823 +illusion_1.5L,sr,268,107.2,force,lower_fy,-0.0003181530046276748 +illusion_1.5L,sr,269,107.6,force,front_fx,0.0019019183237105608 +illusion_1.5L,sr,269,107.6,force,front_fy,1.4972903045418207e-05 +illusion_1.5L,sr,269,107.6,force,upper_fx,0.0022505708038806915 +illusion_1.5L,sr,269,107.6,force,upper_fy,0.00037949811667203903 +illusion_1.5L,sr,269,107.6,force,lower_fx,0.0022147540003061295 +illusion_1.5L,sr,269,107.6,force,lower_fy,-0.0003153595025651157 +illusion_1.5L,sr,270,108.0,force,front_fx,0.0019009166862815619 +illusion_1.5L,sr,270,108.0,force,front_fy,1.674985105637461e-05 +illusion_1.5L,sr,270,108.0,force,upper_fx,0.0022517323959618807 +illusion_1.5L,sr,270,108.0,force,upper_fy,0.00037692824844270945 +illusion_1.5L,sr,270,108.0,force,lower_fx,0.0022118939086794853 +illusion_1.5L,sr,270,108.0,force,lower_fy,-0.00031661897082813084 +illusion_1.5L,sr,271,108.4,force,front_fx,0.0019018148304894567 +illusion_1.5L,sr,271,108.4,force,front_fy,1.6864814824657515e-05 +illusion_1.5L,sr,271,108.4,force,upper_fx,0.0022534907329827547 +illusion_1.5L,sr,271,108.4,force,upper_fy,0.0003732131444849074 +illusion_1.5L,sr,271,108.4,force,lower_fx,0.002213116968050599 +illusion_1.5L,sr,271,108.4,force,lower_fy,-0.00032209104392677546 +illusion_1.5L,sr,272,108.8,force,front_fx,0.0019028483657166362 +illusion_1.5L,sr,272,108.8,force,front_fy,1.5559326129732653e-05 +illusion_1.5L,sr,272,108.8,force,upper_fx,0.002253666054457426 +illusion_1.5L,sr,272,108.8,force,upper_fy,0.00036898936377838254 +illusion_1.5L,sr,272,108.8,force,lower_fx,0.002216360764577985 +illusion_1.5L,sr,272,108.8,force,lower_fy,-0.0003312784538138658 +illusion_1.5L,sr,273,109.2,force,front_fx,0.001902289572171867 +illusion_1.5L,sr,273,109.2,force,front_fy,1.2732912182400469e-05 +illusion_1.5L,sr,273,109.2,force,upper_fx,0.0022499654442071915 +illusion_1.5L,sr,273,109.2,force,upper_fy,0.0003639291971921921 +illusion_1.5L,sr,273,109.2,force,lower_fx,0.0022190497256815434 +illusion_1.5L,sr,273,109.2,force,lower_fy,-0.00034312589559704065 +illusion_1.5L,sr,274,109.6,force,front_fx,0.0019013918936252594 +illusion_1.5L,sr,274,109.6,force,front_fy,8.729580258659553e-06 +illusion_1.5L,sr,274,109.6,force,upper_fx,0.0022441348992288113 +illusion_1.5L,sr,274,109.6,force,upper_fy,0.0003573510912247002 +illusion_1.5L,sr,274,109.6,force,lower_fx,0.002222285605967045 +illusion_1.5L,sr,274,109.6,force,lower_fy,-0.0003554135619197041 +illusion_1.5L,sr,275,110.0,force,front_fx,0.0019002108601853251 +illusion_1.5L,sr,275,110.0,force,front_fy,4.201369392831111e-06 +illusion_1.5L,sr,275,110.0,force,upper_fx,0.002236679196357727 +illusion_1.5L,sr,275,110.0,force,upper_fy,0.0003491984389256686 +illusion_1.5L,sr,275,110.0,force,lower_fx,0.002225711243227124 +illusion_1.5L,sr,275,110.0,force,lower_fy,-0.0003661971422843635 +illusion_1.5L,sr,276,110.4,force,front_fx,0.0019000007305294275 +illusion_1.5L,sr,276,110.4,force,front_fy,-7.030461119938991e-07 +illusion_1.5L,sr,276,110.4,force,upper_fx,0.0022299280390143394 +illusion_1.5L,sr,276,110.4,force,upper_fy,0.00033968276693485677 +illusion_1.5L,sr,276,110.4,force,lower_fx,0.0022306821774691343 +illusion_1.5L,sr,276,110.4,force,lower_fy,-0.00037411891389638186 +illusion_1.5L,sr,277,110.8,force,front_fx,0.0019018602324649692 +illusion_1.5L,sr,277,110.8,force,front_fy,-5.384818450693274e-06 +illusion_1.5L,sr,277,110.8,force,upper_fx,0.0022258893586695194 +illusion_1.5L,sr,277,110.8,force,upper_fy,0.0003300161624792963 +illusion_1.5L,sr,277,110.8,force,lower_fx,0.0022382831666618586 +illusion_1.5L,sr,277,110.8,force,lower_fy,-0.000378603144781664 +illusion_1.5L,sr,278,111.2,force,front_fx,0.001902761054225266 +illusion_1.5L,sr,278,111.2,force,front_fy,-9.859449164650869e-06 +illusion_1.5L,sr,278,111.2,force,upper_fx,0.0022216185461729765 +illusion_1.5L,sr,278,111.2,force,upper_fy,0.0003218617057427764 +illusion_1.5L,sr,278,111.2,force,lower_fx,0.0022445835638791323 +illusion_1.5L,sr,278,111.2,force,lower_fy,-0.0003805859014391899 +illusion_1.5L,sr,279,111.6,force,front_fx,0.0019024449866265059 +illusion_1.5L,sr,279,111.6,force,front_fy,-1.326374967902666e-05 +illusion_1.5L,sr,279,111.6,force,upper_fx,0.0022170832380652428 +illusion_1.5L,sr,279,111.6,force,upper_fy,0.00031680919346399605 +illusion_1.5L,sr,279,111.6,force,lower_fx,0.002248716074973345 +illusion_1.5L,sr,279,111.6,force,lower_fy,-0.0003803062718361616 +illusion_1.5L,sr,280,112.0,force,front_fx,0.0019018162274733186 +illusion_1.5L,sr,280,112.0,force,front_fy,-1.584379788255319e-05 +illusion_1.5L,sr,280,112.0,force,upper_fx,0.0022135779727250338 +illusion_1.5L,sr,280,112.0,force,upper_fy,0.0003154297883156687 +illusion_1.5L,sr,280,112.0,force,lower_fx,0.0022511922288686037 +illusion_1.5L,sr,280,112.0,force,lower_fy,-0.00037857613642700016 +illusion_1.5L,sr,281,112.4,force,front_fx,0.0019006595248356462 +illusion_1.5L,sr,281,112.4,force,front_fy,-1.689528835413512e-05 +illusion_1.5L,sr,281,112.4,force,upper_fx,0.00221120472997427 +illusion_1.5L,sr,281,112.4,force,upper_fy,0.00031848528305999935 +illusion_1.5L,sr,281,112.4,force,lower_fx,0.0022515635937452316 +illusion_1.5L,sr,281,112.4,force,lower_fy,-0.0003756576916202903 +illusion_1.5L,sr,282,112.8,force,front_fx,0.001901248237118125 +illusion_1.5L,sr,282,112.8,force,front_fy,-1.654690277064219e-05 +illusion_1.5L,sr,282,112.8,force,upper_fx,0.002212674356997013 +illusion_1.5L,sr,282,112.8,force,upper_fy,0.0003253142931498587 +illusion_1.5L,sr,282,112.8,force,lower_fx,0.002252207137644291 +illusion_1.5L,sr,282,112.8,force,lower_fy,-0.0003718306834343821 +illusion_1.5L,sr,283,113.2,force,front_fx,0.0019024021457880735 +illusion_1.5L,sr,283,113.2,force,front_fy,-1.464623255742481e-05 +illusion_1.5L,sr,283,113.2,force,upper_fx,0.0022166112903505564 +illusion_1.5L,sr,283,113.2,force,upper_fy,0.00033545223413966596 +illusion_1.5L,sr,283,113.2,force,lower_fx,0.0022517871111631393 +illusion_1.5L,sr,283,113.2,force,lower_fy,-0.0003671656595543027 +illusion_1.5L,sr,284,113.6,force,front_fx,0.0019020421896129847 +illusion_1.5L,sr,284,113.6,force,front_fy,-1.1267039553786162e-05 +illusion_1.5L,sr,284,113.6,force,upper_fx,0.0022199766244739294 +illusion_1.5L,sr,284,113.6,force,upper_fy,0.0003476041310932487 +illusion_1.5L,sr,284,113.6,force,lower_fx,0.002247708383947611 +illusion_1.5L,sr,284,113.6,force,lower_fy,-0.0003615440509747714 +illusion_1.5L,sr,285,114.0,force,front_fx,0.001901197829283774 +illusion_1.5L,sr,285,114.0,force,front_fy,-7.155349067033967e-06 +illusion_1.5L,sr,285,114.0,force,upper_fx,0.0022235792130231857 +illusion_1.5L,sr,285,114.0,force,upper_fy,0.00035948623553849757 +illusion_1.5L,sr,285,114.0,force,lower_fx,0.0022414661943912506 +illusion_1.5L,sr,285,114.0,force,lower_fy,-0.0003544795617926866 +illusion_1.5L,sr,286,114.4,force,front_fx,0.0019001105101779103 +illusion_1.5L,sr,286,114.4,force,front_fy,-2.2808576431998517e-06 +illusion_1.5L,sr,286,114.4,force,upper_fx,0.002227278659120202 +illusion_1.5L,sr,286,114.4,force,upper_fy,0.00036947798798792064 +illusion_1.5L,sr,286,114.4,force,lower_fx,0.0022339175920933485 +illusion_1.5L,sr,286,114.4,force,lower_fy,-0.000345810956787318 +illusion_1.5L,sr,287,114.8,force,front_fx,0.0018997534643858671 +illusion_1.5L,sr,287,114.8,force,front_fy,2.3375671389658237e-06 +illusion_1.5L,sr,287,114.8,force,upper_fx,0.002232121303677559 +illusion_1.5L,sr,287,114.8,force,upper_fy,0.00037612664164043963 +illusion_1.5L,sr,287,114.8,force,lower_fx,0.0022269601467996836 +illusion_1.5L,sr,287,114.8,force,lower_fy,-0.0003363482537679374 +illusion_1.5L,sr,288,115.2,force,front_fx,0.0019015547586604953 +illusion_1.5L,sr,288,115.2,force,front_fy,7.244691005325876e-06 +illusion_1.5L,sr,288,115.2,force,upper_fx,0.002239540684968233 +illusion_1.5L,sr,288,115.2,force,upper_fy,0.0003796295204665512 +illusion_1.5L,sr,288,115.2,force,lower_fx,0.0022230891045182943 +illusion_1.5L,sr,288,115.2,force,lower_fy,-0.0003268330474384129 +illusion_1.5L,sr,289,115.6,force,front_fx,0.001902668154798448 +illusion_1.5L,sr,289,115.6,force,front_fy,1.110029643314192e-05 +illusion_1.5L,sr,289,115.6,force,upper_fx,0.002245911629870534 +illusion_1.5L,sr,289,115.6,force,upper_fy,0.0003804508305620402 +illusion_1.5L,sr,289,115.6,force,lower_fx,0.0022194974590092897 +illusion_1.5L,sr,289,115.6,force,lower_fy,-0.00031968316761776805 +illusion_1.5L,sr,290,116.0,force,front_fx,0.0019023859640583396 +illusion_1.5L,sr,290,116.0,force,front_fy,1.4440270206250716e-05 +illusion_1.5L,sr,290,116.0,force,upper_fx,0.0022497016470879316 +illusion_1.5L,sr,290,116.0,force,upper_fy,0.00037972439895384014 +illusion_1.5L,sr,290,116.0,force,lower_fx,0.002215589163824916 +illusion_1.5L,sr,290,116.0,force,lower_fy,-0.0003157851460855454 +illusion_1.5L,sr,291,116.4,force,front_fx,0.0019016910810023546 +illusion_1.5L,sr,291,116.4,force,front_fy,1.631204031582456e-05 +illusion_1.5L,sr,291,116.4,force,upper_fx,0.002251627389341593 +illusion_1.5L,sr,291,116.4,force,upper_fy,0.00037749807233922184 +illusion_1.5L,sr,291,116.4,force,lower_fx,0.0022126794792711735 +illusion_1.5L,sr,291,116.4,force,lower_fy,-0.0003161729546263814 +illusion_1.5L,sr,292,116.8,force,front_fx,0.0019004535861313343 +illusion_1.5L,sr,292,116.8,force,front_fy,1.695970604487229e-05 +illusion_1.5L,sr,292,116.8,force,upper_fx,0.0022512213326990604 +illusion_1.5L,sr,292,116.8,force,upper_fy,0.0003744913265109062 +illusion_1.5L,sr,292,116.8,force,lower_fx,0.00221086572855711 +illusion_1.5L,sr,292,116.8,force,lower_fy,-0.00032071134774014354 +illusion_1.5L,sr,293,117.2,force,front_fx,0.0019007616210728884 +illusion_1.5L,sr,293,117.2,force,front_fy,1.596525362401735e-05 +illusion_1.5L,sr,293,117.2,force,upper_fx,0.0022508101537823677 +illusion_1.5L,sr,293,117.2,force,upper_fy,0.0003703597467392683 +illusion_1.5L,sr,293,117.2,force,lower_fx,0.002212604507803917 +illusion_1.5L,sr,293,117.2,force,lower_fy,-0.00032890253351069987 +illusion_1.5L,sr,294,117.6,force,front_fx,0.001902010291814804 +illusion_1.5L,sr,294,117.6,force,front_fy,1.3489923730958253e-05 +illusion_1.5L,sr,294,117.6,force,upper_fx,0.002249774755910039 +illusion_1.5L,sr,294,117.6,force,upper_fy,0.00036524285678751767 +illusion_1.5L,sr,294,117.6,force,lower_fx,0.002217126078903675 +illusion_1.5L,sr,294,117.6,force,lower_fy,-0.0003397422260604799 +illusion_1.5L,sr,295,118.0,force,front_fx,0.0019018329912796617 +illusion_1.5L,sr,295,118.0,force,front_fy,9.850217793427873e-06 +illusion_1.5L,sr,295,118.0,force,upper_fx,0.002245352603495121 +illusion_1.5L,sr,295,118.0,force,upper_fy,0.0003590891428757459 +illusion_1.5L,sr,295,118.0,force,lower_fx,0.0022211181931197643 +illusion_1.5L,sr,295,118.0,force,lower_fy,-0.00035189135815016925 +illusion_1.5L,sr,296,118.4,force,front_fx,0.0019010193645954132 +illusion_1.5L,sr,296,118.4,force,front_fy,5.298497853800654e-06 +illusion_1.5L,sr,296,118.4,force,upper_fx,0.0022387998178601265 +illusion_1.5L,sr,296,118.4,force,upper_fy,0.0003514059353619814 +illusion_1.5L,sr,296,118.4,force,lower_fx,0.002225002972409129 +illusion_1.5L,sr,296,118.4,force,lower_fy,-0.00036330451257526875 +illusion_1.5L,sr,297,118.8,force,front_fx,0.0019000754691660404 +illusion_1.5L,sr,297,118.8,force,front_fy,6.556883249686507e-07 +illusion_1.5L,sr,297,118.8,force,upper_fx,0.0022312281653285027 +illusion_1.5L,sr,297,118.8,force,upper_fy,0.00034254416823387146 +illusion_1.5L,sr,297,118.8,force,lower_fx,0.0022289834450930357 +illusion_1.5L,sr,297,118.8,force,lower_fy,-0.00037214168696664274 +illusion_1.5L,sr,298,119.2,force,front_fx,0.0018996112048625946 +illusion_1.5L,sr,298,119.2,force,front_fy,-4.285239356249804e-06 +illusion_1.5L,sr,298,119.2,force,upper_fx,0.0022242674604058266 +illusion_1.5L,sr,298,119.2,force,upper_fy,0.0003329489263705909 +illusion_1.5L,sr,298,119.2,force,lower_fx,0.002233700128272176 +illusion_1.5L,sr,298,119.2,force,lower_fy,-0.0003778250829782337 +illusion_1.5L,sr,299,119.6,force,front_fx,0.0019013079581782222 +illusion_1.5L,sr,299,119.6,force,front_fy,-8.656560567033011e-06 +illusion_1.5L,sr,299,119.6,force,upper_fx,0.002220542635768652 +illusion_1.5L,sr,299,119.6,force,upper_fy,0.0003241361409891397 +illusion_1.5L,sr,299,119.6,force,lower_fx,0.0022408703807741404 +illusion_1.5L,sr,299,119.6,force,lower_fy,-0.0003800748672802001 +illusion_1.5L,sr,300,120.0,force,front_fx,0.0019025896908715367 +illusion_1.5L,sr,300,120.0,force,front_fy,-1.2516821698227432e-05 +illusion_1.5L,sr,300,120.0,force,upper_fx,0.0022176445927470922 +illusion_1.5L,sr,300,120.0,force,upper_fy,0.000317813188303262 +illusion_1.5L,sr,300,120.0,force,lower_fx,0.0022471535485237837 +illusion_1.5L,sr,300,120.0,force,lower_fy,-0.00038020568899810314 +illusion_1.5L,sr,301,120.4,force,front_fx,0.0019023119239136577 +illusion_1.5L,sr,301,120.4,force,front_fy,-1.5221660760289524e-05 +illusion_1.5L,sr,301,120.4,force,upper_fx,0.002214341424405575 +illusion_1.5L,sr,301,120.4,force,upper_fy,0.000315490469802171 +illusion_1.5L,sr,301,120.4,force,lower_fx,0.0022505647502839565 +illusion_1.5L,sr,301,120.4,force,lower_fy,-0.00037882168544456363 +illusion_1.5L,sr,302,120.8,force,front_fx,0.0019015527796000242 +illusion_1.5L,sr,302,120.8,force,front_fy,-1.6746180335758254e-05 +illusion_1.5L,sr,302,120.8,force,upper_fx,0.0022120526991784573 +illusion_1.5L,sr,302,120.8,force,upper_fy,0.00031739380210638046 +illusion_1.5L,sr,302,120.8,force,lower_fx,0.0022518595214933157 +illusion_1.5L,sr,302,120.8,force,lower_fy,-0.00037641695234924555 +illusion_1.5L,sr,303,121.2,force,front_fx,0.0019002824556082487 +illusion_1.5L,sr,303,121.2,force,front_fy,-1.6741118088248186e-05 +illusion_1.5L,sr,303,121.2,force,upper_fx,0.00221084407530725 +illusion_1.5L,sr,303,121.2,force,upper_fy,0.0003234966134186834 +illusion_1.5L,sr,303,121.2,force,lower_fx,0.0022507396060973406 +illusion_1.5L,sr,303,121.2,force,lower_fy,-0.0003731333708856255 +illusion_1.5L,sr,304,121.6,force,front_fx,0.0019003497436642647 +illusion_1.5L,sr,304,121.6,force,front_fy,-1.5176774468272924e-05 +illusion_1.5L,sr,304,121.6,force,upper_fx,0.0022128610871732235 +illusion_1.5L,sr,304,121.6,force,upper_fy,0.00033279924537055194 +illusion_1.5L,sr,304,121.6,force,lower_fx,0.002249320736154914 +illusion_1.5L,sr,304,121.6,force,lower_fy,-0.000368735461961478 +illusion_1.5L,sr,305,122.0,force,front_fx,0.0019016326405107975 +illusion_1.5L,sr,305,122.0,force,front_fy,-1.2284519470995292e-05 +illusion_1.5L,sr,305,122.0,force,upper_fx,0.0022178608924150467 +illusion_1.5L,sr,305,122.0,force,upper_fy,0.0003441096923779696 +illusion_1.5L,sr,305,122.0,force,lower_fx,0.0022476394660770893 +illusion_1.5L,sr,305,122.0,force,lower_fy,-0.0003631379222497344 +illusion_1.5L,sr,306,122.4,force,front_fx,0.0019016532460227609 +illusion_1.5L,sr,306,122.4,force,front_fy,-8.170401088136714e-06 +illusion_1.5L,sr,306,122.4,force,upper_fx,0.0022223973646759987 +illusion_1.5L,sr,306,122.4,force,upper_fy,0.0003561288758646697 +illusion_1.5L,sr,306,122.4,force,lower_fx,0.002242941176518798 +illusion_1.5L,sr,306,122.4,force,lower_fy,-0.0003563271020539105 +illusion_1.5L,sr,307,122.8,force,front_fx,0.0019008879316970706 +illusion_1.5L,sr,307,122.8,force,front_fy,-3.667046485134051e-06 +illusion_1.5L,sr,307,122.8,force,upper_fx,0.0022265498992055655 +illusion_1.5L,sr,307,122.8,force,upper_fy,0.00036669563269242644 +illusion_1.5L,sr,307,122.8,force,lower_fx,0.0022361502051353455 +illusion_1.5L,sr,307,122.8,force,lower_fy,-0.0003482693573459983 +illusion_1.5L,sr,308,123.2,force,front_fx,0.0019000668544322252 +illusion_1.5L,sr,308,123.2,force,front_fy,1.2252552323843702e-06 +illusion_1.5L,sr,308,123.2,force,upper_fx,0.0022307552862912416 +illusion_1.5L,sr,308,123.2,force,upper_fy,0.00037455864367075264 +illusion_1.5L,sr,308,123.2,force,lower_fx,0.002228681929409504 +illusion_1.5L,sr,308,123.2,force,lower_fy,-0.00033906137105077505 +illusion_1.5L,sr,309,123.6,force,front_fx,0.0018995787249878049 +illusion_1.5L,sr,309,123.6,force,front_fy,5.891351975151338e-06 +illusion_1.5L,sr,309,123.6,force,upper_fx,0.0022354035172611475 +illusion_1.5L,sr,309,123.6,force,upper_fy,0.0003790055343415588 +illusion_1.5L,sr,309,123.6,force,lower_fx,0.0022218399681150913 +illusion_1.5L,sr,309,123.6,force,lower_fy,-0.0003297891526017338 +illusion_1.5L,sr,310,124.0,force,front_fx,0.0019011187832802534 +illusion_1.5L,sr,310,124.0,force,front_fy,1.0217611816187855e-05 +illusion_1.5L,sr,310,124.0,force,upper_fx,0.002242198446765542 +illusion_1.5L,sr,310,124.0,force,upper_fy,0.00038040257641114295 +illusion_1.5L,sr,310,124.0,force,lower_fx,0.0022183009423315525 +illusion_1.5L,sr,310,124.0,force,lower_fy,-0.0003215780889149755 +illusion_1.5L,sr,311,124.4,force,front_fx,0.0019024776993319392 +illusion_1.5L,sr,311,124.4,force,front_fy,1.3572828720498364e-05 +illusion_1.5L,sr,311,124.4,force,upper_fx,0.002248271368443966 +illusion_1.5L,sr,311,124.4,force,upper_fy,0.000379695906303823 +illusion_1.5L,sr,311,124.4,force,lower_fx,0.002216026419773698 +illusion_1.5L,sr,311,124.4,force,lower_fy,-0.0003165218513458967 +illusion_1.5L,sr,312,124.8,force,front_fx,0.0019022227497771382 +illusion_1.5L,sr,312,124.8,force,front_fy,1.595629692019429e-05 +illusion_1.5L,sr,312,124.8,force,upper_fx,0.002251238562166691 +illusion_1.5L,sr,312,124.8,force,upper_fy,0.0003779584658332169 +illusion_1.5L,sr,312,124.8,force,lower_fx,0.0022133777383714914 +illusion_1.5L,sr,312,124.8,force,lower_fy,-0.00031562751973979175 +illusion_1.5L,sr,313,125.2,force,front_fx,0.001901400974020362 +illusion_1.5L,sr,313,125.2,force,front_fy,1.6910526028368622e-05 +illusion_1.5L,sr,313,125.2,force,upper_fx,0.0022518641781061888 +illusion_1.5L,sr,313,125.2,force,upper_fy,0.00037525297375395894 +illusion_1.5L,sr,313,125.2,force,lower_fx,0.0022116834297776222 +illusion_1.5L,sr,313,125.2,force,lower_fy,-0.0003191816504113376 +illusion_1.5L,sr,314,125.6,force,front_fx,0.0019001653417944908 +illusion_1.5L,sr,314,125.6,force,front_fy,1.6300582501571625e-05 +illusion_1.5L,sr,314,125.6,force,upper_fx,0.0022500830236822367 +illusion_1.5L,sr,314,125.6,force,upper_fy,0.00037173996679484844 +illusion_1.5L,sr,314,125.6,force,lower_fx,0.002211117884144187 +illusion_1.5L,sr,314,125.6,force,lower_fy,-0.0003266486164648086 +illusion_1.5L,sr,315,126.0,force,front_fx,0.0019000209867954254 +illusion_1.5L,sr,315,126.0,force,front_fy,1.428293853678042e-05 +illusion_1.5L,sr,315,126.0,force,upper_fx,0.0022477046586573124 +illusion_1.5L,sr,315,126.0,force,upper_fy,0.00036702677607536316 +illusion_1.5L,sr,315,126.0,force,lower_fx,0.0022134343162178993 +illusion_1.5L,sr,315,126.0,force,lower_fy,-0.00033686074311845005 +illusion_1.5L,sr,316,126.4,force,front_fx,0.0019012716365978122 +illusion_1.5L,sr,316,126.4,force,front_fy,1.0796548849612009e-05 +illusion_1.5L,sr,316,126.4,force,upper_fx,0.002245380077511072 +illusion_1.5L,sr,316,126.4,force,upper_fy,0.00036082466249354184 +illusion_1.5L,sr,316,126.4,force,lower_fx,0.0022187812719494104 +illusion_1.5L,sr,316,126.4,force,lower_fy,-0.00034850931842811406 +illusion_1.5L,sr,317,126.8,force,front_fx,0.0019014931749552488 +illusion_1.5L,sr,317,126.8,force,front_fy,6.630109965044539e-06 +illusion_1.5L,sr,317,126.8,force,upper_fx,0.0022404463961720467 +illusion_1.5L,sr,317,126.8,force,upper_fy,0.00035353199928067625 +illusion_1.5L,sr,317,126.8,force,lower_fx,0.00222381972707808 +illusion_1.5L,sr,317,126.8,force,lower_fy,-0.0003600036434363574 +illusion_1.5L,sr,318,127.2,force,front_fx,0.0019007957307621837 +illusion_1.5L,sr,318,127.2,force,front_fy,1.7905716731547727e-06 +illusion_1.5L,sr,318,127.2,force,upper_fx,0.00223353854380548 +illusion_1.5L,sr,318,127.2,force,upper_fy,0.0003449406358413398 +illusion_1.5L,sr,318,127.2,force,lower_fx,0.0022281883284449577 +illusion_1.5L,sr,318,127.2,force,lower_fy,-0.00036978733260184526 +illusion_1.5L,sr,319,127.6,force,front_fx,0.0019001096952706575 +illusion_1.5L,sr,319,127.6,force,front_fy,-2.863037479983177e-06 +illusion_1.5L,sr,319,127.6,force,upper_fx,0.0022262507118284702 +illusion_1.5L,sr,319,127.6,force,upper_fy,0.00033575540874153376 +illusion_1.5L,sr,319,127.6,force,lower_fx,0.0022326246835291386 +illusion_1.5L,sr,319,127.6,force,lower_fy,-0.0003763917775359005 +illusion_1.5L,sr,320,128.0,force,front_fx,0.0018996192375198007 +illusion_1.5L,sr,320,128.0,force,front_fy,-7.643297976756003e-06 +illusion_1.5L,sr,320,128.0,force,upper_fx,0.0022196704521775246 +illusion_1.5L,sr,320,128.0,force,upper_fy,0.00032672908855602145 +illusion_1.5L,sr,320,128.0,force,lower_fx,0.0022371760569512844 +illusion_1.5L,sr,320,128.0,force,lower_fy,-0.00037989113479852676 +illusion_1.5L,sr,321,128.4,force,front_fx,0.0019009566167369485 +illusion_1.5L,sr,321,128.4,force,front_fy,-1.147456896433141e-05 +illusion_1.5L,sr,321,128.4,force,upper_fx,0.0022162985987961292 +illusion_1.5L,sr,321,128.4,force,upper_fy,0.0003195586905349046 +illusion_1.5L,sr,321,128.4,force,lower_fx,0.0022435111459344625 +illusion_1.5L,sr,321,128.4,force,lower_fy,-0.0003802994033321738 +illusion_1.5L,sr,322,128.8,force,front_fx,0.0019023411441594362 +illusion_1.5L,sr,322,128.8,force,front_fy,-1.4632572856498882e-05 +illusion_1.5L,sr,322,128.8,force,upper_fx,0.0022146273404359818 +illusion_1.5L,sr,322,128.8,force,upper_fy,0.00031568578560836613 +illusion_1.5L,sr,322,128.8,force,lower_fx,0.002249233890324831 +illusion_1.5L,sr,322,128.8,force,lower_fy,-0.00037909147795289755 +illusion_1.5L,sr,323,129.2,force,front_fx,0.0019021128537133336 +illusion_1.5L,sr,323,129.2,force,front_fy,-1.6432755728601478e-05 +illusion_1.5L,sr,323,129.2,force,upper_fx,0.002212638035416603 +illusion_1.5L,sr,323,129.2,force,upper_fy,0.0003164281079079956 +illusion_1.5L,sr,323,129.2,force,lower_fx,0.002251712139695883 +illusion_1.5L,sr,323,129.2,force,lower_fy,-0.00037690415047109127 +illusion_1.5L,sr,324,129.6,force,front_fx,0.0019012487027794123 +illusion_1.5L,sr,324,129.6,force,front_fy,-1.6862013580976054e-05 +illusion_1.5L,sr,324,129.6,force,upper_fx,0.0022115556057542562 +illusion_1.5L,sr,324,129.6,force,upper_fy,0.00032147494493983686 +illusion_1.5L,sr,324,129.6,force,lower_fx,0.002251669531688094 +illusion_1.5L,sr,324,129.6,force,lower_fy,-0.000374007475329563 +illusion_1.5L,sr,325,130.0,force,front_fx,0.0019000788452103734 +illusion_1.5L,sr,325,130.0,force,front_fy,-1.575894930283539e-05 +illusion_1.5L,sr,325,130.0,force,upper_fx,0.0022116710897535086 +illusion_1.5L,sr,325,130.0,force,upper_fy,0.00033017247915267944 +illusion_1.5L,sr,325,130.0,force,lower_fx,0.002249260665848851 +illusion_1.5L,sr,325,130.0,force,lower_fy,-0.0003702108224388212 +illusion_1.5L,sr,326,130.4,force,front_fx,0.0018997618462890387 +illusion_1.5L,sr,326,130.4,force,front_fy,-1.3083846170047764e-05 +illusion_1.5L,sr,326,130.4,force,upper_fx,0.002214260632172227 +illusion_1.5L,sr,326,130.4,force,upper_fy,0.00034115876769647 +illusion_1.5L,sr,326,130.4,force,lower_fx,0.0022460073232650757 +illusion_1.5L,sr,326,130.4,force,lower_fy,-0.0003650527214631438 +illusion_1.5L,sr,327,130.8,force,front_fx,0.00190095289144665 +illusion_1.5L,sr,327,130.8,force,front_fy,-9.392323590873275e-06 +illusion_1.5L,sr,327,130.8,force,upper_fx,0.002219872083514929 +illusion_1.5L,sr,327,130.8,force,upper_fy,0.00035275574191473424 +illusion_1.5L,sr,327,130.8,force,lower_fx,0.00224300567060709 +illusion_1.5L,sr,327,130.8,force,lower_fy,-0.0003583917859941721 +illusion_1.5L,sr,328,131.2,force,front_fx,0.0019013244891539216 +illusion_1.5L,sr,328,131.2,force,front_fy,-4.823035396839259e-06 +illusion_1.5L,sr,328,131.2,force,upper_fx,0.0022253096103668213 +illusion_1.5L,sr,328,131.2,force,upper_fy,0.00036374430055730045 +illusion_1.5L,sr,328,131.2,force,lower_fx,0.00223792577162385 +illusion_1.5L,sr,328,131.2,force,lower_fy,-0.00035042405943386257 +illusion_1.5L,sr,329,131.6,force,front_fx,0.0019007244845852256 +illusion_1.5L,sr,329,131.6,force,front_fy,-1.8315964211979008e-07 +illusion_1.5L,sr,329,131.6,force,upper_fx,0.0022299226839095354 +illusion_1.5L,sr,329,131.6,force,upper_fy,0.00037236663047224283 +illusion_1.5L,sr,329,131.6,force,lower_fx,0.00223098904825747 +illusion_1.5L,sr,329,131.6,force,lower_fy,-0.00034164972021244466 +illusion_1.5L,sr,330,132.0,force,front_fx,0.0019002025946974754 +illusion_1.5L,sr,330,132.0,force,front_fy,4.718661784863798e-06 +illusion_1.5L,sr,330,132.0,force,upper_fx,0.0022345224861055613 +illusion_1.5L,sr,330,132.0,force,upper_fy,0.0003779789840336889 +illusion_1.5L,sr,330,132.0,force,lower_fx,0.00222399877384305 +illusion_1.5L,sr,330,132.0,force,lower_fy,-0.0003323579439893365 +illusion_1.5L,sr,331,132.4,force,front_fx,0.0018997342558577657 +illusion_1.5L,sr,331,132.4,force,front_fy,9.068980034498964e-06 +illusion_1.5L,sr,331,132.4,force,upper_fx,0.0022389916703104973 +illusion_1.5L,sr,331,132.4,force,upper_fy,0.00038032789598219097 +illusion_1.5L,sr,331,132.4,force,lower_fx,0.002217753091827035 +illusion_1.5L,sr,331,132.4,force,lower_fy,-0.00032403634395450354 +illusion_1.5L,sr,332,132.8,force,front_fx,0.0019008242525160313 +illusion_1.5L,sr,332,132.8,force,front_fy,1.277638330066111e-05 +illusion_1.5L,sr,332,132.8,force,upper_fx,0.00224474910646677 +illusion_1.5L,sr,332,132.8,force,upper_fy,0.00038010525167919695 +illusion_1.5L,sr,332,132.8,force,lower_fx,0.0022145803086459637 +illusion_1.5L,sr,332,132.8,force,lower_fy,-0.00031783999293111265 +illusion_1.5L,sr,333,133.2,force,front_fx,0.0019021775806322694 +illusion_1.5L,sr,333,133.2,force,front_fy,1.5417059330502525e-05 +illusion_1.5L,sr,333,133.2,force,upper_fx,0.0022500022314488888 +illusion_1.5L,sr,333,133.2,force,upper_fy,0.00037831251393072307 +illusion_1.5L,sr,333,133.2,force,lower_fx,0.002213438507169485 +illusion_1.5L,sr,333,133.2,force,lower_fy,-0.000315456505632028 +illusion_1.5L,sr,334,133.6,force,front_fx,0.001901982701383531 +illusion_1.5L,sr,334,133.6,force,front_fy,1.6740808860049583e-05 +illusion_1.5L,sr,334,133.6,force,upper_fx,0.002251955447718501 +illusion_1.5L,sr,334,133.6,force,upper_fy,0.0003758415696211159 +illusion_1.5L,sr,334,133.6,force,lower_fx,0.0022121514193713665 +illusion_1.5L,sr,334,133.6,force,lower_fy,-0.00031772308284416795 +illusion_1.5L,sr,335,134.0,force,front_fx,0.0019011165713891387 +illusion_1.5L,sr,335,134.0,force,front_fy,1.6642945411149412e-05 +illusion_1.5L,sr,335,134.0,force,upper_fx,0.0022512481082230806 +illusion_1.5L,sr,335,134.0,force,upper_fy,0.00037270408938638866 +illusion_1.5L,sr,335,134.0,force,lower_fx,0.0022117013577371836 +illusion_1.5L,sr,335,134.0,force,lower_fy,-0.0003242104430682957 +illusion_1.5L,sr,336,134.4,force,front_fx,0.0019000290194526315 +illusion_1.5L,sr,336,134.4,force,front_fy,1.4905681382515468e-05 +illusion_1.5L,sr,336,134.4,force,upper_fx,0.002248254604637623 +illusion_1.5L,sr,336,134.4,force,upper_fy,0.0003685313567984849 +illusion_1.5L,sr,336,134.4,force,lower_fx,0.002212473889812827 +illusion_1.5L,sr,336,134.4,force,lower_fy,-0.0003340047551319003 +illusion_1.5L,sr,337,134.8,force,front_fx,0.0018995668506249785 +illusion_1.5L,sr,337,134.8,force,front_fy,1.1901465768460184e-05 +illusion_1.5L,sr,337,134.8,force,upper_fx,0.0022441812325268984 +illusion_1.5L,sr,337,134.8,force,upper_fy,0.0003629972052294761 +illusion_1.5L,sr,337,134.8,force,lower_fx,0.002215336076915264 +illusion_1.5L,sr,337,134.8,force,lower_fy,-0.0003454223333392292 +illusion_1.5L,sr,338,135.2,force,front_fx,0.0019006426446139812 +illusion_1.5L,sr,338,135.2,force,front_fy,7.711701073276345e-06 +illusion_1.5L,sr,338,135.2,force,upper_fx,0.00224054092541337 +illusion_1.5L,sr,338,135.2,force,upper_fy,0.0003556994488462806 +illusion_1.5L,sr,338,135.2,force,lower_fx,0.0022210858296602964 +illusion_1.5L,sr,338,135.2,force,lower_fy,-0.0003569213440641761 +illusion_1.5L,sr,339,135.6,force,front_fx,0.001901178970001638 +illusion_1.5L,sr,339,135.6,force,front_fy,3.1905722153169336e-06 +illusion_1.5L,sr,339,135.6,force,upper_fx,0.0022353515960276127 +illusion_1.5L,sr,339,135.6,force,upper_fy,0.00034734129440039396 +illusion_1.5L,sr,339,135.6,force,lower_fx,0.0022268923930823803 +illusion_1.5L,sr,339,135.6,force,lower_fy,-0.00036699630436487496 +illusion_1.5L,sr,340,136.0,force,front_fx,0.0019007102819159627 +illusion_1.5L,sr,340,136.0,force,front_fy,-1.6489533436470083e-06 +illusion_1.5L,sr,340,136.0,force,upper_fx,0.002228533150628209 +illusion_1.5L,sr,340,136.0,force,upper_fy,0.00033822166733443737 +illusion_1.5L,sr,340,136.0,force,lower_fx,0.0022317226976156235 +illusion_1.5L,sr,340,136.0,force,lower_fy,-0.0003746422007679939 +illusion_1.5L,sr,341,136.4,force,front_fx,0.0019003137713298202 +illusion_1.5L,sr,341,136.4,force,front_fy,-6.324787591438508e-06 +illusion_1.5L,sr,341,136.4,force,upper_fx,0.0022219016682356596 +illusion_1.5L,sr,341,136.4,force,upper_fy,0.0003292352193966508 +illusion_1.5L,sr,341,136.4,force,lower_fx,0.002236461965367198 +illusion_1.5L,sr,341,136.4,force,lower_fy,-0.0003790368791669607 +illusion_1.5L,sr,342,136.8,force,front_fx,0.001899879309348762 +illusion_1.5L,sr,342,136.8,force,front_fy,-1.0537574780755676e-05 +illusion_1.5L,sr,342,136.8,force,upper_fx,0.0022160729859024286 +illusion_1.5L,sr,342,136.8,force,upper_fy,0.0003215860924683511 +illusion_1.5L,sr,342,136.8,force,lower_fx,0.0022407840006053448 +illusion_1.5L,sr,342,136.8,force,lower_fy,-0.00038053729804232717 +illusion_1.5L,sr,343,137.2,force,front_fx,0.0019006984075531363 +illusion_1.5L,sr,343,137.2,force,front_fy,-1.3840863175573759e-05 +illusion_1.5L,sr,343,137.2,force,upper_fx,0.002213100902736187 +illusion_1.5L,sr,343,137.2,force,upper_fy,0.0003166833776049316 +illusion_1.5L,sr,343,137.2,force,lower_fx,0.0022458916064351797 +illusion_1.5L,sr,343,137.2,force,lower_fy,-0.00037963679642416537 +illusion_1.5L,sr,344,137.6,force,front_fx,0.0019019678002223372 +illusion_1.5L,sr,344,137.6,force,front_fy,-1.6053008948802017e-05 +illusion_1.5L,sr,344,137.6,force,upper_fx,0.0022124529350548983 +illusion_1.5L,sr,344,137.6,force,upper_fy,0.00031577766640111804 +illusion_1.5L,sr,344,137.6,force,lower_fx,0.0022505612578243017 +illusion_1.5L,sr,344,137.6,force,lower_fy,-0.00037743966095149517 +illusion_1.5L,sr,345,138.0,force,front_fx,0.0019018403254449368 +illusion_1.5L,sr,345,138.0,force,front_fy,-1.6906560631468892e-05 +illusion_1.5L,sr,345,138.0,force,upper_fx,0.0022118818014860153 +illusion_1.5L,sr,345,138.0,force,upper_fy,0.0003195616591256112 +illusion_1.5L,sr,345,138.0,force,lower_fx,0.002251979662105441 +illusion_1.5L,sr,345,138.0,force,lower_fy,-0.0003746885049622506 +illusion_1.5L,sr,346,138.4,force,front_fx,0.0019009826937690377 +illusion_1.5L,sr,346,138.4,force,front_fy,-1.613869062566664e-05 +illusion_1.5L,sr,346,138.4,force,upper_fx,0.002212071791291237 +illusion_1.5L,sr,346,138.4,force,upper_fy,0.0003274150949437171 +illusion_1.5L,sr,346,138.4,force,lower_fx,0.002250627614557743 +illusion_1.5L,sr,346,138.4,force,lower_fy,-0.000371238449588418 +illusion_1.5L,sr,347,138.8,force,front_fx,0.0019000126048922539 +illusion_1.5L,sr,347,138.8,force,front_fy,-1.4015804481459782e-05 +illusion_1.5L,sr,347,138.8,force,upper_fx,0.0022135013714432716 +illusion_1.5L,sr,347,138.8,force,upper_fy,0.0003380084817763418 +illusion_1.5L,sr,347,138.8,force,lower_fx,0.0022470683325082064 +illusion_1.5L,sr,347,138.8,force,lower_fy,-0.00036674298462457955 +illusion_1.5L,sr,348,139.2,force,front_fx,0.0018994234269484878 +illusion_1.5L,sr,348,139.2,force,front_fy,-1.0393956472398713e-05 +illusion_1.5L,sr,348,139.2,force,upper_fx,0.002216595457866788 +illusion_1.5L,sr,348,139.2,force,upper_fy,0.00034978665644302964 +illusion_1.5L,sr,348,139.2,force,lower_fx,0.002242267830297351 +illusion_1.5L,sr,348,139.2,force,lower_fy,-0.000360628473572433 +illusion_1.5L,sr,349,139.6,force,front_fx,0.0019003566121682525 +illusion_1.5L,sr,349,139.6,force,front_fy,-6.189358373376308e-06 +illusion_1.5L,sr,349,139.6,force,upper_fx,0.0022224183194339275 +illusion_1.5L,sr,349,139.6,force,upper_fy,0.0003607834514696151 +illusion_1.5L,sr,349,139.6,force,lower_fx,0.0022380088921636343 +illusion_1.5L,sr,349,139.6,force,lower_fy,-0.0003529058303683996 +illusion_1.5L,sr,350,140.0,force,front_fx,0.0019010333344340324 +illusion_1.5L,sr,350,140.0,force,front_fy,-1.3904858633395634e-06 +illusion_1.5L,sr,350,140.0,force,upper_fx,0.002228516386821866 +illusion_1.5L,sr,350,140.0,force,upper_fy,0.00037001934833824635 +illusion_1.5L,sr,350,140.0,force,lower_fx,0.0022327976766973734 +illusion_1.5L,sr,350,140.0,force,lower_fy,-0.0003440183063503355 +illusion_1.5L,sr,351,140.4,force,front_fx,0.0019007425289601088 +illusion_1.5L,sr,351,140.4,force,front_fy,3.316655238450039e-06 +illusion_1.5L,sr,351,140.4,force,upper_fx,0.0022335860412567854 +illusion_1.5L,sr,351,140.4,force,upper_fy,0.00037642885581590235 +illusion_1.5L,sr,351,140.4,force,lower_fx,0.002226197626441717 +illusion_1.5L,sr,351,140.4,force,lower_fy,-0.0003348969330545515 +illusion_1.5L,sr,352,140.8,force,front_fx,0.0019004684872925282 +illusion_1.5L,sr,352,140.8,force,front_fy,7.977624591148924e-06 +illusion_1.5L,sr,352,140.8,force,upper_fx,0.00223838840611279 +illusion_1.5L,sr,352,140.8,force,upper_fy,0.00037984049413353205 +illusion_1.5L,sr,352,140.8,force,lower_fx,0.002219993621110916 +illusion_1.5L,sr,352,140.8,force,lower_fy,-0.00032621194259263575 +illusion_1.5L,sr,353,141.2,force,front_fx,0.0019000413594767451 +illusion_1.5L,sr,353,141.2,force,front_fy,1.1799967978731729e-05 +illusion_1.5L,sr,353,141.2,force,upper_fx,0.0022425118368119 +illusion_1.5L,sr,353,141.2,force,upper_fy,0.0003804425650741905 +illusion_1.5L,sr,353,141.2,force,lower_fx,0.0022146226838231087 +illusion_1.5L,sr,353,141.2,force,lower_fy,-0.0003195615136064589 +illusion_1.5L,sr,354,141.6,force,front_fx,0.0019005787326022983 +illusion_1.5L,sr,354,141.6,force,front_fy,1.4798786651226692e-05 +illusion_1.5L,sr,354,141.6,force,upper_fx,0.002246900461614132 +illusion_1.5L,sr,354,141.6,force,upper_fy,0.0003790658665820956 +illusion_1.5L,sr,354,141.6,force,lower_fx,0.002211872022598982 +illusion_1.5L,sr,354,141.6,force,lower_fy,-0.00031598395435139537 +illusion_1.5L,sr,355,142.0,force,front_fx,0.0019017286831513047 +illusion_1.5L,sr,355,142.0,force,front_fy,1.6514011804247275e-05 +illusion_1.5L,sr,355,142.0,force,upper_fx,0.00225087720900774 +illusion_1.5L,sr,355,142.0,force,upper_fy,0.00037649349542334676 +illusion_1.5L,sr,355,142.0,force,lower_fx,0.0022116980981081724 +illusion_1.5L,sr,355,142.0,force,lower_fy,-0.0003166511014569551 +illusion_1.5L,sr,356,142.4,force,front_fx,0.0019016802543774247 +illusion_1.5L,sr,356,142.4,force,front_fy,1.677323416515719e-05 +illusion_1.5L,sr,356,142.4,force,upper_fx,0.0022517621982842684 +illusion_1.5L,sr,356,142.4,force,upper_fy,0.0003734517376869917 +illusion_1.5L,sr,356,142.4,force,lower_fx,0.0022118608467280865 +illusion_1.5L,sr,356,142.4,force,lower_fy,-0.0003219126083422452 +illusion_1.5L,sr,357,142.8,force,front_fx,0.0019008746603503823 +illusion_1.5L,sr,357,142.8,force,front_fy,1.556206370878499e-05 +illusion_1.5L,sr,357,142.8,force,upper_fx,0.0022497791796922684 +illusion_1.5L,sr,357,142.8,force,upper_fy,0.00036973264650441706 +illusion_1.5L,sr,357,142.8,force,lower_fx,0.0022126969415694475 +illusion_1.5L,sr,357,142.8,force,lower_fy,-0.00033089195494540036 +illusion_1.5L,sr,358,143.2,force,front_fx,0.0019000006141141057 +illusion_1.5L,sr,358,143.2,force,front_fy,1.275861905014608e-05 +illusion_1.5L,sr,358,143.2,force,upper_fx,0.002245695795863867 +illusion_1.5L,sr,358,143.2,force,upper_fy,0.00036472443025559187 +illusion_1.5L,sr,358,143.2,force,lower_fx,0.0022147081326693296 +illusion_1.5L,sr,358,143.2,force,lower_fy,-0.0003422126465011388 +illusion_1.5L,sr,359,143.6,force,front_fx,0.001899317023344338 +illusion_1.5L,sr,359,143.6,force,front_fy,8.992837138066534e-06 +illusion_1.5L,sr,359,143.6,force,upper_fx,0.002240240341052413 +illusion_1.5L,sr,359,143.6,force,upper_fy,0.0003581760684028268 +illusion_1.5L,sr,359,143.6,force,lower_fx,0.002218033652752638 +illusion_1.5L,sr,359,143.6,force,lower_fy,-0.00035394326550886035 +illusion_1.5L,sr,360,144.0,force,front_fx,0.0019000901374965906 +illusion_1.5L,sr,360,144.0,force,front_fy,4.411939698911738e-06 +illusion_1.5L,sr,360,144.0,force,upper_fx,0.002235444262623787 +illusion_1.5L,sr,360,144.0,force,upper_fy,0.00034985996899195015 +illusion_1.5L,sr,360,144.0,force,lower_fx,0.0022238390520215034 +illusion_1.5L,sr,360,144.0,force,lower_fy,-0.00036445577279664576 +illusion_1.5L,sr,361,144.4,force,front_fx,0.0019009289098903537 +illusion_1.5L,sr,361,144.4,force,front_fy,-2.2912452379841852e-07 +illusion_1.5L,sr,361,144.4,force,upper_fx,0.0022302577272057533 +illusion_1.5L,sr,361,144.4,force,upper_fy,0.00034074383438564837 +illusion_1.5L,sr,361,144.4,force,lower_fx,0.002230199985206127 +illusion_1.5L,sr,361,144.4,force,lower_fy,-0.0003725389833562076 +illusion_1.5L,sr,362,144.8,force,front_fx,0.001900802250020206 +illusion_1.5L,sr,362,144.8,force,front_fy,-5.090292688691989e-06 +illusion_1.5L,sr,362,144.8,force,upper_fx,0.0022240113466978073 +illusion_1.5L,sr,362,144.8,force,upper_fy,0.00033155226265080273 +illusion_1.5L,sr,362,144.8,force,lower_fx,0.002235475229099393 +illusion_1.5L,sr,362,144.8,force,lower_fy,-0.0003779170219786465 +illusion_1.5L,sr,363,145.2,force,front_fx,0.0019006262300536036 +illusion_1.5L,sr,363,145.2,force,front_fy,-9.418254194315523e-06 +illusion_1.5L,sr,363,145.2,force,upper_fx,0.002218250883743167 +illusion_1.5L,sr,363,145.2,force,upper_fy,0.00032352952985093 +illusion_1.5L,sr,363,145.2,force,lower_fx,0.002240283414721489 +illusion_1.5L,sr,363,145.2,force,lower_fy,-0.00038023878005333245 +illusion_1.5L,sr,364,145.6,force,front_fx,0.0019002099288627505 +illusion_1.5L,sr,364,145.6,force,front_fy,-1.3001274055568501e-05 +illusion_1.5L,sr,364,145.6,force,upper_fx,0.002213378669694066 +illusion_1.5L,sr,364,145.6,force,upper_fy,0.0003179238992743194 +illusion_1.5L,sr,364,145.6,force,lower_fx,0.0022441332694143057 +illusion_1.5L,sr,364,145.6,force,lower_fy,-0.00038016439066268504 +illusion_1.5L,sr,365,146.0,force,front_fx,0.0019004460191354156 +illusion_1.5L,sr,365,146.0,force,front_fy,-1.5583042113576084e-05 +illusion_1.5L,sr,365,146.0,force,upper_fx,0.0022108673583716154 +illusion_1.5L,sr,365,146.0,force,upper_fy,0.0003158537729177624 +illusion_1.5L,sr,365,146.0,force,lower_fx,0.0022477495949715376 +illusion_1.5L,sr,365,146.0,force,lower_fy,-0.0003783305874094367 +illusion_1.5L,sr,366,146.4,force,front_fx,0.001901455339975655 +illusion_1.5L,sr,366,146.4,force,front_fy,-1.675498060649261e-05 +illusion_1.5L,sr,366,146.4,force,upper_fx,0.0022111276630312204 +illusion_1.5L,sr,366,146.4,force,upper_fy,0.0003181036445312202 +illusion_1.5L,sr,366,146.4,force,lower_fx,0.0022509689442813396 +illusion_1.5L,sr,366,146.4,force,lower_fy,-0.0003754371718969196 +illusion_1.5L,sr,367,146.8,force,front_fx,0.0019015282159671187 +illusion_1.5L,sr,367,146.8,force,front_fy,-1.6542800949537195e-05 +illusion_1.5L,sr,367,146.8,force,upper_fx,0.002212042920291424 +illusion_1.5L,sr,367,146.8,force,upper_fy,0.00032470154110342264 +illusion_1.5L,sr,367,146.8,force,lower_fx,0.0022513156291097403 +illusion_1.5L,sr,367,146.8,force,lower_fy,-0.00037214229814708233 +illusion_1.5L,sr,368,147.2,force,front_fx,0.0019007943337783217 +illusion_1.5L,sr,368,147.2,force,front_fy,-1.4667682080471423e-05 +illusion_1.5L,sr,368,147.2,force,upper_fx,0.002213517902418971 +illusion_1.5L,sr,368,147.2,force,upper_fy,0.0003347625897731632 +illusion_1.5L,sr,368,147.2,force,lower_fx,0.0022487500682473183 +illusion_1.5L,sr,368,147.2,force,lower_fy,-0.00036798391374759376 +illusion_1.5L,sr,369,147.6,force,front_fx,0.0019000022439286113 +illusion_1.5L,sr,369,147.6,force,front_fy,-1.1563050975382794e-05 +illusion_1.5L,sr,369,147.6,force,upper_fx,0.0022160704247653484 +illusion_1.5L,sr,369,147.6,force,upper_fy,0.00034642667742446065 +illusion_1.5L,sr,369,147.6,force,lower_fx,0.0022441460750997066 +illusion_1.5L,sr,369,147.6,force,lower_fy,-0.0003625742392614484 +illusion_1.5L,sr,370,148.0,force,front_fx,0.0018992439145222306 +illusion_1.5L,sr,370,148.0,force,front_fy,-7.343378456425853e-06 +illusion_1.5L,sr,370,148.0,force,upper_fx,0.0022195978090167046 +illusion_1.5L,sr,370,148.0,force,upper_fy,0.00035805092193186283 +illusion_1.5L,sr,370,148.0,force,lower_fx,0.00223814370110631 +illusion_1.5L,sr,370,148.0,force,lower_fy,-0.0003554165014065802 +illusion_1.5L,sr,371,148.4,force,front_fx,0.0018998649902641773 +illusion_1.5L,sr,371,148.4,force,front_fy,-2.8157662654848536e-06 +illusion_1.5L,sr,371,148.4,force,upper_fx,0.0022253654897212982 +illusion_1.5L,sr,371,148.4,force,upper_fy,0.0003677026543300599 +illusion_1.5L,sr,371,148.4,force,lower_fx,0.0022328610066324472 +illusion_1.5L,sr,371,148.4,force,lower_fy,-0.00034676981158554554 +illusion_1.5L,sr,372,148.8,force,front_fx,0.0019008261151611805 +illusion_1.5L,sr,372,148.8,force,front_fy,2.0265883904357906e-06 +illusion_1.5L,sr,372,148.8,force,upper_fx,0.00223193084821105 +illusion_1.5L,sr,372,148.8,force,upper_fy,0.0003747514565475285 +illusion_1.5L,sr,372,148.8,force,lower_fx,0.0022277813404798508 +illusion_1.5L,sr,372,148.8,force,lower_fy,-0.00033736013574525714 +illusion_1.5L,sr,373,149.2,force,front_fx,0.0019009164534509182 +illusion_1.5L,sr,373,149.2,force,front_fy,6.720038982166443e-06 +illusion_1.5L,sr,373,149.2,force,upper_fx,0.00223739561624825 +illusion_1.5L,sr,373,149.2,force,upper_fy,0.0003789314650930464 +illusion_1.5L,sr,373,149.2,force,lower_fx,0.002221964532509446 +illusion_1.5L,sr,373,149.2,force,lower_fy,-0.00032845002715475857 +illusion_1.5L,sr,374,149.6,force,front_fx,0.0019007909577339888 +illusion_1.5L,sr,374,149.6,force,front_fy,1.081586378859356e-05 +illusion_1.5L,sr,374,149.6,force,upper_fx,0.002242108341306448 +illusion_1.5L,sr,374,149.6,force,upper_fy,0.0003803735307883471 +illusion_1.5L,sr,374,149.6,force,lower_fx,0.0022166892886161804 +illusion_1.5L,sr,374,149.6,force,lower_fy,-0.0003211541334167123 +illusion_1.5L,sr,375,150.0,force,front_fx,0.0019003519555553794 +illusion_1.5L,sr,375,150.0,force,front_fy,1.4071394616621546e-05 +illusion_1.5L,sr,375,150.0,force,upper_fx,0.0022456073202192783 +illusion_1.5L,sr,375,150.0,force,upper_fy,0.0003796687815338373 +illusion_1.5L,sr,375,150.0,force,lower_fx,0.0022123358212411404 +illusion_1.5L,sr,375,150.0,force,lower_fy,-0.0003167993272654712 +illusion_1.5L,sr,376,150.4,force,front_fx,0.0019003157503902912 +illusion_1.5L,sr,376,150.4,force,front_fy,1.613406311662402e-05 +illusion_1.5L,sr,376,150.4,force,upper_fx,0.002248416654765606 +illusion_1.5L,sr,376,150.4,force,upper_fy,0.0003774533688556403 +illusion_1.5L,sr,376,150.4,force,lower_fx,0.0022100964561104774 +illusion_1.5L,sr,376,150.4,force,lower_fy,-0.000316309102345258 +illusion_1.5L,sr,377,150.8,force,front_fx,0.0019011804834008217 +illusion_1.5L,sr,377,150.8,force,front_fy,1.6888792742975056e-05 +illusion_1.5L,sr,377,150.8,force,upper_fx,0.002250815276056528 +illusion_1.5L,sr,377,150.8,force,upper_fy,0.00037435078411363065 +illusion_1.5L,sr,377,150.8,force,lower_fx,0.002210804261267185 +illusion_1.5L,sr,377,150.8,force,lower_fy,-0.0003200422215741128 +illusion_1.5L,sr,378,151.2,force,front_fx,0.0019013781566172838 +illusion_1.5L,sr,378,151.2,force,front_fy,1.5986150174285285e-05 +illusion_1.5L,sr,378,151.2,force,upper_fx,0.002250636462122202 +illusion_1.5L,sr,378,151.2,force,upper_fy,0.0003706738061737269 +illusion_1.5L,sr,378,151.2,force,lower_fx,0.002212448976933956 +illusion_1.5L,sr,378,151.2,force,lower_fy,-0.0003279517113696784 +illusion_1.5L,sr,379,151.6,force,front_fx,0.001900732982903719 +illusion_1.5L,sr,379,151.6,force,front_fy,1.372849328618031e-05 +illusion_1.5L,sr,379,151.6,force,upper_fx,0.0022475034929811954 +illusion_1.5L,sr,379,151.6,force,upper_fy,0.00036618008743971586 +illusion_1.5L,sr,379,151.6,force,lower_fx,0.0022145495750010014 +illusion_1.5L,sr,379,151.6,force,lower_fy,-0.00033873756183311343 +illusion_1.5L,sr,380,152.0,force,front_fx,0.0019000020110979676 +illusion_1.5L,sr,380,152.0,force,front_fy,1.0077772458316758e-05 +illusion_1.5L,sr,380,152.0,force,upper_fx,0.002242431277409196 +illusion_1.5L,sr,380,152.0,force,upper_fy,0.0003601610951591283 +illusion_1.5L,sr,380,152.0,force,lower_fx,0.0022175563499331474 +illusion_1.5L,sr,380,152.0,force,lower_fy,-0.0003506943176034838 +illusion_1.5L,sr,381,152.4,force,front_fx,0.0018992002587765455 +illusion_1.5L,sr,381,152.4,force,front_fy,5.7905231187760364e-06 +illusion_1.5L,sr,381,152.4,force,upper_fx,0.00223596696741879 +illusion_1.5L,sr,381,152.4,force,upper_fy,0.00035258213756605983 +illusion_1.5L,sr,381,152.4,force,lower_fx,0.0022212821058928967 +illusion_1.5L,sr,381,152.4,force,lower_fy,-0.0003618129703681916 +illusion_1.5L,sr,382,152.8,force,front_fx,0.0018996740691363811 +illusion_1.5L,sr,382,152.8,force,front_fy,1.0414352118459647e-06 +illusion_1.5L,sr,382,152.8,force,upper_fx,0.0022303112782537937 +illusion_1.5L,sr,382,152.8,force,upper_fy,0.0003435182443354279 +illusion_1.5L,sr,382,152.8,force,lower_fx,0.0022269762121140957 +illusion_1.5L,sr,382,152.8,force,lower_fy,-0.0003706387069541961 +illusion_1.5L,sr,383,153.2,force,front_fx,0.0019007541704922915 +illusion_1.5L,sr,383,153.2,force,front_fy,-3.7134784633963136e-06 +illusion_1.5L,sr,383,153.2,force,upper_fx,0.0022254015784710646 +illusion_1.5L,sr,383,153.2,force,upper_fy,0.00033406083821319044 +illusion_1.5L,sr,383,153.2,force,lower_fx,0.0022336868569254875 +illusion_1.5L,sr,383,153.2,force,lower_fy,-0.0003765115106943995 +illusion_1.5L,sr,384,153.6,force,front_fx,0.001901051844470203 +illusion_1.5L,sr,384,153.6,force,front_fy,-8.27565418148879e-06 +illusion_1.5L,sr,384,153.6,force,upper_fx,0.002220089780166745 +illusion_1.5L,sr,384,153.6,force,upper_fy,0.0003255039919167757 +illusion_1.5L,sr,384,153.6,force,lower_fx,0.0022392855025827885 +illusion_1.5L,sr,384,153.6,force,lower_fy,-0.000379647477529943 +illusion_1.5L,sr,385,154.0,force,front_fx,0.0019009356619790196 +illusion_1.5L,sr,385,154.0,force,front_fy,-1.2087075447198004e-05 +illusion_1.5L,sr,385,154.0,force,upper_fx,0.002215308602899313 +illusion_1.5L,sr,385,154.0,force,upper_fy,0.0003191721043549478 +illusion_1.5L,sr,385,154.0,force,lower_fx,0.002243817551061511 +illusion_1.5L,sr,385,154.0,force,lower_fy,-0.000380247161956504 +illusion_1.5L,sr,386,154.4,force,front_fx,0.0019004750065505505 +illusion_1.5L,sr,386,154.4,force,front_fy,-1.4948459465813357e-05 +illusion_1.5L,sr,386,154.4,force,upper_fx,0.0022114766761660576 +illusion_1.5L,sr,386,154.4,force,upper_fy,0.00031618730281479657 +illusion_1.5L,sr,386,154.4,force,lower_fx,0.0022469109389930964 +illusion_1.5L,sr,386,154.4,force,lower_fy,-0.000379018863895908 +illusion_1.5L,sr,387,154.8,force,front_fx,0.0019001829205080867 +illusion_1.5L,sr,387,154.8,force,front_fy,-1.6590389350312762e-05 +illusion_1.5L,sr,387,154.8,force,upper_fx,0.002209566766396165 +illusion_1.5L,sr,387,154.8,force,upper_fy,0.0003172732249367982 +illusion_1.5L,sr,387,154.8,force,lower_fx,0.002248884178698063 +illusion_1.5L,sr,387,154.8,force,lower_fy,-0.000376521231373772 +illusion_1.5L,sr,388,155.2,force,front_fx,0.00190090446267277 +illusion_1.5L,sr,388,155.2,force,front_fy,-1.6698164472472854e-05 +illusion_1.5L,sr,388,155.2,force,upper_fx,0.0022106878459453583 +illusion_1.5L,sr,388,155.2,force,upper_fy,0.0003225353721063584 +illusion_1.5L,sr,388,155.2,force,lower_fx,0.002250457415357232 +illusion_1.5L,sr,388,155.2,force,lower_fy,-0.00037311771302483976 +illusion_1.5L,sr,389,155.6,force,front_fx,0.0019012201810255647 +illusion_1.5L,sr,389,155.6,force,front_fy,-1.5396406524814665e-05 +illusion_1.5L,sr,389,155.6,force,upper_fx,0.002213061088696122 +illusion_1.5L,sr,389,155.6,force,upper_fy,0.0003315023786853999 +illusion_1.5L,sr,389,155.6,force,lower_fx,0.0022497361060231924 +illusion_1.5L,sr,389,155.6,force,lower_fy,-0.0003691325255203992 +illusion_1.5L,sr,390,156.0,force,front_fx,0.0019006864167749882 +illusion_1.5L,sr,390,156.0,force,front_fy,-1.2495203009166289e-05 +illusion_1.5L,sr,390,156.0,force,upper_fx,0.0022157318890094757 +illusion_1.5L,sr,390,156.0,force,upper_fy,0.00034295962541364133 +illusion_1.5L,sr,390,156.0,force,lower_fx,0.002246089046820998 +illusion_1.5L,sr,390,156.0,force,lower_fy,-0.00036409194581210613 +illusion_1.5L,sr,391,156.4,force,front_fx,0.0018999993335455656 +illusion_1.5L,sr,391,156.4,force,front_fy,-8.655390956846531e-06 +illusion_1.5L,sr,391,156.4,force,upper_fx,0.0022191470488905907 +illusion_1.5L,sr,391,156.4,force,upper_fy,0.00035480785300023854 +illusion_1.5L,sr,391,156.4,force,lower_fx,0.0022405548952519894 +illusion_1.5L,sr,391,156.4,force,lower_fy,-0.00035761258914135396 +illusion_1.5L,sr,392,156.8,force,front_fx,0.0018991859396919608 +illusion_1.5L,sr,392,156.8,force,front_fy,-4.0645072658662684e-06 +illusion_1.5L,sr,392,156.8,force,upper_fx,0.002223049756139517 +illusion_1.5L,sr,392,156.8,force,upper_fy,0.00036538628046400845 +illusion_1.5L,sr,392,156.8,force,lower_fx,0.002233759267255664 +illusion_1.5L,sr,392,156.8,force,lower_fy,-0.0003494881384540349 +illusion_1.5L,sr,393,157.2,force,front_fx,0.0018995373975485563 +illusion_1.5L,sr,393,157.2,force,front_fy,6.158343808237987e-07 +illusion_1.5L,sr,393,157.2,force,upper_fx,0.0022286756429821253 +illusion_1.5L,sr,393,157.2,force,upper_fy,0.0003731430624611676 +illusion_1.5L,sr,393,157.2,force,lower_fx,0.002227822318673134 +illusion_1.5L,sr,393,157.2,force,lower_fy,-0.0003402408619876951 +illusion_1.5L,sr,394,157.6,force,front_fx,0.0019007092341780663 +illusion_1.5L,sr,394,157.6,force,front_fy,5.435784260043874e-06 +illusion_1.5L,sr,394,157.6,force,upper_fx,0.002235459629446268 +illusion_1.5L,sr,394,157.6,force,upper_fy,0.0003779385006055236 +illusion_1.5L,sr,394,157.6,force,lower_fx,0.0022231442853808403 +illusion_1.5L,sr,394,157.6,force,lower_fy,-0.0003308049344923347 +illusion_1.5L,sr,395,158.0,force,front_fx,0.0019011780386790633 +illusion_1.5L,sr,395,158.0,force,front_fy,9.7284473667969e-06 +illusion_1.5L,sr,395,158.0,force,upper_fx,0.0022411311510950327 +illusion_1.5L,sr,395,158.0,force,upper_fy,0.0003800232952926308 +illusion_1.5L,sr,395,158.0,force,lower_fx,0.0022183784749358892 +illusion_1.5L,sr,395,158.0,force,lower_fy,-0.0003228657296858728 +illusion_1.5L,sr,396,158.4,force,front_fx,0.0019010688411071897 +illusion_1.5L,sr,396,158.4,force,front_fy,1.3212944395490922e-05 +illusion_1.5L,sr,396,158.4,force,upper_fx,0.0022453891579061747 +illusion_1.5L,sr,396,158.4,force,upper_fy,0.0003799108089879155 +illusion_1.5L,sr,396,158.4,force,lower_fx,0.002214107196778059 +illusion_1.5L,sr,396,158.4,force,lower_fy,-0.0003176335885655135 +illusion_1.5L,sr,397,158.8,force,front_fx,0.001900551957078278 +illusion_1.5L,sr,397,158.8,force,front_fy,1.571614484419115e-05 +illusion_1.5L,sr,397,158.8,force,upper_fx,0.002247987315058708 +illusion_1.5L,sr,397,158.8,force,upper_fy,0.00037825320032425225 +illusion_1.5L,sr,397,158.8,force,lower_fx,0.002210811944678426 +illusion_1.5L,sr,397,158.8,force,lower_fy,-0.0003161033382639289 +illusion_1.5L,sr,398,159.2,force,front_fx,0.0019000577740371227 +illusion_1.5L,sr,398,159.2,force,front_fy,1.6759453501435928e-05 +illusion_1.5L,sr,398,159.2,force,upper_fx,0.002249140525236726 +illusion_1.5L,sr,398,159.2,force,upper_fy,0.0003754564677365124 +illusion_1.5L,sr,398,159.2,force,lower_fx,0.0022092799190431833 +illusion_1.5L,sr,398,159.2,force,lower_fy,-0.00031882073380984366 +illusion_1.5L,sr,399,159.6,force,front_fx,0.0019006291404366493 +illusion_1.5L,sr,399,159.6,force,front_fy,1.644479743845295e-05 +illusion_1.5L,sr,399,159.6,force,upper_fx,0.002249856246635318 +illusion_1.5L,sr,399,159.6,force,upper_fy,0.0003718566440511495 +illusion_1.5L,sr,399,159.6,force,lower_fx,0.0022108261473476887 +illusion_1.5L,sr,399,159.6,force,lower_fy,-0.00032540824031457305 +illusion_1.5L,sr,0,0.0,alpha,front,0.14266170227978886 +illusion_1.5L,sr,0,0.0,alpha,upper,-0.10658694103971597 +illusion_1.5L,sr,0,0.0,alpha,lower,-0.10658694103971597 +illusion_1.5L,sr,1,0.4,alpha,front,0.07501603472150006 +illusion_1.5L,sr,1,0.4,alpha,upper,-0.053260922443758206 +illusion_1.5L,sr,1,0.4,alpha,lower,-0.053260922443758206 +illusion_1.5L,sr,2,0.8,alpha,front,0.004595853374333825 +illusion_1.5L,sr,2,0.8,alpha,upper,0.0024858757266248005 +illusion_1.5L,sr,2,0.8,alpha,lower,0.0024858757266248005 +illusion_1.5L,sr,3,1.2,alpha,front,-0.028187031443080574 +illusion_1.5L,sr,3,1.2,alpha,upper,0.029283561192107246 +illusion_1.5L,sr,3,1.2,alpha,lower,0.029283561192107246 +illusion_1.5L,sr,4,1.6,alpha,front,-0.03991352801809778 +illusion_1.5L,sr,4,1.6,alpha,upper,0.039567958821340954 +illusion_1.5L,sr,4,1.6,alpha,lower,0.039567958821340954 +illusion_1.5L,sr,5,2.0,alpha,front,-0.035744913273209916 +illusion_1.5L,sr,5,2.0,alpha,upper,0.03736167686742703 +illusion_1.5L,sr,5,2.0,alpha,lower,0.03736167686742703 +illusion_1.5L,sr,6,2.4,alpha,front,-0.010472222909088835 +illusion_1.5L,sr,6,2.4,alpha,upper,0.01964538917072295 +illusion_1.5L,sr,6,2.4,alpha,lower,0.01964538917072295 +illusion_1.5L,sr,7,2.8,alpha,front,0.028969462733821616 +illusion_1.5L,sr,7,2.8,alpha,upper,-0.00798019838287356 +illusion_1.5L,sr,7,2.8,alpha,lower,-0.00798019838287356 +illusion_1.5L,sr,8,3.2,alpha,front,0.05483170953917469 +illusion_1.5L,sr,8,3.2,alpha,upper,-0.025226617519694988 +illusion_1.5L,sr,8,3.2,alpha,lower,-0.025226617519694988 +illusion_1.5L,sr,9,3.6,alpha,front,0.062441411049944495 +illusion_1.5L,sr,9,3.6,alpha,upper,-0.02921964183252096 +illusion_1.5L,sr,9,3.6,alpha,lower,-0.02921964183252096 +illusion_1.5L,sr,10,4.0,alpha,front,0.05703804118536704 +illusion_1.5L,sr,10,4.0,alpha,upper,-0.02441457144088341 +illusion_1.5L,sr,10,4.0,alpha,lower,-0.02441457144088341 +illusion_1.5L,sr,11,4.4,alpha,front,0.04951460720895895 +illusion_1.5L,sr,11,4.4,alpha,upper,-0.01924125161177645 +illusion_1.5L,sr,11,4.4,alpha,lower,-0.01924125161177645 +illusion_1.5L,sr,12,4.8,alpha,front,0.03810753111720666 +illusion_1.5L,sr,12,4.8,alpha,upper,-0.012529758081816084 +illusion_1.5L,sr,12,4.8,alpha,lower,-0.012529758081816084 +illusion_1.5L,sr,13,5.2,alpha,front,0.023540190217483103 +illusion_1.5L,sr,13,5.2,alpha,upper,-0.004697671242348045 +illusion_1.5L,sr,13,5.2,alpha,lower,-0.004697671242348045 +illusion_1.5L,sr,14,5.6,alpha,front,0.008949037980885866 +illusion_1.5L,sr,14,5.6,alpha,upper,0.0022442893578380058 +illusion_1.5L,sr,14,5.6,alpha,lower,0.0022442893578380058 +illusion_1.5L,sr,15,6.0,alpha,front,-0.004174992285769327 +illusion_1.5L,sr,15,6.0,alpha,upper,0.007619391936644841 +illusion_1.5L,sr,15,6.0,alpha,lower,0.007619391936644841 +illusion_1.5L,sr,16,6.4,alpha,front,-0.015039062613191332 +illusion_1.5L,sr,16,6.4,alpha,upper,0.01125615416351976 +illusion_1.5L,sr,16,6.4,alpha,lower,0.01125615416351976 +illusion_1.5L,sr,17,6.8,alpha,front,-0.023749070230074963 +illusion_1.5L,sr,17,6.8,alpha,upper,0.01358076925116957 +illusion_1.5L,sr,17,6.8,alpha,lower,0.01358076925116957 +illusion_1.5L,sr,18,7.2,alpha,front,-0.03156916444487097 +illusion_1.5L,sr,18,7.2,alpha,upper,0.015782241987135598 +illusion_1.5L,sr,18,7.2,alpha,lower,0.015782241987135598 +illusion_1.5L,sr,19,7.6,alpha,front,-0.03762913093110848 +illusion_1.5L,sr,19,7.6,alpha,upper,0.017391547526992443 +illusion_1.5L,sr,19,7.6,alpha,lower,0.017391547526992443 +illusion_1.5L,sr,20,8.0,alpha,front,-0.042428232858790355 +illusion_1.5L,sr,20,8.0,alpha,upper,0.018899223758284345 +illusion_1.5L,sr,20,8.0,alpha,lower,0.018899223758284345 +illusion_1.5L,sr,21,8.4,alpha,front,-0.04142638945744384 +illusion_1.5L,sr,21,8.4,alpha,upper,0.017089520217865917 +illusion_1.5L,sr,21,8.4,alpha,lower,0.017089520217865917 +illusion_1.5L,sr,22,8.8,alpha,front,-0.0374778779739523 +illusion_1.5L,sr,22,8.8,alpha,upper,0.014221671581609863 +illusion_1.5L,sr,22,8.8,alpha,lower,0.014221671581609863 +illusion_1.5L,sr,23,9.2,alpha,front,-0.026487395854868562 +illusion_1.5L,sr,23,9.2,alpha,upper,0.007342517812929023 +illusion_1.5L,sr,23,9.2,alpha,lower,0.007342517812929023 +illusion_1.5L,sr,24,9.6,alpha,front,-0.01556046199107966 +illusion_1.5L,sr,24,9.6,alpha,upper,0.0015990471387839766 +illusion_1.5L,sr,24,9.6,alpha,lower,0.0015990471387839766 +illusion_1.5L,sr,25,10.0,alpha,front,-0.003829776299165727 +illusion_1.5L,sr,25,10.0,alpha,upper,-0.0039268714482774275 +illusion_1.5L,sr,25,10.0,alpha,lower,-0.0039268714482774275 +illusion_1.5L,sr,26,10.4,alpha,front,0.004380017602658798 +illusion_1.5L,sr,26,10.4,alpha,upper,-0.006435356813242997 +illusion_1.5L,sr,26,10.4,alpha,lower,-0.006435356813242997 +illusion_1.5L,sr,27,10.8,alpha,front,0.012223706574852382 +illusion_1.5L,sr,27,10.8,alpha,upper,-0.00865974507562029 +illusion_1.5L,sr,27,10.8,alpha,lower,-0.00865974507562029 +illusion_1.5L,sr,28,11.2,alpha,front,0.018947256631999136 +illusion_1.5L,sr,28,11.2,alpha,upper,-0.010387804015082852 +illusion_1.5L,sr,28,11.2,alpha,lower,-0.010387804015082852 +illusion_1.5L,sr,29,11.6,alpha,front,0.025098222513521284 +illusion_1.5L,sr,29,11.6,alpha,upper,-0.01226834726071317 +illusion_1.5L,sr,29,11.6,alpha,lower,-0.01226834726071317 +illusion_1.5L,sr,30,12.0,alpha,front,0.03002234168007363 +illusion_1.5L,sr,30,12.0,alpha,upper,-0.01397644991430004 +illusion_1.5L,sr,30,12.0,alpha,lower,-0.01397644991430004 +illusion_1.5L,sr,31,12.4,alpha,front,0.031416493830579484 +illusion_1.5L,sr,31,12.4,alpha,upper,-0.01390481145598693 +illusion_1.5L,sr,31,12.4,alpha,lower,-0.01390481145598693 +illusion_1.5L,sr,32,12.8,alpha,front,0.029276549709110866 +illusion_1.5L,sr,32,12.8,alpha,upper,-0.012117779953243507 +illusion_1.5L,sr,32,12.8,alpha,lower,-0.012117779953243507 +illusion_1.5L,sr,33,13.2,alpha,front,0.022549148610663067 +illusion_1.5L,sr,33,13.2,alpha,upper,-0.007861413942901976 +illusion_1.5L,sr,33,13.2,alpha,lower,-0.007861413942901976 +illusion_1.5L,sr,34,13.6,alpha,front,0.014007627941374652 +illusion_1.5L,sr,34,13.6,alpha,upper,-0.003115324365086256 +illusion_1.5L,sr,34,13.6,alpha,lower,-0.003115324365086256 +illusion_1.5L,sr,35,14.0,alpha,front,0.005060115861464182 +illusion_1.5L,sr,35,14.0,alpha,upper,0.0012718968279104154 +illusion_1.5L,sr,35,14.0,alpha,lower,0.0012718968279104154 +illusion_1.5L,sr,36,14.4,alpha,front,-0.002485238192542129 +illusion_1.5L,sr,36,14.4,alpha,upper,0.004256675142558879 +illusion_1.5L,sr,36,14.4,alpha,lower,0.004256675142558879 +illusion_1.5L,sr,37,14.8,alpha,front,-0.009931976359751939 +illusion_1.5L,sr,37,14.8,alpha,upper,0.007104293359363471 +illusion_1.5L,sr,37,14.8,alpha,lower,0.007104293359363471 +illusion_1.5L,sr,38,15.2,alpha,front,-0.015952056013451767 +illusion_1.5L,sr,38,15.2,alpha,upper,0.009092386515019573 +illusion_1.5L,sr,38,15.2,alpha,lower,0.009092386515019573 +illusion_1.5L,sr,39,15.6,alpha,front,-0.02150049852810114 +illusion_1.5L,sr,39,15.6,alpha,upper,0.011115826310035014 +illusion_1.5L,sr,39,15.6,alpha,lower,0.011115826310035014 +illusion_1.5L,sr,40,16.0,alpha,front,-0.025187536248827455 +illusion_1.5L,sr,40,16.0,alpha,upper,0.012282779723670853 +illusion_1.5L,sr,40,16.0,alpha,lower,0.012282779723670853 +illusion_1.5L,sr,41,16.4,alpha,front,-0.026035425026770934 +illusion_1.5L,sr,41,16.4,alpha,upper,0.011967516892463087 +illusion_1.5L,sr,41,16.4,alpha,lower,0.011967516892463087 +illusion_1.5L,sr,42,16.8,alpha,front,-0.02340265946773183 +illusion_1.5L,sr,42,16.8,alpha,upper,0.009771001147038327 +illusion_1.5L,sr,42,16.8,alpha,lower,0.009771001147038327 +illusion_1.5L,sr,43,17.2,alpha,front,-0.018207915413876286 +illusion_1.5L,sr,43,17.2,alpha,upper,0.006396796891998471 +illusion_1.5L,sr,43,17.2,alpha,lower,0.006396796891998471 +illusion_1.5L,sr,44,17.6,alpha,front,-0.012636622490472385 +illusion_1.5L,sr,44,17.6,alpha,upper,0.0034022313487601236 +illusion_1.5L,sr,44,17.6,alpha,lower,0.0034022313487601236 +illusion_1.5L,sr,45,18.0,alpha,front,-0.005994666338924037 +illusion_1.5L,sr,45,18.0,alpha,upper,0.00011795001196720362 +illusion_1.5L,sr,45,18.0,alpha,lower,0.00011795001196720362 +illusion_1.5L,sr,46,18.4,alpha,front,-6.331504174741931e-05 +illusion_1.5L,sr,46,18.4,alpha,upper,-0.002344249604069957 +illusion_1.5L,sr,46,18.4,alpha,lower,-0.002344249604069957 +illusion_1.5L,sr,47,18.8,alpha,front,0.005325089679630038 +illusion_1.5L,sr,47,18.8,alpha,upper,-0.004329279203754443 +illusion_1.5L,sr,47,18.8,alpha,lower,-0.004329279203754443 +illusion_1.5L,sr,48,19.2,alpha,front,0.010678860330198107 +illusion_1.5L,sr,48,19.2,alpha,upper,-0.006399030711805561 +illusion_1.5L,sr,48,19.2,alpha,lower,-0.006399030711805561 +illusion_1.5L,sr,49,19.6,alpha,front,0.014677025212976284 +illusion_1.5L,sr,49,19.6,alpha,upper,-0.0077242214418837074 +illusion_1.5L,sr,49,19.6,alpha,lower,-0.0077242214418837074 +illusion_1.5L,sr,50,20.0,alpha,front,0.018172078378196357 +illusion_1.5L,sr,50,20.0,alpha,upper,-0.009043052426451585 +illusion_1.5L,sr,50,20.0,alpha,lower,-0.009043052426451585 +illusion_1.5L,sr,51,20.4,alpha,front,0.018489055499382942 +illusion_1.5L,sr,51,20.4,alpha,upper,-0.008475732658397218 +illusion_1.5L,sr,51,20.4,alpha,lower,-0.008475732658397218 +illusion_1.5L,sr,52,20.8,alpha,front,0.017307163773579798 +illusion_1.5L,sr,52,20.8,alpha,upper,-0.0073261474842927915 +illusion_1.5L,sr,52,20.8,alpha,lower,-0.0073261474842927915 +illusion_1.5L,sr,53,21.2,alpha,front,0.013735569284603233 +illusion_1.5L,sr,53,21.2,alpha,upper,-0.0049669105527930385 +illusion_1.5L,sr,53,21.2,alpha,lower,-0.0049669105527930385 +illusion_1.5L,sr,54,21.6,alpha,front,0.010061419792369422 +illusion_1.5L,sr,54,21.6,alpha,upper,-0.0030383264904706303 +illusion_1.5L,sr,54,21.6,alpha,lower,-0.0030383264904706303 +illusion_1.5L,sr,55,22.0,alpha,front,0.005280011596395157 +illusion_1.5L,sr,55,22.0,alpha,upper,-0.0006989597442886505 +illusion_1.5L,sr,55,22.0,alpha,lower,-0.0006989597442886505 +illusion_1.5L,sr,56,22.4,alpha,front,0.0011482205596524755 +illusion_1.5L,sr,56,22.4,alpha,upper,0.0009062260026564752 +illusion_1.5L,sr,56,22.4,alpha,lower,0.0009062260026564752 +illusion_1.5L,sr,57,22.8,alpha,front,-0.003666679863959809 +illusion_1.5L,sr,57,22.8,alpha,upper,0.0029139740107842057 +illusion_1.5L,sr,57,22.8,alpha,lower,0.0029139740107842057 +illusion_1.5L,sr,58,23.2,alpha,front,-0.007326429193725438 +illusion_1.5L,sr,58,23.2,alpha,upper,0.00411498228284299 +illusion_1.5L,sr,58,23.2,alpha,lower,0.00411498228284299 +illusion_1.5L,sr,59,23.6,alpha,front,-0.011009346312854697 +illusion_1.5L,sr,59,23.6,alpha,upper,0.005501030720557451 +illusion_1.5L,sr,59,23.6,alpha,lower,0.005501030720557451 +illusion_1.5L,sr,60,24.0,alpha,front,-0.013120826010025122 +illusion_1.5L,sr,60,24.0,alpha,upper,0.005998802637537964 +illusion_1.5L,sr,60,24.0,alpha,lower,0.005998802637537964 +illusion_1.5L,sr,61,24.4,alpha,front,-0.014424311452349958 +illusion_1.5L,sr,61,24.4,alpha,upper,0.006259927758867315 +illusion_1.5L,sr,61,24.4,alpha,lower,0.006259927758867315 +illusion_1.5L,sr,62,24.8,alpha,front,-0.014106046101955831 +illusion_1.5L,sr,62,24.8,alpha,upper,0.005744234515941644 +illusion_1.5L,sr,62,24.8,alpha,lower,0.005744234515941644 +illusion_1.5L,sr,63,25.2,alpha,front,-0.011971405693369491 +illusion_1.5L,sr,63,25.2,alpha,upper,0.00433250598115157 +illusion_1.5L,sr,63,25.2,alpha,lower,0.00433250598115157 +illusion_1.5L,sr,64,25.6,alpha,front,-0.009230745951608513 +illusion_1.5L,sr,64,25.6,alpha,upper,0.0028953521604061713 +illusion_1.5L,sr,64,25.6,alpha,lower,0.0028953521604061713 +illusion_1.5L,sr,65,26.0,alpha,front,-0.0056096992741284865 +illusion_1.5L,sr,65,26.0,alpha,upper,0.0011570999515216826 +illusion_1.5L,sr,65,26.0,alpha,lower,0.0011570999515216826 +illusion_1.5L,sr,66,26.4,alpha,front,-0.0022677216025225114 +illusion_1.5L,sr,66,26.4,alpha,upper,-0.00013617423546362015 +illusion_1.5L,sr,66,26.4,alpha,lower,-0.00013617423546362015 +illusion_1.5L,sr,67,26.8,alpha,front,0.0011049829323072774 +illusion_1.5L,sr,67,26.8,alpha,upper,-0.0013366216077578307 +illusion_1.5L,sr,67,26.8,alpha,lower,-0.0013366216077578307 +illusion_1.5L,sr,68,27.2,alpha,front,0.004111187494791916 +illusion_1.5L,sr,68,27.2,alpha,upper,-0.002277744608931813 +illusion_1.5L,sr,68,27.2,alpha,lower,-0.002277744608931813 +illusion_1.5L,sr,69,27.6,alpha,front,0.006870417541152981 +illusion_1.5L,sr,69,27.6,alpha,upper,-0.0031608565097333285 +illusion_1.5L,sr,69,27.6,alpha,lower,-0.0031608565097333285 +illusion_1.5L,sr,70,28.0,alpha,front,0.009529054087877575 +illusion_1.5L,sr,70,28.0,alpha,upper,-0.0041875004523611176 +illusion_1.5L,sr,70,28.0,alpha,lower,-0.0041875004523611176 +illusion_1.5L,sr,71,28.4,alpha,front,0.010870892838141653 +illusion_1.5L,sr,71,28.4,alpha,upper,-0.004529948981386214 +illusion_1.5L,sr,71,28.4,alpha,lower,-0.004529948981386214 +illusion_1.5L,sr,72,28.8,alpha,front,0.011395293439750924 +illusion_1.5L,sr,72,28.8,alpha,upper,-0.0046119407620503275 +illusion_1.5L,sr,72,28.8,alpha,lower,-0.0046119407620503275 +illusion_1.5L,sr,73,29.2,alpha,front,0.010043368140658315 +illusion_1.5L,sr,73,29.2,alpha,upper,-0.003677056089246469 +illusion_1.5L,sr,73,29.2,alpha,lower,-0.003677056089246469 +illusion_1.5L,sr,74,29.6,alpha,front,0.008083830556475255 +illusion_1.5L,sr,74,29.6,alpha,upper,-0.0026564760607825297 +illusion_1.5L,sr,74,29.6,alpha,lower,-0.0026564760607825297 +illusion_1.5L,sr,75,30.0,alpha,front,0.006018021770367123 +illusion_1.5L,sr,75,30.0,alpha,upper,-0.0018681835145589328 +illusion_1.5L,sr,75,30.0,alpha,lower,-0.0018681835145589328 +illusion_1.5L,sr,76,30.4,alpha,front,0.003174698476357547 +illusion_1.5L,sr,76,30.4,alpha,upper,-0.0007290193786002423 +illusion_1.5L,sr,76,30.4,alpha,lower,-0.0007290193786002423 +illusion_1.5L,sr,77,30.8,alpha,front,0.0009607407784103655 +illusion_1.5L,sr,77,30.8,alpha,upper,-0.0001735109686259173 +illusion_1.5L,sr,77,30.8,alpha,lower,-0.0001735109686259173 +illusion_1.5L,sr,78,31.2,alpha,front,-0.0016763619768655046 +illusion_1.5L,sr,78,31.2,alpha,upper,0.0006809319186837038 +illusion_1.5L,sr,78,31.2,alpha,lower,0.0006809319186837038 +illusion_1.5L,sr,79,31.6,alpha,front,-0.003722340861977418 +illusion_1.5L,sr,79,31.6,alpha,upper,0.0011882455900604182 +illusion_1.5L,sr,79,31.6,alpha,lower,0.0011882455900604182 +illusion_1.5L,sr,80,32.0,alpha,front,-0.006568198536207673 +illusion_1.5L,sr,80,32.0,alpha,upper,0.0024549406024865807 +illusion_1.5L,sr,80,32.0,alpha,lower,0.0024549406024865807 +illusion_1.5L,sr,81,32.4,alpha,front,-0.008028983961092695 +illusion_1.5L,sr,81,32.4,alpha,upper,0.0029334022240647267 +illusion_1.5L,sr,81,32.4,alpha,lower,0.0029334022240647267 +illusion_1.5L,sr,82,32.8,alpha,front,-0.009557710106610391 +illusion_1.5L,sr,82,32.8,alpha,upper,0.0037405709051132816 +illusion_1.5L,sr,82,32.8,alpha,lower,0.0037405709051132816 +illusion_1.5L,sr,83,33.2,alpha,front,-0.009050633849596902 +illusion_1.5L,sr,83,33.2,alpha,upper,0.003352733073732641 +illusion_1.5L,sr,83,33.2,alpha,lower,0.003352733073732641 +illusion_1.5L,sr,84,33.6,alpha,front,-0.008562063495098797 +illusion_1.5L,sr,84,33.6,alpha,upper,0.003285143713008844 +illusion_1.5L,sr,84,33.6,alpha,lower,0.003285143713008844 +illusion_1.5L,sr,85,34.0,alpha,front,-0.006819905099027246 +illusion_1.5L,sr,85,34.0,alpha,upper,0.0025667661923984113 +illusion_1.5L,sr,85,34.0,alpha,lower,0.0025667661923984113 +illusion_1.5L,sr,86,34.4,alpha,front,-0.005150163297907656 +illusion_1.5L,sr,86,34.4,alpha,upper,0.002111436939654588 +illusion_1.5L,sr,86,34.4,alpha,lower,0.002111436939654588 +illusion_1.5L,sr,87,34.8,alpha,front,-0.002902249607637809 +illusion_1.5L,sr,87,34.8,alpha,upper,0.0013568385729984048 +illusion_1.5L,sr,87,34.8,alpha,lower,0.0013568385729984048 +illusion_1.5L,sr,88,35.2,alpha,front,-0.0006666446065356959 +illusion_1.5L,sr,88,35.2,alpha,upper,0.0006493288787361258 +illusion_1.5L,sr,88,35.2,alpha,lower,0.0006493288787361258 +illusion_1.5L,sr,89,35.6,alpha,front,0.0016225272516291814 +illusion_1.5L,sr,89,35.6,alpha,upper,-0.00014371206395131023 +illusion_1.5L,sr,89,35.6,alpha,lower,-0.00014371206395131023 +illusion_1.5L,sr,90,36.0,alpha,front,0.003813924571176248 +illusion_1.5L,sr,90,36.0,alpha,upper,-0.0009877214467981024 +illusion_1.5L,sr,90,36.0,alpha,lower,-0.0009877214467981024 +illusion_1.5L,sr,91,36.4,alpha,front,0.005572468671760533 +illusion_1.5L,sr,91,36.4,alpha,upper,-0.0016994425125173155 +illusion_1.5L,sr,91,36.4,alpha,lower,-0.0016994425125173155 +illusion_1.5L,sr,92,36.8,alpha,front,0.007019581665602362 +illusion_1.5L,sr,92,36.8,alpha,upper,-0.002418651304485077 +illusion_1.5L,sr,92,36.8,alpha,lower,-0.002418651304485077 +illusion_1.5L,sr,93,37.2,alpha,front,0.0076685076564093416 +illusion_1.5L,sr,93,37.2,alpha,upper,-0.002814390073000002 +illusion_1.5L,sr,93,37.2,alpha,lower,-0.002814390073000002 +illusion_1.5L,sr,94,37.6,alpha,front,0.007642996539454307 +illusion_1.5L,sr,94,37.6,alpha,upper,-0.0029826044683248717 +illusion_1.5L,sr,94,37.6,alpha,lower,-0.0029826044683248717 +illusion_1.5L,sr,95,38.0,alpha,front,0.006999764866973533 +illusion_1.5L,sr,95,38.0,alpha,upper,-0.0029429349190359597 +illusion_1.5L,sr,95,38.0,alpha,lower,-0.0029429349190359597 +illusion_1.5L,sr,96,38.4,alpha,front,0.005831934828152814 +illusion_1.5L,sr,96,38.4,alpha,upper,-0.002715472065076236 +illusion_1.5L,sr,96,38.4,alpha,lower,-0.002715472065076236 +illusion_1.5L,sr,97,38.8,alpha,front,0.00436319615569989 +illusion_1.5L,sr,97,38.8,alpha,upper,-0.002395256569928025 +illusion_1.5L,sr,97,38.8,alpha,lower,-0.002395256569928025 +illusion_1.5L,sr,98,39.2,alpha,front,0.002135795747956555 +illusion_1.5L,sr,98,39.2,alpha,upper,-0.0015708903633778332 +illusion_1.5L,sr,98,39.2,alpha,lower,-0.0015708903633778332 +illusion_1.5L,sr,99,39.6,alpha,front,-1.5138123464136092e-05 +illusion_1.5L,sr,99,39.6,alpha,upper,-0.0007867226839641406 +illusion_1.5L,sr,99,39.6,alpha,lower,-0.0007867226839641406 +illusion_1.5L,sr,100,40.0,alpha,front,-0.0026937848691287423 +illusion_1.5L,sr,100,40.0,alpha,upper,0.0004672690510801741 +illusion_1.5L,sr,100,40.0,alpha,lower,0.0004672690510801741 +illusion_1.5L,sr,101,40.4,alpha,front,-0.004522908952159198 +illusion_1.5L,sr,101,40.4,alpha,upper,0.001233105178588427 +illusion_1.5L,sr,101,40.4,alpha,lower,0.001233105178588427 +illusion_1.5L,sr,102,40.8,alpha,front,-0.006220308379295068 +illusion_1.5L,sr,102,40.8,alpha,upper,0.002091095044206185 +illusion_1.5L,sr,102,40.8,alpha,lower,0.002091095044206185 +illusion_1.5L,sr,103,41.2,alpha,front,-0.006782879501506585 +illusion_1.5L,sr,103,41.2,alpha,upper,0.0023397144373095424 +illusion_1.5L,sr,103,41.2,alpha,lower,0.0023397144373095424 +illusion_1.5L,sr,104,41.6,alpha,front,-0.0074951732852316655 +illusion_1.5L,sr,104,41.6,alpha,upper,0.002945705339999386 +illusion_1.5L,sr,104,41.6,alpha,lower,0.002945705339999386 +illusion_1.5L,sr,105,42.0,alpha,front,-0.00670986896737525 +illusion_1.5L,sr,105,42.0,alpha,upper,0.002680049737115924 +illusion_1.5L,sr,105,42.0,alpha,lower,0.002680049737115924 +illusion_1.5L,sr,106,42.4,alpha,front,-0.005271856892085477 +illusion_1.5L,sr,106,42.4,alpha,upper,0.0021394669450593706 +illusion_1.5L,sr,106,42.4,alpha,lower,0.0021394669450593706 +illusion_1.5L,sr,107,42.8,alpha,front,-0.003316406009602861 +illusion_1.5L,sr,107,42.8,alpha,upper,0.001373630635520982 +illusion_1.5L,sr,107,42.8,alpha,lower,0.001373630635520982 +illusion_1.5L,sr,108,43.2,alpha,front,-0.0013506738144720264 +illusion_1.5L,sr,108,43.2,alpha,upper,0.0006977192282991772 +illusion_1.5L,sr,108,43.2,alpha,lower,0.0006977192282991772 +illusion_1.5L,sr,109,43.6,alpha,front,0.00010296404856377506 +illusion_1.5L,sr,109,43.6,alpha,upper,0.0004166193668507616 +illusion_1.5L,sr,109,43.6,alpha,lower,0.0004166193668507616 +illusion_1.5L,sr,110,44.0,alpha,front,0.002454823282680728 +illusion_1.5L,sr,110,44.0,alpha,upper,-0.0005785835403199005 +illusion_1.5L,sr,110,44.0,alpha,lower,-0.0005785835403199005 +illusion_1.5L,sr,111,44.4,alpha,front,0.0033450786402671397 +illusion_1.5L,sr,111,44.4,alpha,upper,-0.0006162328568288557 +illusion_1.5L,sr,111,44.4,alpha,lower,-0.0006162328568288557 +illusion_1.5L,sr,112,44.8,alpha,front,0.00570124959295501 +illusion_1.5L,sr,112,44.8,alpha,upper,-0.0019069363255558441 +illusion_1.5L,sr,112,44.8,alpha,lower,-0.0019069363255558441 +illusion_1.5L,sr,113,45.2,alpha,front,0.005429188200524321 +illusion_1.5L,sr,113,45.2,alpha,upper,-0.0014689963323822192 +illusion_1.5L,sr,113,45.2,alpha,lower,-0.0014689963323822192 +illusion_1.5L,sr,114,45.6,alpha,front,0.006481757935572201 +illusion_1.5L,sr,114,45.6,alpha,upper,-0.0022415231364929337 +illusion_1.5L,sr,114,45.6,alpha,lower,-0.0022415231364929337 +illusion_1.5L,sr,115,46.0,alpha,front,0.004765720377216585 +illusion_1.5L,sr,115,46.0,alpha,upper,-0.001206967873529998 +illusion_1.5L,sr,115,46.0,alpha,lower,-0.001206967873529998 +illusion_1.5L,sr,116,46.4,alpha,front,0.004624565671504589 +illusion_1.5L,sr,116,46.4,alpha,upper,-0.0015481082025614497 +illusion_1.5L,sr,116,46.4,alpha,lower,-0.0015481082025614497 +illusion_1.5L,sr,117,46.8,alpha,front,0.0026961216130112903 +illusion_1.5L,sr,117,46.8,alpha,upper,-0.0007435452852289585 +illusion_1.5L,sr,117,46.8,alpha,lower,-0.0007435452852289585 +illusion_1.5L,sr,118,47.2,alpha,front,0.0020640465714437733 +illusion_1.5L,sr,118,47.2,alpha,upper,-0.0010009787748752044 +illusion_1.5L,sr,118,47.2,alpha,lower,-0.0010009787748752044 +illusion_1.5L,sr,119,47.6,alpha,front,0.0005270577766984964 +illusion_1.5L,sr,119,47.6,alpha,upper,-0.0006269757851339913 +illusion_1.5L,sr,119,47.6,alpha,lower,-0.0006269757851339913 +illusion_1.5L,sr,120,48.0,alpha,front,-0.0006651203317898993 +illusion_1.5L,sr,120,48.0,alpha,upper,-0.00046683987783695084 +illusion_1.5L,sr,120,48.0,alpha,lower,-0.00046683987783695084 +illusion_1.5L,sr,121,48.4,alpha,front,-0.0025776124646247726 +illusion_1.5L,sr,121,48.4,alpha,upper,0.00032146392807184607 +illusion_1.5L,sr,121,48.4,alpha,lower,0.00032146392807184607 +illusion_1.5L,sr,122,48.8,alpha,front,-0.0039667893900149215 +illusion_1.5L,sr,122,48.8,alpha,upper,0.0008674220137374067 +illusion_1.5L,sr,122,48.8,alpha,lower,0.0008674220137374067 +illusion_1.5L,sr,123,49.2,alpha,front,-0.004794426557693417 +illusion_1.5L,sr,123,49.2,alpha,upper,0.0011802315412175989 +illusion_1.5L,sr,123,49.2,alpha,lower,0.0011802315412175989 +illusion_1.5L,sr,124,49.6,alpha,front,-0.005219106374922698 +illusion_1.5L,sr,124,49.6,alpha,upper,0.0014057539658241351 +illusion_1.5L,sr,124,49.6,alpha,lower,0.0014057539658241351 +illusion_1.5L,sr,125,50.0,alpha,front,-0.004473600828408468 +illusion_1.5L,sr,125,50.0,alpha,upper,0.0009886034450530858 +illusion_1.5L,sr,125,50.0,alpha,lower,0.0009886034450530858 +illusion_1.5L,sr,126,50.4,alpha,front,-0.004221345718513292 +illusion_1.5L,sr,126,50.4,alpha,upper,0.0011494534188649201 +illusion_1.5L,sr,126,50.4,alpha,lower,0.0011494534188649201 +illusion_1.5L,sr,127,50.8,alpha,front,-0.003005958703419142 +illusion_1.5L,sr,127,50.8,alpha,upper,0.0007798064229701493 +illusion_1.5L,sr,127,50.8,alpha,lower,0.0007798064229701493 +illusion_1.5L,sr,128,51.2,alpha,front,-0.0022578815562690306 +illusion_1.5L,sr,128,51.2,alpha,upper,0.0008809078754821401 +illusion_1.5L,sr,128,51.2,alpha,lower,0.0008809078754821401 +illusion_1.5L,sr,129,51.6,alpha,front,-0.0011489370937329928 +illusion_1.5L,sr,129,51.6,alpha,upper,0.0007775181207680626 +illusion_1.5L,sr,129,51.6,alpha,lower,0.0007775181207680626 +illusion_1.5L,sr,130,52.0,alpha,front,-6.340972677759335e-05 +illusion_1.5L,sr,130,52.0,alpha,upper,0.0006820459426394639 +illusion_1.5L,sr,130,52.0,alpha,lower,0.0006820459426394639 +illusion_1.5L,sr,131,52.4,alpha,front,0.0015303409671732493 +illusion_1.5L,sr,131,52.4,alpha,upper,0.00014189638113640962 +illusion_1.5L,sr,131,52.4,alpha,lower,0.00014189638113640962 +illusion_1.5L,sr,132,52.8,alpha,front,0.002995667489185113 +illusion_1.5L,sr,132,52.8,alpha,upper,-0.000419937223638707 +illusion_1.5L,sr,132,52.8,alpha,lower,-0.000419937223638707 +illusion_1.5L,sr,133,53.2,alpha,front,0.003908254387598169 +illusion_1.5L,sr,133,53.2,alpha,upper,-0.0007315925817965932 +illusion_1.5L,sr,133,53.2,alpha,lower,-0.0007315925817965932 +illusion_1.5L,sr,134,53.6,alpha,front,0.004737030054438464 +illusion_1.5L,sr,134,53.6,alpha,upper,-0.0011696959442788202 +illusion_1.5L,sr,134,53.6,alpha,lower,-0.0011696959442788202 +illusion_1.5L,sr,135,54.0,alpha,front,0.004311020084197897 +illusion_1.5L,sr,135,54.0,alpha,upper,-0.0008884931651629846 +illusion_1.5L,sr,135,54.0,alpha,lower,-0.0008884931651629846 +illusion_1.5L,sr,136,54.4,alpha,front,0.004239232682534816 +illusion_1.5L,sr,136,54.4,alpha,upper,-0.0010783890134833697 +illusion_1.5L,sr,136,54.4,alpha,lower,-0.0010783890134833697 +illusion_1.5L,sr,137,54.8,alpha,front,0.0031573482708762493 +illusion_1.5L,sr,137,54.8,alpha,upper,-0.0007109416630918242 +illusion_1.5L,sr,137,54.8,alpha,lower,-0.0007109416630918242 +illusion_1.5L,sr,138,55.2,alpha,front,0.0027902707273461426 +illusion_1.5L,sr,138,55.2,alpha,upper,-0.0010173641727975573 +illusion_1.5L,sr,138,55.2,alpha,lower,-0.0010173641727975573 +illusion_1.5L,sr,139,55.6,alpha,front,0.0017152172943918562 +illusion_1.5L,sr,139,55.6,alpha,upper,-0.0008868168379015124 +illusion_1.5L,sr,139,55.6,alpha,lower,-0.0008868168379015124 +illusion_1.5L,sr,140,56.0,alpha,front,0.0008451022871108224 +illusion_1.5L,sr,140,56.0,alpha,upper,-0.0009306387817161477 +illusion_1.5L,sr,140,56.0,alpha,lower,-0.0009306387817161477 +illusion_1.5L,sr,141,56.4,alpha,front,-0.000612501894486063 +illusion_1.5L,sr,141,56.4,alpha,upper,-0.0004999602375294898 +illusion_1.5L,sr,141,56.4,alpha,lower,-0.0004999602375294898 +illusion_1.5L,sr,142,56.8,alpha,front,-0.002226650146338948 +illusion_1.5L,sr,142,56.8,alpha,upper,0.00013353742216708556 +illusion_1.5L,sr,142,56.8,alpha,lower,0.00013353742216708556 +illusion_1.5L,sr,143,57.2,alpha,front,-0.002910684991537252 +illusion_1.5L,sr,143,57.2,alpha,upper,0.00021432240673767422 +illusion_1.5L,sr,143,57.2,alpha,lower,0.00021432240673767422 +illusion_1.5L,sr,144,57.6,alpha,front,-0.004354655369613068 +illusion_1.5L,sr,144,57.6,alpha,upper,0.0010220051825709543 +illusion_1.5L,sr,144,57.6,alpha,lower,0.0010220051825709543 +illusion_1.5L,sr,145,58.0,alpha,front,-0.0036488195474567785 +illusion_1.5L,sr,145,58.0,alpha,upper,0.0004376709225975134 +illusion_1.5L,sr,145,58.0,alpha,lower,0.0004376709225975134 +illusion_1.5L,sr,146,58.4,alpha,front,-0.0044131891614380345 +illusion_1.5L,sr,146,58.4,alpha,upper,0.0011409684180546213 +illusion_1.5L,sr,146,58.4,alpha,lower,0.0011409684180546213 +illusion_1.5L,sr,147,58.8,alpha,front,-0.0028413598931150003 +illusion_1.5L,sr,147,58.8,alpha,upper,0.0003163423638666285 +illusion_1.5L,sr,147,58.8,alpha,lower,0.0003163423638666285 +illusion_1.5L,sr,148,59.2,alpha,front,-0.003223112875373982 +illusion_1.5L,sr,148,59.2,alpha,upper,0.0010946531948139195 +illusion_1.5L,sr,148,59.2,alpha,lower,0.0010946531948139195 +illusion_1.5L,sr,149,59.6,alpha,front,-0.0017219839912506112 +illusion_1.5L,sr,149,59.6,alpha,upper,0.0005970062597309457 +illusion_1.5L,sr,149,59.6,alpha,lower,0.0005970062597309457 +illusion_1.5L,sr,150,60.0,alpha,front,-0.0016298451167218752 +illusion_1.5L,sr,150,60.0,alpha,upper,0.0011878833865338226 +illusion_1.5L,sr,150,60.0,alpha,lower,0.0011878833865338226 +illusion_1.5L,sr,151,60.4,alpha,front,0.00027476503569453734 +illusion_1.5L,sr,151,60.4,alpha,upper,0.00043229584764552237 +illusion_1.5L,sr,151,60.4,alpha,lower,0.00043229584764552237 +illusion_1.5L,sr,152,60.8,alpha,front,0.0012678757806395512 +illusion_1.5L,sr,152,60.8,alpha,upper,0.00028687523266478915 +illusion_1.5L,sr,152,60.8,alpha,lower,0.00028687523266478915 +illusion_1.5L,sr,153,61.2,alpha,front,0.002427758515370207 +illusion_1.5L,sr,153,61.2,alpha,upper,-8.868489534247584e-05 +illusion_1.5L,sr,153,61.2,alpha,lower,-8.868489534247584e-05 +illusion_1.5L,sr,154,61.6,alpha,front,0.0034969398152952524 +illusion_1.5L,sr,154,61.6,alpha,upper,-0.0005451277465568401 +illusion_1.5L,sr,154,61.6,alpha,lower,-0.0005451277465568401 +illusion_1.5L,sr,155,62.0,alpha,front,0.003456662408442994 +illusion_1.5L,sr,155,62.0,alpha,upper,-0.00035923495533889127 +illusion_1.5L,sr,155,62.0,alpha,lower,-0.00035923495533889127 +illusion_1.5L,sr,156,62.4,alpha,front,0.003937031032339361 +illusion_1.5L,sr,156,62.4,alpha,upper,-0.0007540733110287107 +illusion_1.5L,sr,156,62.4,alpha,lower,-0.0007540733110287107 +illusion_1.5L,sr,157,62.8,alpha,front,0.0030159476532294616 +illusion_1.5L,sr,157,62.8,alpha,upper,-0.0003113486094454762 +illusion_1.5L,sr,157,62.8,alpha,lower,-0.0003113486094454762 +illusion_1.5L,sr,158,63.2,alpha,front,0.0031215008065072596 +illusion_1.5L,sr,158,63.2,alpha,upper,-0.0008021135014522097 +illusion_1.5L,sr,158,63.2,alpha,lower,-0.0008021135014522097 +illusion_1.5L,sr,159,63.6,alpha,front,0.00212242135882066 +illusion_1.5L,sr,159,63.6,alpha,upper,-0.0006114348873174913 +illusion_1.5L,sr,159,63.6,alpha,lower,-0.0006114348873174913 +illusion_1.5L,sr,160,64.0,alpha,front,0.0018582865349155578 +illusion_1.5L,sr,160,64.0,alpha,upper,-0.001040775571144821 +illusion_1.5L,sr,160,64.0,alpha,lower,-0.001040775571144821 +illusion_1.5L,sr,161,64.4,alpha,front,0.000570418060804885 +illusion_1.5L,sr,161,64.4,alpha,upper,-0.0007329817754096824 +illusion_1.5L,sr,161,64.4,alpha,lower,-0.0007329817754096824 +illusion_1.5L,sr,162,64.8,alpha,front,-0.0007521710010746745 +illusion_1.5L,sr,162,64.8,alpha,upper,-0.00036606490589432064 +illusion_1.5L,sr,162,64.8,alpha,lower,-0.00036606490589432064 +illusion_1.5L,sr,163,65.2,alpha,front,-0.0015124184945218208 +illusion_1.5L,sr,163,65.2,alpha,upper,-0.00033161738105690064 +illusion_1.5L,sr,163,65.2,alpha,lower,-0.00033161738105690064 +illusion_1.5L,sr,164,65.6,alpha,front,-0.0029620710614554 +illusion_1.5L,sr,164,65.6,alpha,upper,0.00033559302057968934 +illusion_1.5L,sr,164,65.6,alpha,lower,0.00033559302057968934 +illusion_1.5L,sr,165,66.0,alpha,front,-0.0028041768166824285 +illusion_1.5L,sr,165,66.0,alpha,upper,-2.3431644950257235e-05 +illusion_1.5L,sr,165,66.0,alpha,lower,-2.3431644950257235e-05 +illusion_1.5L,sr,166,66.4,alpha,front,-0.003703784309128766 +illusion_1.5L,sr,166,66.4,alpha,upper,0.0005814766646309276 +illusion_1.5L,sr,166,66.4,alpha,lower,0.0005814766646309276 +illusion_1.5L,sr,167,66.8,alpha,front,-0.0027532437489737327 +illusion_1.5L,sr,167,66.8,alpha,upper,1.568871547484238e-05 +illusion_1.5L,sr,167,66.8,alpha,lower,1.568871547484238e-05 +illusion_1.5L,sr,168,67.2,alpha,front,-0.0031448976254080697 +illusion_1.5L,sr,168,67.2,alpha,upper,0.0006252700484210595 +illusion_1.5L,sr,168,67.2,alpha,lower,0.0006252700484210595 +illusion_1.5L,sr,169,67.6,alpha,front,-0.0021861777782023507 +illusion_1.5L,sr,169,67.6,alpha,upper,0.0003912791910172815 +illusion_1.5L,sr,169,67.6,alpha,lower,0.0003912791910172815 +illusion_1.5L,sr,170,68.0,alpha,front,-0.0021600955876036835 +illusion_1.5L,sr,170,68.0,alpha,upper,0.000950368578955363 +illusion_1.5L,sr,170,68.0,alpha,lower,0.000950368578955363 +illusion_1.5L,sr,171,68.4,alpha,front,-0.0011150158807737313 +illusion_1.5L,sr,171,68.4,alpha,upper,0.000803415435731699 +illusion_1.5L,sr,171,68.4,alpha,lower,0.000803415435731699 +illusion_1.5L,sr,172,68.8,alpha,front,0.00017204458051951754 +illusion_1.5L,sr,172,68.8,alpha,upper,0.00047301714150374194 +illusion_1.5L,sr,172,68.8,alpha,lower,0.00047301714150374194 +illusion_1.5L,sr,173,69.2,alpha,front,0.0008081645092223865 +illusion_1.5L,sr,173,69.2,alpha,upper,0.0005669921979950358 +illusion_1.5L,sr,173,69.2,alpha,lower,0.0005669921979950358 +illusion_1.5L,sr,174,69.6,alpha,front,0.0024114761224352174 +illusion_1.5L,sr,174,69.6,alpha,upper,-0.00015230555551882727 +illusion_1.5L,sr,174,69.6,alpha,lower,-0.00015230555551882727 +illusion_1.5L,sr,175,70.0,alpha,front,0.002292750695180326 +illusion_1.5L,sr,175,70.0,alpha,upper,0.00025946463413419746 +illusion_1.5L,sr,175,70.0,alpha,lower,0.00025946463413419746 +illusion_1.5L,sr,176,70.4,alpha,front,0.0035006574451804107 +illusion_1.5L,sr,176,70.4,alpha,upper,-0.00047627287738512616 +illusion_1.5L,sr,176,70.4,alpha,lower,-0.00047627287738512616 +illusion_1.5L,sr,177,70.8,alpha,front,0.0025492147238509386 +illusion_1.5L,sr,177,70.8,alpha,upper,0.00019356654750226493 +illusion_1.5L,sr,177,70.8,alpha,lower,0.00019356654750226493 +illusion_1.5L,sr,178,71.2,alpha,front,0.003274695888825223 +illusion_1.5L,sr,178,71.2,alpha,upper,-0.0005616277815227097 +illusion_1.5L,sr,178,71.2,alpha,lower,-0.0005616277815227097 +illusion_1.5L,sr,179,71.6,alpha,front,0.0021786112869459223 +illusion_1.5L,sr,179,71.6,alpha,upper,-0.00014194388310145856 +illusion_1.5L,sr,179,71.6,alpha,lower,-0.00014194388310145856 +illusion_1.5L,sr,180,72.0,alpha,front,0.0024650542835797044 +illusion_1.5L,sr,180,72.0,alpha,upper,-0.0008707879704644099 +illusion_1.5L,sr,180,72.0,alpha,lower,-0.0008707879704644099 +illusion_1.5L,sr,181,72.4,alpha,front,0.0014488437735307967 +illusion_1.5L,sr,181,72.4,alpha,upper,-0.0007161855193753655 +illusion_1.5L,sr,181,72.4,alpha,lower,-0.0007161855193753655 +illusion_1.5L,sr,182,72.8,alpha,front,0.0006072568884099225 +illusion_1.5L,sr,182,72.8,alpha,upper,-0.0007114813389905443 +illusion_1.5L,sr,182,72.8,alpha,lower,-0.0007114813389905443 +illusion_1.5L,sr,183,73.2,alpha,front,-0.00040823008818843305 +illusion_1.5L,sr,183,73.2,alpha,upper,-0.0005522128712506895 +illusion_1.5L,sr,183,73.2,alpha,lower,-0.0005522128712506895 +illusion_1.5L,sr,184,73.6,alpha,front,-0.0015678819004519252 +illusion_1.5L,sr,184,73.6,alpha,upper,-0.00021138333444347884 +illusion_1.5L,sr,184,73.6,alpha,lower,-0.00021138333444347884 +illusion_1.5L,sr,185,74.0,alpha,front,-0.001996858956902072 +illusion_1.5L,sr,185,74.0,alpha,upper,-0.0002936945360943813 +illusion_1.5L,sr,185,74.0,alpha,lower,-0.0002936945360943813 +illusion_1.5L,sr,186,74.4,alpha,front,-0.002916181409782205 +illusion_1.5L,sr,186,74.4,alpha,upper,0.0001376189587273119 +illusion_1.5L,sr,186,74.4,alpha,lower,0.0001376189587273119 +illusion_1.5L,sr,187,74.8,alpha,front,-0.0025797174307079507 +illusion_1.5L,sr,187,74.8,alpha,upper,-0.00018155148621528186 +illusion_1.5L,sr,187,74.8,alpha,lower,-0.00018155148621528186 +illusion_1.5L,sr,188,75.2,alpha,front,-0.0029432406850354587 +illusion_1.5L,sr,188,75.2,alpha,upper,0.00020292818108633146 +illusion_1.5L,sr,188,75.2,alpha,lower,0.00020292818108633146 +illusion_1.5L,sr,189,75.6,alpha,front,-0.002383275944499212 +illusion_1.5L,sr,189,75.6,alpha,upper,8.423252127922123e-05 +illusion_1.5L,sr,189,75.6,alpha,lower,8.423252127922123e-05 +illusion_1.5L,sr,190,76.0,alpha,front,-0.0023467572818627325 +illusion_1.5L,sr,190,76.0,alpha,upper,0.0005024918859549803 +illusion_1.5L,sr,190,76.0,alpha,lower,0.0005024918859549803 +illusion_1.5L,sr,191,76.4,alpha,front,-0.0019172184948576983 +illusion_1.5L,sr,191,76.4,alpha,upper,0.0007357207314095636 +illusion_1.5L,sr,191,76.4,alpha,lower,0.0007357207314095636 +illusion_1.5L,sr,192,76.8,alpha,front,-0.0009975275025899972 +illusion_1.5L,sr,192,76.8,alpha,upper,0.0006583739063564841 +illusion_1.5L,sr,192,76.8,alpha,lower,0.0006583739063564841 +illusion_1.5L,sr,193,77.2,alpha,front,-0.00022691468809995195 +illusion_1.5L,sr,193,77.2,alpha,upper,0.00069172224905032 +illusion_1.5L,sr,193,77.2,alpha,lower,0.00069172224905032 +illusion_1.5L,sr,194,77.6,alpha,front,0.0010758285296597232 +illusion_1.5L,sr,194,77.6,alpha,upper,0.0002854916323790351 +illusion_1.5L,sr,194,77.6,alpha,lower,0.0002854916323790351 +illusion_1.5L,sr,195,78.0,alpha,front,0.0014212703698053518 +illusion_1.5L,sr,195,78.0,alpha,upper,0.0004929375418890811 +illusion_1.5L,sr,195,78.0,alpha,lower,0.0004929375418890811 +illusion_1.5L,sr,196,78.4,alpha,front,0.0026225153281777963 +illusion_1.5L,sr,196,78.4,alpha,upper,-6.162956561875724e-05 +illusion_1.5L,sr,196,78.4,alpha,lower,-6.162956561875724e-05 +illusion_1.5L,sr,197,78.8,alpha,front,0.0022838451226730727 +illusion_1.5L,sr,197,78.8,alpha,upper,0.000358412240984745 +illusion_1.5L,sr,197,78.8,alpha,lower,0.000358412240984745 +illusion_1.5L,sr,198,79.2,alpha,front,0.002963944924943951 +illusion_1.5L,sr,198,79.2,alpha,upper,-0.00015408518351360187 +illusion_1.5L,sr,198,79.2,alpha,lower,-0.00015408518351360187 +illusion_1.5L,sr,199,79.6,alpha,front,0.002266317523253361 +illusion_1.5L,sr,199,79.6,alpha,upper,0.0001671621768774209 +illusion_1.5L,sr,199,79.6,alpha,lower,0.0001671621768774209 +illusion_1.5L,sr,200,80.0,alpha,front,0.0025377418569111007 +illusion_1.5L,sr,200,80.0,alpha,upper,-0.00039292894389143795 +illusion_1.5L,sr,200,80.0,alpha,lower,-0.00039292894389143795 +illusion_1.5L,sr,201,80.4,alpha,front,0.002004948012086453 +illusion_1.5L,sr,201,80.4,alpha,upper,-0.0004892095499097852 +illusion_1.5L,sr,201,80.4,alpha,lower,-0.0004892095499097852 +illusion_1.5L,sr,202,80.8,alpha,front,0.0015669718202739411 +illusion_1.5L,sr,202,80.8,alpha,upper,-0.0007369427171639428 +illusion_1.5L,sr,202,80.8,alpha,lower,-0.0007369427171639428 +illusion_1.5L,sr,203,81.2,alpha,front,0.0006712774590307146 +illusion_1.5L,sr,203,81.2,alpha,upper,-0.0006756652542334925 +illusion_1.5L,sr,203,81.2,alpha,lower,-0.0006756652542334925 +illusion_1.5L,sr,204,81.6,alpha,front,-0.0004569427892068753 +illusion_1.5L,sr,204,81.6,alpha,upper,-0.00042470981645523036 +illusion_1.5L,sr,204,81.6,alpha,lower,-0.00042470981645523036 +illusion_1.5L,sr,205,82.0,alpha,front,-0.0009050433687910648 +illusion_1.5L,sr,205,82.0,alpha,upper,-0.0006087429112805846 +illusion_1.5L,sr,205,82.0,alpha,lower,-0.0006087429112805846 +illusion_1.5L,sr,206,82.4,alpha,front,-0.0021950525266766635 +illusion_1.5L,sr,206,82.4,alpha,upper,-6.421579513029782e-05 +illusion_1.5L,sr,206,82.4,alpha,lower,-6.421579513029782e-05 +illusion_1.5L,sr,207,82.8,alpha,front,-0.001954649114604204 +illusion_1.5L,sr,207,82.8,alpha,upper,-0.000504969790513881 +illusion_1.5L,sr,207,82.8,alpha,lower,-0.000504969790513881 +illusion_1.5L,sr,208,83.2,alpha,front,-0.0028205336734078365 +illusion_1.5L,sr,208,83.2,alpha,upper,4.0293239673395986e-05 +illusion_1.5L,sr,208,83.2,alpha,lower,4.0293239673395986e-05 +illusion_1.5L,sr,209,83.6,alpha,front,-0.00214447874947081 +illusion_1.5L,sr,209,83.6,alpha,upper,-0.0003697106959782148 +illusion_1.5L,sr,209,83.6,alpha,lower,-0.0003697106959782148 +illusion_1.5L,sr,210,84.0,alpha,front,-0.0025719166852282115 +illusion_1.5L,sr,210,84.0,alpha,upper,0.00020996887617411727 +illusion_1.5L,sr,210,84.0,alpha,lower,0.00020996887617411727 +illusion_1.5L,sr,211,84.4,alpha,front,-0.001987442756606915 +illusion_1.5L,sr,211,84.4,alpha,upper,0.00019371064675893776 +illusion_1.5L,sr,211,84.4,alpha,lower,0.00019371064675893776 +illusion_1.5L,sr,212,84.8,alpha,front,-0.0019377399062769345 +illusion_1.5L,sr,212,84.8,alpha,upper,0.0006809616435234037 +illusion_1.5L,sr,212,84.8,alpha,lower,0.0006809616435234037 +illusion_1.5L,sr,213,85.2,alpha,front,-0.0011405803665477856 +illusion_1.5L,sr,213,85.2,alpha,upper,0.0006755128354810629 +illusion_1.5L,sr,213,85.2,alpha,lower,0.0006755128354810629 +illusion_1.5L,sr,214,85.6,alpha,front,-8.155196740721772e-05 +illusion_1.5L,sr,214,85.6,alpha,upper,0.0004859584063454259 +illusion_1.5L,sr,214,85.6,alpha,lower,0.0004859584063454259 +illusion_1.5L,sr,215,86.0,alpha,front,0.00046109947383506106 +illusion_1.5L,sr,215,86.0,alpha,upper,0.0006394624332109675 +illusion_1.5L,sr,215,86.0,alpha,lower,0.0006394624332109675 +illusion_1.5L,sr,216,86.4,alpha,front,0.00163860502167627 +illusion_1.5L,sr,216,86.4,alpha,upper,0.0002408301157194974 +illusion_1.5L,sr,216,86.4,alpha,lower,0.0002408301157194974 +illusion_1.5L,sr,217,86.8,alpha,front,0.0017743373832984424 +illusion_1.5L,sr,217,86.8,alpha,upper,0.0004891986517565443 +illusion_1.5L,sr,217,86.8,alpha,lower,0.0004891986517565443 +illusion_1.5L,sr,218,87.2,alpha,front,0.0025070021540505236 +illusion_1.5L,sr,218,87.2,alpha,upper,0.00014234706082053364 +illusion_1.5L,sr,218,87.2,alpha,lower,0.00014234706082053364 +illusion_1.5L,sr,219,87.6,alpha,front,0.0021799265972572007 +illusion_1.5L,sr,219,87.6,alpha,upper,0.0004027573719329429 +illusion_1.5L,sr,219,87.6,alpha,lower,0.0004027573719329429 +illusion_1.5L,sr,220,88.0,alpha,front,0.0024247464554711037 +illusion_1.5L,sr,220,88.0,alpha,upper,5.974454730344261e-05 +illusion_1.5L,sr,220,88.0,alpha,lower,5.974454730344261e-05 +illusion_1.5L,sr,221,88.4,alpha,front,0.002144759954758907 +illusion_1.5L,sr,221,88.4,alpha,upper,-6.134056578770836e-05 +illusion_1.5L,sr,221,88.4,alpha,lower,-6.134056578770836e-05 +illusion_1.5L,sr,222,88.8,alpha,front,0.0020120249964135743 +illusion_1.5L,sr,222,88.8,alpha,upper,-0.00042464695156214406 +illusion_1.5L,sr,222,88.8,alpha,lower,-0.00042464695156214406 +illusion_1.5L,sr,223,89.2,alpha,front,0.0017079887470074304 +illusion_1.5L,sr,223,89.2,alpha,upper,-0.0007486224355423106 +illusion_1.5L,sr,223,89.2,alpha,lower,-0.0007486224355423106 +illusion_1.5L,sr,224,89.6,alpha,front,0.000492845875153296 +illusion_1.5L,sr,224,89.6,alpha,upper,-0.00043883773195756143 +illusion_1.5L,sr,224,89.6,alpha,lower,-0.00043883773195756143 +illusion_1.5L,sr,225,90.0,alpha,front,0.0001249746465247243 +illusion_1.5L,sr,225,90.0,alpha,upper,-0.0007448999223753326 +illusion_1.5L,sr,225,90.0,alpha,lower,-0.0007448999223753326 +illusion_1.5L,sr,226,90.4,alpha,front,-0.00121358897709253 +illusion_1.5L,sr,226,90.4,alpha,upper,-0.0002786299663453586 +illusion_1.5L,sr,226,90.4,alpha,lower,-0.0002786299663453586 +illusion_1.5L,sr,227,90.8,alpha,front,-0.00129874471649713 +illusion_1.5L,sr,227,90.8,alpha,upper,-0.0006377098070650851 +illusion_1.5L,sr,227,90.8,alpha,lower,-0.0006377098070650851 +illusion_1.5L,sr,228,91.2,alpha,front,-0.0023115761224285283 +illusion_1.5L,sr,228,91.2,alpha,upper,-0.00017813757091135127 +illusion_1.5L,sr,228,91.2,alpha,lower,-0.00017813757091135127 +illusion_1.5L,sr,229,91.6,alpha,front,-0.0019857807604626923 +illusion_1.5L,sr,229,91.6,alpha,upper,-0.0005414951144476488 +illusion_1.5L,sr,229,91.6,alpha,lower,-0.0005414951144476488 +illusion_1.5L,sr,230,92.0,alpha,front,-0.002451216174101843 +illusion_1.5L,sr,230,92.0,alpha,upper,-0.00014384283845799914 +illusion_1.5L,sr,230,92.0,alpha,lower,-0.00014384283845799914 +illusion_1.5L,sr,231,92.4,alpha,front,-0.002026815051714554 +illusion_1.5L,sr,231,92.4,alpha,upper,-0.00022691124586845038 +illusion_1.5L,sr,231,92.4,alpha,lower,-0.00022691124586845038 +illusion_1.5L,sr,232,92.8,alpha,front,-0.002194114966177326 +illusion_1.5L,sr,232,92.8,alpha,upper,0.0002796080210680091 +illusion_1.5L,sr,232,92.8,alpha,lower,0.0002796080210680091 +illusion_1.5L,sr,233,93.2,alpha,front,-0.0018511974942654209 +illusion_1.5L,sr,233,93.2,alpha,upper,0.0005242770573595252 +illusion_1.5L,sr,233,93.2,alpha,lower,0.0005242770573595252 +illusion_1.5L,sr,234,93.6,alpha,front,-0.0011327186760658045 +illusion_1.5L,sr,234,93.6,alpha,upper,0.0005589847969833827 +illusion_1.5L,sr,234,93.6,alpha,lower,0.0005589847969833827 +illusion_1.5L,sr,235,94.0,alpha,front,-0.00044428302944030714 +illusion_1.5L,sr,235,94.0,alpha,upper,0.0006357363618141919 +illusion_1.5L,sr,235,94.0,alpha,lower,0.0006357363618141919 +illusion_1.5L,sr,236,94.4,alpha,front,0.0006060617036453154 +illusion_1.5L,sr,236,94.4,alpha,upper,0.0004180610037486307 +illusion_1.5L,sr,236,94.4,alpha,lower,0.0004180610037486307 +illusion_1.5L,sr,237,94.8,alpha,front,0.0009824215962407658 +illusion_1.5L,sr,237,94.8,alpha,upper,0.0006239509611093916 +illusion_1.5L,sr,237,94.8,alpha,lower,0.0006239509611093916 +illusion_1.5L,sr,238,95.2,alpha,front,0.0019822829700981044 +illusion_1.5L,sr,238,95.2,alpha,upper,0.00025629503967387196 +illusion_1.5L,sr,238,95.2,alpha,lower,0.00025629503967387196 +illusion_1.5L,sr,239,95.6,alpha,front,0.0018493427143170538 +illusion_1.5L,sr,239,95.6,alpha,upper,0.0005784623750276635 +illusion_1.5L,sr,239,95.6,alpha,lower,0.0005784623750276635 +illusion_1.5L,sr,240,96.0,alpha,front,0.0023800532836839236 +illusion_1.5L,sr,240,96.0,alpha,upper,0.00024117156409916504 +illusion_1.5L,sr,240,96.0,alpha,lower,0.00024117156409916504 +illusion_1.5L,sr,241,96.4,alpha,front,0.0019941300705641485 +illusion_1.5L,sr,241,96.4,alpha,upper,0.00040091523454213046 +illusion_1.5L,sr,241,96.4,alpha,lower,0.00040091523454213046 +illusion_1.5L,sr,242,96.8,alpha,front,0.0021786595694965813 +illusion_1.5L,sr,242,96.8,alpha,upper,-2.8079217770048823e-05 +illusion_1.5L,sr,242,96.8,alpha,lower,-2.8079217770048823e-05 +illusion_1.5L,sr,243,97.2,alpha,front,0.0019900801209738715 +illusion_1.5L,sr,243,97.2,alpha,upper,-0.00031982996822477704 +illusion_1.5L,sr,243,97.2,alpha,lower,-0.00031982996822477704 +illusion_1.5L,sr,244,97.6,alpha,front,0.0015845564950167663 +illusion_1.5L,sr,244,97.6,alpha,upper,-0.0005473021789037923 +illusion_1.5L,sr,244,97.6,alpha,lower,-0.0005473021789037923 +illusion_1.5L,sr,245,98.0,alpha,front,0.0009113371692683043 +illusion_1.5L,sr,245,98.0,alpha,upper,-0.0006251177180412826 +illusion_1.5L,sr,245,98.0,alpha,lower,-0.0006251177180412826 +illusion_1.5L,sr,246,98.4,alpha,front,-0.00011782025110540668 +illusion_1.5L,sr,246,98.4,alpha,upper,-0.00044218178100391506 +illusion_1.5L,sr,246,98.4,alpha,lower,-0.00044218178100391506 +illusion_1.5L,sr,247,98.8,alpha,front,-0.0005174955349810904 +illusion_1.5L,sr,247,98.8,alpha,upper,-0.0006782303123639213 +illusion_1.5L,sr,247,98.8,alpha,lower,-0.0006782303123639213 +illusion_1.5L,sr,248,99.2,alpha,front,-0.0015829799737123102 +illusion_1.5L,sr,248,99.2,alpha,upper,-0.00033314311341580555 +illusion_1.5L,sr,248,99.2,alpha,lower,-0.00033314311341580555 +illusion_1.5L,sr,249,99.6,alpha,front,-0.0016575134217031095 +illusion_1.5L,sr,249,99.6,alpha,upper,-0.0005934079646011184 +illusion_1.5L,sr,249,99.6,alpha,lower,-0.0005934079646011184 +illusion_1.5L,sr,250,100.0,alpha,front,-0.0021960309029150638 +illusion_1.5L,sr,250,100.0,alpha,upper,-0.0003544152238978311 +illusion_1.5L,sr,250,100.0,alpha,lower,-0.0003544152238978311 +illusion_1.5L,sr,251,100.4,alpha,front,-0.0020081977521037575 +illusion_1.5L,sr,251,100.4,alpha,upper,-0.0004773846185013759 +illusion_1.5L,sr,251,100.4,alpha,lower,-0.0004773846185013759 +illusion_1.5L,sr,252,100.8,alpha,front,-0.0020721084851505964 +illusion_1.5L,sr,252,100.8,alpha,upper,-0.00023865585397617184 +illusion_1.5L,sr,252,100.8,alpha,lower,-0.00023865585397617184 +illusion_1.5L,sr,253,101.2,alpha,front,-0.002086350689690507 +illusion_1.5L,sr,253,101.2,alpha,upper,0.0001206851874546791 +illusion_1.5L,sr,253,101.2,alpha,lower,0.0001206851874546791 +illusion_1.5L,sr,254,101.6,alpha,front,-0.0017324461486808854 +illusion_1.5L,sr,254,101.6,alpha,upper,0.0003307485210331043 +illusion_1.5L,sr,254,101.6,alpha,lower,0.0003307485210331043 +illusion_1.5L,sr,255,102.0,alpha,front,-0.0014975641525915668 +illusion_1.5L,sr,255,102.0,alpha,upper,0.0007050012951628666 +illusion_1.5L,sr,255,102.0,alpha,lower,0.0007050012951628666 +illusion_1.5L,sr,256,102.4,alpha,front,-0.00022986152878803383 +illusion_1.5L,sr,256,102.4,alpha,upper,0.0003477615744915106 +illusion_1.5L,sr,256,102.4,alpha,lower,0.0003477615744915106 +illusion_1.5L,sr,257,102.8,alpha,front,-3.186651583125116e-05 +illusion_1.5L,sr,257,102.8,alpha,upper,0.0007631612734162167 +illusion_1.5L,sr,257,102.8,alpha,lower,0.0007631612734162167 +illusion_1.5L,sr,258,103.2,alpha,front,0.0012401994253904772 +illusion_1.5L,sr,258,103.2,alpha,upper,0.000323714653162447 +illusion_1.5L,sr,258,103.2,alpha,lower,0.000323714653162447 +illusion_1.5L,sr,259,103.6,alpha,front,0.001311177949294539 +illusion_1.5L,sr,259,103.6,alpha,upper,0.0006661331969893686 +illusion_1.5L,sr,259,103.6,alpha,lower,0.0006661331969893686 +illusion_1.5L,sr,260,104.0,alpha,front,0.0020965358071563384 +illusion_1.5L,sr,260,104.0,alpha,upper,0.00034343665716642796 +illusion_1.5L,sr,260,104.0,alpha,lower,0.00034343665716642796 +illusion_1.5L,sr,261,104.4,alpha,front,0.0018688938863360013 +illusion_1.5L,sr,261,104.4,alpha,upper,0.000603695634678169 +illusion_1.5L,sr,261,104.4,alpha,lower,0.000603695634678169 +illusion_1.5L,sr,262,104.8,alpha,front,0.002136603480196536 +illusion_1.5L,sr,262,104.8,alpha,upper,0.0003224906930463095 +illusion_1.5L,sr,262,104.8,alpha,lower,0.0003224906930463095 +illusion_1.5L,sr,263,105.2,alpha,front,0.0019656196108408554 +illusion_1.5L,sr,263,105.2,alpha,upper,0.00019454635374335436 +illusion_1.5L,sr,263,105.2,alpha,lower,0.00019454635374335436 +illusion_1.5L,sr,264,105.6,alpha,front,0.0019177464426052766 +illusion_1.5L,sr,264,105.6,alpha,upper,-0.00016884683878938544 +illusion_1.5L,sr,264,105.6,alpha,lower,-0.00016884683878938544 +illusion_1.5L,sr,265,106.0,alpha,front,0.0017940076271298257 +illusion_1.5L,sr,265,106.0,alpha,upper,-0.0005817871777760841 +illusion_1.5L,sr,265,106.0,alpha,lower,-0.0005817871777760841 +illusion_1.5L,sr,266,106.4,alpha,front,0.0008678676474652252 +illusion_1.5L,sr,266,106.4,alpha,upper,-0.0004604054991364942 +illusion_1.5L,sr,266,106.4,alpha,lower,-0.0004604054991364942 +illusion_1.5L,sr,267,106.8,alpha,front,0.00032496344559001817 +illusion_1.5L,sr,267,106.8,alpha,upper,-0.0006345627273732345 +illusion_1.5L,sr,267,106.8,alpha,lower,-0.0006345627273732345 +illusion_1.5L,sr,268,107.2,alpha,front,-0.0006693765907249821 +illusion_1.5L,sr,268,107.2,alpha,upper,-0.00044166809951210964 +illusion_1.5L,sr,268,107.2,alpha,lower,-0.00044166809951210964 +illusion_1.5L,sr,269,107.6,alpha,front,-0.0010264274514109294 +illusion_1.5L,sr,269,107.6,alpha,upper,-0.0006406008676017247 +illusion_1.5L,sr,269,107.6,alpha,lower,-0.0006406008676017247 +illusion_1.5L,sr,270,108.0,alpha,front,-0.001800112509512751 +illusion_1.5L,sr,270,108.0,alpha,upper,-0.00041469802269533673 +illusion_1.5L,sr,270,108.0,alpha,lower,-0.00041469802269533673 +illusion_1.5L,sr,271,108.4,alpha,front,-0.0018046284452178168 +illusion_1.5L,sr,271,108.4,alpha,upper,-0.0006075267342370121 +illusion_1.5L,sr,271,108.4,alpha,lower,-0.0006075267342370121 +illusion_1.5L,sr,272,108.8,alpha,front,-0.0020561567821399326 +illusion_1.5L,sr,272,108.8,alpha,upper,-0.00044746315294126934 +illusion_1.5L,sr,272,108.8,alpha,lower,-0.00044746315294126934 +illusion_1.5L,sr,273,109.2,alpha,front,-0.0019488839857330212 +illusion_1.5L,sr,273,109.2,alpha,upper,-0.00037718790635027366 +illusion_1.5L,sr,273,109.2,alpha,lower,-0.00037718790635027366 +illusion_1.5L,sr,274,109.6,alpha,front,-0.0019483860804858227 +illusion_1.5L,sr,274,109.6,alpha,upper,-6.588341747633397e-05 +illusion_1.5L,sr,274,109.6,alpha,lower,-6.588341747633397e-05 +illusion_1.5L,sr,275,110.0,alpha,front,-0.001932850477304078 +illusion_1.5L,sr,275,110.0,alpha,upper,0.00036486326056697944 +illusion_1.5L,sr,275,110.0,alpha,lower,0.00036486326056697944 +illusion_1.5L,sr,276,110.4,alpha,front,-0.0013433580750466124 +illusion_1.5L,sr,276,110.4,alpha,upper,0.0004593133402069887 +illusion_1.5L,sr,276,110.4,alpha,lower,0.0004593133402069887 +illusion_1.5L,sr,277,110.8,alpha,front,-0.0007626773440815813 +illusion_1.5L,sr,277,110.8,alpha,upper,0.000601296053746746 +illusion_1.5L,sr,277,110.8,alpha,lower,0.000601296053746746 +illusion_1.5L,sr,278,111.2,alpha,front,0.00020237235178834946 +illusion_1.5L,sr,278,111.2,alpha,upper,0.00045476022646479935 +illusion_1.5L,sr,278,111.2,alpha,lower,0.00045476022646479935 +illusion_1.5L,sr,279,111.6,alpha,front,0.00061923782734747 +illusion_1.5L,sr,279,111.6,alpha,upper,0.0006618558023176214 +illusion_1.5L,sr,279,111.6,alpha,lower,0.0006618558023176214 +illusion_1.5L,sr,280,112.0,alpha,front,0.0015074216581676646 +illusion_1.5L,sr,280,112.0,alpha,upper,0.0004272516483490099 +illusion_1.5L,sr,280,112.0,alpha,lower,0.0004272516483490099 +illusion_1.5L,sr,281,112.4,alpha,front,0.0016437736614330345 +illusion_1.5L,sr,281,112.4,alpha,upper,0.0006180920937390276 +illusion_1.5L,sr,281,112.4,alpha,lower,0.0006180920937390276 +illusion_1.5L,sr,282,112.8,alpha,front,0.0019796351408946436 +illusion_1.5L,sr,282,112.8,alpha,upper,0.0005033752714777191 +illusion_1.5L,sr,282,112.8,alpha,lower,0.0005033752714777191 +illusion_1.5L,sr,283,113.2,alpha,front,0.0019444111918596463 +illusion_1.5L,sr,283,113.2,alpha,upper,0.0004891519515152522 +illusion_1.5L,sr,283,113.2,alpha,lower,0.0004891519515152522 +illusion_1.5L,sr,284,113.6,alpha,front,0.0018891104521238794 +illusion_1.5L,sr,284,113.6,alpha,upper,0.00031755836450749614 +illusion_1.5L,sr,284,113.6,alpha,lower,0.00031755836450749614 +illusion_1.5L,sr,285,114.0,alpha,front,0.0020667529679015244 +illusion_1.5L,sr,285,114.0,alpha,upper,-0.00017703653046381024 +illusion_1.5L,sr,285,114.0,alpha,lower,-0.00017703653046381024 +illusion_1.5L,sr,286,114.4,alpha,front,0.0015640515476913182 +illusion_1.5L,sr,286,114.4,alpha,upper,-0.00028516480468542514 +illusion_1.5L,sr,286,114.4,alpha,lower,-0.00028516480468542514 +illusion_1.5L,sr,287,114.8,alpha,front,0.0013545374083751673 +illusion_1.5L,sr,287,114.8,alpha,upper,-0.0006787505869267621 +illusion_1.5L,sr,287,114.8,alpha,lower,-0.0006787505869267621 +illusion_1.5L,sr,288,115.2,alpha,front,0.00011219493541140234 +illusion_1.5L,sr,288,115.2,alpha,upper,-0.0003347961909942721 +illusion_1.5L,sr,288,115.2,alpha,lower,-0.0003347961909942721 +illusion_1.5L,sr,289,115.6,alpha,front,-6.865110217789405e-05 +illusion_1.5L,sr,289,115.6,alpha,upper,-0.0007516682164188521 +illusion_1.5L,sr,289,115.6,alpha,lower,-0.0007516682164188521 +illusion_1.5L,sr,290,116.0,alpha,front,-0.0012076364857657867 +illusion_1.5L,sr,290,116.0,alpha,upper,-0.00039458529989549665 +illusion_1.5L,sr,290,116.0,alpha,lower,-0.00039458529989549665 +illusion_1.5L,sr,291,116.4,alpha,front,-0.0013431698138466099 +illusion_1.5L,sr,291,116.4,alpha,upper,-0.0006697789932959136 +illusion_1.5L,sr,291,116.4,alpha,lower,-0.0006697789932959136 +illusion_1.5L,sr,292,116.8,alpha,front,-0.0018951194952751063 +illusion_1.5L,sr,292,116.8,alpha,upper,-0.0004971071074944267 +illusion_1.5L,sr,292,116.8,alpha,lower,-0.0004971071074944267 +illusion_1.5L,sr,293,117.2,alpha,front,-0.0018436682618397024 +illusion_1.5L,sr,293,117.2,alpha,upper,-0.0006038547881007626 +illusion_1.5L,sr,293,117.2,alpha,lower,-0.0006038547881007626 +illusion_1.5L,sr,294,117.6,alpha,front,-0.0019331467432358307 +illusion_1.5L,sr,294,117.6,alpha,upper,-0.0004327540545584173 +illusion_1.5L,sr,294,117.6,alpha,lower,-0.0004327540545584173 +illusion_1.5L,sr,295,118.0,alpha,front,-0.0019682558657710437 +illusion_1.5L,sr,295,118.0,alpha,upper,-0.00013570734143097257 +illusion_1.5L,sr,295,118.0,alpha,lower,-0.00013570734143097257 +illusion_1.5L,sr,296,118.4,alpha,front,-0.0017976349095371604 +illusion_1.5L,sr,296,118.4,alpha,upper,0.00014843866196777127 +illusion_1.5L,sr,296,118.4,alpha,lower,0.00014843866196777127 +illusion_1.5L,sr,297,118.8,alpha,front,-0.0016619776446837754 +illusion_1.5L,sr,297,118.8,alpha,upper,0.0005571569574464533 +illusion_1.5L,sr,297,118.8,alpha,lower,0.0005571569574464533 +illusion_1.5L,sr,298,119.2,alpha,front,-0.0006964439244636447 +illusion_1.5L,sr,298,119.2,alpha,upper,0.00040599259882659957 +illusion_1.5L,sr,298,119.2,alpha,lower,0.00040599259882659957 +illusion_1.5L,sr,299,119.6,alpha,front,-0.00023197010075098887 +illusion_1.5L,sr,299,119.6,alpha,upper,0.000631807538934129 +illusion_1.5L,sr,299,119.6,alpha,lower,0.000631807538934129 +illusion_1.5L,sr,300,120.0,alpha,front,0.0006939658890944903 +illusion_1.5L,sr,300,120.0,alpha,upper,0.0004779024572103379 +illusion_1.5L,sr,300,120.0,alpha,lower,0.0004779024572103379 +illusion_1.5L,sr,301,120.4,alpha,front,0.0011097039450501493 +illusion_1.5L,sr,301,120.4,alpha,upper,0.0006180305996983416 +illusion_1.5L,sr,301,120.4,alpha,lower,0.0006180305996983416 +illusion_1.5L,sr,302,120.8,alpha,front,0.001657831691660519 +illusion_1.5L,sr,302,120.8,alpha,upper,0.0005398394274698098 +illusion_1.5L,sr,302,120.8,alpha,lower,0.0005398394274698098 +illusion_1.5L,sr,303,121.2,alpha,front,0.0017832869400030288 +illusion_1.5L,sr,303,121.2,alpha,upper,0.0006217784959833272 +illusion_1.5L,sr,303,121.2,alpha,lower,0.0006217784959833272 +illusion_1.5L,sr,304,121.6,alpha,front,0.0018747555493271381 +illusion_1.5L,sr,304,121.6,alpha,upper,0.000558403292019824 +illusion_1.5L,sr,304,121.6,alpha,lower,0.000558403292019824 +illusion_1.5L,sr,305,122.0,alpha,front,0.0019663334996386644 +illusion_1.5L,sr,305,122.0,alpha,upper,0.0003230233069259625 +illusion_1.5L,sr,305,122.0,alpha,lower,0.0003230233069259625 +illusion_1.5L,sr,306,122.4,alpha,front,0.001835532779572685 +illusion_1.5L,sr,306,122.4,alpha,upper,9.394587238365643e-05 +illusion_1.5L,sr,306,122.4,alpha,lower,9.394587238365643e-05 +illusion_1.5L,sr,307,122.8,alpha,front,0.0018949728852291836 +illusion_1.5L,sr,307,122.8,alpha,upper,-0.0004005067137801184 +illusion_1.5L,sr,307,122.8,alpha,lower,-0.0004005067137801184 +illusion_1.5L,sr,308,123.2,alpha,front,0.0011973887707424384 +illusion_1.5L,sr,308,123.2,alpha,upper,-0.00041798296830285273 +illusion_1.5L,sr,308,123.2,alpha,lower,-0.00041798296830285273 +illusion_1.5L,sr,309,123.6,alpha,front,0.0006359293147888041 +illusion_1.5L,sr,309,123.6,alpha,upper,-0.0005718304026484824 +illusion_1.5L,sr,309,123.6,alpha,lower,-0.0005718304026484824 +illusion_1.5L,sr,310,124.0,alpha,front,-0.00022496462791645258 +illusion_1.5L,sr,310,124.0,alpha,upper,-0.0004950962099870022 +illusion_1.5L,sr,310,124.0,alpha,lower,-0.0004950962099870022 +illusion_1.5L,sr,311,124.4,alpha,front,-0.0007314557251975329 +illusion_1.5L,sr,311,124.4,alpha,upper,-0.0006242807582879407 +illusion_1.5L,sr,311,124.4,alpha,lower,-0.0006242807582879407 +illusion_1.5L,sr,312,124.8,alpha,front,-0.0014283731840935288 +illusion_1.5L,sr,312,124.8,alpha,upper,-0.000515618733929156 +illusion_1.5L,sr,312,124.8,alpha,lower,-0.000515618733929156 +illusion_1.5L,sr,313,125.2,alpha,front,-0.001636710970794042 +illusion_1.5L,sr,313,125.2,alpha,upper,-0.0006353468546883324 +illusion_1.5L,sr,313,125.2,alpha,lower,-0.0006353468546883324 +illusion_1.5L,sr,314,125.6,alpha,front,-0.0017855038668816506 +illusion_1.5L,sr,314,125.6,alpha,upper,-0.0006383771047407567 +illusion_1.5L,sr,314,125.6,alpha,lower,-0.0006383771047407567 +illusion_1.5L,sr,315,126.0,alpha,front,-0.0019345097781705775 +illusion_1.5L,sr,315,126.0,alpha,upper,-0.00046879205326878434 +illusion_1.5L,sr,315,126.0,alpha,lower,-0.00046879205326878434 +illusion_1.5L,sr,316,126.4,alpha,front,-0.0018121530152833407 +illusion_1.5L,sr,316,126.4,alpha,upper,-0.000330352120275771 +illusion_1.5L,sr,316,126.4,alpha,lower,-0.000330352120275771 +illusion_1.5L,sr,317,126.8,alpha,front,-0.0020033484168714734 +illusion_1.5L,sr,317,126.8,alpha,upper,0.00018537009658524742 +illusion_1.5L,sr,317,126.8,alpha,lower,0.00018537009658524742 +illusion_1.5L,sr,318,127.2,alpha,front,-0.0014973580061013719 +illusion_1.5L,sr,318,127.2,alpha,upper,0.00029727629705860077 +illusion_1.5L,sr,318,127.2,alpha,lower,0.00029727629705860077 +illusion_1.5L,sr,319,127.6,alpha,front,-0.001189740725452301 +illusion_1.5L,sr,319,127.6,alpha,upper,0.0006196347080056831 +illusion_1.5L,sr,319,127.6,alpha,lower,0.0006196347080056831 +illusion_1.5L,sr,320,128.0,alpha,front,-8.935830687197954e-05 +illusion_1.5L,sr,320,128.0,alpha,upper,0.00037705237671310874 +illusion_1.5L,sr,320,128.0,alpha,lower,0.00037705237671310874 +illusion_1.5L,sr,321,128.4,alpha,front,0.00020837253734709918 +illusion_1.5L,sr,321,128.4,alpha,upper,0.0006996643057610111 +illusion_1.5L,sr,321,128.4,alpha,lower,0.0006996643057610111 +illusion_1.5L,sr,322,128.8,alpha,front,0.0011641122989167509 +illusion_1.5L,sr,322,128.8,alpha,upper,0.00046574408072124965 +illusion_1.5L,sr,322,128.8,alpha,lower,0.00046574408072124965 +illusion_1.5L,sr,323,129.2,alpha,front,0.0013973944781256603 +illusion_1.5L,sr,323,129.2,alpha,upper,0.0006537433350235142 +illusion_1.5L,sr,323,129.2,alpha,lower,0.0006537433350235142 +illusion_1.5L,sr,324,129.6,alpha,front,0.0017611568406407999 +illusion_1.5L,sr,324,129.6,alpha,upper,0.0006024177088254992 +illusion_1.5L,sr,324,129.6,alpha,lower,0.0006024177088254992 +illusion_1.5L,sr,325,130.0,alpha,front,0.001824628427897511 +illusion_1.5L,sr,325,130.0,alpha,upper,0.0006061588149244013 +illusion_1.5L,sr,325,130.0,alpha,lower,0.0006061588149244013 +illusion_1.5L,sr,326,130.4,alpha,front,0.0017964025961456978 +illusion_1.5L,sr,326,130.4,alpha,upper,0.0005039169817008492 +illusion_1.5L,sr,326,130.4,alpha,lower,0.0005039169817008492 +illusion_1.5L,sr,327,130.8,alpha,front,0.0019828144067218327 +illusion_1.5L,sr,327,130.8,alpha,upper,8.093413224417867e-05 +illusion_1.5L,sr,327,130.8,alpha,lower,8.093413224417867e-05 +illusion_1.5L,sr,328,131.2,alpha,front,0.0017375699433208082 +illusion_1.5L,sr,328,131.2,alpha,upper,-0.00015767680595759302 +illusion_1.5L,sr,328,131.2,alpha,lower,-0.00015767680595759302 +illusion_1.5L,sr,329,131.6,alpha,front,0.0015652450745717568 +illusion_1.5L,sr,329,131.6,alpha,upper,-0.0005431503519005686 +illusion_1.5L,sr,329,131.6,alpha,lower,-0.0005431503519005686 +illusion_1.5L,sr,330,132.0,alpha,front,0.0005957810462228316 +illusion_1.5L,sr,330,132.0,alpha,upper,-0.00038896332863282655 +illusion_1.5L,sr,330,132.0,alpha,lower,-0.00038896332863282655 +illusion_1.5L,sr,331,132.4,alpha,front,0.00013031441359417743 +illusion_1.5L,sr,331,132.4,alpha,upper,-0.0006097845077672592 +illusion_1.5L,sr,331,132.4,alpha,lower,-0.0006097845077672592 +illusion_1.5L,sr,332,132.8,alpha,front,-0.0006743950274315375 +illusion_1.5L,sr,332,132.8,alpha,upper,-0.0005368172025227002 +illusion_1.5L,sr,332,132.8,alpha,lower,-0.0005368172025227002 +illusion_1.5L,sr,333,133.2,alpha,front,-0.0011764760294647424 +illusion_1.5L,sr,333,133.2,alpha,upper,-0.0006007939841723639 +illusion_1.5L,sr,333,133.2,alpha,lower,-0.0006007939841723639 +illusion_1.5L,sr,334,133.6,alpha,front,-0.0015653193401501883 +illusion_1.5L,sr,334,133.6,alpha,upper,-0.0006249183212868395 +illusion_1.5L,sr,334,133.6,alpha,lower,-0.0006249183212868395 +illusion_1.5L,sr,335,134.0,alpha,front,-0.0017918245758820686 +illusion_1.5L,sr,335,134.0,alpha,upper,-0.0006153229143536637 +illusion_1.5L,sr,335,134.0,alpha,lower,-0.0006153229143536637 +illusion_1.5L,sr,336,134.4,alpha,front,-0.001758890543361334 +illusion_1.5L,sr,336,134.4,alpha,upper,-0.0006271500750547748 +illusion_1.5L,sr,336,134.4,alpha,lower,-0.0006271500750547748 +illusion_1.5L,sr,337,134.8,alpha,front,-0.0019059312119138472 +illusion_1.5L,sr,337,134.8,alpha,upper,-0.0003346139116135356 +illusion_1.5L,sr,337,134.8,alpha,lower,-0.0003346139116135356 +illusion_1.5L,sr,338,135.2,alpha,front,-0.0017738516962445066 +illusion_1.5L,sr,338,135.2,alpha,upper,-9.406968698891932e-05 +illusion_1.5L,sr,338,135.2,alpha,lower,-9.406968698891932e-05 +illusion_1.5L,sr,339,135.6,alpha,front,-0.0018476290378005337 +illusion_1.5L,sr,339,135.6,alpha,upper,0.0004185700705144468 +illusion_1.5L,sr,339,135.6,alpha,lower,0.0004185700705144468 +illusion_1.5L,sr,340,136.0,alpha,front,-0.0011388946823658432 +illusion_1.5L,sr,340,136.0,alpha,upper,0.00043034860702308945 +illusion_1.5L,sr,340,136.0,alpha,lower,0.00043034860702308945 +illusion_1.5L,sr,341,136.4,alpha,front,-0.0004912322161623587 +illusion_1.5L,sr,341,136.4,alpha,upper,0.0005191760053616002 +illusion_1.5L,sr,341,136.4,alpha,lower,0.0005191760053616002 +illusion_1.5L,sr,342,136.8,alpha,front,0.00024047197983639856 +illusion_1.5L,sr,342,136.8,alpha,upper,0.0005322379084746996 +illusion_1.5L,sr,342,136.8,alpha,lower,0.0005322379084746996 +illusion_1.5L,sr,343,137.2,alpha,front,0.0008138751492755072 +illusion_1.5L,sr,343,137.2,alpha,upper,0.0006029581506534938 +illusion_1.5L,sr,343,137.2,alpha,lower,0.0006029581506534938 +illusion_1.5L,sr,344,137.6,alpha,front,0.0013734572158631934 +illusion_1.5L,sr,344,137.6,alpha,upper,0.0005828869035896453 +illusion_1.5L,sr,344,137.6,alpha,lower,0.0005828869035896453 +illusion_1.5L,sr,345,138.0,alpha,front,0.0016630910241070274 +illusion_1.5L,sr,345,138.0,alpha,upper,0.0006278937501023284 +illusion_1.5L,sr,345,138.0,alpha,lower,0.0006278937501023284 +illusion_1.5L,sr,346,138.4,alpha,front,0.0017179888815112845 +illusion_1.5L,sr,346,138.4,alpha,upper,0.000684306498119739 +illusion_1.5L,sr,346,138.4,alpha,lower,0.000684306498119739 +illusion_1.5L,sr,347,138.8,alpha,front,0.001894904967979616 +illusion_1.5L,sr,347,138.8,alpha,upper,0.0004781405297818765 +illusion_1.5L,sr,347,138.8,alpha,lower,0.0004781405297818765 +illusion_1.5L,sr,348,139.2,alpha,front,0.0017212496430501908 +illusion_1.5L,sr,348,139.2,alpha,upper,0.00036332619677879874 +illusion_1.5L,sr,348,139.2,alpha,lower,0.00036332619677879874 +illusion_1.5L,sr,349,139.6,alpha,front,0.0019883841264544955 +illusion_1.5L,sr,349,139.6,alpha,upper,-0.00021948390694486938 +illusion_1.5L,sr,349,139.6,alpha,lower,-0.00021948390694486938 +illusion_1.5L,sr,350,140.0,alpha,front,0.0014610174752825549 +illusion_1.5L,sr,350,140.0,alpha,upper,-0.0003209172658109674 +illusion_1.5L,sr,350,140.0,alpha,lower,-0.0003209172658109674 +illusion_1.5L,sr,351,140.4,alpha,front,0.0010394630796218916 +illusion_1.5L,sr,351,140.4,alpha,upper,-0.0005605442684935799 +illusion_1.5L,sr,351,140.4,alpha,lower,-0.0005605442684935799 +illusion_1.5L,sr,352,140.8,alpha,front,9.9355842091098e-05 +illusion_1.5L,sr,352,140.8,alpha,upper,-0.0004339351508145413 +illusion_1.5L,sr,352,140.8,alpha,lower,-0.0004339351508145413 +illusion_1.5L,sr,353,141.2,alpha,front,-0.00033024784326312825 +illusion_1.5L,sr,353,141.2,alpha,upper,-0.0006528287228430834 +illusion_1.5L,sr,353,141.2,alpha,lower,-0.0006528287228430834 +illusion_1.5L,sr,354,141.6,alpha,front,-0.001110273945594032 +illusion_1.5L,sr,354,141.6,alpha,upper,-0.0005385973256759151 +illusion_1.5L,sr,354,141.6,alpha,lower,-0.0005385973256759151 +illusion_1.5L,sr,355,142.0,alpha,front,-0.0014395595329892048 +illusion_1.5L,sr,355,142.0,alpha,upper,-0.0006431131275342825 +illusion_1.5L,sr,355,142.0,alpha,lower,-0.0006431131275342825 +illusion_1.5L,sr,356,142.4,alpha,front,-0.0016893070309129954 +illusion_1.5L,sr,356,142.4,alpha,upper,-0.0006607207897760502 +illusion_1.5L,sr,356,142.4,alpha,lower,-0.0006607207897760502 +illusion_1.5L,sr,357,142.8,alpha,front,-0.001813768260473102 +illusion_1.5L,sr,357,142.8,alpha,upper,-0.0006038281414046387 +illusion_1.5L,sr,357,142.8,alpha,lower,-0.0006038281414046387 +illusion_1.5L,sr,358,143.2,alpha,front,-0.0017395186372181348 +illusion_1.5L,sr,358,143.2,alpha,upper,-0.0005212736133914167 +illusion_1.5L,sr,358,143.2,alpha,lower,-0.0005212736133914167 +illusion_1.5L,sr,359,143.6,alpha,front,-0.001961021656163839 +illusion_1.5L,sr,359,143.6,alpha,upper,-6.004029701606184e-05 +illusion_1.5L,sr,359,143.6,alpha,lower,-6.004029701606184e-05 +illusion_1.5L,sr,360,144.0,alpha,front,-0.0017157682051733916 +illusion_1.5L,sr,360,144.0,alpha,upper,0.00018675246130451552 +illusion_1.5L,sr,360,144.0,alpha,lower,0.00018675246130451552 +illusion_1.5L,sr,361,144.4,alpha,front,-0.0014906457964254573 +illusion_1.5L,sr,361,144.4,alpha,upper,0.0005372468013223955 +illusion_1.5L,sr,361,144.4,alpha,lower,0.0005372468013223955 +illusion_1.5L,sr,362,144.8,alpha,front,-0.000525761798726995 +illusion_1.5L,sr,362,144.8,alpha,upper,0.0003863362053040361 +illusion_1.5L,sr,362,144.8,alpha,lower,0.0003863362053040361 +illusion_1.5L,sr,363,145.2,alpha,front,-3.8884348863614526e-05 +illusion_1.5L,sr,363,145.2,alpha,upper,0.0005879707650575192 +illusion_1.5L,sr,363,145.2,alpha,lower,0.0005879707650575192 +illusion_1.5L,sr,364,145.6,alpha,front,0.0006784395465181878 +illusion_1.5L,sr,364,145.6,alpha,upper,0.00057255130034836 +illusion_1.5L,sr,364,145.6,alpha,lower,0.00057255130034836 +illusion_1.5L,sr,365,146.0,alpha,front,0.001247204806698446 +illusion_1.5L,sr,365,146.0,alpha,upper,0.0005770171866254295 +illusion_1.5L,sr,365,146.0,alpha,lower,0.0005770171866254295 +illusion_1.5L,sr,366,146.4,alpha,front,0.0015135470636422343 +illusion_1.5L,sr,366,146.4,alpha,upper,0.0006787750925536101 +illusion_1.5L,sr,366,146.4,alpha,lower,0.0006787750925536101 +illusion_1.5L,sr,367,146.8,alpha,front,0.0017965902629575729 +illusion_1.5L,sr,367,146.8,alpha,upper,0.0006136126356077846 +illusion_1.5L,sr,367,146.8,alpha,lower,0.0006136126356077846 +illusion_1.5L,sr,368,147.2,alpha,front,0.0017153552255150045 +illusion_1.5L,sr,368,147.2,alpha,upper,0.0006460062706578236 +illusion_1.5L,sr,368,147.2,alpha,lower,0.0006460062706578236 +illusion_1.5L,sr,369,147.6,alpha,front,0.001896288089032486 +illusion_1.5L,sr,369,147.6,alpha,upper,0.0003149941170103726 +illusion_1.5L,sr,369,147.6,alpha,lower,0.0003149941170103726 +illusion_1.5L,sr,370,148.0,alpha,front,0.0017697157886926512 +illusion_1.5L,sr,370,148.0,alpha,upper,5.9595728092758794e-05 +illusion_1.5L,sr,370,148.0,alpha,lower,5.9595728092758794e-05 +illusion_1.5L,sr,371,148.4,alpha,front,0.0017776507857467825 +illusion_1.5L,sr,371,148.4,alpha,upper,-0.0004111238070671312 +illusion_1.5L,sr,371,148.4,alpha,lower,-0.0004111238070671312 +illusion_1.5L,sr,372,148.8,alpha,front,0.0010325423608038217 +illusion_1.5L,sr,372,148.8,alpha,upper,-0.0003986369347884081 +illusion_1.5L,sr,372,148.8,alpha,lower,-0.0003986369347884081 +illusion_1.5L,sr,373,149.2,alpha,front,0.0003941228600813913 +illusion_1.5L,sr,373,149.2,alpha,upper,-0.0004941239791771846 +illusion_1.5L,sr,373,149.2,alpha,lower,-0.0004941239791771846 +illusion_1.5L,sr,374,149.6,alpha,front,-0.00021976959658045849 +illusion_1.5L,sr,374,149.6,alpha,upper,-0.0005900367493848584 +illusion_1.5L,sr,374,149.6,alpha,lower,-0.0005900367493848584 +illusion_1.5L,sr,375,150.0,alpha,front,-0.0008860020976244019 +illusion_1.5L,sr,375,150.0,alpha,upper,-0.0005841089496496088 +illusion_1.5L,sr,375,150.0,alpha,lower,-0.0005841089496496088 +illusion_1.5L,sr,376,150.4,alpha,front,-0.0013366380714195485 +illusion_1.5L,sr,376,150.4,alpha,upper,-0.0006335917268055387 +illusion_1.5L,sr,376,150.4,alpha,lower,-0.0006335917268055387 +illusion_1.5L,sr,377,150.8,alpha,front,-0.0016892619755758814 +illusion_1.5L,sr,377,150.8,alpha,upper,-0.0006188577792793845 +illusion_1.5L,sr,377,150.8,alpha,lower,-0.0006188577792793845 +illusion_1.5L,sr,378,151.2,alpha,front,-0.0016753540792976973 +illusion_1.5L,sr,378,151.2,alpha,upper,-0.0007116272717983541 +illusion_1.5L,sr,378,151.2,alpha,lower,-0.0007116272717983541 +illusion_1.5L,sr,379,151.6,alpha,front,-0.0018734196797686872 +illusion_1.5L,sr,379,151.6,alpha,upper,-0.00047607634196192636 +illusion_1.5L,sr,379,151.6,alpha,lower,-0.00047607634196192636 +illusion_1.5L,sr,380,152.0,alpha,front,-0.001754507978446146 +illusion_1.5L,sr,380,152.0,alpha,upper,-0.00030880613982602056 +illusion_1.5L,sr,380,152.0,alpha,lower,-0.00030880613982602056 +illusion_1.5L,sr,381,152.4,alpha,front,-0.0019128355719414576 +illusion_1.5L,sr,381,152.4,alpha,upper,0.0002024632661285861 +illusion_1.5L,sr,381,152.4,alpha,lower,0.0002024632661285861 +illusion_1.5L,sr,382,152.8,alpha,front,-0.0014572220122053715 +illusion_1.5L,sr,382,152.8,alpha,upper,0.0003622871174954242 +illusion_1.5L,sr,382,152.8,alpha,lower,0.0003622871174954242 +illusion_1.5L,sr,383,153.2,alpha,front,-0.0008958874859335509 +illusion_1.5L,sr,383,153.2,alpha,upper,0.0005004292883855209 +illusion_1.5L,sr,383,153.2,alpha,lower,0.0005004292883855209 +illusion_1.5L,sr,384,153.6,alpha,front,-9.948705760874556e-05 +illusion_1.5L,sr,384,153.6,alpha,upper,0.0004777798396536168 +illusion_1.5L,sr,384,153.6,alpha,lower,0.0004777798396536168 +illusion_1.5L,sr,385,154.0,alpha,front,0.0004464657440003579 +illusion_1.5L,sr,385,154.0,alpha,upper,0.0006058762351576173 +illusion_1.5L,sr,385,154.0,alpha,lower,0.0006058762351576173 +illusion_1.5L,sr,386,154.4,alpha,front,0.0010836028994403203 +illusion_1.5L,sr,386,154.4,alpha,upper,0.000588571029086566 +illusion_1.5L,sr,386,154.4,alpha,lower,0.000588571029086566 +illusion_1.5L,sr,387,154.8,alpha,front,0.0015012008355016378 +illusion_1.5L,sr,387,154.8,alpha,upper,0.0006172835583188596 +illusion_1.5L,sr,387,154.8,alpha,lower,0.0006172835583188596 +illusion_1.5L,sr,388,155.2,alpha,front,0.0016579371041258448 +illusion_1.5L,sr,388,155.2,alpha,upper,0.0006906859681682677 +illusion_1.5L,sr,388,155.2,alpha,lower,0.0006906859681682677 +illusion_1.5L,sr,389,155.6,alpha,front,0.001848392185493132 +illusion_1.5L,sr,389,155.6,alpha,upper,0.0005717724521955223 +illusion_1.5L,sr,389,155.6,alpha,lower,0.0005717724521955223 +illusion_1.5L,sr,390,156.0,alpha,front,0.0017096010805172715 +illusion_1.5L,sr,390,156.0,alpha,upper,0.0005235540957561173 +illusion_1.5L,sr,390,156.0,alpha,lower,0.0005235540957561173 +illusion_1.5L,sr,391,156.4,alpha,front,0.0019290002660664676 +illusion_1.5L,sr,391,156.4,alpha,upper,5.298650900697685e-05 +illusion_1.5L,sr,391,156.4,alpha,lower,5.298650900697685e-05 +illusion_1.5L,sr,392,156.8,alpha,front,0.0016828393714713207 +illusion_1.5L,sr,392,156.8,alpha,upper,-0.00020134577403956022 +illusion_1.5L,sr,392,156.8,alpha,lower,-0.00020134577403956022 +illusion_1.5L,sr,393,157.2,alpha,front,0.0013898733055959407 +illusion_1.5L,sr,393,157.2,alpha,upper,-0.0005063488741979842 +illusion_1.5L,sr,393,157.2,alpha,lower,-0.0005063488741979842 +illusion_1.5L,sr,394,157.6,alpha,front,0.0004920427122921607 +illusion_1.5L,sr,394,157.6,alpha,upper,-0.0004058187216340861 +illusion_1.5L,sr,394,157.6,alpha,lower,-0.0004058187216340861 +illusion_1.5L,sr,395,158.0,alpha,front,-2.5492541028012544e-05 +illusion_1.5L,sr,395,158.0,alpha,upper,-0.0005818538962295396 +illusion_1.5L,sr,395,158.0,alpha,lower,-0.0005818538962295396 +illusion_1.5L,sr,396,158.4,alpha,front,-0.0006957581046329007 +illusion_1.5L,sr,396,158.4,alpha,upper,-0.0005948601591981625 +illusion_1.5L,sr,396,158.4,alpha,lower,-0.0005948601591981625 +illusion_1.5L,sr,397,158.8,alpha,front,-0.0012918532109732102 +illusion_1.5L,sr,397,158.8,alpha,upper,-0.0005696936484332303 +illusion_1.5L,sr,397,158.8,alpha,lower,-0.0005696936484332303 +illusion_1.5L,sr,398,159.2,alpha,front,-0.0015064771419224798 +illusion_1.5L,sr,398,159.2,alpha,upper,-0.0006983066266584501 +illusion_1.5L,sr,398,159.2,alpha,lower,-0.0006983066266584501 +illusion_1.5L,sr,399,159.6,alpha,front,-0.0018050055152508818 +illusion_1.5L,sr,399,159.6,alpha,upper,-0.0006083265634991807 +illusion_1.5L,sr,399,159.6,alpha,lower,-0.0006083265634991807 +illusion_1.5L,sr,0,0.0,omega,front,0.0014266170227978886 +illusion_1.5L,sr,0,0.0,omega,upper,-0.0010658694103971597 +illusion_1.5L,sr,0,0.0,omega,lower,-0.0010658694103971597 +illusion_1.5L,sr,1,0.4,omega,front,0.0007501603472150006 +illusion_1.5L,sr,1,0.4,omega,upper,-0.0005326092244375821 +illusion_1.5L,sr,1,0.4,omega,lower,-0.0005326092244375821 +illusion_1.5L,sr,2,0.8,omega,front,4.5958533743338246e-05 +illusion_1.5L,sr,2,0.8,omega,upper,2.4858757266248004e-05 +illusion_1.5L,sr,2,0.8,omega,lower,2.4858757266248004e-05 +illusion_1.5L,sr,3,1.2,omega,front,-0.00028187031443080576 +illusion_1.5L,sr,3,1.2,omega,upper,0.0002928356119210725 +illusion_1.5L,sr,3,1.2,omega,lower,0.0002928356119210725 +illusion_1.5L,sr,4,1.6,omega,front,-0.00039913528018097776 +illusion_1.5L,sr,4,1.6,omega,upper,0.00039567958821340953 +illusion_1.5L,sr,4,1.6,omega,lower,0.00039567958821340953 +illusion_1.5L,sr,5,2.0,omega,front,-0.00035744913273209916 +illusion_1.5L,sr,5,2.0,omega,upper,0.0003736167686742703 +illusion_1.5L,sr,5,2.0,omega,lower,0.0003736167686742703 +illusion_1.5L,sr,6,2.4,omega,front,-0.00010472222909088835 +illusion_1.5L,sr,6,2.4,omega,upper,0.00019645389170722948 +illusion_1.5L,sr,6,2.4,omega,lower,0.00019645389170722948 +illusion_1.5L,sr,7,2.8,omega,front,0.00028969462733821616 +illusion_1.5L,sr,7,2.8,omega,upper,-7.98019838287356e-05 +illusion_1.5L,sr,7,2.8,omega,lower,-7.98019838287356e-05 +illusion_1.5L,sr,8,3.2,omega,front,0.0005483170953917469 +illusion_1.5L,sr,8,3.2,omega,upper,-0.0002522661751969499 +illusion_1.5L,sr,8,3.2,omega,lower,-0.0002522661751969499 +illusion_1.5L,sr,9,3.6,omega,front,0.000624414110499445 +illusion_1.5L,sr,9,3.6,omega,upper,-0.0002921964183252096 +illusion_1.5L,sr,9,3.6,omega,lower,-0.0002921964183252096 +illusion_1.5L,sr,10,4.0,omega,front,0.0005703804118536704 +illusion_1.5L,sr,10,4.0,omega,upper,-0.0002441457144088341 +illusion_1.5L,sr,10,4.0,omega,lower,-0.0002441457144088341 +illusion_1.5L,sr,11,4.4,omega,front,0.0004951460720895895 +illusion_1.5L,sr,11,4.4,omega,upper,-0.0001924125161177645 +illusion_1.5L,sr,11,4.4,omega,lower,-0.0001924125161177645 +illusion_1.5L,sr,12,4.8,omega,front,0.0003810753111720666 +illusion_1.5L,sr,12,4.8,omega,upper,-0.00012529758081816084 +illusion_1.5L,sr,12,4.8,omega,lower,-0.00012529758081816084 +illusion_1.5L,sr,13,5.2,omega,front,0.00023540190217483103 +illusion_1.5L,sr,13,5.2,omega,upper,-4.697671242348045e-05 +illusion_1.5L,sr,13,5.2,omega,lower,-4.697671242348045e-05 +illusion_1.5L,sr,14,5.6,omega,front,8.949037980885865e-05 +illusion_1.5L,sr,14,5.6,omega,upper,2.244289357838006e-05 +illusion_1.5L,sr,14,5.6,omega,lower,2.244289357838006e-05 +illusion_1.5L,sr,15,6.0,omega,front,-4.1749922857693275e-05 +illusion_1.5L,sr,15,6.0,omega,upper,7.619391936644842e-05 +illusion_1.5L,sr,15,6.0,omega,lower,7.619391936644842e-05 +illusion_1.5L,sr,16,6.4,omega,front,-0.00015039062613191333 +illusion_1.5L,sr,16,6.4,omega,upper,0.0001125615416351976 +illusion_1.5L,sr,16,6.4,omega,lower,0.0001125615416351976 +illusion_1.5L,sr,17,6.8,omega,front,-0.00023749070230074962 +illusion_1.5L,sr,17,6.8,omega,upper,0.00013580769251169572 +illusion_1.5L,sr,17,6.8,omega,lower,0.00013580769251169572 +illusion_1.5L,sr,18,7.2,omega,front,-0.0003156916444487097 +illusion_1.5L,sr,18,7.2,omega,upper,0.00015782241987135598 +illusion_1.5L,sr,18,7.2,omega,lower,0.00015782241987135598 +illusion_1.5L,sr,19,7.6,omega,front,-0.0003762913093110848 +illusion_1.5L,sr,19,7.6,omega,upper,0.00017391547526992443 +illusion_1.5L,sr,19,7.6,omega,lower,0.00017391547526992443 +illusion_1.5L,sr,20,8.0,omega,front,-0.0004242823285879036 +illusion_1.5L,sr,20,8.0,omega,upper,0.00018899223758284345 +illusion_1.5L,sr,20,8.0,omega,lower,0.00018899223758284345 +illusion_1.5L,sr,21,8.4,omega,front,-0.0004142638945744384 +illusion_1.5L,sr,21,8.4,omega,upper,0.00017089520217865916 +illusion_1.5L,sr,21,8.4,omega,lower,0.00017089520217865916 +illusion_1.5L,sr,22,8.8,omega,front,-0.00037477877973952304 +illusion_1.5L,sr,22,8.8,omega,upper,0.00014221671581609864 +illusion_1.5L,sr,22,8.8,omega,lower,0.00014221671581609864 +illusion_1.5L,sr,23,9.2,omega,front,-0.0002648739585486856 +illusion_1.5L,sr,23,9.2,omega,upper,7.342517812929023e-05 +illusion_1.5L,sr,23,9.2,omega,lower,7.342517812929023e-05 +illusion_1.5L,sr,24,9.6,omega,front,-0.0001556046199107966 +illusion_1.5L,sr,24,9.6,omega,upper,1.5990471387839767e-05 +illusion_1.5L,sr,24,9.6,omega,lower,1.5990471387839767e-05 +illusion_1.5L,sr,25,10.0,omega,front,-3.829776299165727e-05 +illusion_1.5L,sr,25,10.0,omega,upper,-3.926871448277428e-05 +illusion_1.5L,sr,25,10.0,omega,lower,-3.926871448277428e-05 +illusion_1.5L,sr,26,10.4,omega,front,4.380017602658798e-05 +illusion_1.5L,sr,26,10.4,omega,upper,-6.435356813242998e-05 +illusion_1.5L,sr,26,10.4,omega,lower,-6.435356813242998e-05 +illusion_1.5L,sr,27,10.8,omega,front,0.00012223706574852381 +illusion_1.5L,sr,27,10.8,omega,upper,-8.65974507562029e-05 +illusion_1.5L,sr,27,10.8,omega,lower,-8.65974507562029e-05 +illusion_1.5L,sr,28,11.2,omega,front,0.00018947256631999135 +illusion_1.5L,sr,28,11.2,omega,upper,-0.00010387804015082853 +illusion_1.5L,sr,28,11.2,omega,lower,-0.00010387804015082853 +illusion_1.5L,sr,29,11.6,omega,front,0.00025098222513521284 +illusion_1.5L,sr,29,11.6,omega,upper,-0.0001226834726071317 +illusion_1.5L,sr,29,11.6,omega,lower,-0.0001226834726071317 +illusion_1.5L,sr,30,12.0,omega,front,0.0003002234168007363 +illusion_1.5L,sr,30,12.0,omega,upper,-0.0001397644991430004 +illusion_1.5L,sr,30,12.0,omega,lower,-0.0001397644991430004 +illusion_1.5L,sr,31,12.4,omega,front,0.00031416493830579485 +illusion_1.5L,sr,31,12.4,omega,upper,-0.0001390481145598693 +illusion_1.5L,sr,31,12.4,omega,lower,-0.0001390481145598693 +illusion_1.5L,sr,32,12.8,omega,front,0.0002927654970911087 +illusion_1.5L,sr,32,12.8,omega,upper,-0.00012117779953243507 +illusion_1.5L,sr,32,12.8,omega,lower,-0.00012117779953243507 +illusion_1.5L,sr,33,13.2,omega,front,0.00022549148610663067 +illusion_1.5L,sr,33,13.2,omega,upper,-7.861413942901977e-05 +illusion_1.5L,sr,33,13.2,omega,lower,-7.861413942901977e-05 +illusion_1.5L,sr,34,13.6,omega,front,0.00014007627941374653 +illusion_1.5L,sr,34,13.6,omega,upper,-3.115324365086256e-05 +illusion_1.5L,sr,34,13.6,omega,lower,-3.115324365086256e-05 +illusion_1.5L,sr,35,14.0,omega,front,5.060115861464182e-05 +illusion_1.5L,sr,35,14.0,omega,upper,1.2718968279104153e-05 +illusion_1.5L,sr,35,14.0,omega,lower,1.2718968279104153e-05 +illusion_1.5L,sr,36,14.4,omega,front,-2.4852381925421287e-05 +illusion_1.5L,sr,36,14.4,omega,upper,4.25667514255888e-05 +illusion_1.5L,sr,36,14.4,omega,lower,4.25667514255888e-05 +illusion_1.5L,sr,37,14.8,omega,front,-9.931976359751939e-05 +illusion_1.5L,sr,37,14.8,omega,upper,7.104293359363471e-05 +illusion_1.5L,sr,37,14.8,omega,lower,7.104293359363471e-05 +illusion_1.5L,sr,38,15.2,omega,front,-0.00015952056013451767 +illusion_1.5L,sr,38,15.2,omega,upper,9.092386515019573e-05 +illusion_1.5L,sr,38,15.2,omega,lower,9.092386515019573e-05 +illusion_1.5L,sr,39,15.6,omega,front,-0.0002150049852810114 +illusion_1.5L,sr,39,15.6,omega,upper,0.00011115826310035014 +illusion_1.5L,sr,39,15.6,omega,lower,0.00011115826310035014 +illusion_1.5L,sr,40,16.0,omega,front,-0.00025187536248827457 +illusion_1.5L,sr,40,16.0,omega,upper,0.00012282779723670853 +illusion_1.5L,sr,40,16.0,omega,lower,0.00012282779723670853 +illusion_1.5L,sr,41,16.4,omega,front,-0.00026035425026770936 +illusion_1.5L,sr,41,16.4,omega,upper,0.00011967516892463087 +illusion_1.5L,sr,41,16.4,omega,lower,0.00011967516892463087 +illusion_1.5L,sr,42,16.8,omega,front,-0.00023402659467731832 +illusion_1.5L,sr,42,16.8,omega,upper,9.771001147038328e-05 +illusion_1.5L,sr,42,16.8,omega,lower,9.771001147038328e-05 +illusion_1.5L,sr,43,17.2,omega,front,-0.00018207915413876285 +illusion_1.5L,sr,43,17.2,omega,upper,6.396796891998471e-05 +illusion_1.5L,sr,43,17.2,omega,lower,6.396796891998471e-05 +illusion_1.5L,sr,44,17.6,omega,front,-0.00012636622490472385 +illusion_1.5L,sr,44,17.6,omega,upper,3.4022313487601235e-05 +illusion_1.5L,sr,44,17.6,omega,lower,3.4022313487601235e-05 +illusion_1.5L,sr,45,18.0,omega,front,-5.9946663389240376e-05 +illusion_1.5L,sr,45,18.0,omega,upper,1.1795001196720362e-06 +illusion_1.5L,sr,45,18.0,omega,lower,1.1795001196720362e-06 +illusion_1.5L,sr,46,18.4,omega,front,-6.331504174741931e-07 +illusion_1.5L,sr,46,18.4,omega,upper,-2.344249604069957e-05 +illusion_1.5L,sr,46,18.4,omega,lower,-2.344249604069957e-05 +illusion_1.5L,sr,47,18.8,omega,front,5.325089679630038e-05 +illusion_1.5L,sr,47,18.8,omega,upper,-4.3292792037544435e-05 +illusion_1.5L,sr,47,18.8,omega,lower,-4.3292792037544435e-05 +illusion_1.5L,sr,48,19.2,omega,front,0.00010678860330198107 +illusion_1.5L,sr,48,19.2,omega,upper,-6.399030711805561e-05 +illusion_1.5L,sr,48,19.2,omega,lower,-6.399030711805561e-05 +illusion_1.5L,sr,49,19.6,omega,front,0.00014677025212976285 +illusion_1.5L,sr,49,19.6,omega,upper,-7.724221441883707e-05 +illusion_1.5L,sr,49,19.6,omega,lower,-7.724221441883707e-05 +illusion_1.5L,sr,50,20.0,omega,front,0.00018172078378196358 +illusion_1.5L,sr,50,20.0,omega,upper,-9.043052426451586e-05 +illusion_1.5L,sr,50,20.0,omega,lower,-9.043052426451586e-05 +illusion_1.5L,sr,51,20.4,omega,front,0.00018489055499382943 +illusion_1.5L,sr,51,20.4,omega,upper,-8.475732658397219e-05 +illusion_1.5L,sr,51,20.4,omega,lower,-8.475732658397219e-05 +illusion_1.5L,sr,52,20.8,omega,front,0.000173071637735798 +illusion_1.5L,sr,52,20.8,omega,upper,-7.326147484292792e-05 +illusion_1.5L,sr,52,20.8,omega,lower,-7.326147484292792e-05 +illusion_1.5L,sr,53,21.2,omega,front,0.00013735569284603234 +illusion_1.5L,sr,53,21.2,omega,upper,-4.966910552793038e-05 +illusion_1.5L,sr,53,21.2,omega,lower,-4.966910552793038e-05 +illusion_1.5L,sr,54,21.6,omega,front,0.00010061419792369422 +illusion_1.5L,sr,54,21.6,omega,upper,-3.0383264904706305e-05 +illusion_1.5L,sr,54,21.6,omega,lower,-3.0383264904706305e-05 +illusion_1.5L,sr,55,22.0,omega,front,5.2800115963951565e-05 +illusion_1.5L,sr,55,22.0,omega,upper,-6.989597442886505e-06 +illusion_1.5L,sr,55,22.0,omega,lower,-6.989597442886505e-06 +illusion_1.5L,sr,56,22.4,omega,front,1.1482205596524756e-05 +illusion_1.5L,sr,56,22.4,omega,upper,9.062260026564753e-06 +illusion_1.5L,sr,56,22.4,omega,lower,9.062260026564753e-06 +illusion_1.5L,sr,57,22.8,omega,front,-3.666679863959809e-05 +illusion_1.5L,sr,57,22.8,omega,upper,2.9139740107842057e-05 +illusion_1.5L,sr,57,22.8,omega,lower,2.9139740107842057e-05 +illusion_1.5L,sr,58,23.2,omega,front,-7.326429193725438e-05 +illusion_1.5L,sr,58,23.2,omega,upper,4.11498228284299e-05 +illusion_1.5L,sr,58,23.2,omega,lower,4.11498228284299e-05 +illusion_1.5L,sr,59,23.6,omega,front,-0.00011009346312854696 +illusion_1.5L,sr,59,23.6,omega,upper,5.5010307205574513e-05 +illusion_1.5L,sr,59,23.6,omega,lower,5.5010307205574513e-05 +illusion_1.5L,sr,60,24.0,omega,front,-0.00013120826010025121 +illusion_1.5L,sr,60,24.0,omega,upper,5.9988026375379646e-05 +illusion_1.5L,sr,60,24.0,omega,lower,5.9988026375379646e-05 +illusion_1.5L,sr,61,24.4,omega,front,-0.00014424311452349958 +illusion_1.5L,sr,61,24.4,omega,upper,6.259927758867315e-05 +illusion_1.5L,sr,61,24.4,omega,lower,6.259927758867315e-05 +illusion_1.5L,sr,62,24.8,omega,front,-0.0001410604610195583 +illusion_1.5L,sr,62,24.8,omega,upper,5.7442345159416446e-05 +illusion_1.5L,sr,62,24.8,omega,lower,5.7442345159416446e-05 +illusion_1.5L,sr,63,25.2,omega,front,-0.00011971405693369491 +illusion_1.5L,sr,63,25.2,omega,upper,4.33250598115157e-05 +illusion_1.5L,sr,63,25.2,omega,lower,4.33250598115157e-05 +illusion_1.5L,sr,64,25.6,omega,front,-9.230745951608513e-05 +illusion_1.5L,sr,64,25.6,omega,upper,2.8953521604061713e-05 +illusion_1.5L,sr,64,25.6,omega,lower,2.8953521604061713e-05 +illusion_1.5L,sr,65,26.0,omega,front,-5.609699274128487e-05 +illusion_1.5L,sr,65,26.0,omega,upper,1.1570999515216827e-05 +illusion_1.5L,sr,65,26.0,omega,lower,1.1570999515216827e-05 +illusion_1.5L,sr,66,26.4,omega,front,-2.2677216025225113e-05 +illusion_1.5L,sr,66,26.4,omega,upper,-1.3617423546362015e-06 +illusion_1.5L,sr,66,26.4,omega,lower,-1.3617423546362015e-06 +illusion_1.5L,sr,67,26.8,omega,front,1.1049829323072774e-05 +illusion_1.5L,sr,67,26.8,omega,upper,-1.3366216077578307e-05 +illusion_1.5L,sr,67,26.8,omega,lower,-1.3366216077578307e-05 +illusion_1.5L,sr,68,27.2,omega,front,4.111187494791916e-05 +illusion_1.5L,sr,68,27.2,omega,upper,-2.277744608931813e-05 +illusion_1.5L,sr,68,27.2,omega,lower,-2.277744608931813e-05 +illusion_1.5L,sr,69,27.6,omega,front,6.870417541152981e-05 +illusion_1.5L,sr,69,27.6,omega,upper,-3.1608565097333286e-05 +illusion_1.5L,sr,69,27.6,omega,lower,-3.1608565097333286e-05 +illusion_1.5L,sr,70,28.0,omega,front,9.529054087877576e-05 +illusion_1.5L,sr,70,28.0,omega,upper,-4.1875004523611176e-05 +illusion_1.5L,sr,70,28.0,omega,lower,-4.1875004523611176e-05 +illusion_1.5L,sr,71,28.4,omega,front,0.00010870892838141653 +illusion_1.5L,sr,71,28.4,omega,upper,-4.5299489813862146e-05 +illusion_1.5L,sr,71,28.4,omega,lower,-4.5299489813862146e-05 +illusion_1.5L,sr,72,28.8,omega,front,0.00011395293439750925 +illusion_1.5L,sr,72,28.8,omega,upper,-4.611940762050328e-05 +illusion_1.5L,sr,72,28.8,omega,lower,-4.611940762050328e-05 +illusion_1.5L,sr,73,29.2,omega,front,0.00010043368140658316 +illusion_1.5L,sr,73,29.2,omega,upper,-3.677056089246469e-05 +illusion_1.5L,sr,73,29.2,omega,lower,-3.677056089246469e-05 +illusion_1.5L,sr,74,29.6,omega,front,8.083830556475255e-05 +illusion_1.5L,sr,74,29.6,omega,upper,-2.6564760607825297e-05 +illusion_1.5L,sr,74,29.6,omega,lower,-2.6564760607825297e-05 +illusion_1.5L,sr,75,30.0,omega,front,6.018021770367123e-05 +illusion_1.5L,sr,75,30.0,omega,upper,-1.8681835145589328e-05 +illusion_1.5L,sr,75,30.0,omega,lower,-1.8681835145589328e-05 +illusion_1.5L,sr,76,30.4,omega,front,3.174698476357547e-05 +illusion_1.5L,sr,76,30.4,omega,upper,-7.2901937860024236e-06 +illusion_1.5L,sr,76,30.4,omega,lower,-7.2901937860024236e-06 +illusion_1.5L,sr,77,30.8,omega,front,9.607407784103656e-06 +illusion_1.5L,sr,77,30.8,omega,upper,-1.7351096862591731e-06 +illusion_1.5L,sr,77,30.8,omega,lower,-1.7351096862591731e-06 +illusion_1.5L,sr,78,31.2,omega,front,-1.6763619768655046e-05 +illusion_1.5L,sr,78,31.2,omega,upper,6.809319186837038e-06 +illusion_1.5L,sr,78,31.2,omega,lower,6.809319186837038e-06 +illusion_1.5L,sr,79,31.6,omega,front,-3.722340861977418e-05 +illusion_1.5L,sr,79,31.6,omega,upper,1.1882455900604182e-05 +illusion_1.5L,sr,79,31.6,omega,lower,1.1882455900604182e-05 +illusion_1.5L,sr,80,32.0,omega,front,-6.568198536207673e-05 +illusion_1.5L,sr,80,32.0,omega,upper,2.4549406024865806e-05 +illusion_1.5L,sr,80,32.0,omega,lower,2.4549406024865806e-05 +illusion_1.5L,sr,81,32.4,omega,front,-8.028983961092696e-05 +illusion_1.5L,sr,81,32.4,omega,upper,2.933402224064727e-05 +illusion_1.5L,sr,81,32.4,omega,lower,2.933402224064727e-05 +illusion_1.5L,sr,82,32.8,omega,front,-9.557710106610391e-05 +illusion_1.5L,sr,82,32.8,omega,upper,3.7405709051132816e-05 +illusion_1.5L,sr,82,32.8,omega,lower,3.7405709051132816e-05 +illusion_1.5L,sr,83,33.2,omega,front,-9.050633849596902e-05 +illusion_1.5L,sr,83,33.2,omega,upper,3.3527330737326414e-05 +illusion_1.5L,sr,83,33.2,omega,lower,3.3527330737326414e-05 +illusion_1.5L,sr,84,33.6,omega,front,-8.562063495098797e-05 +illusion_1.5L,sr,84,33.6,omega,upper,3.285143713008844e-05 +illusion_1.5L,sr,84,33.6,omega,lower,3.285143713008844e-05 +illusion_1.5L,sr,85,34.0,omega,front,-6.819905099027246e-05 +illusion_1.5L,sr,85,34.0,omega,upper,2.5667661923984113e-05 +illusion_1.5L,sr,85,34.0,omega,lower,2.5667661923984113e-05 +illusion_1.5L,sr,86,34.4,omega,front,-5.1501632979076564e-05 +illusion_1.5L,sr,86,34.4,omega,upper,2.111436939654588e-05 +illusion_1.5L,sr,86,34.4,omega,lower,2.111436939654588e-05 +illusion_1.5L,sr,87,34.8,omega,front,-2.902249607637809e-05 +illusion_1.5L,sr,87,34.8,omega,upper,1.3568385729984049e-05 +illusion_1.5L,sr,87,34.8,omega,lower,1.3568385729984049e-05 +illusion_1.5L,sr,88,35.2,omega,front,-6.666446065356959e-06 +illusion_1.5L,sr,88,35.2,omega,upper,6.493288787361258e-06 +illusion_1.5L,sr,88,35.2,omega,lower,6.493288787361258e-06 +illusion_1.5L,sr,89,35.6,omega,front,1.6225272516291815e-05 +illusion_1.5L,sr,89,35.6,omega,upper,-1.4371206395131023e-06 +illusion_1.5L,sr,89,35.6,omega,lower,-1.4371206395131023e-06 +illusion_1.5L,sr,90,36.0,omega,front,3.813924571176248e-05 +illusion_1.5L,sr,90,36.0,omega,upper,-9.877214467981025e-06 +illusion_1.5L,sr,90,36.0,omega,lower,-9.877214467981025e-06 +illusion_1.5L,sr,91,36.4,omega,front,5.572468671760533e-05 +illusion_1.5L,sr,91,36.4,omega,upper,-1.6994425125173156e-05 +illusion_1.5L,sr,91,36.4,omega,lower,-1.6994425125173156e-05 +illusion_1.5L,sr,92,36.8,omega,front,7.019581665602362e-05 +illusion_1.5L,sr,92,36.8,omega,upper,-2.418651304485077e-05 +illusion_1.5L,sr,92,36.8,omega,lower,-2.418651304485077e-05 +illusion_1.5L,sr,93,37.2,omega,front,7.668507656409342e-05 +illusion_1.5L,sr,93,37.2,omega,upper,-2.8143900730000018e-05 +illusion_1.5L,sr,93,37.2,omega,lower,-2.8143900730000018e-05 +illusion_1.5L,sr,94,37.6,omega,front,7.642996539454307e-05 +illusion_1.5L,sr,94,37.6,omega,upper,-2.9826044683248718e-05 +illusion_1.5L,sr,94,37.6,omega,lower,-2.9826044683248718e-05 +illusion_1.5L,sr,95,38.0,omega,front,6.999764866973533e-05 +illusion_1.5L,sr,95,38.0,omega,upper,-2.9429349190359596e-05 +illusion_1.5L,sr,95,38.0,omega,lower,-2.9429349190359596e-05 +illusion_1.5L,sr,96,38.4,omega,front,5.8319348281528145e-05 +illusion_1.5L,sr,96,38.4,omega,upper,-2.7154720650762363e-05 +illusion_1.5L,sr,96,38.4,omega,lower,-2.7154720650762363e-05 +illusion_1.5L,sr,97,38.8,omega,front,4.36319615569989e-05 +illusion_1.5L,sr,97,38.8,omega,upper,-2.395256569928025e-05 +illusion_1.5L,sr,97,38.8,omega,lower,-2.395256569928025e-05 +illusion_1.5L,sr,98,39.2,omega,front,2.1357957479565552e-05 +illusion_1.5L,sr,98,39.2,omega,upper,-1.570890363377833e-05 +illusion_1.5L,sr,98,39.2,omega,lower,-1.570890363377833e-05 +illusion_1.5L,sr,99,39.6,omega,front,-1.5138123464136093e-07 +illusion_1.5L,sr,99,39.6,omega,upper,-7.867226839641407e-06 +illusion_1.5L,sr,99,39.6,omega,lower,-7.867226839641407e-06 +illusion_1.5L,sr,100,40.0,omega,front,-2.6937848691287423e-05 +illusion_1.5L,sr,100,40.0,omega,upper,4.672690510801741e-06 +illusion_1.5L,sr,100,40.0,omega,lower,4.672690510801741e-06 +illusion_1.5L,sr,101,40.4,omega,front,-4.522908952159198e-05 +illusion_1.5L,sr,101,40.4,omega,upper,1.233105178588427e-05 +illusion_1.5L,sr,101,40.4,omega,lower,1.233105178588427e-05 +illusion_1.5L,sr,102,40.8,omega,front,-6.220308379295069e-05 +illusion_1.5L,sr,102,40.8,omega,upper,2.091095044206185e-05 +illusion_1.5L,sr,102,40.8,omega,lower,2.091095044206185e-05 +illusion_1.5L,sr,103,41.2,omega,front,-6.782879501506585e-05 +illusion_1.5L,sr,103,41.2,omega,upper,2.3397144373095425e-05 +illusion_1.5L,sr,103,41.2,omega,lower,2.3397144373095425e-05 +illusion_1.5L,sr,104,41.6,omega,front,-7.495173285231665e-05 +illusion_1.5L,sr,104,41.6,omega,upper,2.945705339999386e-05 +illusion_1.5L,sr,104,41.6,omega,lower,2.945705339999386e-05 +illusion_1.5L,sr,105,42.0,omega,front,-6.70986896737525e-05 +illusion_1.5L,sr,105,42.0,omega,upper,2.6800497371159243e-05 +illusion_1.5L,sr,105,42.0,omega,lower,2.6800497371159243e-05 +illusion_1.5L,sr,106,42.4,omega,front,-5.271856892085477e-05 +illusion_1.5L,sr,106,42.4,omega,upper,2.1394669450593707e-05 +illusion_1.5L,sr,106,42.4,omega,lower,2.1394669450593707e-05 +illusion_1.5L,sr,107,42.8,omega,front,-3.3164060096028614e-05 +illusion_1.5L,sr,107,42.8,omega,upper,1.373630635520982e-05 +illusion_1.5L,sr,107,42.8,omega,lower,1.373630635520982e-05 +illusion_1.5L,sr,108,43.2,omega,front,-1.3506738144720264e-05 +illusion_1.5L,sr,108,43.2,omega,upper,6.977192282991772e-06 +illusion_1.5L,sr,108,43.2,omega,lower,6.977192282991772e-06 +illusion_1.5L,sr,109,43.6,omega,front,1.0296404856377507e-06 +illusion_1.5L,sr,109,43.6,omega,upper,4.166193668507616e-06 +illusion_1.5L,sr,109,43.6,omega,lower,4.166193668507616e-06 +illusion_1.5L,sr,110,44.0,omega,front,2.454823282680728e-05 +illusion_1.5L,sr,110,44.0,omega,upper,-5.785835403199005e-06 +illusion_1.5L,sr,110,44.0,omega,lower,-5.785835403199005e-06 +illusion_1.5L,sr,111,44.4,omega,front,3.3450786402671396e-05 +illusion_1.5L,sr,111,44.4,omega,upper,-6.162328568288557e-06 +illusion_1.5L,sr,111,44.4,omega,lower,-6.162328568288557e-06 +illusion_1.5L,sr,112,44.8,omega,front,5.70124959295501e-05 +illusion_1.5L,sr,112,44.8,omega,upper,-1.9069363255558442e-05 +illusion_1.5L,sr,112,44.8,omega,lower,-1.9069363255558442e-05 +illusion_1.5L,sr,113,45.2,omega,front,5.429188200524321e-05 +illusion_1.5L,sr,113,45.2,omega,upper,-1.4689963323822192e-05 +illusion_1.5L,sr,113,45.2,omega,lower,-1.4689963323822192e-05 +illusion_1.5L,sr,114,45.6,omega,front,6.4817579355722e-05 +illusion_1.5L,sr,114,45.6,omega,upper,-2.241523136492934e-05 +illusion_1.5L,sr,114,45.6,omega,lower,-2.241523136492934e-05 +illusion_1.5L,sr,115,46.0,omega,front,4.7657203772165856e-05 +illusion_1.5L,sr,115,46.0,omega,upper,-1.2069678735299981e-05 +illusion_1.5L,sr,115,46.0,omega,lower,-1.2069678735299981e-05 +illusion_1.5L,sr,116,46.4,omega,front,4.6245656715045884e-05 +illusion_1.5L,sr,116,46.4,omega,upper,-1.5481082025614497e-05 +illusion_1.5L,sr,116,46.4,omega,lower,-1.5481082025614497e-05 +illusion_1.5L,sr,117,46.8,omega,front,2.6961216130112903e-05 +illusion_1.5L,sr,117,46.8,omega,upper,-7.435452852289585e-06 +illusion_1.5L,sr,117,46.8,omega,lower,-7.435452852289585e-06 +illusion_1.5L,sr,118,47.2,omega,front,2.0640465714437733e-05 +illusion_1.5L,sr,118,47.2,omega,upper,-1.0009787748752044e-05 +illusion_1.5L,sr,118,47.2,omega,lower,-1.0009787748752044e-05 +illusion_1.5L,sr,119,47.6,omega,front,5.270577766984964e-06 +illusion_1.5L,sr,119,47.6,omega,upper,-6.269757851339914e-06 +illusion_1.5L,sr,119,47.6,omega,lower,-6.269757851339914e-06 +illusion_1.5L,sr,120,48.0,omega,front,-6.651203317898993e-06 +illusion_1.5L,sr,120,48.0,omega,upper,-4.6683987783695085e-06 +illusion_1.5L,sr,120,48.0,omega,lower,-4.6683987783695085e-06 +illusion_1.5L,sr,121,48.4,omega,front,-2.577612464624773e-05 +illusion_1.5L,sr,121,48.4,omega,upper,3.214639280718461e-06 +illusion_1.5L,sr,121,48.4,omega,lower,3.214639280718461e-06 +illusion_1.5L,sr,122,48.8,omega,front,-3.966789390014922e-05 +illusion_1.5L,sr,122,48.8,omega,upper,8.674220137374067e-06 +illusion_1.5L,sr,122,48.8,omega,lower,8.674220137374067e-06 +illusion_1.5L,sr,123,49.2,omega,front,-4.794426557693417e-05 +illusion_1.5L,sr,123,49.2,omega,upper,1.1802315412175988e-05 +illusion_1.5L,sr,123,49.2,omega,lower,1.1802315412175988e-05 +illusion_1.5L,sr,124,49.6,omega,front,-5.219106374922698e-05 +illusion_1.5L,sr,124,49.6,omega,upper,1.4057539658241352e-05 +illusion_1.5L,sr,124,49.6,omega,lower,1.4057539658241352e-05 +illusion_1.5L,sr,125,50.0,omega,front,-4.473600828408468e-05 +illusion_1.5L,sr,125,50.0,omega,upper,9.886034450530858e-06 +illusion_1.5L,sr,125,50.0,omega,lower,9.886034450530858e-06 +illusion_1.5L,sr,126,50.4,omega,front,-4.221345718513292e-05 +illusion_1.5L,sr,126,50.4,omega,upper,1.1494534188649202e-05 +illusion_1.5L,sr,126,50.4,omega,lower,1.1494534188649202e-05 +illusion_1.5L,sr,127,50.8,omega,front,-3.005958703419142e-05 +illusion_1.5L,sr,127,50.8,omega,upper,7.798064229701494e-06 +illusion_1.5L,sr,127,50.8,omega,lower,7.798064229701494e-06 +illusion_1.5L,sr,128,51.2,omega,front,-2.2578815562690308e-05 +illusion_1.5L,sr,128,51.2,omega,upper,8.809078754821402e-06 +illusion_1.5L,sr,128,51.2,omega,lower,8.809078754821402e-06 +illusion_1.5L,sr,129,51.6,omega,front,-1.1489370937329927e-05 +illusion_1.5L,sr,129,51.6,omega,upper,7.775181207680626e-06 +illusion_1.5L,sr,129,51.6,omega,lower,7.775181207680626e-06 +illusion_1.5L,sr,130,52.0,omega,front,-6.340972677759336e-07 +illusion_1.5L,sr,130,52.0,omega,upper,6.82045942639464e-06 +illusion_1.5L,sr,130,52.0,omega,lower,6.82045942639464e-06 +illusion_1.5L,sr,131,52.4,omega,front,1.5303409671732494e-05 +illusion_1.5L,sr,131,52.4,omega,upper,1.4189638113640963e-06 +illusion_1.5L,sr,131,52.4,omega,lower,1.4189638113640963e-06 +illusion_1.5L,sr,132,52.8,omega,front,2.995667489185113e-05 +illusion_1.5L,sr,132,52.8,omega,upper,-4.19937223638707e-06 +illusion_1.5L,sr,132,52.8,omega,lower,-4.19937223638707e-06 +illusion_1.5L,sr,133,53.2,omega,front,3.908254387598169e-05 +illusion_1.5L,sr,133,53.2,omega,upper,-7.315925817965932e-06 +illusion_1.5L,sr,133,53.2,omega,lower,-7.315925817965932e-06 +illusion_1.5L,sr,134,53.6,omega,front,4.737030054438464e-05 +illusion_1.5L,sr,134,53.6,omega,upper,-1.1696959442788202e-05 +illusion_1.5L,sr,134,53.6,omega,lower,-1.1696959442788202e-05 +illusion_1.5L,sr,135,54.0,omega,front,4.311020084197897e-05 +illusion_1.5L,sr,135,54.0,omega,upper,-8.884931651629846e-06 +illusion_1.5L,sr,135,54.0,omega,lower,-8.884931651629846e-06 +illusion_1.5L,sr,136,54.4,omega,front,4.239232682534816e-05 +illusion_1.5L,sr,136,54.4,omega,upper,-1.0783890134833697e-05 +illusion_1.5L,sr,136,54.4,omega,lower,-1.0783890134833697e-05 +illusion_1.5L,sr,137,54.8,omega,front,3.157348270876249e-05 +illusion_1.5L,sr,137,54.8,omega,upper,-7.109416630918242e-06 +illusion_1.5L,sr,137,54.8,omega,lower,-7.109416630918242e-06 +illusion_1.5L,sr,138,55.2,omega,front,2.7902707273461428e-05 +illusion_1.5L,sr,138,55.2,omega,upper,-1.0173641727975572e-05 +illusion_1.5L,sr,138,55.2,omega,lower,-1.0173641727975572e-05 +illusion_1.5L,sr,139,55.6,omega,front,1.7152172943918563e-05 +illusion_1.5L,sr,139,55.6,omega,upper,-8.868168379015124e-06 +illusion_1.5L,sr,139,55.6,omega,lower,-8.868168379015124e-06 +illusion_1.5L,sr,140,56.0,omega,front,8.451022871108225e-06 +illusion_1.5L,sr,140,56.0,omega,upper,-9.306387817161477e-06 +illusion_1.5L,sr,140,56.0,omega,lower,-9.306387817161477e-06 +illusion_1.5L,sr,141,56.4,omega,front,-6.12501894486063e-06 +illusion_1.5L,sr,141,56.4,omega,upper,-4.999602375294898e-06 +illusion_1.5L,sr,141,56.4,omega,lower,-4.999602375294898e-06 +illusion_1.5L,sr,142,56.8,omega,front,-2.226650146338948e-05 +illusion_1.5L,sr,142,56.8,omega,upper,1.3353742216708555e-06 +illusion_1.5L,sr,142,56.8,omega,lower,1.3353742216708555e-06 +illusion_1.5L,sr,143,57.2,omega,front,-2.910684991537252e-05 +illusion_1.5L,sr,143,57.2,omega,upper,2.1432240673767423e-06 +illusion_1.5L,sr,143,57.2,omega,lower,2.1432240673767423e-06 +illusion_1.5L,sr,144,57.6,omega,front,-4.3546553696130686e-05 +illusion_1.5L,sr,144,57.6,omega,upper,1.0220051825709543e-05 +illusion_1.5L,sr,144,57.6,omega,lower,1.0220051825709543e-05 +illusion_1.5L,sr,145,58.0,omega,front,-3.648819547456779e-05 +illusion_1.5L,sr,145,58.0,omega,upper,4.376709225975134e-06 +illusion_1.5L,sr,145,58.0,omega,lower,4.376709225975134e-06 +illusion_1.5L,sr,146,58.4,omega,front,-4.4131891614380344e-05 +illusion_1.5L,sr,146,58.4,omega,upper,1.1409684180546214e-05 +illusion_1.5L,sr,146,58.4,omega,lower,1.1409684180546214e-05 +illusion_1.5L,sr,147,58.8,omega,front,-2.8413598931150003e-05 +illusion_1.5L,sr,147,58.8,omega,upper,3.163423638666285e-06 +illusion_1.5L,sr,147,58.8,omega,lower,3.163423638666285e-06 +illusion_1.5L,sr,148,59.2,omega,front,-3.223112875373982e-05 +illusion_1.5L,sr,148,59.2,omega,upper,1.0946531948139195e-05 +illusion_1.5L,sr,148,59.2,omega,lower,1.0946531948139195e-05 +illusion_1.5L,sr,149,59.6,omega,front,-1.721983991250611e-05 +illusion_1.5L,sr,149,59.6,omega,upper,5.970062597309457e-06 +illusion_1.5L,sr,149,59.6,omega,lower,5.970062597309457e-06 +illusion_1.5L,sr,150,60.0,omega,front,-1.6298451167218753e-05 +illusion_1.5L,sr,150,60.0,omega,upper,1.1878833865338226e-05 +illusion_1.5L,sr,150,60.0,omega,lower,1.1878833865338226e-05 +illusion_1.5L,sr,151,60.4,omega,front,2.7476503569453734e-06 +illusion_1.5L,sr,151,60.4,omega,upper,4.322958476455224e-06 +illusion_1.5L,sr,151,60.4,omega,lower,4.322958476455224e-06 +illusion_1.5L,sr,152,60.8,omega,front,1.2678757806395512e-05 +illusion_1.5L,sr,152,60.8,omega,upper,2.8687523266478917e-06 +illusion_1.5L,sr,152,60.8,omega,lower,2.8687523266478917e-06 +illusion_1.5L,sr,153,61.2,omega,front,2.427758515370207e-05 +illusion_1.5L,sr,153,61.2,omega,upper,-8.868489534247584e-07 +illusion_1.5L,sr,153,61.2,omega,lower,-8.868489534247584e-07 +illusion_1.5L,sr,154,61.6,omega,front,3.4969398152952526e-05 +illusion_1.5L,sr,154,61.6,omega,upper,-5.451277465568401e-06 +illusion_1.5L,sr,154,61.6,omega,lower,-5.451277465568401e-06 +illusion_1.5L,sr,155,62.0,omega,front,3.456662408442994e-05 +illusion_1.5L,sr,155,62.0,omega,upper,-3.5923495533889126e-06 +illusion_1.5L,sr,155,62.0,omega,lower,-3.5923495533889126e-06 +illusion_1.5L,sr,156,62.4,omega,front,3.937031032339361e-05 +illusion_1.5L,sr,156,62.4,omega,upper,-7.540733110287107e-06 +illusion_1.5L,sr,156,62.4,omega,lower,-7.540733110287107e-06 +illusion_1.5L,sr,157,62.8,omega,front,3.0159476532294616e-05 +illusion_1.5L,sr,157,62.8,omega,upper,-3.1134860944547623e-06 +illusion_1.5L,sr,157,62.8,omega,lower,-3.1134860944547623e-06 +illusion_1.5L,sr,158,63.2,omega,front,3.1215008065072595e-05 +illusion_1.5L,sr,158,63.2,omega,upper,-8.021135014522098e-06 +illusion_1.5L,sr,158,63.2,omega,lower,-8.021135014522098e-06 +illusion_1.5L,sr,159,63.6,omega,front,2.1224213588206602e-05 +illusion_1.5L,sr,159,63.6,omega,upper,-6.114348873174913e-06 +illusion_1.5L,sr,159,63.6,omega,lower,-6.114348873174913e-06 +illusion_1.5L,sr,160,64.0,omega,front,1.858286534915558e-05 +illusion_1.5L,sr,160,64.0,omega,upper,-1.040775571144821e-05 +illusion_1.5L,sr,160,64.0,omega,lower,-1.040775571144821e-05 +illusion_1.5L,sr,161,64.4,omega,front,5.70418060804885e-06 +illusion_1.5L,sr,161,64.4,omega,upper,-7.329817754096824e-06 +illusion_1.5L,sr,161,64.4,omega,lower,-7.329817754096824e-06 +illusion_1.5L,sr,162,64.8,omega,front,-7.521710010746745e-06 +illusion_1.5L,sr,162,64.8,omega,upper,-3.6606490589432064e-06 +illusion_1.5L,sr,162,64.8,omega,lower,-3.6606490589432064e-06 +illusion_1.5L,sr,163,65.2,omega,front,-1.5124184945218209e-05 +illusion_1.5L,sr,163,65.2,omega,upper,-3.3161738105690064e-06 +illusion_1.5L,sr,163,65.2,omega,lower,-3.3161738105690064e-06 +illusion_1.5L,sr,164,65.6,omega,front,-2.9620710614554e-05 +illusion_1.5L,sr,164,65.6,omega,upper,3.3559302057968934e-06 +illusion_1.5L,sr,164,65.6,omega,lower,3.3559302057968934e-06 +illusion_1.5L,sr,165,66.0,omega,front,-2.8041768166824286e-05 +illusion_1.5L,sr,165,66.0,omega,upper,-2.3431644950257237e-07 +illusion_1.5L,sr,165,66.0,omega,lower,-2.3431644950257237e-07 +illusion_1.5L,sr,166,66.4,omega,front,-3.703784309128766e-05 +illusion_1.5L,sr,166,66.4,omega,upper,5.8147666463092764e-06 +illusion_1.5L,sr,166,66.4,omega,lower,5.8147666463092764e-06 +illusion_1.5L,sr,167,66.8,omega,front,-2.753243748973733e-05 +illusion_1.5L,sr,167,66.8,omega,upper,1.568871547484238e-07 +illusion_1.5L,sr,167,66.8,omega,lower,1.568871547484238e-07 +illusion_1.5L,sr,168,67.2,omega,front,-3.1448976254080696e-05 +illusion_1.5L,sr,168,67.2,omega,upper,6.252700484210595e-06 +illusion_1.5L,sr,168,67.2,omega,lower,6.252700484210595e-06 +illusion_1.5L,sr,169,67.6,omega,front,-2.186177778202351e-05 +illusion_1.5L,sr,169,67.6,omega,upper,3.912791910172815e-06 +illusion_1.5L,sr,169,67.6,omega,lower,3.912791910172815e-06 +illusion_1.5L,sr,170,68.0,omega,front,-2.1600955876036835e-05 +illusion_1.5L,sr,170,68.0,omega,upper,9.50368578955363e-06 +illusion_1.5L,sr,170,68.0,omega,lower,9.50368578955363e-06 +illusion_1.5L,sr,171,68.4,omega,front,-1.1150158807737314e-05 +illusion_1.5L,sr,171,68.4,omega,upper,8.03415435731699e-06 +illusion_1.5L,sr,171,68.4,omega,lower,8.03415435731699e-06 +illusion_1.5L,sr,172,68.8,omega,front,1.7204458051951756e-06 +illusion_1.5L,sr,172,68.8,omega,upper,4.73017141503742e-06 +illusion_1.5L,sr,172,68.8,omega,lower,4.73017141503742e-06 +illusion_1.5L,sr,173,69.2,omega,front,8.081645092223865e-06 +illusion_1.5L,sr,173,69.2,omega,upper,5.669921979950358e-06 +illusion_1.5L,sr,173,69.2,omega,lower,5.669921979950358e-06 +illusion_1.5L,sr,174,69.6,omega,front,2.4114761224352175e-05 +illusion_1.5L,sr,174,69.6,omega,upper,-1.5230555551882727e-06 +illusion_1.5L,sr,174,69.6,omega,lower,-1.5230555551882727e-06 +illusion_1.5L,sr,175,70.0,omega,front,2.2927506951803262e-05 +illusion_1.5L,sr,175,70.0,omega,upper,2.5946463413419747e-06 +illusion_1.5L,sr,175,70.0,omega,lower,2.5946463413419747e-06 +illusion_1.5L,sr,176,70.4,omega,front,3.500657445180411e-05 +illusion_1.5L,sr,176,70.4,omega,upper,-4.7627287738512616e-06 +illusion_1.5L,sr,176,70.4,omega,lower,-4.7627287738512616e-06 +illusion_1.5L,sr,177,70.8,omega,front,2.5492147238509385e-05 +illusion_1.5L,sr,177,70.8,omega,upper,1.9356654750226494e-06 +illusion_1.5L,sr,177,70.8,omega,lower,1.9356654750226494e-06 +illusion_1.5L,sr,178,71.2,omega,front,3.274695888825223e-05 +illusion_1.5L,sr,178,71.2,omega,upper,-5.616277815227097e-06 +illusion_1.5L,sr,178,71.2,omega,lower,-5.616277815227097e-06 +illusion_1.5L,sr,179,71.6,omega,front,2.1786112869459223e-05 +illusion_1.5L,sr,179,71.6,omega,upper,-1.4194388310145855e-06 +illusion_1.5L,sr,179,71.6,omega,lower,-1.4194388310145855e-06 +illusion_1.5L,sr,180,72.0,omega,front,2.4650542835797044e-05 +illusion_1.5L,sr,180,72.0,omega,upper,-8.7078797046441e-06 +illusion_1.5L,sr,180,72.0,omega,lower,-8.7078797046441e-06 +illusion_1.5L,sr,181,72.4,omega,front,1.4488437735307968e-05 +illusion_1.5L,sr,181,72.4,omega,upper,-7.161855193753655e-06 +illusion_1.5L,sr,181,72.4,omega,lower,-7.161855193753655e-06 +illusion_1.5L,sr,182,72.8,omega,front,6.072568884099225e-06 +illusion_1.5L,sr,182,72.8,omega,upper,-7.114813389905444e-06 +illusion_1.5L,sr,182,72.8,omega,lower,-7.114813389905444e-06 +illusion_1.5L,sr,183,73.2,omega,front,-4.08230088188433e-06 +illusion_1.5L,sr,183,73.2,omega,upper,-5.522128712506895e-06 +illusion_1.5L,sr,183,73.2,omega,lower,-5.522128712506895e-06 +illusion_1.5L,sr,184,73.6,omega,front,-1.567881900451925e-05 +illusion_1.5L,sr,184,73.6,omega,upper,-2.1138333444347886e-06 +illusion_1.5L,sr,184,73.6,omega,lower,-2.1138333444347886e-06 +illusion_1.5L,sr,185,74.0,omega,front,-1.9968589569020722e-05 +illusion_1.5L,sr,185,74.0,omega,upper,-2.936945360943813e-06 +illusion_1.5L,sr,185,74.0,omega,lower,-2.936945360943813e-06 +illusion_1.5L,sr,186,74.4,omega,front,-2.916181409782205e-05 +illusion_1.5L,sr,186,74.4,omega,upper,1.3761895872731189e-06 +illusion_1.5L,sr,186,74.4,omega,lower,1.3761895872731189e-06 +illusion_1.5L,sr,187,74.8,omega,front,-2.5797174307079506e-05 +illusion_1.5L,sr,187,74.8,omega,upper,-1.8155148621528187e-06 +illusion_1.5L,sr,187,74.8,omega,lower,-1.8155148621528187e-06 +illusion_1.5L,sr,188,75.2,omega,front,-2.9432406850354586e-05 +illusion_1.5L,sr,188,75.2,omega,upper,2.0292818108633147e-06 +illusion_1.5L,sr,188,75.2,omega,lower,2.0292818108633147e-06 +illusion_1.5L,sr,189,75.6,omega,front,-2.383275944499212e-05 +illusion_1.5L,sr,189,75.6,omega,upper,8.423252127922124e-07 +illusion_1.5L,sr,189,75.6,omega,lower,8.423252127922124e-07 +illusion_1.5L,sr,190,76.0,omega,front,-2.3467572818627327e-05 +illusion_1.5L,sr,190,76.0,omega,upper,5.024918859549803e-06 +illusion_1.5L,sr,190,76.0,omega,lower,5.024918859549803e-06 +illusion_1.5L,sr,191,76.4,omega,front,-1.9172184948576984e-05 +illusion_1.5L,sr,191,76.4,omega,upper,7.3572073140956365e-06 +illusion_1.5L,sr,191,76.4,omega,lower,7.3572073140956365e-06 +illusion_1.5L,sr,192,76.8,omega,front,-9.975275025899973e-06 +illusion_1.5L,sr,192,76.8,omega,upper,6.583739063564841e-06 +illusion_1.5L,sr,192,76.8,omega,lower,6.583739063564841e-06 +illusion_1.5L,sr,193,77.2,omega,front,-2.2691468809995194e-06 +illusion_1.5L,sr,193,77.2,omega,upper,6.9172224905032e-06 +illusion_1.5L,sr,193,77.2,omega,lower,6.9172224905032e-06 +illusion_1.5L,sr,194,77.6,omega,front,1.0758285296597232e-05 +illusion_1.5L,sr,194,77.6,omega,upper,2.854916323790351e-06 +illusion_1.5L,sr,194,77.6,omega,lower,2.854916323790351e-06 +illusion_1.5L,sr,195,78.0,omega,front,1.4212703698053518e-05 +illusion_1.5L,sr,195,78.0,omega,upper,4.929375418890811e-06 +illusion_1.5L,sr,195,78.0,omega,lower,4.929375418890811e-06 +illusion_1.5L,sr,196,78.4,omega,front,2.6225153281777964e-05 +illusion_1.5L,sr,196,78.4,omega,upper,-6.162956561875724e-07 +illusion_1.5L,sr,196,78.4,omega,lower,-6.162956561875724e-07 +illusion_1.5L,sr,197,78.8,omega,front,2.2838451226730728e-05 +illusion_1.5L,sr,197,78.8,omega,upper,3.5841224098474497e-06 +illusion_1.5L,sr,197,78.8,omega,lower,3.5841224098474497e-06 +illusion_1.5L,sr,198,79.2,omega,front,2.963944924943951e-05 +illusion_1.5L,sr,198,79.2,omega,upper,-1.5408518351360187e-06 +illusion_1.5L,sr,198,79.2,omega,lower,-1.5408518351360187e-06 +illusion_1.5L,sr,199,79.6,omega,front,2.2663175232533612e-05 +illusion_1.5L,sr,199,79.6,omega,upper,1.671621768774209e-06 +illusion_1.5L,sr,199,79.6,omega,lower,1.671621768774209e-06 +illusion_1.5L,sr,200,80.0,omega,front,2.5377418569111006e-05 +illusion_1.5L,sr,200,80.0,omega,upper,-3.9292894389143795e-06 +illusion_1.5L,sr,200,80.0,omega,lower,-3.9292894389143795e-06 +illusion_1.5L,sr,201,80.4,omega,front,2.0049480120864528e-05 +illusion_1.5L,sr,201,80.4,omega,upper,-4.892095499097853e-06 +illusion_1.5L,sr,201,80.4,omega,lower,-4.892095499097853e-06 +illusion_1.5L,sr,202,80.8,omega,front,1.5669718202739412e-05 +illusion_1.5L,sr,202,80.8,omega,upper,-7.369427171639428e-06 +illusion_1.5L,sr,202,80.8,omega,lower,-7.369427171639428e-06 +illusion_1.5L,sr,203,81.2,omega,front,6.712774590307146e-06 +illusion_1.5L,sr,203,81.2,omega,upper,-6.756652542334925e-06 +illusion_1.5L,sr,203,81.2,omega,lower,-6.756652542334925e-06 +illusion_1.5L,sr,204,81.6,omega,front,-4.5694278920687534e-06 +illusion_1.5L,sr,204,81.6,omega,upper,-4.247098164552304e-06 +illusion_1.5L,sr,204,81.6,omega,lower,-4.247098164552304e-06 +illusion_1.5L,sr,205,82.0,omega,front,-9.050433687910648e-06 +illusion_1.5L,sr,205,82.0,omega,upper,-6.087429112805847e-06 +illusion_1.5L,sr,205,82.0,omega,lower,-6.087429112805847e-06 +illusion_1.5L,sr,206,82.4,omega,front,-2.1950525266766634e-05 +illusion_1.5L,sr,206,82.4,omega,upper,-6.421579513029782e-07 +illusion_1.5L,sr,206,82.4,omega,lower,-6.421579513029782e-07 +illusion_1.5L,sr,207,82.8,omega,front,-1.9546491146042038e-05 +illusion_1.5L,sr,207,82.8,omega,upper,-5.04969790513881e-06 +illusion_1.5L,sr,207,82.8,omega,lower,-5.04969790513881e-06 +illusion_1.5L,sr,208,83.2,omega,front,-2.8205336734078367e-05 +illusion_1.5L,sr,208,83.2,omega,upper,4.0293239673395985e-07 +illusion_1.5L,sr,208,83.2,omega,lower,4.0293239673395985e-07 +illusion_1.5L,sr,209,83.6,omega,front,-2.14447874947081e-05 +illusion_1.5L,sr,209,83.6,omega,upper,-3.697106959782148e-06 +illusion_1.5L,sr,209,83.6,omega,lower,-3.697106959782148e-06 +illusion_1.5L,sr,210,84.0,omega,front,-2.5719166852282115e-05 +illusion_1.5L,sr,210,84.0,omega,upper,2.0996887617411727e-06 +illusion_1.5L,sr,210,84.0,omega,lower,2.0996887617411727e-06 +illusion_1.5L,sr,211,84.4,omega,front,-1.9874427566069152e-05 +illusion_1.5L,sr,211,84.4,omega,upper,1.9371064675893777e-06 +illusion_1.5L,sr,211,84.4,omega,lower,1.9371064675893777e-06 +illusion_1.5L,sr,212,84.8,omega,front,-1.9377399062769345e-05 +illusion_1.5L,sr,212,84.8,omega,upper,6.809616435234037e-06 +illusion_1.5L,sr,212,84.8,omega,lower,6.809616435234037e-06 +illusion_1.5L,sr,213,85.2,omega,front,-1.1405803665477856e-05 +illusion_1.5L,sr,213,85.2,omega,upper,6.755128354810629e-06 +illusion_1.5L,sr,213,85.2,omega,lower,6.755128354810629e-06 +illusion_1.5L,sr,214,85.6,omega,front,-8.155196740721772e-07 +illusion_1.5L,sr,214,85.6,omega,upper,4.859584063454259e-06 +illusion_1.5L,sr,214,85.6,omega,lower,4.859584063454259e-06 +illusion_1.5L,sr,215,86.0,omega,front,4.61099473835061e-06 +illusion_1.5L,sr,215,86.0,omega,upper,6.394624332109675e-06 +illusion_1.5L,sr,215,86.0,omega,lower,6.394624332109675e-06 +illusion_1.5L,sr,216,86.4,omega,front,1.63860502167627e-05 +illusion_1.5L,sr,216,86.4,omega,upper,2.408301157194974e-06 +illusion_1.5L,sr,216,86.4,omega,lower,2.408301157194974e-06 +illusion_1.5L,sr,217,86.8,omega,front,1.7743373832984424e-05 +illusion_1.5L,sr,217,86.8,omega,upper,4.891986517565443e-06 +illusion_1.5L,sr,217,86.8,omega,lower,4.891986517565443e-06 +illusion_1.5L,sr,218,87.2,omega,front,2.5070021540505235e-05 +illusion_1.5L,sr,218,87.2,omega,upper,1.4234706082053364e-06 +illusion_1.5L,sr,218,87.2,omega,lower,1.4234706082053364e-06 +illusion_1.5L,sr,219,87.6,omega,front,2.1799265972572006e-05 +illusion_1.5L,sr,219,87.6,omega,upper,4.027573719329429e-06 +illusion_1.5L,sr,219,87.6,omega,lower,4.027573719329429e-06 +illusion_1.5L,sr,220,88.0,omega,front,2.4247464554711038e-05 +illusion_1.5L,sr,220,88.0,omega,upper,5.974454730344262e-07 +illusion_1.5L,sr,220,88.0,omega,lower,5.974454730344262e-07 +illusion_1.5L,sr,221,88.4,omega,front,2.144759954758907e-05 +illusion_1.5L,sr,221,88.4,omega,upper,-6.134056578770836e-07 +illusion_1.5L,sr,221,88.4,omega,lower,-6.134056578770836e-07 +illusion_1.5L,sr,222,88.8,omega,front,2.0120249964135745e-05 +illusion_1.5L,sr,222,88.8,omega,upper,-4.2464695156214405e-06 +illusion_1.5L,sr,222,88.8,omega,lower,-4.2464695156214405e-06 +illusion_1.5L,sr,223,89.2,omega,front,1.7079887470074304e-05 +illusion_1.5L,sr,223,89.2,omega,upper,-7.486224355423106e-06 +illusion_1.5L,sr,223,89.2,omega,lower,-7.486224355423106e-06 +illusion_1.5L,sr,224,89.6,omega,front,4.92845875153296e-06 +illusion_1.5L,sr,224,89.6,omega,upper,-4.3883773195756146e-06 +illusion_1.5L,sr,224,89.6,omega,lower,-4.3883773195756146e-06 +illusion_1.5L,sr,225,90.0,omega,front,1.249746465247243e-06 +illusion_1.5L,sr,225,90.0,omega,upper,-7.448999223753326e-06 +illusion_1.5L,sr,225,90.0,omega,lower,-7.448999223753326e-06 +illusion_1.5L,sr,226,90.4,omega,front,-1.21358897709253e-05 +illusion_1.5L,sr,226,90.4,omega,upper,-2.786299663453586e-06 +illusion_1.5L,sr,226,90.4,omega,lower,-2.786299663453586e-06 +illusion_1.5L,sr,227,90.8,omega,front,-1.29874471649713e-05 +illusion_1.5L,sr,227,90.8,omega,upper,-6.377098070650851e-06 +illusion_1.5L,sr,227,90.8,omega,lower,-6.377098070650851e-06 +illusion_1.5L,sr,228,91.2,omega,front,-2.3115761224285285e-05 +illusion_1.5L,sr,228,91.2,omega,upper,-1.7813757091135127e-06 +illusion_1.5L,sr,228,91.2,omega,lower,-1.7813757091135127e-06 +illusion_1.5L,sr,229,91.6,omega,front,-1.9857807604626925e-05 +illusion_1.5L,sr,229,91.6,omega,upper,-5.414951144476488e-06 +illusion_1.5L,sr,229,91.6,omega,lower,-5.414951144476488e-06 +illusion_1.5L,sr,230,92.0,omega,front,-2.451216174101843e-05 +illusion_1.5L,sr,230,92.0,omega,upper,-1.4384283845799915e-06 +illusion_1.5L,sr,230,92.0,omega,lower,-1.4384283845799915e-06 +illusion_1.5L,sr,231,92.4,omega,front,-2.026815051714554e-05 +illusion_1.5L,sr,231,92.4,omega,upper,-2.269112458684504e-06 +illusion_1.5L,sr,231,92.4,omega,lower,-2.269112458684504e-06 +illusion_1.5L,sr,232,92.8,omega,front,-2.1941149661773262e-05 +illusion_1.5L,sr,232,92.8,omega,upper,2.796080210680091e-06 +illusion_1.5L,sr,232,92.8,omega,lower,2.796080210680091e-06 +illusion_1.5L,sr,233,93.2,omega,front,-1.851197494265421e-05 +illusion_1.5L,sr,233,93.2,omega,upper,5.242770573595252e-06 +illusion_1.5L,sr,233,93.2,omega,lower,5.242770573595252e-06 +illusion_1.5L,sr,234,93.6,omega,front,-1.1327186760658045e-05 +illusion_1.5L,sr,234,93.6,omega,upper,5.589847969833827e-06 +illusion_1.5L,sr,234,93.6,omega,lower,5.589847969833827e-06 +illusion_1.5L,sr,235,94.0,omega,front,-4.442830294403072e-06 +illusion_1.5L,sr,235,94.0,omega,upper,6.357363618141919e-06 +illusion_1.5L,sr,235,94.0,omega,lower,6.357363618141919e-06 +illusion_1.5L,sr,236,94.4,omega,front,6.060617036453154e-06 +illusion_1.5L,sr,236,94.4,omega,upper,4.180610037486307e-06 +illusion_1.5L,sr,236,94.4,omega,lower,4.180610037486307e-06 +illusion_1.5L,sr,237,94.8,omega,front,9.824215962407658e-06 +illusion_1.5L,sr,237,94.8,omega,upper,6.239509611093916e-06 +illusion_1.5L,sr,237,94.8,omega,lower,6.239509611093916e-06 +illusion_1.5L,sr,238,95.2,omega,front,1.9822829700981044e-05 +illusion_1.5L,sr,238,95.2,omega,upper,2.56295039673872e-06 +illusion_1.5L,sr,238,95.2,omega,lower,2.56295039673872e-06 +illusion_1.5L,sr,239,95.6,omega,front,1.849342714317054e-05 +illusion_1.5L,sr,239,95.6,omega,upper,5.7846237502766355e-06 +illusion_1.5L,sr,239,95.6,omega,lower,5.7846237502766355e-06 +illusion_1.5L,sr,240,96.0,omega,front,2.3800532836839235e-05 +illusion_1.5L,sr,240,96.0,omega,upper,2.4117156409916504e-06 +illusion_1.5L,sr,240,96.0,omega,lower,2.4117156409916504e-06 +illusion_1.5L,sr,241,96.4,omega,front,1.9941300705641486e-05 +illusion_1.5L,sr,241,96.4,omega,upper,4.009152345421305e-06 +illusion_1.5L,sr,241,96.4,omega,lower,4.009152345421305e-06 +illusion_1.5L,sr,242,96.8,omega,front,2.1786595694965812e-05 +illusion_1.5L,sr,242,96.8,omega,upper,-2.807921777004882e-07 +illusion_1.5L,sr,242,96.8,omega,lower,-2.807921777004882e-07 +illusion_1.5L,sr,243,97.2,omega,front,1.9900801209738714e-05 +illusion_1.5L,sr,243,97.2,omega,upper,-3.1982996822477705e-06 +illusion_1.5L,sr,243,97.2,omega,lower,-3.1982996822477705e-06 +illusion_1.5L,sr,244,97.6,omega,front,1.5845564950167663e-05 +illusion_1.5L,sr,244,97.6,omega,upper,-5.4730217890379235e-06 +illusion_1.5L,sr,244,97.6,omega,lower,-5.4730217890379235e-06 +illusion_1.5L,sr,245,98.0,omega,front,9.113371692683043e-06 +illusion_1.5L,sr,245,98.0,omega,upper,-6.251177180412826e-06 +illusion_1.5L,sr,245,98.0,omega,lower,-6.251177180412826e-06 +illusion_1.5L,sr,246,98.4,omega,front,-1.1782025110540669e-06 +illusion_1.5L,sr,246,98.4,omega,upper,-4.4218178100391505e-06 +illusion_1.5L,sr,246,98.4,omega,lower,-4.4218178100391505e-06 +illusion_1.5L,sr,247,98.8,omega,front,-5.174955349810905e-06 +illusion_1.5L,sr,247,98.8,omega,upper,-6.782303123639213e-06 +illusion_1.5L,sr,247,98.8,omega,lower,-6.782303123639213e-06 +illusion_1.5L,sr,248,99.2,omega,front,-1.5829799737123103e-05 +illusion_1.5L,sr,248,99.2,omega,upper,-3.3314311341580556e-06 +illusion_1.5L,sr,248,99.2,omega,lower,-3.3314311341580556e-06 +illusion_1.5L,sr,249,99.6,omega,front,-1.6575134217031094e-05 +illusion_1.5L,sr,249,99.6,omega,upper,-5.934079646011184e-06 +illusion_1.5L,sr,249,99.6,omega,lower,-5.934079646011184e-06 +illusion_1.5L,sr,250,100.0,omega,front,-2.1960309029150637e-05 +illusion_1.5L,sr,250,100.0,omega,upper,-3.5441522389783112e-06 +illusion_1.5L,sr,250,100.0,omega,lower,-3.5441522389783112e-06 +illusion_1.5L,sr,251,100.4,omega,front,-2.0081977521037575e-05 +illusion_1.5L,sr,251,100.4,omega,upper,-4.773846185013759e-06 +illusion_1.5L,sr,251,100.4,omega,lower,-4.773846185013759e-06 +illusion_1.5L,sr,252,100.8,omega,front,-2.0721084851505966e-05 +illusion_1.5L,sr,252,100.8,omega,upper,-2.3865585397617183e-06 +illusion_1.5L,sr,252,100.8,omega,lower,-2.3865585397617183e-06 +illusion_1.5L,sr,253,101.2,omega,front,-2.086350689690507e-05 +illusion_1.5L,sr,253,101.2,omega,upper,1.206851874546791e-06 +illusion_1.5L,sr,253,101.2,omega,lower,1.206851874546791e-06 +illusion_1.5L,sr,254,101.6,omega,front,-1.7324461486808856e-05 +illusion_1.5L,sr,254,101.6,omega,upper,3.3074852103310434e-06 +illusion_1.5L,sr,254,101.6,omega,lower,3.3074852103310434e-06 +illusion_1.5L,sr,255,102.0,omega,front,-1.4975641525915669e-05 +illusion_1.5L,sr,255,102.0,omega,upper,7.0500129516286665e-06 +illusion_1.5L,sr,255,102.0,omega,lower,7.0500129516286665e-06 +illusion_1.5L,sr,256,102.4,omega,front,-2.2986152878803383e-06 +illusion_1.5L,sr,256,102.4,omega,upper,3.477615744915106e-06 +illusion_1.5L,sr,256,102.4,omega,lower,3.477615744915106e-06 +illusion_1.5L,sr,257,102.8,omega,front,-3.1866515831251163e-07 +illusion_1.5L,sr,257,102.8,omega,upper,7.631612734162168e-06 +illusion_1.5L,sr,257,102.8,omega,lower,7.631612734162168e-06 +illusion_1.5L,sr,258,103.2,omega,front,1.2401994253904771e-05 +illusion_1.5L,sr,258,103.2,omega,upper,3.23714653162447e-06 +illusion_1.5L,sr,258,103.2,omega,lower,3.23714653162447e-06 +illusion_1.5L,sr,259,103.6,omega,front,1.311177949294539e-05 +illusion_1.5L,sr,259,103.6,omega,upper,6.661331969893686e-06 +illusion_1.5L,sr,259,103.6,omega,lower,6.661331969893686e-06 +illusion_1.5L,sr,260,104.0,omega,front,2.0965358071563384e-05 +illusion_1.5L,sr,260,104.0,omega,upper,3.4343665716642797e-06 +illusion_1.5L,sr,260,104.0,omega,lower,3.4343665716642797e-06 +illusion_1.5L,sr,261,104.4,omega,front,1.8688938863360013e-05 +illusion_1.5L,sr,261,104.4,omega,upper,6.03695634678169e-06 +illusion_1.5L,sr,261,104.4,omega,lower,6.03695634678169e-06 +illusion_1.5L,sr,262,104.8,omega,front,2.136603480196536e-05 +illusion_1.5L,sr,262,104.8,omega,upper,3.224906930463095e-06 +illusion_1.5L,sr,262,104.8,omega,lower,3.224906930463095e-06 +illusion_1.5L,sr,263,105.2,omega,front,1.9656196108408554e-05 +illusion_1.5L,sr,263,105.2,omega,upper,1.9454635374335437e-06 +illusion_1.5L,sr,263,105.2,omega,lower,1.9454635374335437e-06 +illusion_1.5L,sr,264,105.6,omega,front,1.9177464426052767e-05 +illusion_1.5L,sr,264,105.6,omega,upper,-1.6884683878938544e-06 +illusion_1.5L,sr,264,105.6,omega,lower,-1.6884683878938544e-06 +illusion_1.5L,sr,265,106.0,omega,front,1.794007627129826e-05 +illusion_1.5L,sr,265,106.0,omega,upper,-5.817871777760841e-06 +illusion_1.5L,sr,265,106.0,omega,lower,-5.817871777760841e-06 +illusion_1.5L,sr,266,106.4,omega,front,8.678676474652252e-06 +illusion_1.5L,sr,266,106.4,omega,upper,-4.604054991364942e-06 +illusion_1.5L,sr,266,106.4,omega,lower,-4.604054991364942e-06 +illusion_1.5L,sr,267,106.8,omega,front,3.2496344559001816e-06 +illusion_1.5L,sr,267,106.8,omega,upper,-6.3456272737323455e-06 +illusion_1.5L,sr,267,106.8,omega,lower,-6.3456272737323455e-06 +illusion_1.5L,sr,268,107.2,omega,front,-6.693765907249822e-06 +illusion_1.5L,sr,268,107.2,omega,upper,-4.416680995121096e-06 +illusion_1.5L,sr,268,107.2,omega,lower,-4.416680995121096e-06 +illusion_1.5L,sr,269,107.6,omega,front,-1.0264274514109293e-05 +illusion_1.5L,sr,269,107.6,omega,upper,-6.406008676017247e-06 +illusion_1.5L,sr,269,107.6,omega,lower,-6.406008676017247e-06 +illusion_1.5L,sr,270,108.0,omega,front,-1.800112509512751e-05 +illusion_1.5L,sr,270,108.0,omega,upper,-4.146980226953367e-06 +illusion_1.5L,sr,270,108.0,omega,lower,-4.146980226953367e-06 +illusion_1.5L,sr,271,108.4,omega,front,-1.8046284452178168e-05 +illusion_1.5L,sr,271,108.4,omega,upper,-6.075267342370121e-06 +illusion_1.5L,sr,271,108.4,omega,lower,-6.075267342370121e-06 +illusion_1.5L,sr,272,108.8,omega,front,-2.0561567821399328e-05 +illusion_1.5L,sr,272,108.8,omega,upper,-4.474631529412694e-06 +illusion_1.5L,sr,272,108.8,omega,lower,-4.474631529412694e-06 +illusion_1.5L,sr,273,109.2,omega,front,-1.9488839857330214e-05 +illusion_1.5L,sr,273,109.2,omega,upper,-3.7718790635027367e-06 +illusion_1.5L,sr,273,109.2,omega,lower,-3.7718790635027367e-06 +illusion_1.5L,sr,274,109.6,omega,front,-1.9483860804858227e-05 +illusion_1.5L,sr,274,109.6,omega,upper,-6.588341747633398e-07 +illusion_1.5L,sr,274,109.6,omega,lower,-6.588341747633398e-07 +illusion_1.5L,sr,275,110.0,omega,front,-1.932850477304078e-05 +illusion_1.5L,sr,275,110.0,omega,upper,3.6486326056697944e-06 +illusion_1.5L,sr,275,110.0,omega,lower,3.6486326056697944e-06 +illusion_1.5L,sr,276,110.4,omega,front,-1.3433580750466124e-05 +illusion_1.5L,sr,276,110.4,omega,upper,4.593133402069887e-06 +illusion_1.5L,sr,276,110.4,omega,lower,4.593133402069887e-06 +illusion_1.5L,sr,277,110.8,omega,front,-7.626773440815813e-06 +illusion_1.5L,sr,277,110.8,omega,upper,6.01296053746746e-06 +illusion_1.5L,sr,277,110.8,omega,lower,6.01296053746746e-06 +illusion_1.5L,sr,278,111.2,omega,front,2.0237235178834946e-06 +illusion_1.5L,sr,278,111.2,omega,upper,4.547602264647994e-06 +illusion_1.5L,sr,278,111.2,omega,lower,4.547602264647994e-06 +illusion_1.5L,sr,279,111.6,omega,front,6.1923782734747e-06 +illusion_1.5L,sr,279,111.6,omega,upper,6.6185580231762145e-06 +illusion_1.5L,sr,279,111.6,omega,lower,6.6185580231762145e-06 +illusion_1.5L,sr,280,112.0,omega,front,1.5074216581676647e-05 +illusion_1.5L,sr,280,112.0,omega,upper,4.272516483490099e-06 +illusion_1.5L,sr,280,112.0,omega,lower,4.272516483490099e-06 +illusion_1.5L,sr,281,112.4,omega,front,1.6437736614330346e-05 +illusion_1.5L,sr,281,112.4,omega,upper,6.180920937390276e-06 +illusion_1.5L,sr,281,112.4,omega,lower,6.180920937390276e-06 +illusion_1.5L,sr,282,112.8,omega,front,1.9796351408946438e-05 +illusion_1.5L,sr,282,112.8,omega,upper,5.033752714777191e-06 +illusion_1.5L,sr,282,112.8,omega,lower,5.033752714777191e-06 +illusion_1.5L,sr,283,113.2,omega,front,1.9444111918596463e-05 +illusion_1.5L,sr,283,113.2,omega,upper,4.891519515152522e-06 +illusion_1.5L,sr,283,113.2,omega,lower,4.891519515152522e-06 +illusion_1.5L,sr,284,113.6,omega,front,1.8891104521238794e-05 +illusion_1.5L,sr,284,113.6,omega,upper,3.1755836450749616e-06 +illusion_1.5L,sr,284,113.6,omega,lower,3.1755836450749616e-06 +illusion_1.5L,sr,285,114.0,omega,front,2.0667529679015245e-05 +illusion_1.5L,sr,285,114.0,omega,upper,-1.7703653046381025e-06 +illusion_1.5L,sr,285,114.0,omega,lower,-1.7703653046381025e-06 +illusion_1.5L,sr,286,114.4,omega,front,1.564051547691318e-05 +illusion_1.5L,sr,286,114.4,omega,upper,-2.8516480468542513e-06 +illusion_1.5L,sr,286,114.4,omega,lower,-2.8516480468542513e-06 +illusion_1.5L,sr,287,114.8,omega,front,1.3545374083751673e-05 +illusion_1.5L,sr,287,114.8,omega,upper,-6.787505869267621e-06 +illusion_1.5L,sr,287,114.8,omega,lower,-6.787505869267621e-06 +illusion_1.5L,sr,288,115.2,omega,front,1.1219493541140234e-06 +illusion_1.5L,sr,288,115.2,omega,upper,-3.347961909942721e-06 +illusion_1.5L,sr,288,115.2,omega,lower,-3.347961909942721e-06 +illusion_1.5L,sr,289,115.6,omega,front,-6.865110217789406e-07 +illusion_1.5L,sr,289,115.6,omega,upper,-7.516682164188521e-06 +illusion_1.5L,sr,289,115.6,omega,lower,-7.516682164188521e-06 +illusion_1.5L,sr,290,116.0,omega,front,-1.2076364857657868e-05 +illusion_1.5L,sr,290,116.0,omega,upper,-3.945852998954967e-06 +illusion_1.5L,sr,290,116.0,omega,lower,-3.945852998954967e-06 +illusion_1.5L,sr,291,116.4,omega,front,-1.3431698138466099e-05 +illusion_1.5L,sr,291,116.4,omega,upper,-6.697789932959136e-06 +illusion_1.5L,sr,291,116.4,omega,lower,-6.697789932959136e-06 +illusion_1.5L,sr,292,116.8,omega,front,-1.8951194952751064e-05 +illusion_1.5L,sr,292,116.8,omega,upper,-4.971071074944267e-06 +illusion_1.5L,sr,292,116.8,omega,lower,-4.971071074944267e-06 +illusion_1.5L,sr,293,117.2,omega,front,-1.8436682618397023e-05 +illusion_1.5L,sr,293,117.2,omega,upper,-6.038547881007626e-06 +illusion_1.5L,sr,293,117.2,omega,lower,-6.038547881007626e-06 +illusion_1.5L,sr,294,117.6,omega,front,-1.9331467432358308e-05 +illusion_1.5L,sr,294,117.6,omega,upper,-4.327540545584173e-06 +illusion_1.5L,sr,294,117.6,omega,lower,-4.327540545584173e-06 +illusion_1.5L,sr,295,118.0,omega,front,-1.9682558657710437e-05 +illusion_1.5L,sr,295,118.0,omega,upper,-1.3570734143097257e-06 +illusion_1.5L,sr,295,118.0,omega,lower,-1.3570734143097257e-06 +illusion_1.5L,sr,296,118.4,omega,front,-1.7976349095371604e-05 +illusion_1.5L,sr,296,118.4,omega,upper,1.4843866196777127e-06 +illusion_1.5L,sr,296,118.4,omega,lower,1.4843866196777127e-06 +illusion_1.5L,sr,297,118.8,omega,front,-1.6619776446837755e-05 +illusion_1.5L,sr,297,118.8,omega,upper,5.571569574464533e-06 +illusion_1.5L,sr,297,118.8,omega,lower,5.571569574464533e-06 +illusion_1.5L,sr,298,119.2,omega,front,-6.964439244636447e-06 +illusion_1.5L,sr,298,119.2,omega,upper,4.059925988265996e-06 +illusion_1.5L,sr,298,119.2,omega,lower,4.059925988265996e-06 +illusion_1.5L,sr,299,119.6,omega,front,-2.319701007509889e-06 +illusion_1.5L,sr,299,119.6,omega,upper,6.31807538934129e-06 +illusion_1.5L,sr,299,119.6,omega,lower,6.31807538934129e-06 +illusion_1.5L,sr,300,120.0,omega,front,6.939658890944903e-06 +illusion_1.5L,sr,300,120.0,omega,upper,4.779024572103379e-06 +illusion_1.5L,sr,300,120.0,omega,lower,4.779024572103379e-06 +illusion_1.5L,sr,301,120.4,omega,front,1.1097039450501494e-05 +illusion_1.5L,sr,301,120.4,omega,upper,6.180305996983416e-06 +illusion_1.5L,sr,301,120.4,omega,lower,6.180305996983416e-06 +illusion_1.5L,sr,302,120.8,omega,front,1.657831691660519e-05 +illusion_1.5L,sr,302,120.8,omega,upper,5.398394274698098e-06 +illusion_1.5L,sr,302,120.8,omega,lower,5.398394274698098e-06 +illusion_1.5L,sr,303,121.2,omega,front,1.7832869400030288e-05 +illusion_1.5L,sr,303,121.2,omega,upper,6.217784959833272e-06 +illusion_1.5L,sr,303,121.2,omega,lower,6.217784959833272e-06 +illusion_1.5L,sr,304,121.6,omega,front,1.8747555493271382e-05 +illusion_1.5L,sr,304,121.6,omega,upper,5.58403292019824e-06 +illusion_1.5L,sr,304,121.6,omega,lower,5.58403292019824e-06 +illusion_1.5L,sr,305,122.0,omega,front,1.9663334996386643e-05 +illusion_1.5L,sr,305,122.0,omega,upper,3.230233069259625e-06 +illusion_1.5L,sr,305,122.0,omega,lower,3.230233069259625e-06 +illusion_1.5L,sr,306,122.4,omega,front,1.835532779572685e-05 +illusion_1.5L,sr,306,122.4,omega,upper,9.394587238365643e-07 +illusion_1.5L,sr,306,122.4,omega,lower,9.394587238365643e-07 +illusion_1.5L,sr,307,122.8,omega,front,1.8949728852291835e-05 +illusion_1.5L,sr,307,122.8,omega,upper,-4.0050671378011844e-06 +illusion_1.5L,sr,307,122.8,omega,lower,-4.0050671378011844e-06 +illusion_1.5L,sr,308,123.2,omega,front,1.1973887707424384e-05 +illusion_1.5L,sr,308,123.2,omega,upper,-4.179829683028528e-06 +illusion_1.5L,sr,308,123.2,omega,lower,-4.179829683028528e-06 +illusion_1.5L,sr,309,123.6,omega,front,6.359293147888041e-06 +illusion_1.5L,sr,309,123.6,omega,upper,-5.718304026484825e-06 +illusion_1.5L,sr,309,123.6,omega,lower,-5.718304026484825e-06 +illusion_1.5L,sr,310,124.0,omega,front,-2.249646279164526e-06 +illusion_1.5L,sr,310,124.0,omega,upper,-4.950962099870022e-06 +illusion_1.5L,sr,310,124.0,omega,lower,-4.950962099870022e-06 +illusion_1.5L,sr,311,124.4,omega,front,-7.314557251975329e-06 +illusion_1.5L,sr,311,124.4,omega,upper,-6.242807582879408e-06 +illusion_1.5L,sr,311,124.4,omega,lower,-6.242807582879408e-06 +illusion_1.5L,sr,312,124.8,omega,front,-1.4283731840935287e-05 +illusion_1.5L,sr,312,124.8,omega,upper,-5.1561873392915595e-06 +illusion_1.5L,sr,312,124.8,omega,lower,-5.1561873392915595e-06 +illusion_1.5L,sr,313,125.2,omega,front,-1.636710970794042e-05 +illusion_1.5L,sr,313,125.2,omega,upper,-6.353468546883324e-06 +illusion_1.5L,sr,313,125.2,omega,lower,-6.353468546883324e-06 +illusion_1.5L,sr,314,125.6,omega,front,-1.7855038668816505e-05 +illusion_1.5L,sr,314,125.6,omega,upper,-6.383771047407567e-06 +illusion_1.5L,sr,314,125.6,omega,lower,-6.383771047407567e-06 +illusion_1.5L,sr,315,126.0,omega,front,-1.9345097781705776e-05 +illusion_1.5L,sr,315,126.0,omega,upper,-4.687920532687843e-06 +illusion_1.5L,sr,315,126.0,omega,lower,-4.687920532687843e-06 +illusion_1.5L,sr,316,126.4,omega,front,-1.812153015283341e-05 +illusion_1.5L,sr,316,126.4,omega,upper,-3.30352120275771e-06 +illusion_1.5L,sr,316,126.4,omega,lower,-3.30352120275771e-06 +illusion_1.5L,sr,317,126.8,omega,front,-2.0033484168714733e-05 +illusion_1.5L,sr,317,126.8,omega,upper,1.8537009658524742e-06 +illusion_1.5L,sr,317,126.8,omega,lower,1.8537009658524742e-06 +illusion_1.5L,sr,318,127.2,omega,front,-1.4973580061013718e-05 +illusion_1.5L,sr,318,127.2,omega,upper,2.9727629705860078e-06 +illusion_1.5L,sr,318,127.2,omega,lower,2.9727629705860078e-06 +illusion_1.5L,sr,319,127.6,omega,front,-1.189740725452301e-05 +illusion_1.5L,sr,319,127.6,omega,upper,6.196347080056832e-06 +illusion_1.5L,sr,319,127.6,omega,lower,6.196347080056832e-06 +illusion_1.5L,sr,320,128.0,omega,front,-8.935830687197954e-07 +illusion_1.5L,sr,320,128.0,omega,upper,3.7705237671310873e-06 +illusion_1.5L,sr,320,128.0,omega,lower,3.7705237671310873e-06 +illusion_1.5L,sr,321,128.4,omega,front,2.083725373470992e-06 +illusion_1.5L,sr,321,128.4,omega,upper,6.996643057610112e-06 +illusion_1.5L,sr,321,128.4,omega,lower,6.996643057610112e-06 +illusion_1.5L,sr,322,128.8,omega,front,1.1641122989167508e-05 +illusion_1.5L,sr,322,128.8,omega,upper,4.657440807212497e-06 +illusion_1.5L,sr,322,128.8,omega,lower,4.657440807212497e-06 +illusion_1.5L,sr,323,129.2,omega,front,1.3973944781256603e-05 +illusion_1.5L,sr,323,129.2,omega,upper,6.537433350235142e-06 +illusion_1.5L,sr,323,129.2,omega,lower,6.537433350235142e-06 +illusion_1.5L,sr,324,129.6,omega,front,1.7611568406408e-05 +illusion_1.5L,sr,324,129.6,omega,upper,6.024177088254992e-06 +illusion_1.5L,sr,324,129.6,omega,lower,6.024177088254992e-06 +illusion_1.5L,sr,325,130.0,omega,front,1.824628427897511e-05 +illusion_1.5L,sr,325,130.0,omega,upper,6.061588149244013e-06 +illusion_1.5L,sr,325,130.0,omega,lower,6.061588149244013e-06 +illusion_1.5L,sr,326,130.4,omega,front,1.796402596145698e-05 +illusion_1.5L,sr,326,130.4,omega,upper,5.0391698170084916e-06 +illusion_1.5L,sr,326,130.4,omega,lower,5.0391698170084916e-06 +illusion_1.5L,sr,327,130.8,omega,front,1.9828144067218327e-05 +illusion_1.5L,sr,327,130.8,omega,upper,8.093413224417868e-07 +illusion_1.5L,sr,327,130.8,omega,lower,8.093413224417868e-07 +illusion_1.5L,sr,328,131.2,omega,front,1.7375699433208083e-05 +illusion_1.5L,sr,328,131.2,omega,upper,-1.5767680595759303e-06 +illusion_1.5L,sr,328,131.2,omega,lower,-1.5767680595759303e-06 +illusion_1.5L,sr,329,131.6,omega,front,1.5652450745717567e-05 +illusion_1.5L,sr,329,131.6,omega,upper,-5.431503519005686e-06 +illusion_1.5L,sr,329,131.6,omega,lower,-5.431503519005686e-06 +illusion_1.5L,sr,330,132.0,omega,front,5.957810462228317e-06 +illusion_1.5L,sr,330,132.0,omega,upper,-3.889633286328266e-06 +illusion_1.5L,sr,330,132.0,omega,lower,-3.889633286328266e-06 +illusion_1.5L,sr,331,132.4,omega,front,1.3031441359417744e-06 +illusion_1.5L,sr,331,132.4,omega,upper,-6.097845077672592e-06 +illusion_1.5L,sr,331,132.4,omega,lower,-6.097845077672592e-06 +illusion_1.5L,sr,332,132.8,omega,front,-6.743950274315375e-06 +illusion_1.5L,sr,332,132.8,omega,upper,-5.3681720252270025e-06 +illusion_1.5L,sr,332,132.8,omega,lower,-5.3681720252270025e-06 +illusion_1.5L,sr,333,133.2,omega,front,-1.1764760294647424e-05 +illusion_1.5L,sr,333,133.2,omega,upper,-6.007939841723639e-06 +illusion_1.5L,sr,333,133.2,omega,lower,-6.007939841723639e-06 +illusion_1.5L,sr,334,133.6,omega,front,-1.5653193401501883e-05 +illusion_1.5L,sr,334,133.6,omega,upper,-6.249183212868395e-06 +illusion_1.5L,sr,334,133.6,omega,lower,-6.249183212868395e-06 +illusion_1.5L,sr,335,134.0,omega,front,-1.7918245758820687e-05 +illusion_1.5L,sr,335,134.0,omega,upper,-6.153229143536637e-06 +illusion_1.5L,sr,335,134.0,omega,lower,-6.153229143536637e-06 +illusion_1.5L,sr,336,134.4,omega,front,-1.758890543361334e-05 +illusion_1.5L,sr,336,134.4,omega,upper,-6.271500750547749e-06 +illusion_1.5L,sr,336,134.4,omega,lower,-6.271500750547749e-06 +illusion_1.5L,sr,337,134.8,omega,front,-1.9059312119138472e-05 +illusion_1.5L,sr,337,134.8,omega,upper,-3.3461391161353563e-06 +illusion_1.5L,sr,337,134.8,omega,lower,-3.3461391161353563e-06 +illusion_1.5L,sr,338,135.2,omega,front,-1.7738516962445066e-05 +illusion_1.5L,sr,338,135.2,omega,upper,-9.406968698891932e-07 +illusion_1.5L,sr,338,135.2,omega,lower,-9.406968698891932e-07 +illusion_1.5L,sr,339,135.6,omega,front,-1.8476290378005336e-05 +illusion_1.5L,sr,339,135.6,omega,upper,4.185700705144468e-06 +illusion_1.5L,sr,339,135.6,omega,lower,4.185700705144468e-06 +illusion_1.5L,sr,340,136.0,omega,front,-1.1388946823658432e-05 +illusion_1.5L,sr,340,136.0,omega,upper,4.3034860702308944e-06 +illusion_1.5L,sr,340,136.0,omega,lower,4.3034860702308944e-06 +illusion_1.5L,sr,341,136.4,omega,front,-4.912322161623587e-06 +illusion_1.5L,sr,341,136.4,omega,upper,5.191760053616002e-06 +illusion_1.5L,sr,341,136.4,omega,lower,5.191760053616002e-06 +illusion_1.5L,sr,342,136.8,omega,front,2.404719798363986e-06 +illusion_1.5L,sr,342,136.8,omega,upper,5.322379084746997e-06 +illusion_1.5L,sr,342,136.8,omega,lower,5.322379084746997e-06 +illusion_1.5L,sr,343,137.2,omega,front,8.138751492755073e-06 +illusion_1.5L,sr,343,137.2,omega,upper,6.029581506534938e-06 +illusion_1.5L,sr,343,137.2,omega,lower,6.029581506534938e-06 +illusion_1.5L,sr,344,137.6,omega,front,1.3734572158631935e-05 +illusion_1.5L,sr,344,137.6,omega,upper,5.828869035896453e-06 +illusion_1.5L,sr,344,137.6,omega,lower,5.828869035896453e-06 +illusion_1.5L,sr,345,138.0,omega,front,1.6630910241070274e-05 +illusion_1.5L,sr,345,138.0,omega,upper,6.278937501023284e-06 +illusion_1.5L,sr,345,138.0,omega,lower,6.278937501023284e-06 +illusion_1.5L,sr,346,138.4,omega,front,1.7179888815112845e-05 +illusion_1.5L,sr,346,138.4,omega,upper,6.8430649811973905e-06 +illusion_1.5L,sr,346,138.4,omega,lower,6.8430649811973905e-06 +illusion_1.5L,sr,347,138.8,omega,front,1.894904967979616e-05 +illusion_1.5L,sr,347,138.8,omega,upper,4.7814052978187655e-06 +illusion_1.5L,sr,347,138.8,omega,lower,4.7814052978187655e-06 +illusion_1.5L,sr,348,139.2,omega,front,1.7212496430501908e-05 +illusion_1.5L,sr,348,139.2,omega,upper,3.6332619677879873e-06 +illusion_1.5L,sr,348,139.2,omega,lower,3.6332619677879873e-06 +illusion_1.5L,sr,349,139.6,omega,front,1.9883841264544954e-05 +illusion_1.5L,sr,349,139.6,omega,upper,-2.194839069448694e-06 +illusion_1.5L,sr,349,139.6,omega,lower,-2.194839069448694e-06 +illusion_1.5L,sr,350,140.0,omega,front,1.4610174752825548e-05 +illusion_1.5L,sr,350,140.0,omega,upper,-3.209172658109674e-06 +illusion_1.5L,sr,350,140.0,omega,lower,-3.209172658109674e-06 +illusion_1.5L,sr,351,140.4,omega,front,1.0394630796218916e-05 +illusion_1.5L,sr,351,140.4,omega,upper,-5.605442684935799e-06 +illusion_1.5L,sr,351,140.4,omega,lower,-5.605442684935799e-06 +illusion_1.5L,sr,352,140.8,omega,front,9.9355842091098e-07 +illusion_1.5L,sr,352,140.8,omega,upper,-4.339351508145413e-06 +illusion_1.5L,sr,352,140.8,omega,lower,-4.339351508145413e-06 +illusion_1.5L,sr,353,141.2,omega,front,-3.3024784326312825e-06 +illusion_1.5L,sr,353,141.2,omega,upper,-6.5282872284308345e-06 +illusion_1.5L,sr,353,141.2,omega,lower,-6.5282872284308345e-06 +illusion_1.5L,sr,354,141.6,omega,front,-1.110273945594032e-05 +illusion_1.5L,sr,354,141.6,omega,upper,-5.385973256759151e-06 +illusion_1.5L,sr,354,141.6,omega,lower,-5.385973256759151e-06 +illusion_1.5L,sr,355,142.0,omega,front,-1.4395595329892048e-05 +illusion_1.5L,sr,355,142.0,omega,upper,-6.431131275342825e-06 +illusion_1.5L,sr,355,142.0,omega,lower,-6.431131275342825e-06 +illusion_1.5L,sr,356,142.4,omega,front,-1.6893070309129953e-05 +illusion_1.5L,sr,356,142.4,omega,upper,-6.607207897760502e-06 +illusion_1.5L,sr,356,142.4,omega,lower,-6.607207897760502e-06 +illusion_1.5L,sr,357,142.8,omega,front,-1.813768260473102e-05 +illusion_1.5L,sr,357,142.8,omega,upper,-6.038281414046387e-06 +illusion_1.5L,sr,357,142.8,omega,lower,-6.038281414046387e-06 +illusion_1.5L,sr,358,143.2,omega,front,-1.7395186372181348e-05 +illusion_1.5L,sr,358,143.2,omega,upper,-5.212736133914167e-06 +illusion_1.5L,sr,358,143.2,omega,lower,-5.212736133914167e-06 +illusion_1.5L,sr,359,143.6,omega,front,-1.961021656163839e-05 +illusion_1.5L,sr,359,143.6,omega,upper,-6.004029701606184e-07 +illusion_1.5L,sr,359,143.6,omega,lower,-6.004029701606184e-07 +illusion_1.5L,sr,360,144.0,omega,front,-1.7157682051733917e-05 +illusion_1.5L,sr,360,144.0,omega,upper,1.8675246130451553e-06 +illusion_1.5L,sr,360,144.0,omega,lower,1.8675246130451553e-06 +illusion_1.5L,sr,361,144.4,omega,front,-1.4906457964254573e-05 +illusion_1.5L,sr,361,144.4,omega,upper,5.372468013223955e-06 +illusion_1.5L,sr,361,144.4,omega,lower,5.372468013223955e-06 +illusion_1.5L,sr,362,144.8,omega,front,-5.257617987269951e-06 +illusion_1.5L,sr,362,144.8,omega,upper,3.8633620530403616e-06 +illusion_1.5L,sr,362,144.8,omega,lower,3.8633620530403616e-06 +illusion_1.5L,sr,363,145.2,omega,front,-3.888434886361453e-07 +illusion_1.5L,sr,363,145.2,omega,upper,5.879707650575192e-06 +illusion_1.5L,sr,363,145.2,omega,lower,5.879707650575192e-06 +illusion_1.5L,sr,364,145.6,omega,front,6.784395465181878e-06 +illusion_1.5L,sr,364,145.6,omega,upper,5.7255130034836e-06 +illusion_1.5L,sr,364,145.6,omega,lower,5.7255130034836e-06 +illusion_1.5L,sr,365,146.0,omega,front,1.247204806698446e-05 +illusion_1.5L,sr,365,146.0,omega,upper,5.770171866254295e-06 +illusion_1.5L,sr,365,146.0,omega,lower,5.770171866254295e-06 +illusion_1.5L,sr,366,146.4,omega,front,1.5135470636422344e-05 +illusion_1.5L,sr,366,146.4,omega,upper,6.787750925536102e-06 +illusion_1.5L,sr,366,146.4,omega,lower,6.787750925536102e-06 +illusion_1.5L,sr,367,146.8,omega,front,1.796590262957573e-05 +illusion_1.5L,sr,367,146.8,omega,upper,6.1361263560778465e-06 +illusion_1.5L,sr,367,146.8,omega,lower,6.1361263560778465e-06 +illusion_1.5L,sr,368,147.2,omega,front,1.7153552255150044e-05 +illusion_1.5L,sr,368,147.2,omega,upper,6.460062706578236e-06 +illusion_1.5L,sr,368,147.2,omega,lower,6.460062706578236e-06 +illusion_1.5L,sr,369,147.6,omega,front,1.896288089032486e-05 +illusion_1.5L,sr,369,147.6,omega,upper,3.149941170103726e-06 +illusion_1.5L,sr,369,147.6,omega,lower,3.149941170103726e-06 +illusion_1.5L,sr,370,148.0,omega,front,1.769715788692651e-05 +illusion_1.5L,sr,370,148.0,omega,upper,5.959572809275879e-07 +illusion_1.5L,sr,370,148.0,omega,lower,5.959572809275879e-07 +illusion_1.5L,sr,371,148.4,omega,front,1.7776507857467825e-05 +illusion_1.5L,sr,371,148.4,omega,upper,-4.1112380706713125e-06 +illusion_1.5L,sr,371,148.4,omega,lower,-4.1112380706713125e-06 +illusion_1.5L,sr,372,148.8,omega,front,1.0325423608038218e-05 +illusion_1.5L,sr,372,148.8,omega,upper,-3.986369347884081e-06 +illusion_1.5L,sr,372,148.8,omega,lower,-3.986369347884081e-06 +illusion_1.5L,sr,373,149.2,omega,front,3.941228600813913e-06 +illusion_1.5L,sr,373,149.2,omega,upper,-4.941239791771846e-06 +illusion_1.5L,sr,373,149.2,omega,lower,-4.941239791771846e-06 +illusion_1.5L,sr,374,149.6,omega,front,-2.197695965804585e-06 +illusion_1.5L,sr,374,149.6,omega,upper,-5.900367493848584e-06 +illusion_1.5L,sr,374,149.6,omega,lower,-5.900367493848584e-06 +illusion_1.5L,sr,375,150.0,omega,front,-8.86002097624402e-06 +illusion_1.5L,sr,375,150.0,omega,upper,-5.8410894964960884e-06 +illusion_1.5L,sr,375,150.0,omega,lower,-5.8410894964960884e-06 +illusion_1.5L,sr,376,150.4,omega,front,-1.3366380714195486e-05 +illusion_1.5L,sr,376,150.4,omega,upper,-6.335917268055387e-06 +illusion_1.5L,sr,376,150.4,omega,lower,-6.335917268055387e-06 +illusion_1.5L,sr,377,150.8,omega,front,-1.6892619755758815e-05 +illusion_1.5L,sr,377,150.8,omega,upper,-6.1885777927938455e-06 +illusion_1.5L,sr,377,150.8,omega,lower,-6.1885777927938455e-06 +illusion_1.5L,sr,378,151.2,omega,front,-1.6753540792976972e-05 +illusion_1.5L,sr,378,151.2,omega,upper,-7.116272717983541e-06 +illusion_1.5L,sr,378,151.2,omega,lower,-7.116272717983541e-06 +illusion_1.5L,sr,379,151.6,omega,front,-1.873419679768687e-05 +illusion_1.5L,sr,379,151.6,omega,upper,-4.760763419619264e-06 +illusion_1.5L,sr,379,151.6,omega,lower,-4.760763419619264e-06 +illusion_1.5L,sr,380,152.0,omega,front,-1.754507978446146e-05 +illusion_1.5L,sr,380,152.0,omega,upper,-3.0880613982602056e-06 +illusion_1.5L,sr,380,152.0,omega,lower,-3.0880613982602056e-06 +illusion_1.5L,sr,381,152.4,omega,front,-1.9128355719414577e-05 +illusion_1.5L,sr,381,152.4,omega,upper,2.024632661285861e-06 +illusion_1.5L,sr,381,152.4,omega,lower,2.024632661285861e-06 +illusion_1.5L,sr,382,152.8,omega,front,-1.4572220122053715e-05 +illusion_1.5L,sr,382,152.8,omega,upper,3.622871174954242e-06 +illusion_1.5L,sr,382,152.8,omega,lower,3.622871174954242e-06 +illusion_1.5L,sr,383,153.2,omega,front,-8.95887485933551e-06 +illusion_1.5L,sr,383,153.2,omega,upper,5.00429288385521e-06 +illusion_1.5L,sr,383,153.2,omega,lower,5.00429288385521e-06 +illusion_1.5L,sr,384,153.6,omega,front,-9.948705760874557e-07 +illusion_1.5L,sr,384,153.6,omega,upper,4.777798396536168e-06 +illusion_1.5L,sr,384,153.6,omega,lower,4.777798396536168e-06 +illusion_1.5L,sr,385,154.0,omega,front,4.464657440003579e-06 +illusion_1.5L,sr,385,154.0,omega,upper,6.058762351576174e-06 +illusion_1.5L,sr,385,154.0,omega,lower,6.058762351576174e-06 +illusion_1.5L,sr,386,154.4,omega,front,1.0836028994403203e-05 +illusion_1.5L,sr,386,154.4,omega,upper,5.88571029086566e-06 +illusion_1.5L,sr,386,154.4,omega,lower,5.88571029086566e-06 +illusion_1.5L,sr,387,154.8,omega,front,1.5012008355016379e-05 +illusion_1.5L,sr,387,154.8,omega,upper,6.1728355831885966e-06 +illusion_1.5L,sr,387,154.8,omega,lower,6.1728355831885966e-06 +illusion_1.5L,sr,388,155.2,omega,front,1.657937104125845e-05 +illusion_1.5L,sr,388,155.2,omega,upper,6.906859681682677e-06 +illusion_1.5L,sr,388,155.2,omega,lower,6.906859681682677e-06 +illusion_1.5L,sr,389,155.6,omega,front,1.848392185493132e-05 +illusion_1.5L,sr,389,155.6,omega,upper,5.717724521955223e-06 +illusion_1.5L,sr,389,155.6,omega,lower,5.717724521955223e-06 +illusion_1.5L,sr,390,156.0,omega,front,1.7096010805172716e-05 +illusion_1.5L,sr,390,156.0,omega,upper,5.235540957561173e-06 +illusion_1.5L,sr,390,156.0,omega,lower,5.235540957561173e-06 +illusion_1.5L,sr,391,156.4,omega,front,1.9290002660664678e-05 +illusion_1.5L,sr,391,156.4,omega,upper,5.298650900697685e-07 +illusion_1.5L,sr,391,156.4,omega,lower,5.298650900697685e-07 +illusion_1.5L,sr,392,156.8,omega,front,1.6828393714713208e-05 +illusion_1.5L,sr,392,156.8,omega,upper,-2.0134577403956024e-06 +illusion_1.5L,sr,392,156.8,omega,lower,-2.0134577403956024e-06 +illusion_1.5L,sr,393,157.2,omega,front,1.3898733055959408e-05 +illusion_1.5L,sr,393,157.2,omega,upper,-5.063488741979842e-06 +illusion_1.5L,sr,393,157.2,omega,lower,-5.063488741979842e-06 +illusion_1.5L,sr,394,157.6,omega,front,4.920427122921608e-06 +illusion_1.5L,sr,394,157.6,omega,upper,-4.058187216340861e-06 +illusion_1.5L,sr,394,157.6,omega,lower,-4.058187216340861e-06 +illusion_1.5L,sr,395,158.0,omega,front,-2.5492541028012544e-07 +illusion_1.5L,sr,395,158.0,omega,upper,-5.818538962295396e-06 +illusion_1.5L,sr,395,158.0,omega,lower,-5.818538962295396e-06 +illusion_1.5L,sr,396,158.4,omega,front,-6.957581046329007e-06 +illusion_1.5L,sr,396,158.4,omega,upper,-5.948601591981625e-06 +illusion_1.5L,sr,396,158.4,omega,lower,-5.948601591981625e-06 +illusion_1.5L,sr,397,158.8,omega,front,-1.2918532109732103e-05 +illusion_1.5L,sr,397,158.8,omega,upper,-5.696936484332303e-06 +illusion_1.5L,sr,397,158.8,omega,lower,-5.696936484332303e-06 +illusion_1.5L,sr,398,159.2,omega,front,-1.5064771419224799e-05 +illusion_1.5L,sr,398,159.2,omega,upper,-6.9830662665845005e-06 +illusion_1.5L,sr,398,159.2,omega,lower,-6.9830662665845005e-06 +illusion_1.5L,sr,399,159.6,omega,front,-1.805005515250882e-05 +illusion_1.5L,sr,399,159.6,omega,upper,-6.0832656349918065e-06 +illusion_1.5L,sr,399,159.6,omega,lower,-6.0832656349918065e-06 +illusion_1.5L,sr,0,0.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,sr,0,0.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,sr,1,0.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,sr,1,0.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,sr,2,0.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,sr,2,0.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,sr,3,1.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,sr,3,1.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,sr,4,1.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,sr,4,1.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,sr,5,2.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,sr,5,2.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,sr,6,2.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,sr,6,2.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,sr,7,2.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,sr,7,2.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,sr,8,3.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,sr,8,3.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,sr,9,3.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,sr,9,3.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,sr,10,4.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,sr,10,4.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,sr,11,4.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,sr,11,4.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,sr,12,4.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,sr,12,4.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,sr,13,5.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,sr,13,5.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,sr,14,5.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,sr,14,5.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,sr,15,6.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,sr,15,6.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,sr,16,6.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,sr,16,6.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,sr,17,6.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,sr,17,6.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,sr,18,7.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,sr,18,7.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,sr,19,7.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,sr,19,7.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,sr,20,8.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,sr,20,8.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,sr,21,8.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,sr,21,8.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,sr,22,8.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,sr,22,8.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,sr,23,9.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,sr,23,9.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,sr,24,9.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,sr,24,9.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,sr,25,10.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,sr,25,10.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,sr,26,10.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,sr,26,10.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,sr,27,10.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,sr,27,10.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,sr,28,11.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,sr,28,11.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,sr,29,11.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,sr,29,11.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,sr,30,12.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,sr,30,12.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,sr,31,12.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,sr,31,12.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,sr,32,12.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,sr,32,12.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,sr,33,13.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,sr,33,13.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,sr,34,13.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,sr,34,13.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,sr,35,14.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,sr,35,14.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,sr,36,14.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,sr,36,14.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,sr,37,14.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,sr,37,14.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,sr,38,15.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,sr,38,15.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,sr,39,15.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,sr,39,15.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,sr,40,16.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,sr,40,16.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,sr,41,16.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,sr,41,16.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,sr,42,16.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,sr,42,16.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,sr,43,17.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,sr,43,17.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,sr,44,17.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,sr,44,17.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,sr,45,18.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,sr,45,18.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,sr,46,18.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,sr,46,18.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,sr,47,18.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,sr,47,18.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,sr,48,19.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,sr,48,19.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,sr,49,19.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,sr,49,19.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,sr,50,20.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,sr,50,20.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,sr,51,20.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,sr,51,20.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,sr,52,20.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,sr,52,20.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,sr,53,21.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,sr,53,21.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,sr,54,21.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,sr,54,21.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,sr,55,22.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,sr,55,22.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,sr,56,22.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,sr,56,22.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,sr,57,22.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,sr,57,22.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,sr,58,23.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,sr,58,23.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,sr,59,23.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,sr,59,23.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,sr,60,24.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,sr,60,24.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,sr,61,24.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,sr,61,24.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,sr,62,24.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,sr,62,24.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,sr,63,25.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,sr,63,25.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,sr,64,25.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,sr,64,25.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,sr,65,26.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,sr,65,26.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,sr,66,26.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,sr,66,26.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,sr,67,26.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,sr,67,26.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,sr,68,27.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,sr,68,27.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,sr,69,27.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,sr,69,27.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,sr,70,28.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,sr,70,28.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,sr,71,28.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,sr,71,28.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,sr,72,28.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,sr,72,28.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,sr,73,29.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,sr,73,29.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,sr,74,29.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,sr,74,29.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,sr,75,30.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,sr,75,30.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,sr,76,30.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,sr,76,30.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,sr,77,30.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,sr,77,30.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,sr,78,31.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,sr,78,31.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,sr,79,31.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,sr,79,31.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,sr,80,32.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,sr,80,32.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,sr,81,32.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,sr,81,32.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,sr,82,32.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,sr,82,32.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,sr,83,33.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,sr,83,33.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,sr,84,33.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,sr,84,33.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,sr,85,34.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,sr,85,34.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,sr,86,34.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,sr,86,34.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,sr,87,34.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,sr,87,34.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,sr,88,35.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,sr,88,35.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,sr,89,35.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,sr,89,35.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,sr,90,36.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,sr,90,36.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,sr,91,36.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,sr,91,36.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,sr,92,36.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,sr,92,36.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,sr,93,37.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,sr,93,37.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,sr,94,37.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,sr,94,37.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,sr,95,38.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,sr,95,38.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,sr,96,38.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,sr,96,38.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,sr,97,38.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,sr,97,38.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,sr,98,39.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,sr,98,39.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,sr,99,39.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,sr,99,39.6,target_force,target_cl,-0.004395345691591501 +illusion_1.5L,sr,100,40.0,target_force,target_cd,0.008717188611626625 +illusion_1.5L,sr,100,40.0,target_force,target_cl,-0.004146318417042494 +illusion_1.5L,sr,101,40.4,target_force,target_cd,0.008651788346469402 +illusion_1.5L,sr,101,40.4,target_force,target_cl,-0.0036302267108112574 +illusion_1.5L,sr,102,40.8,target_force,target_cd,0.008710197173058987 +illusion_1.5L,sr,102,40.8,target_force,target_cl,-0.0028752374928444624 +illusion_1.5L,sr,103,41.2,target_force,target_cd,0.008641681633889675 +illusion_1.5L,sr,103,41.2,target_force,target_cl,-0.0019245173316448927 +illusion_1.5L,sr,104,41.6,target_force,target_cd,0.008270466700196266 +illusion_1.5L,sr,104,41.6,target_force,target_cl,-0.0008338304469361901 +illusion_1.5L,sr,105,42.0,target_force,target_cd,0.0080949105322361 +illusion_1.5L,sr,105,42.0,target_force,target_cl,0.0003316924849059433 +illusion_1.5L,sr,106,42.4,target_force,target_cd,0.008030417375266552 +illusion_1.5L,sr,106,42.4,target_force,target_cl,0.0015014351811259985 +illusion_1.5L,sr,107,42.8,target_force,target_cd,0.008088373579084873 +illusion_1.5L,sr,107,42.8,target_force,target_cl,0.002603593748062849 +illusion_1.5L,sr,108,43.2,target_force,target_cd,0.00838998332619667 +illusion_1.5L,sr,108,43.2,target_force,target_cl,0.003569631138816476 +illusion_1.5L,sr,109,43.6,target_force,target_cd,0.008452391251921654 +illusion_1.5L,sr,109,43.6,target_force,target_cl,0.004338605795055628 +illusion_1.5L,sr,110,44.0,target_force,target_cd,0.008437939919531345 +illusion_1.5L,sr,110,44.0,target_force,target_cl,0.004861098248511553 +illusion_1.5L,sr,111,44.4,target_force,target_cd,0.008596007712185383 +illusion_1.5L,sr,111,44.4,target_force,target_cl,0.005102469120174646 +illusion_1.5L,sr,112,44.8,target_force,target_cd,0.008660073392093182 +illusion_1.5L,sr,112,44.8,target_force,target_cl,0.005045230966061354 +illusion_1.5L,sr,113,45.2,target_force,target_cd,0.008821661584079266 +illusion_1.5L,sr,113,45.2,target_force,target_cl,0.004690361209213734 +illusion_1.5L,sr,114,45.6,target_force,target_cd,0.008882550522685051 +illusion_1.5L,sr,114,45.6,target_force,target_cl,0.0040574450977146626 +illusion_1.5L,sr,115,46.0,target_force,target_cd,0.008558989502489567 +illusion_1.5L,sr,115,46.0,target_force,target_cl,0.003183630993589759 +illusion_1.5L,sr,116,46.4,target_force,target_cd,0.008332237601280212 +illusion_1.5L,sr,116,46.4,target_force,target_cl,0.0021214294247329235 +illusion_1.5L,sr,117,46.8,target_force,target_cd,0.008196236565709114 +illusion_1.5L,sr,117,46.8,target_force,target_cl,0.000935496820602566 +illusion_1.5L,sr,118,47.2,target_force,target_cd,0.00811728835105896 +illusion_1.5L,sr,118,47.2,target_force,target_cl,-0.00030141021125018597 +illusion_1.5L,sr,119,47.6,target_force,target_cd,0.00829890463501215 +illusion_1.5L,sr,119,47.6,target_force,target_cl,-0.0015130521496757865 +illusion_1.5L,sr,120,48.0,target_force,target_cd,0.008303137496113777 +illusion_1.5L,sr,120,48.0,target_force,target_cl,-0.002624597167596221 +illusion_1.5L,sr,121,48.4,target_force,target_cd,0.008214408531785011 +illusion_1.5L,sr,121,48.4,target_force,target_cl,-0.0035674641840159893 +illusion_1.5L,sr,122,48.8,target_force,target_cd,0.0083629060536623 +illusion_1.5L,sr,122,48.8,target_force,target_cl,-0.004283796530216932 +illusion_1.5L,sr,123,49.2,target_force,target_cd,0.00848082173615694 +illusion_1.5L,sr,123,49.2,target_force,target_cl,-0.00473026093095541 +illusion_1.5L,sr,124,49.6,target_force,target_cd,0.008707493543624878 +illusion_1.5L,sr,124,49.6,target_force,target_cl,-0.004880912136286497 +illusion_1.5L,sr,125,50.0,target_force,target_cd,0.008908077143132687 +illusion_1.5L,sr,125,50.0,target_force,target_cl,-0.004728920757770538 +illusion_1.5L,sr,126,50.4,target_force,target_cd,0.00870131142437458 +illusion_1.5L,sr,126,50.4,target_force,target_cl,-0.004287036135792732 +illusion_1.5L,sr,127,50.8,target_force,target_cd,0.008512722328305244 +illusion_1.5L,sr,127,50.8,target_force,target_cl,-0.003586746985092759 +illusion_1.5L,sr,128,51.2,target_force,target_cd,0.008403330110013485 +illusion_1.5L,sr,128,51.2,target_force,target_cl,-0.002676178002730012 +illusion_1.5L,sr,129,51.6,target_force,target_cd,0.008277405984699726 +illusion_1.5L,sr,129,51.6,target_force,target_cl,-0.001616867259144783 +illusion_1.5L,sr,130,52.0,target_force,target_cd,0.008384994231164455 +illusion_1.5L,sr,130,52.0,target_force,target_cl,-0.0004796259745489806 +illusion_1.5L,sr,131,52.4,target_force,target_cd,0.008344382978975773 +illusion_1.5L,sr,131,52.4,target_force,target_cl,0.0006602332578040659 +illusion_1.5L,sr,132,52.8,target_force,target_cd,0.008156534284353256 +illusion_1.5L,sr,132,52.8,target_force,target_cl,0.0017279828898608685 +illusion_1.5L,sr,133,53.2,target_force,target_cd,0.008226209320127964 +illusion_1.5L,sr,133,53.2,target_force,target_cl,0.002654529409483075 +illusion_1.5L,sr,134,53.6,target_force,target_cd,0.008320114575326443 +illusion_1.5L,sr,134,53.6,target_force,target_cl,0.003381080459803343 +illusion_1.5L,sr,135,54.0,target_force,target_cd,0.00853065587580204 +illusion_1.5L,sr,135,54.0,target_force,target_cl,0.0038631048519164324 +illusion_1.5L,sr,136,54.4,target_force,target_cd,0.008803099393844604 +illusion_1.5L,sr,136,54.4,target_force,target_cl,0.004073311109095812 +illusion_1.5L,sr,137,54.8,target_force,target_cd,0.008690337650477886 +illusion_1.5L,sr,137,54.8,target_force,target_cl,0.004003433044999838 +illusion_1.5L,sr,138,55.2,target_force,target_cd,0.008544675074517727 +illusion_1.5L,sr,138,55.2,target_force,target_cl,0.003664699150249362 +illusion_1.5L,sr,139,55.6,target_force,target_cd,0.008495600894093513 +illusion_1.5L,sr,139,55.6,target_force,target_cl,0.0030869469046592712 +illusion_1.5L,sr,140,56.0,target_force,target_cd,0.008385095745325089 +illusion_1.5L,sr,140,56.0,target_force,target_cl,0.0023164439480751753 +illusion_1.5L,sr,141,56.4,target_force,target_cd,0.00847627129405737 +illusion_1.5L,sr,141,56.4,target_force,target_cl,0.001412564772181213 +illusion_1.5L,sr,142,56.8,target_force,target_cd,0.008447900414466858 +illusion_1.5L,sr,142,56.8,target_force,target_cl,0.0004435561131685972 +illusion_1.5L,sr,143,57.2,target_force,target_cd,0.008206440135836601 +illusion_1.5L,sr,143,57.2,target_force,target_cl,-0.0005183155299164355 +illusion_1.5L,sr,144,57.6,target_force,target_cd,0.00820583663880825 +illusion_1.5L,sr,144,57.6,target_force,target_cl,-0.0014018918154761195 +illusion_1.5L,sr,145,58.0,target_force,target_cd,0.008266313932836056 +illusion_1.5L,sr,145,58.0,target_force,target_cl,-0.0021421664860099554 +illusion_1.5L,sr,146,58.4,target_force,target_cd,0.008429205976426601 +illusion_1.5L,sr,146,58.4,target_force,target_cl,-0.0026848914567381144 +illusion_1.5L,sr,147,58.8,target_force,target_cd,0.008723028935492039 +illusion_1.5L,sr,147,58.8,target_force,target_cl,-0.0029904174152761698 +illusion_1.5L,sr,148,59.2,target_force,target_cd,0.008667167276144028 +illusion_1.5L,sr,148,59.2,target_force,target_cl,-0.0030365013517439365 +illusion_1.5L,sr,149,59.6,target_force,target_cd,0.008530458435416222 +illusion_1.5L,sr,149,59.6,target_force,target_cl,-0.002819881308823824 +illusion_1.5L,sr,150,60.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,sr,150,60.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,sr,151,60.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,sr,151,60.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,sr,152,60.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,sr,152,60.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,sr,153,61.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,sr,153,61.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,sr,154,61.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,sr,154,61.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,sr,155,62.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,sr,155,62.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,sr,156,62.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,sr,156,62.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,sr,157,62.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,sr,157,62.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,sr,158,63.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,sr,158,63.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,sr,159,63.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,sr,159,63.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,sr,160,64.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,sr,160,64.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,sr,161,64.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,sr,161,64.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,sr,162,64.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,sr,162,64.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,sr,163,65.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,sr,163,65.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,sr,164,65.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,sr,164,65.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,sr,165,66.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,sr,165,66.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,sr,166,66.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,sr,166,66.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,sr,167,66.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,sr,167,66.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,sr,168,67.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,sr,168,67.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,sr,169,67.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,sr,169,67.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,sr,170,68.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,sr,170,68.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,sr,171,68.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,sr,171,68.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,sr,172,68.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,sr,172,68.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,sr,173,69.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,sr,173,69.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,sr,174,69.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,sr,174,69.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,sr,175,70.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,sr,175,70.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,sr,176,70.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,sr,176,70.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,sr,177,70.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,sr,177,70.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,sr,178,71.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,sr,178,71.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,sr,179,71.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,sr,179,71.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,sr,180,72.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,sr,180,72.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,sr,181,72.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,sr,181,72.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,sr,182,72.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,sr,182,72.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,sr,183,73.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,sr,183,73.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,sr,184,73.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,sr,184,73.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,sr,185,74.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,sr,185,74.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,sr,186,74.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,sr,186,74.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,sr,187,74.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,sr,187,74.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,sr,188,75.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,sr,188,75.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,sr,189,75.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,sr,189,75.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,sr,190,76.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,sr,190,76.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,sr,191,76.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,sr,191,76.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,sr,192,76.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,sr,192,76.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,sr,193,77.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,sr,193,77.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,sr,194,77.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,sr,194,77.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,sr,195,78.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,sr,195,78.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,sr,196,78.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,sr,196,78.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,sr,197,78.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,sr,197,78.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,sr,198,79.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,sr,198,79.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,sr,199,79.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,sr,199,79.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,sr,200,80.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,sr,200,80.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,sr,201,80.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,sr,201,80.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,sr,202,80.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,sr,202,80.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,sr,203,81.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,sr,203,81.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,sr,204,81.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,sr,204,81.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,sr,205,82.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,sr,205,82.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,sr,206,82.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,sr,206,82.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,sr,207,82.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,sr,207,82.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,sr,208,83.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,sr,208,83.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,sr,209,83.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,sr,209,83.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,sr,210,84.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,sr,210,84.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,sr,211,84.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,sr,211,84.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,sr,212,84.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,sr,212,84.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,sr,213,85.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,sr,213,85.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,sr,214,85.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,sr,214,85.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,sr,215,86.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,sr,215,86.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,sr,216,86.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,sr,216,86.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,sr,217,86.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,sr,217,86.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,sr,218,87.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,sr,218,87.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,sr,219,87.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,sr,219,87.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,sr,220,88.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,sr,220,88.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,sr,221,88.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,sr,221,88.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,sr,222,88.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,sr,222,88.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,sr,223,89.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,sr,223,89.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,sr,224,89.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,sr,224,89.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,sr,225,90.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,sr,225,90.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,sr,226,90.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,sr,226,90.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,sr,227,90.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,sr,227,90.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,sr,228,91.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,sr,228,91.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,sr,229,91.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,sr,229,91.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,sr,230,92.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,sr,230,92.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,sr,231,92.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,sr,231,92.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,sr,232,92.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,sr,232,92.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,sr,233,93.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,sr,233,93.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,sr,234,93.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,sr,234,93.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,sr,235,94.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,sr,235,94.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,sr,236,94.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,sr,236,94.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,sr,237,94.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,sr,237,94.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,sr,238,95.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,sr,238,95.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,sr,239,95.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,sr,239,95.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,sr,240,96.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,sr,240,96.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,sr,241,96.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,sr,241,96.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,sr,242,96.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,sr,242,96.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,sr,243,97.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,sr,243,97.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,sr,244,97.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,sr,244,97.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,sr,245,98.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,sr,245,98.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,sr,246,98.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,sr,246,98.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,sr,247,98.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,sr,247,98.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,sr,248,99.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,sr,248,99.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,sr,249,99.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,sr,249,99.6,target_force,target_cl,-0.004395345691591501 +illusion_1.5L,sr,250,100.0,target_force,target_cd,0.008717188611626625 +illusion_1.5L,sr,250,100.0,target_force,target_cl,-0.004146318417042494 +illusion_1.5L,sr,251,100.4,target_force,target_cd,0.008651788346469402 +illusion_1.5L,sr,251,100.4,target_force,target_cl,-0.0036302267108112574 +illusion_1.5L,sr,252,100.8,target_force,target_cd,0.008710197173058987 +illusion_1.5L,sr,252,100.8,target_force,target_cl,-0.0028752374928444624 +illusion_1.5L,sr,253,101.2,target_force,target_cd,0.008641681633889675 +illusion_1.5L,sr,253,101.2,target_force,target_cl,-0.0019245173316448927 +illusion_1.5L,sr,254,101.6,target_force,target_cd,0.008270466700196266 +illusion_1.5L,sr,254,101.6,target_force,target_cl,-0.0008338304469361901 +illusion_1.5L,sr,255,102.0,target_force,target_cd,0.0080949105322361 +illusion_1.5L,sr,255,102.0,target_force,target_cl,0.0003316924849059433 +illusion_1.5L,sr,256,102.4,target_force,target_cd,0.008030417375266552 +illusion_1.5L,sr,256,102.4,target_force,target_cl,0.0015014351811259985 +illusion_1.5L,sr,257,102.8,target_force,target_cd,0.008088373579084873 +illusion_1.5L,sr,257,102.8,target_force,target_cl,0.002603593748062849 +illusion_1.5L,sr,258,103.2,target_force,target_cd,0.00838998332619667 +illusion_1.5L,sr,258,103.2,target_force,target_cl,0.003569631138816476 +illusion_1.5L,sr,259,103.6,target_force,target_cd,0.008452391251921654 +illusion_1.5L,sr,259,103.6,target_force,target_cl,0.004338605795055628 +illusion_1.5L,sr,260,104.0,target_force,target_cd,0.008437939919531345 +illusion_1.5L,sr,260,104.0,target_force,target_cl,0.004861098248511553 +illusion_1.5L,sr,261,104.4,target_force,target_cd,0.008596007712185383 +illusion_1.5L,sr,261,104.4,target_force,target_cl,0.005102469120174646 +illusion_1.5L,sr,262,104.8,target_force,target_cd,0.008660073392093182 +illusion_1.5L,sr,262,104.8,target_force,target_cl,0.005045230966061354 +illusion_1.5L,sr,263,105.2,target_force,target_cd,0.008821661584079266 +illusion_1.5L,sr,263,105.2,target_force,target_cl,0.004690361209213734 +illusion_1.5L,sr,264,105.6,target_force,target_cd,0.008882550522685051 +illusion_1.5L,sr,264,105.6,target_force,target_cl,0.0040574450977146626 +illusion_1.5L,sr,265,106.0,target_force,target_cd,0.008558989502489567 +illusion_1.5L,sr,265,106.0,target_force,target_cl,0.003183630993589759 +illusion_1.5L,sr,266,106.4,target_force,target_cd,0.008332237601280212 +illusion_1.5L,sr,266,106.4,target_force,target_cl,0.0021214294247329235 +illusion_1.5L,sr,267,106.8,target_force,target_cd,0.008196236565709114 +illusion_1.5L,sr,267,106.8,target_force,target_cl,0.000935496820602566 +illusion_1.5L,sr,268,107.2,target_force,target_cd,0.00811728835105896 +illusion_1.5L,sr,268,107.2,target_force,target_cl,-0.00030141021125018597 +illusion_1.5L,sr,269,107.6,target_force,target_cd,0.00829890463501215 +illusion_1.5L,sr,269,107.6,target_force,target_cl,-0.0015130521496757865 +illusion_1.5L,sr,270,108.0,target_force,target_cd,0.008303137496113777 +illusion_1.5L,sr,270,108.0,target_force,target_cl,-0.002624597167596221 +illusion_1.5L,sr,271,108.4,target_force,target_cd,0.008214408531785011 +illusion_1.5L,sr,271,108.4,target_force,target_cl,-0.0035674641840159893 +illusion_1.5L,sr,272,108.8,target_force,target_cd,0.0083629060536623 +illusion_1.5L,sr,272,108.8,target_force,target_cl,-0.004283796530216932 +illusion_1.5L,sr,273,109.2,target_force,target_cd,0.00848082173615694 +illusion_1.5L,sr,273,109.2,target_force,target_cl,-0.00473026093095541 +illusion_1.5L,sr,274,109.6,target_force,target_cd,0.008707493543624878 +illusion_1.5L,sr,274,109.6,target_force,target_cl,-0.004880912136286497 +illusion_1.5L,sr,275,110.0,target_force,target_cd,0.008908077143132687 +illusion_1.5L,sr,275,110.0,target_force,target_cl,-0.004728920757770538 +illusion_1.5L,sr,276,110.4,target_force,target_cd,0.00870131142437458 +illusion_1.5L,sr,276,110.4,target_force,target_cl,-0.004287036135792732 +illusion_1.5L,sr,277,110.8,target_force,target_cd,0.008512722328305244 +illusion_1.5L,sr,277,110.8,target_force,target_cl,-0.003586746985092759 +illusion_1.5L,sr,278,111.2,target_force,target_cd,0.008403330110013485 +illusion_1.5L,sr,278,111.2,target_force,target_cl,-0.002676178002730012 +illusion_1.5L,sr,279,111.6,target_force,target_cd,0.008277405984699726 +illusion_1.5L,sr,279,111.6,target_force,target_cl,-0.001616867259144783 +illusion_1.5L,sr,280,112.0,target_force,target_cd,0.008384994231164455 +illusion_1.5L,sr,280,112.0,target_force,target_cl,-0.0004796259745489806 +illusion_1.5L,sr,281,112.4,target_force,target_cd,0.008344382978975773 +illusion_1.5L,sr,281,112.4,target_force,target_cl,0.0006602332578040659 +illusion_1.5L,sr,282,112.8,target_force,target_cd,0.008156534284353256 +illusion_1.5L,sr,282,112.8,target_force,target_cl,0.0017279828898608685 +illusion_1.5L,sr,283,113.2,target_force,target_cd,0.008226209320127964 +illusion_1.5L,sr,283,113.2,target_force,target_cl,0.002654529409483075 +illusion_1.5L,sr,284,113.6,target_force,target_cd,0.008320114575326443 +illusion_1.5L,sr,284,113.6,target_force,target_cl,0.003381080459803343 +illusion_1.5L,sr,285,114.0,target_force,target_cd,0.00853065587580204 +illusion_1.5L,sr,285,114.0,target_force,target_cl,0.0038631048519164324 +illusion_1.5L,sr,286,114.4,target_force,target_cd,0.008803099393844604 +illusion_1.5L,sr,286,114.4,target_force,target_cl,0.004073311109095812 +illusion_1.5L,sr,287,114.8,target_force,target_cd,0.008690337650477886 +illusion_1.5L,sr,287,114.8,target_force,target_cl,0.004003433044999838 +illusion_1.5L,sr,288,115.2,target_force,target_cd,0.008544675074517727 +illusion_1.5L,sr,288,115.2,target_force,target_cl,0.003664699150249362 +illusion_1.5L,sr,289,115.6,target_force,target_cd,0.008495600894093513 +illusion_1.5L,sr,289,115.6,target_force,target_cl,0.0030869469046592712 +illusion_1.5L,sr,290,116.0,target_force,target_cd,0.008385095745325089 +illusion_1.5L,sr,290,116.0,target_force,target_cl,0.0023164439480751753 +illusion_1.5L,sr,291,116.4,target_force,target_cd,0.00847627129405737 +illusion_1.5L,sr,291,116.4,target_force,target_cl,0.001412564772181213 +illusion_1.5L,sr,292,116.8,target_force,target_cd,0.008447900414466858 +illusion_1.5L,sr,292,116.8,target_force,target_cl,0.0004435561131685972 +illusion_1.5L,sr,293,117.2,target_force,target_cd,0.008206440135836601 +illusion_1.5L,sr,293,117.2,target_force,target_cl,-0.0005183155299164355 +illusion_1.5L,sr,294,117.6,target_force,target_cd,0.00820583663880825 +illusion_1.5L,sr,294,117.6,target_force,target_cl,-0.0014018918154761195 +illusion_1.5L,sr,295,118.0,target_force,target_cd,0.008266313932836056 +illusion_1.5L,sr,295,118.0,target_force,target_cl,-0.0021421664860099554 +illusion_1.5L,sr,296,118.4,target_force,target_cd,0.008429205976426601 +illusion_1.5L,sr,296,118.4,target_force,target_cl,-0.0026848914567381144 +illusion_1.5L,sr,297,118.8,target_force,target_cd,0.008723028935492039 +illusion_1.5L,sr,297,118.8,target_force,target_cl,-0.0029904174152761698 +illusion_1.5L,sr,298,119.2,target_force,target_cd,0.008667167276144028 +illusion_1.5L,sr,298,119.2,target_force,target_cl,-0.0030365013517439365 +illusion_1.5L,sr,299,119.6,target_force,target_cd,0.008530458435416222 +illusion_1.5L,sr,299,119.6,target_force,target_cl,-0.002819881308823824 +illusion_1.5L,sr,300,120.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,sr,300,120.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,sr,301,120.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,sr,301,120.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,sr,302,120.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,sr,302,120.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,sr,303,121.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,sr,303,121.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,sr,304,121.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,sr,304,121.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,sr,305,122.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,sr,305,122.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,sr,306,122.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,sr,306,122.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,sr,307,122.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,sr,307,122.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,sr,308,123.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,sr,308,123.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,sr,309,123.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,sr,309,123.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,sr,310,124.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,sr,310,124.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,sr,311,124.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,sr,311,124.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,sr,312,124.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,sr,312,124.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,sr,313,125.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,sr,313,125.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,sr,314,125.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,sr,314,125.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,sr,315,126.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,sr,315,126.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,sr,316,126.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,sr,316,126.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,sr,317,126.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,sr,317,126.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,sr,318,127.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,sr,318,127.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,sr,319,127.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,sr,319,127.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,sr,320,128.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,sr,320,128.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,sr,321,128.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,sr,321,128.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,sr,322,128.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,sr,322,128.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,sr,323,129.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,sr,323,129.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,sr,324,129.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,sr,324,129.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,sr,325,130.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,sr,325,130.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,sr,326,130.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,sr,326,130.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,sr,327,130.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,sr,327,130.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,sr,328,131.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,sr,328,131.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,sr,329,131.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,sr,329,131.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,sr,330,132.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,sr,330,132.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,sr,331,132.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,sr,331,132.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,sr,332,132.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,sr,332,132.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,sr,333,133.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,sr,333,133.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,sr,334,133.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,sr,334,133.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,sr,335,134.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,sr,335,134.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,sr,336,134.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,sr,336,134.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,sr,337,134.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,sr,337,134.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,sr,338,135.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,sr,338,135.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,sr,339,135.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,sr,339,135.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,sr,340,136.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,sr,340,136.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,sr,341,136.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,sr,341,136.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,sr,342,136.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,sr,342,136.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,sr,343,137.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,sr,343,137.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,sr,344,137.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,sr,344,137.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,sr,345,138.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,sr,345,138.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,sr,346,138.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,sr,346,138.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,sr,347,138.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,sr,347,138.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,sr,348,139.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,sr,348,139.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,sr,349,139.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,sr,349,139.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,sr,350,140.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,sr,350,140.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,sr,351,140.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,sr,351,140.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,sr,352,140.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,sr,352,140.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,sr,353,141.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,sr,353,141.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,sr,354,141.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,sr,354,141.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,sr,355,142.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,sr,355,142.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,sr,356,142.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,sr,356,142.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,sr,357,142.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,sr,357,142.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,sr,358,143.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,sr,358,143.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,sr,359,143.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,sr,359,143.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,sr,360,144.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,sr,360,144.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,sr,361,144.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,sr,361,144.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,sr,362,144.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,sr,362,144.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,sr,363,145.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,sr,363,145.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,sr,364,145.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,sr,364,145.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,sr,365,146.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,sr,365,146.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,sr,366,146.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,sr,366,146.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,sr,367,146.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,sr,367,146.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,sr,368,147.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,sr,368,147.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,sr,369,147.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,sr,369,147.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,sr,370,148.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,sr,370,148.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,sr,371,148.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,sr,371,148.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,sr,372,148.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,sr,372,148.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,sr,373,149.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,sr,373,149.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,sr,374,149.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,sr,374,149.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,sr,375,150.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,sr,375,150.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,sr,376,150.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,sr,376,150.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,sr,377,150.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,sr,377,150.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,sr,378,151.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,sr,378,151.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,sr,379,151.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,sr,379,151.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,sr,380,152.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,sr,380,152.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,sr,381,152.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,sr,381,152.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,sr,382,152.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,sr,382,152.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,sr,383,153.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,sr,383,153.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,sr,384,153.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,sr,384,153.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,sr,385,154.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,sr,385,154.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,sr,386,154.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,sr,386,154.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,sr,387,154.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,sr,387,154.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,sr,388,155.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,sr,388,155.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,sr,389,155.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,sr,389,155.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,sr,390,156.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,sr,390,156.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,sr,391,156.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,sr,391,156.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,sr,392,156.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,sr,392,156.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,sr,393,157.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,sr,393,157.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,sr,394,157.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,sr,394,157.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,sr,395,158.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,sr,395,158.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,sr,396,158.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,sr,396,158.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,sr,397,158.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,sr,397,158.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,sr,398,159.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,sr,398,159.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,sr,399,159.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,sr,399,159.6,target_force,target_cl,-0.004395345691591501 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json new file mode 100644 index 0000000..dcac2f3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1.5L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz", + "sample_interval": 800, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv new file mode 100644 index 0000000..bf354be --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1.5L,sr,0,0.0,1.2853484153747559,-0.3347664773464203,0.8939734697341919,-0.39780083298683167,0.7416527271270752,-0.07217772305011749,0.0018789551686495543,1.5806617739144713e-05,0.0015016896650195122,0.002819690154865384,0.001548096421174705,-0.0025362083688378334,0.14266170227978886,-0.10658694103971597,-0.10658694103971597,0.0014266170227978886,-0.0010658694103971597,-0.0010658694103971597,0.008516530506312847,-0.00235650478862226,0 +illusion_1.5L,sr,1,0.4,1.3694076538085938,-0.2854442298412323,0.8185009956359863,-0.10236727446317673,0.7593058943748474,0.03245874121785164,0.0019240264082327485,-5.117011824040674e-05,0.0017863322282209992,0.002230979735031724,0.0019070329144597054,-0.002092586364597082,0.07501603472150006,-0.053260922443758206,-0.053260922443758206,0.0007501603472150006,-0.0005326092244375821,-0.0005326092244375821,0.008421123959124088,-0.0016804002225399017,1 +illusion_1.5L,sr,2,0.8,1.3785731792449951,-0.12598338723182678,0.767090916633606,0.25756019353866577,0.8127157092094421,0.11251027882099152,0.001966069685295224,-9.002021397463977e-05,0.0020082578994333744,0.0016399244777858257,0.0021808831952512264,-0.0016787945060059428,0.004595853374333825,0.0024858757266248005,0.0024858757266248005,4.5958533743338246e-05,2.4858757266248004e-05,2.4858757266248004e-05,0.008498861454427242,-0.0008412639726884663,2 +illusion_1.5L,sr,3,1.2,1.2479976415634155,0.13462691009044647,0.7840788960456848,0.48559558391571045,0.8725901246070862,0.17925997078418732,0.0019950889982283115,-0.00011025474668713287,0.0021529877558350563,0.0011106376769021153,0.0023585129529237747,-0.0013034933945164084,-0.028187031443080574,0.029283561192107246,0.029283561192107246,-0.00028187031443080576,0.0002928356119210725,0.0002928356119210725,0.008499415591359138,9.906048217089847e-05,3 +illusion_1.5L,sr,4,1.6,1.0699890851974487,0.3211340606212616,0.8496437072753906,0.520403265953064,0.9331063628196716,0.23400095105171204,0.002017511520534754,-0.00011620926670730114,0.002244872972369194,0.0006877232808619738,0.002468422520905733,-0.0010068608680739999,-0.03991352801809778,0.039567958821340954,0.039567958821340954,-0.00039913528018097776,0.00039567958821340953,0.00039567958821340953,0.008235407061874866,0.0010709670605137944,4 +illusion_1.5L,sr,5,2.0,0.9520607590675354,0.3568200170993805,0.9054616689682007,0.5175142884254456,0.9958294630050659,0.27556321024894714,0.0020343700889497995,-0.00011294430441921577,0.002300795866176486,0.0003685935225803405,0.0025446368381381035,-0.000803571252617985,-0.035744913273209916,0.03736167686742703,0.03736167686742703,-0.00035744913273209916,0.0003736167686742703,0.0003736167686742703,0.008183185011148453,0.0020020240917801857,5 +illusion_1.5L,sr,6,2.4,0.8813046216964722,0.32061290740966797,0.9399266242980957,0.5356393456459045,1.0613631010055542,0.3067677915096283,0.0020379815250635147,-0.0001080596266547218,0.002317755715921521,0.00015287412679754198,0.0025937408208847046,-0.000672929163556546,-0.010472222909088835,0.01964538917072295,0.01964538917072295,-0.00010472222909088835,0.00019645389170722948,0.00019645389170722948,0.008230230771005154,0.002822116483002901,6 +illusion_1.5L,sr,7,2.8,0.8185665011405945,0.2577570974826813,0.9548571705818176,0.5564129948616028,1.1319578886032104,0.32917675375938416,0.0020330804400146008,-0.00011272805568296462,0.002318502403795719,3.8322956243064255e-05,0.0026333576533943415,-0.0005843858816660941,0.028969462733821616,-0.00798019838287356,-0.00798019838287356,0.00028969462733821616,-7.98019838287356e-05,-7.98019838287356e-05,0.008360556326806545,0.0034684324637055397,7 +illusion_1.5L,sr,8,3.2,0.7616463303565979,0.16552351415157318,0.9391800165176392,0.5258281230926514,1.2112687826156616,0.34099140763282776,0.002021165331825614,-0.0001239106641151011,0.0023143277503550053,1.60643885465106e-05,0.0026627930346876383,-0.0005196682177484035,0.05483170953917469,-0.025226617519694988,-0.025226617519694988,0.0005483170953917469,-0.0002522661751969499,-0.0002522661751969499,0.008675433695316315,0.003889942541718483,8 +illusion_1.5L,sr,9,3.6,0.7346155643463135,0.05309738591313362,0.8828492760658264,0.3626258373260498,1.300978183746338,0.3325258195400238,0.0020028031431138515,-0.00013383473560679704,0.0023092948831617832,6.797800597269088e-05,0.002674276940524578,-0.00047001271741464734,0.062441411049944495,-0.02921964183252096,-0.02921964183252096,0.000624414110499445,-0.0002921964183252096,-0.0002921964183252096,0.008685079403221607,0.004051059018820524,9 +illusion_1.5L,sr,10,4.0,0.7566478252410889,-0.04746169596910477,0.8085324168205261,0.04782712459564209,1.3801246881484985,0.2691396474838257,0.0019899511244148016,-0.00013389388914220035,0.0023151489440351725,0.00017156644025817513,0.0026720270980149508,-0.0004306758055463433,0.05703804118536704,-0.02441457144088341,-0.02441457144088341,0.0005703804118536704,-0.0002441457144088341,-0.0002441457144088341,0.00856055412441492,0.003934219013899565,10 +illusion_1.5L,sr,11,4.4,0.8096019625663757,-0.12370948493480682,0.7696402072906494,-0.30209752917289734,1.3697516918182373,0.08678360283374786,0.0019773440435528755,-0.0001237141841556877,0.0023224109318107367,0.0003014196117874235,0.002643788233399391,-0.00039677537279203534,0.04951460720895895,-0.01924125161177645,-0.01924125161177645,0.0004951460720895895,-0.0001924125161177645,-0.0001924125161177645,0.008574451319873333,0.0035412150900810957,11 +illusion_1.5L,sr,12,4.8,0.8661729693412781,-0.1867372840642929,0.8017509579658508,-0.4903346300125122,1.2239415645599365,-0.17352065443992615,0.001964104827493429,-0.00010401396866654977,0.0023295781575143337,0.0004298218700569123,0.00259047350846231,-0.00036293972516432405,0.03810753111720666,-0.012529758081816084,-0.012529758081816084,0.0003810753111720666,-0.00012529758081816084,-0.00012529758081816084,0.008493040688335896,0.0028931754641234875,12 +illusion_1.5L,sr,13,5.2,0.9212461113929749,-0.2367047518491745,0.8721705079078674,-0.49936553835868835,1.0563660860061646,-0.33038052916526794,0.0019578973297029734,-7.609262684127316e-05,0.002345853950828314,0.0005320867639966309,0.002527657663449645,-0.00032162005663849413,0.023540190217483103,-0.004697671242348045,-0.004697671242348045,0.00023540190217483103,-4.697671242348045e-05,-4.697671242348045e-05,0.008542587049305439,0.0020292061381042004,13 +illusion_1.5L,sr,14,5.6,0.9745296239852905,-0.27407217025756836,0.9293696880340576,-0.4844802916049957,0.9546641707420349,-0.34818199276924133,0.0019541133660823107,-4.3098858441226184e-05,0.0023674764670431614,0.0005947073805145919,0.0024603288620710373,-0.00026961357798427343,0.008949037980885866,0.0022442893578380058,0.0022442893578380058,8.949037980885865e-05,2.244289357838006e-05,2.244289357838006e-05,0.008553043939173222,0.0010037844767794013,14 +illusion_1.5L,sr,15,6.0,1.025780200958252,-0.3031139075756073,0.9695701599121094,-0.4848438501358032,0.8911476135253906,-0.3128186762332916,0.001958959735929966,-8.415579031861853e-06,0.0024023146834224463,0.0006125199142843485,0.0024048711638897657,-0.00020796206081286073,-0.004174992285769327,0.007619391936644841,0.007619391936644841,-4.1749922857693275e-05,7.619391936644842e-05,7.619391936644842e-05,0.008254999294877052,-0.00011690740939229727,15 +illusion_1.5L,sr,16,6.4,1.0765351057052612,-0.3276141881942749,0.9968022108078003,-0.4917405843734741,0.8309836387634277,-0.25586628913879395,0.0019718001130968332,2.475151268299669e-05,0.002450003754347563,0.0005906969890929759,0.0023680501617491245,-0.00014502106932923198,-0.015039062613191332,0.01125615416351976,0.01125615416351976,-0.00015039062613191333,0.0001125615416351976,0.0001125615416351976,0.008126122877001762,-0.0012594565050676465,16 +illusion_1.5L,sr,17,6.8,1.1292146444320679,-0.350045770406723,1.00529944896698,-0.4913525879383087,0.7742268443107605,-0.17131343483924866,0.001980337779968977,5.349265120457858e-05,0.002495037391781807,0.0005413472536019981,0.002339552855119109,-9.473560203332454e-05,-0.023749070230074963,0.01358076925116957,0.01358076925116957,-0.00023749070230074962,0.00013580769251169572,0.00013580769251169572,0.008139083161950111,-0.0023481876123696566,17 +illusion_1.5L,sr,18,7.2,1.1872129440307617,-0.3711673319339752,0.9789169430732727,-0.44915086030960083,0.740187406539917,-0.06703577190637589,0.0019851953256875277,7.664148870389909e-05,0.0025360819417983294,0.00047941747470758855,0.0023216349072754383,-7.004794315434992e-05,-0.03156916444487097,0.015782241987135598,0.015782241987135598,-0.0003156916444487097,0.00015782241987135598,0.00015782241987135598,0.008225912228226662,-0.0033102850429713726,18 +illusion_1.5L,sr,19,7.6,1.253464937210083,-0.38773903250694275,0.900881290435791,-0.3102948069572449,0.7444359064102173,0.03174014016985893,0.0019860556349158287,9.285881969844922e-05,0.0025702291168272495,0.00042066533933393657,0.00231386860832572,-8.20009590825066e-05,-0.03762913093110848,0.017391547526992443,0.017391547526992443,-0.0003762913093110848,0.00017391547526992443,0.00017391547526992443,0.008550929836928844,-0.004080713726580143,19 +illusion_1.5L,sr,20,8.0,1.320042371749878,-0.38084203004837036,0.7824045419692993,-0.050456658005714417,0.7760822772979736,0.11460736393928528,0.001979856053367257,0.00010303164162905887,0.0025879109743982553,0.00037918222369626164,0.0023096520453691483,-0.0001349640660919249,-0.042428232858790355,0.018899223758284345,0.018899223758284345,-0.0004242823285879036,0.00018899223758284345,0.00018899223758284345,0.008641579188406467,-0.004606609698385,20 +illusion_1.5L,sr,21,8.4,1.3378798961639404,-0.29120931029319763,0.6792733669281006,0.254600465297699,0.8160839080810547,0.1889987736940384,0.0019758131820708513,0.00010444796498632059,0.0025940225459635258,0.0003579815092962235,0.002316885394975543,-0.0002228502999059856,-0.04142638945744384,0.017089520217865917,0.017089520217865917,-0.0004142638945744384,0.00017089520217865916,0.00017089520217865916,0.008560840971767902,-0.004850836470723152,21 +illusion_1.5L,sr,22,8.8,1.2293070554733276,-0.05614369735121727,0.6587418913841248,0.4571809470653534,0.860951840877533,0.2553979158401489,0.0019704585429280996,9.838354890234768e-05,0.002578945364803076,0.0003524578642100096,0.002327550435438752,-0.00033060868736356497,-0.0374778779739523,0.014221671581609863,0.014221671581609863,-0.00037477877973952304,0.00014221671581609864,0.00014221671581609864,0.008636081591248512,-0.004794478416442871,22 +illusion_1.5L,sr,23,9.2,1.022835612297058,0.23967574536800385,0.7072708010673523,0.5335742235183716,0.9109421372413635,0.3125251829624176,0.0019618147052824497,8.241509203799069e-05,0.002540611894801259,0.00034843935281969607,0.00233727740123868,-0.00043729436583817005,-0.026487395854868562,0.007342517812929023,0.007342517812929023,-0.0002648739585486856,7.342517812929023e-05,7.342517812929023e-05,0.008616222999989986,-0.004438104573637247,23 +illusion_1.5L,sr,24,9.6,0.8484265804290771,0.4225391149520874,0.7623031139373779,0.5773834586143494,0.9652373790740967,0.3616727888584137,0.001959262415766716,5.946747478446923e-05,0.0024953163228929043,0.0003314359055366367,0.00235669850371778,-0.0005197537830099463,-0.01556046199107966,0.0015990471387839766,0.0015990471387839766,-0.0001556046199107966,1.5990471387839767e-05,1.5990471387839767e-05,0.008672966621816158,-0.0038017285987734795,24 +illusion_1.5L,sr,25,10.0,0.7565224170684814,0.4625617265701294,0.8051251173019409,0.6240385174751282,1.0237308740615845,0.40433797240257263,0.0019590065348893404,3.1083505746209994e-05,0.00244760955683887,0.0002948165638372302,0.0023821420036256313,-0.0005655928398482502,-0.003829776299165727,-0.0039268714482774275,-0.0039268714482774275,-3.829776299165727e-05,-3.926871448277428e-05,-3.926871448277428e-05,0.008711673319339752,-0.002923475345596671,25 +illusion_1.5L,sr,26,10.4,0.7023565769195557,0.4379411041736603,0.8357635736465454,0.6697564721107483,1.0873364210128784,0.4416112005710602,0.001966063631698489,2.4032365217863116e-06,0.0024112933315336704,0.00024276727344840765,0.0024192449636757374,-0.0005697696469724178,0.004380017602658798,-0.006435356813242997,-0.006435356813242997,4.380017602658798e-05,-6.435356813242998e-05,-6.435356813242998e-05,0.008389359340071678,-0.001857058727182448,26 +illusion_1.5L,sr,27,10.8,0.6482239365577698,0.38458356261253357,0.8504985570907593,0.6886041760444641,1.1578925848007202,0.47409844398498535,0.001981321256607771,-2.3801678253221326e-05,0.002393565373495221,0.0001875728485174477,0.0024681142531335354,-0.0005387839628383517,0.012223706574852382,-0.00865974507562029,-0.00865974507562029,0.00012223706574852381,-8.65974507562029e-05,-8.65974507562029e-05,0.008158615790307522,-0.0006682443199679255,27 +illusion_1.5L,sr,28,11.2,0.5924237966537476,0.29357028007507324,0.8394606709480286,0.6344987750053406,1.236741065979004,0.5007703304290771,0.0019917599856853485,-4.505736433202401e-05,0.0023825711105018854,0.00014776139869354665,0.0025119027122855186,-0.00048696459271013737,0.018947256631999136,-0.010387804015082852,-0.010387804015082852,0.00018947256631999135,-0.00010387804015082853,-0.00010387804015082853,0.00808980967849493,0.0005694532301276922,28 +illusion_1.5L,sr,29,11.6,0.5500978231430054,0.15860719978809357,0.7961891889572144,0.480823278427124,1.3201984167099,0.5131731629371643,0.001996909035369754,-6.023563037160784e-05,0.0023777561727911234,0.00013705958554055542,0.0025467893574386835,-0.00042998488061130047,0.025098222513521284,-0.01226834726071317,-0.01226834726071317,0.00025098222513521284,-0.0001226834726071317,-0.0001226834726071317,0.00807673204690218,0.0017795475432649255,29 +illusion_1.5L,sr,30,12.0,0.5414053797721863,-0.0006387472385540605,0.7278521060943604,0.23513954877853394,1.3857799768447876,0.4786035120487213,0.001997181214392185,-6.956872675800696e-05,0.0023782483767718077,0.0001635027292650193,0.002569905249401927,-0.00038231865619309247,0.03002234168007363,-0.01397644991430004,-0.01397644991430004,0.0003002234168007363,-0.0001397644991430004,-0.0001397644991430004,0.008341887965798378,0.002887511160224676,30 +illusion_1.5L,sr,31,12.4,0.5850970149040222,-0.13721656799316406,0.6593781113624573,-0.08252492547035217,1.3827589750289917,0.32627758383750916,0.00199041492305696,-7.24473429727368e-05,0.0023781899362802505,0.0002251846162835136,0.0025740107521414757,-0.00035212215152569115,0.031416493830579484,-0.01390481145598693,-0.01390481145598693,0.00031416493830579485,-0.0001390481145598693,-0.0001390481145598693,0.008465869352221489,0.003825533203780651,31 +illusion_1.5L,sr,32,12.8,0.6723821759223938,-0.22226624190807343,0.6211937069892883,-0.41672056913375854,1.271610140800476,0.00853498000651598,0.001986105926334858,-6.914840923855081e-05,0.002385749714449048,0.0003084593918174505,0.0025667473673820496,-0.0003372328355908394,0.029276549709110866,-0.012117779953243507,-0.012117779953243507,0.0002927654970911087,-0.00012117779953243507,-0.00012117779953243507,0.008411048911511898,0.0045367949642241,32 +illusion_1.5L,sr,33,13.2,0.7637759447097778,-0.2872767150402069,0.6391782164573669,-0.6538000702857971,1.1063730716705322,-0.35371702909469604,0.0019833699334412813,-5.899179814150557e-05,0.0023977323435246944,0.00039555932744406164,0.00254641892388463,-0.00032924622064456344,0.022549148610663067,-0.007861413942901976,-0.007861413942901976,0.00022549148610663067,-7.861413942901977e-05,-7.861413942901977e-05,0.008551978506147861,0.0049789901822805405,33 +illusion_1.5L,sr,34,13.6,0.8472319841384888,-0.34783822298049927,0.7119470834732056,-0.7197402119636536,0.9671990871429443,-0.579109251499176,0.0019778450950980186,-4.3051812099292874e-05,0.002408005064353347,0.000467321602627635,0.0025108628906309605,-0.00031782645964995027,0.014007627941374652,-0.003115324365086256,-0.003115324365086256,0.00014007627941374653,-3.115324365086256e-05,-3.115324365086256e-05,0.008640555664896965,0.005126874428242445,34 +illusion_1.5L,sr,35,14.0,0.9288363456726074,-0.3966549038887024,0.7879781126976013,-0.730914294719696,0.8799324631690979,-0.6181447505950928,0.001977166160941124,-2.3125905499910004e-05,0.0024251961149275303,0.0005092412466183305,0.002474750392138958,-0.00029477421776391566,0.005060115861464182,0.0012718968279104154,0.0012718968279104154,5.060115861464182e-05,1.2718968279104153e-05,1.2718968279104153e-05,0.00877284724265337,0.004973690956830978,35 +illusion_1.5L,sr,36,14.4,1.0109918117523193,-0.4341167211532593,0.8464985489845276,-0.7571253776550293,0.8175090551376343,-0.576081395149231,0.0019776998087763786,-2.5702759103296557e-06,0.0024454721715301275,0.0005168576026335359,0.002440407406538725,-0.0002618414582684636,-0.002485238192542129,0.004256675142558879,0.004256675142558879,-2.4852381925421287e-05,4.25667514255888e-05,4.25667514255888e-05,0.008914750069379807,0.004531398881226778,36 +illusion_1.5L,sr,37,14.8,1.0958915948867798,-0.46216607093811035,0.8898646831512451,-0.7778922915458679,0.7470625042915344,-0.5208539962768555,0.001982081448659301,1.689479177002795e-05,0.0024716125335544348,0.0004946576664224267,0.002415955998003483,-0.00022677351080346853,-0.009931976359751939,0.007104293359363471,0.007104293359363471,-9.931976359751939e-05,7.104293359363471e-05,7.104293359363471e-05,0.008651209995150566,0.0038297150749713182,37 +illusion_1.5L,sr,38,15.2,1.1867022514343262,-0.4810590445995331,0.9093762040138245,-0.7412360906600952,0.6697779893875122,-0.42883166670799255,0.00199187733232975,3.310172905912623e-05,0.0025051243137568235,0.00045398372458294034,0.0024067573249340057,-0.0002016224170802161,-0.015952056013451767,0.009092386515019573,0.009092386515019573,-0.00015952056013451767,9.092386515019573e-05,9.092386515019573e-05,0.008369920775294304,0.002914042677730322,38 +illusion_1.5L,sr,39,15.6,1.2846142053604126,-0.48555102944374084,0.8914536237716675,-0.6019835472106934,0.6039661169052124,-0.2742238938808441,0.0019962491933256388,4.548275683191605e-05,0.002530645811930299,0.0004105879634153098,0.0024002548307180405,-0.00019872109987773,-0.02150049852810114,0.011115826310035014,0.011115826310035014,-0.0002150049852810114,0.00011115826310035014,0.00011115826310035014,0.00823057908564806,0.0018424494192004204,39 +illusion_1.5L,sr,40,16.0,1.376551628112793,-0.45026034116744995,0.8371829390525818,-0.35483166575431824,0.5701799988746643,-0.07077112793922424,0.0019938882905989885,5.362298907130025e-05,0.0025437516160309315,0.0003758224775083363,0.002394031500443816,-0.00022319224081002176,-0.025187536248827455,0.012282779723670853,0.012282779723670853,-0.00025187536248827457,0.00012282779723670853,0.00012282779723670853,0.008093336597084999,0.0006818966940045357,40 +illusion_1.5L,sr,41,16.4,1.4143084287643433,-0.3113105893135071,0.7725231647491455,-0.003888288978487253,0.5871488451957703,0.12747007608413696,0.0019890672992914915,5.714583312510513e-05,0.0025448582600802183,0.00035444044624455273,0.002390057547017932,-0.0002719029725994915,-0.026035425026770934,0.011967516892463087,0.011967516892463087,-0.00026035425026770936,0.00011967516892463087,0.00011967516892463087,0.008223836310207844,-0.0004960204241797328,41 +illusion_1.5L,sr,42,16.8,1.3389209508895874,-0.02238169126212597,0.7367588877677917,0.3773347735404968,0.6616170406341553,0.2556875944137573,0.001979883061721921,5.53923673578538e-05,0.002529505407437682,0.0003446953487582505,0.0023843562230467796,-0.0003348721074871719,-0.02340265946773183,0.009771001147038327,0.009771001147038327,-0.00023402659467731832,9.771001147038328e-05,9.771001147038328e-05,0.008288096636533737,-0.0016195487696677446,42 +illusion_1.5L,sr,43,17.2,1.1813374757766724,0.2948891818523407,0.7515559196472168,0.633807897567749,0.7610466480255127,0.3205516040325165,0.0019751766230911016,4.785053533851169e-05,0.002508648904040456,0.0003377221873961389,0.0023866479750722647,-0.0003972044214606285,-0.018207915413876286,0.006396796891998471,0.006396796891998471,-0.00018207915413876285,6.396796891998471e-05,6.396796891998471e-05,0.008168513886630535,-0.0026211808435618877,43 +illusion_1.5L,sr,44,17.6,1.0355912446975708,0.461806058883667,0.8072605133056641,0.6925636529922485,0.8543921113014221,0.3678685128688812,0.0019755472894757986,3.626766556408256e-05,0.002485749078914523,0.0003261197416577488,0.002397203352302313,-0.00044598965905606747,-0.012636622490472385,0.0034022313487601236,0.0034022313487601236,-0.00012636622490472385,3.4022313487601235e-05,3.4022313487601235e-05,0.008290053345263004,-0.003441715380176902,44 +illusion_1.5L,sr,45,18.0,0.9367257952690125,0.4793928563594818,0.8624052405357361,0.6930235028266907,0.941253662109375,0.4049588441848755,0.001973410602658987,2.1655048840329982e-05,0.0024559323210269213,0.0003066532372031361,0.002406912390142679,-0.0004734335234388709,-0.005994666338924037,0.00011795001196720362,0.00011795001196720362,-5.9946663389240376e-05,1.1795001196720362e-06,1.1795001196720362e-06,0.008446116000413895,-0.004033731762319803,45 +illusion_1.5L,sr,46,18.4,0.8588667511940002,0.4463217556476593,0.903443455696106,0.710603654384613,1.0254820585250854,0.43219947814941406,0.001974262995645404,6.096543074818328e-06,0.0024294788017868996,0.00028003251645714045,0.002421528333798051,-0.0004760831652674824,-6.331504174741931e-05,-0.002344249604069957,-0.002344249604069957,-6.331504174741931e-07,-2.344249604069957e-05,-2.344249604069957e-05,0.00865935068577528,-0.004364273976534605,46 +illusion_1.5L,sr,47,18.8,0.7772409319877625,0.39298492670059204,0.9312669634819031,0.7248942852020264,1.1102690696716309,0.4510027766227722,0.0019748921040445566,-8.477878509438597e-06,0.0024064802564680576,0.00025312407524324954,0.0024373368360102177,-0.0004584569833241403,0.005325089679630038,-0.004329279203754443,-0.004329279203754443,5.325089679630038e-05,-4.3292792037544435e-05,-4.3292792037544435e-05,0.00895126722753048,-0.004416606388986111,47 +illusion_1.5L,sr,48,19.2,0.6944994330406189,0.2979812026023865,0.9351258873939514,0.6781249046325684,1.1991147994995117,0.46082690358161926,0.0019761077128350735,-2.1361640392569825e-05,0.0023898945655673742,0.00023430217697750777,0.002454252215102315,-0.0004290643846616149,0.010678860330198107,-0.006399030711805561,-0.006399030711805561,0.00010678860330198107,-6.399030711805561e-05,-6.399030711805561e-05,0.008846367709338665,-0.004190945997834206,48 +illusion_1.5L,sr,49,19.6,0.6309234499931335,0.15079960227012634,0.9011482000350952,0.5235363841056824,1.2936474084854126,0.45605388283729553,0.0019813310354948044,-3.116948209935799e-05,0.0023848761338740587,0.00023121380945667624,0.0024752309545874596,-0.000397411931771785,0.014677025212976284,-0.0077242214418837074,-0.0077242214418837074,0.00014677025212976285,-7.724221441883707e-05,-7.724221441883707e-05,0.0086283003911376,-0.0037041637115180492,49 +illusion_1.5L,sr,50,20.0,0.6127941012382507,-0.0198044590651989,0.8311047554016113,0.25908249616622925,1.3823126554489136,0.41465699672698975,0.001981981098651886,-3.8288944779196754e-05,0.0023805927485227585,0.00024874857626855373,0.0024873879738152027,-0.00037324585719034076,0.018172078378196357,-0.009043052426451585,-0.009043052426451585,0.00018172078378196358,-9.043052426451586e-05,-9.043052426451586e-05,0.00852078478783369,-0.002988493302837014,50 +illusion_1.5L,sr,51,20.4,0.656205415725708,-0.15706825256347656,0.7528651356697083,-0.09872713685035706,1.419792890548706,0.28319984674453735,0.001977004576474428,-4.1353538108523935e-05,0.002374076284468174,0.00028527952963486314,0.0024865048471838236,-0.0003589651023503393,0.018489055499382942,-0.008475732658397218,-0.008475732658397218,0.00018489055499382943,-8.475732658397219e-05,-8.475732658397219e-05,0.008339837193489075,-0.0020893490873277187,51 +illusion_1.5L,sr,52,20.8,0.7378488779067993,-0.2428567111492157,0.7119930386543274,-0.45085036754608154,1.340300440788269,0.01749533601105213,0.0019713740330189466,-4.0504713979316875e-05,0.002369827823713422,0.0003320972609799355,0.0024764270056039095,-0.0003521220351103693,0.017307163773579798,-0.0073261474842927915,-0.0073261474842927915,0.000173071637735798,-7.326147484292792e-05,-7.326147484292792e-05,0.008356091566383839,-0.001062412979081273,52 +illusion_1.5L,sr,53,21.2,0.8212339282035828,-0.30702197551727295,0.7384223937988281,-0.6325084567070007,1.1635133028030396,-0.2792271077632904,0.001963554648682475,-3.511141403578222e-05,0.002365036867558956,0.000379675067961216,0.0024554217234253883,-0.00034670718014240265,0.013735569284603233,-0.0049669105527930385,-0.0049669105527930385,0.00013735569284603234,-4.966910552793038e-05,-4.966910552793038e-05,0.00832816120237112,2.9825627279933542e-05,53 +illusion_1.5L,sr,54,21.6,0.9005906581878662,-0.3582172393798828,0.8017539978027344,-0.6556898355484009,1.00126314163208,-0.43228471279144287,0.0019607299473136663,-2.6547135348664597e-05,0.002368326997384429,0.00041685719043016434,0.002434117253869772,-0.00033670596894808114,0.010061419792369422,-0.0030383264904706303,-0.0030383264904706303,0.00010061419792369422,-3.0383264904706305e-05,-3.0383264904706305e-05,0.008069791831076145,0.0011218518484383821,54 +illusion_1.5L,sr,55,22.0,0.9790084362030029,-0.39646685123443604,0.8541042804718018,-0.6657617092132568,0.8995391130447388,-0.44191157817840576,0.001963716931641102,-1.5370449546026066e-05,0.002380895661190152,0.0004383546474855393,0.0024168973322957754,-0.000319395971018821,0.005280011596395157,-0.0006989597442886505,-0.0006989597442886505,5.2800115963951565e-05,-6.989597442886505e-06,-6.989597442886505e-06,0.008051803335547447,0.002149005187675357,55 +illusion_1.5L,sr,56,22.4,1.0581921339035034,-0.4241189956665039,0.891038715839386,-0.6906160116195679,0.8244715929031372,-0.401153028011322,0.0019637311343103647,-3.5900179682357702e-06,0.0023919439408928156,0.0004431778797879815,0.002396044321358204,-0.00029802616336382926,0.0011482205596524755,0.0009062260026564752,0.0009062260026564752,1.1482205596524756e-05,9.062260026564753e-06,9.062260026564753e-06,0.008151903748512268,0.0030512260273098946,56 +illusion_1.5L,sr,57,22.8,1.1401432752609253,-0.4421907365322113,0.9123208522796631,-0.6956544518470764,0.7477474808692932,-0.33668601512908936,0.0019642836414277554,8.312192221637815e-06,0.002404517726972699,0.00043376072426326573,0.0023777063470333815,-0.0002762415388133377,-0.003666679863959809,0.0029139740107842057,0.0029139740107842057,-3.666679863959809e-05,2.9139740107842057e-05,2.9139740107842057e-05,0.00834288913756609,0.0037764590233564377,57 +illusion_1.5L,sr,58,23.2,1.2268112897872925,-0.44925862550735474,0.906269907951355,-0.6214038729667664,0.6742027401924133,-0.23271244764328003,0.001964055234566331,1.8680517314351164e-05,0.0024166200309991837,0.00041552912443876266,0.002362338826060295,-0.0002607796632219106,-0.007326429193725438,0.00411498228284299,0.00411498228284299,-7.326429193725438e-05,4.11498228284299e-05,4.11498228284299e-05,0.008715752512216568,0.004283526912331581,58 +illusion_1.5L,sr,59,23.6,1.3169742822647095,-0.43815216422080994,0.8628895282745361,-0.4409160315990448,0.6269578337669373,-0.0896623507142067,0.001962589332833886,2.73172900051577e-05,0.002426222199574113,0.0003954552812501788,0.002350105904042721,-0.000257007748587057,-0.011009346312854697,0.005501030720557451,0.005501030720557451,-0.00011009346312854696,5.5010307205574513e-05,5.5010307205574513e-05,0.00877283327281475,0.004544325638562441,59 +illusion_1.5L,sr,60,24.0,1.3952223062515259,-0.3861345052719116,0.7874401211738586,-0.16363434493541718,0.6318172216415405,0.056213196367025375,0.0019648519810289145,3.306774306111038e-05,0.0024377868976444006,0.0003782698477152735,0.0023472446482628584,-0.0002677298034541309,-0.013120826010025122,0.005998802637537964,0.005998802637537964,-0.00013120826010025121,5.9988026375379646e-05,5.9988026375379646e-05,0.008680131286382675,0.004545234143733978,60 +illusion_1.5L,sr,61,24.4,1.4170811176300049,-0.24719783663749695,0.709622323513031,0.18687519431114197,0.6902596354484558,0.16453178226947784,0.001964753959327936,3.5762423067353666e-05,0.0024418397806584835,0.00036748338607139885,0.0023455547634512186,-0.0002933622454293072,-0.014424311452349958,0.006259927758867315,0.006259927758867315,-0.00014424311452349958,6.259927758867315e-05,6.259927758867315e-05,0.00870765931904316,0.00428768340498209,61 +illusion_1.5L,sr,62,24.8,1.3247113227844238,0.00940055400133133,0.6775324940681458,0.5003275871276855,0.7676355838775635,0.24319520592689514,0.001959635876119137,3.527033913997002e-05,0.002434037858620286,0.00036184253985993564,0.002341202460229397,-0.0003289822197984904,-0.014106046101955831,0.005744234515941644,0.005744234515941644,-0.0001410604610195583,5.7442345159416446e-05,5.7442345159416446e-05,0.008620945736765862,0.0037878667935729027,62 +illusion_1.5L,sr,63,25.2,1.1386749744415283,0.2876890301704407,0.7179456949234009,0.6333780288696289,0.8431004285812378,0.309138685464859,0.0019555098842829466,3.123429269180633e-05,0.0024205304216593504,0.00035633036168292165,0.002339819213375449,-0.0003661889350041747,-0.011971405693369491,0.00433250598115157,0.00433250598115157,-0.00011971405693369491,4.33250598115157e-05,4.33250598115157e-05,0.008646907284855843,0.0030756364576518536,63 +illusion_1.5L,sr,64,25.6,0.9701051115989685,0.4289672076702118,0.7851821184158325,0.6477783918380737,0.9178990125656128,0.36088067293167114,0.00194989622104913,2.4445564122288488e-05,0.0024000525008887053,0.0003472801763564348,0.0023386518005281687,-0.00039753978489898145,-0.009230745951608513,0.0028953521604061713,0.0028953521604061713,-9.230745951608513e-05,2.8953521604061713e-05,2.8953521604061713e-05,0.008617529645562172,0.0021926581393927336,64 +illusion_1.5L,sr,65,26.0,0.8673630356788635,0.43227946758270264,0.8356739282608032,0.6654011011123657,0.9934735894203186,0.39957907795906067,0.0019484906224533916,1.535936098662205e-05,0.0023814120795577765,0.0003317542723380029,0.00234420970082283,-0.00041723731555975974,-0.0056096992741284865,0.0011570999515216826,0.0011570999515216826,-5.609699274128487e-05,1.1570999515216827e-05,1.1570999515216827e-05,0.008267231285572052,0.0011899459641426802,65 +illusion_1.5L,sr,66,26.4,0.7948504686355591,0.38463664054870605,0.8701664805412292,0.6916365027427673,1.071302890777588,0.42735084891319275,0.0019528924021869898,5.2399036576389335e-06,0.002369331195950508,0.00031133872107602656,0.002358696423470974,-0.00042367345304228365,-0.0022677216025225114,-0.00013617423546362015,-0.00013617423546362015,-2.2677216025225113e-05,-1.3617423546362015e-06,-1.3617423546362015e-06,0.008079802617430687,0.00012491656525526196,66 +illusion_1.5L,sr,67,26.8,0.7229272723197937,0.3121165335178375,0.8875400424003601,0.6851100325584412,1.1529673337936401,0.4446435868740082,0.0019539573695510626,-4.948722107656067e-06,0.0023549722973257303,0.0002911561750806868,0.0023706601932644844,-0.0004197960952296853,0.0011049829323072774,-0.0013366216077578307,-0.0013366216077578307,1.1049829323072774e-05,-1.3366216077578307e-05,-1.3366216077578307e-05,0.008036432787775993,-0.0009418626432307065,67 +illusion_1.5L,sr,68,27.2,0.657316267490387,0.20307797193527222,0.877112865447998,0.590523362159729,1.2392644882202148,0.44931280612945557,0.0019540039356797934,-1.4125203051662538e-05,0.0023418928030878305,0.0002758025366347283,0.002381345024332404,-0.0004085906548425555,0.004111187494791916,-0.002277744608931813,-0.002277744608931813,4.111187494791916e-05,-2.277744608931813e-05,-2.277744608931813e-05,0.008079362101852894,-0.0019500593189150095,68 +illusion_1.5L,sr,69,27.6,0.621903657913208,0.06378868222236633,0.8313195705413818,0.39624157547950745,1.3264962434768677,0.43328526616096497,0.001953114289790392,-2.1373409254010767e-05,0.0023313022684305906,0.0002699070319067687,0.0023900498636066914,-0.00039443475543521345,0.006870417541152981,-0.0031608565097333285,-0.0031608565097333285,6.870417541152981e-05,-3.1608565097333286e-05,-3.1608565097333286e-05,0.008383121341466904,-0.002842910820618272,69 +illusion_1.5L,sr,70,28.0,0.6395828127861023,-0.06856894493103027,0.7554214000701904,0.1163153201341629,1.3969192504882812,0.3747069835662842,0.0019503022776916623,-2.6625197278917767e-05,0.0023221122100949287,0.00027607957599684596,0.002394200535491109,-0.00038152479100972414,0.009529054087877575,-0.0041875004523611176,-0.0041875004523611176,9.529054087877576e-05,-4.1875004523611176e-05,-4.1875004523611176e-05,0.008482938632369041,-0.0035703328903764486,70 +illusion_1.5L,sr,71,28.4,0.7026787400245667,-0.1659967303276062,0.6784841418266296,-0.22501954436302185,1.4101066589355469,0.2352297455072403,0.0019511488499119878,-2.9147784516680986e-05,0.0023210174404084682,0.0002938064280897379,0.0023993821814656258,-0.00037133449222892523,0.010870892838141653,-0.004529948981386214,-0.004529948981386214,0.00010870892838141653,-4.5299489813862146e-05,-4.5299489813862146e-05,0.008444554172456264,-0.00409164372831583,71 +illusion_1.5L,sr,72,28.8,0.7765886783599854,-0.2435925155878067,0.6503197550773621,-0.518039882183075,1.3160712718963623,-0.009683806449174881,0.0019515822641551495,-2.9206152248661965e-05,0.0023223422467708588,0.0003208320995327085,0.0023993586655706167,-0.0003647039702627808,0.011395293439750924,-0.0046119407620503275,-0.0046119407620503275,0.00011395293439750925,-4.611940762050328e-05,-4.611940762050328e-05,0.00859114434570074,-0.004377763718366623,72 +illusion_1.5L,sr,73,29.2,0.8490328788757324,-0.31032443046569824,0.6970846056938171,-0.6338809132575989,1.1277186870574951,-0.28092992305755615,0.0019474539440125227,-2.6257243007421494e-05,0.002320914762094617,0.00035213076625950634,0.002389119705185294,-0.00035936140920966864,0.010043368140658315,-0.003677056089246469,-0.003677056089246469,0.00010043368140658316,-3.677056089246469e-05,-3.677056089246469e-05,0.008660022169351578,-0.0044127777218818665,73 +illusion_1.5L,sr,74,29.6,0.9223983883857727,-0.3625795245170593,0.7671868801116943,-0.6478908658027649,0.9507560729980469,-0.42790183424949646,0.0019445772049948573,-2.0539746401482262e-05,0.0023222751915454865,0.00038054812466725707,0.0023752939887344837,-0.000351253489498049,0.008083830556475255,-0.0026564760607825297,-0.0026564760607825297,8.083830556475255e-05,-2.6564760607825297e-05,-2.6564760607825297e-05,0.008805335499346256,-0.00419478677213192,74 +illusion_1.5L,sr,75,30.0,0.9973444938659668,-0.4017159938812256,0.8183781504631042,-0.6691901683807373,0.8434784412384033,-0.43380045890808105,0.0019406834617257118,-1.3161709830455948e-05,0.002323900582268834,0.0004014829464722425,0.002357128309085965,-0.0003385635791346431,0.006018021770367123,-0.0018681835145589328,-0.0018681835145589328,6.018021770367123e-05,-1.8681835145589328e-05,-1.8681835145589328e-05,0.00891233142465353,-0.003736004466190934,75 +illusion_1.5L,sr,76,30.4,1.0748082399368286,-0.42947253584861755,0.8526104688644409,-0.6951600909233093,0.7725388407707214,-0.38202953338623047,0.001939724083058536,-4.41028896602802e-06,0.0023302421905100346,0.00041194423101842403,0.002341263461858034,-0.0003212457522749901,0.003174698476357547,-0.0007290193786002423,-0.0007290193786002423,3.174698476357547e-05,-7.2901937860024236e-06,-7.2901937860024236e-06,0.008620023727416992,-0.0030620943289250135,76 +illusion_1.5L,sr,77,30.8,1.156332015991211,-0.4459156394004822,0.8692378401756287,-0.6818234920501709,0.7045072913169861,-0.3044999837875366,0.0019442845368757844,4.2655378820199985e-06,0.0023444632533937693,0.0004122431273572147,0.002332985633984208,-0.0003023092867806554,0.0009607407784103655,-0.0001735109686259173,-0.0001735109686259173,9.607407784103656e-06,-1.7351096862591731e-06,-1.7351096862591731e-06,0.008369951508939266,-0.0022107805125415325,77 +illusion_1.5L,sr,78,31.2,1.242121696472168,-0.44855114817619324,0.8591176867485046,-0.5772385597229004,0.6436712741851807,-0.192975714802742,0.0019456985173746943,1.2407806025294121e-05,0.002355472184717655,0.0004063998640049249,0.002323349006474018,-0.000287068571196869,-0.0016763619768655046,0.0006809319186837038,0.0006809319186837038,-1.6763619768655046e-05,6.809319186837038e-06,6.809319186837038e-06,0.008232075721025467,-0.001229805056937039,78 +illusion_1.5L,sr,79,31.6,1.3272485733032227,-0.42929062247276306,0.8158023953437805,-0.37810075283050537,0.6139018535614014,-0.055403366684913635,0.0019449545070528984,1.8645012460183352e-05,0.002363100415095687,0.0003969927493017167,0.00231376220472157,-0.0002794945321511477,-0.003722340861977418,0.0011882455900604182,0.0011882455900604182,-3.722340861977418e-05,1.1882455900604182e-05,1.1882455900604182e-05,0.00811179168522358,-0.00017433101311326027,79 +illusion_1.5L,sr,80,32.0,1.3935855627059937,-0.36860713362693787,0.7425888180732727,-0.1019299253821373,0.6368128657341003,0.07180020958185196,0.0019436150323599577,2.3404109015245922e-05,0.002368247602134943,0.00038714450784027576,0.0023065521381795406,-0.0002815697807818651,-0.006568198536207673,0.0024549406024865807,0.0024549406024865807,-6.568198536207673e-05,2.4549406024865806e-05,2.4549406024865806e-05,0.008253613486886024,0.0008960727136582136,80 +illusion_1.5L,sr,81,32.4,1.40553617477417,-0.23567596077919006,0.665248692035675,0.2306208461523056,0.70168137550354,0.16536132991313934,0.0019401396857574582,2.5605228074709885e-05,0.002368014072999358,0.0003785732260439545,0.002299669198691845,-0.00029434822499752045,-0.008028983961092695,0.0029334022240647267,0.0029334022240647267,-8.028983961092696e-05,2.933402224064727e-05,2.933402224064727e-05,0.008266055956482887,0.0019207126460969448,81 +illusion_1.5L,sr,82,32.8,1.3199362754821777,-0.009725661017000675,0.6341621279716492,0.516976535320282,0.7742025256156921,0.24246902763843536,0.0019401327008381486,2.5964352971641347e-05,0.002368407091125846,0.00037132459692656994,0.002299805637449026,-0.00031490149558521807,-0.009557710106610391,0.0037405709051132816,0.0037405709051132816,-9.557710106610391e-05,3.7405709051132816e-05,3.7405709051132816e-05,0.008138866163790226,0.002841145033016801,82 +illusion_1.5L,sr,83,33.2,1.1364994049072266,0.2528739869594574,0.6796123385429382,0.631389319896698,0.8450831770896912,0.30980542302131653,0.0019412466790527105,2.3534312276751734e-05,0.002366091590374708,0.0003644063835963607,0.002303518122062087,-0.0003406033792998642,-0.009050633849596902,0.003352733073732641,0.003352733073732641,-9.050633849596902e-05,3.3527330737326414e-05,3.3527330737326414e-05,0.008266528137028217,0.0036044649314135313,83 +illusion_1.5L,sr,84,33.6,0.9490420818328857,0.41327103972435,0.7506481409072876,0.6452322602272034,0.9175716638565063,0.36283278465270996,0.0019381169695407152,1.9198570953449234e-05,0.00235516345128417,0.0003564858343452215,0.002304298337548971,-0.00036681987694464624,-0.008562063495098797,0.003285143713008844,0.003285143713008844,-8.562063495098797e-05,3.285143713008844e-05,3.285143713008844e-05,0.008407868444919586,0.004166331607848406,84 +illusion_1.5L,sr,85,34.0,0.8317368030548096,0.43052688241004944,0.8022506237030029,0.6666790246963501,0.9920657873153687,0.4027605950832367,0.0019361390732228756,1.2928208889206871e-05,0.0023421207442879677,0.00034473289269953966,0.0023072578478604555,-0.0003882186720147729,-0.006819905099027246,0.0025667661923984113,0.0025667661923984113,-6.819905099027246e-05,2.5667661923984113e-05,2.5667661923984113e-05,0.008650233037769794,0.004493560642004013,85 +illusion_1.5L,sr,86,34.4,0.7607052326202393,0.37972527742385864,0.8360322713851929,0.6933014392852783,1.0692050457000732,0.43121787905693054,0.0019334412645548582,5.770901225332636e-06,0.0023266240023076534,0.0003294501220807433,0.0023104012943804264,-0.0004018355393782258,-0.005150163297907656,0.002111436939654588,0.002111436939654588,-5.1501632979076564e-05,2.111436939654588e-05,2.111436939654588e-05,0.008936306461691856,0.0045661311596632,86 +illusion_1.5L,sr,87,34.8,0.6964700222015381,0.30228710174560547,0.8522283434867859,0.6828078627586365,1.1501169204711914,0.4481337368488312,0.001932624145410955,-1.7368037106280099e-06,0.0023133354261517525,0.00031211599707603455,0.002316531492397189,-0.00040664448169991374,-0.002902249607637809,0.0013568385729984048,0.0013568385729984048,-2.902249607637809e-05,1.3568385729984049e-05,1.3568385729984049e-05,0.008818242698907852,0.004378491081297398,87 +illusion_1.5L,sr,88,35.2,0.6385085582733154,0.1942303329706192,0.8437281847000122,0.5831966996192932,1.2350465059280396,0.45094677805900574,0.001936929184012115,-8.802438060229179e-06,0.002307828748598695,0.00029596680542454123,0.0023295029532164335,-0.0004039575287606567,-0.0006666446065356959,0.0006493288787361258,0.0006493288787361258,-6.666446065356959e-06,6.493288787361258e-06,6.493288787361258e-06,0.00864899531006813,0.003940064925700426,88 +illusion_1.5L,sr,89,35.6,0.609472930431366,0.06191057711839676,0.804696261882782,0.38988062739372253,1.3192027807235718,0.4321799576282501,0.0019385776249691844,-1.4796842151554301e-05,0.0023016633931547403,0.00028599853976629674,0.0023392871953547,-0.0003976181033067405,0.0016225272516291814,-0.00014371206395131023,-0.00014371206395131023,1.6225272516291815e-05,-1.4371206395131023e-06,-1.4371206395131023e-06,0.00856008566915989,0.003274921327829361,89 +illusion_1.5L,sr,90,36.0,0.631447434425354,-0.061607107520103455,0.7357273697853088,0.12399154901504517,1.3859570026397705,0.37508392333984375,0.00193732266779989,-1.929501013364643e-05,0.002294591162353754,0.0002846687857527286,0.0023443084210157394,-0.00039003638084977865,0.003813924571176248,-0.0009877214467981024,-0.0009877214467981024,3.813924571176248e-05,-9.877214467981025e-06,-9.877214467981025e-06,0.008397326804697514,0.002420595847070217,90 +illusion_1.5L,sr,91,36.4,0.6950693726539612,-0.15397199988365173,0.6567979454994202,-0.19884611666202545,1.4043563604354858,0.2545207142829895,0.001935733132995665,-2.178554132115096e-05,0.0022896749433130026,0.0002926704182755202,0.002346606459468603,-0.00038245844189077616,0.005572468671760533,-0.0016994425125173155,-0.0016994425125173155,5.572468671760533e-05,-1.6994425125173156e-05,-1.6994425125173156e-05,0.008429951965808868,0.0014261198230087757,91 +illusion_1.5L,sr,92,36.8,0.766120433807373,-0.2316950559616089,0.6162701845169067,-0.4928039312362671,1.3368574380874634,0.050884079188108444,0.0019320978317409754,-2.2238262317841873e-05,0.002284690970554948,0.00030908474582247436,0.0023433563765138388,-0.0003757287049666047,0.007019581665602362,-0.002418651304485077,-0.002418651304485077,7.019581665602362e-05,-2.418651304485077e-05,-2.418651304485077e-05,0.008345250971615314,0.00034934014547616243,92 +illusion_1.5L,sr,93,37.2,0.8349295854568481,-0.301317036151886,0.6537798047065735,-0.6263521313667297,1.1677467823028564,-0.20462244749069214,0.0019315838580951095,-2.055378172372002e-05,0.002285743597894907,0.0003306156722828746,0.002340573351830244,-0.0003685241099447012,0.0076685076564093416,-0.002814390073000002,-0.002814390073000002,7.668507656409342e-05,-2.8143900730000018e-05,-2.8143900730000018e-05,0.008059890009462833,-0.0007463268702849746,93 +illusion_1.5L,sr,94,37.6,0.9058565497398376,-0.3569188416004181,0.7272396683692932,-0.6435884237289429,0.9686424732208252,-0.390653520822525,0.0019334167009219527,-1.6907230019569397e-05,0.002291410230100155,0.0003539325261954218,0.002337292768061161,-0.00036001880653202534,0.007642996539454307,-0.0029826044683248717,-0.0029826044683248717,7.642996539454307e-05,-2.9826044683248718e-05,-2.9826044683248718e-05,0.00803802814334631,-0.0017955382354557514,94 +illusion_1.5L,sr,95,38.0,0.979519248008728,-0.39909130334854126,0.782684862613678,-0.6631608605384827,0.8322261571884155,-0.43271541595458984,0.001931346021592617,-1.1696404726535548e-05,0.0022940407507121563,0.0003757097292691469,0.002326865680515766,-0.0003496168937999755,0.006999764866973533,-0.0029429349190359597,-0.0029429349190359597,6.999764866973533e-05,-2.9429349190359596e-05,-2.9429349190359596e-05,0.00810767337679863,-0.0027348583098500967,95 +illusion_1.5L,sr,96,38.4,1.0561281442642212,-0.42946961522102356,0.8188308477401733,-0.6909496188163757,0.7560180425643921,-0.3879674971103668,0.001929791527800262,-5.452590812637936e-06,0.00229775533080101,0.000391875539207831,0.0023148581385612488,-0.00033606411307118833,0.005831934828152814,-0.002715472065076236,-0.002715472065076236,5.8319348281528145e-05,-2.7154720650762363e-05,-2.7154720650762363e-05,0.008312919177114964,-0.0035065629053860903,96 +illusion_1.5L,sr,97,38.8,1.1364272832870483,-0.44809433817863464,0.8376818895339966,-0.6885457038879395,0.6947422027587891,-0.31222304701805115,0.001927803037688136,9.442059649700241e-07,0.0023015534970909357,0.00040069431997835636,0.00230175768956542,-0.0003206476685591042,0.00436319615569989,-0.002395256569928025,-0.002395256569928025,4.36319615569989e-05,-2.395256569928025e-05,-2.395256569928025e-05,0.008678091689944267,-0.004062185063958168,97 +illusion_1.5L,sr,98,39.2,1.220388412475586,-0.4526952803134918,0.8335772752761841,-0.6028428077697754,0.6380167603492737,-0.2087545245885849,0.0019267542520537972,7.22930826668744e-06,0.0023067679721862078,0.00040237754001282156,0.002290409756824374,-0.0003055135894101113,0.002135795747956555,-0.0015708903633778332,-0.0015708903633778332,2.1357957479565552e-05,-1.570890363377833e-05,-1.570890363377833e-05,0.008710966445505619,-0.004365585744380951,98 +illusion_1.5L,sr,99,39.6,1.3041189908981323,-0.43687140941619873,0.8012048602104187,-0.42185792326927185,0.6055439114570618,-0.08076551556587219,0.001930437283590436,1.2540262105176225e-05,0.002317936159670353,0.0003982450580224395,0.0022866397630423307,-0.0002937735116574913,-1.5138123464136092e-05,-0.0007867226839641406,-0.0007867226839641406,-1.5138123464136093e-07,-7.867226839641407e-06,-7.867226839641407e-06,0.00866282731294632,-0.004395345691591501,99 +illusion_1.5L,sr,100,40.0,1.373569130897522,-0.386733740568161,0.7390239834785461,-0.17012609541416168,0.621239185333252,0.0429191030561924,0.0019322748994454741,1.698724736343138e-05,0.002326431917026639,0.0003920810704585165,0.002283080480992794,-0.0002891979238484055,-0.0026937848691287423,0.0004672690510801741,0.0004672690510801741,-2.6937848691287423e-05,4.672690510801741e-06,4.672690510801741e-06,0.008717188611626625,-0.004146318417042494,100 +illusion_1.5L,sr,101,40.4,1.4019981622695923,-0.28150683641433716,0.6598422527313232,0.14001697301864624,0.6815013885498047,0.1370442509651184,0.0019306476460769773,1.9778024579863995e-05,0.0023292810656130314,0.0003855162940453738,0.0022777626290917397,-0.0002935031079687178,-0.004522908952159198,0.001233105178588427,0.001233105178588427,-4.522908952159198e-05,1.233105178588427e-05,1.233105178588427e-05,0.008651788346469402,-0.0036302267108112574,101 +illusion_1.5L,sr,102,40.8,1.357263445854187,-0.10355737805366516,0.606356680393219,0.44538426399230957,0.752281129360199,0.21532787382602692,0.0019288707990199327,2.1027159164077602e-05,0.0023293246049433947,0.0003790844639297575,0.0022743665613234043,-0.00030560107552446425,-0.006220308379295068,0.002091095044206185,0.002091095044206185,-6.220308379295069e-05,2.091095044206185e-05,2.091095044206185e-05,0.008710197173058987,-0.0028752374928444624,102 +illusion_1.5L,sr,103,41.2,1.214043378829956,0.13602623343467712,0.6278597712516785,0.6125096678733826,0.8198249936103821,0.2875033915042877,0.0019252327037975192,1.9967723346780986e-05,0.002324010943993926,0.0003724551061168313,0.002270667813718319,-0.0003240669029764831,-0.006782879501506585,0.0023397144373095424,0.0023397144373095424,-6.782879501506585e-05,2.3397144373095425e-05,2.3397144373095425e-05,0.008641681633889675,-0.0019245173316448927,103 +illusion_1.5L,sr,104,41.6,1.0112913846969604,0.34598591923713684,0.7007017731666565,0.6396360993385315,0.8889411687850952,0.3466030955314636,0.0019243666902184486,1.7485815988038667e-05,0.002319046063348651,0.0003645199176389724,0.002272173063829541,-0.00034477849840186536,-0.0074951732852316655,0.002945705339999386,0.002945705339999386,-7.495173285231665e-05,2.945705339999386e-05,2.945705339999386e-05,0.008270466700196266,-0.0008338304469361901,104 +illusion_1.5L,sr,105,42.0,0.8490402102470398,0.4251972436904907,0.7609364986419678,0.6552590131759644,0.9611576795578003,0.39206522703170776,0.0019267848692834377,1.3431957086140756e-05,0.0023153568617999554,0.00035448241396807134,0.002279222011566162,-0.00036474133958108723,-0.00670986896737525,0.002680049737115924,0.002680049737115924,-6.70986896737525e-05,2.6800497371159243e-05,2.6800497371159243e-05,0.0080949105322361,0.0003316924849059433,105 +illusion_1.5L,sr,106,42.4,0.7588828802108765,0.39619120955467224,0.7998877763748169,0.6837252974510193,1.036683201789856,0.42563334107398987,0.001925730612128973,8.198155228456017e-06,0.002305740723386407,0.0003430390788707882,0.0022835778072476387,-0.0003814214433077723,-0.005271856892085477,0.0021394669450593706,0.0021394669450593706,-5.271856892085477e-05,2.1394669450593707e-05,2.1394669450593707e-05,0.008030417375266552,0.0015014351811259985,106 +illusion_1.5L,sr,107,42.8,0.6982904672622681,0.3256060779094696,0.8217090368270874,0.6927487254142761,1.1160311698913574,0.4475860595703125,0.001924587762914598,2.0847612631769152e-06,0.0022944884840399027,0.0003297296934761107,0.002288297051563859,-0.0003922528412658721,-0.003316406009602861,0.001373630635520982,0.001373630635520982,-3.3164060096028614e-05,1.373630635520982e-05,1.373630635520982e-05,0.008088373579084873,0.002603593748062849,107 +illusion_1.5L,sr,108,43.2,0.6431583166122437,0.22959581017494202,0.8226600885391235,0.6298708319664001,1.199171543121338,0.4559970796108246,0.0019231903133913875,-4.419749529915862e-06,0.002283016685396433,0.00031600877991877496,0.002293120138347149,-0.0003967144584748894,-0.0013506738144720264,0.0006977192282991772,0.0006977192282991772,-1.3506738144720264e-05,6.977192282991772e-06,6.977192282991772e-06,0.00838998332619667,0.003569631138816476,108 +illusion_1.5L,sr,109,43.6,0.6060715317726135,0.10887438803911209,0.7976576089859009,0.4697072207927704,1.2829726934432983,0.4455048441886902,0.001921952236443758,-1.004236128210323e-05,0.0022727353498339653,0.0003044569166377187,0.0022981236688792706,-0.0003954365965910256,0.00010296404856377506,0.0004166193668507616,0.0004166193668507616,1.0296404856377507e-06,4.166193668507616e-06,4.166193668507616e-06,0.008452391251921654,0.004338605795055628,109 +illusion_1.5L,sr,110,44.0,0.6117963790893555,-0.014230369590222836,0.7439714074134827,0.23574276268482208,1.3562614917755127,0.40469181537628174,0.0019249068573117256,-1.5245806025632191e-05,0.002269709948450327,0.0002970717032440007,0.002307835267856717,-0.00039029266918078065,0.002454823282680728,-0.0005785835403199005,-0.0005785835403199005,2.454823282680728e-05,-5.785835403199005e-06,-5.785835403199005e-06,0.008437939919531345,0.004861098248511553,110 +illusion_1.5L,sr,111,44.4,0.6649507284164429,-0.11167879402637482,0.6673606038093567,-0.05710272863507271,1.3963043689727783,0.3160340487957001,0.0019268639152869582,-1.8215290765510872e-05,0.0022679597605019808,0.000297454243991524,0.002315377350896597,-0.0003837105177808553,0.0033450786402671397,-0.0006162328568288557,-0.0006162328568288557,3.3450786402671396e-05,-6.162328568288557e-06,-6.162328568288557e-06,0.008596007712185383,0.005102469120174646,111 +illusion_1.5L,sr,112,44.8,0.7348455190658569,-0.19090452790260315,0.6010453701019287,-0.37045857310295105,1.3753525018692017,0.16350990533828735,0.0019251215271651745,-2.049258182523772e-05,0.0022642433177679777,0.0003054422268178314,0.002316510770469904,-0.00037797752884216607,0.00570124959295501,-0.0019069363255558441,-0.0019069363255558441,5.70124959295501e-05,-1.9069363255558442e-05,-1.9069363255558442e-05,0.008660073392093182,0.005045230966061354,112 +illusion_1.5L,sr,113,45.2,0.8012850880622864,-0.2659953832626343,0.5992493629455566,-0.5837951898574829,1.26601243019104,-0.05423398315906525,0.001923395087942481,-2.0042169126099907e-05,0.0022624062839895487,0.0003200060164090246,0.002314808079972863,-0.00037193699972704053,0.005429188200524321,-0.0014689963323822192,-0.0014689963323822192,5.429188200524321e-05,-1.4689963323822192e-05,-1.4689963323822192e-05,0.008821661584079266,0.004690361209213734,113 +illusion_1.5L,sr,114,45.6,0.8684378862380981,-0.3299957513809204,0.6664990186691284,-0.6363348364830017,1.0743602514266968,-0.2815965414047241,0.0019201587419956923,-1.8736629499471746e-05,0.002260528737679124,0.0003378838300704956,0.002308100461959839,-0.00036612155963666737,0.006481757935572201,-0.0022415231364929337,-0.0022415231364929337,6.4817579355722e-05,-2.241523136492934e-05,-2.241523136492934e-05,0.008882550522685051,0.0040574450977146626,114 +illusion_1.5L,sr,115,46.0,0.9387872815132141,-0.3800804913043976,0.7344785928726196,-0.6476717591285706,0.8860500454902649,-0.4086250066757202,0.0019191071623936296,-1.476355373597471e-05,0.0022629075683653355,0.00035650841891765594,0.0023013437166810036,-0.00035809833207167685,0.004765720377216585,-0.001206967873529998,-0.001206967873529998,4.7657203772165856e-05,-1.2069678735299981e-05,-1.2069678735299981e-05,0.008558989502489567,0.003183630993589759,115 +illusion_1.5L,sr,116,46.4,1.0126947164535522,-0.41785794496536255,0.7786988615989685,-0.6749381422996521,0.770588219165802,-0.4087097644805908,0.0019218848319724202,-1.0049185220850632e-05,0.002271330449730158,0.00037227728171274066,0.0022969983983784914,-0.0003481518942862749,0.004624565671504589,-0.0015481082025614497,-0.0015481082025614497,4.6245656715045884e-05,-1.5481082025614497e-05,-1.5481082025614497e-05,0.008332237601280212,0.0021214294247329235,116 +illusion_1.5L,sr,117,46.8,1.0907012224197388,-0.4439598321914673,0.8050500750541687,-0.6942010521888733,0.7048468589782715,-0.34648266434669495,0.0019216164946556091,-3.7776062526972964e-06,0.002277268562465906,0.000384786311769858,0.00228806771337986,-0.0003364947915542871,0.0026961216130112903,-0.0007435452852289585,-0.0007435452852289585,2.6961216130112903e-05,-7.435452852289585e-06,-7.435452852289585e-06,0.008196236565709114,0.000935496820602566,117 +illusion_1.5L,sr,118,47.2,1.172878384590149,-0.4570203125476837,0.81232088804245,-0.6572180986404419,0.650743305683136,-0.2575792074203491,0.0019205621210858226,2.4034843590925448e-06,0.002282386180013418,0.00039171564276330173,0.002277530264109373,-0.0003242198145017028,0.0020640465714437733,-0.0010009787748752044,-0.0010009787748752044,2.0640465714437733e-05,-1.0009787748752044e-05,-1.0009787748752044e-05,0.00811728835105896,-0.00030141021125018597,118 +illusion_1.5L,sr,119,47.6,1.2569576501846313,-0.45278826355934143,0.7959200143814087,-0.5246404409408569,0.6088631749153137,-0.14414207637310028,0.0019194568740203977,8.376568075618707e-06,0.0022873247507959604,0.000393416965380311,0.00226766150444746,-0.00031255875364877284,0.0005270577766984964,-0.0006269757851339913,-0.0006269757851339913,5.270577766984964e-06,-6.269757851339914e-06,-6.269757851339914e-06,0.00829890463501215,-0.0015130521496757865,119 +illusion_1.5L,sr,120,48.0,1.3342416286468506,-0.42207100987434387,0.7525155544281006,-0.31096407771110535,0.6020668148994446,-0.0209525004029274,0.001917977468110621,1.3139039765519556e-05,0.0022913343273103237,0.0003907403443008661,0.0022588116116821766,-0.00030424667056649923,-0.0006651203317898993,-0.00046683987783695084,-0.00046683987783695084,-6.651203317898993e-06,-4.6683987783695085e-06,-4.6683987783695085e-06,0.008303137496113777,-0.002624597167596221,120 +illusion_1.5L,sr,121,48.4,1.385607123374939,-0.34983670711517334,0.682474672794342,-0.03838175907731056,0.6440885663032532,0.0825226902961731,0.0019202451221644878,1.6839981981320307e-05,0.0022991299629211426,0.00038530692108906806,0.0022567203268408775,-0.000300761079415679,-0.0025776124646247726,0.00032146392807184607,0.00032146392807184607,-2.577612464624773e-05,3.214639280718461e-06,3.214639280718461e-06,0.008214408531785011,-0.0035674641840159893,121 +illusion_1.5L,sr,122,48.8,1.3860962390899658,-0.22105367481708527,0.6074568033218384,0.27330073714256287,0.7122884392738342,0.16351310908794403,0.0019224699353799224,1.915790380735416e-05,0.0023055218625813723,0.0003795347874984145,0.0022569664288312197,-0.0003042315074708313,-0.0039667893900149215,0.0008674220137374067,0.0008674220137374067,-3.966789390014922e-05,8.674220137374067e-06,8.674220137374067e-06,0.0083629060536623,-0.004283796530216932,122 +illusion_1.5L,sr,123,49.2,1.3114863634109497,-0.029494188725948334,0.5787054300308228,0.5320196747779846,0.7788446545600891,0.24030494689941406,0.0019208010053262115,1.9757664631470107e-05,0.0023052126634866,0.000374518713215366,0.002254836494103074,-0.000314749195240438,-0.004794426557693417,0.0011802315412175989,0.0011802315412175989,-4.794426557693417e-05,1.1802315412175988e-05,1.1802315412175988e-05,0.00848082173615694,-0.00473026093095541,123 +illusion_1.5L,sr,124,49.6,1.1471080780029297,0.19934989511966705,0.6292076706886292,0.6300756335258484,0.8442925214767456,0.3093332350254059,0.0019190680468454957,1.8897593690780923e-05,0.002301863394677639,0.0003693962062243372,0.0022542476654052734,-0.00032981170807033777,-0.005219106374922698,0.0014057539658241351,0.0014057539658241351,-5.219106374922698e-05,1.4057539658241352e-05,1.4057539658241352e-05,0.008707493543624878,-0.004880912136286497,124 +illusion_1.5L,sr,125,50.0,0.9449718594551086,0.3721570670604706,0.7044328451156616,0.6411569714546204,0.912862241268158,0.36460912227630615,0.0019161420641466975,1.5867643014644273e-05,0.0022941480856388807,0.00036322977393865585,0.0022536576725542545,-0.0003470687079243362,-0.004473600828408468,0.0009886034450530858,0.0009886034450530858,-4.473600828408468e-05,9.886034450530858e-06,9.886034450530858e-06,0.008908077143132687,-0.004728920757770538,125 +illusion_1.5L,sr,126,50.4,0.7967264652252197,0.4162321090698242,0.7561394572257996,0.6639468669891357,0.9848904609680176,0.40711021423339844,0.001914934953674674,1.1650122360151727e-05,0.0022861752659082413,0.0003548653330653906,0.002256549196317792,-0.00036316830664873123,-0.004221345718513292,0.0011494534188649201,0.0011494534188649201,-4.221345718513292e-05,1.1494534188649202e-05,1.1494534188649202e-05,0.00870131142437458,-0.004287036135792732,126 +illusion_1.5L,sr,127,50.8,0.716469943523407,0.37041687965393066,0.7876319885253906,0.6904484033584595,1.06103515625,0.43789833784103394,0.0019178803777322173,6.073853455745848e-06,0.002281767316162586,0.00034385372418910265,0.0022655653301626444,-0.00037603569217026234,-0.003005958703419142,0.0007798064229701493,0.0007798064229701493,-3.005958703419142e-05,7.798064229701494e-06,7.798064229701494e-06,0.008512722328305244,-0.003586746985092759,127 +illusion_1.5L,sr,128,51.2,0.6615233421325684,0.2897849380970001,0.8013016581535339,0.6799041628837585,1.1417821645736694,0.4562506377696991,0.0019183657132089138,1.0453739207605395e-07,0.0022740152198821306,0.00033207423985004425,0.00227252091281116,-0.00038502481766045094,-0.0022578815562690306,0.0008809078754821401,0.0008809078754821401,-2.2578815562690308e-05,8.809078754821402e-06,8.809078754821402e-06,0.008403330110013485,-0.002676178002730012,128 +illusion_1.5L,sr,129,51.6,0.6157703995704651,0.18527057766914368,0.7936803698539734,0.5831440687179565,1.225827693939209,0.4589632451534271,0.0019173951586708426,-5.790733666799497e-06,0.0022645818535238504,0.00032047138665802777,0.002277602208778262,-0.0003894452238455415,-0.0011489370937329928,0.0007775181207680626,0.0007775181207680626,-1.1489370937329927e-05,7.775181207680626e-06,7.775181207680626e-06,0.008277405984699726,-0.001616867259144783,129 +illusion_1.5L,sr,130,52.0,0.5956955552101135,0.06427816301584244,0.7613789439201355,0.3954967260360718,1.3069159984588623,0.43879303336143494,0.001916456618346274,-1.0818529517564457e-05,0.002256214851513505,0.0003109194803982973,0.0022823454346507788,-0.0003892991808243096,-6.340972677759335e-05,0.0006820459426394639,0.0006820459426394639,-6.340972677759336e-07,6.82045942639464e-06,6.82045942639464e-06,0.008384994231164455,-0.0004796259745489806,130 +illusion_1.5L,sr,131,52.4,0.6218734383583069,-0.046619754284620285,0.7016331553459167,0.1451602280139923,1.369530200958252,0.3830339312553406,0.0019148568389937282,-1.4849784747639205e-05,0.0022486357484012842,0.00030539219733327627,0.002285483293235302,-0.0003860935103148222,0.0015303409671732493,0.00014189638113640962,0.00014189638113640962,1.5303409671732494e-05,1.4189638113640963e-06,1.4189638113640963e-06,0.008344382978975773,0.0006602332578040659,131 +illusion_1.5L,sr,132,52.8,0.6850827932357788,-0.13200584053993225,0.6244220733642578,-0.15451255440711975,1.3905977010726929,0.2770501375198364,0.0019164595287293196,-1.7707277947920375e-05,0.0022471516858786345,0.000305037887301296,0.0022914577275514603,-0.0003809492336586118,0.002995667489185113,-0.000419937223638707,-0.000419937223638707,2.995667489185113e-05,-4.19937223638707e-06,-4.19937223638707e-06,0.008156534284353256,0.0017279828898608685,132 +illusion_1.5L,sr,133,53.2,0.752860963344574,-0.20918990671634674,0.570547878742218,-0.44748497009277344,1.3485296964645386,0.11254201084375381,0.001918846508488059,-1.8895963876275346e-05,0.0022488702088594437,0.00031116465106606483,0.002296770690008998,-0.00037561339559033513,0.003908254387598169,-0.0007315925817965932,-0.0007315925817965932,3.908254387598169e-05,-7.315925817965932e-06,-7.315925817965932e-06,0.008226209320127964,0.002654529409483075,133 +illusion_1.5L,sr,134,53.6,0.817226767539978,-0.28288161754608154,0.5913773775100708,-0.6116204261779785,1.2222955226898193,-0.10347864031791687,0.0019173399778082967,-1.8792899936670437e-05,0.002248096978291869,0.0003232130839023739,0.002295298036187887,-0.000371092144632712,0.004737030054438464,-0.0011696959442788202,-0.0011696959442788202,4.737030054438464e-05,-1.1696959442788202e-05,-1.1696959442788202e-05,0.008320114575326443,0.003381080459803343,134 +illusion_1.5L,sr,135,54.0,0.8840951323509216,-0.3441644012928009,0.6676254868507385,-0.6387264728546143,1.0259193181991577,-0.3101302683353424,0.0019156368216499686,-1.6623554984107614e-05,0.002248424105346203,0.0003388335171621293,0.0022906428202986717,-0.0003657321503851563,0.004311020084197897,-0.0008884931651629846,-0.0008884931651629846,4.311020084197897e-05,-8.884931651629846e-06,-8.884931651629846e-06,0.00853065587580204,0.0038631048519164324,135 +illusion_1.5L,sr,136,54.4,0.9545429348945618,-0.3920455574989319,0.7306268215179443,-0.6535810828208923,0.8449613451957703,-0.4103676676750183,0.0019131131703034043,-1.3217597370385192e-05,0.0022490706760436296,0.0003549739776644856,0.002282405737787485,-0.0003590589330997318,0.004239232682534816,-0.0010783890134833697,-0.0010783890134833697,4.239232682534816e-05,-1.0783890134833697e-05,-1.0783890134833697e-05,0.008803099393844604,0.004073311109095812,136 +illusion_1.5L,sr,137,54.8,1.0287724733352661,-0.4279015362262726,0.7692804932594299,-0.6820139288902283,0.7374834418296814,-0.3944331109523773,0.0019118087366223335,-8.152242116921116e-06,0.0022522895596921444,0.00036934122908860445,0.0022737726103514433,-0.0003497145662549883,0.0031573482708762493,-0.0007109416630918242,-0.0007109416630918242,3.157348270876249e-05,-7.109416630918242e-06,-7.109416630918242e-06,0.008690337650477886,0.004003433044999838,137 +illusion_1.5L,sr,138,55.2,1.1075636148452759,-0.45169493556022644,0.7898496389389038,-0.6920215487480164,0.6761041283607483,-0.3241036534309387,0.0019147280836477876,-2.6403142783237854e-06,0.0022614558693021536,0.00037958897883072495,0.002269302261993289,-0.00033827029983513057,0.0027902707273461426,-0.0010173641727975573,-0.0010173641727975573,2.7902707273461428e-05,-1.0173641727975572e-05,-1.0173641727975572e-05,0.008544675074517727,0.003664699150249362,138 +illusion_1.5L,sr,139,55.6,1.190641164779663,-0.4612562954425812,0.7910485863685608,-0.6335712671279907,0.6275331377983093,-0.22866390645503998,0.0019157525384798646,3.1765746371092973e-06,0.0022689681500196457,0.00038620212581008673,0.002262712921947241,-0.0003265107807237655,0.0017152172943918562,-0.0008868168379015124,-0.0008868168379015124,1.7152172943918563e-05,-8.868168379015124e-06,-8.868168379015124e-06,0.008495600894093513,0.0030869469046592712,139 +illusion_1.5L,sr,140,56.0,1.2740581035614014,-0.45114976167678833,0.7697402834892273,-0.4792509377002716,0.5960848927497864,-0.11275316029787064,0.001914814580231905,8.349215931957588e-06,0.002273823134601116,0.00038859646883793175,0.0022542793303728104,-0.0003163455694448203,0.0008451022871108224,-0.0009306387817161477,-0.0009306387817161477,8.451022871108225e-06,-9.306387817161477e-06,-9.306387817161477e-06,0.008385095745325089,0.0023164439480751753,140 +illusion_1.5L,sr,141,56.4,1.3461525440216064,-0.41108816862106323,0.7224979400634766,-0.2527255117893219,0.6038830876350403,0.00431776000186801,0.001913997926749289,1.2657455044973176e-05,0.0022782250307500362,0.0003873674140777439,0.0022471752017736435,-0.000309035531245172,-0.000612501894486063,-0.0004999602375294898,-0.0004999602375294898,-6.12501894486063e-06,-4.999602375294898e-06,-4.999602375294898e-06,0.00847627129405737,0.001412564772181213,141 +illusion_1.5L,sr,142,56.8,1.3861796855926514,-0.3271094858646393,0.6504209637641907,0.026993749663233757,0.6564229726791382,0.0979171171784401,0.0019123092060908675,1.6185258573386818e-05,0.002280504209920764,0.0003839356068056077,0.0022407309152185917,-0.00030629761749878526,-0.002226650146338948,0.00013353742216708556,0.00013353742216708556,-2.226650146338948e-05,1.3353742216708555e-06,1.3353742216708555e-06,0.008447900414466858,0.0004435561131685972,142 +illusion_1.5L,sr,143,57.2,1.372666358947754,-0.18913988769054413,0.5799128413200378,0.3328480124473572,0.7249259948730469,0.17559951543807983,0.0019132521701976657,1.7853819372248836e-05,0.002284700982272625,0.00037887284997850657,0.0022395749110728502,-0.00030899239936843514,-0.002910684991537252,0.00021432240673767422,0.00021432240673767422,-2.910684991537252e-05,2.1432240673767423e-06,2.1432240673767423e-06,0.008206440135836601,-0.0005183155299164355,143 +illusion_1.5L,sr,144,57.6,1.2864792346954346,0.0035830317065119743,0.564714252948761,0.5636506080627441,0.7891882061958313,0.2520560622215271,0.0019156640628352761,1.8757067664409988e-05,0.0022887878585606813,0.0003739552339538932,0.002242392860352993,-0.000317035592161119,-0.004354655369613068,0.0010220051825709543,0.0010220051825709543,-4.3546553696130686e-05,1.0220051825709543e-05,1.0220051825709543e-05,0.00820583663880825,-0.0014018918154761195,144 +illusion_1.5L,sr,145,58.0,1.1169394254684448,0.22178439795970917,0.6265422701835632,0.6349838376045227,0.8541204333305359,0.31944653391838074,0.0019144098041579127,1.7139480405603535e-05,0.002286401577293873,0.00036894730874337256,0.002242826158180833,-0.0003305662830825895,-0.0036488195474567785,0.0004376709225975134,0.0004376709225975134,-3.648819547456779e-05,4.376709225975134e-06,4.376709225975134e-06,0.008266313932836056,-0.0021421664860099554,145 +illusion_1.5L,sr,146,58.4,0.9170703291893005,0.376997709274292,0.7009750604629517,0.6440622210502625,0.9227858781814575,0.3731898069381714,0.0019127504201605916,1.4828222447249573e-05,0.002280651358887553,0.00036338207428343594,0.002244021510705352,-0.0003458098799455911,-0.0044131891614380345,0.0011409684180546213,0.0011409684180546213,-4.4131891614380344e-05,1.1409684180546214e-05,1.1409684180546214e-05,0.008429205976426601,-0.0026848914567381144,146 +illusion_1.5L,sr,147,58.8,0.7730438709259033,0.40824049711227417,0.7491283416748047,0.6689710021018982,0.9951355457305908,0.41444283723831177,0.0019106704276055098,1.0147214197786525e-05,0.002272181911394,0.0003554151626303792,0.0022457153536379337,-0.00036117283161729574,-0.0028413598931150003,0.0003163423638666285,0.0003163423638666285,-2.8413598931150003e-05,3.163423638666285e-06,3.163423638666285e-06,0.008723028935492039,-0.0029904174152761698,147 +illusion_1.5L,sr,148,59.2,0.6951185464859009,0.356006383895874,0.7768282890319824,0.6918894052505493,1.0716300010681152,0.4438566565513611,0.0019093076698482037,5.31083833266166e-06,0.002263089409098029,0.00034565318492241204,0.002249198965728283,-0.00037329416954889894,-0.003223112875373982,0.0010946531948139195,0.0010946531948139195,-3.223112875373982e-05,1.0946531948139195e-05,1.0946531948139195e-05,0.008667167276144028,-0.0030365013517439365,148 +illusion_1.5L,sr,149,59.6,0.6429731249809265,0.2705896198749542,0.786132276058197,0.6693341135978699,1.152754783630371,0.46020618081092834,0.0019119578646495938,-6.218826342774264e-07,0.0022584882099181414,0.0003336621157359332,0.0022581093944609165,-0.00038158000097610056,-0.0017219839912506112,0.0005970062597309457,0.0005970062597309457,-1.721983991250611e-05,5.970062597309457e-06,5.970062597309457e-06,0.008530458435416222,-0.002819881308823824,149 +illusion_1.5L,sr,150,60.0,0.6033687591552734,0.1631941795349121,0.7747192978858948,0.5568492412567139,1.2366533279418945,0.4596155285835266,0.0019134526373818517,-5.631975454889471e-06,0.002252973150461912,0.0003227515844628215,0.002266004914417863,-0.00038565549766644835,-0.0016298451167218752,0.0011878833865338226,0.0011878833865338226,-1.6298451167218753e-05,1.1878833865338226e-05,1.1878833865338226e-05,0.008516530506312847,-0.00235650478862226,150 +illusion_1.5L,sr,151,60.4,0.593289852142334,0.04476981610059738,0.7398797869682312,0.3588618338108063,1.3155043125152588,0.43413233757019043,0.0019126125844195485,-1.0498638403078075e-05,0.002245580544695258,0.0003140082990285009,0.002270700642839074,-0.0003865906910505146,0.00027476503569453734,0.00043229584764552237,0.00043229584764552237,2.7476503569453734e-06,4.322958476455224e-06,4.322958476455224e-06,0.008421123959124088,-0.0016804002225399017,151 +illusion_1.5L,sr,152,60.8,0.6292189955711365,-0.05865547060966492,0.6784409284591675,0.1032218262553215,1.3721611499786377,0.37122777104377747,0.0019119010539725423,-1.431682630936848e-05,0.002239673398435116,0.00030903820879757404,0.002274694386869669,-0.0003844749298878014,0.0012678757806395512,0.00028687523266478915,0.00028687523266478915,1.2678757806395512e-05,2.8687523266478917e-06,2.8687523266478917e-06,0.008498861454427242,-0.0008412639726884663,152 +illusion_1.5L,sr,153,61.2,0.6950536370277405,-0.13945604860782623,0.6020336747169495,-0.19590607285499573,1.384617567062378,0.25904056429862976,0.0019102045334875584,-1.683653681538999e-05,0.002234312007203698,0.00030902569415047765,0.0022761994041502476,-0.0003807558096013963,0.002427758515370207,-8.868489534247584e-05,-8.868489534247584e-05,2.427758515370207e-05,-8.868489534247584e-07,-8.868489534247584e-07,0.008499415591359138,9.906048217089847e-05,153 +illusion_1.5L,sr,154,61.6,0.7605715990066528,-0.21646608412265778,0.5541049838066101,-0.4757685959339142,1.3350632190704346,0.09329581260681152,0.0019104862585663795,-1.8271588487550616e-05,0.002233471255749464,0.0003139571053907275,0.0022785584442317486,-0.00037610807339660823,0.0034969398152952524,-0.0005451277465568401,-0.0005451277465568401,3.4969398152952526e-05,-5.451277465568401e-06,-5.451277465568401e-06,0.008235407061874866,0.0010709670605137944,154 +illusion_1.5L,sr,155,62.0,0.8235057592391968,-0.2894814908504486,0.5837817192077637,-0.6190942525863647,1.2056115865707397,-0.11642640084028244,0.0019128498388454318,-1.768262700352352e-05,0.0022371462546288967,0.0003239524376112968,0.0022814280819147825,-0.0003708804724738002,0.003456662408442994,-0.00035923495533889127,-0.00035923495533889127,3.456662408442994e-05,-3.5923495533889126e-06,-3.5923495533889126e-06,0.008183185011148453,0.0020020240917801857,155 +illusion_1.5L,sr,156,62.4,0.8899457454681396,-0.3497937023639679,0.662703275680542,-0.6389849781990051,1.0101035833358765,-0.31216445565223694,0.0019120107172057033,-1.5960920791258104e-05,0.002238921355456114,0.00033768490538932383,0.0022783027961850166,-0.00036592778633348644,0.003937031032339361,-0.0007540733110287107,-0.0007540733110287107,3.937031032339361e-05,-7.540733110287107e-06,-7.540733110287107e-06,0.008230230771005154,0.002822116483002901,156 +illusion_1.5L,sr,157,62.8,0.9603520035743713,-0.3969968855381012,0.7238948345184326,-0.6555038690567017,0.8298418521881104,-0.404622346162796,0.0019104618113487959,-1.21674593174248e-05,0.002240915782749653,0.000352885399479419,0.0022718377877026796,-0.0003593935689423233,0.0030159476532294616,-0.0003113486094454762,-0.0003113486094454762,3.0159476532294616e-05,-3.1134860944547623e-06,-3.1134860944547623e-06,0.008360556326806545,0.0034684324637055397,157 +illusion_1.5L,sr,158,63.2,1.0347384214401245,-0.43226417899131775,0.7604061365127563,-0.6833441257476807,0.7218186855316162,-0.38531070947647095,0.0019087676191702485,-7.674078915442806e-06,0.002243596129119396,0.00036647391971200705,0.002263267058879137,-0.000351130060153082,0.0031215008065072596,-0.0008021135014522097,-0.0008021135014522097,3.1215008065072595e-05,-8.021135014522098e-06,-8.021135014522098e-06,0.008675433695316315,0.003889942541718483,158 +illusion_1.5L,sr,159,63.6,1.1135787963867188,-0.4552566111087799,0.7781083583831787,-0.6882357001304626,0.6610271334648132,-0.3122977018356323,0.0019073390867561102,-2.135114300472196e-06,0.0022471612319350243,0.0003770537441596389,0.0022540222853422165,-0.0003406837349757552,0.00212242135882066,-0.0006114348873174913,-0.0006114348873174913,2.1224213588206602e-05,-6.114348873174913e-06,-6.114348873174913e-06,0.008685079403221607,0.004051059018820524,159 +illusion_1.5L,sr,160,64.0,1.1964552402496338,-0.46338751912117004,0.7762963771820068,-0.6210381388664246,0.6157161593437195,-0.21468402445316315,0.0019096413161605597,3.0948174298828235e-06,0.002255631610751152,0.0003829500055871904,0.0022492604330182076,-0.00032931778696365654,0.0018582865349155578,-0.001040775571144821,-0.001040775571144821,1.858286534915558e-05,-1.040775571144821e-05,-1.040775571144821e-05,0.00856055412441492,0.003934219013899565,160 +illusion_1.5L,sr,161,64.4,1.2789005041122437,-0.4507857859134674,0.7530938982963562,-0.4596984386444092,0.5903177857398987,-0.09959588199853897,0.0019115284085273743,8.004799383343197e-06,0.002263768808916211,0.0003853345988318324,0.0022448506206274033,-0.0003192098520230502,0.000570418060804885,-0.0007329817754096824,-0.0007329817754096824,5.70418060804885e-06,-7.329817754096824e-06,-7.329817754096824e-06,0.008574451319873333,0.0035412150900810957,161 +illusion_1.5L,sr,162,64.8,1.3482850790023804,-0.40699130296707153,0.7051566243171692,-0.23002155125141144,0.6054075956344604,0.012684984132647514,0.0019108710112050176,1.2427536603354383e-05,0.002268321579322219,0.0003850345965474844,0.002238573506474495,-0.0003122812486253679,-0.0007521710010746745,-0.00036606490589432064,-0.00036606490589432064,-7.521710010746745e-06,-3.6606490589432064e-06,-3.6606490589432064e-06,0.008493040688335896,0.0028931754641234875,162 +illusion_1.5L,sr,163,65.2,1.3837594985961914,-0.3193846344947815,0.6333577036857605,0.049520816653966904,0.6620226502418518,0.10138215124607086,0.001910176477394998,1.540547418699134e-05,0.002271796576678753,0.00038238184060901403,0.00223372969776392,-0.00030964717734605074,-0.0015124184945218208,-0.00033161738105690064,-0.00033161738105690064,-1.5124184945218209e-05,-3.3161738105690064e-06,-3.3161738105690064e-06,0.008542587049305439,0.0020292061381042004,163 +illusion_1.5L,sr,164,65.6,1.3660069704055786,-0.18065758049488068,0.5645672678947449,0.35004088282585144,0.7297573089599609,0.17798280715942383,0.001908457255922258,1.7678141375654377e-05,0.0022724363952875137,0.00037884991616010666,0.002229405101388693,-0.00031181861413642764,-0.0029620710614554,0.00033559302057968934,0.00033559302057968934,-2.9620710614554e-05,3.3559302057968934e-06,3.3559302057968934e-06,0.008553043939173222,0.0010037844767794013,164 +illusion_1.5L,sr,165,66.0,1.2789098024368286,0.007663608994334936,0.5526919364929199,0.5709643363952637,0.7922396063804626,0.2545093595981598,0.0019081600476056337,1.7795195162761956e-05,0.002273077378049493,0.0003741180116776377,0.0022287964820861816,-0.0003190448915120214,-0.0028041768166824285,-2.3431644950257235e-05,-2.3431644950257235e-05,-2.8041768166824286e-05,-2.3431644950257237e-07,-2.3431644950257237e-07,0.008254999294877052,-0.00011690740939229727,165 +illusion_1.5L,sr,166,66.4,1.1118882894515991,0.21860291063785553,0.6173872947692871,0.6356794238090515,0.8560909032821655,0.32172244787216187,0.0019104263046756387,1.7006113921524957e-05,0.0022746820468455553,0.0003690995217766613,0.002233225619420409,-0.00032985120196826756,-0.003703784309128766,0.0005814766646309276,0.0005814766646309276,-3.703784309128766e-05,5.8147666463092764e-06,5.8147666463092764e-06,0.008126122877001762,-0.0012594565050676465,166 +illusion_1.5L,sr,167,66.8,0.9122534394264221,0.37081995606422424,0.6923526525497437,0.6444305181503296,0.9242801070213318,0.3754502832889557,0.001910039340145886,1.3917030628363136e-05,0.0022711262572556734,0.000363308034138754,0.00223622377961874,-0.0003440264845266938,-0.0027532437489737327,1.568871547484238e-05,1.568871547484238e-05,-2.753243748973733e-05,1.568871547484238e-07,1.568871547484238e-07,0.008139083161950111,-0.0023481876123696566,167 +illusion_1.5L,sr,168,67.2,0.7644780874252319,0.4035065472126007,0.7400673031806946,0.6696129441261292,0.9965438842773438,0.41682320833206177,0.0019086627289652824,1.0067838957183994e-05,0.0022641175892204046,0.0003564363287296146,0.0022389658261090517,-0.00035812490386888385,-0.0031448976254080697,0.0006252700484210595,0.0006252700484210595,-3.1448976254080696e-05,6.252700484210595e-06,6.252700484210595e-06,0.008225912228226662,-0.0033102850429713726,168 +illusion_1.5L,sr,169,67.6,0.684268057346344,0.351502388715744,0.766767144203186,0.6912195682525635,1.0731168985366821,0.44633105397224426,0.0019072698196396232,4.834840183320921e-06,0.0022556071635335684,0.00034726675949059427,0.0022423129994422197,-0.00037048663944005966,-0.0021861777782023507,0.0003912791910172815,0.0003912791910172815,-2.186177778202351e-05,3.912791910172815e-06,3.912791910172815e-06,0.008550929836928844,-0.004080713726580143,169 +illusion_1.5L,sr,170,68.0,0.6332000494003296,0.2649414539337158,0.7745233774185181,0.6658273935317993,1.1541179418563843,0.4625278115272522,0.001905796816572547,-3.4160910900027375e-07,0.0022463779896497726,0.0003368837642483413,0.0022459293249994516,-0.0003789870534092188,-0.0021600955876036835,0.000950368578955363,0.000950368578955363,-2.1600955876036835e-05,9.50368578955363e-06,9.50368578955363e-06,0.008641579188406467,-0.004606609698385,170 +illusion_1.5L,sr,171,68.4,0.5965766310691833,0.15760304033756256,0.7620038390159607,0.5508148074150085,1.2375420331954956,0.46131134033203125,0.0019076976459473372,-5.3615012802765705e-06,0.002241525100544095,0.00032593333162367344,0.002253832994028926,-0.00038315850542858243,-0.0011150158807737313,0.000803415435731699,0.000803415435731699,-1.1150158807737314e-05,8.03415435731699e-06,8.03415435731699e-06,0.008560840971767902,-0.004850836470723152,171 +illusion_1.5L,sr,172,68.8,0.590204119682312,0.04140114784240723,0.7273284196853638,0.3519711196422577,1.3153443336486816,0.43453943729400635,0.0019099477212876081,-1.0175820534641389e-05,0.0022381972521543503,0.0003168598632328212,0.0022620842792093754,-0.00038409658009186387,0.00017204458051951754,0.00047301714150374194,0.00047301714150374194,1.7204458051951756e-06,4.73017141503742e-06,4.73017141503742e-06,0.008636081591248512,-0.004794478416442871,172 +illusion_1.5L,sr,173,69.2,0.6290777325630188,-0.0588504821062088,0.6670553088188171,0.09754357486963272,1.3703004121780396,0.3702637553215027,0.0019094732124358416,-1.3638417840411421e-05,0.0022330237552523613,0.00031184041290543973,0.0022664933931082487,-0.0003827968903351575,0.0008081645092223865,0.0005669921979950358,0.0005669921979950358,8.081645092223865e-06,5.669921979950358e-06,5.669921979950358e-06,0.008616222999989986,-0.004438104573637247,173 +illusion_1.5L,sr,174,69.6,0.6956362128257751,-0.13796424865722656,0.5916491150856018,-0.1982395499944687,1.3812370300292969,0.25817862153053284,0.001908740377984941,-1.6633410268696025e-05,0.0022291361819952726,0.0003110715770162642,0.0022692459169775248,-0.0003801640123128891,0.0024114761224352174,-0.00015230555551882727,-0.00015230555551882727,2.4114761224352175e-05,-1.5230555551882727e-06,-1.5230555551882727e-06,0.008672966621816158,-0.0038017285987734795,174 +illusion_1.5L,sr,175,70.0,0.7603727579116821,-0.21483904123306274,0.5433450937271118,-0.47526922821998596,1.3325486183166504,0.0960303246974945,0.0019070273265242577,-1.7484157069702633e-05,0.0022257331293076277,0.0003156924503855407,0.0022690885234624147,-0.00037630501901730895,0.002292750695180326,0.00025946463413419746,0.00025946463413419746,2.2927506951803262e-05,2.5946463413419747e-06,2.5946463413419747e-06,0.008711673319339752,-0.002923475345596671,175 +illusion_1.5L,sr,176,70.4,0.8221843838691711,-0.2882556915283203,0.571943998336792,-0.6191863417625427,1.2079277038574219,-0.10725750029087067,0.0019062442006543279,-1.7633130482863635e-05,0.002225453034043312,0.00032418445334769785,0.0022681034170091152,-0.00037203694228082895,0.0035006574451804107,-0.00047627287738512616,-0.00047627287738512616,3.500657445180411e-05,-4.7627287738512616e-06,-4.7627287738512616e-06,0.008389359340071678,-0.001857058727182448,176 +illusion_1.5L,sr,177,70.8,0.8877256512641907,-0.3491523265838623,0.6516548991203308,-0.6392903923988342,1.0159661769866943,-0.30083736777305603,0.0019084104569628835,-1.5302661267924123e-05,0.002230424666777253,0.0003362176939845085,0.002268601441755891,-0.0003663118986878544,0.0025492147238509386,0.00019356654750226493,0.00019356654750226493,2.5492147238509385e-05,1.9356654750226494e-06,1.9356654750226494e-06,0.008158615790307522,-0.0006682443199679255,177 +illusion_1.5L,sr,178,71.2,0.9577066898345947,-0.3970150053501129,0.7141115069389343,-0.6551091074943542,0.8316105604171753,-0.39884236454963684,0.0019084938103333116,-1.2282007446628995e-05,0.002234602812677622,0.00034980830969288945,0.0022647513542324305,-0.0003602943615987897,0.003274695888825223,-0.0005616277815227097,-0.0005616277815227097,3.274695888825223e-05,-5.616277815227097e-06,-5.616277815227097e-06,0.00808980967849493,0.0005694532301276922,178 +illusion_1.5L,sr,179,71.6,1.0319855213165283,-0.4329574704170227,0.7510918974876404,-0.6826343536376953,0.7173920273780823,-0.3845837414264679,0.0019072750583291054,-7.455995728378184e-06,0.0022378957364708185,0.00036335980985313654,0.0022574488539248705,-0.00035239546559751034,0.0021786112869459223,-0.00014194388310145856,-0.00014194388310145856,2.1786112869459223e-05,-1.4194388310145855e-06,-1.4194388310145855e-06,0.00807673204690218,0.0017795475432649255,179 +illusion_1.5L,sr,180,72.0,1.1107990741729736,-0.4565716087818146,0.768782377243042,-0.68788743019104,0.6549320220947266,-0.31251659989356995,0.0019060962367802858,-2.5287301923526684e-06,0.0022417360451072454,0.0003739165549632162,0.0022490385454148054,-0.00034307653550058603,0.0024650542835797044,-0.0008707879704644099,-0.0008707879704644099,2.4650542835797044e-05,-8.7078797046441e-06,-8.7078797046441e-06,0.008341887965798378,0.002887511160224676,180 +illusion_1.5L,sr,181,72.4,1.193436861038208,-0.4652458131313324,0.7668598890304565,-0.6227008700370789,0.6108036041259766,-0.21525812149047852,0.0019046389497816563,2.670375351954135e-06,0.0022453723940998316,0.0003808393666986376,0.002240000991150737,-0.0003326734877191484,0.0014488437735307967,-0.0007161855193753655,-0.0007161855193753655,1.4488437735307968e-05,-7.161855193753655e-06,-7.161855193753655e-06,0.008465869352221489,0.003825533203780651,181 +illusion_1.5L,sr,182,72.8,1.2754840850830078,-0.4530389904975891,0.7442308068275452,-0.464034765958786,0.5866484642028809,-0.10150516778230667,0.0019061568891629577,7.550816917500924e-06,0.0022526574321091175,0.0003834906965494156,0.002235142048448324,-0.0003225133114028722,0.0006072568884099225,-0.0007114813389905443,-0.0007114813389905443,6.072568884099225e-06,-7.114813389905444e-06,-7.114813389905444e-06,0.008411048911511898,0.0045367949642241,182 +illusion_1.5L,sr,183,73.2,1.3446787595748901,-0.40983060002326965,0.6980257630348206,-0.23710593581199646,0.6021758317947388,0.009211096912622452,0.0019086470128968358,1.1682548574754037e-05,0.0022608863655477762,0.0003831710200756788,0.002232761587947607,-0.0003148575488012284,-0.00040823008818843305,-0.0005522128712506895,-0.0005522128712506895,-4.08230088188433e-06,-5.522128712506895e-06,-5.522128712506895e-06,0.008551978506147861,0.0049789901822805405,183 +illusion_1.5L,sr,184,73.6,1.38079833984375,-0.32374340295791626,0.6280567049980164,0.038448501378297806,0.6588850617408752,0.0969410240650177,0.0019083592342212796,1.5100908967724536e-05,0.0022650184109807014,0.0003814476658590138,0.002228696830570698,-0.00031150042195804417,-0.0015678819004519252,-0.00021138333444347884,-0.00021138333444347884,-1.567881900451925e-05,-2.1138333444347886e-06,-2.1138333444347886e-06,0.008640555664896965,0.005126874428242445,184 +illusion_1.5L,sr,185,74.0,1.3654322624206543,-0.18867500126361847,0.5584945678710938,0.3367553949356079,0.7267321944236755,0.1729489117860794,0.001907508121803403,1.6915138985496014e-05,0.002266974188387394,0.0003783819847740233,0.0022255450021475554,-0.00031310893245972693,-0.001996858956902072,-0.0002936945360943813,-0.0002936945360943813,-1.9968589569020722e-05,-2.936945360943813e-06,-2.936945360943813e-06,0.00877284724265337,0.004973690956830978,185 +illusion_1.5L,sr,186,74.4,1.2844548225402832,-0.006712016649544239,0.542026698589325,0.5635943412780762,0.7887140512466431,0.2497839480638504,0.0019058145117014647,1.7714146451908164e-05,0.002265945775434375,0.0003748119343072176,0.0022230788599699736,-0.000319294718792662,-0.002916181409782205,0.0001376189587273119,0.0001376189587273119,-2.916181409782205e-05,1.3761895872731189e-06,1.3761895872731189e-06,0.008914750069379807,0.004531398881226778,186 +illusion_1.5L,sr,187,74.8,1.1253082752227783,0.20005351305007935,0.6038303971290588,0.6355859637260437,0.8515651822090149,0.3180263042449951,0.0019046823726966977,1.6491367205162533e-05,0.0022636058274656534,0.000370101653970778,0.002223104937002063,-0.00032948277657851577,-0.0025797174307079507,-0.00018155148621528186,-0.00018155148621528186,-2.5797174307079506e-05,-1.8155148621528187e-06,-1.8155148621528187e-06,0.008651209995150566,0.0038297150749713182,187 +illusion_1.5L,sr,188,75.2,0.9254828095436096,0.35836708545684814,0.6808152794837952,0.6437529921531677,0.9188873767852783,0.3728770315647125,0.0019066908862441778,1.4080149412620813e-05,0.002262981841340661,0.0003642764932010323,0.002228544559329748,-0.00034165644319728017,-0.0029432406850354587,0.00020292818108633146,0.00020292818108633146,-2.9432406850354586e-05,2.0292818108633147e-06,2.0292818108633147e-06,0.008369920775294304,0.002914042677730322,188 +illusion_1.5L,sr,189,75.6,0.7689818739891052,0.4018012285232544,0.7304219007492065,0.667819082736969,0.9906666278839111,0.4153389632701874,0.0019072385039180517,1.0059377018478699e-05,0.002258983440697193,0.00035725790075957775,0.002233674982562661,-0.000355073920218274,-0.002383275944499212,8.423252127922123e-05,8.423252127922123e-05,-2.383275944499212e-05,8.423252127922124e-07,8.423252127922124e-07,0.00823057908564806,0.0018424494192004204,189 +illusion_1.5L,sr,190,76.0,0.6825854778289795,0.35489627718925476,0.7582470178604126,0.6902284026145935,1.0670017004013062,0.44592171907424927,0.0019061616621911526,5.268801032798365e-06,0.002251473255455494,0.0003489689843263477,0.0022374640684574842,-0.0003672695893328637,-0.0023467572818627325,0.0005024918859549803,0.0005024918859549803,-2.3467572818627327e-05,5.024918859549803e-06,5.024918859549803e-06,0.008093336597084999,0.0006818966940045357,190 +illusion_1.5L,sr,191,76.4,0.6308030486106873,0.26971015334129333,0.7670018672943115,0.6690083146095276,1.1478333473205566,0.463287889957428,0.0019051365088671446,2.42046837684029e-07,0.0022432482801377773,0.00033926728065125644,0.0022416089195758104,-0.00037636340130120516,-0.0019172184948576983,0.0007357207314095636,0.0007357207314095636,-1.9172184948576984e-05,7.3572073140956365e-06,7.3572073140956365e-06,0.008223836310207844,-0.0004960204241797328,191 +illusion_1.5L,sr,192,76.8,0.5945128798484802,0.16380001604557037,0.7556552886962891,0.5605562925338745,1.2310594320297241,0.46340715885162354,0.0019037486054003239,-4.860110948357033e-06,0.002234554383903742,0.0003291727334726602,0.002245292067527771,-0.0003816645476035774,-0.0009975275025899972,0.0006583739063564841,0.0006583739063564841,-9.975275025899973e-06,6.583739063564841e-06,6.583739063564841e-06,0.008288096636533737,-0.0016195487696677446,192 +illusion_1.5L,sr,193,77.2,0.5869465470314026,0.048779524862766266,0.7229114770889282,0.36703938245773315,1.3090813159942627,0.43847110867500305,0.001904898090288043,-9.289936315326486e-06,0.0022297585383057594,0.00032003215164877474,0.002251936122775078,-0.00038297430728562176,-0.00022691468809995195,0.00069172224905032,0.00069172224905032,-2.2691468809995194e-06,6.9172224905032e-06,6.9172224905032e-06,0.008168513886630535,-0.0026211808435618877,193 +illusion_1.5L,sr,194,77.6,0.6238410472869873,-0.05156445503234863,0.665302038192749,0.11759524047374725,1.365568995475769,0.3769962787628174,0.0019075219752267003,-1.3322886843525339e-05,0.002228237921372056,0.0003136683953925967,0.0022599101066589355,-0.0003818865225184709,0.0010758285296597232,0.0002854916323790351,0.0002854916323790351,1.0758285296597232e-05,2.854916323790351e-06,2.854916323790351e-06,0.008290053345263004,-0.003441715380176902,194 +illusion_1.5L,sr,195,78.0,0.6899590492248535,-0.13055884838104248,0.5907028913497925,-0.173639714717865,1.3799742460250854,0.26922065019607544,0.00190740788821131,-1.5775229257997125e-05,0.0022251992486417294,0.00031236078939400613,0.0022637301590293646,-0.0003794986696448177,0.0014212703698053518,0.0004929375418890811,0.0004929375418890811,1.4212703698053518e-05,4.929375418890811e-06,4.929375418890811e-06,0.008446116000413895,-0.004033731762319803,195 +illusion_1.5L,sr,196,78.4,0.7549659609794617,-0.20712244510650635,0.5377510190010071,-0.45469531416893005,1.3375455141067505,0.1133960410952568,0.0019064220832660794,-1.747532769513782e-05,0.002222777809947729,0.0003156655584461987,0.0022647809237241745,-0.00037658054498024285,0.0026225153281777963,-6.162956561875724e-05,-6.162956561875724e-05,2.6225153281777964e-05,-6.162956561875724e-07,-6.162956561875724e-07,0.00865935068577528,-0.004364273976534605,196 +illusion_1.5L,sr,197,78.8,0.8161636590957642,-0.2815362811088562,0.5585052371025085,-0.6132955551147461,1.2232334613800049,-0.0831986740231514,0.0019047914538532495,-1.706329385342542e-05,0.002221175469458103,0.0003237486525904387,0.002262991853058338,-0.0003726479480974376,0.0022838451226730727,0.000358412240984745,0.000358412240984745,2.2838451226730728e-05,3.5841224098474497e-06,3.5841224098474497e-06,0.00895126722753048,-0.004416606388986111,197 +illusion_1.5L,sr,198,79.2,0.880686342716217,-0.34397369623184204,0.6374139189720154,-0.6391062140464783,1.0379745960235596,-0.27880969643592834,0.001903442433103919,-1.5631654605385847e-05,0.0022216516081243753,0.00033470115158706903,0.002259467961266637,-0.00036798606743104756,0.002963944924943951,-0.00015408518351360187,-0.00015408518351360187,2.963944924943951e-05,-1.5408518351360187e-06,-1.5408518351360187e-06,0.008846367709338665,-0.004190945997834206,198 +illusion_1.5L,sr,199,79.6,0.9497557282447815,-0.39331546425819397,0.7030993700027466,-0.6526384949684143,0.8473325371742249,-0.39035743474960327,0.0019052629359066486,-1.224257084686542e-05,0.002227364107966423,0.000347304274328053,0.0022578167263418436,-0.0003614359302446246,0.002266317523253361,0.0001671621768774209,0.0001671621768774209,2.2663175232533612e-05,1.671621768774209e-06,1.671621768774209e-06,0.0086283003911376,-0.0037041637115180492,199 +illusion_1.5L,sr,200,80.0,1.023402452468872,-0.4306740164756775,0.7421496510505676,-0.6799226999282837,0.7222247123718262,-0.3877274692058563,0.001906197052448988,-8.050901669776067e-06,0.0022333054803311825,0.0003598746261559427,0.0022536995820701122,-0.000353894749423489,0.0025377418569111007,-0.00039292894389143795,-0.00039292894389143795,2.5377418569111006e-05,-3.9292894389143795e-06,-3.9292894389143795e-06,0.00852078478783369,-0.002988493302837014,200 +illusion_1.5L,sr,201,80.4,1.1018120050430298,-0.45581844449043274,0.761552631855011,-0.6889951825141907,0.6552283763885498,-0.3197958469390869,0.001905266777612269,-3.0762298592890147e-06,0.002237490378320217,0.00037091519334353507,0.002246159827336669,-0.0003450340882409364,0.002004948012086453,-0.0004892095499097852,-0.0004892095499097852,2.0049480120864528e-05,-4.892095499097853e-06,-4.892095499097853e-06,0.008339837193489075,-0.0020893490873277187,201 +illusion_1.5L,sr,202,80.8,1.1842361688613892,-0.46629956364631653,0.7615225315093994,-0.6327240467071533,0.6107299327850342,-0.22455672919750214,0.001904371427372098,1.946800693986006e-06,0.002241853391751647,0.00037845649057999253,0.0022381877060979605,-0.00033530432847328484,0.0015669718202739411,-0.0007369427171639428,-0.0007369427171639428,1.5669718202739412e-05,-7.369427171639428e-06,-7.369427171639428e-06,0.008356091566383839,-0.001062412979081273,202 +illusion_1.5L,sr,203,81.2,1.2665091753005981,-0.45655304193496704,0.7411318421363831,-0.48337608575820923,0.5851686596870422,-0.11256255954504013,0.0019031171686947346,6.697857770632254e-06,0.0022456184960901737,0.00038227453478612006,0.0022299778647720814,-0.0003257828939240426,0.0006712774590307146,-0.0006756652542334925,-0.0006756652542334925,6.712774590307146e-06,-6.756652542334925e-06,-6.756652542334925e-06,0.00832816120237112,2.9825627279933542e-05,203 +illusion_1.5L,sr,204,81.6,1.3372584581375122,-0.41691941022872925,0.698006272315979,-0.2629845142364502,0.5970668196678162,-0.0016465699300169945,0.001903909258544445,1.115787381422706e-05,0.0022515589371323586,0.00038269851938821375,0.0022253459319472313,-0.0003176571917720139,-0.0004569427892068753,-0.00042470981645523036,-0.00042470981645523036,-4.5694278920687534e-06,-4.247098164552304e-06,-4.247098164552304e-06,0.008069791831076145,0.0011218518484383821,204 +illusion_1.5L,sr,205,82.0,1.3772196769714355,-0.3359126150608063,0.6306563019752502,0.00610470911487937,0.6510540246963501,0.08728744834661484,0.001906513120047748,1.425413393008057e-05,0.0022590993903577328,0.00038069969741627574,0.002224474912509322,-0.00031311227940022945,-0.0009050433687910648,-0.0006087429112805846,-0.0006087429112805846,-9.050433687910648e-06,-6.087429112805847e-06,-6.087429112805847e-06,0.008051803335547447,0.002149005187675357,205 +illusion_1.5L,sr,206,82.4,1.3681800365447998,-0.20734895765781403,0.5589991211891174,0.3030013144016266,0.719124436378479,0.16295738518238068,0.0019065645756199956,1.6754125681472942e-05,0.0022624856792390347,0.00037826065090484917,0.00222247326746583,-0.0003133515128865838,-0.0021950525266766635,-6.421579513029782e-05,-6.421579513029782e-05,-2.1950525266766634e-05,-6.421579513029782e-07,-6.421579513029782e-07,0.008151903748512268,0.0030512260273098946,206 +illusion_1.5L,sr,207,82.8,1.2973427772521973,-0.03319641202688217,0.5330767631530762,0.5440215468406677,0.7812345027923584,0.240057110786438,0.0019054701551795006,1.7202079106937163e-05,0.0022626665886491537,0.00037491039256565273,0.0022206935100257397,-0.00031879288144409657,-0.001954649114604204,-0.000504969790513881,-0.000504969790513881,-1.9546491146042038e-05,-5.04969790513881e-06,-5.04969790513881e-06,0.00834288913756609,0.0037764590233564377,207 +illusion_1.5L,sr,208,83.2,1.1504215002059937,0.16999951004981995,0.5873847007751465,0.6335257887840271,0.8432796001434326,0.3100382685661316,0.0019039470935240388,1.6709762348909862e-05,0.0022601191885769367,0.0003711317549459636,0.002219999209046364,-0.00032791271223686635,-0.0028205336734078365,4.0293239673395986e-05,4.0293239673395986e-05,-2.8205336734078367e-05,4.0293239673395985e-07,4.0293239673395985e-07,0.008715752512216568,0.004283526912331581,208 +illusion_1.5L,sr,209,83.6,0.952147364616394,0.3388832211494446,0.6670669317245483,0.6421829462051392,0.9095911979675293,0.36679863929748535,0.0019024795619770885,1.4114745681581553e-05,0.0022556509356945753,0.0003658244095277041,0.0022209289018064737,-0.0003398982807993889,-0.00214447874947081,-0.0003697106959782148,-0.0003697106959782148,-2.14447874947081e-05,-3.697106959782148e-06,-3.697106959782148e-06,0.00877283327281475,0.004544325638562441,209 +illusion_1.5L,sr,210,84.0,0.7838491797447205,0.39995890855789185,0.7201927900314331,0.6640437245368958,0.9804021716117859,0.4110206961631775,0.001904035801999271,1.0621838555380236e-05,0.0022529740817844868,0.0003589734551496804,0.002226787619292736,-0.00035217776894569397,-0.0025719166852282115,0.00020996887617411727,0.00020996887617411727,-2.5719166852282115e-05,2.0996887617411727e-06,2.0996887617411727e-06,0.008680131286382675,0.004545234143733978,210 +illusion_1.5L,sr,211,84.4,0.6872178912162781,0.3628585934638977,0.7503232359886169,0.6883412003517151,1.055970549583435,0.44338566064834595,0.001905294368043542,5.893243724131025e-06,0.002248787321150303,0.00035059216315858066,0.002233344130218029,-0.00036403638659976423,-0.001987442756606915,0.00019371064675893776,0.00019371064675893776,-1.9874427566069152e-05,1.9371064675893777e-06,1.9371064675893777e-06,0.00870765931904316,0.00428768340498209,211 +illusion_1.5L,sr,212,84.8,0.6326772570610046,0.28107789158821106,0.7614538073539734,0.6753610968589783,1.1363157033920288,0.46277132630348206,0.00190453277900815,9.77604258878273e-07,0.002241346053779125,0.00034147981205023825,0.002237887354567647,-0.00037359725683927536,-0.0019377399062769345,0.0006809616435234037,0.0006809616435234037,-1.9377399062769345e-05,6.809616435234037e-06,6.809616435234037e-06,0.008620945736765862,0.0037878667935729027,212 +illusion_1.5L,sr,213,85.2,0.5952905416488647,0.17764267325401306,0.7528312802314758,0.579645574092865,1.2195453643798828,0.4655403196811676,0.0019037578022107482,-3.8993598536762875e-06,0.0022336957044899464,0.00033183000050485134,0.0022424208000302315,-0.00037968793185427785,-0.0011405803665477856,0.0006755128354810629,0.0006755128354810629,-1.1405803665477856e-05,6.755128354810629e-06,6.755128354810629e-06,0.008646907284855843,0.0030756364576518536,213 +illusion_1.5L,sr,214,85.6,0.5839543342590332,0.06341499090194702,0.7234022617340088,0.3960074186325073,1.298743486404419,0.4443848729133606,0.0019026888767257333,-8.671402611071244e-06,0.0022261219564825296,0.0003228981513530016,0.002246228279545903,-0.00038232936640270054,-8.155196740721772e-05,0.0004859584063454259,0.0004859584063454259,-8.155196740721772e-07,4.859584063454259e-06,4.859584063454259e-06,0.008617529645562172,0.0021926581393927336,214 +illusion_1.5L,sr,215,86.0,0.6156741976737976,-0.03892073780298233,0.6696745157241821,0.15406125783920288,1.3587249517440796,0.3883747458457947,0.0019031171686947346,-1.2390104529913515e-05,0.002221658593043685,0.0003162491775583476,0.0022514602169394493,-0.0003817472606897354,0.00046109947383506106,0.0006394624332109675,0.0006394624332109675,4.61099473835061e-06,6.394624332109675e-06,6.394624332109675e-06,0.008267231285572052,0.0011899459641426802,215 +illusion_1.5L,sr,216,86.4,0.6799973249435425,-0.11904184520244598,0.5962340831756592,-0.13111662864685059,1.379370927810669,0.2875401973724365,0.0019055999582633376,-1.5488032659050077e-05,0.0022213729098439217,0.00031312843202613294,0.0022583259269595146,-0.0003794684889726341,0.00163860502167627,0.0002408301157194974,0.0002408301157194974,1.63860502167627e-05,2.408301157194974e-06,2.408301157194974e-06,0.008079802617430687,0.00012491656525526196,216 +illusion_1.5L,sr,217,86.8,0.7457948923110962,-0.1950368881225586,0.5366379022598267,-0.41834545135498047,1.346065878868103,0.13976562023162842,0.001905800891108811,-1.690568751655519e-05,0.0022203035186976194,0.0003153966972604394,0.002261263318359852,-0.00037649754085578024,0.0017743373832984424,0.0004891986517565443,0.0004891986517565443,1.7743373832984424e-05,4.891986517565443e-06,4.891986517565443e-06,0.008036432787775993,-0.0009418626432307065,217 +illusion_1.5L,sr,218,87.2,0.8066917657852173,-0.2706667184829712,0.5445505380630493,-0.6005449295043945,1.2452939748764038,-0.04935679957270622,0.0019046495435759425,-1.723025707178749e-05,0.0022192345932126045,0.0003221850492991507,0.0022605699487030506,-0.0003732829645741731,0.0025070021540505236,0.00014234706082053364,0.00014234706082053364,2.5070021540505235e-05,1.4234706082053364e-06,1.4234706082053364e-06,0.008079362101852894,-0.0019500593189150095,218 +illusion_1.5L,sr,219,87.6,0.8703318238258362,-0.33533909916877747,0.6201391816139221,-0.6386960744857788,1.070634365081787,-0.24788250029087067,0.0019032623386010528,-1.5644216546206735e-05,0.0022193766199052334,0.00033267849357798696,0.002257394837215543,-0.000368990411516279,0.0021799265972572007,0.0004027573719329429,0.0004027573719329429,2.1799265972572006e-05,4.027573719329429e-06,4.027573719329429e-06,0.008383121341466904,-0.002842910820618272,219 +illusion_1.5L,sr,220,88.0,0.9384078979492188,-0.38680756092071533,0.6906909942626953,-0.6491350531578064,0.8744298815727234,-0.37757837772369385,0.0019017773447558284,-1.28021820273716e-05,0.002220821101218462,0.0003449083596933633,0.0022521084174513817,-0.0003634667373262346,0.0024247464554711037,5.974454730344261e-05,5.974454730344261e-05,2.4247464554711038e-05,5.974454730344262e-07,5.974454730344262e-07,0.008482938632369041,-0.0035703328903764486,220 +illusion_1.5L,sr,221,88.4,1.0110154151916504,-0.4261934161186218,0.7330760955810547,-0.6757361888885498,0.7348897457122803,-0.3924727737903595,0.0019030330004170537,-8.680517566972412e-06,0.0022266716696321964,0.00035703566391021013,0.002248496748507023,-0.0003559163596946746,0.002144759954758907,-6.134056578770836e-05,-6.134056578770836e-05,2.144759954758907e-05,-6.134056578770836e-07,-6.134056578770836e-07,0.008444554172456264,-0.00409164372831583,221 +illusion_1.5L,sr,222,88.8,1.0885450839996338,-0.45347827672958374,0.7551268935203552,-0.6901493668556213,0.6600604057312012,-0.3318026661872864,0.0019045172957703471,-3.848617780022323e-06,0.0022336887195706367,0.00036777809145860374,0.0022442585323005915,-0.0003470485971774906,0.0020120249964135743,-0.00042464695156214406,-0.00042464695156214406,2.0120249964135745e-05,-4.2464695156214405e-06,-4.2464695156214405e-06,0.00859114434570074,-0.004377763718366623,222 +illusion_1.5L,sr,223,89.2,1.1705302000045776,-0.4666125774383545,0.758089542388916,-0.6470115184783936,0.6136825680732727,-0.23988227546215057,0.001903971773572266,9.10291134914587e-07,0.0022385837510228157,0.0003759231767617166,0.0022370656952261925,-0.0003377438697498292,0.0017079887470074304,-0.0007486224355423106,-0.0007486224355423106,1.7079887470074304e-05,-7.486224355423106e-06,-7.486224355423106e-06,0.008660022169351578,-0.0044127777218818665,223 +illusion_1.5L,sr,224,89.6,1.2533727884292603,-0.4605252146720886,0.7411550283432007,-0.5120768547058105,0.5852969288825989,-0.1301250010728836,0.0019033136777579784,5.977321961836424e-06,0.0022432052064687014,0.00038077766657806933,0.0022298304829746485,-0.0003282775869593024,0.000492845875153296,-0.00043883773195756143,-0.00043883773195756143,4.92845875153296e-06,-4.3883773195756146e-06,-4.3883773195756146e-06,0.008805335499346256,-0.00419478677213192,224 +illusion_1.5L,sr,225,90.0,1.3268240690231323,-0.42627063393592834,0.7023561000823975,-0.30127254128456116,0.5911498069763184,-0.018171213567256927,0.0019024000503122807,1.0085737812914886e-05,0.002247051801532507,0.00038214237429201603,0.002222924493253231,-0.00032041649683378637,0.0001249746465247243,-0.0007448999223753326,-0.0007448999223753326,1.249746465247243e-06,-7.448999223753326e-06,-7.448999223753326e-06,0.00891233142465353,-0.003736004466190934,225 +illusion_1.5L,sr,226,90.4,1.3725802898406982,-0.35250747203826904,0.6387936472892761,-0.04039878398180008,0.6400741338729858,0.07374172657728195,0.0019024915527552366,1.3872726412955672e-05,0.002251488622277975,0.00038113363552838564,0.002218707697466016,-0.0003149995463900268,-0.00121358897709253,-0.0002786299663453586,-0.0002786299663453586,-1.21358897709253e-05,-2.786299663453586e-06,-2.786299663453586e-06,0.008620023727416992,-0.0030620943289250135,226 +illusion_1.5L,sr,227,90.8,1.3720568418502808,-0.23229625821113586,0.5651230812072754,0.2540130317211151,0.7079582810401917,0.14952535927295685,0.0019047455862164497,1.601308395038359e-05,0.0022575431503355503,0.00037822948070243,0.0022188150323927402,-0.0003138572792522609,-0.00129874471649713,-0.0006377098070650851,-0.0006377098070650851,-1.29874471649713e-05,-6.377098070650851e-06,-6.377098070650851e-06,0.008369951508939266,-0.0022107805125415325,227 +illusion_1.5L,sr,228,91.2,1.313336968421936,-0.06700348854064941,0.5272156000137329,0.5122668743133545,0.7706792950630188,0.22656795382499695,0.0019051063572987914,1.7279286112170666e-05,0.0022599443327635527,0.00037526304367929697,0.0022187107242643833,-0.0003175638266839087,-0.0023115761224285283,-0.00017813757091135127,-0.00017813757091135127,-2.3115761224285285e-05,-1.7813757091135127e-06,-1.7813757091135127e-06,0.008232075721025467,-0.001229805056937039,228 +illusion_1.5L,sr,229,91.6,1.1817797422409058,0.13169750571250916,0.5691279768943787,0.6283190250396729,0.8320110440254211,0.298648476600647,0.0019039607141166925,1.6571793821640313e-05,0.002258491702377796,0.00037162209628149867,0.002218347741290927,-0.0003260124067310244,-0.0019857807604626923,-0.0005414951144476488,-0.0005414951144476488,-1.9857807604626925e-05,-5.414951144476488e-06,-5.414951144476488e-06,0.00811179168522358,-0.00017433101311326027,229 +illusion_1.5L,sr,230,92.0,0.9888076186180115,0.31203776597976685,0.6508640050888062,0.6407005786895752,0.8974350094795227,0.35789424180984497,0.0019027048256248236,1.4681811080663465e-05,0.002254695165902376,0.0003671617014333606,0.002219288144260645,-0.000337181641953066,-0.002451216174101843,-0.00014384283845799914,-0.00014384283845799914,-2.451216174101843e-05,-1.4384283845799915e-06,-1.4384283845799915e-06,0.008253613486886024,0.0008960727136582136,230 +illusion_1.5L,sr,231,92.4,0.8083359599113464,0.39562100172042847,0.7092767357826233,0.6591126918792725,0.9672466516494751,0.40442129969596863,0.001901242882013321,1.113005419028923e-05,0.002248757751658559,0.0003610026906244457,0.0022211961913853884,-0.0003497255966067314,-0.002026815051714554,-0.00022691124586845038,-0.00022691124586845038,-2.026815051714554e-05,-2.269112458684504e-06,-2.269112458684504e-06,0.008266055956482887,0.0019207126460969448,231 +illusion_1.5L,sr,232,92.8,0.6977419257164001,0.3730951249599457,0.7426632642745972,0.6851724982261658,1.0416996479034424,0.4390535056591034,0.0019021667540073395,6.775238944101147e-06,0.00224427692592144,0.0003529598470777273,0.0022269347682595253,-0.00036128322244621813,-0.002194114966177326,0.0002796080210680091,0.0002796080210680091,-2.1941149661773262e-05,2.796080210680091e-06,2.796080210680091e-06,0.008138866163790226,0.002841145033016801,232 +illusion_1.5L,sr,233,93.2,0.6379167437553406,0.2967274487018585,0.7568798661231995,0.6821637153625488,1.1211150884628296,0.4610351622104645,0.0019038129830732942,1.9854655874951277e-06,0.0022400086745619774,0.0003436555853113532,0.0022342803422361612,-0.0003708219446707517,-0.0018511974942654209,0.0005242770573595252,0.0005242770573595252,-1.851197494265421e-05,5.242770573595252e-06,5.242770573595252e-06,0.008266528137028217,0.0036044649314135313,233 +illusion_1.5L,sr,234,93.6,0.5983155965805054,0.19659759104251862,0.7517841458320618,0.6033063530921936,1.2041618824005127,0.46718791127204895,0.0019035408040508628,-2.9984937555127544e-06,0.002233219798654318,0.0003341634583193809,0.0022395113483071327,-0.0003776740049943328,-0.0011327186760658045,0.0005589847969833827,0.0005589847969833827,-1.1327186760658045e-05,5.589847969833827e-06,5.589847969833827e-06,0.008407868444919586,0.004166331607848406,234 +illusion_1.5L,sr,235,94.0,0.5818583369255066,0.08342404663562775,0.726569652557373,0.4336429238319397,1.2849284410476685,0.45094504952430725,0.0019029970280826092,-7.566335170849925e-06,0.0022264316212385893,0.0003253189497627318,0.0022441986948251724,-0.000381128687877208,-0.00044428302944030714,0.0006357363618141919,0.0006357363618141919,-4.442830294403072e-06,6.357363618141919e-06,6.357363618141919e-06,0.008650233037769794,0.004493560642004013,235 +illusion_1.5L,sr,236,94.4,0.6062259674072266,-0.021978208795189857,0.6779191493988037,0.2011212855577469,1.3495947122573853,0.40194350481033325,0.0019022214692085981,-1.177774538518861e-05,0.0022202632389962673,0.00031830661464482546,0.0022479621693491936,-0.000381764693884179,0.0006060617036453154,0.0004180610037486307,0.0004180610037486307,6.060617036453154e-06,4.180610037486307e-06,4.180610037486307e-06,0.008936306461691856,0.0045661311596632,236 +illusion_1.5L,sr,237,94.8,0.6671976447105408,-0.10461536049842834,0.6068587303161621,-0.0763421356678009,1.3782877922058105,0.3097938299179077,0.0019019816536456347,-1.4670936252514366e-05,0.002216286724433303,0.00031470193061977625,0.002251620404422283,-0.0003799929399974644,0.0009824215962407658,0.0006239509611093916,0.0006239509611093916,9.824215962407658e-06,6.239509611093916e-06,6.239509611093916e-06,0.008818242698907852,0.004378491081297398,237 +illusion_1.5L,sr,238,95.2,0.7339150309562683,-0.17993611097335815,0.5405558347702026,-0.36856788396835327,1.355621337890625,0.17127364873886108,0.001903938828036189,-1.6764757674536668e-05,0.0022167598363012075,0.0003150455595459789,0.0022566809784621,-0.00037704932037740946,0.0019822829700981044,0.00025629503967387196,0.00025629503967387196,1.9822829700981044e-05,2.56295039673872e-06,2.56295039673872e-06,0.00864899531006813,0.003940064925700426,238 +illusion_1.5L,sr,239,95.6,0.7947673797607422,-0.2565762996673584,0.5322889685630798,-0.5787506699562073,1.2698924541473389,-0.009351124987006187,0.0019044625805690885,-1.7011263480526395e-05,0.0022175044286996126,0.0003205825632903725,0.002258563879877329,-0.00037358608096838,0.0018493427143170538,0.0005784623750276635,0.0005784623750276635,1.849342714317054e-05,5.7846237502766355e-06,5.7846237502766355e-06,0.00856008566915989,0.003274921327829361,239 +illusion_1.5L,sr,240,96.0,0.8574705719947815,-0.3238861858844757,0.6002610325813293,-0.6375940442085266,1.109513759613037,-0.20927223563194275,0.0019033907447010279,-1.6056328604463488e-05,0.002217936562374234,0.0003300331300124526,0.0022564148530364037,-0.0003698937362059951,0.0023800532836839236,0.00024117156409916504,0.00024117156409916504,2.3800532836839235e-05,2.4117156409916504e-06,2.4117156409916504e-06,0.008397326804697514,0.002420595847070217,240 +illusion_1.5L,sr,241,96.4,0.9246638417243958,-0.3779667913913727,0.6764896512031555,-0.6454781889915466,0.911001980304718,-0.3585769236087799,0.001902267336845398,-1.3314980606082827e-05,0.002219591522589326,0.00034200024674646556,0.002252075122669339,-0.00036483429721556604,0.0019941300705641485,0.00040091523454213046,0.00040091523454213046,1.9941300705641486e-05,4.009152345421305e-06,4.009152345421305e-06,0.008429951965808868,0.0014261198230087757,241 +illusion_1.5L,sr,242,96.8,0.9962344169616699,-0.4197911322116852,0.723723292350769,-0.6702677011489868,0.7553446292877197,-0.3961162567138672,0.0019008662784472108,-9.494451660430059e-06,0.002221941016614437,0.0003543612838257104,0.00224558194167912,-0.0003582545032259077,0.0021786595694965813,-2.8079217770048823e-05,-2.8079217770048823e-05,2.1786595694965812e-05,-2.807921777004882e-07,-2.807921777004882e-07,0.008345250971615314,0.00034934014547616243,242 +illusion_1.5L,sr,243,97.2,1.0725812911987305,-0.4496537744998932,0.7491552829742432,-0.6899610161781311,0.6691761016845703,-0.34629273414611816,0.00190144928637892,-4.905661171505926e-06,0.002227509394288063,0.0003652466693893075,0.0022403334733098745,-0.0003496911667753011,0.0019900801209738715,-0.00031982996822477704,-0.00031982996822477704,1.9900801209738714e-05,-3.1982996822477705e-06,-3.1982996822477705e-06,0.008059890009462833,-0.0007463268702849746,243 +illusion_1.5L,sr,244,97.6,1.153692603111267,-0.46590137481689453,0.7556232213973999,-0.6617831587791443,0.6191784143447876,-0.25886180996894836,0.001903205062262714,-6.826194276499109e-09,0.0022350538056343794,0.0003735505451913923,0.002236067084595561,-0.00034005832276307046,0.0015845564950167663,-0.0005473021789037923,-0.0005473021789037923,1.5845564950167663e-05,-5.4730217890379235e-06,-5.4730217890379235e-06,0.00803802814334631,-0.0017955382354557514,244 +illusion_1.5L,sr,245,98.0,1.236901879310608,-0.46414366364479065,0.7426713705062866,-0.5453268885612488,0.5871734023094177,-0.15204696357250214,0.001903215772472322,4.7441135393455625e-06,0.002240638015791774,0.00037897846777923405,0.002229785080999136,-0.0003307225415483117,0.0009113371692683043,-0.0006251177180412826,-0.0006251177180412826,9.113371692683043e-06,-6.251177180412826e-06,-6.251177180412826e-06,0.00810767337679863,-0.0027348583098500967,245 +illusion_1.5L,sr,246,98.4,1.3133971691131592,-0.4362073540687561,0.7088960409164429,-0.3470654785633087,0.5856468677520752,-0.039139751344919205,0.0019027709495276213,9.374259207106661e-06,0.0022452929988503456,0.000381437421310693,0.0022235361393541098,-0.00032243088935501873,-0.00011782025110540668,-0.00044218178100391506,-0.00044218178100391506,-1.1782025110540669e-06,-4.4218178100391505e-06,-4.4218178100391505e-06,0.008312919177114964,-0.0035065629053860903,246 +illusion_1.5L,sr,247,98.8,1.3660941123962402,-0.3710179626941681,0.6504642367362976,-0.09582409262657166,0.6275022029876709,0.056999120861291885,0.001902102492749691,1.2880861504527275e-05,0.0022489032708108425,0.0003811184724327177,0.002218053210526705,-0.0003168210678268224,-0.0005174955349810904,-0.0006782303123639213,-0.0006782303123639213,-5.174955349810905e-06,-6.782303123639213e-06,-6.782303123639213e-06,0.008678091689944267,-0.004062185063958168,247 +illusion_1.5L,sr,248,99.2,1.3756130933761597,-0.26047229766845703,0.5762098431587219,0.193915456533432,0.694395899772644,0.1338254064321518,0.0019015639554709196,1.5705507394159213e-05,0.0022517205215990543,0.00037915099528618157,0.002214403823018074,-0.0003146623494103551,-0.0015829799737123102,-0.00033314311341580555,-0.00033314311341580555,-1.5829799737123103e-05,-3.3314311341580556e-06,-3.3314311341580556e-06,0.008710966445505619,-0.004365585744380951,248 +illusion_1.5L,sr,249,99.6,1.329820156097412,-0.10489117354154587,0.525983989238739,0.4681171476840973,0.75812166929245,0.21035179495811462,0.0019031689735129476,1.6892132407519966e-05,0.0022557280026376247,0.000375772244296968,0.0022151393350213766,-0.00031694318749941885,-0.0016575134217031095,-0.0005934079646011184,-0.0005934079646011184,-1.6575134217031094e-05,-5.934079646011184e-06,-5.934079646011184e-06,0.00866282731294632,-0.004395345691591501,249 +illusion_1.5L,sr,250,100.0,1.2153840065002441,0.08760606497526169,0.5509670376777649,0.617449164390564,0.8187500238418579,0.28451621532440186,0.0019038686295971274,1.6837471775943413e-05,0.0022570432629436255,0.00037223496474325657,0.002216783817857504,-0.0003237190539948642,-0.0021960309029150638,-0.0003544152238978311,-0.0003544152238978311,-2.1960309029150637e-05,-3.5441522389783112e-06,-3.5441522389783112e-06,0.008717188611626625,-0.004146318417042494,250 +illusion_1.5L,sr,251,100.4,1.032131314277649,0.2775431275367737,0.6318776607513428,0.6397234201431274,0.8831640481948853,0.3466571867465973,0.0019029313698410988,1.5070433619257528e-05,0.002254301216453314,0.00036805958370678127,0.0022179661318659782,-0.0003343010612297803,-0.0020081977521037575,-0.0004773846185013759,-0.0004773846185013759,-2.0081977521037575e-05,-4.773846185013759e-06,-4.773846185013759e-06,0.008651788346469402,-0.0036302267108112574,251 +illusion_1.5L,sr,252,100.8,0.8415724039077759,0.3862399756908417,0.6970928907394409,0.6536502242088318,0.9520778656005859,0.39585426449775696,0.0019019204191863537,1.1900169738510158e-05,0.002249431097880006,0.0003625902463681996,0.002220246708020568,-0.0003465547051746398,-0.0020721084851505964,-0.00023865585397617184,-0.00023865585397617184,-2.0721084851505966e-05,-2.3865585397617183e-06,-2.3865585397617183e-06,0.008710197173058987,-0.0028752374928444624,252 +illusion_1.5L,sr,253,101.2,0.7142345905303955,0.3833034932613373,0.7349101305007935,0.6804932951927185,1.0254439115524292,0.4331131875514984,0.0019005690701305866,7.790771633153781e-06,0.002242504619061947,0.0003554375725798309,0.0022229969035834074,-0.000358620221959427,-0.002086350689690507,0.0001206851874546791,0.0001206851874546791,-2.086350689690507e-05,1.206851874546791e-06,1.206851874546791e-06,0.008641681633889675,-0.0019245173316448927,253 +illusion_1.5L,sr,254,101.6,0.6462861895561218,0.31468743085861206,0.7527850866317749,0.6872643232345581,1.103662133216858,0.4580139219760895,0.0019008334493264556,2.9336149509617826e-06,0.002236616797745228,0.00034642795799300075,0.0022283457219600677,-0.00036865880247205496,-0.0017324461486808854,0.0003307485210331043,0.0003307485210331043,-1.7324461486808856e-05,3.3074852103310434e-06,3.3074852103310434e-06,0.008270466700196266,-0.0008338304469361901,254 +illusion_1.5L,sr,255,102.0,0.6034488081932068,0.2186719924211502,0.751555860042572,0.6275150179862976,1.1860731840133667,0.4679568111896515,0.0019026771187782288,-1.7222753285750514e-06,0.002232374157756567,0.00033671592245809734,0.0022360156290233135,-0.0003755695652216673,-0.0014975641525915668,0.0007050012951628666,0.0007050012951628666,-1.4975641525915669e-05,7.0500129516286665e-06,7.0500129516286665e-06,0.0080949105322361,0.0003316924849059433,255 +illusion_1.5L,sr,256,102.4,0.5812745094299316,0.10726587474346161,0.7308281064033508,0.47561362385749817,1.268129825592041,0.4571389853954315,0.0019030029652640224,-6.722857506247237e-06,0.0022267266176640987,0.0003274426853749901,0.0022418885491788387,-0.0003798971010837704,-0.00022986152878803383,0.0003477615744915106,0.0003477615744915106,-2.2986152878803383e-06,3.477615744915106e-06,3.477615744915106e-06,0.008030417375266552,0.0015014351811259985,256 +illusion_1.5L,sr,257,102.8,0.5967757105827332,-0.0013222700217738748,0.6879315376281738,0.2544565200805664,1.3377342224121094,0.4159586429595947,0.0019026234513148665,-1.066036566044204e-05,0.002221011323854327,0.00032021780498325825,0.0022464666981250048,-0.0003811526985373348,-3.186651583125116e-05,0.0007631612734162167,0.0007631612734162167,-3.1866515831251163e-07,7.631612734162168e-06,7.631612734162168e-06,0.008088373579084873,0.002603593748062849,257 +illusion_1.5L,sr,258,103.2,0.6525755524635315,-0.08791537582874298,0.6209390759468079,-0.01369927916675806,1.375550389289856,0.33360588550567627,0.0019020106410607696,-1.4207946151145734e-05,0.0022162380628287792,0.00031574428430758417,0.0022497903555631638,-0.0003804158477578312,0.0012401994253904772,0.000323714653162447,0.000323714653162447,1.2401994253904771e-05,3.23714653162447e-06,3.23714653162447e-06,0.00838998332619667,0.003569631138816476,258 +illusion_1.5L,sr,259,103.6,0.7201631665229797,-0.1628507375717163,0.5496120452880859,-0.30771157145500183,1.3646353483200073,0.20528915524482727,0.0019012113334611058,-1.617286579858046e-05,0.002212940249592066,0.0003154912556055933,0.002251794096082449,-0.0003779189719352871,0.001311177949294539,0.0006661331969893686,0.0006661331969893686,1.311177949294539e-05,6.661331969893686e-06,6.661331969893686e-06,0.008452391251921654,0.004338605795055628,259 +illusion_1.5L,sr,260,104.0,0.7813612222671509,-0.23997360467910767,0.5239095091819763,-0.5457783341407776,1.2943387031555176,0.03413402661681175,0.0019024700159206986,-1.7115378796006553e-05,0.002213929081335664,0.00031923726783134043,0.00225466419942677,-0.0003745433932635933,0.0020965358071563384,0.00034343665716642796,0.00034343665716642796,2.0965358071563384e-05,3.4343665716642797e-06,3.4343665716642797e-06,0.008437939919531345,0.004861098248511553,260 +illusion_1.5L,sr,261,104.4,0.8429576754570007,-0.3100992441177368,0.578857958316803,-0.6342636346817017,1.15101957321167,-0.16444779932498932,0.0019033279968425632,-1.623245952941943e-05,0.00221639103256166,0.0003274378541391343,0.0022554234601557255,-0.000370561407180503,0.0018688938863360013,0.000603695634678169,0.000603695634678169,1.8688938863360013e-05,6.03695634678169e-06,6.03695634678169e-06,0.008596007712185383,0.005102469120174646,261 +illusion_1.5L,sr,262,104.8,0.9091246724128723,-0.36713725328445435,0.6597815752029419,-0.6424477100372314,0.954864501953125,-0.33200451731681824,0.001902573392726481,-1.4007132449478377e-05,0.0022183512337505817,0.00033869262551888824,0.002252166159451008,-0.0003660564252641052,0.002136603480196536,0.0003224906930463095,0.0003224906930463095,2.136603480196536e-05,3.224906930463095e-06,3.224906930463095e-06,0.008660073392093182,0.005045230966061354,262 +illusion_1.5L,sr,263,105.2,0.9797548651695251,-0.4117158055305481,0.7134021520614624,-0.6639440059661865,0.7833993434906006,-0.3961929380893707,0.001901630312204361,-1.0413236850581598e-05,0.002221157308667898,0.0003511015383992344,0.0022467959206551313,-0.0003600295167416334,0.0019656196108408554,0.00019454635374335436,0.00019454635374335436,1.9656196108408554e-05,1.9454635374335437e-06,1.9454635374335437e-06,0.008821661584079266,0.004690361209213734,263 +illusion_1.5L,sr,264,105.6,1.0549677610397339,-0.44440364837646484,0.7431212663650513,-0.6877540349960327,0.6826340556144714,-0.3614262640476227,0.0019003584748134017,-5.897459232073743e-06,0.002224262338131666,0.00036266117240302265,0.00223955768160522,-0.0003523200284689665,0.0019177464426052766,-0.00016884683878938544,-0.00016884683878938544,1.9177464426052767e-05,-1.6884683878938544e-06,-1.6884683878938544e-06,0.008882550522685051,0.0040574450977146626,264 +illusion_1.5L,sr,265,106.0,1.1349598169326782,-0.46403399109840393,0.7535735368728638,-0.6744542121887207,0.627114474773407,-0.27988293766975403,0.0019003668567165732,-1.229903091370943e-06,0.002229420468211174,0.00037158987834118307,0.0022331508807837963,-0.0003430993529036641,0.0017940076271298257,-0.0005817871777760841,-0.0005817871777760841,1.794007627129826e-05,-5.817871777760841e-06,-5.817871777760841e-06,0.008558989502489567,0.003183630993589759,265 +illusion_1.5L,sr,266,106.4,1.2180227041244507,-0.4668692648410797,0.7447811365127563,-0.5792785286903381,0.5910388827323914,-0.17672468721866608,0.0019022300839424133,3.731023980435566e-06,0.002237084088847041,0.0003774099750444293,0.00222900602966547,-0.00033318594796583056,0.0008678676474652252,-0.0004604054991364942,-0.0004604054991364942,8.678676474652252e-06,-4.604054991364942e-06,-4.604054991364942e-06,0.008332237601280212,0.0021214294247329235,266 +illusion_1.5L,sr,267,106.8,1.2971551418304443,-0.44564583897590637,0.7161222100257874,-0.39673101902008057,0.5815166234970093,-0.06364906579256058,0.001902855234220624,8.174787581083365e-06,0.002243228955194354,0.00038034713361412287,0.0022240171674638987,-0.00032454606844112277,0.00032496344559001817,-0.0006345627273732345,-0.0006345627273732345,3.2496344559001816e-06,-6.3456272737323455e-06,-6.3456272737323455e-06,0.008196236565709114,0.000935496820602566,267 +illusion_1.5L,sr,268,107.2,1.3569499254226685,-0.3896986246109009,0.6637298464775085,-0.15638265013694763,0.6144117712974548,0.0373237282037735,0.0019025281071662903,1.2202835932839662e-05,0.0022476098965853453,0.00038095194031484425,0.002218901878222823,-0.0003181530046276748,-0.0006693765907249821,-0.00044166809951210964,-0.00044166809951210964,-6.693765907249822e-06,-4.416680995121096e-06,-4.416680995121096e-06,0.00811728835105896,-0.00030141021125018597,268 +illusion_1.5L,sr,269,107.6,1.377494215965271,-0.28975731134414673,0.5910605788230896,0.1261606365442276,0.6789405941963196,0.1165485680103302,0.0019019183237105608,1.4972903045418207e-05,0.0022505708038806915,0.00037949811667203903,0.0022147540003061295,-0.0003153595025651157,-0.0010264274514109294,-0.0006406008676017247,-0.0006406008676017247,-1.0264274514109293e-05,-6.406008676017247e-06,-6.406008676017247e-06,0.00829890463501215,-0.0015130521496757865,269 +illusion_1.5L,sr,270,108.0,1.3451948165893555,-0.14459049701690674,0.5302620530128479,0.4121473431587219,0.7442223429679871,0.19221709668636322,0.0019009166862815619,1.674985105637461e-05,0.0022517323959618807,0.00037692824844270945,0.0022118939086794853,-0.00031661897082813084,-0.001800112509512751,-0.00041469802269533673,-0.00041469802269533673,-1.800112509512751e-05,-4.146980226953367e-06,-4.146980226953367e-06,0.008303137496113777,-0.002624597167596221,270 +illusion_1.5L,sr,271,108.4,1.2484750747680664,0.0400012843310833,0.5352483987808228,0.5979368686676025,0.8043721914291382,0.268123060464859,0.0019018148304894567,1.6864814824657515e-05,0.0022534907329827547,0.0003732131444849074,0.002213116968050599,-0.00032209104392677546,-0.0018046284452178168,-0.0006075267342370121,-0.0006075267342370121,-1.8046284452178168e-05,-6.075267342370121e-06,-6.075267342370121e-06,0.008214408531785011,-0.0035674641840159893,271 +illusion_1.5L,sr,272,108.8,1.0791194438934326,0.23593881726264954,0.6103563904762268,0.6389472484588623,0.8675166964530945,0.3334108293056488,0.0019028483657166362,1.5559326129732653e-05,0.002253666054457426,0.00036898936377838254,0.002216360764577985,-0.0003312784538138658,-0.0020561567821399326,-0.00044746315294126934,-0.00044746315294126934,-2.0561567821399328e-05,-4.474631529412694e-06,-4.474631529412694e-06,0.0083629060536623,-0.004283796530216932,272 +illusion_1.5L,sr,273,109.2,0.8824369311332703,0.3698998689651489,0.6828858852386475,0.6484369039535522,0.9353927373886108,0.3855862021446228,0.001902289572171867,1.2732912182400469e-05,0.0022499654442071915,0.0003639291971921921,0.0022190497256815434,-0.00034312589559704065,-0.0019488839857330212,-0.00037718790635027366,-0.00037718790635027366,-1.9488839857330214e-05,-3.7718790635027367e-06,-3.7718790635027367e-06,0.00848082173615694,-0.00473026093095541,273 +illusion_1.5L,sr,274,109.6,0.7368426322937012,0.39135637879371643,0.7263462543487549,0.6744858026504517,1.0077595710754395,0.425678551197052,0.0019013918936252594,8.729580258659553e-06,0.0022441348992288113,0.0003573510912247002,0.002222285605967045,-0.0003554135619197041,-0.0019483860804858227,-6.588341747633397e-05,-6.588341747633397e-05,-1.9483860804858227e-05,-6.588341747633398e-07,-6.588341747633398e-07,0.008707493543624878,-0.004880912136286497,274 +illusion_1.5L,sr,275,110.0,0.6577799320220947,0.3335574269294739,0.7486096024513245,0.6896188259124756,1.0848326683044434,0.453690767288208,0.0019002108601853251,4.201369392831111e-06,0.002236679196357727,0.0003491984389256686,0.002225711243227124,-0.0003661971422843635,-0.001932850477304078,0.00036486326056697944,0.00036486326056697944,-1.932850477304078e-05,3.6486326056697944e-06,3.6486326056697944e-06,0.008908077143132687,-0.004728920757770538,275 +illusion_1.5L,sr,276,110.4,0.6107617020606995,0.24246704578399658,0.7516607642173767,0.6493667364120483,1.1663438081741333,0.4675583243370056,0.0019000007305294275,-7.030461119938991e-07,0.0022299280390143394,0.00033968276693485677,0.0022306821774691343,-0.00037411891389638186,-0.0013433580750466124,0.0004593133402069887,0.0004593133402069887,-1.3433580750466124e-05,4.593133402069887e-06,4.593133402069887e-06,0.00870131142437458,-0.004287036135792732,276 +illusion_1.5L,sr,277,110.8,0.5827895998954773,0.13373368978500366,0.7354177832603455,0.5185171365737915,1.2490620613098145,0.4623170793056488,0.0019018602324649692,-5.384818450693274e-06,0.0022258893586695194,0.0003300161624792963,0.0022382831666618586,-0.000378603144781664,-0.0007626773440815813,0.000601296053746746,0.000601296053746746,-7.626773440815813e-06,6.01296053746746e-06,6.01296053746746e-06,0.008512722328305244,-0.003586746985092759,277 +illusion_1.5L,sr,278,111.2,0.5884870290756226,0.022587662562727928,0.6983351111412048,0.3109188973903656,1.3230482339859009,0.42921334505081177,0.001902761054225266,-9.859449164650869e-06,0.0022216185461729765,0.0003218617057427764,0.0022445835638791323,-0.0003805859014391899,0.00020237235178834946,0.00045476022646479935,0.00045476022646479935,2.0237235178834946e-06,4.547602264647994e-06,4.547602264647994e-06,0.008403330110013485,-0.002676178002730012,278 +illusion_1.5L,sr,279,111.6,0.636890709400177,-0.06915109604597092,0.6367801427841187,0.05338333547115326,1.3701282739639282,0.35728949308395386,0.0019024449866265059,-1.326374967902666e-05,0.0022170832380652428,0.00031680919346399605,0.002248716074973345,-0.0003803062718361616,0.00061923782734747,0.0006618558023176214,0.0006618558023176214,6.1923782734747e-06,6.6185580231762145e-06,6.6185580231762145e-06,0.008277405984699726,-0.001616867259144783,279 +illusion_1.5L,sr,280,112.0,0.70472252368927,-0.1445491462945938,0.563099205493927,-0.238407701253891,1.3717635869979858,0.23995855450630188,0.0019018162274733186,-1.584379788255319e-05,0.0022135779727250338,0.0003154297883156687,0.0022511922288686037,-0.00037857613642700016,0.0015074216581676646,0.0004272516483490099,0.0004272516483490099,1.5074216581676647e-05,4.272516483490099e-06,4.272516483490099e-06,0.008384994231164455,-0.0004796259745489806,280 +illusion_1.5L,sr,281,112.4,0.7670856714248657,-0.22146408259868622,0.5210893750190735,-0.5004622340202332,1.3169734477996826,0.07903670519590378,0.0019006595248356462,-1.689528835413512e-05,0.00221120472997427,0.00031848528305999935,0.0022515635937452316,-0.0003756576916202903,0.0016437736614330345,0.0006180920937390276,0.0006180920937390276,1.6437736614330346e-05,6.180920937390276e-06,6.180920937390276e-06,0.008344382978975773,0.0006602332578040659,281 +illusion_1.5L,sr,282,112.8,0.8276040554046631,-0.294299840927124,0.5578959584236145,-0.6260329484939575,1.1923720836639404,-0.11522689461708069,0.001901248237118125,-1.654690277064219e-05,0.002212674356997013,0.0003253142931498587,0.002252207137644291,-0.0003718306834343821,0.0019796351408946436,0.0005033752714777191,0.0005033752714777191,1.9796351408946438e-05,5.033752714777191e-06,5.033752714777191e-06,0.008156534284353256,0.0017279828898608685,282 +illusion_1.5L,sr,283,113.2,0.892465353012085,-0.35458388924598694,0.6403563618659973,-0.6405563950538635,1.0038080215454102,-0.2974882125854492,0.0019024021457880735,-1.464623255742481e-05,0.0022166112903505564,0.00033545223413966596,0.0022517871111631393,-0.0003671656595543027,0.0019444111918596463,0.0004891519515152522,0.0004891519515152522,1.9444111918596463e-05,4.891519515152522e-06,4.891519515152522e-06,0.008226209320127964,0.002654529409483075,283 +illusion_1.5L,sr,284,113.6,0.9620203971862793,-0.40212592482566833,0.7014710903167725,-0.6573213338851929,0.8188020586967468,-0.39045506715774536,0.0019020421896129847,-1.1267039553786162e-05,0.0022199766244739294,0.0003476041310932487,0.002247708383947611,-0.0003615440509747714,0.0018891104521238794,0.00031755836450749614,0.00031755836450749614,1.8891104521238794e-05,3.1755836450749616e-06,3.1755836450749616e-06,0.008320114575326443,0.003381080459803343,284 +illusion_1.5L,sr,285,114.0,1.0361659526824951,-0.43779632449150085,0.7363361120223999,-0.6835095286369324,0.7006255388259888,-0.375510036945343,0.001901197829283774,-7.155349067033967e-06,0.0022235792130231857,0.00035948623553849757,0.0022414661943912506,-0.0003544795617926866,0.0020667529679015244,-0.00017703653046381024,-0.00017703653046381024,2.0667529679015245e-05,-1.7703653046381025e-06,-1.7703653046381025e-06,0.00853065587580204,0.0038631048519164324,285 +illusion_1.5L,sr,286,114.4,1.1150609254837036,-0.46087902784347534,0.7513816952705383,-0.6835210919380188,0.6373938918113708,-0.30173563957214355,0.0019001105101779103,-2.2808576431998517e-06,0.002227278659120202,0.00036947798798792064,0.0022339175920933485,-0.000345810956787318,0.0015640515476913182,-0.00028516480468542514,-0.00028516480468542514,1.564051547691318e-05,-2.8516480468542513e-06,-2.8516480468542513e-06,0.008803099393844604,0.004073311109095812,286 +illusion_1.5L,sr,287,114.8,1.1976412534713745,-0.4683424234390259,0.7470975518226624,-0.6109687685966492,0.5971266031265259,-0.20293369889259338,0.0018997534643858671,2.3375671389658237e-06,0.002232121303677559,0.00037612664164043963,0.0022269601467996836,-0.0003363482537679374,0.0013545374083751673,-0.0006787505869267621,-0.0006787505869267621,1.3545374083751673e-05,-6.787505869267621e-06,-6.787505869267621e-06,0.008690337650477886,0.004003433044999838,287 +illusion_1.5L,sr,288,115.2,1.278620958328247,-0.45382872223854065,0.7233737707138062,-0.4473748505115509,0.5796405673027039,-0.09080707281827927,0.0019015547586604953,7.244691005325876e-06,0.002239540684968233,0.0003796295204665512,0.0022230891045182943,-0.0003268330474384129,0.00011219493541140234,-0.0003347961909942721,-0.0003347961909942721,1.1219493541140234e-06,-3.347961909942721e-06,-3.347961909942721e-06,0.008544675074517727,0.003664699150249362,288 +illusion_1.5L,sr,289,115.6,1.3448486328125,-0.4073309302330017,0.6772856712341309,-0.21923966705799103,0.6020424365997314,0.01483762264251709,0.001902668154798448,1.110029643314192e-05,0.002245911629870534,0.0003804508305620402,0.0022194974590092897,-0.00031968316761776805,-6.865110217789405e-05,-0.0007516682164188521,-0.0007516682164188521,-6.865110217789406e-07,-7.516682164188521e-06,-7.516682164188521e-06,0.008495600894093513,0.0030869469046592712,289 +illusion_1.5L,sr,290,116.0,1.3765878677368164,-0.31863269209861755,0.6082103848457336,0.05390194430947304,0.6619993448257446,0.09802250564098358,0.0019023859640583396,1.4440270206250716e-05,0.0022497016470879316,0.00037972439895384014,0.002215589163824916,-0.0003157851460855454,-0.0012076364857657867,-0.00039458529989549665,-0.00039458529989549665,-1.2076364857657868e-05,-3.945852998954967e-06,-3.945852998954967e-06,0.008385095745325089,0.0023164439480751753,290 +illusion_1.5L,sr,291,116.4,1.3581985235214233,-0.18451520800590515,0.5398554801940918,0.34604015946388245,0.7290381789207458,0.17290088534355164,0.0019016910810023546,1.631204031582456e-05,0.002251627389341593,0.00037749807233922184,0.0022126794792711735,-0.0003161729546263814,-0.0013431698138466099,-0.0006697789932959136,-0.0006697789932959136,-1.3431698138466099e-05,-6.697789932959136e-06,-6.697789932959136e-06,0.00847627129405737,0.001412564772181213,291 +illusion_1.5L,sr,292,116.8,1.2792141437530518,-0.009227404370903969,0.5242229700088501,0.5670421123504639,0.7894637584686279,0.24985556304454803,0.0019004535861313343,1.695970604487229e-05,0.0022512213326990604,0.0003744913265109062,0.00221086572855711,-0.00032071134774014354,-0.0018951194952751063,-0.0004971071074944267,-0.0004971071074944267,-1.8951194952751064e-05,-4.971071074944267e-06,-4.971071074944267e-06,0.008447900414466858,0.0004435561131685972,292 +illusion_1.5L,sr,293,117.2,1.127123236656189,0.18845286965370178,0.5874453186988831,0.6368994116783142,0.8512433767318726,0.31840676069259644,0.0019007616210728884,1.596525362401735e-05,0.0022508101537823677,0.0003703597467392683,0.002212604507803917,-0.00032890253351069987,-0.0018436682618397024,-0.0006038547881007626,-0.0006038547881007626,-1.8436682618397023e-05,-6.038547881007626e-06,-6.038547881007626e-06,0.008206440135836601,-0.0005183155299164355,293 +illusion_1.5L,sr,294,117.6,0.9296524524688721,0.345327764749527,0.6662952899932861,0.6441642642021179,0.9178118705749512,0.3737947940826416,0.001902010291814804,1.3489923730958253e-05,0.002249774755910039,0.00036524285678751767,0.002217126078903675,-0.0003397422260604799,-0.0019331467432358307,-0.0004327540545584173,-0.0004327540545584173,-1.9331467432358308e-05,-4.327540545584173e-06,-4.327540545584173e-06,0.00820583663880825,-0.0014018918154761195,294 +illusion_1.5L,sr,295,118.0,0.7658401727676392,0.39512836933135986,0.7164088487625122,0.6675779223442078,0.9890450239181519,0.4168914556503296,0.0019018329912796617,9.850217793427873e-06,0.002245352603495121,0.0003590891428757459,0.0022211181931197643,-0.00035189135815016925,-0.0019682558657710437,-0.00013570734143097257,-0.00013570734143097257,-1.9682558657710437e-05,-1.3570734143097257e-06,-1.3570734143097257e-06,0.008266313932836056,-0.0021421664860099554,295 +illusion_1.5L,sr,296,118.4,0.67242032289505,0.35203564167022705,0.7436435222625732,0.6889419555664062,1.0650027990341187,0.4480702579021454,0.0019010193645954132,5.298497853800654e-06,0.0022387998178601265,0.0003514059353619814,0.002225002972409129,-0.00036330451257526875,-0.0017976349095371604,0.00014843866196777127,0.00014843866196777127,-1.7976349095371604e-05,1.4843866196777127e-06,1.4843866196777127e-06,0.008429205976426601,-0.0026848914567381144,296 +illusion_1.5L,sr,297,118.8,0.6200610399246216,0.26696720719337463,0.7515112161636353,0.667029857635498,1.145573377609253,0.4658558964729309,0.0019000754691660404,6.556883249686507e-07,0.0022312281653285027,0.00034254416823387146,0.0022289834450930357,-0.00037214168696664274,-0.0016619776446837754,0.0005571569574464533,0.0005571569574464533,-1.6619776446837755e-05,5.571569574464533e-06,5.571569574464533e-06,0.008723028935492039,-0.0029904174152761698,297 +illusion_1.5L,sr,298,119.2,0.5867646932601929,0.16178014874458313,0.7399911284446716,0.5596137046813965,1.2284953594207764,0.4660762548446655,0.0018996112048625946,-4.285239356249804e-06,0.0022242674604058266,0.0003329489263705909,0.002233700128272176,-0.0003778250829782337,-0.0006964439244636447,0.00040599259882659957,0.00040599259882659957,-6.964439244636447e-06,4.059925988265996e-06,4.059925988265996e-06,0.008667167276144028,-0.0030365013517439365,298 +illusion_1.5L,sr,299,119.6,0.5824500918388367,0.04926333948969841,0.7084603905677795,0.36818352341651917,1.305902361869812,0.4409443140029907,0.0019013079581782222,-8.656560567033011e-06,0.002220542635768652,0.0003241361409891397,0.0022408703807741404,-0.0003800748672802001,-0.00023197010075098887,0.000631807538934129,0.000631807538934129,-2.319701007509889e-06,6.31807538934129e-06,6.31807538934129e-06,0.008530458435416222,-0.002819881308823824,299 +illusion_1.5L,sr,300,120.0,0.6212269067764282,-0.04824748635292053,0.653107762336731,0.12226586043834686,1.361573338508606,0.3796733021736145,0.0019025896908715367,-1.2516821698227432e-05,0.0022176445927470922,0.000317813188303262,0.0022471535485237837,-0.00038020568899810314,0.0006939658890944903,0.0004779024572103379,0.0004779024572103379,6.939658890944903e-06,4.779024572103379e-06,4.779024572103379e-06,0.008516530506312847,-0.00235650478862226,300 +illusion_1.5L,sr,301,120.4,0.6876345276832581,-0.12551994621753693,0.5797807574272156,-0.16351057589054108,1.3759338855743408,0.27396267652511597,0.0019023119239136577,-1.5221660760289524e-05,0.002214341424405575,0.000315490469802171,0.0022505647502839565,-0.00037882168544456363,0.0011097039450501493,0.0006180305996983416,0.0006180305996983416,1.1097039450501494e-05,6.180305996983416e-06,6.180305996983416e-06,0.008421123959124088,-0.0016804002225399017,301 +illusion_1.5L,sr,302,120.8,0.751945972442627,-0.2016008496284485,0.5243058204650879,-0.4430614709854126,1.3365702629089355,0.12392282485961914,0.0019015527796000242,-1.6746180335758254e-05,0.0022120526991784573,0.00031739380210638046,0.0022518595214933157,-0.00037641695234924555,0.001657831691660519,0.0005398394274698098,0.0005398394274698098,1.657831691660519e-05,5.398394274698098e-06,5.398394274698098e-06,0.008498861454427242,-0.0008412639726884663,302 +illusion_1.5L,sr,303,121.2,0.8119122385978699,-0.27673372626304626,0.5396649241447449,-0.6095404624938965,1.231439232826233,-0.06344149261713028,0.0019002824556082487,-1.6741118088248186e-05,0.00221084407530725,0.0003234966134186834,0.0022507396060973406,-0.0003731333708856255,0.0017832869400030288,0.0006217784959833272,0.0006217784959833272,1.7832869400030288e-05,6.217784959833272e-06,6.217784959833272e-06,0.008499415591359138,9.906048217089847e-05,303 +illusion_1.5L,sr,304,121.6,0.875338613986969,-0.34046101570129395,0.6185399889945984,-0.6395840048789978,1.0555752515792847,-0.25550124049186707,0.0019003497436642647,-1.5176774468272924e-05,0.0022128610871732235,0.00033279924537055194,0.002249320736154914,-0.000368735461961478,0.0018747555493271381,0.000558403292019824,0.000558403292019824,1.8747555493271382e-05,5.58403292019824e-06,5.58403292019824e-06,0.008235407061874866,0.0010709670605137944,304 +illusion_1.5L,sr,305,122.0,0.9435754418373108,-0.3911822438240051,0.6876035332679749,-0.6510584950447083,0.8612115979194641,-0.37712737917900085,0.0019016326405107975,-1.2284519470995292e-05,0.0022178608924150467,0.0003441096923779696,0.0022476394660770893,-0.0003631379222497344,0.0019663334996386644,0.0003230233069259625,0.0003230233069259625,1.9663334996386643e-05,3.230233069259625e-06,3.230233069259625e-06,0.008183185011148453,0.0020020240917801857,305 +illusion_1.5L,sr,306,122.4,1.0165202617645264,-0.42991694808006287,0.7282736301422119,-0.6775714755058289,0.7236354351043701,-0.38680925965309143,0.0019016532460227609,-8.170401088136714e-06,0.0022223973646759987,0.0003561288758646697,0.002242941176518798,-0.0003563271020539105,0.001835532779572685,9.394587238365643e-05,9.394587238365643e-05,1.835532779572685e-05,9.394587238365643e-07,9.394587238365643e-07,0.008230230771005154,0.002822116483002901,306 +illusion_1.5L,sr,307,122.8,1.0942983627319336,-0.45644837617874146,0.7483232021331787,-0.6884771585464478,0.6498554944992065,-0.32350197434425354,0.0019008879316970706,-3.667046485134051e-06,0.0022265498992055655,0.00036669563269242644,0.0022361502051353455,-0.0003482693573459983,0.0018949728852291836,-0.0004005067137801184,-0.0004005067137801184,1.8949728852291835e-05,-4.0050671378011844e-06,-4.0050671378011844e-06,0.008360556326806545,0.0034684324637055397,307 +illusion_1.5L,sr,308,123.2,1.1762505769729614,-0.46839767694473267,0.7490291595458984,-0.6383458971977234,0.6052203178405762,-0.22978562116622925,0.0019000668544322252,1.2252552323843702e-06,0.0022307552862912416,0.00037455864367075264,0.002228681929409504,-0.00033906137105077505,0.0011973887707424384,-0.00041798296830285273,-0.00041798296830285273,1.1973887707424384e-05,-4.179829683028528e-06,-4.179829683028528e-06,0.008675433695316315,0.003889942541718483,308 +illusion_1.5L,sr,309,123.6,1.258446455001831,-0.46034884452819824,0.7303270697593689,-0.49675124883651733,0.5805396437644958,-0.11981917172670364,0.0018995787249878049,5.891351975151338e-06,0.0022354035172611475,0.0003790055343415588,0.0022218399681150913,-0.0003297891526017338,0.0006359293147888041,-0.0005718304026484824,-0.0005718304026484824,6.359293147888041e-06,-5.718304026484825e-06,-5.718304026484825e-06,0.008685079403221607,0.004051059018820524,309 +illusion_1.5L,sr,310,124.0,1.3300163745880127,-0.4231283664703369,0.690419614315033,-0.2824746370315552,0.5916237831115723,-0.010365131311118603,0.0019011187832802534,1.0217611816187855e-05,0.002242198446765542,0.00038040257641114295,0.0022183009423315525,-0.0003215780889149755,-0.00022496462791645258,-0.0004950962099870022,-0.0004950962099870022,-2.249646279164526e-06,-4.950962099870022e-06,-4.950962099870022e-06,0.00856055412441492,0.003934219013899565,310 +illusion_1.5L,sr,311,124.4,1.3723829984664917,-0.34598293900489807,0.6264343857765198,-0.02025940828025341,0.6443431973457336,0.07819145172834396,0.0019024776993319392,1.3572828720498364e-05,0.002248271368443966,0.000379695906303823,0.002216026419773698,-0.0003165218513458967,-0.0007314557251975329,-0.0006242807582879407,-0.0006242807582879407,-7.314557251975329e-06,-6.242807582879408e-06,-6.242807582879408e-06,0.008574451319873333,0.0035412150900810957,311 +illusion_1.5L,sr,312,124.8,1.3679230213165283,-0.22352223098278046,0.5538473129272461,0.2722586989402771,0.7123839855194092,0.15298013389110565,0.0019022227497771382,1.595629692019429e-05,0.002251238562166691,0.0003779584658332169,0.0022133777383714914,-0.00031562751973979175,-0.0014283731840935288,-0.000515618733929156,-0.000515618733929156,-1.4283731840935287e-05,-5.1561873392915595e-06,-5.1561873392915595e-06,0.008493040688335896,0.0028931754641234875,312 +illusion_1.5L,sr,313,125.2,1.3062504529953003,-0.058543261140584946,0.5192168951034546,0.5232456922531128,0.7740283012390137,0.230092853307724,0.001901400974020362,1.6910526028368622e-05,0.0022518641781061888,0.00037525297375395894,0.0022116834297776222,-0.0003191816504113376,-0.001636710970794042,-0.0006353468546883324,-0.0006353468546883324,-1.636710970794042e-05,-6.353468546883324e-06,-6.353468546883324e-06,0.008542587049305439,0.0020292061381042004,313 +illusion_1.5L,sr,314,125.6,1.1737582683563232,0.1367516815662384,0.5648623704910278,0.6308433413505554,0.834746778011322,0.30176904797554016,0.0019001653417944908,1.6300582501571625e-05,0.0022500830236822367,0.00037173996679484844,0.002211117884144187,-0.0003266486164648086,-0.0017855038668816506,-0.0006383771047407567,-0.0006383771047407567,-1.7855038668816505e-05,-6.383771047407567e-06,-6.383771047407567e-06,0.008553043939173222,0.0010037844767794013,314 +illusion_1.5L,sr,315,126.0,0.9816327095031738,0.3121987283229828,0.6472285985946655,0.6413715481758118,0.8999050259590149,0.3606099784374237,0.0019000209867954254,1.428293853678042e-05,0.0022477046586573124,0.00036702677607536316,0.0022134343162178993,-0.00033686074311845005,-0.0019345097781705775,-0.00046879205326878434,-0.00046879205326878434,-1.9345097781705776e-05,-4.687920532687843e-06,-4.687920532687843e-06,0.008254999294877052,-0.00011690740939229727,315 +illusion_1.5L,sr,316,126.4,0.801668107509613,0.3926308751106262,0.7048909068107605,0.6603208780288696,0.9697909355163574,0.4068485498428345,0.0019012716365978122,1.0796548849612009e-05,0.002245380077511072,0.00036082466249354184,0.0022187812719494104,-0.00034850931842811406,-0.0018121530152833407,-0.000330352120275771,-0.000330352120275771,-1.812153015283341e-05,-3.30352120275771e-06,-3.30352120275771e-06,0.008126122877001762,-0.0012594565050676465,316 +illusion_1.5L,sr,317,126.8,0.6906763315200806,0.36884990334510803,0.7374392151832581,0.6855273246765137,1.0444860458374023,0.44122937321662903,0.0019014931749552488,6.630109965044539e-06,0.0022404463961720467,0.00035353199928067625,0.00222381972707808,-0.0003600036434363574,-0.0020033484168714734,0.00018537009658524742,0.00018537009658524742,-2.0033484168714733e-05,1.8537009658524742e-06,1.8537009658524742e-06,0.008139083161950111,-0.0023481876123696566,317 +illusion_1.5L,sr,318,127.2,0.631054162979126,0.2914018929004669,0.7504317760467529,0.679607093334198,1.1240142583847046,0.4628160893917084,0.0019007957307621837,1.7905716731547727e-06,0.00223353854380548,0.0003449406358413398,0.0022281883284449577,-0.00036978733260184526,-0.0014973580061013719,0.00029727629705860077,0.00029727629705860077,-1.4973580061013718e-05,2.9727629705860078e-06,2.9727629705860078e-06,0.008225912228226662,-0.0033102850429713726,318 +illusion_1.5L,sr,319,127.6,0.5930308699607849,0.1905677169561386,0.7440254092216492,0.5967872142791748,1.206837773323059,0.468237966299057,0.0019001096952706575,-2.863037479983177e-06,0.0022262507118284702,0.00033575540874153376,0.0022326246835291386,-0.0003763917775359005,-0.001189740725452301,0.0006196347080056831,0.0006196347080056831,-1.189740725452301e-05,6.196347080056832e-06,6.196347080056832e-06,0.008550929836928844,-0.004080713726580143,319 +illusion_1.5L,sr,320,128.0,0.5794116854667664,0.07814723253250122,0.7179905772209167,0.4244868755340576,1.286836862564087,0.4507066011428833,0.0018996192375198007,-7.643297976756003e-06,0.0022196704521775246,0.00032672908855602145,0.0022371760569512844,-0.00037989113479852676,-8.935830687197954e-05,0.00037705237671310874,0.00037705237671310874,-8.935830687197954e-07,3.7705237671310873e-06,3.7705237671310873e-06,0.008641579188406467,-0.004606609698385,320 +illusion_1.5L,sr,321,128.4,0.6068851351737976,-0.02501753717660904,0.6691338419914246,0.1911097913980484,1.3499810695648193,0.3999430537223816,0.0019009566167369485,-1.147456896433141e-05,0.0022162985987961292,0.0003195586905349046,0.0022435111459344625,-0.0003802994033321738,0.00020837253734709918,0.0006996643057610111,0.0006996643057610111,2.083725373470992e-06,6.996643057610112e-06,6.996643057610112e-06,0.008560840971767902,-0.004850836470723152,321 +illusion_1.5L,sr,322,128.8,0.6693456768989563,-0.1059023067355156,0.5985012650489807,-0.08573079854249954,1.3766562938690186,0.30629023909568787,0.0019023411441594362,-1.4632572856498882e-05,0.0022146273404359818,0.00031568578560836613,0.002249233890324831,-0.00037909147795289755,0.0011641122989167509,0.00046574408072124965,0.00046574408072124965,1.1641122989167508e-05,4.657440807212497e-06,4.657440807212497e-06,0.008636081591248512,-0.004794478416442871,322 +illusion_1.5L,sr,323,129.2,0.73573899269104,-0.18096761405467987,0.5331649780273438,-0.37530526518821716,1.3523744344711304,0.16769738495349884,0.0019021128537133336,-1.6432755728601478e-05,0.002212638035416603,0.0003164281079079956,0.002251712139695883,-0.00037690415047109127,0.0013973944781256603,0.0006537433350235142,0.0006537433350235142,1.3973944781256603e-05,6.537433350235142e-06,6.537433350235142e-06,0.008616222999989986,-0.004438104573637247,323 +illusion_1.5L,sr,324,129.6,0.7959218621253967,-0.2576132118701935,0.526165246963501,-0.5816469788551331,1.2665306329727173,-0.010794166475534439,0.0019012487027794123,-1.6862013580976054e-05,0.0022115556057542562,0.00032147494493983686,0.002251669531688094,-0.000374007475329563,0.0017611568406407999,0.0006024177088254992,0.0006024177088254992,1.7611568406408e-05,6.024177088254992e-06,6.024177088254992e-06,0.008672966621816158,-0.0038017285987734795,324 +illusion_1.5L,sr,325,130.0,0.8580811023712158,-0.3248678147792816,0.5951434373855591,-0.6382154226303101,1.1077159643173218,-0.20729656517505646,0.0019000788452103734,-1.575894930283539e-05,0.0022116710897535086,0.00033017247915267944,0.002249260665848851,-0.0003702108224388212,0.001824628427897511,0.0006061588149244013,0.0006061588149244013,1.824628427897511e-05,6.061588149244013e-06,6.061588149244013e-06,0.008711673319339752,-0.002923475345596671,325 +illusion_1.5L,sr,326,130.4,0.924944281578064,-0.3789592683315277,0.6716392636299133,-0.6458334922790527,0.9099041819572449,-0.3550332188606262,0.0018997618462890387,-1.3083846170047764e-05,0.002214260632172227,0.00034115876769647,0.0022460073232650757,-0.0003650527214631438,0.0017964025961456978,0.0005039169817008492,0.0005039169817008492,1.796402596145698e-05,5.0391698170084916e-06,5.0391698170084916e-06,0.008389359340071678,-0.001857058727182448,326 +illusion_1.5L,sr,327,130.8,0.9964950680732727,-0.42085734009742737,0.7188391089439392,-0.6704829335212708,0.75254225730896,-0.3934856653213501,0.00190095289144665,-9.392323590873275e-06,0.002219872083514929,0.00035275574191473424,0.00224300567060709,-0.0003583917859941721,0.0019828144067218327,8.093413224417867e-05,8.093413224417867e-05,1.9828144067218327e-05,8.093413224417868e-07,8.093413224417868e-07,0.008158615790307522,-0.0006682443199679255,327 +illusion_1.5L,sr,328,131.2,1.0729739665985107,-0.4507793188095093,0.7440254092216492,-0.6894242763519287,0.6647729277610779,-0.3442356586456299,0.0019013244891539216,-4.823035396839259e-06,0.0022253096103668213,0.00036374430055730045,0.00223792577162385,-0.00035042405943386257,0.0017375699433208082,-0.00015767680595759302,-0.00015767680595759302,1.7375699433208083e-05,-1.5767680595759303e-06,-1.5767680595759303e-06,0.00808980967849493,0.0005694532301276922,328 +illusion_1.5L,sr,329,131.6,1.154077410697937,-0.4670049250125885,0.7499687075614929,-0.6600915789604187,0.6149182319641113,-0.25654730200767517,0.0019007244845852256,-1.8315964211979008e-07,0.0022299226839095354,0.00037236663047224283,0.00223098904825747,-0.00034164972021244466,0.0015652450745717568,-0.0005431503519005686,-0.0005431503519005686,1.5652450745717567e-05,-5.431503519005686e-06,-5.431503519005686e-06,0.00807673204690218,0.0017795475432649255,329 +illusion_1.5L,sr,330,132.0,1.2369798421859741,-0.465020090341568,0.7365269660949707,-0.5429009795188904,0.5841336846351624,-0.14987584948539734,0.0019002025946974754,4.718661784863798e-06,0.0022345224861055613,0.0003779789840336889,0.00222399877384305,-0.0003323579439893365,0.0005957810462228316,-0.00038896332863282655,-0.00038896332863282655,5.957810462228317e-06,-3.889633286328266e-06,-3.889633286328266e-06,0.008341887965798378,0.002887511160224676,330 +illusion_1.5L,sr,331,132.4,1.312876582145691,-0.43663156032562256,0.7027267217636108,-0.3447060286998749,0.5841382145881653,-0.03803535923361778,0.0018997342558577657,9.068980034498964e-06,0.0022389916703104973,0.00038032789598219097,0.002217753091827035,-0.00032403634395450354,0.00013031441359417743,-0.0006097845077672592,-0.0006097845077672592,1.3031441359417744e-06,-6.097845077672592e-06,-6.097845077672592e-06,0.008465869352221489,0.003825533203780651,331 +illusion_1.5L,sr,332,132.8,1.3648594617843628,-0.37101972103118896,0.6448290944099426,-0.09435353428125381,0.6271570324897766,0.05674416571855545,0.0019008242525160313,1.277638330066111e-05,0.00224474910646677,0.00038010525167919695,0.0022145803086459637,-0.00031783999293111265,-0.0006743950274315375,-0.0005368172025227002,-0.0005368172025227002,-6.743950274315375e-06,-5.3681720252270025e-06,-5.3681720252270025e-06,0.008411048911511898,0.0045367949642241,332 +illusion_1.5L,sr,333,133.2,1.3740005493164062,-0.26071757078170776,0.5711749792098999,0.1936352550983429,0.6944291591644287,0.1328473687171936,0.0019021775806322694,1.5417059330502525e-05,0.0022500022314488888,0.00037831251393072307,0.002213438507169485,-0.000315456505632028,-0.0011764760294647424,-0.0006007939841723639,-0.0006007939841723639,-1.1764760294647424e-05,-6.007939841723639e-06,-6.007939841723639e-06,0.008551978506147861,0.0049789901822805405,333 +illusion_1.5L,sr,334,133.6,1.328845500946045,-0.10679027438163757,0.5206601023674011,0.4667482078075409,0.7579492330551147,0.2092723250389099,0.001901982701383531,1.6740808860049583e-05,0.002251955447718501,0.0003758415696211159,0.0022121514193713665,-0.00031772308284416795,-0.0015653193401501883,-0.0006249183212868395,-0.0006249183212868395,-1.5653193401501883e-05,-6.249183212868395e-06,-6.249183212868395e-06,0.008640555664896965,0.005126874428242445,334 +illusion_1.5L,sr,335,134.0,1.216877818107605,0.0826859399676323,0.544623851776123,0.6171947717666626,0.8180776834487915,0.2836315631866455,0.0019011165713891387,1.6642945411149412e-05,0.0022512481082230806,0.00037270408938638866,0.0022117013577371836,-0.0003242104430682957,-0.0017918245758820686,-0.0006153229143536637,-0.0006153229143536637,-1.7918245758820687e-05,-6.153229143536637e-06,-6.153229143536637e-06,0.00877284724265337,0.004973690956830978,335 +illusion_1.5L,sr,336,134.4,1.036201000213623,0.2710173726081848,0.6257054805755615,0.6399877667427063,0.8819394111633301,0.34607994556427,0.0019000290194526315,1.4905681382515468e-05,0.002248254604637623,0.0003685313567984849,0.002212473889812827,-0.0003340047551319003,-0.001758890543361334,-0.0006271500750547748,-0.0006271500750547748,-1.758890543361334e-05,-6.271500750547749e-06,-6.271500750547749e-06,0.008914750069379807,0.004531398881226778,336 +illusion_1.5L,sr,337,134.8,0.8444483876228333,0.3821694552898407,0.6916981339454651,0.6533685326576233,0.9504707455635071,0.39562472701072693,0.0018995668506249785,1.1901465768460184e-05,0.0022441812325268984,0.0003629972052294761,0.002215336076915264,-0.0003454223333392292,-0.0019059312119138472,-0.0003346139116135356,-0.0003346139116135356,-1.9059312119138472e-05,-3.3461391161353563e-06,-3.3461391161353563e-06,0.008651209995150566,0.0038297150749713182,337 +illusion_1.5L,sr,338,135.2,0.7134925723075867,0.3825374245643616,0.7299537062644958,0.6799362897872925,1.0237247943878174,0.4332290589809418,0.0019006426446139812,7.711701073276345e-06,0.00224054092541337,0.0003556994488462806,0.0022210858296602964,-0.0003569213440641761,-0.0017738516962445066,-9.406968698891932e-05,-9.406968698891932e-05,-1.7738516962445066e-05,-9.406968698891932e-07,-9.406968698891932e-07,0.008369920775294304,0.002914042677730322,338 +illusion_1.5L,sr,339,135.6,0.6437656283378601,0.3150792121887207,0.748087465763092,0.686928927898407,1.101973295211792,0.45849189162254333,0.001901178970001638,3.1905722153169336e-06,0.0022353515960276127,0.00034734129440039396,0.0022268923930823803,-0.00036699630436487496,-0.0018476290378005337,0.0004185700705144468,0.0004185700705144468,-1.8476290378005336e-05,4.185700705144468e-06,4.185700705144468e-06,0.00823057908564806,0.0018424494192004204,339 +illusion_1.5L,sr,340,136.0,0.6011289358139038,0.21935199201107025,0.7469860911369324,0.6284046769142151,1.1843147277832031,0.46878448128700256,0.0019007102819159627,-1.6489533436470083e-06,0.002228533150628209,0.00033822166733443737,0.0022317226976156235,-0.0003746422007679939,-0.0011388946823658432,0.00043034860702308945,0.00043034860702308945,-1.1388946823658432e-05,4.3034860702308944e-06,4.3034860702308944e-06,0.008093336597084999,0.0006818966940045357,340 +illusion_1.5L,sr,341,136.4,0.579441249370575,0.10855428874492645,0.7264863848686218,0.4782666862010956,1.2661504745483398,0.4583262503147125,0.0019003137713298202,-6.324787591438508e-06,0.0022219016682356596,0.0003292352193966508,0.002236461965367198,-0.0003790368791669607,-0.0004912322161623587,0.0005191760053616002,0.0005191760053616002,-4.912322161623587e-06,5.191760053616002e-06,5.191760053616002e-06,0.008223836310207844,-0.0004960204241797328,341 +illusion_1.5L,sr,342,136.8,0.5949985980987549,0.0006557253072969615,0.6842921376228333,0.2587290406227112,1.335644245147705,0.41763392090797424,0.001899879309348762,-1.0537574780755676e-05,0.0022160729859024286,0.0003215860924683511,0.0022407840006053448,-0.00038053729804232717,0.00024047197983639856,0.0005322379084746996,0.0005322379084746996,2.404719798363986e-06,5.322379084746997e-06,5.322379084746997e-06,0.008288096636533737,-0.0016195487696677446,342 +illusion_1.5L,sr,343,137.2,0.6507136821746826,-0.08549927920103073,0.6182510852813721,-0.007321265526115894,1.3738540410995483,0.33618617057800293,0.0019006984075531363,-1.3840863175573759e-05,0.002213100902736187,0.0003166833776049316,0.0022458916064351797,-0.00037963679642416537,0.0008138751492755072,0.0006029581506534938,0.0006029581506534938,8.138751492755073e-06,6.029581506534938e-06,6.029581506534938e-06,0.008168513886630535,-0.0026211808435618877,343 +illusion_1.5L,sr,344,137.6,0.7184746265411377,-0.16006749868392944,0.5468510985374451,-0.2998289167881012,1.3641881942749023,0.20957094430923462,0.0019019678002223372,-1.6053008948802017e-05,0.0022124529350548983,0.00031577766640111804,0.0022505612578243017,-0.00037743966095149517,0.0013734572158631934,0.0005828869035896453,0.0005828869035896453,1.3734572158631935e-05,5.828869035896453e-06,5.828869035896453e-06,0.008290053345263004,-0.003441715380176902,344 +illusion_1.5L,sr,345,138.0,0.7795977592468262,-0.23722900450229645,0.518829882144928,-0.5405226945877075,1.2966705560684204,0.0412750244140625,0.0019018403254449368,-1.6906560631468892e-05,0.0022118818014860153,0.0003195616591256112,0.002251979662105441,-0.0003746885049622506,0.0016630910241070274,0.0006278937501023284,0.0006278937501023284,1.6630910241070274e-05,6.278937501023284e-06,6.278937501023284e-06,0.008446116000413895,-0.004033731762319803,345 +illusion_1.5L,sr,346,138.4,0.8407139778137207,-0.30785906314849854,0.5714902281761169,-0.6337824463844299,1.1577244997024536,-0.1546139270067215,0.0019009826937690377,-1.613869062566664e-05,0.002212071791291237,0.0003274150949437171,0.002250627614557743,-0.000371238449588418,0.0017179888815112845,0.000684306498119739,0.000684306498119739,1.7179888815112845e-05,6.8430649811973905e-06,6.8430649811973905e-06,0.00865935068577528,-0.004364273976534605,346 +illusion_1.5L,sr,347,138.8,0.9063156843185425,-0.36550673842430115,0.6532109975814819,-0.6422293186187744,0.9633230566978455,-0.3238264322280884,0.0019000126048922539,-1.4015804481459782e-05,0.0022135013714432716,0.0003380084817763418,0.0022470683325082064,-0.00036674298462457955,0.001894904967979616,0.0004781405297818765,0.0004781405297818765,1.894904967979616e-05,4.7814052978187655e-06,4.7814052978187655e-06,0.00895126722753048,-0.004416606388986111,347 +illusion_1.5L,sr,348,139.2,0.9765072464942932,-0.4106656312942505,0.7080091238021851,-0.6628848314285278,0.788119912147522,-0.39370647072792053,0.0018994234269484878,-1.0393956472398713e-05,0.002216595457866788,0.00034978665644302964,0.002242267830297351,-0.000360628473572433,0.0017212496430501908,0.00036332619677879874,0.00036332619677879874,1.7212496430501908e-05,3.6332619677879873e-06,3.6332619677879873e-06,0.008846367709338665,-0.004190945997834206,348 +illusion_1.5L,sr,349,139.6,1.0515086650848389,-0.4439466595649719,0.738467276096344,-0.6869417428970337,0.6829317212104797,-0.3629339933395386,0.0019003566121682525,-6.189358373376308e-06,0.0022224183194339275,0.0003607834514696151,0.0022380088921636343,-0.0003529058303683996,0.0019883841264544955,-0.00021948390694486938,-0.00021948390694486938,1.9883841264544954e-05,-2.194839069448694e-06,-2.194839069448694e-06,0.0086283003911376,-0.0037041637115180492,349 +illusion_1.5L,sr,350,140.0,1.1314435005187988,-0.4642244279384613,0.7496215105056763,-0.6756269931793213,0.6260518431663513,-0.2826370596885681,0.0019010333344340324,-1.3904858633395634e-06,0.002228516386821866,0.00037001934833824635,0.0022327976766973734,-0.0003440183063503355,0.0014610174752825549,-0.0003209172658109674,-0.0003209172658109674,1.4610174752825548e-05,-3.209172658109674e-06,-3.209172658109674e-06,0.00852078478783369,-0.002988493302837014,350 +illusion_1.5L,sr,351,140.4,1.2144594192504883,-0.4678472876548767,0.7415212988853455,-0.5841166973114014,0.5899929404258728,-0.18021534383296967,0.0019007425289601088,3.316655238450039e-06,0.0022335860412567854,0.00037642885581590235,0.002226197626441717,-0.0003348969330545515,0.0010394630796218916,-0.0005605442684935799,-0.0005605442684935799,1.0394630796218916e-05,-5.605442684935799e-06,-5.605442684935799e-06,0.008339837193489075,-0.0020893490873277187,351 +illusion_1.5L,sr,352,140.8,1.2936805486679077,-0.44767430424690247,0.7137261033058167,-0.4048244059085846,0.5798863768577576,-0.06773458421230316,0.0019004684872925282,7.977624591148924e-06,0.00223838840611279,0.00037984049413353205,0.002219993621110916,-0.00032621194259263575,9.9355842091098e-05,-0.0004339351508145413,-0.0004339351508145413,9.9355842091098e-07,-4.339351508145413e-06,-4.339351508145413e-06,0.008356091566383839,-0.001062412979081273,352 +illusion_1.5L,sr,353,141.2,1.3541710376739502,-0.39324843883514404,0.6626238226890564,-0.1671026647090912,0.6115754842758179,0.03329705074429512,0.0019000413594767451,1.1799967978731729e-05,0.0022425118368119,0.0003804425650741905,0.0022146226838231087,-0.0003195615136064589,-0.00033024784326312825,-0.0006528287228430834,-0.0006528287228430834,-3.3024784326312825e-06,-6.5282872284308345e-06,-6.5282872284308345e-06,0.00832816120237112,2.9825627279933542e-05,353 +illusion_1.5L,sr,354,141.6,1.376379132270813,-0.2954380214214325,0.590761661529541,0.11274799704551697,0.6756324768066406,0.11255089938640594,0.0019005787326022983,1.4798786651226692e-05,0.002246900461614132,0.0003790658665820956,0.002211872022598982,-0.00031598395435139537,-0.001110273945594032,-0.0005385973256759151,-0.0005385973256759151,-1.110273945594032e-05,-5.385973256759151e-06,-5.385973256759151e-06,0.008069791831076145,0.0011218518484383821,354 +illusion_1.5L,sr,355,142.0,1.3469189405441284,-0.15311689674854279,0.5283150672912598,0.39934319257736206,0.74122154712677,0.18788877129554749,0.0019017286831513047,1.6514011804247275e-05,0.00225087720900774,0.00037649349542334676,0.0022116980981081724,-0.0003166511014569551,-0.0014395595329892048,-0.0006431131275342825,-0.0006431131275342825,-1.4395595329892048e-05,-6.431131275342825e-06,-6.431131275342825e-06,0.008051803335547447,0.002149005187675357,355 +illusion_1.5L,sr,356,142.4,1.2550463676452637,0.02802000194787979,0.5288584232330322,0.5924992561340332,0.8012580871582031,0.2641354501247406,0.0019016802543774247,1.677323416515719e-05,0.0022517621982842684,0.0003734517376869917,0.0022118608467280865,-0.0003219126083422452,-0.0016893070309129954,-0.0006607207897760502,-0.0006607207897760502,-1.6893070309129953e-05,-6.607207897760502e-06,-6.607207897760502e-06,0.008151903748512268,0.0030512260273098946,356 +illusion_1.5L,sr,357,142.8,1.0907765626907349,0.22310997545719147,0.6021072864532471,0.638923168182373,0.8639046549797058,0.330247700214386,0.0019008746603503823,1.556206370878499e-05,0.0022497791796922684,0.00036973264650441706,0.0022126969415694475,-0.00033089195494540036,-0.001813768260473102,-0.0006038281414046387,-0.0006038281414046387,-1.813768260473102e-05,-6.038281414046387e-06,-6.038281414046387e-06,0.00834288913756609,0.0037764590233564377,357 +illusion_1.5L,sr,358,143.2,0.8934643268585205,0.36259639263153076,0.6764116883277893,0.6474255919456482,0.9312079548835754,0.3832422196865082,0.0019000006141141057,1.275861905014608e-05,0.002245695795863867,0.00036472443025559187,0.0022147081326693296,-0.0003422126465011388,-0.0017395186372181348,-0.0005212736133914167,-0.0005212736133914167,-1.7395186372181348e-05,-5.212736133914167e-06,-5.212736133914167e-06,0.008715752512216568,0.004283526912331581,358 +illusion_1.5L,sr,359,143.6,0.74196457862854,0.39150261878967285,0.7212156653404236,0.6728951334953308,1.0030816793441772,0.42412105202674866,0.001899317023344338,8.992837138066534e-06,0.002240240341052413,0.0003581760684028268,0.002218033652752638,-0.00035394326550886035,-0.001961021656163839,-6.004029701606184e-05,-6.004029701606184e-05,-1.961021656163839e-05,-6.004029701606184e-07,-6.004029701606184e-07,0.00877283327281475,0.004544325638562441,359 +illusion_1.5L,sr,360,144.0,0.6587112545967102,0.3373351991176605,0.7444861531257629,0.6894273161888123,1.0798534154891968,0.4529477059841156,0.0019000901374965906,4.411939698911738e-06,0.002235444262623787,0.00034985996899195015,0.0022238390520215034,-0.00036445577279664576,-0.0017157682051733916,0.00018675246130451552,0.00018675246130451552,-1.7157682051733917e-05,1.8675246130451553e-06,1.8675246130451553e-06,0.008680131286382675,0.004545234143733978,360 +illusion_1.5L,sr,361,144.4,0.610774576663971,0.24754634499549866,0.7486498355865479,0.6534280180931091,1.161267876625061,0.46778491139411926,0.0019009289098903537,-2.2912452379841852e-07,0.0022302577272057533,0.00034074383438564837,0.002230199985206127,-0.0003725389833562076,-0.0014906457964254573,0.0005372468013223955,0.0005372468013223955,-1.4906457964254573e-05,5.372468013223955e-06,5.372468013223955e-06,0.00870765931904316,0.00428768340498209,361 +illusion_1.5L,sr,362,144.8,0.5822415947914124,0.13974028825759888,0.7335964441299438,0.5280107259750366,1.2441017627716064,0.46382632851600647,0.001900802250020206,-5.090292688691989e-06,0.0022240113466978073,0.00033155226265080273,0.002235475229099393,-0.0003779170219786465,-0.000525761798726995,0.0003863362053040361,0.0003863362053040361,-5.257617987269951e-06,3.8633620530403616e-06,3.8633620530403616e-06,0.008620945736765862,0.0037878667935729027,362 +illusion_1.5L,sr,363,145.2,0.5861506462097168,0.028661906719207764,0.6979871988296509,0.32429927587509155,1.3187347650527954,0.4325527846813202,0.0019006262300536036,-9.418254194315523e-06,0.002218250883743167,0.00032352952985093,0.002240283414721489,-0.00038023878005333245,-3.8884348863614526e-05,0.0005879707650575192,0.0005879707650575192,-3.888434886361453e-07,5.879707650575192e-06,5.879707650575192e-06,0.008646907284855843,0.0030756364576518536,363 +illusion_1.5L,sr,364,145.6,0.6326749920845032,-0.06384874880313873,0.6380532383918762,0.07013381272554398,1.3675405979156494,0.3631690740585327,0.0019002099288627505,-1.3001274055568501e-05,0.002213378669694066,0.0003179238992743194,0.0022441332694143057,-0.00038016439066268504,0.0006784395465181878,0.00057255130034836,0.00057255130034836,6.784395465181878e-06,5.7255130034836e-06,5.7255130034836e-06,0.008617529645562172,0.0021926581393927336,364 +illusion_1.5L,sr,365,146.0,0.7003046274185181,-0.13923068344593048,0.5643205642700195,-0.21948349475860596,1.3720779418945312,0.24895481765270233,0.0019004460191354156,-1.5583042113576084e-05,0.0022108673583716154,0.0003158537729177624,0.0022477495949715376,-0.0003783305874094367,0.001247204806698446,0.0005770171866254295,0.0005770171866254295,1.247204806698446e-05,5.770171866254295e-06,5.770171866254295e-06,0.008267231285572052,0.0011899459641426802,365 +illusion_1.5L,sr,366,146.4,0.7630182504653931,-0.21592706441879272,0.518404483795166,-0.486145555973053,1.3216941356658936,0.09170672297477722,0.001901455339975655,-1.675498060649261e-05,0.0022111276630312204,0.0003181036445312202,0.0022509689442813396,-0.0003754371718969196,0.0015135470636422343,0.0006787750925536101,0.0006787750925536101,1.5135470636422344e-05,6.787750925536102e-06,6.787750925536102e-06,0.008079802617430687,0.00012491656525526196,366 +illusion_1.5L,sr,367,146.8,0.8232925534248352,-0.2895127236843109,0.5496396422386169,-0.6226407885551453,1.2036218643188477,-0.09944243729114532,0.0019015282159671187,-1.6542800949537195e-05,0.002212042920291424,0.00032470154110342264,0.0022513156291097403,-0.00037214229814708233,0.0017965902629575729,0.0006136126356077846,0.0006136126356077846,1.796590262957573e-05,6.1361263560778465e-06,6.1361263560778465e-06,0.008036432787775993,-0.0009418626432307065,367 +illusion_1.5L,sr,368,147.2,0.8876527547836304,-0.35083770751953125,0.6320130825042725,-0.6403543949127197,1.0192182064056396,-0.2840481400489807,0.0019007943337783217,-1.4667682080471423e-05,0.002213517902418971,0.0003347625897731632,0.0022487500682473183,-0.00036798391374759376,0.0017153552255150045,0.0006460062706578236,0.0006460062706578236,1.7153552255150044e-05,6.460062706578236e-06,6.460062706578236e-06,0.008079362101852894,-0.0019500593189150095,368 +illusion_1.5L,sr,369,147.6,0.9566246867179871,-0.3993665277957916,0.6954410076141357,-0.6554799675941467,0.8304691910743713,-0.38585224747657776,0.0019000022439286113,-1.1563050975382794e-05,0.0022160704247653484,0.00034642667742446065,0.0022441460750997066,-0.0003625742392614484,0.001896288089032486,0.0003149941170103726,0.0003149941170103726,1.896288089032486e-05,3.149941170103726e-06,3.149941170103726e-06,0.008383121341466904,-0.002842910820618272,369 +illusion_1.5L,sr,370,148.0,1.0302201509475708,-0.43598899245262146,0.7317028641700745,-0.6818388104438782,0.7053953409194946,-0.3784150779247284,0.0018992439145222306,-7.343378456425853e-06,0.0022195978090167046,0.00035805092193186283,0.00223814370110631,-0.0003554165014065802,0.0017697157886926512,5.9595728092758794e-05,5.9595728092758794e-05,1.769715788692651e-05,5.959572809275879e-07,5.959572809275879e-07,0.008482938632369041,-0.0035703328903764486,370 +illusion_1.5L,sr,371,148.4,1.1087422370910645,-0.4601268470287323,0.748013436794281,-0.6850662231445312,0.6388508677482605,-0.3075891435146332,0.0018998649902641773,-2.8157662654848536e-06,0.0022253654897212982,0.0003677026543300599,0.0022328610066324472,-0.00034676981158554554,0.0017776507857467825,-0.0004111238070671312,-0.0004111238070671312,1.7776507857467825e-05,-4.1112380706713125e-06,-4.1112380706713125e-06,0.008444554172456264,-0.00409164372831583,371 +illusion_1.5L,sr,372,148.8,1.1912603378295898,-0.46891945600509644,0.7451940178871155,-0.6190359592437744,0.5977904796600342,-0.21019649505615234,0.0019008261151611805,2.0265883904357906e-06,0.00223193084821105,0.0003747514565475285,0.0022277813404798508,-0.00033736013574525714,0.0010325423608038217,-0.0003986369347884081,-0.0003986369347884081,1.0325423608038218e-05,-3.986369347884081e-06,-3.986369347884081e-06,0.00859114434570074,-0.004377763718366623,372 +illusion_1.5L,sr,373,149.2,1.2726941108703613,-0.4562741816043854,0.7231151461601257,-0.46169865131378174,0.5788090229034424,-0.09882766753435135,0.0019009164534509182,6.720038982166443e-06,0.00223739561624825,0.0003789314650930464,0.002221964532509446,-0.00032845002715475857,0.0003941228600813913,-0.0004941239791771846,-0.0004941239791771846,3.941228600813913e-06,-4.941239791771846e-06,-4.941239791771846e-06,0.008660022169351578,-0.0044127777218818665,373 +illusion_1.5L,sr,374,149.6,1.3403855562210083,-0.4124581515789032,0.6790465712547302,-0.23773083090782166,0.5983901023864746,0.007582191377878189,0.0019007909577339888,1.081586378859356e-05,0.002242108341306448,0.0003803735307883471,0.0022166892886161804,-0.0003211541334167123,-0.00021976959658045849,-0.0005900367493848584,-0.0005900367493848584,-2.197695965804585e-06,-5.900367493848584e-06,-5.900367493848584e-06,0.008805335499346256,-0.00419478677213192,374 +illusion_1.5L,sr,375,150.0,1.374993085861206,-0.32721978425979614,0.6114516258239746,0.03165474534034729,0.6565529108047485,0.09181687980890274,0.0019003519555553794,1.4071394616621546e-05,0.0022456073202192783,0.0003796687815338373,0.0022123358212411404,-0.0003167993272654712,-0.0008860020976244019,-0.0005841089496496088,-0.0005841089496496088,-8.86002097624402e-06,-5.8410894964960884e-06,-5.8410894964960884e-06,0.00891233142465353,-0.003736004466190934,375 +illusion_1.5L,sr,376,150.4,1.3606822490692139,-0.19698482751846313,0.5413973927497864,0.32369178533554077,0.7238549590110779,0.16638033092021942,0.0019003157503902912,1.613406311662402e-05,0.002248416654765606,0.0003774533688556403,0.0022100964561104774,-0.000316309102345258,-0.0013366380714195485,-0.0006335917268055387,-0.0006335917268055387,-1.3366380714195486e-05,-6.335917268055387e-06,-6.335917268055387e-06,0.008620023727416992,-0.0030620943289250135,376 +illusion_1.5L,sr,377,150.8,1.2877321243286133,-0.025795500725507736,0.5194057822227478,0.5545167922973633,0.7844498157501221,0.2434913069009781,0.0019011804834008217,1.6888792742975056e-05,0.002250815276056528,0.00037435078411363065,0.002210804261267185,-0.0003200422215741128,-0.0016892619755758814,-0.0006188577792793845,-0.0006188577792793845,-1.6892619755758815e-05,-6.1885777927938455e-06,-6.1885777927938455e-06,0.008369951508939266,-0.0022107805125415325,377 +illusion_1.5L,sr,378,151.2,1.1429938077926636,0.17033761739730835,0.5777229070663452,0.6357060074806213,0.8458652496337891,0.3131366968154907,0.0019013781566172838,1.5986150174285285e-05,0.002250636462122202,0.0003706738061737269,0.002212448976933956,-0.0003279517113696784,-0.0016753540792976973,-0.0007116272717983541,-0.0007116272717983541,-1.6753540792976972e-05,-7.116272717983541e-06,-7.116272717983541e-06,0.008232075721025467,-0.001229805056937039,378 +illusion_1.5L,sr,379,151.6,0.9471610188484192,0.33354470133781433,0.65846848487854,0.6431358456611633,0.9119434356689453,0.3697222173213959,0.001900732982903719,1.372849328618031e-05,0.0022475034929811954,0.00036618008743971586,0.0022145495750010014,-0.00033873756183311343,-0.0018734196797686872,-0.00047607634196192636,-0.00047607634196192636,-1.873419679768687e-05,-4.760763419619264e-06,-4.760763419619264e-06,0.00811179168522358,-0.00017433101311326027,379 +illusion_1.5L,sr,380,152.0,0.7767627835273743,0.3940577208995819,0.7109547257423401,0.6651567220687866,0.9825789928436279,0.41392552852630615,0.0019000020110979676,1.0077772458316758e-05,0.002242431277409196,0.0003601610951591283,0.0022175563499331474,-0.0003506943176034838,-0.001754507978446146,-0.00030880613982602056,-0.00030880613982602056,-1.754507978446146e-05,-3.0880613982602056e-06,-3.0880613982602056e-06,0.008253613486886024,0.0008960727136582136,380 +illusion_1.5L,sr,381,152.4,0.676694929599762,0.35741883516311646,0.7396700382232666,0.6879275441169739,1.057935357093811,0.44623270630836487,0.0018992002587765455,5.7905231187760364e-06,0.00223596696741879,0.00035258213756605983,0.0022212821058928967,-0.0003618129703681916,-0.0019128355719414576,0.0002024632661285861,0.0002024632661285861,-1.9128355719414577e-05,2.024632661285861e-06,2.024632661285861e-06,0.008266055956482887,0.0019207126460969448,381 +illusion_1.5L,sr,382,152.8,0.621956467628479,0.2747472822666168,0.7490574717521667,0.6715089678764343,1.1381019353866577,0.46533098816871643,0.0018996740691363811,1.0414352118459647e-06,0.0022303112782537937,0.0003435182443354279,0.0022269762121140957,-0.0003706387069541961,-0.0014572220122053715,0.0003622871174954242,0.0003622871174954242,-1.4572220122053715e-05,3.622871174954242e-06,3.622871174954242e-06,0.008138866163790226,0.002841145033016801,382 +illusion_1.5L,sr,383,153.2,0.5875285863876343,0.17100347578525543,0.739300549030304,0.5722873210906982,1.2211089134216309,0.46730807423591614,0.0019007541704922915,-3.7134784633963136e-06,0.0022254015784710646,0.00033406083821319044,0.0022336868569254875,-0.0003765115106943995,-0.0008958874859335509,0.0005004292883855209,0.0005004292883855209,-8.95887485933551e-06,5.00429288385521e-06,5.00429288385521e-06,0.008266528137028217,0.0036044649314135313,383 +illusion_1.5L,sr,384,153.6,0.5805965065956116,0.05864095315337181,0.7098796367645264,0.3870912194252014,1.2995195388793945,0.4447152614593506,0.001901051844470203,-8.27565418148879e-06,0.002220089780166745,0.0003255039919167757,0.0022392855025827885,-0.000379647477529943,-9.948705760874556e-05,0.0004777798396536168,0.0004777798396536168,-9.948705760874557e-07,4.777798396536168e-06,4.777798396536168e-06,0.008407868444919586,0.004166331607848406,384 +illusion_1.5L,sr,385,154.0,0.6160346269607544,-0.04044459015130997,0.6569156050682068,0.14559586346149445,1.3576664924621582,0.38697078824043274,0.0019009356619790196,-1.2087075447198004e-05,0.002215308602899313,0.0003191721043549478,0.002243817551061511,-0.000380247161956504,0.0004464657440003579,0.0006058762351576173,0.0006058762351576173,4.464657440003579e-06,6.058762351576174e-06,6.058762351576174e-06,0.008650233037769794,0.004493560642004013,385 +illusion_1.5L,sr,386,154.4,0.6813618540763855,-0.1184743195772171,0.5842918157577515,-0.13680289685726166,1.3759881258010864,0.2854560315608978,0.0019004750065505505,-1.4948459465813357e-05,0.0022114766761660576,0.00031618730281479657,0.0022469109389930964,-0.000379018863895908,0.0010836028994403203,0.000588571029086566,0.000588571029086566,1.0836028994403203e-05,5.88571029086566e-06,5.88571029086566e-06,0.008936306461691856,0.0045661311596632,386 +illusion_1.5L,sr,387,154.8,0.7461857795715332,-0.19411718845367432,0.5247804522514343,-0.4201293885707855,1.3418503999710083,0.13981957733631134,0.0019001829205080867,-1.6590389350312762e-05,0.002209566766396165,0.0003172732249367982,0.002248884178698063,-0.000376521231373772,0.0015012008355016378,0.0006172835583188596,0.0006172835583188596,1.5012008355016379e-05,6.1728355831885966e-06,6.1728355831885966e-06,0.008818242698907852,0.004378491081297398,387 +illusion_1.5L,sr,388,155.2,0.806023359298706,-0.2699122130870819,0.5320520997047424,-0.6010494828224182,1.2442896366119385,-0.04362451657652855,0.00190090446267277,-1.6698164472472854e-05,0.0022106878459453583,0.0003225353721063584,0.002250457415357232,-0.00037311771302483976,0.0016579371041258448,0.0006906859681682677,0.0006906859681682677,1.657937104125845e-05,6.906859681682677e-06,6.906859681682677e-06,0.00864899531006813,0.003940064925700426,388 +illusion_1.5L,sr,389,155.6,0.8690185546875,-0.334972620010376,0.6084087491035461,-0.6393617391586304,1.0751924514770508,-0.23706018924713135,0.0019012201810255647,-1.5396406524814665e-05,0.002213061088696122,0.0003315023786853999,0.0022497361060231924,-0.0003691325255203992,0.001848392185493132,0.0005717724521955223,0.0005717724521955223,1.848392185493132e-05,5.717724521955223e-06,5.717724521955223e-06,0.00856008566915989,0.003274921327829361,389 +illusion_1.5L,sr,390,156.0,0.9367743730545044,-0.3869773745536804,0.6806047558784485,-0.6490028500556946,0.8789324164390564,-0.368769109249115,0.0019006864167749882,-1.2495203009166289e-05,0.0022157318890094757,0.00034295962541364133,0.002246089046820998,-0.00036409194581210613,0.0017096010805172715,0.0005235540957561173,0.0005235540957561173,1.7096010805172716e-05,5.235540957561173e-06,5.235540957561173e-06,0.008397326804697514,0.002420595847070217,390 +illusion_1.5L,sr,391,156.4,1.009100317955017,-0.4269372820854187,0.7234987020492554,-0.6750030517578125,0.7330687642097473,-0.3892741799354553,0.0018999993335455656,-8.655390956846531e-06,0.0022191470488905907,0.00035480785300023854,0.0022405548952519894,-0.00035761258914135396,0.0019290002660664676,5.298650900697685e-05,5.298650900697685e-05,1.9290002660664678e-05,5.298650900697685e-07,5.298650900697685e-07,0.008429951965808868,0.0014261198230087757,391 +illusion_1.5L,sr,392,156.8,1.0862360000610352,-0.4547744393348694,0.745161771774292,-0.689076840877533,0.6537805795669556,-0.33096426725387573,0.0018991859396919608,-4.0645072658662684e-06,0.002223049756139517,0.00036538628046400845,0.002233759267255664,-0.0003494881384540349,0.0016828393714713207,-0.00020134577403956022,-0.00020134577403956022,1.6828393714713208e-05,-2.0134577403956024e-06,-2.0134577403956024e-06,0.008345250971615314,0.00034934014547616243,392 +illusion_1.5L,sr,393,157.2,1.1678169965744019,-0.4683414697647095,0.7476158142089844,-0.646817147731781,0.6073649525642395,-0.23936358094215393,0.0018995373975485563,6.158343808237987e-07,0.0022286756429821253,0.0003731430624611676,0.002227822318673134,-0.0003402408619876951,0.0013898733055959407,-0.0005063488741979842,-0.0005063488741979842,1.3898733055959408e-05,-5.063488741979842e-06,-5.063488741979842e-06,0.008059890009462833,-0.0007463268702849746,393 +illusion_1.5L,sr,394,157.6,1.2503923177719116,-0.46255388855934143,0.7309513092041016,-0.5141198635101318,0.5807815790176392,-0.13063108921051025,0.0019007092341780663,5.435784260043874e-06,0.002235459629446268,0.0003779385006055236,0.0022231442853808403,-0.0003308049344923347,0.0004920427122921607,-0.0004058187216340861,-0.0004058187216340861,4.920427122921608e-06,-4.058187216340861e-06,-4.058187216340861e-06,0.00803802814334631,-0.0017955382354557514,394 +illusion_1.5L,sr,395,158.0,1.3237371444702148,-0.42860811948776245,0.693623423576355,-0.3056824207305908,0.5882010459899902,-0.020397191867232323,0.0019011780386790633,9.7284473667969e-06,0.0022411311510950327,0.0003800232952926308,0.0022183784749358892,-0.0003228657296858728,-2.5492541028012544e-05,-0.0005818538962295396,-0.0005818538962295396,-2.5492541028012544e-07,-5.818538962295396e-06,-5.818538962295396e-06,0.00810767337679863,-0.0027348583098500967,395 +illusion_1.5L,sr,396,158.4,1.3696919679641724,-0.355773389339447,0.6320266127586365,-0.04813070595264435,0.6377919316291809,0.07012143731117249,0.0019010688411071897,1.3212944395490922e-05,0.0022453891579061747,0.0003799108089879155,0.002214107196778059,-0.0003176335885655135,-0.0006957581046329007,-0.0005948601591981625,-0.0005948601591981625,-6.957581046329007e-06,-5.948601591981625e-06,-5.948601591981625e-06,0.008312919177114964,-0.0035065629053860903,396 +illusion_1.5L,sr,397,158.8,1.3701841831207275,-0.23802483081817627,0.5586316585540771,0.24267879128456116,0.7056801319122314,0.14505326747894287,0.001900551957078278,1.571614484419115e-05,0.002247987315058708,0.00037825320032425225,0.002210811944678426,-0.0003161033382639289,-0.0012918532109732102,-0.0005696936484332303,-0.0005696936484332303,-1.2918532109732103e-05,-5.696936484332303e-06,-5.696936484332303e-06,0.008678091689944267,-0.004062185063958168,397 +illusion_1.5L,sr,398,159.2,1.3149826526641846,-0.07775565981864929,0.5172454118728638,0.502813994884491,0.7677265405654907,0.22196537256240845,0.0019000577740371227,1.6759453501435928e-05,0.002249140525236726,0.0003754564677365124,0.0022092799190431833,-0.00031882073380984366,-0.0015064771419224798,-0.0006983066266584501,-0.0006983066266584501,-1.5064771419224799e-05,-6.9830662665845005e-06,-6.9830662665845005e-06,0.008710966445505619,-0.004365585744380951,398 +illusion_1.5L,sr,399,159.6,1.1911189556121826,0.11477431654930115,0.5547775030136108,0.6267285943031311,0.8280467391014099,0.2947840690612793,0.0019006291404366493,1.644479743845295e-05,0.002249856246635318,0.0003718566440511495,0.0022108261473476887,-0.00032540824031457305,-0.0018050055152508818,-0.0006083265634991807,-0.0006083265634991807,-1.805005515250882e-05,-6.0832656349918065e-06,-6.0832656349918065e-06,0.00866282731294632,-0.004395345691591501,399 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_long.csv new file mode 100644 index 0000000..db770b3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,target,0,0.0,velocity,upper_ux,1.3447381258010864 +illusion_1.5L,target,0,0.0,velocity,upper_uy,-0.6099832057952881 +illusion_1.5L,target,0,0.0,velocity,center_ux,0.9965444803237915 +illusion_1.5L,target,0,0.0,velocity,center_uy,-0.7404286861419678 +illusion_1.5L,target,0,0.0,velocity,lower_ux,0.5582348108291626 +illusion_1.5L,target,0,0.0,velocity,lower_uy,-0.3427599370479584 +illusion_1.5L,target,1,0.4,velocity,upper_ux,1.4381823539733887 +illusion_1.5L,target,1,0.4,velocity,upper_uy,-0.5952910780906677 +illusion_1.5L,target,1,0.4,velocity,center_ux,0.9349439144134521 +illusion_1.5L,target,1,0.4,velocity,center_uy,-0.4884820878505707 +illusion_1.5L,target,1,0.4,velocity,lower_ux,0.49530497193336487 +illusion_1.5L,target,1,0.4,velocity,lower_uy,-0.13505491614341736 +illusion_1.5L,target,2,0.8,velocity,upper_ux,1.4830055236816406 +illusion_1.5L,target,2,0.8,velocity,upper_uy,-0.48154643177986145 +illusion_1.5L,target,2,0.8,velocity,center_ux,0.8623756170272827 +illusion_1.5L,target,2,0.8,velocity,center_uy,-0.1242586225271225 +illusion_1.5L,target,2,0.8,velocity,lower_ux,0.47865238785743713 +illusion_1.5L,target,2,0.8,velocity,lower_uy,0.10451044887304306 +illusion_1.5L,target,3,1.2,velocity,upper_ux,1.4003231525421143 +illusion_1.5L,target,3,1.2,velocity,upper_uy,-0.1782785952091217 +illusion_1.5L,target,3,1.2,velocity,center_ux,0.8095380663871765 +illusion_1.5L,target,3,1.2,velocity,center_uy,0.28967347741127014 +illusion_1.5L,target,3,1.2,velocity,lower_ux,0.5205942392349243 +illusion_1.5L,target,3,1.2,velocity,lower_uy,0.3063831329345703 +illusion_1.5L,target,4,1.6,velocity,upper_ux,1.2218959331512451 +illusion_1.5L,target,4,1.6,velocity,upper_uy,0.2295718640089035 +illusion_1.5L,target,4,1.6,velocity,center_ux,0.7988975644111633 +illusion_1.5L,target,4,1.6,velocity,center_uy,0.6281636953353882 +illusion_1.5L,target,4,1.6,velocity,lower_ux,0.6139196157455444 +illusion_1.5L,target,4,1.6,velocity,lower_uy,0.4112069606781006 +illusion_1.5L,target,5,2.0,velocity,upper_ux,1.074711561203003 +illusion_1.5L,target,5,2.0,velocity,upper_uy,0.49395817518234253 +illusion_1.5L,target,5,2.0,velocity,center_ux,0.8307750225067139 +illusion_1.5L,target,5,2.0,velocity,center_uy,0.7514716982841492 +illusion_1.5L,target,5,2.0,velocity,lower_ux,0.7186464071273804 +illusion_1.5L,target,5,2.0,velocity,lower_uy,0.4509841203689575 +illusion_1.5L,target,6,2.4,velocity,upper_ux,0.999340295791626 +illusion_1.5L,target,6,2.4,velocity,upper_uy,0.5526095032691956 +illusion_1.5L,target,6,2.4,velocity,center_ux,0.875745415687561 +illusion_1.5L,target,6,2.4,velocity,center_uy,0.7343926429748535 +illusion_1.5L,target,6,2.4,velocity,lower_ux,0.8097522258758545 +illusion_1.5L,target,6,2.4,velocity,lower_uy,0.4798631966114044 +illusion_1.5L,target,7,2.8,velocity,upper_ux,0.955504834651947 +illusion_1.5L,target,7,2.8,velocity,upper_uy,0.541987955570221 +illusion_1.5L,target,7,2.8,velocity,center_ux,0.9135147333145142 +illusion_1.5L,target,7,2.8,velocity,center_uy,0.716176450252533 +illusion_1.5L,target,7,2.8,velocity,lower_ux,0.8908132910728455 +illusion_1.5L,target,7,2.8,velocity,lower_uy,0.5046966671943665 +illusion_1.5L,target,8,3.2,velocity,upper_ux,0.9123565554618835 +illusion_1.5L,target,8,3.2,velocity,upper_uy,0.5388425588607788 +illusion_1.5L,target,8,3.2,velocity,center_ux,0.9445895552635193 +illusion_1.5L,target,8,3.2,velocity,center_uy,0.7197061777114868 +illusion_1.5L,target,8,3.2,velocity,lower_ux,0.9664261341094971 +illusion_1.5L,target,8,3.2,velocity,lower_uy,0.5261811017990112 +illusion_1.5L,target,9,3.6,velocity,upper_ux,0.8617480993270874 +illusion_1.5L,target,9,3.6,velocity,upper_uy,0.5449735522270203 +illusion_1.5L,target,9,3.6,velocity,center_ux,0.9707955718040466 +illusion_1.5L,target,9,3.6,velocity,center_uy,0.742072582244873 +illusion_1.5L,target,9,3.6,velocity,lower_ux,1.0380364656448364 +illusion_1.5L,target,9,3.6,velocity,lower_uy,0.5461143255233765 +illusion_1.5L,target,10,4.0,velocity,upper_ux,0.7987417578697205 +illusion_1.5L,target,10,4.0,velocity,upper_uy,0.549598753452301 +illusion_1.5L,target,10,4.0,velocity,center_ux,0.993556797504425 +illusion_1.5L,target,10,4.0,velocity,center_uy,0.7813997864723206 +illusion_1.5L,target,10,4.0,velocity,lower_ux,1.1078377962112427 +illusion_1.5L,target,10,4.0,velocity,lower_uy,0.5652861595153809 +illusion_1.5L,target,11,4.4,velocity,upper_ux,0.7209677696228027 +illusion_1.5L,target,11,4.4,velocity,upper_uy,0.5334727168083191 +illusion_1.5L,target,11,4.4,velocity,center_ux,1.0133146047592163 +illusion_1.5L,target,11,4.4,velocity,center_uy,0.8273233771324158 +illusion_1.5L,target,11,4.4,velocity,lower_ux,1.18080472946167 +illusion_1.5L,target,11,4.4,velocity,lower_uy,0.5836873054504395 +illusion_1.5L,target,12,4.8,velocity,upper_ux,0.6324756741523743 +illusion_1.5L,target,12,4.8,velocity,upper_uy,0.46618789434432983 +illusion_1.5L,target,12,4.8,velocity,center_ux,1.0195571184158325 +illusion_1.5L,target,12,4.8,velocity,center_uy,0.8344981670379639 +illusion_1.5L,target,12,4.8,velocity,lower_ux,1.2622907161712646 +illusion_1.5L,target,12,4.8,velocity,lower_uy,0.6002820730209351 +illusion_1.5L,target,13,5.2,velocity,upper_ux,0.5493716597557068 +illusion_1.5L,target,13,5.2,velocity,upper_uy,0.32211434841156006 +illusion_1.5L,target,13,5.2,velocity,center_ux,0.9924485683441162 +illusion_1.5L,target,13,5.2,velocity,center_uy,0.7189877033233643 +illusion_1.5L,target,13,5.2,velocity,lower_ux,1.356442928314209 +illusion_1.5L,target,13,5.2,velocity,lower_uy,0.6104946732521057 +illusion_1.5L,target,14,5.6,velocity,upper_ux,0.4928756654262543 +illusion_1.5L,target,14,5.6,velocity,upper_uy,0.10750788450241089 +illusion_1.5L,target,14,5.6,velocity,center_ux,0.9295656681060791 +illusion_1.5L,target,14,5.6,velocity,center_uy,0.4510856568813324 +illusion_1.5L,target,14,5.6,velocity,lower_ux,1.4503228664398193 +illusion_1.5L,target,14,5.6,velocity,lower_uy,0.589684009552002 +illusion_1.5L,target,15,6.0,velocity,upper_ux,0.48135611414909363 +illusion_1.5L,target,15,6.0,velocity,upper_uy,-0.13216030597686768 +illusion_1.5L,target,15,6.0,velocity,center_ux,0.8558624982833862 +illusion_1.5L,target,15,6.0,velocity,center_uy,0.07618343085050583 +illusion_1.5L,target,15,6.0,velocity,lower_ux,1.4820315837860107 +illusion_1.5L,target,15,6.0,velocity,lower_uy,0.45660990476608276 +illusion_1.5L,target,16,6.4,velocity,upper_ux,0.5276541709899902 +illusion_1.5L,target,16,6.4,velocity,upper_uy,-0.3242887854576111 +illusion_1.5L,target,16,6.4,velocity,center_ux,0.804054856300354 +illusion_1.5L,target,16,6.4,velocity,center_uy,-0.3374285399913788 +illusion_1.5L,target,16,6.4,velocity,lower_ux,1.3796817064285278 +illusion_1.5L,target,16,6.4,velocity,lower_uy,0.1303936243057251 +illusion_1.5L,target,17,6.8,velocity,upper_ux,0.623531699180603 +illusion_1.5L,target,17,6.8,velocity,upper_uy,-0.4177181124687195 +illusion_1.5L,target,17,6.8,velocity,center_ux,0.798078715801239 +illusion_1.5L,target,17,6.8,velocity,center_uy,-0.655098021030426 +illusion_1.5L,target,17,6.8,velocity,lower_ux,1.198146939277649 +illusion_1.5L,target,17,6.8,velocity,lower_uy,-0.2727510929107666 +illusion_1.5L,target,18,7.2,velocity,upper_ux,0.7287299633026123 +illusion_1.5L,target,18,7.2,velocity,upper_uy,-0.4544948935508728 +illusion_1.5L,target,18,7.2,velocity,center_ux,0.8349980711936951 +illusion_1.5L,target,18,7.2,velocity,center_uy,-0.7535775899887085 +illusion_1.5L,target,18,7.2,velocity,lower_ux,1.0619765520095825 +illusion_1.5L,target,18,7.2,velocity,lower_uy,-0.5101343989372253 +illusion_1.5L,target,19,7.6,velocity,upper_ux,0.8213234543800354 +illusion_1.5L,target,19,7.6,velocity,upper_uy,-0.48300132155418396 +illusion_1.5L,target,19,7.6,velocity,center_ux,0.8825345635414124 +illusion_1.5L,target,19,7.6,velocity,center_uy,-0.7317014932632446 +illusion_1.5L,target,19,7.6,velocity,lower_ux,0.995801568031311 +illusion_1.5L,target,19,7.6,velocity,lower_uy,-0.552991509437561 +illusion_1.5L,target,20,8.0,velocity,upper_ux,0.9025571942329407 +illusion_1.5L,target,20,8.0,velocity,upper_uy,-0.5074503421783447 +illusion_1.5L,target,20,8.0,velocity,center_ux,0.9201779961585999 +illusion_1.5L,target,20,8.0,velocity,center_uy,-0.7160955667495728 +illusion_1.5L,target,20,8.0,velocity,lower_ux,0.9534505605697632 +illusion_1.5L,target,20,8.0,velocity,lower_uy,-0.5416092872619629 +illusion_1.5L,target,21,8.4,velocity,upper_ux,0.9752155542373657 +illusion_1.5L,target,21,8.4,velocity,upper_uy,-0.5286878943443298 +illusion_1.5L,target,21,8.4,velocity,center_ux,0.9482035040855408 +illusion_1.5L,target,21,8.4,velocity,center_uy,-0.7219330072402954 +illusion_1.5L,target,21,8.4,velocity,lower_ux,0.9069628119468689 +illusion_1.5L,target,21,8.4,velocity,lower_uy,-0.5400252342224121 +illusion_1.5L,target,22,8.8,velocity,upper_ux,1.0439549684524536 +illusion_1.5L,target,22,8.8,velocity,upper_uy,-0.5484761595726013 +illusion_1.5L,target,22,8.8,velocity,center_ux,0.971632182598114 +illusion_1.5L,target,22,8.8,velocity,center_uy,-0.7462746500968933 +illusion_1.5L,target,22,8.8,velocity,lower_ux,0.8527564406394958 +illusion_1.5L,target,22,8.8,velocity,lower_uy,-0.5467120409011841 +illusion_1.5L,target,23,9.2,velocity,upper_ux,1.1138097047805786 +illusion_1.5L,target,23,9.2,velocity,upper_uy,-0.5676048994064331 +illusion_1.5L,target,23,9.2,velocity,center_ux,0.9943106174468994 +illusion_1.5L,target,23,9.2,velocity,center_uy,-0.7869619131088257 +illusion_1.5L,target,23,9.2,velocity,lower_ux,0.7883772253990173 +illusion_1.5L,target,23,9.2,velocity,lower_uy,-0.5502781867980957 +illusion_1.5L,target,24,9.6,velocity,upper_ux,1.1899186372756958 +illusion_1.5L,target,24,9.6,velocity,upper_uy,-0.5859940648078918 +illusion_1.5L,target,24,9.6,velocity,center_ux,1.015722393989563 +illusion_1.5L,target,24,9.6,velocity,center_uy,-0.8315612077713013 +illusion_1.5L,target,24,9.6,velocity,lower_ux,0.711588978767395 +illusion_1.5L,target,24,9.6,velocity,lower_uy,-0.5299668908119202 +illusion_1.5L,target,25,10.0,velocity,upper_ux,1.2753665447235107 +illusion_1.5L,target,25,10.0,velocity,upper_uy,-0.602442741394043 +illusion_1.5L,target,25,10.0,velocity,center_ux,1.021134376525879 +illusion_1.5L,target,25,10.0,velocity,center_uy,-0.8291577696800232 +illusion_1.5L,target,25,10.0,velocity,lower_ux,0.624973475933075 +illusion_1.5L,target,25,10.0,velocity,lower_uy,-0.45428287982940674 +illusion_1.5L,target,26,10.4,velocity,upper_ux,1.3704133033752441 +illusion_1.5L,target,26,10.4,velocity,upper_uy,-0.6111742258071899 +illusion_1.5L,target,26,10.4,velocity,center_ux,0.9879959225654602 +illusion_1.5L,target,26,10.4,velocity,center_uy,-0.6948983073234558 +illusion_1.5L,target,26,10.4,velocity,lower_ux,0.5428703427314758 +illusion_1.5L,target,26,10.4,velocity,lower_uy,-0.2999151349067688 +illusion_1.5L,target,27,10.8,velocity,upper_ux,1.4585484266281128 +illusion_1.5L,target,27,10.8,velocity,upper_uy,-0.5820985436439514 +illusion_1.5L,target,27,10.8,velocity,center_ux,0.9192000031471252 +illusion_1.5L,target,27,10.8,velocity,center_uy,-0.41049471497535706 +illusion_1.5L,target,27,10.8,velocity,lower_ux,0.48799145221710205 +illusion_1.5L,target,27,10.8,velocity,lower_uy,-0.07876881957054138 +illusion_1.5L,target,28,11.2,velocity,upper_ux,1.47492253780365 +illusion_1.5L,target,28,11.2,velocity,upper_uy,-0.42734089493751526 +illusion_1.5L,target,28,11.2,velocity,center_ux,0.8454570174217224 +illusion_1.5L,target,28,11.2,velocity,center_uy,-0.02685220167040825 +illusion_1.5L,target,28,11.2,velocity,lower_ux,0.4813956916332245 +illusion_1.5L,target,28,11.2,velocity,lower_uy,0.15918587148189545 +illusion_1.5L,target,29,11.6,velocity,upper_ux,1.358248233795166 +illusion_1.5L,target,29,11.6,velocity,upper_uy,-0.08004054427146912 +illusion_1.5L,target,29,11.6,velocity,center_ux,0.7999810576438904 +illusion_1.5L,target,29,11.6,velocity,center_uy,0.38356661796569824 +illusion_1.5L,target,29,11.6,velocity,lower_ux,0.5358139276504517 +illusion_1.5L,target,29,11.6,velocity,lower_uy,0.3407948315143585 +illusion_1.5L,target,30,12.0,velocity,upper_ux,1.1798367500305176 +illusion_1.5L,target,30,12.0,velocity,upper_uy,0.31442469358444214 +illusion_1.5L,target,30,12.0,velocity,center_ux,0.8030305504798889 +illusion_1.5L,target,30,12.0,velocity,center_uy,0.678806483745575 +illusion_1.5L,target,30,12.0,velocity,lower_ux,0.6378329992294312 +illusion_1.5L,target,30,12.0,velocity,lower_uy,0.42399996519088745 +illusion_1.5L,target,31,12.4,velocity,upper_ux,1.0544341802597046 +illusion_1.5L,target,31,12.4,velocity,upper_uy,0.5234814286231995 +illusion_1.5L,target,31,12.4,velocity,center_ux,0.8443426489830017 +illusion_1.5L,target,31,12.4,velocity,center_uy,0.7537120580673218 +illusion_1.5L,target,31,12.4,velocity,lower_ux,0.7433797717094421 +illusion_1.5L,target,31,12.4,velocity,lower_uy,0.45849931240081787 +illusion_1.5L,target,32,12.8,velocity,upper_ux,0.9916250705718994 +illusion_1.5L,target,32,12.8,velocity,upper_uy,0.5518423914909363 +illusion_1.5L,target,32,12.8,velocity,center_ux,0.8889906406402588 +illusion_1.5L,target,32,12.8,velocity,center_uy,0.7286118865013123 +illusion_1.5L,target,32,12.8,velocity,lower_ux,0.8324835300445557 +illusion_1.5L,target,32,12.8,velocity,lower_uy,0.4865124821662903 +illusion_1.5L,target,33,13.2,velocity,upper_ux,0.9468796253204346 +illusion_1.5L,target,33,13.2,velocity,upper_uy,0.5404529571533203 +illusion_1.5L,target,33,13.2,velocity,center_ux,0.9226093888282776 +illusion_1.5L,target,33,13.2,velocity,center_uy,0.7156890034675598 +illusion_1.5L,target,33,13.2,velocity,lower_ux,0.9099115133285522 +illusion_1.5L,target,33,13.2,velocity,lower_uy,0.5103318691253662 +illusion_1.5L,target,34,13.6,velocity,upper_ux,0.8993375301361084 +illusion_1.5L,target,34,13.6,velocity,upper_uy,0.5403936505317688 +illusion_1.5L,target,34,13.6,velocity,center_ux,0.9494100213050842 +illusion_1.5L,target,34,13.6,velocity,center_uy,0.7237387299537659 +illusion_1.5L,target,34,13.6,velocity,lower_ux,0.9814081788063049 +illusion_1.5L,target,34,13.6,velocity,lower_uy,0.5312394499778748 +illusion_1.5L,target,35,14.0,velocity,upper_ux,0.8463485240936279 +illusion_1.5L,target,35,14.0,velocity,upper_uy,0.547400951385498 +illusion_1.5L,target,35,14.0,velocity,center_ux,0.9745500087738037 +illusion_1.5L,target,35,14.0,velocity,center_uy,0.7500728368759155 +illusion_1.5L,target,35,14.0,velocity,lower_ux,1.0521122217178345 +illusion_1.5L,target,35,14.0,velocity,lower_uy,0.5508782863616943 +illusion_1.5L,target,36,14.4,velocity,upper_ux,0.7830088138580322 +illusion_1.5L,target,36,14.4,velocity,upper_uy,0.5493358969688416 +illusion_1.5L,target,36,14.4,velocity,center_ux,0.999530553817749 +illusion_1.5L,target,36,14.4,velocity,center_uy,0.7924437522888184 +illusion_1.5L,target,36,14.4,velocity,lower_ux,1.1251076459884644 +illusion_1.5L,target,36,14.4,velocity,lower_uy,0.5699581503868103 +illusion_1.5L,target,37,14.8,velocity,upper_ux,0.7041627764701843 +illusion_1.5L,target,37,14.8,velocity,upper_uy,0.523867666721344 +illusion_1.5L,target,37,14.8,velocity,center_ux,1.0196218490600586 +illusion_1.5L,target,37,14.8,velocity,center_uy,0.8355653285980225 +illusion_1.5L,target,37,14.8,velocity,lower_ux,1.2022300958633423 +illusion_1.5L,target,37,14.8,velocity,lower_uy,0.5882065296173096 +illusion_1.5L,target,38,15.2,velocity,upper_ux,0.6142213344573975 +illusion_1.5L,target,38,15.2,velocity,upper_uy,0.4391252100467682 +illusion_1.5L,target,38,15.2,velocity,center_ux,1.018553614616394 +illusion_1.5L,target,38,15.2,velocity,center_uy,0.8211995959281921 +illusion_1.5L,target,38,15.2,velocity,lower_ux,1.2864269018173218 +illusion_1.5L,target,38,15.2,velocity,lower_uy,0.6039900779724121 +illusion_1.5L,target,39,15.6,velocity,upper_ux,0.532482922077179 +illusion_1.5L,target,39,15.6,velocity,upper_uy,0.2754115164279938 +illusion_1.5L,target,39,15.6,velocity,center_ux,0.9786035418510437 +illusion_1.5L,target,39,15.6,velocity,center_uy,0.6668805480003357 +illusion_1.5L,target,39,15.6,velocity,lower_ux,1.3803868293762207 +illusion_1.5L,target,39,15.6,velocity,lower_uy,0.6102895736694336 +illusion_1.5L,target,40,16.0,velocity,upper_ux,0.48331546783447266 +illusion_1.5L,target,40,16.0,velocity,upper_uy,0.049496129155159 +illusion_1.5L,target,40,16.0,velocity,center_ux,0.9085391163825989 +illusion_1.5L,target,40,16.0,velocity,center_uy,0.36754652857780457 +illusion_1.5L,target,40,16.0,velocity,lower_ux,1.465060830116272 +illusion_1.5L,target,40,16.0,velocity,lower_uy,0.5716601610183716 +illusion_1.5L,target,41,16.4,velocity,upper_ux,0.4861675202846527 +illusion_1.5L,target,41,16.4,velocity,upper_uy,-0.18571588397026062 +illusion_1.5L,target,41,16.4,velocity,center_ux,0.8393099904060364 +illusion_1.5L,target,41,16.4,velocity,center_uy,-0.024189267307519913 +illusion_1.5L,target,41,16.4,velocity,lower_ux,1.4695656299591064 +illusion_1.5L,target,41,16.4,velocity,lower_uy,0.39468151330947876 +illusion_1.5L,target,42,16.8,velocity,upper_ux,0.5496525168418884 +illusion_1.5L,target,42,16.8,velocity,upper_uy,-0.35614249110221863 +illusion_1.5L,target,42,16.8,velocity,center_ux,0.8005744218826294 +illusion_1.5L,target,42,16.8,velocity,center_uy,-0.4304296374320984 +illusion_1.5L,target,42,16.8,velocity,lower_ux,1.339772343635559 +illusion_1.5L,target,42,16.8,velocity,lower_uy,0.028362348675727844 +illusion_1.5L,target,43,17.2,velocity,upper_ux,0.6530740261077881 +illusion_1.5L,target,43,17.2,velocity,upper_uy,-0.429389089345932 +illusion_1.5L,target,43,17.2,velocity,center_ux,0.8080600500106812 +illusion_1.5L,target,43,17.2,velocity,center_uy,-0.6999481320381165 +illusion_1.5L,target,43,17.2,velocity,lower_ux,1.1609781980514526 +illusion_1.5L,target,43,17.2,velocity,lower_uy,-0.35310065746307373 +illusion_1.5L,target,44,17.6,velocity,upper_ux,0.7540752291679382 +illusion_1.5L,target,44,17.6,velocity,upper_uy,-0.4620918929576874 +illusion_1.5L,target,44,17.6,velocity,center_ux,0.8490071892738342 +illusion_1.5L,target,44,17.6,velocity,center_uy,-0.7517885565757751 +illusion_1.5L,target,44,17.6,velocity,lower_ux,1.0422008037567139 +illusion_1.5L,target,44,17.6,velocity,lower_uy,-0.5330381393432617 +illusion_1.5L,target,45,18.0,velocity,upper_ux,0.8404710292816162 +illusion_1.5L,target,45,18.0,velocity,upper_uy,-0.4896075129508972 +illusion_1.5L,target,45,18.0,velocity,center_ux,0.8916160464286804 +illusion_1.5L,target,45,18.0,velocity,center_uy,-0.7252398133277893 +illusion_1.5L,target,45,18.0,velocity,lower_ux,0.9834948778152466 +illusion_1.5L,target,45,18.0,velocity,lower_uy,-0.5495426654815674 +illusion_1.5L,target,46,18.4,velocity,upper_ux,0.918536901473999 +illusion_1.5L,target,46,18.4,velocity,upper_uy,-0.512923538684845 +illusion_1.5L,target,46,18.4,velocity,center_ux,0.9257161021232605 +illusion_1.5L,target,46,18.4,velocity,center_uy,-0.7151864767074585 +illusion_1.5L,target,46,18.4,velocity,lower_ux,0.9407516717910767 +illusion_1.5L,target,46,18.4,velocity,lower_uy,-0.5389531254768372 +illusion_1.5L,target,47,18.8,velocity,upper_ux,0.9922474026679993 +illusion_1.5L,target,47,18.8,velocity,upper_uy,-0.533616840839386 +illusion_1.5L,target,47,18.8,velocity,center_ux,0.9544910192489624 +illusion_1.5L,target,47,18.8,velocity,center_uy,-0.7256320118904114 +illusion_1.5L,target,47,18.8,velocity,lower_ux,0.8951177000999451 +illusion_1.5L,target,47,18.8,velocity,lower_uy,-0.540273129940033 +illusion_1.5L,target,48,19.2,velocity,upper_ux,1.063452124595642 +illusion_1.5L,target,48,19.2,velocity,upper_uy,-0.5532081723213196 +illusion_1.5L,target,48,19.2,velocity,center_ux,0.979770839214325 +illusion_1.5L,target,48,19.2,velocity,center_uy,-0.7544214725494385 +illusion_1.5L,target,48,19.2,velocity,lower_ux,0.8411685824394226 +illusion_1.5L,target,48,19.2,velocity,lower_uy,-0.5474644303321838 +illusion_1.5L,target,49,19.6,velocity,upper_ux,1.1344220638275146 +illusion_1.5L,target,49,19.6,velocity,upper_uy,-0.5721471905708313 +illusion_1.5L,target,49,19.6,velocity,center_ux,1.002203106880188 +illusion_1.5L,target,49,19.6,velocity,center_uy,-0.7984687089920044 +illusion_1.5L,target,49,19.6,velocity,lower_ux,0.7734258770942688 +illusion_1.5L,target,49,19.6,velocity,lower_uy,-0.5475155711174011 +illusion_1.5L,target,50,20.0,velocity,upper_ux,1.2100014686584473 +illusion_1.5L,target,50,20.0,velocity,upper_uy,-0.5900886654853821 +illusion_1.5L,target,50,20.0,velocity,center_ux,1.0190335512161255 +illusion_1.5L,target,50,20.0,velocity,center_uy,-0.8386068940162659 +illusion_1.5L,target,50,20.0,velocity,lower_ux,0.6906594038009644 +illusion_1.5L,target,50,20.0,velocity,lower_uy,-0.5166698694229126 +illusion_1.5L,target,51,20.4,velocity,upper_ux,1.295468807220459 +illusion_1.5L,target,51,20.4,velocity,upper_uy,-0.6052954792976379 +illusion_1.5L,target,51,20.4,velocity,center_ux,1.014593482017517 +illusion_1.5L,target,51,20.4,velocity,center_uy,-0.8107969760894775 +illusion_1.5L,target,51,20.4,velocity,lower_ux,0.6010190844535828 +illusion_1.5L,target,51,20.4,velocity,lower_uy,-0.4232429563999176 +illusion_1.5L,target,52,20.8,velocity,upper_ux,1.3922561407089233 +illusion_1.5L,target,52,20.8,velocity,upper_uy,-0.6092348694801331 +illusion_1.5L,target,52,20.8,velocity,center_ux,0.9722931385040283 +illusion_1.5L,target,52,20.8,velocity,center_uy,-0.6375720500946045 +illusion_1.5L,target,52,20.8,velocity,lower_ux,0.5243855118751526 +illusion_1.5L,target,52,20.8,velocity,lower_uy,-0.25063973665237427 +illusion_1.5L,target,53,21.2,velocity,upper_ux,1.4739383459091187 +illusion_1.5L,target,53,21.2,velocity,upper_uy,-0.5601369738578796 +illusion_1.5L,target,53,21.2,velocity,center_ux,0.9020266532897949 +illusion_1.5L,target,53,21.2,velocity,center_uy,-0.32402974367141724 +illusion_1.5L,target,53,21.2,velocity,lower_ux,0.48251932859420776 +illusion_1.5L,target,53,21.2,velocity,lower_uy,-0.019948622211813927 +illusion_1.5L,target,54,21.6,velocity,upper_ux,1.4616742134094238 +illusion_1.5L,target,54,21.6,velocity,upper_uy,-0.35942667722702026 +illusion_1.5L,target,54,21.6,velocity,center_ux,0.8334861993789673 +illusion_1.5L,target,54,21.6,velocity,center_uy,0.07555611431598663 +illusion_1.5L,target,54,21.6,velocity,lower_ux,0.4916337728500366 +illusion_1.5L,target,54,21.6,velocity,lower_uy,0.21169954538345337 +illusion_1.5L,target,55,22.0,velocity,upper_ux,1.315882682800293 +illusion_1.5L,target,55,22.0,velocity,upper_uy,0.02285093627870083 +illusion_1.5L,target,55,22.0,velocity,center_ux,0.7971436977386475 +illusion_1.5L,target,55,22.0,velocity,center_uy,0.4744340777397156 +illusion_1.5L,target,55,22.0,velocity,lower_ux,0.5595261454582214 +illusion_1.5L,target,55,22.0,velocity,lower_uy,0.3696512281894684 +illusion_1.5L,target,56,22.4,velocity,upper_ux,1.1397888660430908 +illusion_1.5L,target,56,22.4,velocity,upper_uy,0.38743072748184204 +illusion_1.5L,target,56,22.4,velocity,center_ux,0.8090705871582031 +illusion_1.5L,target,56,22.4,velocity,center_uy,0.7166792154312134 +illusion_1.5L,target,56,22.4,velocity,lower_ux,0.6635412573814392 +illusion_1.5L,target,56,22.4,velocity,lower_uy,0.4339431822299957 +illusion_1.5L,target,57,22.8,velocity,upper_ux,1.0317953824996948 +illusion_1.5L,target,57,22.8,velocity,upper_uy,0.5409494638442993 +illusion_1.5L,target,57,22.8,velocity,center_ux,0.8532017469406128 +illusion_1.5L,target,57,22.8,velocity,center_uy,0.7496845126152039 +illusion_1.5L,target,57,22.8,velocity,lower_ux,0.7640023231506348 +illusion_1.5L,target,57,22.8,velocity,lower_uy,0.4654109477996826 +illusion_1.5L,target,58,23.2,velocity,upper_ux,0.9796077609062195 +illusion_1.5L,target,58,23.2,velocity,upper_uy,0.5486148595809937 +illusion_1.5L,target,58,23.2,velocity,center_ux,0.8974055647850037 +illusion_1.5L,target,58,23.2,velocity,center_uy,0.7231324911117554 +illusion_1.5L,target,58,23.2,velocity,lower_ux,0.8516284227371216 +illusion_1.5L,target,58,23.2,velocity,lower_uy,0.4925093948841095 +illusion_1.5L,target,59,23.6,velocity,upper_ux,0.9375194311141968 +illusion_1.5L,target,59,23.6,velocity,upper_uy,0.5390927195549011 +illusion_1.5L,target,59,23.6,velocity,center_ux,0.9314920902252197 +illusion_1.5L,target,59,23.6,velocity,center_uy,0.7158265113830566 +illusion_1.5L,target,59,23.6,velocity,lower_ux,0.9298804402351379 +illusion_1.5L,target,59,23.6,velocity,lower_uy,0.5155165791511536 +illusion_1.5L,target,60,24.0,velocity,upper_ux,0.8888989090919495 +illusion_1.5L,target,60,24.0,velocity,upper_uy,0.5416550040245056 +illusion_1.5L,target,60,24.0,velocity,center_ux,0.9578034281730652 +illusion_1.5L,target,60,24.0,velocity,center_uy,0.7286161780357361 +illusion_1.5L,target,60,24.0,velocity,lower_ux,1.0011570453643799 +illusion_1.5L,target,60,24.0,velocity,lower_uy,0.5360535979270935 +illusion_1.5L,target,61,24.4,velocity,upper_ux,0.8314040303230286 +illusion_1.5L,target,61,24.4,velocity,upper_uy,0.5488860607147217 +illusion_1.5L,target,61,24.4,velocity,center_ux,0.9807030558586121 +illusion_1.5L,target,61,24.4,velocity,center_uy,0.7594034075737 +illusion_1.5L,target,61,24.4,velocity,lower_ux,1.069896936416626 +illusion_1.5L,target,61,24.4,velocity,lower_uy,0.5555416345596313 +illusion_1.5L,target,62,24.8,velocity,upper_ux,0.7620391249656677 +illusion_1.5L,target,62,24.8,velocity,upper_uy,0.5468629598617554 +illusion_1.5L,target,62,24.8,velocity,center_ux,1.0029855966567993 +illusion_1.5L,target,62,24.8,velocity,center_uy,0.804318368434906 +illusion_1.5L,target,62,24.8,velocity,lower_ux,1.1410456895828247 +illusion_1.5L,target,62,24.8,velocity,lower_uy,0.5744358897209167 +illusion_1.5L,target,63,25.2,velocity,upper_ux,0.6800330281257629 +illusion_1.5L,target,63,25.2,velocity,upper_uy,0.5102512836456299 +illusion_1.5L,target,63,25.2,velocity,center_ux,1.0204676389694214 +illusion_1.5L,target,63,25.2,velocity,center_uy,0.8406356573104858 +illusion_1.5L,target,63,25.2,velocity,lower_ux,1.219552755355835 +illusion_1.5L,target,63,25.2,velocity,lower_uy,0.5923166275024414 +illusion_1.5L,target,64,25.6,velocity,upper_ux,0.5927914977073669 +illusion_1.5L,target,64,25.6,velocity,upper_uy,0.40724286437034607 +illusion_1.5L,target,64,25.6,velocity,center_ux,1.0138838291168213 +illusion_1.5L,target,64,25.6,velocity,center_uy,0.7988332509994507 +illusion_1.5L,target,64,25.6,velocity,lower_ux,1.3087518215179443 +illusion_1.5L,target,64,25.6,velocity,lower_uy,0.6071364283561707 +illusion_1.5L,target,65,26.0,velocity,upper_ux,0.5185208320617676 +illusion_1.5L,target,65,26.0,velocity,upper_uy,0.22494445741176605 +illusion_1.5L,target,65,26.0,velocity,center_ux,0.9660323858261108 +illusion_1.5L,target,65,26.0,velocity,center_uy,0.6062348484992981 +illusion_1.5L,target,65,26.0,velocity,lower_ux,1.4057856798171997 +illusion_1.5L,target,65,26.0,velocity,lower_uy,0.608171284198761 +illusion_1.5L,target,66,26.4,velocity,upper_ux,0.4796491861343384 +illusion_1.5L,target,66,26.4,velocity,upper_uy,-0.009847436100244522 +illusion_1.5L,target,66,26.4,velocity,center_ux,0.8916716575622559 +illusion_1.5L,target,66,26.4,velocity,center_uy,0.2786974608898163 +illusion_1.5L,target,66,26.4,velocity,lower_ux,1.4784290790557861 +illusion_1.5L,target,66,26.4,velocity,lower_uy,0.5461298823356628 +illusion_1.5L,target,67,26.8,velocity,upper_ux,0.4944903552532196 +illusion_1.5L,target,67,26.8,velocity,upper_uy,-0.23619629442691803 +illusion_1.5L,target,67,26.8,velocity,center_ux,0.8246009349822998 +illusion_1.5L,target,67,26.8,velocity,center_uy,-0.1262744963169098 +illusion_1.5L,target,67,26.8,velocity,lower_ux,1.4478121995925903 +illusion_1.5L,target,67,26.8,velocity,lower_uy,0.32043564319610596 +illusion_1.5L,target,68,27.2,velocity,upper_ux,0.5696474313735962 +illusion_1.5L,target,68,27.2,velocity,upper_uy,-0.3817058205604553 +illusion_1.5L,target,68,27.2,velocity,center_ux,0.7950844764709473 +illusion_1.5L,target,68,27.2,velocity,center_uy,-0.514844536781311 +illusion_1.5L,target,68,27.2,velocity,lower_ux,1.2921061515808105 +illusion_1.5L,target,68,27.2,velocity,lower_uy,-0.07422074675559998 +illusion_1.5L,target,69,27.6,velocity,upper_ux,0.6773664355278015 +illusion_1.5L,target,69,27.6,velocity,upper_uy,-0.4386036992073059 +illusion_1.5L,target,69,27.6,velocity,center_ux,0.8149601817131042 +illusion_1.5L,target,69,27.6,velocity,center_uy,-0.7298902273178101 +illusion_1.5L,target,69,27.6,velocity,lower_ux,1.1241732835769653 +illusion_1.5L,target,69,27.6,velocity,lower_uy,-0.4189365804195404 +illusion_1.5L,target,70,28.0,velocity,upper_ux,0.7775222659111023 +illusion_1.5L,target,70,28.0,velocity,upper_uy,-0.46916618943214417 +illusion_1.5L,target,70,28.0,velocity,center_ux,0.8616695404052734 +illusion_1.5L,target,70,28.0,velocity,center_uy,-0.7468485832214355 +illusion_1.5L,target,70,28.0,velocity,lower_ux,1.0263762474060059 +illusion_1.5L,target,70,28.0,velocity,lower_uy,-0.5467720031738281 +illusion_1.5L,target,71,28.4,velocity,upper_ux,0.8622478246688843 +illusion_1.5L,target,71,28.4,velocity,upper_uy,-0.4957258701324463 +illusion_1.5L,target,71,28.4,velocity,center_ux,0.9029808044433594 +illusion_1.5L,target,71,28.4,velocity,center_uy,-0.7212244272232056 +illusion_1.5L,target,71,28.4,velocity,lower_ux,0.9755497574806213 +illusion_1.5L,target,71,28.4,velocity,lower_uy,-0.5472063422203064 +illusion_1.5L,target,72,28.8,velocity,upper_ux,0.9371721744537354 +illusion_1.5L,target,72,28.8,velocity,upper_uy,-0.5182385444641113 +illusion_1.5L,target,72,28.8,velocity,center_ux,0.9336348176002502 +illusion_1.5L,target,72,28.8,velocity,center_uy,-0.7164909839630127 +illusion_1.5L,target,72,28.8,velocity,lower_ux,0.930694580078125 +illusion_1.5L,target,72,28.8,velocity,lower_uy,-0.5390428304672241 +illusion_1.5L,target,73,29.2,velocity,upper_ux,1.0074905157089233 +illusion_1.5L,target,73,29.2,velocity,upper_uy,-0.5385470986366272 +illusion_1.5L,target,73,29.2,velocity,center_ux,0.9589815735816956 +illusion_1.5L,target,73,29.2,velocity,center_uy,-0.7314088344573975 +illusion_1.5L,target,73,29.2,velocity,lower_ux,0.8809604048728943 +illusion_1.5L,target,73,29.2,velocity,lower_uy,-0.5427118539810181 +illusion_1.5L,target,74,29.6,velocity,upper_ux,1.0780463218688965 +illusion_1.5L,target,74,29.6,velocity,upper_uy,-0.5579439997673035 +illusion_1.5L,target,74,29.6,velocity,center_ux,0.9834263324737549 +illusion_1.5L,target,74,29.6,velocity,center_uy,-0.764101505279541 +illusion_1.5L,target,74,29.6,velocity,lower_ux,0.8241751790046692 +illusion_1.5L,target,74,29.6,velocity,lower_uy,-0.549705982208252 +illusion_1.5L,target,75,30.0,velocity,upper_ux,1.1521766185760498 +illusion_1.5L,target,75,30.0,velocity,upper_uy,-0.5767964720726013 +illusion_1.5L,target,75,30.0,velocity,center_ux,1.0075920820236206 +illusion_1.5L,target,75,30.0,velocity,center_uy,-0.8099793195724487 +illusion_1.5L,target,75,30.0,velocity,lower_ux,0.7554173469543457 +illusion_1.5L,target,75,30.0,velocity,lower_uy,-0.5449663400650024 +illusion_1.5L,target,76,30.4,velocity,upper_ux,1.231984257698059 +illusion_1.5L,target,76,30.4,velocity,upper_uy,-0.5944877862930298 +illusion_1.5L,target,76,30.4,velocity,center_ux,1.0230602025985718 +illusion_1.5L,target,76,30.4,velocity,center_uy,-0.8417986035346985 +illusion_1.5L,target,76,30.4,velocity,lower_ux,0.6717905402183533 +illusion_1.5L,target,76,30.4,velocity,lower_uy,-0.501579761505127 +illusion_1.5L,target,77,30.8,velocity,upper_ux,1.3204383850097656 +illusion_1.5L,target,77,30.8,velocity,upper_uy,-0.6083678603172302 +illusion_1.5L,target,77,30.8,velocity,center_ux,1.0094008445739746 +illusion_1.5L,target,77,30.8,velocity,center_uy,-0.783731997013092 +illusion_1.5L,target,77,30.8,velocity,lower_ux,0.5825624465942383 +illusion_1.5L,target,77,30.8,velocity,lower_uy,-0.3885326087474823 +illusion_1.5L,target,78,31.2,velocity,upper_ux,1.4156368970870972 +illusion_1.5L,target,78,31.2,velocity,upper_uy,-0.605251133441925 +illusion_1.5L,target,78,31.2,velocity,center_ux,0.9554716348648071 +illusion_1.5L,target,78,31.2,velocity,center_uy,-0.5715380311012268 +illusion_1.5L,target,78,31.2,velocity,lower_ux,0.5099460482597351 +illusion_1.5L,target,78,31.2,velocity,lower_uy,-0.19772183895111084 +illusion_1.5L,target,79,31.6,velocity,upper_ux,1.4809211492538452 +illusion_1.5L,target,79,31.6,velocity,upper_uy,-0.5287177562713623 +illusion_1.5L,target,79,31.6,velocity,center_ux,0.8811743259429932 +illusion_1.5L,target,79,31.6,velocity,center_uy,-0.23153387010097504 +illusion_1.5L,target,79,31.6,velocity,lower_ux,0.4774608612060547 +illusion_1.5L,target,79,31.6,velocity,lower_uy,0.039456382393836975 +illusion_1.5L,target,80,32.0,velocity,upper_ux,1.435530424118042 +illusion_1.5L,target,80,32.0,velocity,upper_uy,-0.2782469391822815 +illusion_1.5L,target,80,32.0,velocity,center_ux,0.8197262287139893 +illusion_1.5L,target,80,32.0,velocity,center_uy,0.17795591056346893 +illusion_1.5L,target,80,32.0,velocity,lower_ux,0.5018829703330994 +illusion_1.5L,target,80,32.0,velocity,lower_uy,0.2595602869987488 +illusion_1.5L,target,81,32.4,velocity,upper_ux,1.271714687347412 +illusion_1.5L,target,81,32.4,velocity,upper_uy,0.1254480928182602 +illusion_1.5L,target,81,32.4,velocity,center_ux,0.7976417541503906 +illusion_1.5L,target,81,32.4,velocity,center_uy,0.5542917847633362 +illusion_1.5L,target,81,32.4,velocity,lower_ux,0.5848919749259949 +illusion_1.5L,target,81,32.4,velocity,lower_uy,0.3925199508666992 +illusion_1.5L,target,82,32.8,velocity,upper_ux,1.1087217330932617 +illusion_1.5L,target,82,32.8,velocity,upper_uy,0.446746289730072 +illusion_1.5L,target,82,32.8,velocity,center_ux,0.8214685320854187 +illusion_1.5L,target,82,32.8,velocity,center_uy,0.7400445342063904 +illusion_1.5L,target,82,32.8,velocity,lower_ux,0.6921097636222839 +illusion_1.5L,target,82,32.8,velocity,lower_uy,0.4428757429122925 +illusion_1.5L,target,83,33.2,velocity,upper_ux,1.0170687437057495 +illusion_1.5L,target,83,33.2,velocity,upper_uy,0.5495573878288269 +illusion_1.5L,target,83,33.2,velocity,center_ux,0.8664202690124512 +illusion_1.5L,target,83,33.2,velocity,center_uy,0.742754340171814 +illusion_1.5L,target,83,33.2,velocity,lower_ux,0.7877613306045532 +illusion_1.5L,target,83,33.2,velocity,lower_uy,0.4727330803871155 +illusion_1.5L,target,84,33.6,velocity,upper_ux,0.9681211709976196 +illusion_1.5L,target,84,33.6,velocity,upper_uy,0.5447389483451843 +illusion_1.5L,target,84,33.6,velocity,center_ux,0.9054643511772156 +illusion_1.5L,target,84,33.6,velocity,center_uy,0.7189684510231018 +illusion_1.5L,target,84,33.6,velocity,lower_ux,0.8701476454734802 +illusion_1.5L,target,84,33.6,velocity,lower_uy,0.498686283826828 +illusion_1.5L,target,85,34.0,velocity,upper_ux,0.9244312047958374 +illusion_1.5L,target,85,34.0,velocity,upper_uy,0.5382290482521057 +illusion_1.5L,target,85,34.0,velocity,center_ux,0.9365411400794983 +illusion_1.5L,target,85,34.0,velocity,center_uy,0.7168892621994019 +illusion_1.5L,target,85,34.0,velocity,lower_ux,0.9456290602684021 +illusion_1.5L,target,85,34.0,velocity,lower_uy,0.5207800269126892 +illusion_1.5L,target,86,34.4,velocity,upper_ux,0.8761681318283081 +illusion_1.5L,target,86,34.4,velocity,upper_uy,0.542850136756897 +illusion_1.5L,target,86,34.4,velocity,center_ux,0.9636691212654114 +illusion_1.5L,target,86,34.4,velocity,center_uy,0.7341408729553223 +illusion_1.5L,target,86,34.4,velocity,lower_ux,1.017979621887207 +illusion_1.5L,target,86,34.4,velocity,lower_uy,0.540925145149231 +illusion_1.5L,target,87,34.8,velocity,upper_ux,0.8182544708251953 +illusion_1.5L,target,87,34.8,velocity,upper_uy,0.5493787527084351 +illusion_1.5L,target,87,34.8,velocity,center_ux,0.9883342981338501 +illusion_1.5L,target,87,34.8,velocity,center_uy,0.7691710591316223 +illusion_1.5L,target,87,34.8,velocity,lower_ux,1.0892122983932495 +illusion_1.5L,target,87,34.8,velocity,lower_uy,0.5602716207504272 +illusion_1.5L,target,88,35.2,velocity,upper_ux,0.7453645467758179 +illusion_1.5L,target,88,35.2,velocity,upper_uy,0.5415257811546326 +illusion_1.5L,target,88,35.2,velocity,center_ux,1.0100858211517334 +illusion_1.5L,target,88,35.2,velocity,center_uy,0.8158228993415833 +illusion_1.5L,target,88,35.2,velocity,lower_ux,1.1618812084197998 +illusion_1.5L,target,88,35.2,velocity,lower_uy,0.578951358795166 +illusion_1.5L,target,89,35.6,velocity,upper_ux,0.6584118604660034 +illusion_1.5L,target,89,35.6,velocity,upper_uy,0.49116355180740356 +illusion_1.5L,target,89,35.6,velocity,center_ux,1.0215717554092407 +illusion_1.5L,target,89,35.6,velocity,center_uy,0.8412914276123047 +illusion_1.5L,target,89,35.6,velocity,lower_ux,1.2406083345413208 +illusion_1.5L,target,89,35.6,velocity,lower_uy,0.5962262749671936 +illusion_1.5L,target,90,36.0,velocity,upper_ux,0.5703376531600952 +illusion_1.5L,target,90,36.0,velocity,upper_uy,0.36871087551116943 +illusion_1.5L,target,90,36.0,velocity,center_ux,1.003575086593628 +illusion_1.5L,target,90,36.0,velocity,center_uy,0.7659392356872559 +illusion_1.5L,target,90,36.0,velocity,lower_ux,1.3303340673446655 +illusion_1.5L,target,90,36.0,velocity,lower_uy,0.6090982556343079 +illusion_1.5L,target,91,36.4,velocity,upper_ux,0.5035567283630371 +illusion_1.5L,target,91,36.4,velocity,upper_uy,0.17016372084617615 +illusion_1.5L,target,91,36.4,velocity,center_ux,0.9476860761642456 +illusion_1.5L,target,91,36.4,velocity,center_uy,0.5357404947280884 +illusion_1.5L,target,91,36.4,velocity,lower_ux,1.4268263578414917 +illusion_1.5L,target,91,36.4,velocity,lower_uy,0.6015356183052063 +illusion_1.5L,target,92,36.8,velocity,upper_ux,0.47897452116012573 +illusion_1.5L,target,92,36.8,velocity,upper_uy,-0.06899480521678925 +illusion_1.5L,target,92,36.8,velocity,center_ux,0.8745019435882568 +illusion_1.5L,target,92,36.8,velocity,center_uy,0.18375401198863983 +illusion_1.5L,target,92,36.8,velocity,lower_ux,1.4848231077194214 +illusion_1.5L,target,92,36.8,velocity,lower_uy,0.5093362927436829 +illusion_1.5L,target,93,37.2,velocity,upper_ux,0.5103278756141663 +illusion_1.5L,target,93,37.2,velocity,upper_uy,-0.2817629873752594 +illusion_1.5L,target,93,37.2,velocity,center_ux,0.8154090642929077 +illusion_1.5L,target,93,37.2,velocity,center_uy,-0.22959564626216888 +illusion_1.5L,target,93,37.2,velocity,lower_ux,1.4211543798446655 +illusion_1.5L,target,93,37.2,velocity,lower_uy,0.2339261770248413 +illusion_1.5L,target,94,37.6,velocity,upper_ux,0.5967348217964172 +illusion_1.5L,target,94,37.6,velocity,upper_uy,-0.4016554355621338 +illusion_1.5L,target,94,37.6,velocity,center_ux,0.79674232006073 +illusion_1.5L,target,94,37.6,velocity,center_uy,-0.5903002023696899 +illusion_1.5L,target,94,37.6,velocity,lower_ux,1.2475522756576538 +illusion_1.5L,target,94,37.6,velocity,lower_uy,-0.17437362670898438 +illusion_1.5L,target,95,38.0,velocity,upper_ux,0.7026460766792297 +illusion_1.5L,target,95,38.0,velocity,upper_uy,-0.4465441405773163 +illusion_1.5L,target,95,38.0,velocity,center_ux,0.8241075873374939 +illusion_1.5L,target,95,38.0,velocity,center_uy,-0.7470300197601318 +illusion_1.5L,target,95,38.0,velocity,lower_ux,1.0911999940872192 +illusion_1.5L,target,95,38.0,velocity,lower_uy,-0.4703257083892822 +illusion_1.5L,target,96,38.4,velocity,upper_ux,0.7974006533622742 +illusion_1.5L,target,96,38.4,velocity,upper_uy,-0.4759288728237152 +illusion_1.5L,target,96,38.4,velocity,center_ux,0.8705010414123535 +illusion_1.5L,target,96,38.4,velocity,center_uy,-0.7392133474349976 +illusion_1.5L,target,96,38.4,velocity,lower_ux,1.0087052583694458 +illusion_1.5L,target,96,38.4,velocity,lower_uy,-0.5517088174819946 +illusion_1.5L,target,97,38.8,velocity,upper_ux,0.8808730244636536 +illusion_1.5L,target,97,38.8,velocity,upper_uy,-0.5014137625694275 +illusion_1.5L,target,97,38.8,velocity,center_ux,0.9106099009513855 +illusion_1.5L,target,97,38.8,velocity,center_uy,-0.7177069187164307 +illusion_1.5L,target,97,38.8,velocity,lower_ux,0.9639406800270081 +illusion_1.5L,target,97,38.8,velocity,lower_uy,-0.5435524582862854 +illusion_1.5L,target,98,39.2,velocity,upper_ux,0.956595242023468 +illusion_1.5L,target,98,39.2,velocity,upper_uy,-0.5232716798782349 +illusion_1.5L,target,98,39.2,velocity,center_ux,0.9417713284492493 +illusion_1.5L,target,98,39.2,velocity,center_uy,-0.718232274055481 +illusion_1.5L,target,98,39.2,velocity,lower_ux,0.9204652309417725 +illusion_1.5L,target,98,39.2,velocity,lower_uy,-0.5386420488357544 +illusion_1.5L,target,99,39.6,velocity,upper_ux,1.0269825458526611 +illusion_1.5L,target,99,39.6,velocity,upper_uy,-0.5433108806610107 +illusion_1.5L,target,99,39.6,velocity,center_ux,0.9668925404548645 +illusion_1.5L,target,99,39.6,velocity,center_uy,-0.7378308176994324 +illusion_1.5L,target,99,39.6,velocity,lower_ux,0.8694244623184204 +illusion_1.5L,target,99,39.6,velocity,lower_uy,-0.5441157817840576 +illusion_1.5L,target,100,40.0,velocity,upper_ux,1.096163272857666 +illusion_1.5L,target,100,40.0,velocity,upper_uy,-0.5625635385513306 +illusion_1.5L,target,100,40.0,velocity,center_ux,0.9894924759864807 +illusion_1.5L,target,100,40.0,velocity,center_uy,-0.7747528553009033 +illusion_1.5L,target,100,40.0,velocity,lower_ux,0.8079732656478882 +illusion_1.5L,target,100,40.0,velocity,lower_uy,-0.5500401854515076 +illusion_1.5L,target,101,40.4,velocity,upper_ux,1.169129490852356 +illusion_1.5L,target,101,40.4,velocity,upper_uy,-0.5811666250228882 +illusion_1.5L,target,101,40.4,velocity,center_ux,1.0108073949813843 +illusion_1.5L,target,101,40.4,velocity,center_uy,-0.8212241530418396 +illusion_1.5L,target,101,40.4,velocity,lower_ux,0.7332895398139954 +illusion_1.5L,target,101,40.4,velocity,lower_uy,-0.5388835072517395 +illusion_1.5L,target,102,40.8,velocity,upper_ux,1.2506390810012817 +illusion_1.5L,target,102,40.8,velocity,upper_uy,-0.598283588886261 +illusion_1.5L,target,102,40.8,velocity,center_ux,1.0217289924621582 +illusion_1.5L,target,102,40.8,velocity,center_uy,-0.8393677473068237 +illusion_1.5L,target,102,40.8,velocity,lower_ux,0.6471878886222839 +illusion_1.5L,target,102,40.8,velocity,lower_uy,-0.48124533891677856 +illusion_1.5L,target,103,41.2,velocity,upper_ux,1.3437260389328003 +illusion_1.5L,target,103,41.2,velocity,upper_uy,-0.6102969646453857 +illusion_1.5L,target,103,41.2,velocity,center_ux,1.0006320476531982 +illusion_1.5L,target,103,41.2,velocity,center_uy,-0.7465829253196716 +illusion_1.5L,target,103,41.2,velocity,lower_ux,0.5622127056121826 +illusion_1.5L,target,103,41.2,velocity,lower_uy,-0.3487401604652405 +illusion_1.5L,target,104,41.6,velocity,upper_ux,1.438941478729248 +illusion_1.5L,target,104,41.6,velocity,upper_uy,-0.5973823666572571 +illusion_1.5L,target,104,41.6,velocity,center_ux,0.9402772784233093 +illusion_1.5L,target,104,41.6,velocity,center_uy,-0.4984355568885803 +illusion_1.5L,target,104,41.6,velocity,lower_ux,0.4990459084510803 +illusion_1.5L,target,104,41.6,velocity,lower_uy,-0.14200787246227264 +illusion_1.5L,target,105,42.0,velocity,upper_ux,1.483904242515564 +illusion_1.5L,target,105,42.0,velocity,upper_uy,-0.4869751036167145 +illusion_1.5L,target,105,42.0,velocity,center_ux,0.8648690581321716 +illusion_1.5L,target,105,42.0,velocity,center_uy,-0.13513237237930298 +illusion_1.5L,target,105,42.0,velocity,lower_ux,0.478596955537796 +illusion_1.5L,target,105,42.0,velocity,lower_uy,0.09819041937589645 +illusion_1.5L,target,106,42.4,velocity,upper_ux,1.401465892791748 +illusion_1.5L,target,106,42.4,velocity,upper_uy,-0.1870637685060501 +illusion_1.5L,target,106,42.4,velocity,center_ux,0.8085439205169678 +illusion_1.5L,target,106,42.4,velocity,center_uy,0.2791784703731537 +illusion_1.5L,target,106,42.4,velocity,lower_ux,0.5160889625549316 +illusion_1.5L,target,106,42.4,velocity,lower_uy,0.30210328102111816 +illusion_1.5L,target,107,42.8,velocity,upper_ux,1.2243335247039795 +illusion_1.5L,target,107,42.8,velocity,upper_uy,0.22137950360774994 +illusion_1.5L,target,107,42.8,velocity,center_ux,0.7968257665634155 +illusion_1.5L,target,107,42.8,velocity,center_uy,0.6217499375343323 +illusion_1.5L,target,107,42.8,velocity,lower_ux,0.6080456972122192 +illusion_1.5L,target,107,42.8,velocity,lower_uy,0.4097598195075989 +illusion_1.5L,target,108,43.2,velocity,upper_ux,1.0788949728012085 +illusion_1.5L,target,108,43.2,velocity,upper_uy,0.49090591073036194 +illusion_1.5L,target,108,43.2,velocity,center_ux,0.8305039405822754 +illusion_1.5L,target,108,43.2,velocity,center_uy,0.7515431046485901 +illusion_1.5L,target,108,43.2,velocity,lower_ux,0.7156132459640503 +illusion_1.5L,target,108,43.2,velocity,lower_uy,0.45045897364616394 +illusion_1.5L,target,109,43.6,velocity,upper_ux,1.0046614408493042 +illusion_1.5L,target,109,43.6,velocity,upper_uy,0.5530059933662415 +illusion_1.5L,target,109,43.6,velocity,center_ux,0.8779957294464111 +illusion_1.5L,target,109,43.6,velocity,center_uy,0.7359492778778076 +illusion_1.5L,target,109,43.6,velocity,lower_ux,0.8099278211593628 +illusion_1.5L,target,109,43.6,velocity,lower_uy,0.47940775752067566 +illusion_1.5L,target,110,44.0,velocity,upper_ux,0.9597007036209106 +illusion_1.5L,target,110,44.0,velocity,upper_uy,0.5426933169364929 +illusion_1.5L,target,110,44.0,velocity,center_ux,0.9155197143554688 +illusion_1.5L,target,110,44.0,velocity,center_uy,0.7169708013534546 +illusion_1.5L,target,110,44.0,velocity,lower_ux,0.8910088539123535 +illusion_1.5L,target,110,44.0,velocity,lower_uy,0.5043718218803406 +illusion_1.5L,target,111,44.4,velocity,upper_ux,0.9134589433670044 +illusion_1.5L,target,111,44.4,velocity,upper_uy,0.5393712520599365 +illusion_1.5L,target,111,44.4,velocity,center_ux,0.9437874555587769 +illusion_1.5L,target,111,44.4,velocity,center_uy,0.7198650240898132 +illusion_1.5L,target,111,44.4,velocity,lower_ux,0.9638654589653015 +illusion_1.5L,target,111,44.4,velocity,lower_uy,0.5258662104606628 +illusion_1.5L,target,112,44.8,velocity,upper_ux,0.8611695766448975 +illusion_1.5L,target,112,44.8,velocity,upper_uy,0.545520007610321 +illusion_1.5L,target,112,44.8,velocity,center_ux,0.9681388139724731 +illusion_1.5L,target,112,44.8,velocity,center_uy,0.7415227293968201 +illusion_1.5L,target,112,44.8,velocity,lower_ux,1.0334779024124146 +illusion_1.5L,target,112,44.8,velocity,lower_uy,0.5457533597946167 +illusion_1.5L,target,113,45.2,velocity,upper_ux,0.7999567985534668 +illusion_1.5L,target,113,45.2,velocity,upper_uy,0.5505267977714539 +illusion_1.5L,target,113,45.2,velocity,center_ux,0.9921151995658875 +illusion_1.5L,target,113,45.2,velocity,center_uy,0.7801366448402405 +illusion_1.5L,target,113,45.2,velocity,lower_ux,1.1043850183486938 +illusion_1.5L,target,113,45.2,velocity,lower_uy,0.5649505257606506 +illusion_1.5L,target,114,45.6,velocity,upper_ux,0.7255614399909973 +illusion_1.5L,target,114,45.6,velocity,upper_uy,0.5353712439537048 +illusion_1.5L,target,114,45.6,velocity,center_ux,1.0147079229354858 +illusion_1.5L,target,114,45.6,velocity,center_uy,0.8262493014335632 +illusion_1.5L,target,114,45.6,velocity,lower_ux,1.180189847946167 +illusion_1.5L,target,114,45.6,velocity,lower_uy,0.5835039615631104 +illusion_1.5L,target,115,46.0,velocity,upper_ux,0.638490617275238 +illusion_1.5L,target,115,46.0,velocity,upper_uy,0.46946391463279724 +illusion_1.5L,target,115,46.0,velocity,center_ux,1.0226819515228271 +illusion_1.5L,target,115,46.0,velocity,center_uy,0.8359456062316895 +illusion_1.5L,target,115,46.0,velocity,lower_ux,1.2632536888122559 +illusion_1.5L,target,115,46.0,velocity,lower_uy,0.6003457307815552 +illusion_1.5L,target,116,46.4,velocity,upper_ux,0.5529226660728455 +illusion_1.5L,target,116,46.4,velocity,upper_uy,0.32664814591407776 +illusion_1.5L,target,116,46.4,velocity,center_ux,0.9943290948867798 +illusion_1.5L,target,116,46.4,velocity,center_uy,0.7239881753921509 +illusion_1.5L,target,116,46.4,velocity,lower_ux,1.3558244705200195 +illusion_1.5L,target,116,46.4,velocity,lower_uy,0.6108672022819519 +illusion_1.5L,target,117,46.8,velocity,upper_ux,0.4925817549228668 +illusion_1.5L,target,117,46.8,velocity,upper_uy,0.11300366371870041 +illusion_1.5L,target,117,46.8,velocity,center_ux,0.9291657209396362 +illusion_1.5L,target,117,46.8,velocity,center_uy,0.45835137367248535 +illusion_1.5L,target,117,46.8,velocity,lower_ux,1.4474509954452515 +illusion_1.5L,target,117,46.8,velocity,lower_uy,0.5909639000892639 +illusion_1.5L,target,118,47.2,velocity,upper_ux,0.47906094789505005 +illusion_1.5L,target,118,47.2,velocity,upper_uy,-0.12665647268295288 +illusion_1.5L,target,118,47.2,velocity,center_ux,0.8552380204200745 +illusion_1.5L,target,118,47.2,velocity,center_uy,0.08519890904426575 +illusion_1.5L,target,118,47.2,velocity,lower_ux,1.480688452720642 +illusion_1.5L,target,118,47.2,velocity,lower_uy,0.4608331322669983 +illusion_1.5L,target,119,47.6,velocity,upper_ux,0.5259298086166382 +illusion_1.5L,target,119,47.6,velocity,upper_uy,-0.3209911286830902 +illusion_1.5L,target,119,47.6,velocity,center_ux,0.8054752349853516 +illusion_1.5L,target,119,47.6,velocity,center_uy,-0.328634113073349 +illusion_1.5L,target,119,47.6,velocity,lower_ux,1.3834168910980225 +illusion_1.5L,target,119,47.6,velocity,lower_uy,0.13777020573616028 +illusion_1.5L,target,120,48.0,velocity,upper_ux,0.6237049102783203 +illusion_1.5L,target,120,48.0,velocity,upper_uy,-0.41702038049697876 +illusion_1.5L,target,120,48.0,velocity,center_ux,0.801358699798584 +illusion_1.5L,target,120,48.0,velocity,center_uy,-0.6507510542869568 +illusion_1.5L,target,120,48.0,velocity,lower_ux,1.204787254333496 +illusion_1.5L,target,120,48.0,velocity,lower_uy,-0.2668006122112274 +illusion_1.5L,target,121,48.4,velocity,upper_ux,0.7294061779975891 +illusion_1.5L,target,121,48.4,velocity,upper_uy,-0.4543763995170593 +illusion_1.5L,target,121,48.4,velocity,center_ux,0.8377540707588196 +illusion_1.5L,target,121,48.4,velocity,center_uy,-0.753455400466919 +illusion_1.5L,target,121,48.4,velocity,lower_ux,1.067223072052002 +illusion_1.5L,target,121,48.4,velocity,lower_uy,-0.5077361464500427 +illusion_1.5L,target,122,48.8,velocity,upper_ux,0.819692075252533 +illusion_1.5L,target,122,48.8,velocity,upper_uy,-0.4828406274318695 +illusion_1.5L,target,122,48.8,velocity,center_ux,0.8825051188468933 +illusion_1.5L,target,122,48.8,velocity,center_uy,-0.7320241332054138 +illusion_1.5L,target,122,48.8,velocity,lower_ux,0.9973907470703125 +illusion_1.5L,target,122,48.8,velocity,lower_uy,-0.5521553158760071 +illusion_1.5L,target,123,49.2,velocity,upper_ux,0.8987549543380737 +illusion_1.5L,target,123,49.2,velocity,upper_uy,-0.5071989297866821 +illusion_1.5L,target,123,49.2,velocity,center_ux,0.9178823232650757 +illusion_1.5L,target,123,49.2,velocity,center_uy,-0.7158679366111755 +illusion_1.5L,target,123,49.2,velocity,lower_ux,0.9526512026786804 +illusion_1.5L,target,123,49.2,velocity,lower_uy,-0.5408923625946045 +illusion_1.5L,target,124,49.6,velocity,upper_ux,0.9721469879150391 +illusion_1.5L,target,124,49.6,velocity,upper_uy,-0.5283663868904114 +illusion_1.5L,target,124,49.6,velocity,center_ux,0.9465689063072205 +illusion_1.5L,target,124,49.6,velocity,center_uy,-0.7211857438087463 +illusion_1.5L,target,124,49.6,velocity,lower_ux,0.9071166515350342 +illusion_1.5L,target,124,49.6,velocity,lower_uy,-0.5391969084739685 +illusion_1.5L,target,125,50.0,velocity,upper_ux,1.0436499118804932 +illusion_1.5L,target,125,50.0,velocity,upper_uy,-0.5481298565864563 +illusion_1.5L,target,125,50.0,velocity,center_ux,0.9725221991539001 +illusion_1.5L,target,125,50.0,velocity,center_uy,-0.7451080083847046 +illusion_1.5L,target,125,50.0,velocity,lower_ux,0.855845034122467 +illusion_1.5L,target,125,50.0,velocity,lower_uy,-0.5458325147628784 +illusion_1.5L,target,126,50.4,velocity,upper_ux,1.1154208183288574 +illusion_1.5L,target,126,50.4,velocity,upper_uy,-0.5672680139541626 +illusion_1.5L,target,126,50.4,velocity,center_ux,0.99674391746521 +illusion_1.5L,target,126,50.4,velocity,center_uy,-0.7857745885848999 +illusion_1.5L,target,126,50.4,velocity,lower_ux,0.7933460474014282 +illusion_1.5L,target,126,50.4,velocity,lower_uy,-0.5495622158050537 +illusion_1.5L,target,127,50.8,velocity,upper_ux,1.190276026725769 +illusion_1.5L,target,127,50.8,velocity,upper_uy,-0.5856054425239563 +illusion_1.5L,target,127,50.8,velocity,center_ux,1.0167680978775024 +illusion_1.5L,target,127,50.8,velocity,center_uy,-0.8310113549232483 +illusion_1.5L,target,127,50.8,velocity,lower_ux,0.7151715755462646 +illusion_1.5L,target,127,50.8,velocity,lower_uy,-0.5298675298690796 +illusion_1.5L,target,128,51.2,velocity,upper_ux,1.2727038860321045 +illusion_1.5L,target,128,51.2,velocity,upper_uy,-0.6018766760826111 +illusion_1.5L,target,128,51.2,velocity,center_ux,1.0198478698730469 +illusion_1.5L,target,128,51.2,velocity,center_uy,-0.8301432132720947 +illusion_1.5L,target,128,51.2,velocity,lower_ux,0.6256153583526611 +illusion_1.5L,target,128,51.2,velocity,lower_uy,-0.45556604862213135 +illusion_1.5L,target,129,51.6,velocity,upper_ux,1.3663066625595093 +illusion_1.5L,target,129,51.6,velocity,upper_uy,-0.6106173396110535 +illusion_1.5L,target,129,51.6,velocity,center_ux,0.9867427945137024 +illusion_1.5L,target,129,51.6,velocity,center_uy,-0.6987016201019287 +illusion_1.5L,target,129,51.6,velocity,lower_ux,0.5421693325042725 +illusion_1.5L,target,129,51.6,velocity,lower_uy,-0.3033207952976227 +illusion_1.5L,target,130,52.0,velocity,upper_ux,1.4567292928695679 +illusion_1.5L,target,130,52.0,velocity,upper_uy,-0.5829876661300659 +illusion_1.5L,target,130,52.0,velocity,center_ux,0.9205291271209717 +illusion_1.5L,target,130,52.0,velocity,center_uy,-0.4171752631664276 +illusion_1.5L,target,130,52.0,velocity,lower_ux,0.4883383810520172 +illusion_1.5L,target,130,52.0,velocity,lower_uy,-0.08375141024589539 +illusion_1.5L,target,131,52.4,velocity,upper_ux,1.4782756567001343 +illusion_1.5L,target,131,52.4,velocity,upper_uy,-0.4320734739303589 +illusion_1.5L,target,131,52.4,velocity,center_ux,0.8491023778915405 +illusion_1.5L,target,131,52.4,velocity,center_uy,-0.03446456789970398 +illusion_1.5L,target,131,52.4,velocity,lower_ux,0.48319199681282043 +illusion_1.5L,target,131,52.4,velocity,lower_uy,0.15466433763504028 +illusion_1.5L,target,132,52.8,velocity,upper_ux,1.3641197681427002 +illusion_1.5L,target,132,52.8,velocity,upper_uy,-0.08739475160837173 +illusion_1.5L,target,132,52.8,velocity,center_ux,0.8031447529792786 +illusion_1.5L,target,132,52.8,velocity,center_uy,0.3775619864463806 +illusion_1.5L,target,132,52.8,velocity,lower_ux,0.5371230840682983 +illusion_1.5L,target,132,52.8,velocity,lower_uy,0.3383593261241913 +illusion_1.5L,target,133,53.2,velocity,upper_ux,1.1826117038726807 +illusion_1.5L,target,133,53.2,velocity,upper_uy,0.30870455503463745 +illusion_1.5L,target,133,53.2,velocity,center_ux,0.8029550909996033 +illusion_1.5L,target,133,53.2,velocity,center_uy,0.6760606169700623 +illusion_1.5L,target,133,53.2,velocity,lower_ux,0.6365134119987488 +illusion_1.5L,target,133,53.2,velocity,lower_uy,0.4230293035507202 +illusion_1.5L,target,134,53.6,velocity,upper_ux,1.0534279346466064 +illusion_1.5L,target,134,53.6,velocity,upper_uy,0.5210775136947632 +illusion_1.5L,target,134,53.6,velocity,center_ux,0.8414151072502136 +illusion_1.5L,target,134,53.6,velocity,center_uy,0.7535347938537598 +illusion_1.5L,target,134,53.6,velocity,lower_ux,0.7396610379219055 +illusion_1.5L,target,134,53.6,velocity,lower_uy,0.45782509446144104 +illusion_1.5L,target,135,54.0,velocity,upper_ux,0.9903507828712463 +illusion_1.5L,target,135,54.0,velocity,upper_uy,0.5512543320655823 +illusion_1.5L,target,135,54.0,velocity,center_ux,0.8863617777824402 +illusion_1.5L,target,135,54.0,velocity,center_uy,0.728740394115448 +illusion_1.5L,target,135,54.0,velocity,lower_ux,0.8290723562240601 +illusion_1.5L,target,135,54.0,velocity,lower_uy,0.4858972132205963 +illusion_1.5L,target,136,54.4,velocity,upper_ux,0.9481162428855896 +illusion_1.5L,target,136,54.4,velocity,upper_uy,0.539959192276001 +illusion_1.5L,target,136,54.4,velocity,center_ux,0.9225529432296753 +illusion_1.5L,target,136,54.4,velocity,center_uy,0.7154312133789062 +illusion_1.5L,target,136,54.4,velocity,lower_ux,0.909090518951416 +illusion_1.5L,target,136,54.4,velocity,lower_uy,0.5098056197166443 +illusion_1.5L,target,137,54.8,velocity,upper_ux,0.9025776386260986 +illusion_1.5L,target,137,54.8,velocity,upper_uy,0.5397475957870483 +illusion_1.5L,target,137,54.8,velocity,center_ux,0.9514138698577881 +illusion_1.5L,target,137,54.8,velocity,center_uy,0.7232308387756348 +illusion_1.5L,target,137,54.8,velocity,lower_ux,0.9828028082847595 +illusion_1.5L,target,137,54.8,velocity,lower_uy,0.5307968258857727 +illusion_1.5L,target,138,55.2,velocity,upper_ux,0.8486202955245972 +illusion_1.5L,target,138,55.2,velocity,upper_uy,0.5467823147773743 +illusion_1.5L,target,138,55.2,velocity,center_ux,0.9757234454154968 +illusion_1.5L,target,138,55.2,velocity,center_uy,0.7494847774505615 +illusion_1.5L,target,138,55.2,velocity,lower_ux,1.0527594089508057 +illusion_1.5L,target,138,55.2,velocity,lower_uy,0.55048006772995 +illusion_1.5L,target,139,55.6,velocity,upper_ux,0.7825933694839478 +illusion_1.5L,target,139,55.6,velocity,upper_uy,0.5490624904632568 +illusion_1.5L,target,139,55.6,velocity,center_ux,0.9981001019477844 +illusion_1.5L,target,139,55.6,velocity,center_uy,0.7917340993881226 +illusion_1.5L,target,139,55.6,velocity,lower_ux,1.1228913068771362 +illusion_1.5L,target,139,55.6,velocity,lower_uy,0.5695133805274963 +illusion_1.5L,target,140,56.0,velocity,upper_ux,0.7026119232177734 +illusion_1.5L,target,140,56.0,velocity,upper_uy,0.5246293544769287 +illusion_1.5L,target,140,56.0,velocity,center_ux,1.0171401500701904 +illusion_1.5L,target,140,56.0,velocity,center_uy,0.8349418640136719 +illusion_1.5L,target,140,56.0,velocity,lower_ux,1.1981728076934814 +illusion_1.5L,target,140,56.0,velocity,lower_uy,0.5877141356468201 +illusion_1.5L,target,141,56.4,velocity,upper_ux,0.6142953634262085 +illusion_1.5L,target,141,56.4,velocity,upper_uy,0.44176292419433594 +illusion_1.5L,target,141,56.4,velocity,center_ux,1.018340826034546 +illusion_1.5L,target,141,56.4,velocity,center_uy,0.8225574493408203 +illusion_1.5L,target,141,56.4,velocity,lower_ux,1.2832772731781006 +illusion_1.5L,target,141,56.4,velocity,lower_uy,0.6036525368690491 +illusion_1.5L,target,142,56.8,velocity,upper_ux,0.5347731113433838 +illusion_1.5L,target,142,56.8,velocity,upper_uy,0.279729962348938 +illusion_1.5L,target,142,56.8,velocity,center_ux,0.9817810654640198 +illusion_1.5L,target,142,56.8,velocity,center_uy,0.6720220446586609 +illusion_1.5L,target,142,56.8,velocity,lower_ux,1.379594087600708 +illusion_1.5L,target,142,56.8,velocity,lower_uy,0.6106162667274475 +illusion_1.5L,target,143,57.2,velocity,upper_ux,0.48566731810569763 +illusion_1.5L,target,143,57.2,velocity,upper_uy,0.054158978164196014 +illusion_1.5L,target,143,57.2,velocity,center_ux,0.9125461578369141 +illusion_1.5L,target,143,57.2,velocity,center_uy,0.3749057352542877 +illusion_1.5L,target,143,57.2,velocity,lower_ux,1.4660801887512207 +illusion_1.5L,target,143,57.2,velocity,lower_uy,0.5738961100578308 +illusion_1.5L,target,144,57.6,velocity,upper_ux,0.4856291115283966 +illusion_1.5L,target,144,57.6,velocity,upper_uy,-0.18181203305721283 +illusion_1.5L,target,144,57.6,velocity,center_ux,0.8406938314437866 +illusion_1.5L,target,144,57.6,velocity,center_uy,-0.016301229596138 +illusion_1.5L,target,144,57.6,velocity,lower_ux,1.470868706703186 +illusion_1.5L,target,144,57.6,velocity,lower_uy,0.4001356065273285 +illusion_1.5L,target,145,58.0,velocity,upper_ux,0.5455445051193237 +illusion_1.5L,target,145,58.0,velocity,upper_uy,-0.3538074195384979 +illusion_1.5L,target,145,58.0,velocity,center_ux,0.798565149307251 +illusion_1.5L,target,145,58.0,velocity,center_uy,-0.4232962131500244 +illusion_1.5L,target,145,58.0,velocity,lower_ux,1.340669870376587 +illusion_1.5L,target,145,58.0,velocity,lower_uy,0.0363081656396389 +illusion_1.5L,target,146,58.4,velocity,upper_ux,0.648253858089447 +illusion_1.5L,target,146,58.4,velocity,upper_uy,-0.4284748136997223 +illusion_1.5L,target,146,58.4,velocity,center_ux,0.804973304271698 +illusion_1.5L,target,146,58.4,velocity,center_uy,-0.696845531463623 +illusion_1.5L,target,146,58.4,velocity,lower_ux,1.1618856191635132 +illusion_1.5L,target,146,58.4,velocity,lower_uy,-0.3472859263420105 +illusion_1.5L,target,147,58.8,velocity,upper_ux,0.7517558932304382 +illusion_1.5L,target,147,58.8,velocity,upper_uy,-0.46143341064453125 +illusion_1.5L,target,147,58.8,velocity,center_ux,0.8477981686592102 +illusion_1.5L,target,147,58.8,velocity,center_uy,-0.7526330351829529 +illusion_1.5L,target,147,58.8,velocity,lower_ux,1.044121265411377 +illusion_1.5L,target,147,58.8,velocity,lower_uy,-0.5321515798568726 +illusion_1.5L,target,148,59.2,velocity,upper_ux,0.8408170938491821 +illusion_1.5L,target,148,59.2,velocity,upper_uy,-0.4890880286693573 +illusion_1.5L,target,148,59.2,velocity,center_ux,0.8929237127304077 +illusion_1.5L,target,148,59.2,velocity,center_uy,-0.7262285351753235 +illusion_1.5L,target,148,59.2,velocity,lower_ux,0.9868202805519104 +illusion_1.5L,target,148,59.2,velocity,lower_uy,-0.5505803823471069 +illusion_1.5L,target,149,59.6,velocity,upper_ux,0.9188516736030579 +illusion_1.5L,target,149,59.6,velocity,upper_uy,-0.5125609040260315 +illusion_1.5L,target,149,59.6,velocity,center_ux,0.9269474744796753 +illusion_1.5L,target,149,59.6,velocity,center_uy,-0.7156903743743896 +illusion_1.5L,target,149,59.6,velocity,lower_ux,0.9434968829154968 +illusion_1.5L,target,149,59.6,velocity,lower_uy,-0.5398156642913818 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_wide.csv new file mode 100644 index 0000000..cdd0a9e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1.5L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1.5L,target,0,0.0,1.3447381258010864,-0.6099832057952881,0.9965444803237915,-0.7404286861419678,0.5582348108291626,-0.3427599370479584 +illusion_1.5L,target,1,0.4,1.4381823539733887,-0.5952910780906677,0.9349439144134521,-0.4884820878505707,0.49530497193336487,-0.13505491614341736 +illusion_1.5L,target,2,0.8,1.4830055236816406,-0.48154643177986145,0.8623756170272827,-0.1242586225271225,0.47865238785743713,0.10451044887304306 +illusion_1.5L,target,3,1.2,1.4003231525421143,-0.1782785952091217,0.8095380663871765,0.28967347741127014,0.5205942392349243,0.3063831329345703 +illusion_1.5L,target,4,1.6,1.2218959331512451,0.2295718640089035,0.7988975644111633,0.6281636953353882,0.6139196157455444,0.4112069606781006 +illusion_1.5L,target,5,2.0,1.074711561203003,0.49395817518234253,0.8307750225067139,0.7514716982841492,0.7186464071273804,0.4509841203689575 +illusion_1.5L,target,6,2.4,0.999340295791626,0.5526095032691956,0.875745415687561,0.7343926429748535,0.8097522258758545,0.4798631966114044 +illusion_1.5L,target,7,2.8,0.955504834651947,0.541987955570221,0.9135147333145142,0.716176450252533,0.8908132910728455,0.5046966671943665 +illusion_1.5L,target,8,3.2,0.9123565554618835,0.5388425588607788,0.9445895552635193,0.7197061777114868,0.9664261341094971,0.5261811017990112 +illusion_1.5L,target,9,3.6,0.8617480993270874,0.5449735522270203,0.9707955718040466,0.742072582244873,1.0380364656448364,0.5461143255233765 +illusion_1.5L,target,10,4.0,0.7987417578697205,0.549598753452301,0.993556797504425,0.7813997864723206,1.1078377962112427,0.5652861595153809 +illusion_1.5L,target,11,4.4,0.7209677696228027,0.5334727168083191,1.0133146047592163,0.8273233771324158,1.18080472946167,0.5836873054504395 +illusion_1.5L,target,12,4.8,0.6324756741523743,0.46618789434432983,1.0195571184158325,0.8344981670379639,1.2622907161712646,0.6002820730209351 +illusion_1.5L,target,13,5.2,0.5493716597557068,0.32211434841156006,0.9924485683441162,0.7189877033233643,1.356442928314209,0.6104946732521057 +illusion_1.5L,target,14,5.6,0.4928756654262543,0.10750788450241089,0.9295656681060791,0.4510856568813324,1.4503228664398193,0.589684009552002 +illusion_1.5L,target,15,6.0,0.48135611414909363,-0.13216030597686768,0.8558624982833862,0.07618343085050583,1.4820315837860107,0.45660990476608276 +illusion_1.5L,target,16,6.4,0.5276541709899902,-0.3242887854576111,0.804054856300354,-0.3374285399913788,1.3796817064285278,0.1303936243057251 +illusion_1.5L,target,17,6.8,0.623531699180603,-0.4177181124687195,0.798078715801239,-0.655098021030426,1.198146939277649,-0.2727510929107666 +illusion_1.5L,target,18,7.2,0.7287299633026123,-0.4544948935508728,0.8349980711936951,-0.7535775899887085,1.0619765520095825,-0.5101343989372253 +illusion_1.5L,target,19,7.6,0.8213234543800354,-0.48300132155418396,0.8825345635414124,-0.7317014932632446,0.995801568031311,-0.552991509437561 +illusion_1.5L,target,20,8.0,0.9025571942329407,-0.5074503421783447,0.9201779961585999,-0.7160955667495728,0.9534505605697632,-0.5416092872619629 +illusion_1.5L,target,21,8.4,0.9752155542373657,-0.5286878943443298,0.9482035040855408,-0.7219330072402954,0.9069628119468689,-0.5400252342224121 +illusion_1.5L,target,22,8.8,1.0439549684524536,-0.5484761595726013,0.971632182598114,-0.7462746500968933,0.8527564406394958,-0.5467120409011841 +illusion_1.5L,target,23,9.2,1.1138097047805786,-0.5676048994064331,0.9943106174468994,-0.7869619131088257,0.7883772253990173,-0.5502781867980957 +illusion_1.5L,target,24,9.6,1.1899186372756958,-0.5859940648078918,1.015722393989563,-0.8315612077713013,0.711588978767395,-0.5299668908119202 +illusion_1.5L,target,25,10.0,1.2753665447235107,-0.602442741394043,1.021134376525879,-0.8291577696800232,0.624973475933075,-0.45428287982940674 +illusion_1.5L,target,26,10.4,1.3704133033752441,-0.6111742258071899,0.9879959225654602,-0.6948983073234558,0.5428703427314758,-0.2999151349067688 +illusion_1.5L,target,27,10.8,1.4585484266281128,-0.5820985436439514,0.9192000031471252,-0.41049471497535706,0.48799145221710205,-0.07876881957054138 +illusion_1.5L,target,28,11.2,1.47492253780365,-0.42734089493751526,0.8454570174217224,-0.02685220167040825,0.4813956916332245,0.15918587148189545 +illusion_1.5L,target,29,11.6,1.358248233795166,-0.08004054427146912,0.7999810576438904,0.38356661796569824,0.5358139276504517,0.3407948315143585 +illusion_1.5L,target,30,12.0,1.1798367500305176,0.31442469358444214,0.8030305504798889,0.678806483745575,0.6378329992294312,0.42399996519088745 +illusion_1.5L,target,31,12.4,1.0544341802597046,0.5234814286231995,0.8443426489830017,0.7537120580673218,0.7433797717094421,0.45849931240081787 +illusion_1.5L,target,32,12.8,0.9916250705718994,0.5518423914909363,0.8889906406402588,0.7286118865013123,0.8324835300445557,0.4865124821662903 +illusion_1.5L,target,33,13.2,0.9468796253204346,0.5404529571533203,0.9226093888282776,0.7156890034675598,0.9099115133285522,0.5103318691253662 +illusion_1.5L,target,34,13.6,0.8993375301361084,0.5403936505317688,0.9494100213050842,0.7237387299537659,0.9814081788063049,0.5312394499778748 +illusion_1.5L,target,35,14.0,0.8463485240936279,0.547400951385498,0.9745500087738037,0.7500728368759155,1.0521122217178345,0.5508782863616943 +illusion_1.5L,target,36,14.4,0.7830088138580322,0.5493358969688416,0.999530553817749,0.7924437522888184,1.1251076459884644,0.5699581503868103 +illusion_1.5L,target,37,14.8,0.7041627764701843,0.523867666721344,1.0196218490600586,0.8355653285980225,1.2022300958633423,0.5882065296173096 +illusion_1.5L,target,38,15.2,0.6142213344573975,0.4391252100467682,1.018553614616394,0.8211995959281921,1.2864269018173218,0.6039900779724121 +illusion_1.5L,target,39,15.6,0.532482922077179,0.2754115164279938,0.9786035418510437,0.6668805480003357,1.3803868293762207,0.6102895736694336 +illusion_1.5L,target,40,16.0,0.48331546783447266,0.049496129155159,0.9085391163825989,0.36754652857780457,1.465060830116272,0.5716601610183716 +illusion_1.5L,target,41,16.4,0.4861675202846527,-0.18571588397026062,0.8393099904060364,-0.024189267307519913,1.4695656299591064,0.39468151330947876 +illusion_1.5L,target,42,16.8,0.5496525168418884,-0.35614249110221863,0.8005744218826294,-0.4304296374320984,1.339772343635559,0.028362348675727844 +illusion_1.5L,target,43,17.2,0.6530740261077881,-0.429389089345932,0.8080600500106812,-0.6999481320381165,1.1609781980514526,-0.35310065746307373 +illusion_1.5L,target,44,17.6,0.7540752291679382,-0.4620918929576874,0.8490071892738342,-0.7517885565757751,1.0422008037567139,-0.5330381393432617 +illusion_1.5L,target,45,18.0,0.8404710292816162,-0.4896075129508972,0.8916160464286804,-0.7252398133277893,0.9834948778152466,-0.5495426654815674 +illusion_1.5L,target,46,18.4,0.918536901473999,-0.512923538684845,0.9257161021232605,-0.7151864767074585,0.9407516717910767,-0.5389531254768372 +illusion_1.5L,target,47,18.8,0.9922474026679993,-0.533616840839386,0.9544910192489624,-0.7256320118904114,0.8951177000999451,-0.540273129940033 +illusion_1.5L,target,48,19.2,1.063452124595642,-0.5532081723213196,0.979770839214325,-0.7544214725494385,0.8411685824394226,-0.5474644303321838 +illusion_1.5L,target,49,19.6,1.1344220638275146,-0.5721471905708313,1.002203106880188,-0.7984687089920044,0.7734258770942688,-0.5475155711174011 +illusion_1.5L,target,50,20.0,1.2100014686584473,-0.5900886654853821,1.0190335512161255,-0.8386068940162659,0.6906594038009644,-0.5166698694229126 +illusion_1.5L,target,51,20.4,1.295468807220459,-0.6052954792976379,1.014593482017517,-0.8107969760894775,0.6010190844535828,-0.4232429563999176 +illusion_1.5L,target,52,20.8,1.3922561407089233,-0.6092348694801331,0.9722931385040283,-0.6375720500946045,0.5243855118751526,-0.25063973665237427 +illusion_1.5L,target,53,21.2,1.4739383459091187,-0.5601369738578796,0.9020266532897949,-0.32402974367141724,0.48251932859420776,-0.019948622211813927 +illusion_1.5L,target,54,21.6,1.4616742134094238,-0.35942667722702026,0.8334861993789673,0.07555611431598663,0.4916337728500366,0.21169954538345337 +illusion_1.5L,target,55,22.0,1.315882682800293,0.02285093627870083,0.7971436977386475,0.4744340777397156,0.5595261454582214,0.3696512281894684 +illusion_1.5L,target,56,22.4,1.1397888660430908,0.38743072748184204,0.8090705871582031,0.7166792154312134,0.6635412573814392,0.4339431822299957 +illusion_1.5L,target,57,22.8,1.0317953824996948,0.5409494638442993,0.8532017469406128,0.7496845126152039,0.7640023231506348,0.4654109477996826 +illusion_1.5L,target,58,23.2,0.9796077609062195,0.5486148595809937,0.8974055647850037,0.7231324911117554,0.8516284227371216,0.4925093948841095 +illusion_1.5L,target,59,23.6,0.9375194311141968,0.5390927195549011,0.9314920902252197,0.7158265113830566,0.9298804402351379,0.5155165791511536 +illusion_1.5L,target,60,24.0,0.8888989090919495,0.5416550040245056,0.9578034281730652,0.7286161780357361,1.0011570453643799,0.5360535979270935 +illusion_1.5L,target,61,24.4,0.8314040303230286,0.5488860607147217,0.9807030558586121,0.7594034075737,1.069896936416626,0.5555416345596313 +illusion_1.5L,target,62,24.8,0.7620391249656677,0.5468629598617554,1.0029855966567993,0.804318368434906,1.1410456895828247,0.5744358897209167 +illusion_1.5L,target,63,25.2,0.6800330281257629,0.5102512836456299,1.0204676389694214,0.8406356573104858,1.219552755355835,0.5923166275024414 +illusion_1.5L,target,64,25.6,0.5927914977073669,0.40724286437034607,1.0138838291168213,0.7988332509994507,1.3087518215179443,0.6071364283561707 +illusion_1.5L,target,65,26.0,0.5185208320617676,0.22494445741176605,0.9660323858261108,0.6062348484992981,1.4057856798171997,0.608171284198761 +illusion_1.5L,target,66,26.4,0.4796491861343384,-0.009847436100244522,0.8916716575622559,0.2786974608898163,1.4784290790557861,0.5461298823356628 +illusion_1.5L,target,67,26.8,0.4944903552532196,-0.23619629442691803,0.8246009349822998,-0.1262744963169098,1.4478121995925903,0.32043564319610596 +illusion_1.5L,target,68,27.2,0.5696474313735962,-0.3817058205604553,0.7950844764709473,-0.514844536781311,1.2921061515808105,-0.07422074675559998 +illusion_1.5L,target,69,27.6,0.6773664355278015,-0.4386036992073059,0.8149601817131042,-0.7298902273178101,1.1241732835769653,-0.4189365804195404 +illusion_1.5L,target,70,28.0,0.7775222659111023,-0.46916618943214417,0.8616695404052734,-0.7468485832214355,1.0263762474060059,-0.5467720031738281 +illusion_1.5L,target,71,28.4,0.8622478246688843,-0.4957258701324463,0.9029808044433594,-0.7212244272232056,0.9755497574806213,-0.5472063422203064 +illusion_1.5L,target,72,28.8,0.9371721744537354,-0.5182385444641113,0.9336348176002502,-0.7164909839630127,0.930694580078125,-0.5390428304672241 +illusion_1.5L,target,73,29.2,1.0074905157089233,-0.5385470986366272,0.9589815735816956,-0.7314088344573975,0.8809604048728943,-0.5427118539810181 +illusion_1.5L,target,74,29.6,1.0780463218688965,-0.5579439997673035,0.9834263324737549,-0.764101505279541,0.8241751790046692,-0.549705982208252 +illusion_1.5L,target,75,30.0,1.1521766185760498,-0.5767964720726013,1.0075920820236206,-0.8099793195724487,0.7554173469543457,-0.5449663400650024 +illusion_1.5L,target,76,30.4,1.231984257698059,-0.5944877862930298,1.0230602025985718,-0.8417986035346985,0.6717905402183533,-0.501579761505127 +illusion_1.5L,target,77,30.8,1.3204383850097656,-0.6083678603172302,1.0094008445739746,-0.783731997013092,0.5825624465942383,-0.3885326087474823 +illusion_1.5L,target,78,31.2,1.4156368970870972,-0.605251133441925,0.9554716348648071,-0.5715380311012268,0.5099460482597351,-0.19772183895111084 +illusion_1.5L,target,79,31.6,1.4809211492538452,-0.5287177562713623,0.8811743259429932,-0.23153387010097504,0.4774608612060547,0.039456382393836975 +illusion_1.5L,target,80,32.0,1.435530424118042,-0.2782469391822815,0.8197262287139893,0.17795591056346893,0.5018829703330994,0.2595602869987488 +illusion_1.5L,target,81,32.4,1.271714687347412,0.1254480928182602,0.7976417541503906,0.5542917847633362,0.5848919749259949,0.3925199508666992 +illusion_1.5L,target,82,32.8,1.1087217330932617,0.446746289730072,0.8214685320854187,0.7400445342063904,0.6921097636222839,0.4428757429122925 +illusion_1.5L,target,83,33.2,1.0170687437057495,0.5495573878288269,0.8664202690124512,0.742754340171814,0.7877613306045532,0.4727330803871155 +illusion_1.5L,target,84,33.6,0.9681211709976196,0.5447389483451843,0.9054643511772156,0.7189684510231018,0.8701476454734802,0.498686283826828 +illusion_1.5L,target,85,34.0,0.9244312047958374,0.5382290482521057,0.9365411400794983,0.7168892621994019,0.9456290602684021,0.5207800269126892 +illusion_1.5L,target,86,34.4,0.8761681318283081,0.542850136756897,0.9636691212654114,0.7341408729553223,1.017979621887207,0.540925145149231 +illusion_1.5L,target,87,34.8,0.8182544708251953,0.5493787527084351,0.9883342981338501,0.7691710591316223,1.0892122983932495,0.5602716207504272 +illusion_1.5L,target,88,35.2,0.7453645467758179,0.5415257811546326,1.0100858211517334,0.8158228993415833,1.1618812084197998,0.578951358795166 +illusion_1.5L,target,89,35.6,0.6584118604660034,0.49116355180740356,1.0215717554092407,0.8412914276123047,1.2406083345413208,0.5962262749671936 +illusion_1.5L,target,90,36.0,0.5703376531600952,0.36871087551116943,1.003575086593628,0.7659392356872559,1.3303340673446655,0.6090982556343079 +illusion_1.5L,target,91,36.4,0.5035567283630371,0.17016372084617615,0.9476860761642456,0.5357404947280884,1.4268263578414917,0.6015356183052063 +illusion_1.5L,target,92,36.8,0.47897452116012573,-0.06899480521678925,0.8745019435882568,0.18375401198863983,1.4848231077194214,0.5093362927436829 +illusion_1.5L,target,93,37.2,0.5103278756141663,-0.2817629873752594,0.8154090642929077,-0.22959564626216888,1.4211543798446655,0.2339261770248413 +illusion_1.5L,target,94,37.6,0.5967348217964172,-0.4016554355621338,0.79674232006073,-0.5903002023696899,1.2475522756576538,-0.17437362670898438 +illusion_1.5L,target,95,38.0,0.7026460766792297,-0.4465441405773163,0.8241075873374939,-0.7470300197601318,1.0911999940872192,-0.4703257083892822 +illusion_1.5L,target,96,38.4,0.7974006533622742,-0.4759288728237152,0.8705010414123535,-0.7392133474349976,1.0087052583694458,-0.5517088174819946 +illusion_1.5L,target,97,38.8,0.8808730244636536,-0.5014137625694275,0.9106099009513855,-0.7177069187164307,0.9639406800270081,-0.5435524582862854 +illusion_1.5L,target,98,39.2,0.956595242023468,-0.5232716798782349,0.9417713284492493,-0.718232274055481,0.9204652309417725,-0.5386420488357544 +illusion_1.5L,target,99,39.6,1.0269825458526611,-0.5433108806610107,0.9668925404548645,-0.7378308176994324,0.8694244623184204,-0.5441157817840576 +illusion_1.5L,target,100,40.0,1.096163272857666,-0.5625635385513306,0.9894924759864807,-0.7747528553009033,0.8079732656478882,-0.5500401854515076 +illusion_1.5L,target,101,40.4,1.169129490852356,-0.5811666250228882,1.0108073949813843,-0.8212241530418396,0.7332895398139954,-0.5388835072517395 +illusion_1.5L,target,102,40.8,1.2506390810012817,-0.598283588886261,1.0217289924621582,-0.8393677473068237,0.6471878886222839,-0.48124533891677856 +illusion_1.5L,target,103,41.2,1.3437260389328003,-0.6102969646453857,1.0006320476531982,-0.7465829253196716,0.5622127056121826,-0.3487401604652405 +illusion_1.5L,target,104,41.6,1.438941478729248,-0.5973823666572571,0.9402772784233093,-0.4984355568885803,0.4990459084510803,-0.14200787246227264 +illusion_1.5L,target,105,42.0,1.483904242515564,-0.4869751036167145,0.8648690581321716,-0.13513237237930298,0.478596955537796,0.09819041937589645 +illusion_1.5L,target,106,42.4,1.401465892791748,-0.1870637685060501,0.8085439205169678,0.2791784703731537,0.5160889625549316,0.30210328102111816 +illusion_1.5L,target,107,42.8,1.2243335247039795,0.22137950360774994,0.7968257665634155,0.6217499375343323,0.6080456972122192,0.4097598195075989 +illusion_1.5L,target,108,43.2,1.0788949728012085,0.49090591073036194,0.8305039405822754,0.7515431046485901,0.7156132459640503,0.45045897364616394 +illusion_1.5L,target,109,43.6,1.0046614408493042,0.5530059933662415,0.8779957294464111,0.7359492778778076,0.8099278211593628,0.47940775752067566 +illusion_1.5L,target,110,44.0,0.9597007036209106,0.5426933169364929,0.9155197143554688,0.7169708013534546,0.8910088539123535,0.5043718218803406 +illusion_1.5L,target,111,44.4,0.9134589433670044,0.5393712520599365,0.9437874555587769,0.7198650240898132,0.9638654589653015,0.5258662104606628 +illusion_1.5L,target,112,44.8,0.8611695766448975,0.545520007610321,0.9681388139724731,0.7415227293968201,1.0334779024124146,0.5457533597946167 +illusion_1.5L,target,113,45.2,0.7999567985534668,0.5505267977714539,0.9921151995658875,0.7801366448402405,1.1043850183486938,0.5649505257606506 +illusion_1.5L,target,114,45.6,0.7255614399909973,0.5353712439537048,1.0147079229354858,0.8262493014335632,1.180189847946167,0.5835039615631104 +illusion_1.5L,target,115,46.0,0.638490617275238,0.46946391463279724,1.0226819515228271,0.8359456062316895,1.2632536888122559,0.6003457307815552 +illusion_1.5L,target,116,46.4,0.5529226660728455,0.32664814591407776,0.9943290948867798,0.7239881753921509,1.3558244705200195,0.6108672022819519 +illusion_1.5L,target,117,46.8,0.4925817549228668,0.11300366371870041,0.9291657209396362,0.45835137367248535,1.4474509954452515,0.5909639000892639 +illusion_1.5L,target,118,47.2,0.47906094789505005,-0.12665647268295288,0.8552380204200745,0.08519890904426575,1.480688452720642,0.4608331322669983 +illusion_1.5L,target,119,47.6,0.5259298086166382,-0.3209911286830902,0.8054752349853516,-0.328634113073349,1.3834168910980225,0.13777020573616028 +illusion_1.5L,target,120,48.0,0.6237049102783203,-0.41702038049697876,0.801358699798584,-0.6507510542869568,1.204787254333496,-0.2668006122112274 +illusion_1.5L,target,121,48.4,0.7294061779975891,-0.4543763995170593,0.8377540707588196,-0.753455400466919,1.067223072052002,-0.5077361464500427 +illusion_1.5L,target,122,48.8,0.819692075252533,-0.4828406274318695,0.8825051188468933,-0.7320241332054138,0.9973907470703125,-0.5521553158760071 +illusion_1.5L,target,123,49.2,0.8987549543380737,-0.5071989297866821,0.9178823232650757,-0.7158679366111755,0.9526512026786804,-0.5408923625946045 +illusion_1.5L,target,124,49.6,0.9721469879150391,-0.5283663868904114,0.9465689063072205,-0.7211857438087463,0.9071166515350342,-0.5391969084739685 +illusion_1.5L,target,125,50.0,1.0436499118804932,-0.5481298565864563,0.9725221991539001,-0.7451080083847046,0.855845034122467,-0.5458325147628784 +illusion_1.5L,target,126,50.4,1.1154208183288574,-0.5672680139541626,0.99674391746521,-0.7857745885848999,0.7933460474014282,-0.5495622158050537 +illusion_1.5L,target,127,50.8,1.190276026725769,-0.5856054425239563,1.0167680978775024,-0.8310113549232483,0.7151715755462646,-0.5298675298690796 +illusion_1.5L,target,128,51.2,1.2727038860321045,-0.6018766760826111,1.0198478698730469,-0.8301432132720947,0.6256153583526611,-0.45556604862213135 +illusion_1.5L,target,129,51.6,1.3663066625595093,-0.6106173396110535,0.9867427945137024,-0.6987016201019287,0.5421693325042725,-0.3033207952976227 +illusion_1.5L,target,130,52.0,1.4567292928695679,-0.5829876661300659,0.9205291271209717,-0.4171752631664276,0.4883383810520172,-0.08375141024589539 +illusion_1.5L,target,131,52.4,1.4782756567001343,-0.4320734739303589,0.8491023778915405,-0.03446456789970398,0.48319199681282043,0.15466433763504028 +illusion_1.5L,target,132,52.8,1.3641197681427002,-0.08739475160837173,0.8031447529792786,0.3775619864463806,0.5371230840682983,0.3383593261241913 +illusion_1.5L,target,133,53.2,1.1826117038726807,0.30870455503463745,0.8029550909996033,0.6760606169700623,0.6365134119987488,0.4230293035507202 +illusion_1.5L,target,134,53.6,1.0534279346466064,0.5210775136947632,0.8414151072502136,0.7535347938537598,0.7396610379219055,0.45782509446144104 +illusion_1.5L,target,135,54.0,0.9903507828712463,0.5512543320655823,0.8863617777824402,0.728740394115448,0.8290723562240601,0.4858972132205963 +illusion_1.5L,target,136,54.4,0.9481162428855896,0.539959192276001,0.9225529432296753,0.7154312133789062,0.909090518951416,0.5098056197166443 +illusion_1.5L,target,137,54.8,0.9025776386260986,0.5397475957870483,0.9514138698577881,0.7232308387756348,0.9828028082847595,0.5307968258857727 +illusion_1.5L,target,138,55.2,0.8486202955245972,0.5467823147773743,0.9757234454154968,0.7494847774505615,1.0527594089508057,0.55048006772995 +illusion_1.5L,target,139,55.6,0.7825933694839478,0.5490624904632568,0.9981001019477844,0.7917340993881226,1.1228913068771362,0.5695133805274963 +illusion_1.5L,target,140,56.0,0.7026119232177734,0.5246293544769287,1.0171401500701904,0.8349418640136719,1.1981728076934814,0.5877141356468201 +illusion_1.5L,target,141,56.4,0.6142953634262085,0.44176292419433594,1.018340826034546,0.8225574493408203,1.2832772731781006,0.6036525368690491 +illusion_1.5L,target,142,56.8,0.5347731113433838,0.279729962348938,0.9817810654640198,0.6720220446586609,1.379594087600708,0.6106162667274475 +illusion_1.5L,target,143,57.2,0.48566731810569763,0.054158978164196014,0.9125461578369141,0.3749057352542877,1.4660801887512207,0.5738961100578308 +illusion_1.5L,target,144,57.6,0.4856291115283966,-0.18181203305721283,0.8406938314437866,-0.016301229596138,1.470868706703186,0.4001356065273285 +illusion_1.5L,target,145,58.0,0.5455445051193237,-0.3538074195384979,0.798565149307251,-0.4232962131500244,1.340669870376587,0.0363081656396389 +illusion_1.5L,target,146,58.4,0.648253858089447,-0.4284748136997223,0.804973304271698,-0.696845531463623,1.1618856191635132,-0.3472859263420105 +illusion_1.5L,target,147,58.8,0.7517558932304382,-0.46143341064453125,0.8477981686592102,-0.7526330351829529,1.044121265411377,-0.5321515798568726 +illusion_1.5L,target,148,59.2,0.8408170938491821,-0.4890880286693573,0.8929237127304077,-0.7262285351753235,0.9868202805519104,-0.5505803823471069 +illusion_1.5L,target,149,59.6,0.9188516736030579,-0.5125609040260315,0.9269474744796753,-0.7156903743743896,0.9434968829154968,-0.5398156642913818 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv new file mode 100644 index 0000000..1702d20 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1L,sr,72,21.6,36,0.9422355552281562,3,0.9398142347733179,0.9585824616563817,0.9059266630146239,0.9295612022332433,0.9654812415440878,0.9540475281472836 +illusion_1L,sr,108,32.4,36,0.956092370461664,12,0.9725660814179314,0.973763600761433,0.8882589422994189,0.9543045774981793,0.97059698899587,0.9770640317971507 +illusion_1L,sr,144,43.2,36,0.941061532124877,-4,0.9710049480199814,0.9609544926271256,0.8327961183256574,0.9550838239439245,0.9552633282211092,0.9712664816114638 +illusion_1L,sr,180,54.0,36,0.933955766139897,3,0.9451525045765771,0.9739893994087147,0.8024621142281426,0.9515688245495161,0.9659760495026907,0.9645857045737406 +illusion_1L,sr,216,64.8,36,0.9183680027576715,10,0.9614624083042145,0.9523847695543535,0.7617169188128577,0.9126566875363804,0.958099881807963,0.9638873505302601 +illusion_1L,sr,252,75.6,36,0.91165269745074,-7,0.9536987526549233,0.9340091615190936,0.7638581924968295,0.9310076582478359,0.9237571358680725,0.9635852839176854 +illusion_1L,sr,288,86.4,36,0.9201599600912435,0,0.9522633055845896,0.9603342011881372,0.7444202916489707,0.9349132534892609,0.9603539920515485,0.9686747165849536 +illusion_1L,sr,324,97.2,36,0.9088811320026352,6,0.9271513621012369,0.953248327901949,0.7408095068401761,0.9479479047004133,0.9462964965237511,0.9378331939482855 +illusion_1L,sr,360,108.0,36,0.9180641553183603,13,0.9548662934038374,0.9640047829598188,0.7430069479677412,0.9370683596935123,0.9479041662481096,0.9615343816371428 +illusion_1L,sr,396,118.8,36,0.9073652381689667,-5,0.947410472565227,0.9393819632629553,0.7292146235704422,0.9406569719883717,0.9386856473154492,0.9488417503113548 +illusion_1L,sr,400,120.0,36,0.9156085892625722,-1,0.9548678083552254,0.9586846847087145,0.7286621448066499,0.9272604249676483,0.9609709895319409,0.9632054832052543 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_long.csv new file mode 100644 index 0000000..18e11ad --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,sr,0,0.0,velocity,upper_ux,1.0352134704589844 +illusion_1L,sr,0,0.0,velocity,upper_uy,-0.2934945523738861 +illusion_1L,sr,0,0.0,velocity,center_ux,0.920151948928833 +illusion_1L,sr,0,0.0,velocity,center_uy,-0.525445818901062 +illusion_1L,sr,0,0.0,velocity,lower_ux,0.8949023485183716 +illusion_1L,sr,0,0.0,velocity,lower_uy,-0.3407583236694336 +illusion_1L,sr,1,0.3,velocity,upper_ux,1.0854301452636719 +illusion_1L,sr,1,0.3,velocity,upper_uy,-0.3138121962547302 +illusion_1L,sr,1,0.3,velocity,center_ux,0.9394702911376953 +illusion_1L,sr,1,0.3,velocity,center_uy,-0.5433765649795532 +illusion_1L,sr,1,0.3,velocity,lower_ux,0.8482897281646729 +illusion_1L,sr,1,0.3,velocity,lower_uy,-0.3002932369709015 +illusion_1L,sr,2,0.6,velocity,upper_ux,1.1388943195343018 +illusion_1L,sr,2,0.6,velocity,upper_uy,-0.32913753390312195 +illusion_1L,sr,2,0.6,velocity,center_ux,0.9459059834480286 +illusion_1L,sr,2,0.6,velocity,center_uy,-0.5544472336769104 +illusion_1L,sr,2,0.6,velocity,lower_ux,0.8034183979034424 +illusion_1L,sr,2,0.6,velocity,lower_uy,-0.24598665535449982 +illusion_1L,sr,3,0.9,velocity,upper_ux,1.1973798274993896 +illusion_1L,sr,3,0.9,velocity,upper_uy,-0.3383600413799286 +illusion_1L,sr,3,0.9,velocity,center_ux,0.9337765574455261 +illusion_1L,sr,3,0.9,velocity,center_uy,-0.5311232805252075 +illusion_1L,sr,3,0.9,velocity,lower_ux,0.7631356120109558 +illusion_1L,sr,3,0.9,velocity,lower_uy,-0.17553596198558807 +illusion_1L,sr,4,1.2,velocity,upper_ux,1.2620614767074585 +illusion_1L,sr,4,1.2,velocity,upper_uy,-0.33798304200172424 +illusion_1L,sr,4,1.2,velocity,center_ux,0.8982599973678589 +illusion_1L,sr,4,1.2,velocity,center_uy,-0.43757227063179016 +illusion_1L,sr,4,1.2,velocity,lower_ux,0.7385761141777039 +illusion_1L,sr,4,1.2,velocity,lower_uy,-0.09291360527276993 +illusion_1L,sr,5,1.5,velocity,upper_ux,1.3294432163238525 +illusion_1L,sr,5,1.5,velocity,upper_uy,-0.31859347224235535 +illusion_1L,sr,5,1.5,velocity,center_ux,0.8438472747802734 +illusion_1L,sr,5,1.5,velocity,center_uy,-0.25390711426734924 +illusion_1L,sr,5,1.5,velocity,lower_ux,0.7411162853240967 +illusion_1L,sr,5,1.5,velocity,lower_uy,-0.01139908842742443 +illusion_1L,sr,6,1.8,velocity,upper_ux,1.3812344074249268 +illusion_1L,sr,6,1.8,velocity,upper_uy,-0.2585073411464691 +illusion_1L,sr,6,1.8,velocity,center_ux,0.7877177000045776 +illusion_1L,sr,6,1.8,velocity,center_uy,0.001860530348494649 +illusion_1L,sr,6,1.8,velocity,lower_ux,0.7707063555717468 +illusion_1L,sr,6,1.8,velocity,lower_uy,0.05678798630833626 +illusion_1L,sr,7,2.1,velocity,upper_ux,1.3780829906463623 +illusion_1L,sr,7,2.1,velocity,upper_uy,-0.12858648598194122 +illusion_1L,sr,7,2.1,velocity,center_ux,0.7538187503814697 +illusion_1L,sr,7,2.1,velocity,center_uy,0.2686637341976166 +illusion_1L,sr,7,2.1,velocity,lower_ux,0.8135991096496582 +illusion_1L,sr,7,2.1,velocity,lower_uy,0.11298521608114243 +illusion_1L,sr,8,2.4,velocity,upper_ux,1.2911581993103027 +illusion_1L,sr,8,2.4,velocity,upper_uy,0.06420072913169861 +illusion_1L,sr,8,2.4,velocity,center_ux,0.7608507871627808 +illusion_1L,sr,8,2.4,velocity,center_uy,0.45699578523635864 +illusion_1L,sr,8,2.4,velocity,lower_ux,0.8578753471374512 +illusion_1L,sr,8,2.4,velocity,lower_uy,0.16376781463623047 +illusion_1L,sr,9,2.7,velocity,upper_ux,1.1525163650512695 +illusion_1L,sr,9,2.7,velocity,upper_uy,0.24511463940143585 +illusion_1L,sr,9,2.7,velocity,center_ux,0.8053434491157532 +illusion_1L,sr,9,2.7,velocity,center_uy,0.5195398926734924 +illusion_1L,sr,9,2.7,velocity,lower_ux,0.9020199775695801 +illusion_1L,sr,9,2.7,velocity,lower_uy,0.20872622728347778 +illusion_1L,sr,10,3.0,velocity,upper_ux,1.025935411453247 +illusion_1L,sr,10,3.0,velocity,upper_uy,0.3425331115722656 +illusion_1L,sr,10,3.0,velocity,center_ux,0.8576101660728455 +illusion_1L,sr,10,3.0,velocity,center_uy,0.5171009302139282 +illusion_1L,sr,10,3.0,velocity,lower_ux,0.9471666216850281 +illusion_1L,sr,10,3.0,velocity,lower_uy,0.24593637883663177 +illusion_1L,sr,11,3.3,velocity,upper_ux,0.9408485889434814 +illusion_1L,sr,11,3.3,velocity,upper_uy,0.3580743074417114 +illusion_1L,sr,11,3.3,velocity,center_ux,0.8974842429161072 +illusion_1L,sr,11,3.3,velocity,center_uy,0.5174781084060669 +illusion_1L,sr,11,3.3,velocity,lower_ux,0.9936997294425964 +illusion_1L,sr,11,3.3,velocity,lower_uy,0.27604109048843384 +illusion_1L,sr,12,3.6,velocity,upper_ux,0.8850672245025635 +illusion_1L,sr,12,3.6,velocity,upper_uy,0.3330245316028595 +illusion_1L,sr,12,3.6,velocity,center_ux,0.9253414869308472 +illusion_1L,sr,12,3.6,velocity,center_uy,0.5310112237930298 +illusion_1L,sr,12,3.6,velocity,lower_ux,1.0422053337097168 +illusion_1L,sr,12,3.6,velocity,lower_uy,0.30035027861595154 +illusion_1L,sr,13,3.9,velocity,upper_ux,0.8380324244499207 +illusion_1L,sr,13,3.9,velocity,upper_uy,0.29200270771980286 +illusion_1L,sr,13,3.9,velocity,center_ux,0.943283200263977 +illusion_1L,sr,13,3.9,velocity,center_uy,0.5505200624465942 +illusion_1L,sr,13,3.9,velocity,lower_ux,1.0935570001602173 +illusion_1L,sr,13,3.9,velocity,lower_uy,0.31959375739097595 +illusion_1L,sr,14,4.2,velocity,upper_ux,0.7916889786720276 +illusion_1L,sr,14,4.2,velocity,upper_uy,0.23701117932796478 +illusion_1L,sr,14,4.2,velocity,center_ux,0.9486473798751831 +illusion_1L,sr,14,4.2,velocity,center_uy,0.5611631870269775 +illusion_1L,sr,14,4.2,velocity,lower_ux,1.1490083932876587 +illusion_1L,sr,14,4.2,velocity,lower_uy,0.333646684885025 +illusion_1L,sr,15,4.5,velocity,upper_ux,0.7500501871109009 +illusion_1L,sr,15,4.5,velocity,upper_uy,0.16534090042114258 +illusion_1L,sr,15,4.5,velocity,center_ux,0.9347164630889893 +illusion_1L,sr,15,4.5,velocity,center_uy,0.5338547825813293 +illusion_1L,sr,15,4.5,velocity,lower_ux,1.209954023361206 +illusion_1L,sr,15,4.5,velocity,lower_uy,0.3410172462463379 +illusion_1L,sr,16,4.8,velocity,upper_ux,0.7241273522377014 +illusion_1L,sr,16,4.8,velocity,upper_uy,0.0815829336643219 +illusion_1L,sr,16,4.8,velocity,center_ux,0.896816074848175 +illusion_1L,sr,16,4.8,velocity,center_uy,0.43295297026634216 +illusion_1L,sr,16,4.8,velocity,lower_ux,1.2772072553634644 +illusion_1L,sr,16,4.8,velocity,lower_uy,0.33750662207603455 +illusion_1L,sr,17,5.1,velocity,upper_ux,0.724425733089447 +illusion_1L,sr,17,5.1,velocity,upper_uy,-0.0009284175466746092 +illusion_1L,sr,17,5.1,velocity,center_ux,0.8412507772445679 +illusion_1L,sr,17,5.1,velocity,center_uy,0.24180448055267334 +illusion_1L,sr,17,5.1,velocity,lower_ux,1.346553921699524 +illusion_1L,sr,17,5.1,velocity,lower_uy,0.31243160367012024 +illusion_1L,sr,18,5.4,velocity,upper_ux,0.7504732608795166 +illusion_1L,sr,18,5.4,velocity,upper_uy,-0.07067526876926422 +illusion_1L,sr,18,5.4,velocity,center_ux,0.7874358296394348 +illusion_1L,sr,18,5.4,velocity,center_uy,-0.01622726023197174 +illusion_1L,sr,18,5.4,velocity,lower_ux,1.3977842330932617 +illusion_1L,sr,18,5.4,velocity,lower_uy,0.24264216423034668 +illusion_1L,sr,19,5.7,velocity,upper_ux,0.7894726395606995 +illusion_1L,sr,19,5.7,velocity,upper_uy,-0.1287631392478943 +illusion_1L,sr,19,5.7,velocity,center_ux,0.75862056016922 +illusion_1L,sr,19,5.7,velocity,center_uy,-0.2759537696838379 +illusion_1L,sr,19,5.7,velocity,lower_ux,1.3896793127059937 +illusion_1L,sr,19,5.7,velocity,lower_uy,0.10216719657182693 +illusion_1L,sr,20,6.0,velocity,upper_ux,0.830396294593811 +illusion_1L,sr,20,6.0,velocity,upper_uy,-0.180917888879776 +illusion_1L,sr,20,6.0,velocity,center_ux,0.7688588500022888 +illusion_1L,sr,20,6.0,velocity,center_uy,-0.4506489038467407 +illusion_1L,sr,20,6.0,velocity,lower_ux,1.300075888633728 +illusion_1L,sr,20,6.0,velocity,lower_uy,-0.08752261847257614 +illusion_1L,sr,21,6.3,velocity,upper_ux,0.8710088133811951 +illusion_1L,sr,21,6.3,velocity,upper_uy,-0.22722575068473816 +illusion_1L,sr,21,6.3,velocity,center_ux,0.8106092214584351 +illusion_1L,sr,21,6.3,velocity,center_uy,-0.4994523525238037 +illusion_1L,sr,21,6.3,velocity,lower_ux,1.1711843013763428 +illusion_1L,sr,21,6.3,velocity,lower_uy,-0.24371488392353058 +illusion_1L,sr,22,6.6,velocity,upper_ux,0.9114931225776672 +illusion_1L,sr,22,6.6,velocity,upper_uy,-0.2666804790496826 +illusion_1L,sr,22,6.6,velocity,center_ux,0.8556960821151733 +illusion_1L,sr,22,6.6,velocity,center_uy,-0.4818572402000427 +illusion_1L,sr,22,6.6,velocity,lower_ux,1.062717318534851 +illusion_1L,sr,22,6.6,velocity,lower_uy,-0.3118186593055725 +illusion_1L,sr,23,6.9,velocity,upper_ux,0.9515376687049866 +illusion_1L,sr,23,6.9,velocity,upper_uy,-0.300472229719162 +illusion_1L,sr,23,6.9,velocity,center_ux,0.8852576613426208 +illusion_1L,sr,23,6.9,velocity,center_uy,-0.4651280641555786 +illusion_1L,sr,23,6.9,velocity,lower_ux,0.9938085675239563 +illusion_1L,sr,23,6.9,velocity,lower_uy,-0.31055569648742676 +illusion_1L,sr,24,7.2,velocity,upper_ux,0.9913960695266724 +illusion_1L,sr,24,7.2,velocity,upper_uy,-0.33037662506103516 +illusion_1L,sr,24,7.2,velocity,center_ux,0.899344265460968 +illusion_1L,sr,24,7.2,velocity,center_uy,-0.4630996584892273 +illusion_1L,sr,24,7.2,velocity,lower_ux,0.9504972100257874 +illusion_1L,sr,24,7.2,velocity,lower_uy,-0.28133973479270935 +illusion_1L,sr,25,7.5,velocity,upper_ux,1.0319712162017822 +illusion_1L,sr,25,7.5,velocity,upper_uy,-0.357704758644104 +illusion_1L,sr,25,7.5,velocity,center_ux,0.9015666842460632 +illusion_1L,sr,25,7.5,velocity,center_uy,-0.47278594970703125 +illusion_1L,sr,25,7.5,velocity,lower_ux,0.9158097505569458 +illusion_1L,sr,25,7.5,velocity,lower_uy,-0.24539782106876373 +illusion_1L,sr,26,7.8,velocity,upper_ux,1.0747392177581787 +illusion_1L,sr,26,7.8,velocity,upper_uy,-0.38312435150146484 +illusion_1L,sr,26,7.8,velocity,center_ux,0.8933805227279663 +illusion_1L,sr,26,7.8,velocity,center_uy,-0.4896605908870697 +illusion_1L,sr,26,7.8,velocity,lower_ux,0.8825134038925171 +illusion_1L,sr,26,7.8,velocity,lower_uy,-0.20626597106456757 +illusion_1L,sr,27,8.1,velocity,upper_ux,1.1212249994277954 +illusion_1L,sr,27,8.1,velocity,upper_uy,-0.4067641496658325 +illusion_1L,sr,27,8.1,velocity,center_ux,0.8739050030708313 +illusion_1L,sr,27,8.1,velocity,center_uy,-0.503006637096405 +illusion_1L,sr,27,8.1,velocity,lower_ux,0.8507499694824219 +illusion_1L,sr,27,8.1,velocity,lower_uy,-0.1625315397977829 +illusion_1L,sr,28,8.4,velocity,upper_ux,1.1724903583526611 +illusion_1L,sr,28,8.4,velocity,upper_uy,-0.42805495858192444 +illusion_1L,sr,28,8.4,velocity,center_ux,0.840343177318573 +illusion_1L,sr,28,8.4,velocity,center_uy,-0.49266961216926575 +illusion_1L,sr,28,8.4,velocity,lower_ux,0.8239403367042542 +illusion_1L,sr,28,8.4,velocity,lower_uy,-0.1132674440741539 +illusion_1L,sr,29,8.7,velocity,upper_ux,1.2285174131393433 +illusion_1L,sr,29,8.7,velocity,upper_uy,-0.4449816942214966 +illusion_1L,sr,29,8.7,velocity,center_ux,0.7902076244354248 +illusion_1L,sr,29,8.7,velocity,center_uy,-0.4347040355205536 +illusion_1L,sr,29,8.7,velocity,lower_ux,0.8058704733848572 +illusion_1L,sr,29,8.7,velocity,lower_uy,-0.05884504318237305 +illusion_1L,sr,30,9.0,velocity,upper_ux,1.2861300706863403 +illusion_1L,sr,30,9.0,velocity,upper_uy,-0.45190516114234924 +illusion_1L,sr,30,9.0,velocity,center_ux,0.7245463132858276 +illusion_1L,sr,30,9.0,velocity,center_uy,-0.3143240809440613 +illusion_1L,sr,30,9.0,velocity,lower_ux,0.7982158660888672 +illusion_1L,sr,30,9.0,velocity,lower_uy,-0.00035380973713472486 +illusion_1L,sr,31,9.3,velocity,upper_ux,1.335022211074829 +illusion_1L,sr,31,9.3,velocity,upper_uy,-0.4351210594177246 +illusion_1L,sr,31,9.3,velocity,center_ux,0.6507396697998047 +illusion_1L,sr,31,9.3,velocity,center_uy,-0.1340256631374359 +illusion_1L,sr,31,9.3,velocity,lower_ux,0.8004016876220703 +illusion_1L,sr,31,9.3,velocity,lower_uy,0.06088780611753464 +illusion_1L,sr,32,9.6,velocity,upper_ux,1.3531920909881592 +illusion_1L,sr,32,9.6,velocity,upper_uy,-0.3682805597782135 +illusion_1L,sr,32,9.6,velocity,center_ux,0.5840767025947571 +illusion_1L,sr,32,9.6,velocity,center_uy,0.08542672544717789 +illusion_1L,sr,32,9.6,velocity,lower_ux,0.8113831281661987 +illusion_1L,sr,32,9.6,velocity,lower_uy,0.12285590171813965 +illusion_1L,sr,33,9.9,velocity,upper_ux,1.3120602369308472 +illusion_1L,sr,33,9.9,velocity,upper_uy,-0.21935035288333893 +illusion_1L,sr,33,9.9,velocity,center_ux,0.5463912487030029 +illusion_1L,sr,33,9.9,velocity,center_uy,0.3035081624984741 +illusion_1L,sr,33,9.9,velocity,lower_ux,0.8308917284011841 +illusion_1L,sr,33,9.9,velocity,lower_uy,0.18268808722496033 +illusion_1L,sr,34,10.2,velocity,upper_ux,1.2024997472763062 +illusion_1L,sr,34,10.2,velocity,upper_uy,0.013494005426764488 +illusion_1L,sr,34,10.2,velocity,center_ux,0.5550975203514099 +illusion_1L,sr,34,10.2,velocity,center_uy,0.47012215852737427 +illusion_1L,sr,34,10.2,velocity,lower_ux,0.858521044254303 +illusion_1L,sr,34,10.2,velocity,lower_uy,0.23802094161510468 +illusion_1L,sr,35,10.5,velocity,upper_ux,1.055531620979309 +illusion_1L,sr,35,10.5,velocity,upper_uy,0.2701854705810547 +illusion_1L,sr,35,10.5,velocity,center_ux,0.6048488616943359 +illusion_1L,sr,35,10.5,velocity,center_uy,0.5637479424476624 +illusion_1L,sr,35,10.5,velocity,lower_ux,0.8930125832557678 +illusion_1L,sr,35,10.5,velocity,lower_uy,0.28782105445861816 +illusion_1L,sr,36,10.8,velocity,upper_ux,0.9175953269004822 +illusion_1L,sr,36,10.8,velocity,upper_uy,0.4665732681751251 +illusion_1L,sr,36,10.8,velocity,center_ux,0.6684207916259766 +illusion_1L,sr,36,10.8,velocity,center_uy,0.6124762892723083 +illusion_1L,sr,36,10.8,velocity,lower_ux,0.9328548908233643 +illusion_1L,sr,36,10.8,velocity,lower_uy,0.3319692313671112 +illusion_1L,sr,37,11.1,velocity,upper_ux,0.8180467486381531 +illusion_1L,sr,37,11.1,velocity,upper_uy,0.5588585138320923 +illusion_1L,sr,37,11.1,velocity,center_ux,0.7256230115890503 +illusion_1L,sr,37,11.1,velocity,center_uy,0.6497520804405212 +illusion_1L,sr,37,11.1,velocity,lower_ux,0.9767545461654663 +illusion_1L,sr,37,11.1,velocity,lower_uy,0.3707522451877594 +illusion_1L,sr,38,11.4,velocity,upper_ux,0.7564342021942139 +illusion_1L,sr,38,11.4,velocity,upper_uy,0.5671833157539368 +illusion_1L,sr,38,11.4,velocity,center_ux,0.7726397514343262 +illusion_1L,sr,38,11.4,velocity,center_uy,0.6851983666419983 +illusion_1L,sr,38,11.4,velocity,lower_ux,1.0240046977996826 +illusion_1L,sr,38,11.4,velocity,lower_uy,0.4046471416950226 +illusion_1L,sr,39,11.7,velocity,upper_ux,0.7119037508964539 +illusion_1L,sr,39,11.7,velocity,upper_uy,0.5364272594451904 +illusion_1L,sr,39,11.7,velocity,center_ux,0.8099244236946106 +illusion_1L,sr,39,11.7,velocity,center_uy,0.7150098085403442 +illusion_1L,sr,39,11.7,velocity,lower_ux,1.0745609998703003 +illusion_1L,sr,39,11.7,velocity,lower_uy,0.43417245149612427 +illusion_1L,sr,40,12.0,velocity,upper_ux,0.6682671904563904 +illusion_1L,sr,40,12.0,velocity,upper_uy,0.48756811022758484 +illusion_1L,sr,40,12.0,velocity,center_ux,0.8358271718025208 +illusion_1L,sr,40,12.0,velocity,center_uy,0.7266854643821716 +illusion_1L,sr,40,12.0,velocity,lower_ux,1.128867745399475 +illusion_1L,sr,40,12.0,velocity,lower_uy,0.45973989367485046 +illusion_1L,sr,41,12.3,velocity,upper_ux,0.6231535077095032 +illusion_1L,sr,41,12.3,velocity,upper_uy,0.41752517223358154 +illusion_1L,sr,41,12.3,velocity,center_ux,0.8462026119232178 +illusion_1L,sr,41,12.3,velocity,center_uy,0.7011629939079285 +illusion_1L,sr,41,12.3,velocity,lower_ux,1.1877459287643433 +illusion_1L,sr,41,12.3,velocity,lower_uy,0.48133382201194763 +illusion_1L,sr,42,12.6,velocity,upper_ux,0.5818699598312378 +illusion_1L,sr,42,12.6,velocity,upper_uy,0.3192850649356842 +illusion_1L,sr,42,12.6,velocity,center_ux,0.8369590640068054 +illusion_1L,sr,42,12.6,velocity,center_uy,0.6230347752571106 +illusion_1L,sr,42,12.6,velocity,lower_ux,1.2513160705566406 +illusion_1L,sr,42,12.6,velocity,lower_uy,0.49743643403053284 +illusion_1L,sr,43,12.9,velocity,upper_ux,0.5516213774681091 +illusion_1L,sr,43,12.9,velocity,upper_uy,0.19358398020267487 +illusion_1L,sr,43,12.9,velocity,center_ux,0.8076032996177673 +illusion_1L,sr,43,12.9,velocity,center_uy,0.48973846435546875 +illusion_1L,sr,43,12.9,velocity,lower_ux,1.3163869380950928 +illusion_1L,sr,43,12.9,velocity,lower_uy,0.5021346807479858 +illusion_1L,sr,44,13.2,velocity,upper_ux,0.5397071242332458 +illusion_1L,sr,44,13.2,velocity,upper_uy,0.05184029042720795 +illusion_1L,sr,44,13.2,velocity,center_ux,0.7628293633460999 +illusion_1L,sr,44,13.2,velocity,center_uy,0.3051801919937134 +illusion_1L,sr,44,13.2,velocity,lower_ux,1.3718149662017822 +illusion_1L,sr,44,13.2,velocity,lower_uy,0.4797544479370117 +illusion_1L,sr,45,13.5,velocity,upper_ux,0.5541035532951355 +illusion_1L,sr,45,13.5,velocity,upper_uy,-0.08390314877033234 +illusion_1L,sr,45,13.5,velocity,center_ux,0.713409960269928 +illusion_1L,sr,45,13.5,velocity,center_uy,0.07472684234380722 +illusion_1L,sr,45,13.5,velocity,lower_ux,1.3956177234649658 +illusion_1L,sr,45,13.5,velocity,lower_uy,0.4014243185520172 +illusion_1L,sr,46,13.8,velocity,upper_ux,0.6000964641571045 +illusion_1L,sr,46,13.8,velocity,upper_uy,-0.18733787536621094 +illusion_1L,sr,46,13.8,velocity,center_ux,0.673308253288269 +illusion_1L,sr,46,13.8,velocity,center_uy,-0.18423013389110565 +illusion_1L,sr,46,13.8,velocity,lower_ux,1.3622201681137085 +illusion_1L,sr,46,13.8,velocity,lower_uy,0.23506560921669006 +illusion_1L,sr,47,14.1,velocity,upper_ux,0.6686564683914185 +illusion_1L,sr,47,14.1,velocity,upper_uy,-0.2519822120666504 +illusion_1L,sr,47,14.1,velocity,center_ux,0.6532411575317383 +illusion_1L,sr,47,14.1,velocity,center_uy,-0.4367413818836212 +illusion_1L,sr,47,14.1,velocity,lower_ux,1.2660976648330688 +illusion_1L,sr,47,14.1,velocity,lower_uy,-0.016284512355923653 +illusion_1L,sr,48,14.4,velocity,upper_ux,0.7405452132225037 +illusion_1L,sr,48,14.4,velocity,upper_uy,-0.2986622750759125 +illusion_1L,sr,48,14.4,velocity,center_ux,0.6633493900299072 +illusion_1L,sr,48,14.4,velocity,center_uy,-0.6252761483192444 +illusion_1L,sr,48,14.4,velocity,lower_ux,1.1399435997009277 +illusion_1L,sr,48,14.4,velocity,lower_uy,-0.28430861234664917 +illusion_1L,sr,49,14.7,velocity,upper_ux,0.8075522184371948 +illusion_1L,sr,49,14.7,velocity,upper_uy,-0.34131771326065063 +illusion_1L,sr,49,14.7,velocity,center_ux,0.7063449621200562 +illusion_1L,sr,49,14.7,velocity,center_uy,-0.705746054649353 +illusion_1L,sr,49,14.7,velocity,lower_ux,1.0226900577545166 +illusion_1L,sr,49,14.7,velocity,lower_uy,-0.486473023891449 +illusion_1L,sr,50,15.0,velocity,upper_ux,0.8716095089912415 +illusion_1L,sr,50,15.0,velocity,upper_uy,-0.3786241412162781 +illusion_1L,sr,50,15.0,velocity,center_ux,0.7625512480735779 +illusion_1L,sr,50,15.0,velocity,center_uy,-0.7197464108467102 +illusion_1L,sr,50,15.0,velocity,lower_ux,0.9342367649078369 +illusion_1L,sr,50,15.0,velocity,lower_uy,-0.5805995464324951 +illusion_1L,sr,51,15.3,velocity,upper_ux,0.934514582157135 +illusion_1L,sr,51,15.3,velocity,upper_uy,-0.40936988592147827 +illusion_1L,sr,51,15.3,velocity,center_ux,0.8128576874732971 +illusion_1L,sr,51,15.3,velocity,center_uy,-0.7293113470077515 +illusion_1L,sr,51,15.3,velocity,lower_ux,0.8747106194496155 +illusion_1L,sr,51,15.3,velocity,lower_uy,-0.5870997309684753 +illusion_1L,sr,52,15.6,velocity,upper_ux,0.9969728589057922 +illusion_1L,sr,52,15.6,velocity,upper_uy,-0.4342971742153168 +illusion_1L,sr,52,15.6,velocity,center_ux,0.8546856641769409 +illusion_1L,sr,52,15.6,velocity,center_uy,-0.747687578201294 +illusion_1L,sr,52,15.6,velocity,lower_ux,0.8266431093215942 +illusion_1L,sr,52,15.6,velocity,lower_uy,-0.5599212050437927 +illusion_1L,sr,53,15.9,velocity,upper_ux,1.0599021911621094 +illusion_1L,sr,53,15.9,velocity,upper_uy,-0.454135537147522 +illusion_1L,sr,53,15.9,velocity,center_ux,0.8892139792442322 +illusion_1L,sr,53,15.9,velocity,center_uy,-0.7665268182754517 +illusion_1L,sr,53,15.9,velocity,lower_ux,0.7750878930091858 +illusion_1L,sr,53,15.9,velocity,lower_uy,-0.5246623158454895 +illusion_1L,sr,54,16.2,velocity,upper_ux,1.1245362758636475 +illusion_1L,sr,54,16.2,velocity,upper_uy,-0.4691963791847229 +illusion_1L,sr,54,16.2,velocity,center_ux,0.9137893915176392 +illusion_1L,sr,54,16.2,velocity,center_uy,-0.7669506072998047 +illusion_1L,sr,54,16.2,velocity,lower_ux,0.7175525426864624 +illusion_1L,sr,54,16.2,velocity,lower_uy,-0.4743289053440094 +illusion_1L,sr,55,16.5,velocity,upper_ux,1.1922701597213745 +illusion_1L,sr,55,16.5,velocity,upper_uy,-0.4790140688419342 +illusion_1L,sr,55,16.5,velocity,center_ux,0.9218931794166565 +illusion_1L,sr,55,16.5,velocity,center_uy,-0.7225928902626038 +illusion_1L,sr,55,16.5,velocity,lower_ux,0.6594738364219666 +illusion_1L,sr,55,16.5,velocity,lower_uy,-0.39434951543807983 +illusion_1L,sr,56,16.8,velocity,upper_ux,1.263743281364441 +illusion_1L,sr,56,16.8,velocity,upper_uy,-0.4811238646507263 +illusion_1L,sr,56,16.8,velocity,center_ux,0.9081058502197266 +illusion_1L,sr,56,16.8,velocity,center_uy,-0.618188738822937 +illusion_1L,sr,56,16.8,velocity,lower_ux,0.6096577048301697 +illusion_1L,sr,56,16.8,velocity,lower_uy,-0.2780541777610779 +illusion_1L,sr,57,17.1,velocity,upper_ux,1.335545301437378 +illusion_1L,sr,57,17.1,velocity,upper_uy,-0.46765372157096863 +illusion_1L,sr,57,17.1,velocity,center_ux,0.8724390864372253 +illusion_1L,sr,57,17.1,velocity,center_uy,-0.45558100938796997 +illusion_1L,sr,57,17.1,velocity,lower_ux,0.5771394968032837 +illusion_1L,sr,57,17.1,velocity,lower_uy,-0.1323653757572174 +illusion_1L,sr,58,17.4,velocity,upper_ux,1.394333004951477 +illusion_1L,sr,58,17.4,velocity,upper_uy,-0.4197643995285034 +illusion_1L,sr,58,17.4,velocity,center_ux,0.8214470744132996 +illusion_1L,sr,58,17.4,velocity,center_uy,-0.2346423864364624 +illusion_1L,sr,58,17.4,velocity,lower_ux,0.5704192519187927 +illusion_1L,sr,58,17.4,velocity,lower_uy,0.02256142534315586 +illusion_1L,sr,59,17.7,velocity,upper_ux,1.4141608476638794 +illusion_1L,sr,59,17.7,velocity,upper_uy,-0.3073611557483673 +illusion_1L,sr,59,17.7,velocity,center_ux,0.7702447772026062 +illusion_1L,sr,59,17.7,velocity,center_uy,0.03802229464054108 +illusion_1L,sr,59,17.7,velocity,lower_ux,0.5972964763641357 +illusion_1L,sr,59,17.7,velocity,lower_uy,0.15616534650325775 +illusion_1L,sr,60,18.0,velocity,upper_ux,1.367213487625122 +illusion_1L,sr,60,18.0,velocity,upper_uy,-0.1094031035900116 +illusion_1L,sr,60,18.0,velocity,center_ux,0.7359904050827026 +illusion_1L,sr,60,18.0,velocity,center_uy,0.3238917291164398 +illusion_1L,sr,60,18.0,velocity,lower_ux,0.6567273736000061 +illusion_1L,sr,60,18.0,velocity,lower_uy,0.24402032792568207 +illusion_1L,sr,61,18.3,velocity,upper_ux,1.2556015253067017 +illusion_1L,sr,61,18.3,velocity,upper_uy,0.13930043578147888 +illusion_1L,sr,61,18.3,velocity,center_ux,0.7306616306304932 +illusion_1L,sr,61,18.3,velocity,center_uy,0.5540062189102173 +illusion_1L,sr,61,18.3,velocity,lower_ux,0.7307130694389343 +illusion_1L,sr,61,18.3,velocity,lower_uy,0.2952607274055481 +illusion_1L,sr,62,18.6,velocity,upper_ux,1.1232482194900513 +illusion_1L,sr,62,18.6,velocity,upper_uy,0.34845027327537537 +illusion_1L,sr,62,18.6,velocity,center_ux,0.7585064768791199 +illusion_1L,sr,62,18.6,velocity,center_uy,0.6641952395439148 +illusion_1L,sr,62,18.6,velocity,lower_ux,0.8018139004707336 +illusion_1L,sr,62,18.6,velocity,lower_uy,0.3347122073173523 +illusion_1L,sr,63,18.9,velocity,upper_ux,1.0122199058532715 +illusion_1L,sr,63,18.9,velocity,upper_uy,0.4566998779773712 +illusion_1L,sr,63,18.9,velocity,center_ux,0.8038753867149353 +illusion_1L,sr,63,18.9,velocity,center_uy,0.6806244254112244 +illusion_1L,sr,63,18.9,velocity,lower_ux,0.8677405714988708 +illusion_1L,sr,63,18.9,velocity,lower_uy,0.3693135976791382 +illusion_1L,sr,64,19.2,velocity,upper_ux,0.9346073269844055 +illusion_1L,sr,64,19.2,velocity,upper_uy,0.476241797208786 +illusion_1L,sr,64,19.2,velocity,center_ux,0.8456637859344482 +illusion_1L,sr,64,19.2,velocity,center_uy,0.6809372305870056 +illusion_1L,sr,64,19.2,velocity,lower_ux,0.9311047196388245 +illusion_1L,sr,64,19.2,velocity,lower_uy,0.39778509736061096 +illusion_1L,sr,65,19.5,velocity,upper_ux,0.876813530921936 +illusion_1L,sr,65,19.5,velocity,upper_uy,0.4559604823589325 +illusion_1L,sr,65,19.5,velocity,center_ux,0.8789629936218262 +illusion_1L,sr,65,19.5,velocity,center_uy,0.6929455399513245 +illusion_1L,sr,65,19.5,velocity,lower_ux,0.9933984279632568 +illusion_1L,sr,65,19.5,velocity,lower_uy,0.4205177426338196 +illusion_1L,sr,66,19.8,velocity,upper_ux,0.8214319944381714 +illusion_1L,sr,66,19.8,velocity,upper_uy,0.42407238483428955 +illusion_1L,sr,66,19.8,velocity,center_ux,0.9055049419403076 +illusion_1L,sr,66,19.8,velocity,center_uy,0.7114994525909424 +illusion_1L,sr,66,19.8,velocity,lower_ux,1.0556764602661133 +illusion_1L,sr,66,19.8,velocity,lower_uy,0.4382530152797699 +illusion_1L,sr,67,20.1,velocity,upper_ux,0.7617784738540649 +illusion_1L,sr,67,20.1,velocity,upper_uy,0.3795669674873352 +illusion_1L,sr,67,20.1,velocity,center_ux,0.9238532781600952 +illusion_1L,sr,67,20.1,velocity,center_uy,0.7195866107940674 +illusion_1L,sr,67,20.1,velocity,lower_ux,1.1189788579940796 +illusion_1L,sr,67,20.1,velocity,lower_uy,0.4512549340724945 +illusion_1L,sr,68,20.4,velocity,upper_ux,0.7009284496307373 +illusion_1L,sr,68,20.4,velocity,upper_uy,0.3117545545101166 +illusion_1L,sr,68,20.4,velocity,center_ux,0.928287148475647 +illusion_1L,sr,68,20.4,velocity,center_uy,0.6893813610076904 +illusion_1L,sr,68,20.4,velocity,lower_ux,1.1845600605010986 +illusion_1L,sr,68,20.4,velocity,lower_uy,0.4590761959552765 +illusion_1L,sr,69,20.7,velocity,upper_ux,0.6474822759628296 +illusion_1L,sr,69,20.7,velocity,upper_uy,0.21474294364452362 +illusion_1L,sr,69,20.7,velocity,center_ux,0.9124243259429932 +illusion_1L,sr,69,20.7,velocity,center_uy,0.5989738702774048 +illusion_1L,sr,69,20.7,velocity,lower_ux,1.2531782388687134 +illusion_1L,sr,69,20.7,velocity,lower_uy,0.459828644990921 +illusion_1L,sr,70,21.0,velocity,upper_ux,0.6127382516860962 +illusion_1L,sr,70,21.0,velocity,upper_uy,0.09458119422197342 +illusion_1L,sr,70,21.0,velocity,center_ux,0.874413251876831 +illusion_1L,sr,70,21.0,velocity,center_uy,0.4474640488624573 +illusion_1L,sr,70,21.0,velocity,lower_ux,1.3231505155563354 +illusion_1L,sr,70,21.0,velocity,lower_uy,0.4481021761894226 +illusion_1L,sr,71,21.3,velocity,upper_ux,0.6080747246742249 +illusion_1L,sr,71,21.3,velocity,upper_uy,-0.029332265257835388 +illusion_1L,sr,71,21.3,velocity,center_ux,0.8185136914253235 +illusion_1L,sr,71,21.3,velocity,center_uy,0.23899239301681519 +illusion_1L,sr,71,21.3,velocity,lower_ux,1.3857778310775757 +illusion_1L,sr,71,21.3,velocity,lower_uy,0.4109145998954773 +illusion_1L,sr,72,21.6,velocity,upper_ux,0.6392049789428711 +illusion_1L,sr,72,21.6,velocity,upper_uy,-0.1320033073425293 +illusion_1L,sr,72,21.6,velocity,center_ux,0.7576718330383301 +illusion_1L,sr,72,21.6,velocity,center_uy,-0.02115877903997898 +illusion_1L,sr,72,21.6,velocity,lower_ux,1.4206366539001465 +illusion_1L,sr,72,21.6,velocity,lower_uy,0.32519468665122986 +illusion_1L,sr,73,21.9,velocity,upper_ux,0.6965054869651794 +illusion_1L,sr,73,21.9,velocity,upper_uy,-0.20389339327812195 +illusion_1L,sr,73,21.9,velocity,center_ux,0.711546778678894 +illusion_1L,sr,73,21.9,velocity,center_uy,-0.29964637756347656 +illusion_1L,sr,73,21.9,velocity,lower_ux,1.398357629776001 +illusion_1L,sr,73,21.9,velocity,lower_uy,0.16641801595687866 +illusion_1L,sr,74,22.2,velocity,upper_ux,0.760307788848877 +illusion_1L,sr,74,22.2,velocity,upper_uy,-0.2582598328590393 +illusion_1L,sr,74,22.2,velocity,center_ux,0.6987867951393127 +illusion_1L,sr,74,22.2,velocity,center_uy,-0.5263554453849792 +illusion_1L,sr,74,22.2,velocity,lower_ux,1.3022233247756958 +illusion_1L,sr,74,22.2,velocity,lower_uy,-0.05788363143801689 +illusion_1L,sr,75,22.5,velocity,upper_ux,0.8211087584495544 +illusion_1L,sr,75,22.5,velocity,upper_uy,-0.3057832717895508 +illusion_1L,sr,75,22.5,velocity,center_ux,0.7269428372383118 +illusion_1L,sr,75,22.5,velocity,center_uy,-0.6358653903007507 +illusion_1L,sr,75,22.5,velocity,lower_ux,1.1613456010818481 +illusion_1L,sr,75,22.5,velocity,lower_uy,-0.27713268995285034 +illusion_1L,sr,76,22.8,velocity,upper_ux,0.8797211647033691 +illusion_1L,sr,76,22.8,velocity,upper_uy,-0.3460279703140259 +illusion_1L,sr,76,22.8,velocity,center_ux,0.7764696478843689 +illusion_1L,sr,76,22.8,velocity,center_uy,-0.653896152973175 +illusion_1L,sr,76,22.8,velocity,lower_ux,1.0296565294265747 +illusion_1L,sr,76,22.8,velocity,lower_uy,-0.4125283658504486 +illusion_1L,sr,77,23.1,velocity,upper_ux,0.9375938177108765 +illusion_1L,sr,77,23.1,velocity,upper_uy,-0.3785324990749359 +illusion_1L,sr,77,23.1,velocity,center_ux,0.8211981654167175 +illusion_1L,sr,77,23.1,velocity,center_uy,-0.6564909219741821 +illusion_1L,sr,77,23.1,velocity,lower_ux,0.9356692433357239 +illusion_1L,sr,77,23.1,velocity,lower_uy,-0.45134273171424866 +illusion_1L,sr,78,23.4,velocity,upper_ux,0.9956260323524475 +illusion_1L,sr,78,23.4,velocity,upper_uy,-0.4043838381767273 +illusion_1L,sr,78,23.4,velocity,center_ux,0.8554896116256714 +illusion_1L,sr,78,23.4,velocity,center_uy,-0.6705145239830017 +illusion_1L,sr,78,23.4,velocity,lower_ux,0.872122585773468 +illusion_1L,sr,78,23.4,velocity,lower_uy,-0.4355730712413788 +illusion_1L,sr,79,23.7,velocity,upper_ux,1.0547044277191162 +illusion_1L,sr,79,23.7,velocity,upper_uy,-0.4244660437107086 +illusion_1L,sr,79,23.7,velocity,center_ux,0.8820950388908386 +illusion_1L,sr,79,23.7,velocity,center_uy,-0.6907569766044617 +illusion_1L,sr,79,23.7,velocity,lower_ux,0.818388819694519 +illusion_1L,sr,79,23.7,velocity,lower_uy,-0.4016057550907135 +illusion_1L,sr,80,24.0,velocity,upper_ux,1.1156483888626099 +illusion_1L,sr,80,24.0,velocity,upper_uy,-0.43909427523612976 +illusion_1L,sr,80,24.0,velocity,center_ux,0.9006907939910889 +illusion_1L,sr,80,24.0,velocity,center_uy,-0.7010055780410767 +illusion_1L,sr,80,24.0,velocity,lower_ux,0.7629791498184204 +illusion_1L,sr,80,24.0,velocity,lower_uy,-0.3561103641986847 +illusion_1L,sr,81,24.3,velocity,upper_ux,1.179121971130371 +illusion_1L,sr,81,24.3,velocity,upper_uy,-0.44788941740989685 +illusion_1L,sr,81,24.3,velocity,center_ux,0.9065362811088562 +illusion_1L,sr,81,24.3,velocity,center_uy,-0.674741804599762 +illusion_1L,sr,81,24.3,velocity,lower_ux,0.7063772082328796 +illusion_1L,sr,81,24.3,velocity,lower_uy,-0.2914550006389618 +illusion_1L,sr,82,24.6,velocity,upper_ux,1.2452867031097412 +illusion_1L,sr,82,24.6,velocity,upper_uy,-0.44927459955215454 +illusion_1L,sr,82,24.6,velocity,center_ux,0.8936309814453125 +illusion_1L,sr,82,24.6,velocity,center_uy,-0.5903815031051636 +illusion_1L,sr,82,24.6,velocity,lower_ux,0.6562749147415161 +illusion_1L,sr,82,24.6,velocity,lower_uy,-0.2021699994802475 +illusion_1L,sr,83,24.9,velocity,upper_ux,1.3125261068344116 +illusion_1L,sr,83,24.9,velocity,upper_uy,-0.4390866160392761 +illusion_1L,sr,83,24.9,velocity,center_ux,0.8593538403511047 +illusion_1L,sr,83,24.9,velocity,center_uy,-0.44735777378082275 +illusion_1L,sr,83,24.9,velocity,lower_ux,0.6240208148956299 +illusion_1L,sr,83,24.9,velocity,lower_uy,-0.0933014452457428 +illusion_1L,sr,84,25.2,velocity,upper_ux,1.374058485031128 +illusion_1L,sr,84,25.2,velocity,upper_uy,-0.4078570604324341 +illusion_1L,sr,84,25.2,velocity,center_ux,0.8058100342750549 +illusion_1L,sr,84,25.2,velocity,center_uy,-0.25230661034584045 +illusion_1L,sr,84,25.2,velocity,lower_ux,0.6209933161735535 +illusion_1L,sr,84,25.2,velocity,lower_uy,0.017898401245474815 +illusion_1L,sr,85,25.5,velocity,upper_ux,1.4144186973571777 +illusion_1L,sr,85,25.5,velocity,upper_uy,-0.3386646509170532 +illusion_1L,sr,85,25.5,velocity,center_ux,0.7428489923477173 +illusion_1L,sr,85,25.5,velocity,center_uy,-0.00869661383330822 +illusion_1L,sr,85,25.5,velocity,lower_ux,0.6514934301376343 +illusion_1L,sr,85,25.5,velocity,lower_uy,0.11085193604230881 +illusion_1L,sr,86,25.8,velocity,upper_ux,1.4095723628997803 +illusion_1L,sr,86,25.8,velocity,upper_uy,-0.21075530350208282 +illusion_1L,sr,86,25.8,velocity,center_ux,0.6893045902252197 +illusion_1L,sr,86,25.8,velocity,center_uy,0.2593826949596405 +illusion_1L,sr,86,25.8,velocity,lower_ux,0.7045435309410095 +illusion_1L,sr,86,25.8,velocity,lower_uy,0.18035881221294403 +illusion_1L,sr,87,26.1,velocity,upper_ux,1.3364899158477783 +illusion_1L,sr,87,26.1,velocity,upper_uy,-0.017224816605448723 +illusion_1L,sr,87,26.1,velocity,center_ux,0.6671929955482483 +illusion_1L,sr,87,26.1,velocity,center_uy,0.49034586548805237 +illusion_1L,sr,87,26.1,velocity,lower_ux,0.762688159942627 +illusion_1L,sr,87,26.1,velocity,lower_uy,0.23780372738838196 +illusion_1L,sr,88,26.4,velocity,upper_ux,1.2023820877075195 +illusion_1L,sr,88,26.4,velocity,upper_uy,0.20117373764514923 +illusion_1L,sr,88,26.4,velocity,center_ux,0.6897826194763184 +illusion_1L,sr,88,26.4,velocity,center_uy,0.6152521967887878 +illusion_1L,sr,88,26.4,velocity,lower_ux,0.8191942572593689 +illusion_1L,sr,88,26.4,velocity,lower_uy,0.28936463594436646 +illusion_1L,sr,89,26.7,velocity,upper_ux,1.0554646253585815 +illusion_1L,sr,89,26.7,velocity,upper_uy,0.36635103821754456 +illusion_1L,sr,89,26.7,velocity,center_ux,0.7407509088516235 +illusion_1L,sr,89,26.7,velocity,center_uy,0.6432815790176392 +illusion_1L,sr,89,26.7,velocity,lower_ux,0.8750473856925964 +illusion_1L,sr,89,26.7,velocity,lower_uy,0.3332292437553406 +illusion_1L,sr,90,27.0,velocity,upper_ux,0.9405882954597473 +illusion_1L,sr,90,27.0,velocity,upper_uy,0.43624261021614075 +illusion_1L,sr,90,27.0,velocity,center_ux,0.7895022034645081 +illusion_1L,sr,90,27.0,velocity,center_uy,0.6480419039726257 +illusion_1L,sr,90,27.0,velocity,lower_ux,0.9310459494590759 +illusion_1L,sr,90,27.0,velocity,lower_uy,0.36895766854286194 +illusion_1L,sr,91,27.3,velocity,upper_ux,0.8652248382568359 +illusion_1L,sr,91,27.3,velocity,upper_uy,0.43371832370758057 +illusion_1L,sr,91,27.3,velocity,center_ux,0.8261894583702087 +illusion_1L,sr,91,27.3,velocity,center_uy,0.6628522276878357 +illusion_1L,sr,91,27.3,velocity,lower_ux,0.9874921441078186 +illusion_1L,sr,91,27.3,velocity,lower_uy,0.3976198434829712 +illusion_1L,sr,92,27.6,velocity,upper_ux,0.8100882172584534 +illusion_1L,sr,92,27.6,velocity,upper_uy,0.400561660528183 +illusion_1L,sr,92,27.6,velocity,center_ux,0.8535684943199158 +illusion_1L,sr,92,27.6,velocity,center_uy,0.6840837001800537 +illusion_1L,sr,92,27.6,velocity,lower_ux,1.0450242757797241 +illusion_1L,sr,92,27.6,velocity,lower_uy,0.4200607240200043 +illusion_1L,sr,93,27.9,velocity,upper_ux,0.757910430431366 +illusion_1L,sr,93,27.9,velocity,upper_uy,0.35444554686546326 +illusion_1L,sr,93,27.9,velocity,center_ux,0.8726864457130432 +illusion_1L,sr,93,27.9,velocity,center_uy,0.6967717409133911 +illusion_1L,sr,93,27.9,velocity,lower_ux,1.1045457124710083 +illusion_1L,sr,93,27.9,velocity,lower_uy,0.436575710773468 +illusion_1L,sr,94,28.2,velocity,upper_ux,0.7049893140792847 +illusion_1L,sr,94,28.2,velocity,upper_uy,0.2924964129924774 +illusion_1L,sr,94,28.2,velocity,center_ux,0.8805099725723267 +illusion_1L,sr,94,28.2,velocity,center_uy,0.6759655475616455 +illusion_1L,sr,94,28.2,velocity,lower_ux,1.1667733192443848 +illusion_1L,sr,94,28.2,velocity,lower_uy,0.4468314051628113 +illusion_1L,sr,95,28.5,velocity,upper_ux,0.657243013381958 +illusion_1L,sr,95,28.5,velocity,upper_uy,0.20936325192451477 +illusion_1L,sr,95,28.5,velocity,center_ux,0.872073769569397 +illusion_1L,sr,95,28.5,velocity,center_uy,0.599596381187439 +illusion_1L,sr,95,28.5,velocity,lower_ux,1.2317410707473755 +illusion_1L,sr,95,28.5,velocity,lower_uy,0.44949594140052795 +illusion_1L,sr,96,28.8,velocity,upper_ux,0.6252189874649048 +illusion_1L,sr,96,28.8,velocity,upper_uy,0.10801606625318527 +illusion_1L,sr,96,28.8,velocity,center_ux,0.8441902995109558 +illusion_1L,sr,96,28.8,velocity,center_uy,0.4662250280380249 +illusion_1L,sr,96,28.8,velocity,lower_ux,1.2976889610290527 +illusion_1L,sr,96,28.8,velocity,lower_uy,0.4412443935871124 +illusion_1L,sr,97,29.1,velocity,upper_ux,0.6202185153961182 +illusion_1L,sr,97,29.1,velocity,upper_uy,0.002799233188852668 +illusion_1L,sr,97,29.1,velocity,center_ux,0.7969223260879517 +illusion_1L,sr,97,29.1,velocity,center_uy,0.2851622998714447 +illusion_1L,sr,97,29.1,velocity,lower_ux,1.3588893413543701 +illusion_1L,sr,97,29.1,velocity,lower_uy,0.41488009691238403 +illusion_1L,sr,98,29.4,velocity,upper_ux,0.6471729874610901 +illusion_1L,sr,98,29.4,velocity,upper_uy,-0.08774338662624359 +illusion_1L,sr,98,29.4,velocity,center_ux,0.7361208200454712 +illusion_1L,sr,98,29.4,velocity,center_uy,0.05941086634993553 +illusion_1L,sr,98,29.4,velocity,lower_ux,1.4031153917312622 +illusion_1L,sr,98,29.4,velocity,lower_uy,0.3577424883842468 +illusion_1L,sr,99,29.7,velocity,upper_ux,0.6964206695556641 +illusion_1L,sr,99,29.7,velocity,upper_uy,-0.1577775478363037 +illusion_1L,sr,99,29.7,velocity,center_ux,0.6771880984306335 +illusion_1L,sr,99,29.7,velocity,center_uy,-0.19744013249874115 +illusion_1L,sr,99,29.7,velocity,lower_ux,1.411653757095337 +illusion_1L,sr,99,29.7,velocity,lower_uy,0.25351476669311523 +illusion_1L,sr,100,30.0,velocity,upper_ux,0.7512685060501099 +illusion_1L,sr,100,30.0,velocity,upper_uy,-0.21712695062160492 +illusion_1L,sr,100,30.0,velocity,center_ux,0.6427796483039856 +illusion_1L,sr,100,30.0,velocity,center_uy,-0.4375349283218384 +illusion_1L,sr,100,30.0,velocity,lower_ux,1.3630197048187256 +illusion_1L,sr,100,30.0,velocity,lower_uy,0.09020424634218216 +illusion_1L,sr,101,30.3,velocity,upper_ux,0.804918646812439 +illusion_1L,sr,101,30.3,velocity,upper_uy,-0.27166739106178284 +illusion_1L,sr,101,30.3,velocity,center_ux,0.6528237462043762 +illusion_1L,sr,101,30.3,velocity,center_uy,-0.5903413891792297 +illusion_1L,sr,101,30.3,velocity,lower_ux,1.2482829093933105 +illusion_1L,sr,101,30.3,velocity,lower_uy,-0.11713475733995438 +illusion_1L,sr,102,30.6,velocity,upper_ux,0.858747124671936 +illusion_1L,sr,102,30.6,velocity,upper_uy,-0.3190143406391144 +illusion_1L,sr,102,30.6,velocity,center_ux,0.7011075615882874 +illusion_1L,sr,102,30.6,velocity,center_uy,-0.637645959854126 +illusion_1L,sr,102,30.6,velocity,lower_ux,1.0970898866653442 +illusion_1L,sr,102,30.6,velocity,lower_uy,-0.3076693117618561 +illusion_1L,sr,103,30.9,velocity,upper_ux,0.9136045575141907 +illusion_1L,sr,103,30.9,velocity,upper_uy,-0.358018696308136 +illusion_1L,sr,103,30.9,velocity,center_ux,0.7551189064979553 +illusion_1L,sr,103,30.9,velocity,center_uy,-0.6443713307380676 +illusion_1L,sr,103,30.9,velocity,lower_ux,0.9611643552780151 +illusion_1L,sr,103,30.9,velocity,lower_uy,-0.4181405305862427 +illusion_1L,sr,104,31.2,velocity,upper_ux,0.9693431854248047 +illusion_1L,sr,104,31.2,velocity,upper_uy,-0.3895566463470459 +illusion_1L,sr,104,31.2,velocity,center_ux,0.7969931364059448 +illusion_1L,sr,104,31.2,velocity,center_uy,-0.6577436327934265 +illusion_1L,sr,104,31.2,velocity,lower_ux,0.8678839206695557 +illusion_1L,sr,104,31.2,velocity,lower_uy,-0.44139596819877625 +illusion_1L,sr,105,31.5,velocity,upper_ux,1.026171326637268 +illusion_1L,sr,105,31.5,velocity,upper_uy,-0.4144948422908783 +illusion_1L,sr,105,31.5,velocity,center_ux,0.8279335498809814 +illusion_1L,sr,105,31.5,velocity,center_uy,-0.6792826056480408 +illusion_1L,sr,105,31.5,velocity,lower_ux,0.8073311448097229 +illusion_1L,sr,105,31.5,velocity,lower_uy,-0.41537535190582275 +illusion_1L,sr,106,31.8,velocity,upper_ux,1.0846068859100342 +illusion_1L,sr,106,31.8,velocity,upper_uy,-0.4331793189048767 +illusion_1L,sr,106,31.8,velocity,center_ux,0.8500516414642334 +illusion_1L,sr,106,31.8,velocity,center_uy,-0.6966493725776672 +illusion_1L,sr,106,31.8,velocity,lower_ux,0.7572762370109558 +illusion_1L,sr,106,31.8,velocity,lower_uy,-0.37061721086502075 +illusion_1L,sr,107,32.1,velocity,upper_ux,1.1453274488449097 +illusion_1L,sr,107,32.1,velocity,upper_uy,-0.44538700580596924 +illusion_1L,sr,107,32.1,velocity,center_ux,0.8619328737258911 +illusion_1L,sr,107,32.1,velocity,center_uy,-0.6877031326293945 +illusion_1L,sr,107,32.1,velocity,lower_ux,0.7071025967597961 +illusion_1L,sr,107,32.1,velocity,lower_uy,-0.31228503584861755 +illusion_1L,sr,108,32.4,velocity,upper_ux,1.2086677551269531 +illusion_1L,sr,108,32.4,velocity,upper_uy,-0.45009511709213257 +illusion_1L,sr,108,32.4,velocity,center_ux,0.8597947955131531 +illusion_1L,sr,108,32.4,velocity,center_uy,-0.628021776676178 +illusion_1L,sr,108,32.4,velocity,lower_ux,0.6593388319015503 +illusion_1L,sr,108,32.4,velocity,lower_uy,-0.23551411926746368 +illusion_1L,sr,109,32.7,velocity,upper_ux,1.273576259613037 +illusion_1L,sr,109,32.7,velocity,upper_uy,-0.4448423683643341 +illusion_1L,sr,109,32.7,velocity,center_ux,0.8404037356376648 +illusion_1L,sr,109,32.7,velocity,center_uy,-0.5106145739555359 +illusion_1L,sr,109,32.7,velocity,lower_ux,0.6233827471733093 +illusion_1L,sr,109,32.7,velocity,lower_uy,-0.14004608988761902 +illusion_1L,sr,110,33.0,velocity,upper_ux,1.3358869552612305 +illusion_1L,sr,110,33.0,velocity,upper_uy,-0.42447134852409363 +illusion_1L,sr,110,33.0,velocity,center_ux,0.8024966716766357 +illusion_1L,sr,110,33.0,velocity,center_uy,-0.3460703492164612 +illusion_1L,sr,110,33.0,velocity,lower_ux,0.610836923122406 +illusion_1L,sr,110,33.0,velocity,lower_uy,-0.03624778985977173 +illusion_1L,sr,111,33.3,velocity,upper_ux,1.3861589431762695 +illusion_1L,sr,111,33.3,velocity,upper_uy,-0.3797626793384552 +illusion_1L,sr,111,33.3,velocity,center_ux,0.7478529810905457 +illusion_1L,sr,111,33.3,velocity,center_uy,-0.14040251076221466 +illusion_1L,sr,111,33.3,velocity,lower_ux,0.6295008063316345 +illusion_1L,sr,111,33.3,velocity,lower_uy,0.05803666263818741 +illusion_1L,sr,112,33.6,velocity,upper_ux,1.409662127494812 +illusion_1L,sr,112,33.6,velocity,upper_uy,-0.29821157455444336 +illusion_1L,sr,112,33.6,velocity,center_ux,0.6863827109336853 +illusion_1L,sr,112,33.6,velocity,center_uy,0.10194603353738785 +illusion_1L,sr,112,33.6,velocity,lower_ux,0.6743646264076233 +illusion_1L,sr,112,33.6,velocity,lower_uy,0.13219283521175385 +illusion_1L,sr,113,33.9,velocity,upper_ux,1.3886839151382446 +illusion_1L,sr,113,33.9,velocity,upper_uy,-0.16799147427082062 +illusion_1L,sr,113,33.9,velocity,center_ux,0.6379299759864807 +illusion_1L,sr,113,33.9,velocity,center_uy,0.3509690463542938 +illusion_1L,sr,113,33.9,velocity,lower_ux,0.7286815643310547 +illusion_1L,sr,113,33.9,velocity,lower_uy,0.19312366843223572 +illusion_1L,sr,114,34.2,velocity,upper_ux,1.3067829608917236 +illusion_1L,sr,114,34.2,velocity,upper_uy,0.012349479831755161 +illusion_1L,sr,114,34.2,velocity,center_ux,0.6266322731971741 +illusion_1L,sr,114,34.2,velocity,center_uy,0.5426557660102844 +illusion_1L,sr,114,34.2,velocity,lower_ux,0.7816227674484253 +illusion_1L,sr,114,34.2,velocity,lower_uy,0.2497837096452713 +illusion_1L,sr,115,34.5,velocity,upper_ux,1.1686116456985474 +illusion_1L,sr,115,34.5,velocity,upper_uy,0.21121332049369812 +illusion_1L,sr,115,34.5,velocity,center_ux,0.6616412401199341 +illusion_1L,sr,115,34.5,velocity,center_uy,0.6269784569740295 +illusion_1L,sr,115,34.5,velocity,lower_ux,0.833808422088623 +illusion_1L,sr,115,34.5,velocity,lower_uy,0.30084580183029175 +illusion_1L,sr,116,34.8,velocity,upper_ux,1.0157212018966675 +illusion_1L,sr,116,34.8,velocity,upper_uy,0.36483219265937805 +illusion_1L,sr,116,34.8,velocity,center_ux,0.7175393104553223 +illusion_1L,sr,116,34.8,velocity,center_uy,0.6408382654190063 +illusion_1L,sr,116,34.8,velocity,lower_ux,0.8872573971748352 +illusion_1L,sr,116,34.8,velocity,lower_uy,0.3436983823776245 +illusion_1L,sr,117,35.1,velocity,upper_ux,0.8944840431213379 +illusion_1L,sr,117,35.1,velocity,upper_uy,0.431732177734375 +illusion_1L,sr,117,35.1,velocity,center_ux,0.7654695510864258 +illusion_1L,sr,117,35.1,velocity,center_uy,0.6496325731277466 +illusion_1L,sr,117,35.1,velocity,lower_ux,0.9421850442886353 +illusion_1L,sr,117,35.1,velocity,lower_uy,0.3786696195602417 +illusion_1L,sr,118,35.4,velocity,upper_ux,0.8170266151428223 +illusion_1L,sr,118,35.4,velocity,upper_uy,0.42687535285949707 +illusion_1L,sr,118,35.4,velocity,center_ux,0.8007493615150452 +illusion_1L,sr,118,35.4,velocity,center_uy,0.6689938306808472 +illusion_1L,sr,118,35.4,velocity,lower_ux,0.9984846115112305 +illusion_1L,sr,118,35.4,velocity,lower_uy,0.4067203104496002 +illusion_1L,sr,119,35.7,velocity,upper_ux,0.7644752860069275 +illusion_1L,sr,119,35.7,velocity,upper_uy,0.38824623823165894 +illusion_1L,sr,119,35.7,velocity,center_ux,0.8263440728187561 +illusion_1L,sr,119,35.7,velocity,center_uy,0.6901704668998718 +illusion_1L,sr,119,35.7,velocity,lower_ux,1.0563052892684937 +illusion_1L,sr,119,35.7,velocity,lower_uy,0.4283658266067505 +illusion_1L,sr,120,36.0,velocity,upper_ux,0.7172780632972717 +illusion_1L,sr,120,36.0,velocity,upper_uy,0.3348953127861023 +illusion_1L,sr,120,36.0,velocity,center_ux,0.8424503207206726 +illusion_1L,sr,120,36.0,velocity,center_uy,0.6957009434700012 +illusion_1L,sr,120,36.0,velocity,lower_ux,1.1160712242126465 +illusion_1L,sr,120,36.0,velocity,lower_uy,0.44358012080192566 +illusion_1L,sr,121,36.3,velocity,upper_ux,0.6704503893852234 +illusion_1L,sr,121,36.3,velocity,upper_uy,0.26652562618255615 +illusion_1L,sr,121,36.3,velocity,center_ux,0.8464267253875732 +illusion_1L,sr,121,36.3,velocity,center_uy,0.6605452299118042 +illusion_1L,sr,121,36.3,velocity,lower_ux,1.1780617237091064 +illusion_1L,sr,121,36.3,velocity,lower_uy,0.45165354013442993 +illusion_1L,sr,122,36.6,velocity,upper_ux,0.6302005648612976 +illusion_1L,sr,122,36.6,velocity,upper_uy,0.18033690750598907 +illusion_1L,sr,122,36.6,velocity,center_ux,0.8352208733558655 +illusion_1L,sr,122,36.6,velocity,center_uy,0.5681819319725037 +illusion_1L,sr,122,36.6,velocity,lower_ux,1.241868019104004 +illusion_1L,sr,122,36.6,velocity,lower_uy,0.450801283121109 +illusion_1L,sr,123,36.9,velocity,upper_ux,0.6076916456222534 +illusion_1L,sr,123,36.9,velocity,upper_uy,0.08146730810403824 +illusion_1L,sr,123,36.9,velocity,center_ux,0.8071776032447815 +illusion_1L,sr,123,36.9,velocity,center_uy,0.42418304085731506 +illusion_1L,sr,123,36.9,velocity,lower_ux,1.3049999475479126 +illusion_1L,sr,123,36.9,velocity,lower_uy,0.4373774826526642 +illusion_1L,sr,124,37.2,velocity,upper_ux,0.6135200262069702 +illusion_1L,sr,124,37.2,velocity,upper_uy,-0.015442315489053726 +illusion_1L,sr,124,37.2,velocity,center_ux,0.761867105960846 +illusion_1L,sr,124,37.2,velocity,center_uy,0.24031469225883484 +illusion_1L,sr,124,37.2,velocity,lower_ux,1.3608964681625366 +illusion_1L,sr,124,37.2,velocity,lower_uy,0.4047483205795288 +illusion_1L,sr,125,37.5,velocity,upper_ux,0.6491284966468811 +illusion_1L,sr,125,37.5,velocity,upper_uy,-0.09571995586156845 +illusion_1L,sr,125,37.5,velocity,center_ux,0.7032713294029236 +illusion_1L,sr,125,37.5,velocity,center_uy,0.019177621230483055 +illusion_1L,sr,125,37.5,velocity,lower_ux,1.3980213403701782 +illusion_1L,sr,125,37.5,velocity,lower_uy,0.34323644638061523 +illusion_1L,sr,126,37.8,velocity,upper_ux,0.7012186646461487 +illusion_1L,sr,126,37.8,velocity,upper_uy,-0.15962351858615875 +illusion_1L,sr,126,37.8,velocity,center_ux,0.6451292037963867 +illusion_1L,sr,126,37.8,velocity,center_uy,-0.2271815538406372 +illusion_1L,sr,126,37.8,velocity,lower_ux,1.4018983840942383 +illusion_1L,sr,126,37.8,velocity,lower_uy,0.24261680245399475 +illusion_1L,sr,127,38.1,velocity,upper_ux,0.7543305158615112 +illusion_1L,sr,127,38.1,velocity,upper_uy,-0.21788731217384338 +illusion_1L,sr,127,38.1,velocity,center_ux,0.6105742454528809 +illusion_1L,sr,127,38.1,velocity,center_uy,-0.45395681262016296 +illusion_1L,sr,127,38.1,velocity,lower_ux,1.3571621179580688 +illusion_1L,sr,127,38.1,velocity,lower_uy,0.09590299427509308 +illusion_1L,sr,128,38.4,velocity,upper_ux,0.8051540851593018 +illusion_1L,sr,128,38.4,velocity,upper_uy,-0.2729368209838867 +illusion_1L,sr,128,38.4,velocity,center_ux,0.621301531791687 +illusion_1L,sr,128,38.4,velocity,center_uy,-0.5952863693237305 +illusion_1L,sr,128,38.4,velocity,lower_ux,1.2524179220199585 +illusion_1L,sr,128,38.4,velocity,lower_uy,-0.08977245539426804 +illusion_1L,sr,129,38.7,velocity,upper_ux,0.8564720749855042 +illusion_1L,sr,129,38.7,velocity,upper_uy,-0.32087042927742004 +illusion_1L,sr,129,38.7,velocity,center_ux,0.6713045239448547 +illusion_1L,sr,129,38.7,velocity,center_uy,-0.6369227766990662 +illusion_1L,sr,129,38.7,velocity,lower_ux,1.1026099920272827 +illusion_1L,sr,129,38.7,velocity,lower_uy,-0.2733701765537262 +illusion_1L,sr,130,39.0,velocity,upper_ux,0.9094861745834351 +illusion_1L,sr,130,39.0,velocity,upper_uy,-0.3605411648750305 +illusion_1L,sr,130,39.0,velocity,center_ux,0.7266285419464111 +illusion_1L,sr,130,39.0,velocity,center_uy,-0.6429110765457153 +illusion_1L,sr,130,39.0,velocity,lower_ux,0.9541153907775879 +illusion_1L,sr,130,39.0,velocity,lower_uy,-0.3958199620246887 +illusion_1L,sr,131,39.3,velocity,upper_ux,0.9642878174781799 +illusion_1L,sr,131,39.3,velocity,upper_uy,-0.3927808105945587 +illusion_1L,sr,131,39.3,velocity,center_ux,0.7690029144287109 +illusion_1L,sr,131,39.3,velocity,center_uy,-0.6571844220161438 +illusion_1L,sr,131,39.3,velocity,lower_ux,0.8457924127578735 +illusion_1L,sr,131,39.3,velocity,lower_uy,-0.43352752923965454 +illusion_1L,sr,132,39.6,velocity,upper_ux,1.0209579467773438 +illusion_1L,sr,132,39.6,velocity,upper_uy,-0.4183371365070343 +illusion_1L,sr,132,39.6,velocity,center_ux,0.7999866008758545 +illusion_1L,sr,132,39.6,velocity,center_uy,-0.6791258454322815 +illusion_1L,sr,132,39.6,velocity,lower_ux,0.7788829803466797 +illusion_1L,sr,132,39.6,velocity,lower_uy,-0.4123038351535797 +illusion_1L,sr,133,39.9,velocity,upper_ux,1.0796184539794922 +illusion_1L,sr,133,39.9,velocity,upper_uy,-0.4374490976333618 +illusion_1L,sr,133,39.9,velocity,center_ux,0.8217418193817139 +illusion_1L,sr,133,39.9,velocity,center_uy,-0.6961071491241455 +illusion_1L,sr,133,39.9,velocity,lower_ux,0.7311554551124573 +illusion_1L,sr,133,39.9,velocity,lower_uy,-0.36563265323638916 +illusion_1L,sr,134,40.2,velocity,upper_ux,1.140413761138916 +illusion_1L,sr,134,40.2,velocity,upper_uy,-0.44975316524505615 +illusion_1L,sr,134,40.2,velocity,center_ux,0.8331506848335266 +illusion_1L,sr,134,40.2,velocity,center_uy,-0.6869252324104309 +illusion_1L,sr,134,40.2,velocity,lower_ux,0.6865655779838562 +illusion_1L,sr,134,40.2,velocity,lower_uy,-0.305223286151886 +illusion_1L,sr,135,40.5,velocity,upper_ux,1.2031649351119995 +illusion_1L,sr,135,40.5,velocity,upper_uy,-0.4540739357471466 +illusion_1L,sr,135,40.5,velocity,center_ux,0.8313787579536438 +illusion_1L,sr,135,40.5,velocity,center_uy,-0.6279497742652893 +illusion_1L,sr,135,40.5,velocity,lower_ux,0.6440191268920898 +illusion_1L,sr,135,40.5,velocity,lower_uy,-0.22922652959823608 +illusion_1L,sr,136,40.8,velocity,upper_ux,1.2664978504180908 +illusion_1L,sr,136,40.8,velocity,upper_uy,-0.4479704797267914 +illusion_1L,sr,136,40.8,velocity,center_ux,0.8141704797744751 +illusion_1L,sr,136,40.8,velocity,center_uy,-0.5121694207191467 +illusion_1L,sr,136,40.8,velocity,lower_ux,0.6118036508560181 +illusion_1L,sr,136,40.8,velocity,lower_uy,-0.1376902163028717 +illusion_1L,sr,137,41.1,velocity,upper_ux,1.3264635801315308 +illusion_1L,sr,137,41.1,velocity,upper_uy,-0.4269089698791504 +illusion_1L,sr,137,41.1,velocity,center_ux,0.7804301381111145 +illusion_1L,sr,137,41.1,velocity,center_uy,-0.35171595215797424 +illusion_1L,sr,137,41.1,velocity,lower_ux,0.601624071598053 +illusion_1L,sr,137,41.1,velocity,lower_uy,-0.03976762294769287 +illusion_1L,sr,138,41.4,velocity,upper_ux,1.3749136924743652 +illusion_1L,sr,138,41.4,velocity,upper_uy,-0.3836635947227478 +illusion_1L,sr,138,41.4,velocity,center_ux,0.7303413152694702 +illusion_1L,sr,138,41.4,velocity,center_uy,-0.15555498003959656 +illusion_1L,sr,138,41.4,velocity,lower_ux,0.6215515732765198 +illusion_1L,sr,138,41.4,velocity,lower_uy,0.04884982109069824 +illusion_1L,sr,139,41.7,velocity,upper_ux,1.3999643325805664 +illusion_1L,sr,139,41.7,velocity,upper_uy,-0.3094947040081024 +illusion_1L,sr,139,41.7,velocity,center_ux,0.6703062653541565 +illusion_1L,sr,139,41.7,velocity,center_uy,0.07393084466457367 +illusion_1L,sr,139,41.7,velocity,lower_ux,0.6667115688323975 +illusion_1L,sr,139,41.7,velocity,lower_uy,0.1193426102399826 +illusion_1L,sr,140,42.0,velocity,upper_ux,1.3887799978256226 +illusion_1L,sr,140,42.0,velocity,upper_uy,-0.19698882102966309 +illusion_1L,sr,140,42.0,velocity,center_ux,0.6173816919326782 +illusion_1L,sr,140,42.0,velocity,center_uy,0.31597650051116943 +illusion_1L,sr,140,42.0,velocity,lower_ux,0.7204976677894592 +illusion_1L,sr,140,42.0,velocity,lower_uy,0.17895206809043884 +illusion_1L,sr,141,42.3,velocity,upper_ux,1.3280078172683716 +illusion_1L,sr,141,42.3,velocity,upper_uy,-0.04312772676348686 +illusion_1L,sr,141,42.3,velocity,center_ux,0.5963919758796692 +illusion_1L,sr,141,42.3,velocity,center_uy,0.5161178112030029 +illusion_1L,sr,141,42.3,velocity,lower_ux,0.7719825506210327 +illusion_1L,sr,141,42.3,velocity,lower_uy,0.23636753857135773 +illusion_1L,sr,142,42.6,velocity,upper_ux,1.2102510929107666 +illusion_1L,sr,142,42.6,velocity,upper_uy,0.13903000950813293 +illusion_1L,sr,142,42.6,velocity,center_ux,0.6234198212623596 +illusion_1L,sr,142,42.6,velocity,center_uy,0.6174919009208679 +illusion_1L,sr,142,42.6,velocity,lower_ux,0.8220510482788086 +illusion_1L,sr,142,42.6,velocity,lower_uy,0.28958258032798767 +illusion_1L,sr,143,42.9,velocity,upper_ux,1.0563080310821533 +illusion_1L,sr,143,42.9,velocity,upper_uy,0.30522894859313965 +illusion_1L,sr,143,42.9,velocity,center_ux,0.6796471476554871 +illusion_1L,sr,143,42.9,velocity,center_uy,0.6375510096549988 +illusion_1L,sr,143,42.9,velocity,lower_ux,0.8732272386550903 +illusion_1L,sr,143,42.9,velocity,lower_uy,0.33502906560897827 +illusion_1L,sr,144,43.2,velocity,upper_ux,0.9129425883293152 +illusion_1L,sr,144,43.2,velocity,upper_uy,0.40390145778656006 +illusion_1L,sr,144,43.2,velocity,center_ux,0.731255292892456 +illusion_1L,sr,144,43.2,velocity,center_uy,0.6441901326179504 +illusion_1L,sr,144,43.2,velocity,lower_ux,0.9260930418968201 +illusion_1L,sr,144,43.2,velocity,lower_uy,0.3725690543651581 +illusion_1L,sr,145,43.5,velocity,upper_ux,0.8127754926681519 +illusion_1L,sr,145,43.5,velocity,upper_uy,0.42349550127983093 +illusion_1L,sr,145,43.5,velocity,center_ux,0.7687587738037109 +illusion_1L,sr,145,43.5,velocity,center_uy,0.6621504426002502 +illusion_1L,sr,145,43.5,velocity,lower_ux,0.9808456301689148 +illusion_1L,sr,145,43.5,velocity,lower_uy,0.4030665159225464 +illusion_1L,sr,146,43.8,velocity,upper_ux,0.7512257695198059 +illusion_1L,sr,146,43.8,velocity,upper_uy,0.3932861387729645 +illusion_1L,sr,146,43.8,velocity,center_ux,0.7956900596618652 +illusion_1L,sr,146,43.8,velocity,center_uy,0.6841813921928406 +illusion_1L,sr,146,43.8,velocity,lower_ux,1.037769079208374 +illusion_1L,sr,146,43.8,velocity,lower_uy,0.427076518535614 +illusion_1L,sr,147,44.1,velocity,upper_ux,0.706109344959259 +illusion_1L,sr,147,44.1,velocity,upper_uy,0.34165534377098083 +illusion_1L,sr,147,44.1,velocity,center_ux,0.8133602738380432 +illusion_1L,sr,147,44.1,velocity,center_uy,0.6951642632484436 +illusion_1L,sr,147,44.1,velocity,lower_ux,1.097090482711792 +illusion_1L,sr,147,44.1,velocity,lower_uy,0.4445739686489105 +illusion_1L,sr,148,44.4,velocity,upper_ux,0.6642938852310181 +illusion_1L,sr,148,44.4,velocity,upper_uy,0.2764391303062439 +illusion_1L,sr,148,44.4,velocity,center_ux,0.8201045393943787 +illusion_1L,sr,148,44.4,velocity,center_uy,0.6719958782196045 +illusion_1L,sr,148,44.4,velocity,lower_ux,1.15871000289917 +illusion_1L,sr,148,44.4,velocity,lower_uy,0.4548487365245819 +illusion_1L,sr,149,44.7,velocity,upper_ux,0.6268656849861145 +illusion_1L,sr,149,44.7,velocity,upper_uy,0.19627243280410767 +illusion_1L,sr,149,44.7,velocity,center_ux,0.8134417533874512 +illusion_1L,sr,149,44.7,velocity,center_uy,0.5946605205535889 +illusion_1L,sr,149,44.7,velocity,lower_ux,1.2219061851501465 +illusion_1L,sr,149,44.7,velocity,lower_uy,0.45627543330192566 +illusion_1L,sr,150,45.0,velocity,upper_ux,0.6031051874160767 +illusion_1L,sr,150,45.0,velocity,upper_uy,0.10393736511468887 +illusion_1L,sr,150,45.0,velocity,center_ux,0.7917472720146179 +illusion_1L,sr,150,45.0,velocity,center_uy,0.46357372403144836 +illusion_1L,sr,150,45.0,velocity,lower_ux,1.2843495607376099 +illusion_1L,sr,150,45.0,velocity,lower_uy,0.44579875469207764 +illusion_1L,sr,151,45.3,velocity,upper_ux,0.6040821075439453 +illusion_1L,sr,151,45.3,velocity,upper_uy,0.010896995663642883 +illusion_1L,sr,151,45.3,velocity,center_ux,0.7538671493530273 +illusion_1L,sr,151,45.3,velocity,center_uy,0.29286518692970276 +illusion_1L,sr,151,45.3,velocity,lower_ux,1.3406853675842285 +illusion_1L,sr,151,45.3,velocity,lower_uy,0.41823115944862366 +illusion_1L,sr,152,45.6,velocity,upper_ux,0.6341995000839233 +illusion_1L,sr,152,45.6,velocity,upper_uy,-0.0688374936580658 +illusion_1L,sr,152,45.6,velocity,center_ux,0.7006331086158752 +illusion_1L,sr,152,45.6,velocity,center_uy,0.08892877399921417 +illusion_1L,sr,152,45.6,velocity,lower_ux,1.3817704916000366 +illusion_1L,sr,152,45.6,velocity,lower_uy,0.3663555681705475 +illusion_1L,sr,153,45.9,velocity,upper_ux,0.683556854724884 +illusion_1L,sr,153,45.9,velocity,upper_uy,-0.1327984631061554 +illusion_1L,sr,153,45.9,velocity,center_ux,0.6407020688056946 +illusion_1L,sr,153,45.9,velocity,center_uy,-0.14367957413196564 +illusion_1L,sr,153,45.9,velocity,lower_ux,1.3963465690612793 +illusion_1L,sr,153,45.9,velocity,lower_uy,0.2828669846057892 +illusion_1L,sr,154,46.2,velocity,upper_ux,0.7359718084335327 +illusion_1L,sr,154,46.2,velocity,upper_uy,-0.19107221066951752 +illusion_1L,sr,154,46.2,velocity,center_ux,0.5936533808708191 +illusion_1L,sr,154,46.2,velocity,center_uy,-0.3769655227661133 +illusion_1L,sr,154,46.2,velocity,lower_ux,1.373559832572937 +illusion_1L,sr,154,46.2,velocity,lower_uy,0.16278231143951416 +illusion_1L,sr,155,46.5,velocity,upper_ux,0.7855089902877808 +illusion_1L,sr,155,46.5,velocity,upper_uy,-0.24829737842082977 +illusion_1L,sr,155,46.5,velocity,center_ux,0.5846656560897827 +illusion_1L,sr,155,46.5,velocity,center_uy,-0.552417516708374 +illusion_1L,sr,155,46.5,velocity,lower_ux,1.3017783164978027 +illusion_1L,sr,155,46.5,velocity,lower_uy,0.005790993571281433 +illusion_1L,sr,156,46.8,velocity,upper_ux,0.8348414301872253 +illusion_1L,sr,156,46.8,velocity,upper_uy,-0.3002528250217438 +illusion_1L,sr,156,46.8,velocity,center_ux,0.6232443451881409 +illusion_1L,sr,156,46.8,velocity,center_uy,-0.6265169978141785 +illusion_1L,sr,156,46.8,velocity,lower_ux,1.1763169765472412 +illusion_1L,sr,156,46.8,velocity,lower_uy,-0.17170242965221405 +illusion_1L,sr,157,47.1,velocity,upper_ux,0.8857821822166443 +illusion_1L,sr,157,47.1,velocity,upper_uy,-0.34426116943359375 +illusion_1L,sr,157,47.1,velocity,center_ux,0.682203471660614 +illusion_1L,sr,157,47.1,velocity,center_uy,-0.6373188495635986 +illusion_1L,sr,157,47.1,velocity,lower_ux,1.021156668663025 +illusion_1L,sr,157,47.1,velocity,lower_uy,-0.324986070394516 +illusion_1L,sr,158,47.4,velocity,upper_ux,0.9384711980819702 +illusion_1L,sr,158,47.4,velocity,upper_uy,-0.38062983751296997 +illusion_1L,sr,158,47.4,velocity,center_ux,0.7309620976448059 +illusion_1L,sr,158,47.4,velocity,center_uy,-0.6466906070709229 +illusion_1L,sr,158,47.4,velocity,lower_ux,0.8820604681968689 +illusion_1L,sr,158,47.4,velocity,lower_uy,-0.40838029980659485 +illusion_1L,sr,159,47.7,velocity,upper_ux,0.9931106567382812 +illusion_1L,sr,159,47.7,velocity,upper_uy,-0.4101293981075287 +illusion_1L,sr,159,47.7,velocity,center_ux,0.7654294371604919 +illusion_1L,sr,159,47.7,velocity,center_uy,-0.6670056581497192 +illusion_1L,sr,159,47.7,velocity,lower_ux,0.7872490882873535 +illusion_1L,sr,159,47.7,velocity,lower_uy,-0.41710299253463745 +illusion_1L,sr,160,48.0,velocity,upper_ux,1.0501137971878052 +illusion_1L,sr,160,48.0,velocity,upper_uy,-0.4331129491329193 +illusion_1L,sr,160,48.0,velocity,center_ux,0.7895871996879578 +illusion_1L,sr,160,48.0,velocity,center_uy,-0.6881043910980225 +illusion_1L,sr,160,48.0,velocity,lower_ux,0.7290696501731873 +illusion_1L,sr,160,48.0,velocity,lower_uy,-0.3811562955379486 +illusion_1L,sr,161,48.3,velocity,upper_ux,1.1097759008407593 +illusion_1L,sr,161,48.3,velocity,upper_uy,-0.4493487477302551 +illusion_1L,sr,161,48.3,velocity,center_ux,0.8042734861373901 +illusion_1L,sr,161,48.3,velocity,center_uy,-0.6930700540542603 +illusion_1L,sr,161,48.3,velocity,lower_ux,0.6859566569328308 +illusion_1L,sr,161,48.3,velocity,lower_uy,-0.3256275951862335 +illusion_1L,sr,162,48.6,velocity,upper_ux,1.1719005107879639 +illusion_1L,sr,162,48.6,velocity,upper_uy,-0.4578883945941925 +illusion_1L,sr,162,48.6,velocity,center_ux,0.8078513741493225 +illusion_1L,sr,162,48.6,velocity,center_uy,-0.6583147644996643 +illusion_1L,sr,162,48.6,velocity,lower_ux,0.646766722202301 +illusion_1L,sr,162,48.6,velocity,lower_uy,-0.2566213607788086 +illusion_1L,sr,163,48.9,velocity,upper_ux,1.2352380752563477 +illusion_1L,sr,163,48.9,velocity,upper_uy,-0.45679524540901184 +illusion_1L,sr,163,48.9,velocity,center_ux,0.7982317805290222 +illusion_1L,sr,163,48.9,velocity,center_uy,-0.5676788091659546 +illusion_1L,sr,163,48.9,velocity,lower_ux,0.6138162016868591 +illusion_1L,sr,163,48.9,velocity,lower_uy,-0.17361190915107727 +illusion_1L,sr,164,49.2,velocity,upper_ux,1.2966259717941284 +illusion_1L,sr,164,49.2,velocity,upper_uy,-0.44257980585098267 +illusion_1L,sr,164,49.2,velocity,center_ux,0.7740365266799927 +illusion_1L,sr,164,49.2,velocity,center_uy,-0.4265497028827667 +illusion_1L,sr,164,49.2,velocity,lower_ux,0.5968325734138489 +illusion_1L,sr,164,49.2,velocity,lower_uy,-0.08127684146165848 +illusion_1L,sr,165,49.5,velocity,upper_ux,1.3496601581573486 +illusion_1L,sr,165,49.5,velocity,upper_uy,-0.409758597612381 +illusion_1L,sr,165,49.5,velocity,center_ux,0.7338651418685913 +illusion_1L,sr,165,49.5,velocity,center_uy,-0.24929161369800568 +illusion_1L,sr,165,49.5,velocity,lower_ux,0.605924129486084 +illusion_1L,sr,165,49.5,velocity,lower_uy,0.007847217842936516 +illusion_1L,sr,166,49.8,velocity,upper_ux,1.384668231010437 +illusion_1L,sr,166,49.8,velocity,upper_uy,-0.3514455556869507 +illusion_1L,sr,166,49.8,velocity,center_ux,0.6790578365325928 +illusion_1L,sr,166,49.8,velocity,center_uy,-0.04069281741976738 +illusion_1L,sr,166,49.8,velocity,lower_ux,0.6423680186271667 +illusion_1L,sr,166,49.8,velocity,lower_uy,0.08188232779502869 +illusion_1L,sr,167,50.1,velocity,upper_ux,1.391295313835144 +illusion_1L,sr,167,50.1,velocity,upper_uy,-0.26171088218688965 +illusion_1L,sr,167,50.1,velocity,center_ux,0.6199532747268677 +illusion_1L,sr,167,50.1,velocity,center_uy,0.19236883521080017 +illusion_1L,sr,167,50.1,velocity,lower_ux,0.6934868693351746 +illusion_1L,sr,167,50.1,velocity,lower_uy,0.14258407056331635 +illusion_1L,sr,168,50.4,velocity,upper_ux,1.3604087829589844 +illusion_1L,sr,168,50.4,velocity,upper_uy,-0.137460857629776 +illusion_1L,sr,168,50.4,velocity,center_ux,0.5778064131736755 +illusion_1L,sr,168,50.4,velocity,center_uy,0.4170028269290924 +illusion_1L,sr,168,50.4,velocity,lower_ux,0.7446882128715515 +illusion_1L,sr,168,50.4,velocity,lower_uy,0.20043699443340302 +illusion_1L,sr,169,50.7,velocity,upper_ux,1.2817668914794922 +illusion_1L,sr,169,50.7,velocity,upper_uy,0.019856058061122894 +illusion_1L,sr,169,50.7,velocity,center_ux,0.5774160623550415 +illusion_1L,sr,169,50.7,velocity,center_uy,0.5739058256149292 +illusion_1L,sr,169,50.7,velocity,lower_ux,0.7932546734809875 +illusion_1L,sr,169,50.7,velocity,lower_uy,0.25727808475494385 +illusion_1L,sr,170,51.0,velocity,upper_ux,1.1523879766464233 +illusion_1L,sr,170,51.0,velocity,upper_uy,0.19218680262565613 +illusion_1L,sr,170,51.0,velocity,center_ux,0.6228866577148438 +illusion_1L,sr,170,51.0,velocity,center_uy,0.6311962008476257 +illusion_1L,sr,170,51.0,velocity,lower_ux,0.8424105644226074 +illusion_1L,sr,170,51.0,velocity,lower_uy,0.3082326650619507 +illusion_1L,sr,171,51.3,velocity,upper_ux,0.9974558353424072 +illusion_1L,sr,171,51.3,velocity,upper_uy,0.33570125699043274 +illusion_1L,sr,171,51.3,velocity,center_ux,0.6824952363967896 +illusion_1L,sr,171,51.3,velocity,center_uy,0.6380119323730469 +illusion_1L,sr,171,51.3,velocity,lower_ux,0.8934183716773987 +illusion_1L,sr,171,51.3,velocity,lower_uy,0.3512669503688812 +illusion_1L,sr,172,51.6,velocity,upper_ux,0.8614389300346375 +illusion_1L,sr,172,51.6,velocity,upper_uy,0.40907520055770874 +illusion_1L,sr,172,51.6,velocity,center_ux,0.7290636301040649 +illusion_1L,sr,172,51.6,velocity,center_uy,0.6493037343025208 +illusion_1L,sr,172,51.6,velocity,lower_ux,0.9462474584579468 +illusion_1L,sr,172,51.6,velocity,lower_uy,0.3868694305419922 +illusion_1L,sr,173,51.9,velocity,upper_ux,0.7697980999946594 +illusion_1L,sr,173,51.9,velocity,upper_uy,0.41118213534355164 +illusion_1L,sr,173,51.9,velocity,center_ux,0.7613161206245422 +illusion_1L,sr,173,51.9,velocity,center_uy,0.6706148982048035 +illusion_1L,sr,173,51.9,velocity,lower_ux,1.0010294914245605 +illusion_1L,sr,173,51.9,velocity,lower_uy,0.4157209098339081 +illusion_1L,sr,174,52.2,velocity,upper_ux,0.7135097980499268 +illusion_1L,sr,174,52.2,velocity,upper_uy,0.37166544795036316 +illusion_1L,sr,174,52.2,velocity,center_ux,0.7831671833992004 +illusion_1L,sr,174,52.2,velocity,center_uy,0.6903786659240723 +illusion_1L,sr,174,52.2,velocity,lower_ux,1.0582098960876465 +illusion_1L,sr,174,52.2,velocity,lower_uy,0.4380195736885071 +illusion_1L,sr,175,52.5,velocity,upper_ux,0.6717692613601685 +illusion_1L,sr,175,52.5,velocity,upper_uy,0.3135415315628052 +illusion_1L,sr,175,52.5,velocity,center_ux,0.7952843308448792 +illusion_1L,sr,175,52.5,velocity,center_uy,0.6905115842819214 +illusion_1L,sr,175,52.5,velocity,lower_ux,1.1181461811065674 +illusion_1L,sr,175,52.5,velocity,lower_uy,0.453367680311203 +illusion_1L,sr,176,52.8,velocity,upper_ux,0.6346988677978516 +illusion_1L,sr,176,52.8,velocity,upper_uy,0.24223996698856354 +illusion_1L,sr,176,52.8,velocity,center_ux,0.7963329553604126 +illusion_1L,sr,176,52.8,velocity,center_uy,0.6475900411605835 +illusion_1L,sr,176,52.8,velocity,lower_ux,1.1806013584136963 +illusion_1L,sr,176,52.8,velocity,lower_uy,0.46063312888145447 +illusion_1L,sr,177,53.1,velocity,upper_ux,0.6053503155708313 +illusion_1L,sr,177,53.1,velocity,upper_uy,0.15798234939575195 +illusion_1L,sr,177,53.1,velocity,center_ux,0.7847360968589783 +illusion_1L,sr,177,53.1,velocity,center_uy,0.5483840107917786 +illusion_1L,sr,177,53.1,velocity,lower_ux,1.244016170501709 +illusion_1L,sr,177,53.1,velocity,lower_uy,0.45758992433547974 +illusion_1L,sr,178,53.4,velocity,upper_ux,0.5934727191925049 +illusion_1L,sr,178,53.4,velocity,upper_uy,0.06663485616445541 +illusion_1L,sr,178,53.4,velocity,center_ux,0.7591037750244141 +illusion_1L,sr,178,53.4,velocity,center_uy,0.4011765122413635 +illusion_1L,sr,178,53.4,velocity,lower_ux,1.3045119047164917 +illusion_1L,sr,178,53.4,velocity,lower_uy,0.4404597878456116 +illusion_1L,sr,179,53.7,velocity,upper_ux,0.6082021594047546 +illusion_1L,sr,179,53.7,velocity,upper_uy,-0.019047774374485016 +illusion_1L,sr,179,53.7,velocity,center_ux,0.7177694439888 +illusion_1L,sr,179,53.7,velocity,center_uy,0.21995674073696136 +illusion_1L,sr,179,53.7,velocity,lower_ux,1.3549813032150269 +illusion_1L,sr,179,53.7,velocity,lower_uy,0.40363553166389465 +illusion_1L,sr,180,54.0,velocity,upper_ux,0.6484507918357849 +illusion_1L,sr,180,54.0,velocity,upper_uy,-0.08922135829925537 +illusion_1L,sr,180,54.0,velocity,center_ux,0.6623785495758057 +illusion_1L,sr,180,54.0,velocity,center_uy,0.008736063726246357 +illusion_1L,sr,180,54.0,velocity,lower_ux,1.3855700492858887 +illusion_1L,sr,180,54.0,velocity,lower_uy,0.3407197892665863 +illusion_1L,sr,181,54.3,velocity,upper_ux,0.7000890374183655 +illusion_1L,sr,181,54.3,velocity,upper_uy,-0.14820730686187744 +illusion_1L,sr,181,54.3,velocity,center_ux,0.6043328046798706 +illusion_1L,sr,181,54.3,velocity,center_uy,-0.22368106245994568 +illusion_1L,sr,181,54.3,velocity,lower_ux,1.3868213891983032 +illusion_1L,sr,181,54.3,velocity,lower_uy,0.24699699878692627 +illusion_1L,sr,182,54.6,velocity,upper_ux,0.7501561641693115 +illusion_1L,sr,182,54.6,velocity,upper_uy,-0.20601555705070496 +illusion_1L,sr,182,54.6,velocity,center_ux,0.5658376812934875 +illusion_1L,sr,182,54.6,velocity,center_uy,-0.4416044056415558 +illusion_1L,sr,182,54.6,velocity,lower_ux,1.350886583328247 +illusion_1L,sr,182,54.6,velocity,lower_uy,0.12060330808162689 +illusion_1L,sr,183,54.9,velocity,upper_ux,0.797942578792572 +illusion_1L,sr,183,54.9,velocity,upper_uy,-0.2626284658908844 +illusion_1L,sr,183,54.9,velocity,center_ux,0.5711071491241455 +illusion_1L,sr,183,54.9,velocity,center_uy,-0.5863973498344421 +illusion_1L,sr,183,54.9,velocity,lower_ux,1.2683824300765991 +illusion_1L,sr,183,54.9,velocity,lower_uy,-0.03606992959976196 +illusion_1L,sr,184,55.2,velocity,upper_ux,0.846920907497406 +illusion_1L,sr,184,55.2,velocity,upper_uy,-0.3130001723766327 +illusion_1L,sr,184,55.2,velocity,center_ux,0.6207252740859985 +illusion_1L,sr,184,55.2,velocity,center_uy,-0.6341972351074219 +illusion_1L,sr,184,55.2,velocity,lower_ux,1.1372628211975098 +illusion_1L,sr,184,55.2,velocity,lower_uy,-0.20434385538101196 +illusion_1L,sr,185,55.5,velocity,upper_ux,0.8980086445808411 +illusion_1L,sr,185,55.5,velocity,upper_uy,-0.35548582673072815 +illusion_1L,sr,185,55.5,velocity,center_ux,0.6807323098182678 +illusion_1L,sr,185,55.5,velocity,center_uy,-0.639405369758606 +illusion_1L,sr,185,55.5,velocity,lower_ux,0.9829113483428955 +illusion_1L,sr,185,55.5,velocity,lower_uy,-0.3415238857269287 +illusion_1L,sr,186,55.8,velocity,upper_ux,0.9510334134101868 +illusion_1L,sr,186,55.8,velocity,upper_uy,-0.39065006375312805 +illusion_1L,sr,186,55.8,velocity,center_ux,0.7262639403343201 +illusion_1L,sr,186,55.8,velocity,center_uy,-0.6518856883049011 +illusion_1L,sr,186,55.8,velocity,lower_ux,0.8486251831054688 +illusion_1L,sr,186,55.8,velocity,lower_uy,-0.4090312719345093 +illusion_1L,sr,187,56.1,velocity,upper_ux,1.0060449838638306 +illusion_1L,sr,187,56.1,velocity,upper_uy,-0.4190787374973297 +illusion_1L,sr,187,56.1,velocity,center_ux,0.7574648261070251 +illusion_1L,sr,187,56.1,velocity,center_uy,-0.6734769344329834 +illusion_1L,sr,187,56.1,velocity,lower_ux,0.7584651112556458 +illusion_1L,sr,187,56.1,velocity,lower_uy,-0.4073377847671509 +illusion_1L,sr,188,56.4,velocity,upper_ux,1.0633944272994995 +illusion_1L,sr,188,56.4,velocity,upper_uy,-0.44087672233581543 +illusion_1L,sr,188,56.4,velocity,center_ux,0.7780475616455078 +illusion_1L,sr,188,56.4,velocity,center_uy,-0.6917668581008911 +illusion_1L,sr,188,56.4,velocity,lower_ux,0.7030048370361328 +illusion_1L,sr,188,56.4,velocity,lower_uy,-0.36548587679862976 +illusion_1L,sr,189,56.7,velocity,upper_ux,1.1234207153320312 +illusion_1L,sr,189,56.7,velocity,upper_uy,-0.4555518627166748 +illusion_1L,sr,189,56.7,velocity,center_ux,0.7885943055152893 +illusion_1L,sr,189,56.7,velocity,center_uy,-0.6879761219024658 +illusion_1L,sr,189,56.7,velocity,lower_ux,0.6620492339134216 +illusion_1L,sr,189,56.7,velocity,lower_uy,-0.30541521310806274 +illusion_1L,sr,190,57.0,velocity,upper_ux,1.18586266040802 +illusion_1L,sr,190,57.0,velocity,upper_uy,-0.4618217349052429 +illusion_1L,sr,190,57.0,velocity,center_ux,0.7880508899688721 +illusion_1L,sr,190,57.0,velocity,center_uy,-0.6391564011573792 +illusion_1L,sr,190,57.0,velocity,lower_ux,0.6264521479606628 +illusion_1L,sr,190,57.0,velocity,lower_uy,-0.23240841925144196 +illusion_1L,sr,191,57.3,velocity,upper_ux,1.2490309476852417 +illusion_1L,sr,191,57.3,velocity,upper_uy,-0.4573259949684143 +illusion_1L,sr,191,57.3,velocity,center_ux,0.7752643823623657 +illusion_1L,sr,191,57.3,velocity,center_uy,-0.5343520641326904 +illusion_1L,sr,191,57.3,velocity,lower_ux,0.5997316241264343 +illusion_1L,sr,191,57.3,velocity,lower_uy,-0.14737199246883392 +illusion_1L,sr,192,57.6,velocity,upper_ux,1.3086918592453003 +illusion_1L,sr,192,57.6,velocity,upper_uy,-0.43814533948898315 +illusion_1L,sr,192,57.6,velocity,center_ux,0.74887615442276 +illusion_1L,sr,192,57.6,velocity,center_uy,-0.3834971487522125 +illusion_1L,sr,192,57.6,velocity,lower_ux,0.591613233089447 +illusion_1L,sr,192,57.6,velocity,lower_uy,-0.05693588778376579 +illusion_1L,sr,193,57.9,velocity,upper_ux,1.3573182821273804 +illusion_1L,sr,193,57.9,velocity,upper_uy,-0.3987210988998413 +illusion_1L,sr,193,57.9,velocity,center_ux,0.7069841027259827 +illusion_1L,sr,193,57.9,velocity,center_uy,-0.20007120072841644 +illusion_1L,sr,193,57.9,velocity,lower_ux,0.6103031635284424 +illusion_1L,sr,193,57.9,velocity,lower_uy,0.026223691180348396 +illusion_1L,sr,194,58.2,velocity,upper_ux,1.3851016759872437 +illusion_1L,sr,194,58.2,velocity,upper_uy,-0.3331383168697357 +illusion_1L,sr,194,58.2,velocity,center_ux,0.6514492034912109 +illusion_1L,sr,194,58.2,velocity,center_uy,0.012286042794585228 +illusion_1L,sr,194,58.2,velocity,lower_ux,0.6530066132545471 +illusion_1L,sr,194,58.2,velocity,lower_uy,0.0938764438033104 +illusion_1L,sr,195,58.5,velocity,upper_ux,1.383175015449524 +illusion_1L,sr,195,58.5,velocity,upper_uy,-0.23755693435668945 +illusion_1L,sr,195,58.5,velocity,center_ux,0.5942066311836243 +illusion_1L,sr,195,58.5,velocity,center_uy,0.24346168339252472 +illusion_1L,sr,195,58.5,velocity,lower_ux,0.7047703266143799 +illusion_1L,sr,195,58.5,velocity,lower_uy,0.15193797647953033 +illusion_1L,sr,196,58.8,velocity,upper_ux,1.3445378541946411 +illusion_1L,sr,196,58.8,velocity,upper_uy,-0.11095602810382843 +illusion_1L,sr,196,58.8,velocity,center_ux,0.5579724907875061 +illusion_1L,sr,196,58.8,velocity,center_uy,0.45620858669281006 +illusion_1L,sr,196,58.8,velocity,lower_ux,0.753930926322937 +illusion_1L,sr,196,58.8,velocity,lower_uy,0.20978254079818726 +illusion_1L,sr,197,59.1,velocity,upper_ux,1.2605036497116089 +illusion_1L,sr,197,59.1,velocity,upper_uy,0.04368417337536812 +illusion_1L,sr,197,59.1,velocity,center_ux,0.566552460193634 +illusion_1L,sr,197,59.1,velocity,center_uy,0.5928239226341248 +illusion_1L,sr,197,59.1,velocity,lower_ux,0.8010390400886536 +illusion_1L,sr,197,59.1,velocity,lower_uy,0.2661892771720886 +illusion_1L,sr,198,59.4,velocity,upper_ux,1.1293210983276367 +illusion_1L,sr,198,59.4,velocity,upper_uy,0.20790766179561615 +illusion_1L,sr,198,59.4,velocity,center_ux,0.6183351278305054 +illusion_1L,sr,198,59.4,velocity,center_uy,0.6348743438720703 +illusion_1L,sr,198,59.4,velocity,lower_ux,0.8496850728988647 +illusion_1L,sr,198,59.4,velocity,lower_uy,0.3161310851573944 +illusion_1L,sr,199,59.7,velocity,upper_ux,0.9756459593772888 +illusion_1L,sr,199,59.7,velocity,upper_uy,0.34075796604156494 +illusion_1L,sr,199,59.7,velocity,center_ux,0.6782997846603394 +illusion_1L,sr,199,59.7,velocity,center_uy,0.639387845993042 +illusion_1L,sr,199,59.7,velocity,lower_ux,0.9006934762001038 +illusion_1L,sr,199,59.7,velocity,lower_uy,0.3582686483860016 +illusion_1L,sr,200,60.0,velocity,upper_ux,0.8416419625282288 +illusion_1L,sr,200,60.0,velocity,upper_uy,0.4054129123687744 +illusion_1L,sr,200,60.0,velocity,center_ux,0.7230687737464905 +illusion_1L,sr,200,60.0,velocity,center_uy,0.6525665521621704 +illusion_1L,sr,200,60.0,velocity,lower_ux,0.9537820219993591 +illusion_1L,sr,200,60.0,velocity,lower_uy,0.3931732177734375 +illusion_1L,sr,201,60.3,velocity,upper_ux,0.7512351274490356 +illusion_1L,sr,201,60.3,velocity,upper_uy,0.40238842368125916 +illusion_1L,sr,201,60.3,velocity,center_ux,0.7535223960876465 +illusion_1L,sr,201,60.3,velocity,center_uy,0.67414790391922 +illusion_1L,sr,201,60.3,velocity,lower_ux,1.0089386701583862 +illusion_1L,sr,201,60.3,velocity,lower_uy,0.4213789701461792 +illusion_1L,sr,202,60.6,velocity,upper_ux,0.6956003308296204 +illusion_1L,sr,202,60.6,velocity,upper_uy,0.3596656918525696 +illusion_1L,sr,202,60.6,velocity,center_ux,0.7731532454490662 +illusion_1L,sr,202,60.6,velocity,center_uy,0.6913182139396667 +illusion_1L,sr,202,60.6,velocity,lower_ux,1.0664018392562866 +illusion_1L,sr,202,60.6,velocity,lower_uy,0.44294607639312744 +illusion_1L,sr,203,60.9,velocity,upper_ux,0.655062198638916 +illusion_1L,sr,203,60.9,velocity,upper_uy,0.29863953590393066 +illusion_1L,sr,203,60.9,velocity,center_ux,0.7824382781982422 +illusion_1L,sr,203,60.9,velocity,center_uy,0.6850490570068359 +illusion_1L,sr,203,60.9,velocity,lower_ux,1.1264234781265259 +illusion_1L,sr,203,60.9,velocity,lower_uy,0.457290917634964 +illusion_1L,sr,204,61.2,velocity,upper_ux,0.6206715106964111 +illusion_1L,sr,204,61.2,velocity,upper_uy,0.22492265701293945 +illusion_1L,sr,204,61.2,velocity,center_ux,0.78055340051651 +illusion_1L,sr,204,61.2,velocity,center_uy,0.6329408884048462 +illusion_1L,sr,204,61.2,velocity,lower_ux,1.188703179359436 +illusion_1L,sr,204,61.2,velocity,lower_uy,0.4630405604839325 +illusion_1L,sr,205,61.5,velocity,upper_ux,0.596008837223053 +illusion_1L,sr,205,61.5,velocity,upper_uy,0.14005163311958313 +illusion_1L,sr,205,61.5,velocity,center_ux,0.7667317986488342 +illusion_1L,sr,205,61.5,velocity,center_uy,0.525336503982544 +illusion_1L,sr,205,61.5,velocity,lower_ux,1.2514986991882324 +illusion_1L,sr,205,61.5,velocity,lower_uy,0.4577345848083496 +illusion_1L,sr,206,61.8,velocity,upper_ux,0.5906850099563599 +illusion_1L,sr,206,61.8,velocity,upper_uy,0.05106126144528389 +illusion_1L,sr,206,61.8,velocity,center_ux,0.7398027777671814 +illusion_1L,sr,206,61.8,velocity,center_uy,0.37284567952156067 +illusion_1L,sr,206,61.8,velocity,lower_ux,1.3104654550552368 +illusion_1L,sr,206,61.8,velocity,lower_uy,0.4373683035373688 +illusion_1L,sr,207,62.1,velocity,upper_ux,0.6121255159378052 +illusion_1L,sr,207,62.1,velocity,upper_uy,-0.02973993308842182 +illusion_1L,sr,207,62.1,velocity,center_ux,0.6977546215057373 +illusion_1L,sr,207,62.1,velocity,center_uy,0.18867060542106628 +illusion_1L,sr,207,62.1,velocity,lower_ux,1.3578873872756958 +illusion_1L,sr,207,62.1,velocity,lower_uy,0.3964724838733673 +illusion_1L,sr,208,62.4,velocity,upper_ux,0.6563089489936829 +illusion_1L,sr,208,62.4,velocity,upper_uy,-0.0954318717122078 +illusion_1L,sr,208,62.4,velocity,center_ux,0.6424087882041931 +illusion_1L,sr,208,62.4,velocity,center_uy,-0.023502137511968613 +illusion_1L,sr,208,62.4,velocity,lower_ux,1.3840203285217285 +illusion_1L,sr,208,62.4,velocity,lower_uy,0.32955506443977356 +illusion_1L,sr,209,62.7,velocity,upper_ux,0.7079442143440247 +illusion_1L,sr,209,62.7,velocity,upper_uy,-0.152887761592865 +illusion_1L,sr,209,62.7,velocity,center_ux,0.5857599973678589 +illusion_1L,sr,209,62.7,velocity,center_uy,-0.2530575394630432 +illusion_1L,sr,209,62.7,velocity,lower_ux,1.3804792165756226 +illusion_1L,sr,209,62.7,velocity,lower_uy,0.23339329659938812 +illusion_1L,sr,210,63.0,velocity,upper_ux,0.7562917470932007 +illusion_1L,sr,210,63.0,velocity,upper_uy,-0.21083225309848785 +illusion_1L,sr,210,63.0,velocity,center_ux,0.5505414605140686 +illusion_1L,sr,210,63.0,velocity,center_uy,-0.4626063108444214 +illusion_1L,sr,210,63.0,velocity,lower_ux,1.3408713340759277 +illusion_1L,sr,210,63.0,velocity,lower_uy,0.1075514629483223 +illusion_1L,sr,211,63.3,velocity,upper_ux,0.8026702404022217 +illusion_1L,sr,211,63.3,velocity,upper_uy,-0.26724421977996826 +illusion_1L,sr,211,63.3,velocity,center_ux,0.5604543089866638 +illusion_1L,sr,211,63.3,velocity,center_uy,-0.5954287052154541 +illusion_1L,sr,211,63.3,velocity,lower_ux,1.2570167779922485 +illusion_1L,sr,211,63.3,velocity,lower_uy,-0.044835347682237625 +illusion_1L,sr,212,63.6,velocity,upper_ux,0.8507621884346008 +illusion_1L,sr,212,63.6,velocity,upper_uy,-0.31712764501571655 +illusion_1L,sr,212,63.6,velocity,center_ux,0.6132559180259705 +illusion_1L,sr,212,63.6,velocity,center_uy,-0.6352199912071228 +illusion_1L,sr,212,63.6,velocity,lower_ux,1.1268197298049927 +illusion_1L,sr,212,63.6,velocity,lower_uy,-0.20631445944309235 +illusion_1L,sr,213,63.9,velocity,upper_ux,0.901431679725647 +illusion_1L,sr,213,63.9,velocity,upper_uy,-0.3592543601989746 +illusion_1L,sr,213,63.9,velocity,center_ux,0.6735487580299377 +illusion_1L,sr,213,63.9,velocity,center_uy,-0.639495849609375 +illusion_1L,sr,213,63.9,velocity,lower_ux,0.9735057353973389 +illusion_1L,sr,213,63.9,velocity,lower_uy,-0.337733656167984 +illusion_1L,sr,214,64.2,velocity,upper_ux,0.9544225335121155 +illusion_1L,sr,214,64.2,velocity,upper_uy,-0.3941921889781952 +illusion_1L,sr,214,64.2,velocity,center_ux,0.7183640599250793 +illusion_1L,sr,214,64.2,velocity,center_uy,-0.6529546976089478 +illusion_1L,sr,214,64.2,velocity,lower_ux,0.8384167551994324 +illusion_1L,sr,214,64.2,velocity,lower_uy,-0.4027650058269501 +illusion_1L,sr,215,64.5,velocity,upper_ux,1.0096209049224854 +illusion_1L,sr,215,64.5,velocity,upper_uy,-0.42245838046073914 +illusion_1L,sr,215,64.5,velocity,center_ux,0.7487581968307495 +illusion_1L,sr,215,64.5,velocity,center_uy,-0.6745176911354065 +illusion_1L,sr,215,64.5,velocity,lower_ux,0.7464056611061096 +illusion_1L,sr,215,64.5,velocity,lower_uy,-0.40052375197410583 +illusion_1L,sr,216,64.8,velocity,upper_ux,1.0671820640563965 +illusion_1L,sr,216,64.8,velocity,upper_uy,-0.4440714120864868 +illusion_1L,sr,216,64.8,velocity,center_ux,0.7681803107261658 +illusion_1L,sr,216,64.8,velocity,center_uy,-0.6911558508872986 +illusion_1L,sr,216,64.8,velocity,lower_ux,0.6900044679641724 +illusion_1L,sr,216,64.8,velocity,lower_uy,-0.3578387200832367 +illusion_1L,sr,217,65.1,velocity,upper_ux,1.1272190809249878 +illusion_1L,sr,217,65.1,velocity,upper_uy,-0.45839324593544006 +illusion_1L,sr,217,65.1,velocity,center_ux,0.7770344018936157 +illusion_1L,sr,217,65.1,velocity,center_uy,-0.6838576793670654 +illusion_1L,sr,217,65.1,velocity,lower_ux,0.6497331261634827 +illusion_1L,sr,217,65.1,velocity,lower_uy,-0.2963118851184845 +illusion_1L,sr,218,65.4,velocity,upper_ux,1.189353108406067 +illusion_1L,sr,218,65.4,velocity,upper_uy,-0.46402159333229065 +illusion_1L,sr,218,65.4,velocity,center_ux,0.7746337652206421 +illusion_1L,sr,218,65.4,velocity,center_uy,-0.6306120753288269 +illusion_1L,sr,218,65.4,velocity,lower_ux,0.616204559803009 +illusion_1L,sr,218,65.4,velocity,lower_uy,-0.22223493456840515 +illusion_1L,sr,219,65.7,velocity,upper_ux,1.2518140077590942 +illusion_1L,sr,219,65.7,velocity,upper_uy,-0.4584241807460785 +illusion_1L,sr,219,65.7,velocity,center_ux,0.7604767084121704 +illusion_1L,sr,219,65.7,velocity,center_uy,-0.5222318768501282 +illusion_1L,sr,219,65.7,velocity,lower_ux,0.5926873087882996 +illusion_1L,sr,219,65.7,velocity,lower_uy,-0.13755320012569427 +illusion_1L,sr,220,66.0,velocity,upper_ux,1.3102691173553467 +illusion_1L,sr,220,66.0,velocity,upper_uy,-0.4375753700733185 +illusion_1L,sr,220,66.0,velocity,center_ux,0.7335953116416931 +illusion_1L,sr,220,66.0,velocity,center_uy,-0.36949414014816284 +illusion_1L,sr,220,66.0,velocity,lower_ux,0.5886533856391907 +illusion_1L,sr,220,66.0,velocity,lower_uy,-0.04937245696783066 +illusion_1L,sr,221,66.3,velocity,upper_ux,1.3570762872695923 +illusion_1L,sr,221,66.3,velocity,upper_uy,-0.39615553617477417 +illusion_1L,sr,221,66.3,velocity,center_ux,0.6919977068901062 +illusion_1L,sr,221,66.3,velocity,center_uy,-0.18568146228790283 +illusion_1L,sr,221,66.3,velocity,lower_ux,0.6113017797470093 +illusion_1L,sr,221,66.3,velocity,lower_uy,0.030266117304563522 +illusion_1L,sr,222,66.6,velocity,upper_ux,1.3825867176055908 +illusion_1L,sr,222,66.6,velocity,upper_uy,-0.3289625644683838 +illusion_1L,sr,222,66.6,velocity,center_ux,0.6372256875038147 +illusion_1L,sr,222,66.6,velocity,center_uy,0.02544190175831318 +illusion_1L,sr,222,66.6,velocity,lower_ux,0.6562103033065796 +illusion_1L,sr,222,66.6,velocity,lower_uy,0.09502113610506058 +illusion_1L,sr,223,66.9,velocity,upper_ux,1.3787317276000977 +illusion_1L,sr,223,66.9,velocity,upper_uy,-0.2332141399383545 +illusion_1L,sr,223,66.9,velocity,center_ux,0.5809144377708435 +illusion_1L,sr,223,66.9,velocity,center_uy,0.2535322308540344 +illusion_1L,sr,223,66.9,velocity,lower_ux,0.7080022692680359 +illusion_1L,sr,223,66.9,velocity,lower_uy,0.15207965672016144 +illusion_1L,sr,224,67.2,velocity,upper_ux,1.339625597000122 +illusion_1L,sr,224,67.2,velocity,upper_uy,-0.10891187936067581 +illusion_1L,sr,224,67.2,velocity,center_ux,0.5454932451248169 +illusion_1L,sr,224,67.2,velocity,center_uy,0.4620760679244995 +illusion_1L,sr,224,67.2,velocity,lower_ux,0.7561511993408203 +illusion_1L,sr,224,67.2,velocity,lower_uy,0.20999354124069214 +illusion_1L,sr,225,67.5,velocity,upper_ux,1.2575160264968872 +illusion_1L,sr,225,67.5,velocity,upper_uy,0.04089157655835152 +illusion_1L,sr,225,67.5,velocity,center_ux,0.5547962188720703 +illusion_1L,sr,225,67.5,velocity,center_uy,0.5950954556465149 +illusion_1L,sr,225,67.5,velocity,lower_ux,0.802147388458252 +illusion_1L,sr,225,67.5,velocity,lower_uy,0.2665363848209381 +illusion_1L,sr,226,67.8,velocity,upper_ux,1.1295161247253418 +illusion_1L,sr,226,67.8,velocity,upper_uy,0.20017433166503906 +illusion_1L,sr,226,67.8,velocity,center_ux,0.6073712706565857 +illusion_1L,sr,226,67.8,velocity,center_uy,0.6353793740272522 +illusion_1L,sr,226,67.8,velocity,lower_ux,0.8497913479804993 +illusion_1L,sr,226,67.8,velocity,lower_uy,0.31663528084754944 +illusion_1L,sr,227,68.1,velocity,upper_ux,0.9767589569091797 +illusion_1L,sr,227,68.1,velocity,upper_uy,0.3317563235759735 +illusion_1L,sr,227,68.1,velocity,center_ux,0.6680260300636292 +illusion_1L,sr,227,68.1,velocity,center_uy,0.6394586563110352 +illusion_1L,sr,227,68.1,velocity,lower_ux,0.9000656008720398 +illusion_1L,sr,227,68.1,velocity,lower_uy,0.3590027987957001 +illusion_1L,sr,228,68.4,velocity,upper_ux,0.8397741913795471 +illusion_1L,sr,228,68.4,velocity,upper_uy,0.3992117643356323 +illusion_1L,sr,228,68.4,velocity,center_ux,0.7132254242897034 +illusion_1L,sr,228,68.4,velocity,center_uy,0.6526086926460266 +illusion_1L,sr,228,68.4,velocity,lower_ux,0.9528477191925049 +illusion_1L,sr,228,68.4,velocity,lower_uy,0.39419493079185486 +illusion_1L,sr,229,68.7,velocity,upper_ux,0.7450859546661377 +illusion_1L,sr,229,68.7,velocity,upper_uy,0.39938345551490784 +illusion_1L,sr,229,68.7,velocity,center_ux,0.7438374757766724 +illusion_1L,sr,229,68.7,velocity,center_uy,0.6740335822105408 +illusion_1L,sr,229,68.7,velocity,lower_ux,1.0080145597457886 +illusion_1L,sr,229,68.7,velocity,lower_uy,0.4227374494075775 +illusion_1L,sr,230,69.0,velocity,upper_ux,0.6872011423110962 +illusion_1L,sr,230,69.0,velocity,upper_uy,0.3576914072036743 +illusion_1L,sr,230,69.0,velocity,center_ux,0.763351559638977 +illusion_1L,sr,230,69.0,velocity,center_uy,0.6906617879867554 +illusion_1L,sr,230,69.0,velocity,lower_ux,1.0656310319900513 +illusion_1L,sr,230,69.0,velocity,lower_uy,0.44461512565612793 +illusion_1L,sr,231,69.3,velocity,upper_ux,0.6468889117240906 +illusion_1L,sr,231,69.3,velocity,upper_uy,0.2963283658027649 +illusion_1L,sr,231,69.3,velocity,center_ux,0.7722166180610657 +illusion_1L,sr,231,69.3,velocity,center_uy,0.6837540864944458 +illusion_1L,sr,231,69.3,velocity,lower_ux,1.125727653503418 +illusion_1L,sr,231,69.3,velocity,lower_uy,0.45919978618621826 +illusion_1L,sr,232,69.6,velocity,upper_ux,0.613908052444458 +illusion_1L,sr,232,69.6,velocity,upper_uy,0.2224678099155426 +illusion_1L,sr,232,69.6,velocity,center_ux,0.7697815299034119 +illusion_1L,sr,232,69.6,velocity,center_uy,0.6314753890037537 +illusion_1L,sr,232,69.6,velocity,lower_ux,1.1878150701522827 +illusion_1L,sr,232,69.6,velocity,lower_uy,0.46507471799850464 +illusion_1L,sr,233,69.9,velocity,upper_ux,0.590880274772644 +illusion_1L,sr,233,69.9,velocity,upper_uy,0.13832291960716248 +illusion_1L,sr,233,69.9,velocity,center_ux,0.7556962370872498 +illusion_1L,sr,233,69.9,velocity,center_uy,0.5242869853973389 +illusion_1L,sr,233,69.9,velocity,lower_ux,1.2501102685928345 +illusion_1L,sr,233,69.9,velocity,lower_uy,0.45967763662338257 +illusion_1L,sr,234,70.2,velocity,upper_ux,0.5870363116264343 +illusion_1L,sr,234,70.2,velocity,upper_uy,0.05086105316877365 +illusion_1L,sr,234,70.2,velocity,center_ux,0.7291662096977234 +illusion_1L,sr,234,70.2,velocity,center_uy,0.3726140260696411 +illusion_1L,sr,234,70.2,velocity,lower_ux,1.308354377746582 +illusion_1L,sr,234,70.2,velocity,lower_uy,0.43903136253356934 +illusion_1L,sr,235,70.5,velocity,upper_ux,0.609642744064331 +illusion_1L,sr,235,70.5,velocity,upper_uy,-0.028175542131066322 +illusion_1L,sr,235,70.5,velocity,center_ux,0.6882678866386414 +illusion_1L,sr,235,70.5,velocity,center_uy,0.19002889096736908 +illusion_1L,sr,235,70.5,velocity,lower_ux,1.3550982475280762 +illusion_1L,sr,235,70.5,velocity,lower_uy,0.3979315757751465 +illusion_1L,sr,236,70.8,velocity,upper_ux,0.6545277833938599 +illusion_1L,sr,236,70.8,velocity,upper_uy,-0.0925586000084877 +illusion_1L,sr,236,70.8,velocity,center_ux,0.6342291235923767 +illusion_1L,sr,236,70.8,velocity,center_uy,-0.019437367096543312 +illusion_1L,sr,236,70.8,velocity,lower_ux,1.3809059858322144 +illusion_1L,sr,236,70.8,velocity,lower_uy,0.3313615024089813 +illusion_1L,sr,237,71.1,velocity,upper_ux,0.7064041495323181 +illusion_1L,sr,237,71.1,velocity,upper_uy,-0.1493513137102127 +illusion_1L,sr,237,71.1,velocity,center_ux,0.5779866576194763 +illusion_1L,sr,237,71.1,velocity,center_uy,-0.24621999263763428 +illusion_1L,sr,237,71.1,velocity,lower_ux,1.3778586387634277 +illusion_1L,sr,237,71.1,velocity,lower_uy,0.23679982125759125 +illusion_1L,sr,238,71.4,velocity,upper_ux,0.754560112953186 +illusion_1L,sr,238,71.4,velocity,upper_uy,-0.2071980983018875 +illusion_1L,sr,238,71.4,velocity,center_ux,0.5414155721664429 +illusion_1L,sr,238,71.4,velocity,center_uy,-0.45553719997406006 +illusion_1L,sr,238,71.4,velocity,lower_ux,1.3404695987701416 +illusion_1L,sr,238,71.4,velocity,lower_uy,0.11450093239545822 +illusion_1L,sr,239,71.7,velocity,upper_ux,0.8003113865852356 +illusion_1L,sr,239,71.7,velocity,upper_uy,-0.2640171945095062 +illusion_1L,sr,239,71.7,velocity,center_ux,0.5486503839492798 +illusion_1L,sr,239,71.7,velocity,center_uy,-0.5921229720115662 +illusion_1L,sr,239,71.7,velocity,lower_ux,1.2613251209259033 +illusion_1L,sr,239,71.7,velocity,lower_uy,-0.03274437412619591 +illusion_1L,sr,240,72.0,velocity,upper_ux,0.8475504517555237 +illusion_1L,sr,240,72.0,velocity,upper_uy,-0.3145619034767151 +illusion_1L,sr,240,72.0,velocity,center_ux,0.6001684069633484 +illusion_1L,sr,240,72.0,velocity,center_uy,-0.6354405283927917 +illusion_1L,sr,240,72.0,velocity,lower_ux,1.1364682912826538 +illusion_1L,sr,240,72.0,velocity,lower_uy,-0.1905810534954071 +illusion_1L,sr,241,72.3,velocity,upper_ux,0.8973904252052307 +illusion_1L,sr,241,72.3,velocity,upper_uy,-0.3573853373527527 +illusion_1L,sr,241,72.3,velocity,center_ux,0.6615062355995178 +illusion_1L,sr,241,72.3,velocity,center_uy,-0.6395701766014099 +illusion_1L,sr,241,72.3,velocity,lower_ux,0.9844595193862915 +illusion_1L,sr,241,72.3,velocity,lower_uy,-0.32389816641807556 +illusion_1L,sr,242,72.6,velocity,upper_ux,0.9498124122619629 +illusion_1L,sr,242,72.6,velocity,upper_uy,-0.3930205702781677 +illusion_1L,sr,242,72.6,velocity,center_ux,0.707618236541748 +illusion_1L,sr,242,72.6,velocity,center_uy,-0.6520305275917053 +illusion_1L,sr,242,72.6,velocity,lower_ux,0.8448594212532043 +illusion_1L,sr,242,72.6,velocity,lower_uy,-0.39569777250289917 +illusion_1L,sr,243,72.9,velocity,upper_ux,1.0047959089279175 +illusion_1L,sr,243,72.9,velocity,upper_uy,-0.42197829484939575 +illusion_1L,sr,243,72.9,velocity,center_ux,0.7388601303100586 +illusion_1L,sr,243,72.9,velocity,center_uy,-0.6732296347618103 +illusion_1L,sr,243,72.9,velocity,lower_ux,0.7464483380317688 +illusion_1L,sr,243,72.9,velocity,lower_uy,-0.3997459411621094 +illusion_1L,sr,244,73.2,velocity,upper_ux,1.062358021736145 +illusion_1L,sr,244,73.2,velocity,upper_uy,-0.4442691504955292 +illusion_1L,sr,244,73.2,velocity,center_ux,0.7589077949523926 +illusion_1L,sr,244,73.2,velocity,center_uy,-0.6902114152908325 +illusion_1L,sr,244,73.2,velocity,lower_ux,0.6863324642181396 +illusion_1L,sr,244,73.2,velocity,lower_uy,-0.35982808470726013 +illusion_1L,sr,245,73.5,velocity,upper_ux,1.1224558353424072 +illusion_1L,sr,245,73.5,velocity,upper_uy,-0.4592963755130768 +illusion_1L,sr,245,73.5,velocity,center_ux,0.768310010433197 +illusion_1L,sr,245,73.5,velocity,center_uy,-0.6846433281898499 +illusion_1L,sr,245,73.5,velocity,lower_ux,0.6455894708633423 +illusion_1L,sr,245,73.5,velocity,lower_uy,-0.2990136742591858 +illusion_1L,sr,246,73.8,velocity,upper_ux,1.1845371723175049 +illusion_1L,sr,246,73.8,velocity,upper_uy,-0.4656513035297394 +illusion_1L,sr,246,73.8,velocity,center_ux,0.7664426565170288 +illusion_1L,sr,246,73.8,velocity,center_uy,-0.6347309947013855 +illusion_1L,sr,246,73.8,velocity,lower_ux,0.6128618121147156 +illusion_1L,sr,246,73.8,velocity,lower_uy,-0.22556757926940918 +illusion_1L,sr,247,74.1,velocity,upper_ux,1.246795654296875 +illusion_1L,sr,247,74.1,velocity,upper_uy,-0.4608149826526642 +illusion_1L,sr,247,74.1,velocity,center_ux,0.7529589533805847 +illusion_1L,sr,247,74.1,velocity,center_uy,-0.5300886034965515 +illusion_1L,sr,247,74.1,velocity,lower_ux,0.5898060202598572 +illusion_1L,sr,247,74.1,velocity,lower_uy,-0.1419391632080078 +illusion_1L,sr,248,74.4,velocity,upper_ux,1.3050986528396606 +illusion_1L,sr,248,74.4,velocity,upper_uy,-0.440906822681427 +illusion_1L,sr,248,74.4,velocity,center_ux,0.7271959185600281 +illusion_1L,sr,248,74.4,velocity,center_uy,-0.3803996443748474 +illusion_1L,sr,248,74.4,velocity,lower_ux,0.5853230357170105 +illusion_1L,sr,248,74.4,velocity,lower_uy,-0.054807133972644806 +illusion_1L,sr,249,74.7,velocity,upper_ux,1.3522216081619263 +illusion_1L,sr,249,74.7,velocity,upper_uy,-0.40082070231437683 +illusion_1L,sr,249,74.7,velocity,center_ux,0.687280535697937 +illusion_1L,sr,249,74.7,velocity,center_uy,-0.19965539872646332 +illusion_1L,sr,249,74.7,velocity,lower_ux,0.6069387197494507 +illusion_1L,sr,249,74.7,velocity,lower_uy,0.024331452324986458 +illusion_1L,sr,250,75.0,velocity,upper_ux,1.3789805173873901 +illusion_1L,sr,250,75.0,velocity,upper_uy,-0.33565738797187805 +illusion_1L,sr,250,75.0,velocity,center_ux,0.6340699791908264 +illusion_1L,sr,250,75.0,velocity,center_uy,0.007673533167690039 +illusion_1L,sr,250,75.0,velocity,lower_ux,0.6512218713760376 +illusion_1L,sr,250,75.0,velocity,lower_uy,0.08890915662050247 +illusion_1L,sr,251,75.3,velocity,upper_ux,1.3775588274002075 +illusion_1L,sr,251,75.3,velocity,upper_uy,-0.2429942637681961 +illusion_1L,sr,251,75.3,velocity,center_ux,0.5776770710945129 +illusion_1L,sr,251,75.3,velocity,center_uy,0.23312141001224518 +illusion_1L,sr,251,75.3,velocity,lower_ux,0.7032058835029602 +illusion_1L,sr,251,75.3,velocity,lower_uy,0.14553339779376984 +illusion_1L,sr,252,75.6,velocity,upper_ux,1.3427083492279053 +illusion_1L,sr,252,75.6,velocity,upper_uy,-0.12320626527070999 +illusion_1L,sr,252,75.6,velocity,center_ux,0.5391920208930969 +illusion_1L,sr,252,75.6,velocity,center_uy,0.44422364234924316 +illusion_1L,sr,252,75.6,velocity,lower_ux,0.7515992522239685 +illusion_1L,sr,252,75.6,velocity,lower_uy,0.20322734117507935 +illusion_1L,sr,253,75.9,velocity,upper_ux,1.267482876777649 +illusion_1L,sr,253,75.9,velocity,upper_uy,0.02115013264119625 +illusion_1L,sr,253,75.9,velocity,center_ux,0.5431507229804993 +illusion_1L,sr,253,75.9,velocity,center_uy,0.5865241885185242 +illusion_1L,sr,253,75.9,velocity,lower_ux,0.7972918748855591 +illusion_1L,sr,253,75.9,velocity,lower_uy,0.26034510135650635 +illusion_1L,sr,254,76.2,velocity,upper_ux,1.14677894115448 +illusion_1L,sr,254,76.2,velocity,upper_uy,0.1775328665971756 +illusion_1L,sr,254,76.2,velocity,center_ux,0.5926911234855652 +illusion_1L,sr,254,76.2,velocity,center_uy,0.6347845792770386 +illusion_1L,sr,254,76.2,velocity,lower_ux,0.844237208366394 +illusion_1L,sr,254,76.2,velocity,lower_uy,0.31145599484443665 +illusion_1L,sr,255,76.5,velocity,upper_ux,0.9961097240447998 +illusion_1L,sr,255,76.5,velocity,upper_uy,0.3132063150405884 +illusion_1L,sr,255,76.5,velocity,center_ux,0.6546941995620728 +illusion_1L,sr,255,76.5,velocity,center_uy,0.639285147190094 +illusion_1L,sr,255,76.5,velocity,lower_ux,0.8936904072761536 +illusion_1L,sr,255,76.5,velocity,lower_uy,0.3548835217952728 +illusion_1L,sr,256,76.8,velocity,upper_ux,0.8536427617073059 +illusion_1L,sr,256,76.8,velocity,upper_uy,0.3905572295188904 +illusion_1L,sr,256,76.8,velocity,center_ux,0.7019845843315125 +illusion_1L,sr,256,76.8,velocity,center_uy,0.6507031321525574 +illusion_1L,sr,256,76.8,velocity,lower_ux,0.9456952810287476 +illusion_1L,sr,256,76.8,velocity,lower_uy,0.39108675718307495 +illusion_1L,sr,257,77.1,velocity,upper_ux,0.7506049871444702 +illusion_1L,sr,257,77.1,velocity,upper_uy,0.3997790515422821 +illusion_1L,sr,257,77.1,velocity,center_ux,0.7339515686035156 +illusion_1L,sr,257,77.1,velocity,center_uy,0.6715624332427979 +illusion_1L,sr,257,77.1,velocity,lower_ux,1.0003235340118408 +illusion_1L,sr,257,77.1,velocity,lower_uy,0.42058271169662476 +illusion_1L,sr,258,77.4,velocity,upper_ux,0.6874122619628906 +illusion_1L,sr,258,77.4,velocity,upper_uy,0.362549751996994 +illusion_1L,sr,258,77.4,velocity,center_ux,0.7546164393424988 +illusion_1L,sr,258,77.4,velocity,center_uy,0.6891786456108093 +illusion_1L,sr,258,77.4,velocity,lower_ux,1.057679295539856 +illusion_1L,sr,258,77.4,velocity,lower_uy,0.44343307614326477 +illusion_1L,sr,259,77.7,velocity,upper_ux,0.6457619071006775 +illusion_1L,sr,259,77.7,velocity,upper_uy,0.30282843112945557 +illusion_1L,sr,259,77.7,velocity,center_ux,0.7647021412849426 +illusion_1L,sr,259,77.7,velocity,center_uy,0.6857553720474243 +illusion_1L,sr,259,77.7,velocity,lower_ux,1.1176766157150269 +illusion_1L,sr,259,77.7,velocity,lower_uy,0.459076851606369 +illusion_1L,sr,260,78.0,velocity,upper_ux,0.61305171251297 +illusion_1L,sr,260,78.0,velocity,upper_uy,0.23019862174987793 +illusion_1L,sr,260,78.0,velocity,center_ux,0.7636244297027588 +illusion_1L,sr,260,78.0,velocity,center_uy,0.6395160555839539 +illusion_1L,sr,260,78.0,velocity,lower_ux,1.1797499656677246 +illusion_1L,sr,260,78.0,velocity,lower_uy,0.4661419093608856 +illusion_1L,sr,261,78.3,velocity,upper_ux,0.5897155404090881 +illusion_1L,sr,261,78.3,velocity,upper_uy,0.14739669859409332 +illusion_1L,sr,261,78.3,velocity,center_ux,0.7510047554969788 +illusion_1L,sr,261,78.3,velocity,center_uy,0.5387985110282898 +illusion_1L,sr,261,78.3,velocity,lower_ux,1.242102861404419 +illusion_1L,sr,261,78.3,velocity,lower_uy,0.46220576763153076 +illusion_1L,sr,262,78.6,velocity,upper_ux,0.5841380953788757 +illusion_1L,sr,262,78.6,velocity,upper_uy,0.06066247820854187 +illusion_1L,sr,262,78.6,velocity,center_ux,0.7262572646141052 +illusion_1L,sr,262,78.6,velocity,center_uy,0.392030268907547 +illusion_1L,sr,262,78.6,velocity,lower_ux,1.3007299900054932 +illusion_1L,sr,262,78.6,velocity,lower_uy,0.4434792697429657 +illusion_1L,sr,263,78.9,velocity,upper_ux,0.6041485667228699 +illusion_1L,sr,263,78.9,velocity,upper_uy,-0.018796591088175774 +illusion_1L,sr,263,78.9,velocity,center_ux,0.6875424981117249 +illusion_1L,sr,263,78.9,velocity,center_uy,0.21367008984088898 +illusion_1L,sr,263,78.9,velocity,lower_ux,1.348646879196167 +illusion_1L,sr,263,78.9,velocity,lower_uy,0.40496116876602173 +illusion_1L,sr,264,79.2,velocity,upper_ux,0.6472786068916321 +illusion_1L,sr,264,79.2,velocity,upper_uy,-0.0838576927781105 +illusion_1L,sr,264,79.2,velocity,center_ux,0.6352561712265015 +illusion_1L,sr,264,79.2,velocity,center_uy,0.008907638490200043 +illusion_1L,sr,264,79.2,velocity,lower_ux,1.376871109008789 +illusion_1L,sr,264,79.2,velocity,lower_uy,0.3418101370334625 +illusion_1L,sr,265,79.5,velocity,upper_ux,0.6991485953330994 +illusion_1L,sr,265,79.5,velocity,upper_uy,-0.14041943848133087 +illusion_1L,sr,265,79.5,velocity,center_ux,0.5785834193229675 +illusion_1L,sr,265,79.5,velocity,center_uy,-0.21504132449626923 +illusion_1L,sr,265,79.5,velocity,lower_ux,1.3776473999023438 +illusion_1L,sr,265,79.5,velocity,lower_uy,0.2515447437763214 +illusion_1L,sr,266,79.8,velocity,upper_ux,0.7477858662605286 +illusion_1L,sr,266,79.8,velocity,upper_uy,-0.1979166865348816 +illusion_1L,sr,266,79.8,velocity,center_ux,0.5376763343811035 +illusion_1L,sr,266,79.8,velocity,center_uy,-0.42852285504341125 +illusion_1L,sr,266,79.8,velocity,lower_ux,1.3459256887435913 +illusion_1L,sr,266,79.8,velocity,lower_uy,0.13457509875297546 +illusion_1L,sr,267,80.1,velocity,upper_ux,0.7934152483940125 +illusion_1L,sr,267,80.1,velocity,upper_uy,-0.2553730905056 +illusion_1L,sr,267,80.1,velocity,center_ux,0.5373821258544922 +illusion_1L,sr,267,80.1,velocity,center_uy,-0.5783287882804871 +illusion_1L,sr,267,80.1,velocity,lower_ux,1.2752455472946167 +illusion_1L,sr,267,80.1,velocity,lower_uy,-0.00678569870069623 +illusion_1L,sr,268,80.4,velocity,upper_ux,0.8400928974151611 +illusion_1L,sr,268,80.4,velocity,upper_uy,-0.3071984648704529 +illusion_1L,sr,268,80.4,velocity,center_ux,0.584122896194458 +illusion_1L,sr,268,80.4,velocity,center_uy,-0.6336193680763245 +illusion_1L,sr,268,80.4,velocity,lower_ux,1.1594836711883545 +illusion_1L,sr,268,80.4,velocity,lower_uy,-0.16188237071037292 +illusion_1L,sr,269,80.7,velocity,upper_ux,0.8891951441764832 +illusion_1L,sr,269,80.7,velocity,upper_uy,-0.35139191150665283 +illusion_1L,sr,269,80.7,velocity,center_ux,0.6468852162361145 +illusion_1L,sr,269,80.7,velocity,center_uy,-0.6391173601150513 +illusion_1L,sr,269,80.7,velocity,lower_ux,1.0107710361480713 +illusion_1L,sr,269,80.7,velocity,lower_uy,-0.30058714747428894 +illusion_1L,sr,270,81.0,velocity,upper_ux,0.9407914280891418 +illusion_1L,sr,270,81.0,velocity,upper_uy,-0.3883015215396881 +illusion_1L,sr,270,81.0,velocity,center_ux,0.6958783268928528 +illusion_1L,sr,270,81.0,velocity,center_uy,-0.6492418646812439 +illusion_1L,sr,270,81.0,velocity,lower_ux,0.8653773069381714 +illusion_1L,sr,270,81.0,velocity,lower_uy,-0.38472041487693787 +illusion_1L,sr,271,81.3,velocity,upper_ux,0.9949783086776733 +illusion_1L,sr,271,81.3,velocity,upper_uy,-0.41846928000450134 +illusion_1L,sr,271,81.3,velocity,center_ux,0.7289137840270996 +illusion_1L,sr,271,81.3,velocity,center_uy,-0.6696604490280151 +illusion_1L,sr,271,81.3,velocity,lower_ux,0.7569650411605835 +illusion_1L,sr,271,81.3,velocity,lower_uy,-0.40042996406555176 +illusion_1L,sr,272,81.6,velocity,upper_ux,1.0519649982452393 +illusion_1L,sr,272,81.6,velocity,upper_uy,-0.4420011341571808 +illusion_1L,sr,272,81.6,velocity,center_ux,0.7504000067710876 +illusion_1L,sr,272,81.6,velocity,center_uy,-0.6880655288696289 +illusion_1L,sr,272,81.6,velocity,lower_ux,0.6898388266563416 +illusion_1L,sr,272,81.6,velocity,lower_uy,-0.3667258024215698 +illusion_1L,sr,273,81.9,velocity,upper_ux,1.111742615699768 +illusion_1L,sr,273,81.9,velocity,upper_uy,-0.45837682485580444 +illusion_1L,sr,273,81.9,velocity,center_ux,0.7614123821258545 +illusion_1L,sr,273,81.9,velocity,center_uy,-0.6872608065605164 +illusion_1L,sr,273,81.9,velocity,lower_ux,0.6467731595039368 +illusion_1L,sr,273,81.9,velocity,lower_uy,-0.30844998359680176 +illusion_1L,sr,274,82.2,velocity,upper_ux,1.1737431287765503 +illusion_1L,sr,274,82.2,velocity,upper_uy,-0.466314435005188 +illusion_1L,sr,274,82.2,velocity,center_ux,0.7614153623580933 +illusion_1L,sr,274,82.2,velocity,center_uy,-0.645560622215271 +illusion_1L,sr,274,82.2,velocity,lower_ux,0.6137909293174744 +illusion_1L,sr,274,82.2,velocity,lower_uy,-0.236796036362648 +illusion_1L,sr,275,82.5,velocity,upper_ux,1.2362520694732666 +illusion_1L,sr,275,82.5,velocity,upper_uy,-0.4634896218776703 +illusion_1L,sr,275,82.5,velocity,center_ux,0.7500119209289551 +illusion_1L,sr,275,82.5,velocity,center_uy,-0.5497652888298035 +illusion_1L,sr,275,82.5,velocity,lower_ux,0.5899011492729187 +illusion_1L,sr,275,82.5,velocity,lower_uy,-0.15484578907489777 +illusion_1L,sr,276,82.8,velocity,upper_ux,1.295395851135254 +illusion_1L,sr,276,82.8,velocity,upper_uy,-0.4462365210056305 +illusion_1L,sr,276,82.8,velocity,center_ux,0.7266436219215393 +illusion_1L,sr,276,82.8,velocity,center_uy,-0.40665125846862793 +illusion_1L,sr,276,82.8,velocity,lower_ux,0.5828068256378174 +illusion_1L,sr,276,82.8,velocity,lower_uy,-0.06831241399049759 +illusion_1L,sr,277,83.1,velocity,upper_ux,1.3444424867630005 +illusion_1L,sr,277,83.1,velocity,upper_uy,-0.40969333052635193 +illusion_1L,sr,277,83.1,velocity,center_ux,0.6894857883453369 +illusion_1L,sr,277,83.1,velocity,center_uy,-0.23111271858215332 +illusion_1L,sr,277,83.1,velocity,lower_ux,0.6006735563278198 +illusion_1L,sr,277,83.1,velocity,lower_uy,0.011893190443515778 +illusion_1L,sr,278,83.4,velocity,upper_ux,1.374558687210083 +illusion_1L,sr,278,83.4,velocity,upper_uy,-0.3490141034126282 +illusion_1L,sr,278,83.4,velocity,center_ux,0.638384997844696 +illusion_1L,sr,278,83.4,velocity,center_uy,-0.029248584061861038 +illusion_1L,sr,278,83.4,velocity,lower_ux,0.642241358757019 +illusion_1L,sr,278,83.4,velocity,lower_uy,0.07788806408643723 +illusion_1L,sr,279,83.7,velocity,upper_ux,1.3779417276382446 +illusion_1L,sr,279,83.7,velocity,upper_uy,-0.2615646719932556 +illusion_1L,sr,279,83.7,velocity,center_ux,0.5814354419708252 +illusion_1L,sr,279,83.7,velocity,center_uy,0.19297441840171814 +illusion_1L,sr,279,83.7,velocity,lower_ux,0.6938972473144531 +illusion_1L,sr,279,83.7,velocity,lower_uy,0.13454216718673706 +illusion_1L,sr,280,84.0,velocity,upper_ux,1.3497154712677002 +illusion_1L,sr,280,84.0,velocity,upper_uy,-0.14772462844848633 +illusion_1L,sr,280,84.0,velocity,center_ux,0.5377750396728516 +illusion_1L,sr,280,84.0,velocity,center_uy,0.4090022146701813 +illusion_1L,sr,280,84.0,velocity,lower_ux,0.7429007887840271 +illusion_1L,sr,280,84.0,velocity,lower_uy,0.19174158573150635 +illusion_1L,sr,281,84.3,velocity,upper_ux,1.2839951515197754 +illusion_1L,sr,281,84.3,velocity,upper_uy,-0.009612483903765678 +illusion_1L,sr,281,84.3,velocity,center_ux,0.5323992371559143 +illusion_1L,sr,281,84.3,velocity,center_uy,0.5674206614494324 +illusion_1L,sr,281,84.3,velocity,lower_ux,0.7885558009147644 +illusion_1L,sr,281,84.3,velocity,lower_uy,0.24949699640274048 +illusion_1L,sr,282,84.6,velocity,upper_ux,1.1738862991333008 +illusion_1L,sr,282,84.6,velocity,upper_uy,0.1439284235239029 +illusion_1L,sr,282,84.6,velocity,center_ux,0.5752928256988525 +illusion_1L,sr,282,84.6,velocity,center_uy,0.6315893530845642 +illusion_1L,sr,282,84.6,velocity,lower_ux,0.8350061774253845 +illusion_1L,sr,282,84.6,velocity,lower_uy,0.30212482810020447 +illusion_1L,sr,283,84.9,velocity,upper_ux,1.028012752532959 +illusion_1L,sr,283,84.9,velocity,upper_uy,0.28562572598457336 +illusion_1L,sr,283,84.9,velocity,center_ux,0.6385313868522644 +illusion_1L,sr,283,84.9,velocity,center_uy,0.6388801336288452 +illusion_1L,sr,283,84.9,velocity,lower_ux,0.8838325142860413 +illusion_1L,sr,283,84.9,velocity,lower_uy,0.347185343503952 +illusion_1L,sr,284,85.2,velocity,upper_ux,0.8800927996635437 +illusion_1L,sr,284,85.2,velocity,upper_uy,0.3771567642688751 +illusion_1L,sr,284,85.2,velocity,center_ux,0.6895563006401062 +illusion_1L,sr,284,85.2,velocity,center_uy,0.6474565863609314 +illusion_1L,sr,284,85.2,velocity,lower_ux,0.9350823163986206 +illusion_1L,sr,284,85.2,velocity,lower_uy,0.38490939140319824 +illusion_1L,sr,285,85.5,velocity,upper_ux,0.7659056186676025 +illusion_1L,sr,285,85.5,velocity,upper_uy,0.40044867992401123 +illusion_1L,sr,285,85.5,velocity,center_ux,0.7239287495613098 +illusion_1L,sr,285,85.5,velocity,center_uy,0.6672318577766418 +illusion_1L,sr,285,85.5,velocity,lower_ux,0.988840639591217 +illusion_1L,sr,285,85.5,velocity,lower_uy,0.4158620238304138 +illusion_1L,sr,286,85.8,velocity,upper_ux,0.6940427422523499 +illusion_1L,sr,286,85.8,velocity,upper_uy,0.37117254734039307 +illusion_1L,sr,286,85.8,velocity,center_ux,0.7463136911392212 +illusion_1L,sr,286,85.8,velocity,center_uy,0.6864495277404785 +illusion_1L,sr,286,85.8,velocity,lower_ux,1.0453598499298096 +illusion_1L,sr,286,85.8,velocity,lower_uy,0.4401785135269165 +illusion_1L,sr,287,86.1,velocity,upper_ux,0.648948609828949 +illusion_1L,sr,287,86.1,velocity,upper_uy,0.3148386776447296 +illusion_1L,sr,287,86.1,velocity,center_ux,0.7582672238349915 +illusion_1L,sr,287,86.1,velocity,center_uy,0.6886066794395447 +illusion_1L,sr,287,86.1,velocity,lower_ux,1.1047732830047607 +illusion_1L,sr,287,86.1,velocity,lower_uy,0.45741286873817444 +illusion_1L,sr,288,86.4,velocity,upper_ux,0.6153951287269592 +illusion_1L,sr,288,86.4,velocity,upper_uy,0.2444542944431305 +illusion_1L,sr,288,86.4,velocity,center_ux,0.7594075798988342 +illusion_1L,sr,288,86.4,velocity,center_uy,0.6522262692451477 +illusion_1L,sr,288,86.4,velocity,lower_ux,1.1666145324707031 +illusion_1L,sr,288,86.4,velocity,lower_uy,0.4663773477077484 +illusion_1L,sr,289,86.7,velocity,upper_ux,0.590746283531189 +illusion_1L,sr,289,86.7,velocity,upper_uy,0.16358669102191925 +illusion_1L,sr,289,86.7,velocity,center_ux,0.7493111491203308 +illusion_1L,sr,289,86.7,velocity,center_uy,0.5623989105224609 +illusion_1L,sr,289,86.7,velocity,lower_ux,1.2292687892913818 +illusion_1L,sr,289,86.7,velocity,lower_uy,0.4648526906967163 +illusion_1L,sr,290,87.0,velocity,upper_ux,0.5818934440612793 +illusion_1L,sr,290,87.0,velocity,upper_uy,0.07739116996526718 +illusion_1L,sr,290,87.0,velocity,center_ux,0.727493405342102 +illusion_1L,sr,290,87.0,velocity,center_uy,0.4237922430038452 +illusion_1L,sr,290,87.0,velocity,lower_ux,1.2890750169754028 +illusion_1L,sr,290,87.0,velocity,lower_uy,0.44933074712753296 +illusion_1L,sr,291,87.3,velocity,upper_ux,0.5972325205802917 +illusion_1L,sr,291,87.3,velocity,upper_uy,-0.0036414603237062693 +illusion_1L,sr,291,87.3,velocity,center_ux,0.692133367061615 +illusion_1L,sr,291,87.3,velocity,center_uy,0.2515240013599396 +illusion_1L,sr,291,87.3,velocity,lower_ux,1.3395273685455322 +illusion_1L,sr,291,87.3,velocity,lower_uy,0.41508734226226807 +illusion_1L,sr,292,87.6,velocity,upper_ux,0.6368352770805359 +illusion_1L,sr,292,87.6,velocity,upper_uy,-0.07085204869508743 +illusion_1L,sr,292,87.6,velocity,center_ux,0.6425078511238098 +illusion_1L,sr,292,87.6,velocity,center_uy,0.05284774303436279 +illusion_1L,sr,292,87.6,velocity,lower_ux,1.3719384670257568 +illusion_1L,sr,292,87.6,velocity,lower_uy,0.35723721981048584 +illusion_1L,sr,293,87.9,velocity,upper_ux,0.6880695223808289 +illusion_1L,sr,293,87.9,velocity,upper_uy,-0.12777696549892426 +illusion_1L,sr,293,87.9,velocity,center_ux,0.5854520797729492 +illusion_1L,sr,293,87.9,velocity,center_uy,-0.16733381152153015 +illusion_1L,sr,293,87.9,velocity,lower_ux,1.378340482711792 +illusion_1L,sr,293,87.9,velocity,lower_uy,0.27293655276298523 +illusion_1L,sr,294,88.2,velocity,upper_ux,0.7374036312103271 +illusion_1L,sr,294,88.2,velocity,upper_uy,-0.18462635576725006 +illusion_1L,sr,294,88.2,velocity,center_ux,0.5389038324356079 +illusion_1L,sr,294,88.2,velocity,center_uy,-0.38578730821609497 +illusion_1L,sr,294,88.2,velocity,lower_ux,1.3538844585418701 +illusion_1L,sr,294,88.2,velocity,lower_uy,0.16244061291217804 +illusion_1L,sr,295,88.5,velocity,upper_ux,0.7830696702003479 +illusion_1L,sr,295,88.5,velocity,upper_uy,-0.24264374375343323 +illusion_1L,sr,295,88.5,velocity,center_ux,0.5278513431549072 +illusion_1L,sr,295,88.5,velocity,center_uy,-0.5535630583763123 +illusion_1L,sr,295,88.5,velocity,lower_ux,1.2933645248413086 +illusion_1L,sr,295,88.5,velocity,lower_uy,0.027687855064868927 +illusion_1L,sr,296,88.8,velocity,upper_ux,0.8292362093925476 +illusion_1L,sr,296,88.8,velocity,upper_uy,-0.2961373031139374 +illusion_1L,sr,296,88.8,velocity,center_ux,0.5658626556396484 +illusion_1L,sr,296,88.8,velocity,center_uy,-0.6285123825073242 +illusion_1L,sr,296,88.8,velocity,lower_ux,1.1894047260284424 +illusion_1L,sr,296,88.8,velocity,lower_uy,-0.12411826848983765 +illusion_1L,sr,297,89.1,velocity,upper_ux,0.8777832984924316 +illusion_1L,sr,297,89.1,velocity,upper_uy,-0.3421712815761566 +illusion_1L,sr,297,89.1,velocity,center_ux,0.629164457321167 +illusion_1L,sr,297,89.1,velocity,center_uy,-0.6388204097747803 +illusion_1L,sr,297,89.1,velocity,lower_ux,1.0471869707107544 +illusion_1L,sr,297,89.1,velocity,lower_uy,-0.26875945925712585 +illusion_1L,sr,298,89.4,velocity,upper_ux,0.9287391901016235 +illusion_1L,sr,298,89.4,velocity,upper_uy,-0.38081851601600647 +illusion_1L,sr,298,89.4,velocity,center_ux,0.6826258301734924 +illusion_1L,sr,298,89.4,velocity,center_uy,-0.6457479596138 +illusion_1L,sr,298,89.4,velocity,lower_ux,0.8972769975662231 +illusion_1L,sr,298,89.4,velocity,lower_uy,-0.36824923753738403 +illusion_1L,sr,299,89.7,velocity,upper_ux,0.9821165800094604 +illusion_1L,sr,299,89.7,velocity,upper_uy,-0.41264548897743225 +illusion_1L,sr,299,89.7,velocity,center_ux,0.7187731266021729 +illusion_1L,sr,299,89.7,velocity,center_uy,-0.6646410226821899 +illusion_1L,sr,299,89.7,velocity,lower_ux,0.7770709991455078 +illusion_1L,sr,299,89.7,velocity,lower_uy,-0.4002075791358948 +illusion_1L,sr,300,90.0,velocity,upper_ux,1.0381648540496826 +illusion_1L,sr,300,90.0,velocity,upper_uy,-0.43783333897590637 +illusion_1L,sr,300,90.0,velocity,center_ux,0.7423353791236877 +illusion_1L,sr,300,90.0,velocity,center_uy,-0.6845950484275818 +illusion_1L,sr,300,90.0,velocity,lower_ux,0.6997599005699158 +illusion_1L,sr,300,90.0,velocity,lower_uy,-0.37628647685050964 +illusion_1L,sr,301,90.3,velocity,upper_ux,1.0971016883850098 +illusion_1L,sr,301,90.3,velocity,upper_uy,-0.45601552724838257 +illusion_1L,sr,301,90.3,velocity,center_ux,0.7553677558898926 +illusion_1L,sr,301,90.3,velocity,center_uy,-0.6898030042648315 +illusion_1L,sr,301,90.3,velocity,lower_ux,0.6520043611526489 +illusion_1L,sr,301,90.3,velocity,lower_uy,-0.32232430577278137 +illusion_1L,sr,302,90.6,velocity,upper_ux,1.1586543321609497 +illusion_1L,sr,302,90.6,velocity,upper_uy,-0.46609610319137573 +illusion_1L,sr,302,90.6,velocity,center_ux,0.7577582001686096 +illusion_1L,sr,302,90.6,velocity,center_uy,-0.6591378450393677 +illusion_1L,sr,302,90.6,velocity,lower_ux,0.6175311207771301 +illusion_1L,sr,302,90.6,velocity,lower_uy,-0.25334325432777405 +illusion_1L,sr,303,90.9,velocity,upper_ux,1.2213762998580933 +illusion_1L,sr,303,90.9,velocity,upper_uy,-0.4659852087497711 +illusion_1L,sr,303,90.9,velocity,center_ux,0.7490999698638916 +illusion_1L,sr,303,90.9,velocity,center_uy,-0.5760205388069153 +illusion_1L,sr,303,90.9,velocity,lower_ux,0.591916024684906 +illusion_1L,sr,303,90.9,velocity,lower_uy,-0.1736193597316742 +illusion_1L,sr,304,91.2,velocity,upper_ux,1.2818541526794434 +illusion_1L,sr,304,91.2,velocity,upper_uy,-0.4523596167564392 +illusion_1L,sr,304,91.2,velocity,center_ux,0.7289845943450928 +illusion_1L,sr,304,91.2,velocity,center_uy,-0.4426613450050354 +illusion_1L,sr,304,91.2,velocity,lower_ux,0.5810577869415283 +illusion_1L,sr,304,91.2,velocity,lower_uy,-0.0877687931060791 +illusion_1L,sr,305,91.5,velocity,upper_ux,1.3338794708251953 +illusion_1L,sr,305,91.5,velocity,upper_uy,-0.42062807083129883 +illusion_1L,sr,305,91.5,velocity,center_ux,0.695675790309906 +illusion_1L,sr,305,91.5,velocity,center_uy,-0.2740567922592163 +illusion_1L,sr,305,91.5,velocity,lower_ux,0.5935341119766235 +illusion_1L,sr,305,91.5,velocity,lower_uy,-0.005729278549551964 +illusion_1L,sr,306,91.8,velocity,upper_ux,1.368873119354248 +illusion_1L,sr,306,91.8,velocity,upper_uy,-0.36588191986083984 +illusion_1L,sr,306,91.8,velocity,center_ux,0.6478618383407593 +illusion_1L,sr,306,91.8,velocity,center_uy,-0.0788194015622139 +illusion_1L,sr,306,91.8,velocity,lower_ux,0.6308093667030334 +illusion_1L,sr,306,91.8,velocity,lower_uy,0.06304732710123062 +illusion_1L,sr,307,92.1,velocity,upper_ux,1.3786530494689941 +illusion_1L,sr,307,92.1,velocity,upper_uy,-0.285024493932724 +illusion_1L,sr,307,92.1,velocity,center_ux,0.5910261869430542 +illusion_1L,sr,307,92.1,velocity,center_uy,0.13895027339458466 +illusion_1L,sr,307,92.1,velocity,lower_ux,0.6814934015274048 +illusion_1L,sr,307,92.1,velocity,lower_uy,0.12048717588186264 +illusion_1L,sr,308,92.4,velocity,upper_ux,1.3581961393356323 +illusion_1L,sr,308,92.4,velocity,upper_uy,-0.17807891964912415 +illusion_1L,sr,308,92.4,velocity,center_ux,0.5416904091835022 +illusion_1L,sr,308,92.4,velocity,center_uy,0.35942620038986206 +illusion_1L,sr,308,92.4,velocity,lower_ux,0.7312545776367188 +illusion_1L,sr,308,92.4,velocity,lower_uy,0.1769484281539917 +illusion_1L,sr,309,92.7,velocity,upper_ux,1.302954077720642 +illusion_1L,sr,309,92.7,velocity,upper_uy,-0.04687897861003876 +illusion_1L,sr,309,92.7,velocity,center_ux,0.5245730876922607 +illusion_1L,sr,309,92.7,velocity,center_uy,0.5366687774658203 +illusion_1L,sr,309,92.7,velocity,lower_ux,0.7769858241081238 +illusion_1L,sr,309,92.7,velocity,lower_uy,0.2351192981004715 +illusion_1L,sr,310,93.0,velocity,upper_ux,1.2055054903030396 +illusion_1L,sr,310,93.0,velocity,upper_uy,0.10277526825666428 +illusion_1L,sr,310,93.0,velocity,center_ux,0.556643009185791 +illusion_1L,sr,310,93.0,velocity,center_uy,0.6239038705825806 +illusion_1L,sr,310,93.0,velocity,lower_ux,0.822840690612793 +illusion_1L,sr,310,93.0,velocity,lower_uy,0.2894839346408844 +illusion_1L,sr,311,93.3,velocity,upper_ux,1.0678013563156128 +illusion_1L,sr,311,93.3,velocity,upper_uy,0.2498418241739273 +illusion_1L,sr,311,93.3,velocity,center_ux,0.619194507598877 +illusion_1L,sr,311,93.3,velocity,center_uy,0.6386980414390564 +illusion_1L,sr,311,93.3,velocity,lower_ux,0.8710671067237854 +illusion_1L,sr,311,93.3,velocity,lower_uy,0.3365638256072998 +illusion_1L,sr,312,93.6,velocity,upper_ux,0.9167354106903076 +illusion_1L,sr,312,93.6,velocity,upper_uy,0.35730797052383423 +illusion_1L,sr,312,93.6,velocity,center_ux,0.675224781036377 +illusion_1L,sr,312,93.6,velocity,center_uy,0.6439996361732483 +illusion_1L,sr,312,93.6,velocity,lower_ux,0.9217601418495178 +illusion_1L,sr,312,93.6,velocity,lower_uy,0.3762076497077942 +illusion_1L,sr,313,93.9,velocity,upper_ux,0.7905778884887695 +illusion_1L,sr,313,93.9,velocity,upper_uy,0.39874815940856934 +illusion_1L,sr,313,93.9,velocity,center_ux,0.7134767770767212 +illusion_1L,sr,313,93.9,velocity,center_uy,0.6617025136947632 +illusion_1L,sr,313,93.9,velocity,lower_ux,0.9748134613037109 +illusion_1L,sr,313,93.9,velocity,lower_uy,0.40897077322006226 +illusion_1L,sr,314,94.2,velocity,upper_ux,0.7072286605834961 +illusion_1L,sr,314,94.2,velocity,upper_uy,0.38116762042045593 +illusion_1L,sr,314,94.2,velocity,center_ux,0.738431453704834 +illusion_1L,sr,314,94.2,velocity,center_uy,0.6822364926338196 +illusion_1L,sr,314,94.2,velocity,lower_ux,1.030430555343628 +illusion_1L,sr,314,94.2,velocity,lower_uy,0.43510645627975464 +illusion_1L,sr,315,94.5,velocity,upper_ux,0.6562075018882751 +illusion_1L,sr,315,94.5,velocity,upper_uy,0.33013680577278137 +illusion_1L,sr,315,94.5,velocity,center_ux,0.7526443600654602 +illusion_1L,sr,315,94.5,velocity,center_uy,0.6904624104499817 +illusion_1L,sr,315,94.5,velocity,lower_ux,1.0888651609420776 +illusion_1L,sr,315,94.5,velocity,lower_uy,0.4543185532093048 +illusion_1L,sr,316,94.8,velocity,upper_ux,0.6204522252082825 +illusion_1L,sr,316,94.8,velocity,upper_uy,0.2627963125705719 +illusion_1L,sr,316,94.8,velocity,center_ux,0.7562733292579651 +illusion_1L,sr,316,94.8,velocity,center_uy,0.6657876372337341 +illusion_1L,sr,316,94.8,velocity,lower_ux,1.1500016450881958 +illusion_1L,sr,316,94.8,velocity,lower_uy,0.46559712290763855 +illusion_1L,sr,317,95.1,velocity,upper_ux,0.5937111377716064 +illusion_1L,sr,317,95.1,velocity,upper_uy,0.18442033231258392 +illusion_1L,sr,317,95.1,velocity,center_ux,0.7490314245223999 +illusion_1L,sr,317,95.1,velocity,center_uy,0.5901163220405579 +illusion_1L,sr,317,95.1,velocity,lower_ux,1.212677001953125 +illusion_1L,sr,317,95.1,velocity,lower_uy,0.4670126438140869 +illusion_1L,sr,318,95.4,velocity,upper_ux,0.580707848072052 +illusion_1L,sr,318,95.4,velocity,upper_uy,0.09912554919719696 +illusion_1L,sr,318,95.4,velocity,center_ux,0.7306054830551147 +illusion_1L,sr,318,95.4,velocity,center_uy,0.46283137798309326 +illusion_1L,sr,318,95.4,velocity,lower_ux,1.2737667560577393 +illusion_1L,sr,318,95.4,velocity,lower_uy,0.455415278673172 +illusion_1L,sr,319,95.7,velocity,upper_ux,0.5900660157203674 +illusion_1L,sr,319,95.7,velocity,upper_uy,0.016168342903256416 +illusion_1L,sr,319,95.7,velocity,center_ux,0.699428379535675 +illusion_1L,sr,319,95.7,velocity,center_uy,0.29835274815559387 +illusion_1L,sr,319,95.7,velocity,lower_ux,1.327418565750122 +illusion_1L,sr,319,95.7,velocity,lower_uy,0.4263632595539093 +illusion_1L,sr,320,96.0,velocity,upper_ux,0.6246398687362671 +illusion_1L,sr,320,96.0,velocity,upper_uy,-0.05434630066156387 +illusion_1L,sr,320,96.0,velocity,center_ux,0.6537008881568909 +illusion_1L,sr,320,96.0,velocity,center_uy,0.1068020761013031 +illusion_1L,sr,320,96.0,velocity,lower_ux,1.3652104139328003 +illusion_1L,sr,320,96.0,velocity,lower_uy,0.37494584918022156 +illusion_1L,sr,321,96.3,velocity,upper_ux,0.6745166778564453 +illusion_1L,sr,321,96.3,velocity,upper_uy,-0.11256590485572815 +illusion_1L,sr,321,96.3,velocity,center_ux,0.597476601600647 +illusion_1L,sr,321,96.3,velocity,center_uy,-0.10815335810184479 +illusion_1L,sr,321,96.3,velocity,lower_ux,1.3786944150924683 +illusion_1L,sr,321,96.3,velocity,lower_uy,0.2977696657180786 +illusion_1L,sr,322,96.6,velocity,upper_ux,0.7247482538223267 +illusion_1L,sr,322,96.6,velocity,upper_uy,-0.1686607301235199 +illusion_1L,sr,322,96.6,velocity,center_ux,0.5456682443618774 +illusion_1L,sr,322,96.6,velocity,center_uy,-0.33006760478019714 +illusion_1L,sr,322,96.6,velocity,lower_ux,1.362518310546875 +illusion_1L,sr,322,96.6,velocity,lower_uy,0.19454416632652283 +illusion_1L,sr,323,96.9,velocity,upper_ux,0.7705973982810974 +illusion_1L,sr,323,96.9,velocity,upper_uy,-0.22687095403671265 +illusion_1L,sr,323,96.9,velocity,center_ux,0.5223644375801086 +illusion_1L,sr,323,96.9,velocity,center_uy,-0.5165536403656006 +illusion_1L,sr,323,96.9,velocity,lower_ux,1.3126147985458374 +illusion_1L,sr,323,96.9,velocity,lower_uy,0.06701454520225525 +illusion_1L,sr,324,97.2,velocity,upper_ux,0.8160641193389893 +illusion_1L,sr,324,97.2,velocity,upper_uy,-0.2821067273616791 +illusion_1L,sr,324,97.2,velocity,center_ux,0.5475413799285889 +illusion_1L,sr,324,97.2,velocity,center_uy,-0.6174260973930359 +illusion_1L,sr,324,97.2,velocity,lower_ux,1.2218706607818604 +illusion_1L,sr,324,97.2,velocity,lower_uy,-0.08018238842487335 +illusion_1L,sr,325,97.5,velocity,upper_ux,0.8638821244239807 +illusion_1L,sr,325,97.5,velocity,upper_uy,-0.3303098678588867 +illusion_1L,sr,325,97.5,velocity,center_ux,0.6083801984786987 +illusion_1L,sr,325,97.5,velocity,center_uy,-0.6385506987571716 +illusion_1L,sr,325,97.5,velocity,lower_ux,1.0894224643707275 +illusion_1L,sr,325,97.5,velocity,lower_uy,-0.2291732281446457 +illusion_1L,sr,326,97.8,velocity,upper_ux,0.914266049861908 +illusion_1L,sr,326,97.8,velocity,upper_uy,-0.37101757526397705 +illusion_1L,sr,326,97.8,velocity,center_ux,0.6670032739639282 +illusion_1L,sr,326,97.8,velocity,center_uy,-0.6424970626831055 +illusion_1L,sr,326,97.8,velocity,lower_ux,0.9380553960800171 +illusion_1L,sr,326,97.8,velocity,lower_uy,-0.3445321321487427 +illusion_1L,sr,327,98.1,velocity,upper_ux,0.9670326709747314 +illusion_1L,sr,327,98.1,velocity,upper_uy,-0.4047854542732239 +illusion_1L,sr,327,98.1,velocity,center_ux,0.7077600955963135 +illusion_1L,sr,327,98.1,velocity,center_uy,-0.6587106585502625 +illusion_1L,sr,327,98.1,velocity,lower_ux,0.8061472177505493 +illusion_1L,sr,327,98.1,velocity,lower_uy,-0.3962302505970001 +illusion_1L,sr,328,98.4,velocity,upper_ux,1.0222724676132202 +illusion_1L,sr,328,98.4,velocity,upper_uy,-0.4319276511669159 +illusion_1L,sr,328,98.4,velocity,center_ux,0.7344077229499817 +illusion_1L,sr,328,98.4,velocity,center_uy,-0.6796072125434875 +illusion_1L,sr,328,98.4,velocity,lower_ux,0.716218888759613 +illusion_1L,sr,328,98.4,velocity,lower_uy,-0.3860260248184204 +illusion_1L,sr,329,98.7,velocity,upper_ux,1.0802384614944458 +illusion_1L,sr,329,98.7,velocity,upper_uy,-0.45221537351608276 +illusion_1L,sr,329,98.7,velocity,center_ux,0.7500306367874146 +illusion_1L,sr,329,98.7,velocity,center_uy,-0.6906543970108032 +illusion_1L,sr,329,98.7,velocity,lower_ux,0.6613340973854065 +illusion_1L,sr,329,98.7,velocity,lower_uy,-0.33850041031837463 +illusion_1L,sr,330,99.0,velocity,upper_ux,1.14091157913208 +illusion_1L,sr,330,99.0,velocity,upper_uy,-0.464749813079834 +illusion_1L,sr,330,99.0,velocity,center_ux,0.7550296783447266 +illusion_1L,sr,330,99.0,velocity,center_uy,-0.6719793081283569 +illusion_1L,sr,330,99.0,velocity,lower_ux,0.6239702701568604 +illusion_1L,sr,330,99.0,velocity,lower_uy,-0.27297505736351013 +illusion_1L,sr,331,99.3,velocity,upper_ux,1.2033988237380981 +illusion_1L,sr,331,99.3,velocity,upper_uy,-0.46774816513061523 +illusion_1L,sr,331,99.3,velocity,center_ux,0.7492367029190063 +illusion_1L,sr,331,99.3,velocity,center_uy,-0.6042094230651855 +illusion_1L,sr,331,99.3,velocity,lower_ux,0.5959369540214539 +illusion_1L,sr,331,99.3,velocity,lower_uy,-0.19602715969085693 +illusion_1L,sr,332,99.6,velocity,upper_ux,1.2649738788604736 +illusion_1L,sr,332,99.6,velocity,upper_uy,-0.4582374095916748 +illusion_1L,sr,332,99.6,velocity,center_ux,0.7325108051300049 +illusion_1L,sr,332,99.6,velocity,center_uy,-0.48370280861854553 +illusion_1L,sr,332,99.6,velocity,lower_ux,0.5806686282157898 +illusion_1L,sr,332,99.6,velocity,lower_uy,-0.11139141023159027 +illusion_1L,sr,333,99.9,velocity,upper_ux,1.3201733827590942 +illusion_1L,sr,333,99.9,velocity,upper_uy,-0.4319626986980438 +illusion_1L,sr,333,99.9,velocity,center_ux,0.7035046815872192 +illusion_1L,sr,333,99.9,velocity,center_uy,-0.32380902767181396 +illusion_1L,sr,333,99.9,velocity,lower_ux,0.5866600275039673 +illusion_1L,sr,333,99.9,velocity,lower_uy,-0.027555547654628754 +illusion_1L,sr,334,100.2,velocity,upper_ux,1.3608341217041016 +illusion_1L,sr,334,100.2,velocity,upper_uy,-0.38402342796325684 +illusion_1L,sr,334,100.2,velocity,center_ux,0.6600999236106873 +illusion_1L,sr,334,100.2,velocity,center_uy,-0.136161670088768 +illusion_1L,sr,334,100.2,velocity,lower_ux,0.6181445717811584 +illusion_1L,sr,334,100.2,velocity,lower_uy,0.044901423156261444 +illusion_1L,sr,335,100.5,velocity,upper_ux,1.378246784210205 +illusion_1L,sr,335,100.5,velocity,upper_uy,-0.3107151687145233 +illusion_1L,sr,335,100.5,velocity,center_ux,0.6049227118492126 +illusion_1L,sr,335,100.5,velocity,center_uy,0.07558677345514297 +illusion_1L,sr,335,100.5,velocity,lower_ux,0.666934609413147 +illusion_1L,sr,335,100.5,velocity,lower_uy,0.10423068702220917 +illusion_1L,sr,336,100.8,velocity,upper_ux,1.3665854930877686 +illusion_1L,sr,336,100.8,velocity,upper_uy,-0.21138328313827515 +illusion_1L,sr,336,100.8,velocity,center_ux,0.55110764503479 +illusion_1L,sr,336,100.8,velocity,center_uy,0.2981937527656555 +illusion_1L,sr,336,100.8,velocity,lower_ux,0.7177199125289917 +illusion_1L,sr,336,100.8,velocity,lower_uy,0.16001057624816895 +illusion_1L,sr,337,101.1,velocity,upper_ux,1.3220843076705933 +illusion_1L,sr,337,101.1,velocity,upper_uy,-0.08766491711139679 +illusion_1L,sr,337,101.1,velocity,center_ux,0.5217822194099426 +illusion_1L,sr,337,101.1,velocity,center_uy,0.49326080083847046 +illusion_1L,sr,337,101.1,velocity,lower_ux,0.7638905048370361 +illusion_1L,sr,337,101.1,velocity,lower_uy,0.21811294555664062 +illusion_1L,sr,338,101.4,velocity,upper_ux,1.2381412982940674 +illusion_1L,sr,338,101.4,velocity,upper_uy,0.056700363755226135 +illusion_1L,sr,338,101.4,velocity,center_ux,0.5392759442329407 +illusion_1L,sr,338,101.4,velocity,center_uy,0.6086267828941345 +illusion_1L,sr,338,101.4,velocity,lower_ux,0.8089730143547058 +illusion_1L,sr,338,101.4,velocity,lower_uy,0.27417778968811035 +illusion_1L,sr,339,101.7,velocity,upper_ux,1.111638069152832 +illusion_1L,sr,339,101.7,velocity,upper_uy,0.20685063302516937 +illusion_1L,sr,339,101.7,velocity,center_ux,0.5971733927726746 +illusion_1L,sr,339,101.7,velocity,center_uy,0.6380622982978821 +illusion_1L,sr,339,101.7,velocity,lower_ux,0.8562960028648376 +illusion_1L,sr,339,101.7,velocity,lower_uy,0.3235437870025635 +illusion_1L,sr,340,102.0,velocity,upper_ux,0.9609968066215515 +illusion_1L,sr,340,102.0,velocity,upper_uy,0.329598069190979 +illusion_1L,sr,340,102.0,velocity,center_ux,0.6581123471260071 +illusion_1L,sr,340,102.0,velocity,center_uy,0.6411919593811035 +illusion_1L,sr,340,102.0,velocity,lower_ux,0.906302809715271 +illusion_1L,sr,340,102.0,velocity,lower_uy,0.36537250876426697 +illusion_1L,sr,341,102.3,velocity,upper_ux,0.8237915635108948 +illusion_1L,sr,341,102.3,velocity,upper_uy,0.3920046091079712 +illusion_1L,sr,341,102.3,velocity,center_ux,0.7016218304634094 +illusion_1L,sr,341,102.3,velocity,center_uy,0.655596137046814 +illusion_1L,sr,341,102.3,velocity,lower_ux,0.958763837814331 +illusion_1L,sr,341,102.3,velocity,lower_uy,0.40019690990448 +illusion_1L,sr,342,102.6,velocity,upper_ux,0.7268960475921631 +illusion_1L,sr,342,102.6,velocity,upper_uy,0.3901839554309845 +illusion_1L,sr,342,102.6,velocity,center_ux,0.7301897406578064 +illusion_1L,sr,342,102.6,velocity,center_uy,0.6765754222869873 +illusion_1L,sr,342,102.6,velocity,lower_ux,1.0136733055114746 +illusion_1L,sr,342,102.6,velocity,lower_uy,0.42838555574417114 +illusion_1L,sr,343,102.9,velocity,upper_ux,0.6675367951393127 +illusion_1L,sr,343,102.9,velocity,upper_uy,0.3468712866306305 +illusion_1L,sr,343,102.9,velocity,center_ux,0.7473839521408081 +illusion_1L,sr,343,102.9,velocity,center_uy,0.6901788115501404 +illusion_1L,sr,343,102.9,velocity,lower_ux,1.071216106414795 +illusion_1L,sr,343,102.9,velocity,lower_uy,0.44979074597358704 +illusion_1L,sr,344,103.2,velocity,upper_ux,0.6282579302787781 +illusion_1L,sr,344,103.2,velocity,upper_uy,0.2834378778934479 +illusion_1L,sr,344,103.2,velocity,center_ux,0.7538772821426392 +illusion_1L,sr,344,103.2,velocity,center_uy,0.6774054169654846 +illusion_1L,sr,344,103.2,velocity,lower_ux,1.1314418315887451 +illusion_1L,sr,344,103.2,velocity,lower_uy,0.46363022923469543 +illusion_1L,sr,345,103.5,velocity,upper_ux,0.5988453030586243 +illusion_1L,sr,345,103.5,velocity,upper_uy,0.20806802809238434 +illusion_1L,sr,345,103.5,velocity,center_ux,0.7495566606521606 +illusion_1L,sr,345,103.5,velocity,center_uy,0.6179096698760986 +illusion_1L,sr,345,103.5,velocity,lower_ux,1.19365656375885 +illusion_1L,sr,345,103.5,velocity,lower_uy,0.4682532846927643 +illusion_1L,sr,346,103.8,velocity,upper_ux,0.5812575817108154 +illusion_1L,sr,346,103.8,velocity,upper_uy,0.12431302666664124 +illusion_1L,sr,346,103.8,velocity,center_ux,0.7344525456428528 +illusion_1L,sr,346,103.8,velocity,center_uy,0.5049284100532532 +illusion_1L,sr,346,103.8,velocity,lower_ux,1.255556583404541 +illusion_1L,sr,346,103.8,velocity,lower_uy,0.4608798623085022 +illusion_1L,sr,347,104.1,velocity,upper_ux,0.5837238430976868 +illusion_1L,sr,347,104.1,velocity,upper_uy,0.039817266166210175 +illusion_1L,sr,347,104.1,velocity,center_ux,0.7075517773628235 +illusion_1L,sr,347,104.1,velocity,center_uy,0.35016363859176636 +illusion_1L,sr,347,104.1,velocity,lower_ux,1.3121733665466309 +illusion_1L,sr,347,104.1,velocity,lower_uy,0.43745315074920654 +illusion_1L,sr,348,104.4,velocity,upper_ux,0.6117074489593506 +illusion_1L,sr,348,104.4,velocity,upper_uy,-0.03463631868362427 +illusion_1L,sr,348,104.4,velocity,center_ux,0.6665667295455933 +illusion_1L,sr,348,104.4,velocity,center_uy,0.16662725806236267 +illusion_1L,sr,348,104.4,velocity,lower_ux,1.3556599617004395 +illusion_1L,sr,348,104.4,velocity,lower_uy,0.3930968642234802 +illusion_1L,sr,349,104.7,velocity,upper_ux,0.6589969992637634 +illusion_1L,sr,349,104.7,velocity,upper_uy,-0.09538329392671585 +illusion_1L,sr,349,104.7,velocity,center_ux,0.6128329038619995 +illusion_1L,sr,349,104.7,velocity,center_uy,-0.041543710976839066 +illusion_1L,sr,349,104.7,velocity,lower_ux,1.3771471977233887 +illusion_1L,sr,349,104.7,velocity,lower_uy,0.32381922006607056 +illusion_1L,sr,350,105.0,velocity,upper_ux,0.7102838158607483 +illusion_1L,sr,350,105.0,velocity,upper_uy,-0.15097296237945557 +illusion_1L,sr,350,105.0,velocity,center_ux,0.5575584173202515 +illusion_1L,sr,350,105.0,velocity,center_uy,-0.264027863740921 +illusion_1L,sr,350,105.0,velocity,lower_ux,1.3702260255813599 +illusion_1L,sr,350,105.0,velocity,lower_uy,0.2285371720790863 +illusion_1L,sr,351,105.3,velocity,upper_ux,0.756976306438446 +illusion_1L,sr,351,105.3,velocity,upper_uy,-0.20883384346961975 +illusion_1L,sr,351,105.3,velocity,center_ux,0.5225998163223267 +illusion_1L,sr,351,105.3,velocity,center_uy,-0.466763973236084 +illusion_1L,sr,351,105.3,velocity,lower_ux,1.3312225341796875 +illusion_1L,sr,351,105.3,velocity,lower_uy,0.10872302949428558 +illusion_1L,sr,352,105.6,velocity,upper_ux,0.8017571568489075 +illusion_1L,sr,352,105.6,velocity,upper_uy,-0.26565447449684143 +illusion_1L,sr,352,105.6,velocity,center_ux,0.5319157838821411 +illusion_1L,sr,352,105.6,velocity,center_uy,-0.5971173048019409 +illusion_1L,sr,352,105.6,velocity,lower_ux,1.2541470527648926 +illusion_1L,sr,352,105.6,velocity,lower_uy,-0.032530881464481354 +illusion_1L,sr,353,105.9,velocity,upper_ux,0.8484962582588196 +illusion_1L,sr,353,105.9,velocity,upper_uy,-0.316222608089447 +illusion_1L,sr,353,105.9,velocity,center_ux,0.5855804681777954 +illusion_1L,sr,353,105.9,velocity,center_uy,-0.6370264887809753 +illusion_1L,sr,353,105.9,velocity,lower_ux,1.1341423988342285 +illusion_1L,sr,353,105.9,velocity,lower_uy,-0.1831388622522354 +illusion_1L,sr,354,106.2,velocity,upper_ux,0.8980324268341064 +illusion_1L,sr,354,106.2,velocity,upper_uy,-0.35923799872398376 +illusion_1L,sr,354,106.2,velocity,center_ux,0.6483875513076782 +illusion_1L,sr,354,106.2,velocity,center_uy,-0.6402705311775208 +illusion_1L,sr,354,106.2,velocity,lower_ux,0.9852518439292908 +illusion_1L,sr,354,106.2,velocity,lower_uy,-0.3126796782016754 +illusion_1L,sr,355,106.5,velocity,upper_ux,0.9501277804374695 +illusion_1L,sr,355,106.5,velocity,upper_uy,-0.3951684534549713 +illusion_1L,sr,355,106.5,velocity,center_ux,0.6948891282081604 +illusion_1L,sr,355,106.5,velocity,center_uy,-0.6525857448577881 +illusion_1L,sr,355,106.5,velocity,lower_ux,0.8433313965797424 +illusion_1L,sr,355,106.5,velocity,lower_uy,-0.3861018121242523 +illusion_1L,sr,356,106.8,velocity,upper_ux,1.0047051906585693 +illusion_1L,sr,356,106.8,velocity,upper_uy,-0.4244331121444702 +illusion_1L,sr,356,106.8,velocity,center_ux,0.7256125807762146 +illusion_1L,sr,356,106.8,velocity,center_uy,-0.6733292937278748 +illusion_1L,sr,356,106.8,velocity,lower_ux,0.7391448020935059 +illusion_1L,sr,356,106.8,velocity,lower_uy,-0.3936663568019867 +illusion_1L,sr,357,107.1,velocity,upper_ux,1.0618722438812256 +illusion_1L,sr,357,107.1,velocity,upper_uy,-0.4469836950302124 +illusion_1L,sr,357,107.1,velocity,center_ux,0.744581937789917 +illusion_1L,sr,357,107.1,velocity,center_uy,-0.6891501545906067 +illusion_1L,sr,357,107.1,velocity,lower_ux,0.674665629863739 +illusion_1L,sr,357,107.1,velocity,lower_uy,-0.3553486168384552 +illusion_1L,sr,358,107.4,velocity,upper_ux,1.1216859817504883 +illusion_1L,sr,358,107.4,velocity,upper_uy,-0.4621414840221405 +illusion_1L,sr,358,107.4,velocity,center_ux,0.7527554035186768 +illusion_1L,sr,358,107.4,velocity,center_uy,-0.6819806694984436 +illusion_1L,sr,358,107.4,velocity,lower_ux,0.6331238150596619 +illusion_1L,sr,358,107.4,velocity,lower_uy,-0.2942764163017273 +illusion_1L,sr,359,107.7,velocity,upper_ux,1.1836121082305908 +illusion_1L,sr,359,107.7,velocity,upper_uy,-0.46839603781700134 +illusion_1L,sr,359,107.7,velocity,center_ux,0.7500529885292053 +illusion_1L,sr,359,107.7,velocity,center_uy,-0.6308808922767639 +illusion_1L,sr,359,107.7,velocity,lower_ux,0.6022994518280029 +illusion_1L,sr,359,107.7,velocity,lower_uy,-0.22056373953819275 +illusion_1L,sr,360,108.0,velocity,upper_ux,1.245697021484375 +illusion_1L,sr,360,108.0,velocity,upper_uy,-0.4631681740283966 +illusion_1L,sr,360,108.0,velocity,center_ux,0.7365784645080566 +illusion_1L,sr,360,108.0,velocity,center_uy,-0.5260391235351562 +illusion_1L,sr,360,108.0,velocity,lower_ux,0.582403302192688 +illusion_1L,sr,360,108.0,velocity,lower_uy,-0.1378334015607834 +illusion_1L,sr,361,108.3,velocity,upper_ux,1.303529143333435 +illusion_1L,sr,361,108.3,velocity,upper_uy,-0.4425992965698242 +illusion_1L,sr,361,108.3,velocity,center_ux,0.7117100358009338 +illusion_1L,sr,361,108.3,velocity,center_uy,-0.376937597990036 +illusion_1L,sr,361,108.3,velocity,lower_ux,0.5812265276908875 +illusion_1L,sr,361,108.3,velocity,lower_uy,-0.05284739285707474 +illusion_1L,sr,362,108.6,velocity,upper_ux,1.3496936559677124 +illusion_1L,sr,362,108.6,velocity,upper_uy,-0.4018753170967102 +illusion_1L,sr,362,108.6,velocity,center_ux,0.6731938123703003 +illusion_1L,sr,362,108.6,velocity,center_uy,-0.1977037489414215 +illusion_1L,sr,362,108.6,velocity,lower_ux,0.6053329706192017 +illusion_1L,sr,362,108.6,velocity,lower_uy,0.023645656183362007 +illusion_1L,sr,363,108.9,velocity,upper_ux,1.3752555847167969 +illusion_1L,sr,363,108.9,velocity,upper_uy,-0.33675485849380493 +illusion_1L,sr,363,108.9,velocity,center_ux,0.6212287545204163 +illusion_1L,sr,363,108.9,velocity,center_uy,0.0065691303461790085 +illusion_1L,sr,363,108.9,velocity,lower_ux,0.6506304144859314 +illusion_1L,sr,363,108.9,velocity,lower_uy,0.08613811433315277 +illusion_1L,sr,364,109.2,velocity,upper_ux,1.3732256889343262 +illusion_1L,sr,364,109.2,velocity,upper_uy,-0.24567176401615143 +illusion_1L,sr,364,109.2,velocity,center_ux,0.5650839805603027 +illusion_1L,sr,364,109.2,velocity,center_uy,0.22808937728405 +illusion_1L,sr,364,109.2,velocity,lower_ux,0.7023029923439026 +illusion_1L,sr,364,109.2,velocity,lower_uy,0.14173492789268494 +illusion_1L,sr,365,109.5,velocity,upper_ux,1.3397712707519531 +illusion_1L,sr,365,109.5,velocity,upper_uy,-0.12987451255321503 +illusion_1L,sr,365,109.5,velocity,center_ux,0.5250424146652222 +illusion_1L,sr,365,109.5,velocity,center_uy,0.4373047351837158 +illusion_1L,sr,365,109.5,velocity,lower_ux,0.7497451305389404 +illusion_1L,sr,365,109.5,velocity,lower_uy,0.19921666383743286 +illusion_1L,sr,366,109.8,velocity,upper_ux,1.2695894241333008 +illusion_1L,sr,366,109.8,velocity,upper_uy,0.007971095852553844 +illusion_1L,sr,366,109.8,velocity,center_ux,0.5259769558906555 +illusion_1L,sr,366,109.8,velocity,center_uy,0.5825425386428833 +illusion_1L,sr,366,109.8,velocity,lower_ux,0.7944077849388123 +illusion_1L,sr,366,109.8,velocity,lower_uy,0.2566617429256439 +illusion_1L,sr,367,110.1,velocity,upper_ux,1.1565943956375122 +illusion_1L,sr,367,110.1,velocity,upper_uy,0.15824753046035767 +illusion_1L,sr,367,110.1,velocity,center_ux,0.5741196870803833 +illusion_1L,sr,367,110.1,velocity,center_uy,0.6349853277206421 +illusion_1L,sr,367,110.1,velocity,lower_ux,0.840569257736206 +illusion_1L,sr,367,110.1,velocity,lower_uy,0.3084493577480316 +illusion_1L,sr,368,110.4,velocity,upper_ux,1.0105276107788086 +illusion_1L,sr,368,110.4,velocity,upper_uy,0.2936929762363434 +illusion_1L,sr,368,110.4,velocity,center_ux,0.6380339860916138 +illusion_1L,sr,368,110.4,velocity,center_uy,0.6396446228027344 +illusion_1L,sr,368,110.4,velocity,lower_ux,0.889541745185852 +illusion_1L,sr,368,110.4,velocity,lower_uy,0.3527047336101532 +illusion_1L,sr,369,110.7,velocity,upper_ux,0.8647249341011047 +illusion_1L,sr,369,110.7,velocity,upper_uy,0.37808114290237427 +illusion_1L,sr,369,110.7,velocity,center_ux,0.6876400709152222 +illusion_1L,sr,369,110.7,velocity,center_uy,0.6496555805206299 +illusion_1L,sr,369,110.7,velocity,lower_ux,0.9411972165107727 +illusion_1L,sr,369,110.7,velocity,lower_uy,0.3897750675678253 +illusion_1L,sr,370,111.0,velocity,upper_ux,0.7530975341796875 +illusion_1L,sr,370,111.0,velocity,upper_uy,0.3959263861179352 +illusion_1L,sr,370,111.0,velocity,center_ux,0.7206602692604065 +illusion_1L,sr,370,111.0,velocity,center_uy,0.6698182225227356 +illusion_1L,sr,370,111.0,velocity,lower_ux,0.9953941702842712 +illusion_1L,sr,370,111.0,velocity,lower_uy,0.42014622688293457 +illusion_1L,sr,371,111.3,velocity,upper_ux,0.6828398704528809 +illusion_1L,sr,371,111.3,velocity,upper_uy,0.36348477005958557 +illusion_1L,sr,371,111.3,velocity,center_ux,0.7415145635604858 +illusion_1L,sr,371,111.3,velocity,center_uy,0.6874785423278809 +illusion_1L,sr,371,111.3,velocity,lower_ux,1.0521974563598633 +illusion_1L,sr,371,111.3,velocity,lower_uy,0.44386017322540283 +illusion_1L,sr,372,111.6,velocity,upper_ux,0.6386239528656006 +illusion_1L,sr,372,111.6,velocity,upper_uy,0.3051512539386749 +illusion_1L,sr,372,111.6,velocity,center_ux,0.7514905333518982 +illusion_1L,sr,372,111.6,velocity,center_uy,0.6855380535125732 +illusion_1L,sr,372,111.6,velocity,lower_ux,1.1116304397583008 +illusion_1L,sr,372,111.6,velocity,lower_uy,0.4603397250175476 +illusion_1L,sr,373,111.9,velocity,upper_ux,0.6063652634620667 +illusion_1L,sr,373,111.9,velocity,upper_uy,0.2332455962896347 +illusion_1L,sr,373,111.9,velocity,center_ux,0.7505331635475159 +illusion_1L,sr,373,111.9,velocity,center_uy,0.642859160900116 +illusion_1L,sr,373,111.9,velocity,lower_ux,1.173275351524353 +illusion_1L,sr,373,111.9,velocity,lower_uy,0.46822941303253174 +illusion_1L,sr,374,112.2,velocity,upper_ux,0.5842912197113037 +illusion_1L,sr,374,112.2,velocity,upper_uy,0.15174241364002228 +illusion_1L,sr,374,112.2,velocity,center_ux,0.738738477230072 +illusion_1L,sr,374,112.2,velocity,center_uy,0.5467444062232971 +illusion_1L,sr,374,112.2,velocity,lower_ux,1.2354754209518433 +illusion_1L,sr,374,112.2,velocity,lower_uy,0.4651415944099426 +illusion_1L,sr,375,112.5,velocity,upper_ux,0.5794612765312195 +illusion_1L,sr,375,112.5,velocity,upper_uy,0.06654052436351776 +illusion_1L,sr,375,112.5,velocity,center_ux,0.7158021330833435 +illusion_1L,sr,375,112.5,velocity,center_uy,0.40391552448272705 +illusion_1L,sr,375,112.5,velocity,lower_ux,1.294328212738037 +illusion_1L,sr,375,112.5,velocity,lower_uy,0.4474169909954071 +illusion_1L,sr,376,112.8,velocity,upper_ux,0.599373459815979 +illusion_1L,sr,376,112.8,velocity,upper_uy,-0.011886940337717533 +illusion_1L,sr,376,112.8,velocity,center_ux,0.6797143816947937 +illusion_1L,sr,376,112.8,velocity,center_uy,0.22921127080917358 +illusion_1L,sr,376,112.8,velocity,lower_ux,1.3429663181304932 +illusion_1L,sr,376,112.8,velocity,lower_uy,0.4103509783744812 +illusion_1L,sr,377,113.1,velocity,upper_ux,0.64211505651474 +illusion_1L,sr,377,113.1,velocity,upper_uy,-0.07639662176370621 +illusion_1L,sr,377,113.1,velocity,center_ux,0.6297596096992493 +illusion_1L,sr,377,113.1,velocity,center_uy,0.029086939990520477 +illusion_1L,sr,377,113.1,velocity,lower_ux,1.3725180625915527 +illusion_1L,sr,377,113.1,velocity,lower_uy,0.3494837284088135 +illusion_1L,sr,378,113.4,velocity,upper_ux,0.693869948387146 +illusion_1L,sr,378,113.4,velocity,upper_uy,-0.13227224349975586 +illusion_1L,sr,378,113.4,velocity,center_ux,0.5732936859130859 +illusion_1L,sr,378,113.4,velocity,center_uy,-0.19066908955574036 +illusion_1L,sr,378,113.4,velocity,lower_ux,1.3754528760910034 +illusion_1L,sr,378,113.4,velocity,lower_uy,0.2627347409725189 +illusion_1L,sr,379,113.7,velocity,upper_ux,0.7422155141830444 +illusion_1L,sr,379,113.7,velocity,upper_uy,-0.18927031755447388 +illusion_1L,sr,379,113.7,velocity,center_ux,0.5288264155387878 +illusion_1L,sr,379,113.7,velocity,center_uy,-0.40504351258277893 +illusion_1L,sr,379,113.7,velocity,lower_ux,1.347610354423523 +illusion_1L,sr,379,113.7,velocity,lower_uy,0.15105953812599182 +illusion_1L,sr,380,114.0,velocity,upper_ux,0.7869545221328735 +illusion_1L,sr,380,114.0,velocity,upper_uy,-0.24718421697616577 +illusion_1L,sr,380,114.0,velocity,center_ux,0.5214368104934692 +illusion_1L,sr,380,114.0,velocity,center_uy,-0.5646433234214783 +illusion_1L,sr,380,114.0,velocity,lower_ux,1.2843005657196045 +illusion_1L,sr,380,114.0,velocity,lower_uy,0.016835883259773254 +illusion_1L,sr,381,114.3,velocity,upper_ux,0.832607090473175 +illusion_1L,sr,381,114.3,velocity,upper_uy,-0.3001904785633087 +illusion_1L,sr,381,114.3,velocity,center_ux,0.5629011392593384 +illusion_1L,sr,381,114.3,velocity,center_uy,-0.6315379738807678 +illusion_1L,sr,381,114.3,velocity,lower_ux,1.1787389516830444 +illusion_1L,sr,381,114.3,velocity,lower_uy,-0.1324155181646347 +illusion_1L,sr,382,114.6,velocity,upper_ux,0.8809749484062195 +illusion_1L,sr,382,114.6,velocity,upper_uy,-0.3457380533218384 +illusion_1L,sr,382,114.6,velocity,center_ux,0.6270083785057068 +illusion_1L,sr,382,114.6,velocity,center_uy,-0.6393442749977112 +illusion_1L,sr,382,114.6,velocity,lower_ux,1.036562442779541 +illusion_1L,sr,382,114.6,velocity,lower_uy,-0.2728275656700134 +illusion_1L,sr,383,114.9,velocity,upper_ux,0.9321020245552063 +illusion_1L,sr,383,114.9,velocity,upper_uy,-0.38399645686149597 +illusion_1L,sr,383,114.9,velocity,center_ux,0.679773211479187 +illusion_1L,sr,383,114.9,velocity,center_uy,-0.6469979286193848 +illusion_1L,sr,383,114.9,velocity,lower_ux,0.8878237009048462 +illusion_1L,sr,383,114.9,velocity,lower_uy,-0.3679637908935547 +illusion_1L,sr,384,115.2,velocity,upper_ux,0.9858559370040894 +illusion_1L,sr,384,115.2,velocity,upper_uy,-0.41550499200820923 +illusion_1L,sr,384,115.2,velocity,center_ux,0.7152683138847351 +illusion_1L,sr,384,115.2,velocity,center_uy,-0.6662048697471619 +illusion_1L,sr,384,115.2,velocity,lower_ux,0.7687552571296692 +illusion_1L,sr,384,115.2,velocity,lower_uy,-0.3968994915485382 +illusion_1L,sr,385,115.5,velocity,upper_ux,1.0422568321228027 +illusion_1L,sr,385,115.5,velocity,upper_uy,-0.44038745760917664 +illusion_1L,sr,385,115.5,velocity,center_ux,0.7380926012992859 +illusion_1L,sr,385,115.5,velocity,center_uy,-0.6852946281433105 +illusion_1L,sr,385,115.5,velocity,lower_ux,0.6920226812362671 +illusion_1L,sr,385,115.5,velocity,lower_uy,-0.37127742171287537 +illusion_1L,sr,386,115.8,velocity,upper_ux,1.101326823234558 +illusion_1L,sr,386,115.8,velocity,upper_uy,-0.4581816494464874 +illusion_1L,sr,386,115.8,velocity,center_ux,0.7499889135360718 +illusion_1L,sr,386,115.8,velocity,center_uy,-0.6880989670753479 +illusion_1L,sr,386,115.8,velocity,lower_ux,0.6446266174316406 +illusion_1L,sr,386,115.8,velocity,lower_uy,-0.31611397862434387 +illusion_1L,sr,387,116.1,velocity,upper_ux,1.1626986265182495 +illusion_1L,sr,387,116.1,velocity,upper_uy,-0.467684268951416 +illusion_1L,sr,387,116.1,velocity,center_ux,0.7509233355522156 +illusion_1L,sr,387,116.1,velocity,center_uy,-0.6536620855331421 +illusion_1L,sr,387,116.1,velocity,lower_ux,0.610866129398346 +illusion_1L,sr,387,116.1,velocity,lower_uy,-0.2461356371641159 +illusion_1L,sr,388,116.4,velocity,upper_ux,1.2249748706817627 +illusion_1L,sr,388,116.4,velocity,upper_uy,-0.4666910171508789 +illusion_1L,sr,388,116.4,velocity,center_ux,0.7409352660179138 +illusion_1L,sr,388,116.4,velocity,center_uy,-0.5666952729225159 +illusion_1L,sr,388,116.4,velocity,lower_ux,0.5867863893508911 +illusion_1L,sr,388,116.4,velocity,lower_uy,-0.16599664092063904 +illusion_1L,sr,389,116.7,velocity,upper_ux,1.28469979763031 +illusion_1L,sr,389,116.7,velocity,upper_uy,-0.4517618715763092 +illusion_1L,sr,389,116.7,velocity,center_ux,0.7199325561523438 +illusion_1L,sr,389,116.7,velocity,center_uy,-0.43074533343315125 +illusion_1L,sr,389,116.7,velocity,lower_ux,0.5784157514572144 +illusion_1L,sr,389,116.7,velocity,lower_uy,-0.08081980794668198 +illusion_1L,sr,390,117.0,velocity,upper_ux,1.3355647325515747 +illusion_1L,sr,390,117.0,velocity,upper_uy,-0.4183299243450165 +illusion_1L,sr,390,117.0,velocity,center_ux,0.6862215399742126 +illusion_1L,sr,390,117.0,velocity,center_uy,-0.260814905166626 +illusion_1L,sr,390,117.0,velocity,lower_ux,0.5938930511474609 +illusion_1L,sr,390,117.0,velocity,lower_uy,-0.0005825180560350418 +illusion_1L,sr,391,117.3,velocity,upper_ux,1.3689342737197876 +illusion_1L,sr,391,117.3,velocity,upper_uy,-0.3617592453956604 +illusion_1L,sr,391,117.3,velocity,center_ux,0.6384651064872742 +illusion_1L,sr,391,117.3,velocity,center_uy,-0.06501170247793198 +illusion_1L,sr,391,117.3,velocity,lower_ux,0.6335196495056152 +illusion_1L,sr,391,117.3,velocity,lower_uy,0.06620132178068161 +illusion_1L,sr,392,117.6,velocity,upper_ux,1.3768072128295898 +illusion_1L,sr,392,117.6,velocity,upper_uy,-0.2794699966907501 +illusion_1L,sr,392,117.6,velocity,center_ux,0.5821870565414429 +illusion_1L,sr,392,117.6,velocity,center_uy,0.15224869549274445 +illusion_1L,sr,392,117.6,velocity,lower_ux,0.6849467754364014 +illusion_1L,sr,392,117.6,velocity,lower_uy,0.1226864755153656 +illusion_1L,sr,393,117.9,velocity,upper_ux,1.3545715808868408 +illusion_1L,sr,393,117.9,velocity,upper_uy,-0.17203737795352936 +illusion_1L,sr,393,117.9,velocity,center_ux,0.5339956879615784 +illusion_1L,sr,393,117.9,velocity,center_uy,0.3703731894493103 +illusion_1L,sr,393,117.9,velocity,lower_ux,0.7342787981033325 +illusion_1L,sr,393,117.9,velocity,lower_uy,0.17914539575576782 +illusion_1L,sr,394,118.2,velocity,upper_ux,1.2980477809906006 +illusion_1L,sr,394,118.2,velocity,upper_uy,-0.04163584113121033 +illusion_1L,sr,394,118.2,velocity,center_ux,0.5185816884040833 +illusion_1L,sr,394,118.2,velocity,center_uy,0.5433116555213928 +illusion_1L,sr,394,118.2,velocity,lower_ux,0.7793247699737549 +illusion_1L,sr,394,118.2,velocity,lower_uy,0.23733405768871307 +illusion_1L,sr,395,118.5,velocity,upper_ux,1.2002192735671997 +illusion_1L,sr,395,118.5,velocity,upper_uy,0.10589375346899033 +illusion_1L,sr,395,118.5,velocity,center_ux,0.5523593425750732 +illusion_1L,sr,395,118.5,velocity,center_uy,0.6261382102966309 +illusion_1L,sr,395,118.5,velocity,lower_ux,0.824578046798706 +illusion_1L,sr,395,118.5,velocity,lower_uy,0.29151418805122375 +illusion_1L,sr,396,118.8,velocity,upper_ux,1.063024878501892 +illusion_1L,sr,396,118.8,velocity,upper_uy,0.250169962644577 +illusion_1L,sr,396,118.8,velocity,center_ux,0.6155343651771545 +illusion_1L,sr,396,118.8,velocity,center_uy,0.6391672492027283 +illusion_1L,sr,396,118.8,velocity,lower_ux,0.8723744750022888 +illusion_1L,sr,396,118.8,velocity,lower_uy,0.33839187026023865 +illusion_1L,sr,397,119.1,velocity,upper_ux,0.9125121831893921 +illusion_1L,sr,397,119.1,velocity,upper_uy,0.35551780462265015 +illusion_1L,sr,397,119.1,velocity,center_ux,0.6713826060295105 +illusion_1L,sr,397,119.1,velocity,center_uy,0.644628643989563 +illusion_1L,sr,397,119.1,velocity,lower_ux,0.922924816608429 +illusion_1L,sr,397,119.1,velocity,lower_uy,0.37788626551628113 +illusion_1L,sr,398,119.4,velocity,upper_ux,0.7862507700920105 +illusion_1L,sr,398,119.4,velocity,upper_uy,0.3961411416530609 +illusion_1L,sr,398,119.4,velocity,center_ux,0.7094956636428833 +illusion_1L,sr,398,119.4,velocity,center_uy,0.662479043006897 +illusion_1L,sr,398,119.4,velocity,lower_ux,0.9761595726013184 +illusion_1L,sr,398,119.4,velocity,lower_uy,0.4105560779571533 +illusion_1L,sr,399,119.7,velocity,upper_ux,0.7024088501930237 +illusion_1L,sr,399,119.7,velocity,upper_uy,0.37832745909690857 +illusion_1L,sr,399,119.7,velocity,center_ux,0.7343190312385559 +illusion_1L,sr,399,119.7,velocity,center_uy,0.682573676109314 +illusion_1L,sr,399,119.7,velocity,lower_ux,1.0320994853973389 +illusion_1L,sr,399,119.7,velocity,lower_uy,0.4366133511066437 +illusion_1L,sr,0,0.0,force,front_fx,0.0018681804649531841 +illusion_1L,sr,0,0.0,force,front_fy,7.153350452426821e-05 +illusion_1L,sr,0,0.0,force,upper_fx,0.0015253332676365972 +illusion_1L,sr,0,0.0,force,upper_fy,0.0029478343203663826 +illusion_1L,sr,0,0.0,force,lower_fx,0.0013869369868189096 +illusion_1L,sr,0,0.0,force,lower_fy,-0.002488659927621484 +illusion_1L,sr,1,0.3,force,front_fx,0.0018999699968844652 +illusion_1L,sr,1,0.3,force,front_fy,6.329658936010674e-05 +illusion_1L,sr,1,0.3,force,upper_fx,0.001789543777704239 +illusion_1L,sr,1,0.3,force,upper_fy,0.002522481372579932 +illusion_1L,sr,1,0.3,force,lower_fx,0.0016456972807645798 +illusion_1L,sr,1,0.3,force,lower_fy,-0.002094859490171075 +illusion_1L,sr,2,0.6,force,front_fx,0.0019326619803905487 +illusion_1L,sr,2,0.6,force,front_fy,5.247628359938972e-05 +illusion_1L,sr,2,0.6,force,upper_fx,0.0020097335800528526 +illusion_1L,sr,2,0.6,force,upper_fy,0.002097012707963586 +illusion_1L,sr,2,0.6,force,lower_fx,0.0018634700682014227 +illusion_1L,sr,2,0.6,force,lower_fy,-0.001739704399369657 +illusion_1L,sr,3,0.9,force,front_fx,0.001962329028174281 +illusion_1L,sr,3,0.9,force,front_fy,4.2809213482541963e-05 +illusion_1L,sr,3,0.9,force,upper_fx,0.0021811455953866243 +illusion_1L,sr,3,0.9,force,upper_fy,0.0016700482228770852 +illusion_1L,sr,3,0.9,force,lower_fx,0.002032668562605977 +illusion_1L,sr,3,0.9,force,lower_fy,-0.0014149039052426815 +illusion_1L,sr,4,1.2,force,front_fx,0.0019892805721610785 +illusion_1L,sr,4,1.2,force,front_fy,3.61563652404584e-05 +illusion_1L,sr,4,1.2,force,upper_fx,0.0023087405133992434 +illusion_1L,sr,4,1.2,force,upper_fy,0.0012790369801223278 +illusion_1L,sr,4,1.2,force,lower_fx,0.00216237036511302 +illusion_1L,sr,4,1.2,force,lower_fy,-0.0011417537461966276 +illusion_1L,sr,5,1.5,force,front_fx,0.0020126099698245525 +illusion_1L,sr,5,1.5,force,front_fy,3.355302396812476e-05 +illusion_1L,sr,5,1.5,force,upper_fx,0.0023970208130776882 +illusion_1L,sr,5,1.5,force,upper_fy,0.0009473955724388361 +illusion_1L,sr,5,1.5,force,lower_fx,0.0022617103531956673 +illusion_1L,sr,5,1.5,force,lower_fy,-0.000930615293327719 +illusion_1L,sr,6,1.8,force,front_fx,0.002018860075622797 +illusion_1L,sr,6,1.8,force,front_fy,3.102028131252155e-05 +illusion_1L,sr,6,1.8,force,upper_fx,0.0024378427769988775 +illusion_1L,sr,6,1.8,force,upper_fy,0.0006838768604211509 +illusion_1L,sr,6,1.8,force,lower_fx,0.0023260789457708597 +illusion_1L,sr,6,1.8,force,lower_fy,-0.0007833325071260333 +illusion_1L,sr,7,2.1,force,front_fx,0.002019366482272744 +illusion_1L,sr,7,2.1,force,front_fy,2.4935725377872586e-05 +illusion_1L,sr,7,2.1,force,upper_fx,0.0024460810236632824 +illusion_1L,sr,7,2.1,force,upper_fy,0.00047952745808288455 +illusion_1L,sr,7,2.1,force,lower_fx,0.0023713060654699802 +illusion_1L,sr,7,2.1,force,lower_fy,-0.0006850521895103157 +illusion_1L,sr,8,2.4,force,front_fx,0.0020171578507870436 +illusion_1L,sr,8,2.4,force,front_fy,1.3543727618525736e-05 +illusion_1L,sr,8,2.4,force,upper_fx,0.002435877453535795 +illusion_1L,sr,8,2.4,force,upper_fy,0.0003278524964116514 +illusion_1L,sr,8,2.4,force,lower_fx,0.0024096088018268347 +illusion_1L,sr,8,2.4,force,lower_fy,-0.0006241211085580289 +illusion_1L,sr,9,2.7,force,front_fx,0.0020117368549108505 +illusion_1L,sr,9,2.7,force,front_fy,-3.568567763068131e-06 +illusion_1L,sr,9,2.7,force,upper_fx,0.002413284732028842 +illusion_1L,sr,9,2.7,force,upper_fy,0.00021628481044899672 +illusion_1L,sr,9,2.7,force,lower_fx,0.002442919882014394 +illusion_1L,sr,9,2.7,force,lower_fy,-0.0005849540466442704 +illusion_1L,sr,10,3.0,force,front_fx,0.002005861373618245 +illusion_1L,sr,10,3.0,force,front_fy,-2.5070288756978698e-05 +illusion_1L,sr,10,3.0,force,upper_fx,0.002385833766311407 +illusion_1L,sr,10,3.0,force,upper_fy,0.00013694069639313966 +illusion_1L,sr,10,3.0,force,lower_fx,0.0024745280388742685 +illusion_1L,sr,10,3.0,force,lower_fy,-0.0005546507891267538 +illusion_1L,sr,11,3.3,force,front_fx,0.00200418708845973 +illusion_1L,sr,11,3.3,force,front_fy,-4.7014000301714987e-05 +illusion_1L,sr,11,3.3,force,upper_fx,0.0023640713188797235 +illusion_1L,sr,11,3.3,force,upper_fy,8.38638297864236e-05 +illusion_1L,sr,11,3.3,force,lower_fx,0.002511055674403906 +illusion_1L,sr,11,3.3,force,lower_fy,-0.0005248360685072839 +illusion_1L,sr,12,3.6,force,front_fx,0.002008585026487708 +illusion_1L,sr,12,3.6,force,front_fy,-6.887777999509126e-05 +illusion_1L,sr,12,3.6,force,upper_fx,0.0023520500399172306 +illusion_1L,sr,12,3.6,force,upper_fy,5.290465924190357e-05 +illusion_1L,sr,12,3.6,force,lower_fx,0.002553084399551153 +illusion_1L,sr,12,3.6,force,lower_fy,-0.0004922256339341402 +illusion_1L,sr,13,3.9,force,front_fx,0.002007798058912158 +illusion_1L,sr,13,3.9,force,front_fy,-8.791335858404636e-05 +illusion_1L,sr,13,3.9,force,upper_fx,0.002339406870305538 +illusion_1L,sr,13,3.9,force,upper_fy,4.5463955757441e-05 +illusion_1L,sr,13,3.9,force,lower_fx,0.0025876672007143497 +illusion_1L,sr,13,3.9,force,lower_fy,-0.0004595893551595509 +illusion_1L,sr,14,4.2,force,front_fx,0.002000638982281089 +illusion_1L,sr,14,4.2,force,front_fy,-0.00010372623364673927 +illusion_1L,sr,14,4.2,force,upper_fx,0.002323643071576953 +illusion_1L,sr,14,4.2,force,upper_fy,5.964486990706064e-05 +illusion_1L,sr,14,4.2,force,lower_fx,0.002610142808407545 +illusion_1L,sr,14,4.2,force,lower_fy,-0.00042969241621904075 +illusion_1L,sr,15,4.5,force,front_fx,0.0019906912930309772 +illusion_1L,sr,15,4.5,force,front_fy,-0.00011627809726633132 +illusion_1L,sr,15,4.5,force,upper_fx,0.002309322590008378 +illusion_1L,sr,15,4.5,force,upper_fy,9.3180758995004e-05 +illusion_1L,sr,15,4.5,force,lower_fx,0.0026231929659843445 +illusion_1L,sr,15,4.5,force,lower_fy,-0.0004066126421093941 +illusion_1L,sr,16,4.8,force,front_fx,0.001980317523702979 +illusion_1L,sr,16,4.8,force,front_fy,-0.00012409307237248868 +illusion_1L,sr,16,4.8,force,upper_fx,0.0022981008514761925 +illusion_1L,sr,16,4.8,force,upper_fy,0.00014393182937055826 +illusion_1L,sr,16,4.8,force,lower_fx,0.0026268893852829933 +illusion_1L,sr,16,4.8,force,lower_fy,-0.00039288122206926346 +illusion_1L,sr,17,5.1,force,front_fx,0.0019675889052450657 +illusion_1L,sr,17,5.1,force,front_fy,-0.00012688156857620925 +illusion_1L,sr,17,5.1,force,upper_fx,0.0022864185739308596 +illusion_1L,sr,17,5.1,force,upper_fy,0.00020739689352922142 +illusion_1L,sr,17,5.1,force,lower_fx,0.0026164271403104067 +illusion_1L,sr,17,5.1,force,lower_fy,-0.000388041022233665 +illusion_1L,sr,18,5.4,force,front_fx,0.001957525033503771 +illusion_1L,sr,18,5.4,force,front_fy,-0.00012462670565582812 +illusion_1L,sr,18,5.4,force,upper_fx,0.0022803565952926874 +illusion_1L,sr,18,5.4,force,upper_fy,0.00027797758230008185 +illusion_1L,sr,18,5.4,force,lower_fx,0.002597338752821088 +illusion_1L,sr,18,5.4,force,lower_fy,-0.00038947054417803884 +illusion_1L,sr,19,5.7,force,front_fx,0.001954309642314911 +illusion_1L,sr,19,5.7,force,front_fy,-0.0001164167479146272 +illusion_1L,sr,19,5.7,force,upper_fx,0.0022857298608869314 +illusion_1L,sr,19,5.7,force,upper_fy,0.00034924971987493336 +illusion_1L,sr,19,5.7,force,lower_fx,0.002575964666903019 +illusion_1L,sr,19,5.7,force,lower_fy,-0.0003910978266503662 +illusion_1L,sr,20,6.0,force,front_fx,0.0019539787899702787 +illusion_1L,sr,20,6.0,force,front_fy,-0.00010289063357049599 +illusion_1L,sr,20,6.0,force,upper_fx,0.0022968510165810585 +illusion_1L,sr,20,6.0,force,upper_fy,0.00041585153667256236 +illusion_1L,sr,20,6.0,force,lower_fx,0.002548186806961894 +illusion_1L,sr,20,6.0,force,lower_fy,-0.00038817222230136395 +illusion_1L,sr,21,6.3,force,front_fx,0.00195034418720752 +illusion_1L,sr,21,6.3,force,front_fy,-8.510843326803297e-05 +illusion_1L,sr,21,6.3,force,upper_fx,0.0023065106943249702 +illusion_1L,sr,21,6.3,force,upper_fy,0.00047315089614130557 +illusion_1L,sr,21,6.3,force,lower_fx,0.002509442390874028 +illusion_1L,sr,21,6.3,force,lower_fy,-0.0003769339236896485 +illusion_1L,sr,22,6.6,force,front_fx,0.0019459842005744576 +illusion_1L,sr,22,6.6,force,front_fy,-6.347185262711719e-05 +illusion_1L,sr,22,6.6,force,upper_fx,0.0023177345283329487 +illusion_1L,sr,22,6.6,force,upper_fy,0.0005157764535397291 +illusion_1L,sr,22,6.6,force,lower_fx,0.002465795027092099 +illusion_1L,sr,22,6.6,force,lower_fy,-0.00035389154800213873 +illusion_1L,sr,23,6.9,force,front_fx,0.0019460328621789813 +illusion_1L,sr,23,6.9,force,front_fy,-3.998512329417281e-05 +illusion_1L,sr,23,6.9,force,upper_fx,0.002335585420951247 +illusion_1L,sr,23,6.9,force,upper_fy,0.0005412047612480819 +illusion_1L,sr,23,6.9,force,lower_fx,0.002425512531772256 +illusion_1L,sr,23,6.9,force,lower_fy,-0.00031861316529102623 +illusion_1L,sr,24,7.2,force,front_fx,0.0019468001555651426 +illusion_1L,sr,24,7.2,force,front_fy,-1.6629892343189567e-05 +illusion_1L,sr,24,7.2,force,upper_fx,0.0023569678887724876 +illusion_1L,sr,24,7.2,force,upper_fy,0.000549389747902751 +illusion_1L,sr,24,7.2,force,lower_fx,0.0023883883841335773 +illusion_1L,sr,24,7.2,force,lower_fy,-0.00027432371280156076 +illusion_1L,sr,25,7.5,force,front_fx,0.0019497581524774432 +illusion_1L,sr,25,7.5,force,front_fy,5.856368716194993e-06 +illusion_1L,sr,25,7.5,force,upper_fx,0.0023822146467864513 +illusion_1L,sr,25,7.5,force,upper_fy,0.0005415372434072196 +illusion_1L,sr,25,7.5,force,lower_fx,0.0023569653276354074 +illusion_1L,sr,25,7.5,force,lower_fy,-0.00022566132247447968 +illusion_1L,sr,26,7.8,force,front_fx,0.0019586686976253986 +illusion_1L,sr,26,7.8,force,front_fy,2.6849063942790963e-05 +illusion_1L,sr,26,7.8,force,upper_fx,0.00241624447517097 +illusion_1L,sr,26,7.8,force,upper_fy,0.0005202906904742122 +illusion_1L,sr,26,7.8,force,lower_fx,0.0023379819467663765 +illusion_1L,sr,26,7.8,force,lower_fy,-0.00017768764519132674 +illusion_1L,sr,27,8.1,force,front_fx,0.0019719002302736044 +illusion_1L,sr,27,8.1,force,front_fy,4.555478517431766e-05 +illusion_1L,sr,27,8.1,force,upper_fx,0.0024565348867326975 +illusion_1L,sr,27,8.1,force,upper_fy,0.0004904568777419627 +illusion_1L,sr,27,8.1,force,lower_fx,0.002330526476725936 +illusion_1L,sr,27,8.1,force,lower_fy,-0.00013712485088035464 +illusion_1L,sr,28,8.4,force,front_fx,0.0019794953987002373 +illusion_1L,sr,28,8.4,force,front_fy,6.11578652751632e-05 +illusion_1L,sr,28,8.4,force,upper_fx,0.00249078287743032 +illusion_1L,sr,28,8.4,force,upper_fy,0.0004575549974106252 +illusion_1L,sr,28,8.4,force,lower_fx,0.002323540160432458 +illusion_1L,sr,28,8.4,force,lower_fy,-0.00011093373177573085 +illusion_1L,sr,29,8.7,force,front_fx,0.00198017037473619 +illusion_1L,sr,29,8.7,force,front_fy,7.395699503831565e-05 +illusion_1L,sr,29,8.7,force,upper_fx,0.0025158156640827656 +illusion_1L,sr,29,8.7,force,upper_fy,0.0004261633148416877 +illusion_1L,sr,29,8.7,force,lower_fx,0.002315063262358308 +illusion_1L,sr,29,8.7,force,lower_fy,-0.00010341979941586033 +illusion_1L,sr,30,9.0,force,front_fx,0.001978483283892274 +illusion_1L,sr,30,9.0,force,front_fy,8.339710620930418e-05 +illusion_1L,sr,30,9.0,force,upper_fx,0.002535022795200348 +illusion_1L,sr,30,9.0,force,upper_fy,0.00039970679790712893 +illusion_1L,sr,30,9.0,force,lower_fx,0.0023097381927073 +illusion_1L,sr,30,9.0,force,lower_fy,-0.0001170809191535227 +illusion_1L,sr,31,9.3,force,front_fx,0.0019741433206945658 +illusion_1L,sr,31,9.3,force,front_fy,8.887970034265891e-05 +illusion_1L,sr,31,9.3,force,upper_fx,0.002546075964346528 +illusion_1L,sr,31,9.3,force,upper_fy,0.0003804971929639578 +illusion_1L,sr,31,9.3,force,lower_fx,0.002306493232026696 +illusion_1L,sr,31,9.3,force,lower_fy,-0.0001521136291557923 +illusion_1L,sr,32,9.6,force,front_fx,0.001967197749763727 +illusion_1L,sr,32,9.6,force,front_fy,9.091119864024222e-05 +illusion_1L,sr,32,9.6,force,upper_fx,0.002546883188188076 +illusion_1L,sr,32,9.6,force,upper_fy,0.00036949742934666574 +illusion_1L,sr,32,9.6,force,lower_fx,0.002304385183379054 +illusion_1L,sr,32,9.6,force,lower_fy,-0.00020555112860165536 +illusion_1L,sr,33,9.9,force,front_fx,0.001961654517799616 +illusion_1L,sr,33,9.9,force,front_fy,8.868386066751555e-05 +illusion_1L,sr,33,9.9,force,upper_fx,0.0025404589250683784 +illusion_1L,sr,33,9.9,force,upper_fy,0.00036394072230905294 +illusion_1L,sr,33,9.9,force,lower_fx,0.002307067858055234 +illusion_1L,sr,33,9.9,force,lower_fy,-0.00027173402486369014 +illusion_1L,sr,34,10.2,force,front_fx,0.0019623965490609407 +illusion_1L,sr,34,10.2,force,front_fy,8.17983309389092e-05 +illusion_1L,sr,34,10.2,force,upper_fx,0.002532449085265398 +illusion_1L,sr,34,10.2,force,upper_fy,0.0003598658076953143 +illusion_1L,sr,34,10.2,force,lower_fx,0.0023199478164315224 +illusion_1L,sr,34,10.2,force,lower_fy,-0.0003430468204896897 +illusion_1L,sr,35,10.5,force,front_fx,0.0019631031900644302 +illusion_1L,sr,35,10.5,force,front_fy,7.120421651052311e-05 +illusion_1L,sr,35,10.5,force,upper_fx,0.0025153551250696182 +illusion_1L,sr,35,10.5,force,upper_fy,0.0003538127348292619 +illusion_1L,sr,35,10.5,force,lower_fx,0.0023343851789832115 +illusion_1L,sr,35,10.5,force,lower_fy,-0.00041236018296331167 +illusion_1L,sr,36,10.8,force,front_fx,0.0019599925726652145 +illusion_1L,sr,36,10.8,force,front_fy,5.674742715200409e-05 +illusion_1L,sr,36,10.8,force,upper_fx,0.00248765479773283 +illusion_1L,sr,36,10.8,force,upper_fy,0.0003413766098674387 +illusion_1L,sr,36,10.8,force,lower_fx,0.0023465994745492935 +illusion_1L,sr,36,10.8,force,lower_fy,-0.0004724008322227746 +illusion_1L,sr,37,11.1,force,front_fx,0.0019572731107473373 +illusion_1L,sr,37,11.1,force,front_fy,3.925697092199698e-05 +illusion_1L,sr,37,11.1,force,upper_fx,0.002455468289554119 +illusion_1L,sr,37,11.1,force,upper_fy,0.00031980700441636145 +illusion_1L,sr,37,11.1,force,lower_fx,0.0023598605766892433 +illusion_1L,sr,37,11.1,force,lower_fy,-0.0005166102782823145 +illusion_1L,sr,38,11.4,force,front_fx,0.0019588328432291746 +illusion_1L,sr,38,11.4,force,front_fy,2.112496440531686e-05 +illusion_1L,sr,38,11.4,force,upper_fx,0.0024273316375911236 +illusion_1L,sr,38,11.4,force,upper_fy,0.00028854262200184166 +illusion_1L,sr,38,11.4,force,lower_fx,0.0023797156754881144 +illusion_1L,sr,38,11.4,force,lower_fy,-0.0005404625553637743 +illusion_1L,sr,39,11.7,force,front_fx,0.0019606577698141336 +illusion_1L,sr,39,11.7,force,front_fy,2.613609922264004e-06 +illusion_1L,sr,39,11.7,force,upper_fx,0.002400785917416215 +illusion_1L,sr,39,11.7,force,upper_fy,0.0002510448975954205 +illusion_1L,sr,39,11.7,force,lower_fx,0.0024008043110370636 +illusion_1L,sr,39,11.7,force,lower_fy,-0.0005447527510114014 +illusion_1L,sr,40,12.0,force,front_fx,0.001965246396139264 +illusion_1L,sr,40,12.0,force,front_fy,-1.4799859854974784e-05 +illusion_1L,sr,40,12.0,force,upper_fx,0.0023814886808395386 +illusion_1L,sr,40,12.0,force,upper_fy,0.00021241784270387143 +illusion_1L,sr,40,12.0,force,lower_fx,0.002426375402137637 +illusion_1L,sr,40,12.0,force,lower_fy,-0.0005309508997015655 +illusion_1L,sr,41,12.3,force,front_fx,0.00197547092102468 +illusion_1L,sr,41,12.3,force,front_fy,-2.977609256049618e-05 +illusion_1L,sr,41,12.3,force,upper_fx,0.0023741950280964375 +illusion_1L,sr,41,12.3,force,upper_fy,0.00017838322673924267 +illusion_1L,sr,41,12.3,force,lower_fx,0.0024592606350779533 +illusion_1L,sr,41,12.3,force,lower_fy,-0.0005031785694882274 +illusion_1L,sr,42,12.6,force,front_fx,0.001987788826227188 +illusion_1L,sr,42,12.6,force,front_fy,-4.278669075574726e-05 +illusion_1L,sr,42,12.6,force,upper_fx,0.0023758308961987495 +illusion_1L,sr,42,12.6,force,upper_fy,0.000155684509081766 +illusion_1L,sr,42,12.6,force,lower_fx,0.0024947868660092354 +illusion_1L,sr,42,12.6,force,lower_fy,-0.0004685232415795326 +illusion_1L,sr,43,12.9,force,front_fx,0.001992901787161827 +illusion_1L,sr,43,12.9,force,front_fy,-5.266071093501523e-05 +illusion_1L,sr,43,12.9,force,upper_fx,0.002375207608565688 +illusion_1L,sr,43,12.9,force,upper_fy,0.0001504598476458341 +illusion_1L,sr,43,12.9,force,lower_fx,0.0025206056889146566 +illusion_1L,sr,43,12.9,force,lower_fy,-0.00043341348646208644 +illusion_1L,sr,44,13.2,force,front_fx,0.0019915280863642693 +illusion_1L,sr,44,13.2,force,front_fy,-5.915015208302066e-05 +illusion_1L,sr,44,13.2,force,upper_fx,0.0023722038604319096 +illusion_1L,sr,44,13.2,force,upper_fy,0.00016511950525455177 +illusion_1L,sr,44,13.2,force,lower_fx,0.002535736421123147 +illusion_1L,sr,44,13.2,force,lower_fy,-0.00040279023232869804 +illusion_1L,sr,45,13.5,force,front_fx,0.001988296629860997 +illusion_1L,sr,45,13.5,force,front_fy,-6.340357504086569e-05 +illusion_1L,sr,45,13.5,force,upper_fx,0.002371204784139991 +illusion_1L,sr,45,13.5,force,upper_fy,0.0001981770183192566 +illusion_1L,sr,45,13.5,force,lower_fx,0.002543752547353506 +illusion_1L,sr,45,13.5,force,lower_fy,-0.00037935900036245584 +illusion_1L,sr,46,13.8,force,front_fx,0.001982390647754073 +illusion_1L,sr,46,13.8,force,front_fy,-6.380643753800541e-05 +illusion_1L,sr,46,13.8,force,upper_fx,0.002369876019656658 +illusion_1L,sr,46,13.8,force,upper_fy,0.00024671253049746156 +illusion_1L,sr,46,13.8,force,lower_fx,0.002541855676099658 +illusion_1L,sr,46,13.8,force,lower_fy,-0.000363770843250677 +illusion_1L,sr,47,14.1,force,front_fx,0.001974965212866664 +illusion_1L,sr,47,14.1,force,front_fy,-6.08981354162097e-05 +illusion_1L,sr,47,14.1,force,upper_fx,0.002368918154388666 +illusion_1L,sr,47,14.1,force,upper_fy,0.0003044973418582231 +illusion_1L,sr,47,14.1,force,lower_fx,0.002530742669478059 +illusion_1L,sr,47,14.1,force,lower_fy,-0.00035436160396784544 +illusion_1L,sr,48,14.4,force,front_fx,0.0019713537767529488 +illusion_1L,sr,48,14.4,force,front_fy,-5.4904259741306305e-05 +illusion_1L,sr,48,14.4,force,upper_fx,0.0023738264571875334 +illusion_1L,sr,48,14.4,force,upper_fy,0.00036353085306473076 +illusion_1L,sr,48,14.4,force,lower_fx,0.002516478765755892 +illusion_1L,sr,48,14.4,force,lower_fy,-0.00034724673605524004 +illusion_1L,sr,49,14.7,force,front_fx,0.0019738650880753994 +illusion_1L,sr,49,14.7,force,front_fy,-4.55431109003257e-05 +illusion_1L,sr,49,14.7,force,upper_fx,0.00238750409334898 +illusion_1L,sr,49,14.7,force,upper_fy,0.00041720244917087257 +illusion_1L,sr,49,14.7,force,lower_fx,0.002503421623259783 +illusion_1L,sr,49,14.7,force,lower_fy,-0.0003381428250577301 +illusion_1L,sr,50,15.0,force,front_fx,0.0019753247033804655 +illusion_1L,sr,50,15.0,force,front_fy,-3.376164022483863e-05 +illusion_1L,sr,50,15.0,force,upper_fx,0.002400973578915 +illusion_1L,sr,50,15.0,force,upper_fy,0.0004602166882250458 +illusion_1L,sr,50,15.0,force,lower_fx,0.0024845318403095007 +illusion_1L,sr,50,15.0,force,lower_fy,-0.0003252169699408114 +illusion_1L,sr,51,15.3,force,front_fx,0.001973699079826474 +illusion_1L,sr,51,15.3,force,front_fy,-2.0826539184781723e-05 +illusion_1L,sr,51,15.3,force,upper_fx,0.0024118954315781593 +illusion_1L,sr,51,15.3,force,upper_fy,0.0004885069793090224 +illusion_1L,sr,51,15.3,force,lower_fx,0.0024597961455583572 +illusion_1L,sr,51,15.3,force,lower_fy,-0.00030733697349205613 +illusion_1L,sr,52,15.6,force,front_fx,0.0019726138561964035 +illusion_1L,sr,52,15.6,force,front_fy,-6.772605502192164e-06 +illusion_1L,sr,52,15.6,force,upper_fx,0.002423588652163744 +illusion_1L,sr,52,15.6,force,upper_fy,0.0004996201605536044 +illusion_1L,sr,52,15.6,force,lower_fx,0.002434893511235714 +illusion_1L,sr,52,15.6,force,lower_fy,-0.00028410067898221314 +illusion_1L,sr,53,15.9,force,front_fx,0.0019739146810024977 +illusion_1L,sr,53,15.9,force,front_fy,6.736985596944578e-06 +illusion_1L,sr,53,15.9,force,upper_fx,0.002438807161524892 +illusion_1L,sr,53,15.9,force,upper_fy,0.000494269304908812 +illusion_1L,sr,53,15.9,force,lower_fx,0.0024146621581166983 +illusion_1L,sr,53,15.9,force,lower_fy,-0.0002581594162620604 +illusion_1L,sr,54,16.2,force,front_fx,0.001974735176190734 +illusion_1L,sr,54,16.2,force,front_fy,1.8830964108929038e-05 +illusion_1L,sr,54,16.2,force,upper_fx,0.0024536163546144962 +illusion_1L,sr,54,16.2,force,upper_fy,0.00047609934699721634 +illusion_1L,sr,54,16.2,force,lower_fx,0.0023968496825546026 +illusion_1L,sr,54,16.2,force,lower_fy,-0.00023420336947310716 +illusion_1L,sr,55,16.5,force,front_fx,0.0019770662765949965 +illusion_1L,sr,55,16.5,force,front_fy,2.9613363949465565e-05 +illusion_1L,sr,55,16.5,force,upper_fx,0.002470661886036396 +illusion_1L,sr,55,16.5,force,upper_fy,0.0004496196343097836 +illusion_1L,sr,55,16.5,force,lower_fx,0.002385394647717476 +illusion_1L,sr,55,16.5,force,lower_fy,-0.00021624722285196185 +illusion_1L,sr,56,16.8,force,front_fx,0.001984002999961376 +illusion_1L,sr,56,16.8,force,front_fy,3.8312155083986e-05 +illusion_1L,sr,56,16.8,force,upper_fx,0.0024928224738687277 +illusion_1L,sr,56,16.8,force,upper_fy,0.00041983634582720697 +illusion_1L,sr,56,16.8,force,lower_fx,0.0023841371294111013 +illusion_1L,sr,56,16.8,force,lower_fy,-0.00020855051116086543 +illusion_1L,sr,57,17.1,force,front_fx,0.0019903313368558884 +illusion_1L,sr,57,17.1,force,front_fy,4.493935193750076e-05 +illusion_1L,sr,57,17.1,force,upper_fx,0.0025128768756985664 +illusion_1L,sr,57,17.1,force,upper_fy,0.0003926792705897242 +illusion_1L,sr,57,17.1,force,lower_fx,0.002386778360232711 +illusion_1L,sr,57,17.1,force,lower_fy,-0.0002146862243534997 +illusion_1L,sr,58,17.4,force,front_fx,0.0019894763827323914 +illusion_1L,sr,58,17.4,force,front_fy,4.9391663196729496e-05 +illusion_1L,sr,58,17.4,force,upper_fx,0.002521555870771408 +illusion_1L,sr,58,17.4,force,upper_fy,0.00037209881702437997 +illusion_1L,sr,58,17.4,force,lower_fx,0.002384801395237446 +illusion_1L,sr,58,17.4,force,lower_fy,-0.0002358774800086394 +illusion_1L,sr,59,17.7,force,front_fx,0.0019838898442685604 +illusion_1L,sr,59,17.7,force,front_fy,5.1416798669379205e-05 +illusion_1L,sr,59,17.7,force,upper_fx,0.002519588451832533 +illusion_1L,sr,59,17.7,force,upper_fy,0.00035872356966137886 +illusion_1L,sr,59,17.7,force,lower_fx,0.0023794416338205338 +illusion_1L,sr,59,17.7,force,lower_fy,-0.00026980627444572747 +illusion_1L,sr,60,18.0,force,front_fx,0.001978158950805664 +illusion_1L,sr,60,18.0,force,front_fy,5.051520201959647e-05 +illusion_1L,sr,60,18.0,force,upper_fx,0.0025117986369878054 +illusion_1L,sr,60,18.0,force,upper_fy,0.0003507207438815385 +illusion_1L,sr,60,18.0,force,lower_fx,0.0023757549934089184 +illusion_1L,sr,60,18.0,force,lower_fy,-0.00031160443904809654 +illusion_1L,sr,61,18.3,force,front_fx,0.0019712273497134447 +illusion_1L,sr,61,18.3,force,front_fy,4.713298403657973e-05 +illusion_1L,sr,61,18.3,force,upper_fx,0.002496429719030857 +illusion_1L,sr,61,18.3,force,upper_fy,0.0003455769910942763 +illusion_1L,sr,61,18.3,force,lower_fx,0.0023715991992503405 +illusion_1L,sr,61,18.3,force,lower_fy,-0.00035629901685751975 +illusion_1L,sr,62,18.6,force,front_fx,0.0019648561719805002 +illusion_1L,sr,62,18.6,force,front_fy,4.1214301745640114e-05 +illusion_1L,sr,62,18.6,force,upper_fx,0.0024769343435764313 +illusion_1L,sr,62,18.6,force,upper_fy,0.0003397362306714058 +illusion_1L,sr,62,18.6,force,lower_fx,0.0023695663549005985 +illusion_1L,sr,62,18.6,force,lower_fy,-0.00039797177305445075 +illusion_1L,sr,63,18.9,force,front_fx,0.0019641797989606857 +illusion_1L,sr,63,18.9,force,front_fy,3.3259748306591064e-05 +illusion_1L,sr,63,18.9,force,upper_fx,0.0024602627381682396 +illusion_1L,sr,63,18.9,force,upper_fy,0.0003301905235275626 +illusion_1L,sr,63,18.9,force,lower_fx,0.0023753319401293993 +illusion_1L,sr,63,18.9,force,lower_fy,-0.00043149839621037245 +illusion_1L,sr,64,19.2,force,front_fx,0.0019691402558237314 +illusion_1L,sr,64,19.2,force,front_fy,2.3789900296833366e-05 +illusion_1L,sr,64,19.2,force,upper_fx,0.002448250772431493 +illusion_1L,sr,64,19.2,force,upper_fy,0.0003160037740599364 +illusion_1L,sr,64,19.2,force,lower_fx,0.002389146713539958 +illusion_1L,sr,64,19.2,force,lower_fy,-0.00045405959826894104 +illusion_1L,sr,65,19.5,force,front_fx,0.001971513032913208 +illusion_1L,sr,65,19.5,force,front_fy,1.3538190614781342e-05 +illusion_1L,sr,65,19.5,force,upper_fx,0.0024328320287168026 +illusion_1L,sr,65,19.5,force,upper_fy,0.000298570841550827 +illusion_1L,sr,65,19.5,force,lower_fx,0.0024013034999370575 +illusion_1L,sr,65,19.5,force,lower_fy,-0.00046526986989192665 +illusion_1L,sr,66,19.8,force,front_fx,0.0019707134924829006 +illusion_1L,sr,66,19.8,force,front_fy,3.0752078146178974e-06 +illusion_1L,sr,66,19.8,force,upper_fx,0.002414209768176079 +illusion_1L,sr,66,19.8,force,upper_fy,0.0002794569591060281 +illusion_1L,sr,66,19.8,force,lower_fx,0.0024103852920234203 +illusion_1L,sr,66,19.8,force,lower_fy,-0.00046538710012100637 +illusion_1L,sr,67,20.1,force,front_fx,0.0019702340941876173 +illusion_1L,sr,67,20.1,force,front_fy,-6.83180269334116e-06 +illusion_1L,sr,67,20.1,force,upper_fx,0.002397616393864155 +illusion_1L,sr,67,20.1,force,upper_fy,0.00026074322522617877 +illusion_1L,sr,67,20.1,force,lower_fx,0.0024202053900808096 +illusion_1L,sr,67,20.1,force,lower_fy,-0.0004553915641736239 +illusion_1L,sr,68,20.4,force,front_fx,0.00196996983140707 +illusion_1L,sr,68,20.4,force,front_fy,-1.5669696949771605e-05 +illusion_1L,sr,68,20.4,force,upper_fx,0.00238370755687356 +illusion_1L,sr,68,20.4,force,upper_fy,0.00024584177299402654 +illusion_1L,sr,68,20.4,force,lower_fx,0.0024303440004587173 +illusion_1L,sr,68,20.4,force,lower_fy,-0.0004384287167340517 +illusion_1L,sr,69,20.7,force,front_fx,0.001968714874237776 +illusion_1L,sr,69,20.7,force,front_fy,-2.355226934014354e-05 +illusion_1L,sr,69,20.7,force,upper_fx,0.002371701179072261 +illusion_1L,sr,69,20.7,force,upper_fy,0.00023765517107676715 +illusion_1L,sr,69,20.7,force,lower_fx,0.0024390111211687326 +illusion_1L,sr,69,20.7,force,lower_fy,-0.0004183834244031459 +illusion_1L,sr,70,21.0,force,front_fx,0.0019688745960593224 +illusion_1L,sr,70,21.0,force,front_fy,-2.9803790312143974e-05 +illusion_1L,sr,70,21.0,force,upper_fx,0.002364755142480135 +illusion_1L,sr,70,21.0,force,upper_fy,0.0002385460102232173 +illusion_1L,sr,70,21.0,force,lower_fx,0.002448511775583029 +illusion_1L,sr,70,21.0,force,lower_fy,-0.00039847998414188623 +illusion_1L,sr,71,21.3,force,front_fx,0.0019732408691197634 +illusion_1L,sr,71,21.3,force,front_fy,-3.436410042922944e-05 +illusion_1L,sr,71,21.3,force,upper_fx,0.0023661914747208357 +illusion_1L,sr,71,21.3,force,upper_fy,0.000249250209890306 +illusion_1L,sr,71,21.3,force,lower_fx,0.0024614727590233088 +illusion_1L,sr,71,21.3,force,lower_fy,-0.00038130820030346513 +illusion_1L,sr,72,21.6,force,front_fx,0.001975598279386759 +illusion_1L,sr,72,21.6,force,front_fy,-3.717274739756249e-05 +illusion_1L,sr,72,21.6,force,upper_fx,0.0023680594749748707 +illusion_1L,sr,72,21.6,force,upper_fy,0.0002701235644053668 +illusion_1L,sr,72,21.6,force,lower_fx,0.0024692246224731207 +illusion_1L,sr,72,21.6,force,lower_fy,-0.0003693999897222966 +illusion_1L,sr,73,21.9,force,front_fx,0.0019721416756510735 +illusion_1L,sr,73,21.9,force,front_fy,-3.769813702092506e-05 +illusion_1L,sr,73,21.9,force,upper_fx,0.002365193562582135 +illusion_1L,sr,73,21.9,force,upper_fy,0.0002997139235958457 +illusion_1L,sr,73,21.9,force,lower_fx,0.0024663556832820177 +illusion_1L,sr,73,21.9,force,lower_fy,-0.0003625748213380575 +illusion_1L,sr,74,22.2,force,front_fx,0.0019659341778606176 +illusion_1L,sr,74,22.2,force,front_fy,-3.5981043765787035e-05 +illusion_1L,sr,74,22.2,force,upper_fx,0.00235997186973691 +illusion_1L,sr,74,22.2,force,upper_fy,0.0003335399669595063 +illusion_1L,sr,74,22.2,force,lower_fx,0.002455353271216154 +illusion_1L,sr,74,22.2,force,lower_fy,-0.00035850872518494725 +illusion_1L,sr,75,22.5,force,front_fx,0.0019608349539339542 +illusion_1L,sr,75,22.5,force,front_fy,-3.2303909392794594e-05 +illusion_1L,sr,75,22.5,force,upper_fx,0.0023573131766170263 +illusion_1L,sr,75,22.5,force,upper_fy,0.00036655404255725443 +illusion_1L,sr,75,22.5,force,lower_fx,0.0024414751678705215 +illusion_1L,sr,75,22.5,force,lower_fy,-0.0003544641367625445 +illusion_1L,sr,76,22.8,force,front_fx,0.001955505693331361 +illusion_1L,sr,76,22.8,force,front_fy,-2.654832132975571e-05 +illusion_1L,sr,76,22.8,force,upper_fx,0.002354887779802084 +illusion_1L,sr,76,22.8,force,upper_fy,0.0003955987631343305 +illusion_1L,sr,76,22.8,force,lower_fx,0.0024234221782535315 +illusion_1L,sr,76,22.8,force,lower_fy,-0.00034797098487615585 +illusion_1L,sr,77,23.1,force,front_fx,0.0019518977496773005 +illusion_1L,sr,77,23.1,force,front_fy,-1.9546543626347557e-05 +illusion_1L,sr,77,23.1,force,upper_fx,0.0023558689281344414 +illusion_1L,sr,77,23.1,force,upper_fy,0.00041717043495737016 +illusion_1L,sr,77,23.1,force,lower_fx,0.0024054681416600943 +illusion_1L,sr,77,23.1,force,lower_fy,-0.0003376815584488213 +illusion_1L,sr,78,23.4,force,front_fx,0.001954134786501527 +illusion_1L,sr,78,23.4,force,front_fy,-1.1938269381062128e-05 +illusion_1L,sr,78,23.4,force,upper_fx,0.0023649875074625015 +illusion_1L,sr,78,23.4,force,upper_fy,0.0004293083038646728 +illusion_1L,sr,78,23.4,force,lower_fx,0.002393467118963599 +illusion_1L,sr,78,23.4,force,lower_fy,-0.0003232790622860193 +illusion_1L,sr,79,23.7,force,front_fx,0.001960103865712881 +illusion_1L,sr,79,23.7,force,front_fy,-3.436638507992029e-06 +illusion_1L,sr,79,23.7,force,upper_fx,0.002379703102633357 +illusion_1L,sr,79,23.7,force,upper_fy,0.0004329209041316062 +illusion_1L,sr,79,23.7,force,lower_fx,0.0023861457593739033 +illusion_1L,sr,79,23.7,force,lower_fy,-0.00030625873478129506 +illusion_1L,sr,80,24.0,force,front_fx,0.0019622300751507282 +illusion_1L,sr,80,24.0,force,front_fy,4.846652700507548e-06 +illusion_1L,sr,80,24.0,force,upper_fx,0.002390982350334525 +illusion_1L,sr,80,24.0,force,upper_fy,0.0004297969280742109 +illusion_1L,sr,80,24.0,force,lower_fx,0.0023756304290145636 +illusion_1L,sr,80,24.0,force,lower_fy,-0.0002898493257816881 +illusion_1L,sr,81,24.3,force,front_fx,0.0019609800074249506 +illusion_1L,sr,81,24.3,force,front_fy,1.2374262951198034e-05 +illusion_1L,sr,81,24.3,force,upper_fx,0.0023983630817383528 +illusion_1L,sr,81,24.3,force,upper_fy,0.00042132128146477044 +illusion_1L,sr,81,24.3,force,lower_fx,0.0023624610621482134 +illusion_1L,sr,81,24.3,force,lower_fy,-0.00027603868511505425 +illusion_1L,sr,82,24.6,force,front_fx,0.0019599327351897955 +illusion_1L,sr,82,24.6,force,front_fy,1.9596005586208776e-05 +illusion_1L,sr,82,24.6,force,upper_fx,0.002405657898634672 +illusion_1L,sr,82,24.6,force,upper_fy,0.00040946557419374585 +illusion_1L,sr,82,24.6,force,lower_fx,0.0023514346685260534 +illusion_1L,sr,82,24.6,force,lower_fy,-0.0002663515624590218 +illusion_1L,sr,83,24.9,force,front_fx,0.001958030043169856 +illusion_1L,sr,83,24.9,force,front_fy,2.543089613027405e-05 +illusion_1L,sr,83,24.9,force,upper_fx,0.002411068882793188 +illusion_1L,sr,83,24.9,force,upper_fy,0.0003965344512835145 +illusion_1L,sr,83,24.9,force,lower_fx,0.002341532614082098 +illusion_1L,sr,83,24.9,force,lower_fy,-0.0002632098039612174 +illusion_1L,sr,84,25.2,force,front_fx,0.001955161103978753 +illusion_1L,sr,84,25.2,force,front_fy,2.9692364478250965e-05 +illusion_1L,sr,84,25.2,force,upper_fx,0.0024140679743140936 +illusion_1L,sr,84,25.2,force,upper_fy,0.00038451876025646925 +illusion_1L,sr,84,25.2,force,lower_fx,0.002332942560315132 +illusion_1L,sr,84,25.2,force,lower_fy,-0.0002676273579709232 +illusion_1L,sr,85,25.5,force,front_fx,0.0019545680843293667 +illusion_1L,sr,85,25.5,force,front_fy,3.2790896511869505e-05 +illusion_1L,sr,85,25.5,force,upper_fx,0.0024177907034754753 +illusion_1L,sr,85,25.5,force,upper_fy,0.00037458803853951395 +illusion_1L,sr,85,25.5,force,lower_fx,0.00232938164845109 +illusion_1L,sr,85,25.5,force,lower_fy,-0.0002793800085783005 +illusion_1L,sr,86,25.8,force,front_fx,0.001958125038072467 +illusion_1L,sr,86,25.8,force,front_fy,3.395836029085331e-05 +illusion_1L,sr,86,25.8,force,upper_fx,0.002424134872853756 +illusion_1L,sr,86,25.8,force,upper_fy,0.0003668410354293883 +illusion_1L,sr,86,25.8,force,lower_fx,0.0023330857511609793 +illusion_1L,sr,86,25.8,force,lower_fy,-0.00029785529477521777 +illusion_1L,sr,87,26.1,force,front_fx,0.001959065906703472 +illusion_1L,sr,87,26.1,force,front_fy,3.346703670104034e-05 +illusion_1L,sr,87,26.1,force,upper_fx,0.0024243569932878017 +illusion_1L,sr,87,26.1,force,upper_fy,0.0003619400958996266 +illusion_1L,sr,87,26.1,force,lower_fx,0.0023354911245405674 +illusion_1L,sr,87,26.1,force,lower_fy,-0.0003218236961401999 +illusion_1L,sr,88,26.4,force,front_fx,0.001955214887857437 +illusion_1L,sr,88,26.4,force,front_fy,3.119313987554051e-05 +illusion_1L,sr,88,26.4,force,upper_fx,0.0024157599546015263 +illusion_1L,sr,88,26.4,force,upper_fy,0.00035852708970196545 +illusion_1L,sr,88,26.4,force,lower_fx,0.002333778189495206 +illusion_1L,sr,88,26.4,force,lower_fy,-0.0003484366461634636 +illusion_1L,sr,89,26.7,force,front_fx,0.0019504352239891887 +illusion_1L,sr,89,26.7,force,front_fy,2.7190766559215263e-05 +illusion_1L,sr,89,26.7,force,upper_fx,0.002402351936325431 +illusion_1L,sr,89,26.7,force,upper_fy,0.00035391945857554674 +illusion_1L,sr,89,26.7,force,lower_fx,0.0023313399869948626 +illusion_1L,sr,89,26.7,force,lower_fy,-0.00037409865763038397 +illusion_1L,sr,90,27.0,force,front_fx,0.0019467961974442005 +illusion_1L,sr,90,27.0,force,front_fy,2.1938571080681868e-05 +illusion_1L,sr,90,27.0,force,upper_fx,0.002387826330959797 +illusion_1L,sr,90,27.0,force,upper_fy,0.00034649367444217205 +illusion_1L,sr,90,27.0,force,lower_fx,0.0023311639670282602 +illusion_1L,sr,90,27.0,force,lower_fy,-0.00039541852311231196 +illusion_1L,sr,91,27.3,force,front_fx,0.0019431918626651168 +illusion_1L,sr,91,27.3,force,front_fy,1.575444548507221e-05 +illusion_1L,sr,91,27.3,force,upper_fx,0.002371454145759344 +illusion_1L,sr,91,27.3,force,upper_fy,0.00033581233583390713 +illusion_1L,sr,91,27.3,force,lower_fx,0.0023316361475735903 +illusion_1L,sr,91,27.3,force,lower_fy,-0.00041055266046896577 +illusion_1L,sr,92,27.6,force,front_fx,0.0019417224684730172 +illusion_1L,sr,92,27.6,force,front_fy,8.604325557826087e-06 +illusion_1L,sr,92,27.6,force,upper_fx,0.002357283141463995 +illusion_1L,sr,92,27.6,force,upper_fy,0.00032192928483709693 +illusion_1L,sr,92,27.6,force,lower_fx,0.0023357567843049765 +illusion_1L,sr,92,27.6,force,lower_fy,-0.00041876311297528446 +illusion_1L,sr,93,27.9,force,front_fx,0.001945835305377841 +illusion_1L,sr,93,27.9,force,front_fy,1.4186707630869932e-06 +illusion_1L,sr,93,27.9,force,upper_fx,0.002350274473428726 +illusion_1L,sr,93,27.9,force,upper_fy,0.0003061058232560754 +illusion_1L,sr,93,27.9,force,lower_fx,0.002347491914406419 +illusion_1L,sr,93,27.9,force,lower_fy,-0.00041991189937107265 +illusion_1L,sr,94,28.2,force,front_fx,0.0019514564191922545 +illusion_1L,sr,94,28.2,force,front_fy,-5.573146609094692e-06 +illusion_1L,sr,94,28.2,force,upper_fx,0.0023463049437850714 +illusion_1L,sr,94,28.2,force,upper_fy,0.00029107800219208 +illusion_1L,sr,94,28.2,force,lower_fx,0.0023617451079189777 +illusion_1L,sr,94,28.2,force,lower_fy,-0.0004160383250564337 +illusion_1L,sr,95,28.5,force,front_fx,0.0019526227843016386 +illusion_1L,sr,95,28.5,force,front_fy,-1.2119700841140002e-05 +illusion_1L,sr,95,28.5,force,upper_fx,0.0023389067500829697 +illusion_1L,sr,95,28.5,force,upper_fy,0.0002796247717924416 +illusion_1L,sr,95,28.5,force,lower_fx,0.002371164970099926 +illusion_1L,sr,95,28.5,force,lower_fy,-0.0004094125470146537 +illusion_1L,sr,96,28.8,force,front_fx,0.0019506640965119004 +illusion_1L,sr,96,28.8,force,front_fy,-1.759195583872497e-05 +illusion_1L,sr,96,28.8,force,upper_fx,0.0023291578982025385 +illusion_1L,sr,96,28.8,force,upper_fy,0.0002733480359893292 +illusion_1L,sr,96,28.8,force,lower_fx,0.002376063959673047 +illusion_1L,sr,96,28.8,force,lower_fy,-0.00040112249553203583 +illusion_1L,sr,97,29.1,force,front_fx,0.0019489332335069776 +illusion_1L,sr,97,29.1,force,front_fy,-2.194533772126306e-05 +illusion_1L,sr,97,29.1,force,upper_fx,0.0023215271066874266 +illusion_1L,sr,97,29.1,force,upper_fy,0.00027284541283734143 +illusion_1L,sr,97,29.1,force,lower_fx,0.0023802886717021465 +illusion_1L,sr,97,29.1,force,lower_fy,-0.0003920991439372301 +illusion_1L,sr,98,29.4,force,front_fx,0.0019459978211671114 +illusion_1L,sr,98,29.4,force,front_fy,-2.527391006879043e-05 +illusion_1L,sr,98,29.4,force,upper_fx,0.0023141116835176945 +illusion_1L,sr,98,29.4,force,upper_fy,0.0002787398989312351 +illusion_1L,sr,98,29.4,force,lower_fx,0.002381382742896676 +illusion_1L,sr,98,29.4,force,lower_fy,-0.00038395667797885835 +illusion_1L,sr,99,29.7,force,front_fx,0.0019426801009103656 +illusion_1L,sr,99,29.7,force,front_fy,-2.708604915824253e-05 +illusion_1L,sr,99,29.7,force,upper_fx,0.0023082278203219175 +illusion_1L,sr,99,29.7,force,upper_fy,0.000290785072138533 +illusion_1L,sr,99,29.7,force,lower_fx,0.0023802423384040594 +illusion_1L,sr,99,29.7,force,lower_fy,-0.0003771072078961879 +illusion_1L,sr,100,30.0,force,front_fx,0.0019426427315920591 +illusion_1L,sr,100,30.0,force,front_fy,-2.7385580324335024e-05 +illusion_1L,sr,100,30.0,force,upper_fx,0.0023079984821379185 +illusion_1L,sr,100,30.0,force,upper_fy,0.0003074680862482637 +illusion_1L,sr,100,30.0,force,lower_fx,0.0023807785473763943 +illusion_1L,sr,100,30.0,force,lower_fy,-0.00037111755227670074 +illusion_1L,sr,101,30.3,force,front_fx,0.0019461875781416893 +illusion_1L,sr,101,30.3,force,front_fy,-2.6424182578921318e-05 +illusion_1L,sr,101,30.3,force,upper_fx,0.002313632983714342 +illusion_1L,sr,101,30.3,force,upper_fy,0.00032724160701036453 +illusion_1L,sr,101,30.3,force,lower_fx,0.002383148530498147 +illusion_1L,sr,101,30.3,force,lower_fy,-0.0003658407076727599 +illusion_1L,sr,102,30.6,force,front_fx,0.0019466446246951818 +illusion_1L,sr,102,30.6,force,front_fy,-2.3970200345502235e-05 +illusion_1L,sr,102,30.6,force,upper_fx,0.0023170909844338894 +illusion_1L,sr,102,30.6,force,upper_fy,0.00034900271566584706 +illusion_1L,sr,102,30.6,force,lower_fx,0.0023794888984411955 +illusion_1L,sr,102,30.6,force,lower_fy,-0.0003610813000705093 +illusion_1L,sr,103,30.9,force,front_fx,0.0019432661356404424 +illusion_1L,sr,103,30.9,force,front_fy,-1.9769482605624944e-05 +illusion_1L,sr,103,30.9,force,upper_fx,0.0023169168271124363 +illusion_1L,sr,103,30.9,force,upper_fy,0.00037017749855294824 +illusion_1L,sr,103,30.9,force,lower_fx,0.002368829445913434 +illusion_1L,sr,103,30.9,force,lower_fy,-0.0003555026196409017 +illusion_1L,sr,104,31.2,force,front_fx,0.0019397803116589785 +illusion_1L,sr,104,31.2,force,front_fy,-1.4822466255282052e-05 +illusion_1L,sr,104,31.2,force,upper_fx,0.0023170707281678915 +illusion_1L,sr,104,31.2,force,upper_fy,0.0003878187562804669 +illusion_1L,sr,104,31.2,force,lower_fx,0.0023558782413601875 +illusion_1L,sr,104,31.2,force,lower_fy,-0.0003475691191852093 +illusion_1L,sr,105,31.5,force,front_fx,0.0019371509552001953 +illusion_1L,sr,105,31.5,force,front_fy,-9.093204425880685e-06 +illusion_1L,sr,105,31.5,force,upper_fx,0.0023186756297945976 +illusion_1L,sr,105,31.5,force,upper_fy,0.00040045854984782636 +illusion_1L,sr,105,31.5,force,lower_fx,0.002342568477615714 +illusion_1L,sr,105,31.5,force,lower_fy,-0.0003368060861248523 +illusion_1L,sr,106,31.8,force,front_fx,0.0019346039043739438 +illusion_1L,sr,106,31.8,force,front_fy,-2.653851879586e-06 +illusion_1L,sr,106,31.8,force,upper_fx,0.0023209245409816504 +illusion_1L,sr,106,31.8,force,upper_fy,0.00040760947740636766 +illusion_1L,sr,106,31.8,force,lower_fx,0.0023290046956390142 +illusion_1L,sr,106,31.8,force,lower_fy,-0.0003238149802200496 +illusion_1L,sr,107,32.1,force,front_fx,0.0019344353349879384 +illusion_1L,sr,107,32.1,force,front_fy,3.3956000606849557e-06 +illusion_1L,sr,107,32.1,force,upper_fx,0.002326566493138671 +illusion_1L,sr,107,32.1,force,upper_fy,0.00040909371455200016 +illusion_1L,sr,107,32.1,force,lower_fx,0.0023187820333987474 +illusion_1L,sr,107,32.1,force,lower_fy,-0.00030990393133834004 +illusion_1L,sr,108,32.4,force,front_fx,0.0019393357215449214 +illusion_1L,sr,108,32.4,force,front_fy,9.26362190512009e-06 +illusion_1L,sr,108,32.4,force,upper_fx,0.002338771941140294 +illusion_1L,sr,108,32.4,force,upper_fy,0.000406076229410246 +illusion_1L,sr,108,32.4,force,lower_fx,0.0023158553522080183 +illusion_1L,sr,108,32.4,force,lower_fy,-0.0002964872110169381 +illusion_1L,sr,109,32.7,force,front_fx,0.001943876501172781 +illusion_1L,sr,109,32.7,force,front_fy,1.4681990251119714e-05 +illusion_1L,sr,109,32.7,force,upper_fx,0.0023507035803049803 +illusion_1L,sr,109,32.7,force,upper_fy,0.00040079394239000976 +illusion_1L,sr,109,32.7,force,lower_fx,0.0023141561541706324 +illusion_1L,sr,109,32.7,force,lower_fy,-0.00028638498042710125 +illusion_1L,sr,110,33.0,force,front_fx,0.0019438472809270024 +illusion_1L,sr,110,33.0,force,front_fy,1.8790822650771588e-05 +illusion_1L,sr,110,33.0,force,upper_fx,0.0023569667246192694 +illusion_1L,sr,110,33.0,force,upper_fy,0.00039470239426009357 +illusion_1L,sr,110,33.0,force,lower_fx,0.0023088438902050257 +illusion_1L,sr,110,33.0,force,lower_fy,-0.00028170764562673867 +illusion_1L,sr,111,33.3,force,front_fx,0.0019412362016737461 +illusion_1L,sr,111,33.3,force,front_fy,2.2062265998101793e-05 +illusion_1L,sr,111,33.3,force,upper_fx,0.0023588130716234446 +illusion_1L,sr,111,33.3,force,upper_fy,0.0003886993508785963 +illusion_1L,sr,111,33.3,force,lower_fx,0.0023016834165900946 +illusion_1L,sr,111,33.3,force,lower_fy,-0.00028268000460229814 +illusion_1L,sr,112,33.6,force,front_fx,0.0019390052184462547 +illusion_1L,sr,112,33.6,force,front_fy,2.4430471967207268e-05 +illusion_1L,sr,112,33.6,force,upper_fx,0.0023596021346747875 +illusion_1L,sr,112,33.6,force,upper_fy,0.0003829359484370798 +illusion_1L,sr,112,33.6,force,lower_fx,0.00229649874381721 +illusion_1L,sr,112,33.6,force,lower_fy,-0.00028899687458761036 +illusion_1L,sr,113,33.9,force,front_fx,0.0019356932025402784 +illusion_1L,sr,113,33.9,force,front_fy,2.501784183550626e-05 +illusion_1L,sr,113,33.9,force,upper_fx,0.002357047749683261 +illusion_1L,sr,113,33.9,force,upper_fy,0.00037762662395834923 +illusion_1L,sr,113,33.9,force,lower_fx,0.002291222335770726 +illusion_1L,sr,113,33.9,force,lower_fy,-0.00030068992055021226 +illusion_1L,sr,114,34.2,force,front_fx,0.0019326317124068737 +illusion_1L,sr,114,34.2,force,front_fy,2.4708120690775104e-05 +illusion_1L,sr,114,34.2,force,upper_fx,0.0023529808968305588 +illusion_1L,sr,114,34.2,force,upper_fy,0.00037272428744472563 +illusion_1L,sr,114,34.2,force,lower_fx,0.002287826268002391 +illusion_1L,sr,114,34.2,force,lower_fy,-0.0003160963242407888 +illusion_1L,sr,115,34.5,force,front_fx,0.0019336325349286199 +illusion_1L,sr,115,34.5,force,front_fy,2.3161701392382383e-05 +illusion_1L,sr,115,34.5,force,upper_fx,0.0023516796063631773 +illusion_1L,sr,115,34.5,force,upper_fy,0.0003672026505228132 +illusion_1L,sr,115,34.5,force,lower_fx,0.002290574600920081 +illusion_1L,sr,115,34.5,force,lower_fy,-0.0003335114452056587 +illusion_1L,sr,116,34.8,force,front_fx,0.0019371823873370886 +illusion_1L,sr,116,34.8,force,front_fy,1.9985602193628438e-05 +illusion_1L,sr,116,34.8,force,upper_fx,0.0023515718057751656 +illusion_1L,sr,116,34.8,force,upper_fy,0.0003606434038374573 +illusion_1L,sr,116,34.8,force,lower_fx,0.00229755905456841 +illusion_1L,sr,116,34.8,force,lower_fy,-0.0003518813173286617 +illusion_1L,sr,117,35.1,force,front_fx,0.0019373457180336118 +illusion_1L,sr,117,35.1,force,front_fy,1.6239202523138374e-05 +illusion_1L,sr,117,35.1,force,upper_fx,0.002345920307561755 +illusion_1L,sr,117,35.1,force,upper_fy,0.00035345987998880446 +illusion_1L,sr,117,35.1,force,lower_fx,0.002301638713106513 +illusion_1L,sr,117,35.1,force,lower_fy,-0.00036974617978557944 +illusion_1L,sr,118,35.4,force,front_fx,0.001934393192641437 +illusion_1L,sr,118,35.4,force,front_fy,1.1688713129842654e-05 +illusion_1L,sr,118,35.4,force,upper_fx,0.0023349265102297068 +illusion_1L,sr,118,35.4,force,upper_fy,0.0003447823110036552 +illusion_1L,sr,118,35.4,force,lower_fx,0.002302406122907996 +illusion_1L,sr,118,35.4,force,lower_fy,-0.0003853679518215358 +illusion_1L,sr,119,35.7,force,front_fx,0.0019319518469274044 +illusion_1L,sr,119,35.7,force,front_fy,6.22995730736875e-06 +illusion_1L,sr,119,35.7,force,upper_fx,0.0023235739208757877 +illusion_1L,sr,119,35.7,force,upper_fy,0.00033379302476532757 +illusion_1L,sr,119,35.7,force,lower_fx,0.0023040820378810167 +illusion_1L,sr,119,35.7,force,lower_fy,-0.0003969132376369089 +illusion_1L,sr,120,36.0,force,front_fx,0.001929835882037878 +illusion_1L,sr,120,36.0,force,front_fy,1.0981831337630865e-06 +illusion_1L,sr,120,36.0,force,upper_fx,0.002312086522579193 +illusion_1L,sr,120,36.0,force,upper_fy,0.0003215441247448325 +illusion_1L,sr,120,36.0,force,lower_fx,0.0023062285035848618 +illusion_1L,sr,120,36.0,force,lower_fy,-0.00040351742063649 +illusion_1L,sr,121,36.3,force,front_fx,0.0019278695108368993 +illusion_1L,sr,121,36.3,force,front_fy,-3.99402824768913e-06 +illusion_1L,sr,121,36.3,force,upper_fx,0.0023012084420770407 +illusion_1L,sr,121,36.3,force,upper_fy,0.0003089524689130485 +illusion_1L,sr,121,36.3,force,lower_fx,0.0023088857997208834 +illusion_1L,sr,121,36.3,force,lower_fy,-0.00040567442192696035 +illusion_1L,sr,122,36.6,force,front_fx,0.0019287030445411801 +illusion_1L,sr,122,36.6,force,front_fy,-9.119644346355926e-06 +illusion_1L,sr,122,36.6,force,upper_fx,0.0022946554236114025 +illusion_1L,sr,122,36.6,force,upper_fy,0.0002972407382912934 +illusion_1L,sr,122,36.6,force,lower_fx,0.002315110294148326 +illusion_1L,sr,122,36.6,force,lower_fy,-0.00040392641676589847 +illusion_1L,sr,123,36.9,force,front_fx,0.001933789812028408 +illusion_1L,sr,123,36.9,force,front_fy,-1.3094507266941946e-05 +illusion_1L,sr,123,36.9,force,upper_fx,0.002294641686603427 +illusion_1L,sr,123,36.9,force,upper_fy,0.0002883553097490221 +illusion_1L,sr,123,36.9,force,lower_fx,0.002326581859961152 +illusion_1L,sr,123,36.9,force,lower_fy,-0.0003991828125435859 +illusion_1L,sr,124,37.2,force,front_fx,0.0019371315138414502 +illusion_1L,sr,124,37.2,force,front_fy,-1.659088593441993e-05 +illusion_1L,sr,124,37.2,force,upper_fx,0.002294194884598255 +illusion_1L,sr,124,37.2,force,upper_fy,0.00028418059810064733 +illusion_1L,sr,124,37.2,force,lower_fx,0.002335775876417756 +illusion_1L,sr,124,37.2,force,lower_fy,-0.0003938895824830979 +illusion_1L,sr,125,37.5,force,front_fx,0.0019360707374289632 +illusion_1L,sr,125,37.5,force,front_fy,-1.9404802515055053e-05 +illusion_1L,sr,125,37.5,force,upper_fx,0.002290085656568408 +illusion_1L,sr,125,37.5,force,upper_fy,0.000285725254798308 +illusion_1L,sr,125,37.5,force,lower_fx,0.002338976599276066 +illusion_1L,sr,125,37.5,force,lower_fy,-0.0003890138759743422 +illusion_1L,sr,126,37.8,force,front_fx,0.0019332015654072165 +illusion_1L,sr,126,37.8,force,front_fy,-2.0713127014460042e-05 +illusion_1L,sr,126,37.8,force,upper_fx,0.0022848346270620823 +illusion_1L,sr,126,37.8,force,upper_fy,0.0002926979213953018 +illusion_1L,sr,126,37.8,force,lower_fx,0.0023383742664009333 +illusion_1L,sr,126,37.8,force,lower_fy,-0.0003842627629637718 +illusion_1L,sr,127,38.1,force,front_fx,0.001930589904077351 +illusion_1L,sr,127,38.1,force,front_fy,-2.1171310436329804e-05 +illusion_1L,sr,127,38.1,force,upper_fx,0.002281029475852847 +illusion_1L,sr,127,38.1,force,upper_fy,0.00030390857136808336 +illusion_1L,sr,127,38.1,force,lower_fx,0.0023362869396805763 +illusion_1L,sr,127,38.1,force,lower_fy,-0.00037962591159157455 +illusion_1L,sr,128,38.4,force,front_fx,0.0019272099016234279 +illusion_1L,sr,128,38.4,force,front_fy,-2.0637493435060605e-05 +illusion_1L,sr,128,38.4,force,upper_fx,0.002277361461892724 +illusion_1L,sr,128,38.4,force,upper_fy,0.00031849919469095767 +illusion_1L,sr,128,38.4,force,lower_fx,0.0023313192650675774 +illusion_1L,sr,128,38.4,force,lower_fy,-0.0003748730814550072 +illusion_1L,sr,129,38.7,force,front_fx,0.0019248819444328547 +illusion_1L,sr,129,38.7,force,front_fy,-1.8514103430788964e-05 +illusion_1L,sr,129,38.7,force,upper_fx,0.0022760999854654074 +illusion_1L,sr,129,38.7,force,upper_fy,0.00033496509422548115 +illusion_1L,sr,129,38.7,force,lower_fx,0.0023258645087480545 +illusion_1L,sr,129,38.7,force,lower_fy,-0.00036916829412803054 +illusion_1L,sr,130,39.0,force,front_fx,0.001926978467963636 +illusion_1L,sr,130,39.0,force,front_fy,-1.5725929188192822e-05 +illusion_1L,sr,130,39.0,force,upper_fx,0.0022812047973275185 +illusion_1L,sr,130,39.0,force,upper_fy,0.0003512364055495709 +illusion_1L,sr,130,39.0,force,lower_fx,0.0023241201415657997 +illusion_1L,sr,130,39.0,force,lower_fy,-0.0003620328789111227 +illusion_1L,sr,131,39.3,force,front_fx,0.0019304299494251609 +illusion_1L,sr,131,39.3,force,front_fy,-1.2085934031347279e-05 +illusion_1L,sr,131,39.3,force,upper_fx,0.0022888723760843277 +illusion_1L,sr,131,39.3,force,upper_fy,0.00036666946834884584 +illusion_1L,sr,131,39.3,force,lower_fx,0.0023227178025990725 +illusion_1L,sr,131,39.3,force,lower_fy,-0.0003535675641614944 +illusion_1L,sr,132,39.6,force,front_fx,0.0019303304143249989 +illusion_1L,sr,132,39.6,force,front_fy,-7.609677595610265e-06 +illusion_1L,sr,132,39.6,force,upper_fx,0.002293178578838706 +illusion_1L,sr,132,39.6,force,upper_fy,0.0003805345040746033 +illusion_1L,sr,132,39.6,force,lower_fx,0.0023163093719631433 +illusion_1L,sr,132,39.6,force,lower_fy,-0.00034420948941260576 +illusion_1L,sr,133,39.9,force,front_fx,0.001927707577124238 +illusion_1L,sr,133,39.9,force,front_fy,-3.0874750791554106e-06 +illusion_1L,sr,133,39.9,force,upper_fx,0.002294499659910798 +illusion_1L,sr,133,39.9,force,upper_fy,0.0003912121173925698 +illusion_1L,sr,133,39.9,force,lower_fx,0.0023058478254824877 +illusion_1L,sr,133,39.9,force,lower_fy,-0.000334025826305151 +illusion_1L,sr,134,40.2,force,front_fx,0.0019258533138781786 +illusion_1L,sr,134,40.2,force,front_fy,1.5365528724942124e-06 +illusion_1L,sr,134,40.2,force,upper_fx,0.0022968859411776066 +illusion_1L,sr,134,40.2,force,upper_fy,0.00039767147973179817 +illusion_1L,sr,134,40.2,force,lower_fx,0.002296013990417123 +illusion_1L,sr,134,40.2,force,lower_fy,-0.00032283563632518053 +illusion_1L,sr,135,40.5,force,front_fx,0.0019239966059103608 +illusion_1L,sr,135,40.5,force,front_fy,6.2382678152062e-06 +illusion_1L,sr,135,40.5,force,upper_fx,0.0022991120349615812 +illusion_1L,sr,135,40.5,force,upper_fy,0.0004002292698714882 +illusion_1L,sr,135,40.5,force,lower_fx,0.0022861752659082413 +illusion_1L,sr,135,40.5,force,lower_fy,-0.00031175726326182485 +illusion_1L,sr,136,40.8,force,front_fx,0.0019223513081669807 +illusion_1L,sr,136,40.8,force,front_fy,1.033002627082169e-05 +illusion_1L,sr,136,40.8,force,upper_fx,0.0023018138017505407 +illusion_1L,sr,136,40.8,force,upper_fy,0.0003992413985542953 +illusion_1L,sr,136,40.8,force,lower_fx,0.0022775104735046625 +illusion_1L,sr,136,40.8,force,lower_fy,-0.0003021277370862663 +illusion_1L,sr,137,41.1,force,front_fx,0.0019239012617617846 +illusion_1L,sr,137,41.1,force,front_fy,1.3948409105069004e-05 +illusion_1L,sr,137,41.1,force,upper_fx,0.002308298833668232 +illusion_1L,sr,137,41.1,force,upper_fy,0.00039550382643938065 +illusion_1L,sr,137,41.1,force,lower_fx,0.002273828722536564 +illusion_1L,sr,137,41.1,force,lower_fy,-0.00029483274556696415 +illusion_1L,sr,138,41.4,force,front_fx,0.0019287242321297526 +illusion_1L,sr,138,41.4,force,front_fy,1.710600008664187e-05 +illusion_1L,sr,138,41.4,force,upper_fx,0.002318496583029628 +illusion_1L,sr,138,41.4,force,upper_fy,0.0003903839970007539 +illusion_1L,sr,138,41.4,force,lower_fx,0.002275545382872224 +illusion_1L,sr,138,41.4,force,lower_fy,-0.00029120343970134854 +illusion_1L,sr,139,41.7,force,front_fx,0.0019308668561279774 +illusion_1L,sr,139,41.7,force,front_fy,1.92425686691422e-05 +illusion_1L,sr,139,41.7,force,upper_fx,0.002324983011931181 +illusion_1L,sr,139,41.7,force,upper_fy,0.0003853960952255875 +illusion_1L,sr,139,41.7,force,lower_fx,0.002275672275573015 +illusion_1L,sr,139,41.7,force,lower_fy,-0.00029290420934557915 +illusion_1L,sr,140,42.0,force,front_fx,0.001928925747051835 +illusion_1L,sr,140,42.0,force,front_fy,2.0487388610490598e-05 +illusion_1L,sr,140,42.0,force,upper_fx,0.0023253746330738068 +illusion_1L,sr,140,42.0,force,upper_fy,0.00038108599255792797 +illusion_1L,sr,140,42.0,force,lower_fx,0.0022721753921359777 +illusion_1L,sr,140,42.0,force,lower_fy,-0.0002998200652655214 +illusion_1L,sr,141,42.3,force,front_fx,0.0019260233966633677 +illusion_1L,sr,141,42.3,force,front_fy,2.088281871692743e-05 +illusion_1L,sr,141,42.3,force,upper_fx,0.0023228153586387634 +illusion_1L,sr,141,42.3,force,upper_fy,0.00037687778240069747 +illusion_1L,sr,141,42.3,force,lower_fx,0.002268439857289195 +illusion_1L,sr,141,42.3,force,lower_fy,-0.0003107406082563102 +illusion_1L,sr,142,42.6,force,front_fx,0.0019232152262702584 +illusion_1L,sr,142,42.6,force,front_fy,1.9896811863873154e-05 +illusion_1L,sr,142,42.6,force,upper_fx,0.0023184807505458593 +illusion_1L,sr,142,42.6,force,upper_fy,0.00037216051714494824 +illusion_1L,sr,142,42.6,force,lower_fx,0.002265693387016654 +illusion_1L,sr,142,42.6,force,lower_fy,-0.0003245924599468708 +illusion_1L,sr,143,42.9,force,front_fx,0.0019200908718630672 +illusion_1L,sr,143,42.9,force,front_fy,1.8252068912261166e-05 +illusion_1L,sr,143,42.9,force,upper_fx,0.002311938675120473 +illusion_1L,sr,143,42.9,force,upper_fy,0.00036685651866719127 +illusion_1L,sr,143,42.9,force,lower_fx,0.002263387432321906 +illusion_1L,sr,143,42.9,force,lower_fy,-0.0003396873362362385 +illusion_1L,sr,144,43.2,force,front_fx,0.0019187224097549915 +illusion_1L,sr,144,43.2,force,front_fy,1.5820824046386406e-05 +illusion_1L,sr,144,43.2,force,upper_fx,0.002305986825376749 +illusion_1L,sr,144,43.2,force,upper_fy,0.000360318023012951 +illusion_1L,sr,144,43.2,force,lower_fx,0.0022642361000180244 +illusion_1L,sr,144,43.2,force,lower_fy,-0.00035443701199255884 +illusion_1L,sr,145,43.5,force,front_fx,0.0019218295346945524 +illusion_1L,sr,145,43.5,force,front_fy,1.216367854794953e-05 +illusion_1L,sr,145,43.5,force,upper_fx,0.002304244553670287 +illusion_1L,sr,145,43.5,force,upper_fy,0.0003519784950185567 +illusion_1L,sr,145,43.5,force,lower_fx,0.0022714000660926104 +illusion_1L,sr,145,43.5,force,lower_fy,-0.000367654807632789 +illusion_1L,sr,146,43.8,force,front_fx,0.0019251038320362568 +illusion_1L,sr,146,43.8,force,front_fy,8.128261470119469e-06 +illusion_1L,sr,146,43.8,force,upper_fx,0.00230189086869359 +illusion_1L,sr,146,43.8,force,upper_fy,0.0003428715281188488 +illusion_1L,sr,146,43.8,force,lower_fx,0.0022796145640313625 +illusion_1L,sr,146,43.8,force,lower_fy,-0.0003788090543821454 +illusion_1L,sr,147,44.1,force,front_fx,0.0019248530734330416 +illusion_1L,sr,147,44.1,force,front_fy,3.762229653148097e-06 +illusion_1L,sr,147,44.1,force,upper_fx,0.0022949257399886847 +illusion_1L,sr,147,44.1,force,upper_fy,0.00033346854615956545 +illusion_1L,sr,147,44.1,force,lower_fx,0.002284312155097723 +illusion_1L,sr,147,44.1,force,lower_fy,-0.0003876919508911669 +illusion_1L,sr,148,44.4,force,front_fx,0.0019226535223424435 +illusion_1L,sr,148,44.4,force,front_fy,-1.304756551689934e-06 +illusion_1L,sr,148,44.4,force,upper_fx,0.0022851370740681887 +illusion_1L,sr,148,44.4,force,upper_fy,0.00032377976458519697 +illusion_1L,sr,148,44.4,force,lower_fx,0.0022865773644298315 +illusion_1L,sr,148,44.4,force,lower_fy,-0.0003936034918297082 +illusion_1L,sr,149,44.7,force,front_fx,0.0019210922764614224 +illusion_1L,sr,149,44.7,force,front_fy,-5.847327429364668e-06 +illusion_1L,sr,149,44.7,force,upper_fx,0.0022763272281736135 +illusion_1L,sr,149,44.7,force,upper_fy,0.000314356671879068 +illusion_1L,sr,149,44.7,force,lower_fx,0.002289591357111931 +illusion_1L,sr,149,44.7,force,lower_fy,-0.0003958263841923326 +illusion_1L,sr,150,45.0,force,front_fx,0.0019192610634490848 +illusion_1L,sr,150,45.0,force,front_fy,-9.945400051947217e-06 +illusion_1L,sr,150,45.0,force,upper_fx,0.002267641481012106 +illusion_1L,sr,150,45.0,force,upper_fy,0.00030626001534983516 +illusion_1L,sr,150,45.0,force,lower_fx,0.002291896613314748 +illusion_1L,sr,150,45.0,force,lower_fy,-0.0003950734680984169 +illusion_1L,sr,151,45.3,force,front_fx,0.0019178919028490782 +illusion_1L,sr,151,45.3,force,front_fy,-1.3924326594860759e-05 +illusion_1L,sr,151,45.3,force,upper_fx,0.0022607313003391027 +illusion_1L,sr,151,45.3,force,upper_fy,0.0003003264428116381 +illusion_1L,sr,151,45.3,force,lower_fx,0.0022945962846279144 +illusion_1L,sr,151,45.3,force,lower_fy,-0.00039216032018885016 +illusion_1L,sr,152,45.6,force,front_fx,0.0019200118258595467 +illusion_1L,sr,152,45.6,force,front_fy,-1.6601670722593553e-05 +illusion_1L,sr,152,45.6,force,upper_fx,0.002259385073557496 +illusion_1L,sr,152,45.6,force,upper_fy,0.00029761757468804717 +illusion_1L,sr,152,45.6,force,lower_fx,0.002301062224432826 +illusion_1L,sr,152,45.6,force,lower_fy,-0.00038731328095309436 +illusion_1L,sr,153,45.9,force,front_fx,0.0019242598209530115 +illusion_1L,sr,153,45.9,force,front_fy,-1.8578564777271822e-05 +illusion_1L,sr,153,45.9,force,upper_fx,0.002262135734781623 +illusion_1L,sr,153,45.9,force,upper_fy,0.0002988045453093946 +illusion_1L,sr,153,45.9,force,lower_fx,0.0023094709031283855 +illusion_1L,sr,153,45.9,force,lower_fy,-0.0003820833517238498 +illusion_1L,sr,154,46.2,force,front_fx,0.0019254147773608565 +illusion_1L,sr,154,46.2,force,front_fy,-2.001323809963651e-05 +illusion_1L,sr,154,46.2,force,upper_fx,0.0022627965081483126 +illusion_1L,sr,154,46.2,force,upper_fy,0.0003046306374017149 +illusion_1L,sr,154,46.2,force,lower_fx,0.0023133037611842155 +illusion_1L,sr,154,46.2,force,lower_fy,-0.00037777889519929886 +illusion_1L,sr,155,46.5,force,front_fx,0.0019230896141380072 +illusion_1L,sr,155,46.5,force,front_fy,-1.991023418668192e-05 +illusion_1L,sr,155,46.5,force,upper_fx,0.0022602600511163473 +illusion_1L,sr,155,46.5,force,upper_fy,0.00031482006306760013 +illusion_1L,sr,155,46.5,force,lower_fx,0.002311327261850238 +illusion_1L,sr,155,46.5,force,lower_fy,-0.00037397266714833677 +illusion_1L,sr,156,46.8,force,front_fx,0.001920427312143147 +illusion_1L,sr,156,46.8,force,front_fy,-1.910070022859145e-05 +illusion_1L,sr,156,46.8,force,upper_fx,0.0022582130040973425 +illusion_1L,sr,156,46.8,force,upper_fy,0.00032726192148402333 +illusion_1L,sr,156,46.8,force,lower_fx,0.0023071542382240295 +illusion_1L,sr,156,46.8,force,lower_fy,-0.00037018919829279184 +illusion_1L,sr,157,47.1,force,front_fx,0.0019177434733137488 +illusion_1L,sr,157,47.1,force,front_fy,-1.741911910357885e-05 +illusion_1L,sr,157,47.1,force,upper_fx,0.002256824867799878 +illusion_1L,sr,157,47.1,force,upper_fy,0.00034087561652995646 +illusion_1L,sr,157,47.1,force,lower_fx,0.002301017986610532 +illusion_1L,sr,157,47.1,force,lower_fy,-0.00036577496211975813 +illusion_1L,sr,158,47.4,force,front_fx,0.0019150067819282413 +illusion_1L,sr,158,47.4,force,front_fy,-1.4391031982086133e-05 +illusion_1L,sr,158,47.4,force,upper_fx,0.002256188075989485 +illusion_1L,sr,158,47.4,force,upper_fy,0.00035451140138320625 +illusion_1L,sr,158,47.4,force,lower_fx,0.002293340163305402 +illusion_1L,sr,158,47.4,force,lower_fy,-0.000360088306479156 +illusion_1L,sr,159,47.7,force,front_fx,0.0019146152772009373 +illusion_1L,sr,159,47.7,force,front_fy,-1.0774366273835767e-05 +illusion_1L,sr,159,47.7,force,upper_fx,0.0022592060267925262 +illusion_1L,sr,159,47.7,force,upper_fy,0.00036648500827141106 +illusion_1L,sr,159,47.7,force,lower_fx,0.002287372713908553 +illusion_1L,sr,159,47.7,force,lower_fy,-0.00035284843761473894 +illusion_1L,sr,160,48.0,force,front_fx,0.001918360241688788 +illusion_1L,sr,160,48.0,force,front_fy,-6.73837166687008e-06 +illusion_1L,sr,160,48.0,force,upper_fx,0.00226786220446229 +illusion_1L,sr,160,48.0,force,upper_fy,0.00037606252590194345 +illusion_1L,sr,160,48.0,force,lower_fx,0.002285626484081149 +illusion_1L,sr,160,48.0,force,lower_fy,-0.0003440396103542298 +illusion_1L,sr,161,48.3,force,front_fx,0.0019212114857509732 +illusion_1L,sr,161,48.3,force,front_fy,-1.9006841966984211e-06 +illusion_1L,sr,161,48.3,force,upper_fx,0.0022760783322155476 +illusion_1L,sr,161,48.3,force,upper_fy,0.00038372966810129583 +illusion_1L,sr,161,48.3,force,lower_fx,0.0022826618514955044 +illusion_1L,sr,161,48.3,force,lower_fy,-0.0003346061275806278 +illusion_1L,sr,162,48.6,force,front_fx,0.0019206056604161859 +illusion_1L,sr,162,48.6,force,front_fy,2.627852609293768e-06 +illusion_1L,sr,162,48.6,force,upper_fx,0.002280425513163209 +illusion_1L,sr,162,48.6,force,upper_fy,0.0003889953368343413 +illusion_1L,sr,162,48.6,force,lower_fx,0.002275616629049182 +illusion_1L,sr,162,48.6,force,lower_fy,-0.0003256164491176605 +illusion_1L,sr,163,48.9,force,front_fx,0.0019185940036550164 +illusion_1L,sr,163,48.9,force,front_fy,6.8745421231142245e-06 +illusion_1L,sr,163,48.9,force,upper_fx,0.0022828152868896723 +illusion_1L,sr,163,48.9,force,upper_fy,0.0003915265842806548 +illusion_1L,sr,163,48.9,force,lower_fx,0.0022670140024274588 +illusion_1L,sr,163,48.9,force,lower_fy,-0.00031721184495836496 +illusion_1L,sr,164,49.2,force,front_fx,0.0019171173917129636 +illusion_1L,sr,164,49.2,force,front_fy,1.0996105629601516e-05 +illusion_1L,sr,164,49.2,force,upper_fx,0.0022854325361549854 +illusion_1L,sr,164,49.2,force,upper_fy,0.00039142000605352223 +illusion_1L,sr,164,49.2,force,lower_fx,0.002259559463709593 +illusion_1L,sr,164,49.2,force,lower_fy,-0.0003098953457083553 +illusion_1L,sr,165,49.5,force,front_fx,0.0019152959575876594 +illusion_1L,sr,165,49.5,force,front_fy,1.411942776030628e-05 +illusion_1L,sr,165,49.5,force,upper_fx,0.0022871317341923714 +illusion_1L,sr,165,49.5,force,upper_fy,0.0003890726075042039 +illusion_1L,sr,165,49.5,force,lower_fx,0.0022524988744407892 +illusion_1L,sr,165,49.5,force,lower_fy,-0.00030494522070512176 +illusion_1L,sr,166,49.8,force,front_fx,0.001914288615807891 +illusion_1L,sr,166,49.8,force,front_fy,1.676901592873037e-05 +illusion_1L,sr,166,49.8,force,upper_fx,0.0022893762215971947 +illusion_1L,sr,166,49.8,force,upper_fy,0.00038542741094715893 +illusion_1L,sr,166,49.8,force,lower_fx,0.0022476972080767155 +illusion_1L,sr,166,49.8,force,lower_fy,-0.0003026721242349595 +illusion_1L,sr,167,50.1,force,front_fx,0.0019169700099155307 +illusion_1L,sr,167,50.1,force,front_fy,1.8765407730825245e-05 +illusion_1L,sr,167,50.1,force,upper_fx,0.002295383485034108 +illusion_1L,sr,167,50.1,force,upper_fy,0.0003808988840319216 +illusion_1L,sr,167,50.1,force,lower_fx,0.0022487209644168615 +illusion_1L,sr,167,50.1,force,lower_fy,-0.0003034985566046089 +illusion_1L,sr,168,50.4,force,front_fx,0.0019206027500331402 +illusion_1L,sr,168,50.4,force,front_fy,1.953674291144125e-05 +illusion_1L,sr,168,50.4,force,upper_fx,0.00230170926079154 +illusion_1L,sr,168,50.4,force,upper_fy,0.0003763918939512223 +illusion_1L,sr,168,50.4,force,lower_fx,0.002252344973385334 +illusion_1L,sr,168,50.4,force,lower_fy,-0.0003082847106270492 +illusion_1L,sr,169,50.7,force,front_fx,0.0019209106685593724 +illusion_1L,sr,169,50.7,force,front_fy,1.9593739125411958e-05 +illusion_1L,sr,169,50.7,force,upper_fx,0.0023029008880257607 +illusion_1L,sr,169,50.7,force,upper_fy,0.000372799375327304 +illusion_1L,sr,169,50.7,force,lower_fx,0.0022533307783305645 +illusion_1L,sr,169,50.7,force,lower_fy,-0.0003169496776536107 +illusion_1L,sr,170,51.0,force,front_fx,0.0019182882970198989 +illusion_1L,sr,170,51.0,force,front_fy,1.8798029486788437e-05 +illusion_1L,sr,170,51.0,force,upper_fx,0.0022988503333181143 +illusion_1L,sr,170,51.0,force,upper_fy,0.00036953651579096913 +illusion_1L,sr,170,51.0,force,lower_fx,0.002251608995720744 +illusion_1L,sr,170,51.0,force,lower_fy,-0.00032851265859790146 +illusion_1L,sr,171,51.3,force,front_fx,0.0019158232025802135 +illusion_1L,sr,171,51.3,force,front_fy,1.6680363842169754e-05 +illusion_1L,sr,171,51.3,force,upper_fx,0.002293296856805682 +illusion_1L,sr,171,51.3,force,upper_fy,0.00036545979673974216 +illusion_1L,sr,171,51.3,force,lower_fx,0.0022508057300001383 +illusion_1L,sr,171,51.3,force,lower_fy,-0.0003413237282074988 +illusion_1L,sr,172,51.6,force,front_fx,0.0019133335445076227 +illusion_1L,sr,172,51.6,force,front_fy,1.3946584658697248e-05 +illusion_1L,sr,172,51.6,force,upper_fx,0.002286001341417432 +illusion_1L,sr,172,51.6,force,upper_fy,0.00036029936745762825 +illusion_1L,sr,172,51.6,force,lower_fx,0.002250444609671831 +illusion_1L,sr,172,51.6,force,lower_fy,-0.00035398153704591095 +illusion_1L,sr,173,51.9,force,front_fx,0.0019111211877316236 +illusion_1L,sr,173,51.9,force,front_fy,1.0502865734451916e-05 +illusion_1L,sr,173,51.9,force,upper_fx,0.0022779980208724737 +illusion_1L,sr,173,51.9,force,upper_fy,0.00035366194788366556 +illusion_1L,sr,173,51.9,force,lower_fx,0.002251157071441412 +illusion_1L,sr,173,51.9,force,lower_fy,-0.00036543054739013314 +illusion_1L,sr,174,52.2,force,front_fx,0.0019118698546662927 +illusion_1L,sr,174,52.2,force,front_fy,6.145404313429026e-06 +illusion_1L,sr,174,52.2,force,upper_fx,0.002272861311212182 +illusion_1L,sr,174,52.2,force,upper_fy,0.00034524151124060154 +illusion_1L,sr,174,52.2,force,lower_fx,0.0022560181096196175 +illusion_1L,sr,174,52.2,force,lower_fy,-0.0003747105074580759 +illusion_1L,sr,175,52.5,force,front_fx,0.0019158754730597138 +illusion_1L,sr,175,52.5,force,front_fy,1.7908871541294502e-06 +illusion_1L,sr,175,52.5,force,upper_fx,0.0022714619990438223 +illusion_1L,sr,175,52.5,force,upper_fy,0.0003357639361638576 +illusion_1L,sr,175,52.5,force,lower_fx,0.002265318762511015 +illusion_1L,sr,175,52.5,force,lower_fy,-0.0003813546500168741 +illusion_1L,sr,176,52.8,force,front_fx,0.001918169902637601 +illusion_1L,sr,176,52.8,force,front_fy,-2.563693897172925e-06 +illusion_1L,sr,176,52.8,force,upper_fx,0.0022683092392981052 +illusion_1L,sr,176,52.8,force,upper_fy,0.0003265485865995288 +illusion_1L,sr,176,52.8,force,lower_fx,0.002272997749969363 +illusion_1L,sr,176,52.8,force,lower_fy,-0.0003860061115119606 +illusion_1L,sr,177,53.1,force,front_fx,0.0019171885214745998 +illusion_1L,sr,177,53.1,force,front_fy,-6.86063276589266e-06 +illusion_1L,sr,177,53.1,force,upper_fx,0.0022615427151322365 +illusion_1L,sr,177,53.1,force,upper_fy,0.00031842096359468997 +illusion_1L,sr,177,53.1,force,lower_fx,0.00227664434351027 +illusion_1L,sr,177,53.1,force,lower_fy,-0.0003887462371494621 +illusion_1L,sr,178,53.4,force,front_fx,0.001915382919833064 +illusion_1L,sr,178,53.4,force,front_fy,-1.0394651326350868e-05 +illusion_1L,sr,178,53.4,force,upper_fx,0.002254233695566654 +illusion_1L,sr,178,53.4,force,upper_fy,0.0003118520835414529 +illusion_1L,sr,178,53.4,force,lower_fx,0.0022788839414715767 +illusion_1L,sr,178,53.4,force,lower_fy,-0.00038903995300643146 +illusion_1L,sr,179,53.7,force,front_fx,0.0019138759234920144 +illusion_1L,sr,179,53.7,force,front_fy,-1.3579707228927873e-05 +illusion_1L,sr,179,53.7,force,upper_fx,0.002247937023639679 +illusion_1L,sr,179,53.7,force,upper_fy,0.0003071672690566629 +illusion_1L,sr,179,53.7,force,lower_fx,0.002280863933265209 +illusion_1L,sr,179,53.7,force,lower_fy,-0.00038747568032704294 +illusion_1L,sr,180,54.0,force,front_fx,0.0019120635697618127 +illusion_1L,sr,180,54.0,force,front_fy,-1.6181003957171924e-05 +illusion_1L,sr,180,54.0,force,upper_fx,0.0022423192858695984 +illusion_1L,sr,180,54.0,force,upper_fy,0.0003051969106309116 +illusion_1L,sr,180,54.0,force,lower_fx,0.0022818453144282103 +illusion_1L,sr,180,54.0,force,lower_fy,-0.00038463715463876724 +illusion_1L,sr,181,54.3,force,front_fx,0.0019115175819024444 +illusion_1L,sr,181,54.3,force,front_fy,-1.7769607438822277e-05 +illusion_1L,sr,181,54.3,force,upper_fx,0.0022394785191863775 +illusion_1L,sr,181,54.3,force,upper_fy,0.0003062597825191915 +illusion_1L,sr,181,54.3,force,lower_fx,0.002283659530803561 +illusion_1L,sr,181,54.3,force,lower_fy,-0.00038084923289716244 +illusion_1L,sr,182,54.6,force,front_fx,0.0019145278492942452 +illusion_1L,sr,182,54.6,force,front_fy,-1.8600361727294512e-05 +illusion_1L,sr,182,54.6,force,upper_fx,0.002242262242361903 +illusion_1L,sr,182,54.6,force,upper_fy,0.0003103105118498206 +illusion_1L,sr,182,54.6,force,lower_fx,0.0022889093961566687 +illusion_1L,sr,182,54.6,force,lower_fy,-0.0003765111032407731 +illusion_1L,sr,183,54.9,force,front_fx,0.0019174865446984768 +illusion_1L,sr,183,54.9,force,front_fy,-1.8749751689028926e-05 +illusion_1L,sr,183,54.9,force,upper_fx,0.0022463109344244003 +illusion_1L,sr,183,54.9,force,upper_fy,0.00031770789064466953 +illusion_1L,sr,183,54.9,force,lower_fx,0.002293046796694398 +illusion_1L,sr,183,54.9,force,lower_fy,-0.0003725700080394745 +illusion_1L,sr,184,55.2,force,front_fx,0.001917041139677167 +illusion_1L,sr,184,55.2,force,front_fy,-1.7671225577942096e-05 +illusion_1L,sr,184,55.2,force,upper_fx,0.00224746810272336 +illusion_1L,sr,184,55.2,force,upper_fy,0.00032830442069098353 +illusion_1L,sr,184,55.2,force,lower_fx,0.002291864948347211 +illusion_1L,sr,184,55.2,force,lower_fy,-0.00036901887506246567 +illusion_1L,sr,185,55.5,force,front_fx,0.0019143931567668915 +illusion_1L,sr,185,55.5,force,front_fy,-1.566796527185943e-05 +illusion_1L,sr,185,55.5,force,upper_fx,0.0022466012742370367 +illusion_1L,sr,185,55.5,force,upper_fy,0.00034053268609568477 +illusion_1L,sr,185,55.5,force,lower_fx,0.002286336151883006 +illusion_1L,sr,185,55.5,force,lower_fy,-0.00036525834002532065 +illusion_1L,sr,186,55.8,force,front_fx,0.001912186504341662 +illusion_1L,sr,186,55.8,force,front_fy,-1.3068111911707092e-05 +illusion_1L,sr,186,55.8,force,upper_fx,0.0022467980161309242 +illusion_1L,sr,186,55.8,force,upper_fy,0.0003527147346176207 +illusion_1L,sr,186,55.8,force,lower_fx,0.002279814565554261 +illusion_1L,sr,186,55.8,force,lower_fy,-0.00036041735438629985 +illusion_1L,sr,187,56.1,force,front_fx,0.0019099918426945806 +illusion_1L,sr,187,56.1,force,front_fy,-9.44910880207317e-06 +illusion_1L,sr,187,56.1,force,upper_fx,0.0022473721764981747 +illusion_1L,sr,187,56.1,force,upper_fy,0.0003640702343545854 +illusion_1L,sr,187,56.1,force,lower_fx,0.002271991455927491 +illusion_1L,sr,187,56.1,force,lower_fy,-0.000353995303157717 +illusion_1L,sr,188,56.4,force,front_fx,0.0019083545776084065 +illusion_1L,sr,188,56.4,force,front_fy,-5.398909706855193e-06 +illusion_1L,sr,188,56.4,force,upper_fx,0.0022491903509944677 +illusion_1L,sr,188,56.4,force,upper_fy,0.00037338968832045794 +illusion_1L,sr,188,56.4,force,lower_fx,0.002264241687953472 +illusion_1L,sr,188,56.4,force,lower_fy,-0.00034620481892488897 +illusion_1L,sr,189,56.7,force,front_fx,0.0019100254867225885 +illusion_1L,sr,189,56.7,force,front_fy,-1.313209622821887e-06 +illusion_1L,sr,189,56.7,force,upper_fx,0.002255384810268879 +illusion_1L,sr,189,56.7,force,upper_fy,0.00038004652014933527 +illusion_1L,sr,189,56.7,force,lower_fx,0.0022601925302296877 +illusion_1L,sr,189,56.7,force,lower_fy,-0.00033710943534970284 +illusion_1L,sr,190,57.0,force,front_fx,0.0019139413489028811 +illusion_1L,sr,190,57.0,force,front_fy,3.063167696382152e-06 +illusion_1L,sr,190,57.0,force,upper_fx,0.002264622366055846 +illusion_1L,sr,190,57.0,force,upper_fy,0.00038434340967796743 +illusion_1L,sr,190,57.0,force,lower_fx,0.002259087050333619 +illusion_1L,sr,190,57.0,force,lower_fy,-0.0003276241186540574 +illusion_1L,sr,191,57.3,force,front_fx,0.0019156126072630286 +illusion_1L,sr,191,57.3,force,front_fy,6.95382232152042e-06 +illusion_1L,sr,191,57.3,force,upper_fx,0.002271399600431323 +illusion_1L,sr,191,57.3,force,upper_fy,0.00038671193760819733 +illusion_1L,sr,191,57.3,force,lower_fx,0.002255905419588089 +illusion_1L,sr,191,57.3,force,lower_fy,-0.0003194176242686808 +illusion_1L,sr,192,57.6,force,front_fx,0.001914285239763558 +illusion_1L,sr,192,57.6,force,front_fy,1.0305723662895616e-05 +illusion_1L,sr,192,57.6,force,upper_fx,0.0022742387373000383 +illusion_1L,sr,192,57.6,force,upper_fy,0.00038741063326597214 +illusion_1L,sr,192,57.6,force,lower_fx,0.0022495556622743607 +illusion_1L,sr,192,57.6,force,lower_fy,-0.0003131652483716607 +illusion_1L,sr,193,57.9,force,front_fx,0.0019126433180645108 +illusion_1L,sr,193,57.9,force,front_fy,1.363095816486748e-05 +illusion_1L,sr,193,57.9,force,upper_fx,0.0022761435247957706 +illusion_1L,sr,193,57.9,force,upper_fy,0.0003865300095640123 +illusion_1L,sr,193,57.9,force,lower_fx,0.002243524882942438 +illusion_1L,sr,193,57.9,force,lower_fy,-0.00030878136749379337 +illusion_1L,sr,194,58.2,force,front_fx,0.0019111033761873841 +illusion_1L,sr,194,58.2,force,front_fy,1.59749743033899e-05 +illusion_1L,sr,194,58.2,force,upper_fx,0.0022773221135139465 +illusion_1L,sr,194,58.2,force,upper_fy,0.00038419311749748886 +illusion_1L,sr,194,58.2,force,lower_fx,0.002238350221887231 +illusion_1L,sr,194,58.2,force,lower_fy,-0.00030705047538504004 +illusion_1L,sr,195,58.5,force,front_fx,0.0019092897418886423 +illusion_1L,sr,195,58.5,force,front_fy,1.7402691810275428e-05 +illusion_1L,sr,195,58.5,force,upper_fx,0.0022774513345211744 +illusion_1L,sr,195,58.5,force,upper_fy,0.0003809630579780787 +illusion_1L,sr,195,58.5,force,lower_fx,0.002234004670754075 +illusion_1L,sr,195,58.5,force,lower_fy,-0.00030831695767119527 +illusion_1L,sr,196,58.8,force,front_fx,0.0019092110451310873 +illusion_1L,sr,196,58.8,force,front_fy,1.8566966900834814e-05 +illusion_1L,sr,196,58.8,force,upper_fx,0.0022787468042224646 +illusion_1L,sr,196,58.8,force,upper_fy,0.0003772962954826653 +illusion_1L,sr,196,58.8,force,lower_fx,0.0022329590283334255 +illusion_1L,sr,196,58.8,force,lower_fy,-0.0003122047346550971 +illusion_1L,sr,197,59.1,force,front_fx,0.0019123422680422664 +illusion_1L,sr,197,59.1,force,front_fy,1.842561505327467e-05 +illusion_1L,sr,197,59.1,force,upper_fx,0.002282863250002265 +illusion_1L,sr,197,59.1,force,upper_fy,0.00037301963311620057 +illusion_1L,sr,197,59.1,force,lower_fx,0.0022370493970811367 +illusion_1L,sr,197,59.1,force,lower_fy,-0.0003188790287822485 +illusion_1L,sr,198,59.4,force,front_fx,0.001914585824124515 +illusion_1L,sr,198,59.4,force,front_fy,1.7246278730453923e-05 +illusion_1L,sr,198,59.4,force,upper_fx,0.0022848390508443117 +illusion_1L,sr,198,59.4,force,upper_fy,0.000368899607565254 +illusion_1L,sr,198,59.4,force,lower_fx,0.002241311362013221 +illusion_1L,sr,198,59.4,force,lower_fy,-0.0003283416444901377 +illusion_1L,sr,199,59.7,force,front_fx,0.0019136067712679505 +illusion_1L,sr,199,59.7,force,front_fy,1.5687184713897295e-05 +illusion_1L,sr,199,59.7,force,upper_fx,0.002281608758494258 +illusion_1L,sr,199,59.7,force,upper_fy,0.0003651017032098025 +illusion_1L,sr,199,59.7,force,lower_fx,0.002242648508399725 +illusion_1L,sr,199,59.7,force,lower_fy,-0.0003396551182959229 +illusion_1L,sr,200,60.0,force,front_fx,0.001911201630719006 +illusion_1L,sr,200,60.0,force,front_fy,1.2822876669815741e-05 +illusion_1L,sr,200,60.0,force,upper_fx,0.002275146311149001 +illusion_1L,sr,200,60.0,force,upper_fy,0.0003603480290621519 +illusion_1L,sr,200,60.0,force,lower_fx,0.0022427565418183804 +illusion_1L,sr,200,60.0,force,lower_fy,-0.000351712602423504 +illusion_1L,sr,201,60.3,force,front_fx,0.0019092526054009795 +illusion_1L,sr,201,60.3,force,front_fy,9.188123840431217e-06 +illusion_1L,sr,201,60.3,force,upper_fx,0.002268022857606411 +illusion_1L,sr,201,60.3,force,upper_fy,0.00035428686533123255 +illusion_1L,sr,201,60.3,force,lower_fx,0.0022437924053519964 +illusion_1L,sr,201,60.3,force,lower_fy,-0.00036281562643125653 +illusion_1L,sr,202,60.6,force,front_fx,0.001907299505546689 +illusion_1L,sr,202,60.6,force,front_fy,5.591917670244584e-06 +illusion_1L,sr,202,60.6,force,upper_fx,0.002259995322674513 +illusion_1L,sr,202,60.6,force,upper_fy,0.00034701681579463184 +illusion_1L,sr,202,60.6,force,lower_fx,0.002245090901851654 +illusion_1L,sr,202,60.6,force,lower_fy,-0.0003720795502886176 +illusion_1L,sr,203,60.9,force,front_fx,0.0019062422215938568 +illusion_1L,sr,203,60.9,force,front_fy,1.285253460991953e-06 +illusion_1L,sr,203,60.9,force,upper_fx,0.002252813195809722 +illusion_1L,sr,203,60.9,force,upper_fy,0.0003384285082574934 +illusion_1L,sr,203,60.9,force,lower_fx,0.0022478350438177586 +illusion_1L,sr,203,60.9,force,lower_fy,-0.0003791399940382689 +illusion_1L,sr,204,61.2,force,front_fx,0.001908616628497839 +illusion_1L,sr,204,61.2,force,front_fy,-2.896956402764772e-06 +illusion_1L,sr,204,61.2,force,upper_fx,0.0022498948965221643 +illusion_1L,sr,204,61.2,force,upper_fy,0.0003292447072453797 +illusion_1L,sr,204,61.2,force,lower_fx,0.0022549410350620747 +illusion_1L,sr,204,61.2,force,lower_fy,-0.00038334447890520096 +illusion_1L,sr,205,61.5,force,front_fx,0.00191224436275661 +illusion_1L,sr,205,61.5,force,front_fy,-6.354650849971222e-06 +illusion_1L,sr,205,61.5,force,upper_fx,0.0022490094415843487 +illusion_1L,sr,205,61.5,force,upper_fy,0.0003209040150977671 +illusion_1L,sr,205,61.5,force,lower_fx,0.0022637718357145786 +illusion_1L,sr,205,61.5,force,lower_fy,-0.000385146850021556 +illusion_1L,sr,206,61.8,force,front_fx,0.0019133152673020959 +illusion_1L,sr,206,61.8,force,front_fy,-1.0130863302038051e-05 +illusion_1L,sr,206,61.8,force,upper_fx,0.0022458822932094336 +illusion_1L,sr,206,61.8,force,upper_fy,0.00031422983738593757 +illusion_1L,sr,206,61.8,force,lower_fx,0.0022695790976285934 +illusion_1L,sr,206,61.8,force,lower_fy,-0.0003858076233882457 +illusion_1L,sr,207,62.1,force,front_fx,0.0019118175841867924 +illusion_1L,sr,207,62.1,force,front_fy,-1.3268959264678415e-05 +illusion_1L,sr,207,62.1,force,upper_fx,0.002240291330963373 +illusion_1L,sr,207,62.1,force,upper_fy,0.00031007066718302667 +illusion_1L,sr,207,62.1,force,lower_fx,0.0022716966923326254 +illusion_1L,sr,207,62.1,force,lower_fy,-0.00038522930117323995 +illusion_1L,sr,208,62.4,force,front_fx,0.0019102715887129307 +illusion_1L,sr,208,62.4,force,front_fy,-1.5244799214997329e-05 +illusion_1L,sr,208,62.4,force,upper_fx,0.0022354484535753727 +illusion_1L,sr,208,62.4,force,upper_fy,0.0003085499629378319 +illusion_1L,sr,208,62.4,force,lower_fx,0.0022730485070496798 +illusion_1L,sr,208,62.4,force,lower_fy,-0.00038323100307025015 +illusion_1L,sr,209,62.7,force,front_fx,0.00190864282194525 +illusion_1L,sr,209,62.7,force,front_fy,-1.7177319023176096e-05 +illusion_1L,sr,209,62.7,force,upper_fx,0.0022313171066343784 +illusion_1L,sr,209,62.7,force,upper_fy,0.0003095467109233141 +illusion_1L,sr,209,62.7,force,lower_fx,0.0022732645738869905 +illusion_1L,sr,209,62.7,force,lower_fy,-0.0003806488821282983 +illusion_1L,sr,210,63.0,force,front_fx,0.0019068816909566522 +illusion_1L,sr,210,63.0,force,front_fy,-1.8083495888276957e-05 +illusion_1L,sr,210,63.0,force,upper_fx,0.002228243974968791 +illusion_1L,sr,210,63.0,force,upper_fy,0.000313501397613436 +illusion_1L,sr,210,63.0,force,lower_fx,0.0022724366281181574 +illusion_1L,sr,210,63.0,force,lower_fy,-0.00037738162791356444 +illusion_1L,sr,211,63.3,force,front_fx,0.0019073213916271925 +illusion_1L,sr,211,63.3,force,front_fy,-1.7722046322887763e-05 +illusion_1L,sr,211,63.3,force,upper_fx,0.0022289433982223272 +illusion_1L,sr,211,63.3,force,upper_fy,0.00031993986340239644 +illusion_1L,sr,211,63.3,force,lower_fx,0.0022731719072908163 +illusion_1L,sr,211,63.3,force,lower_fy,-0.00037342376890592277 +illusion_1L,sr,212,63.6,force,front_fx,0.0019104010425508022 +illusion_1L,sr,212,63.6,force,front_fy,-1.7013406250043772e-05 +illusion_1L,sr,212,63.6,force,upper_fx,0.002234017476439476 +illusion_1L,sr,212,63.6,force,upper_fy,0.00032824816298671067 +illusion_1L,sr,212,63.6,force,lower_fx,0.002275981940329075 +illusion_1L,sr,212,63.6,force,lower_fy,-0.000369204644812271 +illusion_1L,sr,213,63.9,force,front_fx,0.0019120894139632583 +illusion_1L,sr,213,63.9,force,front_fy,-1.5167648598435335e-05 +illusion_1L,sr,213,63.9,force,upper_fx,0.0022385467309504747 +illusion_1L,sr,213,63.9,force,upper_fy,0.00033861317206174135 +illusion_1L,sr,213,63.9,force,lower_fx,0.0022760587744414806 +illusion_1L,sr,213,63.9,force,lower_fy,-0.0003648723941296339 +illusion_1L,sr,214,64.2,force,front_fx,0.0019107921980321407 +illusion_1L,sr,214,64.2,force,front_fy,-1.2211773537273984e-05 +illusion_1L,sr,214,64.2,force,upper_fx,0.002240153029561043 +illusion_1L,sr,214,64.2,force,upper_fy,0.00035017062327824533 +illusion_1L,sr,214,64.2,force,lower_fx,0.0022712955251336098 +illusion_1L,sr,214,64.2,force,lower_fy,-0.00036017203819938004 +illusion_1L,sr,215,64.5,force,front_fx,0.0019086934626102448 +illusion_1L,sr,215,64.5,force,front_fy,-9.107154255616479e-06 +illusion_1L,sr,215,64.5,force,upper_fx,0.00224115583114326 +illusion_1L,sr,215,64.5,force,upper_fy,0.00036103572347201407 +illusion_1L,sr,215,64.5,force,lower_fx,0.002264345996081829 +illusion_1L,sr,215,64.5,force,lower_fy,-0.00035467074485495687 +illusion_1L,sr,216,64.8,force,front_fx,0.0019069778500124812 +illusion_1L,sr,216,64.8,force,front_fy,-5.273226179269841e-06 +illusion_1L,sr,216,64.8,force,upper_fx,0.002242803107947111 +illusion_1L,sr,216,64.8,force,upper_fy,0.00037043800693936646 +illusion_1L,sr,216,64.8,force,lower_fx,0.002256918465718627 +illusion_1L,sr,216,64.8,force,lower_fy,-0.0003477536956779659 +illusion_1L,sr,217,65.1,force,front_fx,0.0019051989074796438 +illusion_1L,sr,217,65.1,force,front_fy,-9.45361705362302e-07 +illusion_1L,sr,217,65.1,force,upper_fx,0.0022445477079600096 +illusion_1L,sr,217,65.1,force,upper_fy,0.00037776221870444715 +illusion_1L,sr,217,65.1,force,lower_fx,0.0022490087430924177 +illusion_1L,sr,217,65.1,force,lower_fy,-0.0003397309046704322 +illusion_1L,sr,218,65.4,force,front_fx,0.0019047127570956945 +illusion_1L,sr,218,65.4,force,front_fy,2.7109176699013915e-06 +illusion_1L,sr,218,65.4,force,upper_fx,0.002248042728751898 +illusion_1L,sr,218,65.4,force,upper_fy,0.0003822296275757253 +illusion_1L,sr,218,65.4,force,lower_fx,0.002242735121399164 +illusion_1L,sr,218,65.4,force,lower_fy,-0.0003313545021228492 +illusion_1L,sr,219,65.7,force,front_fx,0.0019076101016253233 +illusion_1L,sr,219,65.7,force,front_fy,6.4545483837719075e-06 +illusion_1L,sr,219,65.7,force,upper_fx,0.0022557401098310947 +illusion_1L,sr,219,65.7,force,upper_fy,0.0003842090955004096 +illusion_1L,sr,219,65.7,force,lower_fx,0.0022409416269510984 +illusion_1L,sr,219,65.7,force,lower_fy,-0.00032290120725519955 +illusion_1L,sr,220,66.0,force,front_fx,0.0019108698470517993 +illusion_1L,sr,220,66.0,force,front_fy,1.0223246135865338e-05 +illusion_1L,sr,220,66.0,force,upper_fx,0.0022639224771410227 +illusion_1L,sr,220,66.0,force,upper_fy,0.00038459571078419685 +illusion_1L,sr,220,66.0,force,lower_fx,0.0022404054179787636 +illusion_1L,sr,220,66.0,force,lower_fy,-0.0003157934988848865 +illusion_1L,sr,221,66.3,force,front_fx,0.0019113842863589525 +illusion_1L,sr,221,66.3,force,front_fy,1.2929465810884722e-05 +illusion_1L,sr,221,66.3,force,upper_fx,0.0022685902658849955 +illusion_1L,sr,221,66.3,force,upper_fy,0.00038385644438676536 +illusion_1L,sr,221,66.3,force,lower_fx,0.002237494569271803 +illusion_1L,sr,221,66.3,force,lower_fy,-0.0003114169230684638 +illusion_1L,sr,222,66.6,force,front_fx,0.0019097806653007865 +illusion_1L,sr,222,66.6,force,front_fy,1.5273853932740167e-05 +illusion_1L,sr,222,66.6,force,upper_fx,0.002269983058795333 +illusion_1L,sr,222,66.6,force,upper_fy,0.0003824587329290807 +illusion_1L,sr,222,66.6,force,lower_fx,0.002232787199318409 +illusion_1L,sr,222,66.6,force,lower_fy,-0.000309709896100685 +illusion_1L,sr,223,66.9,force,front_fx,0.0019082272192463279 +illusion_1L,sr,223,66.9,force,front_fy,1.71988667716505e-05 +illusion_1L,sr,223,66.9,force,upper_fx,0.0022704736329615116 +illusion_1L,sr,223,66.9,force,upper_fy,0.00038030309951864183 +illusion_1L,sr,223,66.9,force,lower_fx,0.0022290004417300224 +illusion_1L,sr,223,66.9,force,lower_fy,-0.0003106070216745138 +illusion_1L,sr,224,67.2,force,front_fx,0.0019064563093706965 +illusion_1L,sr,224,67.2,force,front_fy,1.7816744730225764e-05 +illusion_1L,sr,224,67.2,force,upper_fx,0.002269536256790161 +illusion_1L,sr,224,67.2,force,upper_fy,0.00037738849641755223 +illusion_1L,sr,224,67.2,force,lower_fx,0.002225810196250677 +illusion_1L,sr,224,67.2,force,lower_fy,-0.0003144170914310962 +illusion_1L,sr,225,67.5,force,front_fx,0.0019048165995627642 +illusion_1L,sr,225,67.5,force,front_fy,1.7767442841432057e-05 +illusion_1L,sr,225,67.5,force,upper_fx,0.00226775580085814 +illusion_1L,sr,225,67.5,force,upper_fy,0.0003740418760571629 +illusion_1L,sr,225,67.5,force,lower_fx,0.0022239498794078827 +illusion_1L,sr,225,67.5,force,lower_fy,-0.00032059455406852067 +illusion_1L,sr,226,67.8,force,front_fx,0.00190583651419729 +illusion_1L,sr,226,67.8,force,front_fy,1.711962977424264e-05 +illusion_1L,sr,226,67.8,force,upper_fx,0.0022679907269775867 +illusion_1L,sr,226,67.8,force,upper_fy,0.0003700800007209182 +illusion_1L,sr,226,67.8,force,lower_fx,0.0022263582795858383 +illusion_1L,sr,226,67.8,force,lower_fy,-0.00032846088288351893 +illusion_1L,sr,227,68.1,force,front_fx,0.0019088126718997955 +illusion_1L,sr,227,68.1,force,front_fy,1.4989393093856052e-05 +illusion_1L,sr,227,68.1,force,upper_fx,0.0022695311345160007 +illusion_1L,sr,227,68.1,force,upper_fy,0.00036531256046146154 +illusion_1L,sr,227,68.1,force,lower_fx,0.002232199301943183 +illusion_1L,sr,227,68.1,force,lower_fy,-0.0003379958507139236 +illusion_1L,sr,228,68.4,force,front_fx,0.0019100316567346454 +illusion_1L,sr,228,68.4,force,front_fy,1.235359286511084e-05 +illusion_1L,sr,228,68.4,force,upper_fx,0.0022680149413645267 +illusion_1L,sr,228,68.4,force,upper_fy,0.0003604007652029395 +illusion_1L,sr,228,68.4,force,lower_fx,0.002236858708783984 +illusion_1L,sr,228,68.4,force,lower_fy,-0.00034854604746215045 +illusion_1L,sr,229,68.7,force,front_fx,0.0019085631938651204 +illusion_1L,sr,229,68.7,force,front_fy,9.328355190518778e-06 +illusion_1L,sr,229,68.7,force,upper_fx,0.0022621487732976675 +illusion_1L,sr,229,68.7,force,upper_fy,0.0003550781693775207 +illusion_1L,sr,229,68.7,force,lower_fx,0.0022387406788766384 +illusion_1L,sr,229,68.7,force,lower_fy,-0.00035917869536206126 +illusion_1L,sr,230,69.0,force,front_fx,0.001906704274006188 +illusion_1L,sr,230,69.0,force,front_fy,5.264257197268307e-06 +illusion_1L,sr,230,69.0,force,upper_fx,0.002254974329844117 +illusion_1L,sr,230,69.0,force,upper_fy,0.00034843405592255294 +illusion_1L,sr,230,69.0,force,lower_fx,0.002240389119833708 +illusion_1L,sr,230,69.0,force,lower_fy,-0.00036880705738440156 +illusion_1L,sr,231,69.3,force,front_fx,0.0019051460549235344 +illusion_1L,sr,231,69.3,force,front_fy,1.4000636383570964e-06 +illusion_1L,sr,231,69.3,force,upper_fx,0.0022474946454167366 +illusion_1L,sr,231,69.3,force,upper_fy,0.00034095317823812366 +illusion_1L,sr,231,69.3,force,lower_fx,0.0022423313930630684 +illusion_1L,sr,231,69.3,force,lower_fy,-0.0003761856642086059 +illusion_1L,sr,232,69.6,force,front_fx,0.001903554773889482 +illusion_1L,sr,232,69.6,force,front_fy,-2.2040705971448915e-06 +illusion_1L,sr,232,69.6,force,upper_fx,0.0022399649024009705 +illusion_1L,sr,232,69.6,force,upper_fy,0.00033302890369668603 +illusion_1L,sr,232,69.6,force,lower_fx,0.002244416158646345 +illusion_1L,sr,232,69.6,force,lower_fy,-0.0003810894850175828 +illusion_1L,sr,233,69.9,force,front_fx,0.0019037129823118448 +illusion_1L,sr,233,69.9,force,front_fy,-6.254506388359005e-06 +illusion_1L,sr,233,69.9,force,upper_fx,0.0022348868660628796 +illusion_1L,sr,233,69.9,force,upper_fy,0.00032488236320205033 +illusion_1L,sr,233,69.9,force,lower_fx,0.002248656703159213 +illusion_1L,sr,233,69.9,force,lower_fy,-0.00038365571526810527 +illusion_1L,sr,234,70.2,force,front_fx,0.0019069426925852895 +illusion_1L,sr,234,70.2,force,front_fy,-9.700731425255071e-06 +illusion_1L,sr,234,70.2,force,upper_fx,0.002234172308817506 +illusion_1L,sr,234,70.2,force,upper_fy,0.00031760847195982933 +illusion_1L,sr,234,70.2,force,lower_fx,0.002256558043882251 +illusion_1L,sr,234,70.2,force,lower_fy,-0.00038390778354369104 +illusion_1L,sr,235,70.5,force,front_fx,0.0019097564509138465 +illusion_1L,sr,235,70.5,force,front_fy,-1.2381847227516118e-05 +illusion_1L,sr,235,70.5,force,upper_fx,0.0022339788265526295 +illusion_1L,sr,235,70.5,force,upper_fy,0.0003125688817817718 +illusion_1L,sr,235,70.5,force,lower_fx,0.0022638908121734858 +illusion_1L,sr,235,70.5,force,lower_fy,-0.00038291997043415904 +illusion_1L,sr,236,70.8,force,front_fx,0.0019097290933132172 +illusion_1L,sr,236,70.8,force,front_fy,-1.5081618585099932e-05 +illusion_1L,sr,236,70.8,force,upper_fx,0.0022313320077955723 +illusion_1L,sr,236,70.8,force,upper_fy,0.0003102872287854552 +illusion_1L,sr,236,70.8,force,lower_fx,0.002267309930175543 +illusion_1L,sr,236,70.8,force,lower_fy,-0.00038169563049450517 +illusion_1L,sr,237,71.1,force,front_fx,0.0019080289639532566 +illusion_1L,sr,237,71.1,force,front_fy,-1.6690399206709117e-05 +illusion_1L,sr,237,71.1,force,upper_fx,0.0022275284864008427 +illusion_1L,sr,237,71.1,force,upper_fy,0.00031113423756323755 +illusion_1L,sr,237,71.1,force,lower_fx,0.00226781377568841 +illusion_1L,sr,237,71.1,force,lower_fy,-0.00037977995816618204 +illusion_1L,sr,238,71.4,force,front_fx,0.0019063955405727029 +illusion_1L,sr,238,71.4,force,front_fy,-1.735380465106573e-05 +illusion_1L,sr,238,71.4,force,upper_fx,0.0022246220614761114 +illusion_1L,sr,238,71.4,force,upper_fy,0.0003146781527902931 +illusion_1L,sr,238,71.4,force,lower_fx,0.002267244039103389 +illusion_1L,sr,238,71.4,force,lower_fy,-0.0003772300551645458 +illusion_1L,sr,239,71.7,force,front_fx,0.0019045080989599228 +illusion_1L,sr,239,71.7,force,front_fy,-1.771704228303861e-05 +illusion_1L,sr,239,71.7,force,upper_fx,0.002222344744950533 +illusion_1L,sr,239,71.7,force,upper_fy,0.00032048241700977087 +illusion_1L,sr,239,71.7,force,lower_fx,0.002265135757625103 +illusion_1L,sr,239,71.7,force,lower_fy,-0.0003744001151062548 +illusion_1L,sr,240,72.0,force,front_fx,0.0019031788688153028 +illusion_1L,sr,240,72.0,force,front_fy,-1.6683934518368915e-05 +illusion_1L,sr,240,72.0,force,upper_fx,0.0022218022495508194 +illusion_1L,sr,240,72.0,force,upper_fy,0.0003284023841843009 +illusion_1L,sr,240,72.0,force,lower_fx,0.0022625834681093693 +illusion_1L,sr,240,72.0,force,lower_fy,-0.0003707139112520963 +illusion_1L,sr,241,72.3,force,front_fx,0.0019047799287363887 +illusion_1L,sr,241,72.3,force,front_fy,-1.4745856788067613e-05 +illusion_1L,sr,241,72.3,force,upper_fx,0.002225737553089857 +illusion_1L,sr,241,72.3,force,upper_fy,0.00033744118991307914 +illusion_1L,sr,241,72.3,force,lower_fx,0.0022624495904892683 +illusion_1L,sr,241,72.3,force,lower_fy,-0.00036610671668313444 +illusion_1L,sr,242,72.6,force,front_fx,0.0019076128955930471 +illusion_1L,sr,242,72.6,force,front_fy,-1.2502050594775937e-05 +illusion_1L,sr,242,72.6,force,upper_fx,0.002232117811217904 +illusion_1L,sr,242,72.6,force,upper_fy,0.0003471137897577137 +illusion_1L,sr,242,72.6,force,lower_fx,0.002262854715809226 +illusion_1L,sr,242,72.6,force,lower_fy,-0.00036098709097132087 +illusion_1L,sr,243,72.9,force,front_fx,0.0019083821680396795 +illusion_1L,sr,243,72.9,force,front_fy,-9.119375135924201e-06 +illusion_1L,sr,243,72.9,force,upper_fx,0.002236752538010478 +illusion_1L,sr,243,72.9,force,upper_fy,0.00035735429264605045 +illusion_1L,sr,243,72.9,force,lower_fx,0.002259991830214858 +illusion_1L,sr,243,72.9,force,lower_fy,-0.0003552732232492417 +illusion_1L,sr,244,73.2,force,front_fx,0.0019067930988967419 +illusion_1L,sr,244,73.2,force,front_fy,-5.312447683536448e-06 +illusion_1L,sr,244,73.2,force,upper_fx,0.002238801447674632 +illusion_1L,sr,244,73.2,force,upper_fy,0.0003669255238492042 +illusion_1L,sr,244,73.2,force,lower_fx,0.0022534404415637255 +illusion_1L,sr,244,73.2,force,lower_fy,-0.00034901316394098103 +illusion_1L,sr,245,73.5,force,front_fx,0.0019051354611292481 +illusion_1L,sr,245,73.5,force,front_fy,-1.7959828255698085e-06 +illusion_1L,sr,245,73.5,force,upper_fx,0.0022408475633710623 +illusion_1L,sr,245,73.5,force,upper_fy,0.00037451161188073456 +illusion_1L,sr,245,73.5,force,lower_fx,0.0022462354972958565 +illusion_1L,sr,245,73.5,force,lower_fy,-0.0003420282737351954 +illusion_1L,sr,246,73.8,force,front_fx,0.0019036827143281698 +illusion_1L,sr,246,73.8,force,front_fy,2.242124992335448e-06 +illusion_1L,sr,246,73.8,force,upper_fx,0.002242984715849161 +illusion_1L,sr,246,73.8,force,upper_fy,0.00037993345176801085 +illusion_1L,sr,246,73.8,force,lower_fx,0.002238923218101263 +illusion_1L,sr,246,73.8,force,lower_fy,-0.00033433406497351825 +illusion_1L,sr,247,74.1,force,front_fx,0.0019023522036150098 +illusion_1L,sr,247,74.1,force,front_fy,6.070472863939358e-06 +illusion_1L,sr,247,74.1,force,upper_fx,0.0022453339770436287 +illusion_1L,sr,247,74.1,force,upper_fy,0.00038296732236631215 +illusion_1L,sr,247,74.1,force,lower_fx,0.0022320710122585297 +illusion_1L,sr,247,74.1,force,lower_fy,-0.00032665886101312935 +illusion_1L,sr,248,74.4,force,front_fx,0.0019031940028071404 +illusion_1L,sr,248,74.4,force,front_fy,9.247492926078849e-06 +illusion_1L,sr,248,74.4,force,upper_fx,0.0022502101492136717 +illusion_1L,sr,248,74.4,force,upper_fy,0.00038361363112926483 +illusion_1L,sr,248,74.4,force,lower_fx,0.0022284097503870726 +illusion_1L,sr,248,74.4,force,lower_fy,-0.0003196665202267468 +illusion_1L,sr,249,74.7,force,front_fx,0.0019065282540395856 +illusion_1L,sr,249,74.7,force,front_fy,1.2391969903546851e-05 +illusion_1L,sr,249,74.7,force,upper_fx,0.0022579513024538755 +illusion_1L,sr,249,74.7,force,upper_fy,0.00038273961399681866 +illusion_1L,sr,249,74.7,force,lower_fx,0.00222865235991776 +illusion_1L,sr,249,74.7,force,lower_fy,-0.0003139902255497873 +illusion_1L,sr,250,75.0,force,front_fx,0.0019087855471298099 +illusion_1L,sr,250,75.0,force,front_fy,1.4857053429295775e-05 +illusion_1L,sr,250,75.0,force,upper_fx,0.002264120616018772 +illusion_1L,sr,250,75.0,force,upper_fy,0.00038113113259896636 +illusion_1L,sr,250,75.0,force,lower_fx,0.002228738972917199 +illusion_1L,sr,250,75.0,force,lower_fy,-0.0003110862453468144 +illusion_1L,sr,251,75.3,force,front_fx,0.001908203586935997 +illusion_1L,sr,251,75.3,force,front_fy,1.635019179957453e-05 +illusion_1L,sr,251,75.3,force,upper_fx,0.0022661262191832066 +illusion_1L,sr,251,75.3,force,upper_fy,0.0003792757051996887 +illusion_1L,sr,251,75.3,force,lower_fx,0.0022263452410697937 +illusion_1L,sr,251,75.3,force,lower_fy,-0.0003115077852271497 +illusion_1L,sr,252,75.6,force,front_fx,0.0019064132357016206 +illusion_1L,sr,252,75.6,force,front_fy,1.7503783965366893e-05 +illusion_1L,sr,252,75.6,force,upper_fx,0.002265640301629901 +illusion_1L,sr,252,75.6,force,upper_fy,0.0003772425989154726 +illusion_1L,sr,252,75.6,force,lower_fx,0.0022234153002500534 +illusion_1L,sr,252,75.6,force,lower_fy,-0.00031463653431273997 +illusion_1L,sr,253,75.9,force,front_fx,0.0019047159003093839 +illusion_1L,sr,253,75.9,force,front_fy,1.7598025806364603e-05 +illusion_1L,sr,253,75.9,force,upper_fx,0.0022639043163508177 +illusion_1L,sr,253,75.9,force,upper_fy,0.00037456941208802164 +illusion_1L,sr,253,75.9,force,lower_fx,0.0022213561460375786 +illusion_1L,sr,253,75.9,force,lower_fy,-0.00032028972054831684 +illusion_1L,sr,254,76.2,force,front_fx,0.0019028049428015947 +illusion_1L,sr,254,76.2,force,front_fy,1.660842463024892e-05 +illusion_1L,sr,254,76.2,force,upper_fx,0.002260724315419793 +illusion_1L,sr,254,76.2,force,upper_fy,0.0003712489560712129 +illusion_1L,sr,254,76.2,force,lower_fx,0.0022199722006917 +illusion_1L,sr,254,76.2,force,lower_fy,-0.00032801376073621213 +illusion_1L,sr,255,76.5,force,front_fx,0.0019019676838070154 +illusion_1L,sr,255,76.5,force,front_fy,1.509671528765466e-05 +illusion_1L,sr,255,76.5,force,upper_fx,0.0022576956544071436 +illusion_1L,sr,255,76.5,force,upper_fy,0.0003671955200843513 +illusion_1L,sr,255,76.5,force,lower_fx,0.0022208234295248985 +illusion_1L,sr,255,76.5,force,lower_fy,-0.0003368658944964409 +illusion_1L,sr,256,76.8,force,front_fx,0.0019040576880797744 +illusion_1L,sr,256,76.8,force,front_fy,1.262861133000115e-05 +illusion_1L,sr,256,76.8,force,upper_fx,0.0022571939043700695 +illusion_1L,sr,256,76.8,force,upper_fy,0.0003619784547481686 +illusion_1L,sr,256,76.8,force,lower_fx,0.0022260553669184446 +illusion_1L,sr,256,76.8,force,lower_fy,-0.00034622245584614575 +illusion_1L,sr,257,77.1,force,front_fx,0.0019066445529460907 +illusion_1L,sr,257,77.1,force,front_fy,9.289762601838447e-06 +illusion_1L,sr,257,77.1,force,upper_fx,0.002256556646898389 +illusion_1L,sr,257,77.1,force,upper_fy,0.00035594156361185014 +illusion_1L,sr,257,77.1,force,lower_fx,0.00223267893306911 +illusion_1L,sr,257,77.1,force,lower_fy,-0.0003558347816579044 +illusion_1L,sr,258,77.4,force,front_fx,0.001906954450532794 +illusion_1L,sr,258,77.4,force,front_fy,5.892447916266974e-06 +illusion_1L,sr,258,77.4,force,upper_fx,0.0022525612730532885 +illusion_1L,sr,258,77.4,force,upper_fy,0.00034967876854352653 +illusion_1L,sr,258,77.4,force,lower_fx,0.0022370771039277315 +illusion_1L,sr,258,77.4,force,lower_fy,-0.0003649699210654944 +illusion_1L,sr,259,77.7,force,front_fx,0.0019053415162488818 +illusion_1L,sr,259,77.7,force,front_fy,2.1312207536539063e-06 +illusion_1L,sr,259,77.7,force,upper_fx,0.002245680894702673 +illusion_1L,sr,259,77.7,force,upper_fy,0.00034287062590010464 +illusion_1L,sr,259,77.7,force,lower_fx,0.00223928177729249 +illusion_1L,sr,259,77.7,force,lower_fy,-0.0003728809824679047 +illusion_1L,sr,260,78.0,force,front_fx,0.0019038539612665772 +illusion_1L,sr,260,78.0,force,front_fy,-1.8277715980730136e-06 +illusion_1L,sr,260,78.0,force,upper_fx,0.0022386331111192703 +illusion_1L,sr,260,78.0,force,upper_fy,0.0003354769723955542 +illusion_1L,sr,260,78.0,force,lower_fx,0.002241547219455242 +illusion_1L,sr,260,78.0,force,lower_fy,-0.0003786823363043368 +illusion_1L,sr,261,78.3,force,front_fx,0.0019025164656341076 +illusion_1L,sr,261,78.3,force,front_fy,-5.3713147281087e-06 +illusion_1L,sr,261,78.3,force,upper_fx,0.002231740625575185 +illusion_1L,sr,261,78.3,force,upper_fy,0.0003281824174337089 +illusion_1L,sr,261,78.3,force,lower_fx,0.002243794035166502 +illusion_1L,sr,261,78.3,force,lower_fy,-0.00038203317672014236 +illusion_1L,sr,262,78.6,force,front_fx,0.001901527401059866 +illusion_1L,sr,262,78.6,force,front_fy,-8.865288691595197e-06 +illusion_1L,sr,262,78.6,force,upper_fx,0.0022258309181779623 +illusion_1L,sr,262,78.6,force,upper_fy,0.0003213226154912263 +illusion_1L,sr,262,78.6,force,lower_fx,0.002246409421786666 +illusion_1L,sr,262,78.6,force,lower_fy,-0.0003833665978163481 +illusion_1L,sr,263,78.9,force,front_fx,0.0019029740942642093 +illusion_1L,sr,263,78.9,force,front_fy,-1.2015040738333482e-05 +illusion_1L,sr,263,78.9,force,upper_fx,0.002223638817667961 +illusion_1L,sr,263,78.9,force,upper_fy,0.0003155964077450335 +illusion_1L,sr,263,78.9,force,lower_fx,0.0022517256438732147 +illusion_1L,sr,263,78.9,force,lower_fy,-0.0003828001208603382 +illusion_1L,sr,264,79.2,force,front_fx,0.001906186924315989 +illusion_1L,sr,264,79.2,force,front_fy,-1.4268593076849356e-05 +illusion_1L,sr,264,79.2,force,upper_fx,0.0022246302105486393 +illusion_1L,sr,264,79.2,force,upper_fy,0.0003121142799500376 +illusion_1L,sr,264,79.2,force,lower_fx,0.002258880762383342 +illusion_1L,sr,264,79.2,force,lower_fy,-0.00038094521733000875 +illusion_1L,sr,265,79.5,force,front_fx,0.0019078149925917387 +illusion_1L,sr,265,79.5,force,front_fy,-1.609176251804456e-05 +illusion_1L,sr,265,79.5,force,upper_fx,0.0022248958703130484 +illusion_1L,sr,265,79.5,force,upper_fy,0.0003116184379905462 +illusion_1L,sr,265,79.5,force,lower_fx,0.002263676840811968 +illusion_1L,sr,265,79.5,force,lower_fy,-0.0003789227339439094 +illusion_1L,sr,266,79.8,force,front_fx,0.0019067475805059075 +illusion_1L,sr,266,79.8,force,front_fy,-1.7306063455180265e-05 +illusion_1L,sr,266,79.8,force,upper_fx,0.0022228427696973085 +illusion_1L,sr,266,79.8,force,upper_fy,0.0003142979694530368 +illusion_1L,sr,266,79.8,force,lower_fx,0.0022642198018729687 +illusion_1L,sr,266,79.8,force,lower_fy,-0.00037698200321756303 +illusion_1L,sr,267,80.1,force,front_fx,0.0019049157854169607 +illusion_1L,sr,267,80.1,force,front_fy,-1.7265543647226878e-05 +illusion_1L,sr,267,80.1,force,upper_fx,0.0022207750007510185 +illusion_1L,sr,267,80.1,force,upper_fy,0.0003197666082996875 +illusion_1L,sr,267,80.1,force,lower_fx,0.0022626863792538643 +illusion_1L,sr,267,80.1,force,lower_fy,-0.00037452601827681065 +illusion_1L,sr,268,80.4,force,front_fx,0.001903218450024724 +illusion_1L,sr,268,80.4,force,front_fy,-1.65851251949789e-05 +illusion_1L,sr,268,80.4,force,upper_fx,0.0022195533383637667 +illusion_1L,sr,268,80.4,force,upper_fy,0.0003271435562055558 +illusion_1L,sr,268,80.4,force,lower_fx,0.002259884960949421 +illusion_1L,sr,268,80.4,force,lower_fy,-0.000371591275325045 +illusion_1L,sr,269,80.7,force,front_fx,0.0019014346180483699 +illusion_1L,sr,269,80.7,force,front_fy,-1.5170864571700804e-05 +illusion_1L,sr,269,80.7,force,upper_fx,0.0022191547323018312 +illusion_1L,sr,269,80.7,force,upper_fy,0.00033590392558835447 +illusion_1L,sr,269,80.7,force,lower_fx,0.002255834639072418 +illusion_1L,sr,269,80.7,force,lower_fy,-0.0003679255023598671 +illusion_1L,sr,270,81.0,force,front_fx,0.0019011767581105232 +illusion_1L,sr,270,81.0,force,front_fy,-1.2541558135126252e-05 +illusion_1L,sr,270,81.0,force,upper_fx,0.0022213743068277836 +illusion_1L,sr,270,81.0,force,upper_fy,0.00034538665204308927 +illusion_1L,sr,270,81.0,force,lower_fx,0.002252568956464529 +illusion_1L,sr,270,81.0,force,lower_fy,-0.000363010709406808 +illusion_1L,sr,271,81.3,force,front_fx,0.001903591793961823 +illusion_1L,sr,271,81.3,force,front_fy,-9.558108104101848e-06 +illusion_1L,sr,271,81.3,force,upper_fx,0.002227532910183072 +illusion_1L,sr,271,81.3,force,upper_fy,0.0003545364597812295 +illusion_1L,sr,271,81.3,force,lower_fx,0.0022517023608088493 +illusion_1L,sr,271,81.3,force,lower_fy,-0.00035707620554603636 +illusion_1L,sr,272,81.6,force,front_fx,0.0019058340694755316 +illusion_1L,sr,272,81.6,force,front_fy,-6.220342129381606e-06 +illusion_1L,sr,272,81.6,force,upper_fx,0.002234162064269185 +illusion_1L,sr,272,81.6,force,upper_fy,0.0003632292791735381 +illusion_1L,sr,272,81.6,force,lower_fx,0.0022501265630126 +illusion_1L,sr,272,81.6,force,lower_fy,-0.0003505209169816226 +illusion_1L,sr,273,81.9,force,front_fx,0.0019057206809520721 +illusion_1L,sr,273,81.9,force,front_fy,-2.2486638044938445e-06 +illusion_1L,sr,273,81.9,force,upper_fx,0.0022382072638720274 +illusion_1L,sr,273,81.9,force,upper_fy,0.0003711685712914914 +illusion_1L,sr,273,81.9,force,lower_fx,0.002245271811261773 +illusion_1L,sr,273,81.9,force,lower_fy,-0.00034359461278654635 +illusion_1L,sr,274,82.2,force,front_fx,0.0019041659543290734 +illusion_1L,sr,274,82.2,force,front_fy,1.3604645801024162e-06 +illusion_1L,sr,274,82.2,force,upper_fx,0.002240546979010105 +illusion_1L,sr,274,82.2,force,upper_fy,0.0003771983610931784 +illusion_1L,sr,274,82.2,force,lower_fx,0.002238410757854581 +illusion_1L,sr,274,82.2,force,lower_fy,-0.00033662052010186017 +illusion_1L,sr,275,82.5,force,front_fx,0.0019028651295229793 +illusion_1L,sr,275,82.5,force,front_fy,4.986923158867285e-06 +illusion_1L,sr,275,82.5,force,upper_fx,0.002242964692413807 +illusion_1L,sr,275,82.5,force,upper_fy,0.0003810427733696997 +illusion_1L,sr,275,82.5,force,lower_fx,0.002231736434623599 +illusion_1L,sr,275,82.5,force,lower_fy,-0.00032950250897556543 +illusion_1L,sr,276,82.8,force,front_fx,0.0019016391597688198 +illusion_1L,sr,276,82.8,force,front_fy,8.701677870703861e-06 +illusion_1L,sr,276,82.8,force,upper_fx,0.0022452068515121937 +illusion_1L,sr,276,82.8,force,upper_fy,0.00038294875412248075 +illusion_1L,sr,276,82.8,force,lower_fx,0.0022254849318414927 +illusion_1L,sr,276,82.8,force,lower_fy,-0.0003227141860406846 +illusion_1L,sr,277,83.1,force,front_fx,0.0019010251853615046 +illusion_1L,sr,277,83.1,force,front_fy,1.1573143638088368e-05 +illusion_1L,sr,277,83.1,force,upper_fx,0.0022479970939457417 +illusion_1L,sr,277,83.1,force,upper_fy,0.0003828340850304812 +illusion_1L,sr,277,83.1,force,lower_fx,0.0022207133006304502 +illusion_1L,sr,277,83.1,force,lower_fy,-0.0003172389988321811 +illusion_1L,sr,278,83.4,force,front_fx,0.0019029190298169851 +illusion_1L,sr,278,83.4,force,front_fy,1.3959156603959855e-05 +illusion_1L,sr,278,83.4,force,upper_fx,0.002253445331007242 +illusion_1L,sr,278,83.4,force,upper_fy,0.0003812260983977467 +illusion_1L,sr,278,83.4,force,lower_fx,0.0022198876831680536 +illusion_1L,sr,278,83.4,force,lower_fy,-0.0003134347207378596 +illusion_1L,sr,279,83.7,force,front_fx,0.0019058114849030972 +illusion_1L,sr,279,83.7,force,front_fy,1.6116602637339383e-05 +illusion_1L,sr,279,83.7,force,upper_fx,0.0022596532944589853 +illusion_1L,sr,279,83.7,force,upper_fy,0.00037907197838649154 +illusion_1L,sr,279,83.7,force,lower_fx,0.0022214397322386503 +illusion_1L,sr,279,83.7,force,lower_fy,-0.00031205001869238913 +illusion_1L,sr,280,84.0,force,front_fx,0.001906782970763743 +illusion_1L,sr,280,84.0,force,front_fy,1.7049716916517355e-05 +illusion_1L,sr,280,84.0,force,upper_fx,0.0022628474980592728 +illusion_1L,sr,280,84.0,force,upper_fy,0.0003767643356695771 +illusion_1L,sr,280,84.0,force,lower_fx,0.0022218392696231604 +illusion_1L,sr,280,84.0,force,lower_fy,-0.00031405375921167433 +illusion_1L,sr,281,84.3,force,front_fx,0.00190535350702703 +illusion_1L,sr,281,84.3,force,front_fy,1.722640809020959e-05 +illusion_1L,sr,281,84.3,force,upper_fx,0.00226202211342752 +illusion_1L,sr,281,84.3,force,upper_fy,0.000374537892639637 +illusion_1L,sr,281,84.3,force,lower_fx,0.002220256719738245 +illusion_1L,sr,281,84.3,force,lower_fy,-0.0003190254792571068 +illusion_1L,sr,282,84.6,force,front_fx,0.0019035605946555734 +illusion_1L,sr,282,84.6,force,front_fy,1.6877998859854415e-05 +illusion_1L,sr,282,84.6,force,upper_fx,0.0022594770416617393 +illusion_1L,sr,282,84.6,force,upper_fy,0.00037196220364421606 +illusion_1L,sr,282,84.6,force,lower_fx,0.002219058573246002 +illusion_1L,sr,282,84.6,force,lower_fy,-0.0003260833618696779 +illusion_1L,sr,283,84.9,force,front_fx,0.0019019333412870765 +illusion_1L,sr,283,84.9,force,front_fy,1.5190159501798917e-05 +illusion_1L,sr,283,84.9,force,upper_fx,0.0022557126358151436 +illusion_1L,sr,283,84.9,force,upper_fy,0.0003684452676679939 +illusion_1L,sr,283,84.9,force,lower_fx,0.0022186904679983854 +illusion_1L,sr,283,84.9,force,lower_fy,-0.000334827636834234 +illusion_1L,sr,284,85.2,force,front_fx,0.0019003786146640778 +illusion_1L,sr,284,85.2,force,front_fy,1.2853672160417773e-05 +illusion_1L,sr,284,85.2,force,upper_fx,0.0022510141134262085 +illusion_1L,sr,284,85.2,force,upper_fy,0.0003640567301772535 +illusion_1L,sr,284,85.2,force,lower_fx,0.002219228306785226 +illusion_1L,sr,284,85.2,force,lower_fy,-0.000344240281265229 +illusion_1L,sr,285,85.5,force,front_fx,0.001900715404190123 +illusion_1L,sr,285,85.5,force,front_fy,1.012599932437297e-05 +illusion_1L,sr,285,85.5,force,upper_fx,0.0022476650774478912 +illusion_1L,sr,285,85.5,force,upper_fy,0.0003585076192393899 +illusion_1L,sr,285,85.5,force,lower_fx,0.002222696552053094 +illusion_1L,sr,285,85.5,force,lower_fy,-0.00035341549664735794 +illusion_1L,sr,286,85.8,force,front_fx,0.001903258147649467 +illusion_1L,sr,286,85.8,force,front_fy,6.470817424997222e-06 +illusion_1L,sr,286,85.8,force,upper_fx,0.0022464089561253786 +illusion_1L,sr,286,85.8,force,upper_fy,0.00035174304503016174 +illusion_1L,sr,286,85.8,force,lower_fx,0.002229431178420782 +illusion_1L,sr,286,85.8,force,lower_fy,-0.00036196416476741433 +illusion_1L,sr,287,86.1,force,front_fx,0.0019051230046898127 +illusion_1L,sr,287,86.1,force,front_fy,2.766793386399513e-06 +illusion_1L,sr,287,86.1,force,upper_fx,0.0022440601605921984 +illusion_1L,sr,287,86.1,force,upper_fy,0.0003446320188231766 +illusion_1L,sr,287,86.1,force,lower_fx,0.0022358314599841833 +illusion_1L,sr,287,86.1,force,lower_fy,-0.0003694875631481409 +illusion_1L,sr,288,86.4,force,front_fx,0.0019046568777412176 +illusion_1L,sr,288,86.4,force,front_fy,-7.131154688977404e-07 +illusion_1L,sr,288,86.4,force,upper_fx,0.0022386563941836357 +illusion_1L,sr,288,86.4,force,upper_fy,0.0003376516397111118 +illusion_1L,sr,288,86.4,force,lower_fx,0.002239532070234418 +illusion_1L,sr,288,86.4,force,lower_fy,-0.0003756120568141341 +illusion_1L,sr,289,86.7,force,front_fx,0.0019032376585528255 +illusion_1L,sr,289,86.7,force,front_fy,-4.611141775967553e-06 +illusion_1L,sr,289,86.7,force,upper_fx,0.0022320966236293316 +illusion_1L,sr,289,86.7,force,upper_fy,0.0003305920690763742 +illusion_1L,sr,289,86.7,force,lower_fx,0.0022420065943151712 +illusion_1L,sr,289,86.7,force,lower_fy,-0.0003800111007876694 +illusion_1L,sr,290,87.0,force,front_fx,0.0019021270563825965 +illusion_1L,sr,290,87.0,force,front_fy,-8.114398951875046e-06 +illusion_1L,sr,290,87.0,force,upper_fx,0.002226022304967046 +illusion_1L,sr,290,87.0,force,upper_fy,0.00032399524934589863 +illusion_1L,sr,290,87.0,force,lower_fx,0.0022444461937993765 +illusion_1L,sr,290,87.0,force,lower_fy,-0.0003822548605967313 +illusion_1L,sr,291,87.3,force,front_fx,0.0019009878160431981 +illusion_1L,sr,291,87.3,force,front_fy,-1.097553194995271e-05 +illusion_1L,sr,291,87.3,force,upper_fx,0.002220520982518792 +illusion_1L,sr,291,87.3,force,upper_fy,0.0003185599925927818 +illusion_1L,sr,291,87.3,force,lower_fx,0.0022465831134468317 +illusion_1L,sr,291,87.3,force,lower_fy,-0.0003826027677860111 +illusion_1L,sr,292,87.6,force,front_fx,0.0019007527735084295 +illusion_1L,sr,292,87.6,force,front_fy,-1.3739345376961865e-05 +illusion_1L,sr,292,87.6,force,upper_fx,0.002216975437477231 +illusion_1L,sr,292,87.6,force,upper_fy,0.0003146001836284995 +illusion_1L,sr,292,87.6,force,lower_fx,0.002249430865049362 +illusion_1L,sr,292,87.6,force,lower_fy,-0.0003816091630142182 +illusion_1L,sr,293,87.9,force,front_fx,0.0019028779352083802 +illusion_1L,sr,293,87.9,force,front_fy,-1.568305742694065e-05 +illusion_1L,sr,293,87.9,force,upper_fx,0.00221733539365232 +illusion_1L,sr,293,87.9,force,upper_fy,0.0003128386160824448 +illusion_1L,sr,293,87.9,force,lower_fx,0.0022546208929270506 +illusion_1L,sr,293,87.9,force,lower_fy,-0.00037941071786917746 +illusion_1L,sr,294,88.2,force,front_fx,0.00190535350702703 +illusion_1L,sr,294,88.2,force,front_fy,-1.6728396076359786e-05 +illusion_1L,sr,294,88.2,force,upper_fx,0.0022193172480911016 +illusion_1L,sr,294,88.2,force,upper_fy,0.00031394819961860776 +illusion_1L,sr,294,88.2,force,lower_fx,0.0022596304770559072 +illusion_1L,sr,294,88.2,force,lower_fy,-0.00037682929541915655 +illusion_1L,sr,295,88.5,force,front_fx,0.00190570333506912 +illusion_1L,sr,295,88.5,force,front_fy,-1.7272590412176214e-05 +illusion_1L,sr,295,88.5,force,upper_fx,0.0022198462393134832 +illusion_1L,sr,295,88.5,force,upper_fy,0.0003180804487783462 +illusion_1L,sr,295,88.5,force,lower_fx,0.0022611659951508045 +illusion_1L,sr,295,88.5,force,lower_fy,-0.00037450858508236706 +illusion_1L,sr,296,88.8,force,front_fx,0.0019041004125028849 +illusion_1L,sr,296,88.8,force,front_fy,-1.6766669432399794e-05 +illusion_1L,sr,296,88.8,force,upper_fx,0.002218903973698616 +illusion_1L,sr,296,88.8,force,upper_fy,0.00032490730518475175 +illusion_1L,sr,296,88.8,force,lower_fx,0.002259137574583292 +illusion_1L,sr,296,88.8,force,lower_fy,-0.0003720142412930727 +illusion_1L,sr,297,89.1,force,front_fx,0.0019024461507797241 +illusion_1L,sr,297,89.1,force,front_fy,-1.523803894087905e-05 +illusion_1L,sr,297,89.1,force,upper_fx,0.002218555426225066 +illusion_1L,sr,297,89.1,force,upper_fy,0.00033345408155582845 +illusion_1L,sr,297,89.1,force,lower_fx,0.0022556844633072615 +illusion_1L,sr,297,89.1,force,lower_fy,-0.00036882280255667865 +illusion_1L,sr,298,89.4,force,front_fx,0.0019008986419066787 +illusion_1L,sr,298,89.4,force,front_fy,-1.3188975572120398e-05 +illusion_1L,sr,298,89.4,force,upper_fx,0.0022189721930772066 +illusion_1L,sr,298,89.4,force,upper_fy,0.00034275464713573456 +illusion_1L,sr,298,89.4,force,lower_fx,0.002251111902296543 +illusion_1L,sr,298,89.4,force,lower_fy,-0.0003648370038717985 +illusion_1L,sr,299,89.7,force,front_fx,0.001899640541523695 +illusion_1L,sr,299,89.7,force,front_fy,-1.0298917004547548e-05 +illusion_1L,sr,299,89.7,force,upper_fx,0.0022203908301889896 +illusion_1L,sr,299,89.7,force,upper_fy,0.00035221135476604104 +illusion_1L,sr,299,89.7,force,lower_fx,0.002245960058644414 +illusion_1L,sr,299,89.7,force,lower_fy,-0.00035965474671684206 +illusion_1L,sr,300,90.0,force,front_fx,0.0019004917703568935 +illusion_1L,sr,300,90.0,force,front_fy,-6.7891205617343076e-06 +illusion_1L,sr,300,90.0,force,upper_fx,0.0022248802706599236 +illusion_1L,sr,300,90.0,force,upper_fy,0.00036088807974010706 +illusion_1L,sr,300,90.0,force,lower_fx,0.002242674818262458 +illusion_1L,sr,300,90.0,force,lower_fy,-0.0003531672991812229 +illusion_1L,sr,301,90.3,force,front_fx,0.0019030115799978375 +illusion_1L,sr,301,90.3,force,front_fy,-3.361188873896026e-06 +illusion_1L,sr,301,90.3,force,upper_fx,0.0022318779956549406 +illusion_1L,sr,301,90.3,force,upper_fy,0.00036816930514760315 +illusion_1L,sr,301,90.3,force,lower_fx,0.002241078531369567 +illusion_1L,sr,301,90.3,force,lower_fy,-0.00034598493948578835 +illusion_1L,sr,302,90.6,force,front_fx,0.0019044987857341766 +illusion_1L,sr,302,90.6,force,front_fy,3.4822713246285275e-07 +illusion_1L,sr,302,90.6,force,upper_fx,0.002237944630905986 +illusion_1L,sr,302,90.6,force,upper_fy,0.0003742291883099824 +illusion_1L,sr,302,90.6,force,lower_fx,0.002238132758066058 +illusion_1L,sr,302,90.6,force,lower_fy,-0.0003386353200767189 +illusion_1L,sr,303,90.9,force,front_fx,0.001903802389279008 +illusion_1L,sr,303,90.9,force,front_fy,4.192298547422979e-06 +illusion_1L,sr,303,90.9,force,upper_fx,0.002241348847746849 +illusion_1L,sr,303,90.9,force,upper_fy,0.00037884697667323053 +illusion_1L,sr,303,90.9,force,lower_fx,0.002232550410553813 +illusion_1L,sr,303,90.9,force,lower_fy,-0.00033159254235215485 +illusion_1L,sr,304,91.2,force,front_fx,0.0019025643123313785 +illusion_1L,sr,304,91.2,force,front_fy,7.540978003817145e-06 +illusion_1L,sr,304,91.2,force,upper_fx,0.0022438818123191595 +illusion_1L,sr,304,91.2,force,upper_fy,0.0003814833180513233 +illusion_1L,sr,304,91.2,force,lower_fx,0.002226536627858877 +illusion_1L,sr,304,91.2,force,lower_fy,-0.0003251552116125822 +illusion_1L,sr,305,91.5,force,front_fx,0.0019015711732208729 +illusion_1L,sr,305,91.5,force,front_fy,1.0690520866774023e-05 +illusion_1L,sr,305,91.5,force,upper_fx,0.0022462152410298586 +illusion_1L,sr,305,91.5,force,upper_fy,0.0003823694714810699 +illusion_1L,sr,305,91.5,force,lower_fx,0.0022211414761841297 +illusion_1L,sr,305,91.5,force,lower_fy,-0.0003195923054590821 +illusion_1L,sr,306,91.8,force,front_fx,0.0019004876958206296 +illusion_1L,sr,306,91.8,force,front_fy,1.3448873687593732e-05 +illusion_1L,sr,306,91.8,force,upper_fx,0.0022480622865259647 +illusion_1L,sr,306,91.8,force,upper_fy,0.0003817965043708682 +illusion_1L,sr,306,91.8,force,lower_fx,0.0022164667025208473 +illusion_1L,sr,306,91.8,force,lower_fy,-0.00031560382922179997 +illusion_1L,sr,307,92.1,force,front_fx,0.0019005920039489865 +illusion_1L,sr,307,92.1,force,front_fy,1.5305191482184455e-05 +illusion_1L,sr,307,92.1,force,upper_fx,0.0022507912945002317 +illusion_1L,sr,307,92.1,force,upper_fy,0.00037993313162587583 +illusion_1L,sr,307,92.1,force,lower_fx,0.0022141586523503065 +illusion_1L,sr,307,92.1,force,lower_fy,-0.000313744880259037 +illusion_1L,sr,308,92.4,force,front_fx,0.0019027944654226303 +illusion_1L,sr,308,92.4,force,front_fy,1.6672785932314582e-05 +illusion_1L,sr,308,92.4,force,upper_fx,0.002255410421639681 +illusion_1L,sr,308,92.4,force,upper_fy,0.00037738977698609233 +illusion_1L,sr,308,92.4,force,lower_fx,0.002215518383309245 +illusion_1L,sr,308,92.4,force,lower_fy,-0.0003141636261716485 +illusion_1L,sr,309,92.7,force,front_fx,0.001904800534248352 +illusion_1L,sr,309,92.7,force,front_fy,1.7308924725512043e-05 +illusion_1L,sr,309,92.7,force,upper_fx,0.0022590365260839462 +illusion_1L,sr,309,92.7,force,upper_fy,0.00037473105476237833 +illusion_1L,sr,309,92.7,force,lower_fx,0.002217877423390746 +illusion_1L,sr,309,92.7,force,lower_fy,-0.0003174317243974656 +illusion_1L,sr,310,93.0,force,front_fx,0.001904646516777575 +illusion_1L,sr,310,93.0,force,front_fy,1.672218604653608e-05 +illusion_1L,sr,310,93.0,force,upper_fx,0.002258975524455309 +illusion_1L,sr,310,93.0,force,upper_fy,0.00037206345587037504 +illusion_1L,sr,310,93.0,force,lower_fx,0.002218601293861866 +illusion_1L,sr,310,93.0,force,lower_fy,-0.0003236953925807029 +illusion_1L,sr,311,93.3,force,front_fx,0.0019030272960662842 +illusion_1L,sr,311,93.3,force,front_fy,1.5553929188172333e-05 +illusion_1L,sr,311,93.3,force,upper_fx,0.0022559361532330513 +illusion_1L,sr,311,93.3,force,upper_fy,0.000369210378266871 +illusion_1L,sr,311,93.3,force,lower_fx,0.0022183835972100496 +illusion_1L,sr,311,93.3,force,lower_fy,-0.0003318989183753729 +illusion_1L,sr,312,93.6,force,front_fx,0.0019015091238543391 +illusion_1L,sr,312,93.6,force,front_fy,1.356117627437925e-05 +illusion_1L,sr,312,93.6,force,upper_fx,0.002251664875075221 +illusion_1L,sr,312,93.6,force,upper_fy,0.00036549411015585065 +illusion_1L,sr,312,93.6,force,lower_fx,0.002218834822997451 +illusion_1L,sr,312,93.6,force,lower_fy,-0.00034116607275791466 +illusion_1L,sr,313,93.9,force,front_fx,0.0019000365864485502 +illusion_1L,sr,313,93.9,force,front_fy,1.0572376595519017e-05 +illusion_1L,sr,313,93.9,force,upper_fx,0.0022463982459157705 +illusion_1L,sr,313,93.9,force,upper_fy,0.0003605890378821641 +illusion_1L,sr,313,93.9,force,lower_fx,0.0022198816295713186 +illusion_1L,sr,313,93.9,force,lower_fy,-0.0003507934743538499 +illusion_1L,sr,314,94.2,force,front_fx,0.0018990995595231652 +illusion_1L,sr,314,94.2,force,front_fy,7.42782003726461e-06 +illusion_1L,sr,314,94.2,force,upper_fx,0.0022410338278859854 +illusion_1L,sr,314,94.2,force,upper_fy,0.0003546739462763071 +illusion_1L,sr,314,94.2,force,lower_fx,0.0022220932878553867 +illusion_1L,sr,314,94.2,force,lower_fy,-0.00035965340794064105 +illusion_1L,sr,315,94.5,force,front_fx,0.001900387229397893 +illusion_1L,sr,315,94.5,force,front_fy,3.9555784496769775e-06 +illusion_1L,sr,315,94.5,force,upper_fx,0.0022378775756806135 +illusion_1L,sr,315,94.5,force,upper_fy,0.00034759502159431577 +illusion_1L,sr,315,94.5,force,lower_fx,0.002227394375950098 +illusion_1L,sr,315,94.5,force,lower_fy,-0.0003671517188195139 +illusion_1L,sr,316,94.8,force,front_fx,0.001902829622849822 +illusion_1L,sr,316,94.8,force,front_fy,6.329850066322251e-08 +illusion_1L,sr,316,94.8,force,upper_fx,0.0022360384464263916 +illusion_1L,sr,316,94.8,force,upper_fy,0.00033995331614278257 +illusion_1L,sr,316,94.8,force,lower_fx,0.0022344563622027636 +illusion_1L,sr,316,94.8,force,lower_fy,-0.00037314524524845183 +illusion_1L,sr,317,95.1,force,front_fx,0.0019039612961933017 +illusion_1L,sr,317,95.1,force,front_fy,-3.466422640485689e-06 +illusion_1L,sr,317,95.1,force,upper_fx,0.0022327268961817026 +illusion_1L,sr,317,95.1,force,upper_fy,0.0003327130398247391 +illusion_1L,sr,317,95.1,force,lower_fx,0.0022401101887226105 +illusion_1L,sr,317,95.1,force,lower_fy,-0.0003775937366299331 +illusion_1L,sr,318,95.4,force,front_fx,0.0019031554693356156 +illusion_1L,sr,318,95.4,force,front_fy,-6.963275154703297e-06 +illusion_1L,sr,318,95.4,force,upper_fx,0.002227303571999073 +illusion_1L,sr,318,95.4,force,upper_fy,0.0003261356905568391 +illusion_1L,sr,318,95.4,force,lower_fx,0.002243279479444027 +illusion_1L,sr,318,95.4,force,lower_fy,-0.00038061229861341417 +illusion_1L,sr,319,95.7,force,front_fx,0.0019020679173991084 +illusion_1L,sr,319,95.7,force,front_fy,-1.0333111276850104e-05 +illusion_1L,sr,319,95.7,force,upper_fx,0.0022219365928322077 +illusion_1L,sr,319,95.7,force,upper_fy,0.00032049883157014847 +illusion_1L,sr,319,95.7,force,lower_fx,0.0022457274608314037 +illusion_1L,sr,319,95.7,force,lower_fy,-0.00038195785600692034 +illusion_1L,sr,320,96.0,force,front_fx,0.0019011165713891387 +illusion_1L,sr,320,96.0,force,front_fy,-1.2862375115219038e-05 +illusion_1L,sr,320,96.0,force,upper_fx,0.002217273460701108 +illusion_1L,sr,320,96.0,force,upper_fy,0.00031648314325138927 +illusion_1L,sr,320,96.0,force,lower_fx,0.0022477498278021812 +illusion_1L,sr,320,96.0,force,lower_fy,-0.0003816550597548485 +illusion_1L,sr,321,96.3,force,front_fx,0.0019000695319846272 +illusion_1L,sr,321,96.3,force,front_fy,-1.4971968084864784e-05 +illusion_1L,sr,321,96.3,force,upper_fx,0.002213445957750082 +illusion_1L,sr,321,96.3,force,upper_fy,0.0003144048969261348 +illusion_1L,sr,321,96.3,force,lower_fx,0.0022491600830107927 +illusion_1L,sr,321,96.3,force,lower_fy,-0.00038028109702281654 +illusion_1L,sr,322,96.6,force,front_fx,0.0019004680216312408 +illusion_1L,sr,322,96.6,force,front_fy,-1.657283974054735e-05 +illusion_1L,sr,322,96.6,force,upper_fx,0.0022123840171843767 +illusion_1L,sr,322,96.6,force,upper_fy,0.0003144876682199538 +illusion_1L,sr,322,96.6,force,lower_fx,0.0022515987511724234 +illusion_1L,sr,322,96.6,force,lower_fy,-0.00037806088221259415 +illusion_1L,sr,323,96.9,force,front_fx,0.0019026260124519467 +illusion_1L,sr,323,96.9,force,front_fy,-1.701497967587784e-05 +illusion_1L,sr,323,96.9,force,upper_fx,0.0022146052215248346 +illusion_1L,sr,323,96.9,force,upper_fy,0.0003171933349221945 +illusion_1L,sr,323,96.9,force,lower_fx,0.0022553857415914536 +illusion_1L,sr,323,96.9,force,lower_fy,-0.000375154719222337 +illusion_1L,sr,324,97.2,force,front_fx,0.0019042298663407564 +illusion_1L,sr,324,97.2,force,front_fy,-1.6774698451627046e-05 +illusion_1L,sr,324,97.2,force,upper_fx,0.002217304427176714 +illusion_1L,sr,324,97.2,force,upper_fy,0.0003225244290661067 +illusion_1L,sr,324,97.2,force,lower_fx,0.0022576143965125084 +illusion_1L,sr,324,97.2,force,lower_fy,-0.00037228252040222287 +illusion_1L,sr,325,97.5,force,front_fx,0.0019036855082958937 +illusion_1L,sr,325,97.5,force,front_fy,-1.5809851902304217e-05 +illusion_1L,sr,325,97.5,force,upper_fx,0.002218325389549136 +illusion_1L,sr,325,97.5,force,upper_fy,0.00033023665309883654 +illusion_1L,sr,325,97.5,force,lower_fx,0.002256109844893217 +illusion_1L,sr,325,97.5,force,lower_fy,-0.0003694213228300214 +illusion_1L,sr,326,97.8,force,front_fx,0.0019021326443180442 +illusion_1L,sr,326,97.8,force,front_fy,-1.3666722225025296e-05 +illusion_1L,sr,326,97.8,force,upper_fx,0.0022188371513038874 +illusion_1L,sr,326,97.8,force,upper_fy,0.0003395032254047692 +illusion_1L,sr,326,97.8,force,lower_fx,0.002252205042168498 +illusion_1L,sr,326,97.8,force,lower_fy,-0.0003658789210021496 +illusion_1L,sr,327,98.1,force,front_fx,0.0019007440423592925 +illusion_1L,sr,327,98.1,force,front_fy,-1.101833549910225e-05 +illusion_1L,sr,327,98.1,force,upper_fx,0.0022199423983693123 +illusion_1L,sr,327,98.1,force,upper_fy,0.0003490835952106863 +illusion_1L,sr,327,98.1,force,lower_fx,0.0022472499404102564 +illusion_1L,sr,327,98.1,force,lower_fy,-0.00036141157033853233 +illusion_1L,sr,328,98.4,force,front_fx,0.0018993375124409795 +illusion_1L,sr,328,98.4,force,front_fy,-7.956746230775025e-06 +illusion_1L,sr,328,98.4,force,upper_fx,0.002221493050456047 +illusion_1L,sr,328,98.4,force,upper_fy,0.0003581954224500805 +illusion_1L,sr,328,98.4,force,lower_fx,0.0022414177656173706 +illusion_1L,sr,328,98.4,force,lower_fy,-0.0003558610624168068 +illusion_1L,sr,329,98.7,force,front_fx,0.0018987552030012012 +illusion_1L,sr,329,98.7,force,front_fy,-4.27734266850166e-06 +illusion_1L,sr,329,98.7,force,upper_fx,0.0022244364954531193 +illusion_1L,sr,329,98.7,force,upper_fy,0.0003661781665869057 +illusion_1L,sr,329,98.7,force,lower_fx,0.0022360708098858595 +illusion_1L,sr,329,98.7,force,lower_fy,-0.00034911904367618263 +illusion_1L,sr,330,99.0,force,front_fx,0.0019004164496436715 +illusion_1L,sr,330,99.0,force,front_fy,-6.738388833582576e-07 +illusion_1L,sr,330,99.0,force,upper_fx,0.002230342011898756 +illusion_1L,sr,330,99.0,force,upper_fy,0.0003722806868609041 +illusion_1L,sr,330,99.0,force,lower_fx,0.0022331743966788054 +illusion_1L,sr,330,99.0,force,lower_fy,-0.00034160641371272504 +illusion_1L,sr,331,99.3,force,front_fx,0.0019027304369956255 +illusion_1L,sr,331,99.3,force,front_fy,2.850851387847797e-06 +illusion_1L,sr,331,99.3,force,upper_fx,0.002237339736893773 +illusion_1L,sr,331,99.3,force,upper_fy,0.0003766599402297288 +illusion_1L,sr,331,99.3,force,lower_fx,0.0022312328219413757 +illusion_1L,sr,331,99.3,force,lower_fy,-0.0003340361872687936 +illusion_1L,sr,332,99.6,force,front_fx,0.0019035333534702659 +illusion_1L,sr,332,99.6,force,front_fy,6.601674613193609e-06 +illusion_1L,sr,332,99.6,force,upper_fx,0.0022425006609410048 +illusion_1L,sr,332,99.6,force,upper_fy,0.0003797850222326815 +illusion_1L,sr,332,99.6,force,lower_fx,0.0022277687676250935 +illusion_1L,sr,332,99.6,force,lower_fy,-0.0003270514716859907 +illusion_1L,sr,333,99.9,force,front_fx,0.0019026875961571932 +illusion_1L,sr,333,99.9,force,front_fy,9.790065632842015e-06 +illusion_1L,sr,333,99.9,force,upper_fx,0.002245413139462471 +illusion_1L,sr,333,99.9,force,upper_fy,0.0003813814837485552 +illusion_1L,sr,333,99.9,force,lower_fx,0.0022227666340768337 +illusion_1L,sr,333,99.9,force,lower_fy,-0.0003213827731087804 +illusion_1L,sr,334,100.2,force,front_fx,0.0019016839796677232 +illusion_1L,sr,334,100.2,force,front_fy,1.2426152352418285e-05 +illusion_1L,sr,334,100.2,force,upper_fx,0.00224758661352098 +illusion_1L,sr,334,100.2,force,upper_fy,0.00038149498868733644 +illusion_1L,sr,334,100.2,force,lower_fx,0.002218087902292609 +illusion_1L,sr,334,100.2,force,lower_fy,-0.00031719860271550715 +illusion_1L,sr,335,100.5,force,front_fx,0.0019006627844646573 +illusion_1L,sr,335,100.5,force,front_fy,1.4811745131737553e-05 +illusion_1L,sr,335,100.5,force,upper_fx,0.0022490606643259525 +illusion_1L,sr,335,100.5,force,upper_fy,0.0003805221349466592 +illusion_1L,sr,335,100.5,force,lower_fx,0.0022141241934150457 +illusion_1L,sr,335,100.5,force,lower_fy,-0.000314832606818527 +illusion_1L,sr,336,100.8,force,front_fx,0.0018996739527210593 +illusion_1L,sr,336,100.8,force,front_fy,1.6294481611112133e-05 +illusion_1L,sr,336,100.8,force,upper_fx,0.002249922836199403 +illusion_1L,sr,336,100.8,force,upper_fy,0.0003785974986385554 +illusion_1L,sr,336,100.8,force,lower_fx,0.002211218001320958 +illusion_1L,sr,336,100.8,force,lower_fy,-0.00031481627956964076 +illusion_1L,sr,337,101.1,force,front_fx,0.0019003557972609997 +illusion_1L,sr,337,101.1,force,front_fy,1.69283666764386e-05 +illusion_1L,sr,337,101.1,force,upper_fx,0.002251939382404089 +illusion_1L,sr,337,101.1,force,upper_fy,0.00037591237924061716 +illusion_1L,sr,337,101.1,force,lower_fx,0.002211368177086115 +illusion_1L,sr,337,101.1,force,lower_fy,-0.0003171123389620334 +illusion_1L,sr,338,101.4,force,front_fx,0.0019024191424250603 +illusion_1L,sr,338,101.4,force,front_fy,1.6965375834843144e-05 +illusion_1L,sr,338,101.4,force,upper_fx,0.0022547640837728977 +illusion_1L,sr,338,101.4,force,upper_fy,0.0003729070886038244 +illusion_1L,sr,338,101.4,force,lower_fx,0.0022143537644296885 +illusion_1L,sr,338,101.4,force,lower_fy,-0.0003216890327166766 +illusion_1L,sr,339,101.7,force,front_fx,0.0019036317244172096 +illusion_1L,sr,339,101.7,force,front_fy,1.592958506080322e-05 +illusion_1L,sr,339,101.7,force,upper_fx,0.0022555897012352943 +illusion_1L,sr,339,101.7,force,upper_fy,0.00036972304224036634 +illusion_1L,sr,339,101.7,force,lower_fx,0.002217379165813327 +illusion_1L,sr,339,101.7,force,lower_fy,-0.00032874950557015836 +illusion_1L,sr,340,102.0,force,front_fx,0.0019028481328859925 +illusion_1L,sr,340,102.0,force,front_fy,1.399402208335232e-05 +illusion_1L,sr,340,102.0,force,upper_fx,0.002252851612865925 +illusion_1L,sr,340,102.0,force,upper_fy,0.00036628288216888905 +illusion_1L,sr,340,102.0,force,lower_fx,0.0022187517024576664 +illusion_1L,sr,340,102.0,force,lower_fy,-0.0003376775130163878 +illusion_1L,sr,341,102.3,force,front_fx,0.0019013893324881792 +illusion_1L,sr,341,102.3,force,front_fy,1.15851644295617e-05 +illusion_1L,sr,341,102.3,force,upper_fx,0.0022481929045170546 +illusion_1L,sr,341,102.3,force,upper_fy,0.0003621616051532328 +illusion_1L,sr,341,102.3,force,lower_fx,0.002219896297901869 +illusion_1L,sr,341,102.3,force,lower_fy,-0.000347224558936432 +illusion_1L,sr,342,102.6,force,front_fx,0.0019001024775207043 +illusion_1L,sr,342,102.6,force,front_fy,8.399617399845738e-06 +illusion_1L,sr,342,102.6,force,upper_fx,0.0022426354698836803 +illusion_1L,sr,342,102.6,force,upper_fy,0.00035687224590219557 +illusion_1L,sr,342,102.6,force,lower_fx,0.002221511211246252 +illusion_1L,sr,342,102.6,force,lower_fy,-0.000356587755959481 +illusion_1L,sr,343,102.9,force,front_fx,0.0018987584626302123 +illusion_1L,sr,343,102.9,force,front_fy,4.840399924432859e-06 +illusion_1L,sr,343,102.9,force,upper_fx,0.0022364563774317503 +illusion_1L,sr,343,102.9,force,upper_fy,0.0003505194326862693 +illusion_1L,sr,343,102.9,force,lower_fx,0.0022234569769352674 +illusion_1L,sr,343,102.9,force,lower_fy,-0.00036492125946097076 +illusion_1L,sr,344,103.2,force,front_fx,0.0018986137583851814 +illusion_1L,sr,344,103.2,force,front_fy,1.3936049754192936e-06 +illusion_1L,sr,344,103.2,force,upper_fx,0.0022313734516501427 +illusion_1L,sr,344,103.2,force,upper_fy,0.000343375897500664 +illusion_1L,sr,344,103.2,force,lower_fx,0.002227091696113348 +illusion_1L,sr,344,103.2,force,lower_fy,-0.00037140899803489447 +illusion_1L,sr,345,103.5,force,front_fx,0.0019005424110218883 +illusion_1L,sr,345,103.5,force,front_fy,-2.319269924555556e-06 +illusion_1L,sr,345,103.5,force,upper_fx,0.0022288120817393064 +illusion_1L,sr,345,103.5,force,upper_fy,0.00033564012846909463 +illusion_1L,sr,345,103.5,force,lower_fx,0.0022334440145641565 +illusion_1L,sr,345,103.5,force,lower_fy,-0.00037602984230034053 +illusion_1L,sr,346,103.8,force,front_fx,0.0019027203088626266 +illusion_1L,sr,346,103.8,force,front_fy,-6.045156169420807e-06 +illusion_1L,sr,346,103.8,force,upper_fx,0.002226951764896512 +illusion_1L,sr,346,103.8,force,upper_fy,0.0003282667021267116 +illusion_1L,sr,346,103.8,force,lower_fx,0.0022402331233024597 +illusion_1L,sr,346,103.8,force,lower_fy,-0.00037905428325757384 +illusion_1L,sr,347,104.1,force,front_fx,0.0019032013369724154 +illusion_1L,sr,347,104.1,force,front_fy,-9.13397889235057e-06 +illusion_1L,sr,347,104.1,force,upper_fx,0.002223517280071974 +illusion_1L,sr,347,104.1,force,upper_fy,0.00032224954338744283 +illusion_1L,sr,347,104.1,force,lower_fx,0.002244821283966303 +illusion_1L,sr,347,104.1,force,lower_fy,-0.0003806916356552392 +illusion_1L,sr,348,104.4,force,front_fx,0.001902313786558807 +illusion_1L,sr,348,104.4,force,front_fy,-1.2050789337081369e-05 +illusion_1L,sr,348,104.4,force,upper_fx,0.002219053450971842 +illusion_1L,sr,348,104.4,force,upper_fy,0.00031777360709384084 +illusion_1L,sr,348,104.4,force,lower_fx,0.0022473749704658985 +illusion_1L,sr,348,104.4,force,lower_fy,-0.000381211080821231 +illusion_1L,sr,349,104.7,force,front_fx,0.0019013193668797612 +illusion_1L,sr,349,104.7,force,front_fy,-1.4456209100899287e-05 +illusion_1L,sr,349,104.7,force,upper_fx,0.0022150769364088774 +illusion_1L,sr,349,104.7,force,upper_fy,0.00031521086930297315 +illusion_1L,sr,349,104.7,force,lower_fx,0.002249056240543723 +illusion_1L,sr,349,104.7,force,lower_fy,-0.0003805319720413536 +illusion_1L,sr,350,105.0,force,front_fx,0.001900176634080708 +illusion_1L,sr,350,105.0,force,front_fy,-1.592453736520838e-05 +illusion_1L,sr,350,105.0,force,upper_fx,0.0022118014749139547 +illusion_1L,sr,350,105.0,force,upper_fy,0.0003149534168187529 +illusion_1L,sr,350,105.0,force,lower_fx,0.0022498236503452063 +illusion_1L,sr,350,105.0,force,lower_fy,-0.00037886443897150457 +illusion_1L,sr,351,105.3,force,front_fx,0.0018993107369169593 +illusion_1L,sr,351,105.3,force,front_fy,-1.6882881027413532e-05 +illusion_1L,sr,351,105.3,force,upper_fx,0.0022099025081843138 +illusion_1L,sr,351,105.3,force,upper_fy,0.0003169426054228097 +illusion_1L,sr,351,105.3,force,lower_fx,0.002250079996883869 +illusion_1L,sr,351,105.3,force,lower_fy,-0.0003766026929952204 +illusion_1L,sr,352,105.6,force,front_fx,0.0019002520712092519 +illusion_1L,sr,352,105.6,force,front_fy,-1.698561209195759e-05 +illusion_1L,sr,352,105.6,force,upper_fx,0.002211229410022497 +illusion_1L,sr,352,105.6,force,upper_fy,0.00032113888300955296 +illusion_1L,sr,352,105.6,force,lower_fx,0.0022515777964144945 +illusion_1L,sr,352,105.6,force,lower_fy,-0.0003736712096724659 +illusion_1L,sr,353,105.9,force,front_fx,0.0019022184424102306 +illusion_1L,sr,353,105.9,force,front_fy,-1.596586844243575e-05 +illusion_1L,sr,353,105.9,force,upper_fx,0.0022149011492729187 +illusion_1L,sr,353,105.9,force,upper_fy,0.00032757228473201394 +illusion_1L,sr,353,105.9,force,lower_fx,0.0022533966694027185 +illusion_1L,sr,353,105.9,force,lower_fy,-0.0003702413523569703 +illusion_1L,sr,354,106.2,force,front_fx,0.0019030827097594738 +illusion_1L,sr,354,106.2,force,front_fy,-1.43981969813467e-05 +illusion_1L,sr,354,106.2,force,upper_fx,0.0022181919775903225 +illusion_1L,sr,354,106.2,force,upper_fy,0.00033581856405362487 +illusion_1L,sr,354,106.2,force,lower_fx,0.0022528909612447023 +illusion_1L,sr,354,106.2,force,lower_fy,-0.0003667192650027573 +illusion_1L,sr,355,106.5,force,front_fx,0.0019021324114874005 +illusion_1L,sr,355,106.5,force,front_fy,-1.1977142094110604e-05 +illusion_1L,sr,355,106.5,force,upper_fx,0.002219920977950096 +illusion_1L,sr,355,106.5,force,upper_fy,0.0003452994569670409 +illusion_1L,sr,355,106.5,force,lower_fx,0.0022490916308015585 +illusion_1L,sr,355,106.5,force,lower_fy,-0.00036269539850763977 +illusion_1L,sr,356,106.8,force,front_fx,0.0019007597584277391 +illusion_1L,sr,356,106.8,force,front_fy,-8.794217137619853e-06 +illusion_1L,sr,356,106.8,force,upper_fx,0.0022215619683265686 +illusion_1L,sr,356,106.8,force,upper_fy,0.00035485572880133986 +illusion_1L,sr,356,106.8,force,lower_fx,0.002243797294795513 +illusion_1L,sr,356,106.8,force,lower_fy,-0.0003576900635380298 +illusion_1L,sr,357,107.1,force,front_fx,0.0018995215650647879 +illusion_1L,sr,357,107.1,force,front_fy,-5.522663741430733e-06 +illusion_1L,sr,357,107.1,force,upper_fx,0.0022235368378460407 +illusion_1L,sr,357,107.1,force,upper_fy,0.0003633907763287425 +illusion_1L,sr,357,107.1,force,lower_fx,0.0022377956192940474 +illusion_1L,sr,357,107.1,force,lower_fy,-0.0003517497971188277 +illusion_1L,sr,358,107.4,force,front_fx,0.0018983330810442567 +illusion_1L,sr,358,107.4,force,front_fy,-1.921034709084779e-06 +illusion_1L,sr,358,107.4,force,upper_fx,0.002225870033726096 +illusion_1L,sr,358,107.4,force,upper_fy,0.0003704339324031025 +illusion_1L,sr,358,107.4,force,lower_fx,0.0022315094247460365 +illusion_1L,sr,358,107.4,force,lower_fy,-0.0003448811185080558 +illusion_1L,sr,359,107.7,force,front_fx,0.001898644375614822 +illusion_1L,sr,359,107.7,force,front_fy,1.8295571635462693e-06 +illusion_1L,sr,359,107.7,force,upper_fx,0.0022301445715129375 +illusion_1L,sr,359,107.7,force,upper_fy,0.0003755092038773 +illusion_1L,sr,359,107.7,force,lower_fx,0.002226922893896699 +illusion_1L,sr,359,107.7,force,lower_fy,-0.0003373430809006095 +illusion_1L,sr,360,108.0,force,front_fx,0.0019007931696251035 +illusion_1L,sr,360,108.0,force,front_fy,5.337022230378352e-06 +illusion_1L,sr,360,108.0,force,upper_fx,0.0022367630153894424 +illusion_1L,sr,360,108.0,force,upper_fy,0.0003785816952586174 +illusion_1L,sr,360,108.0,force,lower_fx,0.002224844181910157 +illusion_1L,sr,360,108.0,force,lower_fy,-0.0003298217779956758 +illusion_1L,sr,361,108.3,force,front_fx,0.0019027725793421268 +illusion_1L,sr,361,108.3,force,front_fy,8.66944083099952e-06 +illusion_1L,sr,361,108.3,force,upper_fx,0.0022431800607591867 +illusion_1L,sr,361,108.3,force,upper_fy,0.0003802295250352472 +illusion_1L,sr,361,108.3,force,lower_fx,0.0022231361363083124 +illusion_1L,sr,361,108.3,force,lower_fy,-0.0003232246090192348 +illusion_1L,sr,362,108.6,force,front_fx,0.0019029235700145364 +illusion_1L,sr,362,108.6,force,front_fy,1.1695075045281556e-05 +illusion_1L,sr,362,108.6,force,upper_fx,0.0022470797412097454 +illusion_1L,sr,362,108.6,force,upper_fy,0.0003808698966167867 +illusion_1L,sr,362,108.6,force,lower_fx,0.002219861838966608 +illusion_1L,sr,362,108.6,force,lower_fy,-0.0003183272201567888 +illusion_1L,sr,363,108.9,force,front_fx,0.001901971292681992 +illusion_1L,sr,363,108.9,force,front_fy,1.3968222447147127e-05 +illusion_1L,sr,363,108.9,force,upper_fx,0.002249112818390131 +illusion_1L,sr,363,108.9,force,upper_fy,0.000380398822017014 +illusion_1L,sr,363,108.9,force,lower_fx,0.0022160052321851254 +illusion_1L,sr,363,108.9,force,lower_fy,-0.0003155710001010448 +illusion_1L,sr,364,109.2,force,front_fx,0.001900910516269505 +illusion_1L,sr,364,109.2,force,front_fy,1.575738497194834e-05 +illusion_1L,sr,364,109.2,force,upper_fx,0.0022501193452626467 +illusion_1L,sr,364,109.2,force,upper_fy,0.0003791028866544366 +illusion_1L,sr,364,109.2,force,lower_fx,0.002212706720456481 +illusion_1L,sr,364,109.2,force,lower_fy,-0.0003149313270114362 +illusion_1L,sr,365,109.5,force,front_fx,0.0018996504368260503 +illusion_1L,sr,365,109.5,force,front_fy,1.685731331235729e-05 +illusion_1L,sr,365,109.5,force,upper_fx,0.0022500387858599424 +illusion_1L,sr,365,109.5,force,upper_fy,0.00037711503682658076 +illusion_1L,sr,365,109.5,force,lower_fx,0.002210153266787529 +illusion_1L,sr,365,109.5,force,lower_fy,-0.0003166424576193094 +illusion_1L,sr,366,109.8,force,front_fx,0.00189899280667305 +illusion_1L,sr,366,109.8,force,front_fy,1.6912501450860873e-05 +illusion_1L,sr,366,109.8,force,upper_fx,0.0022497293539345264 +illusion_1L,sr,366,109.8,force,upper_fy,0.0003744174900930375 +illusion_1L,sr,366,109.8,force,lower_fx,0.0022093425504863262 +illusion_1L,sr,366,109.8,force,lower_fy,-0.00032068256405182183 +illusion_1L,sr,367,110.1,force,front_fx,0.001900204224511981 +illusion_1L,sr,367,110.1,force,front_fy,1.622114359633997e-05 +illusion_1L,sr,367,110.1,force,upper_fx,0.0022506772074848413 +illusion_1L,sr,367,110.1,force,upper_fy,0.0003711390309035778 +illusion_1L,sr,367,110.1,force,lower_fx,0.0022117963526397943 +illusion_1L,sr,367,110.1,force,lower_fy,-0.0003265903505962342 +illusion_1L,sr,368,110.4,force,front_fx,0.0019020485924556851 +illusion_1L,sr,368,110.4,force,front_fy,1.4769921108381823e-05 +illusion_1L,sr,368,110.4,force,upper_fx,0.002251461846753955 +illusion_1L,sr,368,110.4,force,upper_fy,0.0003673998871818185 +illusion_1L,sr,368,110.4,force,lower_fx,0.002216068562120199 +illusion_1L,sr,368,110.4,force,lower_fy,-0.00033426316804252565 +illusion_1L,sr,369,110.7,force,front_fx,0.001902577467262745 +illusion_1L,sr,369,110.7,force,front_fy,1.230395082529867e-05 +illusion_1L,sr,369,110.7,force,upper_fx,0.0022496741730719805 +illusion_1L,sr,369,110.7,force,upper_fy,0.00036321926745586097 +illusion_1L,sr,369,110.7,force,lower_fx,0.002219509333372116 +illusion_1L,sr,369,110.7,force,lower_fy,-0.00034339394187554717 +illusion_1L,sr,370,111.0,force,front_fx,0.0019015056313946843 +illusion_1L,sr,370,111.0,force,front_fy,9.413627594767604e-06 +illusion_1L,sr,370,111.0,force,upper_fx,0.002245016163215041 +illusion_1L,sr,370,111.0,force,upper_fy,0.0003585045924410224 +illusion_1L,sr,370,111.0,force,lower_fx,0.002221553586423397 +illusion_1L,sr,370,111.0,force,lower_fy,-0.00035289968946017325 +illusion_1L,sr,371,111.3,force,front_fx,0.0019002160988748074 +illusion_1L,sr,371,111.3,force,front_fy,6.154873517516535e-06 +illusion_1L,sr,371,111.3,force,upper_fx,0.0022392154205590487 +illusion_1L,sr,371,111.3,force,upper_fy,0.00035283726174384356 +illusion_1L,sr,371,111.3,force,lower_fx,0.0022235598880797625 +illusion_1L,sr,371,111.3,force,lower_fy,-0.0003617416659835726 +illusion_1L,sr,372,111.6,force,front_fx,0.0018990242388099432 +illusion_1L,sr,372,111.6,force,front_fy,2.4476373710058397e-06 +illusion_1L,sr,372,111.6,force,upper_fx,0.0022329543717205524 +illusion_1L,sr,372,111.6,force,upper_fy,0.00034619809594005346 +illusion_1L,sr,372,111.6,force,lower_fx,0.002225804841145873 +illusion_1L,sr,372,111.6,force,lower_fy,-0.0003692223981488496 +illusion_1L,sr,373,111.9,force,front_fx,0.0018980765016749501 +illusion_1L,sr,373,111.9,force,front_fy,-1.1067145351262297e-06 +illusion_1L,sr,373,111.9,force,upper_fx,0.0022268621250987053 +illusion_1L,sr,373,111.9,force,upper_fy,0.0003390166093595326 +illusion_1L,sr,373,111.9,force,lower_fx,0.00222853384912014 +illusion_1L,sr,373,111.9,force,lower_fy,-0.00037475829594768584 +illusion_1L,sr,374,112.2,force,front_fx,0.0018988529918715358 +illusion_1L,sr,374,112.2,force,front_fy,-4.67149857286131e-06 +illusion_1L,sr,374,112.2,force,upper_fx,0.0022229738533496857 +illusion_1L,sr,374,112.2,force,upper_fy,0.00033153448021039367 +illusion_1L,sr,374,112.2,force,lower_fx,0.0022333806846290827 +illusion_1L,sr,374,112.2,force,lower_fy,-0.00037825177423655987 +illusion_1L,sr,375,112.5,force,front_fx,0.001901124371215701 +illusion_1L,sr,375,112.5,force,front_fy,-8.199050171242561e-06 +illusion_1L,sr,375,112.5,force,upper_fx,0.002221430651843548 +illusion_1L,sr,375,112.5,force,upper_fy,0.00032450168509967625 +illusion_1L,sr,375,112.5,force,lower_fx,0.002240058733150363 +illusion_1L,sr,375,112.5,force,lower_fy,-0.0003800196573138237 +illusion_1L,sr,376,112.8,force,front_fx,0.0019028212409466505 +illusion_1L,sr,376,112.8,force,front_fy,-1.1114547305624e-05 +illusion_1L,sr,376,112.8,force,upper_fx,0.0022199188824743032 +illusion_1L,sr,376,112.8,force,upper_fy,0.0003190857532899827 +illusion_1L,sr,376,112.8,force,lower_fx,0.002245887415483594 +illusion_1L,sr,376,112.8,force,lower_fy,-0.00038050158764235675 +illusion_1L,sr,377,113.1,force,front_fx,0.0019026297377422452 +illusion_1L,sr,377,113.1,force,front_fy,-1.3545653928304091e-05 +illusion_1L,sr,377,113.1,force,upper_fx,0.0022169025614857674 +illusion_1L,sr,377,113.1,force,upper_fy,0.00031584411044605076 +illusion_1L,sr,377,113.1,force,lower_fx,0.002248987555503845 +illusion_1L,sr,377,113.1,force,lower_fy,-0.0003801941347774118 +illusion_1L,sr,378,113.4,force,front_fx,0.0019015832804143429 +illusion_1L,sr,378,113.4,force,front_fy,-1.556579809403047e-05 +illusion_1L,sr,378,113.4,force,upper_fx,0.002213663188740611 +illusion_1L,sr,378,113.4,force,upper_fy,0.00031483452767133713 +illusion_1L,sr,378,113.4,force,lower_fx,0.002250326331704855 +illusion_1L,sr,378,113.4,force,lower_fy,-0.00037918746238574386 +illusion_1L,sr,379,113.7,force,front_fx,0.0019004460191354156 +illusion_1L,sr,379,113.7,force,front_fy,-1.661675560171716e-05 +illusion_1L,sr,379,113.7,force,upper_fx,0.0022110750433057547 +illusion_1L,sr,379,113.7,force,upper_fy,0.000316279852995649 +illusion_1L,sr,379,113.7,force,lower_fx,0.0022505302913486958 +illusion_1L,sr,379,113.7,force,lower_fy,-0.0003773801727220416 +illusion_1L,sr,380,114.0,force,front_fx,0.0018991269171237946 +illusion_1L,sr,380,114.0,force,front_fy,-1.6865036741364747e-05 +illusion_1L,sr,380,114.0,force,upper_fx,0.002209295053035021 +illusion_1L,sr,380,114.0,force,upper_fy,0.0003200303472112864 +illusion_1L,sr,380,114.0,force,lower_fx,0.0022495898883789778 +illusion_1L,sr,380,114.0,force,lower_fy,-0.0003749999450519681 +illusion_1L,sr,381,114.3,force,front_fx,0.0018987886141985655 +illusion_1L,sr,381,114.3,force,front_fy,-1.644949588808231e-05 +illusion_1L,sr,381,114.3,force,upper_fx,0.002209656871855259 +illusion_1L,sr,381,114.3,force,upper_fy,0.0003257018106523901 +illusion_1L,sr,381,114.3,force,lower_fx,0.0022487803362309933 +illusion_1L,sr,381,114.3,force,lower_fy,-0.0003720206150319427 +illusion_1L,sr,382,114.6,force,front_fx,0.001900218310765922 +illusion_1L,sr,382,114.6,force,front_fy,-1.4975462363508996e-05 +illusion_1L,sr,382,114.6,force,upper_fx,0.0022131362929940224 +illusion_1L,sr,382,114.6,force,upper_fy,0.00033303696545772254 +illusion_1L,sr,382,114.6,force,lower_fx,0.0022491218987852335 +illusion_1L,sr,382,114.6,force,lower_fy,-0.00036824928247369826 +illusion_1L,sr,383,114.9,force,front_fx,0.0019019184401258826 +illusion_1L,sr,383,114.9,force,front_fy,-1.2711643648799509e-05 +illusion_1L,sr,383,114.9,force,upper_fx,0.002217827597633004 +illusion_1L,sr,383,114.9,force,upper_fy,0.0003416482068132609 +illusion_1L,sr,383,114.9,force,lower_fx,0.002248891396448016 +illusion_1L,sr,383,114.9,force,lower_fy,-0.0003639291098807007 +illusion_1L,sr,384,115.2,force,front_fx,0.0019020905019715428 +illusion_1L,sr,384,115.2,force,front_fy,-1.000717566057574e-05 +illusion_1L,sr,384,115.2,force,upper_fx,0.002221321454271674 +illusion_1L,sr,384,115.2,force,upper_fy,0.00035090313758701086 +illusion_1L,sr,384,115.2,force,lower_fx,0.002245927695184946 +illusion_1L,sr,384,115.2,force,lower_fy,-0.00035922537790611386 +illusion_1L,sr,385,115.5,force,front_fx,0.0019009605748578906 +illusion_1L,sr,385,115.5,force,front_fy,-6.661495717708021e-06 +illusion_1L,sr,385,115.5,force,upper_fx,0.002223627408966422 +illusion_1L,sr,385,115.5,force,upper_fy,0.00036000096588395536 +illusion_1L,sr,385,115.5,force,lower_fx,0.00224061356857419 +illusion_1L,sr,385,115.5,force,lower_fy,-0.00035372230922803283 +illusion_1L,sr,386,115.8,force,front_fx,0.0018997490406036377 +illusion_1L,sr,386,115.8,force,front_fy,-3.043046717721154e-06 +illusion_1L,sr,386,115.8,force,upper_fx,0.002225899836048484 +illusion_1L,sr,386,115.8,force,upper_fy,0.00036783170071430504 +illusion_1L,sr,386,115.8,force,lower_fx,0.0022344994358718395 +illusion_1L,sr,386,115.8,force,lower_fy,-0.00034739161492325366 +illusion_1L,sr,387,116.1,force,front_fx,0.0018986244685947895 +illusion_1L,sr,387,116.1,force,front_fy,3.8355636888809386e-07 +illusion_1L,sr,387,116.1,force,upper_fx,0.0022283680737018585 +illusion_1L,sr,387,116.1,force,upper_fy,0.00037378876004368067 +illusion_1L,sr,387,116.1,force,lower_fx,0.002228182042017579 +illusion_1L,sr,387,116.1,force,lower_fy,-0.00034047671942971647 +illusion_1L,sr,388,116.4,force,front_fx,0.001898022717796266 +illusion_1L,sr,388,116.4,force,front_fy,4.13957923228736e-06 +illusion_1L,sr,388,116.4,force,upper_fx,0.0022315257228910923 +illusion_1L,sr,388,116.4,force,upper_fy,0.00037788337795063853 +illusion_1L,sr,388,116.4,force,lower_fx,0.0022225806023925543 +illusion_1L,sr,388,116.4,force,lower_fy,-0.00033313228050246835 +illusion_1L,sr,389,116.7,force,front_fx,0.0018992179539054632 +illusion_1L,sr,389,116.7,force,front_fy,7.651176929357462e-06 +illusion_1L,sr,389,116.7,force,upper_fx,0.0022367986384779215 +illusion_1L,sr,389,116.7,force,upper_fy,0.0003799375263042748 +illusion_1L,sr,389,116.7,force,lower_fx,0.002219544257968664 +illusion_1L,sr,389,116.7,force,lower_fy,-0.0003260529483668506 +illusion_1L,sr,390,117.0,force,front_fx,0.0019014839781448245 +illusion_1L,sr,390,117.0,force,front_fy,1.0544566976022907e-05 +illusion_1L,sr,390,117.0,force,upper_fx,0.002243282273411751 +illusion_1L,sr,390,117.0,force,upper_fy,0.00038040123763494194 +illusion_1L,sr,390,117.0,force,lower_fx,0.0022185149136930704 +illusion_1L,sr,390,117.0,force,lower_fy,-0.0003201452491339296 +illusion_1L,sr,391,117.3,force,front_fx,0.001902799354866147 +illusion_1L,sr,391,117.3,force,front_fy,1.3238151041150559e-05 +illusion_1L,sr,391,117.3,force,upper_fx,0.0022482932545244694 +illusion_1L,sr,391,117.3,force,upper_fy,0.00038007888360880315 +illusion_1L,sr,391,117.3,force,lower_fx,0.0022171929012984037 +illusion_1L,sr,391,117.3,force,lower_fy,-0.00031618273351341486 +illusion_1L,sr,392,117.6,force,front_fx,0.0019022914348170161 +illusion_1L,sr,392,117.6,force,front_fy,1.5268995412043296e-05 +illusion_1L,sr,392,117.6,force,upper_fx,0.0022504867520183325 +illusion_1L,sr,392,117.6,force,upper_fy,0.0003791494818869978 +illusion_1L,sr,392,117.6,force,lower_fx,0.0022145358379930258 +illusion_1L,sr,392,117.6,force,lower_fy,-0.0003147678216919303 +illusion_1L,sr,393,117.9,force,front_fx,0.0019011396216228604 +illusion_1L,sr,393,117.9,force,front_fy,1.638915819057729e-05 +illusion_1L,sr,393,117.9,force,upper_fx,0.002251000376418233 +illusion_1L,sr,393,117.9,force,upper_fy,0.000377554475562647 +illusion_1L,sr,393,117.9,force,lower_fx,0.0022119341883808374 +illusion_1L,sr,393,117.9,force,lower_fy,-0.0003158787149004638 +illusion_1L,sr,394,118.2,force,front_fx,0.0018999131862074137 +illusion_1L,sr,394,118.2,force,front_fy,1.698586311249528e-05 +illusion_1L,sr,394,118.2,force,upper_fx,0.0022503137588500977 +illusion_1L,sr,394,118.2,force,upper_fy,0.00037547049578279257 +illusion_1L,sr,394,118.2,force,lower_fx,0.002210074570029974 +illusion_1L,sr,394,118.2,force,lower_fy,-0.000319231825415045 +illusion_1L,sr,395,118.5,force,front_fx,0.0018986663781106472 +illusion_1L,sr,395,118.5,force,front_fy,1.657526081544347e-05 +illusion_1L,sr,395,118.5,force,upper_fx,0.002248598262667656 +illusion_1L,sr,395,118.5,force,upper_fy,0.00037274693022482097 +illusion_1L,sr,395,118.5,force,lower_fx,0.002209177939221263 +illusion_1L,sr,395,118.5,force,lower_fy,-0.000324756110785529 +illusion_1L,sr,396,118.8,force,front_fx,0.0018986942013725638 +illusion_1L,sr,396,118.8,force,front_fy,1.5191457350738347e-05 +illusion_1L,sr,396,118.8,force,upper_fx,0.002247343771159649 +illusion_1L,sr,396,118.8,force,upper_fy,0.00036922068102285266 +illusion_1L,sr,396,118.8,force,lower_fx,0.002210716251283884 +illusion_1L,sr,396,118.8,force,lower_fy,-0.000331917661242187 +illusion_1L,sr,397,119.1,force,front_fx,0.0019002872286364436 +illusion_1L,sr,397,119.1,force,front_fy,1.3241195119917393e-05 +illusion_1L,sr,397,119.1,force,upper_fx,0.002247043652459979 +illusion_1L,sr,397,119.1,force,upper_fy,0.00036496861139312387 +illusion_1L,sr,397,119.1,force,lower_fx,0.00221504014916718 +illusion_1L,sr,397,119.1,force,lower_fy,-0.0003401155408937484 +illusion_1L,sr,398,119.4,force,front_fx,0.0019017630256712437 +illusion_1L,sr,398,119.4,force,front_fy,1.0493672562006395e-05 +illusion_1L,sr,398,119.4,force,upper_fx,0.0022457928862422705 +illusion_1L,sr,398,119.4,force,upper_fy,0.00036004590219818056 +illusion_1L,sr,398,119.4,force,lower_fx,0.0022199770901352167 +illusion_1L,sr,398,119.4,force,lower_fy,-0.0003490855742711574 +illusion_1L,sr,399,119.7,force,front_fx,0.0019016176229342818 +illusion_1L,sr,399,119.7,force,front_fy,7.207729595393175e-06 +illusion_1L,sr,399,119.7,force,upper_fx,0.0022418301086872816 +illusion_1L,sr,399,119.7,force,upper_fy,0.0003545852086972445 +illusion_1L,sr,399,119.7,force,lower_fx,0.0022234313655644655 +illusion_1L,sr,399,119.7,force,lower_fy,-0.0003581459750421345 +illusion_1L,sr,0,0.0,alpha,front,0.015065667156363162 +illusion_1L,sr,0,0.0,alpha,upper,-0.017749901075966065 +illusion_1L,sr,0,0.0,alpha,lower,-0.017749901075966065 +illusion_1L,sr,1,0.3,alpha,front,0.021282785607453614 +illusion_1L,sr,1,0.3,alpha,upper,-0.022503613711949186 +illusion_1L,sr,1,0.3,alpha,lower,-0.022503613711949186 +illusion_1L,sr,2,0.6,alpha,front,-0.0006999595183350971 +illusion_1L,sr,2,0.6,alpha,upper,-0.006498512390538877 +illusion_1L,sr,2,0.6,alpha,lower,-0.006498512390538877 +illusion_1L,sr,3,0.9,alpha,front,-0.025245866684551577 +illusion_1L,sr,3,0.9,alpha,upper,0.011551717585581545 +illusion_1L,sr,3,0.9,alpha,lower,0.011551717585581545 +illusion_1L,sr,4,1.2,alpha,front,-0.047225075788273146 +illusion_1L,sr,4,1.2,alpha,upper,0.0277120824422232 +illusion_1L,sr,4,1.2,alpha,lower,0.0277120824422232 +illusion_1L,sr,5,1.5,alpha,front,-0.059035610476469116 +illusion_1L,sr,5,1.5,alpha,upper,0.03655664863053004 +illusion_1L,sr,5,1.5,alpha,lower,0.03655664863053004 +illusion_1L,sr,6,1.8,alpha,front,-0.05430935297554115 +illusion_1L,sr,6,1.8,alpha,upper,0.03359789153042413 +illusion_1L,sr,6,1.8,alpha,lower,0.03359789153042413 +illusion_1L,sr,7,2.1,alpha,front,-0.03803299646032646 +illusion_1L,sr,7,2.1,alpha,upper,0.022699198064553346 +illusion_1L,sr,7,2.1,alpha,lower,0.022699198064553346 +illusion_1L,sr,8,2.4,alpha,front,-0.01681250262587851 +illusion_1L,sr,8,2.4,alpha,upper,0.008796696787675147 +illusion_1L,sr,8,2.4,alpha,lower,0.008796696787675147 +illusion_1L,sr,9,2.7,alpha,front,0.003969712335341876 +illusion_1L,sr,9,2.7,alpha,upper,-0.004219602005767573 +illusion_1L,sr,9,2.7,alpha,lower,-0.004219602005767573 +illusion_1L,sr,10,3.0,alpha,front,0.019698562414702366 +illusion_1L,sr,10,3.0,alpha,upper,-0.01313471708515218 +illusion_1L,sr,10,3.0,alpha,lower,-0.01313471708515218 +illusion_1L,sr,11,3.3,alpha,front,0.029247236478722467 +illusion_1L,sr,11,3.3,alpha,upper,-0.01732154383641374 +illusion_1L,sr,11,3.3,alpha,lower,-0.01732154383641374 +illusion_1L,sr,12,3.6,alpha,front,0.03718105877971553 +illusion_1L,sr,12,3.6,alpha,upper,-0.020350619329359138 +illusion_1L,sr,12,3.6,alpha,lower,-0.020350619329359138 +illusion_1L,sr,13,3.9,alpha,front,0.04140742690912563 +illusion_1L,sr,13,3.9,alpha,upper,-0.02084237512185977 +illusion_1L,sr,13,3.9,alpha,lower,-0.02084237512185977 +illusion_1L,sr,14,4.2,alpha,front,0.04524019166877455 +illusion_1L,sr,14,4.2,alpha,upper,-0.021375663145537988 +illusion_1L,sr,14,4.2,alpha,lower,-0.021375663145537988 +illusion_1L,sr,15,4.5,alpha,front,0.04751875632493757 +illusion_1L,sr,15,4.5,alpha,upper,-0.021196930061869346 +illusion_1L,sr,15,4.5,alpha,lower,-0.021196930061869346 +illusion_1L,sr,16,4.8,alpha,front,0.04660318742053876 +illusion_1L,sr,16,4.8,alpha,upper,-0.019184158228791437 +illusion_1L,sr,16,4.8,alpha,lower,-0.019184158228791437 +illusion_1L,sr,17,5.1,alpha,front,0.04409401306292632 +illusion_1L,sr,17,5.1,alpha,upper,-0.016599260516298786 +illusion_1L,sr,17,5.1,alpha,lower,-0.016599260516298786 +illusion_1L,sr,18,5.4,alpha,front,0.03945144127696748 +illusion_1L,sr,18,5.4,alpha,upper,-0.013103459960533498 +illusion_1L,sr,18,5.4,alpha,lower,-0.013103459960533498 +illusion_1L,sr,19,5.7,alpha,front,0.032209542854565676 +illusion_1L,sr,19,5.7,alpha,upper,-0.008378636025239944 +illusion_1L,sr,19,5.7,alpha,lower,-0.008378636025239944 +illusion_1L,sr,20,6.0,alpha,front,0.024730528617555512 +illusion_1L,sr,20,6.0,alpha,upper,-0.004147591766761521 +illusion_1L,sr,20,6.0,alpha,lower,-0.004147591766761521 +illusion_1L,sr,21,6.3,alpha,front,0.017128540647560614 +illusion_1L,sr,21,6.3,alpha,upper,-0.0004182647697407449 +illusion_1L,sr,21,6.3,alpha,lower,-0.0004182647697407449 +illusion_1L,sr,22,6.6,alpha,front,0.00963220329456807 +illusion_1L,sr,22,6.6,alpha,upper,0.0027692204386016717 +illusion_1L,sr,22,6.6,alpha,lower,0.0027692204386016717 +illusion_1L,sr,23,6.9,alpha,front,0.004186786469055237 +illusion_1L,sr,23,6.9,alpha,upper,0.004123222200376364 +illusion_1L,sr,23,6.9,alpha,lower,0.004123222200376364 +illusion_1L,sr,24,7.2,alpha,front,-0.000418376960801492 +illusion_1L,sr,24,7.2,alpha,upper,0.004696169761610226 +illusion_1L,sr,24,7.2,alpha,lower,0.004696169761610226 +illusion_1L,sr,25,7.5,alpha,front,-0.005635887319238492 +illusion_1L,sr,25,7.5,alpha,upper,0.005704152310365446 +illusion_1L,sr,25,7.5,alpha,lower,0.005704152310365446 +illusion_1L,sr,26,7.8,alpha,front,-0.010969825532970153 +illusion_1L,sr,26,7.8,alpha,upper,0.006887907387382066 +illusion_1L,sr,26,7.8,alpha,lower,0.006887907387382066 +illusion_1L,sr,27,8.1,alpha,front,-0.016047634281826477 +illusion_1L,sr,27,8.1,alpha,upper,0.008060446614249032 +illusion_1L,sr,27,8.1,alpha,lower,0.008060446614249032 +illusion_1L,sr,28,8.4,alpha,front,-0.02103622279941958 +illusion_1L,sr,28,8.4,alpha,upper,0.0094238795394333 +illusion_1L,sr,28,8.4,alpha,lower,0.0094238795394333 +illusion_1L,sr,29,8.7,alpha,front,-0.02648315658823949 +illusion_1L,sr,29,8.7,alpha,upper,0.011444189730652629 +illusion_1L,sr,29,8.7,alpha,lower,0.011444189730652629 +illusion_1L,sr,30,9.0,alpha,front,-0.030663911720353404 +illusion_1L,sr,30,9.0,alpha,upper,0.012904107953483986 +illusion_1L,sr,30,9.0,alpha,lower,0.012904107953483986 +illusion_1L,sr,31,9.3,alpha,front,-0.03358018135293955 +illusion_1L,sr,31,9.3,alpha,upper,0.013866000011124481 +illusion_1L,sr,31,9.3,alpha,lower,0.013866000011124481 +illusion_1L,sr,32,9.6,alpha,front,-0.035319917640542625 +illusion_1L,sr,32,9.6,alpha,upper,0.014456259686202205 +illusion_1L,sr,32,9.6,alpha,lower,0.014456259686202205 +illusion_1L,sr,33,9.9,alpha,front,-0.03378842868125356 +illusion_1L,sr,33,9.9,alpha,upper,0.013180496195818486 +illusion_1L,sr,33,9.9,alpha,lower,0.013180496195818486 +illusion_1L,sr,34,10.2,alpha,front,-0.030069366329296188 +illusion_1L,sr,34,10.2,alpha,upper,0.010871982034710903 +illusion_1L,sr,34,10.2,alpha,lower,0.010871982034710903 +illusion_1L,sr,35,10.5,alpha,front,-0.025205795840661127 +illusion_1L,sr,35,10.5,alpha,upper,0.00829108702873256 +illusion_1L,sr,35,10.5,alpha,lower,0.00829108702873256 +illusion_1L,sr,36,10.8,alpha,front,-0.0182796447593441 +illusion_1L,sr,36,10.8,alpha,upper,0.004702609560569754 +illusion_1L,sr,36,10.8,alpha,lower,0.004702609560569754 +illusion_1L,sr,37,11.1,alpha,front,-0.011671472329057561 +illusion_1L,sr,37,11.1,alpha,upper,0.0017584140531559794 +illusion_1L,sr,37,11.1,alpha,lower,0.0017584140531559794 +illusion_1L,sr,38,11.4,alpha,front,-0.0062729940497162915 +illusion_1L,sr,38,11.4,alpha,upper,-2.051268939673445e-05 +illusion_1L,sr,38,11.4,alpha,lower,-2.051268939673445e-05 +illusion_1L,sr,39,11.7,alpha,front,0.00012457713398835585 +illusion_1L,sr,39,11.7,alpha,upper,-0.0024148382920210383 +illusion_1L,sr,39,11.7,alpha,lower,-0.0024148382920210383 +illusion_1L,sr,40,12.0,alpha,front,0.005412577569007035 +illusion_1L,sr,40,12.0,alpha,upper,-0.004005326793750376 +illusion_1L,sr,40,12.0,alpha,lower,-0.004005326793750376 +illusion_1L,sr,41,12.3,alpha,front,0.010440933769279709 +illusion_1L,sr,41,12.3,alpha,upper,-0.0055385569951005645 +illusion_1L,sr,41,12.3,alpha,lower,-0.0055385569951005645 +illusion_1L,sr,42,12.6,alpha,front,0.016218070946359305 +illusion_1L,sr,42,12.6,alpha,upper,-0.007854755368002037 +illusion_1L,sr,42,12.6,alpha,lower,-0.007854755368002037 +illusion_1L,sr,43,12.9,alpha,front,0.020309925149829405 +illusion_1L,sr,43,12.9,alpha,upper,-0.009230302982415811 +illusion_1L,sr,43,12.9,alpha,lower,-0.009230302982415811 +illusion_1L,sr,44,13.2,alpha,front,0.024074717390375686 +illusion_1L,sr,44,13.2,alpha,upper,-0.010727083135239512 +illusion_1L,sr,44,13.2,alpha,lower,-0.010727083135239512 +illusion_1L,sr,45,13.5,alpha,front,0.027239572315311062 +illusion_1L,sr,45,13.5,alpha,upper,-0.012185040928138768 +illusion_1L,sr,45,13.5,alpha,lower,-0.012185040928138768 +illusion_1L,sr,46,13.8,alpha,front,0.026692014964049965 +illusion_1L,sr,46,13.8,alpha,upper,-0.011340008668710863 +illusion_1L,sr,46,13.8,alpha,lower,-0.011340008668710863 +illusion_1L,sr,47,14.1,alpha,front,0.02534145517132605 +illusion_1L,sr,47,14.1,alpha,upper,-0.010368077044161927 +illusion_1L,sr,47,14.1,alpha,lower,-0.010368077044161927 +illusion_1L,sr,48,14.4,alpha,front,0.022070911837482776 +illusion_1L,sr,48,14.4,alpha,upper,-0.008442672596985265 +illusion_1L,sr,48,14.4,alpha,lower,-0.008442672596985265 +illusion_1L,sr,49,14.7,alpha,front,0.01693520811237502 +illusion_1L,sr,49,14.7,alpha,upper,-0.005576571550013315 +illusion_1L,sr,49,14.7,alpha,lower,-0.005576571550013315 +illusion_1L,sr,50,15.0,alpha,front,0.01184430232557887 +illusion_1L,sr,50,15.0,alpha,upper,-0.003112518680122661 +illusion_1L,sr,50,15.0,alpha,lower,-0.003112518680122661 +illusion_1L,sr,51,15.3,alpha,front,0.006613274958122445 +illusion_1L,sr,51,15.3,alpha,upper,-0.0008191056885453462 +illusion_1L,sr,51,15.3,alpha,lower,-0.0008191056885453462 +illusion_1L,sr,52,15.6,alpha,front,0.0007515840447487043 +illusion_1L,sr,52,15.6,alpha,upper,0.0017802203834537712 +illusion_1L,sr,52,15.6,alpha,lower,0.0017802203834537712 +illusion_1L,sr,53,15.9,alpha,front,-0.0036572432316803777 +illusion_1L,sr,53,15.9,alpha,upper,0.003258412194203521 +illusion_1L,sr,53,15.9,alpha,lower,0.003258412194203521 +illusion_1L,sr,54,16.2,alpha,front,-0.008143224519605419 +illusion_1L,sr,54,16.2,alpha,upper,0.004849610708380242 +illusion_1L,sr,54,16.2,alpha,lower,0.004849610708380242 +illusion_1L,sr,55,16.5,alpha,front,-0.012968732329433061 +illusion_1L,sr,55,16.5,alpha,upper,0.006830071096830939 +illusion_1L,sr,55,16.5,alpha,lower,0.006830071096830939 +illusion_1L,sr,56,16.8,alpha,front,-0.016738173300644733 +illusion_1L,sr,56,16.8,alpha,upper,0.008229883935331764 +illusion_1L,sr,56,16.8,alpha,lower,0.008229883935331764 +illusion_1L,sr,57,17.1,alpha,front,-0.020167387786797455 +illusion_1L,sr,57,17.1,alpha,upper,0.00962578579607977 +illusion_1L,sr,57,17.1,alpha,lower,0.00962578579607977 +illusion_1L,sr,58,17.4,alpha,front,-0.022389073736079124 +illusion_1L,sr,58,17.4,alpha,upper,0.010420823134351886 +illusion_1L,sr,58,17.4,alpha,lower,0.010420823134351886 +illusion_1L,sr,59,17.7,alpha,front,-0.022929420239348366 +illusion_1L,sr,59,17.7,alpha,upper,0.010300990444055455 +illusion_1L,sr,59,17.7,alpha,lower,0.010300990444055455 +illusion_1L,sr,60,18.0,alpha,front,-0.021846776305819576 +illusion_1L,sr,60,18.0,alpha,upper,0.009334177575867575 +illusion_1L,sr,60,18.0,alpha,lower,0.009334177575867575 +illusion_1L,sr,61,18.3,alpha,front,-0.019960678214437574 +illusion_1L,sr,61,18.3,alpha,upper,0.008138291838482248 +illusion_1L,sr,61,18.3,alpha,lower,0.008138291838482248 +illusion_1L,sr,62,18.6,alpha,front,-0.016702273139401327 +illusion_1L,sr,62,18.6,alpha,upper,0.006273478441957942 +illusion_1L,sr,62,18.6,alpha,lower,0.006273478441957942 +illusion_1L,sr,63,18.9,alpha,front,-0.012972783359849152 +illusion_1L,sr,63,18.9,alpha,upper,0.00436481863336749 +illusion_1L,sr,63,18.9,alpha,lower,0.00436481863336749 +illusion_1L,sr,64,19.2,alpha,front,-0.008902967757674421 +illusion_1L,sr,64,19.2,alpha,upper,0.0024469159809488925 +illusion_1L,sr,64,19.2,alpha,lower,0.0024469159809488925 +illusion_1L,sr,65,19.5,alpha,front,-0.004865784999259146 +illusion_1L,sr,65,19.5,alpha,upper,0.000718503888770157 +illusion_1L,sr,65,19.5,alpha,lower,0.000718503888770157 +illusion_1L,sr,66,19.8,alpha,front,-0.0008455755143178223 +illusion_1L,sr,66,19.8,alpha,upper,-0.0009120418935928513 +illusion_1L,sr,66,19.8,alpha,lower,-0.0009120418935928513 +illusion_1L,sr,67,20.1,alpha,front,0.0028558420404546877 +illusion_1L,sr,67,20.1,alpha,upper,-0.002300358539393236 +illusion_1L,sr,67,20.1,alpha,lower,-0.002300358539393236 +illusion_1L,sr,68,20.4,alpha,front,0.006526370687965002 +illusion_1L,sr,68,20.4,alpha,upper,-0.0037287645939832123 +illusion_1L,sr,68,20.4,alpha,lower,-0.0037287645939832123 +illusion_1L,sr,69,20.7,alpha,front,0.010243186456071147 +illusion_1L,sr,69,20.7,alpha,upper,-0.005306841853915306 +illusion_1L,sr,69,20.7,alpha,lower,-0.005306841853915306 +illusion_1L,sr,70,21.0,alpha,front,0.01285082269613317 +illusion_1L,sr,70,21.0,alpha,upper,-0.006228514230403083 +illusion_1L,sr,70,21.0,alpha,lower,-0.006228514230403083 +illusion_1L,sr,71,21.3,alpha,front,0.014965400554896481 +illusion_1L,sr,71,21.3,alpha,upper,-0.006991416784681493 +illusion_1L,sr,71,21.3,alpha,lower,-0.006991416784681493 +illusion_1L,sr,72,21.6,alpha,front,0.01607616163309905 +illusion_1L,sr,72,21.6,alpha,upper,-0.007251414120379961 +illusion_1L,sr,72,21.6,alpha,lower,-0.007251414120379961 +illusion_1L,sr,73,21.9,alpha,front,0.015651475017061073 +illusion_1L,sr,73,21.9,alpha,upper,-0.006650068713330695 +illusion_1L,sr,73,21.9,alpha,lower,-0.006650068713330695 +illusion_1L,sr,74,22.2,alpha,front,0.014564047587372828 +illusion_1L,sr,74,22.2,alpha,upper,-0.005845335905112943 +illusion_1L,sr,74,22.2,alpha,lower,-0.005845335905112943 +illusion_1L,sr,75,22.5,alpha,front,0.012829431126282155 +illusion_1L,sr,75,22.5,alpha,upper,-0.004843400166154609 +illusion_1L,sr,75,22.5,alpha,lower,-0.004843400166154609 +illusion_1L,sr,76,22.8,alpha,front,0.010174137381711912 +illusion_1L,sr,76,22.8,alpha,upper,-0.0034252979311153245 +illusion_1L,sr,76,22.8,alpha,lower,-0.0034252979311153245 +illusion_1L,sr,77,23.1,alpha,front,0.0077837937524408716 +illusion_1L,sr,77,23.1,alpha,upper,-0.0024183277123661917 +illusion_1L,sr,77,23.1,alpha,lower,-0.0024183277123661917 +illusion_1L,sr,78,23.4,alpha,front,0.0049453687389887785 +illusion_1L,sr,78,23.4,alpha,upper,-0.0012410404168137212 +illusion_1L,sr,78,23.4,alpha,lower,-0.0012410404168137212 +illusion_1L,sr,79,23.7,alpha,front,0.001364018704451346 +illusion_1L,sr,79,23.7,alpha,upper,0.0003795848506071217 +illusion_1L,sr,79,23.7,alpha,lower,0.0003795848506071217 +illusion_1L,sr,80,24.0,alpha,front,-0.0012108232580153979 +illusion_1L,sr,80,24.0,alpha,upper,0.0012104767031950268 +illusion_1L,sr,80,24.0,alpha,lower,0.0012104767031950268 +illusion_1L,sr,81,24.3,alpha,front,-0.004015062718913255 +illusion_1L,sr,81,24.3,alpha,upper,0.0022229842983546586 +illusion_1L,sr,81,24.3,alpha,lower,0.0022229842983546586 +illusion_1L,sr,82,24.6,alpha,front,-0.007242814010691229 +illusion_1L,sr,82,24.6,alpha,upper,0.003609666093224162 +illusion_1L,sr,82,24.6,alpha,lower,0.003609666093224162 +illusion_1L,sr,83,24.9,alpha,front,-0.009066378913754829 +illusion_1L,sr,83,24.9,alpha,upper,0.004065733728518359 +illusion_1L,sr,83,24.9,alpha,lower,0.004065733728518359 +illusion_1L,sr,84,25.2,alpha,front,-0.011005720139582092 +illusion_1L,sr,84,25.2,alpha,upper,0.004754229241190455 +illusion_1L,sr,84,25.2,alpha,lower,0.004754229241190455 +illusion_1L,sr,85,25.5,alpha,front,-0.012792340458077233 +illusion_1L,sr,85,25.5,alpha,upper,0.0055113309514728676 +illusion_1L,sr,85,25.5,alpha,lower,0.0055113309514728676 +illusion_1L,sr,86,25.8,alpha,front,-0.013047608261146522 +illusion_1L,sr,86,25.8,alpha,upper,0.0053449880496344235 +illusion_1L,sr,86,25.8,alpha,lower,0.0053449880496344235 +illusion_1L,sr,87,26.1,alpha,front,-0.013048566215868168 +illusion_1L,sr,87,26.1,alpha,upper,0.005216918888660431 +illusion_1L,sr,87,26.1,alpha,lower,0.005216918888660431 +illusion_1L,sr,88,26.4,alpha,front,-0.012068930698197616 +illusion_1L,sr,88,26.4,alpha,upper,0.004598318277575397 +illusion_1L,sr,88,26.4,alpha,lower,0.004598318277575397 +illusion_1L,sr,89,26.7,alpha,front,-0.010476107848018668 +illusion_1L,sr,89,26.7,alpha,upper,0.0037551551419840383 +illusion_1L,sr,89,26.7,alpha,lower,0.0037551551419840383 +illusion_1L,sr,90,27.0,alpha,front,-0.008720222665590277 +illusion_1L,sr,90,27.0,alpha,upper,0.0029905927389100445 +illusion_1L,sr,90,27.0,alpha,lower,0.0029905927389100445 +illusion_1L,sr,91,27.3,alpha,front,-0.006457835552341369 +illusion_1L,sr,91,27.3,alpha,upper,0.0020159928636166585 +illusion_1L,sr,91,27.3,alpha,lower,0.0020159928636166585 +illusion_1L,sr,92,27.6,alpha,front,-0.0038409232577910762 +illusion_1L,sr,92,27.6,alpha,upper,0.0009006756927620527 +illusion_1L,sr,92,27.6,alpha,lower,0.0009006756927620527 +illusion_1L,sr,93,27.9,alpha,front,-0.001896499675277153 +illusion_1L,sr,93,27.9,alpha,upper,0.0003537098153245013 +illusion_1L,sr,93,27.9,alpha,lower,0.0003537098153245013 +illusion_1L,sr,94,28.2,alpha,front,0.00038751846787832056 +illusion_1L,sr,94,28.2,alpha,upper,-0.0004225580490770894 +illusion_1L,sr,94,28.2,alpha,lower,-0.0004225580490770894 +illusion_1L,sr,95,28.5,alpha,front,0.0025958136861171377 +illusion_1L,sr,95,28.5,alpha,upper,-0.0011681953258078897 +illusion_1L,sr,95,28.5,alpha,lower,-0.0011681953258078897 +illusion_1L,sr,96,28.8,alpha,front,0.004440465849380033 +illusion_1L,sr,96,28.8,alpha,upper,-0.0017131925723739008 +illusion_1L,sr,96,28.8,alpha,lower,-0.0017131925723739008 +illusion_1L,sr,97,29.1,alpha,front,0.006520939568641422 +illusion_1L,sr,97,29.1,alpha,upper,-0.0025385972785585825 +illusion_1L,sr,97,29.1,alpha,lower,-0.0025385972785585825 +illusion_1L,sr,98,29.4,alpha,front,0.008361070618313635 +illusion_1L,sr,98,29.4,alpha,upper,-0.003322313464069103 +illusion_1L,sr,98,29.4,alpha,lower,-0.003322313464069103 +illusion_1L,sr,99,29.7,alpha,front,0.009260996291811069 +illusion_1L,sr,99,29.7,alpha,upper,-0.0035733314012312 +illusion_1L,sr,99,29.7,alpha,lower,-0.0035733314012312 +illusion_1L,sr,100,30.0,alpha,front,0.009852059117454327 +illusion_1L,sr,100,30.0,alpha,upper,-0.003779439693785684 +illusion_1L,sr,100,30.0,alpha,lower,-0.003779439693785684 +illusion_1L,sr,101,30.3,alpha,front,0.009932855029386276 +illusion_1L,sr,101,30.3,alpha,upper,-0.0038019001910542384 +illusion_1L,sr,101,30.3,alpha,lower,-0.0038019001910542384 +illusion_1L,sr,102,30.6,alpha,front,0.008936162125815703 +illusion_1L,sr,102,30.6,alpha,upper,-0.003223416619808142 +illusion_1L,sr,102,30.6,alpha,lower,-0.003223416619808142 +illusion_1L,sr,103,30.9,alpha,front,0.007501841639159692 +illusion_1L,sr,103,30.9,alpha,upper,-0.0025089632510987767 +illusion_1L,sr,103,30.9,alpha,lower,-0.0025089632510987767 +illusion_1L,sr,104,31.2,alpha,front,0.006597950724544777 +illusion_1L,sr,104,31.2,alpha,upper,-0.0023513867541190628 +illusion_1L,sr,104,31.2,alpha,lower,-0.0023513867541190628 +illusion_1L,sr,105,31.5,alpha,front,0.004842109524412001 +illusion_1L,sr,105,31.5,alpha,upper,-0.0016910129121926187 +illusion_1L,sr,105,31.5,alpha,lower,-0.0016910129121926187 +illusion_1L,sr,106,31.8,alpha,front,0.003048533693530149 +illusion_1L,sr,106,31.8,alpha,upper,-0.001090976470650826 +illusion_1L,sr,106,31.8,alpha,lower,-0.001090976470650826 +illusion_1L,sr,107,32.1,alpha,front,0.0019007643086286939 +illusion_1L,sr,107,32.1,alpha,upper,-0.0010127505171984809 +illusion_1L,sr,107,32.1,alpha,lower,-0.0010127505171984809 +illusion_1L,sr,108,32.4,alpha,front,-9.937180715689515e-05 +illusion_1L,sr,108,32.4,alpha,upper,-0.00030616147145314226 +illusion_1L,sr,108,32.4,alpha,lower,-0.00030616147145314226 +illusion_1L,sr,109,32.7,alpha,front,-0.001805088761646905 +illusion_1L,sr,109,32.7,alpha,upper,0.00021823698716989627 +illusion_1L,sr,109,32.7,alpha,lower,0.00021823698716989627 +illusion_1L,sr,110,33.0,alpha,front,-0.003067978967345751 +illusion_1L,sr,110,33.0,alpha,upper,0.0004880992711134985 +illusion_1L,sr,110,33.0,alpha,lower,0.0004880992711134985 +illusion_1L,sr,111,33.3,alpha,front,-0.005157169050592325 +illusion_1L,sr,111,33.3,alpha,upper,0.0014698239157786772 +illusion_1L,sr,111,33.3,alpha,lower,0.0014698239157786772 +illusion_1L,sr,112,33.6,alpha,front,-0.006629246238861969 +illusion_1L,sr,112,33.6,alpha,upper,0.0021200720904884438 +illusion_1L,sr,112,33.6,alpha,lower,0.0021200720904884438 +illusion_1L,sr,113,33.9,alpha,front,-0.007195927715606975 +illusion_1L,sr,113,33.9,alpha,upper,0.0022481231149466124 +illusion_1L,sr,113,33.9,alpha,lower,0.0022481231149466124 +illusion_1L,sr,114,34.2,alpha,front,-0.008469336260732721 +illusion_1L,sr,114,34.2,alpha,upper,0.0030578851757650377 +illusion_1L,sr,114,34.2,alpha,lower,0.0030578851757650377 +illusion_1L,sr,115,34.5,alpha,front,-0.008496123884246629 +illusion_1L,sr,115,34.5,alpha,upper,0.0031104323720839364 +illusion_1L,sr,115,34.5,alpha,lower,0.0031104323720839364 +illusion_1L,sr,116,34.8,alpha,front,-0.007990165735801302 +illusion_1L,sr,116,34.8,alpha,upper,0.002933471781005524 +illusion_1L,sr,116,34.8,alpha,lower,0.002933471781005524 +illusion_1L,sr,117,35.1,alpha,front,-0.00806982873518327 +illusion_1L,sr,117,35.1,alpha,upper,0.003338384656168342 +illusion_1L,sr,117,35.1,alpha,lower,0.003338384656168342 +illusion_1L,sr,118,35.4,alpha,front,-0.006916757707721585 +illusion_1L,sr,118,35.4,alpha,upper,0.0029595870157882835 +illusion_1L,sr,118,35.4,alpha,lower,0.0029595870157882835 +illusion_1L,sr,119,35.7,alpha,front,-0.005569674786873306 +illusion_1L,sr,119,35.7,alpha,upper,0.002536210314459591 +illusion_1L,sr,119,35.7,alpha,lower,0.002536210314459591 +illusion_1L,sr,120,36.0,alpha,front,-0.004940276108482524 +illusion_1L,sr,120,36.0,alpha,upper,0.002705858210889464 +illusion_1L,sr,120,36.0,alpha,lower,0.002705858210889464 +illusion_1L,sr,121,36.3,alpha,front,-0.0030829499412820607 +illusion_1L,sr,121,36.3,alpha,upper,0.0019961602918287177 +illusion_1L,sr,121,36.3,alpha,lower,0.0019961602918287177 +illusion_1L,sr,122,36.6,alpha,front,-0.0012338953922570242 +illusion_1L,sr,122,36.6,alpha,upper,0.0012877807157222797 +illusion_1L,sr,122,36.6,alpha,lower,0.0012877807157222797 +illusion_1L,sr,123,36.9,alpha,front,-0.0001459631842398411 +illusion_1L,sr,123,36.9,alpha,upper,0.0011057931901165639 +illusion_1L,sr,123,36.9,alpha,lower,0.0011057931901165639 +illusion_1L,sr,124,37.2,alpha,front,0.002137512407650116 +illusion_1L,sr,124,37.2,alpha,upper,-2.4130832121074114e-05 +illusion_1L,sr,124,37.2,alpha,lower,-2.4130832121074114e-05 +illusion_1L,sr,125,37.5,alpha,front,0.0037242438244456805 +illusion_1L,sr,125,37.5,alpha,upper,-0.0007283171563150781 +illusion_1L,sr,125,37.5,alpha,lower,-0.0007283171563150781 +illusion_1L,sr,126,37.8,alpha,front,0.004591127008666672 +illusion_1L,sr,126,37.8,alpha,upper,-0.001013389858952985 +illusion_1L,sr,126,37.8,alpha,lower,-0.001013389858952985 +illusion_1L,sr,127,38.1,alpha,front,0.0061357649848574405 +illusion_1L,sr,127,38.1,alpha,upper,-0.0019299275896302592 +illusion_1L,sr,127,38.1,alpha,lower,-0.0019299275896302592 +illusion_1L,sr,128,38.4,alpha,front,0.006758741353390697 +illusion_1L,sr,128,38.4,alpha,upper,-0.0023072428833923603 +illusion_1L,sr,128,38.4,alpha,lower,-0.0023072428833923603 +illusion_1L,sr,129,38.7,alpha,front,0.00667381986559388 +illusion_1L,sr,129,38.7,alpha,upper,-0.0023077819594107055 +illusion_1L,sr,129,38.7,alpha,lower,-0.0023077819594107055 +illusion_1L,sr,130,39.0,alpha,front,0.00722781174562024 +illusion_1L,sr,130,39.0,alpha,upper,-0.002922371222366719 +illusion_1L,sr,130,39.0,alpha,lower,-0.002922371222366719 +illusion_1L,sr,131,39.3,alpha,front,0.006728607582168068 +illusion_1L,sr,131,39.3,alpha,upper,-0.0028869675503347576 +illusion_1L,sr,131,39.3,alpha,lower,-0.0028869675503347576 +illusion_1L,sr,132,39.6,alpha,front,0.0059597762010065065 +illusion_1L,sr,132,39.6,alpha,upper,-0.0027603181408377628 +illusion_1L,sr,132,39.6,alpha,lower,-0.0027603181408377628 +illusion_1L,sr,133,39.9,alpha,front,0.005415277872066755 +illusion_1L,sr,133,39.9,alpha,upper,-0.002879939767411986 +illusion_1L,sr,133,39.9,alpha,lower,-0.002879939767411986 +illusion_1L,sr,134,40.2,alpha,front,0.003990233586398796 +illusion_1L,sr,134,40.2,alpha,upper,-0.0023999033072192553 +illusion_1L,sr,134,40.2,alpha,lower,-0.0023999033072192553 +illusion_1L,sr,135,40.5,alpha,front,0.002375847750999809 +illusion_1L,sr,135,40.5,alpha,upper,-0.0018010620354445641 +illusion_1L,sr,135,40.5,alpha,lower,-0.0018010620354445641 +illusion_1L,sr,136,40.8,alpha,front,0.0010636801670539792 +illusion_1L,sr,136,40.8,alpha,upper,-0.0014183382607038785 +illusion_1L,sr,136,40.8,alpha,lower,-0.0014183382607038785 +illusion_1L,sr,137,41.1,alpha,front,-0.0008700166402941454 +illusion_1L,sr,137,41.1,alpha,upper,-0.0005415176496520371 +illusion_1L,sr,137,41.1,alpha,lower,-0.0005415176496520371 +illusion_1L,sr,138,41.4,alpha,front,-0.002685235754066019 +illusion_1L,sr,138,41.4,alpha,upper,0.0003061325646000375 +illusion_1L,sr,138,41.4,alpha,lower,0.0003061325646000375 +illusion_1L,sr,139,41.7,alpha,front,-0.00391220855629483 +illusion_1L,sr,139,41.7,alpha,upper,0.0008006063282523443 +illusion_1L,sr,139,41.7,alpha,lower,0.0008006063282523443 +illusion_1L,sr,140,42.0,alpha,front,-0.005309456021480134 +illusion_1L,sr,140,42.0,alpha,upper,0.0015245981156272528 +illusion_1L,sr,140,42.0,alpha,lower,0.0015245981156272528 +illusion_1L,sr,141,42.3,alpha,front,-0.006290913702041648 +illusion_1L,sr,141,42.3,alpha,upper,0.0020613680013286534 +illusion_1L,sr,141,42.3,alpha,lower,0.0020613680013286534 +illusion_1L,sr,142,42.6,alpha,front,-0.006548832226960982 +illusion_1L,sr,142,42.6,alpha,upper,0.002194895294783644 +illusion_1L,sr,142,42.6,alpha,lower,0.002194895294783644 +illusion_1L,sr,143,42.9,alpha,front,-0.0071339865913271835 +illusion_1L,sr,143,42.9,alpha,upper,0.0027054754294290086 +illusion_1L,sr,143,42.9,alpha,lower,0.0027054754294290086 +illusion_1L,sr,144,43.2,alpha,front,-0.006660688492038845 +illusion_1L,sr,144,43.2,alpha,upper,0.00256178584643868 +illusion_1L,sr,144,43.2,alpha,lower,0.00256178584643868 +illusion_1L,sr,145,43.5,alpha,front,-0.005469048976977184 +illusion_1L,sr,145,43.5,alpha,upper,0.002011489117470136 +illusion_1L,sr,145,43.5,alpha,lower,0.002011489117470136 +illusion_1L,sr,146,43.8,alpha,front,-0.004885113585348943 +illusion_1L,sr,146,43.8,alpha,upper,0.002013710007241872 +illusion_1L,sr,146,43.8,alpha,lower,0.002013710007241872 +illusion_1L,sr,147,44.1,alpha,front,-0.0035642591402764504 +illusion_1L,sr,147,44.1,alpha,upper,0.0015515530154442871 +illusion_1L,sr,147,44.1,alpha,lower,0.0015515530154442871 +illusion_1L,sr,148,44.4,alpha,front,-0.0019263136116740257 +illusion_1L,sr,148,44.4,alpha,upper,0.0009080846723883507 +illusion_1L,sr,148,44.4,alpha,lower,0.0009080846723883507 +illusion_1L,sr,149,44.7,alpha,front,-0.0013782401878778892 +illusion_1L,sr,149,44.7,alpha,upper,0.0010903861893186702 +illusion_1L,sr,149,44.7,alpha,lower,0.0010903861893186702 +illusion_1L,sr,150,45.0,alpha,front,4.239187896649607e-05 +illusion_1L,sr,150,45.0,alpha,upper,0.000615625725775672 +illusion_1L,sr,150,45.0,alpha,lower,0.000615625725775672 +illusion_1L,sr,151,45.3,alpha,front,0.0016200572101035295 +illusion_1L,sr,151,45.3,alpha,upper,-1.599030981594418e-05 +illusion_1L,sr,151,45.3,alpha,lower,-1.599030981594418e-05 +illusion_1L,sr,152,45.6,alpha,front,0.002182290307833349 +illusion_1L,sr,152,45.6,alpha,upper,3.661512293024957e-05 +illusion_1L,sr,152,45.6,alpha,lower,3.661512293024957e-05 +illusion_1L,sr,153,45.9,alpha,front,0.0037898009749585126 +illusion_1L,sr,153,45.9,alpha,upper,-0.0007721500653805682 +illusion_1L,sr,153,45.9,alpha,lower,-0.0007721500653805682 +illusion_1L,sr,154,46.2,alpha,front,0.004875996814269638 +illusion_1L,sr,154,46.2,alpha,upper,-0.0013001299302672388 +illusion_1L,sr,154,46.2,alpha,lower,-0.0013001299302672388 +illusion_1L,sr,155,46.5,alpha,front,0.004811195786785488 +illusion_1L,sr,155,46.5,alpha,upper,-0.001097437002233359 +illusion_1L,sr,155,46.5,alpha,lower,-0.001097437002233359 +illusion_1L,sr,156,46.8,alpha,front,0.005535257152816261 +illusion_1L,sr,156,46.8,alpha,upper,-0.0016060511940425154 +illusion_1L,sr,156,46.8,alpha,lower,-0.0016060511940425154 +illusion_1L,sr,157,47.1,alpha,front,0.005264875221114282 +illusion_1L,sr,157,47.1,alpha,upper,-0.0015096244988193758 +illusion_1L,sr,157,47.1,alpha,lower,-0.0015096244988193758 +illusion_1L,sr,158,47.4,alpha,front,0.004400023535099905 +illusion_1L,sr,158,47.4,alpha,upper,-0.0011010932263521775 +illusion_1L,sr,158,47.4,alpha,lower,-0.0011010932263521775 +illusion_1L,sr,159,47.7,alpha,front,0.004220898516881122 +illusion_1L,sr,159,47.7,alpha,upper,-0.0013119605804831104 +illusion_1L,sr,159,47.7,alpha,lower,-0.0013119605804831104 +illusion_1L,sr,160,48.0,alpha,front,0.0034810936904912763 +illusion_1L,sr,160,48.0,alpha,upper,-0.0012026731080879774 +illusion_1L,sr,160,48.0,alpha,lower,-0.0012026731080879774 +illusion_1L,sr,161,48.3,alpha,front,0.0023128345868504464 +illusion_1L,sr,161,48.3,alpha,upper,-0.0008453762520030678 +illusion_1L,sr,161,48.3,alpha,lower,-0.0008453762520030678 +illusion_1L,sr,162,48.6,alpha,front,0.002088793275921948 +illusion_1L,sr,162,48.6,alpha,upper,-0.0012249272638722567 +illusion_1L,sr,162,48.6,alpha,lower,-0.0012249272638722567 +illusion_1L,sr,163,48.9,alpha,front,0.0010332186263796953 +illusion_1L,sr,163,48.9,alpha,upper,-0.000999326395595748 +illusion_1L,sr,163,48.9,alpha,lower,-0.000999326395595748 +illusion_1L,sr,164,49.2,alpha,front,-0.00023890408420173742 +illusion_1L,sr,164,49.2,alpha,upper,-0.0005939317845795027 +illusion_1L,sr,164,49.2,alpha,lower,-0.0005939317845795027 +illusion_1L,sr,165,49.5,alpha,front,-0.0009285513237829411 +illusion_1L,sr,165,49.5,alpha,upper,-0.0005747616707863536 +illusion_1L,sr,165,49.5,alpha,lower,-0.0005747616707863536 +illusion_1L,sr,166,49.8,alpha,front,-0.0024808076421617316 +illusion_1L,sr,166,49.8,alpha,upper,0.00014688252634205076 +illusion_1L,sr,166,49.8,alpha,lower,0.00014688252634205076 +illusion_1L,sr,167,50.1,alpha,front,-0.0034460191742148732 +illusion_1L,sr,167,50.1,alpha,upper,0.000517602457565023 +illusion_1L,sr,167,50.1,alpha,lower,0.000517602457565023 +illusion_1L,sr,168,50.4,alpha,front,-0.0038759303181113915 +illusion_1L,sr,168,50.4,alpha,upper,0.0005927220401673455 +illusion_1L,sr,168,50.4,alpha,lower,0.0005927220401673455 +illusion_1L,sr,169,50.7,alpha,front,-0.004751043726531928 +illusion_1L,sr,169,50.7,alpha,upper,0.001108666317829271 +illusion_1L,sr,169,50.7,alpha,lower,0.001108666317829271 +illusion_1L,sr,170,51.0,alpha,front,-0.004821353385815151 +illusion_1L,sr,170,51.0,alpha,upper,0.0011506676919151165 +illusion_1L,sr,170,51.0,alpha,lower,0.0011506676919151165 +illusion_1L,sr,171,51.3,alpha,front,-0.0043372177009758095 +illusion_1L,sr,171,51.3,alpha,upper,0.0009059190589618267 +illusion_1L,sr,171,51.3,alpha,lower,0.0009059190589618267 +illusion_1L,sr,172,51.6,alpha,front,-0.004370745525079323 +illusion_1L,sr,172,51.6,alpha,upper,0.0011624429758284455 +illusion_1L,sr,172,51.6,alpha,lower,0.0011624429758284455 +illusion_1L,sr,173,51.9,alpha,front,-0.0036814151929815513 +illusion_1L,sr,173,51.9,alpha,upper,0.0009904704420002665 +illusion_1L,sr,173,51.9,alpha,lower,0.0009904704420002665 +illusion_1L,sr,174,52.2,alpha,front,-0.0028308055708644933 +illusion_1L,sr,174,52.2,alpha,upper,0.0007860171291118878 +illusion_1L,sr,174,52.2,alpha,lower,0.0007860171291118878 +illusion_1L,sr,175,52.5,alpha,front,-0.0026957888758394073 +illusion_1L,sr,175,52.5,alpha,upper,0.0011737559840468547 +illusion_1L,sr,175,52.5,alpha,lower,0.0011737559840468547 +illusion_1L,sr,176,52.8,alpha,front,-0.0019133573149437203 +illusion_1L,sr,176,52.8,alpha,upper,0.0011165512280934368 +illusion_1L,sr,176,52.8,alpha,lower,0.0011165512280934368 +illusion_1L,sr,177,53.1,alpha,front,-0.0010107007502023055 +illusion_1L,sr,177,53.1,alpha,upper,0.0009767877307817851 +illusion_1L,sr,177,53.1,alpha,lower,0.0009767877307817851 +illusion_1L,sr,178,53.4,alpha,front,-0.00037137751632635753 +illusion_1L,sr,178,53.4,alpha,upper,0.0010115154188573353 +illusion_1L,sr,178,53.4,alpha,lower,0.0010115154188573353 +illusion_1L,sr,179,53.7,alpha,front,0.0010534393087795711 +illusion_1L,sr,179,53.7,alpha,upper,0.00042267589882559985 +illusion_1L,sr,179,53.7,alpha,lower,0.00042267589882559985 +illusion_1L,sr,180,54.0,alpha,front,0.0020370089224083614 +illusion_1L,sr,180,54.0,alpha,upper,9.83901764571582e-05 +illusion_1L,sr,180,54.0,alpha,lower,9.83901764571582e-05 +illusion_1L,sr,181,54.3,alpha,front,0.002693639928882177 +illusion_1L,sr,181,54.3,alpha,upper,-6.573354958020611e-05 +illusion_1L,sr,181,54.3,alpha,lower,-6.573354958020611e-05 +illusion_1L,sr,182,54.6,alpha,front,0.0036653853961889846 +illusion_1L,sr,182,54.6,alpha,upper,-0.0005579271642109501 +illusion_1L,sr,182,54.6,alpha,lower,-0.0005579271642109501 +illusion_1L,sr,183,54.9,alpha,front,0.004202632038389012 +illusion_1L,sr,183,54.9,alpha,upper,-0.0008352862080471396 +illusion_1L,sr,183,54.9,alpha,lower,-0.0008352862080471396 +illusion_1L,sr,184,55.2,alpha,front,0.00397523518737352 +illusion_1L,sr,184,55.2,alpha,upper,-0.0006626469724396629 +illusion_1L,sr,184,55.2,alpha,lower,-0.0006626469724396629 +illusion_1L,sr,185,55.5,alpha,front,0.0040656156813330055 +illusion_1L,sr,185,55.5,alpha,upper,-0.0008436373170127403 +illusion_1L,sr,185,55.5,alpha,lower,-0.0008436373170127403 +illusion_1L,sr,186,55.8,alpha,front,0.003943546864617606 +illusion_1L,sr,186,55.8,alpha,upper,-0.000980689027179238 +illusion_1L,sr,186,55.8,alpha,lower,-0.000980689027179238 +illusion_1L,sr,187,56.1,alpha,front,0.003175061941402057 +illusion_1L,sr,187,56.1,alpha,upper,-0.0007395892982079363 +illusion_1L,sr,187,56.1,alpha,lower,-0.0007395892982079363 +illusion_1L,sr,188,56.4,alpha,front,0.002977223212018036 +illusion_1L,sr,188,56.4,alpha,upper,-0.0010027604715865512 +illusion_1L,sr,188,56.4,alpha,lower,-0.0010027604715865512 +illusion_1L,sr,189,56.7,alpha,front,0.0026004078277014012 +illusion_1L,sr,189,56.7,alpha,upper,-0.0011905621333600774 +illusion_1L,sr,189,56.7,alpha,lower,-0.0011905621333600774 +illusion_1L,sr,190,57.0,alpha,front,0.0016797890145183168 +illusion_1L,sr,190,57.0,alpha,upper,-0.0010088154839869557 +illusion_1L,sr,190,57.0,alpha,lower,-0.0010088154839869557 +illusion_1L,sr,191,57.3,alpha,front,0.001268471941792187 +illusion_1L,sr,191,57.3,alpha,upper,-0.001208887854978834 +illusion_1L,sr,191,57.3,alpha,lower,-0.001208887854978834 +illusion_1L,sr,192,57.6,alpha,front,0.00020524768607030341 +illusion_1L,sr,192,57.6,alpha,upper,-0.0009076992893240644 +illusion_1L,sr,192,57.6,alpha,lower,-0.0009076992893240644 +illusion_1L,sr,193,57.9,alpha,front,-0.0012670127266270169 +illusion_1L,sr,193,57.9,alpha,upper,-0.0002661967533503194 +illusion_1L,sr,193,57.9,alpha,lower,-0.0002661967533503194 +illusion_1L,sr,194,58.2,alpha,front,-0.0016496601366490884 +illusion_1L,sr,194,58.2,alpha,upper,-0.0003700570677220884 +illusion_1L,sr,194,58.2,alpha,lower,-0.0003700570677220884 +illusion_1L,sr,195,58.5,alpha,front,-0.0026128922270096944 +illusion_1L,sr,195,58.5,alpha,upper,3.2996484892196254e-05 +illusion_1L,sr,195,58.5,alpha,lower,3.2996484892196254e-05 +illusion_1L,sr,196,58.8,alpha,front,-0.0037521986076430518 +illusion_1L,sr,196,58.8,alpha,upper,0.0006580039503318973 +illusion_1L,sr,196,58.8,alpha,lower,0.0006580039503318973 +illusion_1L,sr,197,59.1,alpha,front,-0.003486703772930609 +illusion_1L,sr,197,59.1,alpha,upper,0.0003472971245656528 +illusion_1L,sr,197,59.1,alpha,lower,0.0003472971245656528 +illusion_1L,sr,198,59.4,alpha,front,-0.003802339840074692 +illusion_1L,sr,198,59.4,alpha,upper,0.0005796492705623241 +illusion_1L,sr,198,59.4,alpha,lower,0.0005796492705623241 +illusion_1L,sr,199,59.7,alpha,front,-0.004149112631652019 +illusion_1L,sr,199,59.7,alpha,upper,0.0009478352718906118 +illusion_1L,sr,199,59.7,alpha,lower,0.0009478352718906118 +illusion_1L,sr,200,60.0,alpha,front,-0.0031963995013843467 +illusion_1L,sr,200,60.0,alpha,upper,0.00046545853838797496 +illusion_1L,sr,200,60.0,alpha,lower,0.00046545853838797496 +illusion_1L,sr,201,60.3,alpha,front,-0.0031089087395203864 +illusion_1L,sr,201,60.3,alpha,upper,0.0007211980517010767 +illusion_1L,sr,201,60.3,alpha,lower,0.0007211980517010767 +illusion_1L,sr,202,60.6,alpha,front,-0.003160908090019964 +illusion_1L,sr,202,60.6,alpha,upper,0.001157684752572682 +illusion_1L,sr,202,60.6,alpha,lower,0.001157684752572682 +illusion_1L,sr,203,60.9,alpha,front,-0.0020677654790596262 +illusion_1L,sr,203,60.9,alpha,upper,0.000803482927001652 +illusion_1L,sr,203,60.9,alpha,lower,0.000803482927001652 +illusion_1L,sr,204,61.2,alpha,front,-0.0018931602379027197 +illusion_1L,sr,204,61.2,alpha,upper,0.0011584329224668339 +illusion_1L,sr,204,61.2,alpha,lower,0.0011584329224668339 +illusion_1L,sr,205,61.5,alpha,front,-0.0013720964826770578 +illusion_1L,sr,205,61.5,alpha,upper,0.0012617262868598626 +illusion_1L,sr,205,61.5,alpha,lower,0.0012617262868598626 +illusion_1L,sr,206,61.8,alpha,front,0.0003633951124443705 +illusion_1L,sr,206,61.8,alpha,upper,0.0004511119405184276 +illusion_1L,sr,206,61.8,alpha,lower,0.0004511119405184276 +illusion_1L,sr,207,62.1,alpha,front,0.00072724765651919 +illusion_1L,sr,207,62.1,alpha,upper,0.0006176056175203528 +illusion_1L,sr,207,62.1,alpha,lower,0.0006176056175203528 +illusion_1L,sr,208,62.4,alpha,front,0.001288912620468298 +illusion_1L,sr,208,62.4,alpha,upper,0.0005778894488548403 +illusion_1L,sr,208,62.4,alpha,lower,0.0005778894488548403 +illusion_1L,sr,209,62.7,alpha,front,0.002867430717521907 +illusion_1L,sr,209,62.7,alpha,upper,-0.0002883141338427993 +illusion_1L,sr,209,62.7,alpha,lower,-0.0002883141338427993 +illusion_1L,sr,210,63.0,alpha,front,0.002848259767283895 +illusion_1L,sr,210,63.0,alpha,upper,-6.206452598558204e-05 +illusion_1L,sr,210,63.0,alpha,lower,-6.206452598558204e-05 +illusion_1L,sr,211,63.3,alpha,front,0.0030279972156307747 +illusion_1L,sr,211,63.3,alpha,upper,-8.558411556772866e-05 +illusion_1L,sr,211,63.3,alpha,lower,-8.558411556772866e-05 +illusion_1L,sr,212,63.6,alpha,front,0.003806954495173653 +illusion_1L,sr,212,63.6,alpha,upper,-0.0006603954224166653 +illusion_1L,sr,212,63.6,alpha,lower,-0.0006603954224166653 +illusion_1L,sr,213,63.9,alpha,front,0.0032021795569816265 +illusion_1L,sr,213,63.9,alpha,upper,-0.000323196036988372 +illusion_1L,sr,213,63.9,alpha,lower,-0.000323196036988372 +illusion_1L,sr,214,64.2,alpha,front,0.0029463279010518914 +illusion_1L,sr,214,64.2,alpha,upper,-0.00035100439621892077 +illusion_1L,sr,214,64.2,alpha,lower,-0.00035100439621892077 +illusion_1L,sr,215,64.5,alpha,front,0.003231388967243086 +illusion_1L,sr,215,64.5,alpha,upper,-0.0008726941715214535 +illusion_1L,sr,215,64.5,alpha,lower,-0.0008726941715214535 +illusion_1L,sr,216,64.8,alpha,front,0.002377972623277172 +illusion_1L,sr,216,64.8,alpha,upper,-0.0006289234629877558 +illusion_1L,sr,216,64.8,alpha,lower,-0.0006289234629877558 +illusion_1L,sr,217,65.1,alpha,front,0.0020050488020401085 +illusion_1L,sr,217,65.1,alpha,upper,-0.0007955511928033379 +illusion_1L,sr,217,65.1,alpha,lower,-0.0007955511928033379 +illusion_1L,sr,218,65.4,alpha,front,0.0021225803793185625 +illusion_1L,sr,218,65.4,alpha,upper,-0.00135346680817591 +illusion_1L,sr,218,65.4,alpha,lower,-0.00135346680817591 +illusion_1L,sr,219,65.7,alpha,front,0.000749220860119389 +illusion_1L,sr,219,65.7,alpha,upper,-0.000813446872557218 +illusion_1L,sr,219,65.7,alpha,lower,-0.000813446872557218 +illusion_1L,sr,220,66.0,alpha,front,-0.00019011731271577348 +illusion_1L,sr,220,66.0,alpha,upper,-0.0005811272076205708 +illusion_1L,sr,220,66.0,alpha,lower,-0.0005811272076205708 +illusion_1L,sr,221,66.3,alpha,front,-0.00037236224975607454 +illusion_1L,sr,221,66.3,alpha,upper,-0.0008715132325213433 +illusion_1L,sr,221,66.3,alpha,lower,-0.0008715132325213433 +illusion_1L,sr,222,66.6,alpha,front,-0.0017069769112863788 +illusion_1L,sr,222,66.6,alpha,upper,-0.0002533461265096168 +illusion_1L,sr,222,66.6,alpha,lower,-0.0002533461265096168 +illusion_1L,sr,223,66.9,alpha,front,-0.0024382962400807534 +illusion_1L,sr,223,66.9,alpha,upper,-9.602118431348977e-06 +illusion_1L,sr,223,66.9,alpha,lower,-9.602118431348977e-06 +illusion_1L,sr,224,67.2,alpha,front,-0.002370617314115385 +illusion_1L,sr,224,67.2,alpha,upper,-0.0002683373545071116 +illusion_1L,sr,224,67.2,alpha,lower,-0.0002683373545071116 +illusion_1L,sr,225,67.5,alpha,front,-0.0031525630294450264 +illusion_1L,sr,225,67.5,alpha,upper,0.00020054355037197463 +illusion_1L,sr,225,67.5,alpha,lower,0.00020054355037197463 +illusion_1L,sr,226,67.8,alpha,front,-0.003327283556629424 +illusion_1L,sr,226,67.8,alpha,upper,0.00032597084199431636 +illusion_1L,sr,226,67.8,alpha,lower,0.00032597084199431636 +illusion_1L,sr,227,68.1,alpha,front,-0.002679650502519275 +illusion_1L,sr,227,68.1,alpha,upper,-4.7368720819358084e-05 +illusion_1L,sr,227,68.1,alpha,lower,-4.7368720819358084e-05 +illusion_1L,sr,228,68.4,alpha,front,-0.0031497480820914833 +illusion_1L,sr,228,68.4,alpha,upper,0.0005103601777961334 +illusion_1L,sr,228,68.4,alpha,lower,0.0005103601777961334 +illusion_1L,sr,229,68.7,alpha,front,-0.00295115003665811 +illusion_1L,sr,229,68.7,alpha,upper,0.0006645998360823961 +illusion_1L,sr,229,68.7,alpha,lower,0.0006645998360823961 +illusion_1L,sr,230,69.0,alpha,front,-0.0021203403580741208 +illusion_1L,sr,230,69.0,alpha,upper,0.0004276017075196884 +illusion_1L,sr,230,69.0,alpha,lower,0.0004276017075196884 +illusion_1L,sr,231,69.3,alpha,front,-0.002452682233923323 +illusion_1L,sr,231,69.3,alpha,upper,0.0011039571005946602 +illusion_1L,sr,231,69.3,alpha,lower,0.0011039571005946602 +illusion_1L,sr,232,69.6,alpha,front,-0.0018251880115129958 +illusion_1L,sr,232,69.6,alpha,upper,0.0010990930658420122 +illusion_1L,sr,232,69.6,alpha,lower,0.0010990930658420122 +illusion_1L,sr,233,69.9,alpha,front,-0.00048494603232291256 +illusion_1L,sr,233,69.9,alpha,upper,0.0005760673149048951 +illusion_1L,sr,233,69.9,alpha,lower,0.0005760673149048951 +illusion_1L,sr,234,70.2,alpha,front,-0.00033636179441911065 +illusion_1L,sr,234,70.2,alpha,upper,0.0009206352162048174 +illusion_1L,sr,234,70.2,alpha,lower,0.0009206352162048174 +illusion_1L,sr,235,70.5,alpha,front,0.00041784939386477205 +illusion_1L,sr,235,70.5,alpha,upper,0.000782660871244319 +illusion_1L,sr,235,70.5,alpha,lower,0.000782660871244319 +illusion_1L,sr,236,70.8,alpha,front,0.0017564457569803555 +illusion_1L,sr,236,70.8,alpha,upper,0.00015899128322252598 +illusion_1L,sr,236,70.8,alpha,lower,0.00015899128322252598 +illusion_1L,sr,237,71.1,alpha,front,0.0017228202126069667 +illusion_1L,sr,237,71.1,alpha,upper,0.00047976652804876396 +illusion_1L,sr,237,71.1,alpha,lower,0.00047976652804876396 +illusion_1L,sr,238,71.4,alpha,front,0.0023354315627370573 +illusion_1L,sr,238,71.4,alpha,upper,0.00023643682117457585 +illusion_1L,sr,238,71.4,alpha,lower,0.00023643682117457585 +illusion_1L,sr,239,71.7,alpha,front,0.0030999382127029976 +illusion_1L,sr,239,71.7,alpha,upper,-0.00021544766440522237 +illusion_1L,sr,239,71.7,alpha,lower,-0.00021544766440522237 +illusion_1L,sr,240,72.0,alpha,front,0.0025044168315095164 +illusion_1L,sr,240,72.0,alpha,upper,0.00023358426543732336 +illusion_1L,sr,240,72.0,alpha,lower,0.00023358426543732336 +illusion_1L,sr,241,72.3,alpha,front,0.0028017111066342623 +illusion_1L,sr,241,72.3,alpha,upper,-8.449837144937355e-05 +illusion_1L,sr,241,72.3,alpha,lower,-8.449837144937355e-05 +illusion_1L,sr,242,72.6,alpha,front,0.003086466780442859 +illusion_1L,sr,242,72.6,alpha,upper,-0.0004937539106698342 +illusion_1L,sr,242,72.6,alpha,lower,-0.0004937539106698342 +illusion_1L,sr,243,72.9,alpha,front,0.002261687004867032 +illusion_1L,sr,243,72.9,alpha,upper,-0.0001747345795236263 +illusion_1L,sr,243,72.9,alpha,lower,-0.0001747345795236263 +illusion_1L,sr,244,73.2,alpha,front,0.0023976107397117898 +illusion_1L,sr,244,73.2,alpha,upper,-0.0006410626457237015 +illusion_1L,sr,244,73.2,alpha,lower,-0.0006410626457237015 +illusion_1L,sr,245,73.5,alpha,front,0.0024023142552891206 +illusion_1L,sr,245,73.5,alpha,upper,-0.0010640527755620566 +illusion_1L,sr,245,73.5,alpha,lower,-0.0010640527755620566 +illusion_1L,sr,246,73.8,alpha,front,0.001213017884480549 +illusion_1L,sr,246,73.8,alpha,upper,-0.0006350238966501302 +illusion_1L,sr,246,73.8,alpha,lower,-0.0006350238966501302 +illusion_1L,sr,247,74.1,alpha,front,0.0009194763059649424 +illusion_1L,sr,247,74.1,alpha,upper,-0.0008786815106184447 +illusion_1L,sr,247,74.1,alpha,lower,-0.0008786815106184447 +illusion_1L,sr,248,74.4,alpha,front,0.000419353468004608 +illusion_1L,sr,248,74.4,alpha,upper,-0.000957338692215589 +illusion_1L,sr,248,74.4,alpha,lower,-0.000957338692215589 +illusion_1L,sr,249,74.7,alpha,front,-0.0008189681599077916 +illusion_1L,sr,249,74.7,alpha,upper,-0.00045721329499423367 +illusion_1L,sr,249,74.7,alpha,lower,-0.00045721329499423367 +illusion_1L,sr,250,75.0,alpha,front,-0.001175654032750488 +illusion_1L,sr,250,75.0,alpha,upper,-0.0005589722579486568 +illusion_1L,sr,250,75.0,alpha,lower,-0.0005589722579486568 +illusion_1L,sr,251,75.3,alpha,front,-0.0016418502262440758 +illusion_1L,sr,251,75.3,alpha,upper,-0.0005106124849601594 +illusion_1L,sr,251,75.3,alpha,lower,-0.0005106124849601594 +illusion_1L,sr,252,75.6,alpha,front,-0.0025771988236831245 +illusion_1L,sr,252,75.6,alpha,upper,-3.288861682115493e-05 +illusion_1L,sr,252,75.6,alpha,lower,-3.288861682115493e-05 +illusion_1L,sr,253,75.9,alpha,front,-0.0024277477731142402 +illusion_1L,sr,253,75.9,alpha,upper,-0.00026272323090857294 +illusion_1L,sr,253,75.9,alpha,lower,-0.00026272323090857294 +illusion_1L,sr,254,76.2,alpha,front,-0.0025283370429652965 +illusion_1L,sr,254,76.2,alpha,upper,-0.0002040337979869571 +illusion_1L,sr,254,76.2,alpha,lower,-0.0002040337979869571 +illusion_1L,sr,255,76.5,alpha,front,-0.002931020131027591 +illusion_1L,sr,255,76.5,alpha,upper,0.00018162858568208234 +illusion_1L,sr,255,76.5,alpha,lower,0.00018162858568208234 +illusion_1L,sr,256,76.8,alpha,front,-0.002508421528689103 +illusion_1L,sr,256,76.8,alpha,upper,5.808884612029316e-05 +illusion_1L,sr,256,76.8,alpha,lower,5.808884612029316e-05 +illusion_1L,sr,257,77.1,alpha,front,-0.002367215421919245 +illusion_1L,sr,257,77.1,alpha,upper,0.00023325247353494022 +illusion_1L,sr,257,77.1,alpha,lower,0.00023325247353494022 +illusion_1L,sr,258,77.4,alpha,front,-0.0026289188653347353 +illusion_1L,sr,258,77.4,alpha,upper,0.0007811286490626463 +illusion_1L,sr,258,77.4,alpha,lower,0.0007811286490626463 +illusion_1L,sr,259,77.7,alpha,front,-0.001976808315568431 +illusion_1L,sr,259,77.7,alpha,upper,0.0007078800320988524 +illusion_1L,sr,259,77.7,alpha,lower,0.0007078800320988524 +illusion_1L,sr,260,78.0,alpha,front,-0.0014444376203327017 +illusion_1L,sr,260,78.0,alpha,upper,0.0007569897859052302 +illusion_1L,sr,260,78.0,alpha,lower,0.0007569897859052302 +illusion_1L,sr,261,78.3,alpha,front,-0.001111959896480181 +illusion_1L,sr,261,78.3,alpha,upper,0.0009651841523797508 +illusion_1L,sr,261,78.3,alpha,lower,0.0009651841523797508 +illusion_1L,sr,262,78.6,alpha,front,-8.063588398298308e-05 +illusion_1L,sr,262,78.6,alpha,upper,0.0006476301605335419 +illusion_1L,sr,262,78.6,alpha,lower,0.0006476301605335419 +illusion_1L,sr,263,78.9,alpha,front,0.0004920665546846309 +illusion_1L,sr,263,78.9,alpha,upper,0.0006395737574414629 +illusion_1L,sr,263,78.9,alpha,lower,0.0006395737574414629 +illusion_1L,sr,264,79.2,alpha,front,0.0008467931634734173 +illusion_1L,sr,264,79.2,alpha,upper,0.0007432599059868858 +illusion_1L,sr,264,79.2,alpha,lower,0.0007432599059868858 +illusion_1L,sr,265,79.5,alpha,front,0.0018236943120270648 +illusion_1L,sr,265,79.5,alpha,upper,0.000320844252305285 +illusion_1L,sr,265,79.5,alpha,lower,0.000320844252305285 +illusion_1L,sr,266,79.8,alpha,front,0.0021974151430974656 +illusion_1L,sr,266,79.8,alpha,upper,0.00026521409119641126 +illusion_1L,sr,266,79.8,alpha,lower,0.00026521409119641126 +illusion_1L,sr,267,80.1,alpha,front,0.0020614882751183033 +illusion_1L,sr,267,80.1,alpha,upper,0.0004924547092276278 +illusion_1L,sr,267,80.1,alpha,lower,0.0004924547092276278 +illusion_1L,sr,268,80.4,alpha,front,0.002633160743159918 +illusion_1L,sr,268,80.4,alpha,upper,9.538482702604184e-05 +illusion_1L,sr,268,80.4,alpha,lower,9.538482702604184e-05 +illusion_1L,sr,269,80.7,alpha,front,0.0025950852909085234 +illusion_1L,sr,269,80.7,alpha,upper,4.6509154565735344e-05 +illusion_1L,sr,269,80.7,alpha,lower,4.6509154565735344e-05 +illusion_1L,sr,270,81.0,alpha,front,0.002179696337979063 +illusion_1L,sr,270,81.0,alpha,upper,0.00017584249519501938 +illusion_1L,sr,270,81.0,alpha,lower,0.00017584249519501938 +illusion_1L,sr,271,81.3,alpha,front,0.0025981834844959265 +illusion_1L,sr,271,81.3,alpha,upper,-0.00040147089137572775 +illusion_1L,sr,271,81.3,alpha,lower,-0.00040147089137572775 +illusion_1L,sr,272,81.6,alpha,front,0.002341365358907374 +illusion_1L,sr,272,81.6,alpha,upper,-0.0005540599058391979 +illusion_1L,sr,272,81.6,alpha,lower,-0.0005540599058391979 +illusion_1L,sr,273,81.9,alpha,front,0.0017385591483423234 +illusion_1L,sr,273,81.9,alpha,upper,-0.0005081055946565046 +illusion_1L,sr,273,81.9,alpha,lower,-0.0005081055946565046 +illusion_1L,sr,274,82.2,alpha,front,0.0018097158919030039 +illusion_1L,sr,274,82.2,alpha,upper,-0.0009948989605518617 +illusion_1L,sr,274,82.2,alpha,lower,-0.0009948989605518617 +illusion_1L,sr,275,82.5,alpha,front,0.0008576539548276476 +illusion_1L,sr,275,82.5,alpha,upper,-0.0007390106029443236 +illusion_1L,sr,275,82.5,alpha,lower,-0.0007390106029443236 +illusion_1L,sr,276,82.8,alpha,front,4.0675158993272106e-05 +illusion_1L,sr,276,82.8,alpha,upper,-0.0005778028779099388 +illusion_1L,sr,276,82.8,alpha,lower,-0.0005778028779099388 +illusion_1L,sr,277,83.1,alpha,front,-4.75199972921822e-05 +illusion_1L,sr,277,83.1,alpha,upper,-0.0009268307045229018 +illusion_1L,sr,277,83.1,alpha,lower,-0.0009268307045229018 +illusion_1L,sr,278,83.4,alpha,front,-0.001025674886000378 +illusion_1L,sr,278,83.4,alpha,upper,-0.0005716864842692689 +illusion_1L,sr,278,83.4,alpha,lower,-0.0005716864842692689 +illusion_1L,sr,279,83.7,alpha,front,-0.0018296929847189045 +illusion_1L,sr,279,83.7,alpha,upper,-0.0002826054751995377 +illusion_1L,sr,279,83.7,alpha,lower,-0.0002826054751995377 +illusion_1L,sr,280,84.0,alpha,front,-0.0016279177285558682 +illusion_1L,sr,280,84.0,alpha,upper,-0.0006590613566079678 +illusion_1L,sr,280,84.0,alpha,lower,-0.0006590613566079678 +illusion_1L,sr,281,84.3,alpha,front,-0.0022538846081337147 +illusion_1L,sr,281,84.3,alpha,upper,-0.00033205918727286995 +illusion_1L,sr,281,84.3,alpha,lower,-0.00033205918727286995 +illusion_1L,sr,282,84.6,alpha,front,-0.002580627579396942 +illusion_1L,sr,282,84.6,alpha,upper,-0.00012714735992673531 +illusion_1L,sr,282,84.6,alpha,lower,-0.00012714735992673531 +illusion_1L,sr,283,84.9,alpha,front,-0.0020697662227493613 +illusion_1L,sr,283,84.9,alpha,upper,-0.00043957042626585965 +illusion_1L,sr,283,84.9,alpha,lower,-0.00043957042626585965 +illusion_1L,sr,284,85.2,alpha,front,-0.0024524498257611077 +illusion_1L,sr,284,85.2,alpha,upper,9.346331913261119e-06 +illusion_1L,sr,284,85.2,alpha,lower,9.346331913261119e-06 +illusion_1L,sr,285,85.5,alpha,front,-0.0024937312841376534 +illusion_1L,sr,285,85.5,alpha,upper,0.00029532288571868653 +illusion_1L,sr,285,85.5,alpha,lower,0.00029532288571868653 +illusion_1L,sr,286,85.8,alpha,front,-0.001898754733683304 +illusion_1L,sr,286,85.8,alpha,upper,0.00018747550519764358 +illusion_1L,sr,286,85.8,alpha,lower,0.00018747550519764358 +illusion_1L,sr,287,86.1,alpha,front,-0.0021468845236074265 +illusion_1L,sr,287,86.1,alpha,upper,0.0007609094015804656 +illusion_1L,sr,287,86.1,alpha,lower,0.0007609094015804656 +illusion_1L,sr,288,86.4,alpha,front,-0.0018032647187938959 +illusion_1L,sr,288,86.4,alpha,upper,0.0009333384766839065 +illusion_1L,sr,288,86.4,alpha,lower,0.0009333384766839065 +illusion_1L,sr,289,86.7,alpha,front,-0.0006724649170433572 +illusion_1L,sr,289,86.7,alpha,upper,0.00054045198916204 +illusion_1L,sr,289,86.7,alpha,lower,0.00054045198916204 +illusion_1L,sr,290,87.0,alpha,front,-0.00046887160631419074 +illusion_1L,sr,290,87.0,alpha,upper,0.000830436836162892 +illusion_1L,sr,290,87.0,alpha,lower,0.000830436836162892 +illusion_1L,sr,291,87.3,alpha,front,7.445876166911267e-05 +illusion_1L,sr,291,87.3,alpha,upper,0.0008435755984267395 +illusion_1L,sr,291,87.3,alpha,lower,0.0008435755984267395 +illusion_1L,sr,292,87.6,alpha,front,0.0011436930436696524 +illusion_1L,sr,292,87.6,alpha,upper,0.0004247423334389176 +illusion_1L,sr,292,87.6,alpha,lower,0.0004247423334389176 +illusion_1L,sr,293,87.9,alpha,front,0.0012768315823243545 +illusion_1L,sr,293,87.9,alpha,upper,0.0006380520049680607 +illusion_1L,sr,293,87.9,alpha,lower,0.0006380520049680607 +illusion_1L,sr,294,88.2,alpha,front,0.0016753668236647312 +illusion_1L,sr,294,88.2,alpha,upper,0.000578671571704957 +illusion_1L,sr,294,88.2,alpha,lower,0.000578671571704957 +illusion_1L,sr,295,88.5,alpha,front,0.0022825046680066616 +illusion_1L,sr,295,88.5,alpha,upper,0.0002769745388463904 +illusion_1L,sr,295,88.5,alpha,lower,0.0002769745388463904 +illusion_1L,sr,296,88.8,alpha,front,0.0020782825286764783 +illusion_1L,sr,296,88.8,alpha,upper,0.00047723026979217334 +illusion_1L,sr,296,88.8,alpha,lower,0.00047723026979217334 +illusion_1L,sr,297,89.1,alpha,front,0.0021307651110309966 +illusion_1L,sr,297,89.1,alpha,upper,0.0003854033778598019 +illusion_1L,sr,297,89.1,alpha,lower,0.0003854033778598019 +illusion_1L,sr,298,89.4,alpha,front,0.0024512069966908315 +illusion_1L,sr,298,89.4,alpha,upper,-3.2135168947095005e-06 +illusion_1L,sr,298,89.4,alpha,lower,-3.2135168947095005e-06 +illusion_1L,sr,299,89.7,alpha,front,0.002124719800438931 +illusion_1L,sr,299,89.7,alpha,upper,-4.9290977044945394e-06 +illusion_1L,sr,299,89.7,alpha,lower,-4.9290977044945394e-06 +illusion_1L,sr,300,90.0,alpha,front,0.0020903908066532834 +illusion_1L,sr,300,90.0,alpha,upper,-0.00030001732218325194 +illusion_1L,sr,300,90.0,alpha,lower,-0.00030001732218325194 +illusion_1L,sr,301,90.3,alpha,front,0.002235707676148474 +illusion_1L,sr,301,90.3,alpha,upper,-0.0007868128532648178 +illusion_1L,sr,301,90.3,alpha,lower,-0.0007868128532648178 +illusion_1L,sr,302,90.6,alpha,front,0.001463718605221616 +illusion_1L,sr,302,90.6,alpha,upper,-0.0006346122966791688 +illusion_1L,sr,302,90.6,alpha,lower,-0.0006346122966791688 +illusion_1L,sr,303,90.9,alpha,front,0.0008907293064292233 +illusion_1L,sr,303,90.9,alpha,upper,-0.0006501139885609289 +illusion_1L,sr,303,90.9,alpha,lower,-0.0006501139885609289 +illusion_1L,sr,304,91.2,alpha,front,0.0006193386806393041 +illusion_1L,sr,304,91.2,alpha,upper,-0.0008875891346881742 +illusion_1L,sr,304,91.2,alpha,lower,-0.0008875891346881742 +illusion_1L,sr,305,91.5,alpha,front,-0.0002730991674666089 +illusion_1L,sr,305,91.5,alpha,upper,-0.0006439305931017873 +illusion_1L,sr,305,91.5,alpha,lower,-0.0006439305931017873 +illusion_1L,sr,306,91.8,alpha,front,-0.0008294195345860851 +illusion_1L,sr,306,91.8,alpha,upper,-0.0006091470421822377 +illusion_1L,sr,306,91.8,alpha,lower,-0.0006091470421822377 +illusion_1L,sr,307,92.1,alpha,front,-0.001091211337338617 +illusion_1L,sr,307,92.1,alpha,upper,-0.0007335006330005389 +illusion_1L,sr,307,92.1,alpha,lower,-0.0007335006330005389 +illusion_1L,sr,308,92.4,alpha,front,-0.0018592125332101835 +illusion_1L,sr,308,92.4,alpha,upper,-0.0004107492914603231 +illusion_1L,sr,308,92.4,alpha,lower,-0.0004107492914603231 +illusion_1L,sr,309,92.7,alpha,front,-0.0020126371165303733 +illusion_1L,sr,309,92.7,alpha,upper,-0.00045617722588525353 +illusion_1L,sr,309,92.7,alpha,lower,-0.00045617722588525353 +illusion_1L,sr,310,93.0,alpha,front,-0.001856545750577969 +illusion_1L,sr,310,93.0,alpha,upper,-0.0006335166338379168 +illusion_1L,sr,310,93.0,alpha,lower,-0.0006335166338379168 +illusion_1L,sr,311,93.3,alpha,front,-0.0023510381445240383 +illusion_1L,sr,311,93.3,alpha,upper,-0.00022922372170249006 +illusion_1L,sr,311,93.3,alpha,lower,-0.00022922372170249006 +illusion_1L,sr,312,93.6,alpha,front,-0.002185854619074605 +illusion_1L,sr,312,93.6,alpha,upper,-0.00021385075254851113 +illusion_1L,sr,312,93.6,alpha,lower,-0.00021385075254851113 +illusion_1L,sr,313,93.9,alpha,front,-0.0019868057417791914 +illusion_1L,sr,313,93.9,alpha,upper,-0.0001308244763455306 +illusion_1L,sr,313,93.9,alpha,lower,-0.0001308244763455306 +illusion_1L,sr,314,94.2,alpha,front,-0.0023910868174555275 +illusion_1L,sr,314,94.2,alpha,upper,0.00047637123330880257 +illusion_1L,sr,314,94.2,alpha,lower,0.00047637123330880257 +illusion_1L,sr,315,94.5,alpha,front,-0.0019637545486303146 +illusion_1L,sr,315,94.5,alpha,upper,0.0005296218153290622 +illusion_1L,sr,315,94.5,alpha,lower,0.0005296218153290622 +illusion_1L,sr,316,94.8,alpha,front,-0.0014080653902308771 +illusion_1L,sr,316,94.8,alpha,upper,0.0005308532033290649 +illusion_1L,sr,316,94.8,alpha,lower,0.0005308532033290649 +illusion_1L,sr,317,95.1,alpha,front,-0.0013142415418813615 +illusion_1L,sr,317,95.1,alpha,upper,0.0008955897777603893 +illusion_1L,sr,317,95.1,alpha,lower,0.0008955897777603893 +illusion_1L,sr,318,95.4,alpha,front,-0.0004132277358103661 +illusion_1L,sr,318,95.4,alpha,upper,0.0006660036491383569 +illusion_1L,sr,318,95.4,alpha,lower,0.0006660036491383569 +illusion_1L,sr,319,95.7,alpha,front,0.00021519892306329919 +illusion_1L,sr,319,95.7,alpha,upper,0.0006199954467126841 +illusion_1L,sr,319,95.7,alpha,lower,0.0006199954467126841 +illusion_1L,sr,320,96.0,alpha,front,0.00039561665116743736 +illusion_1L,sr,320,96.0,alpha,upper,0.000867656992488546 +illusion_1L,sr,320,96.0,alpha,lower,0.000867656992488546 +illusion_1L,sr,321,96.3,alpha,front,0.0012798502229016233 +illusion_1L,sr,321,96.3,alpha,upper,0.0005392823101667311 +illusion_1L,sr,321,96.3,alpha,lower,0.0005392823101667311 +illusion_1L,sr,322,96.6,alpha,front,0.0017082664096567878 +illusion_1L,sr,322,96.6,alpha,upper,0.00047767120729995394 +illusion_1L,sr,322,96.6,alpha,lower,0.00047767120729995394 +illusion_1L,sr,323,96.9,alpha,front,0.001600391826480689 +illusion_1L,sr,323,96.9,alpha,upper,0.0007282707355944114 +illusion_1L,sr,323,96.9,alpha,lower,0.0007282707355944114 +illusion_1L,sr,324,97.2,alpha,front,0.0021176328574662104 +illusion_1L,sr,324,97.2,alpha,upper,0.0004218013082429549 +illusion_1L,sr,324,97.2,alpha,lower,0.0004218013082429549 +illusion_1L,sr,325,97.5,alpha,front,0.00218393672571518 +illusion_1L,sr,325,97.5,alpha,upper,0.0003497725088654931 +illusion_1L,sr,325,97.5,alpha,lower,0.0003497725088654931 +illusion_1L,sr,326,97.8,alpha,front,0.0018692981765753014 +illusion_1L,sr,326,97.8,alpha,upper,0.0004594678041297713 +illusion_1L,sr,326,97.8,alpha,lower,0.0004594678041297713 +illusion_1L,sr,327,98.1,alpha,front,0.0022601161864354152 +illusion_1L,sr,327,98.1,alpha,upper,-4.5236625257561586e-05 +illusion_1L,sr,327,98.1,alpha,lower,-4.5236625257561586e-05 +illusion_1L,sr,328,98.4,alpha,front,0.00219276200638421 +illusion_1L,sr,328,98.4,alpha,upper,-0.0002909972028811124 +illusion_1L,sr,328,98.4,alpha,lower,-0.0002909972028811124 +illusion_1L,sr,329,98.7,alpha,front,0.0017706394852226963 +illusion_1L,sr,329,98.7,alpha,upper,-0.00033867748356330996 +illusion_1L,sr,329,98.7,alpha,lower,-0.00033867748356330996 +illusion_1L,sr,330,99.0,alpha,front,0.001795100974081039 +illusion_1L,sr,330,99.0,alpha,upper,-0.0007611755532865834 +illusion_1L,sr,330,99.0,alpha,lower,-0.0007611755532865834 +illusion_1L,sr,331,99.3,alpha,front,0.0011956874884047012 +illusion_1L,sr,331,99.3,alpha,upper,-0.0007468520494075142 +illusion_1L,sr,331,99.3,alpha,lower,-0.0007468520494075142 +illusion_1L,sr,332,99.6,alpha,front,0.0003081036960281367 +illusion_1L,sr,332,99.6,alpha,upper,-0.0005259344095308589 +illusion_1L,sr,332,99.6,alpha,lower,-0.0005259344095308589 +illusion_1L,sr,333,99.9,alpha,front,0.00017444010402483008 +illusion_1L,sr,333,99.9,alpha,upper,-0.0008477133007939279 +illusion_1L,sr,333,99.9,alpha,lower,-0.0008477133007939279 +illusion_1L,sr,334,100.2,alpha,front,-0.0004715816536334967 +illusion_1L,sr,334,100.2,alpha,upper,-0.0007556098568314469 +illusion_1L,sr,334,100.2,alpha,lower,-0.0007556098568314469 +illusion_1L,sr,335,100.5,alpha,front,-0.0012875337812371483 +illusion_1L,sr,335,100.5,alpha,upper,-0.00048590669335993314 +illusion_1L,sr,335,100.5,alpha,lower,-0.00048590669335993314 +illusion_1L,sr,336,100.8,alpha,front,-0.0013288121821792911 +illusion_1L,sr,336,100.8,alpha,upper,-0.0007205988655297757 +illusion_1L,sr,336,100.8,alpha,lower,-0.0007205988655297757 +illusion_1L,sr,337,101.1,alpha,front,-0.001709368231224577 +illusion_1L,sr,337,101.1,alpha,upper,-0.0006227376820563853 +illusion_1L,sr,337,101.1,alpha,lower,-0.0006227376820563853 +illusion_1L,sr,338,101.4,alpha,front,-0.002105277165218203 +illusion_1L,sr,338,101.4,alpha,upper,-0.0004207365758205281 +illusion_1L,sr,338,101.4,alpha,lower,-0.0004207365758205281 +illusion_1L,sr,339,101.7,alpha,front,-0.0018819345296790663 +illusion_1L,sr,339,101.7,alpha,upper,-0.0005782001892148704 +illusion_1L,sr,339,101.7,alpha,lower,-0.0005782001892148704 +illusion_1L,sr,340,102.0,alpha,front,-0.002011249771044374 +illusion_1L,sr,340,102.0,alpha,upper,-0.0003751830866618351 +illusion_1L,sr,340,102.0,alpha,lower,-0.0003751830866618351 +illusion_1L,sr,341,102.3,alpha,front,-0.0022529629967357467 +illusion_1L,sr,341,102.3,alpha,upper,4.235316469772266e-06 +illusion_1L,sr,341,102.3,alpha,lower,4.235316469772266e-06 +illusion_1L,sr,342,102.6,alpha,front,-0.00192586255778493 +illusion_1L,sr,342,102.6,alpha,upper,4.520143170902782e-05 +illusion_1L,sr,342,102.6,alpha,lower,4.520143170902782e-05 +illusion_1L,sr,343,102.9,alpha,front,-0.0019518807535364967 +illusion_1L,sr,343,102.9,alpha,upper,0.0004143149115986913 +illusion_1L,sr,343,102.9,alpha,lower,0.0004143149115986913 +illusion_1L,sr,344,103.2,alpha,front,-0.0018794093340116314 +illusion_1L,sr,344,103.2,alpha,upper,0.0007569913124074951 +illusion_1L,sr,344,103.2,alpha,lower,0.0007569913124074951 +illusion_1L,sr,345,103.5,alpha,front,-0.0010334489848943815 +illusion_1L,sr,345,103.5,alpha,upper,0.0005560701057168108 +illusion_1L,sr,345,103.5,alpha,lower,0.0005560701057168108 +illusion_1L,sr,346,103.8,alpha,front,-0.000557761905721427 +illusion_1L,sr,346,103.8,alpha,upper,0.0006387765055850072 +illusion_1L,sr,346,103.8,alpha,lower,0.0006387765055850072 +illusion_1L,sr,347,104.1,alpha,front,-0.0003502884042314962 +illusion_1L,sr,347,104.1,alpha,upper,0.0009071160603276695 +illusion_1L,sr,347,104.1,alpha,lower,0.0009071160603276695 +illusion_1L,sr,348,104.4,alpha,front,0.0005999585238885968 +illusion_1L,sr,348,104.4,alpha,upper,0.0005951041671538558 +illusion_1L,sr,348,104.4,alpha,lower,0.0005951041671538558 +illusion_1L,sr,349,104.7,alpha,front,0.0009873363141326315 +illusion_1L,sr,349,104.7,alpha,upper,0.0006506821354267667 +illusion_1L,sr,349,104.7,alpha,lower,0.0006506821354267667 +illusion_1L,sr,350,105.0,alpha,front,0.0011886313053000898 +illusion_1L,sr,350,105.0,alpha,upper,0.0007776673963950201 +illusion_1L,sr,350,105.0,alpha,lower,0.0007776673963950201 +illusion_1L,sr,351,105.3,alpha,front,0.0018496411277634935 +illusion_1L,sr,351,105.3,alpha,upper,0.00048561295296722587 +illusion_1L,sr,351,105.3,alpha,lower,0.00048561295296722587 +illusion_1L,sr,352,105.6,alpha,front,0.0018395997438737167 +illusion_1L,sr,352,105.6,alpha,upper,0.0005981779953251679 +illusion_1L,sr,352,105.6,alpha,lower,0.0005981779953251679 +illusion_1L,sr,353,105.9,alpha,front,0.0017835934302848216 +illusion_1L,sr,353,105.9,alpha,upper,0.0006479682667015277 +illusion_1L,sr,353,105.9,alpha,lower,0.0006479682667015277 +illusion_1L,sr,354,106.2,alpha,front,0.0021966201246726366 +illusion_1L,sr,354,106.2,alpha,upper,0.0002518787291564857 +illusion_1L,sr,354,106.2,alpha,lower,0.0002518787291564857 +illusion_1L,sr,355,106.5,alpha,front,0.0019656817159146127 +illusion_1L,sr,355,106.5,alpha,upper,0.00023762331185044064 +illusion_1L,sr,355,106.5,alpha,lower,0.00023762331185044064 +illusion_1L,sr,356,106.8,alpha,front,0.0019148957843700444 +illusion_1L,sr,356,106.8,alpha,upper,5.550408687292341e-06 +illusion_1L,sr,356,106.8,alpha,lower,5.550408687292341e-06 +illusion_1L,sr,357,107.1,alpha,front,0.002151973048441943 +illusion_1L,sr,357,107.1,alpha,upper,-0.0005082209914466038 +illusion_1L,sr,357,107.1,alpha,lower,-0.0005082209914466038 +illusion_1L,sr,358,107.4,alpha,front,0.0016210759170025776 +illusion_1L,sr,358,107.4,alpha,upper,-0.0005043502567385547 +illusion_1L,sr,358,107.4,alpha,lower,-0.0005043502567385547 +illusion_1L,sr,359,107.7,alpha,front,0.0011845054740249024 +illusion_1L,sr,359,107.7,alpha,upper,-0.0006016542113923122 +illusion_1L,sr,359,107.7,alpha,lower,-0.0006016542113923122 +illusion_1L,sr,360,108.0,alpha,front,0.0008347425155020129 +illusion_1L,sr,360,108.0,alpha,upper,-0.0007749990797655264 +illusion_1L,sr,360,108.0,alpha,lower,-0.0007749990797655264 +illusion_1L,sr,361,108.3,alpha,front,0.00013274791733608286 +illusion_1L,sr,361,108.3,alpha,upper,-0.0006796374837418854 +illusion_1L,sr,361,108.3,alpha,lower,-0.0006796374837418854 +illusion_1L,sr,362,108.6,alpha,front,-0.00040816077100361975 +illusion_1L,sr,362,108.6,alpha,upper,-0.0006756023342706814 +illusion_1L,sr,362,108.6,alpha,lower,-0.0006756023342706814 +illusion_1L,sr,363,108.9,alpha,front,-0.0007137699302745791 +illusion_1L,sr,363,108.9,alpha,upper,-0.0007993349110675779 +illusion_1L,sr,363,108.9,alpha,lower,-0.0007993349110675779 +illusion_1L,sr,364,109.2,alpha,front,-0.0013999343843580855 +illusion_1L,sr,364,109.2,alpha,upper,-0.0005787463345103619 +illusion_1L,sr,364,109.2,alpha,lower,-0.0005787463345103619 +illusion_1L,sr,365,109.5,alpha,front,-0.0016380221628239239 +illusion_1L,sr,365,109.5,alpha,upper,-0.0006125139240768726 +illusion_1L,sr,365,109.5,alpha,lower,-0.0006125139240768726 +illusion_1L,sr,366,109.8,alpha,front,-0.0016257276332586543 +illusion_1L,sr,366,109.8,alpha,upper,-0.0007422377665490497 +illusion_1L,sr,366,109.8,alpha,lower,-0.0007422377665490497 +illusion_1L,sr,367,110.1,alpha,front,-0.001969616193895865 +illusion_1L,sr,367,110.1,alpha,upper,-0.000512153841494483 +illusion_1L,sr,367,110.1,alpha,lower,-0.000512153841494483 +illusion_1L,sr,368,110.4,alpha,front,-0.002021533432414409 +illusion_1L,sr,368,110.4,alpha,upper,-0.0004002685400451948 +illusion_1L,sr,368,110.4,alpha,lower,-0.0004002685400451948 +illusion_1L,sr,369,110.7,alpha,front,-0.0018323665034778692 +illusion_1L,sr,369,110.7,alpha,upper,-0.0003701660316736341 +illusion_1L,sr,369,110.7,alpha,lower,-0.0003701660316736341 +illusion_1L,sr,370,111.0,alpha,front,-0.002148194471622022 +illusion_1L,sr,370,111.0,alpha,upper,0.00011863529143841395 +illusion_1L,sr,370,111.0,alpha,lower,0.00011863529143841395 +illusion_1L,sr,371,111.3,alpha,front,-0.0019940549641648854 +illusion_1L,sr,371,111.3,alpha,upper,0.000331471567480552 +illusion_1L,sr,371,111.3,alpha,lower,0.000331471567480552 +illusion_1L,sr,372,111.6,alpha,front,-0.0015915390842317287 +illusion_1L,sr,372,111.6,alpha,upper,0.0004143567276815585 +illusion_1L,sr,372,111.6,alpha,lower,0.0004143567276815585 +illusion_1L,sr,373,111.9,alpha,front,-0.0014765517347564887 +illusion_1L,sr,373,111.9,alpha,upper,0.0007441557207024229 +illusion_1L,sr,373,111.9,alpha,lower,0.0007441557207024229 +illusion_1L,sr,374,112.2,alpha,front,-0.000758015041774106 +illusion_1L,sr,374,112.2,alpha,upper,0.0006426035099415955 +illusion_1L,sr,374,112.2,alpha,lower,0.0006426035099415955 +illusion_1L,sr,375,112.5,alpha,front,-0.0001396939528303144 +illusion_1L,sr,375,112.5,alpha,upper,0.0006110256886618102 +illusion_1L,sr,375,112.5,alpha,lower,0.0006110256886618102 +illusion_1L,sr,376,112.8,alpha,front,8.618635085826803e-05 +illusion_1L,sr,376,112.8,alpha,upper,0.000844855377177673 +illusion_1L,sr,376,112.8,alpha,lower,0.000844855377177673 +illusion_1L,sr,377,113.1,alpha,front,0.0007712136797901962 +illusion_1L,sr,377,113.1,alpha,upper,0.0006958745849131691 +illusion_1L,sr,377,113.1,alpha,lower,0.0006958745849131691 +illusion_1L,sr,378,113.4,alpha,front,0.0013383884256519644 +illusion_1L,sr,378,113.4,alpha,upper,0.0005744203629290852 +illusion_1L,sr,378,113.4,alpha,lower,0.0005744203629290852 +illusion_1L,sr,379,113.7,alpha,front,0.00134904853995408 +illusion_1L,sr,379,113.7,alpha,upper,0.0007898448219384563 +illusion_1L,sr,379,113.7,alpha,lower,0.0007898448219384563 +illusion_1L,sr,380,114.0,alpha,front,0.0017293898412558129 +illusion_1L,sr,380,114.0,alpha,upper,0.00064452224833942 +illusion_1L,sr,380,114.0,alpha,lower,0.00064452224833942 +illusion_1L,sr,381,114.3,alpha,front,0.0019836120784919656 +illusion_1L,sr,381,114.3,alpha,upper,0.000497308460392698 +illusion_1L,sr,381,114.3,alpha,lower,0.000497308460392698 +illusion_1L,sr,382,114.6,alpha,front,0.0017716775828734987 +illusion_1L,sr,382,114.6,alpha,upper,0.0005970382841038978 +illusion_1L,sr,382,114.6,alpha,lower,0.0005970382841038978 +illusion_1L,sr,383,114.9,alpha,front,0.0019489962339955742 +illusion_1L,sr,383,114.9,alpha,upper,0.00031273275443665163 +illusion_1L,sr,383,114.9,alpha,lower,0.00031273275443665163 +illusion_1L,sr,384,115.2,alpha,front,0.002127536851536674 +illusion_1L,sr,384,115.2,alpha,upper,-5.9495373191616185e-05 +illusion_1L,sr,384,115.2,alpha,lower,-5.9495373191616185e-05 +illusion_1L,sr,385,115.5,alpha,front,0.0018131901458100334 +illusion_1L,sr,385,115.5,alpha,upper,-0.0001418148749071195 +illusion_1L,sr,385,115.5,alpha,lower,-0.0001418148749071195 +illusion_1L,sr,386,115.8,alpha,front,0.0017608857876896566 +illusion_1L,sr,386,115.8,alpha,upper,-0.0004747961134929733 +illusion_1L,sr,386,115.8,alpha,lower,-0.0004747961134929733 +illusion_1L,sr,387,116.1,alpha,front,0.0015716847598456769 +illusion_1L,sr,387,116.1,alpha,upper,-0.0007438382219661713 +illusion_1L,sr,387,116.1,alpha,lower,-0.0007438382219661713 +illusion_1L,sr,388,116.4,alpha,front,0.0006219462013121008 +illusion_1L,sr,388,116.4,alpha,upper,-0.00046941984033509903 +illusion_1L,sr,388,116.4,alpha,lower,-0.00046941984033509903 +illusion_1L,sr,389,116.7,alpha,front,0.0003765338686101648 +illusion_1L,sr,389,116.7,alpha,upper,-0.0007150274314453647 +illusion_1L,sr,389,116.7,alpha,lower,-0.0007150274314453647 +illusion_1L,sr,390,117.0,alpha,front,3.733714984694228e-05 +illusion_1L,sr,390,117.0,alpha,upper,-0.0008692767685672763 +illusion_1L,sr,390,117.0,alpha,lower,-0.0008692767685672763 +illusion_1L,sr,391,117.3,alpha,front,-0.000850899834019838 +illusion_1L,sr,391,117.3,alpha,upper,-0.0005783020332489341 +illusion_1L,sr,391,117.3,alpha,lower,-0.0005783020332489341 +illusion_1L,sr,392,117.6,alpha,front,-0.0010739513973868561 +illusion_1L,sr,392,117.6,alpha,upper,-0.0007221193498810688 +illusion_1L,sr,392,117.6,alpha,lower,-0.0007221193498810688 +illusion_1L,sr,393,117.9,alpha,front,-0.001311315332097572 +illusion_1L,sr,393,117.9,alpha,upper,-0.0007830324026162558 +illusion_1L,sr,393,117.9,alpha,lower,-0.0007830324026162558 +illusion_1L,sr,394,118.2,alpha,front,-0.0018439337198596847 +illusion_1L,sr,394,118.2,alpha,upper,-0.0005407626586263099 +illusion_1L,sr,394,118.2,alpha,lower,-0.0005407626586263099 +illusion_1L,sr,395,118.5,alpha,front,-0.0016833448291030328 +illusion_1L,sr,395,118.5,alpha,upper,-0.0007168427262955537 +illusion_1L,sr,395,118.5,alpha,lower,-0.0007168427262955537 +illusion_1L,sr,396,118.8,alpha,front,-0.001783158817925984 +illusion_1L,sr,396,118.8,alpha,upper,-0.0006030205342884148 +illusion_1L,sr,396,118.8,alpha,lower,-0.0006030205342884148 +illusion_1L,sr,397,119.1,alpha,front,-0.0020893376349683385 +illusion_1L,sr,397,119.1,alpha,upper,-0.0002401678888536221 +illusion_1L,sr,397,119.1,alpha,lower,-0.0002401678888536221 +illusion_1L,sr,398,119.4,alpha,front,-0.0018925157665916105 +illusion_1L,sr,398,119.4,alpha,upper,-0.0001602973041829603 +illusion_1L,sr,398,119.4,alpha,lower,-0.0001602973041829603 +illusion_1L,sr,399,119.7,alpha,front,-0.0019135101303349724 +illusion_1L,sr,399,119.7,alpha,upper,0.00015706849365920011 +illusion_1L,sr,399,119.7,alpha,lower,0.00015706849365920011 +illusion_1L,sr,0,0.0,omega,front,0.00015065667156363162 +illusion_1L,sr,0,0.0,omega,upper,-0.00017749901075966065 +illusion_1L,sr,0,0.0,omega,lower,-0.00017749901075966065 +illusion_1L,sr,1,0.3,omega,front,0.00021282785607453614 +illusion_1L,sr,1,0.3,omega,upper,-0.00022503613711949186 +illusion_1L,sr,1,0.3,omega,lower,-0.00022503613711949186 +illusion_1L,sr,2,0.6,omega,front,-6.9995951833509705e-06 +illusion_1L,sr,2,0.6,omega,upper,-6.498512390538877e-05 +illusion_1L,sr,2,0.6,omega,lower,-6.498512390538877e-05 +illusion_1L,sr,3,0.9,omega,front,-0.00025245866684551577 +illusion_1L,sr,3,0.9,omega,upper,0.00011551717585581545 +illusion_1L,sr,3,0.9,omega,lower,0.00011551717585581545 +illusion_1L,sr,4,1.2,omega,front,-0.00047225075788273147 +illusion_1L,sr,4,1.2,omega,upper,0.00027712082442223204 +illusion_1L,sr,4,1.2,omega,lower,0.00027712082442223204 +illusion_1L,sr,5,1.5,omega,front,-0.0005903561047646912 +illusion_1L,sr,5,1.5,omega,upper,0.00036556648630530045 +illusion_1L,sr,5,1.5,omega,lower,0.00036556648630530045 +illusion_1L,sr,6,1.8,omega,front,-0.0005430935297554115 +illusion_1L,sr,6,1.8,omega,upper,0.0003359789153042413 +illusion_1L,sr,6,1.8,omega,lower,0.0003359789153042413 +illusion_1L,sr,7,2.1,omega,front,-0.00038032996460326456 +illusion_1L,sr,7,2.1,omega,upper,0.00022699198064553345 +illusion_1L,sr,7,2.1,omega,lower,0.00022699198064553345 +illusion_1L,sr,8,2.4,omega,front,-0.00016812502625878508 +illusion_1L,sr,8,2.4,omega,upper,8.796696787675147e-05 +illusion_1L,sr,8,2.4,omega,lower,8.796696787675147e-05 +illusion_1L,sr,9,2.7,omega,front,3.9697123353418764e-05 +illusion_1L,sr,9,2.7,omega,upper,-4.2196020057675736e-05 +illusion_1L,sr,9,2.7,omega,lower,-4.2196020057675736e-05 +illusion_1L,sr,10,3.0,omega,front,0.00019698562414702367 +illusion_1L,sr,10,3.0,omega,upper,-0.0001313471708515218 +illusion_1L,sr,10,3.0,omega,lower,-0.0001313471708515218 +illusion_1L,sr,11,3.3,omega,front,0.0002924723647872247 +illusion_1L,sr,11,3.3,omega,upper,-0.0001732154383641374 +illusion_1L,sr,11,3.3,omega,lower,-0.0001732154383641374 +illusion_1L,sr,12,3.6,omega,front,0.00037181058779715533 +illusion_1L,sr,12,3.6,omega,upper,-0.0002035061932935914 +illusion_1L,sr,12,3.6,omega,lower,-0.0002035061932935914 +illusion_1L,sr,13,3.9,omega,front,0.00041407426909125634 +illusion_1L,sr,13,3.9,omega,upper,-0.0002084237512185977 +illusion_1L,sr,13,3.9,omega,lower,-0.0002084237512185977 +illusion_1L,sr,14,4.2,omega,front,0.0004524019166877455 +illusion_1L,sr,14,4.2,omega,upper,-0.00021375663145537988 +illusion_1L,sr,14,4.2,omega,lower,-0.00021375663145537988 +illusion_1L,sr,15,4.5,omega,front,0.00047518756324937576 +illusion_1L,sr,15,4.5,omega,upper,-0.00021196930061869346 +illusion_1L,sr,15,4.5,omega,lower,-0.00021196930061869346 +illusion_1L,sr,16,4.8,omega,front,0.0004660318742053876 +illusion_1L,sr,16,4.8,omega,upper,-0.0001918415822879144 +illusion_1L,sr,16,4.8,omega,lower,-0.0001918415822879144 +illusion_1L,sr,17,5.1,omega,front,0.0004409401306292632 +illusion_1L,sr,17,5.1,omega,upper,-0.00016599260516298787 +illusion_1L,sr,17,5.1,omega,lower,-0.00016599260516298787 +illusion_1L,sr,18,5.4,omega,front,0.00039451441276967483 +illusion_1L,sr,18,5.4,omega,upper,-0.00013103459960533498 +illusion_1L,sr,18,5.4,omega,lower,-0.00013103459960533498 +illusion_1L,sr,19,5.7,omega,front,0.00032209542854565675 +illusion_1L,sr,19,5.7,omega,upper,-8.378636025239945e-05 +illusion_1L,sr,19,5.7,omega,lower,-8.378636025239945e-05 +illusion_1L,sr,20,6.0,omega,front,0.0002473052861755551 +illusion_1L,sr,20,6.0,omega,upper,-4.1475917667615215e-05 +illusion_1L,sr,20,6.0,omega,lower,-4.1475917667615215e-05 +illusion_1L,sr,21,6.3,omega,front,0.00017128540647560616 +illusion_1L,sr,21,6.3,omega,upper,-4.182647697407449e-06 +illusion_1L,sr,21,6.3,omega,lower,-4.182647697407449e-06 +illusion_1L,sr,22,6.6,omega,front,9.63220329456807e-05 +illusion_1L,sr,22,6.6,omega,upper,2.7692204386016716e-05 +illusion_1L,sr,22,6.6,omega,lower,2.7692204386016716e-05 +illusion_1L,sr,23,6.9,omega,front,4.186786469055237e-05 +illusion_1L,sr,23,6.9,omega,upper,4.123222200376364e-05 +illusion_1L,sr,23,6.9,omega,lower,4.123222200376364e-05 +illusion_1L,sr,24,7.2,omega,front,-4.18376960801492e-06 +illusion_1L,sr,24,7.2,omega,upper,4.696169761610226e-05 +illusion_1L,sr,24,7.2,omega,lower,4.696169761610226e-05 +illusion_1L,sr,25,7.5,omega,front,-5.6358873192384926e-05 +illusion_1L,sr,25,7.5,omega,upper,5.704152310365446e-05 +illusion_1L,sr,25,7.5,omega,lower,5.704152310365446e-05 +illusion_1L,sr,26,7.8,omega,front,-0.00010969825532970153 +illusion_1L,sr,26,7.8,omega,upper,6.887907387382066e-05 +illusion_1L,sr,26,7.8,omega,lower,6.887907387382066e-05 +illusion_1L,sr,27,8.1,omega,front,-0.00016047634281826477 +illusion_1L,sr,27,8.1,omega,upper,8.060446614249033e-05 +illusion_1L,sr,27,8.1,omega,lower,8.060446614249033e-05 +illusion_1L,sr,28,8.4,omega,front,-0.0002103622279941958 +illusion_1L,sr,28,8.4,omega,upper,9.4238795394333e-05 +illusion_1L,sr,28,8.4,omega,lower,9.4238795394333e-05 +illusion_1L,sr,29,8.7,omega,front,-0.0002648315658823949 +illusion_1L,sr,29,8.7,omega,upper,0.0001144418973065263 +illusion_1L,sr,29,8.7,omega,lower,0.0001144418973065263 +illusion_1L,sr,30,9.0,omega,front,-0.00030663911720353403 +illusion_1L,sr,30,9.0,omega,upper,0.00012904107953483986 +illusion_1L,sr,30,9.0,omega,lower,0.00012904107953483986 +illusion_1L,sr,31,9.3,omega,front,-0.00033580181352939553 +illusion_1L,sr,31,9.3,omega,upper,0.0001386600001112448 +illusion_1L,sr,31,9.3,omega,lower,0.0001386600001112448 +illusion_1L,sr,32,9.6,omega,front,-0.00035319917640542624 +illusion_1L,sr,32,9.6,omega,upper,0.00014456259686202206 +illusion_1L,sr,32,9.6,omega,lower,0.00014456259686202206 +illusion_1L,sr,33,9.9,omega,front,-0.00033788428681253563 +illusion_1L,sr,33,9.9,omega,upper,0.00013180496195818486 +illusion_1L,sr,33,9.9,omega,lower,0.00013180496195818486 +illusion_1L,sr,34,10.2,omega,front,-0.0003006936632929619 +illusion_1L,sr,34,10.2,omega,upper,0.00010871982034710904 +illusion_1L,sr,34,10.2,omega,lower,0.00010871982034710904 +illusion_1L,sr,35,10.5,omega,front,-0.00025205795840661126 +illusion_1L,sr,35,10.5,omega,upper,8.291087028732561e-05 +illusion_1L,sr,35,10.5,omega,lower,8.291087028732561e-05 +illusion_1L,sr,36,10.8,omega,front,-0.000182796447593441 +illusion_1L,sr,36,10.8,omega,upper,4.702609560569754e-05 +illusion_1L,sr,36,10.8,omega,lower,4.702609560569754e-05 +illusion_1L,sr,37,11.1,omega,front,-0.00011671472329057562 +illusion_1L,sr,37,11.1,omega,upper,1.7584140531559794e-05 +illusion_1L,sr,37,11.1,omega,lower,1.7584140531559794e-05 +illusion_1L,sr,38,11.4,omega,front,-6.272994049716291e-05 +illusion_1L,sr,38,11.4,omega,upper,-2.0512689396734452e-07 +illusion_1L,sr,38,11.4,omega,lower,-2.0512689396734452e-07 +illusion_1L,sr,39,11.7,omega,front,1.2457713398835586e-06 +illusion_1L,sr,39,11.7,omega,upper,-2.4148382920210385e-05 +illusion_1L,sr,39,11.7,omega,lower,-2.4148382920210385e-05 +illusion_1L,sr,40,12.0,omega,front,5.412577569007035e-05 +illusion_1L,sr,40,12.0,omega,upper,-4.0053267937503765e-05 +illusion_1L,sr,40,12.0,omega,lower,-4.0053267937503765e-05 +illusion_1L,sr,41,12.3,omega,front,0.00010440933769279709 +illusion_1L,sr,41,12.3,omega,upper,-5.538556995100565e-05 +illusion_1L,sr,41,12.3,omega,lower,-5.538556995100565e-05 +illusion_1L,sr,42,12.6,omega,front,0.00016218070946359304 +illusion_1L,sr,42,12.6,omega,upper,-7.854755368002036e-05 +illusion_1L,sr,42,12.6,omega,lower,-7.854755368002036e-05 +illusion_1L,sr,43,12.9,omega,front,0.00020309925149829405 +illusion_1L,sr,43,12.9,omega,upper,-9.230302982415812e-05 +illusion_1L,sr,43,12.9,omega,lower,-9.230302982415812e-05 +illusion_1L,sr,44,13.2,omega,front,0.00024074717390375685 +illusion_1L,sr,44,13.2,omega,upper,-0.00010727083135239512 +illusion_1L,sr,44,13.2,omega,lower,-0.00010727083135239512 +illusion_1L,sr,45,13.5,omega,front,0.0002723957231531106 +illusion_1L,sr,45,13.5,omega,upper,-0.00012185040928138769 +illusion_1L,sr,45,13.5,omega,lower,-0.00012185040928138769 +illusion_1L,sr,46,13.8,omega,front,0.00026692014964049967 +illusion_1L,sr,46,13.8,omega,upper,-0.00011340008668710863 +illusion_1L,sr,46,13.8,omega,lower,-0.00011340008668710863 +illusion_1L,sr,47,14.1,omega,front,0.0002534145517132605 +illusion_1L,sr,47,14.1,omega,upper,-0.00010368077044161927 +illusion_1L,sr,47,14.1,omega,lower,-0.00010368077044161927 +illusion_1L,sr,48,14.4,omega,front,0.00022070911837482777 +illusion_1L,sr,48,14.4,omega,upper,-8.442672596985265e-05 +illusion_1L,sr,48,14.4,omega,lower,-8.442672596985265e-05 +illusion_1L,sr,49,14.7,omega,front,0.0001693520811237502 +illusion_1L,sr,49,14.7,omega,upper,-5.576571550013315e-05 +illusion_1L,sr,49,14.7,omega,lower,-5.576571550013315e-05 +illusion_1L,sr,50,15.0,omega,front,0.00011844302325578871 +illusion_1L,sr,50,15.0,omega,upper,-3.112518680122661e-05 +illusion_1L,sr,50,15.0,omega,lower,-3.112518680122661e-05 +illusion_1L,sr,51,15.3,omega,front,6.613274958122445e-05 +illusion_1L,sr,51,15.3,omega,upper,-8.191056885453462e-06 +illusion_1L,sr,51,15.3,omega,lower,-8.191056885453462e-06 +illusion_1L,sr,52,15.6,omega,front,7.515840447487043e-06 +illusion_1L,sr,52,15.6,omega,upper,1.7802203834537712e-05 +illusion_1L,sr,52,15.6,omega,lower,1.7802203834537712e-05 +illusion_1L,sr,53,15.9,omega,front,-3.6572432316803776e-05 +illusion_1L,sr,53,15.9,omega,upper,3.258412194203521e-05 +illusion_1L,sr,53,15.9,omega,lower,3.258412194203521e-05 +illusion_1L,sr,54,16.2,omega,front,-8.143224519605419e-05 +illusion_1L,sr,54,16.2,omega,upper,4.849610708380242e-05 +illusion_1L,sr,54,16.2,omega,lower,4.849610708380242e-05 +illusion_1L,sr,55,16.5,omega,front,-0.00012968732329433062 +illusion_1L,sr,55,16.5,omega,upper,6.830071096830939e-05 +illusion_1L,sr,55,16.5,omega,lower,6.830071096830939e-05 +illusion_1L,sr,56,16.8,omega,front,-0.00016738173300644734 +illusion_1L,sr,56,16.8,omega,upper,8.229883935331763e-05 +illusion_1L,sr,56,16.8,omega,lower,8.229883935331763e-05 +illusion_1L,sr,57,17.1,omega,front,-0.00020167387786797455 +illusion_1L,sr,57,17.1,omega,upper,9.62578579607977e-05 +illusion_1L,sr,57,17.1,omega,lower,9.62578579607977e-05 +illusion_1L,sr,58,17.4,omega,front,-0.00022389073736079124 +illusion_1L,sr,58,17.4,omega,upper,0.00010420823134351886 +illusion_1L,sr,58,17.4,omega,lower,0.00010420823134351886 +illusion_1L,sr,59,17.7,omega,front,-0.00022929420239348368 +illusion_1L,sr,59,17.7,omega,upper,0.00010300990444055456 +illusion_1L,sr,59,17.7,omega,lower,0.00010300990444055456 +illusion_1L,sr,60,18.0,omega,front,-0.00021846776305819578 +illusion_1L,sr,60,18.0,omega,upper,9.334177575867575e-05 +illusion_1L,sr,60,18.0,omega,lower,9.334177575867575e-05 +illusion_1L,sr,61,18.3,omega,front,-0.00019960678214437575 +illusion_1L,sr,61,18.3,omega,upper,8.138291838482248e-05 +illusion_1L,sr,61,18.3,omega,lower,8.138291838482248e-05 +illusion_1L,sr,62,18.6,omega,front,-0.00016702273139401327 +illusion_1L,sr,62,18.6,omega,upper,6.273478441957942e-05 +illusion_1L,sr,62,18.6,omega,lower,6.273478441957942e-05 +illusion_1L,sr,63,18.9,omega,front,-0.00012972783359849153 +illusion_1L,sr,63,18.9,omega,upper,4.36481863336749e-05 +illusion_1L,sr,63,18.9,omega,lower,4.36481863336749e-05 +illusion_1L,sr,64,19.2,omega,front,-8.902967757674421e-05 +illusion_1L,sr,64,19.2,omega,upper,2.4469159809488924e-05 +illusion_1L,sr,64,19.2,omega,lower,2.4469159809488924e-05 +illusion_1L,sr,65,19.5,omega,front,-4.865784999259146e-05 +illusion_1L,sr,65,19.5,omega,upper,7.18503888770157e-06 +illusion_1L,sr,65,19.5,omega,lower,7.18503888770157e-06 +illusion_1L,sr,66,19.8,omega,front,-8.455755143178223e-06 +illusion_1L,sr,66,19.8,omega,upper,-9.120418935928514e-06 +illusion_1L,sr,66,19.8,omega,lower,-9.120418935928514e-06 +illusion_1L,sr,67,20.1,omega,front,2.8558420404546878e-05 +illusion_1L,sr,67,20.1,omega,upper,-2.300358539393236e-05 +illusion_1L,sr,67,20.1,omega,lower,-2.300358539393236e-05 +illusion_1L,sr,68,20.4,omega,front,6.526370687965002e-05 +illusion_1L,sr,68,20.4,omega,upper,-3.7287645939832124e-05 +illusion_1L,sr,68,20.4,omega,lower,-3.7287645939832124e-05 +illusion_1L,sr,69,20.7,omega,front,0.00010243186456071148 +illusion_1L,sr,69,20.7,omega,upper,-5.3068418539153064e-05 +illusion_1L,sr,69,20.7,omega,lower,-5.3068418539153064e-05 +illusion_1L,sr,70,21.0,omega,front,0.0001285082269613317 +illusion_1L,sr,70,21.0,omega,upper,-6.228514230403083e-05 +illusion_1L,sr,70,21.0,omega,lower,-6.228514230403083e-05 +illusion_1L,sr,71,21.3,omega,front,0.0001496540055489648 +illusion_1L,sr,71,21.3,omega,upper,-6.991416784681493e-05 +illusion_1L,sr,71,21.3,omega,lower,-6.991416784681493e-05 +illusion_1L,sr,72,21.6,omega,front,0.00016076161633099052 +illusion_1L,sr,72,21.6,omega,upper,-7.25141412037996e-05 +illusion_1L,sr,72,21.6,omega,lower,-7.25141412037996e-05 +illusion_1L,sr,73,21.9,omega,front,0.00015651475017061073 +illusion_1L,sr,73,21.9,omega,upper,-6.650068713330695e-05 +illusion_1L,sr,73,21.9,omega,lower,-6.650068713330695e-05 +illusion_1L,sr,74,22.2,omega,front,0.00014564047587372828 +illusion_1L,sr,74,22.2,omega,upper,-5.845335905112943e-05 +illusion_1L,sr,74,22.2,omega,lower,-5.845335905112943e-05 +illusion_1L,sr,75,22.5,omega,front,0.00012829431126282155 +illusion_1L,sr,75,22.5,omega,upper,-4.843400166154609e-05 +illusion_1L,sr,75,22.5,omega,lower,-4.843400166154609e-05 +illusion_1L,sr,76,22.8,omega,front,0.00010174137381711912 +illusion_1L,sr,76,22.8,omega,upper,-3.4252979311153245e-05 +illusion_1L,sr,76,22.8,omega,lower,-3.4252979311153245e-05 +illusion_1L,sr,77,23.1,omega,front,7.783793752440871e-05 +illusion_1L,sr,77,23.1,omega,upper,-2.4183277123661918e-05 +illusion_1L,sr,77,23.1,omega,lower,-2.4183277123661918e-05 +illusion_1L,sr,78,23.4,omega,front,4.945368738988778e-05 +illusion_1L,sr,78,23.4,omega,upper,-1.2410404168137212e-05 +illusion_1L,sr,78,23.4,omega,lower,-1.2410404168137212e-05 +illusion_1L,sr,79,23.7,omega,front,1.3640187044513462e-05 +illusion_1L,sr,79,23.7,omega,upper,3.7958485060712174e-06 +illusion_1L,sr,79,23.7,omega,lower,3.7958485060712174e-06 +illusion_1L,sr,80,24.0,omega,front,-1.2108232580153978e-05 +illusion_1L,sr,80,24.0,omega,upper,1.2104767031950269e-05 +illusion_1L,sr,80,24.0,omega,lower,1.2104767031950269e-05 +illusion_1L,sr,81,24.3,omega,front,-4.015062718913255e-05 +illusion_1L,sr,81,24.3,omega,upper,2.2229842983546588e-05 +illusion_1L,sr,81,24.3,omega,lower,2.2229842983546588e-05 +illusion_1L,sr,82,24.6,omega,front,-7.24281401069123e-05 +illusion_1L,sr,82,24.6,omega,upper,3.609666093224162e-05 +illusion_1L,sr,82,24.6,omega,lower,3.609666093224162e-05 +illusion_1L,sr,83,24.9,omega,front,-9.066378913754829e-05 +illusion_1L,sr,83,24.9,omega,upper,4.065733728518359e-05 +illusion_1L,sr,83,24.9,omega,lower,4.065733728518359e-05 +illusion_1L,sr,84,25.2,omega,front,-0.00011005720139582093 +illusion_1L,sr,84,25.2,omega,upper,4.754229241190455e-05 +illusion_1L,sr,84,25.2,omega,lower,4.754229241190455e-05 +illusion_1L,sr,85,25.5,omega,front,-0.00012792340458077234 +illusion_1L,sr,85,25.5,omega,upper,5.511330951472868e-05 +illusion_1L,sr,85,25.5,omega,lower,5.511330951472868e-05 +illusion_1L,sr,86,25.8,omega,front,-0.00013047608261146522 +illusion_1L,sr,86,25.8,omega,upper,5.3449880496344234e-05 +illusion_1L,sr,86,25.8,omega,lower,5.3449880496344234e-05 +illusion_1L,sr,87,26.1,omega,front,-0.00013048566215868168 +illusion_1L,sr,87,26.1,omega,upper,5.216918888660431e-05 +illusion_1L,sr,87,26.1,omega,lower,5.216918888660431e-05 +illusion_1L,sr,88,26.4,omega,front,-0.00012068930698197617 +illusion_1L,sr,88,26.4,omega,upper,4.5983182775753974e-05 +illusion_1L,sr,88,26.4,omega,lower,4.5983182775753974e-05 +illusion_1L,sr,89,26.7,omega,front,-0.00010476107848018667 +illusion_1L,sr,89,26.7,omega,upper,3.7551551419840385e-05 +illusion_1L,sr,89,26.7,omega,lower,3.7551551419840385e-05 +illusion_1L,sr,90,27.0,omega,front,-8.720222665590277e-05 +illusion_1L,sr,90,27.0,omega,upper,2.9905927389100446e-05 +illusion_1L,sr,90,27.0,omega,lower,2.9905927389100446e-05 +illusion_1L,sr,91,27.3,omega,front,-6.457835552341369e-05 +illusion_1L,sr,91,27.3,omega,upper,2.0159928636166585e-05 +illusion_1L,sr,91,27.3,omega,lower,2.0159928636166585e-05 +illusion_1L,sr,92,27.6,omega,front,-3.8409232577910765e-05 +illusion_1L,sr,92,27.6,omega,upper,9.006756927620527e-06 +illusion_1L,sr,92,27.6,omega,lower,9.006756927620527e-06 +illusion_1L,sr,93,27.9,omega,front,-1.896499675277153e-05 +illusion_1L,sr,93,27.9,omega,upper,3.5370981532450127e-06 +illusion_1L,sr,93,27.9,omega,lower,3.5370981532450127e-06 +illusion_1L,sr,94,28.2,omega,front,3.875184678783206e-06 +illusion_1L,sr,94,28.2,omega,upper,-4.225580490770894e-06 +illusion_1L,sr,94,28.2,omega,lower,-4.225580490770894e-06 +illusion_1L,sr,95,28.5,omega,front,2.5958136861171377e-05 +illusion_1L,sr,95,28.5,omega,upper,-1.1681953258078897e-05 +illusion_1L,sr,95,28.5,omega,lower,-1.1681953258078897e-05 +illusion_1L,sr,96,28.8,omega,front,4.440465849380033e-05 +illusion_1L,sr,96,28.8,omega,upper,-1.7131925723739007e-05 +illusion_1L,sr,96,28.8,omega,lower,-1.7131925723739007e-05 +illusion_1L,sr,97,29.1,omega,front,6.520939568641422e-05 +illusion_1L,sr,97,29.1,omega,upper,-2.5385972785585827e-05 +illusion_1L,sr,97,29.1,omega,lower,-2.5385972785585827e-05 +illusion_1L,sr,98,29.4,omega,front,8.361070618313635e-05 +illusion_1L,sr,98,29.4,omega,upper,-3.322313464069103e-05 +illusion_1L,sr,98,29.4,omega,lower,-3.322313464069103e-05 +illusion_1L,sr,99,29.7,omega,front,9.260996291811069e-05 +illusion_1L,sr,99,29.7,omega,upper,-3.5733314012312e-05 +illusion_1L,sr,99,29.7,omega,lower,-3.5733314012312e-05 +illusion_1L,sr,100,30.0,omega,front,9.852059117454328e-05 +illusion_1L,sr,100,30.0,omega,upper,-3.779439693785684e-05 +illusion_1L,sr,100,30.0,omega,lower,-3.779439693785684e-05 +illusion_1L,sr,101,30.3,omega,front,9.932855029386276e-05 +illusion_1L,sr,101,30.3,omega,upper,-3.8019001910542386e-05 +illusion_1L,sr,101,30.3,omega,lower,-3.8019001910542386e-05 +illusion_1L,sr,102,30.6,omega,front,8.936162125815703e-05 +illusion_1L,sr,102,30.6,omega,upper,-3.2234166198081424e-05 +illusion_1L,sr,102,30.6,omega,lower,-3.2234166198081424e-05 +illusion_1L,sr,103,30.9,omega,front,7.501841639159692e-05 +illusion_1L,sr,103,30.9,omega,upper,-2.5089632510987766e-05 +illusion_1L,sr,103,30.9,omega,lower,-2.5089632510987766e-05 +illusion_1L,sr,104,31.2,omega,front,6.597950724544777e-05 +illusion_1L,sr,104,31.2,omega,upper,-2.351386754119063e-05 +illusion_1L,sr,104,31.2,omega,lower,-2.351386754119063e-05 +illusion_1L,sr,105,31.5,omega,front,4.842109524412001e-05 +illusion_1L,sr,105,31.5,omega,upper,-1.6910129121926187e-05 +illusion_1L,sr,105,31.5,omega,lower,-1.6910129121926187e-05 +illusion_1L,sr,106,31.8,omega,front,3.048533693530149e-05 +illusion_1L,sr,106,31.8,omega,upper,-1.090976470650826e-05 +illusion_1L,sr,106,31.8,omega,lower,-1.090976470650826e-05 +illusion_1L,sr,107,32.1,omega,front,1.900764308628694e-05 +illusion_1L,sr,107,32.1,omega,upper,-1.0127505171984808e-05 +illusion_1L,sr,107,32.1,omega,lower,-1.0127505171984808e-05 +illusion_1L,sr,108,32.4,omega,front,-9.937180715689515e-07 +illusion_1L,sr,108,32.4,omega,upper,-3.061614714531423e-06 +illusion_1L,sr,108,32.4,omega,lower,-3.061614714531423e-06 +illusion_1L,sr,109,32.7,omega,front,-1.8050887616469052e-05 +illusion_1L,sr,109,32.7,omega,upper,2.182369871698963e-06 +illusion_1L,sr,109,32.7,omega,lower,2.182369871698963e-06 +illusion_1L,sr,110,33.0,omega,front,-3.067978967345751e-05 +illusion_1L,sr,110,33.0,omega,upper,4.880992711134985e-06 +illusion_1L,sr,110,33.0,omega,lower,4.880992711134985e-06 +illusion_1L,sr,111,33.3,omega,front,-5.157169050592325e-05 +illusion_1L,sr,111,33.3,omega,upper,1.4698239157786772e-05 +illusion_1L,sr,111,33.3,omega,lower,1.4698239157786772e-05 +illusion_1L,sr,112,33.6,omega,front,-6.62924623886197e-05 +illusion_1L,sr,112,33.6,omega,upper,2.1200720904884437e-05 +illusion_1L,sr,112,33.6,omega,lower,2.1200720904884437e-05 +illusion_1L,sr,113,33.9,omega,front,-7.195927715606975e-05 +illusion_1L,sr,113,33.9,omega,upper,2.2481231149466125e-05 +illusion_1L,sr,113,33.9,omega,lower,2.2481231149466125e-05 +illusion_1L,sr,114,34.2,omega,front,-8.469336260732722e-05 +illusion_1L,sr,114,34.2,omega,upper,3.057885175765038e-05 +illusion_1L,sr,114,34.2,omega,lower,3.057885175765038e-05 +illusion_1L,sr,115,34.5,omega,front,-8.496123884246629e-05 +illusion_1L,sr,115,34.5,omega,upper,3.1104323720839366e-05 +illusion_1L,sr,115,34.5,omega,lower,3.1104323720839366e-05 +illusion_1L,sr,116,34.8,omega,front,-7.990165735801303e-05 +illusion_1L,sr,116,34.8,omega,upper,2.933471781005524e-05 +illusion_1L,sr,116,34.8,omega,lower,2.933471781005524e-05 +illusion_1L,sr,117,35.1,omega,front,-8.06982873518327e-05 +illusion_1L,sr,117,35.1,omega,upper,3.338384656168342e-05 +illusion_1L,sr,117,35.1,omega,lower,3.338384656168342e-05 +illusion_1L,sr,118,35.4,omega,front,-6.916757707721586e-05 +illusion_1L,sr,118,35.4,omega,upper,2.9595870157882835e-05 +illusion_1L,sr,118,35.4,omega,lower,2.9595870157882835e-05 +illusion_1L,sr,119,35.7,omega,front,-5.5696747868733064e-05 +illusion_1L,sr,119,35.7,omega,upper,2.536210314459591e-05 +illusion_1L,sr,119,35.7,omega,lower,2.536210314459591e-05 +illusion_1L,sr,120,36.0,omega,front,-4.940276108482524e-05 +illusion_1L,sr,120,36.0,omega,upper,2.705858210889464e-05 +illusion_1L,sr,120,36.0,omega,lower,2.705858210889464e-05 +illusion_1L,sr,121,36.3,omega,front,-3.0829499412820607e-05 +illusion_1L,sr,121,36.3,omega,upper,1.996160291828718e-05 +illusion_1L,sr,121,36.3,omega,lower,1.996160291828718e-05 +illusion_1L,sr,122,36.6,omega,front,-1.2338953922570242e-05 +illusion_1L,sr,122,36.6,omega,upper,1.2877807157222798e-05 +illusion_1L,sr,122,36.6,omega,lower,1.2877807157222798e-05 +illusion_1L,sr,123,36.9,omega,front,-1.459631842398411e-06 +illusion_1L,sr,123,36.9,omega,upper,1.1057931901165638e-05 +illusion_1L,sr,123,36.9,omega,lower,1.1057931901165638e-05 +illusion_1L,sr,124,37.2,omega,front,2.1375124076501163e-05 +illusion_1L,sr,124,37.2,omega,upper,-2.4130832121074114e-07 +illusion_1L,sr,124,37.2,omega,lower,-2.4130832121074114e-07 +illusion_1L,sr,125,37.5,omega,front,3.7242438244456804e-05 +illusion_1L,sr,125,37.5,omega,upper,-7.2831715631507815e-06 +illusion_1L,sr,125,37.5,omega,lower,-7.2831715631507815e-06 +illusion_1L,sr,126,37.8,omega,front,4.5911270086666724e-05 +illusion_1L,sr,126,37.8,omega,upper,-1.0133898589529852e-05 +illusion_1L,sr,126,37.8,omega,lower,-1.0133898589529852e-05 +illusion_1L,sr,127,38.1,omega,front,6.135764984857441e-05 +illusion_1L,sr,127,38.1,omega,upper,-1.9299275896302592e-05 +illusion_1L,sr,127,38.1,omega,lower,-1.9299275896302592e-05 +illusion_1L,sr,128,38.4,omega,front,6.758741353390698e-05 +illusion_1L,sr,128,38.4,omega,upper,-2.3072428833923604e-05 +illusion_1L,sr,128,38.4,omega,lower,-2.3072428833923604e-05 +illusion_1L,sr,129,38.7,omega,front,6.67381986559388e-05 +illusion_1L,sr,129,38.7,omega,upper,-2.3077819594107056e-05 +illusion_1L,sr,129,38.7,omega,lower,-2.3077819594107056e-05 +illusion_1L,sr,130,39.0,omega,front,7.22781174562024e-05 +illusion_1L,sr,130,39.0,omega,upper,-2.9223712223667187e-05 +illusion_1L,sr,130,39.0,omega,lower,-2.9223712223667187e-05 +illusion_1L,sr,131,39.3,omega,front,6.728607582168069e-05 +illusion_1L,sr,131,39.3,omega,upper,-2.8869675503347578e-05 +illusion_1L,sr,131,39.3,omega,lower,-2.8869675503347578e-05 +illusion_1L,sr,132,39.6,omega,front,5.9597762010065065e-05 +illusion_1L,sr,132,39.6,omega,upper,-2.7603181408377628e-05 +illusion_1L,sr,132,39.6,omega,lower,-2.7603181408377628e-05 +illusion_1L,sr,133,39.9,omega,front,5.415277872066755e-05 +illusion_1L,sr,133,39.9,omega,upper,-2.879939767411986e-05 +illusion_1L,sr,133,39.9,omega,lower,-2.879939767411986e-05 +illusion_1L,sr,134,40.2,omega,front,3.990233586398796e-05 +illusion_1L,sr,134,40.2,omega,upper,-2.3999033072192552e-05 +illusion_1L,sr,134,40.2,omega,lower,-2.3999033072192552e-05 +illusion_1L,sr,135,40.5,omega,front,2.3758477509998094e-05 +illusion_1L,sr,135,40.5,omega,upper,-1.801062035444564e-05 +illusion_1L,sr,135,40.5,omega,lower,-1.801062035444564e-05 +illusion_1L,sr,136,40.8,omega,front,1.0636801670539791e-05 +illusion_1L,sr,136,40.8,omega,upper,-1.4183382607038785e-05 +illusion_1L,sr,136,40.8,omega,lower,-1.4183382607038785e-05 +illusion_1L,sr,137,41.1,omega,front,-8.700166402941454e-06 +illusion_1L,sr,137,41.1,omega,upper,-5.415176496520371e-06 +illusion_1L,sr,137,41.1,omega,lower,-5.415176496520371e-06 +illusion_1L,sr,138,41.4,omega,front,-2.685235754066019e-05 +illusion_1L,sr,138,41.4,omega,upper,3.061325646000375e-06 +illusion_1L,sr,138,41.4,omega,lower,3.061325646000375e-06 +illusion_1L,sr,139,41.7,omega,front,-3.9122085562948303e-05 +illusion_1L,sr,139,41.7,omega,upper,8.006063282523443e-06 +illusion_1L,sr,139,41.7,omega,lower,8.006063282523443e-06 +illusion_1L,sr,140,42.0,omega,front,-5.3094560214801344e-05 +illusion_1L,sr,140,42.0,omega,upper,1.524598115627253e-05 +illusion_1L,sr,140,42.0,omega,lower,1.524598115627253e-05 +illusion_1L,sr,141,42.3,omega,front,-6.290913702041649e-05 +illusion_1L,sr,141,42.3,omega,upper,2.0613680013286536e-05 +illusion_1L,sr,141,42.3,omega,lower,2.0613680013286536e-05 +illusion_1L,sr,142,42.6,omega,front,-6.548832226960982e-05 +illusion_1L,sr,142,42.6,omega,upper,2.1948952947836442e-05 +illusion_1L,sr,142,42.6,omega,lower,2.1948952947836442e-05 +illusion_1L,sr,143,42.9,omega,front,-7.133986591327183e-05 +illusion_1L,sr,143,42.9,omega,upper,2.7054754294290086e-05 +illusion_1L,sr,143,42.9,omega,lower,2.7054754294290086e-05 +illusion_1L,sr,144,43.2,omega,front,-6.660688492038845e-05 +illusion_1L,sr,144,43.2,omega,upper,2.5617858464386802e-05 +illusion_1L,sr,144,43.2,omega,lower,2.5617858464386802e-05 +illusion_1L,sr,145,43.5,omega,front,-5.469048976977184e-05 +illusion_1L,sr,145,43.5,omega,upper,2.011489117470136e-05 +illusion_1L,sr,145,43.5,omega,lower,2.011489117470136e-05 +illusion_1L,sr,146,43.8,omega,front,-4.885113585348943e-05 +illusion_1L,sr,146,43.8,omega,upper,2.0137100072418722e-05 +illusion_1L,sr,146,43.8,omega,lower,2.0137100072418722e-05 +illusion_1L,sr,147,44.1,omega,front,-3.5642591402764504e-05 +illusion_1L,sr,147,44.1,omega,upper,1.551553015444287e-05 +illusion_1L,sr,147,44.1,omega,lower,1.551553015444287e-05 +illusion_1L,sr,148,44.4,omega,front,-1.9263136116740256e-05 +illusion_1L,sr,148,44.4,omega,upper,9.080846723883507e-06 +illusion_1L,sr,148,44.4,omega,lower,9.080846723883507e-06 +illusion_1L,sr,149,44.7,omega,front,-1.3782401878778893e-05 +illusion_1L,sr,149,44.7,omega,upper,1.0903861893186703e-05 +illusion_1L,sr,149,44.7,omega,lower,1.0903861893186703e-05 +illusion_1L,sr,150,45.0,omega,front,4.2391878966496073e-07 +illusion_1L,sr,150,45.0,omega,upper,6.156257257756721e-06 +illusion_1L,sr,150,45.0,omega,lower,6.156257257756721e-06 +illusion_1L,sr,151,45.3,omega,front,1.6200572101035295e-05 +illusion_1L,sr,151,45.3,omega,upper,-1.5990309815944181e-07 +illusion_1L,sr,151,45.3,omega,lower,-1.5990309815944181e-07 +illusion_1L,sr,152,45.6,omega,front,2.182290307833349e-05 +illusion_1L,sr,152,45.6,omega,upper,3.6615122930249573e-07 +illusion_1L,sr,152,45.6,omega,lower,3.6615122930249573e-07 +illusion_1L,sr,153,45.9,omega,front,3.789800974958513e-05 +illusion_1L,sr,153,45.9,omega,upper,-7.721500653805683e-06 +illusion_1L,sr,153,45.9,omega,lower,-7.721500653805683e-06 +illusion_1L,sr,154,46.2,omega,front,4.875996814269638e-05 +illusion_1L,sr,154,46.2,omega,upper,-1.3001299302672388e-05 +illusion_1L,sr,154,46.2,omega,lower,-1.3001299302672388e-05 +illusion_1L,sr,155,46.5,omega,front,4.8111957867854886e-05 +illusion_1L,sr,155,46.5,omega,upper,-1.0974370022333591e-05 +illusion_1L,sr,155,46.5,omega,lower,-1.0974370022333591e-05 +illusion_1L,sr,156,46.8,omega,front,5.5352571528162614e-05 +illusion_1L,sr,156,46.8,omega,upper,-1.6060511940425153e-05 +illusion_1L,sr,156,46.8,omega,lower,-1.6060511940425153e-05 +illusion_1L,sr,157,47.1,omega,front,5.264875221114282e-05 +illusion_1L,sr,157,47.1,omega,upper,-1.5096244988193758e-05 +illusion_1L,sr,157,47.1,omega,lower,-1.5096244988193758e-05 +illusion_1L,sr,158,47.4,omega,front,4.400023535099905e-05 +illusion_1L,sr,158,47.4,omega,upper,-1.1010932263521775e-05 +illusion_1L,sr,158,47.4,omega,lower,-1.1010932263521775e-05 +illusion_1L,sr,159,47.7,omega,front,4.220898516881122e-05 +illusion_1L,sr,159,47.7,omega,upper,-1.3119605804831104e-05 +illusion_1L,sr,159,47.7,omega,lower,-1.3119605804831104e-05 +illusion_1L,sr,160,48.0,omega,front,3.481093690491276e-05 +illusion_1L,sr,160,48.0,omega,upper,-1.2026731080879774e-05 +illusion_1L,sr,160,48.0,omega,lower,-1.2026731080879774e-05 +illusion_1L,sr,161,48.3,omega,front,2.3128345868504463e-05 +illusion_1L,sr,161,48.3,omega,upper,-8.453762520030679e-06 +illusion_1L,sr,161,48.3,omega,lower,-8.453762520030679e-06 +illusion_1L,sr,162,48.6,omega,front,2.0887932759219478e-05 +illusion_1L,sr,162,48.6,omega,upper,-1.2249272638722568e-05 +illusion_1L,sr,162,48.6,omega,lower,-1.2249272638722568e-05 +illusion_1L,sr,163,48.9,omega,front,1.0332186263796954e-05 +illusion_1L,sr,163,48.9,omega,upper,-9.993263955957481e-06 +illusion_1L,sr,163,48.9,omega,lower,-9.993263955957481e-06 +illusion_1L,sr,164,49.2,omega,front,-2.3890408420173744e-06 +illusion_1L,sr,164,49.2,omega,upper,-5.939317845795027e-06 +illusion_1L,sr,164,49.2,omega,lower,-5.939317845795027e-06 +illusion_1L,sr,165,49.5,omega,front,-9.285513237829411e-06 +illusion_1L,sr,165,49.5,omega,upper,-5.747616707863536e-06 +illusion_1L,sr,165,49.5,omega,lower,-5.747616707863536e-06 +illusion_1L,sr,166,49.8,omega,front,-2.4808076421617316e-05 +illusion_1L,sr,166,49.8,omega,upper,1.4688252634205077e-06 +illusion_1L,sr,166,49.8,omega,lower,1.4688252634205077e-06 +illusion_1L,sr,167,50.1,omega,front,-3.4460191742148735e-05 +illusion_1L,sr,167,50.1,omega,upper,5.17602457565023e-06 +illusion_1L,sr,167,50.1,omega,lower,5.17602457565023e-06 +illusion_1L,sr,168,50.4,omega,front,-3.8759303181113915e-05 +illusion_1L,sr,168,50.4,omega,upper,5.927220401673455e-06 +illusion_1L,sr,168,50.4,omega,lower,5.927220401673455e-06 +illusion_1L,sr,169,50.7,omega,front,-4.751043726531929e-05 +illusion_1L,sr,169,50.7,omega,upper,1.1086663178292711e-05 +illusion_1L,sr,169,50.7,omega,lower,1.1086663178292711e-05 +illusion_1L,sr,170,51.0,omega,front,-4.8213533858151514e-05 +illusion_1L,sr,170,51.0,omega,upper,1.1506676919151166e-05 +illusion_1L,sr,170,51.0,omega,lower,1.1506676919151166e-05 +illusion_1L,sr,171,51.3,omega,front,-4.33721770097581e-05 +illusion_1L,sr,171,51.3,omega,upper,9.059190589618266e-06 +illusion_1L,sr,171,51.3,omega,lower,9.059190589618266e-06 +illusion_1L,sr,172,51.6,omega,front,-4.3707455250793227e-05 +illusion_1L,sr,172,51.6,omega,upper,1.1624429758284455e-05 +illusion_1L,sr,172,51.6,omega,lower,1.1624429758284455e-05 +illusion_1L,sr,173,51.9,omega,front,-3.6814151929815513e-05 +illusion_1L,sr,173,51.9,omega,upper,9.904704420002665e-06 +illusion_1L,sr,173,51.9,omega,lower,9.904704420002665e-06 +illusion_1L,sr,174,52.2,omega,front,-2.8308055708644932e-05 +illusion_1L,sr,174,52.2,omega,upper,7.860171291118878e-06 +illusion_1L,sr,174,52.2,omega,lower,7.860171291118878e-06 +illusion_1L,sr,175,52.5,omega,front,-2.6957888758394072e-05 +illusion_1L,sr,175,52.5,omega,upper,1.1737559840468547e-05 +illusion_1L,sr,175,52.5,omega,lower,1.1737559840468547e-05 +illusion_1L,sr,176,52.8,omega,front,-1.9133573149437204e-05 +illusion_1L,sr,176,52.8,omega,upper,1.1165512280934369e-05 +illusion_1L,sr,176,52.8,omega,lower,1.1165512280934369e-05 +illusion_1L,sr,177,53.1,omega,front,-1.0107007502023054e-05 +illusion_1L,sr,177,53.1,omega,upper,9.767877307817852e-06 +illusion_1L,sr,177,53.1,omega,lower,9.767877307817852e-06 +illusion_1L,sr,178,53.4,omega,front,-3.713775163263575e-06 +illusion_1L,sr,178,53.4,omega,upper,1.0115154188573353e-05 +illusion_1L,sr,178,53.4,omega,lower,1.0115154188573353e-05 +illusion_1L,sr,179,53.7,omega,front,1.0534393087795712e-05 +illusion_1L,sr,179,53.7,omega,upper,4.2267589882559986e-06 +illusion_1L,sr,179,53.7,omega,lower,4.2267589882559986e-06 +illusion_1L,sr,180,54.0,omega,front,2.0370089224083613e-05 +illusion_1L,sr,180,54.0,omega,upper,9.83901764571582e-07 +illusion_1L,sr,180,54.0,omega,lower,9.83901764571582e-07 +illusion_1L,sr,181,54.3,omega,front,2.693639928882177e-05 +illusion_1L,sr,181,54.3,omega,upper,-6.573354958020611e-07 +illusion_1L,sr,181,54.3,omega,lower,-6.573354958020611e-07 +illusion_1L,sr,182,54.6,omega,front,3.6653853961889845e-05 +illusion_1L,sr,182,54.6,omega,upper,-5.579271642109501e-06 +illusion_1L,sr,182,54.6,omega,lower,-5.579271642109501e-06 +illusion_1L,sr,183,54.9,omega,front,4.202632038389012e-05 +illusion_1L,sr,183,54.9,omega,upper,-8.352862080471396e-06 +illusion_1L,sr,183,54.9,omega,lower,-8.352862080471396e-06 +illusion_1L,sr,184,55.2,omega,front,3.97523518737352e-05 +illusion_1L,sr,184,55.2,omega,upper,-6.626469724396629e-06 +illusion_1L,sr,184,55.2,omega,lower,-6.626469724396629e-06 +illusion_1L,sr,185,55.5,omega,front,4.0656156813330054e-05 +illusion_1L,sr,185,55.5,omega,upper,-8.436373170127403e-06 +illusion_1L,sr,185,55.5,omega,lower,-8.436373170127403e-06 +illusion_1L,sr,186,55.8,omega,front,3.9435468646176056e-05 +illusion_1L,sr,186,55.8,omega,upper,-9.80689027179238e-06 +illusion_1L,sr,186,55.8,omega,lower,-9.80689027179238e-06 +illusion_1L,sr,187,56.1,omega,front,3.175061941402057e-05 +illusion_1L,sr,187,56.1,omega,upper,-7.3958929820793635e-06 +illusion_1L,sr,187,56.1,omega,lower,-7.3958929820793635e-06 +illusion_1L,sr,188,56.4,omega,front,2.9772232120180362e-05 +illusion_1L,sr,188,56.4,omega,upper,-1.0027604715865512e-05 +illusion_1L,sr,188,56.4,omega,lower,-1.0027604715865512e-05 +illusion_1L,sr,189,56.7,omega,front,2.600407827701401e-05 +illusion_1L,sr,189,56.7,omega,upper,-1.1905621333600774e-05 +illusion_1L,sr,189,56.7,omega,lower,-1.1905621333600774e-05 +illusion_1L,sr,190,57.0,omega,front,1.6797890145183168e-05 +illusion_1L,sr,190,57.0,omega,upper,-1.0088154839869558e-05 +illusion_1L,sr,190,57.0,omega,lower,-1.0088154839869558e-05 +illusion_1L,sr,191,57.3,omega,front,1.268471941792187e-05 +illusion_1L,sr,191,57.3,omega,upper,-1.2088878549788339e-05 +illusion_1L,sr,191,57.3,omega,lower,-1.2088878549788339e-05 +illusion_1L,sr,192,57.6,omega,front,2.052476860703034e-06 +illusion_1L,sr,192,57.6,omega,upper,-9.076992893240644e-06 +illusion_1L,sr,192,57.6,omega,lower,-9.076992893240644e-06 +illusion_1L,sr,193,57.9,omega,front,-1.2670127266270168e-05 +illusion_1L,sr,193,57.9,omega,upper,-2.6619675335031943e-06 +illusion_1L,sr,193,57.9,omega,lower,-2.6619675335031943e-06 +illusion_1L,sr,194,58.2,omega,front,-1.6496601366490885e-05 +illusion_1L,sr,194,58.2,omega,upper,-3.7005706772208838e-06 +illusion_1L,sr,194,58.2,omega,lower,-3.7005706772208838e-06 +illusion_1L,sr,195,58.5,omega,front,-2.6128922270096943e-05 +illusion_1L,sr,195,58.5,omega,upper,3.299648489219625e-07 +illusion_1L,sr,195,58.5,omega,lower,3.299648489219625e-07 +illusion_1L,sr,196,58.8,omega,front,-3.752198607643052e-05 +illusion_1L,sr,196,58.8,omega,upper,6.580039503318973e-06 +illusion_1L,sr,196,58.8,omega,lower,6.580039503318973e-06 +illusion_1L,sr,197,59.1,omega,front,-3.486703772930609e-05 +illusion_1L,sr,197,59.1,omega,upper,3.4729712456565283e-06 +illusion_1L,sr,197,59.1,omega,lower,3.4729712456565283e-06 +illusion_1L,sr,198,59.4,omega,front,-3.802339840074692e-05 +illusion_1L,sr,198,59.4,omega,upper,5.7964927056232405e-06 +illusion_1L,sr,198,59.4,omega,lower,5.7964927056232405e-06 +illusion_1L,sr,199,59.7,omega,front,-4.149112631652019e-05 +illusion_1L,sr,199,59.7,omega,upper,9.478352718906118e-06 +illusion_1L,sr,199,59.7,omega,lower,9.478352718906118e-06 +illusion_1L,sr,200,60.0,omega,front,-3.196399501384347e-05 +illusion_1L,sr,200,60.0,omega,upper,4.65458538387975e-06 +illusion_1L,sr,200,60.0,omega,lower,4.65458538387975e-06 +illusion_1L,sr,201,60.3,omega,front,-3.108908739520387e-05 +illusion_1L,sr,201,60.3,omega,upper,7.211980517010768e-06 +illusion_1L,sr,201,60.3,omega,lower,7.211980517010768e-06 +illusion_1L,sr,202,60.6,omega,front,-3.160908090019964e-05 +illusion_1L,sr,202,60.6,omega,upper,1.157684752572682e-05 +illusion_1L,sr,202,60.6,omega,lower,1.157684752572682e-05 +illusion_1L,sr,203,60.9,omega,front,-2.067765479059626e-05 +illusion_1L,sr,203,60.9,omega,upper,8.03482927001652e-06 +illusion_1L,sr,203,60.9,omega,lower,8.03482927001652e-06 +illusion_1L,sr,204,61.2,omega,front,-1.89316023790272e-05 +illusion_1L,sr,204,61.2,omega,upper,1.1584329224668338e-05 +illusion_1L,sr,204,61.2,omega,lower,1.1584329224668338e-05 +illusion_1L,sr,205,61.5,omega,front,-1.3720964826770579e-05 +illusion_1L,sr,205,61.5,omega,upper,1.2617262868598626e-05 +illusion_1L,sr,205,61.5,omega,lower,1.2617262868598626e-05 +illusion_1L,sr,206,61.8,omega,front,3.633951124443705e-06 +illusion_1L,sr,206,61.8,omega,upper,4.511119405184276e-06 +illusion_1L,sr,206,61.8,omega,lower,4.511119405184276e-06 +illusion_1L,sr,207,62.1,omega,front,7.2724765651919e-06 +illusion_1L,sr,207,62.1,omega,upper,6.1760561752035285e-06 +illusion_1L,sr,207,62.1,omega,lower,6.1760561752035285e-06 +illusion_1L,sr,208,62.4,omega,front,1.288912620468298e-05 +illusion_1L,sr,208,62.4,omega,upper,5.778894488548403e-06 +illusion_1L,sr,208,62.4,omega,lower,5.778894488548403e-06 +illusion_1L,sr,209,62.7,omega,front,2.8674307175219072e-05 +illusion_1L,sr,209,62.7,omega,upper,-2.883141338427993e-06 +illusion_1L,sr,209,62.7,omega,lower,-2.883141338427993e-06 +illusion_1L,sr,210,63.0,omega,front,2.848259767283895e-05 +illusion_1L,sr,210,63.0,omega,upper,-6.206452598558204e-07 +illusion_1L,sr,210,63.0,omega,lower,-6.206452598558204e-07 +illusion_1L,sr,211,63.3,omega,front,3.0279972156307748e-05 +illusion_1L,sr,211,63.3,omega,upper,-8.558411556772866e-07 +illusion_1L,sr,211,63.3,omega,lower,-8.558411556772866e-07 +illusion_1L,sr,212,63.6,omega,front,3.806954495173653e-05 +illusion_1L,sr,212,63.6,omega,upper,-6.603954224166653e-06 +illusion_1L,sr,212,63.6,omega,lower,-6.603954224166653e-06 +illusion_1L,sr,213,63.9,omega,front,3.202179556981627e-05 +illusion_1L,sr,213,63.9,omega,upper,-3.23196036988372e-06 +illusion_1L,sr,213,63.9,omega,lower,-3.23196036988372e-06 +illusion_1L,sr,214,64.2,omega,front,2.9463279010518915e-05 +illusion_1L,sr,214,64.2,omega,upper,-3.5100439621892075e-06 +illusion_1L,sr,214,64.2,omega,lower,-3.5100439621892075e-06 +illusion_1L,sr,215,64.5,omega,front,3.231388967243086e-05 +illusion_1L,sr,215,64.5,omega,upper,-8.726941715214536e-06 +illusion_1L,sr,215,64.5,omega,lower,-8.726941715214536e-06 +illusion_1L,sr,216,64.8,omega,front,2.377972623277172e-05 +illusion_1L,sr,216,64.8,omega,upper,-6.2892346298775575e-06 +illusion_1L,sr,216,64.8,omega,lower,-6.2892346298775575e-06 +illusion_1L,sr,217,65.1,omega,front,2.0050488020401084e-05 +illusion_1L,sr,217,65.1,omega,upper,-7.955511928033379e-06 +illusion_1L,sr,217,65.1,omega,lower,-7.955511928033379e-06 +illusion_1L,sr,218,65.4,omega,front,2.1225803793185624e-05 +illusion_1L,sr,218,65.4,omega,upper,-1.3534668081759102e-05 +illusion_1L,sr,218,65.4,omega,lower,-1.3534668081759102e-05 +illusion_1L,sr,219,65.7,omega,front,7.49220860119389e-06 +illusion_1L,sr,219,65.7,omega,upper,-8.13446872557218e-06 +illusion_1L,sr,219,65.7,omega,lower,-8.13446872557218e-06 +illusion_1L,sr,220,66.0,omega,front,-1.9011731271577348e-06 +illusion_1L,sr,220,66.0,omega,upper,-5.8112720762057075e-06 +illusion_1L,sr,220,66.0,omega,lower,-5.8112720762057075e-06 +illusion_1L,sr,221,66.3,omega,front,-3.7236224975607455e-06 +illusion_1L,sr,221,66.3,omega,upper,-8.715132325213433e-06 +illusion_1L,sr,221,66.3,omega,lower,-8.715132325213433e-06 +illusion_1L,sr,222,66.6,omega,front,-1.706976911286379e-05 +illusion_1L,sr,222,66.6,omega,upper,-2.533461265096168e-06 +illusion_1L,sr,222,66.6,omega,lower,-2.533461265096168e-06 +illusion_1L,sr,223,66.9,omega,front,-2.4382962400807533e-05 +illusion_1L,sr,223,66.9,omega,upper,-9.602118431348977e-08 +illusion_1L,sr,223,66.9,omega,lower,-9.602118431348977e-08 +illusion_1L,sr,224,67.2,omega,front,-2.370617314115385e-05 +illusion_1L,sr,224,67.2,omega,upper,-2.683373545071116e-06 +illusion_1L,sr,224,67.2,omega,lower,-2.683373545071116e-06 +illusion_1L,sr,225,67.5,omega,front,-3.1525630294450266e-05 +illusion_1L,sr,225,67.5,omega,upper,2.0054355037197464e-06 +illusion_1L,sr,225,67.5,omega,lower,2.0054355037197464e-06 +illusion_1L,sr,226,67.8,omega,front,-3.327283556629424e-05 +illusion_1L,sr,226,67.8,omega,upper,3.2597084199431636e-06 +illusion_1L,sr,226,67.8,omega,lower,3.2597084199431636e-06 +illusion_1L,sr,227,68.1,omega,front,-2.679650502519275e-05 +illusion_1L,sr,227,68.1,omega,upper,-4.7368720819358084e-07 +illusion_1L,sr,227,68.1,omega,lower,-4.7368720819358084e-07 +illusion_1L,sr,228,68.4,omega,front,-3.1497480820914835e-05 +illusion_1L,sr,228,68.4,omega,upper,5.103601777961334e-06 +illusion_1L,sr,228,68.4,omega,lower,5.103601777961334e-06 +illusion_1L,sr,229,68.7,omega,front,-2.95115003665811e-05 +illusion_1L,sr,229,68.7,omega,upper,6.645998360823961e-06 +illusion_1L,sr,229,68.7,omega,lower,6.645998360823961e-06 +illusion_1L,sr,230,69.0,omega,front,-2.1203403580741207e-05 +illusion_1L,sr,230,69.0,omega,upper,4.276017075196884e-06 +illusion_1L,sr,230,69.0,omega,lower,4.276017075196884e-06 +illusion_1L,sr,231,69.3,omega,front,-2.452682233923323e-05 +illusion_1L,sr,231,69.3,omega,upper,1.1039571005946602e-05 +illusion_1L,sr,231,69.3,omega,lower,1.1039571005946602e-05 +illusion_1L,sr,232,69.6,omega,front,-1.8251880115129957e-05 +illusion_1L,sr,232,69.6,omega,upper,1.0990930658420122e-05 +illusion_1L,sr,232,69.6,omega,lower,1.0990930658420122e-05 +illusion_1L,sr,233,69.9,omega,front,-4.849460323229126e-06 +illusion_1L,sr,233,69.9,omega,upper,5.760673149048951e-06 +illusion_1L,sr,233,69.9,omega,lower,5.760673149048951e-06 +illusion_1L,sr,234,70.2,omega,front,-3.3636179441911065e-06 +illusion_1L,sr,234,70.2,omega,upper,9.206352162048175e-06 +illusion_1L,sr,234,70.2,omega,lower,9.206352162048175e-06 +illusion_1L,sr,235,70.5,omega,front,4.178493938647721e-06 +illusion_1L,sr,235,70.5,omega,upper,7.82660871244319e-06 +illusion_1L,sr,235,70.5,omega,lower,7.82660871244319e-06 +illusion_1L,sr,236,70.8,omega,front,1.7564457569803556e-05 +illusion_1L,sr,236,70.8,omega,upper,1.58991283222526e-06 +illusion_1L,sr,236,70.8,omega,lower,1.58991283222526e-06 +illusion_1L,sr,237,71.1,omega,front,1.7228202126069668e-05 +illusion_1L,sr,237,71.1,omega,upper,4.7976652804876395e-06 +illusion_1L,sr,237,71.1,omega,lower,4.7976652804876395e-06 +illusion_1L,sr,238,71.4,omega,front,2.3354315627370574e-05 +illusion_1L,sr,238,71.4,omega,upper,2.3643682117457585e-06 +illusion_1L,sr,238,71.4,omega,lower,2.3643682117457585e-06 +illusion_1L,sr,239,71.7,omega,front,3.0999382127029976e-05 +illusion_1L,sr,239,71.7,omega,upper,-2.1544766440522237e-06 +illusion_1L,sr,239,71.7,omega,lower,-2.1544766440522237e-06 +illusion_1L,sr,240,72.0,omega,front,2.5044168315095164e-05 +illusion_1L,sr,240,72.0,omega,upper,2.3358426543732337e-06 +illusion_1L,sr,240,72.0,omega,lower,2.3358426543732337e-06 +illusion_1L,sr,241,72.3,omega,front,2.8017111066342622e-05 +illusion_1L,sr,241,72.3,omega,upper,-8.449837144937356e-07 +illusion_1L,sr,241,72.3,omega,lower,-8.449837144937356e-07 +illusion_1L,sr,242,72.6,omega,front,3.086466780442859e-05 +illusion_1L,sr,242,72.6,omega,upper,-4.937539106698342e-06 +illusion_1L,sr,242,72.6,omega,lower,-4.937539106698342e-06 +illusion_1L,sr,243,72.9,omega,front,2.261687004867032e-05 +illusion_1L,sr,243,72.9,omega,upper,-1.747345795236263e-06 +illusion_1L,sr,243,72.9,omega,lower,-1.747345795236263e-06 +illusion_1L,sr,244,73.2,omega,front,2.3976107397117897e-05 +illusion_1L,sr,244,73.2,omega,upper,-6.410626457237015e-06 +illusion_1L,sr,244,73.2,omega,lower,-6.410626457237015e-06 +illusion_1L,sr,245,73.5,omega,front,2.4023142552891207e-05 +illusion_1L,sr,245,73.5,omega,upper,-1.0640527755620567e-05 +illusion_1L,sr,245,73.5,omega,lower,-1.0640527755620567e-05 +illusion_1L,sr,246,73.8,omega,front,1.213017884480549e-05 +illusion_1L,sr,246,73.8,omega,upper,-6.350238966501302e-06 +illusion_1L,sr,246,73.8,omega,lower,-6.350238966501302e-06 +illusion_1L,sr,247,74.1,omega,front,9.194763059649425e-06 +illusion_1L,sr,247,74.1,omega,upper,-8.786815106184448e-06 +illusion_1L,sr,247,74.1,omega,lower,-8.786815106184448e-06 +illusion_1L,sr,248,74.4,omega,front,4.1935346800460805e-06 +illusion_1L,sr,248,74.4,omega,upper,-9.57338692215589e-06 +illusion_1L,sr,248,74.4,omega,lower,-9.57338692215589e-06 +illusion_1L,sr,249,74.7,omega,front,-8.189681599077916e-06 +illusion_1L,sr,249,74.7,omega,upper,-4.572132949942337e-06 +illusion_1L,sr,249,74.7,omega,lower,-4.572132949942337e-06 +illusion_1L,sr,250,75.0,omega,front,-1.175654032750488e-05 +illusion_1L,sr,250,75.0,omega,upper,-5.589722579486569e-06 +illusion_1L,sr,250,75.0,omega,lower,-5.589722579486569e-06 +illusion_1L,sr,251,75.3,omega,front,-1.641850226244076e-05 +illusion_1L,sr,251,75.3,omega,upper,-5.106124849601594e-06 +illusion_1L,sr,251,75.3,omega,lower,-5.106124849601594e-06 +illusion_1L,sr,252,75.6,omega,front,-2.5771988236831246e-05 +illusion_1L,sr,252,75.6,omega,upper,-3.2888616821154934e-07 +illusion_1L,sr,252,75.6,omega,lower,-3.2888616821154934e-07 +illusion_1L,sr,253,75.9,omega,front,-2.4277477731142404e-05 +illusion_1L,sr,253,75.9,omega,upper,-2.6272323090857293e-06 +illusion_1L,sr,253,75.9,omega,lower,-2.6272323090857293e-06 +illusion_1L,sr,254,76.2,omega,front,-2.5283370429652967e-05 +illusion_1L,sr,254,76.2,omega,upper,-2.040337979869571e-06 +illusion_1L,sr,254,76.2,omega,lower,-2.040337979869571e-06 +illusion_1L,sr,255,76.5,omega,front,-2.931020131027591e-05 +illusion_1L,sr,255,76.5,omega,upper,1.8162858568208234e-06 +illusion_1L,sr,255,76.5,omega,lower,1.8162858568208234e-06 +illusion_1L,sr,256,76.8,omega,front,-2.5084215286891032e-05 +illusion_1L,sr,256,76.8,omega,upper,5.808884612029316e-07 +illusion_1L,sr,256,76.8,omega,lower,5.808884612029316e-07 +illusion_1L,sr,257,77.1,omega,front,-2.367215421919245e-05 +illusion_1L,sr,257,77.1,omega,upper,2.332524735349402e-06 +illusion_1L,sr,257,77.1,omega,lower,2.332524735349402e-06 +illusion_1L,sr,258,77.4,omega,front,-2.6289188653347354e-05 +illusion_1L,sr,258,77.4,omega,upper,7.811286490626463e-06 +illusion_1L,sr,258,77.4,omega,lower,7.811286490626463e-06 +illusion_1L,sr,259,77.7,omega,front,-1.9768083155684308e-05 +illusion_1L,sr,259,77.7,omega,upper,7.078800320988524e-06 +illusion_1L,sr,259,77.7,omega,lower,7.078800320988524e-06 +illusion_1L,sr,260,78.0,omega,front,-1.4444376203327018e-05 +illusion_1L,sr,260,78.0,omega,upper,7.569897859052303e-06 +illusion_1L,sr,260,78.0,omega,lower,7.569897859052303e-06 +illusion_1L,sr,261,78.3,omega,front,-1.111959896480181e-05 +illusion_1L,sr,261,78.3,omega,upper,9.651841523797507e-06 +illusion_1L,sr,261,78.3,omega,lower,9.651841523797507e-06 +illusion_1L,sr,262,78.6,omega,front,-8.063588398298308e-07 +illusion_1L,sr,262,78.6,omega,upper,6.476301605335419e-06 +illusion_1L,sr,262,78.6,omega,lower,6.476301605335419e-06 +illusion_1L,sr,263,78.9,omega,front,4.920665546846309e-06 +illusion_1L,sr,263,78.9,omega,upper,6.395737574414629e-06 +illusion_1L,sr,263,78.9,omega,lower,6.395737574414629e-06 +illusion_1L,sr,264,79.2,omega,front,8.467931634734173e-06 +illusion_1L,sr,264,79.2,omega,upper,7.432599059868858e-06 +illusion_1L,sr,264,79.2,omega,lower,7.432599059868858e-06 +illusion_1L,sr,265,79.5,omega,front,1.8236943120270648e-05 +illusion_1L,sr,265,79.5,omega,upper,3.20844252305285e-06 +illusion_1L,sr,265,79.5,omega,lower,3.20844252305285e-06 +illusion_1L,sr,266,79.8,omega,front,2.1974151430974656e-05 +illusion_1L,sr,266,79.8,omega,upper,2.6521409119641126e-06 +illusion_1L,sr,266,79.8,omega,lower,2.6521409119641126e-06 +illusion_1L,sr,267,80.1,omega,front,2.0614882751183033e-05 +illusion_1L,sr,267,80.1,omega,upper,4.924547092276279e-06 +illusion_1L,sr,267,80.1,omega,lower,4.924547092276279e-06 +illusion_1L,sr,268,80.4,omega,front,2.633160743159918e-05 +illusion_1L,sr,268,80.4,omega,upper,9.538482702604184e-07 +illusion_1L,sr,268,80.4,omega,lower,9.538482702604184e-07 +illusion_1L,sr,269,80.7,omega,front,2.5950852909085234e-05 +illusion_1L,sr,269,80.7,omega,upper,4.6509154565735346e-07 +illusion_1L,sr,269,80.7,omega,lower,4.6509154565735346e-07 +illusion_1L,sr,270,81.0,omega,front,2.179696337979063e-05 +illusion_1L,sr,270,81.0,omega,upper,1.7584249519501939e-06 +illusion_1L,sr,270,81.0,omega,lower,1.7584249519501939e-06 +illusion_1L,sr,271,81.3,omega,front,2.5981834844959264e-05 +illusion_1L,sr,271,81.3,omega,upper,-4.0147089137572774e-06 +illusion_1L,sr,271,81.3,omega,lower,-4.0147089137572774e-06 +illusion_1L,sr,272,81.6,omega,front,2.3413653589073743e-05 +illusion_1L,sr,272,81.6,omega,upper,-5.5405990583919794e-06 +illusion_1L,sr,272,81.6,omega,lower,-5.5405990583919794e-06 +illusion_1L,sr,273,81.9,omega,front,1.7385591483423235e-05 +illusion_1L,sr,273,81.9,omega,upper,-5.081055946565046e-06 +illusion_1L,sr,273,81.9,omega,lower,-5.081055946565046e-06 +illusion_1L,sr,274,82.2,omega,front,1.8097158919030038e-05 +illusion_1L,sr,274,82.2,omega,upper,-9.948989605518617e-06 +illusion_1L,sr,274,82.2,omega,lower,-9.948989605518617e-06 +illusion_1L,sr,275,82.5,omega,front,8.576539548276476e-06 +illusion_1L,sr,275,82.5,omega,upper,-7.390106029443237e-06 +illusion_1L,sr,275,82.5,omega,lower,-7.390106029443237e-06 +illusion_1L,sr,276,82.8,omega,front,4.067515899327211e-07 +illusion_1L,sr,276,82.8,omega,upper,-5.778028779099388e-06 +illusion_1L,sr,276,82.8,omega,lower,-5.778028779099388e-06 +illusion_1L,sr,277,83.1,omega,front,-4.7519997292182206e-07 +illusion_1L,sr,277,83.1,omega,upper,-9.268307045229018e-06 +illusion_1L,sr,277,83.1,omega,lower,-9.268307045229018e-06 +illusion_1L,sr,278,83.4,omega,front,-1.025674886000378e-05 +illusion_1L,sr,278,83.4,omega,upper,-5.716864842692689e-06 +illusion_1L,sr,278,83.4,omega,lower,-5.716864842692689e-06 +illusion_1L,sr,279,83.7,omega,front,-1.8296929847189046e-05 +illusion_1L,sr,279,83.7,omega,upper,-2.826054751995377e-06 +illusion_1L,sr,279,83.7,omega,lower,-2.826054751995377e-06 +illusion_1L,sr,280,84.0,omega,front,-1.627917728555868e-05 +illusion_1L,sr,280,84.0,omega,upper,-6.590613566079678e-06 +illusion_1L,sr,280,84.0,omega,lower,-6.590613566079678e-06 +illusion_1L,sr,281,84.3,omega,front,-2.2538846081337146e-05 +illusion_1L,sr,281,84.3,omega,upper,-3.3205918727286997e-06 +illusion_1L,sr,281,84.3,omega,lower,-3.3205918727286997e-06 +illusion_1L,sr,282,84.6,omega,front,-2.5806275793969422e-05 +illusion_1L,sr,282,84.6,omega,upper,-1.2714735992673531e-06 +illusion_1L,sr,282,84.6,omega,lower,-1.2714735992673531e-06 +illusion_1L,sr,283,84.9,omega,front,-2.0697662227493615e-05 +illusion_1L,sr,283,84.9,omega,upper,-4.395704262658597e-06 +illusion_1L,sr,283,84.9,omega,lower,-4.395704262658597e-06 +illusion_1L,sr,284,85.2,omega,front,-2.4524498257611078e-05 +illusion_1L,sr,284,85.2,omega,upper,9.346331913261119e-08 +illusion_1L,sr,284,85.2,omega,lower,9.346331913261119e-08 +illusion_1L,sr,285,85.5,omega,front,-2.4937312841376534e-05 +illusion_1L,sr,285,85.5,omega,upper,2.9532288571868655e-06 +illusion_1L,sr,285,85.5,omega,lower,2.9532288571868655e-06 +illusion_1L,sr,286,85.8,omega,front,-1.8987547336833042e-05 +illusion_1L,sr,286,85.8,omega,upper,1.8747550519764358e-06 +illusion_1L,sr,286,85.8,omega,lower,1.8747550519764358e-06 +illusion_1L,sr,287,86.1,omega,front,-2.1468845236074266e-05 +illusion_1L,sr,287,86.1,omega,upper,7.6090940158046564e-06 +illusion_1L,sr,287,86.1,omega,lower,7.6090940158046564e-06 +illusion_1L,sr,288,86.4,omega,front,-1.8032647187938958e-05 +illusion_1L,sr,288,86.4,omega,upper,9.333384766839065e-06 +illusion_1L,sr,288,86.4,omega,lower,9.333384766839065e-06 +illusion_1L,sr,289,86.7,omega,front,-6.724649170433572e-06 +illusion_1L,sr,289,86.7,omega,upper,5.4045198916204e-06 +illusion_1L,sr,289,86.7,omega,lower,5.4045198916204e-06 +illusion_1L,sr,290,87.0,omega,front,-4.688716063141908e-06 +illusion_1L,sr,290,87.0,omega,upper,8.30436836162892e-06 +illusion_1L,sr,290,87.0,omega,lower,8.30436836162892e-06 +illusion_1L,sr,291,87.3,omega,front,7.445876166911267e-07 +illusion_1L,sr,291,87.3,omega,upper,8.435755984267396e-06 +illusion_1L,sr,291,87.3,omega,lower,8.435755984267396e-06 +illusion_1L,sr,292,87.6,omega,front,1.1436930436696524e-05 +illusion_1L,sr,292,87.6,omega,upper,4.247423334389176e-06 +illusion_1L,sr,292,87.6,omega,lower,4.247423334389176e-06 +illusion_1L,sr,293,87.9,omega,front,1.2768315823243545e-05 +illusion_1L,sr,293,87.9,omega,upper,6.380520049680607e-06 +illusion_1L,sr,293,87.9,omega,lower,6.380520049680607e-06 +illusion_1L,sr,294,88.2,omega,front,1.675366823664731e-05 +illusion_1L,sr,294,88.2,omega,upper,5.78671571704957e-06 +illusion_1L,sr,294,88.2,omega,lower,5.78671571704957e-06 +illusion_1L,sr,295,88.5,omega,front,2.2825046680066617e-05 +illusion_1L,sr,295,88.5,omega,upper,2.769745388463904e-06 +illusion_1L,sr,295,88.5,omega,lower,2.769745388463904e-06 +illusion_1L,sr,296,88.8,omega,front,2.0782825286764785e-05 +illusion_1L,sr,296,88.8,omega,upper,4.772302697921734e-06 +illusion_1L,sr,296,88.8,omega,lower,4.772302697921734e-06 +illusion_1L,sr,297,89.1,omega,front,2.1307651110309967e-05 +illusion_1L,sr,297,89.1,omega,upper,3.854033778598019e-06 +illusion_1L,sr,297,89.1,omega,lower,3.854033778598019e-06 +illusion_1L,sr,298,89.4,omega,front,2.4512069966908317e-05 +illusion_1L,sr,298,89.4,omega,upper,-3.2135168947095004e-08 +illusion_1L,sr,298,89.4,omega,lower,-3.2135168947095004e-08 +illusion_1L,sr,299,89.7,omega,front,2.124719800438931e-05 +illusion_1L,sr,299,89.7,omega,upper,-4.92909770449454e-08 +illusion_1L,sr,299,89.7,omega,lower,-4.92909770449454e-08 +illusion_1L,sr,300,90.0,omega,front,2.0903908066532836e-05 +illusion_1L,sr,300,90.0,omega,upper,-3.0001732218325197e-06 +illusion_1L,sr,300,90.0,omega,lower,-3.0001732218325197e-06 +illusion_1L,sr,301,90.3,omega,front,2.235707676148474e-05 +illusion_1L,sr,301,90.3,omega,upper,-7.868128532648178e-06 +illusion_1L,sr,301,90.3,omega,lower,-7.868128532648178e-06 +illusion_1L,sr,302,90.6,omega,front,1.463718605221616e-05 +illusion_1L,sr,302,90.6,omega,upper,-6.346122966791688e-06 +illusion_1L,sr,302,90.6,omega,lower,-6.346122966791688e-06 +illusion_1L,sr,303,90.9,omega,front,8.907293064292233e-06 +illusion_1L,sr,303,90.9,omega,upper,-6.501139885609289e-06 +illusion_1L,sr,303,90.9,omega,lower,-6.501139885609289e-06 +illusion_1L,sr,304,91.2,omega,front,6.1933868063930416e-06 +illusion_1L,sr,304,91.2,omega,upper,-8.875891346881742e-06 +illusion_1L,sr,304,91.2,omega,lower,-8.875891346881742e-06 +illusion_1L,sr,305,91.5,omega,front,-2.730991674666089e-06 +illusion_1L,sr,305,91.5,omega,upper,-6.439305931017873e-06 +illusion_1L,sr,305,91.5,omega,lower,-6.439305931017873e-06 +illusion_1L,sr,306,91.8,omega,front,-8.294195345860851e-06 +illusion_1L,sr,306,91.8,omega,upper,-6.091470421822378e-06 +illusion_1L,sr,306,91.8,omega,lower,-6.091470421822378e-06 +illusion_1L,sr,307,92.1,omega,front,-1.0912113373386171e-05 +illusion_1L,sr,307,92.1,omega,upper,-7.33500633000539e-06 +illusion_1L,sr,307,92.1,omega,lower,-7.33500633000539e-06 +illusion_1L,sr,308,92.4,omega,front,-1.8592125332101835e-05 +illusion_1L,sr,308,92.4,omega,upper,-4.107492914603231e-06 +illusion_1L,sr,308,92.4,omega,lower,-4.107492914603231e-06 +illusion_1L,sr,309,92.7,omega,front,-2.0126371165303733e-05 +illusion_1L,sr,309,92.7,omega,upper,-4.561772258852535e-06 +illusion_1L,sr,309,92.7,omega,lower,-4.561772258852535e-06 +illusion_1L,sr,310,93.0,omega,front,-1.856545750577969e-05 +illusion_1L,sr,310,93.0,omega,upper,-6.335166338379168e-06 +illusion_1L,sr,310,93.0,omega,lower,-6.335166338379168e-06 +illusion_1L,sr,311,93.3,omega,front,-2.3510381445240384e-05 +illusion_1L,sr,311,93.3,omega,upper,-2.2922372170249007e-06 +illusion_1L,sr,311,93.3,omega,lower,-2.2922372170249007e-06 +illusion_1L,sr,312,93.6,omega,front,-2.185854619074605e-05 +illusion_1L,sr,312,93.6,omega,upper,-2.1385075254851115e-06 +illusion_1L,sr,312,93.6,omega,lower,-2.1385075254851115e-06 +illusion_1L,sr,313,93.9,omega,front,-1.9868057417791913e-05 +illusion_1L,sr,313,93.9,omega,upper,-1.308244763455306e-06 +illusion_1L,sr,313,93.9,omega,lower,-1.308244763455306e-06 +illusion_1L,sr,314,94.2,omega,front,-2.3910868174555277e-05 +illusion_1L,sr,314,94.2,omega,upper,4.763712333088026e-06 +illusion_1L,sr,314,94.2,omega,lower,4.763712333088026e-06 +illusion_1L,sr,315,94.5,omega,front,-1.9637545486303146e-05 +illusion_1L,sr,315,94.5,omega,upper,5.2962181532906216e-06 +illusion_1L,sr,315,94.5,omega,lower,5.2962181532906216e-06 +illusion_1L,sr,316,94.8,omega,front,-1.4080653902308771e-05 +illusion_1L,sr,316,94.8,omega,upper,5.30853203329065e-06 +illusion_1L,sr,316,94.8,omega,lower,5.30853203329065e-06 +illusion_1L,sr,317,95.1,omega,front,-1.3142415418813615e-05 +illusion_1L,sr,317,95.1,omega,upper,8.955897777603893e-06 +illusion_1L,sr,317,95.1,omega,lower,8.955897777603893e-06 +illusion_1L,sr,318,95.4,omega,front,-4.132277358103661e-06 +illusion_1L,sr,318,95.4,omega,upper,6.660036491383569e-06 +illusion_1L,sr,318,95.4,omega,lower,6.660036491383569e-06 +illusion_1L,sr,319,95.7,omega,front,2.151989230632992e-06 +illusion_1L,sr,319,95.7,omega,upper,6.1999544671268415e-06 +illusion_1L,sr,319,95.7,omega,lower,6.1999544671268415e-06 +illusion_1L,sr,320,96.0,omega,front,3.956166511674373e-06 +illusion_1L,sr,320,96.0,omega,upper,8.67656992488546e-06 +illusion_1L,sr,320,96.0,omega,lower,8.67656992488546e-06 +illusion_1L,sr,321,96.3,omega,front,1.2798502229016233e-05 +illusion_1L,sr,321,96.3,omega,upper,5.392823101667311e-06 +illusion_1L,sr,321,96.3,omega,lower,5.392823101667311e-06 +illusion_1L,sr,322,96.6,omega,front,1.7082664096567878e-05 +illusion_1L,sr,322,96.6,omega,upper,4.77671207299954e-06 +illusion_1L,sr,322,96.6,omega,lower,4.77671207299954e-06 +illusion_1L,sr,323,96.9,omega,front,1.600391826480689e-05 +illusion_1L,sr,323,96.9,omega,upper,7.282707355944114e-06 +illusion_1L,sr,323,96.9,omega,lower,7.282707355944114e-06 +illusion_1L,sr,324,97.2,omega,front,2.1176328574662106e-05 +illusion_1L,sr,324,97.2,omega,upper,4.218013082429549e-06 +illusion_1L,sr,324,97.2,omega,lower,4.218013082429549e-06 +illusion_1L,sr,325,97.5,omega,front,2.18393672571518e-05 +illusion_1L,sr,325,97.5,omega,upper,3.497725088654931e-06 +illusion_1L,sr,325,97.5,omega,lower,3.497725088654931e-06 +illusion_1L,sr,326,97.8,omega,front,1.8692981765753014e-05 +illusion_1L,sr,326,97.8,omega,upper,4.594678041297713e-06 +illusion_1L,sr,326,97.8,omega,lower,4.594678041297713e-06 +illusion_1L,sr,327,98.1,omega,front,2.2601161864354154e-05 +illusion_1L,sr,327,98.1,omega,upper,-4.523662525756159e-07 +illusion_1L,sr,327,98.1,omega,lower,-4.523662525756159e-07 +illusion_1L,sr,328,98.4,omega,front,2.19276200638421e-05 +illusion_1L,sr,328,98.4,omega,upper,-2.909972028811124e-06 +illusion_1L,sr,328,98.4,omega,lower,-2.909972028811124e-06 +illusion_1L,sr,329,98.7,omega,front,1.7706394852226964e-05 +illusion_1L,sr,329,98.7,omega,upper,-3.3867748356330997e-06 +illusion_1L,sr,329,98.7,omega,lower,-3.3867748356330997e-06 +illusion_1L,sr,330,99.0,omega,front,1.795100974081039e-05 +illusion_1L,sr,330,99.0,omega,upper,-7.611755532865834e-06 +illusion_1L,sr,330,99.0,omega,lower,-7.611755532865834e-06 +illusion_1L,sr,331,99.3,omega,front,1.1956874884047013e-05 +illusion_1L,sr,331,99.3,omega,upper,-7.468520494075143e-06 +illusion_1L,sr,331,99.3,omega,lower,-7.468520494075143e-06 +illusion_1L,sr,332,99.6,omega,front,3.081036960281367e-06 +illusion_1L,sr,332,99.6,omega,upper,-5.2593440953085895e-06 +illusion_1L,sr,332,99.6,omega,lower,-5.2593440953085895e-06 +illusion_1L,sr,333,99.9,omega,front,1.7444010402483009e-06 +illusion_1L,sr,333,99.9,omega,upper,-8.47713300793928e-06 +illusion_1L,sr,333,99.9,omega,lower,-8.47713300793928e-06 +illusion_1L,sr,334,100.2,omega,front,-4.715816536334967e-06 +illusion_1L,sr,334,100.2,omega,upper,-7.556098568314469e-06 +illusion_1L,sr,334,100.2,omega,lower,-7.556098568314469e-06 +illusion_1L,sr,335,100.5,omega,front,-1.2875337812371483e-05 +illusion_1L,sr,335,100.5,omega,upper,-4.859066933599332e-06 +illusion_1L,sr,335,100.5,omega,lower,-4.859066933599332e-06 +illusion_1L,sr,336,100.8,omega,front,-1.3288121821792912e-05 +illusion_1L,sr,336,100.8,omega,upper,-7.205988655297757e-06 +illusion_1L,sr,336,100.8,omega,lower,-7.205988655297757e-06 +illusion_1L,sr,337,101.1,omega,front,-1.709368231224577e-05 +illusion_1L,sr,337,101.1,omega,upper,-6.227376820563853e-06 +illusion_1L,sr,337,101.1,omega,lower,-6.227376820563853e-06 +illusion_1L,sr,338,101.4,omega,front,-2.105277165218203e-05 +illusion_1L,sr,338,101.4,omega,upper,-4.207365758205281e-06 +illusion_1L,sr,338,101.4,omega,lower,-4.207365758205281e-06 +illusion_1L,sr,339,101.7,omega,front,-1.8819345296790662e-05 +illusion_1L,sr,339,101.7,omega,upper,-5.782001892148704e-06 +illusion_1L,sr,339,101.7,omega,lower,-5.782001892148704e-06 +illusion_1L,sr,340,102.0,omega,front,-2.0112497710443737e-05 +illusion_1L,sr,340,102.0,omega,upper,-3.751830866618351e-06 +illusion_1L,sr,340,102.0,omega,lower,-3.751830866618351e-06 +illusion_1L,sr,341,102.3,omega,front,-2.252962996735747e-05 +illusion_1L,sr,341,102.3,omega,upper,4.235316469772266e-08 +illusion_1L,sr,341,102.3,omega,lower,4.235316469772266e-08 +illusion_1L,sr,342,102.6,omega,front,-1.92586255778493e-05 +illusion_1L,sr,342,102.6,omega,upper,4.520143170902782e-07 +illusion_1L,sr,342,102.6,omega,lower,4.520143170902782e-07 +illusion_1L,sr,343,102.9,omega,front,-1.9518807535364968e-05 +illusion_1L,sr,343,102.9,omega,upper,4.143149115986913e-06 +illusion_1L,sr,343,102.9,omega,lower,4.143149115986913e-06 +illusion_1L,sr,344,103.2,omega,front,-1.8794093340116313e-05 +illusion_1L,sr,344,103.2,omega,upper,7.569913124074951e-06 +illusion_1L,sr,344,103.2,omega,lower,7.569913124074951e-06 +illusion_1L,sr,345,103.5,omega,front,-1.0334489848943815e-05 +illusion_1L,sr,345,103.5,omega,upper,5.560701057168108e-06 +illusion_1L,sr,345,103.5,omega,lower,5.560701057168108e-06 +illusion_1L,sr,346,103.8,omega,front,-5.57761905721427e-06 +illusion_1L,sr,346,103.8,omega,upper,6.387765055850072e-06 +illusion_1L,sr,346,103.8,omega,lower,6.387765055850072e-06 +illusion_1L,sr,347,104.1,omega,front,-3.502884042314962e-06 +illusion_1L,sr,347,104.1,omega,upper,9.071160603276695e-06 +illusion_1L,sr,347,104.1,omega,lower,9.071160603276695e-06 +illusion_1L,sr,348,104.4,omega,front,5.999585238885969e-06 +illusion_1L,sr,348,104.4,omega,upper,5.951041671538558e-06 +illusion_1L,sr,348,104.4,omega,lower,5.951041671538558e-06 +illusion_1L,sr,349,104.7,omega,front,9.873363141326315e-06 +illusion_1L,sr,349,104.7,omega,upper,6.506821354267667e-06 +illusion_1L,sr,349,104.7,omega,lower,6.506821354267667e-06 +illusion_1L,sr,350,105.0,omega,front,1.1886313053000899e-05 +illusion_1L,sr,350,105.0,omega,upper,7.776673963950202e-06 +illusion_1L,sr,350,105.0,omega,lower,7.776673963950202e-06 +illusion_1L,sr,351,105.3,omega,front,1.8496411277634935e-05 +illusion_1L,sr,351,105.3,omega,upper,4.8561295296722585e-06 +illusion_1L,sr,351,105.3,omega,lower,4.8561295296722585e-06 +illusion_1L,sr,352,105.6,omega,front,1.8395997438737168e-05 +illusion_1L,sr,352,105.6,omega,upper,5.9817799532516785e-06 +illusion_1L,sr,352,105.6,omega,lower,5.9817799532516785e-06 +illusion_1L,sr,353,105.9,omega,front,1.7835934302848217e-05 +illusion_1L,sr,353,105.9,omega,upper,6.479682667015277e-06 +illusion_1L,sr,353,105.9,omega,lower,6.479682667015277e-06 +illusion_1L,sr,354,106.2,omega,front,2.1966201246726365e-05 +illusion_1L,sr,354,106.2,omega,upper,2.518787291564857e-06 +illusion_1L,sr,354,106.2,omega,lower,2.518787291564857e-06 +illusion_1L,sr,355,106.5,omega,front,1.9656817159146128e-05 +illusion_1L,sr,355,106.5,omega,upper,2.3762331185044063e-06 +illusion_1L,sr,355,106.5,omega,lower,2.3762331185044063e-06 +illusion_1L,sr,356,106.8,omega,front,1.9148957843700443e-05 +illusion_1L,sr,356,106.8,omega,upper,5.550408687292341e-08 +illusion_1L,sr,356,106.8,omega,lower,5.550408687292341e-08 +illusion_1L,sr,357,107.1,omega,front,2.151973048441943e-05 +illusion_1L,sr,357,107.1,omega,upper,-5.082209914466039e-06 +illusion_1L,sr,357,107.1,omega,lower,-5.082209914466039e-06 +illusion_1L,sr,358,107.4,omega,front,1.6210759170025776e-05 +illusion_1L,sr,358,107.4,omega,upper,-5.043502567385546e-06 +illusion_1L,sr,358,107.4,omega,lower,-5.043502567385546e-06 +illusion_1L,sr,359,107.7,omega,front,1.1845054740249025e-05 +illusion_1L,sr,359,107.7,omega,upper,-6.016542113923122e-06 +illusion_1L,sr,359,107.7,omega,lower,-6.016542113923122e-06 +illusion_1L,sr,360,108.0,omega,front,8.347425155020129e-06 +illusion_1L,sr,360,108.0,omega,upper,-7.749990797655265e-06 +illusion_1L,sr,360,108.0,omega,lower,-7.749990797655265e-06 +illusion_1L,sr,361,108.3,omega,front,1.3274791733608286e-06 +illusion_1L,sr,361,108.3,omega,upper,-6.796374837418854e-06 +illusion_1L,sr,361,108.3,omega,lower,-6.796374837418854e-06 +illusion_1L,sr,362,108.6,omega,front,-4.081607710036197e-06 +illusion_1L,sr,362,108.6,omega,upper,-6.756023342706815e-06 +illusion_1L,sr,362,108.6,omega,lower,-6.756023342706815e-06 +illusion_1L,sr,363,108.9,omega,front,-7.137699302745791e-06 +illusion_1L,sr,363,108.9,omega,upper,-7.993349110675779e-06 +illusion_1L,sr,363,108.9,omega,lower,-7.993349110675779e-06 +illusion_1L,sr,364,109.2,omega,front,-1.3999343843580855e-05 +illusion_1L,sr,364,109.2,omega,upper,-5.787463345103619e-06 +illusion_1L,sr,364,109.2,omega,lower,-5.787463345103619e-06 +illusion_1L,sr,365,109.5,omega,front,-1.6380221628239238e-05 +illusion_1L,sr,365,109.5,omega,upper,-6.1251392407687265e-06 +illusion_1L,sr,365,109.5,omega,lower,-6.1251392407687265e-06 +illusion_1L,sr,366,109.8,omega,front,-1.6257276332586544e-05 +illusion_1L,sr,366,109.8,omega,upper,-7.422377665490497e-06 +illusion_1L,sr,366,109.8,omega,lower,-7.422377665490497e-06 +illusion_1L,sr,367,110.1,omega,front,-1.969616193895865e-05 +illusion_1L,sr,367,110.1,omega,upper,-5.12153841494483e-06 +illusion_1L,sr,367,110.1,omega,lower,-5.12153841494483e-06 +illusion_1L,sr,368,110.4,omega,front,-2.021533432414409e-05 +illusion_1L,sr,368,110.4,omega,upper,-4.002685400451948e-06 +illusion_1L,sr,368,110.4,omega,lower,-4.002685400451948e-06 +illusion_1L,sr,369,110.7,omega,front,-1.832366503477869e-05 +illusion_1L,sr,369,110.7,omega,upper,-3.701660316736341e-06 +illusion_1L,sr,369,110.7,omega,lower,-3.701660316736341e-06 +illusion_1L,sr,370,111.0,omega,front,-2.1481944716220217e-05 +illusion_1L,sr,370,111.0,omega,upper,1.1863529143841395e-06 +illusion_1L,sr,370,111.0,omega,lower,1.1863529143841395e-06 +illusion_1L,sr,371,111.3,omega,front,-1.9940549641648854e-05 +illusion_1L,sr,371,111.3,omega,upper,3.31471567480552e-06 +illusion_1L,sr,371,111.3,omega,lower,3.31471567480552e-06 +illusion_1L,sr,372,111.6,omega,front,-1.5915390842317287e-05 +illusion_1L,sr,372,111.6,omega,upper,4.143567276815585e-06 +illusion_1L,sr,372,111.6,omega,lower,4.143567276815585e-06 +illusion_1L,sr,373,111.9,omega,front,-1.4765517347564887e-05 +illusion_1L,sr,373,111.9,omega,upper,7.441557207024229e-06 +illusion_1L,sr,373,111.9,omega,lower,7.441557207024229e-06 +illusion_1L,sr,374,112.2,omega,front,-7.5801504177410605e-06 +illusion_1L,sr,374,112.2,omega,upper,6.426035099415955e-06 +illusion_1L,sr,374,112.2,omega,lower,6.426035099415955e-06 +illusion_1L,sr,375,112.5,omega,front,-1.3969395283031441e-06 +illusion_1L,sr,375,112.5,omega,upper,6.110256886618101e-06 +illusion_1L,sr,375,112.5,omega,lower,6.110256886618101e-06 +illusion_1L,sr,376,112.8,omega,front,8.618635085826804e-07 +illusion_1L,sr,376,112.8,omega,upper,8.44855377177673e-06 +illusion_1L,sr,376,112.8,omega,lower,8.44855377177673e-06 +illusion_1L,sr,377,113.1,omega,front,7.712136797901962e-06 +illusion_1L,sr,377,113.1,omega,upper,6.958745849131691e-06 +illusion_1L,sr,377,113.1,omega,lower,6.958745849131691e-06 +illusion_1L,sr,378,113.4,omega,front,1.3383884256519644e-05 +illusion_1L,sr,378,113.4,omega,upper,5.744203629290852e-06 +illusion_1L,sr,378,113.4,omega,lower,5.744203629290852e-06 +illusion_1L,sr,379,113.7,omega,front,1.34904853995408e-05 +illusion_1L,sr,379,113.7,omega,upper,7.898448219384562e-06 +illusion_1L,sr,379,113.7,omega,lower,7.898448219384562e-06 +illusion_1L,sr,380,114.0,omega,front,1.729389841255813e-05 +illusion_1L,sr,380,114.0,omega,upper,6.4452224833942e-06 +illusion_1L,sr,380,114.0,omega,lower,6.4452224833942e-06 +illusion_1L,sr,381,114.3,omega,front,1.9836120784919655e-05 +illusion_1L,sr,381,114.3,omega,upper,4.97308460392698e-06 +illusion_1L,sr,381,114.3,omega,lower,4.97308460392698e-06 +illusion_1L,sr,382,114.6,omega,front,1.7716775828734987e-05 +illusion_1L,sr,382,114.6,omega,upper,5.970382841038978e-06 +illusion_1L,sr,382,114.6,omega,lower,5.970382841038978e-06 +illusion_1L,sr,383,114.9,omega,front,1.9489962339955742e-05 +illusion_1L,sr,383,114.9,omega,upper,3.1273275443665163e-06 +illusion_1L,sr,383,114.9,omega,lower,3.1273275443665163e-06 +illusion_1L,sr,384,115.2,omega,front,2.127536851536674e-05 +illusion_1L,sr,384,115.2,omega,upper,-5.949537319161618e-07 +illusion_1L,sr,384,115.2,omega,lower,-5.949537319161618e-07 +illusion_1L,sr,385,115.5,omega,front,1.8131901458100335e-05 +illusion_1L,sr,385,115.5,omega,upper,-1.418148749071195e-06 +illusion_1L,sr,385,115.5,omega,lower,-1.418148749071195e-06 +illusion_1L,sr,386,115.8,omega,front,1.7608857876896567e-05 +illusion_1L,sr,386,115.8,omega,upper,-4.747961134929733e-06 +illusion_1L,sr,386,115.8,omega,lower,-4.747961134929733e-06 +illusion_1L,sr,387,116.1,omega,front,1.571684759845677e-05 +illusion_1L,sr,387,116.1,omega,upper,-7.438382219661713e-06 +illusion_1L,sr,387,116.1,omega,lower,-7.438382219661713e-06 +illusion_1L,sr,388,116.4,omega,front,6.2194620131210085e-06 +illusion_1L,sr,388,116.4,omega,upper,-4.69419840335099e-06 +illusion_1L,sr,388,116.4,omega,lower,-4.69419840335099e-06 +illusion_1L,sr,389,116.7,omega,front,3.765338686101648e-06 +illusion_1L,sr,389,116.7,omega,upper,-7.150274314453647e-06 +illusion_1L,sr,389,116.7,omega,lower,-7.150274314453647e-06 +illusion_1L,sr,390,117.0,omega,front,3.733714984694228e-07 +illusion_1L,sr,390,117.0,omega,upper,-8.692767685672763e-06 +illusion_1L,sr,390,117.0,omega,lower,-8.692767685672763e-06 +illusion_1L,sr,391,117.3,omega,front,-8.50899834019838e-06 +illusion_1L,sr,391,117.3,omega,upper,-5.783020332489342e-06 +illusion_1L,sr,391,117.3,omega,lower,-5.783020332489342e-06 +illusion_1L,sr,392,117.6,omega,front,-1.0739513973868562e-05 +illusion_1L,sr,392,117.6,omega,upper,-7.221193498810688e-06 +illusion_1L,sr,392,117.6,omega,lower,-7.221193498810688e-06 +illusion_1L,sr,393,117.9,omega,front,-1.311315332097572e-05 +illusion_1L,sr,393,117.9,omega,upper,-7.830324026162558e-06 +illusion_1L,sr,393,117.9,omega,lower,-7.830324026162558e-06 +illusion_1L,sr,394,118.2,omega,front,-1.843933719859685e-05 +illusion_1L,sr,394,118.2,omega,upper,-5.4076265862631e-06 +illusion_1L,sr,394,118.2,omega,lower,-5.4076265862631e-06 +illusion_1L,sr,395,118.5,omega,front,-1.6833448291030328e-05 +illusion_1L,sr,395,118.5,omega,upper,-7.168427262955538e-06 +illusion_1L,sr,395,118.5,omega,lower,-7.168427262955538e-06 +illusion_1L,sr,396,118.8,omega,front,-1.783158817925984e-05 +illusion_1L,sr,396,118.8,omega,upper,-6.030205342884149e-06 +illusion_1L,sr,396,118.8,omega,lower,-6.030205342884149e-06 +illusion_1L,sr,397,119.1,omega,front,-2.0893376349683386e-05 +illusion_1L,sr,397,119.1,omega,upper,-2.4016788885362213e-06 +illusion_1L,sr,397,119.1,omega,lower,-2.4016788885362213e-06 +illusion_1L,sr,398,119.4,omega,front,-1.8925157665916106e-05 +illusion_1L,sr,398,119.4,omega,upper,-1.602973041829603e-06 +illusion_1L,sr,398,119.4,omega,lower,-1.602973041829603e-06 +illusion_1L,sr,399,119.7,omega,front,-1.9135101303349724e-05 +illusion_1L,sr,399,119.7,omega,upper,1.5706849365920011e-06 +illusion_1L,sr,399,119.7,omega,lower,1.5706849365920011e-06 +illusion_1L,sr,0,0.0,target_force,target_cd,0.005671756807714701 +illusion_1L,sr,0,0.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,sr,1,0.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,sr,1,0.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,sr,2,0.6,target_force,target_cd,0.005563950631767511 +illusion_1L,sr,2,0.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,sr,3,0.9,target_force,target_cd,0.005538197699934244 +illusion_1L,sr,3,0.9,target_force,target_cl,0.000727235630620271 +illusion_1L,sr,4,1.2,target_force,target_cd,0.005544575862586498 +illusion_1L,sr,4,1.2,target_force,target_cl,0.001170451520010829 +illusion_1L,sr,5,1.5,target_force,target_cd,0.005573783535510302 +illusion_1L,sr,5,1.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,sr,6,1.8,target_force,target_cd,0.005636546760797501 +illusion_1L,sr,6,1.8,target_force,target_cl,0.001829120796173811 +illusion_1L,sr,7,2.1,target_force,target_cd,0.005716180428862572 +illusion_1L,sr,7,2.1,target_force,target_cl,0.00200505624525249 +illusion_1L,sr,8,2.4,target_force,target_cd,0.005756895989179611 +illusion_1L,sr,8,2.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,sr,9,2.7,target_force,target_cd,0.005743067711591721 +illusion_1L,sr,9,2.7,target_force,target_cl,0.001995726488530636 +illusion_1L,sr,10,3.0,target_force,target_cd,0.005714329890906811 +illusion_1L,sr,10,3.0,target_force,target_cl,0.001809444511309266 +illusion_1L,sr,11,3.3,target_force,target_cd,0.005683825351297855 +illusion_1L,sr,11,3.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,sr,12,3.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,sr,12,3.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,sr,13,3.9,target_force,target_cd,0.005594110582023859 +illusion_1L,sr,13,3.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,sr,14,4.2,target_force,target_cd,0.005593768786638975 +illusion_1L,sr,14,4.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,sr,15,4.5,target_force,target_cd,0.005601159762591124 +illusion_1L,sr,15,4.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,sr,16,4.8,target_force,target_cd,0.005579833872616291 +illusion_1L,sr,16,4.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,sr,17,5.1,target_force,target_cd,0.005568155087530613 +illusion_1L,sr,17,5.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,sr,18,5.4,target_force,target_cd,0.005600422155112028 +illusion_1L,sr,18,5.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,sr,19,5.7,target_force,target_cd,0.005640667863190174 +illusion_1L,sr,19,5.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,sr,20,6.0,target_force,target_cd,0.005670505575835705 +illusion_1L,sr,20,6.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,sr,21,6.3,target_force,target_cd,0.005723041016608477 +illusion_1L,sr,21,6.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,sr,22,6.6,target_force,target_cd,0.005777770187705755 +illusion_1L,sr,22,6.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,sr,23,6.9,target_force,target_cd,0.005763606168329716 +illusion_1L,sr,23,6.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,sr,24,7.2,target_force,target_cd,0.005690249614417553 +illusion_1L,sr,24,7.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,sr,25,7.5,target_force,target_cd,0.005629390478134155 +illusion_1L,sr,25,7.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,sr,26,7.8,target_force,target_cd,0.005584970116615295 +illusion_1L,sr,26,7.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,sr,27,8.1,target_force,target_cd,0.005531984381377697 +illusion_1L,sr,27,8.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,sr,28,8.4,target_force,target_cd,0.005518179386854172 +illusion_1L,sr,28,8.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,sr,29,8.7,target_force,target_cd,0.005577066447585821 +illusion_1L,sr,29,8.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,sr,30,9.0,target_force,target_cd,0.005638485308736563 +illusion_1L,sr,30,9.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,sr,31,9.3,target_force,target_cd,0.005652999971061945 +illusion_1L,sr,31,9.3,target_force,target_cl,0.001821481972001493 +illusion_1L,sr,32,9.6,target_force,target_cd,0.005672627128660679 +illusion_1L,sr,32,9.6,target_force,target_cl,0.002030503237619996 +illusion_1L,sr,33,9.9,target_force,target_cd,0.005716722924262285 +illusion_1L,sr,33,9.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,sr,34,10.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,sr,34,10.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,sr,35,10.5,target_force,target_cd,0.005700415000319481 +illusion_1L,sr,35,10.5,target_force,target_cl,0.001855533104389906 +illusion_1L,sr,36,10.8,target_force,target_cd,0.00570518197491765 +illusion_1L,sr,36,10.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,sr,37,11.1,target_force,target_cd,0.005713063757866621 +illusion_1L,sr,37,11.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,sr,38,11.4,target_force,target_cd,0.00565308379009366 +illusion_1L,sr,38,11.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,sr,39,11.7,target_force,target_cd,0.005567865911871195 +illusion_1L,sr,39,11.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,sr,40,12.0,target_force,target_cd,0.005537909455597401 +illusion_1L,sr,40,12.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,sr,41,12.3,target_force,target_cd,0.005537074990570545 +illusion_1L,sr,41,12.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,sr,42,12.6,target_force,target_cd,0.005531030707061291 +illusion_1L,sr,42,12.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,sr,43,12.9,target_force,target_cd,0.00557838287204504 +illusion_1L,sr,43,12.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,sr,44,13.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,sr,44,13.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,sr,45,13.5,target_force,target_cd,0.005760743748396635 +illusion_1L,sr,45,13.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,sr,46,13.8,target_force,target_cd,0.005753485951572657 +illusion_1L,sr,46,13.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,sr,47,14.1,target_force,target_cd,0.005740967579185963 +illusion_1L,sr,47,14.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,sr,48,14.4,target_force,target_cd,0.005731895100325346 +illusion_1L,sr,48,14.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,sr,49,14.7,target_force,target_cd,0.00566871277987957 +illusion_1L,sr,49,14.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,sr,50,15.0,target_force,target_cd,0.005592959467321634 +illusion_1L,sr,50,15.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,sr,51,15.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,sr,51,15.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,sr,52,15.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,sr,52,15.6,target_force,target_cl,0.000263598543824628 +illusion_1L,sr,53,15.9,target_force,target_cd,0.005566527601331472 +illusion_1L,sr,53,15.9,target_force,target_cl,0.000782874645665288 +illusion_1L,sr,54,16.2,target_force,target_cd,0.005543616600334644 +illusion_1L,sr,54,16.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,sr,55,16.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,sr,55,16.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,sr,56,16.8,target_force,target_cd,0.005633705295622349 +illusion_1L,sr,56,16.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,sr,57,17.1,target_force,target_cd,0.005650329869240522 +illusion_1L,sr,57,17.1,target_force,target_cl,0.002072976902127266 +illusion_1L,sr,58,17.4,target_force,target_cd,0.005705440882593393 +illusion_1L,sr,58,17.4,target_force,target_cl,0.002096022479236126 +illusion_1L,sr,59,17.7,target_force,target_cd,0.005788230337202549 +illusion_1L,sr,59,17.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,sr,60,18.0,target_force,target_cd,0.00579201802611351 +illusion_1L,sr,60,18.0,target_force,target_cl,0.001746693509630859 +illusion_1L,sr,61,18.3,target_force,target_cd,0.005716915708035231 +illusion_1L,sr,61,18.3,target_force,target_cl,0.001397387241013348 +illusion_1L,sr,62,18.6,target_force,target_cd,0.00565684586763382 +illusion_1L,sr,62,18.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,sr,63,18.9,target_force,target_cd,0.005609786603599787 +illusion_1L,sr,63,18.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,sr,64,19.2,target_force,target_cd,0.005531110800802708 +illusion_1L,sr,64,19.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,sr,65,19.5,target_force,target_cd,0.005488442722707987 +illusion_1L,sr,65,19.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,sr,66,19.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,sr,66,19.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,sr,67,20.1,target_force,target_cd,0.005618898663669825 +illusion_1L,sr,67,20.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,sr,68,20.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,sr,68,20.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,sr,69,20.7,target_force,target_cd,0.005669464357197285 +illusion_1L,sr,69,20.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,sr,70,21.0,target_force,target_cd,0.005728682037442923 +illusion_1L,sr,70,21.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,sr,71,21.3,target_force,target_cd,0.005740906111896038 +illusion_1L,sr,71,21.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,sr,72,21.6,target_force,target_cd,0.00570477731525898 +illusion_1L,sr,72,21.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,sr,73,21.9,target_force,target_cd,0.005704289767891169 +illusion_1L,sr,73,21.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,sr,74,22.2,target_force,target_cd,0.005719874519854784 +illusion_1L,sr,74,22.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,sr,75,22.5,target_force,target_cd,0.005665991455316544 +illusion_1L,sr,75,22.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,sr,76,22.8,target_force,target_cd,0.005579077173024416 +illusion_1L,sr,76,22.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,sr,77,23.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,sr,77,23.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,sr,78,23.4,target_force,target_cd,0.005538465455174446 +illusion_1L,sr,78,23.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,sr,79,23.7,target_force,target_cd,0.005518500693142414 +illusion_1L,sr,79,23.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,sr,80,24.0,target_force,target_cd,0.005552514921873808 +illusion_1L,sr,80,24.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,sr,81,24.3,target_force,target_cd,0.005664129741489887 +illusion_1L,sr,81,24.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,sr,82,24.6,target_force,target_cd,0.005749957635998726 +illusion_1L,sr,82,24.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,sr,83,24.9,target_force,target_cd,0.005759336985647678 +illusion_1L,sr,83,24.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,sr,84,25.2,target_force,target_cd,0.005756254307925701 +illusion_1L,sr,84,25.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,sr,85,25.5,target_force,target_cd,0.005749706644564867 +illusion_1L,sr,85,25.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,sr,86,25.8,target_force,target_cd,0.005683912429958582 +illusion_1L,sr,86,25.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,sr,87,26.1,target_force,target_cd,0.005598609335720539 +illusion_1L,sr,87,26.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,sr,88,26.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,sr,88,26.4,target_force,target_cl,0.000428010243922472 +illusion_1L,sr,89,26.7,target_force,target_cd,0.005592026747763157 +illusion_1L,sr,89,26.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,sr,90,27.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,sr,90,27.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,sr,91,27.3,target_force,target_cd,0.005552446935325861 +illusion_1L,sr,91,27.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,sr,92,27.6,target_force,target_cd,0.005589765962213278 +illusion_1L,sr,92,27.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,sr,93,27.9,target_force,target_cd,0.00562874274328351 +illusion_1L,sr,93,27.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,sr,94,28.2,target_force,target_cd,0.005641409661620855 +illusion_1L,sr,94,28.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,sr,95,28.5,target_force,target_cd,0.005687114782631397 +illusion_1L,sr,95,28.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,sr,96,28.8,target_force,target_cd,0.005764052737504244 +illusion_1L,sr,96,28.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,sr,97,29.1,target_force,target_cd,0.005783763248473406 +illusion_1L,sr,97,29.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,sr,98,29.4,target_force,target_cd,0.005733401048928499 +illusion_1L,sr,98,29.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,sr,99,29.7,target_force,target_cd,0.005679980851709843 +illusion_1L,sr,99,29.7,target_force,target_cl,-0.001109990873374045 +illusion_1L,sr,100,30.0,target_force,target_cd,0.005627625621855259 +illusion_1L,sr,100,30.0,target_force,target_cl,-0.0006181322387419641 +illusion_1L,sr,101,30.3,target_force,target_cd,0.005549031309783459 +illusion_1L,sr,101,30.3,target_force,target_cl,-8.59768915688619e-05 +illusion_1L,sr,102,30.6,target_force,target_cd,0.005499288439750671 +illusion_1L,sr,102,30.6,target_force,target_cl,0.0004518234054557979 +illusion_1L,sr,103,30.9,target_force,target_cd,0.00553347822278738 +illusion_1L,sr,103,30.9,target_force,target_cl,0.000960158125963062 +illusion_1L,sr,104,31.2,target_force,target_cd,0.0055986023508012295 +illusion_1L,sr,104,31.2,target_force,target_cl,0.0014057770604267716 +illusion_1L,sr,105,31.5,target_force,target_cd,0.005635641980916262 +illusion_1L,sr,105,31.5,target_force,target_cl,0.0017594960518181324 +illusion_1L,sr,106,31.8,target_force,target_cd,0.005671056918799877 +illusion_1L,sr,106,31.8,target_force,target_cl,0.0019981369841843843 +illusion_1L,sr,107,32.1,target_force,target_cd,0.005717759020626545 +illusion_1L,sr,107,32.1,target_force,target_cl,0.002106070751324296 +illusion_1L,sr,108,32.4,target_force,target_cd,0.005728086922317743 +illusion_1L,sr,108,32.4,target_force,target_cl,0.002076256787404418 +illusion_1L,sr,109,32.7,target_force,target_cd,0.005702213384211063 +illusion_1L,sr,109,32.7,target_force,target_cl,0.0019107060506939888 +illusion_1L,sr,110,33.0,target_force,target_cd,0.005696525331586599 +illusion_1L,sr,110,33.0,target_force,target_cl,0.0016203367849811912 +illusion_1L,sr,111,33.3,target_force,target_cd,0.005705347750335932 +illusion_1L,sr,111,33.3,target_force,target_cl,0.0012242335360497236 +illusion_1L,sr,112,33.6,target_force,target_cd,0.0056749628856778145 +illusion_1L,sr,112,33.6,target_force,target_cl,0.0007483611116185784 +illusion_1L,sr,113,33.9,target_force,target_cd,0.005616396199911833 +illusion_1L,sr,113,33.9,target_force,target_cl,0.00022382187307812274 +illusion_1L,sr,114,34.2,target_force,target_cd,0.005577105097472668 +illusion_1L,sr,114,34.2,target_force,target_cl,-0.00031522029894404113 +illusion_1L,sr,115,34.5,target_force,target_cd,0.005551840178668499 +illusion_1L,sr,115,34.5,target_force,target_cl,-0.0008338077459484339 +illusion_1L,sr,116,34.8,target_force,target_cd,0.0055290330201387405 +illusion_1L,sr,116,34.8,target_force,target_cl,-0.0012984927743673325 +illusion_1L,sr,117,35.1,target_force,target_cd,0.005548518151044846 +illusion_1L,sr,117,35.1,target_force,target_cl,-0.0016795200062915683 +illusion_1L,sr,118,35.4,target_force,target_cd,0.00562577648088336 +illusion_1L,sr,118,35.4,target_force,target_cl,-0.001952742924913764 +illusion_1L,sr,119,35.7,target_force,target_cd,0.005705163814127445 +illusion_1L,sr,119,35.7,target_force,target_cl,-0.0021011470817029476 +illusion_1L,sr,120,36.0,target_force,target_cd,0.005744705442339182 +illusion_1L,sr,120,36.0,target_force,target_cl,-0.0021158847957849503 +illusion_1L,sr,121,36.3,target_force,target_cd,0.005756988190114498 +illusion_1L,sr,121,36.3,target_force,target_cl,-0.0019967579282820225 +illusion_1L,sr,122,36.6,target_force,target_cd,0.005744813941419125 +illusion_1L,sr,122,36.6,target_force,target_cl,-0.0017521297559142113 +illusion_1L,sr,123,36.9,target_force,target_cd,0.005693688523024321 +illusion_1L,sr,123,36.9,target_force,target_cl,-0.001398277236148715 +illusion_1L,sr,124,37.2,target_force,target_cd,0.005629749968647957 +illusion_1L,sr,124,37.2,target_force,target_cl,-0.0009582436759956181 +illusion_1L,sr,125,37.5,target_force,target_cd,0.005596959963440895 +illusion_1L,sr,125,37.5,target_force,target_cl,-0.00046027303324081004 +illusion_1L,sr,126,37.8,target_force,target_cd,0.005591437220573425 +illusion_1L,sr,126,37.8,target_force,target_cl,6.405806198017672e-05 +illusion_1L,sr,127,38.1,target_force,target_cd,0.005585479084402323 +illusion_1L,sr,127,38.1,target_force,target_cl,0.0005818844656459987 +illusion_1L,sr,128,38.4,target_force,target_cd,0.005581559147685766 +illusion_1L,sr,128,38.4,target_force,target_cl,0.0010611350880935788 +illusion_1L,sr,129,38.7,target_force,target_cd,0.005591227672994137 +illusion_1L,sr,129,38.7,target_force,target_cl,0.0014725204091519117 +illusion_1L,sr,130,39.0,target_force,target_cd,0.0056059095077216625 +illusion_1L,sr,130,39.0,target_force,target_cl,0.0017913009505718946 +illusion_1L,sr,131,39.3,target_force,target_cd,0.005624179262667894 +illusion_1L,sr,131,39.3,target_force,target_cl,0.0019987314008176327 +illusion_1L,sr,132,39.6,target_force,target_cd,0.005661684088408947 +illusion_1L,sr,132,39.6,target_force,target_cl,0.0020831020083278418 +illusion_1L,sr,133,39.9,target_force,target_cd,0.005714363418519497 +illusion_1L,sr,133,39.9,target_force,target_cl,0.0020403247326612473 +illusion_1L,sr,134,40.2,target_force,target_cd,0.005751916207373142 +illusion_1L,sr,134,40.2,target_force,target_cl,0.001874040812253952 +illusion_1L,sr,135,40.5,target_force,target_cd,0.005752751603722572 +illusion_1L,sr,135,40.5,target_force,target_cl,0.0015952644171193242 +illusion_1L,sr,136,40.8,target_force,target_cd,0.005716994404792786 +illusion_1L,sr,136,40.8,target_force,target_cl,0.0012215939350426197 +illusion_1L,sr,137,41.1,target_force,target_cd,0.005655428394675255 +illusion_1L,sr,137,41.1,target_force,target_cl,0.0007760541047900915 +illusion_1L,sr,138,41.4,target_force,target_cd,0.005588269792497158 +illusion_1L,sr,138,41.4,target_force,target_cl,0.000285650254227221 +illusion_1L,sr,139,41.7,target_force,target_cd,0.005542092490941286 +illusion_1L,sr,139,41.7,target_force,target_cl,-0.00022027546947356313 +illusion_1L,sr,140,42.0,target_force,target_cd,0.005534210707992315 +illusion_1L,sr,140,42.0,target_force,target_cl,-0.0007117835339158773 +illusion_1L,sr,141,42.3,target_force,target_cd,0.005564122460782528 +illusion_1L,sr,141,42.3,target_force,target_cl,-0.0011600726284086704 +illusion_1L,sr,142,42.6,target_force,target_cd,0.005614774767309427 +illusion_1L,sr,142,42.6,target_force,target_cl,-0.0015391155611723661 +illusion_1L,sr,143,42.9,target_force,target_cd,0.005659830756485462 +illusion_1L,sr,143,42.9,target_force,target_cl,-0.0018271084409207106 +illusion_1L,sr,144,43.2,target_force,target_cd,0.005684380419552326 +illusion_1L,sr,144,43.2,target_force,target_cl,-0.002007660223171115 +illusion_1L,sr,145,43.5,target_force,target_cd,0.005696034524589777 +illusion_1L,sr,145,43.5,target_force,target_cl,-0.0020706653594970703 +illusion_1L,sr,146,43.8,target_force,target_cd,0.005703396163880825 +illusion_1L,sr,146,43.8,target_force,target_cl,-0.0020128197502344847 +illusion_1L,sr,147,44.1,target_force,target_cd,0.005702631548047066 +illusion_1L,sr,147,44.1,target_force,target_cl,-0.0018377614906057715 +illusion_1L,sr,148,44.4,target_force,target_cd,0.00569628830999136 +illusion_1L,sr,148,44.4,target_force,target_cl,-0.001555830822326243 +illusion_1L,sr,149,44.7,target_force,target_cd,0.005691180936992168 +illusion_1L,sr,149,44.7,target_force,target_cl,-0.0011834697797894478 +illusion_1L,sr,150,45.0,target_force,target_cd,0.005671756807714701 +illusion_1L,sr,150,45.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,sr,151,45.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,sr,151,45.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,sr,152,45.6,target_force,target_cd,0.005563950631767511 +illusion_1L,sr,152,45.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,sr,153,45.9,target_force,target_cd,0.005538197699934244 +illusion_1L,sr,153,45.9,target_force,target_cl,0.000727235630620271 +illusion_1L,sr,154,46.2,target_force,target_cd,0.005544575862586498 +illusion_1L,sr,154,46.2,target_force,target_cl,0.001170451520010829 +illusion_1L,sr,155,46.5,target_force,target_cd,0.005573783535510302 +illusion_1L,sr,155,46.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,sr,156,46.8,target_force,target_cd,0.005636546760797501 +illusion_1L,sr,156,46.8,target_force,target_cl,0.001829120796173811 +illusion_1L,sr,157,47.1,target_force,target_cd,0.005716180428862572 +illusion_1L,sr,157,47.1,target_force,target_cl,0.00200505624525249 +illusion_1L,sr,158,47.4,target_force,target_cd,0.005756895989179611 +illusion_1L,sr,158,47.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,sr,159,47.7,target_force,target_cd,0.005743067711591721 +illusion_1L,sr,159,47.7,target_force,target_cl,0.001995726488530636 +illusion_1L,sr,160,48.0,target_force,target_cd,0.005714329890906811 +illusion_1L,sr,160,48.0,target_force,target_cl,0.001809444511309266 +illusion_1L,sr,161,48.3,target_force,target_cd,0.005683825351297855 +illusion_1L,sr,161,48.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,sr,162,48.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,sr,162,48.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,sr,163,48.9,target_force,target_cd,0.005594110582023859 +illusion_1L,sr,163,48.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,sr,164,49.2,target_force,target_cd,0.005593768786638975 +illusion_1L,sr,164,49.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,sr,165,49.5,target_force,target_cd,0.005601159762591124 +illusion_1L,sr,165,49.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,sr,166,49.8,target_force,target_cd,0.005579833872616291 +illusion_1L,sr,166,49.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,sr,167,50.1,target_force,target_cd,0.005568155087530613 +illusion_1L,sr,167,50.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,sr,168,50.4,target_force,target_cd,0.005600422155112028 +illusion_1L,sr,168,50.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,sr,169,50.7,target_force,target_cd,0.005640667863190174 +illusion_1L,sr,169,50.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,sr,170,51.0,target_force,target_cd,0.005670505575835705 +illusion_1L,sr,170,51.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,sr,171,51.3,target_force,target_cd,0.005723041016608477 +illusion_1L,sr,171,51.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,sr,172,51.6,target_force,target_cd,0.005777770187705755 +illusion_1L,sr,172,51.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,sr,173,51.9,target_force,target_cd,0.005763606168329716 +illusion_1L,sr,173,51.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,sr,174,52.2,target_force,target_cd,0.005690249614417553 +illusion_1L,sr,174,52.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,sr,175,52.5,target_force,target_cd,0.005629390478134155 +illusion_1L,sr,175,52.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,sr,176,52.8,target_force,target_cd,0.005584970116615295 +illusion_1L,sr,176,52.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,sr,177,53.1,target_force,target_cd,0.005531984381377697 +illusion_1L,sr,177,53.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,sr,178,53.4,target_force,target_cd,0.005518179386854172 +illusion_1L,sr,178,53.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,sr,179,53.7,target_force,target_cd,0.005577066447585821 +illusion_1L,sr,179,53.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,sr,180,54.0,target_force,target_cd,0.005638485308736563 +illusion_1L,sr,180,54.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,sr,181,54.3,target_force,target_cd,0.005652999971061945 +illusion_1L,sr,181,54.3,target_force,target_cl,0.001821481972001493 +illusion_1L,sr,182,54.6,target_force,target_cd,0.005672627128660679 +illusion_1L,sr,182,54.6,target_force,target_cl,0.002030503237619996 +illusion_1L,sr,183,54.9,target_force,target_cd,0.005716722924262285 +illusion_1L,sr,183,54.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,sr,184,55.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,sr,184,55.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,sr,185,55.5,target_force,target_cd,0.005700415000319481 +illusion_1L,sr,185,55.5,target_force,target_cl,0.001855533104389906 +illusion_1L,sr,186,55.8,target_force,target_cd,0.00570518197491765 +illusion_1L,sr,186,55.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,sr,187,56.1,target_force,target_cd,0.005713063757866621 +illusion_1L,sr,187,56.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,sr,188,56.4,target_force,target_cd,0.00565308379009366 +illusion_1L,sr,188,56.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,sr,189,56.7,target_force,target_cd,0.005567865911871195 +illusion_1L,sr,189,56.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,sr,190,57.0,target_force,target_cd,0.005537909455597401 +illusion_1L,sr,190,57.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,sr,191,57.3,target_force,target_cd,0.005537074990570545 +illusion_1L,sr,191,57.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,sr,192,57.6,target_force,target_cd,0.005531030707061291 +illusion_1L,sr,192,57.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,sr,193,57.9,target_force,target_cd,0.00557838287204504 +illusion_1L,sr,193,57.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,sr,194,58.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,sr,194,58.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,sr,195,58.5,target_force,target_cd,0.005760743748396635 +illusion_1L,sr,195,58.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,sr,196,58.8,target_force,target_cd,0.005753485951572657 +illusion_1L,sr,196,58.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,sr,197,59.1,target_force,target_cd,0.005740967579185963 +illusion_1L,sr,197,59.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,sr,198,59.4,target_force,target_cd,0.005731895100325346 +illusion_1L,sr,198,59.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,sr,199,59.7,target_force,target_cd,0.00566871277987957 +illusion_1L,sr,199,59.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,sr,200,60.0,target_force,target_cd,0.005592959467321634 +illusion_1L,sr,200,60.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,sr,201,60.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,sr,201,60.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,sr,202,60.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,sr,202,60.6,target_force,target_cl,0.000263598543824628 +illusion_1L,sr,203,60.9,target_force,target_cd,0.005566527601331472 +illusion_1L,sr,203,60.9,target_force,target_cl,0.000782874645665288 +illusion_1L,sr,204,61.2,target_force,target_cd,0.005543616600334644 +illusion_1L,sr,204,61.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,sr,205,61.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,sr,205,61.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,sr,206,61.8,target_force,target_cd,0.005633705295622349 +illusion_1L,sr,206,61.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,sr,207,62.1,target_force,target_cd,0.005650329869240522 +illusion_1L,sr,207,62.1,target_force,target_cl,0.002072976902127266 +illusion_1L,sr,208,62.4,target_force,target_cd,0.005705440882593393 +illusion_1L,sr,208,62.4,target_force,target_cl,0.002096022479236126 +illusion_1L,sr,209,62.7,target_force,target_cd,0.005788230337202549 +illusion_1L,sr,209,62.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,sr,210,63.0,target_force,target_cd,0.00579201802611351 +illusion_1L,sr,210,63.0,target_force,target_cl,0.001746693509630859 +illusion_1L,sr,211,63.3,target_force,target_cd,0.005716915708035231 +illusion_1L,sr,211,63.3,target_force,target_cl,0.001397387241013348 +illusion_1L,sr,212,63.6,target_force,target_cd,0.00565684586763382 +illusion_1L,sr,212,63.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,sr,213,63.9,target_force,target_cd,0.005609786603599787 +illusion_1L,sr,213,63.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,sr,214,64.2,target_force,target_cd,0.005531110800802708 +illusion_1L,sr,214,64.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,sr,215,64.5,target_force,target_cd,0.005488442722707987 +illusion_1L,sr,215,64.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,sr,216,64.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,sr,216,64.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,sr,217,65.1,target_force,target_cd,0.005618898663669825 +illusion_1L,sr,217,65.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,sr,218,65.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,sr,218,65.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,sr,219,65.7,target_force,target_cd,0.005669464357197285 +illusion_1L,sr,219,65.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,sr,220,66.0,target_force,target_cd,0.005728682037442923 +illusion_1L,sr,220,66.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,sr,221,66.3,target_force,target_cd,0.005740906111896038 +illusion_1L,sr,221,66.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,sr,222,66.6,target_force,target_cd,0.00570477731525898 +illusion_1L,sr,222,66.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,sr,223,66.9,target_force,target_cd,0.005704289767891169 +illusion_1L,sr,223,66.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,sr,224,67.2,target_force,target_cd,0.005719874519854784 +illusion_1L,sr,224,67.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,sr,225,67.5,target_force,target_cd,0.005665991455316544 +illusion_1L,sr,225,67.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,sr,226,67.8,target_force,target_cd,0.005579077173024416 +illusion_1L,sr,226,67.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,sr,227,68.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,sr,227,68.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,sr,228,68.4,target_force,target_cd,0.005538465455174446 +illusion_1L,sr,228,68.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,sr,229,68.7,target_force,target_cd,0.005518500693142414 +illusion_1L,sr,229,68.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,sr,230,69.0,target_force,target_cd,0.005552514921873808 +illusion_1L,sr,230,69.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,sr,231,69.3,target_force,target_cd,0.005664129741489887 +illusion_1L,sr,231,69.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,sr,232,69.6,target_force,target_cd,0.005749957635998726 +illusion_1L,sr,232,69.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,sr,233,69.9,target_force,target_cd,0.005759336985647678 +illusion_1L,sr,233,69.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,sr,234,70.2,target_force,target_cd,0.005756254307925701 +illusion_1L,sr,234,70.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,sr,235,70.5,target_force,target_cd,0.005749706644564867 +illusion_1L,sr,235,70.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,sr,236,70.8,target_force,target_cd,0.005683912429958582 +illusion_1L,sr,236,70.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,sr,237,71.1,target_force,target_cd,0.005598609335720539 +illusion_1L,sr,237,71.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,sr,238,71.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,sr,238,71.4,target_force,target_cl,0.000428010243922472 +illusion_1L,sr,239,71.7,target_force,target_cd,0.005592026747763157 +illusion_1L,sr,239,71.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,sr,240,72.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,sr,240,72.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,sr,241,72.3,target_force,target_cd,0.005552446935325861 +illusion_1L,sr,241,72.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,sr,242,72.6,target_force,target_cd,0.005589765962213278 +illusion_1L,sr,242,72.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,sr,243,72.9,target_force,target_cd,0.00562874274328351 +illusion_1L,sr,243,72.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,sr,244,73.2,target_force,target_cd,0.005641409661620855 +illusion_1L,sr,244,73.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,sr,245,73.5,target_force,target_cd,0.005687114782631397 +illusion_1L,sr,245,73.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,sr,246,73.8,target_force,target_cd,0.005764052737504244 +illusion_1L,sr,246,73.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,sr,247,74.1,target_force,target_cd,0.005783763248473406 +illusion_1L,sr,247,74.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,sr,248,74.4,target_force,target_cd,0.005733401048928499 +illusion_1L,sr,248,74.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,sr,249,74.7,target_force,target_cd,0.005679980851709843 +illusion_1L,sr,249,74.7,target_force,target_cl,-0.001109990873374045 +illusion_1L,sr,250,75.0,target_force,target_cd,0.005627625621855259 +illusion_1L,sr,250,75.0,target_force,target_cl,-0.0006181322387419641 +illusion_1L,sr,251,75.3,target_force,target_cd,0.005549031309783459 +illusion_1L,sr,251,75.3,target_force,target_cl,-8.59768915688619e-05 +illusion_1L,sr,252,75.6,target_force,target_cd,0.005499288439750671 +illusion_1L,sr,252,75.6,target_force,target_cl,0.0004518234054557979 +illusion_1L,sr,253,75.9,target_force,target_cd,0.00553347822278738 +illusion_1L,sr,253,75.9,target_force,target_cl,0.000960158125963062 +illusion_1L,sr,254,76.2,target_force,target_cd,0.0055986023508012295 +illusion_1L,sr,254,76.2,target_force,target_cl,0.0014057770604267716 +illusion_1L,sr,255,76.5,target_force,target_cd,0.005635641980916262 +illusion_1L,sr,255,76.5,target_force,target_cl,0.0017594960518181324 +illusion_1L,sr,256,76.8,target_force,target_cd,0.005671056918799877 +illusion_1L,sr,256,76.8,target_force,target_cl,0.0019981369841843843 +illusion_1L,sr,257,77.1,target_force,target_cd,0.005717759020626545 +illusion_1L,sr,257,77.1,target_force,target_cl,0.002106070751324296 +illusion_1L,sr,258,77.4,target_force,target_cd,0.005728086922317743 +illusion_1L,sr,258,77.4,target_force,target_cl,0.002076256787404418 +illusion_1L,sr,259,77.7,target_force,target_cd,0.005702213384211063 +illusion_1L,sr,259,77.7,target_force,target_cl,0.0019107060506939888 +illusion_1L,sr,260,78.0,target_force,target_cd,0.005696525331586599 +illusion_1L,sr,260,78.0,target_force,target_cl,0.0016203367849811912 +illusion_1L,sr,261,78.3,target_force,target_cd,0.005705347750335932 +illusion_1L,sr,261,78.3,target_force,target_cl,0.0012242335360497236 +illusion_1L,sr,262,78.6,target_force,target_cd,0.0056749628856778145 +illusion_1L,sr,262,78.6,target_force,target_cl,0.0007483611116185784 +illusion_1L,sr,263,78.9,target_force,target_cd,0.005616396199911833 +illusion_1L,sr,263,78.9,target_force,target_cl,0.00022382187307812274 +illusion_1L,sr,264,79.2,target_force,target_cd,0.005577105097472668 +illusion_1L,sr,264,79.2,target_force,target_cl,-0.00031522029894404113 +illusion_1L,sr,265,79.5,target_force,target_cd,0.005551840178668499 +illusion_1L,sr,265,79.5,target_force,target_cl,-0.0008338077459484339 +illusion_1L,sr,266,79.8,target_force,target_cd,0.0055290330201387405 +illusion_1L,sr,266,79.8,target_force,target_cl,-0.0012984927743673325 +illusion_1L,sr,267,80.1,target_force,target_cd,0.005548518151044846 +illusion_1L,sr,267,80.1,target_force,target_cl,-0.0016795200062915683 +illusion_1L,sr,268,80.4,target_force,target_cd,0.00562577648088336 +illusion_1L,sr,268,80.4,target_force,target_cl,-0.001952742924913764 +illusion_1L,sr,269,80.7,target_force,target_cd,0.005705163814127445 +illusion_1L,sr,269,80.7,target_force,target_cl,-0.0021011470817029476 +illusion_1L,sr,270,81.0,target_force,target_cd,0.005744705442339182 +illusion_1L,sr,270,81.0,target_force,target_cl,-0.0021158847957849503 +illusion_1L,sr,271,81.3,target_force,target_cd,0.005756988190114498 +illusion_1L,sr,271,81.3,target_force,target_cl,-0.0019967579282820225 +illusion_1L,sr,272,81.6,target_force,target_cd,0.005744813941419125 +illusion_1L,sr,272,81.6,target_force,target_cl,-0.0017521297559142113 +illusion_1L,sr,273,81.9,target_force,target_cd,0.005693688523024321 +illusion_1L,sr,273,81.9,target_force,target_cl,-0.001398277236148715 +illusion_1L,sr,274,82.2,target_force,target_cd,0.005629749968647957 +illusion_1L,sr,274,82.2,target_force,target_cl,-0.0009582436759956181 +illusion_1L,sr,275,82.5,target_force,target_cd,0.005596959963440895 +illusion_1L,sr,275,82.5,target_force,target_cl,-0.00046027303324081004 +illusion_1L,sr,276,82.8,target_force,target_cd,0.005591437220573425 +illusion_1L,sr,276,82.8,target_force,target_cl,6.405806198017672e-05 +illusion_1L,sr,277,83.1,target_force,target_cd,0.005585479084402323 +illusion_1L,sr,277,83.1,target_force,target_cl,0.0005818844656459987 +illusion_1L,sr,278,83.4,target_force,target_cd,0.005581559147685766 +illusion_1L,sr,278,83.4,target_force,target_cl,0.0010611350880935788 +illusion_1L,sr,279,83.7,target_force,target_cd,0.005591227672994137 +illusion_1L,sr,279,83.7,target_force,target_cl,0.0014725204091519117 +illusion_1L,sr,280,84.0,target_force,target_cd,0.0056059095077216625 +illusion_1L,sr,280,84.0,target_force,target_cl,0.0017913009505718946 +illusion_1L,sr,281,84.3,target_force,target_cd,0.005624179262667894 +illusion_1L,sr,281,84.3,target_force,target_cl,0.0019987314008176327 +illusion_1L,sr,282,84.6,target_force,target_cd,0.005661684088408947 +illusion_1L,sr,282,84.6,target_force,target_cl,0.0020831020083278418 +illusion_1L,sr,283,84.9,target_force,target_cd,0.005714363418519497 +illusion_1L,sr,283,84.9,target_force,target_cl,0.0020403247326612473 +illusion_1L,sr,284,85.2,target_force,target_cd,0.005751916207373142 +illusion_1L,sr,284,85.2,target_force,target_cl,0.001874040812253952 +illusion_1L,sr,285,85.5,target_force,target_cd,0.005752751603722572 +illusion_1L,sr,285,85.5,target_force,target_cl,0.0015952644171193242 +illusion_1L,sr,286,85.8,target_force,target_cd,0.005716994404792786 +illusion_1L,sr,286,85.8,target_force,target_cl,0.0012215939350426197 +illusion_1L,sr,287,86.1,target_force,target_cd,0.005655428394675255 +illusion_1L,sr,287,86.1,target_force,target_cl,0.0007760541047900915 +illusion_1L,sr,288,86.4,target_force,target_cd,0.005588269792497158 +illusion_1L,sr,288,86.4,target_force,target_cl,0.000285650254227221 +illusion_1L,sr,289,86.7,target_force,target_cd,0.005542092490941286 +illusion_1L,sr,289,86.7,target_force,target_cl,-0.00022027546947356313 +illusion_1L,sr,290,87.0,target_force,target_cd,0.005534210707992315 +illusion_1L,sr,290,87.0,target_force,target_cl,-0.0007117835339158773 +illusion_1L,sr,291,87.3,target_force,target_cd,0.005564122460782528 +illusion_1L,sr,291,87.3,target_force,target_cl,-0.0011600726284086704 +illusion_1L,sr,292,87.6,target_force,target_cd,0.005614774767309427 +illusion_1L,sr,292,87.6,target_force,target_cl,-0.0015391155611723661 +illusion_1L,sr,293,87.9,target_force,target_cd,0.005659830756485462 +illusion_1L,sr,293,87.9,target_force,target_cl,-0.0018271084409207106 +illusion_1L,sr,294,88.2,target_force,target_cd,0.005684380419552326 +illusion_1L,sr,294,88.2,target_force,target_cl,-0.002007660223171115 +illusion_1L,sr,295,88.5,target_force,target_cd,0.005696034524589777 +illusion_1L,sr,295,88.5,target_force,target_cl,-0.0020706653594970703 +illusion_1L,sr,296,88.8,target_force,target_cd,0.005703396163880825 +illusion_1L,sr,296,88.8,target_force,target_cl,-0.0020128197502344847 +illusion_1L,sr,297,89.1,target_force,target_cd,0.005702631548047066 +illusion_1L,sr,297,89.1,target_force,target_cl,-0.0018377614906057715 +illusion_1L,sr,298,89.4,target_force,target_cd,0.00569628830999136 +illusion_1L,sr,298,89.4,target_force,target_cl,-0.001555830822326243 +illusion_1L,sr,299,89.7,target_force,target_cd,0.005691180936992168 +illusion_1L,sr,299,89.7,target_force,target_cl,-0.0011834697797894478 +illusion_1L,sr,300,90.0,target_force,target_cd,0.005671756807714701 +illusion_1L,sr,300,90.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,sr,301,90.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,sr,301,90.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,sr,302,90.6,target_force,target_cd,0.005563950631767511 +illusion_1L,sr,302,90.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,sr,303,90.9,target_force,target_cd,0.005538197699934244 +illusion_1L,sr,303,90.9,target_force,target_cl,0.000727235630620271 +illusion_1L,sr,304,91.2,target_force,target_cd,0.005544575862586498 +illusion_1L,sr,304,91.2,target_force,target_cl,0.001170451520010829 +illusion_1L,sr,305,91.5,target_force,target_cd,0.005573783535510302 +illusion_1L,sr,305,91.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,sr,306,91.8,target_force,target_cd,0.005636546760797501 +illusion_1L,sr,306,91.8,target_force,target_cl,0.001829120796173811 +illusion_1L,sr,307,92.1,target_force,target_cd,0.005716180428862572 +illusion_1L,sr,307,92.1,target_force,target_cl,0.00200505624525249 +illusion_1L,sr,308,92.4,target_force,target_cd,0.005756895989179611 +illusion_1L,sr,308,92.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,sr,309,92.7,target_force,target_cd,0.005743067711591721 +illusion_1L,sr,309,92.7,target_force,target_cl,0.001995726488530636 +illusion_1L,sr,310,93.0,target_force,target_cd,0.005714329890906811 +illusion_1L,sr,310,93.0,target_force,target_cl,0.001809444511309266 +illusion_1L,sr,311,93.3,target_force,target_cd,0.005683825351297855 +illusion_1L,sr,311,93.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,sr,312,93.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,sr,312,93.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,sr,313,93.9,target_force,target_cd,0.005594110582023859 +illusion_1L,sr,313,93.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,sr,314,94.2,target_force,target_cd,0.005593768786638975 +illusion_1L,sr,314,94.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,sr,315,94.5,target_force,target_cd,0.005601159762591124 +illusion_1L,sr,315,94.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,sr,316,94.8,target_force,target_cd,0.005579833872616291 +illusion_1L,sr,316,94.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,sr,317,95.1,target_force,target_cd,0.005568155087530613 +illusion_1L,sr,317,95.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,sr,318,95.4,target_force,target_cd,0.005600422155112028 +illusion_1L,sr,318,95.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,sr,319,95.7,target_force,target_cd,0.005640667863190174 +illusion_1L,sr,319,95.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,sr,320,96.0,target_force,target_cd,0.005670505575835705 +illusion_1L,sr,320,96.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,sr,321,96.3,target_force,target_cd,0.005723041016608477 +illusion_1L,sr,321,96.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,sr,322,96.6,target_force,target_cd,0.005777770187705755 +illusion_1L,sr,322,96.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,sr,323,96.9,target_force,target_cd,0.005763606168329716 +illusion_1L,sr,323,96.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,sr,324,97.2,target_force,target_cd,0.005690249614417553 +illusion_1L,sr,324,97.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,sr,325,97.5,target_force,target_cd,0.005629390478134155 +illusion_1L,sr,325,97.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,sr,326,97.8,target_force,target_cd,0.005584970116615295 +illusion_1L,sr,326,97.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,sr,327,98.1,target_force,target_cd,0.005531984381377697 +illusion_1L,sr,327,98.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,sr,328,98.4,target_force,target_cd,0.005518179386854172 +illusion_1L,sr,328,98.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,sr,329,98.7,target_force,target_cd,0.005577066447585821 +illusion_1L,sr,329,98.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,sr,330,99.0,target_force,target_cd,0.005638485308736563 +illusion_1L,sr,330,99.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,sr,331,99.3,target_force,target_cd,0.005652999971061945 +illusion_1L,sr,331,99.3,target_force,target_cl,0.001821481972001493 +illusion_1L,sr,332,99.6,target_force,target_cd,0.005672627128660679 +illusion_1L,sr,332,99.6,target_force,target_cl,0.002030503237619996 +illusion_1L,sr,333,99.9,target_force,target_cd,0.005716722924262285 +illusion_1L,sr,333,99.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,sr,334,100.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,sr,334,100.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,sr,335,100.5,target_force,target_cd,0.005700415000319481 +illusion_1L,sr,335,100.5,target_force,target_cl,0.001855533104389906 +illusion_1L,sr,336,100.8,target_force,target_cd,0.00570518197491765 +illusion_1L,sr,336,100.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,sr,337,101.1,target_force,target_cd,0.005713063757866621 +illusion_1L,sr,337,101.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,sr,338,101.4,target_force,target_cd,0.00565308379009366 +illusion_1L,sr,338,101.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,sr,339,101.7,target_force,target_cd,0.005567865911871195 +illusion_1L,sr,339,101.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,sr,340,102.0,target_force,target_cd,0.005537909455597401 +illusion_1L,sr,340,102.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,sr,341,102.3,target_force,target_cd,0.005537074990570545 +illusion_1L,sr,341,102.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,sr,342,102.6,target_force,target_cd,0.005531030707061291 +illusion_1L,sr,342,102.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,sr,343,102.9,target_force,target_cd,0.00557838287204504 +illusion_1L,sr,343,102.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,sr,344,103.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,sr,344,103.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,sr,345,103.5,target_force,target_cd,0.005760743748396635 +illusion_1L,sr,345,103.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,sr,346,103.8,target_force,target_cd,0.005753485951572657 +illusion_1L,sr,346,103.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,sr,347,104.1,target_force,target_cd,0.005740967579185963 +illusion_1L,sr,347,104.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,sr,348,104.4,target_force,target_cd,0.005731895100325346 +illusion_1L,sr,348,104.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,sr,349,104.7,target_force,target_cd,0.00566871277987957 +illusion_1L,sr,349,104.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,sr,350,105.0,target_force,target_cd,0.005592959467321634 +illusion_1L,sr,350,105.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,sr,351,105.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,sr,351,105.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,sr,352,105.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,sr,352,105.6,target_force,target_cl,0.000263598543824628 +illusion_1L,sr,353,105.9,target_force,target_cd,0.005566527601331472 +illusion_1L,sr,353,105.9,target_force,target_cl,0.000782874645665288 +illusion_1L,sr,354,106.2,target_force,target_cd,0.005543616600334644 +illusion_1L,sr,354,106.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,sr,355,106.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,sr,355,106.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,sr,356,106.8,target_force,target_cd,0.005633705295622349 +illusion_1L,sr,356,106.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,sr,357,107.1,target_force,target_cd,0.005650329869240522 +illusion_1L,sr,357,107.1,target_force,target_cl,0.002072976902127266 +illusion_1L,sr,358,107.4,target_force,target_cd,0.005705440882593393 +illusion_1L,sr,358,107.4,target_force,target_cl,0.002096022479236126 +illusion_1L,sr,359,107.7,target_force,target_cd,0.005788230337202549 +illusion_1L,sr,359,107.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,sr,360,108.0,target_force,target_cd,0.00579201802611351 +illusion_1L,sr,360,108.0,target_force,target_cl,0.001746693509630859 +illusion_1L,sr,361,108.3,target_force,target_cd,0.005716915708035231 +illusion_1L,sr,361,108.3,target_force,target_cl,0.001397387241013348 +illusion_1L,sr,362,108.6,target_force,target_cd,0.00565684586763382 +illusion_1L,sr,362,108.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,sr,363,108.9,target_force,target_cd,0.005609786603599787 +illusion_1L,sr,363,108.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,sr,364,109.2,target_force,target_cd,0.005531110800802708 +illusion_1L,sr,364,109.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,sr,365,109.5,target_force,target_cd,0.005488442722707987 +illusion_1L,sr,365,109.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,sr,366,109.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,sr,366,109.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,sr,367,110.1,target_force,target_cd,0.005618898663669825 +illusion_1L,sr,367,110.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,sr,368,110.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,sr,368,110.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,sr,369,110.7,target_force,target_cd,0.005669464357197285 +illusion_1L,sr,369,110.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,sr,370,111.0,target_force,target_cd,0.005728682037442923 +illusion_1L,sr,370,111.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,sr,371,111.3,target_force,target_cd,0.005740906111896038 +illusion_1L,sr,371,111.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,sr,372,111.6,target_force,target_cd,0.00570477731525898 +illusion_1L,sr,372,111.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,sr,373,111.9,target_force,target_cd,0.005704289767891169 +illusion_1L,sr,373,111.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,sr,374,112.2,target_force,target_cd,0.005719874519854784 +illusion_1L,sr,374,112.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,sr,375,112.5,target_force,target_cd,0.005665991455316544 +illusion_1L,sr,375,112.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,sr,376,112.8,target_force,target_cd,0.005579077173024416 +illusion_1L,sr,376,112.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,sr,377,113.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,sr,377,113.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,sr,378,113.4,target_force,target_cd,0.005538465455174446 +illusion_1L,sr,378,113.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,sr,379,113.7,target_force,target_cd,0.005518500693142414 +illusion_1L,sr,379,113.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,sr,380,114.0,target_force,target_cd,0.005552514921873808 +illusion_1L,sr,380,114.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,sr,381,114.3,target_force,target_cd,0.005664129741489887 +illusion_1L,sr,381,114.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,sr,382,114.6,target_force,target_cd,0.005749957635998726 +illusion_1L,sr,382,114.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,sr,383,114.9,target_force,target_cd,0.005759336985647678 +illusion_1L,sr,383,114.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,sr,384,115.2,target_force,target_cd,0.005756254307925701 +illusion_1L,sr,384,115.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,sr,385,115.5,target_force,target_cd,0.005749706644564867 +illusion_1L,sr,385,115.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,sr,386,115.8,target_force,target_cd,0.005683912429958582 +illusion_1L,sr,386,115.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,sr,387,116.1,target_force,target_cd,0.005598609335720539 +illusion_1L,sr,387,116.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,sr,388,116.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,sr,388,116.4,target_force,target_cl,0.000428010243922472 +illusion_1L,sr,389,116.7,target_force,target_cd,0.005592026747763157 +illusion_1L,sr,389,116.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,sr,390,117.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,sr,390,117.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,sr,391,117.3,target_force,target_cd,0.005552446935325861 +illusion_1L,sr,391,117.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,sr,392,117.6,target_force,target_cd,0.005589765962213278 +illusion_1L,sr,392,117.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,sr,393,117.9,target_force,target_cd,0.00562874274328351 +illusion_1L,sr,393,117.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,sr,394,118.2,target_force,target_cd,0.005641409661620855 +illusion_1L,sr,394,118.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,sr,395,118.5,target_force,target_cd,0.005687114782631397 +illusion_1L,sr,395,118.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,sr,396,118.8,target_force,target_cd,0.005764052737504244 +illusion_1L,sr,396,118.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,sr,397,119.1,target_force,target_cd,0.005783763248473406 +illusion_1L,sr,397,119.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,sr,398,119.4,target_force,target_cd,0.005733401048928499 +illusion_1L,sr,398,119.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,sr,399,119.7,target_force,target_cd,0.005679980851709843 +illusion_1L,sr,399,119.7,target_force,target_cl,-0.001109990873374045 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_manifest.json new file mode 100644 index 0000000..6d8dfe8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz", + "sample_interval": 600, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_wide.csv new file mode 100644 index 0000000..ac713fb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1L,sr,0,0.0,1.0352134704589844,-0.2934945523738861,0.920151948928833,-0.525445818901062,0.8949023485183716,-0.3407583236694336,0.0018681804649531841,7.153350452426821e-05,0.0015253332676365972,0.0029478343203663826,0.0013869369868189096,-0.002488659927621484,0.015065667156363162,-0.017749901075966065,-0.017749901075966065,0.00015065667156363162,-0.00017749901075966065,-0.00017749901075966065,0.005671756807714701,-0.0007422934286296368,0 +illusion_1L,sr,1,0.3,1.0854301452636719,-0.3138121962547302,0.9394702911376953,-0.5433765649795532,0.8482897281646729,-0.3002932369709015,0.0018999699968844652,6.329658936010674e-05,0.001789543777704239,0.002522481372579932,0.0016456972807645798,-0.002094859490171075,0.021282785607453614,-0.022503613711949186,-0.022503613711949186,0.00021282785607453614,-0.00022503613711949186,-0.00022503613711949186,0.0056210970506072044,-0.0002578797866590321,1 +illusion_1L,sr,2,0.6,1.1388943195343018,-0.32913753390312195,0.9459059834480286,-0.5544472336769104,0.8034183979034424,-0.24598665535449982,0.0019326619803905487,5.247628359938972e-05,0.0020097335800528526,0.002097012707963586,0.0018634700682014227,-0.001739704399369657,-0.0006999595183350971,-0.006498512390538877,-0.006498512390538877,-6.9995951833509705e-06,-6.498512390538877e-05,-6.498512390538877e-05,0.005563950631767511,0.00024165630748029798,2 +illusion_1L,sr,3,0.9,1.1973798274993896,-0.3383600413799286,0.9337765574455261,-0.5311232805252075,0.7631356120109558,-0.17553596198558807,0.001962329028174281,4.2809213482541963e-05,0.0021811455953866243,0.0016700482228770852,0.002032668562605977,-0.0014149039052426815,-0.025245866684551577,0.011551717585581545,0.011551717585581545,-0.00025245866684551577,0.00011551717585581545,0.00011551717585581545,0.005538197699934244,0.000727235630620271,3 +illusion_1L,sr,4,1.2,1.2620614767074585,-0.33798304200172424,0.8982599973678589,-0.43757227063179016,0.7385761141777039,-0.09291360527276993,0.0019892805721610785,3.61563652404584e-05,0.0023087405133992434,0.0012790369801223278,0.00216237036511302,-0.0011417537461966276,-0.047225075788273146,0.0277120824422232,0.0277120824422232,-0.00047225075788273147,0.00027712082442223204,0.00027712082442223204,0.005544575862586498,0.001170451520010829,4 +illusion_1L,sr,5,1.5,1.3294432163238525,-0.31859347224235535,0.8438472747802734,-0.25390711426734924,0.7411162853240967,-0.01139908842742443,0.0020126099698245525,3.355302396812476e-05,0.0023970208130776882,0.0009473955724388361,0.0022617103531956673,-0.000930615293327719,-0.059035610476469116,0.03655664863053004,0.03655664863053004,-0.0005903561047646912,0.00036556648630530045,0.00036556648630530045,0.005573783535510302,0.0015451861545443535,5 +illusion_1L,sr,6,1.8,1.3812344074249268,-0.2585073411464691,0.7877177000045776,0.001860530348494649,0.7707063555717468,0.05678798630833626,0.002018860075622797,3.102028131252155e-05,0.0024378427769988775,0.0006838768604211509,0.0023260789457708597,-0.0007833325071260333,-0.05430935297554115,0.03359789153042413,0.03359789153042413,-0.0005430935297554115,0.0003359789153042413,0.0003359789153042413,0.005636546760797501,0.001829120796173811,6 +illusion_1L,sr,7,2.1,1.3780829906463623,-0.12858648598194122,0.7538187503814697,0.2686637341976166,0.8135991096496582,0.11298521608114243,0.002019366482272744,2.4935725377872586e-05,0.0024460810236632824,0.00047952745808288455,0.0023713060654699802,-0.0006850521895103157,-0.03803299646032646,0.022699198064553346,0.022699198064553346,-0.00038032996460326456,0.00022699198064553345,0.00022699198064553345,0.005716180428862572,0.00200505624525249,7 +illusion_1L,sr,8,2.4,1.2911581993103027,0.06420072913169861,0.7608507871627808,0.45699578523635864,0.8578753471374512,0.16376781463623047,0.0020171578507870436,1.3543727618525736e-05,0.002435877453535795,0.0003278524964116514,0.0024096088018268347,-0.0006241211085580289,-0.01681250262587851,0.008796696787675147,0.008796696787675147,-0.00016812502625878508,8.796696787675147e-05,8.796696787675147e-05,0.005756895989179611,0.0020619675051420927,8 +illusion_1L,sr,9,2.7,1.1525163650512695,0.24511463940143585,0.8053434491157532,0.5195398926734924,0.9020199775695801,0.20872622728347778,0.0020117368549108505,-3.568567763068131e-06,0.002413284732028842,0.00021628481044899672,0.002442919882014394,-0.0005849540466442704,0.003969712335341876,-0.004219602005767573,-0.004219602005767573,3.9697123353418764e-05,-4.2196020057675736e-05,-4.2196020057675736e-05,0.005743067711591721,0.001995726488530636,9 +illusion_1L,sr,10,3.0,1.025935411453247,0.3425331115722656,0.8576101660728455,0.5171009302139282,0.9471666216850281,0.24593637883663177,0.002005861373618245,-2.5070288756978698e-05,0.002385833766311407,0.00013694069639313966,0.0024745280388742685,-0.0005546507891267538,0.019698562414702366,-0.01313471708515218,-0.01313471708515218,0.00019698562414702367,-0.0001313471708515218,-0.0001313471708515218,0.005714329890906811,0.001809444511309266,10 +illusion_1L,sr,11,3.3,0.9408485889434814,0.3580743074417114,0.8974842429161072,0.5174781084060669,0.9936997294425964,0.27604109048843384,0.00200418708845973,-4.7014000301714987e-05,0.0023640713188797235,8.38638297864236e-05,0.002511055674403906,-0.0005248360685072839,0.029247236478722467,-0.01732154383641374,-0.01732154383641374,0.0002924723647872247,-0.0001732154383641374,-0.0001732154383641374,0.005683825351297855,0.0015134024433791637,11 +illusion_1L,sr,12,3.6,0.8850672245025635,0.3330245316028595,0.9253414869308472,0.5310112237930298,1.0422053337097168,0.30035027861595154,0.002008585026487708,-6.887777999509126e-05,0.0023520500399172306,5.290465924190357e-05,0.002553084399551153,-0.0004922256339341402,0.03718105877971553,-0.020350619329359138,-0.020350619329359138,0.00037181058779715533,-0.0002035061932935914,-0.0002035061932935914,0.0056352922692894936,0.0011245590867474675,12 +illusion_1L,sr,13,3.9,0.8380324244499207,0.29200270771980286,0.943283200263977,0.5505200624465942,1.0935570001602173,0.31959375739097595,0.002007798058912158,-8.791335858404636e-05,0.002339406870305538,4.5463955757441e-05,0.0025876672007143497,-0.0004595893551595509,0.04140742690912563,-0.02084237512185977,-0.02084237512185977,0.00041407426909125634,-0.0002084237512185977,-0.0002084237512185977,0.005594110582023859,0.0006656530895270407,13 +illusion_1L,sr,14,4.2,0.7916889786720276,0.23701117932796478,0.9486473798751831,0.5611631870269775,1.1490083932876587,0.333646684885025,0.002000638982281089,-0.00010372623364673927,0.002323643071576953,5.964486990706064e-05,0.002610142808407545,-0.00042969241621904075,0.04524019166877455,-0.021375663145537988,-0.021375663145537988,0.0004524019166877455,-0.00021375663145537988,-0.00021375663145537988,0.005593768786638975,0.00016393783153034747,14 +illusion_1L,sr,15,4.5,0.7500501871109009,0.16534090042114258,0.9347164630889893,0.5338547825813293,1.209954023361206,0.3410172462463379,0.0019906912930309772,-0.00011627809726633132,0.002309322590008378,9.3180758995004e-05,0.0026231929659843445,-0.0004066126421093941,0.04751875632493757,-0.021196930061869346,-0.021196930061869346,0.00047518756324937576,-0.00021196930061869346,-0.00021196930061869346,0.005601159762591124,-0.0003503881162032485,15 +illusion_1L,sr,16,4.8,0.7241273522377014,0.0815829336643219,0.896816074848175,0.43295297026634216,1.2772072553634644,0.33750662207603455,0.001980317523702979,-0.00012409307237248868,0.0022981008514761925,0.00014393182937055826,0.0026268893852829933,-0.00039288122206926346,0.04660318742053876,-0.019184158228791437,-0.019184158228791437,0.0004660318742053876,-0.0001918415822879144,-0.0001918415822879144,0.005579833872616291,-0.0008459693053737283,16 +illusion_1L,sr,17,5.1,0.724425733089447,-0.0009284175466746092,0.8412507772445679,0.24180448055267334,1.346553921699524,0.31243160367012024,0.0019675889052450657,-0.00012688156857620925,0.0022864185739308596,0.00020739689352922142,0.0026164271403104067,-0.000388041022233665,0.04409401306292632,-0.016599260516298786,-0.016599260516298786,0.0004409401306292632,-0.00016599260516298787,-0.00016599260516298787,0.005568155087530613,-0.001292198314331472,17 +illusion_1L,sr,18,5.4,0.7504732608795166,-0.07067526876926422,0.7874358296394348,-0.01622726023197174,1.3977842330932617,0.24264216423034668,0.001957525033503771,-0.00012462670565582812,0.0022803565952926874,0.00027797758230008185,0.002597338752821088,-0.00038947054417803884,0.03945144127696748,-0.013103459960533498,-0.013103459960533498,0.00039451441276967483,-0.00013103459960533498,-0.00013103459960533498,0.005600422155112028,-0.001661122078076005,18 +illusion_1L,sr,19,5.7,0.7894726395606995,-0.1287631392478943,0.75862056016922,-0.2759537696838379,1.3896793127059937,0.10216719657182693,0.001954309642314911,-0.0001164167479146272,0.0022857298608869314,0.00034924971987493336,0.002575964666903019,-0.0003910978266503662,0.032209542854565676,-0.008378636025239944,-0.008378636025239944,0.00032209542854565675,-8.378636025239945e-05,-8.378636025239945e-05,0.005640667863190174,-0.001929230522364378,19 +illusion_1L,sr,20,6.0,0.830396294593811,-0.180917888879776,0.7688588500022888,-0.4506489038467407,1.300075888633728,-0.08752261847257614,0.0019539787899702787,-0.00010289063357049599,0.0022968510165810585,0.00041585153667256236,0.002548186806961894,-0.00038817222230136395,0.024730528617555512,-0.004147591766761521,-0.004147591766761521,0.0002473052861755551,-4.1475917667615215e-05,-4.1475917667615215e-05,0.005670505575835705,-0.0020790090784430504,20 +illusion_1L,sr,21,6.3,0.8710088133811951,-0.22722575068473816,0.8106092214584351,-0.4994523525238037,1.1711843013763428,-0.24371488392353058,0.00195034418720752,-8.510843326803297e-05,0.0023065106943249702,0.00047315089614130557,0.002509442390874028,-0.0003769339236896485,0.017128540647560614,-0.0004182647697407449,-0.0004182647697407449,0.00017128540647560616,-4.182647697407449e-06,-4.182647697407449e-06,0.005723041016608477,-0.002100147772580385,21 +illusion_1L,sr,22,6.6,0.9114931225776672,-0.2666804790496826,0.8556960821151733,-0.4818572402000427,1.062717318534851,-0.3118186593055725,0.0019459842005744576,-6.347185262711719e-05,0.0023177345283329487,0.0005157764535397291,0.002465795027092099,-0.00035389154800213873,0.00963220329456807,0.0027692204386016717,0.0027692204386016717,9.63220329456807e-05,2.7692204386016716e-05,2.7692204386016716e-05,0.005777770187705755,-0.0019903185311704874,22 +illusion_1L,sr,23,6.9,0.9515376687049866,-0.300472229719162,0.8852576613426208,-0.4651280641555786,0.9938085675239563,-0.31055569648742676,0.0019460328621789813,-3.998512329417281e-05,0.002335585420951247,0.0005412047612480819,0.002425512531772256,-0.00031861316529102623,0.004186786469055237,0.004123222200376364,0.004123222200376364,4.186786469055237e-05,4.123222200376364e-05,4.123222200376364e-05,0.005763606168329716,-0.0017554573714733124,23 +illusion_1L,sr,24,7.2,0.9913960695266724,-0.33037662506103516,0.899344265460968,-0.4630996584892273,0.9504972100257874,-0.28133973479270935,0.0019468001555651426,-1.6629892343189567e-05,0.0023569678887724876,0.000549389747902751,0.0023883883841335773,-0.00027432371280156076,-0.000418376960801492,0.004696169761610226,0.004696169761610226,-4.18376960801492e-06,4.696169761610226e-05,4.696169761610226e-05,0.005690249614417553,-0.0014095163205638528,24 +illusion_1L,sr,25,7.5,1.0319712162017822,-0.357704758644104,0.9015666842460632,-0.47278594970703125,0.9158097505569458,-0.24539782106876373,0.0019497581524774432,5.856368716194993e-06,0.0023822146467864513,0.0005415372434072196,0.0023569653276354074,-0.00022566132247447968,-0.005635887319238492,0.005704152310365446,0.005704152310365446,-5.6358873192384926e-05,5.704152310365446e-05,5.704152310365446e-05,0.005629390478134155,-0.0009736909996718168,25 +illusion_1L,sr,26,7.8,1.0747392177581787,-0.38312435150146484,0.8933805227279663,-0.4896605908870697,0.8825134038925171,-0.20626597106456757,0.0019586686976253986,2.6849063942790963e-05,0.00241624447517097,0.0005202906904742122,0.0023379819467663765,-0.00017768764519132674,-0.010969825532970153,0.006887907387382066,0.006887907387382066,-0.00010969825532970153,6.887907387382066e-05,6.887907387382066e-05,0.005584970116615295,-0.00047515766345895827,26 +illusion_1L,sr,27,8.1,1.1212249994277954,-0.4067641496658325,0.8739050030708313,-0.503006637096405,0.8507499694824219,-0.1625315397977829,0.0019719002302736044,4.555478517431766e-05,0.0024565348867326975,0.0004904568777419627,0.002330526476725936,-0.00013712485088035464,-0.016047634281826477,0.008060446614249032,0.008060446614249032,-0.00016047634281826477,8.060446614249033e-05,8.060446614249033e-05,0.005531984381377697,5.460584725369699e-05,27 +illusion_1L,sr,28,8.4,1.1724903583526611,-0.42805495858192444,0.840343177318573,-0.49266961216926575,0.8239403367042542,-0.1132674440741539,0.0019794953987002373,6.11578652751632e-05,0.00249078287743032,0.0004575549974106252,0.002323540160432458,-0.00011093373177573085,-0.02103622279941958,0.0094238795394333,0.0094238795394333,-0.0002103622279941958,9.4238795394333e-05,9.4238795394333e-05,0.005518179386854172,0.0005818125791847706,28 +illusion_1L,sr,29,8.7,1.2285174131393433,-0.4449816942214966,0.7902076244354248,-0.4347040355205536,0.8058704733848572,-0.05884504318237305,0.00198017037473619,7.395699503831565e-05,0.0025158156640827656,0.0004261633148416877,0.002315063262358308,-0.00010341979941586033,-0.02648315658823949,0.011444189730652629,0.011444189730652629,-0.0002648315658823949,0.0001144418973065263,0.0001144418973065263,0.005577066447585821,0.0010725450702011585,29 +illusion_1L,sr,30,9.0,1.2861300706863403,-0.45190516114234924,0.7245463132858276,-0.3143240809440613,0.7982158660888672,-0.00035380973713472486,0.001978483283892274,8.339710620930418e-05,0.002535022795200348,0.00039970679790712893,0.0023097381927073,-0.0001170809191535227,-0.030663911720353404,0.012904107953483986,0.012904107953483986,-0.00030663911720353403,0.00012904107953483986,0.00012904107953483986,0.005638485308736563,0.0014949759934097528,30 +illusion_1L,sr,31,9.3,1.335022211074829,-0.4351210594177246,0.6507396697998047,-0.1340256631374359,0.8004016876220703,0.06088780611753464,0.0019741433206945658,8.887970034265891e-05,0.002546075964346528,0.0003804971929639578,0.002306493232026696,-0.0001521136291557923,-0.03358018135293955,0.013866000011124481,0.013866000011124481,-0.00033580181352939553,0.0001386600001112448,0.0001386600001112448,0.005652999971061945,0.001821481972001493,31 +illusion_1L,sr,32,9.6,1.3531920909881592,-0.3682805597782135,0.5840767025947571,0.08542672544717789,0.8113831281661987,0.12285590171813965,0.001967197749763727,9.091119864024222e-05,0.002546883188188076,0.00036949742934666574,0.002304385183379054,-0.00020555112860165536,-0.035319917640542625,0.014456259686202205,0.014456259686202205,-0.00035319917640542624,0.00014456259686202206,0.00014456259686202206,0.005672627128660679,0.002030503237619996,32 +illusion_1L,sr,33,9.9,1.3120602369308472,-0.21935035288333893,0.5463912487030029,0.3035081624984741,0.8308917284011841,0.18268808722496033,0.001961654517799616,8.868386066751555e-05,0.0025404589250683784,0.00036394072230905294,0.002307067858055234,-0.00027173402486369014,-0.03378842868125356,0.013180496195818486,0.013180496195818486,-0.00033788428681253563,0.00013180496195818486,0.00013180496195818486,0.005716722924262285,0.0021080211736261845,33 +illusion_1L,sr,34,10.2,1.2024997472763062,0.013494005426764488,0.5550975203514099,0.47012215852737427,0.858521044254303,0.23802094161510468,0.0019623965490609407,8.17983309389092e-05,0.002532449085265398,0.0003598658076953143,0.0023199478164315224,-0.0003430468204896897,-0.030069366329296188,0.010871982034710903,0.010871982034710903,-0.0003006936632929619,0.00010871982034710904,0.00010871982034710904,0.0057253409177064896,0.0020485445857048035,34 +illusion_1L,sr,35,10.5,1.055531620979309,0.2701854705810547,0.6048488616943359,0.5637479424476624,0.8930125832557678,0.28782105445861816,0.0019631031900644302,7.120421651052311e-05,0.0025153551250696182,0.0003538127348292619,0.0023343851789832115,-0.00041236018296331167,-0.025205795840661127,0.00829108702873256,0.00829108702873256,-0.00025205795840661126,8.291087028732561e-05,8.291087028732561e-05,0.005700415000319481,0.001855533104389906,35 +illusion_1L,sr,36,10.8,0.9175953269004822,0.4665732681751251,0.6684207916259766,0.6124762892723083,0.9328548908233643,0.3319692313671112,0.0019599925726652145,5.674742715200409e-05,0.00248765479773283,0.0003413766098674387,0.0023465994745492935,-0.0004724008322227746,-0.0182796447593441,0.004702609560569754,0.004702609560569754,-0.000182796447593441,4.702609560569754e-05,4.702609560569754e-05,0.00570518197491765,0.0015412241918966174,36 +illusion_1L,sr,37,11.1,0.8180467486381531,0.5588585138320923,0.7256230115890503,0.6497520804405212,0.9767545461654663,0.3707522451877594,0.0019572731107473373,3.925697092199698e-05,0.002455468289554119,0.00031980700441636145,0.0023598605766892433,-0.0005166102782823145,-0.011671472329057561,0.0017584140531559794,0.0017584140531559794,-0.00011671472329057562,1.7584140531559794e-05,1.7584140531559794e-05,0.005713063757866621,0.0011258659651502967,37 +illusion_1L,sr,38,11.4,0.7564342021942139,0.5671833157539368,0.7726397514343262,0.6851983666419983,1.0240046977996826,0.4046471416950226,0.0019588328432291746,2.112496440531686e-05,0.0024273316375911236,0.00028854262200184166,0.0023797156754881144,-0.0005404625553637743,-0.0062729940497162915,-2.051268939673445e-05,-2.051268939673445e-05,-6.272994049716291e-05,-2.0512689396734452e-07,-2.0512689396734452e-07,0.00565308379009366,0.0006364086293615401,38 +illusion_1L,sr,39,11.7,0.7119037508964539,0.5364272594451904,0.8099244236946106,0.7150098085403442,1.0745609998703003,0.43417245149612427,0.0019606577698141336,2.613609922264004e-06,0.002400785917416215,0.0002510448975954205,0.0024008043110370636,-0.0005447527510114014,0.00012457713398835585,-0.0024148382920210383,-0.0024148382920210383,1.2457713398835586e-06,-2.4148382920210385e-05,-2.4148382920210385e-05,0.005567865911871195,0.00010473776637809351,39 +illusion_1L,sr,40,12.0,0.6682671904563904,0.48756811022758484,0.8358271718025208,0.7266854643821716,1.128867745399475,0.45973989367485046,0.001965246396139264,-1.4799859854974784e-05,0.0023814886808395386,0.00021241784270387143,0.002426375402137637,-0.0005309508997015655,0.005412577569007035,-0.004005326793750376,-0.004005326793750376,5.412577569007035e-05,-4.0053267937503765e-05,-4.0053267937503765e-05,0.005537909455597401,-0.0004344300541561097,40 +illusion_1L,sr,41,12.3,0.6231535077095032,0.41752517223358154,0.8462026119232178,0.7011629939079285,1.1877459287643433,0.48133382201194763,0.00197547092102468,-2.977609256049618e-05,0.0023741950280964375,0.00017838322673924267,0.0024592606350779533,-0.0005031785694882274,0.010440933769279709,-0.0055385569951005645,-0.0055385569951005645,0.00010440933769279709,-5.538556995100565e-05,-5.538556995100565e-05,0.005537074990570545,-0.000945847132243216,41 +illusion_1L,sr,42,12.6,0.5818699598312378,0.3192850649356842,0.8369590640068054,0.6230347752571106,1.2513160705566406,0.49743643403053284,0.001987788826227188,-4.278669075574726e-05,0.0023758308961987495,0.000155684509081766,0.0024947868660092354,-0.0004685232415795326,0.016218070946359305,-0.007854755368002037,-0.007854755368002037,0.00016218070946359304,-7.854755368002036e-05,-7.854755368002036e-05,0.005531030707061291,-0.0013960730284452438,42 +illusion_1L,sr,43,12.9,0.5516213774681091,0.19358398020267487,0.8076032996177673,0.48973846435546875,1.3163869380950928,0.5021346807479858,0.001992901787161827,-5.266071093501523e-05,0.002375207608565688,0.0001504598476458341,0.0025206056889146566,-0.00043341348646208644,0.020309925149829405,-0.009230302982415811,-0.009230302982415811,0.00020309925149829405,-9.230302982415812e-05,-9.230302982415812e-05,0.00557838287204504,-0.0017556919483467937,43 +illusion_1L,sr,44,13.2,0.5397071242332458,0.05184029042720795,0.7628293633460999,0.3051801919937134,1.3718149662017822,0.4797544479370117,0.0019915280863642693,-5.915015208302066e-05,0.0023722038604319096,0.00016511950525455177,0.002535736421123147,-0.00040279023232869804,0.024074717390375686,-0.010727083135239512,-0.010727083135239512,0.00024074717390375685,-0.00010727083135239512,-0.00010727083135239512,0.0056895059533417225,-0.0020012580789625645,44 +illusion_1L,sr,45,13.5,0.5541035532951355,-0.08390314877033234,0.713409960269928,0.07472684234380722,1.3956177234649658,0.4014243185520172,0.001988296629860997,-6.340357504086569e-05,0.002371204784139991,0.0001981770183192566,0.002543752547353506,-0.00037935900036245584,0.027239572315311062,-0.012185040928138768,-0.012185040928138768,0.0002723957231531106,-0.00012185040928138769,-0.00012185040928138769,0.005760743748396635,-0.002116837538778782,45 +illusion_1L,sr,46,13.8,0.6000964641571045,-0.18733787536621094,0.673308253288269,-0.18423013389110565,1.3622201681137085,0.23506560921669006,0.001982390647754073,-6.380643753800541e-05,0.002369876019656658,0.00024671253049746156,0.002541855676099658,-0.000363770843250677,0.026692014964049965,-0.011340008668710863,-0.011340008668710863,0.00026692014964049967,-0.00011340008668710863,-0.00011340008668710863,0.005753485951572657,-0.0020950448233634233,46 +illusion_1L,sr,47,14.1,0.6686564683914185,-0.2519822120666504,0.6532411575317383,-0.4367413818836212,1.2660976648330688,-0.016284512355923653,0.001974965212866664,-6.08981354162097e-05,0.002368918154388666,0.0003044973418582231,0.002530742669478059,-0.00035436160396784544,0.02534145517132605,-0.010368077044161927,-0.010368077044161927,0.0002534145517132605,-0.00010368077044161927,-0.00010368077044161927,0.005740967579185963,-0.0019375038100406528,47 +illusion_1L,sr,48,14.4,0.7405452132225037,-0.2986622750759125,0.6633493900299072,-0.6252761483192444,1.1399435997009277,-0.28430861234664917,0.0019713537767529488,-5.4904259741306305e-05,0.0023738264571875334,0.00036353085306473076,0.002516478765755892,-0.00034724673605524004,0.022070911837482776,-0.008442672596985265,-0.008442672596985265,0.00022070911837482777,-8.442672596985265e-05,-8.442672596985265e-05,0.005731895100325346,-0.0016547086415812373,48 +illusion_1L,sr,49,14.7,0.8075522184371948,-0.34131771326065063,0.7063449621200562,-0.705746054649353,1.0226900577545166,-0.486473023891449,0.0019738650880753994,-4.55431109003257e-05,0.00238750409334898,0.00041720244917087257,0.002503421623259783,-0.0003381428250577301,0.01693520811237502,-0.005576571550013315,-0.005576571550013315,0.0001693520811237502,-5.576571550013315e-05,-5.576571550013315e-05,0.00566871277987957,-0.0012652967125177383,49 +illusion_1L,sr,50,15.0,0.8716095089912415,-0.3786241412162781,0.7625512480735779,-0.7197464108467102,0.9342367649078369,-0.5805995464324951,0.0019753247033804655,-3.376164022483863e-05,0.002400973578915,0.0004602166882250458,0.0024845318403095007,-0.0003252169699408114,0.01184430232557887,-0.003112518680122661,-0.003112518680122661,0.00011844302325578871,-3.112518680122661e-05,-3.112518680122661e-05,0.005592959467321634,-0.0007947873091325164,50 +illusion_1L,sr,51,15.3,0.934514582157135,-0.40936988592147827,0.8128576874732971,-0.7293113470077515,0.8747106194496155,-0.5870997309684753,0.001973699079826474,-2.0826539184781723e-05,0.0024118954315781593,0.0004885069793090224,0.0024597961455583572,-0.00030733697349205613,0.006613274958122445,-0.0008191056885453462,-0.0008191056885453462,6.613274958122445e-05,-8.191056885453462e-06,-8.191056885453462e-06,0.0055853561498224735,-0.000273875892162323,51 +illusion_1L,sr,52,15.6,0.9969728589057922,-0.4342971742153168,0.8546856641769409,-0.747687578201294,0.8266431093215942,-0.5599212050437927,0.0019726138561964035,-6.772605502192164e-06,0.002423588652163744,0.0004996201605536044,0.002434893511235714,-0.00028410067898221314,0.0007515840447487043,0.0017802203834537712,0.0017802203834537712,7.515840447487043e-06,1.7802203834537712e-05,1.7802203834537712e-05,0.0055999187752604485,0.000263598543824628,52 +illusion_1L,sr,53,15.9,1.0599021911621094,-0.454135537147522,0.8892139792442322,-0.7665268182754517,0.7750878930091858,-0.5246623158454895,0.0019739146810024977,6.736985596944578e-06,0.002438807161524892,0.000494269304908812,0.0024146621581166983,-0.0002581594162620604,-0.0036572432316803777,0.003258412194203521,0.003258412194203521,-3.6572432316803776e-05,3.258412194203521e-05,3.258412194203521e-05,0.005566527601331472,0.000782874645665288,53 +illusion_1L,sr,54,16.2,1.1245362758636475,-0.4691963791847229,0.9137893915176392,-0.7669506072998047,0.7175525426864624,-0.4743289053440094,0.001974735176190734,1.8830964108929038e-05,0.0024536163546144962,0.00047609934699721634,0.0023968496825546026,-0.00023420336947310716,-0.008143224519605419,0.004849610708380242,0.004849610708380242,-8.143224519605419e-05,4.849610708380242e-05,4.849610708380242e-05,0.005543616600334644,0.0012505297781899571,54 +illusion_1L,sr,55,16.5,1.1922701597213745,-0.4790140688419342,0.9218931794166565,-0.7225928902626038,0.6594738364219666,-0.39434951543807983,0.0019770662765949965,2.9613363949465565e-05,0.002470661886036396,0.0004496196343097836,0.002385394647717476,-0.00021624722285196185,-0.012968732329433061,0.006830071096830939,0.006830071096830939,-0.00012968732329433062,6.830071096830939e-05,6.830071096830939e-05,0.0055874851532280445,0.0016366330673918128,55 +illusion_1L,sr,56,16.8,1.263743281364441,-0.4811238646507263,0.9081058502197266,-0.618188738822937,0.6096577048301697,-0.2780541777610779,0.001984002999961376,3.8312155083986e-05,0.0024928224738687277,0.00041983634582720697,0.0023841371294111013,-0.00020855051116086543,-0.016738173300644733,0.008229883935331764,0.008229883935331764,-0.00016738173300644734,8.229883935331763e-05,8.229883935331763e-05,0.005633705295622349,0.0019166492857038975,56 +illusion_1L,sr,57,17.1,1.335545301437378,-0.46765372157096863,0.8724390864372253,-0.45558100938796997,0.5771394968032837,-0.1323653757572174,0.0019903313368558884,4.493935193750076e-05,0.0025128768756985664,0.0003926792705897242,0.002386778360232711,-0.0002146862243534997,-0.020167387786797455,0.00962578579607977,0.00962578579607977,-0.00020167387786797455,9.62578579607977e-05,9.62578579607977e-05,0.005650329869240522,0.002072976902127266,57 +illusion_1L,sr,58,17.4,1.394333004951477,-0.4197643995285034,0.8214470744132996,-0.2346423864364624,0.5704192519187927,0.02256142534315586,0.0019894763827323914,4.9391663196729496e-05,0.002521555870771408,0.00037209881702437997,0.002384801395237446,-0.0002358774800086394,-0.022389073736079124,0.010420823134351886,0.010420823134351886,-0.00022389073736079124,0.00010420823134351886,0.00010420823134351886,0.005705440882593393,0.002096022479236126,58 +illusion_1L,sr,59,17.7,1.4141608476638794,-0.3073611557483673,0.7702447772026062,0.03802229464054108,0.5972964763641357,0.15616534650325775,0.0019838898442685604,5.1416798669379205e-05,0.002519588451832533,0.00035872356966137886,0.0023794416338205338,-0.00026980627444572747,-0.022929420239348366,0.010300990444055455,0.010300990444055455,-0.00022929420239348368,0.00010300990444055456,0.00010300990444055456,0.005788230337202549,0.0019847527146339417,59 +illusion_1L,sr,60,18.0,1.367213487625122,-0.1094031035900116,0.7359904050827026,0.3238917291164398,0.6567273736000061,0.24402032792568207,0.001978158950805664,5.051520201959647e-05,0.0025117986369878054,0.0003507207438815385,0.0023757549934089184,-0.00031160443904809654,-0.021846776305819576,0.009334177575867575,0.009334177575867575,-0.00021846776305819578,9.334177575867575e-05,9.334177575867575e-05,0.00579201802611351,0.001746693509630859,60 +illusion_1L,sr,61,18.3,1.2556015253067017,0.13930043578147888,0.7306616306304932,0.5540062189102173,0.7307130694389343,0.2952607274055481,0.0019712273497134447,4.713298403657973e-05,0.002496429719030857,0.0003455769910942763,0.0023715991992503405,-0.00035629901685751975,-0.019960678214437574,0.008138291838482248,0.008138291838482248,-0.00019960678214437575,8.138291838482248e-05,8.138291838482248e-05,0.005716915708035231,0.001397387241013348,61 +illusion_1L,sr,62,18.6,1.1232482194900513,0.34845027327537537,0.7585064768791199,0.6641952395439148,0.8018139004707336,0.3347122073173523,0.0019648561719805002,4.1214301745640114e-05,0.0024769343435764313,0.0003397362306714058,0.0023695663549005985,-0.00039797177305445075,-0.016702273139401327,0.006273478441957942,0.006273478441957942,-0.00016702273139401327,6.273478441957942e-05,6.273478441957942e-05,0.00565684586763382,0.0009593489812687039,62 +illusion_1L,sr,63,18.9,1.0122199058532715,0.4566998779773712,0.8038753867149353,0.6806244254112244,0.8677405714988708,0.3693135976791382,0.0019641797989606857,3.3259748306591064e-05,0.0024602627381682396,0.0003301905235275626,0.0023753319401293993,-0.00043149839621037245,-0.012972783359849152,0.00436481863336749,0.00436481863336749,-0.00012972783359849153,4.36481863336749e-05,4.36481863336749e-05,0.005609786603599787,0.0004605941940099001,63 +illusion_1L,sr,64,19.2,0.9346073269844055,0.476241797208786,0.8456637859344482,0.6809372305870056,0.9311047196388245,0.39778509736061096,0.0019691402558237314,2.3789900296833366e-05,0.002448250772431493,0.0003160037740599364,0.002389146713539958,-0.00045405959826894104,-0.008902967757674421,0.0024469159809488925,0.0024469159809488925,-8.902967757674421e-05,2.4469159809488924e-05,2.4469159809488924e-05,0.005531110800802708,-6.716222560498863e-05,64 +illusion_1L,sr,65,19.5,0.876813530921936,0.4559604823589325,0.8789629936218262,0.6929455399513245,0.9933984279632568,0.4205177426338196,0.001971513032913208,1.3538190614781342e-05,0.0024328320287168026,0.000298570841550827,0.0024013034999370575,-0.00046526986989192665,-0.004865784999259146,0.000718503888770157,0.000718503888770157,-4.865784999259146e-05,7.18503888770157e-06,7.18503888770157e-06,0.005488442722707987,-0.0005905209691263735,65 +illusion_1L,sr,66,19.8,0.8214319944381714,0.42407238483428955,0.9055049419403076,0.7114994525909424,1.0556764602661133,0.4382530152797699,0.0019707134924829006,3.0752078146178974e-06,0.002414209768176079,0.0002794569591060281,0.0024103852920234203,-0.00046538710012100637,-0.0008455755143178223,-0.0009120418935928513,-0.0009120418935928513,-8.455755143178223e-06,-9.120418935928514e-06,-9.120418935928514e-06,0.0055447774939239025,-0.0010764988837763667,66 +illusion_1L,sr,67,20.1,0.7617784738540649,0.3795669674873352,0.9238532781600952,0.7195866107940674,1.1189788579940796,0.4512549340724945,0.0019702340941876173,-6.83180269334116e-06,0.002397616393864155,0.00026074322522617877,0.0024202053900808096,-0.0004553915641736239,0.0028558420404546877,-0.002300358539393236,-0.002300358539393236,2.8558420404546878e-05,-2.300358539393236e-05,-2.300358539393236e-05,0.005618898663669825,-0.0014945860020816326,67 +illusion_1L,sr,68,20.4,0.7009284496307373,0.3117545545101166,0.928287148475647,0.6893813610076904,1.1845600605010986,0.4590761959552765,0.00196996983140707,-1.5669696949771605e-05,0.00238370755687356,0.00024584177299402654,0.0024303440004587173,-0.0004384287167340517,0.006526370687965002,-0.0037287645939832123,-0.0037287645939832123,6.526370687965002e-05,-3.7287645939832124e-05,-3.7287645939832124e-05,0.0056407577358186245,-0.0018186323577538133,68 +illusion_1L,sr,69,20.7,0.6474822759628296,0.21474294364452362,0.9124243259429932,0.5989738702774048,1.2531782388687134,0.459828644990921,0.001968714874237776,-2.355226934014354e-05,0.002371701179072261,0.00023765517107676715,0.0024390111211687326,-0.0004183834244031459,0.010243186456071147,-0.005306841853915306,-0.005306841853915306,0.00010243186456071148,-5.3068418539153064e-05,-5.3068418539153064e-05,0.005669464357197285,-0.00202845293097198,69 +illusion_1L,sr,70,21.0,0.6127382516860962,0.09458119422197342,0.874413251876831,0.4474640488624573,1.3231505155563354,0.4481021761894226,0.0019688745960593224,-2.9803790312143974e-05,0.002364755142480135,0.0002385460102232173,0.002448511775583029,-0.00039847998414188623,0.01285082269613317,-0.006228514230403083,-0.006228514230403083,0.0001285082269613317,-6.228514230403083e-05,-6.228514230403083e-05,0.005728682037442923,-0.002111055189743638,70 +illusion_1L,sr,71,21.3,0.6080747246742249,-0.029332265257835388,0.8185136914253235,0.23899239301681519,1.3857778310775757,0.4109145998954773,0.0019732408691197634,-3.436410042922944e-05,0.0023661914747208357,0.000249250209890306,0.0024614727590233088,-0.00038130820030346513,0.014965400554896481,-0.006991416784681493,-0.006991416784681493,0.0001496540055489648,-6.991416784681493e-05,-6.991416784681493e-05,0.005740906111896038,-0.0020614201202988625,71 +illusion_1L,sr,72,21.6,0.6392049789428711,-0.1320033073425293,0.7576718330383301,-0.02115877903997898,1.4206366539001465,0.32519468665122986,0.001975598279386759,-3.717274739756249e-05,0.0023680594749748707,0.0002701235644053668,0.0024692246224731207,-0.0003693999897222966,0.01607616163309905,-0.007251414120379961,-0.007251414120379961,0.00016076161633099052,-7.25141412037996e-05,-7.25141412037996e-05,0.00570477731525898,-0.0018827876774594188,72 +illusion_1L,sr,73,21.9,0.6965054869651794,-0.20389339327812195,0.711546778678894,-0.29964637756347656,1.398357629776001,0.16641801595687866,0.0019721416756510735,-3.769813702092506e-05,0.002365193562582135,0.0002997139235958457,0.0024663556832820177,-0.0003625748213380575,0.015651475017061073,-0.006650068713330695,-0.006650068713330695,0.00015651475017061073,-6.650068713330695e-05,-6.650068713330695e-05,0.005704289767891169,-0.0015864415327087045,73 +illusion_1L,sr,74,22.2,0.760307788848877,-0.2582598328590393,0.6987867951393127,-0.5263554453849792,1.3022233247756958,-0.05788363143801689,0.0019659341778606176,-3.5981043765787035e-05,0.00235997186973691,0.0003335399669595063,0.002455353271216154,-0.00035850872518494725,0.014564047587372828,-0.005845335905112943,-0.005845335905112943,0.00014564047587372828,-5.845335905112943e-05,-5.845335905112943e-05,0.005719874519854784,-0.0011909975437447429,74 +illusion_1L,sr,75,22.5,0.8211087584495544,-0.3057832717895508,0.7269428372383118,-0.6358653903007507,1.1613456010818481,-0.27713268995285034,0.0019608349539339542,-3.2303909392794594e-05,0.0023573131766170263,0.00036655404255725443,0.0024414751678705215,-0.0003544641367625445,0.012829431126282155,-0.004843400166154609,-0.004843400166154609,0.00012829431126282155,-4.843400166154609e-05,-4.843400166154609e-05,0.005665991455316544,-0.0007212489726953208,75 +illusion_1L,sr,76,22.8,0.8797211647033691,-0.3460279703140259,0.7764696478843689,-0.653896152973175,1.0296565294265747,-0.4125283658504486,0.001955505693331361,-2.654832132975571e-05,0.002354887779802084,0.0003955987631343305,0.0024234221782535315,-0.00034797098487615585,0.010174137381711912,-0.0034252979311153245,-0.0034252979311153245,0.00010174137381711912,-3.4252979311153245e-05,-3.4252979311153245e-05,0.005579077173024416,-0.00020663297618739307,76 +illusion_1L,sr,77,23.1,0.9375938177108765,-0.3785324990749359,0.8211981654167175,-0.6564909219741821,0.9356692433357239,-0.45134273171424866,0.0019518977496773005,-1.9546543626347557e-05,0.0023558689281344414,0.00041717043495737016,0.0024054681416600943,-0.0003376815584488213,0.0077837937524408716,-0.0024183277123661917,-0.0024183277123661917,7.783793752440871e-05,-2.4183277123661918e-05,-2.4183277123661918e-05,0.0055456943809986115,0.00032058797660283744,77 +illusion_1L,sr,78,23.4,0.9956260323524475,-0.4043838381767273,0.8554896116256714,-0.6705145239830017,0.872122585773468,-0.4355730712413788,0.001954134786501527,-1.1938269381062128e-05,0.0023649875074625015,0.0004293083038646728,0.002393467118963599,-0.0003232790622860193,0.0049453687389887785,-0.0012410404168137212,-0.0012410404168137212,4.945368738988778e-05,-1.2410404168137212e-05,-1.2410404168137212e-05,0.005538465455174446,0.0008273206767626107,78 +illusion_1L,sr,79,23.7,1.0547044277191162,-0.4244660437107086,0.8820950388908386,-0.6907569766044617,0.818388819694519,-0.4016057550907135,0.001960103865712881,-3.436638507992029e-06,0.002379703102633357,0.0004329209041316062,0.0023861457593739033,-0.00030625873478129506,0.001364018704451346,0.0003795848506071217,0.0003795848506071217,1.3640187044513462e-05,3.7958485060712174e-06,3.7958485060712174e-06,0.005518500693142414,0.0012816928792744875,79 +illusion_1L,sr,80,24.0,1.1156483888626099,-0.43909427523612976,0.9006907939910889,-0.7010055780410767,0.7629791498184204,-0.3561103641986847,0.0019622300751507282,4.846652700507548e-06,0.002390982350334525,0.0004297969280742109,0.0023756304290145636,-0.0002898493257816881,-0.0012108232580153979,0.0012104767031950268,0.0012104767031950268,-1.2108232580153978e-05,1.2104767031950269e-05,1.2104767031950269e-05,0.005552514921873808,0.0016550382133573294,80 +illusion_1L,sr,81,24.3,1.179121971130371,-0.44788941740989685,0.9065362811088562,-0.674741804599762,0.7063772082328796,-0.2914550006389618,0.0019609800074249506,1.2374262951198034e-05,0.0023983630817383528,0.00042132128146477044,0.0023624610621482134,-0.00027603868511505425,-0.004015062718913255,0.0022229842983546586,0.0022229842983546586,-4.015062718913255e-05,2.2229842983546588e-05,2.2229842983546588e-05,0.005664129741489887,0.0019236936932429671,81 +illusion_1L,sr,82,24.6,1.2452867031097412,-0.44927459955215454,0.8936309814453125,-0.5903815031051636,0.6562749147415161,-0.2021699994802475,0.0019599327351897955,1.9596005586208776e-05,0.002405657898634672,0.00040946557419374585,0.0023514346685260534,-0.0002663515624590218,-0.007242814010691229,0.003609666093224162,0.003609666093224162,-7.24281401069123e-05,3.609666093224162e-05,3.609666093224162e-05,0.005749957635998726,0.0020704984199255705,82 +illusion_1L,sr,83,24.9,1.3125261068344116,-0.4390866160392761,0.8593538403511047,-0.44735777378082275,0.6240208148956299,-0.0933014452457428,0.001958030043169856,2.543089613027405e-05,0.002411068882793188,0.0003965344512835145,0.002341532614082098,-0.0002632098039612174,-0.009066378913754829,0.004065733728518359,0.004065733728518359,-9.066378913754829e-05,4.065733728518359e-05,4.065733728518359e-05,0.005759336985647678,0.0020859010983258486,83 +illusion_1L,sr,84,25.2,1.374058485031128,-0.4078570604324341,0.8058100342750549,-0.25230661034584045,0.6209933161735535,0.017898401245474815,0.001955161103978753,2.9692364478250965e-05,0.0024140679743140936,0.00038451876025646925,0.002332942560315132,-0.0002676273579709232,-0.011005720139582092,0.004754229241190455,0.004754229241190455,-0.00011005720139582093,4.754229241190455e-05,4.754229241190455e-05,0.005756254307925701,0.0019686000887304544,84 +illusion_1L,sr,85,25.5,1.4144186973571777,-0.3386646509170532,0.7428489923477173,-0.00869661383330822,0.6514934301376343,0.11085193604230881,0.0019545680843293667,3.2790896511869505e-05,0.0024177907034754753,0.00037458803853951395,0.00232938164845109,-0.0002793800085783005,-0.012792340458077233,0.0055113309514728676,0.0055113309514728676,-0.00012792340458077234,5.511330951472868e-05,5.511330951472868e-05,0.005749706644564867,0.0017256771679967642,85 +illusion_1L,sr,86,25.8,1.4095723628997803,-0.21075530350208282,0.6893045902252197,0.2593826949596405,0.7045435309410095,0.18035881221294403,0.001958125038072467,3.395836029085331e-05,0.002424134872853756,0.0003668410354293883,0.0023330857511609793,-0.00029785529477521777,-0.013047608261146522,0.0053449880496344235,0.0053449880496344235,-0.00013047608261146522,5.3449880496344234e-05,5.3449880496344234e-05,0.005683912429958582,0.0013722052099183202,86 +illusion_1L,sr,87,26.1,1.3364899158477783,-0.017224816605448723,0.6671929955482483,0.49034586548805237,0.762688159942627,0.23780372738838196,0.001959065906703472,3.346703670104034e-05,0.0024243569932878017,0.0003619400958996266,0.0023354911245405674,-0.0003218236961401999,-0.013048566215868168,0.005216918888660431,0.005216918888660431,-0.00013048566215868168,5.216918888660431e-05,5.216918888660431e-05,0.005598609335720539,0.0009303490514867008,87 +illusion_1L,sr,88,26.4,1.2023820877075195,0.20117373764514923,0.6897826194763184,0.6152521967887878,0.8191942572593689,0.28936463594436646,0.001955214887857437,3.119313987554051e-05,0.0024157599546015263,0.00035852708970196545,0.002333778189495206,-0.0003484366461634636,-0.012068930698197616,0.004598318277575397,0.004598318277575397,-0.00012068930698197617,4.5983182775753974e-05,4.5983182775753974e-05,0.0055789402686059475,0.000428010243922472,88 +illusion_1L,sr,89,26.7,1.0554646253585815,0.36635103821754456,0.7407509088516235,0.6432815790176392,0.8750473856925964,0.3332292437553406,0.0019504352239891887,2.7190766559215263e-05,0.002402351936325431,0.00035391945857554674,0.0023313399869948626,-0.00037409865763038397,-0.010476107848018668,0.0037551551419840383,0.0037551551419840383,-0.00010476107848018667,3.7551551419840385e-05,3.7551551419840385e-05,0.005592026747763157,-0.00010290697537129745,89 +illusion_1L,sr,90,27.0,0.9405882954597473,0.43624261021614075,0.7895022034645081,0.6480419039726257,0.9310459494590759,0.36895766854286194,0.0019467961974442005,2.1938571080681868e-05,0.002387826330959797,0.00034649367444217205,0.0023311639670282602,-0.00039541852311231196,-0.008720222665590277,0.0029905927389100445,0.0029905927389100445,-8.720222665590277e-05,2.9905927389100446e-05,2.9905927389100446e-05,0.0055693225003778934,-0.0006285032723098993,90 +illusion_1L,sr,91,27.3,0.8652248382568359,0.43371832370758057,0.8261894583702087,0.6628522276878357,0.9874921441078186,0.3976198434829712,0.0019431918626651168,1.575444548507221e-05,0.002371454145759344,0.00033581233583390713,0.0023316361475735903,-0.00041055266046896577,-0.006457835552341369,0.0020159928636166585,0.0020159928636166585,-6.457835552341369e-05,2.0159928636166585e-05,2.0159928636166585e-05,0.005552446935325861,-0.001115041202865541,91 +illusion_1L,sr,92,27.6,0.8100882172584534,0.400561660528183,0.8535684943199158,0.6840837001800537,1.0450242757797241,0.4200607240200043,0.0019417224684730172,8.604325557826087e-06,0.002357283141463995,0.00032192928483709693,0.0023357567843049765,-0.00041876311297528446,-0.0038409232577910762,0.0009006756927620527,0.0009006756927620527,-3.8409232577910765e-05,9.006756927620527e-06,9.006756927620527e-06,0.005589765962213278,-0.0015311157330870628,92 +illusion_1L,sr,93,27.9,0.757910430431366,0.35444554686546326,0.8726864457130432,0.6967717409133911,1.1045457124710083,0.436575710773468,0.001945835305377841,1.4186707630869932e-06,0.002350274473428726,0.0003061058232560754,0.002347491914406419,-0.00041991189937107265,-0.001896499675277153,0.0003537098153245013,0.0003537098153245013,-1.896499675277153e-05,3.5370981532450127e-06,3.5370981532450127e-06,0.00562874274328351,-0.0018496968550607562,93 +illusion_1L,sr,94,28.2,0.7049893140792847,0.2924964129924774,0.8805099725723267,0.6759655475616455,1.1667733192443848,0.4468314051628113,0.0019514564191922545,-5.573146609094692e-06,0.0023463049437850714,0.00029107800219208,0.0023617451079189777,-0.0004160383250564337,0.00038751846787832056,-0.0004225580490770894,-0.0004225580490770894,3.875184678783206e-06,-4.225580490770894e-06,-4.225580490770894e-06,0.005641409661620855,-0.0020499122329056263,94 +illusion_1L,sr,95,28.5,0.657243013381958,0.20936325192451477,0.872073769569397,0.599596381187439,1.2317410707473755,0.44949594140052795,0.0019526227843016386,-1.2119700841140002e-05,0.0023389067500829697,0.0002796247717924416,0.002371164970099926,-0.0004094125470146537,0.0025958136861171377,-0.0011681953258078897,-0.0011681953258078897,2.5958136861171377e-05,-1.1681953258078897e-05,-1.1681953258078897e-05,0.005687114782631397,-0.0021184461656957865,95 +illusion_1L,sr,96,28.8,0.6252189874649048,0.10801606625318527,0.8441902995109558,0.4662250280380249,1.2976889610290527,0.4412443935871124,0.0019506640965119004,-1.759195583872497e-05,0.0023291578982025385,0.0002733480359893292,0.002376063959673047,-0.00040112249553203583,0.004440465849380033,-0.0017131925723739008,-0.0017131925723739008,4.440465849380033e-05,-1.7131925723739007e-05,-1.7131925723739007e-05,0.005764052737504244,-0.0020504610147327185,96 +illusion_1L,sr,97,29.1,0.6202185153961182,0.002799233188852668,0.7969223260879517,0.2851622998714447,1.3588893413543701,0.41488009691238403,0.0019489332335069776,-2.194533772126306e-05,0.0023215271066874266,0.00027284541283734143,0.0023802886717021465,-0.0003920991439372301,0.006520939568641422,-0.0025385972785585825,-0.0025385972785585825,6.520939568641422e-05,-2.5385972785585827e-05,-2.5385972785585827e-05,0.005783763248473406,-0.001849970780313015,97 +illusion_1L,sr,98,29.4,0.6471729874610901,-0.08774338662624359,0.7361208200454712,0.05941086634993553,1.4031153917312622,0.3577424883842468,0.0019459978211671114,-2.527391006879043e-05,0.0023141116835176945,0.0002787398989312351,0.002381382742896676,-0.00038395667797885835,0.008361070618313635,-0.003322313464069103,-0.003322313464069103,8.361070618313635e-05,-3.322313464069103e-05,-3.322313464069103e-05,0.005733401048928499,-0.0015296366764232516,98 +illusion_1L,sr,99,29.7,0.6964206695556641,-0.1577775478363037,0.6771880984306335,-0.19744013249874115,1.411653757095337,0.25351476669311523,0.0019426801009103656,-2.708604915824253e-05,0.0023082278203219175,0.000290785072138533,0.0023802423384040594,-0.0003771072078961879,0.009260996291811069,-0.0035733314012312,-0.0035733314012312,9.260996291811069e-05,-3.5733314012312e-05,-3.5733314012312e-05,0.005679980851709843,-0.001109990873374045,99 +illusion_1L,sr,100,30.0,0.7512685060501099,-0.21712695062160492,0.6427796483039856,-0.4375349283218384,1.3630197048187256,0.09020424634218216,0.0019426427315920591,-2.7385580324335024e-05,0.0023079984821379185,0.0003074680862482637,0.0023807785473763943,-0.00037111755227670074,0.009852059117454327,-0.003779439693785684,-0.003779439693785684,9.852059117454328e-05,-3.779439693785684e-05,-3.779439693785684e-05,0.005627625621855259,-0.0006181322387419641,100 +illusion_1L,sr,101,30.3,0.804918646812439,-0.27166739106178284,0.6528237462043762,-0.5903413891792297,1.2482829093933105,-0.11713475733995438,0.0019461875781416893,-2.6424182578921318e-05,0.002313632983714342,0.00032724160701036453,0.002383148530498147,-0.0003658407076727599,0.009932855029386276,-0.0038019001910542384,-0.0038019001910542384,9.932855029386276e-05,-3.8019001910542386e-05,-3.8019001910542386e-05,0.005549031309783459,-8.59768915688619e-05,101 +illusion_1L,sr,102,30.6,0.858747124671936,-0.3190143406391144,0.7011075615882874,-0.637645959854126,1.0970898866653442,-0.3076693117618561,0.0019466446246951818,-2.3970200345502235e-05,0.0023170909844338894,0.00034900271566584706,0.0023794888984411955,-0.0003610813000705093,0.008936162125815703,-0.003223416619808142,-0.003223416619808142,8.936162125815703e-05,-3.2234166198081424e-05,-3.2234166198081424e-05,0.005499288439750671,0.0004518234054557979,102 +illusion_1L,sr,103,30.9,0.9136045575141907,-0.358018696308136,0.7551189064979553,-0.6443713307380676,0.9611643552780151,-0.4181405305862427,0.0019432661356404424,-1.9769482605624944e-05,0.0023169168271124363,0.00037017749855294824,0.002368829445913434,-0.0003555026196409017,0.007501841639159692,-0.0025089632510987767,-0.0025089632510987767,7.501841639159692e-05,-2.5089632510987766e-05,-2.5089632510987766e-05,0.00553347822278738,0.000960158125963062,103 +illusion_1L,sr,104,31.2,0.9693431854248047,-0.3895566463470459,0.7969931364059448,-0.6577436327934265,0.8678839206695557,-0.44139596819877625,0.0019397803116589785,-1.4822466255282052e-05,0.0023170707281678915,0.0003878187562804669,0.0023558782413601875,-0.0003475691191852093,0.006597950724544777,-0.0023513867541190628,-0.0023513867541190628,6.597950724544777e-05,-2.351386754119063e-05,-2.351386754119063e-05,0.0055986023508012295,0.0014057770604267716,104 +illusion_1L,sr,105,31.5,1.026171326637268,-0.4144948422908783,0.8279335498809814,-0.6792826056480408,0.8073311448097229,-0.41537535190582275,0.0019371509552001953,-9.093204425880685e-06,0.0023186756297945976,0.00040045854984782636,0.002342568477615714,-0.0003368060861248523,0.004842109524412001,-0.0016910129121926187,-0.0016910129121926187,4.842109524412001e-05,-1.6910129121926187e-05,-1.6910129121926187e-05,0.005635641980916262,0.0017594960518181324,105 +illusion_1L,sr,106,31.8,1.0846068859100342,-0.4331793189048767,0.8500516414642334,-0.6966493725776672,0.7572762370109558,-0.37061721086502075,0.0019346039043739438,-2.653851879586e-06,0.0023209245409816504,0.00040760947740636766,0.0023290046956390142,-0.0003238149802200496,0.003048533693530149,-0.001090976470650826,-0.001090976470650826,3.048533693530149e-05,-1.090976470650826e-05,-1.090976470650826e-05,0.005671056918799877,0.0019981369841843843,106 +illusion_1L,sr,107,32.1,1.1453274488449097,-0.44538700580596924,0.8619328737258911,-0.6877031326293945,0.7071025967597961,-0.31228503584861755,0.0019344353349879384,3.3956000606849557e-06,0.002326566493138671,0.00040909371455200016,0.0023187820333987474,-0.00030990393133834004,0.0019007643086286939,-0.0010127505171984809,-0.0010127505171984809,1.900764308628694e-05,-1.0127505171984808e-05,-1.0127505171984808e-05,0.005717759020626545,0.002106070751324296,107 +illusion_1L,sr,108,32.4,1.2086677551269531,-0.45009511709213257,0.8597947955131531,-0.628021776676178,0.6593388319015503,-0.23551411926746368,0.0019393357215449214,9.26362190512009e-06,0.002338771941140294,0.000406076229410246,0.0023158553522080183,-0.0002964872110169381,-9.937180715689515e-05,-0.00030616147145314226,-0.00030616147145314226,-9.937180715689515e-07,-3.061614714531423e-06,-3.061614714531423e-06,0.005728086922317743,0.002076256787404418,108 +illusion_1L,sr,109,32.7,1.273576259613037,-0.4448423683643341,0.8404037356376648,-0.5106145739555359,0.6233827471733093,-0.14004608988761902,0.001943876501172781,1.4681990251119714e-05,0.0023507035803049803,0.00040079394239000976,0.0023141561541706324,-0.00028638498042710125,-0.001805088761646905,0.00021823698716989627,0.00021823698716989627,-1.8050887616469052e-05,2.182369871698963e-06,2.182369871698963e-06,0.005702213384211063,0.0019107060506939888,109 +illusion_1L,sr,110,33.0,1.3358869552612305,-0.42447134852409363,0.8024966716766357,-0.3460703492164612,0.610836923122406,-0.03624778985977173,0.0019438472809270024,1.8790822650771588e-05,0.0023569667246192694,0.00039470239426009357,0.0023088438902050257,-0.00028170764562673867,-0.003067978967345751,0.0004880992711134985,0.0004880992711134985,-3.067978967345751e-05,4.880992711134985e-06,4.880992711134985e-06,0.005696525331586599,0.0016203367849811912,110 +illusion_1L,sr,111,33.3,1.3861589431762695,-0.3797626793384552,0.7478529810905457,-0.14040251076221466,0.6295008063316345,0.05803666263818741,0.0019412362016737461,2.2062265998101793e-05,0.0023588130716234446,0.0003886993508785963,0.0023016834165900946,-0.00028268000460229814,-0.005157169050592325,0.0014698239157786772,0.0014698239157786772,-5.157169050592325e-05,1.4698239157786772e-05,1.4698239157786772e-05,0.005705347750335932,0.0012242335360497236,111 +illusion_1L,sr,112,33.6,1.409662127494812,-0.29821157455444336,0.6863827109336853,0.10194603353738785,0.6743646264076233,0.13219283521175385,0.0019390052184462547,2.4430471967207268e-05,0.0023596021346747875,0.0003829359484370798,0.00229649874381721,-0.00028899687458761036,-0.006629246238861969,0.0021200720904884438,0.0021200720904884438,-6.62924623886197e-05,2.1200720904884437e-05,2.1200720904884437e-05,0.0056749628856778145,0.0007483611116185784,112 +illusion_1L,sr,113,33.9,1.3886839151382446,-0.16799147427082062,0.6379299759864807,0.3509690463542938,0.7286815643310547,0.19312366843223572,0.0019356932025402784,2.501784183550626e-05,0.002357047749683261,0.00037762662395834923,0.002291222335770726,-0.00030068992055021226,-0.007195927715606975,0.0022481231149466124,0.0022481231149466124,-7.195927715606975e-05,2.2481231149466125e-05,2.2481231149466125e-05,0.005616396199911833,0.00022382187307812274,113 +illusion_1L,sr,114,34.2,1.3067829608917236,0.012349479831755161,0.6266322731971741,0.5426557660102844,0.7816227674484253,0.2497837096452713,0.0019326317124068737,2.4708120690775104e-05,0.0023529808968305588,0.00037272428744472563,0.002287826268002391,-0.0003160963242407888,-0.008469336260732721,0.0030578851757650377,0.0030578851757650377,-8.469336260732722e-05,3.057885175765038e-05,3.057885175765038e-05,0.005577105097472668,-0.00031522029894404113,114 +illusion_1L,sr,115,34.5,1.1686116456985474,0.21121332049369812,0.6616412401199341,0.6269784569740295,0.833808422088623,0.30084580183029175,0.0019336325349286199,2.3161701392382383e-05,0.0023516796063631773,0.0003672026505228132,0.002290574600920081,-0.0003335114452056587,-0.008496123884246629,0.0031104323720839364,0.0031104323720839364,-8.496123884246629e-05,3.1104323720839366e-05,3.1104323720839366e-05,0.005551840178668499,-0.0008338077459484339,115 +illusion_1L,sr,116,34.8,1.0157212018966675,0.36483219265937805,0.7175393104553223,0.6408382654190063,0.8872573971748352,0.3436983823776245,0.0019371823873370886,1.9985602193628438e-05,0.0023515718057751656,0.0003606434038374573,0.00229755905456841,-0.0003518813173286617,-0.007990165735801302,0.002933471781005524,0.002933471781005524,-7.990165735801303e-05,2.933471781005524e-05,2.933471781005524e-05,0.0055290330201387405,-0.0012984927743673325,116 +illusion_1L,sr,117,35.1,0.8944840431213379,0.431732177734375,0.7654695510864258,0.6496325731277466,0.9421850442886353,0.3786696195602417,0.0019373457180336118,1.6239202523138374e-05,0.002345920307561755,0.00035345987998880446,0.002301638713106513,-0.00036974617978557944,-0.00806982873518327,0.003338384656168342,0.003338384656168342,-8.06982873518327e-05,3.338384656168342e-05,3.338384656168342e-05,0.005548518151044846,-0.0016795200062915683,117 +illusion_1L,sr,118,35.4,0.8170266151428223,0.42687535285949707,0.8007493615150452,0.6689938306808472,0.9984846115112305,0.4067203104496002,0.001934393192641437,1.1688713129842654e-05,0.0023349265102297068,0.0003447823110036552,0.002302406122907996,-0.0003853679518215358,-0.006916757707721585,0.0029595870157882835,0.0029595870157882835,-6.916757707721586e-05,2.9595870157882835e-05,2.9595870157882835e-05,0.00562577648088336,-0.001952742924913764,118 +illusion_1L,sr,119,35.7,0.7644752860069275,0.38824623823165894,0.8263440728187561,0.6901704668998718,1.0563052892684937,0.4283658266067505,0.0019319518469274044,6.22995730736875e-06,0.0023235739208757877,0.00033379302476532757,0.0023040820378810167,-0.0003969132376369089,-0.005569674786873306,0.002536210314459591,0.002536210314459591,-5.5696747868733064e-05,2.536210314459591e-05,2.536210314459591e-05,0.005705163814127445,-0.0021011470817029476,119 +illusion_1L,sr,120,36.0,0.7172780632972717,0.3348953127861023,0.8424503207206726,0.6957009434700012,1.1160712242126465,0.44358012080192566,0.001929835882037878,1.0981831337630865e-06,0.002312086522579193,0.0003215441247448325,0.0023062285035848618,-0.00040351742063649,-0.004940276108482524,0.002705858210889464,0.002705858210889464,-4.940276108482524e-05,2.705858210889464e-05,2.705858210889464e-05,0.005744705442339182,-0.0021158847957849503,120 +illusion_1L,sr,121,36.3,0.6704503893852234,0.26652562618255615,0.8464267253875732,0.6605452299118042,1.1780617237091064,0.45165354013442993,0.0019278695108368993,-3.99402824768913e-06,0.0023012084420770407,0.0003089524689130485,0.0023088857997208834,-0.00040567442192696035,-0.0030829499412820607,0.0019961602918287177,0.0019961602918287177,-3.0829499412820607e-05,1.996160291828718e-05,1.996160291828718e-05,0.005756988190114498,-0.0019967579282820225,121 +illusion_1L,sr,122,36.6,0.6302005648612976,0.18033690750598907,0.8352208733558655,0.5681819319725037,1.241868019104004,0.450801283121109,0.0019287030445411801,-9.119644346355926e-06,0.0022946554236114025,0.0002972407382912934,0.002315110294148326,-0.00040392641676589847,-0.0012338953922570242,0.0012877807157222797,0.0012877807157222797,-1.2338953922570242e-05,1.2877807157222798e-05,1.2877807157222798e-05,0.005744813941419125,-0.0017521297559142113,122 +illusion_1L,sr,123,36.9,0.6076916456222534,0.08146730810403824,0.8071776032447815,0.42418304085731506,1.3049999475479126,0.4373774826526642,0.001933789812028408,-1.3094507266941946e-05,0.002294641686603427,0.0002883553097490221,0.002326581859961152,-0.0003991828125435859,-0.0001459631842398411,0.0011057931901165639,0.0011057931901165639,-1.459631842398411e-06,1.1057931901165638e-05,1.1057931901165638e-05,0.005693688523024321,-0.001398277236148715,123 +illusion_1L,sr,124,37.2,0.6135200262069702,-0.015442315489053726,0.761867105960846,0.24031469225883484,1.3608964681625366,0.4047483205795288,0.0019371315138414502,-1.659088593441993e-05,0.002294194884598255,0.00028418059810064733,0.002335775876417756,-0.0003938895824830979,0.002137512407650116,-2.4130832121074114e-05,-2.4130832121074114e-05,2.1375124076501163e-05,-2.4130832121074114e-07,-2.4130832121074114e-07,0.005629749968647957,-0.0009582436759956181,124 +illusion_1L,sr,125,37.5,0.6491284966468811,-0.09571995586156845,0.7032713294029236,0.019177621230483055,1.3980213403701782,0.34323644638061523,0.0019360707374289632,-1.9404802515055053e-05,0.002290085656568408,0.000285725254798308,0.002338976599276066,-0.0003890138759743422,0.0037242438244456805,-0.0007283171563150781,-0.0007283171563150781,3.7242438244456804e-05,-7.2831715631507815e-06,-7.2831715631507815e-06,0.005596959963440895,-0.00046027303324081004,125 +illusion_1L,sr,126,37.8,0.7012186646461487,-0.15962351858615875,0.6451292037963867,-0.2271815538406372,1.4018983840942383,0.24261680245399475,0.0019332015654072165,-2.0713127014460042e-05,0.0022848346270620823,0.0002926979213953018,0.0023383742664009333,-0.0003842627629637718,0.004591127008666672,-0.001013389858952985,-0.001013389858952985,4.5911270086666724e-05,-1.0133898589529852e-05,-1.0133898589529852e-05,0.005591437220573425,6.405806198017672e-05,126 +illusion_1L,sr,127,38.1,0.7543305158615112,-0.21788731217384338,0.6105742454528809,-0.45395681262016296,1.3571621179580688,0.09590299427509308,0.001930589904077351,-2.1171310436329804e-05,0.002281029475852847,0.00030390857136808336,0.0023362869396805763,-0.00037962591159157455,0.0061357649848574405,-0.0019299275896302592,-0.0019299275896302592,6.135764984857441e-05,-1.9299275896302592e-05,-1.9299275896302592e-05,0.005585479084402323,0.0005818844656459987,127 +illusion_1L,sr,128,38.4,0.8051540851593018,-0.2729368209838867,0.621301531791687,-0.5952863693237305,1.2524179220199585,-0.08977245539426804,0.0019272099016234279,-2.0637493435060605e-05,0.002277361461892724,0.00031849919469095767,0.0023313192650675774,-0.0003748730814550072,0.006758741353390697,-0.0023072428833923603,-0.0023072428833923603,6.758741353390698e-05,-2.3072428833923604e-05,-2.3072428833923604e-05,0.005581559147685766,0.0010611350880935788,128 +illusion_1L,sr,129,38.7,0.8564720749855042,-0.32087042927742004,0.6713045239448547,-0.6369227766990662,1.1026099920272827,-0.2733701765537262,0.0019248819444328547,-1.8514103430788964e-05,0.0022760999854654074,0.00033496509422548115,0.0023258645087480545,-0.00036916829412803054,0.00667381986559388,-0.0023077819594107055,-0.0023077819594107055,6.67381986559388e-05,-2.3077819594107056e-05,-2.3077819594107056e-05,0.005591227672994137,0.0014725204091519117,129 +illusion_1L,sr,130,39.0,0.9094861745834351,-0.3605411648750305,0.7266285419464111,-0.6429110765457153,0.9541153907775879,-0.3958199620246887,0.001926978467963636,-1.5725929188192822e-05,0.0022812047973275185,0.0003512364055495709,0.0023241201415657997,-0.0003620328789111227,0.00722781174562024,-0.002922371222366719,-0.002922371222366719,7.22781174562024e-05,-2.9223712223667187e-05,-2.9223712223667187e-05,0.0056059095077216625,0.0017913009505718946,130 +illusion_1L,sr,131,39.3,0.9642878174781799,-0.3927808105945587,0.7690029144287109,-0.6571844220161438,0.8457924127578735,-0.43352752923965454,0.0019304299494251609,-1.2085934031347279e-05,0.0022888723760843277,0.00036666946834884584,0.0023227178025990725,-0.0003535675641614944,0.006728607582168068,-0.0028869675503347576,-0.0028869675503347576,6.728607582168069e-05,-2.8869675503347578e-05,-2.8869675503347578e-05,0.005624179262667894,0.0019987314008176327,131 +illusion_1L,sr,132,39.6,1.0209579467773438,-0.4183371365070343,0.7999866008758545,-0.6791258454322815,0.7788829803466797,-0.4123038351535797,0.0019303304143249989,-7.609677595610265e-06,0.002293178578838706,0.0003805345040746033,0.0023163093719631433,-0.00034420948941260576,0.0059597762010065065,-0.0027603181408377628,-0.0027603181408377628,5.9597762010065065e-05,-2.7603181408377628e-05,-2.7603181408377628e-05,0.005661684088408947,0.0020831020083278418,132 +illusion_1L,sr,133,39.9,1.0796184539794922,-0.4374490976333618,0.8217418193817139,-0.6961071491241455,0.7311554551124573,-0.36563265323638916,0.001927707577124238,-3.0874750791554106e-06,0.002294499659910798,0.0003912121173925698,0.0023058478254824877,-0.000334025826305151,0.005415277872066755,-0.002879939767411986,-0.002879939767411986,5.415277872066755e-05,-2.879939767411986e-05,-2.879939767411986e-05,0.005714363418519497,0.0020403247326612473,133 +illusion_1L,sr,134,40.2,1.140413761138916,-0.44975316524505615,0.8331506848335266,-0.6869252324104309,0.6865655779838562,-0.305223286151886,0.0019258533138781786,1.5365528724942124e-06,0.0022968859411776066,0.00039767147973179817,0.002296013990417123,-0.00032283563632518053,0.003990233586398796,-0.0023999033072192553,-0.0023999033072192553,3.990233586398796e-05,-2.3999033072192552e-05,-2.3999033072192552e-05,0.005751916207373142,0.001874040812253952,134 +illusion_1L,sr,135,40.5,1.2031649351119995,-0.4540739357471466,0.8313787579536438,-0.6279497742652893,0.6440191268920898,-0.22922652959823608,0.0019239966059103608,6.2382678152062e-06,0.0022991120349615812,0.0004002292698714882,0.0022861752659082413,-0.00031175726326182485,0.002375847750999809,-0.0018010620354445641,-0.0018010620354445641,2.3758477509998094e-05,-1.801062035444564e-05,-1.801062035444564e-05,0.005752751603722572,0.0015952644171193242,135 +illusion_1L,sr,136,40.8,1.2664978504180908,-0.4479704797267914,0.8141704797744751,-0.5121694207191467,0.6118036508560181,-0.1376902163028717,0.0019223513081669807,1.033002627082169e-05,0.0023018138017505407,0.0003992413985542953,0.0022775104735046625,-0.0003021277370862663,0.0010636801670539792,-0.0014183382607038785,-0.0014183382607038785,1.0636801670539791e-05,-1.4183382607038785e-05,-1.4183382607038785e-05,0.005716994404792786,0.0012215939350426197,136 +illusion_1L,sr,137,41.1,1.3264635801315308,-0.4269089698791504,0.7804301381111145,-0.35171595215797424,0.601624071598053,-0.03976762294769287,0.0019239012617617846,1.3948409105069004e-05,0.002308298833668232,0.00039550382643938065,0.002273828722536564,-0.00029483274556696415,-0.0008700166402941454,-0.0005415176496520371,-0.0005415176496520371,-8.700166402941454e-06,-5.415176496520371e-06,-5.415176496520371e-06,0.005655428394675255,0.0007760541047900915,137 +illusion_1L,sr,138,41.4,1.3749136924743652,-0.3836635947227478,0.7303413152694702,-0.15555498003959656,0.6215515732765198,0.04884982109069824,0.0019287242321297526,1.710600008664187e-05,0.002318496583029628,0.0003903839970007539,0.002275545382872224,-0.00029120343970134854,-0.002685235754066019,0.0003061325646000375,0.0003061325646000375,-2.685235754066019e-05,3.061325646000375e-06,3.061325646000375e-06,0.005588269792497158,0.000285650254227221,138 +illusion_1L,sr,139,41.7,1.3999643325805664,-0.3094947040081024,0.6703062653541565,0.07393084466457367,0.6667115688323975,0.1193426102399826,0.0019308668561279774,1.92425686691422e-05,0.002324983011931181,0.0003853960952255875,0.002275672275573015,-0.00029290420934557915,-0.00391220855629483,0.0008006063282523443,0.0008006063282523443,-3.9122085562948303e-05,8.006063282523443e-06,8.006063282523443e-06,0.005542092490941286,-0.00022027546947356313,139 +illusion_1L,sr,140,42.0,1.3887799978256226,-0.19698882102966309,0.6173816919326782,0.31597650051116943,0.7204976677894592,0.17895206809043884,0.001928925747051835,2.0487388610490598e-05,0.0023253746330738068,0.00038108599255792797,0.0022721753921359777,-0.0002998200652655214,-0.005309456021480134,0.0015245981156272528,0.0015245981156272528,-5.3094560214801344e-05,1.524598115627253e-05,1.524598115627253e-05,0.005534210707992315,-0.0007117835339158773,140 +illusion_1L,sr,141,42.3,1.3280078172683716,-0.04312772676348686,0.5963919758796692,0.5161178112030029,0.7719825506210327,0.23636753857135773,0.0019260233966633677,2.088281871692743e-05,0.0023228153586387634,0.00037687778240069747,0.002268439857289195,-0.0003107406082563102,-0.006290913702041648,0.0020613680013286534,0.0020613680013286534,-6.290913702041649e-05,2.0613680013286536e-05,2.0613680013286536e-05,0.005564122460782528,-0.0011600726284086704,141 +illusion_1L,sr,142,42.6,1.2102510929107666,0.13903000950813293,0.6234198212623596,0.6174919009208679,0.8220510482788086,0.28958258032798767,0.0019232152262702584,1.9896811863873154e-05,0.0023184807505458593,0.00037216051714494824,0.002265693387016654,-0.0003245924599468708,-0.006548832226960982,0.002194895294783644,0.002194895294783644,-6.548832226960982e-05,2.1948952947836442e-05,2.1948952947836442e-05,0.005614774767309427,-0.0015391155611723661,142 +illusion_1L,sr,143,42.9,1.0563080310821533,0.30522894859313965,0.6796471476554871,0.6375510096549988,0.8732272386550903,0.33502906560897827,0.0019200908718630672,1.8252068912261166e-05,0.002311938675120473,0.00036685651866719127,0.002263387432321906,-0.0003396873362362385,-0.0071339865913271835,0.0027054754294290086,0.0027054754294290086,-7.133986591327183e-05,2.7054754294290086e-05,2.7054754294290086e-05,0.005659830756485462,-0.0018271084409207106,143 +illusion_1L,sr,144,43.2,0.9129425883293152,0.40390145778656006,0.731255292892456,0.6441901326179504,0.9260930418968201,0.3725690543651581,0.0019187224097549915,1.5820824046386406e-05,0.002305986825376749,0.000360318023012951,0.0022642361000180244,-0.00035443701199255884,-0.006660688492038845,0.00256178584643868,0.00256178584643868,-6.660688492038845e-05,2.5617858464386802e-05,2.5617858464386802e-05,0.005684380419552326,-0.002007660223171115,144 +illusion_1L,sr,145,43.5,0.8127754926681519,0.42349550127983093,0.7687587738037109,0.6621504426002502,0.9808456301689148,0.4030665159225464,0.0019218295346945524,1.216367854794953e-05,0.002304244553670287,0.0003519784950185567,0.0022714000660926104,-0.000367654807632789,-0.005469048976977184,0.002011489117470136,0.002011489117470136,-5.469048976977184e-05,2.011489117470136e-05,2.011489117470136e-05,0.005696034524589777,-0.0020706653594970703,145 +illusion_1L,sr,146,43.8,0.7512257695198059,0.3932861387729645,0.7956900596618652,0.6841813921928406,1.037769079208374,0.427076518535614,0.0019251038320362568,8.128261470119469e-06,0.00230189086869359,0.0003428715281188488,0.0022796145640313625,-0.0003788090543821454,-0.004885113585348943,0.002013710007241872,0.002013710007241872,-4.885113585348943e-05,2.0137100072418722e-05,2.0137100072418722e-05,0.005703396163880825,-0.0020128197502344847,146 +illusion_1L,sr,147,44.1,0.706109344959259,0.34165534377098083,0.8133602738380432,0.6951642632484436,1.097090482711792,0.4445739686489105,0.0019248530734330416,3.762229653148097e-06,0.0022949257399886847,0.00033346854615956545,0.002284312155097723,-0.0003876919508911669,-0.0035642591402764504,0.0015515530154442871,0.0015515530154442871,-3.5642591402764504e-05,1.551553015444287e-05,1.551553015444287e-05,0.005702631548047066,-0.0018377614906057715,147 +illusion_1L,sr,148,44.4,0.6642938852310181,0.2764391303062439,0.8201045393943787,0.6719958782196045,1.15871000289917,0.4548487365245819,0.0019226535223424435,-1.304756551689934e-06,0.0022851370740681887,0.00032377976458519697,0.0022865773644298315,-0.0003936034918297082,-0.0019263136116740257,0.0009080846723883507,0.0009080846723883507,-1.9263136116740256e-05,9.080846723883507e-06,9.080846723883507e-06,0.00569628830999136,-0.001555830822326243,148 +illusion_1L,sr,149,44.7,0.6268656849861145,0.19627243280410767,0.8134417533874512,0.5946605205535889,1.2219061851501465,0.45627543330192566,0.0019210922764614224,-5.847327429364668e-06,0.0022763272281736135,0.000314356671879068,0.002289591357111931,-0.0003958263841923326,-0.0013782401878778892,0.0010903861893186702,0.0010903861893186702,-1.3782401878778893e-05,1.0903861893186703e-05,1.0903861893186703e-05,0.005691180936992168,-0.0011834697797894478,149 +illusion_1L,sr,150,45.0,0.6031051874160767,0.10393736511468887,0.7917472720146179,0.46357372403144836,1.2843495607376099,0.44579875469207764,0.0019192610634490848,-9.945400051947217e-06,0.002267641481012106,0.00030626001534983516,0.002291896613314748,-0.0003950734680984169,4.239187896649607e-05,0.000615625725775672,0.000615625725775672,4.2391878966496073e-07,6.156257257756721e-06,6.156257257756721e-06,0.005671756807714701,-0.0007422934286296368,150 +illusion_1L,sr,151,45.3,0.6040821075439453,0.010896995663642883,0.7538671493530273,0.29286518692970276,1.3406853675842285,0.41823115944862366,0.0019178919028490782,-1.3924326594860759e-05,0.0022607313003391027,0.0003003264428116381,0.0022945962846279144,-0.00039216032018885016,0.0016200572101035295,-1.599030981594418e-05,-1.599030981594418e-05,1.6200572101035295e-05,-1.5990309815944181e-07,-1.5990309815944181e-07,0.0056210970506072044,-0.0002578797866590321,151 +illusion_1L,sr,152,45.6,0.6341995000839233,-0.0688374936580658,0.7006331086158752,0.08892877399921417,1.3817704916000366,0.3663555681705475,0.0019200118258595467,-1.6601670722593553e-05,0.002259385073557496,0.00029761757468804717,0.002301062224432826,-0.00038731328095309436,0.002182290307833349,3.661512293024957e-05,3.661512293024957e-05,2.182290307833349e-05,3.6615122930249573e-07,3.6615122930249573e-07,0.005563950631767511,0.00024165630748029798,152 +illusion_1L,sr,153,45.9,0.683556854724884,-0.1327984631061554,0.6407020688056946,-0.14367957413196564,1.3963465690612793,0.2828669846057892,0.0019242598209530115,-1.8578564777271822e-05,0.002262135734781623,0.0002988045453093946,0.0023094709031283855,-0.0003820833517238498,0.0037898009749585126,-0.0007721500653805682,-0.0007721500653805682,3.789800974958513e-05,-7.721500653805683e-06,-7.721500653805683e-06,0.005538197699934244,0.000727235630620271,153 +illusion_1L,sr,154,46.2,0.7359718084335327,-0.19107221066951752,0.5936533808708191,-0.3769655227661133,1.373559832572937,0.16278231143951416,0.0019254147773608565,-2.001323809963651e-05,0.0022627965081483126,0.0003046306374017149,0.0023133037611842155,-0.00037777889519929886,0.004875996814269638,-0.0013001299302672388,-0.0013001299302672388,4.875996814269638e-05,-1.3001299302672388e-05,-1.3001299302672388e-05,0.005544575862586498,0.001170451520010829,154 +illusion_1L,sr,155,46.5,0.7855089902877808,-0.24829737842082977,0.5846656560897827,-0.552417516708374,1.3017783164978027,0.005790993571281433,0.0019230896141380072,-1.991023418668192e-05,0.0022602600511163473,0.00031482006306760013,0.002311327261850238,-0.00037397266714833677,0.004811195786785488,-0.001097437002233359,-0.001097437002233359,4.8111957867854886e-05,-1.0974370022333591e-05,-1.0974370022333591e-05,0.005573783535510302,0.0015451861545443535,155 +illusion_1L,sr,156,46.8,0.8348414301872253,-0.3002528250217438,0.6232443451881409,-0.6265169978141785,1.1763169765472412,-0.17170242965221405,0.001920427312143147,-1.910070022859145e-05,0.0022582130040973425,0.00032726192148402333,0.0023071542382240295,-0.00037018919829279184,0.005535257152816261,-0.0016060511940425154,-0.0016060511940425154,5.5352571528162614e-05,-1.6060511940425153e-05,-1.6060511940425153e-05,0.005636546760797501,0.001829120796173811,156 +illusion_1L,sr,157,47.1,0.8857821822166443,-0.34426116943359375,0.682203471660614,-0.6373188495635986,1.021156668663025,-0.324986070394516,0.0019177434733137488,-1.741911910357885e-05,0.002256824867799878,0.00034087561652995646,0.002301017986610532,-0.00036577496211975813,0.005264875221114282,-0.0015096244988193758,-0.0015096244988193758,5.264875221114282e-05,-1.5096244988193758e-05,-1.5096244988193758e-05,0.005716180428862572,0.00200505624525249,157 +illusion_1L,sr,158,47.4,0.9384711980819702,-0.38062983751296997,0.7309620976448059,-0.6466906070709229,0.8820604681968689,-0.40838029980659485,0.0019150067819282413,-1.4391031982086133e-05,0.002256188075989485,0.00035451140138320625,0.002293340163305402,-0.000360088306479156,0.004400023535099905,-0.0011010932263521775,-0.0011010932263521775,4.400023535099905e-05,-1.1010932263521775e-05,-1.1010932263521775e-05,0.005756895989179611,0.0020619675051420927,158 +illusion_1L,sr,159,47.7,0.9931106567382812,-0.4101293981075287,0.7654294371604919,-0.6670056581497192,0.7872490882873535,-0.41710299253463745,0.0019146152772009373,-1.0774366273835767e-05,0.0022592060267925262,0.00036648500827141106,0.002287372713908553,-0.00035284843761473894,0.004220898516881122,-0.0013119605804831104,-0.0013119605804831104,4.220898516881122e-05,-1.3119605804831104e-05,-1.3119605804831104e-05,0.005743067711591721,0.001995726488530636,159 +illusion_1L,sr,160,48.0,1.0501137971878052,-0.4331129491329193,0.7895871996879578,-0.6881043910980225,0.7290696501731873,-0.3811562955379486,0.001918360241688788,-6.73837166687008e-06,0.00226786220446229,0.00037606252590194345,0.002285626484081149,-0.0003440396103542298,0.0034810936904912763,-0.0012026731080879774,-0.0012026731080879774,3.481093690491276e-05,-1.2026731080879774e-05,-1.2026731080879774e-05,0.005714329890906811,0.001809444511309266,160 +illusion_1L,sr,161,48.3,1.1097759008407593,-0.4493487477302551,0.8042734861373901,-0.6930700540542603,0.6859566569328308,-0.3256275951862335,0.0019212114857509732,-1.9006841966984211e-06,0.0022760783322155476,0.00038372966810129583,0.0022826618514955044,-0.0003346061275806278,0.0023128345868504464,-0.0008453762520030678,-0.0008453762520030678,2.3128345868504463e-05,-8.453762520030679e-06,-8.453762520030679e-06,0.005683825351297855,0.0015134024433791637,161 +illusion_1L,sr,162,48.6,1.1719005107879639,-0.4578883945941925,0.8078513741493225,-0.6583147644996643,0.646766722202301,-0.2566213607788086,0.0019206056604161859,2.627852609293768e-06,0.002280425513163209,0.0003889953368343413,0.002275616629049182,-0.0003256164491176605,0.002088793275921948,-0.0012249272638722567,-0.0012249272638722567,2.0887932759219478e-05,-1.2249272638722568e-05,-1.2249272638722568e-05,0.0056352922692894936,0.0011245590867474675,162 +illusion_1L,sr,163,48.9,1.2352380752563477,-0.45679524540901184,0.7982317805290222,-0.5676788091659546,0.6138162016868591,-0.17361190915107727,0.0019185940036550164,6.8745421231142245e-06,0.0022828152868896723,0.0003915265842806548,0.0022670140024274588,-0.00031721184495836496,0.0010332186263796953,-0.000999326395595748,-0.000999326395595748,1.0332186263796954e-05,-9.993263955957481e-06,-9.993263955957481e-06,0.005594110582023859,0.0006656530895270407,163 +illusion_1L,sr,164,49.2,1.2966259717941284,-0.44257980585098267,0.7740365266799927,-0.4265497028827667,0.5968325734138489,-0.08127684146165848,0.0019171173917129636,1.0996105629601516e-05,0.0022854325361549854,0.00039142000605352223,0.002259559463709593,-0.0003098953457083553,-0.00023890408420173742,-0.0005939317845795027,-0.0005939317845795027,-2.3890408420173744e-06,-5.939317845795027e-06,-5.939317845795027e-06,0.005593768786638975,0.00016393783153034747,164 +illusion_1L,sr,165,49.5,1.3496601581573486,-0.409758597612381,0.7338651418685913,-0.24929161369800568,0.605924129486084,0.007847217842936516,0.0019152959575876594,1.411942776030628e-05,0.0022871317341923714,0.0003890726075042039,0.0022524988744407892,-0.00030494522070512176,-0.0009285513237829411,-0.0005747616707863536,-0.0005747616707863536,-9.285513237829411e-06,-5.747616707863536e-06,-5.747616707863536e-06,0.005601159762591124,-0.0003503881162032485,165 +illusion_1L,sr,166,49.8,1.384668231010437,-0.3514455556869507,0.6790578365325928,-0.04069281741976738,0.6423680186271667,0.08188232779502869,0.001914288615807891,1.676901592873037e-05,0.0022893762215971947,0.00038542741094715893,0.0022476972080767155,-0.0003026721242349595,-0.0024808076421617316,0.00014688252634205076,0.00014688252634205076,-2.4808076421617316e-05,1.4688252634205077e-06,1.4688252634205077e-06,0.005579833872616291,-0.0008459693053737283,166 +illusion_1L,sr,167,50.1,1.391295313835144,-0.26171088218688965,0.6199532747268677,0.19236883521080017,0.6934868693351746,0.14258407056331635,0.0019169700099155307,1.8765407730825245e-05,0.002295383485034108,0.0003808988840319216,0.0022487209644168615,-0.0003034985566046089,-0.0034460191742148732,0.000517602457565023,0.000517602457565023,-3.4460191742148735e-05,5.17602457565023e-06,5.17602457565023e-06,0.005568155087530613,-0.001292198314331472,167 +illusion_1L,sr,168,50.4,1.3604087829589844,-0.137460857629776,0.5778064131736755,0.4170028269290924,0.7446882128715515,0.20043699443340302,0.0019206027500331402,1.953674291144125e-05,0.00230170926079154,0.0003763918939512223,0.002252344973385334,-0.0003082847106270492,-0.0038759303181113915,0.0005927220401673455,0.0005927220401673455,-3.8759303181113915e-05,5.927220401673455e-06,5.927220401673455e-06,0.005600422155112028,-0.001661122078076005,168 +illusion_1L,sr,169,50.7,1.2817668914794922,0.019856058061122894,0.5774160623550415,0.5739058256149292,0.7932546734809875,0.25727808475494385,0.0019209106685593724,1.9593739125411958e-05,0.0023029008880257607,0.000372799375327304,0.0022533307783305645,-0.0003169496776536107,-0.004751043726531928,0.001108666317829271,0.001108666317829271,-4.751043726531929e-05,1.1086663178292711e-05,1.1086663178292711e-05,0.005640667863190174,-0.001929230522364378,169 +illusion_1L,sr,170,51.0,1.1523879766464233,0.19218680262565613,0.6228866577148438,0.6311962008476257,0.8424105644226074,0.3082326650619507,0.0019182882970198989,1.8798029486788437e-05,0.0022988503333181143,0.00036953651579096913,0.002251608995720744,-0.00032851265859790146,-0.004821353385815151,0.0011506676919151165,0.0011506676919151165,-4.8213533858151514e-05,1.1506676919151166e-05,1.1506676919151166e-05,0.005670505575835705,-0.0020790090784430504,170 +illusion_1L,sr,171,51.3,0.9974558353424072,0.33570125699043274,0.6824952363967896,0.6380119323730469,0.8934183716773987,0.3512669503688812,0.0019158232025802135,1.6680363842169754e-05,0.002293296856805682,0.00036545979673974216,0.0022508057300001383,-0.0003413237282074988,-0.0043372177009758095,0.0009059190589618267,0.0009059190589618267,-4.33721770097581e-05,9.059190589618266e-06,9.059190589618266e-06,0.005723041016608477,-0.002100147772580385,171 +illusion_1L,sr,172,51.6,0.8614389300346375,0.40907520055770874,0.7290636301040649,0.6493037343025208,0.9462474584579468,0.3868694305419922,0.0019133335445076227,1.3946584658697248e-05,0.002286001341417432,0.00036029936745762825,0.002250444609671831,-0.00035398153704591095,-0.004370745525079323,0.0011624429758284455,0.0011624429758284455,-4.3707455250793227e-05,1.1624429758284455e-05,1.1624429758284455e-05,0.005777770187705755,-0.0019903185311704874,172 +illusion_1L,sr,173,51.9,0.7697980999946594,0.41118213534355164,0.7613161206245422,0.6706148982048035,1.0010294914245605,0.4157209098339081,0.0019111211877316236,1.0502865734451916e-05,0.0022779980208724737,0.00035366194788366556,0.002251157071441412,-0.00036543054739013314,-0.0036814151929815513,0.0009904704420002665,0.0009904704420002665,-3.6814151929815513e-05,9.904704420002665e-06,9.904704420002665e-06,0.005763606168329716,-0.0017554573714733124,173 +illusion_1L,sr,174,52.2,0.7135097980499268,0.37166544795036316,0.7831671833992004,0.6903786659240723,1.0582098960876465,0.4380195736885071,0.0019118698546662927,6.145404313429026e-06,0.002272861311212182,0.00034524151124060154,0.0022560181096196175,-0.0003747105074580759,-0.0028308055708644933,0.0007860171291118878,0.0007860171291118878,-2.8308055708644932e-05,7.860171291118878e-06,7.860171291118878e-06,0.005690249614417553,-0.0014095163205638528,174 +illusion_1L,sr,175,52.5,0.6717692613601685,0.3135415315628052,0.7952843308448792,0.6905115842819214,1.1181461811065674,0.453367680311203,0.0019158754730597138,1.7908871541294502e-06,0.0022714619990438223,0.0003357639361638576,0.002265318762511015,-0.0003813546500168741,-0.0026957888758394073,0.0011737559840468547,0.0011737559840468547,-2.6957888758394072e-05,1.1737559840468547e-05,1.1737559840468547e-05,0.005629390478134155,-0.0009736909996718168,175 +illusion_1L,sr,176,52.8,0.6346988677978516,0.24223996698856354,0.7963329553604126,0.6475900411605835,1.1806013584136963,0.46063312888145447,0.001918169902637601,-2.563693897172925e-06,0.0022683092392981052,0.0003265485865995288,0.002272997749969363,-0.0003860061115119606,-0.0019133573149437203,0.0011165512280934368,0.0011165512280934368,-1.9133573149437204e-05,1.1165512280934369e-05,1.1165512280934369e-05,0.005584970116615295,-0.00047515766345895827,176 +illusion_1L,sr,177,53.1,0.6053503155708313,0.15798234939575195,0.7847360968589783,0.5483840107917786,1.244016170501709,0.45758992433547974,0.0019171885214745998,-6.86063276589266e-06,0.0022615427151322365,0.00031842096359468997,0.00227664434351027,-0.0003887462371494621,-0.0010107007502023055,0.0009767877307817851,0.0009767877307817851,-1.0107007502023054e-05,9.767877307817852e-06,9.767877307817852e-06,0.005531984381377697,5.460584725369699e-05,177 +illusion_1L,sr,178,53.4,0.5934727191925049,0.06663485616445541,0.7591037750244141,0.4011765122413635,1.3045119047164917,0.4404597878456116,0.001915382919833064,-1.0394651326350868e-05,0.002254233695566654,0.0003118520835414529,0.0022788839414715767,-0.00038903995300643146,-0.00037137751632635753,0.0010115154188573353,0.0010115154188573353,-3.713775163263575e-06,1.0115154188573353e-05,1.0115154188573353e-05,0.005518179386854172,0.0005818125791847706,178 +illusion_1L,sr,179,53.7,0.6082021594047546,-0.019047774374485016,0.7177694439888,0.21995674073696136,1.3549813032150269,0.40363553166389465,0.0019138759234920144,-1.3579707228927873e-05,0.002247937023639679,0.0003071672690566629,0.002280863933265209,-0.00038747568032704294,0.0010534393087795711,0.00042267589882559985,0.00042267589882559985,1.0534393087795712e-05,4.2267589882559986e-06,4.2267589882559986e-06,0.005577066447585821,0.0010725450702011585,179 +illusion_1L,sr,180,54.0,0.6484507918357849,-0.08922135829925537,0.6623785495758057,0.008736063726246357,1.3855700492858887,0.3407197892665863,0.0019120635697618127,-1.6181003957171924e-05,0.0022423192858695984,0.0003051969106309116,0.0022818453144282103,-0.00038463715463876724,0.0020370089224083614,9.83901764571582e-05,9.83901764571582e-05,2.0370089224083613e-05,9.83901764571582e-07,9.83901764571582e-07,0.005638485308736563,0.0014949759934097528,180 +illusion_1L,sr,181,54.3,0.7000890374183655,-0.14820730686187744,0.6043328046798706,-0.22368106245994568,1.3868213891983032,0.24699699878692627,0.0019115175819024444,-1.7769607438822277e-05,0.0022394785191863775,0.0003062597825191915,0.002283659530803561,-0.00038084923289716244,0.002693639928882177,-6.573354958020611e-05,-6.573354958020611e-05,2.693639928882177e-05,-6.573354958020611e-07,-6.573354958020611e-07,0.005652999971061945,0.001821481972001493,181 +illusion_1L,sr,182,54.6,0.7501561641693115,-0.20601555705070496,0.5658376812934875,-0.4416044056415558,1.350886583328247,0.12060330808162689,0.0019145278492942452,-1.8600361727294512e-05,0.002242262242361903,0.0003103105118498206,0.0022889093961566687,-0.0003765111032407731,0.0036653853961889846,-0.0005579271642109501,-0.0005579271642109501,3.6653853961889845e-05,-5.579271642109501e-06,-5.579271642109501e-06,0.005672627128660679,0.002030503237619996,182 +illusion_1L,sr,183,54.9,0.797942578792572,-0.2626284658908844,0.5711071491241455,-0.5863973498344421,1.2683824300765991,-0.03606992959976196,0.0019174865446984768,-1.8749751689028926e-05,0.0022463109344244003,0.00031770789064466953,0.002293046796694398,-0.0003725700080394745,0.004202632038389012,-0.0008352862080471396,-0.0008352862080471396,4.202632038389012e-05,-8.352862080471396e-06,-8.352862080471396e-06,0.005716722924262285,0.0021080211736261845,183 +illusion_1L,sr,184,55.2,0.846920907497406,-0.3130001723766327,0.6207252740859985,-0.6341972351074219,1.1372628211975098,-0.20434385538101196,0.001917041139677167,-1.7671225577942096e-05,0.00224746810272336,0.00032830442069098353,0.002291864948347211,-0.00036901887506246567,0.00397523518737352,-0.0006626469724396629,-0.0006626469724396629,3.97523518737352e-05,-6.626469724396629e-06,-6.626469724396629e-06,0.0057253409177064896,0.0020485445857048035,184 +illusion_1L,sr,185,55.5,0.8980086445808411,-0.35548582673072815,0.6807323098182678,-0.639405369758606,0.9829113483428955,-0.3415238857269287,0.0019143931567668915,-1.566796527185943e-05,0.0022466012742370367,0.00034053268609568477,0.002286336151883006,-0.00036525834002532065,0.0040656156813330055,-0.0008436373170127403,-0.0008436373170127403,4.0656156813330054e-05,-8.436373170127403e-06,-8.436373170127403e-06,0.005700415000319481,0.001855533104389906,185 +illusion_1L,sr,186,55.8,0.9510334134101868,-0.39065006375312805,0.7262639403343201,-0.6518856883049011,0.8486251831054688,-0.4090312719345093,0.001912186504341662,-1.3068111911707092e-05,0.0022467980161309242,0.0003527147346176207,0.002279814565554261,-0.00036041735438629985,0.003943546864617606,-0.000980689027179238,-0.000980689027179238,3.9435468646176056e-05,-9.80689027179238e-06,-9.80689027179238e-06,0.00570518197491765,0.0015412241918966174,186 +illusion_1L,sr,187,56.1,1.0060449838638306,-0.4190787374973297,0.7574648261070251,-0.6734769344329834,0.7584651112556458,-0.4073377847671509,0.0019099918426945806,-9.44910880207317e-06,0.0022473721764981747,0.0003640702343545854,0.002271991455927491,-0.000353995303157717,0.003175061941402057,-0.0007395892982079363,-0.0007395892982079363,3.175061941402057e-05,-7.3958929820793635e-06,-7.3958929820793635e-06,0.005713063757866621,0.0011258659651502967,187 +illusion_1L,sr,188,56.4,1.0633944272994995,-0.44087672233581543,0.7780475616455078,-0.6917668581008911,0.7030048370361328,-0.36548587679862976,0.0019083545776084065,-5.398909706855193e-06,0.0022491903509944677,0.00037338968832045794,0.002264241687953472,-0.00034620481892488897,0.002977223212018036,-0.0010027604715865512,-0.0010027604715865512,2.9772232120180362e-05,-1.0027604715865512e-05,-1.0027604715865512e-05,0.00565308379009366,0.0006364086293615401,188 +illusion_1L,sr,189,56.7,1.1234207153320312,-0.4555518627166748,0.7885943055152893,-0.6879761219024658,0.6620492339134216,-0.30541521310806274,0.0019100254867225885,-1.313209622821887e-06,0.002255384810268879,0.00038004652014933527,0.0022601925302296877,-0.00033710943534970284,0.0026004078277014012,-0.0011905621333600774,-0.0011905621333600774,2.600407827701401e-05,-1.1905621333600774e-05,-1.1905621333600774e-05,0.005567865911871195,0.00010473776637809351,189 +illusion_1L,sr,190,57.0,1.18586266040802,-0.4618217349052429,0.7880508899688721,-0.6391564011573792,0.6264521479606628,-0.23240841925144196,0.0019139413489028811,3.063167696382152e-06,0.002264622366055846,0.00038434340967796743,0.002259087050333619,-0.0003276241186540574,0.0016797890145183168,-0.0010088154839869557,-0.0010088154839869557,1.6797890145183168e-05,-1.0088154839869558e-05,-1.0088154839869558e-05,0.005537909455597401,-0.0004344300541561097,190 +illusion_1L,sr,191,57.3,1.2490309476852417,-0.4573259949684143,0.7752643823623657,-0.5343520641326904,0.5997316241264343,-0.14737199246883392,0.0019156126072630286,6.95382232152042e-06,0.002271399600431323,0.00038671193760819733,0.002255905419588089,-0.0003194176242686808,0.001268471941792187,-0.001208887854978834,-0.001208887854978834,1.268471941792187e-05,-1.2088878549788339e-05,-1.2088878549788339e-05,0.005537074990570545,-0.000945847132243216,191 +illusion_1L,sr,192,57.6,1.3086918592453003,-0.43814533948898315,0.74887615442276,-0.3834971487522125,0.591613233089447,-0.05693588778376579,0.001914285239763558,1.0305723662895616e-05,0.0022742387373000383,0.00038741063326597214,0.0022495556622743607,-0.0003131652483716607,0.00020524768607030341,-0.0009076992893240644,-0.0009076992893240644,2.052476860703034e-06,-9.076992893240644e-06,-9.076992893240644e-06,0.005531030707061291,-0.0013960730284452438,192 +illusion_1L,sr,193,57.9,1.3573182821273804,-0.3987210988998413,0.7069841027259827,-0.20007120072841644,0.6103031635284424,0.026223691180348396,0.0019126433180645108,1.363095816486748e-05,0.0022761435247957706,0.0003865300095640123,0.002243524882942438,-0.00030878136749379337,-0.0012670127266270169,-0.0002661967533503194,-0.0002661967533503194,-1.2670127266270168e-05,-2.6619675335031943e-06,-2.6619675335031943e-06,0.00557838287204504,-0.0017556919483467937,193 +illusion_1L,sr,194,58.2,1.3851016759872437,-0.3331383168697357,0.6514492034912109,0.012286042794585228,0.6530066132545471,0.0938764438033104,0.0019111033761873841,1.59749743033899e-05,0.0022773221135139465,0.00038419311749748886,0.002238350221887231,-0.00030705047538504004,-0.0016496601366490884,-0.0003700570677220884,-0.0003700570677220884,-1.6496601366490885e-05,-3.7005706772208838e-06,-3.7005706772208838e-06,0.0056895059533417225,-0.0020012580789625645,194 +illusion_1L,sr,195,58.5,1.383175015449524,-0.23755693435668945,0.5942066311836243,0.24346168339252472,0.7047703266143799,0.15193797647953033,0.0019092897418886423,1.7402691810275428e-05,0.0022774513345211744,0.0003809630579780787,0.002234004670754075,-0.00030831695767119527,-0.0026128922270096944,3.2996484892196254e-05,3.2996484892196254e-05,-2.6128922270096943e-05,3.299648489219625e-07,3.299648489219625e-07,0.005760743748396635,-0.002116837538778782,195 +illusion_1L,sr,196,58.8,1.3445378541946411,-0.11095602810382843,0.5579724907875061,0.45620858669281006,0.753930926322937,0.20978254079818726,0.0019092110451310873,1.8566966900834814e-05,0.0022787468042224646,0.0003772962954826653,0.0022329590283334255,-0.0003122047346550971,-0.0037521986076430518,0.0006580039503318973,0.0006580039503318973,-3.752198607643052e-05,6.580039503318973e-06,6.580039503318973e-06,0.005753485951572657,-0.0020950448233634233,196 +illusion_1L,sr,197,59.1,1.2605036497116089,0.04368417337536812,0.566552460193634,0.5928239226341248,0.8010390400886536,0.2661892771720886,0.0019123422680422664,1.842561505327467e-05,0.002282863250002265,0.00037301963311620057,0.0022370493970811367,-0.0003188790287822485,-0.003486703772930609,0.0003472971245656528,0.0003472971245656528,-3.486703772930609e-05,3.4729712456565283e-06,3.4729712456565283e-06,0.005740967579185963,-0.0019375038100406528,197 +illusion_1L,sr,198,59.4,1.1293210983276367,0.20790766179561615,0.6183351278305054,0.6348743438720703,0.8496850728988647,0.3161310851573944,0.001914585824124515,1.7246278730453923e-05,0.0022848390508443117,0.000368899607565254,0.002241311362013221,-0.0003283416444901377,-0.003802339840074692,0.0005796492705623241,0.0005796492705623241,-3.802339840074692e-05,5.7964927056232405e-06,5.7964927056232405e-06,0.005731895100325346,-0.0016547086415812373,198 +illusion_1L,sr,199,59.7,0.9756459593772888,0.34075796604156494,0.6782997846603394,0.639387845993042,0.9006934762001038,0.3582686483860016,0.0019136067712679505,1.5687184713897295e-05,0.002281608758494258,0.0003651017032098025,0.002242648508399725,-0.0003396551182959229,-0.004149112631652019,0.0009478352718906118,0.0009478352718906118,-4.149112631652019e-05,9.478352718906118e-06,9.478352718906118e-06,0.00566871277987957,-0.0012652967125177383,199 +illusion_1L,sr,200,60.0,0.8416419625282288,0.4054129123687744,0.7230687737464905,0.6525665521621704,0.9537820219993591,0.3931732177734375,0.001911201630719006,1.2822876669815741e-05,0.002275146311149001,0.0003603480290621519,0.0022427565418183804,-0.000351712602423504,-0.0031963995013843467,0.00046545853838797496,0.00046545853838797496,-3.196399501384347e-05,4.65458538387975e-06,4.65458538387975e-06,0.005592959467321634,-0.0007947873091325164,200 +illusion_1L,sr,201,60.3,0.7512351274490356,0.40238842368125916,0.7535223960876465,0.67414790391922,1.0089386701583862,0.4213789701461792,0.0019092526054009795,9.188123840431217e-06,0.002268022857606411,0.00035428686533123255,0.0022437924053519964,-0.00036281562643125653,-0.0031089087395203864,0.0007211980517010767,0.0007211980517010767,-3.108908739520387e-05,7.211980517010768e-06,7.211980517010768e-06,0.0055853561498224735,-0.000273875892162323,201 +illusion_1L,sr,202,60.6,0.6956003308296204,0.3596656918525696,0.7731532454490662,0.6913182139396667,1.0664018392562866,0.44294607639312744,0.001907299505546689,5.591917670244584e-06,0.002259995322674513,0.00034701681579463184,0.002245090901851654,-0.0003720795502886176,-0.003160908090019964,0.001157684752572682,0.001157684752572682,-3.160908090019964e-05,1.157684752572682e-05,1.157684752572682e-05,0.0055999187752604485,0.000263598543824628,202 +illusion_1L,sr,203,60.9,0.655062198638916,0.29863953590393066,0.7824382781982422,0.6850490570068359,1.1264234781265259,0.457290917634964,0.0019062422215938568,1.285253460991953e-06,0.002252813195809722,0.0003384285082574934,0.0022478350438177586,-0.0003791399940382689,-0.0020677654790596262,0.000803482927001652,0.000803482927001652,-2.067765479059626e-05,8.03482927001652e-06,8.03482927001652e-06,0.005566527601331472,0.000782874645665288,203 +illusion_1L,sr,204,61.2,0.6206715106964111,0.22492265701293945,0.78055340051651,0.6329408884048462,1.188703179359436,0.4630405604839325,0.001908616628497839,-2.896956402764772e-06,0.0022498948965221643,0.0003292447072453797,0.0022549410350620747,-0.00038334447890520096,-0.0018931602379027197,0.0011584329224668339,0.0011584329224668339,-1.89316023790272e-05,1.1584329224668338e-05,1.1584329224668338e-05,0.005543616600334644,0.0012505297781899571,204 +illusion_1L,sr,205,61.5,0.596008837223053,0.14005163311958313,0.7667317986488342,0.525336503982544,1.2514986991882324,0.4577345848083496,0.00191224436275661,-6.354650849971222e-06,0.0022490094415843487,0.0003209040150977671,0.0022637718357145786,-0.000385146850021556,-0.0013720964826770578,0.0012617262868598626,0.0012617262868598626,-1.3720964826770579e-05,1.2617262868598626e-05,1.2617262868598626e-05,0.0055874851532280445,0.0016366330673918128,205 +illusion_1L,sr,206,61.8,0.5906850099563599,0.05106126144528389,0.7398027777671814,0.37284567952156067,1.3104654550552368,0.4373683035373688,0.0019133152673020959,-1.0130863302038051e-05,0.0022458822932094336,0.00031422983738593757,0.0022695790976285934,-0.0003858076233882457,0.0003633951124443705,0.0004511119405184276,0.0004511119405184276,3.633951124443705e-06,4.511119405184276e-06,4.511119405184276e-06,0.005633705295622349,0.0019166492857038975,206 +illusion_1L,sr,207,62.1,0.6121255159378052,-0.02973993308842182,0.6977546215057373,0.18867060542106628,1.3578873872756958,0.3964724838733673,0.0019118175841867924,-1.3268959264678415e-05,0.002240291330963373,0.00031007066718302667,0.0022716966923326254,-0.00038522930117323995,0.00072724765651919,0.0006176056175203528,0.0006176056175203528,7.2724765651919e-06,6.1760561752035285e-06,6.1760561752035285e-06,0.005650329869240522,0.002072976902127266,207 +illusion_1L,sr,208,62.4,0.6563089489936829,-0.0954318717122078,0.6424087882041931,-0.023502137511968613,1.3840203285217285,0.32955506443977356,0.0019102715887129307,-1.5244799214997329e-05,0.0022354484535753727,0.0003085499629378319,0.0022730485070496798,-0.00038323100307025015,0.001288912620468298,0.0005778894488548403,0.0005778894488548403,1.288912620468298e-05,5.778894488548403e-06,5.778894488548403e-06,0.005705440882593393,0.002096022479236126,208 +illusion_1L,sr,209,62.7,0.7079442143440247,-0.152887761592865,0.5857599973678589,-0.2530575394630432,1.3804792165756226,0.23339329659938812,0.00190864282194525,-1.7177319023176096e-05,0.0022313171066343784,0.0003095467109233141,0.0022732645738869905,-0.0003806488821282983,0.002867430717521907,-0.0002883141338427993,-0.0002883141338427993,2.8674307175219072e-05,-2.883141338427993e-06,-2.883141338427993e-06,0.005788230337202549,0.0019847527146339417,209 +illusion_1L,sr,210,63.0,0.7562917470932007,-0.21083225309848785,0.5505414605140686,-0.4626063108444214,1.3408713340759277,0.1075514629483223,0.0019068816909566522,-1.8083495888276957e-05,0.002228243974968791,0.000313501397613436,0.0022724366281181574,-0.00037738162791356444,0.002848259767283895,-6.206452598558204e-05,-6.206452598558204e-05,2.848259767283895e-05,-6.206452598558204e-07,-6.206452598558204e-07,0.00579201802611351,0.001746693509630859,210 +illusion_1L,sr,211,63.3,0.8026702404022217,-0.26724421977996826,0.5604543089866638,-0.5954287052154541,1.2570167779922485,-0.044835347682237625,0.0019073213916271925,-1.7722046322887763e-05,0.0022289433982223272,0.00031993986340239644,0.0022731719072908163,-0.00037342376890592277,0.0030279972156307747,-8.558411556772866e-05,-8.558411556772866e-05,3.0279972156307748e-05,-8.558411556772866e-07,-8.558411556772866e-07,0.005716915708035231,0.001397387241013348,211 +illusion_1L,sr,212,63.6,0.8507621884346008,-0.31712764501571655,0.6132559180259705,-0.6352199912071228,1.1268197298049927,-0.20631445944309235,0.0019104010425508022,-1.7013406250043772e-05,0.002234017476439476,0.00032824816298671067,0.002275981940329075,-0.000369204644812271,0.003806954495173653,-0.0006603954224166653,-0.0006603954224166653,3.806954495173653e-05,-6.603954224166653e-06,-6.603954224166653e-06,0.00565684586763382,0.0009593489812687039,212 +illusion_1L,sr,213,63.9,0.901431679725647,-0.3592543601989746,0.6735487580299377,-0.639495849609375,0.9735057353973389,-0.337733656167984,0.0019120894139632583,-1.5167648598435335e-05,0.0022385467309504747,0.00033861317206174135,0.0022760587744414806,-0.0003648723941296339,0.0032021795569816265,-0.000323196036988372,-0.000323196036988372,3.202179556981627e-05,-3.23196036988372e-06,-3.23196036988372e-06,0.005609786603599787,0.0004605941940099001,213 +illusion_1L,sr,214,64.2,0.9544225335121155,-0.3941921889781952,0.7183640599250793,-0.6529546976089478,0.8384167551994324,-0.4027650058269501,0.0019107921980321407,-1.2211773537273984e-05,0.002240153029561043,0.00035017062327824533,0.0022712955251336098,-0.00036017203819938004,0.0029463279010518914,-0.00035100439621892077,-0.00035100439621892077,2.9463279010518915e-05,-3.5100439621892075e-06,-3.5100439621892075e-06,0.005531110800802708,-6.716222560498863e-05,214 +illusion_1L,sr,215,64.5,1.0096209049224854,-0.42245838046073914,0.7487581968307495,-0.6745176911354065,0.7464056611061096,-0.40052375197410583,0.0019086934626102448,-9.107154255616479e-06,0.00224115583114326,0.00036103572347201407,0.002264345996081829,-0.00035467074485495687,0.003231388967243086,-0.0008726941715214535,-0.0008726941715214535,3.231388967243086e-05,-8.726941715214536e-06,-8.726941715214536e-06,0.005488442722707987,-0.0005905209691263735,215 +illusion_1L,sr,216,64.8,1.0671820640563965,-0.4440714120864868,0.7681803107261658,-0.6911558508872986,0.6900044679641724,-0.3578387200832367,0.0019069778500124812,-5.273226179269841e-06,0.002242803107947111,0.00037043800693936646,0.002256918465718627,-0.0003477536956779659,0.002377972623277172,-0.0006289234629877558,-0.0006289234629877558,2.377972623277172e-05,-6.2892346298775575e-06,-6.2892346298775575e-06,0.0055447774939239025,-0.0010764988837763667,216 +illusion_1L,sr,217,65.1,1.1272190809249878,-0.45839324593544006,0.7770344018936157,-0.6838576793670654,0.6497331261634827,-0.2963118851184845,0.0019051989074796438,-9.45361705362302e-07,0.0022445477079600096,0.00037776221870444715,0.0022490087430924177,-0.0003397309046704322,0.0020050488020401085,-0.0007955511928033379,-0.0007955511928033379,2.0050488020401084e-05,-7.955511928033379e-06,-7.955511928033379e-06,0.005618898663669825,-0.0014945860020816326,217 +illusion_1L,sr,218,65.4,1.189353108406067,-0.46402159333229065,0.7746337652206421,-0.6306120753288269,0.616204559803009,-0.22223493456840515,0.0019047127570956945,2.7109176699013915e-06,0.002248042728751898,0.0003822296275757253,0.002242735121399164,-0.0003313545021228492,0.0021225803793185625,-0.00135346680817591,-0.00135346680817591,2.1225803793185624e-05,-1.3534668081759102e-05,-1.3534668081759102e-05,0.0056407577358186245,-0.0018186323577538133,218 +illusion_1L,sr,219,65.7,1.2518140077590942,-0.4584241807460785,0.7604767084121704,-0.5222318768501282,0.5926873087882996,-0.13755320012569427,0.0019076101016253233,6.4545483837719075e-06,0.0022557401098310947,0.0003842090955004096,0.0022409416269510984,-0.00032290120725519955,0.000749220860119389,-0.000813446872557218,-0.000813446872557218,7.49220860119389e-06,-8.13446872557218e-06,-8.13446872557218e-06,0.005669464357197285,-0.00202845293097198,219 +illusion_1L,sr,220,66.0,1.3102691173553467,-0.4375753700733185,0.7335953116416931,-0.36949414014816284,0.5886533856391907,-0.04937245696783066,0.0019108698470517993,1.0223246135865338e-05,0.0022639224771410227,0.00038459571078419685,0.0022404054179787636,-0.0003157934988848865,-0.00019011731271577348,-0.0005811272076205708,-0.0005811272076205708,-1.9011731271577348e-06,-5.8112720762057075e-06,-5.8112720762057075e-06,0.005728682037442923,-0.002111055189743638,220 +illusion_1L,sr,221,66.3,1.3570762872695923,-0.39615553617477417,0.6919977068901062,-0.18568146228790283,0.6113017797470093,0.030266117304563522,0.0019113842863589525,1.2929465810884722e-05,0.0022685902658849955,0.00038385644438676536,0.002237494569271803,-0.0003114169230684638,-0.00037236224975607454,-0.0008715132325213433,-0.0008715132325213433,-3.7236224975607455e-06,-8.715132325213433e-06,-8.715132325213433e-06,0.005740906111896038,-0.0020614201202988625,221 +illusion_1L,sr,222,66.6,1.3825867176055908,-0.3289625644683838,0.6372256875038147,0.02544190175831318,0.6562103033065796,0.09502113610506058,0.0019097806653007865,1.5273853932740167e-05,0.002269983058795333,0.0003824587329290807,0.002232787199318409,-0.000309709896100685,-0.0017069769112863788,-0.0002533461265096168,-0.0002533461265096168,-1.706976911286379e-05,-2.533461265096168e-06,-2.533461265096168e-06,0.00570477731525898,-0.0018827876774594188,222 +illusion_1L,sr,223,66.9,1.3787317276000977,-0.2332141399383545,0.5809144377708435,0.2535322308540344,0.7080022692680359,0.15207965672016144,0.0019082272192463279,1.71988667716505e-05,0.0022704736329615116,0.00038030309951864183,0.0022290004417300224,-0.0003106070216745138,-0.0024382962400807534,-9.602118431348977e-06,-9.602118431348977e-06,-2.4382962400807533e-05,-9.602118431348977e-08,-9.602118431348977e-08,0.005704289767891169,-0.0015864415327087045,223 +illusion_1L,sr,224,67.2,1.339625597000122,-0.10891187936067581,0.5454932451248169,0.4620760679244995,0.7561511993408203,0.20999354124069214,0.0019064563093706965,1.7816744730225764e-05,0.002269536256790161,0.00037738849641755223,0.002225810196250677,-0.0003144170914310962,-0.002370617314115385,-0.0002683373545071116,-0.0002683373545071116,-2.370617314115385e-05,-2.683373545071116e-06,-2.683373545071116e-06,0.005719874519854784,-0.0011909975437447429,224 +illusion_1L,sr,225,67.5,1.2575160264968872,0.04089157655835152,0.5547962188720703,0.5950954556465149,0.802147388458252,0.2665363848209381,0.0019048165995627642,1.7767442841432057e-05,0.00226775580085814,0.0003740418760571629,0.0022239498794078827,-0.00032059455406852067,-0.0031525630294450264,0.00020054355037197463,0.00020054355037197463,-3.1525630294450266e-05,2.0054355037197464e-06,2.0054355037197464e-06,0.005665991455316544,-0.0007212489726953208,225 +illusion_1L,sr,226,67.8,1.1295161247253418,0.20017433166503906,0.6073712706565857,0.6353793740272522,0.8497913479804993,0.31663528084754944,0.00190583651419729,1.711962977424264e-05,0.0022679907269775867,0.0003700800007209182,0.0022263582795858383,-0.00032846088288351893,-0.003327283556629424,0.00032597084199431636,0.00032597084199431636,-3.327283556629424e-05,3.2597084199431636e-06,3.2597084199431636e-06,0.005579077173024416,-0.00020663297618739307,226 +illusion_1L,sr,227,68.1,0.9767589569091797,0.3317563235759735,0.6680260300636292,0.6394586563110352,0.9000656008720398,0.3590027987957001,0.0019088126718997955,1.4989393093856052e-05,0.0022695311345160007,0.00036531256046146154,0.002232199301943183,-0.0003379958507139236,-0.002679650502519275,-4.7368720819358084e-05,-4.7368720819358084e-05,-2.679650502519275e-05,-4.7368720819358084e-07,-4.7368720819358084e-07,0.0055456943809986115,0.00032058797660283744,227 +illusion_1L,sr,228,68.4,0.8397741913795471,0.3992117643356323,0.7132254242897034,0.6526086926460266,0.9528477191925049,0.39419493079185486,0.0019100316567346454,1.235359286511084e-05,0.0022680149413645267,0.0003604007652029395,0.002236858708783984,-0.00034854604746215045,-0.0031497480820914833,0.0005103601777961334,0.0005103601777961334,-3.1497480820914835e-05,5.103601777961334e-06,5.103601777961334e-06,0.005538465455174446,0.0008273206767626107,228 +illusion_1L,sr,229,68.7,0.7450859546661377,0.39938345551490784,0.7438374757766724,0.6740335822105408,1.0080145597457886,0.4227374494075775,0.0019085631938651204,9.328355190518778e-06,0.0022621487732976675,0.0003550781693775207,0.0022387406788766384,-0.00035917869536206126,-0.00295115003665811,0.0006645998360823961,0.0006645998360823961,-2.95115003665811e-05,6.645998360823961e-06,6.645998360823961e-06,0.005518500693142414,0.0012816928792744875,229 +illusion_1L,sr,230,69.0,0.6872011423110962,0.3576914072036743,0.763351559638977,0.6906617879867554,1.0656310319900513,0.44461512565612793,0.001906704274006188,5.264257197268307e-06,0.002254974329844117,0.00034843405592255294,0.002240389119833708,-0.00036880705738440156,-0.0021203403580741208,0.0004276017075196884,0.0004276017075196884,-2.1203403580741207e-05,4.276017075196884e-06,4.276017075196884e-06,0.005552514921873808,0.0016550382133573294,230 +illusion_1L,sr,231,69.3,0.6468889117240906,0.2963283658027649,0.7722166180610657,0.6837540864944458,1.125727653503418,0.45919978618621826,0.0019051460549235344,1.4000636383570964e-06,0.0022474946454167366,0.00034095317823812366,0.0022423313930630684,-0.0003761856642086059,-0.002452682233923323,0.0011039571005946602,0.0011039571005946602,-2.452682233923323e-05,1.1039571005946602e-05,1.1039571005946602e-05,0.005664129741489887,0.0019236936932429671,231 +illusion_1L,sr,232,69.6,0.613908052444458,0.2224678099155426,0.7697815299034119,0.6314753890037537,1.1878150701522827,0.46507471799850464,0.001903554773889482,-2.2040705971448915e-06,0.0022399649024009705,0.00033302890369668603,0.002244416158646345,-0.0003810894850175828,-0.0018251880115129958,0.0010990930658420122,0.0010990930658420122,-1.8251880115129957e-05,1.0990930658420122e-05,1.0990930658420122e-05,0.005749957635998726,0.0020704984199255705,232 +illusion_1L,sr,233,69.9,0.590880274772644,0.13832291960716248,0.7556962370872498,0.5242869853973389,1.2501102685928345,0.45967763662338257,0.0019037129823118448,-6.254506388359005e-06,0.0022348868660628796,0.00032488236320205033,0.002248656703159213,-0.00038365571526810527,-0.00048494603232291256,0.0005760673149048951,0.0005760673149048951,-4.849460323229126e-06,5.760673149048951e-06,5.760673149048951e-06,0.005759336985647678,0.0020859010983258486,233 +illusion_1L,sr,234,70.2,0.5870363116264343,0.05086105316877365,0.7291662096977234,0.3726140260696411,1.308354377746582,0.43903136253356934,0.0019069426925852895,-9.700731425255071e-06,0.002234172308817506,0.00031760847195982933,0.002256558043882251,-0.00038390778354369104,-0.00033636179441911065,0.0009206352162048174,0.0009206352162048174,-3.3636179441911065e-06,9.206352162048175e-06,9.206352162048175e-06,0.005756254307925701,0.0019686000887304544,234 +illusion_1L,sr,235,70.5,0.609642744064331,-0.028175542131066322,0.6882678866386414,0.19002889096736908,1.3550982475280762,0.3979315757751465,0.0019097564509138465,-1.2381847227516118e-05,0.0022339788265526295,0.0003125688817817718,0.0022638908121734858,-0.00038291997043415904,0.00041784939386477205,0.000782660871244319,0.000782660871244319,4.178493938647721e-06,7.82660871244319e-06,7.82660871244319e-06,0.005749706644564867,0.0017256771679967642,235 +illusion_1L,sr,236,70.8,0.6545277833938599,-0.0925586000084877,0.6342291235923767,-0.019437367096543312,1.3809059858322144,0.3313615024089813,0.0019097290933132172,-1.5081618585099932e-05,0.0022313320077955723,0.0003102872287854552,0.002267309930175543,-0.00038169563049450517,0.0017564457569803555,0.00015899128322252598,0.00015899128322252598,1.7564457569803556e-05,1.58991283222526e-06,1.58991283222526e-06,0.005683912429958582,0.0013722052099183202,236 +illusion_1L,sr,237,71.1,0.7064041495323181,-0.1493513137102127,0.5779866576194763,-0.24621999263763428,1.3778586387634277,0.23679982125759125,0.0019080289639532566,-1.6690399206709117e-05,0.0022275284864008427,0.00031113423756323755,0.00226781377568841,-0.00037977995816618204,0.0017228202126069667,0.00047976652804876396,0.00047976652804876396,1.7228202126069668e-05,4.7976652804876395e-06,4.7976652804876395e-06,0.005598609335720539,0.0009303490514867008,237 +illusion_1L,sr,238,71.4,0.754560112953186,-0.2071980983018875,0.5414155721664429,-0.45553719997406006,1.3404695987701416,0.11450093239545822,0.0019063955405727029,-1.735380465106573e-05,0.0022246220614761114,0.0003146781527902931,0.002267244039103389,-0.0003772300551645458,0.0023354315627370573,0.00023643682117457585,0.00023643682117457585,2.3354315627370574e-05,2.3643682117457585e-06,2.3643682117457585e-06,0.0055789402686059475,0.000428010243922472,238 +illusion_1L,sr,239,71.7,0.8003113865852356,-0.2640171945095062,0.5486503839492798,-0.5921229720115662,1.2613251209259033,-0.03274437412619591,0.0019045080989599228,-1.771704228303861e-05,0.002222344744950533,0.00032048241700977087,0.002265135757625103,-0.0003744001151062548,0.0030999382127029976,-0.00021544766440522237,-0.00021544766440522237,3.0999382127029976e-05,-2.1544766440522237e-06,-2.1544766440522237e-06,0.005592026747763157,-0.00010290697537129745,239 +illusion_1L,sr,240,72.0,0.8475504517555237,-0.3145619034767151,0.6001684069633484,-0.6354405283927917,1.1364682912826538,-0.1905810534954071,0.0019031788688153028,-1.6683934518368915e-05,0.0022218022495508194,0.0003284023841843009,0.0022625834681093693,-0.0003707139112520963,0.0025044168315095164,0.00023358426543732336,0.00023358426543732336,2.5044168315095164e-05,2.3358426543732337e-06,2.3358426543732337e-06,0.0055693225003778934,-0.0006285032723098993,240 +illusion_1L,sr,241,72.3,0.8973904252052307,-0.3573853373527527,0.6615062355995178,-0.6395701766014099,0.9844595193862915,-0.32389816641807556,0.0019047799287363887,-1.4745856788067613e-05,0.002225737553089857,0.00033744118991307914,0.0022624495904892683,-0.00036610671668313444,0.0028017111066342623,-8.449837144937355e-05,-8.449837144937355e-05,2.8017111066342622e-05,-8.449837144937356e-07,-8.449837144937356e-07,0.005552446935325861,-0.001115041202865541,241 +illusion_1L,sr,242,72.6,0.9498124122619629,-0.3930205702781677,0.707618236541748,-0.6520305275917053,0.8448594212532043,-0.39569777250289917,0.0019076128955930471,-1.2502050594775937e-05,0.002232117811217904,0.0003471137897577137,0.002262854715809226,-0.00036098709097132087,0.003086466780442859,-0.0004937539106698342,-0.0004937539106698342,3.086466780442859e-05,-4.937539106698342e-06,-4.937539106698342e-06,0.005589765962213278,-0.0015311157330870628,242 +illusion_1L,sr,243,72.9,1.0047959089279175,-0.42197829484939575,0.7388601303100586,-0.6732296347618103,0.7464483380317688,-0.3997459411621094,0.0019083821680396795,-9.119375135924201e-06,0.002236752538010478,0.00035735429264605045,0.002259991830214858,-0.0003552732232492417,0.002261687004867032,-0.0001747345795236263,-0.0001747345795236263,2.261687004867032e-05,-1.747345795236263e-06,-1.747345795236263e-06,0.00562874274328351,-0.0018496968550607562,243 +illusion_1L,sr,244,73.2,1.062358021736145,-0.4442691504955292,0.7589077949523926,-0.6902114152908325,0.6863324642181396,-0.35982808470726013,0.0019067930988967419,-5.312447683536448e-06,0.002238801447674632,0.0003669255238492042,0.0022534404415637255,-0.00034901316394098103,0.0023976107397117898,-0.0006410626457237015,-0.0006410626457237015,2.3976107397117897e-05,-6.410626457237015e-06,-6.410626457237015e-06,0.005641409661620855,-0.0020499122329056263,244 +illusion_1L,sr,245,73.5,1.1224558353424072,-0.4592963755130768,0.768310010433197,-0.6846433281898499,0.6455894708633423,-0.2990136742591858,0.0019051354611292481,-1.7959828255698085e-06,0.0022408475633710623,0.00037451161188073456,0.0022462354972958565,-0.0003420282737351954,0.0024023142552891206,-0.0010640527755620566,-0.0010640527755620566,2.4023142552891207e-05,-1.0640527755620567e-05,-1.0640527755620567e-05,0.005687114782631397,-0.0021184461656957865,245 +illusion_1L,sr,246,73.8,1.1845371723175049,-0.4656513035297394,0.7664426565170288,-0.6347309947013855,0.6128618121147156,-0.22556757926940918,0.0019036827143281698,2.242124992335448e-06,0.002242984715849161,0.00037993345176801085,0.002238923218101263,-0.00033433406497351825,0.001213017884480549,-0.0006350238966501302,-0.0006350238966501302,1.213017884480549e-05,-6.350238966501302e-06,-6.350238966501302e-06,0.005764052737504244,-0.0020504610147327185,246 +illusion_1L,sr,247,74.1,1.246795654296875,-0.4608149826526642,0.7529589533805847,-0.5300886034965515,0.5898060202598572,-0.1419391632080078,0.0019023522036150098,6.070472863939358e-06,0.0022453339770436287,0.00038296732236631215,0.0022320710122585297,-0.00032665886101312935,0.0009194763059649424,-0.0008786815106184447,-0.0008786815106184447,9.194763059649425e-06,-8.786815106184448e-06,-8.786815106184448e-06,0.005783763248473406,-0.001849970780313015,247 +illusion_1L,sr,248,74.4,1.3050986528396606,-0.440906822681427,0.7271959185600281,-0.3803996443748474,0.5853230357170105,-0.054807133972644806,0.0019031940028071404,9.247492926078849e-06,0.0022502101492136717,0.00038361363112926483,0.0022284097503870726,-0.0003196665202267468,0.000419353468004608,-0.000957338692215589,-0.000957338692215589,4.1935346800460805e-06,-9.57338692215589e-06,-9.57338692215589e-06,0.005733401048928499,-0.0015296366764232516,248 +illusion_1L,sr,249,74.7,1.3522216081619263,-0.40082070231437683,0.687280535697937,-0.19965539872646332,0.6069387197494507,0.024331452324986458,0.0019065282540395856,1.2391969903546851e-05,0.0022579513024538755,0.00038273961399681866,0.00222865235991776,-0.0003139902255497873,-0.0008189681599077916,-0.00045721329499423367,-0.00045721329499423367,-8.189681599077916e-06,-4.572132949942337e-06,-4.572132949942337e-06,0.005679980851709843,-0.001109990873374045,249 +illusion_1L,sr,250,75.0,1.3789805173873901,-0.33565738797187805,0.6340699791908264,0.007673533167690039,0.6512218713760376,0.08890915662050247,0.0019087855471298099,1.4857053429295775e-05,0.002264120616018772,0.00038113113259896636,0.002228738972917199,-0.0003110862453468144,-0.001175654032750488,-0.0005589722579486568,-0.0005589722579486568,-1.175654032750488e-05,-5.589722579486569e-06,-5.589722579486569e-06,0.005627625621855259,-0.0006181322387419641,250 +illusion_1L,sr,251,75.3,1.3775588274002075,-0.2429942637681961,0.5776770710945129,0.23312141001224518,0.7032058835029602,0.14553339779376984,0.001908203586935997,1.635019179957453e-05,0.0022661262191832066,0.0003792757051996887,0.0022263452410697937,-0.0003115077852271497,-0.0016418502262440758,-0.0005106124849601594,-0.0005106124849601594,-1.641850226244076e-05,-5.106124849601594e-06,-5.106124849601594e-06,0.005549031309783459,-8.59768915688619e-05,251 +illusion_1L,sr,252,75.6,1.3427083492279053,-0.12320626527070999,0.5391920208930969,0.44422364234924316,0.7515992522239685,0.20322734117507935,0.0019064132357016206,1.7503783965366893e-05,0.002265640301629901,0.0003772425989154726,0.0022234153002500534,-0.00031463653431273997,-0.0025771988236831245,-3.288861682115493e-05,-3.288861682115493e-05,-2.5771988236831246e-05,-3.2888616821154934e-07,-3.2888616821154934e-07,0.005499288439750671,0.0004518234054557979,252 +illusion_1L,sr,253,75.9,1.267482876777649,0.02115013264119625,0.5431507229804993,0.5865241885185242,0.7972918748855591,0.26034510135650635,0.0019047159003093839,1.7598025806364603e-05,0.0022639043163508177,0.00037456941208802164,0.0022213561460375786,-0.00032028972054831684,-0.0024277477731142402,-0.00026272323090857294,-0.00026272323090857294,-2.4277477731142404e-05,-2.6272323090857293e-06,-2.6272323090857293e-06,0.00553347822278738,0.000960158125963062,253 +illusion_1L,sr,254,76.2,1.14677894115448,0.1775328665971756,0.5926911234855652,0.6347845792770386,0.844237208366394,0.31145599484443665,0.0019028049428015947,1.660842463024892e-05,0.002260724315419793,0.0003712489560712129,0.0022199722006917,-0.00032801376073621213,-0.0025283370429652965,-0.0002040337979869571,-0.0002040337979869571,-2.5283370429652967e-05,-2.040337979869571e-06,-2.040337979869571e-06,0.0055986023508012295,0.0014057770604267716,254 +illusion_1L,sr,255,76.5,0.9961097240447998,0.3132063150405884,0.6546941995620728,0.639285147190094,0.8936904072761536,0.3548835217952728,0.0019019676838070154,1.509671528765466e-05,0.0022576956544071436,0.0003671955200843513,0.0022208234295248985,-0.0003368658944964409,-0.002931020131027591,0.00018162858568208234,0.00018162858568208234,-2.931020131027591e-05,1.8162858568208234e-06,1.8162858568208234e-06,0.005635641980916262,0.0017594960518181324,255 +illusion_1L,sr,256,76.8,0.8536427617073059,0.3905572295188904,0.7019845843315125,0.6507031321525574,0.9456952810287476,0.39108675718307495,0.0019040576880797744,1.262861133000115e-05,0.0022571939043700695,0.0003619784547481686,0.0022260553669184446,-0.00034622245584614575,-0.002508421528689103,5.808884612029316e-05,5.808884612029316e-05,-2.5084215286891032e-05,5.808884612029316e-07,5.808884612029316e-07,0.005671056918799877,0.0019981369841843843,256 +illusion_1L,sr,257,77.1,0.7506049871444702,0.3997790515422821,0.7339515686035156,0.6715624332427979,1.0003235340118408,0.42058271169662476,0.0019066445529460907,9.289762601838447e-06,0.002256556646898389,0.00035594156361185014,0.00223267893306911,-0.0003558347816579044,-0.002367215421919245,0.00023325247353494022,0.00023325247353494022,-2.367215421919245e-05,2.332524735349402e-06,2.332524735349402e-06,0.005717759020626545,0.002106070751324296,257 +illusion_1L,sr,258,77.4,0.6874122619628906,0.362549751996994,0.7546164393424988,0.6891786456108093,1.057679295539856,0.44343307614326477,0.001906954450532794,5.892447916266974e-06,0.0022525612730532885,0.00034967876854352653,0.0022370771039277315,-0.0003649699210654944,-0.0026289188653347353,0.0007811286490626463,0.0007811286490626463,-2.6289188653347354e-05,7.811286490626463e-06,7.811286490626463e-06,0.005728086922317743,0.002076256787404418,258 +illusion_1L,sr,259,77.7,0.6457619071006775,0.30282843112945557,0.7647021412849426,0.6857553720474243,1.1176766157150269,0.459076851606369,0.0019053415162488818,2.1312207536539063e-06,0.002245680894702673,0.00034287062590010464,0.00223928177729249,-0.0003728809824679047,-0.001976808315568431,0.0007078800320988524,0.0007078800320988524,-1.9768083155684308e-05,7.078800320988524e-06,7.078800320988524e-06,0.005702213384211063,0.0019107060506939888,259 +illusion_1L,sr,260,78.0,0.61305171251297,0.23019862174987793,0.7636244297027588,0.6395160555839539,1.1797499656677246,0.4661419093608856,0.0019038539612665772,-1.8277715980730136e-06,0.0022386331111192703,0.0003354769723955542,0.002241547219455242,-0.0003786823363043368,-0.0014444376203327017,0.0007569897859052302,0.0007569897859052302,-1.4444376203327018e-05,7.569897859052303e-06,7.569897859052303e-06,0.005696525331586599,0.0016203367849811912,260 +illusion_1L,sr,261,78.3,0.5897155404090881,0.14739669859409332,0.7510047554969788,0.5387985110282898,1.242102861404419,0.46220576763153076,0.0019025164656341076,-5.3713147281087e-06,0.002231740625575185,0.0003281824174337089,0.002243794035166502,-0.00038203317672014236,-0.001111959896480181,0.0009651841523797508,0.0009651841523797508,-1.111959896480181e-05,9.651841523797507e-06,9.651841523797507e-06,0.005705347750335932,0.0012242335360497236,261 +illusion_1L,sr,262,78.6,0.5841380953788757,0.06066247820854187,0.7262572646141052,0.392030268907547,1.3007299900054932,0.4434792697429657,0.001901527401059866,-8.865288691595197e-06,0.0022258309181779623,0.0003213226154912263,0.002246409421786666,-0.0003833665978163481,-8.063588398298308e-05,0.0006476301605335419,0.0006476301605335419,-8.063588398298308e-07,6.476301605335419e-06,6.476301605335419e-06,0.0056749628856778145,0.0007483611116185784,262 +illusion_1L,sr,263,78.9,0.6041485667228699,-0.018796591088175774,0.6875424981117249,0.21367008984088898,1.348646879196167,0.40496116876602173,0.0019029740942642093,-1.2015040738333482e-05,0.002223638817667961,0.0003155964077450335,0.0022517256438732147,-0.0003828001208603382,0.0004920665546846309,0.0006395737574414629,0.0006395737574414629,4.920665546846309e-06,6.395737574414629e-06,6.395737574414629e-06,0.005616396199911833,0.00022382187307812274,263 +illusion_1L,sr,264,79.2,0.6472786068916321,-0.0838576927781105,0.6352561712265015,0.008907638490200043,1.376871109008789,0.3418101370334625,0.001906186924315989,-1.4268593076849356e-05,0.0022246302105486393,0.0003121142799500376,0.002258880762383342,-0.00038094521733000875,0.0008467931634734173,0.0007432599059868858,0.0007432599059868858,8.467931634734173e-06,7.432599059868858e-06,7.432599059868858e-06,0.005577105097472668,-0.00031522029894404113,264 +illusion_1L,sr,265,79.5,0.6991485953330994,-0.14041943848133087,0.5785834193229675,-0.21504132449626923,1.3776473999023438,0.2515447437763214,0.0019078149925917387,-1.609176251804456e-05,0.0022248958703130484,0.0003116184379905462,0.002263676840811968,-0.0003789227339439094,0.0018236943120270648,0.000320844252305285,0.000320844252305285,1.8236943120270648e-05,3.20844252305285e-06,3.20844252305285e-06,0.005551840178668499,-0.0008338077459484339,265 +illusion_1L,sr,266,79.8,0.7477858662605286,-0.1979166865348816,0.5376763343811035,-0.42852285504341125,1.3459256887435913,0.13457509875297546,0.0019067475805059075,-1.7306063455180265e-05,0.0022228427696973085,0.0003142979694530368,0.0022642198018729687,-0.00037698200321756303,0.0021974151430974656,0.00026521409119641126,0.00026521409119641126,2.1974151430974656e-05,2.6521409119641126e-06,2.6521409119641126e-06,0.0055290330201387405,-0.0012984927743673325,266 +illusion_1L,sr,267,80.1,0.7934152483940125,-0.2553730905056,0.5373821258544922,-0.5783287882804871,1.2752455472946167,-0.00678569870069623,0.0019049157854169607,-1.7265543647226878e-05,0.0022207750007510185,0.0003197666082996875,0.0022626863792538643,-0.00037452601827681065,0.0020614882751183033,0.0004924547092276278,0.0004924547092276278,2.0614882751183033e-05,4.924547092276279e-06,4.924547092276279e-06,0.005548518151044846,-0.0016795200062915683,267 +illusion_1L,sr,268,80.4,0.8400928974151611,-0.3071984648704529,0.584122896194458,-0.6336193680763245,1.1594836711883545,-0.16188237071037292,0.001903218450024724,-1.65851251949789e-05,0.0022195533383637667,0.0003271435562055558,0.002259884960949421,-0.000371591275325045,0.002633160743159918,9.538482702604184e-05,9.538482702604184e-05,2.633160743159918e-05,9.538482702604184e-07,9.538482702604184e-07,0.00562577648088336,-0.001952742924913764,268 +illusion_1L,sr,269,80.7,0.8891951441764832,-0.35139191150665283,0.6468852162361145,-0.6391173601150513,1.0107710361480713,-0.30058714747428894,0.0019014346180483699,-1.5170864571700804e-05,0.0022191547323018312,0.00033590392558835447,0.002255834639072418,-0.0003679255023598671,0.0025950852909085234,4.6509154565735344e-05,4.6509154565735344e-05,2.5950852909085234e-05,4.6509154565735346e-07,4.6509154565735346e-07,0.005705163814127445,-0.0021011470817029476,269 +illusion_1L,sr,270,81.0,0.9407914280891418,-0.3883015215396881,0.6958783268928528,-0.6492418646812439,0.8653773069381714,-0.38472041487693787,0.0019011767581105232,-1.2541558135126252e-05,0.0022213743068277836,0.00034538665204308927,0.002252568956464529,-0.000363010709406808,0.002179696337979063,0.00017584249519501938,0.00017584249519501938,2.179696337979063e-05,1.7584249519501939e-06,1.7584249519501939e-06,0.005744705442339182,-0.0021158847957849503,270 +illusion_1L,sr,271,81.3,0.9949783086776733,-0.41846928000450134,0.7289137840270996,-0.6696604490280151,0.7569650411605835,-0.40042996406555176,0.001903591793961823,-9.558108104101848e-06,0.002227532910183072,0.0003545364597812295,0.0022517023608088493,-0.00035707620554603636,0.0025981834844959265,-0.00040147089137572775,-0.00040147089137572775,2.5981834844959264e-05,-4.0147089137572774e-06,-4.0147089137572774e-06,0.005756988190114498,-0.0019967579282820225,271 +illusion_1L,sr,272,81.6,1.0519649982452393,-0.4420011341571808,0.7504000067710876,-0.6880655288696289,0.6898388266563416,-0.3667258024215698,0.0019058340694755316,-6.220342129381606e-06,0.002234162064269185,0.0003632292791735381,0.0022501265630126,-0.0003505209169816226,0.002341365358907374,-0.0005540599058391979,-0.0005540599058391979,2.3413653589073743e-05,-5.5405990583919794e-06,-5.5405990583919794e-06,0.005744813941419125,-0.0017521297559142113,272 +illusion_1L,sr,273,81.9,1.111742615699768,-0.45837682485580444,0.7614123821258545,-0.6872608065605164,0.6467731595039368,-0.30844998359680176,0.0019057206809520721,-2.2486638044938445e-06,0.0022382072638720274,0.0003711685712914914,0.002245271811261773,-0.00034359461278654635,0.0017385591483423234,-0.0005081055946565046,-0.0005081055946565046,1.7385591483423235e-05,-5.081055946565046e-06,-5.081055946565046e-06,0.005693688523024321,-0.001398277236148715,273 +illusion_1L,sr,274,82.2,1.1737431287765503,-0.466314435005188,0.7614153623580933,-0.645560622215271,0.6137909293174744,-0.236796036362648,0.0019041659543290734,1.3604645801024162e-06,0.002240546979010105,0.0003771983610931784,0.002238410757854581,-0.00033662052010186017,0.0018097158919030039,-0.0009948989605518617,-0.0009948989605518617,1.8097158919030038e-05,-9.948989605518617e-06,-9.948989605518617e-06,0.005629749968647957,-0.0009582436759956181,274 +illusion_1L,sr,275,82.5,1.2362520694732666,-0.4634896218776703,0.7500119209289551,-0.5497652888298035,0.5899011492729187,-0.15484578907489777,0.0019028651295229793,4.986923158867285e-06,0.002242964692413807,0.0003810427733696997,0.002231736434623599,-0.00032950250897556543,0.0008576539548276476,-0.0007390106029443236,-0.0007390106029443236,8.576539548276476e-06,-7.390106029443237e-06,-7.390106029443237e-06,0.005596959963440895,-0.00046027303324081004,275 +illusion_1L,sr,276,82.8,1.295395851135254,-0.4462365210056305,0.7266436219215393,-0.40665125846862793,0.5828068256378174,-0.06831241399049759,0.0019016391597688198,8.701677870703861e-06,0.0022452068515121937,0.00038294875412248075,0.0022254849318414927,-0.0003227141860406846,4.0675158993272106e-05,-0.0005778028779099388,-0.0005778028779099388,4.067515899327211e-07,-5.778028779099388e-06,-5.778028779099388e-06,0.005591437220573425,6.405806198017672e-05,276 +illusion_1L,sr,277,83.1,1.3444424867630005,-0.40969333052635193,0.6894857883453369,-0.23111271858215332,0.6006735563278198,0.011893190443515778,0.0019010251853615046,1.1573143638088368e-05,0.0022479970939457417,0.0003828340850304812,0.0022207133006304502,-0.0003172389988321811,-4.75199972921822e-05,-0.0009268307045229018,-0.0009268307045229018,-4.7519997292182206e-07,-9.268307045229018e-06,-9.268307045229018e-06,0.005585479084402323,0.0005818844656459987,277 +illusion_1L,sr,278,83.4,1.374558687210083,-0.3490141034126282,0.638384997844696,-0.029248584061861038,0.642241358757019,0.07788806408643723,0.0019029190298169851,1.3959156603959855e-05,0.002253445331007242,0.0003812260983977467,0.0022198876831680536,-0.0003134347207378596,-0.001025674886000378,-0.0005716864842692689,-0.0005716864842692689,-1.025674886000378e-05,-5.716864842692689e-06,-5.716864842692689e-06,0.005581559147685766,0.0010611350880935788,278 +illusion_1L,sr,279,83.7,1.3779417276382446,-0.2615646719932556,0.5814354419708252,0.19297441840171814,0.6938972473144531,0.13454216718673706,0.0019058114849030972,1.6116602637339383e-05,0.0022596532944589853,0.00037907197838649154,0.0022214397322386503,-0.00031205001869238913,-0.0018296929847189045,-0.0002826054751995377,-0.0002826054751995377,-1.8296929847189046e-05,-2.826054751995377e-06,-2.826054751995377e-06,0.005591227672994137,0.0014725204091519117,279 +illusion_1L,sr,280,84.0,1.3497154712677002,-0.14772462844848633,0.5377750396728516,0.4090022146701813,0.7429007887840271,0.19174158573150635,0.001906782970763743,1.7049716916517355e-05,0.0022628474980592728,0.0003767643356695771,0.0022218392696231604,-0.00031405375921167433,-0.0016279177285558682,-0.0006590613566079678,-0.0006590613566079678,-1.627917728555868e-05,-6.590613566079678e-06,-6.590613566079678e-06,0.0056059095077216625,0.0017913009505718946,280 +illusion_1L,sr,281,84.3,1.2839951515197754,-0.009612483903765678,0.5323992371559143,0.5674206614494324,0.7885558009147644,0.24949699640274048,0.00190535350702703,1.722640809020959e-05,0.00226202211342752,0.000374537892639637,0.002220256719738245,-0.0003190254792571068,-0.0022538846081337147,-0.00033205918727286995,-0.00033205918727286995,-2.2538846081337146e-05,-3.3205918727286997e-06,-3.3205918727286997e-06,0.005624179262667894,0.0019987314008176327,281 +illusion_1L,sr,282,84.6,1.1738862991333008,0.1439284235239029,0.5752928256988525,0.6315893530845642,0.8350061774253845,0.30212482810020447,0.0019035605946555734,1.6877998859854415e-05,0.0022594770416617393,0.00037196220364421606,0.002219058573246002,-0.0003260833618696779,-0.002580627579396942,-0.00012714735992673531,-0.00012714735992673531,-2.5806275793969422e-05,-1.2714735992673531e-06,-1.2714735992673531e-06,0.005661684088408947,0.0020831020083278418,282 +illusion_1L,sr,283,84.9,1.028012752532959,0.28562572598457336,0.6385313868522644,0.6388801336288452,0.8838325142860413,0.347185343503952,0.0019019333412870765,1.5190159501798917e-05,0.0022557126358151436,0.0003684452676679939,0.0022186904679983854,-0.000334827636834234,-0.0020697662227493613,-0.00043957042626585965,-0.00043957042626585965,-2.0697662227493615e-05,-4.395704262658597e-06,-4.395704262658597e-06,0.005714363418519497,0.0020403247326612473,283 +illusion_1L,sr,284,85.2,0.8800927996635437,0.3771567642688751,0.6895563006401062,0.6474565863609314,0.9350823163986206,0.38490939140319824,0.0019003786146640778,1.2853672160417773e-05,0.0022510141134262085,0.0003640567301772535,0.002219228306785226,-0.000344240281265229,-0.0024524498257611077,9.346331913261119e-06,9.346331913261119e-06,-2.4524498257611078e-05,9.346331913261119e-08,9.346331913261119e-08,0.005751916207373142,0.001874040812253952,284 +illusion_1L,sr,285,85.5,0.7659056186676025,0.40044867992401123,0.7239287495613098,0.6672318577766418,0.988840639591217,0.4158620238304138,0.001900715404190123,1.012599932437297e-05,0.0022476650774478912,0.0003585076192393899,0.002222696552053094,-0.00035341549664735794,-0.0024937312841376534,0.00029532288571868653,0.00029532288571868653,-2.4937312841376534e-05,2.9532288571868655e-06,2.9532288571868655e-06,0.005752751603722572,0.0015952644171193242,285 +illusion_1L,sr,286,85.8,0.6940427422523499,0.37117254734039307,0.7463136911392212,0.6864495277404785,1.0453598499298096,0.4401785135269165,0.001903258147649467,6.470817424997222e-06,0.0022464089561253786,0.00035174304503016174,0.002229431178420782,-0.00036196416476741433,-0.001898754733683304,0.00018747550519764358,0.00018747550519764358,-1.8987547336833042e-05,1.8747550519764358e-06,1.8747550519764358e-06,0.005716994404792786,0.0012215939350426197,286 +illusion_1L,sr,287,86.1,0.648948609828949,0.3148386776447296,0.7582672238349915,0.6886066794395447,1.1047732830047607,0.45741286873817444,0.0019051230046898127,2.766793386399513e-06,0.0022440601605921984,0.0003446320188231766,0.0022358314599841833,-0.0003694875631481409,-0.0021468845236074265,0.0007609094015804656,0.0007609094015804656,-2.1468845236074266e-05,7.6090940158046564e-06,7.6090940158046564e-06,0.005655428394675255,0.0007760541047900915,287 +illusion_1L,sr,288,86.4,0.6153951287269592,0.2444542944431305,0.7594075798988342,0.6522262692451477,1.1666145324707031,0.4663773477077484,0.0019046568777412176,-7.131154688977404e-07,0.0022386563941836357,0.0003376516397111118,0.002239532070234418,-0.0003756120568141341,-0.0018032647187938959,0.0009333384766839065,0.0009333384766839065,-1.8032647187938958e-05,9.333384766839065e-06,9.333384766839065e-06,0.005588269792497158,0.000285650254227221,288 +illusion_1L,sr,289,86.7,0.590746283531189,0.16358669102191925,0.7493111491203308,0.5623989105224609,1.2292687892913818,0.4648526906967163,0.0019032376585528255,-4.611141775967553e-06,0.0022320966236293316,0.0003305920690763742,0.0022420065943151712,-0.0003800111007876694,-0.0006724649170433572,0.00054045198916204,0.00054045198916204,-6.724649170433572e-06,5.4045198916204e-06,5.4045198916204e-06,0.005542092490941286,-0.00022027546947356313,289 +illusion_1L,sr,290,87.0,0.5818934440612793,0.07739116996526718,0.727493405342102,0.4237922430038452,1.2890750169754028,0.44933074712753296,0.0019021270563825965,-8.114398951875046e-06,0.002226022304967046,0.00032399524934589863,0.0022444461937993765,-0.0003822548605967313,-0.00046887160631419074,0.000830436836162892,0.000830436836162892,-4.688716063141908e-06,8.30436836162892e-06,8.30436836162892e-06,0.005534210707992315,-0.0007117835339158773,290 +illusion_1L,sr,291,87.3,0.5972325205802917,-0.0036414603237062693,0.692133367061615,0.2515240013599396,1.3395273685455322,0.41508734226226807,0.0019009878160431981,-1.097553194995271e-05,0.002220520982518792,0.0003185599925927818,0.0022465831134468317,-0.0003826027677860111,7.445876166911267e-05,0.0008435755984267395,0.0008435755984267395,7.445876166911267e-07,8.435755984267396e-06,8.435755984267396e-06,0.005564122460782528,-0.0011600726284086704,291 +illusion_1L,sr,292,87.6,0.6368352770805359,-0.07085204869508743,0.6425078511238098,0.05284774303436279,1.3719384670257568,0.35723721981048584,0.0019007527735084295,-1.3739345376961865e-05,0.002216975437477231,0.0003146001836284995,0.002249430865049362,-0.0003816091630142182,0.0011436930436696524,0.0004247423334389176,0.0004247423334389176,1.1436930436696524e-05,4.247423334389176e-06,4.247423334389176e-06,0.005614774767309427,-0.0015391155611723661,292 +illusion_1L,sr,293,87.9,0.6880695223808289,-0.12777696549892426,0.5854520797729492,-0.16733381152153015,1.378340482711792,0.27293655276298523,0.0019028779352083802,-1.568305742694065e-05,0.00221733539365232,0.0003128386160824448,0.0022546208929270506,-0.00037941071786917746,0.0012768315823243545,0.0006380520049680607,0.0006380520049680607,1.2768315823243545e-05,6.380520049680607e-06,6.380520049680607e-06,0.005659830756485462,-0.0018271084409207106,293 +illusion_1L,sr,294,88.2,0.7374036312103271,-0.18462635576725006,0.5389038324356079,-0.38578730821609497,1.3538844585418701,0.16244061291217804,0.00190535350702703,-1.6728396076359786e-05,0.0022193172480911016,0.00031394819961860776,0.0022596304770559072,-0.00037682929541915655,0.0016753668236647312,0.000578671571704957,0.000578671571704957,1.675366823664731e-05,5.78671571704957e-06,5.78671571704957e-06,0.005684380419552326,-0.002007660223171115,294 +illusion_1L,sr,295,88.5,0.7830696702003479,-0.24264374375343323,0.5278513431549072,-0.5535630583763123,1.2933645248413086,0.027687855064868927,0.00190570333506912,-1.7272590412176214e-05,0.0022198462393134832,0.0003180804487783462,0.0022611659951508045,-0.00037450858508236706,0.0022825046680066616,0.0002769745388463904,0.0002769745388463904,2.2825046680066617e-05,2.769745388463904e-06,2.769745388463904e-06,0.005696034524589777,-0.0020706653594970703,295 +illusion_1L,sr,296,88.8,0.8292362093925476,-0.2961373031139374,0.5658626556396484,-0.6285123825073242,1.1894047260284424,-0.12411826848983765,0.0019041004125028849,-1.6766669432399794e-05,0.002218903973698616,0.00032490730518475175,0.002259137574583292,-0.0003720142412930727,0.0020782825286764783,0.00047723026979217334,0.00047723026979217334,2.0782825286764785e-05,4.772302697921734e-06,4.772302697921734e-06,0.005703396163880825,-0.0020128197502344847,296 +illusion_1L,sr,297,89.1,0.8777832984924316,-0.3421712815761566,0.629164457321167,-0.6388204097747803,1.0471869707107544,-0.26875945925712585,0.0019024461507797241,-1.523803894087905e-05,0.002218555426225066,0.00033345408155582845,0.0022556844633072615,-0.00036882280255667865,0.0021307651110309966,0.0003854033778598019,0.0003854033778598019,2.1307651110309967e-05,3.854033778598019e-06,3.854033778598019e-06,0.005702631548047066,-0.0018377614906057715,297 +illusion_1L,sr,298,89.4,0.9287391901016235,-0.38081851601600647,0.6826258301734924,-0.6457479596138,0.8972769975662231,-0.36824923753738403,0.0019008986419066787,-1.3188975572120398e-05,0.0022189721930772066,0.00034275464713573456,0.002251111902296543,-0.0003648370038717985,0.0024512069966908315,-3.2135168947095005e-06,-3.2135168947095005e-06,2.4512069966908317e-05,-3.2135168947095004e-08,-3.2135168947095004e-08,0.00569628830999136,-0.001555830822326243,298 +illusion_1L,sr,299,89.7,0.9821165800094604,-0.41264548897743225,0.7187731266021729,-0.6646410226821899,0.7770709991455078,-0.4002075791358948,0.001899640541523695,-1.0298917004547548e-05,0.0022203908301889896,0.00035221135476604104,0.002245960058644414,-0.00035965474671684206,0.002124719800438931,-4.9290977044945394e-06,-4.9290977044945394e-06,2.124719800438931e-05,-4.92909770449454e-08,-4.92909770449454e-08,0.005691180936992168,-0.0011834697797894478,299 +illusion_1L,sr,300,90.0,1.0381648540496826,-0.43783333897590637,0.7423353791236877,-0.6845950484275818,0.6997599005699158,-0.37628647685050964,0.0019004917703568935,-6.7891205617343076e-06,0.0022248802706599236,0.00036088807974010706,0.002242674818262458,-0.0003531672991812229,0.0020903908066532834,-0.00030001732218325194,-0.00030001732218325194,2.0903908066532836e-05,-3.0001732218325197e-06,-3.0001732218325197e-06,0.005671756807714701,-0.0007422934286296368,300 +illusion_1L,sr,301,90.3,1.0971016883850098,-0.45601552724838257,0.7553677558898926,-0.6898030042648315,0.6520043611526489,-0.32232430577278137,0.0019030115799978375,-3.361188873896026e-06,0.0022318779956549406,0.00036816930514760315,0.002241078531369567,-0.00034598493948578835,0.002235707676148474,-0.0007868128532648178,-0.0007868128532648178,2.235707676148474e-05,-7.868128532648178e-06,-7.868128532648178e-06,0.0056210970506072044,-0.0002578797866590321,301 +illusion_1L,sr,302,90.6,1.1586543321609497,-0.46609610319137573,0.7577582001686096,-0.6591378450393677,0.6175311207771301,-0.25334325432777405,0.0019044987857341766,3.4822713246285275e-07,0.002237944630905986,0.0003742291883099824,0.002238132758066058,-0.0003386353200767189,0.001463718605221616,-0.0006346122966791688,-0.0006346122966791688,1.463718605221616e-05,-6.346122966791688e-06,-6.346122966791688e-06,0.005563950631767511,0.00024165630748029798,302 +illusion_1L,sr,303,90.9,1.2213762998580933,-0.4659852087497711,0.7490999698638916,-0.5760205388069153,0.591916024684906,-0.1736193597316742,0.001903802389279008,4.192298547422979e-06,0.002241348847746849,0.00037884697667323053,0.002232550410553813,-0.00033159254235215485,0.0008907293064292233,-0.0006501139885609289,-0.0006501139885609289,8.907293064292233e-06,-6.501139885609289e-06,-6.501139885609289e-06,0.005538197699934244,0.000727235630620271,303 +illusion_1L,sr,304,91.2,1.2818541526794434,-0.4523596167564392,0.7289845943450928,-0.4426613450050354,0.5810577869415283,-0.0877687931060791,0.0019025643123313785,7.540978003817145e-06,0.0022438818123191595,0.0003814833180513233,0.002226536627858877,-0.0003251552116125822,0.0006193386806393041,-0.0008875891346881742,-0.0008875891346881742,6.1933868063930416e-06,-8.875891346881742e-06,-8.875891346881742e-06,0.005544575862586498,0.001170451520010829,304 +illusion_1L,sr,305,91.5,1.3338794708251953,-0.42062807083129883,0.695675790309906,-0.2740567922592163,0.5935341119766235,-0.005729278549551964,0.0019015711732208729,1.0690520866774023e-05,0.0022462152410298586,0.0003823694714810699,0.0022211414761841297,-0.0003195923054590821,-0.0002730991674666089,-0.0006439305931017873,-0.0006439305931017873,-2.730991674666089e-06,-6.439305931017873e-06,-6.439305931017873e-06,0.005573783535510302,0.0015451861545443535,305 +illusion_1L,sr,306,91.8,1.368873119354248,-0.36588191986083984,0.6478618383407593,-0.0788194015622139,0.6308093667030334,0.06304732710123062,0.0019004876958206296,1.3448873687593732e-05,0.0022480622865259647,0.0003817965043708682,0.0022164667025208473,-0.00031560382922179997,-0.0008294195345860851,-0.0006091470421822377,-0.0006091470421822377,-8.294195345860851e-06,-6.091470421822378e-06,-6.091470421822378e-06,0.005636546760797501,0.001829120796173811,306 +illusion_1L,sr,307,92.1,1.3786530494689941,-0.285024493932724,0.5910261869430542,0.13895027339458466,0.6814934015274048,0.12048717588186264,0.0019005920039489865,1.5305191482184455e-05,0.0022507912945002317,0.00037993313162587583,0.0022141586523503065,-0.000313744880259037,-0.001091211337338617,-0.0007335006330005389,-0.0007335006330005389,-1.0912113373386171e-05,-7.33500633000539e-06,-7.33500633000539e-06,0.005716180428862572,0.00200505624525249,307 +illusion_1L,sr,308,92.4,1.3581961393356323,-0.17807891964912415,0.5416904091835022,0.35942620038986206,0.7312545776367188,0.1769484281539917,0.0019027944654226303,1.6672785932314582e-05,0.002255410421639681,0.00037738977698609233,0.002215518383309245,-0.0003141636261716485,-0.0018592125332101835,-0.0004107492914603231,-0.0004107492914603231,-1.8592125332101835e-05,-4.107492914603231e-06,-4.107492914603231e-06,0.005756895989179611,0.0020619675051420927,308 +illusion_1L,sr,309,92.7,1.302954077720642,-0.04687897861003876,0.5245730876922607,0.5366687774658203,0.7769858241081238,0.2351192981004715,0.001904800534248352,1.7308924725512043e-05,0.0022590365260839462,0.00037473105476237833,0.002217877423390746,-0.0003174317243974656,-0.0020126371165303733,-0.00045617722588525353,-0.00045617722588525353,-2.0126371165303733e-05,-4.561772258852535e-06,-4.561772258852535e-06,0.005743067711591721,0.001995726488530636,309 +illusion_1L,sr,310,93.0,1.2055054903030396,0.10277526825666428,0.556643009185791,0.6239038705825806,0.822840690612793,0.2894839346408844,0.001904646516777575,1.672218604653608e-05,0.002258975524455309,0.00037206345587037504,0.002218601293861866,-0.0003236953925807029,-0.001856545750577969,-0.0006335166338379168,-0.0006335166338379168,-1.856545750577969e-05,-6.335166338379168e-06,-6.335166338379168e-06,0.005714329890906811,0.001809444511309266,310 +illusion_1L,sr,311,93.3,1.0678013563156128,0.2498418241739273,0.619194507598877,0.6386980414390564,0.8710671067237854,0.3365638256072998,0.0019030272960662842,1.5553929188172333e-05,0.0022559361532330513,0.000369210378266871,0.0022183835972100496,-0.0003318989183753729,-0.0023510381445240383,-0.00022922372170249006,-0.00022922372170249006,-2.3510381445240384e-05,-2.2922372170249007e-06,-2.2922372170249007e-06,0.005683825351297855,0.0015134024433791637,311 +illusion_1L,sr,312,93.6,0.9167354106903076,0.35730797052383423,0.675224781036377,0.6439996361732483,0.9217601418495178,0.3762076497077942,0.0019015091238543391,1.356117627437925e-05,0.002251664875075221,0.00036549411015585065,0.002218834822997451,-0.00034116607275791466,-0.002185854619074605,-0.00021385075254851113,-0.00021385075254851113,-2.185854619074605e-05,-2.1385075254851115e-06,-2.1385075254851115e-06,0.0056352922692894936,0.0011245590867474675,312 +illusion_1L,sr,313,93.9,0.7905778884887695,0.39874815940856934,0.7134767770767212,0.6617025136947632,0.9748134613037109,0.40897077322006226,0.0019000365864485502,1.0572376595519017e-05,0.0022463982459157705,0.0003605890378821641,0.0022198816295713186,-0.0003507934743538499,-0.0019868057417791914,-0.0001308244763455306,-0.0001308244763455306,-1.9868057417791913e-05,-1.308244763455306e-06,-1.308244763455306e-06,0.005594110582023859,0.0006656530895270407,313 +illusion_1L,sr,314,94.2,0.7072286605834961,0.38116762042045593,0.738431453704834,0.6822364926338196,1.030430555343628,0.43510645627975464,0.0018990995595231652,7.42782003726461e-06,0.0022410338278859854,0.0003546739462763071,0.0022220932878553867,-0.00035965340794064105,-0.0023910868174555275,0.00047637123330880257,0.00047637123330880257,-2.3910868174555277e-05,4.763712333088026e-06,4.763712333088026e-06,0.005593768786638975,0.00016393783153034747,314 +illusion_1L,sr,315,94.5,0.6562075018882751,0.33013680577278137,0.7526443600654602,0.6904624104499817,1.0888651609420776,0.4543185532093048,0.001900387229397893,3.9555784496769775e-06,0.0022378775756806135,0.00034759502159431577,0.002227394375950098,-0.0003671517188195139,-0.0019637545486303146,0.0005296218153290622,0.0005296218153290622,-1.9637545486303146e-05,5.2962181532906216e-06,5.2962181532906216e-06,0.005601159762591124,-0.0003503881162032485,315 +illusion_1L,sr,316,94.8,0.6204522252082825,0.2627963125705719,0.7562733292579651,0.6657876372337341,1.1500016450881958,0.46559712290763855,0.001902829622849822,6.329850066322251e-08,0.0022360384464263916,0.00033995331614278257,0.0022344563622027636,-0.00037314524524845183,-0.0014080653902308771,0.0005308532033290649,0.0005308532033290649,-1.4080653902308771e-05,5.30853203329065e-06,5.30853203329065e-06,0.005579833872616291,-0.0008459693053737283,316 +illusion_1L,sr,317,95.1,0.5937111377716064,0.18442033231258392,0.7490314245223999,0.5901163220405579,1.212677001953125,0.4670126438140869,0.0019039612961933017,-3.466422640485689e-06,0.0022327268961817026,0.0003327130398247391,0.0022401101887226105,-0.0003775937366299331,-0.0013142415418813615,0.0008955897777603893,0.0008955897777603893,-1.3142415418813615e-05,8.955897777603893e-06,8.955897777603893e-06,0.005568155087530613,-0.001292198314331472,317 +illusion_1L,sr,318,95.4,0.580707848072052,0.09912554919719696,0.7306054830551147,0.46283137798309326,1.2737667560577393,0.455415278673172,0.0019031554693356156,-6.963275154703297e-06,0.002227303571999073,0.0003261356905568391,0.002243279479444027,-0.00038061229861341417,-0.0004132277358103661,0.0006660036491383569,0.0006660036491383569,-4.132277358103661e-06,6.660036491383569e-06,6.660036491383569e-06,0.005600422155112028,-0.001661122078076005,318 +illusion_1L,sr,319,95.7,0.5900660157203674,0.016168342903256416,0.699428379535675,0.29835274815559387,1.327418565750122,0.4263632595539093,0.0019020679173991084,-1.0333111276850104e-05,0.0022219365928322077,0.00032049883157014847,0.0022457274608314037,-0.00038195785600692034,0.00021519892306329919,0.0006199954467126841,0.0006199954467126841,2.151989230632992e-06,6.1999544671268415e-06,6.1999544671268415e-06,0.005640667863190174,-0.001929230522364378,319 +illusion_1L,sr,320,96.0,0.6246398687362671,-0.05434630066156387,0.6537008881568909,0.1068020761013031,1.3652104139328003,0.37494584918022156,0.0019011165713891387,-1.2862375115219038e-05,0.002217273460701108,0.00031648314325138927,0.0022477498278021812,-0.0003816550597548485,0.00039561665116743736,0.000867656992488546,0.000867656992488546,3.956166511674373e-06,8.67656992488546e-06,8.67656992488546e-06,0.005670505575835705,-0.0020790090784430504,320 +illusion_1L,sr,321,96.3,0.6745166778564453,-0.11256590485572815,0.597476601600647,-0.10815335810184479,1.3786944150924683,0.2977696657180786,0.0019000695319846272,-1.4971968084864784e-05,0.002213445957750082,0.0003144048969261348,0.0022491600830107927,-0.00038028109702281654,0.0012798502229016233,0.0005392823101667311,0.0005392823101667311,1.2798502229016233e-05,5.392823101667311e-06,5.392823101667311e-06,0.005723041016608477,-0.002100147772580385,321 +illusion_1L,sr,322,96.6,0.7247482538223267,-0.1686607301235199,0.5456682443618774,-0.33006760478019714,1.362518310546875,0.19454416632652283,0.0019004680216312408,-1.657283974054735e-05,0.0022123840171843767,0.0003144876682199538,0.0022515987511724234,-0.00037806088221259415,0.0017082664096567878,0.00047767120729995394,0.00047767120729995394,1.7082664096567878e-05,4.77671207299954e-06,4.77671207299954e-06,0.005777770187705755,-0.0019903185311704874,322 +illusion_1L,sr,323,96.9,0.7705973982810974,-0.22687095403671265,0.5223644375801086,-0.5165536403656006,1.3126147985458374,0.06701454520225525,0.0019026260124519467,-1.701497967587784e-05,0.0022146052215248346,0.0003171933349221945,0.0022553857415914536,-0.000375154719222337,0.001600391826480689,0.0007282707355944114,0.0007282707355944114,1.600391826480689e-05,7.282707355944114e-06,7.282707355944114e-06,0.005763606168329716,-0.0017554573714733124,323 +illusion_1L,sr,324,97.2,0.8160641193389893,-0.2821067273616791,0.5475413799285889,-0.6174260973930359,1.2218706607818604,-0.08018238842487335,0.0019042298663407564,-1.6774698451627046e-05,0.002217304427176714,0.0003225244290661067,0.0022576143965125084,-0.00037228252040222287,0.0021176328574662104,0.0004218013082429549,0.0004218013082429549,2.1176328574662106e-05,4.218013082429549e-06,4.218013082429549e-06,0.005690249614417553,-0.0014095163205638528,324 +illusion_1L,sr,325,97.5,0.8638821244239807,-0.3303098678588867,0.6083801984786987,-0.6385506987571716,1.0894224643707275,-0.2291732281446457,0.0019036855082958937,-1.5809851902304217e-05,0.002218325389549136,0.00033023665309883654,0.002256109844893217,-0.0003694213228300214,0.00218393672571518,0.0003497725088654931,0.0003497725088654931,2.18393672571518e-05,3.497725088654931e-06,3.497725088654931e-06,0.005629390478134155,-0.0009736909996718168,325 +illusion_1L,sr,326,97.8,0.914266049861908,-0.37101757526397705,0.6670032739639282,-0.6424970626831055,0.9380553960800171,-0.3445321321487427,0.0019021326443180442,-1.3666722225025296e-05,0.0022188371513038874,0.0003395032254047692,0.002252205042168498,-0.0003658789210021496,0.0018692981765753014,0.0004594678041297713,0.0004594678041297713,1.8692981765753014e-05,4.594678041297713e-06,4.594678041297713e-06,0.005584970116615295,-0.00047515766345895827,326 +illusion_1L,sr,327,98.1,0.9670326709747314,-0.4047854542732239,0.7077600955963135,-0.6587106585502625,0.8061472177505493,-0.3962302505970001,0.0019007440423592925,-1.101833549910225e-05,0.0022199423983693123,0.0003490835952106863,0.0022472499404102564,-0.00036141157033853233,0.0022601161864354152,-4.5236625257561586e-05,-4.5236625257561586e-05,2.2601161864354154e-05,-4.523662525756159e-07,-4.523662525756159e-07,0.005531984381377697,5.460584725369699e-05,327 +illusion_1L,sr,328,98.4,1.0222724676132202,-0.4319276511669159,0.7344077229499817,-0.6796072125434875,0.716218888759613,-0.3860260248184204,0.0018993375124409795,-7.956746230775025e-06,0.002221493050456047,0.0003581954224500805,0.0022414177656173706,-0.0003558610624168068,0.00219276200638421,-0.0002909972028811124,-0.0002909972028811124,2.19276200638421e-05,-2.909972028811124e-06,-2.909972028811124e-06,0.005518179386854172,0.0005818125791847706,328 +illusion_1L,sr,329,98.7,1.0802384614944458,-0.45221537351608276,0.7500306367874146,-0.6906543970108032,0.6613340973854065,-0.33850041031837463,0.0018987552030012012,-4.27734266850166e-06,0.0022244364954531193,0.0003661781665869057,0.0022360708098858595,-0.00034911904367618263,0.0017706394852226963,-0.00033867748356330996,-0.00033867748356330996,1.7706394852226964e-05,-3.3867748356330997e-06,-3.3867748356330997e-06,0.005577066447585821,0.0010725450702011585,329 +illusion_1L,sr,330,99.0,1.14091157913208,-0.464749813079834,0.7550296783447266,-0.6719793081283569,0.6239702701568604,-0.27297505736351013,0.0019004164496436715,-6.738388833582576e-07,0.002230342011898756,0.0003722806868609041,0.0022331743966788054,-0.00034160641371272504,0.001795100974081039,-0.0007611755532865834,-0.0007611755532865834,1.795100974081039e-05,-7.611755532865834e-06,-7.611755532865834e-06,0.005638485308736563,0.0014949759934097528,330 +illusion_1L,sr,331,99.3,1.2033988237380981,-0.46774816513061523,0.7492367029190063,-0.6042094230651855,0.5959369540214539,-0.19602715969085693,0.0019027304369956255,2.850851387847797e-06,0.002237339736893773,0.0003766599402297288,0.0022312328219413757,-0.0003340361872687936,0.0011956874884047012,-0.0007468520494075142,-0.0007468520494075142,1.1956874884047013e-05,-7.468520494075143e-06,-7.468520494075143e-06,0.005652999971061945,0.001821481972001493,331 +illusion_1L,sr,332,99.6,1.2649738788604736,-0.4582374095916748,0.7325108051300049,-0.48370280861854553,0.5806686282157898,-0.11139141023159027,0.0019035333534702659,6.601674613193609e-06,0.0022425006609410048,0.0003797850222326815,0.0022277687676250935,-0.0003270514716859907,0.0003081036960281367,-0.0005259344095308589,-0.0005259344095308589,3.081036960281367e-06,-5.2593440953085895e-06,-5.2593440953085895e-06,0.005672627128660679,0.002030503237619996,332 +illusion_1L,sr,333,99.9,1.3201733827590942,-0.4319626986980438,0.7035046815872192,-0.32380902767181396,0.5866600275039673,-0.027555547654628754,0.0019026875961571932,9.790065632842015e-06,0.002245413139462471,0.0003813814837485552,0.0022227666340768337,-0.0003213827731087804,0.00017444010402483008,-0.0008477133007939279,-0.0008477133007939279,1.7444010402483009e-06,-8.47713300793928e-06,-8.47713300793928e-06,0.005716722924262285,0.0021080211736261845,333 +illusion_1L,sr,334,100.2,1.3608341217041016,-0.38402342796325684,0.6600999236106873,-0.136161670088768,0.6181445717811584,0.044901423156261444,0.0019016839796677232,1.2426152352418285e-05,0.00224758661352098,0.00038149498868733644,0.002218087902292609,-0.00031719860271550715,-0.0004715816536334967,-0.0007556098568314469,-0.0007556098568314469,-4.715816536334967e-06,-7.556098568314469e-06,-7.556098568314469e-06,0.0057253409177064896,0.0020485445857048035,334 +illusion_1L,sr,335,100.5,1.378246784210205,-0.3107151687145233,0.6049227118492126,0.07558677345514297,0.666934609413147,0.10423068702220917,0.0019006627844646573,1.4811745131737553e-05,0.0022490606643259525,0.0003805221349466592,0.0022141241934150457,-0.000314832606818527,-0.0012875337812371483,-0.00048590669335993314,-0.00048590669335993314,-1.2875337812371483e-05,-4.859066933599332e-06,-4.859066933599332e-06,0.005700415000319481,0.001855533104389906,335 +illusion_1L,sr,336,100.8,1.3665854930877686,-0.21138328313827515,0.55110764503479,0.2981937527656555,0.7177199125289917,0.16001057624816895,0.0018996739527210593,1.6294481611112133e-05,0.002249922836199403,0.0003785974986385554,0.002211218001320958,-0.00031481627956964076,-0.0013288121821792911,-0.0007205988655297757,-0.0007205988655297757,-1.3288121821792912e-05,-7.205988655297757e-06,-7.205988655297757e-06,0.00570518197491765,0.0015412241918966174,336 +illusion_1L,sr,337,101.1,1.3220843076705933,-0.08766491711139679,0.5217822194099426,0.49326080083847046,0.7638905048370361,0.21811294555664062,0.0019003557972609997,1.69283666764386e-05,0.002251939382404089,0.00037591237924061716,0.002211368177086115,-0.0003171123389620334,-0.001709368231224577,-0.0006227376820563853,-0.0006227376820563853,-1.709368231224577e-05,-6.227376820563853e-06,-6.227376820563853e-06,0.005713063757866621,0.0011258659651502967,337 +illusion_1L,sr,338,101.4,1.2381412982940674,0.056700363755226135,0.5392759442329407,0.6086267828941345,0.8089730143547058,0.27417778968811035,0.0019024191424250603,1.6965375834843144e-05,0.0022547640837728977,0.0003729070886038244,0.0022143537644296885,-0.0003216890327166766,-0.002105277165218203,-0.0004207365758205281,-0.0004207365758205281,-2.105277165218203e-05,-4.207365758205281e-06,-4.207365758205281e-06,0.00565308379009366,0.0006364086293615401,338 +illusion_1L,sr,339,101.7,1.111638069152832,0.20685063302516937,0.5971733927726746,0.6380622982978821,0.8562960028648376,0.3235437870025635,0.0019036317244172096,1.592958506080322e-05,0.0022555897012352943,0.00036972304224036634,0.002217379165813327,-0.00032874950557015836,-0.0018819345296790663,-0.0005782001892148704,-0.0005782001892148704,-1.8819345296790662e-05,-5.782001892148704e-06,-5.782001892148704e-06,0.005567865911871195,0.00010473776637809351,339 +illusion_1L,sr,340,102.0,0.9609968066215515,0.329598069190979,0.6581123471260071,0.6411919593811035,0.906302809715271,0.36537250876426697,0.0019028481328859925,1.399402208335232e-05,0.002252851612865925,0.00036628288216888905,0.0022187517024576664,-0.0003376775130163878,-0.002011249771044374,-0.0003751830866618351,-0.0003751830866618351,-2.0112497710443737e-05,-3.751830866618351e-06,-3.751830866618351e-06,0.005537909455597401,-0.0004344300541561097,340 +illusion_1L,sr,341,102.3,0.8237915635108948,0.3920046091079712,0.7016218304634094,0.655596137046814,0.958763837814331,0.40019690990448,0.0019013893324881792,1.15851644295617e-05,0.0022481929045170546,0.0003621616051532328,0.002219896297901869,-0.000347224558936432,-0.0022529629967357467,4.235316469772266e-06,4.235316469772266e-06,-2.252962996735747e-05,4.235316469772266e-08,4.235316469772266e-08,0.005537074990570545,-0.000945847132243216,341 +illusion_1L,sr,342,102.6,0.7268960475921631,0.3901839554309845,0.7301897406578064,0.6765754222869873,1.0136733055114746,0.42838555574417114,0.0019001024775207043,8.399617399845738e-06,0.0022426354698836803,0.00035687224590219557,0.002221511211246252,-0.000356587755959481,-0.00192586255778493,4.520143170902782e-05,4.520143170902782e-05,-1.92586255778493e-05,4.520143170902782e-07,4.520143170902782e-07,0.005531030707061291,-0.0013960730284452438,342 +illusion_1L,sr,343,102.9,0.6675367951393127,0.3468712866306305,0.7473839521408081,0.6901788115501404,1.071216106414795,0.44979074597358704,0.0018987584626302123,4.840399924432859e-06,0.0022364563774317503,0.0003505194326862693,0.0022234569769352674,-0.00036492125946097076,-0.0019518807535364967,0.0004143149115986913,0.0004143149115986913,-1.9518807535364968e-05,4.143149115986913e-06,4.143149115986913e-06,0.00557838287204504,-0.0017556919483467937,343 +illusion_1L,sr,344,103.2,0.6282579302787781,0.2834378778934479,0.7538772821426392,0.6774054169654846,1.1314418315887451,0.46363022923469543,0.0018986137583851814,1.3936049754192936e-06,0.0022313734516501427,0.000343375897500664,0.002227091696113348,-0.00037140899803489447,-0.0018794093340116314,0.0007569913124074951,0.0007569913124074951,-1.8794093340116313e-05,7.569913124074951e-06,7.569913124074951e-06,0.0056895059533417225,-0.0020012580789625645,344 +illusion_1L,sr,345,103.5,0.5988453030586243,0.20806802809238434,0.7495566606521606,0.6179096698760986,1.19365656375885,0.4682532846927643,0.0019005424110218883,-2.319269924555556e-06,0.0022288120817393064,0.00033564012846909463,0.0022334440145641565,-0.00037602984230034053,-0.0010334489848943815,0.0005560701057168108,0.0005560701057168108,-1.0334489848943815e-05,5.560701057168108e-06,5.560701057168108e-06,0.005760743748396635,-0.002116837538778782,345 +illusion_1L,sr,346,103.8,0.5812575817108154,0.12431302666664124,0.7344525456428528,0.5049284100532532,1.255556583404541,0.4608798623085022,0.0019027203088626266,-6.045156169420807e-06,0.002226951764896512,0.0003282667021267116,0.0022402331233024597,-0.00037905428325757384,-0.000557761905721427,0.0006387765055850072,0.0006387765055850072,-5.57761905721427e-06,6.387765055850072e-06,6.387765055850072e-06,0.005753485951572657,-0.0020950448233634233,346 +illusion_1L,sr,347,104.1,0.5837238430976868,0.039817266166210175,0.7075517773628235,0.35016363859176636,1.3121733665466309,0.43745315074920654,0.0019032013369724154,-9.13397889235057e-06,0.002223517280071974,0.00032224954338744283,0.002244821283966303,-0.0003806916356552392,-0.0003502884042314962,0.0009071160603276695,0.0009071160603276695,-3.502884042314962e-06,9.071160603276695e-06,9.071160603276695e-06,0.005740967579185963,-0.0019375038100406528,347 +illusion_1L,sr,348,104.4,0.6117074489593506,-0.03463631868362427,0.6665667295455933,0.16662725806236267,1.3556599617004395,0.3930968642234802,0.001902313786558807,-1.2050789337081369e-05,0.002219053450971842,0.00031777360709384084,0.0022473749704658985,-0.000381211080821231,0.0005999585238885968,0.0005951041671538558,0.0005951041671538558,5.999585238885969e-06,5.951041671538558e-06,5.951041671538558e-06,0.005731895100325346,-0.0016547086415812373,348 +illusion_1L,sr,349,104.7,0.6589969992637634,-0.09538329392671585,0.6128329038619995,-0.041543710976839066,1.3771471977233887,0.32381922006607056,0.0019013193668797612,-1.4456209100899287e-05,0.0022150769364088774,0.00031521086930297315,0.002249056240543723,-0.0003805319720413536,0.0009873363141326315,0.0006506821354267667,0.0006506821354267667,9.873363141326315e-06,6.506821354267667e-06,6.506821354267667e-06,0.00566871277987957,-0.0012652967125177383,349 +illusion_1L,sr,350,105.0,0.7102838158607483,-0.15097296237945557,0.5575584173202515,-0.264027863740921,1.3702260255813599,0.2285371720790863,0.001900176634080708,-1.592453736520838e-05,0.0022118014749139547,0.0003149534168187529,0.0022498236503452063,-0.00037886443897150457,0.0011886313053000898,0.0007776673963950201,0.0007776673963950201,1.1886313053000899e-05,7.776673963950202e-06,7.776673963950202e-06,0.005592959467321634,-0.0007947873091325164,350 +illusion_1L,sr,351,105.3,0.756976306438446,-0.20883384346961975,0.5225998163223267,-0.466763973236084,1.3312225341796875,0.10872302949428558,0.0018993107369169593,-1.6882881027413532e-05,0.0022099025081843138,0.0003169426054228097,0.002250079996883869,-0.0003766026929952204,0.0018496411277634935,0.00048561295296722587,0.00048561295296722587,1.8496411277634935e-05,4.8561295296722585e-06,4.8561295296722585e-06,0.0055853561498224735,-0.000273875892162323,351 +illusion_1L,sr,352,105.6,0.8017571568489075,-0.26565447449684143,0.5319157838821411,-0.5971173048019409,1.2541470527648926,-0.032530881464481354,0.0019002520712092519,-1.698561209195759e-05,0.002211229410022497,0.00032113888300955296,0.0022515777964144945,-0.0003736712096724659,0.0018395997438737167,0.0005981779953251679,0.0005981779953251679,1.8395997438737168e-05,5.9817799532516785e-06,5.9817799532516785e-06,0.0055999187752604485,0.000263598543824628,352 +illusion_1L,sr,353,105.9,0.8484962582588196,-0.316222608089447,0.5855804681777954,-0.6370264887809753,1.1341423988342285,-0.1831388622522354,0.0019022184424102306,-1.596586844243575e-05,0.0022149011492729187,0.00032757228473201394,0.0022533966694027185,-0.0003702413523569703,0.0017835934302848216,0.0006479682667015277,0.0006479682667015277,1.7835934302848217e-05,6.479682667015277e-06,6.479682667015277e-06,0.005566527601331472,0.000782874645665288,353 +illusion_1L,sr,354,106.2,0.8980324268341064,-0.35923799872398376,0.6483875513076782,-0.6402705311775208,0.9852518439292908,-0.3126796782016754,0.0019030827097594738,-1.43981969813467e-05,0.0022181919775903225,0.00033581856405362487,0.0022528909612447023,-0.0003667192650027573,0.0021966201246726366,0.0002518787291564857,0.0002518787291564857,2.1966201246726365e-05,2.518787291564857e-06,2.518787291564857e-06,0.005543616600334644,0.0012505297781899571,354 +illusion_1L,sr,355,106.5,0.9501277804374695,-0.3951684534549713,0.6948891282081604,-0.6525857448577881,0.8433313965797424,-0.3861018121242523,0.0019021324114874005,-1.1977142094110604e-05,0.002219920977950096,0.0003452994569670409,0.0022490916308015585,-0.00036269539850763977,0.0019656817159146127,0.00023762331185044064,0.00023762331185044064,1.9656817159146128e-05,2.3762331185044063e-06,2.3762331185044063e-06,0.0055874851532280445,0.0016366330673918128,355 +illusion_1L,sr,356,106.8,1.0047051906585693,-0.4244331121444702,0.7256125807762146,-0.6733292937278748,0.7391448020935059,-0.3936663568019867,0.0019007597584277391,-8.794217137619853e-06,0.0022215619683265686,0.00035485572880133986,0.002243797294795513,-0.0003576900635380298,0.0019148957843700444,5.550408687292341e-06,5.550408687292341e-06,1.9148957843700443e-05,5.550408687292341e-08,5.550408687292341e-08,0.005633705295622349,0.0019166492857038975,356 +illusion_1L,sr,357,107.1,1.0618722438812256,-0.4469836950302124,0.744581937789917,-0.6891501545906067,0.674665629863739,-0.3553486168384552,0.0018995215650647879,-5.522663741430733e-06,0.0022235368378460407,0.0003633907763287425,0.0022377956192940474,-0.0003517497971188277,0.002151973048441943,-0.0005082209914466038,-0.0005082209914466038,2.151973048441943e-05,-5.082209914466039e-06,-5.082209914466039e-06,0.005650329869240522,0.002072976902127266,357 +illusion_1L,sr,358,107.4,1.1216859817504883,-0.4621414840221405,0.7527554035186768,-0.6819806694984436,0.6331238150596619,-0.2942764163017273,0.0018983330810442567,-1.921034709084779e-06,0.002225870033726096,0.0003704339324031025,0.0022315094247460365,-0.0003448811185080558,0.0016210759170025776,-0.0005043502567385547,-0.0005043502567385547,1.6210759170025776e-05,-5.043502567385546e-06,-5.043502567385546e-06,0.005705440882593393,0.002096022479236126,358 +illusion_1L,sr,359,107.7,1.1836121082305908,-0.46839603781700134,0.7500529885292053,-0.6308808922767639,0.6022994518280029,-0.22056373953819275,0.001898644375614822,1.8295571635462693e-06,0.0022301445715129375,0.0003755092038773,0.002226922893896699,-0.0003373430809006095,0.0011845054740249024,-0.0006016542113923122,-0.0006016542113923122,1.1845054740249025e-05,-6.016542113923122e-06,-6.016542113923122e-06,0.005788230337202549,0.0019847527146339417,359 +illusion_1L,sr,360,108.0,1.245697021484375,-0.4631681740283966,0.7365784645080566,-0.5260391235351562,0.582403302192688,-0.1378334015607834,0.0019007931696251035,5.337022230378352e-06,0.0022367630153894424,0.0003785816952586174,0.002224844181910157,-0.0003298217779956758,0.0008347425155020129,-0.0007749990797655264,-0.0007749990797655264,8.347425155020129e-06,-7.749990797655265e-06,-7.749990797655265e-06,0.00579201802611351,0.001746693509630859,360 +illusion_1L,sr,361,108.3,1.303529143333435,-0.4425992965698242,0.7117100358009338,-0.376937597990036,0.5812265276908875,-0.05284739285707474,0.0019027725793421268,8.66944083099952e-06,0.0022431800607591867,0.0003802295250352472,0.0022231361363083124,-0.0003232246090192348,0.00013274791733608286,-0.0006796374837418854,-0.0006796374837418854,1.3274791733608286e-06,-6.796374837418854e-06,-6.796374837418854e-06,0.005716915708035231,0.001397387241013348,361 +illusion_1L,sr,362,108.6,1.3496936559677124,-0.4018753170967102,0.6731938123703003,-0.1977037489414215,0.6053329706192017,0.023645656183362007,0.0019029235700145364,1.1695075045281556e-05,0.0022470797412097454,0.0003808698966167867,0.002219861838966608,-0.0003183272201567888,-0.00040816077100361975,-0.0006756023342706814,-0.0006756023342706814,-4.081607710036197e-06,-6.756023342706815e-06,-6.756023342706815e-06,0.00565684586763382,0.0009593489812687039,362 +illusion_1L,sr,363,108.9,1.3752555847167969,-0.33675485849380493,0.6212287545204163,0.0065691303461790085,0.6506304144859314,0.08613811433315277,0.001901971292681992,1.3968222447147127e-05,0.002249112818390131,0.000380398822017014,0.0022160052321851254,-0.0003155710001010448,-0.0007137699302745791,-0.0007993349110675779,-0.0007993349110675779,-7.137699302745791e-06,-7.993349110675779e-06,-7.993349110675779e-06,0.005609786603599787,0.0004605941940099001,363 +illusion_1L,sr,364,109.2,1.3732256889343262,-0.24567176401615143,0.5650839805603027,0.22808937728405,0.7023029923439026,0.14173492789268494,0.001900910516269505,1.575738497194834e-05,0.0022501193452626467,0.0003791028866544366,0.002212706720456481,-0.0003149313270114362,-0.0013999343843580855,-0.0005787463345103619,-0.0005787463345103619,-1.3999343843580855e-05,-5.787463345103619e-06,-5.787463345103619e-06,0.005531110800802708,-6.716222560498863e-05,364 +illusion_1L,sr,365,109.5,1.3397712707519531,-0.12987451255321503,0.5250424146652222,0.4373047351837158,0.7497451305389404,0.19921666383743286,0.0018996504368260503,1.685731331235729e-05,0.0022500387858599424,0.00037711503682658076,0.002210153266787529,-0.0003166424576193094,-0.0016380221628239239,-0.0006125139240768726,-0.0006125139240768726,-1.6380221628239238e-05,-6.1251392407687265e-06,-6.1251392407687265e-06,0.005488442722707987,-0.0005905209691263735,365 +illusion_1L,sr,366,109.8,1.2695894241333008,0.007971095852553844,0.5259769558906555,0.5825425386428833,0.7944077849388123,0.2566617429256439,0.00189899280667305,1.6912501450860873e-05,0.0022497293539345264,0.0003744174900930375,0.0022093425504863262,-0.00032068256405182183,-0.0016257276332586543,-0.0007422377665490497,-0.0007422377665490497,-1.6257276332586544e-05,-7.422377665490497e-06,-7.422377665490497e-06,0.0055447774939239025,-0.0010764988837763667,366 +illusion_1L,sr,367,110.1,1.1565943956375122,0.15824753046035767,0.5741196870803833,0.6349853277206421,0.840569257736206,0.3084493577480316,0.001900204224511981,1.622114359633997e-05,0.0022506772074848413,0.0003711390309035778,0.0022117963526397943,-0.0003265903505962342,-0.001969616193895865,-0.000512153841494483,-0.000512153841494483,-1.969616193895865e-05,-5.12153841494483e-06,-5.12153841494483e-06,0.005618898663669825,-0.0014945860020816326,367 +illusion_1L,sr,368,110.4,1.0105276107788086,0.2936929762363434,0.6380339860916138,0.6396446228027344,0.889541745185852,0.3527047336101532,0.0019020485924556851,1.4769921108381823e-05,0.002251461846753955,0.0003673998871818185,0.002216068562120199,-0.00033426316804252565,-0.002021533432414409,-0.0004002685400451948,-0.0004002685400451948,-2.021533432414409e-05,-4.002685400451948e-06,-4.002685400451948e-06,0.0056407577358186245,-0.0018186323577538133,368 +illusion_1L,sr,369,110.7,0.8647249341011047,0.37808114290237427,0.6876400709152222,0.6496555805206299,0.9411972165107727,0.3897750675678253,0.001902577467262745,1.230395082529867e-05,0.0022496741730719805,0.00036321926745586097,0.002219509333372116,-0.00034339394187554717,-0.0018323665034778692,-0.0003701660316736341,-0.0003701660316736341,-1.832366503477869e-05,-3.701660316736341e-06,-3.701660316736341e-06,0.005669464357197285,-0.00202845293097198,369 +illusion_1L,sr,370,111.0,0.7530975341796875,0.3959263861179352,0.7206602692604065,0.6698182225227356,0.9953941702842712,0.42014622688293457,0.0019015056313946843,9.413627594767604e-06,0.002245016163215041,0.0003585045924410224,0.002221553586423397,-0.00035289968946017325,-0.002148194471622022,0.00011863529143841395,0.00011863529143841395,-2.1481944716220217e-05,1.1863529143841395e-06,1.1863529143841395e-06,0.005728682037442923,-0.002111055189743638,370 +illusion_1L,sr,371,111.3,0.6828398704528809,0.36348477005958557,0.7415145635604858,0.6874785423278809,1.0521974563598633,0.44386017322540283,0.0019002160988748074,6.154873517516535e-06,0.0022392154205590487,0.00035283726174384356,0.0022235598880797625,-0.0003617416659835726,-0.0019940549641648854,0.000331471567480552,0.000331471567480552,-1.9940549641648854e-05,3.31471567480552e-06,3.31471567480552e-06,0.005740906111896038,-0.0020614201202988625,371 +illusion_1L,sr,372,111.6,0.6386239528656006,0.3051512539386749,0.7514905333518982,0.6855380535125732,1.1116304397583008,0.4603397250175476,0.0018990242388099432,2.4476373710058397e-06,0.0022329543717205524,0.00034619809594005346,0.002225804841145873,-0.0003692223981488496,-0.0015915390842317287,0.0004143567276815585,0.0004143567276815585,-1.5915390842317287e-05,4.143567276815585e-06,4.143567276815585e-06,0.00570477731525898,-0.0018827876774594188,372 +illusion_1L,sr,373,111.9,0.6063652634620667,0.2332455962896347,0.7505331635475159,0.642859160900116,1.173275351524353,0.46822941303253174,0.0018980765016749501,-1.1067145351262297e-06,0.0022268621250987053,0.0003390166093595326,0.00222853384912014,-0.00037475829594768584,-0.0014765517347564887,0.0007441557207024229,0.0007441557207024229,-1.4765517347564887e-05,7.441557207024229e-06,7.441557207024229e-06,0.005704289767891169,-0.0015864415327087045,373 +illusion_1L,sr,374,112.2,0.5842912197113037,0.15174241364002228,0.738738477230072,0.5467444062232971,1.2354754209518433,0.4651415944099426,0.0018988529918715358,-4.67149857286131e-06,0.0022229738533496857,0.00033153448021039367,0.0022333806846290827,-0.00037825177423655987,-0.000758015041774106,0.0006426035099415955,0.0006426035099415955,-7.5801504177410605e-06,6.426035099415955e-06,6.426035099415955e-06,0.005719874519854784,-0.0011909975437447429,374 +illusion_1L,sr,375,112.5,0.5794612765312195,0.06654052436351776,0.7158021330833435,0.40391552448272705,1.294328212738037,0.4474169909954071,0.001901124371215701,-8.199050171242561e-06,0.002221430651843548,0.00032450168509967625,0.002240058733150363,-0.0003800196573138237,-0.0001396939528303144,0.0006110256886618102,0.0006110256886618102,-1.3969395283031441e-06,6.110256886618101e-06,6.110256886618101e-06,0.005665991455316544,-0.0007212489726953208,375 +illusion_1L,sr,376,112.8,0.599373459815979,-0.011886940337717533,0.6797143816947937,0.22921127080917358,1.3429663181304932,0.4103509783744812,0.0019028212409466505,-1.1114547305624e-05,0.0022199188824743032,0.0003190857532899827,0.002245887415483594,-0.00038050158764235675,8.618635085826803e-05,0.000844855377177673,0.000844855377177673,8.618635085826804e-07,8.44855377177673e-06,8.44855377177673e-06,0.005579077173024416,-0.00020663297618739307,376 +illusion_1L,sr,377,113.1,0.64211505651474,-0.07639662176370621,0.6297596096992493,0.029086939990520477,1.3725180625915527,0.3494837284088135,0.0019026297377422452,-1.3545653928304091e-05,0.0022169025614857674,0.00031584411044605076,0.002248987555503845,-0.0003801941347774118,0.0007712136797901962,0.0006958745849131691,0.0006958745849131691,7.712136797901962e-06,6.958745849131691e-06,6.958745849131691e-06,0.0055456943809986115,0.00032058797660283744,377 +illusion_1L,sr,378,113.4,0.693869948387146,-0.13227224349975586,0.5732936859130859,-0.19066908955574036,1.3754528760910034,0.2627347409725189,0.0019015832804143429,-1.556579809403047e-05,0.002213663188740611,0.00031483452767133713,0.002250326331704855,-0.00037918746238574386,0.0013383884256519644,0.0005744203629290852,0.0005744203629290852,1.3383884256519644e-05,5.744203629290852e-06,5.744203629290852e-06,0.005538465455174446,0.0008273206767626107,378 +illusion_1L,sr,379,113.7,0.7422155141830444,-0.18927031755447388,0.5288264155387878,-0.40504351258277893,1.347610354423523,0.15105953812599182,0.0019004460191354156,-1.661675560171716e-05,0.0022110750433057547,0.000316279852995649,0.0022505302913486958,-0.0003773801727220416,0.00134904853995408,0.0007898448219384563,0.0007898448219384563,1.34904853995408e-05,7.898448219384562e-06,7.898448219384562e-06,0.005518500693142414,0.0012816928792744875,379 +illusion_1L,sr,380,114.0,0.7869545221328735,-0.24718421697616577,0.5214368104934692,-0.5646433234214783,1.2843005657196045,0.016835883259773254,0.0018991269171237946,-1.6865036741364747e-05,0.002209295053035021,0.0003200303472112864,0.0022495898883789778,-0.0003749999450519681,0.0017293898412558129,0.00064452224833942,0.00064452224833942,1.729389841255813e-05,6.4452224833942e-06,6.4452224833942e-06,0.005552514921873808,0.0016550382133573294,380 +illusion_1L,sr,381,114.3,0.832607090473175,-0.3001904785633087,0.5629011392593384,-0.6315379738807678,1.1787389516830444,-0.1324155181646347,0.0018987886141985655,-1.644949588808231e-05,0.002209656871855259,0.0003257018106523901,0.0022487803362309933,-0.0003720206150319427,0.0019836120784919656,0.000497308460392698,0.000497308460392698,1.9836120784919655e-05,4.97308460392698e-06,4.97308460392698e-06,0.005664129741489887,0.0019236936932429671,381 +illusion_1L,sr,382,114.6,0.8809749484062195,-0.3457380533218384,0.6270083785057068,-0.6393442749977112,1.036562442779541,-0.2728275656700134,0.001900218310765922,-1.4975462363508996e-05,0.0022131362929940224,0.00033303696545772254,0.0022491218987852335,-0.00036824928247369826,0.0017716775828734987,0.0005970382841038978,0.0005970382841038978,1.7716775828734987e-05,5.970382841038978e-06,5.970382841038978e-06,0.005749957635998726,0.0020704984199255705,382 +illusion_1L,sr,383,114.9,0.9321020245552063,-0.38399645686149597,0.679773211479187,-0.6469979286193848,0.8878237009048462,-0.3679637908935547,0.0019019184401258826,-1.2711643648799509e-05,0.002217827597633004,0.0003416482068132609,0.002248891396448016,-0.0003639291098807007,0.0019489962339955742,0.00031273275443665163,0.00031273275443665163,1.9489962339955742e-05,3.1273275443665163e-06,3.1273275443665163e-06,0.005759336985647678,0.0020859010983258486,383 +illusion_1L,sr,384,115.2,0.9858559370040894,-0.41550499200820923,0.7152683138847351,-0.6662048697471619,0.7687552571296692,-0.3968994915485382,0.0019020905019715428,-1.000717566057574e-05,0.002221321454271674,0.00035090313758701086,0.002245927695184946,-0.00035922537790611386,0.002127536851536674,-5.9495373191616185e-05,-5.9495373191616185e-05,2.127536851536674e-05,-5.949537319161618e-07,-5.949537319161618e-07,0.005756254307925701,0.0019686000887304544,384 +illusion_1L,sr,385,115.5,1.0422568321228027,-0.44038745760917664,0.7380926012992859,-0.6852946281433105,0.6920226812362671,-0.37127742171287537,0.0019009605748578906,-6.661495717708021e-06,0.002223627408966422,0.00036000096588395536,0.00224061356857419,-0.00035372230922803283,0.0018131901458100334,-0.0001418148749071195,-0.0001418148749071195,1.8131901458100335e-05,-1.418148749071195e-06,-1.418148749071195e-06,0.005749706644564867,0.0017256771679967642,385 +illusion_1L,sr,386,115.8,1.101326823234558,-0.4581816494464874,0.7499889135360718,-0.6880989670753479,0.6446266174316406,-0.31611397862434387,0.0018997490406036377,-3.043046717721154e-06,0.002225899836048484,0.00036783170071430504,0.0022344994358718395,-0.00034739161492325366,0.0017608857876896566,-0.0004747961134929733,-0.0004747961134929733,1.7608857876896567e-05,-4.747961134929733e-06,-4.747961134929733e-06,0.005683912429958582,0.0013722052099183202,386 +illusion_1L,sr,387,116.1,1.1626986265182495,-0.467684268951416,0.7509233355522156,-0.6536620855331421,0.610866129398346,-0.2461356371641159,0.0018986244685947895,3.8355636888809386e-07,0.0022283680737018585,0.00037378876004368067,0.002228182042017579,-0.00034047671942971647,0.0015716847598456769,-0.0007438382219661713,-0.0007438382219661713,1.571684759845677e-05,-7.438382219661713e-06,-7.438382219661713e-06,0.005598609335720539,0.0009303490514867008,387 +illusion_1L,sr,388,116.4,1.2249748706817627,-0.4666910171508789,0.7409352660179138,-0.5666952729225159,0.5867863893508911,-0.16599664092063904,0.001898022717796266,4.13957923228736e-06,0.0022315257228910923,0.00037788337795063853,0.0022225806023925543,-0.00033313228050246835,0.0006219462013121008,-0.00046941984033509903,-0.00046941984033509903,6.2194620131210085e-06,-4.69419840335099e-06,-4.69419840335099e-06,0.0055789402686059475,0.000428010243922472,388 +illusion_1L,sr,389,116.7,1.28469979763031,-0.4517618715763092,0.7199325561523438,-0.43074533343315125,0.5784157514572144,-0.08081980794668198,0.0018992179539054632,7.651176929357462e-06,0.0022367986384779215,0.0003799375263042748,0.002219544257968664,-0.0003260529483668506,0.0003765338686101648,-0.0007150274314453647,-0.0007150274314453647,3.765338686101648e-06,-7.150274314453647e-06,-7.150274314453647e-06,0.005592026747763157,-0.00010290697537129745,389 +illusion_1L,sr,390,117.0,1.3355647325515747,-0.4183299243450165,0.6862215399742126,-0.260814905166626,0.5938930511474609,-0.0005825180560350418,0.0019014839781448245,1.0544566976022907e-05,0.002243282273411751,0.00038040123763494194,0.0022185149136930704,-0.0003201452491339296,3.733714984694228e-05,-0.0008692767685672763,-0.0008692767685672763,3.733714984694228e-07,-8.692767685672763e-06,-8.692767685672763e-06,0.0055693225003778934,-0.0006285032723098993,390 +illusion_1L,sr,391,117.3,1.3689342737197876,-0.3617592453956604,0.6384651064872742,-0.06501170247793198,0.6335196495056152,0.06620132178068161,0.001902799354866147,1.3238151041150559e-05,0.0022482932545244694,0.00038007888360880315,0.0022171929012984037,-0.00031618273351341486,-0.000850899834019838,-0.0005783020332489341,-0.0005783020332489341,-8.50899834019838e-06,-5.783020332489342e-06,-5.783020332489342e-06,0.005552446935325861,-0.001115041202865541,391 +illusion_1L,sr,392,117.6,1.3768072128295898,-0.2794699966907501,0.5821870565414429,0.15224869549274445,0.6849467754364014,0.1226864755153656,0.0019022914348170161,1.5268995412043296e-05,0.0022504867520183325,0.0003791494818869978,0.0022145358379930258,-0.0003147678216919303,-0.0010739513973868561,-0.0007221193498810688,-0.0007221193498810688,-1.0739513973868562e-05,-7.221193498810688e-06,-7.221193498810688e-06,0.005589765962213278,-0.0015311157330870628,392 +illusion_1L,sr,393,117.9,1.3545715808868408,-0.17203737795352936,0.5339956879615784,0.3703731894493103,0.7342787981033325,0.17914539575576782,0.0019011396216228604,1.638915819057729e-05,0.002251000376418233,0.000377554475562647,0.0022119341883808374,-0.0003158787149004638,-0.001311315332097572,-0.0007830324026162558,-0.0007830324026162558,-1.311315332097572e-05,-7.830324026162558e-06,-7.830324026162558e-06,0.00562874274328351,-0.0018496968550607562,393 +illusion_1L,sr,394,118.2,1.2980477809906006,-0.04163584113121033,0.5185816884040833,0.5433116555213928,0.7793247699737549,0.23733405768871307,0.0018999131862074137,1.698586311249528e-05,0.0022503137588500977,0.00037547049578279257,0.002210074570029974,-0.000319231825415045,-0.0018439337198596847,-0.0005407626586263099,-0.0005407626586263099,-1.843933719859685e-05,-5.4076265862631e-06,-5.4076265862631e-06,0.005641409661620855,-0.0020499122329056263,394 +illusion_1L,sr,395,118.5,1.2002192735671997,0.10589375346899033,0.5523593425750732,0.6261382102966309,0.824578046798706,0.29151418805122375,0.0018986663781106472,1.657526081544347e-05,0.002248598262667656,0.00037274693022482097,0.002209177939221263,-0.000324756110785529,-0.0016833448291030328,-0.0007168427262955537,-0.0007168427262955537,-1.6833448291030328e-05,-7.168427262955538e-06,-7.168427262955538e-06,0.005687114782631397,-0.0021184461656957865,395 +illusion_1L,sr,396,118.8,1.063024878501892,0.250169962644577,0.6155343651771545,0.6391672492027283,0.8723744750022888,0.33839187026023865,0.0018986942013725638,1.5191457350738347e-05,0.002247343771159649,0.00036922068102285266,0.002210716251283884,-0.000331917661242187,-0.001783158817925984,-0.0006030205342884148,-0.0006030205342884148,-1.783158817925984e-05,-6.030205342884149e-06,-6.030205342884149e-06,0.005764052737504244,-0.0020504610147327185,396 +illusion_1L,sr,397,119.1,0.9125121831893921,0.35551780462265015,0.6713826060295105,0.644628643989563,0.922924816608429,0.37788626551628113,0.0019002872286364436,1.3241195119917393e-05,0.002247043652459979,0.00036496861139312387,0.00221504014916718,-0.0003401155408937484,-0.0020893376349683385,-0.0002401678888536221,-0.0002401678888536221,-2.0893376349683386e-05,-2.4016788885362213e-06,-2.4016788885362213e-06,0.005783763248473406,-0.001849970780313015,397 +illusion_1L,sr,398,119.4,0.7862507700920105,0.3961411416530609,0.7094956636428833,0.662479043006897,0.9761595726013184,0.4105560779571533,0.0019017630256712437,1.0493672562006395e-05,0.0022457928862422705,0.00036004590219818056,0.0022199770901352167,-0.0003490855742711574,-0.0018925157665916105,-0.0001602973041829603,-0.0001602973041829603,-1.8925157665916106e-05,-1.602973041829603e-06,-1.602973041829603e-06,0.005733401048928499,-0.0015296366764232516,398 +illusion_1L,sr,399,119.7,0.7024088501930237,0.37832745909690857,0.7343190312385559,0.682573676109314,1.0320994853973389,0.4366133511066437,0.0019016176229342818,7.207729595393175e-06,0.0022418301086872816,0.0003545852086972445,0.0022234313655644655,-0.0003581459750421345,-0.0019135101303349724,0.00015706849365920011,0.00015706849365920011,-1.9135101303349724e-05,1.5706849365920011e-06,1.5706849365920011e-06,0.005679980851709843,-0.001109990873374045,399 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_long.csv new file mode 100644 index 0000000..dd80504 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,target,0,0.0,velocity,upper_ux,0.6983729004859924 +illusion_1L,target,0,0.0,velocity,upper_uy,-0.14126229286193848 +illusion_1L,target,0,0.0,velocity,center_ux,0.8304986953735352 +illusion_1L,target,0,0.0,velocity,center_uy,-0.18635345995426178 +illusion_1L,target,0,0.0,velocity,lower_ux,1.3885672092437744 +illusion_1L,target,0,0.0,velocity,lower_uy,0.08043750375509262 +illusion_1L,target,1,0.3,velocity,upper_ux,0.7547661662101746 +illusion_1L,target,1,0.3,velocity,upper_uy,-0.21784400939941406 +illusion_1L,target,1,0.3,velocity,center_ux,0.8412449359893799 +illusion_1L,target,1,0.3,velocity,center_uy,-0.47263026237487793 +illusion_1L,target,1,0.3,velocity,lower_ux,1.2828494310379028 +illusion_1L,target,1,0.3,velocity,lower_uy,-0.19510701298713684 +illusion_1L,target,2,0.6,velocity,upper_ux,0.8216198086738586 +illusion_1L,target,2,0.6,velocity,upper_uy,-0.2667813003063202 +illusion_1L,target,2,0.6,velocity,center_ux,0.8742783665657043 +illusion_1L,target,2,0.6,velocity,center_uy,-0.6145644783973694 +illusion_1L,target,2,0.6,velocity,lower_ux,1.1820602416992188 +illusion_1L,target,2,0.6,velocity,lower_uy,-0.3631305992603302 +illusion_1L,target,3,0.9,velocity,upper_ux,0.885174572467804 +illusion_1L,target,3,0.9,velocity,upper_uy,-0.30478572845458984 +illusion_1L,target,3,0.9,velocity,center_ux,0.9134999513626099 +illusion_1L,target,3,0.9,velocity,center_uy,-0.6290751695632935 +illusion_1L,target,3,0.9,velocity,lower_ux,1.105286717414856 +illusion_1L,target,3,0.9,velocity,lower_uy,-0.4192345142364502 +illusion_1L,target,4,1.2,velocity,upper_ux,0.9445289373397827 +illusion_1L,target,4,1.2,velocity,upper_uy,-0.33607423305511475 +illusion_1L,target,4,1.2,velocity,center_ux,0.9457786083221436 +illusion_1L,target,4,1.2,velocity,center_uy,-0.6107500195503235 +illusion_1L,target,4,1.2,velocity,lower_ux,1.0464181900024414 +illusion_1L,target,4,1.2,velocity,lower_uy,-0.4230431616306305 +illusion_1L,target,5,1.5,velocity,upper_ux,1.001407504081726 +illusion_1L,target,5,1.5,velocity,upper_uy,-0.36231234669685364 +illusion_1L,target,5,1.5,velocity,center_ux,0.9683066010475159 +illusion_1L,target,5,1.5,velocity,center_uy,-0.6061965227127075 +illusion_1L,target,5,1.5,velocity,lower_ux,0.9942237138748169 +illusion_1L,target,5,1.5,velocity,lower_uy,-0.4159103035926819 +illusion_1L,target,6,1.8,velocity,upper_ux,1.058304786682129 +illusion_1L,target,6,1.8,velocity,upper_uy,-0.3853265047073364 +illusion_1L,target,6,1.8,velocity,center_ux,0.9835226535797119 +illusion_1L,target,6,1.8,velocity,center_uy,-0.6183878779411316 +illusion_1L,target,6,1.8,velocity,lower_ux,0.9419796466827393 +illusion_1L,target,6,1.8,velocity,lower_uy,-0.405977338552475 +illusion_1L,target,7,2.1,velocity,upper_ux,1.1181925535202026 +illusion_1L,target,7,2.1,velocity,upper_uy,-0.4062759578227997 +illusion_1L,target,7,2.1,velocity,center_ux,0.992266833782196 +illusion_1L,target,7,2.1,velocity,center_uy,-0.6435707211494446 +illusion_1L,target,7,2.1,velocity,lower_ux,0.886464536190033 +illusion_1L,target,7,2.1,velocity,lower_uy,-0.3866558372974396 +illusion_1L,target,8,2.4,velocity,upper_ux,1.1841031312942505 +illusion_1L,target,8,2.4,velocity,upper_uy,-0.4253025949001312 +illusion_1L,target,8,2.4,velocity,center_ux,0.9906624555587769 +illusion_1L,target,8,2.4,velocity,center_uy,-0.6695712804794312 +illusion_1L,target,8,2.4,velocity,lower_ux,0.826428234577179 +illusion_1L,target,8,2.4,velocity,lower_uy,-0.34652939438819885 +illusion_1L,target,9,2.7,velocity,upper_ux,1.2597155570983887 +illusion_1L,target,9,2.7,velocity,upper_uy,-0.4405805468559265 +illusion_1L,target,9,2.7,velocity,center_ux,0.9696959257125854 +illusion_1L,target,9,2.7,velocity,center_uy,-0.6582907438278198 +illusion_1L,target,9,2.7,velocity,lower_ux,0.7648876905441284 +illusion_1L,target,9,2.7,velocity,lower_uy,-0.2738701105117798 +illusion_1L,target,10,3.0,velocity,upper_ux,1.345876932144165 +illusion_1L,target,10,3.0,velocity,upper_uy,-0.4419216811656952 +illusion_1L,target,10,3.0,velocity,center_ux,0.9242352247238159 +illusion_1L,target,10,3.0,velocity,center_uy,-0.5434997081756592 +illusion_1L,target,10,3.0,velocity,lower_ux,0.7109246253967285 +illusion_1L,target,10,3.0,velocity,lower_uy,-0.16415415704250336 +illusion_1L,target,11,3.3,velocity,upper_ux,1.4201083183288574 +illusion_1L,target,11,3.3,velocity,upper_uy,-0.38489678502082825 +illusion_1L,target,11,3.3,velocity,center_ux,0.8703800439834595 +illusion_1L,target,11,3.3,velocity,center_uy,-0.2892504930496216 +illusion_1L,target,11,3.3,velocity,lower_ux,0.679294764995575 +illusion_1L,target,11,3.3,velocity,lower_uy,-0.02926556020975113 +illusion_1L,target,12,3.6,velocity,upper_ux,1.417494535446167 +illusion_1L,target,12,3.6,velocity,upper_uy,-0.19122983515262604 +illusion_1L,target,12,3.6,velocity,center_ux,0.8357431292533875 +illusion_1L,target,12,3.6,velocity,center_uy,0.05155186355113983 +illusion_1L,target,12,3.6,velocity,lower_ux,0.6846755146980286 +illusion_1L,target,12,3.6,velocity,lower_uy,0.09984375536441803 +illusion_1L,target,13,3.9,velocity,upper_ux,1.3254985809326172 +illusion_1L,target,13,3.9,velocity,upper_uy,0.09448076784610748 +illusion_1L,target,13,3.9,velocity,center_ux,0.8330873847007751 +illusion_1L,target,13,3.9,velocity,center_uy,0.37411051988601685 +illusion_1L,target,13,3.9,velocity,lower_ux,0.7289074659347534 +illusion_1L,target,13,3.9,velocity,lower_uy,0.1924751102924347 +illusion_1L,target,14,4.2,velocity,upper_ux,1.2172633409500122 +illusion_1L,target,14,4.2,velocity,upper_uy,0.31213608384132385 +illusion_1L,target,14,4.2,velocity,center_ux,0.8582859039306641 +illusion_1L,target,14,4.2,velocity,center_uy,0.5778670310974121 +illusion_1L,target,14,4.2,velocity,lower_ux,0.7935585975646973 +illusion_1L,target,14,4.2,velocity,lower_uy,0.24958325922489166 +illusion_1L,target,15,4.5,velocity,upper_ux,1.1315243244171143 +illusion_1L,target,15,4.5,velocity,upper_uy,0.406453013420105 +illusion_1L,target,15,4.5,velocity,center_ux,0.897360622882843 +illusion_1L,target,15,4.5,velocity,center_uy,0.6324020624160767 +illusion_1L,target,15,4.5,velocity,lower_ux,0.8593739867210388 +illusion_1L,target,15,4.5,velocity,lower_uy,0.29081857204437256 +illusion_1L,target,16,4.8,velocity,upper_ux,1.0681689977645874 +illusion_1L,target,16,4.8,velocity,upper_uy,0.4239809513092041 +illusion_1L,target,16,4.8,velocity,center_ux,0.9342878460884094 +illusion_1L,target,16,4.8,velocity,center_uy,0.6173226833343506 +illusion_1L,target,16,4.8,velocity,lower_ux,0.9213393926620483 +illusion_1L,target,16,4.8,velocity,lower_uy,0.3245692849159241 +illusion_1L,target,17,5.1,velocity,upper_ux,1.0155524015426636 +illusion_1L,target,17,5.1,velocity,upper_uy,0.4188010096549988 +illusion_1L,target,17,5.1,velocity,center_ux,0.9614630937576294 +illusion_1L,target,17,5.1,velocity,center_uy,0.6058698296546936 +illusion_1L,target,17,5.1,velocity,lower_ux,0.9801077246665955 +illusion_1L,target,17,5.1,velocity,lower_uy,0.3525814116001129 +illusion_1L,target,18,5.4,velocity,upper_ux,0.9642856121063232 +illusion_1L,target,18,5.4,velocity,upper_uy,0.41031721234321594 +illusion_1L,target,18,5.4,velocity,center_ux,0.9797003269195557 +illusion_1L,target,18,5.4,velocity,center_uy,0.6118373870849609 +illusion_1L,target,18,5.4,velocity,lower_ux,1.0372512340545654 +illusion_1L,target,18,5.4,velocity,lower_uy,0.37670648097991943 +illusion_1L,target,19,5.7,velocity,upper_ux,0.9097379446029663 +illusion_1L,target,19,5.7,velocity,upper_uy,0.3959059715270996 +illusion_1L,target,19,5.7,velocity,center_ux,0.9905156493186951 +illusion_1L,target,19,5.7,velocity,center_uy,0.6327278017997742 +illusion_1L,target,19,5.7,velocity,lower_ux,1.0951703786849976 +illusion_1L,target,19,5.7,velocity,lower_uy,0.39841336011886597 +illusion_1L,target,20,6.0,velocity,upper_ux,0.8500766158103943 +illusion_1L,target,20,6.0,velocity,upper_uy,0.36554422974586487 +illusion_1L,target,20,6.0,velocity,center_ux,0.9924041628837585 +illusion_1L,target,20,6.0,velocity,center_uy,0.6611894965171814 +illusion_1L,target,20,6.0,velocity,lower_ux,1.1570379734039307 +illusion_1L,target,20,6.0,velocity,lower_uy,0.4182508587837219 +illusion_1L,target,21,6.3,velocity,upper_ux,0.7874393463134766 +illusion_1L,target,21,6.3,velocity,upper_uy,0.30704575777053833 +illusion_1L,target,21,6.3,velocity,center_ux,0.9792081713676453 +illusion_1L,target,21,6.3,velocity,center_uy,0.6714678406715393 +illusion_1L,target,21,6.3,velocity,lower_ux,1.2273434400558472 +illusion_1L,target,21,6.3,velocity,lower_uy,0.4354100525379181 +illusion_1L,target,22,6.6,velocity,upper_ux,0.7290897369384766 +illusion_1L,target,22,6.6,velocity,upper_uy,0.2119685709476471 +illusion_1L,target,22,6.6,velocity,center_ux,0.942969560623169 +illusion_1L,target,22,6.6,velocity,center_uy,0.6055407524108887 +illusion_1L,target,22,6.6,velocity,lower_ux,1.309899926185608 +illusion_1L,target,22,6.6,velocity,lower_uy,0.44468581676483154 +illusion_1L,target,23,6.9,velocity,upper_ux,0.6875748038291931 +illusion_1L,target,23,6.9,velocity,upper_uy,0.08456311374902725 +illusion_1L,target,23,6.9,velocity,center_ux,0.8901044726371765 +illusion_1L,target,23,6.9,velocity,center_uy,0.40539324283599854 +illusion_1L,target,23,6.9,velocity,lower_ux,1.3955861330032349 +illusion_1L,target,23,6.9,velocity,lower_uy,0.4196779429912567 +illusion_1L,target,24,7.2,velocity,upper_ux,0.6780332326889038 +illusion_1L,target,24,7.2,velocity,upper_uy,-0.05134623125195503 +illusion_1L,target,24,7.2,velocity,center_ux,0.846434473991394 +illusion_1L,target,24,7.2,velocity,center_uy,0.0875098705291748 +illusion_1L,target,24,7.2,velocity,lower_ux,1.4324074983596802 +illusion_1L,target,24,7.2,velocity,lower_uy,0.2858441472053528 +illusion_1L,target,25,7.5,velocity,upper_ux,0.7088071703910828 +illusion_1L,target,25,7.5,velocity,upper_uy,-0.1607409417629242 +illusion_1L,target,25,7.5,velocity,center_ux,0.8317880630493164 +illusion_1L,target,25,7.5,velocity,center_uy,-0.25583305954933167 +illusion_1L,target,25,7.5,velocity,lower_ux,1.3698039054870605 +illusion_1L,target,25,7.5,velocity,lower_uy,0.017872333526611328 +illusion_1L,target,26,7.8,velocity,upper_ux,0.7682589292526245 +illusion_1L,target,26,7.8,velocity,upper_uy,-0.22983220219612122 +illusion_1L,target,26,7.8,velocity,center_ux,0.8472541570663452 +illusion_1L,target,26,7.8,velocity,center_uy,-0.5165188312530518 +illusion_1L,target,26,7.8,velocity,lower_ux,1.2597556114196777 +illusion_1L,target,26,7.8,velocity,lower_uy,-0.24163371324539185 +illusion_1L,target,27,8.1,velocity,upper_ux,0.833916425704956 +illusion_1L,target,27,8.1,velocity,upper_uy,-0.2755594551563263 +illusion_1L,target,27,8.1,velocity,center_ux,0.8818628787994385 +illusion_1L,target,27,8.1,velocity,center_uy,-0.6254083514213562 +illusion_1L,target,27,8.1,velocity,lower_ux,1.1627731323242188 +illusion_1L,target,27,8.1,velocity,lower_uy,-0.38213562965393066 +illusion_1L,target,28,8.4,velocity,upper_ux,0.8961044549942017 +illusion_1L,target,28,8.4,velocity,upper_uy,-0.3119599521160126 +illusion_1L,target,28,8.4,velocity,center_ux,0.9198834300041199 +illusion_1L,target,28,8.4,velocity,center_uy,-0.6253041625022888 +illusion_1L,target,28,8.4,velocity,lower_ux,1.0904642343521118 +illusion_1L,target,28,8.4,velocity,lower_uy,-0.4218800365924835 +illusion_1L,target,29,8.7,velocity,upper_ux,0.9554694890975952 +illusion_1L,target,29,8.7,velocity,upper_uy,-0.3419894874095917 +illusion_1L,target,29,8.7,velocity,center_ux,0.9506038427352905 +illusion_1L,target,29,8.7,velocity,center_uy,-0.6082338690757751 +illusion_1L,target,29,8.7,velocity,lower_ux,1.0346441268920898 +illusion_1L,target,29,8.7,velocity,lower_uy,-0.4213554263114929 +illusion_1L,target,30,9.0,velocity,upper_ux,1.0135186910629272 +illusion_1L,target,30,9.0,velocity,upper_uy,-0.3674200177192688 +illusion_1L,target,30,9.0,velocity,center_ux,0.9726474285125732 +illusion_1L,target,30,9.0,velocity,center_uy,-0.6072787642478943 +illusion_1L,target,30,9.0,velocity,lower_ux,0.9842378497123718 +illusion_1L,target,30,9.0,velocity,lower_uy,-0.41378968954086304 +illusion_1L,target,31,9.3,velocity,upper_ux,1.0718872547149658 +illusion_1L,target,31,9.3,velocity,upper_uy,-0.3899763524532318 +illusion_1L,target,31,9.3,velocity,center_ux,0.9874548316001892 +illusion_1L,target,31,9.3,velocity,center_uy,-0.6225665211677551 +illusion_1L,target,31,9.3,velocity,lower_ux,0.9324989914894104 +illusion_1L,target,31,9.3,velocity,lower_uy,-0.40270113945007324 +illusion_1L,target,32,9.6,velocity,upper_ux,1.13270902633667 +illusion_1L,target,32,9.6,velocity,upper_uy,-0.41059717535972595 +illusion_1L,target,32,9.6,velocity,center_ux,0.9942430853843689 +illusion_1L,target,32,9.6,velocity,center_uy,-0.649543046951294 +illusion_1L,target,32,9.6,velocity,lower_ux,0.8758196830749512 +illusion_1L,target,32,9.6,velocity,lower_uy,-0.3800446689128876 +illusion_1L,target,33,9.9,velocity,upper_ux,1.1994432210922241 +illusion_1L,target,33,9.9,velocity,upper_uy,-0.4291248619556427 +illusion_1L,target,33,9.9,velocity,center_ux,0.9883195161819458 +illusion_1L,target,33,9.9,velocity,center_uy,-0.6721358299255371 +illusion_1L,target,33,9.9,velocity,lower_ux,0.8140254616737366 +illusion_1L,target,33,9.9,velocity,lower_uy,-0.333952397108078 +illusion_1L,target,34,10.2,velocity,upper_ux,1.2763181924819946 +illusion_1L,target,34,10.2,velocity,upper_uy,-0.44290655851364136 +illusion_1L,target,34,10.2,velocity,center_ux,0.9608529806137085 +illusion_1L,target,34,10.2,velocity,center_uy,-0.6449615955352783 +illusion_1L,target,34,10.2,velocity,lower_ux,0.7519526481628418 +illusion_1L,target,34,10.2,velocity,lower_uy,-0.25357070565223694 +illusion_1L,target,35,10.5,velocity,upper_ux,1.3626048564910889 +illusion_1L,target,35,10.5,velocity,upper_uy,-0.4376198947429657 +illusion_1L,target,35,10.5,velocity,center_ux,0.910793662071228 +illusion_1L,target,35,10.5,velocity,center_uy,-0.5015697479248047 +illusion_1L,target,35,10.5,velocity,lower_ux,0.7006744742393494 +illusion_1L,target,35,10.5,velocity,lower_uy,-0.13720360398292542 +illusion_1L,target,36,10.8,velocity,upper_ux,1.4270026683807373 +illusion_1L,target,36,10.8,velocity,upper_uy,-0.35776787996292114 +illusion_1L,target,36,10.8,velocity,center_ux,0.859204888343811 +illusion_1L,target,36,10.8,velocity,center_uy,-0.22267916798591614 +illusion_1L,target,36,10.8,velocity,lower_ux,0.6759913563728333 +illusion_1L,target,36,10.8,velocity,lower_uy,-0.0008290025871247053 +illusion_1L,target,37,11.1,velocity,upper_ux,1.4038567543029785 +illusion_1L,target,37,11.1,velocity,upper_uy,-0.13419033586978912 +illusion_1L,target,37,11.1,velocity,center_ux,0.832051157951355 +illusion_1L,target,37,11.1,velocity,center_uy,0.12309180200099945 +illusion_1L,target,37,11.1,velocity,lower_ux,0.6910930871963501 +illusion_1L,target,37,11.1,velocity,lower_uy,0.12236017733812332 +illusion_1L,target,38,11.4,velocity,upper_ux,1.3036417961120605 +illusion_1L,target,38,11.4,velocity,upper_uy,0.14963729679584503 +illusion_1L,target,38,11.4,velocity,center_ux,0.8372454047203064 +illusion_1L,target,38,11.4,velocity,center_uy,0.42856159806251526 +illusion_1L,target,38,11.4,velocity,lower_ux,0.7427989840507507 +illusion_1L,target,38,11.4,velocity,lower_uy,0.20635120570659637 +illusion_1L,target,39,11.7,velocity,upper_ux,1.199057698249817 +illusion_1L,target,39,11.7,velocity,upper_uy,0.3416547477245331 +illusion_1L,target,39,11.7,velocity,center_ux,0.8671277761459351 +illusion_1L,target,39,11.7,velocity,center_uy,0.6001474857330322 +illusion_1L,target,39,11.7,velocity,lower_ux,0.8091704845428467 +illusion_1L,target,39,11.7,velocity,lower_uy,0.2587818205356598 +illusion_1L,target,40,12.0,velocity,upper_ux,1.1178218126296997 +illusion_1L,target,40,12.0,velocity,upper_uy,0.41456881165504456 +illusion_1L,target,40,12.0,velocity,center_ux,0.9063792824745178 +illusion_1L,target,40,12.0,velocity,center_uy,0.631544828414917 +illusion_1L,target,40,12.0,velocity,lower_ux,0.8735631108283997 +illusion_1L,target,40,12.0,velocity,lower_uy,0.29825258255004883 +illusion_1L,target,41,12.3,velocity,upper_ux,1.0565133094787598 +illusion_1L,target,41,12.3,velocity,upper_uy,0.4238191843032837 +illusion_1L,target,41,12.3,velocity,center_ux,0.9404548406600952 +illusion_1L,target,41,12.3,velocity,center_uy,0.6135652661323547 +illusion_1L,target,41,12.3,velocity,lower_ux,0.9335751533508301 +illusion_1L,target,41,12.3,velocity,lower_uy,0.33068257570266724 +illusion_1L,target,42,12.6,velocity,upper_ux,1.003801703453064 +illusion_1L,target,42,12.6,velocity,upper_uy,0.4173646569252014 +illusion_1L,target,42,12.6,velocity,center_ux,0.9646895527839661 +illusion_1L,target,42,12.6,velocity,center_uy,0.6056805849075317 +illusion_1L,target,42,12.6,velocity,lower_ux,0.9907985329627991 +illusion_1L,target,42,12.6,velocity,lower_uy,0.3577117621898651 +illusion_1L,target,43,12.9,velocity,upper_ux,0.9520025849342346 +illusion_1L,target,43,12.9,velocity,upper_uy,0.4082261025905609 +illusion_1L,target,43,12.9,velocity,center_ux,0.981227695941925 +illusion_1L,target,43,12.9,velocity,center_uy,0.6149522066116333 +illusion_1L,target,43,12.9,velocity,lower_ux,1.047601580619812 +illusion_1L,target,43,12.9,velocity,lower_uy,0.38121387362480164 +illusion_1L,target,44,13.2,velocity,upper_ux,0.8973192572593689 +illusion_1L,target,44,13.2,velocity,upper_uy,0.3914344310760498 +illusion_1L,target,44,13.2,velocity,center_ux,0.9913478493690491 +illusion_1L,target,44,13.2,velocity,center_uy,0.6381884217262268 +illusion_1L,target,44,13.2,velocity,lower_ux,1.1067701578140259 +illusion_1L,target,44,13.2,velocity,lower_uy,0.4025072455406189 +illusion_1L,target,45,13.5,velocity,upper_ux,0.8380323052406311 +illusion_1L,target,45,13.5,velocity,upper_uy,0.3561444580554962 +illusion_1L,target,45,13.5,velocity,center_ux,0.992199182510376 +illusion_1L,target,45,13.5,velocity,center_uy,0.6658881306648254 +illusion_1L,target,45,13.5,velocity,lower_ux,1.1712769269943237 +illusion_1L,target,45,13.5,velocity,lower_uy,0.4219484329223633 +illusion_1L,target,46,13.8,velocity,upper_ux,0.7761833667755127 +illusion_1L,target,46,13.8,velocity,upper_uy,0.2902405858039856 +illusion_1L,target,46,13.8,velocity,center_ux,0.9755032062530518 +illusion_1L,target,46,13.8,velocity,center_uy,0.6661188006401062 +illusion_1L,target,46,13.8,velocity,lower_ux,1.2447240352630615 +illusion_1L,target,46,13.8,velocity,lower_uy,0.43826407194137573 +illusion_1L,target,47,14.1,velocity,upper_ux,0.719727098941803 +illusion_1L,target,47,14.1,velocity,upper_uy,0.187147855758667 +illusion_1L,target,47,14.1,velocity,center_ux,0.9340565204620361 +illusion_1L,target,47,14.1,velocity,center_uy,0.5755155682563782 +illusion_1L,target,47,14.1,velocity,lower_ux,1.3293139934539795 +illusion_1L,target,47,14.1,velocity,lower_uy,0.44399887323379517 +illusion_1L,target,48,14.4,velocity,upper_ux,0.6826725006103516 +illusion_1L,target,48,14.4,velocity,upper_uy,0.05512230470776558 +illusion_1L,target,48,14.4,velocity,center_ux,0.8795716166496277 +illusion_1L,target,48,14.4,velocity,center_uy,0.3460249602794647 +illusion_1L,target,48,14.4,velocity,lower_ux,1.4097743034362793 +illusion_1L,target,48,14.4,velocity,lower_uy,0.4039316177368164 +illusion_1L,target,49,14.7,velocity,upper_ux,0.6804043650627136 +illusion_1L,target,49,14.7,velocity,upper_uy,-0.07787429541349411 +illusion_1L,target,49,14.7,velocity,center_ux,0.8397542834281921 +illusion_1L,target,49,14.7,velocity,center_uy,0.014068500138819218 +illusion_1L,target,49,14.7,velocity,lower_ux,1.4261133670806885 +illusion_1L,target,49,14.7,velocity,lower_uy,0.23873203992843628 +illusion_1L,target,50,15.0,velocity,upper_ux,0.7183864712715149 +illusion_1L,target,50,15.0,velocity,upper_uy,-0.17839084565639496 +illusion_1L,target,50,15.0,velocity,center_ux,0.8311590552330017 +illusion_1L,target,50,15.0,velocity,center_uy,-0.32022008299827576 +illusion_1L,target,50,15.0,velocity,lower_ux,1.3461692333221436 +illusion_1L,target,50,15.0,velocity,lower_uy,-0.042076271027326584 +illusion_1L,target,51,15.3,velocity,upper_ux,0.7811502814292908 +illusion_1L,target,51,15.3,velocity,upper_uy,-0.24061685800552368 +illusion_1L,target,51,15.3,velocity,center_ux,0.8520969748497009 +illusion_1L,target,51,15.3,velocity,center_uy,-0.551923394203186 +illusion_1L,target,51,15.3,velocity,lower_ux,1.2362834215164185 +illusion_1L,target,51,15.3,velocity,lower_uy,-0.28119197487831116 +illusion_1L,target,52,15.6,velocity,upper_ux,0.8475008010864258 +illusion_1L,target,52,15.6,velocity,upper_uy,-0.283752977848053 +illusion_1L,target,52,15.6,velocity,center_ux,0.8898975849151611 +illusion_1L,target,52,15.6,velocity,center_uy,-0.6307446956634521 +illusion_1L,target,52,15.6,velocity,lower_ux,1.145691990852356 +illusion_1L,target,52,15.6,velocity,lower_uy,-0.39671310782432556 +illusion_1L,target,53,15.9,velocity,upper_ux,0.9101154804229736 +illusion_1L,target,53,15.9,velocity,upper_uy,-0.3187444806098938 +illusion_1L,target,53,15.9,velocity,center_ux,0.9281083345413208 +illusion_1L,target,53,15.9,velocity,center_uy,-0.621030867099762 +illusion_1L,target,53,15.9,velocity,lower_ux,1.0788607597351074 +illusion_1L,target,53,15.9,velocity,lower_uy,-0.4236421585083008 +illusion_1L,target,54,16.2,velocity,upper_ux,0.9692715406417847 +illusion_1L,target,54,16.2,velocity,upper_uy,-0.3476918935775757 +illusion_1L,target,54,16.2,velocity,center_ux,0.9570781588554382 +illusion_1L,target,54,16.2,velocity,center_uy,-0.6066666841506958 +illusion_1L,target,54,16.2,velocity,lower_ux,1.0250099897384644 +illusion_1L,target,54,16.2,velocity,lower_uy,-0.4201914966106415 +illusion_1L,target,55,16.5,velocity,upper_ux,1.0265085697174072 +illusion_1L,target,55,16.5,velocity,upper_uy,-0.3724066913127899 +illusion_1L,target,55,16.5,velocity,center_ux,0.9767787456512451 +illusion_1L,target,55,16.5,velocity,center_uy,-0.609485924243927 +illusion_1L,target,55,16.5,velocity,lower_ux,0.9739083647727966 +illusion_1L,target,55,16.5,velocity,lower_uy,-0.4121439754962921 +illusion_1L,target,56,16.8,velocity,upper_ux,1.0840609073638916 +illusion_1L,target,56,16.8,velocity,upper_uy,-0.39449119567871094 +illusion_1L,target,56,16.8,velocity,center_ux,0.9889820218086243 +illusion_1L,target,56,16.8,velocity,center_uy,-0.6278925538063049 +illusion_1L,target,56,16.8,velocity,lower_ux,0.9201934933662415 +illusion_1L,target,56,16.8,velocity,lower_uy,-0.39947256445884705 +illusion_1L,target,57,17.1,velocity,upper_ux,1.1449445486068726 +illusion_1L,target,57,17.1,velocity,upper_uy,-0.4146852493286133 +illusion_1L,target,57,17.1,velocity,center_ux,0.9929187893867493 +illusion_1L,target,57,17.1,velocity,center_uy,-0.6560572981834412 +illusion_1L,target,57,17.1,velocity,lower_ux,0.8615391254425049 +illusion_1L,target,57,17.1,velocity,lower_uy,-0.37300366163253784 +illusion_1L,target,58,17.4,velocity,upper_ux,1.2134222984313965 +illusion_1L,target,58,17.4,velocity,upper_uy,-0.43251749873161316 +illusion_1L,target,58,17.4,velocity,center_ux,0.9833611845970154 +illusion_1L,target,58,17.4,velocity,center_uy,-0.6731663942337036 +illusion_1L,target,58,17.4,velocity,lower_ux,0.7991875410079956 +illusion_1L,target,58,17.4,velocity,lower_uy,-0.3206133246421814 +illusion_1L,target,59,17.7,velocity,upper_ux,1.293688416481018 +illusion_1L,target,59,17.7,velocity,upper_uy,-0.44420284032821655 +illusion_1L,target,59,17.7,velocity,center_ux,0.9516722559928894 +illusion_1L,target,59,17.7,velocity,center_uy,-0.6268907785415649 +illusion_1L,target,59,17.7,velocity,lower_ux,0.7392546534538269 +illusion_1L,target,59,17.7,velocity,lower_uy,-0.2325294017791748 +illusion_1L,target,60,18.0,velocity,upper_ux,1.3810795545578003 +illusion_1L,target,60,18.0,velocity,upper_uy,-0.4297831356525421 +illusion_1L,target,60,18.0,velocity,center_ux,0.9002586603164673 +illusion_1L,target,60,18.0,velocity,center_uy,-0.45351725816726685 +illusion_1L,target,60,18.0,velocity,lower_ux,0.6934189200401306 +illusion_1L,target,60,18.0,velocity,lower_uy,-0.10994116216897964 +illusion_1L,target,61,18.3,velocity,upper_ux,1.4327257871627808 +illusion_1L,target,61,18.3,velocity,upper_uy,-0.32271015644073486 +illusion_1L,target,61,18.3,velocity,center_ux,0.8526999354362488 +illusion_1L,target,61,18.3,velocity,center_uy,-0.15201953053474426 +illusion_1L,target,61,18.3,velocity,lower_ux,0.6767774224281311 +illusion_1L,target,61,18.3,velocity,lower_uy,0.027043702080845833 +illusion_1L,target,62,18.6,velocity,upper_ux,1.387622594833374 +illusion_1L,target,62,18.6,velocity,upper_uy,-0.07277999073266983 +illusion_1L,target,62,18.6,velocity,center_ux,0.8319743275642395 +illusion_1L,target,62,18.6,velocity,center_uy,0.19492821395397186 +illusion_1L,target,62,18.6,velocity,lower_ux,0.700151801109314 +illusion_1L,target,62,18.6,velocity,lower_uy,0.14354370534420013 +illusion_1L,target,63,18.9,velocity,upper_ux,1.280153512954712 +illusion_1L,target,63,18.9,velocity,upper_uy,0.20094922184944153 +illusion_1L,target,63,18.9,velocity,center_ux,0.8423728346824646 +illusion_1L,target,63,18.9,velocity,center_uy,0.47848567366600037 +illusion_1L,target,63,18.9,velocity,lower_ux,0.7560127973556519 +illusion_1L,target,63,18.9,velocity,lower_uy,0.21940134465694427 +illusion_1L,target,64,19.2,velocity,upper_ux,1.1788431406021118 +illusion_1L,target,64,19.2,velocity,upper_uy,0.36527809500694275 +illusion_1L,target,64,19.2,velocity,center_ux,0.8745833039283752 +illusion_1L,target,64,19.2,velocity,center_uy,0.6162782907485962 +illusion_1L,target,64,19.2,velocity,lower_ux,0.8217872381210327 +illusion_1L,target,64,19.2,velocity,lower_uy,0.2679349184036255 +illusion_1L,target,65,19.5,velocity,upper_ux,1.1023625135421753 +illusion_1L,target,65,19.5,velocity,upper_uy,0.4191778302192688 +illusion_1L,target,65,19.5,velocity,center_ux,0.9131931662559509 +illusion_1L,target,65,19.5,velocity,center_uy,0.628760576248169 +illusion_1L,target,65,19.5,velocity,lower_ux,0.8848125338554382 +illusion_1L,target,65,19.5,velocity,lower_uy,0.3056969940662384 +illusion_1L,target,66,19.8,velocity,upper_ux,1.044456958770752 +illusion_1L,target,66,19.8,velocity,upper_uy,0.4224662482738495 +illusion_1L,target,66,19.8,velocity,center_ux,0.9456732273101807 +illusion_1L,target,66,19.8,velocity,center_uy,0.6104074120521545 +illusion_1L,target,66,19.8,velocity,lower_ux,0.9446523189544678 +illusion_1L,target,66,19.8,velocity,lower_uy,0.33680257201194763 +illusion_1L,target,67,20.1,velocity,upper_ux,0.993675947189331 +illusion_1L,target,67,20.1,velocity,upper_uy,0.41534700989723206 +illusion_1L,target,67,20.1,velocity,center_ux,0.9692034721374512 +illusion_1L,target,67,20.1,velocity,center_uy,0.606151282787323 +illusion_1L,target,67,20.1,velocity,lower_ux,1.002837061882019 +illusion_1L,target,67,20.1,velocity,lower_uy,0.36294615268707275 +illusion_1L,target,68,20.4,velocity,upper_ux,0.9424554705619812 +illusion_1L,target,68,20.4,velocity,upper_uy,0.40533947944641113 +illusion_1L,target,68,20.4,velocity,center_ux,0.9852536916732788 +illusion_1L,target,68,20.4,velocity,center_uy,0.6186524033546448 +illusion_1L,target,68,20.4,velocity,lower_ux,1.0609381198883057 +illusion_1L,target,68,20.4,velocity,lower_uy,0.3859389126300812 +illusion_1L,target,69,20.7,velocity,upper_ux,0.8867383599281311 +illusion_1L,target,69,20.7,velocity,upper_uy,0.3856801688671112 +illusion_1L,target,69,20.7,velocity,center_ux,0.9936476349830627 +illusion_1L,target,69,20.7,velocity,center_uy,0.6441025733947754 +illusion_1L,target,69,20.7,velocity,lower_ux,1.1209858655929565 +illusion_1L,target,69,20.7,velocity,lower_uy,0.406891405582428 +illusion_1L,target,70,21.0,velocity,upper_ux,0.8256829977035522 +illusion_1L,target,70,21.0,velocity,upper_uy,0.3449138402938843 +illusion_1L,target,70,21.0,velocity,center_ux,0.9906754493713379 +illusion_1L,target,70,21.0,velocity,center_uy,0.669868528842926 +illusion_1L,target,70,21.0,velocity,lower_ux,1.1862714290618896 +illusion_1L,target,70,21.0,velocity,lower_uy,0.425888329744339 +illusion_1L,target,71,21.3,velocity,upper_ux,0.7630183696746826 +illusion_1L,target,71,21.3,velocity,upper_uy,0.2714807093143463 +illusion_1L,target,71,21.3,velocity,center_ux,0.9678314328193665 +illusion_1L,target,71,21.3,velocity,center_uy,0.6569983959197998 +illusion_1L,target,71,21.3,velocity,lower_ux,1.2609763145446777 +illusion_1L,target,71,21.3,velocity,lower_uy,0.44102391600608826 +illusion_1L,target,72,21.6,velocity,upper_ux,0.7087013721466064 +illusion_1L,target,72,21.6,velocity,upper_uy,0.1612478792667389 +illusion_1L,target,72,21.6,velocity,center_ux,0.9211483597755432 +illusion_1L,target,72,21.6,velocity,center_uy,0.539326548576355 +illusion_1L,target,72,21.6,velocity,lower_ux,1.3465012311935425 +illusion_1L,target,72,21.6,velocity,lower_uy,0.44174930453300476 +illusion_1L,target,73,21.9,velocity,upper_ux,0.6779194474220276 +illusion_1L,target,73,21.9,velocity,upper_uy,0.02644106186926365 +illusion_1L,target,73,21.9,velocity,center_ux,0.8676727414131165 +illusion_1L,target,73,21.9,velocity,center_uy,0.2827868163585663 +illusion_1L,target,73,21.9,velocity,lower_ux,1.4199589490890503 +illusion_1L,target,73,21.9,velocity,lower_uy,0.38253000378608704 +illusion_1L,target,74,22.2,velocity,upper_ux,0.685157299041748 +illusion_1L,target,74,22.2,velocity,upper_uy,-0.10196152329444885 +illusion_1L,target,74,22.2,velocity,center_ux,0.8347639441490173 +illusion_1L,target,74,22.2,velocity,center_uy,-0.0583910308778286 +illusion_1L,target,74,22.2,velocity,lower_ux,1.4162367582321167 +illusion_1L,target,74,22.2,velocity,lower_uy,0.18562260270118713 +illusion_1L,target,75,22.5,velocity,upper_ux,0.7313327789306641 +illusion_1L,target,75,22.5,velocity,upper_uy,-0.19372957944869995 +illusion_1L,target,75,22.5,velocity,center_ux,0.8341378569602966 +illusion_1L,target,75,22.5,velocity,center_uy,-0.3795827031135559 +illusion_1L,target,75,22.5,velocity,lower_ux,1.3245060443878174 +illusion_1L,target,75,22.5,velocity,lower_uy,-0.10049194097518921 +illusion_1L,target,76,22.8,velocity,upper_ux,0.7966287732124329 +illusion_1L,target,76,22.8,velocity,upper_uy,-0.25038662552833557 +illusion_1L,target,76,22.8,velocity,center_ux,0.8603287935256958 +illusion_1L,target,76,22.8,velocity,center_uy,-0.5804798603057861 +illusion_1L,target,76,22.8,velocity,lower_ux,1.2169580459594727 +illusion_1L,target,76,22.8,velocity,lower_uy,-0.3158150613307953 +illusion_1L,target,77,23.1,velocity,upper_ux,0.8618109226226807 +illusion_1L,target,77,23.1,velocity,upper_uy,-0.2914813160896301 +illusion_1L,target,77,23.1,velocity,center_ux,0.8990594744682312 +illusion_1L,target,77,23.1,velocity,center_uy,-0.6324783563613892 +illusion_1L,target,77,23.1,velocity,lower_ux,1.1310807466506958 +illusion_1L,target,77,23.1,velocity,lower_uy,-0.4077463150024414 +illusion_1L,target,78,23.4,velocity,upper_ux,0.9225285649299622 +illusion_1L,target,78,23.4,velocity,upper_uy,-0.325102299451828 +illusion_1L,target,78,23.4,velocity,center_ux,0.9347730278968811 +illusion_1L,target,78,23.4,velocity,center_uy,-0.6168922781944275 +illusion_1L,target,78,23.4,velocity,lower_ux,1.066888451576233 +illusion_1L,target,78,23.4,velocity,lower_uy,-0.424165278673172 +illusion_1L,target,79,23.7,velocity,upper_ux,0.9801575541496277 +illusion_1L,target,79,23.7,velocity,upper_uy,-0.3529911935329437 +illusion_1L,target,79,23.7,velocity,center_ux,0.9607917070388794 +illusion_1L,target,79,23.7,velocity,center_uy,-0.6057753562927246 +illusion_1L,target,79,23.7,velocity,lower_ux,1.0133758783340454 +illusion_1L,target,79,23.7,velocity,lower_uy,-0.41877004504203796 +illusion_1L,target,80,24.0,velocity,upper_ux,1.0369492769241333 +illusion_1L,target,80,24.0,velocity,upper_uy,-0.3770272433757782 +illusion_1L,target,80,24.0,velocity,center_ux,0.9786878228187561 +illusion_1L,target,80,24.0,velocity,center_uy,-0.6120212078094482 +illusion_1L,target,80,24.0,velocity,lower_ux,0.9618832468986511 +illusion_1L,target,80,24.0,velocity,lower_uy,-0.4102224111557007 +illusion_1L,target,81,24.3,velocity,upper_ux,1.0955195426940918 +illusion_1L,target,81,24.3,velocity,upper_uy,-0.3986768424510956 +illusion_1L,target,81,24.3,velocity,center_ux,0.9901137351989746 +illusion_1L,target,81,24.3,velocity,center_uy,-0.6330278515815735 +illusion_1L,target,81,24.3,velocity,lower_ux,0.9079874753952026 +illusion_1L,target,81,24.3,velocity,lower_uy,-0.3955761790275574 +illusion_1L,target,82,24.6,velocity,upper_ux,1.1587716341018677 +illusion_1L,target,82,24.6,velocity,upper_uy,-0.4184965491294861 +illusion_1L,target,82,24.6,velocity,center_ux,0.9931418895721436 +illusion_1L,target,82,24.6,velocity,center_uy,-0.6613653898239136 +illusion_1L,target,82,24.6,velocity,lower_ux,0.8495354652404785 +illusion_1L,target,82,24.6,velocity,lower_uy,-0.364683598279953 +illusion_1L,target,83,24.9,velocity,upper_ux,1.23018217086792 +illusion_1L,target,83,24.9,velocity,upper_uy,-0.43564197421073914 +illusion_1L,target,83,24.9,velocity,center_ux,0.9804172515869141 +illusion_1L,target,83,24.9,velocity,center_uy,-0.6707673668861389 +illusion_1L,target,83,24.9,velocity,lower_ux,0.7876703143119812 +illusion_1L,target,83,24.9,velocity,lower_uy,-0.3052784204483032 +illusion_1L,target,84,25.2,velocity,upper_ux,1.3127999305725098 +illusion_1L,target,84,25.2,velocity,upper_uy,-0.4446758031845093 +illusion_1L,target,84,25.2,velocity,center_ux,0.9433856010437012 +illusion_1L,target,84,25.2,velocity,center_uy,-0.6023996472358704 +illusion_1L,target,84,25.2,velocity,lower_ux,0.7292142510414124 +illusion_1L,target,84,25.2,velocity,lower_uy,-0.20907188951969147 +illusion_1L,target,85,25.5,velocity,upper_ux,1.3971843719482422 +illusion_1L,target,85,25.5,velocity,upper_uy,-0.41836604475975037 +illusion_1L,target,85,25.5,velocity,center_ux,0.8893311619758606 +illusion_1L,target,85,25.5,velocity,center_uy,-0.3990226089954376 +illusion_1L,target,85,25.5,velocity,lower_ux,0.6872932314872742 +illusion_1L,target,85,25.5,velocity,lower_uy,-0.08091165125370026 +illusion_1L,target,86,25.8,velocity,upper_ux,1.4309349060058594 +illusion_1L,target,86,25.8,velocity,upper_uy,-0.28155195713043213 +illusion_1L,target,86,25.8,velocity,center_ux,0.8449066281318665 +illusion_1L,target,86,25.8,velocity,center_uy,-0.07958611845970154 +illusion_1L,target,86,25.8,velocity,lower_ux,0.6776018738746643 +illusion_1L,target,86,25.8,velocity,lower_uy,0.05468308925628662 +illusion_1L,target,87,26.1,velocity,upper_ux,1.3659119606018066 +illusion_1L,target,87,26.1,velocity,upper_uy,-0.012160366401076317 +illusion_1L,target,87,26.1,velocity,center_ux,0.8302639722824097 +illusion_1L,target,87,26.1,velocity,center_uy,0.262638658285141 +illusion_1L,target,87,26.1,velocity,lower_ux,0.7087159156799316 +illusion_1L,target,87,26.1,velocity,lower_uy,0.1628844141960144 +illusion_1L,target,88,26.4,velocity,upper_ux,1.2560786008834839 +illusion_1L,target,88,26.4,velocity,upper_uy,0.2455744445323944 +illusion_1L,target,88,26.4,velocity,center_ux,0.846491277217865 +illusion_1L,target,88,26.4,velocity,center_uy,0.5202170014381409 +illusion_1L,target,88,26.4,velocity,lower_ux,0.7687861919403076 +illusion_1L,target,88,26.4,velocity,lower_uy,0.23103342950344086 +illusion_1L,target,89,26.7,velocity,upper_ux,1.1607334613800049 +illusion_1L,target,89,26.7,velocity,upper_uy,0.3838348686695099 +illusion_1L,target,89,26.7,velocity,center_ux,0.882427453994751 +illusion_1L,target,89,26.7,velocity,center_uy,0.6259675025939941 +illusion_1L,target,89,26.7,velocity,lower_ux,0.8354777097702026 +illusion_1L,target,89,26.7,velocity,lower_uy,0.27642691135406494 +illusion_1L,target,90,27.0,velocity,upper_ux,1.0900204181671143 +illusion_1L,target,90,27.0,velocity,upper_uy,0.4223652482032776 +illusion_1L,target,90,27.0,velocity,center_ux,0.9215938448905945 +illusion_1L,target,90,27.0,velocity,center_uy,0.6248177886009216 +illusion_1L,target,90,27.0,velocity,lower_ux,0.8987879157066345 +illusion_1L,target,90,27.0,velocity,lower_uy,0.31270644068717957 +illusion_1L,target,91,27.3,velocity,upper_ux,1.0345752239227295 +illusion_1L,target,91,27.3,velocity,upper_uy,0.42149117588996887 +illusion_1L,target,91,27.3,velocity,center_ux,0.9523910284042358 +illusion_1L,target,91,27.3,velocity,center_uy,0.6081022620201111 +illusion_1L,target,91,27.3,velocity,lower_ux,0.9583901166915894 +illusion_1L,target,91,27.3,velocity,lower_uy,0.3426573574542999 +illusion_1L,target,92,27.6,velocity,upper_ux,0.9834495782852173 +illusion_1L,target,92,27.6,velocity,upper_uy,0.41382676362991333 +illusion_1L,target,92,27.6,velocity,center_ux,0.9736156463623047 +illusion_1L,target,92,27.6,velocity,center_uy,0.6076797842979431 +illusion_1L,target,92,27.6,velocity,lower_ux,1.0157891511917114 +illusion_1L,target,92,27.6,velocity,lower_uy,0.3680196702480316 +illusion_1L,target,93,27.9,velocity,upper_ux,0.9304698705673218 +illusion_1L,target,93,27.9,velocity,upper_uy,0.40256381034851074 +illusion_1L,target,93,27.9,velocity,center_ux,0.9871715307235718 +illusion_1L,target,93,27.9,velocity,center_uy,0.6234365105628967 +illusion_1L,target,93,27.9,velocity,lower_ux,1.0730648040771484 +illusion_1L,target,93,27.9,velocity,lower_uy,0.3905082046985626 +illusion_1L,target,94,28.2,velocity,upper_ux,0.8728376030921936 +illusion_1L,target,94,28.2,velocity,upper_uy,0.3795526623725891 +illusion_1L,target,94,28.2,velocity,center_ux,0.9929527640342712 +illusion_1L,target,94,28.2,velocity,center_uy,0.6506420969963074 +illusion_1L,target,94,28.2,velocity,lower_ux,1.1330935955047607 +illusion_1L,target,94,28.2,velocity,lower_uy,0.411045104265213 +illusion_1L,target,95,28.5,velocity,upper_ux,0.81097811460495 +illusion_1L,target,95,28.5,velocity,upper_uy,0.33290746808052063 +illusion_1L,target,95,28.5,velocity,center_ux,0.9866805076599121 +illusion_1L,target,95,28.5,velocity,center_uy,0.6727190613746643 +illusion_1L,target,95,28.5,velocity,lower_ux,1.1998968124389648 +illusion_1L,target,95,28.5,velocity,lower_uy,0.4294428527355194 +illusion_1L,target,96,28.8,velocity,upper_ux,0.7498968839645386 +illusion_1L,target,96,28.8,velocity,upper_uy,0.2518380880355835 +illusion_1L,target,96,28.8,velocity,center_ux,0.9595990180969238 +illusion_1L,target,96,28.8,velocity,center_uy,0.6436119079589844 +illusion_1L,target,96,28.8,velocity,lower_ux,1.2778267860412598 +illusion_1L,target,96,28.8,velocity,lower_uy,0.44295960664749146 +illusion_1L,target,97,29.1,velocity,upper_ux,0.7003023624420166 +illusion_1L,target,97,29.1,velocity,upper_uy,0.1347704827785492 +illusion_1L,target,97,29.1,velocity,center_ux,0.9105638861656189 +illusion_1L,target,97,29.1,velocity,center_uy,0.4969099462032318 +illusion_1L,target,97,29.1,velocity,lower_ux,1.3654831647872925 +illusion_1L,target,97,29.1,velocity,lower_uy,0.43673181533813477 +illusion_1L,target,98,29.4,velocity,upper_ux,0.6769967079162598 +illusion_1L,target,98,29.4,velocity,upper_uy,-0.0019865885842591524 +illusion_1L,target,98,29.4,velocity,center_ux,0.8599867820739746 +illusion_1L,target,98,29.4,velocity,center_uy,0.2149042785167694 +illusion_1L,target,98,29.4,velocity,lower_ux,1.4292988777160645 +illusion_1L,target,98,29.4,velocity,lower_uy,0.3538898229598999 +illusion_1L,target,99,29.7,velocity,upper_ux,0.6927016973495483 +illusion_1L,target,99,29.7,velocity,upper_uy,-0.12480775266885757 +illusion_1L,target,99,29.7,velocity,center_ux,0.8332958817481995 +illusion_1L,target,99,29.7,velocity,center_uy,-0.13177284598350525 +illusion_1L,target,99,29.7,velocity,lower_ux,1.4032171964645386 +illusion_1L,target,99,29.7,velocity,lower_uy,0.12687788903713226 +illusion_1L,target,100,30.0,velocity,upper_ux,0.7440783381462097 +illusion_1L,target,100,30.0,velocity,upper_uy,-0.20802463591098785 +illusion_1L,target,100,30.0,velocity,center_ux,0.8382748961448669 +illusion_1L,target,100,30.0,velocity,center_uy,-0.43504536151885986 +illusion_1L,target,100,30.0,velocity,lower_ux,1.3009674549102783 +illusion_1L,target,100,30.0,velocity,lower_uy,-0.1559833139181137 +illusion_1L,target,101,30.3,velocity,upper_ux,0.8095168471336365 +illusion_1L,target,101,30.3,velocity,upper_uy,-0.2599804103374481 +illusion_1L,target,101,30.3,velocity,center_ux,0.8675053119659424 +illusion_1L,target,101,30.3,velocity,center_uy,-0.6025006175041199 +illusion_1L,target,101,30.3,velocity,lower_ux,1.1958253383636475 +illusion_1L,target,101,30.3,velocity,lower_uy,-0.34440094232559204 +illusion_1L,target,102,30.6,velocity,upper_ux,0.8733786940574646 +illusion_1L,target,102,30.6,velocity,upper_uy,-0.29919910430908203 +illusion_1L,target,102,30.6,velocity,center_ux,0.9062210321426392 +illusion_1L,target,102,30.6,velocity,center_uy,-0.6313776969909668 +illusion_1L,target,102,30.6,velocity,lower_ux,1.1148912906646729 +illusion_1L,target,102,30.6,velocity,lower_uy,-0.41480064392089844 +illusion_1L,target,103,30.9,velocity,upper_ux,0.9337600469589233 +illusion_1L,target,103,30.9,velocity,upper_uy,-0.3314395546913147 +illusion_1L,target,103,30.9,velocity,center_ux,0.9404029250144958 +illusion_1L,target,103,30.9,velocity,center_uy,-0.613177478313446 +illusion_1L,target,103,30.9,velocity,lower_ux,1.0544867515563965 +illusion_1L,target,103,30.9,velocity,lower_uy,-0.4233179986476898 +illusion_1L,target,104,31.2,velocity,upper_ux,0.9921529293060303 +illusion_1L,target,104,31.2,velocity,upper_uy,-0.35836222767829895 +illusion_1L,target,104,31.2,velocity,center_ux,0.9655091166496277 +illusion_1L,target,104,31.2,velocity,center_uy,-0.6056051850318909 +illusion_1L,target,104,31.2,velocity,lower_ux,1.0030949115753174 +illusion_1L,target,104,31.2,velocity,lower_uy,-0.4168393313884735 +illusion_1L,target,105,31.5,velocity,upper_ux,1.0500729084014893 +illusion_1L,target,105,31.5,velocity,upper_uy,-0.3818323314189911 +illusion_1L,target,105,31.5,velocity,center_ux,0.9828177690505981 +illusion_1L,target,105,31.5,velocity,center_uy,-0.6152036786079407 +illusion_1L,target,105,31.5,velocity,lower_ux,0.9522715210914612 +illusion_1L,target,105,31.5,velocity,lower_uy,-0.40765583515167236 +illusion_1L,target,106,31.8,velocity,upper_ux,1.1094619035720825 +illusion_1L,target,106,31.8,velocity,upper_uy,-0.4031224548816681 +illusion_1L,target,106,31.8,velocity,center_ux,0.9926960468292236 +illusion_1L,target,106,31.8,velocity,center_uy,-0.638745129108429 +illusion_1L,target,106,31.8,velocity,lower_ux,0.8974788188934326 +illusion_1L,target,106,31.8,velocity,lower_uy,-0.3905832767486572 +illusion_1L,target,107,32.1,velocity,upper_ux,1.173435091972351 +illusion_1L,target,107,32.1,velocity,upper_uy,-0.42253556847572327 +illusion_1L,target,107,32.1,velocity,center_ux,0.9923474192619324 +illusion_1L,target,107,32.1,velocity,center_uy,-0.6663612127304077 +illusion_1L,target,107,32.1,velocity,lower_ux,0.8372755646705627 +illusion_1L,target,107,32.1,velocity,lower_uy,-0.35471421480178833 +illusion_1L,target,108,32.4,velocity,upper_ux,1.2460626363754272 +illusion_1L,target,108,32.4,velocity,upper_uy,-0.43873274326324463 +illusion_1L,target,108,32.4,velocity,center_ux,0.9739063382148743 +illusion_1L,target,108,32.4,velocity,center_uy,-0.6653024554252625 +illusion_1L,target,108,32.4,velocity,lower_ux,0.7743539214134216 +illusion_1L,target,108,32.4,velocity,lower_uy,-0.28805485367774963 +illusion_1L,target,109,32.7,velocity,upper_ux,1.3301323652267456 +illusion_1L,target,109,32.7,velocity,upper_uy,-0.4439912438392639 +illusion_1L,target,109,32.7,velocity,center_ux,0.9312021136283875 +illusion_1L,target,109,32.7,velocity,center_uy,-0.5719441175460815 +illusion_1L,target,109,32.7,velocity,lower_ux,0.7175199389457703 +illusion_1L,target,109,32.7,velocity,lower_uy,-0.1843697428703308 +illusion_1L,target,110,33.0,velocity,upper_ux,1.4100298881530762 +illusion_1L,target,110,33.0,velocity,upper_uy,-0.40208083391189575 +illusion_1L,target,110,33.0,velocity,center_ux,0.8768922686576843 +illusion_1L,target,110,33.0,velocity,center_uy,-0.3398251235485077 +illusion_1L,target,110,33.0,velocity,lower_ux,0.6811863780021667 +illusion_1L,target,110,33.0,velocity,lower_uy,-0.05226829648017883 +illusion_1L,target,111,33.3,velocity,upper_ux,1.4252049922943115 +illusion_1L,target,111,33.3,velocity,upper_uy,-0.233506441116333 +illusion_1L,target,111,33.3,velocity,center_ux,0.8386428952217102 +illusion_1L,target,111,33.3,velocity,center_uy,-0.007028978783637285 +illusion_1L,target,111,33.3,velocity,lower_ux,0.6806486248970032 +illusion_1L,target,111,33.3,velocity,lower_uy,0.08016687631607056 +illusion_1L,target,112,33.6,velocity,upper_ux,1.3450369834899902 +illusion_1L,target,112,33.6,velocity,upper_uy,0.04842384159564972 +illusion_1L,target,112,33.6,velocity,center_ux,0.8319995403289795 +illusion_1L,target,112,33.6,velocity,center_uy,0.3262357711791992 +illusion_1L,target,112,33.6,velocity,lower_ux,0.7205387949943542 +illusion_1L,target,112,33.6,velocity,lower_uy,0.17982465028762817 +illusion_1L,target,113,33.9,velocity,upper_ux,1.2357220649719238 +illusion_1L,target,113,33.9,velocity,upper_uy,0.2854044735431671 +illusion_1L,target,113,33.9,velocity,center_ux,0.8539968729019165 +illusion_1L,target,113,33.9,velocity,center_uy,0.5552148818969727 +illusion_1L,target,113,33.9,velocity,lower_ux,0.7840527892112732 +illusion_1L,target,113,33.9,velocity,lower_uy,0.24150636792182922 +illusion_1L,target,114,34.2,velocity,upper_ux,1.1451319456100464 +illusion_1L,target,114,34.2,velocity,upper_uy,0.39831429719924927 +illusion_1L,target,114,34.2,velocity,center_ux,0.8916197419166565 +illusion_1L,target,114,34.2,velocity,center_uy,0.6311557292938232 +illusion_1L,target,114,34.2,velocity,lower_ux,0.8499089479446411 +illusion_1L,target,114,34.2,velocity,lower_uy,0.2844642698764801 +illusion_1L,target,115,34.5,velocity,upper_ux,1.0776232481002808 +illusion_1L,target,115,34.5,velocity,upper_uy,0.4238761365413666 +illusion_1L,target,115,34.5,velocity,center_ux,0.9287343621253967 +illusion_1L,target,115,34.5,velocity,center_uy,0.620580792427063 +illusion_1L,target,115,34.5,velocity,lower_ux,0.9113789796829224 +illusion_1L,target,115,34.5,velocity,lower_uy,0.31932196021080017 +illusion_1L,target,116,34.8,velocity,upper_ux,1.022986888885498 +illusion_1L,target,116,34.8,velocity,upper_uy,0.4201224446296692 +illusion_1L,target,116,34.8,velocity,center_ux,0.9565972089767456 +illusion_1L,target,116,34.8,velocity,center_uy,0.606499433517456 +illusion_1L,target,116,34.8,velocity,lower_ux,0.9694714546203613 +illusion_1L,target,116,34.8,velocity,lower_uy,0.34813985228538513 +illusion_1L,target,117,35.1,velocity,upper_ux,0.9716428518295288 +illusion_1L,target,117,35.1,velocity,upper_uy,0.41202524304389954 +illusion_1L,target,117,35.1,velocity,center_ux,0.9759048223495483 +illusion_1L,target,117,35.1,velocity,center_uy,0.6096157431602478 +illusion_1L,target,117,35.1,velocity,lower_ux,1.0263299942016602 +illusion_1L,target,117,35.1,velocity,lower_uy,0.37276071310043335 +illusion_1L,target,118,35.4,velocity,upper_ux,0.9184737205505371 +illusion_1L,target,118,35.4,velocity,upper_uy,0.39916273951530457 +illusion_1L,target,118,35.4,velocity,center_ux,0.9885935187339783 +illusion_1L,target,118,35.4,velocity,center_uy,0.6281757354736328 +illusion_1L,target,118,35.4,velocity,lower_ux,1.0844179391860962 +illusion_1L,target,118,35.4,velocity,lower_uy,0.39478522539138794 +illusion_1L,target,119,35.7,velocity,upper_ux,0.8609083294868469 +illusion_1L,target,119,35.7,velocity,upper_uy,0.37222519516944885 +illusion_1L,target,119,35.7,velocity,center_ux,0.9935559034347534 +illusion_1L,target,119,35.7,velocity,center_uy,0.6562974452972412 +illusion_1L,target,119,35.7,velocity,lower_ux,1.146555781364441 +illusion_1L,target,119,35.7,velocity,lower_uy,0.41495904326438904 +illusion_1L,target,120,36.0,velocity,upper_ux,0.7992766499519348 +illusion_1L,target,120,36.0,velocity,upper_uy,0.3190014958381653 +illusion_1L,target,120,36.0,velocity,center_ux,0.9844613671302795 +illusion_1L,target,120,36.0,velocity,center_uy,0.6727388501167297 +illusion_1L,target,120,36.0,velocity,lower_ux,1.2160773277282715 +illusion_1L,target,120,36.0,velocity,lower_uy,0.4327833652496338 +illusion_1L,target,121,36.3,velocity,upper_ux,0.7392833232879639 +illusion_1L,target,121,36.3,velocity,upper_uy,0.22982333600521088 +illusion_1L,target,121,36.3,velocity,center_ux,0.9520668387413025 +illusion_1L,target,121,36.3,velocity,center_uy,0.6243239045143127 +illusion_1L,target,121,36.3,velocity,lower_ux,1.296512484550476 +illusion_1L,target,121,36.3,velocity,lower_uy,0.4442996680736542 +illusion_1L,target,122,36.6,velocity,upper_ux,0.6930574774742126 +illusion_1L,target,122,36.6,velocity,upper_uy,0.1063951775431633 +illusion_1L,target,122,36.6,velocity,center_ux,0.899466335773468 +illusion_1L,target,122,36.6,velocity,center_uy,0.4477252662181854 +illusion_1L,target,122,36.6,velocity,lower_ux,1.3829081058502197 +illusion_1L,target,122,36.6,velocity,lower_uy,0.4288731813430786 +illusion_1L,target,123,36.9,velocity,upper_ux,0.676282525062561 +illusion_1L,target,123,36.9,velocity,upper_uy,-0.030470609664916992 +illusion_1L,target,123,36.9,velocity,center_ux,0.8511551022529602 +illusion_1L,target,123,36.9,velocity,center_uy,0.1442703753709793 +illusion_1L,target,123,36.9,velocity,lower_ux,1.431855320930481 +illusion_1L,target,123,36.9,velocity,lower_uy,0.31901785731315613 +illusion_1L,target,124,37.2,velocity,upper_ux,0.70006263256073 +illusion_1L,target,124,37.2,velocity,upper_uy,-0.1458730548620224 +illusion_1L,target,124,37.2,velocity,center_ux,0.8304528594017029 +illusion_1L,target,124,37.2,velocity,center_uy,-0.20204044878482819 +illusion_1L,target,124,37.2,velocity,lower_ux,1.384121060371399 +illusion_1L,target,124,37.2,velocity,lower_uy,0.0670352354645729 +illusion_1L,target,125,37.5,velocity,upper_ux,0.7565778493881226 +illusion_1L,target,125,37.5,velocity,upper_uy,-0.22069114446640015 +illusion_1L,target,125,37.5,velocity,center_ux,0.8415740728378296 +illusion_1L,target,125,37.5,velocity,center_uy,-0.4828217625617981 +illusion_1L,target,125,37.5,velocity,lower_ux,1.276515245437622 +illusion_1L,target,125,37.5,velocity,lower_uy,-0.2053772658109665 +illusion_1L,target,126,37.8,velocity,upper_ux,0.8233069181442261 +illusion_1L,target,126,37.8,velocity,upper_uy,-0.2688179612159729 +illusion_1L,target,126,37.8,velocity,center_ux,0.8750549554824829 +illusion_1L,target,126,37.8,velocity,center_uy,-0.6173108220100403 +illusion_1L,target,126,37.8,velocity,lower_ux,1.1766787767410278 +illusion_1L,target,126,37.8,velocity,lower_uy,-0.3673742413520813 +illusion_1L,target,127,38.1,velocity,upper_ux,0.8873469233512878 +illusion_1L,target,127,38.1,velocity,upper_uy,-0.30644652247428894 +illusion_1L,target,127,38.1,velocity,center_ux,0.9147711396217346 +illusion_1L,target,127,38.1,velocity,center_uy,-0.6283175945281982 +illusion_1L,target,127,38.1,velocity,lower_ux,1.1017364263534546 +illusion_1L,target,127,38.1,velocity,lower_uy,-0.41982415318489075 +illusion_1L,target,128,38.4,velocity,upper_ux,0.94745272397995 +illusion_1L,target,128,38.4,velocity,upper_uy,-0.33746519684791565 +illusion_1L,target,128,38.4,velocity,center_ux,0.947388231754303 +illusion_1L,target,128,38.4,velocity,center_uy,-0.6101723909378052 +illusion_1L,target,128,38.4,velocity,lower_ux,1.044297695159912 +illusion_1L,target,128,38.4,velocity,lower_uy,-0.4226357042789459 +illusion_1L,target,129,38.7,velocity,upper_ux,1.0050773620605469 +illusion_1L,target,129,38.7,velocity,upper_uy,-0.36353588104248047 +illusion_1L,target,129,38.7,velocity,center_ux,0.9702035784721375 +illusion_1L,target,129,38.7,velocity,center_uy,-0.606438934803009 +illusion_1L,target,129,38.7,velocity,lower_ux,0.992932140827179 +illusion_1L,target,129,38.7,velocity,lower_uy,-0.4154049754142761 +illusion_1L,target,130,39.0,velocity,upper_ux,1.0621663331985474 +illusion_1L,target,130,39.0,velocity,upper_uy,-0.3864615559577942 +illusion_1L,target,130,39.0,velocity,center_ux,0.985102117061615 +illusion_1L,target,130,39.0,velocity,center_uy,-0.6194085478782654 +illusion_1L,target,130,39.0,velocity,lower_ux,0.9405799508094788 +illusion_1L,target,130,39.0,velocity,lower_uy,-0.40525150299072266 +illusion_1L,target,131,39.3,velocity,upper_ux,1.1214594841003418 +illusion_1L,target,131,39.3,velocity,upper_uy,-0.4073367416858673 +illusion_1L,target,131,39.3,velocity,center_ux,0.9925596117973328 +illusion_1L,target,131,39.3,velocity,center_uy,-0.6451392769813538 +illusion_1L,target,131,39.3,velocity,lower_ux,0.8839564919471741 +illusion_1L,target,131,39.3,velocity,lower_uy,-0.38527339696884155 +illusion_1L,target,132,39.6,velocity,upper_ux,1.1867423057556152 +illusion_1L,target,132,39.6,velocity,upper_uy,-0.4262220859527588 +illusion_1L,target,132,39.6,velocity,center_ux,0.9892274737358093 +illusion_1L,target,132,39.6,velocity,center_uy,-0.6705763936042786 +illusion_1L,target,132,39.6,velocity,lower_ux,0.8227558732032776 +illusion_1L,target,132,39.6,velocity,lower_uy,-0.3439768850803375 +illusion_1L,target,133,39.9,velocity,upper_ux,1.2623785734176636 +illusion_1L,target,133,39.9,velocity,upper_uy,-0.44114792346954346 +illusion_1L,target,133,39.9,velocity,center_ux,0.9666703343391418 +illusion_1L,target,133,39.9,velocity,center_uy,-0.6560871601104736 +illusion_1L,target,133,39.9,velocity,lower_ux,0.7609206438064575 +illusion_1L,target,133,39.9,velocity,lower_uy,-0.2698453664779663 +illusion_1L,target,134,40.2,velocity,upper_ux,1.3492439985275269 +illusion_1L,target,134,40.2,velocity,upper_uy,-0.4411626160144806 +illusion_1L,target,134,40.2,velocity,center_ux,0.9208084940910339 +illusion_1L,target,134,40.2,velocity,center_uy,-0.535292387008667 +illusion_1L,target,134,40.2,velocity,lower_ux,0.7081145644187927 +illusion_1L,target,134,40.2,velocity,lower_uy,-0.1588614583015442 +illusion_1L,target,135,40.5,velocity,upper_ux,1.422458529472351 +illusion_1L,target,135,40.5,velocity,upper_uy,-0.3794342875480652 +illusion_1L,target,135,40.5,velocity,center_ux,0.8681923151016235 +illusion_1L,target,135,40.5,velocity,center_uy,-0.2754541337490082 +illusion_1L,target,135,40.5,velocity,lower_ux,0.6786438226699829 +illusion_1L,target,135,40.5,velocity,lower_uy,-0.023571928963065147 +illusion_1L,target,136,40.8,velocity,upper_ux,1.4159603118896484 +illusion_1L,target,136,40.8,velocity,upper_uy,-0.17881633341312408 +illusion_1L,target,136,40.8,velocity,center_ux,0.8357768058776855 +illusion_1L,target,136,40.8,velocity,center_uy,0.06708379834890366 +illusion_1L,target,136,40.8,velocity,lower_ux,0.6865783929824829 +illusion_1L,target,136,40.8,velocity,lower_uy,0.10456959903240204 +illusion_1L,target,137,41.1,velocity,upper_ux,1.3219020366668701 +illusion_1L,target,137,41.1,velocity,upper_uy,0.10723727941513062 +illusion_1L,target,137,41.1,velocity,center_ux,0.8350505828857422 +illusion_1L,target,137,41.1,velocity,center_uy,0.38661324977874756 +illusion_1L,target,137,41.1,velocity,lower_ux,0.7326140999794006 +illusion_1L,target,137,41.1,velocity,lower_uy,0.1955370008945465 +illusion_1L,target,138,41.4,velocity,upper_ux,1.2137151956558228 +illusion_1L,target,138,41.4,velocity,upper_uy,0.3191806674003601 +illusion_1L,target,138,41.4,velocity,center_ux,0.8607481718063354 +illusion_1L,target,138,41.4,velocity,center_uy,0.583526074886322 +illusion_1L,target,138,41.4,velocity,lower_ux,0.7971358895301819 +illusion_1L,target,138,41.4,velocity,lower_uy,0.25163617730140686 +illusion_1L,target,139,41.7,velocity,upper_ux,1.1281309127807617 +illusion_1L,target,139,41.7,velocity,upper_uy,0.40832197666168213 +illusion_1L,target,139,41.7,velocity,center_ux,0.8990272879600525 +illusion_1L,target,139,41.7,velocity,center_uy,0.6325392127037048 +illusion_1L,target,139,41.7,velocity,lower_ux,0.8617923855781555 +illusion_1L,target,139,41.7,velocity,lower_uy,0.29246196150779724 +illusion_1L,target,140,42.0,velocity,upper_ux,1.064801812171936 +illusion_1L,target,140,42.0,velocity,upper_uy,0.4237612187862396 +illusion_1L,target,140,42.0,velocity,center_ux,0.9347819089889526 +illusion_1L,target,140,42.0,velocity,center_uy,0.6164658665657043 +illusion_1L,target,140,42.0,velocity,lower_ux,0.9227805733680725 +illusion_1L,target,140,42.0,velocity,lower_uy,0.32588768005371094 +illusion_1L,target,141,42.3,velocity,upper_ux,1.0125278234481812 +illusion_1L,target,141,42.3,velocity,upper_uy,0.4182809293270111 +illusion_1L,target,141,42.3,velocity,center_ux,0.9615478515625 +illusion_1L,target,141,42.3,velocity,center_uy,0.6056585907936096 +illusion_1L,target,141,42.3,velocity,lower_ux,0.981450080871582 +illusion_1L,target,141,42.3,velocity,lower_uy,0.3536583483219147 +illusion_1L,target,142,42.6,velocity,upper_ux,0.9619651436805725 +illusion_1L,target,142,42.6,velocity,upper_uy,0.4097117781639099 +illusion_1L,target,142,42.6,velocity,center_ux,0.9801508784294128 +illusion_1L,target,142,42.6,velocity,center_uy,0.6122469305992126 +illusion_1L,target,142,42.6,velocity,lower_ux,1.0392738580703735 +illusion_1L,target,142,42.6,velocity,lower_uy,0.37765100598335266 +illusion_1L,target,143,42.9,velocity,upper_ux,0.9080420732498169 +illusion_1L,target,143,42.9,velocity,upper_uy,0.3948354721069336 +illusion_1L,target,143,42.9,velocity,center_ux,0.9914252758026123 +illusion_1L,target,143,42.9,velocity,center_uy,0.6335861086845398 +illusion_1L,target,143,42.9,velocity,lower_ux,1.0981121063232422 +illusion_1L,target,143,42.9,velocity,lower_uy,0.3992902636528015 +illusion_1L,target,144,43.2,velocity,upper_ux,0.848767101764679 +illusion_1L,target,144,43.2,velocity,upper_uy,0.3634241819381714 +illusion_1L,target,144,43.2,velocity,center_ux,0.9934011101722717 +illusion_1L,target,144,43.2,velocity,center_uy,0.6619637608528137 +illusion_1L,target,144,43.2,velocity,lower_ux,1.1609103679656982 +illusion_1L,target,144,43.2,velocity,lower_uy,0.4190821945667267 +illusion_1L,target,145,43.5,velocity,upper_ux,0.7858830094337463 +illusion_1L,target,145,43.5,velocity,upper_uy,0.3032895028591156 +illusion_1L,target,145,43.5,velocity,center_ux,0.9790694117546082 +illusion_1L,target,145,43.5,velocity,center_uy,0.6703620553016663 +illusion_1L,target,145,43.5,velocity,lower_ux,1.2315802574157715 +illusion_1L,target,145,43.5,velocity,lower_uy,0.43612807989120483 +illusion_1L,target,146,43.8,velocity,upper_ux,0.7270258069038391 +illusion_1L,target,146,43.8,velocity,upper_uy,0.20643490552902222 +illusion_1L,target,146,43.8,velocity,center_ux,0.9407669305801392 +illusion_1L,target,146,43.8,velocity,center_uy,0.5994390845298767 +illusion_1L,target,146,43.8,velocity,lower_ux,1.3137617111206055 +illusion_1L,target,146,43.8,velocity,lower_uy,0.4447944164276123 +illusion_1L,target,147,44.1,velocity,upper_ux,0.6857069730758667 +illusion_1L,target,147,44.1,velocity,upper_uy,0.07805857062339783 +illusion_1L,target,147,44.1,velocity,center_ux,0.8866935968399048 +illusion_1L,target,147,44.1,velocity,center_uy,0.39319053292274475 +illusion_1L,target,147,44.1,velocity,lower_ux,1.39777410030365 +illusion_1L,target,147,44.1,velocity,lower_uy,0.4169800877571106 +illusion_1L,target,148,44.4,velocity,upper_ux,0.6776207685470581 +illusion_1L,target,148,44.4,velocity,upper_uy,-0.05712783709168434 +illusion_1L,target,148,44.4,velocity,center_ux,0.8436645269393921 +illusion_1L,target,148,44.4,velocity,center_uy,0.07244838774204254 +illusion_1L,target,148,44.4,velocity,lower_ux,1.4304264783859253 +illusion_1L,target,148,44.4,velocity,lower_uy,0.27683618664741516 +illusion_1L,target,149,44.7,velocity,upper_ux,0.7105968594551086 +illusion_1L,target,149,44.7,velocity,upper_uy,-0.16450558602809906 +illusion_1L,target,149,44.7,velocity,center_ux,0.8308875560760498 +illusion_1L,target,149,44.7,velocity,center_uy,-0.26913073658943176 +illusion_1L,target,149,44.7,velocity,lower_ux,1.3647276163101196 +illusion_1L,target,149,44.7,velocity,lower_uy,0.005600565113127232 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_wide.csv new file mode 100644 index 0000000..cf461f3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/illusion_1L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1L,target,0,0.0,0.6983729004859924,-0.14126229286193848,0.8304986953735352,-0.18635345995426178,1.3885672092437744,0.08043750375509262 +illusion_1L,target,1,0.3,0.7547661662101746,-0.21784400939941406,0.8412449359893799,-0.47263026237487793,1.2828494310379028,-0.19510701298713684 +illusion_1L,target,2,0.6,0.8216198086738586,-0.2667813003063202,0.8742783665657043,-0.6145644783973694,1.1820602416992188,-0.3631305992603302 +illusion_1L,target,3,0.9,0.885174572467804,-0.30478572845458984,0.9134999513626099,-0.6290751695632935,1.105286717414856,-0.4192345142364502 +illusion_1L,target,4,1.2,0.9445289373397827,-0.33607423305511475,0.9457786083221436,-0.6107500195503235,1.0464181900024414,-0.4230431616306305 +illusion_1L,target,5,1.5,1.001407504081726,-0.36231234669685364,0.9683066010475159,-0.6061965227127075,0.9942237138748169,-0.4159103035926819 +illusion_1L,target,6,1.8,1.058304786682129,-0.3853265047073364,0.9835226535797119,-0.6183878779411316,0.9419796466827393,-0.405977338552475 +illusion_1L,target,7,2.1,1.1181925535202026,-0.4062759578227997,0.992266833782196,-0.6435707211494446,0.886464536190033,-0.3866558372974396 +illusion_1L,target,8,2.4,1.1841031312942505,-0.4253025949001312,0.9906624555587769,-0.6695712804794312,0.826428234577179,-0.34652939438819885 +illusion_1L,target,9,2.7,1.2597155570983887,-0.4405805468559265,0.9696959257125854,-0.6582907438278198,0.7648876905441284,-0.2738701105117798 +illusion_1L,target,10,3.0,1.345876932144165,-0.4419216811656952,0.9242352247238159,-0.5434997081756592,0.7109246253967285,-0.16415415704250336 +illusion_1L,target,11,3.3,1.4201083183288574,-0.38489678502082825,0.8703800439834595,-0.2892504930496216,0.679294764995575,-0.02926556020975113 +illusion_1L,target,12,3.6,1.417494535446167,-0.19122983515262604,0.8357431292533875,0.05155186355113983,0.6846755146980286,0.09984375536441803 +illusion_1L,target,13,3.9,1.3254985809326172,0.09448076784610748,0.8330873847007751,0.37411051988601685,0.7289074659347534,0.1924751102924347 +illusion_1L,target,14,4.2,1.2172633409500122,0.31213608384132385,0.8582859039306641,0.5778670310974121,0.7935585975646973,0.24958325922489166 +illusion_1L,target,15,4.5,1.1315243244171143,0.406453013420105,0.897360622882843,0.6324020624160767,0.8593739867210388,0.29081857204437256 +illusion_1L,target,16,4.8,1.0681689977645874,0.4239809513092041,0.9342878460884094,0.6173226833343506,0.9213393926620483,0.3245692849159241 +illusion_1L,target,17,5.1,1.0155524015426636,0.4188010096549988,0.9614630937576294,0.6058698296546936,0.9801077246665955,0.3525814116001129 +illusion_1L,target,18,5.4,0.9642856121063232,0.41031721234321594,0.9797003269195557,0.6118373870849609,1.0372512340545654,0.37670648097991943 +illusion_1L,target,19,5.7,0.9097379446029663,0.3959059715270996,0.9905156493186951,0.6327278017997742,1.0951703786849976,0.39841336011886597 +illusion_1L,target,20,6.0,0.8500766158103943,0.36554422974586487,0.9924041628837585,0.6611894965171814,1.1570379734039307,0.4182508587837219 +illusion_1L,target,21,6.3,0.7874393463134766,0.30704575777053833,0.9792081713676453,0.6714678406715393,1.2273434400558472,0.4354100525379181 +illusion_1L,target,22,6.6,0.7290897369384766,0.2119685709476471,0.942969560623169,0.6055407524108887,1.309899926185608,0.44468581676483154 +illusion_1L,target,23,6.9,0.6875748038291931,0.08456311374902725,0.8901044726371765,0.40539324283599854,1.3955861330032349,0.4196779429912567 +illusion_1L,target,24,7.2,0.6780332326889038,-0.05134623125195503,0.846434473991394,0.0875098705291748,1.4324074983596802,0.2858441472053528 +illusion_1L,target,25,7.5,0.7088071703910828,-0.1607409417629242,0.8317880630493164,-0.25583305954933167,1.3698039054870605,0.017872333526611328 +illusion_1L,target,26,7.8,0.7682589292526245,-0.22983220219612122,0.8472541570663452,-0.5165188312530518,1.2597556114196777,-0.24163371324539185 +illusion_1L,target,27,8.1,0.833916425704956,-0.2755594551563263,0.8818628787994385,-0.6254083514213562,1.1627731323242188,-0.38213562965393066 +illusion_1L,target,28,8.4,0.8961044549942017,-0.3119599521160126,0.9198834300041199,-0.6253041625022888,1.0904642343521118,-0.4218800365924835 +illusion_1L,target,29,8.7,0.9554694890975952,-0.3419894874095917,0.9506038427352905,-0.6082338690757751,1.0346441268920898,-0.4213554263114929 +illusion_1L,target,30,9.0,1.0135186910629272,-0.3674200177192688,0.9726474285125732,-0.6072787642478943,0.9842378497123718,-0.41378968954086304 +illusion_1L,target,31,9.3,1.0718872547149658,-0.3899763524532318,0.9874548316001892,-0.6225665211677551,0.9324989914894104,-0.40270113945007324 +illusion_1L,target,32,9.6,1.13270902633667,-0.41059717535972595,0.9942430853843689,-0.649543046951294,0.8758196830749512,-0.3800446689128876 +illusion_1L,target,33,9.9,1.1994432210922241,-0.4291248619556427,0.9883195161819458,-0.6721358299255371,0.8140254616737366,-0.333952397108078 +illusion_1L,target,34,10.2,1.2763181924819946,-0.44290655851364136,0.9608529806137085,-0.6449615955352783,0.7519526481628418,-0.25357070565223694 +illusion_1L,target,35,10.5,1.3626048564910889,-0.4376198947429657,0.910793662071228,-0.5015697479248047,0.7006744742393494,-0.13720360398292542 +illusion_1L,target,36,10.8,1.4270026683807373,-0.35776787996292114,0.859204888343811,-0.22267916798591614,0.6759913563728333,-0.0008290025871247053 +illusion_1L,target,37,11.1,1.4038567543029785,-0.13419033586978912,0.832051157951355,0.12309180200099945,0.6910930871963501,0.12236017733812332 +illusion_1L,target,38,11.4,1.3036417961120605,0.14963729679584503,0.8372454047203064,0.42856159806251526,0.7427989840507507,0.20635120570659637 +illusion_1L,target,39,11.7,1.199057698249817,0.3416547477245331,0.8671277761459351,0.6001474857330322,0.8091704845428467,0.2587818205356598 +illusion_1L,target,40,12.0,1.1178218126296997,0.41456881165504456,0.9063792824745178,0.631544828414917,0.8735631108283997,0.29825258255004883 +illusion_1L,target,41,12.3,1.0565133094787598,0.4238191843032837,0.9404548406600952,0.6135652661323547,0.9335751533508301,0.33068257570266724 +illusion_1L,target,42,12.6,1.003801703453064,0.4173646569252014,0.9646895527839661,0.6056805849075317,0.9907985329627991,0.3577117621898651 +illusion_1L,target,43,12.9,0.9520025849342346,0.4082261025905609,0.981227695941925,0.6149522066116333,1.047601580619812,0.38121387362480164 +illusion_1L,target,44,13.2,0.8973192572593689,0.3914344310760498,0.9913478493690491,0.6381884217262268,1.1067701578140259,0.4025072455406189 +illusion_1L,target,45,13.5,0.8380323052406311,0.3561444580554962,0.992199182510376,0.6658881306648254,1.1712769269943237,0.4219484329223633 +illusion_1L,target,46,13.8,0.7761833667755127,0.2902405858039856,0.9755032062530518,0.6661188006401062,1.2447240352630615,0.43826407194137573 +illusion_1L,target,47,14.1,0.719727098941803,0.187147855758667,0.9340565204620361,0.5755155682563782,1.3293139934539795,0.44399887323379517 +illusion_1L,target,48,14.4,0.6826725006103516,0.05512230470776558,0.8795716166496277,0.3460249602794647,1.4097743034362793,0.4039316177368164 +illusion_1L,target,49,14.7,0.6804043650627136,-0.07787429541349411,0.8397542834281921,0.014068500138819218,1.4261133670806885,0.23873203992843628 +illusion_1L,target,50,15.0,0.7183864712715149,-0.17839084565639496,0.8311590552330017,-0.32022008299827576,1.3461692333221436,-0.042076271027326584 +illusion_1L,target,51,15.3,0.7811502814292908,-0.24061685800552368,0.8520969748497009,-0.551923394203186,1.2362834215164185,-0.28119197487831116 +illusion_1L,target,52,15.6,0.8475008010864258,-0.283752977848053,0.8898975849151611,-0.6307446956634521,1.145691990852356,-0.39671310782432556 +illusion_1L,target,53,15.9,0.9101154804229736,-0.3187444806098938,0.9281083345413208,-0.621030867099762,1.0788607597351074,-0.4236421585083008 +illusion_1L,target,54,16.2,0.9692715406417847,-0.3476918935775757,0.9570781588554382,-0.6066666841506958,1.0250099897384644,-0.4201914966106415 +illusion_1L,target,55,16.5,1.0265085697174072,-0.3724066913127899,0.9767787456512451,-0.609485924243927,0.9739083647727966,-0.4121439754962921 +illusion_1L,target,56,16.8,1.0840609073638916,-0.39449119567871094,0.9889820218086243,-0.6278925538063049,0.9201934933662415,-0.39947256445884705 +illusion_1L,target,57,17.1,1.1449445486068726,-0.4146852493286133,0.9929187893867493,-0.6560572981834412,0.8615391254425049,-0.37300366163253784 +illusion_1L,target,58,17.4,1.2134222984313965,-0.43251749873161316,0.9833611845970154,-0.6731663942337036,0.7991875410079956,-0.3206133246421814 +illusion_1L,target,59,17.7,1.293688416481018,-0.44420284032821655,0.9516722559928894,-0.6268907785415649,0.7392546534538269,-0.2325294017791748 +illusion_1L,target,60,18.0,1.3810795545578003,-0.4297831356525421,0.9002586603164673,-0.45351725816726685,0.6934189200401306,-0.10994116216897964 +illusion_1L,target,61,18.3,1.4327257871627808,-0.32271015644073486,0.8526999354362488,-0.15201953053474426,0.6767774224281311,0.027043702080845833 +illusion_1L,target,62,18.6,1.387622594833374,-0.07277999073266983,0.8319743275642395,0.19492821395397186,0.700151801109314,0.14354370534420013 +illusion_1L,target,63,18.9,1.280153512954712,0.20094922184944153,0.8423728346824646,0.47848567366600037,0.7560127973556519,0.21940134465694427 +illusion_1L,target,64,19.2,1.1788431406021118,0.36527809500694275,0.8745833039283752,0.6162782907485962,0.8217872381210327,0.2679349184036255 +illusion_1L,target,65,19.5,1.1023625135421753,0.4191778302192688,0.9131931662559509,0.628760576248169,0.8848125338554382,0.3056969940662384 +illusion_1L,target,66,19.8,1.044456958770752,0.4224662482738495,0.9456732273101807,0.6104074120521545,0.9446523189544678,0.33680257201194763 +illusion_1L,target,67,20.1,0.993675947189331,0.41534700989723206,0.9692034721374512,0.606151282787323,1.002837061882019,0.36294615268707275 +illusion_1L,target,68,20.4,0.9424554705619812,0.40533947944641113,0.9852536916732788,0.6186524033546448,1.0609381198883057,0.3859389126300812 +illusion_1L,target,69,20.7,0.8867383599281311,0.3856801688671112,0.9936476349830627,0.6441025733947754,1.1209858655929565,0.406891405582428 +illusion_1L,target,70,21.0,0.8256829977035522,0.3449138402938843,0.9906754493713379,0.669868528842926,1.1862714290618896,0.425888329744339 +illusion_1L,target,71,21.3,0.7630183696746826,0.2714807093143463,0.9678314328193665,0.6569983959197998,1.2609763145446777,0.44102391600608826 +illusion_1L,target,72,21.6,0.7087013721466064,0.1612478792667389,0.9211483597755432,0.539326548576355,1.3465012311935425,0.44174930453300476 +illusion_1L,target,73,21.9,0.6779194474220276,0.02644106186926365,0.8676727414131165,0.2827868163585663,1.4199589490890503,0.38253000378608704 +illusion_1L,target,74,22.2,0.685157299041748,-0.10196152329444885,0.8347639441490173,-0.0583910308778286,1.4162367582321167,0.18562260270118713 +illusion_1L,target,75,22.5,0.7313327789306641,-0.19372957944869995,0.8341378569602966,-0.3795827031135559,1.3245060443878174,-0.10049194097518921 +illusion_1L,target,76,22.8,0.7966287732124329,-0.25038662552833557,0.8603287935256958,-0.5804798603057861,1.2169580459594727,-0.3158150613307953 +illusion_1L,target,77,23.1,0.8618109226226807,-0.2914813160896301,0.8990594744682312,-0.6324783563613892,1.1310807466506958,-0.4077463150024414 +illusion_1L,target,78,23.4,0.9225285649299622,-0.325102299451828,0.9347730278968811,-0.6168922781944275,1.066888451576233,-0.424165278673172 +illusion_1L,target,79,23.7,0.9801575541496277,-0.3529911935329437,0.9607917070388794,-0.6057753562927246,1.0133758783340454,-0.41877004504203796 +illusion_1L,target,80,24.0,1.0369492769241333,-0.3770272433757782,0.9786878228187561,-0.6120212078094482,0.9618832468986511,-0.4102224111557007 +illusion_1L,target,81,24.3,1.0955195426940918,-0.3986768424510956,0.9901137351989746,-0.6330278515815735,0.9079874753952026,-0.3955761790275574 +illusion_1L,target,82,24.6,1.1587716341018677,-0.4184965491294861,0.9931418895721436,-0.6613653898239136,0.8495354652404785,-0.364683598279953 +illusion_1L,target,83,24.9,1.23018217086792,-0.43564197421073914,0.9804172515869141,-0.6707673668861389,0.7876703143119812,-0.3052784204483032 +illusion_1L,target,84,25.2,1.3127999305725098,-0.4446758031845093,0.9433856010437012,-0.6023996472358704,0.7292142510414124,-0.20907188951969147 +illusion_1L,target,85,25.5,1.3971843719482422,-0.41836604475975037,0.8893311619758606,-0.3990226089954376,0.6872932314872742,-0.08091165125370026 +illusion_1L,target,86,25.8,1.4309349060058594,-0.28155195713043213,0.8449066281318665,-0.07958611845970154,0.6776018738746643,0.05468308925628662 +illusion_1L,target,87,26.1,1.3659119606018066,-0.012160366401076317,0.8302639722824097,0.262638658285141,0.7087159156799316,0.1628844141960144 +illusion_1L,target,88,26.4,1.2560786008834839,0.2455744445323944,0.846491277217865,0.5202170014381409,0.7687861919403076,0.23103342950344086 +illusion_1L,target,89,26.7,1.1607334613800049,0.3838348686695099,0.882427453994751,0.6259675025939941,0.8354777097702026,0.27642691135406494 +illusion_1L,target,90,27.0,1.0900204181671143,0.4223652482032776,0.9215938448905945,0.6248177886009216,0.8987879157066345,0.31270644068717957 +illusion_1L,target,91,27.3,1.0345752239227295,0.42149117588996887,0.9523910284042358,0.6081022620201111,0.9583901166915894,0.3426573574542999 +illusion_1L,target,92,27.6,0.9834495782852173,0.41382676362991333,0.9736156463623047,0.6076797842979431,1.0157891511917114,0.3680196702480316 +illusion_1L,target,93,27.9,0.9304698705673218,0.40256381034851074,0.9871715307235718,0.6234365105628967,1.0730648040771484,0.3905082046985626 +illusion_1L,target,94,28.2,0.8728376030921936,0.3795526623725891,0.9929527640342712,0.6506420969963074,1.1330935955047607,0.411045104265213 +illusion_1L,target,95,28.5,0.81097811460495,0.33290746808052063,0.9866805076599121,0.6727190613746643,1.1998968124389648,0.4294428527355194 +illusion_1L,target,96,28.8,0.7498968839645386,0.2518380880355835,0.9595990180969238,0.6436119079589844,1.2778267860412598,0.44295960664749146 +illusion_1L,target,97,29.1,0.7003023624420166,0.1347704827785492,0.9105638861656189,0.4969099462032318,1.3654831647872925,0.43673181533813477 +illusion_1L,target,98,29.4,0.6769967079162598,-0.0019865885842591524,0.8599867820739746,0.2149042785167694,1.4292988777160645,0.3538898229598999 +illusion_1L,target,99,29.7,0.6927016973495483,-0.12480775266885757,0.8332958817481995,-0.13177284598350525,1.4032171964645386,0.12687788903713226 +illusion_1L,target,100,30.0,0.7440783381462097,-0.20802463591098785,0.8382748961448669,-0.43504536151885986,1.3009674549102783,-0.1559833139181137 +illusion_1L,target,101,30.3,0.8095168471336365,-0.2599804103374481,0.8675053119659424,-0.6025006175041199,1.1958253383636475,-0.34440094232559204 +illusion_1L,target,102,30.6,0.8733786940574646,-0.29919910430908203,0.9062210321426392,-0.6313776969909668,1.1148912906646729,-0.41480064392089844 +illusion_1L,target,103,30.9,0.9337600469589233,-0.3314395546913147,0.9404029250144958,-0.613177478313446,1.0544867515563965,-0.4233179986476898 +illusion_1L,target,104,31.2,0.9921529293060303,-0.35836222767829895,0.9655091166496277,-0.6056051850318909,1.0030949115753174,-0.4168393313884735 +illusion_1L,target,105,31.5,1.0500729084014893,-0.3818323314189911,0.9828177690505981,-0.6152036786079407,0.9522715210914612,-0.40765583515167236 +illusion_1L,target,106,31.8,1.1094619035720825,-0.4031224548816681,0.9926960468292236,-0.638745129108429,0.8974788188934326,-0.3905832767486572 +illusion_1L,target,107,32.1,1.173435091972351,-0.42253556847572327,0.9923474192619324,-0.6663612127304077,0.8372755646705627,-0.35471421480178833 +illusion_1L,target,108,32.4,1.2460626363754272,-0.43873274326324463,0.9739063382148743,-0.6653024554252625,0.7743539214134216,-0.28805485367774963 +illusion_1L,target,109,32.7,1.3301323652267456,-0.4439912438392639,0.9312021136283875,-0.5719441175460815,0.7175199389457703,-0.1843697428703308 +illusion_1L,target,110,33.0,1.4100298881530762,-0.40208083391189575,0.8768922686576843,-0.3398251235485077,0.6811863780021667,-0.05226829648017883 +illusion_1L,target,111,33.3,1.4252049922943115,-0.233506441116333,0.8386428952217102,-0.007028978783637285,0.6806486248970032,0.08016687631607056 +illusion_1L,target,112,33.6,1.3450369834899902,0.04842384159564972,0.8319995403289795,0.3262357711791992,0.7205387949943542,0.17982465028762817 +illusion_1L,target,113,33.9,1.2357220649719238,0.2854044735431671,0.8539968729019165,0.5552148818969727,0.7840527892112732,0.24150636792182922 +illusion_1L,target,114,34.2,1.1451319456100464,0.39831429719924927,0.8916197419166565,0.6311557292938232,0.8499089479446411,0.2844642698764801 +illusion_1L,target,115,34.5,1.0776232481002808,0.4238761365413666,0.9287343621253967,0.620580792427063,0.9113789796829224,0.31932196021080017 +illusion_1L,target,116,34.8,1.022986888885498,0.4201224446296692,0.9565972089767456,0.606499433517456,0.9694714546203613,0.34813985228538513 +illusion_1L,target,117,35.1,0.9716428518295288,0.41202524304389954,0.9759048223495483,0.6096157431602478,1.0263299942016602,0.37276071310043335 +illusion_1L,target,118,35.4,0.9184737205505371,0.39916273951530457,0.9885935187339783,0.6281757354736328,1.0844179391860962,0.39478522539138794 +illusion_1L,target,119,35.7,0.8609083294868469,0.37222519516944885,0.9935559034347534,0.6562974452972412,1.146555781364441,0.41495904326438904 +illusion_1L,target,120,36.0,0.7992766499519348,0.3190014958381653,0.9844613671302795,0.6727388501167297,1.2160773277282715,0.4327833652496338 +illusion_1L,target,121,36.3,0.7392833232879639,0.22982333600521088,0.9520668387413025,0.6243239045143127,1.296512484550476,0.4442996680736542 +illusion_1L,target,122,36.6,0.6930574774742126,0.1063951775431633,0.899466335773468,0.4477252662181854,1.3829081058502197,0.4288731813430786 +illusion_1L,target,123,36.9,0.676282525062561,-0.030470609664916992,0.8511551022529602,0.1442703753709793,1.431855320930481,0.31901785731315613 +illusion_1L,target,124,37.2,0.70006263256073,-0.1458730548620224,0.8304528594017029,-0.20204044878482819,1.384121060371399,0.0670352354645729 +illusion_1L,target,125,37.5,0.7565778493881226,-0.22069114446640015,0.8415740728378296,-0.4828217625617981,1.276515245437622,-0.2053772658109665 +illusion_1L,target,126,37.8,0.8233069181442261,-0.2688179612159729,0.8750549554824829,-0.6173108220100403,1.1766787767410278,-0.3673742413520813 +illusion_1L,target,127,38.1,0.8873469233512878,-0.30644652247428894,0.9147711396217346,-0.6283175945281982,1.1017364263534546,-0.41982415318489075 +illusion_1L,target,128,38.4,0.94745272397995,-0.33746519684791565,0.947388231754303,-0.6101723909378052,1.044297695159912,-0.4226357042789459 +illusion_1L,target,129,38.7,1.0050773620605469,-0.36353588104248047,0.9702035784721375,-0.606438934803009,0.992932140827179,-0.4154049754142761 +illusion_1L,target,130,39.0,1.0621663331985474,-0.3864615559577942,0.985102117061615,-0.6194085478782654,0.9405799508094788,-0.40525150299072266 +illusion_1L,target,131,39.3,1.1214594841003418,-0.4073367416858673,0.9925596117973328,-0.6451392769813538,0.8839564919471741,-0.38527339696884155 +illusion_1L,target,132,39.6,1.1867423057556152,-0.4262220859527588,0.9892274737358093,-0.6705763936042786,0.8227558732032776,-0.3439768850803375 +illusion_1L,target,133,39.9,1.2623785734176636,-0.44114792346954346,0.9666703343391418,-0.6560871601104736,0.7609206438064575,-0.2698453664779663 +illusion_1L,target,134,40.2,1.3492439985275269,-0.4411626160144806,0.9208084940910339,-0.535292387008667,0.7081145644187927,-0.1588614583015442 +illusion_1L,target,135,40.5,1.422458529472351,-0.3794342875480652,0.8681923151016235,-0.2754541337490082,0.6786438226699829,-0.023571928963065147 +illusion_1L,target,136,40.8,1.4159603118896484,-0.17881633341312408,0.8357768058776855,0.06708379834890366,0.6865783929824829,0.10456959903240204 +illusion_1L,target,137,41.1,1.3219020366668701,0.10723727941513062,0.8350505828857422,0.38661324977874756,0.7326140999794006,0.1955370008945465 +illusion_1L,target,138,41.4,1.2137151956558228,0.3191806674003601,0.8607481718063354,0.583526074886322,0.7971358895301819,0.25163617730140686 +illusion_1L,target,139,41.7,1.1281309127807617,0.40832197666168213,0.8990272879600525,0.6325392127037048,0.8617923855781555,0.29246196150779724 +illusion_1L,target,140,42.0,1.064801812171936,0.4237612187862396,0.9347819089889526,0.6164658665657043,0.9227805733680725,0.32588768005371094 +illusion_1L,target,141,42.3,1.0125278234481812,0.4182809293270111,0.9615478515625,0.6056585907936096,0.981450080871582,0.3536583483219147 +illusion_1L,target,142,42.6,0.9619651436805725,0.4097117781639099,0.9801508784294128,0.6122469305992126,1.0392738580703735,0.37765100598335266 +illusion_1L,target,143,42.9,0.9080420732498169,0.3948354721069336,0.9914252758026123,0.6335861086845398,1.0981121063232422,0.3992902636528015 +illusion_1L,target,144,43.2,0.848767101764679,0.3634241819381714,0.9934011101722717,0.6619637608528137,1.1609103679656982,0.4190821945667267 +illusion_1L,target,145,43.5,0.7858830094337463,0.3032895028591156,0.9790694117546082,0.6703620553016663,1.2315802574157715,0.43612807989120483 +illusion_1L,target,146,43.8,0.7270258069038391,0.20643490552902222,0.9407669305801392,0.5994390845298767,1.3137617111206055,0.4447944164276123 +illusion_1L,target,147,44.1,0.6857069730758667,0.07805857062339783,0.8866935968399048,0.39319053292274475,1.39777410030365,0.4169800877571106 +illusion_1L,target,148,44.4,0.6776207685470581,-0.05712783709168434,0.8436645269393921,0.07244838774204254,1.4304264783859253,0.27683618664741516 +illusion_1L,target,149,44.7,0.7105968594551086,-0.16450558602809906,0.8308875560760498,-0.26913073658943176,1.3647276163101196,0.005600565113127232 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv new file mode 100644 index 0000000..52423fc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re100,sr,60,24.0,30,0.9372548518857609,-4,0.9745335519313812,0.9691152239839236,0.7798721452554067,0.9547217545409997,0.9741522252559662,0.9711342103468875 +karman_re100,sr,90,36.0,30,0.9454848780193262,8,0.9743284344673157,0.9808834161919852,0.7945391893386841,0.9760643295943737,0.9724507133165995,0.9746431852069993 +karman_re100,sr,120,48.0,30,0.9452570197845084,2,0.9717053294181823,0.9739698565875491,0.8017132818698883,0.9720470073322455,0.9740455031394959,0.9780611403596898 +karman_re100,sr,150,60.0,30,0.9424268900623755,-4,0.9762631436189015,0.9702513226618369,0.7985297322273255,0.9636096748833854,0.9765044371287028,0.969403029854099 +karman_re100,sr,180,72.0,30,0.9345682404366219,7,0.9767350673675537,0.95868325640137,0.7928440014521281,0.9426499486279984,0.9762693484624226,0.9602278203082582 +karman_re100,sr,210,84.0,30,0.9384464889971746,1,0.9760603030522664,0.9626216807092229,0.8017852246761322,0.9476053257783253,0.9777448793252309,0.9648615204418699 +karman_re100,sr,240,96.0,30,0.9371274957226383,-4,0.9785711884498596,0.9628494939611604,0.7993068814277648,0.9391625598073006,0.9775390207767487,0.9653358299129953 +karman_re100,sr,270,108.0,30,0.9371098755910579,7,0.9763200918833415,0.968915433002015,0.7929624080657959,0.9408784811695416,0.9776803294817606,0.9659025099438926 +karman_re100,sr,300,120.0,30,0.9431909037171863,1,0.9756594697634379,0.9719759513313572,0.8010354578495026,0.9586869830886523,0.973784343401591,0.9780032168685769 +karman_re100,sr,330,132.0,30,0.9433617653532161,-5,0.9737372636795044,0.9764296462138494,0.8008249541123709,0.9624146886169911,0.9721313198407491,0.9746327196558316 +karman_re100,sr,360,144.0,30,0.9446725408339666,7,0.975130969285965,0.9771420733692745,0.7933380663394928,0.9755119025707245,0.9716653068860371,0.9752469265523056 +karman_re100,sr,390,156.0,30,0.9449669093462743,1,0.9730100234349569,0.9727053860202431,0.8002462744712829,0.9709944259375334,0.9757174054781595,0.9771279407354693 +karman_re100,sr,400,160.0,30,0.9443393169281383,-7,0.9762412130832672,0.9753058478236198,0.8019972602526346,0.967667116286854,0.9728509267171224,0.9719735374053319 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_long.csv new file mode 100644 index 0000000..714ccb8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,sr,0,0.0,velocity,upper_ux,1.0401549339294434 +karman_re100,sr,0,0.0,velocity,upper_uy,0.27067646384239197 +karman_re100,sr,0,0.0,velocity,center_ux,0.9575923085212708 +karman_re100,sr,0,0.0,velocity,center_uy,0.3782854378223419 +karman_re100,sr,0,0.0,velocity,lower_ux,1.030598759651184 +karman_re100,sr,0,0.0,velocity,lower_uy,0.2909727394580841 +karman_re100,sr,1,0.4,velocity,upper_ux,0.9977376461029053 +karman_re100,sr,1,0.4,velocity,upper_uy,0.28605449199676514 +karman_re100,sr,1,0.4,velocity,center_ux,0.9638333320617676 +karman_re100,sr,1,0.4,velocity,center_uy,0.3853096067905426 +karman_re100,sr,1,0.4,velocity,lower_ux,1.073447346687317 +karman_re100,sr,1,0.4,velocity,lower_uy,0.30106234550476074 +karman_re100,sr,2,0.8,velocity,upper_ux,0.9616737365722656 +karman_re100,sr,2,0.8,velocity,upper_uy,0.26745879650115967 +karman_re100,sr,2,0.8,velocity,center_ux,0.9682336449623108 +karman_re100,sr,2,0.8,velocity,center_uy,0.35322242975234985 +karman_re100,sr,2,0.8,velocity,lower_ux,1.11396324634552 +karman_re100,sr,2,0.8,velocity,lower_uy,0.28308922052383423 +karman_re100,sr,3,1.2,velocity,upper_ux,0.9374970197677612 +karman_re100,sr,3,1.2,velocity,upper_uy,0.2152254432439804 +karman_re100,sr,3,1.2,velocity,center_ux,0.9651868343353271 +karman_re100,sr,3,1.2,velocity,center_uy,0.2822495400905609 +karman_re100,sr,3,1.2,velocity,lower_ux,1.153838038444519 +karman_re100,sr,3,1.2,velocity,lower_uy,0.24987411499023438 +karman_re100,sr,4,1.6,velocity,upper_ux,0.9241757988929749 +karman_re100,sr,4,1.6,velocity,upper_uy,0.13206905126571655 +karman_re100,sr,4,1.6,velocity,center_ux,0.9533326029777527 +karman_re100,sr,4,1.6,velocity,center_uy,0.16454719007015228 +karman_re100,sr,4,1.6,velocity,lower_ux,1.1853464841842651 +karman_re100,sr,4,1.6,velocity,lower_uy,0.19303825497627258 +karman_re100,sr,5,2.0,velocity,upper_ux,0.916933000087738 +karman_re100,sr,5,2.0,velocity,upper_uy,0.018589986488223076 +karman_re100,sr,5,2.0,velocity,center_ux,0.9453640580177307 +karman_re100,sr,5,2.0,velocity,center_uy,0.017415769398212433 +karman_re100,sr,5,2.0,velocity,lower_ux,1.1895207166671753 +karman_re100,sr,5,2.0,velocity,lower_uy,0.0927308052778244 +karman_re100,sr,6,2.4,velocity,upper_ux,0.9201483130455017 +karman_re100,sr,6,2.4,velocity,upper_uy,-0.10432610660791397 +karman_re100,sr,6,2.4,velocity,center_ux,0.9481618404388428 +karman_re100,sr,6,2.4,velocity,center_uy,-0.11971280723810196 +karman_re100,sr,6,2.4,velocity,lower_ux,1.1576118469238281 +karman_re100,sr,6,2.4,velocity,lower_uy,-0.039938658475875854 +karman_re100,sr,7,2.8,velocity,upper_ux,0.9443206787109375 +karman_re100,sr,7,2.8,velocity,upper_uy,-0.19308003783226013 +karman_re100,sr,7,2.8,velocity,center_ux,0.9501010775566101 +karman_re100,sr,7,2.8,velocity,center_uy,-0.2408064305782318 +karman_re100,sr,7,2.8,velocity,lower_ux,1.1171640157699585 +karman_re100,sr,7,2.8,velocity,lower_uy,-0.14988867938518524 +karman_re100,sr,8,3.2,velocity,upper_ux,0.9835368990898132 +karman_re100,sr,8,3.2,velocity,upper_uy,-0.24844612181186676 +karman_re100,sr,8,3.2,velocity,center_ux,0.9522373080253601 +karman_re100,sr,8,3.2,velocity,center_uy,-0.3281680643558502 +karman_re100,sr,8,3.2,velocity,lower_ux,1.0841704607009888 +karman_re100,sr,8,3.2,velocity,lower_uy,-0.22013038396835327 +karman_re100,sr,9,3.6,velocity,upper_ux,1.026362419128418 +karman_re100,sr,9,3.6,velocity,upper_uy,-0.28676775097846985 +karman_re100,sr,9,3.6,velocity,center_ux,0.9577586650848389 +karman_re100,sr,9,3.6,velocity,center_uy,-0.3716541528701782 +karman_re100,sr,9,3.6,velocity,lower_ux,1.0456578731536865 +karman_re100,sr,9,3.6,velocity,lower_uy,-0.26438912749290466 +karman_re100,sr,10,4.0,velocity,upper_ux,1.0671535730361938 +karman_re100,sr,10,4.0,velocity,upper_uy,-0.29820042848587036 +karman_re100,sr,10,4.0,velocity,center_ux,0.9622214436531067 +karman_re100,sr,10,4.0,velocity,center_uy,-0.37907153367996216 +karman_re100,sr,10,4.0,velocity,lower_ux,1.0030717849731445 +karman_re100,sr,10,4.0,velocity,lower_uy,-0.2795366942882538 +karman_re100,sr,11,4.4,velocity,upper_ux,1.1057552099227905 +karman_re100,sr,11,4.4,velocity,upper_uy,-0.28167450428009033 +karman_re100,sr,11,4.4,velocity,center_ux,0.9650546312332153 +karman_re100,sr,11,4.4,velocity,center_uy,-0.34793704748153687 +karman_re100,sr,11,4.4,velocity,lower_ux,0.967028796672821 +karman_re100,sr,11,4.4,velocity,lower_uy,-0.2610883414745331 +karman_re100,sr,12,4.8,velocity,upper_ux,1.1437278985977173 +karman_re100,sr,12,4.8,velocity,upper_uy,-0.25050002336502075 +karman_re100,sr,12,4.8,velocity,center_ux,0.9603130221366882 +karman_re100,sr,12,4.8,velocity,center_uy,-0.27884089946746826 +karman_re100,sr,12,4.8,velocity,lower_ux,0.9426421523094177 +karman_re100,sr,12,4.8,velocity,lower_uy,-0.20869290828704834 +karman_re100,sr,13,5.2,velocity,upper_ux,1.1756727695465088 +karman_re100,sr,13,5.2,velocity,upper_uy,-0.19956424832344055 +karman_re100,sr,13,5.2,velocity,center_ux,0.9459280967712402 +karman_re100,sr,13,5.2,velocity,center_uy,-0.1648065745830536 +karman_re100,sr,13,5.2,velocity,lower_ux,0.9295133352279663 +karman_re100,sr,13,5.2,velocity,lower_uy,-0.12406479567289352 +karman_re100,sr,14,5.6,velocity,upper_ux,1.1851390600204468 +karman_re100,sr,14,5.6,velocity,upper_uy,-0.11106028407812119 +karman_re100,sr,14,5.6,velocity,center_ux,0.9331972002983093 +karman_re100,sr,14,5.6,velocity,center_uy,-0.018204977735877037 +karman_re100,sr,14,5.6,velocity,lower_ux,0.922818660736084 +karman_re100,sr,14,5.6,velocity,lower_uy,-0.006822526454925537 +karman_re100,sr,15,6.0,velocity,upper_ux,1.1568779945373535 +karman_re100,sr,15,6.0,velocity,upper_uy,0.010382134467363358 +karman_re100,sr,15,6.0,velocity,center_ux,0.9288319945335388 +karman_re100,sr,15,6.0,velocity,center_uy,0.12360222637653351 +karman_re100,sr,15,6.0,velocity,lower_ux,0.9258081316947937 +karman_re100,sr,15,6.0,velocity,lower_uy,0.11786077171564102 +karman_re100,sr,16,6.4,velocity,upper_ux,1.1073163747787476 +karman_re100,sr,16,6.4,velocity,upper_uy,0.12108417600393295 +karman_re100,sr,16,6.4,velocity,center_ux,0.9237845540046692 +karman_re100,sr,16,6.4,velocity,center_uy,0.25060608983039856 +karman_re100,sr,16,6.4,velocity,lower_ux,0.9497509598731995 +karman_re100,sr,16,6.4,velocity,lower_uy,0.2067377269268036 +karman_re100,sr,17,6.8,velocity,upper_ux,1.0569194555282593 +karman_re100,sr,17,6.8,velocity,upper_uy,0.1970338374376297 +karman_re100,sr,17,6.8,velocity,center_ux,0.9199066162109375 +karman_re100,sr,17,6.8,velocity,center_uy,0.3452546298503876 +karman_re100,sr,17,6.8,velocity,lower_ux,0.9890615940093994 +karman_re100,sr,17,6.8,velocity,lower_uy,0.26494523882865906 +karman_re100,sr,18,7.2,velocity,upper_ux,1.0016554594039917 +karman_re100,sr,18,7.2,velocity,upper_uy,0.24690690636634827 +karman_re100,sr,18,7.2,velocity,center_ux,0.9211326837539673 +karman_re100,sr,18,7.2,velocity,center_uy,0.39755940437316895 +karman_re100,sr,18,7.2,velocity,lower_ux,1.0337767601013184 +karman_re100,sr,18,7.2,velocity,lower_uy,0.30610835552215576 +karman_re100,sr,19,7.6,velocity,upper_ux,0.9445972442626953 +karman_re100,sr,19,7.6,velocity,upper_uy,0.26870396733283997 +karman_re100,sr,19,7.6,velocity,center_ux,0.9236659407615662 +karman_re100,sr,19,7.6,velocity,center_uy,0.41391482949256897 +karman_re100,sr,19,7.6,velocity,lower_ux,1.079864740371704 +karman_re100,sr,19,7.6,velocity,lower_uy,0.3181047737598419 +karman_re100,sr,20,8.0,velocity,upper_ux,0.8951348066329956 +karman_re100,sr,20,8.0,velocity,upper_uy,0.2552139163017273 +karman_re100,sr,20,8.0,velocity,center_ux,0.9237492084503174 +karman_re100,sr,20,8.0,velocity,center_uy,0.3920224905014038 +karman_re100,sr,20,8.0,velocity,lower_ux,1.1261194944381714 +karman_re100,sr,20,8.0,velocity,lower_uy,0.30238106846809387 +karman_re100,sr,21,8.4,velocity,upper_ux,0.858933687210083 +karman_re100,sr,21,8.4,velocity,upper_uy,0.20440702140331268 +karman_re100,sr,21,8.4,velocity,center_ux,0.9136224389076233 +karman_re100,sr,21,8.4,velocity,center_uy,0.3298829197883606 +karman_re100,sr,21,8.4,velocity,lower_ux,1.1719157695770264 +karman_re100,sr,21,8.4,velocity,lower_uy,0.2682238817214966 +karman_re100,sr,22,8.8,velocity,upper_ux,0.8430807590484619 +karman_re100,sr,22,8.8,velocity,upper_uy,0.12128066271543503 +karman_re100,sr,22,8.8,velocity,center_ux,0.8933764100074768 +karman_re100,sr,22,8.8,velocity,center_uy,0.21452254056930542 +karman_re100,sr,22,8.8,velocity,lower_ux,1.2089266777038574 +karman_re100,sr,22,8.8,velocity,lower_uy,0.2006213515996933 +karman_re100,sr,23,9.2,velocity,upper_ux,0.8511938452720642 +karman_re100,sr,23,9.2,velocity,upper_uy,0.017974376678466797 +karman_re100,sr,23,9.2,velocity,center_ux,0.8669953346252441 +karman_re100,sr,23,9.2,velocity,center_uy,0.042604073882102966 +karman_re100,sr,23,9.2,velocity,lower_ux,1.226442813873291 +karman_re100,sr,23,9.2,velocity,lower_uy,0.0948060154914856 +karman_re100,sr,24,9.6,velocity,upper_ux,0.8744711875915527 +karman_re100,sr,24,9.6,velocity,upper_uy,-0.0970965325832367 +karman_re100,sr,24,9.6,velocity,center_ux,0.8483155965805054 +karman_re100,sr,24,9.6,velocity,center_uy,-0.1681375950574875 +karman_re100,sr,24,9.6,velocity,lower_ux,1.2180702686309814 +karman_re100,sr,24,9.6,velocity,lower_uy,-0.036707423627376556 +karman_re100,sr,25,10.0,velocity,upper_ux,0.9093143939971924 +karman_re100,sr,25,10.0,velocity,upper_uy,-0.20269693434238434 +karman_re100,sr,25,10.0,velocity,center_ux,0.8555478453636169 +karman_re100,sr,25,10.0,velocity,center_uy,-0.34167400002479553 +karman_re100,sr,25,10.0,velocity,lower_ux,1.164899230003357 +karman_re100,sr,25,10.0,velocity,lower_uy,-0.1801465004682541 +karman_re100,sr,26,10.4,velocity,upper_ux,0.9571712613105774 +karman_re100,sr,26,10.4,velocity,upper_uy,-0.27842289209365845 +karman_re100,sr,26,10.4,velocity,center_ux,0.8777304887771606 +karman_re100,sr,26,10.4,velocity,center_uy,-0.4388662278652191 +karman_re100,sr,26,10.4,velocity,lower_ux,1.0828098058700562 +karman_re100,sr,26,10.4,velocity,lower_uy,-0.2876034080982208 +karman_re100,sr,27,10.8,velocity,upper_ux,1.0106797218322754 +karman_re100,sr,27,10.8,velocity,upper_uy,-0.33072781562805176 +karman_re100,sr,27,10.8,velocity,center_ux,0.8973047733306885 +karman_re100,sr,27,10.8,velocity,center_uy,-0.4878509044647217 +karman_re100,sr,27,10.8,velocity,lower_ux,1.0013381242752075 +karman_re100,sr,27,10.8,velocity,lower_uy,-0.343307763338089 +karman_re100,sr,28,11.2,velocity,upper_ux,1.0663349628448486 +karman_re100,sr,28,11.2,velocity,upper_uy,-0.3509999215602875 +karman_re100,sr,28,11.2,velocity,center_ux,0.9117491841316223 +karman_re100,sr,28,11.2,velocity,center_uy,-0.5020383596420288 +karman_re100,sr,28,11.2,velocity,lower_ux,0.930992603302002 +karman_re100,sr,28,11.2,velocity,lower_uy,-0.35691142082214355 +karman_re100,sr,29,11.6,velocity,upper_ux,1.1236069202423096 +karman_re100,sr,29,11.6,velocity,upper_uy,-0.3401278555393219 +karman_re100,sr,29,11.6,velocity,center_ux,0.9197801947593689 +karman_re100,sr,29,11.6,velocity,center_uy,-0.48029282689094543 +karman_re100,sr,29,11.6,velocity,lower_ux,0.8725591897964478 +karman_re100,sr,29,11.6,velocity,lower_uy,-0.3310825228691101 +karman_re100,sr,30,12.0,velocity,upper_ux,1.1831659078598022 +karman_re100,sr,30,12.0,velocity,upper_uy,-0.3080374002456665 +karman_re100,sr,30,12.0,velocity,center_ux,0.9150399565696716 +karman_re100,sr,30,12.0,velocity,center_uy,-0.4185439944267273 +karman_re100,sr,30,12.0,velocity,lower_ux,0.8277024626731873 +karman_re100,sr,30,12.0,velocity,lower_uy,-0.2634129226207733 +karman_re100,sr,31,12.4,velocity,upper_ux,1.2353545427322388 +karman_re100,sr,31,12.4,velocity,upper_uy,-0.24018511176109314 +karman_re100,sr,31,12.4,velocity,center_ux,0.8938053250312805 +karman_re100,sr,31,12.4,velocity,center_uy,-0.2967897653579712 +karman_re100,sr,31,12.4,velocity,lower_ux,0.8001697659492493 +karman_re100,sr,31,12.4,velocity,lower_uy,-0.15761151909828186 +karman_re100,sr,32,12.8,velocity,upper_ux,1.266218900680542 +karman_re100,sr,32,12.8,velocity,upper_uy,-0.1252003163099289 +karman_re100,sr,32,12.8,velocity,center_ux,0.8592640161514282 +karman_re100,sr,32,12.8,velocity,center_uy,-0.0981278121471405 +karman_re100,sr,32,12.8,velocity,lower_ux,0.7974910140037537 +karman_re100,sr,32,12.8,velocity,lower_uy,-0.02936946414411068 +karman_re100,sr,33,13.2,velocity,upper_ux,1.2558906078338623 +karman_re100,sr,33,13.2,velocity,upper_uy,0.035844188183546066 +karman_re100,sr,33,13.2,velocity,center_ux,0.8387349843978882 +karman_re100,sr,33,13.2,velocity,center_uy,0.16254954040050507 +karman_re100,sr,33,13.2,velocity,lower_ux,0.823698103427887 +karman_re100,sr,33,13.2,velocity,lower_uy,0.09891144931316376 +karman_re100,sr,34,13.6,velocity,upper_ux,1.19109308719635 +karman_re100,sr,34,13.6,velocity,upper_uy,0.20188651978969574 +karman_re100,sr,34,13.6,velocity,center_ux,0.8505745530128479 +karman_re100,sr,34,13.6,velocity,center_uy,0.38212162256240845 +karman_re100,sr,34,13.6,velocity,lower_ux,0.868215799331665 +karman_re100,sr,34,13.6,velocity,lower_uy,0.21274545788764954 +karman_re100,sr,35,14.0,velocity,upper_ux,1.1014972925186157 +karman_re100,sr,35,14.0,velocity,upper_uy,0.3173897862434387 +karman_re100,sr,35,14.0,velocity,center_ux,0.8800287842750549 +karman_re100,sr,35,14.0,velocity,center_uy,0.4939940571784973 +karman_re100,sr,35,14.0,velocity,lower_ux,0.9257050156593323 +karman_re100,sr,35,14.0,velocity,lower_uy,0.29471755027770996 +karman_re100,sr,36,14.4,velocity,upper_ux,1.0151324272155762 +karman_re100,sr,36,14.4,velocity,upper_uy,0.3777408301830292 +karman_re100,sr,36,14.4,velocity,center_ux,0.9075848460197449 +karman_re100,sr,36,14.4,velocity,center_uy,0.5398582816123962 +karman_re100,sr,36,14.4,velocity,lower_ux,0.989876925945282 +karman_re100,sr,36,14.4,velocity,lower_uy,0.3497621417045593 +karman_re100,sr,37,14.8,velocity,upper_ux,0.9395633935928345 +karman_re100,sr,37,14.8,velocity,upper_uy,0.3949916362762451 +karman_re100,sr,37,14.8,velocity,center_ux,0.9264108538627625 +karman_re100,sr,37,14.8,velocity,center_uy,0.55338454246521 +karman_re100,sr,37,14.8,velocity,lower_ux,1.0539350509643555 +karman_re100,sr,37,14.8,velocity,lower_uy,0.3753449320793152 +karman_re100,sr,38,15.2,velocity,upper_ux,0.8749201893806458 +karman_re100,sr,38,15.2,velocity,upper_uy,0.37153270840644836 +karman_re100,sr,38,15.2,velocity,center_ux,0.9361679553985596 +karman_re100,sr,38,15.2,velocity,center_uy,0.5362241864204407 +karman_re100,sr,38,15.2,velocity,lower_ux,1.1172832250595093 +karman_re100,sr,38,15.2,velocity,lower_uy,0.366728812456131 +karman_re100,sr,39,15.6,velocity,upper_ux,0.8232335448265076 +karman_re100,sr,39,15.6,velocity,upper_uy,0.3042699992656708 +karman_re100,sr,39,15.6,velocity,center_ux,0.9330084323883057 +karman_re100,sr,39,15.6,velocity,center_uy,0.48428085446357727 +karman_re100,sr,39,15.6,velocity,lower_ux,1.1838606595993042 +karman_re100,sr,39,15.6,velocity,lower_uy,0.3349984288215637 +karman_re100,sr,40,16.0,velocity,upper_ux,0.7870592474937439 +karman_re100,sr,40,16.0,velocity,upper_uy,0.19461578130722046 +karman_re100,sr,40,16.0,velocity,center_ux,0.9113895297050476 +karman_re100,sr,40,16.0,velocity,center_uy,0.36995357275009155 +karman_re100,sr,40,16.0,velocity,lower_ux,1.2475690841674805 +karman_re100,sr,40,16.0,velocity,lower_uy,0.26943182945251465 +karman_re100,sr,41,16.4,velocity,upper_ux,0.7746261358261108 +karman_re100,sr,41,16.4,velocity,upper_uy,0.05489303171634674 +karman_re100,sr,41,16.4,velocity,center_ux,0.8740525841712952 +karman_re100,sr,41,16.4,velocity,center_uy,0.16102075576782227 +karman_re100,sr,41,16.4,velocity,lower_ux,1.2948375940322876 +karman_re100,sr,41,16.4,velocity,lower_uy,0.1556539386510849 +karman_re100,sr,42,16.8,velocity,upper_ux,0.7963373064994812 +karman_re100,sr,42,16.8,velocity,upper_uy,-0.08680378645658493 +karman_re100,sr,42,16.8,velocity,center_ux,0.8532726764678955 +karman_re100,sr,42,16.8,velocity,center_uy,-0.12907478213310242 +karman_re100,sr,42,16.8,velocity,lower_ux,1.2962580919265747 +karman_re100,sr,42,16.8,velocity,lower_uy,-0.010543334297835827 +karman_re100,sr,43,17.2,velocity,upper_ux,0.8446862101554871 +karman_re100,sr,43,17.2,velocity,upper_uy,-0.20695044100284576 +karman_re100,sr,43,17.2,velocity,center_ux,0.8655795454978943 +karman_re100,sr,43,17.2,velocity,center_uy,-0.38033631443977356 +karman_re100,sr,43,17.2,velocity,lower_ux,1.2331078052520752 +karman_re100,sr,43,17.2,velocity,lower_uy,-0.18443818390369415 +karman_re100,sr,44,17.6,velocity,upper_ux,0.906069278717041 +karman_re100,sr,44,17.6,velocity,upper_uy,-0.29538047313690186 +karman_re100,sr,44,17.6,velocity,center_ux,0.8946722149848938 +karman_re100,sr,44,17.6,velocity,center_uy,-0.510277271270752 +karman_re100,sr,44,17.6,velocity,lower_ux,1.138925552368164 +karman_re100,sr,44,17.6,velocity,lower_uy,-0.30793866515159607 +karman_re100,sr,45,18.0,velocity,upper_ux,0.9740939140319824 +karman_re100,sr,45,18.0,velocity,upper_uy,-0.35290640592575073 +karman_re100,sr,45,18.0,velocity,center_ux,0.9230818748474121 +karman_re100,sr,45,18.0,velocity,center_uy,-0.5555064678192139 +karman_re100,sr,45,18.0,velocity,lower_ux,1.0465087890625 +karman_re100,sr,45,18.0,velocity,lower_uy,-0.373978853225708 +karman_re100,sr,46,18.4,velocity,upper_ux,1.0423778295516968 +karman_re100,sr,46,18.4,velocity,upper_uy,-0.3809109926223755 +karman_re100,sr,46,18.4,velocity,center_ux,0.9436813592910767 +karman_re100,sr,46,18.4,velocity,center_uy,-0.5656106472015381 +karman_re100,sr,46,18.4,velocity,lower_ux,0.9666668176651001 +karman_re100,sr,46,18.4,velocity,lower_uy,-0.39495834708213806 +karman_re100,sr,47,18.8,velocity,upper_ux,1.1095620393753052 +karman_re100,sr,47,18.8,velocity,upper_uy,-0.3731701672077179 +karman_re100,sr,47,18.8,velocity,center_ux,0.9564739465713501 +karman_re100,sr,47,18.8,velocity,center_uy,-0.5462133884429932 +karman_re100,sr,47,18.8,velocity,lower_ux,0.8998012542724609 +karman_re100,sr,47,18.8,velocity,lower_uy,-0.3739389181137085 +karman_re100,sr,48,19.2,velocity,upper_ux,1.177228569984436 +karman_re100,sr,48,19.2,velocity,upper_uy,-0.3412904739379883 +karman_re100,sr,48,19.2,velocity,center_ux,0.9557451009750366 +karman_re100,sr,48,19.2,velocity,center_uy,-0.4945468008518219 +karman_re100,sr,48,19.2,velocity,lower_ux,0.8449710011482239 +karman_re100,sr,48,19.2,velocity,lower_uy,-0.3078891336917877 +karman_re100,sr,49,19.6,velocity,upper_ux,1.2413617372512817 +karman_re100,sr,49,19.6,velocity,upper_uy,-0.280252605676651 +karman_re100,sr,49,19.6,velocity,center_ux,0.934922993183136 +karman_re100,sr,49,19.6,velocity,center_uy,-0.3845681846141815 +karman_re100,sr,49,19.6,velocity,lower_ux,0.8041642904281616 +karman_re100,sr,49,19.6,velocity,lower_uy,-0.1988033801317215 +karman_re100,sr,50,20.0,velocity,upper_ux,1.2920299768447876 +karman_re100,sr,50,20.0,velocity,upper_uy,-0.17567461729049683 +karman_re100,sr,50,20.0,velocity,center_ux,0.8952539563179016 +karman_re100,sr,50,20.0,velocity,center_uy,-0.1832316517829895 +karman_re100,sr,50,20.0,velocity,lower_ux,0.7871938943862915 +karman_re100,sr,50,20.0,velocity,lower_uy,-0.05883106589317322 +karman_re100,sr,51,20.4,velocity,upper_ux,1.3016926050186157 +karman_re100,sr,51,20.4,velocity,upper_uy,-0.017018206417560577 +karman_re100,sr,51,20.4,velocity,center_ux,0.86799156665802 +karman_re100,sr,51,20.4,velocity,center_uy,0.10437586903572083 +karman_re100,sr,51,20.4,velocity,lower_ux,0.8050441145896912 +karman_re100,sr,51,20.4,velocity,lower_uy,0.08391905575990677 +karman_re100,sr,52,20.8,velocity,upper_ux,1.2440040111541748 +karman_re100,sr,52,20.8,velocity,upper_uy,0.16213741898536682 +karman_re100,sr,52,20.8,velocity,center_ux,0.876081645488739 +karman_re100,sr,52,20.8,velocity,center_uy,0.3620072901248932 +karman_re100,sr,52,20.8,velocity,lower_ux,0.8514903783798218 +karman_re100,sr,52,20.8,velocity,lower_uy,0.2057313770055771 +karman_re100,sr,53,21.2,velocity,upper_ux,1.1500053405761719 +karman_re100,sr,53,21.2,velocity,upper_uy,0.29420673847198486 +karman_re100,sr,53,21.2,velocity,center_ux,0.9041546583175659 +karman_re100,sr,53,21.2,velocity,center_uy,0.49889111518859863 +karman_re100,sr,53,21.2,velocity,lower_ux,0.9125262498855591 +karman_re100,sr,53,21.2,velocity,lower_uy,0.2939946949481964 +karman_re100,sr,54,21.6,velocity,upper_ux,1.0552096366882324 +karman_re100,sr,54,21.6,velocity,upper_uy,0.3651266396045685 +karman_re100,sr,54,21.6,velocity,center_ux,0.9315687417984009 +karman_re100,sr,54,21.6,velocity,center_uy,0.5471323132514954 +karman_re100,sr,54,21.6,velocity,lower_ux,0.9791162014007568 +karman_re100,sr,54,21.6,velocity,lower_uy,0.3507830500602722 +karman_re100,sr,55,22.0,velocity,upper_ux,0.9732484221458435 +karman_re100,sr,55,22.0,velocity,upper_uy,0.38841694593429565 +karman_re100,sr,55,22.0,velocity,center_ux,0.9511998891830444 +karman_re100,sr,55,22.0,velocity,center_uy,0.5581440925598145 +karman_re100,sr,55,22.0,velocity,lower_ux,1.0453389883041382 +karman_re100,sr,55,22.0,velocity,lower_uy,0.37869927287101746 +karman_re100,sr,56,22.4,velocity,upper_ux,0.9053566455841064 +karman_re100,sr,56,22.4,velocity,upper_uy,0.3691004514694214 +karman_re100,sr,56,22.4,velocity,center_ux,0.9639309644699097 +karman_re100,sr,56,22.4,velocity,center_uy,0.5390266180038452 +karman_re100,sr,56,22.4,velocity,lower_ux,1.1104110479354858 +karman_re100,sr,56,22.4,velocity,lower_uy,0.37081801891326904 +karman_re100,sr,57,22.8,velocity,upper_ux,0.8508298397064209 +karman_re100,sr,57,22.8,velocity,upper_uy,0.30477437376976013 +karman_re100,sr,57,22.8,velocity,center_ux,0.9648255705833435 +karman_re100,sr,57,22.8,velocity,center_uy,0.48817509412765503 +karman_re100,sr,57,22.8,velocity,lower_ux,1.1764792203903198 +karman_re100,sr,57,22.8,velocity,lower_uy,0.33884814381599426 +karman_re100,sr,58,23.2,velocity,upper_ux,0.8117043972015381 +karman_re100,sr,58,23.2,velocity,upper_uy,0.19725090265274048 +karman_re100,sr,58,23.2,velocity,center_ux,0.947243869304657 +karman_re100,sr,58,23.2,velocity,center_uy,0.38128262758255005 +karman_re100,sr,58,23.2,velocity,lower_ux,1.2406047582626343 +karman_re100,sr,58,23.2,velocity,lower_uy,0.279966801404953 +karman_re100,sr,59,23.6,velocity,upper_ux,0.7953610420227051 +karman_re100,sr,59,23.6,velocity,upper_uy,0.059039726853370667 +karman_re100,sr,59,23.6,velocity,center_ux,0.9083211421966553 +karman_re100,sr,59,23.6,velocity,center_uy,0.18724334239959717 +karman_re100,sr,59,23.6,velocity,lower_ux,1.2913109064102173 +karman_re100,sr,59,23.6,velocity,lower_uy,0.18075710535049438 +karman_re100,sr,60,24.0,velocity,upper_ux,0.8116700053215027 +karman_re100,sr,60,24.0,velocity,upper_uy,-0.08258825540542603 +karman_re100,sr,60,24.0,velocity,center_ux,0.8767709136009216 +karman_re100,sr,60,24.0,velocity,center_uy,-0.09478303045034409 +karman_re100,sr,60,24.0,velocity,lower_ux,1.3025380373001099 +karman_re100,sr,60,24.0,velocity,lower_uy,0.028926441445946693 +karman_re100,sr,61,24.4,velocity,upper_ux,0.8554117679595947 +karman_re100,sr,61,24.4,velocity,upper_uy,-0.20460821688175201 +karman_re100,sr,61,24.4,velocity,center_ux,0.8802313208580017 +karman_re100,sr,61,24.4,velocity,center_uy,-0.35210999846458435 +karman_re100,sr,61,24.4,velocity,lower_ux,1.2465620040893555 +karman_re100,sr,61,24.4,velocity,lower_uy,-0.14864705502986908 +karman_re100,sr,62,24.8,velocity,upper_ux,0.9145365357398987 +karman_re100,sr,62,24.8,velocity,upper_uy,-0.2928861379623413 +karman_re100,sr,62,24.8,velocity,center_ux,0.9058142304420471 +karman_re100,sr,62,24.8,velocity,center_uy,-0.4903959035873413 +karman_re100,sr,62,24.8,velocity,lower_ux,1.1526198387145996 +karman_re100,sr,62,24.8,velocity,lower_uy,-0.2832082509994507 +karman_re100,sr,63,25.2,velocity,upper_ux,0.9810389876365662 +karman_re100,sr,63,25.2,velocity,upper_uy,-0.3495635688304901 +karman_re100,sr,63,25.2,velocity,center_ux,0.9330465197563171 +karman_re100,sr,63,25.2,velocity,center_uy,-0.5400173664093018 +karman_re100,sr,63,25.2,velocity,lower_ux,1.0585827827453613 +karman_re100,sr,63,25.2,velocity,lower_uy,-0.3563350439071655 +karman_re100,sr,64,25.6,velocity,upper_ux,1.0477352142333984 +karman_re100,sr,64,25.6,velocity,upper_uy,-0.37794846296310425 +karman_re100,sr,64,25.6,velocity,center_ux,0.9532307386398315 +karman_re100,sr,64,25.6,velocity,center_uy,-0.5520705580711365 +karman_re100,sr,64,25.6,velocity,lower_ux,0.977652370929718 +karman_re100,sr,64,25.6,velocity,lower_uy,-0.3811963200569153 +karman_re100,sr,65,26.0,velocity,upper_ux,1.1115999221801758 +karman_re100,sr,65,26.0,velocity,upper_uy,-0.3706663250923157 +karman_re100,sr,65,26.0,velocity,center_ux,0.9650481343269348 +karman_re100,sr,65,26.0,velocity,center_uy,-0.533643364906311 +karman_re100,sr,65,26.0,velocity,lower_ux,0.9091488718986511 +karman_re100,sr,65,26.0,velocity,lower_uy,-0.36347630620002747 +karman_re100,sr,66,26.4,velocity,upper_ux,1.1755653619766235 +karman_re100,sr,66,26.4,velocity,upper_uy,-0.33927756547927856 +karman_re100,sr,66,26.4,velocity,center_ux,0.9646099209785461 +karman_re100,sr,66,26.4,velocity,center_uy,-0.48333874344825745 +karman_re100,sr,66,26.4,velocity,lower_ux,0.8534517884254456 +karman_re100,sr,66,26.4,velocity,lower_uy,-0.3010718822479248 +karman_re100,sr,67,26.8,velocity,upper_ux,1.2379577159881592 +karman_re100,sr,67,26.8,velocity,upper_uy,-0.2817796766757965 +karman_re100,sr,67,26.8,velocity,center_ux,0.9467775225639343 +karman_re100,sr,67,26.8,velocity,center_uy,-0.37806805968284607 +karman_re100,sr,67,26.8,velocity,lower_ux,0.8137781620025635 +karman_re100,sr,67,26.8,velocity,lower_uy,-0.19611506164073944 +karman_re100,sr,68,27.2,velocity,upper_ux,1.2885947227478027 +karman_re100,sr,68,27.2,velocity,upper_uy,-0.1855294555425644 +karman_re100,sr,68,27.2,velocity,center_ux,0.9084810018539429 +karman_re100,sr,68,27.2,velocity,center_uy,-0.19017553329467773 +karman_re100,sr,68,27.2,velocity,lower_ux,0.7977926731109619 +karman_re100,sr,68,27.2,velocity,lower_uy,-0.061007823795080185 +karman_re100,sr,69,27.6,velocity,upper_ux,1.3041234016418457 +karman_re100,sr,69,27.6,velocity,upper_uy,-0.03760609030723572 +karman_re100,sr,69,27.6,velocity,center_ux,0.8760669827461243 +karman_re100,sr,69,27.6,velocity,center_uy,0.08406323194503784 +karman_re100,sr,69,27.6,velocity,lower_ux,0.8151188492774963 +karman_re100,sr,69,27.6,velocity,lower_uy,0.07798577100038528 +karman_re100,sr,70,28.0,velocity,upper_ux,1.2515909671783447 +karman_re100,sr,70,28.0,velocity,upper_uy,0.14178937673568726 +karman_re100,sr,70,28.0,velocity,center_ux,0.8777928352355957 +karman_re100,sr,70,28.0,velocity,center_uy,0.34137633442878723 +karman_re100,sr,70,28.0,velocity,lower_ux,0.8582708835601807 +karman_re100,sr,70,28.0,velocity,lower_uy,0.19948270916938782 +karman_re100,sr,71,28.4,velocity,upper_ux,1.1567379236221313 +karman_re100,sr,71,28.4,velocity,upper_uy,0.2808372974395752 +karman_re100,sr,71,28.4,velocity,center_ux,0.9023652672767639 +karman_re100,sr,71,28.4,velocity,center_uy,0.48351284861564636 +karman_re100,sr,71,28.4,velocity,lower_ux,0.915243923664093 +karman_re100,sr,71,28.4,velocity,lower_uy,0.28820666670799255 +karman_re100,sr,72,28.8,velocity,upper_ux,1.0610905885696411 +karman_re100,sr,72,28.8,velocity,upper_uy,0.356749951839447 +karman_re100,sr,72,28.8,velocity,center_ux,0.9297329783439636 +karman_re100,sr,72,28.8,velocity,center_uy,0.5359640717506409 +karman_re100,sr,72,28.8,velocity,lower_ux,0.9798892140388489 +karman_re100,sr,72,28.8,velocity,lower_uy,0.3456633687019348 +karman_re100,sr,73,29.2,velocity,upper_ux,0.9795121550559998 +karman_re100,sr,73,29.2,velocity,upper_uy,0.38296177983283997 +karman_re100,sr,73,29.2,velocity,center_ux,0.9506769776344299 +karman_re100,sr,73,29.2,velocity,center_uy,0.5496935844421387 +karman_re100,sr,73,29.2,velocity,lower_ux,1.045512318611145 +karman_re100,sr,73,29.2,velocity,lower_uy,0.37513136863708496 +karman_re100,sr,74,29.6,velocity,upper_ux,0.9118769764900208 +karman_re100,sr,74,29.6,velocity,upper_uy,0.36647874116897583 +karman_re100,sr,74,29.6,velocity,center_ux,0.9645421504974365 +karman_re100,sr,74,29.6,velocity,center_uy,0.5325075387954712 +karman_re100,sr,74,29.6,velocity,lower_ux,1.1096187829971313 +karman_re100,sr,74,29.6,velocity,lower_uy,0.3689045310020447 +karman_re100,sr,75,30.0,velocity,upper_ux,0.8575267195701599 +karman_re100,sr,75,30.0,velocity,upper_uy,0.3051839768886566 +karman_re100,sr,75,30.0,velocity,center_ux,0.9669205546379089 +karman_re100,sr,75,30.0,velocity,center_uy,0.48360130190849304 +karman_re100,sr,75,30.0,velocity,lower_ux,1.1744065284729004 +karman_re100,sr,75,30.0,velocity,lower_uy,0.33823975920677185 +karman_re100,sr,76,30.4,velocity,upper_ux,0.8174312710762024 +karman_re100,sr,76,30.4,velocity,upper_uy,0.20085403323173523 +karman_re100,sr,76,30.4,velocity,center_ux,0.9504151344299316 +karman_re100,sr,76,30.4,velocity,center_uy,0.38089942932128906 +karman_re100,sr,76,30.4,velocity,lower_ux,1.2364789247512817 +karman_re100,sr,76,30.4,velocity,lower_uy,0.2822427451610565 +karman_re100,sr,77,30.8,velocity,upper_ux,0.7996504306793213 +karman_re100,sr,77,30.8,velocity,upper_uy,0.06575527787208557 +karman_re100,sr,77,30.8,velocity,center_ux,0.9121188521385193 +karman_re100,sr,77,30.8,velocity,center_uy,0.19696711003780365 +karman_re100,sr,77,30.8,velocity,lower_ux,1.2862659692764282 +karman_re100,sr,77,30.8,velocity,lower_uy,0.18837851285934448 +karman_re100,sr,78,31.2,velocity,upper_ux,0.815051794052124 +karman_re100,sr,78,31.2,velocity,upper_uy,-0.07420092821121216 +karman_re100,sr,78,31.2,velocity,center_ux,0.8781259059906006 +karman_re100,sr,78,31.2,velocity,center_uy,-0.07471419125795364 +karman_re100,sr,78,31.2,velocity,lower_ux,1.3025367259979248 +karman_re100,sr,78,31.2,velocity,lower_uy,0.04360193386673927 +karman_re100,sr,79,31.6,velocity,upper_ux,0.8571898937225342 +karman_re100,sr,79,31.6,velocity,upper_uy,-0.19696786999702454 +karman_re100,sr,79,31.6,velocity,center_ux,0.8781867027282715 +karman_re100,sr,79,31.6,velocity,center_uy,-0.3340359032154083 +karman_re100,sr,79,31.6,velocity,lower_ux,1.2522821426391602 +karman_re100,sr,79,31.6,velocity,lower_uy,-0.13452565670013428 +karman_re100,sr,80,32.0,velocity,upper_ux,0.914895236492157 +karman_re100,sr,80,32.0,velocity,upper_uy,-0.28688469529151917 +karman_re100,sr,80,32.0,velocity,center_ux,0.9029374718666077 +karman_re100,sr,80,32.0,velocity,center_uy,-0.4798528552055359 +karman_re100,sr,80,32.0,velocity,lower_ux,1.1595754623413086 +karman_re100,sr,80,32.0,velocity,lower_uy,-0.2751854360103607 +karman_re100,sr,81,32.4,velocity,upper_ux,0.9802124500274658 +karman_re100,sr,81,32.4,velocity,upper_uy,-0.3448909819126129 +karman_re100,sr,81,32.4,velocity,center_ux,0.9306346774101257 +karman_re100,sr,81,32.4,velocity,center_uy,-0.5341265201568604 +karman_re100,sr,81,32.4,velocity,lower_ux,1.0644521713256836 +karman_re100,sr,81,32.4,velocity,lower_uy,-0.35292792320251465 +karman_re100,sr,82,32.8,velocity,upper_ux,1.0450665950775146 +karman_re100,sr,82,32.8,velocity,upper_uy,-0.3751307427883148 +karman_re100,sr,82,32.8,velocity,center_ux,0.9505622982978821 +karman_re100,sr,82,32.8,velocity,center_uy,-0.5488138794898987 +karman_re100,sr,82,32.8,velocity,lower_ux,0.9815402030944824 +karman_re100,sr,82,32.8,velocity,lower_uy,-0.3805857002735138 +karman_re100,sr,83,33.2,velocity,upper_ux,1.1081293821334839 +karman_re100,sr,83,33.2,velocity,upper_uy,-0.3695538341999054 +karman_re100,sr,83,33.2,velocity,center_ux,0.9632892608642578 +karman_re100,sr,83,33.2,velocity,center_uy,-0.532386302947998 +karman_re100,sr,83,33.2,velocity,lower_ux,0.9124115705490112 +karman_re100,sr,83,33.2,velocity,lower_uy,-0.36539238691329956 +karman_re100,sr,84,33.6,velocity,upper_ux,1.1721993684768677 +karman_re100,sr,84,33.6,velocity,upper_uy,-0.3394049108028412 +karman_re100,sr,84,33.6,velocity,center_ux,0.9651995301246643 +karman_re100,sr,84,33.6,velocity,center_uy,-0.4844374358654022 +karman_re100,sr,84,33.6,velocity,lower_ux,0.8570621609687805 +karman_re100,sr,84,33.6,velocity,lower_uy,-0.3056678771972656 +karman_re100,sr,85,34.0,velocity,upper_ux,1.234787106513977 +karman_re100,sr,85,34.0,velocity,upper_uy,-0.28417718410491943 +karman_re100,sr,85,34.0,velocity,center_ux,0.9497441053390503 +karman_re100,sr,85,34.0,velocity,center_uy,-0.3834775984287262 +karman_re100,sr,85,34.0,velocity,lower_ux,0.8171286582946777 +karman_re100,sr,85,34.0,velocity,lower_uy,-0.20304115116596222 +karman_re100,sr,86,34.4,velocity,upper_ux,1.2861517667770386 +karman_re100,sr,86,34.4,velocity,upper_uy,-0.19141916930675507 +karman_re100,sr,86,34.4,velocity,center_ux,0.9131743907928467 +karman_re100,sr,86,34.4,velocity,center_uy,-0.2027333825826645 +karman_re100,sr,86,34.4,velocity,lower_ux,0.8001214861869812 +karman_re100,sr,86,34.4,velocity,lower_uy,-0.06930175423622131 +karman_re100,sr,87,34.8,velocity,upper_ux,1.3040156364440918 +karman_re100,sr,87,34.8,velocity,upper_uy,-0.048389267176389694 +karman_re100,sr,87,34.8,velocity,center_ux,0.8782910108566284 +karman_re100,sr,87,34.8,velocity,center_uy,0.06656201183795929 +karman_re100,sr,87,34.8,velocity,lower_ux,0.8149558305740356 +karman_re100,sr,87,34.8,velocity,lower_uy,0.06996721029281616 +karman_re100,sr,88,35.2,velocity,upper_ux,1.2547099590301514 +karman_re100,sr,88,35.2,velocity,upper_uy,0.12984353303909302 +karman_re100,sr,88,35.2,velocity,center_ux,0.8763744235038757 +karman_re100,sr,88,35.2,velocity,center_uy,0.3277248740196228 +karman_re100,sr,88,35.2,velocity,lower_ux,0.8556945323944092 +karman_re100,sr,88,35.2,velocity,lower_uy,0.1928604543209076 +karman_re100,sr,89,35.6,velocity,upper_ux,1.161726474761963 +karman_re100,sr,89,35.6,velocity,upper_uy,0.2723241448402405 +karman_re100,sr,89,35.6,velocity,center_ux,0.9002044200897217 +karman_re100,sr,89,35.6,velocity,center_uy,0.47663867473602295 +karman_re100,sr,89,35.6,velocity,lower_ux,0.9121599793434143 +karman_re100,sr,89,35.6,velocity,lower_uy,0.2835511863231659 +karman_re100,sr,90,36.0,velocity,upper_ux,1.0662169456481934 +karman_re100,sr,90,36.0,velocity,upper_uy,0.3518742024898529 +karman_re100,sr,90,36.0,velocity,center_ux,0.9281986951828003 +karman_re100,sr,90,36.0,velocity,center_uy,0.5326268672943115 +karman_re100,sr,90,36.0,velocity,lower_ux,0.9770995378494263 +karman_re100,sr,90,36.0,velocity,lower_uy,0.34240707755088806 +karman_re100,sr,91,36.4,velocity,upper_ux,0.9841476678848267 +karman_re100,sr,91,36.4,velocity,upper_uy,0.3808724880218506 +karman_re100,sr,91,36.4,velocity,center_ux,0.9497437477111816 +karman_re100,sr,91,36.4,velocity,center_uy,0.5484106540679932 +karman_re100,sr,91,36.4,velocity,lower_ux,1.0431052446365356 +karman_re100,sr,91,36.4,velocity,lower_uy,0.37387675046920776 +karman_re100,sr,92,36.8,velocity,upper_ux,0.9156452417373657 +karman_re100,sr,92,36.8,velocity,upper_uy,0.3671501576900482 +karman_re100,sr,92,36.8,velocity,center_ux,0.9638447761535645 +karman_re100,sr,92,36.8,velocity,center_uy,0.5332555174827576 +karman_re100,sr,92,36.8,velocity,lower_ux,1.107235312461853 +karman_re100,sr,92,36.8,velocity,lower_uy,0.3696516156196594 +karman_re100,sr,93,37.2,velocity,upper_ux,0.8593587279319763 +karman_re100,sr,93,37.2,velocity,upper_uy,0.30887898802757263 +karman_re100,sr,93,37.2,velocity,center_ux,0.9657174944877625 +karman_re100,sr,93,37.2,velocity,center_uy,0.4868963360786438 +karman_re100,sr,93,37.2,velocity,lower_ux,1.1708288192749023 +karman_re100,sr,93,37.2,velocity,lower_uy,0.34033527970314026 +karman_re100,sr,94,37.6,velocity,upper_ux,0.8179876804351807 +karman_re100,sr,94,37.6,velocity,upper_uy,0.20757906138896942 +karman_re100,sr,94,37.6,velocity,center_ux,0.9499004483222961 +karman_re100,sr,94,37.6,velocity,center_uy,0.38858282566070557 +karman_re100,sr,94,37.6,velocity,lower_ux,1.2328909635543823 +karman_re100,sr,94,37.6,velocity,lower_uy,0.2864152193069458 +karman_re100,sr,95,38.0,velocity,upper_ux,0.7994164824485779 +karman_re100,sr,95,38.0,velocity,upper_uy,0.07457451522350311 +karman_re100,sr,95,38.0,velocity,center_ux,0.9131821990013123 +karman_re100,sr,95,38.0,velocity,center_uy,0.2109270691871643 +karman_re100,sr,95,38.0,velocity,lower_ux,1.2845379114151 +karman_re100,sr,95,38.0,velocity,lower_uy,0.19528183341026306 +karman_re100,sr,96,38.4,velocity,upper_ux,0.8134152293205261 +karman_re100,sr,96,38.4,velocity,upper_uy,-0.06503620743751526 +karman_re100,sr,96,38.4,velocity,center_ux,0.8781324625015259 +karman_re100,sr,96,38.4,velocity,center_uy,-0.05659143999218941 +karman_re100,sr,96,38.4,velocity,lower_ux,1.3047544956207275 +karman_re100,sr,96,38.4,velocity,lower_uy,0.05400015786290169 +karman_re100,sr,97,38.8,velocity,upper_ux,0.8547621369361877 +karman_re100,sr,97,38.8,velocity,upper_uy,-0.1888992190361023 +karman_re100,sr,97,38.8,velocity,center_ux,0.8766686916351318 +karman_re100,sr,97,38.8,velocity,center_uy,-0.32029902935028076 +karman_re100,sr,97,38.8,velocity,lower_ux,1.2589261531829834 +karman_re100,sr,97,38.8,velocity,lower_uy,-0.12421710044145584 +karman_re100,sr,98,39.2,velocity,upper_ux,0.9111156463623047 +karman_re100,sr,98,39.2,velocity,upper_uy,-0.2811335623264313 +karman_re100,sr,98,39.2,velocity,center_ux,0.9004344344139099 +karman_re100,sr,98,39.2,velocity,center_uy,-0.4735853672027588 +karman_re100,sr,98,39.2,velocity,lower_ux,1.1667389869689941 +karman_re100,sr,98,39.2,velocity,lower_uy,-0.26861292123794556 +karman_re100,sr,99,39.6,velocity,upper_ux,0.975106954574585 +karman_re100,sr,99,39.6,velocity,upper_uy,-0.34086719155311584 +karman_re100,sr,99,39.6,velocity,center_ux,0.9277201294898987 +karman_re100,sr,99,39.6,velocity,center_uy,-0.5315253138542175 +karman_re100,sr,99,39.6,velocity,lower_ux,1.0699257850646973 +karman_re100,sr,99,39.6,velocity,lower_uy,-0.34975773096084595 +karman_re100,sr,100,40.0,velocity,upper_ux,1.040298581123352 +karman_re100,sr,100,40.0,velocity,upper_uy,-0.37342768907546997 +karman_re100,sr,100,40.0,velocity,center_ux,0.9486390948295593 +karman_re100,sr,100,40.0,velocity,center_uy,-0.5482074618339539 +karman_re100,sr,100,40.0,velocity,lower_ux,0.9864370226860046 +karman_re100,sr,100,40.0,velocity,lower_uy,-0.3800070285797119 +karman_re100,sr,101,40.4,velocity,upper_ux,1.1040797233581543 +karman_re100,sr,101,40.4,velocity,upper_uy,-0.3701907992362976 +karman_re100,sr,101,40.4,velocity,center_ux,0.9626472592353821 +karman_re100,sr,101,40.4,velocity,center_uy,-0.5337485671043396 +karman_re100,sr,101,40.4,velocity,lower_ux,0.9171167016029358 +karman_re100,sr,101,40.4,velocity,lower_uy,-0.36749106645584106 +karman_re100,sr,102,40.8,velocity,upper_ux,1.1684740781784058 +karman_re100,sr,102,40.8,velocity,upper_uy,-0.3416154980659485 +karman_re100,sr,102,40.8,velocity,center_ux,0.9659189581871033 +karman_re100,sr,102,40.8,velocity,center_uy,-0.48833978176116943 +karman_re100,sr,102,40.8,velocity,lower_ux,0.861266016960144 +karman_re100,sr,102,40.8,velocity,lower_uy,-0.3106893301010132 +karman_re100,sr,103,41.2,velocity,upper_ux,1.2315967082977295 +karman_re100,sr,103,41.2,velocity,upper_uy,-0.28876569867134094 +karman_re100,sr,103,41.2,velocity,center_ux,0.9518203735351562 +karman_re100,sr,103,41.2,velocity,center_uy,-0.3917512893676758 +karman_re100,sr,103,41.2,velocity,lower_ux,0.820270836353302 +karman_re100,sr,103,41.2,velocity,lower_uy,-0.21064449846744537 +karman_re100,sr,104,41.6,velocity,upper_ux,1.2830989360809326 +karman_re100,sr,104,41.6,velocity,upper_uy,-0.19904033839702606 +karman_re100,sr,104,41.6,velocity,center_ux,0.9153870344161987 +karman_re100,sr,104,41.6,velocity,center_uy,-0.21724992990493774 +karman_re100,sr,104,41.6,velocity,lower_ux,0.8004326820373535 +karman_re100,sr,104,41.6,velocity,lower_uy,-0.0783880278468132 +karman_re100,sr,105,42.0,velocity,upper_ux,1.3038073778152466 +karman_re100,sr,105,42.0,velocity,upper_uy,-0.059698089957237244 +karman_re100,sr,105,42.0,velocity,center_ux,0.8786065578460693 +karman_re100,sr,105,42.0,velocity,center_uy,0.04734334349632263 +karman_re100,sr,105,42.0,velocity,lower_ux,0.8125913739204407 +karman_re100,sr,105,42.0,velocity,lower_uy,0.06113361194729805 +karman_re100,sr,106,42.4,velocity,upper_ux,1.2594537734985352 +karman_re100,sr,106,42.4,velocity,upper_uy,0.11850163340568542 +karman_re100,sr,106,42.4,velocity,center_ux,0.8750264048576355 +karman_re100,sr,106,42.4,velocity,center_uy,0.3129431903362274 +karman_re100,sr,106,42.4,velocity,lower_ux,0.8526583313941956 +karman_re100,sr,106,42.4,velocity,lower_uy,0.18538782000541687 +karman_re100,sr,107,42.8,velocity,upper_ux,1.1682734489440918 +karman_re100,sr,107,42.8,velocity,upper_uy,0.2651238739490509 +karman_re100,sr,107,42.8,velocity,center_ux,0.8983991146087646 +karman_re100,sr,107,42.8,velocity,center_uy,0.4701675474643707 +karman_re100,sr,107,42.8,velocity,lower_ux,0.9087702035903931 +karman_re100,sr,107,42.8,velocity,lower_uy,0.2784549295902252 +karman_re100,sr,108,43.2,velocity,upper_ux,1.072470784187317 +karman_re100,sr,108,43.2,velocity,upper_uy,0.34858089685440063 +karman_re100,sr,108,43.2,velocity,center_ux,0.9271481037139893 +karman_re100,sr,108,43.2,velocity,center_uy,0.5303719639778137 +karman_re100,sr,108,43.2,velocity,lower_ux,0.9738670587539673 +karman_re100,sr,108,43.2,velocity,lower_uy,0.3389969766139984 +karman_re100,sr,109,43.6,velocity,upper_ux,0.9889590740203857 +karman_re100,sr,109,43.6,velocity,upper_uy,0.3804568946361542 +karman_re100,sr,109,43.6,velocity,center_ux,0.9489072561264038 +karman_re100,sr,109,43.6,velocity,center_uy,0.5482949018478394 +karman_re100,sr,109,43.6,velocity,lower_ux,1.0396108627319336 +karman_re100,sr,109,43.6,velocity,lower_uy,0.3726135492324829 +karman_re100,sr,110,44.0,velocity,upper_ux,0.9185242652893066 +karman_re100,sr,110,44.0,velocity,upper_uy,0.36953097581863403 +karman_re100,sr,110,44.0,velocity,center_ux,0.9625921845436096 +karman_re100,sr,110,44.0,velocity,center_uy,0.5352158546447754 +karman_re100,sr,110,44.0,velocity,lower_ux,1.1027940511703491 +karman_re100,sr,110,44.0,velocity,lower_uy,0.37055110931396484 +karman_re100,sr,111,44.4,velocity,upper_ux,0.8615090847015381 +karman_re100,sr,111,44.4,velocity,upper_uy,0.31427109241485596 +karman_re100,sr,111,44.4,velocity,center_ux,0.9656780958175659 +karman_re100,sr,111,44.4,velocity,center_uy,0.4914245307445526 +karman_re100,sr,111,44.4,velocity,lower_ux,1.1664495468139648 +karman_re100,sr,111,44.4,velocity,lower_uy,0.34257927536964417 +karman_re100,sr,112,44.8,velocity,upper_ux,0.8196102380752563 +karman_re100,sr,112,44.8,velocity,upper_uy,0.2156590074300766 +karman_re100,sr,112,44.8,velocity,center_ux,0.9519592523574829 +karman_re100,sr,112,44.8,velocity,center_uy,0.3975585997104645 +karman_re100,sr,112,44.8,velocity,lower_ux,1.229516625404358 +karman_re100,sr,112,44.8,velocity,lower_uy,0.29070326685905457 +karman_re100,sr,113,45.2,velocity,upper_ux,0.7995493412017822 +karman_re100,sr,113,45.2,velocity,upper_uy,0.08401019126176834 +karman_re100,sr,113,45.2,velocity,center_ux,0.9168251752853394 +karman_re100,sr,113,45.2,velocity,center_uy,0.2260315865278244 +karman_re100,sr,113,45.2,velocity,lower_ux,1.2825793027877808 +karman_re100,sr,113,45.2,velocity,lower_uy,0.20216487348079681 +karman_re100,sr,114,45.6,velocity,upper_ux,0.8115786910057068 +karman_re100,sr,114,45.6,velocity,upper_uy,-0.056187257170677185 +karman_re100,sr,114,45.6,velocity,center_ux,0.8806359767913818 +karman_re100,sr,114,45.6,velocity,center_uy,-0.03788519278168678 +karman_re100,sr,114,45.6,velocity,lower_ux,1.306093692779541 +karman_re100,sr,114,45.6,velocity,lower_uy,0.06437951326370239 +karman_re100,sr,115,46.0,velocity,upper_ux,0.8509074449539185 +karman_re100,sr,115,46.0,velocity,upper_uy,-0.18165606260299683 +karman_re100,sr,115,46.0,velocity,center_ux,0.8761653304100037 +karman_re100,sr,115,46.0,velocity,center_uy,-0.30662110447883606 +karman_re100,sr,115,46.0,velocity,lower_ux,1.2636393308639526 +karman_re100,sr,115,46.0,velocity,lower_uy,-0.11318154633045197 +karman_re100,sr,116,46.4,velocity,upper_ux,0.9059584736824036 +karman_re100,sr,116,46.4,velocity,upper_uy,-0.276319682598114 +karman_re100,sr,116,46.4,velocity,center_ux,0.8983457684516907 +karman_re100,sr,116,46.4,velocity,center_uy,-0.46776875853538513 +karman_re100,sr,116,46.4,velocity,lower_ux,1.1724774837493896 +karman_re100,sr,116,46.4,velocity,lower_uy,-0.2608943581581116 +karman_re100,sr,117,46.8,velocity,upper_ux,0.9703314304351807 +karman_re100,sr,117,46.8,velocity,upper_uy,-0.337798148393631 +karman_re100,sr,117,46.8,velocity,center_ux,0.9263251423835754 +karman_re100,sr,117,46.8,velocity,center_uy,-0.5296354293823242 +karman_re100,sr,117,46.8,velocity,lower_ux,1.0758343935012817 +karman_re100,sr,117,46.8,velocity,lower_uy,-0.34578293561935425 +karman_re100,sr,118,47.2,velocity,upper_ux,1.0361909866333008 +karman_re100,sr,118,47.2,velocity,upper_uy,-0.37256625294685364 +karman_re100,sr,118,47.2,velocity,center_ux,0.9481056928634644 +karman_re100,sr,118,47.2,velocity,center_uy,-0.5482810735702515 +karman_re100,sr,118,47.2,velocity,lower_ux,0.9919093251228333 +karman_re100,sr,118,47.2,velocity,lower_uy,-0.3790288269519806 +karman_re100,sr,119,47.6,velocity,upper_ux,1.1005866527557373 +karman_re100,sr,119,47.6,velocity,upper_uy,-0.3716990351676941 +karman_re100,sr,119,47.6,velocity,center_ux,0.9629102945327759 +karman_re100,sr,119,47.6,velocity,center_uy,-0.5358983874320984 +karman_re100,sr,119,47.6,velocity,lower_ux,0.9220812916755676 +karman_re100,sr,119,47.6,velocity,lower_uy,-0.3694717288017273 +karman_re100,sr,120,48.0,velocity,upper_ux,1.1647822856903076 +karman_re100,sr,120,48.0,velocity,upper_uy,-0.3445098400115967 +karman_re100,sr,120,48.0,velocity,center_ux,0.9667352437973022 +karman_re100,sr,120,48.0,velocity,center_uy,-0.49299344420433044 +karman_re100,sr,120,48.0,velocity,lower_ux,0.8650275468826294 +karman_re100,sr,120,48.0,velocity,lower_uy,-0.31573352217674255 +karman_re100,sr,121,48.4,velocity,upper_ux,1.227373480796814 +karman_re100,sr,121,48.4,velocity,upper_uy,-0.2937135398387909 +karman_re100,sr,121,48.4,velocity,center_ux,0.9528024196624756 +karman_re100,sr,121,48.4,velocity,center_uy,-0.40078628063201904 +karman_re100,sr,121,48.4,velocity,lower_ux,0.8218729496002197 +karman_re100,sr,121,48.4,velocity,lower_uy,-0.21846990287303925 +karman_re100,sr,122,48.8,velocity,upper_ux,1.2801165580749512 +karman_re100,sr,122,48.8,velocity,upper_uy,-0.20674489438533783 +karman_re100,sr,122,48.8,velocity,center_ux,0.9174922108650208 +karman_re100,sr,122,48.8,velocity,center_uy,-0.2323349416255951 +karman_re100,sr,122,48.8,velocity,lower_ux,0.8001812696456909 +karman_re100,sr,122,48.8,velocity,lower_uy,-0.08790769428014755 +karman_re100,sr,123,49.2,velocity,upper_ux,1.304926872253418 +karman_re100,sr,123,49.2,velocity,upper_uy,-0.07097502052783966 +karman_re100,sr,123,49.2,velocity,center_ux,0.880012571811676 +karman_re100,sr,123,49.2,velocity,center_uy,0.027831560000777245 +karman_re100,sr,123,49.2,velocity,lower_ux,0.8106667995452881 +karman_re100,sr,123,49.2,velocity,lower_uy,0.05190741643309593 +karman_re100,sr,124,49.6,velocity,upper_ux,1.2655645608901978 +karman_re100,sr,124,49.6,velocity,upper_uy,0.10689271986484528 +karman_re100,sr,124,49.6,velocity,center_ux,0.8745332360267639 +karman_re100,sr,124,49.6,velocity,center_uy,0.29776328802108765 +karman_re100,sr,124,49.6,velocity,lower_ux,0.8497414588928223 +karman_re100,sr,124,49.6,velocity,lower_uy,0.17764310538768768 +karman_re100,sr,125,50.0,velocity,upper_ux,1.176172137260437 +karman_re100,sr,125,50.0,velocity,upper_uy,0.25755956768989563 +karman_re100,sr,125,50.0,velocity,center_ux,0.8972126841545105 +karman_re100,sr,125,50.0,velocity,center_uy,0.4634406566619873 +karman_re100,sr,125,50.0,velocity,lower_ux,0.9052885174751282 +karman_re100,sr,125,50.0,velocity,lower_uy,0.27328529953956604 +karman_re100,sr,126,50.4,velocity,upper_ux,1.0790075063705444 +karman_re100,sr,126,50.4,velocity,upper_uy,0.34498366713523865 +karman_re100,sr,126,50.4,velocity,center_ux,0.9255456328392029 +karman_re100,sr,126,50.4,velocity,center_uy,0.5280646085739136 +karman_re100,sr,126,50.4,velocity,lower_ux,0.9693699479103088 +karman_re100,sr,126,50.4,velocity,lower_uy,0.3356567323207855 +karman_re100,sr,127,50.8,velocity,upper_ux,0.9938089847564697 +karman_re100,sr,127,50.8,velocity,upper_uy,0.379781574010849 +karman_re100,sr,127,50.8,velocity,center_ux,0.9471755027770996 +karman_re100,sr,127,50.8,velocity,center_uy,0.5480508208274841 +karman_re100,sr,127,50.8,velocity,lower_ux,1.034444808959961 +karman_re100,sr,127,50.8,velocity,lower_uy,0.37142884731292725 +karman_re100,sr,128,51.2,velocity,upper_ux,0.9229390025138855 +karman_re100,sr,128,51.2,velocity,upper_uy,0.37169158458709717 +karman_re100,sr,128,51.2,velocity,center_ux,0.9618939757347107 +karman_re100,sr,128,51.2,velocity,center_uy,0.5369512438774109 +karman_re100,sr,128,51.2,velocity,lower_ux,1.098118543624878 +karman_re100,sr,128,51.2,velocity,lower_uy,0.3717123866081238 +karman_re100,sr,129,51.6,velocity,upper_ux,0.8654601573944092 +karman_re100,sr,129,51.6,velocity,upper_uy,0.3194211721420288 +karman_re100,sr,129,51.6,velocity,center_ux,0.9664716124534607 +karman_re100,sr,129,51.6,velocity,center_uy,0.4954160451889038 +karman_re100,sr,129,51.6,velocity,lower_ux,1.1620866060256958 +karman_re100,sr,129,51.6,velocity,lower_uy,0.345123827457428 +karman_re100,sr,130,52.0,velocity,upper_ux,0.8227850198745728 +karman_re100,sr,130,52.0,velocity,upper_uy,0.22345802187919617 +karman_re100,sr,130,52.0,velocity,center_ux,0.9545724391937256 +karman_re100,sr,130,52.0,velocity,center_uy,0.40572455525398254 +karman_re100,sr,130,52.0,velocity,lower_ux,1.225817084312439 +karman_re100,sr,130,52.0,velocity,lower_uy,0.2953706383705139 +karman_re100,sr,131,52.4,velocity,upper_ux,0.8007662892341614 +karman_re100,sr,131,52.4,velocity,upper_uy,0.09323103725910187 +karman_re100,sr,131,52.4,velocity,center_ux,0.9207073450088501 +karman_re100,sr,131,52.4,velocity,center_uy,0.24036380648612976 +karman_re100,sr,131,52.4,velocity,lower_ux,1.2797136306762695 +karman_re100,sr,131,52.4,velocity,lower_uy,0.20966096222400665 +karman_re100,sr,132,52.8,velocity,upper_ux,0.8095670342445374 +karman_re100,sr,132,52.8,velocity,upper_uy,-0.047333668917417526 +karman_re100,sr,132,52.8,velocity,center_ux,0.8822664618492126 +karman_re100,sr,132,52.8,velocity,center_uy,-0.018339071422815323 +karman_re100,sr,132,52.8,velocity,lower_ux,1.3053131103515625 +karman_re100,sr,132,52.8,velocity,lower_uy,0.07571348547935486 +karman_re100,sr,133,53.2,velocity,upper_ux,0.8473010063171387 +karman_re100,sr,133,53.2,velocity,upper_uy,-0.17422893643379211 +karman_re100,sr,133,53.2,velocity,center_ux,0.8750321269035339 +karman_re100,sr,133,53.2,velocity,center_uy,-0.29098743200302124 +karman_re100,sr,133,53.2,velocity,lower_ux,1.2673454284667969 +karman_re100,sr,133,53.2,velocity,lower_uy,-0.10101799666881561 +karman_re100,sr,134,53.6,velocity,upper_ux,0.9020394682884216 +karman_re100,sr,134,53.6,velocity,upper_uy,-0.2712729871273041 +karman_re100,sr,134,53.6,velocity,center_ux,0.8964811563491821 +karman_re100,sr,134,53.6,velocity,center_uy,-0.4606463611125946 +karman_re100,sr,134,53.6,velocity,lower_ux,1.1785589456558228 +karman_re100,sr,134,53.6,velocity,lower_uy,-0.25265592336654663 +karman_re100,sr,135,54.0,velocity,upper_ux,0.9664924144744873 +karman_re100,sr,135,54.0,velocity,upper_uy,-0.33453190326690674 +karman_re100,sr,135,54.0,velocity,center_ux,0.9249544739723206 +karman_re100,sr,135,54.0,velocity,center_uy,-0.5272247791290283 +karman_re100,sr,135,54.0,velocity,lower_ux,1.0818254947662354 +karman_re100,sr,135,54.0,velocity,lower_uy,-0.3417893648147583 +karman_re100,sr,136,54.4,velocity,upper_ux,1.03279447555542 +karman_re100,sr,136,54.4,velocity,upper_uy,-0.37137940526008606 +karman_re100,sr,136,54.4,velocity,center_ux,0.9475451707839966 +karman_re100,sr,136,54.4,velocity,center_uy,-0.5481112599372864 +karman_re100,sr,136,54.4,velocity,lower_ux,0.9972090125083923 +karman_re100,sr,136,54.4,velocity,lower_uy,-0.37821003794670105 +karman_re100,sr,137,54.8,velocity,upper_ux,1.0967730283737183 +karman_re100,sr,137,54.8,velocity,upper_uy,-0.3728390038013458 +karman_re100,sr,137,54.8,velocity,center_ux,0.9622737765312195 +karman_re100,sr,137,54.8,velocity,center_uy,-0.5379483103752136 +karman_re100,sr,137,54.8,velocity,lower_ux,0.9258648753166199 +karman_re100,sr,137,54.8,velocity,lower_uy,-0.3716336488723755 +karman_re100,sr,138,55.2,velocity,upper_ux,1.1601680517196655 +karman_re100,sr,138,55.2,velocity,upper_uy,-0.346998393535614 +karman_re100,sr,138,55.2,velocity,center_ux,0.966276228427887 +karman_re100,sr,138,55.2,velocity,center_uy,-0.4975944757461548 +karman_re100,sr,138,55.2,velocity,lower_ux,0.8671566843986511 +karman_re100,sr,138,55.2,velocity,lower_uy,-0.3210434317588806 +karman_re100,sr,139,55.6,velocity,upper_ux,1.2234615087509155 +karman_re100,sr,139,55.6,velocity,upper_uy,-0.2981289327144623 +karman_re100,sr,139,55.6,velocity,center_ux,0.9540315866470337 +karman_re100,sr,139,55.6,velocity,center_uy,-0.40987229347229004 +karman_re100,sr,139,55.6,velocity,lower_ux,0.8232240080833435 +karman_re100,sr,139,55.6,velocity,lower_uy,-0.2266765981912613 +karman_re100,sr,140,56.0,velocity,upper_ux,1.2777831554412842 +karman_re100,sr,140,56.0,velocity,upper_uy,-0.21372434496879578 +karman_re100,sr,140,56.0,velocity,center_ux,0.92044997215271 +karman_re100,sr,140,56.0,velocity,center_uy,-0.2475043684244156 +karman_re100,sr,140,56.0,velocity,lower_ux,0.800157368183136 +karman_re100,sr,140,56.0,velocity,lower_uy,-0.09778253734111786 +karman_re100,sr,141,56.4,velocity,upper_ux,1.306119680404663 +karman_re100,sr,141,56.4,velocity,upper_uy,-0.08150104433298111 +karman_re100,sr,141,56.4,velocity,center_ux,0.8822293877601624 +karman_re100,sr,141,56.4,velocity,center_uy,0.008352868258953094 +karman_re100,sr,141,56.4,velocity,lower_ux,0.8087157607078552 +karman_re100,sr,141,56.4,velocity,lower_uy,0.04242994263768196 +karman_re100,sr,142,56.8,velocity,upper_ux,1.2714049816131592 +karman_re100,sr,142,56.8,velocity,upper_uy,0.09527083486318588 +karman_re100,sr,142,56.8,velocity,center_ux,0.8745580911636353 +karman_re100,sr,142,56.8,velocity,center_uy,0.2826266586780548 +karman_re100,sr,142,56.8,velocity,lower_ux,0.8464568257331848 +karman_re100,sr,142,56.8,velocity,lower_uy,0.1697658747434616 +karman_re100,sr,143,57.2,velocity,upper_ux,1.183038353919983 +karman_re100,sr,143,57.2,velocity,upper_uy,0.24930547177791595 +karman_re100,sr,143,57.2,velocity,center_ux,0.8952919840812683 +karman_re100,sr,143,57.2,velocity,center_uy,0.4566965103149414 +karman_re100,sr,143,57.2,velocity,lower_ux,0.900341272354126 +karman_re100,sr,143,57.2,velocity,lower_uy,0.2680465579032898 +karman_re100,sr,144,57.6,velocity,upper_ux,1.0852587223052979 +karman_re100,sr,144,57.6,velocity,upper_uy,0.34060508012771606 +karman_re100,sr,144,57.6,velocity,center_ux,0.9234758615493774 +karman_re100,sr,144,57.6,velocity,center_uy,0.5258254408836365 +karman_re100,sr,144,57.6,velocity,lower_ux,0.9638630747795105 +karman_re100,sr,144,57.6,velocity,lower_uy,0.33231812715530396 +karman_re100,sr,145,58.0,velocity,upper_ux,0.9996217489242554 +karman_re100,sr,145,58.0,velocity,upper_uy,0.3784716725349426 +karman_re100,sr,145,58.0,velocity,center_ux,0.9460530877113342 +karman_re100,sr,145,58.0,velocity,center_uy,0.5478338003158569 +karman_re100,sr,145,58.0,velocity,lower_ux,1.0295658111572266 +karman_re100,sr,145,58.0,velocity,lower_uy,0.3702700138092041 +karman_re100,sr,146,58.4,velocity,upper_ux,0.9281793236732483 +karman_re100,sr,146,58.4,velocity,upper_uy,0.3733147382736206 +karman_re100,sr,146,58.4,velocity,center_ux,0.9615478515625 +karman_re100,sr,146,58.4,velocity,center_uy,0.5387625694274902 +karman_re100,sr,146,58.4,velocity,lower_ux,1.0937857627868652 +karman_re100,sr,146,58.4,velocity,lower_uy,0.3730696439743042 +karman_re100,sr,147,58.8,velocity,upper_ux,0.8700767755508423 +karman_re100,sr,147,58.8,velocity,upper_uy,0.32415637373924255 +karman_re100,sr,147,58.8,velocity,center_ux,0.9672753214836121 +karman_re100,sr,147,58.8,velocity,center_uy,0.49949878454208374 +karman_re100,sr,147,58.8,velocity,lower_ux,1.1580822467803955 +karman_re100,sr,147,58.8,velocity,lower_uy,0.34796983003616333 +karman_re100,sr,148,59.2,velocity,upper_ux,0.8257858157157898 +karman_re100,sr,148,59.2,velocity,upper_uy,0.2310168445110321 +karman_re100,sr,148,59.2,velocity,center_ux,0.9561110734939575 +karman_re100,sr,148,59.2,velocity,center_uy,0.4139355719089508 +karman_re100,sr,148,59.2,velocity,lower_ux,1.2217131853103638 +karman_re100,sr,148,59.2,velocity,lower_uy,0.30026036500930786 +karman_re100,sr,149,59.6,velocity,upper_ux,0.8011801838874817 +karman_re100,sr,149,59.6,velocity,upper_uy,0.10266831517219543 +karman_re100,sr,149,59.6,velocity,center_ux,0.9227826595306396 +karman_re100,sr,149,59.6,velocity,center_uy,0.2546587586402893 +karman_re100,sr,149,59.6,velocity,lower_ux,1.2758997678756714 +karman_re100,sr,149,59.6,velocity,lower_uy,0.21743366122245789 +karman_re100,sr,150,60.0,velocity,upper_ux,0.8078300356864929 +karman_re100,sr,150,60.0,velocity,upper_uy,-0.037889111787080765 +karman_re100,sr,150,60.0,velocity,center_ux,0.8834331631660461 +karman_re100,sr,150,60.0,velocity,center_uy,0.0017902926774695516 +karman_re100,sr,150,60.0,velocity,lower_ux,1.3049641847610474 +karman_re100,sr,150,60.0,velocity,lower_uy,0.08735170215368271 +karman_re100,sr,151,60.4,velocity,upper_ux,0.8444089293479919 +karman_re100,sr,151,60.4,velocity,upper_uy,-0.16610187292099 +karman_re100,sr,151,60.4,velocity,center_ux,0.8740373253822327 +karman_re100,sr,151,60.4,velocity,center_uy,-0.27405238151550293 +karman_re100,sr,151,60.4,velocity,lower_ux,1.2724065780639648 +karman_re100,sr,151,60.4,velocity,lower_uy,-0.08856532722711563 +karman_re100,sr,152,60.8,velocity,upper_ux,0.8985247611999512 +karman_re100,sr,152,60.8,velocity,upper_uy,-0.265610933303833 +karman_re100,sr,152,60.8,velocity,center_ux,0.8946068286895752 +karman_re100,sr,152,60.8,velocity,center_uy,-0.4525657594203949 +karman_re100,sr,152,60.8,velocity,lower_ux,1.1859279870986938 +karman_re100,sr,152,60.8,velocity,lower_uy,-0.24442265927791595 +karman_re100,sr,153,61.2,velocity,upper_ux,0.96268630027771 +karman_re100,sr,153,61.2,velocity,upper_uy,-0.3308093547821045 +karman_re100,sr,153,61.2,velocity,center_ux,0.9234651327133179 +karman_re100,sr,153,61.2,velocity,center_uy,-0.5244051814079285 +karman_re100,sr,153,61.2,velocity,lower_ux,1.0887486934661865 +karman_re100,sr,153,61.2,velocity,lower_uy,-0.3379875421524048 +karman_re100,sr,154,61.6,velocity,upper_ux,1.0282111167907715 +karman_re100,sr,154,61.6,velocity,upper_uy,-0.3697179853916168 +karman_re100,sr,154,61.6,velocity,center_ux,0.9459384083747864 +karman_re100,sr,154,61.6,velocity,center_uy,-0.5475987792015076 +karman_re100,sr,154,61.6,velocity,lower_ux,1.0022822618484497 +karman_re100,sr,154,61.6,velocity,lower_uy,-0.3775476813316345 +karman_re100,sr,155,62.0,velocity,upper_ux,1.0918655395507812 +karman_re100,sr,155,62.0,velocity,upper_uy,-0.3736024796962738 +karman_re100,sr,155,62.0,velocity,center_ux,0.9609528183937073 +karman_re100,sr,155,62.0,velocity,center_uy,-0.5396012663841248 +karman_re100,sr,155,62.0,velocity,lower_ux,0.9296735525131226 +karman_re100,sr,155,62.0,velocity,lower_uy,-0.37386924028396606 +karman_re100,sr,156,62.4,velocity,upper_ux,1.1555545330047607 +karman_re100,sr,156,62.4,velocity,upper_uy,-0.3491728901863098 +karman_re100,sr,156,62.4,velocity,center_ux,0.9664953351020813 +karman_re100,sr,156,62.4,velocity,center_uy,-0.5015435218811035 +karman_re100,sr,156,62.4,velocity,lower_ux,0.8705297708511353 +karman_re100,sr,156,62.4,velocity,lower_uy,-0.3263469636440277 +karman_re100,sr,157,62.8,velocity,upper_ux,1.2194157838821411 +karman_re100,sr,157,62.8,velocity,upper_uy,-0.30229657888412476 +karman_re100,sr,157,62.8,velocity,center_ux,0.9561141729354858 +karman_re100,sr,157,62.8,velocity,center_uy,-0.41805973649024963 +karman_re100,sr,157,62.8,velocity,lower_ux,0.825834333896637 +karman_re100,sr,157,62.8,velocity,lower_uy,-0.2347664088010788 +karman_re100,sr,158,63.2,velocity,upper_ux,1.2750096321105957 +karman_re100,sr,158,63.2,velocity,upper_uy,-0.22068016231060028 +karman_re100,sr,158,63.2,velocity,center_ux,0.9244341850280762 +karman_re100,sr,158,63.2,velocity,center_uy,-0.2618540823459625 +karman_re100,sr,158,63.2,velocity,lower_ux,0.8013303279876709 +karman_re100,sr,158,63.2,velocity,lower_uy,-0.1074916422367096 +karman_re100,sr,159,63.6,velocity,upper_ux,1.3058135509490967 +karman_re100,sr,159,63.6,velocity,upper_uy,-0.09225505590438843 +karman_re100,sr,159,63.6,velocity,center_ux,0.8849354386329651 +karman_re100,sr,159,63.6,velocity,center_uy,-0.011355937458574772 +karman_re100,sr,159,63.6,velocity,lower_ux,0.8072171807289124 +karman_re100,sr,159,63.6,velocity,lower_uy,0.03312183916568756 +karman_re100,sr,160,64.0,velocity,upper_ux,1.2750709056854248 +karman_re100,sr,160,64.0,velocity,upper_uy,0.08286330848932266 +karman_re100,sr,160,64.0,velocity,center_ux,0.873909592628479 +karman_re100,sr,160,64.0,velocity,center_uy,0.26630842685699463 +karman_re100,sr,160,64.0,velocity,lower_ux,0.8426268100738525 +karman_re100,sr,160,64.0,velocity,lower_uy,0.16195997595787048 +karman_re100,sr,161,64.4,velocity,upper_ux,1.189066767692566 +karman_re100,sr,161,64.4,velocity,upper_uy,0.24025216698646545 +karman_re100,sr,161,64.4,velocity,center_ux,0.8933013081550598 +karman_re100,sr,161,64.4,velocity,center_uy,0.4489578306674957 +karman_re100,sr,161,64.4,velocity,lower_ux,0.8957182168960571 +karman_re100,sr,161,64.4,velocity,lower_uy,0.2627195715904236 +karman_re100,sr,162,64.8,velocity,upper_ux,1.0914753675460815 +karman_re100,sr,162,64.8,velocity,upper_uy,0.3357759118080139 +karman_re100,sr,162,64.8,velocity,center_ux,0.9218719005584717 +karman_re100,sr,162,64.8,velocity,center_uy,0.5231669545173645 +karman_re100,sr,162,64.8,velocity,lower_ux,0.9593371748924255 +karman_re100,sr,162,64.8,velocity,lower_uy,0.32889872789382935 +karman_re100,sr,163,65.2,velocity,upper_ux,1.005214810371399 +karman_re100,sr,163,65.2,velocity,upper_uy,0.37693458795547485 +karman_re100,sr,163,65.2,velocity,center_ux,0.9452058672904968 +karman_re100,sr,163,65.2,velocity,center_uy,0.5474046468734741 +karman_re100,sr,163,65.2,velocity,lower_ux,1.0255030393600464 +karman_re100,sr,163,65.2,velocity,lower_uy,0.3688923716545105 +karman_re100,sr,164,65.6,velocity,upper_ux,0.9330015778541565 +karman_re100,sr,164,65.6,velocity,upper_uy,0.3747769892215729 +karman_re100,sr,164,65.6,velocity,center_ux,0.9612855315208435 +karman_re100,sr,164,65.6,velocity,center_uy,0.5405009388923645 +karman_re100,sr,164,65.6,velocity,lower_ux,1.0901243686676025 +karman_re100,sr,164,65.6,velocity,lower_uy,0.37416398525238037 +karman_re100,sr,165,66.0,velocity,upper_ux,0.8732612133026123 +karman_re100,sr,165,66.0,velocity,upper_uy,0.32880452275276184 +karman_re100,sr,165,66.0,velocity,center_ux,0.9670990109443665 +karman_re100,sr,165,66.0,velocity,center_uy,0.5035844445228577 +karman_re100,sr,165,66.0,velocity,lower_ux,1.1537290811538696 +karman_re100,sr,165,66.0,velocity,lower_uy,0.3505222201347351 +karman_re100,sr,166,66.4,velocity,upper_ux,0.827426016330719 +karman_re100,sr,166,66.4,velocity,upper_uy,0.2386905997991562 +karman_re100,sr,166,66.4,velocity,center_ux,0.9566799402236938 +karman_re100,sr,166,66.4,velocity,center_uy,0.42225947976112366 +karman_re100,sr,166,66.4,velocity,lower_ux,1.2171968221664429 +karman_re100,sr,166,66.4,velocity,lower_uy,0.3046954870223999 +karman_re100,sr,167,66.8,velocity,upper_ux,0.8014722466468811 +karman_re100,sr,167,66.8,velocity,upper_uy,0.11239129304885864 +karman_re100,sr,167,66.8,velocity,center_ux,0.9250902533531189 +karman_re100,sr,167,66.8,velocity,center_uy,0.2689953148365021 +karman_re100,sr,167,66.8,velocity,lower_ux,1.2728116512298584 +karman_re100,sr,167,66.8,velocity,lower_uy,0.22453129291534424 +karman_re100,sr,168,67.2,velocity,upper_ux,0.806113600730896 +karman_re100,sr,168,67.2,velocity,upper_uy,-0.028136596083641052 +karman_re100,sr,168,67.2,velocity,center_ux,0.8851930499076843 +karman_re100,sr,168,67.2,velocity,center_uy,0.021630313247442245 +karman_re100,sr,168,67.2,velocity,lower_ux,1.3052549362182617 +karman_re100,sr,168,67.2,velocity,lower_uy,0.09811485558748245 +karman_re100,sr,169,67.6,velocity,upper_ux,0.8414919972419739 +karman_re100,sr,169,67.6,velocity,upper_uy,-0.15769541263580322 +karman_re100,sr,169,67.6,velocity,center_ux,0.8737714886665344 +karman_re100,sr,169,67.6,velocity,center_uy,-0.2572301924228668 +karman_re100,sr,169,67.6,velocity,lower_ux,1.278028130531311 +karman_re100,sr,169,67.6,velocity,lower_uy,-0.0763866975903511 +karman_re100,sr,170,68.0,velocity,upper_ux,0.8945049047470093 +karman_re100,sr,170,68.0,velocity,upper_uy,-0.2597648799419403 +karman_re100,sr,170,68.0,velocity,center_ux,0.8929292559623718 +karman_re100,sr,170,68.0,velocity,center_uy,-0.4444340467453003 +karman_re100,sr,170,68.0,velocity,lower_ux,1.1935598850250244 +karman_re100,sr,170,68.0,velocity,lower_uy,-0.23584327101707458 +karman_re100,sr,171,68.4,velocity,upper_ux,0.9574652314186096 +karman_re100,sr,171,68.4,velocity,upper_uy,-0.32701411843299866 +karman_re100,sr,171,68.4,velocity,center_ux,0.9211698174476624 +karman_re100,sr,171,68.4,velocity,center_uy,-0.5215844511985779 +karman_re100,sr,171,68.4,velocity,lower_ux,1.0952653884887695 +karman_re100,sr,171,68.4,velocity,lower_uy,-0.3336332440376282 +karman_re100,sr,172,68.8,velocity,upper_ux,1.0229921340942383 +karman_re100,sr,172,68.8,velocity,upper_uy,-0.36797863245010376 +karman_re100,sr,172,68.8,velocity,center_ux,0.9442228078842163 +karman_re100,sr,172,68.8,velocity,center_uy,-0.5469862222671509 +karman_re100,sr,172,68.8,velocity,lower_ux,1.0078281164169312 +karman_re100,sr,172,68.8,velocity,lower_uy,-0.3763344883918762 +karman_re100,sr,173,69.2,velocity,upper_ux,1.087174654006958 +karman_re100,sr,173,69.2,velocity,upper_uy,-0.37444859743118286 +karman_re100,sr,173,69.2,velocity,center_ux,0.9601964354515076 +karman_re100,sr,173,69.2,velocity,center_uy,-0.5410818457603455 +karman_re100,sr,173,69.2,velocity,lower_ux,0.9347213506698608 +karman_re100,sr,173,69.2,velocity,lower_uy,-0.3755548894405365 +karman_re100,sr,174,69.6,velocity,upper_ux,1.1510953903198242 +karman_re100,sr,174,69.6,velocity,upper_uy,-0.35154083371162415 +karman_re100,sr,174,69.6,velocity,center_ux,0.9669969081878662 +karman_re100,sr,174,69.6,velocity,center_uy,-0.5051583647727966 +karman_re100,sr,174,69.6,velocity,lower_ux,0.8749849200248718 +karman_re100,sr,174,69.6,velocity,lower_uy,-0.3311083912849426 +karman_re100,sr,175,70.0,velocity,upper_ux,1.2154076099395752 +karman_re100,sr,175,70.0,velocity,upper_uy,-0.3066469132900238 +karman_re100,sr,175,70.0,velocity,center_ux,0.9581814408302307 +karman_re100,sr,175,70.0,velocity,center_uy,-0.4256771504878998 +karman_re100,sr,175,70.0,velocity,lower_ux,0.8294231295585632 +karman_re100,sr,175,70.0,velocity,lower_uy,-0.24235586822032928 +karman_re100,sr,176,70.4,velocity,upper_ux,1.2713251113891602 +karman_re100,sr,176,70.4,velocity,upper_uy,-0.22788652777671814 +karman_re100,sr,176,70.4,velocity,center_ux,0.9274507761001587 +karman_re100,sr,176,70.4,velocity,center_uy,-0.27537083625793457 +karman_re100,sr,176,70.4,velocity,lower_ux,0.8026025295257568 +karman_re100,sr,176,70.4,velocity,lower_uy,-0.11691669374704361 +karman_re100,sr,177,70.8,velocity,upper_ux,1.3043417930603027 +karman_re100,sr,177,70.8,velocity,upper_uy,-0.10339754074811935 +karman_re100,sr,177,70.8,velocity,center_ux,0.8866618275642395 +karman_re100,sr,177,70.8,velocity,center_uy,-0.031224185600876808 +karman_re100,sr,177,70.8,velocity,lower_ux,0.80558180809021 +karman_re100,sr,177,70.8,velocity,lower_uy,0.023684389889240265 +karman_re100,sr,178,71.2,velocity,upper_ux,1.2789052724838257 +karman_re100,sr,178,71.2,velocity,upper_uy,0.06998104602098465 +karman_re100,sr,178,71.2,velocity,center_ux,0.8732330203056335 +karman_re100,sr,178,71.2,velocity,center_uy,0.24863848090171814 +karman_re100,sr,178,71.2,velocity,lower_ux,0.8395729064941406 +karman_re100,sr,178,71.2,velocity,lower_uy,0.15382172167301178 +karman_re100,sr,179,71.6,velocity,upper_ux,1.1956493854522705 +karman_re100,sr,179,71.6,velocity,upper_uy,0.23108544945716858 +karman_re100,sr,179,71.6,velocity,center_ux,0.8913869261741638 +karman_re100,sr,179,71.6,velocity,center_uy,0.44006839394569397 +karman_re100,sr,179,71.6,velocity,lower_ux,0.8919804096221924 +karman_re100,sr,179,71.6,velocity,lower_uy,0.25698843598365784 +karman_re100,sr,180,72.0,velocity,upper_ux,1.098124384880066 +karman_re100,sr,180,72.0,velocity,upper_uy,0.33115389943122864 +karman_re100,sr,180,72.0,velocity,center_ux,0.9203346371650696 +karman_re100,sr,180,72.0,velocity,center_uy,0.5200188159942627 +karman_re100,sr,180,72.0,velocity,lower_ux,0.9555066823959351 +karman_re100,sr,180,72.0,velocity,lower_uy,0.32515862584114075 +karman_re100,sr,181,72.4,velocity,upper_ux,1.0107314586639404 +karman_re100,sr,181,72.4,velocity,upper_uy,0.37564876675605774 +karman_re100,sr,181,72.4,velocity,center_ux,0.9441559314727783 +karman_re100,sr,181,72.4,velocity,center_uy,0.5466805100440979 +karman_re100,sr,181,72.4,velocity,lower_ux,1.0216234922409058 +karman_re100,sr,181,72.4,velocity,lower_uy,0.3671000301837921 +karman_re100,sr,182,72.8,velocity,upper_ux,0.9368299841880798 +karman_re100,sr,182,72.8,velocity,upper_uy,0.376430481672287 +karman_re100,sr,182,72.8,velocity,center_ux,0.9600393176078796 +karman_re100,sr,182,72.8,velocity,center_uy,0.5419795513153076 +karman_re100,sr,182,72.8,velocity,lower_ux,1.0856106281280518 +karman_re100,sr,182,72.8,velocity,lower_uy,0.3748182952404022 +karman_re100,sr,183,73.2,velocity,upper_ux,0.8760945200920105 +karman_re100,sr,183,73.2,velocity,upper_uy,0.33360642194747925 +karman_re100,sr,183,73.2,velocity,center_ux,0.9666874408721924 +karman_re100,sr,183,73.2,velocity,center_uy,0.5073189735412598 +karman_re100,sr,183,73.2,velocity,lower_ux,1.1489949226379395 +karman_re100,sr,183,73.2,velocity,lower_uy,0.3526407480239868 +karman_re100,sr,184,73.6,velocity,upper_ux,0.8295787572860718 +karman_re100,sr,184,73.6,velocity,upper_uy,0.24644729495048523 +karman_re100,sr,184,73.6,velocity,center_ux,0.9580516219139099 +karman_re100,sr,184,73.6,velocity,center_uy,0.430062472820282 +karman_re100,sr,184,73.6,velocity,lower_ux,1.2130084037780762 +karman_re100,sr,184,73.6,velocity,lower_uy,0.3086187243461609 +karman_re100,sr,185,74.0,velocity,upper_ux,0.8022445440292358 +karman_re100,sr,185,74.0,velocity,upper_uy,0.12210242450237274 +karman_re100,sr,185,74.0,velocity,center_ux,0.928347110748291 +karman_re100,sr,185,74.0,velocity,center_uy,0.28277885913848877 +karman_re100,sr,185,74.0,velocity,lower_ux,1.269791603088379 +karman_re100,sr,185,74.0,velocity,lower_uy,0.23109382390975952 +karman_re100,sr,186,74.4,velocity,upper_ux,0.8048333525657654 +karman_re100,sr,186,74.4,velocity,upper_uy,-0.018495434895157814 +karman_re100,sr,186,74.4,velocity,center_ux,0.8880864977836609 +karman_re100,sr,186,74.4,velocity,center_uy,0.041206229478120804 +karman_re100,sr,186,74.4,velocity,lower_ux,1.30507493019104 +karman_re100,sr,186,74.4,velocity,lower_uy,0.1083352193236351 +karman_re100,sr,187,74.8,velocity,upper_ux,0.8381320238113403 +karman_re100,sr,187,74.8,velocity,upper_uy,-0.14945264160633087 +karman_re100,sr,187,74.8,velocity,center_ux,0.873720109462738 +karman_re100,sr,187,74.8,velocity,center_uy,-0.24023941159248352 +karman_re100,sr,187,74.8,velocity,lower_ux,1.2822070121765137 +karman_re100,sr,187,74.8,velocity,lower_uy,-0.06408001482486725 +karman_re100,sr,188,75.2,velocity,upper_ux,0.8896563053131104 +karman_re100,sr,188,75.2,velocity,upper_uy,-0.25396889448165894 +karman_re100,sr,188,75.2,velocity,center_ux,0.8908216953277588 +karman_re100,sr,188,75.2,velocity,center_uy,-0.43594181537628174 +karman_re100,sr,188,75.2,velocity,lower_ux,1.199744462966919 +karman_re100,sr,188,75.2,velocity,lower_uy,-0.22651556134223938 +karman_re100,sr,189,75.6,velocity,upper_ux,0.9524189829826355 +karman_re100,sr,189,75.6,velocity,upper_uy,-0.3232898414134979 +karman_re100,sr,189,75.6,velocity,center_ux,0.9192073345184326 +karman_re100,sr,189,75.6,velocity,center_uy,-0.5186249017715454 +karman_re100,sr,189,75.6,velocity,lower_ux,1.101614236831665 +karman_re100,sr,189,75.6,velocity,lower_uy,-0.32853472232818604 +karman_re100,sr,190,76.0,velocity,upper_ux,1.0183370113372803 +karman_re100,sr,190,76.0,velocity,upper_uy,-0.36622437834739685 +karman_re100,sr,190,76.0,velocity,center_ux,0.9430349469184875 +karman_re100,sr,190,76.0,velocity,center_uy,-0.5462827682495117 +karman_re100,sr,190,76.0,velocity,lower_ux,1.0135806798934937 +karman_re100,sr,190,76.0,velocity,lower_uy,-0.37455669045448303 +karman_re100,sr,191,76.4,velocity,upper_ux,1.0830694437026978 +karman_re100,sr,191,76.4,velocity,upper_uy,-0.3753134608268738 +karman_re100,sr,191,76.4,velocity,center_ux,0.9597765207290649 +karman_re100,sr,191,76.4,velocity,center_uy,-0.5425422191619873 +karman_re100,sr,191,76.4,velocity,lower_ux,0.9399070143699646 +karman_re100,sr,191,76.4,velocity,lower_uy,-0.3767804205417633 +karman_re100,sr,192,76.8,velocity,upper_ux,1.1470085382461548 +karman_re100,sr,192,76.8,velocity,upper_uy,-0.3539714515209198 +karman_re100,sr,192,76.8,velocity,center_ux,0.9673498272895813 +karman_re100,sr,192,76.8,velocity,center_uy,-0.5087916254997253 +karman_re100,sr,192,76.8,velocity,lower_ux,0.8792577385902405 +karman_re100,sr,192,76.8,velocity,lower_uy,-0.3354828953742981 +karman_re100,sr,193,77.2,velocity,upper_ux,1.2108532190322876 +karman_re100,sr,193,77.2,velocity,upper_uy,-0.3109363615512848 +karman_re100,sr,193,77.2,velocity,center_ux,0.9590020179748535 +karman_re100,sr,193,77.2,velocity,center_uy,-0.4333135187625885 +karman_re100,sr,193,77.2,velocity,lower_ux,0.8319391012191772 +karman_re100,sr,193,77.2,velocity,lower_uy,-0.24974460899829865 +karman_re100,sr,194,77.6,velocity,upper_ux,1.2675297260284424 +karman_re100,sr,194,77.6,velocity,upper_uy,-0.23492556810379028 +karman_re100,sr,194,77.6,velocity,center_ux,0.9295337200164795 +karman_re100,sr,194,77.6,velocity,center_uy,-0.28880444169044495 +karman_re100,sr,194,77.6,velocity,lower_ux,0.8032752275466919 +karman_re100,sr,194,77.6,velocity,lower_uy,-0.1264774203300476 +karman_re100,sr,195,78.0,velocity,upper_ux,1.303633451461792 +karman_re100,sr,195,78.0,velocity,upper_uy,-0.11419286578893661 +karman_re100,sr,195,78.0,velocity,center_ux,0.88853919506073 +karman_re100,sr,195,78.0,velocity,center_uy,-0.05099114030599594 +karman_re100,sr,195,78.0,velocity,lower_ux,0.8042154908180237 +karman_re100,sr,195,78.0,velocity,lower_uy,0.013870387338101864 +karman_re100,sr,196,78.4,velocity,upper_ux,1.2835955619812012 +karman_re100,sr,196,78.4,velocity,upper_uy,0.057241782546043396 +karman_re100,sr,196,78.4,velocity,center_ux,0.8728591799736023 +karman_re100,sr,196,78.4,velocity,center_uy,0.23051540553569794 +karman_re100,sr,196,78.4,velocity,lower_ux,0.8367283344268799 +karman_re100,sr,196,78.4,velocity,lower_uy,0.14523357152938843 +karman_re100,sr,197,78.8,velocity,upper_ux,1.2032644748687744 +karman_re100,sr,197,78.8,velocity,upper_uy,0.22184444963932037 +karman_re100,sr,197,78.8,velocity,center_ux,0.8898062109947205 +karman_re100,sr,197,78.8,velocity,center_uy,0.43063122034072876 +karman_re100,sr,197,78.8,velocity,lower_ux,0.8884293437004089 +karman_re100,sr,197,78.8,velocity,lower_uy,0.25083816051483154 +karman_re100,sr,198,79.2,velocity,upper_ux,1.1051418781280518 +karman_re100,sr,198,79.2,velocity,upper_uy,0.32642731070518494 +karman_re100,sr,198,79.2,velocity,center_ux,0.9184306263923645 +karman_re100,sr,198,79.2,velocity,center_uy,0.5166513323783875 +karman_re100,sr,198,79.2,velocity,lower_ux,0.9510882496833801 +karman_re100,sr,198,79.2,velocity,lower_uy,0.3211636245250702 +karman_re100,sr,199,79.6,velocity,upper_ux,1.016130805015564 +karman_re100,sr,199,79.6,velocity,upper_uy,0.3742082715034485 +karman_re100,sr,199,79.6,velocity,center_ux,0.942253828048706 +karman_re100,sr,199,79.6,velocity,center_uy,0.5457485318183899 +karman_re100,sr,199,79.6,velocity,lower_ux,1.016557216644287 +karman_re100,sr,199,79.6,velocity,lower_uy,0.3650381565093994 +karman_re100,sr,200,80.0,velocity,upper_ux,0.9414529204368591 +karman_re100,sr,200,80.0,velocity,upper_uy,0.377858966588974 +karman_re100,sr,200,80.0,velocity,center_ux,0.9588559865951538 +karman_re100,sr,200,80.0,velocity,center_uy,0.5431823134422302 +karman_re100,sr,200,80.0,velocity,lower_ux,1.0807678699493408 +karman_re100,sr,200,80.0,velocity,lower_uy,0.37531977891921997 +karman_re100,sr,201,80.4,velocity,upper_ux,0.8801238536834717 +karman_re100,sr,201,80.4,velocity,upper_uy,0.3381037414073944 +karman_re100,sr,201,80.4,velocity,center_ux,0.9667465090751648 +karman_re100,sr,201,80.4,velocity,center_uy,0.5105713605880737 +karman_re100,sr,201,80.4,velocity,lower_ux,1.1443405151367188 +karman_re100,sr,201,80.4,velocity,lower_uy,0.3547132611274719 +karman_re100,sr,202,80.8,velocity,upper_ux,0.8328744769096375 +karman_re100,sr,202,80.8,velocity,upper_uy,0.2538291811943054 +karman_re100,sr,202,80.8,velocity,center_ux,0.9597980976104736 +karman_re100,sr,202,80.8,velocity,center_uy,0.4371035695075989 +karman_re100,sr,202,80.8,velocity,lower_ux,1.208768367767334 +karman_re100,sr,202,80.8,velocity,lower_uy,0.3125177323818207 +karman_re100,sr,203,81.2,velocity,upper_ux,0.8040035963058472 +karman_re100,sr,203,81.2,velocity,upper_uy,0.13144643604755402 +karman_re100,sr,203,81.2,velocity,center_ux,0.9318326711654663 +karman_re100,sr,203,81.2,velocity,center_uy,0.2955494821071625 +karman_re100,sr,203,81.2,velocity,lower_ux,1.266422986984253 +karman_re100,sr,203,81.2,velocity,lower_uy,0.23774263262748718 +karman_re100,sr,204,81.6,velocity,upper_ux,0.8036344647407532 +karman_re100,sr,204,81.6,velocity,upper_uy,-0.009048381820321083 +karman_re100,sr,204,81.6,velocity,center_ux,0.8905261158943176 +karman_re100,sr,204,81.6,velocity,center_uy,0.060560647398233414 +karman_re100,sr,204,81.6,velocity,lower_ux,1.3033854961395264 +karman_re100,sr,204,81.6,velocity,lower_uy,0.11872386932373047 +karman_re100,sr,205,82.0,velocity,upper_ux,0.8348664045333862 +karman_re100,sr,205,82.0,velocity,upper_uy,-0.14122945070266724 +karman_re100,sr,205,82.0,velocity,center_ux,0.8732125163078308 +karman_re100,sr,205,82.0,velocity,center_uy,-0.22219431400299072 +karman_re100,sr,205,82.0,velocity,lower_ux,1.2851271629333496 +karman_re100,sr,205,82.0,velocity,lower_uy,-0.05127702280879021 +karman_re100,sr,206,82.4,velocity,upper_ux,0.8856599926948547 +karman_re100,sr,206,82.4,velocity,upper_uy,-0.24806015193462372 +karman_re100,sr,206,82.4,velocity,center_ux,0.8888539671897888 +karman_re100,sr,206,82.4,velocity,center_uy,-0.4264250099658966 +karman_re100,sr,206,82.4,velocity,lower_ux,1.2057857513427734 +karman_re100,sr,206,82.4,velocity,lower_uy,-0.2167946994304657 +karman_re100,sr,207,82.8,velocity,upper_ux,0.9481956958770752 +karman_re100,sr,207,82.8,velocity,upper_uy,-0.31947362422943115 +karman_re100,sr,207,82.8,velocity,center_ux,0.9173486828804016 +karman_re100,sr,207,82.8,velocity,center_uy,-0.5152486562728882 +karman_re100,sr,207,82.8,velocity,lower_ux,1.107900619506836 +karman_re100,sr,207,82.8,velocity,lower_uy,-0.3233386278152466 +karman_re100,sr,208,83.2,velocity,upper_ux,1.0144715309143066 +karman_re100,sr,208,83.2,velocity,upper_uy,-0.36427319049835205 +karman_re100,sr,208,83.2,velocity,center_ux,0.9419994950294495 +karman_re100,sr,208,83.2,velocity,center_uy,-0.5454254746437073 +karman_re100,sr,208,83.2,velocity,lower_ux,1.0192179679870605 +karman_re100,sr,208,83.2,velocity,lower_uy,-0.37281566858291626 +karman_re100,sr,209,83.6,velocity,upper_ux,1.0791321992874146 +karman_re100,sr,209,83.6,velocity,upper_uy,-0.375890851020813 +karman_re100,sr,209,83.6,velocity,center_ux,0.9589620232582092 +karman_re100,sr,209,83.6,velocity,center_uy,-0.5439273715019226 +karman_re100,sr,209,83.6,velocity,lower_ux,0.9443252086639404 +karman_re100,sr,209,83.6,velocity,lower_uy,-0.3780185282230377 +karman_re100,sr,210,84.0,velocity,upper_ux,1.1424338817596436 +karman_re100,sr,210,84.0,velocity,upper_uy,-0.3561108410358429 +karman_re100,sr,210,84.0,velocity,center_ux,0.9667215943336487 +karman_re100,sr,210,84.0,velocity,center_uy,-0.5123943090438843 +karman_re100,sr,210,84.0,velocity,lower_ux,0.8821597099304199 +karman_re100,sr,210,84.0,velocity,lower_uy,-0.3398716449737549 +karman_re100,sr,211,84.4,velocity,upper_ux,1.2065038681030273 +karman_re100,sr,211,84.4,velocity,upper_uy,-0.31477826833724976 +karman_re100,sr,211,84.4,velocity,center_ux,0.9596822261810303 +karman_re100,sr,211,84.4,velocity,center_uy,-0.440856009721756 +karman_re100,sr,211,84.4,velocity,lower_ux,0.8338819742202759 +karman_re100,sr,211,84.4,velocity,lower_uy,-0.2571980059146881 +karman_re100,sr,212,84.8,velocity,upper_ux,1.2643431425094604 +karman_re100,sr,212,84.8,velocity,upper_uy,-0.24128061532974243 +karman_re100,sr,212,84.8,velocity,center_ux,0.9320212006568909 +karman_re100,sr,212,84.8,velocity,center_uy,-0.30204614996910095 +karman_re100,sr,212,84.8,velocity,lower_ux,0.8039118051528931 +karman_re100,sr,212,84.8,velocity,lower_uy,-0.1361120641231537 +karman_re100,sr,213,85.2,velocity,upper_ux,1.3031343221664429 +karman_re100,sr,213,85.2,velocity,upper_uy,-0.12399666756391525 +karman_re100,sr,213,85.2,velocity,center_ux,0.8909956216812134 +karman_re100,sr,213,85.2,velocity,center_uy,-0.07028701901435852 +karman_re100,sr,213,85.2,velocity,lower_ux,0.8028280735015869 +karman_re100,sr,213,85.2,velocity,lower_uy,0.003999942913651466 +karman_re100,sr,214,85.6,velocity,upper_ux,1.2881191968917847 +karman_re100,sr,214,85.6,velocity,upper_uy,0.04504362493753433 +karman_re100,sr,214,85.6,velocity,center_ux,0.8731329441070557 +karman_re100,sr,214,85.6,velocity,center_uy,0.21282896399497986 +karman_re100,sr,214,85.6,velocity,lower_ux,0.8337770104408264 +karman_re100,sr,214,85.6,velocity,lower_uy,0.13664408028125763 +karman_re100,sr,215,86.0,velocity,upper_ux,1.2101092338562012 +karman_re100,sr,215,86.0,velocity,upper_uy,0.21235308051109314 +karman_re100,sr,215,86.0,velocity,center_ux,0.8880211710929871 +karman_re100,sr,215,86.0,velocity,center_uy,0.4213401675224304 +karman_re100,sr,215,86.0,velocity,lower_ux,0.8839963674545288 +karman_re100,sr,215,86.0,velocity,lower_uy,0.24467188119888306 +karman_re100,sr,216,86.4,velocity,upper_ux,1.1116999387741089 +karman_re100,sr,216,86.4,velocity,upper_uy,0.3211725354194641 +karman_re100,sr,216,86.4,velocity,center_ux,0.9161921739578247 +karman_re100,sr,216,86.4,velocity,center_uy,0.5134233832359314 +karman_re100,sr,216,86.4,velocity,lower_ux,0.9458129405975342 +karman_re100,sr,216,86.4,velocity,lower_uy,0.31722918152809143 +karman_re100,sr,217,86.8,velocity,upper_ux,1.0220186710357666 +karman_re100,sr,217,86.8,velocity,upper_uy,0.37229248881340027 +karman_re100,sr,217,86.8,velocity,center_ux,0.9407607316970825 +karman_re100,sr,217,86.8,velocity,center_uy,0.5448979139328003 +karman_re100,sr,217,86.8,velocity,lower_ux,1.0115445852279663 +karman_re100,sr,217,86.8,velocity,lower_uy,0.363010436296463 +karman_re100,sr,218,87.2,velocity,upper_ux,0.9466670155525208 +karman_re100,sr,218,87.2,velocity,upper_uy,0.378867506980896 +karman_re100,sr,218,87.2,velocity,center_ux,0.9580719470977783 +karman_re100,sr,218,87.2,velocity,center_uy,0.5444381237030029 +karman_re100,sr,218,87.2,velocity,lower_ux,1.0761957168579102 +karman_re100,sr,218,87.2,velocity,lower_uy,0.37595057487487793 +karman_re100,sr,219,87.6,velocity,upper_ux,0.8847463130950928 +karman_re100,sr,219,87.6,velocity,upper_uy,0.3422272205352783 +karman_re100,sr,219,87.6,velocity,center_ux,0.9670417308807373 +karman_re100,sr,219,87.6,velocity,center_uy,0.5138790607452393 +karman_re100,sr,219,87.6,velocity,lower_ux,1.1400914192199707 +karman_re100,sr,219,87.6,velocity,lower_uy,0.3570384681224823 +karman_re100,sr,220,88.0,velocity,upper_ux,0.8362826704978943 +karman_re100,sr,220,88.0,velocity,upper_uy,0.2609254717826843 +karman_re100,sr,220,88.0,velocity,center_ux,0.9610936045646667 +karman_re100,sr,220,88.0,velocity,center_uy,0.44410955905914307 +karman_re100,sr,220,88.0,velocity,lower_ux,1.204516053199768 +karman_re100,sr,220,88.0,velocity,lower_uy,0.316609650850296 +karman_re100,sr,221,88.4,velocity,upper_ux,0.8052248358726501 +karman_re100,sr,221,88.4,velocity,upper_uy,0.1407758593559265 +karman_re100,sr,221,88.4,velocity,center_ux,0.9340526461601257 +karman_re100,sr,221,88.4,velocity,center_uy,0.30807557702064514 +karman_re100,sr,221,88.4,velocity,lower_ux,1.2624225616455078 +karman_re100,sr,221,88.4,velocity,lower_uy,0.24457769095897675 +karman_re100,sr,222,88.8,velocity,upper_ux,0.8024812340736389 +karman_re100,sr,222,88.8,velocity,upper_uy,0.0007164622657001019 +karman_re100,sr,222,88.8,velocity,center_ux,0.8925295472145081 +karman_re100,sr,222,88.8,velocity,center_uy,0.07989758253097534 +karman_re100,sr,222,88.8,velocity,lower_ux,1.301743984222412 +karman_re100,sr,222,88.8,velocity,lower_uy,0.129257932305336 +karman_re100,sr,223,89.2,velocity,upper_ux,0.8320678472518921 +karman_re100,sr,223,89.2,velocity,upper_uy,-0.13255798816680908 +karman_re100,sr,223,89.2,velocity,center_ux,0.8728988170623779 +karman_re100,sr,223,89.2,velocity,center_uy,-0.2032475620508194 +karman_re100,sr,223,89.2,velocity,lower_ux,1.2888041734695435 +karman_re100,sr,223,89.2,velocity,lower_uy,-0.03828280791640282 +karman_re100,sr,224,89.6,velocity,upper_ux,0.8820490837097168 +karman_re100,sr,224,89.6,velocity,upper_uy,-0.24166767299175262 +karman_re100,sr,224,89.6,velocity,center_ux,0.8870456218719482 +karman_re100,sr,224,89.6,velocity,center_uy,-0.4159168303012848 +karman_re100,sr,224,89.6,velocity,lower_ux,1.2127565145492554 +karman_re100,sr,224,89.6,velocity,lower_uy,-0.20698948204517365 +karman_re100,sr,225,90.0,velocity,upper_ux,0.9442245364189148 +karman_re100,sr,225,90.0,velocity,upper_uy,-0.31530627608299255 +karman_re100,sr,225,90.0,velocity,center_ux,0.9156496524810791 +karman_re100,sr,225,90.0,velocity,center_uy,-0.5114372968673706 +karman_re100,sr,225,90.0,velocity,lower_ux,1.1150530576705933 +karman_re100,sr,225,90.0,velocity,lower_uy,-0.31824639439582825 +karman_re100,sr,226,90.4,velocity,upper_ux,1.009987235069275 +karman_re100,sr,226,90.4,velocity,upper_uy,-0.36194002628326416 +karman_re100,sr,226,90.4,velocity,center_ux,0.9404604434967041 +karman_re100,sr,226,90.4,velocity,center_uy,-0.5442966818809509 +karman_re100,sr,226,90.4,velocity,lower_ux,1.0248805284500122 +karman_re100,sr,226,90.4,velocity,lower_uy,-0.3712020516395569 +karman_re100,sr,227,90.8,velocity,upper_ux,1.0743420124053955 +karman_re100,sr,227,90.8,velocity,upper_uy,-0.3761026859283447 +karman_re100,sr,227,90.8,velocity,center_ux,0.9576271772384644 +karman_re100,sr,227,90.8,velocity,center_uy,-0.544996976852417 +karman_re100,sr,227,90.8,velocity,lower_ux,0.9486476182937622 +karman_re100,sr,227,90.8,velocity,lower_uy,-0.3793080151081085 +karman_re100,sr,228,91.2,velocity,upper_ux,1.137736439704895 +karman_re100,sr,228,91.2,velocity,upper_uy,-0.35795310139656067 +karman_re100,sr,228,91.2,velocity,center_ux,0.9665122032165527 +karman_re100,sr,228,91.2,velocity,center_uy,-0.5155242681503296 +karman_re100,sr,228,91.2,velocity,lower_ux,0.8857991695404053 +karman_re100,sr,228,91.2,velocity,lower_uy,-0.34424200654029846 +karman_re100,sr,229,91.6,velocity,upper_ux,1.2020695209503174 +karman_re100,sr,229,91.6,velocity,upper_uy,-0.3183031380176544 +karman_re100,sr,229,91.6,velocity,center_ux,0.9611072540283203 +karman_re100,sr,229,91.6,velocity,center_uy,-0.44765159487724304 +karman_re100,sr,229,91.6,velocity,lower_ux,0.8367369771003723 +karman_re100,sr,229,91.6,velocity,lower_uy,-0.26454105973243713 +karman_re100,sr,230,92.0,velocity,upper_ux,1.2609392404556274 +karman_re100,sr,230,92.0,velocity,upper_uy,-0.2474644035100937 +karman_re100,sr,230,92.0,velocity,center_ux,0.9354894161224365 +karman_re100,sr,230,92.0,velocity,center_uy,-0.314462810754776 +karman_re100,sr,230,92.0,velocity,lower_ux,0.8055307269096375 +karman_re100,sr,230,92.0,velocity,lower_uy,-0.14557978510856628 +karman_re100,sr,231,92.4,velocity,upper_ux,1.3016897439956665 +karman_re100,sr,231,92.4,velocity,upper_uy,-0.13377989828586578 +karman_re100,sr,231,92.4,velocity,center_ux,0.8943257927894592 +karman_re100,sr,231,92.4,velocity,center_uy,-0.08938432484865189 +karman_re100,sr,231,92.4,velocity,lower_ux,0.8020583987236023 +karman_re100,sr,231,92.4,velocity,lower_uy,-0.005697494838386774 +karman_re100,sr,232,92.8,velocity,upper_ux,1.2908854484558105 +karman_re100,sr,232,92.8,velocity,upper_uy,0.03229222819209099 +karman_re100,sr,232,92.8,velocity,center_ux,0.8733417391777039 +karman_re100,sr,232,92.8,velocity,center_uy,0.1943247765302658 +karman_re100,sr,232,92.8,velocity,lower_ux,0.830567479133606 +karman_re100,sr,232,92.8,velocity,lower_uy,0.1281842291355133 +karman_re100,sr,233,93.2,velocity,upper_ux,1.216006875038147 +karman_re100,sr,233,93.2,velocity,upper_uy,0.20198732614517212 +karman_re100,sr,233,93.2,velocity,center_ux,0.8862489461898804 +karman_re100,sr,233,93.2,velocity,center_uy,0.41106370091438293 +karman_re100,sr,233,93.2,velocity,lower_ux,0.879673182964325 +karman_re100,sr,233,93.2,velocity,lower_uy,0.23846478760242462 +karman_re100,sr,234,93.6,velocity,upper_ux,1.118087649345398 +karman_re100,sr,234,93.6,velocity,upper_uy,0.3152584433555603 +karman_re100,sr,234,93.6,velocity,center_ux,0.9143191576004028 +karman_re100,sr,234,93.6,velocity,center_uy,0.5096920132637024 +karman_re100,sr,234,93.6,velocity,lower_ux,0.9411900043487549 +karman_re100,sr,234,93.6,velocity,lower_uy,0.3132544457912445 +karman_re100,sr,235,94.0,velocity,upper_ux,1.0277676582336426 +karman_re100,sr,235,94.0,velocity,upper_uy,0.36993926763534546 +karman_re100,sr,235,94.0,velocity,center_ux,0.9395605325698853 +karman_re100,sr,235,94.0,velocity,center_uy,0.5437684059143066 +karman_re100,sr,235,94.0,velocity,lower_ux,1.00718355178833 +karman_re100,sr,235,94.0,velocity,lower_uy,0.36082717776298523 +karman_re100,sr,236,94.4,velocity,upper_ux,0.9517161846160889 +karman_re100,sr,236,94.4,velocity,upper_uy,0.37953150272369385 +karman_re100,sr,236,94.4,velocity,center_ux,0.9575443267822266 +karman_re100,sr,236,94.4,velocity,center_uy,0.5455013513565063 +karman_re100,sr,236,94.4,velocity,lower_ux,1.0722845792770386 +karman_re100,sr,236,94.4,velocity,lower_uy,0.37634599208831787 +karman_re100,sr,237,94.8,velocity,upper_ux,0.8884986639022827 +karman_re100,sr,237,94.8,velocity,upper_uy,0.3460513651371002 +karman_re100,sr,237,94.8,velocity,center_ux,0.9668357968330383 +karman_re100,sr,237,94.8,velocity,center_uy,0.5170494318008423 +karman_re100,sr,237,94.8,velocity,lower_ux,1.13582181930542 +karman_re100,sr,237,94.8,velocity,lower_uy,0.35912707448005676 +karman_re100,sr,238,95.2,velocity,upper_ux,0.838594913482666 +karman_re100,sr,238,95.2,velocity,upper_uy,0.26786619424819946 +karman_re100,sr,238,95.2,velocity,center_ux,0.9615952372550964 +karman_re100,sr,238,95.2,velocity,center_uy,0.4509482681751251 +karman_re100,sr,238,95.2,velocity,lower_ux,1.1999019384384155 +karman_re100,sr,238,95.2,velocity,lower_uy,0.32032570242881775 +karman_re100,sr,239,95.6,velocity,upper_ux,0.8061899542808533 +karman_re100,sr,239,95.6,velocity,upper_uy,0.15012821555137634 +karman_re100,sr,239,95.6,velocity,center_ux,0.9362263679504395 +karman_re100,sr,239,95.6,velocity,center_uy,0.32042258977890015 +karman_re100,sr,239,95.6,velocity,lower_ux,1.2587401866912842 +karman_re100,sr,239,95.6,velocity,lower_uy,0.2508498728275299 +karman_re100,sr,240,96.0,velocity,upper_ux,0.8013820052146912 +karman_re100,sr,240,96.0,velocity,upper_uy,0.010647287592291832 +karman_re100,sr,240,96.0,velocity,center_ux,0.8949004411697388 +karman_re100,sr,240,96.0,velocity,center_uy,0.09887716919183731 +karman_re100,sr,240,96.0,velocity,lower_ux,1.3004558086395264 +karman_re100,sr,240,96.0,velocity,lower_uy,0.13899514079093933 +karman_re100,sr,241,96.4,velocity,upper_ux,0.8293778300285339 +karman_re100,sr,241,96.4,velocity,upper_uy,-0.1236782819032669 +karman_re100,sr,241,96.4,velocity,center_ux,0.8731752038002014 +karman_re100,sr,241,96.4,velocity,center_uy,-0.18442949652671814 +karman_re100,sr,241,96.4,velocity,lower_ux,1.2927459478378296 +karman_re100,sr,241,96.4,velocity,lower_uy,-0.025697896257042885 +karman_re100,sr,242,96.8,velocity,upper_ux,0.8783357739448547 +karman_re100,sr,242,96.8,velocity,upper_uy,-0.2350650429725647 +karman_re100,sr,242,96.8,velocity,center_ux,0.8855932354927063 +karman_re100,sr,242,96.8,velocity,center_uy,-0.40524959564208984 +karman_re100,sr,242,96.8,velocity,lower_ux,1.2199678421020508 +karman_re100,sr,242,96.8,velocity,lower_uy,-0.19694262742996216 +karman_re100,sr,243,97.2,velocity,upper_ux,0.939373254776001 +karman_re100,sr,243,97.2,velocity,upper_uy,-0.31104719638824463 +karman_re100,sr,243,97.2,velocity,center_ux,0.9134559631347656 +karman_re100,sr,243,97.2,velocity,center_uy,-0.5075299739837646 +karman_re100,sr,243,97.2,velocity,lower_ux,1.1219167709350586 +karman_re100,sr,243,97.2,velocity,lower_uy,-0.31266364455223083 +karman_re100,sr,244,97.6,velocity,upper_ux,1.0049079656600952 +karman_re100,sr,244,97.6,velocity,upper_uy,-0.3595028817653656 +karman_re100,sr,244,97.6,velocity,center_ux,0.9386498928070068 +karman_re100,sr,244,97.6,velocity,center_uy,-0.5430494546890259 +karman_re100,sr,244,97.6,velocity,lower_ux,1.030673861503601 +karman_re100,sr,244,97.6,velocity,lower_uy,-0.3690852224826813 +karman_re100,sr,245,98.0,velocity,upper_ux,1.0696072578430176 +karman_re100,sr,245,98.0,velocity,upper_uy,-0.3762909770011902 +karman_re100,sr,245,98.0,velocity,center_ux,0.9565536379814148 +karman_re100,sr,245,98.0,velocity,center_uy,-0.5458765625953674 +karman_re100,sr,245,98.0,velocity,lower_ux,0.9537287354469299 +karman_re100,sr,245,98.0,velocity,lower_uy,-0.3800926208496094 +karman_re100,sr,246,98.4,velocity,upper_ux,1.1331956386566162 +karman_re100,sr,246,98.4,velocity,upper_uy,-0.3599177300930023 +karman_re100,sr,246,98.4,velocity,center_ux,0.9664552807807922 +karman_re100,sr,246,98.4,velocity,center_uy,-0.5183875560760498 +karman_re100,sr,246,98.4,velocity,lower_ux,0.8902204632759094 +karman_re100,sr,246,98.4,velocity,lower_uy,-0.34810230135917664 +karman_re100,sr,247,98.8,velocity,upper_ux,1.1978377103805542 +karman_re100,sr,247,98.8,velocity,upper_uy,-0.32193028926849365 +karman_re100,sr,247,98.8,velocity,center_ux,0.9625334739685059 +karman_re100,sr,247,98.8,velocity,center_uy,-0.45397862792015076 +karman_re100,sr,247,98.8,velocity,lower_ux,0.8404209613800049 +karman_re100,sr,247,98.8,velocity,lower_uy,-0.2713947296142578 +karman_re100,sr,248,99.2,velocity,upper_ux,1.2571295499801636 +karman_re100,sr,248,99.2,velocity,upper_uy,-0.2537378966808319 +karman_re100,sr,248,99.2,velocity,center_ux,0.9382327795028687 +karman_re100,sr,248,99.2,velocity,center_uy,-0.3260825276374817 +karman_re100,sr,248,99.2,velocity,lower_ux,0.8074319362640381 +karman_re100,sr,248,99.2,velocity,lower_uy,-0.1546926349401474 +karman_re100,sr,249,99.6,velocity,upper_ux,1.2993757724761963 +karman_re100,sr,249,99.6,velocity,upper_uy,-0.14363300800323486 +karman_re100,sr,249,99.6,velocity,center_ux,0.8967630863189697 +karman_re100,sr,249,99.6,velocity,center_uy,-0.1080070212483406 +karman_re100,sr,249,99.6,velocity,lower_ux,0.8012193441390991 +karman_re100,sr,249,99.6,velocity,lower_uy,-0.015385253354907036 +karman_re100,sr,250,100.0,velocity,upper_ux,1.2934848070144653 +karman_re100,sr,250,100.0,velocity,upper_uy,0.019361980259418488 +karman_re100,sr,250,100.0,velocity,center_ux,0.8733564019203186 +karman_re100,sr,250,100.0,velocity,center_uy,0.1750359684228897 +karman_re100,sr,250,100.0,velocity,lower_ux,0.8278113007545471 +karman_re100,sr,250,100.0,velocity,lower_uy,0.11951705068349838 +karman_re100,sr,251,100.4,velocity,upper_ux,1.2222362756729126 +karman_re100,sr,251,100.4,velocity,upper_uy,0.19151756167411804 +karman_re100,sr,251,100.4,velocity,center_ux,0.8844607472419739 +karman_re100,sr,251,100.4,velocity,center_uy,0.3997139036655426 +karman_re100,sr,251,100.4,velocity,lower_ux,0.8759844303131104 +karman_re100,sr,251,100.4,velocity,lower_uy,0.23193523287773132 +karman_re100,sr,252,100.8,velocity,upper_ux,1.1248812675476074 +karman_re100,sr,252,100.8,velocity,upper_uy,0.30945685505867004 +karman_re100,sr,252,100.8,velocity,center_ux,0.912476122379303 +karman_re100,sr,252,100.8,velocity,center_uy,0.5054469108581543 +karman_re100,sr,252,100.8,velocity,lower_ux,0.9371464252471924 +karman_re100,sr,252,100.8,velocity,lower_uy,0.30901938676834106 +karman_re100,sr,253,101.2,velocity,upper_ux,1.0336823463439941 +karman_re100,sr,253,101.2,velocity,upper_uy,0.3677559792995453 +karman_re100,sr,253,101.2,velocity,center_ux,0.9383196234703064 +karman_re100,sr,253,101.2,velocity,center_uy,0.5424017310142517 +karman_re100,sr,253,101.2,velocity,lower_ux,1.0031582117080688 +karman_re100,sr,253,101.2,velocity,lower_uy,0.3583446145057678 +karman_re100,sr,254,101.6,velocity,upper_ux,0.9561721682548523 +karman_re100,sr,254,101.6,velocity,upper_uy,0.38029250502586365 +karman_re100,sr,254,101.6,velocity,center_ux,0.9563435912132263 +karman_re100,sr,254,101.6,velocity,center_uy,0.546354353427887 +karman_re100,sr,254,101.6,velocity,lower_ux,1.0678987503051758 +karman_re100,sr,254,101.6,velocity,lower_uy,0.37638846039772034 +karman_re100,sr,255,102.0,velocity,upper_ux,0.8918601870536804 +karman_re100,sr,255,102.0,velocity,upper_uy,0.349908709526062 +karman_re100,sr,255,102.0,velocity,center_ux,0.9662070274353027 +karman_re100,sr,255,102.0,velocity,center_uy,0.5199878215789795 +karman_re100,sr,255,102.0,velocity,lower_ux,1.1311782598495483 +karman_re100,sr,255,102.0,velocity,lower_uy,0.3609108626842499 +karman_re100,sr,256,102.4,velocity,upper_ux,0.8411612510681152 +karman_re100,sr,256,102.4,velocity,upper_uy,0.27479615807533264 +karman_re100,sr,256,102.4,velocity,center_ux,0.9624135494232178 +karman_re100,sr,256,102.4,velocity,center_uy,0.4573826193809509 +karman_re100,sr,256,102.4,velocity,lower_ux,1.19545316696167 +karman_re100,sr,256,102.4,velocity,lower_uy,0.3236679136753082 +karman_re100,sr,257,102.8,velocity,upper_ux,0.8075116872787476 +karman_re100,sr,257,102.8,velocity,upper_uy,0.15942586958408356 +karman_re100,sr,257,102.8,velocity,center_ux,0.9388963580131531 +karman_re100,sr,257,102.8,velocity,center_uy,0.332256555557251 +karman_re100,sr,257,102.8,velocity,lower_ux,1.2551826238632202 +karman_re100,sr,257,102.8,velocity,lower_uy,0.2567022442817688 +karman_re100,sr,258,103.2,velocity,upper_ux,0.8007332682609558 +karman_re100,sr,258,103.2,velocity,upper_uy,0.02050606906414032 +karman_re100,sr,258,103.2,velocity,center_ux,0.8980677127838135 +karman_re100,sr,258,103.2,velocity,center_uy,0.117416612803936 +karman_re100,sr,258,103.2,velocity,lower_ux,1.299026370048523 +karman_re100,sr,258,103.2,velocity,lower_uy,0.1482049524784088 +karman_re100,sr,259,103.6,velocity,upper_ux,0.8265795707702637 +karman_re100,sr,259,103.6,velocity,upper_uy,-0.11491860449314117 +karman_re100,sr,259,103.6,velocity,center_ux,0.8737882375717163 +karman_re100,sr,259,103.6,velocity,center_uy,-0.1655849814414978 +karman_re100,sr,259,103.6,velocity,lower_ux,1.295770287513733 +karman_re100,sr,259,103.6,velocity,lower_uy,-0.01328270323574543 +karman_re100,sr,260,104.0,velocity,upper_ux,0.8740237355232239 +karman_re100,sr,260,104.0,velocity,upper_uy,-0.22847245633602142 +karman_re100,sr,260,104.0,velocity,center_ux,0.8838332891464233 +karman_re100,sr,260,104.0,velocity,center_uy,-0.3942023813724518 +karman_re100,sr,260,104.0,velocity,lower_ux,1.2260491847991943 +karman_re100,sr,260,104.0,velocity,lower_uy,-0.18642087280750275 +karman_re100,sr,261,104.4,velocity,upper_ux,0.9344720244407654 +karman_re100,sr,261,104.4,velocity,upper_uy,-0.3068258464336395 +karman_re100,sr,261,104.4,velocity,center_ux,0.9113224744796753 +karman_re100,sr,261,104.4,velocity,center_uy,-0.5034422874450684 +karman_re100,sr,261,104.4,velocity,lower_ux,1.1284804344177246 +karman_re100,sr,261,104.4,velocity,lower_uy,-0.3064922094345093 +karman_re100,sr,262,104.8,velocity,upper_ux,1.0001474618911743 +karman_re100,sr,262,104.8,velocity,upper_uy,-0.35705697536468506 +karman_re100,sr,262,104.8,velocity,center_ux,0.9371289610862732 +karman_re100,sr,262,104.8,velocity,center_uy,-0.5417470932006836 +karman_re100,sr,262,104.8,velocity,lower_ux,1.0365700721740723 +karman_re100,sr,262,104.8,velocity,lower_uy,-0.36650699377059937 +karman_re100,sr,263,105.2,velocity,upper_ux,1.0652960538864136 +karman_re100,sr,263,105.2,velocity,upper_uy,-0.37645599246025085 +karman_re100,sr,263,105.2,velocity,center_ux,0.9557347297668457 +karman_re100,sr,263,105.2,velocity,center_uy,-0.5467269420623779 +karman_re100,sr,263,105.2,velocity,lower_ux,0.9589477777481079 +karman_re100,sr,263,105.2,velocity,lower_uy,-0.3804910182952881 +karman_re100,sr,264,105.6,velocity,upper_ux,1.1290696859359741 +karman_re100,sr,264,105.6,velocity,upper_uy,-0.36194679141044617 +karman_re100,sr,264,105.6,velocity,center_ux,0.9664223194122314 +karman_re100,sr,264,105.6,velocity,center_uy,-0.5212868452072144 +karman_re100,sr,264,105.6,velocity,lower_ux,0.8946639895439148 +karman_re100,sr,264,105.6,velocity,lower_uy,-0.35161545872688293 +karman_re100,sr,265,106.0,velocity,upper_ux,1.1933456659317017 +karman_re100,sr,265,106.0,velocity,upper_uy,-0.3255455791950226 +karman_re100,sr,265,106.0,velocity,center_ux,0.963155210018158 +karman_re100,sr,265,106.0,velocity,center_uy,-0.4602813422679901 +karman_re100,sr,265,106.0,velocity,lower_ux,0.8434336185455322 +karman_re100,sr,265,106.0,velocity,lower_uy,-0.27799972891807556 +karman_re100,sr,266,106.4,velocity,upper_ux,1.2531083822250366 +karman_re100,sr,266,106.4,velocity,upper_uy,-0.25991958379745483 +karman_re100,sr,266,106.4,velocity,center_ux,0.9400849342346191 +karman_re100,sr,266,106.4,velocity,center_uy,-0.3376424312591553 +karman_re100,sr,266,106.4,velocity,lower_ux,0.8087556958198547 +karman_re100,sr,266,106.4,velocity,lower_uy,-0.16379842162132263 +karman_re100,sr,267,106.8,velocity,upper_ux,1.2974551916122437 +karman_re100,sr,267,106.8,velocity,upper_uy,-0.15320736169815063 +karman_re100,sr,267,106.8,velocity,center_ux,0.8990544676780701 +karman_re100,sr,267,106.8,velocity,center_uy,-0.12642699480056763 +karman_re100,sr,267,106.8,velocity,lower_ux,0.8004491329193115 +karman_re100,sr,267,106.8,velocity,lower_uy,-0.025305338203907013 +karman_re100,sr,268,107.2,velocity,upper_ux,1.2965631484985352 +karman_re100,sr,268,107.2,velocity,upper_uy,0.006654093973338604 +karman_re100,sr,268,107.2,velocity,center_ux,0.8734921216964722 +karman_re100,sr,268,107.2,velocity,center_uy,0.15549910068511963 +karman_re100,sr,268,107.2,velocity,lower_ux,0.825178861618042 +karman_re100,sr,268,107.2,velocity,lower_uy,0.11051304638385773 +karman_re100,sr,269,107.6,velocity,upper_ux,1.2292182445526123 +karman_re100,sr,269,107.6,velocity,upper_uy,0.18104015290737152 +karman_re100,sr,269,107.6,velocity,center_ux,0.8829312920570374 +karman_re100,sr,269,107.6,velocity,center_uy,0.3878563940525055 +karman_re100,sr,269,107.6,velocity,lower_ux,0.8724983334541321 +karman_re100,sr,269,107.6,velocity,lower_uy,0.2250373214483261 +karman_re100,sr,270,108.0,velocity,upper_ux,1.1321024894714355 +karman_re100,sr,270,108.0,velocity,upper_uy,0.30363741517066956 +karman_re100,sr,270,108.0,velocity,center_ux,0.9105009436607361 +karman_re100,sr,270,108.0,velocity,center_uy,0.5010112524032593 +karman_re100,sr,270,108.0,velocity,lower_ux,0.9328610897064209 +karman_re100,sr,270,108.0,velocity,lower_uy,0.30456602573394775 +karman_re100,sr,271,108.4,velocity,upper_ux,1.0395097732543945 +karman_re100,sr,271,108.4,velocity,upper_uy,0.36555495858192444 +karman_re100,sr,271,108.4,velocity,center_ux,0.9364498853683472 +karman_re100,sr,271,108.4,velocity,center_uy,0.5409609079360962 +karman_re100,sr,271,108.4,velocity,lower_ux,0.9982967972755432 +karman_re100,sr,271,108.4,velocity,lower_uy,0.3556542992591858 +karman_re100,sr,272,108.8,velocity,upper_ux,0.9610196948051453 +karman_re100,sr,272,108.8,velocity,upper_uy,0.3809855282306671 +karman_re100,sr,272,108.8,velocity,center_ux,0.9550238847732544 +karman_re100,sr,272,108.8,velocity,center_uy,0.5470694899559021 +karman_re100,sr,272,108.8,velocity,lower_ux,1.0631158351898193 +karman_re100,sr,272,108.8,velocity,lower_uy,0.37626439332962036 +karman_re100,sr,273,109.2,velocity,upper_ux,0.895987868309021 +karman_re100,sr,273,109.2,velocity,upper_uy,0.3536252975463867 +karman_re100,sr,273,109.2,velocity,center_ux,0.9658434987068176 +karman_re100,sr,273,109.2,velocity,center_uy,0.5226802229881287 +karman_re100,sr,273,109.2,velocity,lower_ux,1.1265300512313843 +karman_re100,sr,273,109.2,velocity,lower_uy,0.36265280842781067 +karman_re100,sr,274,109.6,velocity,upper_ux,0.8445451855659485 +karman_re100,sr,274,109.6,velocity,upper_uy,0.2815224230289459 +karman_re100,sr,274,109.6,velocity,center_ux,0.9635375142097473 +karman_re100,sr,274,109.6,velocity,center_uy,0.46332377195358276 +karman_re100,sr,274,109.6,velocity,lower_ux,1.1910107135772705 +karman_re100,sr,274,109.6,velocity,lower_uy,0.3269692659378052 +karman_re100,sr,275,110.0,velocity,upper_ux,0.8096498847007751 +karman_re100,sr,275,110.0,velocity,upper_uy,0.1684834510087967 +karman_re100,sr,275,110.0,velocity,center_ux,0.9418489933013916 +karman_re100,sr,275,110.0,velocity,center_uy,0.3433232009410858 +karman_re100,sr,275,110.0,velocity,lower_ux,1.2515407800674438 +karman_re100,sr,275,110.0,velocity,lower_uy,0.2625564634799957 +karman_re100,sr,276,110.4,velocity,upper_ux,0.8002740740776062 +karman_re100,sr,276,110.4,velocity,upper_uy,0.030216071754693985 +karman_re100,sr,276,110.4,velocity,center_ux,0.9011317491531372 +karman_re100,sr,276,110.4,velocity,center_uy,0.13541533052921295 +karman_re100,sr,276,110.4,velocity,lower_ux,1.2966734170913696 +karman_re100,sr,276,110.4,velocity,lower_uy,0.15741799771785736 +karman_re100,sr,277,110.8,velocity,upper_ux,0.8237448930740356 +karman_re100,sr,277,110.8,velocity,upper_uy,-0.10620028525590897 +karman_re100,sr,277,110.8,velocity,center_ux,0.8742133378982544 +karman_re100,sr,277,110.8,velocity,center_uy,-0.14610806107521057 +karman_re100,sr,277,110.8,velocity,lower_ux,1.2976306676864624 +karman_re100,sr,277,110.8,velocity,lower_uy,-0.0006308055017143488 +karman_re100,sr,278,111.2,velocity,upper_ux,0.8701648116111755 +karman_re100,sr,278,111.2,velocity,upper_uy,-0.2217899113893509 +karman_re100,sr,278,111.2,velocity,center_ux,0.882225513458252 +karman_re100,sr,278,111.2,velocity,center_uy,-0.38218003511428833 +karman_re100,sr,278,111.2,velocity,lower_ux,1.2317780256271362 +karman_re100,sr,278,111.2,velocity,lower_uy,-0.1755133867263794 +karman_re100,sr,279,111.6,velocity,upper_ux,0.930115282535553 +karman_re100,sr,279,111.6,velocity,upper_uy,-0.3025195300579071 +karman_re100,sr,279,111.6,velocity,center_ux,0.9093406200408936 +karman_re100,sr,279,111.6,velocity,center_uy,-0.49888867139816284 +karman_re100,sr,279,111.6,velocity,lower_ux,1.134966492652893 +karman_re100,sr,279,111.6,velocity,lower_uy,-0.30012714862823486 +karman_re100,sr,280,112.0,velocity,upper_ux,0.9959918856620789 +karman_re100,sr,280,112.0,velocity,upper_uy,-0.35446128249168396 +karman_re100,sr,280,112.0,velocity,center_ux,0.935851514339447 +karman_re100,sr,280,112.0,velocity,center_uy,-0.5402831435203552 +karman_re100,sr,280,112.0,velocity,lower_ux,1.0424790382385254 +karman_re100,sr,280,112.0,velocity,lower_uy,-0.36389195919036865 +karman_re100,sr,281,112.4,velocity,upper_ux,1.0612624883651733 +karman_re100,sr,281,112.4,velocity,upper_uy,-0.3763617277145386 +karman_re100,sr,281,112.4,velocity,center_ux,0.9548904895782471 +karman_re100,sr,281,112.4,velocity,center_uy,-0.5474556088447571 +karman_re100,sr,281,112.4,velocity,lower_ux,0.963827908039093 +karman_re100,sr,281,112.4,velocity,lower_uy,-0.3808673918247223 +karman_re100,sr,282,112.8,velocity,upper_ux,1.124626874923706 +karman_re100,sr,282,112.8,velocity,upper_uy,-0.3637329339981079 +karman_re100,sr,282,112.8,velocity,center_ux,0.9658126831054688 +karman_re100,sr,282,112.8,velocity,center_uy,-0.5241110324859619 +karman_re100,sr,282,112.8,velocity,lower_ux,0.8982012867927551 +karman_re100,sr,282,112.8,velocity,lower_uy,-0.35509154200553894 +karman_re100,sr,283,113.2,velocity,upper_ux,1.1888337135314941 +karman_re100,sr,283,113.2,velocity,upper_uy,-0.32880616188049316 +karman_re100,sr,283,113.2,velocity,center_ux,0.9636149406433105 +karman_re100,sr,283,113.2,velocity,center_uy,-0.4664052128791809 +karman_re100,sr,283,113.2,velocity,lower_ux,0.8459292054176331 +karman_re100,sr,283,113.2,velocity,lower_uy,-0.2845975160598755 +karman_re100,sr,284,113.6,velocity,upper_ux,1.249404788017273 +karman_re100,sr,284,113.6,velocity,upper_uy,-0.2655881643295288 +karman_re100,sr,284,113.6,velocity,center_ux,0.9422469139099121 +karman_re100,sr,284,113.6,velocity,center_uy,-0.3489512503147125 +karman_re100,sr,284,113.6,velocity,lower_ux,0.8100217580795288 +karman_re100,sr,284,113.6,velocity,lower_uy,-0.1729235202074051 +karman_re100,sr,285,114.0,velocity,upper_ux,1.2956631183624268 +karman_re100,sr,285,114.0,velocity,upper_uy,-0.16204729676246643 +karman_re100,sr,285,114.0,velocity,center_ux,0.901917040348053 +karman_re100,sr,285,114.0,velocity,center_uy,-0.14444410800933838 +karman_re100,sr,285,114.0,velocity,lower_ux,0.7997295260429382 +karman_re100,sr,285,114.0,velocity,lower_uy,-0.0352671854197979 +karman_re100,sr,286,114.4,velocity,upper_ux,1.2994860410690308 +karman_re100,sr,286,114.4,velocity,upper_uy,-0.005580741912126541 +karman_re100,sr,286,114.4,velocity,center_ux,0.8743991255760193 +karman_re100,sr,286,114.4,velocity,center_uy,0.13617807626724243 +karman_re100,sr,286,114.4,velocity,lower_ux,0.8226209282875061 +karman_re100,sr,286,114.4,velocity,lower_uy,0.10150857269763947 +karman_re100,sr,287,114.8,velocity,upper_ux,1.2356634140014648 +karman_re100,sr,287,114.8,velocity,upper_uy,0.17027263343334198 +karman_re100,sr,287,114.8,velocity,center_ux,0.8815619945526123 +karman_re100,sr,287,114.8,velocity,center_uy,0.37588435411453247 +karman_re100,sr,287,114.8,velocity,lower_ux,0.8685621023178101 +karman_re100,sr,287,114.8,velocity,lower_uy,0.21809890866279602 +karman_re100,sr,288,115.2,velocity,upper_ux,1.1388746500015259 +karman_re100,sr,288,115.2,velocity,upper_uy,0.2971988022327423 +karman_re100,sr,288,115.2,velocity,center_ux,0.9083093404769897 +karman_re100,sr,288,115.2,velocity,center_uy,0.4964963495731354 +karman_re100,sr,288,115.2,velocity,lower_ux,0.9279237985610962 +karman_re100,sr,288,115.2,velocity,lower_uy,0.300124853849411 +karman_re100,sr,289,115.6,velocity,upper_ux,1.0455454587936401 +karman_re100,sr,289,115.6,velocity,upper_uy,0.3627738058567047 +karman_re100,sr,289,115.6,velocity,center_ux,0.9347700476646423 +karman_re100,sr,289,115.6,velocity,center_uy,0.5394887328147888 +karman_re100,sr,289,115.6,velocity,lower_ux,0.9933427572250366 +karman_re100,sr,289,115.6,velocity,lower_uy,0.35296061635017395 +karman_re100,sr,290,116.0,velocity,upper_ux,0.9662497639656067 +karman_re100,sr,290,116.0,velocity,upper_uy,0.38116323947906494 +karman_re100,sr,290,116.0,velocity,center_ux,0.9539698958396912 +karman_re100,sr,290,116.0,velocity,center_uy,0.5477054715156555 +karman_re100,sr,290,116.0,velocity,lower_ux,1.0584757328033447 +karman_re100,sr,290,116.0,velocity,lower_uy,0.37614554166793823 +karman_re100,sr,291,116.4,velocity,upper_ux,0.9005774855613708 +karman_re100,sr,291,116.4,velocity,upper_uy,0.35687321424484253 +karman_re100,sr,291,116.4,velocity,center_ux,0.9656946659088135 +karman_re100,sr,291,116.4,velocity,center_uy,0.5253171324729919 +karman_re100,sr,291,116.4,velocity,lower_ux,1.1222068071365356 +karman_re100,sr,291,116.4,velocity,lower_uy,0.36453181505203247 +karman_re100,sr,292,116.8,velocity,upper_ux,0.8481541275978088 +karman_re100,sr,292,116.8,velocity,upper_uy,0.28784891963005066 +karman_re100,sr,292,116.8,velocity,center_ux,0.9644796848297119 +karman_re100,sr,292,116.8,velocity,center_uy,0.4690909683704376 +karman_re100,sr,292,116.8,velocity,lower_ux,1.1867115497589111 +karman_re100,sr,292,116.8,velocity,lower_uy,0.33037039637565613 +karman_re100,sr,293,117.2,velocity,upper_ux,0.8114732503890991 +karman_re100,sr,293,117.2,velocity,upper_uy,0.17734138667583466 +karman_re100,sr,293,117.2,velocity,center_ux,0.9438732862472534 +karman_re100,sr,293,117.2,velocity,center_uy,0.35409557819366455 +karman_re100,sr,293,117.2,velocity,lower_ux,1.2474743127822876 +karman_re100,sr,293,117.2,velocity,lower_uy,0.2684623897075653 +karman_re100,sr,294,117.6,velocity,upper_ux,0.7997918128967285 +karman_re100,sr,294,117.6,velocity,upper_uy,0.040063414722681046 +karman_re100,sr,294,117.6,velocity,center_ux,0.9036357402801514 +karman_re100,sr,294,117.6,velocity,center_uy,0.15313176810741425 +karman_re100,sr,294,117.6,velocity,lower_ux,1.2941551208496094 +karman_re100,sr,294,117.6,velocity,lower_uy,0.1666250377893448 +karman_re100,sr,295,118.0,velocity,upper_ux,0.8212325572967529 +karman_re100,sr,295,118.0,velocity,upper_uy,-0.09715253114700317 +karman_re100,sr,295,118.0,velocity,center_ux,0.8746236562728882 +karman_re100,sr,295,118.0,velocity,center_uy,-0.1261221319437027 +karman_re100,sr,295,118.0,velocity,lower_ux,1.2997936010360718 +karman_re100,sr,295,118.0,velocity,lower_uy,0.012056747451424599 +karman_re100,sr,296,118.4,velocity,upper_ux,0.8666261434555054 +karman_re100,sr,296,118.4,velocity,upper_uy,-0.2146839201450348 +karman_re100,sr,296,118.4,velocity,center_ux,0.8806473612785339 +karman_re100,sr,296,118.4,velocity,center_uy,-0.36925116181373596 +karman_re100,sr,296,118.4,velocity,lower_ux,1.2381097078323364 +karman_re100,sr,296,118.4,velocity,lower_uy,-0.16447775065898895 +karman_re100,sr,297,118.8,velocity,upper_ux,0.9260668158531189 +karman_re100,sr,297,118.8,velocity,upper_uy,-0.29789671301841736 +karman_re100,sr,297,118.8,velocity,center_ux,0.9074645042419434 +karman_re100,sr,297,118.8,velocity,center_uy,-0.4938623905181885 +karman_re100,sr,297,118.8,velocity,lower_ux,1.142181634902954 +karman_re100,sr,297,118.8,velocity,lower_uy,-0.2937660813331604 +karman_re100,sr,298,119.2,velocity,upper_ux,0.9915755987167358 +karman_re100,sr,298,119.2,velocity,upper_uy,-0.3515717685222626 +karman_re100,sr,298,119.2,velocity,center_ux,0.9342656135559082 +karman_re100,sr,298,119.2,velocity,center_uy,-0.5386048555374146 +karman_re100,sr,298,119.2,velocity,lower_ux,1.0485728979110718 +karman_re100,sr,298,119.2,velocity,lower_uy,-0.36133673787117004 +karman_re100,sr,299,119.6,velocity,upper_ux,1.0566023588180542 +karman_re100,sr,299,119.6,velocity,upper_uy,-0.3759528696537018 +karman_re100,sr,299,119.6,velocity,center_ux,0.9535363912582397 +karman_re100,sr,299,119.6,velocity,center_uy,-0.5479509234428406 +karman_re100,sr,299,119.6,velocity,lower_ux,0.9685905575752258 +karman_re100,sr,299,119.6,velocity,lower_uy,-0.3812499940395355 +karman_re100,sr,300,120.0,velocity,upper_ux,1.1200041770935059 +karman_re100,sr,300,120.0,velocity,upper_uy,-0.3652990758419037 +karman_re100,sr,300,120.0,velocity,center_ux,0.965243399143219 +karman_re100,sr,300,120.0,velocity,center_uy,-0.5266373157501221 +karman_re100,sr,300,120.0,velocity,lower_ux,0.9021193981170654 +karman_re100,sr,300,120.0,velocity,lower_uy,-0.3585022985935211 +karman_re100,sr,301,120.4,velocity,upper_ux,1.1842715740203857 +karman_re100,sr,301,120.4,velocity,upper_uy,-0.33183079957962036 +karman_re100,sr,301,120.4,velocity,center_ux,0.9643993377685547 +karman_re100,sr,301,120.4,velocity,center_uy,-0.47200334072113037 +karman_re100,sr,301,120.4,velocity,lower_ux,0.8490219712257385 +karman_re100,sr,301,120.4,velocity,lower_uy,-0.2910713851451874 +karman_re100,sr,302,120.8,velocity,upper_ux,1.245643138885498 +karman_re100,sr,302,120.8,velocity,upper_uy,-0.2710607647895813 +karman_re100,sr,302,120.8,velocity,center_ux,0.9449162483215332 +karman_re100,sr,302,120.8,velocity,center_uy,-0.3595733344554901 +karman_re100,sr,302,120.8,velocity,lower_ux,0.8120136260986328 +karman_re100,sr,302,120.8,velocity,lower_uy,-0.18189166486263275 +karman_re100,sr,303,121.2,velocity,upper_ux,1.2934424877166748 +karman_re100,sr,303,121.2,velocity,upper_uy,-0.17071685194969177 +karman_re100,sr,303,121.2,velocity,center_ux,0.9053891897201538 +karman_re100,sr,303,121.2,velocity,center_uy,-0.16192646324634552 +karman_re100,sr,303,121.2,velocity,lower_ux,0.7996252179145813 +karman_re100,sr,303,121.2,velocity,lower_uy,-0.04510173201560974 +karman_re100,sr,304,121.6,velocity,upper_ux,1.301160454750061 +karman_re100,sr,304,121.6,velocity,upper_uy,-0.01793425902724266 +karman_re100,sr,304,121.6,velocity,center_ux,0.8753585815429688 +karman_re100,sr,304,121.6,velocity,center_uy,0.1164708063006401 +karman_re100,sr,304,121.6,velocity,lower_ux,0.8199905157089233 +karman_re100,sr,304,121.6,velocity,lower_uy,0.09259318560361862 +karman_re100,sr,305,122.0,velocity,upper_ux,1.2412482500076294 +karman_re100,sr,305,122.0,velocity,upper_uy,0.15895158052444458 +karman_re100,sr,305,122.0,velocity,center_ux,0.8801209330558777 +karman_re100,sr,305,122.0,velocity,center_uy,0.36304599046707153 +karman_re100,sr,305,122.0,velocity,lower_ux,0.8645908236503601 +karman_re100,sr,305,122.0,velocity,lower_uy,0.2111203372478485 +karman_re100,sr,306,122.4,velocity,upper_ux,1.1454488039016724 +karman_re100,sr,306,122.4,velocity,upper_uy,0.29025232791900635 +karman_re100,sr,306,122.4,velocity,center_ux,0.9062696695327759 +karman_re100,sr,306,122.4,velocity,center_uy,0.49147167801856995 +karman_re100,sr,306,122.4,velocity,lower_ux,0.9233425855636597 +karman_re100,sr,306,122.4,velocity,lower_uy,0.2956331968307495 +karman_re100,sr,307,122.8,velocity,upper_ux,1.0515227317810059 +karman_re100,sr,307,122.8,velocity,upper_uy,0.35965630412101746 +karman_re100,sr,307,122.8,velocity,center_ux,0.9332400560379028 +karman_re100,sr,307,122.8,velocity,center_uy,0.5378044247627258 +karman_re100,sr,307,122.8,velocity,lower_ux,0.9888061285018921 +karman_re100,sr,307,122.8,velocity,lower_uy,0.35017895698547363 +karman_re100,sr,308,123.2,velocity,upper_ux,0.9714993238449097 +karman_re100,sr,308,123.2,velocity,upper_uy,0.38106995820999146 +karman_re100,sr,308,123.2,velocity,center_ux,0.9531301259994507 +karman_re100,sr,308,123.2,velocity,center_uy,0.5481858253479004 +karman_re100,sr,308,123.2,velocity,lower_ux,1.054354190826416 +karman_re100,sr,308,123.2,velocity,lower_uy,0.3758481740951538 +karman_re100,sr,309,123.6,velocity,upper_ux,0.9047530889511108 +karman_re100,sr,309,123.6,velocity,upper_uy,0.35985931754112244 +karman_re100,sr,309,123.6,velocity,center_ux,0.9652729034423828 +karman_re100,sr,309,123.6,velocity,center_uy,0.5278834104537964 +karman_re100,sr,309,123.6,velocity,lower_ux,1.118014931678772 +karman_re100,sr,309,123.6,velocity,lower_uy,0.36627715826034546 +karman_re100,sr,310,124.0,velocity,upper_ux,0.8510130047798157 +karman_re100,sr,310,124.0,velocity,upper_uy,0.293990820646286 +karman_re100,sr,310,124.0,velocity,center_ux,0.9647372364997864 +karman_re100,sr,310,124.0,velocity,center_uy,0.4747408628463745 +karman_re100,sr,310,124.0,velocity,lower_ux,1.1821633577346802 +karman_re100,sr,310,124.0,velocity,lower_uy,0.33356261253356934 +karman_re100,sr,311,124.4,velocity,upper_ux,0.8130278587341309 +karman_re100,sr,311,124.4,velocity,upper_uy,0.1861570179462433 +karman_re100,sr,311,124.4,velocity,center_ux,0.9455875158309937 +karman_re100,sr,311,124.4,velocity,center_uy,0.3647293448448181 +karman_re100,sr,311,124.4,velocity,lower_ux,1.2435424327850342 +karman_re100,sr,311,124.4,velocity,lower_uy,0.2740108072757721 +karman_re100,sr,312,124.8,velocity,upper_ux,0.7993433475494385 +karman_re100,sr,312,124.8,velocity,upper_uy,0.0500294491648674 +karman_re100,sr,312,124.8,velocity,center_ux,0.9061763286590576 +karman_re100,sr,312,124.8,velocity,center_uy,0.1704825460910797 +karman_re100,sr,312,124.8,velocity,lower_ux,1.2919220924377441 +karman_re100,sr,312,124.8,velocity,lower_uy,0.17526564002037048 +karman_re100,sr,313,125.2,velocity,upper_ux,0.8188307285308838 +karman_re100,sr,313,125.2,velocity,upper_uy,-0.08792481571435928 +karman_re100,sr,313,125.2,velocity,center_ux,0.8753710985183716 +karman_re100,sr,313,125.2,velocity,center_uy,-0.10628481209278107 +karman_re100,sr,313,125.2,velocity,lower_ux,1.302156925201416 +karman_re100,sr,313,125.2,velocity,lower_uy,0.024277187883853912 +karman_re100,sr,314,125.6,velocity,upper_ux,0.8631379008293152 +karman_re100,sr,314,125.6,velocity,upper_uy,-0.20736613869667053 +karman_re100,sr,314,125.6,velocity,center_ux,0.8793997168540955 +karman_re100,sr,314,125.6,velocity,center_uy,-0.3560713827610016 +karman_re100,sr,314,125.6,velocity,lower_ux,1.244739294052124 +karman_re100,sr,314,125.6,velocity,lower_uy,-0.15336017310619354 +karman_re100,sr,315,126.0,velocity,upper_ux,0.9214910864830017 +karman_re100,sr,315,126.0,velocity,upper_uy,-0.29315802454948425 +karman_re100,sr,315,126.0,velocity,center_ux,0.9053031206130981 +karman_re100,sr,315,126.0,velocity,center_uy,-0.48866748809814453 +karman_re100,sr,315,126.0,velocity,lower_ux,1.1493260860443115 +karman_re100,sr,315,126.0,velocity,lower_uy,-0.28707534074783325 +karman_re100,sr,316,126.4,velocity,upper_ux,0.9866242408752441 +karman_re100,sr,316,126.4,velocity,upper_uy,-0.3485878109931946 +karman_re100,sr,316,126.4,velocity,center_ux,0.9323620796203613 +karman_re100,sr,316,126.4,velocity,center_uy,-0.536864697933197 +karman_re100,sr,316,126.4,velocity,lower_ux,1.0547077655792236 +karman_re100,sr,316,126.4,velocity,lower_uy,-0.3584320843219757 +karman_re100,sr,317,126.8,velocity,upper_ux,1.0518542528152466 +karman_re100,sr,317,126.8,velocity,upper_uy,-0.3754619359970093 +karman_re100,sr,317,126.8,velocity,center_ux,0.9522610306739807 +karman_re100,sr,317,126.8,velocity,center_uy,-0.5483253598213196 +karman_re100,sr,317,126.8,velocity,lower_ux,0.9738252758979797 +karman_re100,sr,317,126.8,velocity,lower_uy,-0.3812849521636963 +karman_re100,sr,318,127.2,velocity,upper_ux,1.115444302558899 +karman_re100,sr,318,127.2,velocity,upper_uy,-0.3669287860393524 +karman_re100,sr,318,127.2,velocity,center_ux,0.9647679924964905 +karman_re100,sr,318,127.2,velocity,center_uy,-0.5290189385414124 +karman_re100,sr,318,127.2,velocity,lower_ux,0.9065913558006287 +karman_re100,sr,318,127.2,velocity,lower_uy,-0.36154553294181824 +karman_re100,sr,319,127.6,velocity,upper_ux,1.1798995733261108 +karman_re100,sr,319,127.6,velocity,upper_uy,-0.3349313735961914 +karman_re100,sr,319,127.6,velocity,center_ux,0.9652745723724365 +karman_re100,sr,319,127.6,velocity,center_uy,-0.4772834777832031 +karman_re100,sr,319,127.6,velocity,lower_ux,0.8527654409408569 +karman_re100,sr,319,127.6,velocity,lower_uy,-0.29718607664108276 +karman_re100,sr,320,128.0,velocity,upper_ux,1.2417190074920654 +karman_re100,sr,320,128.0,velocity,upper_uy,-0.2765882611274719 +karman_re100,sr,320,128.0,velocity,center_ux,0.9472070932388306 +karman_re100,sr,320,128.0,velocity,center_uy,-0.3696669638156891 +karman_re100,sr,320,128.0,velocity,lower_ux,0.8143429756164551 +karman_re100,sr,320,128.0,velocity,lower_uy,-0.19056835770606995 +karman_re100,sr,321,128.4,velocity,upper_ux,1.2905911207199097 +karman_re100,sr,321,128.4,velocity,upper_uy,-0.17942723631858826 +karman_re100,sr,321,128.4,velocity,center_ux,0.9082134962081909 +karman_re100,sr,321,128.4,velocity,center_uy,-0.1788707971572876 +karman_re100,sr,321,128.4,velocity,lower_ux,0.7994967103004456 +karman_re100,sr,321,128.4,velocity,lower_uy,-0.05489248409867287 +karman_re100,sr,322,128.8,velocity,upper_ux,1.302467703819275 +karman_re100,sr,322,128.8,velocity,upper_uy,-0.03038879483938217 +karman_re100,sr,322,128.8,velocity,center_ux,0.8761261701583862 +karman_re100,sr,322,128.8,velocity,center_uy,0.09633084386587143 +karman_re100,sr,322,128.8,velocity,lower_ux,0.8175923228263855 +karman_re100,sr,322,128.8,velocity,lower_uy,0.08351759612560272 +karman_re100,sr,323,129.2,velocity,upper_ux,1.246928334236145 +karman_re100,sr,323,129.2,velocity,upper_uy,0.147449791431427 +karman_re100,sr,323,129.2,velocity,center_ux,0.8786488175392151 +karman_re100,sr,323,129.2,velocity,center_uy,0.3492497205734253 +karman_re100,sr,323,129.2,velocity,lower_ux,0.8610156774520874 +karman_re100,sr,323,129.2,velocity,lower_uy,0.20385855436325073 +karman_re100,sr,324,129.6,velocity,upper_ux,1.1523131132125854 +karman_re100,sr,324,129.6,velocity,upper_uy,0.2833143174648285 +karman_re100,sr,324,129.6,velocity,center_ux,0.9042543768882751 +karman_re100,sr,324,129.6,velocity,center_uy,0.4859064221382141 +karman_re100,sr,324,129.6,velocity,lower_ux,0.9191776514053345 +karman_re100,sr,324,129.6,velocity,lower_uy,0.2908802330493927 +karman_re100,sr,325,130.0,velocity,upper_ux,1.0577387809753418 +karman_re100,sr,325,130.0,velocity,upper_uy,0.3566794991493225 +karman_re100,sr,325,130.0,velocity,center_ux,0.9318015575408936 +karman_re100,sr,325,130.0,velocity,center_uy,0.5359323620796204 +karman_re100,sr,325,130.0,velocity,lower_ux,0.9846151471138 +karman_re100,sr,325,130.0,velocity,lower_uy,0.3471461832523346 +karman_re100,sr,326,130.4,velocity,upper_ux,0.9764288067817688 +karman_re100,sr,326,130.4,velocity,upper_uy,0.38110196590423584 +karman_re100,sr,326,130.4,velocity,center_ux,0.9519708156585693 +karman_re100,sr,326,130.4,velocity,center_uy,0.548490583896637 +karman_re100,sr,326,130.4,velocity,lower_ux,1.0500011444091797 +karman_re100,sr,326,130.4,velocity,lower_uy,0.3752124011516571 +karman_re100,sr,327,130.8,velocity,upper_ux,0.9085579514503479 +karman_re100,sr,327,130.8,velocity,upper_uy,0.36291003227233887 +karman_re100,sr,327,130.8,velocity,center_ux,0.9645586609840393 +karman_re100,sr,327,130.8,velocity,center_uy,0.5302582383155823 +karman_re100,sr,327,130.8,velocity,lower_ux,1.1134780645370483 +karman_re100,sr,327,130.8,velocity,lower_uy,0.36773011088371277 +karman_re100,sr,328,131.2,velocity,upper_ux,0.8539382815361023 +karman_re100,sr,328,131.2,velocity,upper_uy,0.3001481294631958 +karman_re100,sr,328,131.2,velocity,center_ux,0.9652342796325684 +karman_re100,sr,328,131.2,velocity,center_uy,0.47999995946884155 +karman_re100,sr,328,131.2,velocity,lower_ux,1.1776081323623657 +karman_re100,sr,328,131.2,velocity,lower_uy,0.3364168107509613 +karman_re100,sr,329,131.6,velocity,upper_ux,0.8147988319396973 +karman_re100,sr,329,131.6,velocity,upper_uy,0.19493845105171204 +karman_re100,sr,329,131.6,velocity,center_ux,0.947777509689331 +karman_re100,sr,329,131.6,velocity,center_uy,0.3748413026332855 +karman_re100,sr,329,131.6,velocity,lower_ux,1.239604115486145 +karman_re100,sr,329,131.6,velocity,lower_uy,0.2791800796985626 +karman_re100,sr,330,132.0,velocity,upper_ux,0.799272358417511 +karman_re100,sr,330,132.0,velocity,upper_uy,0.059933457523584366 +karman_re100,sr,330,132.0,velocity,center_ux,0.9095679521560669 +karman_re100,sr,330,132.0,velocity,center_uy,0.18734537065029144 +karman_re100,sr,330,132.0,velocity,lower_ux,1.2895479202270508 +karman_re100,sr,330,132.0,velocity,lower_uy,0.1834639608860016 +karman_re100,sr,331,132.4,velocity,upper_ux,0.8165105581283569 +karman_re100,sr,331,132.4,velocity,upper_uy,-0.07881394028663635 +karman_re100,sr,331,132.4,velocity,center_ux,0.8768383860588074 +karman_re100,sr,331,132.4,velocity,center_uy,-0.08642247319221497 +karman_re100,sr,331,132.4,velocity,lower_ux,1.303723931312561 +karman_re100,sr,331,132.4,velocity,lower_uy,0.036227770149707794 +karman_re100,sr,332,132.8,velocity,upper_ux,0.8592739105224609 +karman_re100,sr,332,132.8,velocity,upper_uy,-0.20008371770381927 +karman_re100,sr,332,132.8,velocity,center_ux,0.8782527446746826 +karman_re100,sr,332,132.8,velocity,center_uy,-0.3424469232559204 +karman_re100,sr,332,132.8,velocity,lower_ux,1.2502851486206055 +karman_re100,sr,332,132.8,velocity,lower_uy,-0.14185237884521484 +karman_re100,sr,333,133.2,velocity,upper_ux,0.9168031811714172 +karman_re100,sr,333,133.2,velocity,upper_uy,-0.28843215107917786 +karman_re100,sr,333,133.2,velocity,center_ux,0.9032634496688843 +karman_re100,sr,333,133.2,velocity,center_uy,-0.48315611481666565 +karman_re100,sr,333,133.2,velocity,lower_ux,1.1559759378433228 +karman_re100,sr,333,133.2,velocity,lower_uy,-0.2797624170780182 +karman_re100,sr,334,133.6,velocity,upper_ux,0.9818546772003174 +karman_re100,sr,334,133.6,velocity,upper_uy,-0.3455948531627655 +karman_re100,sr,334,133.6,velocity,center_ux,0.9307133555412292 +karman_re100,sr,334,133.6,velocity,center_uy,-0.5349934697151184 +karman_re100,sr,334,133.6,velocity,lower_ux,1.0607821941375732 +karman_re100,sr,334,133.6,velocity,lower_uy,-0.3550078570842743 +karman_re100,sr,335,134.0,velocity,upper_ux,1.047407865524292 +karman_re100,sr,335,134.0,velocity,upper_uy,-0.3748796880245209 +karman_re100,sr,335,134.0,velocity,center_ux,0.951250433921814 +karman_re100,sr,335,134.0,velocity,center_uy,-0.5485600233078003 +karman_re100,sr,335,134.0,velocity,lower_ux,0.9791267514228821 +karman_re100,sr,335,134.0,velocity,lower_uy,-0.3808903992176056 +karman_re100,sr,336,134.4,velocity,upper_ux,1.1112804412841797 +karman_re100,sr,336,134.4,velocity,upper_uy,-0.3685353994369507 +karman_re100,sr,336,134.4,velocity,center_ux,0.9644811153411865 +karman_re100,sr,336,134.4,velocity,center_uy,-0.5313106775283813 +karman_re100,sr,336,134.4,velocity,lower_ux,0.9111682176589966 +karman_re100,sr,336,134.4,velocity,lower_uy,-0.36419105529785156 +karman_re100,sr,337,134.8,velocity,upper_ux,1.175471544265747 +karman_re100,sr,337,134.8,velocity,upper_uy,-0.33795657753944397 +karman_re100,sr,337,134.8,velocity,center_ux,0.9657546877861023 +karman_re100,sr,337,134.8,velocity,center_uy,-0.48237380385398865 +karman_re100,sr,337,134.8,velocity,lower_ux,0.8561577796936035 +karman_re100,sr,337,134.8,velocity,lower_uy,-0.302957147359848 +karman_re100,sr,338,135.2,velocity,upper_ux,1.2375552654266357 +karman_re100,sr,338,135.2,velocity,upper_uy,-0.28192466497421265 +karman_re100,sr,338,135.2,velocity,center_ux,0.9488565921783447 +karman_re100,sr,338,135.2,velocity,center_uy,-0.3795062303543091 +karman_re100,sr,338,135.2,velocity,lower_ux,0.8162400722503662 +karman_re100,sr,338,135.2,velocity,lower_uy,-0.1990625262260437 +karman_re100,sr,339,135.6,velocity,upper_ux,1.287843942642212 +karman_re100,sr,339,135.6,velocity,upper_uy,-0.18780557811260223 +karman_re100,sr,339,135.6,velocity,center_ux,0.9108696579933167 +karman_re100,sr,339,135.6,velocity,center_uy,-0.19538936018943787 +karman_re100,sr,339,135.6,velocity,lower_ux,0.7993994951248169 +karman_re100,sr,339,135.6,velocity,lower_uy,-0.06472967565059662 +karman_re100,sr,340,136.0,velocity,upper_ux,1.303880214691162 +karman_re100,sr,340,136.0,velocity,upper_uy,-0.04253575950860977 +karman_re100,sr,340,136.0,velocity,center_ux,0.8770503997802734 +karman_re100,sr,340,136.0,velocity,center_uy,0.07619881629943848 +karman_re100,sr,340,136.0,velocity,lower_ux,0.8153332471847534 +karman_re100,sr,340,136.0,velocity,lower_uy,0.07425544410943985 +karman_re100,sr,341,136.4,velocity,upper_ux,1.2530083656311035 +karman_re100,sr,341,136.4,velocity,upper_uy,0.1358552873134613 +karman_re100,sr,341,136.4,velocity,center_ux,0.8774780035018921 +karman_re100,sr,341,136.4,velocity,center_uy,0.33494266867637634 +karman_re100,sr,341,136.4,velocity,lower_ux,0.857674777507782 +karman_re100,sr,341,136.4,velocity,lower_uy,0.1963362693786621 +karman_re100,sr,342,136.8,velocity,upper_ux,1.1595432758331299 +karman_re100,sr,342,136.8,velocity,upper_uy,0.2761562168598175 +karman_re100,sr,342,136.8,velocity,center_ux,0.9023067355155945 +karman_re100,sr,342,136.8,velocity,center_uy,0.4799816906452179 +karman_re100,sr,342,136.8,velocity,lower_ux,0.9150310754776001 +karman_re100,sr,342,136.8,velocity,lower_uy,0.2859433889389038 +karman_re100,sr,343,137.2,velocity,upper_ux,1.0639104843139648 +karman_re100,sr,343,137.2,velocity,upper_uy,0.3534925580024719 +karman_re100,sr,343,137.2,velocity,center_ux,0.9299423694610596 +karman_re100,sr,343,137.2,velocity,center_uy,0.5339116454124451 +karman_re100,sr,343,137.2,velocity,lower_ux,0.9799255132675171 +karman_re100,sr,343,137.2,velocity,lower_uy,0.34397292137145996 +karman_re100,sr,344,137.6,velocity,upper_ux,0.981503963470459 +karman_re100,sr,344,137.6,velocity,upper_uy,0.3809094727039337 +karman_re100,sr,344,137.6,velocity,center_ux,0.9505776166915894 +karman_re100,sr,344,137.6,velocity,center_uy,0.548618733882904 +karman_re100,sr,344,137.6,velocity,lower_ux,1.0452975034713745 +karman_re100,sr,344,137.6,velocity,lower_uy,0.3744109869003296 +karman_re100,sr,345,138.0,velocity,upper_ux,0.9128046631813049 +karman_re100,sr,345,138.0,velocity,upper_uy,0.36570724844932556 +karman_re100,sr,345,138.0,velocity,center_ux,0.963876485824585 +karman_re100,sr,345,138.0,velocity,center_uy,0.5324364304542542 +karman_re100,sr,345,138.0,velocity,lower_ux,1.1088929176330566 +karman_re100,sr,345,138.0,velocity,lower_uy,0.36914077401161194 +karman_re100,sr,346,138.4,velocity,upper_ux,0.8573970198631287 +karman_re100,sr,346,138.4,velocity,upper_uy,0.306046724319458 +karman_re100,sr,346,138.4,velocity,center_ux,0.9658126831054688 +karman_re100,sr,346,138.4,velocity,center_uy,0.4848893880844116 +karman_re100,sr,346,138.4,velocity,lower_ux,1.173076868057251 +karman_re100,sr,346,138.4,velocity,lower_uy,0.33924856781959534 +karman_re100,sr,347,138.8,velocity,upper_ux,0.8172065019607544 +karman_re100,sr,347,138.8,velocity,upper_uy,0.20349153876304626 +karman_re100,sr,347,138.8,velocity,center_ux,0.9500751495361328 +karman_re100,sr,347,138.8,velocity,center_uy,0.3844086527824402 +karman_re100,sr,347,138.8,velocity,lower_ux,1.2357147932052612 +karman_re100,sr,347,138.8,velocity,lower_uy,0.28432294726371765 +karman_re100,sr,348,139.2,velocity,upper_ux,0.7994773387908936 +karman_re100,sr,348,139.2,velocity,upper_uy,0.06975014507770538 +karman_re100,sr,348,139.2,velocity,center_ux,0.9128008484840393 +karman_re100,sr,348,139.2,velocity,center_uy,0.2036169469356537 +karman_re100,sr,348,139.2,velocity,lower_ux,1.2867218255996704 +karman_re100,sr,348,139.2,velocity,lower_uy,0.19165782630443573 +karman_re100,sr,349,139.6,velocity,upper_ux,0.8141658306121826 +karman_re100,sr,349,139.6,velocity,upper_uy,-0.06962713599205017 +karman_re100,sr,349,139.6,velocity,center_ux,0.8780372738838196 +karman_re100,sr,349,139.6,velocity,center_uy,-0.0662129670381546 +karman_re100,sr,349,139.6,velocity,lower_ux,1.3044533729553223 +karman_re100,sr,349,139.6,velocity,lower_uy,0.048315178602933884 +karman_re100,sr,350,140.0,velocity,upper_ux,0.8556147813796997 +karman_re100,sr,350,140.0,velocity,upper_uy,-0.1926087588071823 +karman_re100,sr,350,140.0,velocity,center_ux,0.8770108222961426 +karman_re100,sr,350,140.0,velocity,center_uy,-0.32785260677337646 +karman_re100,sr,350,140.0,velocity,lower_ux,1.2555387020111084 +karman_re100,sr,350,140.0,velocity,lower_uy,-0.1299576759338379 +karman_re100,sr,351,140.4,velocity,upper_ux,0.9124117493629456 +karman_re100,sr,351,140.4,velocity,upper_uy,-0.2835130989551544 +karman_re100,sr,351,140.4,velocity,center_ux,0.9011600613594055 +karman_re100,sr,351,140.4,velocity,center_uy,-0.47705838084220886 +karman_re100,sr,351,140.4,velocity,lower_ux,1.1626412868499756 +karman_re100,sr,351,140.4,velocity,lower_uy,-0.2722134292125702 +karman_re100,sr,352,140.8,velocity,upper_ux,0.9774614572525024 +karman_re100,sr,352,140.8,velocity,upper_uy,-0.3424333333969116 +karman_re100,sr,352,140.8,velocity,center_ux,0.9291355609893799 +karman_re100,sr,352,140.8,velocity,center_uy,-0.5329568982124329 +karman_re100,sr,352,140.8,velocity,lower_ux,1.0669926404953003 +karman_re100,sr,352,140.8,velocity,lower_uy,-0.3515550494194031 +karman_re100,sr,353,141.2,velocity,upper_ux,1.0432133674621582 +karman_re100,sr,353,141.2,velocity,upper_uy,-0.37404289841651917 +karman_re100,sr,353,141.2,velocity,center_ux,0.9502651691436768 +karman_re100,sr,353,141.2,velocity,center_uy,-0.5487017035484314 +karman_re100,sr,353,141.2,velocity,lower_ux,0.9843872785568237 +karman_re100,sr,353,141.2,velocity,lower_uy,-0.3805370628833771 +karman_re100,sr,354,141.6,velocity,upper_ux,1.106906771659851 +karman_re100,sr,354,141.6,velocity,upper_uy,-0.36993175745010376 +karman_re100,sr,354,141.6,velocity,center_ux,0.9638037085533142 +karman_re100,sr,354,141.6,velocity,center_uy,-0.5335729122161865 +karman_re100,sr,354,141.6,velocity,lower_ux,0.9152263402938843 +karman_re100,sr,354,141.6,velocity,lower_uy,-0.36687371134757996 +karman_re100,sr,355,142.0,velocity,upper_ux,1.1709030866622925 +karman_re100,sr,355,142.0,velocity,upper_uy,-0.34073635935783386 +karman_re100,sr,355,142.0,velocity,center_ux,0.9660021066665649 +karman_re100,sr,355,142.0,velocity,center_uy,-0.4873631000518799 +karman_re100,sr,355,142.0,velocity,lower_ux,0.8591476678848267 +karman_re100,sr,355,142.0,velocity,lower_uy,-0.30879589915275574 +karman_re100,sr,356,142.4,velocity,upper_ux,1.2334998846054077 +karman_re100,sr,356,142.4,velocity,upper_uy,-0.2869054675102234 +karman_re100,sr,356,142.4,velocity,center_ux,0.9506429433822632 +karman_re100,sr,356,142.4,velocity,center_uy,-0.3892028331756592 +karman_re100,sr,356,142.4,velocity,lower_ux,0.8180636763572693 +karman_re100,sr,356,142.4,velocity,lower_uy,-0.20766320824623108 +karman_re100,sr,357,142.8,velocity,upper_ux,1.2851762771606445 +karman_re100,sr,357,142.8,velocity,upper_uy,-0.1957107037305832 +karman_re100,sr,357,142.8,velocity,center_ux,0.9139242768287659 +karman_re100,sr,357,142.8,velocity,center_uy,-0.2116861790418625 +karman_re100,sr,357,142.8,velocity,lower_ux,0.7993527054786682 +karman_re100,sr,357,142.8,velocity,lower_uy,-0.0747266337275505 +karman_re100,sr,358,143.2,velocity,upper_ux,1.305191159248352 +karman_re100,sr,358,143.2,velocity,upper_uy,-0.05428464710712433 +karman_re100,sr,358,143.2,velocity,center_ux,0.8786810040473938 +karman_re100,sr,358,143.2,velocity,center_uy,0.056028224527835846 +karman_re100,sr,358,143.2,velocity,lower_ux,0.8131940960884094 +karman_re100,sr,358,143.2,velocity,lower_uy,0.06485829502344131 +karman_re100,sr,359,143.6,velocity,upper_ux,1.2587848901748657 +karman_re100,sr,359,143.6,velocity,upper_uy,0.12401410192251205 +karman_re100,sr,359,143.6,velocity,center_ux,0.8766403198242188 +karman_re100,sr,359,143.6,velocity,center_uy,0.32025817036628723 +karman_re100,sr,359,143.6,velocity,lower_ux,0.8541069030761719 +karman_re100,sr,359,143.6,velocity,lower_uy,0.18866899609565735 +karman_re100,sr,360,144.0,velocity,upper_ux,1.166494369506836 +karman_re100,sr,360,144.0,velocity,upper_uy,0.26841214299201965 +karman_re100,sr,360,144.0,velocity,center_ux,0.9002640247344971 +karman_re100,sr,360,144.0,velocity,center_uy,0.4737726151943207 +karman_re100,sr,360,144.0,velocity,lower_ux,0.9103878736495972 +karman_re100,sr,360,144.0,velocity,lower_uy,0.28089460730552673 +karman_re100,sr,361,144.4,velocity,upper_ux,1.0702404975891113 +karman_re100,sr,361,144.4,velocity,upper_uy,0.34975799918174744 +karman_re100,sr,361,144.4,velocity,center_ux,0.9281644225120544 +karman_re100,sr,361,144.4,velocity,center_uy,0.5317931771278381 +karman_re100,sr,361,144.4,velocity,lower_ux,0.9750354290008545 +karman_re100,sr,361,144.4,velocity,lower_uy,0.3407229483127594 +karman_re100,sr,362,144.8,velocity,upper_ux,0.9869216680526733 +karman_re100,sr,362,144.8,velocity,upper_uy,0.38024285435676575 +karman_re100,sr,362,144.8,velocity,center_ux,0.9493751525878906 +karman_re100,sr,362,144.8,velocity,center_uy,0.548610508441925 +karman_re100,sr,362,144.8,velocity,lower_ux,1.0405983924865723 +karman_re100,sr,362,144.8,velocity,lower_uy,0.37348395586013794 +karman_re100,sr,363,145.2,velocity,upper_ux,0.9174995422363281 +karman_re100,sr,363,145.2,velocity,upper_uy,0.368060827255249 +karman_re100,sr,363,145.2,velocity,center_ux,0.963419497013092 +karman_re100,sr,363,145.2,velocity,center_uy,0.5345014333724976 +karman_re100,sr,363,145.2,velocity,lower_ux,1.1044986248016357 +karman_re100,sr,363,145.2,velocity,lower_uy,0.37053120136260986 +karman_re100,sr,364,145.6,velocity,upper_ux,0.8612268567085266 +karman_re100,sr,364,145.6,velocity,upper_uy,0.31154099106788635 +karman_re100,sr,364,145.6,velocity,center_ux,0.9664565324783325 +karman_re100,sr,364,145.6,velocity,center_uy,0.48954203724861145 +karman_re100,sr,364,145.6,velocity,lower_ux,1.1687111854553223 +karman_re100,sr,364,145.6,velocity,lower_uy,0.3420441448688507 +karman_re100,sr,365,146.0,velocity,upper_ux,0.8195663690567017 +karman_re100,sr,365,146.0,velocity,upper_uy,0.21176187694072723 +karman_re100,sr,365,146.0,velocity,center_ux,0.9518895149230957 +karman_re100,sr,365,146.0,velocity,center_uy,0.3936287760734558 +karman_re100,sr,365,146.0,velocity,lower_ux,1.2315115928649902 +karman_re100,sr,365,146.0,velocity,lower_uy,0.2893376052379608 +karman_re100,sr,366,146.4,velocity,upper_ux,0.7997317314147949 +karman_re100,sr,366,146.4,velocity,upper_uy,0.07955701649188995 +karman_re100,sr,366,146.4,velocity,center_ux,0.915651798248291 +karman_re100,sr,366,146.4,velocity,center_uy,0.2194574475288391 +karman_re100,sr,366,146.4,velocity,lower_ux,1.2835683822631836 +karman_re100,sr,366,146.4,velocity,lower_uy,0.19968126714229584 +karman_re100,sr,367,146.8,velocity,upper_ux,0.8121373057365417 +karman_re100,sr,367,146.8,velocity,upper_uy,-0.06023047864437103 +karman_re100,sr,367,146.8,velocity,center_ux,0.8793134093284607 +karman_re100,sr,367,146.8,velocity,center_uy,-0.04583244025707245 +karman_re100,sr,367,146.8,velocity,lower_ux,1.3050798177719116 +karman_re100,sr,367,146.8,velocity,lower_uy,0.060318127274513245 +karman_re100,sr,368,147.2,velocity,upper_ux,0.8522736430168152 +karman_re100,sr,368,147.2,velocity,upper_uy,-0.18480642139911652 +karman_re100,sr,368,147.2,velocity,center_ux,0.8759012818336487 +karman_re100,sr,368,147.2,velocity,center_uy,-0.31244057416915894 +karman_re100,sr,368,147.2,velocity,lower_ux,1.2610183954238892 +karman_re100,sr,368,147.2,velocity,lower_uy,-0.11777312308549881 +karman_re100,sr,369,147.6,velocity,upper_ux,0.9083881974220276 +karman_re100,sr,369,147.6,velocity,upper_uy,-0.27828845381736755 +karman_re100,sr,369,147.6,velocity,center_ux,0.8992499709129333 +karman_re100,sr,369,147.6,velocity,center_uy,-0.4702948331832886 +karman_re100,sr,369,147.6,velocity,lower_ux,1.1698250770568848 +karman_re100,sr,369,147.6,velocity,lower_uy,-0.2643335461616516 +karman_re100,sr,370,148.0,velocity,upper_ux,0.973071813583374 +karman_re100,sr,370,148.0,velocity,upper_uy,-0.33902260661125183 +karman_re100,sr,370,148.0,velocity,center_ux,0.9274613857269287 +karman_re100,sr,370,148.0,velocity,center_uy,-0.53056800365448 +karman_re100,sr,370,148.0,velocity,lower_ux,1.0734461545944214 +karman_re100,sr,370,148.0,velocity,lower_uy,-0.3478432893753052 +karman_re100,sr,371,148.4,velocity,upper_ux,1.038630723953247 +karman_re100,sr,371,148.4,velocity,upper_uy,-0.37289074063301086 +karman_re100,sr,371,148.4,velocity,center_ux,0.9488937258720398 +karman_re100,sr,371,148.4,velocity,center_uy,-0.5485023260116577 +karman_re100,sr,371,148.4,velocity,lower_ux,0.9895605444908142 +karman_re100,sr,371,148.4,velocity,lower_uy,-0.3799192011356354 +karman_re100,sr,372,148.8,velocity,upper_ux,1.1023528575897217 +karman_re100,sr,372,148.8,velocity,upper_uy,-0.37108883261680603 +karman_re100,sr,372,148.8,velocity,center_ux,0.9629973769187927 +karman_re100,sr,372,148.8,velocity,center_uy,-0.535477876663208 +karman_re100,sr,372,148.8,velocity,lower_ux,0.9194562435150146 +karman_re100,sr,372,148.8,velocity,lower_uy,-0.3692513704299927 +karman_re100,sr,373,149.2,velocity,upper_ux,1.1662901639938354 +karman_re100,sr,373,149.2,velocity,upper_uy,-0.34328773617744446 +karman_re100,sr,373,149.2,velocity,center_ux,0.9663207530975342 +karman_re100,sr,373,149.2,velocity,center_uy,-0.4918150007724762 +karman_re100,sr,373,149.2,velocity,lower_ux,0.8625133633613586 +karman_re100,sr,373,149.2,velocity,lower_uy,-0.3143148124217987 +karman_re100,sr,374,149.6,velocity,upper_ux,1.2294117212295532 +karman_re100,sr,374,149.6,velocity,upper_uy,-0.2916375398635864 +karman_re100,sr,374,149.6,velocity,center_ux,0.9526222944259644 +karman_re100,sr,374,149.6,velocity,center_uy,-0.39820030331611633 +karman_re100,sr,374,149.6,velocity,lower_ux,0.8204219341278076 +karman_re100,sr,374,149.6,velocity,lower_uy,-0.21597039699554443 +karman_re100,sr,375,150.0,velocity,upper_ux,1.2823225259780884 +karman_re100,sr,375,150.0,velocity,upper_uy,-0.20337800681591034 +karman_re100,sr,375,150.0,velocity,center_ux,0.9173184037208557 +karman_re100,sr,375,150.0,velocity,center_uy,-0.22722624242305756 +karman_re100,sr,375,150.0,velocity,lower_ux,0.7999159097671509 +karman_re100,sr,375,150.0,velocity,lower_uy,-0.08453817665576935 +karman_re100,sr,376,150.4,velocity,upper_ux,1.3056161403656006 +karman_re100,sr,376,150.4,velocity,upper_uy,-0.06590516865253448 +karman_re100,sr,376,150.4,velocity,center_ux,0.8803722262382507 +karman_re100,sr,376,150.4,velocity,center_uy,0.03587730973958969 +karman_re100,sr,376,150.4,velocity,lower_ux,0.8112225532531738 +karman_re100,sr,376,150.4,velocity,lower_uy,0.055508896708488464 +karman_re100,sr,377,150.8,velocity,upper_ux,1.2637625932693481 +karman_re100,sr,377,150.8,velocity,upper_uy,0.11185147613286972 +karman_re100,sr,377,150.8,velocity,center_ux,0.8756597638130188 +karman_re100,sr,377,150.8,velocity,center_uy,0.30484578013420105 +karman_re100,sr,377,150.8,velocity,lower_ux,0.8505480289459229 +karman_re100,sr,377,150.8,velocity,lower_uy,0.18091626465320587 +karman_re100,sr,378,151.2,velocity,upper_ux,1.173167109489441 +karman_re100,sr,378,151.2,velocity,upper_uy,0.26028987765312195 +karman_re100,sr,378,151.2,velocity,center_ux,0.8982039093971252 +karman_re100,sr,378,151.2,velocity,center_uy,0.4669441282749176 +karman_re100,sr,378,151.2,velocity,lower_ux,0.9059789180755615 +karman_re100,sr,378,151.2,velocity,lower_uy,0.2757030725479126 +karman_re100,sr,379,151.6,velocity,upper_ux,1.0764811038970947 +karman_re100,sr,379,151.6,velocity,upper_uy,0.3457861840724945 +karman_re100,sr,379,151.6,velocity,center_ux,0.9264069199562073 +karman_re100,sr,379,151.6,velocity,center_uy,0.5294013023376465 +karman_re100,sr,379,151.6,velocity,lower_ux,0.970427393913269 +karman_re100,sr,379,151.6,velocity,lower_uy,0.3373506963253021 +karman_re100,sr,380,152.0,velocity,upper_ux,0.9923837780952454 +karman_re100,sr,380,152.0,velocity,upper_uy,0.37940409779548645 +karman_re100,sr,380,152.0,velocity,center_ux,0.9483261108398438 +karman_re100,sr,380,152.0,velocity,center_uy,0.5483834743499756 +karman_re100,sr,380,152.0,velocity,lower_ux,1.0362913608551025 +karman_re100,sr,380,152.0,velocity,lower_uy,0.3723432421684265 +karman_re100,sr,381,152.4,velocity,upper_ux,0.9220220446586609 +karman_re100,sr,381,152.4,velocity,upper_uy,0.37022387981414795 +karman_re100,sr,381,152.4,velocity,center_ux,0.9628634452819824 +karman_re100,sr,381,152.4,velocity,center_uy,0.5363910794258118 +karman_re100,sr,381,152.4,velocity,lower_ux,1.1002839803695679 +karman_re100,sr,381,152.4,velocity,lower_uy,0.37175658345222473 +karman_re100,sr,382,152.8,velocity,upper_ux,0.8645774126052856 +karman_re100,sr,382,152.8,velocity,upper_uy,0.316852867603302 +karman_re100,sr,382,152.8,velocity,center_ux,0.9666017293930054 +karman_re100,sr,382,152.8,velocity,center_uy,0.4939406216144562 +karman_re100,sr,382,152.8,velocity,lower_ux,1.1641697883605957 +karman_re100,sr,382,152.8,velocity,lower_uy,0.34468457102775574 +karman_re100,sr,383,153.2,velocity,upper_ux,0.821706235408783 +karman_re100,sr,383,153.2,velocity,upper_uy,0.21992072463035583 +karman_re100,sr,383,153.2,velocity,center_ux,0.9533460736274719 +karman_re100,sr,383,153.2,velocity,center_uy,0.40249907970428467 +karman_re100,sr,383,153.2,velocity,lower_ux,1.2272776365280151 +karman_re100,sr,383,153.2,velocity,lower_uy,0.2941083014011383 +karman_re100,sr,384,153.6,velocity,upper_ux,0.8000366687774658 +karman_re100,sr,384,153.6,velocity,upper_uy,0.08936405926942825 +karman_re100,sr,384,153.6,velocity,center_ux,0.9184547662734985 +karman_re100,sr,384,153.6,velocity,center_uy,0.2347080111503601 +karman_re100,sr,384,153.6,velocity,lower_ux,1.2805204391479492 +karman_re100,sr,384,153.6,velocity,lower_uy,0.207323357462883 +karman_re100,sr,385,154.0,velocity,upper_ux,0.8102502226829529 +karman_re100,sr,385,154.0,velocity,upper_uy,-0.05076870322227478 +karman_re100,sr,385,154.0,velocity,center_ux,0.8809229135513306 +karman_re100,sr,385,154.0,velocity,center_uy,-0.025705676525831223 +karman_re100,sr,385,154.0,velocity,lower_ux,1.3056440353393555 +karman_re100,sr,385,154.0,velocity,lower_uy,0.07180926203727722 +karman_re100,sr,386,154.4,velocity,upper_ux,0.8490907549858093 +karman_re100,sr,386,154.4,velocity,upper_uy,-0.1769016683101654 +karman_re100,sr,386,154.4,velocity,center_ux,0.8752065300941467 +karman_re100,sr,386,154.4,velocity,center_uy,-0.2966857850551605 +karman_re100,sr,386,154.4,velocity,lower_ux,1.2665066719055176 +karman_re100,sr,386,154.4,velocity,lower_uy,-0.10572178661823273 +karman_re100,sr,387,154.8,velocity,upper_ux,0.9041416049003601 +karman_re100,sr,387,154.8,velocity,upper_uy,-0.2729645371437073 +karman_re100,sr,387,154.8,velocity,center_ux,0.8972780704498291 +karman_re100,sr,387,154.8,velocity,center_uy,-0.4632096588611603 +karman_re100,sr,387,154.8,velocity,lower_ux,1.1768635511398315 +karman_re100,sr,387,154.8,velocity,lower_uy,-0.25631943345069885 +karman_re100,sr,388,155.2,velocity,upper_ux,0.968312680721283 +karman_re100,sr,388,155.2,velocity,upper_uy,-0.3355490565299988 +karman_re100,sr,388,155.2,velocity,center_ux,0.9255374670028687 +karman_re100,sr,388,155.2,velocity,center_uy,-0.5280896425247192 +karman_re100,sr,388,155.2,velocity,lower_ux,1.079787015914917 +karman_re100,sr,388,155.2,velocity,lower_uy,-0.34395256638526917 +karman_re100,sr,389,155.6,velocity,upper_ux,1.0339404344558716 +karman_re100,sr,389,155.6,velocity,upper_uy,-0.3716161251068115 +karman_re100,sr,389,155.6,velocity,center_ux,0.9475258588790894 +karman_re100,sr,389,155.6,velocity,center_uy,-0.5481919646263123 +karman_re100,sr,389,155.6,velocity,lower_ux,0.9949325323104858 +karman_re100,sr,389,155.6,velocity,lower_uy,-0.3791092038154602 +karman_re100,sr,390,156.0,velocity,upper_ux,1.0978330373764038 +karman_re100,sr,390,156.0,velocity,upper_uy,-0.3722151815891266 +karman_re100,sr,390,156.0,velocity,center_ux,0.9622600078582764 +karman_re100,sr,390,156.0,velocity,center_uy,-0.5372620820999146 +karman_re100,sr,390,156.0,velocity,lower_ux,0.9240062236785889 +karman_re100,sr,390,156.0,velocity,lower_uy,-0.3713863790035248 +karman_re100,sr,391,156.4,velocity,upper_ux,1.1618574857711792 +karman_re100,sr,391,156.4,velocity,upper_uy,-0.3458346426486969 +karman_re100,sr,391,156.4,velocity,center_ux,0.9667690396308899 +karman_re100,sr,391,156.4,velocity,center_uy,-0.4959983825683594 +karman_re100,sr,391,156.4,velocity,lower_ux,0.8663336038589478 +karman_re100,sr,391,156.4,velocity,lower_uy,-0.31955787539482117 +karman_re100,sr,392,156.8,velocity,upper_ux,1.2253044843673706 +karman_re100,sr,392,156.8,velocity,upper_uy,-0.29628729820251465 +karman_re100,sr,392,156.8,velocity,center_ux,0.9544909000396729 +karman_re100,sr,392,156.8,velocity,center_uy,-0.40672093629837036 +karman_re100,sr,392,156.8,velocity,lower_ux,0.8231005668640137 +karman_re100,sr,392,156.8,velocity,lower_uy,-0.2240014672279358 +karman_re100,sr,393,157.2,velocity,upper_ux,1.279010534286499 +karman_re100,sr,393,157.2,velocity,upper_uy,-0.21092315018177032 +karman_re100,sr,393,157.2,velocity,center_ux,0.9203330874443054 +karman_re100,sr,393,157.2,velocity,center_uy,-0.24208366870880127 +karman_re100,sr,393,157.2,velocity,lower_ux,0.8005022406578064 +karman_re100,sr,393,157.2,velocity,lower_uy,-0.09420918673276901 +karman_re100,sr,394,157.6,velocity,upper_ux,1.305490255355835 +karman_re100,sr,394,157.6,velocity,upper_uy,-0.07740885019302368 +karman_re100,sr,394,157.6,velocity,center_ux,0.8820281028747559 +karman_re100,sr,394,157.6,velocity,center_uy,0.01577252708375454 +karman_re100,sr,394,157.6,velocity,lower_ux,0.8093747496604919 +karman_re100,sr,394,157.6,velocity,lower_uy,0.0461343489587307 +karman_re100,sr,395,158.0,velocity,upper_ux,1.2685071229934692 +karman_re100,sr,395,158.0,velocity,upper_uy,0.09948430955410004 +karman_re100,sr,395,158.0,velocity,center_ux,0.8747839331626892 +karman_re100,sr,395,158.0,velocity,center_uy,0.2887208163738251 +karman_re100,sr,395,158.0,velocity,lower_ux,0.8472326397895813 +karman_re100,sr,395,158.0,velocity,lower_uy,0.17303520441055298 +karman_re100,sr,396,158.4,velocity,upper_ux,1.1799020767211914 +karman_re100,sr,396,158.4,velocity,upper_uy,0.2519182562828064 +karman_re100,sr,396,158.4,velocity,center_ux,0.8962249159812927 +karman_re100,sr,396,158.4,velocity,center_uy,0.45951664447784424 +karman_re100,sr,396,158.4,velocity,lower_ux,0.9018703699111938 +karman_re100,sr,396,158.4,velocity,lower_uy,0.2703443765640259 +karman_re100,sr,397,158.8,velocity,upper_ux,1.0828903913497925 +karman_re100,sr,397,158.8,velocity,upper_uy,0.3416840732097626 +karman_re100,sr,397,158.8,velocity,center_ux,0.92476487159729 +karman_re100,sr,397,158.8,velocity,center_uy,0.5267938375473022 +karman_re100,sr,397,158.8,velocity,lower_ux,0.9661415219306946 +karman_re100,sr,397,158.8,velocity,lower_uy,0.3338561952114105 +karman_re100,sr,398,159.2,velocity,upper_ux,0.9976517558097839 +karman_re100,sr,398,159.2,velocity,upper_uy,0.37847691774368286 +karman_re100,sr,398,159.2,velocity,center_ux,0.9470841884613037 +karman_re100,sr,398,159.2,velocity,center_uy,0.5480076670646667 +karman_re100,sr,398,159.2,velocity,lower_ux,1.0319373607635498 +karman_re100,sr,398,159.2,velocity,lower_uy,0.3709867596626282 +karman_re100,sr,399,159.6,velocity,upper_ux,0.926189661026001 +karman_re100,sr,399,159.6,velocity,upper_uy,0.37228164076805115 +karman_re100,sr,399,159.6,velocity,center_ux,0.9619701504707336 +karman_re100,sr,399,159.6,velocity,center_uy,0.5381701588630676 +karman_re100,sr,399,159.6,velocity,lower_ux,1.095840573310852 +karman_re100,sr,399,159.6,velocity,lower_uy,0.3727998733520508 +karman_re100,sr,0,0.0,force,front_fx,0.0003500031598377973 +karman_re100,sr,0,0.0,force,front_fy,0.004588783252984285 +karman_re100,sr,0,0.0,force,upper_fx,-0.005601493641734123 +karman_re100,sr,0,0.0,force,upper_fy,0.0023681747261434793 +karman_re100,sr,0,0.0,force,lower_fx,0.004533043131232262 +karman_re100,sr,0,0.0,force,lower_fy,-0.004234709311276674 +karman_re100,sr,1,0.4,force,front_fx,0.0026198895648121834 +karman_re100,sr,1,0.4,force,front_fy,0.00406246492639184 +karman_re100,sr,1,0.4,force,upper_fx,-0.007191833108663559 +karman_re100,sr,1,0.4,force,upper_fy,0.0012551184045150876 +karman_re100,sr,1,0.4,force,lower_fx,0.004616147372871637 +karman_re100,sr,1,0.4,force,lower_fy,-0.0044845412485301495 +karman_re100,sr,2,0.8,force,front_fx,0.004842075984925032 +karman_re100,sr,2,0.8,force,front_fy,0.0032866238616406918 +karman_re100,sr,2,0.8,force,upper_fx,-0.009569964371621609 +karman_re100,sr,2,0.8,force,upper_fy,0.0004031694261357188 +karman_re100,sr,2,0.8,force,lower_fx,0.004041346721351147 +karman_re100,sr,2,0.8,force,lower_fy,-0.0042628576047718525 +karman_re100,sr,3,1.2,force,front_fx,0.0056730471551418304 +karman_re100,sr,3,1.2,force,front_fy,0.0018455578247085214 +karman_re100,sr,3,1.2,force,upper_fx,-0.010954512283205986 +karman_re100,sr,3,1.2,force,upper_fy,0.0016244687139987946 +karman_re100,sr,3,1.2,force,lower_fx,0.0029811603017151356 +karman_re100,sr,3,1.2,force,lower_fy,-0.0037720995023846626 +karman_re100,sr,4,1.6,force,front_fx,0.004966126289218664 +karman_re100,sr,4,1.6,force,front_fy,0.00033402099506929517 +karman_re100,sr,4,1.6,force,upper_fx,-0.008997814729809761 +karman_re100,sr,4,1.6,force,upper_fy,0.0038589294999837875 +karman_re100,sr,4,1.6,force,lower_fx,0.0022987157572060823 +karman_re100,sr,4,1.6,force,lower_fy,-0.0036134878173470497 +karman_re100,sr,5,2.0,force,front_fx,0.0031416809652000666 +karman_re100,sr,5,2.0,force,front_fy,-0.0008422714308835566 +karman_re100,sr,5,2.0,force,upper_fx,-0.0052191694267094135 +karman_re100,sr,5,2.0,force,upper_fy,0.004326462745666504 +karman_re100,sr,5,2.0,force,lower_fx,0.0017549023032188416 +karman_re100,sr,5,2.0,force,lower_fy,-0.003883159253746271 +karman_re100,sr,6,2.4,force,front_fx,0.0008520398405380547 +karman_re100,sr,6,2.4,force,front_fy,-0.0018719445215538144 +karman_re100,sr,6,2.4,force,upper_fx,-0.002374598989263177 +karman_re100,sr,6,2.4,force,upper_fy,0.004167750012129545 +karman_re100,sr,6,2.4,force,lower_fx,0.0009333007037639618 +karman_re100,sr,6,2.4,force,lower_fy,-0.004324788227677345 +karman_re100,sr,7,2.8,force,front_fx,-0.0006816446548327804 +karman_re100,sr,7,2.8,force,front_fy,-0.002738100942224264 +karman_re100,sr,7,2.8,force,upper_fx,-0.000236139923799783 +karman_re100,sr,7,2.8,force,upper_fy,0.004960006568580866 +karman_re100,sr,7,2.8,force,lower_fx,-0.0001944122341228649 +karman_re100,sr,7,2.8,force,lower_fy,-0.004336187150329351 +karman_re100,sr,8,3.2,force,front_fx,-0.000996562303043902 +karman_re100,sr,8,3.2,force,front_fy,-0.0032960365060716867 +karman_re100,sr,8,3.2,force,upper_fx,0.0019492777064442635 +karman_re100,sr,8,3.2,force,upper_fy,0.005902435164898634 +karman_re100,sr,8,3.2,force,lower_fx,-0.0016760380240157247 +karman_re100,sr,8,3.2,force,lower_fy,-0.0038055162876844406 +karman_re100,sr,9,3.6,force,front_fx,-0.00018364045536145568 +karman_re100,sr,9,3.6,force,front_fy,-0.0034912796691060066 +karman_re100,sr,9,3.6,force,upper_fx,0.0036807984579354525 +karman_re100,sr,9,3.6,force,upper_fy,0.006073721684515476 +karman_re100,sr,9,3.6,force,lower_fx,-0.003556756768375635 +karman_re100,sr,9,3.6,force,lower_fy,-0.0029830525163561106 +karman_re100,sr,10,4.0,force,front_fx,0.0015452258521690965 +karman_re100,sr,10,4.0,force,front_fy,-0.003284740261733532 +karman_re100,sr,10,4.0,force,upper_fx,0.0042367251589894295 +karman_re100,sr,10,4.0,force,upper_fy,0.0057433368638157845 +karman_re100,sr,10,4.0,force,lower_fx,-0.005652726162225008 +karman_re100,sr,10,4.0,force,lower_fy,-0.0022208155132830143 +karman_re100,sr,11,4.4,force,front_fx,0.0035053754691034555 +karman_re100,sr,11,4.4,force,front_fy,-0.0025850492529571056 +karman_re100,sr,11,4.4,force,upper_fx,0.003793675685301423 +karman_re100,sr,11,4.4,force,upper_fy,0.005175037309527397 +karman_re100,sr,11,4.4,force,lower_fx,-0.007356581743806601 +karman_re100,sr,11,4.4,force,lower_fy,-0.0020315528381615877 +karman_re100,sr,12,4.8,force,front_fx,0.004289634060114622 +karman_re100,sr,12,4.8,force,front_fy,-0.001489944406785071 +karman_re100,sr,12,4.8,force,upper_fx,0.0030946170445531607 +karman_re100,sr,12,4.8,force,upper_fy,0.0045975069515407085 +karman_re100,sr,12,4.8,force,lower_fx,-0.007450615055859089 +karman_re100,sr,12,4.8,force,lower_fy,-0.00278283329680562 +karman_re100,sr,13,5.2,force,front_fx,0.0035857746843248606 +karman_re100,sr,13,5.2,force,front_fy,-8.237176371039823e-05 +karman_re100,sr,13,5.2,force,upper_fx,0.00235276878811419 +karman_re100,sr,13,5.2,force,upper_fy,0.004473051521927118 +karman_re100,sr,13,5.2,force,lower_fx,-0.005507939960807562 +karman_re100,sr,13,5.2,force,lower_fy,-0.0036413106136024 +karman_re100,sr,14,5.6,force,front_fx,0.0019727449398487806 +karman_re100,sr,14,5.6,force,front_fy,0.001264672027900815 +karman_re100,sr,14,5.6,force,upper_fx,0.0014297328889369965 +karman_re100,sr,14,5.6,force,upper_fy,0.004680140409618616 +karman_re100,sr,14,5.6,force,lower_fx,-0.0029454100877046585 +karman_re100,sr,14,5.6,force,lower_fy,-0.004033123143017292 +karman_re100,sr,15,6.0,force,front_fx,0.00025755498791113496 +karman_re100,sr,15,6.0,force,front_fy,0.0023628463968634605 +karman_re100,sr,15,6.0,force,upper_fx,0.00027592951664701104 +karman_re100,sr,15,6.0,force,upper_fy,0.004823022522032261 +karman_re100,sr,15,6.0,force,lower_fx,-0.0006299673113971949 +karman_re100,sr,15,6.0,force,lower_fy,-0.004679768346250057 +karman_re100,sr,16,6.4,force,front_fx,-0.000687677413225174 +karman_re100,sr,16,6.4,force,front_fy,0.0031095240265130997 +karman_re100,sr,16,6.4,force,upper_fx,-0.001064178068190813 +karman_re100,sr,16,6.4,force,upper_fy,0.004567543976008892 +karman_re100,sr,16,6.4,force,lower_fx,0.0016347652999684215 +karman_re100,sr,16,6.4,force,lower_fy,-0.005581832956522703 +karman_re100,sr,17,6.8,force,front_fx,-0.0005534684751182795 +karman_re100,sr,17,6.8,force,front_fy,0.0035452526062726974 +karman_re100,sr,17,6.8,force,upper_fx,-0.002743835560977459 +karman_re100,sr,17,6.8,force,upper_fy,0.0038093978073447943 +karman_re100,sr,17,6.8,force,lower_fx,0.003742749337106943 +karman_re100,sr,17,6.8,force,lower_fy,-0.006117420271039009 +karman_re100,sr,18,7.2,force,front_fx,0.0006901973974891007 +karman_re100,sr,18,7.2,force,front_fy,0.0037567452527582645 +karman_re100,sr,18,7.2,force,upper_fx,-0.004883378278464079 +karman_re100,sr,18,7.2,force,upper_fy,0.002748950617387891 +karman_re100,sr,18,7.2,force,lower_fx,0.005048215389251709 +karman_re100,sr,18,7.2,force,lower_fy,-0.006127243861556053 +karman_re100,sr,19,7.6,force,front_fx,0.0028823695611208677 +karman_re100,sr,19,7.6,force,front_fy,0.0035547784063965082 +karman_re100,sr,19,7.6,force,upper_fx,-0.007308679167181253 +karman_re100,sr,19,7.6,force,upper_fy,0.0018165935762226582 +karman_re100,sr,19,7.6,force,lower_fx,0.005091563332825899 +karman_re100,sr,19,7.6,force,lower_fy,-0.005769648123532534 +karman_re100,sr,20,8.0,force,front_fx,0.0049379984848201275 +karman_re100,sr,20,8.0,force,front_fy,0.0028663829434663057 +karman_re100,sr,20,8.0,force,upper_fx,-0.009082295000553131 +karman_re100,sr,20,8.0,force,upper_fy,0.0017627101624384522 +karman_re100,sr,20,8.0,force,lower_fx,0.004302476532757282 +karman_re100,sr,20,8.0,force,lower_fy,-0.004985123407095671 +karman_re100,sr,21,8.4,force,front_fx,0.005433404352515936 +karman_re100,sr,21,8.4,force,front_fy,0.0016541511286050081 +karman_re100,sr,21,8.4,force,upper_fx,-0.008583413437008858 +karman_re100,sr,21,8.4,force,upper_fy,0.0026039525400847197 +karman_re100,sr,21,8.4,force,lower_fx,0.0034928666427731514 +karman_re100,sr,21,8.4,force,lower_fy,-0.004336144309490919 +karman_re100,sr,22,8.8,force,front_fx,0.0044732363894581795 +karman_re100,sr,22,8.8,force,front_fy,0.0002185255434596911 +karman_re100,sr,22,8.8,force,upper_fx,-0.006107823457568884 +karman_re100,sr,22,8.8,force,upper_fy,0.0029904330149292946 +karman_re100,sr,22,8.8,force,lower_fx,0.0027354059275239706 +karman_re100,sr,22,8.8,force,lower_fy,-0.004265492781996727 +karman_re100,sr,23,9.2,force,front_fx,0.002509522484615445 +karman_re100,sr,23,9.2,force,front_fy,-0.001185146626085043 +karman_re100,sr,23,9.2,force,upper_fx,-0.003525791224092245 +karman_re100,sr,23,9.2,force,upper_fy,0.003129771677777171 +karman_re100,sr,23,9.2,force,lower_fx,0.00179114262573421 +karman_re100,sr,23,9.2,force,lower_fy,-0.004576265346258879 +karman_re100,sr,24,9.6,force,front_fx,0.00048613850958645344 +karman_re100,sr,24,9.6,force,front_fy,-0.002403413411229849 +karman_re100,sr,24,9.6,force,upper_fx,-0.0012258875649422407 +karman_re100,sr,24,9.6,force,upper_fy,0.004139833152294159 +karman_re100,sr,24,9.6,force,lower_fx,0.0006182648940011859 +karman_re100,sr,24,9.6,force,lower_fy,-0.0048529161140322685 +karman_re100,sr,25,10.0,force,front_fx,-0.0006968416855670512 +karman_re100,sr,25,10.0,force,front_fy,-0.0031673565972596407 +karman_re100,sr,25,10.0,force,upper_fx,0.0012685115216299891 +karman_re100,sr,25,10.0,force,upper_fy,0.005581660661846399 +karman_re100,sr,25,10.0,force,lower_fx,-0.0006772133056074381 +karman_re100,sr,25,10.0,force,lower_fy,-0.004730517510324717 +karman_re100,sr,26,10.4,force,front_fx,-0.0007905971142463386 +karman_re100,sr,26,10.4,force,front_fy,-0.003522528801113367 +karman_re100,sr,26,10.4,force,upper_fx,0.0037330961786210537 +karman_re100,sr,26,10.4,force,upper_fy,0.006310017313808203 +karman_re100,sr,26,10.4,force,lower_fx,-0.002345617860555649 +karman_re100,sr,26,10.4,force,lower_fy,-0.004094964824616909 +karman_re100,sr,27,10.8,force,front_fx,0.00027940020663663745 +karman_re100,sr,27,10.8,force,front_fy,-0.0036684575024992228 +karman_re100,sr,27,10.8,force,upper_fx,0.005293412134051323 +karman_re100,sr,27,10.8,force,upper_fy,0.006283960305154324 +karman_re100,sr,27,10.8,force,lower_fx,-0.004495559725910425 +karman_re100,sr,27,10.8,force,lower_fy,-0.0030440804548561573 +karman_re100,sr,28,11.2,force,front_fx,0.002493542619049549 +karman_re100,sr,28,11.2,force,front_fy,-0.0034806495532393456 +karman_re100,sr,28,11.2,force,upper_fx,0.005490493960678577 +karman_re100,sr,28,11.2,force,upper_fy,0.005931189749389887 +karman_re100,sr,28,11.2,force,lower_fx,-0.007002081256359816 +karman_re100,sr,28,11.2,force,lower_fy,-0.0019389900844544172 +karman_re100,sr,29,11.6,force,front_fx,0.004809945821762085 +karman_re100,sr,29,11.6,force,front_fy,-0.002830734010785818 +karman_re100,sr,29,11.6,force,upper_fx,0.004681800492107868 +karman_re100,sr,29,11.6,force,upper_fy,0.005178745836019516 +karman_re100,sr,29,11.6,force,lower_fx,-0.009106945246458054 +karman_re100,sr,29,11.6,force,lower_fy,-0.001639382098801434 +karman_re100,sr,30,12.0,force,front_fx,0.005538357887417078 +karman_re100,sr,30,12.0,force,front_fy,-0.0016354925464838743 +karman_re100,sr,30,12.0,force,upper_fx,0.0037711160257458687 +karman_re100,sr,30,12.0,force,upper_fy,0.004474235698580742 +karman_re100,sr,30,12.0,force,lower_fx,-0.009041856974363327 +karman_re100,sr,30,12.0,force,lower_fy,-0.002521580085158348 +karman_re100,sr,31,12.4,force,front_fx,0.00471135601401329 +karman_re100,sr,31,12.4,force,front_fy,-0.00018389563774690032 +karman_re100,sr,31,12.4,force,upper_fx,0.002973039634525776 +karman_re100,sr,31,12.4,force,upper_fy,0.004341252613812685 +karman_re100,sr,31,12.4,force,lower_fx,-0.006646858062595129 +karman_re100,sr,31,12.4,force,lower_fy,-0.0031122181098908186 +karman_re100,sr,32,12.8,force,front_fx,0.002763297874480486 +karman_re100,sr,32,12.8,force,front_fy,0.0011878350051119924 +karman_re100,sr,32,12.8,force,upper_fx,0.0020215504337102175 +karman_re100,sr,32,12.8,force,upper_fy,0.0046386877074837685 +karman_re100,sr,32,12.8,force,lower_fx,-0.003951451741158962 +karman_re100,sr,32,12.8,force,lower_fy,-0.0031424174085259438 +karman_re100,sr,33,13.2,force,front_fx,0.0006433253875002265 +karman_re100,sr,33,13.2,force,front_fy,0.0023903774563223124 +karman_re100,sr,33,13.2,force,upper_fx,0.0008472143090330064 +karman_re100,sr,33,13.2,force,upper_fy,0.004932938143610954 +karman_re100,sr,33,13.2,force,lower_fx,-0.0016362846363335848 +karman_re100,sr,33,13.2,force,lower_fy,-0.003926932346075773 +karman_re100,sr,34,13.6,force,front_fx,-0.0006714570336043835 +karman_re100,sr,34,13.6,force,front_fy,0.0031920503824949265 +karman_re100,sr,34,13.6,force,upper_fx,-0.000416010880144313 +karman_re100,sr,34,13.6,force,upper_fy,0.004863647278398275 +karman_re100,sr,34,13.6,force,lower_fx,0.0008404536638408899 +karman_re100,sr,34,13.6,force,lower_fy,-0.005387081298977137 +karman_re100,sr,35,14.0,force,front_fx,-0.0008954291697591543 +karman_re100,sr,35,14.0,force,front_fy,0.0035601495765149593 +karman_re100,sr,35,14.0,force,upper_fx,-0.002000597305595875 +karman_re100,sr,35,14.0,force,upper_fy,0.00429904367774725 +karman_re100,sr,35,14.0,force,lower_fx,0.003433706471696496 +karman_re100,sr,35,14.0,force,lower_fy,-0.006324732676148415 +karman_re100,sr,36,14.4,force,front_fx,2.1178590031922795e-05 +karman_re100,sr,36,14.4,force,front_fy,0.003689155913889408 +karman_re100,sr,36,14.4,force,upper_fx,-0.004095015116035938 +karman_re100,sr,36,14.4,force,upper_fy,0.0033146170899271965 +karman_re100,sr,36,14.4,force,lower_fx,0.005215466488152742 +karman_re100,sr,36,14.4,force,lower_fy,-0.006388368550688028 +karman_re100,sr,37,14.8,force,front_fx,0.0020985740702599287 +karman_re100,sr,37,14.8,force,front_fy,0.003487733891233802 +karman_re100,sr,37,14.8,force,upper_fx,-0.006595155224204063 +karman_re100,sr,37,14.8,force,upper_fy,0.002153637120500207 +karman_re100,sr,37,14.8,force,lower_fx,0.005589576438069344 +karman_re100,sr,37,14.8,force,lower_fy,-0.006059050559997559 +karman_re100,sr,38,15.2,force,front_fx,0.004497559275478125 +karman_re100,sr,38,15.2,force,front_fy,0.002825201489031315 +karman_re100,sr,38,15.2,force,upper_fx,-0.008888299576938152 +karman_re100,sr,38,15.2,force,upper_fy,0.0016151629388332367 +karman_re100,sr,38,15.2,force,lower_fx,0.004813764244318008 +karman_re100,sr,38,15.2,force,lower_fy,-0.005330876912921667 +karman_re100,sr,39,15.6,force,front_fx,0.005447951145470142 +karman_re100,sr,39,15.6,force,front_fy,0.0016547426348552108 +karman_re100,sr,39,15.6,force,upper_fx,-0.00925128348171711 +karman_re100,sr,39,15.6,force,upper_fy,0.0023768125101923943 +karman_re100,sr,39,15.6,force,lower_fx,0.003852488938719034 +karman_re100,sr,39,15.6,force,lower_fy,-0.0045698462054133415 +karman_re100,sr,40,16.0,force,front_fx,0.00477302772924304 +karman_re100,sr,40,16.0,force,front_fy,0.00018111903045792133 +karman_re100,sr,40,16.0,force,upper_fx,-0.0070342267863452435 +karman_re100,sr,40,16.0,force,upper_fy,0.0032053973991423845 +karman_re100,sr,40,16.0,force,lower_fx,0.0030616209842264652 +karman_re100,sr,40,16.0,force,lower_fy,-0.0043784393928945065 +karman_re100,sr,41,16.4,force,front_fx,0.0029259079601615667 +karman_re100,sr,41,16.4,force,front_fy,-0.0011770360870286822 +karman_re100,sr,41,16.4,force,upper_fx,-0.0041997842490673065 +karman_re100,sr,41,16.4,force,upper_fy,0.0033485323656350374 +karman_re100,sr,41,16.4,force,lower_fx,0.0021651454735547304 +karman_re100,sr,41,16.4,force,lower_fy,-0.004681503400206566 +karman_re100,sr,42,16.8,force,front_fx,0.0007715252577327192 +karman_re100,sr,42,16.8,force,front_fy,-0.0023569362238049507 +karman_re100,sr,42,16.8,force,upper_fx,-0.0017999468836933374 +karman_re100,sr,42,16.8,force,upper_fy,0.0039849840104579926 +karman_re100,sr,42,16.8,force,lower_fx,0.0010025850497186184 +karman_re100,sr,42,16.8,force,lower_fy,-0.005023447796702385 +karman_re100,sr,43,17.2,force,front_fx,-0.0006458230200223625 +karman_re100,sr,43,17.2,force,front_fy,-0.0031588810961693525 +karman_re100,sr,43,17.2,force,upper_fx,0.0006080105667933822 +karman_re100,sr,43,17.2,force,upper_fy,0.005308853927999735 +karman_re100,sr,43,17.2,force,lower_fx,-0.0002920927363447845 +karman_re100,sr,43,17.2,force,lower_fy,-0.004977668635547161 +karman_re100,sr,44,17.6,force,front_fx,-0.0009572984417900443 +karman_re100,sr,44,17.6,force,front_fy,-0.00355400494299829 +karman_re100,sr,44,17.6,force,upper_fx,0.0031698825769126415 +karman_re100,sr,44,17.6,force,upper_fy,0.0062522608786821365 +karman_re100,sr,44,17.6,force,lower_fx,-0.0018627590034157038 +karman_re100,sr,44,17.6,force,lower_fy,-0.00440681679174304 +karman_re100,sr,45,18.0,force,front_fx,-0.00011573944357223809 +karman_re100,sr,45,18.0,force,front_fy,-0.0036882786080241203 +karman_re100,sr,45,18.0,force,upper_fx,0.005065067205578089 +karman_re100,sr,45,18.0,force,upper_fy,0.0063691954128444195 +karman_re100,sr,45,18.0,force,lower_fx,-0.0038888035342097282 +karman_re100,sr,45,18.0,force,lower_fy,-0.0034114730078727007 +karman_re100,sr,46,18.4,force,front_fx,0.0018699265783652663 +karman_re100,sr,46,18.4,force,front_fy,-0.0035018131602555513 +karman_re100,sr,46,18.4,force,upper_fx,0.005601916462182999 +karman_re100,sr,46,18.4,force,upper_fy,0.006080578081309795 +karman_re100,sr,46,18.4,force,lower_fx,-0.0063190096989274025 +karman_re100,sr,46,18.4,force,lower_fy,-0.0022583166137337685 +karman_re100,sr,47,18.8,force,front_fx,0.0042715054005384445 +karman_re100,sr,47,18.8,force,front_fy,-0.0028316921088844538 +karman_re100,sr,47,18.8,force,upper_fx,0.004892347846180201 +karman_re100,sr,47,18.8,force,upper_fy,0.0054216464050114155 +karman_re100,sr,47,18.8,force,lower_fx,-0.008643543347716331 +karman_re100,sr,47,18.8,force,lower_fy,-0.001655660686083138 +karman_re100,sr,48,19.2,force,front_fx,0.005342842545360327 +karman_re100,sr,48,19.2,force,front_fy,-0.0016876240260899067 +karman_re100,sr,48,19.2,force,upper_fx,0.0038877041079103947 +karman_re100,sr,48,19.2,force,upper_fy,0.004646641202270985 +karman_re100,sr,48,19.2,force,lower_fx,-0.00924824271351099 +karman_re100,sr,48,19.2,force,lower_fy,-0.002321867272257805 +karman_re100,sr,49,19.6,force,front_fx,0.004738871473819017 +karman_re100,sr,49,19.6,force,front_fy,-0.0002192231040680781 +karman_re100,sr,49,19.6,force,upper_fx,0.0030585420317947865 +karman_re100,sr,49,19.6,force,upper_fy,0.004391379654407501 +karman_re100,sr,49,19.6,force,lower_fx,-0.0072414446622133255 +karman_re100,sr,49,19.6,force,lower_fy,-0.003198986640200019 +karman_re100,sr,50,20.0,force,front_fx,0.002974448259919882 +karman_re100,sr,50,20.0,force,front_fy,0.001149738091044128 +karman_re100,sr,50,20.0,force,upper_fx,0.002180702518671751 +karman_re100,sr,50,20.0,force,upper_fy,0.004645389970391989 +karman_re100,sr,50,20.0,force,lower_fx,-0.004391452297568321 +karman_re100,sr,50,20.0,force,lower_fy,-0.003368653357028961 +karman_re100,sr,51,20.4,force,front_fx,0.0008540934068150818 +karman_re100,sr,51,20.4,force,front_fy,0.002323041670024395 +karman_re100,sr,51,20.4,force,upper_fx,0.001064227893948555 +karman_re100,sr,51,20.4,force,upper_fy,0.004995719529688358 +karman_re100,sr,51,20.4,force,lower_fx,-0.0019274171208962798 +karman_re100,sr,51,20.4,force,lower_fy,-0.00394893903285265 +karman_re100,sr,52,20.8,force,front_fx,-0.0005944177974015474 +karman_re100,sr,52,20.8,force,front_fy,0.0031478137243539095 +karman_re100,sr,52,20.8,force,upper_fx,-0.0002011189062613994 +karman_re100,sr,52,20.8,force,upper_fy,0.005004154983907938 +karman_re100,sr,52,20.8,force,lower_fx,0.0004950379370711744 +karman_re100,sr,52,20.8,force,lower_fy,-0.005251245107501745 +karman_re100,sr,53,21.2,force,front_fx,-0.0009646195685490966 +karman_re100,sr,53,21.2,force,front_fy,0.0035622664727270603 +karman_re100,sr,53,21.2,force,upper_fx,-0.001758370897732675 +karman_re100,sr,53,21.2,force,upper_fy,0.004478814546018839 +karman_re100,sr,53,21.2,force,lower_fx,0.0030397146474570036 +karman_re100,sr,53,21.2,force,lower_fy,-0.0062487684190273285 +karman_re100,sr,54,21.6,force,front_fx,-0.00018696858023758978 +karman_re100,sr,54,21.6,force,front_fy,0.003712347475811839 +karman_re100,sr,54,21.6,force,upper_fx,-0.0037887031212449074 +karman_re100,sr,54,21.6,force,upper_fy,0.0034952715504914522 +karman_re100,sr,54,21.6,force,lower_fx,0.004957946948707104 +karman_re100,sr,54,21.6,force,lower_fy,-0.006382003892213106 +karman_re100,sr,55,22.0,force,front_fx,0.001743826549500227 +karman_re100,sr,55,22.0,force,front_fy,0.003534393385052681 +karman_re100,sr,55,22.0,force,upper_fx,-0.006216004956513643 +karman_re100,sr,55,22.0,force,upper_fy,0.002298363484442234 +karman_re100,sr,55,22.0,force,lower_fx,0.005557722877711058 +karman_re100,sr,55,22.0,force,lower_fy,-0.006078798323869705 +karman_re100,sr,56,22.4,force,front_fx,0.004164179787039757 +karman_re100,sr,56,22.4,force,front_fy,0.002866697497665882 +karman_re100,sr,56,22.4,force,upper_fx,-0.00856122374534607 +karman_re100,sr,56,22.4,force,upper_fy,0.00162843510042876 +karman_re100,sr,56,22.4,force,lower_fx,0.004913259297609329 +karman_re100,sr,56,22.4,force,lower_fy,-0.005434160120785236 +karman_re100,sr,57,22.8,force,front_fx,0.005333150736987591 +karman_re100,sr,57,22.8,force,front_fy,0.0017282554181292653 +karman_re100,sr,57,22.8,force,upper_fx,-0.009273985400795937 +karman_re100,sr,57,22.8,force,upper_fy,0.0022735719103366137 +karman_re100,sr,57,22.8,force,lower_fx,0.003931563347578049 +karman_re100,sr,57,22.8,force,lower_fy,-0.004675156436860561 +karman_re100,sr,58,23.2,force,front_fx,0.004788768012076616 +karman_re100,sr,58,23.2,force,front_fy,0.00025390979135409 +karman_re100,sr,58,23.2,force,upper_fx,-0.0073487120680511 +karman_re100,sr,58,23.2,force,upper_fy,0.0032496752683073282 +karman_re100,sr,58,23.2,force,lower_fx,0.0031086441595107317 +karman_re100,sr,58,23.2,force,lower_fy,-0.0044179391115903854 +karman_re100,sr,59,23.6,force,front_fx,0.0030615050345659256 +karman_re100,sr,59,23.6,force,front_fy,-0.0011069562751799822 +karman_re100,sr,59,23.6,force,upper_fx,-0.004487915430217981 +karman_re100,sr,59,23.6,force,upper_fy,0.003449527081102133 +karman_re100,sr,59,23.6,force,lower_fx,0.0022286386229097843 +karman_re100,sr,59,23.6,force,lower_fy,-0.004671329632401466 +karman_re100,sr,60,24.0,force,front_fx,0.0009115819702856243 +karman_re100,sr,60,24.0,force,front_fy,-0.002284998307004571 +karman_re100,sr,60,24.0,force,upper_fx,-0.0020251646637916565 +karman_re100,sr,60,24.0,force,upper_fy,0.003935681190341711 +karman_re100,sr,60,24.0,force,lower_fx,0.0010984546970576048 +karman_re100,sr,60,24.0,force,lower_fy,-0.0050143105909228325 +karman_re100,sr,61,24.4,force,front_fx,-0.0005748465191572905 +karman_re100,sr,61,24.4,force,front_fy,-0.0031179042998701334 +karman_re100,sr,61,24.4,force,upper_fx,0.0003672307648230344 +karman_re100,sr,61,24.4,force,upper_fy,0.0051672435365617275 +karman_re100,sr,61,24.4,force,lower_fx,-0.0001652436185395345 +karman_re100,sr,61,24.4,force,lower_fy,-0.005010136403143406 +karman_re100,sr,62,24.8,force,front_fx,-0.0009703463292680681 +karman_re100,sr,62,24.8,force,front_fy,-0.0035521136596798897 +karman_re100,sr,62,24.8,force,upper_fx,0.002926746616140008 +karman_re100,sr,62,24.8,force,upper_fy,0.006195202469825745 +karman_re100,sr,62,24.8,force,lower_fx,-0.0016835458809509873 +karman_re100,sr,62,24.8,force,lower_fy,-0.004496411886066198 +karman_re100,sr,63,25.2,force,front_fx,-0.00023492878244724125 +karman_re100,sr,63,25.2,force,front_fy,-0.003708821488544345 +karman_re100,sr,63,25.2,force,upper_fx,0.004908848088234663 +karman_re100,sr,63,25.2,force,upper_fy,0.006400483660399914 +karman_re100,sr,63,25.2,force,lower_fx,-0.003668433055281639 +karman_re100,sr,63,25.2,force,lower_fy,-0.0035477932542562485 +karman_re100,sr,64,25.6,force,front_fx,0.0016431072726845741 +karman_re100,sr,64,25.6,force,front_fy,-0.0035473937168717384 +karman_re100,sr,64,25.6,force,upper_fx,0.0055671073496341705 +karman_re100,sr,64,25.6,force,upper_fy,0.006124312058091164 +karman_re100,sr,64,25.6,force,lower_fx,-0.006080459337681532 +karman_re100,sr,64,25.6,force,lower_fy,-0.002379752928391099 +karman_re100,sr,65,26.0,force,front_fx,0.004048821050673723 +karman_re100,sr,65,26.0,force,front_fy,-0.0028868583030998707 +karman_re100,sr,65,26.0,force,upper_fx,0.0049346075393259525 +karman_re100,sr,65,26.0,force,upper_fy,0.005489231552928686 +karman_re100,sr,65,26.0,force,lower_fx,-0.008458636701107025 +karman_re100,sr,65,26.0,force,lower_fy,-0.0016592085594311357 +karman_re100,sr,66,26.4,force,front_fx,0.005274136085063219 +karman_re100,sr,66,26.4,force,front_fy,-0.0017722274642437696 +karman_re100,sr,66,26.4,force,upper_fx,0.003932156600058079 +karman_re100,sr,66,26.4,force,upper_fy,0.004694906063377857 +karman_re100,sr,66,26.4,force,lower_fx,-0.00928945280611515 +karman_re100,sr,66,26.4,force,lower_fy,-0.0022066019009798765 +karman_re100,sr,67,26.8,force,front_fx,0.004800007212907076 +karman_re100,sr,67,26.8,force,front_fy,-0.0002992473600897938 +karman_re100,sr,67,26.8,force,upper_fx,0.0031107652466744184 +karman_re100,sr,67,26.8,force,upper_fy,0.004400425124913454 +karman_re100,sr,67,26.8,force,lower_fx,-0.007462131325155497 +karman_re100,sr,67,26.8,force,lower_fy,-0.003188847564160824 +karman_re100,sr,68,27.2,force,front_fx,0.003122099442407489 +karman_re100,sr,68,27.2,force,front_fy,0.0010732318041846156 +karman_re100,sr,68,27.2,force,upper_fx,0.0022599431686103344 +karman_re100,sr,68,27.2,force,upper_fy,0.0046438369899988174 +karman_re100,sr,68,27.2,force,lower_fx,-0.004572626203298569 +karman_re100,sr,68,27.2,force,lower_fy,-0.0034571599680930376 +karman_re100,sr,69,27.6,force,front_fx,0.0009867987828329206 +karman_re100,sr,69,27.6,force,front_fy,0.0022602262906730175 +karman_re100,sr,69,27.6,force,upper_fx,0.0011505924630910158 +karman_re100,sr,69,27.6,force,upper_fy,0.005015261936932802 +karman_re100,sr,69,27.6,force,lower_fx,-0.002061206614598632 +karman_re100,sr,69,27.6,force,lower_fy,-0.003957968205213547 +karman_re100,sr,70,28.0,force,front_fx,-0.0005415564519353211 +karman_re100,sr,70,28.0,force,front_fy,0.0031018543522804976 +karman_re100,sr,70,28.0,force,upper_fx,-0.0001252734800800681 +karman_re100,sr,70,28.0,force,upper_fy,0.005041963886469603 +karman_re100,sr,70,28.0,force,lower_fx,0.0003272996982559562 +karman_re100,sr,70,28.0,force,lower_fy,-0.005168525502085686 +karman_re100,sr,71,28.4,force,front_fx,-0.0009803626453503966 +karman_re100,sr,71,28.4,force,front_fy,0.003544298931956291 +karman_re100,sr,71,28.4,force,upper_fx,-0.0016608963487669826 +karman_re100,sr,71,28.4,force,upper_fy,0.004525369498878717 +karman_re100,sr,71,28.4,force,lower_fx,0.002854451537132263 +karman_re100,sr,71,28.4,force,lower_fy,-0.006173729430884123 +karman_re100,sr,72,28.8,force,front_fx,-0.00027177922311238945 +karman_re100,sr,72,28.8,force,front_fy,0.0037152906879782677 +karman_re100,sr,72,28.8,force,upper_fx,-0.0036430349573493004 +karman_re100,sr,72,28.8,force,upper_fy,0.003554270602762699 +karman_re100,sr,72,28.8,force,lower_fx,0.004851583857089281 +karman_re100,sr,72,28.8,force,lower_fy,-0.006365991663187742 +karman_re100,sr,73,29.2,force,front_fx,0.001594069297425449 +karman_re100,sr,73,29.2,force,front_fy,0.0035709773655980825 +karman_re100,sr,73,29.2,force,upper_fx,-0.006032916251569986 +karman_re100,sr,73,29.2,force,upper_fy,0.0023739708121865988 +karman_re100,sr,73,29.2,force,lower_fx,0.005569664295762777 +karman_re100,sr,73,29.2,force,lower_fy,-0.006105491425842047 +karman_re100,sr,74,29.6,force,front_fx,0.0040206010453403 +karman_re100,sr,74,29.6,force,front_fy,0.00292942114174366 +karman_re100,sr,74,29.6,force,upper_fx,-0.008415368385612965 +karman_re100,sr,74,29.6,force,upper_fy,0.0016612255712971091 +karman_re100,sr,74,29.6,force,lower_fx,0.004985618405044079 +karman_re100,sr,74,29.6,force,lower_fy,-0.005504331551492214 +karman_re100,sr,75,30.0,force,front_fx,0.005302413832396269 +karman_re100,sr,75,30.0,force,front_fy,0.0018215838354080915 +karman_re100,sr,75,30.0,force,upper_fx,-0.009307997301220894 +karman_re100,sr,75,30.0,force,upper_fy,0.0022075676824897528 +karman_re100,sr,75,30.0,force,lower_fx,0.003982098773121834 +karman_re100,sr,75,30.0,force,lower_fy,-0.004727446008473635 +karman_re100,sr,76,30.4,force,front_fx,0.004853231832385063 +karman_re100,sr,76,30.4,force,front_fy,0.00035506670246832073 +karman_re100,sr,76,30.4,force,upper_fx,-0.0075513278134167194 +karman_re100,sr,76,30.4,force,upper_fy,0.0031858065631240606 +karman_re100,sr,76,30.4,force,lower_fx,0.0031404090113937855 +karman_re100,sr,76,30.4,force,lower_fy,-0.00441255746409297 +karman_re100,sr,77,30.8,force,front_fx,0.0031891295220702887 +karman_re100,sr,77,30.8,force,front_fy,-0.001019029412418604 +karman_re100,sr,77,30.8,force,upper_fx,-0.004693368449807167 +karman_re100,sr,77,30.8,force,upper_fy,0.003410425502806902 +karman_re100,sr,77,30.8,force,lower_fx,0.0022780837025493383 +karman_re100,sr,77,30.8,force,lower_fy,-0.004629345610737801 +karman_re100,sr,78,31.2,force,front_fx,0.0010516690090298653 +karman_re100,sr,78,31.2,force,front_fy,-0.0022145428229123354 +karman_re100,sr,78,31.2,force,upper_fx,-0.002183532575145364 +karman_re100,sr,78,31.2,force,upper_fy,0.003869385225698352 +karman_re100,sr,78,31.2,force,lower_fx,0.0011818637140095234 +karman_re100,sr,78,31.2,force,lower_fy,-0.004984770901501179 +karman_re100,sr,79,31.6,force,front_fx,-0.0004935172037221491 +karman_re100,sr,79,31.6,force,front_fy,-0.0030803694389760494 +karman_re100,sr,79,31.6,force,upper_fx,0.00021764215489383787 +karman_re100,sr,79,31.6,force,upper_fy,0.005107246804982424 +karman_re100,sr,79,31.6,force,lower_fx,-6.197252514539286e-05 +karman_re100,sr,79,31.6,force,lower_fy,-0.00503469118848443 +karman_re100,sr,80,32.0,force,front_fx,-0.0009762763511389494 +karman_re100,sr,80,32.0,force,front_fy,-0.003535063471645117 +karman_re100,sr,80,32.0,force,upper_fx,0.002777729881927371 +karman_re100,sr,80,32.0,force,upper_fy,0.006188119761645794 +karman_re100,sr,80,32.0,force,lower_fx,-0.001566948601976037 +karman_re100,sr,80,32.0,force,lower_fy,-0.004566983785480261 +karman_re100,sr,81,32.4,force,front_fx,-0.0003234560717828572 +karman_re100,sr,81,32.4,force,front_fy,-0.0037052351981401443 +karman_re100,sr,81,32.4,force,upper_fx,0.004806287586688995 +karman_re100,sr,81,32.4,force,upper_fy,0.006416012533009052 +karman_re100,sr,81,32.4,force,lower_fx,-0.0035387403331696987 +karman_re100,sr,81,32.4,force,lower_fy,-0.0036318516358733177 +karman_re100,sr,82,32.8,force,front_fx,0.0014883498661220074 +karman_re100,sr,82,32.8,force,front_fy,-0.0035748430527746677 +karman_re100,sr,82,32.8,force,upper_fx,0.00555203203111887 +karman_re100,sr,82,32.8,force,upper_fy,0.006139726843684912 +karman_re100,sr,82,32.8,force,lower_fx,-0.005935200490057468 +karman_re100,sr,82,32.8,force,lower_fy,-0.002442203229293227 +karman_re100,sr,83,33.2,force,front_fx,0.003910872619599104 +karman_re100,sr,83,33.2,force,front_fy,-0.0029532017651945353 +karman_re100,sr,83,33.2,force,upper_fx,0.004996336530894041 +karman_re100,sr,83,33.2,force,upper_fy,0.005526901688426733 +karman_re100,sr,83,33.2,force,lower_fx,-0.008336992003023624 +karman_re100,sr,83,33.2,force,lower_fy,-0.001654142397455871 +karman_re100,sr,84,33.6,force,front_fx,0.005272284150123596 +karman_re100,sr,84,33.6,force,front_fy,-0.0018669781275093555 +karman_re100,sr,84,33.6,force,upper_fx,0.0040065329521894455 +karman_re100,sr,84,33.6,force,upper_fy,0.004733900539577007 +karman_re100,sr,84,33.6,force,lower_fx,-0.009308571927249432 +karman_re100,sr,84,33.6,force,lower_fy,-0.002142983488738537 +karman_re100,sr,85,34.0,force,front_fx,0.004886379931122065 +karman_re100,sr,85,34.0,force,front_fy,-0.0003980354522354901 +karman_re100,sr,85,34.0,force,upper_fx,0.003176386933773756 +karman_re100,sr,85,34.0,force,upper_fy,0.004412350710481405 +karman_re100,sr,85,34.0,force,lower_fx,-0.0076179164461791515 +karman_re100,sr,85,34.0,force,lower_fy,-0.00317586213350296 +karman_re100,sr,86,34.4,force,front_fx,0.0032576804514974356 +karman_re100,sr,86,34.4,force,front_fy,0.0009837568504735827 +karman_re100,sr,86,34.4,force,upper_fx,0.002320891944691539 +karman_re100,sr,86,34.4,force,upper_fy,0.0046296026557683945 +karman_re100,sr,86,34.4,force,lower_fx,-0.004744481295347214 +karman_re100,sr,86,34.4,force,lower_fy,-0.0034599611535668373 +karman_re100,sr,87,34.8,force,front_fx,0.0011108429171144962 +karman_re100,sr,87,34.8,force,front_fy,0.0021835521329194307 +karman_re100,sr,87,34.8,force,upper_fx,0.0012150591937825084 +karman_re100,sr,87,34.8,force,upper_fy,0.004994145128875971 +karman_re100,sr,87,34.8,force,lower_fx,-0.0022282698191702366 +karman_re100,sr,87,34.8,force,lower_fy,-0.0038773110136389732 +karman_re100,sr,88,35.2,force,front_fx,-0.00047737982822582126 +karman_re100,sr,88,35.2,force,front_fy,0.003055157605558634 +karman_re100,sr,88,35.2,force,upper_fx,-4.705788160208613e-05 +karman_re100,sr,88,35.2,force,upper_fy,0.005036795046180487 +karman_re100,sr,88,35.2,force,lower_fx,0.00014241326425690204 +karman_re100,sr,88,35.2,force,lower_fy,-0.0050465865060687065 +karman_re100,sr,89,35.6,force,front_fx,-0.0009814398363232613 +karman_re100,sr,89,35.6,force,front_fy,0.003524809144437313 +karman_re100,sr,89,35.6,force,upper_fx,-0.0015372508205473423 +karman_re100,sr,89,35.6,force,upper_fy,0.004558079410344362 +karman_re100,sr,89,35.6,force,lower_fx,0.0026879222132265568 +karman_re100,sr,89,35.6,force,lower_fy,-0.006116109900176525 +karman_re100,sr,90,36.0,force,front_fx,-0.0003490108938422054 +karman_re100,sr,90,36.0,force,front_fy,0.0037113723810762167 +karman_re100,sr,90,36.0,force,upper_fx,-0.003474791068583727 +karman_re100,sr,90,36.0,force,upper_fy,0.0036334029864519835 +karman_re100,sr,90,36.0,force,lower_fx,0.004765395075082779 +karman_re100,sr,90,36.0,force,lower_fy,-0.006386518478393555 +karman_re100,sr,91,36.4,force,front_fx,0.0014362996444106102 +karman_re100,sr,91,36.4,force,front_fy,0.003596313064917922 +karman_re100,sr,91,36.4,force,upper_fx,-0.005850586108863354 +karman_re100,sr,91,36.4,force,upper_fy,0.0024700770154595375 +karman_re100,sr,91,36.4,force,lower_fx,0.00557264219969511 +karman_re100,sr,91,36.4,force,lower_fy,-0.006154857110232115 +karman_re100,sr,92,36.8,force,front_fx,0.0038622827269136906 +karman_re100,sr,92,36.8,force,front_fy,0.002987067447975278 +karman_re100,sr,92,36.8,force,upper_fx,-0.008281627669930458 +karman_re100,sr,92,36.8,force,upper_fy,0.0016828615916892886 +karman_re100,sr,92,36.8,force,lower_fx,0.005038285627961159 +karman_re100,sr,92,36.8,force,lower_fy,-0.005568701773881912 +karman_re100,sr,93,37.2,force,front_fx,0.005267213564366102 +karman_re100,sr,93,37.2,force,front_fy,0.0019161649979650974 +karman_re100,sr,93,37.2,force,upper_fx,-0.009344328194856644 +karman_re100,sr,93,37.2,force,upper_fy,0.0021178252063691616 +karman_re100,sr,93,37.2,force,lower_fx,0.004029468167573214 +karman_re100,sr,93,37.2,force,lower_fy,-0.004762481898069382 +karman_re100,sr,94,37.6,force,front_fx,0.004924347624182701 +karman_re100,sr,94,37.6,force,front_fy,0.0004602694243658334 +karman_re100,sr,94,37.6,force,upper_fx,-0.007739673834294081 +karman_re100,sr,94,37.6,force,upper_fy,0.003122492926195264 +karman_re100,sr,94,37.6,force,lower_fx,0.0031875211279839277 +karman_re100,sr,94,37.6,force,lower_fy,-0.004402451682835817 +karman_re100,sr,95,38.0,force,front_fx,0.003340267576277256 +karman_re100,sr,95,38.0,force,front_fy,-0.0009295019553974271 +karman_re100,sr,95,38.0,force,upper_fx,-0.0048698605969548225 +karman_re100,sr,95,38.0,force,upper_fy,0.0034123375080525875 +karman_re100,sr,95,38.0,force,lower_fx,0.0023528789170086384 +karman_re100,sr,95,38.0,force,lower_fy,-0.004600372165441513 +karman_re100,sr,96,38.4,force,front_fx,0.001198550802655518 +karman_re100,sr,96,38.4,force,front_fy,-0.002145542996004224 +karman_re100,sr,96,38.4,force,upper_fx,-0.0023183319717645645 +karman_re100,sr,96,38.4,force,upper_fy,0.0038457850459963083 +karman_re100,sr,96,38.4,force,lower_fx,0.0012752845650538802 +karman_re100,sr,96,38.4,force,lower_fy,-0.004979124758392572 +karman_re100,sr,97,38.8,force,front_fx,-0.00042585673509165645 +karman_re100,sr,97,38.8,force,front_fy,-0.003032500157132745 +karman_re100,sr,97,38.8,force,upper_fx,6.521359318867326e-05 +karman_re100,sr,97,38.8,force,upper_fy,0.005042820703238249 +karman_re100,sr,97,38.8,force,lower_fx,2.417114592390135e-05 +karman_re100,sr,97,38.8,force,lower_fy,-0.005064924247562885 +karman_re100,sr,98,39.2,force,front_fx,-0.0009814093355089426 +karman_re100,sr,98,39.2,force,front_fy,-0.0035096541978418827 +karman_re100,sr,98,39.2,force,upper_fx,0.002608333481475711 +karman_re100,sr,98,39.2,force,upper_fy,0.006137046962976456 +karman_re100,sr,98,39.2,force,lower_fx,-0.0014708669623360038 +karman_re100,sr,98,39.2,force,lower_fy,-0.004615976940840483 +karman_re100,sr,99,39.6,force,front_fx,-0.0004040541243739426 +karman_re100,sr,99,39.6,force,front_fy,-0.0036980779841542244 +karman_re100,sr,99,39.6,force,upper_fx,0.004696158226579428 +karman_re100,sr,99,39.6,force,upper_fy,0.006399122998118401 +karman_re100,sr,99,39.6,force,lower_fx,-0.0034105617087334394 +karman_re100,sr,99,39.6,force,lower_fy,-0.003689006669446826 +karman_re100,sr,100,40.0,force,front_fx,0.0013446721713989973 +karman_re100,sr,100,40.0,force,front_fy,-0.0036012830678373575 +karman_re100,sr,100,40.0,force,upper_fx,0.005552671384066343 +karman_re100,sr,100,40.0,force,upper_fy,0.00615197466686368 +karman_re100,sr,100,40.0,force,lower_fx,-0.005772069096565247 +karman_re100,sr,100,40.0,force,lower_fy,-0.0025015235878527164 +karman_re100,sr,101,40.4,force,front_fx,0.0037789165508002043 +karman_re100,sr,101,40.4,force,front_fy,-0.0030046869069337845 +karman_re100,sr,101,40.4,force,upper_fx,0.005075383931398392 +karman_re100,sr,101,40.4,force,upper_fy,0.00558286951854825 +karman_re100,sr,101,40.4,force,lower_fx,-0.008191710337996483 +karman_re100,sr,101,40.4,force,lower_fy,-0.0016806551720947027 +karman_re100,sr,102,40.8,force,front_fx,0.005249457433819771 +karman_re100,sr,102,40.8,force,front_fy,-0.0019583464600145817 +karman_re100,sr,102,40.8,force,upper_fx,0.004078920930624008 +karman_re100,sr,102,40.8,force,upper_fy,0.0047898488119244576 +karman_re100,sr,102,40.8,force,lower_fx,-0.00931764766573906 +karman_re100,sr,102,40.8,force,lower_fy,-0.0020982050336897373 +karman_re100,sr,103,41.2,force,front_fx,0.004956554621458054 +karman_re100,sr,103,41.2,force,front_fy,-0.0005060893017798662 +karman_re100,sr,103,41.2,force,upper_fx,0.003225493710488081 +karman_re100,sr,103,41.2,force,upper_fy,0.00442053098231554 +karman_re100,sr,103,41.2,force,lower_fx,-0.007796095218509436 +karman_re100,sr,103,41.2,force,lower_fy,-0.003130493685603142 +karman_re100,sr,104,41.6,force,front_fx,0.0033920181449502707 +karman_re100,sr,104,41.6,force,front_fy,0.0008854462066665292 +karman_re100,sr,104,41.6,force,upper_fx,0.0023755906149744987 +karman_re100,sr,104,41.6,force,upper_fy,0.004596908576786518 +karman_re100,sr,104,41.6,force,lower_fx,-0.004952775314450264 +karman_re100,sr,104,41.6,force,lower_fy,-0.0034215212799608707 +karman_re100,sr,105,42.0,force,front_fx,0.0012512163957580924 +karman_re100,sr,105,42.0,force,front_fy,0.002104261890053749 +karman_re100,sr,105,42.0,force,upper_fx,0.0012929264921694994 +karman_re100,sr,105,42.0,force,upper_fy,0.004957286641001701 +karman_re100,sr,105,42.0,force,lower_fx,-0.002412979258224368 +karman_re100,sr,105,42.0,force,lower_fy,-0.003784948494285345 +karman_re100,sr,106,42.4,force,front_fx,-0.0003912076645065099 +karman_re100,sr,106,42.4,force,front_fy,0.003008806612342596 +karman_re100,sr,106,42.4,force,upper_fx,5.709838296752423e-05 +karman_re100,sr,106,42.4,force,upper_fy,0.005040887743234634 +karman_re100,sr,106,42.4,force,lower_fx,-3.635980829130858e-05 +karman_re100,sr,106,42.4,force,lower_fy,-0.004951091483235359 +karman_re100,sr,107,42.8,force,front_fx,-0.000973908812738955 +karman_re100,sr,107,42.8,force,front_fy,0.0035059580113738775 +karman_re100,sr,107,42.8,force,upper_fx,-0.001401041867211461 +karman_re100,sr,107,42.8,force,upper_fy,0.004620160907506943 +karman_re100,sr,107,42.8,force,lower_fx,0.002523208037018776 +karman_re100,sr,107,42.8,force,lower_fy,-0.006093215197324753 +karman_re100,sr,108,43.2,force,front_fx,-0.00043524225475266576 +karman_re100,sr,108,43.2,force,front_fy,0.003704048926010728 +karman_re100,sr,108,43.2,force,upper_fx,-0.0033158641308546066 +karman_re100,sr,108,43.2,force,upper_fy,0.003733045421540737 +karman_re100,sr,108,43.2,force,lower_fx,0.004656162578612566 +karman_re100,sr,108,43.2,force,lower_fy,-0.006416692864149809 +karman_re100,sr,109,43.6,force,front_fx,0.0012678480707108974 +karman_re100,sr,109,43.6,force,front_fy,0.003616281785070896 +karman_re100,sr,109,43.6,force,upper_fx,-0.005677996203303337 +karman_re100,sr,109,43.6,force,upper_fy,0.0025598236825317144 +karman_re100,sr,109,43.6,force,lower_fx,0.005549687892198563 +karman_re100,sr,109,43.6,force,lower_fy,-0.006186858285218477 +karman_re100,sr,110,44.0,force,front_fx,0.0036941375583410263 +karman_re100,sr,110,44.0,force,front_fy,0.0030422022100538015 +karman_re100,sr,110,44.0,force,upper_fx,-0.008136162534356117 +karman_re100,sr,110,44.0,force,upper_fy,0.0016924303490668535 +karman_re100,sr,110,44.0,force,lower_fx,0.005090398248285055 +karman_re100,sr,110,44.0,force,lower_fy,-0.005614669993519783 +karman_re100,sr,111,44.4,force,front_fx,0.005227844696491957 +karman_re100,sr,111,44.4,force,front_fy,0.002007188042625785 +karman_re100,sr,111,44.4,force,upper_fx,-0.009348365478217602 +karman_re100,sr,111,44.4,force,upper_fy,0.00203490536659956 +karman_re100,sr,111,44.4,force,lower_fx,0.004094651900231838 +karman_re100,sr,111,44.4,force,lower_fy,-0.004802628420293331 +karman_re100,sr,112,44.8,force,front_fx,0.00499854376539588 +karman_re100,sr,112,44.8,force,front_fy,0.0005592748057097197 +karman_re100,sr,112,44.8,force,upper_fx,-0.00790430698543787 +karman_re100,sr,112,44.8,force,upper_fy,0.0030901827849447727 +karman_re100,sr,112,44.8,force,lower_fx,0.0032533665653318167 +karman_re100,sr,112,44.8,force,lower_fy,-0.004409861750900745 +karman_re100,sr,113,45.2,force,front_fx,0.003477411810308695 +karman_re100,sr,113,45.2,force,front_fy,-0.000845315691549331 +karman_re100,sr,113,45.2,force,upper_fx,-0.005039643030613661 +karman_re100,sr,113,45.2,force,upper_fy,0.003441042499616742 +karman_re100,sr,113,45.2,force,lower_fx,0.002425944898277521 +karman_re100,sr,113,45.2,force,lower_fy,-0.004589601885527372 +karman_re100,sr,114,45.6,force,front_fx,0.0013330992078408599 +karman_re100,sr,114,45.6,force,front_fy,-0.0020673361141234636 +karman_re100,sr,114,45.6,force,upper_fx,-0.00246912962757051 +karman_re100,sr,114,45.6,force,upper_fy,0.0038050541188567877 +karman_re100,sr,114,45.6,force,lower_fx,0.0013507131952792406 +karman_re100,sr,114,45.6,force,lower_fy,-0.004969208966940641 +karman_re100,sr,115,46.0,force,front_fx,-0.00035528253647498786 +karman_re100,sr,115,46.0,force,front_fy,-0.0029826799873262644 +karman_re100,sr,115,46.0,force,upper_fx,-0.00010858156019821763 +karman_re100,sr,115,46.0,force,upper_fy,0.0049318838864564896 +karman_re100,sr,115,46.0,force,lower_fx,9.862058504950255e-05 +karman_re100,sr,115,46.0,force,lower_fy,-0.005070485640317202 +karman_re100,sr,116,46.4,force,front_fx,-0.0009832250652834773 +karman_re100,sr,116,46.4,force,front_fy,-0.0034874838311225176 +karman_re100,sr,116,46.4,force,upper_fx,0.002428458770737052 +karman_re100,sr,116,46.4,force,upper_fy,0.006056617945432663 +karman_re100,sr,116,46.4,force,lower_fx,-0.001366117037832737 +karman_re100,sr,116,46.4,force,lower_fy,-0.004643213003873825 +karman_re100,sr,117,46.8,force,front_fx,-0.00047434671432711184 +karman_re100,sr,117,46.8,force,front_fy,-0.0036953669041395187 +karman_re100,sr,117,46.8,force,upper_fx,0.004592818208038807 +karman_re100,sr,117,46.8,force,upper_fy,0.006390788126736879 +karman_re100,sr,117,46.8,force,lower_fx,-0.0032576792873442173 +karman_re100,sr,117,46.8,force,lower_fy,-0.003749242052435875 +karman_re100,sr,118,47.2,force,front_fx,0.001200950238853693 +karman_re100,sr,118,47.2,force,front_fy,-0.003624830162152648 +karman_re100,sr,118,47.2,force,upper_fx,0.0055550141260027885 +karman_re100,sr,118,47.2,force,upper_fy,0.0061866771429777145 +karman_re100,sr,118,47.2,force,lower_fx,-0.0055886683985590935 +karman_re100,sr,118,47.2,force,lower_fy,-0.002584486035630107 +karman_re100,sr,119,47.6,force,front_fx,0.003622600343078375 +karman_re100,sr,119,47.6,force,front_fy,-0.003069619182497263 +karman_re100,sr,119,47.6,force,upper_fx,0.005140768829733133 +karman_re100,sr,119,47.6,force,upper_fy,0.005648760590702295 +karman_re100,sr,119,47.6,force,lower_fx,-0.00804542750120163 +karman_re100,sr,119,47.6,force,lower_fy,-0.0017196489498019218 +karman_re100,sr,120,48.0,force,front_fx,0.005209076218307018 +karman_re100,sr,120,48.0,force,front_fy,-0.0020506717264652252 +karman_re100,sr,120,48.0,force,upper_fx,0.004134938586503267 +karman_re100,sr,120,48.0,force,upper_fy,0.004839927889406681 +karman_re100,sr,120,48.0,force,lower_fx,-0.009333980269730091 +karman_re100,sr,120,48.0,force,lower_fy,-0.002028173767030239 +karman_re100,sr,121,48.4,force,front_fx,0.00502016069367528 +karman_re100,sr,121,48.4,force,front_fy,-0.0006117033772170544 +karman_re100,sr,121,48.4,force,upper_fx,0.0032692032400518656 +karman_re100,sr,121,48.4,force,upper_fy,0.004417357500642538 +karman_re100,sr,121,48.4,force,lower_fx,-0.007990897633135319 +karman_re100,sr,121,48.4,force,lower_fy,-0.0030560940504074097 +karman_re100,sr,122,48.8,force,front_fx,0.0035284426994621754 +karman_re100,sr,122,48.8,force,front_fy,0.0007903025252744555 +karman_re100,sr,122,48.8,force,upper_fx,0.0024403876159340143 +karman_re100,sr,122,48.8,force,upper_fy,0.004561439622193575 +karman_re100,sr,122,48.8,force,lower_fx,-0.0051595233380794525 +karman_re100,sr,122,48.8,force,lower_fy,-0.0033942279405891895 +karman_re100,sr,123,49.2,force,front_fx,0.0014075529761612415 +karman_re100,sr,123,49.2,force,front_fy,0.0020265623461455107 +karman_re100,sr,123,49.2,force,upper_fx,0.0013866196386516094 +karman_re100,sr,123,49.2,force,upper_fy,0.0049363295547664165 +karman_re100,sr,123,49.2,force,lower_fx,-0.002570489654317498 +karman_re100,sr,123,49.2,force,lower_fy,-0.0037406068295240402 +karman_re100,sr,124,49.6,force,front_fx,-0.00030246732058003545 +karman_re100,sr,124,49.6,force,front_fy,0.002961634425446391 +karman_re100,sr,124,49.6,force,upper_fx,0.0001584124256623909 +karman_re100,sr,124,49.6,force,upper_fy,0.005066244397312403 +karman_re100,sr,124,49.6,force,lower_fx,-0.00019271374912932515 +karman_re100,sr,124,49.6,force,lower_fy,-0.00488886795938015 +karman_re100,sr,125,50.0,force,front_fx,-0.0009724156698212028 +karman_re100,sr,125,50.0,force,front_fy,0.0034807114861905575 +karman_re100,sr,125,50.0,force,upper_fx,-0.0012914538383483887 +karman_re100,sr,125,50.0,force,upper_fy,0.004682352300733328 +karman_re100,sr,125,50.0,force,lower_fx,0.0023541587870568037 +karman_re100,sr,125,50.0,force,lower_fy,-0.006059291772544384 +karman_re100,sr,126,50.4,force,front_fx,-0.0005144994938746095 +karman_re100,sr,126,50.4,force,front_fy,0.0036933450028300285 +karman_re100,sr,126,50.4,force,upper_fx,-0.0031836030539125204 +karman_re100,sr,126,50.4,force,upper_fy,0.0038074073381721973 +karman_re100,sr,126,50.4,force,lower_fx,0.004535182844847441 +karman_re100,sr,126,50.4,force,lower_fy,-0.006415285635739565 +karman_re100,sr,127,50.8,force,front_fx,0.0011151814833283424 +karman_re100,sr,127,50.8,force,front_fy,0.00363546097651124 +karman_re100,sr,127,50.8,force,upper_fx,-0.005517053417861462 +karman_re100,sr,127,50.8,force,upper_fy,0.00262770289555192 +karman_re100,sr,127,50.8,force,lower_fx,0.005528640002012253 +karman_re100,sr,127,50.8,force,lower_fy,-0.006197077687829733 +karman_re100,sr,128,51.2,force,front_fx,0.0035375093575567007 +karman_re100,sr,128,51.2,force,front_fy,0.00309742521494627 +karman_re100,sr,128,51.2,force,upper_fx,-0.007980397902429104 +karman_re100,sr,128,51.2,force,upper_fy,0.0017156957183033228 +karman_re100,sr,128,51.2,force,lower_fx,0.00516038341447711 +karman_re100,sr,128,51.2,force,lower_fy,-0.005658311769366264 +karman_re100,sr,129,51.6,force,front_fx,0.005191984586417675 +karman_re100,sr,129,51.6,force,front_fy,0.002094147726893425 +karman_re100,sr,129,51.6,force,upper_fx,-0.009329394437372684 +karman_re100,sr,129,51.6,force,upper_fy,0.0019844304770231247 +karman_re100,sr,129,51.6,force,lower_fx,0.004175604321062565 +karman_re100,sr,129,51.6,force,lower_fy,-0.004856172949075699 +karman_re100,sr,130,52.0,force,front_fx,0.005062298849225044 +karman_re100,sr,130,52.0,force,front_fy,0.0006613327423110604 +karman_re100,sr,130,52.0,force,upper_fx,-0.008061395026743412 +karman_re100,sr,130,52.0,force,upper_fy,0.0030524933245033026 +karman_re100,sr,130,52.0,force,lower_fx,0.0033144208136945963 +karman_re100,sr,130,52.0,force,lower_fy,-0.004428008571267128 +karman_re100,sr,131,52.4,force,front_fx,0.003609397215768695 +karman_re100,sr,131,52.4,force,front_fy,-0.0007524472312070429 +karman_re100,sr,131,52.4,force,upper_fx,-0.005237297620624304 +karman_re100,sr,131,52.4,force,upper_fy,0.0034262079279869795 +karman_re100,sr,131,52.4,force,lower_fx,0.0024828300811350346 +karman_re100,sr,131,52.4,force,lower_fy,-0.004568340256810188 +karman_re100,sr,132,52.8,force,front_fx,0.0014709339011460543 +karman_re100,sr,132,52.8,force,front_fy,-0.001987533876672387 +karman_re100,sr,132,52.8,force,upper_fx,-0.0026510932948440313 +karman_re100,sr,132,52.8,force,upper_fy,0.0037247571162879467 +karman_re100,sr,132,52.8,force,lower_fx,0.00142046925611794 +karman_re100,sr,132,52.8,force,lower_fy,-0.004936926532536745 +karman_re100,sr,133,53.2,force,front_fx,-0.000270553573500365 +karman_re100,sr,133,53.2,force,front_fy,-0.0029327115043997765 +karman_re100,sr,133,53.2,force,upper_fx,-0.00029364952933974564 +karman_re100,sr,133,53.2,force,upper_fy,0.004813740029931068 +karman_re100,sr,133,53.2,force,lower_fx,0.00018697287305258214 +karman_re100,sr,133,53.2,force,lower_fy,-0.005062076263129711 +karman_re100,sr,134,53.6,force,front_fx,-0.0009684134856797755 +karman_re100,sr,134,53.6,force,front_fy,-0.0034720376133918762 +karman_re100,sr,134,53.6,force,upper_fx,0.0022540793288499117 +karman_re100,sr,134,53.6,force,upper_fy,0.006001106929033995 +karman_re100,sr,134,53.6,force,lower_fx,-0.0012376633239910007 +karman_re100,sr,134,53.6,force,lower_fy,-0.004683945327997208 +karman_re100,sr,135,54.0,force,front_fx,-0.0005453437333926558 +karman_re100,sr,135,54.0,force,front_fy,-0.0036905603483319283 +karman_re100,sr,135,54.0,force,upper_fx,0.0044826543889939785 +karman_re100,sr,135,54.0,force,upper_fy,0.00641040550544858 +karman_re100,sr,135,54.0,force,lower_fx,-0.0030942545272409916 +karman_re100,sr,135,54.0,force,lower_fy,-0.0038360871840268373 +karman_re100,sr,136,54.4,force,front_fx,0.0010426744120195508 +karman_re100,sr,136,54.4,force,front_fy,-0.0036450421903282404 +karman_re100,sr,136,54.4,force,upper_fx,0.005532929673790932 +karman_re100,sr,136,54.4,force,upper_fy,0.006226846016943455 +karman_re100,sr,136,54.4,force,lower_fx,-0.005410683341324329 +karman_re100,sr,136,54.4,force,lower_fy,-0.0026838378980755806 +karman_re100,sr,137,54.8,force,front_fx,0.0034473466221243143 +karman_re100,sr,137,54.8,force,front_fy,-0.003114779479801655 +karman_re100,sr,137,54.8,force,upper_fx,0.005189935676753521 +karman_re100,sr,137,54.8,force,upper_fy,0.005701423157006502 +karman_re100,sr,137,54.8,force,lower_fx,-0.007894969545304775 +karman_re100,sr,137,54.8,force,lower_fy,-0.0017498328816145658 +karman_re100,sr,138,55.2,force,front_fx,0.005154004320502281 +karman_re100,sr,138,55.2,force,front_fy,-0.002127139363437891 +karman_re100,sr,138,55.2,force,upper_fx,0.004193941131234169 +karman_re100,sr,138,55.2,force,upper_fy,0.004882995039224625 +karman_re100,sr,138,55.2,force,lower_fx,-0.009332648478448391 +karman_re100,sr,138,55.2,force,lower_fy,-0.0019444781355559826 +karman_re100,sr,139,55.6,force,front_fx,0.005083075724542141 +karman_re100,sr,139,55.6,force,front_fy,-0.0007152120815590024 +karman_re100,sr,139,55.6,force,upper_fx,0.003327596466988325 +karman_re100,sr,139,55.6,force,upper_fy,0.004420189186930656 +karman_re100,sr,139,55.6,force,lower_fx,-0.008165257051587105 +karman_re100,sr,139,55.6,force,lower_fy,-0.0029931790195405483 +karman_re100,sr,140,56.0,force,front_fx,0.0036773919127881527 +karman_re100,sr,140,56.0,force,front_fy,0.0007159507949836552 +karman_re100,sr,140,56.0,force,upper_fx,0.002516108565032482 +karman_re100,sr,140,56.0,force,upper_fy,0.004543837159872055 +karman_re100,sr,140,56.0,force,lower_fx,-0.005344512406736612 +karman_re100,sr,140,56.0,force,lower_fy,-0.0034108920954167843 +karman_re100,sr,141,56.4,force,front_fx,0.001557095441967249 +karman_re100,sr,141,56.4,force,front_fy,0.0019528098637238145 +karman_re100,sr,141,56.4,force,upper_fx,0.0014740595361217856 +karman_re100,sr,141,56.4,force,upper_fy,0.0049283429980278015 +karman_re100,sr,141,56.4,force,lower_fx,-0.002717738039791584 +karman_re100,sr,141,56.4,force,lower_fy,-0.0037221249658614397 +karman_re100,sr,142,56.8,force,front_fx,-0.00021965369523968548 +karman_re100,sr,142,56.8,force,front_fy,0.0029087886214256287 +karman_re100,sr,142,56.8,force,upper_fx,0.00024038154515437782 +karman_re100,sr,142,56.8,force,upper_fy,0.005082688760012388 +karman_re100,sr,142,56.8,force,lower_fx,-0.00035576842492446303 +karman_re100,sr,142,56.8,force,lower_fy,-0.004801552277058363 +karman_re100,sr,143,57.2,force,front_fx,-0.000967291125562042 +karman_re100,sr,143,57.2,force,front_fy,0.003454138059169054 +karman_re100,sr,143,57.2,force,upper_fx,-0.001193908043205738 +karman_re100,sr,143,57.2,force,upper_fy,0.004719614516943693 +karman_re100,sr,143,57.2,force,lower_fx,0.002172849839553237 +karman_re100,sr,143,57.2,force,lower_fy,-0.005984908901154995 +karman_re100,sr,144,57.6,force,front_fx,-0.0005838244687765837 +karman_re100,sr,144,57.6,force,front_fy,0.003684514667838812 +karman_re100,sr,144,57.6,force,upper_fx,-0.003045998513698578 +karman_re100,sr,144,57.6,force,upper_fy,0.0038628021720796824 +karman_re100,sr,144,57.6,force,lower_fx,0.0044127716682851315 +karman_re100,sr,144,57.6,force,lower_fy,-0.006394785828888416 +karman_re100,sr,145,58.0,force,front_fx,0.0009763871203176677 +karman_re100,sr,145,58.0,force,front_fy,0.0036520445719361305 +karman_re100,sr,145,58.0,force,upper_fx,-0.005341668147593737 +karman_re100,sr,145,58.0,force,upper_fy,0.0027012964710593224 +karman_re100,sr,145,58.0,force,lower_fx,0.005517633631825447 +karman_re100,sr,145,58.0,force,lower_fy,-0.006214533932507038 +karman_re100,sr,146,58.4,force,front_fx,0.0033815682400017977 +karman_re100,sr,146,58.4,force,front_fy,0.0031510316766798496 +karman_re100,sr,146,58.4,force,upper_fx,-0.007819762453436852 +karman_re100,sr,146,58.4,force,upper_fy,0.001758590922690928 +karman_re100,sr,146,58.4,force,lower_fx,0.005231148563325405 +karman_re100,sr,146,58.4,force,lower_fy,-0.005717257969081402 +karman_re100,sr,147,58.8,force,front_fx,0.00513900350779295 +karman_re100,sr,147,58.8,force,front_fy,0.0021812855266034603 +karman_re100,sr,147,58.8,force,upper_fx,-0.009314007125794888 +karman_re100,sr,147,58.8,force,upper_fy,0.0019357581622898579 +karman_re100,sr,147,58.8,force,lower_fx,0.0042450702749192715 +karman_re100,sr,147,58.8,force,lower_fy,-0.004913756158202887 +karman_re100,sr,148,59.2,force,front_fx,0.005116188433021307 +karman_re100,sr,148,59.2,force,front_fy,0.0007703607552684844 +karman_re100,sr,148,59.2,force,upper_fx,-0.008236452005803585 +karman_re100,sr,148,59.2,force,upper_fy,0.002983316546306014 +karman_re100,sr,148,59.2,force,lower_fx,0.0033609746024012566 +karman_re100,sr,148,59.2,force,lower_fy,-0.004437220748513937 +karman_re100,sr,149,59.6,force,front_fx,0.003741997526958585 +karman_re100,sr,149,59.6,force,front_fy,-0.0006531932740472257 +karman_re100,sr,149,59.6,force,upper_fx,-0.005453529302030802 +karman_re100,sr,149,59.6,force,upper_fy,0.0033912688959389925 +karman_re100,sr,149,59.6,force,lower_fx,0.002537597669288516 +karman_re100,sr,149,59.6,force,lower_fy,-0.004535275511443615 +karman_re100,sr,150,60.0,force,front_fx,0.0016234000213444233 +karman_re100,sr,150,60.0,force,front_fy,-0.001906270277686417 +karman_re100,sr,150,60.0,force,upper_fx,-0.0028285514563322067 +karman_re100,sr,150,60.0,force,upper_fy,0.0036594984121620655 +karman_re100,sr,150,60.0,force,lower_fx,0.0015041218139231205 +karman_re100,sr,150,60.0,force,lower_fy,-0.0049022710882127285 +karman_re100,sr,151,60.4,force,front_fx,-0.0001704025489743799 +karman_re100,sr,151,60.4,force,front_fy,-0.0028826810885220766 +karman_re100,sr,151,60.4,force,upper_fx,-0.00046003295574337244 +karman_re100,sr,151,60.4,force,upper_fy,0.00473129702731967 +karman_re100,sr,151,60.4,force,lower_fx,0.00028978395857848227 +karman_re100,sr,151,60.4,force,lower_fy,-0.0050696940161287785 +karman_re100,sr,152,60.8,force,front_fx,-0.0009530081879347563 +karman_re100,sr,152,60.8,force,front_fy,-0.0034433507826179266 +karman_re100,sr,152,60.8,force,upper_fx,0.002083438215777278 +karman_re100,sr,152,60.8,force,upper_fy,0.005965315271168947 +karman_re100,sr,152,60.8,force,lower_fx,-0.0011166720651090145 +karman_re100,sr,152,60.8,force,lower_fy,-0.0047421567142009735 +karman_re100,sr,153,61.2,force,front_fx,-0.0006167200044728816 +karman_re100,sr,153,61.2,force,front_fy,-0.003680731635540724 +karman_re100,sr,153,61.2,force,upper_fx,0.004355504643172026 +karman_re100,sr,153,61.2,force,upper_fy,0.0064209564588963985 +karman_re100,sr,153,61.2,force,lower_fx,-0.002953392919152975 +karman_re100,sr,153,61.2,force,lower_fy,-0.003922548145055771 +karman_re100,sr,154,61.6,force,front_fx,0.0008907934534363449 +karman_re100,sr,154,61.6,force,front_fy,-0.0036604467313736677 +karman_re100,sr,154,61.6,force,upper_fx,0.005495838355273008 +karman_re100,sr,154,61.6,force,upper_fy,0.006244944874197245 +karman_re100,sr,154,61.6,force,lower_fx,-0.005246512126177549 +karman_re100,sr,154,61.6,force,lower_fy,-0.00276392069645226 +karman_re100,sr,155,62.0,force,front_fx,0.003278584685176611 +karman_re100,sr,155,62.0,force,front_fy,-0.003173098200932145 +karman_re100,sr,155,62.0,force,upper_fx,0.005243305116891861 +karman_re100,sr,155,62.0,force,upper_fy,0.005740353371948004 +karman_re100,sr,155,62.0,force,lower_fx,-0.007738686166703701 +karman_re100,sr,155,62.0,force,lower_fy,-0.0017772373976185918 +karman_re100,sr,156,62.4,force,front_fx,0.005093896295875311 +karman_re100,sr,156,62.4,force,front_fy,-0.0022224693093448877 +karman_re100,sr,156,62.4,force,upper_fx,0.0042702509090304375 +karman_re100,sr,156,62.4,force,upper_fy,0.004932365380227566 +karman_re100,sr,156,62.4,force,lower_fx,-0.009299291297793388 +karman_re100,sr,156,62.4,force,lower_fy,-0.0018831586930900812 +karman_re100,sr,157,62.8,force,front_fx,0.0051416377536952496 +karman_re100,sr,157,62.8,force,front_fy,-0.000818119733594358 +karman_re100,sr,157,62.8,force,upper_fx,0.0033937033731490374 +karman_re100,sr,157,62.8,force,upper_fy,0.004438999108970165 +karman_re100,sr,157,62.8,force,lower_fx,-0.008310324512422085 +karman_re100,sr,157,62.8,force,lower_fy,-0.002948505338281393 +karman_re100,sr,158,63.2,force,front_fx,0.003808253677561879 +karman_re100,sr,158,63.2,force,front_fy,0.0006133930291980505 +karman_re100,sr,158,63.2,force,upper_fx,0.002580002648755908 +karman_re100,sr,158,63.2,force,upper_fy,0.004531991668045521 +karman_re100,sr,158,63.2,force,lower_fx,-0.005533594638109207 +karman_re100,sr,158,63.2,force,lower_fy,-0.0034203531686216593 +karman_re100,sr,159,63.6,force,front_fx,0.0016973401652649045 +karman_re100,sr,159,63.6,force,front_fy,0.0018721981905400753 +karman_re100,sr,159,63.6,force,upper_fx,0.0015467912890017033 +karman_re100,sr,159,63.6,force,upper_fy,0.004906334448605776 +karman_re100,sr,159,63.6,force,lower_fx,-0.0028867749497294426 +karman_re100,sr,159,63.6,force,lower_fy,-0.0036735939793288708 +karman_re100,sr,160,64.0,force,front_fx,-0.00013529317220672965 +karman_re100,sr,160,64.0,force,front_fy,0.0028534522280097008 +karman_re100,sr,160,64.0,force,upper_fx,0.00032001681393012404 +karman_re100,sr,160,64.0,force,upper_fy,0.005077230278402567 +karman_re100,sr,160,64.0,force,lower_fx,-0.0005350081482902169 +karman_re100,sr,160,64.0,force,lower_fy,-0.004687754902988672 +karman_re100,sr,161,64.4,force,front_fx,-0.0009511403040960431 +karman_re100,sr,161,64.4,force,front_fy,0.00342809921130538 +karman_re100,sr,161,64.4,force,upper_fx,-0.0010818752925843 +karman_re100,sr,161,64.4,force,upper_fy,0.0047482387162745 +karman_re100,sr,161,64.4,force,lower_fx,0.0019893283024430275 +karman_re100,sr,161,64.4,force,lower_fy,-0.005903949029743671 +karman_re100,sr,162,64.8,force,front_fx,-0.000642886443529278 +karman_re100,sr,162,64.8,force,front_fy,0.0036774203181266785 +karman_re100,sr,162,64.8,force,upper_fx,-0.002888585440814495 +karman_re100,sr,162,64.8,force,upper_fy,0.0039331247098743916 +karman_re100,sr,162,64.8,force,lower_fx,0.00429245550185442 +karman_re100,sr,162,64.8,force,lower_fy,-0.0063934726640582085 +karman_re100,sr,163,65.2,force,front_fx,0.0008326896349899471 +karman_re100,sr,163,65.2,force,front_fy,0.0036694719456136227 +karman_re100,sr,163,65.2,force,upper_fx,-0.005159139633178711 +karman_re100,sr,163,65.2,force,upper_fy,0.00279626133851707 +karman_re100,sr,163,65.2,force,lower_fx,0.00549462903290987 +karman_re100,sr,163,65.2,force,lower_fy,-0.006250359583646059 +karman_re100,sr,164,65.6,force,front_fx,0.003205709159374237 +karman_re100,sr,164,65.6,force,front_fy,0.003201304702088237 +karman_re100,sr,164,65.6,force,upper_fx,-0.007657419424504042 +karman_re100,sr,164,65.6,force,upper_fy,0.0018066784832626581 +karman_re100,sr,164,65.6,force,lower_fx,0.005284826271235943 +karman_re100,sr,164,65.6,force,lower_fy,-0.005773322191089392 +karman_re100,sr,165,66.0,force,front_fx,0.005068751517683268 +karman_re100,sr,165,66.0,force,front_fy,0.002269299468025565 +karman_re100,sr,165,66.0,force,upper_fx,-0.00929195061326027 +karman_re100,sr,165,66.0,force,upper_fy,0.0018682107329368591 +karman_re100,sr,165,66.0,force,lower_fx,0.004302159417420626 +karman_re100,sr,165,66.0,force,lower_fy,-0.004966953303664923 +karman_re100,sr,166,66.4,force,front_fx,0.005161075387150049 +karman_re100,sr,166,66.4,force,front_fy,0.000873832032084465 +karman_re100,sr,166,66.4,force,upper_fx,-0.008406780660152435 +karman_re100,sr,166,66.4,force,upper_fy,0.0029023110400885344 +karman_re100,sr,166,66.4,force,lower_fx,0.003409598721191287 +karman_re100,sr,166,66.4,force,lower_fy,-0.004441956989467144 +karman_re100,sr,167,66.8,force,front_fx,0.003876335686072707 +karman_re100,sr,167,66.8,force,front_fy,-0.0005618137656711042 +karman_re100,sr,167,66.8,force,upper_fx,-0.00565640814602375 +karman_re100,sr,167,66.8,force,upper_fy,0.0033836709335446358 +karman_re100,sr,167,66.8,force,lower_fx,0.00260375440120697 +karman_re100,sr,167,66.8,force,lower_fy,-0.004508243873715401 +karman_re100,sr,168,67.2,force,front_fx,0.001781216822564602 +karman_re100,sr,168,67.2,force,front_fy,-0.0018299025250598788 +karman_re100,sr,168,67.2,force,upper_fx,-0.002982823643833399 +karman_re100,sr,168,67.2,force,upper_fy,0.003639314090833068 +karman_re100,sr,168,67.2,force,lower_fx,0.0015946143539622426 +karman_re100,sr,168,67.2,force,lower_fy,-0.00488426024094224 +karman_re100,sr,169,67.6,force,front_fx,-7.441198249580339e-05 +karman_re100,sr,169,67.6,force,front_fy,-0.002829419681802392 +karman_re100,sr,169,67.6,force,upper_fx,-0.0006133213173598051 +karman_re100,sr,169,67.6,force,upper_fy,0.004661909304559231 +karman_re100,sr,169,67.6,force,lower_fx,0.0003809070331044495 +karman_re100,sr,169,67.6,force,lower_fy,-0.00508642615750432 +karman_re100,sr,170,68.0,force,front_fx,-0.000937723380047828 +karman_re100,sr,170,68.0,force,front_fy,-0.0034149917773902416 +karman_re100,sr,170,68.0,force,upper_fx,0.0019072005525231361 +karman_re100,sr,170,68.0,force,upper_fy,0.005901840981096029 +karman_re100,sr,170,68.0,force,lower_fx,-0.0010176142677664757 +karman_re100,sr,170,68.0,force,lower_fy,-0.004788962192833424 +karman_re100,sr,171,68.4,force,front_fx,-0.0006797427195124328 +karman_re100,sr,171,68.4,force,front_fy,-0.0036696854513138533 +karman_re100,sr,171,68.4,force,upper_fx,0.004221108742058277 +karman_re100,sr,171,68.4,force,upper_fy,0.0064020114950835705 +karman_re100,sr,171,68.4,force,lower_fx,-0.002825093222782016 +karman_re100,sr,171,68.4,force,lower_fy,-0.003983516711741686 +karman_re100,sr,172,68.8,force,front_fx,0.000754546548705548 +karman_re100,sr,172,68.8,force,front_fy,-0.003673745784908533 +karman_re100,sr,172,68.8,force,upper_fx,0.005464131943881512 +karman_re100,sr,172,68.8,force,upper_fy,0.006252164952456951 +karman_re100,sr,172,68.8,force,lower_fx,-0.005083778873085976 +karman_re100,sr,172,68.8,force,lower_fy,-0.0028330490458756685 +karman_re100,sr,173,69.2,force,front_fx,0.003118372056633234 +karman_re100,sr,173,69.2,force,front_fy,-0.0032239905558526516 +karman_re100,sr,173,69.2,force,upper_fx,0.005308125633746386 +karman_re100,sr,173,69.2,force,upper_fy,0.005785235203802586 +karman_re100,sr,173,69.2,force,lower_fx,-0.00757375406101346 +karman_re100,sr,173,69.2,force,lower_fy,-0.001816636067815125 +karman_re100,sr,174,69.6,force,front_fx,0.00503426743671298 +karman_re100,sr,174,69.6,force,front_fy,-0.0023041607346385717 +karman_re100,sr,174,69.6,force,upper_fx,0.004348096437752247 +karman_re100,sr,174,69.6,force,upper_fy,0.0049927919171750546 +karman_re100,sr,174,69.6,force,lower_fx,-0.00925722997635603 +karman_re100,sr,174,69.6,force,lower_fy,-0.0018458045087754726 +karman_re100,sr,175,70.0,force,front_fx,0.005189658608287573 +karman_re100,sr,175,70.0,force,front_fy,-0.0009238725760951638 +karman_re100,sr,175,70.0,force,upper_fx,0.0034491210244596004 +karman_re100,sr,175,70.0,force,upper_fy,0.004459261428564787 +karman_re100,sr,175,70.0,force,lower_fx,-0.008461853489279747 +karman_re100,sr,175,70.0,force,lower_fy,-0.0028963375370949507 +karman_re100,sr,176,70.4,force,front_fx,0.003933614585548639 +karman_re100,sr,176,70.4,force,front_fy,0.0005111016798764467 +karman_re100,sr,176,70.4,force,upper_fx,0.0026343027129769325 +karman_re100,sr,176,70.4,force,upper_fy,0.004509414546191692 +karman_re100,sr,176,70.4,force,lower_fx,-0.005744625348597765 +karman_re100,sr,176,70.4,force,lower_fy,-0.00339425983838737 +karman_re100,sr,177,70.8,force,front_fx,0.0018450163770467043 +karman_re100,sr,177,70.8,force,front_fy,0.0017863655230030417 +karman_re100,sr,177,70.8,force,upper_fx,0.0016213367925956845 +karman_re100,sr,177,70.8,force,upper_fy,0.004870587028563023 +karman_re100,sr,177,70.8,force,lower_fx,-0.0030743172392249107 +karman_re100,sr,177,70.8,force,lower_fy,-0.003604492638260126 +karman_re100,sr,178,71.2,force,front_fx,-3.0333898394019343e-05 +karman_re100,sr,178,71.2,force,front_fy,0.0027985256165266037 +karman_re100,sr,178,71.2,force,upper_fx,0.0004143318219576031 +karman_re100,sr,178,71.2,force,upper_fy,0.005070410203188658 +karman_re100,sr,178,71.2,force,lower_fx,-0.0007145690033212304 +karman_re100,sr,178,71.2,force,lower_fy,-0.004583363886922598 +karman_re100,sr,179,71.6,force,front_fx,-0.0009243453969247639 +karman_re100,sr,179,71.6,force,front_fy,0.0034084555227309465 +karman_re100,sr,179,71.6,force,upper_fx,-0.000958200020249933 +karman_re100,sr,179,71.6,force,upper_fy,0.00479245325550437 +karman_re100,sr,179,71.6,force,lower_fx,0.0018109052907675505 +karman_re100,sr,179,71.6,force,lower_fy,-0.0058493525721132755 +karman_re100,sr,180,72.0,force,front_fx,-0.0007037550094537437 +karman_re100,sr,180,72.0,force,front_fy,0.0036680432967841625 +karman_re100,sr,180,72.0,force,upper_fx,-0.002735928865149617 +karman_re100,sr,180,72.0,force,upper_fy,0.0040191467851400375 +karman_re100,sr,180,72.0,force,lower_fx,0.004160853568464518 +karman_re100,sr,180,72.0,force,lower_fy,-0.006405738182365894 +karman_re100,sr,181,72.4,force,front_fx,0.0006833297666162252 +karman_re100,sr,181,72.4,force,front_fy,0.0036833432968705893 +karman_re100,sr,181,72.4,force,upper_fx,-0.004986397922039032 +karman_re100,sr,181,72.4,force,upper_fy,0.002891401993110776 +karman_re100,sr,181,72.4,force,lower_fx,0.005449388641864061 +karman_re100,sr,181,72.4,force,lower_fy,-0.006279511842876673 +karman_re100,sr,182,72.8,force,front_fx,0.003022772027179599 +karman_re100,sr,182,72.8,force,front_fy,0.0032481742091476917 +karman_re100,sr,182,72.8,force,upper_fx,-0.007491219788789749 +karman_re100,sr,182,72.8,force,upper_fy,0.0018478869460523129 +karman_re100,sr,182,72.8,force,lower_fx,0.005324844270944595 +karman_re100,sr,182,72.8,force,lower_fy,-0.005817918106913567 +karman_re100,sr,183,73.2,force,front_fx,0.004988991189748049 +karman_re100,sr,183,73.2,force,front_fy,0.002345205517485738 +karman_re100,sr,183,73.2,force,upper_fx,-0.009245396591722965 +karman_re100,sr,183,73.2,force,upper_fy,0.0018053650856018066 +karman_re100,sr,183,73.2,force,lower_fx,0.004369382746517658 +karman_re100,sr,183,73.2,force,lower_fy,-0.00501570338383317 +karman_re100,sr,184,73.6,force,front_fx,0.005208236631006002 +karman_re100,sr,184,73.6,force,front_fy,0.0009685924742370844 +karman_re100,sr,184,73.6,force,upper_fx,-0.008553529158234596 +karman_re100,sr,184,73.6,force,upper_fy,0.0028321919962763786 +karman_re100,sr,184,73.6,force,lower_fx,0.0034719808027148247 +karman_re100,sr,184,73.6,force,lower_fy,-0.004458846058696508 +karman_re100,sr,185,74.0,force,front_fx,0.004006471484899521 +karman_re100,sr,185,74.0,force,front_fy,-0.00048036928637884557 +karman_re100,sr,185,74.0,force,upper_fx,-0.005845061503350735 +karman_re100,sr,185,74.0,force,upper_fy,0.0034009856171905994 +karman_re100,sr,185,74.0,force,lower_fx,0.002671180060133338 +karman_re100,sr,185,74.0,force,lower_fy,-0.004495516885071993 +karman_re100,sr,186,74.4,force,front_fx,0.001930779661051929 +karman_re100,sr,186,74.4,force,front_fy,-0.0017483581323176622 +karman_re100,sr,186,74.4,force,upper_fx,-0.003140225075185299 +karman_re100,sr,186,74.4,force,upper_fy,0.003621103707700968 +karman_re100,sr,186,74.4,force,lower_fx,0.0016723142471164465 +karman_re100,sr,186,74.4,force,lower_fy,-0.004868011921644211 +karman_re100,sr,187,74.8,force,front_fx,1.9715469534276053e-05 +karman_re100,sr,187,74.8,force,front_fy,-0.0027693293523043394 +karman_re100,sr,187,74.8,force,upper_fx,-0.0007794261910021305 +karman_re100,sr,187,74.8,force,upper_fy,0.004564506467431784 +karman_re100,sr,187,74.8,force,lower_fx,0.00045941624557599425 +karman_re100,sr,187,74.8,force,lower_fy,-0.0050871227867901325 +karman_re100,sr,188,75.2,force,front_fx,-0.0009183516376651824 +karman_re100,sr,188,75.2,force,front_fy,-0.0033836462534964085 +karman_re100,sr,188,75.2,force,upper_fx,0.0017226124182343483 +karman_re100,sr,188,75.2,force,upper_fy,0.005812108516693115 +karman_re100,sr,188,75.2,force,lower_fx,-0.0009197951876558363 +karman_re100,sr,188,75.2,force,lower_fy,-0.00481494190171361 +karman_re100,sr,189,75.6,force,front_fx,-0.0007321881712414324 +karman_re100,sr,189,75.6,force,front_fy,-0.003660299116745591 +karman_re100,sr,189,75.6,force,upper_fx,0.004088531713932753 +karman_re100,sr,189,75.6,force,upper_fy,0.006379994098097086 +karman_re100,sr,189,75.6,force,lower_fx,-0.002682954305782914 +karman_re100,sr,189,75.6,force,lower_fy,-0.004040197003632784 +karman_re100,sr,190,76.0,force,front_fx,0.0006245551048777997 +karman_re100,sr,190,76.0,force,front_fy,-0.0036879742983728647 +karman_re100,sr,190,76.0,force,upper_fx,0.005433189682662487 +karman_re100,sr,190,76.0,force,upper_fy,0.006274885032325983 +karman_re100,sr,190,76.0,force,lower_fx,-0.004907578695565462 +karman_re100,sr,190,76.0,force,lower_fy,-0.0029151516500860453 +karman_re100,sr,191,76.4,force,front_fx,0.0029485917184501886 +karman_re100,sr,191,76.4,force,front_fy,-0.003276430070400238 +karman_re100,sr,191,76.4,force,upper_fx,0.005362725351005793 +karman_re100,sr,191,76.4,force,upper_fy,0.005840050056576729 +karman_re100,sr,191,76.4,force,lower_fx,-0.007404895033687353 +karman_re100,sr,191,76.4,force,lower_fy,-0.0018728504655882716 +karman_re100,sr,192,76.8,force,front_fx,0.004956481512635946 +karman_re100,sr,192,76.8,force,front_fy,-0.002383730374276638 +karman_re100,sr,192,76.8,force,upper_fx,0.004412612412124872 +karman_re100,sr,192,76.8,force,upper_fy,0.005052276886999607 +karman_re100,sr,192,76.8,force,lower_fx,-0.00921315886080265 +karman_re100,sr,192,76.8,force,lower_fy,-0.001800671685487032 +karman_re100,sr,193,77.2,force,front_fx,0.005227364134043455 +karman_re100,sr,193,77.2,force,front_fy,-0.0010292158694937825 +karman_re100,sr,193,77.2,force,upper_fx,0.0034962405916303396 +karman_re100,sr,193,77.2,force,upper_fy,0.004472360480576754 +karman_re100,sr,193,77.2,force,lower_fx,-0.00861628819257021 +karman_re100,sr,193,77.2,force,lower_fy,-0.002809694968163967 +karman_re100,sr,194,77.6,force,front_fx,0.004057547077536583 +karman_re100,sr,194,77.6,force,front_fy,0.00041813243296928704 +karman_re100,sr,194,77.6,force,upper_fx,0.002690271707251668 +karman_re100,sr,194,77.6,force,upper_fy,0.004480814561247826 +karman_re100,sr,194,77.6,force,lower_fx,-0.005959029775112867 +karman_re100,sr,194,77.6,force,lower_fy,-0.003369024023413658 +karman_re100,sr,195,78.0,force,front_fx,0.0020045763812959194 +karman_re100,sr,195,78.0,force,front_fy,0.001704325433820486 +karman_re100,sr,195,78.0,force,upper_fx,0.0017060763202607632 +karman_re100,sr,195,78.0,force,upper_fy,0.004840911366045475 +karman_re100,sr,195,78.0,force,lower_fx,-0.003237823024392128 +karman_re100,sr,195,78.0,force,lower_fy,-0.0035650019999593496 +karman_re100,sr,196,78.4,force,front_fx,7.95107043813914e-05 +karman_re100,sr,196,78.4,force,front_fy,0.002743343124166131 +karman_re100,sr,196,78.4,force,upper_fx,0.0005108881159685552 +karman_re100,sr,196,78.4,force,upper_fy,0.00507725402712822 +karman_re100,sr,196,78.4,force,lower_fx,-0.0008700935286469758 +karman_re100,sr,196,78.4,force,lower_fy,-0.00451316824182868 +karman_re100,sr,197,78.8,force,front_fx,-0.0008992246584966779 +karman_re100,sr,197,78.8,force,front_fy,0.0033723146189004183 +karman_re100,sr,197,78.8,force,upper_fx,-0.0008520837873220444 +karman_re100,sr,197,78.8,force,upper_fy,0.004840645007789135 +karman_re100,sr,197,78.8,force,lower_fx,0.001639855676330626 +karman_re100,sr,197,78.8,force,lower_fy,-0.005797272548079491 +karman_re100,sr,198,79.2,force,front_fx,-0.0007590214372612536 +karman_re100,sr,198,79.2,force,front_fy,0.0036557030398398638 +karman_re100,sr,198,79.2,force,upper_fx,-0.0026063460391014814 +karman_re100,sr,198,79.2,force,upper_fy,0.004091460257768631 +karman_re100,sr,198,79.2,force,lower_fx,0.004021506756544113 +karman_re100,sr,198,79.2,force,lower_fy,-0.006397243123501539 +karman_re100,sr,199,79.6,force,front_fx,0.0005487922462634742 +karman_re100,sr,199,79.6,force,front_fy,0.003691229270771146 +karman_re100,sr,199,79.6,force,upper_fx,-0.004829207435250282 +karman_re100,sr,199,79.6,force,upper_fy,0.002966663334518671 +karman_re100,sr,199,79.6,force,lower_fx,0.005400588735938072 +karman_re100,sr,199,79.6,force,lower_fy,-0.0062895650044083595 +karman_re100,sr,200,80.0,force,front_fx,0.002853691577911377 +karman_re100,sr,200,80.0,force,front_fy,0.0032947794534265995 +karman_re100,sr,200,80.0,force,upper_fx,-0.007326092105358839 +karman_re100,sr,200,80.0,force,upper_fy,0.0018907126504927874 +karman_re100,sr,200,80.0,force,lower_fx,0.005375085864216089 +karman_re100,sr,200,80.0,force,lower_fy,-0.005853765644133091 +karman_re100,sr,201,80.4,force,front_fx,0.00490929139778018 +karman_re100,sr,201,80.4,force,front_fy,0.002423215890303254 +karman_re100,sr,201,80.4,force,upper_fx,-0.009179197251796722 +karman_re100,sr,201,80.4,force,upper_fy,0.001768707181327045 +karman_re100,sr,201,80.4,force,lower_fx,0.004449334926903248 +karman_re100,sr,201,80.4,force,lower_fy,-0.005072280764579773 +karman_re100,sr,202,80.8,force,front_fx,0.005247998982667923 +karman_re100,sr,202,80.8,force,front_fy,0.0010773276444524527 +karman_re100,sr,202,80.8,force,upper_fx,-0.008670145645737648 +karman_re100,sr,202,80.8,force,upper_fy,0.0027828263118863106 +karman_re100,sr,202,80.8,force,lower_fx,0.0035350986290723085 +karman_re100,sr,202,80.8,force,lower_fy,-0.004484883975237608 +karman_re100,sr,203,81.2,force,front_fx,0.004118387121707201 +karman_re100,sr,203,81.2,force,front_fy,-0.00037294733920134604 +karman_re100,sr,203,81.2,force,upper_fx,-0.006044106092303991 +karman_re100,sr,203,81.2,force,upper_fy,0.003388410434126854 +karman_re100,sr,203,81.2,force,lower_fx,0.0027292773593217134 +karman_re100,sr,203,81.2,force,lower_fy,-0.004483404569327831 +karman_re100,sr,204,81.6,force,front_fx,0.002073078416287899 +karman_re100,sr,204,81.6,force,front_fy,-0.001663605566136539 +karman_re100,sr,204,81.6,force,upper_fx,-0.003321876283735037 +karman_re100,sr,204,81.6,force,upper_fy,0.003568315878510475 +karman_re100,sr,204,81.6,force,lower_fx,0.001742580090649426 +karman_re100,sr,204,81.6,force,lower_fy,-0.0048386650159955025 +karman_re100,sr,205,82.0,force,front_fx,0.0001230161142302677 +karman_re100,sr,205,82.0,force,front_fy,-0.0027100122533738613 +karman_re100,sr,205,82.0,force,upper_fx,-0.0009582850616425276 +karman_re100,sr,205,82.0,force,upper_fy,0.0044550057500600815 +karman_re100,sr,205,82.0,force,lower_fx,0.0005421409150585532 +karman_re100,sr,205,82.0,force,lower_fy,-0.005075054243206978 +karman_re100,sr,206,82.4,force,front_fx,-0.0008863799157552421 +karman_re100,sr,206,82.4,force,front_fy,-0.003356941044330597 +karman_re100,sr,206,82.4,force,upper_fx,0.001542133861221373 +karman_re100,sr,206,82.4,force,upper_fy,0.005734011996537447 +karman_re100,sr,206,82.4,force,lower_fx,-0.0008066692971624434 +karman_re100,sr,206,82.4,force,lower_fy,-0.004844738636165857 +karman_re100,sr,207,82.8,force,front_fx,-0.0007796147256158292 +karman_re100,sr,207,82.8,force,front_fy,-0.003651244333013892 +karman_re100,sr,207,82.8,force,upper_fx,0.003952634055167437 +karman_re100,sr,207,82.8,force,upper_fy,0.006379582919180393 +karman_re100,sr,207,82.8,force,lower_fx,-0.0025317890103906393 +karman_re100,sr,207,82.8,force,lower_fy,-0.0041129738092422485 +karman_re100,sr,208,83.2,force,front_fx,0.0004890817799605429 +karman_re100,sr,208,83.2,force,front_fy,-0.0036985669285058975 +karman_re100,sr,208,83.2,force,upper_fx,0.005386394448578358 +karman_re100,sr,208,83.2,force,upper_fy,0.006306475028395653 +karman_re100,sr,208,83.2,force,lower_fx,-0.004732671659439802 +karman_re100,sr,208,83.2,force,lower_fy,-0.0030126015190035105 +karman_re100,sr,209,83.6,force,front_fx,0.0027670245617628098 +karman_re100,sr,209,83.6,force,front_fy,-0.003318401053547859 +karman_re100,sr,209,83.6,force,upper_fx,0.005401123780757189 +karman_re100,sr,209,83.6,force,upper_fy,0.005887321196496487 +karman_re100,sr,209,83.6,force,lower_fx,-0.00723595917224884 +karman_re100,sr,209,83.6,force,lower_fy,-0.0019306723261252046 +karman_re100,sr,210,84.0,force,front_fx,0.004859674721956253 +karman_re100,sr,210,84.0,force,front_fy,-0.002464399440214038 +karman_re100,sr,210,84.0,force,upper_fx,0.0044767591170966625 +karman_re100,sr,210,84.0,force,upper_fy,0.0051054153591394424 +karman_re100,sr,210,84.0,force,lower_fx,-0.009154191240668297 +karman_re100,sr,210,84.0,force,lower_fy,-0.0017475357744842768 +karman_re100,sr,211,84.4,force,front_fx,0.005261548329144716 +karman_re100,sr,211,84.4,force,front_fy,-0.0011338131735101342 +karman_re100,sr,211,84.4,force,upper_fx,0.003552875015884638 +karman_re100,sr,211,84.4,force,upper_fy,0.0044882032088935375 +karman_re100,sr,211,84.4,force,lower_fx,-0.008753207512199879 +karman_re100,sr,211,84.4,force,lower_fy,-0.0027249271515756845 +karman_re100,sr,212,84.8,force,front_fx,0.004182984586805105 +karman_re100,sr,212,84.8,force,front_fy,0.00032366986852139235 +karman_re100,sr,212,84.8,force,upper_fx,0.002756294561550021 +karman_re100,sr,212,84.8,force,upper_fy,0.004464356694370508 +karman_re100,sr,212,84.8,force,lower_fx,-0.006158711388707161 +karman_re100,sr,212,84.8,force,lower_fy,-0.003367733908817172 +karman_re100,sr,213,85.2,force,front_fx,0.0021597230806946754 +karman_re100,sr,213,85.2,force,front_fy,0.0016306019388139248 +karman_re100,sr,213,85.2,force,upper_fx,0.0017901354003697634 +karman_re100,sr,213,85.2,force,upper_fy,0.004823335912078619 +karman_re100,sr,213,85.2,force,lower_fx,-0.003404018934816122 +karman_re100,sr,213,85.2,force,lower_fy,-0.003564198035746813 +karman_re100,sr,214,85.6,force,front_fx,0.00018150459800381213 +karman_re100,sr,214,85.6,force,front_fy,0.0026823801454156637 +karman_re100,sr,214,85.6,force,upper_fx,0.0005959834670647979 +karman_re100,sr,214,85.6,force,upper_fy,0.005083923228085041 +karman_re100,sr,214,85.6,force,lower_fx,-0.0010267016477882862 +karman_re100,sr,214,85.6,force,lower_fy,-0.004434342496097088 +karman_re100,sr,215,86.0,force,front_fx,-0.0008731616544537246 +karman_re100,sr,215,86.0,force,front_fy,0.0033435323275625706 +karman_re100,sr,215,86.0,force,upper_fx,-0.0007571043097414076 +karman_re100,sr,215,86.0,force,upper_fy,0.0048748524859547615 +karman_re100,sr,215,86.0,force,lower_fx,0.001457255450077355 +karman_re100,sr,215,86.0,force,lower_fy,-0.005712353158742189 +karman_re100,sr,216,86.4,force,front_fx,-0.0008082775748334825 +karman_re100,sr,216,86.4,force,front_fy,0.0036428498569875956 +karman_re100,sr,216,86.4,force,upper_fx,-0.002477515023201704 +karman_re100,sr,216,86.4,force,upper_fy,0.00414610281586647 +karman_re100,sr,216,86.4,force,lower_fx,0.00387444905936718 +karman_re100,sr,216,86.4,force,lower_fy,-0.006366063840687275 +karman_re100,sr,217,86.8,force,front_fx,0.0004253039078321308 +karman_re100,sr,217,86.8,force,front_fy,0.003701907116919756 +karman_re100,sr,217,86.8,force,upper_fx,-0.004661039914935827 +karman_re100,sr,217,86.8,force,upper_fy,0.0030405924189835787 +karman_re100,sr,217,86.8,force,lower_fx,0.005354789085686207 +karman_re100,sr,217,86.8,force,lower_fy,-0.0062991357408463955 +karman_re100,sr,218,87.2,force,front_fx,0.002685842802748084 +karman_re100,sr,218,87.2,force,front_fy,0.003340221242979169 +karman_re100,sr,218,87.2,force,upper_fx,-0.007150739897042513 +karman_re100,sr,218,87.2,force,upper_fy,0.0019477744353935122 +karman_re100,sr,218,87.2,force,lower_fx,0.0054275644943118095 +karman_re100,sr,218,87.2,force,lower_fy,-0.0058988239616155624 +karman_re100,sr,219,87.6,force,front_fx,0.0048186215572059155 +karman_re100,sr,219,87.6,force,front_fy,0.002499292604625225 +karman_re100,sr,219,87.6,force,upper_fx,-0.009111118502914906 +karman_re100,sr,219,87.6,force,upper_fy,0.0017390504945069551 +karman_re100,sr,219,87.6,force,lower_fx,0.0045237154699862 +karman_re100,sr,219,87.6,force,lower_fy,-0.005136075429618359 +karman_re100,sr,220,88.0,force,front_fx,0.005279138218611479 +karman_re100,sr,220,88.0,force,front_fy,0.0011886963620781898 +karman_re100,sr,220,88.0,force,upper_fx,-0.008805077522993088 +karman_re100,sr,220,88.0,force,upper_fy,0.0027056040707975626 +karman_re100,sr,220,88.0,force,lower_fx,0.0035878210328519344 +karman_re100,sr,220,88.0,force,lower_fy,-0.00450825085863471 +karman_re100,sr,221,88.4,force,front_fx,0.004234557971358299 +karman_re100,sr,221,88.4,force,front_fy,-0.00027648729155771434 +karman_re100,sr,221,88.4,force,upper_fx,-0.006262259557843208 +karman_re100,sr,221,88.4,force,upper_fy,0.003358737798407674 +karman_re100,sr,221,88.4,force,lower_fx,0.0027810069732367992 +karman_re100,sr,221,88.4,force,lower_fy,-0.0044602444395422935 +karman_re100,sr,222,88.8,force,front_fx,0.002230948768556118 +karman_re100,sr,222,88.8,force,front_fy,-0.0015752250328660011 +karman_re100,sr,222,88.8,force,upper_fx,-0.0035069328732788563 +karman_re100,sr,222,88.8,force,upper_fy,0.0035233916714787483 +karman_re100,sr,222,88.8,force,lower_fx,0.0018190976697951555 +karman_re100,sr,222,88.8,force,lower_fy,-0.004802703857421875 +karman_re100,sr,223,89.2,force,front_fx,0.00024032042711041868 +karman_re100,sr,223,89.2,force,front_fy,-0.002651348477229476 +karman_re100,sr,223,89.2,force,upper_fx,-0.0011247361544519663 +karman_re100,sr,223,89.2,force,upper_fy,0.004368526861071587 +karman_re100,sr,223,89.2,force,lower_fx,0.0006378926918841898 +karman_re100,sr,223,89.2,force,lower_fy,-0.005068344529718161 +karman_re100,sr,224,89.6,force,front_fx,-0.0008484016289003193 +karman_re100,sr,224,89.6,force,front_fy,-0.0033270055428147316 +karman_re100,sr,224,89.6,force,upper_fx,0.0013637547381222248 +karman_re100,sr,224,89.6,force,upper_fy,0.005672203376889229 +karman_re100,sr,224,89.6,force,lower_fx,-0.0006938359001651406 +karman_re100,sr,224,89.6,force,lower_fy,-0.004886703100055456 +karman_re100,sr,225,90.0,force,front_fx,-0.0008257110603153706 +karman_re100,sr,225,90.0,force,front_fy,-0.0036371329333633184 +karman_re100,sr,225,90.0,force,upper_fx,0.0038055796176195145 +karman_re100,sr,225,90.0,force,upper_fy,0.006376171484589577 +karman_re100,sr,225,90.0,force,lower_fx,-0.0023939942475408316 +karman_re100,sr,225,90.0,force,lower_fy,-0.004189449828118086 +karman_re100,sr,226,90.4,force,front_fx,0.000357447104761377 +karman_re100,sr,226,90.4,force,front_fy,-0.0037041816394776106 +karman_re100,sr,226,90.4,force,upper_fx,0.005323173012584448 +karman_re100,sr,226,90.4,force,upper_fy,0.0063239894807338715 +karman_re100,sr,226,90.4,force,lower_fx,-0.004570739343762398 +karman_re100,sr,226,90.4,force,lower_fy,-0.0030998236034065485 +karman_re100,sr,227,90.8,force,front_fx,0.0025874385610222816 +karman_re100,sr,227,90.8,force,front_fy,-0.0033604949712753296 +karman_re100,sr,227,90.8,force,upper_fx,0.0054360623471438885 +karman_re100,sr,227,90.8,force,upper_fy,0.005921674892306328 +karman_re100,sr,227,90.8,force,lower_fx,-0.007064661011099815 +karman_re100,sr,227,90.8,force,lower_fy,-0.0019816714338958263 +karman_re100,sr,228,91.2,force,front_fx,0.004757041111588478 +karman_re100,sr,228,91.2,force,front_fy,-0.0025345159228891134 +karman_re100,sr,228,91.2,force,upper_fx,0.004551410209387541 +karman_re100,sr,228,91.2,force,upper_fy,0.005159179680049419 +karman_re100,sr,228,91.2,force,lower_fx,-0.009072544984519482 +karman_re100,sr,228,91.2,force,lower_fy,-0.0017078012460842729 +karman_re100,sr,229,91.6,force,front_fx,0.005290836561471224 +karman_re100,sr,229,91.6,force,front_fy,-0.0012368849711492658 +karman_re100,sr,229,91.6,force,upper_fx,0.003617693204432726 +karman_re100,sr,229,91.6,force,upper_fy,0.004515395034104586 +karman_re100,sr,229,91.6,force,lower_fx,-0.008862946182489395 +karman_re100,sr,229,91.6,force,lower_fy,-0.002659020945429802 +karman_re100,sr,230,92.0,force,front_fx,0.004293529782444239 +karman_re100,sr,230,92.0,force,front_fy,0.00023168310872279108 +karman_re100,sr,230,92.0,force,upper_fx,0.002818061038851738 +karman_re100,sr,230,92.0,force,upper_fy,0.004456253722310066 +karman_re100,sr,230,92.0,force,lower_fx,-0.006353526841849089 +karman_re100,sr,230,92.0,force,lower_fy,-0.00336819002404809 +karman_re100,sr,231,92.4,force,front_fx,0.0023093316704034805 +karman_re100,sr,231,92.4,force,front_fy,0.001536875613965094 +karman_re100,sr,231,92.4,force,upper_fx,0.0018628820544108748 +karman_re100,sr,231,92.4,force,upper_fy,0.004800381138920784 +karman_re100,sr,231,92.4,force,lower_fx,-0.003577772295102477 +karman_re100,sr,231,92.4,force,lower_fy,-0.003537375247105956 +karman_re100,sr,232,92.8,force,front_fx,0.00029020060901530087 +karman_re100,sr,232,92.8,force,front_fy,0.0026172283105552197 +karman_re100,sr,232,92.8,force,upper_fx,0.0006751743494533002 +karman_re100,sr,232,92.8,force,upper_fy,0.005073705222457647 +karman_re100,sr,232,92.8,force,lower_fx,-0.0011990988859906793 +karman_re100,sr,232,92.8,force,lower_fy,-0.004336515441536903 +karman_re100,sr,233,93.2,force,front_fx,-0.00083509786054492 +karman_re100,sr,233,93.2,force,front_fy,0.003307826817035675 +karman_re100,sr,233,93.2,force,upper_fx,-0.0006565546500496566 +karman_re100,sr,233,93.2,force,upper_fy,0.004896793980151415 +karman_re100,sr,233,93.2,force,lower_fx,0.001268895692192018 +karman_re100,sr,233,93.2,force,lower_fy,-0.005620226263999939 +karman_re100,sr,234,93.6,force,front_fx,-0.0008456326904706657 +karman_re100,sr,234,93.6,force,front_fy,0.0036331848241388798 +karman_re100,sr,234,93.6,force,upper_fx,-0.002334744669497013 +karman_re100,sr,234,93.6,force,upper_fy,0.004206457640975714 +karman_re100,sr,234,93.6,force,lower_fx,0.003727969713509083 +karman_re100,sr,234,93.6,force,lower_fy,-0.00634548906236887 +karman_re100,sr,235,94.0,force,front_fx,0.0003032479144167155 +karman_re100,sr,235,94.0,force,front_fy,0.0037091418635100126 +karman_re100,sr,235,94.0,force,upper_fx,-0.004485456272959709 +karman_re100,sr,235,94.0,force,upper_fy,0.003131275996565819 +karman_re100,sr,235,94.0,force,lower_fx,0.0052995760925114155 +karman_re100,sr,235,94.0,force,lower_fy,-0.006324905902147293 +karman_re100,sr,236,94.4,force,front_fx,0.002505908953025937 +karman_re100,sr,236,94.4,force,front_fy,0.0033829223830252886 +karman_re100,sr,236,94.4,force,upper_fx,-0.006978672929108143 +karman_re100,sr,236,94.4,force,upper_fy,0.0020182819571346045 +karman_re100,sr,236,94.4,force,lower_fx,0.00546426884829998 +karman_re100,sr,236,94.4,force,lower_fy,-0.005946979392319918 +karman_re100,sr,237,94.8,force,front_fx,0.004709846805781126 +karman_re100,sr,237,94.8,force,front_fy,0.0025726426392793655 +karman_re100,sr,237,94.8,force,upper_fx,-0.009031737223267555 +karman_re100,sr,237,94.8,force,upper_fy,0.0017058842349797487 +karman_re100,sr,237,94.8,force,lower_fx,0.004588429816067219 +karman_re100,sr,237,94.8,force,lower_fy,-0.005196297541260719 +karman_re100,sr,238,95.2,force,front_fx,0.005293525289744139 +karman_re100,sr,238,95.2,force,front_fy,0.0012897028354927897 +karman_re100,sr,238,95.2,force,upper_fx,-0.00892702303826809 +karman_re100,sr,238,95.2,force,upper_fy,0.002613866701722145 +karman_re100,sr,238,95.2,force,lower_fx,0.0036399182863533497 +karman_re100,sr,238,95.2,force,lower_fy,-0.004529199562966824 +karman_re100,sr,239,95.6,force,front_fx,0.004344898741692305 +karman_re100,sr,239,95.6,force,front_fy,-0.00018028292106464505 +karman_re100,sr,239,95.6,force,upper_fx,-0.006472399458289146 +karman_re100,sr,239,95.6,force,upper_fy,0.0033362198155373335 +karman_re100,sr,239,95.6,force,lower_fx,0.00283895549364388 +karman_re100,sr,239,95.6,force,lower_fy,-0.004441073630005121 +karman_re100,sr,240,96.0,force,front_fx,0.0023887292481958866 +karman_re100,sr,240,96.0,force,front_fy,-0.0014939520042389631 +karman_re100,sr,240,96.0,force,upper_fx,-0.0036772489547729492 +karman_re100,sr,240,96.0,force,upper_fy,0.0035113482736051083 +karman_re100,sr,240,96.0,force,lower_fx,0.0019023030763491988 +karman_re100,sr,240,96.0,force,lower_fy,-0.00477769086137414 +karman_re100,sr,241,96.4,force,front_fx,0.00035852048313245177 +karman_re100,sr,241,96.4,force,front_fy,-0.0025893396232277155 +karman_re100,sr,241,96.4,force,upper_fx,-0.001278552459552884 +karman_re100,sr,241,96.4,force,upper_fy,0.004302563611418009 +karman_re100,sr,241,96.4,force,lower_fx,0.0007286423933692276 +karman_re100,sr,241,96.4,force,lower_fy,-0.005070204846560955 +karman_re100,sr,242,96.8,force,front_fx,-0.0008096473175100982 +karman_re100,sr,242,96.8,force,front_fy,-0.003290623426437378 +karman_re100,sr,242,96.8,force,upper_fx,0.0011885258136317134 +karman_re100,sr,242,96.8,force,upper_fy,0.005598636344075203 +karman_re100,sr,242,96.8,force,lower_fx,-0.0005984366871416569 +karman_re100,sr,242,96.8,force,lower_fy,-0.004924900829792023 +karman_re100,sr,243,97.2,force,front_fx,-0.0008659489685669541 +karman_re100,sr,243,97.2,force,front_fy,-0.0036224403884261847 +karman_re100,sr,243,97.2,force,upper_fx,0.003651965642347932 +karman_re100,sr,243,97.2,force,upper_fy,0.006349562201648951 +karman_re100,sr,243,97.2,force,lower_fx,-0.0022703493013978004 +karman_re100,sr,243,97.2,force,lower_fy,-0.004249473102390766 +karman_re100,sr,244,97.6,force,front_fx,0.00023802231589797884 +karman_re100,sr,244,97.6,force,front_fy,-0.003709452459588647 +karman_re100,sr,244,97.6,force,upper_fx,0.005259755998849869 +karman_re100,sr,244,97.6,force,upper_fy,0.006329539231956005 +karman_re100,sr,244,97.6,force,lower_fx,-0.0044128005392849445 +karman_re100,sr,244,97.6,force,lower_fy,-0.0031724164728075266 +karman_re100,sr,245,98.0,force,front_fx,0.0024190261028707027 +karman_re100,sr,245,98.0,force,front_fy,-0.0034015581477433443 +karman_re100,sr,245,98.0,force,upper_fx,0.0054770116694271564 +karman_re100,sr,245,98.0,force,upper_fy,0.005955892149358988 +karman_re100,sr,245,98.0,force,lower_fx,-0.0068913595750927925 +karman_re100,sr,245,98.0,force,lower_fy,-0.002037983387708664 +karman_re100,sr,246,98.4,force,front_fx,0.004659438040107489 +karman_re100,sr,246,98.4,force,front_fy,-0.002606595866382122 +karman_re100,sr,246,98.4,force,upper_fx,0.0046299295499920845 +karman_re100,sr,246,98.4,force,upper_fy,0.005220775026828051 +karman_re100,sr,246,98.4,force,lower_fx,-0.008981643244624138 +karman_re100,sr,246,98.4,force,lower_fy,-0.0016902323113754392 +karman_re100,sr,247,98.8,force,front_fx,0.005310412030667067 +karman_re100,sr,247,98.8,force,front_fy,-0.001342178788036108 +karman_re100,sr,247,98.8,force,upper_fx,0.003677976317703724 +karman_re100,sr,247,98.8,force,upper_fy,0.004547120537608862 +karman_re100,sr,247,98.8,force,lower_fx,-0.008967469446361065 +karman_re100,sr,247,98.8,force,lower_fy,-0.0025904688518494368 +karman_re100,sr,248,99.2,force,front_fx,0.004399464000016451 +karman_re100,sr,248,99.2,force,front_fy,0.00013239882537163794 +karman_re100,sr,248,99.2,force,upper_fx,0.002871171571314335 +karman_re100,sr,248,99.2,force,upper_fy,0.0044434042647480965 +karman_re100,sr,248,99.2,force,lower_fx,-0.006560230627655983 +karman_re100,sr,248,99.2,force,lower_fy,-0.0033406561706215143 +karman_re100,sr,249,99.6,force,front_fx,0.002458189381286502 +karman_re100,sr,249,99.6,force,front_fy,0.0014496396761387587 +karman_re100,sr,249,99.6,force,upper_fx,0.0019323688466101885 +karman_re100,sr,249,99.6,force,upper_fy,0.004766012541949749 +karman_re100,sr,249,99.6,force,lower_fx,-0.003766797250136733 +karman_re100,sr,249,99.6,force,lower_fy,-0.0034952377900481224 +karman_re100,sr,250,100.0,force,front_fx,0.000413331639720127 +karman_re100,sr,250,100.0,force,front_fy,0.002555386396124959 +karman_re100,sr,250,100.0,force,upper_fx,0.0007627404993399978 +karman_re100,sr,250,100.0,force,upper_fy,0.005058267619460821 +karman_re100,sr,250,100.0,force,lower_fx,-0.0013710228959098458 +karman_re100,sr,250,100.0,force,lower_fy,-0.004240275826305151 +karman_re100,sr,251,100.4,force,front_fx,-0.0007871562265790999 +karman_re100,sr,251,100.4,force,front_fy,0.0032746505457907915 +karman_re100,sr,251,100.4,force,upper_fx,-0.0005462271510623395 +karman_re100,sr,251,100.4,force,upper_fy,0.0049259052611887455 +karman_re100,sr,251,100.4,force,lower_fx,0.0010912923607975245 +karman_re100,sr,251,100.4,force,lower_fy,-0.005540798418223858 +karman_re100,sr,252,100.8,force,front_fx,-0.0008806745754554868 +karman_re100,sr,252,100.8,force,front_fy,0.0036179297603666782 +karman_re100,sr,252,100.8,force,upper_fx,-0.002193921245634556 +karman_re100,sr,252,100.8,force,upper_fy,0.0042777289636433125 +karman_re100,sr,252,100.8,force,lower_fx,0.003578569507226348 +karman_re100,sr,252,100.8,force,lower_fy,-0.006338941864669323 +karman_re100,sr,253,101.2,force,front_fx,0.0001806137734092772 +karman_re100,sr,253,101.2,force,front_fy,0.003712681122124195 +karman_re100,sr,253,101.2,force,upper_fx,-0.004320175386965275 +karman_re100,sr,253,101.2,force,upper_fy,0.0032230711076408625 +karman_re100,sr,253,101.2,force,lower_fx,0.0052318330854177475 +karman_re100,sr,253,101.2,force,lower_fy,-0.006350368726998568 +karman_re100,sr,254,101.6,force,front_fx,0.002325942274183035 +karman_re100,sr,254,101.6,force,front_fy,0.003422057256102562 +karman_re100,sr,254,101.6,force,upper_fx,-0.006801200564950705 +karman_re100,sr,254,101.6,force,upper_fy,0.00207983935251832 +karman_re100,sr,254,101.6,force,lower_fx,0.005489008501172066 +karman_re100,sr,254,101.6,force,lower_fy,-0.005983734503388405 +karman_re100,sr,255,102.0,force,front_fx,0.004593576304614544 +karman_re100,sr,255,102.0,force,front_fy,0.0026429893914610147 +karman_re100,sr,255,102.0,force,upper_fx,-0.008939871564507484 +karman_re100,sr,255,102.0,force,upper_fy,0.0016736589604988694 +karman_re100,sr,255,102.0,force,lower_fx,0.004655955825001001 +karman_re100,sr,255,102.0,force,lower_fy,-0.005249792709946632 +karman_re100,sr,256,102.4,force,front_fx,0.0053137014620006084 +karman_re100,sr,256,102.4,force,front_fy,0.001392683363519609 +karman_re100,sr,256,102.4,force,upper_fx,-0.009023645892739296 +karman_re100,sr,256,102.4,force,upper_fy,0.0025358074344694614 +karman_re100,sr,256,102.4,force,lower_fx,0.0037014754489064217 +karman_re100,sr,256,102.4,force,lower_fy,-0.004555479623377323 +karman_re100,sr,257,102.8,force,front_fx,0.004454152658581734 +karman_re100,sr,257,102.8,force,front_fy,-8.527648606104776e-05 +karman_re100,sr,257,102.8,force,upper_fx,-0.006664267275482416 +karman_re100,sr,257,102.8,force,upper_fy,0.0033306600525975227 +karman_re100,sr,257,102.8,force,lower_fx,0.0029018507339060307 +karman_re100,sr,257,102.8,force,lower_fy,-0.004433112684637308 +karman_re100,sr,258,103.2,force,front_fx,0.002539093606173992 +karman_re100,sr,258,103.2,force,front_fy,-0.001409532967954874 +karman_re100,sr,258,103.2,force,upper_fx,-0.003843889804556966 +karman_re100,sr,258,103.2,force,upper_fy,0.0035040592774748802 +karman_re100,sr,258,103.2,force,lower_fx,0.00197779992595315 +karman_re100,sr,258,103.2,force,lower_fy,-0.004757384769618511 +karman_re100,sr,259,103.6,force,front_fx,0.00047212696517817676 +karman_re100,sr,259,103.6,force,front_fy,-0.002523744013160467 +karman_re100,sr,259,103.6,force,upper_fx,-0.0014357976615428925 +karman_re100,sr,259,103.6,force,upper_fy,0.004223150201141834 +karman_re100,sr,259,103.6,force,lower_fx,0.0008088171598501503 +karman_re100,sr,259,103.6,force,lower_fy,-0.005064425058662891 +karman_re100,sr,260,104.0,force,front_fx,-0.0007694650557823479 +karman_re100,sr,260,104.0,force,front_fy,-0.003254576353356242 +karman_re100,sr,260,104.0,force,upper_fx,0.0010072364239022136 +karman_re100,sr,260,104.0,force,upper_fy,0.0055021001026034355 +karman_re100,sr,260,104.0,force,lower_fx,-0.0005048636230640113 +karman_re100,sr,260,104.0,force,lower_fy,-0.004946050234138966 +karman_re100,sr,261,104.4,force,front_fx,-0.0008985663298517466 +karman_re100,sr,261,104.4,force,front_fy,-0.003608501283451915 +karman_re100,sr,261,104.4,force,upper_fx,0.003497189376503229 +karman_re100,sr,261,104.4,force,upper_fy,0.006314092315733433 +karman_re100,sr,261,104.4,force,lower_fx,-0.0021417138632386923 +karman_re100,sr,261,104.4,force,lower_fy,-0.004301006905734539 +karman_re100,sr,262,104.8,force,front_fx,0.0001291217777179554 +karman_re100,sr,262,104.8,force,front_fy,-0.0037137398030608892 +karman_re100,sr,262,104.8,force,upper_fx,0.005196863319724798 +karman_re100,sr,262,104.8,force,upper_fy,0.006343134678900242 +karman_re100,sr,262,104.8,force,lower_fx,-0.004246432334184647 +karman_re100,sr,262,104.8,force,lower_fy,-0.003251305315643549 +karman_re100,sr,263,105.2,force,front_fx,0.0022492441348731518 +karman_re100,sr,263,105.2,force,front_fy,-0.003441516077145934 +karman_re100,sr,263,105.2,force,upper_fx,0.005511569790542126 +karman_re100,sr,263,105.2,force,upper_fy,0.005998576059937477 +karman_re100,sr,263,105.2,force,lower_fx,-0.006714205723255873 +karman_re100,sr,263,105.2,force,lower_fy,-0.0021080696024000645 +karman_re100,sr,264,105.6,force,front_fx,0.004544186405837536 +karman_re100,sr,264,105.6,force,front_fy,-0.00267849862575531 +karman_re100,sr,264,105.6,force,upper_fx,0.004699835553765297 +karman_re100,sr,264,105.6,force,upper_fy,0.005283798091113567 +karman_re100,sr,264,105.6,force,lower_fx,-0.00888665672391653 +karman_re100,sr,264,105.6,force,lower_fy,-0.0016744142631068826 +karman_re100,sr,265,106.0,force,front_fx,0.00532379187643528 +karman_re100,sr,265,106.0,force,front_fy,-0.0014441703679040074 +karman_re100,sr,265,106.0,force,upper_fx,0.0037313327193260193 +karman_re100,sr,265,106.0,force,upper_fy,0.00457562692463398 +karman_re100,sr,265,106.0,force,lower_fx,-0.009068784303963184 +karman_re100,sr,265,106.0,force,lower_fy,-0.002504607429727912 +karman_re100,sr,266,106.4,force,front_fx,0.00450546108186245 +karman_re100,sr,266,106.4,force,front_fy,3.277503128629178e-05 +karman_re100,sr,266,106.4,force,upper_fx,0.0029232287779450417 +karman_re100,sr,266,106.4,force,upper_fy,0.004426030907779932 +karman_re100,sr,266,106.4,force,lower_fx,-0.006773482076823711 +karman_re100,sr,266,106.4,force,lower_fy,-0.003305085701867938 +karman_re100,sr,267,106.8,force,front_fx,0.002614340279251337 +karman_re100,sr,267,106.8,force,front_fy,0.0013629563618451357 +karman_re100,sr,267,106.8,force,upper_fx,0.0020088949240744114 +karman_re100,sr,267,106.8,force,upper_fy,0.004734095185995102 +karman_re100,sr,267,106.8,force,lower_fx,-0.003948757890611887 +karman_re100,sr,267,106.8,force,lower_fy,-0.003472343785688281 +karman_re100,sr,268,107.2,force,front_fx,0.000537356361746788 +karman_re100,sr,268,107.2,force,front_fy,0.002490994753316045 +karman_re100,sr,268,107.2,force,upper_fx,0.0008545531309209764 +karman_re100,sr,268,107.2,force,upper_fy,0.0050511108711361885 +karman_re100,sr,268,107.2,force,lower_fx,-0.001526452018879354 +karman_re100,sr,268,107.2,force,lower_fy,-0.0041688536293804646 +karman_re100,sr,269,107.6,force,front_fx,-0.0007382995099760592 +karman_re100,sr,269,107.6,force,front_fy,0.003238155273720622 +karman_re100,sr,269,107.6,force,upper_fx,-0.0004444691294338554 +karman_re100,sr,269,107.6,force,upper_fy,0.004960647784173489 +karman_re100,sr,269,107.6,force,lower_fx,0.0009187353425659239 +karman_re100,sr,269,107.6,force,lower_fy,-0.00547050079330802 +karman_re100,sr,270,108.0,force,front_fx,-0.0009122146875597537 +karman_re100,sr,270,108.0,force,front_fy,0.0036017096135765314 +karman_re100,sr,270,108.0,force,upper_fx,-0.0020689493976533413 +karman_re100,sr,270,108.0,force,upper_fy,0.004343021661043167 +karman_re100,sr,270,108.0,force,lower_fx,0.003422248875722289 +karman_re100,sr,270,108.0,force,lower_fy,-0.006317764986306429 +karman_re100,sr,271,108.4,force,front_fx,6.699479854432866e-05 +karman_re100,sr,271,108.4,force,front_fy,0.003713771002367139 +karman_re100,sr,271,108.4,force,upper_fx,-0.0041664657182991505 +karman_re100,sr,271,108.4,force,upper_fy,0.0033024605363607407 +karman_re100,sr,271,108.4,force,lower_fx,0.005154647398740053 +karman_re100,sr,271,108.4,force,lower_fy,-0.006358497776091099 +karman_re100,sr,272,108.8,force,front_fx,0.0021556306164711714 +karman_re100,sr,272,108.8,force,front_fy,0.0034582840744405985 +karman_re100,sr,272,108.8,force,upper_fx,-0.006629477720707655 +karman_re100,sr,272,108.8,force,upper_fy,0.0021396740339696407 +karman_re100,sr,272,108.8,force,lower_fx,0.0055153099820017815 +karman_re100,sr,272,108.8,force,lower_fy,-0.0060126036405563354 +karman_re100,sr,273,109.2,force,front_fx,0.004477097187191248 +karman_re100,sr,273,109.2,force,front_fy,0.0027125489432364702 +karman_re100,sr,273,109.2,force,upper_fx,-0.00883274246007204 +karman_re100,sr,273,109.2,force,upper_fy,0.001657711691223085 +karman_re100,sr,273,109.2,force,lower_fx,0.004733625799417496 +karman_re100,sr,273,109.2,force,lower_fy,-0.005306897684931755 +karman_re100,sr,274,109.6,force,front_fx,0.005327127408236265 +karman_re100,sr,274,109.6,force,front_fy,0.0014909229939803481 +karman_re100,sr,274,109.6,force,upper_fx,-0.009103475138545036 +karman_re100,sr,274,109.6,force,upper_fy,0.002466532401740551 +karman_re100,sr,274,109.6,force,lower_fx,0.0037667977157980204 +karman_re100,sr,274,109.6,force,lower_fy,-0.004590668249875307 +karman_re100,sr,275,110.0,force,front_fx,0.004555796273052692 +karman_re100,sr,275,110.0,force,front_fy,1.3148536709195469e-05 +karman_re100,sr,275,110.0,force,upper_fx,-0.006862414535135031 +karman_re100,sr,275,110.0,force,upper_fy,0.003310731379315257 +karman_re100,sr,275,110.0,force,lower_fx,0.0029584874864667654 +karman_re100,sr,275,110.0,force,lower_fy,-0.0044274949468672276 +karman_re100,sr,276,110.4,force,front_fx,0.00268918345682323 +karman_re100,sr,276,110.4,force,front_fy,-0.001316630863584578 +karman_re100,sr,276,110.4,force,upper_fx,-0.004029812291264534 +karman_re100,sr,276,110.4,force,upper_fy,0.0034779023844748735 +karman_re100,sr,276,110.4,force,lower_fx,0.002046504756435752 +karman_re100,sr,276,110.4,force,lower_fy,-0.0047288937494158745 +karman_re100,sr,277,110.8,force,front_fx,0.0005988741759210825 +karman_re100,sr,277,110.8,force,front_fy,-0.0024539458099752665 +karman_re100,sr,277,110.8,force,upper_fx,-0.0016103108646348119 +karman_re100,sr,277,110.8,force,upper_fy,0.004127698019146919 +karman_re100,sr,277,110.8,force,lower_fx,0.0008899558451958001 +karman_re100,sr,277,110.8,force,lower_fy,-0.005047133192420006 +karman_re100,sr,278,111.2,force,front_fx,-0.0007161265821196139 +karman_re100,sr,278,111.2,force,front_fy,-0.003218132769688964 +karman_re100,sr,278,111.2,force,upper_fx,0.0008228966034948826 +karman_re100,sr,278,111.2,force,upper_fy,0.005408668890595436 +karman_re100,sr,278,111.2,force,lower_fx,-0.0004030466952826828 +karman_re100,sr,278,111.2,force,lower_fy,-0.004965009167790413 +karman_re100,sr,279,111.6,force,front_fx,-0.0009238498168997467 +karman_re100,sr,279,111.6,force,front_fy,-0.003594696521759033 +karman_re100,sr,279,111.6,force,upper_fx,0.003340701572597027 +karman_re100,sr,279,111.6,force,upper_fy,0.006291469559073448 +karman_re100,sr,279,111.6,force,lower_fx,-0.0020036641508340836 +karman_re100,sr,279,111.6,force,lower_fy,-0.004362103529274464 +karman_re100,sr,280,112.0,force,front_fx,1.7486867363913916e-05 +karman_re100,sr,280,112.0,force,front_fy,-0.00371632375754416 +karman_re100,sr,280,112.0,force,upper_fx,0.005122516769915819 +karman_re100,sr,280,112.0,force,upper_fy,0.006366584450006485 +karman_re100,sr,280,112.0,force,lower_fx,-0.004079010337591171 +karman_re100,sr,280,112.0,force,lower_fy,-0.003342341398820281 +karman_re100,sr,281,112.4,force,front_fx,0.0020732705015689135 +karman_re100,sr,281,112.4,force,front_fy,-0.003476778045296669 +karman_re100,sr,281,112.4,force,upper_fx,0.005531737115234137 +karman_re100,sr,281,112.4,force,upper_fy,0.006038767751306295 +karman_re100,sr,281,112.4,force,lower_fx,-0.006535690277814865 +karman_re100,sr,281,112.4,force,lower_fy,-0.0021826396696269512 +karman_re100,sr,282,112.8,force,front_fx,0.004412481561303139 +karman_re100,sr,282,112.8,force,front_fy,-0.0027462528087198734 +karman_re100,sr,282,112.8,force,upper_fx,0.004765640012919903 +karman_re100,sr,282,112.8,force,upper_fy,0.005341576877981424 +karman_re100,sr,282,112.8,force,lower_fx,-0.008780188858509064 +karman_re100,sr,282,112.8,force,lower_fy,-0.0016562358941882849 +karman_re100,sr,283,113.2,force,front_fx,0.005326523911207914 +karman_re100,sr,283,113.2,force,front_fy,-0.0015430886996909976 +karman_re100,sr,283,113.2,force,upper_fx,0.0037893534172326326 +karman_re100,sr,283,113.2,force,upper_fy,0.004605084657669067 +karman_re100,sr,283,113.2,force,lower_fx,-0.009154300205409527 +karman_re100,sr,283,113.2,force,lower_fy,-0.002417277544736862 +karman_re100,sr,284,113.6,force,front_fx,0.004600838292390108 +karman_re100,sr,284,113.6,force,front_fy,-6.590930570382625e-05 +karman_re100,sr,284,113.6,force,upper_fx,0.0029829759150743484 +karman_re100,sr,284,113.6,force,upper_fy,0.0044165123254060745 +karman_re100,sr,284,113.6,force,lower_fx,-0.0069732628762722015 +karman_re100,sr,284,113.6,force,lower_fy,-0.003283769590780139 +karman_re100,sr,285,114.0,force,front_fx,0.0027682078070938587 +karman_re100,sr,285,114.0,force,front_fy,0.001277472241781652 +karman_re100,sr,285,114.0,force,upper_fx,0.0020868524443358183 +karman_re100,sr,285,114.0,force,upper_fy,0.004711977206170559 +karman_re100,sr,285,114.0,force,lower_fx,-0.004122292622923851 +karman_re100,sr,285,114.0,force,lower_fy,-0.003469947027042508 +karman_re100,sr,286,114.4,force,front_fx,0.0006639253115281463 +karman_re100,sr,286,114.4,force,front_fy,0.0024226815439760685 +karman_re100,sr,286,114.4,force,upper_fx,0.0009404185693711042 +karman_re100,sr,286,114.4,force,upper_fy,0.00504616554826498 +karman_re100,sr,286,114.4,force,lower_fx,-0.0016841543838381767 +karman_re100,sr,286,114.4,force,lower_fy,-0.004105689935386181 +karman_re100,sr,287,114.8,force,front_fx,-0.0006882724701426923 +karman_re100,sr,287,114.8,force,front_fy,0.0031987095717340708 +karman_re100,sr,287,114.8,force,upper_fx,-0.00035285070771351457 +karman_re100,sr,287,114.8,force,upper_fy,0.00498679094016552 +karman_re100,sr,287,114.8,force,lower_fx,0.000740780436899513 +karman_re100,sr,287,114.8,force,lower_fy,-0.005379973445087671 +karman_re100,sr,288,115.2,force,front_fx,-0.0009388512116856873 +karman_re100,sr,288,115.2,force,front_fy,0.003584775608032942 +karman_re100,sr,288,115.2,force,upper_fx,-0.0019477743189781904 +karman_re100,sr,288,115.2,force,upper_fy,0.0043953340500593185 +karman_re100,sr,288,115.2,force,lower_fx,0.003257329808548093 +karman_re100,sr,288,115.2,force,lower_fy,-0.006278051063418388 +karman_re100,sr,289,115.6,force,front_fx,-3.8142312405398116e-05 +karman_re100,sr,289,115.6,force,front_fy,0.0037147102411836386 +karman_re100,sr,289,115.6,force,upper_fx,-0.004007261246442795 +karman_re100,sr,289,115.6,force,upper_fy,0.0033758780919015408 +karman_re100,sr,289,115.6,force,lower_fx,0.005075845867395401 +karman_re100,sr,289,115.6,force,lower_fy,-0.006362965330481529 +karman_re100,sr,290,116.0,force,front_fx,0.0019880146719515324 +karman_re100,sr,290,116.0,force,front_fy,0.003494901116937399 +karman_re100,sr,290,116.0,force,upper_fx,-0.0064503769390285015 +karman_re100,sr,290,116.0,force,upper_fy,0.0022100245114415884 +karman_re100,sr,290,116.0,force,lower_fx,0.005542006343603134 +karman_re100,sr,290,116.0,force,lower_fy,-0.006046457216143608 +karman_re100,sr,291,116.4,force,front_fx,0.004349974449723959 +karman_re100,sr,291,116.4,force,front_fy,0.0027774914633482695 +karman_re100,sr,291,116.4,force,upper_fx,-0.008717524819076061 +karman_re100,sr,291,116.4,force,upper_fy,0.0016557121416553855 +karman_re100,sr,291,116.4,force,lower_fx,0.0048098196275532246 +karman_re100,sr,291,116.4,force,lower_fy,-0.005369413644075394 +karman_re100,sr,292,116.8,force,front_fx,0.005328021012246609 +karman_re100,sr,292,116.8,force,front_fy,0.0015924166655167937 +karman_re100,sr,292,116.8,force,upper_fx,-0.009179634042084217 +karman_re100,sr,292,116.8,force,upper_fy,0.002388047520071268 +karman_re100,sr,292,116.8,force,lower_fx,0.003826353931799531 +karman_re100,sr,292,116.8,force,lower_fy,-0.004628240596503019 +karman_re100,sr,293,117.2,force,front_fx,0.004649719689041376 +karman_re100,sr,293,117.2,force,front_fy,0.00011575071403058246 +karman_re100,sr,293,117.2,force,upper_fx,-0.007070373743772507 +karman_re100,sr,293,117.2,force,upper_fy,0.0032720856834203005 +karman_re100,sr,293,117.2,force,lower_fx,0.003009514883160591 +karman_re100,sr,293,117.2,force,lower_fy,-0.004417748656123877 +karman_re100,sr,294,117.6,force,front_fx,0.0028406602796167135 +karman_re100,sr,294,117.6,force,front_fy,-0.0012301133247092366 +karman_re100,sr,294,117.6,force,upper_fx,-0.004228918347507715 +karman_re100,sr,294,117.6,force,upper_fy,0.00344410864636302 +karman_re100,sr,294,117.6,force,lower_fx,0.0021153083071112633 +karman_re100,sr,294,117.6,force,lower_fy,-0.00469612143933773 +karman_re100,sr,295,118.0,force,front_fx,0.0007286997861228883 +karman_re100,sr,295,118.0,force,front_fy,-0.002388018649071455 +karman_re100,sr,295,118.0,force,upper_fx,-0.001776647288352251 +karman_re100,sr,295,118.0,force,upper_fy,0.004051491618156433 +karman_re100,sr,295,118.0,force,lower_fx,0.0009784749709069729 +karman_re100,sr,295,118.0,force,lower_fy,-0.005030232015997171 +karman_re100,sr,296,118.4,force,front_fx,-0.0006538985762745142 +karman_re100,sr,296,118.4,force,front_fy,-0.003180572297424078 +karman_re100,sr,296,118.4,force,upper_fx,0.0006479363655671477 +karman_re100,sr,296,118.4,force,upper_fy,0.005329474341124296 +karman_re100,sr,296,118.4,force,lower_fx,-0.00029927148716524243 +karman_re100,sr,296,118.4,force,lower_fy,-0.004990881308913231 +karman_re100,sr,297,118.8,force,front_fx,-0.0009457830456085503 +karman_re100,sr,297,118.8,force,front_fy,-0.003577173687517643 +karman_re100,sr,297,118.8,force,upper_fx,0.0031795999966561794 +karman_re100,sr,297,118.8,force,upper_fy,0.006270969286561012 +karman_re100,sr,297,118.8,force,lower_fx,-0.0018734363839030266 +karman_re100,sr,297,118.8,force,lower_fy,-0.004427964333444834 +karman_re100,sr,298,119.2,force,front_fx,-9.086278441827744e-05 +karman_re100,sr,298,119.2,force,front_fy,-0.0037138061597943306 +karman_re100,sr,298,119.2,force,upper_fx,0.005035320296883583 +karman_re100,sr,298,119.2,force,upper_fy,0.006382658611983061 +karman_re100,sr,298,119.2,force,lower_fx,-0.003920756746083498 +karman_re100,sr,298,119.2,force,lower_fy,-0.003427892690524459 +karman_re100,sr,299,119.6,force,front_fx,0.0018964516930282116 +karman_re100,sr,299,119.6,force,front_fy,-0.003511665156111121 +karman_re100,sr,299,119.6,force,upper_fx,0.005544101819396019 +karman_re100,sr,299,119.6,force,upper_fy,0.00606832280755043 +karman_re100,sr,299,119.6,force,lower_fx,-0.006362783722579479 +karman_re100,sr,299,119.6,force,lower_fy,-0.0022528506815433502 +karman_re100,sr,300,120.0,force,front_fx,0.004278738982975483 +karman_re100,sr,300,120.0,force,front_fy,-0.0028114705346524715 +karman_re100,sr,300,120.0,force,upper_fx,0.004837083630263805 +karman_re100,sr,300,120.0,force,upper_fy,0.0053963931277394295 +karman_re100,sr,300,120.0,force,lower_fx,-0.008659681305289268 +karman_re100,sr,300,120.0,force,lower_fy,-0.0016470829723402858 +karman_re100,sr,301,120.4,force,front_fx,0.005324432626366615 +karman_re100,sr,301,120.4,force,front_fy,-0.0016421895707026124 +karman_re100,sr,301,120.4,force,upper_fx,0.0038556659128516912 +karman_re100,sr,301,120.4,force,upper_fy,0.004642152227461338 +karman_re100,sr,301,120.4,force,lower_fx,-0.00921265035867691 +karman_re100,sr,301,120.4,force,lower_fy,-0.0023398571647703648 +karman_re100,sr,302,120.8,force,front_fx,0.0046965195797383785 +karman_re100,sr,302,120.8,force,front_fy,-0.00016362591122742742 +karman_re100,sr,302,120.8,force,upper_fx,0.0030421027913689613 +karman_re100,sr,302,120.8,force,upper_fy,0.004415182862430811 +karman_re100,sr,302,120.8,force,lower_fx,-0.007163611240684986 +karman_re100,sr,302,120.8,force,lower_fy,-0.0032657908741384745 +karman_re100,sr,303,121.2,force,front_fx,0.002915108110755682 +karman_re100,sr,303,121.2,force,front_fy,0.0011862115934491158 +karman_re100,sr,303,121.2,force,upper_fx,0.0021568562369793653 +karman_re100,sr,303,121.2,force,upper_fy,0.004689090419560671 +karman_re100,sr,303,121.2,force,lower_fx,-0.004299689084291458 +karman_re100,sr,303,121.2,force,lower_fy,-0.0034590440336614847 +karman_re100,sr,304,121.6,force,front_fx,0.0007907585240900517 +karman_re100,sr,304,121.6,force,front_fy,0.0023545389994978905 +karman_re100,sr,304,121.6,force,upper_fx,0.0010200035758316517 +karman_re100,sr,304,121.6,force,upper_fy,0.005030710715800524 +karman_re100,sr,304,121.6,force,lower_fx,-0.001848338870331645 +karman_re100,sr,304,121.6,force,lower_fy,-0.004026077222079039 +karman_re100,sr,305,122.0,force,front_fx,-0.000631358998361975 +karman_re100,sr,305,122.0,force,front_fy,0.0031584864482283592 +karman_re100,sr,305,122.0,force,upper_fx,-0.0002603940956760198 +karman_re100,sr,305,122.0,force,upper_fy,0.00500151515007019 +karman_re100,sr,305,122.0,force,lower_fx,0.0005594981485046446 +karman_re100,sr,305,122.0,force,lower_fy,-0.005279111210256815 +karman_re100,sr,306,122.4,force,front_fx,-0.0009558455785736442 +karman_re100,sr,306,122.4,force,front_fy,0.0035686208866536617 +karman_re100,sr,306,122.4,force,upper_fx,-0.0018194877775385976 +karman_re100,sr,306,122.4,force,upper_fy,0.004445966333150864 +karman_re100,sr,306,122.4,force,lower_fx,0.0030951397493481636 +karman_re100,sr,306,122.4,force,lower_fy,-0.006238330155611038 +karman_re100,sr,307,122.8,force,front_fx,-0.00013619307719636708 +karman_re100,sr,307,122.8,force,front_fy,0.003714918391779065 +karman_re100,sr,307,122.8,force,upper_fx,-0.003841608064249158 +karman_re100,sr,307,122.8,force,upper_fy,0.0034577695187181234 +karman_re100,sr,307,122.8,force,lower_fx,0.004995203111320734 +karman_re100,sr,307,122.8,force,lower_fy,-0.006379408296197653 +karman_re100,sr,308,123.2,force,front_fx,0.0018195430748164654 +karman_re100,sr,308,123.2,force,front_fy,0.00352572207339108 +karman_re100,sr,308,123.2,force,upper_fx,-0.0062721348367631435 +karman_re100,sr,308,123.2,force,upper_fy,0.0022888444364070892 +karman_re100,sr,308,123.2,force,lower_fx,0.005557931028306484 +karman_re100,sr,308,123.2,force,lower_fy,-0.006084960885345936 +karman_re100,sr,309,123.6,force,front_fx,0.004211525432765484 +karman_re100,sr,309,123.6,force,front_fy,0.0028412046376615763 +karman_re100,sr,309,123.6,force,upper_fx,-0.00859824288636446 +karman_re100,sr,309,123.6,force,upper_fy,0.0016549392603337765 +karman_re100,sr,309,123.6,force,lower_fx,0.004875139333307743 +karman_re100,sr,309,123.6,force,lower_fy,-0.005430853459984064 +karman_re100,sr,310,124.0,force,front_fx,0.0053179217502474785 +karman_re100,sr,310,124.0,force,front_fy,0.00169709965121001 +karman_re100,sr,310,124.0,force,upper_fx,-0.009245987981557846 +karman_re100,sr,310,124.0,force,upper_fy,0.0023020044900476933 +karman_re100,sr,310,124.0,force,lower_fx,0.003883042838424444 +karman_re100,sr,310,124.0,force,lower_fy,-0.004662976134568453 +karman_re100,sr,311,124.4,force,front_fx,0.004737194627523422 +karman_re100,sr,311,124.4,force,front_fy,0.00021567087969742715 +karman_re100,sr,311,124.4,force,upper_fx,-0.007271504029631615 +karman_re100,sr,311,124.4,force,upper_fy,0.0032332036644220352 +karman_re100,sr,311,124.4,force,lower_fx,0.0030634161084890366 +karman_re100,sr,311,124.4,force,lower_fy,-0.00440867617726326 +karman_re100,sr,312,124.8,force,front_fx,0.0029904090333729982 +karman_re100,sr,312,124.8,force,front_fy,-0.001143275760114193 +karman_re100,sr,312,124.8,force,upper_fx,-0.004405084066092968 +karman_re100,sr,312,124.8,force,upper_fy,0.003442894434556365 +karman_re100,sr,312,124.8,force,lower_fx,0.0021900562569499016 +karman_re100,sr,312,124.8,force,lower_fy,-0.00466807559132576 +karman_re100,sr,313,125.2,force,front_fx,0.0008644850458949804 +karman_re100,sr,313,125.2,force,front_fy,-0.0023180642165243626 +karman_re100,sr,313,125.2,force,upper_fx,-0.0019303517183288932 +karman_re100,sr,313,125.2,force,upper_fy,0.003990904428064823 +karman_re100,sr,313,125.2,force,lower_fx,0.001067041652277112 +karman_re100,sr,313,125.2,force,lower_fy,-0.005021451041102409 +karman_re100,sr,314,125.6,force,front_fx,-0.0005946351448073983 +karman_re100,sr,314,125.6,force,front_fy,-0.0031368464697152376 +karman_re100,sr,314,125.6,force,upper_fx,0.0004765356716234237 +karman_re100,sr,314,125.6,force,upper_fy,0.005247350316494703 +karman_re100,sr,314,125.6,force,lower_fx,-0.00020529238099697977 +karman_re100,sr,314,125.6,force,lower_fy,-0.005017396993935108 +karman_re100,sr,315,126.0,force,front_fx,-0.0009628052357584238 +karman_re100,sr,315,126.0,force,front_fy,-0.003558560973033309 +karman_re100,sr,315,126.0,force,upper_fx,0.003013625042513013 +karman_re100,sr,315,126.0,force,upper_fy,0.006231625098735094 +karman_re100,sr,315,126.0,force,lower_fx,-0.001756956335157156 +karman_re100,sr,315,126.0,force,lower_fy,-0.004482522141188383 +karman_re100,sr,316,126.4,force,front_fx,-0.00018814887152984738 +karman_re100,sr,316,126.4,force,front_fy,-0.0037122888024896383 +karman_re100,sr,316,126.4,force,upper_fx,0.0049441419541835785 +karman_re100,sr,316,126.4,force,upper_fy,0.006384320091456175 +karman_re100,sr,316,126.4,force,lower_fx,-0.0037675604689866304 +karman_re100,sr,316,126.4,force,lower_fy,-0.003496916964650154 +karman_re100,sr,317,126.8,force,front_fx,0.0017359358025714755 +karman_re100,sr,317,126.8,force,front_fy,-0.003539746394380927 +karman_re100,sr,317,126.8,force,upper_fx,0.005557384341955185 +karman_re100,sr,317,126.8,force,upper_fy,0.006092737428843975 +karman_re100,sr,317,126.8,force,lower_fx,-0.006188525352627039 +karman_re100,sr,317,126.8,force,lower_fy,-0.00232124887406826 +karman_re100,sr,318,127.2,force,front_fx,0.0041429405100643635 +karman_re100,sr,318,127.2,force,front_fy,-0.0028734419029206038 +karman_re100,sr,318,127.2,force,upper_fx,0.0049109929241240025 +karman_re100,sr,318,127.2,force,upper_fy,0.0054542869329452515 +karman_re100,sr,318,127.2,force,lower_fx,-0.008532004430890083 +karman_re100,sr,318,127.2,force,lower_fy,-0.001653765793889761 +karman_re100,sr,319,127.6,force,front_fx,0.0053140753880143166 +karman_re100,sr,319,127.6,force,front_fy,-0.0017396163893863559 +karman_re100,sr,319,127.6,force,upper_fx,0.003920701332390308 +karman_re100,sr,319,127.6,force,upper_fy,0.004684275481849909 +karman_re100,sr,319,127.6,force,lower_fx,-0.009261073544621468 +karman_re100,sr,319,127.6,force,lower_fy,-0.0022702496498823166 +karman_re100,sr,320,128.0,force,front_fx,0.004782719537615776 +karman_re100,sr,320,128.0,force,front_fy,-0.00026777395396493375 +karman_re100,sr,320,128.0,force,upper_fx,0.003094997489824891 +karman_re100,sr,320,128.0,force,upper_fy,0.004412942100316286 +karman_re100,sr,320,128.0,force,lower_fx,-0.007357664871960878 +karman_re100,sr,320,128.0,force,lower_fy,-0.003226545173674822 +karman_re100,sr,321,128.4,force,front_fx,0.0030554498080164194 +karman_re100,sr,321,128.4,force,front_fy,0.001098753185942769 +karman_re100,sr,321,128.4,force,upper_fx,0.002221717033535242 +karman_re100,sr,321,128.4,force,upper_fy,0.0046586524695158005 +karman_re100,sr,321,128.4,force,lower_fx,-0.00449682492762804 +karman_re100,sr,321,128.4,force,lower_fy,-0.0034363202285021544 +karman_re100,sr,322,128.8,force,front_fx,0.0009272426832467318 +karman_re100,sr,322,128.8,force,front_fy,0.0022916037123650312 +karman_re100,sr,322,128.8,force,upper_fx,0.0011026953579857945 +karman_re100,sr,322,128.8,force,upper_fy,0.00500835943967104 +karman_re100,sr,322,128.8,force,lower_fx,-0.002018891042098403 +karman_re100,sr,322,128.8,force,lower_fy,-0.003946575801819563 +karman_re100,sr,323,129.2,force,front_fx,-0.0005663339397870004 +karman_re100,sr,323,129.2,force,front_fy,0.0031167776323854923 +karman_re100,sr,323,129.2,force,upper_fx,-0.00016063719522207975 +karman_re100,sr,323,129.2,force,upper_fy,0.005018357187509537 +karman_re100,sr,323,129.2,force,lower_fx,0.0003819753183051944 +karman_re100,sr,323,129.2,force,lower_fy,-0.005187239032238722 +karman_re100,sr,324,129.6,force,front_fx,-0.0009678078349679708 +karman_re100,sr,324,129.6,force,front_fy,0.0035509688314050436 +karman_re100,sr,324,129.6,force,upper_fx,-0.0016902516363188624 +karman_re100,sr,324,129.6,force,upper_fy,0.00450472766533494 +karman_re100,sr,324,129.6,force,lower_fx,0.002932613715529442 +karman_re100,sr,324,129.6,force,lower_fy,-0.006205942016094923 +karman_re100,sr,325,130.0,force,front_fx,-0.0002338126505492255 +karman_re100,sr,325,130.0,force,front_fy,0.0037121050991117954 +karman_re100,sr,325,130.0,force,upper_fx,-0.0036847908049821854 +karman_re100,sr,325,130.0,force,upper_fy,0.003544081700965762 +karman_re100,sr,325,130.0,force,lower_fx,0.004901529755443335 +karman_re100,sr,325,130.0,force,lower_fy,-0.0063959513790905476 +karman_re100,sr,326,130.4,force,front_fx,0.0016500347992405295 +karman_re100,sr,326,130.4,force,front_fy,0.0035552182234823704 +karman_re100,sr,326,130.4,force,upper_fx,-0.006096075288951397 +karman_re100,sr,326,130.4,force,upper_fy,0.0023657677229493856 +karman_re100,sr,326,130.4,force,lower_fx,0.005561992060393095 +karman_re100,sr,326,130.4,force,lower_fy,-0.006116829346865416 +karman_re100,sr,327,130.8,force,front_fx,0.004064641892910004 +karman_re100,sr,327,130.8,force,front_fy,0.0029031038284301758 +karman_re100,sr,327,130.8,force,upper_fx,-0.008469557389616966 +karman_re100,sr,327,130.8,force,upper_fy,0.0016542135272175074 +karman_re100,sr,327,130.8,force,lower_fx,0.004940633662045002 +karman_re100,sr,327,130.8,force,lower_fy,-0.0054856110364198685 +karman_re100,sr,328,131.2,force,front_fx,0.005303813144564629 +karman_re100,sr,328,131.2,force,front_fy,0.0017869800794869661 +karman_re100,sr,328,131.2,force,upper_fx,-0.009291620925068855 +karman_re100,sr,328,131.2,force,upper_fy,0.0022202064283192158 +karman_re100,sr,328,131.2,force,lower_fx,0.003946717828512192 +karman_re100,sr,328,131.2,force,lower_fy,-0.004700377583503723 +karman_re100,sr,329,131.6,force,front_fx,0.004821487702429295 +karman_re100,sr,329,131.6,force,front_fy,0.00031546171521767974 +karman_re100,sr,329,131.6,force,upper_fx,-0.007460223510861397 +karman_re100,sr,329,131.6,force,upper_fy,0.0032027217093855143 +karman_re100,sr,329,131.6,force,lower_fx,0.0031225946731865406 +karman_re100,sr,329,131.6,force,lower_fy,-0.004407694563269615 +karman_re100,sr,330,132.0,force,front_fx,0.0031416781712323427 +karman_re100,sr,330,132.0,force,front_fy,-0.0010552987223491073 +karman_re100,sr,330,132.0,force,upper_fx,-0.0045860530808568 +karman_re100,sr,330,132.0,force,upper_fy,0.0034443228505551815 +karman_re100,sr,330,132.0,force,lower_fx,0.002261473797261715 +karman_re100,sr,330,132.0,force,lower_fy,-0.004646508954465389 +karman_re100,sr,331,132.4,force,front_fx,0.0009970295941457152 +karman_re100,sr,331,132.4,force,front_fy,-0.00224431324750185 +karman_re100,sr,331,132.4,force,upper_fx,-0.002089170040562749 +karman_re100,sr,331,132.4,force,upper_fy,0.003927240148186684 +karman_re100,sr,331,132.4,force,lower_fx,0.0011488569434732199 +karman_re100,sr,331,132.4,force,lower_fy,-0.005007950589060783 +karman_re100,sr,332,132.8,force,front_fx,-0.00053221988491714 +karman_re100,sr,332,132.8,force,front_fy,-0.0030946016777306795 +karman_re100,sr,332,132.8,force,upper_fx,0.00029943924164399505 +karman_re100,sr,332,132.8,force,upper_fy,0.005148263648152351 +karman_re100,sr,332,132.8,force,lower_fx,-0.00011680294846883044 +karman_re100,sr,332,132.8,force,lower_fy,-0.0050327591598033905 +karman_re100,sr,333,133.2,force,front_fx,-0.000975209753960371 +karman_re100,sr,333,133.2,force,front_fy,-0.0035401894710958004 +karman_re100,sr,333,133.2,force,upper_fx,0.0028385818004608154 +karman_re100,sr,333,133.2,force,upper_fy,0.006176093593239784 +karman_re100,sr,333,133.2,force,lower_fx,-0.0016381059540435672 +karman_re100,sr,333,133.2,force,lower_fy,-0.004528444726020098 +karman_re100,sr,334,133.6,force,front_fx,-0.00027844199212267995 +karman_re100,sr,334,133.6,force,front_fy,-0.0037101260386407375 +karman_re100,sr,334,133.6,force,upper_fx,0.004851675126701593 +karman_re100,sr,334,133.6,force,upper_fy,0.006391072180122137 +karman_re100,sr,334,133.6,force,lower_fx,-0.003613631473854184 +karman_re100,sr,334,133.6,force,lower_fy,-0.0035743501503020525 +karman_re100,sr,335,134.0,force,front_fx,0.0015718821668997407 +karman_re100,sr,335,134.0,force,front_fy,-0.0035693617537617683 +karman_re100,sr,335,134.0,force,upper_fx,0.005568551830947399 +karman_re100,sr,335,134.0,force,upper_fy,0.00612642103806138 +karman_re100,sr,335,134.0,force,lower_fx,-0.006008887197822332 +karman_re100,sr,335,134.0,force,lower_fy,-0.002397487871348858 +karman_re100,sr,336,134.4,force,front_fx,0.003996318206191063 +karman_re100,sr,336,134.4,force,front_fy,-0.0029339485336095095 +karman_re100,sr,336,134.4,force,upper_fx,0.004981196951121092 +karman_re100,sr,336,134.4,force,upper_fy,0.00551539845764637 +karman_re100,sr,336,134.4,force,lower_fx,-0.008398903533816338 +karman_re100,sr,336,134.4,force,lower_fy,-0.0016653246711939573 +karman_re100,sr,337,134.8,force,front_fx,0.005296763032674789 +karman_re100,sr,337,134.8,force,front_fy,-0.0018350675236433744 +karman_re100,sr,337,134.8,force,upper_fx,0.003980936482548714 +karman_re100,sr,337,134.8,force,upper_fy,0.00472648348659277 +karman_re100,sr,337,134.8,force,lower_fx,-0.009306424297392368 +karman_re100,sr,337,134.8,force,lower_fy,-0.002191617852076888 +karman_re100,sr,338,135.2,force,front_fx,0.00486074760556221 +karman_re100,sr,338,135.2,force,front_fy,-0.00037039440940134227 +karman_re100,sr,338,135.2,force,upper_fx,0.0031467557419091463 +karman_re100,sr,338,135.2,force,upper_fy,0.004408214241266251 +karman_re100,sr,338,135.2,force,lower_fx,-0.007557822857052088 +karman_re100,sr,338,135.2,force,lower_fy,-0.0031780346762388945 +karman_re100,sr,339,135.6,force,front_fx,0.003207205794751644 +karman_re100,sr,339,135.6,force,front_fy,0.0010059892665594816 +karman_re100,sr,339,135.6,force,upper_fx,0.0022912630811333656 +karman_re100,sr,339,135.6,force,upper_fy,0.004628115799278021 +karman_re100,sr,339,135.6,force,lower_fx,-0.0046906680800020695 +karman_re100,sr,339,135.6,force,lower_fy,-0.003424430266022682 +karman_re100,sr,340,136.0,force,front_fx,0.0010689650662243366 +karman_re100,sr,340,136.0,force,front_fy,0.002210484119132161 +karman_re100,sr,340,136.0,force,upper_fx,0.0011915948707610369 +karman_re100,sr,340,136.0,force,upper_fy,0.0049916161224246025 +karman_re100,sr,340,136.0,force,lower_fx,-0.0021788482554256916 +karman_re100,sr,340,136.0,force,lower_fy,-0.0038837429601699114 +karman_re100,sr,341,136.4,force,front_fx,-0.0004920680657960474 +karman_re100,sr,341,136.4,force,front_fy,0.003073080675676465 +karman_re100,sr,341,136.4,force,upper_fx,-6.320499232970178e-05 +karman_re100,sr,341,136.4,force,upper_fy,0.005039551295340061 +karman_re100,sr,341,136.4,force,lower_fx,0.00021040452702436596 +karman_re100,sr,341,136.4,force,lower_fy,-0.005104354117065668 +karman_re100,sr,342,136.8,force,front_fx,-0.0009764773421920836 +karman_re100,sr,342,136.8,force,front_fy,0.0035309186205267906 +karman_re100,sr,342,136.8,force,upper_fx,-0.0015707729617133737 +karman_re100,sr,342,136.8,force,upper_fy,0.004561798647046089 +karman_re100,sr,342,136.8,force,lower_fx,0.0027598156593739986 +karman_re100,sr,342,136.8,force,lower_fy,-0.006169435568153858 +karman_re100,sr,343,137.2,force,front_fx,-0.0003255055926274508 +karman_re100,sr,343,137.2,force,front_fy,0.0037074415013194084 +karman_re100,sr,343,137.2,force,upper_fx,-0.0035357687156647444 +karman_re100,sr,343,137.2,force,upper_fy,0.0036227344535291195 +karman_re100,sr,343,137.2,force,lower_fx,0.004797561559826136 +karman_re100,sr,343,137.2,force,lower_fy,-0.006400716491043568 +karman_re100,sr,344,137.6,force,front_fx,0.0014850135194137692 +karman_re100,sr,344,137.6,force,front_fy,0.0035816708113998175 +karman_re100,sr,344,137.6,force,upper_fx,-0.005922581534832716 +karman_re100,sr,344,137.6,force,upper_fy,0.002439874457195401 +karman_re100,sr,344,137.6,force,lower_fx,0.005565743427723646 +karman_re100,sr,344,137.6,force,lower_fy,-0.006135114934295416 +karman_re100,sr,345,138.0,force,front_fx,0.003920386079698801 +karman_re100,sr,345,138.0,force,front_fy,0.002964919898658991 +karman_re100,sr,345,138.0,force,upper_fx,-0.008327600546181202 +karman_re100,sr,345,138.0,force,upper_fy,0.0016646692529320717 +karman_re100,sr,345,138.0,force,lower_fx,0.005014178343117237 +karman_re100,sr,345,138.0,force,lower_fy,-0.00553911691531539 +karman_re100,sr,346,138.4,force,front_fx,0.0052825878374278545 +karman_re100,sr,346,138.4,force,front_fy,0.0018824173603206873 +karman_re100,sr,346,138.4,force,upper_fx,-0.009316782467067242 +karman_re100,sr,346,138.4,force,upper_fy,0.002146405866369605 +karman_re100,sr,346,138.4,force,lower_fx,0.00401696702465415 +karman_re100,sr,346,138.4,force,lower_fy,-0.004746686667203903 +karman_re100,sr,347,138.8,force,front_fx,0.004900434985756874 +karman_re100,sr,347,138.8,force,front_fy,0.00042914069490507245 +karman_re100,sr,347,138.8,force,upper_fx,-0.007651944644749165 +karman_re100,sr,347,138.8,force,upper_fy,0.0031590149737894535 +karman_re100,sr,347,138.8,force,lower_fx,0.003179021878167987 +karman_re100,sr,347,138.8,force,lower_fy,-0.004411743022501469 +karman_re100,sr,348,139.2,force,front_fx,0.003279660828411579 +karman_re100,sr,348,139.2,force,front_fy,-0.0009656213223934174 +karman_re100,sr,348,139.2,force,upper_fx,-0.004784202203154564 +karman_re100,sr,348,139.2,force,upper_fy,0.0034351106733083725 +karman_re100,sr,348,139.2,force,lower_fx,0.0023271215613931417 +karman_re100,sr,348,139.2,force,lower_fy,-0.0046202694065868855 +karman_re100,sr,349,139.6,force,front_fx,0.0011353523004800081 +karman_re100,sr,349,139.6,force,front_fy,-0.002169913612306118 +karman_re100,sr,349,139.6,force,upper_fx,-0.0022607441060245037 +karman_re100,sr,349,139.6,force,upper_fy,0.0038579353131353855 +karman_re100,sr,349,139.6,force,lower_fx,0.0012299907393753529 +karman_re100,sr,349,139.6,force,lower_fy,-0.004984927363693714 +karman_re100,sr,350,140.0,force,front_fx,-0.0004586018330883235 +karman_re100,sr,350,140.0,force,front_fy,-0.0030476152896881104 +karman_re100,sr,350,140.0,force,upper_fx,0.00012046048504998907 +karman_re100,sr,350,140.0,force,upper_fy,0.005048243794590235 +karman_re100,sr,350,140.0,force,lower_fx,-2.1952610040898435e-05 +karman_re100,sr,350,140.0,force,lower_fy,-0.005042933393269777 +karman_re100,sr,351,140.4,force,front_fx,-0.0009786050068214536 +karman_re100,sr,351,140.4,force,front_fy,-0.003520556725561619 +karman_re100,sr,351,140.4,force,upper_fx,0.00267119356431067 +karman_re100,sr,351,140.4,force,upper_fy,0.006135010160505772 +karman_re100,sr,351,140.4,force,lower_fx,-0.001512880902737379 +karman_re100,sr,351,140.4,force,lower_fy,-0.004581512417644262 +karman_re100,sr,352,140.8,force,front_fx,-0.00036519396235235035 +karman_re100,sr,352,140.8,force,front_fy,-0.0037058705929666758 +karman_re100,sr,352,140.8,force,upper_fx,0.004748908337205648 +karman_re100,sr,352,140.8,force,upper_fy,0.0064030797220766544 +karman_re100,sr,352,140.8,force,lower_fx,-0.0034544295631349087 +karman_re100,sr,352,140.8,force,lower_fy,-0.0036588660441339016 +karman_re100,sr,353,141.2,force,front_fx,0.0014072873163968325 +karman_re100,sr,353,141.2,force,front_fy,-0.0035960772074759007 +karman_re100,sr,353,141.2,force,upper_fx,0.005563999991863966 +karman_re100,sr,353,141.2,force,upper_fy,0.00615903502330184 +karman_re100,sr,353,141.2,force,lower_fx,-0.005829907022416592 +karman_re100,sr,353,141.2,force,lower_fy,-0.00248385570012033 +karman_re100,sr,354,141.6,force,front_fx,0.003834527451545 +karman_re100,sr,354,141.6,force,front_fy,-0.0029923482798039913 +karman_re100,sr,354,141.6,force,upper_fx,0.005044673569500446 +karman_re100,sr,354,141.6,force,upper_fy,0.0055716210044920444 +karman_re100,sr,354,141.6,force,lower_fx,-0.00825770478695631 +karman_re100,sr,354,141.6,force,lower_fy,-0.0016821445897221565 +karman_re100,sr,355,142.0,force,front_fx,0.005263558588922024 +karman_re100,sr,355,142.0,force,front_fy,-0.001928618410602212 +karman_re100,sr,355,142.0,force,upper_fx,0.0040438007563352585 +karman_re100,sr,355,142.0,force,upper_fy,0.0047690835781395435 +karman_re100,sr,355,142.0,force,lower_fx,-0.009332885034382343 +karman_re100,sr,355,142.0,force,lower_fy,-0.002107204869389534 +karman_re100,sr,356,142.4,force,front_fx,0.004935474134981632 +karman_re100,sr,356,142.4,force,front_fy,-0.00047159771202132106 +karman_re100,sr,356,142.4,force,upper_fx,0.003202816005796194 +karman_re100,sr,356,142.4,force,upper_fy,0.0044088405556976795 +karman_re100,sr,356,142.4,force,lower_fx,-0.007747788913547993 +karman_re100,sr,356,142.4,force,lower_fy,-0.003131900681182742 +karman_re100,sr,357,142.8,force,front_fx,0.0033542548771947622 +karman_re100,sr,357,142.8,force,front_fy,0.0009198574698530138 +karman_re100,sr,357,142.8,force,upper_fx,0.0023620123974978924 +karman_re100,sr,357,142.8,force,upper_fy,0.004604430869221687 +karman_re100,sr,357,142.8,force,lower_fx,-0.004881692118942738 +karman_re100,sr,357,142.8,force,lower_fy,-0.0034250703174620867 +karman_re100,sr,358,143.2,force,front_fx,0.001209536800161004 +karman_re100,sr,358,143.2,force,front_fy,0.002132178982719779 +karman_re100,sr,358,143.2,force,upper_fx,0.0012770389439538121 +karman_re100,sr,358,143.2,force,upper_fy,0.004976935219019651 +karman_re100,sr,358,143.2,force,lower_fx,-0.002338576829060912 +karman_re100,sr,358,143.2,force,lower_fy,-0.003834751434624195 +karman_re100,sr,359,143.6,force,front_fx,-0.00041864169179461896 +karman_re100,sr,359,143.6,force,front_fy,0.0030335814226418734 +karman_re100,sr,359,143.6,force,upper_fx,2.7076890546595678e-05 +karman_re100,sr,359,143.6,force,upper_fy,0.005056170281022787 +karman_re100,sr,359,143.6,force,lower_fx,3.8692694943165407e-05 +karman_re100,sr,359,143.6,force,lower_fy,-0.0050126477144658566 +karman_re100,sr,360,144.0,force,front_fx,-0.000981195131316781 +karman_re100,sr,360,144.0,force,front_fy,0.003508938942104578 +karman_re100,sr,360,144.0,force,upper_fx,-0.0014571378706023097 +karman_re100,sr,360,144.0,force,upper_fy,0.004609379451721907 +karman_re100,sr,360,144.0,force,lower_fx,0.002584518399089575 +karman_re100,sr,360,144.0,force,lower_fy,-0.006115890108048916 +karman_re100,sr,361,144.4,force,front_fx,-0.00040879863081499934 +karman_re100,sr,361,144.4,force,front_fy,0.0037024617195129395 +karman_re100,sr,361,144.4,force,upper_fx,-0.0033853999339044094 +karman_re100,sr,361,144.4,force,upper_fy,0.003694486804306507 +karman_re100,sr,361,144.4,force,lower_fx,0.0046904198825359344 +karman_re100,sr,361,144.4,force,lower_fy,-0.006399929523468018 +karman_re100,sr,362,144.8,force,front_fx,0.001329360413365066 +karman_re100,sr,362,144.8,force,front_fy,0.0036050518974661827 +karman_re100,sr,362,144.8,force,upper_fx,-0.005745419301092625 +karman_re100,sr,362,144.8,force,upper_fy,0.002517958637326956 +karman_re100,sr,362,144.8,force,lower_fx,0.0055581009946763515 +karman_re100,sr,362,144.8,force,lower_fy,-0.006165500730276108 +karman_re100,sr,363,145.2,force,front_fx,0.003763047978281975 +karman_re100,sr,363,145.2,force,front_fy,0.0030207850504666567 +karman_re100,sr,363,145.2,force,upper_fx,-0.00818124320358038 +karman_re100,sr,363,145.2,force,upper_fy,0.0016904828371480107 +karman_re100,sr,363,145.2,force,lower_fx,0.005081069655716419 +karman_re100,sr,363,145.2,force,lower_fy,-0.005597032140940428 +karman_re100,sr,364,145.6,force,front_fx,0.005248729605227709 +karman_re100,sr,364,145.6,force,front_fy,0.001975836232304573 +karman_re100,sr,364,145.6,force,upper_fx,-0.009332709945738316 +karman_re100,sr,364,145.6,force,upper_fy,0.0020813848823308945 +karman_re100,sr,364,145.6,force,lower_fx,0.004080952610820532 +karman_re100,sr,364,145.6,force,lower_fy,-0.0047947438433766365 +karman_re100,sr,365,146.0,force,front_fx,0.004969930276274681 +karman_re100,sr,365,146.0,force,front_fy,0.0005240854807198048 +karman_re100,sr,365,146.0,force,upper_fx,-0.007832754403352737 +karman_re100,sr,365,146.0,force,upper_fy,0.003111814148724079 +karman_re100,sr,365,146.0,force,lower_fx,0.0032306748908013105 +karman_re100,sr,365,146.0,force,lower_fy,-0.0044150082394480705 +karman_re100,sr,366,146.4,force,front_fx,0.0034176006447523832 +karman_re100,sr,366,146.4,force,front_fy,-0.000871832889970392 +karman_re100,sr,366,146.4,force,upper_fx,-0.0049814884550869465 +karman_re100,sr,366,146.4,force,upper_fy,0.003418096574023366 +karman_re100,sr,366,146.4,force,lower_fx,0.0023905218113213778 +karman_re100,sr,366,146.4,force,lower_fy,-0.004591843578964472 +karman_re100,sr,367,146.8,force,front_fx,0.0012779535027220845 +karman_re100,sr,367,146.8,force,front_fy,-0.002094416879117489 +karman_re100,sr,367,146.8,force,upper_fx,-0.002426979597657919 +karman_re100,sr,367,146.8,force,upper_fy,0.003793315961956978 +karman_re100,sr,367,146.8,force,lower_fx,0.0013140751980245113 +karman_re100,sr,367,146.8,force,lower_fy,-0.004961409606039524 +karman_re100,sr,368,147.2,force,front_fx,-0.00037779140984639525 +karman_re100,sr,368,147.2,force,front_fy,-0.003002510406076908 +karman_re100,sr,368,147.2,force,upper_fx,-5.204135231906548e-05 +karman_re100,sr,368,147.2,force,upper_fy,0.004957939963787794 +karman_re100,sr,368,147.2,force,lower_fx,7.97154862084426e-05 +karman_re100,sr,368,147.2,force,lower_fy,-0.005056271329522133 +karman_re100,sr,369,147.6,force,front_fx,-0.0009781495900824666 +karman_re100,sr,369,147.6,force,front_fy,-0.003499534446746111 +karman_re100,sr,369,147.6,force,upper_fx,0.0024989540688693523 +karman_re100,sr,369,147.6,force,upper_fy,0.006093114614486694 +karman_re100,sr,369,147.6,force,lower_fx,-0.0013924367958679795 +karman_re100,sr,369,147.6,force,lower_fy,-0.004634208045899868 +karman_re100,sr,370,148.0,force,front_fx,-0.0004477726179175079 +karman_re100,sr,370,148.0,force,front_fy,-0.0036994023248553276 +karman_re100,sr,370,148.0,force,upper_fx,0.0046368930488824844 +karman_re100,sr,370,148.0,force,upper_fy,0.00641038129106164 +karman_re100,sr,370,148.0,force,lower_fx,-0.0033042121212929487 +karman_re100,sr,370,148.0,force,lower_fy,-0.0037386277690529823 +karman_re100,sr,371,148.4,force,front_fx,0.0012482794700190425 +karman_re100,sr,371,148.4,force,front_fy,-0.0036173881962895393 +karman_re100,sr,371,148.4,force,upper_fx,0.005549740977585316 +karman_re100,sr,371,148.4,force,upper_fy,0.006183503661304712 +karman_re100,sr,371,148.4,force,lower_fx,-0.005656436085700989 +karman_re100,sr,371,148.4,force,lower_fy,-0.00256432150490582 +karman_re100,sr,372,148.8,force,front_fx,0.003676161402836442 +karman_re100,sr,372,148.8,force,front_fy,-0.0030483328737318516 +karman_re100,sr,372,148.8,force,upper_fx,0.005107510834932327 +karman_re100,sr,372,148.8,force,upper_fy,0.005622413940727711 +karman_re100,sr,372,148.8,force,lower_fx,-0.008107896894216537 +karman_re100,sr,372,148.8,force,lower_fy,-0.0016991313314065337 +karman_re100,sr,373,149.2,force,front_fx,0.005225645378232002 +karman_re100,sr,373,149.2,force,front_fy,-0.0020187159534543753 +karman_re100,sr,373,149.2,force,upper_fx,0.004111369140446186 +karman_re100,sr,373,149.2,force,upper_fy,0.00481547461822629 +karman_re100,sr,373,149.2,force,lower_fx,-0.009336933493614197 +karman_re100,sr,373,149.2,force,lower_fy,-0.0020419834181666374 +karman_re100,sr,374,149.6,force,front_fx,0.005006362684071064 +karman_re100,sr,374,149.6,force,front_fy,-0.0005714422441087663 +karman_re100,sr,374,149.6,force,upper_fx,0.0032606804743409157 +karman_re100,sr,374,149.6,force,upper_fy,0.004416678566485643 +karman_re100,sr,374,149.6,force,lower_fx,-0.007920595817267895 +karman_re100,sr,374,149.6,force,lower_fy,-0.0030861464329063892 +karman_re100,sr,375,150.0,force,front_fx,0.003492498304694891 +karman_re100,sr,375,150.0,force,front_fy,0.0008272473351098597 +karman_re100,sr,375,150.0,force,upper_fx,0.002428318839520216 +karman_re100,sr,375,150.0,force,upper_fy,0.004583748988807201 +karman_re100,sr,375,150.0,force,lower_fx,-0.00507226400077343 +karman_re100,sr,375,150.0,force,lower_fy,-0.0034235205966979265 +karman_re100,sr,376,150.4,force,front_fx,0.0013510590652003884 +karman_re100,sr,376,150.4,force,front_fy,0.0020573281217366457 +karman_re100,sr,376,150.4,force,upper_fx,0.0013556568883359432 +karman_re100,sr,376,150.4,force,upper_fy,0.0049565196968615055 +karman_re100,sr,376,150.4,force,lower_fx,-0.002503243274986744 +karman_re100,sr,376,150.4,force,lower_fy,-0.0037801871076226234 +karman_re100,sr,377,150.8,force,front_fx,-0.00034315098309889436 +karman_re100,sr,377,150.8,force,front_fy,0.0029770061373710632 +karman_re100,sr,377,150.8,force,upper_fx,0.00011102823191322386 +karman_re100,sr,377,150.8,force,upper_fy,0.0050597041845321655 +karman_re100,sr,377,150.8,force,lower_fx,-0.00013664402649737895 +karman_re100,sr,377,150.8,force,lower_fy,-0.004911092109978199 +karman_re100,sr,378,151.2,force,front_fx,-0.00097772222943604 +karman_re100,sr,378,151.2,force,front_fy,0.003489901078864932 +karman_re100,sr,378,151.2,force,upper_fx,-0.0013405890204012394 +karman_re100,sr,378,151.2,force,upper_fy,0.004652753937989473 +karman_re100,sr,378,151.2,force,lower_fx,0.002408822998404503 +karman_re100,sr,378,151.2,force,lower_fy,-0.0060553764924407005 +karman_re100,sr,379,151.6,force,front_fx,-0.0004843860515393317 +karman_re100,sr,379,151.6,force,front_fy,0.003696253290399909 +karman_re100,sr,379,151.6,force,upper_fx,-0.0032319962047040462 +karman_re100,sr,379,151.6,force,upper_fy,0.003769736038520932 +karman_re100,sr,379,151.6,force,lower_fx,0.004579821135848761 +karman_re100,sr,379,151.6,force,lower_fy,-0.006404331419616938 +karman_re100,sr,380,152.0,force,front_fx,0.0011765876552090049 +karman_re100,sr,380,152.0,force,front_fy,0.0036297219339758158 +karman_re100,sr,380,152.0,force,upper_fx,-0.005568629130721092 +karman_re100,sr,380,152.0,force,upper_fy,0.0026020000223070383 +karman_re100,sr,380,152.0,force,lower_fx,0.005547189153730869 +karman_re100,sr,380,152.0,force,lower_fy,-0.006194401532411575 +karman_re100,sr,381,152.4,force,front_fx,0.0035987605806440115 +karman_re100,sr,381,152.4,force,front_fy,0.003077169880270958 +karman_re100,sr,381,152.4,force,upper_fx,-0.008031897246837616 +karman_re100,sr,381,152.4,force,upper_fy,0.001717042876407504 +karman_re100,sr,381,152.4,force,lower_fx,0.005142673384398222 +karman_re100,sr,381,152.4,force,lower_fy,-0.005652172490954399 +karman_re100,sr,382,152.8,force,front_fx,0.0052035837434232235 +karman_re100,sr,382,152.8,force,front_fy,0.0020637535490095615 +karman_re100,sr,382,152.8,force,upper_fx,-0.009338896721601486 +karman_re100,sr,382,152.8,force,upper_fy,0.002009515417739749 +karman_re100,sr,382,152.8,force,lower_fx,0.004143148194998503 +karman_re100,sr,382,152.8,force,lower_fy,-0.004842123482376337 +karman_re100,sr,383,153.2,force,front_fx,0.005034199450165033 +karman_re100,sr,383,153.2,force,front_fy,0.0006261968519538641 +karman_re100,sr,383,153.2,force,upper_fx,-0.008013729006052017 +karman_re100,sr,383,153.2,force,upper_fy,0.003053303575143218 +karman_re100,sr,383,153.2,force,lower_fx,0.003283606842160225 +karman_re100,sr,383,153.2,force,lower_fy,-0.004417827352881432 +karman_re100,sr,384,153.6,force,front_fx,0.0035607973113656044 +karman_re100,sr,384,153.6,force,front_fy,-0.0007819575839675963 +karman_re100,sr,384,153.6,force,upper_fx,-0.005177444312721491 +karman_re100,sr,384,153.6,force,upper_fy,0.00341150164604187 +karman_re100,sr,384,153.6,force,lower_fx,0.002457072027027607 +karman_re100,sr,384,153.6,force,lower_fy,-0.004566097166389227 +karman_re100,sr,385,154.0,force,front_fx,0.0014338047476485372 +karman_re100,sr,385,154.0,force,front_fy,-0.002022185828536749 +karman_re100,sr,385,154.0,force,upper_fx,-0.0025871971156448126 +karman_re100,sr,385,154.0,force,upper_fy,0.0037472830154001713 +karman_re100,sr,385,154.0,force,lower_fx,0.0013993307948112488 +karman_re100,sr,385,154.0,force,lower_fy,-0.0049417950212955475 +karman_re100,sr,386,154.4,force,front_fx,-0.0002921423001680523 +karman_re100,sr,386,154.4,force,front_fy,-0.002952620619907975 +karman_re100,sr,386,154.4,force,upper_fx,-0.0002193617692682892 +karman_re100,sr,386,154.4,force,upper_fy,0.004870987962931395 +karman_re100,sr,386,154.4,force,lower_fx,0.00016461826453451067 +karman_re100,sr,386,154.4,force,lower_fy,-0.005069645121693611 +karman_re100,sr,387,154.8,force,front_fx,-0.0009737185318954289 +karman_re100,sr,387,154.8,force,front_fy,-0.0034754001535475254 +karman_re100,sr,387,154.8,force,upper_fx,0.002323857042938471 +karman_re100,sr,387,154.8,force,upper_fy,0.006038909777998924 +karman_re100,sr,387,154.8,force,lower_fx,-0.0012811964843422174 +karman_re100,sr,387,154.8,force,lower_fy,-0.004681746941059828 +karman_re100,sr,388,155.2,force,front_fx,-0.0005227532819844782 +karman_re100,sr,388,155.2,force,front_fy,-0.003691502148285508 +karman_re100,sr,388,155.2,force,upper_fx,0.004519280977547169 +karman_re100,sr,388,155.2,force,upper_fy,0.006407614331692457 +karman_re100,sr,388,155.2,force,lower_fx,-0.0031614694744348526 +karman_re100,sr,388,155.2,force,lower_fy,-0.0038102047983556986 +karman_re100,sr,389,155.6,force,front_fx,0.001096384017728269 +karman_re100,sr,389,155.6,force,front_fy,-0.00363894528709352 +karman_re100,sr,389,155.6,force,upper_fx,0.005534120835363865 +karman_re100,sr,389,155.6,force,upper_fy,0.006203678902238607 +karman_re100,sr,389,155.6,force,lower_fx,-0.0054852585308253765 +karman_re100,sr,389,155.6,force,lower_fy,-0.002640975173562765 +karman_re100,sr,390,156.0,force,front_fx,0.0035165741574019194 +karman_re100,sr,390,156.0,force,front_fy,-0.0031034532003104687 +karman_re100,sr,390,156.0,force,upper_fx,0.005173000507056713 +karman_re100,sr,390,156.0,force,upper_fy,0.005674024112522602 +karman_re100,sr,390,156.0,force,lower_fx,-0.007954493165016174 +karman_re100,sr,390,156.0,force,lower_fy,-0.0017283851047977805 +karman_re100,sr,391,156.4,force,front_fx,0.005175294820219278 +karman_re100,sr,391,156.4,force,front_fy,-0.0021067732013761997 +karman_re100,sr,391,156.4,force,upper_fx,0.0041810269467532635 +karman_re100,sr,391,156.4,force,upper_fy,0.0048669856041669846 +karman_re100,sr,391,156.4,force,lower_fx,-0.009330550208687782 +karman_re100,sr,391,156.4,force,lower_fy,-0.0019778297282755375 +karman_re100,sr,392,156.8,force,front_fx,0.00506777036935091 +karman_re100,sr,392,156.8,force,front_fy,-0.0006693261675536633 +karman_re100,sr,392,156.8,force,upper_fx,0.0033147805370390415 +karman_re100,sr,392,156.8,force,upper_fy,0.004425478167831898 +karman_re100,sr,392,156.8,force,lower_fx,-0.008092867210507393 +karman_re100,sr,392,156.8,force,lower_fy,-0.003033267566934228 +karman_re100,sr,393,157.2,force,front_fx,0.003627912374213338 +karman_re100,sr,393,157.2,force,front_fy,0.0007299298886209726 +karman_re100,sr,393,157.2,force,upper_fx,0.0024886042810976505 +karman_re100,sr,393,157.2,force,upper_fy,0.004557533655315638 +karman_re100,sr,393,157.2,force,lower_fx,-0.005268186330795288 +karman_re100,sr,393,157.2,force,lower_fy,-0.003407990327104926 +karman_re100,sr,394,157.6,force,front_fx,0.0014982037246227264 +karman_re100,sr,394,157.6,force,front_fy,0.0019776683766394854 +karman_re100,sr,394,157.6,force,upper_fx,0.001435674261301756 +karman_re100,sr,394,157.6,force,upper_fy,0.004929561633616686 +karman_re100,sr,394,157.6,force,lower_fx,-0.0026729837991297245 +karman_re100,sr,394,157.6,force,lower_fy,-0.0037179451901465654 +karman_re100,sr,395,158.0,force,front_fx,-0.0002522772701922804 +karman_re100,sr,395,158.0,force,front_fy,0.0029265317134559155 +karman_re100,sr,395,158.0,force,upper_fx,0.0002061175327980891 +karman_re100,sr,395,158.0,force,upper_fy,0.005067616701126099 +karman_re100,sr,395,158.0,force,lower_fx,-0.00030871780472807586 +karman_re100,sr,395,158.0,force,lower_fy,-0.004815996158868074 +karman_re100,sr,396,158.4,force,front_fx,-0.0009690613369457424 +karman_re100,sr,396,158.4,force,front_fy,0.003468162380158901 +karman_re100,sr,396,158.4,force,upper_fx,-0.0012226825347170234 +karman_re100,sr,396,158.4,force,upper_fy,0.004699119366705418 +karman_re100,sr,396,158.4,force,lower_fx,0.0022356854751706123 +karman_re100,sr,396,158.4,force,lower_fy,-0.0060044084675610065 +karman_re100,sr,397,158.8,force,front_fx,-0.0005567664629779756 +karman_re100,sr,397,158.8,force,front_fy,0.003688956145197153 +karman_re100,sr,397,158.8,force,upper_fx,-0.0030827245209366083 +karman_re100,sr,397,158.8,force,upper_fy,0.0038481103256344795 +karman_re100,sr,397,158.8,force,lower_fx,0.004463663790374994 +karman_re100,sr,397,158.8,force,lower_fy,-0.006411041133105755 +karman_re100,sr,398,159.2,force,front_fx,0.0010222390992566943 +karman_re100,sr,398,159.2,force,front_fy,0.0036469269543886185 +karman_re100,sr,398,159.2,force,upper_fx,-0.005395802203565836 +karman_re100,sr,398,159.2,force,upper_fy,0.00268710870295763 +karman_re100,sr,398,159.2,force,lower_fx,0.005525624845176935 +karman_re100,sr,398,159.2,force,lower_fy,-0.006221686024218798 +karman_re100,sr,399,159.6,force,front_fx,0.0034305385779589415 +karman_re100,sr,399,159.6,force,front_fy,0.003132120007649064 +karman_re100,sr,399,159.6,force,upper_fx,-0.007877938449382782 +karman_re100,sr,399,159.6,force,upper_fy,0.0017467669676989317 +karman_re100,sr,399,159.6,force,lower_fx,0.005199769511818886 +karman_re100,sr,399,159.6,force,lower_fy,-0.005702096037566662 +karman_re100,sr,0,0.0,alpha,front,1.513372732826876 +karman_re100,sr,0,0.0,alpha,upper,-4.302448122361787 +karman_re100,sr,0,0.0,alpha,lower,2.559969238659445 +karman_re100,sr,1,0.4,alpha,front,1.9326127554080135 +karman_re100,sr,1,0.4,alpha,upper,-4.65171864772044 +karman_re100,sr,1,0.4,alpha,lower,2.2106987133007925 +karman_re100,sr,2,0.8,alpha,front,2.251731303111575 +karman_re100,sr,2,0.8,alpha,upper,-5.542898868760844 +karman_re100,sr,2,0.8,alpha,lower,1.319518492260388 +karman_re100,sr,3,1.2,alpha,front,2.5956187268740973 +karman_re100,sr,3,1.2,alpha,upper,-5.955023631419319 +karman_re100,sr,3,1.2,alpha,lower,0.907393729601913 +karman_re100,sr,4,1.6,alpha,front,2.6574730741171537 +karman_re100,sr,4,1.6,alpha,upper,-4.835524895162806 +karman_re100,sr,4,1.6,alpha,lower,2.0268924658584266 +karman_re100,sr,5,2.0,alpha,front,2.1541999797462994 +karman_re100,sr,5,2.0,alpha,upper,-3.2707165994032565 +karman_re100,sr,5,2.0,alpha,lower,3.591700761617976 +karman_re100,sr,6,2.4,alpha,front,1.3299256082766873 +karman_re100,sr,6,2.4,alpha,upper,-3.1413365641849746 +karman_re100,sr,6,2.4,alpha,lower,3.721080796836258 +karman_re100,sr,7,2.8,alpha,front,0.6308023034074302 +karman_re100,sr,7,2.8,alpha,upper,-3.5338945395541854 +karman_re100,sr,7,2.8,alpha,lower,3.328522821467047 +karman_re100,sr,8,3.2,alpha,front,0.007957291697676162 +karman_re100,sr,8,3.2,alpha,upper,-3.023298843865036 +karman_re100,sr,8,3.2,alpha,lower,3.839118517156196 +karman_re100,sr,9,3.6,alpha,front,-0.6913321822224278 +karman_re100,sr,9,3.6,alpha,upper,-2.0600525227543836 +karman_re100,sr,9,3.6,alpha,lower,4.802364838266849 +karman_re100,sr,10,4.0,alpha,front,-1.3801707825117122 +karman_re100,sr,10,4.0,alpha,upper,-1.410248257311483 +karman_re100,sr,10,4.0,alpha,lower,5.45216910370975 +karman_re100,sr,11,4.4,alpha,front,-1.8858760094835016 +karman_re100,sr,11,4.4,alpha,upper,-1.1278640480146365 +karman_re100,sr,11,4.4,alpha,lower,5.734553313006596 +karman_re100,sr,12,4.8,alpha,front,-2.1263063341048674 +karman_re100,sr,12,4.8,alpha,upper,-1.3757128115189938 +karman_re100,sr,12,4.8,alpha,lower,5.486704549502239 +karman_re100,sr,13,5.2,alpha,front,-2.0109305953043135 +karman_re100,sr,13,5.2,alpha,upper,-2.2446101034051162 +karman_re100,sr,13,5.2,alpha,lower,4.617807257616116 +karman_re100,sr,14,5.6,alpha,front,-1.499003490247036 +karman_re100,sr,14,5.6,alpha,upper,-2.8873408749890643 +karman_re100,sr,14,5.6,alpha,lower,3.9750764860321683 +karman_re100,sr,15,6.0,alpha,front,-0.8343210264869885 +karman_re100,sr,15,6.0,alpha,upper,-3.008129982085417 +karman_re100,sr,15,6.0,alpha,lower,3.8542873789358154 +karman_re100,sr,16,6.4,alpha,front,-0.17275064506470256 +karman_re100,sr,16,6.4,alpha,upper,-3.3375360795423727 +karman_re100,sr,16,6.4,alpha,lower,3.5248812814788595 +karman_re100,sr,17,6.8,alpha,front,0.5146769404736861 +karman_re100,sr,17,6.8,alpha,upper,-4.094443008022344 +karman_re100,sr,17,6.8,alpha,lower,2.767974352998888 +karman_re100,sr,18,7.2,alpha,front,1.2369639573970967 +karman_re100,sr,18,7.2,alpha,upper,-4.940403551004776 +karman_re100,sr,18,7.2,alpha,lower,1.9220138100164565 +karman_re100,sr,19,7.6,alpha,front,1.8939123744615818 +karman_re100,sr,19,7.6,alpha,upper,-5.640243867699832 +karman_re100,sr,19,7.6,alpha,lower,1.2221734933214004 +karman_re100,sr,20,8.0,alpha,front,2.3646731333189335 +karman_re100,sr,20,8.0,alpha,upper,-6.016075049633655 +karman_re100,sr,20,8.0,alpha,lower,0.8463423113875769 +karman_re100,sr,21,8.4,alpha,front,2.5524186031372325 +karman_re100,sr,21,8.4,alpha,upper,-5.538315355575213 +karman_re100,sr,21,8.4,alpha,lower,1.3241020054460195 +karman_re100,sr,22,8.8,alpha,front,2.302894887344233 +karman_re100,sr,22,8.8,alpha,upper,-4.563873103939032 +karman_re100,sr,22,8.8,alpha,lower,2.2985442570822006 +karman_re100,sr,23,9.2,alpha,front,1.6863659673343907 +karman_re100,sr,23,9.2,alpha,upper,-4.264958650583089 +karman_re100,sr,23,9.2,alpha,lower,2.597458710438143 +karman_re100,sr,24,9.6,alpha,front,1.0139165122223515 +karman_re100,sr,24,9.6,alpha,upper,-4.377057717517259 +karman_re100,sr,24,9.6,alpha,lower,2.485359643503973 +karman_re100,sr,25,10.0,alpha,front,0.35167197523798854 +karman_re100,sr,25,10.0,alpha,upper,-3.897487135343939 +karman_re100,sr,25,10.0,alpha,lower,2.964930225677293 +karman_re100,sr,26,10.4,alpha,front,-0.37104139082742243 +karman_re100,sr,26,10.4,alpha,upper,-2.874653924853375 +karman_re100,sr,26,10.4,alpha,lower,3.987763436167857 +karman_re100,sr,27,10.8,alpha,front,-1.159184731553554 +karman_re100,sr,27,10.8,alpha,upper,-1.9828060296923438 +karman_re100,sr,27,10.8,alpha,lower,4.8796113313288885 +karman_re100,sr,28,11.2,alpha,front,-1.8667150065858198 +karman_re100,sr,28,11.2,alpha,upper,-1.3126807510808995 +karman_re100,sr,28,11.2,alpha,lower,5.549736609940332 +karman_re100,sr,29,11.6,alpha,front,-2.382280586986875 +karman_re100,sr,29,11.6,alpha,upper,-0.8207456754558459 +karman_re100,sr,29,11.6,alpha,lower,6.041671685565387 +karman_re100,sr,30,12.0,alpha,front,-2.6294547538190454 +karman_re100,sr,30,12.0,alpha,upper,-1.1168509647400193 +karman_re100,sr,30,12.0,alpha,lower,5.7455663962812125 +karman_re100,sr,31,12.4,alpha,front,-2.4433790719239266 +karman_re100,sr,31,12.4,alpha,upper,-2.1543849571826197 +karman_re100,sr,31,12.4,alpha,lower,4.7080324038386125 +karman_re100,sr,32,12.8,alpha,front,-1.8344732878929875 +karman_re100,sr,32,12.8,alpha,upper,-2.627554210869821 +karman_re100,sr,32,12.8,alpha,lower,4.234863150151411 +karman_re100,sr,33,13.2,alpha,front,-1.1390259318042013 +karman_re100,sr,33,13.2,alpha,upper,-2.4528111581375014 +karman_re100,sr,33,13.2,alpha,lower,4.409606202883731 +karman_re100,sr,34,13.6,alpha,front,-0.4735926118163332 +karman_re100,sr,34,13.6,alpha,upper,-2.773390650915982 +karman_re100,sr,34,13.6,alpha,lower,4.08902671010525 +karman_re100,sr,35,14.0,alpha,front,0.23960240697937324 +karman_re100,sr,35,14.0,alpha,upper,-3.7734774197998076 +karman_re100,sr,35,14.0,alpha,lower,3.088939941221425 +karman_re100,sr,36,14.4,alpha,front,1.0362984546834026 +karman_re100,sr,36,14.4,alpha,upper,-4.755788269181608 +karman_re100,sr,36,14.4,alpha,lower,2.106629091839625 +karman_re100,sr,37,14.8,alpha,front,1.7754689642297268 +karman_re100,sr,37,14.8,alpha,upper,-5.44110676890668 +karman_re100,sr,37,14.8,alpha,lower,1.4213105921145517 +karman_re100,sr,38,15.2,alpha,front,2.323576139616774 +karman_re100,sr,38,15.2,alpha,upper,-5.984922963089299 +karman_re100,sr,38,15.2,alpha,lower,0.8774943979319333 +karman_re100,sr,39,15.6,alpha,front,2.6129248834550705 +karman_re100,sr,39,15.6,alpha,upper,-5.860880210198417 +karman_re100,sr,39,15.6,alpha,lower,1.001537150822816 +karman_re100,sr,40,16.0,alpha,front,2.4988332758583622 +karman_re100,sr,40,16.0,alpha,upper,-4.865213442470681 +karman_re100,sr,40,16.0,alpha,lower,1.9972039185505508 +karman_re100,sr,41,16.4,alpha,front,1.9252349283600703 +karman_re100,sr,41,16.4,alpha,upper,-4.1982501576595554 +karman_re100,sr,41,16.4,alpha,lower,2.664167203361677 +karman_re100,sr,42,16.8,alpha,front,1.2137648364972524 +karman_re100,sr,42,16.8,alpha,upper,-4.30282630102229 +karman_re100,sr,42,16.8,alpha,lower,2.559591059998942 +karman_re100,sr,43,17.2,alpha,front,0.5344308361875822 +karman_re100,sr,43,17.2,alpha,upper,-4.110250693336372 +karman_re100,sr,43,17.2,alpha,lower,2.7521666676848597 +karman_re100,sr,44,17.6,alpha,front,-0.1716458446793458 +karman_re100,sr,44,17.6,alpha,upper,-3.214649633787771 +karman_re100,sr,44,17.6,alpha,lower,3.6477677272334614 +karman_re100,sr,45,18.0,alpha,front,-0.9597031940802216 +karman_re100,sr,45,18.0,alpha,upper,-2.2244895980046415 +karman_re100,sr,45,18.0,alpha,lower,4.637927763016591 +karman_re100,sr,46,18.4,alpha,front,-1.7074647997871462 +karman_re100,sr,46,18.4,alpha,upper,-1.4971809350508714 +karman_re100,sr,46,18.4,alpha,lower,5.365236425970361 +karman_re100,sr,47,18.8,alpha,front,-2.2732695604493474 +karman_re100,sr,47,18.8,alpha,upper,-0.9318667151295199 +karman_re100,sr,47,18.8,alpha,lower,5.930550645891712 +karman_re100,sr,48,19.2,alpha,front,-2.5812364751509502 +karman_re100,sr,48,19.2,alpha,upper,-0.9686649146827694 +karman_re100,sr,48,19.2,alpha,lower,5.893752446338462 +karman_re100,sr,49,19.6,alpha,front,-2.5049687963201905 +karman_re100,sr,49,19.6,alpha,upper,-1.911060178741407 +karman_re100,sr,49,19.6,alpha,lower,4.951357182279825 +karman_re100,sr,50,20.0,alpha,front,-1.9641633467127304 +karman_re100,sr,50,20.0,alpha,upper,-2.6515137473102515 +karman_re100,sr,50,20.0,alpha,lower,4.210903613710981 +karman_re100,sr,51,20.4,alpha,front,-1.2532817742851856 +karman_re100,sr,51,20.4,alpha,upper,-2.596362235916024 +karman_re100,sr,51,20.4,alpha,lower,4.266055125105209 +karman_re100,sr,52,20.8,alpha,front,-0.5704938908272981 +karman_re100,sr,52,20.8,alpha,upper,-2.746728446367157 +karman_re100,sr,52,20.8,alpha,lower,4.115688914654076 +karman_re100,sr,53,21.2,alpha,front,0.13275412831674102 +karman_re100,sr,53,21.2,alpha,upper,-3.592778662147913 +karman_re100,sr,53,21.2,alpha,lower,3.26963869887332 +karman_re100,sr,54,21.6,alpha,front,0.9149743628053578 +karman_re100,sr,54,21.6,alpha,upper,-4.588565399595646 +karman_re100,sr,54,21.6,alpha,lower,2.2738519614255863 +karman_re100,sr,55,22.0,alpha,front,1.6679487055955364 +karman_re100,sr,55,22.0,alpha,upper,-5.3188166700978075 +karman_re100,sr,55,22.0,alpha,lower,1.5436006909234246 +karman_re100,sr,56,22.4,alpha,front,2.2451994699768494 +karman_re100,sr,56,22.4,alpha,upper,-5.9032005946487836 +karman_re100,sr,56,22.4,alpha,lower,0.9592167663724482 +karman_re100,sr,57,22.8,alpha,front,2.5695262037834987 +karman_re100,sr,57,22.8,alpha,upper,-5.919737613647651 +karman_re100,sr,57,22.8,alpha,lower,0.9426797473735813 +karman_re100,sr,58,23.2,alpha,front,2.5182415856782976 +karman_re100,sr,58,23.2,alpha,upper,-5.001582931845583 +karman_re100,sr,58,23.2,alpha,lower,1.86083442917565 +karman_re100,sr,59,23.6,alpha,front,1.9941730427325621 +karman_re100,sr,59,23.6,alpha,upper,-4.195125768581114 +karman_re100,sr,59,23.6,alpha,lower,2.6672915924401175 +karman_re100,sr,60,24.0,alpha,front,1.2808180902838355 +karman_re100,sr,60,24.0,alpha,upper,-4.230134242190908 +karman_re100,sr,60,24.0,alpha,lower,2.6322831188303244 +karman_re100,sr,61,24.4,alpha,front,0.5956608333515128 +karman_re100,sr,61,24.4,alpha,upper,-4.136514622774136 +karman_re100,sr,61,24.4,alpha,lower,2.7259027382470964 +karman_re100,sr,62,24.8,alpha,front,-0.10154058426819526 +karman_re100,sr,62,24.8,alpha,upper,-3.3284777566991286 +karman_re100,sr,62,24.8,alpha,lower,3.533939604322104 +karman_re100,sr,63,25.2,alpha,front,-0.8791630328686431 +karman_re100,sr,63,25.2,alpha,upper,-2.320384988201285 +karman_re100,sr,63,25.2,alpha,lower,4.542032372819947 +karman_re100,sr,64,25.6,alpha,front,-1.6356507767476645 +karman_re100,sr,64,25.6,alpha,upper,-1.5658604025874787 +karman_re100,sr,64,25.6,alpha,lower,5.2965569584337535 +karman_re100,sr,65,26.0,alpha,front,-2.2211410796216415 +karman_re100,sr,65,26.0,alpha,upper,-0.9826755662531381 +karman_re100,sr,65,26.0,alpha,lower,5.879741794768094 +karman_re100,sr,66,26.4,alpha,front,-2.554034312096085 +karman_re100,sr,66,26.4,alpha,upper,-0.9267915240114829 +karman_re100,sr,66,26.4,alpha,lower,5.935625837009749 +karman_re100,sr,67,26.8,alpha,front,-2.52130428433127 +karman_re100,sr,67,26.8,alpha,upper,-1.8041292490091054 +karman_re100,sr,67,26.8,alpha,lower,5.058288112012127 +karman_re100,sr,68,27.2,alpha,front,-2.016206091514068 +karman_re100,sr,68,27.2,alpha,upper,-2.6389691470326824 +karman_re100,sr,68,27.2,alpha,lower,4.22344821398855 +karman_re100,sr,69,27.6,alpha,front,-1.302941714670619 +karman_re100,sr,69,27.6,alpha,upper,-2.6552513826223905 +karman_re100,sr,69,27.6,alpha,lower,4.207165978398842 +karman_re100,sr,70,28.0,alpha,front,-0.612476327670758 +karman_re100,sr,70,28.0,alpha,upper,-2.739853937817897 +karman_re100,sr,70,28.0,alpha,lower,4.122563423203335 +karman_re100,sr,71,28.4,alpha,front,0.08630376669418664 +karman_re100,sr,71,28.4,alpha,upper,-3.513966168400713 +karman_re100,sr,71,28.4,alpha,lower,3.348451192620519 +karman_re100,sr,72,28.8,alpha,front,0.8610575021712868 +karman_re100,sr,72,28.8,alpha,upper,-4.509056228895765 +karman_re100,sr,72,28.8,alpha,lower,2.3533611321254675 +karman_re100,sr,73,29.2,alpha,front,1.6198874246432566 +karman_re100,sr,73,29.2,alpha,upper,-5.269767476364727 +karman_re100,sr,73,29.2,alpha,lower,1.5926498846565051 +karman_re100,sr,74,29.6,alpha,front,2.2125624154068637 +karman_re100,sr,74,29.6,alpha,upper,-5.871216027864641 +karman_re100,sr,74,29.6,alpha,lower,0.991201333156592 +karman_re100,sr,75,30.0,alpha,front,2.5555107832617265 +karman_re100,sr,75,30.0,alpha,upper,-5.944180682868177 +karman_re100,sr,75,30.0,alpha,lower,0.9182366781530549 +karman_re100,sr,76,30.4,alpha,front,2.5343643986162 +karman_re100,sr,76,30.4,alpha,upper,-5.078934170043865 +karman_re100,sr,76,30.4,alpha,lower,1.7834831909773674 +karman_re100,sr,77,30.8,alpha,front,2.038868418753222 +karman_re100,sr,77,30.8,alpha,upper,-4.233369922976606 +karman_re100,sr,77,30.8,alpha,lower,2.6290474380446263 +karman_re100,sr,78,31.2,alpha,front,1.3294260660536574 +karman_re100,sr,78,31.2,alpha,upper,-4.228249438721894 +karman_re100,sr,78,31.2,alpha,lower,2.634167922299338 +karman_re100,sr,79,31.6,alpha,front,0.6417666580255352 +karman_re100,sr,79,31.6,alpha,upper,-4.160549216412484 +karman_re100,sr,79,31.6,alpha,lower,2.7018681446087482 +karman_re100,sr,80,32.0,alpha,front,-0.05332132186688747 +karman_re100,sr,80,32.0,alpha,upper,-3.3837652236262983 +karman_re100,sr,80,32.0,alpha,lower,3.4786521373949335 +karman_re100,sr,81,32.4,alpha,front,-0.8285115782041601 +karman_re100,sr,81,32.4,alpha,upper,-2.3711626289282037 +karman_re100,sr,81,32.4,alpha,lower,4.4912547320930285 +karman_re100,sr,82,32.8,alpha,front,-1.591361081759075 +karman_re100,sr,82,32.8,alpha,upper,-1.6106712244486798 +karman_re100,sr,82,32.8,alpha,lower,5.251746136572552 +karman_re100,sr,83,33.2,alpha,front,-2.190566040865534 +karman_re100,sr,83,33.2,alpha,upper,-1.0134316613739967 +karman_re100,sr,83,33.2,alpha,lower,5.848985699647235 +karman_re100,sr,84,33.6,alpha,front,-2.5426086434883546 +karman_re100,sr,84,33.6,alpha,upper,-0.898846648281201 +karman_re100,sr,84,33.6,alpha,lower,5.963570712740031 +karman_re100,sr,85,34.0,alpha,front,-2.539133470632916 +karman_re100,sr,85,34.0,alpha,upper,-1.7370316157247643 +karman_re100,sr,85,34.0,alpha,lower,5.125385745296468 +karman_re100,sr,86,34.4,alpha,front,-2.058427421516448 +karman_re100,sr,86,34.4,alpha,upper,-2.6226800603802842 +karman_re100,sr,86,34.4,alpha,lower,4.239737300640948 +karman_re100,sr,87,34.8,alpha,front,-1.3473364152016014 +karman_re100,sr,87,34.8,alpha,upper,-2.666390753819265 +karman_re100,sr,87,34.8,alpha,lower,4.196026607201967 +karman_re100,sr,88,35.2,alpha,front,-0.6566280946604279 +karman_re100,sr,88,35.2,alpha,upper,-2.700921023253277 +karman_re100,sr,88,35.2,alpha,lower,4.1614963377679555 +karman_re100,sr,89,35.6,alpha,front,0.03613133599215046 +karman_re100,sr,89,35.6,alpha,upper,-3.437611226963435 +karman_re100,sr,89,35.6,alpha,lower,3.424806134057798 +karman_re100,sr,90,36.0,alpha,front,0.8057224007178106 +karman_re100,sr,90,36.0,alpha,upper,-4.449990629263664 +karman_re100,sr,90,36.0,alpha,lower,2.4124267317575683 +karman_re100,sr,91,36.4,alpha,front,1.5713682040866455 +karman_re100,sr,91,36.4,alpha,upper,-5.231445828837916 +karman_re100,sr,91,36.4,alpha,lower,1.6309715321833151 +karman_re100,sr,92,36.8,alpha,front,2.17836071165551 +karman_re100,sr,92,36.8,alpha,upper,-5.840652828219973 +karman_re100,sr,92,36.8,alpha,lower,1.0217645328012592 +karman_re100,sr,93,37.2,alpha,front,2.540050415436934 +karman_re100,sr,93,37.2,alpha,upper,-5.972124188385921 +karman_re100,sr,93,37.2,alpha,lower,0.8902931726353113 +karman_re100,sr,94,37.6,alpha,front,2.550325685058024 +karman_re100,sr,94,37.6,alpha,upper,-5.160525607064077 +karman_re100,sr,94,37.6,alpha,lower,1.7018917539571552 +karman_re100,sr,95,38.0,alpha,front,2.0837692770784035 +karman_re100,sr,95,38.0,alpha,upper,-4.268162055251224 +karman_re100,sr,95,38.0,alpha,lower,2.594255305770008 +karman_re100,sr,96,38.4,alpha,front,1.3773454896241422 +karman_re100,sr,96,38.4,alpha,upper,-4.208053723877664 +karman_re100,sr,96,38.4,alpha,lower,2.654363637143568 +karman_re100,sr,97,38.8,alpha,front,0.6852872817656835 +karman_re100,sr,97,38.8,alpha,upper,-4.172289197438539 +karman_re100,sr,97,38.8,alpha,lower,2.690128163582693 +karman_re100,sr,98,39.2,alpha,front,-0.007826618904639107 +karman_re100,sr,98,39.2,alpha,upper,-3.445661986853696 +karman_re100,sr,98,39.2,alpha,lower,3.416755374167537 +karman_re100,sr,99,39.6,alpha,front,-0.7778860530266781 +karman_re100,sr,99,39.6,alpha,upper,-2.436594844995458 +karman_re100,sr,99,39.6,alpha,lower,4.425822516025774 +karman_re100,sr,100,40.0,alpha,front,-1.5459167698022263 +karman_re100,sr,100,40.0,alpha,upper,-1.6590882934642046 +karman_re100,sr,100,40.0,alpha,lower,5.203329067557028 +karman_re100,sr,101,40.4,alpha,front,-2.159579504702704 +karman_re100,sr,101,40.4,alpha,upper,-1.044211963583027 +karman_re100,sr,101,40.4,alpha,lower,5.818205397438206 +karman_re100,sr,102,40.8,alpha,front,-2.5299780529315896 +karman_re100,sr,102,40.8,alpha,upper,-0.8795862557400302 +karman_re100,sr,102,40.8,alpha,lower,5.9828311052812015 +karman_re100,sr,103,41.2,alpha,front,-2.554668252533417 +karman_re100,sr,103,41.2,alpha,upper,-1.6711673259705098 +karman_re100,sr,103,41.2,alpha,lower,5.1912500350507225 +karman_re100,sr,104,41.6,alpha,front,-2.101769802233367 +karman_re100,sr,104,41.6,alpha,upper,-2.587665040199476 +karman_re100,sr,104,41.6,alpha,lower,4.274752320821756 +karman_re100,sr,105,42.0,alpha,front,-1.397487994644506 +karman_re100,sr,105,42.0,alpha,upper,-2.662633631039918 +karman_re100,sr,105,42.0,alpha,lower,4.1997837299813146 +karman_re100,sr,106,42.4,alpha,front,-0.7067003538490045 +karman_re100,sr,106,42.4,alpha,upper,-2.6646274425286256 +karman_re100,sr,106,42.4,alpha,lower,4.197789918492607 +karman_re100,sr,107,42.8,alpha,front,-0.017822076782628798 +karman_re100,sr,107,42.8,alpha,upper,-3.3724917238465317 +karman_re100,sr,107,42.8,alpha,lower,3.4899256371747005 +karman_re100,sr,108,43.2,alpha,front,0.7483376487965688 +karman_re100,sr,108,43.2,alpha,upper,-4.394425465928782 +karman_re100,sr,108,43.2,alpha,lower,2.4679918950924504 +karman_re100,sr,109,43.6,alpha,front,1.5202313485375059 +karman_re100,sr,109,43.6,alpha,upper,-5.1860213040055045 +karman_re100,sr,109,43.6,alpha,lower,1.6763960570157277 +karman_re100,sr,110,44.0,alpha,front,2.141071267760313 +karman_re100,sr,110,44.0,alpha,upper,-5.802893576817116 +karman_re100,sr,110,44.0,alpha,lower,1.0595237842041167 +karman_re100,sr,111,44.4,alpha,front,2.5222484906164846 +karman_re100,sr,111,44.4,alpha,upper,-5.995925465278206 +karman_re100,sr,111,44.4,alpha,lower,0.8664918957430264 +karman_re100,sr,112,44.8,alpha,front,2.5635258363326825 +karman_re100,sr,112,44.8,alpha,upper,-5.240997580440698 +karman_re100,sr,112,44.8,alpha,lower,1.621419780580534 +karman_re100,sr,113,45.2,alpha,front,2.1277205567417834 +karman_re100,sr,113,45.2,alpha,upper,-4.294134738401732 +karman_re100,sr,113,45.2,alpha,lower,2.5682826226195 +karman_re100,sr,114,45.6,alpha,front,1.4236556422077178 +karman_re100,sr,114,45.6,alpha,upper,-4.182241203348271 +karman_re100,sr,114,45.6,alpha,lower,2.6801761576729617 +karman_re100,sr,115,46.0,alpha,front,0.7284276655628911 +karman_re100,sr,115,46.0,alpha,upper,-4.192438934039826 +karman_re100,sr,115,46.0,alpha,lower,2.6699784269814058 +karman_re100,sr,116,46.4,alpha,front,0.03951256163200426 +karman_re100,sr,116,46.4,alpha,upper,-3.5218391051527025 +karman_re100,sr,116,46.4,alpha,lower,3.34057825586853 +karman_re100,sr,117,46.8,alpha,front,-0.7236093541607571 +karman_re100,sr,117,46.8,alpha,upper,-2.50699606070905 +karman_re100,sr,117,46.8,alpha,lower,4.355421300312182 +karman_re100,sr,118,47.2,alpha,front,-1.4970562479329825 +karman_re100,sr,118,47.2,alpha,upper,-1.7039257583469791 +karman_re100,sr,118,47.2,alpha,lower,5.158491602674253 +karman_re100,sr,119,47.6,alpha,front,-2.1250525279688675 +karman_re100,sr,119,47.6,alpha,upper,-1.075768719563622 +karman_re100,sr,119,47.6,alpha,lower,5.78664864145761 +karman_re100,sr,120,48.0,alpha,front,-2.514551162560905 +karman_re100,sr,120,48.0,alpha,upper,-0.8619983598473935 +karman_re100,sr,120,48.0,alpha,lower,6.000419001173839 +karman_re100,sr,121,48.4,alpha,front,-2.568465137207553 +karman_re100,sr,121,48.4,alpha,upper,-1.5926282657475717 +karman_re100,sr,121,48.4,alpha,lower,5.26978909527366 +karman_re100,sr,122,48.8,alpha,front,-2.1472530084207175 +karman_re100,sr,122,48.8,alpha,upper,-2.5410909070476357 +karman_re100,sr,122,48.8,alpha,lower,4.3213264539735965 +karman_re100,sr,123,49.2,alpha,front,-1.4492704677800892 +karman_re100,sr,123,49.2,alpha,upper,-2.6679795913800586 +karman_re100,sr,123,49.2,alpha,lower,4.194437769641174 +karman_re100,sr,124,49.6,alpha,front,-0.754603793489146 +karman_re100,sr,124,49.6,alpha,upper,-2.649336479587282 +karman_re100,sr,124,49.6,alpha,lower,4.21308088143395 +karman_re100,sr,125,50.0,alpha,front,-0.0669582576255698 +karman_re100,sr,125,50.0,alpha,upper,-3.3152238430643597 +karman_re100,sr,125,50.0,alpha,lower,3.5471935179568725 +karman_re100,sr,126,50.4,alpha,front,0.6952027131549231 +karman_re100,sr,126,50.4,alpha,upper,-4.331576861724949 +karman_re100,sr,126,50.4,alpha,lower,2.5308404992962834 +karman_re100,sr,127,50.8,alpha,front,1.4719394105904129 +karman_re100,sr,127,50.8,alpha,upper,-5.13647655007116 +karman_re100,sr,127,50.8,alpha,lower,1.7259408109500713 +karman_re100,sr,128,51.2,alpha,front,2.106366425401603 +karman_re100,sr,128,51.2,alpha,upper,-5.765190351882481 +karman_re100,sr,128,51.2,alpha,lower,1.0972270091387517 +karman_re100,sr,129,51.6,alpha,front,2.505890713902538 +karman_re100,sr,129,51.6,alpha,upper,-6.009249411998253 +karman_re100,sr,129,51.6,alpha,lower,0.8531679490229793 +karman_re100,sr,130,52.0,alpha,front,2.575345420023759 +karman_re100,sr,130,52.0,alpha,upper,-5.30901493082975 +karman_re100,sr,130,52.0,alpha,lower,1.5534024301914824 +karman_re100,sr,131,52.4,alpha,front,2.1693193570571045 +karman_re100,sr,131,52.4,alpha,upper,-4.330645573936584 +karman_re100,sr,131,52.4,alpha,lower,2.531771787084648 +karman_re100,sr,132,52.8,alpha,front,1.4721952866753227 +karman_re100,sr,132,52.8,alpha,upper,-4.178038609248218 +karman_re100,sr,132,52.8,alpha,lower,2.6843787517730138 +karman_re100,sr,133,53.2,alpha,front,0.7764295395740624 +karman_re100,sr,133,53.2,alpha,upper,-4.223835222907631 +karman_re100,sr,133,53.2,alpha,lower,2.638582138113601 +karman_re100,sr,134,53.6,alpha,front,0.09165263358419672 +karman_re100,sr,134,53.6,alpha,upper,-3.5935934818705424 +karman_re100,sr,134,53.6,alpha,lower,3.2688238791506894 +karman_re100,sr,135,54.0,alpha,front,-0.6658603684268208 +karman_re100,sr,135,54.0,alpha,upper,-2.569928704615217 +karman_re100,sr,135,54.0,alpha,lower,4.292488656406015 +karman_re100,sr,136,54.4,alpha,front,-1.4448840776956722 +karman_re100,sr,136,54.4,alpha,upper,-1.747885373730373 +karman_re100,sr,136,54.4,alpha,lower,5.114531987290859 +karman_re100,sr,137,54.8,alpha,front,-2.0869001294343668 +karman_re100,sr,137,54.8,alpha,upper,-1.1144679367675852 +karman_re100,sr,137,54.8,alpha,lower,5.7479494242536475 +karman_re100,sr,138,55.2,alpha,front,-2.4952353819377335 +karman_re100,sr,138,55.2,alpha,upper,-0.8472997854600024 +karman_re100,sr,138,55.2,alpha,lower,6.01511757556123 +karman_re100,sr,139,55.6,alpha,front,-2.5794627028809267 +karman_re100,sr,139,55.6,alpha,upper,-1.509739237453821 +karman_re100,sr,139,55.6,alpha,lower,5.3526781235674115 +karman_re100,sr,140,56.0,alpha,front,-2.191637940994268 +karman_re100,sr,140,56.0,alpha,upper,-2.4980997274369714 +karman_re100,sr,140,56.0,alpha,lower,4.364317633584261 +karman_re100,sr,141,56.4,alpha,front,-1.4989867515199822 +karman_re100,sr,141,56.4,alpha,upper,-2.6903862202773596 +karman_re100,sr,141,56.4,alpha,lower,4.172031140743872 +karman_re100,sr,142,56.8,alpha,front,-0.7993578438541069 +karman_re100,sr,142,56.8,alpha,upper,-2.6424736939675144 +karman_re100,sr,142,56.8,alpha,lower,4.219943667053718 +karman_re100,sr,143,57.2,alpha,front,-0.11368324592632023 +karman_re100,sr,143,57.2,alpha,upper,-3.247376094538352 +karman_re100,sr,143,57.2,alpha,lower,3.6150412664828804 +karman_re100,sr,144,57.6,alpha,front,0.6420263080939983 +karman_re100,sr,144,57.6,alpha,upper,-4.258573155664077 +karman_re100,sr,144,57.6,alpha,lower,2.603844205357155 +karman_re100,sr,145,58.0,alpha,front,1.422355527073529 +karman_re100,sr,145,58.0,alpha,upper,-5.086849735630371 +karman_re100,sr,145,58.0,alpha,lower,1.775567625390861 +karman_re100,sr,146,58.4,alpha,front,2.0708223379002644 +karman_re100,sr,146,58.4,alpha,upper,-5.728482662479662 +karman_re100,sr,146,58.4,alpha,lower,1.1339346985415704 +karman_re100,sr,147,58.8,alpha,front,2.488752832588233 +karman_re100,sr,147,58.8,alpha,upper,-6.019745011670999 +karman_re100,sr,147,58.8,alpha,lower,0.842672349350234 +karman_re100,sr,148,59.2,alpha,front,2.5856579854823156 +karman_re100,sr,148,59.2,alpha,upper,-5.378494450242743 +karman_re100,sr,148,59.2,alpha,lower,1.4839229107784886 +karman_re100,sr,149,59.6,alpha,front,2.2115795812899863 +karman_re100,sr,149,59.6,alpha,upper,-4.381903398035172 +karman_re100,sr,149,59.6,alpha,lower,2.4805139629860604 +karman_re100,sr,150,60.0,alpha,front,1.5238736866644496 +karman_re100,sr,150,60.0,alpha,upper,-4.17926418824059 +karman_re100,sr,150,60.0,alpha,lower,2.6831531727806426 +karman_re100,sr,151,60.4,alpha,front,0.8262222353809567 +karman_re100,sr,151,60.4,alpha,upper,-4.243846415796737 +karman_re100,sr,151,60.4,alpha,lower,2.618570945224495 +karman_re100,sr,152,60.8,alpha,front,0.14298687402314686 +karman_re100,sr,152,60.8,alpha,upper,-3.6524833898060973 +karman_re100,sr,152,60.8,alpha,lower,3.2099339712151354 +karman_re100,sr,153,61.2,alpha,front,-0.6102473241846001 +karman_re100,sr,153,61.2,alpha,upper,-2.631396439072365 +karman_re100,sr,153,61.2,alpha,lower,4.2310209219488675 +karman_re100,sr,154,61.6,alpha,front,-1.393775460423472 +karman_re100,sr,154,61.6,alpha,upper,-1.797522236396442 +karman_re100,sr,154,61.6,alpha,lower,5.06489512462479 +karman_re100,sr,155,62.0,alpha,front,-2.048520226291316 +karman_re100,sr,155,62.0,alpha,upper,-1.1549986713974154 +karman_re100,sr,155,62.0,alpha,lower,5.707418689623816 +karman_re100,sr,156,62.4,alpha,front,-2.4756101346631967 +karman_re100,sr,156,62.4,alpha,upper,-0.8397632358861057 +karman_re100,sr,156,62.4,alpha,lower,6.022654125135126 +karman_re100,sr,157,62.8,alpha,front,-2.587653579185657 +karman_re100,sr,157,62.8,alpha,upper,-1.437360196064465 +karman_re100,sr,157,62.8,alpha,lower,5.425057164956767 +karman_re100,sr,158,63.2,alpha,front,-2.231907988300202 +karman_re100,sr,158,63.2,alpha,upper,-2.4565883773674067 +karman_re100,sr,158,63.2,alpha,lower,4.405828983653826 +karman_re100,sr,159,63.6,alpha,front,-1.5472282512868811 +karman_re100,sr,159,63.6,alpha,upper,-2.7043183891184657 +karman_re100,sr,159,63.6,alpha,lower,4.158098971902767 +karman_re100,sr,160,64.0,alpha,front,-0.8454620923349982 +karman_re100,sr,160,64.0,alpha,upper,-2.625130913873352 +karman_re100,sr,160,64.0,alpha,lower,4.23728644714788 +karman_re100,sr,161,64.4,alpha,front,-0.16304959814119038 +karman_re100,sr,161,64.4,alpha,upper,-3.1765342793708564 +karman_re100,sr,161,64.4,alpha,lower,3.6858830816503754 +karman_re100,sr,162,64.8,alpha,front,0.5856653713110412 +karman_re100,sr,162,64.8,alpha,upper,-4.186917129757302 +karman_re100,sr,162,64.8,alpha,lower,2.67550023126393 +karman_re100,sr,163,65.2,alpha,front,1.3693937506772673 +karman_re100,sr,163,65.2,alpha,upper,-5.040007802050259 +karman_re100,sr,163,65.2,alpha,lower,1.8224095589709728 +karman_re100,sr,164,65.6,alpha,front,2.03162805350623 +karman_re100,sr,164,65.6,alpha,upper,-5.68981206749316 +karman_re100,sr,164,65.6,alpha,lower,1.172605293528072 +karman_re100,sr,165,66.0,alpha,front,2.468030821293317 +karman_re100,sr,165,66.0,alpha,upper,-6.0249608779429416 +karman_re100,sr,165,66.0,alpha,lower,0.8374564830782901 +karman_re100,sr,166,66.4,alpha,front,2.5923385579688456 +karman_re100,sr,166,66.4,alpha,upper,-5.4574482281272 +karman_re100,sr,166,66.4,alpha,lower,1.4049691328940321 +karman_re100,sr,167,66.8,alpha,front,2.2533329373317645 +karman_re100,sr,167,66.8,alpha,upper,-4.437969145683957 +karman_re100,sr,167,66.8,alpha,lower,2.424448215337275 +karman_re100,sr,168,67.2,alpha,front,1.5751776186854816 +karman_re100,sr,168,67.2,alpha,upper,-4.16655668491683 +karman_re100,sr,168,67.2,alpha,lower,2.6958606761044024 +karman_re100,sr,169,67.6,alpha,front,0.8728978205720026 +karman_re100,sr,169,67.6,alpha,upper,-4.245267630690376 +karman_re100,sr,169,67.6,alpha,lower,2.6171497303308566 +karman_re100,sr,170,68.0,alpha,front,0.1895950880577914 +karman_re100,sr,170,68.0,alpha,upper,-3.7087963846950824 +karman_re100,sr,170,68.0,alpha,lower,3.15362097632615 +karman_re100,sr,171,68.4,alpha,front,-0.5577496589657742 +karman_re100,sr,171,68.4,alpha,upper,-2.7035073755417747 +karman_re100,sr,171,68.4,alpha,lower,4.158909985479458 +karman_re100,sr,172,68.8,alpha,front,-1.3436805351336725 +karman_re100,sr,172,68.8,alpha,upper,-1.849776966239383 +karman_re100,sr,172,68.8,alpha,lower,5.012640394781849 +karman_re100,sr,173,69.2,alpha,front,-2.0114414150781963 +karman_re100,sr,173,69.2,alpha,upper,-1.1954799261300377 +karman_re100,sr,173,69.2,alpha,lower,5.666937434891194 +karman_re100,sr,174,69.6,alpha,front,-2.4565192834597984 +karman_re100,sr,174,69.6,alpha,upper,-0.8361778464115286 +karman_re100,sr,174,69.6,alpha,lower,6.026239514609704 +karman_re100,sr,175,70.0,alpha,front,-2.594477474247597 +karman_re100,sr,175,70.0,alpha,upper,-1.3734222728928787 +karman_re100,sr,175,70.0,alpha,lower,5.488995088128354 +karman_re100,sr,176,70.4,alpha,front,-2.271371823919551 +karman_re100,sr,176,70.4,alpha,upper,-2.4092269809895344 +karman_re100,sr,176,70.4,alpha,lower,4.453190380031698 +karman_re100,sr,177,70.8,alpha,front,-1.5978256935867463 +karman_re100,sr,177,70.8,alpha,upper,-2.702019172479609 +karman_re100,sr,177,70.8,alpha,lower,4.160398188541623 +karman_re100,sr,178,71.2,alpha,front,-0.8954411119299066 +karman_re100,sr,178,71.2,alpha,upper,-2.6033210886592926 +karman_re100,sr,178,71.2,alpha,lower,4.25909627236194 +karman_re100,sr,179,71.6,alpha,front,-0.21527655218975672 +karman_re100,sr,179,71.6,alpha,upper,-3.1127335296989127 +karman_re100,sr,179,71.6,alpha,lower,3.7496838313223195 +karman_re100,sr,180,72.0,alpha,front,0.5280565224663981 +karman_re100,sr,180,72.0,alpha,upper,-4.122305518754505 +karman_re100,sr,180,72.0,alpha,lower,2.7401118422667268 +karman_re100,sr,181,72.4,alpha,front,1.3151868705070815 +karman_re100,sr,181,72.4,alpha,upper,-4.991779061135799 +karman_re100,sr,181,72.4,alpha,lower,1.8706382998854332 +karman_re100,sr,182,72.8,alpha,front,1.9900598002577867 +karman_re100,sr,182,72.8,alpha,upper,-5.646662856703107 +karman_re100,sr,182,72.8,alpha,lower,1.2157545043181255 +karman_re100,sr,183,73.2,alpha,front,2.4439685237551365 +karman_re100,sr,183,73.2,alpha,upper,-6.027175902633626 +karman_re100,sr,183,73.2,alpha,lower,0.8352414583876056 +karman_re100,sr,184,73.6,alpha,front,2.5962801063918515 +karman_re100,sr,184,73.6,alpha,upper,-5.5304196580705085 +karman_re100,sr,184,73.6,alpha,lower,1.3319977029507242 +karman_re100,sr,185,74.0,alpha,front,2.293213243136165 +karman_re100,sr,185,74.0,alpha,upper,-4.494862958443241 +karman_re100,sr,185,74.0,alpha,lower,2.367554402577992 +karman_re100,sr,186,74.4,alpha,front,1.6240107902739158 +karman_re100,sr,186,74.4,alpha,upper,-4.146912708987923 +karman_re100,sr,186,74.4,alpha,lower,2.7155046520333093 +karman_re100,sr,187,74.8,alpha,front,0.91773063619371 +karman_re100,sr,187,74.8,alpha,upper,-4.246550606363508 +karman_re100,sr,187,74.8,alpha,lower,2.6158667546577243 +karman_re100,sr,188,75.2,alpha,front,0.23624194657402597 +karman_re100,sr,188,75.2,alpha,upper,-3.7729427324182905 +karman_re100,sr,188,75.2,alpha,lower,3.0894746286029418 +karman_re100,sr,189,75.6,alpha,front,-0.5038958127570908 +karman_re100,sr,189,75.6,alpha,upper,-2.7791705118931733 +karman_re100,sr,189,75.6,alpha,lower,4.083246849128059 +karman_re100,sr,190,76.0,alpha,front,-1.291293381033247 +karman_re100,sr,190,76.0,alpha,upper,-1.9012366683185777 +karman_re100,sr,190,76.0,alpha,lower,4.961180692702655 +karman_re100,sr,191,76.4,alpha,front,-1.9719402392215735 +karman_re100,sr,191,76.4,alpha,upper,-1.2343096180167916 +karman_re100,sr,191,76.4,alpha,lower,5.62810774300444 +karman_re100,sr,192,76.8,alpha,front,-2.434730522413704 +karman_re100,sr,192,76.8,alpha,upper,-0.8370929961411114 +karman_re100,sr,192,76.8,alpha,lower,6.02532436488012 +karman_re100,sr,193,77.2,alpha,front,-2.5983762212571286 +karman_re100,sr,193,77.2,alpha,upper,-1.3050136507012935 +karman_re100,sr,193,77.2,alpha,lower,5.557403710319939 +karman_re100,sr,194,77.6,alpha,front,-2.309807360020158 +karman_re100,sr,194,77.6,alpha,upper,-2.344006843374004 +karman_re100,sr,194,77.6,alpha,lower,4.5184105176472285 +karman_re100,sr,195,78.0,alpha,front,-1.6493847468959777 +karman_re100,sr,195,78.0,alpha,upper,-2.704218972586538 +karman_re100,sr,195,78.0,alpha,lower,4.158198388434695 +karman_re100,sr,196,78.4,alpha,front,-0.9427804298284513 +karman_re100,sr,196,78.4,alpha,upper,-2.5969031653768804 +karman_re100,sr,196,78.4,alpha,lower,4.265514195644352 +karman_re100,sr,197,78.8,alpha,front,-0.26334728475084723 +karman_re100,sr,197,78.8,alpha,upper,-3.0623581224748326 +karman_re100,sr,197,78.8,alpha,lower,3.800059238546399 +karman_re100,sr,198,79.2,alpha,front,0.475202182501936 +karman_re100,sr,198,79.2,alpha,upper,-4.056738717366846 +karman_re100,sr,198,79.2,alpha,lower,2.8056786436543857 +karman_re100,sr,199,79.6,alpha,front,1.2639031403980108 +karman_re100,sr,199,79.6,alpha,upper,-4.93893909829327 +karman_re100,sr,199,79.6,alpha,lower,1.9234782627279619 +karman_re100,sr,200,80.0,alpha,front,1.9507783146437692 +karman_re100,sr,200,80.0,alpha,upper,-5.604023821714723 +karman_re100,sr,200,80.0,alpha,lower,1.2583935393065095 +karman_re100,sr,201,80.4,alpha,front,2.4220602384299204 +karman_re100,sr,201,80.4,alpha,upper,-6.022612942636066 +karman_re100,sr,201,80.4,alpha,lower,0.8398044183851662 +karman_re100,sr,202,80.8,alpha,front,2.5989027141627092 +karman_re100,sr,202,80.8,alpha,upper,-5.591385361878297 +karman_re100,sr,202,80.8,alpha,lower,1.2710319991429353 +karman_re100,sr,203,81.2,alpha,front,2.32748780697 +karman_re100,sr,203,81.2,alpha,upper,-4.544168686412612 +karman_re100,sr,203,81.2,alpha,lower,2.31824867460862 +karman_re100,sr,204,81.6,alpha,front,1.6730466469790626 +karman_re100,sr,204,81.6,alpha,upper,-4.147215373712996 +karman_re100,sr,204,81.6,alpha,lower,2.715201987308237 +karman_re100,sr,205,82.0,alpha,front,0.9657701390408974 +karman_re100,sr,205,82.0,alpha,upper,-4.261878412797541 +karman_re100,sr,205,82.0,alpha,lower,2.600538948223691 +karman_re100,sr,206,82.4,alpha,front,0.28612480728798806 +karman_re100,sr,206,82.4,alpha,upper,-3.8366527435710474 +karman_re100,sr,206,82.4,alpha,lower,3.025764617450185 +karman_re100,sr,207,82.8,alpha,front,-0.44790670215374123 +karman_re100,sr,207,82.8,alpha,upper,-2.8497209285275757 +karman_re100,sr,207,82.8,alpha,lower,4.012696432493657 +karman_re100,sr,208,83.2,alpha,front,-1.2365517051936632 +karman_re100,sr,208,83.2,alpha,upper,-1.949093624897713 +karman_re100,sr,208,83.2,alpha,lower,4.91332373612352 +karman_re100,sr,209,83.6,alpha,front,-1.9296625658647342 +karman_re100,sr,209,83.6,alpha,upper,-1.2773747891045106 +karman_re100,sr,209,83.6,alpha,lower,5.585042571916722 +karman_re100,sr,210,84.0,alpha,front,-2.4098375932953577 +karman_re100,sr,210,84.0,alpha,upper,-0.8439920162702187 +karman_re100,sr,210,84.0,alpha,lower,6.018425344751014 +karman_re100,sr,211,84.4,alpha,front,-2.599363850553109 +karman_re100,sr,211,84.4,alpha,upper,-1.2355217993754573 +karman_re100,sr,211,84.4,alpha,lower,5.6268955616457745 +karman_re100,sr,212,84.8,alpha,front,-2.3467172299695114 +karman_re100,sr,212,84.8,alpha,upper,-2.2782185242926927 +karman_re100,sr,212,84.8,alpha,lower,4.58419883672854 +karman_re100,sr,213,85.2,alpha,front,-1.7000534508852891 +karman_re100,sr,213,85.2,alpha,upper,-2.714137027674493 +karman_re100,sr,213,85.2,alpha,lower,4.148280333346739 +karman_re100,sr,214,85.6,alpha,front,-0.9905029846568763 +karman_re100,sr,214,85.6,alpha,upper,-2.6078698897939603 +karman_re100,sr,214,85.6,alpha,lower,4.254547471227272 +karman_re100,sr,215,86.0,alpha,front,-0.3094391012859162 +karman_re100,sr,215,86.0,alpha,upper,-3.0064537554138626 +karman_re100,sr,215,86.0,alpha,lower,3.8559636056073696 +karman_re100,sr,216,86.4,alpha,front,0.42226892188140464 +karman_re100,sr,216,86.4,alpha,upper,-3.978842743561769 +karman_re100,sr,216,86.4,alpha,lower,2.8835746174594634 +karman_re100,sr,217,86.8,alpha,front,1.2112923444722006 +karman_re100,sr,217,86.8,alpha,upper,-4.882820978076364 +karman_re100,sr,217,86.8,alpha,lower,1.9795963829448686 +karman_re100,sr,218,87.2,alpha,front,1.9099756916587627 +karman_re100,sr,218,87.2,alpha,upper,-5.561940484033439 +karman_re100,sr,218,87.2,alpha,lower,1.3004768769877937 +karman_re100,sr,219,87.6,alpha,front,2.3986287733426157 +karman_re100,sr,219,87.6,alpha,upper,-6.014763984603492 +karman_re100,sr,219,87.6,alpha,lower,0.8476533764177394 +karman_re100,sr,220,88.0,alpha,front,2.6001044393256745 +karman_re100,sr,220,88.0,alpha,upper,-5.652492349823343 +karman_re100,sr,220,88.0,alpha,lower,1.209925011197889 +karman_re100,sr,221,88.4,alpha,front,2.363272674622035 +karman_re100,sr,221,88.4,alpha,upper,-4.609942998876868 +karman_re100,sr,221,88.4,alpha,lower,2.2524743621443646 +karman_re100,sr,222,88.8,alpha,front,1.7245121942957864 +karman_re100,sr,222,88.8,alpha,upper,-4.151473842035433 +karman_re100,sr,222,88.8,alpha,lower,2.7109435189857995 +karman_re100,sr,223,89.2,alpha,front,1.0156512126626476 +karman_re100,sr,223,89.2,alpha,upper,-4.267739268560316 +karman_re100,sr,223,89.2,alpha,lower,2.5946780924609167 +karman_re100,sr,224,89.6,alpha,front,0.3361257714872633 +karman_re100,sr,224,89.6,alpha,upper,-3.8888130809947006 +karman_re100,sr,224,89.6,alpha,lower,2.9736042800265317 +karman_re100,sr,225,90.0,alpha,front,-0.39237372186260727 +karman_re100,sr,225,90.0,alpha,upper,-2.917577202820487 +karman_re100,sr,225,90.0,alpha,lower,3.944840158200745 +karman_re100,sr,226,90.4,alpha,front,-1.1822321827143647 +karman_re100,sr,226,90.4,alpha,upper,-2.0013313032068476 +karman_re100,sr,226,90.4,alpha,lower,4.861086057814385 +karman_re100,sr,227,90.8,alpha,front,-1.886726709776209 +karman_re100,sr,227,90.8,alpha,upper,-1.322955974903774 +karman_re100,sr,227,90.8,alpha,lower,5.539461386117458 +karman_re100,sr,228,91.2,alpha,front,-2.3838344026154545 +karman_re100,sr,228,91.2,alpha,upper,-0.8548762995662589 +karman_re100,sr,228,91.2,alpha,lower,6.007541061454973 +karman_re100,sr,229,91.6,alpha,front,-2.5980299027663607 +karman_re100,sr,229,91.6,alpha,upper,-1.1743837532795487 +karman_re100,sr,229,91.6,alpha,lower,5.6880336077416835 +karman_re100,sr,230,92.0,alpha,front,-2.380004475306011 +karman_re100,sr,230,92.0,alpha,upper,-2.2173425694061466 +karman_re100,sr,230,92.0,alpha,lower,4.645074791615086 +karman_re100,sr,231,92.4,alpha,front,-1.7489825260557823 +karman_re100,sr,231,92.4,alpha,upper,-2.7197337369090975 +karman_re100,sr,231,92.4,alpha,lower,4.142683624112134 +karman_re100,sr,232,92.8,alpha,front,-1.0375094816058315 +karman_re100,sr,232,92.8,alpha,upper,-2.605340629694548 +karman_re100,sr,232,92.8,alpha,lower,4.257076731326684 +karman_re100,sr,233,93.2,alpha,front,-0.3574158783064584 +karman_re100,sr,233,93.2,alpha,upper,-2.9491669961478326 +karman_re100,sr,233,93.2,alpha,lower,3.9132503648733996 +karman_re100,sr,234,93.6,alpha,front,0.36717513337630353 +karman_re100,sr,234,93.6,alpha,upper,-3.9042544628235554 +karman_re100,sr,234,93.6,alpha,lower,2.958162898197677 +karman_re100,sr,235,94.0,alpha,front,1.156133665649887 +karman_re100,sr,235,94.0,alpha,upper,-4.829901847398303 +karman_re100,sr,235,94.0,alpha,lower,2.032515513622929 +karman_re100,sr,236,94.4,alpha,front,1.865963761859692 +karman_re100,sr,236,94.4,alpha,upper,-5.519494192275408 +karman_re100,sr,236,94.4,alpha,lower,1.3429231687458247 +karman_re100,sr,237,94.8,alpha,front,2.3728157026341825 +karman_re100,sr,237,94.8,alpha,upper,-6.000148155828816 +karman_re100,sr,237,94.8,alpha,lower,0.8622692051924159 +karman_re100,sr,238,95.2,alpha,front,2.5973075179144636 +karman_re100,sr,238,95.2,alpha,upper,-5.713558155269329 +karman_re100,sr,238,95.2,alpha,lower,1.1488592057519034 +karman_re100,sr,239,95.6,alpha,front,2.3964618851857633 +karman_re100,sr,239,95.6,alpha,upper,-4.683627396077477 +karman_re100,sr,239,95.6,alpha,lower,2.178789964943755 +karman_re100,sr,240,96.0,alpha,front,1.7756355079039412 +karman_re100,sr,240,96.0,alpha,upper,-4.15366252819622 +karman_re100,sr,240,96.0,alpha,lower,2.708754832825013 +karman_re100,sr,241,96.4,alpha,front,1.0639966745764866 +karman_re100,sr,241,96.4,alpha,upper,-4.25925856642478 +karman_re100,sr,241,96.4,alpha,lower,2.6031587945964523 +karman_re100,sr,242,96.8,alpha,front,0.38276346144345386 +karman_re100,sr,242,96.8,alpha,upper,-3.933162293476415 +karman_re100,sr,242,96.8,alpha,lower,2.9292550675448172 +karman_re100,sr,243,97.2,alpha,front,-0.34076609516505546 +karman_re100,sr,243,97.2,alpha,upper,-2.990659163241865 +karman_re100,sr,243,97.2,alpha,lower,3.8717581977793674 +karman_re100,sr,244,97.6,alpha,front,-1.1293600939272508 +karman_re100,sr,244,97.6,alpha,upper,-2.057979543430144 +karman_re100,sr,244,97.6,alpha,lower,4.804437817591088 +karman_re100,sr,245,98.0,alpha,front,-1.8445151033314544 +karman_re100,sr,245,98.0,alpha,upper,-1.3667948593379817 +karman_re100,sr,245,98.0,alpha,lower,5.4956225016832505 +karman_re100,sr,246,98.4,alpha,front,-2.3585954214051794 +karman_re100,sr,246,98.4,alpha,upper,-0.8693238205675109 +karman_re100,sr,246,98.4,alpha,lower,5.993093540453721 +karman_re100,sr,247,98.8,alpha,front,-2.595668632256613 +karman_re100,sr,247,98.8,alpha,upper,-1.1226189505418809 +karman_re100,sr,247,98.8,alpha,lower,5.739798410479351 +karman_re100,sr,248,99.2,alpha,front,-2.4114323455455384 +karman_re100,sr,248,99.2,alpha,upper,-2.1517719618725484 +karman_re100,sr,248,99.2,alpha,lower,4.710645399148683 +karman_re100,sr,249,99.6,alpha,front,-1.7985280037400364 +karman_re100,sr,249,99.6,alpha,upper,-2.7101317441799204 +karman_re100,sr,249,99.6,alpha,lower,4.152285616841311 +karman_re100,sr,250,100.0,alpha,front,-1.0868065645725722 +karman_re100,sr,250,100.0,alpha,upper,-2.600260642832628 +karman_re100,sr,250,100.0,alpha,lower,4.262156718188605 +karman_re100,sr,251,100.4,alpha,front,-0.40689954036010045 +karman_re100,sr,251,100.4,alpha,upper,-2.896331296188756 +karman_re100,sr,251,100.4,alpha,lower,3.966086064832476 +karman_re100,sr,252,100.8,alpha,front,0.3122679572579586 +karman_re100,sr,252,100.8,alpha,upper,-3.833281716235757 +karman_re100,sr,252,100.8,alpha,lower,3.0291356447854754 +karman_re100,sr,253,101.2,alpha,front,1.1007892624369473 +karman_re100,sr,253,101.2,alpha,upper,-4.779017025601741 +karman_re100,sr,253,101.2,alpha,lower,2.083400335419491 +karman_re100,sr,254,101.6,alpha,front,1.8215271035115588 +karman_re100,sr,254,101.6,alpha,upper,-5.476120114383276 +karman_re100,sr,254,101.6,alpha,lower,1.3862972466379562 +karman_re100,sr,255,102.0,alpha,front,2.3436902287609724 +karman_re100,sr,255,102.0,alpha,upper,-5.983930167982559 +karman_re100,sr,255,102.0,alpha,lower,0.8784871930386728 +karman_re100,sr,256,102.4,alpha,front,2.592666050941654 +karman_re100,sr,256,102.4,alpha,upper,-5.769609972423977 +karman_re100,sr,256,102.4,alpha,lower,1.092807388597255 +karman_re100,sr,257,102.8,alpha,front,2.426626136932052 +karman_re100,sr,257,102.8,alpha,upper,-4.7518539322473385 +karman_re100,sr,257,102.8,alpha,lower,2.1105634287738937 +karman_re100,sr,258,103.2,alpha,front,1.8242177317859878 +karman_re100,sr,258,103.2,alpha,upper,-4.152092416873446 +karman_re100,sr,258,103.2,alpha,lower,2.710324944147786 +karman_re100,sr,259,103.6,alpha,front,1.1101712967506943 +karman_re100,sr,259,103.6,alpha,upper,-4.250746806138382 +karman_re100,sr,259,103.6,alpha,lower,2.61167055488285 +karman_re100,sr,260,104.0,alpha,front,0.4280384325382785 +karman_re100,sr,260,104.0,alpha,upper,-3.9813106485886434 +karman_re100,sr,260,104.0,alpha,lower,2.881106712432589 +karman_re100,sr,261,104.4,alpha,front,-0.2883510024863842 +karman_re100,sr,261,104.4,alpha,upper,-3.0676127353124363 +karman_re100,sr,261,104.4,alpha,lower,3.794804625708796 +karman_re100,sr,262,104.8,alpha,front,-1.075314695853337 +karman_re100,sr,262,104.8,alpha,upper,-2.114870463518513 +karman_re100,sr,262,104.8,alpha,lower,4.747546897502719 +karman_re100,sr,263,105.2,alpha,front,-1.8007960346561152 +karman_re100,sr,263,105.2,alpha,upper,-1.4094896163029134 +karman_re100,sr,263,105.2,alpha,lower,5.452927744718319 +karman_re100,sr,264,105.6,alpha,front,-2.331403026307746 +karman_re100,sr,264,105.6,alpha,upper,-0.8872419376818189 +karman_re100,sr,264,105.6,alpha,lower,5.975175423339413 +karman_re100,sr,265,106.0,alpha,front,-2.590885885099493 +karman_re100,sr,265,106.0,alpha,upper,-1.0710654650267482 +karman_re100,sr,265,106.0,alpha,lower,5.7913518959944845 +karman_re100,sr,266,106.4,alpha,front,-2.44092749220774 +karman_re100,sr,266,106.4,alpha,upper,-2.0769878929872307 +karman_re100,sr,266,106.4,alpha,lower,4.7854294680340015 +karman_re100,sr,267,106.8,alpha,front,-1.8491212280582832 +karman_re100,sr,267,106.8,alpha,upper,-2.6982328184994504 +karman_re100,sr,267,106.8,alpha,lower,4.164184542521782 +karman_re100,sr,268,107.2,alpha,front,-1.1360988745601133 +karman_re100,sr,268,107.2,alpha,upper,-2.6061609302673308 +karman_re100,sr,268,107.2,alpha,lower,4.2562564307539015 +karman_re100,sr,269,107.6,alpha,front,-0.45404748399264094 +karman_re100,sr,269,107.6,alpha,upper,-2.854308704596659 +karman_re100,sr,269,107.6,alpha,lower,4.008108656424573 +karman_re100,sr,270,108.0,alpha,front,0.25995725407436515 +karman_re100,sr,270,108.0,alpha,upper,-3.764596920094835 +karman_re100,sr,270,108.0,alpha,lower,3.097820440926397 +karman_re100,sr,271,108.4,alpha,front,1.0471479914018762 +karman_re100,sr,271,108.4,alpha,upper,-4.722475357464738 +karman_re100,sr,271,108.4,alpha,lower,2.139942003556494 +karman_re100,sr,272,108.8,alpha,front,1.7774963481945287 +karman_re100,sr,272,108.8,alpha,upper,-5.4295236010933134 +karman_re100,sr,272,108.8,alpha,lower,1.4328937599279186 +karman_re100,sr,273,109.2,alpha,front,2.315958997611749 +karman_re100,sr,273,109.2,alpha,upper,-5.963682080570208 +karman_re100,sr,273,109.2,alpha,lower,0.8987352804510246 +karman_re100,sr,274,109.6,alpha,front,2.5870483210233304 +karman_re100,sr,274,109.6,alpha,upper,-5.817378169679814 +karman_re100,sr,274,109.6,alpha,lower,1.0450391913414183 +karman_re100,sr,275,110.0,alpha,front,2.4543059087055314 +karman_re100,sr,275,110.0,alpha,upper,-4.820161767694458 +karman_re100,sr,275,110.0,alpha,lower,2.0422555933267748 +karman_re100,sr,276,110.4,alpha,front,1.8728039516506207 +karman_re100,sr,276,110.4,alpha,upper,-4.161450207279174 +karman_re100,sr,276,110.4,alpha,lower,2.700967153742058 +karman_re100,sr,277,110.8,alpha,front,1.1587276355455467 +karman_re100,sr,277,110.8,alpha,upper,-4.249220541616827 +karman_re100,sr,277,110.8,alpha,lower,2.6131968194044055 +karman_re100,sr,278,111.2,alpha,front,0.47679015268167246 +karman_re100,sr,278,111.2,alpha,upper,-4.0324189672747455 +karman_re100,sr,278,111.2,alpha,lower,2.8299983937464868 +karman_re100,sr,279,111.6,alpha,front,-0.23378213624370836 +karman_re100,sr,279,111.6,alpha,upper,-3.141103628053504 +karman_re100,sr,279,111.6,alpha,lower,3.7213137329677277 +karman_re100,sr,280,112.0,alpha,front,-1.0191476530254036 +karman_re100,sr,280,112.0,alpha,upper,-2.169613803822238 +karman_re100,sr,280,112.0,alpha,lower,4.692803557198994 +karman_re100,sr,281,112.4,alpha,front,-1.754691808375127 +karman_re100,sr,281,112.4,alpha,upper,-1.4536836902761523 +karman_re100,sr,281,112.4,alpha,lower,5.40873367074508 +karman_re100,sr,282,112.8,alpha,front,-2.301206717901158 +karman_re100,sr,282,112.8,alpha,upper,-0.9097216445811496 +karman_re100,sr,282,112.8,alpha,lower,5.952695716440083 +karman_re100,sr,283,113.2,alpha,front,-2.583131547692356 +karman_re100,sr,283,113.2,alpha,upper,-1.0213977725785734 +karman_re100,sr,283,113.2,alpha,lower,5.841019588442659 +karman_re100,sr,284,113.6,alpha,front,-2.4682993069232753 +karman_re100,sr,284,113.6,alpha,upper,-2.000621533112135 +karman_re100,sr,284,113.6,alpha,lower,4.861795827909097 +karman_re100,sr,285,114.0,alpha,front,-1.898612093980531 +karman_re100,sr,285,114.0,alpha,upper,-2.690518521910201 +karman_re100,sr,285,114.0,alpha,lower,4.171898839111031 +karman_re100,sr,286,114.4,alpha,front,-1.1840573699603256 +karman_re100,sr,286,114.4,alpha,upper,-2.619056457200479 +karman_re100,sr,286,114.4,alpha,lower,4.243360903820753 +karman_re100,sr,287,114.8,alpha,front,-0.5004948208783769 +karman_re100,sr,287,114.8,alpha,upper,-2.816240241897714 +karman_re100,sr,287,114.8,alpha,lower,4.046177119123518 +karman_re100,sr,288,115.2,alpha,front,0.2085507751502253 +karman_re100,sr,288,115.2,alpha,upper,-3.6883071398760325 +karman_re100,sr,288,115.2,alpha,lower,3.1741102211451993 +karman_re100,sr,289,115.6,alpha,front,0.9925910631571755 +karman_re100,sr,289,115.6,alpha,upper,-4.662300190168488 +karman_re100,sr,289,115.6,alpha,lower,2.200117170852744 +karman_re100,sr,290,116.0,alpha,front,1.7321096227867216 +karman_re100,sr,290,116.0,alpha,upper,-5.384437823249476 +karman_re100,sr,290,116.0,alpha,lower,1.4779795377717562 +karman_re100,sr,291,116.4,alpha,front,2.286896127465716 +karman_re100,sr,291,116.4,alpha,upper,-5.9398170887949036 +karman_re100,sr,291,116.4,alpha,lower,0.9226002722263286 +karman_re100,sr,292,116.8,alpha,front,2.5796066470536276 +karman_re100,sr,292,116.8,alpha,upper,-5.8595642733014515 +karman_re100,sr,292,116.8,alpha,lower,1.0028530877197803 +karman_re100,sr,293,117.2,alpha,front,2.4801862007210187 +karman_re100,sr,293,117.2,alpha,upper,-4.896050532377123 +karman_re100,sr,293,117.2,alpha,lower,1.9663668286441098 +karman_re100,sr,294,117.6,alpha,front,1.9221915880227363 +karman_re100,sr,294,117.6,alpha,upper,-4.1803472651290035 +karman_re100,sr,294,117.6,alpha,lower,2.682070095892229 +karman_re100,sr,295,118.0,alpha,front,1.2098168501023026 +karman_re100,sr,295,118.0,alpha,upper,-4.24988844410621 +karman_re100,sr,295,118.0,alpha,lower,2.6125289169150223 +karman_re100,sr,296,118.4,alpha,front,0.525390014386855 +karman_re100,sr,296,118.4,alpha,upper,-4.071198113543429 +karman_re100,sr,296,118.4,alpha,lower,2.7912192474778035 +karman_re100,sr,297,118.8,alpha,front,-0.18062848053364342 +karman_re100,sr,297,118.8,alpha,upper,-3.2098057802199085 +karman_re100,sr,297,118.8,alpha,lower,3.6526115808013238 +karman_re100,sr,298,119.2,alpha,front,-0.963592395131354 +karman_re100,sr,298,119.2,alpha,upper,-2.2260845253989374 +karman_re100,sr,298,119.2,alpha,lower,4.636332835622294 +karman_re100,sr,299,119.6,alpha,front,-1.7078855323536228 +karman_re100,sr,299,119.6,alpha,upper,-1.4991141526962295 +karman_re100,sr,299,119.6,alpha,lower,5.363303208325003 +karman_re100,sr,300,120.0,alpha,front,-2.270592074517645 +karman_re100,sr,300,120.0,alpha,upper,-0.9363062037528181 +karman_re100,sr,300,120.0,alpha,lower,5.926111157268414 +karman_re100,sr,301,120.4,alpha,front,-2.5737752652663843 +karman_re100,sr,301,120.4,alpha,upper,-0.9795689138147736 +karman_re100,sr,301,120.4,alpha,lower,5.882848447206459 +karman_re100,sr,302,120.8,alpha,front,-2.492071940123793 +karman_re100,sr,302,120.8,alpha,upper,-1.925758905374636 +karman_re100,sr,302,120.8,alpha,lower,4.936658455646596 +karman_re100,sr,303,121.2,alpha,front,-1.9461859538569581 +karman_re100,sr,303,121.2,alpha,upper,-2.679631726557841 +karman_re100,sr,303,121.2,alpha,lower,4.182785634463391 +karman_re100,sr,304,121.6,alpha,front,-1.2312355387611469 +karman_re100,sr,304,121.6,alpha,upper,-2.626892550459778 +karman_re100,sr,304,121.6,alpha,lower,4.235524810561454 +karman_re100,sr,305,122.0,alpha,front,-0.5469806190965011 +karman_re100,sr,305,122.0,alpha,upper,-2.7742879878825706 +karman_re100,sr,305,122.0,alpha,lower,4.088129373138662 +karman_re100,sr,306,122.4,alpha,front,0.15634993928783775 +karman_re100,sr,306,122.4,alpha,upper,-3.612726216276917 +karman_re100,sr,306,122.4,alpha,lower,3.2496911447443146 +karman_re100,sr,307,122.8,alpha,front,0.9371984195544639 +karman_re100,sr,307,122.8,alpha,upper,-4.6032190614609565 +karman_re100,sr,307,122.8,alpha,lower,2.2591982995602757 +karman_re100,sr,308,123.2,alpha,front,1.685142042268171 +karman_re100,sr,308,123.2,alpha,upper,-5.3416416705567284 +karman_re100,sr,308,123.2,alpha,lower,1.5207756904645038 +karman_re100,sr,309,123.6,alpha,front,2.2559428911577672 +karman_re100,sr,309,123.6,alpha,upper,-5.913454656300237 +karman_re100,sr,309,123.6,alpha,lower,0.9489627047209948 +karman_re100,sr,310,124.0,alpha,front,2.5693162814983252 +karman_re100,sr,310,124.0,alpha,upper,-5.900244589466686 +karman_re100,sr,310,124.0,alpha,lower,0.9621727715545458 +karman_re100,sr,311,124.4,alpha,front,2.5036499444676554 +karman_re100,sr,311,124.4,alpha,upper,-4.9750265381538625 +karman_re100,sr,311,124.4,alpha,lower,1.8873908228673697 +karman_re100,sr,312,124.8,alpha,front,1.9708250048816873 +karman_re100,sr,312,124.8,alpha,upper,-4.199839451957861 +karman_re100,sr,312,124.8,alpha,lower,2.6625779090633706 +karman_re100,sr,313,125.2,alpha,front,1.2576650119833406 +karman_re100,sr,313,125.2,alpha,upper,-4.232343481539766 +karman_re100,sr,313,125.2,alpha,lower,2.6300738794814666 +karman_re100,sr,314,125.6,alpha,front,0.5715900776501922 +karman_re100,sr,314,125.6,alpha,upper,-4.105073725875926 +karman_re100,sr,314,125.6,alpha,lower,2.7573436351453067 +karman_re100,sr,315,126.0,alpha,front,-0.13002168929952024 +karman_re100,sr,315,126.0,alpha,upper,-3.2808442970095335 +karman_re100,sr,315,126.0,alpha,lower,3.5815730640116983 +karman_re100,sr,316,126.4,alpha,front,-0.9097294358623844 +karman_re100,sr,316,126.4,alpha,upper,-2.2874861851625843 +karman_re100,sr,316,126.4,alpha,lower,4.574931175858648 +karman_re100,sr,317,126.8,alpha,front,-1.6612843390383825 +karman_re100,sr,317,126.8,alpha,upper,-1.5431620706654092 +karman_re100,sr,317,126.8,alpha,lower,5.319255290355823 +karman_re100,sr,318,127.2,alpha,front,-2.2398946698947992 +karman_re100,sr,318,127.2,alpha,upper,-0.9650666604349181 +karman_re100,sr,318,127.2,alpha,lower,5.897350700586314 +karman_re100,sr,319,127.6,alpha,front,-2.5635220179493228 +karman_re100,sr,319,127.6,alpha,upper,-0.9460825179660031 +karman_re100,sr,319,127.6,alpha,lower,5.916334843055229 +karman_re100,sr,320,128.0,alpha,front,-2.5137080102353044 +karman_re100,sr,320,128.0,alpha,upper,-1.852699172845542 +karman_re100,sr,320,128.0,alpha,lower,5.0097181881756905 +karman_re100,sr,321,128.4,alpha,front,-1.9932779426333462 +karman_re100,sr,321,128.4,alpha,upper,-2.6554345343649772 +karman_re100,sr,321,128.4,alpha,lower,4.2069828266562554 +karman_re100,sr,322,128.8,alpha,front,-1.281197175831807 +karman_re100,sr,322,128.8,alpha,upper,-2.6319367595498715 +karman_re100,sr,322,128.8,alpha,lower,4.230480601471361 +karman_re100,sr,323,129.2,alpha,front,-0.5952731564409818 +karman_re100,sr,323,129.2,alpha,upper,-2.7369180290863584 +karman_re100,sr,323,129.2,alpha,lower,4.125499331934874 +karman_re100,sr,324,129.6,alpha,front,0.10347388226801704 +karman_re100,sr,324,129.6,alpha,upper,-3.5416389808192728 +karman_re100,sr,324,129.6,alpha,lower,3.3207783802019595 +karman_re100,sr,325,130.0,alpha,front,0.8815606224201146 +karman_re100,sr,325,130.0,alpha,upper,-4.543617251988964 +karman_re100,sr,325,130.0,alpha,lower,2.318800109032268 +karman_re100,sr,326,130.4,alpha,front,1.6373745548355596 +karman_re100,sr,326,130.4,alpha,upper,-5.296020291856349 +karman_re100,sr,326,130.4,alpha,lower,1.5663970691648834 +karman_re100,sr,327,130.8,alpha,front,2.2231435108951856 +karman_re100,sr,327,130.8,alpha,upper,-5.883993716519516 +karman_re100,sr,327,130.8,alpha,lower,0.9784236445017158 +karman_re100,sr,328,131.2,alpha,front,2.55726599641263 +karman_re100,sr,328,131.2,alpha,upper,-5.936524620311795 +karman_re100,sr,328,131.2,alpha,lower,0.9258927407094375 +karman_re100,sr,329,131.6,alpha,front,2.524494499228535 +karman_re100,sr,329,131.6,alpha,upper,-5.052970012660261 +karman_re100,sr,329,131.6,alpha,lower,1.809447348360972 +karman_re100,sr,330,132.0,alpha,front,2.0180981004688245 +karman_re100,sr,330,132.0,alpha,upper,-4.2191294563144375 +karman_re100,sr,330,132.0,alpha,lower,2.6432879047067943 +karman_re100,sr,331,132.4,alpha,front,1.3057940470403528 +karman_re100,sr,331,132.4,alpha,upper,-4.217307225884662 +karman_re100,sr,331,132.4,alpha,lower,2.6451101351365702 +karman_re100,sr,332,132.8,alpha,front,0.6174778770743535 +karman_re100,sr,332,132.8,alpha,upper,-4.137875396070262 +karman_re100,sr,332,132.8,alpha,lower,2.72454196495097 +karman_re100,sr,333,133.2,alpha,front,-0.07937560284914287 +karman_re100,sr,333,133.2,alpha,upper,-3.355681347446322 +karman_re100,sr,333,133.2,alpha,lower,3.5067360135749097 +karman_re100,sr,334,133.6,alpha,front,-0.853685180699351 +karman_re100,sr,334,133.6,alpha,upper,-2.353826090913381 +karman_re100,sr,334,133.6,alpha,lower,4.508591270107852 +karman_re100,sr,335,134.0,alpha,front,-1.6142977110028398 +karman_re100,sr,335,134.0,alpha,upper,-1.589379796311518 +karman_re100,sr,335,134.0,alpha,lower,5.273037564709714 +karman_re100,sr,336,134.4,alpha,front,-2.207768035500438 +karman_re100,sr,336,134.4,alpha,upper,-0.9928932411494147 +karman_re100,sr,336,134.4,alpha,lower,5.8695241198718175 +karman_re100,sr,337,134.8,alpha,front,-2.5515278542190543 +karman_re100,sr,337,134.8,alpha,upper,-0.9136804930952659 +karman_re100,sr,337,134.8,alpha,lower,5.948736867925966 +karman_re100,sr,338,135.2,alpha,front,-2.5338427896893356 +karman_re100,sr,338,135.2,alpha,upper,-1.7736831264135229 +karman_re100,sr,338,135.2,alpha,lower,5.08873423460771 +karman_re100,sr,339,135.6,alpha,front,-2.041317290081211 +karman_re100,sr,339,135.6,alpha,upper,-2.626805465840693 +karman_re100,sr,339,135.6,alpha,lower,4.235611895180539 +karman_re100,sr,340,136.0,alpha,front,-1.331424368145196 +karman_re100,sr,340,136.0,alpha,upper,-2.644129671942673 +karman_re100,sr,340,136.0,alpha,lower,4.21828768907856 +karman_re100,sr,341,136.4,alpha,front,-0.6427290682314185 +karman_re100,sr,341,136.4,alpha,upper,-2.7067805088035133 +karman_re100,sr,341,136.4,alpha,lower,4.155636852217719 +karman_re100,sr,342,136.8,alpha,front,0.05217616344490824 +karman_re100,sr,342,136.8,alpha,upper,-3.4735826554958047 +karman_re100,sr,342,136.8,alpha,lower,3.388834705525427 +karman_re100,sr,343,137.2,alpha,front,0.825824701713381 +karman_re100,sr,343,137.2,alpha,upper,-4.482427822922878 +karman_re100,sr,343,137.2,alpha,lower,2.379989538098354 +karman_re100,sr,344,137.6,alpha,front,1.5891303910802699 +karman_re100,sr,344,137.6,alpha,upper,-5.24770583653534 +karman_re100,sr,344,137.6,alpha,lower,1.6147115244858914 +karman_re100,sr,345,138.0,alpha,front,2.190774364757673 +karman_re100,sr,345,138.0,alpha,upper,-5.847492776964106 +karman_re100,sr,345,138.0,alpha,lower,1.0149245840571264 +karman_re100,sr,346,138.4,alpha,front,2.544220090065782 +karman_re100,sr,346,138.4,alpha,upper,-5.964674723431109 +karman_re100,sr,346,138.4,alpha,lower,0.8977426375901225 +karman_re100,sr,347,138.8,alpha,front,2.542688918338522 +karman_re100,sr,347,138.8,alpha,upper,-5.131508616145686 +karman_re100,sr,347,138.8,alpha,lower,1.7309087448755465 +karman_re100,sr,348,139.2,alpha,front,2.065418925847958 +karman_re100,sr,348,139.2,alpha,upper,-4.250356143319199 +karman_re100,sr,348,139.2,alpha,lower,2.612061217702033 +karman_re100,sr,349,139.6,alpha,front,1.3560989834149386 +karman_re100,sr,349,139.6,alpha,upper,-4.206173183292102 +karman_re100,sr,349,139.6,alpha,lower,2.65624417772913 +karman_re100,sr,350,140.0,alpha,front,0.6656681838643478 +karman_re100,sr,350,140.0,alpha,upper,-4.168138519169096 +karman_re100,sr,350,140.0,alpha,lower,2.6942788418521366 +karman_re100,sr,351,140.4,alpha,front,-0.0271575672648355 +karman_re100,sr,351,140.4,alpha,upper,-3.42773625744751 +karman_re100,sr,351,140.4,alpha,lower,3.434681103573723 +karman_re100,sr,352,140.8,alpha,front,-0.7978850800723091 +karman_re100,sr,352,140.8,alpha,upper,-2.4153906537232186 +karman_re100,sr,352,140.8,alpha,lower,4.447026707298013 +karman_re100,sr,353,141.2,alpha,front,-1.5643414019089605 +karman_re100,sr,353,141.2,alpha,upper,-1.6367923472908104 +karman_re100,sr,353,141.2,alpha,lower,5.225625013730422 +karman_re100,sr,354,141.6,alpha,front,-2.1727692664226397 +karman_re100,sr,354,141.6,alpha,upper,-1.0280423899131148 +karman_re100,sr,354,141.6,alpha,lower,5.834374971108117 +karman_re100,sr,355,142.0,alpha,front,-2.5367065772091486 +karman_re100,sr,355,142.0,alpha,upper,-0.8879154732671917 +karman_re100,sr,355,142.0,alpha,lower,5.974501887754041 +karman_re100,sr,356,142.4,alpha,front,-2.5508766866567973 +karman_re100,sr,356,142.4,alpha,upper,-1.6906304338443936 +karman_re100,sr,356,142.4,alpha,lower,5.171786927176838 +karman_re100,sr,357,142.8,alpha,front,-2.0882334556238242 +karman_re100,sr,357,142.8,alpha,upper,-2.5962293252998325 +karman_re100,sr,357,142.8,alpha,lower,4.2661880357214 +karman_re100,sr,358,143.2,alpha,front,-1.3813434258014143 +karman_re100,sr,358,143.2,alpha,upper,-2.660035555821928 +karman_re100,sr,358,143.2,alpha,lower,4.202381805199304 +karman_re100,sr,359,143.6,alpha,front,-0.6894824418834675 +karman_re100,sr,359,143.6,alpha,upper,-2.6843451054429126 +karman_re100,sr,359,143.6,alpha,lower,4.17807225557832 +karman_re100,sr,360,144.0,alpha,front,0.0022150841468173334 +karman_re100,sr,360,144.0,alpha,upper,-3.4027496705868883 +karman_re100,sr,360,144.0,alpha,lower,3.459667690434344 +karman_re100,sr,361,144.4,alpha,front,0.7707265398273387 +karman_re100,sr,361,144.4,alpha,upper,-4.416302279311369 +karman_re100,sr,361,144.4,alpha,lower,2.446115081709864 +karman_re100,sr,362,144.8,alpha,front,1.54002424948142 +karman_re100,sr,362,144.8,alpha,upper,-5.200273036859652 +karman_re100,sr,362,144.8,alpha,lower,1.6621443241615799 +karman_re100,sr,363,145.2,alpha,front,2.155532906337498 +karman_re100,sr,363,145.2,alpha,upper,-5.81630323794371 +karman_re100,sr,363,145.2,alpha,lower,1.0461141230775226 +karman_re100,sr,364,145.6,alpha,front,2.5290662585051265 +karman_re100,sr,364,145.6,alpha,upper,-5.985665694407844 +karman_re100,sr,364,145.6,alpha,lower,0.8767516666133885 +karman_re100,sr,365,146.0,alpha,front,2.557927997527675 +karman_re100,sr,365,146.0,alpha,upper,-5.205449395336749 +karman_re100,sr,365,146.0,alpha,lower,1.6569679656844831 +karman_re100,sr,366,146.4,alpha,front,2.1097485806624054 +karman_re100,sr,366,146.4,alpha,upper,-4.283355428610691 +karman_re100,sr,366,146.4,alpha,lower,2.579061932410541 +karman_re100,sr,367,146.8,alpha,front,1.4058107827743742 +karman_re100,sr,367,146.8,alpha,upper,-4.198711158055692 +karman_re100,sr,367,146.8,alpha,lower,2.6637062029655403 +karman_re100,sr,368,147.2,alpha,front,0.7134031262387887 +karman_re100,sr,368,147.2,alpha,upper,-4.195014476873857 +karman_re100,sr,368,147.2,alpha,lower,2.667402884147375 +karman_re100,sr,369,147.6,alpha,front,0.025125464779971806 +karman_re100,sr,369,147.6,alpha,upper,-3.4955066650880364 +karman_re100,sr,369,147.6,alpha,lower,3.3669106959331963 +karman_re100,sr,370,148.0,alpha,front,-0.7420715707037013 +karman_re100,sr,370,148.0,alpha,upper,-2.477242961166048 +karman_re100,sr,370,148.0,alpha,lower,4.385174399855185 +karman_re100,sr,371,148.4,alpha,front,-1.5143347434345007 +karman_re100,sr,371,148.4,alpha,upper,-1.684173383381728 +karman_re100,sr,371,148.4,alpha,lower,5.178243977639504 +karman_re100,sr,372,148.8,alpha,front,-2.1369699688334887 +karman_re100,sr,372,148.8,alpha,upper,-1.0646584273217217 +karman_re100,sr,372,148.8,alpha,lower,5.797758933699511 +karman_re100,sr,373,149.2,alpha,front,-2.5201216510851037 +karman_re100,sr,373,149.2,alpha,upper,-0.865809910513669 +karman_re100,sr,373,149.2,alpha,lower,5.996607450507563 +karman_re100,sr,374,149.6,alpha,front,-2.564533711940431 +karman_re100,sr,374,149.6,alpha,upper,-1.617648042200781 +karman_re100,sr,374,149.6,alpha,lower,5.244769318820451 +karman_re100,sr,375,150.0,alpha,front,-2.132221498326993 +karman_re100,sr,375,150.0,alpha,upper,-2.5611858351474 +karman_re100,sr,375,150.0,alpha,lower,4.301231525873832 +karman_re100,sr,376,150.4,alpha,front,-1.430329021925593 +karman_re100,sr,376,150.4,alpha,upper,-2.6725459007860457 +karman_re100,sr,376,150.4,alpha,lower,4.189871460235186 +karman_re100,sr,377,150.8,alpha,front,-0.7358757331047308 +karman_re100,sr,377,150.8,alpha,upper,-2.662015512939418 +karman_re100,sr,377,150.8,alpha,lower,4.200401848081814 +karman_re100,sr,378,151.2,alpha,front,-0.04723003887477514 +karman_re100,sr,378,151.2,alpha,upper,-3.3340325983284034 +karman_re100,sr,378,151.2,alpha,lower,3.528384762692829 +karman_re100,sr,379,151.6,alpha,front,0.714996812893613 +karman_re100,sr,379,151.6,alpha,upper,-4.348370795574701 +karman_re100,sr,379,151.6,alpha,lower,2.514046565446531 +karman_re100,sr,380,152.0,alpha,front,1.4896801080776871 +karman_re100,sr,380,152.0,alpha,upper,-5.1539466076855245 +karman_re100,sr,380,152.0,alpha,lower,1.7084707533357075 +karman_re100,sr,381,152.4,alpha,front,2.1197389367251285 +karman_re100,sr,381,152.4,alpha,upper,-5.780247312971492 +karman_re100,sr,381,152.4,alpha,lower,1.0821700480497398 +karman_re100,sr,382,152.8,alpha,front,2.512334191422311 +karman_re100,sr,382,152.8,alpha,upper,-6.004354099337295 +karman_re100,sr,382,152.8,alpha,lower,0.8580632616839372 +karman_re100,sr,383,153.2,alpha,front,2.570968220699289 +karman_re100,sr,383,153.2,alpha,upper,-5.283425298206547 +karman_re100,sr,383,153.2,alpha,lower,1.5789920628146852 +karman_re100,sr,384,153.6,alpha,front,2.154353558677013 +karman_re100,sr,384,153.6,alpha,upper,-4.3234583524369725 +karman_re100,sr,384,153.6,alpha,lower,2.5389590085842593 +karman_re100,sr,385,154.0,alpha,front,1.4558695666216754 +karman_re100,sr,385,154.0,alpha,upper,-4.1861881766870574 +karman_re100,sr,385,154.0,alpha,lower,2.6762291843341752 +karman_re100,sr,386,154.4,alpha,front,0.7602137978411372 +karman_re100,sr,386,154.4,alpha,upper,-4.21228920307863 +karman_re100,sr,386,154.4,alpha,lower,2.6501281579426026 +karman_re100,sr,387,154.8,alpha,front,0.07322334782274242 +karman_re100,sr,387,154.8,alpha,upper,-3.5611087875100087 +karman_re100,sr,387,154.8,alpha,lower,3.301308573511223 +karman_re100,sr,388,155.2,alpha,front,-0.6874682668611022 +karman_re100,sr,388,155.2,alpha,upper,-2.5437722607387716 +karman_re100,sr,388,155.2,alpha,lower,4.318645100282461 +karman_re100,sr,389,155.6,alpha,front,-1.4646862137993402 +karman_re100,sr,389,155.6,alpha,upper,-1.732786240544357 +karman_re100,sr,389,155.6,alpha,lower,5.129631120476875 +karman_re100,sr,390,156.0,alpha,front,-2.101348448069599 +karman_re100,sr,390,156.0,alpha,upper,-1.1015891568765683 +karman_re100,sr,390,156.0,alpha,lower,5.760828204144664 +karman_re100,sr,391,156.4,alpha,front,-2.5033568169450846 +karman_re100,sr,391,156.4,alpha,upper,-0.8511912651909972 +karman_re100,sr,391,156.4,alpha,lower,6.011226095830235 +karman_re100,sr,392,156.8,alpha,front,-2.5765998921568567 +karman_re100,sr,392,156.8,alpha,upper,-1.542015964000245 +karman_re100,sr,392,156.8,alpha,lower,5.320401397020987 +karman_re100,sr,393,157.2,alpha,front,-2.1753895654035587 +karman_re100,sr,393,157.2,alpha,upper,-2.520854847056451 +karman_re100,sr,393,157.2,alpha,lower,4.3415625139647815 +karman_re100,sr,394,157.6,alpha,front,-1.4791867466070265 +karman_re100,sr,394,157.6,alpha,upper,-2.679532766763426 +karman_re100,sr,394,157.6,alpha,lower,4.182884594257806 +karman_re100,sr,395,158.0,alpha,front,-0.7835034943462593 +karman_re100,sr,395,158.0,alpha,upper,-2.63894372197781 +karman_re100,sr,395,158.0,alpha,lower,4.223473639043423 +karman_re100,sr,396,158.4,alpha,front,-0.09817689377692451 +karman_re100,sr,396,158.4,alpha,upper,-3.2666762993660448 +karman_re100,sr,396,158.4,alpha,lower,3.5957410616551875 +karman_re100,sr,397,158.8,alpha,front,0.6594959669624398 +karman_re100,sr,397,158.8,alpha,upper,-4.284725336657071 +karman_re100,sr,397,158.8,alpha,lower,2.5776920243641612 +karman_re100,sr,398,159.2,alpha,front,1.439063929059475 +karman_re100,sr,398,159.2,alpha,upper,-5.107085795621556 +karman_re100,sr,398,159.2,alpha,lower,1.755331565399677 +karman_re100,sr,399,159.6,alpha,front,2.082669360671763 +karman_re100,sr,399,159.6,alpha,upper,-5.742436602475539 +karman_re100,sr,399,159.6,alpha,lower,1.1199807585456933 +karman_re100,sr,0,0.0,omega,front,0.01513372732826876 +karman_re100,sr,0,0.0,omega,upper,-0.04302448122361788 +karman_re100,sr,0,0.0,omega,lower,0.025599692386594448 +karman_re100,sr,1,0.4,omega,front,0.019326127554080134 +karman_re100,sr,1,0.4,omega,upper,-0.046517186477204396 +karman_re100,sr,1,0.4,omega,lower,0.022106987133007926 +karman_re100,sr,2,0.8,omega,front,0.02251731303111575 +karman_re100,sr,2,0.8,omega,upper,-0.05542898868760844 +karman_re100,sr,2,0.8,omega,lower,0.013195184922603881 +karman_re100,sr,3,1.2,omega,front,0.025956187268740973 +karman_re100,sr,3,1.2,omega,upper,-0.05955023631419319 +karman_re100,sr,3,1.2,omega,lower,0.00907393729601913 +karman_re100,sr,4,1.6,omega,front,0.02657473074117154 +karman_re100,sr,4,1.6,omega,upper,-0.04835524895162806 +karman_re100,sr,4,1.6,omega,lower,0.020268924658584268 +karman_re100,sr,5,2.0,omega,front,0.021541999797462994 +karman_re100,sr,5,2.0,omega,upper,-0.03270716599403257 +karman_re100,sr,5,2.0,omega,lower,0.03591700761617976 +karman_re100,sr,6,2.4,omega,front,0.013299256082766872 +karman_re100,sr,6,2.4,omega,upper,-0.031413365641849746 +karman_re100,sr,6,2.4,omega,lower,0.03721080796836258 +karman_re100,sr,7,2.8,omega,front,0.006308023034074302 +karman_re100,sr,7,2.8,omega,upper,-0.03533894539554185 +karman_re100,sr,7,2.8,omega,lower,0.03328522821467047 +karman_re100,sr,8,3.2,omega,front,7.957291697676162e-05 +karman_re100,sr,8,3.2,omega,upper,-0.03023298843865036 +karman_re100,sr,8,3.2,omega,lower,0.03839118517156196 +karman_re100,sr,9,3.6,omega,front,-0.006913321822224277 +karman_re100,sr,9,3.6,omega,upper,-0.020600525227543836 +karman_re100,sr,9,3.6,omega,lower,0.04802364838266849 +karman_re100,sr,10,4.0,omega,front,-0.013801707825117122 +karman_re100,sr,10,4.0,omega,upper,-0.01410248257311483 +karman_re100,sr,10,4.0,omega,lower,0.054521691037097496 +karman_re100,sr,11,4.4,omega,front,-0.018858760094835017 +karman_re100,sr,11,4.4,omega,upper,-0.011278640480146365 +karman_re100,sr,11,4.4,omega,lower,0.05734553313006596 +karman_re100,sr,12,4.8,omega,front,-0.021263063341048674 +karman_re100,sr,12,4.8,omega,upper,-0.013757128115189938 +karman_re100,sr,12,4.8,omega,lower,0.05486704549502239 +karman_re100,sr,13,5.2,omega,front,-0.020109305953043135 +karman_re100,sr,13,5.2,omega,upper,-0.022446101034051164 +karman_re100,sr,13,5.2,omega,lower,0.04617807257616116 +karman_re100,sr,14,5.6,omega,front,-0.01499003490247036 +karman_re100,sr,14,5.6,omega,upper,-0.028873408749890642 +karman_re100,sr,14,5.6,omega,lower,0.03975076486032168 +karman_re100,sr,15,6.0,omega,front,-0.008343210264869885 +karman_re100,sr,15,6.0,omega,upper,-0.030081299820854168 +karman_re100,sr,15,6.0,omega,lower,0.038542873789358154 +karman_re100,sr,16,6.4,omega,front,-0.0017275064506470255 +karman_re100,sr,16,6.4,omega,upper,-0.03337536079542373 +karman_re100,sr,16,6.4,omega,lower,0.035248812814788595 +karman_re100,sr,17,6.8,omega,front,0.005146769404736861 +karman_re100,sr,17,6.8,omega,upper,-0.040944430080223436 +karman_re100,sr,17,6.8,omega,lower,0.027679743529988882 +karman_re100,sr,18,7.2,omega,front,0.012369639573970968 +karman_re100,sr,18,7.2,omega,upper,-0.04940403551004776 +karman_re100,sr,18,7.2,omega,lower,0.019220138100164565 +karman_re100,sr,19,7.6,omega,front,0.01893912374461582 +karman_re100,sr,19,7.6,omega,upper,-0.05640243867699832 +karman_re100,sr,19,7.6,omega,lower,0.012221734933214004 +karman_re100,sr,20,8.0,omega,front,0.023646731333189334 +karman_re100,sr,20,8.0,omega,upper,-0.060160750496336554 +karman_re100,sr,20,8.0,omega,lower,0.00846342311387577 +karman_re100,sr,21,8.4,omega,front,0.025524186031372326 +karman_re100,sr,21,8.4,omega,upper,-0.05538315355575213 +karman_re100,sr,21,8.4,omega,lower,0.013241020054460196 +karman_re100,sr,22,8.8,omega,front,0.02302894887344233 +karman_re100,sr,22,8.8,omega,upper,-0.04563873103939032 +karman_re100,sr,22,8.8,omega,lower,0.022985442570822006 +karman_re100,sr,23,9.2,omega,front,0.016863659673343908 +karman_re100,sr,23,9.2,omega,upper,-0.04264958650583089 +karman_re100,sr,23,9.2,omega,lower,0.02597458710438143 +karman_re100,sr,24,9.6,omega,front,0.010139165122223515 +karman_re100,sr,24,9.6,omega,upper,-0.04377057717517259 +karman_re100,sr,24,9.6,omega,lower,0.024853596435039732 +karman_re100,sr,25,10.0,omega,front,0.0035167197523798856 +karman_re100,sr,25,10.0,omega,upper,-0.03897487135343939 +karman_re100,sr,25,10.0,omega,lower,0.02964930225677293 +karman_re100,sr,26,10.4,omega,front,-0.0037104139082742246 +karman_re100,sr,26,10.4,omega,upper,-0.02874653924853375 +karman_re100,sr,26,10.4,omega,lower,0.03987763436167857 +karman_re100,sr,27,10.8,omega,front,-0.01159184731553554 +karman_re100,sr,27,10.8,omega,upper,-0.01982806029692344 +karman_re100,sr,27,10.8,omega,lower,0.04879611331328888 +karman_re100,sr,28,11.2,omega,front,-0.018667150065858198 +karman_re100,sr,28,11.2,omega,upper,-0.013126807510808997 +karman_re100,sr,28,11.2,omega,lower,0.055497366099403325 +karman_re100,sr,29,11.6,omega,front,-0.02382280586986875 +karman_re100,sr,29,11.6,omega,upper,-0.00820745675455846 +karman_re100,sr,29,11.6,omega,lower,0.06041671685565387 +karman_re100,sr,30,12.0,omega,front,-0.026294547538190455 +karman_re100,sr,30,12.0,omega,upper,-0.011168509647400194 +karman_re100,sr,30,12.0,omega,lower,0.057455663962812126 +karman_re100,sr,31,12.4,omega,front,-0.024433790719239266 +karman_re100,sr,31,12.4,omega,upper,-0.021543849571826198 +karman_re100,sr,31,12.4,omega,lower,0.04708032403838613 +karman_re100,sr,32,12.8,omega,front,-0.018344732878929876 +karman_re100,sr,32,12.8,omega,upper,-0.026275542108698213 +karman_re100,sr,32,12.8,omega,lower,0.04234863150151411 +karman_re100,sr,33,13.2,omega,front,-0.011390259318042013 +karman_re100,sr,33,13.2,omega,upper,-0.024528111581375016 +karman_re100,sr,33,13.2,omega,lower,0.04409606202883731 +karman_re100,sr,34,13.6,omega,front,-0.004735926118163332 +karman_re100,sr,34,13.6,omega,upper,-0.02773390650915982 +karman_re100,sr,34,13.6,omega,lower,0.0408902671010525 +karman_re100,sr,35,14.0,omega,front,0.0023960240697937325 +karman_re100,sr,35,14.0,omega,upper,-0.037734774197998075 +karman_re100,sr,35,14.0,omega,lower,0.03088939941221425 +karman_re100,sr,36,14.4,omega,front,0.010362984546834026 +karman_re100,sr,36,14.4,omega,upper,-0.04755788269181608 +karman_re100,sr,36,14.4,omega,lower,0.021066290918396253 +karman_re100,sr,37,14.8,omega,front,0.017754689642297268 +karman_re100,sr,37,14.8,omega,upper,-0.054411067689066804 +karman_re100,sr,37,14.8,omega,lower,0.014213105921145518 +karman_re100,sr,38,15.2,omega,front,0.023235761396167738 +karman_re100,sr,38,15.2,omega,upper,-0.059849229630892994 +karman_re100,sr,38,15.2,omega,lower,0.008774943979319333 +karman_re100,sr,39,15.6,omega,front,0.026129248834550704 +karman_re100,sr,39,15.6,omega,upper,-0.058608802101984166 +karman_re100,sr,39,15.6,omega,lower,0.01001537150822816 +karman_re100,sr,40,16.0,omega,front,0.02498833275858362 +karman_re100,sr,40,16.0,omega,upper,-0.04865213442470681 +karman_re100,sr,40,16.0,omega,lower,0.019972039185505507 +karman_re100,sr,41,16.4,omega,front,0.019252349283600704 +karman_re100,sr,41,16.4,omega,upper,-0.041982501576595554 +karman_re100,sr,41,16.4,omega,lower,0.026641672033616767 +karman_re100,sr,42,16.8,omega,front,0.012137648364972525 +karman_re100,sr,42,16.8,omega,upper,-0.0430282630102229 +karman_re100,sr,42,16.8,omega,lower,0.02559591059998942 +karman_re100,sr,43,17.2,omega,front,0.005344308361875823 +karman_re100,sr,43,17.2,omega,upper,-0.041102506933363724 +karman_re100,sr,43,17.2,omega,lower,0.027521666676848598 +karman_re100,sr,44,17.6,omega,front,-0.001716458446793458 +karman_re100,sr,44,17.6,omega,upper,-0.03214649633787771 +karman_re100,sr,44,17.6,omega,lower,0.03647767727233461 +karman_re100,sr,45,18.0,omega,front,-0.009597031940802216 +karman_re100,sr,45,18.0,omega,upper,-0.022244895980046416 +karman_re100,sr,45,18.0,omega,lower,0.04637927763016591 +karman_re100,sr,46,18.4,omega,front,-0.01707464799787146 +karman_re100,sr,46,18.4,omega,upper,-0.014971809350508713 +karman_re100,sr,46,18.4,omega,lower,0.05365236425970361 +karman_re100,sr,47,18.8,omega,front,-0.022732695604493473 +karman_re100,sr,47,18.8,omega,upper,-0.0093186671512952 +karman_re100,sr,47,18.8,omega,lower,0.05930550645891712 +karman_re100,sr,48,19.2,omega,front,-0.0258123647515095 +karman_re100,sr,48,19.2,omega,upper,-0.009686649146827694 +karman_re100,sr,48,19.2,omega,lower,0.05893752446338463 +karman_re100,sr,49,19.6,omega,front,-0.025049687963201905 +karman_re100,sr,49,19.6,omega,upper,-0.01911060178741407 +karman_re100,sr,49,19.6,omega,lower,0.04951357182279825 +karman_re100,sr,50,20.0,omega,front,-0.019641633467127304 +karman_re100,sr,50,20.0,omega,upper,-0.026515137473102517 +karman_re100,sr,50,20.0,omega,lower,0.042109036137109805 +karman_re100,sr,51,20.4,omega,front,-0.012532817742851856 +karman_re100,sr,51,20.4,omega,upper,-0.025963622359160242 +karman_re100,sr,51,20.4,omega,lower,0.04266055125105209 +karman_re100,sr,52,20.8,omega,front,-0.005704938908272981 +karman_re100,sr,52,20.8,omega,upper,-0.02746728446367157 +karman_re100,sr,52,20.8,omega,lower,0.041156889146540754 +karman_re100,sr,53,21.2,omega,front,0.0013275412831674103 +karman_re100,sr,53,21.2,omega,upper,-0.03592778662147913 +karman_re100,sr,53,21.2,omega,lower,0.0326963869887332 +karman_re100,sr,54,21.6,omega,front,0.009149743628053578 +karman_re100,sr,54,21.6,omega,upper,-0.04588565399595646 +karman_re100,sr,54,21.6,omega,lower,0.022738519614255864 +karman_re100,sr,55,22.0,omega,front,0.016679487055955365 +karman_re100,sr,55,22.0,omega,upper,-0.053188166700978076 +karman_re100,sr,55,22.0,omega,lower,0.015436006909234246 +karman_re100,sr,56,22.4,omega,front,0.022451994699768493 +karman_re100,sr,56,22.4,omega,upper,-0.05903200594648784 +karman_re100,sr,56,22.4,omega,lower,0.009592167663724482 +karman_re100,sr,57,22.8,omega,front,0.02569526203783499 +karman_re100,sr,57,22.8,omega,upper,-0.059197376136476514 +karman_re100,sr,57,22.8,omega,lower,0.009426797473735813 +karman_re100,sr,58,23.2,omega,front,0.025182415856782978 +karman_re100,sr,58,23.2,omega,upper,-0.05001582931845583 +karman_re100,sr,58,23.2,omega,lower,0.0186083442917565 +karman_re100,sr,59,23.6,omega,front,0.01994173042732562 +karman_re100,sr,59,23.6,omega,upper,-0.04195125768581114 +karman_re100,sr,59,23.6,omega,lower,0.026672915924401176 +karman_re100,sr,60,24.0,omega,front,0.012808180902838355 +karman_re100,sr,60,24.0,omega,upper,-0.042301342421909076 +karman_re100,sr,60,24.0,omega,lower,0.026322831188303246 +karman_re100,sr,61,24.4,omega,front,0.005956608333515127 +karman_re100,sr,61,24.4,omega,upper,-0.041365146227741366 +karman_re100,sr,61,24.4,omega,lower,0.027259027382470963 +karman_re100,sr,62,24.8,omega,front,-0.0010154058426819527 +karman_re100,sr,62,24.8,omega,upper,-0.03328477756699129 +karman_re100,sr,62,24.8,omega,lower,0.03533939604322104 +karman_re100,sr,63,25.2,omega,front,-0.00879163032868643 +karman_re100,sr,63,25.2,omega,upper,-0.02320384988201285 +karman_re100,sr,63,25.2,omega,lower,0.04542032372819947 +karman_re100,sr,64,25.6,omega,front,-0.016356507767476644 +karman_re100,sr,64,25.6,omega,upper,-0.015658604025874788 +karman_re100,sr,64,25.6,omega,lower,0.052965569584337534 +karman_re100,sr,65,26.0,omega,front,-0.022211410796216417 +karman_re100,sr,65,26.0,omega,upper,-0.009826755662531382 +karman_re100,sr,65,26.0,omega,lower,0.058797417947680945 +karman_re100,sr,66,26.4,omega,front,-0.025540343120960853 +karman_re100,sr,66,26.4,omega,upper,-0.009267915240114829 +karman_re100,sr,66,26.4,omega,lower,0.059356258370097496 +karman_re100,sr,67,26.8,omega,front,-0.0252130428433127 +karman_re100,sr,67,26.8,omega,upper,-0.018041292490091055 +karman_re100,sr,67,26.8,omega,lower,0.05058288112012127 +karman_re100,sr,68,27.2,omega,front,-0.020162060915140678 +karman_re100,sr,68,27.2,omega,upper,-0.026389691470326826 +karman_re100,sr,68,27.2,omega,lower,0.0422344821398855 +karman_re100,sr,69,27.6,omega,front,-0.01302941714670619 +karman_re100,sr,69,27.6,omega,upper,-0.026552513826223905 +karman_re100,sr,69,27.6,omega,lower,0.04207165978398842 +karman_re100,sr,70,28.0,omega,front,-0.00612476327670758 +karman_re100,sr,70,28.0,omega,upper,-0.027398539378178974 +karman_re100,sr,70,28.0,omega,lower,0.04122563423203335 +karman_re100,sr,71,28.4,omega,front,0.0008630376669418664 +karman_re100,sr,71,28.4,omega,upper,-0.03513966168400713 +karman_re100,sr,71,28.4,omega,lower,0.03348451192620519 +karman_re100,sr,72,28.8,omega,front,0.008610575021712868 +karman_re100,sr,72,28.8,omega,upper,-0.04509056228895765 +karman_re100,sr,72,28.8,omega,lower,0.023533611321254675 +karman_re100,sr,73,29.2,omega,front,0.016198874246432567 +karman_re100,sr,73,29.2,omega,upper,-0.05269767476364727 +karman_re100,sr,73,29.2,omega,lower,0.01592649884656505 +karman_re100,sr,74,29.6,omega,front,0.022125624154068636 +karman_re100,sr,74,29.6,omega,upper,-0.05871216027864641 +karman_re100,sr,74,29.6,omega,lower,0.00991201333156592 +karman_re100,sr,75,30.0,omega,front,0.025555107832617267 +karman_re100,sr,75,30.0,omega,upper,-0.059441806828681776 +karman_re100,sr,75,30.0,omega,lower,0.00918236678153055 +karman_re100,sr,76,30.4,omega,front,0.025343643986162002 +karman_re100,sr,76,30.4,omega,upper,-0.050789341700438646 +karman_re100,sr,76,30.4,omega,lower,0.017834831909773675 +karman_re100,sr,77,30.8,omega,front,0.02038868418753222 +karman_re100,sr,77,30.8,omega,upper,-0.04233369922976606 +karman_re100,sr,77,30.8,omega,lower,0.026290474380446262 +karman_re100,sr,78,31.2,omega,front,0.013294260660536574 +karman_re100,sr,78,31.2,omega,upper,-0.04228249438721894 +karman_re100,sr,78,31.2,omega,lower,0.02634167922299338 +karman_re100,sr,79,31.6,omega,front,0.006417666580255352 +karman_re100,sr,79,31.6,omega,upper,-0.04160549216412484 +karman_re100,sr,79,31.6,omega,lower,0.027018681446087482 +karman_re100,sr,80,32.0,omega,front,-0.0005332132186688747 +karman_re100,sr,80,32.0,omega,upper,-0.033837652236262984 +karman_re100,sr,80,32.0,omega,lower,0.03478652137394934 +karman_re100,sr,81,32.4,omega,front,-0.0082851157820416 +karman_re100,sr,81,32.4,omega,upper,-0.02371162628928204 +karman_re100,sr,81,32.4,omega,lower,0.044912547320930286 +karman_re100,sr,82,32.8,omega,front,-0.01591361081759075 +karman_re100,sr,82,32.8,omega,upper,-0.016106712244486798 +karman_re100,sr,82,32.8,omega,lower,0.05251746136572552 +karman_re100,sr,83,33.2,omega,front,-0.021905660408655343 +karman_re100,sr,83,33.2,omega,upper,-0.010134316613739966 +karman_re100,sr,83,33.2,omega,lower,0.058489856996472356 +karman_re100,sr,84,33.6,omega,front,-0.025426086434883546 +karman_re100,sr,84,33.6,omega,upper,-0.00898846648281201 +karman_re100,sr,84,33.6,omega,lower,0.059635707127400316 +karman_re100,sr,85,34.0,omega,front,-0.02539133470632916 +karman_re100,sr,85,34.0,omega,upper,-0.017370316157247642 +karman_re100,sr,85,34.0,omega,lower,0.05125385745296468 +karman_re100,sr,86,34.4,omega,front,-0.02058427421516448 +karman_re100,sr,86,34.4,omega,upper,-0.026226800603802843 +karman_re100,sr,86,34.4,omega,lower,0.04239737300640948 +karman_re100,sr,87,34.8,omega,front,-0.013473364152016014 +karman_re100,sr,87,34.8,omega,upper,-0.02666390753819265 +karman_re100,sr,87,34.8,omega,lower,0.04196026607201967 +karman_re100,sr,88,35.2,omega,front,-0.006566280946604279 +karman_re100,sr,88,35.2,omega,upper,-0.027009210232532773 +karman_re100,sr,88,35.2,omega,lower,0.04161496337767955 +karman_re100,sr,89,35.6,omega,front,0.0003613133599215046 +karman_re100,sr,89,35.6,omega,upper,-0.03437611226963435 +karman_re100,sr,89,35.6,omega,lower,0.03424806134057798 +karman_re100,sr,90,36.0,omega,front,0.008057224007178107 +karman_re100,sr,90,36.0,omega,upper,-0.04449990629263664 +karman_re100,sr,90,36.0,omega,lower,0.024124267317575682 +karman_re100,sr,91,36.4,omega,front,0.015713682040866456 +karman_re100,sr,91,36.4,omega,upper,-0.05231445828837916 +karman_re100,sr,91,36.4,omega,lower,0.016309715321833153 +karman_re100,sr,92,36.8,omega,front,0.021783607116555102 +karman_re100,sr,92,36.8,omega,upper,-0.05840652828219973 +karman_re100,sr,92,36.8,omega,lower,0.010217645328012592 +karman_re100,sr,93,37.2,omega,front,0.02540050415436934 +karman_re100,sr,93,37.2,omega,upper,-0.05972124188385921 +karman_re100,sr,93,37.2,omega,lower,0.008902931726353112 +karman_re100,sr,94,37.6,omega,front,0.02550325685058024 +karman_re100,sr,94,37.6,omega,upper,-0.05160525607064077 +karman_re100,sr,94,37.6,omega,lower,0.017018917539571552 +karman_re100,sr,95,38.0,omega,front,0.020837692770784035 +karman_re100,sr,95,38.0,omega,upper,-0.04268162055251224 +karman_re100,sr,95,38.0,omega,lower,0.02594255305770008 +karman_re100,sr,96,38.4,omega,front,0.013773454896241422 +karman_re100,sr,96,38.4,omega,upper,-0.04208053723877664 +karman_re100,sr,96,38.4,omega,lower,0.026543636371435683 +karman_re100,sr,97,38.8,omega,front,0.006852872817656836 +karman_re100,sr,97,38.8,omega,upper,-0.0417228919743854 +karman_re100,sr,97,38.8,omega,lower,0.02690128163582693 +karman_re100,sr,98,39.2,omega,front,-7.826618904639108e-05 +karman_re100,sr,98,39.2,omega,upper,-0.03445661986853696 +karman_re100,sr,98,39.2,omega,lower,0.03416755374167537 +karman_re100,sr,99,39.6,omega,front,-0.007778860530266781 +karman_re100,sr,99,39.6,omega,upper,-0.02436594844995458 +karman_re100,sr,99,39.6,omega,lower,0.04425822516025774 +karman_re100,sr,100,40.0,omega,front,-0.015459167698022263 +karman_re100,sr,100,40.0,omega,upper,-0.016590882934642046 +karman_re100,sr,100,40.0,omega,lower,0.052033290675570276 +karman_re100,sr,101,40.4,omega,front,-0.02159579504702704 +karman_re100,sr,101,40.4,omega,upper,-0.01044211963583027 +karman_re100,sr,101,40.4,omega,lower,0.05818205397438206 +karman_re100,sr,102,40.8,omega,front,-0.025299780529315898 +karman_re100,sr,102,40.8,omega,upper,-0.008795862557400303 +karman_re100,sr,102,40.8,omega,lower,0.059828311052812014 +karman_re100,sr,103,41.2,omega,front,-0.02554668252533417 +karman_re100,sr,103,41.2,omega,upper,-0.016711673259705098 +karman_re100,sr,103,41.2,omega,lower,0.05191250035050723 +karman_re100,sr,104,41.6,omega,front,-0.021017698022333667 +karman_re100,sr,104,41.6,omega,upper,-0.02587665040199476 +karman_re100,sr,104,41.6,omega,lower,0.042747523208217564 +karman_re100,sr,105,42.0,omega,front,-0.01397487994644506 +karman_re100,sr,105,42.0,omega,upper,-0.026626336310399182 +karman_re100,sr,105,42.0,omega,lower,0.04199783729981315 +karman_re100,sr,106,42.4,omega,front,-0.007067003538490046 +karman_re100,sr,106,42.4,omega,upper,-0.026646274425286255 +karman_re100,sr,106,42.4,omega,lower,0.04197789918492607 +karman_re100,sr,107,42.8,omega,front,-0.00017822076782628797 +karman_re100,sr,107,42.8,omega,upper,-0.03372491723846532 +karman_re100,sr,107,42.8,omega,lower,0.034899256371747005 +karman_re100,sr,108,43.2,omega,front,0.007483376487965689 +karman_re100,sr,108,43.2,omega,upper,-0.04394425465928782 +karman_re100,sr,108,43.2,omega,lower,0.024679918950924504 +karman_re100,sr,109,43.6,omega,front,0.015202313485375058 +karman_re100,sr,109,43.6,omega,upper,-0.051860213040055045 +karman_re100,sr,109,43.6,omega,lower,0.016763960570157277 +karman_re100,sr,110,44.0,omega,front,0.021410712677603132 +karman_re100,sr,110,44.0,omega,upper,-0.05802893576817116 +karman_re100,sr,110,44.0,omega,lower,0.010595237842041168 +karman_re100,sr,111,44.4,omega,front,0.025222484906164848 +karman_re100,sr,111,44.4,omega,upper,-0.05995925465278206 +karman_re100,sr,111,44.4,omega,lower,0.008664918957430264 +karman_re100,sr,112,44.8,omega,front,0.025635258363326825 +karman_re100,sr,112,44.8,omega,upper,-0.05240997580440698 +karman_re100,sr,112,44.8,omega,lower,0.01621419780580534 +karman_re100,sr,113,45.2,omega,front,0.021277205567417835 +karman_re100,sr,113,45.2,omega,upper,-0.04294134738401732 +karman_re100,sr,113,45.2,omega,lower,0.025682826226195 +karman_re100,sr,114,45.6,omega,front,0.014236556422077178 +karman_re100,sr,114,45.6,omega,upper,-0.04182241203348271 +karman_re100,sr,114,45.6,omega,lower,0.026801761576729616 +karman_re100,sr,115,46.0,omega,front,0.007284276655628911 +karman_re100,sr,115,46.0,omega,upper,-0.041924389340398265 +karman_re100,sr,115,46.0,omega,lower,0.026699784269814057 +karman_re100,sr,116,46.4,omega,front,0.00039512561632004266 +karman_re100,sr,116,46.4,omega,upper,-0.03521839105152703 +karman_re100,sr,116,46.4,omega,lower,0.0334057825586853 +karman_re100,sr,117,46.8,omega,front,-0.007236093541607571 +karman_re100,sr,117,46.8,omega,upper,-0.025069960607090498 +karman_re100,sr,117,46.8,omega,lower,0.043554213003121824 +karman_re100,sr,118,47.2,omega,front,-0.014970562479329826 +karman_re100,sr,118,47.2,omega,upper,-0.017039257583469792 +karman_re100,sr,118,47.2,omega,lower,0.05158491602674253 +karman_re100,sr,119,47.6,omega,front,-0.021250525279688674 +karman_re100,sr,119,47.6,omega,upper,-0.010757687195636221 +karman_re100,sr,119,47.6,omega,lower,0.057866486414576104 +karman_re100,sr,120,48.0,omega,front,-0.025145511625609053 +karman_re100,sr,120,48.0,omega,upper,-0.008619983598473935 +karman_re100,sr,120,48.0,omega,lower,0.06000419001173839 +karman_re100,sr,121,48.4,omega,front,-0.025684651372075533 +karman_re100,sr,121,48.4,omega,upper,-0.015926282657475716 +karman_re100,sr,121,48.4,omega,lower,0.0526978909527366 +karman_re100,sr,122,48.8,omega,front,-0.021472530084207176 +karman_re100,sr,122,48.8,omega,upper,-0.025410909070476356 +karman_re100,sr,122,48.8,omega,lower,0.043213264539735965 +karman_re100,sr,123,49.2,omega,front,-0.014492704677800892 +karman_re100,sr,123,49.2,omega,upper,-0.026679795913800586 +karman_re100,sr,123,49.2,omega,lower,0.04194437769641174 +karman_re100,sr,124,49.6,omega,front,-0.00754603793489146 +karman_re100,sr,124,49.6,omega,upper,-0.026493364795872817 +karman_re100,sr,124,49.6,omega,lower,0.042130808814339504 +karman_re100,sr,125,50.0,omega,front,-0.0006695825762556979 +karman_re100,sr,125,50.0,omega,upper,-0.0331522384306436 +karman_re100,sr,125,50.0,omega,lower,0.035471935179568724 +karman_re100,sr,126,50.4,omega,front,0.006952027131549231 +karman_re100,sr,126,50.4,omega,upper,-0.04331576861724949 +karman_re100,sr,126,50.4,omega,lower,0.025308404992962833 +karman_re100,sr,127,50.8,omega,front,0.01471939410590413 +karman_re100,sr,127,50.8,omega,upper,-0.051364765500711604 +karman_re100,sr,127,50.8,omega,lower,0.017259408109500714 +karman_re100,sr,128,51.2,omega,front,0.02106366425401603 +karman_re100,sr,128,51.2,omega,upper,-0.057651903518824814 +karman_re100,sr,128,51.2,omega,lower,0.010972270091387517 +karman_re100,sr,129,51.6,omega,front,0.02505890713902538 +karman_re100,sr,129,51.6,omega,upper,-0.06009249411998253 +karman_re100,sr,129,51.6,omega,lower,0.008531679490229793 +karman_re100,sr,130,52.0,omega,front,0.02575345420023759 +karman_re100,sr,130,52.0,omega,upper,-0.053090149308297495 +karman_re100,sr,130,52.0,omega,lower,0.015534024301914823 +karman_re100,sr,131,52.4,omega,front,0.021693193570571045 +karman_re100,sr,131,52.4,omega,upper,-0.04330645573936584 +karman_re100,sr,131,52.4,omega,lower,0.02531771787084648 +karman_re100,sr,132,52.8,omega,front,0.014721952866753228 +karman_re100,sr,132,52.8,omega,upper,-0.041780386092482184 +karman_re100,sr,132,52.8,omega,lower,0.026843787517730137 +karman_re100,sr,133,53.2,omega,front,0.0077642953957406235 +karman_re100,sr,133,53.2,omega,upper,-0.04223835222907631 +karman_re100,sr,133,53.2,omega,lower,0.026385821381136012 +karman_re100,sr,134,53.6,omega,front,0.0009165263358419672 +karman_re100,sr,134,53.6,omega,upper,-0.035935934818705426 +karman_re100,sr,134,53.6,omega,lower,0.032688238791506896 +karman_re100,sr,135,54.0,omega,front,-0.006658603684268209 +karman_re100,sr,135,54.0,omega,upper,-0.02569928704615217 +karman_re100,sr,135,54.0,omega,lower,0.042924886564060155 +karman_re100,sr,136,54.4,omega,front,-0.014448840776956722 +karman_re100,sr,136,54.4,omega,upper,-0.01747885373730373 +karman_re100,sr,136,54.4,omega,lower,0.051145319872908594 +karman_re100,sr,137,54.8,omega,front,-0.02086900129434367 +karman_re100,sr,137,54.8,omega,upper,-0.011144679367675851 +karman_re100,sr,137,54.8,omega,lower,0.057479494242536476 +karman_re100,sr,138,55.2,omega,front,-0.024952353819377337 +karman_re100,sr,138,55.2,omega,upper,-0.008472997854600024 +karman_re100,sr,138,55.2,omega,lower,0.0601511757556123 +karman_re100,sr,139,55.6,omega,front,-0.025794627028809268 +karman_re100,sr,139,55.6,omega,upper,-0.01509739237453821 +karman_re100,sr,139,55.6,omega,lower,0.053526781235674115 +karman_re100,sr,140,56.0,omega,front,-0.02191637940994268 +karman_re100,sr,140,56.0,omega,upper,-0.024980997274369716 +karman_re100,sr,140,56.0,omega,lower,0.043643176335842616 +karman_re100,sr,141,56.4,omega,front,-0.014989867515199823 +karman_re100,sr,141,56.4,omega,upper,-0.026903862202773597 +karman_re100,sr,141,56.4,omega,lower,0.041720311407438725 +karman_re100,sr,142,56.8,omega,front,-0.00799357843854107 +karman_re100,sr,142,56.8,omega,upper,-0.026424736939675144 +karman_re100,sr,142,56.8,omega,lower,0.04219943667053718 +karman_re100,sr,143,57.2,omega,front,-0.0011368324592632023 +karman_re100,sr,143,57.2,omega,upper,-0.03247376094538352 +karman_re100,sr,143,57.2,omega,lower,0.0361504126648288 +karman_re100,sr,144,57.6,omega,front,0.006420263080939983 +karman_re100,sr,144,57.6,omega,upper,-0.04258573155664078 +karman_re100,sr,144,57.6,omega,lower,0.02603844205357155 +karman_re100,sr,145,58.0,omega,front,0.01422355527073529 +karman_re100,sr,145,58.0,omega,upper,-0.05086849735630371 +karman_re100,sr,145,58.0,omega,lower,0.01775567625390861 +karman_re100,sr,146,58.4,omega,front,0.020708223379002643 +karman_re100,sr,146,58.4,omega,upper,-0.05728482662479662 +karman_re100,sr,146,58.4,omega,lower,0.011339346985415704 +karman_re100,sr,147,58.8,omega,front,0.02488752832588233 +karman_re100,sr,147,58.8,omega,upper,-0.06019745011670999 +karman_re100,sr,147,58.8,omega,lower,0.00842672349350234 +karman_re100,sr,148,59.2,omega,front,0.025856579854823158 +karman_re100,sr,148,59.2,omega,upper,-0.053784944502427434 +karman_re100,sr,148,59.2,omega,lower,0.014839229107784886 +karman_re100,sr,149,59.6,omega,front,0.022115795812899863 +karman_re100,sr,149,59.6,omega,upper,-0.043819033980351724 +karman_re100,sr,149,59.6,omega,lower,0.024805139629860605 +karman_re100,sr,150,60.0,omega,front,0.015238736866644497 +karman_re100,sr,150,60.0,omega,upper,-0.041792641882405904 +karman_re100,sr,150,60.0,omega,lower,0.026831531727806425 +karman_re100,sr,151,60.4,omega,front,0.008262222353809568 +karman_re100,sr,151,60.4,omega,upper,-0.04243846415796737 +karman_re100,sr,151,60.4,omega,lower,0.02618570945224495 +karman_re100,sr,152,60.8,omega,front,0.0014298687402314687 +karman_re100,sr,152,60.8,omega,upper,-0.03652483389806097 +karman_re100,sr,152,60.8,omega,lower,0.032099339712151356 +karman_re100,sr,153,61.2,omega,front,-0.006102473241846001 +karman_re100,sr,153,61.2,omega,upper,-0.026313964390723654 +karman_re100,sr,153,61.2,omega,lower,0.04231020921948868 +karman_re100,sr,154,61.6,omega,front,-0.01393775460423472 +karman_re100,sr,154,61.6,omega,upper,-0.01797522236396442 +karman_re100,sr,154,61.6,omega,lower,0.05064895124624791 +karman_re100,sr,155,62.0,omega,front,-0.020485202262913157 +karman_re100,sr,155,62.0,omega,upper,-0.011549986713974154 +karman_re100,sr,155,62.0,omega,lower,0.057074186896238166 +karman_re100,sr,156,62.4,omega,front,-0.02475610134663197 +karman_re100,sr,156,62.4,omega,upper,-0.008397632358861058 +karman_re100,sr,156,62.4,omega,lower,0.06022654125135127 +karman_re100,sr,157,62.8,omega,front,-0.025876535791856572 +karman_re100,sr,157,62.8,omega,upper,-0.01437360196064465 +karman_re100,sr,157,62.8,omega,lower,0.054250571649567675 +karman_re100,sr,158,63.2,omega,front,-0.02231907988300202 +karman_re100,sr,158,63.2,omega,upper,-0.024565883773674066 +karman_re100,sr,158,63.2,omega,lower,0.044058289836538256 +karman_re100,sr,159,63.6,omega,front,-0.015472282512868812 +karman_re100,sr,159,63.6,omega,upper,-0.027043183891184656 +karman_re100,sr,159,63.6,omega,lower,0.04158098971902767 +karman_re100,sr,160,64.0,omega,front,-0.008454620923349983 +karman_re100,sr,160,64.0,omega,upper,-0.02625130913873352 +karman_re100,sr,160,64.0,omega,lower,0.0423728644714788 +karman_re100,sr,161,64.4,omega,front,-0.0016304959814119038 +karman_re100,sr,161,64.4,omega,upper,-0.031765342793708566 +karman_re100,sr,161,64.4,omega,lower,0.036858830816503756 +karman_re100,sr,162,64.8,omega,front,0.005856653713110413 +karman_re100,sr,162,64.8,omega,upper,-0.04186917129757302 +karman_re100,sr,162,64.8,omega,lower,0.026755002312639303 +karman_re100,sr,163,65.2,omega,front,0.013693937506772674 +karman_re100,sr,163,65.2,omega,upper,-0.050400078020502594 +karman_re100,sr,163,65.2,omega,lower,0.018224095589709728 +karman_re100,sr,164,65.6,omega,front,0.020316280535062303 +karman_re100,sr,164,65.6,omega,upper,-0.05689812067493161 +karman_re100,sr,164,65.6,omega,lower,0.01172605293528072 +karman_re100,sr,165,66.0,omega,front,0.024680308212933173 +karman_re100,sr,165,66.0,omega,upper,-0.06024960877942942 +karman_re100,sr,165,66.0,omega,lower,0.008374564830782902 +karman_re100,sr,166,66.4,omega,front,0.025923385579688457 +karman_re100,sr,166,66.4,omega,upper,-0.054574482281272 +karman_re100,sr,166,66.4,omega,lower,0.014049691328940322 +karman_re100,sr,167,66.8,omega,front,0.022533329373317645 +karman_re100,sr,167,66.8,omega,upper,-0.04437969145683957 +karman_re100,sr,167,66.8,omega,lower,0.02424448215337275 +karman_re100,sr,168,67.2,omega,front,0.015751776186854815 +karman_re100,sr,168,67.2,omega,upper,-0.0416655668491683 +karman_re100,sr,168,67.2,omega,lower,0.026958606761044026 +karman_re100,sr,169,67.6,omega,front,0.008728978205720026 +karman_re100,sr,169,67.6,omega,upper,-0.042452676306903754 +karman_re100,sr,169,67.6,omega,lower,0.026171497303308568 +karman_re100,sr,170,68.0,omega,front,0.0018959508805779142 +karman_re100,sr,170,68.0,omega,upper,-0.037087963846950824 +karman_re100,sr,170,68.0,omega,lower,0.0315362097632615 +karman_re100,sr,171,68.4,omega,front,-0.005577496589657742 +karman_re100,sr,171,68.4,omega,upper,-0.02703507375541775 +karman_re100,sr,171,68.4,omega,lower,0.04158909985479458 +karman_re100,sr,172,68.8,omega,front,-0.013436805351336725 +karman_re100,sr,172,68.8,omega,upper,-0.01849776966239383 +karman_re100,sr,172,68.8,omega,lower,0.05012640394781849 +karman_re100,sr,173,69.2,omega,front,-0.020114414150781964 +karman_re100,sr,173,69.2,omega,upper,-0.011954799261300377 +karman_re100,sr,173,69.2,omega,lower,0.05666937434891194 +karman_re100,sr,174,69.6,omega,front,-0.024565192834597984 +karman_re100,sr,174,69.6,omega,upper,-0.008361778464115286 +karman_re100,sr,174,69.6,omega,lower,0.06026239514609704 +karman_re100,sr,175,70.0,omega,front,-0.025944774742475973 +karman_re100,sr,175,70.0,omega,upper,-0.013734222728928786 +karman_re100,sr,175,70.0,omega,lower,0.05488995088128354 +karman_re100,sr,176,70.4,omega,front,-0.02271371823919551 +karman_re100,sr,176,70.4,omega,upper,-0.024092269809895345 +karman_re100,sr,176,70.4,omega,lower,0.04453190380031698 +karman_re100,sr,177,70.8,omega,front,-0.015978256935867463 +karman_re100,sr,177,70.8,omega,upper,-0.027020191724796094 +karman_re100,sr,177,70.8,omega,lower,0.04160398188541623 +karman_re100,sr,178,71.2,omega,front,-0.008954411119299066 +karman_re100,sr,178,71.2,omega,upper,-0.026033210886592925 +karman_re100,sr,178,71.2,omega,lower,0.0425909627236194 +karman_re100,sr,179,71.6,omega,front,-0.0021527655218975673 +karman_re100,sr,179,71.6,omega,upper,-0.031127335296989127 +karman_re100,sr,179,71.6,omega,lower,0.037496838313223195 +karman_re100,sr,180,72.0,omega,front,0.005280565224663981 +karman_re100,sr,180,72.0,omega,upper,-0.04122305518754505 +karman_re100,sr,180,72.0,omega,lower,0.027401118422667268 +karman_re100,sr,181,72.4,omega,front,0.013151868705070815 +karman_re100,sr,181,72.4,omega,upper,-0.04991779061135799 +karman_re100,sr,181,72.4,omega,lower,0.018706382998854333 +karman_re100,sr,182,72.8,omega,front,0.019900598002577867 +karman_re100,sr,182,72.8,omega,upper,-0.056466628567031066 +karman_re100,sr,182,72.8,omega,lower,0.012157545043181256 +karman_re100,sr,183,73.2,omega,front,0.024439685237551367 +karman_re100,sr,183,73.2,omega,upper,-0.06027175902633626 +karman_re100,sr,183,73.2,omega,lower,0.008352414583876056 +karman_re100,sr,184,73.6,omega,front,0.025962801063918517 +karman_re100,sr,184,73.6,omega,upper,-0.05530419658070509 +karman_re100,sr,184,73.6,omega,lower,0.013319977029507242 +karman_re100,sr,185,74.0,omega,front,0.022932132431361652 +karman_re100,sr,185,74.0,omega,upper,-0.04494862958443241 +karman_re100,sr,185,74.0,omega,lower,0.02367554402577992 +karman_re100,sr,186,74.4,omega,front,0.016240107902739158 +karman_re100,sr,186,74.4,omega,upper,-0.04146912708987923 +karman_re100,sr,186,74.4,omega,lower,0.027155046520333095 +karman_re100,sr,187,74.8,omega,front,0.0091773063619371 +karman_re100,sr,187,74.8,omega,upper,-0.042465506063635076 +karman_re100,sr,187,74.8,omega,lower,0.026158667546577245 +karman_re100,sr,188,75.2,omega,front,0.00236241946574026 +karman_re100,sr,188,75.2,omega,upper,-0.037729427324182906 +karman_re100,sr,188,75.2,omega,lower,0.03089474628602942 +karman_re100,sr,189,75.6,omega,front,-0.005038958127570908 +karman_re100,sr,189,75.6,omega,upper,-0.027791705118931732 +karman_re100,sr,189,75.6,omega,lower,0.040832468491280596 +karman_re100,sr,190,76.0,omega,front,-0.01291293381033247 +karman_re100,sr,190,76.0,omega,upper,-0.019012366683185778 +karman_re100,sr,190,76.0,omega,lower,0.04961180692702655 +karman_re100,sr,191,76.4,omega,front,-0.019719402392215736 +karman_re100,sr,191,76.4,omega,upper,-0.012343096180167917 +karman_re100,sr,191,76.4,omega,lower,0.0562810774300444 +karman_re100,sr,192,76.8,omega,front,-0.02434730522413704 +karman_re100,sr,192,76.8,omega,upper,-0.008370929961411115 +karman_re100,sr,192,76.8,omega,lower,0.060253243648801205 +karman_re100,sr,193,77.2,omega,front,-0.025983762212571287 +karman_re100,sr,193,77.2,omega,upper,-0.013050136507012935 +karman_re100,sr,193,77.2,omega,lower,0.055574037103199386 +karman_re100,sr,194,77.6,omega,front,-0.02309807360020158 +karman_re100,sr,194,77.6,omega,upper,-0.02344006843374004 +karman_re100,sr,194,77.6,omega,lower,0.04518410517647228 +karman_re100,sr,195,78.0,omega,front,-0.016493847468959776 +karman_re100,sr,195,78.0,omega,upper,-0.02704218972586538 +karman_re100,sr,195,78.0,omega,lower,0.041581983884346946 +karman_re100,sr,196,78.4,omega,front,-0.009427804298284513 +karman_re100,sr,196,78.4,omega,upper,-0.025969031653768803 +karman_re100,sr,196,78.4,omega,lower,0.04265514195644352 +karman_re100,sr,197,78.8,omega,front,-0.0026334728475084722 +karman_re100,sr,197,78.8,omega,upper,-0.030623581224748328 +karman_re100,sr,197,78.8,omega,lower,0.038000592385463994 +karman_re100,sr,198,79.2,omega,front,0.0047520218250193605 +karman_re100,sr,198,79.2,omega,upper,-0.040567387173668465 +karman_re100,sr,198,79.2,omega,lower,0.028056786436543857 +karman_re100,sr,199,79.6,omega,front,0.012639031403980108 +karman_re100,sr,199,79.6,omega,upper,-0.0493893909829327 +karman_re100,sr,199,79.6,omega,lower,0.01923478262727962 +karman_re100,sr,200,80.0,omega,front,0.019507783146437693 +karman_re100,sr,200,80.0,omega,upper,-0.05604023821714723 +karman_re100,sr,200,80.0,omega,lower,0.012583935393065095 +karman_re100,sr,201,80.4,omega,front,0.024220602384299204 +karman_re100,sr,201,80.4,omega,upper,-0.06022612942636066 +karman_re100,sr,201,80.4,omega,lower,0.008398044183851662 +karman_re100,sr,202,80.8,omega,front,0.025989027141627093 +karman_re100,sr,202,80.8,omega,upper,-0.05591385361878297 +karman_re100,sr,202,80.8,omega,lower,0.012710319991429353 +karman_re100,sr,203,81.2,omega,front,0.023274878069699998 +karman_re100,sr,203,81.2,omega,upper,-0.04544168686412612 +karman_re100,sr,203,81.2,omega,lower,0.023182486746086202 +karman_re100,sr,204,81.6,omega,front,0.016730466469790626 +karman_re100,sr,204,81.6,omega,upper,-0.04147215373712996 +karman_re100,sr,204,81.6,omega,lower,0.02715201987308237 +karman_re100,sr,205,82.0,omega,front,0.009657701390408974 +karman_re100,sr,205,82.0,omega,upper,-0.042618784127975415 +karman_re100,sr,205,82.0,omega,lower,0.02600538948223691 +karman_re100,sr,206,82.4,omega,front,0.0028612480728798808 +karman_re100,sr,206,82.4,omega,upper,-0.03836652743571047 +karman_re100,sr,206,82.4,omega,lower,0.03025764617450185 +karman_re100,sr,207,82.8,omega,front,-0.004479067021537412 +karman_re100,sr,207,82.8,omega,upper,-0.028497209285275757 +karman_re100,sr,207,82.8,omega,lower,0.04012696432493657 +karman_re100,sr,208,83.2,omega,front,-0.012365517051936632 +karman_re100,sr,208,83.2,omega,upper,-0.01949093624897713 +karman_re100,sr,208,83.2,omega,lower,0.0491332373612352 +karman_re100,sr,209,83.6,omega,front,-0.019296625658647343 +karman_re100,sr,209,83.6,omega,upper,-0.012773747891045106 +karman_re100,sr,209,83.6,omega,lower,0.055850425719167214 +karman_re100,sr,210,84.0,omega,front,-0.024098375932953577 +karman_re100,sr,210,84.0,omega,upper,-0.008439920162702187 +karman_re100,sr,210,84.0,omega,lower,0.06018425344751014 +karman_re100,sr,211,84.4,omega,front,-0.025993638505531092 +karman_re100,sr,211,84.4,omega,upper,-0.012355217993754573 +karman_re100,sr,211,84.4,omega,lower,0.05626895561645775 +karman_re100,sr,212,84.8,omega,front,-0.023467172299695114 +karman_re100,sr,212,84.8,omega,upper,-0.02278218524292693 +karman_re100,sr,212,84.8,omega,lower,0.0458419883672854 +karman_re100,sr,213,85.2,omega,front,-0.01700053450885289 +karman_re100,sr,213,85.2,omega,upper,-0.02714137027674493 +karman_re100,sr,213,85.2,omega,lower,0.04148280333346739 +karman_re100,sr,214,85.6,omega,front,-0.009905029846568762 +karman_re100,sr,214,85.6,omega,upper,-0.026078698897939602 +karman_re100,sr,214,85.6,omega,lower,0.04254547471227272 +karman_re100,sr,215,86.0,omega,front,-0.003094391012859162 +karman_re100,sr,215,86.0,omega,upper,-0.030064537554138626 +karman_re100,sr,215,86.0,omega,lower,0.038559636056073696 +karman_re100,sr,216,86.4,omega,front,0.004222689218814047 +karman_re100,sr,216,86.4,omega,upper,-0.03978842743561769 +karman_re100,sr,216,86.4,omega,lower,0.028835746174594636 +karman_re100,sr,217,86.8,omega,front,0.012112923444722007 +karman_re100,sr,217,86.8,omega,upper,-0.04882820978076364 +karman_re100,sr,217,86.8,omega,lower,0.019795963829448687 +karman_re100,sr,218,87.2,omega,front,0.019099756916587628 +karman_re100,sr,218,87.2,omega,upper,-0.05561940484033439 +karman_re100,sr,218,87.2,omega,lower,0.013004768769877937 +karman_re100,sr,219,87.6,omega,front,0.02398628773342616 +karman_re100,sr,219,87.6,omega,upper,-0.060147639846034925 +karman_re100,sr,219,87.6,omega,lower,0.008476533764177395 +karman_re100,sr,220,88.0,omega,front,0.026001044393256744 +karman_re100,sr,220,88.0,omega,upper,-0.05652492349823343 +karman_re100,sr,220,88.0,omega,lower,0.01209925011197889 +karman_re100,sr,221,88.4,omega,front,0.02363272674622035 +karman_re100,sr,221,88.4,omega,upper,-0.046099429988768675 +karman_re100,sr,221,88.4,omega,lower,0.022524743621443646 +karman_re100,sr,222,88.8,omega,front,0.017245121942957863 +karman_re100,sr,222,88.8,omega,upper,-0.04151473842035433 +karman_re100,sr,222,88.8,omega,lower,0.027109435189857995 +karman_re100,sr,223,89.2,omega,front,0.010156512126626476 +karman_re100,sr,223,89.2,omega,upper,-0.04267739268560316 +karman_re100,sr,223,89.2,omega,lower,0.02594678092460917 +karman_re100,sr,224,89.6,omega,front,0.003361257714872633 +karman_re100,sr,224,89.6,omega,upper,-0.038888130809947005 +karman_re100,sr,224,89.6,omega,lower,0.029736042800265317 +karman_re100,sr,225,90.0,omega,front,-0.003923737218626073 +karman_re100,sr,225,90.0,omega,upper,-0.02917577202820487 +karman_re100,sr,225,90.0,omega,lower,0.03944840158200745 +karman_re100,sr,226,90.4,omega,front,-0.011822321827143647 +karman_re100,sr,226,90.4,omega,upper,-0.020013313032068478 +karman_re100,sr,226,90.4,omega,lower,0.048610860578143844 +karman_re100,sr,227,90.8,omega,front,-0.01886726709776209 +karman_re100,sr,227,90.8,omega,upper,-0.01322955974903774 +karman_re100,sr,227,90.8,omega,lower,0.055394613861174585 +karman_re100,sr,228,91.2,omega,front,-0.023838344026154545 +karman_re100,sr,228,91.2,omega,upper,-0.008548762995662589 +karman_re100,sr,228,91.2,omega,lower,0.06007541061454973 +karman_re100,sr,229,91.6,omega,front,-0.025980299027663606 +karman_re100,sr,229,91.6,omega,upper,-0.011743837532795487 +karman_re100,sr,229,91.6,omega,lower,0.05688033607741683 +karman_re100,sr,230,92.0,omega,front,-0.02380004475306011 +karman_re100,sr,230,92.0,omega,upper,-0.022173425694061468 +karman_re100,sr,230,92.0,omega,lower,0.04645074791615086 +karman_re100,sr,231,92.4,omega,front,-0.017489825260557822 +karman_re100,sr,231,92.4,omega,upper,-0.027197337369090975 +karman_re100,sr,231,92.4,omega,lower,0.04142683624112135 +karman_re100,sr,232,92.8,omega,front,-0.010375094816058314 +karman_re100,sr,232,92.8,omega,upper,-0.02605340629694548 +karman_re100,sr,232,92.8,omega,lower,0.042570767313266845 +karman_re100,sr,233,93.2,omega,front,-0.0035741587830645837 +karman_re100,sr,233,93.2,omega,upper,-0.029491669961478326 +karman_re100,sr,233,93.2,omega,lower,0.039132503648733996 +karman_re100,sr,234,93.6,omega,front,0.0036717513337630354 +karman_re100,sr,234,93.6,omega,upper,-0.03904254462823555 +karman_re100,sr,234,93.6,omega,lower,0.02958162898197677 +karman_re100,sr,235,94.0,omega,front,0.011561336656498871 +karman_re100,sr,235,94.0,omega,upper,-0.04829901847398303 +karman_re100,sr,235,94.0,omega,lower,0.020325155136229293 +karman_re100,sr,236,94.4,omega,front,0.01865963761859692 +karman_re100,sr,236,94.4,omega,upper,-0.05519494192275408 +karman_re100,sr,236,94.4,omega,lower,0.013429231687458248 +karman_re100,sr,237,94.8,omega,front,0.023728157026341824 +karman_re100,sr,237,94.8,omega,upper,-0.06000148155828816 +karman_re100,sr,237,94.8,omega,lower,0.008622692051924159 +karman_re100,sr,238,95.2,omega,front,0.025973075179144635 +karman_re100,sr,238,95.2,omega,upper,-0.05713558155269329 +karman_re100,sr,238,95.2,omega,lower,0.011488592057519034 +karman_re100,sr,239,95.6,omega,front,0.023964618851857633 +karman_re100,sr,239,95.6,omega,upper,-0.04683627396077477 +karman_re100,sr,239,95.6,omega,lower,0.021787899649437552 +karman_re100,sr,240,96.0,omega,front,0.017756355079039412 +karman_re100,sr,240,96.0,omega,upper,-0.0415366252819622 +karman_re100,sr,240,96.0,omega,lower,0.027087548328250128 +karman_re100,sr,241,96.4,omega,front,0.010639966745764865 +karman_re100,sr,241,96.4,omega,upper,-0.0425925856642478 +karman_re100,sr,241,96.4,omega,lower,0.026031587945964524 +karman_re100,sr,242,96.8,omega,front,0.0038276346144345387 +karman_re100,sr,242,96.8,omega,upper,-0.03933162293476415 +karman_re100,sr,242,96.8,omega,lower,0.029292550675448174 +karman_re100,sr,243,97.2,omega,front,-0.0034076609516505547 +karman_re100,sr,243,97.2,omega,upper,-0.02990659163241865 +karman_re100,sr,243,97.2,omega,lower,0.03871758197779367 +karman_re100,sr,244,97.6,omega,front,-0.011293600939272508 +karman_re100,sr,244,97.6,omega,upper,-0.02057979543430144 +karman_re100,sr,244,97.6,omega,lower,0.04804437817591088 +karman_re100,sr,245,98.0,omega,front,-0.018445151033314545 +karman_re100,sr,245,98.0,omega,upper,-0.013667948593379817 +karman_re100,sr,245,98.0,omega,lower,0.054956225016832505 +karman_re100,sr,246,98.4,omega,front,-0.023585954214051796 +karman_re100,sr,246,98.4,omega,upper,-0.00869323820567511 +karman_re100,sr,246,98.4,omega,lower,0.05993093540453721 +karman_re100,sr,247,98.8,omega,front,-0.025956686322566133 +karman_re100,sr,247,98.8,omega,upper,-0.011226189505418809 +karman_re100,sr,247,98.8,omega,lower,0.05739798410479351 +karman_re100,sr,248,99.2,omega,front,-0.024114323455455385 +karman_re100,sr,248,99.2,omega,upper,-0.021517719618725485 +karman_re100,sr,248,99.2,omega,lower,0.04710645399148684 +karman_re100,sr,249,99.6,omega,front,-0.017985280037400363 +karman_re100,sr,249,99.6,omega,upper,-0.027101317441799205 +karman_re100,sr,249,99.6,omega,lower,0.041522856168413114 +karman_re100,sr,250,100.0,omega,front,-0.010868065645725723 +karman_re100,sr,250,100.0,omega,upper,-0.02600260642832628 +karman_re100,sr,250,100.0,omega,lower,0.04262156718188605 +karman_re100,sr,251,100.4,omega,front,-0.004068995403601005 +karman_re100,sr,251,100.4,omega,upper,-0.02896331296188756 +karman_re100,sr,251,100.4,omega,lower,0.03966086064832476 +karman_re100,sr,252,100.8,omega,front,0.003122679572579586 +karman_re100,sr,252,100.8,omega,upper,-0.03833281716235757 +karman_re100,sr,252,100.8,omega,lower,0.030291356447854755 +karman_re100,sr,253,101.2,omega,front,0.011007892624369473 +karman_re100,sr,253,101.2,omega,upper,-0.04779017025601741 +karman_re100,sr,253,101.2,omega,lower,0.02083400335419491 +karman_re100,sr,254,101.6,omega,front,0.01821527103511559 +karman_re100,sr,254,101.6,omega,upper,-0.05476120114383276 +karman_re100,sr,254,101.6,omega,lower,0.013862972466379561 +karman_re100,sr,255,102.0,omega,front,0.023436902287609723 +karman_re100,sr,255,102.0,omega,upper,-0.059839301679825596 +karman_re100,sr,255,102.0,omega,lower,0.008784871930386729 +karman_re100,sr,256,102.4,omega,front,0.02592666050941654 +karman_re100,sr,256,102.4,omega,upper,-0.05769609972423977 +karman_re100,sr,256,102.4,omega,lower,0.010928073885972549 +karman_re100,sr,257,102.8,omega,front,0.024266261369320523 +karman_re100,sr,257,102.8,omega,upper,-0.04751853932247339 +karman_re100,sr,257,102.8,omega,lower,0.02110563428773894 +karman_re100,sr,258,103.2,omega,front,0.01824217731785988 +karman_re100,sr,258,103.2,omega,upper,-0.04152092416873446 +karman_re100,sr,258,103.2,omega,lower,0.02710324944147786 +karman_re100,sr,259,103.6,omega,front,0.011101712967506942 +karman_re100,sr,259,103.6,omega,upper,-0.04250746806138382 +karman_re100,sr,259,103.6,omega,lower,0.0261167055488285 +karman_re100,sr,260,104.0,omega,front,0.004280384325382785 +karman_re100,sr,260,104.0,omega,upper,-0.039813106485886436 +karman_re100,sr,260,104.0,omega,lower,0.02881106712432589 +karman_re100,sr,261,104.4,omega,front,-0.002883510024863842 +karman_re100,sr,261,104.4,omega,upper,-0.030676127353124364 +karman_re100,sr,261,104.4,omega,lower,0.03794804625708796 +karman_re100,sr,262,104.8,omega,front,-0.01075314695853337 +karman_re100,sr,262,104.8,omega,upper,-0.02114870463518513 +karman_re100,sr,262,104.8,omega,lower,0.04747546897502719 +karman_re100,sr,263,105.2,omega,front,-0.01800796034656115 +karman_re100,sr,263,105.2,omega,upper,-0.014094896163029134 +karman_re100,sr,263,105.2,omega,lower,0.05452927744718319 +karman_re100,sr,264,105.6,omega,front,-0.023314030263077462 +karman_re100,sr,264,105.6,omega,upper,-0.008872419376818189 +karman_re100,sr,264,105.6,omega,lower,0.059751754233394135 +karman_re100,sr,265,106.0,omega,front,-0.02590885885099493 +karman_re100,sr,265,106.0,omega,upper,-0.010710654650267482 +karman_re100,sr,265,106.0,omega,lower,0.05791351895994484 +karman_re100,sr,266,106.4,omega,front,-0.024409274922077402 +karman_re100,sr,266,106.4,omega,upper,-0.020769878929872306 +karman_re100,sr,266,106.4,omega,lower,0.04785429468034002 +karman_re100,sr,267,106.8,omega,front,-0.01849121228058283 +karman_re100,sr,267,106.8,omega,upper,-0.026982328184994506 +karman_re100,sr,267,106.8,omega,lower,0.041641845425217816 +karman_re100,sr,268,107.2,omega,front,-0.011360988745601134 +karman_re100,sr,268,107.2,omega,upper,-0.02606160930267331 +karman_re100,sr,268,107.2,omega,lower,0.04256256430753901 +karman_re100,sr,269,107.6,omega,front,-0.00454047483992641 +karman_re100,sr,269,107.6,omega,upper,-0.02854308704596659 +karman_re100,sr,269,107.6,omega,lower,0.040081086564245735 +karman_re100,sr,270,108.0,omega,front,0.0025995725407436518 +karman_re100,sr,270,108.0,omega,upper,-0.03764596920094835 +karman_re100,sr,270,108.0,omega,lower,0.030978204409263972 +karman_re100,sr,271,108.4,omega,front,0.010471479914018762 +karman_re100,sr,271,108.4,omega,upper,-0.04722475357464738 +karman_re100,sr,271,108.4,omega,lower,0.021399420035564942 +karman_re100,sr,272,108.8,omega,front,0.017774963481945287 +karman_re100,sr,272,108.8,omega,upper,-0.05429523601093313 +karman_re100,sr,272,108.8,omega,lower,0.014328937599279185 +karman_re100,sr,273,109.2,omega,front,0.02315958997611749 +karman_re100,sr,273,109.2,omega,upper,-0.05963682080570208 +karman_re100,sr,273,109.2,omega,lower,0.008987352804510245 +karman_re100,sr,274,109.6,omega,front,0.025870483210233303 +karman_re100,sr,274,109.6,omega,upper,-0.05817378169679814 +karman_re100,sr,274,109.6,omega,lower,0.010450391913414183 +karman_re100,sr,275,110.0,omega,front,0.024543059087055313 +karman_re100,sr,275,110.0,omega,upper,-0.04820161767694458 +karman_re100,sr,275,110.0,omega,lower,0.020422555933267746 +karman_re100,sr,276,110.4,omega,front,0.018728039516506208 +karman_re100,sr,276,110.4,omega,upper,-0.041614502072791736 +karman_re100,sr,276,110.4,omega,lower,0.027009671537420583 +karman_re100,sr,277,110.8,omega,front,0.011587276355455468 +karman_re100,sr,277,110.8,omega,upper,-0.04249220541616827 +karman_re100,sr,277,110.8,omega,lower,0.026131968194044057 +karman_re100,sr,278,111.2,omega,front,0.0047679015268167245 +karman_re100,sr,278,111.2,omega,upper,-0.04032418967274746 +karman_re100,sr,278,111.2,omega,lower,0.028299983937464867 +karman_re100,sr,279,111.6,omega,front,-0.0023378213624370837 +karman_re100,sr,279,111.6,omega,upper,-0.03141103628053504 +karman_re100,sr,279,111.6,omega,lower,0.03721313732967728 +karman_re100,sr,280,112.0,omega,front,-0.010191476530254037 +karman_re100,sr,280,112.0,omega,upper,-0.02169613803822238 +karman_re100,sr,280,112.0,omega,lower,0.04692803557198994 +karman_re100,sr,281,112.4,omega,front,-0.01754691808375127 +karman_re100,sr,281,112.4,omega,upper,-0.014536836902761523 +karman_re100,sr,281,112.4,omega,lower,0.0540873367074508 +karman_re100,sr,282,112.8,omega,front,-0.02301206717901158 +karman_re100,sr,282,112.8,omega,upper,-0.009097216445811495 +karman_re100,sr,282,112.8,omega,lower,0.059526957164400825 +karman_re100,sr,283,113.2,omega,front,-0.025831315476923564 +karman_re100,sr,283,113.2,omega,upper,-0.010213977725785734 +karman_re100,sr,283,113.2,omega,lower,0.05841019588442659 +karman_re100,sr,284,113.6,omega,front,-0.024682993069232752 +karman_re100,sr,284,113.6,omega,upper,-0.02000621533112135 +karman_re100,sr,284,113.6,omega,lower,0.04861795827909097 +karman_re100,sr,285,114.0,omega,front,-0.018986120939805312 +karman_re100,sr,285,114.0,omega,upper,-0.02690518521910201 +karman_re100,sr,285,114.0,omega,lower,0.04171898839111031 +karman_re100,sr,286,114.4,omega,front,-0.011840573699603257 +karman_re100,sr,286,114.4,omega,upper,-0.02619056457200479 +karman_re100,sr,286,114.4,omega,lower,0.04243360903820753 +karman_re100,sr,287,114.8,omega,front,-0.005004948208783769 +karman_re100,sr,287,114.8,omega,upper,-0.02816240241897714 +karman_re100,sr,287,114.8,omega,lower,0.04046177119123518 +karman_re100,sr,288,115.2,omega,front,0.002085507751502253 +karman_re100,sr,288,115.2,omega,upper,-0.03688307139876033 +karman_re100,sr,288,115.2,omega,lower,0.031741102211451995 +karman_re100,sr,289,115.6,omega,front,0.009925910631571755 +karman_re100,sr,289,115.6,omega,upper,-0.046623001901684884 +karman_re100,sr,289,115.6,omega,lower,0.02200117170852744 +karman_re100,sr,290,116.0,omega,front,0.017321096227867216 +karman_re100,sr,290,116.0,omega,upper,-0.05384437823249476 +karman_re100,sr,290,116.0,omega,lower,0.014779795377717562 +karman_re100,sr,291,116.4,omega,front,0.02286896127465716 +karman_re100,sr,291,116.4,omega,upper,-0.059398170887949034 +karman_re100,sr,291,116.4,omega,lower,0.009226002722263286 +karman_re100,sr,292,116.8,omega,front,0.025796066470536276 +karman_re100,sr,292,116.8,omega,upper,-0.058595642733014514 +karman_re100,sr,292,116.8,omega,lower,0.010028530877197803 +karman_re100,sr,293,117.2,omega,front,0.024801862007210188 +karman_re100,sr,293,117.2,omega,upper,-0.048960505323771226 +karman_re100,sr,293,117.2,omega,lower,0.0196636682864411 +karman_re100,sr,294,117.6,omega,front,0.019221915880227362 +karman_re100,sr,294,117.6,omega,upper,-0.04180347265129004 +karman_re100,sr,294,117.6,omega,lower,0.026820700958922288 +karman_re100,sr,295,118.0,omega,front,0.012098168501023026 +karman_re100,sr,295,118.0,omega,upper,-0.0424988844410621 +karman_re100,sr,295,118.0,omega,lower,0.026125289169150225 +karman_re100,sr,296,118.4,omega,front,0.00525390014386855 +karman_re100,sr,296,118.4,omega,upper,-0.04071198113543429 +karman_re100,sr,296,118.4,omega,lower,0.027912192474778035 +karman_re100,sr,297,118.8,omega,front,-0.0018062848053364343 +karman_re100,sr,297,118.8,omega,upper,-0.032098057802199084 +karman_re100,sr,297,118.8,omega,lower,0.03652611580801324 +karman_re100,sr,298,119.2,omega,front,-0.00963592395131354 +karman_re100,sr,298,119.2,omega,upper,-0.022260845253989376 +karman_re100,sr,298,119.2,omega,lower,0.04636332835622294 +karman_re100,sr,299,119.6,omega,front,-0.01707885532353623 +karman_re100,sr,299,119.6,omega,upper,-0.014991141526962294 +karman_re100,sr,299,119.6,omega,lower,0.05363303208325003 +karman_re100,sr,300,120.0,omega,front,-0.022705920745176453 +karman_re100,sr,300,120.0,omega,upper,-0.009363062037528182 +karman_re100,sr,300,120.0,omega,lower,0.05926111157268414 +karman_re100,sr,301,120.4,omega,front,-0.025737752652663842 +karman_re100,sr,301,120.4,omega,upper,-0.009795689138147736 +karman_re100,sr,301,120.4,omega,lower,0.05882848447206459 +karman_re100,sr,302,120.8,omega,front,-0.024920719401237933 +karman_re100,sr,302,120.8,omega,upper,-0.01925758905374636 +karman_re100,sr,302,120.8,omega,lower,0.04936658455646597 +karman_re100,sr,303,121.2,omega,front,-0.019461859538569583 +karman_re100,sr,303,121.2,omega,upper,-0.02679631726557841 +karman_re100,sr,303,121.2,omega,lower,0.041827856344633915 +karman_re100,sr,304,121.6,omega,front,-0.01231235538761147 +karman_re100,sr,304,121.6,omega,upper,-0.02626892550459778 +karman_re100,sr,304,121.6,omega,lower,0.04235524810561454 +karman_re100,sr,305,122.0,omega,front,-0.005469806190965011 +karman_re100,sr,305,122.0,omega,upper,-0.027742879878825705 +karman_re100,sr,305,122.0,omega,lower,0.04088129373138662 +karman_re100,sr,306,122.4,omega,front,0.0015634993928783775 +karman_re100,sr,306,122.4,omega,upper,-0.03612726216276917 +karman_re100,sr,306,122.4,omega,lower,0.03249691144744315 +karman_re100,sr,307,122.8,omega,front,0.00937198419554464 +karman_re100,sr,307,122.8,omega,upper,-0.046032190614609565 +karman_re100,sr,307,122.8,omega,lower,0.022591982995602757 +karman_re100,sr,308,123.2,omega,front,0.01685142042268171 +karman_re100,sr,308,123.2,omega,upper,-0.053416416705567286 +karman_re100,sr,308,123.2,omega,lower,0.015207756904645039 +karman_re100,sr,309,123.6,omega,front,0.022559428911577674 +karman_re100,sr,309,123.6,omega,upper,-0.05913454656300237 +karman_re100,sr,309,123.6,omega,lower,0.009489627047209948 +karman_re100,sr,310,124.0,omega,front,0.025693162814983253 +karman_re100,sr,310,124.0,omega,upper,-0.05900244589466686 +karman_re100,sr,310,124.0,omega,lower,0.009621727715545458 +karman_re100,sr,311,124.4,omega,front,0.025036499444676556 +karman_re100,sr,311,124.4,omega,upper,-0.04975026538153863 +karman_re100,sr,311,124.4,omega,lower,0.018873908228673696 +karman_re100,sr,312,124.8,omega,front,0.019708250048816874 +karman_re100,sr,312,124.8,omega,upper,-0.04199839451957861 +karman_re100,sr,312,124.8,omega,lower,0.026625779090633708 +karman_re100,sr,313,125.2,omega,front,0.012576650119833405 +karman_re100,sr,313,125.2,omega,upper,-0.04232343481539766 +karman_re100,sr,313,125.2,omega,lower,0.026300738794814666 +karman_re100,sr,314,125.6,omega,front,0.005715900776501922 +karman_re100,sr,314,125.6,omega,upper,-0.041050737258759254 +karman_re100,sr,314,125.6,omega,lower,0.027573436351453068 +karman_re100,sr,315,126.0,omega,front,-0.0013002168929952024 +karman_re100,sr,315,126.0,omega,upper,-0.03280844297009534 +karman_re100,sr,315,126.0,omega,lower,0.035815730640116984 +karman_re100,sr,316,126.4,omega,front,-0.009097294358623845 +karman_re100,sr,316,126.4,omega,upper,-0.022874861851625843 +karman_re100,sr,316,126.4,omega,lower,0.04574931175858648 +karman_re100,sr,317,126.8,omega,front,-0.016612843390383825 +karman_re100,sr,317,126.8,omega,upper,-0.015431620706654093 +karman_re100,sr,317,126.8,omega,lower,0.05319255290355823 +karman_re100,sr,318,127.2,omega,front,-0.022398946698947993 +karman_re100,sr,318,127.2,omega,upper,-0.00965066660434918 +karman_re100,sr,318,127.2,omega,lower,0.05897350700586314 +karman_re100,sr,319,127.6,omega,front,-0.02563522017949323 +karman_re100,sr,319,127.6,omega,upper,-0.00946082517966003 +karman_re100,sr,319,127.6,omega,lower,0.05916334843055229 +karman_re100,sr,320,128.0,omega,front,-0.025137080102353045 +karman_re100,sr,320,128.0,omega,upper,-0.01852699172845542 +karman_re100,sr,320,128.0,omega,lower,0.05009718188175691 +karman_re100,sr,321,128.4,omega,front,-0.019932779426333463 +karman_re100,sr,321,128.4,omega,upper,-0.026554345343649772 +karman_re100,sr,321,128.4,omega,lower,0.04206982826656255 +karman_re100,sr,322,128.8,omega,front,-0.01281197175831807 +karman_re100,sr,322,128.8,omega,upper,-0.026319367595498716 +karman_re100,sr,322,128.8,omega,lower,0.042304806014713606 +karman_re100,sr,323,129.2,omega,front,-0.005952731564409818 +karman_re100,sr,323,129.2,omega,upper,-0.027369180290863583 +karman_re100,sr,323,129.2,omega,lower,0.04125499331934874 +karman_re100,sr,324,129.6,omega,front,0.0010347388226801704 +karman_re100,sr,324,129.6,omega,upper,-0.03541638980819273 +karman_re100,sr,324,129.6,omega,lower,0.033207783802019594 +karman_re100,sr,325,130.0,omega,front,0.008815606224201146 +karman_re100,sr,325,130.0,omega,upper,-0.04543617251988964 +karman_re100,sr,325,130.0,omega,lower,0.02318800109032268 +karman_re100,sr,326,130.4,omega,front,0.016373745548355596 +karman_re100,sr,326,130.4,omega,upper,-0.052960202918563494 +karman_re100,sr,326,130.4,omega,lower,0.015663970691648835 +karman_re100,sr,327,130.8,omega,front,0.022231435108951855 +karman_re100,sr,327,130.8,omega,upper,-0.05883993716519516 +karman_re100,sr,327,130.8,omega,lower,0.009784236445017159 +karman_re100,sr,328,131.2,omega,front,0.0255726599641263 +karman_re100,sr,328,131.2,omega,upper,-0.05936524620311795 +karman_re100,sr,328,131.2,omega,lower,0.009258927407094376 +karman_re100,sr,329,131.6,omega,front,0.025244944992285353 +karman_re100,sr,329,131.6,omega,upper,-0.05052970012660261 +karman_re100,sr,329,131.6,omega,lower,0.01809447348360972 +karman_re100,sr,330,132.0,omega,front,0.020180981004688247 +karman_re100,sr,330,132.0,omega,upper,-0.042191294563144376 +karman_re100,sr,330,132.0,omega,lower,0.026432879047067943 +karman_re100,sr,331,132.4,omega,front,0.01305794047040353 +karman_re100,sr,331,132.4,omega,upper,-0.042173072258846624 +karman_re100,sr,331,132.4,omega,lower,0.0264511013513657 +karman_re100,sr,332,132.8,omega,front,0.0061747787707435355 +karman_re100,sr,332,132.8,omega,upper,-0.04137875396070262 +karman_re100,sr,332,132.8,omega,lower,0.027245419649509703 +karman_re100,sr,333,133.2,omega,front,-0.0007937560284914287 +karman_re100,sr,333,133.2,omega,upper,-0.033556813474463223 +karman_re100,sr,333,133.2,omega,lower,0.0350673601357491 +karman_re100,sr,334,133.6,omega,front,-0.00853685180699351 +karman_re100,sr,334,133.6,omega,upper,-0.02353826090913381 +karman_re100,sr,334,133.6,omega,lower,0.04508591270107852 +karman_re100,sr,335,134.0,omega,front,-0.0161429771100284 +karman_re100,sr,335,134.0,omega,upper,-0.01589379796311518 +karman_re100,sr,335,134.0,omega,lower,0.05273037564709714 +karman_re100,sr,336,134.4,omega,front,-0.02207768035500438 +karman_re100,sr,336,134.4,omega,upper,-0.009928932411494147 +karman_re100,sr,336,134.4,omega,lower,0.058695241198718176 +karman_re100,sr,337,134.8,omega,front,-0.025515278542190545 +karman_re100,sr,337,134.8,omega,upper,-0.009136804930952659 +karman_re100,sr,337,134.8,omega,lower,0.05948736867925966 +karman_re100,sr,338,135.2,omega,front,-0.02533842789689336 +karman_re100,sr,338,135.2,omega,upper,-0.01773683126413523 +karman_re100,sr,338,135.2,omega,lower,0.0508873423460771 +karman_re100,sr,339,135.6,omega,front,-0.02041317290081211 +karman_re100,sr,339,135.6,omega,upper,-0.026268054658406932 +karman_re100,sr,339,135.6,omega,lower,0.04235611895180539 +karman_re100,sr,340,136.0,omega,front,-0.01331424368145196 +karman_re100,sr,340,136.0,omega,upper,-0.02644129671942673 +karman_re100,sr,340,136.0,omega,lower,0.0421828768907856 +karman_re100,sr,341,136.4,omega,front,-0.006427290682314186 +karman_re100,sr,341,136.4,omega,upper,-0.027067805088035135 +karman_re100,sr,341,136.4,omega,lower,0.041556368522177194 +karman_re100,sr,342,136.8,omega,front,0.0005217616344490824 +karman_re100,sr,342,136.8,omega,upper,-0.03473582655495805 +karman_re100,sr,342,136.8,omega,lower,0.03388834705525427 +karman_re100,sr,343,137.2,omega,front,0.00825824701713381 +karman_re100,sr,343,137.2,omega,upper,-0.04482427822922878 +karman_re100,sr,343,137.2,omega,lower,0.02379989538098354 +karman_re100,sr,344,137.6,omega,front,0.0158913039108027 +karman_re100,sr,344,137.6,omega,upper,-0.05247705836535341 +karman_re100,sr,344,137.6,omega,lower,0.016147115244858914 +karman_re100,sr,345,138.0,omega,front,0.021907743647576732 +karman_re100,sr,345,138.0,omega,upper,-0.05847492776964106 +karman_re100,sr,345,138.0,omega,lower,0.010149245840571265 +karman_re100,sr,346,138.4,omega,front,0.02544220090065782 +karman_re100,sr,346,138.4,omega,upper,-0.05964674723431109 +karman_re100,sr,346,138.4,omega,lower,0.008977426375901225 +karman_re100,sr,347,138.8,omega,front,0.02542688918338522 +karman_re100,sr,347,138.8,omega,upper,-0.05131508616145686 +karman_re100,sr,347,138.8,omega,lower,0.017309087448755464 +karman_re100,sr,348,139.2,omega,front,0.02065418925847958 +karman_re100,sr,348,139.2,omega,upper,-0.04250356143319199 +karman_re100,sr,348,139.2,omega,lower,0.02612061217702033 +karman_re100,sr,349,139.6,omega,front,0.013560989834149386 +karman_re100,sr,349,139.6,omega,upper,-0.04206173183292102 +karman_re100,sr,349,139.6,omega,lower,0.026562441777291303 +karman_re100,sr,350,140.0,omega,front,0.006656681838643478 +karman_re100,sr,350,140.0,omega,upper,-0.04168138519169096 +karman_re100,sr,350,140.0,omega,lower,0.026942788418521366 +karman_re100,sr,351,140.4,omega,front,-0.000271575672648355 +karman_re100,sr,351,140.4,omega,upper,-0.0342773625744751 +karman_re100,sr,351,140.4,omega,lower,0.03434681103573723 +karman_re100,sr,352,140.8,omega,front,-0.007978850800723091 +karman_re100,sr,352,140.8,omega,upper,-0.024153906537232185 +karman_re100,sr,352,140.8,omega,lower,0.04447026707298013 +karman_re100,sr,353,141.2,omega,front,-0.015643414019089606 +karman_re100,sr,353,141.2,omega,upper,-0.016367923472908105 +karman_re100,sr,353,141.2,omega,lower,0.05225625013730422 +karman_re100,sr,354,141.6,omega,front,-0.021727692664226396 +karman_re100,sr,354,141.6,omega,upper,-0.010280423899131148 +karman_re100,sr,354,141.6,omega,lower,0.05834374971108117 +karman_re100,sr,355,142.0,omega,front,-0.025367065772091486 +karman_re100,sr,355,142.0,omega,upper,-0.008879154732671916 +karman_re100,sr,355,142.0,omega,lower,0.05974501887754041 +karman_re100,sr,356,142.4,omega,front,-0.025508766866567972 +karman_re100,sr,356,142.4,omega,upper,-0.016906304338443937 +karman_re100,sr,356,142.4,omega,lower,0.051717869271768385 +karman_re100,sr,357,142.8,omega,front,-0.020882334556238242 +karman_re100,sr,357,142.8,omega,upper,-0.025962293252998325 +karman_re100,sr,357,142.8,omega,lower,0.042661880357214 +karman_re100,sr,358,143.2,omega,front,-0.013813434258014144 +karman_re100,sr,358,143.2,omega,upper,-0.026600355558219282 +karman_re100,sr,358,143.2,omega,lower,0.04202381805199304 +karman_re100,sr,359,143.6,omega,front,-0.006894824418834675 +karman_re100,sr,359,143.6,omega,upper,-0.026843451054429125 +karman_re100,sr,359,143.6,omega,lower,0.0417807225557832 +karman_re100,sr,360,144.0,omega,front,2.2150841468173335e-05 +karman_re100,sr,360,144.0,omega,upper,-0.03402749670586888 +karman_re100,sr,360,144.0,omega,lower,0.03459667690434344 +karman_re100,sr,361,144.4,omega,front,0.007707265398273388 +karman_re100,sr,361,144.4,omega,upper,-0.04416302279311369 +karman_re100,sr,361,144.4,omega,lower,0.02446115081709864 +karman_re100,sr,362,144.8,omega,front,0.0154002424948142 +karman_re100,sr,362,144.8,omega,upper,-0.052002730368596525 +karman_re100,sr,362,144.8,omega,lower,0.0166214432416158 +karman_re100,sr,363,145.2,omega,front,0.02155532906337498 +karman_re100,sr,363,145.2,omega,upper,-0.058163032379437096 +karman_re100,sr,363,145.2,omega,lower,0.010461141230775226 +karman_re100,sr,364,145.6,omega,front,0.025290662585051266 +karman_re100,sr,364,145.6,omega,upper,-0.05985665694407844 +karman_re100,sr,364,145.6,omega,lower,0.008767516666133885 +karman_re100,sr,365,146.0,omega,front,0.02557927997527675 +karman_re100,sr,365,146.0,omega,upper,-0.05205449395336749 +karman_re100,sr,365,146.0,omega,lower,0.016569679656844832 +karman_re100,sr,366,146.4,omega,front,0.021097485806624055 +karman_re100,sr,366,146.4,omega,upper,-0.04283355428610691 +karman_re100,sr,366,146.4,omega,lower,0.02579061932410541 +karman_re100,sr,367,146.8,omega,front,0.014058107827743742 +karman_re100,sr,367,146.8,omega,upper,-0.04198711158055692 +karman_re100,sr,367,146.8,omega,lower,0.026637062029655403 +karman_re100,sr,368,147.2,omega,front,0.0071340312623878865 +karman_re100,sr,368,147.2,omega,upper,-0.041950144768738575 +karman_re100,sr,368,147.2,omega,lower,0.02667402884147375 +karman_re100,sr,369,147.6,omega,front,0.0002512546477997181 +karman_re100,sr,369,147.6,omega,upper,-0.03495506665088036 +karman_re100,sr,369,147.6,omega,lower,0.033669106959331965 +karman_re100,sr,370,148.0,omega,front,-0.007420715707037014 +karman_re100,sr,370,148.0,omega,upper,-0.02477242961166048 +karman_re100,sr,370,148.0,omega,lower,0.043851743998551844 +karman_re100,sr,371,148.4,omega,front,-0.015143347434345008 +karman_re100,sr,371,148.4,omega,upper,-0.01684173383381728 +karman_re100,sr,371,148.4,omega,lower,0.05178243977639504 +karman_re100,sr,372,148.8,omega,front,-0.021369699688334888 +karman_re100,sr,372,148.8,omega,upper,-0.010646584273217217 +karman_re100,sr,372,148.8,omega,lower,0.05797758933699511 +karman_re100,sr,373,149.2,omega,front,-0.025201216510851037 +karman_re100,sr,373,149.2,omega,upper,-0.00865809910513669 +karman_re100,sr,373,149.2,omega,lower,0.05996607450507563 +karman_re100,sr,374,149.6,omega,front,-0.02564533711940431 +karman_re100,sr,374,149.6,omega,upper,-0.01617648042200781 +karman_re100,sr,374,149.6,omega,lower,0.05244769318820451 +karman_re100,sr,375,150.0,omega,front,-0.02132221498326993 +karman_re100,sr,375,150.0,omega,upper,-0.025611858351474004 +karman_re100,sr,375,150.0,omega,lower,0.043012315258738325 +karman_re100,sr,376,150.4,omega,front,-0.014303290219255931 +karman_re100,sr,376,150.4,omega,upper,-0.02672545900786046 +karman_re100,sr,376,150.4,omega,lower,0.04189871460235186 +karman_re100,sr,377,150.8,omega,front,-0.007358757331047308 +karman_re100,sr,377,150.8,omega,upper,-0.02662015512939418 +karman_re100,sr,377,150.8,omega,lower,0.04200401848081814 +karman_re100,sr,378,151.2,omega,front,-0.0004723003887477514 +karman_re100,sr,378,151.2,omega,upper,-0.033340325983284035 +karman_re100,sr,378,151.2,omega,lower,0.03528384762692829 +karman_re100,sr,379,151.6,omega,front,0.0071499681289361305 +karman_re100,sr,379,151.6,omega,upper,-0.04348370795574701 +karman_re100,sr,379,151.6,omega,lower,0.02514046565446531 +karman_re100,sr,380,152.0,omega,front,0.014896801080776872 +karman_re100,sr,380,152.0,omega,upper,-0.05153946607685524 +karman_re100,sr,380,152.0,omega,lower,0.017084707533357075 +karman_re100,sr,381,152.4,omega,front,0.021197389367251285 +karman_re100,sr,381,152.4,omega,upper,-0.057802473129714926 +karman_re100,sr,381,152.4,omega,lower,0.010821700480497399 +karman_re100,sr,382,152.8,omega,front,0.02512334191422311 +karman_re100,sr,382,152.8,omega,upper,-0.06004354099337295 +karman_re100,sr,382,152.8,omega,lower,0.008580632616839372 +karman_re100,sr,383,153.2,omega,front,0.025709682206992893 +karman_re100,sr,383,153.2,omega,upper,-0.05283425298206547 +karman_re100,sr,383,153.2,omega,lower,0.015789920628146853 +karman_re100,sr,384,153.6,omega,front,0.02154353558677013 +karman_re100,sr,384,153.6,omega,upper,-0.04323458352436973 +karman_re100,sr,384,153.6,omega,lower,0.025389590085842594 +karman_re100,sr,385,154.0,omega,front,0.014558695666216755 +karman_re100,sr,385,154.0,omega,upper,-0.04186188176687058 +karman_re100,sr,385,154.0,omega,lower,0.02676229184334175 +karman_re100,sr,386,154.4,omega,front,0.007602137978411372 +karman_re100,sr,386,154.4,omega,upper,-0.0421228920307863 +karman_re100,sr,386,154.4,omega,lower,0.026501281579426026 +karman_re100,sr,387,154.8,omega,front,0.0007322334782274242 +karman_re100,sr,387,154.8,omega,upper,-0.03561108787510009 +karman_re100,sr,387,154.8,omega,lower,0.03301308573511223 +karman_re100,sr,388,155.2,omega,front,-0.006874682668611022 +karman_re100,sr,388,155.2,omega,upper,-0.025437722607387716 +karman_re100,sr,388,155.2,omega,lower,0.04318645100282461 +karman_re100,sr,389,155.6,omega,front,-0.014646862137993402 +karman_re100,sr,389,155.6,omega,upper,-0.01732786240544357 +karman_re100,sr,389,155.6,omega,lower,0.051296311204768755 +karman_re100,sr,390,156.0,omega,front,-0.02101348448069599 +karman_re100,sr,390,156.0,omega,upper,-0.011015891568765684 +karman_re100,sr,390,156.0,omega,lower,0.05760828204144664 +karman_re100,sr,391,156.4,omega,front,-0.02503356816945085 +karman_re100,sr,391,156.4,omega,upper,-0.008511912651909972 +karman_re100,sr,391,156.4,omega,lower,0.060112260958302355 +karman_re100,sr,392,156.8,omega,front,-0.025765998921568566 +karman_re100,sr,392,156.8,omega,upper,-0.015420159640002451 +karman_re100,sr,392,156.8,omega,lower,0.05320401397020987 +karman_re100,sr,393,157.2,omega,front,-0.02175389565403559 +karman_re100,sr,393,157.2,omega,upper,-0.02520854847056451 +karman_re100,sr,393,157.2,omega,lower,0.043415625139647814 +karman_re100,sr,394,157.6,omega,front,-0.014791867466070266 +karman_re100,sr,394,157.6,omega,upper,-0.02679532766763426 +karman_re100,sr,394,157.6,omega,lower,0.04182884594257806 +karman_re100,sr,395,158.0,omega,front,-0.007835034943462594 +karman_re100,sr,395,158.0,omega,upper,-0.0263894372197781 +karman_re100,sr,395,158.0,omega,lower,0.04223473639043423 +karman_re100,sr,396,158.4,omega,front,-0.0009817689377692451 +karman_re100,sr,396,158.4,omega,upper,-0.03266676299366045 +karman_re100,sr,396,158.4,omega,lower,0.035957410616551874 +karman_re100,sr,397,158.8,omega,front,0.0065949596696243985 +karman_re100,sr,397,158.8,omega,upper,-0.04284725336657071 +karman_re100,sr,397,158.8,omega,lower,0.025776920243641612 +karman_re100,sr,398,159.2,omega,front,0.014390639290594752 +karman_re100,sr,398,159.2,omega,upper,-0.05107085795621556 +karman_re100,sr,398,159.2,omega,lower,0.01755331565399677 +karman_re100,sr,399,159.6,omega,front,0.020826693606717628 +karman_re100,sr,399,159.6,omega,upper,-0.0574243660247554 +karman_re100,sr,399,159.6,omega,lower,0.011199807585456934 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_manifest.json new file mode 100644 index 0000000..8c36913 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re100", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_wide.csv new file mode 100644 index 0000000..207866a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re100,sr,0,0.0,1.0401549339294434,0.27067646384239197,0.9575923085212708,0.3782854378223419,1.030598759651184,0.2909727394580841,0.0003500031598377973,0.004588783252984285,-0.005601493641734123,0.0023681747261434793,0.004533043131232262,-0.004234709311276674,1.513372732826876,-4.302448122361787,2.559969238659445,0.01513372732826876,-0.04302448122361788,0.025599692386594448 +karman_re100,sr,1,0.4,0.9977376461029053,0.28605449199676514,0.9638333320617676,0.3853096067905426,1.073447346687317,0.30106234550476074,0.0026198895648121834,0.00406246492639184,-0.007191833108663559,0.0012551184045150876,0.004616147372871637,-0.0044845412485301495,1.9326127554080135,-4.65171864772044,2.2106987133007925,0.019326127554080134,-0.046517186477204396,0.022106987133007926 +karman_re100,sr,2,0.8,0.9616737365722656,0.26745879650115967,0.9682336449623108,0.35322242975234985,1.11396324634552,0.28308922052383423,0.004842075984925032,0.0032866238616406918,-0.009569964371621609,0.0004031694261357188,0.004041346721351147,-0.0042628576047718525,2.251731303111575,-5.542898868760844,1.319518492260388,0.02251731303111575,-0.05542898868760844,0.013195184922603881 +karman_re100,sr,3,1.2,0.9374970197677612,0.2152254432439804,0.9651868343353271,0.2822495400905609,1.153838038444519,0.24987411499023438,0.0056730471551418304,0.0018455578247085214,-0.010954512283205986,0.0016244687139987946,0.0029811603017151356,-0.0037720995023846626,2.5956187268740973,-5.955023631419319,0.907393729601913,0.025956187268740973,-0.05955023631419319,0.00907393729601913 +karman_re100,sr,4,1.6,0.9241757988929749,0.13206905126571655,0.9533326029777527,0.16454719007015228,1.1853464841842651,0.19303825497627258,0.004966126289218664,0.00033402099506929517,-0.008997814729809761,0.0038589294999837875,0.0022987157572060823,-0.0036134878173470497,2.6574730741171537,-4.835524895162806,2.0268924658584266,0.02657473074117154,-0.04835524895162806,0.020268924658584268 +karman_re100,sr,5,2.0,0.916933000087738,0.018589986488223076,0.9453640580177307,0.017415769398212433,1.1895207166671753,0.0927308052778244,0.0031416809652000666,-0.0008422714308835566,-0.0052191694267094135,0.004326462745666504,0.0017549023032188416,-0.003883159253746271,2.1541999797462994,-3.2707165994032565,3.591700761617976,0.021541999797462994,-0.03270716599403257,0.03591700761617976 +karman_re100,sr,6,2.4,0.9201483130455017,-0.10432610660791397,0.9481618404388428,-0.11971280723810196,1.1576118469238281,-0.039938658475875854,0.0008520398405380547,-0.0018719445215538144,-0.002374598989263177,0.004167750012129545,0.0009333007037639618,-0.004324788227677345,1.3299256082766873,-3.1413365641849746,3.721080796836258,0.013299256082766872,-0.031413365641849746,0.03721080796836258 +karman_re100,sr,7,2.8,0.9443206787109375,-0.19308003783226013,0.9501010775566101,-0.2408064305782318,1.1171640157699585,-0.14988867938518524,-0.0006816446548327804,-0.002738100942224264,-0.000236139923799783,0.004960006568580866,-0.0001944122341228649,-0.004336187150329351,0.6308023034074302,-3.5338945395541854,3.328522821467047,0.006308023034074302,-0.03533894539554185,0.03328522821467047 +karman_re100,sr,8,3.2,0.9835368990898132,-0.24844612181186676,0.9522373080253601,-0.3281680643558502,1.0841704607009888,-0.22013038396835327,-0.000996562303043902,-0.0032960365060716867,0.0019492777064442635,0.005902435164898634,-0.0016760380240157247,-0.0038055162876844406,0.007957291697676162,-3.023298843865036,3.839118517156196,7.957291697676162e-05,-0.03023298843865036,0.03839118517156196 +karman_re100,sr,9,3.6,1.026362419128418,-0.28676775097846985,0.9577586650848389,-0.3716541528701782,1.0456578731536865,-0.26438912749290466,-0.00018364045536145568,-0.0034912796691060066,0.0036807984579354525,0.006073721684515476,-0.003556756768375635,-0.0029830525163561106,-0.6913321822224278,-2.0600525227543836,4.802364838266849,-0.006913321822224277,-0.020600525227543836,0.04802364838266849 +karman_re100,sr,10,4.0,1.0671535730361938,-0.29820042848587036,0.9622214436531067,-0.37907153367996216,1.0030717849731445,-0.2795366942882538,0.0015452258521690965,-0.003284740261733532,0.0042367251589894295,0.0057433368638157845,-0.005652726162225008,-0.0022208155132830143,-1.3801707825117122,-1.410248257311483,5.45216910370975,-0.013801707825117122,-0.01410248257311483,0.054521691037097496 +karman_re100,sr,11,4.4,1.1057552099227905,-0.28167450428009033,0.9650546312332153,-0.34793704748153687,0.967028796672821,-0.2610883414745331,0.0035053754691034555,-0.0025850492529571056,0.003793675685301423,0.005175037309527397,-0.007356581743806601,-0.0020315528381615877,-1.8858760094835016,-1.1278640480146365,5.734553313006596,-0.018858760094835017,-0.011278640480146365,0.05734553313006596 +karman_re100,sr,12,4.8,1.1437278985977173,-0.25050002336502075,0.9603130221366882,-0.27884089946746826,0.9426421523094177,-0.20869290828704834,0.004289634060114622,-0.001489944406785071,0.0030946170445531607,0.0045975069515407085,-0.007450615055859089,-0.00278283329680562,-2.1263063341048674,-1.3757128115189938,5.486704549502239,-0.021263063341048674,-0.013757128115189938,0.05486704549502239 +karman_re100,sr,13,5.2,1.1756727695465088,-0.19956424832344055,0.9459280967712402,-0.1648065745830536,0.9295133352279663,-0.12406479567289352,0.0035857746843248606,-8.237176371039823e-05,0.00235276878811419,0.004473051521927118,-0.005507939960807562,-0.0036413106136024,-2.0109305953043135,-2.2446101034051162,4.617807257616116,-0.020109305953043135,-0.022446101034051164,0.04617807257616116 +karman_re100,sr,14,5.6,1.1851390600204468,-0.11106028407812119,0.9331972002983093,-0.018204977735877037,0.922818660736084,-0.006822526454925537,0.0019727449398487806,0.001264672027900815,0.0014297328889369965,0.004680140409618616,-0.0029454100877046585,-0.004033123143017292,-1.499003490247036,-2.8873408749890643,3.9750764860321683,-0.01499003490247036,-0.028873408749890642,0.03975076486032168 +karman_re100,sr,15,6.0,1.1568779945373535,0.010382134467363358,0.9288319945335388,0.12360222637653351,0.9258081316947937,0.11786077171564102,0.00025755498791113496,0.0023628463968634605,0.00027592951664701104,0.004823022522032261,-0.0006299673113971949,-0.004679768346250057,-0.8343210264869885,-3.008129982085417,3.8542873789358154,-0.008343210264869885,-0.030081299820854168,0.038542873789358154 +karman_re100,sr,16,6.4,1.1073163747787476,0.12108417600393295,0.9237845540046692,0.25060608983039856,0.9497509598731995,0.2067377269268036,-0.000687677413225174,0.0031095240265130997,-0.001064178068190813,0.004567543976008892,0.0016347652999684215,-0.005581832956522703,-0.17275064506470256,-3.3375360795423727,3.5248812814788595,-0.0017275064506470255,-0.03337536079542373,0.035248812814788595 +karman_re100,sr,17,6.8,1.0569194555282593,0.1970338374376297,0.9199066162109375,0.3452546298503876,0.9890615940093994,0.26494523882865906,-0.0005534684751182795,0.0035452526062726974,-0.002743835560977459,0.0038093978073447943,0.003742749337106943,-0.006117420271039009,0.5146769404736861,-4.094443008022344,2.767974352998888,0.005146769404736861,-0.040944430080223436,0.027679743529988882 +karman_re100,sr,18,7.2,1.0016554594039917,0.24690690636634827,0.9211326837539673,0.39755940437316895,1.0337767601013184,0.30610835552215576,0.0006901973974891007,0.0037567452527582645,-0.004883378278464079,0.002748950617387891,0.005048215389251709,-0.006127243861556053,1.2369639573970967,-4.940403551004776,1.9220138100164565,0.012369639573970968,-0.04940403551004776,0.019220138100164565 +karman_re100,sr,19,7.6,0.9445972442626953,0.26870396733283997,0.9236659407615662,0.41391482949256897,1.079864740371704,0.3181047737598419,0.0028823695611208677,0.0035547784063965082,-0.007308679167181253,0.0018165935762226582,0.005091563332825899,-0.005769648123532534,1.8939123744615818,-5.640243867699832,1.2221734933214004,0.01893912374461582,-0.05640243867699832,0.012221734933214004 +karman_re100,sr,20,8.0,0.8951348066329956,0.2552139163017273,0.9237492084503174,0.3920224905014038,1.1261194944381714,0.30238106846809387,0.0049379984848201275,0.0028663829434663057,-0.009082295000553131,0.0017627101624384522,0.004302476532757282,-0.004985123407095671,2.3646731333189335,-6.016075049633655,0.8463423113875769,0.023646731333189334,-0.060160750496336554,0.00846342311387577 +karman_re100,sr,21,8.4,0.858933687210083,0.20440702140331268,0.9136224389076233,0.3298829197883606,1.1719157695770264,0.2682238817214966,0.005433404352515936,0.0016541511286050081,-0.008583413437008858,0.0026039525400847197,0.0034928666427731514,-0.004336144309490919,2.5524186031372325,-5.538315355575213,1.3241020054460195,0.025524186031372326,-0.05538315355575213,0.013241020054460196 +karman_re100,sr,22,8.8,0.8430807590484619,0.12128066271543503,0.8933764100074768,0.21452254056930542,1.2089266777038574,0.2006213515996933,0.0044732363894581795,0.0002185255434596911,-0.006107823457568884,0.0029904330149292946,0.0027354059275239706,-0.004265492781996727,2.302894887344233,-4.563873103939032,2.2985442570822006,0.02302894887344233,-0.04563873103939032,0.022985442570822006 +karman_re100,sr,23,9.2,0.8511938452720642,0.017974376678466797,0.8669953346252441,0.042604073882102966,1.226442813873291,0.0948060154914856,0.002509522484615445,-0.001185146626085043,-0.003525791224092245,0.003129771677777171,0.00179114262573421,-0.004576265346258879,1.6863659673343907,-4.264958650583089,2.597458710438143,0.016863659673343908,-0.04264958650583089,0.02597458710438143 +karman_re100,sr,24,9.6,0.8744711875915527,-0.0970965325832367,0.8483155965805054,-0.1681375950574875,1.2180702686309814,-0.036707423627376556,0.00048613850958645344,-0.002403413411229849,-0.0012258875649422407,0.004139833152294159,0.0006182648940011859,-0.0048529161140322685,1.0139165122223515,-4.377057717517259,2.485359643503973,0.010139165122223515,-0.04377057717517259,0.024853596435039732 +karman_re100,sr,25,10.0,0.9093143939971924,-0.20269693434238434,0.8555478453636169,-0.34167400002479553,1.164899230003357,-0.1801465004682541,-0.0006968416855670512,-0.0031673565972596407,0.0012685115216299891,0.005581660661846399,-0.0006772133056074381,-0.004730517510324717,0.35167197523798854,-3.897487135343939,2.964930225677293,0.0035167197523798856,-0.03897487135343939,0.02964930225677293 +karman_re100,sr,26,10.4,0.9571712613105774,-0.27842289209365845,0.8777304887771606,-0.4388662278652191,1.0828098058700562,-0.2876034080982208,-0.0007905971142463386,-0.003522528801113367,0.0037330961786210537,0.006310017313808203,-0.002345617860555649,-0.004094964824616909,-0.37104139082742243,-2.874653924853375,3.987763436167857,-0.0037104139082742246,-0.02874653924853375,0.03987763436167857 +karman_re100,sr,27,10.8,1.0106797218322754,-0.33072781562805176,0.8973047733306885,-0.4878509044647217,1.0013381242752075,-0.343307763338089,0.00027940020663663745,-0.0036684575024992228,0.005293412134051323,0.006283960305154324,-0.004495559725910425,-0.0030440804548561573,-1.159184731553554,-1.9828060296923438,4.8796113313288885,-0.01159184731553554,-0.01982806029692344,0.04879611331328888 +karman_re100,sr,28,11.2,1.0663349628448486,-0.3509999215602875,0.9117491841316223,-0.5020383596420288,0.930992603302002,-0.35691142082214355,0.002493542619049549,-0.0034806495532393456,0.005490493960678577,0.005931189749389887,-0.007002081256359816,-0.0019389900844544172,-1.8667150065858198,-1.3126807510808995,5.549736609940332,-0.018667150065858198,-0.013126807510808997,0.055497366099403325 +karman_re100,sr,29,11.6,1.1236069202423096,-0.3401278555393219,0.9197801947593689,-0.48029282689094543,0.8725591897964478,-0.3310825228691101,0.004809945821762085,-0.002830734010785818,0.004681800492107868,0.005178745836019516,-0.009106945246458054,-0.001639382098801434,-2.382280586986875,-0.8207456754558459,6.041671685565387,-0.02382280586986875,-0.00820745675455846,0.06041671685565387 +karman_re100,sr,30,12.0,1.1831659078598022,-0.3080374002456665,0.9150399565696716,-0.4185439944267273,0.8277024626731873,-0.2634129226207733,0.005538357887417078,-0.0016354925464838743,0.0037711160257458687,0.004474235698580742,-0.009041856974363327,-0.002521580085158348,-2.6294547538190454,-1.1168509647400193,5.7455663962812125,-0.026294547538190455,-0.011168509647400194,0.057455663962812126 +karman_re100,sr,31,12.4,1.2353545427322388,-0.24018511176109314,0.8938053250312805,-0.2967897653579712,0.8001697659492493,-0.15761151909828186,0.00471135601401329,-0.00018389563774690032,0.002973039634525776,0.004341252613812685,-0.006646858062595129,-0.0031122181098908186,-2.4433790719239266,-2.1543849571826197,4.7080324038386125,-0.024433790719239266,-0.021543849571826198,0.04708032403838613 +karman_re100,sr,32,12.8,1.266218900680542,-0.1252003163099289,0.8592640161514282,-0.0981278121471405,0.7974910140037537,-0.02936946414411068,0.002763297874480486,0.0011878350051119924,0.0020215504337102175,0.0046386877074837685,-0.003951451741158962,-0.0031424174085259438,-1.8344732878929875,-2.627554210869821,4.234863150151411,-0.018344732878929876,-0.026275542108698213,0.04234863150151411 +karman_re100,sr,33,13.2,1.2558906078338623,0.035844188183546066,0.8387349843978882,0.16254954040050507,0.823698103427887,0.09891144931316376,0.0006433253875002265,0.0023903774563223124,0.0008472143090330064,0.004932938143610954,-0.0016362846363335848,-0.003926932346075773,-1.1390259318042013,-2.4528111581375014,4.409606202883731,-0.011390259318042013,-0.024528111581375016,0.04409606202883731 +karman_re100,sr,34,13.6,1.19109308719635,0.20188651978969574,0.8505745530128479,0.38212162256240845,0.868215799331665,0.21274545788764954,-0.0006714570336043835,0.0031920503824949265,-0.000416010880144313,0.004863647278398275,0.0008404536638408899,-0.005387081298977137,-0.4735926118163332,-2.773390650915982,4.08902671010525,-0.004735926118163332,-0.02773390650915982,0.0408902671010525 +karman_re100,sr,35,14.0,1.1014972925186157,0.3173897862434387,0.8800287842750549,0.4939940571784973,0.9257050156593323,0.29471755027770996,-0.0008954291697591543,0.0035601495765149593,-0.002000597305595875,0.00429904367774725,0.003433706471696496,-0.006324732676148415,0.23960240697937324,-3.7734774197998076,3.088939941221425,0.0023960240697937325,-0.037734774197998075,0.03088939941221425 +karman_re100,sr,36,14.4,1.0151324272155762,0.3777408301830292,0.9075848460197449,0.5398582816123962,0.989876925945282,0.3497621417045593,2.1178590031922795e-05,0.003689155913889408,-0.004095015116035938,0.0033146170899271965,0.005215466488152742,-0.006388368550688028,1.0362984546834026,-4.755788269181608,2.106629091839625,0.010362984546834026,-0.04755788269181608,0.021066290918396253 +karman_re100,sr,37,14.8,0.9395633935928345,0.3949916362762451,0.9264108538627625,0.55338454246521,1.0539350509643555,0.3753449320793152,0.0020985740702599287,0.003487733891233802,-0.006595155224204063,0.002153637120500207,0.005589576438069344,-0.006059050559997559,1.7754689642297268,-5.44110676890668,1.4213105921145517,0.017754689642297268,-0.054411067689066804,0.014213105921145518 +karman_re100,sr,38,15.2,0.8749201893806458,0.37153270840644836,0.9361679553985596,0.5362241864204407,1.1172832250595093,0.366728812456131,0.004497559275478125,0.002825201489031315,-0.008888299576938152,0.0016151629388332367,0.004813764244318008,-0.005330876912921667,2.323576139616774,-5.984922963089299,0.8774943979319333,0.023235761396167738,-0.059849229630892994,0.008774943979319333 +karman_re100,sr,39,15.6,0.8232335448265076,0.3042699992656708,0.9330084323883057,0.48428085446357727,1.1838606595993042,0.3349984288215637,0.005447951145470142,0.0016547426348552108,-0.00925128348171711,0.0023768125101923943,0.003852488938719034,-0.0045698462054133415,2.6129248834550705,-5.860880210198417,1.001537150822816,0.026129248834550704,-0.058608802101984166,0.01001537150822816 +karman_re100,sr,40,16.0,0.7870592474937439,0.19461578130722046,0.9113895297050476,0.36995357275009155,1.2475690841674805,0.26943182945251465,0.00477302772924304,0.00018111903045792133,-0.0070342267863452435,0.0032053973991423845,0.0030616209842264652,-0.0043784393928945065,2.4988332758583622,-4.865213442470681,1.9972039185505508,0.02498833275858362,-0.04865213442470681,0.019972039185505507 +karman_re100,sr,41,16.4,0.7746261358261108,0.05489303171634674,0.8740525841712952,0.16102075576782227,1.2948375940322876,0.1556539386510849,0.0029259079601615667,-0.0011770360870286822,-0.0041997842490673065,0.0033485323656350374,0.0021651454735547304,-0.004681503400206566,1.9252349283600703,-4.1982501576595554,2.664167203361677,0.019252349283600704,-0.041982501576595554,0.026641672033616767 +karman_re100,sr,42,16.8,0.7963373064994812,-0.08680378645658493,0.8532726764678955,-0.12907478213310242,1.2962580919265747,-0.010543334297835827,0.0007715252577327192,-0.0023569362238049507,-0.0017999468836933374,0.0039849840104579926,0.0010025850497186184,-0.005023447796702385,1.2137648364972524,-4.30282630102229,2.559591059998942,0.012137648364972525,-0.0430282630102229,0.02559591059998942 +karman_re100,sr,43,17.2,0.8446862101554871,-0.20695044100284576,0.8655795454978943,-0.38033631443977356,1.2331078052520752,-0.18443818390369415,-0.0006458230200223625,-0.0031588810961693525,0.0006080105667933822,0.005308853927999735,-0.0002920927363447845,-0.004977668635547161,0.5344308361875822,-4.110250693336372,2.7521666676848597,0.005344308361875823,-0.041102506933363724,0.027521666676848598 +karman_re100,sr,44,17.6,0.906069278717041,-0.29538047313690186,0.8946722149848938,-0.510277271270752,1.138925552368164,-0.30793866515159607,-0.0009572984417900443,-0.00355400494299829,0.0031698825769126415,0.0062522608786821365,-0.0018627590034157038,-0.00440681679174304,-0.1716458446793458,-3.214649633787771,3.6477677272334614,-0.001716458446793458,-0.03214649633787771,0.03647767727233461 +karman_re100,sr,45,18.0,0.9740939140319824,-0.35290640592575073,0.9230818748474121,-0.5555064678192139,1.0465087890625,-0.373978853225708,-0.00011573944357223809,-0.0036882786080241203,0.005065067205578089,0.0063691954128444195,-0.0038888035342097282,-0.0034114730078727007,-0.9597031940802216,-2.2244895980046415,4.637927763016591,-0.009597031940802216,-0.022244895980046416,0.04637927763016591 +karman_re100,sr,46,18.4,1.0423778295516968,-0.3809109926223755,0.9436813592910767,-0.5656106472015381,0.9666668176651001,-0.39495834708213806,0.0018699265783652663,-0.0035018131602555513,0.005601916462182999,0.006080578081309795,-0.0063190096989274025,-0.0022583166137337685,-1.7074647997871462,-1.4971809350508714,5.365236425970361,-0.01707464799787146,-0.014971809350508713,0.05365236425970361 +karman_re100,sr,47,18.8,1.1095620393753052,-0.3731701672077179,0.9564739465713501,-0.5462133884429932,0.8998012542724609,-0.3739389181137085,0.0042715054005384445,-0.0028316921088844538,0.004892347846180201,0.0054216464050114155,-0.008643543347716331,-0.001655660686083138,-2.2732695604493474,-0.9318667151295199,5.930550645891712,-0.022732695604493473,-0.0093186671512952,0.05930550645891712 +karman_re100,sr,48,19.2,1.177228569984436,-0.3412904739379883,0.9557451009750366,-0.4945468008518219,0.8449710011482239,-0.3078891336917877,0.005342842545360327,-0.0016876240260899067,0.0038877041079103947,0.004646641202270985,-0.00924824271351099,-0.002321867272257805,-2.5812364751509502,-0.9686649146827694,5.893752446338462,-0.0258123647515095,-0.009686649146827694,0.05893752446338463 +karman_re100,sr,49,19.6,1.2413617372512817,-0.280252605676651,0.934922993183136,-0.3845681846141815,0.8041642904281616,-0.1988033801317215,0.004738871473819017,-0.0002192231040680781,0.0030585420317947865,0.004391379654407501,-0.0072414446622133255,-0.003198986640200019,-2.5049687963201905,-1.911060178741407,4.951357182279825,-0.025049687963201905,-0.01911060178741407,0.04951357182279825 +karman_re100,sr,50,20.0,1.2920299768447876,-0.17567461729049683,0.8952539563179016,-0.1832316517829895,0.7871938943862915,-0.05883106589317322,0.002974448259919882,0.001149738091044128,0.002180702518671751,0.004645389970391989,-0.004391452297568321,-0.003368653357028961,-1.9641633467127304,-2.6515137473102515,4.210903613710981,-0.019641633467127304,-0.026515137473102517,0.042109036137109805 +karman_re100,sr,51,20.4,1.3016926050186157,-0.017018206417560577,0.86799156665802,0.10437586903572083,0.8050441145896912,0.08391905575990677,0.0008540934068150818,0.002323041670024395,0.001064227893948555,0.004995719529688358,-0.0019274171208962798,-0.00394893903285265,-1.2532817742851856,-2.596362235916024,4.266055125105209,-0.012532817742851856,-0.025963622359160242,0.04266055125105209 +karman_re100,sr,52,20.8,1.2440040111541748,0.16213741898536682,0.876081645488739,0.3620072901248932,0.8514903783798218,0.2057313770055771,-0.0005944177974015474,0.0031478137243539095,-0.0002011189062613994,0.005004154983907938,0.0004950379370711744,-0.005251245107501745,-0.5704938908272981,-2.746728446367157,4.115688914654076,-0.005704938908272981,-0.02746728446367157,0.041156889146540754 +karman_re100,sr,53,21.2,1.1500053405761719,0.29420673847198486,0.9041546583175659,0.49889111518859863,0.9125262498855591,0.2939946949481964,-0.0009646195685490966,0.0035622664727270603,-0.001758370897732675,0.004478814546018839,0.0030397146474570036,-0.0062487684190273285,0.13275412831674102,-3.592778662147913,3.26963869887332,0.0013275412831674103,-0.03592778662147913,0.0326963869887332 +karman_re100,sr,54,21.6,1.0552096366882324,0.3651266396045685,0.9315687417984009,0.5471323132514954,0.9791162014007568,0.3507830500602722,-0.00018696858023758978,0.003712347475811839,-0.0037887031212449074,0.0034952715504914522,0.004957946948707104,-0.006382003892213106,0.9149743628053578,-4.588565399595646,2.2738519614255863,0.009149743628053578,-0.04588565399595646,0.022738519614255864 +karman_re100,sr,55,22.0,0.9732484221458435,0.38841694593429565,0.9511998891830444,0.5581440925598145,1.0453389883041382,0.37869927287101746,0.001743826549500227,0.003534393385052681,-0.006216004956513643,0.002298363484442234,0.005557722877711058,-0.006078798323869705,1.6679487055955364,-5.3188166700978075,1.5436006909234246,0.016679487055955365,-0.053188166700978076,0.015436006909234246 +karman_re100,sr,56,22.4,0.9053566455841064,0.3691004514694214,0.9639309644699097,0.5390266180038452,1.1104110479354858,0.37081801891326904,0.004164179787039757,0.002866697497665882,-0.00856122374534607,0.00162843510042876,0.004913259297609329,-0.005434160120785236,2.2451994699768494,-5.9032005946487836,0.9592167663724482,0.022451994699768493,-0.05903200594648784,0.009592167663724482 +karman_re100,sr,57,22.8,0.8508298397064209,0.30477437376976013,0.9648255705833435,0.48817509412765503,1.1764792203903198,0.33884814381599426,0.005333150736987591,0.0017282554181292653,-0.009273985400795937,0.0022735719103366137,0.003931563347578049,-0.004675156436860561,2.5695262037834987,-5.919737613647651,0.9426797473735813,0.02569526203783499,-0.059197376136476514,0.009426797473735813 +karman_re100,sr,58,23.2,0.8117043972015381,0.19725090265274048,0.947243869304657,0.38128262758255005,1.2406047582626343,0.279966801404953,0.004788768012076616,0.00025390979135409,-0.0073487120680511,0.0032496752683073282,0.0031086441595107317,-0.0044179391115903854,2.5182415856782976,-5.001582931845583,1.86083442917565,0.025182415856782978,-0.05001582931845583,0.0186083442917565 +karman_re100,sr,59,23.6,0.7953610420227051,0.059039726853370667,0.9083211421966553,0.18724334239959717,1.2913109064102173,0.18075710535049438,0.0030615050345659256,-0.0011069562751799822,-0.004487915430217981,0.003449527081102133,0.0022286386229097843,-0.004671329632401466,1.9941730427325621,-4.195125768581114,2.6672915924401175,0.01994173042732562,-0.04195125768581114,0.026672915924401176 +karman_re100,sr,60,24.0,0.8116700053215027,-0.08258825540542603,0.8767709136009216,-0.09478303045034409,1.3025380373001099,0.028926441445946693,0.0009115819702856243,-0.002284998307004571,-0.0020251646637916565,0.003935681190341711,0.0010984546970576048,-0.0050143105909228325,1.2808180902838355,-4.230134242190908,2.6322831188303244,0.012808180902838355,-0.042301342421909076,0.026322831188303246 +karman_re100,sr,61,24.4,0.8554117679595947,-0.20460821688175201,0.8802313208580017,-0.35210999846458435,1.2465620040893555,-0.14864705502986908,-0.0005748465191572905,-0.0031179042998701334,0.0003672307648230344,0.0051672435365617275,-0.0001652436185395345,-0.005010136403143406,0.5956608333515128,-4.136514622774136,2.7259027382470964,0.005956608333515127,-0.041365146227741366,0.027259027382470963 +karman_re100,sr,62,24.8,0.9145365357398987,-0.2928861379623413,0.9058142304420471,-0.4903959035873413,1.1526198387145996,-0.2832082509994507,-0.0009703463292680681,-0.0035521136596798897,0.002926746616140008,0.006195202469825745,-0.0016835458809509873,-0.004496411886066198,-0.10154058426819526,-3.3284777566991286,3.533939604322104,-0.0010154058426819527,-0.03328477756699129,0.03533939604322104 +karman_re100,sr,63,25.2,0.9810389876365662,-0.3495635688304901,0.9330465197563171,-0.5400173664093018,1.0585827827453613,-0.3563350439071655,-0.00023492878244724125,-0.003708821488544345,0.004908848088234663,0.006400483660399914,-0.003668433055281639,-0.0035477932542562485,-0.8791630328686431,-2.320384988201285,4.542032372819947,-0.00879163032868643,-0.02320384988201285,0.04542032372819947 +karman_re100,sr,64,25.6,1.0477352142333984,-0.37794846296310425,0.9532307386398315,-0.5520705580711365,0.977652370929718,-0.3811963200569153,0.0016431072726845741,-0.0035473937168717384,0.0055671073496341705,0.006124312058091164,-0.006080459337681532,-0.002379752928391099,-1.6356507767476645,-1.5658604025874787,5.2965569584337535,-0.016356507767476644,-0.015658604025874788,0.052965569584337534 +karman_re100,sr,65,26.0,1.1115999221801758,-0.3706663250923157,0.9650481343269348,-0.533643364906311,0.9091488718986511,-0.36347630620002747,0.004048821050673723,-0.0028868583030998707,0.0049346075393259525,0.005489231552928686,-0.008458636701107025,-0.0016592085594311357,-2.2211410796216415,-0.9826755662531381,5.879741794768094,-0.022211410796216417,-0.009826755662531382,0.058797417947680945 +karman_re100,sr,66,26.4,1.1755653619766235,-0.33927756547927856,0.9646099209785461,-0.48333874344825745,0.8534517884254456,-0.3010718822479248,0.005274136085063219,-0.0017722274642437696,0.003932156600058079,0.004694906063377857,-0.00928945280611515,-0.0022066019009798765,-2.554034312096085,-0.9267915240114829,5.935625837009749,-0.025540343120960853,-0.009267915240114829,0.059356258370097496 +karman_re100,sr,67,26.8,1.2379577159881592,-0.2817796766757965,0.9467775225639343,-0.37806805968284607,0.8137781620025635,-0.19611506164073944,0.004800007212907076,-0.0002992473600897938,0.0031107652466744184,0.004400425124913454,-0.007462131325155497,-0.003188847564160824,-2.52130428433127,-1.8041292490091054,5.058288112012127,-0.0252130428433127,-0.018041292490091055,0.05058288112012127 +karman_re100,sr,68,27.2,1.2885947227478027,-0.1855294555425644,0.9084810018539429,-0.19017553329467773,0.7977926731109619,-0.061007823795080185,0.003122099442407489,0.0010732318041846156,0.0022599431686103344,0.0046438369899988174,-0.004572626203298569,-0.0034571599680930376,-2.016206091514068,-2.6389691470326824,4.22344821398855,-0.020162060915140678,-0.026389691470326826,0.0422344821398855 +karman_re100,sr,69,27.6,1.3041234016418457,-0.03760609030723572,0.8760669827461243,0.08406323194503784,0.8151188492774963,0.07798577100038528,0.0009867987828329206,0.0022602262906730175,0.0011505924630910158,0.005015261936932802,-0.002061206614598632,-0.003957968205213547,-1.302941714670619,-2.6552513826223905,4.207165978398842,-0.01302941714670619,-0.026552513826223905,0.04207165978398842 +karman_re100,sr,70,28.0,1.2515909671783447,0.14178937673568726,0.8777928352355957,0.34137633442878723,0.8582708835601807,0.19948270916938782,-0.0005415564519353211,0.0031018543522804976,-0.0001252734800800681,0.005041963886469603,0.0003272996982559562,-0.005168525502085686,-0.612476327670758,-2.739853937817897,4.122563423203335,-0.00612476327670758,-0.027398539378178974,0.04122563423203335 +karman_re100,sr,71,28.4,1.1567379236221313,0.2808372974395752,0.9023652672767639,0.48351284861564636,0.915243923664093,0.28820666670799255,-0.0009803626453503966,0.003544298931956291,-0.0016608963487669826,0.004525369498878717,0.002854451537132263,-0.006173729430884123,0.08630376669418664,-3.513966168400713,3.348451192620519,0.0008630376669418664,-0.03513966168400713,0.03348451192620519 +karman_re100,sr,72,28.8,1.0610905885696411,0.356749951839447,0.9297329783439636,0.5359640717506409,0.9798892140388489,0.3456633687019348,-0.00027177922311238945,0.0037152906879782677,-0.0036430349573493004,0.003554270602762699,0.004851583857089281,-0.006365991663187742,0.8610575021712868,-4.509056228895765,2.3533611321254675,0.008610575021712868,-0.04509056228895765,0.023533611321254675 +karman_re100,sr,73,29.2,0.9795121550559998,0.38296177983283997,0.9506769776344299,0.5496935844421387,1.045512318611145,0.37513136863708496,0.001594069297425449,0.0035709773655980825,-0.006032916251569986,0.0023739708121865988,0.005569664295762777,-0.006105491425842047,1.6198874246432566,-5.269767476364727,1.5926498846565051,0.016198874246432567,-0.05269767476364727,0.01592649884656505 +karman_re100,sr,74,29.6,0.9118769764900208,0.36647874116897583,0.9645421504974365,0.5325075387954712,1.1096187829971313,0.3689045310020447,0.0040206010453403,0.00292942114174366,-0.008415368385612965,0.0016612255712971091,0.004985618405044079,-0.005504331551492214,2.2125624154068637,-5.871216027864641,0.991201333156592,0.022125624154068636,-0.05871216027864641,0.00991201333156592 +karman_re100,sr,75,30.0,0.8575267195701599,0.3051839768886566,0.9669205546379089,0.48360130190849304,1.1744065284729004,0.33823975920677185,0.005302413832396269,0.0018215838354080915,-0.009307997301220894,0.0022075676824897528,0.003982098773121834,-0.004727446008473635,2.5555107832617265,-5.944180682868177,0.9182366781530549,0.025555107832617267,-0.059441806828681776,0.00918236678153055 +karman_re100,sr,76,30.4,0.8174312710762024,0.20085403323173523,0.9504151344299316,0.38089942932128906,1.2364789247512817,0.2822427451610565,0.004853231832385063,0.00035506670246832073,-0.0075513278134167194,0.0031858065631240606,0.0031404090113937855,-0.00441255746409297,2.5343643986162,-5.078934170043865,1.7834831909773674,0.025343643986162002,-0.050789341700438646,0.017834831909773675 +karman_re100,sr,77,30.8,0.7996504306793213,0.06575527787208557,0.9121188521385193,0.19696711003780365,1.2862659692764282,0.18837851285934448,0.0031891295220702887,-0.001019029412418604,-0.004693368449807167,0.003410425502806902,0.0022780837025493383,-0.004629345610737801,2.038868418753222,-4.233369922976606,2.6290474380446263,0.02038868418753222,-0.04233369922976606,0.026290474380446262 +karman_re100,sr,78,31.2,0.815051794052124,-0.07420092821121216,0.8781259059906006,-0.07471419125795364,1.3025367259979248,0.04360193386673927,0.0010516690090298653,-0.0022145428229123354,-0.002183532575145364,0.003869385225698352,0.0011818637140095234,-0.004984770901501179,1.3294260660536574,-4.228249438721894,2.634167922299338,0.013294260660536574,-0.04228249438721894,0.02634167922299338 +karman_re100,sr,79,31.6,0.8571898937225342,-0.19696786999702454,0.8781867027282715,-0.3340359032154083,1.2522821426391602,-0.13452565670013428,-0.0004935172037221491,-0.0030803694389760494,0.00021764215489383787,0.005107246804982424,-6.197252514539286e-05,-0.00503469118848443,0.6417666580255352,-4.160549216412484,2.7018681446087482,0.006417666580255352,-0.04160549216412484,0.027018681446087482 +karman_re100,sr,80,32.0,0.914895236492157,-0.28688469529151917,0.9029374718666077,-0.4798528552055359,1.1595754623413086,-0.2751854360103607,-0.0009762763511389494,-0.003535063471645117,0.002777729881927371,0.006188119761645794,-0.001566948601976037,-0.004566983785480261,-0.05332132186688747,-3.3837652236262983,3.4786521373949335,-0.0005332132186688747,-0.033837652236262984,0.03478652137394934 +karman_re100,sr,81,32.4,0.9802124500274658,-0.3448909819126129,0.9306346774101257,-0.5341265201568604,1.0644521713256836,-0.35292792320251465,-0.0003234560717828572,-0.0037052351981401443,0.004806287586688995,0.006416012533009052,-0.0035387403331696987,-0.0036318516358733177,-0.8285115782041601,-2.3711626289282037,4.4912547320930285,-0.0082851157820416,-0.02371162628928204,0.044912547320930286 +karman_re100,sr,82,32.8,1.0450665950775146,-0.3751307427883148,0.9505622982978821,-0.5488138794898987,0.9815402030944824,-0.3805857002735138,0.0014883498661220074,-0.0035748430527746677,0.00555203203111887,0.006139726843684912,-0.005935200490057468,-0.002442203229293227,-1.591361081759075,-1.6106712244486798,5.251746136572552,-0.01591361081759075,-0.016106712244486798,0.05251746136572552 +karman_re100,sr,83,33.2,1.1081293821334839,-0.3695538341999054,0.9632892608642578,-0.532386302947998,0.9124115705490112,-0.36539238691329956,0.003910872619599104,-0.0029532017651945353,0.004996336530894041,0.005526901688426733,-0.008336992003023624,-0.001654142397455871,-2.190566040865534,-1.0134316613739967,5.848985699647235,-0.021905660408655343,-0.010134316613739966,0.058489856996472356 +karman_re100,sr,84,33.6,1.1721993684768677,-0.3394049108028412,0.9651995301246643,-0.4844374358654022,0.8570621609687805,-0.3056678771972656,0.005272284150123596,-0.0018669781275093555,0.0040065329521894455,0.004733900539577007,-0.009308571927249432,-0.002142983488738537,-2.5426086434883546,-0.898846648281201,5.963570712740031,-0.025426086434883546,-0.00898846648281201,0.059635707127400316 +karman_re100,sr,85,34.0,1.234787106513977,-0.28417718410491943,0.9497441053390503,-0.3834775984287262,0.8171286582946777,-0.20304115116596222,0.004886379931122065,-0.0003980354522354901,0.003176386933773756,0.004412350710481405,-0.0076179164461791515,-0.00317586213350296,-2.539133470632916,-1.7370316157247643,5.125385745296468,-0.02539133470632916,-0.017370316157247642,0.05125385745296468 +karman_re100,sr,86,34.4,1.2861517667770386,-0.19141916930675507,0.9131743907928467,-0.2027333825826645,0.8001214861869812,-0.06930175423622131,0.0032576804514974356,0.0009837568504735827,0.002320891944691539,0.0046296026557683945,-0.004744481295347214,-0.0034599611535668373,-2.058427421516448,-2.6226800603802842,4.239737300640948,-0.02058427421516448,-0.026226800603802843,0.04239737300640948 +karman_re100,sr,87,34.8,1.3040156364440918,-0.048389267176389694,0.8782910108566284,0.06656201183795929,0.8149558305740356,0.06996721029281616,0.0011108429171144962,0.0021835521329194307,0.0012150591937825084,0.004994145128875971,-0.0022282698191702366,-0.0038773110136389732,-1.3473364152016014,-2.666390753819265,4.196026607201967,-0.013473364152016014,-0.02666390753819265,0.04196026607201967 +karman_re100,sr,88,35.2,1.2547099590301514,0.12984353303909302,0.8763744235038757,0.3277248740196228,0.8556945323944092,0.1928604543209076,-0.00047737982822582126,0.003055157605558634,-4.705788160208613e-05,0.005036795046180487,0.00014241326425690204,-0.0050465865060687065,-0.6566280946604279,-2.700921023253277,4.1614963377679555,-0.006566280946604279,-0.027009210232532773,0.04161496337767955 +karman_re100,sr,89,35.6,1.161726474761963,0.2723241448402405,0.9002044200897217,0.47663867473602295,0.9121599793434143,0.2835511863231659,-0.0009814398363232613,0.003524809144437313,-0.0015372508205473423,0.004558079410344362,0.0026879222132265568,-0.006116109900176525,0.03613133599215046,-3.437611226963435,3.424806134057798,0.0003613133599215046,-0.03437611226963435,0.03424806134057798 +karman_re100,sr,90,36.0,1.0662169456481934,0.3518742024898529,0.9281986951828003,0.5326268672943115,0.9770995378494263,0.34240707755088806,-0.0003490108938422054,0.0037113723810762167,-0.003474791068583727,0.0036334029864519835,0.004765395075082779,-0.006386518478393555,0.8057224007178106,-4.449990629263664,2.4124267317575683,0.008057224007178107,-0.04449990629263664,0.024124267317575682 +karman_re100,sr,91,36.4,0.9841476678848267,0.3808724880218506,0.9497437477111816,0.5484106540679932,1.0431052446365356,0.37387675046920776,0.0014362996444106102,0.003596313064917922,-0.005850586108863354,0.0024700770154595375,0.00557264219969511,-0.006154857110232115,1.5713682040866455,-5.231445828837916,1.6309715321833151,0.015713682040866456,-0.05231445828837916,0.016309715321833153 +karman_re100,sr,92,36.8,0.9156452417373657,0.3671501576900482,0.9638447761535645,0.5332555174827576,1.107235312461853,0.3696516156196594,0.0038622827269136906,0.002987067447975278,-0.008281627669930458,0.0016828615916892886,0.005038285627961159,-0.005568701773881912,2.17836071165551,-5.840652828219973,1.0217645328012592,0.021783607116555102,-0.05840652828219973,0.010217645328012592 +karman_re100,sr,93,37.2,0.8593587279319763,0.30887898802757263,0.9657174944877625,0.4868963360786438,1.1708288192749023,0.34033527970314026,0.005267213564366102,0.0019161649979650974,-0.009344328194856644,0.0021178252063691616,0.004029468167573214,-0.004762481898069382,2.540050415436934,-5.972124188385921,0.8902931726353113,0.02540050415436934,-0.05972124188385921,0.008902931726353112 +karman_re100,sr,94,37.6,0.8179876804351807,0.20757906138896942,0.9499004483222961,0.38858282566070557,1.2328909635543823,0.2864152193069458,0.004924347624182701,0.0004602694243658334,-0.007739673834294081,0.003122492926195264,0.0031875211279839277,-0.004402451682835817,2.550325685058024,-5.160525607064077,1.7018917539571552,0.02550325685058024,-0.05160525607064077,0.017018917539571552 +karman_re100,sr,95,38.0,0.7994164824485779,0.07457451522350311,0.9131821990013123,0.2109270691871643,1.2845379114151,0.19528183341026306,0.003340267576277256,-0.0009295019553974271,-0.0048698605969548225,0.0034123375080525875,0.0023528789170086384,-0.004600372165441513,2.0837692770784035,-4.268162055251224,2.594255305770008,0.020837692770784035,-0.04268162055251224,0.02594255305770008 +karman_re100,sr,96,38.4,0.8134152293205261,-0.06503620743751526,0.8781324625015259,-0.05659143999218941,1.3047544956207275,0.05400015786290169,0.001198550802655518,-0.002145542996004224,-0.0023183319717645645,0.0038457850459963083,0.0012752845650538802,-0.004979124758392572,1.3773454896241422,-4.208053723877664,2.654363637143568,0.013773454896241422,-0.04208053723877664,0.026543636371435683 +karman_re100,sr,97,38.8,0.8547621369361877,-0.1888992190361023,0.8766686916351318,-0.32029902935028076,1.2589261531829834,-0.12421710044145584,-0.00042585673509165645,-0.003032500157132745,6.521359318867326e-05,0.005042820703238249,2.417114592390135e-05,-0.005064924247562885,0.6852872817656835,-4.172289197438539,2.690128163582693,0.006852872817656836,-0.0417228919743854,0.02690128163582693 +karman_re100,sr,98,39.2,0.9111156463623047,-0.2811335623264313,0.9004344344139099,-0.4735853672027588,1.1667389869689941,-0.26861292123794556,-0.0009814093355089426,-0.0035096541978418827,0.002608333481475711,0.006137046962976456,-0.0014708669623360038,-0.004615976940840483,-0.007826618904639107,-3.445661986853696,3.416755374167537,-7.826618904639108e-05,-0.03445661986853696,0.03416755374167537 +karman_re100,sr,99,39.6,0.975106954574585,-0.34086719155311584,0.9277201294898987,-0.5315253138542175,1.0699257850646973,-0.34975773096084595,-0.0004040541243739426,-0.0036980779841542244,0.004696158226579428,0.006399122998118401,-0.0034105617087334394,-0.003689006669446826,-0.7778860530266781,-2.436594844995458,4.425822516025774,-0.007778860530266781,-0.02436594844995458,0.04425822516025774 +karman_re100,sr,100,40.0,1.040298581123352,-0.37342768907546997,0.9486390948295593,-0.5482074618339539,0.9864370226860046,-0.3800070285797119,0.0013446721713989973,-0.0036012830678373575,0.005552671384066343,0.00615197466686368,-0.005772069096565247,-0.0025015235878527164,-1.5459167698022263,-1.6590882934642046,5.203329067557028,-0.015459167698022263,-0.016590882934642046,0.052033290675570276 +karman_re100,sr,101,40.4,1.1040797233581543,-0.3701907992362976,0.9626472592353821,-0.5337485671043396,0.9171167016029358,-0.36749106645584106,0.0037789165508002043,-0.0030046869069337845,0.005075383931398392,0.00558286951854825,-0.008191710337996483,-0.0016806551720947027,-2.159579504702704,-1.044211963583027,5.818205397438206,-0.02159579504702704,-0.01044211963583027,0.05818205397438206 +karman_re100,sr,102,40.8,1.1684740781784058,-0.3416154980659485,0.9659189581871033,-0.48833978176116943,0.861266016960144,-0.3106893301010132,0.005249457433819771,-0.0019583464600145817,0.004078920930624008,0.0047898488119244576,-0.00931764766573906,-0.0020982050336897373,-2.5299780529315896,-0.8795862557400302,5.9828311052812015,-0.025299780529315898,-0.008795862557400303,0.059828311052812014 +karman_re100,sr,103,41.2,1.2315967082977295,-0.28876569867134094,0.9518203735351562,-0.3917512893676758,0.820270836353302,-0.21064449846744537,0.004956554621458054,-0.0005060893017798662,0.003225493710488081,0.00442053098231554,-0.007796095218509436,-0.003130493685603142,-2.554668252533417,-1.6711673259705098,5.1912500350507225,-0.02554668252533417,-0.016711673259705098,0.05191250035050723 +karman_re100,sr,104,41.6,1.2830989360809326,-0.19904033839702606,0.9153870344161987,-0.21724992990493774,0.8004326820373535,-0.0783880278468132,0.0033920181449502707,0.0008854462066665292,0.0023755906149744987,0.004596908576786518,-0.004952775314450264,-0.0034215212799608707,-2.101769802233367,-2.587665040199476,4.274752320821756,-0.021017698022333667,-0.02587665040199476,0.042747523208217564 +karman_re100,sr,105,42.0,1.3038073778152466,-0.059698089957237244,0.8786065578460693,0.04734334349632263,0.8125913739204407,0.06113361194729805,0.0012512163957580924,0.002104261890053749,0.0012929264921694994,0.004957286641001701,-0.002412979258224368,-0.003784948494285345,-1.397487994644506,-2.662633631039918,4.1997837299813146,-0.01397487994644506,-0.026626336310399182,0.04199783729981315 +karman_re100,sr,106,42.4,1.2594537734985352,0.11850163340568542,0.8750264048576355,0.3129431903362274,0.8526583313941956,0.18538782000541687,-0.0003912076645065099,0.003008806612342596,5.709838296752423e-05,0.005040887743234634,-3.635980829130858e-05,-0.004951091483235359,-0.7067003538490045,-2.6646274425286256,4.197789918492607,-0.007067003538490046,-0.026646274425286255,0.04197789918492607 +karman_re100,sr,107,42.8,1.1682734489440918,0.2651238739490509,0.8983991146087646,0.4701675474643707,0.9087702035903931,0.2784549295902252,-0.000973908812738955,0.0035059580113738775,-0.001401041867211461,0.004620160907506943,0.002523208037018776,-0.006093215197324753,-0.017822076782628798,-3.3724917238465317,3.4899256371747005,-0.00017822076782628797,-0.03372491723846532,0.034899256371747005 +karman_re100,sr,108,43.2,1.072470784187317,0.34858089685440063,0.9271481037139893,0.5303719639778137,0.9738670587539673,0.3389969766139984,-0.00043524225475266576,0.003704048926010728,-0.0033158641308546066,0.003733045421540737,0.004656162578612566,-0.006416692864149809,0.7483376487965688,-4.394425465928782,2.4679918950924504,0.007483376487965689,-0.04394425465928782,0.024679918950924504 +karman_re100,sr,109,43.6,0.9889590740203857,0.3804568946361542,0.9489072561264038,0.5482949018478394,1.0396108627319336,0.3726135492324829,0.0012678480707108974,0.003616281785070896,-0.005677996203303337,0.0025598236825317144,0.005549687892198563,-0.006186858285218477,1.5202313485375059,-5.1860213040055045,1.6763960570157277,0.015202313485375058,-0.051860213040055045,0.016763960570157277 +karman_re100,sr,110,44.0,0.9185242652893066,0.36953097581863403,0.9625921845436096,0.5352158546447754,1.1027940511703491,0.37055110931396484,0.0036941375583410263,0.0030422022100538015,-0.008136162534356117,0.0016924303490668535,0.005090398248285055,-0.005614669993519783,2.141071267760313,-5.802893576817116,1.0595237842041167,0.021410712677603132,-0.05802893576817116,0.010595237842041168 +karman_re100,sr,111,44.4,0.8615090847015381,0.31427109241485596,0.9656780958175659,0.4914245307445526,1.1664495468139648,0.34257927536964417,0.005227844696491957,0.002007188042625785,-0.009348365478217602,0.00203490536659956,0.004094651900231838,-0.004802628420293331,2.5222484906164846,-5.995925465278206,0.8664918957430264,0.025222484906164848,-0.05995925465278206,0.008664918957430264 +karman_re100,sr,112,44.8,0.8196102380752563,0.2156590074300766,0.9519592523574829,0.3975585997104645,1.229516625404358,0.29070326685905457,0.00499854376539588,0.0005592748057097197,-0.00790430698543787,0.0030901827849447727,0.0032533665653318167,-0.004409861750900745,2.5635258363326825,-5.240997580440698,1.621419780580534,0.025635258363326825,-0.05240997580440698,0.01621419780580534 +karman_re100,sr,113,45.2,0.7995493412017822,0.08401019126176834,0.9168251752853394,0.2260315865278244,1.2825793027877808,0.20216487348079681,0.003477411810308695,-0.000845315691549331,-0.005039643030613661,0.003441042499616742,0.002425944898277521,-0.004589601885527372,2.1277205567417834,-4.294134738401732,2.5682826226195,0.021277205567417835,-0.04294134738401732,0.025682826226195 +karman_re100,sr,114,45.6,0.8115786910057068,-0.056187257170677185,0.8806359767913818,-0.03788519278168678,1.306093692779541,0.06437951326370239,0.0013330992078408599,-0.0020673361141234636,-0.00246912962757051,0.0038050541188567877,0.0013507131952792406,-0.004969208966940641,1.4236556422077178,-4.182241203348271,2.6801761576729617,0.014236556422077178,-0.04182241203348271,0.026801761576729616 +karman_re100,sr,115,46.0,0.8509074449539185,-0.18165606260299683,0.8761653304100037,-0.30662110447883606,1.2636393308639526,-0.11318154633045197,-0.00035528253647498786,-0.0029826799873262644,-0.00010858156019821763,0.0049318838864564896,9.862058504950255e-05,-0.005070485640317202,0.7284276655628911,-4.192438934039826,2.6699784269814058,0.007284276655628911,-0.041924389340398265,0.026699784269814057 +karman_re100,sr,116,46.4,0.9059584736824036,-0.276319682598114,0.8983457684516907,-0.46776875853538513,1.1724774837493896,-0.2608943581581116,-0.0009832250652834773,-0.0034874838311225176,0.002428458770737052,0.006056617945432663,-0.001366117037832737,-0.004643213003873825,0.03951256163200426,-3.5218391051527025,3.34057825586853,0.00039512561632004266,-0.03521839105152703,0.0334057825586853 +karman_re100,sr,117,46.8,0.9703314304351807,-0.337798148393631,0.9263251423835754,-0.5296354293823242,1.0758343935012817,-0.34578293561935425,-0.00047434671432711184,-0.0036953669041395187,0.004592818208038807,0.006390788126736879,-0.0032576792873442173,-0.003749242052435875,-0.7236093541607571,-2.50699606070905,4.355421300312182,-0.007236093541607571,-0.025069960607090498,0.043554213003121824 +karman_re100,sr,118,47.2,1.0361909866333008,-0.37256625294685364,0.9481056928634644,-0.5482810735702515,0.9919093251228333,-0.3790288269519806,0.001200950238853693,-0.003624830162152648,0.0055550141260027885,0.0061866771429777145,-0.0055886683985590935,-0.002584486035630107,-1.4970562479329825,-1.7039257583469791,5.158491602674253,-0.014970562479329826,-0.017039257583469792,0.05158491602674253 +karman_re100,sr,119,47.6,1.1005866527557373,-0.3716990351676941,0.9629102945327759,-0.5358983874320984,0.9220812916755676,-0.3694717288017273,0.003622600343078375,-0.003069619182497263,0.005140768829733133,0.005648760590702295,-0.00804542750120163,-0.0017196489498019218,-2.1250525279688675,-1.075768719563622,5.78664864145761,-0.021250525279688674,-0.010757687195636221,0.057866486414576104 +karman_re100,sr,120,48.0,1.1647822856903076,-0.3445098400115967,0.9667352437973022,-0.49299344420433044,0.8650275468826294,-0.31573352217674255,0.005209076218307018,-0.0020506717264652252,0.004134938586503267,0.004839927889406681,-0.009333980269730091,-0.002028173767030239,-2.514551162560905,-0.8619983598473935,6.000419001173839,-0.025145511625609053,-0.008619983598473935,0.06000419001173839 +karman_re100,sr,121,48.4,1.227373480796814,-0.2937135398387909,0.9528024196624756,-0.40078628063201904,0.8218729496002197,-0.21846990287303925,0.00502016069367528,-0.0006117033772170544,0.0032692032400518656,0.004417357500642538,-0.007990897633135319,-0.0030560940504074097,-2.568465137207553,-1.5926282657475717,5.26978909527366,-0.025684651372075533,-0.015926282657475716,0.0526978909527366 +karman_re100,sr,122,48.8,1.2801165580749512,-0.20674489438533783,0.9174922108650208,-0.2323349416255951,0.8001812696456909,-0.08790769428014755,0.0035284426994621754,0.0007903025252744555,0.0024403876159340143,0.004561439622193575,-0.0051595233380794525,-0.0033942279405891895,-2.1472530084207175,-2.5410909070476357,4.3213264539735965,-0.021472530084207176,-0.025410909070476356,0.043213264539735965 +karman_re100,sr,123,49.2,1.304926872253418,-0.07097502052783966,0.880012571811676,0.027831560000777245,0.8106667995452881,0.05190741643309593,0.0014075529761612415,0.0020265623461455107,0.0013866196386516094,0.0049363295547664165,-0.002570489654317498,-0.0037406068295240402,-1.4492704677800892,-2.6679795913800586,4.194437769641174,-0.014492704677800892,-0.026679795913800586,0.04194437769641174 +karman_re100,sr,124,49.6,1.2655645608901978,0.10689271986484528,0.8745332360267639,0.29776328802108765,0.8497414588928223,0.17764310538768768,-0.00030246732058003545,0.002961634425446391,0.0001584124256623909,0.005066244397312403,-0.00019271374912932515,-0.00488886795938015,-0.754603793489146,-2.649336479587282,4.21308088143395,-0.00754603793489146,-0.026493364795872817,0.042130808814339504 +karman_re100,sr,125,50.0,1.176172137260437,0.25755956768989563,0.8972126841545105,0.4634406566619873,0.9052885174751282,0.27328529953956604,-0.0009724156698212028,0.0034807114861905575,-0.0012914538383483887,0.004682352300733328,0.0023541587870568037,-0.006059291772544384,-0.0669582576255698,-3.3152238430643597,3.5471935179568725,-0.0006695825762556979,-0.0331522384306436,0.035471935179568724 +karman_re100,sr,126,50.4,1.0790075063705444,0.34498366713523865,0.9255456328392029,0.5280646085739136,0.9693699479103088,0.3356567323207855,-0.0005144994938746095,0.0036933450028300285,-0.0031836030539125204,0.0038074073381721973,0.004535182844847441,-0.006415285635739565,0.6952027131549231,-4.331576861724949,2.5308404992962834,0.006952027131549231,-0.04331576861724949,0.025308404992962833 +karman_re100,sr,127,50.8,0.9938089847564697,0.379781574010849,0.9471755027770996,0.5480508208274841,1.034444808959961,0.37142884731292725,0.0011151814833283424,0.00363546097651124,-0.005517053417861462,0.00262770289555192,0.005528640002012253,-0.006197077687829733,1.4719394105904129,-5.13647655007116,1.7259408109500713,0.01471939410590413,-0.051364765500711604,0.017259408109500714 +karman_re100,sr,128,51.2,0.9229390025138855,0.37169158458709717,0.9618939757347107,0.5369512438774109,1.098118543624878,0.3717123866081238,0.0035375093575567007,0.00309742521494627,-0.007980397902429104,0.0017156957183033228,0.00516038341447711,-0.005658311769366264,2.106366425401603,-5.765190351882481,1.0972270091387517,0.02106366425401603,-0.057651903518824814,0.010972270091387517 +karman_re100,sr,129,51.6,0.8654601573944092,0.3194211721420288,0.9664716124534607,0.4954160451889038,1.1620866060256958,0.345123827457428,0.005191984586417675,0.002094147726893425,-0.009329394437372684,0.0019844304770231247,0.004175604321062565,-0.004856172949075699,2.505890713902538,-6.009249411998253,0.8531679490229793,0.02505890713902538,-0.06009249411998253,0.008531679490229793 +karman_re100,sr,130,52.0,0.8227850198745728,0.22345802187919617,0.9545724391937256,0.40572455525398254,1.225817084312439,0.2953706383705139,0.005062298849225044,0.0006613327423110604,-0.008061395026743412,0.0030524933245033026,0.0033144208136945963,-0.004428008571267128,2.575345420023759,-5.30901493082975,1.5534024301914824,0.02575345420023759,-0.053090149308297495,0.015534024301914823 +karman_re100,sr,131,52.4,0.8007662892341614,0.09323103725910187,0.9207073450088501,0.24036380648612976,1.2797136306762695,0.20966096222400665,0.003609397215768695,-0.0007524472312070429,-0.005237297620624304,0.0034262079279869795,0.0024828300811350346,-0.004568340256810188,2.1693193570571045,-4.330645573936584,2.531771787084648,0.021693193570571045,-0.04330645573936584,0.02531771787084648 +karman_re100,sr,132,52.8,0.8095670342445374,-0.047333668917417526,0.8822664618492126,-0.018339071422815323,1.3053131103515625,0.07571348547935486,0.0014709339011460543,-0.001987533876672387,-0.0026510932948440313,0.0037247571162879467,0.00142046925611794,-0.004936926532536745,1.4721952866753227,-4.178038609248218,2.6843787517730138,0.014721952866753228,-0.041780386092482184,0.026843787517730137 +karman_re100,sr,133,53.2,0.8473010063171387,-0.17422893643379211,0.8750321269035339,-0.29098743200302124,1.2673454284667969,-0.10101799666881561,-0.000270553573500365,-0.0029327115043997765,-0.00029364952933974564,0.004813740029931068,0.00018697287305258214,-0.005062076263129711,0.7764295395740624,-4.223835222907631,2.638582138113601,0.0077642953957406235,-0.04223835222907631,0.026385821381136012 +karman_re100,sr,134,53.6,0.9020394682884216,-0.2712729871273041,0.8964811563491821,-0.4606463611125946,1.1785589456558228,-0.25265592336654663,-0.0009684134856797755,-0.0034720376133918762,0.0022540793288499117,0.006001106929033995,-0.0012376633239910007,-0.004683945327997208,0.09165263358419672,-3.5935934818705424,3.2688238791506894,0.0009165263358419672,-0.035935934818705426,0.032688238791506896 +karman_re100,sr,135,54.0,0.9664924144744873,-0.33453190326690674,0.9249544739723206,-0.5272247791290283,1.0818254947662354,-0.3417893648147583,-0.0005453437333926558,-0.0036905603483319283,0.0044826543889939785,0.00641040550544858,-0.0030942545272409916,-0.0038360871840268373,-0.6658603684268208,-2.569928704615217,4.292488656406015,-0.006658603684268209,-0.02569928704615217,0.042924886564060155 +karman_re100,sr,136,54.4,1.03279447555542,-0.37137940526008606,0.9475451707839966,-0.5481112599372864,0.9972090125083923,-0.37821003794670105,0.0010426744120195508,-0.0036450421903282404,0.005532929673790932,0.006226846016943455,-0.005410683341324329,-0.0026838378980755806,-1.4448840776956722,-1.747885373730373,5.114531987290859,-0.014448840776956722,-0.01747885373730373,0.051145319872908594 +karman_re100,sr,137,54.8,1.0967730283737183,-0.3728390038013458,0.9622737765312195,-0.5379483103752136,0.9258648753166199,-0.3716336488723755,0.0034473466221243143,-0.003114779479801655,0.005189935676753521,0.005701423157006502,-0.007894969545304775,-0.0017498328816145658,-2.0869001294343668,-1.1144679367675852,5.7479494242536475,-0.02086900129434367,-0.011144679367675851,0.057479494242536476 +karman_re100,sr,138,55.2,1.1601680517196655,-0.346998393535614,0.966276228427887,-0.4975944757461548,0.8671566843986511,-0.3210434317588806,0.005154004320502281,-0.002127139363437891,0.004193941131234169,0.004882995039224625,-0.009332648478448391,-0.0019444781355559826,-2.4952353819377335,-0.8472997854600024,6.01511757556123,-0.024952353819377337,-0.008472997854600024,0.0601511757556123 +karman_re100,sr,139,55.6,1.2234615087509155,-0.2981289327144623,0.9540315866470337,-0.40987229347229004,0.8232240080833435,-0.2266765981912613,0.005083075724542141,-0.0007152120815590024,0.003327596466988325,0.004420189186930656,-0.008165257051587105,-0.0029931790195405483,-2.5794627028809267,-1.509739237453821,5.3526781235674115,-0.025794627028809268,-0.01509739237453821,0.053526781235674115 +karman_re100,sr,140,56.0,1.2777831554412842,-0.21372434496879578,0.92044997215271,-0.2475043684244156,0.800157368183136,-0.09778253734111786,0.0036773919127881527,0.0007159507949836552,0.002516108565032482,0.004543837159872055,-0.005344512406736612,-0.0034108920954167843,-2.191637940994268,-2.4980997274369714,4.364317633584261,-0.02191637940994268,-0.024980997274369716,0.043643176335842616 +karman_re100,sr,141,56.4,1.306119680404663,-0.08150104433298111,0.8822293877601624,0.008352868258953094,0.8087157607078552,0.04242994263768196,0.001557095441967249,0.0019528098637238145,0.0014740595361217856,0.0049283429980278015,-0.002717738039791584,-0.0037221249658614397,-1.4989867515199822,-2.6903862202773596,4.172031140743872,-0.014989867515199823,-0.026903862202773597,0.041720311407438725 +karman_re100,sr,142,56.8,1.2714049816131592,0.09527083486318588,0.8745580911636353,0.2826266586780548,0.8464568257331848,0.1697658747434616,-0.00021965369523968548,0.0029087886214256287,0.00024038154515437782,0.005082688760012388,-0.00035576842492446303,-0.004801552277058363,-0.7993578438541069,-2.6424736939675144,4.219943667053718,-0.00799357843854107,-0.026424736939675144,0.04219943667053718 +karman_re100,sr,143,57.2,1.183038353919983,0.24930547177791595,0.8952919840812683,0.4566965103149414,0.900341272354126,0.2680465579032898,-0.000967291125562042,0.003454138059169054,-0.001193908043205738,0.004719614516943693,0.002172849839553237,-0.005984908901154995,-0.11368324592632023,-3.247376094538352,3.6150412664828804,-0.0011368324592632023,-0.03247376094538352,0.0361504126648288 +karman_re100,sr,144,57.6,1.0852587223052979,0.34060508012771606,0.9234758615493774,0.5258254408836365,0.9638630747795105,0.33231812715530396,-0.0005838244687765837,0.003684514667838812,-0.003045998513698578,0.0038628021720796824,0.0044127716682851315,-0.006394785828888416,0.6420263080939983,-4.258573155664077,2.603844205357155,0.006420263080939983,-0.04258573155664078,0.02603844205357155 +karman_re100,sr,145,58.0,0.9996217489242554,0.3784716725349426,0.9460530877113342,0.5478338003158569,1.0295658111572266,0.3702700138092041,0.0009763871203176677,0.0036520445719361305,-0.005341668147593737,0.0027012964710593224,0.005517633631825447,-0.006214533932507038,1.422355527073529,-5.086849735630371,1.775567625390861,0.01422355527073529,-0.05086849735630371,0.01775567625390861 +karman_re100,sr,146,58.4,0.9281793236732483,0.3733147382736206,0.9615478515625,0.5387625694274902,1.0937857627868652,0.3730696439743042,0.0033815682400017977,0.0031510316766798496,-0.007819762453436852,0.001758590922690928,0.005231148563325405,-0.005717257969081402,2.0708223379002644,-5.728482662479662,1.1339346985415704,0.020708223379002643,-0.05728482662479662,0.011339346985415704 +karman_re100,sr,147,58.8,0.8700767755508423,0.32415637373924255,0.9672753214836121,0.49949878454208374,1.1580822467803955,0.34796983003616333,0.00513900350779295,0.0021812855266034603,-0.009314007125794888,0.0019357581622898579,0.0042450702749192715,-0.004913756158202887,2.488752832588233,-6.019745011670999,0.842672349350234,0.02488752832588233,-0.06019745011670999,0.00842672349350234 +karman_re100,sr,148,59.2,0.8257858157157898,0.2310168445110321,0.9561110734939575,0.4139355719089508,1.2217131853103638,0.30026036500930786,0.005116188433021307,0.0007703607552684844,-0.008236452005803585,0.002983316546306014,0.0033609746024012566,-0.004437220748513937,2.5856579854823156,-5.378494450242743,1.4839229107784886,0.025856579854823158,-0.053784944502427434,0.014839229107784886 +karman_re100,sr,149,59.6,0.8011801838874817,0.10266831517219543,0.9227826595306396,0.2546587586402893,1.2758997678756714,0.21743366122245789,0.003741997526958585,-0.0006531932740472257,-0.005453529302030802,0.0033912688959389925,0.002537597669288516,-0.004535275511443615,2.2115795812899863,-4.381903398035172,2.4805139629860604,0.022115795812899863,-0.043819033980351724,0.024805139629860605 +karman_re100,sr,150,60.0,0.8078300356864929,-0.037889111787080765,0.8834331631660461,0.0017902926774695516,1.3049641847610474,0.08735170215368271,0.0016234000213444233,-0.001906270277686417,-0.0028285514563322067,0.0036594984121620655,0.0015041218139231205,-0.0049022710882127285,1.5238736866644496,-4.17926418824059,2.6831531727806426,0.015238736866644497,-0.041792641882405904,0.026831531727806425 +karman_re100,sr,151,60.4,0.8444089293479919,-0.16610187292099,0.8740373253822327,-0.27405238151550293,1.2724065780639648,-0.08856532722711563,-0.0001704025489743799,-0.0028826810885220766,-0.00046003295574337244,0.00473129702731967,0.00028978395857848227,-0.0050696940161287785,0.8262222353809567,-4.243846415796737,2.618570945224495,0.008262222353809568,-0.04243846415796737,0.02618570945224495 +karman_re100,sr,152,60.8,0.8985247611999512,-0.265610933303833,0.8946068286895752,-0.4525657594203949,1.1859279870986938,-0.24442265927791595,-0.0009530081879347563,-0.0034433507826179266,0.002083438215777278,0.005965315271168947,-0.0011166720651090145,-0.0047421567142009735,0.14298687402314686,-3.6524833898060973,3.2099339712151354,0.0014298687402314687,-0.03652483389806097,0.032099339712151356 +karman_re100,sr,153,61.2,0.96268630027771,-0.3308093547821045,0.9234651327133179,-0.5244051814079285,1.0887486934661865,-0.3379875421524048,-0.0006167200044728816,-0.003680731635540724,0.004355504643172026,0.0064209564588963985,-0.002953392919152975,-0.003922548145055771,-0.6102473241846001,-2.631396439072365,4.2310209219488675,-0.006102473241846001,-0.026313964390723654,0.04231020921948868 +karman_re100,sr,154,61.6,1.0282111167907715,-0.3697179853916168,0.9459384083747864,-0.5475987792015076,1.0022822618484497,-0.3775476813316345,0.0008907934534363449,-0.0036604467313736677,0.005495838355273008,0.006244944874197245,-0.005246512126177549,-0.00276392069645226,-1.393775460423472,-1.797522236396442,5.06489512462479,-0.01393775460423472,-0.01797522236396442,0.05064895124624791 +karman_re100,sr,155,62.0,1.0918655395507812,-0.3736024796962738,0.9609528183937073,-0.5396012663841248,0.9296735525131226,-0.37386924028396606,0.003278584685176611,-0.003173098200932145,0.005243305116891861,0.005740353371948004,-0.007738686166703701,-0.0017772373976185918,-2.048520226291316,-1.1549986713974154,5.707418689623816,-0.020485202262913157,-0.011549986713974154,0.057074186896238166 +karman_re100,sr,156,62.4,1.1555545330047607,-0.3491728901863098,0.9664953351020813,-0.5015435218811035,0.8705297708511353,-0.3263469636440277,0.005093896295875311,-0.0022224693093448877,0.0042702509090304375,0.004932365380227566,-0.009299291297793388,-0.0018831586930900812,-2.4756101346631967,-0.8397632358861057,6.022654125135126,-0.02475610134663197,-0.008397632358861058,0.06022654125135127 +karman_re100,sr,157,62.8,1.2194157838821411,-0.30229657888412476,0.9561141729354858,-0.41805973649024963,0.825834333896637,-0.2347664088010788,0.0051416377536952496,-0.000818119733594358,0.0033937033731490374,0.004438999108970165,-0.008310324512422085,-0.002948505338281393,-2.587653579185657,-1.437360196064465,5.425057164956767,-0.025876535791856572,-0.01437360196064465,0.054250571649567675 +karman_re100,sr,158,63.2,1.2750096321105957,-0.22068016231060028,0.9244341850280762,-0.2618540823459625,0.8013303279876709,-0.1074916422367096,0.003808253677561879,0.0006133930291980505,0.002580002648755908,0.004531991668045521,-0.005533594638109207,-0.0034203531686216593,-2.231907988300202,-2.4565883773674067,4.405828983653826,-0.02231907988300202,-0.024565883773674066,0.044058289836538256 +karman_re100,sr,159,63.6,1.3058135509490967,-0.09225505590438843,0.8849354386329651,-0.011355937458574772,0.8072171807289124,0.03312183916568756,0.0016973401652649045,0.0018721981905400753,0.0015467912890017033,0.004906334448605776,-0.0028867749497294426,-0.0036735939793288708,-1.5472282512868811,-2.7043183891184657,4.158098971902767,-0.015472282512868812,-0.027043183891184656,0.04158098971902767 +karman_re100,sr,160,64.0,1.2750709056854248,0.08286330848932266,0.873909592628479,0.26630842685699463,0.8426268100738525,0.16195997595787048,-0.00013529317220672965,0.0028534522280097008,0.00032001681393012404,0.005077230278402567,-0.0005350081482902169,-0.004687754902988672,-0.8454620923349982,-2.625130913873352,4.23728644714788,-0.008454620923349983,-0.02625130913873352,0.0423728644714788 +karman_re100,sr,161,64.4,1.189066767692566,0.24025216698646545,0.8933013081550598,0.4489578306674957,0.8957182168960571,0.2627195715904236,-0.0009511403040960431,0.00342809921130538,-0.0010818752925843,0.0047482387162745,0.0019893283024430275,-0.005903949029743671,-0.16304959814119038,-3.1765342793708564,3.6858830816503754,-0.0016304959814119038,-0.031765342793708566,0.036858830816503756 +karman_re100,sr,162,64.8,1.0914753675460815,0.3357759118080139,0.9218719005584717,0.5231669545173645,0.9593371748924255,0.32889872789382935,-0.000642886443529278,0.0036774203181266785,-0.002888585440814495,0.0039331247098743916,0.00429245550185442,-0.0063934726640582085,0.5856653713110412,-4.186917129757302,2.67550023126393,0.005856653713110413,-0.04186917129757302,0.026755002312639303 +karman_re100,sr,163,65.2,1.005214810371399,0.37693458795547485,0.9452058672904968,0.5474046468734741,1.0255030393600464,0.3688923716545105,0.0008326896349899471,0.0036694719456136227,-0.005159139633178711,0.00279626133851707,0.00549462903290987,-0.006250359583646059,1.3693937506772673,-5.040007802050259,1.8224095589709728,0.013693937506772674,-0.050400078020502594,0.018224095589709728 +karman_re100,sr,164,65.6,0.9330015778541565,0.3747769892215729,0.9612855315208435,0.5405009388923645,1.0901243686676025,0.37416398525238037,0.003205709159374237,0.003201304702088237,-0.007657419424504042,0.0018066784832626581,0.005284826271235943,-0.005773322191089392,2.03162805350623,-5.68981206749316,1.172605293528072,0.020316280535062303,-0.05689812067493161,0.01172605293528072 +karman_re100,sr,165,66.0,0.8732612133026123,0.32880452275276184,0.9670990109443665,0.5035844445228577,1.1537290811538696,0.3505222201347351,0.005068751517683268,0.002269299468025565,-0.00929195061326027,0.0018682107329368591,0.004302159417420626,-0.004966953303664923,2.468030821293317,-6.0249608779429416,0.8374564830782901,0.024680308212933173,-0.06024960877942942,0.008374564830782902 +karman_re100,sr,166,66.4,0.827426016330719,0.2386905997991562,0.9566799402236938,0.42225947976112366,1.2171968221664429,0.3046954870223999,0.005161075387150049,0.000873832032084465,-0.008406780660152435,0.0029023110400885344,0.003409598721191287,-0.004441956989467144,2.5923385579688456,-5.4574482281272,1.4049691328940321,0.025923385579688457,-0.054574482281272,0.014049691328940322 +karman_re100,sr,167,66.8,0.8014722466468811,0.11239129304885864,0.9250902533531189,0.2689953148365021,1.2728116512298584,0.22453129291534424,0.003876335686072707,-0.0005618137656711042,-0.00565640814602375,0.0033836709335446358,0.00260375440120697,-0.004508243873715401,2.2533329373317645,-4.437969145683957,2.424448215337275,0.022533329373317645,-0.04437969145683957,0.02424448215337275 +karman_re100,sr,168,67.2,0.806113600730896,-0.028136596083641052,0.8851930499076843,0.021630313247442245,1.3052549362182617,0.09811485558748245,0.001781216822564602,-0.0018299025250598788,-0.002982823643833399,0.003639314090833068,0.0015946143539622426,-0.00488426024094224,1.5751776186854816,-4.16655668491683,2.6958606761044024,0.015751776186854815,-0.0416655668491683,0.026958606761044026 +karman_re100,sr,169,67.6,0.8414919972419739,-0.15769541263580322,0.8737714886665344,-0.2572301924228668,1.278028130531311,-0.0763866975903511,-7.441198249580339e-05,-0.002829419681802392,-0.0006133213173598051,0.004661909304559231,0.0003809070331044495,-0.00508642615750432,0.8728978205720026,-4.245267630690376,2.6171497303308566,0.008728978205720026,-0.042452676306903754,0.026171497303308568 +karman_re100,sr,170,68.0,0.8945049047470093,-0.2597648799419403,0.8929292559623718,-0.4444340467453003,1.1935598850250244,-0.23584327101707458,-0.000937723380047828,-0.0034149917773902416,0.0019072005525231361,0.005901840981096029,-0.0010176142677664757,-0.004788962192833424,0.1895950880577914,-3.7087963846950824,3.15362097632615,0.0018959508805779142,-0.037087963846950824,0.0315362097632615 +karman_re100,sr,171,68.4,0.9574652314186096,-0.32701411843299866,0.9211698174476624,-0.5215844511985779,1.0952653884887695,-0.3336332440376282,-0.0006797427195124328,-0.0036696854513138533,0.004221108742058277,0.0064020114950835705,-0.002825093222782016,-0.003983516711741686,-0.5577496589657742,-2.7035073755417747,4.158909985479458,-0.005577496589657742,-0.02703507375541775,0.04158909985479458 +karman_re100,sr,172,68.8,1.0229921340942383,-0.36797863245010376,0.9442228078842163,-0.5469862222671509,1.0078281164169312,-0.3763344883918762,0.000754546548705548,-0.003673745784908533,0.005464131943881512,0.006252164952456951,-0.005083778873085976,-0.0028330490458756685,-1.3436805351336725,-1.849776966239383,5.012640394781849,-0.013436805351336725,-0.01849776966239383,0.05012640394781849 +karman_re100,sr,173,69.2,1.087174654006958,-0.37444859743118286,0.9601964354515076,-0.5410818457603455,0.9347213506698608,-0.3755548894405365,0.003118372056633234,-0.0032239905558526516,0.005308125633746386,0.005785235203802586,-0.00757375406101346,-0.001816636067815125,-2.0114414150781963,-1.1954799261300377,5.666937434891194,-0.020114414150781964,-0.011954799261300377,0.05666937434891194 +karman_re100,sr,174,69.6,1.1510953903198242,-0.35154083371162415,0.9669969081878662,-0.5051583647727966,0.8749849200248718,-0.3311083912849426,0.00503426743671298,-0.0023041607346385717,0.004348096437752247,0.0049927919171750546,-0.00925722997635603,-0.0018458045087754726,-2.4565192834597984,-0.8361778464115286,6.026239514609704,-0.024565192834597984,-0.008361778464115286,0.06026239514609704 +karman_re100,sr,175,70.0,1.2154076099395752,-0.3066469132900238,0.9581814408302307,-0.4256771504878998,0.8294231295585632,-0.24235586822032928,0.005189658608287573,-0.0009238725760951638,0.0034491210244596004,0.004459261428564787,-0.008461853489279747,-0.0028963375370949507,-2.594477474247597,-1.3734222728928787,5.488995088128354,-0.025944774742475973,-0.013734222728928786,0.05488995088128354 +karman_re100,sr,176,70.4,1.2713251113891602,-0.22788652777671814,0.9274507761001587,-0.27537083625793457,0.8026025295257568,-0.11691669374704361,0.003933614585548639,0.0005111016798764467,0.0026343027129769325,0.004509414546191692,-0.005744625348597765,-0.00339425983838737,-2.271371823919551,-2.4092269809895344,4.453190380031698,-0.02271371823919551,-0.024092269809895345,0.04453190380031698 +karman_re100,sr,177,70.8,1.3043417930603027,-0.10339754074811935,0.8866618275642395,-0.031224185600876808,0.80558180809021,0.023684389889240265,0.0018450163770467043,0.0017863655230030417,0.0016213367925956845,0.004870587028563023,-0.0030743172392249107,-0.003604492638260126,-1.5978256935867463,-2.702019172479609,4.160398188541623,-0.015978256935867463,-0.027020191724796094,0.04160398188541623 +karman_re100,sr,178,71.2,1.2789052724838257,0.06998104602098465,0.8732330203056335,0.24863848090171814,0.8395729064941406,0.15382172167301178,-3.0333898394019343e-05,0.0027985256165266037,0.0004143318219576031,0.005070410203188658,-0.0007145690033212304,-0.004583363886922598,-0.8954411119299066,-2.6033210886592926,4.25909627236194,-0.008954411119299066,-0.026033210886592925,0.0425909627236194 +karman_re100,sr,179,71.6,1.1956493854522705,0.23108544945716858,0.8913869261741638,0.44006839394569397,0.8919804096221924,0.25698843598365784,-0.0009243453969247639,0.0034084555227309465,-0.000958200020249933,0.00479245325550437,0.0018109052907675505,-0.0058493525721132755,-0.21527655218975672,-3.1127335296989127,3.7496838313223195,-0.0021527655218975673,-0.031127335296989127,0.037496838313223195 +karman_re100,sr,180,72.0,1.098124384880066,0.33115389943122864,0.9203346371650696,0.5200188159942627,0.9555066823959351,0.32515862584114075,-0.0007037550094537437,0.0036680432967841625,-0.002735928865149617,0.0040191467851400375,0.004160853568464518,-0.006405738182365894,0.5280565224663981,-4.122305518754505,2.7401118422667268,0.005280565224663981,-0.04122305518754505,0.027401118422667268 +karman_re100,sr,181,72.4,1.0107314586639404,0.37564876675605774,0.9441559314727783,0.5466805100440979,1.0216234922409058,0.3671000301837921,0.0006833297666162252,0.0036833432968705893,-0.004986397922039032,0.002891401993110776,0.005449388641864061,-0.006279511842876673,1.3151868705070815,-4.991779061135799,1.8706382998854332,0.013151868705070815,-0.04991779061135799,0.018706382998854333 +karman_re100,sr,182,72.8,0.9368299841880798,0.376430481672287,0.9600393176078796,0.5419795513153076,1.0856106281280518,0.3748182952404022,0.003022772027179599,0.0032481742091476917,-0.007491219788789749,0.0018478869460523129,0.005324844270944595,-0.005817918106913567,1.9900598002577867,-5.646662856703107,1.2157545043181255,0.019900598002577867,-0.056466628567031066,0.012157545043181256 +karman_re100,sr,183,73.2,0.8760945200920105,0.33360642194747925,0.9666874408721924,0.5073189735412598,1.1489949226379395,0.3526407480239868,0.004988991189748049,0.002345205517485738,-0.009245396591722965,0.0018053650856018066,0.004369382746517658,-0.00501570338383317,2.4439685237551365,-6.027175902633626,0.8352414583876056,0.024439685237551367,-0.06027175902633626,0.008352414583876056 +karman_re100,sr,184,73.6,0.8295787572860718,0.24644729495048523,0.9580516219139099,0.430062472820282,1.2130084037780762,0.3086187243461609,0.005208236631006002,0.0009685924742370844,-0.008553529158234596,0.0028321919962763786,0.0034719808027148247,-0.004458846058696508,2.5962801063918515,-5.5304196580705085,1.3319977029507242,0.025962801063918517,-0.05530419658070509,0.013319977029507242 +karman_re100,sr,185,74.0,0.8022445440292358,0.12210242450237274,0.928347110748291,0.28277885913848877,1.269791603088379,0.23109382390975952,0.004006471484899521,-0.00048036928637884557,-0.005845061503350735,0.0034009856171905994,0.002671180060133338,-0.004495516885071993,2.293213243136165,-4.494862958443241,2.367554402577992,0.022932132431361652,-0.04494862958443241,0.02367554402577992 +karman_re100,sr,186,74.4,0.8048333525657654,-0.018495434895157814,0.8880864977836609,0.041206229478120804,1.30507493019104,0.1083352193236351,0.001930779661051929,-0.0017483581323176622,-0.003140225075185299,0.003621103707700968,0.0016723142471164465,-0.004868011921644211,1.6240107902739158,-4.146912708987923,2.7155046520333093,0.016240107902739158,-0.04146912708987923,0.027155046520333095 +karman_re100,sr,187,74.8,0.8381320238113403,-0.14945264160633087,0.873720109462738,-0.24023941159248352,1.2822070121765137,-0.06408001482486725,1.9715469534276053e-05,-0.0027693293523043394,-0.0007794261910021305,0.004564506467431784,0.00045941624557599425,-0.0050871227867901325,0.91773063619371,-4.246550606363508,2.6158667546577243,0.0091773063619371,-0.042465506063635076,0.026158667546577245 +karman_re100,sr,188,75.2,0.8896563053131104,-0.25396889448165894,0.8908216953277588,-0.43594181537628174,1.199744462966919,-0.22651556134223938,-0.0009183516376651824,-0.0033836462534964085,0.0017226124182343483,0.005812108516693115,-0.0009197951876558363,-0.00481494190171361,0.23624194657402597,-3.7729427324182905,3.0894746286029418,0.00236241946574026,-0.037729427324182906,0.03089474628602942 +karman_re100,sr,189,75.6,0.9524189829826355,-0.3232898414134979,0.9192073345184326,-0.5186249017715454,1.101614236831665,-0.32853472232818604,-0.0007321881712414324,-0.003660299116745591,0.004088531713932753,0.006379994098097086,-0.002682954305782914,-0.004040197003632784,-0.5038958127570908,-2.7791705118931733,4.083246849128059,-0.005038958127570908,-0.027791705118931732,0.040832468491280596 +karman_re100,sr,190,76.0,1.0183370113372803,-0.36622437834739685,0.9430349469184875,-0.5462827682495117,1.0135806798934937,-0.37455669045448303,0.0006245551048777997,-0.0036879742983728647,0.005433189682662487,0.006274885032325983,-0.004907578695565462,-0.0029151516500860453,-1.291293381033247,-1.9012366683185777,4.961180692702655,-0.01291293381033247,-0.019012366683185778,0.04961180692702655 +karman_re100,sr,191,76.4,1.0830694437026978,-0.3753134608268738,0.9597765207290649,-0.5425422191619873,0.9399070143699646,-0.3767804205417633,0.0029485917184501886,-0.003276430070400238,0.005362725351005793,0.005840050056576729,-0.007404895033687353,-0.0018728504655882716,-1.9719402392215735,-1.2343096180167916,5.62810774300444,-0.019719402392215736,-0.012343096180167917,0.0562810774300444 +karman_re100,sr,192,76.8,1.1470085382461548,-0.3539714515209198,0.9673498272895813,-0.5087916254997253,0.8792577385902405,-0.3354828953742981,0.004956481512635946,-0.002383730374276638,0.004412612412124872,0.005052276886999607,-0.00921315886080265,-0.001800671685487032,-2.434730522413704,-0.8370929961411114,6.02532436488012,-0.02434730522413704,-0.008370929961411115,0.060253243648801205 +karman_re100,sr,193,77.2,1.2108532190322876,-0.3109363615512848,0.9590020179748535,-0.4333135187625885,0.8319391012191772,-0.24974460899829865,0.005227364134043455,-0.0010292158694937825,0.0034962405916303396,0.004472360480576754,-0.00861628819257021,-0.002809694968163967,-2.5983762212571286,-1.3050136507012935,5.557403710319939,-0.025983762212571287,-0.013050136507012935,0.055574037103199386 +karman_re100,sr,194,77.6,1.2675297260284424,-0.23492556810379028,0.9295337200164795,-0.28880444169044495,0.8032752275466919,-0.1264774203300476,0.004057547077536583,0.00041813243296928704,0.002690271707251668,0.004480814561247826,-0.005959029775112867,-0.003369024023413658,-2.309807360020158,-2.344006843374004,4.5184105176472285,-0.02309807360020158,-0.02344006843374004,0.04518410517647228 +karman_re100,sr,195,78.0,1.303633451461792,-0.11419286578893661,0.88853919506073,-0.05099114030599594,0.8042154908180237,0.013870387338101864,0.0020045763812959194,0.001704325433820486,0.0017060763202607632,0.004840911366045475,-0.003237823024392128,-0.0035650019999593496,-1.6493847468959777,-2.704218972586538,4.158198388434695,-0.016493847468959776,-0.02704218972586538,0.041581983884346946 +karman_re100,sr,196,78.4,1.2835955619812012,0.057241782546043396,0.8728591799736023,0.23051540553569794,0.8367283344268799,0.14523357152938843,7.95107043813914e-05,0.002743343124166131,0.0005108881159685552,0.00507725402712822,-0.0008700935286469758,-0.00451316824182868,-0.9427804298284513,-2.5969031653768804,4.265514195644352,-0.009427804298284513,-0.025969031653768803,0.04265514195644352 +karman_re100,sr,197,78.8,1.2032644748687744,0.22184444963932037,0.8898062109947205,0.43063122034072876,0.8884293437004089,0.25083816051483154,-0.0008992246584966779,0.0033723146189004183,-0.0008520837873220444,0.004840645007789135,0.001639855676330626,-0.005797272548079491,-0.26334728475084723,-3.0623581224748326,3.800059238546399,-0.0026334728475084722,-0.030623581224748328,0.038000592385463994 +karman_re100,sr,198,79.2,1.1051418781280518,0.32642731070518494,0.9184306263923645,0.5166513323783875,0.9510882496833801,0.3211636245250702,-0.0007590214372612536,0.0036557030398398638,-0.0026063460391014814,0.004091460257768631,0.004021506756544113,-0.006397243123501539,0.475202182501936,-4.056738717366846,2.8056786436543857,0.0047520218250193605,-0.040567387173668465,0.028056786436543857 +karman_re100,sr,199,79.6,1.016130805015564,0.3742082715034485,0.942253828048706,0.5457485318183899,1.016557216644287,0.3650381565093994,0.0005487922462634742,0.003691229270771146,-0.004829207435250282,0.002966663334518671,0.005400588735938072,-0.0062895650044083595,1.2639031403980108,-4.93893909829327,1.9234782627279619,0.012639031403980108,-0.0493893909829327,0.01923478262727962 +karman_re100,sr,200,80.0,0.9414529204368591,0.377858966588974,0.9588559865951538,0.5431823134422302,1.0807678699493408,0.37531977891921997,0.002853691577911377,0.0032947794534265995,-0.007326092105358839,0.0018907126504927874,0.005375085864216089,-0.005853765644133091,1.9507783146437692,-5.604023821714723,1.2583935393065095,0.019507783146437693,-0.05604023821714723,0.012583935393065095 +karman_re100,sr,201,80.4,0.8801238536834717,0.3381037414073944,0.9667465090751648,0.5105713605880737,1.1443405151367188,0.3547132611274719,0.00490929139778018,0.002423215890303254,-0.009179197251796722,0.001768707181327045,0.004449334926903248,-0.005072280764579773,2.4220602384299204,-6.022612942636066,0.8398044183851662,0.024220602384299204,-0.06022612942636066,0.008398044183851662 +karman_re100,sr,202,80.8,0.8328744769096375,0.2538291811943054,0.9597980976104736,0.4371035695075989,1.208768367767334,0.3125177323818207,0.005247998982667923,0.0010773276444524527,-0.008670145645737648,0.0027828263118863106,0.0035350986290723085,-0.004484883975237608,2.5989027141627092,-5.591385361878297,1.2710319991429353,0.025989027141627093,-0.05591385361878297,0.012710319991429353 +karman_re100,sr,203,81.2,0.8040035963058472,0.13144643604755402,0.9318326711654663,0.2955494821071625,1.266422986984253,0.23774263262748718,0.004118387121707201,-0.00037294733920134604,-0.006044106092303991,0.003388410434126854,0.0027292773593217134,-0.004483404569327831,2.32748780697,-4.544168686412612,2.31824867460862,0.023274878069699998,-0.04544168686412612,0.023182486746086202 +karman_re100,sr,204,81.6,0.8036344647407532,-0.009048381820321083,0.8905261158943176,0.060560647398233414,1.3033854961395264,0.11872386932373047,0.002073078416287899,-0.001663605566136539,-0.003321876283735037,0.003568315878510475,0.001742580090649426,-0.0048386650159955025,1.6730466469790626,-4.147215373712996,2.715201987308237,0.016730466469790626,-0.04147215373712996,0.02715201987308237 +karman_re100,sr,205,82.0,0.8348664045333862,-0.14122945070266724,0.8732125163078308,-0.22219431400299072,1.2851271629333496,-0.05127702280879021,0.0001230161142302677,-0.0027100122533738613,-0.0009582850616425276,0.0044550057500600815,0.0005421409150585532,-0.005075054243206978,0.9657701390408974,-4.261878412797541,2.600538948223691,0.009657701390408974,-0.042618784127975415,0.02600538948223691 +karman_re100,sr,206,82.4,0.8856599926948547,-0.24806015193462372,0.8888539671897888,-0.4264250099658966,1.2057857513427734,-0.2167946994304657,-0.0008863799157552421,-0.003356941044330597,0.001542133861221373,0.005734011996537447,-0.0008066692971624434,-0.004844738636165857,0.28612480728798806,-3.8366527435710474,3.025764617450185,0.0028612480728798808,-0.03836652743571047,0.03025764617450185 +karman_re100,sr,207,82.8,0.9481956958770752,-0.31947362422943115,0.9173486828804016,-0.5152486562728882,1.107900619506836,-0.3233386278152466,-0.0007796147256158292,-0.003651244333013892,0.003952634055167437,0.006379582919180393,-0.0025317890103906393,-0.0041129738092422485,-0.44790670215374123,-2.8497209285275757,4.012696432493657,-0.004479067021537412,-0.028497209285275757,0.04012696432493657 +karman_re100,sr,208,83.2,1.0144715309143066,-0.36427319049835205,0.9419994950294495,-0.5454254746437073,1.0192179679870605,-0.37281566858291626,0.0004890817799605429,-0.0036985669285058975,0.005386394448578358,0.006306475028395653,-0.004732671659439802,-0.0030126015190035105,-1.2365517051936632,-1.949093624897713,4.91332373612352,-0.012365517051936632,-0.01949093624897713,0.0491332373612352 +karman_re100,sr,209,83.6,1.0791321992874146,-0.375890851020813,0.9589620232582092,-0.5439273715019226,0.9443252086639404,-0.3780185282230377,0.0027670245617628098,-0.003318401053547859,0.005401123780757189,0.005887321196496487,-0.00723595917224884,-0.0019306723261252046,-1.9296625658647342,-1.2773747891045106,5.585042571916722,-0.019296625658647343,-0.012773747891045106,0.055850425719167214 +karman_re100,sr,210,84.0,1.1424338817596436,-0.3561108410358429,0.9667215943336487,-0.5123943090438843,0.8821597099304199,-0.3398716449737549,0.004859674721956253,-0.002464399440214038,0.0044767591170966625,0.0051054153591394424,-0.009154191240668297,-0.0017475357744842768,-2.4098375932953577,-0.8439920162702187,6.018425344751014,-0.024098375932953577,-0.008439920162702187,0.06018425344751014 +karman_re100,sr,211,84.4,1.2065038681030273,-0.31477826833724976,0.9596822261810303,-0.440856009721756,0.8338819742202759,-0.2571980059146881,0.005261548329144716,-0.0011338131735101342,0.003552875015884638,0.0044882032088935375,-0.008753207512199879,-0.0027249271515756845,-2.599363850553109,-1.2355217993754573,5.6268955616457745,-0.025993638505531092,-0.012355217993754573,0.05626895561645775 +karman_re100,sr,212,84.8,1.2643431425094604,-0.24128061532974243,0.9320212006568909,-0.30204614996910095,0.8039118051528931,-0.1361120641231537,0.004182984586805105,0.00032366986852139235,0.002756294561550021,0.004464356694370508,-0.006158711388707161,-0.003367733908817172,-2.3467172299695114,-2.2782185242926927,4.58419883672854,-0.023467172299695114,-0.02278218524292693,0.0458419883672854 +karman_re100,sr,213,85.2,1.3031343221664429,-0.12399666756391525,0.8909956216812134,-0.07028701901435852,0.8028280735015869,0.003999942913651466,0.0021597230806946754,0.0016306019388139248,0.0017901354003697634,0.004823335912078619,-0.003404018934816122,-0.003564198035746813,-1.7000534508852891,-2.714137027674493,4.148280333346739,-0.01700053450885289,-0.02714137027674493,0.04148280333346739 +karman_re100,sr,214,85.6,1.2881191968917847,0.04504362493753433,0.8731329441070557,0.21282896399497986,0.8337770104408264,0.13664408028125763,0.00018150459800381213,0.0026823801454156637,0.0005959834670647979,0.005083923228085041,-0.0010267016477882862,-0.004434342496097088,-0.9905029846568763,-2.6078698897939603,4.254547471227272,-0.009905029846568762,-0.026078698897939602,0.04254547471227272 +karman_re100,sr,215,86.0,1.2101092338562012,0.21235308051109314,0.8880211710929871,0.4213401675224304,0.8839963674545288,0.24467188119888306,-0.0008731616544537246,0.0033435323275625706,-0.0007571043097414076,0.0048748524859547615,0.001457255450077355,-0.005712353158742189,-0.3094391012859162,-3.0064537554138626,3.8559636056073696,-0.003094391012859162,-0.030064537554138626,0.038559636056073696 +karman_re100,sr,216,86.4,1.1116999387741089,0.3211725354194641,0.9161921739578247,0.5134233832359314,0.9458129405975342,0.31722918152809143,-0.0008082775748334825,0.0036428498569875956,-0.002477515023201704,0.00414610281586647,0.00387444905936718,-0.006366063840687275,0.42226892188140464,-3.978842743561769,2.8835746174594634,0.004222689218814047,-0.03978842743561769,0.028835746174594636 +karman_re100,sr,217,86.8,1.0220186710357666,0.37229248881340027,0.9407607316970825,0.5448979139328003,1.0115445852279663,0.363010436296463,0.0004253039078321308,0.003701907116919756,-0.004661039914935827,0.0030405924189835787,0.005354789085686207,-0.0062991357408463955,1.2112923444722006,-4.882820978076364,1.9795963829448686,0.012112923444722007,-0.04882820978076364,0.019795963829448687 +karman_re100,sr,218,87.2,0.9466670155525208,0.378867506980896,0.9580719470977783,0.5444381237030029,1.0761957168579102,0.37595057487487793,0.002685842802748084,0.003340221242979169,-0.007150739897042513,0.0019477744353935122,0.0054275644943118095,-0.0058988239616155624,1.9099756916587627,-5.561940484033439,1.3004768769877937,0.019099756916587628,-0.05561940484033439,0.013004768769877937 +karman_re100,sr,219,87.6,0.8847463130950928,0.3422272205352783,0.9670417308807373,0.5138790607452393,1.1400914192199707,0.3570384681224823,0.0048186215572059155,0.002499292604625225,-0.009111118502914906,0.0017390504945069551,0.0045237154699862,-0.005136075429618359,2.3986287733426157,-6.014763984603492,0.8476533764177394,0.02398628773342616,-0.060147639846034925,0.008476533764177395 +karman_re100,sr,220,88.0,0.8362826704978943,0.2609254717826843,0.9610936045646667,0.44410955905914307,1.204516053199768,0.316609650850296,0.005279138218611479,0.0011886963620781898,-0.008805077522993088,0.0027056040707975626,0.0035878210328519344,-0.00450825085863471,2.6001044393256745,-5.652492349823343,1.209925011197889,0.026001044393256744,-0.05652492349823343,0.01209925011197889 +karman_re100,sr,221,88.4,0.8052248358726501,0.1407758593559265,0.9340526461601257,0.30807557702064514,1.2624225616455078,0.24457769095897675,0.004234557971358299,-0.00027648729155771434,-0.006262259557843208,0.003358737798407674,0.0027810069732367992,-0.0044602444395422935,2.363272674622035,-4.609942998876868,2.2524743621443646,0.02363272674622035,-0.046099429988768675,0.022524743621443646 +karman_re100,sr,222,88.8,0.8024812340736389,0.0007164622657001019,0.8925295472145081,0.07989758253097534,1.301743984222412,0.129257932305336,0.002230948768556118,-0.0015752250328660011,-0.0035069328732788563,0.0035233916714787483,0.0018190976697951555,-0.004802703857421875,1.7245121942957864,-4.151473842035433,2.7109435189857995,0.017245121942957863,-0.04151473842035433,0.027109435189857995 +karman_re100,sr,223,89.2,0.8320678472518921,-0.13255798816680908,0.8728988170623779,-0.2032475620508194,1.2888041734695435,-0.03828280791640282,0.00024032042711041868,-0.002651348477229476,-0.0011247361544519663,0.004368526861071587,0.0006378926918841898,-0.005068344529718161,1.0156512126626476,-4.267739268560316,2.5946780924609167,0.010156512126626476,-0.04267739268560316,0.02594678092460917 +karman_re100,sr,224,89.6,0.8820490837097168,-0.24166767299175262,0.8870456218719482,-0.4159168303012848,1.2127565145492554,-0.20698948204517365,-0.0008484016289003193,-0.0033270055428147316,0.0013637547381222248,0.005672203376889229,-0.0006938359001651406,-0.004886703100055456,0.3361257714872633,-3.8888130809947006,2.9736042800265317,0.003361257714872633,-0.038888130809947005,0.029736042800265317 +karman_re100,sr,225,90.0,0.9442245364189148,-0.31530627608299255,0.9156496524810791,-0.5114372968673706,1.1150530576705933,-0.31824639439582825,-0.0008257110603153706,-0.0036371329333633184,0.0038055796176195145,0.006376171484589577,-0.0023939942475408316,-0.004189449828118086,-0.39237372186260727,-2.917577202820487,3.944840158200745,-0.003923737218626073,-0.02917577202820487,0.03944840158200745 +karman_re100,sr,226,90.4,1.009987235069275,-0.36194002628326416,0.9404604434967041,-0.5442966818809509,1.0248805284500122,-0.3712020516395569,0.000357447104761377,-0.0037041816394776106,0.005323173012584448,0.0063239894807338715,-0.004570739343762398,-0.0030998236034065485,-1.1822321827143647,-2.0013313032068476,4.861086057814385,-0.011822321827143647,-0.020013313032068478,0.048610860578143844 +karman_re100,sr,227,90.8,1.0743420124053955,-0.3761026859283447,0.9576271772384644,-0.544996976852417,0.9486476182937622,-0.3793080151081085,0.0025874385610222816,-0.0033604949712753296,0.0054360623471438885,0.005921674892306328,-0.007064661011099815,-0.0019816714338958263,-1.886726709776209,-1.322955974903774,5.539461386117458,-0.01886726709776209,-0.01322955974903774,0.055394613861174585 +karman_re100,sr,228,91.2,1.137736439704895,-0.35795310139656067,0.9665122032165527,-0.5155242681503296,0.8857991695404053,-0.34424200654029846,0.004757041111588478,-0.0025345159228891134,0.004551410209387541,0.005159179680049419,-0.009072544984519482,-0.0017078012460842729,-2.3838344026154545,-0.8548762995662589,6.007541061454973,-0.023838344026154545,-0.008548762995662589,0.06007541061454973 +karman_re100,sr,229,91.6,1.2020695209503174,-0.3183031380176544,0.9611072540283203,-0.44765159487724304,0.8367369771003723,-0.26454105973243713,0.005290836561471224,-0.0012368849711492658,0.003617693204432726,0.004515395034104586,-0.008862946182489395,-0.002659020945429802,-2.5980299027663607,-1.1743837532795487,5.6880336077416835,-0.025980299027663606,-0.011743837532795487,0.05688033607741683 +karman_re100,sr,230,92.0,1.2609392404556274,-0.2474644035100937,0.9354894161224365,-0.314462810754776,0.8055307269096375,-0.14557978510856628,0.004293529782444239,0.00023168310872279108,0.002818061038851738,0.004456253722310066,-0.006353526841849089,-0.00336819002404809,-2.380004475306011,-2.2173425694061466,4.645074791615086,-0.02380004475306011,-0.022173425694061468,0.04645074791615086 +karman_re100,sr,231,92.4,1.3016897439956665,-0.13377989828586578,0.8943257927894592,-0.08938432484865189,0.8020583987236023,-0.005697494838386774,0.0023093316704034805,0.001536875613965094,0.0018628820544108748,0.004800381138920784,-0.003577772295102477,-0.003537375247105956,-1.7489825260557823,-2.7197337369090975,4.142683624112134,-0.017489825260557822,-0.027197337369090975,0.04142683624112135 +karman_re100,sr,232,92.8,1.2908854484558105,0.03229222819209099,0.8733417391777039,0.1943247765302658,0.830567479133606,0.1281842291355133,0.00029020060901530087,0.0026172283105552197,0.0006751743494533002,0.005073705222457647,-0.0011990988859906793,-0.004336515441536903,-1.0375094816058315,-2.605340629694548,4.257076731326684,-0.010375094816058314,-0.02605340629694548,0.042570767313266845 +karman_re100,sr,233,93.2,1.216006875038147,0.20198732614517212,0.8862489461898804,0.41106370091438293,0.879673182964325,0.23846478760242462,-0.00083509786054492,0.003307826817035675,-0.0006565546500496566,0.004896793980151415,0.001268895692192018,-0.005620226263999939,-0.3574158783064584,-2.9491669961478326,3.9132503648733996,-0.0035741587830645837,-0.029491669961478326,0.039132503648733996 +karman_re100,sr,234,93.6,1.118087649345398,0.3152584433555603,0.9143191576004028,0.5096920132637024,0.9411900043487549,0.3132544457912445,-0.0008456326904706657,0.0036331848241388798,-0.002334744669497013,0.004206457640975714,0.003727969713509083,-0.00634548906236887,0.36717513337630353,-3.9042544628235554,2.958162898197677,0.0036717513337630354,-0.03904254462823555,0.02958162898197677 +karman_re100,sr,235,94.0,1.0277676582336426,0.36993926763534546,0.9395605325698853,0.5437684059143066,1.00718355178833,0.36082717776298523,0.0003032479144167155,0.0037091418635100126,-0.004485456272959709,0.003131275996565819,0.0052995760925114155,-0.006324905902147293,1.156133665649887,-4.829901847398303,2.032515513622929,0.011561336656498871,-0.04829901847398303,0.020325155136229293 +karman_re100,sr,236,94.4,0.9517161846160889,0.37953150272369385,0.9575443267822266,0.5455013513565063,1.0722845792770386,0.37634599208831787,0.002505908953025937,0.0033829223830252886,-0.006978672929108143,0.0020182819571346045,0.00546426884829998,-0.005946979392319918,1.865963761859692,-5.519494192275408,1.3429231687458247,0.01865963761859692,-0.05519494192275408,0.013429231687458248 +karman_re100,sr,237,94.8,0.8884986639022827,0.3460513651371002,0.9668357968330383,0.5170494318008423,1.13582181930542,0.35912707448005676,0.004709846805781126,0.0025726426392793655,-0.009031737223267555,0.0017058842349797487,0.004588429816067219,-0.005196297541260719,2.3728157026341825,-6.000148155828816,0.8622692051924159,0.023728157026341824,-0.06000148155828816,0.008622692051924159 +karman_re100,sr,238,95.2,0.838594913482666,0.26786619424819946,0.9615952372550964,0.4509482681751251,1.1999019384384155,0.32032570242881775,0.005293525289744139,0.0012897028354927897,-0.00892702303826809,0.002613866701722145,0.0036399182863533497,-0.004529199562966824,2.5973075179144636,-5.713558155269329,1.1488592057519034,0.025973075179144635,-0.05713558155269329,0.011488592057519034 +karman_re100,sr,239,95.6,0.8061899542808533,0.15012821555137634,0.9362263679504395,0.32042258977890015,1.2587401866912842,0.2508498728275299,0.004344898741692305,-0.00018028292106464505,-0.006472399458289146,0.0033362198155373335,0.00283895549364388,-0.004441073630005121,2.3964618851857633,-4.683627396077477,2.178789964943755,0.023964618851857633,-0.04683627396077477,0.021787899649437552 +karman_re100,sr,240,96.0,0.8013820052146912,0.010647287592291832,0.8949004411697388,0.09887716919183731,1.3004558086395264,0.13899514079093933,0.0023887292481958866,-0.0014939520042389631,-0.0036772489547729492,0.0035113482736051083,0.0019023030763491988,-0.00477769086137414,1.7756355079039412,-4.15366252819622,2.708754832825013,0.017756355079039412,-0.0415366252819622,0.027087548328250128 +karman_re100,sr,241,96.4,0.8293778300285339,-0.1236782819032669,0.8731752038002014,-0.18442949652671814,1.2927459478378296,-0.025697896257042885,0.00035852048313245177,-0.0025893396232277155,-0.001278552459552884,0.004302563611418009,0.0007286423933692276,-0.005070204846560955,1.0639966745764866,-4.25925856642478,2.6031587945964523,0.010639966745764865,-0.0425925856642478,0.026031587945964524 +karman_re100,sr,242,96.8,0.8783357739448547,-0.2350650429725647,0.8855932354927063,-0.40524959564208984,1.2199678421020508,-0.19694262742996216,-0.0008096473175100982,-0.003290623426437378,0.0011885258136317134,0.005598636344075203,-0.0005984366871416569,-0.004924900829792023,0.38276346144345386,-3.933162293476415,2.9292550675448172,0.0038276346144345387,-0.03933162293476415,0.029292550675448174 +karman_re100,sr,243,97.2,0.939373254776001,-0.31104719638824463,0.9134559631347656,-0.5075299739837646,1.1219167709350586,-0.31266364455223083,-0.0008659489685669541,-0.0036224403884261847,0.003651965642347932,0.006349562201648951,-0.0022703493013978004,-0.004249473102390766,-0.34076609516505546,-2.990659163241865,3.8717581977793674,-0.0034076609516505547,-0.02990659163241865,0.03871758197779367 +karman_re100,sr,244,97.6,1.0049079656600952,-0.3595028817653656,0.9386498928070068,-0.5430494546890259,1.030673861503601,-0.3690852224826813,0.00023802231589797884,-0.003709452459588647,0.005259755998849869,0.006329539231956005,-0.0044128005392849445,-0.0031724164728075266,-1.1293600939272508,-2.057979543430144,4.804437817591088,-0.011293600939272508,-0.02057979543430144,0.04804437817591088 +karman_re100,sr,245,98.0,1.0696072578430176,-0.3762909770011902,0.9565536379814148,-0.5458765625953674,0.9537287354469299,-0.3800926208496094,0.0024190261028707027,-0.0034015581477433443,0.0054770116694271564,0.005955892149358988,-0.0068913595750927925,-0.002037983387708664,-1.8445151033314544,-1.3667948593379817,5.4956225016832505,-0.018445151033314545,-0.013667948593379817,0.054956225016832505 +karman_re100,sr,246,98.4,1.1331956386566162,-0.3599177300930023,0.9664552807807922,-0.5183875560760498,0.8902204632759094,-0.34810230135917664,0.004659438040107489,-0.002606595866382122,0.0046299295499920845,0.005220775026828051,-0.008981643244624138,-0.0016902323113754392,-2.3585954214051794,-0.8693238205675109,5.993093540453721,-0.023585954214051796,-0.00869323820567511,0.05993093540453721 +karman_re100,sr,247,98.8,1.1978377103805542,-0.32193028926849365,0.9625334739685059,-0.45397862792015076,0.8404209613800049,-0.2713947296142578,0.005310412030667067,-0.001342178788036108,0.003677976317703724,0.004547120537608862,-0.008967469446361065,-0.0025904688518494368,-2.595668632256613,-1.1226189505418809,5.739798410479351,-0.025956686322566133,-0.011226189505418809,0.05739798410479351 +karman_re100,sr,248,99.2,1.2571295499801636,-0.2537378966808319,0.9382327795028687,-0.3260825276374817,0.8074319362640381,-0.1546926349401474,0.004399464000016451,0.00013239882537163794,0.002871171571314335,0.0044434042647480965,-0.006560230627655983,-0.0033406561706215143,-2.4114323455455384,-2.1517719618725484,4.710645399148683,-0.024114323455455385,-0.021517719618725485,0.04710645399148684 +karman_re100,sr,249,99.6,1.2993757724761963,-0.14363300800323486,0.8967630863189697,-0.1080070212483406,0.8012193441390991,-0.015385253354907036,0.002458189381286502,0.0014496396761387587,0.0019323688466101885,0.004766012541949749,-0.003766797250136733,-0.0034952377900481224,-1.7985280037400364,-2.7101317441799204,4.152285616841311,-0.017985280037400363,-0.027101317441799205,0.041522856168413114 +karman_re100,sr,250,100.0,1.2934848070144653,0.019361980259418488,0.8733564019203186,0.1750359684228897,0.8278113007545471,0.11951705068349838,0.000413331639720127,0.002555386396124959,0.0007627404993399978,0.005058267619460821,-0.0013710228959098458,-0.004240275826305151,-1.0868065645725722,-2.600260642832628,4.262156718188605,-0.010868065645725723,-0.02600260642832628,0.04262156718188605 +karman_re100,sr,251,100.4,1.2222362756729126,0.19151756167411804,0.8844607472419739,0.3997139036655426,0.8759844303131104,0.23193523287773132,-0.0007871562265790999,0.0032746505457907915,-0.0005462271510623395,0.0049259052611887455,0.0010912923607975245,-0.005540798418223858,-0.40689954036010045,-2.896331296188756,3.966086064832476,-0.004068995403601005,-0.02896331296188756,0.03966086064832476 +karman_re100,sr,252,100.8,1.1248812675476074,0.30945685505867004,0.912476122379303,0.5054469108581543,0.9371464252471924,0.30901938676834106,-0.0008806745754554868,0.0036179297603666782,-0.002193921245634556,0.0042777289636433125,0.003578569507226348,-0.006338941864669323,0.3122679572579586,-3.833281716235757,3.0291356447854754,0.003122679572579586,-0.03833281716235757,0.030291356447854755 +karman_re100,sr,253,101.2,1.0336823463439941,0.3677559792995453,0.9383196234703064,0.5424017310142517,1.0031582117080688,0.3583446145057678,0.0001806137734092772,0.003712681122124195,-0.004320175386965275,0.0032230711076408625,0.0052318330854177475,-0.006350368726998568,1.1007892624369473,-4.779017025601741,2.083400335419491,0.011007892624369473,-0.04779017025601741,0.02083400335419491 +karman_re100,sr,254,101.6,0.9561721682548523,0.38029250502586365,0.9563435912132263,0.546354353427887,1.0678987503051758,0.37638846039772034,0.002325942274183035,0.003422057256102562,-0.006801200564950705,0.00207983935251832,0.005489008501172066,-0.005983734503388405,1.8215271035115588,-5.476120114383276,1.3862972466379562,0.01821527103511559,-0.05476120114383276,0.013862972466379561 +karman_re100,sr,255,102.0,0.8918601870536804,0.349908709526062,0.9662070274353027,0.5199878215789795,1.1311782598495483,0.3609108626842499,0.004593576304614544,0.0026429893914610147,-0.008939871564507484,0.0016736589604988694,0.004655955825001001,-0.005249792709946632,2.3436902287609724,-5.983930167982559,0.8784871930386728,0.023436902287609723,-0.059839301679825596,0.008784871930386729 +karman_re100,sr,256,102.4,0.8411612510681152,0.27479615807533264,0.9624135494232178,0.4573826193809509,1.19545316696167,0.3236679136753082,0.0053137014620006084,0.001392683363519609,-0.009023645892739296,0.0025358074344694614,0.0037014754489064217,-0.004555479623377323,2.592666050941654,-5.769609972423977,1.092807388597255,0.02592666050941654,-0.05769609972423977,0.010928073885972549 +karman_re100,sr,257,102.8,0.8075116872787476,0.15942586958408356,0.9388963580131531,0.332256555557251,1.2551826238632202,0.2567022442817688,0.004454152658581734,-8.527648606104776e-05,-0.006664267275482416,0.0033306600525975227,0.0029018507339060307,-0.004433112684637308,2.426626136932052,-4.7518539322473385,2.1105634287738937,0.024266261369320523,-0.04751853932247339,0.02110563428773894 +karman_re100,sr,258,103.2,0.8007332682609558,0.02050606906414032,0.8980677127838135,0.117416612803936,1.299026370048523,0.1482049524784088,0.002539093606173992,-0.001409532967954874,-0.003843889804556966,0.0035040592774748802,0.00197779992595315,-0.004757384769618511,1.8242177317859878,-4.152092416873446,2.710324944147786,0.01824217731785988,-0.04152092416873446,0.02710324944147786 +karman_re100,sr,259,103.6,0.8265795707702637,-0.11491860449314117,0.8737882375717163,-0.1655849814414978,1.295770287513733,-0.01328270323574543,0.00047212696517817676,-0.002523744013160467,-0.0014357976615428925,0.004223150201141834,0.0008088171598501503,-0.005064425058662891,1.1101712967506943,-4.250746806138382,2.61167055488285,0.011101712967506942,-0.04250746806138382,0.0261167055488285 +karman_re100,sr,260,104.0,0.8740237355232239,-0.22847245633602142,0.8838332891464233,-0.3942023813724518,1.2260491847991943,-0.18642087280750275,-0.0007694650557823479,-0.003254576353356242,0.0010072364239022136,0.0055021001026034355,-0.0005048636230640113,-0.004946050234138966,0.4280384325382785,-3.9813106485886434,2.881106712432589,0.004280384325382785,-0.039813106485886436,0.02881106712432589 +karman_re100,sr,261,104.4,0.9344720244407654,-0.3068258464336395,0.9113224744796753,-0.5034422874450684,1.1284804344177246,-0.3064922094345093,-0.0008985663298517466,-0.003608501283451915,0.003497189376503229,0.006314092315733433,-0.0021417138632386923,-0.004301006905734539,-0.2883510024863842,-3.0676127353124363,3.794804625708796,-0.002883510024863842,-0.030676127353124364,0.03794804625708796 +karman_re100,sr,262,104.8,1.0001474618911743,-0.35705697536468506,0.9371289610862732,-0.5417470932006836,1.0365700721740723,-0.36650699377059937,0.0001291217777179554,-0.0037137398030608892,0.005196863319724798,0.006343134678900242,-0.004246432334184647,-0.003251305315643549,-1.075314695853337,-2.114870463518513,4.747546897502719,-0.01075314695853337,-0.02114870463518513,0.04747546897502719 +karman_re100,sr,263,105.2,1.0652960538864136,-0.37645599246025085,0.9557347297668457,-0.5467269420623779,0.9589477777481079,-0.3804910182952881,0.0022492441348731518,-0.003441516077145934,0.005511569790542126,0.005998576059937477,-0.006714205723255873,-0.0021080696024000645,-1.8007960346561152,-1.4094896163029134,5.452927744718319,-0.01800796034656115,-0.014094896163029134,0.05452927744718319 +karman_re100,sr,264,105.6,1.1290696859359741,-0.36194679141044617,0.9664223194122314,-0.5212868452072144,0.8946639895439148,-0.35161545872688293,0.004544186405837536,-0.00267849862575531,0.004699835553765297,0.005283798091113567,-0.00888665672391653,-0.0016744142631068826,-2.331403026307746,-0.8872419376818189,5.975175423339413,-0.023314030263077462,-0.008872419376818189,0.059751754233394135 +karman_re100,sr,265,106.0,1.1933456659317017,-0.3255455791950226,0.963155210018158,-0.4602813422679901,0.8434336185455322,-0.27799972891807556,0.00532379187643528,-0.0014441703679040074,0.0037313327193260193,0.00457562692463398,-0.009068784303963184,-0.002504607429727912,-2.590885885099493,-1.0710654650267482,5.7913518959944845,-0.02590885885099493,-0.010710654650267482,0.05791351895994484 +karman_re100,sr,266,106.4,1.2531083822250366,-0.25991958379745483,0.9400849342346191,-0.3376424312591553,0.8087556958198547,-0.16379842162132263,0.00450546108186245,3.277503128629178e-05,0.0029232287779450417,0.004426030907779932,-0.006773482076823711,-0.003305085701867938,-2.44092749220774,-2.0769878929872307,4.7854294680340015,-0.024409274922077402,-0.020769878929872306,0.04785429468034002 +karman_re100,sr,267,106.8,1.2974551916122437,-0.15320736169815063,0.8990544676780701,-0.12642699480056763,0.8004491329193115,-0.025305338203907013,0.002614340279251337,0.0013629563618451357,0.0020088949240744114,0.004734095185995102,-0.003948757890611887,-0.003472343785688281,-1.8491212280582832,-2.6982328184994504,4.164184542521782,-0.01849121228058283,-0.026982328184994506,0.041641845425217816 +karman_re100,sr,268,107.2,1.2965631484985352,0.006654093973338604,0.8734921216964722,0.15549910068511963,0.825178861618042,0.11051304638385773,0.000537356361746788,0.002490994753316045,0.0008545531309209764,0.0050511108711361885,-0.001526452018879354,-0.0041688536293804646,-1.1360988745601133,-2.6061609302673308,4.2562564307539015,-0.011360988745601134,-0.02606160930267331,0.04256256430753901 +karman_re100,sr,269,107.6,1.2292182445526123,0.18104015290737152,0.8829312920570374,0.3878563940525055,0.8724983334541321,0.2250373214483261,-0.0007382995099760592,0.003238155273720622,-0.0004444691294338554,0.004960647784173489,0.0009187353425659239,-0.00547050079330802,-0.45404748399264094,-2.854308704596659,4.008108656424573,-0.00454047483992641,-0.02854308704596659,0.040081086564245735 +karman_re100,sr,270,108.0,1.1321024894714355,0.30363741517066956,0.9105009436607361,0.5010112524032593,0.9328610897064209,0.30456602573394775,-0.0009122146875597537,0.0036017096135765314,-0.0020689493976533413,0.004343021661043167,0.003422248875722289,-0.006317764986306429,0.25995725407436515,-3.764596920094835,3.097820440926397,0.0025995725407436518,-0.03764596920094835,0.030978204409263972 +karman_re100,sr,271,108.4,1.0395097732543945,0.36555495858192444,0.9364498853683472,0.5409609079360962,0.9982967972755432,0.3556542992591858,6.699479854432866e-05,0.003713771002367139,-0.0041664657182991505,0.0033024605363607407,0.005154647398740053,-0.006358497776091099,1.0471479914018762,-4.722475357464738,2.139942003556494,0.010471479914018762,-0.04722475357464738,0.021399420035564942 +karman_re100,sr,272,108.8,0.9610196948051453,0.3809855282306671,0.9550238847732544,0.5470694899559021,1.0631158351898193,0.37626439332962036,0.0021556306164711714,0.0034582840744405985,-0.006629477720707655,0.0021396740339696407,0.0055153099820017815,-0.0060126036405563354,1.7774963481945287,-5.4295236010933134,1.4328937599279186,0.017774963481945287,-0.05429523601093313,0.014328937599279185 +karman_re100,sr,273,109.2,0.895987868309021,0.3536252975463867,0.9658434987068176,0.5226802229881287,1.1265300512313843,0.36265280842781067,0.004477097187191248,0.0027125489432364702,-0.00883274246007204,0.001657711691223085,0.004733625799417496,-0.005306897684931755,2.315958997611749,-5.963682080570208,0.8987352804510246,0.02315958997611749,-0.05963682080570208,0.008987352804510245 +karman_re100,sr,274,109.6,0.8445451855659485,0.2815224230289459,0.9635375142097473,0.46332377195358276,1.1910107135772705,0.3269692659378052,0.005327127408236265,0.0014909229939803481,-0.009103475138545036,0.002466532401740551,0.0037667977157980204,-0.004590668249875307,2.5870483210233304,-5.817378169679814,1.0450391913414183,0.025870483210233303,-0.05817378169679814,0.010450391913414183 +karman_re100,sr,275,110.0,0.8096498847007751,0.1684834510087967,0.9418489933013916,0.3433232009410858,1.2515407800674438,0.2625564634799957,0.004555796273052692,1.3148536709195469e-05,-0.006862414535135031,0.003310731379315257,0.0029584874864667654,-0.0044274949468672276,2.4543059087055314,-4.820161767694458,2.0422555933267748,0.024543059087055313,-0.04820161767694458,0.020422555933267746 +karman_re100,sr,276,110.4,0.8002740740776062,0.030216071754693985,0.9011317491531372,0.13541533052921295,1.2966734170913696,0.15741799771785736,0.00268918345682323,-0.001316630863584578,-0.004029812291264534,0.0034779023844748735,0.002046504756435752,-0.0047288937494158745,1.8728039516506207,-4.161450207279174,2.700967153742058,0.018728039516506208,-0.041614502072791736,0.027009671537420583 +karman_re100,sr,277,110.8,0.8237448930740356,-0.10620028525590897,0.8742133378982544,-0.14610806107521057,1.2976306676864624,-0.0006308055017143488,0.0005988741759210825,-0.0024539458099752665,-0.0016103108646348119,0.004127698019146919,0.0008899558451958001,-0.005047133192420006,1.1587276355455467,-4.249220541616827,2.6131968194044055,0.011587276355455468,-0.04249220541616827,0.026131968194044057 +karman_re100,sr,278,111.2,0.8701648116111755,-0.2217899113893509,0.882225513458252,-0.38218003511428833,1.2317780256271362,-0.1755133867263794,-0.0007161265821196139,-0.003218132769688964,0.0008228966034948826,0.005408668890595436,-0.0004030466952826828,-0.004965009167790413,0.47679015268167246,-4.0324189672747455,2.8299983937464868,0.0047679015268167245,-0.04032418967274746,0.028299983937464867 +karman_re100,sr,279,111.6,0.930115282535553,-0.3025195300579071,0.9093406200408936,-0.49888867139816284,1.134966492652893,-0.30012714862823486,-0.0009238498168997467,-0.003594696521759033,0.003340701572597027,0.006291469559073448,-0.0020036641508340836,-0.004362103529274464,-0.23378213624370836,-3.141103628053504,3.7213137329677277,-0.0023378213624370837,-0.03141103628053504,0.03721313732967728 +karman_re100,sr,280,112.0,0.9959918856620789,-0.35446128249168396,0.935851514339447,-0.5402831435203552,1.0424790382385254,-0.36389195919036865,1.7486867363913916e-05,-0.00371632375754416,0.005122516769915819,0.006366584450006485,-0.004079010337591171,-0.003342341398820281,-1.0191476530254036,-2.169613803822238,4.692803557198994,-0.010191476530254037,-0.02169613803822238,0.04692803557198994 +karman_re100,sr,281,112.4,1.0612624883651733,-0.3763617277145386,0.9548904895782471,-0.5474556088447571,0.963827908039093,-0.3808673918247223,0.0020732705015689135,-0.003476778045296669,0.005531737115234137,0.006038767751306295,-0.006535690277814865,-0.0021826396696269512,-1.754691808375127,-1.4536836902761523,5.40873367074508,-0.01754691808375127,-0.014536836902761523,0.0540873367074508 +karman_re100,sr,282,112.8,1.124626874923706,-0.3637329339981079,0.9658126831054688,-0.5241110324859619,0.8982012867927551,-0.35509154200553894,0.004412481561303139,-0.0027462528087198734,0.004765640012919903,0.005341576877981424,-0.008780188858509064,-0.0016562358941882849,-2.301206717901158,-0.9097216445811496,5.952695716440083,-0.02301206717901158,-0.009097216445811495,0.059526957164400825 +karman_re100,sr,283,113.2,1.1888337135314941,-0.32880616188049316,0.9636149406433105,-0.4664052128791809,0.8459292054176331,-0.2845975160598755,0.005326523911207914,-0.0015430886996909976,0.0037893534172326326,0.004605084657669067,-0.009154300205409527,-0.002417277544736862,-2.583131547692356,-1.0213977725785734,5.841019588442659,-0.025831315476923564,-0.010213977725785734,0.05841019588442659 +karman_re100,sr,284,113.6,1.249404788017273,-0.2655881643295288,0.9422469139099121,-0.3489512503147125,0.8100217580795288,-0.1729235202074051,0.004600838292390108,-6.590930570382625e-05,0.0029829759150743484,0.0044165123254060745,-0.0069732628762722015,-0.003283769590780139,-2.4682993069232753,-2.000621533112135,4.861795827909097,-0.024682993069232752,-0.02000621533112135,0.04861795827909097 +karman_re100,sr,285,114.0,1.2956631183624268,-0.16204729676246643,0.901917040348053,-0.14444410800933838,0.7997295260429382,-0.0352671854197979,0.0027682078070938587,0.001277472241781652,0.0020868524443358183,0.004711977206170559,-0.004122292622923851,-0.003469947027042508,-1.898612093980531,-2.690518521910201,4.171898839111031,-0.018986120939805312,-0.02690518521910201,0.04171898839111031 +karman_re100,sr,286,114.4,1.2994860410690308,-0.005580741912126541,0.8743991255760193,0.13617807626724243,0.8226209282875061,0.10150857269763947,0.0006639253115281463,0.0024226815439760685,0.0009404185693711042,0.00504616554826498,-0.0016841543838381767,-0.004105689935386181,-1.1840573699603256,-2.619056457200479,4.243360903820753,-0.011840573699603257,-0.02619056457200479,0.04243360903820753 +karman_re100,sr,287,114.8,1.2356634140014648,0.17027263343334198,0.8815619945526123,0.37588435411453247,0.8685621023178101,0.21809890866279602,-0.0006882724701426923,0.0031987095717340708,-0.00035285070771351457,0.00498679094016552,0.000740780436899513,-0.005379973445087671,-0.5004948208783769,-2.816240241897714,4.046177119123518,-0.005004948208783769,-0.02816240241897714,0.04046177119123518 +karman_re100,sr,288,115.2,1.1388746500015259,0.2971988022327423,0.9083093404769897,0.4964963495731354,0.9279237985610962,0.300124853849411,-0.0009388512116856873,0.003584775608032942,-0.0019477743189781904,0.0043953340500593185,0.003257329808548093,-0.006278051063418388,0.2085507751502253,-3.6883071398760325,3.1741102211451993,0.002085507751502253,-0.03688307139876033,0.031741102211451995 +karman_re100,sr,289,115.6,1.0455454587936401,0.3627738058567047,0.9347700476646423,0.5394887328147888,0.9933427572250366,0.35296061635017395,-3.8142312405398116e-05,0.0037147102411836386,-0.004007261246442795,0.0033758780919015408,0.005075845867395401,-0.006362965330481529,0.9925910631571755,-4.662300190168488,2.200117170852744,0.009925910631571755,-0.046623001901684884,0.02200117170852744 +karman_re100,sr,290,116.0,0.9662497639656067,0.38116323947906494,0.9539698958396912,0.5477054715156555,1.0584757328033447,0.37614554166793823,0.0019880146719515324,0.003494901116937399,-0.0064503769390285015,0.0022100245114415884,0.005542006343603134,-0.006046457216143608,1.7321096227867216,-5.384437823249476,1.4779795377717562,0.017321096227867216,-0.05384437823249476,0.014779795377717562 +karman_re100,sr,291,116.4,0.9005774855613708,0.35687321424484253,0.9656946659088135,0.5253171324729919,1.1222068071365356,0.36453181505203247,0.004349974449723959,0.0027774914633482695,-0.008717524819076061,0.0016557121416553855,0.0048098196275532246,-0.005369413644075394,2.286896127465716,-5.9398170887949036,0.9226002722263286,0.02286896127465716,-0.059398170887949034,0.009226002722263286 +karman_re100,sr,292,116.8,0.8481541275978088,0.28784891963005066,0.9644796848297119,0.4690909683704376,1.1867115497589111,0.33037039637565613,0.005328021012246609,0.0015924166655167937,-0.009179634042084217,0.002388047520071268,0.003826353931799531,-0.004628240596503019,2.5796066470536276,-5.8595642733014515,1.0028530877197803,0.025796066470536276,-0.058595642733014514,0.010028530877197803 +karman_re100,sr,293,117.2,0.8114732503890991,0.17734138667583466,0.9438732862472534,0.35409557819366455,1.2474743127822876,0.2684623897075653,0.004649719689041376,0.00011575071403058246,-0.007070373743772507,0.0032720856834203005,0.003009514883160591,-0.004417748656123877,2.4801862007210187,-4.896050532377123,1.9663668286441098,0.024801862007210188,-0.048960505323771226,0.0196636682864411 +karman_re100,sr,294,117.6,0.7997918128967285,0.040063414722681046,0.9036357402801514,0.15313176810741425,1.2941551208496094,0.1666250377893448,0.0028406602796167135,-0.0012301133247092366,-0.004228918347507715,0.00344410864636302,0.0021153083071112633,-0.00469612143933773,1.9221915880227363,-4.1803472651290035,2.682070095892229,0.019221915880227362,-0.04180347265129004,0.026820700958922288 +karman_re100,sr,295,118.0,0.8212325572967529,-0.09715253114700317,0.8746236562728882,-0.1261221319437027,1.2997936010360718,0.012056747451424599,0.0007286997861228883,-0.002388018649071455,-0.001776647288352251,0.004051491618156433,0.0009784749709069729,-0.005030232015997171,1.2098168501023026,-4.24988844410621,2.6125289169150223,0.012098168501023026,-0.0424988844410621,0.026125289169150225 +karman_re100,sr,296,118.4,0.8666261434555054,-0.2146839201450348,0.8806473612785339,-0.36925116181373596,1.2381097078323364,-0.16447775065898895,-0.0006538985762745142,-0.003180572297424078,0.0006479363655671477,0.005329474341124296,-0.00029927148716524243,-0.004990881308913231,0.525390014386855,-4.071198113543429,2.7912192474778035,0.00525390014386855,-0.04071198113543429,0.027912192474778035 +karman_re100,sr,297,118.8,0.9260668158531189,-0.29789671301841736,0.9074645042419434,-0.4938623905181885,1.142181634902954,-0.2937660813331604,-0.0009457830456085503,-0.003577173687517643,0.0031795999966561794,0.006270969286561012,-0.0018734363839030266,-0.004427964333444834,-0.18062848053364342,-3.2098057802199085,3.6526115808013238,-0.0018062848053364343,-0.032098057802199084,0.03652611580801324 +karman_re100,sr,298,119.2,0.9915755987167358,-0.3515717685222626,0.9342656135559082,-0.5386048555374146,1.0485728979110718,-0.36133673787117004,-9.086278441827744e-05,-0.0037138061597943306,0.005035320296883583,0.006382658611983061,-0.003920756746083498,-0.003427892690524459,-0.963592395131354,-2.2260845253989374,4.636332835622294,-0.00963592395131354,-0.022260845253989376,0.04636332835622294 +karman_re100,sr,299,119.6,1.0566023588180542,-0.3759528696537018,0.9535363912582397,-0.5479509234428406,0.9685905575752258,-0.3812499940395355,0.0018964516930282116,-0.003511665156111121,0.005544101819396019,0.00606832280755043,-0.006362783722579479,-0.0022528506815433502,-1.7078855323536228,-1.4991141526962295,5.363303208325003,-0.01707885532353623,-0.014991141526962294,0.05363303208325003 +karman_re100,sr,300,120.0,1.1200041770935059,-0.3652990758419037,0.965243399143219,-0.5266373157501221,0.9021193981170654,-0.3585022985935211,0.004278738982975483,-0.0028114705346524715,0.004837083630263805,0.0053963931277394295,-0.008659681305289268,-0.0016470829723402858,-2.270592074517645,-0.9363062037528181,5.926111157268414,-0.022705920745176453,-0.009363062037528182,0.05926111157268414 +karman_re100,sr,301,120.4,1.1842715740203857,-0.33183079957962036,0.9643993377685547,-0.47200334072113037,0.8490219712257385,-0.2910713851451874,0.005324432626366615,-0.0016421895707026124,0.0038556659128516912,0.004642152227461338,-0.00921265035867691,-0.0023398571647703648,-2.5737752652663843,-0.9795689138147736,5.882848447206459,-0.025737752652663842,-0.009795689138147736,0.05882848447206459 +karman_re100,sr,302,120.8,1.245643138885498,-0.2710607647895813,0.9449162483215332,-0.3595733344554901,0.8120136260986328,-0.18189166486263275,0.0046965195797383785,-0.00016362591122742742,0.0030421027913689613,0.004415182862430811,-0.007163611240684986,-0.0032657908741384745,-2.492071940123793,-1.925758905374636,4.936658455646596,-0.024920719401237933,-0.01925758905374636,0.04936658455646597 +karman_re100,sr,303,121.2,1.2934424877166748,-0.17071685194969177,0.9053891897201538,-0.16192646324634552,0.7996252179145813,-0.04510173201560974,0.002915108110755682,0.0011862115934491158,0.0021568562369793653,0.004689090419560671,-0.004299689084291458,-0.0034590440336614847,-1.9461859538569581,-2.679631726557841,4.182785634463391,-0.019461859538569583,-0.02679631726557841,0.041827856344633915 +karman_re100,sr,304,121.6,1.301160454750061,-0.01793425902724266,0.8753585815429688,0.1164708063006401,0.8199905157089233,0.09259318560361862,0.0007907585240900517,0.0023545389994978905,0.0010200035758316517,0.005030710715800524,-0.001848338870331645,-0.004026077222079039,-1.2312355387611469,-2.626892550459778,4.235524810561454,-0.01231235538761147,-0.02626892550459778,0.04235524810561454 +karman_re100,sr,305,122.0,1.2412482500076294,0.15895158052444458,0.8801209330558777,0.36304599046707153,0.8645908236503601,0.2111203372478485,-0.000631358998361975,0.0031584864482283592,-0.0002603940956760198,0.00500151515007019,0.0005594981485046446,-0.005279111210256815,-0.5469806190965011,-2.7742879878825706,4.088129373138662,-0.005469806190965011,-0.027742879878825705,0.04088129373138662 +karman_re100,sr,306,122.4,1.1454488039016724,0.29025232791900635,0.9062696695327759,0.49147167801856995,0.9233425855636597,0.2956331968307495,-0.0009558455785736442,0.0035686208866536617,-0.0018194877775385976,0.004445966333150864,0.0030951397493481636,-0.006238330155611038,0.15634993928783775,-3.612726216276917,3.2496911447443146,0.0015634993928783775,-0.03612726216276917,0.03249691144744315 +karman_re100,sr,307,122.8,1.0515227317810059,0.35965630412101746,0.9332400560379028,0.5378044247627258,0.9888061285018921,0.35017895698547363,-0.00013619307719636708,0.003714918391779065,-0.003841608064249158,0.0034577695187181234,0.004995203111320734,-0.006379408296197653,0.9371984195544639,-4.6032190614609565,2.2591982995602757,0.00937198419554464,-0.046032190614609565,0.022591982995602757 +karman_re100,sr,308,123.2,0.9714993238449097,0.38106995820999146,0.9531301259994507,0.5481858253479004,1.054354190826416,0.3758481740951538,0.0018195430748164654,0.00352572207339108,-0.0062721348367631435,0.0022888444364070892,0.005557931028306484,-0.006084960885345936,1.685142042268171,-5.3416416705567284,1.5207756904645038,0.01685142042268171,-0.053416416705567286,0.015207756904645039 +karman_re100,sr,309,123.6,0.9047530889511108,0.35985931754112244,0.9652729034423828,0.5278834104537964,1.118014931678772,0.36627715826034546,0.004211525432765484,0.0028412046376615763,-0.00859824288636446,0.0016549392603337765,0.004875139333307743,-0.005430853459984064,2.2559428911577672,-5.913454656300237,0.9489627047209948,0.022559428911577674,-0.05913454656300237,0.009489627047209948 +karman_re100,sr,310,124.0,0.8510130047798157,0.293990820646286,0.9647372364997864,0.4747408628463745,1.1821633577346802,0.33356261253356934,0.0053179217502474785,0.00169709965121001,-0.009245987981557846,0.0023020044900476933,0.003883042838424444,-0.004662976134568453,2.5693162814983252,-5.900244589466686,0.9621727715545458,0.025693162814983253,-0.05900244589466686,0.009621727715545458 +karman_re100,sr,311,124.4,0.8130278587341309,0.1861570179462433,0.9455875158309937,0.3647293448448181,1.2435424327850342,0.2740108072757721,0.004737194627523422,0.00021567087969742715,-0.007271504029631615,0.0032332036644220352,0.0030634161084890366,-0.00440867617726326,2.5036499444676554,-4.9750265381538625,1.8873908228673697,0.025036499444676556,-0.04975026538153863,0.018873908228673696 +karman_re100,sr,312,124.8,0.7993433475494385,0.0500294491648674,0.9061763286590576,0.1704825460910797,1.2919220924377441,0.17526564002037048,0.0029904090333729982,-0.001143275760114193,-0.004405084066092968,0.003442894434556365,0.0021900562569499016,-0.00466807559132576,1.9708250048816873,-4.199839451957861,2.6625779090633706,0.019708250048816874,-0.04199839451957861,0.026625779090633708 +karman_re100,sr,313,125.2,0.8188307285308838,-0.08792481571435928,0.8753710985183716,-0.10628481209278107,1.302156925201416,0.024277187883853912,0.0008644850458949804,-0.0023180642165243626,-0.0019303517183288932,0.003990904428064823,0.001067041652277112,-0.005021451041102409,1.2576650119833406,-4.232343481539766,2.6300738794814666,0.012576650119833405,-0.04232343481539766,0.026300738794814666 +karman_re100,sr,314,125.6,0.8631379008293152,-0.20736613869667053,0.8793997168540955,-0.3560713827610016,1.244739294052124,-0.15336017310619354,-0.0005946351448073983,-0.0031368464697152376,0.0004765356716234237,0.005247350316494703,-0.00020529238099697977,-0.005017396993935108,0.5715900776501922,-4.105073725875926,2.7573436351453067,0.005715900776501922,-0.041050737258759254,0.027573436351453068 +karman_re100,sr,315,126.0,0.9214910864830017,-0.29315802454948425,0.9053031206130981,-0.48866748809814453,1.1493260860443115,-0.28707534074783325,-0.0009628052357584238,-0.003558560973033309,0.003013625042513013,0.006231625098735094,-0.001756956335157156,-0.004482522141188383,-0.13002168929952024,-3.2808442970095335,3.5815730640116983,-0.0013002168929952024,-0.03280844297009534,0.035815730640116984 +karman_re100,sr,316,126.4,0.9866242408752441,-0.3485878109931946,0.9323620796203613,-0.536864697933197,1.0547077655792236,-0.3584320843219757,-0.00018814887152984738,-0.0037122888024896383,0.0049441419541835785,0.006384320091456175,-0.0037675604689866304,-0.003496916964650154,-0.9097294358623844,-2.2874861851625843,4.574931175858648,-0.009097294358623845,-0.022874861851625843,0.04574931175858648 +karman_re100,sr,317,126.8,1.0518542528152466,-0.3754619359970093,0.9522610306739807,-0.5483253598213196,0.9738252758979797,-0.3812849521636963,0.0017359358025714755,-0.003539746394380927,0.005557384341955185,0.006092737428843975,-0.006188525352627039,-0.00232124887406826,-1.6612843390383825,-1.5431620706654092,5.319255290355823,-0.016612843390383825,-0.015431620706654093,0.05319255290355823 +karman_re100,sr,318,127.2,1.115444302558899,-0.3669287860393524,0.9647679924964905,-0.5290189385414124,0.9065913558006287,-0.36154553294181824,0.0041429405100643635,-0.0028734419029206038,0.0049109929241240025,0.0054542869329452515,-0.008532004430890083,-0.001653765793889761,-2.2398946698947992,-0.9650666604349181,5.897350700586314,-0.022398946698947993,-0.00965066660434918,0.05897350700586314 +karman_re100,sr,319,127.6,1.1798995733261108,-0.3349313735961914,0.9652745723724365,-0.4772834777832031,0.8527654409408569,-0.29718607664108276,0.0053140753880143166,-0.0017396163893863559,0.003920701332390308,0.004684275481849909,-0.009261073544621468,-0.0022702496498823166,-2.5635220179493228,-0.9460825179660031,5.916334843055229,-0.02563522017949323,-0.00946082517966003,0.05916334843055229 +karman_re100,sr,320,128.0,1.2417190074920654,-0.2765882611274719,0.9472070932388306,-0.3696669638156891,0.8143429756164551,-0.19056835770606995,0.004782719537615776,-0.00026777395396493375,0.003094997489824891,0.004412942100316286,-0.007357664871960878,-0.003226545173674822,-2.5137080102353044,-1.852699172845542,5.0097181881756905,-0.025137080102353045,-0.01852699172845542,0.05009718188175691 +karman_re100,sr,321,128.4,1.2905911207199097,-0.17942723631858826,0.9082134962081909,-0.1788707971572876,0.7994967103004456,-0.05489248409867287,0.0030554498080164194,0.001098753185942769,0.002221717033535242,0.0046586524695158005,-0.00449682492762804,-0.0034363202285021544,-1.9932779426333462,-2.6554345343649772,4.2069828266562554,-0.019932779426333463,-0.026554345343649772,0.04206982826656255 +karman_re100,sr,322,128.8,1.302467703819275,-0.03038879483938217,0.8761261701583862,0.09633084386587143,0.8175923228263855,0.08351759612560272,0.0009272426832467318,0.0022916037123650312,0.0011026953579857945,0.00500835943967104,-0.002018891042098403,-0.003946575801819563,-1.281197175831807,-2.6319367595498715,4.230480601471361,-0.01281197175831807,-0.026319367595498716,0.042304806014713606 +karman_re100,sr,323,129.2,1.246928334236145,0.147449791431427,0.8786488175392151,0.3492497205734253,0.8610156774520874,0.20385855436325073,-0.0005663339397870004,0.0031167776323854923,-0.00016063719522207975,0.005018357187509537,0.0003819753183051944,-0.005187239032238722,-0.5952731564409818,-2.7369180290863584,4.125499331934874,-0.005952731564409818,-0.027369180290863583,0.04125499331934874 +karman_re100,sr,324,129.6,1.1523131132125854,0.2833143174648285,0.9042543768882751,0.4859064221382141,0.9191776514053345,0.2908802330493927,-0.0009678078349679708,0.0035509688314050436,-0.0016902516363188624,0.00450472766533494,0.002932613715529442,-0.006205942016094923,0.10347388226801704,-3.5416389808192728,3.3207783802019595,0.0010347388226801704,-0.03541638980819273,0.033207783802019594 +karman_re100,sr,325,130.0,1.0577387809753418,0.3566794991493225,0.9318015575408936,0.5359323620796204,0.9846151471138,0.3471461832523346,-0.0002338126505492255,0.0037121050991117954,-0.0036847908049821854,0.003544081700965762,0.004901529755443335,-0.0063959513790905476,0.8815606224201146,-4.543617251988964,2.318800109032268,0.008815606224201146,-0.04543617251988964,0.02318800109032268 +karman_re100,sr,326,130.4,0.9764288067817688,0.38110196590423584,0.9519708156585693,0.548490583896637,1.0500011444091797,0.3752124011516571,0.0016500347992405295,0.0035552182234823704,-0.006096075288951397,0.0023657677229493856,0.005561992060393095,-0.006116829346865416,1.6373745548355596,-5.296020291856349,1.5663970691648834,0.016373745548355596,-0.052960202918563494,0.015663970691648835 +karman_re100,sr,327,130.8,0.9085579514503479,0.36291003227233887,0.9645586609840393,0.5302582383155823,1.1134780645370483,0.36773011088371277,0.004064641892910004,0.0029031038284301758,-0.008469557389616966,0.0016542135272175074,0.004940633662045002,-0.0054856110364198685,2.2231435108951856,-5.883993716519516,0.9784236445017158,0.022231435108951855,-0.05883993716519516,0.009784236445017159 +karman_re100,sr,328,131.2,0.8539382815361023,0.3001481294631958,0.9652342796325684,0.47999995946884155,1.1776081323623657,0.3364168107509613,0.005303813144564629,0.0017869800794869661,-0.009291620925068855,0.0022202064283192158,0.003946717828512192,-0.004700377583503723,2.55726599641263,-5.936524620311795,0.9258927407094375,0.0255726599641263,-0.05936524620311795,0.009258927407094376 +karman_re100,sr,329,131.6,0.8147988319396973,0.19493845105171204,0.947777509689331,0.3748413026332855,1.239604115486145,0.2791800796985626,0.004821487702429295,0.00031546171521767974,-0.007460223510861397,0.0032027217093855143,0.0031225946731865406,-0.004407694563269615,2.524494499228535,-5.052970012660261,1.809447348360972,0.025244944992285353,-0.05052970012660261,0.01809447348360972 +karman_re100,sr,330,132.0,0.799272358417511,0.059933457523584366,0.9095679521560669,0.18734537065029144,1.2895479202270508,0.1834639608860016,0.0031416781712323427,-0.0010552987223491073,-0.0045860530808568,0.0034443228505551815,0.002261473797261715,-0.004646508954465389,2.0180981004688245,-4.2191294563144375,2.6432879047067943,0.020180981004688247,-0.042191294563144376,0.026432879047067943 +karman_re100,sr,331,132.4,0.8165105581283569,-0.07881394028663635,0.8768383860588074,-0.08642247319221497,1.303723931312561,0.036227770149707794,0.0009970295941457152,-0.00224431324750185,-0.002089170040562749,0.003927240148186684,0.0011488569434732199,-0.005007950589060783,1.3057940470403528,-4.217307225884662,2.6451101351365702,0.01305794047040353,-0.042173072258846624,0.0264511013513657 +karman_re100,sr,332,132.8,0.8592739105224609,-0.20008371770381927,0.8782527446746826,-0.3424469232559204,1.2502851486206055,-0.14185237884521484,-0.00053221988491714,-0.0030946016777306795,0.00029943924164399505,0.005148263648152351,-0.00011680294846883044,-0.0050327591598033905,0.6174778770743535,-4.137875396070262,2.72454196495097,0.0061747787707435355,-0.04137875396070262,0.027245419649509703 +karman_re100,sr,333,133.2,0.9168031811714172,-0.28843215107917786,0.9032634496688843,-0.48315611481666565,1.1559759378433228,-0.2797624170780182,-0.000975209753960371,-0.0035401894710958004,0.0028385818004608154,0.006176093593239784,-0.0016381059540435672,-0.004528444726020098,-0.07937560284914287,-3.355681347446322,3.5067360135749097,-0.0007937560284914287,-0.033556813474463223,0.0350673601357491 +karman_re100,sr,334,133.6,0.9818546772003174,-0.3455948531627655,0.9307133555412292,-0.5349934697151184,1.0607821941375732,-0.3550078570842743,-0.00027844199212267995,-0.0037101260386407375,0.004851675126701593,0.006391072180122137,-0.003613631473854184,-0.0035743501503020525,-0.853685180699351,-2.353826090913381,4.508591270107852,-0.00853685180699351,-0.02353826090913381,0.04508591270107852 +karman_re100,sr,335,134.0,1.047407865524292,-0.3748796880245209,0.951250433921814,-0.5485600233078003,0.9791267514228821,-0.3808903992176056,0.0015718821668997407,-0.0035693617537617683,0.005568551830947399,0.00612642103806138,-0.006008887197822332,-0.002397487871348858,-1.6142977110028398,-1.589379796311518,5.273037564709714,-0.0161429771100284,-0.01589379796311518,0.05273037564709714 +karman_re100,sr,336,134.4,1.1112804412841797,-0.3685353994369507,0.9644811153411865,-0.5313106775283813,0.9111682176589966,-0.36419105529785156,0.003996318206191063,-0.0029339485336095095,0.004981196951121092,0.00551539845764637,-0.008398903533816338,-0.0016653246711939573,-2.207768035500438,-0.9928932411494147,5.8695241198718175,-0.02207768035500438,-0.009928932411494147,0.058695241198718176 +karman_re100,sr,337,134.8,1.175471544265747,-0.33795657753944397,0.9657546877861023,-0.48237380385398865,0.8561577796936035,-0.302957147359848,0.005296763032674789,-0.0018350675236433744,0.003980936482548714,0.00472648348659277,-0.009306424297392368,-0.002191617852076888,-2.5515278542190543,-0.9136804930952659,5.948736867925966,-0.025515278542190545,-0.009136804930952659,0.05948736867925966 +karman_re100,sr,338,135.2,1.2375552654266357,-0.28192466497421265,0.9488565921783447,-0.3795062303543091,0.8162400722503662,-0.1990625262260437,0.00486074760556221,-0.00037039440940134227,0.0031467557419091463,0.004408214241266251,-0.007557822857052088,-0.0031780346762388945,-2.5338427896893356,-1.7736831264135229,5.08873423460771,-0.02533842789689336,-0.01773683126413523,0.0508873423460771 +karman_re100,sr,339,135.6,1.287843942642212,-0.18780557811260223,0.9108696579933167,-0.19538936018943787,0.7993994951248169,-0.06472967565059662,0.003207205794751644,0.0010059892665594816,0.0022912630811333656,0.004628115799278021,-0.0046906680800020695,-0.003424430266022682,-2.041317290081211,-2.626805465840693,4.235611895180539,-0.02041317290081211,-0.026268054658406932,0.04235611895180539 +karman_re100,sr,340,136.0,1.303880214691162,-0.04253575950860977,0.8770503997802734,0.07619881629943848,0.8153332471847534,0.07425544410943985,0.0010689650662243366,0.002210484119132161,0.0011915948707610369,0.0049916161224246025,-0.0021788482554256916,-0.0038837429601699114,-1.331424368145196,-2.644129671942673,4.21828768907856,-0.01331424368145196,-0.02644129671942673,0.0421828768907856 +karman_re100,sr,341,136.4,1.2530083656311035,0.1358552873134613,0.8774780035018921,0.33494266867637634,0.857674777507782,0.1963362693786621,-0.0004920680657960474,0.003073080675676465,-6.320499232970178e-05,0.005039551295340061,0.00021040452702436596,-0.005104354117065668,-0.6427290682314185,-2.7067805088035133,4.155636852217719,-0.006427290682314186,-0.027067805088035135,0.041556368522177194 +karman_re100,sr,342,136.8,1.1595432758331299,0.2761562168598175,0.9023067355155945,0.4799816906452179,0.9150310754776001,0.2859433889389038,-0.0009764773421920836,0.0035309186205267906,-0.0015707729617133737,0.004561798647046089,0.0027598156593739986,-0.006169435568153858,0.05217616344490824,-3.4735826554958047,3.388834705525427,0.0005217616344490824,-0.03473582655495805,0.03388834705525427 +karman_re100,sr,343,137.2,1.0639104843139648,0.3534925580024719,0.9299423694610596,0.5339116454124451,0.9799255132675171,0.34397292137145996,-0.0003255055926274508,0.0037074415013194084,-0.0035357687156647444,0.0036227344535291195,0.004797561559826136,-0.006400716491043568,0.825824701713381,-4.482427822922878,2.379989538098354,0.00825824701713381,-0.04482427822922878,0.02379989538098354 +karman_re100,sr,344,137.6,0.981503963470459,0.3809094727039337,0.9505776166915894,0.548618733882904,1.0452975034713745,0.3744109869003296,0.0014850135194137692,0.0035816708113998175,-0.005922581534832716,0.002439874457195401,0.005565743427723646,-0.006135114934295416,1.5891303910802699,-5.24770583653534,1.6147115244858914,0.0158913039108027,-0.05247705836535341,0.016147115244858914 +karman_re100,sr,345,138.0,0.9128046631813049,0.36570724844932556,0.963876485824585,0.5324364304542542,1.1088929176330566,0.36914077401161194,0.003920386079698801,0.002964919898658991,-0.008327600546181202,0.0016646692529320717,0.005014178343117237,-0.00553911691531539,2.190774364757673,-5.847492776964106,1.0149245840571264,0.021907743647576732,-0.05847492776964106,0.010149245840571265 +karman_re100,sr,346,138.4,0.8573970198631287,0.306046724319458,0.9658126831054688,0.4848893880844116,1.173076868057251,0.33924856781959534,0.0052825878374278545,0.0018824173603206873,-0.009316782467067242,0.002146405866369605,0.00401696702465415,-0.004746686667203903,2.544220090065782,-5.964674723431109,0.8977426375901225,0.02544220090065782,-0.05964674723431109,0.008977426375901225 +karman_re100,sr,347,138.8,0.8172065019607544,0.20349153876304626,0.9500751495361328,0.3844086527824402,1.2357147932052612,0.28432294726371765,0.004900434985756874,0.00042914069490507245,-0.007651944644749165,0.0031590149737894535,0.003179021878167987,-0.004411743022501469,2.542688918338522,-5.131508616145686,1.7309087448755465,0.02542688918338522,-0.05131508616145686,0.017309087448755464 +karman_re100,sr,348,139.2,0.7994773387908936,0.06975014507770538,0.9128008484840393,0.2036169469356537,1.2867218255996704,0.19165782630443573,0.003279660828411579,-0.0009656213223934174,-0.004784202203154564,0.0034351106733083725,0.0023271215613931417,-0.0046202694065868855,2.065418925847958,-4.250356143319199,2.612061217702033,0.02065418925847958,-0.04250356143319199,0.02612061217702033 +karman_re100,sr,349,139.6,0.8141658306121826,-0.06962713599205017,0.8780372738838196,-0.0662129670381546,1.3044533729553223,0.048315178602933884,0.0011353523004800081,-0.002169913612306118,-0.0022607441060245037,0.0038579353131353855,0.0012299907393753529,-0.004984927363693714,1.3560989834149386,-4.206173183292102,2.65624417772913,0.013560989834149386,-0.04206173183292102,0.026562441777291303 +karman_re100,sr,350,140.0,0.8556147813796997,-0.1926087588071823,0.8770108222961426,-0.32785260677337646,1.2555387020111084,-0.1299576759338379,-0.0004586018330883235,-0.0030476152896881104,0.00012046048504998907,0.005048243794590235,-2.1952610040898435e-05,-0.005042933393269777,0.6656681838643478,-4.168138519169096,2.6942788418521366,0.006656681838643478,-0.04168138519169096,0.026942788418521366 +karman_re100,sr,351,140.4,0.9124117493629456,-0.2835130989551544,0.9011600613594055,-0.47705838084220886,1.1626412868499756,-0.2722134292125702,-0.0009786050068214536,-0.003520556725561619,0.00267119356431067,0.006135010160505772,-0.001512880902737379,-0.004581512417644262,-0.0271575672648355,-3.42773625744751,3.434681103573723,-0.000271575672648355,-0.0342773625744751,0.03434681103573723 +karman_re100,sr,352,140.8,0.9774614572525024,-0.3424333333969116,0.9291355609893799,-0.5329568982124329,1.0669926404953003,-0.3515550494194031,-0.00036519396235235035,-0.0037058705929666758,0.004748908337205648,0.0064030797220766544,-0.0034544295631349087,-0.0036588660441339016,-0.7978850800723091,-2.4153906537232186,4.447026707298013,-0.007978850800723091,-0.024153906537232185,0.04447026707298013 +karman_re100,sr,353,141.2,1.0432133674621582,-0.37404289841651917,0.9502651691436768,-0.5487017035484314,0.9843872785568237,-0.3805370628833771,0.0014072873163968325,-0.0035960772074759007,0.005563999991863966,0.00615903502330184,-0.005829907022416592,-0.00248385570012033,-1.5643414019089605,-1.6367923472908104,5.225625013730422,-0.015643414019089606,-0.016367923472908105,0.05225625013730422 +karman_re100,sr,354,141.6,1.106906771659851,-0.36993175745010376,0.9638037085533142,-0.5335729122161865,0.9152263402938843,-0.36687371134757996,0.003834527451545,-0.0029923482798039913,0.005044673569500446,0.0055716210044920444,-0.00825770478695631,-0.0016821445897221565,-2.1727692664226397,-1.0280423899131148,5.834374971108117,-0.021727692664226396,-0.010280423899131148,0.05834374971108117 +karman_re100,sr,355,142.0,1.1709030866622925,-0.34073635935783386,0.9660021066665649,-0.4873631000518799,0.8591476678848267,-0.30879589915275574,0.005263558588922024,-0.001928618410602212,0.0040438007563352585,0.0047690835781395435,-0.009332885034382343,-0.002107204869389534,-2.5367065772091486,-0.8879154732671917,5.974501887754041,-0.025367065772091486,-0.008879154732671916,0.05974501887754041 +karman_re100,sr,356,142.4,1.2334998846054077,-0.2869054675102234,0.9506429433822632,-0.3892028331756592,0.8180636763572693,-0.20766320824623108,0.004935474134981632,-0.00047159771202132106,0.003202816005796194,0.0044088405556976795,-0.007747788913547993,-0.003131900681182742,-2.5508766866567973,-1.6906304338443936,5.171786927176838,-0.025508766866567972,-0.016906304338443937,0.051717869271768385 +karman_re100,sr,357,142.8,1.2851762771606445,-0.1957107037305832,0.9139242768287659,-0.2116861790418625,0.7993527054786682,-0.0747266337275505,0.0033542548771947622,0.0009198574698530138,0.0023620123974978924,0.004604430869221687,-0.004881692118942738,-0.0034250703174620867,-2.0882334556238242,-2.5962293252998325,4.2661880357214,-0.020882334556238242,-0.025962293252998325,0.042661880357214 +karman_re100,sr,358,143.2,1.305191159248352,-0.05428464710712433,0.8786810040473938,0.056028224527835846,0.8131940960884094,0.06485829502344131,0.001209536800161004,0.002132178982719779,0.0012770389439538121,0.004976935219019651,-0.002338576829060912,-0.003834751434624195,-1.3813434258014143,-2.660035555821928,4.202381805199304,-0.013813434258014144,-0.026600355558219282,0.04202381805199304 +karman_re100,sr,359,143.6,1.2587848901748657,0.12401410192251205,0.8766403198242188,0.32025817036628723,0.8541069030761719,0.18866899609565735,-0.00041864169179461896,0.0030335814226418734,2.7076890546595678e-05,0.005056170281022787,3.8692694943165407e-05,-0.0050126477144658566,-0.6894824418834675,-2.6843451054429126,4.17807225557832,-0.006894824418834675,-0.026843451054429125,0.0417807225557832 +karman_re100,sr,360,144.0,1.166494369506836,0.26841214299201965,0.9002640247344971,0.4737726151943207,0.9103878736495972,0.28089460730552673,-0.000981195131316781,0.003508938942104578,-0.0014571378706023097,0.004609379451721907,0.002584518399089575,-0.006115890108048916,0.0022150841468173334,-3.4027496705868883,3.459667690434344,2.2150841468173335e-05,-0.03402749670586888,0.03459667690434344 +karman_re100,sr,361,144.4,1.0702404975891113,0.34975799918174744,0.9281644225120544,0.5317931771278381,0.9750354290008545,0.3407229483127594,-0.00040879863081499934,0.0037024617195129395,-0.0033853999339044094,0.003694486804306507,0.0046904198825359344,-0.006399929523468018,0.7707265398273387,-4.416302279311369,2.446115081709864,0.007707265398273388,-0.04416302279311369,0.02446115081709864 +karman_re100,sr,362,144.8,0.9869216680526733,0.38024285435676575,0.9493751525878906,0.548610508441925,1.0405983924865723,0.37348395586013794,0.001329360413365066,0.0036050518974661827,-0.005745419301092625,0.002517958637326956,0.0055581009946763515,-0.006165500730276108,1.54002424948142,-5.200273036859652,1.6621443241615799,0.0154002424948142,-0.052002730368596525,0.0166214432416158 +karman_re100,sr,363,145.2,0.9174995422363281,0.368060827255249,0.963419497013092,0.5345014333724976,1.1044986248016357,0.37053120136260986,0.003763047978281975,0.0030207850504666567,-0.00818124320358038,0.0016904828371480107,0.005081069655716419,-0.005597032140940428,2.155532906337498,-5.81630323794371,1.0461141230775226,0.02155532906337498,-0.058163032379437096,0.010461141230775226 +karman_re100,sr,364,145.6,0.8612268567085266,0.31154099106788635,0.9664565324783325,0.48954203724861145,1.1687111854553223,0.3420441448688507,0.005248729605227709,0.001975836232304573,-0.009332709945738316,0.0020813848823308945,0.004080952610820532,-0.0047947438433766365,2.5290662585051265,-5.985665694407844,0.8767516666133885,0.025290662585051266,-0.05985665694407844,0.008767516666133885 +karman_re100,sr,365,146.0,0.8195663690567017,0.21176187694072723,0.9518895149230957,0.3936287760734558,1.2315115928649902,0.2893376052379608,0.004969930276274681,0.0005240854807198048,-0.007832754403352737,0.003111814148724079,0.0032306748908013105,-0.0044150082394480705,2.557927997527675,-5.205449395336749,1.6569679656844831,0.02557927997527675,-0.05205449395336749,0.016569679656844832 +karman_re100,sr,366,146.4,0.7997317314147949,0.07955701649188995,0.915651798248291,0.2194574475288391,1.2835683822631836,0.19968126714229584,0.0034176006447523832,-0.000871832889970392,-0.0049814884550869465,0.003418096574023366,0.0023905218113213778,-0.004591843578964472,2.1097485806624054,-4.283355428610691,2.579061932410541,0.021097485806624055,-0.04283355428610691,0.02579061932410541 +karman_re100,sr,367,146.8,0.8121373057365417,-0.06023047864437103,0.8793134093284607,-0.04583244025707245,1.3050798177719116,0.060318127274513245,0.0012779535027220845,-0.002094416879117489,-0.002426979597657919,0.003793315961956978,0.0013140751980245113,-0.004961409606039524,1.4058107827743742,-4.198711158055692,2.6637062029655403,0.014058107827743742,-0.04198711158055692,0.026637062029655403 +karman_re100,sr,368,147.2,0.8522736430168152,-0.18480642139911652,0.8759012818336487,-0.31244057416915894,1.2610183954238892,-0.11777312308549881,-0.00037779140984639525,-0.003002510406076908,-5.204135231906548e-05,0.004957939963787794,7.97154862084426e-05,-0.005056271329522133,0.7134031262387887,-4.195014476873857,2.667402884147375,0.0071340312623878865,-0.041950144768738575,0.02667402884147375 +karman_re100,sr,369,147.6,0.9083881974220276,-0.27828845381736755,0.8992499709129333,-0.4702948331832886,1.1698250770568848,-0.2643335461616516,-0.0009781495900824666,-0.003499534446746111,0.0024989540688693523,0.006093114614486694,-0.0013924367958679795,-0.004634208045899868,0.025125464779971806,-3.4955066650880364,3.3669106959331963,0.0002512546477997181,-0.03495506665088036,0.033669106959331965 +karman_re100,sr,370,148.0,0.973071813583374,-0.33902260661125183,0.9274613857269287,-0.53056800365448,1.0734461545944214,-0.3478432893753052,-0.0004477726179175079,-0.0036994023248553276,0.0046368930488824844,0.00641038129106164,-0.0033042121212929487,-0.0037386277690529823,-0.7420715707037013,-2.477242961166048,4.385174399855185,-0.007420715707037014,-0.02477242961166048,0.043851743998551844 +karman_re100,sr,371,148.4,1.038630723953247,-0.37289074063301086,0.9488937258720398,-0.5485023260116577,0.9895605444908142,-0.3799192011356354,0.0012482794700190425,-0.0036173881962895393,0.005549740977585316,0.006183503661304712,-0.005656436085700989,-0.00256432150490582,-1.5143347434345007,-1.684173383381728,5.178243977639504,-0.015143347434345008,-0.01684173383381728,0.05178243977639504 +karman_re100,sr,372,148.8,1.1023528575897217,-0.37108883261680603,0.9629973769187927,-0.535477876663208,0.9194562435150146,-0.3692513704299927,0.003676161402836442,-0.0030483328737318516,0.005107510834932327,0.005622413940727711,-0.008107896894216537,-0.0016991313314065337,-2.1369699688334887,-1.0646584273217217,5.797758933699511,-0.021369699688334888,-0.010646584273217217,0.05797758933699511 +karman_re100,sr,373,149.2,1.1662901639938354,-0.34328773617744446,0.9663207530975342,-0.4918150007724762,0.8625133633613586,-0.3143148124217987,0.005225645378232002,-0.0020187159534543753,0.004111369140446186,0.00481547461822629,-0.009336933493614197,-0.0020419834181666374,-2.5201216510851037,-0.865809910513669,5.996607450507563,-0.025201216510851037,-0.00865809910513669,0.05996607450507563 +karman_re100,sr,374,149.6,1.2294117212295532,-0.2916375398635864,0.9526222944259644,-0.39820030331611633,0.8204219341278076,-0.21597039699554443,0.005006362684071064,-0.0005714422441087663,0.0032606804743409157,0.004416678566485643,-0.007920595817267895,-0.0030861464329063892,-2.564533711940431,-1.617648042200781,5.244769318820451,-0.02564533711940431,-0.01617648042200781,0.05244769318820451 +karman_re100,sr,375,150.0,1.2823225259780884,-0.20337800681591034,0.9173184037208557,-0.22722624242305756,0.7999159097671509,-0.08453817665576935,0.003492498304694891,0.0008272473351098597,0.002428318839520216,0.004583748988807201,-0.00507226400077343,-0.0034235205966979265,-2.132221498326993,-2.5611858351474,4.301231525873832,-0.02132221498326993,-0.025611858351474004,0.043012315258738325 +karman_re100,sr,376,150.4,1.3056161403656006,-0.06590516865253448,0.8803722262382507,0.03587730973958969,0.8112225532531738,0.055508896708488464,0.0013510590652003884,0.0020573281217366457,0.0013556568883359432,0.0049565196968615055,-0.002503243274986744,-0.0037801871076226234,-1.430329021925593,-2.6725459007860457,4.189871460235186,-0.014303290219255931,-0.02672545900786046,0.04189871460235186 +karman_re100,sr,377,150.8,1.2637625932693481,0.11185147613286972,0.8756597638130188,0.30484578013420105,0.8505480289459229,0.18091626465320587,-0.00034315098309889436,0.0029770061373710632,0.00011102823191322386,0.0050597041845321655,-0.00013664402649737895,-0.004911092109978199,-0.7358757331047308,-2.662015512939418,4.200401848081814,-0.007358757331047308,-0.02662015512939418,0.04200401848081814 +karman_re100,sr,378,151.2,1.173167109489441,0.26028987765312195,0.8982039093971252,0.4669441282749176,0.9059789180755615,0.2757030725479126,-0.00097772222943604,0.003489901078864932,-0.0013405890204012394,0.004652753937989473,0.002408822998404503,-0.0060553764924407005,-0.04723003887477514,-3.3340325983284034,3.528384762692829,-0.0004723003887477514,-0.033340325983284035,0.03528384762692829 +karman_re100,sr,379,151.6,1.0764811038970947,0.3457861840724945,0.9264069199562073,0.5294013023376465,0.970427393913269,0.3373506963253021,-0.0004843860515393317,0.003696253290399909,-0.0032319962047040462,0.003769736038520932,0.004579821135848761,-0.006404331419616938,0.714996812893613,-4.348370795574701,2.514046565446531,0.0071499681289361305,-0.04348370795574701,0.02514046565446531 +karman_re100,sr,380,152.0,0.9923837780952454,0.37940409779548645,0.9483261108398438,0.5483834743499756,1.0362913608551025,0.3723432421684265,0.0011765876552090049,0.0036297219339758158,-0.005568629130721092,0.0026020000223070383,0.005547189153730869,-0.006194401532411575,1.4896801080776871,-5.1539466076855245,1.7084707533357075,0.014896801080776872,-0.05153946607685524,0.017084707533357075 +karman_re100,sr,381,152.4,0.9220220446586609,0.37022387981414795,0.9628634452819824,0.5363910794258118,1.1002839803695679,0.37175658345222473,0.0035987605806440115,0.003077169880270958,-0.008031897246837616,0.001717042876407504,0.005142673384398222,-0.005652172490954399,2.1197389367251285,-5.780247312971492,1.0821700480497398,0.021197389367251285,-0.057802473129714926,0.010821700480497399 +karman_re100,sr,382,152.8,0.8645774126052856,0.316852867603302,0.9666017293930054,0.4939406216144562,1.1641697883605957,0.34468457102775574,0.0052035837434232235,0.0020637535490095615,-0.009338896721601486,0.002009515417739749,0.004143148194998503,-0.004842123482376337,2.512334191422311,-6.004354099337295,0.8580632616839372,0.02512334191422311,-0.06004354099337295,0.008580632616839372 +karman_re100,sr,383,153.2,0.821706235408783,0.21992072463035583,0.9533460736274719,0.40249907970428467,1.2272776365280151,0.2941083014011383,0.005034199450165033,0.0006261968519538641,-0.008013729006052017,0.003053303575143218,0.003283606842160225,-0.004417827352881432,2.570968220699289,-5.283425298206547,1.5789920628146852,0.025709682206992893,-0.05283425298206547,0.015789920628146853 +karman_re100,sr,384,153.6,0.8000366687774658,0.08936405926942825,0.9184547662734985,0.2347080111503601,1.2805204391479492,0.207323357462883,0.0035607973113656044,-0.0007819575839675963,-0.005177444312721491,0.00341150164604187,0.002457072027027607,-0.004566097166389227,2.154353558677013,-4.3234583524369725,2.5389590085842593,0.02154353558677013,-0.04323458352436973,0.025389590085842594 +karman_re100,sr,385,154.0,0.8102502226829529,-0.05076870322227478,0.8809229135513306,-0.025705676525831223,1.3056440353393555,0.07180926203727722,0.0014338047476485372,-0.002022185828536749,-0.0025871971156448126,0.0037472830154001713,0.0013993307948112488,-0.0049417950212955475,1.4558695666216754,-4.1861881766870574,2.6762291843341752,0.014558695666216755,-0.04186188176687058,0.02676229184334175 +karman_re100,sr,386,154.4,0.8490907549858093,-0.1769016683101654,0.8752065300941467,-0.2966857850551605,1.2665066719055176,-0.10572178661823273,-0.0002921423001680523,-0.002952620619907975,-0.0002193617692682892,0.004870987962931395,0.00016461826453451067,-0.005069645121693611,0.7602137978411372,-4.21228920307863,2.6501281579426026,0.007602137978411372,-0.0421228920307863,0.026501281579426026 +karman_re100,sr,387,154.8,0.9041416049003601,-0.2729645371437073,0.8972780704498291,-0.4632096588611603,1.1768635511398315,-0.25631943345069885,-0.0009737185318954289,-0.0034754001535475254,0.002323857042938471,0.006038909777998924,-0.0012811964843422174,-0.004681746941059828,0.07322334782274242,-3.5611087875100087,3.301308573511223,0.0007322334782274242,-0.03561108787510009,0.03301308573511223 +karman_re100,sr,388,155.2,0.968312680721283,-0.3355490565299988,0.9255374670028687,-0.5280896425247192,1.079787015914917,-0.34395256638526917,-0.0005227532819844782,-0.003691502148285508,0.004519280977547169,0.006407614331692457,-0.0031614694744348526,-0.0038102047983556986,-0.6874682668611022,-2.5437722607387716,4.318645100282461,-0.006874682668611022,-0.025437722607387716,0.04318645100282461 +karman_re100,sr,389,155.6,1.0339404344558716,-0.3716161251068115,0.9475258588790894,-0.5481919646263123,0.9949325323104858,-0.3791092038154602,0.001096384017728269,-0.00363894528709352,0.005534120835363865,0.006203678902238607,-0.0054852585308253765,-0.002640975173562765,-1.4646862137993402,-1.732786240544357,5.129631120476875,-0.014646862137993402,-0.01732786240544357,0.051296311204768755 +karman_re100,sr,390,156.0,1.0978330373764038,-0.3722151815891266,0.9622600078582764,-0.5372620820999146,0.9240062236785889,-0.3713863790035248,0.0035165741574019194,-0.0031034532003104687,0.005173000507056713,0.005674024112522602,-0.007954493165016174,-0.0017283851047977805,-2.101348448069599,-1.1015891568765683,5.760828204144664,-0.02101348448069599,-0.011015891568765684,0.05760828204144664 +karman_re100,sr,391,156.4,1.1618574857711792,-0.3458346426486969,0.9667690396308899,-0.4959983825683594,0.8663336038589478,-0.31955787539482117,0.005175294820219278,-0.0021067732013761997,0.0041810269467532635,0.0048669856041669846,-0.009330550208687782,-0.0019778297282755375,-2.5033568169450846,-0.8511912651909972,6.011226095830235,-0.02503356816945085,-0.008511912651909972,0.060112260958302355 +karman_re100,sr,392,156.8,1.2253044843673706,-0.29628729820251465,0.9544909000396729,-0.40672093629837036,0.8231005668640137,-0.2240014672279358,0.00506777036935091,-0.0006693261675536633,0.0033147805370390415,0.004425478167831898,-0.008092867210507393,-0.003033267566934228,-2.5765998921568567,-1.542015964000245,5.320401397020987,-0.025765998921568566,-0.015420159640002451,0.05320401397020987 +karman_re100,sr,393,157.2,1.279010534286499,-0.21092315018177032,0.9203330874443054,-0.24208366870880127,0.8005022406578064,-0.09420918673276901,0.003627912374213338,0.0007299298886209726,0.0024886042810976505,0.004557533655315638,-0.005268186330795288,-0.003407990327104926,-2.1753895654035587,-2.520854847056451,4.3415625139647815,-0.02175389565403559,-0.02520854847056451,0.043415625139647814 +karman_re100,sr,394,157.6,1.305490255355835,-0.07740885019302368,0.8820281028747559,0.01577252708375454,0.8093747496604919,0.0461343489587307,0.0014982037246227264,0.0019776683766394854,0.001435674261301756,0.004929561633616686,-0.0026729837991297245,-0.0037179451901465654,-1.4791867466070265,-2.679532766763426,4.182884594257806,-0.014791867466070266,-0.02679532766763426,0.04182884594257806 +karman_re100,sr,395,158.0,1.2685071229934692,0.09948430955410004,0.8747839331626892,0.2887208163738251,0.8472326397895813,0.17303520441055298,-0.0002522772701922804,0.0029265317134559155,0.0002061175327980891,0.005067616701126099,-0.00030871780472807586,-0.004815996158868074,-0.7835034943462593,-2.63894372197781,4.223473639043423,-0.007835034943462594,-0.0263894372197781,0.04223473639043423 +karman_re100,sr,396,158.4,1.1799020767211914,0.2519182562828064,0.8962249159812927,0.45951664447784424,0.9018703699111938,0.2703443765640259,-0.0009690613369457424,0.003468162380158901,-0.0012226825347170234,0.004699119366705418,0.0022356854751706123,-0.0060044084675610065,-0.09817689377692451,-3.2666762993660448,3.5957410616551875,-0.0009817689377692451,-0.03266676299366045,0.035957410616551874 +karman_re100,sr,397,158.8,1.0828903913497925,0.3416840732097626,0.92476487159729,0.5267938375473022,0.9661415219306946,0.3338561952114105,-0.0005567664629779756,0.003688956145197153,-0.0030827245209366083,0.0038481103256344795,0.004463663790374994,-0.006411041133105755,0.6594959669624398,-4.284725336657071,2.5776920243641612,0.0065949596696243985,-0.04284725336657071,0.025776920243641612 +karman_re100,sr,398,159.2,0.9976517558097839,0.37847691774368286,0.9470841884613037,0.5480076670646667,1.0319373607635498,0.3709867596626282,0.0010222390992566943,0.0036469269543886185,-0.005395802203565836,0.00268710870295763,0.005525624845176935,-0.006221686024218798,1.439063929059475,-5.107085795621556,1.755331565399677,0.014390639290594752,-0.05107085795621556,0.01755331565399677 +karman_re100,sr,399,159.6,0.926189661026001,0.37228164076805115,0.9619701504707336,0.5381701588630676,1.095840573310852,0.3727998733520508,0.0034305385779589415,0.003132120007649064,-0.007877938449382782,0.0017467669676989317,0.005199769511818886,-0.005702096037566662,2.082669360671763,-5.742436602475539,1.1199807585456933,0.020826693606717628,-0.0574243660247554,0.011199807585456934 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_long.csv new file mode 100644 index 0000000..4e91c99 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,target,0,0.0,velocity,upper_ux,0.812035083770752 +karman_re100,target,0,0.0,velocity,upper_uy,0.30261531472206116 +karman_re100,target,0,0.0,velocity,center_ux,1.1480845212936401 +karman_re100,target,0,0.0,velocity,center_uy,0.45128145813941956 +karman_re100,target,0,0.0,velocity,lower_ux,1.2823938131332397 +karman_re100,target,0,0.0,velocity,lower_uy,0.287433922290802 +karman_re100,target,1,0.4,velocity,upper_ux,0.7677544951438904 +karman_re100,target,1,0.4,velocity,upper_uy,0.14403098821640015 +karman_re100,target,1,0.4,velocity,center_ux,1.1512078046798706 +karman_re100,target,1,0.4,velocity,center_uy,0.2277425229549408 +karman_re100,target,1,0.4,velocity,lower_ux,1.3225741386413574 +karman_re100,target,1,0.4,velocity,lower_uy,0.175057053565979 +karman_re100,target,2,0.8,velocity,upper_ux,0.7657437920570374 +karman_re100,target,2,0.8,velocity,upper_uy,-0.04852975532412529 +karman_re100,target,2,0.8,velocity,center_ux,1.1423300504684448 +karman_re100,target,2,0.8,velocity,center_uy,-0.06450358033180237 +karman_re100,target,2,0.8,velocity,lower_ux,1.3205082416534424 +karman_re100,target,2,0.8,velocity,lower_uy,0.021698085591197014 +karman_re100,target,3,1.2,velocity,upper_ux,0.8108689785003662 +karman_re100,target,3,1.2,velocity,upper_uy,-0.21744558215141296 +karman_re100,target,3,1.2,velocity,center_ux,1.1267750263214111 +karman_re100,target,3,1.2,velocity,center_uy,-0.32606765627861023 +karman_re100,target,3,1.2,velocity,lower_ux,1.2755136489868164 +karman_re100,target,3,1.2,velocity,lower_uy,-0.1361904740333557 +karman_re100,target,4,1.6,velocity,upper_ux,0.8901888132095337 +karman_re100,target,4,1.6,velocity,upper_uy,-0.31573745608329773 +karman_re100,target,4,1.6,velocity,center_ux,1.1114743947982788 +karman_re100,target,4,1.6,velocity,center_uy,-0.4819938540458679 +karman_re100,target,4,1.6,velocity,lower_ux,1.2037899494171143 +karman_re100,target,4,1.6,velocity,lower_uy,-0.26137661933898926 +karman_re100,target,5,2.0,velocity,upper_ux,0.9799392223358154 +karman_re100,target,5,2.0,velocity,upper_uy,-0.34964749217033386 +karman_re100,target,5,2.0,velocity,center_ux,1.1035536527633667 +karman_re100,target,5,2.0,velocity,center_uy,-0.5397924184799194 +karman_re100,target,5,2.0,velocity,lower_ux,1.123124361038208 +karman_re100,target,5,2.0,velocity,lower_uy,-0.344757080078125 +karman_re100,target,6,2.4,velocity,upper_ux,1.0654698610305786 +karman_re100,target,6,2.4,velocity,upper_uy,-0.3649882376194 +karman_re100,target,6,2.4,velocity,center_ux,1.1074013710021973 +karman_re100,target,6,2.4,velocity,center_uy,-0.5673738718032837 +karman_re100,target,6,2.4,velocity,lower_ux,1.042235016822815 +karman_re100,target,6,2.4,velocity,lower_uy,-0.39762377738952637 +karman_re100,target,7,2.8,velocity,upper_ux,1.1461074352264404 +karman_re100,target,7,2.8,velocity,upper_uy,-0.3752002716064453 +karman_re100,target,7,2.8,velocity,center_ux,1.119099497795105 +karman_re100,target,7,2.8,velocity,center_uy,-0.5843614339828491 +karman_re100,target,7,2.8,velocity,lower_ux,0.9605693817138672 +karman_re100,target,7,2.8,velocity,lower_uy,-0.42043641209602356 +karman_re100,target,8,3.2,velocity,upper_ux,1.219201922416687 +karman_re100,target,8,3.2,velocity,upper_uy,-0.3535889685153961 +karman_re100,target,8,3.2,velocity,center_ux,1.1341111660003662 +karman_re100,target,8,3.2,velocity,center_uy,-0.5591274499893188 +karman_re100,target,8,3.2,velocity,lower_ux,0.8804168701171875 +karman_re100,target,8,3.2,velocity,lower_uy,-0.3943299949169159 +karman_re100,target,9,3.6,velocity,upper_ux,1.2819676399230957 +karman_re100,target,9,3.6,velocity,upper_uy,-0.2869211435317993 +karman_re100,target,9,3.6,velocity,center_ux,1.1473746299743652 +karman_re100,target,9,3.6,velocity,center_uy,-0.4502863585948944 +karman_re100,target,9,3.6,velocity,lower_ux,0.8111828565597534 +karman_re100,target,9,3.6,velocity,lower_uy,-0.3019362688064575 +karman_re100,target,10,4.0,velocity,upper_ux,1.322648048400879 +karman_re100,target,10,4.0,velocity,upper_uy,-0.1742769479751587 +karman_re100,target,10,4.0,velocity,center_ux,1.1511458158493042 +karman_re100,target,10,4.0,velocity,center_uy,-0.2262040376663208 +karman_re100,target,10,4.0,velocity,lower_ux,0.7678519487380981 +karman_re100,target,10,4.0,velocity,lower_uy,-0.14309248328208923 +karman_re100,target,11,4.4,velocity,upper_ux,1.32114577293396 +karman_re100,target,11,4.4,velocity,upper_uy,-0.020650606602430344 +karman_re100,target,11,4.4,velocity,center_ux,1.1430779695510864 +karman_re100,target,11,4.4,velocity,center_uy,0.06629147380590439 +karman_re100,target,11,4.4,velocity,lower_ux,0.7669715881347656 +karman_re100,target,11,4.4,velocity,lower_uy,0.04957792907953262 +karman_re100,target,12,4.8,velocity,upper_ux,1.2758020162582397 +karman_re100,target,12,4.8,velocity,upper_uy,0.13732928037643433 +karman_re100,target,12,4.8,velocity,center_ux,1.1274683475494385 +karman_re100,target,12,4.8,velocity,center_uy,0.32758602499961853 +karman_re100,target,12,4.8,velocity,lower_ux,0.8123586773872375 +karman_re100,target,12,4.8,velocity,lower_uy,0.21831078827381134 +karman_re100,target,13,5.2,velocity,upper_ux,1.2025068998336792 +karman_re100,target,13,5.2,velocity,upper_uy,0.2622847855091095 +karman_re100,target,13,5.2,velocity,center_ux,1.1108115911483765 +karman_re100,target,13,5.2,velocity,center_uy,0.4827052354812622 +karman_re100,target,13,5.2,velocity,lower_ux,0.8904141187667847 +karman_re100,target,13,5.2,velocity,lower_uy,0.31607142090797424 +karman_re100,target,14,5.6,velocity,upper_ux,1.1214674711227417 +karman_re100,target,14,5.6,velocity,upper_uy,0.3453749120235443 +karman_re100,target,14,5.6,velocity,center_ux,1.1026054620742798 +karman_re100,target,14,5.6,velocity,center_uy,0.5400255918502808 +karman_re100,target,14,5.6,velocity,lower_ux,0.9796508550643921 +karman_re100,target,14,5.6,velocity,lower_uy,0.34969761967658997 +karman_re100,target,15,6.0,velocity,upper_ux,1.0413429737091064 +karman_re100,target,15,6.0,velocity,upper_uy,0.3980522155761719 +karman_re100,target,15,6.0,velocity,center_ux,1.1072888374328613 +karman_re100,target,15,6.0,velocity,center_uy,0.5675710439682007 +karman_re100,target,15,6.0,velocity,lower_ux,1.0657992362976074 +karman_re100,target,15,6.0,velocity,lower_uy,0.36501967906951904 +karman_re100,target,16,6.4,velocity,upper_ux,0.960446298122406 +karman_re100,target,16,6.4,velocity,upper_uy,0.4206009805202484 +karman_re100,target,16,6.4,velocity,center_ux,1.119845986366272 +karman_re100,target,16,6.4,velocity,center_uy,0.5843752026557922 +karman_re100,target,16,6.4,velocity,lower_ux,1.147172212600708 +karman_re100,target,16,6.4,velocity,lower_uy,0.3750964403152466 +karman_re100,target,17,6.8,velocity,upper_ux,0.8808760046958923 +karman_re100,target,17,6.8,velocity,upper_uy,0.3940218687057495 +karman_re100,target,17,6.8,velocity,center_ux,1.1355568170547485 +karman_re100,target,17,6.8,velocity,center_uy,0.5587111115455627 +karman_re100,target,17,6.8,velocity,lower_ux,1.2208648920059204 +karman_re100,target,17,6.8,velocity,lower_uy,0.353135883808136 +karman_re100,target,18,7.2,velocity,upper_ux,0.8108566999435425 +karman_re100,target,18,7.2,velocity,upper_uy,0.30095818638801575 +karman_re100,target,18,7.2,velocity,center_ux,1.1480005979537964 +karman_re100,target,18,7.2,velocity,center_uy,0.4489435851573944 +karman_re100,target,18,7.2,velocity,lower_ux,1.2827253341674805 +karman_re100,target,18,7.2,velocity,lower_uy,0.28609490394592285 +karman_re100,target,19,7.6,velocity,upper_ux,0.7665558457374573 +karman_re100,target,19,7.6,velocity,upper_uy,0.1416599005460739 +karman_re100,target,19,7.6,velocity,center_ux,1.1504747867584229 +karman_re100,target,19,7.6,velocity,center_uy,0.22412441670894623 +karman_re100,target,19,7.6,velocity,lower_ux,1.3218894004821777 +karman_re100,target,19,7.6,velocity,lower_uy,0.1731805056333542 +karman_re100,target,20,8.0,velocity,upper_ux,0.7663202881813049 +karman_re100,target,20,8.0,velocity,upper_uy,-0.05098826065659523 +karman_re100,target,20,8.0,velocity,center_ux,1.1426303386688232 +karman_re100,target,20,8.0,velocity,center_uy,-0.06826851516962051 +karman_re100,target,20,8.0,velocity,lower_ux,1.3203675746917725 +karman_re100,target,20,8.0,velocity,lower_uy,0.019598297774791718 +karman_re100,target,21,8.4,velocity,upper_ux,0.8126705884933472 +karman_re100,target,21,8.4,velocity,upper_uy,-0.21939463913440704 +karman_re100,target,21,8.4,velocity,center_ux,1.127629041671753 +karman_re100,target,21,8.4,velocity,center_uy,-0.3289453089237213 +karman_re100,target,21,8.4,velocity,lower_ux,1.2755104303359985 +karman_re100,target,21,8.4,velocity,lower_uy,-0.13810043036937714 +karman_re100,target,22,8.8,velocity,upper_ux,0.8916969299316406 +karman_re100,target,22,8.8,velocity,upper_uy,-0.31670933961868286 +karman_re100,target,22,8.8,velocity,center_ux,1.111690640449524 +karman_re100,target,22,8.8,velocity,center_uy,-0.48335039615631104 +karman_re100,target,22,8.8,velocity,lower_ux,1.2028987407684326 +karman_re100,target,22,8.8,velocity,lower_uy,-0.2627444863319397 +karman_re100,target,23,9.2,velocity,upper_ux,0.9810989499092102 +karman_re100,target,23,9.2,velocity,upper_uy,-0.35003411769866943 +karman_re100,target,23,9.2,velocity,center_ux,1.1035232543945312 +karman_re100,target,23,9.2,velocity,center_uy,-0.5402535796165466 +karman_re100,target,23,9.2,velocity,lower_ux,1.1218527555465698 +karman_re100,target,23,9.2,velocity,lower_uy,-0.34560689330101013 +karman_re100,target,24,9.6,velocity,upper_ux,1.0659030675888062 +karman_re100,target,24,9.6,velocity,upper_uy,-0.36528387665748596 +karman_re100,target,24,9.6,velocity,center_ux,1.1068559885025024 +karman_re100,target,24,9.6,velocity,center_uy,-0.5677406787872314 +karman_re100,target,24,9.6,velocity,lower_ux,1.0403642654418945 +karman_re100,target,24,9.6,velocity,lower_uy,-0.39808958768844604 +karman_re100,target,25,10.0,velocity,upper_ux,1.1465972661972046 +karman_re100,target,25,10.0,velocity,upper_uy,-0.3752528429031372 +karman_re100,target,25,10.0,velocity,center_ux,1.1187708377838135 +karman_re100,target,25,10.0,velocity,center_uy,-0.5843900442123413 +karman_re100,target,25,10.0,velocity,lower_ux,0.958926796913147 +karman_re100,target,25,10.0,velocity,lower_uy,-0.42038506269454956 +karman_re100,target,26,10.4,velocity,upper_ux,1.2208735942840576 +karman_re100,target,26,10.4,velocity,upper_uy,-0.35305464267730713 +karman_re100,target,26,10.4,velocity,center_ux,1.1350692510604858 +karman_re100,target,26,10.4,velocity,center_uy,-0.5583990812301636 +karman_re100,target,26,10.4,velocity,lower_ux,0.8801062107086182 +karman_re100,target,26,10.4,velocity,lower_uy,-0.3935069739818573 +karman_re100,target,27,10.8,velocity,upper_ux,1.2833970785140991 +karman_re100,target,27,10.8,velocity,upper_uy,-0.28576430678367615 +karman_re100,target,27,10.8,velocity,center_ux,1.1481128931045532 +karman_re100,target,27,10.8,velocity,center_uy,-0.4480416178703308 +karman_re100,target,27,10.8,velocity,lower_ux,0.8109070658683777 +karman_re100,target,27,10.8,velocity,lower_uy,-0.3001171350479126 +karman_re100,target,28,11.2,velocity,upper_ux,1.323048710823059 +karman_re100,target,28,11.2,velocity,upper_uy,-0.1724335253238678 +karman_re100,target,28,11.2,velocity,center_ux,1.151106834411621 +karman_re100,target,28,11.2,velocity,center_uy,-0.22247076034545898 +karman_re100,target,28,11.2,velocity,lower_ux,0.7674306631088257 +karman_re100,target,28,11.2,velocity,lower_uy,-0.1404888778924942 +karman_re100,target,29,11.6,velocity,upper_ux,1.3205647468566895 +karman_re100,target,29,11.6,velocity,upper_uy,-0.01846388913691044 +karman_re100,target,29,11.6,velocity,center_ux,1.1425349712371826 +karman_re100,target,29,11.6,velocity,center_uy,0.07028083503246307 +karman_re100,target,29,11.6,velocity,lower_ux,0.7668522596359253 +karman_re100,target,29,11.6,velocity,lower_uy,0.052223194390535355 +karman_re100,target,30,12.0,velocity,upper_ux,1.2741824388504028 +karman_re100,target,30,12.0,velocity,upper_uy,0.13916942477226257 +karman_re100,target,30,12.0,velocity,center_ux,1.1262929439544678 +karman_re100,target,30,12.0,velocity,center_uy,0.33036601543426514 +karman_re100,target,30,12.0,velocity,lower_ux,0.8122022747993469 +karman_re100,target,30,12.0,velocity,lower_uy,0.22011509537696838 +karman_re100,target,31,12.4,velocity,upper_ux,1.201677680015564 +karman_re100,target,31,12.4,velocity,upper_uy,0.2635015547275543 +karman_re100,target,31,12.4,velocity,center_ux,1.1106513738632202 +karman_re100,target,31,12.4,velocity,center_uy,0.4838998317718506 +karman_re100,target,31,12.4,velocity,lower_ux,0.8914790153503418 +karman_re100,target,31,12.4,velocity,lower_uy,0.31679290533065796 +karman_re100,target,32,12.8,velocity,upper_ux,1.1213570833206177 +karman_re100,target,32,12.8,velocity,upper_uy,0.3461456298828125 +karman_re100,target,32,12.8,velocity,center_ux,1.103358507156372 +karman_re100,target,32,12.8,velocity,center_uy,0.5404130816459656 +karman_re100,target,32,12.8,velocity,lower_ux,0.9815623760223389 +karman_re100,target,32,12.8,velocity,lower_uy,0.34990960359573364 +karman_re100,target,33,13.2,velocity,upper_ux,1.0406173467636108 +karman_re100,target,33,13.2,velocity,upper_uy,0.39850494265556335 +karman_re100,target,33,13.2,velocity,center_ux,1.1076008081436157 +karman_re100,target,33,13.2,velocity,center_uy,0.5678924322128296 +karman_re100,target,33,13.2,velocity,lower_ux,1.0671203136444092 +karman_re100,target,33,13.2,velocity,lower_uy,0.3652181625366211 +karman_re100,target,34,13.6,velocity,upper_ux,0.9593124389648438 +karman_re100,target,34,13.6,velocity,upper_uy,0.4205651581287384 +karman_re100,target,34,13.6,velocity,center_ux,1.1198159456253052 +karman_re100,target,34,13.6,velocity,center_uy,0.5843759775161743 +karman_re100,target,34,13.6,velocity,lower_ux,1.1480408906936646 +karman_re100,target,34,13.6,velocity,lower_uy,0.37511852383613586 +karman_re100,target,35,14.0,velocity,upper_ux,0.8793003559112549 +karman_re100,target,35,14.0,velocity,upper_uy,0.3932307958602905 +karman_re100,target,35,14.0,velocity,center_ux,1.1349698305130005 +karman_re100,target,35,14.0,velocity,center_uy,0.5579212307929993 +karman_re100,target,35,14.0,velocity,lower_ux,1.2210444211959839 +karman_re100,target,35,14.0,velocity,lower_uy,0.3525986075401306 +karman_re100,target,36,14.4,velocity,upper_ux,0.8095651268959045 +karman_re100,target,36,14.4,velocity,upper_uy,0.29937687516212463 +karman_re100,target,36,14.4,velocity,center_ux,1.147293210029602 +karman_re100,target,36,14.4,velocity,center_uy,0.44686344265937805 +karman_re100,target,36,14.4,velocity,lower_ux,1.2826828956604004 +karman_re100,target,36,14.4,velocity,lower_uy,0.28504663705825806 +karman_re100,target,37,14.8,velocity,upper_ux,0.7669968605041504 +karman_re100,target,37,14.8,velocity,upper_uy,0.13943429291248322 +karman_re100,target,37,14.8,velocity,center_ux,1.1508842706680298 +karman_re100,target,37,14.8,velocity,center_uy,0.22075209021568298 +karman_re100,target,37,14.8,velocity,lower_ux,1.3227074146270752 +karman_re100,target,37,14.8,velocity,lower_uy,0.17150646448135376 +karman_re100,target,38,15.2,velocity,upper_ux,0.7674164772033691 +karman_re100,target,38,15.2,velocity,upper_uy,-0.05338115990161896 +karman_re100,target,38,15.2,velocity,center_ux,1.142965316772461 +karman_re100,target,38,15.2,velocity,center_uy,-0.07209604233503342 +karman_re100,target,38,15.2,velocity,lower_ux,1.3206281661987305 +karman_re100,target,38,15.2,velocity,lower_uy,0.01742694526910782 +karman_re100,target,39,15.6,velocity,upper_ux,0.8137084245681763 +karman_re100,target,39,15.6,velocity,upper_uy,-0.22110392153263092 +karman_re100,target,39,15.6,velocity,center_ux,1.1273289918899536 +karman_re100,target,39,15.6,velocity,center_uy,-0.33180758357048035 +karman_re100,target,39,15.6,velocity,lower_ux,1.274634599685669 +karman_re100,target,39,15.6,velocity,lower_uy,-0.14014899730682373 +karman_re100,target,40,16.0,velocity,upper_ux,0.8927103281021118 +karman_re100,target,40,16.0,velocity,upper_uy,-0.3173467814922333 +karman_re100,target,40,16.0,velocity,center_ux,1.1111860275268555 +karman_re100,target,40,16.0,velocity,center_uy,-0.48462486267089844 +karman_re100,target,40,16.0,velocity,lower_ux,1.2014801502227783 +karman_re100,target,40,16.0,velocity,lower_uy,-0.2642610967159271 +karman_re100,target,41,16.4,velocity,upper_ux,0.9814931750297546 +karman_re100,target,41,16.4,velocity,upper_uy,-0.35015419125556946 +karman_re100,target,41,16.4,velocity,center_ux,1.1026726961135864 +karman_re100,target,41,16.4,velocity,center_uy,-0.5406719446182251 +karman_re100,target,41,16.4,velocity,lower_ux,1.1198838949203491 +karman_re100,target,41,16.4,velocity,lower_uy,-0.3466239869594574 +karman_re100,target,42,16.8,velocity,upper_ux,1.066957950592041 +karman_re100,target,42,16.8,velocity,upper_uy,-0.36538928747177124 +karman_re100,target,42,16.8,velocity,center_ux,1.1069843769073486 +karman_re100,target,42,16.8,velocity,center_uy,-0.568096935749054 +karman_re100,target,42,16.8,velocity,lower_ux,1.0392287969589233 +karman_re100,target,42,16.8,velocity,lower_uy,-0.3987596929073334 +karman_re100,target,43,17.2,velocity,upper_ux,1.1485294103622437 +karman_re100,target,43,17.2,velocity,upper_uy,-0.37513551115989685 +karman_re100,target,43,17.2,velocity,center_ux,1.1199350357055664 +karman_re100,target,43,17.2,velocity,center_uy,-0.5843937397003174 +karman_re100,target,43,17.2,velocity,lower_ux,0.9586631059646606 +karman_re100,target,43,17.2,velocity,lower_uy,-0.42054450511932373 +karman_re100,target,44,17.6,velocity,upper_ux,1.2222164869308472 +karman_re100,target,44,17.6,velocity,upper_uy,-0.3523033857345581 +karman_re100,target,44,17.6,velocity,center_ux,1.135820984840393 +karman_re100,target,44,17.6,velocity,center_uy,-0.5575626492500305 +karman_re100,target,44,17.6,velocity,lower_ux,0.879370927810669 +karman_re100,target,44,17.6,velocity,lower_uy,-0.3928065598011017 +karman_re100,target,45,18.0,velocity,upper_ux,1.2840962409973145 +karman_re100,target,45,18.0,velocity,upper_uy,-0.2844059467315674 +karman_re100,target,45,18.0,velocity,center_ux,1.148380994796753 +karman_re100,target,45,18.0,velocity,center_uy,-0.44565972685813904 +karman_re100,target,45,18.0,velocity,lower_ux,0.8099439144134521 +karman_re100,target,45,18.0,velocity,lower_uy,-0.2983766496181488 +karman_re100,target,46,18.4,velocity,upper_ux,1.3228116035461426 +karman_re100,target,46,18.4,velocity,upper_uy,-0.1704746037721634 +karman_re100,target,46,18.4,velocity,center_ux,1.150794267654419 +karman_re100,target,46,18.4,velocity,center_uy,-0.21867088973522186 +karman_re100,target,46,18.4,velocity,lower_ux,0.7665148377418518 +karman_re100,target,46,18.4,velocity,lower_uy,-0.13793766498565674 +karman_re100,target,47,18.8,velocity,upper_ux,1.31956148147583 +karman_re100,target,47,18.8,velocity,upper_uy,-0.0163396205753088 +karman_re100,target,47,18.8,velocity,center_ux,1.1419447660446167 +karman_re100,target,47,18.8,velocity,center_uy,0.07413597404956818 +karman_re100,target,47,18.8,velocity,lower_ux,0.7664347290992737 +karman_re100,target,47,18.8,velocity,lower_uy,0.05480088293552399 +karman_re100,target,48,19.2,velocity,upper_ux,1.2739135026931763 +karman_re100,target,48,19.2,velocity,upper_uy,0.14095304906368256 +karman_re100,target,48,19.2,velocity,center_ux,1.1268056631088257 +karman_re100,target,48,19.2,velocity,center_uy,0.33312541246414185 +karman_re100,target,48,19.2,velocity,lower_ux,0.8135271668434143 +karman_re100,target,48,19.2,velocity,lower_uy,0.2220384031534195 +karman_re100,target,49,19.6,velocity,upper_ux,1.2013490200042725 +karman_re100,target,49,19.6,velocity,upper_uy,0.26474234461784363 +karman_re100,target,49,19.6,velocity,center_ux,1.1113224029541016 +karman_re100,target,49,19.6,velocity,center_uy,0.4851912558078766 +karman_re100,target,49,19.6,velocity,lower_ux,0.8933419585227966 +karman_re100,target,49,19.6,velocity,lower_uy,0.31776633858680725 +karman_re100,target,50,20.0,velocity,upper_ux,1.1203460693359375 +karman_re100,target,50,20.0,velocity,upper_uy,0.3468916714191437 +karman_re100,target,50,20.0,velocity,center_ux,1.1034746170043945 +karman_re100,target,50,20.0,velocity,center_uy,0.5408557653427124 +karman_re100,target,50,20.0,velocity,lower_ux,0.9828254580497742 +karman_re100,target,50,20.0,velocity,lower_uy,0.35031798481941223 +karman_re100,target,51,20.4,velocity,upper_ux,1.0392950773239136 +karman_re100,target,51,20.4,velocity,upper_uy,0.3988759219646454 +karman_re100,target,51,20.4,velocity,center_ux,1.1074838638305664 +karman_re100,target,51,20.4,velocity,center_uy,0.5682435631752014 +karman_re100,target,51,20.4,velocity,lower_ux,1.0679961442947388 +karman_re100,target,51,20.4,velocity,lower_uy,0.36554116010665894 +karman_re100,target,52,20.8,velocity,upper_ux,0.9574712514877319 +karman_re100,target,52,20.8,velocity,upper_uy,0.4204210937023163 +karman_re100,target,52,20.8,velocity,center_ux,1.1191701889038086 +karman_re100,target,52,20.8,velocity,center_uy,0.5843856334686279 +karman_re100,target,52,20.8,velocity,lower_ux,1.148277759552002 +karman_re100,target,52,20.8,velocity,lower_uy,0.375210165977478 +karman_re100,target,53,21.2,velocity,upper_ux,0.8781440258026123 +karman_re100,target,53,21.2,velocity,upper_uy,0.39236754179000854 +karman_re100,target,53,21.2,velocity,center_ux,1.1348600387573242 +karman_re100,target,53,21.2,velocity,center_uy,0.5571955442428589 +karman_re100,target,53,21.2,velocity,lower_ux,1.2217097282409668 +karman_re100,target,53,21.2,velocity,lower_uy,0.3521380126476288 +karman_re100,target,54,21.6,velocity,upper_ux,0.8095811605453491 +karman_re100,target,54,21.6,velocity,upper_uy,0.29762178659439087 +karman_re100,target,54,21.6,velocity,center_ux,1.1480333805084229 +karman_re100,target,54,21.6,velocity,center_uy,0.44471853971481323 +karman_re100,target,54,21.6,velocity,lower_ux,1.284194827079773 +karman_re100,target,54,21.6,velocity,lower_uy,0.28400668501853943 +karman_re100,target,55,22.0,velocity,upper_ux,0.7670566439628601 +karman_re100,target,55,22.0,velocity,upper_uy,0.13692286610603333 +karman_re100,target,55,22.0,velocity,center_ux,1.1510447263717651 +karman_re100,target,55,22.0,velocity,center_uy,0.21711623668670654 +karman_re100,target,55,22.0,velocity,lower_ux,1.323423147201538 +karman_re100,target,55,22.0,velocity,lower_uy,0.16973544657230377 +karman_re100,target,56,22.4,velocity,upper_ux,0.7676176428794861 +karman_re100,target,56,22.4,velocity,upper_uy,-0.05590338259935379 +karman_re100,target,56,22.4,velocity,center_ux,1.142493486404419 +karman_re100,target,56,22.4,velocity,center_uy,-0.07601464539766312 +karman_re100,target,56,22.4,velocity,lower_ux,1.320229172706604 +karman_re100,target,56,22.4,velocity,lower_uy,0.015245147980749607 +karman_re100,target,57,22.8,velocity,upper_ux,0.8140778541564941 +karman_re100,target,57,22.8,velocity,upper_uy,-0.2227998524904251 +karman_re100,target,57,22.8,velocity,center_ux,1.1264439821243286 +karman_re100,target,57,22.8,velocity,center_uy,-0.33460158109664917 +karman_re100,target,57,22.8,velocity,lower_ux,1.2733606100082397 +karman_re100,target,57,22.8,velocity,lower_uy,-0.14209656417369843 +karman_re100,target,58,23.2,velocity,upper_ux,0.8930761218070984 +karman_re100,target,58,23.2,velocity,upper_uy,-0.31792405247688293 +karman_re100,target,58,23.2,velocity,center_ux,1.110163927078247 +karman_re100,target,58,23.2,velocity,center_uy,-0.48580247163772583 +karman_re100,target,58,23.2,velocity,lower_ux,1.1997880935668945 +karman_re100,target,58,23.2,velocity,lower_uy,-0.2656043469905853 +karman_re100,target,59,23.6,velocity,upper_ux,0.9829467535018921 +karman_re100,target,59,23.6,velocity,upper_uy,-0.350245863199234 +karman_re100,target,59,23.6,velocity,center_ux,1.1029495000839233 +karman_re100,target,59,23.6,velocity,center_uy,-0.5410470366477966 +karman_re100,target,59,23.6,velocity,lower_ux,1.1192913055419922 +karman_re100,target,59,23.6,velocity,lower_uy,-0.3474999964237213 +karman_re100,target,60,24.0,velocity,upper_ux,1.0687453746795654 +karman_re100,target,60,24.0,velocity,upper_uy,-0.3654972016811371 +karman_re100,target,60,24.0,velocity,center_ux,1.1077839136123657 +karman_re100,target,60,24.0,velocity,center_uy,-0.5684166550636292 +karman_re100,target,60,24.0,velocity,lower_ux,1.0389389991760254 +karman_re100,target,60,24.0,velocity,lower_uy,-0.3993319272994995 +karman_re100,target,61,24.4,velocity,upper_ux,1.1496657133102417 +karman_re100,target,61,24.4,velocity,upper_uy,-0.37505853176116943 +karman_re100,target,61,24.4,velocity,center_ux,1.1202219724655151 +karman_re100,target,61,24.4,velocity,center_uy,-0.5843784809112549 +karman_re100,target,61,24.4,velocity,lower_ux,0.9577237963676453 +karman_re100,target,61,24.4,velocity,lower_uy,-0.4206252992153168 +karman_re100,target,62,24.8,velocity,upper_ux,1.2228777408599854 +karman_re100,target,62,24.8,velocity,upper_uy,-0.3516332507133484 +karman_re100,target,62,24.8,velocity,center_ux,1.1358118057250977 +karman_re100,target,62,24.8,velocity,center_uy,-0.5567141175270081 +karman_re100,target,62,24.8,velocity,lower_ux,0.8781863451004028 +karman_re100,target,62,24.8,velocity,lower_uy,-0.39207789301872253 +karman_re100,target,63,25.2,velocity,upper_ux,1.2840332984924316 +karman_re100,target,63,25.2,velocity,upper_uy,-0.28317883610725403 +karman_re100,target,63,25.2,velocity,center_ux,1.1478004455566406 +karman_re100,target,63,25.2,velocity,center_uy,-0.4433908760547638 +karman_re100,target,63,25.2,velocity,lower_ux,0.8085365891456604 +karman_re100,target,63,25.2,velocity,lower_uy,-0.29673779010772705 +karman_re100,target,64,25.6,velocity,upper_ux,1.3226968050003052 +karman_re100,target,64,25.6,velocity,upper_uy,-0.16870063543319702 +karman_re100,target,64,25.6,velocity,center_ux,1.15049409866333 +karman_re100,target,64,25.6,velocity,center_uy,-0.21519795060157776 +karman_re100,target,64,25.6,velocity,lower_ux,0.766022801399231 +karman_re100,target,64,25.6,velocity,lower_uy,-0.13567203283309937 +karman_re100,target,65,26.0,velocity,upper_ux,1.3198908567428589 +karman_re100,target,65,26.0,velocity,upper_uy,-0.014207380823791027 +karman_re100,target,65,26.0,velocity,center_ux,1.1425729990005493 +karman_re100,target,65,26.0,velocity,center_uy,0.07790452986955643 +karman_re100,target,65,26.0,velocity,lower_ux,0.7676012516021729 +karman_re100,target,65,26.0,velocity,lower_uy,0.05720249563455582 +karman_re100,target,66,26.4,velocity,upper_ux,1.2734501361846924 +karman_re100,target,66,26.4,velocity,upper_uy,0.1429395228624344 +karman_re100,target,66,26.4,velocity,center_ux,1.127101182937622 +karman_re100,target,66,26.4,velocity,center_uy,0.3359788656234741 +karman_re100,target,66,26.4,velocity,lower_ux,0.8149902820587158 +karman_re100,target,66,26.4,velocity,lower_uy,0.22385922074317932 +karman_re100,target,67,26.8,velocity,upper_ux,1.2001250982284546 +karman_re100,target,67,26.8,velocity,upper_uy,0.2661803364753723 +karman_re100,target,67,26.8,velocity,center_ux,1.1111449003219604 +karman_re100,target,67,26.8,velocity,center_uy,0.48647719621658325 +karman_re100,target,67,26.8,velocity,lower_ux,0.8945723176002502 +karman_re100,target,67,26.8,velocity,lower_uy,0.31855860352516174 +karman_re100,target,68,27.2,velocity,upper_ux,1.1187787055969238 +karman_re100,target,68,27.2,velocity,upper_uy,0.34782809019088745 +karman_re100,target,68,27.2,velocity,center_ux,1.1031280755996704 +karman_re100,target,68,27.2,velocity,center_uy,0.5412938594818115 +karman_re100,target,68,27.2,velocity,lower_ux,0.9836965203285217 +karman_re100,target,68,27.2,velocity,lower_uy,0.3505766987800598 +karman_re100,target,69,27.6,velocity,upper_ux,1.0374681949615479 +karman_re100,target,69,27.6,velocity,upper_uy,0.39943936467170715 +karman_re100,target,69,27.6,velocity,center_ux,1.1069777011871338 +karman_re100,target,69,27.6,velocity,center_uy,0.5686056613922119 +karman_re100,target,69,27.6,velocity,lower_ux,1.0684354305267334 +karman_re100,target,69,27.6,velocity,lower_uy,0.36574363708496094 +karman_re100,target,70,28.0,velocity,upper_ux,0.956645667552948 +karman_re100,target,70,28.0,velocity,upper_uy,0.4204655587673187 +karman_re100,target,70,28.0,velocity,center_ux,1.1197304725646973 +karman_re100,target,70,28.0,velocity,center_uy,0.5843933820724487 +karman_re100,target,70,28.0,velocity,lower_ux,1.1496130228042603 +karman_re100,target,70,28.0,velocity,lower_uy,0.3751657009124756 +karman_re100,target,71,28.4,velocity,upper_ux,0.8778162598609924 +karman_re100,target,71,28.4,velocity,upper_uy,0.3915739059448242 +karman_re100,target,71,28.4,velocity,center_ux,1.1359434127807617 +karman_re100,target,71,28.4,velocity,center_uy,0.556378185749054 +karman_re100,target,71,28.4,velocity,lower_ux,1.2234399318695068 +karman_re100,target,71,28.4,velocity,lower_uy,0.3514685034751892 +karman_re100,target,72,28.8,velocity,upper_ux,0.8088483214378357 +karman_re100,target,72,28.8,velocity,upper_uy,0.2958005964756012 +karman_re100,target,72,28.8,velocity,center_ux,1.1484565734863281 +karman_re100,target,72,28.8,velocity,center_uy,0.44234874844551086 +karman_re100,target,72,28.8,velocity,lower_ux,1.2851742506027222 +karman_re100,target,72,28.8,velocity,lower_uy,0.2827214002609253 +karman_re100,target,73,29.2,velocity,upper_ux,0.7664539217948914 +karman_re100,target,73,29.2,velocity,upper_uy,0.1343102902173996 +karman_re100,target,73,29.2,velocity,center_ux,1.1509580612182617 +karman_re100,target,73,29.2,velocity,center_uy,0.21330688893795013 +karman_re100,target,73,29.2,velocity,lower_ux,1.3235758543014526 +karman_re100,target,73,29.2,velocity,lower_uy,0.16780853271484375 +karman_re100,target,74,29.6,velocity,upper_ux,0.7672211527824402 +karman_re100,target,74,29.6,velocity,upper_uy,-0.0585409440100193 +karman_re100,target,74,29.6,velocity,center_ux,1.1418133974075317 +karman_re100,target,74,29.6,velocity,center_uy,-0.07995446026325226 +karman_re100,target,74,29.6,velocity,lower_ux,1.3193076848983765 +karman_re100,target,74,29.6,velocity,lower_uy,0.013080030679702759 +karman_re100,target,75,30.0,velocity,upper_ux,0.8144451975822449 +karman_re100,target,75,30.0,velocity,upper_uy,-0.22463828325271606 +karman_re100,target,75,30.0,velocity,center_ux,1.1259275674819946 +karman_re100,target,75,30.0,velocity,center_uy,-0.33730658888816833 +karman_re100,target,75,30.0,velocity,lower_ux,1.2722351551055908 +karman_re100,target,75,30.0,velocity,lower_uy,-0.14386223256587982 +karman_re100,target,76,30.4,velocity,upper_ux,0.8947944045066833 +karman_re100,target,76,30.4,velocity,upper_uy,-0.31876125931739807 +karman_re100,target,76,30.4,velocity,center_ux,1.1107028722763062 +karman_re100,target,76,30.4,velocity,center_uy,-0.4870035946369171 +karman_re100,target,76,30.4,velocity,lower_ux,1.19950532913208 +karman_re100,target,76,30.4,velocity,lower_uy,-0.26678818464279175 +karman_re100,target,77,30.8,velocity,upper_ux,0.9845665097236633 +karman_re100,target,77,30.8,velocity,upper_uy,-0.35056519508361816 +karman_re100,target,77,30.8,velocity,center_ux,1.1034246683120728 +karman_re100,target,77,30.8,velocity,center_uy,-0.5414522290229797 +karman_re100,target,77,30.8,velocity,lower_ux,1.1187812089920044 +karman_re100,target,77,30.8,velocity,lower_uy,-0.3482274115085602 +karman_re100,target,78,31.2,velocity,upper_ux,1.0697535276412964 +karman_re100,target,78,31.2,velocity,upper_uy,-0.3657701909542084 +karman_re100,target,78,31.2,velocity,center_ux,1.1077934503555298 +karman_re100,target,78,31.2,velocity,center_uy,-0.5687511563301086 +karman_re100,target,78,31.2,velocity,lower_ux,1.0378499031066895 +karman_re100,target,78,31.2,velocity,lower_uy,-0.39971232414245605 +karman_re100,target,79,31.6,velocity,upper_ux,1.150292158126831 +karman_re100,target,79,31.6,velocity,upper_uy,-0.3751176595687866 +karman_re100,target,79,31.6,velocity,center_ux,1.119949221611023 +karman_re100,target,79,31.6,velocity,center_uy,-0.5843672752380371 +karman_re100,target,79,31.6,velocity,lower_ux,0.9563309550285339 +karman_re100,target,79,31.6,velocity,lower_uy,-0.42049628496170044 +karman_re100,target,80,32.0,velocity,upper_ux,1.2229955196380615 +karman_re100,target,80,32.0,velocity,upper_uy,-0.35114094614982605 +karman_re100,target,80,32.0,velocity,center_ux,1.1351425647735596 +karman_re100,target,80,32.0,velocity,center_uy,-0.5559332370758057 +karman_re100,target,80,32.0,velocity,lower_ux,0.8765504956245422 +karman_re100,target,80,32.0,velocity,lower_uy,-0.39121806621551514 +karman_re100,target,81,32.4,velocity,upper_ux,1.2848018407821655 +karman_re100,target,81,32.4,velocity,upper_uy,-0.28215786814689636 +karman_re100,target,81,32.4,velocity,center_ux,1.1478314399719238 +karman_re100,target,81,32.4,velocity,center_uy,-0.4412832260131836 +karman_re100,target,81,32.4,velocity,lower_ux,0.8079938292503357 +karman_re100,target,81,32.4,velocity,lower_uy,-0.29507434368133545 +karman_re100,target,82,32.8,velocity,upper_ux,1.3236738443374634 +karman_re100,target,82,32.8,velocity,upper_uy,-0.16697442531585693 +karman_re100,target,82,32.8,velocity,center_ux,1.1509629487991333 +karman_re100,target,82,32.8,velocity,center_uy,-0.2116812914609909 +karman_re100,target,82,32.8,velocity,lower_ux,0.7665380835533142 +karman_re100,target,82,32.8,velocity,lower_uy,-0.1333029419183731 +karman_re100,target,83,33.2,velocity,upper_ux,1.3197184801101685 +karman_re100,target,83,33.2,velocity,upper_uy,-0.012018220499157906 +karman_re100,target,83,33.2,velocity,center_ux,1.1423795223236084 +karman_re100,target,83,33.2,velocity,center_uy,0.0817718431353569 +karman_re100,target,83,33.2,velocity,lower_ux,0.7682008147239685 +karman_re100,target,83,33.2,velocity,lower_uy,0.0596376471221447 +karman_re100,target,84,33.6,velocity,upper_ux,1.2723937034606934 +karman_re100,target,84,33.6,velocity,upper_uy,0.14494270086288452 +karman_re100,target,84,33.6,velocity,center_ux,1.1265134811401367 +karman_re100,target,84,33.6,velocity,center_uy,0.3387623131275177 +karman_re100,target,84,33.6,velocity,lower_ux,0.8157537579536438 +karman_re100,target,84,33.6,velocity,lower_uy,0.22550350427627563 +karman_re100,target,85,34.0,velocity,upper_ux,1.1984843015670776 +karman_re100,target,85,34.0,velocity,upper_uy,0.2676261067390442 +karman_re100,target,85,34.0,velocity,center_ux,1.110296607017517 +karman_re100,target,85,34.0,velocity,center_uy,0.48766830563545227 +karman_re100,target,85,34.0,velocity,lower_ux,0.8952136039733887 +karman_re100,target,85,34.0,velocity,lower_uy,0.31911149621009827 +karman_re100,target,86,34.4,velocity,upper_ux,1.1172720193862915 +karman_re100,target,86,34.4,velocity,upper_uy,0.34878748655319214 +karman_re100,target,86,34.4,velocity,center_ux,1.1026127338409424 +karman_re100,target,86,34.4,velocity,center_uy,0.5416796207427979 +karman_re100,target,86,34.4,velocity,lower_ux,0.9843865036964417 +karman_re100,target,86,34.4,velocity,lower_uy,0.35064971446990967 +karman_re100,target,87,34.8,velocity,upper_ux,1.0370067358016968 +karman_re100,target,87,34.8,velocity,upper_uy,0.4000800848007202 +karman_re100,target,87,34.8,velocity,center_ux,1.1077022552490234 +karman_re100,target,87,34.8,velocity,center_uy,0.5689429640769958 +karman_re100,target,87,34.8,velocity,lower_ux,1.0701038837432861 +karman_re100,target,87,34.8,velocity,lower_uy,0.36583003401756287 +karman_re100,target,88,35.2,velocity,upper_ux,0.9561149477958679 +karman_re100,target,88,35.2,velocity,upper_uy,0.4205925464630127 +karman_re100,target,88,35.2,velocity,center_ux,1.120558261871338 +karman_re100,target,88,35.2,velocity,center_uy,0.5843659043312073 +karman_re100,target,88,35.2,velocity,lower_ux,1.151240587234497 +karman_re100,target,88,35.2,velocity,lower_uy,0.3750334084033966 +karman_re100,target,89,35.6,velocity,upper_ux,0.8767637610435486 +karman_re100,target,89,35.6,velocity,upper_uy,0.3908538520336151 +karman_re100,target,89,35.6,velocity,center_ux,1.136256456375122 +karman_re100,target,89,35.6,velocity,center_uy,0.5554980039596558 +karman_re100,target,89,35.6,velocity,lower_ux,1.2243590354919434 +karman_re100,target,89,35.6,velocity,lower_uy,0.3507160544395447 +karman_re100,target,90,36.0,velocity,upper_ux,0.8077561855316162 +karman_re100,target,90,36.0,velocity,upper_uy,0.29408353567123413 +karman_re100,target,90,36.0,velocity,center_ux,1.1484253406524658 +karman_re100,target,90,36.0,velocity,center_uy,0.43994879722595215 +karman_re100,target,90,36.0,velocity,lower_ux,1.285576581954956 +karman_re100,target,90,36.0,velocity,lower_uy,0.28137919306755066 +karman_re100,target,91,36.4,velocity,upper_ux,0.7655217051506042 +karman_re100,target,91,36.4,velocity,upper_uy,0.13187818229198456 +karman_re100,target,91,36.4,velocity,center_ux,1.1504478454589844 +karman_re100,target,91,36.4,velocity,center_uy,0.20961910486221313 +karman_re100,target,91,36.4,velocity,lower_ux,1.3231360912322998 +karman_re100,target,91,36.4,velocity,lower_uy,0.1659044474363327 +karman_re100,target,92,36.8,velocity,upper_ux,0.7676110863685608 +karman_re100,target,92,36.8,velocity,upper_uy,-0.061011914163827896 +karman_re100,target,92,36.8,velocity,center_ux,1.1418763399124146 +karman_re100,target,92,36.8,velocity,center_uy,-0.0837256908416748 +karman_re100,target,92,36.8,velocity,lower_ux,1.318954586982727 +karman_re100,target,92,36.8,velocity,lower_uy,0.010968871414661407 +karman_re100,target,93,37.2,velocity,upper_ux,0.8161090612411499 +karman_re100,target,93,37.2,velocity,upper_uy,-0.22651629149913788 +karman_re100,target,93,37.2,velocity,center_ux,1.126617431640625 +karman_re100,target,93,37.2,velocity,center_uy,-0.3400861620903015 +karman_re100,target,93,37.2,velocity,lower_ux,1.272101879119873 +karman_re100,target,93,37.2,velocity,lower_uy,-0.14573022723197937 +karman_re100,target,94,37.6,velocity,upper_ux,0.8963051438331604 +karman_re100,target,94,37.6,velocity,upper_uy,-0.31965941190719604 +karman_re100,target,94,37.6,velocity,center_ux,1.1109223365783691 +karman_re100,target,94,37.6,velocity,center_uy,-0.48827090859413147 +karman_re100,target,94,37.6,velocity,lower_ux,1.1986608505249023 +karman_re100,target,94,37.6,velocity,lower_uy,-0.2681087553501129 +karman_re100,target,95,38.0,velocity,upper_ux,0.9856442213058472 +karman_re100,target,95,38.0,velocity,upper_uy,-0.35092127323150635 +karman_re100,target,95,38.0,velocity,center_ux,1.1033326387405396 +karman_re100,target,95,38.0,velocity,center_uy,-0.5418899655342102 +karman_re100,target,95,38.0,velocity,lower_ux,1.1174874305725098 +karman_re100,target,95,38.0,velocity,lower_uy,-0.349045068025589 +karman_re100,target,96,38.4,velocity,upper_ux,1.0704014301300049 +karman_re100,target,96,38.4,velocity,upper_uy,-0.3660513162612915 +karman_re100,target,96,38.4,velocity,center_ux,1.1074700355529785 +karman_re100,target,96,38.4,velocity,center_uy,-0.5691068768501282 +karman_re100,target,96,38.4,velocity,lower_ux,1.0362389087677002 +karman_re100,target,96,38.4,velocity,lower_uy,-0.40015193819999695 +karman_re100,target,97,38.8,velocity,upper_ux,1.1508289575576782 +karman_re100,target,97,38.8,velocity,upper_uy,-0.37514328956604004 +karman_re100,target,97,38.8,velocity,center_ux,1.119659423828125 +karman_re100,target,97,38.8,velocity,center_uy,-0.5843629837036133 +karman_re100,target,97,38.8,velocity,lower_ux,0.9547511339187622 +karman_re100,target,97,38.8,velocity,lower_uy,-0.42040902376174927 +karman_re100,target,98,39.2,velocity,upper_ux,1.2243990898132324 +karman_re100,target,98,39.2,velocity,upper_uy,-0.3505803942680359 +karman_re100,target,98,39.2,velocity,center_ux,1.1358294486999512 +karman_re100,target,98,39.2,velocity,center_uy,-0.5551456809043884 +karman_re100,target,98,39.2,velocity,lower_ux,0.8760220408439636 +karman_re100,target,98,39.2,velocity,lower_uy,-0.3903551995754242 +karman_re100,target,99,39.6,velocity,upper_ux,1.286171317100525 +karman_re100,target,99,39.6,velocity,upper_uy,-0.28098368644714355 +karman_re100,target,99,39.6,velocity,center_ux,1.148512363433838 +karman_re100,target,99,39.6,velocity,center_uy,-0.4389711618423462 +karman_re100,target,99,39.6,velocity,lower_ux,0.8077432513237 +karman_re100,target,99,39.6,velocity,lower_uy,-0.2932324707508087 +karman_re100,target,100,40.0,velocity,upper_ux,1.3240128755569458 +karman_re100,target,100,40.0,velocity,upper_uy,-0.1651148647069931 +karman_re100,target,100,40.0,velocity,center_ux,1.1508841514587402 +karman_re100,target,100,40.0,velocity,center_uy,-0.20792783796787262 +karman_re100,target,100,40.0,velocity,lower_ux,0.7661712765693665 +karman_re100,target,100,40.0,velocity,lower_uy,-0.1307111382484436 +karman_re100,target,101,40.4,velocity,upper_ux,1.3191311359405518 +karman_re100,target,101,40.4,velocity,upper_uy,-0.009843578562140465 +karman_re100,target,101,40.4,velocity,center_ux,1.1418559551239014 +karman_re100,target,101,40.4,velocity,center_uy,0.08569447696208954 +karman_re100,target,101,40.4,velocity,lower_ux,0.7681806683540344 +karman_re100,target,101,40.4,velocity,lower_uy,0.06221691146492958 +karman_re100,target,102,40.8,velocity,upper_ux,1.270996332168579 +karman_re100,target,102,40.8,velocity,upper_uy,0.1467837542295456 +karman_re100,target,102,40.8,velocity,center_ux,1.1255918741226196 +karman_re100,target,102,40.8,velocity,center_uy,0.3414723575115204 +karman_re100,target,102,40.8,velocity,lower_ux,0.8159189820289612 +karman_re100,target,102,40.8,velocity,lower_uy,0.22723931074142456 +karman_re100,target,103,41.2,velocity,upper_ux,1.197463870048523 +karman_re100,target,103,41.2,velocity,upper_uy,0.2688542902469635 +karman_re100,target,103,41.2,velocity,center_ux,1.1099830865859985 +karman_re100,target,103,41.2,velocity,center_uy,0.4888073205947876 +karman_re100,target,103,41.2,velocity,lower_ux,0.8961688876152039 +karman_re100,target,103,41.2,velocity,lower_uy,0.31977570056915283 +karman_re100,target,104,41.6,velocity,upper_ux,1.1169898509979248 +karman_re100,target,104,41.6,velocity,upper_uy,0.34957051277160645 +karman_re100,target,104,41.6,velocity,center_ux,1.1032288074493408 +karman_re100,target,104,41.6,velocity,center_uy,0.5420563220977783 +karman_re100,target,104,41.6,velocity,lower_ux,0.986156702041626 +karman_re100,target,104,41.6,velocity,lower_uy,0.3508390784263611 +karman_re100,target,105,42.0,velocity,upper_ux,1.0362956523895264 +karman_re100,target,105,42.0,velocity,upper_uy,0.40054261684417725 +karman_re100,target,105,42.0,velocity,center_ux,1.108065128326416 +karman_re100,target,105,42.0,velocity,center_uy,0.5692631006240845 +karman_re100,target,105,42.0,velocity,lower_ux,1.0714648962020874 +karman_re100,target,105,42.0,velocity,lower_uy,0.36601492762565613 +karman_re100,target,106,42.4,velocity,upper_ux,0.9549334645271301 +karman_re100,target,106,42.4,velocity,upper_uy,0.42055046558380127 +karman_re100,target,106,42.4,velocity,center_ux,1.120520830154419 +karman_re100,target,106,42.4,velocity,center_uy,0.5843372941017151 +karman_re100,target,106,42.4,velocity,lower_ux,1.1520791053771973 +karman_re100,target,106,42.4,velocity,lower_uy,0.3750137686729431 +karman_re100,target,107,42.8,velocity,upper_ux,0.8753806948661804 +karman_re100,target,107,42.8,velocity,upper_uy,0.3900349736213684 +karman_re100,target,107,42.8,velocity,center_ux,1.135907530784607 +karman_re100,target,107,42.8,velocity,center_uy,0.5546469688415527 +karman_re100,target,107,42.8,velocity,lower_ux,1.224745512008667 +karman_re100,target,107,42.8,velocity,lower_uy,0.35012200474739075 +karman_re100,target,108,43.2,velocity,upper_ux,0.8065635561943054 +karman_re100,target,108,43.2,velocity,upper_uy,0.2924324870109558 +karman_re100,target,108,43.2,velocity,center_ux,1.147874116897583 +karman_re100,target,108,43.2,velocity,center_uy,0.43774116039276123 +karman_re100,target,108,43.2,velocity,lower_ux,1.2856537103652954 +karman_re100,target,108,43.2,velocity,lower_uy,0.28025513887405396 +karman_re100,target,109,43.6,velocity,upper_ux,0.765734076499939 +karman_re100,target,109,43.6,velocity,upper_uy,0.12959714233875275 +karman_re100,target,109,43.6,velocity,center_ux,1.1506704092025757 +karman_re100,target,109,43.6,velocity,center_uy,0.20615537464618683 +karman_re100,target,109,43.6,velocity,lower_ux,1.3236992359161377 +karman_re100,target,109,43.6,velocity,lower_uy,0.16416728496551514 +karman_re100,target,110,44.0,velocity,upper_ux,0.7686783671379089 +karman_re100,target,110,44.0,velocity,upper_uy,-0.06340890377759933 +karman_re100,target,110,44.0,velocity,center_ux,1.1422197818756104 +karman_re100,target,110,44.0,velocity,center_uy,-0.08753275871276855 +karman_re100,target,110,44.0,velocity,lower_ux,1.319149374961853 +karman_re100,target,110,44.0,velocity,lower_uy,0.008798518218100071 +karman_re100,target,111,44.4,velocity,upper_ux,0.8171631693840027 +karman_re100,target,111,44.4,velocity,upper_uy,-0.22820842266082764 +karman_re100,target,111,44.4,velocity,center_ux,1.126369595527649 +karman_re100,target,111,44.4,velocity,center_uy,-0.3428688943386078 +karman_re100,target,111,44.4,velocity,lower_ux,1.271227240562439 +karman_re100,target,111,44.4,velocity,lower_uy,-0.1477319449186325 +karman_re100,target,112,44.8,velocity,upper_ux,0.8973208069801331 +karman_re100,target,112,44.8,velocity,upper_uy,-0.320292592048645 +karman_re100,target,112,44.8,velocity,center_ux,1.110467553138733 +karman_re100,target,112,44.8,velocity,center_uy,-0.48947420716285706 +karman_re100,target,112,44.8,velocity,lower_ux,1.197269320487976 +karman_re100,target,112,44.8,velocity,lower_uy,-0.2695583403110504 +karman_re100,target,113,45.2,velocity,upper_ux,0.9862890839576721 +karman_re100,target,113,45.2,velocity,upper_uy,-0.3510713279247284 +karman_re100,target,113,45.2,velocity,center_ux,1.102760910987854 +karman_re100,target,113,45.2,velocity,center_uy,-0.5422983169555664 +karman_re100,target,113,45.2,velocity,lower_ux,1.1157852411270142 +karman_re100,target,113,45.2,velocity,lower_uy,-0.35000884532928467 +karman_re100,target,114,45.6,velocity,upper_ux,1.071348786354065 +karman_re100,target,114,45.6,velocity,upper_uy,-0.36618292331695557 +karman_re100,target,114,45.6,velocity,center_ux,1.107488751411438 +karman_re100,target,114,45.6,velocity,center_uy,-0.5694569945335388 +karman_re100,target,114,45.6,velocity,lower_ux,1.0349903106689453 +karman_re100,target,114,45.6,velocity,lower_uy,-0.400765061378479 +karman_re100,target,115,46.0,velocity,upper_ux,1.1525667905807495 +karman_re100,target,115,46.0,velocity,upper_uy,-0.37502795457839966 +karman_re100,target,115,46.0,velocity,center_ux,1.1206254959106445 +karman_re100,target,115,46.0,velocity,center_uy,-0.584339439868927 +karman_re100,target,115,46.0,velocity,lower_ux,0.9543167948722839 +karman_re100,target,115,46.0,velocity,lower_uy,-0.42049694061279297 +karman_re100,target,116,46.4,velocity,upper_ux,1.2257407903671265 +karman_re100,target,116,46.4,velocity,upper_uy,-0.34982848167419434 +karman_re100,target,116,46.4,velocity,center_ux,1.1365618705749512 +karman_re100,target,116,46.4,velocity,center_uy,-0.554256796836853 +karman_re100,target,116,46.4,velocity,lower_ux,0.8753206133842468 +karman_re100,target,116,46.4,velocity,lower_uy,-0.3895791172981262 +karman_re100,target,117,46.8,velocity,upper_ux,1.2868149280548096 +karman_re100,target,117,46.8,velocity,upper_uy,-0.27963125705718994 +karman_re100,target,117,46.8,velocity,center_ux,1.1486945152282715 +karman_re100,target,117,46.8,velocity,center_uy,-0.43652790784835815 +karman_re100,target,117,46.8,velocity,lower_ux,0.8067755103111267 +karman_re100,target,117,46.8,velocity,lower_uy,-0.2914366126060486 +karman_re100,target,118,47.2,velocity,upper_ux,1.3238962888717651 +karman_re100,target,118,47.2,velocity,upper_uy,-0.16315871477127075 +karman_re100,target,118,47.2,velocity,center_ux,1.150657296180725 +karman_re100,target,118,47.2,velocity,center_uy,-0.20411790907382965 +karman_re100,target,118,47.2,velocity,lower_ux,0.7654426693916321 +karman_re100,target,118,47.2,velocity,lower_uy,-0.12814971804618835 +karman_re100,target,119,47.6,velocity,upper_ux,1.3182456493377686 +karman_re100,target,119,47.6,velocity,upper_uy,-0.007709298748522997 +karman_re100,target,119,47.6,velocity,center_ux,1.1413453817367554 +karman_re100,target,119,47.6,velocity,center_uy,0.08954059332609177 +karman_re100,target,119,47.6,velocity,lower_ux,0.7679441571235657 +karman_re100,target,119,47.6,velocity,lower_uy,0.06477923691272736 +karman_re100,target,120,48.0,velocity,upper_ux,1.2704864740371704 +karman_re100,target,120,48.0,velocity,upper_uy,0.1485568881034851 +karman_re100,target,120,48.0,velocity,center_ux,1.1258243322372437 +karman_re100,target,120,48.0,velocity,center_uy,0.3441559672355652 +karman_re100,target,120,48.0,velocity,lower_ux,0.8170408606529236 +karman_re100,target,120,48.0,velocity,lower_uy,0.22908388078212738 +karman_re100,target,121,48.4,velocity,upper_ux,1.19707453250885 +karman_re100,target,121,48.4,velocity,upper_uy,0.27007365226745605 +karman_re100,target,121,48.4,velocity,center_ux,1.1105560064315796 +karman_re100,target,121,48.4,velocity,center_uy,0.49001315236091614 +karman_re100,target,121,48.4,velocity,lower_ux,0.8979573845863342 +karman_re100,target,121,48.4,velocity,lower_uy,0.3206539452075958 +karman_re100,target,122,48.8,velocity,upper_ux,1.1160074472427368 +karman_re100,target,122,48.8,velocity,upper_uy,0.3503125011920929 +karman_re100,target,122,48.8,velocity,center_ux,1.1033495664596558 +karman_re100,target,122,48.8,velocity,center_uy,0.5424751043319702 +karman_re100,target,122,48.8,velocity,lower_ux,0.9874223470687866 +karman_re100,target,122,48.8,velocity,lower_uy,0.3511981666088104 +karman_re100,target,123,49.2,velocity,upper_ux,1.0349823236465454 +karman_re100,target,123,49.2,velocity,upper_uy,0.40091729164123535 +karman_re100,target,123,49.2,velocity,center_ux,1.1079413890838623 +karman_re100,target,123,49.2,velocity,center_uy,0.5696068406105042 +karman_re100,target,123,49.2,velocity,lower_ux,1.0723227262496948 +karman_re100,target,123,49.2,velocity,lower_uy,0.36630943417549133 +karman_re100,target,124,49.6,velocity,upper_ux,0.9533426761627197 +karman_re100,target,124,49.6,velocity,upper_uy,0.420399934053421 +karman_re100,target,124,49.6,velocity,center_ux,1.1201229095458984 +karman_re100,target,124,49.6,velocity,center_uy,0.5843144059181213 +karman_re100,target,124,49.6,velocity,lower_ux,1.1525516510009766 +karman_re100,target,124,49.6,velocity,lower_uy,0.37506064772605896 +karman_re100,target,125,50.0,velocity,upper_ux,0.874168336391449 +karman_re100,target,125,50.0,velocity,upper_uy,0.38914260268211365 +karman_re100,target,125,50.0,velocity,center_ux,1.1357464790344238 +karman_re100,target,125,50.0,velocity,center_uy,0.5538485050201416 +karman_re100,target,125,50.0,velocity,lower_ux,1.2253460884094238 +karman_re100,target,125,50.0,velocity,lower_uy,0.34960633516311646 +karman_re100,target,126,50.4,velocity,upper_ux,0.8064136505126953 +karman_re100,target,126,50.4,velocity,upper_uy,0.29065707325935364 +karman_re100,target,126,50.4,velocity,center_ux,1.1484298706054688 +karman_re100,target,126,50.4,velocity,center_uy,0.4355088472366333 +karman_re100,target,126,50.4,velocity,lower_ux,1.2869431972503662 +karman_re100,target,126,50.4,velocity,lower_uy,0.2791665494441986 +karman_re100,target,127,50.8,velocity,upper_ux,0.765856146812439 +karman_re100,target,127,50.8,velocity,upper_uy,0.12709128856658936 +karman_re100,target,127,50.8,velocity,center_ux,1.1508592367172241 +karman_re100,target,127,50.8,velocity,center_uy,0.2024834007024765 +karman_re100,target,127,50.8,velocity,lower_ux,1.324378252029419 +karman_re100,target,127,50.8,velocity,lower_uy,0.16235928237438202 +karman_re100,target,128,51.2,velocity,upper_ux,0.7689172625541687 +karman_re100,target,128,51.2,velocity,upper_uy,-0.0658968836069107 +karman_re100,target,128,51.2,velocity,center_ux,1.1417580842971802 +karman_re100,target,128,51.2,velocity,center_uy,-0.09141411632299423 +karman_re100,target,128,51.2,velocity,lower_ux,1.3186895847320557 +karman_re100,target,128,51.2,velocity,lower_uy,0.0066131846979260445 +karman_re100,target,129,51.6,velocity,upper_ux,0.8176860213279724 +karman_re100,target,129,51.6,velocity,upper_uy,-0.22985237836837769 +karman_re100,target,129,51.6,velocity,center_ux,1.1256319284439087 +karman_re100,target,129,51.6,velocity,center_uy,-0.3455774784088135 +karman_re100,target,129,51.6,velocity,lower_ux,1.2700355052947998 +karman_re100,target,129,51.6,velocity,lower_uy,-0.14965389668941498 +karman_re100,target,130,52.0,velocity,upper_ux,0.8979009389877319 +karman_re100,target,130,52.0,velocity,upper_uy,-0.32085034251213074 +karman_re100,target,130,52.0,velocity,center_ux,1.1096539497375488 +karman_re100,target,130,52.0,velocity,center_uy,-0.4905981719493866 +karman_re100,target,130,52.0,velocity,lower_ux,1.1957212686538696 +karman_re100,target,130,52.0,velocity,lower_uy,-0.2708892524242401 +karman_re100,target,131,52.4,velocity,upper_ux,0.9875641465187073 +karman_re100,target,131,52.4,velocity,upper_uy,-0.35117557644844055 +karman_re100,target,131,52.4,velocity,center_ux,1.1028674840927124 +karman_re100,target,131,52.4,velocity,center_uy,-0.5426676869392395 +karman_re100,target,131,52.4,velocity,lower_ux,1.1149659156799316 +karman_re100,target,131,52.4,velocity,lower_uy,-0.350877583026886 +karman_re100,target,132,52.8,velocity,upper_ux,1.0730565786361694 +karman_re100,target,132,52.8,velocity,upper_uy,-0.36630210280418396 +karman_re100,target,132,52.8,velocity,center_ux,1.1082266569137573 +karman_re100,target,132,52.8,velocity,center_uy,-0.5697791576385498 +karman_re100,target,132,52.8,velocity,lower_ux,1.0345994234085083 +karman_re100,target,132,52.8,velocity,lower_uy,-0.40132153034210205 +karman_re100,target,133,53.2,velocity,upper_ux,1.1537350416183472 +karman_re100,target,133,53.2,velocity,upper_uy,-0.3749271035194397 +karman_re100,target,133,53.2,velocity,center_ux,1.1209617853164673 +karman_re100,target,133,53.2,velocity,center_uy,-0.5842931270599365 +karman_re100,target,133,53.2,velocity,lower_ux,0.9533947110176086 +karman_re100,target,133,53.2,velocity,lower_uy,-0.4205387234687805 +karman_re100,target,134,53.6,velocity,upper_ux,1.2263983488082886 +karman_re100,target,134,53.6,velocity,upper_uy,-0.34912529587745667 +karman_re100,target,134,53.6,velocity,center_ux,1.136564016342163 +karman_re100,target,134,53.6,velocity,center_uy,-0.5533534288406372 +karman_re100,target,134,53.6,velocity,lower_ux,0.8741214275360107 +karman_re100,target,134,53.6,velocity,lower_uy,-0.3887990713119507 +karman_re100,target,135,54.0,velocity,upper_ux,1.2869800329208374 +karman_re100,target,135,54.0,velocity,upper_uy,-0.27836453914642334 +karman_re100,target,135,54.0,velocity,center_ux,1.1483519077301025 +karman_re100,target,135,54.0,velocity,center_uy,-0.43416300415992737 +karman_re100,target,135,54.0,velocity,lower_ux,0.8055860996246338 +karman_re100,target,135,54.0,velocity,lower_uy,-0.28973135352134705 +karman_re100,target,136,54.4,velocity,upper_ux,1.323762059211731 +karman_re100,target,136,54.4,velocity,upper_uy,-0.16132906079292297 +karman_re100,target,136,54.4,velocity,center_ux,1.1503602266311646 +karman_re100,target,136,54.4,velocity,center_uy,-0.2005414515733719 +karman_re100,target,136,54.4,velocity,lower_ux,0.7649402022361755 +karman_re100,target,136,54.4,velocity,lower_uy,-0.12580671906471252 +karman_re100,target,137,54.8,velocity,upper_ux,1.3183550834655762 +karman_re100,target,137,54.8,velocity,upper_uy,-0.00557597354054451 +karman_re100,target,137,54.8,velocity,center_ux,1.1417790651321411 +karman_re100,target,137,54.8,velocity,center_uy,0.09329944849014282 +karman_re100,target,137,54.8,velocity,lower_ux,0.7689125537872314 +karman_re100,target,137,54.8,velocity,lower_uy,0.06719134002923965 +karman_re100,target,138,55.2,velocity,upper_ux,1.2700227499008179 +karman_re100,target,138,55.2,velocity,upper_uy,0.15049298107624054 +karman_re100,target,138,55.2,velocity,center_ux,1.126128077507019 +karman_re100,target,138,55.2,velocity,center_uy,0.3469177186489105 +karman_re100,target,138,55.2,velocity,lower_ux,0.8184977769851685 +karman_re100,target,138,55.2,velocity,lower_uy,0.23086261749267578 +karman_re100,target,139,55.6,velocity,upper_ux,1.1958638429641724 +karman_re100,target,139,55.6,velocity,upper_uy,0.27145102620124817 +karman_re100,target,139,55.6,velocity,center_ux,1.1103826761245728 +karman_re100,target,139,55.6,velocity,center_uy,0.4912213385105133 +karman_re100,target,139,55.6,velocity,lower_ux,0.8991665840148926 +karman_re100,target,139,55.6,velocity,lower_uy,0.3214128017425537 +karman_re100,target,140,56.0,velocity,upper_ux,1.1145434379577637 +karman_re100,target,140,56.0,velocity,upper_uy,0.3511967957019806 +karman_re100,target,140,56.0,velocity,center_ux,1.103081464767456 +karman_re100,target,140,56.0,velocity,center_uy,0.5428945422172546 +karman_re100,target,140,56.0,velocity,lower_ux,0.9883452653884888 +karman_re100,target,140,56.0,velocity,lower_uy,0.35145890712738037 +karman_re100,target,141,56.4,velocity,upper_ux,1.0333547592163086 +karman_re100,target,141,56.4,velocity,upper_uy,0.40143340826034546 +karman_re100,target,141,56.4,velocity,center_ux,1.107616901397705 +karman_re100,target,141,56.4,velocity,center_uy,0.5699589252471924 +karman_re100,target,141,56.4,velocity,lower_ux,1.0729453563690186 +karman_re100,target,141,56.4,velocity,lower_uy,0.36652126908302307 +karman_re100,target,142,56.8,velocity,upper_ux,0.9523468017578125 +karman_re100,target,142,56.8,velocity,upper_uy,0.42038246989250183 +karman_re100,target,142,56.8,velocity,center_ux,1.1204837560653687 +karman_re100,target,142,56.8,velocity,center_uy,0.5842885971069336 +karman_re100,target,142,56.8,velocity,lower_ux,1.1536991596221924 +karman_re100,target,142,56.8,velocity,lower_uy,0.3750053644180298 +karman_re100,target,143,57.2,velocity,upper_ux,0.8737515211105347 +karman_re100,target,143,57.2,velocity,upper_uy,0.3882909119129181 +karman_re100,target,143,57.2,velocity,center_ux,1.1366755962371826 +karman_re100,target,143,57.2,velocity,center_uy,0.552979052066803 +karman_re100,target,143,57.2,velocity,lower_ux,1.2269359827041626 +karman_re100,target,143,57.2,velocity,lower_uy,0.34893158078193665 +karman_re100,target,144,57.6,velocity,upper_ux,0.805746853351593 +karman_re100,target,144,57.6,velocity,upper_uy,0.28879231214523315 +karman_re100,target,144,57.6,velocity,center_ux,1.1488242149353027 +karman_re100,target,144,57.6,velocity,center_uy,0.43307191133499146 +karman_re100,target,144,57.6,velocity,lower_ux,1.287913203239441 +karman_re100,target,144,57.6,velocity,lower_uy,0.2778777480125427 +karman_re100,target,145,58.0,velocity,upper_ux,0.7652928829193115 +karman_re100,target,145,58.0,velocity,upper_uy,0.12448551505804062 +karman_re100,target,145,58.0,velocity,center_ux,1.1507008075714111 +karman_re100,target,145,58.0,velocity,center_uy,0.19866780936717987 +karman_re100,target,145,58.0,velocity,lower_ux,1.3244763612747192 +karman_re100,target,145,58.0,velocity,lower_uy,0.16043289005756378 +karman_re100,target,146,58.4,velocity,upper_ux,0.7687589526176453 +karman_re100,target,146,58.4,velocity,upper_uy,-0.06848016381263733 +karman_re100,target,146,58.4,velocity,center_ux,1.141213297843933 +karman_re100,target,146,58.4,velocity,center_uy,-0.09530056267976761 +karman_re100,target,146,58.4,velocity,lower_ux,1.3179196119308472 +karman_re100,target,146,58.4,velocity,lower_uy,0.004456487018615007 +karman_re100,target,147,58.8,velocity,upper_ux,0.8181326985359192 +karman_re100,target,147,58.8,velocity,upper_uy,-0.23161669075489044 +karman_re100,target,147,58.8,velocity,center_ux,1.1251060962677002 +karman_re100,target,147,58.8,velocity,center_uy,-0.3482188284397125 +karman_re100,target,147,58.8,velocity,lower_ux,1.268907904624939 +karman_re100,target,147,58.8,velocity,lower_uy,-0.151424378156662 +karman_re100,target,148,59.2,velocity,upper_ux,0.8994280099868774 +karman_re100,target,148,59.2,velocity,upper_uy,-0.32160359621047974 +karman_re100,target,148,59.2,velocity,center_ux,1.1099634170532227 +karman_re100,target,148,59.2,velocity,center_uy,-0.4917285144329071 +karman_re100,target,148,59.2,velocity,lower_ux,1.195215106010437 +karman_re100,target,148,59.2,velocity,lower_uy,-0.2720727026462555 +karman_re100,target,149,59.6,velocity,upper_ux,0.9891641736030579 +karman_re100,target,149,59.6,velocity,upper_uy,-0.35145285725593567 +karman_re100,target,149,59.6,velocity,center_ux,1.1033231019973755 +karman_re100,target,149,59.6,velocity,center_uy,-0.543056070804596 +karman_re100,target,149,59.6,velocity,lower_ux,1.1144359111785889 +karman_re100,target,149,59.6,velocity,lower_uy,-0.35161277651786804 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_wide.csv new file mode 100644 index 0000000..0c7fe0c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re100/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re100,target,0,0.0,0.812035083770752,0.30261531472206116,1.1480845212936401,0.45128145813941956,1.2823938131332397,0.287433922290802 +karman_re100,target,1,0.4,0.7677544951438904,0.14403098821640015,1.1512078046798706,0.2277425229549408,1.3225741386413574,0.175057053565979 +karman_re100,target,2,0.8,0.7657437920570374,-0.04852975532412529,1.1423300504684448,-0.06450358033180237,1.3205082416534424,0.021698085591197014 +karman_re100,target,3,1.2,0.8108689785003662,-0.21744558215141296,1.1267750263214111,-0.32606765627861023,1.2755136489868164,-0.1361904740333557 +karman_re100,target,4,1.6,0.8901888132095337,-0.31573745608329773,1.1114743947982788,-0.4819938540458679,1.2037899494171143,-0.26137661933898926 +karman_re100,target,5,2.0,0.9799392223358154,-0.34964749217033386,1.1035536527633667,-0.5397924184799194,1.123124361038208,-0.344757080078125 +karman_re100,target,6,2.4,1.0654698610305786,-0.3649882376194,1.1074013710021973,-0.5673738718032837,1.042235016822815,-0.39762377738952637 +karman_re100,target,7,2.8,1.1461074352264404,-0.3752002716064453,1.119099497795105,-0.5843614339828491,0.9605693817138672,-0.42043641209602356 +karman_re100,target,8,3.2,1.219201922416687,-0.3535889685153961,1.1341111660003662,-0.5591274499893188,0.8804168701171875,-0.3943299949169159 +karman_re100,target,9,3.6,1.2819676399230957,-0.2869211435317993,1.1473746299743652,-0.4502863585948944,0.8111828565597534,-0.3019362688064575 +karman_re100,target,10,4.0,1.322648048400879,-0.1742769479751587,1.1511458158493042,-0.2262040376663208,0.7678519487380981,-0.14309248328208923 +karman_re100,target,11,4.4,1.32114577293396,-0.020650606602430344,1.1430779695510864,0.06629147380590439,0.7669715881347656,0.04957792907953262 +karman_re100,target,12,4.8,1.2758020162582397,0.13732928037643433,1.1274683475494385,0.32758602499961853,0.8123586773872375,0.21831078827381134 +karman_re100,target,13,5.2,1.2025068998336792,0.2622847855091095,1.1108115911483765,0.4827052354812622,0.8904141187667847,0.31607142090797424 +karman_re100,target,14,5.6,1.1214674711227417,0.3453749120235443,1.1026054620742798,0.5400255918502808,0.9796508550643921,0.34969761967658997 +karman_re100,target,15,6.0,1.0413429737091064,0.3980522155761719,1.1072888374328613,0.5675710439682007,1.0657992362976074,0.36501967906951904 +karman_re100,target,16,6.4,0.960446298122406,0.4206009805202484,1.119845986366272,0.5843752026557922,1.147172212600708,0.3750964403152466 +karman_re100,target,17,6.8,0.8808760046958923,0.3940218687057495,1.1355568170547485,0.5587111115455627,1.2208648920059204,0.353135883808136 +karman_re100,target,18,7.2,0.8108566999435425,0.30095818638801575,1.1480005979537964,0.4489435851573944,1.2827253341674805,0.28609490394592285 +karman_re100,target,19,7.6,0.7665558457374573,0.1416599005460739,1.1504747867584229,0.22412441670894623,1.3218894004821777,0.1731805056333542 +karman_re100,target,20,8.0,0.7663202881813049,-0.05098826065659523,1.1426303386688232,-0.06826851516962051,1.3203675746917725,0.019598297774791718 +karman_re100,target,21,8.4,0.8126705884933472,-0.21939463913440704,1.127629041671753,-0.3289453089237213,1.2755104303359985,-0.13810043036937714 +karman_re100,target,22,8.8,0.8916969299316406,-0.31670933961868286,1.111690640449524,-0.48335039615631104,1.2028987407684326,-0.2627444863319397 +karman_re100,target,23,9.2,0.9810989499092102,-0.35003411769866943,1.1035232543945312,-0.5402535796165466,1.1218527555465698,-0.34560689330101013 +karman_re100,target,24,9.6,1.0659030675888062,-0.36528387665748596,1.1068559885025024,-0.5677406787872314,1.0403642654418945,-0.39808958768844604 +karman_re100,target,25,10.0,1.1465972661972046,-0.3752528429031372,1.1187708377838135,-0.5843900442123413,0.958926796913147,-0.42038506269454956 +karman_re100,target,26,10.4,1.2208735942840576,-0.35305464267730713,1.1350692510604858,-0.5583990812301636,0.8801062107086182,-0.3935069739818573 +karman_re100,target,27,10.8,1.2833970785140991,-0.28576430678367615,1.1481128931045532,-0.4480416178703308,0.8109070658683777,-0.3001171350479126 +karman_re100,target,28,11.2,1.323048710823059,-0.1724335253238678,1.151106834411621,-0.22247076034545898,0.7674306631088257,-0.1404888778924942 +karman_re100,target,29,11.6,1.3205647468566895,-0.01846388913691044,1.1425349712371826,0.07028083503246307,0.7668522596359253,0.052223194390535355 +karman_re100,target,30,12.0,1.2741824388504028,0.13916942477226257,1.1262929439544678,0.33036601543426514,0.8122022747993469,0.22011509537696838 +karman_re100,target,31,12.4,1.201677680015564,0.2635015547275543,1.1106513738632202,0.4838998317718506,0.8914790153503418,0.31679290533065796 +karman_re100,target,32,12.8,1.1213570833206177,0.3461456298828125,1.103358507156372,0.5404130816459656,0.9815623760223389,0.34990960359573364 +karman_re100,target,33,13.2,1.0406173467636108,0.39850494265556335,1.1076008081436157,0.5678924322128296,1.0671203136444092,0.3652181625366211 +karman_re100,target,34,13.6,0.9593124389648438,0.4205651581287384,1.1198159456253052,0.5843759775161743,1.1480408906936646,0.37511852383613586 +karman_re100,target,35,14.0,0.8793003559112549,0.3932307958602905,1.1349698305130005,0.5579212307929993,1.2210444211959839,0.3525986075401306 +karman_re100,target,36,14.4,0.8095651268959045,0.29937687516212463,1.147293210029602,0.44686344265937805,1.2826828956604004,0.28504663705825806 +karman_re100,target,37,14.8,0.7669968605041504,0.13943429291248322,1.1508842706680298,0.22075209021568298,1.3227074146270752,0.17150646448135376 +karman_re100,target,38,15.2,0.7674164772033691,-0.05338115990161896,1.142965316772461,-0.07209604233503342,1.3206281661987305,0.01742694526910782 +karman_re100,target,39,15.6,0.8137084245681763,-0.22110392153263092,1.1273289918899536,-0.33180758357048035,1.274634599685669,-0.14014899730682373 +karman_re100,target,40,16.0,0.8927103281021118,-0.3173467814922333,1.1111860275268555,-0.48462486267089844,1.2014801502227783,-0.2642610967159271 +karman_re100,target,41,16.4,0.9814931750297546,-0.35015419125556946,1.1026726961135864,-0.5406719446182251,1.1198838949203491,-0.3466239869594574 +karman_re100,target,42,16.8,1.066957950592041,-0.36538928747177124,1.1069843769073486,-0.568096935749054,1.0392287969589233,-0.3987596929073334 +karman_re100,target,43,17.2,1.1485294103622437,-0.37513551115989685,1.1199350357055664,-0.5843937397003174,0.9586631059646606,-0.42054450511932373 +karman_re100,target,44,17.6,1.2222164869308472,-0.3523033857345581,1.135820984840393,-0.5575626492500305,0.879370927810669,-0.3928065598011017 +karman_re100,target,45,18.0,1.2840962409973145,-0.2844059467315674,1.148380994796753,-0.44565972685813904,0.8099439144134521,-0.2983766496181488 +karman_re100,target,46,18.4,1.3228116035461426,-0.1704746037721634,1.150794267654419,-0.21867088973522186,0.7665148377418518,-0.13793766498565674 +karman_re100,target,47,18.8,1.31956148147583,-0.0163396205753088,1.1419447660446167,0.07413597404956818,0.7664347290992737,0.05480088293552399 +karman_re100,target,48,19.2,1.2739135026931763,0.14095304906368256,1.1268056631088257,0.33312541246414185,0.8135271668434143,0.2220384031534195 +karman_re100,target,49,19.6,1.2013490200042725,0.26474234461784363,1.1113224029541016,0.4851912558078766,0.8933419585227966,0.31776633858680725 +karman_re100,target,50,20.0,1.1203460693359375,0.3468916714191437,1.1034746170043945,0.5408557653427124,0.9828254580497742,0.35031798481941223 +karman_re100,target,51,20.4,1.0392950773239136,0.3988759219646454,1.1074838638305664,0.5682435631752014,1.0679961442947388,0.36554116010665894 +karman_re100,target,52,20.8,0.9574712514877319,0.4204210937023163,1.1191701889038086,0.5843856334686279,1.148277759552002,0.375210165977478 +karman_re100,target,53,21.2,0.8781440258026123,0.39236754179000854,1.1348600387573242,0.5571955442428589,1.2217097282409668,0.3521380126476288 +karman_re100,target,54,21.6,0.8095811605453491,0.29762178659439087,1.1480333805084229,0.44471853971481323,1.284194827079773,0.28400668501853943 +karman_re100,target,55,22.0,0.7670566439628601,0.13692286610603333,1.1510447263717651,0.21711623668670654,1.323423147201538,0.16973544657230377 +karman_re100,target,56,22.4,0.7676176428794861,-0.05590338259935379,1.142493486404419,-0.07601464539766312,1.320229172706604,0.015245147980749607 +karman_re100,target,57,22.8,0.8140778541564941,-0.2227998524904251,1.1264439821243286,-0.33460158109664917,1.2733606100082397,-0.14209656417369843 +karman_re100,target,58,23.2,0.8930761218070984,-0.31792405247688293,1.110163927078247,-0.48580247163772583,1.1997880935668945,-0.2656043469905853 +karman_re100,target,59,23.6,0.9829467535018921,-0.350245863199234,1.1029495000839233,-0.5410470366477966,1.1192913055419922,-0.3474999964237213 +karman_re100,target,60,24.0,1.0687453746795654,-0.3654972016811371,1.1077839136123657,-0.5684166550636292,1.0389389991760254,-0.3993319272994995 +karman_re100,target,61,24.4,1.1496657133102417,-0.37505853176116943,1.1202219724655151,-0.5843784809112549,0.9577237963676453,-0.4206252992153168 +karman_re100,target,62,24.8,1.2228777408599854,-0.3516332507133484,1.1358118057250977,-0.5567141175270081,0.8781863451004028,-0.39207789301872253 +karman_re100,target,63,25.2,1.2840332984924316,-0.28317883610725403,1.1478004455566406,-0.4433908760547638,0.8085365891456604,-0.29673779010772705 +karman_re100,target,64,25.6,1.3226968050003052,-0.16870063543319702,1.15049409866333,-0.21519795060157776,0.766022801399231,-0.13567203283309937 +karman_re100,target,65,26.0,1.3198908567428589,-0.014207380823791027,1.1425729990005493,0.07790452986955643,0.7676012516021729,0.05720249563455582 +karman_re100,target,66,26.4,1.2734501361846924,0.1429395228624344,1.127101182937622,0.3359788656234741,0.8149902820587158,0.22385922074317932 +karman_re100,target,67,26.8,1.2001250982284546,0.2661803364753723,1.1111449003219604,0.48647719621658325,0.8945723176002502,0.31855860352516174 +karman_re100,target,68,27.2,1.1187787055969238,0.34782809019088745,1.1031280755996704,0.5412938594818115,0.9836965203285217,0.3505766987800598 +karman_re100,target,69,27.6,1.0374681949615479,0.39943936467170715,1.1069777011871338,0.5686056613922119,1.0684354305267334,0.36574363708496094 +karman_re100,target,70,28.0,0.956645667552948,0.4204655587673187,1.1197304725646973,0.5843933820724487,1.1496130228042603,0.3751657009124756 +karman_re100,target,71,28.4,0.8778162598609924,0.3915739059448242,1.1359434127807617,0.556378185749054,1.2234399318695068,0.3514685034751892 +karman_re100,target,72,28.8,0.8088483214378357,0.2958005964756012,1.1484565734863281,0.44234874844551086,1.2851742506027222,0.2827214002609253 +karman_re100,target,73,29.2,0.7664539217948914,0.1343102902173996,1.1509580612182617,0.21330688893795013,1.3235758543014526,0.16780853271484375 +karman_re100,target,74,29.6,0.7672211527824402,-0.0585409440100193,1.1418133974075317,-0.07995446026325226,1.3193076848983765,0.013080030679702759 +karman_re100,target,75,30.0,0.8144451975822449,-0.22463828325271606,1.1259275674819946,-0.33730658888816833,1.2722351551055908,-0.14386223256587982 +karman_re100,target,76,30.4,0.8947944045066833,-0.31876125931739807,1.1107028722763062,-0.4870035946369171,1.19950532913208,-0.26678818464279175 +karman_re100,target,77,30.8,0.9845665097236633,-0.35056519508361816,1.1034246683120728,-0.5414522290229797,1.1187812089920044,-0.3482274115085602 +karman_re100,target,78,31.2,1.0697535276412964,-0.3657701909542084,1.1077934503555298,-0.5687511563301086,1.0378499031066895,-0.39971232414245605 +karman_re100,target,79,31.6,1.150292158126831,-0.3751176595687866,1.119949221611023,-0.5843672752380371,0.9563309550285339,-0.42049628496170044 +karman_re100,target,80,32.0,1.2229955196380615,-0.35114094614982605,1.1351425647735596,-0.5559332370758057,0.8765504956245422,-0.39121806621551514 +karman_re100,target,81,32.4,1.2848018407821655,-0.28215786814689636,1.1478314399719238,-0.4412832260131836,0.8079938292503357,-0.29507434368133545 +karman_re100,target,82,32.8,1.3236738443374634,-0.16697442531585693,1.1509629487991333,-0.2116812914609909,0.7665380835533142,-0.1333029419183731 +karman_re100,target,83,33.2,1.3197184801101685,-0.012018220499157906,1.1423795223236084,0.0817718431353569,0.7682008147239685,0.0596376471221447 +karman_re100,target,84,33.6,1.2723937034606934,0.14494270086288452,1.1265134811401367,0.3387623131275177,0.8157537579536438,0.22550350427627563 +karman_re100,target,85,34.0,1.1984843015670776,0.2676261067390442,1.110296607017517,0.48766830563545227,0.8952136039733887,0.31911149621009827 +karman_re100,target,86,34.4,1.1172720193862915,0.34878748655319214,1.1026127338409424,0.5416796207427979,0.9843865036964417,0.35064971446990967 +karman_re100,target,87,34.8,1.0370067358016968,0.4000800848007202,1.1077022552490234,0.5689429640769958,1.0701038837432861,0.36583003401756287 +karman_re100,target,88,35.2,0.9561149477958679,0.4205925464630127,1.120558261871338,0.5843659043312073,1.151240587234497,0.3750334084033966 +karman_re100,target,89,35.6,0.8767637610435486,0.3908538520336151,1.136256456375122,0.5554980039596558,1.2243590354919434,0.3507160544395447 +karman_re100,target,90,36.0,0.8077561855316162,0.29408353567123413,1.1484253406524658,0.43994879722595215,1.285576581954956,0.28137919306755066 +karman_re100,target,91,36.4,0.7655217051506042,0.13187818229198456,1.1504478454589844,0.20961910486221313,1.3231360912322998,0.1659044474363327 +karman_re100,target,92,36.8,0.7676110863685608,-0.061011914163827896,1.1418763399124146,-0.0837256908416748,1.318954586982727,0.010968871414661407 +karman_re100,target,93,37.2,0.8161090612411499,-0.22651629149913788,1.126617431640625,-0.3400861620903015,1.272101879119873,-0.14573022723197937 +karman_re100,target,94,37.6,0.8963051438331604,-0.31965941190719604,1.1109223365783691,-0.48827090859413147,1.1986608505249023,-0.2681087553501129 +karman_re100,target,95,38.0,0.9856442213058472,-0.35092127323150635,1.1033326387405396,-0.5418899655342102,1.1174874305725098,-0.349045068025589 +karman_re100,target,96,38.4,1.0704014301300049,-0.3660513162612915,1.1074700355529785,-0.5691068768501282,1.0362389087677002,-0.40015193819999695 +karman_re100,target,97,38.8,1.1508289575576782,-0.37514328956604004,1.119659423828125,-0.5843629837036133,0.9547511339187622,-0.42040902376174927 +karman_re100,target,98,39.2,1.2243990898132324,-0.3505803942680359,1.1358294486999512,-0.5551456809043884,0.8760220408439636,-0.3903551995754242 +karman_re100,target,99,39.6,1.286171317100525,-0.28098368644714355,1.148512363433838,-0.4389711618423462,0.8077432513237,-0.2932324707508087 +karman_re100,target,100,40.0,1.3240128755569458,-0.1651148647069931,1.1508841514587402,-0.20792783796787262,0.7661712765693665,-0.1307111382484436 +karman_re100,target,101,40.4,1.3191311359405518,-0.009843578562140465,1.1418559551239014,0.08569447696208954,0.7681806683540344,0.06221691146492958 +karman_re100,target,102,40.8,1.270996332168579,0.1467837542295456,1.1255918741226196,0.3414723575115204,0.8159189820289612,0.22723931074142456 +karman_re100,target,103,41.2,1.197463870048523,0.2688542902469635,1.1099830865859985,0.4888073205947876,0.8961688876152039,0.31977570056915283 +karman_re100,target,104,41.6,1.1169898509979248,0.34957051277160645,1.1032288074493408,0.5420563220977783,0.986156702041626,0.3508390784263611 +karman_re100,target,105,42.0,1.0362956523895264,0.40054261684417725,1.108065128326416,0.5692631006240845,1.0714648962020874,0.36601492762565613 +karman_re100,target,106,42.4,0.9549334645271301,0.42055046558380127,1.120520830154419,0.5843372941017151,1.1520791053771973,0.3750137686729431 +karman_re100,target,107,42.8,0.8753806948661804,0.3900349736213684,1.135907530784607,0.5546469688415527,1.224745512008667,0.35012200474739075 +karman_re100,target,108,43.2,0.8065635561943054,0.2924324870109558,1.147874116897583,0.43774116039276123,1.2856537103652954,0.28025513887405396 +karman_re100,target,109,43.6,0.765734076499939,0.12959714233875275,1.1506704092025757,0.20615537464618683,1.3236992359161377,0.16416728496551514 +karman_re100,target,110,44.0,0.7686783671379089,-0.06340890377759933,1.1422197818756104,-0.08753275871276855,1.319149374961853,0.008798518218100071 +karman_re100,target,111,44.4,0.8171631693840027,-0.22820842266082764,1.126369595527649,-0.3428688943386078,1.271227240562439,-0.1477319449186325 +karman_re100,target,112,44.8,0.8973208069801331,-0.320292592048645,1.110467553138733,-0.48947420716285706,1.197269320487976,-0.2695583403110504 +karman_re100,target,113,45.2,0.9862890839576721,-0.3510713279247284,1.102760910987854,-0.5422983169555664,1.1157852411270142,-0.35000884532928467 +karman_re100,target,114,45.6,1.071348786354065,-0.36618292331695557,1.107488751411438,-0.5694569945335388,1.0349903106689453,-0.400765061378479 +karman_re100,target,115,46.0,1.1525667905807495,-0.37502795457839966,1.1206254959106445,-0.584339439868927,0.9543167948722839,-0.42049694061279297 +karman_re100,target,116,46.4,1.2257407903671265,-0.34982848167419434,1.1365618705749512,-0.554256796836853,0.8753206133842468,-0.3895791172981262 +karman_re100,target,117,46.8,1.2868149280548096,-0.27963125705718994,1.1486945152282715,-0.43652790784835815,0.8067755103111267,-0.2914366126060486 +karman_re100,target,118,47.2,1.3238962888717651,-0.16315871477127075,1.150657296180725,-0.20411790907382965,0.7654426693916321,-0.12814971804618835 +karman_re100,target,119,47.6,1.3182456493377686,-0.007709298748522997,1.1413453817367554,0.08954059332609177,0.7679441571235657,0.06477923691272736 +karman_re100,target,120,48.0,1.2704864740371704,0.1485568881034851,1.1258243322372437,0.3441559672355652,0.8170408606529236,0.22908388078212738 +karman_re100,target,121,48.4,1.19707453250885,0.27007365226745605,1.1105560064315796,0.49001315236091614,0.8979573845863342,0.3206539452075958 +karman_re100,target,122,48.8,1.1160074472427368,0.3503125011920929,1.1033495664596558,0.5424751043319702,0.9874223470687866,0.3511981666088104 +karman_re100,target,123,49.2,1.0349823236465454,0.40091729164123535,1.1079413890838623,0.5696068406105042,1.0723227262496948,0.36630943417549133 +karman_re100,target,124,49.6,0.9533426761627197,0.420399934053421,1.1201229095458984,0.5843144059181213,1.1525516510009766,0.37506064772605896 +karman_re100,target,125,50.0,0.874168336391449,0.38914260268211365,1.1357464790344238,0.5538485050201416,1.2253460884094238,0.34960633516311646 +karman_re100,target,126,50.4,0.8064136505126953,0.29065707325935364,1.1484298706054688,0.4355088472366333,1.2869431972503662,0.2791665494441986 +karman_re100,target,127,50.8,0.765856146812439,0.12709128856658936,1.1508592367172241,0.2024834007024765,1.324378252029419,0.16235928237438202 +karman_re100,target,128,51.2,0.7689172625541687,-0.0658968836069107,1.1417580842971802,-0.09141411632299423,1.3186895847320557,0.0066131846979260445 +karman_re100,target,129,51.6,0.8176860213279724,-0.22985237836837769,1.1256319284439087,-0.3455774784088135,1.2700355052947998,-0.14965389668941498 +karman_re100,target,130,52.0,0.8979009389877319,-0.32085034251213074,1.1096539497375488,-0.4905981719493866,1.1957212686538696,-0.2708892524242401 +karman_re100,target,131,52.4,0.9875641465187073,-0.35117557644844055,1.1028674840927124,-0.5426676869392395,1.1149659156799316,-0.350877583026886 +karman_re100,target,132,52.8,1.0730565786361694,-0.36630210280418396,1.1082266569137573,-0.5697791576385498,1.0345994234085083,-0.40132153034210205 +karman_re100,target,133,53.2,1.1537350416183472,-0.3749271035194397,1.1209617853164673,-0.5842931270599365,0.9533947110176086,-0.4205387234687805 +karman_re100,target,134,53.6,1.2263983488082886,-0.34912529587745667,1.136564016342163,-0.5533534288406372,0.8741214275360107,-0.3887990713119507 +karman_re100,target,135,54.0,1.2869800329208374,-0.27836453914642334,1.1483519077301025,-0.43416300415992737,0.8055860996246338,-0.28973135352134705 +karman_re100,target,136,54.4,1.323762059211731,-0.16132906079292297,1.1503602266311646,-0.2005414515733719,0.7649402022361755,-0.12580671906471252 +karman_re100,target,137,54.8,1.3183550834655762,-0.00557597354054451,1.1417790651321411,0.09329944849014282,0.7689125537872314,0.06719134002923965 +karman_re100,target,138,55.2,1.2700227499008179,0.15049298107624054,1.126128077507019,0.3469177186489105,0.8184977769851685,0.23086261749267578 +karman_re100,target,139,55.6,1.1958638429641724,0.27145102620124817,1.1103826761245728,0.4912213385105133,0.8991665840148926,0.3214128017425537 +karman_re100,target,140,56.0,1.1145434379577637,0.3511967957019806,1.103081464767456,0.5428945422172546,0.9883452653884888,0.35145890712738037 +karman_re100,target,141,56.4,1.0333547592163086,0.40143340826034546,1.107616901397705,0.5699589252471924,1.0729453563690186,0.36652126908302307 +karman_re100,target,142,56.8,0.9523468017578125,0.42038246989250183,1.1204837560653687,0.5842885971069336,1.1536991596221924,0.3750053644180298 +karman_re100,target,143,57.2,0.8737515211105347,0.3882909119129181,1.1366755962371826,0.552979052066803,1.2269359827041626,0.34893158078193665 +karman_re100,target,144,57.6,0.805746853351593,0.28879231214523315,1.1488242149353027,0.43307191133499146,1.287913203239441,0.2778777480125427 +karman_re100,target,145,58.0,0.7652928829193115,0.12448551505804062,1.1507008075714111,0.19866780936717987,1.3244763612747192,0.16043289005756378 +karman_re100,target,146,58.4,0.7687589526176453,-0.06848016381263733,1.141213297843933,-0.09530056267976761,1.3179196119308472,0.004456487018615007 +karman_re100,target,147,58.8,0.8181326985359192,-0.23161669075489044,1.1251060962677002,-0.3482188284397125,1.268907904624939,-0.151424378156662 +karman_re100,target,148,59.2,0.8994280099868774,-0.32160359621047974,1.1099634170532227,-0.4917285144329071,1.195215106010437,-0.2720727026462555 +karman_re100,target,149,59.6,0.9891641736030579,-0.35145285725593567,1.1033231019973755,-0.543056070804596,1.1144359111785889,-0.35161277651786804 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv new file mode 100644 index 0000000..c51f286 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re200,sr,60,24.0,30,0.8860610297295756,6,0.9090116838614146,0.9340067843499128,0.7927372932434082,0.8338301946719487,0.9130889972050985,0.933691225045671 +karman_re200,sr,90,36.0,30,0.8605975824485844,4,0.8960293650627136,0.9166142129649719,0.7470898171265921,0.7851282459994158,0.8967823624610901,0.9219414910767227 +karman_re200,sr,120,48.0,30,0.8598086250363849,2,0.8888200283050537,0.9270099081099034,0.7491443475087484,0.7849999965711807,0.8898925085862478,0.9189849611371755 +karman_re200,sr,150,60.0,30,0.8599718192540523,1,0.888737561305364,0.9244309265166522,0.7474124093850454,0.7911499981457988,0.8903996547063192,0.9177003654651343 +karman_re200,sr,180,72.0,30,0.8603511417310479,0,0.890755710999171,0.9275152243673801,0.7514478445053101,0.7831207877025008,0.8900928934415182,0.9191743893704066 +karman_re200,sr,210,84.0,30,0.8637184131062693,-2,0.8988025307655334,0.9223986162493626,0.7536610106627146,0.7854901707110306,0.8934601724147797,0.9284979778341949 +karman_re200,sr,240,96.0,30,0.8610820056663618,-3,0.8978820482889811,0.9254889011383056,0.7501564045747121,0.7784633956849575,0.8938872456550598,0.9206140386561552 +karman_re200,sr,270,108.0,30,0.8634477683705174,-5,0.8948395331700643,0.923519542068243,0.7480091174443563,0.7918217023213705,0.8920271535714468,0.9304695616476237 +karman_re200,sr,300,120.0,30,0.8615622592313835,-6,0.8884098311265309,0.9243147398034731,0.7499185681343079,0.7889887131750584,0.88685289422671,0.9308888089222213 +karman_re200,sr,330,132.0,30,0.8615638350039565,7,0.88883589108785,0.9224950504799684,0.7517450749874115,0.786836597979224,0.8934852679570516,0.9259851275322338 +karman_re200,sr,360,144.0,30,0.8628798636336189,6,0.8928590218226115,0.9224863202000657,0.754165275891622,0.7870092526078224,0.8985049009323121,0.9222544103472804 +karman_re200,sr,390,156.0,30,0.8601114170211884,4,0.8929146746794383,0.920564073882997,0.7483474453290304,0.78548021633178,0.8976025819778443,0.9157595099260409 +karman_re200,sr,400,160.0,30,0.8638503336192419,-1,0.8958912909030914,0.9308393463492394,0.7527182896931967,0.7863030238697926,0.8942160546779633,0.9231339962221682 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_long.csv new file mode 100644 index 0000000..3eb0be6 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,sr,0,0.0,velocity,upper_ux,0.9913665652275085 +karman_re200,sr,0,0.0,velocity,upper_uy,0.3182585835456848 +karman_re200,sr,0,0.0,velocity,center_ux,1.0089699029922485 +karman_re200,sr,0,0.0,velocity,center_uy,0.46513405442237854 +karman_re200,sr,0,0.0,velocity,lower_ux,1.100783109664917 +karman_re200,sr,0,0.0,velocity,lower_uy,0.3578247129917145 +karman_re200,sr,1,0.4,velocity,upper_ux,0.9487677216529846 +karman_re200,sr,1,0.4,velocity,upper_uy,0.28233566880226135 +karman_re200,sr,1,0.4,velocity,center_ux,0.9937148094177246 +karman_re200,sr,1,0.4,velocity,center_uy,0.4343280792236328 +karman_re200,sr,1,0.4,velocity,lower_ux,1.1662880182266235 +karman_re200,sr,1,0.4,velocity,lower_uy,0.3375072479248047 +karman_re200,sr,2,0.8,velocity,upper_ux,0.9169065356254578 +karman_re200,sr,2,0.8,velocity,upper_uy,0.2065761536359787 +karman_re200,sr,2,0.8,velocity,center_ux,0.9596056342124939 +karman_re200,sr,2,0.8,velocity,center_uy,0.3333486318588257 +karman_re200,sr,2,0.8,velocity,lower_ux,1.2393661737442017 +karman_re200,sr,2,0.8,velocity,lower_uy,0.2792721688747406 +karman_re200,sr,3,1.2,velocity,upper_ux,0.8910400867462158 +karman_re200,sr,3,1.2,velocity,upper_uy,0.07080867141485214 +karman_re200,sr,3,1.2,velocity,center_ux,0.9384143352508545 +karman_re200,sr,3,1.2,velocity,center_uy,0.10350053012371063 +karman_re200,sr,3,1.2,velocity,lower_ux,1.273138403892517 +karman_re200,sr,3,1.2,velocity,lower_uy,0.10913016647100449 +karman_re200,sr,4,1.6,velocity,upper_ux,0.8801422119140625 +karman_re200,sr,4,1.6,velocity,upper_uy,-0.11167014390230179 +karman_re200,sr,4,1.6,velocity,center_ux,0.9532502889633179 +karman_re200,sr,4,1.6,velocity,center_uy,-0.1501847207546234 +karman_re200,sr,4,1.6,velocity,lower_ux,1.2689154148101807 +karman_re200,sr,4,1.6,velocity,lower_uy,-0.06708255410194397 +karman_re200,sr,5,2.0,velocity,upper_ux,0.9104223847389221 +karman_re200,sr,5,2.0,velocity,upper_uy,-0.24893303215503693 +karman_re200,sr,5,2.0,velocity,center_ux,0.9740337133407593 +karman_re200,sr,5,2.0,velocity,center_uy,-0.36438170075416565 +karman_re200,sr,5,2.0,velocity,lower_ux,1.2124141454696655 +karman_re200,sr,5,2.0,velocity,lower_uy,-0.22402901947498322 +karman_re200,sr,6,2.4,velocity,upper_ux,0.9738724231719971 +karman_re200,sr,6,2.4,velocity,upper_uy,-0.30011826753616333 +karman_re200,sr,6,2.4,velocity,center_ux,0.9938533306121826 +karman_re200,sr,6,2.4,velocity,center_uy,-0.4684333801269531 +karman_re200,sr,6,2.4,velocity,lower_ux,1.124509334564209 +karman_re200,sr,6,2.4,velocity,lower_uy,-0.32530099153518677 +karman_re200,sr,7,2.8,velocity,upper_ux,1.0391086339950562 +karman_re200,sr,7,2.8,velocity,upper_uy,-0.333448588848114 +karman_re200,sr,7,2.8,velocity,center_ux,1.0096826553344727 +karman_re200,sr,7,2.8,velocity,center_uy,-0.48284226655960083 +karman_re200,sr,7,2.8,velocity,lower_ux,1.0525723695755005 +karman_re200,sr,7,2.8,velocity,lower_uy,-0.3536377251148224 +karman_re200,sr,8,3.2,velocity,upper_ux,1.1015392541885376 +karman_re200,sr,8,3.2,velocity,upper_uy,-0.33966904878616333 +karman_re200,sr,8,3.2,velocity,center_ux,1.0151978731155396 +karman_re200,sr,8,3.2,velocity,center_uy,-0.47134003043174744 +karman_re200,sr,8,3.2,velocity,lower_ux,0.9984479546546936 +karman_re200,sr,8,3.2,velocity,lower_uy,-0.3454674780368805 +karman_re200,sr,9,3.6,velocity,upper_ux,1.1667157411575317 +karman_re200,sr,9,3.6,velocity,upper_uy,-0.315559983253479 +karman_re200,sr,9,3.6,velocity,center_ux,1.0064953565597534 +karman_re200,sr,9,3.6,velocity,center_uy,-0.43288612365722656 +karman_re200,sr,9,3.6,velocity,lower_ux,0.9578036665916443 +karman_re200,sr,9,3.6,velocity,lower_uy,-0.304428368806839 +karman_re200,sr,10,4.0,velocity,upper_ux,1.2356343269348145 +karman_re200,sr,10,4.0,velocity,upper_uy,-0.2526494264602661 +karman_re200,sr,10,4.0,velocity,center_ux,0.9792754650115967 +karman_re200,sr,10,4.0,velocity,center_uy,-0.31289488077163696 +karman_re200,sr,10,4.0,velocity,lower_ux,0.9258700609207153 +karman_re200,sr,10,4.0,velocity,lower_uy,-0.21543149650096893 +karman_re200,sr,11,4.4,velocity,upper_ux,1.2623109817504883 +karman_re200,sr,11,4.4,velocity,upper_uy,-0.08648306876420975 +karman_re200,sr,11,4.4,velocity,center_ux,0.9683554172515869 +karman_re200,sr,11,4.4,velocity,center_uy,-0.067433200776577 +karman_re200,sr,11,4.4,velocity,lower_ux,0.8974692821502686 +karman_re200,sr,11,4.4,velocity,lower_uy,-0.04925750195980072 +karman_re200,sr,12,4.8,velocity,upper_ux,1.2514129877090454 +karman_re200,sr,12,4.8,velocity,upper_uy,0.08558643609285355 +karman_re200,sr,12,4.8,velocity,center_ux,0.9870423078536987 +karman_re200,sr,12,4.8,velocity,center_uy,0.1884613186120987 +karman_re200,sr,12,4.8,velocity,lower_ux,0.8912653923034668 +karman_re200,sr,12,4.8,velocity,lower_uy,0.1579289585351944 +karman_re200,sr,13,5.2,velocity,upper_ux,1.1905517578125 +karman_re200,sr,13,5.2,velocity,upper_uy,0.2296745926141739 +karman_re200,sr,13,5.2,velocity,center_ux,1.0004289150238037 +karman_re200,sr,13,5.2,velocity,center_uy,0.39505207538604736 +karman_re200,sr,13,5.2,velocity,lower_ux,0.9297588467597961 +karman_re200,sr,13,5.2,velocity,lower_uy,0.2837495505809784 +karman_re200,sr,14,5.6,velocity,upper_ux,1.1043553352355957 +karman_re200,sr,14,5.6,velocity,upper_uy,0.30974581837654114 +karman_re200,sr,14,5.6,velocity,center_ux,1.0108163356781006 +karman_re200,sr,14,5.6,velocity,center_uy,0.4628152549266815 +karman_re200,sr,14,5.6,velocity,lower_ux,0.9920749664306641 +karman_re200,sr,14,5.6,velocity,lower_uy,0.32253968715667725 +karman_re200,sr,15,6.0,velocity,upper_ux,1.0359492301940918 +karman_re200,sr,15,6.0,velocity,upper_uy,0.3291122019290924 +karman_re200,sr,15,6.0,velocity,center_ux,1.0155818462371826 +karman_re200,sr,15,6.0,velocity,center_uy,0.4725411534309387 +karman_re200,sr,15,6.0,velocity,lower_ux,1.053351640701294 +karman_re200,sr,15,6.0,velocity,lower_uy,0.3487556576728821 +karman_re200,sr,16,6.4,velocity,upper_ux,0.9838852882385254 +karman_re200,sr,16,6.4,velocity,upper_uy,0.31612446904182434 +karman_re200,sr,16,6.4,velocity,center_ux,1.0117802619934082 +karman_re200,sr,16,6.4,velocity,center_uy,0.46028056740760803 +karman_re200,sr,16,6.4,velocity,lower_ux,1.1118358373641968 +karman_re200,sr,16,6.4,velocity,lower_uy,0.3445528447628021 +karman_re200,sr,17,6.8,velocity,upper_ux,0.9458386898040771 +karman_re200,sr,17,6.8,velocity,upper_uy,0.2702549993991852 +karman_re200,sr,17,6.8,velocity,center_ux,0.9957370758056641 +karman_re200,sr,17,6.8,velocity,center_uy,0.42160704731941223 +karman_re200,sr,17,6.8,velocity,lower_ux,1.1736027002334595 +karman_re200,sr,17,6.8,velocity,lower_uy,0.3084384500980377 +karman_re200,sr,18,7.2,velocity,upper_ux,0.9150905609130859 +karman_re200,sr,18,7.2,velocity,upper_uy,0.17803670465946198 +karman_re200,sr,18,7.2,velocity,center_ux,0.9607751369476318 +karman_re200,sr,18,7.2,velocity,center_uy,0.3031085133552551 +karman_re200,sr,18,7.2,velocity,lower_ux,1.2343130111694336 +karman_re200,sr,18,7.2,velocity,lower_uy,0.2396233230829239 +karman_re200,sr,19,7.6,velocity,upper_ux,0.8871034979820251 +karman_re200,sr,19,7.6,velocity,upper_uy,0.019319236278533936 +karman_re200,sr,19,7.6,velocity,center_ux,0.9351649284362793 +karman_re200,sr,19,7.6,velocity,center_uy,0.06866128742694855 +karman_re200,sr,19,7.6,velocity,lower_ux,1.2708600759506226 +karman_re200,sr,19,7.6,velocity,lower_uy,0.15285411477088928 +karman_re200,sr,20,8.0,velocity,upper_ux,0.880852460861206 +karman_re200,sr,20,8.0,velocity,upper_uy,-0.17526215314865112 +karman_re200,sr,20,8.0,velocity,center_ux,0.9337599277496338 +karman_re200,sr,20,8.0,velocity,center_uy,-0.17358894646167755 +karman_re200,sr,20,8.0,velocity,lower_ux,1.2466871738433838 +karman_re200,sr,20,8.0,velocity,lower_uy,0.09092991054058075 +karman_re200,sr,21,8.4,velocity,upper_ux,0.919196605682373 +karman_re200,sr,21,8.4,velocity,upper_uy,-0.28636372089385986 +karman_re200,sr,21,8.4,velocity,center_ux,0.9256327748298645 +karman_re200,sr,21,8.4,velocity,center_uy,-0.3795475363731384 +karman_re200,sr,21,8.4,velocity,lower_ux,1.1143535375595093 +karman_re200,sr,21,8.4,velocity,lower_uy,-0.02489936538040638 +karman_re200,sr,22,8.8,velocity,upper_ux,0.9821725487709045 +karman_re200,sr,22,8.8,velocity,upper_uy,-0.3315228223800659 +karman_re200,sr,22,8.8,velocity,center_ux,0.9240099191665649 +karman_re200,sr,22,8.8,velocity,center_uy,-0.4837685823440552 +karman_re200,sr,22,8.8,velocity,lower_ux,0.9775169491767883 +karman_re200,sr,22,8.8,velocity,lower_uy,-0.24240344762802124 +karman_re200,sr,23,9.2,velocity,upper_ux,1.049548625946045 +karman_re200,sr,23,9.2,velocity,upper_uy,-0.3641444742679596 +karman_re200,sr,23,9.2,velocity,center_ux,0.9323201775550842 +karman_re200,sr,23,9.2,velocity,center_uy,-0.5243586897850037 +karman_re200,sr,23,9.2,velocity,lower_ux,0.9182724952697754 +karman_re200,sr,23,9.2,velocity,lower_uy,-0.37266674637794495 +karman_re200,sr,24,9.6,velocity,upper_ux,1.116589069366455 +karman_re200,sr,24,9.6,velocity,upper_uy,-0.3590174913406372 +karman_re200,sr,24,9.6,velocity,center_ux,0.938459575176239 +karman_re200,sr,24,9.6,velocity,center_uy,-0.5452936291694641 +karman_re200,sr,24,9.6,velocity,lower_ux,0.8858456611633301 +karman_re200,sr,24,9.6,velocity,lower_uy,-0.38606226444244385 +karman_re200,sr,25,10.0,velocity,upper_ux,1.1834497451782227 +karman_re200,sr,25,10.0,velocity,upper_uy,-0.3190605342388153 +karman_re200,sr,25,10.0,velocity,center_ux,0.9409742951393127 +karman_re200,sr,25,10.0,velocity,center_uy,-0.5367419719696045 +karman_re200,sr,25,10.0,velocity,lower_ux,0.8506439924240112 +karman_re200,sr,25,10.0,velocity,lower_uy,-0.338134765625 +karman_re200,sr,26,10.4,velocity,upper_ux,1.2445859909057617 +karman_re200,sr,26,10.4,velocity,upper_uy,-0.2530595064163208 +karman_re200,sr,26,10.4,velocity,center_ux,0.9360712170600891 +karman_re200,sr,26,10.4,velocity,center_uy,-0.4613456726074219 +karman_re200,sr,26,10.4,velocity,lower_ux,0.8132675886154175 +karman_re200,sr,26,10.4,velocity,lower_uy,-0.2458895444869995 +karman_re200,sr,27,10.8,velocity,upper_ux,1.3035088777542114 +karman_re200,sr,27,10.8,velocity,upper_uy,-0.18766511976718903 +karman_re200,sr,27,10.8,velocity,center_ux,0.8574787974357605 +karman_re200,sr,27,10.8,velocity,center_uy,-0.32882511615753174 +karman_re200,sr,27,10.8,velocity,lower_ux,0.7919321656227112 +karman_re200,sr,27,10.8,velocity,lower_uy,-0.11537827551364899 +karman_re200,sr,28,11.2,velocity,upper_ux,1.3378945589065552 +karman_re200,sr,28,11.2,velocity,upper_uy,-0.12621895968914032 +karman_re200,sr,28,11.2,velocity,center_ux,0.7803657054901123 +karman_re200,sr,28,11.2,velocity,center_uy,0.061472903937101364 +karman_re200,sr,28,11.2,velocity,lower_ux,0.8040531873703003 +karman_re200,sr,28,11.2,velocity,lower_uy,0.03497866541147232 +karman_re200,sr,29,11.6,velocity,upper_ux,1.241936206817627 +karman_re200,sr,29,11.6,velocity,upper_uy,0.04712047055363655 +karman_re200,sr,29,11.6,velocity,center_ux,0.8136048913002014 +karman_re200,sr,29,11.6,velocity,center_uy,0.42473161220550537 +karman_re200,sr,29,11.6,velocity,lower_ux,0.8378286957740784 +karman_re200,sr,29,11.6,velocity,lower_uy,0.188295379281044 +karman_re200,sr,30,12.0,velocity,upper_ux,1.1150107383728027 +karman_re200,sr,30,12.0,velocity,upper_uy,0.2910621166229248 +karman_re200,sr,30,12.0,velocity,center_ux,0.8738701343536377 +karman_re200,sr,30,12.0,velocity,center_uy,0.5731725096702576 +karman_re200,sr,30,12.0,velocity,lower_ux,0.8984957933425903 +karman_re200,sr,30,12.0,velocity,lower_uy,0.2895427942276001 +karman_re200,sr,31,12.4,velocity,upper_ux,1.035710096359253 +karman_re200,sr,31,12.4,velocity,upper_uy,0.4229483902454376 +karman_re200,sr,31,12.4,velocity,center_ux,0.9193344712257385 +karman_re200,sr,31,12.4,velocity,center_uy,0.616694986820221 +karman_re200,sr,31,12.4,velocity,lower_ux,0.9731608629226685 +karman_re200,sr,31,12.4,velocity,lower_uy,0.3444715440273285 +karman_re200,sr,32,12.8,velocity,upper_ux,0.97025465965271 +karman_re200,sr,32,12.8,velocity,upper_uy,0.44391390681266785 +karman_re200,sr,32,12.8,velocity,center_ux,0.9554252624511719 +karman_re200,sr,32,12.8,velocity,center_uy,0.6137343049049377 +karman_re200,sr,32,12.8,velocity,lower_ux,1.042954444885254 +karman_re200,sr,32,12.8,velocity,lower_uy,0.35818183422088623 +karman_re200,sr,33,13.2,velocity,upper_ux,0.9079272747039795 +karman_re200,sr,33,13.2,velocity,upper_uy,0.4025786519050598 +karman_re200,sr,33,13.2,velocity,center_ux,0.9912945628166199 +karman_re200,sr,33,13.2,velocity,center_uy,0.583889365196228 +karman_re200,sr,33,13.2,velocity,lower_ux,1.1047296524047852 +karman_re200,sr,33,13.2,velocity,lower_uy,0.3343213200569153 +karman_re200,sr,34,13.6,velocity,upper_ux,0.849760115146637 +karman_re200,sr,34,13.6,velocity,upper_uy,0.31284812092781067 +karman_re200,sr,34,13.6,velocity,center_ux,1.0230443477630615 +karman_re200,sr,34,13.6,velocity,center_uy,0.49553683400154114 +karman_re200,sr,34,13.6,velocity,lower_ux,1.158606767654419 +karman_re200,sr,34,13.6,velocity,lower_uy,0.2995275855064392 +karman_re200,sr,35,14.0,velocity,upper_ux,0.807695209980011 +karman_re200,sr,35,14.0,velocity,upper_uy,0.17151974141597748 +karman_re200,sr,35,14.0,velocity,center_ux,0.9894804954528809 +karman_re200,sr,35,14.0,velocity,center_uy,0.4131644368171692 +karman_re200,sr,35,14.0,velocity,lower_ux,1.2118182182312012 +karman_re200,sr,35,14.0,velocity,lower_uy,0.29558441042900085 +karman_re200,sr,36,14.4,velocity,upper_ux,0.8023079037666321 +karman_re200,sr,36,14.4,velocity,upper_uy,-0.00029541150433942676 +karman_re200,sr,36,14.4,velocity,center_ux,0.8897873163223267 +karman_re200,sr,36,14.4,velocity,center_uy,0.18548645079135895 +karman_re200,sr,36,14.4,velocity,lower_ux,1.25359308719635 +karman_re200,sr,36,14.4,velocity,lower_uy,0.32471388578414917 +karman_re200,sr,37,14.8,velocity,upper_ux,0.8316792845726013 +karman_re200,sr,37,14.8,velocity,upper_uy,-0.16686183214187622 +karman_re200,sr,37,14.8,velocity,center_ux,0.8349457383155823 +karman_re200,sr,37,14.8,velocity,center_uy,-0.2443043291568756 +karman_re200,sr,37,14.8,velocity,lower_ux,1.2017611265182495 +karman_re200,sr,37,14.8,velocity,lower_uy,-0.027384193614125252 +karman_re200,sr,38,15.2,velocity,upper_ux,0.890267550945282 +karman_re200,sr,38,15.2,velocity,upper_uy,-0.27837949991226196 +karman_re200,sr,38,15.2,velocity,center_ux,0.867275059223175 +karman_re200,sr,38,15.2,velocity,center_uy,-0.5257284641265869 +karman_re200,sr,38,15.2,velocity,lower_ux,1.167214035987854 +karman_re200,sr,38,15.2,velocity,lower_uy,-0.3747614324092865 +karman_re200,sr,39,15.6,velocity,upper_ux,0.9681411981582642 +karman_re200,sr,39,15.6,velocity,upper_uy,-0.33085137605667114 +karman_re200,sr,39,15.6,velocity,center_ux,0.9239128232002258 +karman_re200,sr,39,15.6,velocity,center_uy,-0.619856595993042 +karman_re200,sr,39,15.6,velocity,lower_ux,1.1046202182769775 +karman_re200,sr,39,15.6,velocity,lower_uy,-0.5057491064071655 +karman_re200,sr,40,16.0,velocity,upper_ux,1.0431300401687622 +karman_re200,sr,40,16.0,velocity,upper_uy,-0.3409404754638672 +karman_re200,sr,40,16.0,velocity,center_ux,0.9817146062850952 +karman_re200,sr,40,16.0,velocity,center_uy,-0.6208807229995728 +karman_re200,sr,40,16.0,velocity,lower_ux,1.0332406759262085 +karman_re200,sr,40,16.0,velocity,lower_uy,-0.5051758289337158 +karman_re200,sr,41,16.4,velocity,upper_ux,1.1078248023986816 +karman_re200,sr,41,16.4,velocity,upper_uy,-0.31036561727523804 +karman_re200,sr,41,16.4,velocity,center_ux,1.0377501249313354 +karman_re200,sr,41,16.4,velocity,center_uy,-0.5776557326316833 +karman_re200,sr,41,16.4,velocity,lower_ux,0.9624063968658447 +karman_re200,sr,41,16.4,velocity,lower_uy,-0.4429610073566437 +karman_re200,sr,42,16.8,velocity,upper_ux,1.1618726253509521 +karman_re200,sr,42,16.8,velocity,upper_uy,-0.2656802237033844 +karman_re200,sr,42,16.8,velocity,center_ux,1.0777082443237305 +karman_re200,sr,42,16.8,velocity,center_uy,-0.4848533570766449 +karman_re200,sr,42,16.8,velocity,lower_ux,0.8951532244682312 +karman_re200,sr,42,16.8,velocity,lower_uy,-0.3275962173938751 +karman_re200,sr,43,17.2,velocity,upper_ux,1.2165477275848389 +karman_re200,sr,43,17.2,velocity,upper_uy,-0.25174933671951294 +karman_re200,sr,43,17.2,velocity,center_ux,1.0568400621414185 +karman_re200,sr,43,17.2,velocity,center_uy,-0.4155235290527344 +karman_re200,sr,43,17.2,velocity,lower_ux,0.8495379686355591 +karman_re200,sr,43,17.2,velocity,lower_uy,-0.15259762108325958 +karman_re200,sr,44,17.6,velocity,upper_ux,1.2756285667419434 +karman_re200,sr,44,17.6,velocity,upper_uy,-0.2821665108203888 +karman_re200,sr,44,17.6,velocity,center_ux,0.9828232526779175 +karman_re200,sr,44,17.6,velocity,center_uy,-0.10168682038784027 +karman_re200,sr,44,17.6,velocity,lower_ux,0.8429663777351379 +karman_re200,sr,44,17.6,velocity,lower_uy,0.049703869968652725 +karman_re200,sr,45,18.0,velocity,upper_ux,1.2199034690856934 +karman_re200,sr,45,18.0,velocity,upper_uy,0.06869542598724365 +karman_re200,sr,45,18.0,velocity,center_ux,0.9399729371070862 +karman_re200,sr,45,18.0,velocity,center_uy,0.3273795247077942 +karman_re200,sr,45,18.0,velocity,lower_ux,0.8712430000305176 +karman_re200,sr,45,18.0,velocity,lower_uy,0.22632953524589539 +karman_re200,sr,46,18.4,velocity,upper_ux,1.1612598896026611 +karman_re200,sr,46,18.4,velocity,upper_uy,0.36284005641937256 +karman_re200,sr,46,18.4,velocity,center_ux,0.9556302428245544 +karman_re200,sr,46,18.4,velocity,center_uy,0.5314174294471741 +karman_re200,sr,46,18.4,velocity,lower_ux,0.9385874271392822 +karman_re200,sr,46,18.4,velocity,lower_uy,0.30924227833747864 +karman_re200,sr,47,18.8,velocity,upper_ux,1.1002357006072998 +karman_re200,sr,47,18.8,velocity,upper_uy,0.4309269189834595 +karman_re200,sr,47,18.8,velocity,center_ux,0.9881526231765747 +karman_re200,sr,47,18.8,velocity,center_uy,0.5726947784423828 +karman_re200,sr,47,18.8,velocity,lower_ux,1.0145491361618042 +karman_re200,sr,47,18.8,velocity,lower_uy,0.34402933716773987 +karman_re200,sr,48,19.2,velocity,upper_ux,1.0353816747665405 +karman_re200,sr,48,19.2,velocity,upper_uy,0.4030826687812805 +karman_re200,sr,48,19.2,velocity,center_ux,1.0201605558395386 +karman_re200,sr,48,19.2,velocity,center_uy,0.5600042343139648 +karman_re200,sr,48,19.2,velocity,lower_ux,1.0826411247253418 +karman_re200,sr,48,19.2,velocity,lower_uy,0.3360174298286438 +karman_re200,sr,49,19.6,velocity,upper_ux,0.9714668989181519 +karman_re200,sr,49,19.6,velocity,upper_uy,0.32984450459480286 +karman_re200,sr,49,19.6,velocity,center_ux,1.0560158491134644 +karman_re200,sr,49,19.6,velocity,center_uy,0.511432409286499 +karman_re200,sr,49,19.6,velocity,lower_ux,1.138026475906372 +karman_re200,sr,49,19.6,velocity,lower_uy,0.29259777069091797 +karman_re200,sr,50,20.0,velocity,upper_ux,0.9172401428222656 +karman_re200,sr,50,20.0,velocity,upper_uy,0.21418429911136627 +karman_re200,sr,50,20.0,velocity,center_ux,1.0995455980300903 +karman_re200,sr,50,20.0,velocity,center_uy,0.3800640404224396 +karman_re200,sr,50,20.0,velocity,lower_ux,1.1815173625946045 +karman_re200,sr,50,20.0,velocity,lower_uy,0.24220965802669525 +karman_re200,sr,51,20.4,velocity,upper_ux,0.8854061961174011 +karman_re200,sr,51,20.4,velocity,upper_uy,0.05716564506292343 +karman_re200,sr,51,20.4,velocity,center_ux,1.0745306015014648 +karman_re200,sr,51,20.4,velocity,center_uy,0.24979326128959656 +karman_re200,sr,51,20.4,velocity,lower_ux,1.2319364547729492 +karman_re200,sr,51,20.4,velocity,lower_uy,0.24519743025302887 +karman_re200,sr,52,20.8,velocity,upper_ux,0.8756030201911926 +karman_re200,sr,52,20.8,velocity,upper_uy,-0.11875863373279572 +karman_re200,sr,52,20.8,velocity,center_ux,0.9743439555168152 +karman_re200,sr,52,20.8,velocity,center_uy,-0.02115493267774582 +karman_re200,sr,52,20.8,velocity,lower_ux,1.2947508096694946 +karman_re200,sr,52,20.8,velocity,lower_uy,0.2783069908618927 +karman_re200,sr,53,21.2,velocity,upper_ux,0.909298837184906 +karman_re200,sr,53,21.2,velocity,upper_uy,-0.2347295880317688 +karman_re200,sr,53,21.2,velocity,center_ux,0.917142391204834 +karman_re200,sr,53,21.2,velocity,center_uy,-0.3211219310760498 +karman_re200,sr,53,21.2,velocity,lower_ux,1.250077486038208 +karman_re200,sr,53,21.2,velocity,lower_uy,-0.09253160655498505 +karman_re200,sr,54,21.6,velocity,upper_ux,0.971320390701294 +karman_re200,sr,54,21.6,velocity,upper_uy,-0.291605681180954 +karman_re200,sr,54,21.6,velocity,center_ux,0.9254430532455444 +karman_re200,sr,54,21.6,velocity,center_uy,-0.47611403465270996 +karman_re200,sr,54,21.6,velocity,lower_ux,1.1750084161758423 +karman_re200,sr,54,21.6,velocity,lower_uy,-0.36602142453193665 +karman_re200,sr,55,22.0,velocity,upper_ux,1.0353623628616333 +karman_re200,sr,55,22.0,velocity,upper_uy,-0.3216654062271118 +karman_re200,sr,55,22.0,velocity,center_ux,0.9585219621658325 +karman_re200,sr,55,22.0,velocity,center_uy,-0.514828085899353 +karman_re200,sr,55,22.0,velocity,lower_ux,1.101970911026001 +karman_re200,sr,55,22.0,velocity,lower_uy,-0.42858222126960754 +karman_re200,sr,56,22.4,velocity,upper_ux,1.0971732139587402 +karman_re200,sr,56,22.4,velocity,upper_uy,-0.30809757113456726 +karman_re200,sr,56,22.4,velocity,center_ux,0.989959716796875 +karman_re200,sr,56,22.4,velocity,center_uy,-0.5099976062774658 +karman_re200,sr,56,22.4,velocity,lower_ux,1.0410971641540527 +karman_re200,sr,56,22.4,velocity,lower_uy,-0.3853534758090973 +karman_re200,sr,57,22.8,velocity,upper_ux,1.1505756378173828 +karman_re200,sr,57,22.8,velocity,upper_uy,-0.2625860571861267 +karman_re200,sr,57,22.8,velocity,center_ux,1.0169986486434937 +karman_re200,sr,57,22.8,velocity,center_uy,-0.47135961055755615 +karman_re200,sr,57,22.8,velocity,lower_ux,0.986037015914917 +karman_re200,sr,57,22.8,velocity,lower_uy,-0.3006090819835663 +karman_re200,sr,58,23.2,velocity,upper_ux,1.1904730796813965 +karman_re200,sr,58,23.2,velocity,upper_uy,-0.2085094004869461 +karman_re200,sr,58,23.2,velocity,center_ux,1.051928997039795 +karman_re200,sr,58,23.2,velocity,center_uy,-0.3436945378780365 +karman_re200,sr,58,23.2,velocity,lower_ux,0.9389345049858093 +karman_re200,sr,58,23.2,velocity,lower_uy,-0.18211406469345093 +karman_re200,sr,59,23.6,velocity,upper_ux,1.2350568771362305 +karman_re200,sr,59,23.6,velocity,upper_uy,-0.20864975452423096 +karman_re200,sr,59,23.6,velocity,center_ux,1.0354663133621216 +karman_re200,sr,59,23.6,velocity,center_uy,-0.16845834255218506 +karman_re200,sr,59,23.6,velocity,lower_ux,0.9027240872383118 +karman_re200,sr,59,23.6,velocity,lower_uy,-0.025768985971808434 +karman_re200,sr,60,24.0,velocity,upper_ux,1.2883344888687134 +karman_re200,sr,60,24.0,velocity,upper_uy,-0.25051942467689514 +karman_re200,sr,60,24.0,velocity,center_ux,0.9495100975036621 +karman_re200,sr,60,24.0,velocity,center_uy,0.08582434058189392 +karman_re200,sr,60,24.0,velocity,lower_ux,0.8878031373023987 +karman_re200,sr,60,24.0,velocity,lower_uy,0.13448992371559143 +karman_re200,sr,61,24.4,velocity,upper_ux,1.2357615232467651 +karman_re200,sr,61,24.4,velocity,upper_uy,0.07628004997968674 +karman_re200,sr,61,24.4,velocity,center_ux,0.9020503163337708 +karman_re200,sr,61,24.4,velocity,center_uy,0.3238390386104584 +karman_re200,sr,61,24.4,velocity,lower_ux,0.9244643449783325 +karman_re200,sr,61,24.4,velocity,lower_uy,0.22781281173229218 +karman_re200,sr,62,24.8,velocity,upper_ux,1.1584153175354004 +karman_re200,sr,62,24.8,velocity,upper_uy,0.3383175730705261 +karman_re200,sr,62,24.8,velocity,center_ux,0.9094979763031006 +karman_re200,sr,62,24.8,velocity,center_uy,0.4529639780521393 +karman_re200,sr,62,24.8,velocity,lower_ux,0.9835522174835205 +karman_re200,sr,62,24.8,velocity,lower_uy,0.2849911153316498 +karman_re200,sr,63,25.2,velocity,upper_ux,1.0871657133102417 +karman_re200,sr,63,25.2,velocity,upper_uy,0.406869500875473 +karman_re200,sr,63,25.2,velocity,center_ux,0.9379603862762451 +karman_re200,sr,63,25.2,velocity,center_uy,0.4898463189601898 +karman_re200,sr,63,25.2,velocity,lower_ux,1.044621229171753 +karman_re200,sr,63,25.2,velocity,lower_uy,0.3133237361907959 +karman_re200,sr,64,25.6,velocity,upper_ux,1.0289498567581177 +karman_re200,sr,64,25.6,velocity,upper_uy,0.3649834096431732 +karman_re200,sr,64,25.6,velocity,center_ux,0.960364818572998 +karman_re200,sr,64,25.6,velocity,center_uy,0.4876205027103424 +karman_re200,sr,64,25.6,velocity,lower_ux,1.1039822101593018 +karman_re200,sr,64,25.6,velocity,lower_uy,0.298043817281723 +karman_re200,sr,65,26.0,velocity,upper_ux,0.9772443175315857 +karman_re200,sr,65,26.0,velocity,upper_uy,0.2803031802177429 +karman_re200,sr,65,26.0,velocity,center_ux,0.9709938764572144 +karman_re200,sr,65,26.0,velocity,center_uy,0.4521435797214508 +karman_re200,sr,65,26.0,velocity,lower_ux,1.1560337543487549 +karman_re200,sr,65,26.0,velocity,lower_uy,0.2524855136871338 +karman_re200,sr,66,26.4,velocity,upper_ux,0.9345440864562988 +karman_re200,sr,66,26.4,velocity,upper_uy,0.16576853394508362 +karman_re200,sr,66,26.4,velocity,center_ux,0.9860857129096985 +karman_re200,sr,66,26.4,velocity,center_uy,0.3239724338054657 +karman_re200,sr,66,26.4,velocity,lower_ux,1.194258213043213 +karman_re200,sr,66,26.4,velocity,lower_uy,0.2008555829524994 +karman_re200,sr,67,26.8,velocity,upper_ux,0.9020413160324097 +karman_re200,sr,67,26.8,velocity,upper_uy,0.0173376202583313 +karman_re200,sr,67,26.8,velocity,center_ux,0.9725934863090515 +karman_re200,sr,67,26.8,velocity,center_uy,0.1227576732635498 +karman_re200,sr,67,26.8,velocity,lower_ux,1.2376123666763306 +karman_re200,sr,67,26.8,velocity,lower_uy,0.2236846536397934 +karman_re200,sr,68,27.2,velocity,upper_ux,0.8924994468688965 +karman_re200,sr,68,27.2,velocity,upper_uy,-0.13028402626514435 +karman_re200,sr,68,27.2,velocity,center_ux,0.9105110764503479 +karman_re200,sr,68,27.2,velocity,center_uy,-0.12547700107097626 +karman_re200,sr,68,27.2,velocity,lower_ux,1.25971519947052 +karman_re200,sr,68,27.2,velocity,lower_uy,0.22728531062602997 +karman_re200,sr,69,27.6,velocity,upper_ux,0.930351734161377 +karman_re200,sr,69,27.6,velocity,upper_uy,-0.218350350856781 +karman_re200,sr,69,27.6,velocity,center_ux,0.8816835284233093 +karman_re200,sr,69,27.6,velocity,center_uy,-0.3367002010345459 +karman_re200,sr,69,27.6,velocity,lower_ux,1.1985881328582764 +karman_re200,sr,69,27.6,velocity,lower_uy,-0.13036221265792847 +karman_re200,sr,70,28.0,velocity,upper_ux,0.9861106872558594 +karman_re200,sr,70,28.0,velocity,upper_uy,-0.27689021825790405 +karman_re200,sr,70,28.0,velocity,center_ux,0.8959943652153015 +karman_re200,sr,70,28.0,velocity,center_uy,-0.45411717891693115 +karman_re200,sr,70,28.0,velocity,lower_ux,1.1346324682235718 +karman_re200,sr,70,28.0,velocity,lower_uy,-0.36217814683914185 +karman_re200,sr,71,28.4,velocity,upper_ux,1.0435439348220825 +karman_re200,sr,71,28.4,velocity,upper_uy,-0.3025726079940796 +karman_re200,sr,71,28.4,velocity,center_ux,0.9265047311782837 +karman_re200,sr,71,28.4,velocity,center_uy,-0.4891532063484192 +karman_re200,sr,71,28.4,velocity,lower_ux,1.070633888244629 +karman_re200,sr,71,28.4,velocity,lower_uy,-0.42132142186164856 +karman_re200,sr,72,28.8,velocity,upper_ux,1.100488543510437 +karman_re200,sr,72,28.8,velocity,upper_uy,-0.285743772983551 +karman_re200,sr,72,28.8,velocity,center_ux,0.9524257779121399 +karman_re200,sr,72,28.8,velocity,center_uy,-0.4856571555137634 +karman_re200,sr,72,28.8,velocity,lower_ux,1.0170040130615234 +karman_re200,sr,72,28.8,velocity,lower_uy,-0.3745653033256531 +karman_re200,sr,73,29.2,velocity,upper_ux,1.1522210836410522 +karman_re200,sr,73,29.2,velocity,upper_uy,-0.2413407862186432 +karman_re200,sr,73,29.2,velocity,center_ux,0.9715597629547119 +karman_re200,sr,73,29.2,velocity,center_uy,-0.44404137134552 +karman_re200,sr,73,29.2,velocity,lower_ux,0.9698240160942078 +karman_re200,sr,73,29.2,velocity,lower_uy,-0.28457868099212646 +karman_re200,sr,74,29.6,velocity,upper_ux,1.191237211227417 +karman_re200,sr,74,29.6,velocity,upper_uy,-0.1932295560836792 +karman_re200,sr,74,29.6,velocity,center_ux,0.9956291913986206 +karman_re200,sr,74,29.6,velocity,center_uy,-0.3095313012599945 +karman_re200,sr,74,29.6,velocity,lower_ux,0.930168092250824 +karman_re200,sr,74,29.6,velocity,lower_uy,-0.16315673291683197 +karman_re200,sr,75,30.0,velocity,upper_ux,1.2354148626327515 +karman_re200,sr,75,30.0,velocity,upper_uy,-0.21489711105823517 +karman_re200,sr,75,30.0,velocity,center_ux,0.9721466898918152 +karman_re200,sr,75,30.0,velocity,center_uy,-0.1182122677564621 +karman_re200,sr,75,30.0,velocity,lower_ux,0.8978710770606995 +karman_re200,sr,75,30.0,velocity,lower_uy,-0.006675499025732279 +karman_re200,sr,76,30.4,velocity,upper_ux,1.2513905763626099 +karman_re200,sr,76,30.4,velocity,upper_uy,-0.21286851167678833 +karman_re200,sr,76,30.4,velocity,center_ux,0.900908350944519 +karman_re200,sr,76,30.4,velocity,center_uy,0.13642829656600952 +karman_re200,sr,76,30.4,velocity,lower_ux,0.8899250626564026 +karman_re200,sr,76,30.4,velocity,lower_uy,0.1427743285894394 +karman_re200,sr,77,30.8,velocity,upper_ux,1.1804251670837402 +karman_re200,sr,77,30.8,velocity,upper_uy,0.13449731469154358 +karman_re200,sr,77,30.8,velocity,center_ux,0.8725392818450928 +karman_re200,sr,77,30.8,velocity,center_uy,0.3528749942779541 +karman_re200,sr,77,30.8,velocity,lower_ux,0.9296113848686218 +karman_re200,sr,77,30.8,velocity,lower_uy,0.22880958020687103 +karman_re200,sr,78,31.2,velocity,upper_ux,1.1159985065460205 +karman_re200,sr,78,31.2,velocity,upper_uy,0.36399102210998535 +karman_re200,sr,78,31.2,velocity,center_ux,0.8891266584396362 +karman_re200,sr,78,31.2,velocity,center_uy,0.4664050340652466 +karman_re200,sr,78,31.2,velocity,lower_ux,0.9872190356254578 +karman_re200,sr,78,31.2,velocity,lower_uy,0.286284476518631 +karman_re200,sr,79,31.6,velocity,upper_ux,1.0528645515441895 +karman_re200,sr,79,31.6,velocity,upper_uy,0.41745877265930176 +karman_re200,sr,79,31.6,velocity,center_ux,0.9204561710357666 +karman_re200,sr,79,31.6,velocity,center_uy,0.4985625445842743 +karman_re200,sr,79,31.6,velocity,lower_ux,1.0474820137023926 +karman_re200,sr,79,31.6,velocity,lower_uy,0.30903956294059753 +karman_re200,sr,80,32.0,velocity,upper_ux,0.9987874627113342 +karman_re200,sr,80,32.0,velocity,upper_uy,0.3708754777908325 +karman_re200,sr,80,32.0,velocity,center_ux,0.9446504712104797 +karman_re200,sr,80,32.0,velocity,center_uy,0.495061993598938 +karman_re200,sr,80,32.0,velocity,lower_ux,1.1057707071304321 +karman_re200,sr,80,32.0,velocity,lower_uy,0.2900480031967163 +karman_re200,sr,81,32.4,velocity,upper_ux,0.9503118395805359 +karman_re200,sr,81,32.4,velocity,upper_uy,0.28287938237190247 +karman_re200,sr,81,32.4,velocity,center_ux,0.9628165364265442 +karman_re200,sr,81,32.4,velocity,center_uy,0.4487992525100708 +karman_re200,sr,81,32.4,velocity,lower_ux,1.156080961227417 +karman_re200,sr,81,32.4,velocity,lower_uy,0.2453974336385727 +karman_re200,sr,82,32.8,velocity,upper_ux,0.910984218120575 +karman_re200,sr,82,32.8,velocity,upper_uy,0.16371501982212067 +karman_re200,sr,82,32.8,velocity,center_ux,0.9895101189613342 +karman_re200,sr,82,32.8,velocity,center_uy,0.30606770515441895 +karman_re200,sr,82,32.8,velocity,lower_ux,1.1924370527267456 +karman_re200,sr,82,32.8,velocity,lower_uy,0.2067423015832901 +karman_re200,sr,83,33.2,velocity,upper_ux,0.8846822381019592 +karman_re200,sr,83,33.2,velocity,upper_uy,0.012489553540945053 +karman_re200,sr,83,33.2,velocity,center_ux,0.960407018661499 +karman_re200,sr,83,33.2,velocity,center_uy,0.11605967581272125 +karman_re200,sr,83,33.2,velocity,lower_ux,1.2351793050765991 +karman_re200,sr,83,33.2,velocity,lower_uy,0.2594063878059387 +karman_re200,sr,84,33.6,velocity,upper_ux,0.8825762867927551 +karman_re200,sr,84,33.6,velocity,upper_uy,-0.138083353638649 +karman_re200,sr,84,33.6,velocity,center_ux,0.8882681131362915 +karman_re200,sr,84,33.6,velocity,center_uy,-0.147184818983078 +karman_re200,sr,84,33.6,velocity,lower_ux,1.2316642999649048 +karman_re200,sr,84,33.6,velocity,lower_uy,0.17674794793128967 +karman_re200,sr,85,34.0,velocity,upper_ux,0.9254218935966492 +karman_re200,sr,85,34.0,velocity,upper_uy,-0.22828559577465057 +karman_re200,sr,85,34.0,velocity,center_ux,0.866524338722229 +karman_re200,sr,85,34.0,velocity,center_uy,-0.3700178265571594 +karman_re200,sr,85,34.0,velocity,lower_ux,1.1775230169296265 +karman_re200,sr,85,34.0,velocity,lower_uy,-0.2021307498216629 +karman_re200,sr,86,34.4,velocity,upper_ux,0.9849691987037659 +karman_re200,sr,86,34.4,velocity,upper_uy,-0.28515011072158813 +karman_re200,sr,86,34.4,velocity,center_ux,0.8899171352386475 +karman_re200,sr,86,34.4,velocity,center_uy,-0.483734667301178 +karman_re200,sr,86,34.4,velocity,lower_ux,1.1195800304412842 +karman_re200,sr,86,34.4,velocity,lower_uy,-0.40506088733673096 +karman_re200,sr,87,34.8,velocity,upper_ux,1.0453784465789795 +karman_re200,sr,87,34.8,velocity,upper_uy,-0.3044338524341583 +karman_re200,sr,87,34.8,velocity,center_ux,0.9260886907577515 +karman_re200,sr,87,34.8,velocity,center_uy,-0.5128700733184814 +karman_re200,sr,87,34.8,velocity,lower_ux,1.0570034980773926 +karman_re200,sr,87,34.8,velocity,lower_uy,-0.43986788392066956 +karman_re200,sr,88,35.2,velocity,upper_ux,1.1024020910263062 +karman_re200,sr,88,35.2,velocity,upper_uy,-0.2819098234176636 +karman_re200,sr,88,35.2,velocity,center_ux,0.9561720490455627 +karman_re200,sr,88,35.2,velocity,center_uy,-0.5042321681976318 +karman_re200,sr,88,35.2,velocity,lower_ux,1.0003923177719116 +karman_re200,sr,88,35.2,velocity,lower_uy,-0.3831816017627716 +karman_re200,sr,89,35.6,velocity,upper_ux,1.1520313024520874 +karman_re200,sr,89,35.6,velocity,upper_uy,-0.23587694764137268 +karman_re200,sr,89,35.6,velocity,center_ux,0.9874324202537537 +karman_re200,sr,89,35.6,velocity,center_uy,-0.44290363788604736 +karman_re200,sr,89,35.6,velocity,lower_ux,0.9500530362129211 +karman_re200,sr,89,35.6,velocity,lower_uy,-0.2866658568382263 +karman_re200,sr,90,36.0,velocity,upper_ux,1.1918729543685913 +karman_re200,sr,90,36.0,velocity,upper_uy,-0.2000003308057785 +karman_re200,sr,90,36.0,velocity,center_ux,1.020033359527588 +karman_re200,sr,90,36.0,velocity,center_uy,-0.29659077525138855 +karman_re200,sr,90,36.0,velocity,lower_ux,0.9106469750404358 +karman_re200,sr,90,36.0,velocity,lower_uy,-0.15587720274925232 +karman_re200,sr,91,36.4,velocity,upper_ux,1.2427949905395508 +karman_re200,sr,91,36.4,velocity,upper_uy,-0.25514060258865356 +karman_re200,sr,91,36.4,velocity,center_ux,0.973021388053894 +karman_re200,sr,91,36.4,velocity,center_uy,-0.10890960693359375 +karman_re200,sr,91,36.4,velocity,lower_ux,0.8840892314910889 +karman_re200,sr,91,36.4,velocity,lower_uy,0.008532105013728142 +karman_re200,sr,92,36.8,velocity,upper_ux,1.2387001514434814 +karman_re200,sr,92,36.8,velocity,upper_uy,-0.13791093230247498 +karman_re200,sr,92,36.8,velocity,center_ux,0.8973786234855652 +karman_re200,sr,92,36.8,velocity,center_uy,0.17329099774360657 +karman_re200,sr,92,36.8,velocity,lower_ux,0.8858136534690857 +karman_re200,sr,92,36.8,velocity,lower_uy,0.1604200303554535 +karman_re200,sr,93,37.2,velocity,upper_ux,1.1777541637420654 +karman_re200,sr,93,37.2,velocity,upper_uy,0.23204974830150604 +karman_re200,sr,93,37.2,velocity,center_ux,0.8789834380149841 +karman_re200,sr,93,37.2,velocity,center_uy,0.39416640996932983 +karman_re200,sr,93,37.2,velocity,lower_ux,0.932201623916626 +karman_re200,sr,93,37.2,velocity,lower_uy,0.24447757005691528 +karman_re200,sr,94,37.6,velocity,upper_ux,1.1148810386657715 +karman_re200,sr,94,37.6,velocity,upper_uy,0.40681836009025574 +karman_re200,sr,94,37.6,velocity,center_ux,0.9027032256126404 +karman_re200,sr,94,37.6,velocity,center_uy,0.49255886673927307 +karman_re200,sr,94,37.6,velocity,lower_ux,0.9924526810646057 +karman_re200,sr,94,37.6,velocity,lower_uy,0.29640114307403564 +karman_re200,sr,95,38.0,velocity,upper_ux,1.052838921546936 +karman_re200,sr,95,38.0,velocity,upper_uy,0.4210655093193054 +karman_re200,sr,95,38.0,velocity,center_ux,0.9369969367980957 +karman_re200,sr,95,38.0,velocity,center_uy,0.511202335357666 +karman_re200,sr,95,38.0,velocity,lower_ux,1.0546926259994507 +karman_re200,sr,95,38.0,velocity,lower_uy,0.3087061047554016 +karman_re200,sr,96,38.4,velocity,upper_ux,0.9976010322570801 +karman_re200,sr,96,38.4,velocity,upper_uy,0.35821732878685 +karman_re200,sr,96,38.4,velocity,center_ux,0.963497519493103 +karman_re200,sr,96,38.4,velocity,center_uy,0.4971960186958313 +karman_re200,sr,96,38.4,velocity,lower_ux,1.1130491495132446 +karman_re200,sr,96,38.4,velocity,lower_uy,0.2809195816516876 +karman_re200,sr,97,38.8,velocity,upper_ux,0.9480505585670471 +karman_re200,sr,97,38.8,velocity,upper_uy,0.259502112865448 +karman_re200,sr,97,38.8,velocity,center_ux,0.9897885322570801 +karman_re200,sr,97,38.8,velocity,center_uy,0.4256264567375183 +karman_re200,sr,97,38.8,velocity,lower_ux,1.1607351303100586 +karman_re200,sr,97,38.8,velocity,lower_uy,0.23179061710834503 +karman_re200,sr,98,39.2,velocity,upper_ux,0.9094022512435913 +karman_re200,sr,98,39.2,velocity,upper_uy,0.12720991671085358 +karman_re200,sr,98,39.2,velocity,center_ux,1.0144927501678467 +karman_re200,sr,98,39.2,velocity,center_uy,0.26725533604621887 +karman_re200,sr,98,39.2,velocity,lower_ux,1.19735848903656 +karman_re200,sr,98,39.2,velocity,lower_uy,0.20104645192623138 +karman_re200,sr,99,39.6,velocity,upper_ux,0.8825035095214844 +karman_re200,sr,99,39.6,velocity,upper_uy,-0.03604717552661896 +karman_re200,sr,99,39.6,velocity,center_ux,0.961638331413269 +karman_re200,sr,99,39.6,velocity,center_uy,0.061718326061964035 +karman_re200,sr,99,39.6,velocity,lower_ux,1.2428683042526245 +karman_re200,sr,99,39.6,velocity,lower_uy,0.26767274737358093 +karman_re200,sr,100,40.0,velocity,upper_ux,0.8910135626792908 +karman_re200,sr,100,40.0,velocity,upper_uy,-0.1738080233335495 +karman_re200,sr,100,40.0,velocity,center_ux,0.8912290930747986 +karman_re200,sr,100,40.0,velocity,center_uy,-0.20776128768920898 +karman_re200,sr,100,40.0,velocity,lower_ux,1.2255315780639648 +karman_re200,sr,100,40.0,velocity,lower_uy,0.10194728523492813 +karman_re200,sr,101,40.4,velocity,upper_ux,0.9421722888946533 +karman_re200,sr,101,40.4,velocity,upper_uy,-0.2496529221534729 +karman_re200,sr,101,40.4,velocity,center_ux,0.8788425326347351 +karman_re200,sr,101,40.4,velocity,center_uy,-0.4055148661136627 +karman_re200,sr,101,40.4,velocity,lower_ux,1.1681591272354126 +karman_re200,sr,101,40.4,velocity,lower_uy,-0.2581331431865692 +karman_re200,sr,102,40.8,velocity,upper_ux,1.0028679370880127 +karman_re200,sr,102,40.8,velocity,upper_uy,-0.2980632185935974 +karman_re200,sr,102,40.8,velocity,center_ux,0.9049546122550964 +karman_re200,sr,102,40.8,velocity,center_uy,-0.49124032258987427 +karman_re200,sr,102,40.8,velocity,lower_ux,1.1055365800857544 +karman_re200,sr,102,40.8,velocity,lower_uy,-0.4174582362174988 +karman_re200,sr,103,41.2,velocity,upper_ux,1.06369948387146 +karman_re200,sr,103,41.2,velocity,upper_uy,-0.30503398180007935 +karman_re200,sr,103,41.2,velocity,center_ux,0.9380357265472412 +karman_re200,sr,103,41.2,velocity,center_uy,-0.507138729095459 +karman_re200,sr,103,41.2,velocity,lower_ux,1.0451244115829468 +karman_re200,sr,103,41.2,velocity,lower_uy,-0.4210442006587982 +karman_re200,sr,104,41.6,velocity,upper_ux,1.1195337772369385 +karman_re200,sr,104,41.6,velocity,upper_uy,-0.2740356922149658 +karman_re200,sr,104,41.6,velocity,center_ux,0.9624071717262268 +karman_re200,sr,104,41.6,velocity,center_uy,-0.4913952946662903 +karman_re200,sr,104,41.6,velocity,lower_ux,0.9902673363685608 +karman_re200,sr,104,41.6,velocity,lower_uy,-0.3523896038532257 +karman_re200,sr,105,42.0,velocity,upper_ux,1.164543867111206 +karman_re200,sr,105,42.0,velocity,upper_uy,-0.22405441105365753 +karman_re200,sr,105,42.0,velocity,center_ux,0.989531934261322 +karman_re200,sr,105,42.0,velocity,center_uy,-0.4096858501434326 +karman_re200,sr,105,42.0,velocity,lower_ux,0.9414700269699097 +karman_re200,sr,105,42.0,velocity,lower_uy,-0.249383807182312 +karman_re200,sr,106,42.4,velocity,upper_ux,1.2031081914901733 +karman_re200,sr,106,42.4,velocity,upper_uy,-0.2010861039161682 +karman_re200,sr,106,42.4,velocity,center_ux,1.0104621648788452 +karman_re200,sr,106,42.4,velocity,center_uy,-0.24886083602905273 +karman_re200,sr,106,42.4,velocity,lower_ux,0.9058430194854736 +karman_re200,sr,106,42.4,velocity,lower_uy,-0.1129947081208229 +karman_re200,sr,107,42.8,velocity,upper_ux,1.2506475448608398 +karman_re200,sr,107,42.8,velocity,upper_uy,-0.27132928371429443 +karman_re200,sr,107,42.8,velocity,center_ux,0.9507827162742615 +karman_re200,sr,107,42.8,velocity,center_uy,-0.03350120410323143 +karman_re200,sr,107,42.8,velocity,lower_ux,0.8825631737709045 +karman_re200,sr,107,42.8,velocity,lower_uy,0.052023597061634064 +karman_re200,sr,108,43.2,velocity,upper_ux,1.222995638847351 +karman_re200,sr,108,43.2,velocity,upper_uy,-0.04818573594093323 +karman_re200,sr,108,43.2,velocity,center_ux,0.8871175646781921 +karman_re200,sr,108,43.2,velocity,center_uy,0.23668432235717773 +karman_re200,sr,108,43.2,velocity,lower_ux,0.8964359760284424 +karman_re200,sr,108,43.2,velocity,lower_uy,0.18330861628055573 +karman_re200,sr,109,43.6,velocity,upper_ux,1.1651597023010254 +karman_re200,sr,109,43.6,velocity,upper_uy,0.2886466085910797 +karman_re200,sr,109,43.6,velocity,center_ux,0.8815692663192749 +karman_re200,sr,109,43.6,velocity,center_uy,0.4214157164096832 +karman_re200,sr,109,43.6,velocity,lower_ux,0.9487545490264893 +karman_re200,sr,109,43.6,velocity,lower_uy,0.25547197461128235 +karman_re200,sr,110,44.0,velocity,upper_ux,1.1002346277236938 +karman_re200,sr,110,44.0,velocity,upper_uy,0.4221579432487488 +karman_re200,sr,110,44.0,velocity,center_ux,0.9091605544090271 +karman_re200,sr,110,44.0,velocity,center_uy,0.4948536157608032 +karman_re200,sr,110,44.0,velocity,lower_ux,1.0081042051315308 +karman_re200,sr,110,44.0,velocity,lower_uy,0.3002791702747345 +karman_re200,sr,111,44.4,velocity,upper_ux,1.0405985116958618 +karman_re200,sr,111,44.4,velocity,upper_uy,0.4116649329662323 +karman_re200,sr,111,44.4,velocity,center_ux,0.9412885904312134 +karman_re200,sr,111,44.4,velocity,center_uy,0.504669725894928 +karman_re200,sr,111,44.4,velocity,lower_ux,1.0682719945907593 +karman_re200,sr,111,44.4,velocity,lower_uy,0.30185961723327637 +karman_re200,sr,112,44.8,velocity,upper_ux,0.9879907369613647 +karman_re200,sr,112,44.8,velocity,upper_uy,0.3379359841346741 +karman_re200,sr,112,44.8,velocity,center_ux,0.9657461047172546 +karman_re200,sr,112,44.8,velocity,center_uy,0.4839152991771698 +karman_re200,sr,112,44.8,velocity,lower_ux,1.1248066425323486 +karman_re200,sr,112,44.8,velocity,lower_uy,0.26772797107696533 +karman_re200,sr,113,45.2,velocity,upper_ux,0.9415286183357239 +karman_re200,sr,113,45.2,velocity,upper_uy,0.23085598647594452 +karman_re200,sr,113,45.2,velocity,center_ux,0.9932194352149963 +karman_re200,sr,113,45.2,velocity,center_uy,0.39078599214553833 +karman_re200,sr,113,45.2,velocity,lower_ux,1.1693806648254395 +karman_re200,sr,113,45.2,velocity,lower_uy,0.21673156321048737 +karman_re200,sr,114,45.6,velocity,upper_ux,0.9060829877853394 +karman_re200,sr,114,45.6,velocity,upper_uy,0.08946193754673004 +karman_re200,sr,114,45.6,velocity,center_ux,1.0056359767913818 +karman_re200,sr,114,45.6,velocity,center_uy,0.22305679321289062 +karman_re200,sr,114,45.6,velocity,lower_ux,1.2074410915374756 +karman_re200,sr,114,45.6,velocity,lower_uy,0.19898566603660583 +karman_re200,sr,115,46.0,velocity,upper_ux,0.8825879096984863 +karman_re200,sr,115,46.0,velocity,upper_uy,-0.0759841650724411 +karman_re200,sr,115,46.0,velocity,center_ux,0.9394721388816833 +karman_re200,sr,115,46.0,velocity,center_uy,-0.0036394118797034025 +karman_re200,sr,115,46.0,velocity,lower_ux,1.2494887113571167 +karman_re200,sr,115,46.0,velocity,lower_uy,0.2666894495487213 +karman_re200,sr,116,46.4,velocity,upper_ux,0.9020440578460693 +karman_re200,sr,116,46.4,velocity,upper_uy,-0.19533054530620575 +karman_re200,sr,116,46.4,velocity,center_ux,0.8814015984535217 +karman_re200,sr,116,46.4,velocity,center_uy,-0.2637520134449005 +karman_re200,sr,116,46.4,velocity,lower_ux,1.209071159362793 +karman_re200,sr,116,46.4,velocity,lower_uy,0.019012680277228355 +karman_re200,sr,117,46.8,velocity,upper_ux,0.9568429589271545 +karman_re200,sr,117,46.8,velocity,upper_uy,-0.2627635598182678 +karman_re200,sr,117,46.8,velocity,center_ux,0.8809844255447388 +karman_re200,sr,117,46.8,velocity,center_uy,-0.4321351647377014 +karman_re200,sr,117,46.8,velocity,lower_ux,1.1497553586959839 +karman_re200,sr,117,46.8,velocity,lower_uy,-0.3031965494155884 +karman_re200,sr,118,47.2,velocity,upper_ux,1.0175541639328003 +karman_re200,sr,118,47.2,velocity,upper_uy,-0.3038024306297302 +karman_re200,sr,118,47.2,velocity,center_ux,0.910662829875946 +karman_re200,sr,118,47.2,velocity,center_uy,-0.4953889548778534 +karman_re200,sr,118,47.2,velocity,lower_ux,1.0865687131881714 +karman_re200,sr,118,47.2,velocity,lower_uy,-0.42344915866851807 +karman_re200,sr,119,47.6,velocity,upper_ux,1.0776052474975586 +karman_re200,sr,119,47.6,velocity,upper_uy,-0.3009139597415924 +karman_re200,sr,119,47.6,velocity,center_ux,0.9410514831542969 +karman_re200,sr,119,47.6,velocity,center_uy,-0.5031334161758423 +karman_re200,sr,119,47.6,velocity,lower_ux,1.0291295051574707 +karman_re200,sr,119,47.6,velocity,lower_uy,-0.40579232573509216 +karman_re200,sr,120,48.0,velocity,upper_ux,1.132495403289795 +karman_re200,sr,120,48.0,velocity,upper_uy,-0.2643284201622009 +karman_re200,sr,120,48.0,velocity,center_ux,0.9626750349998474 +karman_re200,sr,120,48.0,velocity,center_uy,-0.4800192713737488 +karman_re200,sr,120,48.0,velocity,lower_ux,0.9772672057151794 +karman_re200,sr,120,48.0,velocity,lower_uy,-0.3295232355594635 +karman_re200,sr,121,48.4,velocity,upper_ux,1.1741751432418823 +karman_re200,sr,121,48.4,velocity,upper_uy,-0.21429763734340668 +karman_re200,sr,121,48.4,velocity,center_ux,0.9895774722099304 +karman_re200,sr,121,48.4,velocity,center_uy,-0.3765237033367157 +karman_re200,sr,121,48.4,velocity,lower_ux,0.931518018245697 +karman_re200,sr,121,48.4,velocity,lower_uy,-0.22059638798236847 +karman_re200,sr,122,48.8,velocity,upper_ux,1.213484287261963 +karman_re200,sr,122,48.8,velocity,upper_uy,-0.21152687072753906 +karman_re200,sr,122,48.8,velocity,center_ux,0.9955357313156128 +karman_re200,sr,122,48.8,velocity,center_uy,-0.205611452460289 +karman_re200,sr,122,48.8,velocity,lower_ux,0.8985552787780762 +karman_re200,sr,122,48.8,velocity,lower_uy,-0.07806945592164993 +karman_re200,sr,123,49.2,velocity,upper_ux,1.251285433769226 +karman_re200,sr,123,49.2,velocity,upper_uy,-0.2683671712875366 +karman_re200,sr,123,49.2,velocity,center_ux,0.9266234040260315 +karman_re200,sr,123,49.2,velocity,center_uy,0.029851427301764488 +karman_re200,sr,123,49.2,velocity,lower_ux,0.8805237412452698 +karman_re200,sr,123,49.2,velocity,lower_uy,0.085667684674263 +karman_re200,sr,124,49.6,velocity,upper_ux,1.2043834924697876 +karman_re200,sr,124,49.6,velocity,upper_uy,0.040538374334573746 +karman_re200,sr,124,49.6,velocity,center_ux,0.8765489459037781 +karman_re200,sr,124,49.6,velocity,center_uy,0.28720179200172424 +karman_re200,sr,124,49.6,velocity,lower_ux,0.905623197555542 +karman_re200,sr,124,49.6,velocity,lower_uy,0.20081369578838348 +karman_re200,sr,125,50.0,velocity,upper_ux,1.1477744579315186 +karman_re200,sr,125,50.0,velocity,upper_uy,0.33375465869903564 +karman_re200,sr,125,50.0,velocity,center_ux,0.8824033141136169 +karman_re200,sr,125,50.0,velocity,center_uy,0.4459049105644226 +karman_re200,sr,125,50.0,velocity,lower_ux,0.9616514444351196 +karman_re200,sr,125,50.0,velocity,lower_uy,0.2666226923465729 +karman_re200,sr,126,50.4,velocity,upper_ux,1.0831586122512817 +karman_re200,sr,126,50.4,velocity,upper_uy,0.4323951303958893 +karman_re200,sr,126,50.4,velocity,center_ux,0.9139161705970764 +karman_re200,sr,126,50.4,velocity,center_uy,0.501578152179718 +karman_re200,sr,126,50.4,velocity,lower_ux,1.0216261148452759 +karman_re200,sr,126,50.4,velocity,lower_uy,0.30370810627937317 +karman_re200,sr,127,50.8,velocity,upper_ux,1.0248961448669434 +karman_re200,sr,127,50.8,velocity,upper_uy,0.40368103981018066 +karman_re200,sr,127,50.8,velocity,center_ux,0.9443395733833313 +karman_re200,sr,127,50.8,velocity,center_uy,0.5048626065254211 +karman_re200,sr,127,50.8,velocity,lower_ux,1.080391764640808 +karman_re200,sr,127,50.8,velocity,lower_uy,0.2960078716278076 +karman_re200,sr,128,51.2,velocity,upper_ux,0.9735114574432373 +karman_re200,sr,128,51.2,velocity,upper_uy,0.3222406506538391 +karman_re200,sr,128,51.2,velocity,center_ux,0.9687853455543518 +karman_re200,sr,128,51.2,velocity,center_uy,0.47505760192871094 +karman_re200,sr,128,51.2,velocity,lower_ux,1.134884238243103 +karman_re200,sr,128,51.2,velocity,lower_uy,0.25691866874694824 +karman_re200,sr,129,51.6,velocity,upper_ux,0.9297218322753906 +karman_re200,sr,129,51.6,velocity,upper_uy,0.2076859325170517 +karman_re200,sr,129,51.6,velocity,center_ux,1.001131534576416 +karman_re200,sr,129,51.6,velocity,center_uy,0.3584657609462738 +karman_re200,sr,129,51.6,velocity,lower_ux,1.1771026849746704 +karman_re200,sr,129,51.6,velocity,lower_uy,0.20780159533023834 +karman_re200,sr,130,52.0,velocity,upper_ux,0.8973679542541504 +karman_re200,sr,130,52.0,velocity,upper_uy,0.057972051203250885 +karman_re200,sr,130,52.0,velocity,center_ux,0.9967661499977112 +karman_re200,sr,130,52.0,velocity,center_uy,0.1864972561597824 +karman_re200,sr,130,52.0,velocity,lower_ux,1.2195611000061035 +karman_re200,sr,130,52.0,velocity,lower_uy,0.21400637924671173 +karman_re200,sr,131,52.4,velocity,upper_ux,0.881385862827301 +karman_re200,sr,131,52.4,velocity,upper_uy,-0.10660161823034286 +karman_re200,sr,131,52.4,velocity,center_ux,0.921388566493988 +karman_re200,sr,131,52.4,velocity,center_uy,-0.06117357686161995 +karman_re200,sr,131,52.4,velocity,lower_ux,1.252421498298645 +karman_re200,sr,131,52.4,velocity,lower_uy,0.2525585889816284 +karman_re200,sr,132,52.8,velocity,upper_ux,0.9113110303878784 +karman_re200,sr,132,52.8,velocity,upper_uy,-0.21310420334339142 +karman_re200,sr,132,52.8,velocity,center_ux,0.8769334554672241 +karman_re200,sr,132,52.8,velocity,center_uy,-0.31331169605255127 +karman_re200,sr,132,52.8,velocity,lower_ux,1.1959965229034424 +karman_re200,sr,132,52.8,velocity,lower_uy,-0.08007781952619553 +karman_re200,sr,133,53.2,velocity,upper_ux,0.968262791633606 +karman_re200,sr,133,53.2,velocity,upper_uy,-0.2752563953399658 +karman_re200,sr,133,53.2,velocity,center_ux,0.8864091634750366 +karman_re200,sr,133,53.2,velocity,center_uy,-0.45809102058410645 +karman_re200,sr,133,53.2,velocity,lower_ux,1.1364496946334839 +karman_re200,sr,133,53.2,velocity,lower_uy,-0.35005661845207214 +karman_re200,sr,134,53.6,velocity,upper_ux,1.02974271774292 +karman_re200,sr,134,53.6,velocity,upper_uy,-0.30749577283859253 +karman_re200,sr,134,53.6,velocity,center_ux,0.9193596839904785 +karman_re200,sr,134,53.6,velocity,center_uy,-0.5035730004310608 +karman_re200,sr,134,53.6,velocity,lower_ux,1.0731384754180908 +karman_re200,sr,134,53.6,velocity,lower_uy,-0.42949581146240234 +karman_re200,sr,135,54.0,velocity,upper_ux,1.0895172357559204 +karman_re200,sr,135,54.0,velocity,upper_uy,-0.2951902151107788 +karman_re200,sr,135,54.0,velocity,center_ux,0.9488511085510254 +karman_re200,sr,135,54.0,velocity,center_uy,-0.503304660320282 +karman_re200,sr,135,54.0,velocity,lower_ux,1.0170531272888184 +karman_re200,sr,135,54.0,velocity,lower_uy,-0.3925820589065552 +karman_re200,sr,136,54.4,velocity,upper_ux,1.1426604986190796 +karman_re200,sr,136,54.4,velocity,upper_uy,-0.25347787141799927 +karman_re200,sr,136,54.4,velocity,center_ux,0.9715306758880615 +karman_re200,sr,136,54.4,velocity,center_uy,-0.46773529052734375 +karman_re200,sr,136,54.4,velocity,lower_ux,0.9662498235702515 +karman_re200,sr,136,54.4,velocity,lower_uy,-0.30850648880004883 +karman_re200,sr,137,54.8,velocity,upper_ux,1.182263731956482 +karman_re200,sr,137,54.8,velocity,upper_uy,-0.2063106894493103 +karman_re200,sr,137,54.8,velocity,center_ux,1.0023674964904785 +karman_re200,sr,137,54.8,velocity,center_uy,-0.34036368131637573 +karman_re200,sr,137,54.8,velocity,lower_ux,0.9230766892433167 +karman_re200,sr,137,54.8,velocity,lower_uy,-0.1915590614080429 +karman_re200,sr,138,55.2,velocity,upper_ux,1.2253111600875854 +karman_re200,sr,138,55.2,velocity,upper_uy,-0.22786599397659302 +karman_re200,sr,138,55.2,velocity,center_ux,0.9880200028419495 +karman_re200,sr,138,55.2,velocity,center_uy,-0.1627151519060135 +karman_re200,sr,138,55.2,velocity,lower_ux,0.8916459083557129 +karman_re200,sr,138,55.2,velocity,lower_uy,-0.0400528721511364 +karman_re200,sr,139,55.6,velocity,upper_ux,1.2495083808898926 +karman_re200,sr,139,55.6,velocity,upper_uy,-0.23616205155849457 +karman_re200,sr,139,55.6,velocity,center_ux,0.9116536974906921 +karman_re200,sr,139,55.6,velocity,center_uy,0.09175688028335571 +karman_re200,sr,139,55.6,velocity,lower_ux,0.8804244995117188 +karman_re200,sr,139,55.6,velocity,lower_uy,0.12054335325956345 +karman_re200,sr,140,56.0,velocity,upper_ux,1.1918948888778687 +karman_re200,sr,140,56.0,velocity,upper_uy,0.12371883541345596 +karman_re200,sr,140,56.0,velocity,center_ux,0.8747236728668213 +karman_re200,sr,140,56.0,velocity,center_uy,0.33412036299705505 +karman_re200,sr,140,56.0,velocity,lower_ux,0.9166324138641357 +karman_re200,sr,140,56.0,velocity,lower_uy,0.2203046977519989 +karman_re200,sr,141,56.4,velocity,upper_ux,1.1322789192199707 +karman_re200,sr,141,56.4,velocity,upper_uy,0.3691692054271698 +karman_re200,sr,141,56.4,velocity,center_ux,0.8887612223625183 +karman_re200,sr,141,56.4,velocity,center_uy,0.46761462092399597 +karman_re200,sr,141,56.4,velocity,lower_ux,0.9752548933029175 +karman_re200,sr,141,56.4,velocity,lower_uy,0.2802668511867523 +karman_re200,sr,142,56.8,velocity,upper_ux,1.0679799318313599 +karman_re200,sr,142,56.8,velocity,upper_uy,0.4322192072868347 +karman_re200,sr,142,56.8,velocity,center_ux,0.922200083732605 +karman_re200,sr,142,56.8,velocity,center_uy,0.5067405104637146 +karman_re200,sr,142,56.8,velocity,lower_ux,1.0364387035369873 +karman_re200,sr,142,56.8,velocity,lower_uy,0.30759286880493164 +karman_re200,sr,143,57.2,velocity,upper_ux,1.0106196403503418 +karman_re200,sr,143,57.2,velocity,upper_uy,0.387721449136734 +karman_re200,sr,143,57.2,velocity,center_ux,0.950259268283844 +karman_re200,sr,143,57.2,velocity,center_uy,0.5036599040031433 +karman_re200,sr,143,57.2,velocity,lower_ux,1.0947468280792236 +karman_re200,sr,143,57.2,velocity,lower_uy,0.29096585512161255 +karman_re200,sr,144,57.6,velocity,upper_ux,0.9591584801673889 +karman_re200,sr,144,57.6,velocity,upper_uy,0.299556702375412 +karman_re200,sr,144,57.6,velocity,center_ux,0.9738265872001648 +karman_re200,sr,144,57.6,velocity,center_uy,0.4602588713169098 +karman_re200,sr,144,57.6,velocity,lower_ux,1.1460624933242798 +karman_re200,sr,144,57.6,velocity,lower_uy,0.24711252748966217 +karman_re200,sr,145,58.0,velocity,upper_ux,0.9181064367294312 +karman_re200,sr,145,58.0,velocity,upper_uy,0.1784096658229828 +karman_re200,sr,145,58.0,velocity,center_ux,1.0073180198669434 +karman_re200,sr,145,58.0,velocity,center_uy,0.32309189438819885 +karman_re200,sr,145,58.0,velocity,lower_ux,1.186096429824829 +karman_re200,sr,145,58.0,velocity,lower_uy,0.20358701050281525 +karman_re200,sr,146,58.4,velocity,upper_ux,0.8893244862556458 +karman_re200,sr,146,58.4,velocity,upper_uy,0.022859077900648117 +karman_re200,sr,146,58.4,velocity,center_ux,0.9828476905822754 +karman_re200,sr,146,58.4,velocity,center_uy,0.1414727121591568 +karman_re200,sr,146,58.4,velocity,lower_ux,1.2333983182907104 +karman_re200,sr,146,58.4,velocity,lower_uy,0.24165956676006317 +karman_re200,sr,147,58.8,velocity,upper_ux,0.8825607299804688 +karman_re200,sr,147,58.8,velocity,upper_uy,-0.1347876787185669 +karman_re200,sr,147,58.8,velocity,center_ux,0.9059937000274658 +karman_re200,sr,147,58.8,velocity,center_uy,-0.12375428527593613 +karman_re200,sr,147,58.8,velocity,lower_ux,1.2464346885681152 +karman_re200,sr,147,58.8,velocity,lower_uy,0.20130009949207306 +karman_re200,sr,148,59.2,velocity,upper_ux,0.9224539995193481 +karman_re200,sr,148,59.2,velocity,upper_uy,-0.22816325724124908 +karman_re200,sr,148,59.2,velocity,center_ux,0.8764898180961609 +karman_re200,sr,148,59.2,velocity,center_uy,-0.3574124872684479 +karman_re200,sr,148,59.2,velocity,lower_ux,1.1875402927398682 +karman_re200,sr,148,59.2,velocity,lower_uy,-0.17332835495471954 +karman_re200,sr,149,59.6,velocity,upper_ux,0.980847954750061 +karman_re200,sr,149,59.6,velocity,upper_uy,-0.2852291166782379 +karman_re200,sr,149,59.6,velocity,center_ux,0.8942530751228333 +karman_re200,sr,149,59.6,velocity,center_uy,-0.4770199656486511 +karman_re200,sr,149,59.6,velocity,lower_ux,1.1266347169876099 +karman_re200,sr,149,59.6,velocity,lower_uy,-0.3879827558994293 +karman_re200,sr,150,60.0,velocity,upper_ux,1.0420950651168823 +karman_re200,sr,150,60.0,velocity,upper_uy,-0.3071584701538086 +karman_re200,sr,150,60.0,velocity,center_ux,0.9285433888435364 +karman_re200,sr,150,60.0,velocity,center_uy,-0.5074326395988464 +karman_re200,sr,150,60.0,velocity,lower_ux,1.0635483264923096 +karman_re200,sr,150,60.0,velocity,lower_uy,-0.4296475946903229 +karman_re200,sr,151,60.4,velocity,upper_ux,1.1010932922363281 +karman_re200,sr,151,60.4,velocity,upper_uy,-0.28626787662506104 +karman_re200,sr,151,60.4,velocity,center_ux,0.9572514295578003 +karman_re200,sr,151,60.4,velocity,center_uy,-0.49976563453674316 +karman_re200,sr,151,60.4,velocity,lower_ux,1.0082228183746338 +karman_re200,sr,151,60.4,velocity,lower_uy,-0.37660396099090576 +karman_re200,sr,152,60.8,velocity,upper_ux,1.1514896154403687 +karman_re200,sr,152,60.8,velocity,upper_uy,-0.24013391137123108 +karman_re200,sr,152,60.8,velocity,center_ux,0.9820973873138428 +karman_re200,sr,152,60.8,velocity,center_uy,-0.4467895030975342 +karman_re200,sr,152,60.8,velocity,lower_ux,0.9579780101776123 +karman_re200,sr,152,60.8,velocity,lower_uy,-0.2838553488254547 +karman_re200,sr,153,61.2,velocity,upper_ux,1.189923644065857 +karman_re200,sr,153,61.2,velocity,upper_uy,-0.19866955280303955 +karman_re200,sr,153,61.2,velocity,center_ux,1.0125268697738647 +karman_re200,sr,153,61.2,velocity,center_uy,-0.3010651171207428 +karman_re200,sr,153,61.2,velocity,lower_ux,0.9175153970718384 +karman_re200,sr,153,61.2,velocity,lower_uy,-0.15766163170337677 +karman_re200,sr,154,61.6,velocity,upper_ux,1.2367011308670044 +karman_re200,sr,154,61.6,velocity,upper_uy,-0.24383676052093506 +karman_re200,sr,154,61.6,velocity,center_ux,0.9761559963226318 +karman_re200,sr,154,61.6,velocity,center_uy,-0.11124566197395325 +karman_re200,sr,154,61.6,velocity,lower_ux,0.8875896334648132 +karman_re200,sr,154,61.6,velocity,lower_uy,0.0026445663534104824 +karman_re200,sr,155,62.0,velocity,upper_ux,1.2405965328216553 +karman_re200,sr,155,62.0,velocity,upper_uy,-0.1759873926639557 +karman_re200,sr,155,62.0,velocity,center_ux,0.8999247550964355 +karman_re200,sr,155,62.0,velocity,center_uy,0.15604740381240845 +karman_re200,sr,155,62.0,velocity,lower_ux,0.8852642774581909 +karman_re200,sr,155,62.0,velocity,lower_uy,0.15297995507717133 +karman_re200,sr,156,62.4,velocity,upper_ux,1.178745150566101 +karman_re200,sr,156,62.4,velocity,upper_uy,0.19517788290977478 +karman_re200,sr,156,62.4,velocity,center_ux,0.8765310049057007 +karman_re200,sr,156,62.4,velocity,center_uy,0.3749793767929077 +karman_re200,sr,156,62.4,velocity,lower_ux,0.9306350946426392 +karman_re200,sr,156,62.4,velocity,lower_uy,0.23761913180351257 +karman_re200,sr,157,62.8,velocity,upper_ux,1.1165900230407715 +karman_re200,sr,157,62.8,velocity,upper_uy,0.39324796199798584 +karman_re200,sr,157,62.8,velocity,center_ux,0.8970949649810791 +karman_re200,sr,157,62.8,velocity,center_uy,0.48114392161369324 +karman_re200,sr,157,62.8,velocity,lower_ux,0.9905616641044617 +karman_re200,sr,157,62.8,velocity,lower_uy,0.2917541563510895 +karman_re200,sr,158,63.2,velocity,upper_ux,1.0538004636764526 +karman_re200,sr,158,63.2,velocity,upper_uy,0.42301419377326965 +karman_re200,sr,158,63.2,velocity,center_ux,0.9297674298286438 +karman_re200,sr,158,63.2,velocity,center_uy,0.5061703324317932 +karman_re200,sr,158,63.2,velocity,lower_ux,1.0516895055770874 +karman_re200,sr,158,63.2,velocity,lower_uy,0.30820298194885254 +karman_re200,sr,159,63.6,velocity,upper_ux,0.9983688592910767 +karman_re200,sr,159,63.6,velocity,upper_uy,0.36558768153190613 +karman_re200,sr,159,63.6,velocity,center_ux,0.9547476768493652 +karman_re200,sr,159,63.6,velocity,center_uy,0.4970078766345978 +karman_re200,sr,159,63.6,velocity,lower_ux,1.1095232963562012 +karman_re200,sr,159,63.6,velocity,lower_uy,0.2836850881576538 +karman_re200,sr,160,64.0,velocity,upper_ux,0.9481809139251709 +karman_re200,sr,160,64.0,velocity,upper_uy,0.27077409625053406 +karman_re200,sr,160,64.0,velocity,center_ux,0.9771366119384766 +karman_re200,sr,160,64.0,velocity,center_uy,0.43598347902297974 +karman_re200,sr,160,64.0,velocity,lower_ux,1.157413363456726 +karman_re200,sr,160,64.0,velocity,lower_uy,0.2359759360551834 +karman_re200,sr,161,64.4,velocity,upper_ux,0.9099688529968262 +karman_re200,sr,161,64.4,velocity,upper_uy,0.1434764415025711 +karman_re200,sr,161,64.4,velocity,center_ux,1.0050203800201416 +karman_re200,sr,161,64.4,velocity,center_uy,0.2827984690666199 +karman_re200,sr,161,64.4,velocity,lower_ux,1.1949657201766968 +karman_re200,sr,161,64.4,velocity,lower_uy,0.20233121514320374 +karman_re200,sr,162,64.8,velocity,upper_ux,0.884341299533844 +karman_re200,sr,162,64.8,velocity,upper_uy,-0.01583366096019745 +karman_re200,sr,162,64.8,velocity,center_ux,0.9624854922294617 +karman_re200,sr,162,64.8,velocity,center_uy,0.08342716097831726 +karman_re200,sr,162,64.8,velocity,lower_ux,1.242275357246399 +karman_re200,sr,162,64.8,velocity,lower_uy,0.26628604531288147 +karman_re200,sr,163,65.2,velocity,upper_ux,0.8880348205566406 +karman_re200,sr,163,65.2,velocity,upper_uy,-0.16007743775844574 +karman_re200,sr,163,65.2,velocity,center_ux,0.8916088342666626 +karman_re200,sr,163,65.2,velocity,center_uy,-0.18606708943843842 +karman_re200,sr,163,65.2,velocity,lower_ux,1.230968952178955 +karman_re200,sr,163,65.2,velocity,lower_uy,0.12198971956968307 +karman_re200,sr,164,65.6,velocity,upper_ux,0.9358434081077576 +karman_re200,sr,164,65.6,velocity,upper_uy,-0.2408912032842636 +karman_re200,sr,164,65.6,velocity,center_ux,0.8763546943664551 +karman_re200,sr,164,65.6,velocity,center_uy,-0.39281830191612244 +karman_re200,sr,164,65.6,velocity,lower_ux,1.1757715940475464 +karman_re200,sr,164,65.6,velocity,lower_uy,-0.24278533458709717 +karman_re200,sr,165,66.0,velocity,upper_ux,0.9951015710830688 +karman_re200,sr,165,66.0,velocity,upper_uy,-0.2924405038356781 +karman_re200,sr,165,66.0,velocity,center_ux,0.9008111357688904 +karman_re200,sr,165,66.0,velocity,center_uy,-0.487848699092865 +karman_re200,sr,165,66.0,velocity,lower_ux,1.1136060953140259 +karman_re200,sr,165,66.0,velocity,lower_uy,-0.41285762190818787 +karman_re200,sr,166,66.4,velocity,upper_ux,1.0550777912139893 +karman_re200,sr,166,66.4,velocity,upper_uy,-0.3035665452480316 +karman_re200,sr,166,66.4,velocity,center_ux,0.9344147443771362 +karman_re200,sr,166,66.4,velocity,center_uy,-0.5067517757415771 +karman_re200,sr,166,66.4,velocity,lower_ux,1.0518686771392822 +karman_re200,sr,166,66.4,velocity,lower_uy,-0.4245791733264923 +karman_re200,sr,167,66.8,velocity,upper_ux,1.1126500368118286 +karman_re200,sr,167,66.8,velocity,upper_uy,-0.2755894660949707 +karman_re200,sr,167,66.8,velocity,center_ux,0.961597740650177 +karman_re200,sr,167,66.8,velocity,center_uy,-0.4927901327610016 +karman_re200,sr,167,66.8,velocity,lower_ux,0.9978075623512268 +karman_re200,sr,167,66.8,velocity,lower_uy,-0.35920006036758423 +karman_re200,sr,168,67.2,velocity,upper_ux,1.1600874662399292 +karman_re200,sr,168,67.2,velocity,upper_uy,-0.22639261186122894 +karman_re200,sr,168,67.2,velocity,center_ux,0.9889270067214966 +karman_re200,sr,168,67.2,velocity,center_uy,-0.4192613363265991 +karman_re200,sr,168,67.2,velocity,lower_ux,0.9492631554603577 +karman_re200,sr,168,67.2,velocity,lower_uy,-0.2580479383468628 +karman_re200,sr,169,67.6,velocity,upper_ux,1.1978843212127686 +karman_re200,sr,169,67.6,velocity,upper_uy,-0.19530867040157318 +karman_re200,sr,169,67.6,velocity,center_ux,1.0124390125274658 +karman_re200,sr,169,67.6,velocity,center_uy,-0.26161831617355347 +karman_re200,sr,169,67.6,velocity,lower_ux,0.9114034175872803 +karman_re200,sr,169,67.6,velocity,lower_uy,-0.12301167845726013 +karman_re200,sr,170,68.0,velocity,upper_ux,1.2454243898391724 +karman_re200,sr,170,68.0,velocity,upper_uy,-0.2593194842338562 +karman_re200,sr,170,68.0,velocity,center_ux,0.9578626155853271 +karman_re200,sr,170,68.0,velocity,center_uy,-0.05364438518881798 +karman_re200,sr,170,68.0,velocity,lower_ux,0.884650468826294 +karman_re200,sr,170,68.0,velocity,lower_uy,0.04251687228679657 +karman_re200,sr,171,68.4,velocity,upper_ux,1.2249523401260376 +karman_re200,sr,171,68.4,velocity,upper_uy,-0.09456425905227661 +karman_re200,sr,171,68.4,velocity,center_ux,0.8894405961036682 +karman_re200,sr,171,68.4,velocity,center_uy,0.21607805788516998 +karman_re200,sr,171,68.4,velocity,lower_ux,0.893629789352417 +karman_re200,sr,171,68.4,velocity,lower_uy,0.17770898342132568 +karman_re200,sr,172,68.8,velocity,upper_ux,1.163846492767334 +karman_re200,sr,172,68.8,velocity,upper_uy,0.2582899332046509 +karman_re200,sr,172,68.8,velocity,center_ux,0.8786495923995972 +karman_re200,sr,172,68.8,velocity,center_uy,0.40873268246650696 +karman_re200,sr,172,68.8,velocity,lower_ux,0.9444465041160583 +karman_re200,sr,172,68.8,velocity,lower_uy,0.2516259253025055 +karman_re200,sr,173,69.2,velocity,upper_ux,1.1009315252304077 +karman_re200,sr,173,69.2,velocity,upper_uy,0.4115474224090576 +karman_re200,sr,173,69.2,velocity,center_ux,0.9048044085502625 +karman_re200,sr,173,69.2,velocity,center_uy,0.4899819493293762 +karman_re200,sr,173,69.2,velocity,lower_ux,1.0048900842666626 +karman_re200,sr,173,69.2,velocity,lower_uy,0.2993605434894562 +karman_re200,sr,174,69.6,velocity,upper_ux,1.0409717559814453 +karman_re200,sr,174,69.6,velocity,upper_uy,0.4125972092151642 +karman_re200,sr,174,69.6,velocity,center_ux,0.9362174272537231 +karman_re200,sr,174,69.6,velocity,center_uy,0.5040814280509949 +karman_re200,sr,174,69.6,velocity,lower_ux,1.0654869079589844 +karman_re200,sr,174,69.6,velocity,lower_uy,0.30494144558906555 +karman_re200,sr,175,70.0,velocity,upper_ux,0.9878567457199097 +karman_re200,sr,175,70.0,velocity,upper_uy,0.344299852848053 +karman_re200,sr,175,70.0,velocity,center_ux,0.9589859843254089 +karman_re200,sr,175,70.0,velocity,center_uy,0.48798033595085144 +karman_re200,sr,175,70.0,velocity,lower_ux,1.1223139762878418 +karman_re200,sr,175,70.0,velocity,lower_uy,0.2736142575740814 +karman_re200,sr,176,70.4,velocity,upper_ux,0.9402743577957153 +karman_re200,sr,176,70.4,velocity,upper_uy,0.2419232577085495 +karman_re200,sr,176,70.4,velocity,center_ux,0.9827328324317932 +karman_re200,sr,176,70.4,velocity,center_uy,0.4050063192844391 +karman_re200,sr,176,70.4,velocity,lower_ux,1.1670912504196167 +karman_re200,sr,176,70.4,velocity,lower_uy,0.22346557676792145 +karman_re200,sr,177,70.8,velocity,upper_ux,0.9043367505073547 +karman_re200,sr,177,70.8,velocity,upper_uy,0.10675224661827087 +karman_re200,sr,177,70.8,velocity,center_ux,1.0001431703567505 +karman_re200,sr,177,70.8,velocity,center_uy,0.23952029645442963 +karman_re200,sr,177,70.8,velocity,lower_ux,1.2034938335418701 +karman_re200,sr,177,70.8,velocity,lower_uy,0.20353731513023376 +karman_re200,sr,178,71.2,velocity,upper_ux,0.8816187977790833 +karman_re200,sr,178,71.2,velocity,upper_uy,-0.05586908012628555 +karman_re200,sr,178,71.2,velocity,center_ux,0.9419988989830017 +karman_re200,sr,178,71.2,velocity,center_uy,0.020730050280690193 +karman_re200,sr,178,71.2,velocity,lower_ux,1.2464221715927124 +karman_re200,sr,178,71.2,velocity,lower_uy,0.2748611867427826 +karman_re200,sr,179,71.6,velocity,upper_ux,0.8971189856529236 +karman_re200,sr,179,71.6,velocity,upper_uy,-0.1835399866104126 +karman_re200,sr,179,71.6,velocity,center_ux,0.8813294172286987 +karman_re200,sr,179,71.6,velocity,center_uy,-0.24303953349590302 +karman_re200,sr,179,71.6,velocity,lower_ux,1.2138700485229492 +karman_re200,sr,179,71.6,velocity,lower_uy,0.038295067846775055 +karman_re200,sr,180,72.0,velocity,upper_ux,0.9500589966773987 +karman_re200,sr,180,72.0,velocity,upper_uy,-0.2547144591808319 +karman_re200,sr,180,72.0,velocity,center_ux,0.8778373003005981 +karman_re200,sr,180,72.0,velocity,center_uy,-0.42245304584503174 +karman_re200,sr,180,72.0,velocity,lower_ux,1.158887505531311 +karman_re200,sr,180,72.0,velocity,lower_uy,-0.2941332161426544 +karman_re200,sr,181,72.4,velocity,upper_ux,1.0101944208145142 +karman_re200,sr,181,72.4,velocity,upper_uy,-0.29920268058776855 +karman_re200,sr,181,72.4,velocity,center_ux,0.9070984125137329 +karman_re200,sr,181,72.4,velocity,center_uy,-0.4950817823410034 +karman_re200,sr,181,72.4,velocity,lower_ux,1.0960839986801147 +karman_re200,sr,181,72.4,velocity,lower_uy,-0.42656445503234863 +karman_re200,sr,182,72.8,velocity,upper_ux,1.0694535970687866 +karman_re200,sr,182,72.8,velocity,upper_uy,-0.2997889816761017 +karman_re200,sr,182,72.8,velocity,center_ux,0.9389871954917908 +karman_re200,sr,182,72.8,velocity,center_uy,-0.5052134990692139 +karman_re200,sr,182,72.8,velocity,lower_ux,1.0367568731307983 +karman_re200,sr,182,72.8,velocity,lower_uy,-0.41497310996055603 +karman_re200,sr,183,73.2,velocity,upper_ux,1.1248582601547241 +karman_re200,sr,183,73.2,velocity,upper_uy,-0.26562023162841797 +karman_re200,sr,183,73.2,velocity,center_ux,0.9634369611740112 +karman_re200,sr,183,73.2,velocity,center_uy,-0.4844322204589844 +karman_re200,sr,183,73.2,velocity,lower_ux,0.9838829040527344 +karman_re200,sr,183,73.2,velocity,lower_uy,-0.34043121337890625 +karman_re200,sr,184,73.6,velocity,upper_ux,1.1692861318588257 +karman_re200,sr,184,73.6,velocity,upper_uy,-0.2152767926454544 +karman_re200,sr,184,73.6,velocity,center_ux,0.9932631850242615 +karman_re200,sr,184,73.6,velocity,center_uy,-0.3880312442779541 +karman_re200,sr,184,73.6,velocity,lower_ux,0.9379684329032898 +karman_re200,sr,184,73.6,velocity,lower_uy,-0.23203064501285553 +karman_re200,sr,185,74.0,velocity,upper_ux,1.2086210250854492 +karman_re200,sr,185,74.0,velocity,upper_uy,-0.20227889716625214 +karman_re200,sr,185,74.0,velocity,center_ux,1.0044301748275757 +karman_re200,sr,185,74.0,velocity,center_uy,-0.22204452753067017 +karman_re200,sr,185,74.0,velocity,lower_ux,0.9033701419830322 +karman_re200,sr,185,74.0,velocity,lower_uy,-0.08940508961677551 +karman_re200,sr,186,74.4,velocity,upper_ux,1.2514797449111938 +karman_re200,sr,186,74.4,velocity,upper_uy,-0.26713791489601135 +karman_re200,sr,186,74.4,velocity,center_ux,0.9367714524269104 +karman_re200,sr,186,74.4,velocity,center_uy,0.0072088176384568214 +karman_re200,sr,186,74.4,velocity,lower_ux,0.8820472955703735 +karman_re200,sr,186,74.4,velocity,lower_uy,0.07707742601633072 +karman_re200,sr,187,74.8,velocity,upper_ux,1.2090191841125488 +karman_re200,sr,187,74.8,velocity,upper_uy,0.0031844156328588724 +karman_re200,sr,187,74.8,velocity,center_ux,0.8810125589370728 +karman_re200,sr,187,74.8,velocity,center_uy,0.2707225978374481 +karman_re200,sr,187,74.8,velocity,lower_ux,0.902876079082489 +karman_re200,sr,187,74.8,velocity,lower_uy,0.1970156878232956 +karman_re200,sr,188,75.2,velocity,upper_ux,1.1499232053756714 +karman_re200,sr,188,75.2,velocity,upper_uy,0.3143935203552246 +karman_re200,sr,188,75.2,velocity,center_ux,0.8818219900131226 +karman_re200,sr,188,75.2,velocity,center_uy,0.4376660883426666 +karman_re200,sr,188,75.2,velocity,lower_ux,0.9570391774177551 +karman_re200,sr,188,75.2,velocity,lower_uy,0.26412078738212585 +karman_re200,sr,189,75.6,velocity,upper_ux,1.0863820314407349 +karman_re200,sr,189,75.6,velocity,upper_uy,0.4254908263683319 +karman_re200,sr,189,75.6,velocity,center_ux,0.9123371839523315 +karman_re200,sr,189,75.6,velocity,center_uy,0.49818480014801025 +karman_re200,sr,189,75.6,velocity,lower_ux,1.0177459716796875 +karman_re200,sr,189,75.6,velocity,lower_uy,0.3040319085121155 +karman_re200,sr,190,76.0,velocity,upper_ux,1.028952956199646 +karman_re200,sr,190,76.0,velocity,upper_uy,0.40322715044021606 +karman_re200,sr,190,76.0,velocity,center_ux,0.9431105256080627 +karman_re200,sr,190,76.0,velocity,center_uy,0.5035452842712402 +karman_re200,sr,190,76.0,velocity,lower_ux,1.077938437461853 +karman_re200,sr,190,76.0,velocity,lower_uy,0.2993842363357544 +karman_re200,sr,191,76.4,velocity,upper_ux,0.9772657155990601 +karman_re200,sr,191,76.4,velocity,upper_uy,0.3254481554031372 +karman_re200,sr,191,76.4,velocity,center_ux,0.9654589891433716 +karman_re200,sr,191,76.4,velocity,center_uy,0.47807493805885315 +karman_re200,sr,191,76.4,velocity,lower_ux,1.1329227685928345 +karman_re200,sr,191,76.4,velocity,lower_uy,0.26203787326812744 +karman_re200,sr,192,76.8,velocity,upper_ux,0.9325793981552124 +karman_re200,sr,192,76.8,velocity,upper_uy,0.21456409990787506 +karman_re200,sr,192,76.8,velocity,center_ux,0.9939131140708923 +karman_re200,sr,192,76.8,velocity,center_uy,0.37000080943107605 +karman_re200,sr,192,76.8,velocity,lower_ux,1.1752408742904663 +karman_re200,sr,192,76.8,velocity,lower_uy,0.21183007955551147 +karman_re200,sr,193,77.2,velocity,upper_ux,0.8987892270088196 +karman_re200,sr,193,77.2,velocity,upper_uy,0.0695011094212532 +karman_re200,sr,193,77.2,velocity,center_ux,0.9961101412773132 +karman_re200,sr,193,77.2,velocity,center_uy,0.19713185727596283 +karman_re200,sr,193,77.2,velocity,lower_ux,1.2143630981445312 +karman_re200,sr,193,77.2,velocity,lower_uy,0.21071279048919678 +karman_re200,sr,194,77.6,velocity,upper_ux,0.8803362250328064 +karman_re200,sr,194,77.6,velocity,upper_uy,-0.09440376609563828 +karman_re200,sr,194,77.6,velocity,center_ux,0.9247695803642273 +karman_re200,sr,194,77.6,velocity,center_uy,-0.04151110723614693 +karman_re200,sr,194,77.6,velocity,lower_ux,1.2497763633728027 +karman_re200,sr,194,77.6,velocity,lower_uy,0.26416945457458496 +karman_re200,sr,195,78.0,velocity,upper_ux,0.9077868461608887 +karman_re200,sr,195,78.0,velocity,upper_uy,-0.20548665523529053 +karman_re200,sr,195,78.0,velocity,center_ux,0.8764243125915527 +karman_re200,sr,195,78.0,velocity,center_uy,-0.29505690932273865 +karman_re200,sr,195,78.0,velocity,lower_ux,1.1997957229614258 +karman_re200,sr,195,78.0,velocity,lower_uy,-0.04754357039928436 +karman_re200,sr,196,78.4,velocity,upper_ux,0.9642860293388367 +karman_re200,sr,196,78.4,velocity,upper_uy,-0.2698168456554413 +karman_re200,sr,196,78.4,velocity,center_ux,0.8828391432762146 +karman_re200,sr,196,78.4,velocity,center_uy,-0.4488162100315094 +karman_re200,sr,196,78.4,velocity,lower_ux,1.1419262886047363 +karman_re200,sr,196,78.4,velocity,lower_uy,-0.33653897047042847 +karman_re200,sr,197,78.8,velocity,upper_ux,1.0251737833023071 +karman_re200,sr,197,78.8,velocity,upper_uy,-0.30536994338035583 +karman_re200,sr,197,78.8,velocity,center_ux,0.9148233532905579 +karman_re200,sr,197,78.8,velocity,center_uy,-0.5015043020248413 +karman_re200,sr,197,78.8,velocity,lower_ux,1.078244686126709 +karman_re200,sr,197,78.8,velocity,lower_uy,-0.43130728602409363 +karman_re200,sr,198,79.2,velocity,upper_ux,1.0844159126281738 +karman_re200,sr,198,79.2,velocity,upper_uy,-0.29617196321487427 +karman_re200,sr,198,79.2,velocity,center_ux,0.9446402788162231 +karman_re200,sr,198,79.2,velocity,center_uy,-0.5043179392814636 +karman_re200,sr,198,79.2,velocity,lower_ux,1.021004319190979 +karman_re200,sr,198,79.2,velocity,lower_uy,-0.40063968300819397 +karman_re200,sr,199,79.6,velocity,upper_ux,1.1374870538711548 +karman_re200,sr,199,79.6,velocity,upper_uy,-0.2563207745552063 +karman_re200,sr,199,79.6,velocity,center_ux,0.9669941663742065 +karman_re200,sr,199,79.6,velocity,center_uy,-0.473530113697052 +karman_re200,sr,199,79.6,velocity,lower_ux,0.968975305557251 +karman_re200,sr,199,79.6,velocity,lower_uy,-0.3188048303127289 +karman_re200,sr,200,80.0,velocity,upper_ux,1.1788372993469238 +karman_re200,sr,200,80.0,velocity,upper_uy,-0.20808091759681702 +karman_re200,sr,200,80.0,velocity,center_ux,0.9989290833473206 +karman_re200,sr,200,80.0,velocity,center_uy,-0.3535870611667633 +karman_re200,sr,200,80.0,velocity,lower_ux,0.9256139993667603 +karman_re200,sr,200,80.0,velocity,lower_uy,-0.203974649310112 +karman_re200,sr,201,80.4,velocity,upper_ux,1.2223533391952515 +karman_re200,sr,201,80.4,velocity,upper_uy,-0.2222326099872589 +karman_re200,sr,201,80.4,velocity,center_ux,0.9925495386123657 +karman_re200,sr,201,80.4,velocity,center_uy,-0.17994588613510132 +karman_re200,sr,201,80.4,velocity,lower_ux,0.8946303725242615 +karman_re200,sr,201,80.4,velocity,lower_uy,-0.05477131903171539 +karman_re200,sr,202,80.8,velocity,upper_ux,1.2518080472946167 +karman_re200,sr,202,80.8,velocity,upper_uy,-0.24723245203495026 +karman_re200,sr,202,80.8,velocity,center_ux,0.9172775149345398 +karman_re200,sr,202,80.8,velocity,center_uy,0.07040281593799591 +karman_re200,sr,202,80.8,velocity,lower_ux,0.8805271983146667 +karman_re200,sr,202,80.8,velocity,lower_uy,0.10869991034269333 +karman_re200,sr,203,81.2,velocity,upper_ux,1.1967965364456177 +karman_re200,sr,203,81.2,velocity,upper_uy,0.10260304808616638 +karman_re200,sr,203,81.2,velocity,center_ux,0.8762770295143127 +karman_re200,sr,203,81.2,velocity,center_uy,0.32022419571876526 +karman_re200,sr,203,81.2,velocity,lower_ux,0.9126995801925659 +karman_re200,sr,203,81.2,velocity,lower_uy,0.21411055326461792 +karman_re200,sr,204,81.6,velocity,upper_ux,1.1377938985824585 +karman_re200,sr,204,81.6,velocity,upper_uy,0.36044275760650635 +karman_re200,sr,204,81.6,velocity,center_ux,0.8874953985214233 +karman_re200,sr,204,81.6,velocity,center_uy,0.4619923532009125 +karman_re200,sr,204,81.6,velocity,lower_ux,0.9697623252868652 +karman_re200,sr,204,81.6,velocity,lower_uy,0.27591559290885925 +karman_re200,sr,205,82.0,velocity,upper_ux,1.0733933448791504 +karman_re200,sr,205,82.0,velocity,upper_uy,0.4322472810745239 +karman_re200,sr,205,82.0,velocity,center_ux,0.920454204082489 +karman_re200,sr,205,82.0,velocity,center_uy,0.5051790475845337 +karman_re200,sr,205,82.0,velocity,lower_ux,1.0303430557250977 +karman_re200,sr,205,82.0,velocity,lower_uy,0.30643823742866516 +karman_re200,sr,206,82.4,velocity,upper_ux,1.0171356201171875 +karman_re200,sr,206,82.4,velocity,upper_uy,0.39165255427360535 +karman_re200,sr,206,82.4,velocity,center_ux,0.9505792856216431 +karman_re200,sr,206,82.4,velocity,center_uy,0.5032380223274231 +karman_re200,sr,206,82.4,velocity,lower_ux,1.0899795293807983 +karman_re200,sr,206,82.4,velocity,lower_uy,0.29254087805747986 +karman_re200,sr,207,82.8,velocity,upper_ux,0.9661551713943481 +karman_re200,sr,207,82.8,velocity,upper_uy,0.3053438663482666 +karman_re200,sr,207,82.8,velocity,center_ux,0.9745140075683594 +karman_re200,sr,207,82.8,velocity,center_uy,0.46438807249069214 +karman_re200,sr,207,82.8,velocity,lower_ux,1.1427369117736816 +karman_re200,sr,207,82.8,velocity,lower_uy,0.2500152289867401 +karman_re200,sr,208,83.2,velocity,upper_ux,0.9237596392631531 +karman_re200,sr,208,83.2,velocity,upper_uy,0.1858138144016266 +karman_re200,sr,208,83.2,velocity,center_ux,1.0067681074142456 +karman_re200,sr,208,83.2,velocity,center_uy,0.33324822783470154 +karman_re200,sr,208,83.2,velocity,lower_ux,1.1829333305358887 +karman_re200,sr,208,83.2,velocity,lower_uy,0.2032352089881897 +karman_re200,sr,209,83.6,velocity,upper_ux,0.8925058841705322 +karman_re200,sr,209,83.6,velocity,upper_uy,0.031228888779878616 +karman_re200,sr,209,83.6,velocity,center_ux,0.9884345531463623 +karman_re200,sr,209,83.6,velocity,center_uy,0.15427584946155548 +karman_re200,sr,209,83.6,velocity,lower_ux,1.2275935411453247 +karman_re200,sr,209,83.6,velocity,lower_uy,0.227150559425354 +karman_re200,sr,210,84.0,velocity,upper_ux,0.8815694451332092 +karman_re200,sr,210,84.0,velocity,upper_uy,-0.12860189378261566 +karman_re200,sr,210,84.0,velocity,center_ux,0.9105594754219055 +karman_re200,sr,210,84.0,velocity,center_uy,-0.10418231040239334 +karman_re200,sr,210,84.0,velocity,lower_ux,1.2486728429794312 +karman_re200,sr,210,84.0,velocity,lower_uy,0.22654882073402405 +karman_re200,sr,211,84.4,velocity,upper_ux,0.9193578958511353 +karman_re200,sr,211,84.4,velocity,upper_uy,-0.22451473772525787 +karman_re200,sr,211,84.4,velocity,center_ux,0.8757675290107727 +karman_re200,sr,211,84.4,velocity,center_uy,-0.34231531620025635 +karman_re200,sr,211,84.4,velocity,lower_ux,1.1881945133209229 +karman_re200,sr,211,84.4,velocity,lower_uy,-0.13448089361190796 +karman_re200,sr,212,84.8,velocity,upper_ux,0.9782767295837402 +karman_re200,sr,212,84.8,velocity,upper_uy,-0.2832809388637543 +karman_re200,sr,212,84.8,velocity,center_ux,0.8908227682113647 +karman_re200,sr,212,84.8,velocity,center_uy,-0.47003886103630066 +karman_re200,sr,212,84.8,velocity,lower_ux,1.127769947052002 +karman_re200,sr,212,84.8,velocity,lower_uy,-0.3719267249107361 +karman_re200,sr,213,85.2,velocity,upper_ux,1.0394866466522217 +karman_re200,sr,213,85.2,velocity,upper_uy,-0.3085806965827942 +karman_re200,sr,213,85.2,velocity,center_ux,0.9238024353981018 +karman_re200,sr,213,85.2,velocity,center_uy,-0.5056958794593811 +karman_re200,sr,213,85.2,velocity,lower_ux,1.0639605522155762 +karman_re200,sr,213,85.2,velocity,lower_uy,-0.428548663854599 +karman_re200,sr,214,85.6,velocity,upper_ux,1.098587989807129 +karman_re200,sr,214,85.6,velocity,upper_uy,-0.29059115052223206 +karman_re200,sr,214,85.6,velocity,center_ux,0.9515060186386108 +karman_re200,sr,214,85.6,velocity,center_uy,-0.5016509890556335 +karman_re200,sr,214,85.6,velocity,lower_ux,1.0081216096878052 +karman_re200,sr,214,85.6,velocity,lower_uy,-0.38191553950309753 +karman_re200,sr,215,86.0,velocity,upper_ux,1.1492478847503662 +karman_re200,sr,215,86.0,velocity,upper_uy,-0.245865598320961 +karman_re200,sr,215,86.0,velocity,center_ux,0.9736740589141846 +karman_re200,sr,215,86.0,velocity,center_uy,-0.45592230558395386 +karman_re200,sr,215,86.0,velocity,lower_ux,0.9570619463920593 +karman_re200,sr,215,86.0,velocity,lower_uy,-0.2930096387863159 +karman_re200,sr,216,86.4,velocity,upper_ux,1.1876295804977417 +karman_re200,sr,216,86.4,velocity,upper_uy,-0.2035873830318451 +karman_re200,sr,216,86.4,velocity,center_ux,1.0046982765197754 +karman_re200,sr,216,86.4,velocity,center_uy,-0.3156639337539673 +karman_re200,sr,216,86.4,velocity,lower_ux,0.9158494472503662 +karman_re200,sr,216,86.4,velocity,lower_uy,-0.17149421572685242 +karman_re200,sr,217,86.8,velocity,upper_ux,1.2346436977386475 +karman_re200,sr,217,86.8,velocity,upper_uy,-0.24687501788139343 +karman_re200,sr,217,86.8,velocity,center_ux,0.9777689576148987 +karman_re200,sr,217,86.8,velocity,center_uy,-0.13047519326210022 +karman_re200,sr,217,86.8,velocity,lower_ux,0.8877362608909607 +karman_re200,sr,217,86.8,velocity,lower_uy,-0.016151225194334984 +karman_re200,sr,218,87.2,velocity,upper_ux,1.2432667016983032 +karman_re200,sr,218,87.2,velocity,upper_uy,-0.19127193093299866 +karman_re200,sr,218,87.2,velocity,center_ux,0.901865541934967 +karman_re200,sr,218,87.2,velocity,center_uy,0.13449148833751678 +karman_re200,sr,218,87.2,velocity,lower_ux,0.8827203512191772 +karman_re200,sr,218,87.2,velocity,lower_uy,0.1389158070087433 +karman_re200,sr,219,87.6,velocity,upper_ux,1.1854861974716187 +karman_re200,sr,219,87.6,velocity,upper_uy,0.18418419361114502 +karman_re200,sr,219,87.6,velocity,center_ux,0.8749842643737793 +karman_re200,sr,219,87.6,velocity,center_uy,0.3627878427505493 +karman_re200,sr,219,87.6,velocity,lower_ux,0.9245595335960388 +karman_re200,sr,219,87.6,velocity,lower_uy,0.22980377078056335 +karman_re200,sr,220,88.0,velocity,upper_ux,1.1248998641967773 +karman_re200,sr,220,88.0,velocity,upper_uy,0.3927179276943207 +karman_re200,sr,220,88.0,velocity,center_ux,0.8944863677024841 +karman_re200,sr,220,88.0,velocity,center_uy,0.4789401888847351 +karman_re200,sr,220,88.0,velocity,lower_ux,0.9837854504585266 +karman_re200,sr,220,88.0,velocity,lower_uy,0.28633156418800354 +karman_re200,sr,221,88.4,velocity,upper_ux,1.0610299110412598 +karman_re200,sr,221,88.4,velocity,upper_uy,0.4302263557910919 +karman_re200,sr,221,88.4,velocity,center_ux,0.9281231164932251 +karman_re200,sr,221,88.4,velocity,center_uy,0.5078461170196533 +karman_re200,sr,221,88.4,velocity,lower_ux,1.0441476106643677 +karman_re200,sr,221,88.4,velocity,lower_uy,0.3063831925392151 +karman_re200,sr,222,88.8,velocity,upper_ux,1.0052237510681152 +karman_re200,sr,222,88.8,velocity,upper_uy,0.37540560960769653 +karman_re200,sr,222,88.8,velocity,center_ux,0.9562469720840454 +karman_re200,sr,222,88.8,velocity,center_uy,0.4997209310531616 +karman_re200,sr,222,88.8,velocity,lower_ux,1.1024516820907593 +karman_re200,sr,222,88.8,velocity,lower_uy,0.2844381630420685 +karman_re200,sr,223,89.2,velocity,upper_ux,0.9551833271980286 +karman_re200,sr,223,89.2,velocity,upper_uy,0.281237930059433 +karman_re200,sr,223,89.2,velocity,center_ux,0.9819847941398621 +karman_re200,sr,223,89.2,velocity,center_uy,0.44349491596221924 +karman_re200,sr,223,89.2,velocity,lower_ux,1.1524981260299683 +karman_re200,sr,223,89.2,velocity,lower_uy,0.23780441284179688 +karman_re200,sr,224,89.6,velocity,upper_ux,0.9152703881263733 +karman_re200,sr,224,89.6,velocity,upper_uy,0.1538049280643463 +karman_re200,sr,224,89.6,velocity,center_ux,1.0123670101165771 +karman_re200,sr,224,89.6,velocity,center_uy,0.29578834772109985 +karman_re200,sr,224,89.6,velocity,lower_ux,1.1909964084625244 +karman_re200,sr,224,89.6,velocity,lower_uy,0.19868133962154388 +karman_re200,sr,225,90.0,velocity,upper_ux,0.8870390057563782 +karman_re200,sr,225,90.0,velocity,upper_uy,-0.007360294461250305 +karman_re200,sr,225,90.0,velocity,center_ux,0.9732486605644226 +karman_re200,sr,225,90.0,velocity,center_uy,0.10381892323493958 +karman_re200,sr,225,90.0,velocity,lower_ux,1.239335060119629 +karman_re200,sr,225,90.0,velocity,lower_uy,0.24979262053966522 +karman_re200,sr,226,90.4,velocity,upper_ux,0.886522114276886 +karman_re200,sr,226,90.4,velocity,upper_uy,-0.156341090798378 +karman_re200,sr,226,90.4,velocity,center_ux,0.8981666564941406 +karman_re200,sr,226,90.4,velocity,center_uy,-0.16651035845279694 +karman_re200,sr,226,90.4,velocity,lower_ux,1.2380621433258057 +karman_re200,sr,226,90.4,velocity,lower_uy,0.15812569856643677 +karman_re200,sr,227,90.8,velocity,upper_ux,0.9319943785667419 +karman_re200,sr,227,90.8,velocity,upper_uy,-0.23945264518260956 +karman_re200,sr,227,90.8,velocity,center_ux,0.8769000172615051 +karman_re200,sr,227,90.8,velocity,center_uy,-0.3821157217025757 +karman_re200,sr,227,90.8,velocity,lower_ux,1.176811695098877 +karman_re200,sr,227,90.8,velocity,lower_uy,-0.2123030126094818 +karman_re200,sr,228,91.2,velocity,upper_ux,0.9920036792755127 +karman_re200,sr,228,91.2,velocity,upper_uy,-0.2926586866378784 +karman_re200,sr,228,91.2,velocity,center_ux,0.899086594581604 +karman_re200,sr,228,91.2,velocity,center_uy,-0.48386257886886597 +karman_re200,sr,228,91.2,velocity,lower_ux,1.1150110960006714 +karman_re200,sr,228,91.2,velocity,lower_uy,-0.39942145347595215 +karman_re200,sr,229,91.6,velocity,upper_ux,1.0530704259872437 +karman_re200,sr,229,91.6,velocity,upper_uy,-0.30715319514274597 +karman_re200,sr,229,91.6,velocity,center_ux,0.9321406483650208 +karman_re200,sr,229,91.6,velocity,center_uy,-0.5061194896697998 +karman_re200,sr,229,91.6,velocity,lower_ux,1.052961826324463 +karman_re200,sr,229,91.6,velocity,lower_uy,-0.42195141315460205 +karman_re200,sr,230,92.0,velocity,upper_ux,1.111056923866272 +karman_re200,sr,230,92.0,velocity,upper_uy,-0.2814639210700989 +karman_re200,sr,230,92.0,velocity,center_ux,0.9577010273933411 +karman_re200,sr,230,92.0,velocity,center_uy,-0.49524399638175964 +karman_re200,sr,230,92.0,velocity,lower_ux,0.998311460018158 +karman_re200,sr,230,92.0,velocity,lower_uy,-0.36191508173942566 +karman_re200,sr,231,92.4,velocity,upper_ux,1.15907883644104 +karman_re200,sr,231,92.4,velocity,upper_uy,-0.23301883041858673 +karman_re200,sr,231,92.4,velocity,center_ux,0.9814831018447876 +karman_re200,sr,231,92.4,velocity,center_uy,-0.4300555884838104 +karman_re200,sr,231,92.4,velocity,lower_ux,0.9490988254547119 +karman_re200,sr,231,92.4,velocity,lower_uy,-0.265109121799469 +karman_re200,sr,232,92.8,velocity,upper_ux,1.1956846714019775 +karman_re200,sr,232,92.8,velocity,upper_uy,-0.2000112682580948 +karman_re200,sr,232,92.8,velocity,center_ux,1.0070314407348633 +karman_re200,sr,232,92.8,velocity,center_uy,-0.2745974063873291 +karman_re200,sr,232,92.8,velocity,lower_ux,0.9103696346282959 +karman_re200,sr,232,92.8,velocity,lower_uy,-0.1355729103088379 +karman_re200,sr,233,93.2,velocity,upper_ux,1.2423028945922852 +karman_re200,sr,233,93.2,velocity,upper_uy,-0.2638591527938843 +karman_re200,sr,233,93.2,velocity,center_ux,0.9604514837265015 +karman_re200,sr,233,93.2,velocity,center_uy,-0.07224482297897339 +karman_re200,sr,233,93.2,velocity,lower_ux,0.8838836550712585 +karman_re200,sr,233,93.2,velocity,lower_uy,0.025651760399341583 +karman_re200,sr,234,93.6,velocity,upper_ux,1.2286560535430908 +karman_re200,sr,234,93.6,velocity,upper_uy,-0.11594755202531815 +karman_re200,sr,234,93.6,velocity,center_ux,0.8904976844787598 +karman_re200,sr,234,93.6,velocity,center_uy,0.1959918737411499 +karman_re200,sr,234,93.6,velocity,lower_ux,0.8897969126701355 +karman_re200,sr,234,93.6,velocity,lower_uy,0.16644850373268127 +karman_re200,sr,235,94.0,velocity,upper_ux,1.1712255477905273 +karman_re200,sr,235,94.0,velocity,upper_uy,0.2457851767539978 +karman_re200,sr,235,94.0,velocity,center_ux,0.8763306140899658 +karman_re200,sr,235,94.0,velocity,center_uy,0.39756259322166443 +karman_re200,sr,235,94.0,velocity,lower_ux,0.9388590455055237 +karman_re200,sr,235,94.0,velocity,lower_uy,0.24460095167160034 +karman_re200,sr,236,94.4,velocity,upper_ux,1.1090294122695923 +karman_re200,sr,236,94.4,velocity,upper_uy,0.4121481776237488 +karman_re200,sr,236,94.4,velocity,center_ux,0.9015471935272217 +karman_re200,sr,236,94.4,velocity,center_uy,0.48836037516593933 +karman_re200,sr,236,94.4,velocity,lower_ux,0.9990012645721436 +karman_re200,sr,236,94.4,velocity,lower_uy,0.29495781660079956 +karman_re200,sr,237,94.8,velocity,upper_ux,1.0476001501083374 +karman_re200,sr,237,94.8,velocity,upper_uy,0.4211682975292206 +karman_re200,sr,237,94.8,velocity,center_ux,0.9342260956764221 +karman_re200,sr,237,94.8,velocity,center_uy,0.506060004234314 +karman_re200,sr,237,94.8,velocity,lower_ux,1.0591399669647217 +karman_re200,sr,237,94.8,velocity,lower_uy,0.30415648221969604 +karman_re200,sr,238,95.2,velocity,upper_ux,0.9929183721542358 +karman_re200,sr,238,95.2,velocity,upper_uy,0.3551105260848999 +karman_re200,sr,238,95.2,velocity,center_ux,0.9589580297470093 +karman_re200,sr,238,95.2,velocity,center_uy,0.4919602572917938 +karman_re200,sr,238,95.2,velocity,lower_ux,1.1156634092330933 +karman_re200,sr,238,95.2,velocity,lower_uy,0.2751392424106598 +karman_re200,sr,239,95.6,velocity,upper_ux,0.9448367953300476 +karman_re200,sr,239,95.6,velocity,upper_uy,0.25371140241622925 +karman_re200,sr,239,95.6,velocity,center_ux,0.9853817820549011 +karman_re200,sr,239,95.6,velocity,center_uy,0.4153972566127777 +karman_re200,sr,239,95.6,velocity,lower_ux,1.1624277830123901 +karman_re200,sr,239,95.6,velocity,lower_uy,0.22561834752559662 +karman_re200,sr,240,96.0,velocity,upper_ux,0.9081474542617798 +karman_re200,sr,240,96.0,velocity,upper_uy,0.11914485692977905 +karman_re200,sr,240,96.0,velocity,center_ux,1.0076903104782104 +karman_re200,sr,240,96.0,velocity,center_uy,0.255389928817749 +karman_re200,sr,240,96.0,velocity,lower_ux,1.2002382278442383 +karman_re200,sr,240,96.0,velocity,lower_uy,0.19929830729961395 +karman_re200,sr,241,96.4,velocity,upper_ux,0.8833450078964233 +karman_re200,sr,241,96.4,velocity,upper_uy,-0.04511237144470215 +karman_re200,sr,241,96.4,velocity,center_ux,0.9520216584205627 +karman_re200,sr,241,96.4,velocity,center_uy,0.04346178472042084 +karman_re200,sr,241,96.4,velocity,lower_ux,1.2467268705368042 +karman_re200,sr,241,96.4,velocity,lower_uy,0.2681314945220947 +karman_re200,sr,242,96.8,velocity,upper_ux,0.8947635889053345 +karman_re200,sr,242,96.8,velocity,upper_uy,-0.17854100465774536 +karman_re200,sr,242,96.8,velocity,center_ux,0.8868664503097534 +karman_re200,sr,242,96.8,velocity,center_uy,-0.22557733952999115 +karman_re200,sr,242,96.8,velocity,lower_ux,1.2216169834136963 +karman_re200,sr,242,96.8,velocity,lower_uy,0.06902223825454712 +karman_re200,sr,243,97.2,velocity,upper_ux,0.9456984996795654 +karman_re200,sr,243,97.2,velocity,upper_uy,-0.2519763112068176 +karman_re200,sr,243,97.2,velocity,center_ux,0.8786765336990356 +karman_re200,sr,243,97.2,velocity,center_uy,-0.4142478108406067 +karman_re200,sr,243,97.2,velocity,lower_ux,1.1638222932815552 +karman_re200,sr,243,97.2,velocity,lower_uy,-0.27559396624565125 +karman_re200,sr,244,97.6,velocity,upper_ux,1.005604863166809 +karman_re200,sr,244,97.6,velocity,upper_uy,-0.2985929250717163 +karman_re200,sr,244,97.6,velocity,center_ux,0.9060105085372925 +karman_re200,sr,244,97.6,velocity,center_uy,-0.4923526644706726 +karman_re200,sr,244,97.6,velocity,lower_ux,1.1007874011993408 +karman_re200,sr,244,97.6,velocity,lower_uy,-0.4188457429409027 +karman_re200,sr,245,98.0,velocity,upper_ux,1.0661098957061768 +karman_re200,sr,245,98.0,velocity,upper_uy,-0.30238133668899536 +karman_re200,sr,245,98.0,velocity,center_ux,0.9384887218475342 +karman_re200,sr,245,98.0,velocity,center_uy,-0.5044614672660828 +karman_re200,sr,245,98.0,velocity,lower_ux,1.0415281057357788 +karman_re200,sr,245,98.0,velocity,lower_uy,-0.413956880569458 +karman_re200,sr,246,98.4,velocity,upper_ux,1.1225062608718872 +karman_re200,sr,246,98.4,velocity,upper_uy,-0.2699666917324066 +karman_re200,sr,246,98.4,velocity,center_ux,0.9624778032302856 +karman_re200,sr,246,98.4,velocity,center_uy,-0.48612895607948303 +karman_re200,sr,246,98.4,velocity,lower_ux,0.9885337352752686 +karman_re200,sr,246,98.4,velocity,lower_uy,-0.34272992610931396 +karman_re200,sr,247,98.8,velocity,upper_ux,1.1675585508346558 +karman_re200,sr,247,98.8,velocity,upper_uy,-0.2194138467311859 +karman_re200,sr,247,98.8,velocity,center_ux,0.9890510439872742 +karman_re200,sr,247,98.8,velocity,center_uy,-0.39799007773399353 +karman_re200,sr,247,98.8,velocity,lower_ux,0.9417857527732849 +karman_re200,sr,247,98.8,velocity,lower_uy,-0.2374839335680008 +karman_re200,sr,248,99.2,velocity,upper_ux,1.2048474550247192 +karman_re200,sr,248,99.2,velocity,upper_uy,-0.19986675679683685 +karman_re200,sr,248,99.2,velocity,center_ux,1.0040717124938965 +karman_re200,sr,248,99.2,velocity,center_uy,-0.23200839757919312 +karman_re200,sr,248,99.2,velocity,lower_ux,0.9057772159576416 +karman_re200,sr,248,99.2,velocity,lower_uy,-0.09853272140026093 +karman_re200,sr,249,99.6,velocity,upper_ux,1.2478065490722656 +karman_re200,sr,249,99.6,velocity,upper_uy,-0.2688375413417816 +karman_re200,sr,249,99.6,velocity,center_ux,0.9411689043045044 +karman_re200,sr,249,99.6,velocity,center_uy,-0.009729612618684769 +karman_re200,sr,249,99.6,velocity,lower_ux,0.8819741010665894 +karman_re200,sr,249,99.6,velocity,lower_uy,0.06650301069021225 +karman_re200,sr,250,100.0,velocity,upper_ux,1.2121161222457886 +karman_re200,sr,250,100.0,velocity,upper_uy,-0.03152083978056908 +karman_re200,sr,250,100.0,velocity,center_ux,0.8818379044532776 +karman_re200,sr,250,100.0,velocity,center_uy,0.2529480755329132 +karman_re200,sr,250,100.0,velocity,lower_ux,0.8998176455497742 +karman_re200,sr,250,100.0,velocity,lower_uy,0.19013364613056183 +karman_re200,sr,251,100.4,velocity,upper_ux,1.1539555788040161 +karman_re200,sr,251,100.4,velocity,upper_uy,0.29655247926712036 +karman_re200,sr,251,100.4,velocity,center_ux,0.8794090151786804 +karman_re200,sr,251,100.4,velocity,center_uy,0.42735493183135986 +karman_re200,sr,251,100.4,velocity,lower_ux,0.9536225199699402 +karman_re200,sr,251,100.4,velocity,lower_uy,0.2593141794204712 +karman_re200,sr,252,100.8,velocity,upper_ux,1.09059476852417 +karman_re200,sr,252,100.8,velocity,upper_uy,0.4233103096485138 +karman_re200,sr,252,100.8,velocity,center_ux,0.9084869623184204 +karman_re200,sr,252,100.8,velocity,center_uy,0.4951077401638031 +karman_re200,sr,252,100.8,velocity,lower_ux,1.013992190361023 +karman_re200,sr,252,100.8,velocity,lower_uy,0.3020181655883789 +karman_re200,sr,253,101.2,velocity,upper_ux,1.0323290824890137 +karman_re200,sr,253,101.2,velocity,upper_uy,0.4089559316635132 +karman_re200,sr,253,101.2,velocity,center_ux,0.9394954442977905 +karman_re200,sr,253,101.2,velocity,center_uy,0.5040028095245361 +karman_re200,sr,253,101.2,velocity,lower_ux,1.0740352869033813 +karman_re200,sr,253,101.2,velocity,lower_uy,0.30075541138648987 +karman_re200,sr,254,101.6,velocity,upper_ux,0.9795776605606079 +karman_re200,sr,254,101.6,velocity,upper_uy,0.3339630961418152 +karman_re200,sr,254,101.6,velocity,center_ux,0.9615180492401123 +karman_re200,sr,254,101.6,velocity,center_uy,0.48231834173202515 +karman_re200,sr,254,101.6,velocity,lower_ux,1.1289252042770386 +karman_re200,sr,254,101.6,velocity,lower_uy,0.26537537574768066 +karman_re200,sr,255,102.0,velocity,upper_ux,0.93387770652771 +karman_re200,sr,255,102.0,velocity,upper_uy,0.2257363200187683 +karman_re200,sr,255,102.0,velocity,center_ux,0.9891882538795471 +karman_re200,sr,255,102.0,velocity,center_uy,0.38244885206222534 +karman_re200,sr,255,102.0,velocity,lower_ux,1.1719825267791748 +karman_re200,sr,255,102.0,velocity,lower_uy,0.2151833027601242 +karman_re200,sr,256,102.4,velocity,upper_ux,0.9005846381187439 +karman_re200,sr,256,102.4,velocity,upper_uy,0.08391163498163223 +karman_re200,sr,256,102.4,velocity,center_ux,0.9982128739356995 +karman_re200,sr,256,102.4,velocity,center_uy,0.21293938159942627 +karman_re200,sr,256,102.4,velocity,lower_ux,1.2114101648330688 +karman_re200,sr,256,102.4,velocity,lower_uy,0.20863410830497742 +karman_re200,sr,257,102.8,velocity,upper_ux,0.8808868527412415 +karman_re200,sr,257,102.8,velocity,upper_uy,-0.0806485265493393 +karman_re200,sr,257,102.8,velocity,center_ux,0.9303261637687683 +karman_re200,sr,257,102.8,velocity,center_uy,-0.019856959581375122 +karman_re200,sr,257,102.8,velocity,lower_ux,1.250352382659912 +karman_re200,sr,257,102.8,velocity,lower_uy,0.26959359645843506 +karman_re200,sr,258,103.2,velocity,upper_ux,0.9040820598602295 +karman_re200,sr,258,103.2,velocity,upper_uy,-0.19809608161449432 +karman_re200,sr,258,103.2,velocity,center_ux,0.8781054615974426 +karman_re200,sr,258,103.2,velocity,center_uy,-0.27938950061798096 +karman_re200,sr,258,103.2,velocity,lower_ux,1.2055480480194092 +karman_re200,sr,258,103.2,velocity,lower_uy,-0.026421451941132545 +karman_re200,sr,259,103.6,velocity,upper_ux,0.9591364860534668 +karman_re200,sr,259,103.6,velocity,upper_uy,-0.26470065116882324 +karman_re200,sr,259,103.6,velocity,center_ux,0.8818280696868896 +karman_re200,sr,259,103.6,velocity,center_uy,-0.4419431686401367 +karman_re200,sr,259,103.6,velocity,lower_ux,1.1489735841751099 +karman_re200,sr,259,103.6,velocity,lower_uy,-0.32696762681007385 +karman_re200,sr,260,104.0,velocity,upper_ux,1.0191245079040527 +karman_re200,sr,260,104.0,velocity,upper_uy,-0.3031458258628845 +karman_re200,sr,260,104.0,velocity,center_ux,0.9128948450088501 +karman_re200,sr,260,104.0,velocity,center_uy,-0.5000447630882263 +karman_re200,sr,260,104.0,velocity,lower_ux,1.0849567651748657 +karman_re200,sr,260,104.0,velocity,lower_uy,-0.4309358596801758 +karman_re200,sr,261,104.4,velocity,upper_ux,1.078877568244934 +karman_re200,sr,261,104.4,velocity,upper_uy,-0.2969326078891754 +karman_re200,sr,261,104.4,velocity,center_ux,0.9442794322967529 +karman_re200,sr,261,104.4,velocity,center_uy,-0.5042698979377747 +karman_re200,sr,261,104.4,velocity,lower_ux,1.0276703834533691 +karman_re200,sr,261,104.4,velocity,lower_uy,-0.4048219323158264 +karman_re200,sr,262,104.8,velocity,upper_ux,1.1334432363510132 +karman_re200,sr,262,104.8,velocity,upper_uy,-0.2586590647697449 +karman_re200,sr,262,104.8,velocity,center_ux,0.9681606888771057 +karman_re200,sr,262,104.8,velocity,center_uy,-0.4763319492340088 +karman_re200,sr,262,104.8,velocity,lower_ux,0.9760761857032776 +karman_re200,sr,262,104.8,velocity,lower_uy,-0.32463547587394714 +karman_re200,sr,263,105.2,velocity,upper_ux,1.1756088733673096 +karman_re200,sr,263,105.2,velocity,upper_uy,-0.20886535942554474 +karman_re200,sr,263,105.2,velocity,center_ux,0.9990419745445251 +karman_re200,sr,263,105.2,velocity,center_uy,-0.36352023482322693 +karman_re200,sr,263,105.2,velocity,lower_ux,0.9316563606262207 +karman_re200,sr,263,105.2,velocity,lower_uy,-0.2112334817647934 +karman_re200,sr,264,105.6,velocity,upper_ux,1.2169758081436157 +karman_re200,sr,264,105.6,velocity,upper_uy,-0.2105129361152649 +karman_re200,sr,264,105.6,velocity,center_ux,0.9979438781738281 +karman_re200,sr,264,105.6,velocity,center_uy,-0.1917198896408081 +karman_re200,sr,264,105.6,velocity,lower_ux,0.8986668586730957 +karman_re200,sr,264,105.6,velocity,lower_uy,-0.06290189176797867 +karman_re200,sr,265,106.0,velocity,upper_ux,1.2519100904464722 +karman_re200,sr,265,106.0,velocity,upper_uy,-0.25728291273117065 +karman_re200,sr,265,106.0,velocity,center_ux,0.9236330986022949 +karman_re200,sr,265,106.0,velocity,center_uy,0.05176490172743797 +karman_re200,sr,265,106.0,velocity,lower_ux,0.8809778690338135 +karman_re200,sr,265,106.0,velocity,lower_uy,0.1020435020327568 +karman_re200,sr,266,106.4,velocity,upper_ux,1.1981744766235352 +karman_re200,sr,266,106.4,velocity,upper_uy,0.062365349382162094 +karman_re200,sr,266,106.4,velocity,center_ux,0.877113938331604 +karman_re200,sr,266,106.4,velocity,center_uy,0.3048073649406433 +karman_re200,sr,266,106.4,velocity,lower_ux,0.9098739624023438 +karman_re200,sr,266,106.4,velocity,lower_uy,0.21032026410102844 +karman_re200,sr,267,106.8,velocity,upper_ux,1.138871192932129 +karman_re200,sr,267,106.8,velocity,upper_uy,0.34212997555732727 +karman_re200,sr,267,106.8,velocity,center_ux,0.8851562738418579 +karman_re200,sr,267,106.8,velocity,center_uy,0.4538099765777588 +karman_re200,sr,267,106.8,velocity,lower_ux,0.9669311046600342 +karman_re200,sr,267,106.8,velocity,lower_uy,0.2734304368495941 +karman_re200,sr,268,107.2,velocity,upper_ux,1.0748285055160522 +karman_re200,sr,268,107.2,velocity,upper_uy,0.4287310540676117 +karman_re200,sr,268,107.2,velocity,center_ux,0.917052686214447 +karman_re200,sr,268,107.2,velocity,center_uy,0.5022274255752563 +karman_re200,sr,268,107.2,velocity,lower_ux,1.0278575420379639 +karman_re200,sr,268,107.2,velocity,lower_uy,0.3070146143436432 +karman_re200,sr,269,107.6,velocity,upper_ux,1.0182852745056152 +karman_re200,sr,269,107.6,velocity,upper_uy,0.39495548605918884 +karman_re200,sr,269,107.6,velocity,center_ux,0.9463511109352112 +karman_re200,sr,269,107.6,velocity,center_uy,0.5034658908843994 +karman_re200,sr,269,107.6,velocity,lower_ux,1.0875741243362427 +karman_re200,sr,269,107.6,velocity,lower_uy,0.29612720012664795 +karman_re200,sr,270,108.0,velocity,upper_ux,0.9669840335845947 +karman_re200,sr,270,108.0,velocity,upper_uy,0.3121838867664337 +karman_re200,sr,270,108.0,velocity,center_ux,0.9681905508041382 +karman_re200,sr,270,108.0,velocity,center_uy,0.4703139364719391 +karman_re200,sr,270,108.0,velocity,lower_ux,1.140769600868225 +karman_re200,sr,270,108.0,velocity,lower_uy,0.25514286756515503 +karman_re200,sr,271,108.4,velocity,upper_ux,0.9235703945159912 +karman_re200,sr,271,108.4,velocity,upper_uy,0.19674837589263916 +karman_re200,sr,271,108.4,velocity,center_ux,0.998617947101593 +karman_re200,sr,271,108.4,velocity,center_uy,0.34641656279563904 +karman_re200,sr,271,108.4,velocity,lower_ux,1.180800199508667 +karman_re200,sr,271,108.4,velocity,lower_uy,0.20758205652236938 +karman_re200,sr,272,108.8,velocity,upper_ux,0.8928810954093933 +karman_re200,sr,272,108.8,velocity,upper_uy,0.04703264683485031 +karman_re200,sr,272,108.8,velocity,center_ux,0.9886972904205322 +karman_re200,sr,272,108.8,velocity,center_uy,0.16957637667655945 +karman_re200,sr,272,108.8,velocity,lower_ux,1.2241365909576416 +karman_re200,sr,272,108.8,velocity,lower_uy,0.22683891654014587 +karman_re200,sr,273,109.2,velocity,upper_ux,0.8803547620773315 +karman_re200,sr,273,109.2,velocity,upper_uy,-0.1144895926117897 +karman_re200,sr,273,109.2,velocity,center_ux,0.9133018255233765 +karman_re200,sr,273,109.2,velocity,center_uy,-0.08279647678136826 +karman_re200,sr,273,109.2,velocity,lower_ux,1.2495567798614502 +karman_re200,sr,273,109.2,velocity,lower_uy,0.24147415161132812 +karman_re200,sr,274,109.6,velocity,upper_ux,0.9144670367240906 +karman_re200,sr,274,109.6,velocity,upper_uy,-0.21674402058124542 +karman_re200,sr,274,109.6,velocity,center_ux,0.874600350856781 +karman_re200,sr,274,109.6,velocity,center_uy,-0.3276843726634979 +karman_re200,sr,274,109.6,velocity,lower_ux,1.193326711654663 +karman_re200,sr,274,109.6,velocity,lower_uy,-0.11607062071561813 +karman_re200,sr,275,110.0,velocity,upper_ux,0.972644567489624 +karman_re200,sr,275,110.0,velocity,upper_uy,-0.2776969075202942 +karman_re200,sr,275,110.0,velocity,center_ux,0.8878980278968811 +karman_re200,sr,275,110.0,velocity,center_uy,-0.464969277381897 +karman_re200,sr,275,110.0,velocity,lower_ux,1.1348671913146973 +karman_re200,sr,275,110.0,velocity,lower_uy,-0.36667582392692566 +karman_re200,sr,276,110.4,velocity,upper_ux,1.0332351922988892 +karman_re200,sr,276,110.4,velocity,upper_uy,-0.3064998984336853 +karman_re200,sr,276,110.4,velocity,center_ux,0.9211403727531433 +karman_re200,sr,276,110.4,velocity,center_uy,-0.5060609579086304 +karman_re200,sr,276,110.4,velocity,lower_ux,1.0705113410949707 +karman_re200,sr,276,110.4,velocity,lower_uy,-0.4336405098438263 +karman_re200,sr,277,110.8,velocity,upper_ux,1.0920220613479614 +karman_re200,sr,277,110.8,velocity,upper_uy,-0.2912527322769165 +karman_re200,sr,277,110.8,velocity,center_ux,0.9504757523536682 +karman_re200,sr,277,110.8,velocity,center_uy,-0.5036037564277649 +karman_re200,sr,277,110.8,velocity,lower_ux,1.0137355327606201 +karman_re200,sr,277,110.8,velocity,lower_uy,-0.3908214867115021 +karman_re200,sr,278,111.2,velocity,upper_ux,1.1442968845367432 +karman_re200,sr,278,111.2,velocity,upper_uy,-0.24800333380699158 +karman_re200,sr,278,111.2,velocity,center_ux,0.9750463962554932 +karman_re200,sr,278,111.2,velocity,center_uy,-0.46217983961105347 +karman_re200,sr,278,111.2,velocity,lower_ux,0.9628341197967529 +karman_re200,sr,278,111.2,velocity,lower_uy,-0.30315709114074707 +karman_re200,sr,279,111.6,velocity,upper_ux,1.1842385530471802 +karman_re200,sr,279,111.6,velocity,upper_uy,-0.20278625190258026 +karman_re200,sr,279,111.6,velocity,center_ux,1.0081037282943726 +karman_re200,sr,279,111.6,velocity,center_uy,-0.3279082179069519 +karman_re200,sr,279,111.6,velocity,lower_ux,0.9208287000656128 +karman_re200,sr,279,111.6,velocity,lower_uy,-0.18237470090389252 +karman_re200,sr,280,112.0,velocity,upper_ux,1.2307332754135132 +karman_re200,sr,280,112.0,velocity,upper_uy,-0.23326198756694794 +karman_re200,sr,280,112.0,velocity,center_ux,0.9862005114555359 +karman_re200,sr,280,112.0,velocity,center_uy,-0.14843183755874634 +karman_re200,sr,280,112.0,velocity,lower_ux,0.8908634185791016 +karman_re200,sr,280,112.0,velocity,lower_uy,-0.02668159268796444 +karman_re200,sr,281,112.4,velocity,upper_ux,1.2485377788543701 +karman_re200,sr,281,112.4,velocity,upper_uy,-0.21406488120555878 +karman_re200,sr,281,112.4,velocity,center_ux,0.9085648059844971 +karman_re200,sr,281,112.4,velocity,center_uy,0.1142168939113617 +karman_re200,sr,281,112.4,velocity,lower_ux,0.8821955323219299 +karman_re200,sr,281,112.4,velocity,lower_uy,0.13244624435901642 +karman_re200,sr,282,112.8,velocity,upper_ux,1.187795639038086 +karman_re200,sr,282,112.8,velocity,upper_uy,0.15423288941383362 +karman_re200,sr,282,112.8,velocity,center_ux,0.8762061595916748 +karman_re200,sr,282,112.8,velocity,center_uy,0.3506147861480713 +karman_re200,sr,282,112.8,velocity,lower_ux,0.9208618998527527 +karman_re200,sr,282,112.8,velocity,lower_uy,0.2269657701253891 +karman_re200,sr,283,113.2,velocity,upper_ux,1.127081036567688 +karman_re200,sr,283,113.2,velocity,upper_uy,0.3795735538005829 +karman_re200,sr,283,113.2,velocity,center_ux,0.8928374648094177 +karman_re200,sr,283,113.2,velocity,center_uy,0.47402888536453247 +karman_re200,sr,283,113.2,velocity,lower_ux,0.9797868132591248 +karman_re200,sr,283,113.2,velocity,lower_uy,0.2848353087902069 +karman_re200,sr,284,113.6,velocity,upper_ux,1.0634574890136719 +karman_re200,sr,284,113.6,velocity,upper_uy,0.4280377924442291 +karman_re200,sr,284,113.6,velocity,center_ux,0.9263187646865845 +karman_re200,sr,284,113.6,velocity,center_uy,0.506638765335083 +karman_re200,sr,284,113.6,velocity,lower_ux,1.0410733222961426 +karman_re200,sr,284,113.6,velocity,lower_uy,0.3082377314567566 +karman_re200,sr,285,114.0,velocity,upper_ux,1.0076104402542114 +karman_re200,sr,285,114.0,velocity,upper_uy,0.3782097101211548 +karman_re200,sr,285,114.0,velocity,center_ux,0.9540278911590576 +karman_re200,sr,285,114.0,velocity,center_uy,0.5007349848747253 +karman_re200,sr,285,114.0,velocity,lower_ux,1.0999847650527954 +karman_re200,sr,285,114.0,velocity,lower_uy,0.28872445225715637 +karman_re200,sr,286,114.4,velocity,upper_ux,0.9572851061820984 +karman_re200,sr,286,114.4,velocity,upper_uy,0.28750383853912354 +karman_re200,sr,286,114.4,velocity,center_ux,0.9774695634841919 +karman_re200,sr,286,114.4,velocity,center_uy,0.45127660036087036 +karman_re200,sr,286,114.4,velocity,lower_ux,1.1508375406265259 +karman_re200,sr,286,114.4,velocity,lower_uy,0.24315467476844788 +karman_re200,sr,287,114.8,velocity,upper_ux,0.9163567423820496 +karman_re200,sr,287,114.8,velocity,upper_uy,0.16397006809711456 +karman_re200,sr,287,114.8,velocity,center_ux,1.0078715085983276 +karman_re200,sr,287,114.8,velocity,center_uy,0.3078131377696991 +karman_re200,sr,287,114.8,velocity,lower_ux,1.1889492273330688 +karman_re200,sr,287,114.8,velocity,lower_uy,0.2015882283449173 +karman_re200,sr,288,115.2,velocity,upper_ux,0.8873037099838257 +karman_re200,sr,288,115.2,velocity,upper_uy,0.006453674286603928 +karman_re200,sr,288,115.2,velocity,center_ux,0.976157009601593 +karman_re200,sr,288,115.2,velocity,center_uy,0.1196785643696785 +karman_re200,sr,288,115.2,velocity,lower_ux,1.2354652881622314 +karman_re200,sr,288,115.2,velocity,lower_uy,0.2468760907649994 +karman_re200,sr,289,115.6,velocity,upper_ux,0.8840126991271973 +karman_re200,sr,289,115.6,velocity,upper_uy,-0.14600373804569244 +karman_re200,sr,289,115.6,velocity,center_ux,0.9005085825920105 +karman_re200,sr,289,115.6,velocity,center_uy,-0.14617201685905457 +karman_re200,sr,289,115.6,velocity,lower_ux,1.2412360906600952 +karman_re200,sr,289,115.6,velocity,lower_uy,0.18264131247997284 +karman_re200,sr,290,116.0,velocity,upper_ux,0.9275248050689697 +karman_re200,sr,290,116.0,velocity,upper_uy,-0.2335672527551651 +karman_re200,sr,290,116.0,velocity,center_ux,0.8753266930580139 +karman_re200,sr,290,116.0,velocity,center_uy,-0.3691883385181427 +karman_re200,sr,290,116.0,velocity,lower_ux,1.1817059516906738 +karman_re200,sr,290,116.0,velocity,lower_uy,-0.19131076335906982 +karman_re200,sr,291,116.4,velocity,upper_ux,0.9871716499328613 +karman_re200,sr,291,116.4,velocity,upper_uy,-0.2888619601726532 +karman_re200,sr,291,116.4,velocity,center_ux,0.8955637216567993 +karman_re200,sr,291,116.4,velocity,center_uy,-0.48017796874046326 +karman_re200,sr,291,116.4,velocity,lower_ux,1.1205576658248901 +karman_re200,sr,291,116.4,velocity,lower_uy,-0.39409932494163513 +karman_re200,sr,292,116.8,velocity,upper_ux,1.0481070280075073 +karman_re200,sr,292,116.8,velocity,upper_uy,-0.30701208114624023 +karman_re200,sr,292,116.8,velocity,center_ux,0.9290940165519714 +karman_re200,sr,292,116.8,velocity,center_uy,-0.5070946216583252 +karman_re200,sr,292,116.8,velocity,lower_ux,1.0575226545333862 +karman_re200,sr,292,116.8,velocity,lower_uy,-0.4274076521396637 +karman_re200,sr,293,117.2,velocity,upper_ux,1.1058224439620972 +karman_re200,sr,293,117.2,velocity,upper_uy,-0.28374314308166504 +karman_re200,sr,293,117.2,velocity,center_ux,0.9555490016937256 +karman_re200,sr,293,117.2,velocity,center_uy,-0.4984682500362396 +karman_re200,sr,293,117.2,velocity,lower_ux,1.0016168355941772 +karman_re200,sr,293,117.2,velocity,lower_uy,-0.37103521823883057 +karman_re200,sr,294,117.6,velocity,upper_ux,1.1548949480056763 +karman_re200,sr,294,117.6,velocity,upper_uy,-0.23650716245174408 +karman_re200,sr,294,117.6,velocity,center_ux,0.9801111817359924 +karman_re200,sr,294,117.6,velocity,center_uy,-0.4395509660243988 +karman_re200,sr,294,117.6,velocity,lower_ux,0.9516171813011169 +karman_re200,sr,294,117.6,velocity,lower_uy,-0.2762577533721924 +karman_re200,sr,295,118.0,velocity,upper_ux,1.1930551528930664 +karman_re200,sr,295,118.0,velocity,upper_uy,-0.20007815957069397 +karman_re200,sr,295,118.0,velocity,center_ux,1.009488821029663 +karman_re200,sr,295,118.0,velocity,center_uy,-0.2892109453678131 +karman_re200,sr,295,118.0,velocity,lower_ux,0.912588357925415 +karman_re200,sr,295,118.0,velocity,lower_uy,-0.14860612154006958 +karman_re200,sr,296,118.4,velocity,upper_ux,1.2411845922470093 +karman_re200,sr,296,118.4,velocity,upper_uy,-0.2579539120197296 +karman_re200,sr,296,118.4,velocity,center_ux,0.9679378271102905 +karman_re200,sr,296,118.4,velocity,center_uy,-0.09373091906309128 +karman_re200,sr,296,118.4,velocity,lower_ux,0.885454535484314 +karman_re200,sr,296,118.4,velocity,lower_uy,0.012001392431557178 +karman_re200,sr,297,118.8,velocity,upper_ux,1.2351964712142944 +karman_re200,sr,297,118.8,velocity,upper_uy,-0.1396603137254715 +karman_re200,sr,297,118.8,velocity,center_ux,0.8951093554496765 +karman_re200,sr,297,118.8,velocity,center_uy,0.1767827421426773 +karman_re200,sr,297,118.8,velocity,lower_ux,0.8874591588973999 +karman_re200,sr,297,118.8,velocity,lower_uy,0.15862879157066345 +karman_re200,sr,298,119.2,velocity,upper_ux,1.1766530275344849 +karman_re200,sr,298,119.2,velocity,upper_uy,0.22854797542095184 +karman_re200,sr,298,119.2,velocity,center_ux,0.8768312335014343 +karman_re200,sr,298,119.2,velocity,center_uy,0.3881256580352783 +karman_re200,sr,298,119.2,velocity,lower_ux,0.9340932965278625 +karman_re200,sr,298,119.2,velocity,lower_uy,0.24056269228458405 +karman_re200,sr,299,119.6,velocity,upper_ux,1.1142916679382324 +karman_re200,sr,299,119.6,velocity,upper_uy,0.406070351600647 +karman_re200,sr,299,119.6,velocity,center_ux,0.8999851942062378 +karman_re200,sr,299,119.6,velocity,center_uy,0.48612120747566223 +karman_re200,sr,299,119.6,velocity,lower_ux,0.9935513138771057 +karman_re200,sr,299,119.6,velocity,lower_uy,0.29282045364379883 +karman_re200,sr,300,120.0,velocity,upper_ux,1.052560567855835 +karman_re200,sr,300,120.0,velocity,upper_uy,0.4226258397102356 +karman_re200,sr,300,120.0,velocity,center_ux,0.9335076808929443 +karman_re200,sr,300,120.0,velocity,center_uy,0.506450355052948 +karman_re200,sr,300,120.0,velocity,lower_ux,1.0543856620788574 +karman_re200,sr,300,120.0,velocity,lower_uy,0.30546435713768005 +karman_re200,sr,301,120.4,velocity,upper_ux,0.9979550838470459 +karman_re200,sr,301,120.4,velocity,upper_uy,0.3597477078437805 +karman_re200,sr,301,120.4,velocity,center_ux,0.9595151543617249 +karman_re200,sr,301,120.4,velocity,center_uy,0.49387404322624207 +karman_re200,sr,301,120.4,velocity,lower_ux,1.1120147705078125 +karman_re200,sr,301,120.4,velocity,lower_uy,0.2784692943096161 +karman_re200,sr,302,120.8,velocity,upper_ux,0.9490913152694702 +karman_re200,sr,302,120.8,velocity,upper_uy,0.2607555389404297 +karman_re200,sr,302,120.8,velocity,center_ux,0.9848586916923523 +karman_re200,sr,302,120.8,velocity,center_uy,0.424265593290329 +karman_re200,sr,302,120.8,velocity,lower_ux,1.1597174406051636 +karman_re200,sr,302,120.8,velocity,lower_uy,0.2295590341091156 +karman_re200,sr,303,121.2,velocity,upper_ux,0.9110814929008484 +karman_re200,sr,303,121.2,velocity,upper_uy,0.12849965691566467 +karman_re200,sr,303,121.2,velocity,center_ux,1.0095539093017578 +karman_re200,sr,303,121.2,velocity,center_uy,0.2671276032924652 +karman_re200,sr,303,121.2,velocity,lower_ux,1.1970771551132202 +karman_re200,sr,303,121.2,velocity,lower_uy,0.19773907959461212 +karman_re200,sr,304,121.6,velocity,upper_ux,0.8841394186019897 +karman_re200,sr,304,121.6,velocity,upper_uy,-0.03489186614751816 +karman_re200,sr,304,121.6,velocity,center_ux,0.9585443735122681 +karman_re200,sr,304,121.6,velocity,center_uy,0.061493754386901855 +karman_re200,sr,304,121.6,velocity,lower_ux,1.243613600730896 +karman_re200,sr,304,121.6,velocity,lower_uy,0.26211678981781006 +karman_re200,sr,305,122.0,velocity,upper_ux,0.8918249011039734 +karman_re200,sr,305,122.0,velocity,upper_uy,-0.17244209349155426 +karman_re200,sr,305,122.0,velocity,center_ux,0.8895898461341858 +karman_re200,sr,305,122.0,velocity,center_uy,-0.2070762813091278 +karman_re200,sr,305,122.0,velocity,lower_ux,1.22609543800354 +karman_re200,sr,305,122.0,velocity,lower_uy,0.1039019227027893 +karman_re200,sr,306,122.4,velocity,upper_ux,0.9420109391212463 +karman_re200,sr,306,122.4,velocity,upper_uy,-0.2482517659664154 +karman_re200,sr,306,122.4,velocity,center_ux,0.8774504065513611 +karman_re200,sr,306,122.4,velocity,center_uy,-0.40360891819000244 +karman_re200,sr,306,122.4,velocity,lower_ux,1.1671595573425293 +karman_re200,sr,306,122.4,velocity,lower_uy,-0.25316324830055237 +karman_re200,sr,307,122.8,velocity,upper_ux,1.0020761489868164 +karman_re200,sr,307,122.8,velocity,upper_uy,-0.2971573770046234 +karman_re200,sr,307,122.8,velocity,center_ux,0.903031587600708 +karman_re200,sr,307,122.8,velocity,center_uy,-0.48918136954307556 +karman_re200,sr,307,122.8,velocity,lower_ux,1.1044723987579346 +karman_re200,sr,307,122.8,velocity,lower_uy,-0.41238442063331604 +karman_re200,sr,308,123.2,velocity,upper_ux,1.0626786947250366 +karman_re200,sr,308,123.2,velocity,upper_uy,-0.3044288754463196 +karman_re200,sr,308,123.2,velocity,center_ux,0.935361921787262 +karman_re200,sr,308,123.2,velocity,center_uy,-0.5049989223480225 +karman_re200,sr,308,123.2,velocity,lower_ux,1.0441515445709229 +karman_re200,sr,308,123.2,velocity,lower_uy,-0.4170304238796234 +karman_re200,sr,309,123.6,velocity,upper_ux,1.1192619800567627 +karman_re200,sr,309,123.6,velocity,upper_uy,-0.27411919832229614 +karman_re200,sr,309,123.6,velocity,center_ux,0.9590654969215393 +karman_re200,sr,309,123.6,velocity,center_uy,-0.48980462551116943 +karman_re200,sr,309,123.6,velocity,lower_ux,0.990257740020752 +karman_re200,sr,309,123.6,velocity,lower_uy,-0.34957072138786316 +karman_re200,sr,310,124.0,velocity,upper_ux,1.1647416353225708 +karman_re200,sr,310,124.0,velocity,upper_uy,-0.224257692694664 +karman_re200,sr,310,124.0,velocity,center_ux,0.9840104579925537 +karman_re200,sr,310,124.0,velocity,center_uy,-0.40974125266075134 +karman_re200,sr,310,124.0,velocity,lower_ux,0.9422402381896973 +karman_re200,sr,310,124.0,velocity,lower_uy,-0.24752601981163025 +karman_re200,sr,311,124.4,velocity,upper_ux,1.202153205871582 +karman_re200,sr,311,124.4,velocity,upper_uy,-0.20129920542240143 +karman_re200,sr,311,124.4,velocity,center_ux,1.0039937496185303 +karman_re200,sr,311,124.4,velocity,center_uy,-0.24697376787662506 +karman_re200,sr,311,124.4,velocity,lower_ux,0.9062548875808716 +karman_re200,sr,311,124.4,velocity,lower_uy,-0.1124771237373352 +karman_re200,sr,312,124.8,velocity,upper_ux,1.246894359588623 +karman_re200,sr,312,124.8,velocity,upper_uy,-0.27181077003479004 +karman_re200,sr,312,124.8,velocity,center_ux,0.9465816617012024 +karman_re200,sr,312,124.8,velocity,center_uy,-0.03117193654179573 +karman_re200,sr,312,124.8,velocity,lower_ux,0.882407009601593 +karman_re200,sr,312,124.8,velocity,lower_uy,0.05111734941601753 +karman_re200,sr,313,125.2,velocity,upper_ux,1.2175970077514648 +karman_re200,sr,313,125.2,velocity,upper_uy,-0.05199701711535454 +karman_re200,sr,313,125.2,velocity,center_ux,0.8838095664978027 +karman_re200,sr,313,125.2,velocity,center_uy,0.23530878126621246 +karman_re200,sr,313,125.2,velocity,lower_ux,0.8960118889808655 +karman_re200,sr,313,125.2,velocity,lower_uy,0.18139389157295227 +karman_re200,sr,314,125.6,velocity,upper_ux,1.1614989042282104 +karman_re200,sr,314,125.6,velocity,upper_uy,0.2859647870063782 +karman_re200,sr,314,125.6,velocity,center_ux,0.8784885406494141 +karman_re200,sr,314,125.6,velocity,center_uy,0.418984055519104 +karman_re200,sr,314,125.6,velocity,lower_ux,0.9483129978179932 +karman_re200,sr,314,125.6,velocity,lower_uy,0.2536068558692932 +karman_re200,sr,315,126.0,velocity,upper_ux,1.0982096195220947 +karman_re200,sr,315,126.0,velocity,upper_uy,0.4228653311729431 +karman_re200,sr,315,126.0,velocity,center_ux,0.9066070318222046 +karman_re200,sr,315,126.0,velocity,center_uy,0.49386027455329895 +karman_re200,sr,315,126.0,velocity,lower_ux,1.0080636739730835 +karman_re200,sr,315,126.0,velocity,lower_uy,0.29897820949554443 +karman_re200,sr,316,126.4,velocity,upper_ux,1.0389246940612793 +karman_re200,sr,316,126.4,velocity,upper_uy,0.41417786478996277 +karman_re200,sr,316,126.4,velocity,center_ux,0.9387635588645935 +karman_re200,sr,316,126.4,velocity,center_uy,0.5048171281814575 +karman_re200,sr,316,126.4,velocity,lower_ux,1.0679408311843872 +karman_re200,sr,316,126.4,velocity,lower_uy,0.3009859323501587 +karman_re200,sr,317,126.8,velocity,upper_ux,0.9861588478088379 +karman_re200,sr,317,126.8,velocity,upper_uy,0.3410458266735077 +karman_re200,sr,317,126.8,velocity,center_ux,0.9630786180496216 +karman_re200,sr,317,126.8,velocity,center_uy,0.48505330085754395 +karman_re200,sr,317,126.8,velocity,lower_ux,1.1239895820617676 +karman_re200,sr,317,126.8,velocity,lower_uy,0.26749926805496216 +karman_re200,sr,318,127.2,velocity,upper_ux,0.9396613836288452 +karman_re200,sr,318,127.2,velocity,upper_uy,0.23411370813846588 +karman_re200,sr,318,127.2,velocity,center_ux,0.9910732507705688 +karman_re200,sr,318,127.2,velocity,center_uy,0.39233988523483276 +karman_re200,sr,318,127.2,velocity,lower_ux,1.1684585809707642 +karman_re200,sr,318,127.2,velocity,lower_uy,0.217030867934227 +karman_re200,sr,319,127.6,velocity,upper_ux,0.9045989513397217 +karman_re200,sr,319,127.6,velocity,upper_uy,0.0931372344493866 +karman_re200,sr,319,127.6,velocity,center_ux,1.0041983127593994 +karman_re200,sr,319,127.6,velocity,center_uy,0.22598879039287567 +karman_re200,sr,319,127.6,velocity,lower_ux,1.2069417238235474 +karman_re200,sr,319,127.6,velocity,lower_uy,0.20095212757587433 +karman_re200,sr,320,128.0,velocity,upper_ux,0.882087767124176 +karman_re200,sr,320,128.0,velocity,upper_uy,-0.07266850024461746 +karman_re200,sr,320,128.0,velocity,center_ux,0.9386124610900879 +karman_re200,sr,320,128.0,velocity,center_uy,-0.00020059302914887667 +karman_re200,sr,320,128.0,velocity,lower_ux,1.2496654987335205 +karman_re200,sr,320,128.0,velocity,lower_uy,0.26813626289367676 +karman_re200,sr,321,128.4,velocity,upper_ux,0.9014260768890381 +karman_re200,sr,321,128.4,velocity,upper_uy,-0.19401021301746368 +karman_re200,sr,321,128.4,velocity,center_ux,0.8810922503471375 +karman_re200,sr,321,128.4,velocity,center_uy,-0.26301974058151245 +karman_re200,sr,321,128.4,velocity,lower_ux,1.2097351551055908 +karman_re200,sr,321,128.4,velocity,lower_uy,0.012514203786849976 +karman_re200,sr,322,128.8,velocity,upper_ux,0.9557260870933533 +karman_re200,sr,322,128.8,velocity,upper_uy,-0.26198771595954895 +karman_re200,sr,322,128.8,velocity,center_ux,0.8807832598686218 +karman_re200,sr,322,128.8,velocity,center_uy,-0.4330873191356659 +karman_re200,sr,322,128.8,velocity,lower_ux,1.1513984203338623 +karman_re200,sr,322,128.8,velocity,lower_uy,-0.3065897226333618 +karman_re200,sr,323,129.2,velocity,upper_ux,1.016180157661438 +karman_re200,sr,323,129.2,velocity,upper_uy,-0.3031184673309326 +karman_re200,sr,323,129.2,velocity,center_ux,0.910590648651123 +karman_re200,sr,323,129.2,velocity,center_uy,-0.49670669436454773 +karman_re200,sr,323,129.2,velocity,lower_ux,1.087941288948059 +karman_re200,sr,323,129.2,velocity,lower_uy,-0.42471036314964294 +karman_re200,sr,324,129.6,velocity,upper_ux,1.0761919021606445 +karman_re200,sr,324,129.6,velocity,upper_uy,-0.3000201880931854 +karman_re200,sr,324,129.6,velocity,center_ux,0.9413660168647766 +karman_re200,sr,324,129.6,velocity,center_uy,-0.5037264227867126 +karman_re200,sr,324,129.6,velocity,lower_ux,1.0301570892333984 +karman_re200,sr,324,129.6,velocity,lower_uy,-0.40596550703048706 +karman_re200,sr,325,130.0,velocity,upper_ux,1.1313631534576416 +karman_re200,sr,325,130.0,velocity,upper_uy,-0.26349955797195435 +karman_re200,sr,325,130.0,velocity,center_ux,0.9638015627861023 +karman_re200,sr,325,130.0,velocity,center_uy,-0.47997868061065674 +karman_re200,sr,325,130.0,velocity,lower_ux,0.9783040881156921 +karman_re200,sr,325,130.0,velocity,lower_uy,-0.3293636441230774 +karman_re200,sr,326,130.4,velocity,upper_ux,1.1737433671951294 +karman_re200,sr,326,130.4,velocity,upper_uy,-0.21331928670406342 +karman_re200,sr,326,130.4,velocity,center_ux,0.9916979074478149 +karman_re200,sr,326,130.4,velocity,center_uy,-0.37560656666755676 +karman_re200,sr,326,130.4,velocity,lower_ux,0.9329457879066467 +karman_re200,sr,326,130.4,velocity,lower_uy,-0.2197093963623047 +karman_re200,sr,327,130.8,velocity,upper_ux,1.2130167484283447 +karman_re200,sr,327,130.8,velocity,upper_uy,-0.20969779789447784 +karman_re200,sr,327,130.8,velocity,center_ux,0.996976375579834 +karman_re200,sr,327,130.8,velocity,center_uy,-0.20434945821762085 +karman_re200,sr,327,130.8,velocity,lower_ux,0.8994470834732056 +karman_re200,sr,327,130.8,velocity,lower_uy,-0.0760912224650383 +karman_re200,sr,328,131.2,velocity,upper_ux,1.2503713369369507 +karman_re200,sr,328,131.2,velocity,upper_uy,-0.26673638820648193 +karman_re200,sr,328,131.2,velocity,center_ux,0.9272652268409729 +karman_re200,sr,328,131.2,velocity,center_uy,0.03176310658454895 +karman_re200,sr,328,131.2,velocity,lower_ux,0.8806414604187012 +karman_re200,sr,328,131.2,velocity,lower_uy,0.08822812139987946 +karman_re200,sr,329,131.6,velocity,upper_ux,1.202422022819519 +karman_re200,sr,329,131.6,velocity,upper_uy,0.038194671273231506 +karman_re200,sr,329,131.6,velocity,center_ux,0.8769981861114502 +karman_re200,sr,329,131.6,velocity,center_uy,0.28820422291755676 +karman_re200,sr,329,131.6,velocity,lower_ux,0.905977725982666 +karman_re200,sr,329,131.6,velocity,lower_uy,0.20224153995513916 +karman_re200,sr,330,132.0,velocity,upper_ux,1.1451833248138428 +karman_re200,sr,330,132.0,velocity,upper_uy,0.3323190212249756 +karman_re200,sr,330,132.0,velocity,center_ux,0.8823972940444946 +karman_re200,sr,330,132.0,velocity,center_uy,0.4459144175052643 +karman_re200,sr,330,132.0,velocity,lower_ux,0.9619923233985901 +karman_re200,sr,330,132.0,velocity,lower_uy,0.26757344603538513 +karman_re200,sr,331,132.4,velocity,upper_ux,1.0813010931015015 +karman_re200,sr,331,132.4,velocity,upper_uy,0.4311429560184479 +karman_re200,sr,331,132.4,velocity,center_ux,0.914017915725708 +karman_re200,sr,331,132.4,velocity,center_uy,0.5009576678276062 +karman_re200,sr,331,132.4,velocity,lower_ux,1.0225071907043457 +karman_re200,sr,331,132.4,velocity,lower_uy,0.3044191598892212 +karman_re200,sr,332,132.8,velocity,upper_ux,1.0237659215927124 +karman_re200,sr,332,132.8,velocity,upper_uy,0.4025143086910248 +karman_re200,sr,332,132.8,velocity,center_ux,0.9443016648292542 +karman_re200,sr,332,132.8,velocity,center_uy,0.5043838024139404 +karman_re200,sr,332,132.8,velocity,lower_ux,1.0817418098449707 +karman_re200,sr,332,132.8,velocity,lower_uy,0.2965448200702667 +karman_re200,sr,333,133.2,velocity,upper_ux,0.9721633195877075 +karman_re200,sr,333,133.2,velocity,upper_uy,0.321410208940506 +karman_re200,sr,333,133.2,velocity,center_ux,0.9675762057304382 +karman_re200,sr,333,133.2,velocity,center_uy,0.47488605976104736 +karman_re200,sr,333,133.2,velocity,lower_ux,1.1357349157333374 +karman_re200,sr,333,133.2,velocity,lower_uy,0.2573630213737488 +karman_re200,sr,334,133.6,velocity,upper_ux,0.9282758831977844 +karman_re200,sr,334,133.6,velocity,upper_uy,0.20724397897720337 +karman_re200,sr,334,133.6,velocity,center_ux,0.9990425109863281 +karman_re200,sr,334,133.6,velocity,center_uy,0.358079195022583 +karman_re200,sr,334,133.6,velocity,lower_ux,1.1774135828018188 +karman_re200,sr,334,133.6,velocity,lower_uy,0.20838680863380432 +karman_re200,sr,335,134.0,velocity,upper_ux,0.8962772488594055 +karman_re200,sr,335,134.0,velocity,upper_uy,0.058407120406627655 +karman_re200,sr,335,134.0,velocity,center_ux,0.9949243664741516 +karman_re200,sr,335,134.0,velocity,center_uy,0.18528905510902405 +karman_re200,sr,335,134.0,velocity,lower_ux,1.2198128700256348 +karman_re200,sr,335,134.0,velocity,lower_uy,0.2167823612689972 +karman_re200,sr,336,134.4,velocity,upper_ux,0.8808146715164185 +karman_re200,sr,336,134.4,velocity,upper_uy,-0.10572420805692673 +karman_re200,sr,336,134.4,velocity,center_ux,0.9202002882957458 +karman_re200,sr,336,134.4,velocity,center_uy,-0.06204589456319809 +karman_re200,sr,336,134.4,velocity,lower_ux,1.2520371675491333 +karman_re200,sr,336,134.4,velocity,lower_uy,0.25265955924987793 +karman_re200,sr,337,134.8,velocity,upper_ux,0.9113192558288574 +karman_re200,sr,337,134.8,velocity,upper_uy,-0.212452694773674 +karman_re200,sr,337,134.8,velocity,center_ux,0.8765091896057129 +karman_re200,sr,337,134.8,velocity,center_uy,-0.3134731650352478 +karman_re200,sr,337,134.8,velocity,lower_ux,1.1970510482788086 +karman_re200,sr,337,134.8,velocity,lower_uy,-0.08495232462882996 +karman_re200,sr,338,135.2,velocity,upper_ux,0.9683449268341064 +karman_re200,sr,338,135.2,velocity,upper_uy,-0.2748188376426697 +karman_re200,sr,338,135.2,velocity,center_ux,0.8863059878349304 +karman_re200,sr,338,135.2,velocity,center_uy,-0.45844361186027527 +karman_re200,sr,338,135.2,velocity,lower_ux,1.138031005859375 +karman_re200,sr,338,135.2,velocity,lower_uy,-0.3525512218475342 +karman_re200,sr,339,135.6,velocity,upper_ux,1.0293458700180054 +karman_re200,sr,339,135.6,velocity,upper_uy,-0.3067566156387329 +karman_re200,sr,339,135.6,velocity,center_ux,0.919077455997467 +karman_re200,sr,339,135.6,velocity,center_uy,-0.5039627552032471 +karman_re200,sr,339,135.6,velocity,lower_ux,1.074074149131775 +karman_re200,sr,339,135.6,velocity,lower_uy,-0.4309047758579254 +karman_re200,sr,340,136.0,velocity,upper_ux,1.088833212852478 +karman_re200,sr,340,136.0,velocity,upper_uy,-0.2942099869251251 +karman_re200,sr,340,136.0,velocity,center_ux,0.9486686587333679 +karman_re200,sr,340,136.0,velocity,center_uy,-0.5034465789794922 +karman_re200,sr,340,136.0,velocity,lower_ux,1.017532467842102 +karman_re200,sr,340,136.0,velocity,lower_uy,-0.3932969272136688 +karman_re200,sr,341,136.4,velocity,upper_ux,1.1418673992156982 +karman_re200,sr,341,136.4,velocity,upper_uy,-0.25236642360687256 +karman_re200,sr,341,136.4,velocity,center_ux,0.9717743396759033 +karman_re200,sr,341,136.4,velocity,center_uy,-0.46721652150154114 +karman_re200,sr,341,136.4,velocity,lower_ux,0.9665021300315857 +karman_re200,sr,341,136.4,velocity,lower_uy,-0.30857595801353455 +karman_re200,sr,342,136.8,velocity,upper_ux,1.182053565979004 +karman_re200,sr,342,136.8,velocity,upper_uy,-0.20521986484527588 +karman_re200,sr,342,136.8,velocity,center_ux,1.0034383535385132 +karman_re200,sr,342,136.8,velocity,center_uy,-0.3392241299152374 +karman_re200,sr,342,136.8,velocity,lower_ux,0.9237158298492432 +karman_re200,sr,342,136.8,velocity,lower_uy,-0.19089576601982117 +karman_re200,sr,343,137.2,velocity,upper_ux,1.2259050607681274 +karman_re200,sr,343,137.2,velocity,upper_uy,-0.22693803906440735 +karman_re200,sr,343,137.2,velocity,center_ux,0.988667905330658 +karman_re200,sr,343,137.2,velocity,center_uy,-0.1614234298467636 +karman_re200,sr,343,137.2,velocity,lower_ux,0.8924810886383057 +karman_re200,sr,343,137.2,velocity,lower_uy,-0.038446880877017975 +karman_re200,sr,344,137.6,velocity,upper_ux,1.2493892908096313 +karman_re200,sr,344,137.6,velocity,upper_uy,-0.23356960713863373 +karman_re200,sr,344,137.6,velocity,center_ux,0.9118960499763489 +karman_re200,sr,344,137.6,velocity,center_uy,0.09429462254047394 +karman_re200,sr,344,137.6,velocity,lower_ux,0.8809582591056824 +karman_re200,sr,344,137.6,velocity,lower_uy,0.1223125159740448 +karman_re200,sr,345,138.0,velocity,upper_ux,1.1907851696014404 +karman_re200,sr,345,138.0,velocity,upper_uy,0.12600307166576385 +karman_re200,sr,345,138.0,velocity,center_ux,0.8752729296684265 +karman_re200,sr,345,138.0,velocity,center_uy,0.33578747510910034 +karman_re200,sr,345,138.0,velocity,lower_ux,0.9171453714370728 +karman_re200,sr,345,138.0,velocity,lower_uy,0.2211545705795288 +karman_re200,sr,346,138.4,velocity,upper_ux,1.1309750080108643 +karman_re200,sr,346,138.4,velocity,upper_uy,0.3694887161254883 +karman_re200,sr,346,138.4,velocity,center_ux,0.8893623352050781 +karman_re200,sr,346,138.4,velocity,center_uy,0.467904269695282 +karman_re200,sr,346,138.4,velocity,lower_ux,0.9756175875663757 +karman_re200,sr,346,138.4,velocity,lower_uy,0.28086063265800476 +karman_re200,sr,347,138.8,velocity,upper_ux,1.0670429468154907 +karman_re200,sr,347,138.8,velocity,upper_uy,0.4308466613292694 +karman_re200,sr,347,138.8,velocity,center_ux,0.9226896166801453 +karman_re200,sr,347,138.8,velocity,center_uy,0.5060057640075684 +karman_re200,sr,347,138.8,velocity,lower_ux,1.0368002653121948 +karman_re200,sr,347,138.8,velocity,lower_uy,0.3077715039253235 +karman_re200,sr,348,139.2,velocity,upper_ux,1.0105401277542114 +karman_re200,sr,348,139.2,velocity,upper_uy,0.38590386509895325 +karman_re200,sr,348,139.2,velocity,center_ux,0.9509325623512268 +karman_re200,sr,348,139.2,velocity,center_uy,0.5026538372039795 +karman_re200,sr,348,139.2,velocity,lower_ux,1.0956108570098877 +karman_re200,sr,348,139.2,velocity,lower_uy,0.2909674644470215 +karman_re200,sr,349,139.6,velocity,upper_ux,0.9594318270683289 +karman_re200,sr,349,139.6,velocity,upper_uy,0.2976158559322357 +karman_re200,sr,349,139.6,velocity,center_ux,0.9740601181983948 +karman_re200,sr,349,139.6,velocity,center_uy,0.4589530825614929 +karman_re200,sr,349,139.6,velocity,lower_ux,1.1469296216964722 +karman_re200,sr,349,139.6,velocity,lower_uy,0.2469089925289154 +karman_re200,sr,350,140.0,velocity,upper_ux,0.918109118938446 +karman_re200,sr,350,140.0,velocity,upper_uy,0.1764698624610901 +karman_re200,sr,350,140.0,velocity,center_ux,1.006329894065857 +karman_re200,sr,350,140.0,velocity,center_uy,0.32132065296173096 +karman_re200,sr,350,140.0,velocity,lower_ux,1.186272382736206 +karman_re200,sr,350,140.0,velocity,lower_uy,0.20329414308071136 +karman_re200,sr,351,140.4,velocity,upper_ux,0.8890261054039001 +karman_re200,sr,351,140.4,velocity,upper_uy,0.021012457087635994 +karman_re200,sr,351,140.4,velocity,center_ux,0.981515109539032 +karman_re200,sr,351,140.4,velocity,center_uy,0.1386561095714569 +karman_re200,sr,351,140.4,velocity,lower_ux,1.2329778671264648 +karman_re200,sr,351,140.4,velocity,lower_uy,0.24126337468624115 +karman_re200,sr,352,140.8,velocity,upper_ux,0.8824073076248169 +karman_re200,sr,352,140.8,velocity,upper_uy,-0.1358748972415924 +karman_re200,sr,352,140.8,velocity,center_ux,0.9048275947570801 +karman_re200,sr,352,140.8,velocity,center_uy,-0.1254265457391739 +karman_re200,sr,352,140.8,velocity,lower_ux,1.245639681816101 +karman_re200,sr,352,140.8,velocity,lower_uy,0.20183967053890228 +karman_re200,sr,353,141.2,velocity,upper_ux,0.9229522943496704 +karman_re200,sr,353,141.2,velocity,upper_uy,-0.2284581959247589 +karman_re200,sr,353,141.2,velocity,center_ux,0.8756372928619385 +karman_re200,sr,353,141.2,velocity,center_uy,-0.35745155811309814 +karman_re200,sr,353,141.2,velocity,lower_ux,1.1867268085479736 +karman_re200,sr,353,141.2,velocity,lower_uy,-0.1718038022518158 +karman_re200,sr,354,141.6,velocity,upper_ux,0.9818023443222046 +karman_re200,sr,354,141.6,velocity,upper_uy,-0.2855624258518219 +karman_re200,sr,354,141.6,velocity,center_ux,0.8936754465103149 +karman_re200,sr,354,141.6,velocity,center_uy,-0.47679999470710754 +karman_re200,sr,354,141.6,velocity,lower_ux,1.1259565353393555 +karman_re200,sr,354,141.6,velocity,lower_uy,-0.3873262405395508 +karman_re200,sr,355,142.0,velocity,upper_ux,1.0427325963974 +karman_re200,sr,355,142.0,velocity,upper_uy,-0.3071548640727997 +karman_re200,sr,355,142.0,velocity,center_ux,0.9274635910987854 +karman_re200,sr,355,142.0,velocity,center_uy,-0.5073570013046265 +karman_re200,sr,355,142.0,velocity,lower_ux,1.062378168106079 +karman_re200,sr,355,142.0,velocity,lower_uy,-0.42952197790145874 +karman_re200,sr,356,142.4,velocity,upper_ux,1.1013765335083008 +karman_re200,sr,356,142.4,velocity,upper_uy,-0.2862301766872406 +karman_re200,sr,356,142.4,velocity,center_ux,0.9555412530899048 +karman_re200,sr,356,142.4,velocity,center_uy,-0.5001259446144104 +karman_re200,sr,356,142.4,velocity,lower_ux,1.0066215991973877 +karman_re200,sr,356,142.4,velocity,lower_uy,-0.3767404854297638 +karman_re200,sr,357,142.8,velocity,upper_ux,1.1516157388687134 +karman_re200,sr,357,142.8,velocity,upper_uy,-0.24006426334381104 +karman_re200,sr,357,142.8,velocity,center_ux,0.9801480174064636 +karman_re200,sr,357,142.8,velocity,center_uy,-0.4469365179538727 +karman_re200,sr,357,142.8,velocity,lower_ux,0.9562771320343018 +karman_re200,sr,357,142.8,velocity,lower_uy,-0.2840496301651001 +karman_re200,sr,358,143.2,velocity,upper_ux,1.1901328563690186 +karman_re200,sr,358,143.2,velocity,upper_uy,-0.19966274499893188 +karman_re200,sr,358,143.2,velocity,center_ux,1.0108402967453003 +karman_re200,sr,358,143.2,velocity,center_uy,-0.30097296833992004 +karman_re200,sr,358,143.2,velocity,lower_ux,0.9160777926445007 +karman_re200,sr,358,143.2,velocity,lower_uy,-0.1582125425338745 +karman_re200,sr,359,143.6,velocity,upper_ux,1.2376034259796143 +karman_re200,sr,359,143.6,velocity,upper_uy,-0.2478925734758377 +karman_re200,sr,359,143.6,velocity,center_ux,0.9747651815414429 +karman_re200,sr,359,143.6,velocity,center_uy,-0.11084167659282684 +karman_re200,sr,359,143.6,velocity,lower_ux,0.8872416615486145 +karman_re200,sr,359,143.6,velocity,lower_uy,0.0015479011926800013 +karman_re200,sr,360,144.0,velocity,upper_ux,1.239630937576294 +karman_re200,sr,360,144.0,velocity,upper_uy,-0.16963592171669006 +karman_re200,sr,360,144.0,velocity,center_ux,0.8991792798042297 +karman_re200,sr,360,144.0,velocity,center_uy,0.15756258368492126 +karman_re200,sr,360,144.0,velocity,lower_ux,0.8853392004966736 +karman_re200,sr,360,144.0,velocity,lower_uy,0.15209618210792542 +karman_re200,sr,361,144.4,velocity,upper_ux,1.1790858507156372 +karman_re200,sr,361,144.4,velocity,upper_uy,0.20245258510112762 +karman_re200,sr,361,144.4,velocity,center_ux,0.8763925433158875 +karman_re200,sr,361,144.4,velocity,center_uy,0.3764716386795044 +karman_re200,sr,361,144.4,velocity,lower_ux,0.9302721619606018 +karman_re200,sr,361,144.4,velocity,lower_uy,0.237047478556633 +karman_re200,sr,362,144.8,velocity,upper_ux,1.1172988414764404 +karman_re200,sr,362,144.8,velocity,upper_uy,0.3966916799545288 +karman_re200,sr,362,144.8,velocity,center_ux,0.8975076079368591 +karman_re200,sr,362,144.8,velocity,center_uy,0.48220375180244446 +karman_re200,sr,362,144.8,velocity,lower_ux,0.9899806976318359 +karman_re200,sr,362,144.8,velocity,lower_uy,0.2911449670791626 +karman_re200,sr,363,145.2,velocity,upper_ux,1.054744839668274 +karman_re200,sr,363,145.2,velocity,upper_uy,0.42406168580055237 +karman_re200,sr,363,145.2,velocity,center_ux,0.930672824382782 +karman_re200,sr,363,145.2,velocity,center_uy,0.5064947605133057 +karman_re200,sr,363,145.2,velocity,lower_ux,1.050984263420105 +karman_re200,sr,363,145.2,velocity,lower_uy,0.3072606325149536 +karman_re200,sr,364,145.6,velocity,upper_ux,0.9996733665466309 +karman_re200,sr,364,145.6,velocity,upper_uy,0.3656556308269501 +karman_re200,sr,364,145.6,velocity,center_ux,0.956635057926178 +karman_re200,sr,364,145.6,velocity,center_uy,0.4966326653957367 +karman_re200,sr,364,145.6,velocity,lower_ux,1.1090168952941895 +karman_re200,sr,364,145.6,velocity,lower_uy,0.28258687257766724 +karman_re200,sr,365,146.0,velocity,upper_ux,0.9498848915100098 +karman_re200,sr,365,146.0,velocity,upper_uy,0.26987481117248535 +karman_re200,sr,365,146.0,velocity,center_ux,0.9803318977355957 +karman_re200,sr,365,146.0,velocity,center_uy,0.4343540072441101 +karman_re200,sr,365,146.0,velocity,lower_ux,1.157274603843689 +karman_re200,sr,365,146.0,velocity,lower_uy,0.23468101024627686 +karman_re200,sr,366,146.4,velocity,upper_ux,0.9111935496330261 +karman_re200,sr,366,146.4,velocity,upper_uy,0.1413269191980362 +karman_re200,sr,366,146.4,velocity,center_ux,1.0076676607131958 +karman_re200,sr,366,146.4,velocity,center_uy,0.2810344099998474 +karman_re200,sr,366,146.4,velocity,lower_ux,1.194635033607483 +karman_re200,sr,366,146.4,velocity,lower_uy,0.2002301663160324 +karman_re200,sr,367,146.8,velocity,upper_ux,0.8846012949943542 +karman_re200,sr,367,146.8,velocity,upper_uy,-0.01945512555539608 +karman_re200,sr,367,146.8,velocity,center_ux,0.9634720683097839 +karman_re200,sr,367,146.8,velocity,center_uy,0.08151418715715408 +karman_re200,sr,367,146.8,velocity,lower_ux,1.2419458627700806 +karman_re200,sr,367,146.8,velocity,lower_uy,0.26194655895233154 +karman_re200,sr,368,147.2,velocity,upper_ux,0.8886033892631531 +karman_re200,sr,368,147.2,velocity,upper_uy,-0.1628267467021942 +karman_re200,sr,368,147.2,velocity,center_ux,0.8921741247177124 +karman_re200,sr,368,147.2,velocity,center_uy,-0.1877940148115158 +karman_re200,sr,368,147.2,velocity,lower_ux,1.2311290502548218 +karman_re200,sr,368,147.2,velocity,lower_uy,0.12562893331050873 +karman_re200,sr,369,147.6,velocity,upper_ux,0.9367779493331909 +karman_re200,sr,369,147.6,velocity,upper_uy,-0.24263043701648712 +karman_re200,sr,369,147.6,velocity,center_ux,0.8765318989753723 +karman_re200,sr,369,147.6,velocity,center_uy,-0.3935387432575226 +karman_re200,sr,369,147.6,velocity,lower_ux,1.1737195253372192 +karman_re200,sr,369,147.6,velocity,lower_uy,-0.23908737301826477 +karman_re200,sr,370,148.0,velocity,upper_ux,0.9965366125106812 +karman_re200,sr,370,148.0,velocity,upper_uy,-0.29385051131248474 +karman_re200,sr,370,148.0,velocity,center_ux,0.9008927345275879 +karman_re200,sr,370,148.0,velocity,center_uy,-0.4874531626701355 +karman_re200,sr,370,148.0,velocity,lower_ux,1.111488699913025 +karman_re200,sr,370,148.0,velocity,lower_uy,-0.410023957490921 +karman_re200,sr,371,148.4,velocity,upper_ux,1.0568143129348755 +karman_re200,sr,371,148.4,velocity,upper_uy,-0.30458271503448486 +karman_re200,sr,371,148.4,velocity,center_ux,0.9339142441749573 +karman_re200,sr,371,148.4,velocity,center_uy,-0.5062693357467651 +karman_re200,sr,371,148.4,velocity,lower_ux,1.0498476028442383 +karman_re200,sr,371,148.4,velocity,lower_uy,-0.4221680760383606 +karman_re200,sr,372,148.8,velocity,upper_ux,1.1140483617782593 +karman_re200,sr,372,148.8,velocity,upper_uy,-0.2764248847961426 +karman_re200,sr,372,148.8,velocity,center_ux,0.9595911502838135 +karman_re200,sr,372,148.8,velocity,center_uy,-0.4927603602409363 +karman_re200,sr,372,148.8,velocity,lower_ux,0.9954643845558167 +karman_re200,sr,372,148.8,velocity,lower_uy,-0.35735276341438293 +karman_re200,sr,373,149.2,velocity,upper_ux,1.161109209060669 +karman_re200,sr,373,149.2,velocity,upper_uy,-0.22716708481311798 +karman_re200,sr,373,149.2,velocity,center_ux,0.985573410987854 +karman_re200,sr,373,149.2,velocity,center_uy,-0.41922053694725037 +karman_re200,sr,373,149.2,velocity,lower_ux,0.9469092488288879 +karman_re200,sr,373,149.2,velocity,lower_uy,-0.25689512491226196 +karman_re200,sr,374,149.6,velocity,upper_ux,1.1986509561538696 +karman_re200,sr,374,149.6,velocity,upper_uy,-0.19806812703609467 +karman_re200,sr,374,149.6,velocity,center_ux,1.0089353322982788 +karman_re200,sr,374,149.6,velocity,center_uy,-0.2605192959308624 +karman_re200,sr,374,149.6,velocity,lower_ux,0.909543514251709 +karman_re200,sr,374,149.6,velocity,lower_uy,-0.12312545627355576 +karman_re200,sr,375,150.0,velocity,upper_ux,1.2454887628555298 +karman_re200,sr,375,150.0,velocity,upper_uy,-0.26496338844299316 +karman_re200,sr,375,150.0,velocity,center_ux,0.9552457928657532 +karman_re200,sr,375,150.0,velocity,center_uy,-0.051507845520973206 +karman_re200,sr,375,150.0,velocity,lower_ux,0.8838669657707214 +karman_re200,sr,375,150.0,velocity,lower_uy,0.04098162800073624 +karman_re200,sr,376,150.4,velocity,upper_ux,1.223502516746521 +karman_re200,sr,376,150.4,velocity,upper_uy,-0.08548089116811752 +karman_re200,sr,376,150.4,velocity,center_ux,0.8880861401557922 +karman_re200,sr,376,150.4,velocity,center_uy,0.21757309138774872 +karman_re200,sr,376,150.4,velocity,lower_ux,0.8934499621391296 +karman_re200,sr,376,150.4,velocity,lower_uy,0.17620572447776794 +karman_re200,sr,377,150.8,velocity,upper_ux,1.164947748184204 +karman_re200,sr,377,150.8,velocity,upper_uy,0.2652335464954376 +karman_re200,sr,377,150.8,velocity,center_ux,0.8781765103340149 +karman_re200,sr,377,150.8,velocity,center_uy,0.40966957807540894 +karman_re200,sr,377,150.8,velocity,lower_ux,0.9441555738449097 +karman_re200,sr,377,150.8,velocity,lower_uy,0.2505494952201843 +karman_re200,sr,378,151.2,velocity,upper_ux,1.1021742820739746 +karman_re200,sr,378,151.2,velocity,upper_uy,0.4156690835952759 +karman_re200,sr,378,151.2,velocity,center_ux,0.904822826385498 +karman_re200,sr,378,151.2,velocity,center_uy,0.49093174934387207 +karman_re200,sr,378,151.2,velocity,lower_ux,1.004279613494873 +karman_re200,sr,378,151.2,velocity,lower_uy,0.29818660020828247 +karman_re200,sr,379,151.6,velocity,upper_ux,1.042281150817871 +karman_re200,sr,379,151.6,velocity,upper_uy,0.4150109887123108 +karman_re200,sr,379,151.6,velocity,center_ux,0.9369476437568665 +karman_re200,sr,379,151.6,velocity,center_uy,0.5046554803848267 +karman_re200,sr,379,151.6,velocity,lower_ux,1.0646568536758423 +karman_re200,sr,379,151.6,velocity,lower_uy,0.30349311232566833 +karman_re200,sr,380,152.0,velocity,upper_ux,0.9890590906143188 +karman_re200,sr,380,152.0,velocity,upper_uy,0.34554803371429443 +karman_re200,sr,380,152.0,velocity,center_ux,0.9607897996902466 +karman_re200,sr,380,152.0,velocity,center_uy,0.48780131340026855 +karman_re200,sr,380,152.0,velocity,lower_ux,1.1212788820266724 +karman_re200,sr,380,152.0,velocity,lower_uy,0.27199628949165344 +karman_re200,sr,381,152.4,velocity,upper_ux,0.9417542219161987 +karman_re200,sr,381,152.4,velocity,upper_uy,0.24187174439430237 +karman_re200,sr,381,152.4,velocity,center_ux,0.9864585995674133 +karman_re200,sr,381,152.4,velocity,center_uy,0.40334025025367737 +karman_re200,sr,381,152.4,velocity,lower_ux,1.1664730310440063 +karman_re200,sr,381,152.4,velocity,lower_uy,0.2217540293931961 +karman_re200,sr,382,152.8,velocity,upper_ux,0.9056846499443054 +karman_re200,sr,382,152.8,velocity,upper_uy,0.10487231612205505 +karman_re200,sr,382,152.8,velocity,center_ux,1.0036178827285767 +karman_re200,sr,382,152.8,velocity,center_uy,0.23861129581928253 +karman_re200,sr,382,152.8,velocity,lower_ux,1.2035592794418335 +karman_re200,sr,382,152.8,velocity,lower_uy,0.20084790885448456 +karman_re200,sr,383,153.2,velocity,upper_ux,0.8821309804916382 +karman_re200,sr,383,153.2,velocity,upper_uy,-0.05939636752009392 +karman_re200,sr,383,153.2,velocity,center_ux,0.9434360265731812 +karman_re200,sr,383,153.2,velocity,center_uy,0.019253218546509743 +karman_re200,sr,383,153.2,velocity,lower_ux,1.2473514080047607 +karman_re200,sr,383,153.2,velocity,lower_uy,0.27084529399871826 +karman_re200,sr,384,153.6,velocity,upper_ux,0.897983193397522 +karman_re200,sr,384,153.6,velocity,upper_uy,-0.18610695004463196 +karman_re200,sr,384,153.6,velocity,center_ux,0.8824825882911682 +karman_re200,sr,384,153.6,velocity,center_uy,-0.24514873325824738 +karman_re200,sr,384,153.6,velocity,lower_ux,1.2143499851226807 +karman_re200,sr,384,153.6,velocity,lower_uy,0.04012305662035942 +karman_re200,sr,385,154.0,velocity,upper_ux,0.95107102394104 +karman_re200,sr,385,154.0,velocity,upper_uy,-0.2566101551055908 +karman_re200,sr,385,154.0,velocity,center_ux,0.8787654638290405 +karman_re200,sr,385,154.0,velocity,center_uy,-0.4236759543418884 +karman_re200,sr,385,154.0,velocity,lower_ux,1.1572903394699097 +karman_re200,sr,385,154.0,velocity,lower_uy,-0.2923307418823242 +karman_re200,sr,386,154.4,velocity,upper_ux,1.011359691619873 +karman_re200,sr,386,154.4,velocity,upper_uy,-0.30057165026664734 +karman_re200,sr,386,154.4,velocity,center_ux,0.9076967835426331 +karman_re200,sr,386,154.4,velocity,center_uy,-0.49469947814941406 +karman_re200,sr,386,154.4,velocity,lower_ux,1.0941928625106812 +karman_re200,sr,386,154.4,velocity,lower_uy,-0.4236612617969513 +karman_re200,sr,387,154.8,velocity,upper_ux,1.0711264610290527 +karman_re200,sr,387,154.8,velocity,upper_uy,-0.30075472593307495 +karman_re200,sr,387,154.8,velocity,center_ux,0.9391447305679321 +karman_re200,sr,387,154.8,velocity,center_uy,-0.5044974684715271 +karman_re200,sr,387,154.8,velocity,lower_ux,1.0352884531021118 +karman_re200,sr,387,154.8,velocity,lower_uy,-0.4117429256439209 +karman_re200,sr,388,155.2,velocity,upper_ux,1.1265373229980469 +karman_re200,sr,388,155.2,velocity,upper_uy,-0.2662438750267029 +karman_re200,sr,388,155.2,velocity,center_ux,0.9623595476150513 +karman_re200,sr,388,155.2,velocity,center_uy,-0.48370206356048584 +karman_re200,sr,388,155.2,velocity,lower_ux,0.9825353026390076 +karman_re200,sr,388,155.2,velocity,lower_uy,-0.3375116288661957 +karman_re200,sr,389,155.6,velocity,upper_ux,1.1704052686691284 +karman_re200,sr,389,155.6,velocity,upper_uy,-0.2158740758895874 +karman_re200,sr,389,155.6,velocity,center_ux,0.9905558228492737 +karman_re200,sr,389,155.6,velocity,center_uy,-0.38696613907814026 +karman_re200,sr,389,155.6,velocity,lower_ux,0.9366030097007751 +karman_re200,sr,389,155.6,velocity,lower_uy,-0.2297402322292328 +karman_re200,sr,390,156.0,velocity,upper_ux,1.2092630863189697 +karman_re200,sr,390,156.0,velocity,upper_uy,-0.20475982129573822 +karman_re200,sr,390,156.0,velocity,center_ux,1.0012928247451782 +karman_re200,sr,390,156.0,velocity,center_uy,-0.21911269426345825 +karman_re200,sr,390,156.0,velocity,lower_ux,0.9023094773292542 +karman_re200,sr,390,156.0,velocity,lower_uy,-0.08812983334064484 +karman_re200,sr,391,156.4,velocity,upper_ux,1.2503676414489746 +karman_re200,sr,391,156.4,velocity,upper_uy,-0.2693314850330353 +karman_re200,sr,391,156.4,velocity,center_ux,0.934295654296875 +karman_re200,sr,391,156.4,velocity,center_uy,0.01070680283010006 +karman_re200,sr,391,156.4,velocity,lower_ux,0.881427526473999 +karman_re200,sr,391,156.4,velocity,lower_uy,0.07714591175317764 +karman_re200,sr,392,156.8,velocity,upper_ux,1.2075750827789307 +karman_re200,sr,392,156.8,velocity,upper_uy,0.00881149247288704 +karman_re200,sr,392,156.8,velocity,center_ux,0.8796201944351196 +karman_re200,sr,392,156.8,velocity,center_uy,0.2721402049064636 +karman_re200,sr,392,156.8,velocity,lower_ux,0.9029329419136047 +karman_re200,sr,392,156.8,velocity,lower_uy,0.196428582072258 +karman_re200,sr,393,157.2,velocity,upper_ux,1.1500040292739868 +karman_re200,sr,393,157.2,velocity,upper_uy,0.3178466558456421 +karman_re200,sr,393,157.2,velocity,center_ux,0.88133704662323 +karman_re200,sr,393,157.2,velocity,center_uy,0.43811121582984924 +karman_re200,sr,393,157.2,velocity,lower_ux,0.9574876427650452 +karman_re200,sr,393,157.2,velocity,lower_uy,0.26360976696014404 +karman_re200,sr,394,157.6,velocity,upper_ux,1.0863796472549438 +karman_re200,sr,394,157.6,velocity,upper_uy,0.4280163645744324 +karman_re200,sr,394,157.6,velocity,center_ux,0.9120049476623535 +karman_re200,sr,394,157.6,velocity,center_uy,0.49861159920692444 +karman_re200,sr,394,157.6,velocity,lower_ux,1.0178859233856201 +karman_re200,sr,394,157.6,velocity,lower_uy,0.30329033732414246 +karman_re200,sr,395,158.0,velocity,upper_ux,1.028822660446167 +karman_re200,sr,395,158.0,velocity,upper_uy,0.4050874710083008 +karman_re200,sr,395,158.0,velocity,center_ux,0.9430217742919922 +karman_re200,sr,395,158.0,velocity,center_uy,0.5040076971054077 +karman_re200,sr,395,158.0,velocity,lower_ux,1.0777451992034912 +karman_re200,sr,395,158.0,velocity,lower_uy,0.2984265983104706 +karman_re200,sr,396,158.4,velocity,upper_ux,0.9770185947418213 +karman_re200,sr,396,158.4,velocity,upper_uy,0.3265605866909027 +karman_re200,sr,396,158.4,velocity,center_ux,0.9660391211509705 +karman_re200,sr,396,158.4,velocity,center_uy,0.4780276119709015 +karman_re200,sr,396,158.4,velocity,lower_ux,1.1325000524520874 +karman_re200,sr,396,158.4,velocity,lower_uy,0.2609326243400574 +karman_re200,sr,397,158.8,velocity,upper_ux,0.932373046875 +karman_re200,sr,397,158.8,velocity,upper_uy,0.21489115059375763 +karman_re200,sr,397,158.8,velocity,center_ux,0.9956945180892944 +karman_re200,sr,397,158.8,velocity,center_uy,0.36892983317375183 +karman_re200,sr,397,158.8,velocity,lower_ux,1.1749194860458374 +karman_re200,sr,397,158.8,velocity,lower_uy,0.21090704202651978 +karman_re200,sr,398,159.2,velocity,upper_ux,0.8989872932434082 +karman_re200,sr,398,159.2,velocity,upper_uy,0.06874792277812958 +karman_re200,sr,398,159.2,velocity,center_ux,0.997447669506073 +karman_re200,sr,398,159.2,velocity,center_uy,0.19714698195457458 +karman_re200,sr,398,159.2,velocity,lower_ux,1.2150958776474 +karman_re200,sr,398,159.2,velocity,lower_uy,0.2102317214012146 +karman_re200,sr,399,159.6,velocity,upper_ux,0.8807182312011719 +karman_re200,sr,399,159.6,velocity,upper_uy,-0.09590621292591095 +karman_re200,sr,399,159.6,velocity,center_ux,0.9251412749290466 +karman_re200,sr,399,159.6,velocity,center_uy,-0.042874544858932495 +karman_re200,sr,399,159.6,velocity,lower_ux,1.2510581016540527 +karman_re200,sr,399,159.6,velocity,lower_uy,0.26197314262390137 +karman_re200,sr,0,0.0,force,front_fx,0.0011263960041105747 +karman_re200,sr,0,0.0,force,front_fy,-0.0004060621140524745 +karman_re200,sr,0,0.0,force,upper_fx,-0.006545570679008961 +karman_re200,sr,0,0.0,force,upper_fy,0.0039879074320197105 +karman_re200,sr,0,0.0,force,lower_fx,0.005249970592558384 +karman_re200,sr,0,0.0,force,lower_fy,-0.004876619670540094 +karman_re200,sr,1,0.4,force,front_fx,0.00048224491183646023 +karman_re200,sr,1,0.4,force,front_fy,-0.003207546193152666 +karman_re200,sr,1,0.4,force,upper_fx,-0.003815351752564311 +karman_re200,sr,1,0.4,force,upper_fy,0.004020639695227146 +karman_re200,sr,1,0.4,force,lower_fx,0.0025657950900495052 +karman_re200,sr,1,0.4,force,lower_fy,-0.005089026875793934 +karman_re200,sr,2,0.8,force,front_fx,-0.0013891905546188354 +karman_re200,sr,2,0.8,force,front_fy,-0.004301857203245163 +karman_re200,sr,2,0.8,force,upper_fx,-0.0021930576767772436 +karman_re200,sr,2,0.8,force,upper_fy,0.003889292711392045 +karman_re200,sr,2,0.8,force,lower_fx,0.0008035313221625984 +karman_re200,sr,2,0.8,force,lower_fy,-0.005944945849478245 +karman_re200,sr,3,1.2,force,front_fx,-0.0020704951602965593 +karman_re200,sr,3,1.2,force,front_fy,-0.004647049121558666 +karman_re200,sr,3,1.2,force,upper_fx,-0.0008870759047567844 +karman_re200,sr,3,1.2,force,upper_fy,0.004530957899987698 +karman_re200,sr,3,1.2,force,lower_fx,1.670119854679797e-05 +karman_re200,sr,3,1.2,force,lower_fy,-0.005294940434396267 +karman_re200,sr,4,1.6,force,front_fx,-0.0019277769606560469 +karman_re200,sr,4,1.6,force,front_fy,-0.004892516881227493 +karman_re200,sr,4,1.6,force,upper_fx,0.0012178270844742656 +karman_re200,sr,4,1.6,force,upper_fy,0.005905617028474808 +karman_re200,sr,4,1.6,force,lower_fx,-0.0015681221848353744 +karman_re200,sr,4,1.6,force,lower_fy,-0.0038027989212423563 +karman_re200,sr,5,2.0,force,front_fx,-0.0005425169365480542 +karman_re200,sr,5,2.0,force,front_fy,-0.004617916885763407 +karman_re200,sr,5,2.0,force,upper_fx,0.003833966562524438 +karman_re200,sr,5,2.0,force,upper_fy,0.006711957510560751 +karman_re200,sr,5,2.0,force,lower_fx,-0.0039521874859929085 +karman_re200,sr,5,2.0,force,lower_fy,-0.002377621829509735 +karman_re200,sr,6,2.4,force,front_fx,0.0015752740437164903 +karman_re200,sr,6,2.4,force,front_fy,-0.003413861384615302 +karman_re200,sr,6,2.4,force,upper_fx,0.005120018031448126 +karman_re200,sr,6,2.4,force,upper_fy,0.006377035286277533 +karman_re200,sr,6,2.4,force,lower_fx,-0.006753191351890564 +karman_re200,sr,6,2.4,force,lower_fy,-0.0014016882050782442 +karman_re200,sr,7,2.8,force,front_fx,0.003755904734134674 +karman_re200,sr,7,2.8,force,front_fy,-0.000616182223893702 +karman_re200,sr,7,2.8,force,upper_fx,0.004270640201866627 +karman_re200,sr,7,2.8,force,upper_fy,0.006023434456437826 +karman_re200,sr,7,2.8,force,lower_fx,-0.008887496776878834 +karman_re200,sr,7,2.8,force,lower_fy,-0.0013197144726291299 +karman_re200,sr,8,3.2,force,front_fx,0.0038516419008374214 +karman_re200,sr,8,3.2,force,front_fy,0.0015172298299148679 +karman_re200,sr,8,3.2,force,upper_fx,0.003382619936019182 +karman_re200,sr,8,3.2,force,upper_fy,0.0051092542707920074 +karman_re200,sr,8,3.2,force,lower_fx,-0.009329188615083694 +karman_re200,sr,8,3.2,force,lower_fy,-0.0032577356323599815 +karman_re200,sr,9,3.6,force,front_fx,0.0013758675195276737 +karman_re200,sr,9,3.6,force,front_fy,0.0033330621663480997 +karman_re200,sr,9,3.6,force,upper_fx,0.0023545098956674337 +karman_re200,sr,9,3.6,force,upper_fy,0.005057234782725573 +karman_re200,sr,9,3.6,force,lower_fx,-0.0056190150789916515 +karman_re200,sr,9,3.6,force,lower_fy,-0.00659299036487937 +karman_re200,sr,10,4.0,force,front_fx,-0.0006982985069043934 +karman_re200,sr,10,4.0,force,front_fy,0.004437865223735571 +karman_re200,sr,10,4.0,force,upper_fx,0.0005921332049183547 +karman_re200,sr,10,4.0,force,upper_fy,0.005856738891452551 +karman_re200,sr,10,4.0,force,lower_fx,-0.0005149476346559823 +karman_re200,sr,10,4.0,force,lower_fy,-0.007076438050717115 +karman_re200,sr,11,4.4,force,front_fx,-0.0019578735809773207 +karman_re200,sr,11,4.4,force,front_fy,0.004889757838100195 +karman_re200,sr,11,4.4,force,upper_fx,-0.0011225069174543023 +karman_re200,sr,11,4.4,force,upper_fy,0.006475660018622875 +karman_re200,sr,11,4.4,force,lower_fx,0.0025524550583213568 +karman_re200,sr,11,4.4,force,lower_fy,-0.006672624498605728 +karman_re200,sr,12,4.8,force,front_fx,-0.001312345382757485 +karman_re200,sr,12,4.8,force,front_fy,0.004773437511175871 +karman_re200,sr,12,4.8,force,upper_fx,-0.0025666397996246815 +karman_re200,sr,12,4.8,force,upper_fy,0.005677192006260157 +karman_re200,sr,12,4.8,force,lower_fx,0.0045271627604961395 +karman_re200,sr,12,4.8,force,lower_fy,-0.0069804624654352665 +karman_re200,sr,13,5.2,force,front_fx,0.0008750350680202246 +karman_re200,sr,13,5.2,force,front_fy,0.004468885250389576 +karman_re200,sr,13,5.2,force,upper_fx,-0.005027694161981344 +karman_re200,sr,13,5.2,force,upper_fy,0.003597659058868885 +karman_re200,sr,13,5.2,force,lower_fx,0.006159372162073851 +karman_re200,sr,13,5.2,force,lower_fy,-0.007321823388338089 +karman_re200,sr,14,5.6,force,front_fx,0.0035278734285384417 +karman_re200,sr,14,5.6,force,front_fy,0.0032101464457809925 +karman_re200,sr,14,5.6,force,upper_fx,-0.008420281112194061 +karman_re200,sr,14,5.6,force,upper_fy,0.0015553940320387483 +karman_re200,sr,14,5.6,force,lower_fx,0.006425525993108749 +karman_re200,sr,14,5.6,force,lower_fy,-0.006690561771392822 +karman_re200,sr,15,6.0,force,front_fx,0.004877178464084864 +karman_re200,sr,15,6.0,force,front_fy,0.0007379818707704544 +karman_re200,sr,15,6.0,force,upper_fx,-0.010873593389987946 +karman_re200,sr,15,6.0,force,upper_fy,0.0014370046555995941 +karman_re200,sr,15,6.0,force,lower_fx,0.004959537647664547 +karman_re200,sr,15,6.0,force,lower_fy,-0.005780999548733234 +karman_re200,sr,16,6.4,force,front_fx,0.004037993494421244 +karman_re200,sr,16,6.4,force,front_fy,-0.001752943848259747 +karman_re200,sr,16,6.4,force,upper_fx,-0.009895979426801205 +karman_re200,sr,16,6.4,force,upper_fy,0.003579997457563877 +karman_re200,sr,16,6.4,force,lower_fx,0.0036981720477342606 +karman_re200,sr,16,6.4,force,lower_fy,-0.004993000533431768 +karman_re200,sr,17,6.8,force,front_fx,0.0017230029916390777 +karman_re200,sr,17,6.8,force,front_fy,-0.003585405880585313 +karman_re200,sr,17,6.8,force,upper_fx,-0.005393247120082378 +karman_re200,sr,17,6.8,force,upper_fy,0.005689187441021204 +karman_re200,sr,17,6.8,force,lower_fx,0.002525774762034416 +karman_re200,sr,17,6.8,force,lower_fy,-0.0050802212208509445 +karman_re200,sr,18,7.2,force,front_fx,-0.0006764272111468017 +karman_re200,sr,18,7.2,force,front_fy,-0.004729583393782377 +karman_re200,sr,18,7.2,force,upper_fx,-0.0008014484774321318 +karman_re200,sr,18,7.2,force,upper_fy,0.005817587953060865 +karman_re200,sr,18,7.2,force,lower_fx,0.0008897595689631999 +karman_re200,sr,18,7.2,force,lower_fy,-0.005998501554131508 +karman_re200,sr,19,7.6,force,front_fx,-0.002136233728379011 +karman_re200,sr,19,7.6,force,front_fy,-0.0050793057307600975 +karman_re200,sr,19,7.6,force,upper_fx,0.002175958827137947 +karman_re200,sr,19,7.6,force,upper_fy,0.005896773189306259 +karman_re200,sr,19,7.6,force,lower_fx,-0.0006812441861256957 +karman_re200,sr,19,7.6,force,lower_fy,-0.006587696261703968 +karman_re200,sr,20,8.0,force,front_fx,-0.0015418115071952343 +karman_re200,sr,20,8.0,force,front_fy,-0.004998510703444481 +karman_re200,sr,20,8.0,force,upper_fx,0.004529410973191261 +karman_re200,sr,20,8.0,force,upper_fy,0.006457610055804253 +karman_re200,sr,20,8.0,force,lower_fx,-0.0022619771771132946 +karman_re200,sr,20,8.0,force,lower_fy,-0.005741001572459936 +karman_re200,sr,21,8.4,force,front_fx,0.0006581673515029252 +karman_re200,sr,21,8.4,force,front_fy,-0.004792251158505678 +karman_re200,sr,21,8.4,force,upper_fx,0.006662536878138781 +karman_re200,sr,21,8.4,force,upper_fy,0.006773157510906458 +karman_re200,sr,21,8.4,force,lower_fx,-0.004893288481980562 +karman_re200,sr,21,8.4,force,lower_fy,-0.003708175616338849 +karman_re200,sr,22,8.8,force,front_fx,0.003214136464521289 +karman_re200,sr,22,8.8,force,front_fy,-0.0033258467447012663 +karman_re200,sr,22,8.8,force,upper_fx,0.007294446229934692 +karman_re200,sr,22,8.8,force,upper_fy,0.006303871050477028 +karman_re200,sr,22,8.8,force,lower_fx,-0.008185920305550098 +karman_re200,sr,22,8.8,force,lower_fy,-0.0015252097509801388 +karman_re200,sr,23,9.2,force,front_fx,0.004693513736128807 +karman_re200,sr,23,9.2,force,front_fy,-0.00043679922237060964 +karman_re200,sr,23,9.2,force,upper_fx,0.005702223163098097 +karman_re200,sr,23,9.2,force,upper_fy,0.005775453522801399 +karman_re200,sr,23,9.2,force,lower_fx,-0.010804083198308945 +karman_re200,sr,23,9.2,force,lower_fy,-0.0008877252694219351 +karman_re200,sr,24,9.6,force,front_fx,0.00404226453974843 +karman_re200,sr,24,9.6,force,front_fy,0.0022622719407081604 +karman_re200,sr,24,9.6,force,upper_fx,0.003997542895376682 +karman_re200,sr,24,9.6,force,upper_fy,0.005213484633713961 +karman_re200,sr,24,9.6,force,lower_fx,-0.010751452296972275 +karman_re200,sr,24,9.6,force,lower_fy,-0.0026939178351312876 +karman_re200,sr,25,10.0,force,front_fx,0.0014645217452198267 +karman_re200,sr,25,10.0,force,front_fy,0.004152118694037199 +karman_re200,sr,25,10.0,force,upper_fx,0.0028758663684129715 +karman_re200,sr,25,10.0,force,upper_fy,0.005288139451295137 +karman_re200,sr,25,10.0,force,lower_fx,-0.0068747675977647305 +karman_re200,sr,25,10.0,force,lower_fy,-0.005702715367078781 +karman_re200,sr,26,10.4,force,front_fx,-0.000927732908166945 +karman_re200,sr,26,10.4,force,front_fy,0.00508354464545846 +karman_re200,sr,26,10.4,force,upper_fx,0.0013624316779896617 +karman_re200,sr,26,10.4,force,upper_fy,0.006167056038975716 +karman_re200,sr,26,10.4,force,lower_fx,-0.0018143152119591832 +karman_re200,sr,26,10.4,force,lower_fy,-0.0065381829626858234 +karman_re200,sr,27,10.8,force,front_fx,-0.0023164432495832443 +karman_re200,sr,27,10.8,force,front_fy,0.005268513690680265 +karman_re200,sr,27,10.8,force,upper_fx,-0.00022999617794994265 +karman_re200,sr,27,10.8,force,upper_fy,0.006919266190379858 +karman_re200,sr,27,10.8,force,lower_fx,0.0015365451108664274 +karman_re200,sr,27,10.8,force,lower_fy,-0.0063645439222455025 +karman_re200,sr,28,11.2,force,front_fx,-0.001849004183895886 +karman_re200,sr,28,11.2,force,front_fy,0.004974258132278919 +karman_re200,sr,28,11.2,force,upper_fx,-0.0017572685610502958 +karman_re200,sr,28,11.2,force,upper_fy,0.006295220460742712 +karman_re200,sr,28,11.2,force,lower_fx,0.0038954804185777903 +karman_re200,sr,28,11.2,force,lower_fy,-0.006739871110767126 +karman_re200,sr,29,11.6,force,front_fx,0.00016273296205326915 +karman_re200,sr,29,11.6,force,front_fy,0.004521767608821392 +karman_re200,sr,29,11.6,force,upper_fx,-0.004125246778130531 +karman_re200,sr,29,11.6,force,upper_fy,0.004533346276730299 +karman_re200,sr,29,11.6,force,lower_fx,0.00601448817178607 +karman_re200,sr,29,11.6,force,lower_fy,-0.007145014591515064 +karman_re200,sr,30,12.0,force,front_fx,0.002579488093033433 +karman_re200,sr,30,12.0,force,front_fy,0.002995473798364401 +karman_re200,sr,30,12.0,force,upper_fx,-0.007211661897599697 +karman_re200,sr,30,12.0,force,upper_fy,0.0025676393415778875 +karman_re200,sr,30,12.0,force,lower_fx,0.006864811293780804 +karman_re200,sr,30,12.0,force,lower_fy,-0.0066949110478162766 +karman_re200,sr,31,12.4,force,front_fx,0.0037217119242995977 +karman_re200,sr,31,12.4,force,front_fy,0.00023462495300918818 +karman_re200,sr,31,12.4,force,upper_fx,-0.009484765119850636 +karman_re200,sr,31,12.4,force,upper_fy,0.001875756774097681 +karman_re200,sr,31,12.4,force,lower_fx,0.005656423978507519 +karman_re200,sr,31,12.4,force,lower_fy,-0.006039667874574661 +karman_re200,sr,32,12.8,force,front_fx,0.0031400478910654783 +karman_re200,sr,32,12.8,force,front_fy,-0.0024475231766700745 +karman_re200,sr,32,12.8,force,upper_fx,-0.009340595453977585 +karman_re200,sr,32,12.8,force,upper_fy,0.002951273927465081 +karman_re200,sr,32,12.8,force,lower_fx,0.003888973966240883 +karman_re200,sr,32,12.8,force,lower_fy,-0.00551551952958107 +karman_re200,sr,33,13.2,force,front_fx,0.0007871203706599772 +karman_re200,sr,33,13.2,force,front_fy,-0.004223888739943504 +karman_re200,sr,33,13.2,force,upper_fx,-0.006445425096899271 +karman_re200,sr,33,13.2,force,upper_fy,0.005197152029722929 +karman_re200,sr,33,13.2,force,lower_fx,0.0026367243845015764 +karman_re200,sr,33,13.2,force,lower_fy,-0.0055334907956421375 +karman_re200,sr,34,13.6,force,front_fx,-0.0014275702415034175 +karman_re200,sr,34,13.6,force,front_fy,-0.005191398318856955 +karman_re200,sr,34,13.6,force,upper_fx,-0.0021198622416704893 +karman_re200,sr,34,13.6,force,upper_fy,0.006541639566421509 +karman_re200,sr,34,13.6,force,lower_fx,0.0012188880937173963 +karman_re200,sr,34,13.6,force,lower_fy,-0.0062515614554286 +karman_re200,sr,35,14.0,force,front_fx,-0.0024530678056180477 +karman_re200,sr,35,14.0,force,front_fy,-0.005361734423786402 +karman_re200,sr,35,14.0,force,upper_fx,0.0012333085760474205 +karman_re200,sr,35,14.0,force,upper_fy,0.006688334513455629 +karman_re200,sr,35,14.0,force,lower_fx,-0.00032341296900995076 +karman_re200,sr,35,14.0,force,lower_fy,-0.006822157651185989 +karman_re200,sr,36,14.4,force,front_fx,-0.001749916817061603 +karman_re200,sr,36,14.4,force,front_fy,-0.005146584939211607 +karman_re200,sr,36,14.4,force,upper_fx,0.003635088913142681 +karman_re200,sr,36,14.4,force,upper_fy,0.006858592852950096 +karman_re200,sr,36,14.4,force,lower_fx,-0.001981668407097459 +karman_re200,sr,36,14.4,force,lower_fy,-0.00619505112990737 +karman_re200,sr,37,14.8,force,front_fx,0.00027117025456391275 +karman_re200,sr,37,14.8,force,front_fy,-0.004491814412176609 +karman_re200,sr,37,14.8,force,upper_fx,0.005580618511885405 +karman_re200,sr,37,14.8,force,upper_fy,0.00695138331502676 +karman_re200,sr,37,14.8,force,lower_fx,-0.004222680814564228 +karman_re200,sr,37,14.8,force,lower_fy,-0.004520321264863014 +karman_re200,sr,38,15.2,force,front_fx,0.0025168228894472122 +karman_re200,sr,38,15.2,force,front_fy,-0.0027004063595086336 +karman_re200,sr,38,15.2,force,upper_fx,0.0062703764997422695 +karman_re200,sr,38,15.2,force,upper_fy,0.006509809289127588 +karman_re200,sr,38,15.2,force,lower_fx,-0.006951495539397001 +karman_re200,sr,38,15.2,force,lower_fy,-0.0027195748407393694 +karman_re200,sr,39,15.6,force,front_fx,0.0034153847955167294 +karman_re200,sr,39,15.6,force,front_fy,6.232992018340155e-05 +karman_re200,sr,39,15.6,force,upper_fx,0.005246317014098167 +karman_re200,sr,39,15.6,force,upper_fy,0.005989946890622377 +karman_re200,sr,39,15.6,force,lower_fx,-0.008905639871954918 +karman_re200,sr,39,15.6,force,lower_fy,-0.002172093605622649 +karman_re200,sr,40,16.0,force,front_fx,0.0026122473645955324 +karman_re200,sr,40,16.0,force,front_fy,0.002677992917597294 +karman_re200,sr,40,16.0,force,upper_fx,0.0036504354793578386 +karman_re200,sr,40,16.0,force,upper_fy,0.005606785882264376 +karman_re200,sr,40,16.0,force,lower_fx,-0.008594895713031292 +karman_re200,sr,40,16.0,force,lower_fy,-0.0033171691466122866 +karman_re200,sr,41,16.4,force,front_fx,0.00032835788442753255 +karman_re200,sr,41,16.4,force,front_fy,0.004353076219558716 +karman_re200,sr,41,16.4,force,upper_fx,0.002359425649046898 +karman_re200,sr,41,16.4,force,upper_fy,0.005687522701919079 +karman_re200,sr,41,16.4,force,lower_fx,-0.005861895624548197 +karman_re200,sr,41,16.4,force,lower_fy,-0.005370392929762602 +karman_re200,sr,42,16.8,force,front_fx,-0.001743796281516552 +karman_re200,sr,42,16.8,force,front_fy,0.005182939115911722 +karman_re200,sr,42,16.8,force,upper_fx,0.0009349227184429765 +karman_re200,sr,42,16.8,force,upper_fy,0.006310141645371914 +karman_re200,sr,42,16.8,force,lower_fx,-0.0019766702316701412 +karman_re200,sr,42,16.8,force,lower_fy,-0.00660953763872385 +karman_re200,sr,43,17.2,force,front_fx,-0.002501515205949545 +karman_re200,sr,43,17.2,force,front_fy,0.005278934724628925 +karman_re200,sr,43,17.2,force,upper_fx,-0.000579102139454335 +karman_re200,sr,43,17.2,force,upper_fy,0.006656305398792028 +karman_re200,sr,43,17.2,force,lower_fx,0.0011861474486067891 +karman_re200,sr,43,17.2,force,lower_fy,-0.006751664914190769 +karman_re200,sr,44,17.6,force,front_fx,-0.001613040454685688 +karman_re200,sr,44,17.6,force,front_fy,0.0050729005597531796 +karman_re200,sr,44,17.6,force,upper_fx,-0.002216136083006859 +karman_re200,sr,44,17.6,force,upper_fy,0.005901953671127558 +karman_re200,sr,44,17.6,force,lower_fx,0.00355531251989305 +karman_re200,sr,44,17.6,force,lower_fy,-0.006854312028735876 +karman_re200,sr,45,18.0,force,front_fx,0.0004387281369417906 +karman_re200,sr,45,18.0,force,front_fy,0.0043107448145747185 +karman_re200,sr,45,18.0,force,upper_fx,-0.004358278121799231 +karman_re200,sr,45,18.0,force,upper_fy,0.004277142696082592 +karman_re200,sr,45,18.0,force,lower_fx,0.005387631244957447 +karman_re200,sr,45,18.0,force,lower_fy,-0.006874006241559982 +karman_re200,sr,46,18.4,force,front_fx,0.002539843088015914 +karman_re200,sr,46,18.4,force,front_fy,0.0023715184070169926 +karman_re200,sr,46,18.4,force,upper_fx,-0.00688712066039443 +karman_re200,sr,46,18.4,force,upper_fy,0.0026897648349404335 +karman_re200,sr,46,18.4,force,lower_fx,0.0058567700907588005 +karman_re200,sr,46,18.4,force,lower_fy,-0.0064470283687114716 +karman_re200,sr,47,18.8,force,front_fx,0.003214263590052724 +karman_re200,sr,47,18.8,force,front_fy,-0.0003799202386289835 +karman_re200,sr,47,18.8,force,upper_fx,-0.008559444919228554 +karman_re200,sr,47,18.8,force,upper_fy,0.0023551443591713905 +karman_re200,sr,47,18.8,force,lower_fx,0.004757848102599382 +karman_re200,sr,47,18.8,force,lower_fy,-0.005915566813200712 +karman_re200,sr,48,19.2,force,front_fx,0.0021988009102642536 +karman_re200,sr,48,19.2,force,front_fy,-0.0028577540069818497 +karman_re200,sr,48,19.2,force,upper_fx,-0.007995636202394962 +karman_re200,sr,48,19.2,force,upper_fy,0.003531156573444605 +karman_re200,sr,48,19.2,force,lower_fx,0.003241579048335552 +karman_re200,sr,48,19.2,force,lower_fy,-0.005504704546183348 +karman_re200,sr,49,19.6,force,front_fx,-4.061533763888292e-05 +karman_re200,sr,49,19.6,force,front_fy,-0.004417947493493557 +karman_re200,sr,49,19.6,force,upper_fx,-0.005188724026083946 +karman_re200,sr,49,19.6,force,upper_fy,0.005421218927949667 +karman_re200,sr,49,19.6,force,lower_fx,0.0019805694464594126 +karman_re200,sr,49,19.6,force,lower_fy,-0.005599693860858679 +karman_re200,sr,50,20.0,force,front_fx,-0.001904709730297327 +karman_re200,sr,50,20.0,force,front_fy,-0.0051839351654052734 +karman_re200,sr,50,20.0,force,upper_fx,-0.001468444475904107 +karman_re200,sr,50,20.0,force,upper_fy,0.00654126750305295 +karman_re200,sr,50,20.0,force,lower_fx,0.000594502140302211 +karman_re200,sr,50,20.0,force,lower_fy,-0.006200714036822319 +karman_re200,sr,51,20.4,force,front_fx,-0.002378568984568119 +karman_re200,sr,51,20.4,force,front_fy,-0.005292828660458326 +karman_re200,sr,51,20.4,force,upper_fx,0.0015530826058238745 +karman_re200,sr,51,20.4,force,upper_fy,0.006741988472640514 +karman_re200,sr,51,20.4,force,lower_fx,-0.0008853749022819102 +karman_re200,sr,51,20.4,force,lower_fy,-0.006434277165681124 +karman_re200,sr,52,20.8,force,front_fx,-0.0012495651608332992 +karman_re200,sr,52,20.8,force,front_fy,-0.005103139206767082 +karman_re200,sr,52,20.8,force,upper_fx,0.0038282624445855618 +karman_re200,sr,52,20.8,force,upper_fy,0.0068573253229260445 +karman_re200,sr,52,20.8,force,lower_fx,-0.0025993240997195244 +karman_re200,sr,52,20.8,force,lower_fy,-0.0055627222172915936 +karman_re200,sr,53,21.2,force,front_fx,0.0008915143553167582 +karman_re200,sr,53,21.2,force,front_fy,-0.004173272754997015 +karman_re200,sr,53,21.2,force,upper_fx,0.005425748880952597 +karman_re200,sr,53,21.2,force,upper_fy,0.006776059046387672 +karman_re200,sr,53,21.2,force,lower_fx,-0.004855565261095762 +karman_re200,sr,53,21.2,force,lower_fy,-0.0038605299778282642 +karman_re200,sr,54,21.6,force,front_fx,0.0028494438156485558 +karman_re200,sr,54,21.6,force,front_fy,-0.002014596713706851 +karman_re200,sr,54,21.6,force,upper_fx,0.0055946423672139645 +karman_re200,sr,54,21.6,force,upper_fy,0.006309230346232653 +karman_re200,sr,54,21.6,force,lower_fx,-0.007366767153143883 +karman_re200,sr,54,21.6,force,lower_fy,-0.0023741191253066063 +karman_re200,sr,55,22.0,force,front_fx,0.0032763085328042507 +karman_re200,sr,55,22.0,force,front_fy,0.0007945941179059446 +karman_re200,sr,55,22.0,force,upper_fx,0.004396183416247368 +karman_re200,sr,55,22.0,force,upper_fy,0.005822257604449987 +karman_re200,sr,55,22.0,force,lower_fx,-0.008775112219154835 +karman_re200,sr,55,22.0,force,lower_fy,-0.0023880673106759787 +karman_re200,sr,56,22.4,force,front_fx,0.001971921417862177 +karman_re200,sr,56,22.4,force,front_fy,0.0031240733806043863 +karman_re200,sr,56,22.4,force,upper_fx,0.003028993494808674 +karman_re200,sr,56,22.4,force,upper_fy,0.005497295409440994 +karman_re200,sr,56,22.4,force,lower_fx,-0.007750897202640772 +karman_re200,sr,56,22.4,force,lower_fy,-0.0039863018319010735 +karman_re200,sr,57,22.8,force,front_fx,-0.0003424267051741481 +karman_re200,sr,57,22.8,force,front_fy,0.004538960289210081 +karman_re200,sr,57,22.8,force,upper_fx,0.001794209936633706 +karman_re200,sr,57,22.8,force,upper_fy,0.005745719186961651 +karman_re200,sr,57,22.8,force,lower_fx,-0.004473335109651089 +karman_re200,sr,57,22.8,force,lower_fy,-0.005988363642245531 +karman_re200,sr,58,23.2,force,front_fx,-0.00205183494836092 +karman_re200,sr,58,23.2,force,front_fy,0.005162039306014776 +karman_re200,sr,58,23.2,force,upper_fx,0.0003111778059974313 +karman_re200,sr,58,23.2,force,upper_fy,0.00640575448051095 +karman_re200,sr,58,23.2,force,lower_fx,-0.000717156392056495 +karman_re200,sr,58,23.2,force,lower_fy,-0.0067681516520679 +karman_re200,sr,59,23.6,force,front_fx,-0.0023006766568869352 +karman_re200,sr,59,23.6,force,front_fy,0.00518372468650341 +karman_re200,sr,59,23.6,force,upper_fx,-0.0012100694002583623 +karman_re200,sr,59,23.6,force,upper_fy,0.006451698020100594 +karman_re200,sr,59,23.6,force,lower_fx,0.002068230649456382 +karman_re200,sr,59,23.6,force,lower_fy,-0.006779046263545752 +karman_re200,sr,60,24.0,force,front_fx,-0.0009943345794454217 +karman_re200,sr,60,24.0,force,front_fy,0.004943869076669216 +karman_re200,sr,60,24.0,force,upper_fx,-0.002962136175483465 +karman_re200,sr,60,24.0,force,upper_fy,0.005307651124894619 +karman_re200,sr,60,24.0,force,lower_fx,0.004211887717247009 +karman_re200,sr,60,24.0,force,lower_fy,-0.006859029643237591 +karman_re200,sr,61,24.4,force,front_fx,0.001229963032528758 +karman_re200,sr,61,24.4,force,front_fy,0.003908362705260515 +karman_re200,sr,61,24.4,force,upper_fx,-0.005285471677780151 +karman_re200,sr,61,24.4,force,upper_fy,0.0034833159297704697 +karman_re200,sr,61,24.4,force,lower_fx,0.0056593213230371475 +karman_re200,sr,61,24.4,force,lower_fy,-0.006728386506438255 +karman_re200,sr,62,24.8,force,front_fx,0.0030991348903626204 +karman_re200,sr,62,24.8,force,front_fy,0.0017211921513080597 +karman_re200,sr,62,24.8,force,upper_fx,-0.007787871174514294 +karman_re200,sr,62,24.8,force,upper_fy,0.0021441809367388487 +karman_re200,sr,62,24.8,force,lower_fx,0.005567226558923721 +karman_re200,sr,62,24.8,force,lower_fy,-0.006219643168151379 +karman_re200,sr,63,25.2,force,front_fx,0.003346191020682454 +karman_re200,sr,63,25.2,force,front_fy,-0.0010488997213542461 +karman_re200,sr,63,25.2,force,upper_fx,-0.008939642459154129 +karman_re200,sr,63,25.2,force,upper_fy,0.0024262121878564358 +karman_re200,sr,63,25.2,force,lower_fx,0.004193332977592945 +karman_re200,sr,63,25.2,force,lower_fy,-0.005696048028767109 +karman_re200,sr,64,25.6,force,front_fx,0.0018133586272597313 +karman_re200,sr,64,25.6,force,front_fy,-0.0032545197755098343 +karman_re200,sr,64,25.6,force,upper_fx,-0.007543887943029404 +karman_re200,sr,64,25.6,force,upper_fy,0.004138297867029905 +karman_re200,sr,64,25.6,force,lower_fx,0.0028304678853601217 +karman_re200,sr,64,25.6,force,lower_fy,-0.005364478100091219 +karman_re200,sr,65,26.0,force,front_fx,-0.0005426599527709186 +karman_re200,sr,65,26.0,force,front_fy,-0.00460693147033453 +karman_re200,sr,65,26.0,force,upper_fx,-0.003995985258370638 +karman_re200,sr,65,26.0,force,upper_fy,0.006004285998642445 +karman_re200,sr,65,26.0,force,lower_fx,0.001558012911118567 +karman_re200,sr,65,26.0,force,lower_fy,-0.005662992130964994 +karman_re200,sr,66,26.4,force,front_fx,-0.0021289128344506025 +karman_re200,sr,66,26.4,force,front_fy,-0.005195327568799257 +karman_re200,sr,66,26.4,force,upper_fx,-0.00023783506185282022 +karman_re200,sr,66,26.4,force,upper_fy,0.006582879461348057 +karman_re200,sr,66,26.4,force,lower_fx,8.03206639830023e-05 +karman_re200,sr,66,26.4,force,lower_fy,-0.006329080555588007 +karman_re200,sr,67,26.8,force,front_fx,-0.002171469619497657 +karman_re200,sr,67,26.8,force,front_fy,-0.005208258051425219 +karman_re200,sr,67,26.8,force,upper_fx,0.00249017053283751 +karman_re200,sr,67,26.8,force,upper_fy,0.0066535999067127705 +karman_re200,sr,67,26.8,force,lower_fx,-0.0014051150064915419 +karman_re200,sr,67,26.8,force,lower_fy,-0.0062828827649354935 +karman_re200,sr,68,27.2,force,front_fx,-0.0006687205168418586 +karman_re200,sr,68,27.2,force,front_fy,-0.004944287706166506 +karman_re200,sr,68,27.2,force,upper_fx,0.004619779996573925 +karman_re200,sr,68,27.2,force,upper_fy,0.006814058404415846 +karman_re200,sr,68,27.2,force,lower_fx,-0.003241832833737135 +karman_re200,sr,68,27.2,force,lower_fy,-0.005066968034952879 +karman_re200,sr,69,27.6,force,front_fx,0.0016375184059143066 +karman_re200,sr,69,27.6,force,front_fy,-0.0037650233134627342 +karman_re200,sr,69,27.6,force,upper_fx,0.005902134347707033 +karman_re200,sr,69,27.6,force,upper_fy,0.006656938698142767 +karman_re200,sr,69,27.6,force,lower_fx,-0.005742668639868498 +karman_re200,sr,69,27.6,force,lower_fy,-0.003223086940124631 +karman_re200,sr,70,28.0,force,front_fx,0.0033366240095347166 +karman_re200,sr,70,28.0,force,front_fy,-0.0014200572622939944 +karman_re200,sr,70,28.0,force,upper_fx,0.0055555980652570724 +karman_re200,sr,70,28.0,force,upper_fy,0.006129445042461157 +karman_re200,sr,70,28.0,force,lower_fx,-0.008298727683722973 +karman_re200,sr,70,28.0,force,lower_fy,-0.0019731351640075445 +karman_re200,sr,71,28.4,force,front_fx,0.003372200531885028 +karman_re200,sr,71,28.4,force,front_fy,0.0013931025750935078 +karman_re200,sr,71,28.4,force,upper_fx,0.004082473460584879 +karman_re200,sr,71,28.4,force,upper_fy,0.005613572429865599 +karman_re200,sr,71,28.4,force,lower_fx,-0.009237566031515598 +karman_re200,sr,71,28.4,force,lower_fy,-0.0024625929072499275 +karman_re200,sr,72,28.8,force,front_fx,0.0016190202441066504 +karman_re200,sr,72,28.8,force,front_fy,0.0035078024957329035 +karman_re200,sr,72,28.8,force,upper_fx,0.0027978194411844015 +karman_re200,sr,72,28.8,force,upper_fy,0.005373919382691383 +karman_re200,sr,72,28.8,force,lower_fx,-0.0074699800461530685 +karman_re200,sr,72,28.8,force,lower_fy,-0.004424570593982935 +karman_re200,sr,73,29.2,force,front_fx,-0.0007380008464679122 +karman_re200,sr,73,29.2,force,front_fy,0.004760819487273693 +karman_re200,sr,73,29.2,force,upper_fx,0.0015337351942434907 +karman_re200,sr,73,29.2,force,upper_fy,0.0058202845975756645 +karman_re200,sr,73,29.2,force,lower_fx,-0.0036147930659353733 +karman_re200,sr,73,29.2,force,lower_fy,-0.006305753719061613 +karman_re200,sr,74,29.6,force,front_fx,-0.0022195095662027597 +karman_re200,sr,74,29.6,force,front_fy,0.005234306678175926 +karman_re200,sr,74,29.6,force,upper_fx,2.0918047084705904e-05 +karman_re200,sr,74,29.6,force,upper_fy,0.00653928704559803 +karman_re200,sr,74,29.6,force,lower_fx,0.00011065086437156424 +karman_re200,sr,74,29.6,force,lower_fy,-0.006746439728885889 +karman_re200,sr,75,30.0,force,front_fx,-0.0021290744189172983 +karman_re200,sr,75,30.0,force,front_fy,0.005168554838746786 +karman_re200,sr,75,30.0,force,upper_fx,-0.0015155354049056768 +karman_re200,sr,75,30.0,force,upper_fy,0.006369016133248806 +karman_re200,sr,75,30.0,force,lower_fx,0.0026911029126495123 +karman_re200,sr,75,30.0,force,lower_fy,-0.006776259746402502 +karman_re200,sr,76,30.4,force,front_fx,-0.0005214986158534884 +karman_re200,sr,76,30.4,force,front_fy,0.004808058030903339 +karman_re200,sr,76,30.4,force,upper_fx,-0.0034272230695933104 +karman_re200,sr,76,30.4,force,upper_fy,0.004986526910215616 +karman_re200,sr,76,30.4,force,lower_fx,0.004744742996990681 +karman_re200,sr,76,30.4,force,lower_fy,-0.006897017825394869 +karman_re200,sr,77,30.8,force,front_fx,0.0017952814232558012 +karman_re200,sr,77,30.8,force,front_fy,0.0034987875260412693 +karman_re200,sr,77,30.8,force,upper_fx,-0.00596485985442996 +karman_re200,sr,77,30.8,force,upper_fy,0.0031136558391153812 +karman_re200,sr,77,30.8,force,lower_fx,0.005924145691096783 +karman_re200,sr,77,30.8,force,lower_fy,-0.00664943503215909 +karman_re200,sr,78,31.2,force,front_fx,0.003342395182698965 +karman_re200,sr,78,31.2,force,front_fy,0.001097366912290454 +karman_re200,sr,78,31.2,force,upper_fx,-0.008379530161619186 +karman_re200,sr,78,31.2,force,upper_fy,0.0020557569805532694 +karman_re200,sr,78,31.2,force,lower_fx,0.005458622705191374 +karman_re200,sr,78,31.2,force,lower_fy,-0.006095500197261572 +karman_re200,sr,79,31.6,force,front_fx,0.003193985903635621 +karman_re200,sr,79,31.6,force,front_fy,-0.0016683514695614576 +karman_re200,sr,79,31.6,force,upper_fx,-0.008982982486486435 +karman_re200,sr,79,31.6,force,upper_fy,0.002737422939389944 +karman_re200,sr,79,31.6,force,lower_fx,0.003964811097830534 +karman_re200,sr,79,31.6,force,lower_fy,-0.005611185450106859 +karman_re200,sr,80,32.0,force,front_fx,0.001307294238358736 +karman_re200,sr,80,32.0,force,front_fy,-0.003675741609185934 +karman_re200,sr,80,32.0,force,upper_fx,-0.006976246368139982 +karman_re200,sr,80,32.0,force,upper_fy,0.004662047140300274 +karman_re200,sr,80,32.0,force,lower_fx,0.002662863116711378 +karman_re200,sr,80,32.0,force,lower_fy,-0.005429865326732397 +karman_re200,sr,81,32.4,force,front_fx,-0.0010037077590823174 +karman_re200,sr,81,32.4,force,front_fy,-0.004839936271309853 +karman_re200,sr,81,32.4,force,upper_fx,-0.0031779601704329252 +karman_re200,sr,81,32.4,force,upper_fy,0.006300157867372036 +karman_re200,sr,81,32.4,force,lower_fx,0.0013271570205688477 +karman_re200,sr,81,32.4,force,lower_fy,-0.005894241854548454 +karman_re200,sr,82,32.8,force,front_fx,-0.002322146203368902 +karman_re200,sr,82,32.8,force,front_fy,-0.005242658779025078 +karman_re200,sr,82,32.8,force,upper_fx,0.00035271598608233035 +karman_re200,sr,82,32.8,force,upper_fy,0.006629261188209057 +karman_re200,sr,82,32.8,force,lower_fx,-0.00017822007066570222 +karman_re200,sr,82,32.8,force,lower_fy,-0.006500012241303921 +karman_re200,sr,83,33.2,force,front_fx,-0.0020085731521248817 +karman_re200,sr,83,33.2,force,front_fy,-0.005163476336747408 +karman_re200,sr,83,33.2,force,upper_fx,0.0028879845049232244 +karman_re200,sr,83,33.2,force,upper_fy,0.006694272626191378 +karman_re200,sr,83,33.2,force,lower_fx,-0.0016977780032902956 +karman_re200,sr,83,33.2,force,lower_fy,-0.006165951024740934 +karman_re200,sr,84,33.6,force,front_fx,-0.00027450817287899554 +karman_re200,sr,84,33.6,force,front_fy,-0.004763579461723566 +karman_re200,sr,84,33.6,force,upper_fx,0.004940565675497055 +karman_re200,sr,84,33.6,force,upper_fy,0.006839124485850334 +karman_re200,sr,84,33.6,force,lower_fx,-0.003652922110632062 +karman_re200,sr,84,33.6,force,lower_fy,-0.004738520830869675 +karman_re200,sr,85,34.0,force,front_fx,0.0020390739664435387 +karman_re200,sr,85,34.0,force,front_fy,-0.0033190434332937002 +karman_re200,sr,85,34.0,force,upper_fx,0.005964534357190132 +karman_re200,sr,85,34.0,force,upper_fy,0.006578217726200819 +karman_re200,sr,85,34.0,force,lower_fx,-0.006225563120096922 +karman_re200,sr,85,34.0,force,lower_fy,-0.0029337825253605843 +karman_re200,sr,86,34.4,force,front_fx,0.0034001334570348263 +karman_re200,sr,86,34.4,force,front_fy,-0.0008009342709556222 +karman_re200,sr,86,34.4,force,upper_fx,0.005295220762491226 +karman_re200,sr,86,34.4,force,upper_fy,0.006039241328835487 +karman_re200,sr,86,34.4,force,lower_fx,-0.008550334721803665 +karman_re200,sr,86,34.4,force,lower_fy,-0.002024896675720811 +karman_re200,sr,87,34.8,force,front_fx,0.0030564258340746164 +karman_re200,sr,87,34.8,force,front_fy,0.001937911263667047 +karman_re200,sr,87,34.8,force,upper_fx,0.0037709304597228765 +karman_re200,sr,87,34.8,force,upper_fy,0.0055451965890824795 +karman_re200,sr,87,34.8,force,lower_fx,-0.008937066420912743 +karman_re200,sr,87,34.8,force,lower_fy,-0.0028206021524965763 +karman_re200,sr,88,35.2,force,front_fx,0.001041344366967678 +karman_re200,sr,88,35.2,force,front_fy,0.0038485622499138117 +karman_re200,sr,88,35.2,force,upper_fx,0.0025154692120850086 +karman_re200,sr,88,35.2,force,upper_fy,0.005413368344306946 +karman_re200,sr,88,35.2,force,lower_fx,-0.006699700839817524 +karman_re200,sr,88,35.2,force,lower_fy,-0.0048175593838095665 +karman_re200,sr,89,35.6,force,front_fx,-0.0011974037624895573 +karman_re200,sr,89,35.6,force,front_fy,0.004934422206133604 +karman_re200,sr,89,35.6,force,upper_fx,0.001193253556266427 +karman_re200,sr,89,35.6,force,upper_fy,0.005950950551778078 +karman_re200,sr,89,35.6,force,lower_fx,-0.0027904706075787544 +karman_re200,sr,89,35.6,force,lower_fy,-0.006405849941074848 +karman_re200,sr,90,36.0,force,front_fx,-0.0023582892026752234 +karman_re200,sr,90,36.0,force,front_fy,0.00526112737134099 +karman_re200,sr,90,36.0,force,upper_fx,-0.00030122033786028624 +karman_re200,sr,90,36.0,force,upper_fy,0.006546535529196262 +karman_re200,sr,90,36.0,force,lower_fx,0.0006792457425035536 +karman_re200,sr,90,36.0,force,lower_fy,-0.006714118644595146 +karman_re200,sr,91,36.4,force,front_fx,-0.0018754517659544945 +karman_re200,sr,91,36.4,force,front_fy,0.005158415995538235 +karman_re200,sr,91,36.4,force,upper_fx,-0.001872277702204883 +karman_re200,sr,91,36.4,force,upper_fy,0.0061197709292173386 +karman_re200,sr,91,36.4,force,lower_fx,0.003136442508548498 +karman_re200,sr,91,36.4,force,lower_fy,-0.006800536997616291 +karman_re200,sr,92,36.8,force,front_fx,-3.282457328168675e-05 +karman_re200,sr,92,36.8,force,front_fy,0.004655432887375355 +karman_re200,sr,92,36.8,force,upper_fx,-0.00392344081774354 +karman_re200,sr,92,36.8,force,upper_fy,0.0045908354222774506 +karman_re200,sr,92,36.8,force,lower_fx,0.005075064487755299 +karman_re200,sr,92,36.8,force,lower_fy,-0.006879012566059828 +karman_re200,sr,93,37.2,force,front_fx,0.002247903496026993 +karman_re200,sr,93,37.2,force,front_fy,0.00304606556892395 +karman_re200,sr,93,37.2,force,upper_fx,-0.006527651567012072 +karman_re200,sr,93,37.2,force,upper_fy,0.0027796421200037003 +karman_re200,sr,93,37.2,force,lower_fx,0.005911560263484716 +karman_re200,sr,93,37.2,force,lower_fy,-0.006521061062812805 +karman_re200,sr,94,37.6,force,front_fx,0.003422754118219018 +karman_re200,sr,94,37.6,force,front_fy,0.00044544608681462705 +karman_re200,sr,94,37.6,force,upper_fx,-0.008679812774062157 +karman_re200,sr,94,37.6,force,upper_fy,0.00205758074298501 +karman_re200,sr,94,37.6,force,lower_fx,0.005116953980177641 +karman_re200,sr,94,37.6,force,lower_fy,-0.005975519306957722 +karman_re200,sr,95,38.0,force,front_fx,0.002869147341698408 +karman_re200,sr,95,38.0,force,front_fy,-0.002219213405624032 +karman_re200,sr,95,38.0,force,upper_fx,-0.008721339516341686 +karman_re200,sr,95,38.0,force,upper_fy,0.003094022860750556 +karman_re200,sr,95,38.0,force,lower_fx,0.0036262767389416695 +karman_re200,sr,95,38.0,force,lower_fy,-0.005529697984457016 +karman_re200,sr,96,38.4,force,front_fx,0.000731364416424185 +karman_re200,sr,96,38.4,force,front_fy,-0.004021266475319862 +karman_re200,sr,96,38.4,force,upper_fx,-0.006185459438711405 +karman_re200,sr,96,38.4,force,upper_fy,0.0051591419614851475 +karman_re200,sr,96,38.4,force,lower_fx,0.002386210486292839 +karman_re200,sr,96,38.4,force,lower_fy,-0.005499448627233505 +karman_re200,sr,97,38.8,force,front_fx,-0.001431578304618597 +karman_re200,sr,97,38.8,force,front_fy,-0.005001596640795469 +karman_re200,sr,97,38.8,force,upper_fx,-0.0022823119070380926 +karman_re200,sr,97,38.8,force,upper_fy,0.006528944242745638 +karman_re200,sr,97,38.8,force,lower_fx,0.0009937516879290342 +karman_re200,sr,97,38.8,force,lower_fy,-0.006087080109864473 +karman_re200,sr,98,39.2,force,front_fx,-0.0024066471960395575 +karman_re200,sr,98,39.2,force,front_fy,-0.005238695535808802 +karman_re200,sr,98,39.2,force,upper_fx,0.0009879926219582558 +karman_re200,sr,98,39.2,force,upper_fy,0.006695706397294998 +karman_re200,sr,98,39.2,force,lower_fx,-0.0005216283607296646 +karman_re200,sr,98,39.2,force,lower_fy,-0.0065582082606852055 +karman_re200,sr,99,39.6,force,front_fx,-0.00172459299210459 +karman_re200,sr,99,39.6,force,front_fy,-0.0051064519211649895 +karman_re200,sr,99,39.6,force,upper_fx,0.003363842610269785 +karman_re200,sr,99,39.6,force,upper_fy,0.006768110208213329 +karman_re200,sr,99,39.6,force,lower_fx,-0.0021081650629639626 +karman_re200,sr,99,39.6,force,lower_fy,-0.005926087964326143 +karman_re200,sr,100,40.0,force,front_fx,0.00022800381702836603 +karman_re200,sr,100,40.0,force,front_fy,-0.004529268946498632 +karman_re200,sr,100,40.0,force,upper_fx,0.005251613911241293 +karman_re200,sr,100,40.0,force,upper_fy,0.006824346724897623 +karman_re200,sr,100,40.0,force,lower_fx,-0.00419645057991147 +karman_re200,sr,100,40.0,force,lower_fy,-0.004307991359382868 +karman_re200,sr,101,40.4,force,front_fx,0.0024726754054427147 +karman_re200,sr,101,40.4,force,front_fy,-0.0028070469852536917 +karman_re200,sr,101,40.4,force,upper_fx,0.0059106433764100075 +karman_re200,sr,101,40.4,force,upper_fy,0.006454838905483484 +karman_re200,sr,101,40.4,force,lower_fx,-0.006804638542234898 +karman_re200,sr,101,40.4,force,lower_fy,-0.0025885736104100943 +karman_re200,sr,102,40.8,force,front_fx,0.003465102519840002 +karman_re200,sr,102,40.8,force,front_fy,-0.0001425527734681964 +karman_re200,sr,102,40.8,force,upper_fx,0.004936027340590954 +karman_re200,sr,102,40.8,force,upper_fy,0.005923382472246885 +karman_re200,sr,102,40.8,force,lower_fx,-0.008801773190498352 +karman_re200,sr,102,40.8,force,lower_fy,-0.0020865865517407656 +karman_re200,sr,103,41.2,force,front_fx,0.0026956037618219852 +karman_re200,sr,103,41.2,force,front_fy,0.0024449294432997704 +karman_re200,sr,103,41.2,force,upper_fx,0.0034306130837649107 +karman_re200,sr,103,41.2,force,upper_fy,0.005468228831887245 +karman_re200,sr,103,41.2,force,lower_fx,-0.008573752827942371 +karman_re200,sr,103,41.2,force,lower_fy,-0.003255340736359358 +karman_re200,sr,104,41.6,force,front_fx,0.00045648973900824785 +karman_re200,sr,104,41.6,force,front_fy,0.004155247006565332 +karman_re200,sr,104,41.6,force,upper_fx,0.0021971939131617546 +karman_re200,sr,104,41.6,force,upper_fy,0.005476879887282848 +karman_re200,sr,104,41.6,force,lower_fx,-0.005801085382699966 +karman_re200,sr,104,41.6,force,lower_fy,-0.005307467188686132 +karman_re200,sr,105,42.0,force,front_fx,-0.001595967449247837 +karman_re200,sr,105,42.0,force,front_fy,0.005056135822087526 +karman_re200,sr,105,42.0,force,upper_fx,0.0008017882937565446 +karman_re200,sr,105,42.0,force,upper_fy,0.006096046417951584 +karman_re200,sr,105,42.0,force,lower_fx,-0.001852746936492622 +karman_re200,sr,105,42.0,force,lower_fy,-0.00651202630251646 +karman_re200,sr,106,42.4,force,front_fx,-0.0023907364811748266 +karman_re200,sr,106,42.4,force,front_fy,0.005254419986158609 +karman_re200,sr,106,42.4,force,upper_fx,-0.000685541657730937 +karman_re200,sr,106,42.4,force,upper_fy,0.006504898890852928 +karman_re200,sr,106,42.4,force,lower_fx,0.0013302718289196491 +karman_re200,sr,106,42.4,force,lower_fy,-0.006667453795671463 +karman_re200,sr,107,42.8,force,front_fx,-0.0015187588287517428 +karman_re200,sr,107,42.8,force,front_fy,0.005099079106003046 +karman_re200,sr,107,42.8,force,upper_fx,-0.002305444097146392 +karman_re200,sr,107,42.8,force,upper_fy,0.005783951375633478 +karman_re200,sr,107,42.8,force,lower_fx,0.003660145914182067 +karman_re200,sr,107,42.8,force,lower_fy,-0.006803248543292284 +karman_re200,sr,108,43.2,force,front_fx,0.0005328600527718663 +karman_re200,sr,108,43.2,force,front_fy,0.004408014006912708 +karman_re200,sr,108,43.2,force,upper_fx,-0.004511477891355753 +karman_re200,sr,108,43.2,force,upper_fy,0.0041136471554636955 +karman_re200,sr,108,43.2,force,lower_fx,0.005428686738014221 +karman_re200,sr,108,43.2,force,lower_fy,-0.00682794488966465 +karman_re200,sr,109,43.6,force,front_fx,0.002694046590477228 +karman_re200,sr,109,43.6,force,front_fy,0.002512026811018586 +karman_re200,sr,109,43.6,force,upper_fx,-0.007161065470427275 +karman_re200,sr,109,43.6,force,upper_fy,0.0024260003119707108 +karman_re200,sr,109,43.6,force,lower_fx,0.005861963145434856 +karman_re200,sr,109,43.6,force,lower_fy,-0.006389909889549017 +karman_re200,sr,110,44.0,force,front_fx,0.003473636694252491 +karman_re200,sr,110,44.0,force,front_fy,-0.0002168966893805191 +karman_re200,sr,110,44.0,force,upper_fx,-0.008978109806776047 +karman_re200,sr,110,44.0,force,upper_fy,0.002106543630361557 +karman_re200,sr,110,44.0,force,lower_fx,0.004747376777231693 +karman_re200,sr,110,44.0,force,lower_fy,-0.005844199564307928 +karman_re200,sr,111,44.4,force,front_fx,0.0024915924295783043 +karman_re200,sr,111,44.4,force,front_fy,-0.0027174195274710655 +karman_re200,sr,111,44.4,force,upper_fx,-0.008410024456679821 +karman_re200,sr,111,44.4,force,upper_fy,0.003492753254249692 +karman_re200,sr,111,44.4,force,lower_fx,0.00329785980284214 +karman_re200,sr,111,44.4,force,lower_fy,-0.005436094477772713 +karman_re200,sr,112,44.8,force,front_fx,0.0001844750513555482 +karman_re200,sr,112,44.8,force,front_fy,-0.00431724451482296 +karman_re200,sr,112,44.8,force,upper_fx,-0.00533631443977356 +karman_re200,sr,112,44.8,force,upper_fy,0.005620424635708332 +karman_re200,sr,112,44.8,force,lower_fx,0.002090267138555646 +karman_re200,sr,112,44.8,force,lower_fy,-0.005564309190958738 +karman_re200,sr,113,45.2,force,front_fx,-0.0017664809711277485 +karman_re200,sr,113,45.2,force,front_fy,-0.0051193805411458015 +karman_re200,sr,113,45.2,force,upper_fx,-0.0013741037109866738 +karman_re200,sr,113,45.2,force,upper_fy,0.0066624851897358894 +karman_re200,sr,113,45.2,force,lower_fx,0.0006496031419374049 +karman_re200,sr,113,45.2,force,lower_fy,-0.006253099534660578 +karman_re200,sr,114,45.6,force,front_fx,-0.002388045657426119 +karman_re200,sr,114,45.6,force,front_fy,-0.0052313003689050674 +karman_re200,sr,114,45.6,force,upper_fx,0.001638732966966927 +karman_re200,sr,114,45.6,force,upper_fy,0.006724858190864325 +karman_re200,sr,114,45.6,force,lower_fx,-0.0008683778578415513 +karman_re200,sr,114,45.6,force,lower_fy,-0.006552551407366991 +karman_re200,sr,115,46.0,force,front_fx,-0.0013444737996906042 +karman_re200,sr,115,46.0,force,front_fy,-0.005041273310780525 +karman_re200,sr,115,46.0,force,upper_fx,0.0038801925256848335 +karman_re200,sr,115,46.0,force,upper_fy,0.006827884819358587 +karman_re200,sr,115,46.0,force,lower_fx,-0.002546256175264716 +karman_re200,sr,115,46.0,force,lower_fy,-0.005635270848870277 +karman_re200,sr,116,46.4,force,front_fx,0.0007947850390337408 +karman_re200,sr,116,46.4,force,front_fy,-0.004231804516166449 +karman_re200,sr,116,46.4,force,upper_fx,0.005559137091040611 +karman_re200,sr,116,46.4,force,upper_fy,0.00678767915815115 +karman_re200,sr,116,46.4,force,lower_fx,-0.0048127504996955395 +karman_re200,sr,116,46.4,force,lower_fy,-0.0038705405313521624 +karman_re200,sr,117,46.8,force,front_fx,0.0028779865242540836 +karman_re200,sr,117,46.8,force,front_fy,-0.0022341751027852297 +karman_re200,sr,117,46.8,force,upper_fx,0.0058180405758321285 +karman_re200,sr,117,46.8,force,upper_fy,0.006323959678411484 +karman_re200,sr,117,46.8,force,lower_fx,-0.007430371828377247 +karman_re200,sr,117,46.8,force,lower_fy,-0.0022976030595600605 +karman_re200,sr,118,47.2,force,front_fx,0.003467754926532507 +karman_re200,sr,118,47.2,force,front_fy,0.0005238971207290888 +karman_re200,sr,118,47.2,force,upper_fx,0.004589585587382317 +karman_re200,sr,118,47.2,force,upper_fy,0.005804610904306173 +karman_re200,sr,118,47.2,force,lower_fx,-0.00901719368994236 +karman_re200,sr,118,47.2,force,lower_fy,-0.002231770195066929 +karman_re200,sr,119,47.6,force,front_fx,0.0022696673404425383 +karman_re200,sr,119,47.6,force,front_fy,0.0029270437080413103 +karman_re200,sr,119,47.6,force,upper_fx,0.003152509219944477 +karman_re200,sr,119,47.6,force,upper_fy,0.0054268185049295425 +karman_re200,sr,119,47.6,force,lower_fx,-0.008133570663630962 +karman_re200,sr,119,47.6,force,lower_fy,-0.003756278194487095 +karman_re200,sr,120,48.0,force,front_fx,-9.266855340683833e-05 +karman_re200,sr,120,48.0,force,front_fy,0.004427038598805666 +karman_re200,sr,120,48.0,force,upper_fx,0.0019080383935943246 +karman_re200,sr,120,48.0,force,upper_fy,0.005607201252132654 +karman_re200,sr,120,48.0,force,lower_fx,-0.0048741865903139114 +karman_re200,sr,120,48.0,force,lower_fy,-0.005776692181825638 +karman_re200,sr,121,48.4,force,front_fx,-0.0019272868521511555 +karman_re200,sr,121,48.4,force,front_fy,0.005143491551280022 +karman_re200,sr,121,48.4,force,upper_fx,0.0004446236416697502 +karman_re200,sr,121,48.4,force,upper_fy,0.006282661575824022 +karman_re200,sr,121,48.4,force,lower_fx,-0.0009827730245888233 +karman_re200,sr,121,48.4,force,lower_fy,-0.006600604858249426 +karman_re200,sr,122,48.8,force,front_fx,-0.002342135412618518 +karman_re200,sr,122,48.8,force,front_fy,0.005213798489421606 +karman_re200,sr,122,48.8,force,upper_fx,-0.0010390187380835414 +karman_re200,sr,122,48.8,force,upper_fy,0.006455508526414633 +karman_re200,sr,122,48.8,force,lower_fx,0.0019241553964093328 +karman_re200,sr,122,48.8,force,lower_fy,-0.006658796686679125 +karman_re200,sr,123,49.2,force,front_fx,-0.0011282168561592698 +karman_re200,sr,123,49.2,force,front_fy,0.005003843456506729 +karman_re200,sr,123,49.2,force,upper_fx,-0.0027492856606841087 +karman_re200,sr,123,49.2,force,upper_fy,0.005440047010779381 +karman_re200,sr,123,49.2,force,lower_fx,0.004146547522395849 +karman_re200,sr,123,49.2,force,lower_fy,-0.006820310838520527 +karman_re200,sr,124,49.6,force,front_fx,0.0010796881979331374 +karman_re200,sr,124,49.6,force,front_fy,0.004077049903571606 +karman_re200,sr,124,49.6,force,upper_fx,-0.005100095644593239 +karman_re200,sr,124,49.6,force,upper_fy,0.0036644702777266502 +karman_re200,sr,124,49.6,force,lower_fx,0.0057119750417768955 +karman_re200,sr,124,49.6,force,lower_fy,-0.006762480363249779 +karman_re200,sr,125,50.0,force,front_fx,0.003027866827324033 +karman_re200,sr,125,50.0,force,front_fy,0.0019478641916066408 +karman_re200,sr,125,50.0,force,upper_fx,-0.007718256674706936 +karman_re200,sr,125,50.0,force,upper_fy,0.0021905198227614164 +karman_re200,sr,125,50.0,force,lower_fx,0.005740901920944452 +karman_re200,sr,125,50.0,force,lower_fy,-0.006263189483433962 +karman_re200,sr,126,50.4,force,front_fx,0.0034222202375531197 +karman_re200,sr,126,50.4,force,front_fy,-0.0008495529182255268 +karman_re200,sr,126,50.4,force,upper_fx,-0.009097520262002945 +karman_re200,sr,126,50.4,force,upper_fy,0.0022742203436791897 +karman_re200,sr,126,50.4,force,lower_fx,0.004393673036247492 +karman_re200,sr,126,50.4,force,lower_fy,-0.0057251835241913795 +karman_re200,sr,127,50.8,force,front_fx,0.002031792653724551 +karman_re200,sr,127,50.8,force,front_fy,-0.003151141107082367 +karman_re200,sr,127,50.8,force,upper_fx,-0.00792672298848629 +karman_re200,sr,127,50.8,force,upper_fy,0.003920086193829775 +karman_re200,sr,127,50.8,force,lower_fx,0.0030061472207307816 +karman_re200,sr,127,50.8,force,lower_fy,-0.005378263536840677 +karman_re200,sr,128,51.2,force,front_fx,-0.0003360464470461011 +karman_re200,sr,128,51.2,force,front_fy,-0.0045665293000638485 +karman_re200,sr,128,51.2,force,upper_fx,-0.004455895628780127 +karman_re200,sr,128,51.2,force,upper_fy,0.00594862038269639 +karman_re200,sr,128,51.2,force,lower_fx,0.0017789480043575168 +karman_re200,sr,128,51.2,force,lower_fy,-0.005656843073666096 +karman_re200,sr,129,51.6,force,front_fx,-0.0020438379142433405 +karman_re200,sr,129,51.6,force,front_fy,-0.0052034128457307816 +karman_re200,sr,129,51.6,force,upper_fx,-0.0005860000383108854 +karman_re200,sr,129,51.6,force,upper_fy,0.006684176158159971 +karman_re200,sr,129,51.6,force,lower_fx,0.00030938920099288225 +karman_re200,sr,129,51.6,force,lower_fy,-0.0063750906847417355 +karman_re200,sr,130,52.0,force,front_fx,-0.002276776358485222 +karman_re200,sr,130,52.0,force,front_fy,-0.0052239662036299706 +karman_re200,sr,130,52.0,force,upper_fx,0.0022064526565372944 +karman_re200,sr,130,52.0,force,upper_fy,0.006735525093972683 +karman_re200,sr,130,52.0,force,lower_fx,-0.0012039702851325274 +karman_re200,sr,130,52.0,force,lower_fy,-0.006451043300330639 +karman_re200,sr,131,52.4,force,front_fx,-0.0009106219513341784 +karman_re200,sr,131,52.4,force,front_fy,-0.004960144869983196 +karman_re200,sr,131,52.4,force,upper_fx,0.004350991453975439 +karman_re200,sr,131,52.4,force,upper_fy,0.006860896944999695 +karman_re200,sr,131,52.4,force,lower_fx,-0.0030003299470990896 +karman_re200,sr,131,52.4,force,lower_fy,-0.005299098324030638 +karman_re200,sr,132,52.8,force,front_fx,0.0013541362714022398 +karman_re200,sr,132,52.8,force,front_fy,-0.003874867921695113 +karman_re200,sr,132,52.8,force,upper_fx,0.005773446056991816 +karman_re200,sr,132,52.8,force,upper_fy,0.00671091815456748 +karman_re200,sr,132,52.8,force,lower_fx,-0.00542553560808301 +karman_re200,sr,132,52.8,force,lower_fy,-0.0034566724207252264 +karman_re200,sr,133,53.2,force,front_fx,0.0031694015488028526 +karman_re200,sr,133,53.2,force,front_fy,-0.001627519610337913 +karman_re200,sr,133,53.2,force,upper_fx,0.005637295078486204 +karman_re200,sr,133,53.2,force,upper_fy,0.006192943546921015 +karman_re200,sr,133,53.2,force,lower_fx,-0.007976610213518143 +karman_re200,sr,133,53.2,force,lower_fy,-0.002120002405717969 +karman_re200,sr,134,53.6,force,front_fx,0.003354765474796295 +karman_re200,sr,134,53.6,force,front_fy,0.0011644820915535092 +karman_re200,sr,134,53.6,force,upper_fx,0.004245867487043142 +karman_re200,sr,134,53.6,force,upper_fy,0.005698087625205517 +karman_re200,sr,134,53.6,force,lower_fx,-0.00907184462994337 +karman_re200,sr,134,53.6,force,lower_fy,-0.002466444857418537 +karman_re200,sr,135,54.0,force,front_fx,0.0017608606722205877 +karman_re200,sr,135,54.0,force,front_fy,0.00336793577298522 +karman_re200,sr,135,54.0,force,upper_fx,0.002897438360378146 +karman_re200,sr,135,54.0,force,upper_fy,0.0054260073229670525 +karman_re200,sr,135,54.0,force,lower_fx,-0.007563209161162376 +karman_re200,sr,135,54.0,force,lower_fy,-0.004269670695066452 +karman_re200,sr,136,54.4,force,front_fx,-0.0006104079075157642 +karman_re200,sr,136,54.4,force,front_fy,0.004676375538110733 +karman_re200,sr,136,54.4,force,upper_fx,0.0016157287172973156 +karman_re200,sr,136,54.4,force,upper_fy,0.005780689883977175 +karman_re200,sr,136,54.4,force,lower_fx,-0.003953351639211178 +karman_re200,sr,136,54.4,force,lower_fy,-0.006150328554213047 +karman_re200,sr,137,54.8,force,front_fx,-0.0021836974192410707 +karman_re200,sr,137,54.8,force,front_fy,0.005205358844250441 +karman_re200,sr,137,54.8,force,upper_fx,0.00011230653035454452 +karman_re200,sr,137,54.8,force,upper_fy,0.006453352980315685 +karman_re200,sr,137,54.8,force,lower_fx,-0.00022678593813907355 +karman_re200,sr,137,54.8,force,lower_fy,-0.006670717149972916 +karman_re200,sr,138,55.2,force,front_fx,-0.0022094803862273693 +karman_re200,sr,138,55.2,force,front_fy,0.005181219428777695 +karman_re200,sr,138,55.2,force,upper_fx,-0.0013897423632442951 +karman_re200,sr,138,55.2,force,upper_fy,0.006349900737404823 +karman_re200,sr,138,55.2,force,lower_fx,0.002442160854116082 +karman_re200,sr,138,55.2,force,lower_fy,-0.006703336723148823 +karman_re200,sr,139,55.6,force,front_fx,-0.0007040365017019212 +karman_re200,sr,139,55.6,force,front_fy,0.004875027108937502 +karman_re200,sr,139,55.6,force,upper_fx,-0.0032192040234804153 +karman_re200,sr,139,55.6,force,upper_fy,0.005081049632281065 +karman_re200,sr,139,55.6,force,lower_fx,0.004565337672829628 +karman_re200,sr,139,55.6,force,lower_fy,-0.006845608353614807 +karman_re200,sr,140,56.0,force,front_fx,0.0015879805432632565 +karman_re200,sr,140,56.0,force,front_fy,0.003670098725706339 +karman_re200,sr,140,56.0,force,upper_fx,-0.005683903116732836 +karman_re200,sr,140,56.0,force,upper_fy,0.0032551861368119717 +karman_re200,sr,140,56.0,force,lower_fx,0.00586339645087719 +karman_re200,sr,140,56.0,force,lower_fy,-0.006675580516457558 +karman_re200,sr,141,56.4,force,front_fx,0.0032496540807187557 +karman_re200,sr,141,56.4,force,front_fy,0.0013378969160839915 +karman_re200,sr,141,56.4,force,upper_fx,-0.008161109872162342 +karman_re200,sr,141,56.4,force,upper_fy,0.0020800733473151922 +karman_re200,sr,141,56.4,force,lower_fx,0.00551513722166419 +karman_re200,sr,141,56.4,force,lower_fy,-0.0061383782885968685 +karman_re200,sr,142,56.8,force,front_fx,0.003250330686569214 +karman_re200,sr,142,56.8,force,front_fy,-0.0014472946058958769 +karman_re200,sr,142,56.8,force,upper_fx,-0.009013128466904163 +karman_re200,sr,142,56.8,force,upper_fy,0.002556913299486041 +karman_re200,sr,142,56.8,force,lower_fx,0.0040388330817222595 +karman_re200,sr,142,56.8,force,lower_fy,-0.005624223500490189 +karman_re200,sr,143,57.2,force,front_fx,0.0014963981229811907 +karman_re200,sr,143,57.2,force,front_fy,-0.0035334781277924776 +karman_re200,sr,143,57.2,force,upper_fx,-0.007262255996465683 +karman_re200,sr,143,57.2,force,upper_fy,0.0043945880606770515 +karman_re200,sr,143,57.2,force,lower_fx,0.002719783689826727 +karman_re200,sr,143,57.2,force,lower_fy,-0.005370436701923609 +karman_re200,sr,144,57.6,force,front_fx,-0.0008331950521096587 +karman_re200,sr,144,57.6,force,front_fy,-0.004788460209965706 +karman_re200,sr,144,57.6,force,upper_fx,-0.003539072349667549 +karman_re200,sr,144,57.6,force,upper_fy,0.006184763740748167 +karman_re200,sr,144,57.6,force,lower_fx,0.0014378135092556477 +karman_re200,sr,144,57.6,force,lower_fy,-0.005785752087831497 +karman_re200,sr,145,58.0,force,front_fx,-0.002253400394693017 +karman_re200,sr,145,58.0,force,front_fy,-0.005244840402156115 +karman_re200,sr,145,58.0,force,upper_fx,0.00012182260252302513 +karman_re200,sr,145,58.0,force,upper_fy,0.006659411825239658 +karman_re200,sr,145,58.0,force,lower_fx,-4.434464790392667e-05 +karman_re200,sr,145,58.0,force,lower_fy,-0.00644853338599205 +karman_re200,sr,146,58.4,force,front_fx,-0.0020778982434421778 +karman_re200,sr,146,58.4,force,front_fy,-0.005196539685130119 +karman_re200,sr,146,58.4,force,upper_fx,0.002727457322180271 +karman_re200,sr,146,58.4,force,upper_fy,0.006736666429787874 +karman_re200,sr,146,58.4,force,lower_fx,-0.0015647183172404766 +karman_re200,sr,146,58.4,force,lower_fy,-0.006254137028008699 +karman_re200,sr,147,58.8,force,front_fx,-0.000431001593824476 +karman_re200,sr,147,58.8,force,front_fy,-0.00483515253290534 +karman_re200,sr,147,58.8,force,upper_fx,0.004776778630912304 +karman_re200,sr,147,58.8,force,upper_fy,0.006857657805085182 +karman_re200,sr,147,58.8,force,lower_fx,-0.0034945702645927668 +karman_re200,sr,147,58.8,force,lower_fy,-0.004903364460915327 +karman_re200,sr,148,59.2,force,front_fx,0.0018773594638332725 +karman_re200,sr,148,59.2,force,front_fy,-0.003456889884546399 +karman_re200,sr,148,59.2,force,upper_fx,0.005893008317798376 +karman_re200,sr,148,59.2,force,upper_fy,0.0066094184294342995 +karman_re200,sr,148,59.2,force,lower_fx,-0.0060383910313248634 +karman_re200,sr,148,59.2,force,lower_fy,-0.003054835833609104 +karman_re200,sr,149,59.6,force,front_fx,0.003356335451826453 +karman_re200,sr,149,59.6,force,front_fy,-0.000993050867691636 +karman_re200,sr,149,59.6,force,upper_fx,0.005368608050048351 +karman_re200,sr,149,59.6,force,upper_fy,0.0060626184567809105 +karman_re200,sr,149,59.6,force,lower_fx,-0.008425233885645866 +karman_re200,sr,149,59.6,force,lower_fy,-0.0020299009047448635 +karman_re200,sr,150,60.0,force,front_fx,0.0031331779900938272 +karman_re200,sr,150,60.0,force,front_fy,0.0017795887542888522 +karman_re200,sr,150,60.0,force,upper_fx,0.0038902387022972107 +karman_re200,sr,150,60.0,force,upper_fy,0.0055925678461790085 +karman_re200,sr,150,60.0,force,lower_fx,-0.008974678814411163 +karman_re200,sr,150,60.0,force,lower_fy,-0.002758364425972104 +karman_re200,sr,151,60.4,force,front_fx,0.0012089393567293882 +karman_re200,sr,151,60.4,force,front_fy,0.0037449973169714212 +karman_re200,sr,151,60.4,force,upper_fx,0.0026250563096255064 +karman_re200,sr,151,60.4,force,upper_fy,0.0054407804273068905 +karman_re200,sr,151,60.4,force,lower_fx,-0.006884431466460228 +karman_re200,sr,151,60.4,force,lower_fy,-0.004762824159115553 +karman_re200,sr,152,60.8,force,front_fx,-0.0010771651286631823 +karman_re200,sr,152,60.8,force,front_fy,0.0048773386515676975 +karman_re200,sr,152,60.8,force,upper_fx,0.0012971125543117523 +karman_re200,sr,152,60.8,force,upper_fy,0.0059505184181034565 +karman_re200,sr,152,60.8,force,lower_fx,-0.00303468550555408 +karman_re200,sr,152,60.8,force,lower_fy,-0.0064145419746637344 +karman_re200,sr,153,61.2,force,front_fx,-0.0023432900197803974 +karman_re200,sr,153,61.2,force,front_fy,0.005234013311564922 +karman_re200,sr,153,61.2,force,upper_fx,-0.0002213127736467868 +karman_re200,sr,153,61.2,force,upper_fy,0.006556300912052393 +karman_re200,sr,153,61.2,force,lower_fx,0.00046554231084883213 +karman_re200,sr,153,61.2,force,lower_fy,-0.006717298645526171 +karman_re200,sr,154,61.6,force,front_fx,-0.0019790218211710453 +karman_re200,sr,154,61.6,force,front_fy,0.005136753432452679 +karman_re200,sr,154,61.6,force,upper_fx,-0.0017640276346355677 +karman_re200,sr,154,61.6,force,upper_fy,0.006169666536152363 +karman_re200,sr,154,61.6,force,lower_fx,0.002946066204458475 +karman_re200,sr,154,61.6,force,lower_fy,-0.0067610545083880424 +karman_re200,sr,155,62.0,force,front_fx,-0.00022008869564160705 +karman_re200,sr,155,62.0,force,front_fy,0.0047024814411997795 +karman_re200,sr,155,62.0,force,upper_fx,-0.003738755825906992 +karman_re200,sr,155,62.0,force,upper_fy,0.004687278997153044 +karman_re200,sr,155,62.0,force,lower_fx,0.004944748245179653 +karman_re200,sr,155,62.0,force,lower_fy,-0.006855974905192852 +karman_re200,sr,156,62.4,force,front_fx,0.002082143910229206 +karman_re200,sr,156,62.4,force,front_fy,0.0032074544578790665 +karman_re200,sr,156,62.4,force,upper_fx,-0.0062909978441894054 +karman_re200,sr,156,62.4,force,upper_fy,0.0028736230451613665 +karman_re200,sr,156,62.4,force,lower_fx,0.00591263035312295 +karman_re200,sr,156,62.4,force,lower_fy,-0.006562819704413414 +karman_re200,sr,157,62.8,force,front_fx,0.0033928679767996073 +karman_re200,sr,157,62.8,force,front_fy,0.0006905290647409856 +karman_re200,sr,157,62.8,force,upper_fx,-0.00853769388049841 +karman_re200,sr,157,62.8,force,upper_fy,0.002057473873719573 +karman_re200,sr,157,62.8,force,lower_fx,0.005216337274760008 +karman_re200,sr,157,62.8,force,lower_fy,-0.006013696081936359 +karman_re200,sr,158,63.2,force,front_fx,0.0029769178945571184 +karman_re200,sr,158,63.2,force,front_fy,-0.0020168209448456764 +karman_re200,sr,158,63.2,force,upper_fx,-0.008794775232672691 +karman_re200,sr,158,63.2,force,upper_fy,0.0029345836956053972 +karman_re200,sr,158,63.2,force,lower_fx,0.0036996258422732353 +karman_re200,sr,158,63.2,force,lower_fy,-0.005539958365261555 +karman_re200,sr,159,63.6,force,front_fx,0.0009234236786141992 +karman_re200,sr,159,63.6,force,front_fy,-0.0038787724915891886 +karman_re200,sr,159,63.6,force,upper_fx,-0.006473483983427286 +karman_re200,sr,159,63.6,force,upper_fy,0.00491927657276392 +karman_re200,sr,159,63.6,force,lower_fx,0.0024367929436266422 +karman_re200,sr,159,63.6,force,lower_fy,-0.005420010536909103 +karman_re200,sr,160,64.0,force,front_fx,-0.0012830795021727681 +karman_re200,sr,160,64.0,force,front_fy,-0.0049387551844120026 +karman_re200,sr,160,64.0,force,upper_fx,-0.002599082887172699 +karman_re200,sr,160,64.0,force,upper_fy,0.006385228130966425 +karman_re200,sr,160,64.0,force,lower_fx,0.0010835252469405532 +karman_re200,sr,160,64.0,force,lower_fy,-0.005956773646175861 +karman_re200,sr,161,64.4,force,front_fx,-0.002374602947384119 +karman_re200,sr,161,64.4,force,front_fy,-0.005236579570919275 +karman_re200,sr,161,64.4,force,upper_fx,0.0007896962924860418 +karman_re200,sr,161,64.4,force,upper_fy,0.006641979794949293 +karman_re200,sr,161,64.4,force,lower_fx,-0.0004045445239171386 +karman_re200,sr,161,64.4,force,lower_fy,-0.006492435932159424 +karman_re200,sr,162,64.8,force,front_fx,-0.0018031815998256207 +karman_re200,sr,162,64.8,force,front_fy,-0.00514640798792243 +karman_re200,sr,162,64.8,force,upper_fx,0.0032312292605638504 +karman_re200,sr,162,64.8,force,upper_fy,0.006746739149093628 +karman_re200,sr,162,64.8,force,lower_fx,-0.0019605413544923067 +karman_re200,sr,162,64.8,force,lower_fy,-0.0059975222684443 +karman_re200,sr,163,65.2,force,front_fx,8.446608990198001e-05 +karman_re200,sr,163,65.2,force,front_fy,-0.004632351920008659 +karman_re200,sr,163,65.2,force,upper_fx,0.005160048604011536 +karman_re200,sr,163,65.2,force,upper_fy,0.006835973355919123 +karman_re200,sr,163,65.2,force,lower_fx,-0.00402848469093442 +karman_re200,sr,163,65.2,force,lower_fy,-0.004464163910597563 +karman_re200,sr,164,65.6,force,front_fx,0.0023485973943024874 +karman_re200,sr,164,65.6,force,front_fy,-0.0029717569705098867 +karman_re200,sr,164,65.6,force,upper_fx,0.005915688816457987 +karman_re200,sr,164,65.6,force,upper_fy,0.0064903669990599155 +karman_re200,sr,164,65.6,force,lower_fx,-0.0066451444290578365 +karman_re200,sr,164,65.6,force,lower_fy,-0.0026818853802978992 +karman_re200,sr,165,66.0,force,front_fx,0.0034555813763290644 +karman_re200,sr,165,66.0,force,front_fy,-0.0003431384975556284 +karman_re200,sr,165,66.0,force,upper_fx,0.005041526164859533 +karman_re200,sr,165,66.0,force,upper_fy,0.005940025672316551 +karman_re200,sr,165,66.0,force,lower_fx,-0.00877180602401495 +karman_re200,sr,165,66.0,force,lower_fy,-0.0020295719150453806 +karman_re200,sr,166,66.4,force,front_fx,0.002825232222676277 +karman_re200,sr,166,66.4,force,front_fy,0.0023080974351614714 +karman_re200,sr,166,66.4,force,upper_fx,0.0035443196538835764 +karman_re200,sr,166,66.4,force,upper_fy,0.005490830633789301 +karman_re200,sr,166,66.4,force,lower_fx,-0.008730906061828136 +karman_re200,sr,166,66.4,force,lower_fy,-0.0031113040167838335 +karman_re200,sr,167,66.8,force,front_fx,0.0006498803850263357 +karman_re200,sr,167,66.8,force,front_fy,0.004066075198352337 +karman_re200,sr,167,66.8,force,upper_fx,0.0023305704817175865 +karman_re200,sr,167,66.8,force,upper_fy,0.00547335110604763 +karman_re200,sr,167,66.8,force,lower_fx,-0.006097543053328991 +karman_re200,sr,167,66.8,force,lower_fy,-0.005220743827521801 +karman_re200,sr,168,67.2,force,front_fx,-0.001474834280088544 +karman_re200,sr,168,67.2,force,front_fy,0.005026129074394703 +karman_re200,sr,168,67.2,force,upper_fx,0.000949078006669879 +karman_re200,sr,168,67.2,force,upper_fy,0.006099408958107233 +karman_re200,sr,168,67.2,force,lower_fx,-0.0021255393512547016 +karman_re200,sr,168,67.2,force,lower_fy,-0.006563312839716673 +karman_re200,sr,169,67.6,force,front_fx,-0.002401824574917555 +karman_re200,sr,169,67.6,force,front_fy,0.005244063679128885 +karman_re200,sr,169,67.6,force,upper_fx,-0.0005621876334771514 +karman_re200,sr,169,67.6,force,upper_fy,0.006574207451194525 +karman_re200,sr,169,67.6,force,lower_fx,0.0011251888936385512 +karman_re200,sr,169,67.6,force,lower_fy,-0.006722835823893547 +karman_re200,sr,170,68.0,force,front_fx,-0.0016609254525974393 +karman_re200,sr,170,68.0,force,front_fy,0.00510060740634799 +karman_re200,sr,170,68.0,force,upper_fx,-0.0021715741604566574 +karman_re200,sr,170,68.0,force,upper_fy,0.005910319276154041 +karman_re200,sr,170,68.0,force,lower_fx,0.0034585236571729183 +karman_re200,sr,170,68.0,force,lower_fy,-0.006807026453316212 +karman_re200,sr,171,68.4,force,front_fx,0.00032610236667096615 +karman_re200,sr,171,68.4,force,front_fy,0.0044750673696398735 +karman_re200,sr,171,68.4,force,upper_fx,-0.0043103862553834915 +karman_re200,sr,171,68.4,force,upper_fy,0.004255169536918402 +karman_re200,sr,171,68.4,force,lower_fx,0.00529868621379137 +karman_re200,sr,171,68.4,force,lower_fy,-0.006839404813945293 +karman_re200,sr,172,68.8,force,front_fx,0.002542743692174554 +karman_re200,sr,172,68.8,force,front_fy,0.002689034678041935 +karman_re200,sr,172,68.8,force,upper_fx,-0.006925228051841259 +karman_re200,sr,172,68.8,force,upper_fy,0.0025322185829281807 +karman_re200,sr,172,68.8,force,lower_fx,0.0058835879899561405 +karman_re200,sr,172,68.8,force,lower_fy,-0.006431042682379484 +karman_re200,sr,173,69.2,force,front_fx,0.0034625804983079433 +karman_re200,sr,173,69.2,force,front_fy,1.5068534594320226e-05 +karman_re200,sr,173,69.2,force,upper_fx,-0.008850520476698875 +karman_re200,sr,173,69.2,force,upper_fy,0.002114385599270463 +karman_re200,sr,173,69.2,force,lower_fx,0.00487800408154726 +karman_re200,sr,173,69.2,force,lower_fy,-0.005895210430026054 +karman_re200,sr,174,69.6,force,front_fx,0.0026206988841295242 +karman_re200,sr,174,69.6,force,front_fy,-0.0025451118126511574 +karman_re200,sr,174,69.6,force,upper_fx,-0.008475072681903839 +karman_re200,sr,174,69.6,force,upper_fy,0.0033790781162679195 +karman_re200,sr,174,69.6,force,lower_fx,0.003394572762772441 +karman_re200,sr,174,69.6,force,lower_fy,-0.005472616758197546 +karman_re200,sr,175,70.0,force,front_fx,0.0003528098459355533 +karman_re200,sr,175,70.0,force,front_fy,-0.004199111368507147 +karman_re200,sr,175,70.0,force,upper_fx,-0.005609378684312105 +karman_re200,sr,175,70.0,force,upper_fy,0.005441650748252869 +karman_re200,sr,175,70.0,force,lower_fx,0.0021599947940558195 +karman_re200,sr,175,70.0,force,lower_fy,-0.005522006191313267 +karman_re200,sr,176,70.4,force,front_fx,-0.0016707483446225524 +karman_re200,sr,176,70.4,force,front_fy,-0.005068906582891941 +karman_re200,sr,176,70.4,force,upper_fx,-0.0016788727371022105 +karman_re200,sr,176,70.4,force,upper_fy,0.006550708319991827 +karman_re200,sr,176,70.4,force,lower_fx,0.0007338090799748898 +karman_re200,sr,176,70.4,force,lower_fy,-0.006158476695418358 +karman_re200,sr,177,70.8,force,front_fx,-0.002399853663519025 +karman_re200,sr,177,70.8,force,front_fy,-0.005228836089372635 +karman_re200,sr,177,70.8,force,upper_fx,0.0014231817331165075 +karman_re200,sr,177,70.8,force,upper_fy,0.00665681529790163 +karman_re200,sr,177,70.8,force,lower_fx,-0.0007587706204503775 +karman_re200,sr,177,70.8,force,lower_fy,-0.006507153622806072 +karman_re200,sr,178,71.2,force,front_fx,-0.0014621838927268982 +karman_re200,sr,178,71.2,force,front_fy,-0.005072551779448986 +karman_re200,sr,178,71.2,force,upper_fx,0.003728856798261404 +karman_re200,sr,178,71.2,force,upper_fy,0.006781308446079493 +karman_re200,sr,178,71.2,force,lower_fx,-0.00238655973225832 +karman_re200,sr,178,71.2,force,lower_fy,-0.00570639967918396 +karman_re200,sr,179,71.6,force,front_fx,0.000620494014583528 +karman_re200,sr,179,71.6,force,front_fy,-0.004349930677562952 +karman_re200,sr,179,71.6,force,upper_fx,0.005486262962222099 +karman_re200,sr,179,71.6,force,upper_fy,0.006803146563470364 +karman_re200,sr,179,71.6,force,lower_fx,-0.00460133608430624 +karman_re200,sr,179,71.6,force,lower_fy,-0.004012248013168573 +karman_re200,sr,180,72.0,force,front_fx,0.002754506655037403 +karman_re200,sr,180,72.0,force,front_fy,-0.0024331938475370407 +karman_re200,sr,180,72.0,force,upper_fx,0.005854380317032337 +karman_re200,sr,180,72.0,force,upper_fy,0.006366536486893892 +karman_re200,sr,180,72.0,force,lower_fx,-0.007237973157316446 +karman_re200,sr,180,72.0,force,lower_fy,-0.0023797389585524797 +karman_re200,sr,181,72.4,force,front_fx,0.0034736529923975468 +karman_re200,sr,181,72.4,force,front_fy,0.00031746114837005734 +karman_re200,sr,181,72.4,force,upper_fx,0.00468844547867775 +karman_re200,sr,181,72.4,force,upper_fy,0.005827265325933695 +karman_re200,sr,181,72.4,force,lower_fx,-0.008993911556899548 +karman_re200,sr,181,72.4,force,lower_fy,-0.002133913803845644 +karman_re200,sr,182,72.8,force,front_fx,0.002423226134851575 +karman_re200,sr,182,72.8,force,front_fy,0.002779812552034855 +karman_re200,sr,182,72.8,force,upper_fx,0.0032321270555257797 +karman_re200,sr,182,72.8,force,upper_fy,0.00541315134614706 +karman_re200,sr,182,72.8,force,lower_fx,-0.008335599675774574 +karman_re200,sr,182,72.8,force,lower_fy,-0.003538595512509346 +karman_re200,sr,183,73.2,force,front_fx,9.650574793340638e-05 +karman_re200,sr,183,73.2,force,front_fy,0.004349200055003166 +karman_re200,sr,183,73.2,force,upper_fx,0.0020202230662107468 +karman_re200,sr,183,73.2,force,upper_fy,0.0055480580776929855 +karman_re200,sr,183,73.2,force,lower_fx,-0.005215104669332504 +karman_re200,sr,183,73.2,force,lower_fy,-0.0056303017772734165 +karman_re200,sr,184,73.6,force,front_fx,-0.0018163967179134488 +karman_re200,sr,184,73.6,force,front_fy,0.005134012550115585 +karman_re200,sr,184,73.6,force,upper_fx,0.0005873604095540941 +karman_re200,sr,184,73.6,force,upper_fy,0.006238891277462244 +karman_re200,sr,184,73.6,force,lower_fx,-0.0012528331717476249 +karman_re200,sr,184,73.6,force,lower_fy,-0.006623989436775446 +karman_re200,sr,185,74.0,force,front_fx,-0.0023671232629567385 +karman_re200,sr,185,74.0,force,front_fy,0.005236804019659758 +karman_re200,sr,185,74.0,force,upper_fx,-0.0009114464628510177 +karman_re200,sr,185,74.0,force,upper_fy,0.006515989080071449 +karman_re200,sr,185,74.0,force,lower_fx,0.0017415109323337674 +karman_re200,sr,185,74.0,force,lower_fy,-0.006712611299008131 +karman_re200,sr,186,74.4,force,front_fx,-0.001265179831534624 +karman_re200,sr,186,74.4,force,front_fy,0.005043314769864082 +karman_re200,sr,186,74.4,force,upper_fx,-0.0026121982373297215 +karman_re200,sr,186,74.4,force,upper_fy,0.0055880253203213215 +karman_re200,sr,186,74.4,force,lower_fx,0.0039723156951367855 +karman_re200,sr,186,74.4,force,lower_fy,-0.006838042289018631 +karman_re200,sr,187,74.8,force,front_fx,0.0009004005114547908 +karman_re200,sr,187,74.8,force,front_fy,0.004180197604000568 +karman_re200,sr,187,74.8,force,upper_fx,-0.004918589722365141 +karman_re200,sr,187,74.8,force,upper_fy,0.0038094690535217524 +karman_re200,sr,187,74.8,force,lower_fx,0.00560591509565711 +karman_re200,sr,187,74.8,force,lower_fy,-0.006785233039408922 +karman_re200,sr,188,75.2,force,front_fx,0.0029345923103392124 +karman_re200,sr,188,75.2,force,front_fy,0.00212641479447484 +karman_re200,sr,188,75.2,force,upper_fx,-0.00754146883264184 +karman_re200,sr,188,75.2,force,upper_fy,0.0022627345751971006 +karman_re200,sr,188,75.2,force,lower_fx,0.005780875217169523 +karman_re200,sr,188,75.2,force,lower_fy,-0.006296068429946899 +karman_re200,sr,189,75.6,force,front_fx,0.0034451857209205627 +karman_re200,sr,189,75.6,force,front_fy,-0.0006574172293767333 +karman_re200,sr,189,75.6,force,upper_fx,-0.009052380919456482 +karman_re200,sr,189,75.6,force,upper_fy,0.0022503193467855453 +karman_re200,sr,189,75.6,force,lower_fx,0.004526577889919281 +karman_re200,sr,189,75.6,force,lower_fy,-0.005778380669653416 +karman_re200,sr,190,76.0,force,front_fx,0.0021798352245241404 +karman_re200,sr,190,76.0,force,front_fy,-0.0030190348625183105 +karman_re200,sr,190,76.0,force,upper_fx,-0.00804879516363144 +karman_re200,sr,190,76.0,force,upper_fy,0.0038496730849146843 +karman_re200,sr,190,76.0,force,lower_fx,0.0031167727429419756 +karman_re200,sr,190,76.0,force,lower_fy,-0.005425035487860441 +karman_re200,sr,191,76.4,force,front_fx,-0.00018671654106583446 +karman_re200,sr,191,76.4,force,front_fy,-0.004488082602620125 +karman_re200,sr,191,76.4,force,upper_fx,-0.004708157852292061 +karman_re200,sr,191,76.4,force,upper_fy,0.0058857654221355915 +karman_re200,sr,191,76.4,force,lower_fx,0.001877367845736444 +karman_re200,sr,191,76.4,force,lower_fy,-0.005657345522195101 +karman_re200,sr,192,76.8,force,front_fx,-0.00198452640324831 +karman_re200,sr,192,76.8,force,front_fy,-0.005164491944015026 +karman_re200,sr,192,76.8,force,upper_fx,-0.0008353509474545717 +karman_re200,sr,192,76.8,force,upper_fy,0.006660160608589649 +karman_re200,sr,192,76.8,force,lower_fx,0.0003972534032072872 +karman_re200,sr,192,76.8,force,lower_fy,-0.006348768249154091 +karman_re200,sr,193,77.2,force,front_fx,-0.0023300291504710913 +karman_re200,sr,193,77.2,force,front_fy,-0.005204478278756142 +karman_re200,sr,193,77.2,force,upper_fx,0.002008024835959077 +karman_re200,sr,193,77.2,force,upper_fy,0.006695774849504232 +karman_re200,sr,193,77.2,force,lower_fx,-0.00110252748709172 +karman_re200,sr,193,77.2,force,lower_fy,-0.0064666997641325 +karman_re200,sr,194,77.6,force,front_fx,-0.0010680052218958735 +karman_re200,sr,194,77.6,force,front_fy,-0.004978866316378117 +karman_re200,sr,194,77.6,force,upper_fx,0.004201394505798817 +karman_re200,sr,194,77.6,force,upper_fy,0.00682750204578042 +karman_re200,sr,194,77.6,force,lower_fx,-0.0028399559669196606 +karman_re200,sr,194,77.6,force,lower_fy,-0.0053865863010287285 +karman_re200,sr,195,78.0,force,front_fx,0.0011611100053414702 +karman_re200,sr,195,78.0,force,front_fy,-0.003998321481049061 +karman_re200,sr,195,78.0,force,upper_fx,0.005729982163757086 +karman_re200,sr,195,78.0,force,upper_fy,0.0067461710423231125 +karman_re200,sr,195,78.0,force,lower_fx,-0.005198178347200155 +karman_re200,sr,195,78.0,force,lower_fy,-0.003579161362722516 +karman_re200,sr,196,78.4,force,front_fx,0.003075247397646308 +karman_re200,sr,196,78.4,force,front_fy,-0.0018503105966374278 +karman_re200,sr,196,78.4,force,upper_fx,0.005706846714019775 +karman_re200,sr,196,78.4,force,upper_fy,0.0062383427284657955 +karman_re200,sr,196,78.4,force,lower_fx,-0.007779630366712809 +karman_re200,sr,196,78.4,force,lower_fy,-0.002170887542888522 +karman_re200,sr,197,78.8,force,front_fx,0.003398429835215211 +karman_re200,sr,197,78.8,force,front_fy,0.000954597198870033 +karman_re200,sr,197,78.8,force,upper_fx,0.004334436729550362 +karman_re200,sr,197,78.8,force,upper_fy,0.005721977911889553 +karman_re200,sr,197,78.8,force,lower_fx,-0.009064345620572567 +karman_re200,sr,197,78.8,force,lower_fy,-0.0023475249763578176 +karman_re200,sr,198,79.2,force,front_fx,0.001937109394930303 +karman_re200,sr,198,79.2,force,front_fy,0.0032097676303237677 +karman_re200,sr,198,79.2,force,upper_fx,0.002951238537207246 +karman_re200,sr,198,79.2,force,upper_fy,0.005380443762987852 +karman_re200,sr,198,79.2,force,lower_fx,-0.007788568735122681 +karman_re200,sr,198,79.2,force,lower_fy,-0.004027995280921459 +karman_re200,sr,199,79.6,force,front_fx,-0.00043221109081059694 +karman_re200,sr,199,79.6,force,front_fy,0.004597784485667944 +karman_re200,sr,199,79.6,force,upper_fx,0.0017013439210131764 +karman_re200,sr,199,79.6,force,upper_fy,0.005675189662724733 +karman_re200,sr,199,79.6,force,lower_fx,-0.004283500369638205 +karman_re200,sr,199,79.6,force,lower_fy,-0.00597767997533083 +karman_re200,sr,200,80.0,force,front_fx,-0.0020941647235304117 +karman_re200,sr,200,80.0,force,front_fy,0.005202301777899265 +karman_re200,sr,200,80.0,force,upper_fx,0.0002290046395501122 +karman_re200,sr,200,80.0,force,upper_fy,0.0063680000603199005 +karman_re200,sr,200,80.0,force,lower_fx,-0.0004616699879989028 +karman_re200,sr,200,80.0,force,lower_fy,-0.006637187208980322 +karman_re200,sr,201,80.4,force,front_fx,-0.0022436208091676235 +karman_re200,sr,201,80.4,force,front_fy,0.005213045980781317 +karman_re200,sr,201,80.4,force,upper_fx,-0.001265546539798379 +karman_re200,sr,201,80.4,force,upper_fy,0.006390280090272427 +karman_re200,sr,201,80.4,force,lower_fx,0.00229948409833014 +karman_re200,sr,201,80.4,force,lower_fy,-0.006705049425363541 +karman_re200,sr,202,80.8,force,front_fx,-0.0008249493548646569 +karman_re200,sr,202,80.8,force,front_fy,0.004945754539221525 +karman_re200,sr,202,80.8,force,upper_fx,-0.003078073961660266 +karman_re200,sr,202,80.8,force,upper_fy,0.005219036713242531 +karman_re200,sr,202,80.8,force,lower_fx,0.004445693455636501 +karman_re200,sr,202,80.8,force,lower_fy,-0.006851501297205687 +karman_re200,sr,203,81.2,force,front_fx,0.001449938165023923 +karman_re200,sr,203,81.2,force,front_fy,0.0038120225071907043 +karman_re200,sr,203,81.2,force,upper_fx,-0.005528307985514402 +karman_re200,sr,203,81.2,force,upper_fy,0.003380659269168973 +karman_re200,sr,203,81.2,force,lower_fx,0.005815957207232714 +karman_re200,sr,203,81.2,force,lower_fy,-0.006704000290483236 +karman_re200,sr,204,81.6,force,front_fx,0.003207642352208495 +karman_re200,sr,204,81.6,force,front_fy,0.001524902880191803 +karman_re200,sr,204,81.6,force,upper_fx,-0.008070153184235096 +karman_re200,sr,204,81.6,force,upper_fy,0.002093043876811862 +karman_re200,sr,204,81.6,force,lower_fx,0.005591549910604954 +karman_re200,sr,204,81.6,force,lower_fy,-0.006164669990539551 +karman_re200,sr,205,82.0,force,front_fx,0.0033227233216166496 +karman_re200,sr,205,82.0,force,front_fy,-0.001286816317588091 +karman_re200,sr,205,82.0,force,upper_fx,-0.00908425822854042 +karman_re200,sr,205,82.0,force,upper_fy,0.002472914522513747 +karman_re200,sr,205,82.0,force,lower_fx,0.004165593534708023 +karman_re200,sr,205,82.0,force,lower_fy,-0.005666476674377918 +karman_re200,sr,206,82.4,force,front_fx,0.0016743796877563 +karman_re200,sr,206,82.4,force,front_fy,-0.0034391770604997873 +karman_re200,sr,206,82.4,force,upper_fx,-0.007484155707061291 +karman_re200,sr,206,82.4,force,upper_fy,0.0043183802627027035 +karman_re200,sr,206,82.4,force,lower_fx,0.0028432097751647234 +karman_re200,sr,206,82.4,force,lower_fy,-0.0054006194695830345 +karman_re200,sr,207,82.8,force,front_fx,-0.0006845031748525798 +karman_re200,sr,207,82.8,force,front_fy,-0.0047242892906069756 +karman_re200,sr,207,82.8,force,upper_fx,-0.0037991225253790617 +karman_re200,sr,207,82.8,force,upper_fy,0.006199325434863567 +karman_re200,sr,207,82.8,force,lower_fx,0.0015703917015343904 +karman_re200,sr,207,82.8,force,lower_fy,-0.005797980818897486 +karman_re200,sr,208,83.2,force,front_fx,-0.0022075658198446035 +karman_re200,sr,208,83.2,force,front_fy,-0.005223327316343784 +karman_re200,sr,208,83.2,force,upper_fx,-9.027423948282376e-05 +karman_re200,sr,208,83.2,force,upper_fy,0.0067056892439723015 +karman_re200,sr,208,83.2,force,lower_fx,6.595204467885196e-05 +karman_re200,sr,208,83.2,force,lower_fy,-0.006480279378592968 +karman_re200,sr,209,83.6,force,front_fx,-0.0021704910323023796 +karman_re200,sr,209,83.6,force,front_fy,-0.005180416628718376 +karman_re200,sr,209,83.6,force,upper_fx,0.0025402235332876444 +karman_re200,sr,209,83.6,force,upper_fy,0.006737458519637585 +karman_re200,sr,209,83.6,force,lower_fx,-0.0014529733452945948 +karman_re200,sr,209,83.6,force,lower_fy,-0.006342956330627203 +karman_re200,sr,210,84.0,force,front_fx,-0.000614667369518429 +karman_re200,sr,210,84.0,force,front_fy,-0.004855818580836058 +karman_re200,sr,210,84.0,force,upper_fx,0.004630770534276962 +karman_re200,sr,210,84.0,force,upper_fy,0.006857612170279026 +karman_re200,sr,210,84.0,force,lower_fx,-0.0033245279919356108 +karman_re200,sr,210,84.0,force,lower_fy,-0.00502720195800066 +karman_re200,sr,211,84.4,force,front_fx,0.0016870878171175718 +karman_re200,sr,211,84.4,force,front_fy,-0.003591124899685383 +karman_re200,sr,211,84.4,force,upper_fx,0.005869308486580849 +karman_re200,sr,211,84.4,force,upper_fy,0.006651895120739937 +karman_re200,sr,211,84.4,force,lower_fx,-0.0058080218732357025 +karman_re200,sr,211,84.4,force,lower_fy,-0.0031776693649590015 +karman_re200,sr,212,84.8,force,front_fx,0.003291183151304722 +karman_re200,sr,212,84.8,force,front_fy,-0.0012190976412966847 +karman_re200,sr,212,84.8,force,upper_fx,0.005471299402415752 +karman_re200,sr,212,84.8,force,upper_fy,0.0061100926250219345 +karman_re200,sr,212,84.8,force,lower_fx,-0.008246657438576221 +karman_re200,sr,212,84.8,force,lower_fy,-0.002069567097350955 +karman_re200,sr,213,85.2,force,front_fx,0.0032146836165338755 +karman_re200,sr,213,85.2,force,front_fy,0.0015637885080650449 +karman_re200,sr,213,85.2,force,upper_fx,0.003992532379925251 +karman_re200,sr,213,85.2,force,upper_fy,0.005624703597277403 +karman_re200,sr,213,85.2,force,lower_fx,-0.008981358259916306 +karman_re200,sr,213,85.2,force,lower_fy,-0.0026567159220576286 +karman_re200,sr,214,85.6,force,front_fx,0.001392324105836451 +karman_re200,sr,214,85.6,force,front_fy,0.003598642535507679 +karman_re200,sr,214,85.6,force,upper_fx,0.0026859974022954702 +karman_re200,sr,214,85.6,force,upper_fy,0.005401741713285446 +karman_re200,sr,214,85.6,force,lower_fx,-0.007111578714102507 +karman_re200,sr,214,85.6,force,lower_fy,-0.004542894661426544 +karman_re200,sr,215,86.0,force,front_fx,-0.0009264196269214153 +karman_re200,sr,215,86.0,force,front_fy,0.004806866403669119 +karman_re200,sr,215,86.0,force,upper_fx,0.0013757023261860013 +karman_re200,sr,215,86.0,force,upper_fy,0.0058444528840482235 +karman_re200,sr,215,86.0,force,lower_fx,-0.003351285820826888 +karman_re200,sr,215,86.0,force,lower_fy,-0.006251714192330837 +karman_re200,sr,216,86.4,force,front_fx,-0.002296219579875469 +karman_re200,sr,216,86.4,force,front_fy,0.005233908072113991 +karman_re200,sr,216,86.4,force,upper_fx,-0.00011835506302304566 +karman_re200,sr,216,86.4,force,upper_fy,0.006471524015069008 +karman_re200,sr,216,86.4,force,lower_fx,0.00023838593915570527 +karman_re200,sr,216,86.4,force,lower_fy,-0.006648431532084942 +karman_re200,sr,217,86.8,force,front_fx,-0.002045147120952606 +karman_re200,sr,217,86.8,force,front_fy,0.005170593038201332 +karman_re200,sr,217,86.8,force,upper_fx,-0.001633200328797102 +karman_re200,sr,217,86.8,force,upper_fy,0.006203724071383476 +karman_re200,sr,217,86.8,force,lower_fx,0.002804413205012679 +karman_re200,sr,217,86.8,force,lower_fy,-0.006717226468026638 +karman_re200,sr,218,87.2,force,front_fx,-0.0003571633715182543 +karman_re200,sr,218,87.2,force,front_fy,0.004790819250047207 +karman_re200,sr,218,87.2,force,upper_fx,-0.003570885630324483 +karman_re200,sr,218,87.2,force,upper_fy,0.004816755652427673 +karman_re200,sr,218,87.2,force,lower_fx,0.004851074889302254 +karman_re200,sr,218,87.2,force,lower_fy,-0.006849333643913269 +karman_re200,sr,219,87.6,force,front_fx,0.001946096308529377 +karman_re200,sr,219,87.6,force,front_fy,0.0033769551664590836 +karman_re200,sr,219,87.6,force,upper_fx,-0.0061195348389446735 +karman_re200,sr,219,87.6,force,upper_fy,0.002989594591781497 +karman_re200,sr,219,87.6,force,lower_fx,0.0059114801697432995 +karman_re200,sr,219,87.6,force,lower_fy,-0.0065954579040408134 +karman_re200,sr,220,88.0,force,front_fx,0.0033691057469695807 +karman_re200,sr,220,88.0,force,front_fy,0.0008949810289777815 +karman_re200,sr,220,88.0,force,upper_fx,-0.008472299203276634 +karman_re200,sr,220,88.0,force,upper_fy,0.002026394009590149 +karman_re200,sr,220,88.0,force,lower_fx,0.005316530354321003 +karman_re200,sr,220,88.0,force,lower_fy,-0.006042644381523132 +karman_re200,sr,221,88.4,force,front_fx,0.003084971336647868 +karman_re200,sr,221,88.4,force,front_fy,-0.001857175724580884 +karman_re200,sr,221,88.4,force,upper_fx,-0.008930629119277 +karman_re200,sr,221,88.4,force,upper_fy,0.0027822712436318398 +karman_re200,sr,221,88.4,force,lower_fx,0.003813097719103098 +karman_re200,sr,221,88.4,force,lower_fy,-0.0055583263747394085 +karman_re200,sr,222,88.8,force,front_fx,0.0011218724539503455 +karman_re200,sr,222,88.8,force,front_fy,-0.003790253307670355 +karman_re200,sr,222,88.8,force,upper_fx,-0.006774709094315767 +karman_re200,sr,222,88.8,force,upper_fy,0.004779656417667866 +karman_re200,sr,222,88.8,force,lower_fx,0.0025544988457113504 +karman_re200,sr,222,88.8,force,lower_fy,-0.005409997887909412 +karman_re200,sr,223,89.2,force,front_fx,-0.001139392494224012 +karman_re200,sr,223,89.2,force,front_fy,-0.004903607536107302 +karman_re200,sr,223,89.2,force,upper_fx,-0.0028969382401555777 +karman_re200,sr,223,89.2,force,upper_fy,0.006396217737346888 +karman_re200,sr,223,89.2,force,lower_fx,0.0012310529127717018 +karman_re200,sr,223,89.2,force,lower_fy,-0.0059371646493673325 +karman_re200,sr,224,89.6,force,front_fx,-0.002349295886233449 +karman_re200,sr,224,89.6,force,front_fy,-0.005249423906207085 +karman_re200,sr,224,89.6,force,upper_fx,0.0005820803926326334 +karman_re200,sr,224,89.6,force,upper_fy,0.0067085325717926025 +karman_re200,sr,224,89.6,force,lower_fx,-0.0002728398540057242 +karman_re200,sr,224,89.6,force,lower_fy,-0.006534886546432972 +karman_re200,sr,225,90.0,force,front_fx,-0.0019178484799340367 +karman_re200,sr,225,90.0,force,front_fy,-0.005152121651917696 +karman_re200,sr,225,90.0,force,upper_fx,0.0030479514971375465 +karman_re200,sr,225,90.0,force,upper_fy,0.006771700922399759 +karman_re200,sr,225,90.0,force,lower_fx,-0.0018305388512089849 +karman_re200,sr,225,90.0,force,lower_fy,-0.006127641070634127 +karman_re200,sr,226,90.4,force,front_fx,-0.00010842151823453605 +karman_re200,sr,226,90.4,force,front_fy,-0.004683393519371748 +karman_re200,sr,226,90.4,force,upper_fx,0.005013844929635525 +karman_re200,sr,226,90.4,force,upper_fy,0.006855979561805725 +karman_re200,sr,226,90.4,force,lower_fx,-0.0038467475678771734 +karman_re200,sr,226,90.4,force,lower_fy,-0.00461970129981637 +karman_re200,sr,227,90.8,force,front_fx,0.00218010856769979 +karman_re200,sr,227,90.8,force,front_fy,-0.0031225066632032394 +karman_re200,sr,227,90.8,force,upper_fx,0.005906064063310623 +karman_re200,sr,227,90.8,force,upper_fy,0.006531432271003723 +karman_re200,sr,227,90.8,force,lower_fx,-0.006425907835364342 +karman_re200,sr,227,90.8,force,lower_fy,-0.0028075946029275656 +karman_re200,sr,228,91.2,force,front_fx,0.0034197703935205936 +karman_re200,sr,228,91.2,force,front_fy,-0.0005570256034843624 +karman_re200,sr,228,91.2,force,upper_fx,0.005159483756870031 +karman_re200,sr,228,91.2,force,upper_fy,0.005988590884953737 +karman_re200,sr,228,91.2,force,lower_fx,-0.00862843357026577 +karman_re200,sr,228,91.2,force,lower_fy,-0.002048976020887494 +karman_re200,sr,229,91.6,force,front_fx,0.0029265242628753185 +karman_re200,sr,229,91.6,force,front_fy,0.0021329147275537252 +karman_re200,sr,229,91.6,force,upper_fx,0.0036582667380571365 +karman_re200,sr,229,91.6,force,upper_fy,0.005535434931516647 +karman_re200,sr,229,91.6,force,lower_fx,-0.008765572682023048 +karman_re200,sr,229,91.6,force,lower_fy,-0.003029445419088006 +karman_re200,sr,230,92.0,force,front_fx,0.0008177568088285625 +karman_re200,sr,230,92.0,force,front_fy,0.003956366330385208 +karman_re200,sr,230,92.0,force,upper_fx,0.0024116274435073137 +karman_re200,sr,230,92.0,force,upper_fy,0.0054644253104925156 +karman_re200,sr,230,92.0,force,lower_fx,-0.006324133835732937 +karman_re200,sr,230,92.0,force,lower_fy,-0.0050713177770376205 +karman_re200,sr,231,92.4,force,front_fx,-0.001361964037641883 +karman_re200,sr,231,92.4,force,front_fy,0.00496864877641201 +karman_re200,sr,231,92.4,force,upper_fx,0.001035619992762804 +karman_re200,sr,231,92.4,force,upper_fy,0.006033479701727629 +karman_re200,sr,231,92.4,force,lower_fx,-0.0024199446197599173 +karman_re200,sr,231,92.4,force,lower_fy,-0.006472702603787184 +karman_re200,sr,232,92.8,force,front_fx,-0.002394109731540084 +karman_re200,sr,232,92.8,force,front_fy,0.005234693177044392 +karman_re200,sr,232,92.8,force,upper_fx,-0.0004664607404265553 +karman_re200,sr,232,92.8,force,upper_fy,0.0065332697704434395 +karman_re200,sr,232,92.8,force,lower_fx,0.0008987588225863874 +karman_re200,sr,232,92.8,force,lower_fy,-0.006673987023532391 +karman_re200,sr,233,93.2,force,front_fx,-0.0017650084337219596 +karman_re200,sr,233,93.2,force,front_fy,0.00512035982683301 +karman_re200,sr,233,93.2,force,upper_fx,-0.002036124700680375 +karman_re200,sr,233,93.2,force,upper_fy,0.005963199306279421 +karman_re200,sr,233,93.2,force,lower_fx,0.003299260511994362 +karman_re200,sr,233,93.2,force,lower_fy,-0.006758426316082478 +karman_re200,sr,234,93.6,force,front_fx,0.00015386439918074757 +karman_re200,sr,234,93.6,force,front_fy,0.004565948620438576 +karman_re200,sr,234,93.6,force,upper_fx,-0.00411344924941659 +karman_re200,sr,234,93.6,force,upper_fy,0.004382157698273659 +karman_re200,sr,234,93.6,force,lower_fx,0.005206597503274679 +karman_re200,sr,234,93.6,force,lower_fy,-0.006836015731096268 +karman_re200,sr,235,94.0,force,front_fx,0.002406379207968712 +karman_re200,sr,235,94.0,force,front_fy,0.0028778817504644394 +karman_re200,sr,235,94.0,force,upper_fx,-0.006720453966408968 +karman_re200,sr,235,94.0,force,upper_fy,0.002635180950164795 +karman_re200,sr,235,94.0,force,lower_fx,0.00590788247063756 +karman_re200,sr,235,94.0,force,lower_fy,-0.006473368499428034 +karman_re200,sr,236,94.4,force,front_fx,0.003450600430369377 +karman_re200,sr,236,94.4,force,front_fy,0.00023588657495565712 +karman_re200,sr,236,94.4,force,upper_fx,-0.008777381852269173 +karman_re200,sr,236,94.4,force,upper_fy,0.0020584932062774897 +karman_re200,sr,236,94.4,force,lower_fx,0.004979423712939024 +karman_re200,sr,236,94.4,force,lower_fy,-0.0059290481731295586 +karman_re200,sr,237,94.8,force,front_fx,0.0027521224692463875 +karman_re200,sr,237,94.8,force,front_fy,-0.002377786673605442 +karman_re200,sr,237,94.8,force,upper_fx,-0.008631500415503979 +karman_re200,sr,237,94.8,force,upper_fy,0.0031828603241592646 +karman_re200,sr,237,94.8,force,lower_fx,0.00347527046687901 +karman_re200,sr,237,94.8,force,lower_fy,-0.0054696486331522465 +karman_re200,sr,238,95.2,force,front_fx,0.0005457343067973852 +karman_re200,sr,238,95.2,force,front_fy,-0.004106168635189533 +karman_re200,sr,238,95.2,force,upper_fx,-0.005933152046054602 +karman_re200,sr,238,95.2,force,upper_fy,0.005252447910606861 +karman_re200,sr,238,95.2,force,lower_fx,0.0022517889738082886 +karman_re200,sr,238,95.2,force,lower_fy,-0.005465400405228138 +karman_re200,sr,239,95.6,force,front_fx,-0.0015418551629409194 +karman_re200,sr,239,95.6,force,front_fy,-0.005041498690843582 +karman_re200,sr,239,95.6,force,upper_fx,-0.0019778930582106113 +karman_re200,sr,239,95.6,force,upper_fy,0.006522627081722021 +karman_re200,sr,239,95.6,force,lower_fx,0.000865268288180232 +karman_re200,sr,239,95.6,force,lower_fy,-0.006087037269026041 +karman_re200,sr,240,96.0,force,front_fx,-0.0023903169203549623 +karman_re200,sr,240,96.0,force,front_fy,-0.0052481903694570065 +karman_re200,sr,240,96.0,force,upper_fx,0.0012336816871538758 +karman_re200,sr,240,96.0,force,upper_fy,0.006690450944006443 +karman_re200,sr,240,96.0,force,lower_fx,-0.0006297627696767449 +karman_re200,sr,240,96.0,force,lower_fy,-0.006527193821966648 +karman_re200,sr,241,96.4,force,front_fx,-0.001578985946252942 +karman_re200,sr,241,96.4,force,front_fy,-0.005107536446303129 +karman_re200,sr,241,96.4,force,upper_fx,0.003568652318790555 +karman_re200,sr,241,96.4,force,upper_fy,0.006798665039241314 +karman_re200,sr,241,96.4,force,lower_fx,-0.0022496546152979136 +karman_re200,sr,241,96.4,force,lower_fy,-0.00583647983148694 +karman_re200,sr,242,96.8,force,front_fx,0.0004479274502955377 +karman_re200,sr,242,96.8,force,front_fy,-0.0044428156688809395 +karman_re200,sr,242,96.8,force,upper_fx,0.005369980353862047 +karman_re200,sr,242,96.8,force,upper_fy,0.006826030556112528 +karman_re200,sr,242,96.8,force,lower_fx,-0.004425332881510258 +karman_re200,sr,242,96.8,force,lower_fy,-0.004170029889792204 +karman_re200,sr,243,97.2,force,front_fx,0.002633790485560894 +karman_re200,sr,243,97.2,force,front_fy,-0.002600011182948947 +karman_re200,sr,243,97.2,force,upper_fx,0.005870751105248928 +karman_re200,sr,243,97.2,force,upper_fy,0.006400909274816513 +karman_re200,sr,243,97.2,force,lower_fx,-0.007060219068080187 +karman_re200,sr,243,97.2,force,lower_fy,-0.0024712001904845238 +karman_re200,sr,244,97.6,force,front_fx,0.0034759745467454195 +karman_re200,sr,244,97.6,force,front_fy,0.00011415244080126286 +karman_re200,sr,244,97.6,force,upper_fx,0.0048078736290335655 +karman_re200,sr,244,97.6,force,upper_fy,0.005870027933269739 +karman_re200,sr,244,97.6,force,lower_fx,-0.008929591625928879 +karman_re200,sr,244,97.6,force,lower_fy,-0.002107146428897977 +karman_re200,sr,245,98.0,force,front_fx,0.00255120312795043 +karman_re200,sr,245,98.0,force,front_fy,0.0026429349090903997 +karman_re200,sr,245,98.0,force,upper_fx,0.0033459991682320833 +karman_re200,sr,245,98.0,force,upper_fy,0.005455990321934223 +karman_re200,sr,245,98.0,force,lower_fx,-0.008447131142020226 +karman_re200,sr,245,98.0,force,lower_fy,-0.0034534381702542305 +karman_re200,sr,246,98.4,force,front_fx,0.00025260981055907905 +karman_re200,sr,246,98.4,force,front_fy,0.0042689950205385685 +karman_re200,sr,246,98.4,force,upper_fx,0.0021269514691084623 +karman_re200,sr,246,98.4,force,upper_fy,0.0055547733791172504 +karman_re200,sr,246,98.4,force,lower_fx,-0.005462185945361853 +karman_re200,sr,246,98.4,force,lower_fy,-0.005557885859161615 +karman_re200,sr,247,98.8,force,front_fx,-0.0017301355255767703 +karman_re200,sr,247,98.8,force,front_fy,0.005094494204968214 +karman_re200,sr,247,98.8,force,upper_fx,0.0006901855231262743 +karman_re200,sr,247,98.8,force,upper_fy,0.00621968787163496 +karman_re200,sr,247,98.8,force,lower_fx,-0.0015136712463572621 +karman_re200,sr,247,98.8,force,lower_fy,-0.006621839478611946 +karman_re200,sr,248,99.2,force,front_fx,-0.0023988871835172176 +karman_re200,sr,248,99.2,force,front_fy,0.005224631633609533 +karman_re200,sr,248,99.2,force,upper_fx,-0.0008145712199620903 +karman_re200,sr,248,99.2,force,upper_fy,0.006539830006659031 +karman_re200,sr,248,99.2,force,lower_fx,0.001534891314804554 +karman_re200,sr,248,99.2,force,lower_fy,-0.006699920166283846 +karman_re200,sr,249,99.6,force,front_fx,-0.0014075473882257938 +karman_re200,sr,249,99.6,force,front_fy,0.0050493646413087845 +karman_re200,sr,249,99.6,force,upper_fx,-0.0024698234628885984 +karman_re200,sr,249,99.6,force,upper_fy,0.005675130058079958 +karman_re200,sr,249,99.6,force,lower_fx,0.00380418892018497 +karman_re200,sr,249,99.6,force,lower_fy,-0.006811897270381451 +karman_re200,sr,250,100.0,force,front_fx,0.0007047519902698696 +karman_re200,sr,250,100.0,force,front_fy,0.004277436528354883 +karman_re200,sr,250,100.0,force,upper_fx,-0.00470639206469059 +karman_re200,sr,250,100.0,force,upper_fy,0.003937553148716688 +karman_re200,sr,250,100.0,force,lower_fx,0.005520592909306288 +karman_re200,sr,250,100.0,force,lower_fy,-0.006802827585488558 +karman_re200,sr,251,100.4,force,front_fx,0.0028131366707384586 +karman_re200,sr,251,100.4,force,front_fy,0.002324744127690792 +karman_re200,sr,251,100.4,force,upper_fx,-0.007330314721912146 +karman_re200,sr,251,100.4,force,upper_fy,0.0023439177311956882 +karman_re200,sr,251,100.4,force,lower_fx,0.005830772686749697 +karman_re200,sr,251,100.4,force,lower_fy,-0.006343745160847902 +karman_re200,sr,252,100.8,force,front_fx,0.003468761220574379 +karman_re200,sr,252,100.8,force,front_fy,-0.00042764292447827756 +karman_re200,sr,252,100.8,force,upper_fx,-0.00898888148367405 +karman_re200,sr,252,100.8,force,upper_fy,0.0021880369167774916 +karman_re200,sr,252,100.8,force,lower_fx,0.004628990776836872 +karman_re200,sr,252,100.8,force,lower_fy,-0.005817099008709192 +karman_re200,sr,253,101.2,force,front_fx,0.0023328945972025394 +karman_re200,sr,253,101.2,force,front_fy,-0.0028542857617139816 +karman_re200,sr,253,101.2,force,upper_fx,-0.00821107067167759 +karman_re200,sr,253,101.2,force,upper_fy,0.003651021048426628 +karman_re200,sr,253,101.2,force,lower_fx,0.0031824144534766674 +karman_re200,sr,253,101.2,force,lower_fy,-0.005413316655904055 +karman_re200,sr,254,101.6,force,front_fx,-8.533690561307594e-06 +karman_re200,sr,254,101.6,force,front_fy,-0.004392479080706835 +karman_re200,sr,254,101.6,force,upper_fx,-0.005021748598664999 +karman_re200,sr,254,101.6,force,upper_fy,0.005694338120520115 +karman_re200,sr,254,101.6,force,lower_fx,0.0019518706249073148 +karman_re200,sr,254,101.6,force,lower_fy,-0.005574442911893129 +karman_re200,sr,255,102.0,force,front_fx,-0.0018778917146846652 +karman_re200,sr,255,102.0,force,front_fy,-0.005141541361808777 +karman_re200,sr,255,102.0,force,upper_fx,-0.0011049227323383093 +karman_re200,sr,255,102.0,force,upper_fy,0.006599109619855881 +karman_re200,sr,255,102.0,force,lower_fx,0.0005040935939177871 +karman_re200,sr,255,102.0,force,lower_fy,-0.006251838989555836 +karman_re200,sr,256,102.4,force,front_fx,-0.0023489641025662422 +karman_re200,sr,256,102.4,force,front_fy,-0.005227386951446533 +karman_re200,sr,256,102.4,force,upper_fx,0.0018422896973788738 +karman_re200,sr,256,102.4,force,upper_fy,0.006678916048258543 +karman_re200,sr,256,102.4,force,lower_fx,-0.0009837057441473007 +karman_re200,sr,256,102.4,force,lower_fy,-0.006472072098404169 +karman_re200,sr,257,102.8,force,front_fx,-0.0011838591890409589 +karman_re200,sr,257,102.8,force,front_fy,-0.005032161250710487 +karman_re200,sr,257,102.8,force,upper_fx,0.004072994459420443 +karman_re200,sr,257,102.8,force,upper_fy,0.006823120638728142 +karman_re200,sr,257,102.8,force,lower_fx,-0.0026934314519166946 +karman_re200,sr,257,102.8,force,lower_fy,-0.005501277279108763 +karman_re200,sr,258,103.2,force,front_fx,0.0010062339715659618 +karman_re200,sr,258,103.2,force,front_fy,-0.004127462860196829 +karman_re200,sr,258,103.2,force,upper_fx,0.005663935095071793 +karman_re200,sr,258,103.2,force,upper_fy,0.006769421510398388 +karman_re200,sr,258,103.2,force,lower_fx,-0.0050262087024748325 +karman_re200,sr,258,103.2,force,lower_fy,-0.0037226537242531776 +karman_re200,sr,259,103.6,force,front_fx,0.002994278911501169 +karman_re200,sr,259,103.6,force,front_fy,-0.002029884373769164 +karman_re200,sr,259,103.6,force,upper_fx,0.005759744439274073 +karman_re200,sr,259,103.6,force,upper_fy,0.006272077560424805 +karman_re200,sr,259,103.6,force,lower_fx,-0.007645637262612581 +karman_re200,sr,259,103.6,force,lower_fy,-0.0022169286385178566 +karman_re200,sr,260,104.0,force,front_fx,0.0034399668220430613 +karman_re200,sr,260,104.0,force,front_fy,0.000767499499488622 +karman_re200,sr,260,104.0,force,upper_fx,0.004452109336853027 +karman_re200,sr,260,104.0,force,upper_fy,0.005752547178417444 +karman_re200,sr,260,104.0,force,lower_fx,-0.009089413098990917 +karman_re200,sr,260,104.0,force,lower_fy,-0.0022578295320272446 +karman_re200,sr,261,104.4,force,front_fx,0.0021018681582063437 +karman_re200,sr,261,104.4,force,front_fy,0.003091053105890751 +karman_re200,sr,261,104.4,force,upper_fx,0.003059245878830552 +karman_re200,sr,261,104.4,force,upper_fy,0.005399450194090605 +karman_re200,sr,261,104.4,force,lower_fx,-0.007994337938725948 +karman_re200,sr,261,104.4,force,lower_fy,-0.003902261843904853 +karman_re200,sr,262,104.8,force,front_fx,-0.00026786664966493845 +karman_re200,sr,262,104.8,force,front_fy,0.004535071086138487 +karman_re200,sr,262,104.8,force,upper_fx,0.001827976549975574 +karman_re200,sr,262,104.8,force,upper_fy,0.005665091332048178 +karman_re200,sr,262,104.8,force,lower_fx,-0.004568525590002537 +karman_re200,sr,262,104.8,force,lower_fy,-0.005935308523476124 +karman_re200,sr,263,105.2,force,front_fx,-0.0020240377634763718 +karman_re200,sr,263,105.2,force,front_fy,0.00518447021022439 +karman_re200,sr,263,105.2,force,upper_fx,0.0003511018003337085 +karman_re200,sr,263,105.2,force,upper_fy,0.00637209415435791 +karman_re200,sr,263,105.2,force,lower_fx,-0.0006954954587854445 +karman_re200,sr,263,105.2,force,lower_fy,-0.0066828797571361065 +karman_re200,sr,264,105.6,force,front_fx,-0.002304046880453825 +karman_re200,sr,264,105.6,force,front_fy,0.005209991242736578 +karman_re200,sr,264,105.6,force,upper_fx,-0.0011565532768145204 +karman_re200,sr,264,105.6,force,upper_fy,0.00646662013605237 +karman_re200,sr,264,105.6,force,lower_fx,0.0021145143546164036 +karman_re200,sr,264,105.6,force,lower_fy,-0.006723849568516016 +karman_re200,sr,265,106.0,force,front_fx,-0.0009876943659037352 +karman_re200,sr,265,106.0,force,front_fy,0.004962803330272436 +karman_re200,sr,265,106.0,force,upper_fx,-0.002925668843090534 +karman_re200,sr,265,106.0,force,upper_fy,0.005343170836567879 +karman_re200,sr,265,106.0,force,lower_fx,0.004282314796000719 +karman_re200,sr,265,106.0,force,lower_fy,-0.00685123959556222 +karman_re200,sr,266,106.4,force,front_fx,0.001259283279068768 +karman_re200,sr,266,106.4,force,front_fy,0.0039288438856601715 +karman_re200,sr,266,106.4,force,upper_fx,-0.005317737348377705 +karman_re200,sr,266,106.4,force,upper_fy,0.0035142172127962112 +karman_re200,sr,266,106.4,force,lower_fx,0.005754292476922274 +karman_re200,sr,266,106.4,force,lower_fy,-0.006733840797096491 +karman_re200,sr,267,106.8,force,front_fx,0.0031246140133589506 +karman_re200,sr,267,106.8,force,front_fy,0.001730588497593999 +karman_re200,sr,267,106.8,force,upper_fx,-0.007883594371378422 +karman_re200,sr,267,106.8,force,upper_fy,0.0021487954072654247 +karman_re200,sr,267,106.8,force,lower_fx,0.005669272039085627 +karman_re200,sr,267,106.8,force,lower_fy,-0.006212572567164898 +karman_re200,sr,268,107.2,force,front_fx,0.0033722305670380592 +karman_re200,sr,268,107.2,force,front_fy,-0.0010746894404292107 +karman_re200,sr,268,107.2,force,upper_fx,-0.009057383984327316 +karman_re200,sr,268,107.2,force,upper_fy,0.0024117270950227976 +karman_re200,sr,268,107.2,force,lower_fx,0.00428409781306982 +karman_re200,sr,268,107.2,force,lower_fy,-0.00570793729275465 +karman_re200,sr,269,107.6,force,front_fx,0.0018387238960713148 +karman_re200,sr,269,107.6,force,front_fy,-0.0032884497195482254 +karman_re200,sr,269,107.6,force,upper_fx,-0.00766025623306632 +karman_re200,sr,269,107.6,force,upper_fy,0.004152461886405945 +karman_re200,sr,269,107.6,force,lower_fx,0.002918507670983672 +karman_re200,sr,269,107.6,force,lower_fy,-0.005399797577410936 +karman_re200,sr,270,108.0,force,front_fx,-0.0005258597666397691 +karman_re200,sr,270,108.0,force,front_fy,-0.00464068166911602 +karman_re200,sr,270,108.0,force,upper_fx,-0.004097513388842344 +karman_re200,sr,270,108.0,force,upper_fy,0.006058656144887209 +karman_re200,sr,270,108.0,force,lower_fx,0.001649877754971385 +karman_re200,sr,270,108.0,force,lower_fy,-0.005727233365178108 +karman_re200,sr,271,108.4,force,front_fx,-0.0021444193553179502 +karman_re200,sr,271,108.4,force,front_fy,-0.005205336958169937 +karman_re200,sr,271,108.4,force,upper_fx,-0.00033314956817775965 +karman_re200,sr,271,108.4,force,upper_fy,0.006646766792982817 +karman_re200,sr,271,108.4,force,lower_fx,0.00016208838496822864 +karman_re200,sr,271,108.4,force,lower_fy,-0.006406118161976337 +karman_re200,sr,272,108.8,force,front_fx,-0.0022233137860894203 +karman_re200,sr,272,108.8,force,front_fy,-0.00519588403403759 +karman_re200,sr,272,108.8,force,upper_fx,0.0023805061355233192 +karman_re200,sr,272,108.8,force,upper_fy,0.006694964598864317 +karman_re200,sr,272,108.8,force,lower_fx,-0.0013354429975152016 +karman_re200,sr,272,108.8,force,lower_fy,-0.006361240055412054 +karman_re200,sr,273,109.2,force,front_fx,-0.0007539840298704803 +karman_re200,sr,273,109.2,force,front_fy,-0.004911934956908226 +karman_re200,sr,273,109.2,force,upper_fx,0.0045164511539042 +karman_re200,sr,273,109.2,force,upper_fy,0.0068432348780334 +karman_re200,sr,273,109.2,force,lower_fx,-0.0031576594337821007 +karman_re200,sr,273,109.2,force,lower_fy,-0.005138109438121319 +karman_re200,sr,274,109.6,force,front_fx,0.0015315308701246977 +karman_re200,sr,274,109.6,force,front_fy,-0.0037406692281365395 +karman_re200,sr,274,109.6,force,upper_fx,0.0058458112180233 +karman_re200,sr,274,109.6,force,upper_fy,0.006684098858386278 +karman_re200,sr,274,109.6,force,lower_fx,-0.005617745686322451 +karman_re200,sr,274,109.6,force,lower_fy,-0.0033077041152864695 +karman_re200,sr,275,110.0,force,front_fx,0.0032356265000998974 +karman_re200,sr,275,110.0,force,front_fy,-0.0014252769760787487 +karman_re200,sr,275,110.0,force,upper_fx,0.005553257651627064 +karman_re200,sr,275,110.0,force,upper_fy,0.0061479671858251095 +karman_re200,sr,275,110.0,force,lower_fx,-0.008130395784974098 +karman_re200,sr,275,110.0,force,lower_fy,-0.002076918724924326 +karman_re200,sr,276,110.4,force,front_fx,0.0032907086424529552 +karman_re200,sr,276,110.4,force,front_fy,0.0013772670645266771 +karman_re200,sr,276,110.4,force,upper_fx,0.004097105469554663 +karman_re200,sr,276,110.4,force,upper_fy,0.005642569623887539 +karman_re200,sr,276,110.4,force,lower_fx,-0.009057223796844482 +karman_re200,sr,276,110.4,force,lower_fy,-0.002513607731088996 +karman_re200,sr,277,110.8,force,front_fx,0.001579154864884913 +karman_re200,sr,277,110.8,force,front_fy,0.0034896922297775745 +karman_re200,sr,277,110.8,force,upper_fx,0.0027792162727564573 +karman_re200,sr,277,110.8,force,upper_fy,0.005384383723139763 +karman_re200,sr,277,110.8,force,lower_fx,-0.007377164904028177 +karman_re200,sr,277,110.8,force,lower_fy,-0.004363691434264183 +karman_re200,sr,278,111.2,force,front_fx,-0.0007625994039699435 +karman_re200,sr,278,111.2,force,front_fy,0.004753442481160164 +karman_re200,sr,278,111.2,force,upper_fx,0.0015030070208013058 +karman_re200,sr,278,111.2,force,upper_fy,0.005794825032353401 +karman_re200,sr,278,111.2,force,lower_fx,-0.003660347778350115 +karman_re200,sr,278,111.2,force,lower_fy,-0.006200301460921764 +karman_re200,sr,279,111.6,force,front_fx,-0.0022338302806019783 +karman_re200,sr,279,111.6,force,front_fy,0.00524107413366437 +karman_re200,sr,279,111.6,force,upper_fx,9.949252671503928e-06 +karman_re200,sr,279,111.6,force,upper_fy,0.006469264626502991 +karman_re200,sr,279,111.6,force,lower_fx,2.5759592972462997e-05 +karman_re200,sr,279,111.6,force,lower_fy,-0.006688167341053486 +karman_re200,sr,280,112.0,force,front_fx,-0.0021260154899209738 +karman_re200,sr,280,112.0,force,front_fy,0.0051879906095564365 +karman_re200,sr,280,112.0,force,upper_fx,-0.0015117042930796742 +karman_re200,sr,280,112.0,force,upper_fy,0.006303067784756422 +karman_re200,sr,280,112.0,force,lower_fx,0.0026436680927872658 +karman_re200,sr,280,112.0,force,lower_fy,-0.006738182157278061 +karman_re200,sr,281,112.4,force,front_fx,-0.0005189101211726665 +karman_re200,sr,281,112.4,force,front_fy,0.004839403089135885 +karman_re200,sr,281,112.4,force,upper_fx,-0.0034115342423319817 +karman_re200,sr,281,112.4,force,upper_fy,0.0049634529277682304 +karman_re200,sr,281,112.4,force,lower_fx,0.0047088973224163055 +karman_re200,sr,281,112.4,force,lower_fy,-0.006864209659397602 +karman_re200,sr,282,112.8,force,front_fx,0.0017873335164040327 +karman_re200,sr,282,112.8,force,front_fy,0.0035167657770216465 +karman_re200,sr,282,112.8,force,upper_fx,-0.005927967373281717 +karman_re200,sr,282,112.8,force,upper_fy,0.003114734310656786 +karman_re200,sr,282,112.8,force,lower_fx,0.005880718119442463 +karman_re200,sr,282,112.8,force,lower_fy,-0.006631535477936268 +karman_re200,sr,283,113.2,force,front_fx,0.0033235664013773203 +karman_re200,sr,283,113.2,force,front_fy,0.0010874371509999037 +karman_re200,sr,283,113.2,force,upper_fx,-0.008340472355484962 +karman_re200,sr,283,113.2,force,upper_fy,0.002051006071269512 +karman_re200,sr,283,113.2,force,lower_fx,0.005415404215455055 +karman_re200,sr,283,113.2,force,lower_fy,-0.006085202097892761 +karman_re200,sr,284,113.6,force,front_fx,0.0031685326248407364 +karman_re200,sr,284,113.6,force,front_fy,-0.0016802841564640403 +karman_re200,sr,284,113.6,force,upper_fx,-0.008969835005700588 +karman_re200,sr,284,113.6,force,upper_fy,0.00271030911244452 +karman_re200,sr,284,113.6,force,lower_fx,0.003935950342565775 +karman_re200,sr,284,113.6,force,lower_fy,-0.005605954676866531 +karman_re200,sr,285,114.0,force,front_fx,0.0012950784293934703 +karman_re200,sr,285,114.0,force,front_fy,-0.0036712789442390203 +karman_re200,sr,285,114.0,force,upper_fx,-0.006982030812650919 +karman_re200,sr,285,114.0,force,upper_fy,0.00466086296364665 +karman_re200,sr,285,114.0,force,lower_fx,0.002650209702551365 +karman_re200,sr,285,114.0,force,lower_fy,-0.005422137212008238 +karman_re200,sr,286,114.4,force,front_fx,-0.0010102331871166825 +karman_re200,sr,286,114.4,force,front_fy,-0.0048454259522259235 +karman_re200,sr,286,114.4,force,upper_fx,-0.003175962483510375 +karman_re200,sr,286,114.4,force,upper_fy,0.006336440332233906 +karman_re200,sr,286,114.4,force,lower_fx,0.0013286832254379988 +karman_re200,sr,286,114.4,force,lower_fy,-0.005899268202483654 +karman_re200,sr,287,114.8,force,front_fx,-0.0023217059206217527 +karman_re200,sr,287,114.8,force,front_fy,-0.005235356278717518 +karman_re200,sr,287,114.8,force,upper_fx,0.00036190159153193235 +karman_re200,sr,287,114.8,force,upper_fy,0.006681472063064575 +karman_re200,sr,287,114.8,force,lower_fx,-0.0001770361268427223 +karman_re200,sr,287,114.8,force,lower_fy,-0.0065132551826536655 +karman_re200,sr,288,115.2,force,front_fx,-0.0020095331128686666 +karman_re200,sr,288,115.2,force,front_fy,-0.005155431572347879 +karman_re200,sr,288,115.2,force,upper_fx,0.002882447326555848 +karman_re200,sr,288,115.2,force,upper_fy,0.006736031733453274 +karman_re200,sr,288,115.2,force,lower_fx,-0.0017070465255528688 +karman_re200,sr,288,115.2,force,lower_fy,-0.006181840319186449 +karman_re200,sr,289,115.6,force,front_fx,-0.0002790238650050014 +karman_re200,sr,289,115.6,force,front_fy,-0.004743780940771103 +karman_re200,sr,289,115.6,force,upper_fx,0.004904210567474365 +karman_re200,sr,289,115.6,force,upper_fy,0.0068501634523272514 +karman_re200,sr,289,115.6,force,lower_fx,-0.003663544310256839 +karman_re200,sr,289,115.6,force,lower_fy,-0.004740342032164335 +karman_re200,sr,290,116.0,force,front_fx,0.0020256037823855877 +karman_re200,sr,290,116.0,force,front_fy,-0.003287246450781822 +karman_re200,sr,290,116.0,force,upper_fx,0.0059141977690160275 +karman_re200,sr,290,116.0,force,upper_fy,0.00657421350479126 +karman_re200,sr,290,116.0,force,lower_fx,-0.006215894129127264 +karman_re200,sr,290,116.0,force,lower_fy,-0.0029242432210594416 +karman_re200,sr,291,116.4,force,front_fx,0.003385495161637664 +karman_re200,sr,291,116.4,force,front_fy,-0.0007800846360623837 +karman_re200,sr,291,116.4,force,upper_fx,0.005261323880404234 +karman_re200,sr,291,116.4,force,upper_fy,0.006028319709002972 +karman_re200,sr,291,116.4,force,lower_fx,-0.008513882756233215 +karman_re200,sr,291,116.4,force,lower_fy,-0.002040519379079342 +karman_re200,sr,292,116.8,force,front_fx,0.0030288202688097954 +karman_re200,sr,292,116.8,force,front_fy,0.0019464466022327542 +karman_re200,sr,292,116.8,force,upper_fx,0.0037496639415621758 +karman_re200,sr,292,116.8,force,upper_fy,0.005546985659748316 +karman_re200,sr,292,116.8,force,lower_fx,-0.0088625093922019 +karman_re200,sr,292,116.8,force,lower_fy,-0.0028636842034757137 +karman_re200,sr,293,117.2,force,front_fx,0.0010084545938298106 +karman_re200,sr,293,117.2,force,front_fy,0.0038425286766141653 +karman_re200,sr,293,117.2,force,upper_fx,0.0024910178035497665 +karman_re200,sr,293,117.2,force,upper_fy,0.0054162051528692245 +karman_re200,sr,293,117.2,force,lower_fx,-0.006610995624214411 +karman_re200,sr,293,117.2,force,lower_fy,-0.004851971752941608 +karman_re200,sr,294,117.6,force,front_fx,-0.0012187075335532427 +karman_re200,sr,294,117.6,force,front_fy,0.004925967194139957 +karman_re200,sr,294,117.6,force,upper_fx,0.0011514927027747035 +karman_re200,sr,294,117.6,force,upper_fy,0.0059480746276676655 +karman_re200,sr,294,117.6,force,lower_fx,-0.0027344918344169855 +karman_re200,sr,294,117.6,force,lower_fy,-0.006394388619810343 +karman_re200,sr,295,118.0,force,front_fx,-0.002362695522606373 +karman_re200,sr,295,118.0,force,front_fy,0.005248870700597763 +karman_re200,sr,295,118.0,force,upper_fx,-0.0003429360222071409 +karman_re200,sr,295,118.0,force,upper_fy,0.006514119450002909 +karman_re200,sr,295,118.0,force,lower_fx,0.0006977961747907102 +karman_re200,sr,295,118.0,force,lower_fy,-0.006677295081317425 +karman_re200,sr,296,118.4,force,front_fx,-0.001856934279203415 +karman_re200,sr,296,118.4,force,front_fy,0.005148830823600292 +karman_re200,sr,296,118.4,force,upper_fx,-0.0019012638367712498 +karman_re200,sr,296,118.4,force,upper_fy,0.006061223801225424 +karman_re200,sr,296,118.4,force,lower_fx,0.003150259843096137 +karman_re200,sr,296,118.4,force,lower_fy,-0.0067623816430568695 +karman_re200,sr,297,118.8,force,front_fx,-4.690949481300777e-06 +karman_re200,sr,297,118.8,force,front_fy,0.0046539888717234135 +karman_re200,sr,297,118.8,force,upper_fx,-0.003945440519601107 +karman_re200,sr,297,118.8,force,upper_fy,0.004536882974207401 +karman_re200,sr,297,118.8,force,lower_fx,0.00509282760322094 +karman_re200,sr,297,118.8,force,lower_fy,-0.006849218159914017 +karman_re200,sr,298,119.2,force,front_fx,0.002275136997923255 +karman_re200,sr,298,119.2,force,front_fy,0.0030383793637156487 +karman_re200,sr,298,119.2,force,upper_fx,-0.006545467767864466 +karman_re200,sr,298,119.2,force,upper_fy,0.0027410006150603294 +karman_re200,sr,298,119.2,force,lower_fx,0.005910913459956646 +karman_re200,sr,298,119.2,force,lower_fy,-0.006508929654955864 +karman_re200,sr,299,119.6,force,front_fx,0.003436197293922305 +karman_re200,sr,299,119.6,force,front_fy,0.0004341403255239129 +karman_re200,sr,299,119.6,force,upper_fx,-0.008704186417162418 +karman_re200,sr,299,119.6,force,upper_fy,0.0020386409014463425 +karman_re200,sr,299,119.6,force,lower_fx,0.005092400126159191 +karman_re200,sr,299,119.6,force,lower_fy,-0.005963276606053114 +karman_re200,sr,300,120.0,force,front_fx,0.002866151975467801 +karman_re200,sr,300,120.0,force,front_fy,-0.0022293690126389265 +karman_re200,sr,300,120.0,force,upper_fx,-0.008742934092879295 +karman_re200,sr,300,120.0,force,upper_fy,0.0030776425264775753 +karman_re200,sr,300,120.0,force,lower_fx,0.003594997338950634 +karman_re200,sr,300,120.0,force,lower_fy,-0.005509907379746437 +karman_re200,sr,301,120.4,force,front_fx,0.000723177392501384 +karman_re200,sr,301,120.4,force,front_fy,-0.0040196944028139114 +karman_re200,sr,301,120.4,force,upper_fx,-0.006192952394485474 +karman_re200,sr,301,120.4,force,upper_fy,0.005155939608812332 +karman_re200,sr,301,120.4,force,lower_fx,0.002365539316087961 +karman_re200,sr,301,120.4,force,lower_fy,-0.005471944808959961 +karman_re200,sr,302,120.8,force,front_fx,-0.001429084804840386 +karman_re200,sr,302,120.8,force,front_fy,-0.005000267177820206 +karman_re200,sr,302,120.8,force,upper_fx,-0.0022547217085957527 +karman_re200,sr,302,120.8,force,upper_fy,0.006526106037199497 +karman_re200,sr,302,120.8,force,lower_fx,0.0009857704862952232 +karman_re200,sr,302,120.8,force,lower_fy,-0.006070669740438461 +karman_re200,sr,303,121.2,force,front_fx,-0.0024001458659768105 +karman_re200,sr,303,121.2,force,front_fy,-0.00524040125310421 +karman_re200,sr,303,121.2,force,upper_fx,0.0010231833439320326 +karman_re200,sr,303,121.2,force,upper_fy,0.00670158676803112 +karman_re200,sr,303,121.2,force,lower_fx,-0.0005227303481660783 +karman_re200,sr,303,121.2,force,lower_fy,-0.006555863190442324 +karman_re200,sr,304,121.6,force,front_fx,-0.0017058557132259011 +karman_re200,sr,304,121.6,force,front_fy,-0.005107034929096699 +karman_re200,sr,304,121.6,force,upper_fx,0.003388904733583331 +karman_re200,sr,304,121.6,force,upper_fy,0.00678441533818841 +karman_re200,sr,304,121.6,force,lower_fx,-0.002113697351887822 +karman_re200,sr,304,121.6,force,lower_fy,-0.005931593012064695 +karman_re200,sr,305,122.0,force,front_fx,0.00025050670956261456 +karman_re200,sr,305,122.0,force,front_fy,-0.004517178982496262 +karman_re200,sr,305,122.0,force,upper_fx,0.0052575357258319855 +karman_re200,sr,305,122.0,force,upper_fy,0.00683596869930625 +karman_re200,sr,305,122.0,force,lower_fx,-0.004224111791700125 +karman_re200,sr,305,122.0,force,lower_fy,-0.0043085673823952675 +karman_re200,sr,306,122.4,force,front_fx,0.0024855805095285177 +karman_re200,sr,306,122.4,force,front_fy,-0.0027700564824044704 +karman_re200,sr,306,122.4,force,upper_fx,0.005892689805477858 +karman_re200,sr,306,122.4,force,upper_fy,0.006445768289268017 +karman_re200,sr,306,122.4,force,lower_fx,-0.0068361456505954266 +karman_re200,sr,306,122.4,force,lower_fy,-0.002576143480837345 +karman_re200,sr,307,122.8,force,front_fx,0.0034618794452399015 +karman_re200,sr,307,122.8,force,front_fy,-0.00011308891407679766 +karman_re200,sr,307,122.8,force,upper_fx,0.004922511987388134 +karman_re200,sr,307,122.8,force,upper_fy,0.0059118811041116714 +karman_re200,sr,307,122.8,force,lower_fx,-0.008819615468382835 +karman_re200,sr,307,122.8,force,lower_fy,-0.002086242428049445 +karman_re200,sr,308,123.2,force,front_fx,0.0026789335533976555 +karman_re200,sr,308,123.2,force,front_fy,0.0024672122672200203 +karman_re200,sr,308,123.2,force,upper_fx,0.003429864067584276 +karman_re200,sr,308,123.2,force,upper_fy,0.005470015574246645 +karman_re200,sr,308,123.2,force,lower_fx,-0.008550714701414108 +karman_re200,sr,308,123.2,force,lower_fy,-0.003290628781542182 +karman_re200,sr,309,123.6,force,front_fx,0.0004399096651468426 +karman_re200,sr,309,123.6,force,front_fy,0.004160754382610321 +karman_re200,sr,309,123.6,force,upper_fx,0.0022001941688358784 +karman_re200,sr,309,123.6,force,upper_fy,0.005496250465512276 +karman_re200,sr,309,123.6,force,lower_fx,-0.005753534846007824 +karman_re200,sr,309,123.6,force,lower_fy,-0.005356908310204744 +karman_re200,sr,310,124.0,force,front_fx,-0.001613530097529292 +karman_re200,sr,310,124.0,force,front_fy,0.005056234076619148 +karman_re200,sr,310,124.0,force,upper_fx,0.0007921882206574082 +karman_re200,sr,310,124.0,force,upper_fy,0.006124972831457853 +karman_re200,sr,310,124.0,force,lower_fx,-0.0018125900533050299 +karman_re200,sr,310,124.0,force,lower_fy,-0.00653940811753273 +karman_re200,sr,311,124.4,force,front_fx,-0.002397703006863594 +karman_re200,sr,311,124.4,force,front_fy,0.005236257798969746 +karman_re200,sr,311,124.4,force,upper_fx,-0.0007008746033534408 +karman_re200,sr,311,124.4,force,upper_fy,0.0065173679031431675 +karman_re200,sr,311,124.4,force,lower_fx,0.0013404880883172154 +karman_re200,sr,311,124.4,force,lower_fy,-0.0066706715151667595 +karman_re200,sr,312,124.8,force,front_fx,-0.0015149059472605586 +karman_re200,sr,312,124.8,force,front_fy,0.005087685771286488 +karman_re200,sr,312,124.8,force,upper_fx,-0.002324251923710108 +karman_re200,sr,312,124.8,force,upper_fy,0.0057658059522509575 +karman_re200,sr,312,124.8,force,lower_fx,0.003659684443846345 +karman_re200,sr,312,124.8,force,lower_fy,-0.006791391409933567 +karman_re200,sr,313,125.2,force,front_fx,0.0005420888192020357 +karman_re200,sr,313,125.2,force,front_fy,0.004391742404550314 +karman_re200,sr,313,125.2,force,upper_fx,-0.004522630479186773 +karman_re200,sr,313,125.2,force,upper_fy,0.004083837848156691 +karman_re200,sr,313,125.2,force,lower_fx,0.0054353163577616215 +karman_re200,sr,313,125.2,force,lower_fy,-0.006815212778747082 +karman_re200,sr,314,125.6,force,front_fx,0.002700885757803917 +karman_re200,sr,314,125.6,force,front_fy,0.0025058938190340996 +karman_re200,sr,314,125.6,force,upper_fx,-0.007160622626543045 +karman_re200,sr,314,125.6,force,upper_fy,0.002418900839984417 +karman_re200,sr,314,125.6,force,lower_fx,0.005862672813236713 +karman_re200,sr,314,125.6,force,lower_fy,-0.006382150109857321 +karman_re200,sr,315,126.0,force,front_fx,0.0034725528676062822 +karman_re200,sr,315,126.0,force,front_fy,-0.00022642940166406333 +karman_re200,sr,315,126.0,force,upper_fx,-0.008965705521404743 +karman_re200,sr,315,126.0,force,upper_fy,0.002118853386491537 +karman_re200,sr,315,126.0,force,lower_fx,0.004742453806102276 +karman_re200,sr,315,126.0,force,lower_fy,-0.005844229366630316 +karman_re200,sr,316,126.4,force,front_fx,0.0024779371451586485 +karman_re200,sr,316,126.4,force,front_fy,-0.0027182709891349077 +karman_re200,sr,316,126.4,force,upper_fx,-0.008387407287955284 +karman_re200,sr,316,126.4,force,upper_fy,0.0034990450367331505 +karman_re200,sr,316,126.4,force,lower_fx,0.0032821630593389273 +karman_re200,sr,316,126.4,force,lower_fy,-0.00543052377179265 +karman_re200,sr,317,126.8,force,front_fx,0.0001676973479334265 +karman_re200,sr,317,126.8,force,front_fy,-0.004313874989748001 +karman_re200,sr,317,126.8,force,upper_fx,-0.005322935990989208 +karman_re200,sr,317,126.8,force,upper_fy,0.005599097814410925 +karman_re200,sr,317,126.8,force,lower_fx,0.0020682993344962597 +karman_re200,sr,317,126.8,force,lower_fy,-0.005550062283873558 +karman_re200,sr,318,127.2,force,front_fx,-0.0017772481078281999 +karman_re200,sr,318,127.2,force,front_fy,-0.005115631967782974 +karman_re200,sr,318,127.2,force,upper_fx,-0.001366672571748495 +karman_re200,sr,318,127.2,force,upper_fy,0.006625359877943993 +karman_re200,sr,318,127.2,force,lower_fx,0.000633137475233525 +karman_re200,sr,318,127.2,force,lower_fy,-0.006231312174350023 +karman_re200,sr,319,127.6,force,front_fx,-0.0023804609663784504 +karman_re200,sr,319,127.6,force,front_fy,-0.005231717601418495 +karman_re200,sr,319,127.6,force,upper_fx,0.0016508187400177121 +karman_re200,sr,319,127.6,force,upper_fy,0.006707245018333197 +karman_re200,sr,319,127.6,force,lower_fx,-0.0008701087790541351 +karman_re200,sr,319,127.6,force,lower_fy,-0.006528413388878107 +karman_re200,sr,320,128.0,force,front_fx,-0.0013270203489810228 +karman_re200,sr,320,128.0,force,front_fy,-0.00504566915333271 +karman_re200,sr,320,128.0,force,upper_fx,0.0038982948753982782 +karman_re200,sr,320,128.0,force,upper_fy,0.0068258303217589855 +karman_re200,sr,320,128.0,force,lower_fx,-0.002549511846154928 +karman_re200,sr,320,128.0,force,lower_fy,-0.005625879857689142 +karman_re200,sr,321,128.4,force,front_fx,0.0008144387393258512 +karman_re200,sr,321,128.4,force,front_fy,-0.004226469434797764 +karman_re200,sr,321,128.4,force,upper_fx,0.005568272899836302 +karman_re200,sr,321,128.4,force,upper_fy,0.006792725995182991 +karman_re200,sr,321,128.4,force,lower_fx,-0.004824854899197817 +karman_re200,sr,321,128.4,force,lower_fy,-0.003865668550133705 +karman_re200,sr,322,128.8,force,front_fx,0.002882057800889015 +karman_re200,sr,322,128.8,force,front_fy,-0.0022152848541736603 +karman_re200,sr,322,128.8,force,upper_fx,0.0058056325651705265 +karman_re200,sr,322,128.8,force,upper_fy,0.006317151710391045 +karman_re200,sr,322,128.8,force,lower_fx,-0.007450029719620943 +karman_re200,sr,322,128.8,force,lower_fy,-0.0022952368017286062 +karman_re200,sr,323,129.2,force,front_fx,0.0034581366926431656 +karman_re200,sr,323,129.2,force,front_fy,0.0005545696476474404 +karman_re200,sr,323,129.2,force,upper_fx,0.004572208970785141 +karman_re200,sr,323,129.2,force,upper_fy,0.005796090234071016 +karman_re200,sr,323,129.2,force,lower_fx,-0.009027170017361641 +karman_re200,sr,323,129.2,force,lower_fy,-0.002222589449957013 +karman_re200,sr,324,129.6,force,front_fx,0.002251465106382966 +karman_re200,sr,324,129.6,force,front_fy,0.0029471558518707752 +karman_re200,sr,324,129.6,force,upper_fx,0.0031461939215660095 +karman_re200,sr,324,129.6,force,upper_fy,0.0054200999438762665 +karman_re200,sr,324,129.6,force,lower_fx,-0.008126264438033104 +karman_re200,sr,324,129.6,force,lower_fy,-0.003762502921745181 +karman_re200,sr,325,130.0,force,front_fx,-0.00011031014582840726 +karman_re200,sr,325,130.0,force,front_fy,0.004445358645170927 +karman_re200,sr,325,130.0,force,upper_fx,0.001910426770336926 +karman_re200,sr,325,130.0,force,upper_fy,0.005619211588054895 +karman_re200,sr,325,130.0,force,lower_fx,-0.004848503973335028 +karman_re200,sr,325,130.0,force,lower_fy,-0.005802066531032324 +karman_re200,sr,326,130.4,force,front_fx,-0.0019364191684871912 +karman_re200,sr,326,130.4,force,front_fy,0.005154028069227934 +karman_re200,sr,326,130.4,force,upper_fx,0.00044500204967334867 +karman_re200,sr,326,130.4,force,upper_fy,0.006305220536887646 +karman_re200,sr,326,130.4,force,lower_fx,-0.0009543413179926574 +karman_re200,sr,326,130.4,force,lower_fy,-0.006632412783801556 +karman_re200,sr,327,130.8,force,front_fx,-0.002340679056942463 +karman_re200,sr,327,130.8,force,front_fy,0.0052149128168821335 +karman_re200,sr,327,130.8,force,upper_fx,-0.001049090176820755 +karman_re200,sr,327,130.8,force,upper_fy,0.0064715975895524025 +karman_re200,sr,327,130.8,force,lower_fx,0.0019351245136931539 +karman_re200,sr,327,130.8,force,lower_fy,-0.006685494910925627 +karman_re200,sr,328,131.2,force,front_fx,-0.001120429951697588 +karman_re200,sr,328,131.2,force,front_fy,0.005000233184546232 +karman_re200,sr,328,131.2,force,upper_fx,-0.0027710089925676584 +karman_re200,sr,328,131.2,force,upper_fy,0.005437320563942194 +karman_re200,sr,328,131.2,force,lower_fx,0.004145449493080378 +karman_re200,sr,328,131.2,force,lower_fy,-0.006826264783740044 +karman_re200,sr,329,131.6,force,front_fx,0.0010908221593126655 +karman_re200,sr,329,131.6,force,front_fy,0.004058447666466236 +karman_re200,sr,329,131.6,force,upper_fx,-0.005119943525642157 +karman_re200,sr,329,131.6,force,upper_fy,0.003644887823611498 +karman_re200,sr,329,131.6,force,lower_fx,0.005703034345060587 +karman_re200,sr,329,131.6,force,lower_fy,-0.006757180672138929 +karman_re200,sr,330,132.0,force,front_fx,0.0030353909824043512 +karman_re200,sr,330,132.0,force,front_fy,0.001929283607751131 +karman_re200,sr,330,132.0,force,upper_fx,-0.007724084425717592 +karman_re200,sr,330,132.0,force,upper_fy,0.00219194358214736 +karman_re200,sr,330,132.0,force,lower_fx,0.005732045043259859 +karman_re200,sr,330,132.0,force,lower_fy,-0.006254949141293764 +karman_re200,sr,331,132.4,force,front_fx,0.0034154767636209726 +karman_re200,sr,331,132.4,force,front_fy,-0.0008706293301656842 +karman_re200,sr,331,132.4,force,upper_fx,-0.009076815098524094 +karman_re200,sr,331,132.4,force,upper_fy,0.002304027322679758 +karman_re200,sr,331,132.4,force,lower_fx,0.004387314431369305 +karman_re200,sr,331,132.4,force,lower_fy,-0.005733405239880085 +karman_re200,sr,332,132.8,force,front_fx,0.002010116819292307 +karman_re200,sr,332,132.8,force,front_fy,-0.0031570333521813154 +karman_re200,sr,332,132.8,force,upper_fx,-0.007882404141128063 +karman_re200,sr,332,132.8,force,upper_fy,0.0039642080664634705 +karman_re200,sr,332,132.8,force,lower_fx,0.0029995753429830074 +karman_re200,sr,332,132.8,force,lower_fy,-0.0053876843303442 +karman_re200,sr,333,133.2,force,front_fx,-0.00036017742240801454 +karman_re200,sr,333,133.2,force,front_fy,-0.004570432007312775 +karman_re200,sr,333,133.2,force,upper_fx,-0.004411863163113594 +karman_re200,sr,333,133.2,force,upper_fy,0.00595669262111187 +karman_re200,sr,333,133.2,force,lower_fx,0.0017583827720955014 +karman_re200,sr,333,133.2,force,lower_fy,-0.005667965859174728 +karman_re200,sr,334,133.6,force,front_fx,-0.002061068080365658 +karman_re200,sr,334,133.6,force,front_fy,-0.0051955957897007465 +karman_re200,sr,334,133.6,force,upper_fx,-0.0005664505297318101 +karman_re200,sr,334,133.6,force,upper_fy,0.006658799014985561 +karman_re200,sr,334,133.6,force,lower_fx,0.0002850462624337524 +karman_re200,sr,334,133.6,force,lower_fy,-0.006369666662067175 +karman_re200,sr,335,134.0,force,front_fx,-0.002272097859531641 +karman_re200,sr,335,134.0,force,front_fy,-0.005213416647166014 +karman_re200,sr,335,134.0,force,upper_fx,0.002217999193817377 +karman_re200,sr,335,134.0,force,upper_fy,0.006713498383760452 +karman_re200,sr,335,134.0,force,lower_fx,-0.001217452809214592 +karman_re200,sr,335,134.0,force,lower_fy,-0.006426425650715828 +karman_re200,sr,336,134.4,force,front_fx,-0.000897625635843724 +karman_re200,sr,336,134.4,force,front_fy,-0.004955071024596691 +karman_re200,sr,336,134.4,force,upper_fx,0.0043722051195800304 +karman_re200,sr,336,134.4,force,upper_fy,0.0068514044396579266 +karman_re200,sr,336,134.4,force,lower_fx,-0.003009659005329013 +karman_re200,sr,336,134.4,force,lower_fy,-0.005274987313896418 +karman_re200,sr,337,134.8,force,front_fx,0.0013672809582203627 +karman_re200,sr,337,134.8,force,front_fy,-0.0038668618071824312 +karman_re200,sr,337,134.8,force,upper_fx,0.0057897912338376045 +karman_re200,sr,337,134.8,force,upper_fy,0.006715814583003521 +karman_re200,sr,337,134.8,force,lower_fx,-0.005434845574200153 +karman_re200,sr,337,134.8,force,lower_fy,-0.0034404301550239325 +karman_re200,sr,338,135.2,force,front_fx,0.003172081196680665 +karman_re200,sr,338,135.2,force,front_fy,-0.0016165446722880006 +karman_re200,sr,338,135.2,force,upper_fx,0.0056275189854204655 +karman_re200,sr,338,135.2,force,upper_fy,0.0061866771429777145 +karman_re200,sr,338,135.2,force,lower_fx,-0.007988357916474342 +karman_re200,sr,338,135.2,force,lower_fy,-0.002114952774718404 +karman_re200,sr,339,135.6,force,front_fx,0.003347389167174697 +karman_re200,sr,339,135.6,force,front_fy,0.001192538533359766 +karman_re200,sr,339,135.6,force,upper_fx,0.004219868220388889 +karman_re200,sr,339,135.6,force,upper_fy,0.005685125011950731 +karman_re200,sr,339,135.6,force,lower_fx,-0.009075284935534 +karman_re200,sr,339,135.6,force,lower_fy,-0.0024473515804857016 +karman_re200,sr,340,136.0,force,front_fx,0.0017471349565312266 +karman_re200,sr,340,136.0,force,front_fy,0.003370210761204362 +karman_re200,sr,340,136.0,force,upper_fx,0.0028779825661331415 +karman_re200,sr,340,136.0,force,upper_fy,0.005403290968388319 +karman_re200,sr,340,136.0,force,lower_fx,-0.007563805673271418 +karman_re200,sr,340,136.0,force,lower_fy,-0.004248835612088442 +karman_re200,sr,341,136.4,force,front_fx,-0.0006183601799421012 +karman_re200,sr,341,136.4,force,front_fy,0.004687136970460415 +karman_re200,sr,341,136.4,force,upper_fx,0.0016065307427197695 +karman_re200,sr,341,136.4,force,upper_fy,0.005768327042460442 +karman_re200,sr,341,136.4,force,lower_fx,-0.003934367094188929 +karman_re200,sr,341,136.4,force,lower_fy,-0.006140255369246006 +karman_re200,sr,342,136.8,force,front_fx,-0.0021825639996677637 +karman_re200,sr,342,136.8,force,front_fy,0.00521382549777627 +karman_re200,sr,342,136.8,force,upper_fx,0.00010913078585872427 +karman_re200,sr,342,136.8,force,upper_fy,0.006449720356613398 +karman_re200,sr,342,136.8,force,lower_fx,-0.00019830824749078602 +karman_re200,sr,342,136.8,force,lower_fy,-0.006682229228317738 +karman_re200,sr,343,137.2,force,front_fx,-0.002194732427597046 +karman_re200,sr,343,137.2,force,front_fy,0.005185777321457863 +karman_re200,sr,343,137.2,force,upper_fx,-0.0014001798117533326 +karman_re200,sr,343,137.2,force,upper_fy,0.006352963857352734 +karman_re200,sr,343,137.2,force,lower_fx,0.002469155006110668 +karman_re200,sr,343,137.2,force,lower_fy,-0.006719297729432583 +karman_re200,sr,344,137.6,force,front_fx,-0.0006800572737120092 +karman_re200,sr,344,137.6,force,front_fy,0.004878716077655554 +karman_re200,sr,344,137.6,force,upper_fx,-0.00324723101221025 +karman_re200,sr,344,137.6,force,upper_fy,0.005077356472611427 +karman_re200,sr,344,137.6,force,lower_fx,0.004578839056193829 +karman_re200,sr,344,137.6,force,lower_fy,-0.006851600483059883 +karman_re200,sr,345,138.0,force,front_fx,0.0016181714599952102 +karman_re200,sr,345,138.0,force,front_fy,0.003657075809314847 +karman_re200,sr,345,138.0,force,upper_fx,-0.005720168352127075 +karman_re200,sr,345,138.0,force,upper_fy,0.003237186698243022 +karman_re200,sr,345,138.0,force,lower_fx,0.005859692115336657 +karman_re200,sr,345,138.0,force,lower_fy,-0.0066679795272648335 +karman_re200,sr,346,138.4,force,front_fx,0.0032669741194695234 +karman_re200,sr,346,138.4,force,front_fy,0.0013114794855937362 +karman_re200,sr,346,138.4,force,upper_fx,-0.00819389894604683 +karman_re200,sr,346,138.4,force,upper_fy,0.0020729280076920986 +karman_re200,sr,346,138.4,force,lower_fx,0.005506998859345913 +karman_re200,sr,346,138.4,force,lower_fy,-0.0061290026642382145 +karman_re200,sr,347,138.8,force,front_fx,0.0032454661559313536 +karman_re200,sr,347,138.8,force,front_fy,-0.001479102997109294 +karman_re200,sr,347,138.8,force,upper_fx,-0.009014156647026539 +karman_re200,sr,347,138.8,force,upper_fy,0.0025893948040902615 +karman_re200,sr,347,138.8,force,lower_fx,0.004036897327750921 +karman_re200,sr,347,138.8,force,lower_fy,-0.005630859639495611 +karman_re200,sr,348,139.2,force,front_fx,0.0014774369774386287 +karman_re200,sr,348,139.2,force,front_fy,-0.0035496819764375687 +karman_re200,sr,348,139.2,force,upper_fx,-0.007227946072816849 +karman_re200,sr,348,139.2,force,upper_fy,0.004460260737687349 +karman_re200,sr,348,139.2,force,lower_fx,0.0027247932739555836 +karman_re200,sr,348,139.2,force,lower_fy,-0.005391770973801613 +karman_re200,sr,349,139.6,force,front_fx,-0.000854915997479111 +karman_re200,sr,349,139.6,force,front_fy,-0.004782985430210829 +karman_re200,sr,349,139.6,force,upper_fx,-0.003488522721454501 +karman_re200,sr,349,139.6,force,upper_fy,0.006227326579391956 +karman_re200,sr,349,139.6,force,lower_fx,0.0014304501237347722 +karman_re200,sr,349,139.6,force,lower_fy,-0.005818760488182306 +karman_re200,sr,350,140.0,force,front_fx,-0.0022675287909805775 +karman_re200,sr,350,140.0,force,front_fy,-0.005234722513705492 +karman_re200,sr,350,140.0,force,upper_fx,0.00014588091289624572 +karman_re200,sr,350,140.0,force,upper_fy,0.006665043067187071 +karman_re200,sr,350,140.0,force,lower_fx,-6.207441037986428e-05 +karman_re200,sr,350,140.0,force,lower_fy,-0.006468579638749361 +karman_re200,sr,351,140.4,force,front_fx,-0.002076794859021902 +karman_re200,sr,351,140.4,force,front_fy,-0.005180323030799627 +karman_re200,sr,351,140.4,force,upper_fx,0.002733533037826419 +karman_re200,sr,351,140.4,force,upper_fy,0.0067287045530974865 +karman_re200,sr,351,140.4,force,lower_fx,-0.0015799072571098804 +karman_re200,sr,351,140.4,force,lower_fy,-0.00624778913334012 +karman_re200,sr,352,140.8,force,front_fx,-0.00042577768908813596 +karman_re200,sr,352,140.8,force,front_fy,-0.004815844353288412 +karman_re200,sr,352,140.8,force,upper_fx,0.00478855986148119 +karman_re200,sr,352,140.8,force,upper_fy,0.006855473387986422 +karman_re200,sr,352,140.8,force,lower_fx,-0.003502253908663988 +karman_re200,sr,352,140.8,force,lower_fy,-0.004881166387349367 +karman_re200,sr,353,141.2,force,front_fx,0.001881047966890037 +karman_re200,sr,353,141.2,force,front_fy,-0.0034353788942098618 +karman_re200,sr,353,141.2,force,upper_fx,0.005898837465792894 +karman_re200,sr,353,141.2,force,upper_fy,0.0066100130788981915 +karman_re200,sr,353,141.2,force,lower_fx,-0.006038612686097622 +karman_re200,sr,353,141.2,force,lower_fy,-0.003042989643290639 +karman_re200,sr,354,141.6,force,front_fx,0.0033526653423905373 +karman_re200,sr,354,141.6,force,front_fy,-0.0009809458861127496 +karman_re200,sr,354,141.6,force,upper_fx,0.0053598638623952866 +karman_re200,sr,354,141.6,force,upper_fy,0.006061598192900419 +karman_re200,sr,354,141.6,force,lower_fx,-0.00841833371669054 +karman_re200,sr,354,141.6,force,lower_fy,-0.0020363526418805122 +karman_re200,sr,355,142.0,force,front_fx,0.003124895039945841 +karman_re200,sr,355,142.0,force,front_fy,0.001780098071321845 +karman_re200,sr,355,142.0,force,upper_fx,0.003866988467052579 +karman_re200,sr,355,142.0,force,upper_fy,0.005580941215157509 +karman_re200,sr,355,142.0,force,lower_fx,-0.00895235501229763 +karman_re200,sr,355,142.0,force,lower_fy,-0.0027524724137037992 +karman_re200,sr,356,142.4,force,front_fx,0.0011884330306202173 +karman_re200,sr,356,142.4,force,front_fy,0.0037431607488542795 +karman_re200,sr,356,142.4,force,upper_fx,0.002598584396764636 +karman_re200,sr,356,142.4,force,upper_fy,0.005418072454631329 +karman_re200,sr,356,142.4,force,lower_fx,-0.006865628995001316 +karman_re200,sr,356,142.4,force,lower_fy,-0.004734015092253685 +karman_re200,sr,357,142.8,force,front_fx,-0.0010828855447471142 +karman_re200,sr,357,142.8,force,front_fy,0.004891648888587952 +karman_re200,sr,357,142.8,force,upper_fx,0.001275483169592917 +karman_re200,sr,357,142.8,force,upper_fy,0.005924130789935589 +karman_re200,sr,357,142.8,force,lower_fx,-0.003017436945810914 +karman_re200,sr,357,142.8,force,lower_fy,-0.006380143575370312 +karman_re200,sr,358,143.2,force,front_fx,-0.0023389426060020924 +karman_re200,sr,358,143.2,force,front_fy,0.00524117611348629 +karman_re200,sr,358,143.2,force,upper_fx,-0.00023120215337257832 +karman_re200,sr,358,143.2,force,upper_fy,0.006530254613608122 +karman_re200,sr,358,143.2,force,lower_fx,0.00048670597607269883 +karman_re200,sr,358,143.2,force,lower_fy,-0.006697977893054485 +karman_re200,sr,359,143.6,force,front_fx,-0.0019593483302742243 +karman_re200,sr,359,143.6,force,front_fy,0.005153979640454054 +karman_re200,sr,359,143.6,force,upper_fx,-0.0017753348220139742 +karman_re200,sr,359,143.6,force,upper_fy,0.006153864786028862 +karman_re200,sr,359,143.6,force,lower_fx,0.0029743078630417585 +karman_re200,sr,359,143.6,force,lower_fy,-0.006756111513823271 +karman_re200,sr,360,144.0,force,front_fx,-0.00018723082030192018 +karman_re200,sr,360,144.0,force,front_fy,0.004710279870778322 +karman_re200,sr,360,144.0,force,upper_fx,-0.00376418000087142 +karman_re200,sr,360,144.0,force,upper_fy,0.00467358622699976 +karman_re200,sr,360,144.0,force,lower_fx,0.004964686930179596 +karman_re200,sr,360,144.0,force,lower_fy,-0.006855832878500223 +karman_re200,sr,361,144.4,force,front_fx,0.0021140226162970066 +karman_re200,sr,361,144.4,force,front_fy,0.0031950571574270725 +karman_re200,sr,361,144.4,force,upper_fx,-0.00633172458037734 +karman_re200,sr,361,144.4,force,upper_fy,0.0028574734460562468 +karman_re200,sr,361,144.4,force,lower_fx,0.005910868756473064 +karman_re200,sr,361,144.4,force,lower_fy,-0.006551734171807766 +karman_re200,sr,362,144.8,force,front_fx,0.0034033500123769045 +karman_re200,sr,362,144.8,force,front_fy,0.0006559938774444163 +karman_re200,sr,362,144.8,force,upper_fx,-0.008574867621064186 +karman_re200,sr,362,144.8,force,upper_fy,0.0020465156994760036 +karman_re200,sr,362,144.8,force,lower_fx,0.005204265005886555 +karman_re200,sr,362,144.8,force,lower_fy,-0.006005993112921715 +karman_re200,sr,363,145.2,force,front_fx,0.002970895729959011 +karman_re200,sr,363,145.2,force,front_fy,-0.0020486111752688885 +karman_re200,sr,363,145.2,force,upper_fx,-0.008806761354207993 +karman_re200,sr,363,145.2,force,upper_fy,0.0029550164472311735 +karman_re200,sr,363,145.2,force,lower_fx,0.003696719417348504 +karman_re200,sr,363,145.2,force,lower_fy,-0.005540273152291775 +karman_re200,sr,364,145.6,force,front_fx,0.0009038340067490935 +karman_re200,sr,364,145.6,force,front_fy,-0.0039031622000038624 +karman_re200,sr,364,145.6,force,upper_fx,-0.006451447028666735 +karman_re200,sr,364,145.6,force,upper_fy,0.004972030874341726 +karman_re200,sr,364,145.6,force,lower_fx,0.0024449864868074656 +karman_re200,sr,364,145.6,force,lower_fy,-0.005440315697342157 +karman_re200,sr,365,146.0,force,front_fx,-0.0012962440960109234 +karman_re200,sr,365,146.0,force,front_fy,-0.0049521056935191154 +karman_re200,sr,365,146.0,force,upper_fx,-0.0025569198187440634 +karman_re200,sr,365,146.0,force,upper_fy,0.0064355432987213135 +karman_re200,sr,365,146.0,force,lower_fx,0.00108510279096663 +karman_re200,sr,365,146.0,force,lower_fy,-0.005992232356220484 +karman_re200,sr,366,146.4,force,front_fx,-0.002381940372288227 +karman_re200,sr,366,146.4,force,front_fy,-0.00524227786809206 +karman_re200,sr,366,146.4,force,upper_fx,0.0008094549411907792 +karman_re200,sr,366,146.4,force,upper_fy,0.006670930422842503 +karman_re200,sr,366,146.4,force,lower_fx,-0.00041359139140695333 +karman_re200,sr,366,146.4,force,lower_fy,-0.006522867828607559 +karman_re200,sr,367,146.8,force,front_fx,-0.001802679616957903 +karman_re200,sr,367,146.8,force,front_fy,-0.005131646525114775 +karman_re200,sr,367,146.8,force,upper_fx,0.0032354274298995733 +karman_re200,sr,367,146.8,force,upper_fy,0.006757286377251148 +karman_re200,sr,367,146.8,force,lower_fx,-0.0019761286675930023 +karman_re200,sr,367,146.8,force,lower_fy,-0.00600577425211668 +karman_re200,sr,368,147.2,force,front_fx,8.674767741467804e-05 +karman_re200,sr,368,147.2,force,front_fy,-0.004608497489243746 +karman_re200,sr,368,147.2,force,upper_fx,0.005159622523933649 +karman_re200,sr,368,147.2,force,upper_fy,0.006841291673481464 +karman_re200,sr,368,147.2,force,lower_fx,-0.00404026173055172 +karman_re200,sr,368,147.2,force,lower_fy,-0.004448628053069115 +karman_re200,sr,369,147.6,force,front_fx,0.002350320341065526 +karman_re200,sr,369,147.6,force,front_fy,-0.0029496040660887957 +karman_re200,sr,369,147.6,force,upper_fx,0.005911667365580797 +karman_re200,sr,369,147.6,force,upper_fy,0.00648838747292757 +karman_re200,sr,369,147.6,force,lower_fx,-0.006646992173045874 +karman_re200,sr,369,147.6,force,lower_fy,-0.002678388962522149 +karman_re200,sr,370,148.0,force,front_fx,0.00344697292894125 +karman_re200,sr,370,148.0,force,front_fy,-0.0003220383950974792 +karman_re200,sr,370,148.0,force,upper_fx,0.005030505824834108 +karman_re200,sr,370,148.0,force,upper_fy,0.005942674819380045 +karman_re200,sr,370,148.0,force,lower_fx,-0.00875100027769804 +karman_re200,sr,370,148.0,force,lower_fy,-0.0020464181434363127 +karman_re200,sr,371,148.4,force,front_fx,0.0028058020398020744 +karman_re200,sr,371,148.4,force,front_fy,0.002313899574801326 +karman_re200,sr,371,148.4,force,upper_fx,0.0035288596991449594 +karman_re200,sr,371,148.4,force,upper_fy,0.0054877097718417645 +karman_re200,sr,371,148.4,force,lower_fx,-0.008688297122716904 +karman_re200,sr,371,148.4,force,lower_fy,-0.0031339155975729227 +karman_re200,sr,372,148.8,force,front_fx,0.0006223121890798211 +karman_re200,sr,372,148.8,force,front_fy,0.004067039117217064 +karman_re200,sr,372,148.8,force,upper_fx,0.00230457354336977 +karman_re200,sr,372,148.8,force,upper_fy,0.0054677859880030155 +karman_re200,sr,372,148.8,force,lower_fx,-0.006052917800843716 +karman_re200,sr,372,148.8,force,lower_fy,-0.005213326308876276 +karman_re200,sr,373,149.2,force,front_fx,-0.0014895295025780797 +karman_re200,sr,373,149.2,force,front_fy,0.0050248210318386555 +karman_re200,sr,373,149.2,force,upper_fx,0.0009208390838466585 +karman_re200,sr,373,149.2,force,upper_fy,0.006082245614379644 +karman_re200,sr,373,149.2,force,lower_fx,-0.0020999270491302013 +karman_re200,sr,373,149.2,force,lower_fy,-0.00653120269998908 +karman_re200,sr,374,149.6,force,front_fx,-0.0023993889335542917 +karman_re200,sr,374,149.6,force,front_fy,0.005244027357548475 +karman_re200,sr,374,149.6,force,upper_fx,-0.0005811937735415995 +karman_re200,sr,374,149.6,force,upper_fy,0.006545056588947773 +karman_re200,sr,374,149.6,force,lower_fx,0.0011409636354073882 +karman_re200,sr,374,149.6,force,lower_fy,-0.006696837488561869 +karman_re200,sr,375,150.0,force,front_fx,-0.0016381156165152788 +karman_re200,sr,375,150.0,force,front_fy,0.005105992779135704 +karman_re200,sr,375,150.0,force,upper_fx,-0.002187067875638604 +karman_re200,sr,375,150.0,force,upper_fy,0.005882187280803919 +karman_re200,sr,375,150.0,force,lower_fx,0.003486732952296734 +karman_re200,sr,375,150.0,force,lower_fy,-0.0067933667451143265 +karman_re200,sr,376,150.4,force,front_fx,0.0003572074929252267 +karman_re200,sr,376,150.4,force,front_fy,0.0044759525917470455 +karman_re200,sr,376,150.4,force,upper_fx,-0.004333643242716789 +karman_re200,sr,376,150.4,force,upper_fy,0.004233642015606165 +karman_re200,sr,376,150.4,force,lower_fx,0.0053199343383312225 +karman_re200,sr,376,150.4,force,lower_fy,-0.00683193514123559 +karman_re200,sr,377,150.8,force,front_fx,0.0025655815843492746 +karman_re200,sr,377,150.8,force,front_fy,0.0026786495000123978 +karman_re200,sr,377,150.8,force,upper_fx,-0.006958957761526108 +karman_re200,sr,377,150.8,force,upper_fy,0.002517120912671089 +karman_re200,sr,377,150.8,force,lower_fx,0.0058830962516367435 +karman_re200,sr,377,150.8,force,lower_fy,-0.0064232307486236095 +karman_re200,sr,378,151.2,force,front_fx,0.0034688208252191544 +karman_re200,sr,378,151.2,force,front_fy,-1.2261446499906015e-05 +karman_re200,sr,378,151.2,force,upper_fx,-0.00887991487979889 +karman_re200,sr,378,151.2,force,upper_fy,0.0020997263491153717 +karman_re200,sr,378,151.2,force,lower_fx,0.004860192071646452 +karman_re200,sr,378,151.2,force,lower_fy,-0.005887633189558983 +karman_re200,sr,379,151.6,force,front_fx,0.0026089358143508434 +karman_re200,sr,379,151.6,force,front_fy,-0.0025656986981630325 +karman_re200,sr,379,151.6,force,upper_fx,-0.008491266518831253 +karman_re200,sr,379,151.6,force,upper_fy,0.003380540991201997 +karman_re200,sr,379,151.6,force,lower_fx,0.003382778959348798 +karman_re200,sr,379,151.6,force,lower_fy,-0.005462956614792347 +karman_re200,sr,380,152.0,force,front_fx,0.0003444469766691327 +karman_re200,sr,380,152.0,force,front_fy,-0.0042185415513813496 +karman_re200,sr,380,152.0,force,upper_fx,-0.005592219065874815 +karman_re200,sr,380,152.0,force,upper_fy,0.005466960836201906 +karman_re200,sr,380,152.0,force,lower_fx,0.002158393617719412 +karman_re200,sr,380,152.0,force,lower_fy,-0.005527466535568237 +karman_re200,sr,381,152.4,force,front_fx,-0.0016791324596852064 +karman_re200,sr,381,152.4,force,front_fy,-0.005078157410025597 +karman_re200,sr,381,152.4,force,upper_fx,-0.0016452382551506162 +karman_re200,sr,381,152.4,force,upper_fy,0.006582645699381828 +karman_re200,sr,381,152.4,force,lower_fx,0.0007347326609306037 +karman_re200,sr,381,152.4,force,lower_fy,-0.006176133174449205 +karman_re200,sr,382,152.8,force,front_fx,-0.002395779825747013 +karman_re200,sr,382,152.8,force,front_fy,-0.00522926589474082 +karman_re200,sr,382,152.8,force,upper_fx,0.0014492421178147197 +karman_re200,sr,382,152.8,force,upper_fy,0.006684275344014168 +karman_re200,sr,382,152.8,force,lower_fx,-0.0007646935991942883 +karman_re200,sr,382,152.8,force,lower_fy,-0.006528186146169901 +karman_re200,sr,383,153.2,force,front_fx,-0.001454563345760107 +karman_re200,sr,383,153.2,force,front_fy,-0.005066534969955683 +karman_re200,sr,383,153.2,force,upper_fx,0.0037400939036160707 +karman_re200,sr,383,153.2,force,upper_fy,0.0067995525896549225 +karman_re200,sr,383,153.2,force,lower_fx,-0.0024050334468483925 +karman_re200,sr,383,153.2,force,lower_fy,-0.005714223254472017 +karman_re200,sr,384,153.6,force,front_fx,0.0006341304397210479 +karman_re200,sr,384,153.6,force,front_fy,-0.00433057127520442 +karman_re200,sr,384,153.6,force,upper_fx,0.005485037341713905 +karman_re200,sr,384,153.6,force,upper_fy,0.00680740037932992 +karman_re200,sr,384,153.6,force,lower_fx,-0.004623809829354286 +karman_re200,sr,384,153.6,force,lower_fy,-0.004001598805189133 +karman_re200,sr,385,154.0,force,front_fx,0.002763835247606039 +karman_re200,sr,385,154.0,force,front_fy,-0.002406116109341383 +karman_re200,sr,385,154.0,force,upper_fx,0.00584612088277936 +karman_re200,sr,385,154.0,force,upper_fy,0.006360732484608889 +karman_re200,sr,385,154.0,force,lower_fx,-0.00725543312728405 +karman_re200,sr,385,154.0,force,lower_fy,-0.0023768353275954723 +karman_re200,sr,386,154.4,force,front_fx,0.0034685826394706964 +karman_re200,sr,386,154.4,force,front_fy,0.00033842361881397665 +karman_re200,sr,386,154.4,force,upper_fx,0.004679390694946051 +karman_re200,sr,386,154.4,force,upper_fy,0.0058290716260671616 +karman_re200,sr,386,154.4,force,lower_fx,-0.008982423692941666 +karman_re200,sr,386,154.4,force,lower_fy,-0.00215322058647871 +karman_re200,sr,387,154.8,force,front_fx,0.002395345363765955 +karman_re200,sr,387,154.8,force,front_fy,0.0027949970681220293 +karman_re200,sr,387,154.8,force,upper_fx,0.0032266557682305574 +karman_re200,sr,387,154.8,force,upper_fy,0.005420358385890722 +karman_re200,sr,387,154.8,force,lower_fx,-0.008295244537293911 +karman_re200,sr,387,154.8,force,lower_fy,-0.003584525315091014 +karman_re200,sr,388,155.2,force,front_fx,6.741214747307822e-05 +karman_re200,sr,388,155.2,force,front_fy,0.004355927463620901 +karman_re200,sr,388,155.2,force,upper_fx,0.0020046671852469444 +karman_re200,sr,388,155.2,force,upper_fy,0.005562737584114075 +karman_re200,sr,388,155.2,force,lower_fx,-0.005159746389836073 +karman_re200,sr,388,155.2,force,lower_fy,-0.005650283768773079 +karman_re200,sr,389,155.6,force,front_fx,-0.001834325143136084 +karman_re200,sr,389,155.6,force,front_fy,0.005131235346198082 +karman_re200,sr,389,155.6,force,upper_fx,0.0005632633110508323 +karman_re200,sr,389,155.6,force,upper_fy,0.006243547424674034 +karman_re200,sr,389,155.6,force,lower_fx,-0.0012231965083628893 +karman_re200,sr,389,155.6,force,lower_fy,-0.006611549761146307 +karman_re200,sr,390,156.0,force,front_fx,-0.002365292049944401 +karman_re200,sr,390,156.0,force,front_fy,0.005239661317318678 +karman_re200,sr,390,156.0,force,upper_fx,-0.0009315880597569048 +karman_re200,sr,390,156.0,force,upper_fy,0.006499601528048515 +karman_re200,sr,390,156.0,force,lower_fx,0.0017564984736964107 +karman_re200,sr,390,156.0,force,lower_fy,-0.006694138515740633 +karman_re200,sr,391,156.4,force,front_fx,-0.0012515757698565722 +karman_re200,sr,391,156.4,force,front_fy,0.005037425085902214 +karman_re200,sr,391,156.4,force,upper_fx,-0.0026286158245056868 +karman_re200,sr,391,156.4,force,upper_fy,0.005559037439525127 +karman_re200,sr,391,156.4,force,lower_fx,0.003993849270045757 +karman_re200,sr,391,156.4,force,lower_fy,-0.006826341152191162 +karman_re200,sr,392,156.8,force,front_fx,0.0009207359980791807 +karman_re200,sr,392,156.8,force,front_fy,0.004171025939285755 +karman_re200,sr,392,156.8,force,upper_fx,-0.004935834091156721 +karman_re200,sr,392,156.8,force,upper_fy,0.0037876004353165627 +karman_re200,sr,392,156.8,force,lower_fx,0.005620637908577919 +karman_re200,sr,392,156.8,force,lower_fy,-0.006781017407774925 +karman_re200,sr,393,157.2,force,front_fx,0.0029446769040077925 +karman_re200,sr,393,157.2,force,front_fy,0.002111557638272643 +karman_re200,sr,393,157.2,force,upper_fx,-0.007559940218925476 +karman_re200,sr,393,157.2,force,upper_fy,0.0022533864248543978 +karman_re200,sr,393,157.2,force,lower_fx,0.005780031904578209 +karman_re200,sr,393,157.2,force,lower_fy,-0.006292326375842094 +karman_re200,sr,394,157.6,force,front_fx,0.0034475158900022507 +karman_re200,sr,394,157.6,force,front_fy,-0.0006738993688486516 +karman_re200,sr,394,157.6,force,upper_fx,-0.009061324410140514 +karman_re200,sr,394,157.6,force,upper_fy,0.00224416796118021 +karman_re200,sr,394,157.6,force,lower_fx,0.0045057907700538635 +karman_re200,sr,394,157.6,force,lower_fy,-0.00577298691496253 +karman_re200,sr,395,158.0,force,front_fx,0.0021699536591768265 +karman_re200,sr,395,158.0,force,front_fy,-0.003033609129488468 +karman_re200,sr,395,158.0,force,upper_fx,-0.008049730211496353 +karman_re200,sr,395,158.0,force,upper_fy,0.003840397112071514 +karman_re200,sr,395,158.0,force,lower_fx,0.003098817775025964 +karman_re200,sr,395,158.0,force,lower_fy,-0.005410656798630953 +karman_re200,sr,396,158.4,force,front_fx,-0.0002003933332161978 +karman_re200,sr,396,158.4,force,front_fy,-0.004495012108236551 +karman_re200,sr,396,158.4,force,upper_fx,-0.0046908073127269745 +karman_re200,sr,396,158.4,force,upper_fy,0.005879214499145746 +karman_re200,sr,396,158.4,force,lower_fx,0.001864571706391871 +karman_re200,sr,396,158.4,force,lower_fy,-0.005646065343171358 +karman_re200,sr,397,158.8,force,front_fx,-0.001985488459467888 +karman_re200,sr,397,158.8,force,front_fy,-0.005171444267034531 +karman_re200,sr,397,158.8,force,upper_fx,-0.0008086783927865326 +karman_re200,sr,397,158.8,force,upper_fy,0.006661324296146631 +karman_re200,sr,397,158.8,force,lower_fx,0.0003968288074247539 +karman_re200,sr,397,158.8,force,lower_fy,-0.006344177294522524 +karman_re200,sr,398,159.2,force,front_fx,-0.0023183943703770638 +karman_re200,sr,398,159.2,force,front_fy,-0.005211278796195984 +karman_re200,sr,398,159.2,force,upper_fx,0.002035172889009118 +karman_re200,sr,398,159.2,force,upper_fy,0.006706284824758768 +karman_re200,sr,398,159.2,force,lower_fx,-0.0011098545510321856 +karman_re200,sr,398,159.2,force,lower_fy,-0.006469147279858589 +karman_re200,sr,399,159.6,force,front_fx,-0.0010478149633854628 +karman_re200,sr,399,159.6,force,front_fy,-0.004979824647307396 +karman_re200,sr,399,159.6,force,upper_fx,0.004221619572490454 +karman_re200,sr,399,159.6,force,upper_fy,0.00683953333646059 +karman_re200,sr,399,159.6,force,lower_fx,-0.0028570739086717367 +karman_re200,sr,399,159.6,force,lower_fy,-0.0053846752271056175 +karman_re200,sr,0,0.0,alpha,front,2.9689984557112057 +karman_re200,sr,0,0.0,alpha,upper,-4.779317406639251 +karman_re200,sr,0,0.0,alpha,lower,2.0830999543819817 +karman_re200,sr,1,0.4,alpha,front,2.2493591990490396 +karman_re200,sr,1,0.4,alpha,upper,-4.0123295200251325 +karman_re200,sr,1,0.4,alpha,lower,2.8500878409960992 +karman_re200,sr,2,0.8,alpha,front,1.2168573718201985 +karman_re200,sr,2,0.8,alpha,upper,-4.129817328379798 +karman_re200,sr,2,0.8,alpha,lower,2.732600032641434 +karman_re200,sr,3,1.2,alpha,front,0.5714366874186562 +karman_re200,sr,3,1.2,alpha,upper,-4.775381547246607 +karman_re200,sr,3,1.2,alpha,lower,2.087035813774626 +karman_re200,sr,4,1.6,alpha,front,0.17234642263565078 +karman_re200,sr,4,1.6,alpha,upper,-3.930769902384971 +karman_re200,sr,4,1.6,alpha,lower,2.9316474586362613 +karman_re200,sr,5,2.0,alpha,front,-0.5312685931684175 +karman_re200,sr,5,2.0,alpha,upper,-2.0561950699680835 +karman_re200,sr,5,2.0,alpha,lower,4.806222291053149 +karman_re200,sr,6,2.4,alpha,front,-1.4847862282048752 +karman_re200,sr,6,2.4,alpha,upper,-0.5970260502549625 +karman_re200,sr,6,2.4,alpha,lower,6.265391310766271 +karman_re200,sr,7,2.8,alpha,front,-2.264170175303835 +karman_re200,sr,7,2.8,alpha,upper,-0.17787453320966629 +karman_re200,sr,7,2.8,alpha,lower,6.6845428278115655 +karman_re200,sr,8,3.2,alpha,front,-2.509200364279312 +karman_re200,sr,8,3.2,alpha,upper,-0.3554890185613182 +karman_re200,sr,8,3.2,alpha,lower,6.506928342459914 +karman_re200,sr,9,3.6,alpha,front,-2.424087444795496 +karman_re200,sr,9,3.6,alpha,upper,-2.2205175041026575 +karman_re200,sr,9,3.6,alpha,lower,4.641899856918575 +karman_re200,sr,10,4.0,alpha,front,-1.5205170612923895 +karman_re200,sr,10,4.0,alpha,upper,-4.435425269984139 +karman_re200,sr,10,4.0,alpha,lower,2.426992091037093 +karman_re200,sr,11,4.4,alpha,front,-0.21111557437300865 +karman_re200,sr,11,4.4,alpha,upper,-4.228758853294376 +karman_re200,sr,11,4.4,alpha,lower,2.6336585077268566 +karman_re200,sr,12,4.8,alpha,front,0.7007995085644779 +karman_re200,sr,12,4.8,alpha,upper,-3.560001960270936 +karman_re200,sr,12,4.8,alpha,lower,3.3024154007502964 +karman_re200,sr,13,5.2,alpha,front,1.352757764775737 +karman_re200,sr,13,5.2,alpha,upper,-4.283405365245411 +karman_re200,sr,13,5.2,alpha,lower,2.579011995775821 +karman_re200,sr,14,5.6,alpha,front,2.1333256327152523 +karman_re200,sr,14,5.6,alpha,upper,-5.86640582062688 +karman_re200,sr,14,5.6,alpha,lower,0.9960115403943526 +karman_re200,sr,15,6.0,alpha,front,2.83103182896017 +karman_re200,sr,15,6.0,alpha,upper,-6.789048100736916 +karman_re200,sr,15,6.0,alpha,lower,0.07336926028431634 +karman_re200,sr,16,6.4,alpha,front,3.0193102740558 +karman_re200,sr,16,6.4,alpha,upper,-6.271707381583353 +karman_re200,sr,16,6.4,alpha,lower,0.5907099794378792 +karman_re200,sr,17,6.8,alpha,front,2.592346461134404 +karman_re200,sr,17,6.8,alpha,upper,-4.355158523996551 +karman_re200,sr,17,6.8,alpha,lower,2.5072588370246813 +karman_re200,sr,18,7.2,alpha,front,1.510123554986567 +karman_re200,sr,18,7.2,alpha,upper,-3.033011214826445 +karman_re200,sr,18,7.2,alpha,lower,3.829406146194787 +karman_re200,sr,19,7.6,alpha,front,0.3225061308407101 +karman_re200,sr,19,7.6,alpha,upper,-3.5495064367211095 +karman_re200,sr,19,7.6,alpha,lower,3.3129109243001227 +karman_re200,sr,20,8.0,alpha,front,-0.5448563769538006 +karman_re200,sr,20,8.0,alpha,upper,-3.8829969855081696 +karman_re200,sr,20,8.0,alpha,lower,2.9794203755130626 +karman_re200,sr,21,8.4,alpha,front,-1.2950886320938066 +karman_re200,sr,21,8.4,alpha,upper,-2.9626249192049343 +karman_re200,sr,21,8.4,alpha,lower,3.899792441816298 +karman_re200,sr,22,8.8,alpha,front,-2.2036464014622323 +karman_re200,sr,22,8.8,alpha,upper,-1.4270449315863116 +karman_re200,sr,22,8.8,alpha,lower,5.435372429434921 +karman_re200,sr,23,9.2,alpha,front,-2.9520395944167435 +karman_re200,sr,23,9.2,alpha,upper,-0.30648557470242466 +karman_re200,sr,23,9.2,alpha,lower,6.5559317863188085 +karman_re200,sr,24,9.6,alpha,front,-3.147681925021072 +karman_re200,sr,24,9.6,alpha,upper,-0.23516768680087408 +karman_re200,sr,24,9.6,alpha,lower,6.627249674220359 +karman_re200,sr,25,10.0,alpha,front,-2.812570211814614 +karman_re200,sr,25,10.0,alpha,upper,-1.7836868959080252 +karman_re200,sr,25,10.0,alpha,lower,5.078730465113207 +karman_re200,sr,26,10.4,alpha,front,-1.859404134446092 +karman_re200,sr,26,10.4,alpha,upper,-3.7022960964145493 +karman_re200,sr,26,10.4,alpha,lower,3.160121264606683 +karman_re200,sr,27,10.8,alpha,front,-0.6057920256004815 +karman_re200,sr,27,10.8,alpha,upper,-3.673885196175491 +karman_re200,sr,27,10.8,alpha,lower,3.1885321648457414 +karman_re200,sr,28,11.2,alpha,front,0.33687185751087234 +karman_re200,sr,28,11.2,alpha,upper,-3.0684808410782125 +karman_re200,sr,28,11.2,alpha,lower,3.7939365199430197 +karman_re200,sr,29,11.6,alpha,front,1.0779550191469918 +karman_re200,sr,29,11.6,alpha,upper,-3.72196169125239 +karman_re200,sr,29,11.6,alpha,lower,3.140455669768842 +karman_re200,sr,30,12.0,alpha,front,1.933604025488127 +karman_re200,sr,30,12.0,alpha,upper,-5.13895480781499 +karman_re200,sr,30,12.0,alpha,lower,1.7234625532062424 +karman_re200,sr,31,12.4,alpha,front,2.684323146706405 +karman_re200,sr,31,12.4,alpha,upper,-6.129994063310038 +karman_re200,sr,31,12.4,alpha,lower,0.7324232977111946 +karman_re200,sr,32,12.8,alpha,front,2.8873599098863107 +karman_re200,sr,32,12.8,alpha,upper,-6.153952229537929 +karman_re200,sr,32,12.8,alpha,lower,0.7084651314833028 +karman_re200,sr,33,13.2,alpha,front,2.5228222249161907 +karman_re200,sr,33,13.2,alpha,upper,-5.107945527866266 +karman_re200,sr,33,13.2,alpha,lower,1.754471833154966 +karman_re200,sr,34,13.6,alpha,front,1.731927006382551 +karman_re200,sr,34,13.6,alpha,upper,-3.6511375366020515 +karman_re200,sr,34,13.6,alpha,lower,3.211279824419181 +karman_re200,sr,35,14.0,alpha,front,0.6366853887693533 +karman_re200,sr,35,14.0,alpha,upper,-3.2415292453926337 +karman_re200,sr,35,14.0,alpha,lower,3.620888115628599 +karman_re200,sr,36,14.4,alpha,front,-0.2968601310541937 +karman_re200,sr,36,14.4,alpha,upper,-3.5187144115825864 +karman_re200,sr,36,14.4,alpha,lower,3.3437029494386454 +karman_re200,sr,37,14.8,alpha,front,-1.0710915638574525 +karman_re200,sr,37,14.8,alpha,upper,-2.99732479050199 +karman_re200,sr,37,14.8,alpha,lower,3.865092570519242 +karman_re200,sr,38,15.2,alpha,front,-1.869447193079141 +karman_re200,sr,38,15.2,alpha,upper,-1.8415593449111547 +karman_re200,sr,38,15.2,alpha,lower,5.020858016110077 +karman_re200,sr,39,15.6,alpha,front,-2.5213543673130117 +karman_re200,sr,39,15.6,alpha,upper,-0.9528088913153154 +karman_re200,sr,39,15.6,alpha,lower,5.909608469705917 +karman_re200,sr,40,16.0,alpha,front,-2.6987175639765355 +karman_re200,sr,40,16.0,alpha,upper,-0.9347491855720751 +karman_re200,sr,40,16.0,alpha,lower,5.927668175449157 +karman_re200,sr,41,16.4,alpha,front,-2.3351322104562207 +karman_re200,sr,41,16.4,alpha,upper,-1.9340491479673816 +karman_re200,sr,41,16.4,alpha,lower,4.928368213053851 +karman_re200,sr,42,16.8,alpha,front,-1.5677707541640822 +karman_re200,sr,42,16.8,alpha,upper,-3.2238404105096934 +karman_re200,sr,42,16.8,alpha,lower,3.6385769505115393 +karman_re200,sr,43,17.2,alpha,front,-0.5552283049536597 +karman_re200,sr,43,17.2,alpha,upper,-3.6269809940478166 +karman_re200,sr,43,17.2,alpha,lower,3.235436366973415 +karman_re200,sr,44,17.6,alpha,front,0.33662553570932563 +karman_re200,sr,44,17.6,alpha,upper,-3.4935633992173987 +karman_re200,sr,44,17.6,alpha,lower,3.368853961803834 +karman_re200,sr,45,18.0,alpha,front,1.1005905289030142 +karman_re200,sr,45,18.0,alpha,upper,-4.053947137689316 +karman_re200,sr,45,18.0,alpha,lower,2.8084702233319163 +karman_re200,sr,46,18.4,alpha,front,1.8585031735724171 +karman_re200,sr,46,18.4,alpha,upper,-5.129274103987793 +karman_re200,sr,46,18.4,alpha,lower,1.733143257033439 +karman_re200,sr,47,18.8,alpha,front,2.4302053829339467 +karman_re200,sr,47,18.8,alpha,upper,-5.888049088894647 +karman_re200,sr,47,18.8,alpha,lower,0.9743682721265857 +karman_re200,sr,48,19.2,alpha,front,2.539550740014485 +karman_re200,sr,48,19.2,alpha,upper,-5.759336499428235 +karman_re200,sr,48,19.2,alpha,lower,1.1030808615929977 +karman_re200,sr,49,19.6,alpha,front,2.142888818239555 +karman_re200,sr,49,19.6,alpha,upper,-4.721693727334697 +karman_re200,sr,49,19.6,alpha,lower,2.1407236336865356 +karman_re200,sr,50,20.0,alpha,front,1.3671535584398693 +karman_re200,sr,50,20.0,alpha,upper,-3.547911813818488 +karman_re200,sr,50,20.0,alpha,lower,3.3145055472027436 +karman_re200,sr,51,20.4,alpha,front,0.39339508391158245 +karman_re200,sr,51,20.4,alpha,upper,-3.208523870267639 +karman_re200,sr,51,20.4,alpha,lower,3.653893490753593 +karman_re200,sr,52,20.8,alpha,front,-0.4650034026475094 +karman_re200,sr,52,20.8,alpha,upper,-3.229999059130738 +karman_re200,sr,52,20.8,alpha,lower,3.6324183018904943 +karman_re200,sr,53,21.2,alpha,front,-1.2257132240270106 +karman_re200,sr,53,21.2,alpha,upper,-2.5846794993248916 +karman_re200,sr,53,21.2,alpha,lower,4.27773786169634 +karman_re200,sr,54,21.6,alpha,front,-1.9606025710303432 +karman_re200,sr,54,21.6,alpha,upper,-1.5247707734879596 +karman_re200,sr,54,21.6,alpha,lower,5.337646587533273 +karman_re200,sr,55,22.0,alpha,front,-2.4716852805674376 +karman_re200,sr,55,22.0,alpha,upper,-0.8580752891051048 +karman_re200,sr,55,22.0,alpha,lower,6.004342071916128 +karman_re200,sr,56,22.4,alpha,front,-2.511709663743959 +karman_re200,sr,56,22.4,alpha,upper,-1.185622921622945 +karman_re200,sr,56,22.4,alpha,lower,5.676794439398288 +karman_re200,sr,57,22.8,alpha,front,-2.0556789846939445 +karman_re200,sr,57,22.8,alpha,upper,-2.4431837403534518 +karman_re200,sr,57,22.8,alpha,lower,4.4192336206677805 +karman_re200,sr,58,23.2,alpha,front,-1.1951939958276845 +karman_re200,sr,58,23.2,alpha,upper,-3.58987168012551 +karman_re200,sr,58,23.2,alpha,lower,3.272545680895722 +karman_re200,sr,59,23.6,alpha,front,-0.19609892711451307 +karman_re200,sr,59,23.6,alpha,upper,-3.668176890741954 +karman_re200,sr,59,23.6,alpha,lower,3.1942404702792784 +karman_re200,sr,60,24.0,alpha,front,0.6251577782058785 +karman_re200,sr,60,24.0,alpha,upper,-3.6452587158304453 +karman_re200,sr,60,24.0,alpha,lower,3.2171586451907865 +karman_re200,sr,61,24.4,alpha,front,1.3680556293087074 +karman_re200,sr,61,24.4,alpha,upper,-4.445640965684527 +karman_re200,sr,61,24.4,alpha,lower,2.416776395336705 +karman_re200,sr,62,24.8,alpha,front,2.087125147653753 +karman_re200,sr,62,24.8,alpha,upper,-5.553130778642933 +karman_re200,sr,62,24.8,alpha,lower,1.3092865823782995 +karman_re200,sr,63,25.2,alpha,front,2.546759936597308 +karman_re200,sr,63,25.2,alpha,upper,-6.096116319535815 +karman_re200,sr,63,25.2,alpha,lower,0.7663010414854177 +karman_re200,sr,64,25.6,alpha,front,2.5044021659895264 +karman_re200,sr,64,25.6,alpha,upper,-5.569324559401018 +karman_re200,sr,64,25.6,alpha,lower,1.2930928016202148 +karman_re200,sr,65,26.0,alpha,front,1.9783452221091038 +karman_re200,sr,65,26.0,alpha,upper,-4.232996768428743 +karman_re200,sr,65,26.0,alpha,lower,2.62942059259249 +karman_re200,sr,66,26.4,alpha,front,1.0591236626127338 +karman_re200,sr,66,26.4,alpha,upper,-3.208039728504193 +karman_re200,sr,66,26.4,alpha,lower,3.654377632517039 +karman_re200,sr,67,26.8,alpha,front,0.06067093422528793 +karman_re200,sr,67,26.8,alpha,upper,-3.2652518873098173 +karman_re200,sr,67,26.8,alpha,lower,3.5971654737114145 +karman_re200,sr,68,27.2,alpha,front,-0.7428142684670762 +karman_re200,sr,68,27.2,alpha,upper,-3.18880011751985 +karman_re200,sr,68,27.2,alpha,lower,3.673617243501382 +karman_re200,sr,69,27.6,alpha,front,-1.4991758946957092 +karman_re200,sr,69,27.6,alpha,upper,-2.2888021981824673 +karman_re200,sr,69,27.6,alpha,lower,4.573615162838765 +karman_re200,sr,70,28.0,alpha,front,-2.220614053918383 +karman_re200,sr,70,28.0,alpha,upper,-1.18584428707076 +karman_re200,sr,70,28.0,alpha,lower,5.676573073950472 +karman_re200,sr,71,28.4,alpha,front,-2.6419605809195206 +karman_re200,sr,71,28.4,alpha,upper,-0.7134355013421785 +karman_re200,sr,71,28.4,alpha,lower,6.148981859679054 +karman_re200,sr,72,28.8,alpha,front,-2.5400744801320623 +karman_re200,sr,72,28.8,alpha,upper,-1.3708118657620463 +karman_re200,sr,72,28.8,alpha,lower,5.491605495259186 +karman_re200,sr,73,29.2,alpha,front,-1.958025384261544 +karman_re200,sr,73,29.2,alpha,upper,-2.8104381530282385 +karman_re200,sr,73,29.2,alpha,lower,4.051979207992994 +karman_re200,sr,74,29.6,alpha,front,-0.9818022875739091 +karman_re200,sr,74,29.6,alpha,upper,-3.7486525180186767 +karman_re200,sr,74,29.6,alpha,lower,3.1137648430025555 +karman_re200,sr,75,30.0,alpha,front,0.01711166392230864 +karman_re200,sr,75,30.0,alpha,upper,-3.566663933630959 +karman_re200,sr,75,30.0,alpha,lower,3.295753427390273 +karman_re200,sr,76,30.4,alpha,front,0.8021879097208766 +karman_re200,sr,76,30.4,alpha,upper,-3.697501570498057 +karman_re200,sr,76,30.4,alpha,lower,3.1649157905231746 +karman_re200,sr,77,30.8,alpha,front,1.558358927580168 +karman_re200,sr,77,30.8,alpha,upper,-4.680461291639545 +karman_re200,sr,77,30.8,alpha,lower,2.1819560693816875 +karman_re200,sr,78,31.2,alpha,front,2.2671824357766135 +karman_re200,sr,78,31.2,alpha,upper,-5.743222495489032 +karman_re200,sr,78,31.2,alpha,lower,1.1191948655322 +karman_re200,sr,79,31.6,alpha,front,2.638876481559811 +karman_re200,sr,79,31.6,alpha,upper,-6.072759981103804 +karman_re200,sr,79,31.6,alpha,lower,0.7896573799174282 +karman_re200,sr,80,32.0,alpha,front,2.469088779882807 +karman_re200,sr,80,32.0,alpha,upper,-5.310335815716435 +karman_re200,sr,80,32.0,alpha,lower,1.5520815453047974 +karman_re200,sr,81,32.4,alpha,front,1.838136893527249 +karman_re200,sr,81,32.4,alpha,upper,-3.9332780003129617 +karman_re200,sr,81,32.4,alpha,lower,2.9291393607082705 +karman_re200,sr,82,32.8,alpha,front,0.8591065524733899 +karman_re200,sr,82,32.8,alpha,upper,-3.1657838962889517 +karman_re200,sr,82,32.8,alpha,lower,3.69663346473228 +karman_re200,sr,83,33.2,alpha,front,-0.10124723197160419 +karman_re200,sr,83,33.2,alpha,upper,-3.3466939711633823 +karman_re200,sr,83,33.2,alpha,lower,3.51572338985785 +karman_re200,sr,84,33.6,alpha,front,-0.8744852690540124 +karman_re200,sr,84,33.6,alpha,upper,-3.0857439965993305 +karman_re200,sr,84,33.6,alpha,lower,3.7766733644219013 +karman_re200,sr,85,34.0,alpha,front,-1.6387413140793174 +karman_re200,sr,85,34.0,alpha,upper,-2.0576430801291323 +karman_re200,sr,85,34.0,alpha,lower,4.8047742808921 +karman_re200,sr,86,34.4,alpha,front,-2.324599377557574 +karman_re200,sr,86,34.4,alpha,upper,-1.0481456915339455 +karman_re200,sr,86,34.4,alpha,lower,5.814271669487287 +karman_re200,sr,87,34.8,alpha,front,-2.6402881290079496 +karman_re200,sr,87,34.8,alpha,upper,-0.8062652693536804 +karman_re200,sr,87,34.8,alpha,lower,6.056152091667552 +karman_re200,sr,88,35.2,alpha,front,-2.4233605755631413 +karman_re200,sr,88,35.2,alpha,upper,-1.6496211905471072 +karman_re200,sr,88,35.2,alpha,lower,5.212796170474125 +karman_re200,sr,89,35.6,alpha,front,-1.7572934594373124 +karman_re200,sr,89,35.6,alpha,upper,-3.041614627107055 +karman_re200,sr,89,35.6,alpha,lower,3.820802733914177 +karman_re200,sr,90,36.0,alpha,front,-0.759679135371159 +karman_re200,sr,90,36.0,alpha,upper,-3.7286632485301796 +karman_re200,sr,90,36.0,alpha,lower,3.133754112491053 +karman_re200,sr,91,36.4,alpha,front,0.18697068209477008 +karman_re200,sr,91,36.4,alpha,upper,-3.5407897535373536 +karman_re200,sr,91,36.4,alpha,lower,3.321627607483878 +karman_re200,sr,92,36.8,alpha,front,0.9551414913598049 +karman_re200,sr,92,36.8,alpha,upper,-3.8763554130903795 +karman_re200,sr,92,36.8,alpha,lower,2.9860619479308528 +karman_re200,sr,93,37.2,alpha,front,1.715976420294096 +karman_re200,sr,93,37.2,alpha,upper,-4.927426877040207 +karman_re200,sr,93,37.2,alpha,lower,1.9349904839810252 +karman_re200,sr,94,37.6,alpha,front,2.3721044177339126 +karman_re200,sr,94,37.6,alpha,upper,-5.8776884551569 +karman_re200,sr,94,37.6,alpha,lower,0.9847289058643325 +karman_re200,sr,95,38.0,alpha,front,2.630984327153271 +karman_re200,sr,95,38.0,alpha,upper,-5.993113027920929 +karman_re200,sr,95,38.0,alpha,lower,0.869304333100303 +karman_re200,sr,96,38.4,alpha,front,2.354637533853378 +karman_re200,sr,96,38.4,alpha,upper,-5.023874462889687 +karman_re200,sr,96,38.4,alpha,lower,1.838542898131545 +karman_re200,sr,97,38.8,alpha,front,1.634580741410804 +karman_re200,sr,97,38.8,alpha,upper,-3.6537321101657776 +karman_re200,sr,97,38.8,alpha,lower,3.208685250855454 +karman_re200,sr,98,39.2,alpha,front,0.6247312958644589 +karman_re200,sr,98,39.2,alpha,upper,-3.1422777479527806 +karman_re200,sr,98,39.2,alpha,lower,3.720139613068452 +karman_re200,sr,99,39.6,alpha,front,-0.2878782555465825 +karman_re200,sr,99,39.6,alpha,upper,-3.3412999011385716 +karman_re200,sr,99,39.6,alpha,lower,3.5211174598826602 +karman_re200,sr,100,40.0,alpha,front,-1.043488426150007 +karman_re200,sr,100,40.0,alpha,upper,-2.880618003294016 +karman_re200,sr,100,40.0,alpha,lower,3.9817993577272164 +karman_re200,sr,101,40.4,alpha,front,-1.801705431493027 +karman_re200,sr,101,40.4,alpha,upper,-1.7857868227455134 +karman_re200,sr,101,40.4,alpha,lower,5.076630538275719 +karman_re200,sr,102,40.8,alpha,front,-2.424749801108993 +karman_re200,sr,102,40.8,alpha,upper,-0.9030930130595524 +karman_re200,sr,102,40.8,alpha,lower,5.9593243479616795 +karman_re200,sr,103,41.2,alpha,front,-2.6197397209564826 +karman_re200,sr,103,41.2,alpha,upper,-0.9223627687197328 +karman_re200,sr,103,41.2,alpha,lower,5.940054592301499 +karman_re200,sr,104,41.6,alpha,front,-2.289181163507688 +karman_re200,sr,104,41.6,alpha,upper,-1.984221306998317 +karman_re200,sr,104,41.6,alpha,lower,4.878196054022915 +karman_re200,sr,105,42.0,alpha,front,-1.5252376043205913 +karman_re200,sr,105,42.0,alpha,upper,-3.320431259692319 +karman_re200,sr,105,42.0,alpha,lower,3.541986101328914 +karman_re200,sr,106,42.4,alpha,front,-0.506208498778566 +karman_re200,sr,106,42.4,alpha,upper,-3.703214138815046 +karman_re200,sr,106,42.4,alpha,lower,3.159203222206186 +karman_re200,sr,107,42.8,alpha,front,0.38440699798103595 +karman_re200,sr,107,42.8,alpha,upper,-3.537501852429372 +karman_re200,sr,107,42.8,alpha,lower,3.324915508591861 +karman_re200,sr,108,43.2,alpha,front,1.137612463963996 +karman_re200,sr,108,43.2,alpha,upper,-4.097717815988296 +karman_re200,sr,108,43.2,alpha,lower,2.7646995450329364 +karman_re200,sr,109,43.6,alpha,front,1.8955468201387813 +karman_re200,sr,109,43.6,alpha,upper,-5.206063250553798 +karman_re200,sr,109,43.6,alpha,lower,1.6563541104674342 +karman_re200,sr,110,44.0,alpha,front,2.483435778159586 +karman_re200,sr,110,44.0,alpha,upper,-6.023173055072455 +karman_re200,sr,110,44.0,alpha,lower,0.8392443059487769 +karman_re200,sr,111,44.4,alpha,front,2.617391503989849 +karman_re200,sr,111,44.4,alpha,upper,-5.875227857930228 +karman_re200,sr,111,44.4,alpha,lower,0.9871895030910042 +karman_re200,sr,112,44.8,alpha,front,2.2326433822954064 +karman_re200,sr,112,44.8,alpha,upper,-4.701941809106958 +karman_re200,sr,112,44.8,alpha,lower,2.160475551914274 +karman_re200,sr,113,45.2,alpha,front,1.4162172982235035 +karman_re200,sr,113,45.2,alpha,upper,-3.394515302216528 +karman_re200,sr,113,45.2,alpha,lower,3.4679020588047047 +karman_re200,sr,114,45.6,alpha,front,0.3859122291213433 +karman_re200,sr,114,45.6,alpha,upper,-3.163515128817608 +karman_re200,sr,114,45.6,alpha,lower,3.6989022322036242 +karman_re200,sr,115,46.0,alpha,front,-0.47809529609394824 +karman_re200,sr,115,46.0,alpha,upper,-3.3185388439314276 +karman_re200,sr,115,46.0,alpha,lower,3.5438785170898046 +karman_re200,sr,116,46.4,alpha,front,-1.2254962421726023 +karman_re200,sr,116,46.4,alpha,upper,-2.6513692660104056 +karman_re200,sr,116,46.4,alpha,lower,4.211048095010827 +karman_re200,sr,117,46.8,alpha,front,-1.9778745397603044 +karman_re200,sr,117,46.8,alpha,upper,-1.5237182980128958 +karman_re200,sr,117,46.8,alpha,lower,5.338699063008336 +karman_re200,sr,118,47.2,alpha,front,-2.5264155012569423 +karman_re200,sr,118,47.2,alpha,upper,-0.7984107543480365 +karman_re200,sr,118,47.2,alpha,lower,6.064006606673196 +karman_re200,sr,119,47.6,alpha,front,-2.5947545290402116 +karman_re200,sr,119,47.6,alpha,upper,-1.0949606776008087 +karman_re200,sr,119,47.6,alpha,lower,5.7674566834204235 +karman_re200,sr,120,48.0,alpha,front,-2.152207094431155 +karman_re200,sr,120,48.0,alpha,upper,-2.338857584655993 +karman_re200,sr,120,48.0,alpha,lower,4.523559776365239 +karman_re200,sr,121,48.4,alpha,front,-1.2933412555087525 +karman_re200,sr,121,48.4,alpha,upper,-3.542037255930334 +karman_re200,sr,121,48.4,alpha,lower,3.3203801050908983 +karman_re200,sr,122,48.8,alpha,front,-0.2721984305781693 +karman_re200,sr,122,48.8,alpha,upper,-3.639108897467979 +karman_re200,sr,122,48.8,alpha,lower,3.223308463553253 +karman_re200,sr,123,49.2,alpha,front,0.5650646158877007 +karman_re200,sr,123,49.2,alpha,upper,-3.5641369572191106 +karman_re200,sr,123,49.2,alpha,lower,3.2982804038021216 +karman_re200,sr,124,49.6,alpha,front,1.3150058524959454 +karman_re200,sr,124,49.6,alpha,upper,-4.333750627793655 +karman_re200,sr,124,49.6,alpha,lower,2.5286667332275776 +karman_re200,sr,125,50.0,alpha,front,2.061815570751129 +karman_re200,sr,125,50.0,alpha,upper,-5.456969262722231 +karman_re200,sr,125,50.0,alpha,lower,1.4054480982990012 +karman_re200,sr,126,50.4,alpha,front,2.566603897318707 +karman_re200,sr,126,50.4,alpha,upper,-6.094290282960101 +karman_re200,sr,126,50.4,alpha,lower,0.768127078061132 +karman_re200,sr,127,50.8,alpha,front,2.5727127778966303 +karman_re200,sr,127,50.8,alpha,upper,-5.687762077290392 +karman_re200,sr,127,50.8,alpha,lower,1.1746552837308402 +karman_re200,sr,128,51.2,alpha,front,2.084851522362054 +karman_re200,sr,128,51.2,alpha,upper,-4.384697565891941 +karman_re200,sr,128,51.2,alpha,lower,2.477719795129291 +karman_re200,sr,129,51.6,alpha,front,1.1889579764038236 +karman_re200,sr,129,51.6,alpha,upper,-3.2404181552701083 +karman_re200,sr,129,51.6,alpha,lower,3.621999205751124 +karman_re200,sr,130,52.0,alpha,front,0.17074689289691514 +karman_re200,sr,130,52.0,alpha,upper,-3.229100504197449 +karman_re200,sr,130,52.0,alpha,lower,3.633316856823783 +karman_re200,sr,131,52.4,alpha,front,-0.6503530478066457 +karman_re200,sr,131,52.4,alpha,upper,-3.2451886263442664 +karman_re200,sr,131,52.4,alpha,lower,3.6172287346769667 +karman_re200,sr,132,52.8,alpha,front,-1.4018655047676214 +karman_re200,sr,132,52.8,alpha,upper,-2.4099627851224703 +karman_re200,sr,132,52.8,alpha,lower,4.452454575898762 +karman_re200,sr,133,53.2,alpha,front,-2.135597837213143 +karman_re200,sr,133,53.2,alpha,upper,-1.3032870306575068 +karman_re200,sr,133,53.2,alpha,lower,5.559130330363725 +karman_re200,sr,134,53.6,alpha,front,-2.5961134295182178 +karman_re200,sr,134,53.6,alpha,upper,-0.7679495594145354 +karman_re200,sr,134,53.6,alpha,lower,6.094467801606697 +karman_re200,sr,135,54.0,alpha,front,-2.5396306596662006 +karman_re200,sr,135,54.0,alpha,upper,-1.3180669043221562 +karman_re200,sr,135,54.0,alpha,lower,5.5443504566990764 +karman_re200,sr,136,54.4,alpha,front,-1.9948006783973695 +karman_re200,sr,136,54.4,alpha,upper,-2.6750906899608893 +karman_re200,sr,136,54.4,alpha,lower,4.187326671060343 +karman_re200,sr,137,54.8,alpha,front,-1.0619997710788531 +karman_re200,sr,137,54.8,alpha,upper,-3.6729120407817972 +karman_re200,sr,137,54.8,alpha,lower,3.189505320239436 +karman_re200,sr,138,55.2,alpha,front,-0.0646634813760451 +karman_re200,sr,138,55.2,alpha,upper,-3.573341131574739 +karman_re200,sr,138,55.2,alpha,lower,3.2890762294464926 +karman_re200,sr,139,55.6,alpha,front,0.7307275311402369 +karman_re200,sr,139,55.6,alpha,upper,-3.6623172529458796 +karman_re200,sr,139,55.6,alpha,lower,3.200100108075352 +karman_re200,sr,140,56.0,alpha,front,1.4844787595448021 +karman_re200,sr,140,56.0,alpha,upper,-4.585037559047667 +karman_re200,sr,140,56.0,alpha,lower,2.2773798019735656 +karman_re200,sr,141,56.4,alpha,front,2.202020569347496 +karman_re200,sr,141,56.4,alpha,upper,-5.667773416785245 +karman_re200,sr,141,56.4,alpha,lower,1.1946439442359869 +karman_re200,sr,142,56.8,alpha,front,2.6080017441097696 +karman_re200,sr,142,56.8,alpha,upper,-6.084897323765896 +karman_re200,sr,142,56.8,alpha,lower,0.777520037255337 +karman_re200,sr,143,57.2,alpha,front,2.4889531645152005 +karman_re200,sr,143,57.2,alpha,upper,-5.436894887810537 +karman_re200,sr,143,57.2,alpha,lower,1.425522473210695 +karman_re200,sr,144,57.6,alpha,front,1.9035322141389897 +karman_re200,sr,144,57.6,alpha,upper,-4.069307220240913 +karman_re200,sr,144,57.6,alpha,lower,2.7931101407803194 +karman_re200,sr,145,58.0,alpha,front,0.9490708168153823 +karman_re200,sr,145,58.0,alpha,upper,-3.170298594356006 +karman_re200,sr,145,58.0,alpha,lower,3.6921187666652266 +karman_re200,sr,146,58.4,alpha,front,-0.031687382946088784 +karman_re200,sr,146,58.4,alpha,upper,-3.293317189497611 +karman_re200,sr,146,58.4,alpha,lower,3.569100171523621 +karman_re200,sr,147,58.8,alpha,front,-0.8184995106360542 +karman_re200,sr,147,58.8,alpha,upper,-3.1156870989476095 +karman_re200,sr,147,58.8,alpha,lower,3.7467302620736227 +karman_re200,sr,148,59.2,alpha,front,-1.577310807389194 +karman_re200,sr,148,59.2,alpha,upper,-2.1533140599612106 +karman_re200,sr,148,59.2,alpha,lower,4.709103301060022 +karman_re200,sr,149,59.6,alpha,front,-2.2752667525457233 +karman_re200,sr,149,59.6,alpha,upper,-1.1068994916907196 +karman_re200,sr,149,59.6,alpha,lower,5.755517869330513 +karman_re200,sr,150,60.0,alpha,front,-2.630426576783908 +karman_re200,sr,150,60.0,alpha,upper,-0.794251398065852 +karman_re200,sr,150,60.0,alpha,lower,6.06816596295538 +karman_re200,sr,151,60.4,alpha,front,-2.4532846687560244 +karman_re200,sr,151,60.4,alpha,upper,-1.5779488743357126 +karman_re200,sr,151,60.4,alpha,lower,5.28446848668552 +karman_re200,sr,152,60.8,alpha,front,-1.8134185888479015 +karman_re200,sr,152,60.8,alpha,upper,-2.987899250698547 +karman_re200,sr,152,60.8,alpha,lower,3.8745181103226853 +karman_re200,sr,153,61.2,alpha,front,-0.8260553365082905 +karman_re200,sr,153,61.2,alpha,upper,-3.7346294584125466 +karman_re200,sr,153,61.2,alpha,lower,3.127787902608686 +karman_re200,sr,154,61.6,alpha,front,0.13098032274686233 +karman_re200,sr,154,61.6,alpha,upper,-3.5364836322677595 +karman_re200,sr,154,61.6,alpha,lower,3.3259337287534723 +karman_re200,sr,155,62.0,alpha,front,0.8981947213298683 +karman_re200,sr,155,62.0,alpha,upper,-3.817911889950556 +karman_re200,sr,155,62.0,alpha,lower,3.0445054710706763 +karman_re200,sr,156,62.4,alpha,front,1.6559070340723034 +karman_re200,sr,156,62.4,alpha,upper,-4.84929918507036 +karman_re200,sr,156,62.4,alpha,lower,2.013118175950872 +karman_re200,sr,157,62.8,alpha,front,2.3271796279130226 +karman_re200,sr,157,62.8,alpha,upper,-5.84354077951268 +karman_re200,sr,157,62.8,alpha,lower,1.018876581508552 +karman_re200,sr,158,63.2,alpha,front,2.6228348314682064 +karman_re200,sr,158,63.2,alpha,upper,-6.018146354253682 +karman_re200,sr,158,63.2,alpha,lower,0.8442710067675505 +karman_re200,sr,159,63.6,alpha,front,2.382628770269516 +karman_re200,sr,159,63.6,alpha,upper,-5.13483945057986 +karman_re200,sr,159,63.6,alpha,lower,1.7275779104413722 +karman_re200,sr,160,64.0,alpha,front,1.6991516464152905 +karman_re200,sr,160,64.0,alpha,upper,-3.7586340596208947 +karman_re200,sr,160,64.0,alpha,lower,3.1037833014003375 +karman_re200,sr,161,64.4,alpha,front,0.7022575982102247 +karman_re200,sr,161,64.4,alpha,upper,-3.1510461947213066 +karman_re200,sr,161,64.4,alpha,lower,3.711371166299925 +karman_re200,sr,162,64.8,alpha,front,-0.22773660863969722 +karman_re200,sr,162,64.8,alpha,upper,-3.3334233104864817 +karman_re200,sr,162,64.8,alpha,lower,3.5289940505347506 +karman_re200,sr,163,65.2,alpha,front,-0.9900484194378398 +karman_re200,sr,163,65.2,alpha,upper,-2.941302585162747 +karman_re200,sr,163,65.2,alpha,lower,3.9211147758584857 +karman_re200,sr,164,65.6,alpha,front,-1.7522139439734878 +karman_re200,sr,164,65.6,alpha,upper,-1.8803040836205487 +karman_re200,sr,164,65.6,alpha,lower,4.982113277400684 +karman_re200,sr,165,66.0,alpha,front,-2.3952971006618133 +karman_re200,sr,165,66.0,alpha,upper,-0.9408772327797696 +karman_re200,sr,165,66.0,alpha,lower,5.921540128241462 +karman_re200,sr,166,66.4,alpha,front,-2.634143284586754 +karman_re200,sr,166,66.4,alpha,upper,-0.8741985800403982 +karman_re200,sr,166,66.4,alpha,lower,5.988218780980834 +karman_re200,sr,167,66.8,alpha,front,-2.340832968012716 +karman_re200,sr,167,66.8,alpha,upper,-1.875257895334567 +karman_re200,sr,167,66.8,alpha,lower,4.9871594656866645 +karman_re200,sr,168,67.2,alpha,front,-1.6072051527117155 +karman_re200,sr,168,67.2,alpha,upper,-3.2660310815064584 +karman_re200,sr,168,67.2,alpha,lower,3.596386279514774 +karman_re200,sr,169,67.6,alpha,front,-0.5863163612740723 +karman_re200,sr,169,67.6,alpha,upper,-3.7345512040520394 +karman_re200,sr,169,67.6,alpha,lower,3.1278661569691932 +karman_re200,sr,170,68.0,alpha,front,0.3217754765248508 +karman_re200,sr,170,68.0,alpha,upper,-3.528395419901458 +karman_re200,sr,170,68.0,alpha,lower,3.334021941119774 +karman_re200,sr,171,68.4,alpha,front,1.0736355395709833 +karman_re200,sr,171,68.4,alpha,upper,-4.017557337595326 +karman_re200,sr,171,68.4,alpha,lower,2.8448600234259067 +karman_re200,sr,172,68.8,alpha,front,1.8324089632891705 +karman_re200,sr,172,68.8,alpha,upper,-5.121016594250124 +karman_re200,sr,172,68.8,alpha,lower,1.7414007667711089 +karman_re200,sr,173,69.2,alpha,front,2.4425863577785196 +karman_re200,sr,173,69.2,alpha,upper,-5.980614253640466 +karman_re200,sr,173,69.2,alpha,lower,0.8818031073807656 +karman_re200,sr,174,69.6,alpha,front,2.6179708326651747 +karman_re200,sr,174,69.6,alpha,upper,-5.9034556064267 +karman_re200,sr,174,69.6,alpha,lower,0.9589617545945325 +karman_re200,sr,175,70.0,alpha,front,2.2634905474656057 +karman_re200,sr,175,70.0,alpha,upper,-4.800154533197128 +karman_re200,sr,175,70.0,alpha,lower,2.062262827824104 +karman_re200,sr,176,70.4,alpha,front,1.481586245350178 +karman_re200,sr,176,70.4,alpha,upper,-3.48375237295325 +karman_re200,sr,176,70.4,alpha,lower,3.378664988067983 +karman_re200,sr,177,70.8,alpha,front,0.4600880887681054 +karman_re200,sr,177,70.8,alpha,upper,-3.1747319931458016 +karman_re200,sr,177,70.8,alpha,lower,3.687685367875431 +karman_re200,sr,178,71.2,alpha,front,-0.41608896831321257 +karman_re200,sr,178,71.2,alpha,upper,-3.333346274092675 +karman_re200,sr,178,71.2,alpha,lower,3.529071086928557 +karman_re200,sr,179,71.6,alpha,front,-1.1661837394523644 +karman_re200,sr,179,71.6,alpha,upper,-2.7283356267313317 +karman_re200,sr,179,71.6,alpha,lower,4.1340817342899 +karman_re200,sr,180,72.0,alpha,front,-1.9236619320150792 +karman_re200,sr,180,72.0,alpha,upper,-1.6062655344013206 +karman_re200,sr,180,72.0,alpha,lower,5.256151826619912 +karman_re200,sr,181,72.4,alpha,front,-2.496655731747948 +karman_re200,sr,181,72.4,alpha,upper,-0.8242780833789518 +karman_re200,sr,181,72.4,alpha,lower,6.03813927764228 +karman_re200,sr,182,72.8,alpha,front,-2.6091668838321715 +karman_re200,sr,182,72.8,alpha,upper,-1.0161597545372643 +karman_re200,sr,182,72.8,alpha,lower,5.846257606483968 +karman_re200,sr,183,73.2,alpha,front,-2.2059159419717327 +karman_re200,sr,183,73.2,alpha,upper,-2.2054536919509555 +karman_re200,sr,183,73.2,alpha,lower,4.656963669070277 +karman_re200,sr,184,73.6,alpha,front,-1.379746009562843 +karman_re200,sr,184,73.6,alpha,upper,-3.4849870866958743 +karman_re200,sr,184,73.6,alpha,lower,3.3774302743253575 +karman_re200,sr,185,74.0,alpha,front,-0.35091703422796894 +karman_re200,sr,185,74.0,alpha,upper,-3.6830208599042167 +karman_re200,sr,185,74.0,alpha,lower,3.179396501117016 +karman_re200,sr,186,74.4,alpha,front,0.505907612389808 +karman_re200,sr,186,74.4,alpha,upper,-3.55977815888972 +karman_re200,sr,186,74.4,alpha,lower,3.3026392021315116 +karman_re200,sr,187,74.8,alpha,front,1.255638604814282 +karman_re200,sr,187,74.8,alpha,upper,-4.248583392786631 +karman_re200,sr,187,74.8,alpha,lower,2.613833968234601 +karman_re200,sr,188,75.2,alpha,front,2.0069779913294865 +karman_re200,sr,188,75.2,alpha,upper,-5.37703365143134 +karman_re200,sr,188,75.2,alpha,lower,1.4853837095898927 +karman_re200,sr,189,75.6,alpha,front,2.5405139494168854 +karman_re200,sr,189,75.6,alpha,upper,-6.068568957687406 +karman_re200,sr,189,75.6,alpha,lower,0.793848403333826 +karman_re200,sr,190,76.0,alpha,front,2.5894492849600965 +karman_re200,sr,190,76.0,alpha,upper,-5.738175850465538 +karman_re200,sr,190,76.0,alpha,lower,1.1242415105556942 +karman_re200,sr,191,76.4,alpha,front,2.1292259765812687 +karman_re200,sr,191,76.4,alpha,upper,-4.461323809411755 +karman_re200,sr,191,76.4,alpha,lower,2.4010935516094776 +karman_re200,sr,192,76.8,alpha,front,1.2558315441734658 +karman_re200,sr,192,76.8,alpha,upper,-3.281846988095715 +karman_re200,sr,192,76.8,alpha,lower,3.580570372925517 +karman_re200,sr,193,77.2,alpha,front,0.23505237030811663 +karman_re200,sr,193,77.2,alpha,upper,-3.2275920524388884 +karman_re200,sr,193,77.2,alpha,lower,3.6348253085823443 +karman_re200,sr,194,77.6,alpha,front,-0.5931690052107266 +karman_re200,sr,194,77.6,alpha,upper,-3.2814185683088164 +karman_re200,sr,194,77.6,alpha,lower,3.5809987927124154 +karman_re200,sr,195,78.0,alpha,front,-1.34275537636545 +karman_re200,sr,195,78.0,alpha,upper,-2.489006997034438 +karman_re200,sr,195,78.0,alpha,lower,4.373410363986794 +karman_re200,sr,196,78.4,alpha,front,-2.0839534030759954 +karman_re200,sr,196,78.4,alpha,upper,-1.3603298920917628 +karman_re200,sr,196,78.4,alpha,lower,5.502087468929469 +karman_re200,sr,197,78.8,alpha,front,-2.5718134154159893 +karman_re200,sr,197,78.8,alpha,upper,-0.7715367758391634 +karman_re200,sr,197,78.8,alpha,lower,6.090880585182068 +karman_re200,sr,198,79.2,alpha,front,-2.555090405893702 +karman_re200,sr,198,79.2,alpha,upper,-1.2246846361661428 +karman_re200,sr,198,79.2,alpha,lower,5.6377327248550895 +karman_re200,sr,199,79.6,alpha,front,-2.0480352472048207 +karman_re200,sr,199,79.6,alpha,upper,-2.5468549344577203 +karman_re200,sr,199,79.6,alpha,lower,4.3155624265635115 +karman_re200,sr,200,80.0,alpha,front,-1.1412841725629452 +karman_re200,sr,200,80.0,alpha,upper,-3.6290043412290114 +karman_re200,sr,200,80.0,alpha,lower,3.233413019792221 +karman_re200,sr,201,80.4,alpha,front,-0.13170869324767434 +karman_re200,sr,201,80.4,alpha,upper,-3.60722770560754 +karman_re200,sr,201,80.4,alpha,lower,3.255189655413692 +karman_re200,sr,202,80.8,alpha,front,0.6798360733216708 +karman_re200,sr,202,80.8,alpha,upper,-3.637033482210338 +karman_re200,sr,202,80.8,alpha,lower,3.2253838788108937 +karman_re200,sr,203,81.2,alpha,front,1.434750221458313 +karman_re200,sr,203,81.2,alpha,upper,-4.49866240556543 +karman_re200,sr,203,81.2,alpha,lower,2.3637549554558026 +karman_re200,sr,204,81.6,alpha,front,2.163302783676913 +karman_re200,sr,204,81.6,alpha,upper,-5.604311109610201 +karman_re200,sr,204,81.6,alpha,lower,1.2581062514110308 +karman_re200,sr,205,82.0,alpha,front,2.605228265796395 +karman_re200,sr,205,82.0,alpha,upper,-6.093607917116149 +karman_re200,sr,205,82.0,alpha,lower,0.7688094439050834 +karman_re200,sr,206,82.4,alpha,front,2.526689980860779 +karman_re200,sr,206,82.4,alpha,upper,-5.519449888736677 +karman_re200,sr,206,82.4,alpha,lower,1.3429674722845548 +karman_re200,sr,207,82.8,alpha,front,1.969384364359899 +karman_re200,sr,207,82.8,alpha,upper,-4.138875042239692 +karman_re200,sr,207,82.8,alpha,lower,2.72354231878154 +karman_re200,sr,208,83.2,alpha,front,1.0239433649260246 +karman_re200,sr,208,83.2,alpha,upper,-3.1687730910636374 +karman_re200,sr,208,83.2,alpha,lower,3.6936442699575944 +karman_re200,sr,209,83.6,alpha,front,0.029791683257416192 +karman_re200,sr,209,83.6,alpha,upper,-3.283815222283712 +karman_re200,sr,209,83.6,alpha,lower,3.57860213873752 +karman_re200,sr,210,84.0,alpha,front,-0.7614855414989667 +karman_re200,sr,210,84.0,alpha,upper,-3.1732472917379004 +karman_re200,sr,210,84.0,alpha,lower,3.6891700692833322 +karman_re200,sr,211,84.4,alpha,front,-1.517041355639273 +karman_re200,sr,211,84.4,alpha,upper,-2.2343201117359985 +karman_re200,sr,211,84.4,alpha,lower,4.628097249285234 +karman_re200,sr,212,84.8,alpha,front,-2.2268168844868788 +karman_re200,sr,212,84.8,alpha,upper,-1.1594440976083784 +karman_re200,sr,212,84.8,alpha,lower,5.702973263412854 +karman_re200,sr,213,85.2,alpha,front,-2.6159556142473566 +karman_re200,sr,213,85.2,alpha,upper,-0.789145833903221 +karman_re200,sr,213,85.2,alpha,lower,6.0732715271180115 +karman_re200,sr,214,85.6,alpha,front,-2.474065376595145 +karman_re200,sr,214,85.6,alpha,upper,-1.490468568318615 +karman_re200,sr,214,85.6,alpha,lower,5.371948792702617 +karman_re200,sr,215,86.0,alpha,front,-1.86835580143535 +karman_re200,sr,215,86.0,alpha,upper,-2.869616414580135 +karman_re200,sr,215,86.0,alpha,lower,3.9928009464410974 +karman_re200,sr,216,86.4,alpha,front,-0.9014163934900451 +karman_re200,sr,216,86.4,alpha,upper,-3.6975131411817124 +karman_re200,sr,216,86.4,alpha,lower,3.1649042198395203 +karman_re200,sr,217,86.8,alpha,front,0.0680289811594311 +karman_re200,sr,217,86.8,alpha,upper,-3.546886894840023 +karman_re200,sr,217,86.8,alpha,lower,3.3155304661812086 +karman_re200,sr,218,87.2,alpha,front,0.8462338941715395 +karman_re200,sr,218,87.2,alpha,upper,-3.7669832213527763 +karman_re200,sr,218,87.2,alpha,lower,3.0954341396684555 +karman_re200,sr,219,87.6,alpha,front,1.6060317990251094 +karman_re200,sr,219,87.6,alpha,upper,-4.760292919023382 +karman_re200,sr,219,87.6,alpha,lower,2.1021244419978506 +karman_re200,sr,220,88.0,alpha,front,2.2942630321612576 +karman_re200,sr,220,88.0,alpha,upper,-5.789049862807633 +karman_re200,sr,220,88.0,alpha,lower,1.0733674982135994 +karman_re200,sr,221,88.4,alpha,front,2.629470737749388 +karman_re200,sr,221,88.4,alpha,upper,-6.0573982238479935 +karman_re200,sr,221,88.4,alpha,lower,0.8050191371732383 +karman_re200,sr,222,88.8,alpha,front,2.430174125470165 +karman_re200,sr,222,88.8,alpha,upper,-5.24644584998368 +karman_re200,sr,222,88.8,alpha,lower,1.6159715110375519 +karman_re200,sr,223,89.2,alpha,front,1.7790399962674175 +karman_re200,sr,223,89.2,alpha,upper,-3.843383227557973 +karman_re200,sr,223,89.2,alpha,lower,3.0190341334632587 +karman_re200,sr,224,89.6,alpha,front,0.7871902322797119 +karman_re200,sr,224,89.6,alpha,upper,-3.1310380467489525 +karman_re200,sr,224,89.6,alpha,lower,3.7313793142722798 +karman_re200,sr,225,90.0,alpha,front,-0.16302962932821308 +karman_re200,sr,225,90.0,alpha,upper,-3.317663125873773 +karman_re200,sr,225,90.0,alpha,lower,3.54475423514746 +karman_re200,sr,226,90.4,alpha,front,-0.9303072143858568 +karman_re200,sr,226,90.4,alpha,upper,-3.010063808714125 +karman_re200,sr,226,90.4,alpha,lower,3.852353552307107 +karman_re200,sr,227,90.8,alpha,front,-1.689677038504973 +karman_re200,sr,227,90.8,alpha,upper,-1.9689266901568716 +karman_re200,sr,227,90.8,alpha,lower,4.89349067086436 +karman_re200,sr,228,91.2,alpha,front,-2.351654222054443 +karman_re200,sr,228,91.2,alpha,upper,-0.9962251413044517 +karman_re200,sr,228,91.2,alpha,lower,5.866192219716781 +karman_re200,sr,229,91.6,alpha,front,-2.629296779307487 +karman_re200,sr,229,91.6,alpha,upper,-0.8551303978691492 +karman_re200,sr,229,91.6,alpha,lower,6.007286963152083 +karman_re200,sr,230,92.0,alpha,front,-2.36917296490898 +karman_re200,sr,230,92.0,alpha,upper,-1.792564959679596 +karman_re200,sr,230,92.0,alpha,lower,5.069852401341636 +karman_re200,sr,231,92.4,alpha,front,-1.665872259844543 +karman_re200,sr,231,92.4,alpha,upper,-3.1741592443048945 +karman_re200,sr,231,92.4,alpha,lower,3.6882581167163377 +karman_re200,sr,232,92.8,alpha,front,-0.6589613710921715 +karman_re200,sr,232,92.8,alpha,upper,-3.7184125362871523 +karman_re200,sr,232,92.8,alpha,lower,3.14400482473408 +karman_re200,sr,233,93.2,alpha,front,0.2603415232997466 +karman_re200,sr,233,93.2,alpha,upper,-3.523222410832788 +karman_re200,sr,233,93.2,alpha,lower,3.339194950188445 +karman_re200,sr,234,93.6,alpha,front,1.0174351080885553 +karman_re200,sr,234,93.6,alpha,upper,-3.9512003803107216 +karman_re200,sr,234,93.6,alpha,lower,2.9112169807105106 +karman_re200,sr,235,94.0,alpha,front,1.7772929970807183 +karman_re200,sr,235,94.0,alpha,upper,-5.035764101574065 +karman_re200,sr,235,94.0,alpha,lower,1.8266532594471667 +karman_re200,sr,236,94.4,alpha,front,2.408169670164051 +karman_re200,sr,236,94.4,alpha,upper,-5.940964565672606 +karman_re200,sr,236,94.4,alpha,lower,0.9214527953486263 +karman_re200,sr,237,94.8,alpha,front,2.6233638995625643 +karman_re200,sr,237,94.8,alpha,upper,-5.962129325272916 +karman_re200,sr,237,94.8,alpha,lower,0.9002880357483161 +karman_re200,sr,238,95.2,alpha,front,2.308709352805197 +karman_re200,sr,238,95.2,alpha,upper,-4.926518730619152 +karman_re200,sr,238,95.2,alpha,lower,1.9358986304020807 +karman_re200,sr,239,95.6,alpha,front,1.56083319559748 +karman_re200,sr,239,95.6,alpha,upper,-3.57045637744462 +karman_re200,sr,239,95.6,alpha,lower,3.2919609835766117 +karman_re200,sr,240,96.0,alpha,front,0.5421786912229688 +karman_re200,sr,240,96.0,alpha,upper,-3.1463804687833927 +karman_re200,sr,240,96.0,alpha,lower,3.71603689223784 +karman_re200,sr,241,96.4,alpha,front,-0.3553508766055922 +karman_re200,sr,241,96.4,alpha,upper,-3.3244563351457743 +karman_re200,sr,241,96.4,alpha,lower,3.537961025875458 +karman_re200,sr,242,96.8,alpha,front,-1.109526211961929 +karman_re200,sr,242,96.8,alpha,upper,-2.8020445355117887 +karman_re200,sr,242,96.8,alpha,lower,4.060372825509443 +karman_re200,sr,243,97.2,alpha,front,-1.8679242797158913 +karman_re200,sr,243,97.2,alpha,upper,-1.6944740322594756 +karman_re200,sr,243,97.2,alpha,lower,5.167943328761757 +karman_re200,sr,244,97.6,alpha,front,-2.4658806274637124 +karman_re200,sr,244,97.6,alpha,upper,-0.8616076970282105 +karman_re200,sr,244,97.6,alpha,lower,6.000809663993022 +karman_re200,sr,245,98.0,alpha,front,-2.6196757852351102 +karman_re200,sr,245,98.0,alpha,upper,-0.9706947323120604 +karman_re200,sr,245,98.0,alpha,lower,5.8917226287091715 +karman_re200,sr,246,98.4,alpha,front,-2.2488994390526416 +karman_re200,sr,246,98.4,alpha,upper,-2.1217580652098036 +karman_re200,sr,246,98.4,alpha,lower,4.740659295811429 +karman_re200,sr,247,98.8,alpha,front,-1.4472159999333172 +karman_re200,sr,247,98.8,alpha,upper,-3.43324390286714 +karman_re200,sr,247,98.8,alpha,lower,3.4291734581540916 +karman_re200,sr,248,99.2,alpha,front,-0.4202660466097957 +karman_re200,sr,248,99.2,alpha,upper,-3.6941719540305833 +karman_re200,sr,248,99.2,alpha,lower,3.168245406990649 +karman_re200,sr,249,99.6,alpha,front,0.44803244240577395 +karman_re200,sr,249,99.6,alpha,upper,-3.5358901779929446 +karman_re200,sr,249,99.6,alpha,lower,3.326527183028288 +karman_re200,sr,250,100.0,alpha,front,1.1964272892530776 +karman_re200,sr,250,100.0,alpha,upper,-4.174530408413284 +karman_re200,sr,250,100.0,alpha,lower,2.6878869526079474 +karman_re200,sr,251,100.4,alpha,front,1.9502422313799832 +karman_re200,sr,251,100.4,alpha,upper,-5.304785541462286 +karman_re200,sr,251,100.4,alpha,lower,1.5576318195589456 +karman_re200,sr,252,100.8,alpha,front,2.5097629986273904 +karman_re200,sr,252,100.8,alpha,upper,-6.046659411449744 +karman_re200,sr,252,100.8,alpha,lower,0.8157579495714882 +karman_re200,sr,253,101.2,alpha,front,2.5968699134215134 +karman_re200,sr,253,101.2,alpha,upper,-5.804219333570602 +karman_re200,sr,253,101.2,alpha,lower,1.0581980274506297 +karman_re200,sr,254,101.6,alpha,front,2.1726888139732456 +karman_re200,sr,254,101.6,alpha,upper,-4.583557729506568 +karman_re200,sr,254,101.6,alpha,lower,2.2788596315146648 +karman_re200,sr,255,102.0,alpha,front,1.3298393172527374 +karman_re200,sr,255,102.0,alpha,upper,-3.352810295441585 +karman_re200,sr,255,102.0,alpha,lower,3.5096070655796474 +karman_re200,sr,256,102.4,alpha,front,0.3068325218452081 +karman_re200,sr,256,102.4,alpha,upper,-3.204131577853985 +karman_re200,sr,256,102.4,alpha,lower,3.658285783167247 +karman_re200,sr,257,102.8,alpha,front,-0.5389052266884996 +karman_re200,sr,257,102.8,alpha,upper,-3.2959553053708794 +karman_re200,sr,257,102.8,alpha,lower,3.5664620556503523 +karman_re200,sr,258,103.2,alpha,front,-1.2903284400383928 +karman_re200,sr,258,103.2,alpha,upper,-2.5668673453135264 +karman_re200,sr,258,103.2,alpha,lower,4.295550015707706 +karman_re200,sr,259,103.6,alpha,front,-2.038564635277089 +karman_re200,sr,259,103.6,alpha,upper,-1.4389549712129237 +karman_re200,sr,259,103.6,alpha,lower,5.423462389808309 +karman_re200,sr,260,104.0,alpha,front,-2.556348874009385 +karman_re200,sr,260,104.0,alpha,upper,-0.7795837295834853 +karman_re200,sr,260,104.0,alpha,lower,6.082833631437747 +karman_re200,sr,261,104.4,alpha,front,-2.5823103288711704 +karman_re200,sr,261,104.4,alpha,upper,-1.146044636952901 +karman_re200,sr,261,104.4,alpha,lower,5.716372724068331 +karman_re200,sr,262,104.8,alpha,front,-2.107871090444377 +karman_re200,sr,262,104.8,alpha,upper,-2.452210852799996 +karman_re200,sr,262,104.8,alpha,lower,4.410206508221236 +karman_re200,sr,263,105.2,alpha,front,-1.2197855612593527 +karman_re200,sr,263,105.2,alpha,upper,-3.6079012411929128 +karman_re200,sr,263,105.2,alpha,lower,3.254516119828319 +karman_re200,sr,264,105.6,alpha,front,-0.1995816146372031 +karman_re200,sr,264,105.6,alpha,upper,-3.6344285559296585 +karman_re200,sr,264,105.6,alpha,lower,3.2279888050915737 +karman_re200,sr,265,106.0,alpha,front,0.6237785870162977 +karman_re200,sr,265,106.0,alpha,upper,-3.5994086638820475 +karman_re200,sr,265,106.0,alpha,lower,3.2630086971391843 +karman_re200,sr,266,106.4,alpha,front,1.3745316074868448 +karman_re200,sr,266,106.4,alpha,upper,-4.417321108456331 +karman_re200,sr,266,106.4,alpha,lower,2.4450962525649014 +karman_re200,sr,267,106.8,alpha,front,2.1113886651150313 +karman_re200,sr,267,106.8,alpha,upper,-5.536491222072468 +karman_re200,sr,267,106.8,alpha,lower,1.3259261389487644 +karman_re200,sr,268,107.2,alpha,front,2.584473576243889 +karman_re200,sr,268,107.2,alpha,upper,-6.088475557686108 +karman_re200,sr,268,107.2,alpha,lower,0.7739418033351249 +karman_re200,sr,269,107.6,alpha,front,2.5441634359126772 +karman_re200,sr,269,107.6,alpha,upper,-5.58657051114249 +karman_re200,sr,269,107.6,alpha,lower,1.2758468498787416 +karman_re200,sr,270,108.0,alpha,front,2.0173249666380877 +karman_re200,sr,270,108.0,alpha,upper,-4.246830129721271 +karman_re200,sr,270,108.0,alpha,lower,2.615587231299961 +karman_re200,sr,271,108.4,alpha,front,1.0960028744956931 +karman_re200,sr,271,108.4,alpha,upper,-3.2144943430334574 +karman_re200,sr,271,108.4,alpha,lower,3.6479230179877744 +karman_re200,sr,272,108.8,alpha,front,0.09443975651310882 +karman_re200,sr,272,108.8,alpha,upper,-3.2738507322153003 +karman_re200,sr,272,108.8,alpha,lower,3.5885666288059315 +karman_re200,sr,273,109.2,alpha,front,-0.7086155839025652 +karman_re200,sr,273,109.2,alpha,upper,-3.2129892406833225 +karman_re200,sr,273,109.2,alpha,lower,3.6494281203379093 +karman_re200,sr,274,109.6,alpha,front,-1.4634200201173242 +karman_re200,sr,274,109.6,alpha,upper,-2.3162426834529075 +karman_re200,sr,274,109.6,alpha,lower,4.546174677568325 +karman_re200,sr,275,110.0,alpha,front,-2.1860512021408876 +karman_re200,sr,275,110.0,alpha,upper,-1.2234149058808783 +karman_re200,sr,275,110.0,alpha,lower,5.6390024551403535 +karman_re200,sr,276,110.4,alpha,front,-2.6094141019548123 +karman_re200,sr,276,110.4,alpha,upper,-0.769187165828074 +karman_re200,sr,276,110.4,alpha,lower,6.093230195193158 +karman_re200,sr,277,110.8,alpha,front,-2.508474249843668 +karman_re200,sr,277,110.8,alpha,upper,-1.3852089933910654 +karman_re200,sr,277,110.8,alpha,lower,5.477208367630167 +karman_re200,sr,278,111.2,alpha,front,-1.9367783896544688 +karman_re200,sr,278,111.2,alpha,upper,-2.763787287974267 +karman_re200,sr,278,111.2,alpha,lower,4.098630073046965 +karman_re200,sr,279,111.6,alpha,front,-0.9846296450524817 +karman_re200,sr,279,111.6,alpha,upper,-3.696346024590964 +karman_re200,sr,279,111.6,alpha,lower,3.1660713364302686 +karman_re200,sr,280,112.0,alpha,front,0.0030149641781832834 +karman_re200,sr,280,112.0,alpha,upper,-3.5743471720693467 +karman_re200,sr,280,112.0,alpha,lower,3.288070188951885 +karman_re200,sr,281,112.4,alpha,front,0.7924117161248484 +karman_re200,sr,281,112.4,alpha,upper,-3.7157260062375395 +karman_re200,sr,281,112.4,alpha,lower,3.146691354783693 +karman_re200,sr,282,112.8,alpha,front,1.5485315188073319 +karman_re200,sr,282,112.8,alpha,upper,-4.674096197662767 +karman_re200,sr,282,112.8,alpha,lower,2.1883211633584656 +karman_re200,sr,283,113.2,alpha,front,2.2518657457256834 +karman_re200,sr,283,113.2,alpha,upper,-5.730812937269381 +karman_re200,sr,283,113.2,alpha,lower,1.1316044237518517 +karman_re200,sr,284,113.6,alpha,front,2.6231867443345944 +karman_re200,sr,284,113.6,alpha,upper,-6.069132724023897 +karman_re200,sr,284,113.6,alpha,lower,0.7932846369973352 +karman_re200,sr,285,114.0,alpha,front,2.4610779891932757 +karman_re200,sr,285,114.0,alpha,upper,-5.324644945251343 +karman_re200,sr,285,114.0,alpha,lower,1.5377724157698887 +karman_re200,sr,286,114.4,alpha,front,1.8368270104356286 +karman_re200,sr,286,114.4,alpha,upper,-3.9289989788024537 +karman_re200,sr,286,114.4,alpha,lower,2.9334183822187785 +karman_re200,sr,287,114.8,alpha,front,0.8590166428652097 +karman_re200,sr,287,114.8,alpha,upper,-3.145345806071323 +karman_re200,sr,287,114.8,alpha,lower,3.717071554949909 +karman_re200,sr,288,115.2,alpha,front,-0.10277311457191393 +karman_re200,sr,288,115.2,alpha,upper,-3.3212131943140357 +karman_re200,sr,288,115.2,alpha,lower,3.5412041667071965 +karman_re200,sr,289,115.6,alpha,front,-0.8751968203531215 +karman_re200,sr,289,115.6,alpha,upper,-3.0688279615878535 +karman_re200,sr,289,115.6,alpha,lower,3.7935893994333787 +karman_re200,sr,290,116.0,alpha,front,-1.6338341586643597 +karman_re200,sr,290,116.0,alpha,upper,-2.051615667420066 +karman_re200,sr,290,116.0,alpha,lower,4.810801693601166 +karman_re200,sr,291,116.4,alpha,front,-2.313156570624531 +karman_re200,sr,291,116.4,alpha,upper,-1.0445263512375917 +karman_re200,sr,291,116.4,alpha,lower,5.81789100978364 +karman_re200,sr,292,116.8,alpha,front,-2.6268729050705626 +karman_re200,sr,292,116.8,alpha,upper,-0.8236223605565737 +karman_re200,sr,292,116.8,alpha,lower,6.038795000464658 +karman_re200,sr,293,117.2,alpha,front,-2.4050874355962146 +karman_re200,sr,293,117.2,alpha,upper,-1.6766222943303444 +karman_re200,sr,293,117.2,alpha,lower,5.185795066690888 +karman_re200,sr,294,117.6,alpha,front,-1.7357149758748434 +karman_re200,sr,294,117.6,alpha,upper,-3.0622615986138184 +karman_re200,sr,294,117.6,alpha,lower,3.800155762407414 +karman_re200,sr,295,118.0,alpha,front,-0.7410406071965686 +karman_re200,sr,295,118.0,alpha,upper,-3.7230493355159306 +karman_re200,sr,295,118.0,alpha,lower,3.139368025505301 +karman_re200,sr,296,118.4,alpha,front,0.1984631724112965 +karman_re200,sr,296,118.4,alpha,upper,-3.537907739832311 +karman_re200,sr,296,118.4,alpha,lower,3.3245096211889207 +karman_re200,sr,297,118.8,alpha,front,0.9633039295884667 +karman_re200,sr,297,118.8,alpha,upper,-3.8896894080357063 +karman_re200,sr,297,118.8,alpha,lower,2.9727279529855264 +karman_re200,sr,298,119.2,alpha,front,1.7235590192496568 +karman_re200,sr,298,119.2,alpha,upper,-4.943223600653931 +karman_re200,sr,298,119.2,alpha,lower,1.9191937603673017 +karman_re200,sr,299,119.6,alpha,front,2.3753785482654797 +karman_re200,sr,299,119.6,alpha,upper,-5.895023166221671 +karman_re200,sr,299,119.6,alpha,lower,0.9673941947995611 +karman_re200,sr,300,120.0,alpha,front,2.6309499617030334 +karman_re200,sr,300,120.0,alpha,upper,-5.997492227192553 +karman_re200,sr,300,120.0,alpha,lower,0.8649251338286793 +karman_re200,sr,301,120.4,alpha,front,2.3527906795018407 +karman_re200,sr,301,120.4,alpha,upper,-5.021644518106921 +karman_re200,sr,301,120.4,alpha,lower,1.840772842914311 +karman_re200,sr,302,120.8,alpha,front,1.6320677123624094 +karman_re200,sr,302,120.8,alpha,upper,-3.637841603116116 +karman_re200,sr,302,120.8,alpha,lower,3.224575757905116 +karman_re200,sr,303,121.2,alpha,front,0.6179479822256679 +karman_re200,sr,303,121.2,alpha,upper,-3.133403033589636 +karman_re200,sr,303,121.2,alpha,lower,3.7290143274315968 +karman_re200,sr,304,121.6,alpha,front,-0.2947991197859374 +karman_re200,sr,304,121.6,alpha,upper,-3.3359213601891935 +karman_re200,sr,304,121.6,alpha,lower,3.526496000832039 +karman_re200,sr,305,122.0,alpha,front,-1.0493226495248673 +karman_re200,sr,305,122.0,alpha,upper,-2.8735559278728804 +karman_re200,sr,305,122.0,alpha,lower,3.988861433148352 +karman_re200,sr,306,122.4,alpha,front,-1.8081095707842334 +karman_re200,sr,306,122.4,alpha,upper,-1.7785639757199125 +karman_re200,sr,306,122.4,alpha,lower,5.08385338530132 +karman_re200,sr,307,122.8,alpha,front,-2.4273344026454793 +karman_re200,sr,307,122.8,alpha,upper,-0.9008962578693747 +karman_re200,sr,307,122.8,alpha,lower,5.961521103151858 +karman_re200,sr,308,123.2,alpha,front,-2.620564846960641 +karman_re200,sr,308,123.2,alpha,upper,-0.929658389255688 +karman_re200,sr,308,123.2,alpha,lower,5.932758971765544 +karman_re200,sr,309,123.6,alpha,front,-2.2846450572757235 +karman_re200,sr,309,123.6,alpha,upper,-2.0061275038275532 +karman_re200,sr,309,123.6,alpha,lower,4.856289857193679 +karman_re200,sr,310,124.0,alpha,front,-1.5167420565435976 +karman_re200,sr,310,124.0,alpha,upper,-3.340094114105084 +karman_re200,sr,310,124.0,alpha,lower,3.5223232469161485 +karman_re200,sr,311,124.4,alpha,front,-0.4967200603285209 +karman_re200,sr,311,124.4,alpha,upper,-3.702204139928662 +karman_re200,sr,311,124.4,alpha,lower,3.1602132210925706 +karman_re200,sr,312,124.8,alpha,front,0.3892791219486585 +karman_re200,sr,312,124.8,alpha,upper,-3.531452516319697 +karman_re200,sr,312,124.8,alpha,lower,3.330964844701536 +karman_re200,sr,313,125.2,alpha,front,1.1411110355174645 +karman_re200,sr,313,125.2,alpha,upper,-4.101829671569162 +karman_re200,sr,313,125.2,alpha,lower,2.760587689452071 +karman_re200,sr,314,125.6,alpha,front,1.8989378109610793 +karman_re200,sr,314,125.6,alpha,upper,-5.2172298737555955 +karman_re200,sr,314,125.6,alpha,lower,1.6451874872656362 +karman_re200,sr,315,126.0,alpha,front,2.4834866603378454 +karman_re200,sr,315,126.0,alpha,upper,-6.022741285877131 +karman_re200,sr,315,126.0,alpha,lower,0.8396760751441015 +karman_re200,sr,316,126.4,alpha,front,2.614087270389469 +karman_re200,sr,316,126.4,alpha,upper,-5.86719810796555 +karman_re200,sr,316,126.4,alpha,lower,0.9952192530556817 +karman_re200,sr,317,126.8,alpha,front,2.225337083335749 +karman_re200,sr,317,126.8,alpha,upper,-4.694185035929029 +karman_re200,sr,317,126.8,alpha,lower,2.1682323250922035 +karman_re200,sr,318,127.2,alpha,front,1.4094769191976066 +karman_re200,sr,318,127.2,alpha,upper,-3.3991447936451027 +karman_re200,sr,318,127.2,alpha,lower,3.463272567376129 +karman_re200,sr,319,127.6,alpha,front,0.3813552105805132 +karman_re200,sr,319,127.6,alpha,upper,-3.1735444756128204 +karman_re200,sr,319,127.6,alpha,lower,3.688872885408412 +karman_re200,sr,320,128.0,alpha,front,-0.480730080511741 +karman_re200,sr,320,128.0,alpha,upper,-3.3142723065795994 +karman_re200,sr,320,128.0,alpha,lower,3.548145054441633 +karman_re200,sr,321,128.4,alpha,front,-1.2295691252232612 +karman_re200,sr,321,128.4,alpha,upper,-2.6465719996688373 +karman_re200,sr,321,128.4,alpha,lower,4.215845361352395 +karman_re200,sr,322,128.8,alpha,front,-1.9819249565088701 +karman_re200,sr,322,128.8,alpha,upper,-1.517232473086931 +karman_re200,sr,322,128.8,alpha,lower,5.345184887934301 +karman_re200,sr,323,129.2,alpha,front,-2.527798022432011 +karman_re200,sr,323,129.2,alpha,upper,-0.8013151481912004 +karman_re200,sr,323,129.2,alpha,lower,6.061102212830032 +karman_re200,sr,324,129.6,alpha,front,-2.593343325590138 +karman_re200,sr,324,129.6,alpha,upper,-1.0945290606513214 +karman_re200,sr,324,129.6,alpha,lower,5.767888300369911 +karman_re200,sr,325,130.0,alpha,front,-2.1496095281511685 +karman_re200,sr,325,130.0,alpha,upper,-2.3473210830118836 +karman_re200,sr,325,130.0,alpha,lower,4.515096278009349 +karman_re200,sr,326,130.4,alpha,front,-1.2888991436671668 +karman_re200,sr,326,130.4,alpha,upper,-3.550775862514698 +karman_re200,sr,326,130.4,alpha,lower,3.3116414985065337 +karman_re200,sr,327,130.8,alpha,front,-0.26684878669154527 +karman_re200,sr,327,130.8,alpha,upper,-3.6451567111192786 +karman_re200,sr,327,130.8,alpha,lower,3.217260649901953 +karman_re200,sr,328,131.2,alpha,front,0.569076959802185 +karman_re200,sr,328,131.2,alpha,upper,-3.571074191053446 +karman_re200,sr,328,131.2,alpha,lower,3.2913431699677864 +karman_re200,sr,329,131.6,alpha,front,1.3189390093555213 +karman_re200,sr,329,131.6,alpha,upper,-4.3394266571096285 +karman_re200,sr,329,131.6,alpha,lower,2.5229907039116037 +karman_re200,sr,330,132.0,alpha,front,2.063895524086837 +karman_re200,sr,330,132.0,alpha,upper,-5.466308631381614 +karman_re200,sr,330,132.0,alpha,lower,1.396108729639618 +karman_re200,sr,331,132.4,alpha,front,2.5660262558360283 +karman_re200,sr,331,132.4,alpha,upper,-6.087971014980428 +karman_re200,sr,331,132.4,alpha,lower,0.7744463460408042 +karman_re200,sr,332,132.8,alpha,front,2.567551833187668 +karman_re200,sr,332,132.8,alpha,upper,-5.673647670181725 +karman_re200,sr,332,132.8,alpha,lower,1.1887696908395071 +karman_re200,sr,333,133.2,alpha,front,2.075146879054215 +karman_re200,sr,333,133.2,alpha,upper,-4.36200684626175 +karman_re200,sr,333,133.2,alpha,lower,2.500410514759482 +karman_re200,sr,334,133.6,alpha,front,1.1766394720870086 +karman_re200,sr,334,133.6,alpha,upper,-3.242412880233841 +karman_re200,sr,334,133.6,alpha,lower,3.6200044807873906 +karman_re200,sr,335,134.0,alpha,front,0.16237679122323614 +karman_re200,sr,335,134.0,alpha,upper,-3.2421476679848094 +karman_re200,sr,335,134.0,alpha,lower,3.6202696930364238 +karman_re200,sr,336,134.4,alpha,front,-0.6551259826065278 +karman_re200,sr,336,134.4,alpha,upper,-3.243494434663879 +karman_re200,sr,336,134.4,alpha,lower,3.6189229263573526 +karman_re200,sr,337,134.8,alpha,front,-1.4076898713854367 +karman_re200,sr,337,134.8,alpha,upper,-2.400403877965323 +karman_re200,sr,337,134.8,alpha,lower,4.462013483055909 +karman_re200,sr,338,135.2,alpha,front,-2.140490163092727 +karman_re200,sr,338,135.2,alpha,upper,-1.2894646310652829 +karman_re200,sr,338,135.2,alpha,lower,5.572952729955949 +karman_re200,sr,339,135.6,alpha,front,-2.5964894070797335 +karman_re200,sr,339,135.6,alpha,upper,-0.7687451961616327 +karman_re200,sr,339,135.6,alpha,lower,6.0936721648595995 +karman_re200,sr,340,136.0,alpha,front,-2.53532876241357 +karman_re200,sr,340,136.0,alpha,upper,-1.3140581191733198 +karman_re200,sr,340,136.0,alpha,lower,5.548359241847912 +karman_re200,sr,341,136.4,alpha,front,-1.9912042940701624 +karman_re200,sr,341,136.4,alpha,upper,-2.6763208363283875 +karman_re200,sr,341,136.4,alpha,lower,4.186096524692845 +karman_re200,sr,342,136.8,alpha,front,-1.0566254852996169 +karman_re200,sr,342,136.8,alpha,upper,-3.674409226348378 +karman_re200,sr,342,136.8,alpha,lower,3.1880081346728537 +karman_re200,sr,343,137.2,alpha,front,-0.058627306868773835 +karman_re200,sr,343,137.2,alpha,upper,-3.583244114324775 +karman_re200,sr,343,137.2,alpha,lower,3.2791732466964567 +karman_re200,sr,344,137.6,alpha,front,0.7378655770331293 +karman_re200,sr,344,137.6,alpha,upper,-3.670751063363446 +karman_re200,sr,344,137.6,alpha,lower,3.1916662976577856 +karman_re200,sr,345,138.0,alpha,front,1.492398042233119 +karman_re200,sr,345,138.0,alpha,upper,-4.5913706813985575 +karman_re200,sr,345,138.0,alpha,lower,2.2710466796226747 +karman_re200,sr,346,138.4,alpha,front,2.2082297934881288 +karman_re200,sr,346,138.4,alpha,upper,-5.674572868136587 +karman_re200,sr,346,138.4,alpha,lower,1.1878444928846452 +karman_re200,sr,347,138.8,alpha,front,2.612702529224075 +karman_re200,sr,347,138.8,alpha,upper,-6.083438960887892 +karman_re200,sr,347,138.8,alpha,lower,0.7789784001333402 +karman_re200,sr,348,139.2,alpha,front,2.4887800940694293 +karman_re200,sr,348,139.2,alpha,upper,-5.419994838612004 +karman_re200,sr,348,139.2,alpha,lower,1.4424225224092282 +karman_re200,sr,349,139.6,alpha,front,1.897944764888705 +karman_re200,sr,349,139.6,alpha,upper,-4.040314740902369 +karman_re200,sr,349,139.6,alpha,lower,2.8221026201188635 +karman_re200,sr,350,140.0,alpha,front,0.9380270531433363 +karman_re200,sr,350,140.0,alpha,upper,-3.1640510341658254 +karman_re200,sr,350,140.0,alpha,lower,3.6983663268554072 +karman_re200,sr,351,140.4,alpha,front,-0.03965618945608419 +karman_re200,sr,351,140.4,alpha,upper,-3.3027430337927295 +karman_re200,sr,351,140.4,alpha,lower,3.5596743272285036 +karman_re200,sr,352,140.8,alpha,front,-0.8225545893643031 +karman_re200,sr,352,140.8,alpha,upper,-3.116742467093587 +karman_re200,sr,352,140.8,alpha,lower,3.7456748939276454 +karman_re200,sr,353,141.2,alpha,front,-1.58102267561313 +karman_re200,sr,353,141.2,alpha,upper,-2.1402273122560844 +karman_re200,sr,353,141.2,alpha,lower,4.722190048765148 +karman_re200,sr,354,141.6,alpha,front,-2.276420614717272 +karman_re200,sr,354,141.6,alpha,upper,-1.098764539852287 +karman_re200,sr,354,141.6,alpha,lower,5.763652821168945 +karman_re200,sr,355,142.0,alpha,front,-2.6274432649849735 +karman_re200,sr,355,142.0,alpha,upper,-0.7991372714848809 +karman_re200,sr,355,142.0,alpha,lower,6.0632800895363514 +karman_re200,sr,356,142.4,alpha,front,-2.444593895029812 +karman_re200,sr,356,142.4,alpha,upper,-1.5816986893148566 +karman_re200,sr,356,142.4,alpha,lower,5.280718671706376 +karman_re200,sr,357,142.8,alpha,front,-1.804784957672666 +karman_re200,sr,357,142.8,alpha,upper,-2.983909800771081 +karman_re200,sr,357,142.8,alpha,lower,3.8785075602501506 +karman_re200,sr,358,143.2,alpha,front,-0.8186414790173661 +karman_re200,sr,358,143.2,alpha,upper,-3.7293912881253997 +karman_re200,sr,358,143.2,alpha,lower,3.133026072895832 +karman_re200,sr,359,143.6,alpha,front,0.1369020054155811 +karman_re200,sr,359,143.6,alpha,upper,-3.540881405531566 +karman_re200,sr,359,143.6,alpha,lower,3.3215359554896664 +karman_re200,sr,360,144.0,alpha,front,0.9057365168632479 +karman_re200,sr,360,144.0,alpha,upper,-3.8250123313227573 +karman_re200,sr,360,144.0,alpha,lower,3.037405029698475 +karman_re200,sr,361,144.4,alpha,front,1.6645575371740127 +karman_re200,sr,361,144.4,alpha,upper,-4.858159892816449 +karman_re200,sr,361,144.4,alpha,lower,2.004257468204783 +karman_re200,sr,362,144.8,alpha,front,2.3346101131314847 +karman_re200,sr,362,144.8,alpha,upper,-5.8468521264796465 +karman_re200,sr,362,144.8,alpha,lower,1.0155652345415858 +karman_re200,sr,363,145.2,alpha,front,2.627621574607913 +karman_re200,sr,363,145.2,alpha,upper,-6.020274903308632 +karman_re200,sr,363,145.2,alpha,lower,0.8421424577126007 +karman_re200,sr,364,145.6,alpha,front,2.3843602295239372 +karman_re200,sr,364,145.6,alpha,upper,-5.1216844967395065 +karman_re200,sr,364,145.6,alpha,lower,1.7407328642817261 +karman_re200,sr,365,146.0,alpha,front,1.696511767119701 +karman_re200,sr,365,146.0,alpha,upper,-3.7374158617316002 +karman_re200,sr,365,146.0,alpha,lower,3.1250014992896324 +karman_re200,sr,366,146.4,alpha,front,0.694518112538365 +karman_re200,sr,366,146.4,alpha,upper,-3.141331692318172 +karman_re200,sr,366,146.4,alpha,lower,3.72108566870306 +karman_re200,sr,367,146.8,alpha,front,-0.23322969720119927 +karman_re200,sr,367,146.8,alpha,upper,-3.334391898505049 +karman_re200,sr,367,146.8,alpha,lower,3.5280254625161827 +karman_re200,sr,368,147.2,alpha,front,-0.9938214261953389 +karman_re200,sr,368,147.2,alpha,upper,-2.939801745696064 +karman_re200,sr,368,147.2,alpha,lower,3.922615615325168 +karman_re200,sr,369,147.6,alpha,front,-1.7543785233404015 +karman_re200,sr,369,147.6,alpha,upper,-1.8666677284418252 +karman_re200,sr,369,147.6,alpha,lower,4.9957496325794075 +karman_re200,sr,370,148.0,alpha,front,-2.394882584068248 +karman_re200,sr,370,148.0,alpha,upper,-0.9398853511480554 +karman_re200,sr,370,148.0,alpha,lower,5.922532009873176 +karman_re200,sr,371,148.4,alpha,front,-2.628074186235463 +karman_re200,sr,371,148.4,alpha,upper,-0.8834819222315585 +karman_re200,sr,371,148.4,alpha,lower,5.978935438789674 +karman_re200,sr,372,148.8,alpha,front,-2.3297594786702125 +karman_re200,sr,372,148.8,alpha,upper,-1.8920841053018829 +karman_re200,sr,372,148.8,alpha,lower,4.97033325571935 +karman_re200,sr,373,149.2,alpha,front,-1.5937378034014873 +karman_re200,sr,373,149.2,alpha,upper,-3.2648198136228177 +karman_re200,sr,373,149.2,alpha,lower,3.5975975473984145 +karman_re200,sr,374,149.6,alpha,front,-0.5760471633265227 +karman_re200,sr,374,149.6,alpha,upper,-3.7247776302639304 +karman_re200,sr,374,149.6,alpha,lower,3.1376397307573014 +karman_re200,sr,375,150.0,alpha,front,0.3284080417205929 +karman_re200,sr,375,150.0,alpha,upper,-3.530456828542043 +karman_re200,sr,375,150.0,alpha,lower,3.3319605324791888 +karman_re200,sr,376,150.4,alpha,front,1.0819695164520915 +karman_re200,sr,376,150.4,alpha,upper,-4.027020634366484 +karman_re200,sr,376,150.4,alpha,lower,2.8353967266547486 +karman_re200,sr,377,150.8,alpha,front,1.8408958975037015 +karman_re200,sr,377,150.8,alpha,upper,-5.130208893430422 +karman_re200,sr,377,150.8,alpha,lower,1.7322084675908105 +karman_re200,sr,378,151.2,alpha,front,2.44892469655648 +karman_re200,sr,378,151.2,alpha,upper,-5.985378330389446 +karman_re200,sr,378,151.2,alpha,lower,0.8770390306317859 +karman_re200,sr,379,151.6,alpha,front,2.620179545439758 +karman_re200,sr,379,151.6,alpha,upper,-5.908086468067813 +karman_re200,sr,379,151.6,alpha,lower,0.9543308929534193 +karman_re200,sr,380,152.0,alpha,front,2.2643296150090078 +karman_re200,sr,380,152.0,alpha,upper,-4.7928812927992945 +karman_re200,sr,380,152.0,alpha,lower,2.0695360682219377 +karman_re200,sr,381,152.4,alpha,front,1.4780086421411238 +karman_re200,sr,381,152.4,alpha,upper,-3.470772806317767 +karman_re200,sr,381,152.4,alpha,lower,3.391644554703465 +karman_re200,sr,382,152.8,alpha,front,0.4538502600521292 +karman_re200,sr,382,152.8,alpha,upper,-3.1653938424531187 +karman_re200,sr,382,152.8,alpha,lower,3.6970235185681135 +karman_re200,sr,383,153.2,alpha,front,-0.4221880587338006 +karman_re200,sr,383,153.2,alpha,upper,-3.329143375500948 +karman_re200,sr,383,153.2,alpha,lower,3.533273985520285 +karman_re200,sr,384,153.6,alpha,front,-1.171849465561524 +karman_re200,sr,384,153.6,alpha,upper,-2.721521712025422 +karman_re200,sr,384,153.6,alpha,lower,4.14089564899581 +karman_re200,sr,385,154.0,alpha,front,-1.9277138583570659 +karman_re200,sr,385,154.0,alpha,upper,-1.5965205828306732 +karman_re200,sr,385,154.0,alpha,lower,5.265896778190559 +karman_re200,sr,386,154.4,alpha,front,-2.498410234501947 +karman_re200,sr,386,154.4,alpha,upper,-0.8261746097774578 +karman_re200,sr,386,154.4,alpha,lower,6.036242751243774 +karman_re200,sr,387,154.8,alpha,front,-2.6052494889039064 +karman_re200,sr,387,154.8,alpha,upper,-1.0276031606717493 +karman_re200,sr,387,154.8,alpha,lower,5.8348142003494825 +karman_re200,sr,388,155.2,alpha,front,-2.1971770388552647 +karman_re200,sr,388,155.2,alpha,upper,-2.2307741539333494 +karman_re200,sr,388,155.2,alpha,lower,4.631643207087883 +karman_re200,sr,389,155.6,alpha,front,-1.3662229828952528 +karman_re200,sr,389,155.6,alpha,upper,-3.488454333400504 +karman_re200,sr,389,155.6,alpha,lower,3.3739630276207278 +karman_re200,sr,390,156.0,alpha,front,-0.3406702359828031 +karman_re200,sr,390,156.0,alpha,upper,-3.671842057035413 +karman_re200,sr,390,156.0,alpha,lower,3.1905753039858196 +karman_re200,sr,391,156.4,alpha,front,0.5126065885961355 +karman_re200,sr,391,156.4,alpha,upper,-3.5584146451685177 +karman_re200,sr,391,156.4,alpha,lower,3.304002715852715 +karman_re200,sr,392,156.8,alpha,front,1.2628757288753987 +karman_re200,sr,392,156.8,alpha,upper,-4.259887037242235 +karman_re200,sr,392,156.8,alpha,lower,2.602530323778997 +karman_re200,sr,393,157.2,alpha,front,2.0130739959635227 +karman_re200,sr,393,157.2,alpha,upper,-5.388576778589428 +karman_re200,sr,393,157.2,alpha,lower,1.4738405824318046 +karman_re200,sr,394,157.6,alpha,front,2.5438755475672745 +karman_re200,sr,394,157.6,alpha,upper,-6.072234732964216 +karman_re200,sr,394,157.6,alpha,lower,0.790182628057016 +karman_re200,sr,395,158.0,alpha,front,2.5871907556026104 +karman_re200,sr,395,158.0,alpha,upper,-5.738671258420964 +karman_re200,sr,395,158.0,alpha,lower,1.1237461026002684 +karman_re200,sr,396,158.4,alpha,front,2.1259803507254804 +karman_re200,sr,396,158.4,alpha,upper,-4.4579871896357535 +karman_re200,sr,396,158.4,alpha,lower,2.4044301713854788 +karman_re200,sr,397,158.8,alpha,front,1.250082701626522 +karman_re200,sr,397,158.8,alpha,upper,-3.2787545706431622 +karman_re200,sr,397,158.8,alpha,lower,3.58366279037807 +karman_re200,sr,398,159.2,alpha,front,0.22988505977689658 +karman_re200,sr,398,159.2,alpha,upper,-3.223829144317714 +karman_re200,sr,398,159.2,alpha,lower,3.6385882167035186 +karman_re200,sr,399,159.6,alpha,front,-0.5997432623605711 +karman_re200,sr,399,159.6,alpha,upper,-3.276146599445731 +karman_re200,sr,399,159.6,alpha,lower,3.5862707615755007 +karman_re200,sr,0,0.0,omega,front,0.029689984557112057 +karman_re200,sr,0,0.0,omega,upper,-0.04779317406639251 +karman_re200,sr,0,0.0,omega,lower,0.02083099954381982 +karman_re200,sr,1,0.4,omega,front,0.022493591990490395 +karman_re200,sr,1,0.4,omega,upper,-0.040123295200251326 +karman_re200,sr,1,0.4,omega,lower,0.028500878409960993 +karman_re200,sr,2,0.8,omega,front,0.012168573718201986 +karman_re200,sr,2,0.8,omega,upper,-0.04129817328379798 +karman_re200,sr,2,0.8,omega,lower,0.027326000326414343 +karman_re200,sr,3,1.2,omega,front,0.005714366874186562 +karman_re200,sr,3,1.2,omega,upper,-0.047753815472466064 +karman_re200,sr,3,1.2,omega,lower,0.02087035813774626 +karman_re200,sr,4,1.6,omega,front,0.0017234642263565078 +karman_re200,sr,4,1.6,omega,upper,-0.03930769902384971 +karman_re200,sr,4,1.6,omega,lower,0.029316474586362613 +karman_re200,sr,5,2.0,omega,front,-0.005312685931684174 +karman_re200,sr,5,2.0,omega,upper,-0.020561950699680837 +karman_re200,sr,5,2.0,omega,lower,0.048062222910531485 +karman_re200,sr,6,2.4,omega,front,-0.014847862282048752 +karman_re200,sr,6,2.4,omega,upper,-0.005970260502549625 +karman_re200,sr,6,2.4,omega,lower,0.0626539131076627 +karman_re200,sr,7,2.8,omega,front,-0.02264170175303835 +karman_re200,sr,7,2.8,omega,upper,-0.0017787453320966629 +karman_re200,sr,7,2.8,omega,lower,0.06684542827811565 +karman_re200,sr,8,3.2,omega,front,-0.02509200364279312 +karman_re200,sr,8,3.2,omega,upper,-0.003554890185613182 +karman_re200,sr,8,3.2,omega,lower,0.06506928342459914 +karman_re200,sr,9,3.6,omega,front,-0.02424087444795496 +karman_re200,sr,9,3.6,omega,upper,-0.022205175041026575 +karman_re200,sr,9,3.6,omega,lower,0.04641899856918575 +karman_re200,sr,10,4.0,omega,front,-0.015205170612923896 +karman_re200,sr,10,4.0,omega,upper,-0.0443542526998414 +karman_re200,sr,10,4.0,omega,lower,0.02426992091037093 +karman_re200,sr,11,4.4,omega,front,-0.0021111557437300866 +karman_re200,sr,11,4.4,omega,upper,-0.04228758853294376 +karman_re200,sr,11,4.4,omega,lower,0.026336585077268566 +karman_re200,sr,12,4.8,omega,front,0.007007995085644779 +karman_re200,sr,12,4.8,omega,upper,-0.03560001960270936 +karman_re200,sr,12,4.8,omega,lower,0.033024154007502964 +karman_re200,sr,13,5.2,omega,front,0.01352757764775737 +karman_re200,sr,13,5.2,omega,upper,-0.04283405365245411 +karman_re200,sr,13,5.2,omega,lower,0.02579011995775821 +karman_re200,sr,14,5.6,omega,front,0.021333256327152522 +karman_re200,sr,14,5.6,omega,upper,-0.0586640582062688 +karman_re200,sr,14,5.6,omega,lower,0.009960115403943526 +karman_re200,sr,15,6.0,omega,front,0.0283103182896017 +karman_re200,sr,15,6.0,omega,upper,-0.06789048100736916 +karman_re200,sr,15,6.0,omega,lower,0.0007336926028431634 +karman_re200,sr,16,6.4,omega,front,0.030193102740558003 +karman_re200,sr,16,6.4,omega,upper,-0.06271707381583352 +karman_re200,sr,16,6.4,omega,lower,0.005907099794378792 +karman_re200,sr,17,6.8,omega,front,0.02592346461134404 +karman_re200,sr,17,6.8,omega,upper,-0.043551585239965517 +karman_re200,sr,17,6.8,omega,lower,0.025072588370246812 +karman_re200,sr,18,7.2,omega,front,0.015101235549865671 +karman_re200,sr,18,7.2,omega,upper,-0.030330112148264452 +karman_re200,sr,18,7.2,omega,lower,0.03829406146194787 +karman_re200,sr,19,7.6,omega,front,0.003225061308407101 +karman_re200,sr,19,7.6,omega,upper,-0.035495064367211095 +karman_re200,sr,19,7.6,omega,lower,0.03312910924300123 +karman_re200,sr,20,8.0,omega,front,-0.005448563769538006 +karman_re200,sr,20,8.0,omega,upper,-0.0388299698550817 +karman_re200,sr,20,8.0,omega,lower,0.029794203755130626 +karman_re200,sr,21,8.4,omega,front,-0.012950886320938066 +karman_re200,sr,21,8.4,omega,upper,-0.029626249192049342 +karman_re200,sr,21,8.4,omega,lower,0.03899792441816298 +karman_re200,sr,22,8.8,omega,front,-0.022036464014622323 +karman_re200,sr,22,8.8,omega,upper,-0.014270449315863116 +karman_re200,sr,22,8.8,omega,lower,0.054353724294349204 +karman_re200,sr,23,9.2,omega,front,-0.029520395944167437 +karman_re200,sr,23,9.2,omega,upper,-0.0030648557470242467 +karman_re200,sr,23,9.2,omega,lower,0.06555931786318808 +karman_re200,sr,24,9.6,omega,front,-0.03147681925021072 +karman_re200,sr,24,9.6,omega,upper,-0.002351676868008741 +karman_re200,sr,24,9.6,omega,lower,0.06627249674220359 +karman_re200,sr,25,10.0,omega,front,-0.028125702118146138 +karman_re200,sr,25,10.0,omega,upper,-0.01783686895908025 +karman_re200,sr,25,10.0,omega,lower,0.05078730465113207 +karman_re200,sr,26,10.4,omega,front,-0.01859404134446092 +karman_re200,sr,26,10.4,omega,upper,-0.03702296096414549 +karman_re200,sr,26,10.4,omega,lower,0.03160121264606683 +karman_re200,sr,27,10.8,omega,front,-0.006057920256004815 +karman_re200,sr,27,10.8,omega,upper,-0.03673885196175491 +karman_re200,sr,27,10.8,omega,lower,0.031885321648457414 +karman_re200,sr,28,11.2,omega,front,0.0033687185751087234 +karman_re200,sr,28,11.2,omega,upper,-0.030684808410782125 +karman_re200,sr,28,11.2,omega,lower,0.0379393651994302 +karman_re200,sr,29,11.6,omega,front,0.010779550191469919 +karman_re200,sr,29,11.6,omega,upper,-0.0372196169125239 +karman_re200,sr,29,11.6,omega,lower,0.03140455669768842 +karman_re200,sr,30,12.0,omega,front,0.01933604025488127 +karman_re200,sr,30,12.0,omega,upper,-0.0513895480781499 +karman_re200,sr,30,12.0,omega,lower,0.017234625532062425 +karman_re200,sr,31,12.4,omega,front,0.02684323146706405 +karman_re200,sr,31,12.4,omega,upper,-0.06129994063310038 +karman_re200,sr,31,12.4,omega,lower,0.007324232977111947 +karman_re200,sr,32,12.8,omega,front,0.02887359909886311 +karman_re200,sr,32,12.8,omega,upper,-0.0615395222953793 +karman_re200,sr,32,12.8,omega,lower,0.0070846513148330285 +karman_re200,sr,33,13.2,omega,front,0.025228222249161908 +karman_re200,sr,33,13.2,omega,upper,-0.051079455278662665 +karman_re200,sr,33,13.2,omega,lower,0.01754471833154966 +karman_re200,sr,34,13.6,omega,front,0.01731927006382551 +karman_re200,sr,34,13.6,omega,upper,-0.03651137536602052 +karman_re200,sr,34,13.6,omega,lower,0.03211279824419181 +karman_re200,sr,35,14.0,omega,front,0.006366853887693534 +karman_re200,sr,35,14.0,omega,upper,-0.03241529245392634 +karman_re200,sr,35,14.0,omega,lower,0.03620888115628599 +karman_re200,sr,36,14.4,omega,front,-0.0029686013105419367 +karman_re200,sr,36,14.4,omega,upper,-0.035187144115825866 +karman_re200,sr,36,14.4,omega,lower,0.033437029494386455 +karman_re200,sr,37,14.8,omega,front,-0.010710915638574526 +karman_re200,sr,37,14.8,omega,upper,-0.0299732479050199 +karman_re200,sr,37,14.8,omega,lower,0.03865092570519242 +karman_re200,sr,38,15.2,omega,front,-0.01869447193079141 +karman_re200,sr,38,15.2,omega,upper,-0.018415593449111547 +karman_re200,sr,38,15.2,omega,lower,0.050208580161100774 +karman_re200,sr,39,15.6,omega,front,-0.025213543673130116 +karman_re200,sr,39,15.6,omega,upper,-0.009528088913153154 +karman_re200,sr,39,15.6,omega,lower,0.059096084697059174 +karman_re200,sr,40,16.0,omega,front,-0.026987175639765354 +karman_re200,sr,40,16.0,omega,upper,-0.00934749185572075 +karman_re200,sr,40,16.0,omega,lower,0.05927668175449157 +karman_re200,sr,41,16.4,omega,front,-0.023351322104562207 +karman_re200,sr,41,16.4,omega,upper,-0.019340491479673816 +karman_re200,sr,41,16.4,omega,lower,0.04928368213053851 +karman_re200,sr,42,16.8,omega,front,-0.01567770754164082 +karman_re200,sr,42,16.8,omega,upper,-0.032238404105096936 +karman_re200,sr,42,16.8,omega,lower,0.03638576950511539 +karman_re200,sr,43,17.2,omega,front,-0.005552283049536597 +karman_re200,sr,43,17.2,omega,upper,-0.03626980994047817 +karman_re200,sr,43,17.2,omega,lower,0.032354363669734154 +karman_re200,sr,44,17.6,omega,front,0.0033662553570932563 +karman_re200,sr,44,17.6,omega,upper,-0.03493563399217399 +karman_re200,sr,44,17.6,omega,lower,0.03368853961803834 +karman_re200,sr,45,18.0,omega,front,0.011005905289030142 +karman_re200,sr,45,18.0,omega,upper,-0.04053947137689316 +karman_re200,sr,45,18.0,omega,lower,0.028084702233319162 +karman_re200,sr,46,18.4,omega,front,0.01858503173572417 +karman_re200,sr,46,18.4,omega,upper,-0.05129274103987793 +karman_re200,sr,46,18.4,omega,lower,0.01733143257033439 +karman_re200,sr,47,18.8,omega,front,0.02430205382933947 +karman_re200,sr,47,18.8,omega,upper,-0.05888049088894647 +karman_re200,sr,47,18.8,omega,lower,0.009743682721265858 +karman_re200,sr,48,19.2,omega,front,0.02539550740014485 +karman_re200,sr,48,19.2,omega,upper,-0.05759336499428235 +karman_re200,sr,48,19.2,omega,lower,0.011030808615929977 +karman_re200,sr,49,19.6,omega,front,0.02142888818239555 +karman_re200,sr,49,19.6,omega,upper,-0.04721693727334697 +karman_re200,sr,49,19.6,omega,lower,0.021407236336865358 +karman_re200,sr,50,20.0,omega,front,0.013671535584398693 +karman_re200,sr,50,20.0,omega,upper,-0.035479118138184884 +karman_re200,sr,50,20.0,omega,lower,0.03314505547202744 +karman_re200,sr,51,20.4,omega,front,0.003933950839115825 +karman_re200,sr,51,20.4,omega,upper,-0.03208523870267639 +karman_re200,sr,51,20.4,omega,lower,0.03653893490753593 +karman_re200,sr,52,20.8,omega,front,-0.004650034026475094 +karman_re200,sr,52,20.8,omega,upper,-0.03229999059130738 +karman_re200,sr,52,20.8,omega,lower,0.03632418301890494 +karman_re200,sr,53,21.2,omega,front,-0.012257132240270106 +karman_re200,sr,53,21.2,omega,upper,-0.025846794993248916 +karman_re200,sr,53,21.2,omega,lower,0.0427773786169634 +karman_re200,sr,54,21.6,omega,front,-0.019606025710303433 +karman_re200,sr,54,21.6,omega,upper,-0.015247707734879597 +karman_re200,sr,54,21.6,omega,lower,0.053376465875332735 +karman_re200,sr,55,22.0,omega,front,-0.024716852805674375 +karman_re200,sr,55,22.0,omega,upper,-0.008580752891051048 +karman_re200,sr,55,22.0,omega,lower,0.06004342071916128 +karman_re200,sr,56,22.4,omega,front,-0.025117096637439593 +karman_re200,sr,56,22.4,omega,upper,-0.01185622921622945 +karman_re200,sr,56,22.4,omega,lower,0.056767944393982875 +karman_re200,sr,57,22.8,omega,front,-0.020556789846939445 +karman_re200,sr,57,22.8,omega,upper,-0.02443183740353452 +karman_re200,sr,57,22.8,omega,lower,0.044192336206677806 +karman_re200,sr,58,23.2,omega,front,-0.011951939958276845 +karman_re200,sr,58,23.2,omega,upper,-0.0358987168012551 +karman_re200,sr,58,23.2,omega,lower,0.03272545680895722 +karman_re200,sr,59,23.6,omega,front,-0.001960989271145131 +karman_re200,sr,59,23.6,omega,upper,-0.03668176890741954 +karman_re200,sr,59,23.6,omega,lower,0.03194240470279278 +karman_re200,sr,60,24.0,omega,front,0.006251577782058785 +karman_re200,sr,60,24.0,omega,upper,-0.036452587158304454 +karman_re200,sr,60,24.0,omega,lower,0.03217158645190787 +karman_re200,sr,61,24.4,omega,front,0.013680556293087074 +karman_re200,sr,61,24.4,omega,upper,-0.04445640965684527 +karman_re200,sr,61,24.4,omega,lower,0.024167763953367054 +karman_re200,sr,62,24.8,omega,front,0.020871251476537532 +karman_re200,sr,62,24.8,omega,upper,-0.055531307786429326 +karman_re200,sr,62,24.8,omega,lower,0.013092865823782995 +karman_re200,sr,63,25.2,omega,front,0.02546759936597308 +karman_re200,sr,63,25.2,omega,upper,-0.06096116319535815 +karman_re200,sr,63,25.2,omega,lower,0.007663010414854177 +karman_re200,sr,64,25.6,omega,front,0.025044021659895263 +karman_re200,sr,64,25.6,omega,upper,-0.05569324559401018 +karman_re200,sr,64,25.6,omega,lower,0.012930928016202149 +karman_re200,sr,65,26.0,omega,front,0.019783452221091038 +karman_re200,sr,65,26.0,omega,upper,-0.04232996768428743 +karman_re200,sr,65,26.0,omega,lower,0.0262942059259249 +karman_re200,sr,66,26.4,omega,front,0.010591236626127338 +karman_re200,sr,66,26.4,omega,upper,-0.03208039728504193 +karman_re200,sr,66,26.4,omega,lower,0.03654377632517039 +karman_re200,sr,67,26.8,omega,front,0.0006067093422528793 +karman_re200,sr,67,26.8,omega,upper,-0.032652518873098176 +karman_re200,sr,67,26.8,omega,lower,0.035971654737114146 +karman_re200,sr,68,27.2,omega,front,-0.007428142684670762 +karman_re200,sr,68,27.2,omega,upper,-0.0318880011751985 +karman_re200,sr,68,27.2,omega,lower,0.03673617243501382 +karman_re200,sr,69,27.6,omega,front,-0.014991758946957092 +karman_re200,sr,69,27.6,omega,upper,-0.022888021981824675 +karman_re200,sr,69,27.6,omega,lower,0.04573615162838765 +karman_re200,sr,70,28.0,omega,front,-0.02220614053918383 +karman_re200,sr,70,28.0,omega,upper,-0.0118584428707076 +karman_re200,sr,70,28.0,omega,lower,0.05676573073950472 +karman_re200,sr,71,28.4,omega,front,-0.026419605809195206 +karman_re200,sr,71,28.4,omega,upper,-0.007134355013421785 +karman_re200,sr,71,28.4,omega,lower,0.06148981859679054 +karman_re200,sr,72,28.8,omega,front,-0.025400744801320624 +karman_re200,sr,72,28.8,omega,upper,-0.013708118657620463 +karman_re200,sr,72,28.8,omega,lower,0.054916054952591865 +karman_re200,sr,73,29.2,omega,front,-0.01958025384261544 +karman_re200,sr,73,29.2,omega,upper,-0.028104381530282385 +karman_re200,sr,73,29.2,omega,lower,0.04051979207992994 +karman_re200,sr,74,29.6,omega,front,-0.009818022875739092 +karman_re200,sr,74,29.6,omega,upper,-0.03748652518018677 +karman_re200,sr,74,29.6,omega,lower,0.031137648430025557 +karman_re200,sr,75,30.0,omega,front,0.00017111663922308637 +karman_re200,sr,75,30.0,omega,upper,-0.03566663933630959 +karman_re200,sr,75,30.0,omega,lower,0.03295753427390273 +karman_re200,sr,76,30.4,omega,front,0.008021879097208766 +karman_re200,sr,76,30.4,omega,upper,-0.036975015704980574 +karman_re200,sr,76,30.4,omega,lower,0.03164915790523175 +karman_re200,sr,77,30.8,omega,front,0.01558358927580168 +karman_re200,sr,77,30.8,omega,upper,-0.04680461291639545 +karman_re200,sr,77,30.8,omega,lower,0.021819560693816877 +karman_re200,sr,78,31.2,omega,front,0.022671824357766136 +karman_re200,sr,78,31.2,omega,upper,-0.057432224954890324 +karman_re200,sr,78,31.2,omega,lower,0.011191948655322 +karman_re200,sr,79,31.6,omega,front,0.02638876481559811 +karman_re200,sr,79,31.6,omega,upper,-0.06072759981103804 +karman_re200,sr,79,31.6,omega,lower,0.007896573799174283 +karman_re200,sr,80,32.0,omega,front,0.02469088779882807 +karman_re200,sr,80,32.0,omega,upper,-0.053103358157164354 +karman_re200,sr,80,32.0,omega,lower,0.015520815453047974 +karman_re200,sr,81,32.4,omega,front,0.01838136893527249 +karman_re200,sr,81,32.4,omega,upper,-0.03933278000312962 +karman_re200,sr,81,32.4,omega,lower,0.029291393607082706 +karman_re200,sr,82,32.8,omega,front,0.008591065524733899 +karman_re200,sr,82,32.8,omega,upper,-0.03165783896288952 +karman_re200,sr,82,32.8,omega,lower,0.0369663346473228 +karman_re200,sr,83,33.2,omega,front,-0.001012472319716042 +karman_re200,sr,83,33.2,omega,upper,-0.03346693971163382 +karman_re200,sr,83,33.2,omega,lower,0.0351572338985785 +karman_re200,sr,84,33.6,omega,front,-0.008744852690540124 +karman_re200,sr,84,33.6,omega,upper,-0.030857439965993307 +karman_re200,sr,84,33.6,omega,lower,0.037766733644219015 +karman_re200,sr,85,34.0,omega,front,-0.016387413140793176 +karman_re200,sr,85,34.0,omega,upper,-0.020576430801291325 +karman_re200,sr,85,34.0,omega,lower,0.048047742808921 +karman_re200,sr,86,34.4,omega,front,-0.023245993775575742 +karman_re200,sr,86,34.4,omega,upper,-0.010481456915339455 +karman_re200,sr,86,34.4,omega,lower,0.058142716694872865 +karman_re200,sr,87,34.8,omega,front,-0.026402881290079498 +karman_re200,sr,87,34.8,omega,upper,-0.008062652693536804 +karman_re200,sr,87,34.8,omega,lower,0.06056152091667552 +karman_re200,sr,88,35.2,omega,front,-0.024233605755631413 +karman_re200,sr,88,35.2,omega,upper,-0.016496211905471073 +karman_re200,sr,88,35.2,omega,lower,0.052127961704741245 +karman_re200,sr,89,35.6,omega,front,-0.017572934594373125 +karman_re200,sr,89,35.6,omega,upper,-0.030416146271070553 +karman_re200,sr,89,35.6,omega,lower,0.03820802733914177 +karman_re200,sr,90,36.0,omega,front,-0.007596791353711591 +karman_re200,sr,90,36.0,omega,upper,-0.0372866324853018 +karman_re200,sr,90,36.0,omega,lower,0.03133754112491053 +karman_re200,sr,91,36.4,omega,front,0.001869706820947701 +karman_re200,sr,91,36.4,omega,upper,-0.03540789753537354 +karman_re200,sr,91,36.4,omega,lower,0.033216276074838784 +karman_re200,sr,92,36.8,omega,front,0.009551414913598049 +karman_re200,sr,92,36.8,omega,upper,-0.03876355413090379 +karman_re200,sr,92,36.8,omega,lower,0.02986061947930853 +karman_re200,sr,93,37.2,omega,front,0.01715976420294096 +karman_re200,sr,93,37.2,omega,upper,-0.04927426877040207 +karman_re200,sr,93,37.2,omega,lower,0.019349904839810254 +karman_re200,sr,94,37.6,omega,front,0.023721044177339126 +karman_re200,sr,94,37.6,omega,upper,-0.058776884551569 +karman_re200,sr,94,37.6,omega,lower,0.009847289058643325 +karman_re200,sr,95,38.0,omega,front,0.02630984327153271 +karman_re200,sr,95,38.0,omega,upper,-0.05993113027920929 +karman_re200,sr,95,38.0,omega,lower,0.00869304333100303 +karman_re200,sr,96,38.4,omega,front,0.02354637533853378 +karman_re200,sr,96,38.4,omega,upper,-0.05023874462889687 +karman_re200,sr,96,38.4,omega,lower,0.01838542898131545 +karman_re200,sr,97,38.8,omega,front,0.01634580741410804 +karman_re200,sr,97,38.8,omega,upper,-0.03653732110165778 +karman_re200,sr,97,38.8,omega,lower,0.032086852508554545 +karman_re200,sr,98,39.2,omega,front,0.006247312958644589 +karman_re200,sr,98,39.2,omega,upper,-0.031422777479527805 +karman_re200,sr,98,39.2,omega,lower,0.03720139613068452 +karman_re200,sr,99,39.6,omega,front,-0.0028787825554658247 +karman_re200,sr,99,39.6,omega,upper,-0.03341299901138572 +karman_re200,sr,99,39.6,omega,lower,0.035211174598826604 +karman_re200,sr,100,40.0,omega,front,-0.01043488426150007 +karman_re200,sr,100,40.0,omega,upper,-0.028806180032940158 +karman_re200,sr,100,40.0,omega,lower,0.039817993577272164 +karman_re200,sr,101,40.4,omega,front,-0.01801705431493027 +karman_re200,sr,101,40.4,omega,upper,-0.017857868227455134 +karman_re200,sr,101,40.4,omega,lower,0.05076630538275719 +karman_re200,sr,102,40.8,omega,front,-0.024247498011089934 +karman_re200,sr,102,40.8,omega,upper,-0.009030930130595523 +karman_re200,sr,102,40.8,omega,lower,0.059593243479616795 +karman_re200,sr,103,41.2,omega,front,-0.026197397209564825 +karman_re200,sr,103,41.2,omega,upper,-0.009223627687197328 +karman_re200,sr,103,41.2,omega,lower,0.059400545923015 +karman_re200,sr,104,41.6,omega,front,-0.02289181163507688 +karman_re200,sr,104,41.6,omega,upper,-0.01984221306998317 +karman_re200,sr,104,41.6,omega,lower,0.04878196054022915 +karman_re200,sr,105,42.0,omega,front,-0.015252376043205913 +karman_re200,sr,105,42.0,omega,upper,-0.03320431259692319 +karman_re200,sr,105,42.0,omega,lower,0.03541986101328914 +karman_re200,sr,106,42.4,omega,front,-0.00506208498778566 +karman_re200,sr,106,42.4,omega,upper,-0.03703214138815046 +karman_re200,sr,106,42.4,omega,lower,0.03159203222206186 +karman_re200,sr,107,42.8,omega,front,0.0038440699798103595 +karman_re200,sr,107,42.8,omega,upper,-0.03537501852429372 +karman_re200,sr,107,42.8,omega,lower,0.03324915508591861 +karman_re200,sr,108,43.2,omega,front,0.01137612463963996 +karman_re200,sr,108,43.2,omega,upper,-0.04097717815988296 +karman_re200,sr,108,43.2,omega,lower,0.027646995450329365 +karman_re200,sr,109,43.6,omega,front,0.018955468201387812 +karman_re200,sr,109,43.6,omega,upper,-0.052060632505537975 +karman_re200,sr,109,43.6,omega,lower,0.016563541104674343 +karman_re200,sr,110,44.0,omega,front,0.024834357781595862 +karman_re200,sr,110,44.0,omega,upper,-0.06023173055072455 +karman_re200,sr,110,44.0,omega,lower,0.008392443059487768 +karman_re200,sr,111,44.4,omega,front,0.02617391503989849 +karman_re200,sr,111,44.4,omega,upper,-0.05875227857930228 +karman_re200,sr,111,44.4,omega,lower,0.009871895030910042 +karman_re200,sr,112,44.8,omega,front,0.022326433822954066 +karman_re200,sr,112,44.8,omega,upper,-0.04701941809106958 +karman_re200,sr,112,44.8,omega,lower,0.021604755519142742 +karman_re200,sr,113,45.2,omega,front,0.014162172982235035 +karman_re200,sr,113,45.2,omega,upper,-0.03394515302216528 +karman_re200,sr,113,45.2,omega,lower,0.034679020588047046 +karman_re200,sr,114,45.6,omega,front,0.003859122291213433 +karman_re200,sr,114,45.6,omega,upper,-0.03163515128817608 +karman_re200,sr,114,45.6,omega,lower,0.03698902232203624 +karman_re200,sr,115,46.0,omega,front,-0.004780952960939482 +karman_re200,sr,115,46.0,omega,upper,-0.033185388439314276 +karman_re200,sr,115,46.0,omega,lower,0.035438785170898046 +karman_re200,sr,116,46.4,omega,front,-0.012254962421726023 +karman_re200,sr,116,46.4,omega,upper,-0.026513692660104057 +karman_re200,sr,116,46.4,omega,lower,0.04211048095010827 +karman_re200,sr,117,46.8,omega,front,-0.019778745397603045 +karman_re200,sr,117,46.8,omega,upper,-0.015237182980128959 +karman_re200,sr,117,46.8,omega,lower,0.05338699063008336 +karman_re200,sr,118,47.2,omega,front,-0.025264155012569425 +karman_re200,sr,118,47.2,omega,upper,-0.007984107543480366 +karman_re200,sr,118,47.2,omega,lower,0.06064006606673196 +karman_re200,sr,119,47.6,omega,front,-0.025947545290402118 +karman_re200,sr,119,47.6,omega,upper,-0.010949606776008088 +karman_re200,sr,119,47.6,omega,lower,0.05767456683420424 +karman_re200,sr,120,48.0,omega,front,-0.02152207094431155 +karman_re200,sr,120,48.0,omega,upper,-0.023388575846559928 +karman_re200,sr,120,48.0,omega,lower,0.045235597763652394 +karman_re200,sr,121,48.4,omega,front,-0.012933412555087525 +karman_re200,sr,121,48.4,omega,upper,-0.03542037255930334 +karman_re200,sr,121,48.4,omega,lower,0.03320380105090898 +karman_re200,sr,122,48.8,omega,front,-0.0027219843057816927 +karman_re200,sr,122,48.8,omega,upper,-0.03639108897467979 +karman_re200,sr,122,48.8,omega,lower,0.03223308463553253 +karman_re200,sr,123,49.2,omega,front,0.0056506461588770075 +karman_re200,sr,123,49.2,omega,upper,-0.035641369572191106 +karman_re200,sr,123,49.2,omega,lower,0.032982804038021216 +karman_re200,sr,124,49.6,omega,front,0.013150058524959454 +karman_re200,sr,124,49.6,omega,upper,-0.04333750627793655 +karman_re200,sr,124,49.6,omega,lower,0.025286667332275775 +karman_re200,sr,125,50.0,omega,front,0.02061815570751129 +karman_re200,sr,125,50.0,omega,upper,-0.054569692627222305 +karman_re200,sr,125,50.0,omega,lower,0.014054480982990012 +karman_re200,sr,126,50.4,omega,front,0.02566603897318707 +karman_re200,sr,126,50.4,omega,upper,-0.060942902829601006 +karman_re200,sr,126,50.4,omega,lower,0.00768127078061132 +karman_re200,sr,127,50.8,omega,front,0.025727127778966304 +karman_re200,sr,127,50.8,omega,upper,-0.056877620772903925 +karman_re200,sr,127,50.8,omega,lower,0.011746552837308402 +karman_re200,sr,128,51.2,omega,front,0.02084851522362054 +karman_re200,sr,128,51.2,omega,upper,-0.043846975658919415 +karman_re200,sr,128,51.2,omega,lower,0.02477719795129291 +karman_re200,sr,129,51.6,omega,front,0.011889579764038236 +karman_re200,sr,129,51.6,omega,upper,-0.03240418155270108 +karman_re200,sr,129,51.6,omega,lower,0.03621999205751124 +karman_re200,sr,130,52.0,omega,front,0.0017074689289691513 +karman_re200,sr,130,52.0,omega,upper,-0.03229100504197449 +karman_re200,sr,130,52.0,omega,lower,0.03633316856823783 +karman_re200,sr,131,52.4,omega,front,-0.0065035304780664575 +karman_re200,sr,131,52.4,omega,upper,-0.03245188626344266 +karman_re200,sr,131,52.4,omega,lower,0.036172287346769666 +karman_re200,sr,132,52.8,omega,front,-0.014018655047676215 +karman_re200,sr,132,52.8,omega,upper,-0.024099627851224704 +karman_re200,sr,132,52.8,omega,lower,0.04452454575898762 +karman_re200,sr,133,53.2,omega,front,-0.02135597837213143 +karman_re200,sr,133,53.2,omega,upper,-0.01303287030657507 +karman_re200,sr,133,53.2,omega,lower,0.055591303303637256 +karman_re200,sr,134,53.6,omega,front,-0.025961134295182178 +karman_re200,sr,134,53.6,omega,upper,-0.007679495594145353 +karman_re200,sr,134,53.6,omega,lower,0.060944678016066976 +karman_re200,sr,135,54.0,omega,front,-0.025396306596662005 +karman_re200,sr,135,54.0,omega,upper,-0.013180669043221563 +karman_re200,sr,135,54.0,omega,lower,0.055443504566990764 +karman_re200,sr,136,54.4,omega,front,-0.019948006783973696 +karman_re200,sr,136,54.4,omega,upper,-0.026750906899608892 +karman_re200,sr,136,54.4,omega,lower,0.04187326671060343 +karman_re200,sr,137,54.8,omega,front,-0.010619997710788531 +karman_re200,sr,137,54.8,omega,upper,-0.03672912040781797 +karman_re200,sr,137,54.8,omega,lower,0.03189505320239436 +karman_re200,sr,138,55.2,omega,front,-0.000646634813760451 +karman_re200,sr,138,55.2,omega,upper,-0.03573341131574739 +karman_re200,sr,138,55.2,omega,lower,0.03289076229446493 +karman_re200,sr,139,55.6,omega,front,0.007307275311402369 +karman_re200,sr,139,55.6,omega,upper,-0.0366231725294588 +karman_re200,sr,139,55.6,omega,lower,0.03200100108075352 +karman_re200,sr,140,56.0,omega,front,0.014844787595448022 +karman_re200,sr,140,56.0,omega,upper,-0.045850375590476666 +karman_re200,sr,140,56.0,omega,lower,0.022773798019735655 +karman_re200,sr,141,56.4,omega,front,0.02202020569347496 +karman_re200,sr,141,56.4,omega,upper,-0.05667773416785245 +karman_re200,sr,141,56.4,omega,lower,0.011946439442359869 +karman_re200,sr,142,56.8,omega,front,0.026080017441097697 +karman_re200,sr,142,56.8,omega,upper,-0.060848973237658956 +karman_re200,sr,142,56.8,omega,lower,0.0077752003725533704 +karman_re200,sr,143,57.2,omega,front,0.024889531645152008 +karman_re200,sr,143,57.2,omega,upper,-0.054368948878105366 +karman_re200,sr,143,57.2,omega,lower,0.01425522473210695 +karman_re200,sr,144,57.6,omega,front,0.019035322141389897 +karman_re200,sr,144,57.6,omega,upper,-0.04069307220240913 +karman_re200,sr,144,57.6,omega,lower,0.027931101407803194 +karman_re200,sr,145,58.0,omega,front,0.009490708168153823 +karman_re200,sr,145,58.0,omega,upper,-0.03170298594356006 +karman_re200,sr,145,58.0,omega,lower,0.03692118766665227 +karman_re200,sr,146,58.4,omega,front,-0.00031687382946088785 +karman_re200,sr,146,58.4,omega,upper,-0.03293317189497611 +karman_re200,sr,146,58.4,omega,lower,0.03569100171523621 +karman_re200,sr,147,58.8,omega,front,-0.008184995106360542 +karman_re200,sr,147,58.8,omega,upper,-0.031156870989476095 +karman_re200,sr,147,58.8,omega,lower,0.03746730262073623 +karman_re200,sr,148,59.2,omega,front,-0.01577310807389194 +karman_re200,sr,148,59.2,omega,upper,-0.021533140599612106 +karman_re200,sr,148,59.2,omega,lower,0.04709103301060022 +karman_re200,sr,149,59.6,omega,front,-0.022752667525457234 +karman_re200,sr,149,59.6,omega,upper,-0.011068994916907196 +karman_re200,sr,149,59.6,omega,lower,0.05755517869330513 +karman_re200,sr,150,60.0,omega,front,-0.02630426576783908 +karman_re200,sr,150,60.0,omega,upper,-0.00794251398065852 +karman_re200,sr,150,60.0,omega,lower,0.060681659629553804 +karman_re200,sr,151,60.4,omega,front,-0.024532846687560245 +karman_re200,sr,151,60.4,omega,upper,-0.015779488743357127 +karman_re200,sr,151,60.4,omega,lower,0.0528446848668552 +karman_re200,sr,152,60.8,omega,front,-0.018134185888479017 +karman_re200,sr,152,60.8,omega,upper,-0.02987899250698547 +karman_re200,sr,152,60.8,omega,lower,0.038745181103226854 +karman_re200,sr,153,61.2,omega,front,-0.008260553365082905 +karman_re200,sr,153,61.2,omega,upper,-0.037346294584125465 +karman_re200,sr,153,61.2,omega,lower,0.03127787902608686 +karman_re200,sr,154,61.6,omega,front,0.0013098032274686234 +karman_re200,sr,154,61.6,omega,upper,-0.0353648363226776 +karman_re200,sr,154,61.6,omega,lower,0.033259337287534725 +karman_re200,sr,155,62.0,omega,front,0.008981947213298683 +karman_re200,sr,155,62.0,omega,upper,-0.03817911889950556 +karman_re200,sr,155,62.0,omega,lower,0.030445054710706763 +karman_re200,sr,156,62.4,omega,front,0.016559070340723035 +karman_re200,sr,156,62.4,omega,upper,-0.048492991850703604 +karman_re200,sr,156,62.4,omega,lower,0.02013118175950872 +karman_re200,sr,157,62.8,omega,front,0.023271796279130227 +karman_re200,sr,157,62.8,omega,upper,-0.0584354077951268 +karman_re200,sr,157,62.8,omega,lower,0.01018876581508552 +karman_re200,sr,158,63.2,omega,front,0.026228348314682064 +karman_re200,sr,158,63.2,omega,upper,-0.060181463542536826 +karman_re200,sr,158,63.2,omega,lower,0.008442710067675505 +karman_re200,sr,159,63.6,omega,front,0.02382628770269516 +karman_re200,sr,159,63.6,omega,upper,-0.0513483945057986 +karman_re200,sr,159,63.6,omega,lower,0.017275779104413722 +karman_re200,sr,160,64.0,omega,front,0.016991516464152905 +karman_re200,sr,160,64.0,omega,upper,-0.037586340596208946 +karman_re200,sr,160,64.0,omega,lower,0.031037833014003376 +karman_re200,sr,161,64.4,omega,front,0.007022575982102247 +karman_re200,sr,161,64.4,omega,upper,-0.03151046194721307 +karman_re200,sr,161,64.4,omega,lower,0.03711371166299925 +karman_re200,sr,162,64.8,omega,front,-0.0022773660863969723 +karman_re200,sr,162,64.8,omega,upper,-0.033334233104864816 +karman_re200,sr,162,64.8,omega,lower,0.035289940505347506 +karman_re200,sr,163,65.2,omega,front,-0.009900484194378398 +karman_re200,sr,163,65.2,omega,upper,-0.029413025851627472 +karman_re200,sr,163,65.2,omega,lower,0.039211147758584856 +karman_re200,sr,164,65.6,omega,front,-0.01752213943973488 +karman_re200,sr,164,65.6,omega,upper,-0.018803040836205487 +karman_re200,sr,164,65.6,omega,lower,0.04982113277400684 +karman_re200,sr,165,66.0,omega,front,-0.023952971006618133 +karman_re200,sr,165,66.0,omega,upper,-0.009408772327797696 +karman_re200,sr,165,66.0,omega,lower,0.05921540128241462 +karman_re200,sr,166,66.4,omega,front,-0.02634143284586754 +karman_re200,sr,166,66.4,omega,upper,-0.008741985800403982 +karman_re200,sr,166,66.4,omega,lower,0.059882187809808335 +karman_re200,sr,167,66.8,omega,front,-0.02340832968012716 +karman_re200,sr,167,66.8,omega,upper,-0.018752578953345672 +karman_re200,sr,167,66.8,omega,lower,0.04987159465686664 +karman_re200,sr,168,67.2,omega,front,-0.016072051527117156 +karman_re200,sr,168,67.2,omega,upper,-0.03266031081506458 +karman_re200,sr,168,67.2,omega,lower,0.03596386279514774 +karman_re200,sr,169,67.6,omega,front,-0.005863163612740723 +karman_re200,sr,169,67.6,omega,upper,-0.0373455120405204 +karman_re200,sr,169,67.6,omega,lower,0.03127866156969193 +karman_re200,sr,170,68.0,omega,front,0.003217754765248508 +karman_re200,sr,170,68.0,omega,upper,-0.03528395419901458 +karman_re200,sr,170,68.0,omega,lower,0.03334021941119774 +karman_re200,sr,171,68.4,omega,front,0.010736355395709834 +karman_re200,sr,171,68.4,omega,upper,-0.04017557337595326 +karman_re200,sr,171,68.4,omega,lower,0.028448600234259068 +karman_re200,sr,172,68.8,omega,front,0.018324089632891706 +karman_re200,sr,172,68.8,omega,upper,-0.05121016594250124 +karman_re200,sr,172,68.8,omega,lower,0.01741400766771109 +karman_re200,sr,173,69.2,omega,front,0.024425863577785197 +karman_re200,sr,173,69.2,omega,upper,-0.05980614253640466 +karman_re200,sr,173,69.2,omega,lower,0.008818031073807657 +karman_re200,sr,174,69.6,omega,front,0.026179708326651747 +karman_re200,sr,174,69.6,omega,upper,-0.059034556064267 +karman_re200,sr,174,69.6,omega,lower,0.009589617545945325 +karman_re200,sr,175,70.0,omega,front,0.022634905474656058 +karman_re200,sr,175,70.0,omega,upper,-0.04800154533197128 +karman_re200,sr,175,70.0,omega,lower,0.020622628278241042 +karman_re200,sr,176,70.4,omega,front,0.01481586245350178 +karman_re200,sr,176,70.4,omega,upper,-0.0348375237295325 +karman_re200,sr,176,70.4,omega,lower,0.03378664988067983 +karman_re200,sr,177,70.8,omega,front,0.004600880887681054 +karman_re200,sr,177,70.8,omega,upper,-0.03174731993145802 +karman_re200,sr,177,70.8,omega,lower,0.03687685367875431 +karman_re200,sr,178,71.2,omega,front,-0.004160889683132126 +karman_re200,sr,178,71.2,omega,upper,-0.03333346274092675 +karman_re200,sr,178,71.2,omega,lower,0.03529071086928557 +karman_re200,sr,179,71.6,omega,front,-0.011661837394523644 +karman_re200,sr,179,71.6,omega,upper,-0.02728335626731332 +karman_re200,sr,179,71.6,omega,lower,0.041340817342899 +karman_re200,sr,180,72.0,omega,front,-0.01923661932015079 +karman_re200,sr,180,72.0,omega,upper,-0.016062655344013205 +karman_re200,sr,180,72.0,omega,lower,0.05256151826619912 +karman_re200,sr,181,72.4,omega,front,-0.02496655731747948 +karman_re200,sr,181,72.4,omega,upper,-0.008242780833789518 +karman_re200,sr,181,72.4,omega,lower,0.0603813927764228 +karman_re200,sr,182,72.8,omega,front,-0.026091668838321716 +karman_re200,sr,182,72.8,omega,upper,-0.010161597545372643 +karman_re200,sr,182,72.8,omega,lower,0.058462576064839684 +karman_re200,sr,183,73.2,omega,front,-0.02205915941971733 +karman_re200,sr,183,73.2,omega,upper,-0.022054536919509555 +karman_re200,sr,183,73.2,omega,lower,0.04656963669070277 +karman_re200,sr,184,73.6,omega,front,-0.013797460095628431 +karman_re200,sr,184,73.6,omega,upper,-0.034849870866958746 +karman_re200,sr,184,73.6,omega,lower,0.033774302743253576 +karman_re200,sr,185,74.0,omega,front,-0.0035091703422796897 +karman_re200,sr,185,74.0,omega,upper,-0.036830208599042166 +karman_re200,sr,185,74.0,omega,lower,0.03179396501117016 +karman_re200,sr,186,74.4,omega,front,0.00505907612389808 +karman_re200,sr,186,74.4,omega,upper,-0.035597781588897204 +karman_re200,sr,186,74.4,omega,lower,0.03302639202131512 +karman_re200,sr,187,74.8,omega,front,0.01255638604814282 +karman_re200,sr,187,74.8,omega,upper,-0.042485833927866305 +karman_re200,sr,187,74.8,omega,lower,0.02613833968234601 +karman_re200,sr,188,75.2,omega,front,0.020069779913294866 +karman_re200,sr,188,75.2,omega,upper,-0.0537703365143134 +karman_re200,sr,188,75.2,omega,lower,0.014853837095898928 +karman_re200,sr,189,75.6,omega,front,0.025405139494168855 +karman_re200,sr,189,75.6,omega,upper,-0.060685689576874056 +karman_re200,sr,189,75.6,omega,lower,0.00793848403333826 +karman_re200,sr,190,76.0,omega,front,0.025894492849600964 +karman_re200,sr,190,76.0,omega,upper,-0.05738175850465538 +karman_re200,sr,190,76.0,omega,lower,0.011242415105556942 +karman_re200,sr,191,76.4,omega,front,0.02129225976581269 +karman_re200,sr,191,76.4,omega,upper,-0.04461323809411755 +karman_re200,sr,191,76.4,omega,lower,0.024010935516094775 +karman_re200,sr,192,76.8,omega,front,0.012558315441734658 +karman_re200,sr,192,76.8,omega,upper,-0.03281846988095715 +karman_re200,sr,192,76.8,omega,lower,0.03580570372925517 +karman_re200,sr,193,77.2,omega,front,0.0023505237030811664 +karman_re200,sr,193,77.2,omega,upper,-0.032275920524388886 +karman_re200,sr,193,77.2,omega,lower,0.03634825308582344 +karman_re200,sr,194,77.6,omega,front,-0.005931690052107266 +karman_re200,sr,194,77.6,omega,upper,-0.032814185683088165 +karman_re200,sr,194,77.6,omega,lower,0.03580998792712416 +karman_re200,sr,195,78.0,omega,front,-0.0134275537636545 +karman_re200,sr,195,78.0,omega,upper,-0.02489006997034438 +karman_re200,sr,195,78.0,omega,lower,0.04373410363986795 +karman_re200,sr,196,78.4,omega,front,-0.020839534030759953 +karman_re200,sr,196,78.4,omega,upper,-0.013603298920917628 +karman_re200,sr,196,78.4,omega,lower,0.05502087468929469 +karman_re200,sr,197,78.8,omega,front,-0.025718134154159893 +karman_re200,sr,197,78.8,omega,upper,-0.007715367758391634 +karman_re200,sr,197,78.8,omega,lower,0.06090880585182069 +karman_re200,sr,198,79.2,omega,front,-0.02555090405893702 +karman_re200,sr,198,79.2,omega,upper,-0.012246846361661429 +karman_re200,sr,198,79.2,omega,lower,0.05637732724855089 +karman_re200,sr,199,79.6,omega,front,-0.020480352472048206 +karman_re200,sr,199,79.6,omega,upper,-0.025468549344577204 +karman_re200,sr,199,79.6,omega,lower,0.043155624265635115 +karman_re200,sr,200,80.0,omega,front,-0.011412841725629452 +karman_re200,sr,200,80.0,omega,upper,-0.03629004341229011 +karman_re200,sr,200,80.0,omega,lower,0.03233413019792221 +karman_re200,sr,201,80.4,omega,front,-0.0013170869324767435 +karman_re200,sr,201,80.4,omega,upper,-0.0360722770560754 +karman_re200,sr,201,80.4,omega,lower,0.03255189655413692 +karman_re200,sr,202,80.8,omega,front,0.0067983607332167085 +karman_re200,sr,202,80.8,omega,upper,-0.03637033482210338 +karman_re200,sr,202,80.8,omega,lower,0.03225383878810894 +karman_re200,sr,203,81.2,omega,front,0.01434750221458313 +karman_re200,sr,203,81.2,omega,upper,-0.044986624055654297 +karman_re200,sr,203,81.2,omega,lower,0.023637549554558025 +karman_re200,sr,204,81.6,omega,front,0.02163302783676913 +karman_re200,sr,204,81.6,omega,upper,-0.05604311109610201 +karman_re200,sr,204,81.6,omega,lower,0.012581062514110309 +karman_re200,sr,205,82.0,omega,front,0.02605228265796395 +karman_re200,sr,205,82.0,omega,upper,-0.06093607917116149 +karman_re200,sr,205,82.0,omega,lower,0.007688094439050834 +karman_re200,sr,206,82.4,omega,front,0.02526689980860779 +karman_re200,sr,206,82.4,omega,upper,-0.05519449888736677 +karman_re200,sr,206,82.4,omega,lower,0.013429674722845548 +karman_re200,sr,207,82.8,omega,front,0.01969384364359899 +karman_re200,sr,207,82.8,omega,upper,-0.041388750422396925 +karman_re200,sr,207,82.8,omega,lower,0.0272354231878154 +karman_re200,sr,208,83.2,omega,front,0.010239433649260245 +karman_re200,sr,208,83.2,omega,upper,-0.031687730910636376 +karman_re200,sr,208,83.2,omega,lower,0.036936442699575946 +karman_re200,sr,209,83.6,omega,front,0.0002979168325741619 +karman_re200,sr,209,83.6,omega,upper,-0.03283815222283712 +karman_re200,sr,209,83.6,omega,lower,0.0357860213873752 +karman_re200,sr,210,84.0,omega,front,-0.007614855414989668 +karman_re200,sr,210,84.0,omega,upper,-0.031732472917379004 +karman_re200,sr,210,84.0,omega,lower,0.036891700692833325 +karman_re200,sr,211,84.4,omega,front,-0.015170413556392731 +karman_re200,sr,211,84.4,omega,upper,-0.022343201117359986 +karman_re200,sr,211,84.4,omega,lower,0.04628097249285234 +karman_re200,sr,212,84.8,omega,front,-0.022268168844868787 +karman_re200,sr,212,84.8,omega,upper,-0.011594440976083784 +karman_re200,sr,212,84.8,omega,lower,0.05702973263412854 +karman_re200,sr,213,85.2,omega,front,-0.026159556142473565 +karman_re200,sr,213,85.2,omega,upper,-0.00789145833903221 +karman_re200,sr,213,85.2,omega,lower,0.06073271527118012 +karman_re200,sr,214,85.6,omega,front,-0.02474065376595145 +karman_re200,sr,214,85.6,omega,upper,-0.014904685683186149 +karman_re200,sr,214,85.6,omega,lower,0.053719487927026174 +karman_re200,sr,215,86.0,omega,front,-0.0186835580143535 +karman_re200,sr,215,86.0,omega,upper,-0.02869616414580135 +karman_re200,sr,215,86.0,omega,lower,0.039928009464410975 +karman_re200,sr,216,86.4,omega,front,-0.00901416393490045 +karman_re200,sr,216,86.4,omega,upper,-0.03697513141181712 +karman_re200,sr,216,86.4,omega,lower,0.031649042198395205 +karman_re200,sr,217,86.8,omega,front,0.000680289811594311 +karman_re200,sr,217,86.8,omega,upper,-0.035468868948400234 +karman_re200,sr,217,86.8,omega,lower,0.03315530466181209 +karman_re200,sr,218,87.2,omega,front,0.008462338941715395 +karman_re200,sr,218,87.2,omega,upper,-0.037669832213527765 +karman_re200,sr,218,87.2,omega,lower,0.030954341396684557 +karman_re200,sr,219,87.6,omega,front,0.016060317990251094 +karman_re200,sr,219,87.6,omega,upper,-0.04760292919023382 +karman_re200,sr,219,87.6,omega,lower,0.021021244419978508 +karman_re200,sr,220,88.0,omega,front,0.022942630321612575 +karman_re200,sr,220,88.0,omega,upper,-0.057890498628076326 +karman_re200,sr,220,88.0,omega,lower,0.010733674982135994 +karman_re200,sr,221,88.4,omega,front,0.026294707377493884 +karman_re200,sr,221,88.4,omega,upper,-0.060573982238479936 +karman_re200,sr,221,88.4,omega,lower,0.008050191371732383 +karman_re200,sr,222,88.8,omega,front,0.02430174125470165 +karman_re200,sr,222,88.8,omega,upper,-0.0524644584998368 +karman_re200,sr,222,88.8,omega,lower,0.01615971511037552 +karman_re200,sr,223,89.2,omega,front,0.017790399962674175 +karman_re200,sr,223,89.2,omega,upper,-0.038433832275579734 +karman_re200,sr,223,89.2,omega,lower,0.030190341334632588 +karman_re200,sr,224,89.6,omega,front,0.007871902322797119 +karman_re200,sr,224,89.6,omega,upper,-0.031310380467489525 +karman_re200,sr,224,89.6,omega,lower,0.0373137931427228 +karman_re200,sr,225,90.0,omega,front,-0.0016302962932821308 +karman_re200,sr,225,90.0,omega,upper,-0.03317663125873773 +karman_re200,sr,225,90.0,omega,lower,0.0354475423514746 +karman_re200,sr,226,90.4,omega,front,-0.009303072143858568 +karman_re200,sr,226,90.4,omega,upper,-0.03010063808714125 +karman_re200,sr,226,90.4,omega,lower,0.03852353552307107 +karman_re200,sr,227,90.8,omega,front,-0.01689677038504973 +karman_re200,sr,227,90.8,omega,upper,-0.019689266901568716 +karman_re200,sr,227,90.8,omega,lower,0.0489349067086436 +karman_re200,sr,228,91.2,omega,front,-0.02351654222054443 +karman_re200,sr,228,91.2,omega,upper,-0.009962251413044517 +karman_re200,sr,228,91.2,omega,lower,0.05866192219716781 +karman_re200,sr,229,91.6,omega,front,-0.02629296779307487 +karman_re200,sr,229,91.6,omega,upper,-0.008551303978691492 +karman_re200,sr,229,91.6,omega,lower,0.06007286963152083 +karman_re200,sr,230,92.0,omega,front,-0.0236917296490898 +karman_re200,sr,230,92.0,omega,upper,-0.01792564959679596 +karman_re200,sr,230,92.0,omega,lower,0.05069852401341637 +karman_re200,sr,231,92.4,omega,front,-0.01665872259844543 +karman_re200,sr,231,92.4,omega,upper,-0.031741592443048944 +karman_re200,sr,231,92.4,omega,lower,0.03688258116716338 +karman_re200,sr,232,92.8,omega,front,-0.006589613710921715 +karman_re200,sr,232,92.8,omega,upper,-0.03718412536287152 +karman_re200,sr,232,92.8,omega,lower,0.0314400482473408 +karman_re200,sr,233,93.2,omega,front,0.002603415232997466 +karman_re200,sr,233,93.2,omega,upper,-0.03523222410832788 +karman_re200,sr,233,93.2,omega,lower,0.03339194950188445 +karman_re200,sr,234,93.6,omega,front,0.010174351080885553 +karman_re200,sr,234,93.6,omega,upper,-0.03951200380310722 +karman_re200,sr,234,93.6,omega,lower,0.029112169807105105 +karman_re200,sr,235,94.0,omega,front,0.017772929970807184 +karman_re200,sr,235,94.0,omega,upper,-0.05035764101574065 +karman_re200,sr,235,94.0,omega,lower,0.01826653259447167 +karman_re200,sr,236,94.4,omega,front,0.02408169670164051 +karman_re200,sr,236,94.4,omega,upper,-0.05940964565672606 +karman_re200,sr,236,94.4,omega,lower,0.009214527953486264 +karman_re200,sr,237,94.8,omega,front,0.026233638995625645 +karman_re200,sr,237,94.8,omega,upper,-0.05962129325272916 +karman_re200,sr,237,94.8,omega,lower,0.00900288035748316 +karman_re200,sr,238,95.2,omega,front,0.02308709352805197 +karman_re200,sr,238,95.2,omega,upper,-0.04926518730619152 +karman_re200,sr,238,95.2,omega,lower,0.019358986304020807 +karman_re200,sr,239,95.6,omega,front,0.015608331955974799 +karman_re200,sr,239,95.6,omega,upper,-0.0357045637744462 +karman_re200,sr,239,95.6,omega,lower,0.03291960983576612 +karman_re200,sr,240,96.0,omega,front,0.005421786912229688 +karman_re200,sr,240,96.0,omega,upper,-0.03146380468783393 +karman_re200,sr,240,96.0,omega,lower,0.0371603689223784 +karman_re200,sr,241,96.4,omega,front,-0.003553508766055922 +karman_re200,sr,241,96.4,omega,upper,-0.03324456335145774 +karman_re200,sr,241,96.4,omega,lower,0.03537961025875458 +karman_re200,sr,242,96.8,omega,front,-0.01109526211961929 +karman_re200,sr,242,96.8,omega,upper,-0.028020445355117888 +karman_re200,sr,242,96.8,omega,lower,0.04060372825509443 +karman_re200,sr,243,97.2,omega,front,-0.018679242797158914 +karman_re200,sr,243,97.2,omega,upper,-0.016944740322594756 +karman_re200,sr,243,97.2,omega,lower,0.051679433287617565 +karman_re200,sr,244,97.6,omega,front,-0.024658806274637124 +karman_re200,sr,244,97.6,omega,upper,-0.008616076970282105 +karman_re200,sr,244,97.6,omega,lower,0.06000809663993022 +karman_re200,sr,245,98.0,omega,front,-0.026196757852351104 +karman_re200,sr,245,98.0,omega,upper,-0.009706947323120604 +karman_re200,sr,245,98.0,omega,lower,0.058917226287091715 +karman_re200,sr,246,98.4,omega,front,-0.022488994390526415 +karman_re200,sr,246,98.4,omega,upper,-0.021217580652098035 +karman_re200,sr,246,98.4,omega,lower,0.04740659295811429 +karman_re200,sr,247,98.8,omega,front,-0.014472159999333172 +karman_re200,sr,247,98.8,omega,upper,-0.034332439028671405 +karman_re200,sr,247,98.8,omega,lower,0.03429173458154092 +karman_re200,sr,248,99.2,omega,front,-0.0042026604660979575 +karman_re200,sr,248,99.2,omega,upper,-0.03694171954030583 +karman_re200,sr,248,99.2,omega,lower,0.03168245406990649 +karman_re200,sr,249,99.6,omega,front,0.004480324424057739 +karman_re200,sr,249,99.6,omega,upper,-0.035358901779929446 +karman_re200,sr,249,99.6,omega,lower,0.03326527183028288 +karman_re200,sr,250,100.0,omega,front,0.011964272892530776 +karman_re200,sr,250,100.0,omega,upper,-0.041745304084132843 +karman_re200,sr,250,100.0,omega,lower,0.026878869526079475 +karman_re200,sr,251,100.4,omega,front,0.019502422313799832 +karman_re200,sr,251,100.4,omega,upper,-0.05304785541462287 +karman_re200,sr,251,100.4,omega,lower,0.015576318195589457 +karman_re200,sr,252,100.8,omega,front,0.025097629986273906 +karman_re200,sr,252,100.8,omega,upper,-0.06046659411449744 +karman_re200,sr,252,100.8,omega,lower,0.008157579495714882 +karman_re200,sr,253,101.2,omega,front,0.025968699134215133 +karman_re200,sr,253,101.2,omega,upper,-0.058042193335706024 +karman_re200,sr,253,101.2,omega,lower,0.010581980274506297 +karman_re200,sr,254,101.6,omega,front,0.021726888139732458 +karman_re200,sr,254,101.6,omega,upper,-0.04583557729506568 +karman_re200,sr,254,101.6,omega,lower,0.02278859631514665 +karman_re200,sr,255,102.0,omega,front,0.013298393172527375 +karman_re200,sr,255,102.0,omega,upper,-0.03352810295441585 +karman_re200,sr,255,102.0,omega,lower,0.03509607065579647 +karman_re200,sr,256,102.4,omega,front,0.003068325218452081 +karman_re200,sr,256,102.4,omega,upper,-0.03204131577853985 +karman_re200,sr,256,102.4,omega,lower,0.03658285783167247 +karman_re200,sr,257,102.8,omega,front,-0.005389052266884996 +karman_re200,sr,257,102.8,omega,upper,-0.0329595530537088 +karman_re200,sr,257,102.8,omega,lower,0.035664620556503525 +karman_re200,sr,258,103.2,omega,front,-0.012903284400383928 +karman_re200,sr,258,103.2,omega,upper,-0.025668673453135265 +karman_re200,sr,258,103.2,omega,lower,0.04295550015707706 +karman_re200,sr,259,103.6,omega,front,-0.020385646352770893 +karman_re200,sr,259,103.6,omega,upper,-0.014389549712129237 +karman_re200,sr,259,103.6,omega,lower,0.05423462389808309 +karman_re200,sr,260,104.0,omega,front,-0.025563488740093853 +karman_re200,sr,260,104.0,omega,upper,-0.007795837295834853 +karman_re200,sr,260,104.0,omega,lower,0.06082833631437747 +karman_re200,sr,261,104.4,omega,front,-0.025823103288711704 +karman_re200,sr,261,104.4,omega,upper,-0.011460446369529009 +karman_re200,sr,261,104.4,omega,lower,0.05716372724068331 +karman_re200,sr,262,104.8,omega,front,-0.02107871090444377 +karman_re200,sr,262,104.8,omega,upper,-0.02452210852799996 +karman_re200,sr,262,104.8,omega,lower,0.044102065082212365 +karman_re200,sr,263,105.2,omega,front,-0.012197855612593527 +karman_re200,sr,263,105.2,omega,upper,-0.03607901241192913 +karman_re200,sr,263,105.2,omega,lower,0.03254516119828319 +karman_re200,sr,264,105.6,omega,front,-0.001995816146372031 +karman_re200,sr,264,105.6,omega,upper,-0.036344285559296585 +karman_re200,sr,264,105.6,omega,lower,0.03227988805091574 +karman_re200,sr,265,106.0,omega,front,0.006237785870162977 +karman_re200,sr,265,106.0,omega,upper,-0.03599408663882048 +karman_re200,sr,265,106.0,omega,lower,0.032630086971391845 +karman_re200,sr,266,106.4,omega,front,0.013745316074868449 +karman_re200,sr,266,106.4,omega,upper,-0.04417321108456331 +karman_re200,sr,266,106.4,omega,lower,0.024450962525649014 +karman_re200,sr,267,106.8,omega,front,0.021113886651150313 +karman_re200,sr,267,106.8,omega,upper,-0.05536491222072468 +karman_re200,sr,267,106.8,omega,lower,0.013259261389487645 +karman_re200,sr,268,107.2,omega,front,0.02584473576243889 +karman_re200,sr,268,107.2,omega,upper,-0.06088475557686108 +karman_re200,sr,268,107.2,omega,lower,0.0077394180333512485 +karman_re200,sr,269,107.6,omega,front,0.025441634359126775 +karman_re200,sr,269,107.6,omega,upper,-0.055865705111424906 +karman_re200,sr,269,107.6,omega,lower,0.012758468498787416 +karman_re200,sr,270,108.0,omega,front,0.02017324966638088 +karman_re200,sr,270,108.0,omega,upper,-0.04246830129721271 +karman_re200,sr,270,108.0,omega,lower,0.026155872312999612 +karman_re200,sr,271,108.4,omega,front,0.010960028744956931 +karman_re200,sr,271,108.4,omega,upper,-0.032144943430334576 +karman_re200,sr,271,108.4,omega,lower,0.036479230179877746 +karman_re200,sr,272,108.8,omega,front,0.0009443975651310882 +karman_re200,sr,272,108.8,omega,upper,-0.032738507322153006 +karman_re200,sr,272,108.8,omega,lower,0.035885666288059316 +karman_re200,sr,273,109.2,omega,front,-0.007086155839025652 +karman_re200,sr,273,109.2,omega,upper,-0.03212989240683323 +karman_re200,sr,273,109.2,omega,lower,0.036494281203379095 +karman_re200,sr,274,109.6,omega,front,-0.014634200201173243 +karman_re200,sr,274,109.6,omega,upper,-0.023162426834529074 +karman_re200,sr,274,109.6,omega,lower,0.04546174677568325 +karman_re200,sr,275,110.0,omega,front,-0.021860512021408877 +karman_re200,sr,275,110.0,omega,upper,-0.012234149058808784 +karman_re200,sr,275,110.0,omega,lower,0.05639002455140354 +karman_re200,sr,276,110.4,omega,front,-0.026094141019548125 +karman_re200,sr,276,110.4,omega,upper,-0.00769187165828074 +karman_re200,sr,276,110.4,omega,lower,0.060932301951931576 +karman_re200,sr,277,110.8,omega,front,-0.02508474249843668 +karman_re200,sr,277,110.8,omega,upper,-0.013852089933910655 +karman_re200,sr,277,110.8,omega,lower,0.054772083676301674 +karman_re200,sr,278,111.2,omega,front,-0.01936778389654469 +karman_re200,sr,278,111.2,omega,upper,-0.02763787287974267 +karman_re200,sr,278,111.2,omega,lower,0.04098630073046965 +karman_re200,sr,279,111.6,omega,front,-0.009846296450524818 +karman_re200,sr,279,111.6,omega,upper,-0.03696346024590964 +karman_re200,sr,279,111.6,omega,lower,0.031660713364302685 +karman_re200,sr,280,112.0,omega,front,3.0149641781832836e-05 +karman_re200,sr,280,112.0,omega,upper,-0.03574347172069347 +karman_re200,sr,280,112.0,omega,lower,0.03288070188951885 +karman_re200,sr,281,112.4,omega,front,0.007924117161248485 +karman_re200,sr,281,112.4,omega,upper,-0.037157260062375394 +karman_re200,sr,281,112.4,omega,lower,0.031466913547836935 +karman_re200,sr,282,112.8,omega,front,0.015485315188073319 +karman_re200,sr,282,112.8,omega,upper,-0.046740961976627665 +karman_re200,sr,282,112.8,omega,lower,0.021883211633584657 +karman_re200,sr,283,113.2,omega,front,0.022518657457256834 +karman_re200,sr,283,113.2,omega,upper,-0.057308129372693806 +karman_re200,sr,283,113.2,omega,lower,0.011316044237518516 +karman_re200,sr,284,113.6,omega,front,0.026231867443345946 +karman_re200,sr,284,113.6,omega,upper,-0.060691327240238964 +karman_re200,sr,284,113.6,omega,lower,0.007932846369973353 +karman_re200,sr,285,114.0,omega,front,0.024610779891932756 +karman_re200,sr,285,114.0,omega,upper,-0.05324644945251343 +karman_re200,sr,285,114.0,omega,lower,0.015377724157698888 +karman_re200,sr,286,114.4,omega,front,0.018368270104356287 +karman_re200,sr,286,114.4,omega,upper,-0.03928998978802454 +karman_re200,sr,286,114.4,omega,lower,0.029334183822187786 +karman_re200,sr,287,114.8,omega,front,0.008590166428652098 +karman_re200,sr,287,114.8,omega,upper,-0.03145345806071323 +karman_re200,sr,287,114.8,omega,lower,0.03717071554949909 +karman_re200,sr,288,115.2,omega,front,-0.0010277311457191393 +karman_re200,sr,288,115.2,omega,upper,-0.033212131943140356 +karman_re200,sr,288,115.2,omega,lower,0.035412041667071965 +karman_re200,sr,289,115.6,omega,front,-0.008751968203531215 +karman_re200,sr,289,115.6,omega,upper,-0.030688279615878535 +karman_re200,sr,289,115.6,omega,lower,0.03793589399433379 +karman_re200,sr,290,116.0,omega,front,-0.016338341586643598 +karman_re200,sr,290,116.0,omega,upper,-0.020516156674200658 +karman_re200,sr,290,116.0,omega,lower,0.04810801693601167 +karman_re200,sr,291,116.4,omega,front,-0.02313156570624531 +karman_re200,sr,291,116.4,omega,upper,-0.010445263512375918 +karman_re200,sr,291,116.4,omega,lower,0.0581789100978364 +karman_re200,sr,292,116.8,omega,front,-0.026268729050705625 +karman_re200,sr,292,116.8,omega,upper,-0.008236223605565737 +karman_re200,sr,292,116.8,omega,lower,0.060387950004646584 +karman_re200,sr,293,117.2,omega,front,-0.02405087435596215 +karman_re200,sr,293,117.2,omega,upper,-0.016766222943303443 +karman_re200,sr,293,117.2,omega,lower,0.05185795066690888 +karman_re200,sr,294,117.6,omega,front,-0.017357149758748434 +karman_re200,sr,294,117.6,omega,upper,-0.030622615986138184 +karman_re200,sr,294,117.6,omega,lower,0.03800155762407414 +karman_re200,sr,295,118.0,omega,front,-0.0074104060719656865 +karman_re200,sr,295,118.0,omega,upper,-0.03723049335515931 +karman_re200,sr,295,118.0,omega,lower,0.031393680255053014 +karman_re200,sr,296,118.4,omega,front,0.001984631724112965 +karman_re200,sr,296,118.4,omega,upper,-0.03537907739832311 +karman_re200,sr,296,118.4,omega,lower,0.03324509621188921 +karman_re200,sr,297,118.8,omega,front,0.009633039295884667 +karman_re200,sr,297,118.8,omega,upper,-0.03889689408035706 +karman_re200,sr,297,118.8,omega,lower,0.029727279529855266 +karman_re200,sr,298,119.2,omega,front,0.01723559019249657 +karman_re200,sr,298,119.2,omega,upper,-0.04943223600653931 +karman_re200,sr,298,119.2,omega,lower,0.019191937603673017 +karman_re200,sr,299,119.6,omega,front,0.023753785482654798 +karman_re200,sr,299,119.6,omega,upper,-0.05895023166221671 +karman_re200,sr,299,119.6,omega,lower,0.009673941947995611 +karman_re200,sr,300,120.0,omega,front,0.026309499617030333 +karman_re200,sr,300,120.0,omega,upper,-0.05997492227192553 +karman_re200,sr,300,120.0,omega,lower,0.008649251338286793 +karman_re200,sr,301,120.4,omega,front,0.023527906795018406 +karman_re200,sr,301,120.4,omega,upper,-0.050216445181069214 +karman_re200,sr,301,120.4,omega,lower,0.01840772842914311 +karman_re200,sr,302,120.8,omega,front,0.016320677123624096 +karman_re200,sr,302,120.8,omega,upper,-0.03637841603116116 +karman_re200,sr,302,120.8,omega,lower,0.03224575757905116 +karman_re200,sr,303,121.2,omega,front,0.006179479822256679 +karman_re200,sr,303,121.2,omega,upper,-0.03133403033589636 +karman_re200,sr,303,121.2,omega,lower,0.03729014327431597 +karman_re200,sr,304,121.6,omega,front,-0.0029479911978593744 +karman_re200,sr,304,121.6,omega,upper,-0.03335921360189194 +karman_re200,sr,304,121.6,omega,lower,0.03526496000832039 +karman_re200,sr,305,122.0,omega,front,-0.010493226495248673 +karman_re200,sr,305,122.0,omega,upper,-0.028735559278728805 +karman_re200,sr,305,122.0,omega,lower,0.03988861433148352 +karman_re200,sr,306,122.4,omega,front,-0.018081095707842335 +karman_re200,sr,306,122.4,omega,upper,-0.017785639757199125 +karman_re200,sr,306,122.4,omega,lower,0.0508385338530132 +karman_re200,sr,307,122.8,omega,front,-0.024273344026454792 +karman_re200,sr,307,122.8,omega,upper,-0.009008962578693746 +karman_re200,sr,307,122.8,omega,lower,0.05961521103151858 +karman_re200,sr,308,123.2,omega,front,-0.02620564846960641 +karman_re200,sr,308,123.2,omega,upper,-0.00929658389255688 +karman_re200,sr,308,123.2,omega,lower,0.05932758971765544 +karman_re200,sr,309,123.6,omega,front,-0.022846450572757235 +karman_re200,sr,309,123.6,omega,upper,-0.020061275038275532 +karman_re200,sr,309,123.6,omega,lower,0.04856289857193679 +karman_re200,sr,310,124.0,omega,front,-0.015167420565435977 +karman_re200,sr,310,124.0,omega,upper,-0.03340094114105084 +karman_re200,sr,310,124.0,omega,lower,0.03522323246916149 +karman_re200,sr,311,124.4,omega,front,-0.004967200603285209 +karman_re200,sr,311,124.4,omega,upper,-0.03702204139928662 +karman_re200,sr,311,124.4,omega,lower,0.031602132210925706 +karman_re200,sr,312,124.8,omega,front,0.003892791219486585 +karman_re200,sr,312,124.8,omega,upper,-0.03531452516319697 +karman_re200,sr,312,124.8,omega,lower,0.03330964844701536 +karman_re200,sr,313,125.2,omega,front,0.011411110355174645 +karman_re200,sr,313,125.2,omega,upper,-0.04101829671569162 +karman_re200,sr,313,125.2,omega,lower,0.027605876894520712 +karman_re200,sr,314,125.6,omega,front,0.018989378109610794 +karman_re200,sr,314,125.6,omega,upper,-0.05217229873755596 +karman_re200,sr,314,125.6,omega,lower,0.016451874872656362 +karman_re200,sr,315,126.0,omega,front,0.024834866603378455 +karman_re200,sr,315,126.0,omega,upper,-0.06022741285877131 +karman_re200,sr,315,126.0,omega,lower,0.008396760751441015 +karman_re200,sr,316,126.4,omega,front,0.02614087270389469 +karman_re200,sr,316,126.4,omega,upper,-0.0586719810796555 +karman_re200,sr,316,126.4,omega,lower,0.009952192530556818 +karman_re200,sr,317,126.8,omega,front,0.022253370833357492 +karman_re200,sr,317,126.8,omega,upper,-0.046941850359290285 +karman_re200,sr,317,126.8,omega,lower,0.021682323250922036 +karman_re200,sr,318,127.2,omega,front,0.014094769191976067 +karman_re200,sr,318,127.2,omega,upper,-0.03399144793645103 +karman_re200,sr,318,127.2,omega,lower,0.03463272567376129 +karman_re200,sr,319,127.6,omega,front,0.003813552105805132 +karman_re200,sr,319,127.6,omega,upper,-0.0317354447561282 +karman_re200,sr,319,127.6,omega,lower,0.03688872885408412 +karman_re200,sr,320,128.0,omega,front,-0.00480730080511741 +karman_re200,sr,320,128.0,omega,upper,-0.03314272306579599 +karman_re200,sr,320,128.0,omega,lower,0.03548145054441633 +karman_re200,sr,321,128.4,omega,front,-0.012295691252232612 +karman_re200,sr,321,128.4,omega,upper,-0.026465719996688373 +karman_re200,sr,321,128.4,omega,lower,0.04215845361352395 +karman_re200,sr,322,128.8,omega,front,-0.019819249565088702 +karman_re200,sr,322,128.8,omega,upper,-0.015172324730869312 +karman_re200,sr,322,128.8,omega,lower,0.05345184887934301 +karman_re200,sr,323,129.2,omega,front,-0.025277980224320113 +karman_re200,sr,323,129.2,omega,upper,-0.008013151481912005 +karman_re200,sr,323,129.2,omega,lower,0.06061102212830032 +karman_re200,sr,324,129.6,omega,front,-0.02593343325590138 +karman_re200,sr,324,129.6,omega,upper,-0.010945290606513215 +karman_re200,sr,324,129.6,omega,lower,0.05767888300369911 +karman_re200,sr,325,130.0,omega,front,-0.021496095281511685 +karman_re200,sr,325,130.0,omega,upper,-0.023473210830118836 +karman_re200,sr,325,130.0,omega,lower,0.045150962780093486 +karman_re200,sr,326,130.4,omega,front,-0.012888991436671668 +karman_re200,sr,326,130.4,omega,upper,-0.03550775862514698 +karman_re200,sr,326,130.4,omega,lower,0.03311641498506534 +karman_re200,sr,327,130.8,omega,front,-0.002668487866915453 +karman_re200,sr,327,130.8,omega,upper,-0.03645156711119279 +karman_re200,sr,327,130.8,omega,lower,0.03217260649901953 +karman_re200,sr,328,131.2,omega,front,0.00569076959802185 +karman_re200,sr,328,131.2,omega,upper,-0.03571074191053446 +karman_re200,sr,328,131.2,omega,lower,0.032913431699677864 +karman_re200,sr,329,131.6,omega,front,0.013189390093555214 +karman_re200,sr,329,131.6,omega,upper,-0.04339426657109629 +karman_re200,sr,329,131.6,omega,lower,0.02522990703911604 +karman_re200,sr,330,132.0,omega,front,0.02063895524086837 +karman_re200,sr,330,132.0,omega,upper,-0.054663086313816146 +karman_re200,sr,330,132.0,omega,lower,0.01396108729639618 +karman_re200,sr,331,132.4,omega,front,0.025660262558360285 +karman_re200,sr,331,132.4,omega,upper,-0.060879710149804284 +karman_re200,sr,331,132.4,omega,lower,0.0077444634604080425 +karman_re200,sr,332,132.8,omega,front,0.02567551833187668 +karman_re200,sr,332,132.8,omega,upper,-0.05673647670181725 +karman_re200,sr,332,132.8,omega,lower,0.01188769690839507 +karman_re200,sr,333,133.2,omega,front,0.02075146879054215 +karman_re200,sr,333,133.2,omega,upper,-0.0436200684626175 +karman_re200,sr,333,133.2,omega,lower,0.025004105147594824 +karman_re200,sr,334,133.6,omega,front,0.011766394720870085 +karman_re200,sr,334,133.6,omega,upper,-0.032424128802338414 +karman_re200,sr,334,133.6,omega,lower,0.03620004480787391 +karman_re200,sr,335,134.0,omega,front,0.0016237679122323614 +karman_re200,sr,335,134.0,omega,upper,-0.03242147667984809 +karman_re200,sr,335,134.0,omega,lower,0.036202696930364237 +karman_re200,sr,336,134.4,omega,front,-0.006551259826065278 +karman_re200,sr,336,134.4,omega,upper,-0.032434944346638794 +karman_re200,sr,336,134.4,omega,lower,0.03618922926357353 +karman_re200,sr,337,134.8,omega,front,-0.014076898713854367 +karman_re200,sr,337,134.8,omega,upper,-0.02400403877965323 +karman_re200,sr,337,134.8,omega,lower,0.04462013483055909 +karman_re200,sr,338,135.2,omega,front,-0.021404901630927273 +karman_re200,sr,338,135.2,omega,upper,-0.012894646310652829 +karman_re200,sr,338,135.2,omega,lower,0.05572952729955949 +karman_re200,sr,339,135.6,omega,front,-0.025964894070797336 +karman_re200,sr,339,135.6,omega,upper,-0.007687451961616327 +karman_re200,sr,339,135.6,omega,lower,0.060936721648595996 +karman_re200,sr,340,136.0,omega,front,-0.0253532876241357 +karman_re200,sr,340,136.0,omega,upper,-0.013140581191733199 +karman_re200,sr,340,136.0,omega,lower,0.05548359241847912 +karman_re200,sr,341,136.4,omega,front,-0.019912042940701626 +karman_re200,sr,341,136.4,omega,upper,-0.026763208363283875 +karman_re200,sr,341,136.4,omega,lower,0.04186096524692845 +karman_re200,sr,342,136.8,omega,front,-0.010566254852996169 +karman_re200,sr,342,136.8,omega,upper,-0.03674409226348378 +karman_re200,sr,342,136.8,omega,lower,0.03188008134672854 +karman_re200,sr,343,137.2,omega,front,-0.0005862730686877383 +karman_re200,sr,343,137.2,omega,upper,-0.035832441143247754 +karman_re200,sr,343,137.2,omega,lower,0.03279173246696457 +karman_re200,sr,344,137.6,omega,front,0.007378655770331293 +karman_re200,sr,344,137.6,omega,upper,-0.03670751063363446 +karman_re200,sr,344,137.6,omega,lower,0.03191666297657786 +karman_re200,sr,345,138.0,omega,front,0.014923980422331189 +karman_re200,sr,345,138.0,omega,upper,-0.04591370681398558 +karman_re200,sr,345,138.0,omega,lower,0.022710466796226746 +karman_re200,sr,346,138.4,omega,front,0.022082297934881288 +karman_re200,sr,346,138.4,omega,upper,-0.05674572868136587 +karman_re200,sr,346,138.4,omega,lower,0.011878444928846453 +karman_re200,sr,347,138.8,omega,front,0.02612702529224075 +karman_re200,sr,347,138.8,omega,upper,-0.06083438960887892 +karman_re200,sr,347,138.8,omega,lower,0.007789784001333402 +karman_re200,sr,348,139.2,omega,front,0.024887800940694295 +karman_re200,sr,348,139.2,omega,upper,-0.054199948386120037 +karman_re200,sr,348,139.2,omega,lower,0.014424225224092282 +karman_re200,sr,349,139.6,omega,front,0.018979447648887048 +karman_re200,sr,349,139.6,omega,upper,-0.04040314740902369 +karman_re200,sr,349,139.6,omega,lower,0.028221026201188635 +karman_re200,sr,350,140.0,omega,front,0.009380270531433364 +karman_re200,sr,350,140.0,omega,upper,-0.031640510341658254 +karman_re200,sr,350,140.0,omega,lower,0.036983663268554075 +karman_re200,sr,351,140.4,omega,front,-0.00039656189456084193 +karman_re200,sr,351,140.4,omega,upper,-0.033027430337927294 +karman_re200,sr,351,140.4,omega,lower,0.035596743272285035 +karman_re200,sr,352,140.8,omega,front,-0.008225545893643032 +karman_re200,sr,352,140.8,omega,upper,-0.03116742467093587 +karman_re200,sr,352,140.8,omega,lower,0.03745674893927645 +karman_re200,sr,353,141.2,omega,front,-0.0158102267561313 +karman_re200,sr,353,141.2,omega,upper,-0.021402273122560846 +karman_re200,sr,353,141.2,omega,lower,0.04722190048765148 +karman_re200,sr,354,141.6,omega,front,-0.02276420614717272 +karman_re200,sr,354,141.6,omega,upper,-0.01098764539852287 +karman_re200,sr,354,141.6,omega,lower,0.05763652821168945 +karman_re200,sr,355,142.0,omega,front,-0.026274432649849737 +karman_re200,sr,355,142.0,omega,upper,-0.007991372714848809 +karman_re200,sr,355,142.0,omega,lower,0.06063280089536351 +karman_re200,sr,356,142.4,omega,front,-0.02444593895029812 +karman_re200,sr,356,142.4,omega,upper,-0.015816986893148567 +karman_re200,sr,356,142.4,omega,lower,0.05280718671706376 +karman_re200,sr,357,142.8,omega,front,-0.01804784957672666 +karman_re200,sr,357,142.8,omega,upper,-0.029839098007710813 +karman_re200,sr,357,142.8,omega,lower,0.03878507560250151 +karman_re200,sr,358,143.2,omega,front,-0.00818641479017366 +karman_re200,sr,358,143.2,omega,upper,-0.037293912881254 +karman_re200,sr,358,143.2,omega,lower,0.03133026072895832 +karman_re200,sr,359,143.6,omega,front,0.001369020054155811 +karman_re200,sr,359,143.6,omega,upper,-0.03540881405531566 +karman_re200,sr,359,143.6,omega,lower,0.03321535955489666 +karman_re200,sr,360,144.0,omega,front,0.009057365168632479 +karman_re200,sr,360,144.0,omega,upper,-0.03825012331322757 +karman_re200,sr,360,144.0,omega,lower,0.03037405029698475 +karman_re200,sr,361,144.4,omega,front,0.016645575371740128 +karman_re200,sr,361,144.4,omega,upper,-0.04858159892816449 +karman_re200,sr,361,144.4,omega,lower,0.02004257468204783 +karman_re200,sr,362,144.8,omega,front,0.02334610113131485 +karman_re200,sr,362,144.8,omega,upper,-0.058468521264796465 +karman_re200,sr,362,144.8,omega,lower,0.010155652345415858 +karman_re200,sr,363,145.2,omega,front,0.026276215746079128 +karman_re200,sr,363,145.2,omega,upper,-0.06020274903308632 +karman_re200,sr,363,145.2,omega,lower,0.008421424577126007 +karman_re200,sr,364,145.6,omega,front,0.023843602295239373 +karman_re200,sr,364,145.6,omega,upper,-0.051216844967395064 +karman_re200,sr,364,145.6,omega,lower,0.01740732864281726 +karman_re200,sr,365,146.0,omega,front,0.01696511767119701 +karman_re200,sr,365,146.0,omega,upper,-0.037374158617316 +karman_re200,sr,365,146.0,omega,lower,0.03125001499289633 +karman_re200,sr,366,146.4,omega,front,0.0069451811253836504 +karman_re200,sr,366,146.4,omega,upper,-0.03141331692318172 +karman_re200,sr,366,146.4,omega,lower,0.0372108566870306 +karman_re200,sr,367,146.8,omega,front,-0.002332296972011993 +karman_re200,sr,367,146.8,omega,upper,-0.03334391898505049 +karman_re200,sr,367,146.8,omega,lower,0.03528025462516183 +karman_re200,sr,368,147.2,omega,front,-0.009938214261953389 +karman_re200,sr,368,147.2,omega,upper,-0.02939801745696064 +karman_re200,sr,368,147.2,omega,lower,0.03922615615325168 +karman_re200,sr,369,147.6,omega,front,-0.017543785233404014 +karman_re200,sr,369,147.6,omega,upper,-0.018666677284418252 +karman_re200,sr,369,147.6,omega,lower,0.049957496325794076 +karman_re200,sr,370,148.0,omega,front,-0.02394882584068248 +karman_re200,sr,370,148.0,omega,upper,-0.009398853511480555 +karman_re200,sr,370,148.0,omega,lower,0.059225320098731764 +karman_re200,sr,371,148.4,omega,front,-0.02628074186235463 +karman_re200,sr,371,148.4,omega,upper,-0.008834819222315585 +karman_re200,sr,371,148.4,omega,lower,0.05978935438789674 +karman_re200,sr,372,148.8,omega,front,-0.023297594786702125 +karman_re200,sr,372,148.8,omega,upper,-0.01892084105301883 +karman_re200,sr,372,148.8,omega,lower,0.0497033325571935 +karman_re200,sr,373,149.2,omega,front,-0.015937378034014873 +karman_re200,sr,373,149.2,omega,upper,-0.03264819813622818 +karman_re200,sr,373,149.2,omega,lower,0.035975975473984144 +karman_re200,sr,374,149.6,omega,front,-0.005760471633265227 +karman_re200,sr,374,149.6,omega,upper,-0.037247776302639306 +karman_re200,sr,374,149.6,omega,lower,0.031376397307573016 +karman_re200,sr,375,150.0,omega,front,0.003284080417205929 +karman_re200,sr,375,150.0,omega,upper,-0.03530456828542043 +karman_re200,sr,375,150.0,omega,lower,0.03331960532479189 +karman_re200,sr,376,150.4,omega,front,0.010819695164520915 +karman_re200,sr,376,150.4,omega,upper,-0.04027020634366484 +karman_re200,sr,376,150.4,omega,lower,0.028353967266547486 +karman_re200,sr,377,150.8,omega,front,0.018408958975037016 +karman_re200,sr,377,150.8,omega,upper,-0.05130208893430422 +karman_re200,sr,377,150.8,omega,lower,0.017322084675908105 +karman_re200,sr,378,151.2,omega,front,0.0244892469655648 +karman_re200,sr,378,151.2,omega,upper,-0.059853783303894466 +karman_re200,sr,378,151.2,omega,lower,0.00877039030631786 +karman_re200,sr,379,151.6,omega,front,0.026201795454397582 +karman_re200,sr,379,151.6,omega,upper,-0.05908086468067813 +karman_re200,sr,379,151.6,omega,lower,0.009543308929534193 +karman_re200,sr,380,152.0,omega,front,0.02264329615009008 +karman_re200,sr,380,152.0,omega,upper,-0.04792881292799295 +karman_re200,sr,380,152.0,omega,lower,0.020695360682219378 +karman_re200,sr,381,152.4,omega,front,0.014780086421411239 +karman_re200,sr,381,152.4,omega,upper,-0.03470772806317767 +karman_re200,sr,381,152.4,omega,lower,0.03391644554703465 +karman_re200,sr,382,152.8,omega,front,0.004538502600521292 +karman_re200,sr,382,152.8,omega,upper,-0.03165393842453119 +karman_re200,sr,382,152.8,omega,lower,0.036970235185681134 +karman_re200,sr,383,153.2,omega,front,-0.004221880587338006 +karman_re200,sr,383,153.2,omega,upper,-0.03329143375500948 +karman_re200,sr,383,153.2,omega,lower,0.03533273985520285 +karman_re200,sr,384,153.6,omega,front,-0.011718494655615239 +karman_re200,sr,384,153.6,omega,upper,-0.02721521712025422 +karman_re200,sr,384,153.6,omega,lower,0.041408956489958106 +karman_re200,sr,385,154.0,omega,front,-0.01927713858357066 +karman_re200,sr,385,154.0,omega,upper,-0.015965205828306732 +karman_re200,sr,385,154.0,omega,lower,0.05265896778190559 +karman_re200,sr,386,154.4,omega,front,-0.02498410234501947 +karman_re200,sr,386,154.4,omega,upper,-0.008261746097774579 +karman_re200,sr,386,154.4,omega,lower,0.06036242751243775 +karman_re200,sr,387,154.8,omega,front,-0.026052494889039064 +karman_re200,sr,387,154.8,omega,upper,-0.010276031606717494 +karman_re200,sr,387,154.8,omega,lower,0.05834814200349483 +karman_re200,sr,388,155.2,omega,front,-0.021971770388552646 +karman_re200,sr,388,155.2,omega,upper,-0.022307741539333494 +karman_re200,sr,388,155.2,omega,lower,0.046316432070878835 +karman_re200,sr,389,155.6,omega,front,-0.013662229828952528 +karman_re200,sr,389,155.6,omega,upper,-0.03488454333400504 +karman_re200,sr,389,155.6,omega,lower,0.03373963027620728 +karman_re200,sr,390,156.0,omega,front,-0.0034067023598280313 +karman_re200,sr,390,156.0,omega,upper,-0.036718420570354134 +karman_re200,sr,390,156.0,omega,lower,0.031905753039858195 +karman_re200,sr,391,156.4,omega,front,0.0051260658859613555 +karman_re200,sr,391,156.4,omega,upper,-0.03558414645168518 +karman_re200,sr,391,156.4,omega,lower,0.03304002715852715 +karman_re200,sr,392,156.8,omega,front,0.012628757288753987 +karman_re200,sr,392,156.8,omega,upper,-0.042598870372422354 +karman_re200,sr,392,156.8,omega,lower,0.02602530323778997 +karman_re200,sr,393,157.2,omega,front,0.020130739959635227 +karman_re200,sr,393,157.2,omega,upper,-0.05388576778589428 +karman_re200,sr,393,157.2,omega,lower,0.014738405824318046 +karman_re200,sr,394,157.6,omega,front,0.025438755475672745 +karman_re200,sr,394,157.6,omega,upper,-0.060722347329642164 +karman_re200,sr,394,157.6,omega,lower,0.00790182628057016 +karman_re200,sr,395,158.0,omega,front,0.025871907556026103 +karman_re200,sr,395,158.0,omega,upper,-0.05738671258420964 +karman_re200,sr,395,158.0,omega,lower,0.011237461026002685 +karman_re200,sr,396,158.4,omega,front,0.021259803507254805 +karman_re200,sr,396,158.4,omega,upper,-0.04457987189635754 +karman_re200,sr,396,158.4,omega,lower,0.02404430171385479 +karman_re200,sr,397,158.8,omega,front,0.01250082701626522 +karman_re200,sr,397,158.8,omega,upper,-0.03278754570643162 +karman_re200,sr,397,158.8,omega,lower,0.0358366279037807 +karman_re200,sr,398,159.2,omega,front,0.0022988505977689657 +karman_re200,sr,398,159.2,omega,upper,-0.03223829144317714 +karman_re200,sr,398,159.2,omega,lower,0.036385882167035186 +karman_re200,sr,399,159.6,omega,front,-0.005997432623605711 +karman_re200,sr,399,159.6,omega,upper,-0.03276146599445731 +karman_re200,sr,399,159.6,omega,lower,0.03586270761575501 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_manifest.json new file mode 100644 index 0000000..455bf85 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re200", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_wide.csv new file mode 100644 index 0000000..79645d8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re200,sr,0,0.0,0.9913665652275085,0.3182585835456848,1.0089699029922485,0.46513405442237854,1.100783109664917,0.3578247129917145,0.0011263960041105747,-0.0004060621140524745,-0.006545570679008961,0.0039879074320197105,0.005249970592558384,-0.004876619670540094,2.9689984557112057,-4.779317406639251,2.0830999543819817,0.029689984557112057,-0.04779317406639251,0.02083099954381982 +karman_re200,sr,1,0.4,0.9487677216529846,0.28233566880226135,0.9937148094177246,0.4343280792236328,1.1662880182266235,0.3375072479248047,0.00048224491183646023,-0.003207546193152666,-0.003815351752564311,0.004020639695227146,0.0025657950900495052,-0.005089026875793934,2.2493591990490396,-4.0123295200251325,2.8500878409960992,0.022493591990490395,-0.040123295200251326,0.028500878409960993 +karman_re200,sr,2,0.8,0.9169065356254578,0.2065761536359787,0.9596056342124939,0.3333486318588257,1.2393661737442017,0.2792721688747406,-0.0013891905546188354,-0.004301857203245163,-0.0021930576767772436,0.003889292711392045,0.0008035313221625984,-0.005944945849478245,1.2168573718201985,-4.129817328379798,2.732600032641434,0.012168573718201986,-0.04129817328379798,0.027326000326414343 +karman_re200,sr,3,1.2,0.8910400867462158,0.07080867141485214,0.9384143352508545,0.10350053012371063,1.273138403892517,0.10913016647100449,-0.0020704951602965593,-0.004647049121558666,-0.0008870759047567844,0.004530957899987698,1.670119854679797e-05,-0.005294940434396267,0.5714366874186562,-4.775381547246607,2.087035813774626,0.005714366874186562,-0.047753815472466064,0.02087035813774626 +karman_re200,sr,4,1.6,0.8801422119140625,-0.11167014390230179,0.9532502889633179,-0.1501847207546234,1.2689154148101807,-0.06708255410194397,-0.0019277769606560469,-0.004892516881227493,0.0012178270844742656,0.005905617028474808,-0.0015681221848353744,-0.0038027989212423563,0.17234642263565078,-3.930769902384971,2.9316474586362613,0.0017234642263565078,-0.03930769902384971,0.029316474586362613 +karman_re200,sr,5,2.0,0.9104223847389221,-0.24893303215503693,0.9740337133407593,-0.36438170075416565,1.2124141454696655,-0.22402901947498322,-0.0005425169365480542,-0.004617916885763407,0.003833966562524438,0.006711957510560751,-0.0039521874859929085,-0.002377621829509735,-0.5312685931684175,-2.0561950699680835,4.806222291053149,-0.005312685931684174,-0.020561950699680837,0.048062222910531485 +karman_re200,sr,6,2.4,0.9738724231719971,-0.30011826753616333,0.9938533306121826,-0.4684333801269531,1.124509334564209,-0.32530099153518677,0.0015752740437164903,-0.003413861384615302,0.005120018031448126,0.006377035286277533,-0.006753191351890564,-0.0014016882050782442,-1.4847862282048752,-0.5970260502549625,6.265391310766271,-0.014847862282048752,-0.005970260502549625,0.0626539131076627 +karman_re200,sr,7,2.8,1.0391086339950562,-0.333448588848114,1.0096826553344727,-0.48284226655960083,1.0525723695755005,-0.3536377251148224,0.003755904734134674,-0.000616182223893702,0.004270640201866627,0.006023434456437826,-0.008887496776878834,-0.0013197144726291299,-2.264170175303835,-0.17787453320966629,6.6845428278115655,-0.02264170175303835,-0.0017787453320966629,0.06684542827811565 +karman_re200,sr,8,3.2,1.1015392541885376,-0.33966904878616333,1.0151978731155396,-0.47134003043174744,0.9984479546546936,-0.3454674780368805,0.0038516419008374214,0.0015172298299148679,0.003382619936019182,0.0051092542707920074,-0.009329188615083694,-0.0032577356323599815,-2.509200364279312,-0.3554890185613182,6.506928342459914,-0.02509200364279312,-0.003554890185613182,0.06506928342459914 +karman_re200,sr,9,3.6,1.1667157411575317,-0.315559983253479,1.0064953565597534,-0.43288612365722656,0.9578036665916443,-0.304428368806839,0.0013758675195276737,0.0033330621663480997,0.0023545098956674337,0.005057234782725573,-0.0056190150789916515,-0.00659299036487937,-2.424087444795496,-2.2205175041026575,4.641899856918575,-0.02424087444795496,-0.022205175041026575,0.04641899856918575 +karman_re200,sr,10,4.0,1.2356343269348145,-0.2526494264602661,0.9792754650115967,-0.31289488077163696,0.9258700609207153,-0.21543149650096893,-0.0006982985069043934,0.004437865223735571,0.0005921332049183547,0.005856738891452551,-0.0005149476346559823,-0.007076438050717115,-1.5205170612923895,-4.435425269984139,2.426992091037093,-0.015205170612923896,-0.0443542526998414,0.02426992091037093 +karman_re200,sr,11,4.4,1.2623109817504883,-0.08648306876420975,0.9683554172515869,-0.067433200776577,0.8974692821502686,-0.04925750195980072,-0.0019578735809773207,0.004889757838100195,-0.0011225069174543023,0.006475660018622875,0.0025524550583213568,-0.006672624498605728,-0.21111557437300865,-4.228758853294376,2.6336585077268566,-0.0021111557437300866,-0.04228758853294376,0.026336585077268566 +karman_re200,sr,12,4.8,1.2514129877090454,0.08558643609285355,0.9870423078536987,0.1884613186120987,0.8912653923034668,0.1579289585351944,-0.001312345382757485,0.004773437511175871,-0.0025666397996246815,0.005677192006260157,0.0045271627604961395,-0.0069804624654352665,0.7007995085644779,-3.560001960270936,3.3024154007502964,0.007007995085644779,-0.03560001960270936,0.033024154007502964 +karman_re200,sr,13,5.2,1.1905517578125,0.2296745926141739,1.0004289150238037,0.39505207538604736,0.9297588467597961,0.2837495505809784,0.0008750350680202246,0.004468885250389576,-0.005027694161981344,0.003597659058868885,0.006159372162073851,-0.007321823388338089,1.352757764775737,-4.283405365245411,2.579011995775821,0.01352757764775737,-0.04283405365245411,0.02579011995775821 +karman_re200,sr,14,5.6,1.1043553352355957,0.30974581837654114,1.0108163356781006,0.4628152549266815,0.9920749664306641,0.32253968715667725,0.0035278734285384417,0.0032101464457809925,-0.008420281112194061,0.0015553940320387483,0.006425525993108749,-0.006690561771392822,2.1333256327152523,-5.86640582062688,0.9960115403943526,0.021333256327152522,-0.0586640582062688,0.009960115403943526 +karman_re200,sr,15,6.0,1.0359492301940918,0.3291122019290924,1.0155818462371826,0.4725411534309387,1.053351640701294,0.3487556576728821,0.004877178464084864,0.0007379818707704544,-0.010873593389987946,0.0014370046555995941,0.004959537647664547,-0.005780999548733234,2.83103182896017,-6.789048100736916,0.07336926028431634,0.0283103182896017,-0.06789048100736916,0.0007336926028431634 +karman_re200,sr,16,6.4,0.9838852882385254,0.31612446904182434,1.0117802619934082,0.46028056740760803,1.1118358373641968,0.3445528447628021,0.004037993494421244,-0.001752943848259747,-0.009895979426801205,0.003579997457563877,0.0036981720477342606,-0.004993000533431768,3.0193102740558,-6.271707381583353,0.5907099794378792,0.030193102740558003,-0.06271707381583352,0.005907099794378792 +karman_re200,sr,17,6.8,0.9458386898040771,0.2702549993991852,0.9957370758056641,0.42160704731941223,1.1736027002334595,0.3084384500980377,0.0017230029916390777,-0.003585405880585313,-0.005393247120082378,0.005689187441021204,0.002525774762034416,-0.0050802212208509445,2.592346461134404,-4.355158523996551,2.5072588370246813,0.02592346461134404,-0.043551585239965517,0.025072588370246812 +karman_re200,sr,18,7.2,0.9150905609130859,0.17803670465946198,0.9607751369476318,0.3031085133552551,1.2343130111694336,0.2396233230829239,-0.0006764272111468017,-0.004729583393782377,-0.0008014484774321318,0.005817587953060865,0.0008897595689631999,-0.005998501554131508,1.510123554986567,-3.033011214826445,3.829406146194787,0.015101235549865671,-0.030330112148264452,0.03829406146194787 +karman_re200,sr,19,7.6,0.8871034979820251,0.019319236278533936,0.9351649284362793,0.06866128742694855,1.2708600759506226,0.15285411477088928,-0.002136233728379011,-0.0050793057307600975,0.002175958827137947,0.005896773189306259,-0.0006812441861256957,-0.006587696261703968,0.3225061308407101,-3.5495064367211095,3.3129109243001227,0.003225061308407101,-0.035495064367211095,0.03312910924300123 +karman_re200,sr,20,8.0,0.880852460861206,-0.17526215314865112,0.9337599277496338,-0.17358894646167755,1.2466871738433838,0.09092991054058075,-0.0015418115071952343,-0.004998510703444481,0.004529410973191261,0.006457610055804253,-0.0022619771771132946,-0.005741001572459936,-0.5448563769538006,-3.8829969855081696,2.9794203755130626,-0.005448563769538006,-0.0388299698550817,0.029794203755130626 +karman_re200,sr,21,8.4,0.919196605682373,-0.28636372089385986,0.9256327748298645,-0.3795475363731384,1.1143535375595093,-0.02489936538040638,0.0006581673515029252,-0.004792251158505678,0.006662536878138781,0.006773157510906458,-0.004893288481980562,-0.003708175616338849,-1.2950886320938066,-2.9626249192049343,3.899792441816298,-0.012950886320938066,-0.029626249192049342,0.03899792441816298 +karman_re200,sr,22,8.8,0.9821725487709045,-0.3315228223800659,0.9240099191665649,-0.4837685823440552,0.9775169491767883,-0.24240344762802124,0.003214136464521289,-0.0033258467447012663,0.007294446229934692,0.006303871050477028,-0.008185920305550098,-0.0015252097509801388,-2.2036464014622323,-1.4270449315863116,5.435372429434921,-0.022036464014622323,-0.014270449315863116,0.054353724294349204 +karman_re200,sr,23,9.2,1.049548625946045,-0.3641444742679596,0.9323201775550842,-0.5243586897850037,0.9182724952697754,-0.37266674637794495,0.004693513736128807,-0.00043679922237060964,0.005702223163098097,0.005775453522801399,-0.010804083198308945,-0.0008877252694219351,-2.9520395944167435,-0.30648557470242466,6.5559317863188085,-0.029520395944167437,-0.0030648557470242467,0.06555931786318808 +karman_re200,sr,24,9.6,1.116589069366455,-0.3590174913406372,0.938459575176239,-0.5452936291694641,0.8858456611633301,-0.38606226444244385,0.00404226453974843,0.0022622719407081604,0.003997542895376682,0.005213484633713961,-0.010751452296972275,-0.0026939178351312876,-3.147681925021072,-0.23516768680087408,6.627249674220359,-0.03147681925021072,-0.002351676868008741,0.06627249674220359 +karman_re200,sr,25,10.0,1.1834497451782227,-0.3190605342388153,0.9409742951393127,-0.5367419719696045,0.8506439924240112,-0.338134765625,0.0014645217452198267,0.004152118694037199,0.0028758663684129715,0.005288139451295137,-0.0068747675977647305,-0.005702715367078781,-2.812570211814614,-1.7836868959080252,5.078730465113207,-0.028125702118146138,-0.01783686895908025,0.05078730465113207 +karman_re200,sr,26,10.4,1.2445859909057617,-0.2530595064163208,0.9360712170600891,-0.4613456726074219,0.8132675886154175,-0.2458895444869995,-0.000927732908166945,0.00508354464545846,0.0013624316779896617,0.006167056038975716,-0.0018143152119591832,-0.0065381829626858234,-1.859404134446092,-3.7022960964145493,3.160121264606683,-0.01859404134446092,-0.03702296096414549,0.03160121264606683 +karman_re200,sr,27,10.8,1.3035088777542114,-0.18766511976718903,0.8574787974357605,-0.32882511615753174,0.7919321656227112,-0.11537827551364899,-0.0023164432495832443,0.005268513690680265,-0.00022999617794994265,0.006919266190379858,0.0015365451108664274,-0.0063645439222455025,-0.6057920256004815,-3.673885196175491,3.1885321648457414,-0.006057920256004815,-0.03673885196175491,0.031885321648457414 +karman_re200,sr,28,11.2,1.3378945589065552,-0.12621895968914032,0.7803657054901123,0.061472903937101364,0.8040531873703003,0.03497866541147232,-0.001849004183895886,0.004974258132278919,-0.0017572685610502958,0.006295220460742712,0.0038954804185777903,-0.006739871110767126,0.33687185751087234,-3.0684808410782125,3.7939365199430197,0.0033687185751087234,-0.030684808410782125,0.0379393651994302 +karman_re200,sr,29,11.6,1.241936206817627,0.04712047055363655,0.8136048913002014,0.42473161220550537,0.8378286957740784,0.188295379281044,0.00016273296205326915,0.004521767608821392,-0.004125246778130531,0.004533346276730299,0.00601448817178607,-0.007145014591515064,1.0779550191469918,-3.72196169125239,3.140455669768842,0.010779550191469919,-0.0372196169125239,0.03140455669768842 +karman_re200,sr,30,12.0,1.1150107383728027,0.2910621166229248,0.8738701343536377,0.5731725096702576,0.8984957933425903,0.2895427942276001,0.002579488093033433,0.002995473798364401,-0.007211661897599697,0.0025676393415778875,0.006864811293780804,-0.0066949110478162766,1.933604025488127,-5.13895480781499,1.7234625532062424,0.01933604025488127,-0.0513895480781499,0.017234625532062425 +karman_re200,sr,31,12.4,1.035710096359253,0.4229483902454376,0.9193344712257385,0.616694986820221,0.9731608629226685,0.3444715440273285,0.0037217119242995977,0.00023462495300918818,-0.009484765119850636,0.001875756774097681,0.005656423978507519,-0.006039667874574661,2.684323146706405,-6.129994063310038,0.7324232977111946,0.02684323146706405,-0.06129994063310038,0.007324232977111947 +karman_re200,sr,32,12.8,0.97025465965271,0.44391390681266785,0.9554252624511719,0.6137343049049377,1.042954444885254,0.35818183422088623,0.0031400478910654783,-0.0024475231766700745,-0.009340595453977585,0.002951273927465081,0.003888973966240883,-0.00551551952958107,2.8873599098863107,-6.153952229537929,0.7084651314833028,0.02887359909886311,-0.0615395222953793,0.0070846513148330285 +karman_re200,sr,33,13.2,0.9079272747039795,0.4025786519050598,0.9912945628166199,0.583889365196228,1.1047296524047852,0.3343213200569153,0.0007871203706599772,-0.004223888739943504,-0.006445425096899271,0.005197152029722929,0.0026367243845015764,-0.0055334907956421375,2.5228222249161907,-5.107945527866266,1.754471833154966,0.025228222249161908,-0.051079455278662665,0.01754471833154966 +karman_re200,sr,34,13.6,0.849760115146637,0.31284812092781067,1.0230443477630615,0.49553683400154114,1.158606767654419,0.2995275855064392,-0.0014275702415034175,-0.005191398318856955,-0.0021198622416704893,0.006541639566421509,0.0012188880937173963,-0.0062515614554286,1.731927006382551,-3.6511375366020515,3.211279824419181,0.01731927006382551,-0.03651137536602052,0.03211279824419181 +karman_re200,sr,35,14.0,0.807695209980011,0.17151974141597748,0.9894804954528809,0.4131644368171692,1.2118182182312012,0.29558441042900085,-0.0024530678056180477,-0.005361734423786402,0.0012333085760474205,0.006688334513455629,-0.00032341296900995076,-0.006822157651185989,0.6366853887693533,-3.2415292453926337,3.620888115628599,0.006366853887693534,-0.03241529245392634,0.03620888115628599 +karman_re200,sr,36,14.4,0.8023079037666321,-0.00029541150433942676,0.8897873163223267,0.18548645079135895,1.25359308719635,0.32471388578414917,-0.001749916817061603,-0.005146584939211607,0.003635088913142681,0.006858592852950096,-0.001981668407097459,-0.00619505112990737,-0.2968601310541937,-3.5187144115825864,3.3437029494386454,-0.0029686013105419367,-0.035187144115825866,0.033437029494386455 +karman_re200,sr,37,14.8,0.8316792845726013,-0.16686183214187622,0.8349457383155823,-0.2443043291568756,1.2017611265182495,-0.027384193614125252,0.00027117025456391275,-0.004491814412176609,0.005580618511885405,0.00695138331502676,-0.004222680814564228,-0.004520321264863014,-1.0710915638574525,-2.99732479050199,3.865092570519242,-0.010710915638574526,-0.0299732479050199,0.03865092570519242 +karman_re200,sr,38,15.2,0.890267550945282,-0.27837949991226196,0.867275059223175,-0.5257284641265869,1.167214035987854,-0.3747614324092865,0.0025168228894472122,-0.0027004063595086336,0.0062703764997422695,0.006509809289127588,-0.006951495539397001,-0.0027195748407393694,-1.869447193079141,-1.8415593449111547,5.020858016110077,-0.01869447193079141,-0.018415593449111547,0.050208580161100774 +karman_re200,sr,39,15.6,0.9681411981582642,-0.33085137605667114,0.9239128232002258,-0.619856595993042,1.1046202182769775,-0.5057491064071655,0.0034153847955167294,6.232992018340155e-05,0.005246317014098167,0.005989946890622377,-0.008905639871954918,-0.002172093605622649,-2.5213543673130117,-0.9528088913153154,5.909608469705917,-0.025213543673130116,-0.009528088913153154,0.059096084697059174 +karman_re200,sr,40,16.0,1.0431300401687622,-0.3409404754638672,0.9817146062850952,-0.6208807229995728,1.0332406759262085,-0.5051758289337158,0.0026122473645955324,0.002677992917597294,0.0036504354793578386,0.005606785882264376,-0.008594895713031292,-0.0033171691466122866,-2.6987175639765355,-0.9347491855720751,5.927668175449157,-0.026987175639765354,-0.00934749185572075,0.05927668175449157 +karman_re200,sr,41,16.4,1.1078248023986816,-0.31036561727523804,1.0377501249313354,-0.5776557326316833,0.9624063968658447,-0.4429610073566437,0.00032835788442753255,0.004353076219558716,0.002359425649046898,0.005687522701919079,-0.005861895624548197,-0.005370392929762602,-2.3351322104562207,-1.9340491479673816,4.928368213053851,-0.023351322104562207,-0.019340491479673816,0.04928368213053851 +karman_re200,sr,42,16.8,1.1618726253509521,-0.2656802237033844,1.0777082443237305,-0.4848533570766449,0.8951532244682312,-0.3275962173938751,-0.001743796281516552,0.005182939115911722,0.0009349227184429765,0.006310141645371914,-0.0019766702316701412,-0.00660953763872385,-1.5677707541640822,-3.2238404105096934,3.6385769505115393,-0.01567770754164082,-0.032238404105096936,0.03638576950511539 +karman_re200,sr,43,17.2,1.2165477275848389,-0.25174933671951294,1.0568400621414185,-0.4155235290527344,0.8495379686355591,-0.15259762108325958,-0.002501515205949545,0.005278934724628925,-0.000579102139454335,0.006656305398792028,0.0011861474486067891,-0.006751664914190769,-0.5552283049536597,-3.6269809940478166,3.235436366973415,-0.005552283049536597,-0.03626980994047817,0.032354363669734154 +karman_re200,sr,44,17.6,1.2756285667419434,-0.2821665108203888,0.9828232526779175,-0.10168682038784027,0.8429663777351379,0.049703869968652725,-0.001613040454685688,0.0050729005597531796,-0.002216136083006859,0.005901953671127558,0.00355531251989305,-0.006854312028735876,0.33662553570932563,-3.4935633992173987,3.368853961803834,0.0033662553570932563,-0.03493563399217399,0.03368853961803834 +karman_re200,sr,45,18.0,1.2199034690856934,0.06869542598724365,0.9399729371070862,0.3273795247077942,0.8712430000305176,0.22632953524589539,0.0004387281369417906,0.0043107448145747185,-0.004358278121799231,0.004277142696082592,0.005387631244957447,-0.006874006241559982,1.1005905289030142,-4.053947137689316,2.8084702233319163,0.011005905289030142,-0.04053947137689316,0.028084702233319162 +karman_re200,sr,46,18.4,1.1612598896026611,0.36284005641937256,0.9556302428245544,0.5314174294471741,0.9385874271392822,0.30924227833747864,0.002539843088015914,0.0023715184070169926,-0.00688712066039443,0.0026897648349404335,0.0058567700907588005,-0.0064470283687114716,1.8585031735724171,-5.129274103987793,1.733143257033439,0.01858503173572417,-0.05129274103987793,0.01733143257033439 +karman_re200,sr,47,18.8,1.1002357006072998,0.4309269189834595,0.9881526231765747,0.5726947784423828,1.0145491361618042,0.34402933716773987,0.003214263590052724,-0.0003799202386289835,-0.008559444919228554,0.0023551443591713905,0.004757848102599382,-0.005915566813200712,2.4302053829339467,-5.888049088894647,0.9743682721265857,0.02430205382933947,-0.05888049088894647,0.009743682721265858 +karman_re200,sr,48,19.2,1.0353816747665405,0.4030826687812805,1.0201605558395386,0.5600042343139648,1.0826411247253418,0.3360174298286438,0.0021988009102642536,-0.0028577540069818497,-0.007995636202394962,0.003531156573444605,0.003241579048335552,-0.005504704546183348,2.539550740014485,-5.759336499428235,1.1030808615929977,0.02539550740014485,-0.05759336499428235,0.011030808615929977 +karman_re200,sr,49,19.6,0.9714668989181519,0.32984450459480286,1.0560158491134644,0.511432409286499,1.138026475906372,0.29259777069091797,-4.061533763888292e-05,-0.004417947493493557,-0.005188724026083946,0.005421218927949667,0.0019805694464594126,-0.005599693860858679,2.142888818239555,-4.721693727334697,2.1407236336865356,0.02142888818239555,-0.04721693727334697,0.021407236336865358 +karman_re200,sr,50,20.0,0.9172401428222656,0.21418429911136627,1.0995455980300903,0.3800640404224396,1.1815173625946045,0.24220965802669525,-0.001904709730297327,-0.0051839351654052734,-0.001468444475904107,0.00654126750305295,0.000594502140302211,-0.006200714036822319,1.3671535584398693,-3.547911813818488,3.3145055472027436,0.013671535584398693,-0.035479118138184884,0.03314505547202744 +karman_re200,sr,51,20.4,0.8854061961174011,0.05716564506292343,1.0745306015014648,0.24979326128959656,1.2319364547729492,0.24519743025302887,-0.002378568984568119,-0.005292828660458326,0.0015530826058238745,0.006741988472640514,-0.0008853749022819102,-0.006434277165681124,0.39339508391158245,-3.208523870267639,3.653893490753593,0.003933950839115825,-0.03208523870267639,0.03653893490753593 +karman_re200,sr,52,20.8,0.8756030201911926,-0.11875863373279572,0.9743439555168152,-0.02115493267774582,1.2947508096694946,0.2783069908618927,-0.0012495651608332992,-0.005103139206767082,0.0038282624445855618,0.0068573253229260445,-0.0025993240997195244,-0.0055627222172915936,-0.4650034026475094,-3.229999059130738,3.6324183018904943,-0.004650034026475094,-0.03229999059130738,0.03632418301890494 +karman_re200,sr,53,21.2,0.909298837184906,-0.2347295880317688,0.917142391204834,-0.3211219310760498,1.250077486038208,-0.09253160655498505,0.0008915143553167582,-0.004173272754997015,0.005425748880952597,0.006776059046387672,-0.004855565261095762,-0.0038605299778282642,-1.2257132240270106,-2.5846794993248916,4.27773786169634,-0.012257132240270106,-0.025846794993248916,0.0427773786169634 +karman_re200,sr,54,21.6,0.971320390701294,-0.291605681180954,0.9254430532455444,-0.47611403465270996,1.1750084161758423,-0.36602142453193665,0.0028494438156485558,-0.002014596713706851,0.0055946423672139645,0.006309230346232653,-0.007366767153143883,-0.0023741191253066063,-1.9606025710303432,-1.5247707734879596,5.337646587533273,-0.019606025710303433,-0.015247707734879597,0.053376465875332735 +karman_re200,sr,55,22.0,1.0353623628616333,-0.3216654062271118,0.9585219621658325,-0.514828085899353,1.101970911026001,-0.42858222126960754,0.0032763085328042507,0.0007945941179059446,0.004396183416247368,0.005822257604449987,-0.008775112219154835,-0.0023880673106759787,-2.4716852805674376,-0.8580752891051048,6.004342071916128,-0.024716852805674375,-0.008580752891051048,0.06004342071916128 +karman_re200,sr,56,22.4,1.0971732139587402,-0.30809757113456726,0.989959716796875,-0.5099976062774658,1.0410971641540527,-0.3853534758090973,0.001971921417862177,0.0031240733806043863,0.003028993494808674,0.005497295409440994,-0.007750897202640772,-0.0039863018319010735,-2.511709663743959,-1.185622921622945,5.676794439398288,-0.025117096637439593,-0.01185622921622945,0.056767944393982875 +karman_re200,sr,57,22.8,1.1505756378173828,-0.2625860571861267,1.0169986486434937,-0.47135961055755615,0.986037015914917,-0.3006090819835663,-0.0003424267051741481,0.004538960289210081,0.001794209936633706,0.005745719186961651,-0.004473335109651089,-0.005988363642245531,-2.0556789846939445,-2.4431837403534518,4.4192336206677805,-0.020556789846939445,-0.02443183740353452,0.044192336206677806 +karman_re200,sr,58,23.2,1.1904730796813965,-0.2085094004869461,1.051928997039795,-0.3436945378780365,0.9389345049858093,-0.18211406469345093,-0.00205183494836092,0.005162039306014776,0.0003111778059974313,0.00640575448051095,-0.000717156392056495,-0.0067681516520679,-1.1951939958276845,-3.58987168012551,3.272545680895722,-0.011951939958276845,-0.0358987168012551,0.03272545680895722 +karman_re200,sr,59,23.6,1.2350568771362305,-0.20864975452423096,1.0354663133621216,-0.16845834255218506,0.9027240872383118,-0.025768985971808434,-0.0023006766568869352,0.00518372468650341,-0.0012100694002583623,0.006451698020100594,0.002068230649456382,-0.006779046263545752,-0.19609892711451307,-3.668176890741954,3.1942404702792784,-0.001960989271145131,-0.03668176890741954,0.03194240470279278 +karman_re200,sr,60,24.0,1.2883344888687134,-0.25051942467689514,0.9495100975036621,0.08582434058189392,0.8878031373023987,0.13448992371559143,-0.0009943345794454217,0.004943869076669216,-0.002962136175483465,0.005307651124894619,0.004211887717247009,-0.006859029643237591,0.6251577782058785,-3.6452587158304453,3.2171586451907865,0.006251577782058785,-0.036452587158304454,0.03217158645190787 +karman_re200,sr,61,24.4,1.2357615232467651,0.07628004997968674,0.9020503163337708,0.3238390386104584,0.9244643449783325,0.22781281173229218,0.001229963032528758,0.003908362705260515,-0.005285471677780151,0.0034833159297704697,0.0056593213230371475,-0.006728386506438255,1.3680556293087074,-4.445640965684527,2.416776395336705,0.013680556293087074,-0.04445640965684527,0.024167763953367054 +karman_re200,sr,62,24.8,1.1584153175354004,0.3383175730705261,0.9094979763031006,0.4529639780521393,0.9835522174835205,0.2849911153316498,0.0030991348903626204,0.0017211921513080597,-0.007787871174514294,0.0021441809367388487,0.005567226558923721,-0.006219643168151379,2.087125147653753,-5.553130778642933,1.3092865823782995,0.020871251476537532,-0.055531307786429326,0.013092865823782995 +karman_re200,sr,63,25.2,1.0871657133102417,0.406869500875473,0.9379603862762451,0.4898463189601898,1.044621229171753,0.3133237361907959,0.003346191020682454,-0.0010488997213542461,-0.008939642459154129,0.0024262121878564358,0.004193332977592945,-0.005696048028767109,2.546759936597308,-6.096116319535815,0.7663010414854177,0.02546759936597308,-0.06096116319535815,0.007663010414854177 +karman_re200,sr,64,25.6,1.0289498567581177,0.3649834096431732,0.960364818572998,0.4876205027103424,1.1039822101593018,0.298043817281723,0.0018133586272597313,-0.0032545197755098343,-0.007543887943029404,0.004138297867029905,0.0028304678853601217,-0.005364478100091219,2.5044021659895264,-5.569324559401018,1.2930928016202148,0.025044021659895263,-0.05569324559401018,0.012930928016202149 +karman_re200,sr,65,26.0,0.9772443175315857,0.2803031802177429,0.9709938764572144,0.4521435797214508,1.1560337543487549,0.2524855136871338,-0.0005426599527709186,-0.00460693147033453,-0.003995985258370638,0.006004285998642445,0.001558012911118567,-0.005662992130964994,1.9783452221091038,-4.232996768428743,2.62942059259249,0.019783452221091038,-0.04232996768428743,0.0262942059259249 +karman_re200,sr,66,26.4,0.9345440864562988,0.16576853394508362,0.9860857129096985,0.3239724338054657,1.194258213043213,0.2008555829524994,-0.0021289128344506025,-0.005195327568799257,-0.00023783506185282022,0.006582879461348057,8.03206639830023e-05,-0.006329080555588007,1.0591236626127338,-3.208039728504193,3.654377632517039,0.010591236626127338,-0.03208039728504193,0.03654377632517039 +karman_re200,sr,67,26.8,0.9020413160324097,0.0173376202583313,0.9725934863090515,0.1227576732635498,1.2376123666763306,0.2236846536397934,-0.002171469619497657,-0.005208258051425219,0.00249017053283751,0.0066535999067127705,-0.0014051150064915419,-0.0062828827649354935,0.06067093422528793,-3.2652518873098173,3.5971654737114145,0.0006067093422528793,-0.032652518873098176,0.035971654737114146 +karman_re200,sr,68,27.2,0.8924994468688965,-0.13028402626514435,0.9105110764503479,-0.12547700107097626,1.25971519947052,0.22728531062602997,-0.0006687205168418586,-0.004944287706166506,0.004619779996573925,0.006814058404415846,-0.003241832833737135,-0.005066968034952879,-0.7428142684670762,-3.18880011751985,3.673617243501382,-0.007428142684670762,-0.0318880011751985,0.03673617243501382 +karman_re200,sr,69,27.6,0.930351734161377,-0.218350350856781,0.8816835284233093,-0.3367002010345459,1.1985881328582764,-0.13036221265792847,0.0016375184059143066,-0.0037650233134627342,0.005902134347707033,0.006656938698142767,-0.005742668639868498,-0.003223086940124631,-1.4991758946957092,-2.2888021981824673,4.573615162838765,-0.014991758946957092,-0.022888021981824675,0.04573615162838765 +karman_re200,sr,70,28.0,0.9861106872558594,-0.27689021825790405,0.8959943652153015,-0.45411717891693115,1.1346324682235718,-0.36217814683914185,0.0033366240095347166,-0.0014200572622939944,0.0055555980652570724,0.006129445042461157,-0.008298727683722973,-0.0019731351640075445,-2.220614053918383,-1.18584428707076,5.676573073950472,-0.02220614053918383,-0.0118584428707076,0.05676573073950472 +karman_re200,sr,71,28.4,1.0435439348220825,-0.3025726079940796,0.9265047311782837,-0.4891532063484192,1.070633888244629,-0.42132142186164856,0.003372200531885028,0.0013931025750935078,0.004082473460584879,0.005613572429865599,-0.009237566031515598,-0.0024625929072499275,-2.6419605809195206,-0.7134355013421785,6.148981859679054,-0.026419605809195206,-0.007134355013421785,0.06148981859679054 +karman_re200,sr,72,28.8,1.100488543510437,-0.285743772983551,0.9524257779121399,-0.4856571555137634,1.0170040130615234,-0.3745653033256531,0.0016190202441066504,0.0035078024957329035,0.0027978194411844015,0.005373919382691383,-0.0074699800461530685,-0.004424570593982935,-2.5400744801320623,-1.3708118657620463,5.491605495259186,-0.025400744801320624,-0.013708118657620463,0.054916054952591865 +karman_re200,sr,73,29.2,1.1522210836410522,-0.2413407862186432,0.9715597629547119,-0.44404137134552,0.9698240160942078,-0.28457868099212646,-0.0007380008464679122,0.004760819487273693,0.0015337351942434907,0.0058202845975756645,-0.0036147930659353733,-0.006305753719061613,-1.958025384261544,-2.8104381530282385,4.051979207992994,-0.01958025384261544,-0.028104381530282385,0.04051979207992994 +karman_re200,sr,74,29.6,1.191237211227417,-0.1932295560836792,0.9956291913986206,-0.3095313012599945,0.930168092250824,-0.16315673291683197,-0.0022195095662027597,0.005234306678175926,2.0918047084705904e-05,0.00653928704559803,0.00011065086437156424,-0.006746439728885889,-0.9818022875739091,-3.7486525180186767,3.1137648430025555,-0.009818022875739092,-0.03748652518018677,0.031137648430025557 +karman_re200,sr,75,30.0,1.2354148626327515,-0.21489711105823517,0.9721466898918152,-0.1182122677564621,0.8978710770606995,-0.006675499025732279,-0.0021290744189172983,0.005168554838746786,-0.0015155354049056768,0.006369016133248806,0.0026911029126495123,-0.006776259746402502,0.01711166392230864,-3.566663933630959,3.295753427390273,0.00017111663922308637,-0.03566663933630959,0.03295753427390273 +karman_re200,sr,76,30.4,1.2513905763626099,-0.21286851167678833,0.900908350944519,0.13642829656600952,0.8899250626564026,0.1427743285894394,-0.0005214986158534884,0.004808058030903339,-0.0034272230695933104,0.004986526910215616,0.004744742996990681,-0.006897017825394869,0.8021879097208766,-3.697501570498057,3.1649157905231746,0.008021879097208766,-0.036975015704980574,0.03164915790523175 +karman_re200,sr,77,30.8,1.1804251670837402,0.13449731469154358,0.8725392818450928,0.3528749942779541,0.9296113848686218,0.22880958020687103,0.0017952814232558012,0.0034987875260412693,-0.00596485985442996,0.0031136558391153812,0.005924145691096783,-0.00664943503215909,1.558358927580168,-4.680461291639545,2.1819560693816875,0.01558358927580168,-0.04680461291639545,0.021819560693816877 +karman_re200,sr,78,31.2,1.1159985065460205,0.36399102210998535,0.8891266584396362,0.4664050340652466,0.9872190356254578,0.286284476518631,0.003342395182698965,0.001097366912290454,-0.008379530161619186,0.0020557569805532694,0.005458622705191374,-0.006095500197261572,2.2671824357766135,-5.743222495489032,1.1191948655322,0.022671824357766136,-0.057432224954890324,0.011191948655322 +karman_re200,sr,79,31.6,1.0528645515441895,0.41745877265930176,0.9204561710357666,0.4985625445842743,1.0474820137023926,0.30903956294059753,0.003193985903635621,-0.0016683514695614576,-0.008982982486486435,0.002737422939389944,0.003964811097830534,-0.005611185450106859,2.638876481559811,-6.072759981103804,0.7896573799174282,0.02638876481559811,-0.06072759981103804,0.007896573799174283 +karman_re200,sr,80,32.0,0.9987874627113342,0.3708754777908325,0.9446504712104797,0.495061993598938,1.1057707071304321,0.2900480031967163,0.001307294238358736,-0.003675741609185934,-0.006976246368139982,0.004662047140300274,0.002662863116711378,-0.005429865326732397,2.469088779882807,-5.310335815716435,1.5520815453047974,0.02469088779882807,-0.053103358157164354,0.015520815453047974 +karman_re200,sr,81,32.4,0.9503118395805359,0.28287938237190247,0.9628165364265442,0.4487992525100708,1.156080961227417,0.2453974336385727,-0.0010037077590823174,-0.004839936271309853,-0.0031779601704329252,0.006300157867372036,0.0013271570205688477,-0.005894241854548454,1.838136893527249,-3.9332780003129617,2.9291393607082705,0.01838136893527249,-0.03933278000312962,0.029291393607082706 +karman_re200,sr,82,32.8,0.910984218120575,0.16371501982212067,0.9895101189613342,0.30606770515441895,1.1924370527267456,0.2067423015832901,-0.002322146203368902,-0.005242658779025078,0.00035271598608233035,0.006629261188209057,-0.00017822007066570222,-0.006500012241303921,0.8591065524733899,-3.1657838962889517,3.69663346473228,0.008591065524733899,-0.03165783896288952,0.0369663346473228 +karman_re200,sr,83,33.2,0.8846822381019592,0.012489553540945053,0.960407018661499,0.11605967581272125,1.2351793050765991,0.2594063878059387,-0.0020085731521248817,-0.005163476336747408,0.0028879845049232244,0.006694272626191378,-0.0016977780032902956,-0.006165951024740934,-0.10124723197160419,-3.3466939711633823,3.51572338985785,-0.001012472319716042,-0.03346693971163382,0.0351572338985785 +karman_re200,sr,84,33.6,0.8825762867927551,-0.138083353638649,0.8882681131362915,-0.147184818983078,1.2316642999649048,0.17674794793128967,-0.00027450817287899554,-0.004763579461723566,0.004940565675497055,0.006839124485850334,-0.003652922110632062,-0.004738520830869675,-0.8744852690540124,-3.0857439965993305,3.7766733644219013,-0.008744852690540124,-0.030857439965993307,0.037766733644219015 +karman_re200,sr,85,34.0,0.9254218935966492,-0.22828559577465057,0.866524338722229,-0.3700178265571594,1.1775230169296265,-0.2021307498216629,0.0020390739664435387,-0.0033190434332937002,0.005964534357190132,0.006578217726200819,-0.006225563120096922,-0.0029337825253605843,-1.6387413140793174,-2.0576430801291323,4.8047742808921,-0.016387413140793176,-0.020576430801291325,0.048047742808921 +karman_re200,sr,86,34.4,0.9849691987037659,-0.28515011072158813,0.8899171352386475,-0.483734667301178,1.1195800304412842,-0.40506088733673096,0.0034001334570348263,-0.0008009342709556222,0.005295220762491226,0.006039241328835487,-0.008550334721803665,-0.002024896675720811,-2.324599377557574,-1.0481456915339455,5.814271669487287,-0.023245993775575742,-0.010481456915339455,0.058142716694872865 +karman_re200,sr,87,34.8,1.0453784465789795,-0.3044338524341583,0.9260886907577515,-0.5128700733184814,1.0570034980773926,-0.43986788392066956,0.0030564258340746164,0.001937911263667047,0.0037709304597228765,0.0055451965890824795,-0.008937066420912743,-0.0028206021524965763,-2.6402881290079496,-0.8062652693536804,6.056152091667552,-0.026402881290079498,-0.008062652693536804,0.06056152091667552 +karman_re200,sr,88,35.2,1.1024020910263062,-0.2819098234176636,0.9561720490455627,-0.5042321681976318,1.0003923177719116,-0.3831816017627716,0.001041344366967678,0.0038485622499138117,0.0025154692120850086,0.005413368344306946,-0.006699700839817524,-0.0048175593838095665,-2.4233605755631413,-1.6496211905471072,5.212796170474125,-0.024233605755631413,-0.016496211905471073,0.052127961704741245 +karman_re200,sr,89,35.6,1.1520313024520874,-0.23587694764137268,0.9874324202537537,-0.44290363788604736,0.9500530362129211,-0.2866658568382263,-0.0011974037624895573,0.004934422206133604,0.001193253556266427,0.005950950551778078,-0.0027904706075787544,-0.006405849941074848,-1.7572934594373124,-3.041614627107055,3.820802733914177,-0.017572934594373125,-0.030416146271070553,0.03820802733914177 +karman_re200,sr,90,36.0,1.1918729543685913,-0.2000003308057785,1.020033359527588,-0.29659077525138855,0.9106469750404358,-0.15587720274925232,-0.0023582892026752234,0.00526112737134099,-0.00030122033786028624,0.006546535529196262,0.0006792457425035536,-0.006714118644595146,-0.759679135371159,-3.7286632485301796,3.133754112491053,-0.007596791353711591,-0.0372866324853018,0.03133754112491053 +karman_re200,sr,91,36.4,1.2427949905395508,-0.25514060258865356,0.973021388053894,-0.10890960693359375,0.8840892314910889,0.008532105013728142,-0.0018754517659544945,0.005158415995538235,-0.001872277702204883,0.0061197709292173386,0.003136442508548498,-0.006800536997616291,0.18697068209477008,-3.5407897535373536,3.321627607483878,0.001869706820947701,-0.03540789753537354,0.033216276074838784 +karman_re200,sr,92,36.8,1.2387001514434814,-0.13791093230247498,0.8973786234855652,0.17329099774360657,0.8858136534690857,0.1604200303554535,-3.282457328168675e-05,0.004655432887375355,-0.00392344081774354,0.0045908354222774506,0.005075064487755299,-0.006879012566059828,0.9551414913598049,-3.8763554130903795,2.9860619479308528,0.009551414913598049,-0.03876355413090379,0.02986061947930853 +karman_re200,sr,93,37.2,1.1777541637420654,0.23204974830150604,0.8789834380149841,0.39416640996932983,0.932201623916626,0.24447757005691528,0.002247903496026993,0.00304606556892395,-0.006527651567012072,0.0027796421200037003,0.005911560263484716,-0.006521061062812805,1.715976420294096,-4.927426877040207,1.9349904839810252,0.01715976420294096,-0.04927426877040207,0.019349904839810254 +karman_re200,sr,94,37.6,1.1148810386657715,0.40681836009025574,0.9027032256126404,0.49255886673927307,0.9924526810646057,0.29640114307403564,0.003422754118219018,0.00044544608681462705,-0.008679812774062157,0.00205758074298501,0.005116953980177641,-0.005975519306957722,2.3721044177339126,-5.8776884551569,0.9847289058643325,0.023721044177339126,-0.058776884551569,0.009847289058643325 +karman_re200,sr,95,38.0,1.052838921546936,0.4210655093193054,0.9369969367980957,0.511202335357666,1.0546926259994507,0.3087061047554016,0.002869147341698408,-0.002219213405624032,-0.008721339516341686,0.003094022860750556,0.0036262767389416695,-0.005529697984457016,2.630984327153271,-5.993113027920929,0.869304333100303,0.02630984327153271,-0.05993113027920929,0.00869304333100303 +karman_re200,sr,96,38.4,0.9976010322570801,0.35821732878685,0.963497519493103,0.4971960186958313,1.1130491495132446,0.2809195816516876,0.000731364416424185,-0.004021266475319862,-0.006185459438711405,0.0051591419614851475,0.002386210486292839,-0.005499448627233505,2.354637533853378,-5.023874462889687,1.838542898131545,0.02354637533853378,-0.05023874462889687,0.01838542898131545 +karman_re200,sr,97,38.8,0.9480505585670471,0.259502112865448,0.9897885322570801,0.4256264567375183,1.1607351303100586,0.23179061710834503,-0.001431578304618597,-0.005001596640795469,-0.0022823119070380926,0.006528944242745638,0.0009937516879290342,-0.006087080109864473,1.634580741410804,-3.6537321101657776,3.208685250855454,0.01634580741410804,-0.03653732110165778,0.032086852508554545 +karman_re200,sr,98,39.2,0.9094022512435913,0.12720991671085358,1.0144927501678467,0.26725533604621887,1.19735848903656,0.20104645192623138,-0.0024066471960395575,-0.005238695535808802,0.0009879926219582558,0.006695706397294998,-0.0005216283607296646,-0.0065582082606852055,0.6247312958644589,-3.1422777479527806,3.720139613068452,0.006247312958644589,-0.031422777479527805,0.03720139613068452 +karman_re200,sr,99,39.6,0.8825035095214844,-0.03604717552661896,0.961638331413269,0.061718326061964035,1.2428683042526245,0.26767274737358093,-0.00172459299210459,-0.0051064519211649895,0.003363842610269785,0.006768110208213329,-0.0021081650629639626,-0.005926087964326143,-0.2878782555465825,-3.3412999011385716,3.5211174598826602,-0.0028787825554658247,-0.03341299901138572,0.035211174598826604 +karman_re200,sr,100,40.0,0.8910135626792908,-0.1738080233335495,0.8912290930747986,-0.20776128768920898,1.2255315780639648,0.10194728523492813,0.00022800381702836603,-0.004529268946498632,0.005251613911241293,0.006824346724897623,-0.00419645057991147,-0.004307991359382868,-1.043488426150007,-2.880618003294016,3.9817993577272164,-0.01043488426150007,-0.028806180032940158,0.039817993577272164 +karman_re200,sr,101,40.4,0.9421722888946533,-0.2496529221534729,0.8788425326347351,-0.4055148661136627,1.1681591272354126,-0.2581331431865692,0.0024726754054427147,-0.0028070469852536917,0.0059106433764100075,0.006454838905483484,-0.006804638542234898,-0.0025885736104100943,-1.801705431493027,-1.7857868227455134,5.076630538275719,-0.01801705431493027,-0.017857868227455134,0.05076630538275719 +karman_re200,sr,102,40.8,1.0028679370880127,-0.2980632185935974,0.9049546122550964,-0.49124032258987427,1.1055365800857544,-0.4174582362174988,0.003465102519840002,-0.0001425527734681964,0.004936027340590954,0.005923382472246885,-0.008801773190498352,-0.0020865865517407656,-2.424749801108993,-0.9030930130595524,5.9593243479616795,-0.024247498011089934,-0.009030930130595523,0.059593243479616795 +karman_re200,sr,103,41.2,1.06369948387146,-0.30503398180007935,0.9380357265472412,-0.507138729095459,1.0451244115829468,-0.4210442006587982,0.0026956037618219852,0.0024449294432997704,0.0034306130837649107,0.005468228831887245,-0.008573752827942371,-0.003255340736359358,-2.6197397209564826,-0.9223627687197328,5.940054592301499,-0.026197397209564825,-0.009223627687197328,0.059400545923015 +karman_re200,sr,104,41.6,1.1195337772369385,-0.2740356922149658,0.9624071717262268,-0.4913952946662903,0.9902673363685608,-0.3523896038532257,0.00045648973900824785,0.004155247006565332,0.0021971939131617546,0.005476879887282848,-0.005801085382699966,-0.005307467188686132,-2.289181163507688,-1.984221306998317,4.878196054022915,-0.02289181163507688,-0.01984221306998317,0.04878196054022915 +karman_re200,sr,105,42.0,1.164543867111206,-0.22405441105365753,0.989531934261322,-0.4096858501434326,0.9414700269699097,-0.249383807182312,-0.001595967449247837,0.005056135822087526,0.0008017882937565446,0.006096046417951584,-0.001852746936492622,-0.00651202630251646,-1.5252376043205913,-3.320431259692319,3.541986101328914,-0.015252376043205913,-0.03320431259692319,0.03541986101328914 +karman_re200,sr,106,42.4,1.2031081914901733,-0.2010861039161682,1.0104621648788452,-0.24886083602905273,0.9058430194854736,-0.1129947081208229,-0.0023907364811748266,0.005254419986158609,-0.000685541657730937,0.006504898890852928,0.0013302718289196491,-0.006667453795671463,-0.506208498778566,-3.703214138815046,3.159203222206186,-0.00506208498778566,-0.03703214138815046,0.03159203222206186 +karman_re200,sr,107,42.8,1.2506475448608398,-0.27132928371429443,0.9507827162742615,-0.03350120410323143,0.8825631737709045,0.052023597061634064,-0.0015187588287517428,0.005099079106003046,-0.002305444097146392,0.005783951375633478,0.003660145914182067,-0.006803248543292284,0.38440699798103595,-3.537501852429372,3.324915508591861,0.0038440699798103595,-0.03537501852429372,0.03324915508591861 +karman_re200,sr,108,43.2,1.222995638847351,-0.04818573594093323,0.8871175646781921,0.23668432235717773,0.8964359760284424,0.18330861628055573,0.0005328600527718663,0.004408014006912708,-0.004511477891355753,0.0041136471554636955,0.005428686738014221,-0.00682794488966465,1.137612463963996,-4.097717815988296,2.7646995450329364,0.01137612463963996,-0.04097717815988296,0.027646995450329365 +karman_re200,sr,109,43.6,1.1651597023010254,0.2886466085910797,0.8815692663192749,0.4214157164096832,0.9487545490264893,0.25547197461128235,0.002694046590477228,0.002512026811018586,-0.007161065470427275,0.0024260003119707108,0.005861963145434856,-0.006389909889549017,1.8955468201387813,-5.206063250553798,1.6563541104674342,0.018955468201387812,-0.052060632505537975,0.016563541104674343 +karman_re200,sr,110,44.0,1.1002346277236938,0.4221579432487488,0.9091605544090271,0.4948536157608032,1.0081042051315308,0.3002791702747345,0.003473636694252491,-0.0002168966893805191,-0.008978109806776047,0.002106543630361557,0.004747376777231693,-0.005844199564307928,2.483435778159586,-6.023173055072455,0.8392443059487769,0.024834357781595862,-0.06023173055072455,0.008392443059487768 +karman_re200,sr,111,44.4,1.0405985116958618,0.4116649329662323,0.9412885904312134,0.504669725894928,1.0682719945907593,0.30185961723327637,0.0024915924295783043,-0.0027174195274710655,-0.008410024456679821,0.003492753254249692,0.00329785980284214,-0.005436094477772713,2.617391503989849,-5.875227857930228,0.9871895030910042,0.02617391503989849,-0.05875227857930228,0.009871895030910042 +karman_re200,sr,112,44.8,0.9879907369613647,0.3379359841346741,0.9657461047172546,0.4839152991771698,1.1248066425323486,0.26772797107696533,0.0001844750513555482,-0.00431724451482296,-0.00533631443977356,0.005620424635708332,0.002090267138555646,-0.005564309190958738,2.2326433822954064,-4.701941809106958,2.160475551914274,0.022326433822954066,-0.04701941809106958,0.021604755519142742 +karman_re200,sr,113,45.2,0.9415286183357239,0.23085598647594452,0.9932194352149963,0.39078599214553833,1.1693806648254395,0.21673156321048737,-0.0017664809711277485,-0.0051193805411458015,-0.0013741037109866738,0.0066624851897358894,0.0006496031419374049,-0.006253099534660578,1.4162172982235035,-3.394515302216528,3.4679020588047047,0.014162172982235035,-0.03394515302216528,0.034679020588047046 +karman_re200,sr,114,45.6,0.9060829877853394,0.08946193754673004,1.0056359767913818,0.22305679321289062,1.2074410915374756,0.19898566603660583,-0.002388045657426119,-0.0052313003689050674,0.001638732966966927,0.006724858190864325,-0.0008683778578415513,-0.006552551407366991,0.3859122291213433,-3.163515128817608,3.6989022322036242,0.003859122291213433,-0.03163515128817608,0.03698902232203624 +karman_re200,sr,115,46.0,0.8825879096984863,-0.0759841650724411,0.9394721388816833,-0.0036394118797034025,1.2494887113571167,0.2666894495487213,-0.0013444737996906042,-0.005041273310780525,0.0038801925256848335,0.006827884819358587,-0.002546256175264716,-0.005635270848870277,-0.47809529609394824,-3.3185388439314276,3.5438785170898046,-0.004780952960939482,-0.033185388439314276,0.035438785170898046 +karman_re200,sr,116,46.4,0.9020440578460693,-0.19533054530620575,0.8814015984535217,-0.2637520134449005,1.209071159362793,0.019012680277228355,0.0007947850390337408,-0.004231804516166449,0.005559137091040611,0.00678767915815115,-0.0048127504996955395,-0.0038705405313521624,-1.2254962421726023,-2.6513692660104056,4.211048095010827,-0.012254962421726023,-0.026513692660104057,0.04211048095010827 +karman_re200,sr,117,46.8,0.9568429589271545,-0.2627635598182678,0.8809844255447388,-0.4321351647377014,1.1497553586959839,-0.3031965494155884,0.0028779865242540836,-0.0022341751027852297,0.0058180405758321285,0.006323959678411484,-0.007430371828377247,-0.0022976030595600605,-1.9778745397603044,-1.5237182980128958,5.338699063008336,-0.019778745397603045,-0.015237182980128959,0.05338699063008336 +karman_re200,sr,118,47.2,1.0175541639328003,-0.3038024306297302,0.910662829875946,-0.4953889548778534,1.0865687131881714,-0.42344915866851807,0.003467754926532507,0.0005238971207290888,0.004589585587382317,0.005804610904306173,-0.00901719368994236,-0.002231770195066929,-2.5264155012569423,-0.7984107543480365,6.064006606673196,-0.025264155012569425,-0.007984107543480366,0.06064006606673196 +karman_re200,sr,119,47.6,1.0776052474975586,-0.3009139597415924,0.9410514831542969,-0.5031334161758423,1.0291295051574707,-0.40579232573509216,0.0022696673404425383,0.0029270437080413103,0.003152509219944477,0.0054268185049295425,-0.008133570663630962,-0.003756278194487095,-2.5947545290402116,-1.0949606776008087,5.7674566834204235,-0.025947545290402118,-0.010949606776008088,0.05767456683420424 +karman_re200,sr,120,48.0,1.132495403289795,-0.2643284201622009,0.9626750349998474,-0.4800192713737488,0.9772672057151794,-0.3295232355594635,-9.266855340683833e-05,0.004427038598805666,0.0019080383935943246,0.005607201252132654,-0.0048741865903139114,-0.005776692181825638,-2.152207094431155,-2.338857584655993,4.523559776365239,-0.02152207094431155,-0.023388575846559928,0.045235597763652394 +karman_re200,sr,121,48.4,1.1741751432418823,-0.21429763734340668,0.9895774722099304,-0.3765237033367157,0.931518018245697,-0.22059638798236847,-0.0019272868521511555,0.005143491551280022,0.0004446236416697502,0.006282661575824022,-0.0009827730245888233,-0.006600604858249426,-1.2933412555087525,-3.542037255930334,3.3203801050908983,-0.012933412555087525,-0.03542037255930334,0.03320380105090898 +karman_re200,sr,122,48.8,1.213484287261963,-0.21152687072753906,0.9955357313156128,-0.205611452460289,0.8985552787780762,-0.07806945592164993,-0.002342135412618518,0.005213798489421606,-0.0010390187380835414,0.006455508526414633,0.0019241553964093328,-0.006658796686679125,-0.2721984305781693,-3.639108897467979,3.223308463553253,-0.0027219843057816927,-0.03639108897467979,0.03223308463553253 +karman_re200,sr,123,49.2,1.251285433769226,-0.2683671712875366,0.9266234040260315,0.029851427301764488,0.8805237412452698,0.085667684674263,-0.0011282168561592698,0.005003843456506729,-0.0027492856606841087,0.005440047010779381,0.004146547522395849,-0.006820310838520527,0.5650646158877007,-3.5641369572191106,3.2982804038021216,0.0056506461588770075,-0.035641369572191106,0.032982804038021216 +karman_re200,sr,124,49.6,1.2043834924697876,0.040538374334573746,0.8765489459037781,0.28720179200172424,0.905623197555542,0.20081369578838348,0.0010796881979331374,0.004077049903571606,-0.005100095644593239,0.0036644702777266502,0.0057119750417768955,-0.006762480363249779,1.3150058524959454,-4.333750627793655,2.5286667332275776,0.013150058524959454,-0.04333750627793655,0.025286667332275775 +karman_re200,sr,125,50.0,1.1477744579315186,0.33375465869903564,0.8824033141136169,0.4459049105644226,0.9616514444351196,0.2666226923465729,0.003027866827324033,0.0019478641916066408,-0.007718256674706936,0.0021905198227614164,0.005740901920944452,-0.006263189483433962,2.061815570751129,-5.456969262722231,1.4054480982990012,0.02061815570751129,-0.054569692627222305,0.014054480982990012 +karman_re200,sr,126,50.4,1.0831586122512817,0.4323951303958893,0.9139161705970764,0.501578152179718,1.0216261148452759,0.30370810627937317,0.0034222202375531197,-0.0008495529182255268,-0.009097520262002945,0.0022742203436791897,0.004393673036247492,-0.0057251835241913795,2.566603897318707,-6.094290282960101,0.768127078061132,0.02566603897318707,-0.060942902829601006,0.00768127078061132 +karman_re200,sr,127,50.8,1.0248961448669434,0.40368103981018066,0.9443395733833313,0.5048626065254211,1.080391764640808,0.2960078716278076,0.002031792653724551,-0.003151141107082367,-0.00792672298848629,0.003920086193829775,0.0030061472207307816,-0.005378263536840677,2.5727127778966303,-5.687762077290392,1.1746552837308402,0.025727127778966304,-0.056877620772903925,0.011746552837308402 +karman_re200,sr,128,51.2,0.9735114574432373,0.3222406506538391,0.9687853455543518,0.47505760192871094,1.134884238243103,0.25691866874694824,-0.0003360464470461011,-0.0045665293000638485,-0.004455895628780127,0.00594862038269639,0.0017789480043575168,-0.005656843073666096,2.084851522362054,-4.384697565891941,2.477719795129291,0.02084851522362054,-0.043846975658919415,0.02477719795129291 +karman_re200,sr,129,51.6,0.9297218322753906,0.2076859325170517,1.001131534576416,0.3584657609462738,1.1771026849746704,0.20780159533023834,-0.0020438379142433405,-0.0052034128457307816,-0.0005860000383108854,0.006684176158159971,0.00030938920099288225,-0.0063750906847417355,1.1889579764038236,-3.2404181552701083,3.621999205751124,0.011889579764038236,-0.03240418155270108,0.03621999205751124 +karman_re200,sr,130,52.0,0.8973679542541504,0.057972051203250885,0.9967661499977112,0.1864972561597824,1.2195611000061035,0.21400637924671173,-0.002276776358485222,-0.0052239662036299706,0.0022064526565372944,0.006735525093972683,-0.0012039702851325274,-0.006451043300330639,0.17074689289691514,-3.229100504197449,3.633316856823783,0.0017074689289691513,-0.03229100504197449,0.03633316856823783 +karman_re200,sr,131,52.4,0.881385862827301,-0.10660161823034286,0.921388566493988,-0.06117357686161995,1.252421498298645,0.2525585889816284,-0.0009106219513341784,-0.004960144869983196,0.004350991453975439,0.006860896944999695,-0.0030003299470990896,-0.005299098324030638,-0.6503530478066457,-3.2451886263442664,3.6172287346769667,-0.0065035304780664575,-0.03245188626344266,0.036172287346769666 +karman_re200,sr,132,52.8,0.9113110303878784,-0.21310420334339142,0.8769334554672241,-0.31331169605255127,1.1959965229034424,-0.08007781952619553,0.0013541362714022398,-0.003874867921695113,0.005773446056991816,0.00671091815456748,-0.00542553560808301,-0.0034566724207252264,-1.4018655047676214,-2.4099627851224703,4.452454575898762,-0.014018655047676215,-0.024099627851224704,0.04452454575898762 +karman_re200,sr,133,53.2,0.968262791633606,-0.2752563953399658,0.8864091634750366,-0.45809102058410645,1.1364496946334839,-0.35005661845207214,0.0031694015488028526,-0.001627519610337913,0.005637295078486204,0.006192943546921015,-0.007976610213518143,-0.002120002405717969,-2.135597837213143,-1.3032870306575068,5.559130330363725,-0.02135597837213143,-0.01303287030657507,0.055591303303637256 +karman_re200,sr,134,53.6,1.02974271774292,-0.30749577283859253,0.9193596839904785,-0.5035730004310608,1.0731384754180908,-0.42949581146240234,0.003354765474796295,0.0011644820915535092,0.004245867487043142,0.005698087625205517,-0.00907184462994337,-0.002466444857418537,-2.5961134295182178,-0.7679495594145354,6.094467801606697,-0.025961134295182178,-0.007679495594145353,0.060944678016066976 +karman_re200,sr,135,54.0,1.0895172357559204,-0.2951902151107788,0.9488511085510254,-0.503304660320282,1.0170531272888184,-0.3925820589065552,0.0017608606722205877,0.00336793577298522,0.002897438360378146,0.0054260073229670525,-0.007563209161162376,-0.004269670695066452,-2.5396306596662006,-1.3180669043221562,5.5443504566990764,-0.025396306596662005,-0.013180669043221563,0.055443504566990764 +karman_re200,sr,136,54.4,1.1426604986190796,-0.25347787141799927,0.9715306758880615,-0.46773529052734375,0.9662498235702515,-0.30850648880004883,-0.0006104079075157642,0.004676375538110733,0.0016157287172973156,0.005780689883977175,-0.003953351639211178,-0.006150328554213047,-1.9948006783973695,-2.6750906899608893,4.187326671060343,-0.019948006783973696,-0.026750906899608892,0.04187326671060343 +karman_re200,sr,137,54.8,1.182263731956482,-0.2063106894493103,1.0023674964904785,-0.34036368131637573,0.9230766892433167,-0.1915590614080429,-0.0021836974192410707,0.005205358844250441,0.00011230653035454452,0.006453352980315685,-0.00022678593813907355,-0.006670717149972916,-1.0619997710788531,-3.6729120407817972,3.189505320239436,-0.010619997710788531,-0.03672912040781797,0.03189505320239436 +karman_re200,sr,138,55.2,1.2253111600875854,-0.22786599397659302,0.9880200028419495,-0.1627151519060135,0.8916459083557129,-0.0400528721511364,-0.0022094803862273693,0.005181219428777695,-0.0013897423632442951,0.006349900737404823,0.002442160854116082,-0.006703336723148823,-0.0646634813760451,-3.573341131574739,3.2890762294464926,-0.000646634813760451,-0.03573341131574739,0.03289076229446493 +karman_re200,sr,139,55.6,1.2495083808898926,-0.23616205155849457,0.9116536974906921,0.09175688028335571,0.8804244995117188,0.12054335325956345,-0.0007040365017019212,0.004875027108937502,-0.0032192040234804153,0.005081049632281065,0.004565337672829628,-0.006845608353614807,0.7307275311402369,-3.6623172529458796,3.200100108075352,0.007307275311402369,-0.0366231725294588,0.03200100108075352 +karman_re200,sr,140,56.0,1.1918948888778687,0.12371883541345596,0.8747236728668213,0.33412036299705505,0.9166324138641357,0.2203046977519989,0.0015879805432632565,0.003670098725706339,-0.005683903116732836,0.0032551861368119717,0.00586339645087719,-0.006675580516457558,1.4844787595448021,-4.585037559047667,2.2773798019735656,0.014844787595448022,-0.045850375590476666,0.022773798019735655 +karman_re200,sr,141,56.4,1.1322789192199707,0.3691692054271698,0.8887612223625183,0.46761462092399597,0.9752548933029175,0.2802668511867523,0.0032496540807187557,0.0013378969160839915,-0.008161109872162342,0.0020800733473151922,0.00551513722166419,-0.0061383782885968685,2.202020569347496,-5.667773416785245,1.1946439442359869,0.02202020569347496,-0.05667773416785245,0.011946439442359869 +karman_re200,sr,142,56.8,1.0679799318313599,0.4322192072868347,0.922200083732605,0.5067405104637146,1.0364387035369873,0.30759286880493164,0.003250330686569214,-0.0014472946058958769,-0.009013128466904163,0.002556913299486041,0.0040388330817222595,-0.005624223500490189,2.6080017441097696,-6.084897323765896,0.777520037255337,0.026080017441097697,-0.060848973237658956,0.0077752003725533704 +karman_re200,sr,143,57.2,1.0106196403503418,0.387721449136734,0.950259268283844,0.5036599040031433,1.0947468280792236,0.29096585512161255,0.0014963981229811907,-0.0035334781277924776,-0.007262255996465683,0.0043945880606770515,0.002719783689826727,-0.005370436701923609,2.4889531645152005,-5.436894887810537,1.425522473210695,0.024889531645152008,-0.054368948878105366,0.01425522473210695 +karman_re200,sr,144,57.6,0.9591584801673889,0.299556702375412,0.9738265872001648,0.4602588713169098,1.1460624933242798,0.24711252748966217,-0.0008331950521096587,-0.004788460209965706,-0.003539072349667549,0.006184763740748167,0.0014378135092556477,-0.005785752087831497,1.9035322141389897,-4.069307220240913,2.7931101407803194,0.019035322141389897,-0.04069307220240913,0.027931101407803194 +karman_re200,sr,145,58.0,0.9181064367294312,0.1784096658229828,1.0073180198669434,0.32309189438819885,1.186096429824829,0.20358701050281525,-0.002253400394693017,-0.005244840402156115,0.00012182260252302513,0.006659411825239658,-4.434464790392667e-05,-0.00644853338599205,0.9490708168153823,-3.170298594356006,3.6921187666652266,0.009490708168153823,-0.03170298594356006,0.03692118766665227 +karman_re200,sr,146,58.4,0.8893244862556458,0.022859077900648117,0.9828476905822754,0.1414727121591568,1.2333983182907104,0.24165956676006317,-0.0020778982434421778,-0.005196539685130119,0.002727457322180271,0.006736666429787874,-0.0015647183172404766,-0.006254137028008699,-0.031687382946088784,-3.293317189497611,3.569100171523621,-0.00031687382946088785,-0.03293317189497611,0.03569100171523621 +karman_re200,sr,147,58.8,0.8825607299804688,-0.1347876787185669,0.9059937000274658,-0.12375428527593613,1.2464346885681152,0.20130009949207306,-0.000431001593824476,-0.00483515253290534,0.004776778630912304,0.006857657805085182,-0.0034945702645927668,-0.004903364460915327,-0.8184995106360542,-3.1156870989476095,3.7467302620736227,-0.008184995106360542,-0.031156870989476095,0.03746730262073623 +karman_re200,sr,148,59.2,0.9224539995193481,-0.22816325724124908,0.8764898180961609,-0.3574124872684479,1.1875402927398682,-0.17332835495471954,0.0018773594638332725,-0.003456889884546399,0.005893008317798376,0.0066094184294342995,-0.0060383910313248634,-0.003054835833609104,-1.577310807389194,-2.1533140599612106,4.709103301060022,-0.01577310807389194,-0.021533140599612106,0.04709103301060022 +karman_re200,sr,149,59.6,0.980847954750061,-0.2852291166782379,0.8942530751228333,-0.4770199656486511,1.1266347169876099,-0.3879827558994293,0.003356335451826453,-0.000993050867691636,0.005368608050048351,0.0060626184567809105,-0.008425233885645866,-0.0020299009047448635,-2.2752667525457233,-1.1068994916907196,5.755517869330513,-0.022752667525457234,-0.011068994916907196,0.05755517869330513 +karman_re200,sr,150,60.0,1.0420950651168823,-0.3071584701538086,0.9285433888435364,-0.5074326395988464,1.0635483264923096,-0.4296475946903229,0.0031331779900938272,0.0017795887542888522,0.0038902387022972107,0.0055925678461790085,-0.008974678814411163,-0.002758364425972104,-2.630426576783908,-0.794251398065852,6.06816596295538,-0.02630426576783908,-0.00794251398065852,0.060681659629553804 +karman_re200,sr,151,60.4,1.1010932922363281,-0.28626787662506104,0.9572514295578003,-0.49976563453674316,1.0082228183746338,-0.37660396099090576,0.0012089393567293882,0.0037449973169714212,0.0026250563096255064,0.0054407804273068905,-0.006884431466460228,-0.004762824159115553,-2.4532846687560244,-1.5779488743357126,5.28446848668552,-0.024532846687560245,-0.015779488743357127,0.0528446848668552 +karman_re200,sr,152,60.8,1.1514896154403687,-0.24013391137123108,0.9820973873138428,-0.4467895030975342,0.9579780101776123,-0.2838553488254547,-0.0010771651286631823,0.0048773386515676975,0.0012971125543117523,0.0059505184181034565,-0.00303468550555408,-0.0064145419746637344,-1.8134185888479015,-2.987899250698547,3.8745181103226853,-0.018134185888479017,-0.02987899250698547,0.038745181103226854 +karman_re200,sr,153,61.2,1.189923644065857,-0.19866955280303955,1.0125268697738647,-0.3010651171207428,0.9175153970718384,-0.15766163170337677,-0.0023432900197803974,0.005234013311564922,-0.0002213127736467868,0.006556300912052393,0.00046554231084883213,-0.006717298645526171,-0.8260553365082905,-3.7346294584125466,3.127787902608686,-0.008260553365082905,-0.037346294584125465,0.03127787902608686 +karman_re200,sr,154,61.6,1.2367011308670044,-0.24383676052093506,0.9761559963226318,-0.11124566197395325,0.8875896334648132,0.0026445663534104824,-0.0019790218211710453,0.005136753432452679,-0.0017640276346355677,0.006169666536152363,0.002946066204458475,-0.0067610545083880424,0.13098032274686233,-3.5364836322677595,3.3259337287534723,0.0013098032274686234,-0.0353648363226776,0.033259337287534725 +karman_re200,sr,155,62.0,1.2405965328216553,-0.1759873926639557,0.8999247550964355,0.15604740381240845,0.8852642774581909,0.15297995507717133,-0.00022008869564160705,0.0047024814411997795,-0.003738755825906992,0.004687278997153044,0.004944748245179653,-0.006855974905192852,0.8981947213298683,-3.817911889950556,3.0445054710706763,0.008981947213298683,-0.03817911889950556,0.030445054710706763 +karman_re200,sr,156,62.4,1.178745150566101,0.19517788290977478,0.8765310049057007,0.3749793767929077,0.9306350946426392,0.23761913180351257,0.002082143910229206,0.0032074544578790665,-0.0062909978441894054,0.0028736230451613665,0.00591263035312295,-0.006562819704413414,1.6559070340723034,-4.84929918507036,2.013118175950872,0.016559070340723035,-0.048492991850703604,0.02013118175950872 +karman_re200,sr,157,62.8,1.1165900230407715,0.39324796199798584,0.8970949649810791,0.48114392161369324,0.9905616641044617,0.2917541563510895,0.0033928679767996073,0.0006905290647409856,-0.00853769388049841,0.002057473873719573,0.005216337274760008,-0.006013696081936359,2.3271796279130226,-5.84354077951268,1.018876581508552,0.023271796279130227,-0.0584354077951268,0.01018876581508552 +karman_re200,sr,158,63.2,1.0538004636764526,0.42301419377326965,0.9297674298286438,0.5061703324317932,1.0516895055770874,0.30820298194885254,0.0029769178945571184,-0.0020168209448456764,-0.008794775232672691,0.0029345836956053972,0.0036996258422732353,-0.005539958365261555,2.6228348314682064,-6.018146354253682,0.8442710067675505,0.026228348314682064,-0.060181463542536826,0.008442710067675505 +karman_re200,sr,159,63.6,0.9983688592910767,0.36558768153190613,0.9547476768493652,0.4970078766345978,1.1095232963562012,0.2836850881576538,0.0009234236786141992,-0.0038787724915891886,-0.006473483983427286,0.00491927657276392,0.0024367929436266422,-0.005420010536909103,2.382628770269516,-5.13483945057986,1.7275779104413722,0.02382628770269516,-0.0513483945057986,0.017275779104413722 +karman_re200,sr,160,64.0,0.9481809139251709,0.27077409625053406,0.9771366119384766,0.43598347902297974,1.157413363456726,0.2359759360551834,-0.0012830795021727681,-0.0049387551844120026,-0.002599082887172699,0.006385228130966425,0.0010835252469405532,-0.005956773646175861,1.6991516464152905,-3.7586340596208947,3.1037833014003375,0.016991516464152905,-0.037586340596208946,0.031037833014003376 +karman_re200,sr,161,64.4,0.9099688529968262,0.1434764415025711,1.0050203800201416,0.2827984690666199,1.1949657201766968,0.20233121514320374,-0.002374602947384119,-0.005236579570919275,0.0007896962924860418,0.006641979794949293,-0.0004045445239171386,-0.006492435932159424,0.7022575982102247,-3.1510461947213066,3.711371166299925,0.007022575982102247,-0.03151046194721307,0.03711371166299925 +karman_re200,sr,162,64.8,0.884341299533844,-0.01583366096019745,0.9624854922294617,0.08342716097831726,1.242275357246399,0.26628604531288147,-0.0018031815998256207,-0.00514640798792243,0.0032312292605638504,0.006746739149093628,-0.0019605413544923067,-0.0059975222684443,-0.22773660863969722,-3.3334233104864817,3.5289940505347506,-0.0022773660863969723,-0.033334233104864816,0.035289940505347506 +karman_re200,sr,163,65.2,0.8880348205566406,-0.16007743775844574,0.8916088342666626,-0.18606708943843842,1.230968952178955,0.12198971956968307,8.446608990198001e-05,-0.004632351920008659,0.005160048604011536,0.006835973355919123,-0.00402848469093442,-0.004464163910597563,-0.9900484194378398,-2.941302585162747,3.9211147758584857,-0.009900484194378398,-0.029413025851627472,0.039211147758584856 +karman_re200,sr,164,65.6,0.9358434081077576,-0.2408912032842636,0.8763546943664551,-0.39281830191612244,1.1757715940475464,-0.24278533458709717,0.0023485973943024874,-0.0029717569705098867,0.005915688816457987,0.0064903669990599155,-0.0066451444290578365,-0.0026818853802978992,-1.7522139439734878,-1.8803040836205487,4.982113277400684,-0.01752213943973488,-0.018803040836205487,0.04982113277400684 +karman_re200,sr,165,66.0,0.9951015710830688,-0.2924405038356781,0.9008111357688904,-0.487848699092865,1.1136060953140259,-0.41285762190818787,0.0034555813763290644,-0.0003431384975556284,0.005041526164859533,0.005940025672316551,-0.00877180602401495,-0.0020295719150453806,-2.3952971006618133,-0.9408772327797696,5.921540128241462,-0.023952971006618133,-0.009408772327797696,0.05921540128241462 +karman_re200,sr,166,66.4,1.0550777912139893,-0.3035665452480316,0.9344147443771362,-0.5067517757415771,1.0518686771392822,-0.4245791733264923,0.002825232222676277,0.0023080974351614714,0.0035443196538835764,0.005490830633789301,-0.008730906061828136,-0.0031113040167838335,-2.634143284586754,-0.8741985800403982,5.988218780980834,-0.02634143284586754,-0.008741985800403982,0.059882187809808335 +karman_re200,sr,167,66.8,1.1126500368118286,-0.2755894660949707,0.961597740650177,-0.4927901327610016,0.9978075623512268,-0.35920006036758423,0.0006498803850263357,0.004066075198352337,0.0023305704817175865,0.00547335110604763,-0.006097543053328991,-0.005220743827521801,-2.340832968012716,-1.875257895334567,4.9871594656866645,-0.02340832968012716,-0.018752578953345672,0.04987159465686664 +karman_re200,sr,168,67.2,1.1600874662399292,-0.22639261186122894,0.9889270067214966,-0.4192613363265991,0.9492631554603577,-0.2580479383468628,-0.001474834280088544,0.005026129074394703,0.000949078006669879,0.006099408958107233,-0.0021255393512547016,-0.006563312839716673,-1.6072051527117155,-3.2660310815064584,3.596386279514774,-0.016072051527117156,-0.03266031081506458,0.03596386279514774 +karman_re200,sr,169,67.6,1.1978843212127686,-0.19530867040157318,1.0124390125274658,-0.26161831617355347,0.9114034175872803,-0.12301167845726013,-0.002401824574917555,0.005244063679128885,-0.0005621876334771514,0.006574207451194525,0.0011251888936385512,-0.006722835823893547,-0.5863163612740723,-3.7345512040520394,3.1278661569691932,-0.005863163612740723,-0.0373455120405204,0.03127866156969193 +karman_re200,sr,170,68.0,1.2454243898391724,-0.2593194842338562,0.9578626155853271,-0.05364438518881798,0.884650468826294,0.04251687228679657,-0.0016609254525974393,0.00510060740634799,-0.0021715741604566574,0.005910319276154041,0.0034585236571729183,-0.006807026453316212,0.3217754765248508,-3.528395419901458,3.334021941119774,0.003217754765248508,-0.03528395419901458,0.03334021941119774 +karman_re200,sr,171,68.4,1.2249523401260376,-0.09456425905227661,0.8894405961036682,0.21607805788516998,0.893629789352417,0.17770898342132568,0.00032610236667096615,0.0044750673696398735,-0.0043103862553834915,0.004255169536918402,0.00529868621379137,-0.006839404813945293,1.0736355395709833,-4.017557337595326,2.8448600234259067,0.010736355395709834,-0.04017557337595326,0.028448600234259068 +karman_re200,sr,172,68.8,1.163846492767334,0.2582899332046509,0.8786495923995972,0.40873268246650696,0.9444465041160583,0.2516259253025055,0.002542743692174554,0.002689034678041935,-0.006925228051841259,0.0025322185829281807,0.0058835879899561405,-0.006431042682379484,1.8324089632891705,-5.121016594250124,1.7414007667711089,0.018324089632891706,-0.05121016594250124,0.01741400766771109 +karman_re200,sr,173,69.2,1.1009315252304077,0.4115474224090576,0.9048044085502625,0.4899819493293762,1.0048900842666626,0.2993605434894562,0.0034625804983079433,1.5068534594320226e-05,-0.008850520476698875,0.002114385599270463,0.00487800408154726,-0.005895210430026054,2.4425863577785196,-5.980614253640466,0.8818031073807656,0.024425863577785197,-0.05980614253640466,0.008818031073807657 +karman_re200,sr,174,69.6,1.0409717559814453,0.4125972092151642,0.9362174272537231,0.5040814280509949,1.0654869079589844,0.30494144558906555,0.0026206988841295242,-0.0025451118126511574,-0.008475072681903839,0.0033790781162679195,0.003394572762772441,-0.005472616758197546,2.6179708326651747,-5.9034556064267,0.9589617545945325,0.026179708326651747,-0.059034556064267,0.009589617545945325 +karman_re200,sr,175,70.0,0.9878567457199097,0.344299852848053,0.9589859843254089,0.48798033595085144,1.1223139762878418,0.2736142575740814,0.0003528098459355533,-0.004199111368507147,-0.005609378684312105,0.005441650748252869,0.0021599947940558195,-0.005522006191313267,2.2634905474656057,-4.800154533197128,2.062262827824104,0.022634905474656058,-0.04800154533197128,0.020622628278241042 +karman_re200,sr,176,70.4,0.9402743577957153,0.2419232577085495,0.9827328324317932,0.4050063192844391,1.1670912504196167,0.22346557676792145,-0.0016707483446225524,-0.005068906582891941,-0.0016788727371022105,0.006550708319991827,0.0007338090799748898,-0.006158476695418358,1.481586245350178,-3.48375237295325,3.378664988067983,0.01481586245350178,-0.0348375237295325,0.03378664988067983 +karman_re200,sr,177,70.8,0.9043367505073547,0.10675224661827087,1.0001431703567505,0.23952029645442963,1.2034938335418701,0.20353731513023376,-0.002399853663519025,-0.005228836089372635,0.0014231817331165075,0.00665681529790163,-0.0007587706204503775,-0.006507153622806072,0.4600880887681054,-3.1747319931458016,3.687685367875431,0.004600880887681054,-0.03174731993145802,0.03687685367875431 +karman_re200,sr,178,71.2,0.8816187977790833,-0.05586908012628555,0.9419988989830017,0.020730050280690193,1.2464221715927124,0.2748611867427826,-0.0014621838927268982,-0.005072551779448986,0.003728856798261404,0.006781308446079493,-0.00238655973225832,-0.00570639967918396,-0.41608896831321257,-3.333346274092675,3.529071086928557,-0.004160889683132126,-0.03333346274092675,0.03529071086928557 +karman_re200,sr,179,71.6,0.8971189856529236,-0.1835399866104126,0.8813294172286987,-0.24303953349590302,1.2138700485229492,0.038295067846775055,0.000620494014583528,-0.004349930677562952,0.005486262962222099,0.006803146563470364,-0.00460133608430624,-0.004012248013168573,-1.1661837394523644,-2.7283356267313317,4.1340817342899,-0.011661837394523644,-0.02728335626731332,0.041340817342899 +karman_re200,sr,180,72.0,0.9500589966773987,-0.2547144591808319,0.8778373003005981,-0.42245304584503174,1.158887505531311,-0.2941332161426544,0.002754506655037403,-0.0024331938475370407,0.005854380317032337,0.006366536486893892,-0.007237973157316446,-0.0023797389585524797,-1.9236619320150792,-1.6062655344013206,5.256151826619912,-0.01923661932015079,-0.016062655344013205,0.05256151826619912 +karman_re200,sr,181,72.4,1.0101944208145142,-0.29920268058776855,0.9070984125137329,-0.4950817823410034,1.0960839986801147,-0.42656445503234863,0.0034736529923975468,0.00031746114837005734,0.00468844547867775,0.005827265325933695,-0.008993911556899548,-0.002133913803845644,-2.496655731747948,-0.8242780833789518,6.03813927764228,-0.02496655731747948,-0.008242780833789518,0.0603813927764228 +karman_re200,sr,182,72.8,1.0694535970687866,-0.2997889816761017,0.9389871954917908,-0.5052134990692139,1.0367568731307983,-0.41497310996055603,0.002423226134851575,0.002779812552034855,0.0032321270555257797,0.00541315134614706,-0.008335599675774574,-0.003538595512509346,-2.6091668838321715,-1.0161597545372643,5.846257606483968,-0.026091668838321716,-0.010161597545372643,0.058462576064839684 +karman_re200,sr,183,73.2,1.1248582601547241,-0.26562023162841797,0.9634369611740112,-0.4844322204589844,0.9838829040527344,-0.34043121337890625,9.650574793340638e-05,0.004349200055003166,0.0020202230662107468,0.0055480580776929855,-0.005215104669332504,-0.0056303017772734165,-2.2059159419717327,-2.2054536919509555,4.656963669070277,-0.02205915941971733,-0.022054536919509555,0.04656963669070277 +karman_re200,sr,184,73.6,1.1692861318588257,-0.2152767926454544,0.9932631850242615,-0.3880312442779541,0.9379684329032898,-0.23203064501285553,-0.0018163967179134488,0.005134012550115585,0.0005873604095540941,0.006238891277462244,-0.0012528331717476249,-0.006623989436775446,-1.379746009562843,-3.4849870866958743,3.3774302743253575,-0.013797460095628431,-0.034849870866958746,0.033774302743253576 +karman_re200,sr,185,74.0,1.2086210250854492,-0.20227889716625214,1.0044301748275757,-0.22204452753067017,0.9033701419830322,-0.08940508961677551,-0.0023671232629567385,0.005236804019659758,-0.0009114464628510177,0.006515989080071449,0.0017415109323337674,-0.006712611299008131,-0.35091703422796894,-3.6830208599042167,3.179396501117016,-0.0035091703422796897,-0.036830208599042166,0.03179396501117016 +karman_re200,sr,186,74.4,1.2514797449111938,-0.26713791489601135,0.9367714524269104,0.0072088176384568214,0.8820472955703735,0.07707742601633072,-0.001265179831534624,0.005043314769864082,-0.0026121982373297215,0.0055880253203213215,0.0039723156951367855,-0.006838042289018631,0.505907612389808,-3.55977815888972,3.3026392021315116,0.00505907612389808,-0.035597781588897204,0.03302639202131512 +karman_re200,sr,187,74.8,1.2090191841125488,0.0031844156328588724,0.8810125589370728,0.2707225978374481,0.902876079082489,0.1970156878232956,0.0009004005114547908,0.004180197604000568,-0.004918589722365141,0.0038094690535217524,0.00560591509565711,-0.006785233039408922,1.255638604814282,-4.248583392786631,2.613833968234601,0.01255638604814282,-0.042485833927866305,0.02613833968234601 +karman_re200,sr,188,75.2,1.1499232053756714,0.3143935203552246,0.8818219900131226,0.4376660883426666,0.9570391774177551,0.26412078738212585,0.0029345923103392124,0.00212641479447484,-0.00754146883264184,0.0022627345751971006,0.005780875217169523,-0.006296068429946899,2.0069779913294865,-5.37703365143134,1.4853837095898927,0.020069779913294866,-0.0537703365143134,0.014853837095898928 +karman_re200,sr,189,75.6,1.0863820314407349,0.4254908263683319,0.9123371839523315,0.49818480014801025,1.0177459716796875,0.3040319085121155,0.0034451857209205627,-0.0006574172293767333,-0.009052380919456482,0.0022503193467855453,0.004526577889919281,-0.005778380669653416,2.5405139494168854,-6.068568957687406,0.793848403333826,0.025405139494168855,-0.060685689576874056,0.00793848403333826 +karman_re200,sr,190,76.0,1.028952956199646,0.40322715044021606,0.9431105256080627,0.5035452842712402,1.077938437461853,0.2993842363357544,0.0021798352245241404,-0.0030190348625183105,-0.00804879516363144,0.0038496730849146843,0.0031167727429419756,-0.005425035487860441,2.5894492849600965,-5.738175850465538,1.1242415105556942,0.025894492849600964,-0.05738175850465538,0.011242415105556942 +karman_re200,sr,191,76.4,0.9772657155990601,0.3254481554031372,0.9654589891433716,0.47807493805885315,1.1329227685928345,0.26203787326812744,-0.00018671654106583446,-0.004488082602620125,-0.004708157852292061,0.0058857654221355915,0.001877367845736444,-0.005657345522195101,2.1292259765812687,-4.461323809411755,2.4010935516094776,0.02129225976581269,-0.04461323809411755,0.024010935516094775 +karman_re200,sr,192,76.8,0.9325793981552124,0.21456409990787506,0.9939131140708923,0.37000080943107605,1.1752408742904663,0.21183007955551147,-0.00198452640324831,-0.005164491944015026,-0.0008353509474545717,0.006660160608589649,0.0003972534032072872,-0.006348768249154091,1.2558315441734658,-3.281846988095715,3.580570372925517,0.012558315441734658,-0.03281846988095715,0.03580570372925517 +karman_re200,sr,193,77.2,0.8987892270088196,0.0695011094212532,0.9961101412773132,0.19713185727596283,1.2143630981445312,0.21071279048919678,-0.0023300291504710913,-0.005204478278756142,0.002008024835959077,0.006695774849504232,-0.00110252748709172,-0.0064666997641325,0.23505237030811663,-3.2275920524388884,3.6348253085823443,0.0023505237030811664,-0.032275920524388886,0.03634825308582344 +karman_re200,sr,194,77.6,0.8803362250328064,-0.09440376609563828,0.9247695803642273,-0.04151110723614693,1.2497763633728027,0.26416945457458496,-0.0010680052218958735,-0.004978866316378117,0.004201394505798817,0.00682750204578042,-0.0028399559669196606,-0.0053865863010287285,-0.5931690052107266,-3.2814185683088164,3.5809987927124154,-0.005931690052107266,-0.032814185683088165,0.03580998792712416 +karman_re200,sr,195,78.0,0.9077868461608887,-0.20548665523529053,0.8764243125915527,-0.29505690932273865,1.1997957229614258,-0.04754357039928436,0.0011611100053414702,-0.003998321481049061,0.005729982163757086,0.0067461710423231125,-0.005198178347200155,-0.003579161362722516,-1.34275537636545,-2.489006997034438,4.373410363986794,-0.0134275537636545,-0.02489006997034438,0.04373410363986795 +karman_re200,sr,196,78.4,0.9642860293388367,-0.2698168456554413,0.8828391432762146,-0.4488162100315094,1.1419262886047363,-0.33653897047042847,0.003075247397646308,-0.0018503105966374278,0.005706846714019775,0.0062383427284657955,-0.007779630366712809,-0.002170887542888522,-2.0839534030759954,-1.3603298920917628,5.502087468929469,-0.020839534030759953,-0.013603298920917628,0.05502087468929469 +karman_re200,sr,197,78.8,1.0251737833023071,-0.30536994338035583,0.9148233532905579,-0.5015043020248413,1.078244686126709,-0.43130728602409363,0.003398429835215211,0.000954597198870033,0.004334436729550362,0.005721977911889553,-0.009064345620572567,-0.0023475249763578176,-2.5718134154159893,-0.7715367758391634,6.090880585182068,-0.025718134154159893,-0.007715367758391634,0.06090880585182069 +karman_re200,sr,198,79.2,1.0844159126281738,-0.29617196321487427,0.9446402788162231,-0.5043179392814636,1.021004319190979,-0.40063968300819397,0.001937109394930303,0.0032097676303237677,0.002951238537207246,0.005380443762987852,-0.007788568735122681,-0.004027995280921459,-2.555090405893702,-1.2246846361661428,5.6377327248550895,-0.02555090405893702,-0.012246846361661429,0.05637732724855089 +karman_re200,sr,199,79.6,1.1374870538711548,-0.2563207745552063,0.9669941663742065,-0.473530113697052,0.968975305557251,-0.3188048303127289,-0.00043221109081059694,0.004597784485667944,0.0017013439210131764,0.005675189662724733,-0.004283500369638205,-0.00597767997533083,-2.0480352472048207,-2.5468549344577203,4.3155624265635115,-0.020480352472048206,-0.025468549344577204,0.043155624265635115 +karman_re200,sr,200,80.0,1.1788372993469238,-0.20808091759681702,0.9989290833473206,-0.3535870611667633,0.9256139993667603,-0.203974649310112,-0.0020941647235304117,0.005202301777899265,0.0002290046395501122,0.0063680000603199005,-0.0004616699879989028,-0.006637187208980322,-1.1412841725629452,-3.6290043412290114,3.233413019792221,-0.011412841725629452,-0.03629004341229011,0.03233413019792221 +karman_re200,sr,201,80.4,1.2223533391952515,-0.2222326099872589,0.9925495386123657,-0.17994588613510132,0.8946303725242615,-0.05477131903171539,-0.0022436208091676235,0.005213045980781317,-0.001265546539798379,0.006390280090272427,0.00229948409833014,-0.006705049425363541,-0.13170869324767434,-3.60722770560754,3.255189655413692,-0.0013170869324767435,-0.0360722770560754,0.03255189655413692 +karman_re200,sr,202,80.8,1.2518080472946167,-0.24723245203495026,0.9172775149345398,0.07040281593799591,0.8805271983146667,0.10869991034269333,-0.0008249493548646569,0.004945754539221525,-0.003078073961660266,0.005219036713242531,0.004445693455636501,-0.006851501297205687,0.6798360733216708,-3.637033482210338,3.2253838788108937,0.0067983607332167085,-0.03637033482210338,0.03225383878810894 +karman_re200,sr,203,81.2,1.1967965364456177,0.10260304808616638,0.8762770295143127,0.32022419571876526,0.9126995801925659,0.21411055326461792,0.001449938165023923,0.0038120225071907043,-0.005528307985514402,0.003380659269168973,0.005815957207232714,-0.006704000290483236,1.434750221458313,-4.49866240556543,2.3637549554558026,0.01434750221458313,-0.044986624055654297,0.023637549554558025 +karman_re200,sr,204,81.6,1.1377938985824585,0.36044275760650635,0.8874953985214233,0.4619923532009125,0.9697623252868652,0.27591559290885925,0.003207642352208495,0.001524902880191803,-0.008070153184235096,0.002093043876811862,0.005591549910604954,-0.006164669990539551,2.163302783676913,-5.604311109610201,1.2581062514110308,0.02163302783676913,-0.05604311109610201,0.012581062514110309 +karman_re200,sr,205,82.0,1.0733933448791504,0.4322472810745239,0.920454204082489,0.5051790475845337,1.0303430557250977,0.30643823742866516,0.0033227233216166496,-0.001286816317588091,-0.00908425822854042,0.002472914522513747,0.004165593534708023,-0.005666476674377918,2.605228265796395,-6.093607917116149,0.7688094439050834,0.02605228265796395,-0.06093607917116149,0.007688094439050834 +karman_re200,sr,206,82.4,1.0171356201171875,0.39165255427360535,0.9505792856216431,0.5032380223274231,1.0899795293807983,0.29254087805747986,0.0016743796877563,-0.0034391770604997873,-0.007484155707061291,0.0043183802627027035,0.0028432097751647234,-0.0054006194695830345,2.526689980860779,-5.519449888736677,1.3429674722845548,0.02526689980860779,-0.05519449888736677,0.013429674722845548 +karman_re200,sr,207,82.8,0.9661551713943481,0.3053438663482666,0.9745140075683594,0.46438807249069214,1.1427369117736816,0.2500152289867401,-0.0006845031748525798,-0.0047242892906069756,-0.0037991225253790617,0.006199325434863567,0.0015703917015343904,-0.005797980818897486,1.969384364359899,-4.138875042239692,2.72354231878154,0.01969384364359899,-0.041388750422396925,0.0272354231878154 +karman_re200,sr,208,83.2,0.9237596392631531,0.1858138144016266,1.0067681074142456,0.33324822783470154,1.1829333305358887,0.2032352089881897,-0.0022075658198446035,-0.005223327316343784,-9.027423948282376e-05,0.0067056892439723015,6.595204467885196e-05,-0.006480279378592968,1.0239433649260246,-3.1687730910636374,3.6936442699575944,0.010239433649260245,-0.031687730910636376,0.036936442699575946 +karman_re200,sr,209,83.6,0.8925058841705322,0.031228888779878616,0.9884345531463623,0.15427584946155548,1.2275935411453247,0.227150559425354,-0.0021704910323023796,-0.005180416628718376,0.0025402235332876444,0.006737458519637585,-0.0014529733452945948,-0.006342956330627203,0.029791683257416192,-3.283815222283712,3.57860213873752,0.0002979168325741619,-0.03283815222283712,0.0357860213873752 +karman_re200,sr,210,84.0,0.8815694451332092,-0.12860189378261566,0.9105594754219055,-0.10418231040239334,1.2486728429794312,0.22654882073402405,-0.000614667369518429,-0.004855818580836058,0.004630770534276962,0.006857612170279026,-0.0033245279919356108,-0.00502720195800066,-0.7614855414989667,-3.1732472917379004,3.6891700692833322,-0.007614855414989668,-0.031732472917379004,0.036891700692833325 +karman_re200,sr,211,84.4,0.9193578958511353,-0.22451473772525787,0.8757675290107727,-0.34231531620025635,1.1881945133209229,-0.13448089361190796,0.0016870878171175718,-0.003591124899685383,0.005869308486580849,0.006651895120739937,-0.0058080218732357025,-0.0031776693649590015,-1.517041355639273,-2.2343201117359985,4.628097249285234,-0.015170413556392731,-0.022343201117359986,0.04628097249285234 +karman_re200,sr,212,84.8,0.9782767295837402,-0.2832809388637543,0.8908227682113647,-0.47003886103630066,1.127769947052002,-0.3719267249107361,0.003291183151304722,-0.0012190976412966847,0.005471299402415752,0.0061100926250219345,-0.008246657438576221,-0.002069567097350955,-2.2268168844868788,-1.1594440976083784,5.702973263412854,-0.022268168844868787,-0.011594440976083784,0.05702973263412854 +karman_re200,sr,213,85.2,1.0394866466522217,-0.3085806965827942,0.9238024353981018,-0.5056958794593811,1.0639605522155762,-0.428548663854599,0.0032146836165338755,0.0015637885080650449,0.003992532379925251,0.005624703597277403,-0.008981358259916306,-0.0026567159220576286,-2.6159556142473566,-0.789145833903221,6.0732715271180115,-0.026159556142473565,-0.00789145833903221,0.06073271527118012 +karman_re200,sr,214,85.6,1.098587989807129,-0.29059115052223206,0.9515060186386108,-0.5016509890556335,1.0081216096878052,-0.38191553950309753,0.001392324105836451,0.003598642535507679,0.0026859974022954702,0.005401741713285446,-0.007111578714102507,-0.004542894661426544,-2.474065376595145,-1.490468568318615,5.371948792702617,-0.02474065376595145,-0.014904685683186149,0.053719487927026174 +karman_re200,sr,215,86.0,1.1492478847503662,-0.245865598320961,0.9736740589141846,-0.45592230558395386,0.9570619463920593,-0.2930096387863159,-0.0009264196269214153,0.004806866403669119,0.0013757023261860013,0.0058444528840482235,-0.003351285820826888,-0.006251714192330837,-1.86835580143535,-2.869616414580135,3.9928009464410974,-0.0186835580143535,-0.02869616414580135,0.039928009464410975 +karman_re200,sr,216,86.4,1.1876295804977417,-0.2035873830318451,1.0046982765197754,-0.3156639337539673,0.9158494472503662,-0.17149421572685242,-0.002296219579875469,0.005233908072113991,-0.00011835506302304566,0.006471524015069008,0.00023838593915570527,-0.006648431532084942,-0.9014163934900451,-3.6975131411817124,3.1649042198395203,-0.00901416393490045,-0.03697513141181712,0.031649042198395205 +karman_re200,sr,217,86.8,1.2346436977386475,-0.24687501788139343,0.9777689576148987,-0.13047519326210022,0.8877362608909607,-0.016151225194334984,-0.002045147120952606,0.005170593038201332,-0.001633200328797102,0.006203724071383476,0.002804413205012679,-0.006717226468026638,0.0680289811594311,-3.546886894840023,3.3155304661812086,0.000680289811594311,-0.035468868948400234,0.03315530466181209 +karman_re200,sr,218,87.2,1.2432667016983032,-0.19127193093299866,0.901865541934967,0.13449148833751678,0.8827203512191772,0.1389158070087433,-0.0003571633715182543,0.004790819250047207,-0.003570885630324483,0.004816755652427673,0.004851074889302254,-0.006849333643913269,0.8462338941715395,-3.7669832213527763,3.0954341396684555,0.008462338941715395,-0.037669832213527765,0.030954341396684557 +karman_re200,sr,219,87.6,1.1854861974716187,0.18418419361114502,0.8749842643737793,0.3627878427505493,0.9245595335960388,0.22980377078056335,0.001946096308529377,0.0033769551664590836,-0.0061195348389446735,0.002989594591781497,0.0059114801697432995,-0.0065954579040408134,1.6060317990251094,-4.760292919023382,2.1021244419978506,0.016060317990251094,-0.04760292919023382,0.021021244419978508 +karman_re200,sr,220,88.0,1.1248998641967773,0.3927179276943207,0.8944863677024841,0.4789401888847351,0.9837854504585266,0.28633156418800354,0.0033691057469695807,0.0008949810289777815,-0.008472299203276634,0.002026394009590149,0.005316530354321003,-0.006042644381523132,2.2942630321612576,-5.789049862807633,1.0733674982135994,0.022942630321612575,-0.057890498628076326,0.010733674982135994 +karman_re200,sr,221,88.4,1.0610299110412598,0.4302263557910919,0.9281231164932251,0.5078461170196533,1.0441476106643677,0.3063831925392151,0.003084971336647868,-0.001857175724580884,-0.008930629119277,0.0027822712436318398,0.003813097719103098,-0.0055583263747394085,2.629470737749388,-6.0573982238479935,0.8050191371732383,0.026294707377493884,-0.060573982238479936,0.008050191371732383 +karman_re200,sr,222,88.8,1.0052237510681152,0.37540560960769653,0.9562469720840454,0.4997209310531616,1.1024516820907593,0.2844381630420685,0.0011218724539503455,-0.003790253307670355,-0.006774709094315767,0.004779656417667866,0.0025544988457113504,-0.005409997887909412,2.430174125470165,-5.24644584998368,1.6159715110375519,0.02430174125470165,-0.0524644584998368,0.01615971511037552 +karman_re200,sr,223,89.2,0.9551833271980286,0.281237930059433,0.9819847941398621,0.44349491596221924,1.1524981260299683,0.23780441284179688,-0.001139392494224012,-0.004903607536107302,-0.0028969382401555777,0.006396217737346888,0.0012310529127717018,-0.0059371646493673325,1.7790399962674175,-3.843383227557973,3.0190341334632587,0.017790399962674175,-0.038433832275579734,0.030190341334632588 +karman_re200,sr,224,89.6,0.9152703881263733,0.1538049280643463,1.0123670101165771,0.29578834772109985,1.1909964084625244,0.19868133962154388,-0.002349295886233449,-0.005249423906207085,0.0005820803926326334,0.0067085325717926025,-0.0002728398540057242,-0.006534886546432972,0.7871902322797119,-3.1310380467489525,3.7313793142722798,0.007871902322797119,-0.031310380467489525,0.0373137931427228 +karman_re200,sr,225,90.0,0.8870390057563782,-0.007360294461250305,0.9732486605644226,0.10381892323493958,1.239335060119629,0.24979262053966522,-0.0019178484799340367,-0.005152121651917696,0.0030479514971375465,0.006771700922399759,-0.0018305388512089849,-0.006127641070634127,-0.16302962932821308,-3.317663125873773,3.54475423514746,-0.0016302962932821308,-0.03317663125873773,0.0354475423514746 +karman_re200,sr,226,90.4,0.886522114276886,-0.156341090798378,0.8981666564941406,-0.16651035845279694,1.2380621433258057,0.15812569856643677,-0.00010842151823453605,-0.004683393519371748,0.005013844929635525,0.006855979561805725,-0.0038467475678771734,-0.00461970129981637,-0.9303072143858568,-3.010063808714125,3.852353552307107,-0.009303072143858568,-0.03010063808714125,0.03852353552307107 +karman_re200,sr,227,90.8,0.9319943785667419,-0.23945264518260956,0.8769000172615051,-0.3821157217025757,1.176811695098877,-0.2123030126094818,0.00218010856769979,-0.0031225066632032394,0.005906064063310623,0.006531432271003723,-0.006425907835364342,-0.0028075946029275656,-1.689677038504973,-1.9689266901568716,4.89349067086436,-0.01689677038504973,-0.019689266901568716,0.0489349067086436 +karman_re200,sr,228,91.2,0.9920036792755127,-0.2926586866378784,0.899086594581604,-0.48386257886886597,1.1150110960006714,-0.39942145347595215,0.0034197703935205936,-0.0005570256034843624,0.005159483756870031,0.005988590884953737,-0.00862843357026577,-0.002048976020887494,-2.351654222054443,-0.9962251413044517,5.866192219716781,-0.02351654222054443,-0.009962251413044517,0.05866192219716781 +karman_re200,sr,229,91.6,1.0530704259872437,-0.30715319514274597,0.9321406483650208,-0.5061194896697998,1.052961826324463,-0.42195141315460205,0.0029265242628753185,0.0021329147275537252,0.0036582667380571365,0.005535434931516647,-0.008765572682023048,-0.003029445419088006,-2.629296779307487,-0.8551303978691492,6.007286963152083,-0.02629296779307487,-0.008551303978691492,0.06007286963152083 +karman_re200,sr,230,92.0,1.111056923866272,-0.2814639210700989,0.9577010273933411,-0.49524399638175964,0.998311460018158,-0.36191508173942566,0.0008177568088285625,0.003956366330385208,0.0024116274435073137,0.0054644253104925156,-0.006324133835732937,-0.0050713177770376205,-2.36917296490898,-1.792564959679596,5.069852401341636,-0.0236917296490898,-0.01792564959679596,0.05069852401341637 +karman_re200,sr,231,92.4,1.15907883644104,-0.23301883041858673,0.9814831018447876,-0.4300555884838104,0.9490988254547119,-0.265109121799469,-0.001361964037641883,0.00496864877641201,0.001035619992762804,0.006033479701727629,-0.0024199446197599173,-0.006472702603787184,-1.665872259844543,-3.1741592443048945,3.6882581167163377,-0.01665872259844543,-0.031741592443048944,0.03688258116716338 +karman_re200,sr,232,92.8,1.1956846714019775,-0.2000112682580948,1.0070314407348633,-0.2745974063873291,0.9103696346282959,-0.1355729103088379,-0.002394109731540084,0.005234693177044392,-0.0004664607404265553,0.0065332697704434395,0.0008987588225863874,-0.006673987023532391,-0.6589613710921715,-3.7184125362871523,3.14400482473408,-0.006589613710921715,-0.03718412536287152,0.0314400482473408 +karman_re200,sr,233,93.2,1.2423028945922852,-0.2638591527938843,0.9604514837265015,-0.07224482297897339,0.8838836550712585,0.025651760399341583,-0.0017650084337219596,0.00512035982683301,-0.002036124700680375,0.005963199306279421,0.003299260511994362,-0.006758426316082478,0.2603415232997466,-3.523222410832788,3.339194950188445,0.002603415232997466,-0.03523222410832788,0.03339194950188445 +karman_re200,sr,234,93.6,1.2286560535430908,-0.11594755202531815,0.8904976844787598,0.1959918737411499,0.8897969126701355,0.16644850373268127,0.00015386439918074757,0.004565948620438576,-0.00411344924941659,0.004382157698273659,0.005206597503274679,-0.006836015731096268,1.0174351080885553,-3.9512003803107216,2.9112169807105106,0.010174351080885553,-0.03951200380310722,0.029112169807105105 +karman_re200,sr,235,94.0,1.1712255477905273,0.2457851767539978,0.8763306140899658,0.39756259322166443,0.9388590455055237,0.24460095167160034,0.002406379207968712,0.0028778817504644394,-0.006720453966408968,0.002635180950164795,0.00590788247063756,-0.006473368499428034,1.7772929970807183,-5.035764101574065,1.8266532594471667,0.017772929970807184,-0.05035764101574065,0.01826653259447167 +karman_re200,sr,236,94.4,1.1090294122695923,0.4121481776237488,0.9015471935272217,0.48836037516593933,0.9990012645721436,0.29495781660079956,0.003450600430369377,0.00023588657495565712,-0.008777381852269173,0.0020584932062774897,0.004979423712939024,-0.0059290481731295586,2.408169670164051,-5.940964565672606,0.9214527953486263,0.02408169670164051,-0.05940964565672606,0.009214527953486264 +karman_re200,sr,237,94.8,1.0476001501083374,0.4211682975292206,0.9342260956764221,0.506060004234314,1.0591399669647217,0.30415648221969604,0.0027521224692463875,-0.002377786673605442,-0.008631500415503979,0.0031828603241592646,0.00347527046687901,-0.0054696486331522465,2.6233638995625643,-5.962129325272916,0.9002880357483161,0.026233638995625645,-0.05962129325272916,0.00900288035748316 +karman_re200,sr,238,95.2,0.9929183721542358,0.3551105260848999,0.9589580297470093,0.4919602572917938,1.1156634092330933,0.2751392424106598,0.0005457343067973852,-0.004106168635189533,-0.005933152046054602,0.005252447910606861,0.0022517889738082886,-0.005465400405228138,2.308709352805197,-4.926518730619152,1.9358986304020807,0.02308709352805197,-0.04926518730619152,0.019358986304020807 +karman_re200,sr,239,95.6,0.9448367953300476,0.25371140241622925,0.9853817820549011,0.4153972566127777,1.1624277830123901,0.22561834752559662,-0.0015418551629409194,-0.005041498690843582,-0.0019778930582106113,0.006522627081722021,0.000865268288180232,-0.006087037269026041,1.56083319559748,-3.57045637744462,3.2919609835766117,0.015608331955974799,-0.0357045637744462,0.03291960983576612 +karman_re200,sr,240,96.0,0.9081474542617798,0.11914485692977905,1.0076903104782104,0.255389928817749,1.2002382278442383,0.19929830729961395,-0.0023903169203549623,-0.0052481903694570065,0.0012336816871538758,0.006690450944006443,-0.0006297627696767449,-0.006527193821966648,0.5421786912229688,-3.1463804687833927,3.71603689223784,0.005421786912229688,-0.03146380468783393,0.0371603689223784 +karman_re200,sr,241,96.4,0.8833450078964233,-0.04511237144470215,0.9520216584205627,0.04346178472042084,1.2467268705368042,0.2681314945220947,-0.001578985946252942,-0.005107536446303129,0.003568652318790555,0.006798665039241314,-0.0022496546152979136,-0.00583647983148694,-0.3553508766055922,-3.3244563351457743,3.537961025875458,-0.003553508766055922,-0.03324456335145774,0.03537961025875458 +karman_re200,sr,242,96.8,0.8947635889053345,-0.17854100465774536,0.8868664503097534,-0.22557733952999115,1.2216169834136963,0.06902223825454712,0.0004479274502955377,-0.0044428156688809395,0.005369980353862047,0.006826030556112528,-0.004425332881510258,-0.004170029889792204,-1.109526211961929,-2.8020445355117887,4.060372825509443,-0.01109526211961929,-0.028020445355117888,0.04060372825509443 +karman_re200,sr,243,97.2,0.9456984996795654,-0.2519763112068176,0.8786765336990356,-0.4142478108406067,1.1638222932815552,-0.27559396624565125,0.002633790485560894,-0.002600011182948947,0.005870751105248928,0.006400909274816513,-0.007060219068080187,-0.0024712001904845238,-1.8679242797158913,-1.6944740322594756,5.167943328761757,-0.018679242797158914,-0.016944740322594756,0.051679433287617565 +karman_re200,sr,244,97.6,1.005604863166809,-0.2985929250717163,0.9060105085372925,-0.4923526644706726,1.1007874011993408,-0.4188457429409027,0.0034759745467454195,0.00011415244080126286,0.0048078736290335655,0.005870027933269739,-0.008929591625928879,-0.002107146428897977,-2.4658806274637124,-0.8616076970282105,6.000809663993022,-0.024658806274637124,-0.008616076970282105,0.06000809663993022 +karman_re200,sr,245,98.0,1.0661098957061768,-0.30238133668899536,0.9384887218475342,-0.5044614672660828,1.0415281057357788,-0.413956880569458,0.00255120312795043,0.0026429349090903997,0.0033459991682320833,0.005455990321934223,-0.008447131142020226,-0.0034534381702542305,-2.6196757852351102,-0.9706947323120604,5.8917226287091715,-0.026196757852351104,-0.009706947323120604,0.058917226287091715 +karman_re200,sr,246,98.4,1.1225062608718872,-0.2699666917324066,0.9624778032302856,-0.48612895607948303,0.9885337352752686,-0.34272992610931396,0.00025260981055907905,0.0042689950205385685,0.0021269514691084623,0.0055547733791172504,-0.005462185945361853,-0.005557885859161615,-2.2488994390526416,-2.1217580652098036,4.740659295811429,-0.022488994390526415,-0.021217580652098035,0.04740659295811429 +karman_re200,sr,247,98.8,1.1675585508346558,-0.2194138467311859,0.9890510439872742,-0.39799007773399353,0.9417857527732849,-0.2374839335680008,-0.0017301355255767703,0.005094494204968214,0.0006901855231262743,0.00621968787163496,-0.0015136712463572621,-0.006621839478611946,-1.4472159999333172,-3.43324390286714,3.4291734581540916,-0.014472159999333172,-0.034332439028671405,0.03429173458154092 +karman_re200,sr,248,99.2,1.2048474550247192,-0.19986675679683685,1.0040717124938965,-0.23200839757919312,0.9057772159576416,-0.09853272140026093,-0.0023988871835172176,0.005224631633609533,-0.0008145712199620903,0.006539830006659031,0.001534891314804554,-0.006699920166283846,-0.4202660466097957,-3.6941719540305833,3.168245406990649,-0.0042026604660979575,-0.03694171954030583,0.03168245406990649 +karman_re200,sr,249,99.6,1.2478065490722656,-0.2688375413417816,0.9411689043045044,-0.009729612618684769,0.8819741010665894,0.06650301069021225,-0.0014075473882257938,0.0050493646413087845,-0.0024698234628885984,0.005675130058079958,0.00380418892018497,-0.006811897270381451,0.44803244240577395,-3.5358901779929446,3.326527183028288,0.004480324424057739,-0.035358901779929446,0.03326527183028288 +karman_re200,sr,250,100.0,1.2121161222457886,-0.03152083978056908,0.8818379044532776,0.2529480755329132,0.8998176455497742,0.19013364613056183,0.0007047519902698696,0.004277436528354883,-0.00470639206469059,0.003937553148716688,0.005520592909306288,-0.006802827585488558,1.1964272892530776,-4.174530408413284,2.6878869526079474,0.011964272892530776,-0.041745304084132843,0.026878869526079475 +karman_re200,sr,251,100.4,1.1539555788040161,0.29655247926712036,0.8794090151786804,0.42735493183135986,0.9536225199699402,0.2593141794204712,0.0028131366707384586,0.002324744127690792,-0.007330314721912146,0.0023439177311956882,0.005830772686749697,-0.006343745160847902,1.9502422313799832,-5.304785541462286,1.5576318195589456,0.019502422313799832,-0.05304785541462287,0.015576318195589457 +karman_re200,sr,252,100.8,1.09059476852417,0.4233103096485138,0.9084869623184204,0.4951077401638031,1.013992190361023,0.3020181655883789,0.003468761220574379,-0.00042764292447827756,-0.00898888148367405,0.0021880369167774916,0.004628990776836872,-0.005817099008709192,2.5097629986273904,-6.046659411449744,0.8157579495714882,0.025097629986273906,-0.06046659411449744,0.008157579495714882 +karman_re200,sr,253,101.2,1.0323290824890137,0.4089559316635132,0.9394954442977905,0.5040028095245361,1.0740352869033813,0.30075541138648987,0.0023328945972025394,-0.0028542857617139816,-0.00821107067167759,0.003651021048426628,0.0031824144534766674,-0.005413316655904055,2.5968699134215134,-5.804219333570602,1.0581980274506297,0.025968699134215133,-0.058042193335706024,0.010581980274506297 +karman_re200,sr,254,101.6,0.9795776605606079,0.3339630961418152,0.9615180492401123,0.48231834173202515,1.1289252042770386,0.26537537574768066,-8.533690561307594e-06,-0.004392479080706835,-0.005021748598664999,0.005694338120520115,0.0019518706249073148,-0.005574442911893129,2.1726888139732456,-4.583557729506568,2.2788596315146648,0.021726888139732458,-0.04583557729506568,0.02278859631514665 +karman_re200,sr,255,102.0,0.93387770652771,0.2257363200187683,0.9891882538795471,0.38244885206222534,1.1719825267791748,0.2151833027601242,-0.0018778917146846652,-0.005141541361808777,-0.0011049227323383093,0.006599109619855881,0.0005040935939177871,-0.006251838989555836,1.3298393172527374,-3.352810295441585,3.5096070655796474,0.013298393172527375,-0.03352810295441585,0.03509607065579647 +karman_re200,sr,256,102.4,0.9005846381187439,0.08391163498163223,0.9982128739356995,0.21293938159942627,1.2114101648330688,0.20863410830497742,-0.0023489641025662422,-0.005227386951446533,0.0018422896973788738,0.006678916048258543,-0.0009837057441473007,-0.006472072098404169,0.3068325218452081,-3.204131577853985,3.658285783167247,0.003068325218452081,-0.03204131577853985,0.03658285783167247 +karman_re200,sr,257,102.8,0.8808868527412415,-0.0806485265493393,0.9303261637687683,-0.019856959581375122,1.250352382659912,0.26959359645843506,-0.0011838591890409589,-0.005032161250710487,0.004072994459420443,0.006823120638728142,-0.0026934314519166946,-0.005501277279108763,-0.5389052266884996,-3.2959553053708794,3.5664620556503523,-0.005389052266884996,-0.0329595530537088,0.035664620556503525 +karman_re200,sr,258,103.2,0.9040820598602295,-0.19809608161449432,0.8781054615974426,-0.27938950061798096,1.2055480480194092,-0.026421451941132545,0.0010062339715659618,-0.004127462860196829,0.005663935095071793,0.006769421510398388,-0.0050262087024748325,-0.0037226537242531776,-1.2903284400383928,-2.5668673453135264,4.295550015707706,-0.012903284400383928,-0.025668673453135265,0.04295550015707706 +karman_re200,sr,259,103.6,0.9591364860534668,-0.26470065116882324,0.8818280696868896,-0.4419431686401367,1.1489735841751099,-0.32696762681007385,0.002994278911501169,-0.002029884373769164,0.005759744439274073,0.006272077560424805,-0.007645637262612581,-0.0022169286385178566,-2.038564635277089,-1.4389549712129237,5.423462389808309,-0.020385646352770893,-0.014389549712129237,0.05423462389808309 +karman_re200,sr,260,104.0,1.0191245079040527,-0.3031458258628845,0.9128948450088501,-0.5000447630882263,1.0849567651748657,-0.4309358596801758,0.0034399668220430613,0.000767499499488622,0.004452109336853027,0.005752547178417444,-0.009089413098990917,-0.0022578295320272446,-2.556348874009385,-0.7795837295834853,6.082833631437747,-0.025563488740093853,-0.007795837295834853,0.06082833631437747 +karman_re200,sr,261,104.4,1.078877568244934,-0.2969326078891754,0.9442794322967529,-0.5042698979377747,1.0276703834533691,-0.4048219323158264,0.0021018681582063437,0.003091053105890751,0.003059245878830552,0.005399450194090605,-0.007994337938725948,-0.003902261843904853,-2.5823103288711704,-1.146044636952901,5.716372724068331,-0.025823103288711704,-0.011460446369529009,0.05716372724068331 +karman_re200,sr,262,104.8,1.1334432363510132,-0.2586590647697449,0.9681606888771057,-0.4763319492340088,0.9760761857032776,-0.32463547587394714,-0.00026786664966493845,0.004535071086138487,0.001827976549975574,0.005665091332048178,-0.004568525590002537,-0.005935308523476124,-2.107871090444377,-2.452210852799996,4.410206508221236,-0.02107871090444377,-0.02452210852799996,0.044102065082212365 +karman_re200,sr,263,105.2,1.1756088733673096,-0.20886535942554474,0.9990419745445251,-0.36352023482322693,0.9316563606262207,-0.2112334817647934,-0.0020240377634763718,0.00518447021022439,0.0003511018003337085,0.00637209415435791,-0.0006954954587854445,-0.0066828797571361065,-1.2197855612593527,-3.6079012411929128,3.254516119828319,-0.012197855612593527,-0.03607901241192913,0.03254516119828319 +karman_re200,sr,264,105.6,1.2169758081436157,-0.2105129361152649,0.9979438781738281,-0.1917198896408081,0.8986668586730957,-0.06290189176797867,-0.002304046880453825,0.005209991242736578,-0.0011565532768145204,0.00646662013605237,0.0021145143546164036,-0.006723849568516016,-0.1995816146372031,-3.6344285559296585,3.2279888050915737,-0.001995816146372031,-0.036344285559296585,0.03227988805091574 +karman_re200,sr,265,106.0,1.2519100904464722,-0.25728291273117065,0.9236330986022949,0.05176490172743797,0.8809778690338135,0.1020435020327568,-0.0009876943659037352,0.004962803330272436,-0.002925668843090534,0.005343170836567879,0.004282314796000719,-0.00685123959556222,0.6237785870162977,-3.5994086638820475,3.2630086971391843,0.006237785870162977,-0.03599408663882048,0.032630086971391845 +karman_re200,sr,266,106.4,1.1981744766235352,0.062365349382162094,0.877113938331604,0.3048073649406433,0.9098739624023438,0.21032026410102844,0.001259283279068768,0.0039288438856601715,-0.005317737348377705,0.0035142172127962112,0.005754292476922274,-0.006733840797096491,1.3745316074868448,-4.417321108456331,2.4450962525649014,0.013745316074868449,-0.04417321108456331,0.024450962525649014 +karman_re200,sr,267,106.8,1.138871192932129,0.34212997555732727,0.8851562738418579,0.4538099765777588,0.9669311046600342,0.2734304368495941,0.0031246140133589506,0.001730588497593999,-0.007883594371378422,0.0021487954072654247,0.005669272039085627,-0.006212572567164898,2.1113886651150313,-5.536491222072468,1.3259261389487644,0.021113886651150313,-0.05536491222072468,0.013259261389487645 +karman_re200,sr,268,107.2,1.0748285055160522,0.4287310540676117,0.917052686214447,0.5022274255752563,1.0278575420379639,0.3070146143436432,0.0033722305670380592,-0.0010746894404292107,-0.009057383984327316,0.0024117270950227976,0.00428409781306982,-0.00570793729275465,2.584473576243889,-6.088475557686108,0.7739418033351249,0.02584473576243889,-0.06088475557686108,0.0077394180333512485 +karman_re200,sr,269,107.6,1.0182852745056152,0.39495548605918884,0.9463511109352112,0.5034658908843994,1.0875741243362427,0.29612720012664795,0.0018387238960713148,-0.0032884497195482254,-0.00766025623306632,0.004152461886405945,0.002918507670983672,-0.005399797577410936,2.5441634359126772,-5.58657051114249,1.2758468498787416,0.025441634359126775,-0.055865705111424906,0.012758468498787416 +karman_re200,sr,270,108.0,0.9669840335845947,0.3121838867664337,0.9681905508041382,0.4703139364719391,1.140769600868225,0.25514286756515503,-0.0005258597666397691,-0.00464068166911602,-0.004097513388842344,0.006058656144887209,0.001649877754971385,-0.005727233365178108,2.0173249666380877,-4.246830129721271,2.615587231299961,0.02017324966638088,-0.04246830129721271,0.026155872312999612 +karman_re200,sr,271,108.4,0.9235703945159912,0.19674837589263916,0.998617947101593,0.34641656279563904,1.180800199508667,0.20758205652236938,-0.0021444193553179502,-0.005205336958169937,-0.00033314956817775965,0.006646766792982817,0.00016208838496822864,-0.006406118161976337,1.0960028744956931,-3.2144943430334574,3.6479230179877744,0.010960028744956931,-0.032144943430334576,0.036479230179877746 +karman_re200,sr,272,108.8,0.8928810954093933,0.04703264683485031,0.9886972904205322,0.16957637667655945,1.2241365909576416,0.22683891654014587,-0.0022233137860894203,-0.00519588403403759,0.0023805061355233192,0.006694964598864317,-0.0013354429975152016,-0.006361240055412054,0.09443975651310882,-3.2738507322153003,3.5885666288059315,0.0009443975651310882,-0.032738507322153006,0.035885666288059316 +karman_re200,sr,273,109.2,0.8803547620773315,-0.1144895926117897,0.9133018255233765,-0.08279647678136826,1.2495567798614502,0.24147415161132812,-0.0007539840298704803,-0.004911934956908226,0.0045164511539042,0.0068432348780334,-0.0031576594337821007,-0.005138109438121319,-0.7086155839025652,-3.2129892406833225,3.6494281203379093,-0.007086155839025652,-0.03212989240683323,0.036494281203379095 +karman_re200,sr,274,109.6,0.9144670367240906,-0.21674402058124542,0.874600350856781,-0.3276843726634979,1.193326711654663,-0.11607062071561813,0.0015315308701246977,-0.0037406692281365395,0.0058458112180233,0.006684098858386278,-0.005617745686322451,-0.0033077041152864695,-1.4634200201173242,-2.3162426834529075,4.546174677568325,-0.014634200201173243,-0.023162426834529074,0.04546174677568325 +karman_re200,sr,275,110.0,0.972644567489624,-0.2776969075202942,0.8878980278968811,-0.464969277381897,1.1348671913146973,-0.36667582392692566,0.0032356265000998974,-0.0014252769760787487,0.005553257651627064,0.0061479671858251095,-0.008130395784974098,-0.002076918724924326,-2.1860512021408876,-1.2234149058808783,5.6390024551403535,-0.021860512021408877,-0.012234149058808784,0.05639002455140354 +karman_re200,sr,276,110.4,1.0332351922988892,-0.3064998984336853,0.9211403727531433,-0.5060609579086304,1.0705113410949707,-0.4336405098438263,0.0032907086424529552,0.0013772670645266771,0.004097105469554663,0.005642569623887539,-0.009057223796844482,-0.002513607731088996,-2.6094141019548123,-0.769187165828074,6.093230195193158,-0.026094141019548125,-0.00769187165828074,0.060932301951931576 +karman_re200,sr,277,110.8,1.0920220613479614,-0.2912527322769165,0.9504757523536682,-0.5036037564277649,1.0137355327606201,-0.3908214867115021,0.001579154864884913,0.0034896922297775745,0.0027792162727564573,0.005384383723139763,-0.007377164904028177,-0.004363691434264183,-2.508474249843668,-1.3852089933910654,5.477208367630167,-0.02508474249843668,-0.013852089933910655,0.054772083676301674 +karman_re200,sr,278,111.2,1.1442968845367432,-0.24800333380699158,0.9750463962554932,-0.46217983961105347,0.9628341197967529,-0.30315709114074707,-0.0007625994039699435,0.004753442481160164,0.0015030070208013058,0.005794825032353401,-0.003660347778350115,-0.006200301460921764,-1.9367783896544688,-2.763787287974267,4.098630073046965,-0.01936778389654469,-0.02763787287974267,0.04098630073046965 +karman_re200,sr,279,111.6,1.1842385530471802,-0.20278625190258026,1.0081037282943726,-0.3279082179069519,0.9208287000656128,-0.18237470090389252,-0.0022338302806019783,0.00524107413366437,9.949252671503928e-06,0.006469264626502991,2.5759592972462997e-05,-0.006688167341053486,-0.9846296450524817,-3.696346024590964,3.1660713364302686,-0.009846296450524818,-0.03696346024590964,0.031660713364302685 +karman_re200,sr,280,112.0,1.2307332754135132,-0.23326198756694794,0.9862005114555359,-0.14843183755874634,0.8908634185791016,-0.02668159268796444,-0.0021260154899209738,0.0051879906095564365,-0.0015117042930796742,0.006303067784756422,0.0026436680927872658,-0.006738182157278061,0.0030149641781832834,-3.5743471720693467,3.288070188951885,3.0149641781832836e-05,-0.03574347172069347,0.03288070188951885 +karman_re200,sr,281,112.4,1.2485377788543701,-0.21406488120555878,0.9085648059844971,0.1142168939113617,0.8821955323219299,0.13244624435901642,-0.0005189101211726665,0.004839403089135885,-0.0034115342423319817,0.0049634529277682304,0.0047088973224163055,-0.006864209659397602,0.7924117161248484,-3.7157260062375395,3.146691354783693,0.007924117161248485,-0.037157260062375394,0.031466913547836935 +karman_re200,sr,282,112.8,1.187795639038086,0.15423288941383362,0.8762061595916748,0.3506147861480713,0.9208618998527527,0.2269657701253891,0.0017873335164040327,0.0035167657770216465,-0.005927967373281717,0.003114734310656786,0.005880718119442463,-0.006631535477936268,1.5485315188073319,-4.674096197662767,2.1883211633584656,0.015485315188073319,-0.046740961976627665,0.021883211633584657 +karman_re200,sr,283,113.2,1.127081036567688,0.3795735538005829,0.8928374648094177,0.47402888536453247,0.9797868132591248,0.2848353087902069,0.0033235664013773203,0.0010874371509999037,-0.008340472355484962,0.002051006071269512,0.005415404215455055,-0.006085202097892761,2.2518657457256834,-5.730812937269381,1.1316044237518517,0.022518657457256834,-0.057308129372693806,0.011316044237518516 +karman_re200,sr,284,113.6,1.0634574890136719,0.4280377924442291,0.9263187646865845,0.506638765335083,1.0410733222961426,0.3082377314567566,0.0031685326248407364,-0.0016802841564640403,-0.008969835005700588,0.00271030911244452,0.003935950342565775,-0.005605954676866531,2.6231867443345944,-6.069132724023897,0.7932846369973352,0.026231867443345946,-0.060691327240238964,0.007932846369973353 +karman_re200,sr,285,114.0,1.0076104402542114,0.3782097101211548,0.9540278911590576,0.5007349848747253,1.0999847650527954,0.28872445225715637,0.0012950784293934703,-0.0036712789442390203,-0.006982030812650919,0.00466086296364665,0.002650209702551365,-0.005422137212008238,2.4610779891932757,-5.324644945251343,1.5377724157698887,0.024610779891932756,-0.05324644945251343,0.015377724157698888 +karman_re200,sr,286,114.4,0.9572851061820984,0.28750383853912354,0.9774695634841919,0.45127660036087036,1.1508375406265259,0.24315467476844788,-0.0010102331871166825,-0.0048454259522259235,-0.003175962483510375,0.006336440332233906,0.0013286832254379988,-0.005899268202483654,1.8368270104356286,-3.9289989788024537,2.9334183822187785,0.018368270104356287,-0.03928998978802454,0.029334183822187786 +karman_re200,sr,287,114.8,0.9163567423820496,0.16397006809711456,1.0078715085983276,0.3078131377696991,1.1889492273330688,0.2015882283449173,-0.0023217059206217527,-0.005235356278717518,0.00036190159153193235,0.006681472063064575,-0.0001770361268427223,-0.0065132551826536655,0.8590166428652097,-3.145345806071323,3.717071554949909,0.008590166428652098,-0.03145345806071323,0.03717071554949909 +karman_re200,sr,288,115.2,0.8873037099838257,0.006453674286603928,0.976157009601593,0.1196785643696785,1.2354652881622314,0.2468760907649994,-0.0020095331128686666,-0.005155431572347879,0.002882447326555848,0.006736031733453274,-0.0017070465255528688,-0.006181840319186449,-0.10277311457191393,-3.3212131943140357,3.5412041667071965,-0.0010277311457191393,-0.033212131943140356,0.035412041667071965 +karman_re200,sr,289,115.6,0.8840126991271973,-0.14600373804569244,0.9005085825920105,-0.14617201685905457,1.2412360906600952,0.18264131247997284,-0.0002790238650050014,-0.004743780940771103,0.004904210567474365,0.0068501634523272514,-0.003663544310256839,-0.004740342032164335,-0.8751968203531215,-3.0688279615878535,3.7935893994333787,-0.008751968203531215,-0.030688279615878535,0.03793589399433379 +karman_re200,sr,290,116.0,0.9275248050689697,-0.2335672527551651,0.8753266930580139,-0.3691883385181427,1.1817059516906738,-0.19131076335906982,0.0020256037823855877,-0.003287246450781822,0.0059141977690160275,0.00657421350479126,-0.006215894129127264,-0.0029242432210594416,-1.6338341586643597,-2.051615667420066,4.810801693601166,-0.016338341586643598,-0.020516156674200658,0.04810801693601167 +karman_re200,sr,291,116.4,0.9871716499328613,-0.2888619601726532,0.8955637216567993,-0.48017796874046326,1.1205576658248901,-0.39409932494163513,0.003385495161637664,-0.0007800846360623837,0.005261323880404234,0.006028319709002972,-0.008513882756233215,-0.002040519379079342,-2.313156570624531,-1.0445263512375917,5.81789100978364,-0.02313156570624531,-0.010445263512375918,0.0581789100978364 +karman_re200,sr,292,116.8,1.0481070280075073,-0.30701208114624023,0.9290940165519714,-0.5070946216583252,1.0575226545333862,-0.4274076521396637,0.0030288202688097954,0.0019464466022327542,0.0037496639415621758,0.005546985659748316,-0.0088625093922019,-0.0028636842034757137,-2.6268729050705626,-0.8236223605565737,6.038795000464658,-0.026268729050705625,-0.008236223605565737,0.060387950004646584 +karman_re200,sr,293,117.2,1.1058224439620972,-0.28374314308166504,0.9555490016937256,-0.4984682500362396,1.0016168355941772,-0.37103521823883057,0.0010084545938298106,0.0038425286766141653,0.0024910178035497665,0.0054162051528692245,-0.006610995624214411,-0.004851971752941608,-2.4050874355962146,-1.6766222943303444,5.185795066690888,-0.02405087435596215,-0.016766222943303443,0.05185795066690888 +karman_re200,sr,294,117.6,1.1548949480056763,-0.23650716245174408,0.9801111817359924,-0.4395509660243988,0.9516171813011169,-0.2762577533721924,-0.0012187075335532427,0.004925967194139957,0.0011514927027747035,0.0059480746276676655,-0.0027344918344169855,-0.006394388619810343,-1.7357149758748434,-3.0622615986138184,3.800155762407414,-0.017357149758748434,-0.030622615986138184,0.03800155762407414 +karman_re200,sr,295,118.0,1.1930551528930664,-0.20007815957069397,1.009488821029663,-0.2892109453678131,0.912588357925415,-0.14860612154006958,-0.002362695522606373,0.005248870700597763,-0.0003429360222071409,0.006514119450002909,0.0006977961747907102,-0.006677295081317425,-0.7410406071965686,-3.7230493355159306,3.139368025505301,-0.0074104060719656865,-0.03723049335515931,0.031393680255053014 +karman_re200,sr,296,118.4,1.2411845922470093,-0.2579539120197296,0.9679378271102905,-0.09373091906309128,0.885454535484314,0.012001392431557178,-0.001856934279203415,0.005148830823600292,-0.0019012638367712498,0.006061223801225424,0.003150259843096137,-0.0067623816430568695,0.1984631724112965,-3.537907739832311,3.3245096211889207,0.001984631724112965,-0.03537907739832311,0.03324509621188921 +karman_re200,sr,297,118.8,1.2351964712142944,-0.1396603137254715,0.8951093554496765,0.1767827421426773,0.8874591588973999,0.15862879157066345,-4.690949481300777e-06,0.0046539888717234135,-0.003945440519601107,0.004536882974207401,0.00509282760322094,-0.006849218159914017,0.9633039295884667,-3.8896894080357063,2.9727279529855264,0.009633039295884667,-0.03889689408035706,0.029727279529855266 +karman_re200,sr,298,119.2,1.1766530275344849,0.22854797542095184,0.8768312335014343,0.3881256580352783,0.9340932965278625,0.24056269228458405,0.002275136997923255,0.0030383793637156487,-0.006545467767864466,0.0027410006150603294,0.005910913459956646,-0.006508929654955864,1.7235590192496568,-4.943223600653931,1.9191937603673017,0.01723559019249657,-0.04943223600653931,0.019191937603673017 +karman_re200,sr,299,119.6,1.1142916679382324,0.406070351600647,0.8999851942062378,0.48612120747566223,0.9935513138771057,0.29282045364379883,0.003436197293922305,0.0004341403255239129,-0.008704186417162418,0.0020386409014463425,0.005092400126159191,-0.005963276606053114,2.3753785482654797,-5.895023166221671,0.9673941947995611,0.023753785482654798,-0.05895023166221671,0.009673941947995611 +karman_re200,sr,300,120.0,1.052560567855835,0.4226258397102356,0.9335076808929443,0.506450355052948,1.0543856620788574,0.30546435713768005,0.002866151975467801,-0.0022293690126389265,-0.008742934092879295,0.0030776425264775753,0.003594997338950634,-0.005509907379746437,2.6309499617030334,-5.997492227192553,0.8649251338286793,0.026309499617030333,-0.05997492227192553,0.008649251338286793 +karman_re200,sr,301,120.4,0.9979550838470459,0.3597477078437805,0.9595151543617249,0.49387404322624207,1.1120147705078125,0.2784692943096161,0.000723177392501384,-0.0040196944028139114,-0.006192952394485474,0.005155939608812332,0.002365539316087961,-0.005471944808959961,2.3527906795018407,-5.021644518106921,1.840772842914311,0.023527906795018406,-0.050216445181069214,0.01840772842914311 +karman_re200,sr,302,120.8,0.9490913152694702,0.2607555389404297,0.9848586916923523,0.424265593290329,1.1597174406051636,0.2295590341091156,-0.001429084804840386,-0.005000267177820206,-0.0022547217085957527,0.006526106037199497,0.0009857704862952232,-0.006070669740438461,1.6320677123624094,-3.637841603116116,3.224575757905116,0.016320677123624096,-0.03637841603116116,0.03224575757905116 +karman_re200,sr,303,121.2,0.9110814929008484,0.12849965691566467,1.0095539093017578,0.2671276032924652,1.1970771551132202,0.19773907959461212,-0.0024001458659768105,-0.00524040125310421,0.0010231833439320326,0.00670158676803112,-0.0005227303481660783,-0.006555863190442324,0.6179479822256679,-3.133403033589636,3.7290143274315968,0.006179479822256679,-0.03133403033589636,0.03729014327431597 +karman_re200,sr,304,121.6,0.8841394186019897,-0.03489186614751816,0.9585443735122681,0.061493754386901855,1.243613600730896,0.26211678981781006,-0.0017058557132259011,-0.005107034929096699,0.003388904733583331,0.00678441533818841,-0.002113697351887822,-0.005931593012064695,-0.2947991197859374,-3.3359213601891935,3.526496000832039,-0.0029479911978593744,-0.03335921360189194,0.03526496000832039 +karman_re200,sr,305,122.0,0.8918249011039734,-0.17244209349155426,0.8895898461341858,-0.2070762813091278,1.22609543800354,0.1039019227027893,0.00025050670956261456,-0.004517178982496262,0.0052575357258319855,0.00683596869930625,-0.004224111791700125,-0.0043085673823952675,-1.0493226495248673,-2.8735559278728804,3.988861433148352,-0.010493226495248673,-0.028735559278728805,0.03988861433148352 +karman_re200,sr,306,122.4,0.9420109391212463,-0.2482517659664154,0.8774504065513611,-0.40360891819000244,1.1671595573425293,-0.25316324830055237,0.0024855805095285177,-0.0027700564824044704,0.005892689805477858,0.006445768289268017,-0.0068361456505954266,-0.002576143480837345,-1.8081095707842334,-1.7785639757199125,5.08385338530132,-0.018081095707842335,-0.017785639757199125,0.0508385338530132 +karman_re200,sr,307,122.8,1.0020761489868164,-0.2971573770046234,0.903031587600708,-0.48918136954307556,1.1044723987579346,-0.41238442063331604,0.0034618794452399015,-0.00011308891407679766,0.004922511987388134,0.0059118811041116714,-0.008819615468382835,-0.002086242428049445,-2.4273344026454793,-0.9008962578693747,5.961521103151858,-0.024273344026454792,-0.009008962578693746,0.05961521103151858 +karman_re200,sr,308,123.2,1.0626786947250366,-0.3044288754463196,0.935361921787262,-0.5049989223480225,1.0441515445709229,-0.4170304238796234,0.0026789335533976555,0.0024672122672200203,0.003429864067584276,0.005470015574246645,-0.008550714701414108,-0.003290628781542182,-2.620564846960641,-0.929658389255688,5.932758971765544,-0.02620564846960641,-0.00929658389255688,0.05932758971765544 +karman_re200,sr,309,123.6,1.1192619800567627,-0.27411919832229614,0.9590654969215393,-0.48980462551116943,0.990257740020752,-0.34957072138786316,0.0004399096651468426,0.004160754382610321,0.0022001941688358784,0.005496250465512276,-0.005753534846007824,-0.005356908310204744,-2.2846450572757235,-2.0061275038275532,4.856289857193679,-0.022846450572757235,-0.020061275038275532,0.04856289857193679 +karman_re200,sr,310,124.0,1.1647416353225708,-0.224257692694664,0.9840104579925537,-0.40974125266075134,0.9422402381896973,-0.24752601981163025,-0.001613530097529292,0.005056234076619148,0.0007921882206574082,0.006124972831457853,-0.0018125900533050299,-0.00653940811753273,-1.5167420565435976,-3.340094114105084,3.5223232469161485,-0.015167420565435977,-0.03340094114105084,0.03522323246916149 +karman_re200,sr,311,124.4,1.202153205871582,-0.20129920542240143,1.0039937496185303,-0.24697376787662506,0.9062548875808716,-0.1124771237373352,-0.002397703006863594,0.005236257798969746,-0.0007008746033534408,0.0065173679031431675,0.0013404880883172154,-0.0066706715151667595,-0.4967200603285209,-3.702204139928662,3.1602132210925706,-0.004967200603285209,-0.03702204139928662,0.031602132210925706 +karman_re200,sr,312,124.8,1.246894359588623,-0.27181077003479004,0.9465816617012024,-0.03117193654179573,0.882407009601593,0.05111734941601753,-0.0015149059472605586,0.005087685771286488,-0.002324251923710108,0.0057658059522509575,0.003659684443846345,-0.006791391409933567,0.3892791219486585,-3.531452516319697,3.330964844701536,0.003892791219486585,-0.03531452516319697,0.03330964844701536 +karman_re200,sr,313,125.2,1.2175970077514648,-0.05199701711535454,0.8838095664978027,0.23530878126621246,0.8960118889808655,0.18139389157295227,0.0005420888192020357,0.004391742404550314,-0.004522630479186773,0.004083837848156691,0.0054353163577616215,-0.006815212778747082,1.1411110355174645,-4.101829671569162,2.760587689452071,0.011411110355174645,-0.04101829671569162,0.027605876894520712 +karman_re200,sr,314,125.6,1.1614989042282104,0.2859647870063782,0.8784885406494141,0.418984055519104,0.9483129978179932,0.2536068558692932,0.002700885757803917,0.0025058938190340996,-0.007160622626543045,0.002418900839984417,0.005862672813236713,-0.006382150109857321,1.8989378109610793,-5.2172298737555955,1.6451874872656362,0.018989378109610794,-0.05217229873755596,0.016451874872656362 +karman_re200,sr,315,126.0,1.0982096195220947,0.4228653311729431,0.9066070318222046,0.49386027455329895,1.0080636739730835,0.29897820949554443,0.0034725528676062822,-0.00022642940166406333,-0.008965705521404743,0.002118853386491537,0.004742453806102276,-0.005844229366630316,2.4834866603378454,-6.022741285877131,0.8396760751441015,0.024834866603378455,-0.06022741285877131,0.008396760751441015 +karman_re200,sr,316,126.4,1.0389246940612793,0.41417786478996277,0.9387635588645935,0.5048171281814575,1.0679408311843872,0.3009859323501587,0.0024779371451586485,-0.0027182709891349077,-0.008387407287955284,0.0034990450367331505,0.0032821630593389273,-0.00543052377179265,2.614087270389469,-5.86719810796555,0.9952192530556817,0.02614087270389469,-0.0586719810796555,0.009952192530556818 +karman_re200,sr,317,126.8,0.9861588478088379,0.3410458266735077,0.9630786180496216,0.48505330085754395,1.1239895820617676,0.26749926805496216,0.0001676973479334265,-0.004313874989748001,-0.005322935990989208,0.005599097814410925,0.0020682993344962597,-0.005550062283873558,2.225337083335749,-4.694185035929029,2.1682323250922035,0.022253370833357492,-0.046941850359290285,0.021682323250922036 +karman_re200,sr,318,127.2,0.9396613836288452,0.23411370813846588,0.9910732507705688,0.39233988523483276,1.1684585809707642,0.217030867934227,-0.0017772481078281999,-0.005115631967782974,-0.001366672571748495,0.006625359877943993,0.000633137475233525,-0.006231312174350023,1.4094769191976066,-3.3991447936451027,3.463272567376129,0.014094769191976067,-0.03399144793645103,0.03463272567376129 +karman_re200,sr,319,127.6,0.9045989513397217,0.0931372344493866,1.0041983127593994,0.22598879039287567,1.2069417238235474,0.20095212757587433,-0.0023804609663784504,-0.005231717601418495,0.0016508187400177121,0.006707245018333197,-0.0008701087790541351,-0.006528413388878107,0.3813552105805132,-3.1735444756128204,3.688872885408412,0.003813552105805132,-0.0317354447561282,0.03688872885408412 +karman_re200,sr,320,128.0,0.882087767124176,-0.07266850024461746,0.9386124610900879,-0.00020059302914887667,1.2496654987335205,0.26813626289367676,-0.0013270203489810228,-0.00504566915333271,0.0038982948753982782,0.0068258303217589855,-0.002549511846154928,-0.005625879857689142,-0.480730080511741,-3.3142723065795994,3.548145054441633,-0.00480730080511741,-0.03314272306579599,0.03548145054441633 +karman_re200,sr,321,128.4,0.9014260768890381,-0.19401021301746368,0.8810922503471375,-0.26301974058151245,1.2097351551055908,0.012514203786849976,0.0008144387393258512,-0.004226469434797764,0.005568272899836302,0.006792725995182991,-0.004824854899197817,-0.003865668550133705,-1.2295691252232612,-2.6465719996688373,4.215845361352395,-0.012295691252232612,-0.026465719996688373,0.04215845361352395 +karman_re200,sr,322,128.8,0.9557260870933533,-0.26198771595954895,0.8807832598686218,-0.4330873191356659,1.1513984203338623,-0.3065897226333618,0.002882057800889015,-0.0022152848541736603,0.0058056325651705265,0.006317151710391045,-0.007450029719620943,-0.0022952368017286062,-1.9819249565088701,-1.517232473086931,5.345184887934301,-0.019819249565088702,-0.015172324730869312,0.05345184887934301 +karman_re200,sr,323,129.2,1.016180157661438,-0.3031184673309326,0.910590648651123,-0.49670669436454773,1.087941288948059,-0.42471036314964294,0.0034581366926431656,0.0005545696476474404,0.004572208970785141,0.005796090234071016,-0.009027170017361641,-0.002222589449957013,-2.527798022432011,-0.8013151481912004,6.061102212830032,-0.025277980224320113,-0.008013151481912005,0.06061102212830032 +karman_re200,sr,324,129.6,1.0761919021606445,-0.3000201880931854,0.9413660168647766,-0.5037264227867126,1.0301570892333984,-0.40596550703048706,0.002251465106382966,0.0029471558518707752,0.0031461939215660095,0.0054200999438762665,-0.008126264438033104,-0.003762502921745181,-2.593343325590138,-1.0945290606513214,5.767888300369911,-0.02593343325590138,-0.010945290606513215,0.05767888300369911 +karman_re200,sr,325,130.0,1.1313631534576416,-0.26349955797195435,0.9638015627861023,-0.47997868061065674,0.9783040881156921,-0.3293636441230774,-0.00011031014582840726,0.004445358645170927,0.001910426770336926,0.005619211588054895,-0.004848503973335028,-0.005802066531032324,-2.1496095281511685,-2.3473210830118836,4.515096278009349,-0.021496095281511685,-0.023473210830118836,0.045150962780093486 +karman_re200,sr,326,130.4,1.1737433671951294,-0.21331928670406342,0.9916979074478149,-0.37560656666755676,0.9329457879066467,-0.2197093963623047,-0.0019364191684871912,0.005154028069227934,0.00044500204967334867,0.006305220536887646,-0.0009543413179926574,-0.006632412783801556,-1.2888991436671668,-3.550775862514698,3.3116414985065337,-0.012888991436671668,-0.03550775862514698,0.03311641498506534 +karman_re200,sr,327,130.8,1.2130167484283447,-0.20969779789447784,0.996976375579834,-0.20434945821762085,0.8994470834732056,-0.0760912224650383,-0.002340679056942463,0.0052149128168821335,-0.001049090176820755,0.0064715975895524025,0.0019351245136931539,-0.006685494910925627,-0.26684878669154527,-3.6451567111192786,3.217260649901953,-0.002668487866915453,-0.03645156711119279,0.03217260649901953 +karman_re200,sr,328,131.2,1.2503713369369507,-0.26673638820648193,0.9272652268409729,0.03176310658454895,0.8806414604187012,0.08822812139987946,-0.001120429951697588,0.005000233184546232,-0.0027710089925676584,0.005437320563942194,0.004145449493080378,-0.006826264783740044,0.569076959802185,-3.571074191053446,3.2913431699677864,0.00569076959802185,-0.03571074191053446,0.032913431699677864 +karman_re200,sr,329,131.6,1.202422022819519,0.038194671273231506,0.8769981861114502,0.28820422291755676,0.905977725982666,0.20224153995513916,0.0010908221593126655,0.004058447666466236,-0.005119943525642157,0.003644887823611498,0.005703034345060587,-0.006757180672138929,1.3189390093555213,-4.3394266571096285,2.5229907039116037,0.013189390093555214,-0.04339426657109629,0.02522990703911604 +karman_re200,sr,330,132.0,1.1451833248138428,0.3323190212249756,0.8823972940444946,0.4459144175052643,0.9619923233985901,0.26757344603538513,0.0030353909824043512,0.001929283607751131,-0.007724084425717592,0.00219194358214736,0.005732045043259859,-0.006254949141293764,2.063895524086837,-5.466308631381614,1.396108729639618,0.02063895524086837,-0.054663086313816146,0.01396108729639618 +karman_re200,sr,331,132.4,1.0813010931015015,0.4311429560184479,0.914017915725708,0.5009576678276062,1.0225071907043457,0.3044191598892212,0.0034154767636209726,-0.0008706293301656842,-0.009076815098524094,0.002304027322679758,0.004387314431369305,-0.005733405239880085,2.5660262558360283,-6.087971014980428,0.7744463460408042,0.025660262558360285,-0.060879710149804284,0.0077444634604080425 +karman_re200,sr,332,132.8,1.0237659215927124,0.4025143086910248,0.9443016648292542,0.5043838024139404,1.0817418098449707,0.2965448200702667,0.002010116819292307,-0.0031570333521813154,-0.007882404141128063,0.0039642080664634705,0.0029995753429830074,-0.0053876843303442,2.567551833187668,-5.673647670181725,1.1887696908395071,0.02567551833187668,-0.05673647670181725,0.01188769690839507 +karman_re200,sr,333,133.2,0.9721633195877075,0.321410208940506,0.9675762057304382,0.47488605976104736,1.1357349157333374,0.2573630213737488,-0.00036017742240801454,-0.004570432007312775,-0.004411863163113594,0.00595669262111187,0.0017583827720955014,-0.005667965859174728,2.075146879054215,-4.36200684626175,2.500410514759482,0.02075146879054215,-0.0436200684626175,0.025004105147594824 +karman_re200,sr,334,133.6,0.9282758831977844,0.20724397897720337,0.9990425109863281,0.358079195022583,1.1774135828018188,0.20838680863380432,-0.002061068080365658,-0.0051955957897007465,-0.0005664505297318101,0.006658799014985561,0.0002850462624337524,-0.006369666662067175,1.1766394720870086,-3.242412880233841,3.6200044807873906,0.011766394720870085,-0.032424128802338414,0.03620004480787391 +karman_re200,sr,335,134.0,0.8962772488594055,0.058407120406627655,0.9949243664741516,0.18528905510902405,1.2198128700256348,0.2167823612689972,-0.002272097859531641,-0.005213416647166014,0.002217999193817377,0.006713498383760452,-0.001217452809214592,-0.006426425650715828,0.16237679122323614,-3.2421476679848094,3.6202696930364238,0.0016237679122323614,-0.03242147667984809,0.036202696930364237 +karman_re200,sr,336,134.4,0.8808146715164185,-0.10572420805692673,0.9202002882957458,-0.06204589456319809,1.2520371675491333,0.25265955924987793,-0.000897625635843724,-0.004955071024596691,0.0043722051195800304,0.0068514044396579266,-0.003009659005329013,-0.005274987313896418,-0.6551259826065278,-3.243494434663879,3.6189229263573526,-0.006551259826065278,-0.032434944346638794,0.03618922926357353 +karman_re200,sr,337,134.8,0.9113192558288574,-0.212452694773674,0.8765091896057129,-0.3134731650352478,1.1970510482788086,-0.08495232462882996,0.0013672809582203627,-0.0038668618071824312,0.0057897912338376045,0.006715814583003521,-0.005434845574200153,-0.0034404301550239325,-1.4076898713854367,-2.400403877965323,4.462013483055909,-0.014076898713854367,-0.02400403877965323,0.04462013483055909 +karman_re200,sr,338,135.2,0.9683449268341064,-0.2748188376426697,0.8863059878349304,-0.45844361186027527,1.138031005859375,-0.3525512218475342,0.003172081196680665,-0.0016165446722880006,0.0056275189854204655,0.0061866771429777145,-0.007988357916474342,-0.002114952774718404,-2.140490163092727,-1.2894646310652829,5.572952729955949,-0.021404901630927273,-0.012894646310652829,0.05572952729955949 +karman_re200,sr,339,135.6,1.0293458700180054,-0.3067566156387329,0.919077455997467,-0.5039627552032471,1.074074149131775,-0.4309047758579254,0.003347389167174697,0.001192538533359766,0.004219868220388889,0.005685125011950731,-0.009075284935534,-0.0024473515804857016,-2.5964894070797335,-0.7687451961616327,6.0936721648595995,-0.025964894070797336,-0.007687451961616327,0.060936721648595996 +karman_re200,sr,340,136.0,1.088833212852478,-0.2942099869251251,0.9486686587333679,-0.5034465789794922,1.017532467842102,-0.3932969272136688,0.0017471349565312266,0.003370210761204362,0.0028779825661331415,0.005403290968388319,-0.007563805673271418,-0.004248835612088442,-2.53532876241357,-1.3140581191733198,5.548359241847912,-0.0253532876241357,-0.013140581191733199,0.05548359241847912 +karman_re200,sr,341,136.4,1.1418673992156982,-0.25236642360687256,0.9717743396759033,-0.46721652150154114,0.9665021300315857,-0.30857595801353455,-0.0006183601799421012,0.004687136970460415,0.0016065307427197695,0.005768327042460442,-0.003934367094188929,-0.006140255369246006,-1.9912042940701624,-2.6763208363283875,4.186096524692845,-0.019912042940701626,-0.026763208363283875,0.04186096524692845 +karman_re200,sr,342,136.8,1.182053565979004,-0.20521986484527588,1.0034383535385132,-0.3392241299152374,0.9237158298492432,-0.19089576601982117,-0.0021825639996677637,0.00521382549777627,0.00010913078585872427,0.006449720356613398,-0.00019830824749078602,-0.006682229228317738,-1.0566254852996169,-3.674409226348378,3.1880081346728537,-0.010566254852996169,-0.03674409226348378,0.03188008134672854 +karman_re200,sr,343,137.2,1.2259050607681274,-0.22693803906440735,0.988667905330658,-0.1614234298467636,0.8924810886383057,-0.038446880877017975,-0.002194732427597046,0.005185777321457863,-0.0014001798117533326,0.006352963857352734,0.002469155006110668,-0.006719297729432583,-0.058627306868773835,-3.583244114324775,3.2791732466964567,-0.0005862730686877383,-0.035832441143247754,0.03279173246696457 +karman_re200,sr,344,137.6,1.2493892908096313,-0.23356960713863373,0.9118960499763489,0.09429462254047394,0.8809582591056824,0.1223125159740448,-0.0006800572737120092,0.004878716077655554,-0.00324723101221025,0.005077356472611427,0.004578839056193829,-0.006851600483059883,0.7378655770331293,-3.670751063363446,3.1916662976577856,0.007378655770331293,-0.03670751063363446,0.03191666297657786 +karman_re200,sr,345,138.0,1.1907851696014404,0.12600307166576385,0.8752729296684265,0.33578747510910034,0.9171453714370728,0.2211545705795288,0.0016181714599952102,0.003657075809314847,-0.005720168352127075,0.003237186698243022,0.005859692115336657,-0.0066679795272648335,1.492398042233119,-4.5913706813985575,2.2710466796226747,0.014923980422331189,-0.04591370681398558,0.022710466796226746 +karman_re200,sr,346,138.4,1.1309750080108643,0.3694887161254883,0.8893623352050781,0.467904269695282,0.9756175875663757,0.28086063265800476,0.0032669741194695234,0.0013114794855937362,-0.00819389894604683,0.0020729280076920986,0.005506998859345913,-0.0061290026642382145,2.2082297934881288,-5.674572868136587,1.1878444928846452,0.022082297934881288,-0.05674572868136587,0.011878444928846453 +karman_re200,sr,347,138.8,1.0670429468154907,0.4308466613292694,0.9226896166801453,0.5060057640075684,1.0368002653121948,0.3077715039253235,0.0032454661559313536,-0.001479102997109294,-0.009014156647026539,0.0025893948040902615,0.004036897327750921,-0.005630859639495611,2.612702529224075,-6.083438960887892,0.7789784001333402,0.02612702529224075,-0.06083438960887892,0.007789784001333402 +karman_re200,sr,348,139.2,1.0105401277542114,0.38590386509895325,0.9509325623512268,0.5026538372039795,1.0956108570098877,0.2909674644470215,0.0014774369774386287,-0.0035496819764375687,-0.007227946072816849,0.004460260737687349,0.0027247932739555836,-0.005391770973801613,2.4887800940694293,-5.419994838612004,1.4424225224092282,0.024887800940694295,-0.054199948386120037,0.014424225224092282 +karman_re200,sr,349,139.6,0.9594318270683289,0.2976158559322357,0.9740601181983948,0.4589530825614929,1.1469296216964722,0.2469089925289154,-0.000854915997479111,-0.004782985430210829,-0.003488522721454501,0.006227326579391956,0.0014304501237347722,-0.005818760488182306,1.897944764888705,-4.040314740902369,2.8221026201188635,0.018979447648887048,-0.04040314740902369,0.028221026201188635 +karman_re200,sr,350,140.0,0.918109118938446,0.1764698624610901,1.006329894065857,0.32132065296173096,1.186272382736206,0.20329414308071136,-0.0022675287909805775,-0.005234722513705492,0.00014588091289624572,0.006665043067187071,-6.207441037986428e-05,-0.006468579638749361,0.9380270531433363,-3.1640510341658254,3.6983663268554072,0.009380270531433364,-0.031640510341658254,0.036983663268554075 +karman_re200,sr,351,140.4,0.8890261054039001,0.021012457087635994,0.981515109539032,0.1386561095714569,1.2329778671264648,0.24126337468624115,-0.002076794859021902,-0.005180323030799627,0.002733533037826419,0.0067287045530974865,-0.0015799072571098804,-0.00624778913334012,-0.03965618945608419,-3.3027430337927295,3.5596743272285036,-0.00039656189456084193,-0.033027430337927294,0.035596743272285035 +karman_re200,sr,352,140.8,0.8824073076248169,-0.1358748972415924,0.9048275947570801,-0.1254265457391739,1.245639681816101,0.20183967053890228,-0.00042577768908813596,-0.004815844353288412,0.00478855986148119,0.006855473387986422,-0.003502253908663988,-0.004881166387349367,-0.8225545893643031,-3.116742467093587,3.7456748939276454,-0.008225545893643032,-0.03116742467093587,0.03745674893927645 +karman_re200,sr,353,141.2,0.9229522943496704,-0.2284581959247589,0.8756372928619385,-0.35745155811309814,1.1867268085479736,-0.1718038022518158,0.001881047966890037,-0.0034353788942098618,0.005898837465792894,0.0066100130788981915,-0.006038612686097622,-0.003042989643290639,-1.58102267561313,-2.1402273122560844,4.722190048765148,-0.0158102267561313,-0.021402273122560846,0.04722190048765148 +karman_re200,sr,354,141.6,0.9818023443222046,-0.2855624258518219,0.8936754465103149,-0.47679999470710754,1.1259565353393555,-0.3873262405395508,0.0033526653423905373,-0.0009809458861127496,0.0053598638623952866,0.006061598192900419,-0.00841833371669054,-0.0020363526418805122,-2.276420614717272,-1.098764539852287,5.763652821168945,-0.02276420614717272,-0.01098764539852287,0.05763652821168945 +karman_re200,sr,355,142.0,1.0427325963974,-0.3071548640727997,0.9274635910987854,-0.5073570013046265,1.062378168106079,-0.42952197790145874,0.003124895039945841,0.001780098071321845,0.003866988467052579,0.005580941215157509,-0.00895235501229763,-0.0027524724137037992,-2.6274432649849735,-0.7991372714848809,6.0632800895363514,-0.026274432649849737,-0.007991372714848809,0.06063280089536351 +karman_re200,sr,356,142.4,1.1013765335083008,-0.2862301766872406,0.9555412530899048,-0.5001259446144104,1.0066215991973877,-0.3767404854297638,0.0011884330306202173,0.0037431607488542795,0.002598584396764636,0.005418072454631329,-0.006865628995001316,-0.004734015092253685,-2.444593895029812,-1.5816986893148566,5.280718671706376,-0.02444593895029812,-0.015816986893148567,0.05280718671706376 +karman_re200,sr,357,142.8,1.1516157388687134,-0.24006426334381104,0.9801480174064636,-0.4469365179538727,0.9562771320343018,-0.2840496301651001,-0.0010828855447471142,0.004891648888587952,0.001275483169592917,0.005924130789935589,-0.003017436945810914,-0.006380143575370312,-1.804784957672666,-2.983909800771081,3.8785075602501506,-0.01804784957672666,-0.029839098007710813,0.03878507560250151 +karman_re200,sr,358,143.2,1.1901328563690186,-0.19966274499893188,1.0108402967453003,-0.30097296833992004,0.9160777926445007,-0.1582125425338745,-0.0023389426060020924,0.00524117611348629,-0.00023120215337257832,0.006530254613608122,0.00048670597607269883,-0.006697977893054485,-0.8186414790173661,-3.7293912881253997,3.133026072895832,-0.00818641479017366,-0.037293912881254,0.03133026072895832 +karman_re200,sr,359,143.6,1.2376034259796143,-0.2478925734758377,0.9747651815414429,-0.11084167659282684,0.8872416615486145,0.0015479011926800013,-0.0019593483302742243,0.005153979640454054,-0.0017753348220139742,0.006153864786028862,0.0029743078630417585,-0.006756111513823271,0.1369020054155811,-3.540881405531566,3.3215359554896664,0.001369020054155811,-0.03540881405531566,0.03321535955489666 +karman_re200,sr,360,144.0,1.239630937576294,-0.16963592171669006,0.8991792798042297,0.15756258368492126,0.8853392004966736,0.15209618210792542,-0.00018723082030192018,0.004710279870778322,-0.00376418000087142,0.00467358622699976,0.004964686930179596,-0.006855832878500223,0.9057365168632479,-3.8250123313227573,3.037405029698475,0.009057365168632479,-0.03825012331322757,0.03037405029698475 +karman_re200,sr,361,144.4,1.1790858507156372,0.20245258510112762,0.8763925433158875,0.3764716386795044,0.9302721619606018,0.237047478556633,0.0021140226162970066,0.0031950571574270725,-0.00633172458037734,0.0028574734460562468,0.005910868756473064,-0.006551734171807766,1.6645575371740127,-4.858159892816449,2.004257468204783,0.016645575371740128,-0.04858159892816449,0.02004257468204783 +karman_re200,sr,362,144.8,1.1172988414764404,0.3966916799545288,0.8975076079368591,0.48220375180244446,0.9899806976318359,0.2911449670791626,0.0034033500123769045,0.0006559938774444163,-0.008574867621064186,0.0020465156994760036,0.005204265005886555,-0.006005993112921715,2.3346101131314847,-5.8468521264796465,1.0155652345415858,0.02334610113131485,-0.058468521264796465,0.010155652345415858 +karman_re200,sr,363,145.2,1.054744839668274,0.42406168580055237,0.930672824382782,0.5064947605133057,1.050984263420105,0.3072606325149536,0.002970895729959011,-0.0020486111752688885,-0.008806761354207993,0.0029550164472311735,0.003696719417348504,-0.005540273152291775,2.627621574607913,-6.020274903308632,0.8421424577126007,0.026276215746079128,-0.06020274903308632,0.008421424577126007 +karman_re200,sr,364,145.6,0.9996733665466309,0.3656556308269501,0.956635057926178,0.4966326653957367,1.1090168952941895,0.28258687257766724,0.0009038340067490935,-0.0039031622000038624,-0.006451447028666735,0.004972030874341726,0.0024449864868074656,-0.005440315697342157,2.3843602295239372,-5.1216844967395065,1.7407328642817261,0.023843602295239373,-0.051216844967395064,0.01740732864281726 +karman_re200,sr,365,146.0,0.9498848915100098,0.26987481117248535,0.9803318977355957,0.4343540072441101,1.157274603843689,0.23468101024627686,-0.0012962440960109234,-0.0049521056935191154,-0.0025569198187440634,0.0064355432987213135,0.00108510279096663,-0.005992232356220484,1.696511767119701,-3.7374158617316002,3.1250014992896324,0.01696511767119701,-0.037374158617316,0.03125001499289633 +karman_re200,sr,366,146.4,0.9111935496330261,0.1413269191980362,1.0076676607131958,0.2810344099998474,1.194635033607483,0.2002301663160324,-0.002381940372288227,-0.00524227786809206,0.0008094549411907792,0.006670930422842503,-0.00041359139140695333,-0.006522867828607559,0.694518112538365,-3.141331692318172,3.72108566870306,0.0069451811253836504,-0.03141331692318172,0.0372108566870306 +karman_re200,sr,367,146.8,0.8846012949943542,-0.01945512555539608,0.9634720683097839,0.08151418715715408,1.2419458627700806,0.26194655895233154,-0.001802679616957903,-0.005131646525114775,0.0032354274298995733,0.006757286377251148,-0.0019761286675930023,-0.00600577425211668,-0.23322969720119927,-3.334391898505049,3.5280254625161827,-0.002332296972011993,-0.03334391898505049,0.03528025462516183 +karman_re200,sr,368,147.2,0.8886033892631531,-0.1628267467021942,0.8921741247177124,-0.1877940148115158,1.2311290502548218,0.12562893331050873,8.674767741467804e-05,-0.004608497489243746,0.005159622523933649,0.006841291673481464,-0.00404026173055172,-0.004448628053069115,-0.9938214261953389,-2.939801745696064,3.922615615325168,-0.009938214261953389,-0.02939801745696064,0.03922615615325168 +karman_re200,sr,369,147.6,0.9367779493331909,-0.24263043701648712,0.8765318989753723,-0.3935387432575226,1.1737195253372192,-0.23908737301826477,0.002350320341065526,-0.0029496040660887957,0.005911667365580797,0.00648838747292757,-0.006646992173045874,-0.002678388962522149,-1.7543785233404015,-1.8666677284418252,4.9957496325794075,-0.017543785233404014,-0.018666677284418252,0.049957496325794076 +karman_re200,sr,370,148.0,0.9965366125106812,-0.29385051131248474,0.9008927345275879,-0.4874531626701355,1.111488699913025,-0.410023957490921,0.00344697292894125,-0.0003220383950974792,0.005030505824834108,0.005942674819380045,-0.00875100027769804,-0.0020464181434363127,-2.394882584068248,-0.9398853511480554,5.922532009873176,-0.02394882584068248,-0.009398853511480555,0.059225320098731764 +karman_re200,sr,371,148.4,1.0568143129348755,-0.30458271503448486,0.9339142441749573,-0.5062693357467651,1.0498476028442383,-0.4221680760383606,0.0028058020398020744,0.002313899574801326,0.0035288596991449594,0.0054877097718417645,-0.008688297122716904,-0.0031339155975729227,-2.628074186235463,-0.8834819222315585,5.978935438789674,-0.02628074186235463,-0.008834819222315585,0.05978935438789674 +karman_re200,sr,372,148.8,1.1140483617782593,-0.2764248847961426,0.9595911502838135,-0.4927603602409363,0.9954643845558167,-0.35735276341438293,0.0006223121890798211,0.004067039117217064,0.00230457354336977,0.0054677859880030155,-0.006052917800843716,-0.005213326308876276,-2.3297594786702125,-1.8920841053018829,4.97033325571935,-0.023297594786702125,-0.01892084105301883,0.0497033325571935 +karman_re200,sr,373,149.2,1.161109209060669,-0.22716708481311798,0.985573410987854,-0.41922053694725037,0.9469092488288879,-0.25689512491226196,-0.0014895295025780797,0.0050248210318386555,0.0009208390838466585,0.006082245614379644,-0.0020999270491302013,-0.00653120269998908,-1.5937378034014873,-3.2648198136228177,3.5975975473984145,-0.015937378034014873,-0.03264819813622818,0.035975975473984144 +karman_re200,sr,374,149.6,1.1986509561538696,-0.19806812703609467,1.0089353322982788,-0.2605192959308624,0.909543514251709,-0.12312545627355576,-0.0023993889335542917,0.005244027357548475,-0.0005811937735415995,0.006545056588947773,0.0011409636354073882,-0.006696837488561869,-0.5760471633265227,-3.7247776302639304,3.1376397307573014,-0.005760471633265227,-0.037247776302639306,0.031376397307573016 +karman_re200,sr,375,150.0,1.2454887628555298,-0.26496338844299316,0.9552457928657532,-0.051507845520973206,0.8838669657707214,0.04098162800073624,-0.0016381156165152788,0.005105992779135704,-0.002187067875638604,0.005882187280803919,0.003486732952296734,-0.0067933667451143265,0.3284080417205929,-3.530456828542043,3.3319605324791888,0.003284080417205929,-0.03530456828542043,0.03331960532479189 +karman_re200,sr,376,150.4,1.223502516746521,-0.08548089116811752,0.8880861401557922,0.21757309138774872,0.8934499621391296,0.17620572447776794,0.0003572074929252267,0.0044759525917470455,-0.004333643242716789,0.004233642015606165,0.0053199343383312225,-0.00683193514123559,1.0819695164520915,-4.027020634366484,2.8353967266547486,0.010819695164520915,-0.04027020634366484,0.028353967266547486 +karman_re200,sr,377,150.8,1.164947748184204,0.2652335464954376,0.8781765103340149,0.40966957807540894,0.9441555738449097,0.2505494952201843,0.0025655815843492746,0.0026786495000123978,-0.006958957761526108,0.002517120912671089,0.0058830962516367435,-0.0064232307486236095,1.8408958975037015,-5.130208893430422,1.7322084675908105,0.018408958975037016,-0.05130208893430422,0.017322084675908105 +karman_re200,sr,378,151.2,1.1021742820739746,0.4156690835952759,0.904822826385498,0.49093174934387207,1.004279613494873,0.29818660020828247,0.0034688208252191544,-1.2261446499906015e-05,-0.00887991487979889,0.0020997263491153717,0.004860192071646452,-0.005887633189558983,2.44892469655648,-5.985378330389446,0.8770390306317859,0.0244892469655648,-0.059853783303894466,0.00877039030631786 +karman_re200,sr,379,151.6,1.042281150817871,0.4150109887123108,0.9369476437568665,0.5046554803848267,1.0646568536758423,0.30349311232566833,0.0026089358143508434,-0.0025656986981630325,-0.008491266518831253,0.003380540991201997,0.003382778959348798,-0.005462956614792347,2.620179545439758,-5.908086468067813,0.9543308929534193,0.026201795454397582,-0.05908086468067813,0.009543308929534193 +karman_re200,sr,380,152.0,0.9890590906143188,0.34554803371429443,0.9607897996902466,0.48780131340026855,1.1212788820266724,0.27199628949165344,0.0003444469766691327,-0.0042185415513813496,-0.005592219065874815,0.005466960836201906,0.002158393617719412,-0.005527466535568237,2.2643296150090078,-4.7928812927992945,2.0695360682219377,0.02264329615009008,-0.04792881292799295,0.020695360682219378 +karman_re200,sr,381,152.4,0.9417542219161987,0.24187174439430237,0.9864585995674133,0.40334025025367737,1.1664730310440063,0.2217540293931961,-0.0016791324596852064,-0.005078157410025597,-0.0016452382551506162,0.006582645699381828,0.0007347326609306037,-0.006176133174449205,1.4780086421411238,-3.470772806317767,3.391644554703465,0.014780086421411239,-0.03470772806317767,0.03391644554703465 +karman_re200,sr,382,152.8,0.9056846499443054,0.10487231612205505,1.0036178827285767,0.23861129581928253,1.2035592794418335,0.20084790885448456,-0.002395779825747013,-0.00522926589474082,0.0014492421178147197,0.006684275344014168,-0.0007646935991942883,-0.006528186146169901,0.4538502600521292,-3.1653938424531187,3.6970235185681135,0.004538502600521292,-0.03165393842453119,0.036970235185681134 +karman_re200,sr,383,153.2,0.8821309804916382,-0.05939636752009392,0.9434360265731812,0.019253218546509743,1.2473514080047607,0.27084529399871826,-0.001454563345760107,-0.005066534969955683,0.0037400939036160707,0.0067995525896549225,-0.0024050334468483925,-0.005714223254472017,-0.4221880587338006,-3.329143375500948,3.533273985520285,-0.004221880587338006,-0.03329143375500948,0.03533273985520285 +karman_re200,sr,384,153.6,0.897983193397522,-0.18610695004463196,0.8824825882911682,-0.24514873325824738,1.2143499851226807,0.04012305662035942,0.0006341304397210479,-0.00433057127520442,0.005485037341713905,0.00680740037932992,-0.004623809829354286,-0.004001598805189133,-1.171849465561524,-2.721521712025422,4.14089564899581,-0.011718494655615239,-0.02721521712025422,0.041408956489958106 +karman_re200,sr,385,154.0,0.95107102394104,-0.2566101551055908,0.8787654638290405,-0.4236759543418884,1.1572903394699097,-0.2923307418823242,0.002763835247606039,-0.002406116109341383,0.00584612088277936,0.006360732484608889,-0.00725543312728405,-0.0023768353275954723,-1.9277138583570659,-1.5965205828306732,5.265896778190559,-0.01927713858357066,-0.015965205828306732,0.05265896778190559 +karman_re200,sr,386,154.4,1.011359691619873,-0.30057165026664734,0.9076967835426331,-0.49469947814941406,1.0941928625106812,-0.4236612617969513,0.0034685826394706964,0.00033842361881397665,0.004679390694946051,0.0058290716260671616,-0.008982423692941666,-0.00215322058647871,-2.498410234501947,-0.8261746097774578,6.036242751243774,-0.02498410234501947,-0.008261746097774579,0.06036242751243775 +karman_re200,sr,387,154.8,1.0711264610290527,-0.30075472593307495,0.9391447305679321,-0.5044974684715271,1.0352884531021118,-0.4117429256439209,0.002395345363765955,0.0027949970681220293,0.0032266557682305574,0.005420358385890722,-0.008295244537293911,-0.003584525315091014,-2.6052494889039064,-1.0276031606717493,5.8348142003494825,-0.026052494889039064,-0.010276031606717494,0.05834814200349483 +karman_re200,sr,388,155.2,1.1265373229980469,-0.2662438750267029,0.9623595476150513,-0.48370206356048584,0.9825353026390076,-0.3375116288661957,6.741214747307822e-05,0.004355927463620901,0.0020046671852469444,0.005562737584114075,-0.005159746389836073,-0.005650283768773079,-2.1971770388552647,-2.2307741539333494,4.631643207087883,-0.021971770388552646,-0.022307741539333494,0.046316432070878835 +karman_re200,sr,389,155.6,1.1704052686691284,-0.2158740758895874,0.9905558228492737,-0.38696613907814026,0.9366030097007751,-0.2297402322292328,-0.001834325143136084,0.005131235346198082,0.0005632633110508323,0.006243547424674034,-0.0012231965083628893,-0.006611549761146307,-1.3662229828952528,-3.488454333400504,3.3739630276207278,-0.013662229828952528,-0.03488454333400504,0.03373963027620728 +karman_re200,sr,390,156.0,1.2092630863189697,-0.20475982129573822,1.0012928247451782,-0.21911269426345825,0.9023094773292542,-0.08812983334064484,-0.002365292049944401,0.005239661317318678,-0.0009315880597569048,0.006499601528048515,0.0017564984736964107,-0.006694138515740633,-0.3406702359828031,-3.671842057035413,3.1905753039858196,-0.0034067023598280313,-0.036718420570354134,0.031905753039858195 +karman_re200,sr,391,156.4,1.2503676414489746,-0.2693314850330353,0.934295654296875,0.01070680283010006,0.881427526473999,0.07714591175317764,-0.0012515757698565722,0.005037425085902214,-0.0026286158245056868,0.005559037439525127,0.003993849270045757,-0.006826341152191162,0.5126065885961355,-3.5584146451685177,3.304002715852715,0.0051260658859613555,-0.03558414645168518,0.03304002715852715 +karman_re200,sr,392,156.8,1.2075750827789307,0.00881149247288704,0.8796201944351196,0.2721402049064636,0.9029329419136047,0.196428582072258,0.0009207359980791807,0.004171025939285755,-0.004935834091156721,0.0037876004353165627,0.005620637908577919,-0.006781017407774925,1.2628757288753987,-4.259887037242235,2.602530323778997,0.012628757288753987,-0.042598870372422354,0.02602530323778997 +karman_re200,sr,393,157.2,1.1500040292739868,0.3178466558456421,0.88133704662323,0.43811121582984924,0.9574876427650452,0.26360976696014404,0.0029446769040077925,0.002111557638272643,-0.007559940218925476,0.0022533864248543978,0.005780031904578209,-0.006292326375842094,2.0130739959635227,-5.388576778589428,1.4738405824318046,0.020130739959635227,-0.05388576778589428,0.014738405824318046 +karman_re200,sr,394,157.6,1.0863796472549438,0.4280163645744324,0.9120049476623535,0.49861159920692444,1.0178859233856201,0.30329033732414246,0.0034475158900022507,-0.0006738993688486516,-0.009061324410140514,0.00224416796118021,0.0045057907700538635,-0.00577298691496253,2.5438755475672745,-6.072234732964216,0.790182628057016,0.025438755475672745,-0.060722347329642164,0.00790182628057016 +karman_re200,sr,395,158.0,1.028822660446167,0.4050874710083008,0.9430217742919922,0.5040076971054077,1.0777451992034912,0.2984265983104706,0.0021699536591768265,-0.003033609129488468,-0.008049730211496353,0.003840397112071514,0.003098817775025964,-0.005410656798630953,2.5871907556026104,-5.738671258420964,1.1237461026002684,0.025871907556026103,-0.05738671258420964,0.011237461026002685 +karman_re200,sr,396,158.4,0.9770185947418213,0.3265605866909027,0.9660391211509705,0.4780276119709015,1.1325000524520874,0.2609326243400574,-0.0002003933332161978,-0.004495012108236551,-0.0046908073127269745,0.005879214499145746,0.001864571706391871,-0.005646065343171358,2.1259803507254804,-4.4579871896357535,2.4044301713854788,0.021259803507254805,-0.04457987189635754,0.02404430171385479 +karman_re200,sr,397,158.8,0.932373046875,0.21489115059375763,0.9956945180892944,0.36892983317375183,1.1749194860458374,0.21090704202651978,-0.001985488459467888,-0.005171444267034531,-0.0008086783927865326,0.006661324296146631,0.0003968288074247539,-0.006344177294522524,1.250082701626522,-3.2787545706431622,3.58366279037807,0.01250082701626522,-0.03278754570643162,0.0358366279037807 +karman_re200,sr,398,159.2,0.8989872932434082,0.06874792277812958,0.997447669506073,0.19714698195457458,1.2150958776474,0.2102317214012146,-0.0023183943703770638,-0.005211278796195984,0.002035172889009118,0.006706284824758768,-0.0011098545510321856,-0.006469147279858589,0.22988505977689658,-3.223829144317714,3.6385882167035186,0.0022988505977689657,-0.03223829144317714,0.036385882167035186 +karman_re200,sr,399,159.6,0.8807182312011719,-0.09590621292591095,0.9251412749290466,-0.042874544858932495,1.2510581016540527,0.26197314262390137,-0.0010478149633854628,-0.004979824647307396,0.004221619572490454,0.00683953333646059,-0.0028570739086717367,-0.0053846752271056175,-0.5997432623605711,-3.276146599445731,3.5862707615755007,-0.005997432623605711,-0.03276146599445731,0.03586270761575501 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_long.csv new file mode 100644 index 0000000..47489ab --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,target,0,0.0,velocity,upper_ux,1.2340569496154785 +karman_re200,target,0,0.0,velocity,upper_uy,-0.38897383213043213 +karman_re200,target,0,0.0,velocity,center_ux,1.177828311920166 +karman_re200,target,0,0.0,velocity,center_uy,-0.7669901251792908 +karman_re200,target,0,0.0,velocity,lower_ux,0.863411009311676 +karman_re200,target,0,0.0,velocity,lower_uy,-0.4436177909374237 +karman_re200,target,1,0.4,velocity,upper_ux,1.33061945438385 +karman_re200,target,1,0.4,velocity,upper_uy,-0.2977929711341858 +karman_re200,target,1,0.4,velocity,center_ux,1.2138667106628418 +karman_re200,target,1,0.4,velocity,center_uy,-0.6505563259124756 +karman_re200,target,1,0.4,velocity,lower_ux,0.732107400894165 +karman_re200,target,1,0.4,velocity,lower_uy,-0.35351139307022095 +karman_re200,target,2,0.8,velocity,upper_ux,1.3936355113983154 +karman_re200,target,2,0.8,velocity,upper_uy,-0.1448056548833847 +karman_re200,target,2,0.8,velocity,center_ux,1.2377666234970093 +karman_re200,target,2,0.8,velocity,center_uy,-0.2876204550266266 +karman_re200,target,2,0.8,velocity,lower_ux,0.6437481641769409 +karman_re200,target,2,0.8,velocity,lower_uy,-0.15355972945690155 +karman_re200,target,3,1.2,velocity,upper_ux,1.3949685096740723 +karman_re200,target,3,1.2,velocity,upper_uy,0.04647575318813324 +karman_re200,target,3,1.2,velocity,center_ux,1.234562873840332 +karman_re200,target,3,1.2,velocity,center_uy,0.20967449247837067 +karman_re200,target,3,1.2,velocity,lower_ux,0.6474549174308777 +karman_re200,target,3,1.2,velocity,lower_uy,0.10265105217695236 +karman_re200,target,4,1.6,velocity,upper_ux,1.3263747692108154 +karman_re200,target,4,1.6,velocity,upper_uy,0.22081319987773895 +karman_re200,target,4,1.6,velocity,center_ux,1.2048556804656982 +karman_re200,target,4,1.6,velocity,center_uy,0.5847342610359192 +karman_re200,target,4,1.6,velocity,lower_ux,0.7413978576660156 +karman_re200,target,4,1.6,velocity,lower_uy,0.3070380985736847 +karman_re200,target,5,2.0,velocity,upper_ux,1.2179509401321411 +karman_re200,target,5,2.0,velocity,upper_uy,0.33665454387664795 +karman_re200,target,5,2.0,velocity,center_ux,1.1685916185379028 +karman_re200,target,5,2.0,velocity,center_uy,0.7212674617767334 +karman_re200,target,5,2.0,velocity,lower_ux,0.8759437799453735 +karman_re200,target,5,2.0,velocity,lower_uy,0.4048633277416229 +karman_re200,target,6,2.4,velocity,upper_ux,1.1002397537231445 +karman_re200,target,6,2.4,velocity,upper_uy,0.40402907133102417 +karman_re200,target,6,2.4,velocity,center_ux,1.148552656173706 +karman_re200,target,6,2.4,velocity,center_uy,0.7339556813240051 +karman_re200,target,6,2.4,velocity,lower_ux,1.0104835033416748 +karman_re200,target,6,2.4,velocity,lower_uy,0.4211578071117401 +karman_re200,target,7,2.8,velocity,upper_ux,0.9760168194770813 +karman_re200,target,7,2.8,velocity,upper_uy,0.4418318569660187 +karman_re200,target,7,2.8,velocity,center_ux,1.1507891416549683 +karman_re200,target,7,2.8,velocity,center_uy,0.7573500275611877 +karman_re200,target,7,2.8,velocity,lower_ux,1.1349583864212036 +karman_re200,target,7,2.8,velocity,lower_uy,0.4157588481903076 +karman_re200,target,8,3.2,velocity,upper_ux,0.8430190086364746 +karman_re200,target,8,3.2,velocity,upper_uy,0.4300360083580017 +karman_re200,target,8,3.2,velocity,center_ux,1.1734570264816284 +karman_re200,target,8,3.2,velocity,center_uy,0.7630838751792908 +karman_re200,target,8,3.2,velocity,lower_ux,1.2500563859939575 +karman_re200,target,8,3.2,velocity,lower_uy,0.3863942623138428 +karman_re200,target,9,3.6,velocity,upper_ux,0.7179440259933472 +karman_re200,target,9,3.6,velocity,upper_uy,0.32719001173973083 +karman_re200,target,9,3.6,velocity,center_ux,1.206641674041748 +karman_re200,target,9,3.6,velocity,center_uy,0.6187921762466431 +karman_re200,target,9,3.6,velocity,lower_ux,1.3466691970825195 +karman_re200,target,9,3.6,velocity,lower_uy,0.2852133512496948 +karman_re200,target,10,4.0,velocity,upper_ux,0.641862154006958 +karman_re200,target,10,4.0,velocity,upper_uy,0.11890943348407745 +karman_re200,target,10,4.0,velocity,center_ux,1.225929856300354 +karman_re200,target,10,4.0,velocity,center_uy,0.2247874140739441 +karman_re200,target,10,4.0,velocity,lower_ux,1.406314730644226 +karman_re200,target,10,4.0,velocity,lower_uy,0.12264910340309143 +karman_re200,target,11,4.4,velocity,upper_ux,0.6573916077613831 +karman_re200,target,11,4.4,velocity,upper_uy,-0.13155923783779144 +karman_re200,target,11,4.4,velocity,center_ux,1.2177956104278564 +karman_re200,target,11,4.4,velocity,center_uy,-0.2735345661640167 +karman_re200,target,11,4.4,velocity,lower_ux,1.3959629535675049 +karman_re200,target,11,4.4,velocity,lower_uy,-0.07475581020116806 +karman_re200,target,12,4.8,velocity,upper_ux,0.7577229142189026 +karman_re200,target,12,4.8,velocity,upper_uy,-0.31955114006996155 +karman_re200,target,12,4.8,velocity,center_ux,1.1882696151733398 +karman_re200,target,12,4.8,velocity,center_uy,-0.619774580001831 +karman_re200,target,12,4.8,velocity,lower_ux,1.316990852355957 +karman_re200,target,12,4.8,velocity,lower_uy,-0.24609069526195526 +karman_re200,target,13,5.2,velocity,upper_ux,0.8916172981262207 +karman_re200,target,13,5.2,velocity,upper_uy,-0.40398135781288147 +karman_re200,target,13,5.2,velocity,center_ux,1.1569353342056274 +karman_re200,target,13,5.2,velocity,center_uy,-0.7303186655044556 +karman_re200,target,13,5.2,velocity,lower_ux,1.2032806873321533 +karman_re200,target,13,5.2,velocity,lower_uy,-0.3553091287612915 +karman_re200,target,14,5.6,velocity,upper_ux,1.025417447090149 +karman_re200,target,14,5.6,velocity,upper_uy,-0.4143329858779907 +karman_re200,target,14,5.6,velocity,center_ux,1.1450507640838623 +karman_re200,target,14,5.6,velocity,center_uy,-0.7382473945617676 +karman_re200,target,14,5.6,velocity,lower_ux,1.084751009941101 +karman_re200,target,14,5.6,velocity,lower_uy,-0.41838526725769043 +karman_re200,target,15,6.0,velocity,upper_ux,1.1510231494903564 +karman_re200,target,15,6.0,velocity,upper_uy,-0.4091912508010864 +karman_re200,target,15,6.0,velocity,center_ux,1.1564668416976929 +karman_re200,target,15,6.0,velocity,center_uy,-0.762835681438446 +karman_re200,target,15,6.0,velocity,lower_ux,0.9604673981666565 +karman_re200,target,15,6.0,velocity,lower_uy,-0.45166605710983276 +karman_re200,target,16,6.4,velocity,upper_ux,1.2637485265731812 +karman_re200,target,16,6.4,velocity,upper_uy,-0.3710853159427643 +karman_re200,target,16,6.4,velocity,center_ux,1.1860191822052002 +karman_re200,target,16,6.4,velocity,center_uy,-0.7552403807640076 +karman_re200,target,16,6.4,velocity,lower_ux,0.8256957530975342 +karman_re200,target,16,6.4,velocity,lower_uy,-0.4293355941772461 +karman_re200,target,17,6.8,velocity,upper_ux,1.353796362876892 +karman_re200,target,17,6.8,velocity,upper_uy,-0.26059290766716003 +karman_re200,target,17,6.8,velocity,center_ux,1.221648931503296 +karman_re200,target,17,6.8,velocity,center_uy,-0.5754673480987549 +karman_re200,target,17,6.8,velocity,lower_ux,0.7016187906265259 +karman_re200,target,17,6.8,velocity,lower_uy,-0.3088792562484741 +karman_re200,target,18,7.2,velocity,upper_ux,1.4028067588806152 +karman_re200,target,18,7.2,velocity,upper_uy,-0.09307043254375458 +karman_re200,target,18,7.2,velocity,center_ux,1.2388612031936646 +karman_re200,target,18,7.2,velocity,center_uy,-0.1522367149591446 +karman_re200,target,18,7.2,velocity,lower_ux,0.634928822517395 +karman_re200,target,18,7.2,velocity,lower_uy,-0.08428356796503067 +karman_re200,target,19,7.6,velocity,upper_ux,1.3814630508422852 +karman_re200,target,19,7.6,velocity,upper_uy,0.10046349465847015 +karman_re200,target,19,7.6,velocity,center_ux,1.2260018587112427 +karman_re200,target,19,7.6,velocity,center_uy,0.33625325560569763 +karman_re200,target,19,7.6,velocity,lower_ux,0.6646565794944763 +karman_re200,target,19,7.6,velocity,lower_uy,0.16781961917877197 +karman_re200,target,20,8.0,velocity,upper_ux,1.2985467910766602 +karman_re200,target,20,8.0,velocity,upper_uy,0.2606963813304901 +karman_re200,target,20,8.0,velocity,center_ux,1.1933276653289795 +karman_re200,target,20,8.0,velocity,center_uy,0.6455028057098389 +karman_re200,target,20,8.0,velocity,lower_ux,0.7761998772621155 +karman_re200,target,20,8.0,velocity,lower_uy,0.34359779953956604 +karman_re200,target,21,8.4,velocity,upper_ux,1.1860857009887695 +karman_re200,target,21,8.4,velocity,upper_uy,0.36063870787620544 +karman_re200,target,21,8.4,velocity,center_ux,1.1613575220108032 +karman_re200,target,21,8.4,velocity,center_uy,0.7305742502212524 +karman_re200,target,21,8.4,velocity,lower_ux,0.9140399098396301 +karman_re200,target,21,8.4,velocity,lower_uy,0.41472697257995605 +karman_re200,target,22,8.8,velocity,upper_ux,1.067046880722046 +karman_re200,target,22,8.8,velocity,upper_uy,0.4194209575653076 +karman_re200,target,22,8.8,velocity,center_ux,1.148269534111023 +karman_re200,target,22,8.8,velocity,center_uy,0.7379599213600159 +karman_re200,target,22,8.8,velocity,lower_ux,1.046012043952942 +karman_re200,target,22,8.8,velocity,lower_uy,0.41831013560295105 +karman_re200,target,23,9.2,velocity,upper_ux,0.9405878186225891 +karman_re200,target,23,9.2,velocity,upper_uy,0.4471532106399536 +karman_re200,target,23,9.2,velocity,center_ux,1.1583489179611206 +karman_re200,target,23,9.2,velocity,center_uy,0.7653247117996216 +karman_re200,target,23,9.2,velocity,lower_ux,1.169142723083496 +karman_re200,target,23,9.2,velocity,lower_uy,0.4118151366710663 +karman_re200,target,24,9.6,velocity,upper_ux,0.8051714301109314 +karman_re200,target,24,9.6,velocity,upper_uy,0.41343697905540466 +karman_re200,target,24,9.6,velocity,center_ux,1.1855851411819458 +karman_re200,target,24,9.6,velocity,center_uy,0.7441555261611938 +karman_re200,target,24,9.6,velocity,lower_ux,1.278377890586853 +karman_re200,target,24,9.6,velocity,lower_uy,0.3637755215167999 +karman_re200,target,25,10.0,velocity,upper_ux,0.687725841999054 +karman_re200,target,25,10.0,velocity,upper_uy,0.27866002917289734 +karman_re200,target,25,10.0,velocity,center_ux,1.2175681591033936 +karman_re200,target,25,10.0,velocity,center_uy,0.5301482677459717 +karman_re200,target,25,10.0,velocity,lower_ux,1.3658299446105957 +karman_re200,target,25,10.0,velocity,lower_uy,0.2437947392463684 +karman_re200,target,26,10.4,velocity,upper_ux,0.635830819606781 +karman_re200,target,26,10.4,velocity,upper_uy,0.04693144932389259 +karman_re200,target,26,10.4,velocity,center_ux,1.2311476469039917 +karman_re200,target,26,10.4,velocity,center_uy,0.08206363022327423 +karman_re200,target,26,10.4,velocity,lower_ux,1.4092247486114502 +karman_re200,target,26,10.4,velocity,lower_uy,0.06810541450977325 +karman_re200,target,27,10.8,velocity,upper_ux,0.6793832182884216 +karman_re200,target,27,10.8,velocity,upper_uy,-0.19684305787086487 +karman_re200,target,27,10.8,velocity,center_ux,1.2151103019714355 +karman_re200,target,27,10.8,velocity,center_uy,-0.3953748643398285 +karman_re200,target,27,10.8,velocity,lower_ux,1.3776779174804688 +karman_re200,target,27,10.8,velocity,lower_uy,-0.12706737220287323 +karman_re200,target,28,11.2,velocity,upper_ux,0.7956826686859131 +karman_re200,target,28,11.2,velocity,upper_uy,-0.35577720403671265 +karman_re200,target,28,11.2,velocity,center_ux,1.1815835237503052 +karman_re200,target,28,11.2,velocity,center_uy,-0.6704037189483643 +karman_re200,target,28,11.2,velocity,lower_ux,1.2858598232269287 +karman_re200,target,28,11.2,velocity,lower_uy,-0.2809373736381531 +karman_re200,target,29,11.6,velocity,upper_ux,0.9316976070404053 +karman_re200,target,29,11.6,velocity,upper_uy,-0.41450396180152893 +karman_re200,target,29,11.6,velocity,center_ux,1.152705430984497 +karman_re200,target,29,11.6,velocity,center_uy,-0.7340231537818909 +karman_re200,target,29,11.6,velocity,lower_ux,1.169472098350525 +karman_re200,target,29,11.6,velocity,lower_uy,-0.3737452030181885 +karman_re200,target,30,12.0,velocity,upper_ux,1.0615184307098389 +karman_re200,target,30,12.0,velocity,upper_uy,-0.4146673083305359 +karman_re200,target,30,12.0,velocity,center_ux,1.1443812847137451 +karman_re200,target,30,12.0,velocity,center_uy,-0.7417630553245544 +karman_re200,target,30,12.0,velocity,lower_ux,1.0489134788513184 +karman_re200,target,30,12.0,velocity,lower_uy,-0.4281848967075348 +karman_re200,target,31,12.4,velocity,upper_ux,1.1848807334899902 +karman_re200,target,31,12.4,velocity,upper_uy,-0.40724116563796997 +karman_re200,target,31,12.4,velocity,center_ux,1.1602994203567505 +karman_re200,target,31,12.4,velocity,center_uy,-0.7686947584152222 +karman_re200,target,31,12.4,velocity,lower_ux,0.9223108887672424 +karman_re200,target,31,12.4,velocity,lower_uy,-0.4498228430747986 +karman_re200,target,32,12.8,velocity,upper_ux,1.293351173400879 +karman_re200,target,32,12.8,velocity,upper_uy,-0.34908121824264526 +karman_re200,target,32,12.8,velocity,center_ux,1.1924902200698853 +karman_re200,target,32,12.8,velocity,center_uy,-0.730038046836853 +karman_re200,target,32,12.8,velocity,lower_ux,0.7884556651115417 +karman_re200,target,32,12.8,velocity,lower_uy,-0.40411999821662903 +karman_re200,target,33,13.2,velocity,upper_ux,1.375796914100647 +karman_re200,target,33,13.2,velocity,upper_uy,-0.22036150097846985 +karman_re200,target,33,13.2,velocity,center_ux,1.2235949039459229 +karman_re200,target,33,13.2,velocity,center_uy,-0.4791675806045532 +karman_re200,target,33,13.2,velocity,lower_ux,0.6755401492118835 +karman_re200,target,33,13.2,velocity,lower_uy,-0.25323954224586487 +karman_re200,target,34,13.6,velocity,upper_ux,1.4083057641983032 +karman_re200,target,34,13.6,velocity,upper_uy,-0.03894345089793205 +karman_re200,target,34,13.6,velocity,center_ux,1.2328407764434814 +karman_re200,target,34,13.6,velocity,center_uy,-0.010204322636127472 +karman_re200,target,34,13.6,velocity,lower_ux,0.6346439123153687 +karman_re200,target,34,13.6,velocity,lower_uy,-0.012071236036717892 +karman_re200,target,35,14.0,velocity,upper_ux,1.3653892278671265 +karman_re200,target,35,14.0,velocity,upper_uy,0.1531003713607788 +karman_re200,target,35,14.0,velocity,center_ux,1.21250581741333 +karman_re200,target,35,14.0,velocity,center_uy,0.44930562376976013 +karman_re200,target,35,14.0,velocity,lower_ux,0.6899386644363403 +karman_re200,target,35,14.0,velocity,lower_uy,0.2254880666732788 +karman_re200,target,36,14.4,velocity,upper_ux,1.2689892053604126 +karman_re200,target,36,14.4,velocity,upper_uy,0.29775139689445496 +karman_re200,target,36,14.4,velocity,center_ux,1.1786822080612183 +karman_re200,target,36,14.4,velocity,center_uy,0.6891308426856995 +karman_re200,target,36,14.4,velocity,lower_ux,0.8128244876861572 +karman_re200,target,36,14.4,velocity,lower_uy,0.36989647150039673 +karman_re200,target,37,14.8,velocity,upper_ux,1.1539078950881958 +karman_re200,target,37,14.8,velocity,upper_uy,0.3836990296840668 +karman_re200,target,37,14.8,velocity,center_ux,1.1539196968078613 +karman_re200,target,37,14.8,velocity,center_uy,0.7351001501083374 +karman_re200,target,37,14.8,velocity,lower_ux,0.9512467980384827 +karman_re200,target,37,14.8,velocity,lower_uy,0.41708534955978394 +karman_re200,target,38,15.2,velocity,upper_ux,1.0333783626556396 +karman_re200,target,38,15.2,velocity,upper_uy,0.43477562069892883 +karman_re200,target,38,15.2,velocity,center_ux,1.1498383283615112 +karman_re200,target,38,15.2,velocity,center_uy,0.7453796863555908 +karman_re200,target,38,15.2,velocity,lower_ux,1.0809522867202759 +karman_re200,target,38,15.2,velocity,lower_uy,0.4138626158237457 +karman_re200,target,39,15.6,velocity,upper_ux,0.9033491611480713 +karman_re200,target,39,15.6,velocity,upper_uy,0.44957491755485535 +karman_re200,target,39,15.6,velocity,center_ux,1.1677321195602417 +karman_re200,target,39,15.6,velocity,center_uy,0.7696046233177185 +karman_re200,target,39,15.6,velocity,lower_ux,1.201406478881836 +karman_re200,target,39,15.6,velocity,lower_uy,0.4026903510093689 +karman_re200,target,40,16.0,velocity,upper_ux,0.7685611844062805 +karman_re200,target,40,16.0,velocity,upper_uy,0.389913409948349 +karman_re200,target,40,16.0,velocity,center_ux,1.2010235786437988 +karman_re200,target,40,16.0,velocity,center_uy,0.7085239887237549 +karman_re200,target,40,16.0,velocity,lower_ux,1.3049408197402954 +karman_re200,target,40,16.0,velocity,lower_uy,0.333528071641922 +karman_re200,target,41,16.4,velocity,upper_ux,0.6623313426971436 +karman_re200,target,41,16.4,velocity,upper_uy,0.2218630164861679 +karman_re200,target,41,16.4,velocity,center_ux,1.2302378416061401 +karman_re200,target,41,16.4,velocity,center_uy,0.419784814119339 +karman_re200,target,41,16.4,velocity,lower_ux,1.3808982372283936 +karman_re200,target,41,16.4,velocity,lower_uy,0.1966715008020401 +karman_re200,target,42,16.8,velocity,upper_ux,0.6368335485458374 +karman_re200,target,42,16.8,velocity,upper_uy,-0.027209296822547913 +karman_re200,target,42,16.8,velocity,center_ux,1.2362816333770752 +karman_re200,target,42,16.8,velocity,center_uy,-0.06368447095155716 +karman_re200,target,42,16.8,velocity,lower_ux,1.404393196105957 +karman_re200,target,42,16.8,velocity,lower_uy,0.011648467741906643 +karman_re200,target,43,17.2,velocity,upper_ux,0.7072089314460754 +karman_re200,target,43,17.2,velocity,upper_uy,-0.25615394115448 +karman_re200,target,43,17.2,velocity,center_ux,1.2129466533660889 +karman_re200,target,43,17.2,velocity,center_uy,-0.4989297091960907 +karman_re200,target,43,17.2,velocity,lower_ux,1.353775143623352 +karman_re200,target,43,17.2,velocity,lower_uy,-0.17506526410579681 +karman_re200,target,44,17.6,velocity,upper_ux,0.834869921207428 +karman_re200,target,44,17.6,velocity,upper_uy,-0.38491272926330566 +karman_re200,target,44,17.6,velocity,center_ux,1.1763005256652832 +karman_re200,target,44,17.6,velocity,center_uy,-0.7023254632949829 +karman_re200,target,44,17.6,velocity,lower_ux,1.2524045705795288 +karman_re200,target,44,17.6,velocity,lower_uy,-0.30976688861846924 +karman_re200,target,45,18.0,velocity,upper_ux,0.9711685180664062 +karman_re200,target,45,18.0,velocity,upper_uy,-0.42059996724128723 +karman_re200,target,45,18.0,velocity,center_ux,1.1507586240768433 +karman_re200,target,45,18.0,velocity,center_uy,-0.7334863543510437 +karman_re200,target,45,18.0,velocity,lower_ux,1.1354271173477173 +karman_re200,target,45,18.0,velocity,lower_uy,-0.3886101245880127 +karman_re200,target,46,18.4,velocity,upper_ux,1.0981791019439697 +karman_re200,target,46,18.4,velocity,upper_uy,-0.4160737693309784 +karman_re200,target,46,18.4,velocity,center_ux,1.1469128131866455 +karman_re200,target,46,18.4,velocity,center_uy,-0.7482800483703613 +karman_re200,target,46,18.4,velocity,lower_ux,1.013472318649292 +karman_re200,target,46,18.4,velocity,lower_uy,-0.43523108959198 +karman_re200,target,47,18.8,velocity,upper_ux,1.2175639867782593 +karman_re200,target,47,18.8,velocity,upper_uy,-0.4010102152824402 +karman_re200,target,47,18.8,velocity,center_ux,1.1653474569320679 +karman_re200,target,47,18.8,velocity,center_uy,-0.7698569297790527 +karman_re200,target,47,18.8,velocity,lower_ux,0.8832124471664429 +karman_re200,target,47,18.8,velocity,lower_uy,-0.44228801131248474 +karman_re200,target,48,19.2,velocity,upper_ux,1.3209588527679443 +karman_re200,target,48,19.2,velocity,upper_uy,-0.32145699858665466 +karman_re200,target,48,19.2,velocity,center_ux,1.198513388633728 +karman_re200,target,48,19.2,velocity,center_uy,-0.6868135929107666 +karman_re200,target,48,19.2,velocity,lower_ux,0.7525637149810791 +karman_re200,target,48,19.2,velocity,lower_uy,-0.3701340854167938 +karman_re200,target,49,19.6,velocity,upper_ux,1.3941837549209595 +karman_re200,target,49,19.6,velocity,upper_uy,-0.17551545798778534 +karman_re200,target,49,19.6,velocity,center_ux,1.2240700721740723 +karman_re200,target,49,19.6,velocity,center_uy,-0.3631519675254822 +karman_re200,target,49,19.6,velocity,lower_ux,0.6557188630104065 +karman_re200,target,49,19.6,velocity,lower_uy,-0.19002456963062286 +karman_re200,target,50,20.0,velocity,upper_ux,1.4065176248550415 +karman_re200,target,50,20.0,velocity,upper_uy,0.016605425626039505 +karman_re200,target,50,20.0,velocity,center_ux,1.2244288921356201 +karman_re200,target,50,20.0,velocity,center_uy,0.1318795531988144 +karman_re200,target,50,20.0,velocity,lower_ux,0.6419094800949097 +karman_re200,target,50,20.0,velocity,lower_uy,0.059603553265333176 +karman_re200,target,51,20.4,velocity,upper_ux,1.3448197841644287 +karman_re200,target,51,20.4,velocity,upper_uy,0.20150308310985565 +karman_re200,target,51,20.4,velocity,center_ux,1.1992853879928589 +karman_re200,target,51,20.4,velocity,center_uy,0.5436105132102966 +karman_re200,target,51,20.4,velocity,lower_ux,0.7212957739830017 +karman_re200,target,51,20.4,velocity,lower_uy,0.2752542197704315 +karman_re200,target,52,20.8,velocity,upper_ux,1.237799048423767 +karman_re200,target,52,20.8,velocity,upper_uy,0.32907459139823914 +karman_re200,target,52,20.8,velocity,center_ux,1.1658875942230225 +karman_re200,target,52,20.8,velocity,center_uy,0.7162047028541565 +karman_re200,target,52,20.8,velocity,lower_ux,0.8509779572486877 +karman_re200,target,52,20.8,velocity,lower_uy,0.3891383409500122 +karman_re200,target,53,21.2,velocity,upper_ux,1.120484471321106 +karman_re200,target,53,21.2,velocity,upper_uy,0.4027974605560303 +karman_re200,target,53,21.2,velocity,center_ux,1.1476950645446777 +karman_re200,target,53,21.2,velocity,center_uy,0.7366076707839966 +karman_re200,target,53,21.2,velocity,lower_ux,0.9873722195625305 +karman_re200,target,53,21.2,velocity,lower_uy,0.41598522663116455 +karman_re200,target,54,21.6,velocity,upper_ux,0.998557984828949 +karman_re200,target,54,21.6,velocity,upper_uy,0.4458339214324951 +karman_re200,target,54,21.6,velocity,center_ux,1.1521968841552734 +karman_re200,target,54,21.6,velocity,center_uy,0.754100501537323 +karman_re200,target,54,21.6,velocity,lower_ux,1.115218997001648 +karman_re200,target,54,21.6,velocity,lower_uy,0.41097214818000793 +karman_re200,target,55,22.0,velocity,upper_ux,0.8655806183815002 +karman_re200,target,55,22.0,velocity,upper_uy,0.44438332319259644 +karman_re200,target,55,22.0,velocity,center_ux,1.1766324043273926 +karman_re200,target,55,22.0,velocity,center_uy,0.7675514221191406 +karman_re200,target,55,22.0,velocity,lower_ux,1.2323395013809204 +karman_re200,target,55,22.0,velocity,lower_uy,0.38968217372894287 +karman_re200,target,56,22.4,velocity,upper_ux,0.7342711091041565 +karman_re200,target,56,22.4,velocity,upper_uy,0.35611987113952637 +karman_re200,target,56,22.4,velocity,center_ux,1.2129136323928833 +karman_re200,target,56,22.4,velocity,center_uy,0.654600977897644 +karman_re200,target,56,22.4,velocity,lower_ux,1.329644799232483 +karman_re200,target,56,22.4,velocity,lower_uy,0.2997063398361206 +karman_re200,target,57,22.8,velocity,upper_ux,0.6449936628341675 +karman_re200,target,57,22.8,velocity,upper_uy,0.15777581930160522 +karman_re200,target,57,22.8,velocity,center_ux,1.2375222444534302 +karman_re200,target,57,22.8,velocity,center_uy,0.2952122986316681 +karman_re200,target,57,22.8,velocity,lower_ux,1.3937873840332031 +karman_re200,target,57,22.8,velocity,lower_uy,0.14741525053977966 +karman_re200,target,58,23.2,velocity,upper_ux,0.6459389328956604 +karman_re200,target,58,23.2,velocity,upper_uy,-0.09829483181238174 +karman_re200,target,58,23.2,velocity,center_ux,1.2338944673538208 +karman_re200,target,58,23.2,velocity,center_uy,-0.20211847126483917 +karman_re200,target,58,23.2,velocity,lower_ux,1.395192265510559 +karman_re200,target,58,23.2,velocity,lower_uy,-0.0437837652862072 +karman_re200,target,59,23.6,velocity,upper_ux,0.7389390468597412 +karman_re200,target,59,23.6,velocity,upper_uy,-0.30418217182159424 +karman_re200,target,59,23.6,velocity,center_ux,1.205032229423523 +karman_re200,target,59,23.6,velocity,center_uy,-0.5808201432228088 +karman_re200,target,59,23.6,velocity,lower_ux,1.327776312828064 +karman_re200,target,59,23.6,velocity,lower_uy,-0.21891333162784576 +karman_re200,target,60,24.0,velocity,upper_ux,0.8737069964408875 +karman_re200,target,60,24.0,velocity,upper_uy,-0.40373706817626953 +karman_re200,target,60,24.0,velocity,center_ux,1.169332504272461 +karman_re200,target,60,24.0,velocity,center_uy,-0.7208412885665894 +karman_re200,target,60,24.0,velocity,lower_ux,1.2200731039047241 +karman_re200,target,60,24.0,velocity,lower_uy,-0.3358183205127716 +karman_re200,target,61,24.4,velocity,upper_ux,1.00818932056427 +karman_re200,target,61,24.4,velocity,upper_uy,-0.42095494270324707 +karman_re200,target,61,24.4,velocity,center_ux,1.1489416360855103 +karman_re200,target,61,24.4,velocity,center_uy,-0.7341534495353699 +karman_re200,target,61,24.4,velocity,lower_ux,1.1021251678466797 +karman_re200,target,61,24.4,velocity,lower_uy,-0.40382835268974304 +karman_re200,target,62,24.8,velocity,upper_ux,1.133556842803955 +karman_re200,target,62,24.8,velocity,upper_uy,-0.4154476225376129 +karman_re200,target,62,24.8,velocity,center_ux,1.151857852935791 +karman_re200,target,62,24.8,velocity,center_uy,-0.7570244073867798 +karman_re200,target,62,24.8,velocity,lower_ux,0.9786553382873535 +karman_re200,target,62,24.8,velocity,lower_uy,-0.4422169029712677 +karman_re200,target,63,25.2,velocity,upper_ux,1.248250126838684 +karman_re200,target,63,25.2,velocity,upper_uy,-0.38680577278137207 +karman_re200,target,63,25.2,velocity,center_ux,1.1741023063659668 +karman_re200,target,63,25.2,velocity,center_uy,-0.7634487748146057 +karman_re200,target,63,25.2,velocity,lower_ux,0.8449835181236267 +karman_re200,target,63,25.2,velocity,lower_uy,-0.4313426911830902 +karman_re200,target,64,25.6,velocity,upper_ux,1.3443163633346558 +karman_re200,target,64,25.6,velocity,upper_uy,-0.28668928146362305 +karman_re200,target,64,25.6,velocity,center_ux,1.207107424736023 +karman_re200,target,64,25.6,velocity,center_uy,-0.6221605539321899 +karman_re200,target,64,25.6,velocity,lower_ux,0.7188525199890137 +karman_re200,target,64,25.6,velocity,lower_uy,-0.32978886365890503 +karman_re200,target,65,26.0,velocity,upper_ux,1.4050379991531372 +karman_re200,target,65,26.0,velocity,upper_uy,-0.12516918778419495 +karman_re200,target,65,26.0,velocity,center_ux,1.2275056838989258 +karman_re200,target,65,26.0,velocity,center_uy,-0.23132610321044922 +karman_re200,target,65,26.0,velocity,lower_ux,0.642253041267395 +karman_re200,target,65,26.0,velocity,lower_uy,-0.12223576754331589 +karman_re200,target,66,26.4,velocity,upper_ux,1.395917534828186 +karman_re200,target,66,26.4,velocity,upper_uy,0.07159676402807236 +karman_re200,target,66,26.4,velocity,center_ux,1.2196965217590332 +karman_re200,target,66,26.4,velocity,center_uy,0.26710426807403564 +karman_re200,target,66,26.4,velocity,lower_ux,0.6566170454025269 +karman_re200,target,66,26.4,velocity,lower_uy,0.1289544403553009 +karman_re200,target,67,26.8,velocity,upper_ux,1.3179707527160645 +karman_re200,target,67,26.8,velocity,upper_uy,0.24324443936347961 +karman_re200,target,67,26.8,velocity,center_ux,1.1899330615997314 +karman_re200,target,67,26.8,velocity,center_uy,0.616279125213623 +karman_re200,target,67,26.8,velocity,lower_ux,0.7563076615333557 +karman_re200,target,67,26.8,velocity,lower_uy,0.31857284903526306 +karman_re200,target,68,27.2,velocity,upper_ux,1.2050458192825317 +karman_re200,target,68,27.2,velocity,upper_uy,0.35312941670417786 +karman_re200,target,68,27.2,velocity,center_ux,1.1582468748092651 +karman_re200,target,68,27.2,velocity,center_uy,0.7293370962142944 +karman_re200,target,68,27.2,velocity,lower_ux,0.8906108736991882 +karman_re200,target,68,27.2,velocity,lower_uy,0.4042978286743164 +karman_re200,target,69,27.6,velocity,upper_ux,1.0856354236602783 +karman_re200,target,69,27.6,velocity,upper_uy,0.41654762625694275 +karman_re200,target,69,27.6,velocity,center_ux,1.1444200277328491 +karman_re200,target,69,27.6,velocity,center_uy,0.7376794219017029 +karman_re200,target,69,27.6,velocity,lower_ux,1.0234659910202026 +karman_re200,target,69,27.6,velocity,lower_uy,0.4152083694934845 +karman_re200,target,70,28.0,velocity,upper_ux,0.9618372321128845 +karman_re200,target,70,28.0,velocity,upper_uy,0.4502629041671753 +karman_re200,target,70,28.0,velocity,center_ux,1.1550641059875488 +karman_re200,target,70,28.0,velocity,center_uy,0.7623516321182251 +karman_re200,target,70,28.0,velocity,lower_ux,1.149287462234497 +karman_re200,target,70,28.0,velocity,lower_uy,0.4101993441581726 +karman_re200,target,71,28.4,velocity,upper_ux,0.827806830406189 +karman_re200,target,71,28.4,velocity,upper_uy,0.42909666895866394 +karman_re200,target,71,28.4,velocity,center_ux,1.1841082572937012 +karman_re200,target,71,28.4,velocity,center_uy,0.7564288973808289 +karman_re200,target,71,28.4,velocity,lower_ux,1.2628748416900635 +karman_re200,target,71,28.4,velocity,lower_uy,0.3730561137199402 +karman_re200,target,72,28.8,velocity,upper_ux,0.7032726407051086 +karman_re200,target,72,28.8,velocity,upper_uy,0.3107599914073944 +karman_re200,target,72,28.8,velocity,center_ux,1.2188533544540405 +karman_re200,target,72,28.8,velocity,center_uy,0.5805866718292236 +karman_re200,target,72,28.8,velocity,lower_ux,1.3534611463546753 +karman_re200,target,72,28.8,velocity,lower_uy,0.26345720887184143 +karman_re200,target,73,29.2,velocity,upper_ux,0.6360310912132263 +karman_re200,target,73,29.2,velocity,upper_uy,0.08818109333515167 +karman_re200,target,73,29.2,velocity,center_ux,1.2366962432861328 +karman_re200,target,73,29.2,velocity,center_uy,0.16002362966537476 +karman_re200,target,73,29.2,velocity,lower_ux,1.4042106866836548 +karman_re200,target,73,29.2,velocity,lower_uy,0.09608829766511917 +karman_re200,target,74,29.6,velocity,upper_ux,0.663808286190033 +karman_re200,target,74,29.6,velocity,upper_uy,-0.16356953978538513 +karman_re200,target,74,29.6,velocity,center_ux,1.2241325378417969 +karman_re200,target,74,29.6,velocity,center_uy,-0.330191969871521 +karman_re200,target,74,29.6,velocity,lower_ux,1.3834909200668335 +karman_re200,target,74,29.6,velocity,lower_uy,-0.09838373214006424 +karman_re200,target,75,30.0,velocity,upper_ux,0.7735183238983154 +karman_re200,target,75,30.0,velocity,upper_uy,-0.3405058681964874 +karman_re200,target,75,30.0,velocity,center_ux,1.1916369199752808 +karman_re200,target,75,30.0,velocity,center_uy,-0.6435020565986633 +karman_re200,target,75,30.0,velocity,lower_ux,1.3002253770828247 +karman_re200,target,75,30.0,velocity,lower_uy,-0.26004406809806824 +karman_re200,target,76,30.4,velocity,upper_ux,0.9116578102111816 +karman_re200,target,76,30.4,velocity,upper_uy,-0.4130423665046692 +karman_re200,target,76,30.4,velocity,center_ux,1.1609128713607788 +karman_re200,target,76,30.4,velocity,center_uy,-0.7311025857925415 +karman_re200,target,76,30.4,velocity,lower_ux,1.1882047653198242 +karman_re200,target,76,30.4,velocity,lower_uy,-0.36102867126464844 +karman_re200,target,77,30.8,velocity,upper_ux,1.0439753532409668 +karman_re200,target,77,30.8,velocity,upper_uy,-0.4172816574573517 +karman_re200,target,77,30.8,velocity,center_ux,1.1484836339950562 +karman_re200,target,77,30.8,velocity,center_uy,-0.7383119463920593 +karman_re200,target,77,30.8,velocity,lower_ux,1.0691628456115723 +karman_re200,target,77,30.8,velocity,lower_uy,-0.4203415811061859 +karman_re200,target,78,31.2,velocity,upper_ux,1.1671699285507202 +karman_re200,target,78,31.2,velocity,upper_uy,-0.41084006428718567 +karman_re200,target,78,31.2,velocity,center_ux,1.1590708494186401 +karman_re200,target,78,31.2,velocity,center_uy,-0.7652228474617004 +karman_re200,target,78,31.2,velocity,lower_ux,0.9426012635231018 +karman_re200,target,78,31.2,velocity,lower_uy,-0.44871699810028076 +karman_re200,target,79,31.6,velocity,upper_ux,1.2770416736602783 +karman_re200,target,79,31.6,velocity,upper_uy,-0.36369210481643677 +karman_re200,target,79,31.6,velocity,center_ux,1.1876366138458252 +karman_re200,target,79,31.6,velocity,center_uy,-0.7450435757637024 +karman_re200,target,79,31.6,velocity,lower_ux,0.8073951005935669 +karman_re200,target,79,31.6,velocity,lower_uy,-0.4159716069698334 +karman_re200,target,80,32.0,velocity,upper_ux,1.3635187149047852 +karman_re200,target,80,32.0,velocity,upper_uy,-0.24465186893939972 +karman_re200,target,80,32.0,velocity,center_ux,1.2197275161743164 +karman_re200,target,80,32.0,velocity,center_uy,-0.5338699817657471 +karman_re200,target,80,32.0,velocity,lower_ux,0.688198447227478 +karman_re200,target,80,32.0,velocity,lower_uy,-0.28200316429138184 +karman_re200,target,81,32.4,velocity,upper_ux,1.407414197921753 +karman_re200,target,81,32.4,velocity,upper_uy,-0.07024232298135757 +karman_re200,target,81,32.4,velocity,center_ux,1.2340987920761108 +karman_re200,target,81,32.4,velocity,center_uy,-0.08812431991100311 +karman_re200,target,81,32.4,velocity,lower_ux,0.6351139545440674 +karman_re200,target,81,32.4,velocity,lower_uy,-0.05009385943412781 +karman_re200,target,82,32.8,velocity,upper_ux,1.3774217367172241 +karman_re200,target,82,32.8,velocity,upper_uy,0.12411142140626907 +karman_re200,target,82,32.8,velocity,center_ux,1.2185637950897217 +karman_re200,target,82,32.8,velocity,center_uy,0.3900667130947113 +karman_re200,target,82,32.8,velocity,lower_ux,0.6781561374664307 +karman_re200,target,82,32.8,velocity,lower_uy,0.19525015354156494 +karman_re200,target,83,33.2,velocity,upper_ux,1.2863495349884033 +karman_re200,target,83,33.2,velocity,upper_uy,0.27812135219573975 +karman_re200,target,83,33.2,velocity,center_ux,1.1840832233428955 +karman_re200,target,83,33.2,velocity,center_uy,0.6678093075752258 +karman_re200,target,83,33.2,velocity,lower_ux,0.794033408164978 +karman_re200,target,83,33.2,velocity,lower_uy,0.35597896575927734 +karman_re200,target,84,33.6,velocity,upper_ux,1.170925498008728 +karman_re200,target,84,33.6,velocity,upper_uy,0.3713666498661041 +karman_re200,target,84,33.6,velocity,center_ux,1.1545219421386719 +karman_re200,target,84,33.6,velocity,center_uy,0.7331089973449707 +karman_re200,target,84,33.6,velocity,lower_ux,0.9307208061218262 +karman_re200,target,84,33.6,velocity,lower_uy,0.4156276285648346 +karman_re200,target,85,34.0,velocity,upper_ux,1.0504262447357178 +karman_re200,target,85,34.0,velocity,upper_uy,0.4261873960494995 +karman_re200,target,85,34.0,velocity,center_ux,1.144882321357727 +karman_re200,target,85,34.0,velocity,center_uy,0.7409459948539734 +karman_re200,target,85,34.0,velocity,lower_ux,1.0605485439300537 +karman_re200,target,85,34.0,velocity,lower_uy,0.41590020060539246 +karman_re200,target,86,34.4,velocity,upper_ux,0.9233115911483765 +karman_re200,target,86,34.4,velocity,upper_uy,0.44838446378707886 +karman_re200,target,86,34.4,velocity,center_ux,1.1588971614837646 +karman_re200,target,86,34.4,velocity,center_uy,0.7682709693908691 +karman_re200,target,86,34.4,velocity,lower_ux,1.1831501722335815 +karman_re200,target,86,34.4,velocity,lower_uy,0.4085901379585266 +karman_re200,target,87,34.8,velocity,upper_ux,0.7901744842529297 +karman_re200,target,87,34.8,velocity,upper_uy,0.40402400493621826 +karman_re200,target,87,34.8,velocity,center_ux,1.1905635595321655 +karman_re200,target,87,34.8,velocity,center_uy,0.7318307757377625 +karman_re200,target,87,34.8,velocity,lower_ux,1.2924822568893433 +karman_re200,target,87,34.8,velocity,lower_uy,0.3514576852321625 +karman_re200,target,88,35.2,velocity,upper_ux,0.6771138906478882 +karman_re200,target,88,35.2,velocity,upper_uy,0.2551807761192322 +karman_re200,target,88,35.2,velocity,center_ux,1.221301555633545 +karman_re200,target,88,35.2,velocity,center_uy,0.4848187565803528 +karman_re200,target,88,35.2,velocity,lower_ux,1.3759150505065918 +karman_re200,target,88,35.2,velocity,lower_uy,0.22342568635940552 +karman_re200,target,89,35.6,velocity,upper_ux,0.6348561644554138 +karman_re200,target,89,35.6,velocity,upper_uy,0.015688400715589523 +karman_re200,target,89,35.6,velocity,center_ux,1.2304590940475464 +karman_re200,target,89,35.6,velocity,center_uy,0.017614608630537987 +karman_re200,target,89,35.6,velocity,lower_ux,1.4094332456588745 +karman_re200,target,89,35.6,velocity,lower_uy,0.0420549213886261 +karman_re200,target,90,36.0,velocity,upper_ux,0.6893252730369568 +karman_re200,target,90,36.0,velocity,upper_uy,-0.22191494703292847 +karman_re200,target,90,36.0,velocity,center_ux,1.2112548351287842 +karman_re200,target,90,36.0,velocity,center_uy,-0.4443555772304535 +karman_re200,target,90,36.0,velocity,lower_ux,1.3679473400115967 +karman_re200,target,90,36.0,velocity,lower_uy,-0.15103240311145782 +karman_re200,target,91,36.4,velocity,upper_ux,0.8106051683425903 +karman_re200,target,91,36.4,velocity,upper_uy,-0.3675524890422821 +karman_re200,target,91,36.4,velocity,center_ux,1.1772516965866089 +karman_re200,target,91,36.4,velocity,center_uy,-0.6879708766937256 +karman_re200,target,91,36.4,velocity,lower_ux,1.2708936929702759 +karman_re200,target,91,36.4,velocity,lower_uy,-0.29703548550605774 +karman_re200,target,92,36.8,velocity,upper_ux,0.9486479163169861 +karman_re200,target,92,36.8,velocity,upper_uy,-0.41593387722969055 +karman_re200,target,92,36.8,velocity,center_ux,1.1527515649795532 +karman_re200,target,92,36.8,velocity,center_uy,-0.7355068325996399 +karman_re200,target,92,36.8,velocity,lower_ux,1.1555049419403076 +karman_re200,target,92,36.8,velocity,lower_uy,-0.38370281457901 +karman_re200,target,93,37.2,velocity,upper_ux,1.0789462327957153 +karman_re200,target,93,37.2,velocity,upper_uy,-0.41314247250556946 +karman_re200,target,93,37.2,velocity,center_ux,1.149382472038269 +karman_re200,target,93,37.2,velocity,center_uy,-0.7452686429023743 +karman_re200,target,93,37.2,velocity,lower_ux,1.0354286432266235 +karman_re200,target,93,37.2,velocity,lower_uy,-0.4351423382759094 +karman_re200,target,94,37.6,velocity,upper_ux,1.199475884437561 +karman_re200,target,94,37.6,velocity,upper_uy,-0.4024425745010376 +karman_re200,target,94,37.6,velocity,center_ux,1.1674084663391113 +karman_re200,target,94,37.6,velocity,center_uy,-0.7696486711502075 +karman_re200,target,94,37.6,velocity,lower_ux,0.9053913354873657 +karman_re200,target,94,37.6,velocity,lower_uy,-0.4507010281085968 +karman_re200,target,95,38.0,velocity,upper_ux,1.3036162853240967 +karman_re200,target,95,38.0,velocity,upper_uy,-0.33445054292678833 +karman_re200,target,95,38.0,velocity,center_ux,1.2014381885528564 +karman_re200,target,95,38.0,velocity,center_uy,-0.7108307480812073 +karman_re200,target,95,38.0,velocity,lower_ux,0.7707217335700989 +karman_re200,target,95,38.0,velocity,lower_uy,-0.39244043827056885 +karman_re200,target,96,38.4,velocity,upper_ux,1.3800028562545776 +karman_re200,target,96,38.4,velocity,upper_uy,-0.19849619269371033 +karman_re200,target,96,38.4,velocity,center_ux,1.2313491106033325 +karman_re200,target,96,38.4,velocity,center_uy,-0.4256569743156433 +karman_re200,target,96,38.4,velocity,lower_ux,0.6635120511054993 +karman_re200,target,96,38.4,velocity,lower_uy,-0.2256368100643158 +karman_re200,target,97,38.8,velocity,upper_ux,1.4035354852676392 +karman_re200,target,97,38.8,velocity,upper_uy,-0.014278455637395382 +karman_re200,target,97,38.8,velocity,center_ux,1.2371420860290527 +karman_re200,target,97,38.8,velocity,center_uy,0.05635342001914978 +karman_re200,target,97,38.8,velocity,lower_ux,0.635627806186676 +karman_re200,target,97,38.8,velocity,lower_uy,0.023338379338383675 +karman_re200,target,98,39.2,velocity,upper_ux,1.3544100522994995 +karman_re200,target,98,39.2,velocity,upper_uy,0.17246383428573608 +karman_re200,target,98,39.2,velocity,center_ux,1.2144814729690552 +karman_re200,target,98,39.2,velocity,center_uy,0.49385982751846313 +karman_re200,target,98,39.2,velocity,lower_ux,0.7052048444747925 +karman_re200,target,98,39.2,velocity,lower_uy,0.2537475526332855 +karman_re200,target,99,39.6,velocity,upper_ux,1.2539843320846558 +karman_re200,target,99,39.6,velocity,upper_uy,0.3078971803188324 +karman_re200,target,99,39.6,velocity,center_ux,1.177852988243103 +karman_re200,target,99,39.6,velocity,center_uy,0.7007563710212708 +karman_re200,target,99,39.6,velocity,lower_ux,0.8328946828842163 +karman_re200,target,99,39.6,velocity,lower_uy,0.3842836022377014 +karman_re200,target,100,40.0,velocity,upper_ux,1.1370816230773926 +karman_re200,target,100,40.0,velocity,upper_uy,0.38737133145332336 +karman_re200,target,100,40.0,velocity,center_ux,1.1515698432922363 +karman_re200,target,100,40.0,velocity,center_uy,0.7332772612571716 +karman_re200,target,100,40.0,velocity,lower_ux,0.9692183136940002 +karman_re200,target,100,40.0,velocity,lower_uy,0.4210054874420166 +karman_re200,target,101,40.4,velocity,upper_ux,1.0158352851867676 +karman_re200,target,101,40.4,velocity,upper_uy,0.4344707727432251 +karman_re200,target,101,40.4,velocity,center_ux,1.1477335691452026 +karman_re200,target,101,40.4,velocity,center_uy,0.7477163076400757 +karman_re200,target,101,40.4,velocity,lower_ux,1.0969774723052979 +karman_re200,target,101,40.4,velocity,lower_uy,0.41644537448883057 +karman_re200,target,102,40.8,velocity,upper_ux,0.8849931955337524 +karman_re200,target,102,40.8,velocity,upper_uy,0.4423173666000366 +karman_re200,target,102,40.8,velocity,center_ux,1.1650309562683105 +karman_re200,target,102,40.8,velocity,center_uy,0.7697754502296448 +karman_re200,target,102,40.8,velocity,lower_ux,1.2158229351043701 +karman_re200,target,102,40.8,velocity,lower_uy,0.40180933475494385 +karman_re200,target,103,41.2,velocity,upper_ux,0.7539182305335999 +karman_re200,target,103,41.2,velocity,upper_uy,0.3716086447238922 +karman_re200,target,103,41.2,velocity,center_ux,1.1976211071014404 +karman_re200,target,103,41.2,velocity,center_uy,0.6894146800041199 +karman_re200,target,103,41.2,velocity,lower_ux,1.3191081285476685 +karman_re200,target,103,41.2,velocity,lower_uy,0.323384553194046 +karman_re200,target,104,41.6,velocity,upper_ux,0.6567949056625366 +karman_re200,target,104,41.6,velocity,upper_uy,0.19303160905838013 +karman_re200,target,104,41.6,velocity,center_ux,1.2238056659698486 +karman_re200,target,104,41.6,velocity,center_uy,0.36956796050071716 +karman_re200,target,104,41.6,velocity,lower_ux,1.3934149742126465 +karman_re200,target,104,41.6,velocity,lower_uy,0.17830875515937805 +karman_re200,target,105,42.0,velocity,upper_ux,0.6416159868240356 +karman_re200,target,105,42.0,velocity,upper_uy,-0.056183598935604095 +karman_re200,target,105,42.0,velocity,center_ux,1.2244552373886108 +karman_re200,target,105,42.0,velocity,center_uy,-0.1245742216706276 +karman_re200,target,105,42.0,velocity,lower_ux,1.406906247138977 +karman_re200,target,105,42.0,velocity,lower_uy,-0.013382387347519398 +karman_re200,target,106,42.4,velocity,upper_ux,0.7200600504875183 +karman_re200,target,106,42.4,velocity,upper_uy,-0.2729206383228302 +karman_re200,target,106,42.4,velocity,center_ux,1.1996837854385376 +karman_re200,target,106,42.4,velocity,center_uy,-0.5391441583633423 +karman_re200,target,106,42.4,velocity,lower_ux,1.3463701009750366 +karman_re200,target,106,42.4,velocity,lower_uy,-0.1988547444343567 +karman_re200,target,107,42.8,velocity,upper_ux,0.8495347499847412 +karman_re200,target,107,42.8,velocity,upper_uy,-0.3882758617401123 +karman_re200,target,107,42.8,velocity,center_ux,1.1662778854370117 +karman_re200,target,107,42.8,velocity,center_uy,-0.715065598487854 +karman_re200,target,107,42.8,velocity,lower_ux,1.2398083209991455 +karman_re200,target,107,42.8,velocity,lower_uy,-0.3273774981498718 +karman_re200,target,108,43.2,velocity,upper_ux,0.9850031137466431 +karman_re200,target,108,43.2,velocity,upper_uy,-0.41610512137413025 +karman_re200,target,108,43.2,velocity,center_ux,1.1467597484588623 +karman_re200,target,108,43.2,velocity,center_uy,-0.7364474534988403 +karman_re200,target,108,43.2,velocity,lower_ux,1.12160062789917 +karman_re200,target,108,43.2,velocity,lower_uy,-0.4015916883945465 +karman_re200,target,109,43.6,velocity,upper_ux,1.1132235527038574 +karman_re200,target,109,43.6,velocity,upper_uy,-0.4113057255744934 +karman_re200,target,109,43.6,velocity,center_ux,1.151050090789795 +karman_re200,target,109,43.6,velocity,center_uy,-0.753621518611908 +karman_re200,target,109,43.6,velocity,lower_ux,1.000190258026123 +karman_re200,target,109,43.6,velocity,lower_uy,-0.44495689868927 +karman_re200,target,110,44.0,velocity,upper_ux,1.2309908866882324 +karman_re200,target,110,44.0,velocity,upper_uy,-0.3908258080482483 +karman_re200,target,110,44.0,velocity,center_ux,1.1752643585205078 +karman_re200,target,110,44.0,velocity,center_uy,-0.7680751085281372 +karman_re200,target,110,44.0,velocity,lower_ux,0.8678193688392639 +karman_re200,target,110,44.0,velocity,lower_uy,-0.44446831941604614 +karman_re200,target,111,44.4,velocity,upper_ux,1.3287148475646973 +karman_re200,target,111,44.4,velocity,upper_uy,-0.3019743263721466 +karman_re200,target,111,44.4,velocity,center_ux,1.2109897136688232 +karman_re200,target,111,44.4,velocity,center_uy,-0.6585643887519836 +karman_re200,target,111,44.4,velocity,lower_ux,0.7361906170845032 +karman_re200,target,111,44.4,velocity,lower_uy,-0.3580702245235443 +karman_re200,target,112,44.8,velocity,upper_ux,1.394315481185913 +karman_re200,target,112,44.8,velocity,upper_uy,-0.1502539962530136 +karman_re200,target,112,44.8,velocity,center_ux,1.236250877380371 +karman_re200,target,112,44.8,velocity,center_uy,-0.3027884364128113 +karman_re200,target,112,44.8,velocity,lower_ux,0.6463882327079773 +karman_re200,target,112,44.8,velocity,lower_uy,-0.16167326271533966 +karman_re200,target,113,45.2,velocity,upper_ux,1.3963255882263184 +karman_re200,target,113,45.2,velocity,upper_uy,0.04122236743569374 +karman_re200,target,113,45.2,velocity,center_ux,1.2326884269714355 +karman_re200,target,113,45.2,velocity,center_uy,0.19479528069496155 +karman_re200,target,113,45.2,velocity,lower_ux,0.6451547145843506 +karman_re200,target,113,45.2,velocity,lower_uy,0.09389202296733856 +karman_re200,target,114,45.6,velocity,upper_ux,1.329185128211975 +karman_re200,target,114,45.6,velocity,upper_uy,0.21743638813495636 +karman_re200,target,114,45.6,velocity,center_ux,1.2040959596633911 +karman_re200,target,114,45.6,velocity,center_uy,0.5771968364715576 +karman_re200,target,114,45.6,velocity,lower_ux,0.7363885641098022 +karman_re200,target,114,45.6,velocity,lower_uy,0.30095747113227844 +karman_re200,target,115,46.0,velocity,upper_ux,1.2221890687942505 +karman_re200,target,115,46.0,velocity,upper_uy,0.33547794818878174 +karman_re200,target,115,46.0,velocity,center_ux,1.1694124937057495 +karman_re200,target,115,46.0,velocity,center_uy,0.7206576466560364 +karman_re200,target,115,46.0,velocity,lower_ux,0.871356725692749 +karman_re200,target,115,46.0,velocity,lower_uy,0.40211591124534607 +karman_re200,target,116,46.4,velocity,upper_ux,1.1042269468307495 +karman_re200,target,116,46.4,velocity,upper_uy,0.4041561782360077 +karman_re200,target,116,46.4,velocity,center_ux,1.1493204832077026 +karman_re200,target,116,46.4,velocity,center_uy,0.7345718145370483 +karman_re200,target,116,46.4,velocity,lower_ux,1.0060995817184448 +karman_re200,target,116,46.4,velocity,lower_uy,0.4203207790851593 +karman_re200,target,117,46.8,velocity,upper_ux,0.9808170199394226 +karman_re200,target,117,46.8,velocity,upper_uy,0.44309958815574646 +karman_re200,target,117,46.8,velocity,center_ux,1.1525639295578003 +karman_re200,target,117,46.8,velocity,center_uy,0.7568172216415405 +karman_re200,target,117,46.8,velocity,lower_ux,1.1316968202590942 +karman_re200,target,117,46.8,velocity,lower_uy,0.4147292375564575 +karman_re200,target,118,47.2,velocity,upper_ux,0.8472483158111572 +karman_re200,target,118,47.2,velocity,upper_uy,0.43313759565353394 +karman_re200,target,118,47.2,velocity,center_ux,1.1755270957946777 +karman_re200,target,118,47.2,velocity,center_uy,0.7638030052185059 +karman_re200,target,118,47.2,velocity,lower_ux,1.2467952966690063 +karman_re200,target,118,47.2,velocity,lower_uy,0.3867892920970917 +karman_re200,target,119,47.6,velocity,upper_ux,0.7196808457374573 +karman_re200,target,119,47.6,velocity,upper_uy,0.33263808488845825 +karman_re200,target,119,47.6,velocity,center_ux,1.2083953619003296 +karman_re200,target,119,47.6,velocity,center_uy,0.6251112818717957 +karman_re200,target,119,47.6,velocity,lower_ux,1.3419870138168335 +karman_re200,target,119,47.6,velocity,lower_uy,0.2876410484313965 +karman_re200,target,120,48.0,velocity,upper_ux,0.642213761806488 +karman_re200,target,120,48.0,velocity,upper_uy,0.1255386471748352 +karman_re200,target,120,48.0,velocity,center_ux,1.22974693775177 +karman_re200,target,120,48.0,velocity,center_uy,0.2372947484254837 +karman_re200,target,120,48.0,velocity,lower_ux,1.4032676219940186 +karman_re200,target,120,48.0,velocity,lower_uy,0.1272631734609604 +karman_re200,target,121,48.4,velocity,upper_ux,0.655815839767456 +karman_re200,target,121,48.4,velocity,upper_uy,-0.12665896117687225 +karman_re200,target,121,48.4,velocity,center_ux,1.222583293914795 +karman_re200,target,121,48.4,velocity,center_uy,-0.26105794310569763 +karman_re200,target,121,48.4,velocity,lower_ux,1.395592451095581 +karman_re200,target,121,48.4,velocity,lower_uy,-0.06862960010766983 +karman_re200,target,122,48.8,velocity,upper_ux,0.7547786235809326 +karman_re200,target,122,48.8,velocity,upper_uy,-0.3180442154407501 +karman_re200,target,122,48.8,velocity,center_ux,1.1921859979629517 +karman_re200,target,122,48.8,velocity,center_uy,-0.6128605008125305 +karman_re200,target,122,48.8,velocity,lower_ux,1.3184667825698853 +karman_re200,target,122,48.8,velocity,lower_uy,-0.24035529792308807 +karman_re200,target,123,49.2,velocity,upper_ux,0.8895761370658875 +karman_re200,target,123,49.2,velocity,upper_uy,-0.4049654006958008 +karman_re200,target,123,49.2,velocity,center_ux,1.1599738597869873 +karman_re200,target,123,49.2,velocity,center_uy,-0.7282095551490784 +karman_re200,target,123,49.2,velocity,lower_ux,1.2064875364303589 +karman_re200,target,123,49.2,velocity,lower_uy,-0.3507450819015503 +karman_re200,target,124,49.6,velocity,upper_ux,1.0222234725952148 +karman_re200,target,124,49.6,velocity,upper_uy,-0.4163398742675781 +karman_re200,target,124,49.6,velocity,center_ux,1.1447114944458008 +karman_re200,target,124,49.6,velocity,center_uy,-0.7370173931121826 +karman_re200,target,124,49.6,velocity,lower_ux,1.0869050025939941 +karman_re200,target,124,49.6,velocity,lower_uy,-0.4145480692386627 +karman_re200,target,125,50.0,velocity,upper_ux,1.147512435913086 +karman_re200,target,125,50.0,velocity,upper_uy,-0.4113157391548157 +karman_re200,target,125,50.0,velocity,center_ux,1.1537442207336426 +karman_re200,target,125,50.0,velocity,center_uy,-0.7617617249488831 +karman_re200,target,125,50.0,velocity,lower_ux,0.9628298878669739 +karman_re200,target,125,50.0,velocity,lower_uy,-0.4486696720123291 +karman_re200,target,126,50.4,velocity,upper_ux,1.2619553804397583 +karman_re200,target,126,50.4,velocity,upper_uy,-0.3750821650028229 +karman_re200,target,126,50.4,velocity,center_ux,1.1822808980941772 +karman_re200,target,126,50.4,velocity,center_uy,-0.757449209690094 +karman_re200,target,126,50.4,velocity,lower_ux,0.829618513584137 +karman_re200,target,126,50.4,velocity,lower_uy,-0.42862024903297424 +karman_re200,target,127,50.8,velocity,upper_ux,1.3533854484558105 +karman_re200,target,127,50.8,velocity,upper_uy,-0.2662962079048157 +karman_re200,target,127,50.8,velocity,center_ux,1.216432809829712 +karman_re200,target,127,50.8,velocity,center_uy,-0.5852740406990051 +karman_re200,target,127,50.8,velocity,lower_ux,0.7050493359565735 +karman_re200,target,127,50.8,velocity,lower_uy,-0.31223344802856445 +karman_re200,target,128,51.2,velocity,upper_ux,1.405198097229004 +karman_re200,target,128,51.2,velocity,upper_uy,-0.09914305061101913 +karman_re200,target,128,51.2,velocity,center_ux,1.234166145324707 +karman_re200,target,128,51.2,velocity,center_uy,-0.16741874814033508 +karman_re200,target,128,51.2,velocity,lower_ux,0.6367366909980774 +karman_re200,target,128,51.2,velocity,lower_uy,-0.09167616814374924 +karman_re200,target,129,51.6,velocity,upper_ux,1.385805368423462 +karman_re200,target,129,51.6,velocity,upper_uy,0.09620489925146103 +karman_re200,target,129,51.6,velocity,center_ux,1.2225046157836914 +karman_re200,target,129,51.6,velocity,center_uy,0.3242947459220886 +karman_re200,target,129,51.6,velocity,lower_ux,0.6633759140968323 +karman_re200,target,129,51.6,velocity,lower_uy,0.15960289537906647 +karman_re200,target,130,52.0,velocity,upper_ux,1.3020704984664917 +karman_re200,target,130,52.0,velocity,upper_uy,0.25927531719207764 +karman_re200,target,130,52.0,velocity,center_ux,1.1900049448013306 +karman_re200,target,130,52.0,velocity,center_uy,0.6415020227432251 +karman_re200,target,130,52.0,velocity,lower_ux,0.7712357044219971 +karman_re200,target,130,52.0,velocity,lower_uy,0.3375781178474426 +karman_re200,target,131,52.4,velocity,upper_ux,1.1900184154510498 +karman_re200,target,131,52.4,velocity,upper_uy,0.36123770475387573 +karman_re200,target,131,52.4,velocity,center_ux,1.1599946022033691 +karman_re200,target,131,52.4,velocity,center_uy,0.7315027117729187 +karman_re200,target,131,52.4,velocity,lower_ux,0.9091278314590454 +karman_re200,target,131,52.4,velocity,lower_uy,0.41141563653945923 +karman_re200,target,132,52.8,velocity,upper_ux,1.0712568759918213 +karman_re200,target,132,52.8,velocity,upper_uy,0.4210149347782135 +karman_re200,target,132,52.8,velocity,center_ux,1.1484112739562988 +karman_re200,target,132,52.8,velocity,center_uy,0.7385568022727966 +karman_re200,target,132,52.8,velocity,lower_ux,1.0419830083847046 +karman_re200,target,132,52.8,velocity,lower_uy,0.4163340628147125 +karman_re200,target,133,53.2,velocity,upper_ux,0.9445737600326538 +karman_re200,target,133,53.2,velocity,upper_uy,0.4499969184398651 +karman_re200,target,133,53.2,velocity,center_ux,1.1593209505081177 +karman_re200,target,133,53.2,velocity,center_uy,0.7650688290596008 +karman_re200,target,133,53.2,velocity,lower_ux,1.165192723274231 +karman_re200,target,133,53.2,velocity,lower_uy,0.4100193381309509 +karman_re200,target,134,53.6,velocity,upper_ux,0.8095244765281677 +karman_re200,target,134,53.6,velocity,upper_uy,0.4183494448661804 +karman_re200,target,134,53.6,velocity,center_ux,1.1888619661331177 +karman_re200,target,134,53.6,velocity,center_uy,0.7461078763008118 +karman_re200,target,134,53.6,velocity,lower_ux,1.275559663772583 +karman_re200,target,134,53.6,velocity,lower_uy,0.36385995149612427 +karman_re200,target,135,54.0,velocity,upper_ux,0.6893275380134583 +karman_re200,target,135,54.0,velocity,upper_uy,0.2854016423225403 +karman_re200,target,135,54.0,velocity,center_ux,1.2216436862945557 +karman_re200,target,135,54.0,velocity,center_uy,0.5380164980888367 +karman_re200,target,135,54.0,velocity,lower_ux,1.3619492053985596 +karman_re200,target,135,54.0,velocity,lower_uy,0.2457571178674698 +karman_re200,target,136,54.4,velocity,upper_ux,0.634279727935791 +karman_re200,target,136,54.4,velocity,upper_uy,0.05361177399754524 +karman_re200,target,136,54.4,velocity,center_ux,1.236090898513794 +karman_re200,target,136,54.4,velocity,center_uy,0.09467540681362152 +karman_re200,target,136,54.4,velocity,lower_ux,1.4057624340057373 +karman_re200,target,136,54.4,velocity,lower_uy,0.07250117510557175 +karman_re200,target,137,54.8,velocity,upper_ux,0.6766345500946045 +karman_re200,target,137,54.8,velocity,upper_uy,-0.19310054183006287 +karman_re200,target,137,54.8,velocity,center_ux,1.2212111949920654 +karman_re200,target,137,54.8,velocity,center_uy,-0.3844040036201477 +karman_re200,target,137,54.8,velocity,lower_ux,1.3773391246795654 +karman_re200,target,137,54.8,velocity,lower_uy,-0.12122836709022522 +karman_re200,target,138,55.2,velocity,upper_ux,0.7923384308815002 +karman_re200,target,138,55.2,velocity,upper_uy,-0.3556634485721588 +karman_re200,target,138,55.2,velocity,center_ux,1.1863911151885986 +karman_re200,target,138,55.2,velocity,center_uy,-0.6652073860168457 +karman_re200,target,138,55.2,velocity,lower_ux,1.2873378992080688 +karman_re200,target,138,55.2,velocity,lower_uy,-0.27553868293762207 +karman_re200,target,139,55.6,velocity,upper_ux,0.9291142225265503 +karman_re200,target,139,55.6,velocity,upper_uy,-0.4164018929004669 +karman_re200,target,139,55.6,velocity,center_ux,1.155827283859253 +karman_re200,target,139,55.6,velocity,center_uy,-0.7324060201644897 +karman_re200,target,139,55.6,velocity,lower_ux,1.1722739934921265 +karman_re200,target,139,55.6,velocity,lower_uy,-0.36934149265289307 +karman_re200,target,140,56.0,velocity,upper_ux,1.059516429901123 +karman_re200,target,140,56.0,velocity,upper_uy,-0.41684475541114807 +karman_re200,target,140,56.0,velocity,center_ux,1.1456393003463745 +karman_re200,target,140,56.0,velocity,center_uy,-0.7402483224868774 +karman_re200,target,140,56.0,velocity,lower_ux,1.0523816347122192 +karman_re200,target,140,56.0,velocity,lower_uy,-0.42456910014152527 +karman_re200,target,141,56.4,velocity,upper_ux,1.1815067529678345 +karman_re200,target,141,56.4,velocity,upper_uy,-0.40964362025260925 +karman_re200,target,141,56.4,velocity,center_ux,1.1580718755722046 +karman_re200,target,141,56.4,velocity,center_uy,-0.7678397297859192 +karman_re200,target,141,56.4,velocity,lower_ux,0.9247791171073914 +karman_re200,target,141,56.4,velocity,lower_uy,-0.4473666250705719 +karman_re200,target,142,56.8,velocity,upper_ux,1.291049838066101 +karman_re200,target,142,56.8,velocity,upper_uy,-0.353586882352829 +karman_re200,target,142,56.8,velocity,center_ux,1.1888753175735474 +karman_re200,target,142,56.8,velocity,center_uy,-0.7335267663002014 +karman_re200,target,142,56.8,velocity,lower_ux,0.7917239665985107 +karman_re200,target,142,56.8,velocity,lower_uy,-0.4043356776237488 +karman_re200,target,143,57.2,velocity,upper_ux,1.3755606412887573 +karman_re200,target,143,57.2,velocity,upper_uy,-0.22636613249778748 +karman_re200,target,143,57.2,velocity,center_ux,1.219680666923523 +karman_re200,target,143,57.2,velocity,center_uy,-0.49049922823905945 +karman_re200,target,143,57.2,velocity,lower_ux,0.6786707043647766 +karman_re200,target,143,57.2,velocity,lower_uy,-0.2574102580547333 +karman_re200,target,144,57.6,velocity,upper_ux,1.4101539850234985 +karman_re200,target,144,57.6,velocity,upper_uy,-0.045287903398275375 +karman_re200,target,144,57.6,velocity,center_ux,1.2289050817489624 +karman_re200,target,144,57.6,velocity,center_uy,-0.025231346487998962 +karman_re200,target,144,57.6,velocity,lower_ux,0.6350947618484497 +karman_re200,target,144,57.6,velocity,lower_uy,-0.01931239292025566 +karman_re200,target,145,58.0,velocity,upper_ux,1.3699157238006592 +karman_re200,target,145,58.0,velocity,upper_uy,0.14854909479618073 +karman_re200,target,145,58.0,velocity,center_ux,1.2103986740112305 +karman_re200,target,145,58.0,velocity,center_uy,0.43897372484207153 +karman_re200,target,145,58.0,velocity,lower_ux,0.6884098052978516 +karman_re200,target,145,58.0,velocity,lower_uy,0.21855850517749786 +karman_re200,target,146,58.4,velocity,upper_ux,1.2731025218963623 +karman_re200,target,146,58.4,velocity,upper_uy,0.29577749967575073 +karman_re200,target,146,58.4,velocity,center_ux,1.1767151355743408 +karman_re200,target,146,58.4,velocity,center_uy,0.6864339709281921 +karman_re200,target,146,58.4,velocity,lower_ux,0.8088967204093933 +karman_re200,target,146,58.4,velocity,lower_uy,0.3655600845813751 +karman_re200,target,147,58.8,velocity,upper_ux,1.1568934917449951 +karman_re200,target,147,58.8,velocity,upper_uy,0.38317206501960754 +karman_re200,target,147,58.8,velocity,center_ux,1.151598334312439 +karman_re200,target,147,58.8,velocity,center_uy,0.7356768250465393 +karman_re200,target,147,58.8,velocity,lower_ux,0.9460353851318359 +karman_re200,target,147,58.8,velocity,lower_uy,0.41517630219459534 +karman_re200,target,148,59.2,velocity,upper_ux,1.0372637510299683 +karman_re200,target,148,59.2,velocity,upper_uy,0.43492427468299866 +karman_re200,target,148,59.2,velocity,center_ux,1.148564338684082 +karman_re200,target,148,59.2,velocity,center_uy,0.7450228929519653 +karman_re200,target,148,59.2,velocity,lower_ux,1.0768014192581177 +karman_re200,target,148,59.2,velocity,lower_uy,0.4128202795982361 +karman_re200,target,149,59.6,velocity,upper_ux,0.9076430797576904 +karman_re200,target,149,59.6,velocity,upper_uy,0.4512407183647156 +karman_re200,target,149,59.6,velocity,center_ux,1.1667258739471436 +karman_re200,target,149,59.6,velocity,center_uy,0.769686222076416 +karman_re200,target,149,59.6,velocity,lower_ux,1.1977695226669312 +karman_re200,target,149,59.6,velocity,lower_uy,0.40263840556144714 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_wide.csv new file mode 100644 index 0000000..9499825 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re200/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re200,target,0,0.0,1.2340569496154785,-0.38897383213043213,1.177828311920166,-0.7669901251792908,0.863411009311676,-0.4436177909374237 +karman_re200,target,1,0.4,1.33061945438385,-0.2977929711341858,1.2138667106628418,-0.6505563259124756,0.732107400894165,-0.35351139307022095 +karman_re200,target,2,0.8,1.3936355113983154,-0.1448056548833847,1.2377666234970093,-0.2876204550266266,0.6437481641769409,-0.15355972945690155 +karman_re200,target,3,1.2,1.3949685096740723,0.04647575318813324,1.234562873840332,0.20967449247837067,0.6474549174308777,0.10265105217695236 +karman_re200,target,4,1.6,1.3263747692108154,0.22081319987773895,1.2048556804656982,0.5847342610359192,0.7413978576660156,0.3070380985736847 +karman_re200,target,5,2.0,1.2179509401321411,0.33665454387664795,1.1685916185379028,0.7212674617767334,0.8759437799453735,0.4048633277416229 +karman_re200,target,6,2.4,1.1002397537231445,0.40402907133102417,1.148552656173706,0.7339556813240051,1.0104835033416748,0.4211578071117401 +karman_re200,target,7,2.8,0.9760168194770813,0.4418318569660187,1.1507891416549683,0.7573500275611877,1.1349583864212036,0.4157588481903076 +karman_re200,target,8,3.2,0.8430190086364746,0.4300360083580017,1.1734570264816284,0.7630838751792908,1.2500563859939575,0.3863942623138428 +karman_re200,target,9,3.6,0.7179440259933472,0.32719001173973083,1.206641674041748,0.6187921762466431,1.3466691970825195,0.2852133512496948 +karman_re200,target,10,4.0,0.641862154006958,0.11890943348407745,1.225929856300354,0.2247874140739441,1.406314730644226,0.12264910340309143 +karman_re200,target,11,4.4,0.6573916077613831,-0.13155923783779144,1.2177956104278564,-0.2735345661640167,1.3959629535675049,-0.07475581020116806 +karman_re200,target,12,4.8,0.7577229142189026,-0.31955114006996155,1.1882696151733398,-0.619774580001831,1.316990852355957,-0.24609069526195526 +karman_re200,target,13,5.2,0.8916172981262207,-0.40398135781288147,1.1569353342056274,-0.7303186655044556,1.2032806873321533,-0.3553091287612915 +karman_re200,target,14,5.6,1.025417447090149,-0.4143329858779907,1.1450507640838623,-0.7382473945617676,1.084751009941101,-0.41838526725769043 +karman_re200,target,15,6.0,1.1510231494903564,-0.4091912508010864,1.1564668416976929,-0.762835681438446,0.9604673981666565,-0.45166605710983276 +karman_re200,target,16,6.4,1.2637485265731812,-0.3710853159427643,1.1860191822052002,-0.7552403807640076,0.8256957530975342,-0.4293355941772461 +karman_re200,target,17,6.8,1.353796362876892,-0.26059290766716003,1.221648931503296,-0.5754673480987549,0.7016187906265259,-0.3088792562484741 +karman_re200,target,18,7.2,1.4028067588806152,-0.09307043254375458,1.2388612031936646,-0.1522367149591446,0.634928822517395,-0.08428356796503067 +karman_re200,target,19,7.6,1.3814630508422852,0.10046349465847015,1.2260018587112427,0.33625325560569763,0.6646565794944763,0.16781961917877197 +karman_re200,target,20,8.0,1.2985467910766602,0.2606963813304901,1.1933276653289795,0.6455028057098389,0.7761998772621155,0.34359779953956604 +karman_re200,target,21,8.4,1.1860857009887695,0.36063870787620544,1.1613575220108032,0.7305742502212524,0.9140399098396301,0.41472697257995605 +karman_re200,target,22,8.8,1.067046880722046,0.4194209575653076,1.148269534111023,0.7379599213600159,1.046012043952942,0.41831013560295105 +karman_re200,target,23,9.2,0.9405878186225891,0.4471532106399536,1.1583489179611206,0.7653247117996216,1.169142723083496,0.4118151366710663 +karman_re200,target,24,9.6,0.8051714301109314,0.41343697905540466,1.1855851411819458,0.7441555261611938,1.278377890586853,0.3637755215167999 +karman_re200,target,25,10.0,0.687725841999054,0.27866002917289734,1.2175681591033936,0.5301482677459717,1.3658299446105957,0.2437947392463684 +karman_re200,target,26,10.4,0.635830819606781,0.04693144932389259,1.2311476469039917,0.08206363022327423,1.4092247486114502,0.06810541450977325 +karman_re200,target,27,10.8,0.6793832182884216,-0.19684305787086487,1.2151103019714355,-0.3953748643398285,1.3776779174804688,-0.12706737220287323 +karman_re200,target,28,11.2,0.7956826686859131,-0.35577720403671265,1.1815835237503052,-0.6704037189483643,1.2858598232269287,-0.2809373736381531 +karman_re200,target,29,11.6,0.9316976070404053,-0.41450396180152893,1.152705430984497,-0.7340231537818909,1.169472098350525,-0.3737452030181885 +karman_re200,target,30,12.0,1.0615184307098389,-0.4146673083305359,1.1443812847137451,-0.7417630553245544,1.0489134788513184,-0.4281848967075348 +karman_re200,target,31,12.4,1.1848807334899902,-0.40724116563796997,1.1602994203567505,-0.7686947584152222,0.9223108887672424,-0.4498228430747986 +karman_re200,target,32,12.8,1.293351173400879,-0.34908121824264526,1.1924902200698853,-0.730038046836853,0.7884556651115417,-0.40411999821662903 +karman_re200,target,33,13.2,1.375796914100647,-0.22036150097846985,1.2235949039459229,-0.4791675806045532,0.6755401492118835,-0.25323954224586487 +karman_re200,target,34,13.6,1.4083057641983032,-0.03894345089793205,1.2328407764434814,-0.010204322636127472,0.6346439123153687,-0.012071236036717892 +karman_re200,target,35,14.0,1.3653892278671265,0.1531003713607788,1.21250581741333,0.44930562376976013,0.6899386644363403,0.2254880666732788 +karman_re200,target,36,14.4,1.2689892053604126,0.29775139689445496,1.1786822080612183,0.6891308426856995,0.8128244876861572,0.36989647150039673 +karman_re200,target,37,14.8,1.1539078950881958,0.3836990296840668,1.1539196968078613,0.7351001501083374,0.9512467980384827,0.41708534955978394 +karman_re200,target,38,15.2,1.0333783626556396,0.43477562069892883,1.1498383283615112,0.7453796863555908,1.0809522867202759,0.4138626158237457 +karman_re200,target,39,15.6,0.9033491611480713,0.44957491755485535,1.1677321195602417,0.7696046233177185,1.201406478881836,0.4026903510093689 +karman_re200,target,40,16.0,0.7685611844062805,0.389913409948349,1.2010235786437988,0.7085239887237549,1.3049408197402954,0.333528071641922 +karman_re200,target,41,16.4,0.6623313426971436,0.2218630164861679,1.2302378416061401,0.419784814119339,1.3808982372283936,0.1966715008020401 +karman_re200,target,42,16.8,0.6368335485458374,-0.027209296822547913,1.2362816333770752,-0.06368447095155716,1.404393196105957,0.011648467741906643 +karman_re200,target,43,17.2,0.7072089314460754,-0.25615394115448,1.2129466533660889,-0.4989297091960907,1.353775143623352,-0.17506526410579681 +karman_re200,target,44,17.6,0.834869921207428,-0.38491272926330566,1.1763005256652832,-0.7023254632949829,1.2524045705795288,-0.30976688861846924 +karman_re200,target,45,18.0,0.9711685180664062,-0.42059996724128723,1.1507586240768433,-0.7334863543510437,1.1354271173477173,-0.3886101245880127 +karman_re200,target,46,18.4,1.0981791019439697,-0.4160737693309784,1.1469128131866455,-0.7482800483703613,1.013472318649292,-0.43523108959198 +karman_re200,target,47,18.8,1.2175639867782593,-0.4010102152824402,1.1653474569320679,-0.7698569297790527,0.8832124471664429,-0.44228801131248474 +karman_re200,target,48,19.2,1.3209588527679443,-0.32145699858665466,1.198513388633728,-0.6868135929107666,0.7525637149810791,-0.3701340854167938 +karman_re200,target,49,19.6,1.3941837549209595,-0.17551545798778534,1.2240700721740723,-0.3631519675254822,0.6557188630104065,-0.19002456963062286 +karman_re200,target,50,20.0,1.4065176248550415,0.016605425626039505,1.2244288921356201,0.1318795531988144,0.6419094800949097,0.059603553265333176 +karman_re200,target,51,20.4,1.3448197841644287,0.20150308310985565,1.1992853879928589,0.5436105132102966,0.7212957739830017,0.2752542197704315 +karman_re200,target,52,20.8,1.237799048423767,0.32907459139823914,1.1658875942230225,0.7162047028541565,0.8509779572486877,0.3891383409500122 +karman_re200,target,53,21.2,1.120484471321106,0.4027974605560303,1.1476950645446777,0.7366076707839966,0.9873722195625305,0.41598522663116455 +karman_re200,target,54,21.6,0.998557984828949,0.4458339214324951,1.1521968841552734,0.754100501537323,1.115218997001648,0.41097214818000793 +karman_re200,target,55,22.0,0.8655806183815002,0.44438332319259644,1.1766324043273926,0.7675514221191406,1.2323395013809204,0.38968217372894287 +karman_re200,target,56,22.4,0.7342711091041565,0.35611987113952637,1.2129136323928833,0.654600977897644,1.329644799232483,0.2997063398361206 +karman_re200,target,57,22.8,0.6449936628341675,0.15777581930160522,1.2375222444534302,0.2952122986316681,1.3937873840332031,0.14741525053977966 +karman_re200,target,58,23.2,0.6459389328956604,-0.09829483181238174,1.2338944673538208,-0.20211847126483917,1.395192265510559,-0.0437837652862072 +karman_re200,target,59,23.6,0.7389390468597412,-0.30418217182159424,1.205032229423523,-0.5808201432228088,1.327776312828064,-0.21891333162784576 +karman_re200,target,60,24.0,0.8737069964408875,-0.40373706817626953,1.169332504272461,-0.7208412885665894,1.2200731039047241,-0.3358183205127716 +karman_re200,target,61,24.4,1.00818932056427,-0.42095494270324707,1.1489416360855103,-0.7341534495353699,1.1021251678466797,-0.40382835268974304 +karman_re200,target,62,24.8,1.133556842803955,-0.4154476225376129,1.151857852935791,-0.7570244073867798,0.9786553382873535,-0.4422169029712677 +karman_re200,target,63,25.2,1.248250126838684,-0.38680577278137207,1.1741023063659668,-0.7634487748146057,0.8449835181236267,-0.4313426911830902 +karman_re200,target,64,25.6,1.3443163633346558,-0.28668928146362305,1.207107424736023,-0.6221605539321899,0.7188525199890137,-0.32978886365890503 +karman_re200,target,65,26.0,1.4050379991531372,-0.12516918778419495,1.2275056838989258,-0.23132610321044922,0.642253041267395,-0.12223576754331589 +karman_re200,target,66,26.4,1.395917534828186,0.07159676402807236,1.2196965217590332,0.26710426807403564,0.6566170454025269,0.1289544403553009 +karman_re200,target,67,26.8,1.3179707527160645,0.24324443936347961,1.1899330615997314,0.616279125213623,0.7563076615333557,0.31857284903526306 +karman_re200,target,68,27.2,1.2050458192825317,0.35312941670417786,1.1582468748092651,0.7293370962142944,0.8906108736991882,0.4042978286743164 +karman_re200,target,69,27.6,1.0856354236602783,0.41654762625694275,1.1444200277328491,0.7376794219017029,1.0234659910202026,0.4152083694934845 +karman_re200,target,70,28.0,0.9618372321128845,0.4502629041671753,1.1550641059875488,0.7623516321182251,1.149287462234497,0.4101993441581726 +karman_re200,target,71,28.4,0.827806830406189,0.42909666895866394,1.1841082572937012,0.7564288973808289,1.2628748416900635,0.3730561137199402 +karman_re200,target,72,28.8,0.7032726407051086,0.3107599914073944,1.2188533544540405,0.5805866718292236,1.3534611463546753,0.26345720887184143 +karman_re200,target,73,29.2,0.6360310912132263,0.08818109333515167,1.2366962432861328,0.16002362966537476,1.4042106866836548,0.09608829766511917 +karman_re200,target,74,29.6,0.663808286190033,-0.16356953978538513,1.2241325378417969,-0.330191969871521,1.3834909200668335,-0.09838373214006424 +karman_re200,target,75,30.0,0.7735183238983154,-0.3405058681964874,1.1916369199752808,-0.6435020565986633,1.3002253770828247,-0.26004406809806824 +karman_re200,target,76,30.4,0.9116578102111816,-0.4130423665046692,1.1609128713607788,-0.7311025857925415,1.1882047653198242,-0.36102867126464844 +karman_re200,target,77,30.8,1.0439753532409668,-0.4172816574573517,1.1484836339950562,-0.7383119463920593,1.0691628456115723,-0.4203415811061859 +karman_re200,target,78,31.2,1.1671699285507202,-0.41084006428718567,1.1590708494186401,-0.7652228474617004,0.9426012635231018,-0.44871699810028076 +karman_re200,target,79,31.6,1.2770416736602783,-0.36369210481643677,1.1876366138458252,-0.7450435757637024,0.8073951005935669,-0.4159716069698334 +karman_re200,target,80,32.0,1.3635187149047852,-0.24465186893939972,1.2197275161743164,-0.5338699817657471,0.688198447227478,-0.28200316429138184 +karman_re200,target,81,32.4,1.407414197921753,-0.07024232298135757,1.2340987920761108,-0.08812431991100311,0.6351139545440674,-0.05009385943412781 +karman_re200,target,82,32.8,1.3774217367172241,0.12411142140626907,1.2185637950897217,0.3900667130947113,0.6781561374664307,0.19525015354156494 +karman_re200,target,83,33.2,1.2863495349884033,0.27812135219573975,1.1840832233428955,0.6678093075752258,0.794033408164978,0.35597896575927734 +karman_re200,target,84,33.6,1.170925498008728,0.3713666498661041,1.1545219421386719,0.7331089973449707,0.9307208061218262,0.4156276285648346 +karman_re200,target,85,34.0,1.0504262447357178,0.4261873960494995,1.144882321357727,0.7409459948539734,1.0605485439300537,0.41590020060539246 +karman_re200,target,86,34.4,0.9233115911483765,0.44838446378707886,1.1588971614837646,0.7682709693908691,1.1831501722335815,0.4085901379585266 +karman_re200,target,87,34.8,0.7901744842529297,0.40402400493621826,1.1905635595321655,0.7318307757377625,1.2924822568893433,0.3514576852321625 +karman_re200,target,88,35.2,0.6771138906478882,0.2551807761192322,1.221301555633545,0.4848187565803528,1.3759150505065918,0.22342568635940552 +karman_re200,target,89,35.6,0.6348561644554138,0.015688400715589523,1.2304590940475464,0.017614608630537987,1.4094332456588745,0.0420549213886261 +karman_re200,target,90,36.0,0.6893252730369568,-0.22191494703292847,1.2112548351287842,-0.4443555772304535,1.3679473400115967,-0.15103240311145782 +karman_re200,target,91,36.4,0.8106051683425903,-0.3675524890422821,1.1772516965866089,-0.6879708766937256,1.2708936929702759,-0.29703548550605774 +karman_re200,target,92,36.8,0.9486479163169861,-0.41593387722969055,1.1527515649795532,-0.7355068325996399,1.1555049419403076,-0.38370281457901 +karman_re200,target,93,37.2,1.0789462327957153,-0.41314247250556946,1.149382472038269,-0.7452686429023743,1.0354286432266235,-0.4351423382759094 +karman_re200,target,94,37.6,1.199475884437561,-0.4024425745010376,1.1674084663391113,-0.7696486711502075,0.9053913354873657,-0.4507010281085968 +karman_re200,target,95,38.0,1.3036162853240967,-0.33445054292678833,1.2014381885528564,-0.7108307480812073,0.7707217335700989,-0.39244043827056885 +karman_re200,target,96,38.4,1.3800028562545776,-0.19849619269371033,1.2313491106033325,-0.4256569743156433,0.6635120511054993,-0.2256368100643158 +karman_re200,target,97,38.8,1.4035354852676392,-0.014278455637395382,1.2371420860290527,0.05635342001914978,0.635627806186676,0.023338379338383675 +karman_re200,target,98,39.2,1.3544100522994995,0.17246383428573608,1.2144814729690552,0.49385982751846313,0.7052048444747925,0.2537475526332855 +karman_re200,target,99,39.6,1.2539843320846558,0.3078971803188324,1.177852988243103,0.7007563710212708,0.8328946828842163,0.3842836022377014 +karman_re200,target,100,40.0,1.1370816230773926,0.38737133145332336,1.1515698432922363,0.7332772612571716,0.9692183136940002,0.4210054874420166 +karman_re200,target,101,40.4,1.0158352851867676,0.4344707727432251,1.1477335691452026,0.7477163076400757,1.0969774723052979,0.41644537448883057 +karman_re200,target,102,40.8,0.8849931955337524,0.4423173666000366,1.1650309562683105,0.7697754502296448,1.2158229351043701,0.40180933475494385 +karman_re200,target,103,41.2,0.7539182305335999,0.3716086447238922,1.1976211071014404,0.6894146800041199,1.3191081285476685,0.323384553194046 +karman_re200,target,104,41.6,0.6567949056625366,0.19303160905838013,1.2238056659698486,0.36956796050071716,1.3934149742126465,0.17830875515937805 +karman_re200,target,105,42.0,0.6416159868240356,-0.056183598935604095,1.2244552373886108,-0.1245742216706276,1.406906247138977,-0.013382387347519398 +karman_re200,target,106,42.4,0.7200600504875183,-0.2729206383228302,1.1996837854385376,-0.5391441583633423,1.3463701009750366,-0.1988547444343567 +karman_re200,target,107,42.8,0.8495347499847412,-0.3882758617401123,1.1662778854370117,-0.715065598487854,1.2398083209991455,-0.3273774981498718 +karman_re200,target,108,43.2,0.9850031137466431,-0.41610512137413025,1.1467597484588623,-0.7364474534988403,1.12160062789917,-0.4015916883945465 +karman_re200,target,109,43.6,1.1132235527038574,-0.4113057255744934,1.151050090789795,-0.753621518611908,1.000190258026123,-0.44495689868927 +karman_re200,target,110,44.0,1.2309908866882324,-0.3908258080482483,1.1752643585205078,-0.7680751085281372,0.8678193688392639,-0.44446831941604614 +karman_re200,target,111,44.4,1.3287148475646973,-0.3019743263721466,1.2109897136688232,-0.6585643887519836,0.7361906170845032,-0.3580702245235443 +karman_re200,target,112,44.8,1.394315481185913,-0.1502539962530136,1.236250877380371,-0.3027884364128113,0.6463882327079773,-0.16167326271533966 +karman_re200,target,113,45.2,1.3963255882263184,0.04122236743569374,1.2326884269714355,0.19479528069496155,0.6451547145843506,0.09389202296733856 +karman_re200,target,114,45.6,1.329185128211975,0.21743638813495636,1.2040959596633911,0.5771968364715576,0.7363885641098022,0.30095747113227844 +karman_re200,target,115,46.0,1.2221890687942505,0.33547794818878174,1.1694124937057495,0.7206576466560364,0.871356725692749,0.40211591124534607 +karman_re200,target,116,46.4,1.1042269468307495,0.4041561782360077,1.1493204832077026,0.7345718145370483,1.0060995817184448,0.4203207790851593 +karman_re200,target,117,46.8,0.9808170199394226,0.44309958815574646,1.1525639295578003,0.7568172216415405,1.1316968202590942,0.4147292375564575 +karman_re200,target,118,47.2,0.8472483158111572,0.43313759565353394,1.1755270957946777,0.7638030052185059,1.2467952966690063,0.3867892920970917 +karman_re200,target,119,47.6,0.7196808457374573,0.33263808488845825,1.2083953619003296,0.6251112818717957,1.3419870138168335,0.2876410484313965 +karman_re200,target,120,48.0,0.642213761806488,0.1255386471748352,1.22974693775177,0.2372947484254837,1.4032676219940186,0.1272631734609604 +karman_re200,target,121,48.4,0.655815839767456,-0.12665896117687225,1.222583293914795,-0.26105794310569763,1.395592451095581,-0.06862960010766983 +karman_re200,target,122,48.8,0.7547786235809326,-0.3180442154407501,1.1921859979629517,-0.6128605008125305,1.3184667825698853,-0.24035529792308807 +karman_re200,target,123,49.2,0.8895761370658875,-0.4049654006958008,1.1599738597869873,-0.7282095551490784,1.2064875364303589,-0.3507450819015503 +karman_re200,target,124,49.6,1.0222234725952148,-0.4163398742675781,1.1447114944458008,-0.7370173931121826,1.0869050025939941,-0.4145480692386627 +karman_re200,target,125,50.0,1.147512435913086,-0.4113157391548157,1.1537442207336426,-0.7617617249488831,0.9628298878669739,-0.4486696720123291 +karman_re200,target,126,50.4,1.2619553804397583,-0.3750821650028229,1.1822808980941772,-0.757449209690094,0.829618513584137,-0.42862024903297424 +karman_re200,target,127,50.8,1.3533854484558105,-0.2662962079048157,1.216432809829712,-0.5852740406990051,0.7050493359565735,-0.31223344802856445 +karman_re200,target,128,51.2,1.405198097229004,-0.09914305061101913,1.234166145324707,-0.16741874814033508,0.6367366909980774,-0.09167616814374924 +karman_re200,target,129,51.6,1.385805368423462,0.09620489925146103,1.2225046157836914,0.3242947459220886,0.6633759140968323,0.15960289537906647 +karman_re200,target,130,52.0,1.3020704984664917,0.25927531719207764,1.1900049448013306,0.6415020227432251,0.7712357044219971,0.3375781178474426 +karman_re200,target,131,52.4,1.1900184154510498,0.36123770475387573,1.1599946022033691,0.7315027117729187,0.9091278314590454,0.41141563653945923 +karman_re200,target,132,52.8,1.0712568759918213,0.4210149347782135,1.1484112739562988,0.7385568022727966,1.0419830083847046,0.4163340628147125 +karman_re200,target,133,53.2,0.9445737600326538,0.4499969184398651,1.1593209505081177,0.7650688290596008,1.165192723274231,0.4100193381309509 +karman_re200,target,134,53.6,0.8095244765281677,0.4183494448661804,1.1888619661331177,0.7461078763008118,1.275559663772583,0.36385995149612427 +karman_re200,target,135,54.0,0.6893275380134583,0.2854016423225403,1.2216436862945557,0.5380164980888367,1.3619492053985596,0.2457571178674698 +karman_re200,target,136,54.4,0.634279727935791,0.05361177399754524,1.236090898513794,0.09467540681362152,1.4057624340057373,0.07250117510557175 +karman_re200,target,137,54.8,0.6766345500946045,-0.19310054183006287,1.2212111949920654,-0.3844040036201477,1.3773391246795654,-0.12122836709022522 +karman_re200,target,138,55.2,0.7923384308815002,-0.3556634485721588,1.1863911151885986,-0.6652073860168457,1.2873378992080688,-0.27553868293762207 +karman_re200,target,139,55.6,0.9291142225265503,-0.4164018929004669,1.155827283859253,-0.7324060201644897,1.1722739934921265,-0.36934149265289307 +karman_re200,target,140,56.0,1.059516429901123,-0.41684475541114807,1.1456393003463745,-0.7402483224868774,1.0523816347122192,-0.42456910014152527 +karman_re200,target,141,56.4,1.1815067529678345,-0.40964362025260925,1.1580718755722046,-0.7678397297859192,0.9247791171073914,-0.4473666250705719 +karman_re200,target,142,56.8,1.291049838066101,-0.353586882352829,1.1888753175735474,-0.7335267663002014,0.7917239665985107,-0.4043356776237488 +karman_re200,target,143,57.2,1.3755606412887573,-0.22636613249778748,1.219680666923523,-0.49049922823905945,0.6786707043647766,-0.2574102580547333 +karman_re200,target,144,57.6,1.4101539850234985,-0.045287903398275375,1.2289050817489624,-0.025231346487998962,0.6350947618484497,-0.01931239292025566 +karman_re200,target,145,58.0,1.3699157238006592,0.14854909479618073,1.2103986740112305,0.43897372484207153,0.6884098052978516,0.21855850517749786 +karman_re200,target,146,58.4,1.2731025218963623,0.29577749967575073,1.1767151355743408,0.6864339709281921,0.8088967204093933,0.3655600845813751 +karman_re200,target,147,58.8,1.1568934917449951,0.38317206501960754,1.151598334312439,0.7356768250465393,0.9460353851318359,0.41517630219459534 +karman_re200,target,148,59.2,1.0372637510299683,0.43492427468299866,1.148564338684082,0.7450228929519653,1.0768014192581177,0.4128202795982361 +karman_re200,target,149,59.6,0.9076430797576904,0.4512407183647156,1.1667258739471436,0.769686222076416,1.1977695226669312,0.40263840556144714 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv new file mode 100644 index 0000000..03dd4c3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re400,sr,60,24.0,30,0.8280809510188799,-5,0.8789662937323253,0.9137249970342964,0.6880439837773641,0.7201192267859975,0.8896813054879507,0.877949899295345 +karman_re400,sr,90,36.0,30,0.833709572840275,-4,0.8455306907494863,0.9087077797700962,0.8226318220297495,0.679852232336998,0.8612157245477041,0.8843191876076162 +karman_re400,sr,120,48.0,30,0.8377502901738302,-3,0.8688761532306671,0.9099596939360102,0.7771346668402354,0.7009890096882979,0.8597575604915619,0.909784656856209 +karman_re400,sr,150,60.0,30,0.8414565560459676,-2,0.8543946246306101,0.9158295029774308,0.7927227695782979,0.7035019199053447,0.8720706899960836,0.9102198291880389 +karman_re400,sr,180,72.0,30,0.8381168796473907,-1,0.8555224816004435,0.9094861044238011,0.7881581445535024,0.6994720689641933,0.8634365518887838,0.9126259264536202 +karman_re400,sr,210,84.0,30,0.8371390072991037,0,0.8508476157983145,0.9140732971330484,0.7890894790490468,0.7058600389709075,0.8555161933104197,0.9074474195328852 +karman_re400,sr,240,96.0,30,0.8301559217015487,0,0.8481267273426056,0.9081916719054183,0.7874586701393127,0.68197978772223,0.8605135877927145,0.8946650853070119 +karman_re400,sr,270,108.0,30,0.8302756289382361,1,0.8475741068522136,0.9165834931035837,0.7807842155297597,0.6797286151597897,0.8577262123425802,0.8992571306414903 +karman_re400,sr,300,120.0,30,0.8352184306261027,2,0.8460796892642974,0.9070974149430792,0.7785724759101867,0.7147243345777194,0.8564455529054006,0.9083911161559324 +karman_re400,sr,330,132.0,30,0.8355351162815673,4,0.8486341198285421,0.9085561510796348,0.7807342052459717,0.7058365950981775,0.8610200047492981,0.9084296216877799 +karman_re400,sr,360,144.0,30,0.8391075215845679,5,0.8609735091527303,0.9161135255824775,0.7792934199174245,0.7069881208240986,0.8620835224787394,0.9091930315519372 +karman_re400,sr,390,156.0,30,0.8371472727145172,5,0.859679901599884,0.9124472118293245,0.7771388550599416,0.7068660753468672,0.8613280574480693,0.9054235350030164 +karman_re400,sr,400,160.0,30,0.8333647524032535,1,0.8545339703559875,0.9155989743613948,0.7822309533754984,0.6791878794630368,0.8531994819641113,0.9154372548994919 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_long.csv new file mode 100644 index 0000000..c17bff0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,sr,0,0.0,velocity,upper_ux,0.9955728054046631 +karman_re400,sr,0,0.0,velocity,upper_uy,0.00948510691523552 +karman_re400,sr,0,0.0,velocity,center_ux,0.9374436140060425 +karman_re400,sr,0,0.0,velocity,center_uy,-0.039215099066495895 +karman_re400,sr,0,0.0,velocity,lower_ux,1.2809689044952393 +karman_re400,sr,0,0.0,velocity,lower_uy,0.06611453741788864 +karman_re400,sr,1,0.4,velocity,upper_ux,0.9778692126274109 +karman_re400,sr,1,0.4,velocity,upper_uy,-0.26124390959739685 +karman_re400,sr,1,0.4,velocity,center_ux,1.0004303455352783 +karman_re400,sr,1,0.4,velocity,center_uy,-0.32675647735595703 +karman_re400,sr,1,0.4,velocity,lower_ux,1.2732644081115723 +karman_re400,sr,1,0.4,velocity,lower_uy,-0.041523028165102005 +karman_re400,sr,2,0.8,velocity,upper_ux,1.0055890083312988 +karman_re400,sr,2,0.8,velocity,upper_uy,-0.32041457295417786 +karman_re400,sr,2,0.8,velocity,center_ux,1.0274592638015747 +karman_re400,sr,2,0.8,velocity,center_uy,-0.4538823366165161 +karman_re400,sr,2,0.8,velocity,lower_ux,1.1523327827453613 +karman_re400,sr,2,0.8,velocity,lower_uy,-0.19381532073020935 +karman_re400,sr,3,1.2,velocity,upper_ux,1.0605295896530151 +karman_re400,sr,3,1.2,velocity,upper_uy,-0.3427143096923828 +karman_re400,sr,3,1.2,velocity,center_ux,1.0386930704116821 +karman_re400,sr,3,1.2,velocity,center_uy,-0.46277138590812683 +karman_re400,sr,3,1.2,velocity,lower_ux,1.0373345613479614 +karman_re400,sr,3,1.2,velocity,lower_uy,-0.28245410323143005 +karman_re400,sr,4,1.6,velocity,upper_ux,1.123113989830017 +karman_re400,sr,4,1.6,velocity,upper_uy,-0.3457551896572113 +karman_re400,sr,4,1.6,velocity,center_ux,1.0307157039642334 +karman_re400,sr,4,1.6,velocity,center_uy,-0.45672908425331116 +karman_re400,sr,4,1.6,velocity,lower_ux,0.9766289591789246 +karman_re400,sr,4,1.6,velocity,lower_uy,-0.31456440687179565 +karman_re400,sr,5,2.0,velocity,upper_ux,1.195190668106079 +karman_re400,sr,5,2.0,velocity,upper_uy,-0.3109767436981201 +karman_re400,sr,5,2.0,velocity,center_ux,0.9906117916107178 +karman_re400,sr,5,2.0,velocity,center_uy,-0.46565142273902893 +karman_re400,sr,5,2.0,velocity,lower_ux,0.9401680827140808 +karman_re400,sr,5,2.0,velocity,lower_uy,-0.31220659613609314 +karman_re400,sr,6,2.4,velocity,upper_ux,1.2715152502059937 +karman_re400,sr,6,2.4,velocity,upper_uy,-0.22457042336463928 +karman_re400,sr,6,2.4,velocity,center_ux,0.9098406434059143 +karman_re400,sr,6,2.4,velocity,center_uy,-0.4080996811389923 +karman_re400,sr,6,2.4,velocity,lower_ux,0.9172725081443787 +karman_re400,sr,6,2.4,velocity,lower_uy,-0.28915682435035706 +karman_re400,sr,7,2.8,velocity,upper_ux,1.3002619743347168 +karman_re400,sr,7,2.8,velocity,upper_uy,-0.08999805152416229 +karman_re400,sr,7,2.8,velocity,center_ux,0.8825860023498535 +karman_re400,sr,7,2.8,velocity,center_uy,-0.08082536607980728 +karman_re400,sr,7,2.8,velocity,lower_ux,0.9072335958480835 +karman_re400,sr,7,2.8,velocity,lower_uy,-0.14251098036766052 +karman_re400,sr,8,3.2,velocity,upper_ux,1.3074711561203003 +karman_re400,sr,8,3.2,velocity,upper_uy,-0.007086174096912146 +karman_re400,sr,8,3.2,velocity,center_ux,0.9456263184547424 +karman_re400,sr,8,3.2,velocity,center_uy,0.2458178699016571 +karman_re400,sr,8,3.2,velocity,lower_ux,0.8992388248443604 +karman_re400,sr,8,3.2,velocity,lower_uy,0.1856653094291687 +karman_re400,sr,9,3.6,velocity,upper_ux,1.218336820602417 +karman_re400,sr,9,3.6,velocity,upper_uy,0.13748709857463837 +karman_re400,sr,9,3.6,velocity,center_ux,0.9961988925933838 +karman_re400,sr,9,3.6,velocity,center_uy,0.4290001690387726 +karman_re400,sr,9,3.6,velocity,lower_ux,0.9394996166229248 +karman_re400,sr,9,3.6,velocity,lower_uy,0.31822603940963745 +karman_re400,sr,10,4.0,velocity,upper_ux,1.085651159286499 +karman_re400,sr,10,4.0,velocity,upper_uy,0.26896557211875916 +karman_re400,sr,10,4.0,velocity,center_ux,1.0213916301727295 +karman_re400,sr,10,4.0,velocity,center_uy,0.47082793712615967 +karman_re400,sr,10,4.0,velocity,lower_ux,1.005629062652588 +karman_re400,sr,10,4.0,velocity,lower_uy,0.3349568843841553 +karman_re400,sr,11,4.4,velocity,upper_ux,1.0118335485458374 +karman_re400,sr,11,4.4,velocity,upper_uy,0.32131701707839966 +karman_re400,sr,11,4.4,velocity,center_ux,1.0259395837783813 +karman_re400,sr,11,4.4,velocity,center_uy,0.46430206298828125 +karman_re400,sr,11,4.4,velocity,lower_ux,1.0717829465866089 +karman_re400,sr,11,4.4,velocity,lower_uy,0.35112759470939636 +karman_re400,sr,12,4.8,velocity,upper_ux,0.9744371771812439 +karman_re400,sr,12,4.8,velocity,upper_uy,0.3286628723144531 +karman_re400,sr,12,4.8,velocity,center_ux,1.0077812671661377 +karman_re400,sr,12,4.8,velocity,center_uy,0.45452916622161865 +karman_re400,sr,12,4.8,velocity,lower_ux,1.1404762268066406 +karman_re400,sr,12,4.8,velocity,lower_uy,0.3348342478275299 +karman_re400,sr,13,5.2,velocity,upper_ux,0.9551446437835693 +karman_re400,sr,13,5.2,velocity,upper_uy,0.3145779073238373 +karman_re400,sr,13,5.2,velocity,center_ux,0.9448643326759338 +karman_re400,sr,13,5.2,velocity,center_uy,0.45153576135635376 +karman_re400,sr,13,5.2,velocity,lower_ux,1.222641110420227 +karman_re400,sr,13,5.2,velocity,lower_uy,0.29362753033638 +karman_re400,sr,14,5.6,velocity,upper_ux,0.9522904753684998 +karman_re400,sr,14,5.6,velocity,upper_uy,0.19198253750801086 +karman_re400,sr,14,5.6,velocity,center_ux,0.8682610392570496 +karman_re400,sr,14,5.6,velocity,center_uy,0.2814186215400696 +karman_re400,sr,14,5.6,velocity,lower_ux,1.290197730064392 +karman_re400,sr,14,5.6,velocity,lower_uy,0.19560426473617554 +karman_re400,sr,15,6.0,velocity,upper_ux,0.9320983290672302 +karman_re400,sr,15,6.0,velocity,upper_uy,-0.12448222935199738 +karman_re400,sr,15,6.0,velocity,center_ux,0.8522464632987976 +karman_re400,sr,15,6.0,velocity,center_uy,-0.08443722873926163 +karman_re400,sr,15,6.0,velocity,lower_ux,1.3316172361373901 +karman_re400,sr,15,6.0,velocity,lower_uy,0.08881816267967224 +karman_re400,sr,16,6.4,velocity,upper_ux,0.9457942843437195 +karman_re400,sr,16,6.4,velocity,upper_uy,-0.27879074215888977 +karman_re400,sr,16,6.4,velocity,center_ux,0.9038895964622498 +karman_re400,sr,16,6.4,velocity,center_uy,-0.3506687879562378 +karman_re400,sr,16,6.4,velocity,lower_ux,1.337558627128601 +karman_re400,sr,16,6.4,velocity,lower_uy,-0.0263160839676857 +karman_re400,sr,17,6.8,velocity,upper_ux,1.0014015436172485 +karman_re400,sr,17,6.8,velocity,upper_uy,-0.302983820438385 +karman_re400,sr,17,6.8,velocity,center_ux,0.9381075501441956 +karman_re400,sr,17,6.8,velocity,center_uy,-0.48816612362861633 +karman_re400,sr,17,6.8,velocity,lower_ux,1.1754571199417114 +karman_re400,sr,17,6.8,velocity,lower_uy,-0.12691982090473175 +karman_re400,sr,18,7.2,velocity,upper_ux,1.0620558261871338 +karman_re400,sr,18,7.2,velocity,upper_uy,-0.3169717490673065 +karman_re400,sr,18,7.2,velocity,center_ux,0.9680669903755188 +karman_re400,sr,18,7.2,velocity,center_uy,-0.5276487469673157 +karman_re400,sr,18,7.2,velocity,lower_ux,0.9803254008293152 +karman_re400,sr,18,7.2,velocity,lower_uy,-0.2697094976902008 +karman_re400,sr,19,7.6,velocity,upper_ux,1.115867257118225 +karman_re400,sr,19,7.6,velocity,upper_uy,-0.2976315915584564 +karman_re400,sr,19,7.6,velocity,center_ux,1.0039207935333252 +karman_re400,sr,19,7.6,velocity,center_uy,-0.5748942494392395 +karman_re400,sr,19,7.6,velocity,lower_ux,0.8967976570129395 +karman_re400,sr,19,7.6,velocity,lower_uy,-0.3178444802761078 +karman_re400,sr,20,8.0,velocity,upper_ux,1.178184986114502 +karman_re400,sr,20,8.0,velocity,upper_uy,-0.2616720497608185 +karman_re400,sr,20,8.0,velocity,center_ux,1.108248233795166 +karman_re400,sr,20,8.0,velocity,center_uy,-0.6629903316497803 +karman_re400,sr,20,8.0,velocity,lower_ux,0.8473407626152039 +karman_re400,sr,20,8.0,velocity,lower_uy,-0.27977249026298523 +karman_re400,sr,21,8.4,velocity,upper_ux,1.2391456365585327 +karman_re400,sr,21,8.4,velocity,upper_uy,-0.1944693773984909 +karman_re400,sr,21,8.4,velocity,center_ux,1.1441410779953003 +karman_re400,sr,21,8.4,velocity,center_uy,-0.6878389716148376 +karman_re400,sr,21,8.4,velocity,lower_ux,0.8061835765838623 +karman_re400,sr,21,8.4,velocity,lower_uy,-0.19191871583461761 +karman_re400,sr,22,8.8,velocity,upper_ux,1.3067317008972168 +karman_re400,sr,22,8.8,velocity,upper_uy,-0.18794965744018555 +karman_re400,sr,22,8.8,velocity,center_ux,1.112083077430725 +karman_re400,sr,22,8.8,velocity,center_uy,-0.11811091750860214 +karman_re400,sr,22,8.8,velocity,lower_ux,0.7900745272636414 +karman_re400,sr,22,8.8,velocity,lower_uy,-0.06765750050544739 +karman_re400,sr,23,9.2,velocity,upper_ux,1.3327598571777344 +karman_re400,sr,23,9.2,velocity,upper_uy,-0.17102079093456268 +karman_re400,sr,23,9.2,velocity,center_ux,1.0184253454208374 +karman_re400,sr,23,9.2,velocity,center_uy,0.4227777123451233 +karman_re400,sr,23,9.2,velocity,lower_ux,0.8179990649223328 +karman_re400,sr,23,9.2,velocity,lower_uy,0.06896452605724335 +karman_re400,sr,24,9.6,velocity,upper_ux,1.1868137121200562 +karman_re400,sr,24,9.6,velocity,upper_uy,0.2116885632276535 +karman_re400,sr,24,9.6,velocity,center_ux,0.9745934009552002 +karman_re400,sr,24,9.6,velocity,center_uy,0.5284371376037598 +karman_re400,sr,24,9.6,velocity,lower_ux,0.8752864599227905 +karman_re400,sr,24,9.6,velocity,lower_uy,0.1985391229391098 +karman_re400,sr,25,10.0,velocity,upper_ux,1.142014503479004 +karman_re400,sr,25,10.0,velocity,upper_uy,0.37528079748153687 +karman_re400,sr,25,10.0,velocity,center_ux,0.9797554016113281 +karman_re400,sr,25,10.0,velocity,center_uy,0.5676324963569641 +karman_re400,sr,25,10.0,velocity,lower_ux,0.9596478343009949 +karman_re400,sr,25,10.0,velocity,lower_uy,0.275307297706604 +karman_re400,sr,26,10.4,velocity,upper_ux,1.0702204704284668 +karman_re400,sr,26,10.4,velocity,upper_uy,0.3728889226913452 +karman_re400,sr,26,10.4,velocity,center_ux,0.9929624795913696 +karman_re400,sr,26,10.4,velocity,center_uy,0.5812978148460388 +karman_re400,sr,26,10.4,velocity,lower_ux,1.0471609830856323 +karman_re400,sr,26,10.4,velocity,lower_uy,0.29332301020622253 +karman_re400,sr,27,10.8,velocity,upper_ux,1.000569462776184 +karman_re400,sr,27,10.8,velocity,upper_uy,0.30888015031814575 +karman_re400,sr,27,10.8,velocity,center_ux,0.9958608150482178 +karman_re400,sr,27,10.8,velocity,center_uy,0.5978662967681885 +karman_re400,sr,27,10.8,velocity,lower_ux,1.1332722902297974 +karman_re400,sr,27,10.8,velocity,lower_uy,0.2603423595428467 +karman_re400,sr,28,11.2,velocity,upper_ux,0.9396827816963196 +karman_re400,sr,28,11.2,velocity,upper_uy,0.21154116094112396 +karman_re400,sr,28,11.2,velocity,center_ux,0.9340428709983826 +karman_re400,sr,28,11.2,velocity,center_uy,0.6008938550949097 +karman_re400,sr,28,11.2,velocity,lower_ux,1.2197675704956055 +karman_re400,sr,28,11.2,velocity,lower_uy,0.193264901638031 +karman_re400,sr,29,11.6,velocity,upper_ux,0.8948761820793152 +karman_re400,sr,29,11.6,velocity,upper_uy,0.06387749314308167 +karman_re400,sr,29,11.6,velocity,center_ux,0.8496166467666626 +karman_re400,sr,29,11.6,velocity,center_uy,0.18610259890556335 +karman_re400,sr,29,11.6,velocity,lower_ux,1.2967361211776733 +karman_re400,sr,29,11.6,velocity,lower_uy,0.08116299659013748 +karman_re400,sr,30,12.0,velocity,upper_ux,0.8687711954116821 +karman_re400,sr,30,12.0,velocity,upper_uy,-0.13416776061058044 +karman_re400,sr,30,12.0,velocity,center_ux,0.9200368523597717 +karman_re400,sr,30,12.0,velocity,center_uy,-0.3185630440711975 +karman_re400,sr,30,12.0,velocity,lower_ux,1.348423957824707 +karman_re400,sr,30,12.0,velocity,lower_uy,-0.057930007576942444 +karman_re400,sr,31,12.4,velocity,upper_ux,0.9123504757881165 +karman_re400,sr,31,12.4,velocity,upper_uy,-0.2557949125766754 +karman_re400,sr,31,12.4,velocity,center_ux,0.9612107276916504 +karman_re400,sr,31,12.4,velocity,center_uy,-0.5120704174041748 +karman_re400,sr,31,12.4,velocity,lower_ux,1.321549415588379 +karman_re400,sr,31,12.4,velocity,lower_uy,-0.11812449246644974 +karman_re400,sr,32,12.8,velocity,upper_ux,0.993415892124176 +karman_re400,sr,32,12.8,velocity,upper_uy,-0.3174852430820465 +karman_re400,sr,32,12.8,velocity,center_ux,0.9706023931503296 +karman_re400,sr,32,12.8,velocity,center_uy,-0.5682578086853027 +karman_re400,sr,32,12.8,velocity,lower_ux,1.207277536392212 +karman_re400,sr,32,12.8,velocity,lower_uy,-0.10496562719345093 +karman_re400,sr,33,13.2,velocity,upper_ux,1.0770204067230225 +karman_re400,sr,33,13.2,velocity,upper_uy,-0.33350369334220886 +karman_re400,sr,33,13.2,velocity,center_ux,0.9554505944252014 +karman_re400,sr,33,13.2,velocity,center_uy,-0.5602579116821289 +karman_re400,sr,33,13.2,velocity,lower_ux,1.057684063911438 +karman_re400,sr,33,13.2,velocity,lower_uy,-0.12849265336990356 +karman_re400,sr,34,13.6,velocity,upper_ux,1.1507412195205688 +karman_re400,sr,34,13.6,velocity,upper_uy,-0.2933253049850464 +karman_re400,sr,34,13.6,velocity,center_ux,0.9051642417907715 +karman_re400,sr,34,13.6,velocity,center_uy,-0.5907814502716064 +karman_re400,sr,34,13.6,velocity,lower_ux,0.9094421863555908 +karman_re400,sr,34,13.6,velocity,lower_uy,-0.169204443693161 +karman_re400,sr,35,14.0,velocity,upper_ux,1.1893655061721802 +karman_re400,sr,35,14.0,velocity,upper_uy,-0.24756722152233124 +karman_re400,sr,35,14.0,velocity,center_ux,0.8082109689712524 +karman_re400,sr,35,14.0,velocity,center_uy,-0.6158950924873352 +karman_re400,sr,35,14.0,velocity,lower_ux,0.8441320657730103 +karman_re400,sr,35,14.0,velocity,lower_uy,-0.17009460926055908 +karman_re400,sr,36,14.4,velocity,upper_ux,1.273492455482483 +karman_re400,sr,36,14.4,velocity,upper_uy,-0.18199145793914795 +karman_re400,sr,36,14.4,velocity,center_ux,0.6202439069747925 +karman_re400,sr,36,14.4,velocity,center_uy,-0.34362396597862244 +karman_re400,sr,36,14.4,velocity,lower_ux,0.830832302570343 +karman_re400,sr,36,14.4,velocity,lower_uy,-0.09629128128290176 +karman_re400,sr,37,14.8,velocity,upper_ux,1.3478479385375977 +karman_re400,sr,37,14.8,velocity,upper_uy,-0.06433561444282532 +karman_re400,sr,37,14.8,velocity,center_ux,0.6788623332977295 +karman_re400,sr,37,14.8,velocity,center_uy,0.28122588992118835 +karman_re400,sr,37,14.8,velocity,lower_ux,0.8462122082710266 +karman_re400,sr,37,14.8,velocity,lower_uy,0.007092906627804041 +karman_re400,sr,38,15.2,velocity,upper_ux,1.2851108312606812 +karman_re400,sr,38,15.2,velocity,upper_uy,-0.030176980420947075 +karman_re400,sr,38,15.2,velocity,center_ux,0.8104856610298157 +karman_re400,sr,38,15.2,velocity,center_uy,0.49225395917892456 +karman_re400,sr,38,15.2,velocity,lower_ux,0.8812129497528076 +karman_re400,sr,38,15.2,velocity,lower_uy,0.11806169152259827 +karman_re400,sr,39,15.6,velocity,upper_ux,1.101315975189209 +karman_re400,sr,39,15.6,velocity,upper_uy,0.1645176112651825 +karman_re400,sr,39,15.6,velocity,center_ux,0.881350040435791 +karman_re400,sr,39,15.6,velocity,center_uy,0.5324960947036743 +karman_re400,sr,39,15.6,velocity,lower_ux,0.9377596378326416 +karman_re400,sr,39,15.6,velocity,lower_uy,0.2095525711774826 +karman_re400,sr,40,16.0,velocity,upper_ux,1.0241756439208984 +karman_re400,sr,40,16.0,velocity,upper_uy,0.33034491539001465 +karman_re400,sr,40,16.0,velocity,center_ux,0.9218000769615173 +karman_re400,sr,40,16.0,velocity,center_uy,0.5384423732757568 +karman_re400,sr,40,16.0,velocity,lower_ux,1.005672812461853 +karman_re400,sr,40,16.0,velocity,lower_uy,0.2620036005973816 +karman_re400,sr,41,16.4,velocity,upper_ux,0.9920803904533386 +karman_re400,sr,41,16.4,velocity,upper_uy,0.34912726283073425 +karman_re400,sr,41,16.4,velocity,center_ux,0.9398958086967468 +karman_re400,sr,41,16.4,velocity,center_uy,0.5462180972099304 +karman_re400,sr,41,16.4,velocity,lower_ux,1.0750118494033813 +karman_re400,sr,41,16.4,velocity,lower_uy,0.2585331201553345 +karman_re400,sr,42,16.8,velocity,upper_ux,0.9573686122894287 +karman_re400,sr,42,16.8,velocity,upper_uy,0.28423169255256653 +karman_re400,sr,42,16.8,velocity,center_ux,0.9437819719314575 +karman_re400,sr,42,16.8,velocity,center_uy,0.5781526565551758 +karman_re400,sr,42,16.8,velocity,lower_ux,1.1501972675323486 +karman_re400,sr,42,16.8,velocity,lower_uy,0.23003333806991577 +karman_re400,sr,43,17.2,velocity,upper_ux,0.9254847764968872 +karman_re400,sr,43,17.2,velocity,upper_uy,0.18090929090976715 +karman_re400,sr,43,17.2,velocity,center_ux,0.8775333166122437 +karman_re400,sr,43,17.2,velocity,center_uy,0.5255591869354248 +karman_re400,sr,43,17.2,velocity,lower_ux,1.2259540557861328 +karman_re400,sr,43,17.2,velocity,lower_uy,0.16009686887264252 +karman_re400,sr,44,17.6,velocity,upper_ux,0.9037003517150879 +karman_re400,sr,44,17.6,velocity,upper_uy,0.03442389518022537 +karman_re400,sr,44,17.6,velocity,center_ux,0.8235018253326416 +karman_re400,sr,44,17.6,velocity,center_uy,0.0173202957957983 +karman_re400,sr,44,17.6,velocity,lower_ux,1.2887873649597168 +karman_re400,sr,44,17.6,velocity,lower_uy,0.06096291542053223 +karman_re400,sr,45,18.0,velocity,upper_ux,0.8930950164794922 +karman_re400,sr,45,18.0,velocity,upper_uy,-0.14256873726844788 +karman_re400,sr,45,18.0,velocity,center_ux,0.8706899881362915 +karman_re400,sr,45,18.0,velocity,center_uy,-0.3809139132499695 +karman_re400,sr,45,18.0,velocity,lower_ux,1.3074873685836792 +karman_re400,sr,45,18.0,velocity,lower_uy,0.045014843344688416 +karman_re400,sr,46,18.4,velocity,upper_ux,0.9397472143173218 +karman_re400,sr,46,18.4,velocity,upper_uy,-0.24023881554603577 +karman_re400,sr,46,18.4,velocity,center_ux,0.9115163683891296 +karman_re400,sr,46,18.4,velocity,center_uy,-0.5226449370384216 +karman_re400,sr,46,18.4,velocity,lower_ux,1.1647049188613892 +karman_re400,sr,46,18.4,velocity,lower_uy,-0.04133429378271103 +karman_re400,sr,47,18.8,velocity,upper_ux,1.0092331171035767 +karman_re400,sr,47,18.8,velocity,upper_uy,-0.2913018763065338 +karman_re400,sr,47,18.8,velocity,center_ux,0.9438561201095581 +karman_re400,sr,47,18.8,velocity,center_uy,-0.5686001777648926 +karman_re400,sr,47,18.8,velocity,lower_ux,0.9849472641944885 +karman_re400,sr,47,18.8,velocity,lower_uy,-0.2779761850833893 +karman_re400,sr,48,19.2,velocity,upper_ux,1.0825800895690918 +karman_re400,sr,48,19.2,velocity,upper_uy,-0.29322123527526855 +karman_re400,sr,48,19.2,velocity,center_ux,0.9714755415916443 +karman_re400,sr,48,19.2,velocity,center_uy,-0.5660770535469055 +karman_re400,sr,48,19.2,velocity,lower_ux,0.9475538730621338 +karman_re400,sr,48,19.2,velocity,lower_uy,-0.35533276200294495 +karman_re400,sr,49,19.6,velocity,upper_ux,1.165461540222168 +karman_re400,sr,49,19.6,velocity,upper_uy,-0.2627812325954437 +karman_re400,sr,49,19.6,velocity,center_ux,0.9822218418121338 +karman_re400,sr,49,19.6,velocity,center_uy,-0.5561577081680298 +karman_re400,sr,49,19.6,velocity,lower_ux,0.9092931151390076 +karman_re400,sr,49,19.6,velocity,lower_uy,-0.3026356101036072 +karman_re400,sr,50,20.0,velocity,upper_ux,1.245704174041748 +karman_re400,sr,50,20.0,velocity,upper_uy,-0.1875479370355606 +karman_re400,sr,50,20.0,velocity,center_ux,0.9360133409500122 +karman_re400,sr,50,20.0,velocity,center_uy,-0.6725283265113831 +karman_re400,sr,50,20.0,velocity,lower_ux,0.8622262477874756 +karman_re400,sr,50,20.0,velocity,lower_uy,-0.20686598122119904 +karman_re400,sr,51,20.4,velocity,upper_ux,1.3029710054397583 +karman_re400,sr,51,20.4,velocity,upper_uy,-0.07946948707103729 +karman_re400,sr,51,20.4,velocity,center_ux,0.949962317943573 +karman_re400,sr,51,20.4,velocity,center_uy,-0.2649296820163727 +karman_re400,sr,51,20.4,velocity,lower_ux,0.834892988204956 +karman_re400,sr,51,20.4,velocity,lower_uy,-0.07661893218755722 +karman_re400,sr,52,20.8,velocity,upper_ux,1.3304904699325562 +karman_re400,sr,52,20.8,velocity,upper_uy,0.0018214252777397633 +karman_re400,sr,52,20.8,velocity,center_ux,0.9807327389717102 +karman_re400,sr,52,20.8,velocity,center_uy,0.39594054222106934 +karman_re400,sr,52,20.8,velocity,lower_ux,0.8396092057228088 +karman_re400,sr,52,20.8,velocity,lower_uy,0.07828059792518616 +karman_re400,sr,53,21.2,velocity,upper_ux,1.2148966789245605 +karman_re400,sr,53,21.2,velocity,upper_uy,0.037776824086904526 +karman_re400,sr,53,21.2,velocity,center_ux,0.9780939221382141 +karman_re400,sr,53,21.2,velocity,center_uy,0.5744946599006653 +karman_re400,sr,53,21.2,velocity,lower_ux,0.8796918988227844 +karman_re400,sr,53,21.2,velocity,lower_uy,0.2088596373796463 +karman_re400,sr,54,21.6,velocity,upper_ux,1.0160222053527832 +karman_re400,sr,54,21.6,velocity,upper_uy,0.2090635448694229 +karman_re400,sr,54,21.6,velocity,center_ux,0.9881672859191895 +karman_re400,sr,54,21.6,velocity,center_uy,0.587489902973175 +karman_re400,sr,54,21.6,velocity,lower_ux,0.953320324420929 +karman_re400,sr,54,21.6,velocity,lower_uy,0.2782963514328003 +karman_re400,sr,55,22.0,velocity,upper_ux,0.9590202569961548 +karman_re400,sr,55,22.0,velocity,upper_uy,0.3453875780105591 +karman_re400,sr,55,22.0,velocity,center_ux,1.003542423248291 +karman_re400,sr,55,22.0,velocity,center_uy,0.5681278109550476 +karman_re400,sr,55,22.0,velocity,lower_ux,1.026098370552063 +karman_re400,sr,55,22.0,velocity,lower_uy,0.3028995394706726 +karman_re400,sr,56,22.4,velocity,upper_ux,0.936247706413269 +karman_re400,sr,56,22.4,velocity,upper_uy,0.3369947075843811 +karman_re400,sr,56,22.4,velocity,center_ux,1.0229506492614746 +karman_re400,sr,56,22.4,velocity,center_uy,0.5545827746391296 +karman_re400,sr,56,22.4,velocity,lower_ux,1.091141700744629 +karman_re400,sr,56,22.4,velocity,lower_uy,0.28257429599761963 +karman_re400,sr,57,22.8,velocity,upper_ux,0.8936936855316162 +karman_re400,sr,57,22.8,velocity,upper_uy,0.26855072379112244 +karman_re400,sr,57,22.8,velocity,center_ux,1.0330430269241333 +karman_re400,sr,57,22.8,velocity,center_uy,0.5260231494903564 +karman_re400,sr,57,22.8,velocity,lower_ux,1.1453825235366821 +karman_re400,sr,57,22.8,velocity,lower_uy,0.2468845248222351 +karman_re400,sr,58,23.2,velocity,upper_ux,0.8528093695640564 +karman_re400,sr,58,23.2,velocity,upper_uy,0.15896746516227722 +karman_re400,sr,58,23.2,velocity,center_ux,1.0773688554763794 +karman_re400,sr,58,23.2,velocity,center_uy,0.5265841484069824 +karman_re400,sr,58,23.2,velocity,lower_ux,1.1840522289276123 +karman_re400,sr,58,23.2,velocity,lower_uy,0.21103711426258087 +karman_re400,sr,59,23.6,velocity,upper_ux,0.8428383469581604 +karman_re400,sr,59,23.6,velocity,upper_uy,0.009713021107017994 +karman_re400,sr,59,23.6,velocity,center_ux,1.0959200859069824 +karman_re400,sr,59,23.6,velocity,center_uy,0.028179042041301727 +karman_re400,sr,59,23.6,velocity,lower_ux,1.2180362939834595 +karman_re400,sr,59,23.6,velocity,lower_uy,0.25864672660827637 +karman_re400,sr,60,24.0,velocity,upper_ux,0.8628952503204346 +karman_re400,sr,60,24.0,velocity,upper_uy,-0.15456992387771606 +karman_re400,sr,60,24.0,velocity,center_ux,1.0138540267944336 +karman_re400,sr,60,24.0,velocity,center_uy,-0.4047430455684662 +karman_re400,sr,60,24.0,velocity,lower_ux,1.13312828540802 +karman_re400,sr,60,24.0,velocity,lower_uy,0.13527801632881165 +karman_re400,sr,61,24.4,velocity,upper_ux,0.928335964679718 +karman_re400,sr,61,24.4,velocity,upper_uy,-0.24721486866474152 +karman_re400,sr,61,24.4,velocity,center_ux,0.9793197512626648 +karman_re400,sr,61,24.4,velocity,center_uy,-0.5439273715019226 +karman_re400,sr,61,24.4,velocity,lower_ux,1.0625276565551758 +karman_re400,sr,61,24.4,velocity,lower_uy,-0.33240729570388794 +karman_re400,sr,62,24.8,velocity,upper_ux,1.0062333345413208 +karman_re400,sr,62,24.8,velocity,upper_uy,-0.28149276971817017 +karman_re400,sr,62,24.8,velocity,center_ux,1.0003780126571655 +karman_re400,sr,62,24.8,velocity,center_uy,-0.5827710628509521 +karman_re400,sr,62,24.8,velocity,lower_ux,1.040809988975525 +karman_re400,sr,62,24.8,velocity,lower_uy,-0.44626349210739136 +karman_re400,sr,63,25.2,velocity,upper_ux,1.0753586292266846 +karman_re400,sr,63,25.2,velocity,upper_uy,-0.2627071142196655 +karman_re400,sr,63,25.2,velocity,center_ux,1.0661647319793701 +karman_re400,sr,63,25.2,velocity,center_uy,-0.5863043069839478 +karman_re400,sr,63,25.2,velocity,lower_ux,0.988696277141571 +karman_re400,sr,63,25.2,velocity,lower_uy,-0.40815600752830505 +karman_re400,sr,64,25.6,velocity,upper_ux,1.13629949092865 +karman_re400,sr,64,25.6,velocity,upper_uy,-0.22343987226486206 +karman_re400,sr,64,25.6,velocity,center_ux,1.199800729751587 +karman_re400,sr,64,25.6,velocity,center_uy,-0.6352719664573669 +karman_re400,sr,64,25.6,velocity,lower_ux,0.929267168045044 +karman_re400,sr,64,25.6,velocity,lower_uy,-0.32327044010162354 +karman_re400,sr,65,26.0,velocity,upper_ux,1.1742247343063354 +karman_re400,sr,65,26.0,velocity,upper_uy,-0.17699547111988068 +karman_re400,sr,65,26.0,velocity,center_ux,1.264928936958313 +karman_re400,sr,65,26.0,velocity,center_uy,-0.46345001459121704 +karman_re400,sr,65,26.0,velocity,lower_ux,0.8772149682044983 +karman_re400,sr,65,26.0,velocity,lower_uy,-0.19777734577655792 +karman_re400,sr,66,26.4,velocity,upper_ux,1.1976758241653442 +karman_re400,sr,66,26.4,velocity,upper_uy,-0.22189655900001526 +karman_re400,sr,66,26.4,velocity,center_ux,1.1804721355438232 +karman_re400,sr,66,26.4,velocity,center_uy,0.037307947874069214 +karman_re400,sr,66,26.4,velocity,lower_ux,0.8633711934089661 +karman_re400,sr,66,26.4,velocity,lower_uy,-0.024056151509284973 +karman_re400,sr,67,26.8,velocity,upper_ux,1.1617286205291748 +karman_re400,sr,67,26.8,velocity,upper_uy,-0.09500762820243835 +karman_re400,sr,67,26.8,velocity,center_ux,1.0738632678985596 +karman_re400,sr,67,26.8,velocity,center_uy,0.32637694478034973 +karman_re400,sr,67,26.8,velocity,lower_ux,0.880333662033081 +karman_re400,sr,67,26.8,velocity,lower_uy,0.17343713343143463 +karman_re400,sr,68,27.2,velocity,upper_ux,1.1427544355392456 +karman_re400,sr,68,27.2,velocity,upper_uy,0.37174364924430847 +karman_re400,sr,68,27.2,velocity,center_ux,1.039648175239563 +karman_re400,sr,68,27.2,velocity,center_uy,0.4602687954902649 +karman_re400,sr,68,27.2,velocity,lower_ux,0.9486939907073975 +karman_re400,sr,68,27.2,velocity,lower_uy,0.2683468461036682 +karman_re400,sr,69,27.6,velocity,upper_ux,1.1213507652282715 +karman_re400,sr,69,27.6,velocity,upper_uy,0.387058287858963 +karman_re400,sr,69,27.6,velocity,center_ux,1.0415208339691162 +karman_re400,sr,69,27.6,velocity,center_uy,0.4843897223472595 +karman_re400,sr,69,27.6,velocity,lower_ux,1.0291848182678223 +karman_re400,sr,69,27.6,velocity,lower_uy,0.29615113139152527 +karman_re400,sr,70,28.0,velocity,upper_ux,1.0801831483840942 +karman_re400,sr,70,28.0,velocity,upper_uy,0.3170616924762726 +karman_re400,sr,70,28.0,velocity,center_ux,1.0448108911514282 +karman_re400,sr,70,28.0,velocity,center_uy,0.47990331053733826 +karman_re400,sr,70,28.0,velocity,lower_ux,1.096490502357483 +karman_re400,sr,70,28.0,velocity,lower_uy,0.2725123167037964 +karman_re400,sr,71,28.4,velocity,upper_ux,1.0342942476272583 +karman_re400,sr,71,28.4,velocity,upper_uy,0.22142444550991058 +karman_re400,sr,71,28.4,velocity,center_ux,1.0391863584518433 +karman_re400,sr,71,28.4,velocity,center_uy,0.4779397249221802 +karman_re400,sr,71,28.4,velocity,lower_ux,1.1508817672729492 +karman_re400,sr,71,28.4,velocity,lower_uy,0.22318801283836365 +karman_re400,sr,72,28.8,velocity,upper_ux,0.9673181772232056 +karman_re400,sr,72,28.8,velocity,upper_uy,0.06581919640302658 +karman_re400,sr,72,28.8,velocity,center_ux,1.0397063493728638 +karman_re400,sr,72,28.8,velocity,center_uy,0.2920535206794739 +karman_re400,sr,72,28.8,velocity,lower_ux,1.1912990808486938 +karman_re400,sr,72,28.8,velocity,lower_uy,0.16037946939468384 +karman_re400,sr,73,29.2,velocity,upper_ux,0.9093307256698608 +karman_re400,sr,73,29.2,velocity,upper_uy,-0.11924325674772263 +karman_re400,sr,73,29.2,velocity,center_ux,0.9888252019882202 +karman_re400,sr,73,29.2,velocity,center_uy,-0.05240599811077118 +karman_re400,sr,73,29.2,velocity,lower_ux,1.2133705615997314 +karman_re400,sr,73,29.2,velocity,lower_uy,0.09063300490379333 +karman_re400,sr,74,29.6,velocity,upper_ux,0.9348548054695129 +karman_re400,sr,74,29.6,velocity,upper_uy,-0.20975516736507416 +karman_re400,sr,74,29.6,velocity,center_ux,0.9538541436195374 +karman_re400,sr,74,29.6,velocity,center_uy,-0.306732177734375 +karman_re400,sr,74,29.6,velocity,lower_ux,1.2195907831192017 +karman_re400,sr,74,29.6,velocity,lower_uy,0.11046423763036728 +karman_re400,sr,75,30.0,velocity,upper_ux,0.9905329346656799 +karman_re400,sr,75,30.0,velocity,upper_uy,-0.26416802406311035 +karman_re400,sr,75,30.0,velocity,center_ux,0.9424418807029724 +karman_re400,sr,75,30.0,velocity,center_uy,-0.43310174345970154 +karman_re400,sr,75,30.0,velocity,lower_ux,1.1116963624954224 +karman_re400,sr,75,30.0,velocity,lower_uy,0.1063418835401535 +karman_re400,sr,76,30.4,velocity,upper_ux,1.048151969909668 +karman_re400,sr,76,30.4,velocity,upper_uy,-0.3005542457103729 +karman_re400,sr,76,30.4,velocity,center_ux,0.9487510919570923 +karman_re400,sr,76,30.4,velocity,center_uy,-0.4635539650917053 +karman_re400,sr,76,30.4,velocity,lower_ux,0.9295687079429626 +karman_re400,sr,76,30.4,velocity,lower_uy,-0.25875961780548096 +karman_re400,sr,77,30.8,velocity,upper_ux,1.1016089916229248 +karman_re400,sr,77,30.8,velocity,upper_uy,-0.29329270124435425 +karman_re400,sr,77,30.8,velocity,center_ux,0.9570072889328003 +karman_re400,sr,77,30.8,velocity,center_uy,-0.48354294896125793 +karman_re400,sr,77,30.8,velocity,lower_ux,0.9327855706214905 +karman_re400,sr,77,30.8,velocity,lower_uy,-0.3591333031654358 +karman_re400,sr,78,31.2,velocity,upper_ux,1.1559643745422363 +karman_re400,sr,78,31.2,velocity,upper_uy,-0.2688870131969452 +karman_re400,sr,78,31.2,velocity,center_ux,0.9834129810333252 +karman_re400,sr,78,31.2,velocity,center_uy,-0.5160893201828003 +karman_re400,sr,78,31.2,velocity,lower_ux,0.9148944616317749 +karman_re400,sr,78,31.2,velocity,lower_uy,-0.2923069894313812 +karman_re400,sr,79,31.6,velocity,upper_ux,1.2030506134033203 +karman_re400,sr,79,31.6,velocity,upper_uy,-0.22654028236865997 +karman_re400,sr,79,31.6,velocity,center_ux,1.0113110542297363 +karman_re400,sr,79,31.6,velocity,center_uy,-0.5989710688591003 +karman_re400,sr,79,31.6,velocity,lower_ux,0.8845365643501282 +karman_re400,sr,79,31.6,velocity,lower_uy,-0.2009802609682083 +karman_re400,sr,80,32.0,velocity,upper_ux,1.2264901399612427 +karman_re400,sr,80,32.0,velocity,upper_uy,-0.20060768723487854 +karman_re400,sr,80,32.0,velocity,center_ux,0.9628927707672119 +karman_re400,sr,80,32.0,velocity,center_uy,-0.2970545291900635 +karman_re400,sr,80,32.0,velocity,lower_ux,0.8686133027076721 +karman_re400,sr,80,32.0,velocity,lower_uy,-0.09114264696836472 +karman_re400,sr,81,32.4,velocity,upper_ux,1.2103188037872314 +karman_re400,sr,81,32.4,velocity,upper_uy,-0.2317712903022766 +karman_re400,sr,81,32.4,velocity,center_ux,0.9018067717552185 +karman_re400,sr,81,32.4,velocity,center_uy,0.25676047801971436 +karman_re400,sr,81,32.4,velocity,lower_ux,0.8697115182876587 +karman_re400,sr,81,32.4,velocity,lower_uy,0.04162632301449776 +karman_re400,sr,82,32.8,velocity,upper_ux,1.0798861980438232 +karman_re400,sr,82,32.8,velocity,upper_uy,0.07348243147134781 +karman_re400,sr,82,32.8,velocity,center_ux,0.8907739520072937 +karman_re400,sr,82,32.8,velocity,center_uy,0.4669114649295807 +karman_re400,sr,82,32.8,velocity,lower_ux,0.8968313336372375 +karman_re400,sr,82,32.8,velocity,lower_uy,0.16488897800445557 +karman_re400,sr,83,33.2,velocity,upper_ux,1.0714938640594482 +karman_re400,sr,83,33.2,velocity,upper_uy,0.3864513039588928 +karman_re400,sr,83,33.2,velocity,center_ux,0.9231545925140381 +karman_re400,sr,83,33.2,velocity,center_uy,0.53128981590271 +karman_re400,sr,83,33.2,velocity,lower_ux,0.9601500034332275 +karman_re400,sr,83,33.2,velocity,lower_uy,0.2339937835931778 +karman_re400,sr,84,33.6,velocity,upper_ux,1.04465913772583 +karman_re400,sr,84,33.6,velocity,upper_uy,0.4489677846431732 +karman_re400,sr,84,33.6,velocity,center_ux,0.9672129154205322 +karman_re400,sr,84,33.6,velocity,center_uy,0.5585652589797974 +karman_re400,sr,84,33.6,velocity,lower_ux,1.028529405593872 +karman_re400,sr,84,33.6,velocity,lower_uy,0.25511446595191956 +karman_re400,sr,85,34.0,velocity,upper_ux,0.9979327321052551 +karman_re400,sr,85,34.0,velocity,upper_uy,0.39047321677207947 +karman_re400,sr,85,34.0,velocity,center_ux,1.0283312797546387 +karman_re400,sr,85,34.0,velocity,center_uy,0.571765661239624 +karman_re400,sr,85,34.0,velocity,lower_ux,1.0933828353881836 +karman_re400,sr,85,34.0,velocity,lower_uy,0.22972792387008667 +karman_re400,sr,86,34.4,velocity,upper_ux,0.9450385570526123 +karman_re400,sr,86,34.4,velocity,upper_uy,0.28939467668533325 +karman_re400,sr,86,34.4,velocity,center_ux,1.1177715063095093 +karman_re400,sr,86,34.4,velocity,center_uy,0.6296303272247314 +karman_re400,sr,86,34.4,velocity,lower_ux,1.1523158550262451 +karman_re400,sr,86,34.4,velocity,lower_uy,0.18111543357372284 +karman_re400,sr,87,34.8,velocity,upper_ux,0.901577353477478 +karman_re400,sr,87,34.8,velocity,upper_uy,0.1479983925819397 +karman_re400,sr,87,34.8,velocity,center_ux,1.1667215824127197 +karman_re400,sr,87,34.8,velocity,center_uy,0.33322691917419434 +karman_re400,sr,87,34.8,velocity,lower_ux,1.185073733329773 +karman_re400,sr,87,34.8,velocity,lower_uy,0.10925879329442978 +karman_re400,sr,88,35.2,velocity,upper_ux,0.878400981426239 +karman_re400,sr,88,35.2,velocity,upper_uy,-0.04920332133769989 +karman_re400,sr,88,35.2,velocity,center_ux,1.0962936878204346 +karman_re400,sr,88,35.2,velocity,center_uy,-0.1660192459821701 +karman_re400,sr,88,35.2,velocity,lower_ux,1.2115312814712524 +karman_re400,sr,88,35.2,velocity,lower_uy,0.11800789088010788 +karman_re400,sr,89,35.6,velocity,upper_ux,0.8998426795005798 +karman_re400,sr,89,35.6,velocity,upper_uy,-0.21297666430473328 +karman_re400,sr,89,35.6,velocity,center_ux,1.0262465476989746 +karman_re400,sr,89,35.6,velocity,center_uy,-0.39795443415641785 +karman_re400,sr,89,35.6,velocity,lower_ux,1.2033288478851318 +karman_re400,sr,89,35.6,velocity,lower_uy,0.16900943219661713 +karman_re400,sr,90,36.0,velocity,upper_ux,0.9741297960281372 +karman_re400,sr,90,36.0,velocity,upper_uy,-0.2798241376876831 +karman_re400,sr,90,36.0,velocity,center_ux,1.0050851106643677 +karman_re400,sr,90,36.0,velocity,center_uy,-0.4968985319137573 +karman_re400,sr,90,36.0,velocity,lower_ux,1.0431936979293823 +karman_re400,sr,90,36.0,velocity,lower_uy,-0.25247520208358765 +karman_re400,sr,91,36.4,velocity,upper_ux,1.0494155883789062 +karman_re400,sr,91,36.4,velocity,upper_uy,-0.2992159426212311 +karman_re400,sr,91,36.4,velocity,center_ux,1.004081130027771 +karman_re400,sr,91,36.4,velocity,center_uy,-0.5029723048210144 +karman_re400,sr,91,36.4,velocity,lower_ux,1.0246165990829468 +karman_re400,sr,91,36.4,velocity,lower_uy,-0.35509490966796875 +karman_re400,sr,92,36.8,velocity,upper_ux,1.1160287857055664 +karman_re400,sr,92,36.8,velocity,upper_uy,-0.27159878611564636 +karman_re400,sr,92,36.8,velocity,center_ux,1.0014251470565796 +karman_re400,sr,92,36.8,velocity,center_uy,-0.5186298489570618 +karman_re400,sr,92,36.8,velocity,lower_ux,0.9905750155448914 +karman_re400,sr,92,36.8,velocity,lower_uy,-0.2989296615123749 +karman_re400,sr,93,37.2,velocity,upper_ux,1.1758782863616943 +karman_re400,sr,93,37.2,velocity,upper_uy,-0.22341592609882355 +karman_re400,sr,93,37.2,velocity,center_ux,1.0029139518737793 +karman_re400,sr,93,37.2,velocity,center_uy,-0.5308053493499756 +karman_re400,sr,93,37.2,velocity,lower_ux,0.9483786821365356 +karman_re400,sr,93,37.2,velocity,lower_uy,-0.21898801624774933 +karman_re400,sr,94,37.6,velocity,upper_ux,1.218612551689148 +karman_re400,sr,94,37.6,velocity,upper_uy,-0.14635524153709412 +karman_re400,sr,94,37.6,velocity,center_ux,0.9511767029762268 +karman_re400,sr,94,37.6,velocity,center_uy,-0.32309722900390625 +karman_re400,sr,94,37.6,velocity,lower_ux,0.9157763719558716 +karman_re400,sr,94,37.6,velocity,lower_uy,-0.10984444618225098 +karman_re400,sr,95,38.0,velocity,upper_ux,1.2273191213607788 +karman_re400,sr,95,38.0,velocity,upper_uy,-0.09002719819545746 +karman_re400,sr,95,38.0,velocity,center_ux,0.9305962920188904 +karman_re400,sr,95,38.0,velocity,center_uy,0.12759341299533844 +karman_re400,sr,95,38.0,velocity,lower_ux,0.8889574408531189 +karman_re400,sr,95,38.0,velocity,lower_uy,0.05331861972808838 +karman_re400,sr,96,38.4,velocity,upper_ux,1.205702543258667 +karman_re400,sr,96,38.4,velocity,upper_uy,-0.14904598891735077 +karman_re400,sr,96,38.4,velocity,center_ux,0.9230338931083679 +karman_re400,sr,96,38.4,velocity,center_uy,0.37676048278808594 +karman_re400,sr,96,38.4,velocity,lower_ux,0.9033117890357971 +karman_re400,sr,96,38.4,velocity,lower_uy,0.19079351425170898 +karman_re400,sr,97,38.8,velocity,upper_ux,1.016597032546997 +karman_re400,sr,97,38.8,velocity,upper_uy,0.026911182329058647 +karman_re400,sr,97,38.8,velocity,center_ux,0.9330402612686157 +karman_re400,sr,97,38.8,velocity,center_uy,0.49495789408683777 +karman_re400,sr,97,38.8,velocity,lower_ux,0.9669126868247986 +karman_re400,sr,97,38.8,velocity,lower_uy,0.2567492127418518 +karman_re400,sr,98,39.2,velocity,upper_ux,0.9224798083305359 +karman_re400,sr,98,39.2,velocity,upper_uy,0.3729027211666107 +karman_re400,sr,98,39.2,velocity,center_ux,0.9539039134979248 +karman_re400,sr,98,39.2,velocity,center_uy,0.5318895578384399 +karman_re400,sr,98,39.2,velocity,lower_ux,1.0347931385040283 +karman_re400,sr,98,39.2,velocity,lower_uy,0.29111775755882263 +karman_re400,sr,99,39.6,velocity,upper_ux,0.9298175573348999 +karman_re400,sr,99,39.6,velocity,upper_uy,0.39799976348876953 +karman_re400,sr,99,39.6,velocity,center_ux,0.983660876750946 +karman_re400,sr,99,39.6,velocity,center_uy,0.5515038967132568 +karman_re400,sr,99,39.6,velocity,lower_ux,1.0989749431610107 +karman_re400,sr,99,39.6,velocity,lower_uy,0.2772993743419647 +karman_re400,sr,100,40.0,velocity,upper_ux,0.9036608934402466 +karman_re400,sr,100,40.0,velocity,upper_uy,0.3228977918624878 +karman_re400,sr,100,40.0,velocity,center_ux,1.042823314666748 +karman_re400,sr,100,40.0,velocity,center_uy,0.5961877703666687 +karman_re400,sr,100,40.0,velocity,lower_ux,1.1642497777938843 +karman_re400,sr,100,40.0,velocity,lower_uy,0.24036210775375366 +karman_re400,sr,101,40.4,velocity,upper_ux,0.8701180815696716 +karman_re400,sr,101,40.4,velocity,upper_uy,0.21538762748241425 +karman_re400,sr,101,40.4,velocity,center_ux,1.0654816627502441 +karman_re400,sr,101,40.4,velocity,center_uy,0.6063192486763 +karman_re400,sr,101,40.4,velocity,lower_ux,1.2177575826644897 +karman_re400,sr,101,40.4,velocity,lower_uy,0.17021805047988892 +karman_re400,sr,102,40.8,velocity,upper_ux,0.8571099042892456 +karman_re400,sr,102,40.8,velocity,upper_uy,0.07371310144662857 +karman_re400,sr,102,40.8,velocity,center_ux,1.0560375452041626 +karman_re400,sr,102,40.8,velocity,center_uy,0.03998453915119171 +karman_re400,sr,102,40.8,velocity,lower_ux,1.2370479106903076 +karman_re400,sr,102,40.8,velocity,lower_uy,0.10380882024765015 +karman_re400,sr,103,41.2,velocity,upper_ux,0.8634371161460876 +karman_re400,sr,103,41.2,velocity,upper_uy,-0.10665693879127502 +karman_re400,sr,103,41.2,velocity,center_ux,1.0007096529006958 +karman_re400,sr,103,41.2,velocity,center_uy,-0.37752532958984375 +karman_re400,sr,103,41.2,velocity,lower_ux,1.2181477546691895 +karman_re400,sr,103,41.2,velocity,lower_uy,0.1269873082637787 +karman_re400,sr,104,41.6,velocity,upper_ux,0.909715473651886 +karman_re400,sr,104,41.6,velocity,upper_uy,-0.23567384481430054 +karman_re400,sr,104,41.6,velocity,center_ux,0.9831646084785461 +karman_re400,sr,104,41.6,velocity,center_uy,-0.5087597370147705 +karman_re400,sr,104,41.6,velocity,lower_ux,1.056898593902588 +karman_re400,sr,104,41.6,velocity,lower_uy,-0.05795499309897423 +karman_re400,sr,105,42.0,velocity,upper_ux,0.9880293011665344 +karman_re400,sr,105,42.0,velocity,upper_uy,-0.28730207681655884 +karman_re400,sr,105,42.0,velocity,center_ux,0.9938642978668213 +karman_re400,sr,105,42.0,velocity,center_uy,-0.5589773654937744 +karman_re400,sr,105,42.0,velocity,lower_ux,0.9877173900604248 +karman_re400,sr,105,42.0,velocity,lower_uy,-0.3622775375843048 +karman_re400,sr,106,42.4,velocity,upper_ux,1.062020182609558 +karman_re400,sr,106,42.4,velocity,upper_uy,-0.2869359850883484 +karman_re400,sr,106,42.4,velocity,center_ux,1.0170973539352417 +karman_re400,sr,106,42.4,velocity,center_uy,-0.5597742795944214 +karman_re400,sr,106,42.4,velocity,lower_ux,0.9888771176338196 +karman_re400,sr,106,42.4,velocity,lower_uy,-0.3907417058944702 +karman_re400,sr,107,42.8,velocity,upper_ux,1.1300643682479858 +karman_re400,sr,107,42.8,velocity,upper_uy,-0.251487135887146 +karman_re400,sr,107,42.8,velocity,center_ux,1.0618252754211426 +karman_re400,sr,107,42.8,velocity,center_uy,-0.5668203234672546 +karman_re400,sr,107,42.8,velocity,lower_ux,0.9579018950462341 +karman_re400,sr,107,42.8,velocity,lower_uy,-0.32631397247314453 +karman_re400,sr,108,43.2,velocity,upper_ux,1.189136028289795 +karman_re400,sr,108,43.2,velocity,upper_uy,-0.1940145641565323 +karman_re400,sr,108,43.2,velocity,center_ux,1.1091665029525757 +karman_re400,sr,108,43.2,velocity,center_uy,-0.6059550046920776 +karman_re400,sr,108,43.2,velocity,lower_ux,0.9177229404449463 +karman_re400,sr,108,43.2,velocity,lower_uy,-0.22384004294872284 +karman_re400,sr,109,43.6,velocity,upper_ux,1.2233394384384155 +karman_re400,sr,109,43.6,velocity,upper_uy,-0.12899750471115112 +karman_re400,sr,109,43.6,velocity,center_ux,1.1075482368469238 +karman_re400,sr,109,43.6,velocity,center_uy,-0.14709796011447906 +karman_re400,sr,109,43.6,velocity,lower_ux,0.891028881072998 +karman_re400,sr,109,43.6,velocity,lower_uy,-0.07096532732248306 +karman_re400,sr,110,44.0,velocity,upper_ux,1.228822112083435 +karman_re400,sr,110,44.0,velocity,upper_uy,-0.14359934628009796 +karman_re400,sr,110,44.0,velocity,center_ux,1.032157063484192 +karman_re400,sr,110,44.0,velocity,center_uy,0.30367064476013184 +karman_re400,sr,110,44.0,velocity,lower_ux,0.879035234451294 +karman_re400,sr,110,44.0,velocity,lower_uy,0.12533985078334808 +karman_re400,sr,111,44.4,velocity,upper_ux,1.0932823419570923 +karman_re400,sr,111,44.4,velocity,upper_uy,0.03570422902703285 +karman_re400,sr,111,44.4,velocity,center_ux,0.99805748462677 +karman_re400,sr,111,44.4,velocity,center_uy,0.4714822471141815 +karman_re400,sr,111,44.4,velocity,lower_ux,0.9231536984443665 +karman_re400,sr,111,44.4,velocity,lower_uy,0.24108821153640747 +karman_re400,sr,112,44.8,velocity,upper_ux,1.0231542587280273 +karman_re400,sr,112,44.8,velocity,upper_uy,0.33645710349082947 +karman_re400,sr,112,44.8,velocity,center_ux,1.0006823539733887 +karman_re400,sr,112,44.8,velocity,center_uy,0.5250301957130432 +karman_re400,sr,112,44.8,velocity,lower_ux,0.9982861876487732 +karman_re400,sr,112,44.8,velocity,lower_uy,0.2914552390575409 +karman_re400,sr,113,45.2,velocity,upper_ux,1.0112844705581665 +karman_re400,sr,113,45.2,velocity,upper_uy,0.3564721941947937 +karman_re400,sr,113,45.2,velocity,center_ux,1.0152286291122437 +karman_re400,sr,113,45.2,velocity,center_uy,0.5262995362281799 +karman_re400,sr,113,45.2,velocity,lower_ux,1.0691132545471191 +karman_re400,sr,113,45.2,velocity,lower_uy,0.29675614833831787 +karman_re400,sr,114,45.6,velocity,upper_ux,0.9694919586181641 +karman_re400,sr,114,45.6,velocity,upper_uy,0.29663780331611633 +karman_re400,sr,114,45.6,velocity,center_ux,1.0430065393447876 +karman_re400,sr,114,45.6,velocity,center_uy,0.5381979942321777 +karman_re400,sr,114,45.6,velocity,lower_ux,1.1323323249816895 +karman_re400,sr,114,45.6,velocity,lower_uy,0.26292553544044495 +karman_re400,sr,115,46.0,velocity,upper_ux,0.921427845954895 +karman_re400,sr,115,46.0,velocity,upper_uy,0.208977609872818 +karman_re400,sr,115,46.0,velocity,center_ux,1.0810643434524536 +karman_re400,sr,115,46.0,velocity,center_uy,0.5852832794189453 +karman_re400,sr,115,46.0,velocity,lower_ux,1.1869407892227173 +karman_re400,sr,115,46.0,velocity,lower_uy,0.2104947865009308 +karman_re400,sr,116,46.4,velocity,upper_ux,0.8884873390197754 +karman_re400,sr,116,46.4,velocity,upper_uy,0.0863564983010292 +karman_re400,sr,116,46.4,velocity,center_ux,1.0776540040969849 +karman_re400,sr,116,46.4,velocity,center_uy,0.27334439754486084 +karman_re400,sr,116,46.4,velocity,lower_ux,1.2209327220916748 +karman_re400,sr,116,46.4,velocity,lower_uy,0.1445080041885376 +karman_re400,sr,117,46.8,velocity,upper_ux,0.8742130398750305 +karman_re400,sr,117,46.8,velocity,upper_uy,-0.07834884524345398 +karman_re400,sr,117,46.8,velocity,center_ux,1.008488655090332 +karman_re400,sr,117,46.8,velocity,center_uy,-0.21200716495513916 +karman_re400,sr,117,46.8,velocity,lower_ux,1.2580444812774658 +karman_re400,sr,117,46.8,velocity,lower_uy,0.17436383664608002 +karman_re400,sr,118,47.2,velocity,upper_ux,0.9041846990585327 +karman_re400,sr,118,47.2,velocity,upper_uy,-0.20713786780834198 +karman_re400,sr,118,47.2,velocity,center_ux,0.9639060497283936 +karman_re400,sr,118,47.2,velocity,center_uy,-0.42545247077941895 +karman_re400,sr,118,47.2,velocity,lower_ux,1.183388590812683 +karman_re400,sr,118,47.2,velocity,lower_uy,0.11162486672401428 +karman_re400,sr,119,47.6,velocity,upper_ux,0.9753445386886597 +karman_re400,sr,119,47.6,velocity,upper_uy,-0.26955246925354004 +karman_re400,sr,119,47.6,velocity,center_ux,0.9646830558776855 +karman_re400,sr,119,47.6,velocity,center_uy,-0.5156916975975037 +karman_re400,sr,119,47.6,velocity,lower_ux,1.0471247434616089 +karman_re400,sr,119,47.6,velocity,lower_uy,-0.3053205609321594 +karman_re400,sr,120,48.0,velocity,upper_ux,1.046626091003418 +karman_re400,sr,120,48.0,velocity,upper_uy,-0.2905050814151764 +karman_re400,sr,120,48.0,velocity,center_ux,0.984413206577301 +karman_re400,sr,120,48.0,velocity,center_uy,-0.5347477197647095 +karman_re400,sr,120,48.0,velocity,lower_ux,1.0239068269729614 +karman_re400,sr,120,48.0,velocity,lower_uy,-0.38977518677711487 +karman_re400,sr,121,48.4,velocity,upper_ux,1.110064148902893 +karman_re400,sr,121,48.4,velocity,upper_uy,-0.26525428891181946 +karman_re400,sr,121,48.4,velocity,center_ux,1.0131580829620361 +karman_re400,sr,121,48.4,velocity,center_uy,-0.5559524297714233 +karman_re400,sr,121,48.4,velocity,lower_ux,0.9771897196769714 +karman_re400,sr,121,48.4,velocity,lower_uy,-0.341746062040329 +karman_re400,sr,122,48.8,velocity,upper_ux,1.1673173904418945 +karman_re400,sr,122,48.8,velocity,upper_uy,-0.21833570301532745 +karman_re400,sr,122,48.8,velocity,center_ux,1.0709741115570068 +karman_re400,sr,122,48.8,velocity,center_uy,-0.6049042344093323 +karman_re400,sr,122,48.8,velocity,lower_ux,0.9267929792404175 +karman_re400,sr,122,48.8,velocity,lower_uy,-0.26021549105644226 +karman_re400,sr,123,49.2,velocity,upper_ux,1.2008047103881836 +karman_re400,sr,123,49.2,velocity,upper_uy,-0.148041769862175 +karman_re400,sr,123,49.2,velocity,center_ux,1.0920847654342651 +karman_re400,sr,123,49.2,velocity,center_uy,-0.39753803610801697 +karman_re400,sr,123,49.2,velocity,lower_ux,0.8883931040763855 +karman_re400,sr,123,49.2,velocity,lower_uy,-0.14860597252845764 +karman_re400,sr,124,49.6,velocity,upper_ux,1.2023210525512695 +karman_re400,sr,124,49.6,velocity,upper_uy,-0.13170738518238068 +karman_re400,sr,124,49.6,velocity,center_ux,1.0393904447555542 +karman_re400,sr,124,49.6,velocity,center_uy,0.11388429999351501 +karman_re400,sr,124,49.6,velocity,lower_ux,0.8743714690208435 +karman_re400,sr,124,49.6,velocity,lower_uy,0.006644767709076405 +karman_re400,sr,125,50.0,velocity,upper_ux,1.1649223566055298 +karman_re400,sr,125,50.0,velocity,upper_uy,-0.19418805837631226 +karman_re400,sr,125,50.0,velocity,center_ux,0.9848061203956604 +karman_re400,sr,125,50.0,velocity,center_uy,0.381547749042511 +karman_re400,sr,125,50.0,velocity,lower_ux,0.8857182860374451 +karman_re400,sr,125,50.0,velocity,lower_uy,0.17608590424060822 +karman_re400,sr,126,50.4,velocity,upper_ux,0.9971015453338623 +karman_re400,sr,126,50.4,velocity,upper_uy,0.17838163673877716 +karman_re400,sr,126,50.4,velocity,center_ux,0.9750091433525085 +karman_re400,sr,126,50.4,velocity,center_uy,0.5001242160797119 +karman_re400,sr,126,50.4,velocity,lower_ux,0.9510619640350342 +karman_re400,sr,126,50.4,velocity,lower_uy,0.25729355216026306 +karman_re400,sr,127,50.8,velocity,upper_ux,0.9985572695732117 +karman_re400,sr,127,50.8,velocity,upper_uy,0.4176587164402008 +karman_re400,sr,127,50.8,velocity,center_ux,0.9886656403541565 +karman_re400,sr,127,50.8,velocity,center_uy,0.5344815254211426 +karman_re400,sr,127,50.8,velocity,lower_ux,1.0266773700714111 +karman_re400,sr,127,50.8,velocity,lower_uy,0.291923463344574 +karman_re400,sr,128,51.2,velocity,upper_ux,0.9861952066421509 +karman_re400,sr,128,51.2,velocity,upper_uy,0.38216128945350647 +karman_re400,sr,128,51.2,velocity,center_ux,1.011390209197998 +karman_re400,sr,128,51.2,velocity,center_uy,0.5450822710990906 +karman_re400,sr,128,51.2,velocity,lower_ux,1.094968557357788 +karman_re400,sr,128,51.2,velocity,lower_uy,0.2739749252796173 +karman_re400,sr,129,51.6,velocity,upper_ux,0.9483286142349243 +karman_re400,sr,129,51.6,velocity,upper_uy,0.3006197214126587 +karman_re400,sr,129,51.6,velocity,center_ux,1.0529195070266724 +karman_re400,sr,129,51.6,velocity,center_uy,0.5743621587753296 +karman_re400,sr,129,51.6,velocity,lower_ux,1.159092903137207 +karman_re400,sr,129,51.6,velocity,lower_uy,0.2319619059562683 +karman_re400,sr,130,52.0,velocity,upper_ux,0.9119991064071655 +karman_re400,sr,130,52.0,velocity,upper_uy,0.186789870262146 +karman_re400,sr,130,52.0,velocity,center_ux,1.068974256515503 +karman_re400,sr,130,52.0,velocity,center_uy,0.49614742398262024 +karman_re400,sr,130,52.0,velocity,lower_ux,1.2120097875595093 +karman_re400,sr,130,52.0,velocity,lower_uy,0.16143806278705597 +karman_re400,sr,131,52.4,velocity,upper_ux,0.8900461792945862 +karman_re400,sr,131,52.4,velocity,upper_uy,0.017521748319268227 +karman_re400,sr,131,52.4,velocity,center_ux,1.0449672937393188 +karman_re400,sr,131,52.4,velocity,center_uy,-0.03847239166498184 +karman_re400,sr,131,52.4,velocity,lower_ux,1.2349236011505127 +karman_re400,sr,131,52.4,velocity,lower_uy,0.08674153685569763 +karman_re400,sr,132,52.8,velocity,upper_ux,0.8852577805519104 +karman_re400,sr,132,52.8,velocity,upper_uy,-0.1759054958820343 +karman_re400,sr,132,52.8,velocity,center_ux,0.997549831867218 +karman_re400,sr,132,52.8,velocity,center_uy,-0.3648337423801422 +karman_re400,sr,132,52.8,velocity,lower_ux,1.2239211797714233 +karman_re400,sr,132,52.8,velocity,lower_uy,0.10710743814706802 +karman_re400,sr,133,53.2,velocity,upper_ux,0.9440428018569946 +karman_re400,sr,133,53.2,velocity,upper_uy,-0.26219359040260315 +karman_re400,sr,133,53.2,velocity,center_ux,0.9862544536590576 +karman_re400,sr,133,53.2,velocity,center_uy,-0.49720966815948486 +karman_re400,sr,133,53.2,velocity,lower_ux,1.0636837482452393 +karman_re400,sr,133,53.2,velocity,lower_uy,-0.005225948058068752 +karman_re400,sr,134,53.6,velocity,upper_ux,1.0181382894515991 +karman_re400,sr,134,53.6,velocity,upper_uy,-0.30304035544395447 +karman_re400,sr,134,53.6,velocity,center_ux,0.9942654967308044 +karman_re400,sr,134,53.6,velocity,center_uy,-0.5286799669265747 +karman_re400,sr,134,53.6,velocity,lower_ux,0.9453689455986023 +karman_re400,sr,134,53.6,velocity,lower_uy,-0.32614830136299133 +karman_re400,sr,135,54.0,velocity,upper_ux,1.0855636596679688 +karman_re400,sr,135,54.0,velocity,upper_uy,-0.2964337170124054 +karman_re400,sr,135,54.0,velocity,center_ux,1.0105047225952148 +karman_re400,sr,135,54.0,velocity,center_uy,-0.5329872965812683 +karman_re400,sr,135,54.0,velocity,lower_ux,0.9612393975257874 +karman_re400,sr,135,54.0,velocity,lower_uy,-0.36685794591903687 +karman_re400,sr,136,54.4,velocity,upper_ux,1.148306131362915 +karman_re400,sr,136,54.4,velocity,upper_uy,-0.26166781783103943 +karman_re400,sr,136,54.4,velocity,center_ux,1.05191969871521 +karman_re400,sr,136,54.4,velocity,center_uy,-0.5426933765411377 +karman_re400,sr,136,54.4,velocity,lower_ux,0.9381939172744751 +karman_re400,sr,136,54.4,velocity,lower_uy,-0.3005862534046173 +karman_re400,sr,137,54.8,velocity,upper_ux,1.2006161212921143 +karman_re400,sr,137,54.8,velocity,upper_uy,-0.2083091288805008 +karman_re400,sr,137,54.8,velocity,center_ux,1.0855400562286377 +karman_re400,sr,137,54.8,velocity,center_uy,-0.6070762276649475 +karman_re400,sr,137,54.8,velocity,lower_ux,0.9018491506576538 +karman_re400,sr,137,54.8,velocity,lower_uy,-0.20305724442005157 +karman_re400,sr,138,55.2,velocity,upper_ux,1.2279001474380493 +karman_re400,sr,138,55.2,velocity,upper_uy,-0.15997719764709473 +karman_re400,sr,138,55.2,velocity,center_ux,1.0682355165481567 +karman_re400,sr,138,55.2,velocity,center_uy,-0.17602655291557312 +karman_re400,sr,138,55.2,velocity,lower_ux,0.879720151424408 +karman_re400,sr,138,55.2,velocity,lower_uy,-0.06932749599218369 +karman_re400,sr,139,55.6,velocity,upper_ux,1.223209023475647 +karman_re400,sr,139,55.6,velocity,upper_uy,-0.18329428136348724 +karman_re400,sr,139,55.6,velocity,center_ux,0.9952853322029114 +karman_re400,sr,139,55.6,velocity,center_uy,0.3050265312194824 +karman_re400,sr,139,55.6,velocity,lower_ux,0.8729234933853149 +karman_re400,sr,139,55.6,velocity,lower_uy,0.1011832132935524 +karman_re400,sr,140,56.0,velocity,upper_ux,1.0849010944366455 +karman_re400,sr,140,56.0,velocity,upper_uy,0.06577268242835999 +karman_re400,sr,140,56.0,velocity,center_ux,0.9675102829933167 +karman_re400,sr,140,56.0,velocity,center_uy,0.4702906310558319 +karman_re400,sr,140,56.0,velocity,lower_ux,0.9131511449813843 +karman_re400,sr,140,56.0,velocity,lower_uy,0.21848398447036743 +karman_re400,sr,141,56.4,velocity,upper_ux,1.0502246618270874 +karman_re400,sr,141,56.4,velocity,upper_uy,0.37353307008743286 +karman_re400,sr,141,56.4,velocity,center_ux,0.9797022342681885 +karman_re400,sr,141,56.4,velocity,center_uy,0.5317666530609131 +karman_re400,sr,141,56.4,velocity,lower_ux,0.9865522980690002 +karman_re400,sr,141,56.4,velocity,lower_uy,0.27417099475860596 +karman_re400,sr,142,56.8,velocity,upper_ux,1.028361439704895 +karman_re400,sr,142,56.8,velocity,upper_uy,0.39515089988708496 +karman_re400,sr,142,56.8,velocity,center_ux,1.0061511993408203 +karman_re400,sr,142,56.8,velocity,center_uy,0.538203775882721 +karman_re400,sr,142,56.8,velocity,lower_ux,1.0570002794265747 +karman_re400,sr,142,56.8,velocity,lower_uy,0.28290030360221863 +karman_re400,sr,143,57.2,velocity,upper_ux,0.9823316931724548 +karman_re400,sr,143,57.2,velocity,upper_uy,0.33043140172958374 +karman_re400,sr,143,57.2,velocity,center_ux,1.046532392501831 +karman_re400,sr,143,57.2,velocity,center_uy,0.5461941361427307 +karman_re400,sr,143,57.2,velocity,lower_ux,1.1188451051712036 +karman_re400,sr,143,57.2,velocity,lower_uy,0.2514980435371399 +karman_re400,sr,144,57.6,velocity,upper_ux,0.931450605392456 +karman_re400,sr,144,57.6,velocity,upper_uy,0.23570412397384644 +karman_re400,sr,144,57.6,velocity,center_ux,1.1066826581954956 +karman_re400,sr,144,57.6,velocity,center_uy,0.5884074568748474 +karman_re400,sr,144,57.6,velocity,lower_ux,1.1714577674865723 +karman_re400,sr,144,57.6,velocity,lower_uy,0.20149852335453033 +karman_re400,sr,145,58.0,velocity,upper_ux,0.8945896625518799 +karman_re400,sr,145,58.0,velocity,upper_uy,0.10340878367424011 +karman_re400,sr,145,58.0,velocity,center_ux,1.1260968446731567 +karman_re400,sr,145,58.0,velocity,center_uy,0.284247487783432 +karman_re400,sr,145,58.0,velocity,lower_ux,1.202653169631958 +karman_re400,sr,145,58.0,velocity,lower_uy,0.14505210518836975 +karman_re400,sr,146,58.4,velocity,upper_ux,0.877173662185669 +karman_re400,sr,146,58.4,velocity,upper_uy,-0.07548927515745163 +karman_re400,sr,146,58.4,velocity,center_ux,1.0479367971420288 +karman_re400,sr,146,58.4,velocity,center_uy,-0.1897793710231781 +karman_re400,sr,146,58.4,velocity,lower_ux,1.2420642375946045 +karman_re400,sr,146,58.4,velocity,lower_uy,0.20079410076141357 +karman_re400,sr,147,58.8,velocity,upper_ux,0.9069746136665344 +karman_re400,sr,147,58.8,velocity,upper_uy,-0.21220126748085022 +karman_re400,sr,147,58.8,velocity,center_ux,0.9898333549499512 +karman_re400,sr,147,58.8,velocity,center_uy,-0.41326987743377686 +karman_re400,sr,147,58.8,velocity,lower_ux,1.162672758102417 +karman_re400,sr,147,58.8,velocity,lower_uy,0.08814157545566559 +karman_re400,sr,148,59.2,velocity,upper_ux,0.9797499775886536 +karman_re400,sr,148,59.2,velocity,upper_uy,-0.27311933040618896 +karman_re400,sr,148,59.2,velocity,center_ux,0.983235776424408 +karman_re400,sr,148,59.2,velocity,center_uy,-0.5089238882064819 +karman_re400,sr,148,59.2,velocity,lower_ux,1.0649921894073486 +karman_re400,sr,148,59.2,velocity,lower_uy,-0.3427708148956299 +karman_re400,sr,149,59.6,velocity,upper_ux,1.05202054977417 +karman_re400,sr,149,59.6,velocity,upper_uy,-0.29087385535240173 +karman_re400,sr,149,59.6,velocity,center_ux,0.9988860487937927 +karman_re400,sr,149,59.6,velocity,center_uy,-0.5225641131401062 +karman_re400,sr,149,59.6,velocity,lower_ux,1.0377353429794312 +karman_re400,sr,149,59.6,velocity,lower_uy,-0.385155588388443 +karman_re400,sr,150,60.0,velocity,upper_ux,1.1152704954147339 +karman_re400,sr,150,60.0,velocity,upper_uy,-0.26208049058914185 +karman_re400,sr,150,60.0,velocity,center_ux,1.0197478532791138 +karman_re400,sr,150,60.0,velocity,center_uy,-0.5416409969329834 +karman_re400,sr,150,60.0,velocity,lower_ux,0.9893079996109009 +karman_re400,sr,150,60.0,velocity,lower_uy,-0.3299409747123718 +karman_re400,sr,151,60.4,velocity,upper_ux,1.172024130821228 +karman_re400,sr,151,60.4,velocity,upper_uy,-0.21239525079727173 +karman_re400,sr,151,60.4,velocity,center_ux,1.0574603080749512 +karman_re400,sr,151,60.4,velocity,center_uy,-0.567384660243988 +karman_re400,sr,151,60.4,velocity,lower_ux,0.9402887225151062 +karman_re400,sr,151,60.4,velocity,lower_uy,-0.24719348549842834 +karman_re400,sr,152,60.8,velocity,upper_ux,1.2083030939102173 +karman_re400,sr,152,60.8,velocity,upper_uy,-0.13654451072216034 +karman_re400,sr,152,60.8,velocity,center_ux,1.0573227405548096 +karman_re400,sr,152,60.8,velocity,center_uy,-0.3304697871208191 +karman_re400,sr,152,60.8,velocity,lower_ux,0.9043211936950684 +karman_re400,sr,152,60.8,velocity,lower_uy,-0.1306576281785965 +karman_re400,sr,153,61.2,velocity,upper_ux,1.2095454931259155 +karman_re400,sr,153,61.2,velocity,upper_uy,-0.0972030758857727 +karman_re400,sr,153,61.2,velocity,center_ux,1.0174976587295532 +karman_re400,sr,153,61.2,velocity,center_uy,0.1355310082435608 +karman_re400,sr,153,61.2,velocity,lower_ux,0.8829905986785889 +karman_re400,sr,153,61.2,velocity,lower_uy,0.042414966970682144 +karman_re400,sr,154,61.6,velocity,upper_ux,1.1893213987350464 +karman_re400,sr,154,61.6,velocity,upper_uy,-0.1748531311750412 +karman_re400,sr,154,61.6,velocity,center_ux,0.9787278175354004 +karman_re400,sr,154,61.6,velocity,center_uy,0.3806680738925934 +karman_re400,sr,154,61.6,velocity,lower_ux,0.8964187502861023 +karman_re400,sr,154,61.6,velocity,lower_uy,0.20140275359153748 +karman_re400,sr,155,62.0,velocity,upper_ux,0.9978468418121338 +karman_re400,sr,155,62.0,velocity,upper_uy,0.06837212294340134 +karman_re400,sr,155,62.0,velocity,center_ux,0.9707802534103394 +karman_re400,sr,155,62.0,velocity,center_uy,0.49829840660095215 +karman_re400,sr,155,62.0,velocity,lower_ux,0.9645707011222839 +karman_re400,sr,155,62.0,velocity,lower_uy,0.2691028118133545 +karman_re400,sr,156,62.4,velocity,upper_ux,0.9488963484764099 +karman_re400,sr,156,62.4,velocity,upper_uy,0.39439764618873596 +karman_re400,sr,156,62.4,velocity,center_ux,0.9816261529922485 +karman_re400,sr,156,62.4,velocity,center_uy,0.5242419838905334 +karman_re400,sr,156,62.4,velocity,lower_ux,1.036970853805542 +karman_re400,sr,156,62.4,velocity,lower_uy,0.2998368740081787 +karman_re400,sr,157,62.8,velocity,upper_ux,0.9571216106414795 +karman_re400,sr,157,62.8,velocity,upper_uy,0.3770546615123749 +karman_re400,sr,157,62.8,velocity,center_ux,1.0009914636611938 +karman_re400,sr,157,62.8,velocity,center_uy,0.540956974029541 +karman_re400,sr,157,62.8,velocity,lower_ux,1.1019420623779297 +karman_re400,sr,157,62.8,velocity,lower_uy,0.2818218469619751 +karman_re400,sr,158,63.2,velocity,upper_ux,0.9273055195808411 +karman_re400,sr,158,63.2,velocity,upper_uy,0.29620227217674255 +karman_re400,sr,158,63.2,velocity,center_ux,1.0504049062728882 +karman_re400,sr,158,63.2,velocity,center_uy,0.5792955160140991 +karman_re400,sr,158,63.2,velocity,lower_ux,1.1640371084213257 +karman_re400,sr,158,63.2,velocity,lower_uy,0.24169287085533142 +karman_re400,sr,159,63.6,velocity,upper_ux,0.8938225507736206 +karman_re400,sr,159,63.6,velocity,upper_uy,0.18796245753765106 +karman_re400,sr,159,63.6,velocity,center_ux,1.068718671798706 +karman_re400,sr,159,63.6,velocity,center_uy,0.5346276760101318 +karman_re400,sr,159,63.6,velocity,lower_ux,1.2120083570480347 +karman_re400,sr,159,63.6,velocity,lower_uy,0.17423683404922485 +karman_re400,sr,160,64.0,velocity,upper_ux,0.8780242800712585 +karman_re400,sr,160,64.0,velocity,upper_uy,0.04114513844251633 +karman_re400,sr,160,64.0,velocity,center_ux,1.0363768339157104 +karman_re400,sr,160,64.0,velocity,center_uy,-0.0038447221741080284 +karman_re400,sr,160,64.0,velocity,lower_ux,1.2262299060821533 +karman_re400,sr,160,64.0,velocity,lower_uy,0.11916409432888031 +karman_re400,sr,161,64.4,velocity,upper_ux,0.8765305876731873 +karman_re400,sr,161,64.4,velocity,upper_uy,-0.1409621238708496 +karman_re400,sr,161,64.4,velocity,center_ux,0.9797609448432922 +karman_re400,sr,161,64.4,velocity,center_uy,-0.3625899851322174 +karman_re400,sr,161,64.4,velocity,lower_ux,1.2064259052276611 +karman_re400,sr,161,64.4,velocity,lower_uy,0.15396060049533844 +karman_re400,sr,162,64.8,velocity,upper_ux,0.9295899868011475 +karman_re400,sr,162,64.8,velocity,upper_uy,-0.24290451407432556 +karman_re400,sr,162,64.8,velocity,center_ux,0.9699028730392456 +karman_re400,sr,162,64.8,velocity,center_uy,-0.4924759566783905 +karman_re400,sr,162,64.8,velocity,lower_ux,1.0388652086257935 +karman_re400,sr,162,64.8,velocity,lower_uy,-0.06289991736412048 +karman_re400,sr,163,65.2,velocity,upper_ux,1.0050538778305054 +karman_re400,sr,163,65.2,velocity,upper_uy,-0.2890074551105499 +karman_re400,sr,163,65.2,velocity,center_ux,0.9842382669448853 +karman_re400,sr,163,65.2,velocity,center_uy,-0.5406143069267273 +karman_re400,sr,163,65.2,velocity,lower_ux,0.9891242980957031 +karman_re400,sr,163,65.2,velocity,lower_uy,-0.38186168670654297 +karman_re400,sr,164,65.6,velocity,upper_ux,1.0745118856430054 +karman_re400,sr,164,65.6,velocity,upper_uy,-0.2846793532371521 +karman_re400,sr,164,65.6,velocity,center_ux,1.0094823837280273 +karman_re400,sr,164,65.6,velocity,center_uy,-0.5449581742286682 +karman_re400,sr,164,65.6,velocity,lower_ux,0.9904831051826477 +karman_re400,sr,164,65.6,velocity,lower_uy,-0.3951912224292755 +karman_re400,sr,165,66.0,velocity,upper_ux,1.1375727653503418 +karman_re400,sr,165,66.0,velocity,upper_uy,-0.2500220239162445 +karman_re400,sr,165,66.0,velocity,center_ux,1.0554183721542358 +karman_re400,sr,165,66.0,velocity,center_uy,-0.5530250072479248 +karman_re400,sr,165,66.0,velocity,lower_ux,0.9580026268959045 +karman_re400,sr,165,66.0,velocity,lower_uy,-0.32300156354904175 +karman_re400,sr,166,66.4,velocity,upper_ux,1.1909165382385254 +karman_re400,sr,166,66.4,velocity,upper_uy,-0.19669108092784882 +karman_re400,sr,166,66.4,velocity,center_ux,1.1017087697982788 +karman_re400,sr,166,66.4,velocity,center_uy,-0.5920531749725342 +karman_re400,sr,166,66.4,velocity,lower_ux,0.918379008769989 +karman_re400,sr,166,66.4,velocity,lower_uy,-0.2184755951166153 +karman_re400,sr,167,66.8,velocity,upper_ux,1.2205462455749512 +karman_re400,sr,167,66.8,velocity,upper_uy,-0.14829669892787933 +karman_re400,sr,167,66.8,velocity,center_ux,1.0939980745315552 +karman_re400,sr,167,66.8,velocity,center_uy,-0.14622992277145386 +karman_re400,sr,167,66.8,velocity,lower_ux,0.8922283053398132 +karman_re400,sr,167,66.8,velocity,lower_uy,-0.06834053248167038 +karman_re400,sr,168,67.2,velocity,upper_ux,1.2198891639709473 +karman_re400,sr,168,67.2,velocity,upper_uy,-0.17495130002498627 +karman_re400,sr,168,67.2,velocity,center_ux,1.0175434350967407 +karman_re400,sr,168,67.2,velocity,center_uy,0.2994120419025421 +karman_re400,sr,168,67.2,velocity,lower_ux,0.8798443675041199 +karman_re400,sr,168,67.2,velocity,lower_uy,0.12146445363759995 +karman_re400,sr,169,67.6,velocity,upper_ux,1.0793052911758423 +karman_re400,sr,169,67.6,velocity,upper_uy,0.07909134030342102 +karman_re400,sr,169,67.6,velocity,center_ux,0.9867634773254395 +karman_re400,sr,169,67.6,velocity,center_uy,0.4682801365852356 +karman_re400,sr,169,67.6,velocity,lower_ux,0.9242997169494629 +karman_re400,sr,169,67.6,velocity,lower_uy,0.23420995473861694 +karman_re400,sr,170,68.0,velocity,upper_ux,1.0457457304000854 +karman_re400,sr,170,68.0,velocity,upper_uy,0.3691760301589966 +karman_re400,sr,170,68.0,velocity,center_ux,0.9947093725204468 +karman_re400,sr,170,68.0,velocity,center_uy,0.5261740684509277 +karman_re400,sr,170,68.0,velocity,lower_ux,0.998718798160553 +karman_re400,sr,170,68.0,velocity,lower_uy,0.2848149538040161 +karman_re400,sr,171,68.4,velocity,upper_ux,1.0237284898757935 +karman_re400,sr,171,68.4,velocity,upper_uy,0.3732081949710846 +karman_re400,sr,171,68.4,velocity,center_ux,1.015224814414978 +karman_re400,sr,171,68.4,velocity,center_uy,0.5282834768295288 +karman_re400,sr,171,68.4,velocity,lower_ux,1.0680228471755981 +karman_re400,sr,171,68.4,velocity,lower_uy,0.2889823019504547 +karman_re400,sr,172,68.8,velocity,upper_ux,0.9771333932876587 +karman_re400,sr,172,68.8,velocity,upper_uy,0.3076189458370209 +karman_re400,sr,172,68.8,velocity,center_ux,1.0487158298492432 +karman_re400,sr,172,68.8,velocity,center_uy,0.5360061526298523 +karman_re400,sr,172,68.8,velocity,lower_ux,1.129404067993164 +karman_re400,sr,172,68.8,velocity,lower_uy,0.2552114725112915 +karman_re400,sr,173,69.2,velocity,upper_ux,0.9272123575210571 +karman_re400,sr,173,69.2,velocity,upper_uy,0.21450714766979218 +karman_re400,sr,173,69.2,velocity,center_ux,1.0923701524734497 +karman_re400,sr,173,69.2,velocity,center_uy,0.57576984167099 +karman_re400,sr,173,69.2,velocity,lower_ux,1.1829606294631958 +karman_re400,sr,173,69.2,velocity,lower_uy,0.2027900069952011 +karman_re400,sr,174,69.6,velocity,upper_ux,0.8925827145576477 +karman_re400,sr,174,69.6,velocity,upper_uy,0.08413748443126678 +karman_re400,sr,174,69.6,velocity,center_ux,1.0977822542190552 +karman_re400,sr,174,69.6,velocity,center_uy,0.2557579576969147 +karman_re400,sr,174,69.6,velocity,lower_ux,1.2166469097137451 +karman_re400,sr,174,69.6,velocity,lower_uy,0.13935798406600952 +karman_re400,sr,175,70.0,velocity,upper_ux,0.8758754134178162 +karman_re400,sr,175,70.0,velocity,upper_uy,-0.09071486443281174 +karman_re400,sr,175,70.0,velocity,center_ux,1.025739312171936 +karman_re400,sr,175,70.0,velocity,center_uy,-0.21330010890960693 +karman_re400,sr,175,70.0,velocity,lower_ux,1.2561355829238892 +karman_re400,sr,175,70.0,velocity,lower_uy,0.1744011491537094 +karman_re400,sr,176,70.4,velocity,upper_ux,0.9087755680084229 +karman_re400,sr,176,70.4,velocity,upper_uy,-0.21611188352108002 +karman_re400,sr,176,70.4,velocity,center_ux,0.9766772389411926 +karman_re400,sr,176,70.4,velocity,center_uy,-0.4243171811103821 +karman_re400,sr,176,70.4,velocity,lower_ux,1.1811165809631348 +karman_re400,sr,176,70.4,velocity,lower_uy,0.11014308780431747 +karman_re400,sr,177,70.8,velocity,upper_ux,0.9809302687644958 +karman_re400,sr,177,70.8,velocity,upper_uy,-0.275572806596756 +karman_re400,sr,177,70.8,velocity,center_ux,0.9740238785743713 +karman_re400,sr,177,70.8,velocity,center_uy,-0.5128693580627441 +karman_re400,sr,177,70.8,velocity,lower_ux,1.0451653003692627 +karman_re400,sr,177,70.8,velocity,lower_uy,-0.31326210498809814 +karman_re400,sr,178,71.2,velocity,upper_ux,1.051561713218689 +karman_re400,sr,178,71.2,velocity,upper_uy,-0.29390639066696167 +karman_re400,sr,178,71.2,velocity,center_ux,0.9913393259048462 +karman_re400,sr,178,71.2,velocity,center_uy,-0.5274332165718079 +karman_re400,sr,178,71.2,velocity,lower_ux,1.021857738494873 +karman_re400,sr,178,71.2,velocity,lower_uy,-0.3831016421318054 +karman_re400,sr,179,71.6,velocity,upper_ux,1.1133909225463867 +karman_re400,sr,179,71.6,velocity,upper_uy,-0.26697802543640137 +karman_re400,sr,179,71.6,velocity,center_ux,1.0177676677703857 +karman_re400,sr,179,71.6,velocity,center_uy,-0.5477941036224365 +karman_re400,sr,179,71.6,velocity,lower_ux,0.9754012823104858 +karman_re400,sr,179,71.6,velocity,lower_uy,-0.332297146320343 +karman_re400,sr,180,72.0,velocity,upper_ux,1.1684819459915161 +karman_re400,sr,180,72.0,velocity,upper_uy,-0.2203955054283142 +karman_re400,sr,180,72.0,velocity,center_ux,1.0758615732192993 +karman_re400,sr,180,72.0,velocity,center_uy,-0.58970046043396 +karman_re400,sr,180,72.0,velocity,lower_ux,0.9259796142578125 +karman_re400,sr,180,72.0,velocity,lower_uy,-0.25177115201950073 +karman_re400,sr,181,72.4,velocity,upper_ux,1.1991955041885376 +karman_re400,sr,181,72.4,velocity,upper_uy,-0.15354709327220917 +karman_re400,sr,181,72.4,velocity,center_ux,1.0952235460281372 +karman_re400,sr,181,72.4,velocity,center_uy,-0.3879091739654541 +karman_re400,sr,181,72.4,velocity,lower_ux,0.8887454867362976 +karman_re400,sr,181,72.4,velocity,lower_uy,-0.1407490074634552 +karman_re400,sr,182,72.8,velocity,upper_ux,1.1996454000473022 +karman_re400,sr,182,72.8,velocity,upper_uy,-0.1455310732126236 +karman_re400,sr,182,72.8,velocity,center_ux,1.0372449159622192 +karman_re400,sr,182,72.8,velocity,center_uy,0.10574735701084137 +karman_re400,sr,182,72.8,velocity,lower_ux,0.8739819526672363 +karman_re400,sr,182,72.8,velocity,lower_uy,0.012500382959842682 +karman_re400,sr,183,73.2,velocity,upper_ux,1.1610054969787598 +karman_re400,sr,183,73.2,velocity,upper_uy,-0.21188506484031677 +karman_re400,sr,183,73.2,velocity,center_ux,0.9785290360450745 +karman_re400,sr,183,73.2,velocity,center_uy,0.3735531270503998 +karman_re400,sr,183,73.2,velocity,lower_ux,0.8857731819152832 +karman_re400,sr,183,73.2,velocity,lower_uy,0.17671175301074982 +karman_re400,sr,184,73.6,velocity,upper_ux,1.006797432899475 +karman_re400,sr,184,73.6,velocity,upper_uy,0.19266223907470703 +karman_re400,sr,184,73.6,velocity,center_ux,0.9673469066619873 +karman_re400,sr,184,73.6,velocity,center_uy,0.4939800500869751 +karman_re400,sr,184,73.6,velocity,lower_ux,0.9516893029212952 +karman_re400,sr,184,73.6,velocity,lower_uy,0.2559276819229126 +karman_re400,sr,185,74.0,velocity,upper_ux,1.0103154182434082 +karman_re400,sr,185,74.0,velocity,upper_uy,0.42539048194885254 +karman_re400,sr,185,74.0,velocity,center_ux,0.981641948223114 +karman_re400,sr,185,74.0,velocity,center_uy,0.5323054194450378 +karman_re400,sr,185,74.0,velocity,lower_ux,1.0266425609588623 +karman_re400,sr,185,74.0,velocity,lower_uy,0.29029762744903564 +karman_re400,sr,186,74.4,velocity,upper_ux,0.9919973611831665 +karman_re400,sr,186,74.4,velocity,upper_uy,0.3868369162082672 +karman_re400,sr,186,74.4,velocity,center_ux,1.0057713985443115 +karman_re400,sr,186,74.4,velocity,center_uy,0.5464188456535339 +karman_re400,sr,186,74.4,velocity,lower_ux,1.09368097782135 +karman_re400,sr,186,74.4,velocity,lower_uy,0.27251553535461426 +karman_re400,sr,187,74.8,velocity,upper_ux,0.9522864818572998 +karman_re400,sr,187,74.8,velocity,upper_uy,0.30339065194129944 +karman_re400,sr,187,74.8,velocity,center_ux,1.054314136505127 +karman_re400,sr,187,74.8,velocity,center_uy,0.5782855749130249 +karman_re400,sr,187,74.8,velocity,lower_ux,1.155067801475525 +karman_re400,sr,187,74.8,velocity,lower_uy,0.23130786418914795 +karman_re400,sr,188,75.2,velocity,upper_ux,0.9155991077423096 +karman_re400,sr,188,75.2,velocity,upper_uy,0.1901981234550476 +karman_re400,sr,188,75.2,velocity,center_ux,1.079857349395752 +karman_re400,sr,188,75.2,velocity,center_uy,0.4839318096637726 +karman_re400,sr,188,75.2,velocity,lower_ux,1.202255129814148 +karman_re400,sr,188,75.2,velocity,lower_uy,0.16543440520763397 +karman_re400,sr,189,75.6,velocity,upper_ux,0.8932185173034668 +karman_re400,sr,189,75.6,velocity,upper_uy,0.022590473294258118 +karman_re400,sr,189,75.6,velocity,center_ux,1.0461758375167847 +karman_re400,sr,189,75.6,velocity,center_uy,-0.029331881552934647 +karman_re400,sr,189,75.6,velocity,lower_ux,1.2181065082550049 +karman_re400,sr,189,75.6,velocity,lower_uy,0.11408717185258865 +karman_re400,sr,190,76.0,velocity,upper_ux,0.8878562450408936 +karman_re400,sr,190,76.0,velocity,upper_uy,-0.16991285979747772 +karman_re400,sr,190,76.0,velocity,center_ux,0.9926450252532959 +karman_re400,sr,190,76.0,velocity,center_uy,-0.35159870982170105 +karman_re400,sr,190,76.0,velocity,lower_ux,1.2025680541992188 +karman_re400,sr,190,76.0,velocity,lower_uy,0.154207244515419 +karman_re400,sr,191,76.4,velocity,upper_ux,0.9465869069099426 +karman_re400,sr,191,76.4,velocity,upper_uy,-0.2573789358139038 +karman_re400,sr,191,76.4,velocity,center_ux,0.9820674657821655 +karman_re400,sr,191,76.4,velocity,center_uy,-0.4902392327785492 +karman_re400,sr,191,76.4,velocity,lower_ux,1.0292868614196777 +karman_re400,sr,191,76.4,velocity,lower_uy,-0.0774787962436676 +karman_re400,sr,192,76.8,velocity,upper_ux,1.0209980010986328 +karman_re400,sr,192,76.8,velocity,upper_uy,-0.2968953847885132 +karman_re400,sr,192,76.8,velocity,center_ux,0.9941060543060303 +karman_re400,sr,192,76.8,velocity,center_uy,-0.526769757270813 +karman_re400,sr,192,76.8,velocity,lower_ux,0.9882423877716064 +karman_re400,sr,192,76.8,velocity,lower_uy,-0.380182683467865 +karman_re400,sr,193,77.2,velocity,upper_ux,1.0875192880630493 +karman_re400,sr,193,77.2,velocity,upper_uy,-0.2879248559474945 +karman_re400,sr,193,77.2,velocity,center_ux,1.0133931636810303 +karman_re400,sr,193,77.2,velocity,center_uy,-0.5312740802764893 +karman_re400,sr,193,77.2,velocity,lower_ux,0.9892990589141846 +karman_re400,sr,193,77.2,velocity,lower_uy,-0.3743545114994049 +karman_re400,sr,194,77.6,velocity,upper_ux,1.1494823694229126 +karman_re400,sr,194,77.6,velocity,upper_uy,-0.2511829435825348 +karman_re400,sr,194,77.6,velocity,center_ux,1.0519639253616333 +karman_re400,sr,194,77.6,velocity,center_uy,-0.5399952530860901 +karman_re400,sr,194,77.6,velocity,lower_ux,0.9556670188903809 +karman_re400,sr,194,77.6,velocity,lower_uy,-0.2984169125556946 +karman_re400,sr,195,78.0,velocity,upper_ux,1.2025783061981201 +karman_re400,sr,195,78.0,velocity,upper_uy,-0.19427607953548431 +karman_re400,sr,195,78.0,velocity,center_ux,1.0770646333694458 +karman_re400,sr,195,78.0,velocity,center_uy,-0.5771583318710327 +karman_re400,sr,195,78.0,velocity,lower_ux,0.9164398312568665 +karman_re400,sr,195,78.0,velocity,lower_uy,-0.1939876526594162 +karman_re400,sr,196,78.4,velocity,upper_ux,1.231278896331787 +karman_re400,sr,196,78.4,velocity,upper_uy,-0.13522183895111084 +karman_re400,sr,196,78.4,velocity,center_ux,1.0593838691711426 +karman_re400,sr,196,78.4,velocity,center_uy,-0.1143794059753418 +karman_re400,sr,196,78.4,velocity,lower_ux,0.8903103470802307 +karman_re400,sr,196,78.4,velocity,lower_uy,-0.0468912236392498 +karman_re400,sr,197,78.8,velocity,upper_ux,1.229607343673706 +karman_re400,sr,197,78.8,velocity,upper_uy,-0.1558929681777954 +karman_re400,sr,197,78.8,velocity,center_ux,0.9944947957992554 +karman_re400,sr,197,78.8,velocity,center_uy,0.3220077157020569 +karman_re400,sr,197,78.8,velocity,lower_ux,0.879081666469574 +karman_re400,sr,197,78.8,velocity,lower_uy,0.13238611817359924 +karman_re400,sr,198,79.2,velocity,upper_ux,1.0850656032562256 +karman_re400,sr,198,79.2,velocity,upper_uy,0.035558171570301056 +karman_re400,sr,198,79.2,velocity,center_ux,0.973071813583374 +karman_re400,sr,198,79.2,velocity,center_uy,0.4751615822315216 +karman_re400,sr,198,79.2,velocity,lower_ux,0.9262751936912537 +karman_re400,sr,198,79.2,velocity,lower_uy,0.23381562530994415 +karman_re400,sr,199,79.6,velocity,upper_ux,1.020105004310608 +karman_re400,sr,199,79.6,velocity,upper_uy,0.35558608174324036 +karman_re400,sr,199,79.6,velocity,center_ux,0.9840495586395264 +karman_re400,sr,199,79.6,velocity,center_uy,0.5274573564529419 +karman_re400,sr,199,79.6,velocity,lower_ux,0.9986090660095215 +karman_re400,sr,199,79.6,velocity,lower_uy,0.28523680567741394 +karman_re400,sr,200,80.0,velocity,upper_ux,1.0076758861541748 +karman_re400,sr,200,80.0,velocity,upper_uy,0.38049229979515076 +karman_re400,sr,200,80.0,velocity,center_ux,1.0066163539886475 +karman_re400,sr,200,80.0,velocity,center_uy,0.5298837423324585 +karman_re400,sr,200,80.0,velocity,lower_ux,1.0660948753356934 +karman_re400,sr,200,80.0,velocity,lower_uy,0.29081112146377563 +karman_re400,sr,201,80.4,velocity,upper_ux,0.9659032225608826 +karman_re400,sr,201,80.4,velocity,upper_uy,0.31803789734840393 +karman_re400,sr,201,80.4,velocity,center_ux,1.0432837009429932 +karman_re400,sr,201,80.4,velocity,center_uy,0.5332445502281189 +karman_re400,sr,201,80.4,velocity,lower_ux,1.1263750791549683 +karman_re400,sr,201,80.4,velocity,lower_uy,0.26029154658317566 +karman_re400,sr,202,80.8,velocity,upper_ux,0.9179530143737793 +karman_re400,sr,202,80.8,velocity,upper_uy,0.22658829391002655 +karman_re400,sr,202,80.8,velocity,center_ux,1.0967429876327515 +karman_re400,sr,202,80.8,velocity,center_uy,0.5865329504013062 +karman_re400,sr,202,80.8,velocity,lower_ux,1.178963303565979 +karman_re400,sr,202,80.8,velocity,lower_uy,0.21328748762607574 +karman_re400,sr,203,81.2,velocity,upper_ux,0.8837757110595703 +karman_re400,sr,203,81.2,velocity,upper_uy,0.10086971521377563 +karman_re400,sr,203,81.2,velocity,center_ux,1.1176047325134277 +karman_re400,sr,203,81.2,velocity,center_uy,0.323551744222641 +karman_re400,sr,203,81.2,velocity,lower_ux,1.2136554718017578 +karman_re400,sr,203,81.2,velocity,lower_uy,0.16429518163204193 +karman_re400,sr,204,81.6,velocity,upper_ux,0.8703805804252625 +karman_re400,sr,204,81.6,velocity,upper_uy,-0.06485175341367722 +karman_re400,sr,204,81.6,velocity,center_ux,1.0403920412063599 +karman_re400,sr,204,81.6,velocity,center_uy,-0.18717758357524872 +karman_re400,sr,204,81.6,velocity,lower_ux,1.2537494897842407 +karman_re400,sr,204,81.6,velocity,lower_uy,0.22402799129486084 +karman_re400,sr,205,82.0,velocity,upper_ux,0.8986587524414062 +karman_re400,sr,205,82.0,velocity,upper_uy,-0.20126089453697205 +karman_re400,sr,205,82.0,velocity,center_ux,0.977215588092804 +karman_re400,sr,205,82.0,velocity,center_uy,-0.42264053225517273 +karman_re400,sr,205,82.0,velocity,lower_ux,1.1550273895263672 +karman_re400,sr,205,82.0,velocity,lower_uy,0.05258527398109436 +karman_re400,sr,206,82.4,velocity,upper_ux,0.9706134796142578 +karman_re400,sr,206,82.4,velocity,upper_uy,-0.2658708989620209 +karman_re400,sr,206,82.4,velocity,center_ux,0.9731229543685913 +karman_re400,sr,206,82.4,velocity,center_uy,-0.5151822566986084 +karman_re400,sr,206,82.4,velocity,lower_ux,1.0806313753128052 +karman_re400,sr,206,82.4,velocity,lower_uy,-0.3497186005115509 +karman_re400,sr,207,82.8,velocity,upper_ux,1.0431225299835205 +karman_re400,sr,207,82.8,velocity,upper_uy,-0.28658175468444824 +karman_re400,sr,207,82.8,velocity,center_ux,0.9936108589172363 +karman_re400,sr,207,82.8,velocity,center_uy,-0.5345443487167358 +karman_re400,sr,207,82.8,velocity,lower_ux,1.0464766025543213 +karman_re400,sr,207,82.8,velocity,lower_uy,-0.3984709084033966 +karman_re400,sr,208,83.2,velocity,upper_ux,1.106343388557434 +karman_re400,sr,208,83.2,velocity,upper_uy,-0.2591654062271118 +karman_re400,sr,208,83.2,velocity,center_ux,1.0241848230361938 +karman_re400,sr,208,83.2,velocity,center_uy,-0.5537925958633423 +karman_re400,sr,208,83.2,velocity,lower_ux,0.9942083954811096 +karman_re400,sr,208,83.2,velocity,lower_uy,-0.3451097011566162 +karman_re400,sr,209,83.6,velocity,upper_ux,1.160841703414917 +karman_re400,sr,209,83.6,velocity,upper_uy,-0.21184903383255005 +karman_re400,sr,209,83.6,velocity,center_ux,1.085862159729004 +karman_re400,sr,209,83.6,velocity,center_uy,-0.5852213501930237 +karman_re400,sr,209,83.6,velocity,lower_ux,0.942727267742157 +karman_re400,sr,209,83.6,velocity,lower_uy,-0.26153573393821716 +karman_re400,sr,210,84.0,velocity,upper_ux,1.1902825832366943 +karman_re400,sr,210,84.0,velocity,upper_uy,-0.14680983126163483 +karman_re400,sr,210,84.0,velocity,center_ux,1.1096481084823608 +karman_re400,sr,210,84.0,velocity,center_uy,-0.3471384048461914 +karman_re400,sr,210,84.0,velocity,lower_ux,0.9038254618644714 +karman_re400,sr,210,84.0,velocity,lower_uy,-0.1438809335231781 +karman_re400,sr,211,84.4,velocity,upper_ux,1.1931548118591309 +karman_re400,sr,211,84.4,velocity,upper_uy,-0.14479859173297882 +karman_re400,sr,211,84.4,velocity,center_ux,1.0511550903320312 +karman_re400,sr,211,84.4,velocity,center_uy,0.11411908268928528 +karman_re400,sr,211,84.4,velocity,lower_ux,0.8832416534423828 +karman_re400,sr,211,84.4,velocity,lower_uy,0.027454322203993797 +karman_re400,sr,212,84.8,velocity,upper_ux,1.1540471315383911 +karman_re400,sr,212,84.8,velocity,upper_uy,-0.21611209213733673 +karman_re400,sr,212,84.8,velocity,center_ux,0.9956907629966736 +karman_re400,sr,212,84.8,velocity,center_uy,0.3657039403915405 +karman_re400,sr,212,84.8,velocity,lower_ux,0.8950372934341431 +karman_re400,sr,212,84.8,velocity,lower_uy,0.19469286501407623 +karman_re400,sr,213,85.2,velocity,upper_ux,1.0112465620040894 +karman_re400,sr,213,85.2,velocity,upper_uy,0.22020334005355835 +karman_re400,sr,213,85.2,velocity,center_ux,0.9821028113365173 +karman_re400,sr,213,85.2,velocity,center_uy,0.4877852499485016 +karman_re400,sr,213,85.2,velocity,lower_ux,0.9637511968612671 +karman_re400,sr,213,85.2,velocity,lower_uy,0.26542767882347107 +karman_re400,sr,214,85.6,velocity,upper_ux,1.0195924043655396 +karman_re400,sr,214,85.6,velocity,upper_uy,0.4168294072151184 +karman_re400,sr,214,85.6,velocity,center_ux,0.9925897121429443 +karman_re400,sr,214,85.6,velocity,center_uy,0.5141698718070984 +karman_re400,sr,214,85.6,velocity,lower_ux,1.0375539064407349 +karman_re400,sr,214,85.6,velocity,lower_uy,0.29464685916900635 +karman_re400,sr,215,86.0,velocity,upper_ux,0.9991999864578247 +karman_re400,sr,215,86.0,velocity,upper_uy,0.36449021100997925 +karman_re400,sr,215,86.0,velocity,center_ux,1.0079118013381958 +karman_re400,sr,215,86.0,velocity,center_uy,0.5266296863555908 +karman_re400,sr,215,86.0,velocity,lower_ux,1.101773977279663 +karman_re400,sr,215,86.0,velocity,lower_uy,0.27368101477622986 +karman_re400,sr,216,86.4,velocity,upper_ux,0.9609824419021606 +karman_re400,sr,216,86.4,velocity,upper_uy,0.2785400152206421 +karman_re400,sr,216,86.4,velocity,center_ux,1.0416640043258667 +karman_re400,sr,216,86.4,velocity,center_uy,0.546502411365509 +karman_re400,sr,216,86.4,velocity,lower_ux,1.1610792875289917 +karman_re400,sr,216,86.4,velocity,lower_uy,0.2313830405473709 +karman_re400,sr,217,86.8,velocity,upper_ux,0.9262256026268005 +karman_re400,sr,217,86.8,velocity,upper_uy,0.16354773938655853 +karman_re400,sr,217,86.8,velocity,center_ux,1.0363270044326782 +karman_re400,sr,217,86.8,velocity,center_uy,0.44699805974960327 +karman_re400,sr,217,86.8,velocity,lower_ux,1.2067888975143433 +karman_re400,sr,217,86.8,velocity,lower_uy,0.16431352496147156 +karman_re400,sr,218,87.2,velocity,upper_ux,0.897322416305542 +karman_re400,sr,218,87.2,velocity,upper_uy,-0.009051935747265816 +karman_re400,sr,218,87.2,velocity,center_ux,1.0023456811904907 +karman_re400,sr,218,87.2,velocity,center_uy,-0.0469328798353672 +karman_re400,sr,218,87.2,velocity,lower_ux,1.2207738161087036 +karman_re400,sr,218,87.2,velocity,lower_uy,0.10613345354795456 +karman_re400,sr,219,87.6,velocity,upper_ux,0.8947857618331909 +karman_re400,sr,219,87.6,velocity,upper_uy,-0.18049830198287964 +karman_re400,sr,219,87.6,velocity,center_ux,0.9654925465583801 +karman_re400,sr,219,87.6,velocity,center_uy,-0.35371890664100647 +karman_re400,sr,219,87.6,velocity,lower_ux,1.204688310623169 +karman_re400,sr,219,87.6,velocity,lower_uy,0.1473865956068039 +karman_re400,sr,220,88.0,velocity,upper_ux,0.9549822807312012 +karman_re400,sr,220,88.0,velocity,upper_uy,-0.25516754388809204 +karman_re400,sr,220,88.0,velocity,center_ux,0.9622714519500732 +karman_re400,sr,220,88.0,velocity,center_uy,-0.4865066111087799 +karman_re400,sr,220,88.0,velocity,lower_ux,1.0309783220291138 +karman_re400,sr,220,88.0,velocity,lower_uy,-0.02416456863284111 +karman_re400,sr,221,88.4,velocity,upper_ux,1.0250056982040405 +karman_re400,sr,221,88.4,velocity,upper_uy,-0.2950561046600342 +karman_re400,sr,221,88.4,velocity,center_ux,0.9774578809738159 +karman_re400,sr,221,88.4,velocity,center_uy,-0.5230512022972107 +karman_re400,sr,221,88.4,velocity,lower_ux,0.954426646232605 +karman_re400,sr,221,88.4,velocity,lower_uy,-0.3687719404697418 +karman_re400,sr,222,88.8,velocity,upper_ux,1.088857889175415 +karman_re400,sr,222,88.8,velocity,upper_uy,-0.28684893250465393 +karman_re400,sr,222,88.8,velocity,center_ux,1.0007879734039307 +karman_re400,sr,222,88.8,velocity,center_uy,-0.5313241481781006 +karman_re400,sr,222,88.8,velocity,lower_ux,0.9648070335388184 +karman_re400,sr,222,88.8,velocity,lower_uy,-0.38952645659446716 +karman_re400,sr,223,89.2,velocity,upper_ux,1.1496870517730713 +karman_re400,sr,223,89.2,velocity,upper_uy,-0.252872496843338 +karman_re400,sr,223,89.2,velocity,center_ux,1.0459907054901123 +karman_re400,sr,223,89.2,velocity,center_uy,-0.5408937931060791 +karman_re400,sr,223,89.2,velocity,lower_ux,0.9373084902763367 +karman_re400,sr,223,89.2,velocity,lower_uy,-0.31580498814582825 +karman_re400,sr,224,89.6,velocity,upper_ux,1.2017344236373901 +karman_re400,sr,224,89.6,velocity,upper_uy,-0.19866639375686646 +karman_re400,sr,224,89.6,velocity,center_ux,1.0820834636688232 +karman_re400,sr,224,89.6,velocity,center_uy,-0.606163501739502 +karman_re400,sr,224,89.6,velocity,lower_ux,0.9009361863136292 +karman_re400,sr,224,89.6,velocity,lower_uy,-0.21260327100753784 +karman_re400,sr,225,90.0,velocity,upper_ux,1.2283387184143066 +karman_re400,sr,225,90.0,velocity,upper_uy,-0.1478162705898285 +karman_re400,sr,225,90.0,velocity,center_ux,1.0766422748565674 +karman_re400,sr,225,90.0,velocity,center_uy,-0.16257300972938538 +karman_re400,sr,225,90.0,velocity,lower_ux,0.8787601590156555 +karman_re400,sr,225,90.0,velocity,lower_uy,-0.07221268117427826 +karman_re400,sr,226,90.4,velocity,upper_ux,1.2233006954193115 +karman_re400,sr,226,90.4,velocity,upper_uy,-0.17192623019218445 +karman_re400,sr,226,90.4,velocity,center_ux,1.0066086053848267 +karman_re400,sr,226,90.4,velocity,center_uy,0.3155214786529541 +karman_re400,sr,226,90.4,velocity,lower_ux,0.8711534142494202 +karman_re400,sr,226,90.4,velocity,lower_uy,0.10559132695198059 +karman_re400,sr,227,90.8,velocity,upper_ux,1.0804505348205566 +karman_re400,sr,227,90.8,velocity,upper_uy,0.05793018266558647 +karman_re400,sr,227,90.8,velocity,center_ux,0.9765821695327759 +karman_re400,sr,227,90.8,velocity,center_uy,0.47705450654029846 +karman_re400,sr,227,90.8,velocity,lower_ux,0.9128523468971252 +karman_re400,sr,227,90.8,velocity,lower_uy,0.22446000576019287 +karman_re400,sr,228,91.2,velocity,upper_ux,1.0374763011932373 +karman_re400,sr,228,91.2,velocity,upper_uy,0.37182143330574036 +karman_re400,sr,228,91.2,velocity,center_ux,0.9858867526054382 +karman_re400,sr,228,91.2,velocity,center_uy,0.535120964050293 +karman_re400,sr,228,91.2,velocity,lower_ux,0.9870390295982361 +karman_re400,sr,228,91.2,velocity,lower_uy,0.27899911999702454 +karman_re400,sr,229,91.6,velocity,upper_ux,1.0214332342147827 +karman_re400,sr,229,91.6,velocity,upper_uy,0.39200836420059204 +karman_re400,sr,229,91.6,velocity,center_ux,1.009671688079834 +karman_re400,sr,229,91.6,velocity,center_uy,0.5389018058776855 +karman_re400,sr,229,91.6,velocity,lower_ux,1.0570271015167236 +karman_re400,sr,229,91.6,velocity,lower_uy,0.2865530848503113 +karman_re400,sr,230,92.0,velocity,upper_ux,0.9787039756774902 +karman_re400,sr,230,92.0,velocity,upper_uy,0.3271035850048065 +karman_re400,sr,230,92.0,velocity,center_ux,1.0501939058303833 +karman_re400,sr,230,92.0,velocity,center_uy,0.5439860820770264 +karman_re400,sr,230,92.0,velocity,lower_ux,1.1191908121109009 +karman_re400,sr,230,92.0,velocity,lower_uy,0.25486791133880615 +karman_re400,sr,231,92.4,velocity,upper_ux,0.9296495318412781 +karman_re400,sr,231,92.4,velocity,upper_uy,0.23244082927703857 +karman_re400,sr,231,92.4,velocity,center_ux,1.1127269268035889 +karman_re400,sr,231,92.4,velocity,center_uy,0.5857352614402771 +karman_re400,sr,231,92.4,velocity,lower_ux,1.1723288297653198 +karman_re400,sr,231,92.4,velocity,lower_uy,0.20622484385967255 +karman_re400,sr,232,92.8,velocity,upper_ux,0.8930715322494507 +karman_re400,sr,232,92.8,velocity,upper_uy,0.09998202323913574 +karman_re400,sr,232,92.8,velocity,center_ux,1.130595088005066 +karman_re400,sr,232,92.8,velocity,center_uy,0.28850048780441284 +karman_re400,sr,232,92.8,velocity,lower_ux,1.2055357694625854 +karman_re400,sr,232,92.8,velocity,lower_uy,0.15508896112442017 +karman_re400,sr,233,93.2,velocity,upper_ux,0.876044511795044 +karman_re400,sr,233,93.2,velocity,upper_uy,-0.07661758363246918 +karman_re400,sr,233,93.2,velocity,center_ux,1.0468530654907227 +karman_re400,sr,233,93.2,velocity,center_uy,-0.18729610741138458 +karman_re400,sr,233,93.2,velocity,lower_ux,1.2490051984786987 +karman_re400,sr,233,93.2,velocity,lower_uy,0.2191365659236908 +karman_re400,sr,234,93.6,velocity,upper_ux,0.9064443707466125 +karman_re400,sr,234,93.6,velocity,upper_uy,-0.2105311155319214 +karman_re400,sr,234,93.6,velocity,center_ux,0.9858414530754089 +karman_re400,sr,234,93.6,velocity,center_uy,-0.4130822420120239 +karman_re400,sr,234,93.6,velocity,lower_ux,1.1598548889160156 +karman_re400,sr,234,93.6,velocity,lower_uy,0.05524599924683571 +karman_re400,sr,235,94.0,velocity,upper_ux,0.9796993136405945 +karman_re400,sr,235,94.0,velocity,upper_uy,-0.27167636156082153 +karman_re400,sr,235,94.0,velocity,center_ux,0.9805331230163574 +karman_re400,sr,235,94.0,velocity,center_uy,-0.5076103806495667 +karman_re400,sr,235,94.0,velocity,lower_ux,1.0810743570327759 +karman_re400,sr,235,94.0,velocity,lower_uy,-0.35062670707702637 +karman_re400,sr,236,94.4,velocity,upper_ux,1.0517243146896362 +karman_re400,sr,236,94.4,velocity,upper_uy,-0.28847968578338623 +karman_re400,sr,236,94.4,velocity,center_ux,0.9975057244300842 +karman_re400,sr,236,94.4,velocity,center_uy,-0.5221007466316223 +karman_re400,sr,236,94.4,velocity,lower_ux,1.0461376905441284 +karman_re400,sr,236,94.4,velocity,lower_uy,-0.3845522403717041 +karman_re400,sr,237,94.8,velocity,upper_ux,1.1139405965805054 +karman_re400,sr,237,94.8,velocity,upper_uy,-0.2591469883918762 +karman_re400,sr,237,94.8,velocity,center_ux,1.0187686681747437 +karman_re400,sr,237,94.8,velocity,center_uy,-0.5422566533088684 +karman_re400,sr,237,94.8,velocity,lower_ux,0.9945581555366516 +karman_re400,sr,237,94.8,velocity,lower_uy,-0.3287377953529358 +karman_re400,sr,238,95.2,velocity,upper_ux,1.1679245233535767 +karman_re400,sr,238,95.2,velocity,upper_uy,-0.20978078246116638 +karman_re400,sr,238,95.2,velocity,center_ux,1.0602977275848389 +karman_re400,sr,238,95.2,velocity,center_uy,-0.5612615942955017 +karman_re400,sr,238,95.2,velocity,lower_ux,0.9453323483467102 +karman_re400,sr,238,95.2,velocity,lower_uy,-0.2452336698770523 +karman_re400,sr,239,95.6,velocity,upper_ux,1.1972286701202393 +karman_re400,sr,239,95.6,velocity,upper_uy,-0.1403529942035675 +karman_re400,sr,239,95.6,velocity,center_ux,1.061692714691162 +karman_re400,sr,239,95.6,velocity,center_uy,-0.31055620312690735 +karman_re400,sr,239,95.6,velocity,lower_ux,0.9091721177101135 +karman_re400,sr,239,95.6,velocity,lower_uy,-0.12760137021541595 +karman_re400,sr,240,96.0,velocity,upper_ux,1.1976693868637085 +karman_re400,sr,240,96.0,velocity,upper_uy,-0.1302490532398224 +karman_re400,sr,240,96.0,velocity,center_ux,1.0166600942611694 +karman_re400,sr,240,96.0,velocity,center_uy,0.13239234685897827 +karman_re400,sr,240,96.0,velocity,lower_ux,0.88555508852005 +karman_re400,sr,240,96.0,velocity,lower_uy,0.04721967130899429 +karman_re400,sr,241,96.4,velocity,upper_ux,1.1649487018585205 +karman_re400,sr,241,96.4,velocity,upper_uy,-0.21240165829658508 +karman_re400,sr,241,96.4,velocity,center_ux,0.976523756980896 +karman_re400,sr,241,96.4,velocity,center_uy,0.3734721839427948 +karman_re400,sr,241,96.4,velocity,lower_ux,0.9010851979255676 +karman_re400,sr,241,96.4,velocity,lower_uy,0.20161430537700653 +karman_re400,sr,242,96.8,velocity,upper_ux,0.9967560768127441 +karman_re400,sr,242,96.8,velocity,upper_uy,0.17449408769607544 +karman_re400,sr,242,96.8,velocity,center_ux,0.9690709710121155 +karman_re400,sr,242,96.8,velocity,center_uy,0.4925310015678406 +karman_re400,sr,242,96.8,velocity,lower_ux,0.9699320793151855 +karman_re400,sr,242,96.8,velocity,lower_uy,0.26686719059944153 +karman_re400,sr,243,97.2,velocity,upper_ux,0.9921387434005737 +karman_re400,sr,243,97.2,velocity,upper_uy,0.4171231985092163 +karman_re400,sr,243,97.2,velocity,center_ux,0.9817758798599243 +karman_re400,sr,243,97.2,velocity,center_uy,0.5191259980201721 +karman_re400,sr,243,97.2,velocity,lower_ux,1.041161060333252 +karman_re400,sr,243,97.2,velocity,lower_uy,0.29526418447494507 +karman_re400,sr,244,97.6,velocity,upper_ux,0.9781553149223328 +karman_re400,sr,244,97.6,velocity,upper_uy,0.37202680110931396 +karman_re400,sr,244,97.6,velocity,center_ux,1.0013325214385986 +karman_re400,sr,244,97.6,velocity,center_uy,0.535508394241333 +karman_re400,sr,244,97.6,velocity,lower_ux,1.1048500537872314 +karman_re400,sr,244,97.6,velocity,lower_uy,0.2745307981967926 +karman_re400,sr,245,98.0,velocity,upper_ux,0.9407947063446045 +karman_re400,sr,245,98.0,velocity,upper_uy,0.28679412603378296 +karman_re400,sr,245,98.0,velocity,center_ux,1.0434166193008423 +karman_re400,sr,245,98.0,velocity,center_uy,0.5692570209503174 +karman_re400,sr,245,98.0,velocity,lower_ux,1.1656699180603027 +karman_re400,sr,245,98.0,velocity,lower_uy,0.23274920880794525 +karman_re400,sr,246,98.4,velocity,upper_ux,0.9064714908599854 +karman_re400,sr,246,98.4,velocity,upper_uy,0.17447936534881592 +karman_re400,sr,246,98.4,velocity,center_ux,1.0502808094024658 +karman_re400,sr,246,98.4,velocity,center_uy,0.48761269450187683 +karman_re400,sr,246,98.4,velocity,lower_ux,1.2130283117294312 +karman_re400,sr,246,98.4,velocity,lower_uy,0.16263435781002045 +karman_re400,sr,247,98.8,velocity,upper_ux,0.8864551782608032 +karman_re400,sr,247,98.8,velocity,upper_uy,0.015672195702791214 +karman_re400,sr,247,98.8,velocity,center_ux,1.018653154373169 +karman_re400,sr,247,98.8,velocity,center_uy,-0.04533258453011513 +karman_re400,sr,247,98.8,velocity,lower_ux,1.226258635520935 +karman_re400,sr,247,98.8,velocity,lower_uy,0.10194573551416397 +karman_re400,sr,248,99.2,velocity,upper_ux,0.8840644955635071 +karman_re400,sr,248,99.2,velocity,upper_uy,-0.16507163643836975 +karman_re400,sr,248,99.2,velocity,center_ux,0.9738156795501709 +karman_re400,sr,248,99.2,velocity,center_uy,-0.36976832151412964 +karman_re400,sr,248,99.2,velocity,lower_ux,1.2072157859802246 +karman_re400,sr,248,99.2,velocity,lower_uy,0.14055921137332916 +karman_re400,sr,249,99.6,velocity,upper_ux,0.9425507187843323 +karman_re400,sr,249,99.6,velocity,upper_uy,-0.25192004442214966 +karman_re400,sr,249,99.6,velocity,center_ux,0.9682780504226685 +karman_re400,sr,249,99.6,velocity,center_uy,-0.49659115076065063 +karman_re400,sr,249,99.6,velocity,lower_ux,1.033554196357727 +karman_re400,sr,249,99.6,velocity,lower_uy,-0.031182048842310905 +karman_re400,sr,250,100.0,velocity,upper_ux,1.0157177448272705 +karman_re400,sr,250,100.0,velocity,upper_uy,-0.29405665397644043 +karman_re400,sr,250,100.0,velocity,center_ux,0.982452929019928 +karman_re400,sr,250,100.0,velocity,center_uy,-0.5358204245567322 +karman_re400,sr,250,100.0,velocity,lower_ux,0.9554219245910645 +karman_re400,sr,250,100.0,velocity,lower_uy,-0.36801865696907043 +karman_re400,sr,251,100.4,velocity,upper_ux,1.082320213317871 +karman_re400,sr,251,100.4,velocity,upper_uy,-0.2869546413421631 +karman_re400,sr,251,100.4,velocity,center_ux,1.006290316581726 +karman_re400,sr,251,100.4,velocity,center_uy,-0.5419087409973145 +karman_re400,sr,251,100.4,velocity,lower_ux,0.9657871127128601 +karman_re400,sr,251,100.4,velocity,lower_uy,-0.3927439749240875 +karman_re400,sr,252,100.8,velocity,upper_ux,1.145594835281372 +karman_re400,sr,252,100.8,velocity,upper_uy,-0.25184574723243713 +karman_re400,sr,252,100.8,velocity,center_ux,1.053635835647583 +karman_re400,sr,252,100.8,velocity,center_uy,-0.5513438582420349 +karman_re400,sr,252,100.8,velocity,lower_ux,0.939035177230835 +karman_re400,sr,252,100.8,velocity,lower_uy,-0.3213390111923218 +karman_re400,sr,253,101.2,velocity,upper_ux,1.1990524530410767 +karman_re400,sr,253,101.2,velocity,upper_uy,-0.1962997317314148 +karman_re400,sr,253,101.2,velocity,center_ux,1.0958019495010376 +karman_re400,sr,253,101.2,velocity,center_uy,-0.6052824258804321 +karman_re400,sr,253,101.2,velocity,lower_ux,0.9024592041969299 +karman_re400,sr,253,101.2,velocity,lower_uy,-0.21801090240478516 +karman_re400,sr,254,101.6,velocity,upper_ux,1.2256547212600708 +karman_re400,sr,254,101.6,velocity,upper_uy,-0.14333786070346832 +karman_re400,sr,254,101.6,velocity,center_ux,1.0916550159454346 +karman_re400,sr,254,101.6,velocity,center_uy,-0.1455722153186798 +karman_re400,sr,254,101.6,velocity,lower_ux,0.8797953128814697 +karman_re400,sr,254,101.6,velocity,lower_uy,-0.07312212139368057 +karman_re400,sr,255,102.0,velocity,upper_ux,1.2216331958770752 +karman_re400,sr,255,102.0,velocity,upper_uy,-0.16580180823802948 +karman_re400,sr,255,102.0,velocity,center_ux,1.0180575847625732 +karman_re400,sr,255,102.0,velocity,center_uy,0.31560906767845154 +karman_re400,sr,255,102.0,velocity,lower_ux,0.8723909258842468 +karman_re400,sr,255,102.0,velocity,lower_uy,0.11217385530471802 +karman_re400,sr,256,102.4,velocity,upper_ux,1.078055739402771 +karman_re400,sr,256,102.4,velocity,upper_uy,0.06184891611337662 +karman_re400,sr,256,102.4,velocity,center_ux,0.986446738243103 +karman_re400,sr,256,102.4,velocity,center_uy,0.47681793570518494 +karman_re400,sr,256,102.4,velocity,lower_ux,0.91572105884552 +karman_re400,sr,256,102.4,velocity,lower_uy,0.23197636008262634 +karman_re400,sr,257,102.8,velocity,upper_ux,1.0340386629104614 +karman_re400,sr,257,102.8,velocity,upper_uy,0.3680303692817688 +karman_re400,sr,257,102.8,velocity,center_ux,0.9937286376953125 +karman_re400,sr,257,102.8,velocity,center_uy,0.5334568619728088 +karman_re400,sr,257,102.8,velocity,lower_ux,0.9914020299911499 +karman_re400,sr,257,102.8,velocity,lower_uy,0.28430044651031494 +karman_re400,sr,258,103.2,velocity,upper_ux,1.0199520587921143 +karman_re400,sr,258,103.2,velocity,upper_uy,0.3822214901447296 +karman_re400,sr,258,103.2,velocity,center_ux,1.014569878578186 +karman_re400,sr,258,103.2,velocity,center_uy,0.535788357257843 +karman_re400,sr,258,103.2,velocity,lower_ux,1.0620003938674927 +karman_re400,sr,258,103.2,velocity,lower_uy,0.2894665598869324 +karman_re400,sr,259,103.6,velocity,upper_ux,0.9779778122901917 +karman_re400,sr,259,103.6,velocity,upper_uy,0.31670159101486206 +karman_re400,sr,259,103.6,velocity,center_ux,1.0518521070480347 +karman_re400,sr,259,103.6,velocity,center_uy,0.5419487953186035 +karman_re400,sr,259,103.6,velocity,lower_ux,1.1242581605911255 +karman_re400,sr,259,103.6,velocity,lower_uy,0.25629350543022156 +karman_re400,sr,260,104.0,velocity,upper_ux,0.9298651218414307 +karman_re400,sr,260,104.0,velocity,upper_uy,0.22196154296398163 +karman_re400,sr,260,104.0,velocity,center_ux,1.1071088314056396 +karman_re400,sr,260,104.0,velocity,center_uy,0.5804388523101807 +karman_re400,sr,260,104.0,velocity,lower_ux,1.1771522760391235 +karman_re400,sr,260,104.0,velocity,lower_uy,0.20644786953926086 +karman_re400,sr,261,104.4,velocity,upper_ux,0.8949345350265503 +karman_re400,sr,261,104.4,velocity,upper_uy,0.08914461731910706 +karman_re400,sr,261,104.4,velocity,center_ux,1.1145766973495483 +karman_re400,sr,261,104.4,velocity,center_uy,0.2609814703464508 +karman_re400,sr,261,104.4,velocity,lower_ux,1.2112151384353638 +karman_re400,sr,261,104.4,velocity,lower_uy,0.15538397431373596 +karman_re400,sr,262,104.8,velocity,upper_ux,0.8776803612709045 +karman_re400,sr,262,104.8,velocity,upper_uy,-0.08728944510221481 +karman_re400,sr,262,104.8,velocity,center_ux,1.031896948814392 +karman_re400,sr,262,104.8,velocity,center_uy,-0.20506614446640015 +karman_re400,sr,262,104.8,velocity,lower_ux,1.2549090385437012 +karman_re400,sr,262,104.8,velocity,lower_uy,0.21901769936084747 +karman_re400,sr,263,105.2,velocity,upper_ux,0.9112486243247986 +karman_re400,sr,263,105.2,velocity,upper_uy,-0.21369318664073944 +karman_re400,sr,263,105.2,velocity,center_ux,0.979346752166748 +karman_re400,sr,263,105.2,velocity,center_uy,-0.42033281922340393 +karman_re400,sr,263,105.2,velocity,lower_ux,1.1539361476898193 +karman_re400,sr,263,105.2,velocity,lower_uy,0.0375603549182415 +karman_re400,sr,264,105.6,velocity,upper_ux,0.9842406511306763 +karman_re400,sr,264,105.6,velocity,upper_uy,-0.27287745475769043 +karman_re400,sr,264,105.6,velocity,center_ux,0.9782750010490417 +karman_re400,sr,264,105.6,velocity,center_uy,-0.5103158950805664 +karman_re400,sr,264,105.6,velocity,lower_ux,1.0774688720703125 +karman_re400,sr,264,105.6,velocity,lower_uy,-0.35242390632629395 +karman_re400,sr,265,106.0,velocity,upper_ux,1.0547620058059692 +karman_re400,sr,265,106.0,velocity,upper_uy,-0.28795576095581055 +karman_re400,sr,265,106.0,velocity,center_ux,0.9967352151870728 +karman_re400,sr,265,106.0,velocity,center_uy,-0.5235084295272827 +karman_re400,sr,265,106.0,velocity,lower_ux,1.0413569211959839 +karman_re400,sr,265,106.0,velocity,lower_uy,-0.3832186758518219 +karman_re400,sr,266,106.4,velocity,upper_ux,1.1165348291397095 +karman_re400,sr,266,106.4,velocity,upper_uy,-0.2585494816303253 +karman_re400,sr,266,106.4,velocity,center_ux,1.0213178396224976 +karman_re400,sr,266,106.4,velocity,center_uy,-0.543793261051178 +karman_re400,sr,266,106.4,velocity,lower_ux,0.9891237020492554 +karman_re400,sr,266,106.4,velocity,lower_uy,-0.32709503173828125 +karman_re400,sr,267,106.8,velocity,upper_ux,1.170790433883667 +karman_re400,sr,267,106.8,velocity,upper_uy,-0.20855087041854858 +karman_re400,sr,267,106.8,velocity,center_ux,1.0662541389465332 +karman_re400,sr,267,106.8,velocity,center_uy,-0.5696561932563782 +karman_re400,sr,267,106.8,velocity,lower_ux,0.9389729499816895 +karman_re400,sr,267,106.8,velocity,lower_uy,-0.24291057884693146 +karman_re400,sr,268,107.2,velocity,upper_ux,1.2002671957015991 +karman_re400,sr,268,107.2,velocity,upper_uy,-0.13764013350009918 +karman_re400,sr,268,107.2,velocity,center_ux,1.0709658861160278 +karman_re400,sr,268,107.2,velocity,center_uy,-0.31442537903785706 +karman_re400,sr,268,107.2,velocity,lower_ux,0.9027063250541687 +karman_re400,sr,268,107.2,velocity,lower_uy,-0.1252913624048233 +karman_re400,sr,269,107.6,velocity,upper_ux,1.2013863325119019 +karman_re400,sr,269,107.6,velocity,upper_uy,-0.1271960288286209 +karman_re400,sr,269,107.6,velocity,center_ux,1.0218701362609863 +karman_re400,sr,269,107.6,velocity,center_uy,0.14196179807186127 +karman_re400,sr,269,107.6,velocity,lower_ux,0.8819217085838318 +karman_re400,sr,269,107.6,velocity,lower_uy,0.04642437770962715 +karman_re400,sr,270,108.0,velocity,upper_ux,1.170711636543274 +karman_re400,sr,270,108.0,velocity,upper_uy,-0.20644670724868774 +karman_re400,sr,270,108.0,velocity,center_ux,0.9786415696144104 +karman_re400,sr,270,108.0,velocity,center_uy,0.3814440071582794 +karman_re400,sr,270,108.0,velocity,lower_ux,0.8987982869148254 +karman_re400,sr,270,108.0,velocity,lower_uy,0.20105837285518646 +karman_re400,sr,271,108.4,velocity,upper_ux,0.9970735907554626 +karman_re400,sr,271,108.4,velocity,upper_uy,0.1748216301202774 +karman_re400,sr,271,108.4,velocity,center_ux,0.9705660343170166 +karman_re400,sr,271,108.4,velocity,center_uy,0.497448205947876 +karman_re400,sr,271,108.4,velocity,lower_ux,0.9680240750312805 +karman_re400,sr,271,108.4,velocity,lower_uy,0.26736029982566833 +karman_re400,sr,272,108.8,velocity,upper_ux,0.9886816143989563 +karman_re400,sr,272,108.8,velocity,upper_uy,0.41498473286628723 +karman_re400,sr,272,108.8,velocity,center_ux,0.9833346605300903 +karman_re400,sr,272,108.8,velocity,center_uy,0.5235708355903625 +karman_re400,sr,272,108.8,velocity,lower_ux,1.0401029586791992 +karman_re400,sr,272,108.8,velocity,lower_uy,0.29587483406066895 +karman_re400,sr,273,109.2,velocity,upper_ux,0.9742782711982727 +karman_re400,sr,273,109.2,velocity,upper_uy,0.3715101480484009 +karman_re400,sr,273,109.2,velocity,center_ux,1.0037518739700317 +karman_re400,sr,273,109.2,velocity,center_uy,0.5401535630226135 +karman_re400,sr,273,109.2,velocity,lower_ux,1.1042596101760864 +karman_re400,sr,273,109.2,velocity,lower_uy,0.27479788661003113 +karman_re400,sr,274,109.6,velocity,upper_ux,0.9366182088851929 +karman_re400,sr,274,109.6,velocity,upper_uy,0.28777745366096497 +karman_re400,sr,274,109.6,velocity,center_ux,1.0492687225341797 +karman_re400,sr,274,109.6,velocity,center_uy,0.5769174098968506 +karman_re400,sr,274,109.6,velocity,lower_ux,1.165910005569458 +karman_re400,sr,274,109.6,velocity,lower_uy,0.23252886533737183 +karman_re400,sr,275,110.0,velocity,upper_ux,0.9016942381858826 +karman_re400,sr,275,110.0,velocity,upper_uy,0.1759863644838333 +karman_re400,sr,275,110.0,velocity,center_ux,1.0623317956924438 +karman_re400,sr,275,110.0,velocity,center_uy,0.48518577218055725 +karman_re400,sr,275,110.0,velocity,lower_ux,1.2130788564682007 +karman_re400,sr,275,110.0,velocity,lower_uy,0.161603182554245 +karman_re400,sr,276,110.4,velocity,upper_ux,0.8828977942466736 +karman_re400,sr,276,110.4,velocity,upper_uy,0.018553460016846657 +karman_re400,sr,276,110.4,velocity,center_ux,1.0293841361999512 +karman_re400,sr,276,110.4,velocity,center_uy,-0.048796556890010834 +karman_re400,sr,276,110.4,velocity,lower_ux,1.2250770330429077 +karman_re400,sr,276,110.4,velocity,lower_uy,0.10160432755947113 +karman_re400,sr,277,110.8,velocity,upper_ux,0.8818695545196533 +karman_re400,sr,277,110.8,velocity,upper_uy,-0.16447801887989044 +karman_re400,sr,277,110.8,velocity,center_ux,0.9804984927177429 +karman_re400,sr,277,110.8,velocity,center_uy,-0.3693612217903137 +karman_re400,sr,277,110.8,velocity,lower_ux,1.2062039375305176 +karman_re400,sr,277,110.8,velocity,lower_uy,0.14217010140419006 +karman_re400,sr,278,111.2,velocity,upper_ux,0.9408456683158875 +karman_re400,sr,278,111.2,velocity,upper_uy,-0.25381889939308167 +karman_re400,sr,278,111.2,velocity,center_ux,0.9724785089492798 +karman_re400,sr,278,111.2,velocity,center_uy,-0.4971071481704712 +karman_re400,sr,278,111.2,velocity,lower_ux,1.0319945812225342 +karman_re400,sr,278,111.2,velocity,lower_uy,-0.03347744792699814 +karman_re400,sr,279,111.6,velocity,upper_ux,1.0151060819625854 +karman_re400,sr,279,111.6,velocity,upper_uy,-0.29537326097488403 +karman_re400,sr,279,111.6,velocity,center_ux,0.9849717020988464 +karman_re400,sr,279,111.6,velocity,center_uy,-0.5365789532661438 +karman_re400,sr,279,111.6,velocity,lower_ux,0.9569701552391052 +karman_re400,sr,279,111.6,velocity,lower_uy,-0.3690512180328369 +karman_re400,sr,280,112.0,velocity,upper_ux,1.0826692581176758 +karman_re400,sr,280,112.0,velocity,upper_uy,-0.2876713275909424 +karman_re400,sr,280,112.0,velocity,center_ux,1.0077588558197021 +karman_re400,sr,280,112.0,velocity,center_uy,-0.5434173345565796 +karman_re400,sr,280,112.0,velocity,lower_ux,0.9683812856674194 +karman_re400,sr,280,112.0,velocity,lower_uy,-0.3900001049041748 +karman_re400,sr,281,112.4,velocity,upper_ux,1.1461392641067505 +karman_re400,sr,281,112.4,velocity,upper_uy,-0.25179263949394226 +karman_re400,sr,281,112.4,velocity,center_ux,1.0566284656524658 +karman_re400,sr,281,112.4,velocity,center_uy,-0.5567780137062073 +karman_re400,sr,281,112.4,velocity,lower_ux,0.9416536092758179 +karman_re400,sr,281,112.4,velocity,lower_uy,-0.3177589476108551 +karman_re400,sr,282,112.8,velocity,upper_ux,1.1985833644866943 +karman_re400,sr,282,112.8,velocity,upper_uy,-0.19601324200630188 +karman_re400,sr,282,112.8,velocity,center_ux,1.0985759496688843 +karman_re400,sr,282,112.8,velocity,center_uy,-0.5975552201271057 +karman_re400,sr,282,112.8,velocity,lower_ux,0.9052219986915588 +karman_re400,sr,282,112.8,velocity,lower_uy,-0.21430078148841858 +karman_re400,sr,283,113.2,velocity,upper_ux,1.2241673469543457 +karman_re400,sr,283,113.2,velocity,upper_uy,-0.1455937623977661 +karman_re400,sr,283,113.2,velocity,center_ux,1.085709810256958 +karman_re400,sr,283,113.2,velocity,center_uy,-0.12485317885875702 +karman_re400,sr,283,113.2,velocity,lower_ux,0.8830997943878174 +karman_re400,sr,283,113.2,velocity,lower_uy,-0.06836607307195663 +karman_re400,sr,284,113.6,velocity,upper_ux,1.2176841497421265 +karman_re400,sr,284,113.6,velocity,upper_uy,-0.1689516305923462 +karman_re400,sr,284,113.6,velocity,center_ux,1.0108122825622559 +karman_re400,sr,284,113.6,velocity,center_uy,0.31799209117889404 +karman_re400,sr,284,113.6,velocity,lower_ux,0.8751474618911743 +karman_re400,sr,284,113.6,velocity,lower_uy,0.11744632571935654 +karman_re400,sr,285,114.0,velocity,upper_ux,1.072953701019287 +karman_re400,sr,285,114.0,velocity,upper_uy,0.07719661295413971 +karman_re400,sr,285,114.0,velocity,center_ux,0.9837121367454529 +karman_re400,sr,285,114.0,velocity,center_uy,0.47576144337654114 +karman_re400,sr,285,114.0,velocity,lower_ux,0.92022705078125 +karman_re400,sr,285,114.0,velocity,lower_uy,0.23339392244815826 +karman_re400,sr,286,114.4,velocity,upper_ux,1.0372406244277954 +karman_re400,sr,286,114.4,velocity,upper_uy,0.37425699830055237 +karman_re400,sr,286,114.4,velocity,center_ux,0.9931415319442749 +karman_re400,sr,286,114.4,velocity,center_uy,0.5319314002990723 +karman_re400,sr,286,114.4,velocity,lower_ux,0.9956838488578796 +karman_re400,sr,286,114.4,velocity,lower_uy,0.2843536138534546 +karman_re400,sr,287,114.8,velocity,upper_ux,1.0208849906921387 +karman_re400,sr,287,114.8,velocity,upper_uy,0.3821656405925751 +karman_re400,sr,287,114.8,velocity,center_ux,1.0147581100463867 +karman_re400,sr,287,114.8,velocity,center_uy,0.5342142581939697 +karman_re400,sr,287,114.8,velocity,lower_ux,1.065484881401062 +karman_re400,sr,287,114.8,velocity,lower_uy,0.2876925766468048 +karman_re400,sr,288,115.2,velocity,upper_ux,0.978150486946106 +karman_re400,sr,288,115.2,velocity,upper_uy,0.3143950402736664 +karman_re400,sr,288,115.2,velocity,center_ux,1.051996111869812 +karman_re400,sr,288,115.2,velocity,center_uy,0.5398970246315002 +karman_re400,sr,288,115.2,velocity,lower_ux,1.1276823282241821 +karman_re400,sr,288,115.2,velocity,lower_uy,0.2540917992591858 +karman_re400,sr,289,115.6,velocity,upper_ux,0.9301106333732605 +karman_re400,sr,289,115.6,velocity,upper_uy,0.21752916276454926 +karman_re400,sr,289,115.6,velocity,center_ux,1.1013816595077515 +karman_re400,sr,289,115.6,velocity,center_uy,0.5789071917533875 +karman_re400,sr,289,115.6,velocity,lower_ux,1.1812050342559814 +karman_re400,sr,289,115.6,velocity,lower_uy,0.20311328768730164 +karman_re400,sr,290,116.0,velocity,upper_ux,0.8954204320907593 +karman_re400,sr,290,116.0,velocity,upper_uy,0.08165084570646286 +karman_re400,sr,290,116.0,velocity,center_ux,1.1057744026184082 +karman_re400,sr,290,116.0,velocity,center_uy,0.23969970643520355 +karman_re400,sr,290,116.0,velocity,lower_ux,1.2163301706314087 +karman_re400,sr,290,116.0,velocity,lower_uy,0.1498759388923645 +karman_re400,sr,291,116.4,velocity,upper_ux,0.8781617879867554 +karman_re400,sr,291,116.4,velocity,upper_uy,-0.09746632725000381 +karman_re400,sr,291,116.4,velocity,center_ux,1.0268738269805908 +karman_re400,sr,291,116.4,velocity,center_uy,-0.2238244265317917 +karman_re400,sr,291,116.4,velocity,lower_ux,1.260047435760498 +karman_re400,sr,291,116.4,velocity,lower_uy,0.2062225192785263 +karman_re400,sr,292,116.8,velocity,upper_ux,0.9145246148109436 +karman_re400,sr,292,116.8,velocity,upper_uy,-0.21871139109134674 +karman_re400,sr,292,116.8,velocity,center_ux,0.9796078205108643 +karman_re400,sr,292,116.8,velocity,center_uy,-0.42999565601348877 +karman_re400,sr,292,116.8,velocity,lower_ux,1.1508839130401611 +karman_re400,sr,292,116.8,velocity,lower_uy,0.031224660575389862 +karman_re400,sr,293,117.2,velocity,upper_ux,0.9872050285339355 +karman_re400,sr,293,117.2,velocity,upper_uy,-0.2762787342071533 +karman_re400,sr,293,117.2,velocity,center_ux,0.9799055457115173 +karman_re400,sr,293,117.2,velocity,center_uy,-0.5139124989509583 +karman_re400,sr,293,117.2,velocity,lower_ux,1.066810131072998 +karman_re400,sr,293,117.2,velocity,lower_uy,-0.3480907678604126 +karman_re400,sr,294,117.6,velocity,upper_ux,1.0571264028549194 +karman_re400,sr,294,117.6,velocity,upper_uy,-0.29006484150886536 +karman_re400,sr,294,117.6,velocity,center_ux,0.9984872341156006 +karman_re400,sr,294,117.6,velocity,center_uy,-0.5245351195335388 +karman_re400,sr,294,117.6,velocity,lower_ux,1.0335896015167236 +karman_re400,sr,294,117.6,velocity,lower_uy,-0.37764838337898254 +karman_re400,sr,295,118.0,velocity,upper_ux,1.1183863878250122 +karman_re400,sr,295,118.0,velocity,upper_uy,-0.2606959342956543 +karman_re400,sr,295,118.0,velocity,center_ux,1.0251017808914185 +karman_re400,sr,295,118.0,velocity,center_uy,-0.5438071489334106 +karman_re400,sr,295,118.0,velocity,lower_ux,0.981670081615448 +karman_re400,sr,295,118.0,velocity,lower_uy,-0.32221725583076477 +karman_re400,sr,296,118.4,velocity,upper_ux,1.1729345321655273 +karman_re400,sr,296,118.4,velocity,upper_uy,-0.210778146982193 +karman_re400,sr,296,118.4,velocity,center_ux,1.0748769044876099 +karman_re400,sr,296,118.4,velocity,center_uy,-0.5772903561592102 +karman_re400,sr,296,118.4,velocity,lower_ux,0.931143581867218 +karman_re400,sr,296,118.4,velocity,lower_uy,-0.23873820900917053 +karman_re400,sr,297,118.8,velocity,upper_ux,1.202513337135315 +karman_re400,sr,297,118.8,velocity,upper_uy,-0.14023356139659882 +karman_re400,sr,297,118.8,velocity,center_ux,1.0839438438415527 +karman_re400,sr,297,118.8,velocity,center_uy,-0.3302600383758545 +karman_re400,sr,297,118.8,velocity,lower_ux,0.894619882106781 +karman_re400,sr,297,118.8,velocity,lower_uy,-0.12271609902381897 +karman_re400,sr,298,119.2,velocity,upper_ux,1.2048600912094116 +karman_re400,sr,298,119.2,velocity,upper_uy,-0.13189034163951874 +karman_re400,sr,298,119.2,velocity,center_ux,1.027909278869629 +karman_re400,sr,298,119.2,velocity,center_uy,0.14212651550769806 +karman_re400,sr,298,119.2,velocity,lower_ux,0.8769773244857788 +karman_re400,sr,298,119.2,velocity,lower_uy,0.04191366583108902 +karman_re400,sr,299,119.6,velocity,upper_ux,1.175309181213379 +karman_re400,sr,299,119.6,velocity,upper_uy,-0.20567017793655396 +karman_re400,sr,299,119.6,velocity,center_ux,0.9779596924781799 +karman_re400,sr,299,119.6,velocity,center_uy,0.3851470649242401 +karman_re400,sr,299,119.6,velocity,lower_ux,0.8944498300552368 +karman_re400,sr,299,119.6,velocity,lower_uy,0.19610600173473358 +karman_re400,sr,300,120.0,velocity,upper_ux,1.004409670829773 +karman_re400,sr,300,120.0,velocity,upper_uy,0.18413126468658447 +karman_re400,sr,300,120.0,velocity,center_ux,0.9686492085456848 +karman_re400,sr,300,120.0,velocity,center_uy,0.4993627667427063 +karman_re400,sr,300,120.0,velocity,lower_ux,0.9637240767478943 +karman_re400,sr,300,120.0,velocity,lower_uy,0.2651401460170746 +karman_re400,sr,301,120.4,velocity,upper_ux,0.9942607879638672 +karman_re400,sr,301,120.4,velocity,upper_uy,0.4154995381832123 +karman_re400,sr,301,120.4,velocity,center_ux,0.9816144704818726 +karman_re400,sr,301,120.4,velocity,center_uy,0.5283759832382202 +karman_re400,sr,301,120.4,velocity,lower_ux,1.0363993644714355 +karman_re400,sr,301,120.4,velocity,lower_uy,0.29487335681915283 +karman_re400,sr,302,120.8,velocity,upper_ux,0.9765204787254333 +karman_re400,sr,302,120.8,velocity,upper_uy,0.3736989498138428 +karman_re400,sr,302,120.8,velocity,center_ux,1.0040074586868286 +karman_re400,sr,302,120.8,velocity,center_uy,0.5457372069358826 +karman_re400,sr,302,120.8,velocity,lower_ux,1.1015011072158813 +karman_re400,sr,302,120.8,velocity,lower_uy,0.2740212678909302 +karman_re400,sr,303,121.2,velocity,upper_ux,0.9373499155044556 +karman_re400,sr,303,121.2,velocity,upper_uy,0.2912238538265228 +karman_re400,sr,303,121.2,velocity,center_ux,1.0548031330108643 +karman_re400,sr,303,121.2,velocity,center_uy,0.5850715637207031 +karman_re400,sr,303,121.2,velocity,lower_ux,1.1626793146133423 +karman_re400,sr,303,121.2,velocity,lower_uy,0.23200343549251556 +karman_re400,sr,304,121.6,velocity,upper_ux,0.9011704325675964 +karman_re400,sr,304,121.6,velocity,upper_uy,0.1800222247838974 +karman_re400,sr,304,121.6,velocity,center_ux,1.0767261981964111 +karman_re400,sr,304,121.6,velocity,center_uy,0.4767746329307556 +karman_re400,sr,304,121.6,velocity,lower_ux,1.2071164846420288 +karman_re400,sr,304,121.6,velocity,lower_uy,0.16305862367153168 +karman_re400,sr,305,122.0,velocity,upper_ux,0.8829166293144226 +karman_re400,sr,305,122.0,velocity,upper_uy,0.02317148633301258 +karman_re400,sr,305,122.0,velocity,center_ux,1.0392351150512695 +karman_re400,sr,305,122.0,velocity,center_uy,-0.045642219483852386 +karman_re400,sr,305,122.0,velocity,lower_ux,1.2170733213424683 +karman_re400,sr,305,122.0,velocity,lower_uy,0.11433849483728409 +karman_re400,sr,306,122.4,velocity,upper_ux,0.8822022080421448 +karman_re400,sr,306,122.4,velocity,upper_uy,-0.16270996630191803 +karman_re400,sr,306,122.4,velocity,center_ux,0.9852920770645142 +karman_re400,sr,306,122.4,velocity,center_uy,-0.3615460991859436 +karman_re400,sr,306,122.4,velocity,lower_ux,1.196236252784729 +karman_re400,sr,306,122.4,velocity,lower_uy,0.16154690086841583 +karman_re400,sr,307,122.8,velocity,upper_ux,0.9414586424827576 +karman_re400,sr,307,122.8,velocity,upper_uy,-0.25398218631744385 +karman_re400,sr,307,122.8,velocity,center_ux,0.9757483601570129 +karman_re400,sr,307,122.8,velocity,center_uy,-0.49368417263031006 +karman_re400,sr,307,122.8,velocity,lower_ux,1.0200444459915161 +karman_re400,sr,307,122.8,velocity,lower_uy,-0.07367093861103058 +karman_re400,sr,308,123.2,velocity,upper_ux,1.016669511795044 +karman_re400,sr,308,123.2,velocity,upper_uy,-0.2942717671394348 +karman_re400,sr,308,123.2,velocity,center_ux,0.9883663058280945 +karman_re400,sr,308,123.2,velocity,center_uy,-0.5346605777740479 +karman_re400,sr,308,123.2,velocity,lower_ux,0.979698121547699 +karman_re400,sr,308,123.2,velocity,lower_uy,-0.38905370235443115 +karman_re400,sr,309,123.6,velocity,upper_ux,1.0845322608947754 +karman_re400,sr,309,123.6,velocity,upper_uy,-0.2848966121673584 +karman_re400,sr,309,123.6,velocity,center_ux,1.0105528831481934 +karman_re400,sr,309,123.6,velocity,center_uy,-0.5415129065513611 +karman_re400,sr,309,123.6,velocity,lower_ux,0.9836145639419556 +karman_re400,sr,309,123.6,velocity,lower_uy,-0.38740161061286926 +karman_re400,sr,310,124.0,velocity,upper_ux,1.1477967500686646 +karman_re400,sr,310,124.0,velocity,upper_uy,-0.24737243354320526 +karman_re400,sr,310,124.0,velocity,center_ux,1.0562803745269775 +karman_re400,sr,310,124.0,velocity,center_uy,-0.5564101338386536 +karman_re400,sr,310,124.0,velocity,lower_ux,0.9523109197616577 +karman_re400,sr,310,124.0,velocity,lower_uy,-0.31059691309928894 +karman_re400,sr,311,124.4,velocity,upper_ux,1.200330138206482 +karman_re400,sr,311,124.4,velocity,upper_uy,-0.18950386345386505 +karman_re400,sr,311,124.4,velocity,center_ux,1.0903959274291992 +karman_re400,sr,311,124.4,velocity,center_uy,-0.5743998289108276 +karman_re400,sr,311,124.4,velocity,lower_ux,0.9149256944656372 +karman_re400,sr,311,124.4,velocity,lower_uy,-0.20420299470424652 +karman_re400,sr,312,124.8,velocity,upper_ux,1.2256966829299927 +karman_re400,sr,312,124.8,velocity,upper_uy,-0.13384908437728882 +karman_re400,sr,312,124.8,velocity,center_ux,1.0706833600997925 +karman_re400,sr,312,124.8,velocity,center_uy,-0.08465404808521271 +karman_re400,sr,312,124.8,velocity,lower_ux,0.8905802369117737 +karman_re400,sr,312,124.8,velocity,lower_uy,-0.05101780593395233 +karman_re400,sr,313,125.2,velocity,upper_ux,1.2197175025939941 +karman_re400,sr,313,125.2,velocity,upper_uy,-0.15721285343170166 +karman_re400,sr,313,125.2,velocity,center_ux,1.0023216009140015 +karman_re400,sr,313,125.2,velocity,center_uy,0.3279182016849518 +karman_re400,sr,313,125.2,velocity,lower_ux,0.8805490732192993 +karman_re400,sr,313,125.2,velocity,lower_uy,0.1366453766822815 +karman_re400,sr,314,125.6,velocity,upper_ux,1.069726824760437 +karman_re400,sr,314,125.6,velocity,upper_uy,0.06533853709697723 +karman_re400,sr,314,125.6,velocity,center_ux,0.9817586541175842 +karman_re400,sr,314,125.6,velocity,center_uy,0.47868043184280396 +karman_re400,sr,314,125.6,velocity,lower_ux,0.929914116859436 +karman_re400,sr,314,125.6,velocity,lower_uy,0.24015003442764282 +karman_re400,sr,315,126.0,velocity,upper_ux,1.0216279029846191 +karman_re400,sr,315,126.0,velocity,upper_uy,0.36705824732780457 +karman_re400,sr,315,126.0,velocity,center_ux,0.9921736121177673 +karman_re400,sr,315,126.0,velocity,center_uy,0.5283963084220886 +karman_re400,sr,315,126.0,velocity,lower_ux,1.0037319660186768 +karman_re400,sr,315,126.0,velocity,lower_uy,0.28856322169303894 +karman_re400,sr,316,126.4,velocity,upper_ux,1.0097169876098633 +karman_re400,sr,316,126.4,velocity,upper_uy,0.3763413727283478 +karman_re400,sr,316,126.4,velocity,center_ux,1.0131736993789673 +karman_re400,sr,316,126.4,velocity,center_uy,0.5297307968139648 +karman_re400,sr,316,126.4,velocity,lower_ux,1.0716962814331055 +karman_re400,sr,316,126.4,velocity,lower_uy,0.2899189293384552 +karman_re400,sr,317,126.8,velocity,upper_ux,0.9688392877578735 +karman_re400,sr,317,126.8,velocity,upper_uy,0.30912914872169495 +karman_re400,sr,317,126.8,velocity,center_ux,1.0491611957550049 +karman_re400,sr,317,126.8,velocity,center_uy,0.5332334041595459 +karman_re400,sr,317,126.8,velocity,lower_ux,1.1331048011779785 +karman_re400,sr,317,126.8,velocity,lower_uy,0.2570233643054962 +karman_re400,sr,318,127.2,velocity,upper_ux,0.9222357273101807 +karman_re400,sr,318,127.2,velocity,upper_uy,0.21302248537540436 +karman_re400,sr,318,127.2,velocity,center_ux,1.0930649042129517 +karman_re400,sr,318,127.2,velocity,center_uy,0.5838844776153564 +karman_re400,sr,318,127.2,velocity,lower_ux,1.1867808103561401 +karman_re400,sr,318,127.2,velocity,lower_uy,0.20674751698970795 +karman_re400,sr,319,127.6,velocity,upper_ux,0.8895833492279053 +karman_re400,sr,319,127.6,velocity,upper_uy,0.0802195817232132 +karman_re400,sr,319,127.6,velocity,center_ux,1.098567008972168 +karman_re400,sr,319,127.6,velocity,center_uy,0.2520154118537903 +karman_re400,sr,319,127.6,velocity,lower_ux,1.2226506471633911 +karman_re400,sr,319,127.6,velocity,lower_uy,0.1549120992422104 +karman_re400,sr,320,128.0,velocity,upper_ux,0.8746861815452576 +karman_re400,sr,320,128.0,velocity,upper_uy,-0.09397628903388977 +karman_re400,sr,320,128.0,velocity,center_ux,1.0220907926559448 +karman_re400,sr,320,128.0,velocity,center_uy,-0.2353070229291916 +karman_re400,sr,320,128.0,velocity,lower_ux,1.2591487169265747 +karman_re400,sr,320,128.0,velocity,lower_uy,0.2031070590019226 +karman_re400,sr,321,128.4,velocity,upper_ux,0.9103723168373108 +karman_re400,sr,321,128.4,velocity,upper_uy,-0.2156154215335846 +karman_re400,sr,321,128.4,velocity,center_ux,0.9752167463302612 +karman_re400,sr,321,128.4,velocity,center_uy,-0.43962836265563965 +karman_re400,sr,321,128.4,velocity,lower_ux,1.141810655593872 +karman_re400,sr,321,128.4,velocity,lower_uy,0.018691791221499443 +karman_re400,sr,322,128.8,velocity,upper_ux,0.9827264547348022 +karman_re400,sr,322,128.8,velocity,upper_uy,-0.27457085251808167 +karman_re400,sr,322,128.8,velocity,center_ux,0.9771022200584412 +karman_re400,sr,322,128.8,velocity,center_uy,-0.5196201801300049 +karman_re400,sr,322,128.8,velocity,lower_ux,1.0647516250610352 +karman_re400,sr,322,128.8,velocity,lower_uy,-0.3478979170322418 +karman_re400,sr,323,129.2,velocity,upper_ux,1.0525121688842773 +karman_re400,sr,323,129.2,velocity,upper_uy,-0.2896418571472168 +karman_re400,sr,323,129.2,velocity,center_ux,0.9975435733795166 +karman_re400,sr,323,129.2,velocity,center_uy,-0.530860960483551 +karman_re400,sr,323,129.2,velocity,lower_ux,1.0326931476593018 +karman_re400,sr,323,129.2,velocity,lower_uy,-0.38304802775382996 +karman_re400,sr,324,129.6,velocity,upper_ux,1.1140505075454712 +karman_re400,sr,324,129.6,velocity,upper_uy,-0.26121512055397034 +karman_re400,sr,324,129.6,velocity,center_ux,1.0299733877182007 +karman_re400,sr,324,129.6,velocity,center_uy,-0.548283040523529 +karman_re400,sr,324,129.6,velocity,lower_ux,0.9810196161270142 +karman_re400,sr,324,129.6,velocity,lower_uy,-0.3286112844944 +karman_re400,sr,325,130.0,velocity,upper_ux,1.167426586151123 +karman_re400,sr,325,130.0,velocity,upper_uy,-0.21290382742881775 +karman_re400,sr,325,130.0,velocity,center_ux,1.0928133726119995 +karman_re400,sr,325,130.0,velocity,center_uy,-0.5864439606666565 +karman_re400,sr,325,130.0,velocity,lower_ux,0.9292532205581665 +karman_re400,sr,325,130.0,velocity,lower_uy,-0.2450038194656372 +karman_re400,sr,326,130.4,velocity,upper_ux,1.1941232681274414 +karman_re400,sr,326,130.4,velocity,upper_uy,-0.14901790022850037 +karman_re400,sr,326,130.4,velocity,center_ux,1.1141828298568726 +karman_re400,sr,326,130.4,velocity,center_uy,-0.352079838514328 +karman_re400,sr,326,130.4,velocity,lower_ux,0.8907321691513062 +karman_re400,sr,326,130.4,velocity,lower_uy,-0.1288684457540512 +karman_re400,sr,327,130.8,velocity,upper_ux,1.1988897323608398 +karman_re400,sr,327,130.8,velocity,upper_uy,-0.15851949155330658 +karman_re400,sr,327,130.8,velocity,center_ux,1.0481528043746948 +karman_re400,sr,327,130.8,velocity,center_uy,0.1270231306552887 +karman_re400,sr,327,130.8,velocity,lower_ux,0.8745905160903931 +karman_re400,sr,327,130.8,velocity,lower_uy,0.03269175440073013 +karman_re400,sr,328,131.2,velocity,upper_ux,1.1590259075164795 +karman_re400,sr,328,131.2,velocity,upper_uy,-0.21193000674247742 +karman_re400,sr,328,131.2,velocity,center_ux,0.9862614274024963 +karman_re400,sr,328,131.2,velocity,center_uy,0.37853848934173584 +karman_re400,sr,328,131.2,velocity,lower_ux,0.8916549682617188 +karman_re400,sr,328,131.2,velocity,lower_uy,0.19005747139453888 +karman_re400,sr,329,131.6,velocity,upper_ux,1.023281455039978 +karman_re400,sr,329,131.6,velocity,upper_uy,0.2489195466041565 +karman_re400,sr,329,131.6,velocity,center_ux,0.9729875922203064 +karman_re400,sr,329,131.6,velocity,center_uy,0.4946157932281494 +karman_re400,sr,329,131.6,velocity,lower_ux,0.9608533382415771 +karman_re400,sr,329,131.6,velocity,lower_uy,0.2619816064834595 +karman_re400,sr,330,132.0,velocity,upper_ux,1.023264765739441 +karman_re400,sr,330,132.0,velocity,upper_uy,0.42074042558670044 +karman_re400,sr,330,132.0,velocity,center_ux,0.985848605632782 +karman_re400,sr,330,132.0,velocity,center_uy,0.5253862142562866 +karman_re400,sr,330,132.0,velocity,lower_ux,1.0348765850067139 +karman_re400,sr,330,132.0,velocity,lower_uy,0.2916789650917053 +karman_re400,sr,331,132.4,velocity,upper_ux,0.9944506287574768 +karman_re400,sr,331,132.4,velocity,upper_uy,0.37096917629241943 +karman_re400,sr,331,132.4,velocity,center_ux,1.0065898895263672 +karman_re400,sr,331,132.4,velocity,center_uy,0.5415328741073608 +karman_re400,sr,331,132.4,velocity,lower_ux,1.1003355979919434 +karman_re400,sr,331,132.4,velocity,lower_uy,0.2697101831436157 +karman_re400,sr,332,132.8,velocity,upper_ux,0.9525996446609497 +karman_re400,sr,332,132.8,velocity,upper_uy,0.2871956527233124 +karman_re400,sr,332,132.8,velocity,center_ux,1.0502257347106934 +karman_re400,sr,332,132.8,velocity,center_uy,0.572400689125061 +karman_re400,sr,332,132.8,velocity,lower_ux,1.160108208656311 +karman_re400,sr,332,132.8,velocity,lower_uy,0.2266291230916977 +karman_re400,sr,333,133.2,velocity,upper_ux,0.9165374040603638 +karman_re400,sr,333,133.2,velocity,upper_uy,0.17300014197826385 +karman_re400,sr,333,133.2,velocity,center_ux,1.0640842914581299 +karman_re400,sr,333,133.2,velocity,center_uy,0.43130338191986084 +karman_re400,sr,333,133.2,velocity,lower_ux,1.2029114961624146 +karman_re400,sr,333,133.2,velocity,lower_uy,0.15861250460147858 +karman_re400,sr,334,133.6,velocity,upper_ux,0.8926789164543152 +karman_re400,sr,334,133.6,velocity,upper_uy,0.0026489808224141598 +karman_re400,sr,334,133.6,velocity,center_ux,1.0271124839782715 +karman_re400,sr,334,133.6,velocity,center_uy,-0.061623044312000275 +karman_re400,sr,334,133.6,velocity,lower_ux,1.212974190711975 +karman_re400,sr,334,133.6,velocity,lower_uy,0.11330699175596237 +karman_re400,sr,335,134.0,velocity,upper_ux,0.8916336297988892 +karman_re400,sr,335,134.0,velocity,upper_uy,-0.18082726001739502 +karman_re400,sr,335,134.0,velocity,center_ux,0.9823268055915833 +karman_re400,sr,335,134.0,velocity,center_uy,-0.355482280254364 +karman_re400,sr,335,134.0,velocity,lower_ux,1.1938124895095825 +karman_re400,sr,335,134.0,velocity,lower_uy,0.16684074699878693 +karman_re400,sr,336,134.4,velocity,upper_ux,0.9537029266357422 +karman_re400,sr,336,134.4,velocity,upper_uy,-0.2598506808280945 +karman_re400,sr,336,134.4,velocity,center_ux,0.9748314619064331 +karman_re400,sr,336,134.4,velocity,center_uy,-0.4898395836353302 +karman_re400,sr,336,134.4,velocity,lower_ux,1.0143381357192993 +karman_re400,sr,336,134.4,velocity,lower_uy,-0.07770157605409622 +karman_re400,sr,337,134.8,velocity,upper_ux,1.0264580249786377 +karman_re400,sr,337,134.8,velocity,upper_uy,-0.2966587543487549 +karman_re400,sr,337,134.8,velocity,center_ux,0.9872537851333618 +karman_re400,sr,337,134.8,velocity,center_uy,-0.5242603421211243 +karman_re400,sr,337,134.8,velocity,lower_ux,0.9783868193626404 +karman_re400,sr,337,134.8,velocity,lower_uy,-0.3900987505912781 +karman_re400,sr,338,135.2,velocity,upper_ux,1.0919833183288574 +karman_re400,sr,338,135.2,velocity,upper_uy,-0.28495457768440247 +karman_re400,sr,338,135.2,velocity,center_ux,1.0074069499969482 +karman_re400,sr,338,135.2,velocity,center_uy,-0.5327443480491638 +karman_re400,sr,338,135.2,velocity,lower_ux,0.9816524386405945 +karman_re400,sr,338,135.2,velocity,lower_uy,-0.37914398312568665 +karman_re400,sr,339,135.6,velocity,upper_ux,1.15410578250885 +karman_re400,sr,339,135.6,velocity,upper_uy,-0.24722236394882202 +karman_re400,sr,339,135.6,velocity,center_ux,1.0497431755065918 +karman_re400,sr,339,135.6,velocity,center_uy,-0.5486387610435486 +karman_re400,sr,339,135.6,velocity,lower_ux,0.9497244954109192 +karman_re400,sr,339,135.6,velocity,lower_uy,-0.29963448643684387 +karman_re400,sr,340,136.0,velocity,upper_ux,1.2060563564300537 +karman_re400,sr,340,136.0,velocity,upper_uy,-0.18800978362560272 +karman_re400,sr,340,136.0,velocity,center_ux,1.0716668367385864 +karman_re400,sr,340,136.0,velocity,center_uy,-0.5701783895492554 +karman_re400,sr,340,136.0,velocity,lower_ux,0.9127512574195862 +karman_re400,sr,340,136.0,velocity,lower_uy,-0.19325242936611176 +karman_re400,sr,341,136.4,velocity,upper_ux,1.2309255599975586 +karman_re400,sr,341,136.4,velocity,upper_uy,-0.12793771922588348 +karman_re400,sr,341,136.4,velocity,center_ux,1.048704743385315 +karman_re400,sr,341,136.4,velocity,center_uy,-0.07430350035429001 +karman_re400,sr,341,136.4,velocity,lower_ux,0.8890015482902527 +karman_re400,sr,341,136.4,velocity,lower_uy,-0.04304942116141319 +karman_re400,sr,342,136.8,velocity,upper_ux,1.2231135368347168 +karman_re400,sr,342,136.8,velocity,upper_uy,-0.14974728226661682 +karman_re400,sr,342,136.8,velocity,center_ux,0.9878060817718506 +karman_re400,sr,342,136.8,velocity,center_uy,0.3389362394809723 +karman_re400,sr,342,136.8,velocity,lower_ux,0.8797627091407776 +karman_re400,sr,342,136.8,velocity,lower_uy,0.13725432753562927 +karman_re400,sr,343,137.2,velocity,upper_ux,1.0715949535369873 +karman_re400,sr,343,137.2,velocity,upper_uy,0.04514750465750694 +karman_re400,sr,343,137.2,velocity,center_ux,0.9721669554710388 +karman_re400,sr,343,137.2,velocity,center_uy,0.4824202358722687 +karman_re400,sr,343,137.2,velocity,lower_ux,0.9293321371078491 +karman_re400,sr,343,137.2,velocity,lower_uy,0.2372804582118988 +karman_re400,sr,344,137.6,velocity,upper_ux,1.0078383684158325 +karman_re400,sr,344,137.6,velocity,upper_uy,0.36236298084259033 +karman_re400,sr,344,137.6,velocity,center_ux,0.9847546219825745 +karman_re400,sr,344,137.6,velocity,center_uy,0.5308181047439575 +karman_re400,sr,344,137.6,velocity,lower_ux,1.0019012689590454 +karman_re400,sr,344,137.6,velocity,lower_uy,0.28673210740089417 +karman_re400,sr,345,138.0,velocity,upper_ux,1.000577449798584 +karman_re400,sr,345,138.0,velocity,upper_uy,0.3850920498371124 +karman_re400,sr,345,138.0,velocity,center_ux,1.0078589916229248 +karman_re400,sr,345,138.0,velocity,center_uy,0.5326775312423706 +karman_re400,sr,345,138.0,velocity,lower_ux,1.0690679550170898 +karman_re400,sr,345,138.0,velocity,lower_uy,0.2892533242702484 +karman_re400,sr,346,138.4,velocity,upper_ux,0.9633007049560547 +karman_re400,sr,346,138.4,velocity,upper_uy,0.3194151520729065 +karman_re400,sr,346,138.4,velocity,center_ux,1.0466394424438477 +karman_re400,sr,346,138.4,velocity,center_uy,0.5337207913398743 +karman_re400,sr,346,138.4,velocity,lower_ux,1.130629062652588 +karman_re400,sr,346,138.4,velocity,lower_uy,0.2580086588859558 +karman_re400,sr,347,138.8,velocity,upper_ux,0.9179515242576599 +karman_re400,sr,347,138.8,velocity,upper_uy,0.22318261861801147 +karman_re400,sr,347,138.8,velocity,center_ux,1.0958623886108398 +karman_re400,sr,347,138.8,velocity,center_uy,0.591885507106781 +karman_re400,sr,347,138.8,velocity,lower_ux,1.1842156648635864 +karman_re400,sr,347,138.8,velocity,lower_uy,0.20993977785110474 +karman_re400,sr,348,139.2,velocity,upper_ux,0.8853756189346313 +karman_re400,sr,348,139.2,velocity,upper_uy,0.09093594551086426 +karman_re400,sr,348,139.2,velocity,center_ux,1.1107765436172485 +karman_re400,sr,348,139.2,velocity,center_uy,0.2812862694263458 +karman_re400,sr,348,139.2,velocity,lower_ux,1.2201836109161377 +karman_re400,sr,348,139.2,velocity,lower_uy,0.1638803333044052 +karman_re400,sr,349,139.6,velocity,upper_ux,0.8719027042388916 +karman_re400,sr,349,139.6,velocity,upper_uy,-0.08263126015663147 +karman_re400,sr,349,139.6,velocity,center_ux,1.033293604850769 +karman_re400,sr,349,139.6,velocity,center_uy,-0.22575636208057404 +karman_re400,sr,349,139.6,velocity,lower_ux,1.2534949779510498 +karman_re400,sr,349,139.6,velocity,lower_uy,0.21576747298240662 +karman_re400,sr,350,140.0,velocity,upper_ux,0.9052187204360962 +karman_re400,sr,350,140.0,velocity,upper_uy,-0.2112300843000412 +karman_re400,sr,350,140.0,velocity,center_ux,0.9795036911964417 +karman_re400,sr,350,140.0,velocity,center_uy,-0.439622700214386 +karman_re400,sr,350,140.0,velocity,lower_ux,1.1335357427597046 +karman_re400,sr,350,140.0,velocity,lower_uy,-0.0031111417338252068 +karman_re400,sr,351,140.4,velocity,upper_ux,0.9779273867607117 +karman_re400,sr,351,140.4,velocity,upper_uy,-0.272148996591568 +karman_re400,sr,351,140.4,velocity,center_ux,0.9793197512626648 +karman_re400,sr,351,140.4,velocity,center_uy,-0.5212789177894592 +karman_re400,sr,351,140.4,velocity,lower_ux,1.0753827095031738 +karman_re400,sr,351,140.4,velocity,lower_uy,-0.35645171999931335 +karman_re400,sr,352,140.8,velocity,upper_ux,1.049237608909607 +karman_re400,sr,352,140.8,velocity,upper_uy,-0.28765934705734253 +karman_re400,sr,352,140.8,velocity,center_ux,1.0001035928726196 +karman_re400,sr,352,140.8,velocity,center_uy,-0.5332124829292297 +karman_re400,sr,352,140.8,velocity,lower_ux,1.0409928560256958 +karman_re400,sr,352,140.8,velocity,lower_uy,-0.38702142238616943 +karman_re400,sr,353,141.2,velocity,upper_ux,1.1112874746322632 +karman_re400,sr,353,141.2,velocity,upper_uy,-0.2587240934371948 +karman_re400,sr,353,141.2,velocity,center_ux,1.0327258110046387 +karman_re400,sr,353,141.2,velocity,center_uy,-0.5507787466049194 +karman_re400,sr,353,141.2,velocity,lower_ux,0.9885677099227905 +karman_re400,sr,353,141.2,velocity,lower_uy,-0.3313215374946594 +karman_re400,sr,354,141.6,velocity,upper_ux,1.1637904644012451 +karman_re400,sr,354,141.6,velocity,upper_uy,-0.21003226935863495 +karman_re400,sr,354,141.6,velocity,center_ux,1.0963778495788574 +karman_re400,sr,354,141.6,velocity,center_uy,-0.5818907022476196 +karman_re400,sr,354,141.6,velocity,lower_ux,0.9364057779312134 +karman_re400,sr,354,141.6,velocity,lower_uy,-0.24632349610328674 +karman_re400,sr,355,142.0,velocity,upper_ux,1.189049243927002 +karman_re400,sr,355,142.0,velocity,upper_uy,-0.14797739684581757 +karman_re400,sr,355,142.0,velocity,center_ux,1.1161847114562988 +karman_re400,sr,355,142.0,velocity,center_uy,-0.3298967778682709 +karman_re400,sr,355,142.0,velocity,lower_ux,0.8976372480392456 +karman_re400,sr,355,142.0,velocity,lower_uy,-0.1274794340133667 +karman_re400,sr,356,142.4,velocity,upper_ux,1.1945992708206177 +karman_re400,sr,356,142.4,velocity,upper_uy,-0.16476081311702728 +karman_re400,sr,356,142.4,velocity,center_ux,1.0491151809692383 +karman_re400,sr,356,142.4,velocity,center_uy,0.13033373653888702 +karman_re400,sr,356,142.4,velocity,lower_ux,0.8788196444511414 +karman_re400,sr,356,142.4,velocity,lower_uy,0.04082177206873894 +karman_re400,sr,357,142.8,velocity,upper_ux,1.1522499322891235 +karman_re400,sr,357,142.8,velocity,upper_uy,-0.21223986148834229 +karman_re400,sr,357,142.8,velocity,center_ux,0.9898906946182251 +karman_re400,sr,357,142.8,velocity,center_uy,0.37432098388671875 +karman_re400,sr,357,142.8,velocity,lower_ux,0.8968666791915894 +karman_re400,sr,357,142.8,velocity,lower_uy,0.19642814993858337 +karman_re400,sr,358,143.2,velocity,upper_ux,1.0297870635986328 +karman_re400,sr,358,143.2,velocity,upper_uy,0.2712644636631012 +karman_re400,sr,358,143.2,velocity,center_ux,0.9766597747802734 +karman_re400,sr,358,143.2,velocity,center_uy,0.49077677726745605 +karman_re400,sr,358,143.2,velocity,lower_ux,0.966905951499939 +karman_re400,sr,358,143.2,velocity,lower_uy,0.2646922767162323 +karman_re400,sr,359,143.6,velocity,upper_ux,1.0293338298797607 +karman_re400,sr,359,143.6,velocity,upper_uy,0.41824766993522644 +karman_re400,sr,359,143.6,velocity,center_ux,0.9886673092842102 +karman_re400,sr,359,143.6,velocity,center_uy,0.5174798369407654 +karman_re400,sr,359,143.6,velocity,lower_ux,1.0399367809295654 +karman_re400,sr,359,143.6,velocity,lower_uy,0.2918614149093628 +karman_re400,sr,360,144.0,velocity,upper_ux,0.9982241988182068 +karman_re400,sr,360,144.0,velocity,upper_uy,0.36298149824142456 +karman_re400,sr,360,144.0,velocity,center_ux,1.0064698457717896 +karman_re400,sr,360,144.0,velocity,center_uy,0.5332439541816711 +karman_re400,sr,360,144.0,velocity,lower_ux,1.1042332649230957 +karman_re400,sr,360,144.0,velocity,lower_uy,0.26841506361961365 +karman_re400,sr,361,144.4,velocity,upper_ux,0.9566400647163391 +karman_re400,sr,361,144.4,velocity,upper_uy,0.277749627828598 +karman_re400,sr,361,144.4,velocity,center_ux,1.0428522825241089 +karman_re400,sr,361,144.4,velocity,center_uy,0.557599663734436 +karman_re400,sr,361,144.4,velocity,lower_ux,1.163007140159607 +karman_re400,sr,361,144.4,velocity,lower_uy,0.22454139590263367 +karman_re400,sr,362,144.8,velocity,upper_ux,0.9214343428611755 +karman_re400,sr,362,144.8,velocity,upper_uy,0.16189056634902954 +karman_re400,sr,362,144.8,velocity,center_ux,1.0420113801956177 +karman_re400,sr,362,144.8,velocity,center_uy,0.4094749689102173 +karman_re400,sr,362,144.8,velocity,lower_ux,1.2049288749694824 +karman_re400,sr,362,144.8,velocity,lower_uy,0.15527018904685974 +karman_re400,sr,363,145.2,velocity,upper_ux,0.8947553038597107 +karman_re400,sr,363,145.2,velocity,upper_uy,-0.013553841039538383 +karman_re400,sr,363,145.2,velocity,center_ux,1.0087896585464478 +karman_re400,sr,363,145.2,velocity,center_uy,-0.07412464916706085 +karman_re400,sr,363,145.2,velocity,lower_ux,1.2139384746551514 +karman_re400,sr,363,145.2,velocity,lower_uy,0.10611628741025925 +karman_re400,sr,364,145.6,velocity,upper_ux,0.895843505859375 +karman_re400,sr,364,145.6,velocity,upper_uy,-0.1876692771911621 +karman_re400,sr,364,145.6,velocity,center_ux,0.9723978638648987 +karman_re400,sr,364,145.6,velocity,center_uy,-0.35895732045173645 +karman_re400,sr,364,145.6,velocity,lower_ux,1.1949849128723145 +karman_re400,sr,364,145.6,velocity,lower_uy,0.16183823347091675 +karman_re400,sr,365,146.0,velocity,upper_ux,0.9586278796195984 +karman_re400,sr,365,146.0,velocity,upper_uy,-0.26073306798934937 +karman_re400,sr,365,146.0,velocity,center_ux,0.9676949381828308 +karman_re400,sr,365,146.0,velocity,center_uy,-0.49034106731414795 +karman_re400,sr,365,146.0,velocity,lower_ux,1.0119962692260742 +karman_re400,sr,365,146.0,velocity,lower_uy,-0.05090812221169472 +karman_re400,sr,366,146.4,velocity,upper_ux,1.0296462774276733 +karman_re400,sr,366,146.4,velocity,upper_uy,-0.2967533469200134 +karman_re400,sr,366,146.4,velocity,center_ux,0.9813129305839539 +karman_re400,sr,366,146.4,velocity,center_uy,-0.5230548977851868 +karman_re400,sr,366,146.4,velocity,lower_ux,0.9584657549858093 +karman_re400,sr,366,146.4,velocity,lower_uy,-0.3851771950721741 +karman_re400,sr,367,146.8,velocity,upper_ux,1.0939985513687134 +karman_re400,sr,367,146.8,velocity,upper_uy,-0.2848471701145172 +karman_re400,sr,367,146.8,velocity,center_ux,1.0029963254928589 +karman_re400,sr,367,146.8,velocity,center_uy,-0.5336614847183228 +karman_re400,sr,367,146.8,velocity,lower_ux,0.9674133062362671 +karman_re400,sr,367,146.8,velocity,lower_uy,-0.38482552766799927 +karman_re400,sr,368,147.2,velocity,upper_ux,1.1561400890350342 +karman_re400,sr,368,147.2,velocity,upper_uy,-0.24765537679195404 +karman_re400,sr,368,147.2,velocity,center_ux,1.048781156539917 +karman_re400,sr,368,147.2,velocity,center_uy,-0.5517055988311768 +karman_re400,sr,368,147.2,velocity,lower_ux,0.938398540019989 +karman_re400,sr,368,147.2,velocity,lower_uy,-0.30599862337112427 +karman_re400,sr,369,147.6,velocity,upper_ux,1.208243489265442 +karman_re400,sr,369,147.6,velocity,upper_uy,-0.18803240358829498 +karman_re400,sr,369,147.6,velocity,center_ux,1.07427179813385 +karman_re400,sr,369,147.6,velocity,center_uy,-0.5859646797180176 +karman_re400,sr,369,147.6,velocity,lower_ux,0.902862548828125 +karman_re400,sr,369,147.6,velocity,lower_uy,-0.20014655590057373 +karman_re400,sr,370,148.0,velocity,upper_ux,1.2320117950439453 +karman_re400,sr,370,148.0,velocity,upper_uy,-0.1279560923576355 +karman_re400,sr,370,148.0,velocity,center_ux,1.0563740730285645 +karman_re400,sr,370,148.0,velocity,center_uy,-0.08554069697856903 +karman_re400,sr,370,148.0,velocity,lower_ux,0.881834089756012 +karman_re400,sr,370,148.0,velocity,lower_uy,-0.05360008776187897 +karman_re400,sr,371,148.4,velocity,upper_ux,1.2226476669311523 +karman_re400,sr,371,148.4,velocity,upper_uy,-0.14994092285633087 +karman_re400,sr,371,148.4,velocity,center_ux,0.9935152530670166 +karman_re400,sr,371,148.4,velocity,center_uy,0.34310707449913025 +karman_re400,sr,371,148.4,velocity,lower_ux,0.874980092048645 +karman_re400,sr,371,148.4,velocity,lower_uy,0.12682528793811798 +karman_re400,sr,372,148.8,velocity,upper_ux,1.0712954998016357 +karman_re400,sr,372,148.8,velocity,upper_uy,0.04582233354449272 +karman_re400,sr,372,148.8,velocity,center_ux,0.974703311920166 +karman_re400,sr,372,148.8,velocity,center_uy,0.4858394265174866 +karman_re400,sr,372,148.8,velocity,lower_ux,0.9225294589996338 +karman_re400,sr,372,148.8,velocity,lower_uy,0.23485884070396423 +karman_re400,sr,373,149.2,velocity,upper_ux,1.0084214210510254 +karman_re400,sr,373,149.2,velocity,upper_uy,0.36401012539863586 +karman_re400,sr,373,149.2,velocity,center_ux,0.985920250415802 +karman_re400,sr,373,149.2,velocity,center_uy,0.5354989767074585 +karman_re400,sr,373,149.2,velocity,lower_ux,0.996174156665802 +karman_re400,sr,373,149.2,velocity,lower_uy,0.28541260957717896 +karman_re400,sr,374,149.6,velocity,upper_ux,1.0028077363967896 +karman_re400,sr,374,149.6,velocity,upper_uy,0.3890421986579895 +karman_re400,sr,374,149.6,velocity,center_ux,1.009239912033081 +karman_re400,sr,374,149.6,velocity,center_uy,0.5375577807426453 +karman_re400,sr,374,149.6,velocity,lower_ux,1.0650279521942139 +karman_re400,sr,374,149.6,velocity,lower_uy,0.2889098823070526 +karman_re400,sr,375,150.0,velocity,upper_ux,0.9667215943336487 +karman_re400,sr,375,150.0,velocity,upper_uy,0.3234151005744934 +karman_re400,sr,375,150.0,velocity,center_ux,1.0497111082077026 +karman_re400,sr,375,150.0,velocity,center_uy,0.5392258167266846 +karman_re400,sr,375,150.0,velocity,lower_ux,1.1274545192718506 +karman_re400,sr,375,150.0,velocity,lower_uy,0.25720319151878357 +karman_re400,sr,376,150.4,velocity,upper_ux,0.9217204451560974 +karman_re400,sr,376,150.4,velocity,upper_uy,0.22644838690757751 +karman_re400,sr,376,150.4,velocity,center_ux,1.1039680242538452 +karman_re400,sr,376,150.4,velocity,center_uy,0.5920451283454895 +karman_re400,sr,376,150.4,velocity,lower_ux,1.1810717582702637 +karman_re400,sr,376,150.4,velocity,lower_uy,0.20934338867664337 +karman_re400,sr,377,150.8,velocity,upper_ux,0.8888891339302063 +karman_re400,sr,377,150.8,velocity,upper_uy,0.09158811718225479 +karman_re400,sr,377,150.8,velocity,center_ux,1.1165211200714111 +karman_re400,sr,377,150.8,velocity,center_uy,0.2698438763618469 +karman_re400,sr,377,150.8,velocity,lower_ux,1.217581033706665 +karman_re400,sr,377,150.8,velocity,lower_uy,0.1656275987625122 +karman_re400,sr,378,151.2,velocity,upper_ux,0.8744019865989685 +karman_re400,sr,378,151.2,velocity,upper_uy,-0.08558979630470276 +karman_re400,sr,378,151.2,velocity,center_ux,1.0345957279205322 +karman_re400,sr,378,151.2,velocity,center_uy,-0.22314853966236115 +karman_re400,sr,378,151.2,velocity,lower_ux,1.2521088123321533 +karman_re400,sr,378,151.2,velocity,lower_uy,0.22224050760269165 +karman_re400,sr,379,151.6,velocity,upper_ux,0.9083312749862671 +karman_re400,sr,379,151.6,velocity,upper_uy,-0.21360483765602112 +karman_re400,sr,379,151.6,velocity,center_ux,0.9814064502716064 +karman_re400,sr,379,151.6,velocity,center_uy,-0.4356401562690735 +karman_re400,sr,379,151.6,velocity,lower_ux,1.1313467025756836 +karman_re400,sr,379,151.6,velocity,lower_uy,-0.02085990458726883 +karman_re400,sr,380,152.0,velocity,upper_ux,0.9816694855690002 +karman_re400,sr,380,152.0,velocity,upper_uy,-0.2732834219932556 +karman_re400,sr,380,152.0,velocity,center_ux,0.9818309545516968 +karman_re400,sr,380,152.0,velocity,center_uy,-0.5184904932975769 +karman_re400,sr,380,152.0,velocity,lower_ux,1.081528902053833 +karman_re400,sr,380,152.0,velocity,lower_uy,-0.3609314262866974 +karman_re400,sr,381,152.4,velocity,upper_ux,1.0527821779251099 +karman_re400,sr,381,152.4,velocity,upper_uy,-0.2868274748325348 +karman_re400,sr,381,152.4,velocity,center_ux,1.0019890069961548 +karman_re400,sr,381,152.4,velocity,center_uy,-0.529237687587738 +karman_re400,sr,381,152.4,velocity,lower_ux,1.044080376625061 +karman_re400,sr,381,152.4,velocity,lower_uy,-0.38284537196159363 +karman_re400,sr,382,152.8,velocity,upper_ux,1.1146372556686401 +karman_re400,sr,382,152.8,velocity,upper_uy,-0.2566850781440735 +karman_re400,sr,382,152.8,velocity,center_ux,1.0318013429641724 +karman_re400,sr,382,152.8,velocity,center_uy,-0.5473806858062744 +karman_re400,sr,382,152.8,velocity,lower_ux,0.9910262227058411 +karman_re400,sr,382,152.8,velocity,lower_uy,-0.32534322142601013 +karman_re400,sr,383,153.2,velocity,upper_ux,1.1668753623962402 +karman_re400,sr,383,153.2,velocity,upper_uy,-0.20653629302978516 +karman_re400,sr,383,153.2,velocity,center_ux,1.0865777730941772 +karman_re400,sr,383,153.2,velocity,center_uy,-0.5722463726997375 +karman_re400,sr,383,153.2,velocity,lower_ux,0.9393037557601929 +karman_re400,sr,383,153.2,velocity,lower_uy,-0.23938655853271484 +karman_re400,sr,384,153.6,velocity,upper_ux,1.1918284893035889 +karman_re400,sr,384,153.6,velocity,upper_uy,-0.14186251163482666 +karman_re400,sr,384,153.6,velocity,center_ux,1.0970768928527832 +karman_re400,sr,384,153.6,velocity,center_uy,-0.30256935954093933 +karman_re400,sr,384,153.6,velocity,lower_ux,0.9014965295791626 +karman_re400,sr,384,153.6,velocity,lower_uy,-0.11872777342796326 +karman_re400,sr,385,154.0,velocity,upper_ux,1.198158621788025 +karman_re400,sr,385,154.0,velocity,upper_uy,-0.15661126375198364 +karman_re400,sr,385,154.0,velocity,center_ux,1.0356941223144531 +karman_re400,sr,385,154.0,velocity,center_uy,0.1459895819425583 +karman_re400,sr,385,154.0,velocity,lower_ux,0.8810629844665527 +karman_re400,sr,385,154.0,velocity,lower_uy,0.05426926538348198 +karman_re400,sr,386,154.4,velocity,upper_ux,1.1581370830535889 +karman_re400,sr,386,154.4,velocity,upper_uy,-0.2104673534631729 +karman_re400,sr,386,154.4,velocity,center_ux,0.9843246340751648 +karman_re400,sr,386,154.4,velocity,center_uy,0.3807835876941681 +karman_re400,sr,386,154.4,velocity,lower_ux,0.901797354221344 +karman_re400,sr,386,154.4,velocity,lower_uy,0.20315536856651306 +karman_re400,sr,387,154.8,velocity,upper_ux,1.0215659141540527 +karman_re400,sr,387,154.8,velocity,upper_uy,0.26099738478660583 +karman_re400,sr,387,154.8,velocity,center_ux,0.9738889932632446 +karman_re400,sr,387,154.8,velocity,center_uy,0.49400752782821655 +karman_re400,sr,387,154.8,velocity,lower_ux,0.9721413254737854 +karman_re400,sr,387,154.8,velocity,lower_uy,0.26765403151512146 +karman_re400,sr,388,155.2,velocity,upper_ux,1.0184880495071411 +karman_re400,sr,388,155.2,velocity,upper_uy,0.41510260105133057 +karman_re400,sr,388,155.2,velocity,center_ux,0.9866700172424316 +karman_re400,sr,388,155.2,velocity,center_uy,0.5179768204689026 +karman_re400,sr,388,155.2,velocity,lower_ux,1.0440524816513062 +karman_re400,sr,388,155.2,velocity,lower_uy,0.2930968403816223 +karman_re400,sr,389,155.6,velocity,upper_ux,0.9883849620819092 +karman_re400,sr,389,155.6,velocity,upper_uy,0.36027809977531433 +karman_re400,sr,389,155.6,velocity,center_ux,1.0054776668548584 +karman_re400,sr,389,155.6,velocity,center_uy,0.5354375243186951 +karman_re400,sr,389,155.6,velocity,lower_ux,1.1077184677124023 +karman_re400,sr,389,155.6,velocity,lower_uy,0.2691434323787689 +karman_re400,sr,390,156.0,velocity,upper_ux,0.9464019536972046 +karman_re400,sr,390,156.0,velocity,upper_uy,0.27538350224494934 +karman_re400,sr,390,156.0,velocity,center_ux,1.0441254377365112 +karman_re400,sr,390,156.0,velocity,center_uy,0.5660185813903809 +karman_re400,sr,390,156.0,velocity,lower_ux,1.1669750213623047 +karman_re400,sr,390,156.0,velocity,lower_uy,0.22494648396968842 +karman_re400,sr,391,156.4,velocity,upper_ux,0.9114951491355896 +karman_re400,sr,391,156.4,velocity,upper_uy,0.1610608696937561 +karman_re400,sr,391,156.4,velocity,center_ux,1.04575777053833 +karman_re400,sr,391,156.4,velocity,center_uy,0.4217207431793213 +karman_re400,sr,391,156.4,velocity,lower_ux,1.2100497484207153 +karman_re400,sr,391,156.4,velocity,lower_uy,0.15315498411655426 +karman_re400,sr,392,156.8,velocity,upper_ux,0.8888083696365356 +karman_re400,sr,392,156.8,velocity,upper_uy,-0.006967552471905947 +karman_re400,sr,392,156.8,velocity,center_ux,1.0118277072906494 +karman_re400,sr,392,156.8,velocity,center_uy,-0.08114483952522278 +karman_re400,sr,392,156.8,velocity,lower_ux,1.2181782722473145 +karman_re400,sr,392,156.8,velocity,lower_uy,0.09949444979429245 +karman_re400,sr,393,157.2,velocity,upper_ux,0.8906792998313904 +karman_re400,sr,393,157.2,velocity,upper_uy,-0.18281486630439758 +karman_re400,sr,393,157.2,velocity,center_ux,0.9731298089027405 +karman_re400,sr,393,157.2,velocity,center_uy,-0.36795249581336975 +karman_re400,sr,393,157.2,velocity,lower_ux,1.1988458633422852 +karman_re400,sr,393,157.2,velocity,lower_uy,0.1529974490404129 +karman_re400,sr,394,157.6,velocity,upper_ux,0.953360915184021 +karman_re400,sr,394,157.6,velocity,upper_uy,-0.25981205701828003 +karman_re400,sr,394,157.6,velocity,center_ux,0.9680148363113403 +karman_re400,sr,394,157.6,velocity,center_uy,-0.49553582072257996 +karman_re400,sr,394,157.6,velocity,lower_ux,1.0161082744598389 +karman_re400,sr,394,157.6,velocity,lower_uy,-0.03667248412966728 +karman_re400,sr,395,158.0,velocity,upper_ux,1.025460958480835 +karman_re400,sr,395,158.0,velocity,upper_uy,-0.2969930171966553 +karman_re400,sr,395,158.0,velocity,center_ux,0.9810916781425476 +karman_re400,sr,395,158.0,velocity,center_uy,-0.5295712351799011 +karman_re400,sr,395,158.0,velocity,lower_ux,0.947806179523468 +karman_re400,sr,395,158.0,velocity,lower_uy,-0.3785078823566437 +karman_re400,sr,396,158.4,velocity,upper_ux,1.0911167860031128 +karman_re400,sr,396,158.4,velocity,upper_uy,-0.28561270236968994 +karman_re400,sr,396,158.4,velocity,center_ux,1.0037461519241333 +karman_re400,sr,396,158.4,velocity,center_uy,-0.5399977564811707 +karman_re400,sr,396,158.4,velocity,lower_ux,0.960631251335144 +karman_re400,sr,396,158.4,velocity,lower_uy,-0.38850197196006775 +karman_re400,sr,397,158.8,velocity,upper_ux,1.1541732549667358 +karman_re400,sr,397,158.8,velocity,upper_uy,-0.2483549565076828 +karman_re400,sr,397,158.8,velocity,center_ux,1.053109049797058 +karman_re400,sr,397,158.8,velocity,center_uy,-0.5598424673080444 +karman_re400,sr,397,158.8,velocity,lower_ux,0.933820903301239 +karman_re400,sr,397,158.8,velocity,lower_uy,-0.3119385242462158 +karman_re400,sr,398,159.2,velocity,upper_ux,1.205976128578186 +karman_re400,sr,398,159.2,velocity,upper_uy,-0.18873752653598785 +karman_re400,sr,398,159.2,velocity,center_ux,1.0852665901184082 +karman_re400,sr,398,159.2,velocity,center_uy,-0.5907645225524902 +karman_re400,sr,398,159.2,velocity,lower_ux,0.8986993432044983 +karman_re400,sr,398,159.2,velocity,lower_uy,-0.20673868060112 +karman_re400,sr,399,159.6,velocity,upper_ux,1.2287039756774902 +karman_re400,sr,399,159.6,velocity,upper_uy,-0.1316612958908081 +karman_re400,sr,399,159.6,velocity,center_ux,1.0686924457550049 +karman_re400,sr,399,159.6,velocity,center_uy,-0.0864000916481018 +karman_re400,sr,399,159.6,velocity,lower_ux,0.8789725303649902 +karman_re400,sr,399,159.6,velocity,lower_uy,-0.06041792407631874 +karman_re400,sr,0,0.0,force,front_fx,0.0006674169562757015 +karman_re400,sr,0,0.0,force,front_fy,-0.006253535859286785 +karman_re400,sr,0,0.0,force,upper_fx,0.006877486128360033 +karman_re400,sr,0,0.0,force,upper_fy,0.006069883704185486 +karman_re400,sr,0,0.0,force,lower_fx,-0.010126547887921333 +karman_re400,sr,0,0.0,force,lower_fy,-0.003103755647316575 +karman_re400,sr,1,0.4,force,front_fx,0.005315686576068401 +karman_re400,sr,1,0.4,force,front_fy,-0.0048168497160077095 +karman_re400,sr,1,0.4,force,upper_fx,0.0061454991810023785 +karman_re400,sr,1,0.4,force,upper_fy,0.005959687754511833 +karman_re400,sr,1,0.4,force,lower_fx,-0.01126051414757967 +karman_re400,sr,1,0.4,force,lower_fy,-0.0021027035545557737 +karman_re400,sr,2,0.8,force,front_fx,0.007009761407971382 +karman_re400,sr,2,0.8,force,front_fy,-0.0019999737851321697 +karman_re400,sr,2,0.8,force,upper_fx,0.005199515260756016 +karman_re400,sr,2,0.8,force,upper_fy,0.005021265242248774 +karman_re400,sr,2,0.8,force,lower_fx,-0.012555110268294811 +karman_re400,sr,2,0.8,force,lower_fy,0.00022085616365075111 +karman_re400,sr,3,1.2,force,front_fx,0.0046391962096095085 +karman_re400,sr,3,1.2,force,front_fy,0.0020799378398805857 +karman_re400,sr,3,1.2,force,upper_fx,0.003776660654693842 +karman_re400,sr,3,1.2,force,upper_fy,0.004481849726289511 +karman_re400,sr,3,1.2,force,lower_fx,-0.012467934750020504 +karman_re400,sr,3,1.2,force,lower_fy,-0.0006469290237873793 +karman_re400,sr,4,1.6,force,front_fx,0.0014589305501431227 +karman_re400,sr,4,1.6,force,front_fy,0.004812469705939293 +karman_re400,sr,4,1.6,force,upper_fx,0.0024098330177366734 +karman_re400,sr,4,1.6,force,upper_fy,0.004490808118134737 +karman_re400,sr,4,1.6,force,lower_fx,-0.009547015652060509 +karman_re400,sr,4,1.6,force,lower_fy,-0.004433780908584595 +karman_re400,sr,5,2.0,force,front_fx,-0.0020968406461179256 +karman_re400,sr,5,2.0,force,front_fy,0.006045269779860973 +karman_re400,sr,5,2.0,force,upper_fx,0.001039339927956462 +karman_re400,sr,5,2.0,force,upper_fy,0.005414044950157404 +karman_re400,sr,5,2.0,force,lower_fx,-0.003640652634203434 +karman_re400,sr,5,2.0,force,lower_fy,-0.00820476096123457 +karman_re400,sr,6,2.4,force,front_fx,-0.003932177554816008 +karman_re400,sr,6,2.4,force,front_fy,0.006475095637142658 +karman_re400,sr,6,2.4,force,upper_fx,-0.0011427829740568995 +karman_re400,sr,6,2.4,force,upper_fy,0.0062287915498018265 +karman_re400,sr,6,2.4,force,lower_fx,0.0022746040485799313 +karman_re400,sr,6,2.4,force,lower_fy,-0.008590354584157467 +karman_re400,sr,7,2.8,force,front_fx,-0.0027124867774546146 +karman_re400,sr,7,2.8,force,front_fy,0.006297083105891943 +karman_re400,sr,7,2.8,force,upper_fx,-0.002721550175920129 +karman_re400,sr,7,2.8,force,upper_fy,0.006770354695618153 +karman_re400,sr,7,2.8,force,lower_fx,0.005210023373365402 +karman_re400,sr,7,2.8,force,lower_fy,-0.007752206176519394 +karman_re400,sr,8,3.2,force,front_fx,0.0010083423694595695 +karman_re400,sr,8,3.2,force,front_fy,0.004587501287460327 +karman_re400,sr,8,3.2,force,upper_fx,-0.004325035493820906 +karman_re400,sr,8,3.2,force,upper_fy,0.004540414549410343 +karman_re400,sr,8,3.2,force,lower_fx,0.006242954637855291 +karman_re400,sr,8,3.2,force,lower_fy,-0.008202732540667057 +karman_re400,sr,9,3.6,force,front_fx,0.003890358144417405 +karman_re400,sr,9,3.6,force,front_fy,0.000551929697394371 +karman_re400,sr,9,3.6,force,upper_fx,-0.008208218030631542 +karman_re400,sr,9,3.6,force,upper_fy,0.0013513804879039526 +karman_re400,sr,9,3.6,force,lower_fx,0.006112453993409872 +karman_re400,sr,9,3.6,force,lower_fy,-0.007936283946037292 +karman_re400,sr,10,4.0,force,front_fx,0.0029938772786408663 +karman_re400,sr,10,4.0,force,front_fy,-0.0024033028166741133 +karman_re400,sr,10,4.0,force,upper_fx,-0.01169696357101202 +karman_re400,sr,10,4.0,force,upper_fy,0.002448185347020626 +karman_re400,sr,10,4.0,force,lower_fx,0.004654791671782732 +karman_re400,sr,10,4.0,force,lower_fy,-0.00624974025413394 +karman_re400,sr,11,4.4,force,front_fx,0.0001479566126363352 +karman_re400,sr,11,4.4,force,front_fy,-0.004968202672898769 +karman_re400,sr,11,4.4,force,upper_fx,-0.009549910202622414 +karman_re400,sr,11,4.4,force,upper_fy,0.007417270913720131 +karman_re400,sr,11,4.4,force,lower_fx,0.0031401794403791428 +karman_re400,sr,11,4.4,force,lower_fy,-0.005885797552764416 +karman_re400,sr,12,4.8,force,front_fx,-0.0027148716617375612 +karman_re400,sr,12,4.8,force,front_fy,-0.005573483649641275 +karman_re400,sr,12,4.8,force,upper_fx,-0.0034286121372133493 +karman_re400,sr,12,4.8,force,upper_fy,0.0108870267868042 +karman_re400,sr,12,4.8,force,lower_fx,0.0012570807011798024 +karman_re400,sr,12,4.8,force,lower_fy,-0.006392063107341528 +karman_re400,sr,13,5.2,force,front_fx,-0.00416145334020257 +karman_re400,sr,13,5.2,force,front_fy,-0.006227787118405104 +karman_re400,sr,13,5.2,force,upper_fx,0.002586778486147523 +karman_re400,sr,13,5.2,force,upper_fy,0.009700690396130085 +karman_re400,sr,13,5.2,force,lower_fx,-0.0015885899774730206 +karman_re400,sr,13,5.2,force,lower_fy,-0.007644525729119778 +karman_re400,sr,14,5.6,force,front_fx,-0.003187867347151041 +karman_re400,sr,14,5.6,force,front_fy,-0.006170513108372688 +karman_re400,sr,14,5.6,force,upper_fx,0.004692049231380224 +karman_re400,sr,14,5.6,force,upper_fy,0.007632989436388016 +karman_re400,sr,14,5.6,force,lower_fx,-0.0022731160279363394 +karman_re400,sr,14,5.6,force,lower_fy,-0.008115418255329132 +karman_re400,sr,15,6.0,force,front_fx,0.0002713029971346259 +karman_re400,sr,15,6.0,force,front_fy,-0.005365109536796808 +karman_re400,sr,15,6.0,force,upper_fx,0.004870423581451178 +karman_re400,sr,15,6.0,force,upper_fy,0.007978169247508049 +karman_re400,sr,15,6.0,force,lower_fx,-0.002570115029811859 +karman_re400,sr,15,6.0,force,lower_fy,-0.004822697956115007 +karman_re400,sr,16,6.4,force,front_fx,0.0028152463492006063 +karman_re400,sr,16,6.4,force,front_fy,-0.0021293293684720993 +karman_re400,sr,16,6.4,force,upper_fx,0.004942199680954218 +karman_re400,sr,16,6.4,force,upper_fy,0.007930037565529346 +karman_re400,sr,16,6.4,force,lower_fx,-0.0048239268362522125 +karman_re400,sr,16,6.4,force,lower_fy,-0.00042369571747258306 +karman_re400,sr,17,6.8,force,front_fx,0.0030777358915656805 +karman_re400,sr,17,6.8,force,front_fy,0.0014690213138237596 +karman_re400,sr,17,6.8,force,upper_fx,0.00408113282173872 +karman_re400,sr,17,6.8,force,upper_fy,0.006342352833598852 +karman_re400,sr,17,6.8,force,lower_fx,-0.009086727164685726 +karman_re400,sr,17,6.8,force,lower_fy,-4.1634753870312124e-05 +karman_re400,sr,18,7.2,force,front_fx,0.0010376193094998598 +karman_re400,sr,18,7.2,force,front_fy,0.003878106130287051 +karman_re400,sr,18,7.2,force,upper_fx,0.0032998702954500914 +karman_re400,sr,18,7.2,force,upper_fy,0.005100858863443136 +karman_re400,sr,18,7.2,force,lower_fx,-0.008579493500292301 +karman_re400,sr,18,7.2,force,lower_fy,-0.005219148006290197 +karman_re400,sr,19,7.6,force,front_fx,-0.0017008964205160737 +karman_re400,sr,19,7.6,force,front_fy,0.0051628160290420055 +karman_re400,sr,19,7.6,force,upper_fx,0.0015680764336138964 +karman_re400,sr,19,7.6,force,upper_fy,0.005455481819808483 +karman_re400,sr,19,7.6,force,lower_fx,-0.0028277665842324495 +karman_re400,sr,19,7.6,force,lower_fy,-0.008860780857503414 +karman_re400,sr,20,8.0,force,front_fx,-0.0035161792766302824 +karman_re400,sr,20,8.0,force,front_fy,0.006396629847586155 +karman_re400,sr,20,8.0,force,upper_fx,-0.0017096995143219829 +karman_re400,sr,20,8.0,force,upper_fy,0.006213741842657328 +karman_re400,sr,20,8.0,force,lower_fx,0.0023106078151613474 +karman_re400,sr,20,8.0,force,lower_fy,-0.008864771574735641 +karman_re400,sr,21,8.4,force,front_fx,-0.0027615707367658615 +karman_re400,sr,21,8.4,force,front_fy,0.006757641211152077 +karman_re400,sr,21,8.4,force,upper_fx,-0.0030670163687318563 +karman_re400,sr,21,8.4,force,upper_fy,0.007107793819159269 +karman_re400,sr,21,8.4,force,lower_fx,0.005259000230580568 +karman_re400,sr,21,8.4,force,lower_fy,-0.0077222175896167755 +karman_re400,sr,22,8.8,force,front_fx,0.0005118271219544113 +karman_re400,sr,22,8.8,force,front_fy,0.0061407433822751045 +karman_re400,sr,22,8.8,force,upper_fx,-0.003247516695410013 +karman_re400,sr,22,8.8,force,upper_fy,0.005656316410750151 +karman_re400,sr,22,8.8,force,lower_fx,0.006173870526254177 +karman_re400,sr,22,8.8,force,lower_fy,-0.0075458926148712635 +karman_re400,sr,23,9.2,force,front_fx,0.0041221934370696545 +karman_re400,sr,23,9.2,force,front_fy,0.002726525068283081 +karman_re400,sr,23,9.2,force,upper_fx,-0.006203682627528906 +karman_re400,sr,23,9.2,force,upper_fy,0.0016499216435477138 +karman_re400,sr,23,9.2,force,lower_fx,0.006093610543757677 +karman_re400,sr,23,9.2,force,lower_fy,-0.007580611854791641 +karman_re400,sr,24,9.6,force,front_fx,0.004054442048072815 +karman_re400,sr,24,9.6,force,front_fy,-0.00012939999578520656 +karman_re400,sr,24,9.6,force,upper_fx,-0.010874968953430653 +karman_re400,sr,24,9.6,force,upper_fy,0.0008179008727893233 +karman_re400,sr,24,9.6,force,lower_fx,0.005029904656112194 +karman_re400,sr,24,9.6,force,lower_fy,-0.00605973182246089 +karman_re400,sr,25,10.0,force,front_fx,0.0017154552042484283 +karman_re400,sr,25,10.0,force,front_fy,-0.0035407934337854385 +karman_re400,sr,25,10.0,force,upper_fx,-0.010356975719332695 +karman_re400,sr,25,10.0,force,upper_fy,0.0054787807166576385 +karman_re400,sr,25,10.0,force,lower_fx,0.0031877404544502497 +karman_re400,sr,25,10.0,force,lower_fy,-0.005571356974542141 +karman_re400,sr,26,10.4,force,front_fx,-0.000915347773116082 +karman_re400,sr,26,10.4,force,front_fy,-0.004989331122487783 +karman_re400,sr,26,10.4,force,upper_fx,-0.005083167925477028 +karman_re400,sr,26,10.4,force,upper_fy,0.00790820736438036 +karman_re400,sr,26,10.4,force,lower_fx,0.0017985925078392029 +karman_re400,sr,26,10.4,force,lower_fy,-0.005554852541536093 +karman_re400,sr,27,10.8,force,front_fx,-0.0033487447071820498 +karman_re400,sr,27,10.8,force,front_fy,-0.006174532230943441 +karman_re400,sr,27,10.8,force,upper_fx,-0.0005073121865279973 +karman_re400,sr,27,10.8,force,upper_fy,0.00918158795684576 +karman_re400,sr,27,10.8,force,lower_fx,-0.000668681284878403 +karman_re400,sr,27,10.8,force,lower_fy,-0.006398563273251057 +karman_re400,sr,28,11.2,force,front_fx,-0.003599282819777727 +karman_re400,sr,28,11.2,force,front_fy,-0.006194236688315868 +karman_re400,sr,28,11.2,force,upper_fx,0.003522975370287895 +karman_re400,sr,28,11.2,force,upper_fy,0.008569568395614624 +karman_re400,sr,28,11.2,force,lower_fx,-0.002425561659038067 +karman_re400,sr,28,11.2,force,lower_fy,-0.007213203236460686 +karman_re400,sr,29,11.6,force,front_fx,-0.0009606907260604203 +karman_re400,sr,29,11.6,force,front_fy,-0.0058628227561712265 +karman_re400,sr,29,11.6,force,upper_fx,0.005225669592618942 +karman_re400,sr,29,11.6,force,upper_fy,0.008117429912090302 +karman_re400,sr,29,11.6,force,lower_fx,-0.003233495634049177 +karman_re400,sr,29,11.6,force,lower_fy,-0.005986149422824383 +karman_re400,sr,30,12.0,force,front_fx,0.002774219261482358 +karman_re400,sr,30,12.0,force,front_fy,-0.003471560776233673 +karman_re400,sr,30,12.0,force,upper_fx,0.005655938293784857 +karman_re400,sr,30,12.0,force,upper_fy,0.007787647657096386 +karman_re400,sr,30,12.0,force,lower_fx,-0.005535544827580452 +karman_re400,sr,30,12.0,force,lower_fy,-0.002508898265659809 +karman_re400,sr,31,12.4,force,front_fx,0.004125458654016256 +karman_re400,sr,31,12.4,force,front_fy,0.00023646645422559232 +karman_re400,sr,31,12.4,force,upper_fx,0.0045672268606722355 +karman_re400,sr,31,12.4,force,upper_fy,0.006768528372049332 +karman_re400,sr,31,12.4,force,lower_fx,-0.009400072507560253 +karman_re400,sr,31,12.4,force,lower_fy,-0.0008640353917144239 +karman_re400,sr,32,12.8,force,front_fx,0.001793215167708695 +karman_re400,sr,32,12.8,force,front_fy,0.002720628399401903 +karman_re400,sr,32,12.8,force,upper_fx,0.003804033389315009 +karman_re400,sr,32,12.8,force,upper_fy,0.00566866435110569 +karman_re400,sr,32,12.8,force,lower_fx,-0.009934744797647 +karman_re400,sr,32,12.8,force,lower_fy,-0.004873729310929775 +karman_re400,sr,33,13.2,force,front_fx,-0.0006655025645159185 +karman_re400,sr,33,13.2,force,front_fy,0.004874890670180321 +karman_re400,sr,33,13.2,force,upper_fx,0.002316233469173312 +karman_re400,sr,33,13.2,force,upper_fy,0.005710232071578503 +karman_re400,sr,33,13.2,force,lower_fx,-0.00433403579518199 +karman_re400,sr,33,13.2,force,lower_fy,-0.008017048239707947 +karman_re400,sr,34,13.6,force,front_fx,-0.0028616043273359537 +karman_re400,sr,34,13.6,force,front_fy,0.005907251965254545 +karman_re400,sr,34,13.6,force,upper_fx,-0.00043665722478181124 +karman_re400,sr,34,13.6,force,upper_fy,0.006416612770408392 +karman_re400,sr,34,13.6,force,lower_fx,-0.00011056366201955825 +karman_re400,sr,34,13.6,force,lower_fy,-0.0085436487570405 +karman_re400,sr,35,14.0,force,front_fx,-0.0036256220191717148 +karman_re400,sr,35,14.0,force,front_fy,0.0060801757499575615 +karman_re400,sr,35,14.0,force,upper_fx,-0.0026148753240704536 +karman_re400,sr,35,14.0,force,upper_fy,0.0070546288043260574 +karman_re400,sr,35,14.0,force,lower_fx,0.0035726604983210564 +karman_re400,sr,35,14.0,force,lower_fy,-0.008691464550793171 +karman_re400,sr,36,14.4,force,front_fx,-0.0012614740990102291 +karman_re400,sr,36,14.4,force,front_fy,0.0059291161596775055 +karman_re400,sr,36,14.4,force,upper_fx,-0.003613146487623453 +karman_re400,sr,36,14.4,force,upper_fy,0.0063274274580180645 +karman_re400,sr,36,14.4,force,lower_fx,0.005944908130913973 +karman_re400,sr,36,14.4,force,lower_fy,-0.008340112864971161 +karman_re400,sr,37,14.8,force,front_fx,0.002893791999667883 +karman_re400,sr,37,14.8,force,front_fy,0.004189176484942436 +karman_re400,sr,37,14.8,force,upper_fx,-0.006323104724287987 +karman_re400,sr,37,14.8,force,upper_fy,0.0033785284031182528 +karman_re400,sr,37,14.8,force,lower_fx,0.00641993572935462 +karman_re400,sr,37,14.8,force,lower_fy,-0.00773728359490633 +karman_re400,sr,38,15.2,force,front_fx,0.004636556375771761 +karman_re400,sr,38,15.2,force,front_fy,0.001311693456955254 +karman_re400,sr,38,15.2,force,upper_fx,-0.010117776691913605 +karman_re400,sr,38,15.2,force,upper_fy,0.0014947524759918451 +karman_re400,sr,38,15.2,force,lower_fx,0.005557221360504627 +karman_re400,sr,38,15.2,force,lower_fy,-0.006645864807069302 +karman_re400,sr,39,15.6,force,front_fx,0.002895894693210721 +karman_re400,sr,39,15.6,force,front_fy,-0.0017400042852386832 +karman_re400,sr,39,15.6,force,upper_fx,-0.010684162378311157 +karman_re400,sr,39,15.6,force,upper_fy,0.004180112853646278 +karman_re400,sr,39,15.6,force,lower_fx,0.0042744530364871025 +karman_re400,sr,39,15.6,force,lower_fy,-0.005841064266860485 +karman_re400,sr,40,16.0,force,front_fx,0.0006323453853838146 +karman_re400,sr,40,16.0,force,front_fy,-0.004093671217560768 +karman_re400,sr,40,16.0,force,upper_fx,-0.00587438652291894 +karman_re400,sr,40,16.0,force,upper_fy,0.006187917664647102 +karman_re400,sr,40,16.0,force,lower_fx,0.0027437133248895407 +karman_re400,sr,40,16.0,force,lower_fy,-0.005551626905798912 +karman_re400,sr,41,16.4,force,front_fx,-0.0021413888316601515 +karman_re400,sr,41,16.4,force,front_fy,-0.005533277522772551 +karman_re400,sr,41,16.4,force,upper_fx,-0.0017793192528188229 +karman_re400,sr,41,16.4,force,upper_fy,0.00699171656742692 +karman_re400,sr,41,16.4,force,lower_fx,0.0005907701561227441 +karman_re400,sr,41,16.4,force,lower_fy,-0.006065764464437962 +karman_re400,sr,42,16.8,force,front_fx,-0.003862502984702587 +karman_re400,sr,42,16.8,force,front_fy,-0.006084887310862541 +karman_re400,sr,42,16.8,force,upper_fx,0.0024073536042124033 +karman_re400,sr,42,16.8,force,upper_fy,0.007808869704604149 +karman_re400,sr,42,16.8,force,lower_fx,-0.001643879571929574 +karman_re400,sr,42,16.8,force,lower_fy,-0.006856823340058327 +karman_re400,sr,43,17.2,force,front_fx,-0.002415194408968091 +karman_re400,sr,43,17.2,force,front_fy,-0.005981951951980591 +karman_re400,sr,43,17.2,force,upper_fx,0.005619049537926912 +karman_re400,sr,43,17.2,force,upper_fy,0.007516980171203613 +karman_re400,sr,43,17.2,force,lower_fx,-0.0029587727040052414 +karman_re400,sr,43,17.2,force,lower_fy,-0.006560033652931452 +karman_re400,sr,44,17.6,force,front_fx,0.0013197403168305755 +karman_re400,sr,44,17.6,force,front_fy,-0.005143516231328249 +karman_re400,sr,44,17.6,force,upper_fx,0.006991247646510601 +karman_re400,sr,44,17.6,force,upper_fy,0.007078398950397968 +karman_re400,sr,44,17.6,force,lower_fx,-0.005187361966818571 +karman_re400,sr,44,17.6,force,lower_fy,-0.0042994143441319466 +karman_re400,sr,45,18.0,force,front_fx,0.004367432091385126 +karman_re400,sr,45,18.0,force,front_fy,-0.002432068344205618 +karman_re400,sr,45,18.0,force,upper_fx,0.006764112506061792 +karman_re400,sr,45,18.0,force,upper_fy,0.006427375134080648 +karman_re400,sr,45,18.0,force,lower_fx,-0.008622007444500923 +karman_re400,sr,45,18.0,force,lower_fy,-0.0012308823643252254 +karman_re400,sr,46,18.4,force,front_fx,0.0037798122502863407 +karman_re400,sr,46,18.4,force,front_fy,0.0009191837161779404 +karman_re400,sr,46,18.4,force,upper_fx,0.0051852259784936905 +karman_re400,sr,46,18.4,force,upper_fy,0.005628660321235657 +karman_re400,sr,46,18.4,force,lower_fx,-0.011394969187676907 +karman_re400,sr,46,18.4,force,lower_fy,-0.0008313690195791423 +karman_re400,sr,47,18.8,force,front_fx,0.0015881656436249614 +karman_re400,sr,47,18.8,force,front_fy,0.004171554930508137 +karman_re400,sr,47,18.8,force,upper_fx,0.003317345632240176 +karman_re400,sr,47,18.8,force,upper_fy,0.005303393583744764 +karman_re400,sr,47,18.8,force,lower_fx,-0.010066700167953968 +karman_re400,sr,47,18.8,force,lower_fy,-0.0036454724613577127 +karman_re400,sr,48,19.2,force,front_fx,-0.0016669539036229253 +karman_re400,sr,48,19.2,force,front_fy,0.005743261426687241 +karman_re400,sr,48,19.2,force,upper_fx,0.00206604297272861 +karman_re400,sr,48,19.2,force,upper_fy,0.005632644519209862 +karman_re400,sr,48,19.2,force,lower_fx,-0.005820193327963352 +karman_re400,sr,48,19.2,force,lower_fy,-0.006848463788628578 +karman_re400,sr,49,19.6,force,front_fx,-0.003963283728808165 +karman_re400,sr,49,19.6,force,front_fy,0.006667456589639187 +karman_re400,sr,49,19.6,force,upper_fx,3.443676177994348e-05 +karman_re400,sr,49,19.6,force,upper_fy,0.006678922101855278 +karman_re400,sr,49,19.6,force,lower_fx,-0.0007234865333884954 +karman_re400,sr,49,19.6,force,lower_fy,-0.00878625176846981 +karman_re400,sr,50,20.0,force,front_fx,-0.003912868909537792 +karman_re400,sr,50,20.0,force,front_fy,0.006571399979293346 +karman_re400,sr,50,20.0,force,upper_fx,-0.0019089290872216225 +karman_re400,sr,50,20.0,force,upper_fy,0.007268216460943222 +karman_re400,sr,50,20.0,force,lower_fx,0.0031767331529408693 +karman_re400,sr,50,20.0,force,lower_fy,-0.008418980985879898 +karman_re400,sr,51,20.4,force,front_fx,-0.0007407426019199193 +karman_re400,sr,51,20.4,force,front_fy,0.00597441615536809 +karman_re400,sr,51,20.4,force,upper_fx,-0.003519379999488592 +karman_re400,sr,51,20.4,force,upper_fy,0.006156855262815952 +karman_re400,sr,51,20.4,force,lower_fx,0.0053931172005832195 +karman_re400,sr,51,20.4,force,lower_fy,-0.008000479079782963 +karman_re400,sr,52,20.8,force,front_fx,0.002713806927204132 +karman_re400,sr,52,20.8,force,front_fy,0.0028501609340310097 +karman_re400,sr,52,20.8,force,upper_fx,-0.006151553243398666 +karman_re400,sr,52,20.8,force,upper_fy,0.0035480300430208445 +karman_re400,sr,52,20.8,force,lower_fx,0.005972332786768675 +karman_re400,sr,52,20.8,force,lower_fy,-0.007616949267685413 +karman_re400,sr,53,21.2,force,front_fx,0.003399623092263937 +karman_re400,sr,53,21.2,force,front_fy,-0.000827655429020524 +karman_re400,sr,53,21.2,force,upper_fx,-0.009380867704749107 +karman_re400,sr,53,21.2,force,upper_fy,0.003056218847632408 +karman_re400,sr,53,21.2,force,lower_fx,0.005004413891583681 +karman_re400,sr,53,21.2,force,lower_fy,-0.006885673385113478 +karman_re400,sr,54,21.6,force,front_fx,0.0008564476738683879 +karman_re400,sr,54,21.6,force,front_fy,-0.00339523795992136 +karman_re400,sr,54,21.6,force,upper_fx,-0.008540342561900616 +karman_re400,sr,54,21.6,force,upper_fy,0.006076469551771879 +karman_re400,sr,54,21.6,force,lower_fx,0.0036578369326889515 +karman_re400,sr,54,21.6,force,lower_fy,-0.006341207772493362 +karman_re400,sr,55,22.0,force,front_fx,-0.0015145305078476667 +karman_re400,sr,55,22.0,force,front_fy,-0.0051741390489041805 +karman_re400,sr,55,22.0,force,upper_fx,-0.003822422120720148 +karman_re400,sr,55,22.0,force,upper_fy,0.007601276505738497 +karman_re400,sr,55,22.0,force,lower_fx,0.0019103556405752897 +karman_re400,sr,55,22.0,force,lower_fy,-0.006417630240321159 +karman_re400,sr,56,22.4,force,front_fx,-0.003541214857250452 +karman_re400,sr,56,22.4,force,front_fy,-0.0060403901152312756 +karman_re400,sr,56,22.4,force,upper_fx,-0.0005609563086181879 +karman_re400,sr,56,22.4,force,upper_fy,0.007722832728177309 +karman_re400,sr,56,22.4,force,lower_fx,-0.00015819210966583341 +karman_re400,sr,56,22.4,force,lower_fy,-0.00702767726033926 +karman_re400,sr,57,22.8,force,front_fx,-0.0037385306786745787 +karman_re400,sr,57,22.8,force,front_fy,-0.006052620243281126 +karman_re400,sr,57,22.8,force,upper_fx,0.0021504221949726343 +karman_re400,sr,57,22.8,force,upper_fy,0.008074985817074776 +karman_re400,sr,57,22.8,force,lower_fx,-0.0017253312980756164 +karman_re400,sr,57,22.8,force,lower_fy,-0.007256972137838602 +karman_re400,sr,58,23.2,force,front_fx,-0.0013713815715163946 +karman_re400,sr,58,23.2,force,front_fy,-0.005602068733423948 +karman_re400,sr,58,23.2,force,upper_fx,0.004467091988772154 +karman_re400,sr,58,23.2,force,upper_fy,0.00819741003215313 +karman_re400,sr,58,23.2,force,lower_fx,-0.003258666954934597 +karman_re400,sr,58,23.2,force,lower_fy,-0.005574902985244989 +karman_re400,sr,59,23.6,force,front_fx,0.001974238082766533 +karman_re400,sr,59,23.6,force,front_fy,-0.0035966176073998213 +karman_re400,sr,59,23.6,force,upper_fx,0.005681948270648718 +karman_re400,sr,59,23.6,force,upper_fy,0.007663347292691469 +karman_re400,sr,59,23.6,force,lower_fx,-0.005973971448838711 +karman_re400,sr,59,23.6,force,lower_fy,-0.0028915354050695896 +karman_re400,sr,60,24.0,force,front_fx,0.003570007625967264 +karman_re400,sr,60,24.0,force,front_fy,-0.0003296057984698564 +karman_re400,sr,60,24.0,force,upper_fx,0.004830562975257635 +karman_re400,sr,60,24.0,force,upper_fy,0.0065295821987092495 +karman_re400,sr,60,24.0,force,lower_fx,-0.008995475247502327 +karman_re400,sr,60,24.0,force,lower_fy,-0.001851597335189581 +karman_re400,sr,61,24.4,force,front_fx,0.002023344859480858 +karman_re400,sr,61,24.4,force,front_fy,0.0025884900242090225 +karman_re400,sr,61,24.4,force,upper_fx,0.0034670617897063494 +karman_re400,sr,61,24.4,force,upper_fy,0.0056609963066875935 +karman_re400,sr,61,24.4,force,lower_fx,-0.008908282965421677 +karman_re400,sr,61,24.4,force,lower_fy,-0.003799441969022155 +karman_re400,sr,62,24.8,force,front_fx,-0.0004892223514616489 +karman_re400,sr,62,24.8,force,front_fy,0.004650754854083061 +karman_re400,sr,62,24.8,force,upper_fx,0.0020274287089705467 +karman_re400,sr,62,24.8,force,upper_fy,0.005421942565590143 +karman_re400,sr,62,24.8,force,lower_fx,-0.0051077003590762615 +karman_re400,sr,62,24.8,force,lower_fy,-0.006232255604118109 +karman_re400,sr,63,25.2,force,front_fx,-0.0028697638772428036 +karman_re400,sr,63,25.2,force,front_fy,0.0058662863448262215 +karman_re400,sr,63,25.2,force,upper_fx,-7.604756683576852e-05 +karman_re400,sr,63,25.2,force,upper_fy,0.00602008355781436 +karman_re400,sr,63,25.2,force,lower_fx,-0.0006515274872072041 +karman_re400,sr,63,25.2,force,lower_fy,-0.007772338576614857 +karman_re400,sr,64,25.6,force,front_fx,-0.003665150608867407 +karman_re400,sr,64,25.6,force,front_fy,0.00628264807164669 +karman_re400,sr,64,25.6,force,upper_fx,-0.002239303896203637 +karman_re400,sr,64,25.6,force,upper_fy,0.0067085642367601395 +karman_re400,sr,64,25.6,force,lower_fx,0.0032836475875228643 +karman_re400,sr,64,25.6,force,lower_fy,-0.00797897856682539 +karman_re400,sr,65,26.0,force,front_fx,-0.0013507589465007186 +karman_re400,sr,65,26.0,force,front_fy,0.00628901831805706 +karman_re400,sr,65,26.0,force,upper_fx,-0.003647581674158573 +karman_re400,sr,65,26.0,force,upper_fy,0.00610588351264596 +karman_re400,sr,65,26.0,force,lower_fx,0.005916042719036341 +karman_re400,sr,65,26.0,force,lower_fy,-0.00757008558139205 +karman_re400,sr,66,26.4,force,front_fx,0.002611570991575718 +karman_re400,sr,66,26.4,force,front_fy,0.004579607397317886 +karman_re400,sr,66,26.4,force,upper_fx,-0.005970177706331015 +karman_re400,sr,66,26.4,force,upper_fy,0.0033642491325736046 +karman_re400,sr,66,26.4,force,lower_fx,0.00679928669705987 +karman_re400,sr,66,26.4,force,lower_fy,-0.007152091711759567 +karman_re400,sr,67,26.8,force,front_fx,0.004744078032672405 +karman_re400,sr,67,26.8,force,front_fy,0.0012649038108065724 +karman_re400,sr,67,26.8,force,upper_fx,-0.009640945121645927 +karman_re400,sr,67,26.8,force,upper_fy,0.0008239356684498489 +karman_re400,sr,67,26.8,force,lower_fx,0.006010700017213821 +karman_re400,sr,67,26.8,force,lower_fy,-0.006333725992590189 +karman_re400,sr,68,27.2,force,front_fx,0.0030928284395486116 +karman_re400,sr,68,27.2,force,front_fy,-0.002009727992117405 +karman_re400,sr,68,27.2,force,upper_fx,-0.011602404527366161 +karman_re400,sr,68,27.2,force,upper_fy,0.0023111170157790184 +karman_re400,sr,68,27.2,force,lower_fx,0.004373511765152216 +karman_re400,sr,68,27.2,force,lower_fy,-0.0056833247654139996 +karman_re400,sr,69,27.6,force,front_fx,0.0005206970381550491 +karman_re400,sr,69,27.6,force,front_fy,-0.0046700784005224705 +karman_re400,sr,69,27.6,force,upper_fx,-0.008405427448451519 +karman_re400,sr,69,27.6,force,upper_fy,0.005723371636122465 +karman_re400,sr,69,27.6,force,lower_fx,0.0029137444216758013 +karman_re400,sr,69,27.6,force,lower_fy,-0.005521499551832676 +karman_re400,sr,70,28.0,force,front_fx,-0.0025021377950906754 +karman_re400,sr,70,28.0,force,front_fy,-0.005796617828309536 +karman_re400,sr,70,28.0,force,upper_fx,-0.003667019307613373 +karman_re400,sr,70,28.0,force,upper_fy,0.008245519362390041 +karman_re400,sr,70,28.0,force,lower_fx,0.0012557696318253875 +karman_re400,sr,70,28.0,force,lower_fy,-0.006086362525820732 +karman_re400,sr,71,28.4,force,front_fx,-0.004204098135232925 +karman_re400,sr,71,28.4,force,front_fy,-0.0064042373560369015 +karman_re400,sr,71,28.4,force,upper_fx,0.0012853981461375952 +karman_re400,sr,71,28.4,force,upper_fy,0.00890023447573185 +karman_re400,sr,71,28.4,force,lower_fx,-0.0009882511803880334 +karman_re400,sr,71,28.4,force,lower_fy,-0.007141545880585909 +karman_re400,sr,72,28.8,force,front_fx,-0.0030644782818853855 +karman_re400,sr,72,28.8,force,front_fy,-0.00624063378199935 +karman_re400,sr,72,28.8,force,upper_fx,0.004298046231269836 +karman_re400,sr,72,28.8,force,upper_fy,0.007960308343172073 +karman_re400,sr,72,28.8,force,lower_fx,-0.0025573596358299255 +karman_re400,sr,72,28.8,force,lower_fy,-0.007211779244244099 +karman_re400,sr,73,29.2,force,front_fx,0.0004359841695986688 +karman_re400,sr,73,29.2,force,front_fy,-0.005185204092413187 +karman_re400,sr,73,29.2,force,upper_fx,0.005670393817126751 +karman_re400,sr,73,29.2,force,upper_fy,0.007780370302498341 +karman_re400,sr,73,29.2,force,lower_fx,-0.004099582321941853 +karman_re400,sr,73,29.2,force,lower_fy,-0.005120700690895319 +karman_re400,sr,74,29.6,force,front_fx,0.0033870101906359196 +karman_re400,sr,74,29.6,force,front_fy,-0.0016255384543910623 +karman_re400,sr,74,29.6,force,upper_fx,0.005551820620894432 +karman_re400,sr,74,29.6,force,upper_fy,0.007484035100787878 +karman_re400,sr,74,29.6,force,lower_fx,-0.007227699737995863 +karman_re400,sr,74,29.6,force,lower_fy,-0.0022920069750398397 +karman_re400,sr,75,30.0,force,front_fx,0.00308465538546443 +karman_re400,sr,75,30.0,force,front_fy,0.0012198047479614615 +karman_re400,sr,75,30.0,force,upper_fx,0.0045117586851119995 +karman_re400,sr,75,30.0,force,upper_fy,0.006341615226119757 +karman_re400,sr,75,30.0,force,lower_fx,-0.010133245028555393 +karman_re400,sr,75,30.0,force,lower_fy,-0.0028857067227363586 +karman_re400,sr,76,30.4,force,front_fx,0.0004999144002795219 +karman_re400,sr,76,30.4,force,front_fy,0.003989811986684799 +karman_re400,sr,76,30.4,force,upper_fx,0.0029886309057474136 +karman_re400,sr,76,30.4,force,upper_fy,0.005872415378689766 +karman_re400,sr,76,30.4,force,lower_fx,-0.00765419565141201 +karman_re400,sr,76,30.4,force,lower_fy,-0.006382347550243139 +karman_re400,sr,77,30.8,force,front_fx,-0.00184615736361593 +karman_re400,sr,77,30.8,force,front_fy,0.00533676752820611 +karman_re400,sr,77,30.8,force,upper_fx,0.0011551319621503353 +karman_re400,sr,77,30.8,force,upper_fy,0.005953135900199413 +karman_re400,sr,77,30.8,force,lower_fx,-0.002846754854544997 +karman_re400,sr,77,30.8,force,lower_fy,-0.0075787450186908245 +karman_re400,sr,78,31.2,force,front_fx,-0.0037849564105272293 +karman_re400,sr,78,31.2,force,front_fy,0.006191872525960207 +karman_re400,sr,78,31.2,force,upper_fx,-0.0010892205173149705 +karman_re400,sr,78,31.2,force,upper_fy,0.006798849906772375 +karman_re400,sr,78,31.2,force,lower_fx,0.0007938050548546016 +karman_re400,sr,78,31.2,force,lower_fy,-0.008119300939142704 +karman_re400,sr,79,31.6,force,front_fx,-0.003047055331990123 +karman_re400,sr,79,31.6,force,front_fy,0.006140108220279217 +karman_re400,sr,79,31.6,force,upper_fx,-0.002652260009199381 +karman_re400,sr,79,31.6,force,upper_fy,0.006866044830530882 +karman_re400,sr,79,31.6,force,lower_fx,0.0039054888766258955 +karman_re400,sr,79,31.6,force,lower_fy,-0.008092636242508888 +karman_re400,sr,80,32.0,force,front_fx,0.0001626592711545527 +karman_re400,sr,80,32.0,force,front_fy,0.005463798064738512 +karman_re400,sr,80,32.0,force,upper_fx,-0.004310601856559515 +karman_re400,sr,80,32.0,force,upper_fy,0.004898178856819868 +karman_re400,sr,80,32.0,force,lower_fx,0.005750682204961777 +karman_re400,sr,80,32.0,force,lower_fy,-0.007844831794500351 +karman_re400,sr,81,32.4,force,front_fx,0.0034963199868798256 +karman_re400,sr,81,32.4,force,front_fy,0.002710911678150296 +karman_re400,sr,81,32.4,force,upper_fx,-0.007434835657477379 +karman_re400,sr,81,32.4,force,upper_fy,0.0020330094266682863 +karman_re400,sr,81,32.4,force,lower_fx,0.005982725415378809 +karman_re400,sr,81,32.4,force,lower_fy,-0.007290806621313095 +karman_re400,sr,82,32.8,force,front_fx,0.0038468569982796907 +karman_re400,sr,82,32.8,force,front_fy,-0.00044999271631240845 +karman_re400,sr,82,32.8,force,upper_fx,-0.01053922064602375 +karman_re400,sr,82,32.8,force,upper_fy,0.0017422463279217482 +karman_re400,sr,82,32.8,force,lower_fx,0.00475063594058156 +karman_re400,sr,82,32.8,force,lower_fy,-0.006228975486010313 +karman_re400,sr,83,33.2,force,front_fx,0.0015210374258458614 +karman_re400,sr,83,33.2,force,front_fy,-0.0033804625272750854 +karman_re400,sr,83,33.2,force,upper_fx,-0.009131980128586292 +karman_re400,sr,83,33.2,force,upper_fy,0.005018943455070257 +karman_re400,sr,83,33.2,force,lower_fx,0.0033665040973573923 +karman_re400,sr,83,33.2,force,lower_fy,-0.005600712727755308 +karman_re400,sr,84,33.6,force,front_fx,-0.0011545136803761125 +karman_re400,sr,84,33.6,force,front_fy,-0.005068495403975248 +karman_re400,sr,84,33.6,force,upper_fx,-0.004165841266512871 +karman_re400,sr,84,33.6,force,upper_fy,0.0072959051467478275 +karman_re400,sr,84,33.6,force,lower_fx,0.0018213476287201047 +karman_re400,sr,84,33.6,force,lower_fy,-0.005686709191650152 +karman_re400,sr,85,34.0,force,front_fx,-0.003416964318603277 +karman_re400,sr,85,34.0,force,front_fy,-0.006173728033900261 +karman_re400,sr,85,34.0,force,upper_fx,0.0002808262361213565 +karman_re400,sr,85,34.0,force,upper_fy,0.008265618234872818 +karman_re400,sr,85,34.0,force,lower_fx,-0.0005236266297288239 +karman_re400,sr,85,34.0,force,lower_fy,-0.006521541625261307 +karman_re400,sr,86,34.4,force,front_fx,-0.003520917845889926 +karman_re400,sr,86,34.4,force,front_fy,-0.006248174235224724 +karman_re400,sr,86,34.4,force,upper_fx,0.0038448325358331203 +karman_re400,sr,86,34.4,force,upper_fy,0.008151215501129627 +karman_re400,sr,86,34.4,force,lower_fx,-0.002470094244927168 +karman_re400,sr,86,34.4,force,lower_fy,-0.007057569455355406 +karman_re400,sr,87,34.8,force,front_fx,-0.0006898078136146069 +karman_re400,sr,87,34.8,force,front_fy,-0.005882516503334045 +karman_re400,sr,87,34.8,force,upper_fx,0.0059595475904643536 +karman_re400,sr,87,34.8,force,upper_fy,0.007967841811478138 +karman_re400,sr,87,34.8,force,lower_fx,-0.0038141747936606407 +karman_re400,sr,87,34.8,force,lower_fy,-0.005791593808680773 +karman_re400,sr,88,35.2,force,front_fx,0.0031902792397886515 +karman_re400,sr,88,35.2,force,front_fy,-0.0034765161108225584 +karman_re400,sr,88,35.2,force,upper_fx,0.0064672259613871574 +karman_re400,sr,88,35.2,force,upper_fy,0.007531078066676855 +karman_re400,sr,88,35.2,force,lower_fx,-0.006691885646432638 +karman_re400,sr,88,35.2,force,lower_fy,-0.002774945693090558 +karman_re400,sr,89,35.6,force,front_fx,0.004308877978473902 +karman_re400,sr,89,35.6,force,front_fy,-0.0003580143675208092 +karman_re400,sr,89,35.6,force,upper_fx,0.005453570280224085 +karman_re400,sr,89,35.6,force,upper_fy,0.00643147574737668 +karman_re400,sr,89,35.6,force,lower_fx,-0.010372723452746868 +karman_re400,sr,89,35.6,force,lower_fy,-0.0014458105433732271 +karman_re400,sr,90,36.0,force,front_fx,0.0022121905349195004 +karman_re400,sr,90,36.0,force,front_fy,0.0027996383141726255 +karman_re400,sr,90,36.0,force,upper_fx,0.003888272913172841 +karman_re400,sr,90,36.0,force,upper_fy,0.0057759047485888 +karman_re400,sr,90,36.0,force,lower_fx,-0.010323665104806423 +karman_re400,sr,90,36.0,force,lower_fy,-0.004353861324489117 +karman_re400,sr,91,36.4,force,front_fx,-0.00040094726136885583 +karman_re400,sr,91,36.4,force,front_fy,0.004827853292226791 +karman_re400,sr,91,36.4,force,upper_fx,0.0024114332627505064 +karman_re400,sr,91,36.4,force,upper_fy,0.005686504766345024 +karman_re400,sr,91,36.4,force,lower_fx,-0.005735699087381363 +karman_re400,sr,91,36.4,force,lower_fy,-0.0067413258366286755 +karman_re400,sr,92,36.8,force,front_fx,-0.00302782841026783 +karman_re400,sr,92,36.8,force,front_fy,0.006004394963383675 +karman_re400,sr,92,36.8,force,upper_fx,0.00023559125838801265 +karman_re400,sr,92,36.8,force,upper_fy,0.006415931507945061 +karman_re400,sr,92,36.8,force,lower_fx,-0.0014671589015051723 +karman_re400,sr,92,36.8,force,lower_fy,-0.008181990124285221 +karman_re400,sr,93,37.2,force,front_fx,-0.0039925179444253445 +karman_re400,sr,93,37.2,force,front_fy,0.006212344393134117 +karman_re400,sr,93,37.2,force,upper_fx,-0.0018821615958586335 +karman_re400,sr,93,37.2,force,upper_fy,0.007169727701693773 +karman_re400,sr,93,37.2,force,lower_fx,0.0026903569232672453 +karman_re400,sr,93,37.2,force,lower_fy,-0.008509579114615917 +karman_re400,sr,94,37.6,force,front_fx,-0.0018419185653328896 +karman_re400,sr,94,37.6,force,front_fy,0.0060279350727796555 +karman_re400,sr,94,37.6,force,upper_fx,-0.0033200609032064676 +karman_re400,sr,94,37.6,force,upper_fy,0.006440004333853722 +karman_re400,sr,94,37.6,force,lower_fx,0.005380835384130478 +karman_re400,sr,94,37.6,force,lower_fy,-0.00803777202963829 +karman_re400,sr,95,38.0,force,front_fx,0.0020194645039737225 +karman_re400,sr,95,38.0,force,front_fy,0.004322556778788567 +karman_re400,sr,95,38.0,force,upper_fx,-0.005629993509501219 +karman_re400,sr,95,38.0,force,upper_fy,0.0038386874366551638 +karman_re400,sr,95,38.0,force,lower_fx,0.006338643375784159 +karman_re400,sr,95,38.0,force,lower_fy,-0.007622514385730028 +karman_re400,sr,96,38.4,force,front_fx,0.004315602593123913 +karman_re400,sr,96,38.4,force,front_fy,0.00098590855486691 +karman_re400,sr,96,38.4,force,upper_fx,-0.009193477220833302 +karman_re400,sr,96,38.4,force,upper_fy,0.0016270033083856106 +karman_re400,sr,96,38.4,force,lower_fx,0.005588357336819172 +karman_re400,sr,96,38.4,force,lower_fy,-0.006842856295406818 +karman_re400,sr,97,38.8,force,front_fx,0.0026439521461725235 +karman_re400,sr,97,38.8,force,front_fy,-0.0019595613703131676 +karman_re400,sr,97,38.8,force,upper_fx,-0.010619372129440308 +karman_re400,sr,97,38.8,force,upper_fy,0.003461908083409071 +karman_re400,sr,97,38.8,force,lower_fx,0.0042504542507231236 +karman_re400,sr,97,38.8,force,lower_fy,-0.0059818243607878685 +karman_re400,sr,98,39.2,force,front_fx,0.00020853003661613911 +karman_re400,sr,98,39.2,force,front_fy,-0.004509992431849241 +karman_re400,sr,98,39.2,force,upper_fx,-0.006825719028711319 +karman_re400,sr,98,39.2,force,upper_fy,0.006275869440287352 +karman_re400,sr,98,39.2,force,lower_fx,0.0027281735092401505 +karman_re400,sr,98,39.2,force,lower_fy,-0.005711461417376995 +karman_re400,sr,99,39.6,force,front_fx,-0.002496520057320595 +karman_re400,sr,99,39.6,force,front_fy,-0.00566094508394599 +karman_re400,sr,99,39.6,force,upper_fx,-0.0024664546363055706 +karman_re400,sr,99,39.6,force,upper_fy,0.007820716127753258 +karman_re400,sr,99,39.6,force,lower_fx,0.0007711866637691855 +karman_re400,sr,99,39.6,force,lower_fy,-0.006121343467384577 +karman_re400,sr,100,40.0,force,front_fx,-0.004069935530424118 +karman_re400,sr,100,40.0,force,front_fy,-0.0062364256009459496 +karman_re400,sr,100,40.0,force,upper_fx,0.0018414551159366965 +karman_re400,sr,100,40.0,force,upper_fy,0.008492921479046345 +karman_re400,sr,100,40.0,force,lower_fx,-0.0014776554889976978 +karman_re400,sr,100,40.0,force,lower_fy,-0.00703700166195631 +karman_re400,sr,101,40.4,force,front_fx,-0.00258352211676538 +karman_re400,sr,101,40.4,force,front_fy,-0.006123021710664034 +karman_re400,sr,101,40.4,force,upper_fx,0.0049370406195521355 +karman_re400,sr,101,40.4,force,upper_fy,0.00796057004481554 +karman_re400,sr,101,40.4,force,lower_fx,-0.0029826252721250057 +karman_re400,sr,101,40.4,force,lower_fy,-0.006815444212406874 +karman_re400,sr,102,40.8,force,front_fx,0.00105578254442662 +karman_re400,sr,102,40.8,force,front_fy,-0.005040282383561134 +karman_re400,sr,102,40.8,force,upper_fx,0.00629906402900815 +karman_re400,sr,102,40.8,force,upper_fy,0.007602980360388756 +karman_re400,sr,102,40.8,force,lower_fx,-0.004893295932561159 +karman_re400,sr,102,40.8,force,lower_fy,-0.004565450828522444 +karman_re400,sr,103,41.2,force,front_fx,0.004073570482432842 +karman_re400,sr,103,41.2,force,front_fy,-0.0018193291034549475 +karman_re400,sr,103,41.2,force,upper_fx,0.005900076124817133 +karman_re400,sr,103,41.2,force,upper_fy,0.006999496836215258 +karman_re400,sr,103,41.2,force,lower_fx,-0.008227771148085594 +karman_re400,sr,103,41.2,force,lower_fy,-0.0017735488945618272 +karman_re400,sr,104,41.6,force,front_fx,0.003324572928249836 +karman_re400,sr,104,41.6,force,front_fy,0.0011489600874483585 +karman_re400,sr,104,41.6,force,upper_fx,0.004649666603654623 +karman_re400,sr,104,41.6,force,upper_fy,0.006028879899531603 +karman_re400,sr,104,41.6,force,lower_fx,-0.01084166020154953 +karman_re400,sr,104,41.6,force,lower_fy,-0.002229415811598301 +karman_re400,sr,105,42.0,force,front_fx,0.0009050252265296876 +karman_re400,sr,105,42.0,force,front_fy,0.00406238529831171 +karman_re400,sr,105,42.0,force,upper_fx,0.003063507378101349 +karman_re400,sr,105,42.0,force,upper_fy,0.0055960360914468765 +karman_re400,sr,105,42.0,force,lower_fx,-0.008376396261155605 +karman_re400,sr,105,42.0,force,lower_fy,-0.005534124560654163 +karman_re400,sr,106,42.4,force,front_fx,-0.0018447376787662506 +karman_re400,sr,106,42.4,force,front_fy,0.005455408710986376 +karman_re400,sr,106,42.4,force,upper_fx,0.001421862980350852 +karman_re400,sr,106,42.4,force,upper_fy,0.005852507892996073 +karman_re400,sr,106,42.4,force,lower_fx,-0.0036312525626271963 +karman_re400,sr,106,42.4,force,lower_fy,-0.0074001639150083065 +karman_re400,sr,107,42.8,force,front_fx,-0.0038865236565470695 +karman_re400,sr,107,42.8,force,front_fy,0.006348891649395227 +karman_re400,sr,107,42.8,force,upper_fx,-0.0008317579049617052 +karman_re400,sr,107,42.8,force,upper_fy,0.006784267257899046 +karman_re400,sr,107,42.8,force,lower_fx,0.0006451932131312788 +karman_re400,sr,107,42.8,force,lower_fy,-0.008398107253015041 +karman_re400,sr,108,43.2,force,front_fx,-0.003229072317481041 +karman_re400,sr,108,43.2,force,front_fy,0.006270756945014 +karman_re400,sr,108,43.2,force,upper_fx,-0.0025326437316834927 +karman_re400,sr,108,43.2,force,upper_fy,0.0070322128012776375 +karman_re400,sr,108,43.2,force,lower_fx,0.004040816333144903 +karman_re400,sr,108,43.2,force,lower_fy,-0.008093023672699928 +karman_re400,sr,109,43.6,force,front_fx,3.129284959868528e-05 +karman_re400,sr,109,43.6,force,front_fy,0.005599032621830702 +karman_re400,sr,109,43.6,force,upper_fx,-0.004170551896095276 +karman_re400,sr,109,43.6,force,upper_fy,0.0052764141000807285 +karman_re400,sr,109,43.6,force,lower_fx,0.005887020844966173 +karman_re400,sr,109,43.6,force,lower_fy,-0.007824703119695187 +karman_re400,sr,110,44.0,force,front_fx,0.003442794317379594 +karman_re400,sr,110,44.0,force,front_fy,0.0025904092472046614 +karman_re400,sr,110,44.0,force,upper_fx,-0.007252499461174011 +karman_re400,sr,110,44.0,force,upper_fy,0.0023793773725628853 +karman_re400,sr,110,44.0,force,lower_fx,0.0061090243980288506 +karman_re400,sr,110,44.0,force,lower_fy,-0.007401157170534134 +karman_re400,sr,111,44.4,force,front_fx,0.0037743630819022655 +karman_re400,sr,111,44.4,force,front_fy,-0.0005296996096149087 +karman_re400,sr,111,44.4,force,upper_fx,-0.010471918620169163 +karman_re400,sr,111,44.4,force,upper_fy,0.0020262873731553555 +karman_re400,sr,111,44.4,force,lower_fx,0.004966892767697573 +karman_re400,sr,111,44.4,force,lower_fy,-0.006336156278848648 +karman_re400,sr,112,44.8,force,front_fx,0.001355771441012621 +karman_re400,sr,112,44.8,force,front_fy,-0.0035439645871520042 +karman_re400,sr,112,44.8,force,upper_fx,-0.00912373885512352 +karman_re400,sr,112,44.8,force,upper_fy,0.005255622323602438 +karman_re400,sr,112,44.8,force,lower_fx,0.0034700294490903616 +karman_re400,sr,112,44.8,force,lower_fy,-0.005838997196406126 +karman_re400,sr,113,45.2,force,front_fx,-0.00127821892965585 +karman_re400,sr,113,45.2,force,front_fy,-0.005144060123711824 +karman_re400,sr,113,45.2,force,upper_fx,-0.004345130641013384 +karman_re400,sr,113,45.2,force,upper_fy,0.007329844869673252 +karman_re400,sr,113,45.2,force,lower_fx,0.0018924225587397814 +karman_re400,sr,113,45.2,force,lower_fy,-0.00588219566270709 +karman_re400,sr,114,45.6,force,front_fx,-0.0035589179024100304 +karman_re400,sr,114,45.6,force,front_fy,-0.006177298258990049 +karman_re400,sr,114,45.6,force,upper_fx,-0.00018950167577713728 +karman_re400,sr,114,45.6,force,upper_fy,0.008350980468094349 +karman_re400,sr,114,45.6,force,lower_fx,-0.00037595906178466976 +karman_re400,sr,114,45.6,force,lower_fy,-0.006743761245161295 +karman_re400,sr,115,46.0,force,front_fx,-0.0036615682765841484 +karman_re400,sr,115,46.0,force,front_fy,-0.006146413739770651 +karman_re400,sr,115,46.0,force,upper_fx,0.0033550856169313192 +karman_re400,sr,115,46.0,force,upper_fy,0.008309897966682911 +karman_re400,sr,115,46.0,force,lower_fx,-0.002241199603304267 +karman_re400,sr,115,46.0,force,lower_fy,-0.007181812077760696 +karman_re400,sr,116,46.4,force,front_fx,-0.0009725351119413972 +karman_re400,sr,116,46.4,force,front_fy,-0.0057728528045117855 +karman_re400,sr,116,46.4,force,upper_fx,0.0055513749830424786 +karman_re400,sr,116,46.4,force,upper_fy,0.00806715153157711 +karman_re400,sr,116,46.4,force,lower_fx,-0.0037206721026450396 +karman_re400,sr,116,46.4,force,lower_fy,-0.005806885194033384 +karman_re400,sr,117,46.8,force,front_fx,0.0027356117498129606 +karman_re400,sr,117,46.8,force,front_fy,-0.0034812840167433023 +karman_re400,sr,117,46.8,force,upper_fx,0.0062332856468856335 +karman_re400,sr,117,46.8,force,upper_fy,0.007607997860759497 +karman_re400,sr,117,46.8,force,lower_fx,-0.006443355232477188 +karman_re400,sr,117,46.8,force,lower_fy,-0.0029458082281053066 +karman_re400,sr,118,47.2,force,front_fx,0.0041227457113564014 +karman_re400,sr,118,47.2,force,front_fy,-0.00022491863637696952 +karman_re400,sr,118,47.2,force,upper_fx,0.005185649264603853 +karman_re400,sr,118,47.2,force,upper_fy,0.006573668215423822 +karman_re400,sr,118,47.2,force,lower_fx,-0.009875133633613586 +karman_re400,sr,118,47.2,force,lower_fy,-0.001660991576500237 +karman_re400,sr,119,47.6,force,front_fx,0.002033708617091179 +karman_re400,sr,119,47.6,force,front_fy,0.0027172877453267574 +karman_re400,sr,119,47.6,force,upper_fx,0.00379728595726192 +karman_re400,sr,119,47.6,force,upper_fy,0.005784658249467611 +karman_re400,sr,119,47.6,force,lower_fx,-0.009773998521268368 +karman_re400,sr,119,47.6,force,lower_fy,-0.004366372246295214 +karman_re400,sr,120,48.0,force,front_fx,-0.0004975105985067785 +karman_re400,sr,120,48.0,force,front_fy,0.004830114543437958 +karman_re400,sr,120,48.0,force,upper_fx,0.0022428592201322317 +karman_re400,sr,120,48.0,force,upper_fy,0.005664070136845112 +karman_re400,sr,120,48.0,force,lower_fx,-0.005245069973170757 +karman_re400,sr,120,48.0,force,lower_fy,-0.006616828963160515 +karman_re400,sr,121,48.4,force,front_fx,-0.0030054915696382523 +karman_re400,sr,121,48.4,force,front_fy,0.00595910893753171 +karman_re400,sr,121,48.4,force,upper_fx,7.354035187745467e-05 +karman_re400,sr,121,48.4,force,upper_fy,0.006293186452239752 +karman_re400,sr,121,48.4,force,lower_fx,-0.001121341367252171 +karman_re400,sr,121,48.4,force,lower_fy,-0.007928985171020031 +karman_re400,sr,122,48.8,force,front_fx,-0.0039013344794511795 +karman_re400,sr,122,48.8,force,front_fy,0.006216445472091436 +karman_re400,sr,122,48.8,force,upper_fx,-0.002064298838376999 +karman_re400,sr,122,48.8,force,upper_fy,0.006995294243097305 +karman_re400,sr,122,48.8,force,lower_fx,0.0029108382295817137 +karman_re400,sr,122,48.8,force,lower_fy,-0.00836137868463993 +karman_re400,sr,123,49.2,force,front_fx,-0.0015937964199110866 +karman_re400,sr,123,49.2,force,front_fy,0.006057048216462135 +karman_re400,sr,123,49.2,force,upper_fx,-0.003483276581391692 +karman_re400,sr,123,49.2,force,upper_fy,0.006285358220338821 +karman_re400,sr,123,49.2,force,lower_fx,0.005681582260876894 +karman_re400,sr,123,49.2,force,lower_fy,-0.00795553345233202 +karman_re400,sr,124,49.6,force,front_fx,0.002335826400667429 +karman_re400,sr,124,49.6,force,front_fy,0.004319732077419758 +karman_re400,sr,124,49.6,force,upper_fx,-0.0059222448617219925 +karman_re400,sr,124,49.6,force,upper_fy,0.0036670074332505465 +karman_re400,sr,124,49.6,force,lower_fx,0.0065808407962322235 +karman_re400,sr,124,49.6,force,lower_fy,-0.007466147653758526 +karman_re400,sr,125,50.0,force,front_fx,0.004455873742699623 +karman_re400,sr,125,50.0,force,front_fy,0.001059764064848423 +karman_re400,sr,125,50.0,force,upper_fx,-0.009462960064411163 +karman_re400,sr,125,50.0,force,upper_fy,0.0014513200148940086 +karman_re400,sr,125,50.0,force,lower_fx,0.00576110789552331 +karman_re400,sr,125,50.0,force,lower_fy,-0.006625395268201828 +karman_re400,sr,126,50.4,force,front_fx,0.002764776349067688 +karman_re400,sr,126,50.4,force,front_fy,-0.0020742537453770638 +karman_re400,sr,126,50.4,force,upper_fx,-0.010856683366000652 +karman_re400,sr,126,50.4,force,upper_fy,0.0030793335754424334 +karman_re400,sr,126,50.4,force,lower_fx,0.004284467548131943 +karman_re400,sr,126,50.4,force,lower_fy,-0.0058778016828000546 +karman_re400,sr,127,50.8,force,front_fx,0.00022995172184892 +karman_re400,sr,127,50.8,force,front_fy,-0.0045885914005339146 +karman_re400,sr,127,50.8,force,upper_fx,-0.007273239549249411 +karman_re400,sr,127,50.8,force,upper_fy,0.006001974456012249 +karman_re400,sr,127,50.8,force,lower_fx,0.0027905884198844433 +karman_re400,sr,127,50.8,force,lower_fy,-0.005640577059239149 +karman_re400,sr,128,51.2,force,front_fx,-0.0025696735829114914 +karman_re400,sr,128,51.2,force,front_fy,-0.005796624347567558 +karman_re400,sr,128,51.2,force,upper_fx,-0.002782987430691719 +karman_re400,sr,128,51.2,force,upper_fy,0.007834915071725845 +karman_re400,sr,128,51.2,force,lower_fx,0.0009382728603668511 +karman_re400,sr,128,51.2,force,lower_fy,-0.006151359062641859 +karman_re400,sr,129,51.6,force,front_fx,-0.0041474816389381886 +karman_re400,sr,129,51.6,force,front_fy,-0.006352092605084181 +karman_re400,sr,129,51.6,force,upper_fx,0.0016289943596348166 +karman_re400,sr,129,51.6,force,upper_fy,0.008577857166528702 +karman_re400,sr,129,51.6,force,lower_fx,-0.0012656573671847582 +karman_re400,sr,129,51.6,force,lower_fy,-0.007116343360394239 +karman_re400,sr,130,52.0,force,front_fx,-0.002663119463250041 +karman_re400,sr,130,52.0,force,front_fy,-0.006207706406712532 +karman_re400,sr,130,52.0,force,upper_fx,0.0047537656500935555 +karman_re400,sr,130,52.0,force,upper_fy,0.007986634038388729 +karman_re400,sr,130,52.0,force,lower_fx,-0.0028346492908895016 +karman_re400,sr,130,52.0,force,lower_fy,-0.006923709996044636 +karman_re400,sr,131,52.4,force,front_fx,0.0009552721166983247 +karman_re400,sr,131,52.4,force,front_fy,-0.005062420386821032 +karman_re400,sr,131,52.4,force,upper_fx,0.0061462074518203735 +karman_re400,sr,131,52.4,force,upper_fy,0.007637630216777325 +karman_re400,sr,131,52.4,force,lower_fx,-0.004756275564432144 +karman_re400,sr,131,52.4,force,lower_fy,-0.004736507311463356 +karman_re400,sr,132,52.8,force,front_fx,0.003875450696796179 +karman_re400,sr,132,52.8,force,front_fy,-0.0016395901329815388 +karman_re400,sr,132,52.8,force,upper_fx,0.005842949263751507 +karman_re400,sr,132,52.8,force,upper_fy,0.007121728267520666 +karman_re400,sr,132,52.8,force,lower_fx,-0.00805926974862814 +karman_re400,sr,132,52.8,force,lower_fy,-0.002016133163124323 +karman_re400,sr,133,53.2,force,front_fx,0.003139642532914877 +karman_re400,sr,133,53.2,force,front_fy,0.001274035545065999 +karman_re400,sr,133,53.2,force,upper_fx,0.004640531726181507 +karman_re400,sr,133,53.2,force,upper_fy,0.0061344243586063385 +karman_re400,sr,133,53.2,force,lower_fx,-0.01059296727180481 +karman_re400,sr,133,53.2,force,lower_fy,-0.002557271160185337 +karman_re400,sr,134,53.6,force,front_fx,0.0006796338129788637 +karman_re400,sr,134,53.6,force,front_fy,0.004168870858848095 +karman_re400,sr,134,53.6,force,upper_fx,0.003067830577492714 +karman_re400,sr,134,53.6,force,upper_fy,0.005775789730250835 +karman_re400,sr,134,53.6,force,lower_fx,-0.008070592768490314 +karman_re400,sr,134,53.6,force,lower_fy,-0.005763034336268902 +karman_re400,sr,135,54.0,force,front_fx,-0.001978729385882616 +karman_re400,sr,135,54.0,force,front_fy,0.0054666572250425816 +karman_re400,sr,135,54.0,force,upper_fx,0.0013716504909098148 +karman_re400,sr,135,54.0,force,upper_fy,0.00599489314481616 +karman_re400,sr,135,54.0,force,lower_fx,-0.0034896465949714184 +karman_re400,sr,135,54.0,force,lower_fy,-0.00748900230973959 +karman_re400,sr,136,54.4,force,front_fx,-0.003951743710786104 +karman_re400,sr,136,54.4,force,front_fy,0.006279932800680399 +karman_re400,sr,136,54.4,force,upper_fx,-0.0008425786509178579 +karman_re400,sr,136,54.4,force,upper_fy,0.006927028764039278 +karman_re400,sr,136,54.4,force,lower_fx,0.0006120554753579199 +karman_re400,sr,136,54.4,force,lower_fy,-0.008433233015239239 +karman_re400,sr,137,54.8,force,front_fx,-0.003246130421757698 +karman_re400,sr,137,54.8,force,front_fy,0.006169854197651148 +karman_re400,sr,137,54.8,force,upper_fx,-0.002507708966732025 +karman_re400,sr,137,54.8,force,upper_fy,0.007049100939184427 +karman_re400,sr,137,54.8,force,lower_fx,0.0039010357577353716 +karman_re400,sr,137,54.8,force,lower_fy,-0.008143320679664612 +karman_re400,sr,138,55.2,force,front_fx,-7.840511534595862e-05 +karman_re400,sr,138,55.2,force,front_fy,0.0054951012134552 +karman_re400,sr,138,55.2,force,upper_fx,-0.004182921256870031 +karman_re400,sr,138,55.2,force,upper_fy,0.005183595232665539 +karman_re400,sr,138,55.2,force,lower_fx,0.005759056191891432 +karman_re400,sr,138,55.2,force,lower_fy,-0.007868748158216476 +karman_re400,sr,139,55.6,force,front_fx,0.003272206289693713 +karman_re400,sr,139,55.6,force,front_fy,0.002619534730911255 +karman_re400,sr,139,55.6,force,upper_fx,-0.0071852379478514194 +karman_re400,sr,139,55.6,force,upper_fy,0.002336630132049322 +karman_re400,sr,139,55.6,force,lower_fx,0.006005574017763138 +karman_re400,sr,139,55.6,force,lower_fy,-0.0073704286478459835 +karman_re400,sr,140,56.0,force,front_fx,0.003749973140656948 +karman_re400,sr,140,56.0,force,front_fy,-0.0005371130537241697 +karman_re400,sr,140,56.0,force,upper_fx,-0.01026380155235529 +karman_re400,sr,140,56.0,force,upper_fy,0.0019470053957775235 +karman_re400,sr,140,56.0,force,lower_fx,0.004823272116482258 +karman_re400,sr,140,56.0,force,lower_fy,-0.00631817476823926 +karman_re400,sr,141,56.4,force,front_fx,0.0013572705211117864 +karman_re400,sr,141,56.4,force,front_fy,-0.0034509224351495504 +karman_re400,sr,141,56.4,force,upper_fx,-0.00893118791282177 +karman_re400,sr,141,56.4,force,upper_fy,0.0050955782644450665 +karman_re400,sr,141,56.4,force,lower_fx,0.0033949855715036392 +karman_re400,sr,141,56.4,force,lower_fy,-0.005714918952435255 +karman_re400,sr,142,56.8,force,front_fx,-0.0012607716489583254 +karman_re400,sr,142,56.8,force,front_fy,-0.005139648914337158 +karman_re400,sr,142,56.8,force,upper_fx,-0.0041305506601929665 +karman_re400,sr,142,56.8,force,upper_fy,0.007151687052100897 +karman_re400,sr,142,56.8,force,lower_fx,0.0017794739687815309 +karman_re400,sr,142,56.8,force,lower_fy,-0.0057641007006168365 +karman_re400,sr,143,57.2,force,front_fx,-0.003502391977235675 +karman_re400,sr,143,57.2,force,front_fy,-0.006190087180584669 +karman_re400,sr,143,57.2,force,upper_fx,-3.924289103451883e-06 +karman_re400,sr,143,57.2,force,upper_fy,0.008150276727974415 +karman_re400,sr,143,57.2,force,lower_fx,-0.00047940798685885966 +karman_re400,sr,143,57.2,force,lower_fy,-0.006559812929481268 +karman_re400,sr,144,57.6,force,front_fx,-0.0035750526003539562 +karman_re400,sr,144,57.6,force,front_fy,-0.006204355973750353 +karman_re400,sr,144,57.6,force,upper_fx,0.0035595891531556845 +karman_re400,sr,144,57.6,force,upper_fy,0.008210333064198494 +karman_re400,sr,144,57.6,force,lower_fx,-0.0023910272866487503 +karman_re400,sr,144,57.6,force,lower_fy,-0.007008075714111328 +karman_re400,sr,145,58.0,force,front_fx,-0.0007303663296625018 +karman_re400,sr,145,58.0,force,front_fy,-0.005837289150804281 +karman_re400,sr,145,58.0,force,upper_fx,0.005816746968775988 +karman_re400,sr,145,58.0,force,upper_fy,0.00795242190361023 +karman_re400,sr,145,58.0,force,lower_fx,-0.0038431859575212 +karman_re400,sr,145,58.0,force,lower_fy,-0.005713155958801508 +karman_re400,sr,146,58.4,force,front_fx,0.0030225657392293215 +karman_re400,sr,146,58.4,force,front_fy,-0.003443004796281457 +karman_re400,sr,146,58.4,force,upper_fx,0.006389405112713575 +karman_re400,sr,146,58.4,force,upper_fy,0.007487286347895861 +karman_re400,sr,146,58.4,force,lower_fx,-0.006671593990176916 +karman_re400,sr,146,58.4,force,lower_fy,-0.002842676592990756 +karman_re400,sr,147,58.8,force,front_fx,0.00419571390375495 +karman_re400,sr,147,58.8,force,front_fy,-0.00022695091320201755 +karman_re400,sr,147,58.8,force,upper_fx,0.005329186096787453 +karman_re400,sr,147,58.8,force,upper_fy,0.0064583164639770985 +karman_re400,sr,147,58.8,force,lower_fx,-0.010122780688107014 +karman_re400,sr,147,58.8,force,lower_fy,-0.0015934485709294677 +karman_re400,sr,148,59.2,force,front_fx,0.0020704297348856926 +karman_re400,sr,148,59.2,force,front_fy,0.0028622872196137905 +karman_re400,sr,148,59.2,force,upper_fx,0.003817029995843768 +karman_re400,sr,148,59.2,force,upper_fy,0.005787666887044907 +karman_re400,sr,148,59.2,force,lower_fx,-0.010017268359661102 +karman_re400,sr,148,59.2,force,lower_fy,-0.004267124459147453 +karman_re400,sr,149,59.6,force,front_fx,-0.0005532228387892246 +karman_re400,sr,149,59.6,force,front_fy,0.004911207128316164 +karman_re400,sr,149,59.6,force,upper_fx,0.0023198514245450497 +karman_re400,sr,149,59.6,force,upper_fy,0.005704380106180906 +karman_re400,sr,149,59.6,force,lower_fx,-0.00556736346334219 +karman_re400,sr,149,59.6,force,lower_fy,-0.006654627155512571 +karman_re400,sr,150,60.0,force,front_fx,-0.003105806652456522 +karman_re400,sr,150,60.0,force,front_fy,0.006037733983248472 +karman_re400,sr,150,60.0,force,upper_fx,0.00018919285503216088 +karman_re400,sr,150,60.0,force,upper_fy,0.006397703196853399 +karman_re400,sr,150,60.0,force,lower_fx,-0.0013275161618366838 +karman_re400,sr,150,60.0,force,lower_fy,-0.008094822987914085 +karman_re400,sr,151,60.4,force,front_fx,-0.003964347764849663 +karman_re400,sr,151,60.4,force,front_fy,0.00627298466861248 +karman_re400,sr,151,60.4,force,upper_fx,-0.0019105379469692707 +karman_re400,sr,151,60.4,force,upper_fy,0.007148345001041889 +karman_re400,sr,151,60.4,force,lower_fx,0.002740521216765046 +karman_re400,sr,151,60.4,force,lower_fy,-0.00846070982515812 +karman_re400,sr,152,60.8,force,front_fx,-0.0016685171285644174 +karman_re400,sr,152,60.8,force,front_fy,0.006060013547539711 +karman_re400,sr,152,60.8,force,upper_fx,-0.0033889380283653736 +karman_re400,sr,152,60.8,force,upper_fy,0.0063643730245530605 +karman_re400,sr,152,60.8,force,lower_fx,0.00545969232916832 +karman_re400,sr,152,60.8,force,lower_fy,-0.00804103072732687 +karman_re400,sr,153,61.2,force,front_fx,0.0021874329540878534 +karman_re400,sr,153,61.2,force,front_fy,0.004260015208274126 +karman_re400,sr,153,61.2,force,upper_fx,-0.005815601907670498 +karman_re400,sr,153,61.2,force,upper_fy,0.0037697607185691595 +karman_re400,sr,153,61.2,force,lower_fx,0.006397923454642296 +karman_re400,sr,153,61.2,force,lower_fy,-0.007580548990517855 +karman_re400,sr,154,61.6,force,front_fx,0.0042974199168384075 +karman_re400,sr,154,61.6,force,front_fy,0.0008554469677619636 +karman_re400,sr,154,61.6,force,upper_fx,-0.009318869560956955 +karman_re400,sr,154,61.6,force,upper_fy,0.0016571949236094952 +karman_re400,sr,154,61.6,force,lower_fx,0.005605460610240698 +karman_re400,sr,154,61.6,force,lower_fy,-0.006784715689718723 +karman_re400,sr,155,62.0,force,front_fx,0.0025617966894060373 +karman_re400,sr,155,62.0,force,front_fy,-0.002139868214726448 +karman_re400,sr,155,62.0,force,upper_fx,-0.0105682872235775 +karman_re400,sr,155,62.0,force,upper_fy,0.003475545672699809 +karman_re400,sr,155,62.0,force,lower_fx,0.004218583926558495 +karman_re400,sr,155,62.0,force,lower_fy,-0.00598457595333457 +karman_re400,sr,156,62.4,force,front_fx,5.983589653624222e-05 +karman_re400,sr,156,62.4,force,front_fy,-0.004613965284079313 +karman_re400,sr,156,62.4,force,upper_fx,-0.00677215913310647 +karman_re400,sr,156,62.4,force,upper_fy,0.006275626365095377 +karman_re400,sr,156,62.4,force,lower_fx,0.0027321758680045605 +karman_re400,sr,156,62.4,force,lower_fy,-0.005756664089858532 +karman_re400,sr,157,62.8,force,front_fx,-0.0026322819758206606 +karman_re400,sr,157,62.8,force,front_fy,-0.005758023355156183 +karman_re400,sr,157,62.8,force,upper_fx,-0.0024317556526511908 +karman_re400,sr,157,62.8,force,upper_fy,0.007869838736951351 +karman_re400,sr,157,62.8,force,lower_fx,0.0007855428848415613 +karman_re400,sr,157,62.8,force,lower_fy,-0.0062453001737594604 +karman_re400,sr,158,63.2,force,front_fx,-0.0041125379502773285 +karman_re400,sr,158,63.2,force,front_fy,-0.006242205388844013 +karman_re400,sr,158,63.2,force,upper_fx,0.0018218837212771177 +karman_re400,sr,158,63.2,force,upper_fy,0.008562820963561535 +karman_re400,sr,158,63.2,force,lower_fx,-0.0014083229470998049 +karman_re400,sr,158,63.2,force,lower_fy,-0.007148526143282652 +karman_re400,sr,159,63.6,force,front_fx,-0.0025711164344102144 +karman_re400,sr,159,63.6,force,front_fy,-0.006114833988249302 +karman_re400,sr,159,63.6,force,upper_fx,0.004888411611318588 +karman_re400,sr,159,63.6,force,upper_fy,0.008015795610845089 +karman_re400,sr,159,63.6,force,lower_fx,-0.0029752275440841913 +karman_re400,sr,159,63.6,force,lower_fy,-0.006844659335911274 +karman_re400,sr,160,64.0,force,front_fx,0.0010370980016887188 +karman_re400,sr,160,64.0,force,front_fy,-0.0049744886346161366 +karman_re400,sr,160,64.0,force,upper_fx,0.006259344983845949 +karman_re400,sr,160,64.0,force,upper_fy,0.007642837706953287 +karman_re400,sr,160,64.0,force,lower_fx,-0.0049379062838852406 +karman_re400,sr,160,64.0,force,lower_fy,-0.004564551170915365 +karman_re400,sr,161,64.4,force,front_fx,0.003992544021457434 +karman_re400,sr,161,64.4,force,front_fy,-0.0017241265159100294 +karman_re400,sr,161,64.4,force,upper_fx,0.005859803408384323 +karman_re400,sr,161,64.4,force,upper_fy,0.007003538776189089 +karman_re400,sr,161,64.4,force,lower_fx,-0.008253111504018307 +karman_re400,sr,161,64.4,force,lower_fy,-0.0018518698634579778 +karman_re400,sr,162,64.8,force,front_fx,0.003229025984182954 +karman_re400,sr,162,64.8,force,front_fy,0.0012187467655166984 +karman_re400,sr,162,64.8,force,upper_fx,0.004613607656210661 +karman_re400,sr,162,64.8,force,upper_fy,0.006036581005901098 +karman_re400,sr,162,64.8,force,lower_fx,-0.010679775848984718 +karman_re400,sr,162,64.8,force,lower_fy,-0.002395936055108905 +karman_re400,sr,163,65.2,force,front_fx,0.0008106289897114038 +karman_re400,sr,163,65.2,force,front_fy,0.0040942709892988205 +karman_re400,sr,163,65.2,force,upper_fx,0.003043257398530841 +karman_re400,sr,163,65.2,force,upper_fy,0.005632408428937197 +karman_re400,sr,163,65.2,force,lower_fx,-0.008110234513878822 +karman_re400,sr,163,65.2,force,lower_fy,-0.005559970624744892 +karman_re400,sr,164,65.6,force,front_fx,-0.0019239467801526189 +karman_re400,sr,164,65.6,force,front_fy,0.005465091671794653 +karman_re400,sr,164,65.6,force,upper_fx,0.0013467350509017706 +karman_re400,sr,164,65.6,force,upper_fy,0.0058766985312104225 +karman_re400,sr,164,65.6,force,lower_fx,-0.003462247783318162 +karman_re400,sr,164,65.6,force,lower_fy,-0.007351455744355917 +karman_re400,sr,165,66.0,force,front_fx,-0.0039188917726278305 +karman_re400,sr,165,66.0,force,front_fy,0.006325138732790947 +karman_re400,sr,165,66.0,force,upper_fx,-0.000889248913154006 +karman_re400,sr,165,66.0,force,upper_fy,0.006804393604397774 +karman_re400,sr,165,66.0,force,lower_fx,0.0007508187554776669 +karman_re400,sr,165,66.0,force,lower_fy,-0.00829038955271244 +karman_re400,sr,166,66.4,force,front_fx,-0.0032050851732492447 +karman_re400,sr,166,66.4,force,front_fy,0.006220147479325533 +karman_re400,sr,166,66.4,force,upper_fx,-0.0025643878616392612 +karman_re400,sr,166,66.4,force,upper_fy,0.006972163915634155 +karman_re400,sr,166,66.4,force,lower_fx,0.0040929908864200115 +karman_re400,sr,166,66.4,force,lower_fy,-0.00802560430020094 +karman_re400,sr,167,66.8,force,front_fx,6.905348709551618e-05 +karman_re400,sr,167,66.8,force,front_fy,0.00554197421297431 +karman_re400,sr,167,66.8,force,upper_fx,-0.004230042919516563 +karman_re400,sr,167,66.8,force,upper_fy,0.005180506035685539 +karman_re400,sr,167,66.8,force,lower_fx,0.005973902530968189 +karman_re400,sr,167,66.8,force,lower_fy,-0.007731680758297443 +karman_re400,sr,168,67.2,force,front_fx,0.0034469389356672764 +karman_re400,sr,168,67.2,force,front_fy,0.002565476344898343 +karman_re400,sr,168,67.2,force,upper_fx,-0.007306584622710943 +karman_re400,sr,168,67.2,force,upper_fy,0.0023274573031812906 +karman_re400,sr,168,67.2,force,lower_fx,0.006156005430966616 +karman_re400,sr,168,67.2,force,lower_fy,-0.007281109225004911 +karman_re400,sr,169,67.6,force,front_fx,0.0037544488441199064 +karman_re400,sr,169,67.6,force,front_fy,-0.0005432458128780127 +karman_re400,sr,169,67.6,force,upper_fx,-0.010419808328151703 +karman_re400,sr,169,67.6,force,upper_fy,0.0019139830255880952 +karman_re400,sr,169,67.6,force,lower_fx,0.0049963584169745445 +karman_re400,sr,169,67.6,force,lower_fy,-0.006246943958103657 +karman_re400,sr,170,68.0,force,front_fx,0.0013677446404471993 +karman_re400,sr,170,68.0,force,front_fy,-0.003576749237254262 +karman_re400,sr,170,68.0,force,upper_fx,-0.009156211279332638 +karman_re400,sr,170,68.0,force,upper_fy,0.004980981349945068 +karman_re400,sr,170,68.0,force,lower_fx,0.00342226168140769 +karman_re400,sr,170,68.0,force,lower_fy,-0.005742484237998724 +karman_re400,sr,171,68.4,force,front_fx,-0.0013147348072379827 +karman_re400,sr,171,68.4,force,front_fy,-0.00523805059492588 +karman_re400,sr,171,68.4,force,upper_fx,-0.00452280230820179 +karman_re400,sr,171,68.4,force,upper_fy,0.007121861446648836 +karman_re400,sr,171,68.4,force,lower_fx,0.001869968487881124 +karman_re400,sr,171,68.4,force,lower_fy,-0.0058082090690732 +karman_re400,sr,172,68.8,force,front_fx,-0.0036056609824299812 +karman_re400,sr,172,68.8,force,front_fy,-0.006249400321394205 +karman_re400,sr,172,68.8,force,upper_fx,-0.0003554091672413051 +karman_re400,sr,172,68.8,force,upper_fy,0.008305788971483707 +karman_re400,sr,172,68.8,force,lower_fx,-0.0003360173723194748 +karman_re400,sr,172,68.8,force,lower_fy,-0.00664267223328352 +karman_re400,sr,173,69.2,force,front_fx,-0.003671766724437475 +karman_re400,sr,173,69.2,force,front_fy,-0.006249893456697464 +karman_re400,sr,173,69.2,force,upper_fx,0.003287961706519127 +karman_re400,sr,173,69.2,force,upper_fy,0.008312242105603218 +karman_re400,sr,173,69.2,force,lower_fx,-0.0022055422887206078 +karman_re400,sr,173,69.2,force,lower_fy,-0.007129847537726164 +karman_re400,sr,174,69.6,force,front_fx,-0.0008577347616665065 +karman_re400,sr,174,69.6,force,front_fy,-0.005842266604304314 +karman_re400,sr,174,69.6,force,upper_fx,0.005523307248950005 +karman_re400,sr,174,69.6,force,upper_fy,0.008030624128878117 +karman_re400,sr,174,69.6,force,lower_fx,-0.003729019081220031 +karman_re400,sr,174,69.6,force,lower_fy,-0.005788850132375956 +karman_re400,sr,175,70.0,force,front_fx,0.002800415735691786 +karman_re400,sr,175,70.0,force,front_fy,-0.003390651661902666 +karman_re400,sr,175,70.0,force,upper_fx,0.00619081687182188 +karman_re400,sr,175,70.0,force,upper_fy,0.0075865513645112514 +karman_re400,sr,175,70.0,force,lower_fx,-0.006481728982180357 +karman_re400,sr,175,70.0,force,lower_fy,-0.0029811495915055275 +karman_re400,sr,176,70.4,force,front_fx,0.004038339480757713 +karman_re400,sr,176,70.4,force,front_fy,2.3800148483132944e-06 +karman_re400,sr,176,70.4,force,upper_fx,0.0051286108791828156 +karman_re400,sr,176,70.4,force,upper_fy,0.006613807287067175 +karman_re400,sr,176,70.4,force,lower_fx,-0.00985119678080082 +karman_re400,sr,176,70.4,force,lower_fy,-0.0018243418307974935 +karman_re400,sr,177,70.8,force,front_fx,0.001833210582844913 +karman_re400,sr,177,70.8,force,front_fy,0.0029197365511208773 +karman_re400,sr,177,70.8,force,upper_fx,0.00375297199934721 +karman_re400,sr,177,70.8,force,upper_fy,0.005898460280150175 +karman_re400,sr,177,70.8,force,lower_fx,-0.009646374732255936 +karman_re400,sr,177,70.8,force,lower_fy,-0.004580875858664513 +karman_re400,sr,178,71.2,force,front_fx,-0.0007318570278584957 +karman_re400,sr,178,71.2,force,front_fy,0.004936798941344023 +karman_re400,sr,178,71.2,force,upper_fx,0.0022198432125151157 +karman_re400,sr,178,71.2,force,upper_fy,0.005816252436488867 +karman_re400,sr,178,71.2,force,lower_fx,-0.005088130012154579 +karman_re400,sr,178,71.2,force,lower_fy,-0.006886077579110861 +karman_re400,sr,179,71.6,force,front_fx,-0.0031555593013763428 +karman_re400,sr,179,71.6,force,front_fy,0.006012141238898039 +karman_re400,sr,179,71.6,force,upper_fx,4.2924759327434e-05 +karman_re400,sr,179,71.6,force,upper_fy,0.006491032429039478 +karman_re400,sr,179,71.6,force,lower_fx,-0.0009865498868748546 +karman_re400,sr,179,71.6,force,lower_fy,-0.008097190409898758 +karman_re400,sr,180,72.0,force,front_fx,-0.003873333567753434 +karman_re400,sr,180,72.0,force,front_fy,0.006176580209285021 +karman_re400,sr,180,72.0,force,upper_fx,-0.002029975177720189 +karman_re400,sr,180,72.0,force,upper_fy,0.007139058317989111 +karman_re400,sr,180,72.0,force,lower_fx,0.0028698125388473272 +karman_re400,sr,180,72.0,force,lower_fy,-0.008440742269158363 +karman_re400,sr,181,72.4,force,front_fx,-0.0015620082849636674 +karman_re400,sr,181,72.4,force,front_fy,0.005984253250062466 +karman_re400,sr,181,72.4,force,upper_fx,-0.0035223830491304398 +karman_re400,sr,181,72.4,force,upper_fy,0.0062537663616240025 +karman_re400,sr,181,72.4,force,lower_fx,0.005533137824386358 +karman_re400,sr,181,72.4,force,lower_fy,-0.008097987622022629 +karman_re400,sr,182,72.8,force,front_fx,0.0022805628832429647 +karman_re400,sr,182,72.8,force,front_fy,0.004197814967483282 +karman_re400,sr,182,72.8,force,upper_fx,-0.006002969574183226 +karman_re400,sr,182,72.8,force,upper_fy,0.0035958420485258102 +karman_re400,sr,182,72.8,force,lower_fx,0.0064424872398376465 +karman_re400,sr,182,72.8,force,lower_fy,-0.007588111329823732 +karman_re400,sr,183,73.2,force,front_fx,0.004345562309026718 +karman_re400,sr,183,73.2,force,front_fy,0.0009245246765203774 +karman_re400,sr,183,73.2,force,upper_fx,-0.009488595649600029 +karman_re400,sr,183,73.2,force,upper_fy,0.0015618506586179137 +karman_re400,sr,183,73.2,force,lower_fx,0.0055831074714660645 +karman_re400,sr,183,73.2,force,lower_fy,-0.006689584814012051 +karman_re400,sr,184,73.6,force,front_fx,0.0026363057550042868 +karman_re400,sr,184,73.6,force,front_fy,-0.00210845866240561 +karman_re400,sr,184,73.6,force,upper_fx,-0.010531540960073471 +karman_re400,sr,184,73.6,force,upper_fy,0.0034016105346381664 +karman_re400,sr,184,73.6,force,lower_fx,0.004180676769465208 +karman_re400,sr,184,73.6,force,lower_fy,-0.005882284604012966 +karman_re400,sr,185,74.0,force,front_fx,0.0001348461810266599 +karman_re400,sr,185,74.0,force,front_fy,-0.004550477955490351 +karman_re400,sr,185,74.0,force,upper_fx,-0.006691135931760073 +karman_re400,sr,185,74.0,force,upper_fy,0.006098705343902111 +karman_re400,sr,185,74.0,force,lower_fx,0.00269465334713459 +karman_re400,sr,185,74.0,force,lower_fy,-0.005639438517391682 +karman_re400,sr,186,74.4,force,front_fx,-0.002588513772934675 +karman_re400,sr,186,74.4,force,front_fy,-0.0057562305592000484 +karman_re400,sr,186,74.4,force,upper_fx,-0.0023054322227835655 +karman_re400,sr,186,74.4,force,upper_fy,0.007736572064459324 +karman_re400,sr,186,74.4,force,lower_fx,0.0007399383466690779 +karman_re400,sr,186,74.4,force,lower_fy,-0.0061573912389576435 +karman_re400,sr,187,74.8,force,front_fx,-0.004090276546776295 +karman_re400,sr,187,74.8,force,front_fy,-0.00627051992341876 +karman_re400,sr,187,74.8,force,upper_fx,0.002018823754042387 +karman_re400,sr,187,74.8,force,upper_fy,0.008423027582466602 +karman_re400,sr,187,74.8,force,lower_fx,-0.0014870476443320513 +karman_re400,sr,187,74.8,force,lower_fy,-0.007048852276057005 +karman_re400,sr,188,75.2,force,front_fx,-0.002481580711901188 +karman_re400,sr,188,75.2,force,front_fy,-0.006154567468911409 +karman_re400,sr,188,75.2,force,upper_fx,0.0051177251152694225 +karman_re400,sr,188,75.2,force,upper_fy,0.007870019413530827 +karman_re400,sr,188,75.2,force,lower_fx,-0.003015034133568406 +karman_re400,sr,188,75.2,force,lower_fy,-0.00678207166492939 +karman_re400,sr,189,75.6,force,front_fx,0.0011993939988315105 +karman_re400,sr,189,75.6,force,front_fy,-0.004990953020751476 +karman_re400,sr,189,75.6,force,upper_fx,0.006453635636717081 +karman_re400,sr,189,75.6,force,upper_fy,0.007482543122023344 +karman_re400,sr,189,75.6,force,lower_fx,-0.005015762988477945 +karman_re400,sr,189,75.6,force,lower_fy,-0.004516717046499252 +karman_re400,sr,190,76.0,force,front_fx,0.004141487181186676 +karman_re400,sr,190,76.0,force,front_fy,-0.0017577551770955324 +karman_re400,sr,190,76.0,force,upper_fx,0.006047762464731932 +karman_re400,sr,190,76.0,force,upper_fy,0.006850132718682289 +karman_re400,sr,190,76.0,force,lower_fx,-0.008369237184524536 +karman_re400,sr,190,76.0,force,lower_fy,-0.0017500444082543254 +karman_re400,sr,191,76.4,force,front_fx,0.0032485947012901306 +karman_re400,sr,191,76.4,force,front_fy,0.0012662577209994197 +karman_re400,sr,191,76.4,force,upper_fx,0.0047432794235646725 +karman_re400,sr,191,76.4,force,upper_fy,0.005953397136181593 +karman_re400,sr,191,76.4,force,lower_fx,-0.01086026057600975 +karman_re400,sr,191,76.4,force,lower_fy,-0.0021774095948785543 +karman_re400,sr,192,76.8,force,front_fx,0.0008586171315982938 +karman_re400,sr,192,76.8,force,front_fy,0.004207969177514315 +karman_re400,sr,192,76.8,force,upper_fx,0.0030822008848190308 +karman_re400,sr,192,76.8,force,upper_fy,0.0056139398366212845 +karman_re400,sr,192,76.8,force,lower_fx,-0.008474849164485931 +karman_re400,sr,192,76.8,force,lower_fy,-0.0053008669055998325 +karman_re400,sr,193,77.2,force,front_fx,-0.001982782268896699 +karman_re400,sr,193,77.2,force,front_fy,0.005554124712944031 +karman_re400,sr,193,77.2,force,upper_fx,0.0014782306971028447 +karman_re400,sr,193,77.2,force,upper_fy,0.0058877915143966675 +karman_re400,sr,193,77.2,force,lower_fx,-0.003966883290559053 +karman_re400,sr,193,77.2,force,lower_fy,-0.00731044402346015 +karman_re400,sr,194,77.6,force,front_fx,-0.004015476908534765 +karman_re400,sr,194,77.6,force,front_fy,0.006398742087185383 +karman_re400,sr,194,77.6,force,upper_fx,-0.0006915433914400637 +karman_re400,sr,194,77.6,force,upper_fy,0.006851438898593187 +karman_re400,sr,194,77.6,force,lower_fx,0.0003435700782574713 +karman_re400,sr,194,77.6,force,lower_fy,-0.008453565649688244 +karman_re400,sr,195,78.0,force,front_fx,-0.0033546641934663057 +karman_re400,sr,195,78.0,force,front_fy,0.006253294181078672 +karman_re400,sr,195,78.0,force,upper_fx,-0.0023738830350339413 +karman_re400,sr,195,78.0,force,upper_fy,0.007059555035084486 +karman_re400,sr,195,78.0,force,lower_fx,0.003768115071579814 +karman_re400,sr,195,78.0,force,lower_fy,-0.008129093796014786 +karman_re400,sr,196,78.4,force,front_fx,-0.0001162069384008646 +karman_re400,sr,196,78.4,force,front_fy,0.00556098110973835 +karman_re400,sr,196,78.4,force,upper_fx,-0.00405577989295125 +karman_re400,sr,196,78.4,force,upper_fy,0.005332274828106165 +karman_re400,sr,196,78.4,force,lower_fx,0.005677210167050362 +karman_re400,sr,196,78.4,force,lower_fy,-0.007828985340893269 +karman_re400,sr,197,78.8,force,front_fx,0.003165602684020996 +karman_re400,sr,197,78.8,force,front_fy,0.0024833641946315765 +karman_re400,sr,197,78.8,force,upper_fx,-0.007015339098870754 +karman_re400,sr,197,78.8,force,upper_fy,0.0025767385959625244 +karman_re400,sr,197,78.8,force,lower_fx,0.005972674582153559 +karman_re400,sr,197,78.8,force,lower_fy,-0.0074238539673388 +karman_re400,sr,198,79.2,force,front_fx,0.0035835905000567436 +karman_re400,sr,198,79.2,force,front_fy,-0.000744867546018213 +karman_re400,sr,198,79.2,force,upper_fx,-0.010037840344011784 +karman_re400,sr,198,79.2,force,upper_fy,0.002262529917061329 +karman_re400,sr,198,79.2,force,lower_fx,0.00482593709602952 +karman_re400,sr,198,79.2,force,lower_fy,-0.006407428532838821 +karman_re400,sr,199,79.6,force,front_fx,0.0010887414682656527 +karman_re400,sr,199,79.6,force,front_fy,-0.003615658963099122 +karman_re400,sr,199,79.6,force,upper_fx,-0.008703550323843956 +karman_re400,sr,199,79.6,force,upper_fy,0.005326442886143923 +karman_re400,sr,199,79.6,force,lower_fx,0.003372946986928582 +karman_re400,sr,199,79.6,force,lower_fy,-0.005883476696908474 +karman_re400,sr,200,80.0,force,front_fx,-0.0014677169965580106 +karman_re400,sr,200,80.0,force,front_fy,-0.005244805943220854 +karman_re400,sr,200,80.0,force,upper_fx,-0.004031647462397814 +karman_re400,sr,200,80.0,force,upper_fy,0.007277717813849449 +karman_re400,sr,200,80.0,force,lower_fx,0.0017324520740658045 +karman_re400,sr,200,80.0,force,lower_fy,-0.0059297592379152775 +karman_re400,sr,201,80.4,force,front_fx,-0.003612987697124481 +karman_re400,sr,201,80.4,force,front_fy,-0.006195752415806055 +karman_re400,sr,201,80.4,force,upper_fx,-9.993968706112355e-05 +karman_re400,sr,201,80.4,force,upper_fy,0.008203290402889252 +karman_re400,sr,201,80.4,force,lower_fx,-0.00046276726061478257 +karman_re400,sr,201,80.4,force,lower_fy,-0.006722886580973864 +karman_re400,sr,202,80.8,force,front_fx,-0.0035513988696038723 +karman_re400,sr,202,80.8,force,front_fy,-0.006189781241118908 +karman_re400,sr,202,80.8,force,upper_fx,0.003320072079077363 +karman_re400,sr,202,80.8,force,upper_fy,0.008270643651485443 +karman_re400,sr,202,80.8,force,lower_fx,-0.002288000425323844 +karman_re400,sr,202,80.8,force,lower_fy,-0.007093566469848156 +karman_re400,sr,203,81.2,force,front_fx,-0.0007300589932128787 +karman_re400,sr,203,81.2,force,front_fy,-0.005761540494859219 +karman_re400,sr,203,81.2,force,upper_fx,0.005532820243388414 +karman_re400,sr,203,81.2,force,upper_fy,0.008039267733693123 +karman_re400,sr,203,81.2,force,lower_fx,-0.003854848211631179 +karman_re400,sr,203,81.2,force,lower_fy,-0.005614614114165306 +karman_re400,sr,204,81.6,force,front_fx,0.002871583914384246 +karman_re400,sr,204,81.6,force,front_fy,-0.0033514907117933035 +karman_re400,sr,204,81.6,force,upper_fx,0.00618049455806613 +karman_re400,sr,204,81.6,force,upper_fy,0.007535832934081554 +karman_re400,sr,204,81.6,force,lower_fx,-0.006688681431114674 +karman_re400,sr,204,81.6,force,lower_fy,-0.0027915984392166138 +karman_re400,sr,205,82.0,force,front_fx,0.0040419804863631725 +karman_re400,sr,205,82.0,force,front_fy,-3.5713324905373156e-05 +karman_re400,sr,205,82.0,force,upper_fx,0.005079073831439018 +karman_re400,sr,205,82.0,force,upper_fy,0.006512691266834736 +karman_re400,sr,205,82.0,force,lower_fx,-0.009965463541448116 +karman_re400,sr,205,82.0,force,lower_fy,-0.001723600784316659 +karman_re400,sr,206,82.4,force,front_fx,0.0018966688076034188 +karman_re400,sr,206,82.4,force,front_fy,0.0029054072219878435 +karman_re400,sr,206,82.4,force,upper_fx,0.0037031874526292086 +karman_re400,sr,206,82.4,force,upper_fy,0.005786421708762646 +karman_re400,sr,206,82.4,force,lower_fx,-0.009598657488822937 +karman_re400,sr,206,82.4,force,lower_fy,-0.004426752217113972 +karman_re400,sr,207,82.8,force,front_fx,-0.0006997731979936361 +karman_re400,sr,207,82.8,force,front_fy,0.004915450233966112 +karman_re400,sr,207,82.8,force,upper_fx,0.0021845591254532337 +karman_re400,sr,207,82.8,force,upper_fy,0.00571562210097909 +karman_re400,sr,207,82.8,force,lower_fx,-0.005050638224929571 +karman_re400,sr,207,82.8,force,lower_fy,-0.006757304072380066 +karman_re400,sr,208,83.2,force,front_fx,-0.0031384890899062157 +karman_re400,sr,208,83.2,force,front_fy,0.0060195536352694035 +karman_re400,sr,208,83.2,force,upper_fx,5.689747467840789e-06 +karman_re400,sr,208,83.2,force,upper_fy,0.006420467048883438 +karman_re400,sr,208,83.2,force,lower_fx,-0.0008289231918752193 +karman_re400,sr,208,83.2,force,lower_fy,-0.008036112412810326 +karman_re400,sr,209,83.6,force,front_fx,-0.0038528498262166977 +karman_re400,sr,209,83.6,force,front_fy,0.006208237260580063 +karman_re400,sr,209,83.6,force,upper_fx,-0.0020975295919924974 +karman_re400,sr,209,83.6,force,upper_fy,0.007074939087033272 +karman_re400,sr,209,83.6,force,lower_fx,0.003068269230425358 +karman_re400,sr,209,83.6,force,lower_fy,-0.008351683616638184 +karman_re400,sr,210,84.0,force,front_fx,-0.0014770088018849492 +karman_re400,sr,210,84.0,force,front_fy,0.006021171808242798 +karman_re400,sr,210,84.0,force,upper_fx,-0.003546040039509535 +karman_re400,sr,210,84.0,force,upper_fy,0.00623176759108901 +karman_re400,sr,210,84.0,force,lower_fx,0.005727096926420927 +karman_re400,sr,210,84.0,force,lower_fy,-0.00798881147056818 +karman_re400,sr,211,84.4,force,front_fx,0.002409749897196889 +karman_re400,sr,211,84.4,force,front_fy,0.004190743435174227 +karman_re400,sr,211,84.4,force,upper_fx,-0.006061641499400139 +karman_re400,sr,211,84.4,force,upper_fy,0.003543528728187084 +karman_re400,sr,211,84.4,force,lower_fx,0.006574690341949463 +karman_re400,sr,211,84.4,force,lower_fy,-0.007494415156543255 +karman_re400,sr,212,84.8,force,front_fx,0.0044302367605268955 +karman_re400,sr,212,84.8,force,front_fy,0.0009500732412561774 +karman_re400,sr,212,84.8,force,upper_fx,-0.009589474648237228 +karman_re400,sr,212,84.8,force,upper_fy,0.0014462281251326203 +karman_re400,sr,212,84.8,force,lower_fx,0.005737609229981899 +karman_re400,sr,212,84.8,force,lower_fy,-0.006584277376532555 +karman_re400,sr,213,85.2,force,front_fx,0.002685935003682971 +karman_re400,sr,213,85.2,force,front_fy,-0.002161070005968213 +karman_re400,sr,213,85.2,force,upper_fx,-0.010737650096416473 +karman_re400,sr,213,85.2,force,upper_fy,0.003239663317799568 +karman_re400,sr,213,85.2,force,lower_fx,0.004230537451803684 +karman_re400,sr,213,85.2,force,lower_fy,-0.005838681012392044 +karman_re400,sr,214,85.6,force,front_fx,0.00015774536586832255 +karman_re400,sr,214,85.6,force,front_fy,-0.004612337332218885 +karman_re400,sr,214,85.6,force,upper_fx,-0.007000903598964214 +karman_re400,sr,214,85.6,force,upper_fy,0.006005642935633659 +karman_re400,sr,214,85.6,force,lower_fx,0.002740808529779315 +karman_re400,sr,214,85.6,force,lower_fy,-0.00562661699950695 +karman_re400,sr,215,86.0,force,front_fx,-0.002641227561980486 +karman_re400,sr,215,86.0,force,front_fy,-0.005810821428894997 +karman_re400,sr,215,86.0,force,upper_fx,-0.0026195701211690903 +karman_re400,sr,215,86.0,force,upper_fy,0.007800381630659103 +karman_re400,sr,215,86.0,force,lower_fx,0.000830534496344626 +karman_re400,sr,215,86.0,force,lower_fy,-0.00615858007222414 +karman_re400,sr,216,86.4,force,front_fx,-0.004148350562900305 +karman_re400,sr,216,86.4,force,front_fy,-0.006317415274679661 +karman_re400,sr,216,86.4,force,upper_fx,0.0017964807339012623 +karman_re400,sr,216,86.4,force,upper_fy,0.008516651578247547 +karman_re400,sr,216,86.4,force,lower_fx,-0.0013577246572822332 +karman_re400,sr,216,86.4,force,lower_fy,-0.00709396181628108 +karman_re400,sr,217,86.8,force,front_fx,-0.0025775819085538387 +karman_re400,sr,217,86.8,force,front_fy,-0.006175673566758633 +karman_re400,sr,217,86.8,force,upper_fx,0.004890888463705778 +karman_re400,sr,217,86.8,force,upper_fy,0.007903778925538063 +karman_re400,sr,217,86.8,force,lower_fx,-0.002910339506343007 +karman_re400,sr,217,86.8,force,lower_fy,-0.006841694936156273 +karman_re400,sr,218,87.2,force,front_fx,0.0010761815356090665 +karman_re400,sr,218,87.2,force,front_fy,-0.0049765994772315025 +karman_re400,sr,218,87.2,force,upper_fx,0.006259826943278313 +karman_re400,sr,218,87.2,force,upper_fy,0.007546097505837679 +karman_re400,sr,218,87.2,force,lower_fx,-0.004861661233007908 +karman_re400,sr,218,87.2,force,lower_fy,-0.004621963948011398 +karman_re400,sr,219,87.6,force,front_fx,0.00396298011764884 +karman_re400,sr,219,87.6,force,front_fy,-0.0015919662546366453 +karman_re400,sr,219,87.6,force,upper_fx,0.005888886284083128 +karman_re400,sr,219,87.6,force,upper_fy,0.006988626904785633 +karman_re400,sr,219,87.6,force,lower_fx,-0.00817091390490532 +karman_re400,sr,219,87.6,force,lower_fy,-0.0019338533747941256 +karman_re400,sr,220,88.0,force,front_fx,0.0030995167326182127 +karman_re400,sr,220,88.0,force,front_fy,0.0013558390783146024 +karman_re400,sr,220,88.0,force,upper_fx,0.0046458058059215546 +karman_re400,sr,220,88.0,force,upper_fy,0.006058541592210531 +karman_re400,sr,220,88.0,force,lower_fx,-0.010599259287118912 +karman_re400,sr,220,88.0,force,lower_fy,-0.0024895425885915756 +karman_re400,sr,221,88.4,force,front_fx,0.0006502675241790712 +karman_re400,sr,221,88.4,force,front_fy,0.00425669876858592 +karman_re400,sr,221,88.4,force,upper_fx,0.003020242787897587 +karman_re400,sr,221,88.4,force,upper_fy,0.005713476333767176 +karman_re400,sr,221,88.4,force,lower_fx,-0.008098152466118336 +karman_re400,sr,221,88.4,force,lower_fy,-0.005603720434010029 +karman_re400,sr,222,88.8,force,front_fx,-0.002066698158159852 +karman_re400,sr,222,88.8,force,front_fy,0.005548504181206226 +karman_re400,sr,222,88.8,force,upper_fx,0.0013427147641777992 +karman_re400,sr,222,88.8,force,upper_fy,0.005956762004643679 +karman_re400,sr,222,88.8,force,lower_fx,-0.003606890793889761 +karman_re400,sr,222,88.8,force,lower_fy,-0.007402211893349886 +karman_re400,sr,223,89.2,force,front_fx,-0.004004704765975475 +karman_re400,sr,223,89.2,force,front_fy,0.006340521387755871 +karman_re400,sr,223,89.2,force,upper_fx,-0.0008138876291923225 +karman_re400,sr,223,89.2,force,upper_fy,0.006892440840601921 +karman_re400,sr,223,89.2,force,lower_fx,0.0005203475011512637 +karman_re400,sr,223,89.2,force,lower_fy,-0.008416051045060158 +karman_re400,sr,224,89.6,force,front_fx,-0.003225752618163824 +karman_re400,sr,224,89.6,force,front_fy,0.006220477633178234 +karman_re400,sr,224,89.6,force,upper_fx,-0.002468605525791645 +karman_re400,sr,224,89.6,force,upper_fy,0.007010725326836109 +karman_re400,sr,224,89.6,force,lower_fx,0.0038420697674155235 +karman_re400,sr,224,89.6,force,lower_fy,-0.008144326508045197 +karman_re400,sr,225,90.0,force,front_fx,3.493183248792775e-05 +karman_re400,sr,225,90.0,force,front_fy,0.005487989634275436 +karman_re400,sr,225,90.0,force,upper_fx,-0.004183171782642603 +karman_re400,sr,225,90.0,force,upper_fy,0.005159171298146248 +karman_re400,sr,225,90.0,force,lower_fx,0.005711412522941828 +karman_re400,sr,225,90.0,force,lower_fy,-0.00783534161746502 +karman_re400,sr,226,90.4,force,front_fx,0.0032561314292252064 +karman_re400,sr,226,90.4,force,front_fy,0.002436584560200572 +karman_re400,sr,226,90.4,force,upper_fx,-0.007206783164292574 +karman_re400,sr,226,90.4,force,upper_fy,0.0023851545993238688 +karman_re400,sr,226,90.4,force,lower_fx,0.005922983400523663 +karman_re400,sr,226,90.4,force,lower_fy,-0.007379142101854086 +karman_re400,sr,227,90.8,force,front_fx,0.003609905019402504 +karman_re400,sr,227,90.8,force,front_fy,-0.0007776166312396526 +karman_re400,sr,227,90.8,force,upper_fx,-0.010150441899895668 +karman_re400,sr,227,90.8,force,upper_fy,0.0021552639082074165 +karman_re400,sr,227,90.8,force,lower_fx,0.004739080555737019 +karman_re400,sr,227,90.8,force,lower_fy,-0.006344486027956009 +karman_re400,sr,228,91.2,force,front_fx,0.001107482356019318 +karman_re400,sr,228,91.2,force,front_fy,-0.003630453022196889 +karman_re400,sr,228,91.2,force,upper_fx,-0.00868846382945776 +karman_re400,sr,228,91.2,force,upper_fy,0.005289818160235882 +karman_re400,sr,228,91.2,force,lower_fx,0.003318278817459941 +karman_re400,sr,228,91.2,force,lower_fy,-0.005804333835840225 +karman_re400,sr,229,91.6,force,front_fx,-0.001474234857596457 +karman_re400,sr,229,91.6,force,front_fy,-0.005233910866081715 +karman_re400,sr,229,91.6,force,upper_fx,-0.003899752162396908 +karman_re400,sr,229,91.6,force,upper_fy,0.007346040103584528 +karman_re400,sr,229,91.6,force,lower_fx,0.0016992513556033373 +karman_re400,sr,229,91.6,force,lower_fy,-0.005879081320017576 +karman_re400,sr,230,92.0,force,front_fx,-0.0036119655705988407 +karman_re400,sr,230,92.0,force,front_fy,-0.006207542028278112 +karman_re400,sr,230,92.0,force,upper_fx,0.00017114663205575198 +karman_re400,sr,230,92.0,force,upper_fy,0.008249599486589432 +karman_re400,sr,230,92.0,force,lower_fx,-0.0005539095145650208 +karman_re400,sr,230,92.0,force,lower_fy,-0.006700220052152872 +karman_re400,sr,231,92.4,force,front_fx,-0.003479864215478301 +karman_re400,sr,231,92.4,force,front_fy,-0.006199958268553019 +karman_re400,sr,231,92.4,force,upper_fx,0.003603575751185417 +karman_re400,sr,231,92.4,force,upper_fy,0.008235028013586998 +karman_re400,sr,231,92.4,force,lower_fx,-0.0024064620956778526 +karman_re400,sr,231,92.4,force,lower_fy,-0.007073810324072838 +karman_re400,sr,232,92.8,force,front_fx,-0.0006003827438689768 +karman_re400,sr,232,92.8,force,front_fy,-0.005765863694250584 +karman_re400,sr,232,92.8,force,upper_fx,0.005732386838644743 +karman_re400,sr,232,92.8,force,upper_fy,0.007993750274181366 +karman_re400,sr,232,92.8,force,lower_fx,-0.003926827106624842 +karman_re400,sr,232,92.8,force,lower_fy,-0.005592194851487875 +karman_re400,sr,233,93.2,force,front_fx,0.003052373183891177 +karman_re400,sr,233,93.2,force,front_fy,-0.00329342158511281 +karman_re400,sr,233,93.2,force,upper_fx,0.006272241938859224 +karman_re400,sr,233,93.2,force,upper_fy,0.007511598989367485 +karman_re400,sr,233,93.2,force,lower_fx,-0.006804178468883038 +karman_re400,sr,233,93.2,force,lower_fy,-0.0027010352350771427 +karman_re400,sr,234,93.6,force,front_fx,0.004118617624044418 +karman_re400,sr,234,93.6,force,front_fy,-7.322068267967552e-05 +karman_re400,sr,234,93.6,force,upper_fx,0.005175633355975151 +karman_re400,sr,234,93.6,force,upper_fy,0.006446393206715584 +karman_re400,sr,234,93.6,force,lower_fx,-0.010171938687562943 +karman_re400,sr,234,93.6,force,lower_fy,-0.0016503738006576896 +karman_re400,sr,235,94.0,force,front_fx,0.0019378687720745802 +karman_re400,sr,235,94.0,force,front_fy,0.002941800281405449 +karman_re400,sr,235,94.0,force,upper_fx,0.003727586939930916 +karman_re400,sr,235,94.0,force,upper_fy,0.0057628280483186245 +karman_re400,sr,235,94.0,force,lower_fx,-0.009740311652421951 +karman_re400,sr,235,94.0,force,lower_fy,-0.00449461629614234 +karman_re400,sr,236,94.4,force,front_fx,-0.0006703303079120815 +karman_re400,sr,236,94.4,force,front_fy,0.004934742581099272 +karman_re400,sr,236,94.4,force,upper_fx,0.0022096503525972366 +karman_re400,sr,236,94.4,force,upper_fy,0.00570794939994812 +karman_re400,sr,236,94.4,force,lower_fx,-0.005114877596497536 +karman_re400,sr,236,94.4,force,lower_fy,-0.006759873125702143 +karman_re400,sr,237,94.8,force,front_fx,-0.003160335822030902 +karman_re400,sr,237,94.8,force,front_fy,0.0060402341187000275 +karman_re400,sr,237,94.8,force,upper_fx,8.314774277096149e-06 +karman_re400,sr,237,94.8,force,upper_fy,0.006432110443711281 +karman_re400,sr,237,94.8,force,lower_fx,-0.0009170083794742823 +karman_re400,sr,237,94.8,force,lower_fy,-0.008066178299486637 +karman_re400,sr,238,95.2,force,front_fx,-0.003873300040140748 +karman_re400,sr,238,95.2,force,front_fy,0.006211777217686176 +karman_re400,sr,238,95.2,force,upper_fx,-0.002065678359940648 +karman_re400,sr,238,95.2,force,upper_fy,0.007096678018569946 +karman_re400,sr,238,95.2,force,lower_fx,0.003039746778085828 +karman_re400,sr,238,95.2,force,lower_fy,-0.008362090215086937 +karman_re400,sr,239,95.6,force,front_fx,-0.001501036691479385 +karman_re400,sr,239,95.6,force,front_fy,0.005997275933623314 +karman_re400,sr,239,95.6,force,upper_fx,-0.003516464726999402 +karman_re400,sr,239,95.6,force,upper_fy,0.006228110287338495 +karman_re400,sr,239,95.6,force,lower_fx,0.005673439707607031 +karman_re400,sr,239,95.6,force,lower_fy,-0.007994504645466805 +karman_re400,sr,240,96.0,force,front_fx,0.002391900634393096 +karman_re400,sr,240,96.0,force,front_fy,0.004136980045586824 +karman_re400,sr,240,96.0,force,upper_fx,-0.006015100982040167 +karman_re400,sr,240,96.0,force,upper_fy,0.003562122816219926 +karman_re400,sr,240,96.0,force,lower_fx,0.006533144041895866 +karman_re400,sr,240,96.0,force,lower_fy,-0.007515784353017807 +karman_re400,sr,241,96.4,force,front_fx,0.0043779341503977776 +karman_re400,sr,241,96.4,force,front_fy,0.0008781183278188109 +karman_re400,sr,241,96.4,force,upper_fx,-0.009549597278237343 +karman_re400,sr,241,96.4,force,upper_fy,0.0015120489988476038 +karman_re400,sr,241,96.4,force,lower_fx,0.005685917101800442 +karman_re400,sr,241,96.4,force,lower_fy,-0.0066278004087507725 +karman_re400,sr,242,96.8,force,front_fx,0.0026012405287474394 +karman_re400,sr,242,96.8,force,front_fy,-0.0022133714519441128 +karman_re400,sr,242,96.8,force,upper_fx,-0.010620535351336002 +karman_re400,sr,242,96.8,force,upper_fy,0.0033869012258946896 +karman_re400,sr,242,96.8,force,lower_fx,0.004202242475003004 +karman_re400,sr,242,96.8,force,lower_fy,-0.0058694570325315 +karman_re400,sr,243,97.2,force,front_fx,7.816751167410985e-05 +karman_re400,sr,243,97.2,force,front_fy,-0.004646612796932459 +karman_re400,sr,243,97.2,force,upper_fx,-0.006838825531303883 +karman_re400,sr,243,97.2,force,upper_fy,0.006088390946388245 +karman_re400,sr,243,97.2,force,lower_fx,0.002694811439141631 +karman_re400,sr,243,97.2,force,lower_fy,-0.005655348766595125 +karman_re400,sr,244,97.6,force,front_fx,-0.002685406245291233 +karman_re400,sr,244,97.6,force,front_fy,-0.00582371698692441 +karman_re400,sr,244,97.6,force,upper_fx,-0.002503579016774893 +karman_re400,sr,244,97.6,force,upper_fy,0.007824811153113842 +karman_re400,sr,244,97.6,force,lower_fx,0.0007616943912580609 +karman_re400,sr,244,97.6,force,lower_fy,-0.006181654520332813 +karman_re400,sr,245,98.0,force,front_fx,-0.004136951174587011 +karman_re400,sr,245,98.0,force,front_fy,-0.006303770467638969 +karman_re400,sr,245,98.0,force,upper_fx,0.0018591731786727905 +karman_re400,sr,245,98.0,force,upper_fy,0.0085240937769413 +karman_re400,sr,245,98.0,force,lower_fx,-0.001414088997989893 +karman_re400,sr,245,98.0,force,lower_fy,-0.0070938002318143845 +karman_re400,sr,246,98.4,force,front_fx,-0.0024946359917521477 +karman_re400,sr,246,98.4,force,front_fy,-0.006174623500555754 +karman_re400,sr,246,98.4,force,upper_fx,0.004937742371112108 +karman_re400,sr,246,98.4,force,upper_fy,0.007941775023937225 +karman_re400,sr,246,98.4,force,lower_fx,-0.002967291744425893 +karman_re400,sr,246,98.4,force,lower_fy,-0.006804157514125109 +karman_re400,sr,247,98.8,force,front_fx,0.0011940605472773314 +karman_re400,sr,247,98.8,force,front_fy,-0.004923565778881311 +karman_re400,sr,247,98.8,force,upper_fx,0.006270532496273518 +karman_re400,sr,247,98.8,force,upper_fy,0.007564438506960869 +karman_re400,sr,247,98.8,force,lower_fx,-0.004959638696163893 +karman_re400,sr,247,98.8,force,lower_fy,-0.004531866405159235 +karman_re400,sr,248,99.2,force,front_fx,0.004014147911220789 +karman_re400,sr,248,99.2,force,front_fy,-0.001528944238089025 +karman_re400,sr,248,99.2,force,upper_fx,0.005835284013301134 +karman_re400,sr,248,99.2,force,upper_fy,0.006981457583606243 +karman_re400,sr,248,99.2,force,lower_fx,-0.008303668349981308 +karman_re400,sr,248,99.2,force,lower_fy,-0.0018932801904156804 +karman_re400,sr,249,99.6,force,front_fx,0.0030750827863812447 +karman_re400,sr,249,99.6,force,front_fy,0.001434453297406435 +karman_re400,sr,249,99.6,force,upper_fx,0.004587023984640837 +karman_re400,sr,249,99.6,force,upper_fy,0.006062714383006096 +karman_re400,sr,249,99.6,force,lower_fx,-0.010630862787365913 +karman_re400,sr,249,99.6,force,lower_fy,-0.0025530634447932243 +karman_re400,sr,250,100.0,force,front_fx,0.0005909466999582946 +karman_re400,sr,250,100.0,force,front_fy,0.004268955904990435 +karman_re400,sr,250,100.0,force,upper_fx,0.0029885589610785246 +karman_re400,sr,250,100.0,force,upper_fy,0.005713271908462048 +karman_re400,sr,250,100.0,force,lower_fx,-0.007992655038833618 +karman_re400,sr,250,100.0,force,lower_fy,-0.005707816686481237 +karman_re400,sr,251,100.4,force,front_fx,-0.0021079983562231064 +karman_re400,sr,251,100.4,force,front_fy,0.005561690777540207 +karman_re400,sr,251,100.4,force,upper_fx,0.0013040867634117603 +karman_re400,sr,251,100.4,force,upper_fy,0.0059943851083517075 +karman_re400,sr,251,100.4,force,lower_fx,-0.003428378142416477 +karman_re400,sr,251,100.4,force,lower_fy,-0.007486709393560886 +karman_re400,sr,252,100.8,force,front_fx,-0.004013298079371452 +karman_re400,sr,252,100.8,force,front_fy,0.006333180703222752 +karman_re400,sr,252,100.8,force,upper_fx,-0.0008908557356335223 +karman_re400,sr,252,100.8,force,upper_fy,0.006933544296771288 +karman_re400,sr,252,100.8,force,lower_fx,0.0007146058487705886 +karman_re400,sr,252,100.8,force,lower_fy,-0.008443853817880154 +karman_re400,sr,253,101.2,force,front_fx,-0.0031494079157710075 +karman_re400,sr,253,101.2,force,front_fy,0.006209350656718016 +karman_re400,sr,253,101.2,force,upper_fx,-0.002533441176638007 +karman_re400,sr,253,101.2,force,upper_fy,0.007014700677245855 +karman_re400,sr,253,101.2,force,lower_fx,0.004004877991974354 +karman_re400,sr,253,101.2,force,lower_fy,-0.00813209731131792 +karman_re400,sr,254,101.6,force,front_fx,0.00013112193846609443 +karman_re400,sr,254,101.6,force,front_fy,0.0054503995925188065 +karman_re400,sr,254,101.6,force,upper_fx,-0.004278175067156553 +karman_re400,sr,254,101.6,force,upper_fy,0.0051086656749248505 +karman_re400,sr,254,101.6,force,lower_fx,0.005804942920804024 +karman_re400,sr,254,101.6,force,lower_fy,-0.007821779698133469 +karman_re400,sr,255,102.0,force,front_fx,0.0033680310007184744 +karman_re400,sr,255,102.0,force,front_fy,0.002375843469053507 +karman_re400,sr,255,102.0,force,upper_fx,-0.007333158049732447 +karman_re400,sr,255,102.0,force,upper_fy,0.0023104797583073378 +karman_re400,sr,255,102.0,force,lower_fx,0.00595246534794569 +karman_re400,sr,255,102.0,force,lower_fy,-0.007353887427598238 +karman_re400,sr,256,102.4,force,front_fx,0.0036126822233200073 +karman_re400,sr,256,102.4,force,front_fy,-0.0007492867298424244 +karman_re400,sr,256,102.4,force,upper_fx,-0.010289175435900688 +karman_re400,sr,256,102.4,force,upper_fy,0.00213844352401793 +karman_re400,sr,256,102.4,force,lower_fx,0.004768548533320427 +karman_re400,sr,256,102.4,force,lower_fy,-0.006293067242950201 +karman_re400,sr,257,102.8,force,front_fx,0.0011292027775198221 +karman_re400,sr,257,102.8,force,front_fy,-0.0036566152703016996 +karman_re400,sr,257,102.8,force,upper_fx,-0.008694127202033997 +karman_re400,sr,257,102.8,force,upper_fy,0.005317258648574352 +karman_re400,sr,257,102.8,force,lower_fx,0.003315898822620511 +karman_re400,sr,257,102.8,force,lower_fy,-0.0057825916446745396 +karman_re400,sr,258,103.2,force,front_fx,-0.00147357361856848 +karman_re400,sr,258,103.2,force,front_fy,-0.005225421395152807 +karman_re400,sr,258,103.2,force,upper_fx,-0.0039078593254089355 +karman_re400,sr,258,103.2,force,upper_fy,0.0073258052580058575 +karman_re400,sr,258,103.2,force,lower_fx,0.0016926622483879328 +karman_re400,sr,258,103.2,force,lower_fy,-0.0058584981597959995 +karman_re400,sr,259,103.6,force,front_fx,-0.0036327424459159374 +karman_re400,sr,259,103.6,force,front_fy,-0.00621454231441021 +karman_re400,sr,259,103.6,force,upper_fx,0.0001968091237358749 +karman_re400,sr,259,103.6,force,upper_fy,0.008258987218141556 +karman_re400,sr,259,103.6,force,lower_fx,-0.0005752707365900278 +karman_re400,sr,259,103.6,force,lower_fy,-0.006708419416099787 +karman_re400,sr,260,104.0,force,front_fx,-0.0034867238719016314 +karman_re400,sr,260,104.0,force,front_fy,-0.006185814272612333 +karman_re400,sr,260,104.0,force,upper_fx,0.0036502594593912363 +karman_re400,sr,260,104.0,force,upper_fy,0.00820174254477024 +karman_re400,sr,260,104.0,force,lower_fx,-0.002408351982012391 +karman_re400,sr,260,104.0,force,lower_fy,-0.007066352292895317 +karman_re400,sr,261,104.4,force,front_fx,-0.0005981677677482367 +karman_re400,sr,261,104.4,force,front_fy,-0.0057489811442792416 +karman_re400,sr,261,104.4,force,upper_fx,0.005752465222030878 +karman_re400,sr,261,104.4,force,upper_fy,0.007960064336657524 +karman_re400,sr,261,104.4,force,lower_fx,-0.003926710691303015 +karman_re400,sr,261,104.4,force,lower_fy,-0.005583553109318018 +karman_re400,sr,262,104.8,force,front_fx,0.0030681323260068893 +karman_re400,sr,262,104.8,force,front_fy,-0.003258353564888239 +karman_re400,sr,262,104.8,force,upper_fx,0.006290927529335022 +karman_re400,sr,262,104.8,force,upper_fy,0.0074897692538797855 +karman_re400,sr,262,104.8,force,lower_fx,-0.006794212851673365 +karman_re400,sr,262,104.8,force,lower_fy,-0.0026897788047790527 +karman_re400,sr,263,105.2,force,front_fx,0.004100439138710499 +karman_re400,sr,263,105.2,force,front_fy,-5.332854198059067e-05 +karman_re400,sr,263,105.2,force,upper_fx,0.005182299762964249 +karman_re400,sr,263,105.2,force,upper_fy,0.0064321947284042835 +karman_re400,sr,263,105.2,force,lower_fx,-0.010171486996114254 +karman_re400,sr,263,105.2,force,lower_fy,-0.001643581548705697 +karman_re400,sr,264,105.6,force,front_fx,0.0019214678322896361 +karman_re400,sr,264,105.6,force,front_fy,0.0029703048057854176 +karman_re400,sr,264,105.6,force,upper_fx,0.003720170585438609 +karman_re400,sr,264,105.6,force,upper_fy,0.005749281495809555 +karman_re400,sr,264,105.6,force,lower_fx,-0.009727705270051956 +karman_re400,sr,264,105.6,force,lower_fy,-0.004490607883781195 +karman_re400,sr,265,106.0,force,front_fx,-0.0007063004886731505 +karman_re400,sr,265,106.0,force,front_fy,0.004948596004396677 +karman_re400,sr,265,106.0,force,upper_fx,0.0021793090272694826 +karman_re400,sr,265,106.0,force,upper_fy,0.005697750486433506 +karman_re400,sr,265,106.0,force,lower_fx,-0.005136547610163689 +karman_re400,sr,265,106.0,force,lower_fy,-0.006735629867762327 +karman_re400,sr,266,106.4,force,front_fx,-0.003183125052601099 +karman_re400,sr,266,106.4,force,front_fy,0.006063501350581646 +karman_re400,sr,266,106.4,force,upper_fx,4.158240244578337e-06 +karman_re400,sr,266,106.4,force,upper_fy,0.0064110904932022095 +karman_re400,sr,266,106.4,force,lower_fx,-0.0009541473700664937 +karman_re400,sr,266,106.4,force,lower_fy,-0.008076302707195282 +karman_re400,sr,267,106.8,force,front_fx,-0.0038761573377996683 +karman_re400,sr,267,106.8,force,front_fy,0.006236662156879902 +karman_re400,sr,267,106.8,force,upper_fx,-0.0020711752586066723 +karman_re400,sr,267,106.8,force,upper_fy,0.0070799593813717365 +karman_re400,sr,267,106.8,force,lower_fx,0.0030099719297140837 +karman_re400,sr,267,106.8,force,lower_fy,-0.008369703777134418 +karman_re400,sr,268,107.2,force,front_fx,-0.0014485137071460485 +karman_re400,sr,268,107.2,force,front_fy,0.006010300014168024 +karman_re400,sr,268,107.2,force,upper_fx,-0.0035195397213101387 +karman_re400,sr,268,107.2,force,upper_fy,0.006204385310411453 +karman_re400,sr,268,107.2,force,lower_fx,0.005647030659019947 +karman_re400,sr,268,107.2,force,lower_fy,-0.008007533848285675 +karman_re400,sr,269,107.6,force,front_fx,0.0024364094715565443 +karman_re400,sr,269,107.6,force,front_fy,0.004089039750397205 +karman_re400,sr,269,107.6,force,upper_fx,-0.006038570776581764 +karman_re400,sr,269,107.6,force,upper_fy,0.003535228781402111 +karman_re400,sr,269,107.6,force,lower_fx,0.00648488337174058 +karman_re400,sr,269,107.6,force,lower_fy,-0.007521944120526314 +karman_re400,sr,270,108.0,force,front_fx,0.004349812399595976 +karman_re400,sr,270,108.0,force,front_fy,0.0007657168316654861 +karman_re400,sr,270,108.0,force,upper_fx,-0.009559627622365952 +karman_re400,sr,270,108.0,force,upper_fy,0.001565252896398306 +karman_re400,sr,270,108.0,force,lower_fx,0.005617472343146801 +karman_re400,sr,270,108.0,force,lower_fy,-0.0066617452539503574 +karman_re400,sr,271,108.4,force,front_fx,0.002508479868993163 +karman_re400,sr,271,108.4,force,front_fy,-0.0022999125067144632 +karman_re400,sr,271,108.4,force,upper_fx,-0.010540643706917763 +karman_re400,sr,271,108.4,force,upper_fy,0.0035305696073919535 +karman_re400,sr,271,108.4,force,lower_fx,0.004154404625296593 +karman_re400,sr,271,108.4,force,lower_fy,-0.005900778342038393 +karman_re400,sr,272,108.8,force,front_fx,-3.99396158172749e-05 +karman_re400,sr,272,108.8,force,front_fy,-0.00469447486102581 +karman_re400,sr,272,108.8,force,upper_fx,-0.006667328532785177 +karman_re400,sr,272,108.8,force,upper_fy,0.0062399934977293015 +karman_re400,sr,272,108.8,force,lower_fx,0.002658286364749074 +karman_re400,sr,272,108.8,force,lower_fy,-0.005707831587642431 +karman_re400,sr,273,109.2,force,front_fx,-0.0027441123966127634 +karman_re400,sr,273,109.2,force,front_fy,-0.005848792847245932 +karman_re400,sr,273,109.2,force,upper_fx,-0.0023338920436799526 +karman_re400,sr,273,109.2,force,upper_fy,0.007900040596723557 +karman_re400,sr,273,109.2,force,lower_fx,0.0007045280071906745 +karman_re400,sr,273,109.2,force,lower_fy,-0.006246618460863829 +karman_re400,sr,274,109.6,force,front_fx,-0.004125229548662901 +karman_re400,sr,274,109.6,force,front_fy,-0.006284119561314583 +karman_re400,sr,274,109.6,force,upper_fx,0.0019494480220600963 +karman_re400,sr,274,109.6,force,upper_fy,0.008564959280192852 +karman_re400,sr,274,109.6,force,lower_fx,-0.0014740019105374813 +karman_re400,sr,274,109.6,force,lower_fy,-0.007143278140574694 +karman_re400,sr,275,110.0,force,front_fx,-0.002408983651548624 +karman_re400,sr,275,110.0,force,front_fy,-0.006149286404252052 +karman_re400,sr,275,110.0,force,upper_fx,0.004996977746486664 +karman_re400,sr,275,110.0,force,upper_fy,0.007998621091246605 +karman_re400,sr,275,110.0,force,lower_fx,-0.0030209296382963657 +karman_re400,sr,275,110.0,force,lower_fy,-0.0067802127450704575 +karman_re400,sr,276,110.4,force,front_fx,0.0012785461731255054 +karman_re400,sr,276,110.4,force,front_fy,-0.004854308441281319 +karman_re400,sr,276,110.4,force,upper_fx,0.006268231198191643 +karman_re400,sr,276,110.4,force,upper_fy,0.007610431406646967 +karman_re400,sr,276,110.4,force,lower_fx,-0.005075806751847267 +karman_re400,sr,276,110.4,force,lower_fy,-0.004452413413673639 +karman_re400,sr,277,110.8,force,front_fx,0.004063756670802832 +karman_re400,sr,277,110.8,force,front_fy,-0.001474554999731481 +karman_re400,sr,277,110.8,force,upper_fx,0.005793771240860224 +karman_re400,sr,277,110.8,force,upper_fy,0.00697840191423893 +karman_re400,sr,277,110.8,force,lower_fx,-0.008426258340477943 +karman_re400,sr,277,110.8,force,lower_fy,-0.001852451590821147 +karman_re400,sr,278,111.2,force,front_fx,0.0030418261885643005 +karman_re400,sr,278,111.2,force,front_fy,0.0014727151719853282 +karman_re400,sr,278,111.2,force,upper_fx,0.0045272307470440865 +karman_re400,sr,278,111.2,force,upper_fy,0.00605779280886054 +karman_re400,sr,278,111.2,force,lower_fx,-0.010658062994480133 +karman_re400,sr,278,111.2,force,lower_fy,-0.002649205969646573 +karman_re400,sr,279,111.6,force,front_fx,0.0005689235404133797 +karman_re400,sr,279,111.6,force,front_fy,0.00426831329241395 +karman_re400,sr,279,111.6,force,upper_fx,0.0029721492901444435 +karman_re400,sr,279,111.6,force,upper_fy,0.005705689080059528 +karman_re400,sr,279,111.6,force,lower_fx,-0.00781457033008337 +karman_re400,sr,279,111.6,force,lower_fy,-0.0058079068548977375 +karman_re400,sr,280,112.0,force,front_fx,-0.00212994497269392 +karman_re400,sr,280,112.0,force,front_fy,0.005548169836401939 +karman_re400,sr,280,112.0,force,upper_fx,0.0012372948694974184 +karman_re400,sr,280,112.0,force,upper_fy,0.006005806382745504 +karman_re400,sr,280,112.0,force,lower_fx,-0.0032353985588997602 +karman_re400,sr,280,112.0,force,lower_fy,-0.0075176130048930645 +karman_re400,sr,281,112.4,force,front_fx,-0.004007797688245773 +karman_re400,sr,281,112.4,force,front_fy,0.006320095155388117 +karman_re400,sr,281,112.4,force,upper_fx,-0.0009794853394851089 +karman_re400,sr,281,112.4,force,upper_fy,0.006948688067495823 +karman_re400,sr,281,112.4,force,lower_fx,0.0009429010679014027 +karman_re400,sr,281,112.4,force,lower_fy,-0.008412989787757397 +karman_re400,sr,282,112.8,force,front_fx,-0.003086586482822895 +karman_re400,sr,282,112.8,force,front_fy,0.006183747202157974 +karman_re400,sr,282,112.8,force,upper_fx,-0.0026178094558417797 +karman_re400,sr,282,112.8,force,upper_fy,0.006985119543969631 +karman_re400,sr,282,112.8,force,lower_fx,0.0041884188540279865 +karman_re400,sr,282,112.8,force,lower_fy,-0.00806247815489769 +karman_re400,sr,283,113.2,force,front_fx,0.00022451713448390365 +karman_re400,sr,283,113.2,force,front_fy,0.005414109211415052 +karman_re400,sr,283,113.2,force,upper_fx,-0.004365058150142431 +karman_re400,sr,283,113.2,force,upper_fy,0.005050997249782085 +karman_re400,sr,283,113.2,force,lower_fx,0.005952472798526287 +karman_re400,sr,283,113.2,force,lower_fy,-0.007762429304420948 +karman_re400,sr,284,113.6,force,front_fx,0.003500614780932665 +karman_re400,sr,284,113.6,force,front_fy,0.002356714801862836 +karman_re400,sr,284,113.6,force,upper_fx,-0.007463535759598017 +karman_re400,sr,284,113.6,force,upper_fy,0.0022146303672343493 +karman_re400,sr,284,113.6,force,lower_fx,0.006028948817402124 +karman_re400,sr,284,113.6,force,lower_fy,-0.007268128916621208 +karman_re400,sr,285,114.0,force,front_fx,0.00362601806409657 +karman_re400,sr,285,114.0,force,front_fy,-0.0007079035276547074 +karman_re400,sr,285,114.0,force,upper_fx,-0.010428216308355331 +karman_re400,sr,285,114.0,force,upper_fy,0.002046763664111495 +karman_re400,sr,285,114.0,force,lower_fx,0.00483879866078496 +karman_re400,sr,285,114.0,force,lower_fy,-0.0062117320485413074 +karman_re400,sr,286,114.4,force,front_fx,0.0012064604088664055 +karman_re400,sr,286,114.4,force,front_fy,-0.0036810606252402067 +karman_re400,sr,286,114.4,force,upper_fx,-0.008808459155261517 +karman_re400,sr,286,114.4,force,upper_fy,0.005180210340768099 +karman_re400,sr,286,114.4,force,lower_fx,0.0033154019620269537 +karman_re400,sr,286,114.4,force,lower_fy,-0.005718617234379053 +karman_re400,sr,287,114.8,force,front_fx,-0.0014613522216677666 +karman_re400,sr,287,114.8,force,front_fy,-0.005244138650596142 +karman_re400,sr,287,114.8,force,upper_fx,-0.004101098980754614 +karman_re400,sr,287,114.8,force,upper_fy,0.007218983955681324 +karman_re400,sr,287,114.8,force,lower_fx,0.0017034596530720592 +karman_re400,sr,287,114.8,force,lower_fy,-0.005801775958389044 +karman_re400,sr,288,115.2,force,front_fx,-0.003654971718788147 +karman_re400,sr,288,115.2,force,front_fy,-0.006252898368984461 +karman_re400,sr,288,115.2,force,upper_fx,7.174475467763841e-05 +karman_re400,sr,288,115.2,force,upper_fy,0.008255776949226856 +karman_re400,sr,288,115.2,force,lower_fx,-0.000530222721863538 +karman_re400,sr,288,115.2,force,lower_fy,-0.006666345056146383 +karman_re400,sr,289,115.6,force,front_fx,-0.0035312562249600887 +karman_re400,sr,289,115.6,force,front_fy,-0.00622168043628335 +karman_re400,sr,289,115.6,force,upper_fx,0.0035901465453207493 +karman_re400,sr,289,115.6,force,upper_fy,0.008195833303034306 +karman_re400,sr,289,115.6,force,lower_fx,-0.0023669914808124304 +karman_re400,sr,289,115.6,force,lower_fy,-0.007053942885249853 +karman_re400,sr,290,116.0,force,front_fx,-0.0005895178765058517 +karman_re400,sr,290,116.0,force,front_fy,-0.0057763345539569855 +karman_re400,sr,290,116.0,force,upper_fx,0.00572286918759346 +karman_re400,sr,290,116.0,force,upper_fy,0.00793062336742878 +karman_re400,sr,290,116.0,force,lower_fx,-0.00388256274163723 +karman_re400,sr,290,116.0,force,lower_fy,-0.0056005180813372135 +karman_re400,sr,291,116.4,force,front_fx,0.0030471107456833124 +karman_re400,sr,291,116.4,force,front_fy,-0.0032092162873595953 +karman_re400,sr,291,116.4,force,upper_fx,0.006255882792174816 +karman_re400,sr,291,116.4,force,upper_fy,0.007489430718123913 +karman_re400,sr,291,116.4,force,lower_fx,-0.006754374597221613 +karman_re400,sr,291,116.4,force,lower_fy,-0.0027331921737641096 +karman_re400,sr,292,116.8,force,front_fx,0.0040518008172512054 +karman_re400,sr,292,116.8,force,front_fy,6.072169344406575e-05 +karman_re400,sr,292,116.8,force,upper_fx,0.005161372013390064 +karman_re400,sr,292,116.8,force,upper_fy,0.0064714932814240456 +karman_re400,sr,292,116.8,force,lower_fx,-0.010103183798491955 +karman_re400,sr,292,116.8,force,lower_fy,-0.0017352636205032468 +karman_re400,sr,293,117.2,force,front_fx,0.001803739694878459 +karman_re400,sr,293,117.2,force,front_fy,0.0030557468999177217 +karman_re400,sr,293,117.2,force,upper_fx,0.0036943841259926558 +karman_re400,sr,293,117.2,force,upper_fy,0.005804441403597593 +karman_re400,sr,293,117.2,force,lower_fx,-0.009662697091698647 +karman_re400,sr,293,117.2,force,lower_fy,-0.004605597350746393 +karman_re400,sr,294,117.6,force,front_fx,-0.0008164668688550591 +karman_re400,sr,294,117.6,force,front_fy,0.005010351538658142 +karman_re400,sr,294,117.6,force,upper_fx,0.0021579782478511333 +karman_re400,sr,294,117.6,force,upper_fy,0.0057737152092158794 +karman_re400,sr,294,117.6,force,lower_fx,-0.005063001997768879 +karman_re400,sr,294,117.6,force,lower_fy,-0.006861886940896511 +karman_re400,sr,295,118.0,force,front_fx,-0.0032455625478178263 +karman_re400,sr,295,118.0,force,front_fy,0.006077638361603022 +karman_re400,sr,295,118.0,force,upper_fx,-1.528726534161251e-05 +karman_re400,sr,295,118.0,force,upper_fy,0.006479437928646803 +karman_re400,sr,295,118.0,force,lower_fx,-0.0009284276748076081 +karman_re400,sr,295,118.0,force,lower_fy,-0.008152373135089874 +karman_re400,sr,296,118.4,force,front_fx,-0.003861060133203864 +karman_re400,sr,296,118.4,force,front_fy,0.006231681909412146 +karman_re400,sr,296,118.4,force,upper_fx,-0.002063548192381859 +karman_re400,sr,296,118.4,force,upper_fy,0.007137631997466087 +karman_re400,sr,296,118.4,force,lower_fx,0.0029654938261955976 +karman_re400,sr,296,118.4,force,lower_fy,-0.008422654122114182 +karman_re400,sr,297,118.8,force,front_fx,-0.0014120120322331786 +karman_re400,sr,297,118.8,force,front_fy,0.005980507005006075 +karman_re400,sr,297,118.8,force,upper_fx,-0.003539159195497632 +karman_re400,sr,297,118.8,force,upper_fy,0.006173540838062763 +karman_re400,sr,297,118.8,force,lower_fx,0.005552602466195822 +karman_re400,sr,297,118.8,force,lower_fy,-0.008080807514488697 +karman_re400,sr,298,119.2,force,front_fx,0.0024297721683979034 +karman_re400,sr,298,119.2,force,front_fy,0.004020607564598322 +karman_re400,sr,298,119.2,force,upper_fx,-0.006084314547479153 +karman_re400,sr,298,119.2,force,upper_fy,0.0034949416294693947 +karman_re400,sr,298,119.2,force,lower_fx,0.006388802081346512 +karman_re400,sr,298,119.2,force,lower_fy,-0.007588217034935951 +karman_re400,sr,299,119.6,force,front_fx,0.004296170547604561 +karman_re400,sr,299,119.6,force,front_fy,0.0006645377725362778 +karman_re400,sr,299,119.6,force,upper_fx,-0.00956662930548191 +karman_re400,sr,299,119.6,force,upper_fy,0.0016350409714505076 +karman_re400,sr,299,119.6,force,lower_fx,0.005493327509611845 +karman_re400,sr,299,119.6,force,lower_fy,-0.0067037115804851055 +karman_re400,sr,300,120.0,force,front_fx,0.0024128095246851444 +karman_re400,sr,300,120.0,force,front_fy,-0.0023410103749483824 +karman_re400,sr,300,120.0,force,upper_fx,-0.010362398810684681 +karman_re400,sr,300,120.0,force,upper_fy,0.003740878077223897 +karman_re400,sr,300,120.0,force,lower_fx,0.004080184269696474 +karman_re400,sr,300,120.0,force,lower_fy,-0.005922072567045689 +karman_re400,sr,301,120.4,force,front_fx,-0.00011022426770068705 +karman_re400,sr,301,120.4,force,front_fy,-0.004681124351918697 +karman_re400,sr,301,120.4,force,upper_fx,-0.0063158380798995495 +karman_re400,sr,301,120.4,force,upper_fy,0.006364105734974146 +karman_re400,sr,301,120.4,force,lower_fx,0.00260387035086751 +karman_re400,sr,301,120.4,force,lower_fy,-0.005723313894122839 +karman_re400,sr,302,120.8,force,front_fx,-0.0027642815839499235 +karman_re400,sr,302,120.8,force,front_fy,-0.0058373212814331055 +karman_re400,sr,302,120.8,force,upper_fx,-0.0020209411159157753 +karman_re400,sr,302,120.8,force,upper_fy,0.007885174825787544 +karman_re400,sr,302,120.8,force,lower_fx,0.000577961269300431 +karman_re400,sr,302,120.8,force,lower_fy,-0.006281103007495403 +karman_re400,sr,303,121.2,force,front_fx,-0.004070450086146593 +karman_re400,sr,303,121.2,force,front_fy,-0.0062300777062773705 +karman_re400,sr,303,121.2,force,upper_fx,0.0021811299957334995 +karman_re400,sr,303,121.2,force,upper_fy,0.00850773137062788 +karman_re400,sr,303,121.2,force,lower_fx,-0.0015987810911610723 +karman_re400,sr,303,121.2,force,lower_fy,-0.007123871240764856 +karman_re400,sr,304,121.6,force,front_fx,-0.0022930530831217766 +karman_re400,sr,304,121.6,force,front_fy,-0.006113126873970032 +karman_re400,sr,304,121.6,force,upper_fx,0.005187276750802994 +karman_re400,sr,304,121.6,force,upper_fy,0.007982091046869755 +karman_re400,sr,304,121.6,force,lower_fx,-0.0031427110079675913 +karman_re400,sr,304,121.6,force,lower_fy,-0.00669883145019412 +karman_re400,sr,305,122.0,force,front_fx,0.0014380402863025665 +karman_re400,sr,305,122.0,force,front_fy,-0.004793926142156124 +karman_re400,sr,305,122.0,force,upper_fx,0.006410240661352873 +karman_re400,sr,305,122.0,force,upper_fy,0.0075734942220151424 +karman_re400,sr,305,122.0,force,lower_fx,-0.005246929358690977 +karman_re400,sr,305,122.0,force,lower_fy,-0.00431670481339097 +karman_re400,sr,306,122.4,force,front_fx,0.004205594304949045 +karman_re400,sr,306,122.4,force,front_fy,-0.0015288734575733542 +karman_re400,sr,306,122.4,force,upper_fx,0.005872577428817749 +karman_re400,sr,306,122.4,force,upper_fy,0.006856434978544712 +karman_re400,sr,306,122.4,force,lower_fx,-0.008645341731607914 +karman_re400,sr,306,122.4,force,lower_fy,-0.0017088874010369182 +karman_re400,sr,307,122.8,force,front_fx,0.003093171399086714 +karman_re400,sr,307,122.8,force,front_fy,0.0014720914186909795 +karman_re400,sr,307,122.8,force,upper_fx,0.004553103819489479 +karman_re400,sr,307,122.8,force,upper_fy,0.005977131891995668 +karman_re400,sr,307,122.8,force,lower_fx,-0.010799739509820938 +karman_re400,sr,307,122.8,force,lower_fy,-0.0025340882129967213 +karman_re400,sr,308,123.2,force,front_fx,0.0006501983152702451 +karman_re400,sr,308,123.2,force,front_fy,0.0042665391229093075 +karman_re400,sr,308,123.2,force,upper_fx,0.0029794066213071346 +karman_re400,sr,308,123.2,force,upper_fy,0.005626284517347813 +karman_re400,sr,308,123.2,force,lower_fx,-0.007927076891064644 +karman_re400,sr,308,123.2,force,lower_fy,-0.005630934610962868 +karman_re400,sr,309,123.6,force,front_fx,-0.0021262518130242825 +karman_re400,sr,309,123.6,force,front_fy,0.005571482237428427 +karman_re400,sr,309,123.6,force,upper_fx,0.0012643896043300629 +karman_re400,sr,309,123.6,force,upper_fy,0.00596223771572113 +karman_re400,sr,309,123.6,force,lower_fx,-0.00336487521417439 +karman_re400,sr,309,123.6,force,lower_fy,-0.007461650297045708 +karman_re400,sr,310,124.0,force,front_fx,-0.004031052812933922 +karman_re400,sr,310,124.0,force,front_fy,0.006344684399664402 +karman_re400,sr,310,124.0,force,upper_fx,-0.0009561180486343801 +karman_re400,sr,310,124.0,force,upper_fy,0.006915020756423473 +karman_re400,sr,310,124.0,force,lower_fx,0.0009429119527339935 +karman_re400,sr,310,124.0,force,lower_fy,-0.00839334074407816 +karman_re400,sr,311,124.4,force,front_fx,-0.003109672339633107 +karman_re400,sr,311,124.4,force,front_fy,0.0062154727056622505 +karman_re400,sr,311,124.4,force,upper_fx,-0.0025929268449544907 +karman_re400,sr,311,124.4,force,upper_fy,0.0069887153804302216 +karman_re400,sr,311,124.4,force,lower_fx,0.00422086613252759 +karman_re400,sr,311,124.4,force,lower_fy,-0.007997240871191025 +karman_re400,sr,312,124.8,force,front_fx,0.0002461663680151105 +karman_re400,sr,312,124.8,force,front_fy,0.005430889315903187 +karman_re400,sr,312,124.8,force,upper_fx,-0.004328226204961538 +karman_re400,sr,312,124.8,force,upper_fy,0.005096126813441515 +karman_re400,sr,312,124.8,force,lower_fx,0.006000291556119919 +karman_re400,sr,312,124.8,force,lower_fy,-0.0076940227299928665 +karman_re400,sr,313,125.2,force,front_fx,0.0035102185793220997 +karman_re400,sr,313,125.2,force,front_fy,0.0023008135613054037 +karman_re400,sr,313,125.2,force,upper_fx,-0.007434103637933731 +karman_re400,sr,313,125.2,force,upper_fy,0.0022716261446475983 +karman_re400,sr,313,125.2,force,lower_fx,0.0060669127851724625 +karman_re400,sr,313,125.2,force,lower_fy,-0.007245082873851061 +karman_re400,sr,314,125.6,force,front_fx,0.0035814724396914244 +karman_re400,sr,314,125.6,force,front_fy,-0.00074103067163378 +karman_re400,sr,314,125.6,force,upper_fx,-0.010403774678707123 +karman_re400,sr,314,125.6,force,upper_fy,0.0020844442769885063 +karman_re400,sr,314,125.6,force,lower_fx,0.004904234781861305 +karman_re400,sr,314,125.6,force,lower_fy,-0.006203890312463045 +karman_re400,sr,315,126.0,force,front_fx,0.0011482485570013523 +karman_re400,sr,315,126.0,force,front_fy,-0.0037624856922775507 +karman_re400,sr,315,126.0,force,upper_fx,-0.008843895047903061 +karman_re400,sr,315,126.0,force,upper_fy,0.005157981533557177 +karman_re400,sr,315,126.0,force,lower_fx,0.0033099206630140543 +karman_re400,sr,315,126.0,force,lower_fy,-0.005753717385232449 +karman_re400,sr,316,126.4,force,front_fx,-0.001524953288026154 +karman_re400,sr,316,126.4,force,front_fy,-0.005299165844917297 +karman_re400,sr,316,126.4,force,upper_fx,-0.004243479110300541 +karman_re400,sr,316,126.4,force,upper_fy,0.0071964021772146225 +karman_re400,sr,316,126.4,force,lower_fx,0.0017223622417077422 +karman_re400,sr,316,126.4,force,lower_fy,-0.005835541523993015 +karman_re400,sr,317,126.8,force,front_fx,-0.0037179267965257168 +karman_re400,sr,317,126.8,force,front_fy,-0.006284893024712801 +karman_re400,sr,317,126.8,force,upper_fx,-0.0001297869603149593 +karman_re400,sr,317,126.8,force,upper_fy,0.008301978930830956 +karman_re400,sr,317,126.8,force,lower_fx,-0.0004712571098934859 +karman_re400,sr,317,126.8,force,lower_fy,-0.006704729050397873 +karman_re400,sr,318,127.2,force,front_fx,-0.003570057451725006 +karman_re400,sr,318,127.2,force,front_fy,-0.0062315394170582294 +karman_re400,sr,318,127.2,force,upper_fx,0.003407076932489872 +karman_re400,sr,318,127.2,force,upper_fy,0.008255594410002232 +karman_re400,sr,318,127.2,force,lower_fx,-0.0022711316123604774 +karman_re400,sr,318,127.2,force,lower_fy,-0.00709037110209465 +karman_re400,sr,319,127.6,force,front_fx,-0.000643144128844142 +karman_re400,sr,319,127.6,force,front_fy,-0.005765780806541443 +karman_re400,sr,319,127.6,force,upper_fx,0.005536405835300684 +karman_re400,sr,319,127.6,force,upper_fy,0.007969504222273827 +karman_re400,sr,319,127.6,force,lower_fx,-0.003832609159871936 +karman_re400,sr,319,127.6,force,lower_fy,-0.005607350263744593 +karman_re400,sr,320,128.0,force,front_fx,0.0029164496809244156 +karman_re400,sr,320,128.0,force,front_fy,-0.0031688078306615353 +karman_re400,sr,320,128.0,force,upper_fx,0.006129402667284012 +karman_re400,sr,320,128.0,force,upper_fy,0.007533871103078127 +karman_re400,sr,320,128.0,force,lower_fx,-0.006660042330622673 +karman_re400,sr,320,128.0,force,lower_fy,-0.002783798612654209 +karman_re400,sr,321,128.4,force,front_fx,0.003948399797081947 +karman_re400,sr,321,128.4,force,front_fy,0.00020320358453318477 +karman_re400,sr,321,128.4,force,upper_fx,0.0050129066221416 +karman_re400,sr,321,128.4,force,upper_fy,0.00653491448611021 +karman_re400,sr,321,128.4,force,lower_fx,-0.009927487000823021 +karman_re400,sr,321,128.4,force,lower_fy,-0.0018525830237194896 +karman_re400,sr,322,128.8,force,front_fx,0.0016595595516264439 +karman_re400,sr,322,128.8,force,front_fy,0.0030960298608988523 +karman_re400,sr,322,128.8,force,upper_fx,0.00363325048238039 +karman_re400,sr,322,128.8,force,upper_fy,0.00584732461720705 +karman_re400,sr,322,128.8,force,lower_fx,-0.009420251473784447 +karman_re400,sr,322,128.8,force,lower_fy,-0.00473319785669446 +karman_re400,sr,323,129.2,force,front_fx,-0.0009231452131643891 +karman_re400,sr,323,129.2,force,front_fy,0.005033832974731922 +karman_re400,sr,323,129.2,force,upper_fx,0.0020827632397413254 +karman_re400,sr,323,129.2,force,upper_fy,0.005818166770040989 +karman_re400,sr,323,129.2,force,lower_fx,-0.004771545063704252 +karman_re400,sr,323,129.2,force,lower_fy,-0.006982666440308094 +karman_re400,sr,324,129.6,force,front_fx,-0.003271757857874036 +karman_re400,sr,324,129.6,force,front_fy,0.00606698589399457 +karman_re400,sr,324,129.6,force,upper_fx,-0.00011230458767386153 +karman_re400,sr,324,129.6,force,upper_fy,0.006516068708151579 +karman_re400,sr,324,129.6,force,lower_fx,-0.000683600315824151 +karman_re400,sr,324,129.6,force,lower_fy,-0.008152701891958714 +karman_re400,sr,325,130.0,force,front_fx,-0.003785043954849243 +karman_re400,sr,325,130.0,force,front_fy,0.006206096615642309 +karman_re400,sr,325,130.0,force,upper_fx,-0.0021499893628060818 +karman_re400,sr,325,130.0,force,upper_fy,0.0071200900711119175 +karman_re400,sr,325,130.0,force,lower_fx,0.0030853552743792534 +karman_re400,sr,325,130.0,force,lower_fy,-0.008389095775783062 +karman_re400,sr,326,130.4,force,front_fx,-0.0013070544227957726 +karman_re400,sr,326,130.4,force,front_fy,0.005947926081717014 +karman_re400,sr,326,130.4,force,upper_fx,-0.003629653947427869 +karman_re400,sr,326,130.4,force,upper_fy,0.006091844290494919 +karman_re400,sr,326,130.4,force,lower_fx,0.005615647416561842 +karman_re400,sr,326,130.4,force,lower_fy,-0.008095755241811275 +karman_re400,sr,327,130.8,force,front_fx,0.002536754123866558 +karman_re400,sr,327,130.8,force,front_fy,0.003974557854235172 +karman_re400,sr,327,130.8,force,upper_fx,-0.0062204585410654545 +karman_re400,sr,327,130.8,force,upper_fy,0.003367180470377207 +karman_re400,sr,327,130.8,force,lower_fx,0.006421411409974098 +karman_re400,sr,327,130.8,force,lower_fy,-0.0075704362243413925 +karman_re400,sr,328,131.2,force,front_fx,0.004328105133026838 +karman_re400,sr,328,131.2,force,front_fy,0.0006836479296907783 +karman_re400,sr,328,131.2,force,upper_fx,-0.009704295545816422 +karman_re400,sr,328,131.2,force,upper_fy,0.0015619865152984858 +karman_re400,sr,328,131.2,force,lower_fx,0.0054870713502168655 +karman_re400,sr,328,131.2,force,lower_fy,-0.006635076832026243 +karman_re400,sr,329,131.6,force,front_fx,0.0024442856665700674 +karman_re400,sr,329,131.6,force,front_fy,-0.002348455600440502 +karman_re400,sr,329,131.6,force,upper_fx,-0.010362925939261913 +karman_re400,sr,329,131.6,force,upper_fy,0.0037198271602392197 +karman_re400,sr,329,131.6,force,lower_fx,0.004062343388795853 +karman_re400,sr,329,131.6,force,lower_fy,-0.005860079079866409 +karman_re400,sr,330,132.0,force,front_fx,-8.658769365865737e-05 +karman_re400,sr,330,132.0,force,front_fy,-0.004664512351155281 +karman_re400,sr,330,132.0,force,upper_fx,-0.0062725055031478405 +karman_re400,sr,330,132.0,force,upper_fy,0.006291946861892939 +karman_re400,sr,330,132.0,force,lower_fx,0.0025842473842203617 +karman_re400,sr,330,132.0,force,lower_fy,-0.005669885315001011 +karman_re400,sr,331,132.4,force,front_fx,-0.0027600377798080444 +karman_re400,sr,331,132.4,force,front_fy,-0.005846564192324877 +karman_re400,sr,331,132.4,force,upper_fx,-0.001960715278983116 +karman_re400,sr,331,132.4,force,upper_fy,0.007844286039471626 +karman_re400,sr,331,132.4,force,lower_fx,0.000555190839804709 +karman_re400,sr,331,132.4,force,lower_fy,-0.006252987310290337 +karman_re400,sr,332,132.8,force,front_fx,-0.0040703462436795235 +karman_re400,sr,332,132.8,force,front_fy,-0.006232134532183409 +karman_re400,sr,332,132.8,force,upper_fx,0.0022759404964745045 +karman_re400,sr,332,132.8,force,upper_fy,0.008459586650133133 +karman_re400,sr,332,132.8,force,lower_fx,-0.001638038782402873 +karman_re400,sr,332,132.8,force,lower_fy,-0.0070843156427145 +karman_re400,sr,333,133.2,force,front_fx,-0.0022522597573697567 +karman_re400,sr,333,133.2,force,front_fy,-0.006119735073298216 +karman_re400,sr,333,133.2,force,upper_fx,0.005293530412018299 +karman_re400,sr,333,133.2,force,upper_fy,0.007917101494967937 +karman_re400,sr,333,133.2,force,lower_fx,-0.003153265453875065 +karman_re400,sr,333,133.2,force,lower_fy,-0.006669482681900263 +karman_re400,sr,334,133.6,force,front_fx,0.001508750719949603 +karman_re400,sr,334,133.6,force,front_fy,-0.004772621672600508 +karman_re400,sr,334,133.6,force,upper_fx,0.006482867989689112 +karman_re400,sr,334,133.6,force,upper_fy,0.007505521178245544 +karman_re400,sr,334,133.6,force,lower_fx,-0.005272283684462309 +karman_re400,sr,334,133.6,force,lower_fy,-0.004290243145078421 +karman_re400,sr,335,134.0,force,front_fx,0.004252077080309391 +karman_re400,sr,335,134.0,force,front_fy,-0.0015273138415068388 +karman_re400,sr,335,134.0,force,upper_fx,0.005944511853158474 +karman_re400,sr,335,134.0,force,upper_fy,0.006791932042688131 +karman_re400,sr,335,134.0,force,lower_fx,-0.008683585561811924 +karman_re400,sr,335,134.0,force,lower_fy,-0.0016696195816621184 +karman_re400,sr,336,134.4,force,front_fx,0.003084328956902027 +karman_re400,sr,336,134.4,force,front_fy,0.0015091042732819915 +karman_re400,sr,336,134.4,force,upper_fx,0.004588990472257137 +karman_re400,sr,336,134.4,force,upper_fy,0.005941237322986126 +karman_re400,sr,336,134.4,force,lower_fx,-0.01084830891340971 +karman_re400,sr,336,134.4,force,lower_fy,-0.002459586365148425 +karman_re400,sr,337,134.8,force,front_fx,0.0006493811961263418 +karman_re400,sr,337,134.8,force,front_fy,0.004322732333093882 +karman_re400,sr,337,134.8,force,upper_fx,0.00298155564814806 +karman_re400,sr,337,134.8,force,upper_fy,0.0056169647723436356 +karman_re400,sr,337,134.8,force,lower_fx,-0.008044629357755184 +karman_re400,sr,337,134.8,force,lower_fy,-0.005539656151086092 +karman_re400,sr,338,135.2,force,front_fx,-0.002169452141970396 +karman_re400,sr,338,135.2,force,front_fy,0.005617231596261263 +karman_re400,sr,338,135.2,force,upper_fx,0.0012981344480067492 +karman_re400,sr,338,135.2,force,upper_fy,0.005957878194749355 +karman_re400,sr,338,135.2,force,lower_fx,-0.0035376728046685457 +karman_re400,sr,338,135.2,force,lower_fy,-0.0074413432739675045 +karman_re400,sr,339,135.6,force,front_fx,-0.0040736268274486065 +karman_re400,sr,339,135.6,force,front_fy,0.0063803838565945625 +karman_re400,sr,339,135.6,force,upper_fx,-0.0008879704982973635 +karman_re400,sr,339,135.6,force,upper_fy,0.006925852503627539 +karman_re400,sr,339,135.6,force,lower_fx,0.0007944739772938192 +karman_re400,sr,339,135.6,force,lower_fy,-0.008438636548817158 +karman_re400,sr,340,136.0,force,front_fx,-0.003145464463159442 +karman_re400,sr,340,136.0,force,front_fy,0.006236797198653221 +karman_re400,sr,340,136.0,force,upper_fx,-0.002523383591324091 +karman_re400,sr,340,136.0,force,upper_fy,0.007004736457020044 +karman_re400,sr,340,136.0,force,lower_fx,0.004096019081771374 +karman_re400,sr,340,136.0,force,lower_fy,-0.008030048571527004 +karman_re400,sr,341,136.4,force,front_fx,0.00021690776338800788 +karman_re400,sr,341,136.4,force,front_fy,0.005427415482699871 +karman_re400,sr,341,136.4,force,upper_fx,-0.004277072846889496 +karman_re400,sr,341,136.4,force,upper_fy,0.005131658166646957 +karman_re400,sr,341,136.4,force,lower_fx,0.00588690210133791 +karman_re400,sr,341,136.4,force,lower_fy,-0.007723840419203043 +karman_re400,sr,342,136.8,force,front_fx,0.003414069302380085 +karman_re400,sr,342,136.8,force,front_fy,0.0022197605576366186 +karman_re400,sr,342,136.8,force,upper_fx,-0.007345288991928101 +karman_re400,sr,342,136.8,force,upper_fy,0.002363910200074315 +karman_re400,sr,342,136.8,force,lower_fx,0.005979882553219795 +karman_re400,sr,342,136.8,force,lower_fy,-0.007298153825104237 +karman_re400,sr,343,137.2,force,front_fx,0.003482357831671834 +karman_re400,sr,343,137.2,force,front_fy,-0.0008594503160566092 +karman_re400,sr,343,137.2,force,upper_fx,-0.010256321169435978 +karman_re400,sr,343,137.2,force,upper_fy,0.0022562185768038034 +karman_re400,sr,343,137.2,force,lower_fx,0.004818479530513287 +karman_re400,sr,343,137.2,force,lower_fy,-0.006263918709009886 +karman_re400,sr,344,137.6,force,front_fx,0.000997814116999507 +karman_re400,sr,344,137.6,force,front_fy,-0.0038133009802550077 +karman_re400,sr,344,137.6,force,upper_fx,-0.00861725490540266 +karman_re400,sr,344,137.6,force,upper_fy,0.00532972626388073 +karman_re400,sr,344,137.6,force,lower_fx,0.0032751518301665783 +karman_re400,sr,344,137.6,force,lower_fy,-0.005818909965455532 +karman_re400,sr,345,138.0,force,front_fx,-0.0016142327804118395 +karman_re400,sr,345,138.0,force,front_fy,-0.005321962758898735 +karman_re400,sr,345,138.0,force,upper_fx,-0.004008837975561619 +karman_re400,sr,345,138.0,force,upper_fy,0.007287354674190283 +karman_re400,sr,345,138.0,force,lower_fx,0.0016494208248332143 +karman_re400,sr,345,138.0,force,lower_fy,-0.005898051895201206 +karman_re400,sr,346,138.4,force,front_fx,-0.00373259698972106 +karman_re400,sr,346,138.4,force,front_fy,-0.006260034628212452 +karman_re400,sr,346,138.4,force,upper_fx,9.758492524269968e-06 +karman_re400,sr,346,138.4,force,upper_fy,0.008286595344543457 +karman_re400,sr,346,138.4,force,lower_fx,-0.0005367132253013551 +karman_re400,sr,346,138.4,force,lower_fy,-0.006761221680790186 +karman_re400,sr,347,138.8,force,front_fx,-0.0035020452924072742 +karman_re400,sr,347,138.8,force,front_fy,-0.006210299674421549 +karman_re400,sr,347,138.8,force,upper_fx,0.0034449975937604904 +karman_re400,sr,347,138.8,force,upper_fy,0.008251783438026905 +karman_re400,sr,347,138.8,force,lower_fx,-0.0023160981945693493 +karman_re400,sr,347,138.8,force,lower_fy,-0.007082391530275345 +karman_re400,sr,348,139.2,force,front_fx,-0.0005504741566255689 +karman_re400,sr,348,139.2,force,front_fy,-0.005721734371036291 +karman_re400,sr,348,139.2,force,upper_fx,0.005537945777177811 +karman_re400,sr,348,139.2,force,upper_fy,0.007978376932442188 +karman_re400,sr,348,139.2,force,lower_fx,-0.003902273252606392 +karman_re400,sr,348,139.2,force,lower_fy,-0.005513274110853672 +karman_re400,sr,349,139.6,force,front_fx,0.002963629551231861 +karman_re400,sr,349,139.6,force,front_fy,-0.003117630258202553 +karman_re400,sr,349,139.6,force,upper_fx,0.006103693973273039 +karman_re400,sr,349,139.6,force,upper_fy,0.007514994591474533 +karman_re400,sr,349,139.6,force,lower_fx,-0.006779405288398266 +karman_re400,sr,349,139.6,force,lower_fy,-0.0026722392067313194 +karman_re400,sr,350,140.0,force,front_fx,0.0039388565346598625 +karman_re400,sr,350,140.0,force,front_fy,0.0002225602074759081 +karman_re400,sr,350,140.0,force,upper_fx,0.004963379818946123 +karman_re400,sr,350,140.0,force,upper_fy,0.006490846164524555 +karman_re400,sr,350,140.0,force,lower_fx,-0.009993243031203747 +karman_re400,sr,350,140.0,force,lower_fy,-0.0018232224974781275 +karman_re400,sr,351,140.4,force,front_fx,0.0016618665540590882 +karman_re400,sr,351,140.4,force,front_fy,0.003118065884336829 +karman_re400,sr,351,140.4,force,upper_fx,0.00360085372813046 +karman_re400,sr,351,140.4,force,upper_fy,0.005803227890282869 +karman_re400,sr,351,140.4,force,lower_fx,-0.009361710399389267 +karman_re400,sr,351,140.4,force,lower_fy,-0.004723972640931606 +karman_re400,sr,352,140.8,force,front_fx,-0.0009388512116856873 +karman_re400,sr,352,140.8,force,front_fy,0.005025723483413458 +karman_re400,sr,352,140.8,force,upper_fx,0.002050151815637946 +karman_re400,sr,352,140.8,force,upper_fy,0.005786858033388853 +karman_re400,sr,352,140.8,force,lower_fx,-0.004671934992074966 +karman_re400,sr,352,140.8,force,lower_fy,-0.006989592686295509 +karman_re400,sr,353,141.2,force,front_fx,-0.003274385817348957 +karman_re400,sr,353,141.2,force,front_fy,0.006068682298064232 +karman_re400,sr,353,141.2,force,upper_fx,-0.00016297186084557325 +karman_re400,sr,353,141.2,force,upper_fy,0.006505610421299934 +karman_re400,sr,353,141.2,force,lower_fx,-0.0005246975342743099 +karman_re400,sr,353,141.2,force,lower_fy,-0.008144844323396683 +karman_re400,sr,354,141.6,force,front_fx,-0.003761658677831292 +karman_re400,sr,354,141.6,force,front_fy,0.006209079176187515 +karman_re400,sr,354,141.6,force,upper_fx,-0.0022118613123893738 +karman_re400,sr,354,141.6,force,upper_fy,0.007098430301994085 +karman_re400,sr,354,141.6,force,lower_fx,0.0032276632264256477 +karman_re400,sr,354,141.6,force,lower_fy,-0.00833817943930626 +karman_re400,sr,355,142.0,force,front_fx,-0.0012428718619048595 +karman_re400,sr,355,142.0,force,front_fy,0.005940632428973913 +karman_re400,sr,355,142.0,force,upper_fx,-0.003656222717836499 +karman_re400,sr,355,142.0,force,upper_fy,0.006061323918402195 +karman_re400,sr,355,142.0,force,lower_fx,0.005726105999201536 +karman_re400,sr,355,142.0,force,lower_fy,-0.008048984222114086 +karman_re400,sr,356,142.4,force,front_fx,0.0026209885254502296 +karman_re400,sr,356,142.4,force,front_fy,0.003944500349462032 +karman_re400,sr,356,142.4,force,upper_fx,-0.006278487388044596 +karman_re400,sr,356,142.4,force,upper_fy,0.003306018188595772 +karman_re400,sr,356,142.4,force,lower_fx,0.006488794460892677 +karman_re400,sr,356,142.4,force,lower_fy,-0.007527044974267483 +karman_re400,sr,357,142.8,force,front_fx,0.004366727080196142 +karman_re400,sr,357,142.8,force,front_fy,0.0007039884221740067 +karman_re400,sr,357,142.8,force,upper_fx,-0.009787697345018387 +karman_re400,sr,357,142.8,force,upper_fy,0.0014930299948900938 +karman_re400,sr,357,142.8,force,lower_fx,0.005555869545787573 +karman_re400,sr,357,142.8,force,lower_fy,-0.006573365535587072 +karman_re400,sr,358,143.2,force,front_fx,0.0024613228160887957 +karman_re400,sr,358,143.2,force,front_fy,-0.0023729719687253237 +karman_re400,sr,358,143.2,force,upper_fx,-0.010445219464600086 +karman_re400,sr,358,143.2,force,upper_fy,0.0036693818401545286 +karman_re400,sr,358,143.2,force,lower_fx,0.004070955328643322 +karman_re400,sr,358,143.2,force,lower_fy,-0.005820172373205423 +karman_re400,sr,359,143.6,force,front_fx,-6.873745587654412e-05 +karman_re400,sr,359,143.6,force,front_fy,-0.004689539782702923 +karman_re400,sr,359,143.6,force,upper_fx,-0.0063704741187393665 +karman_re400,sr,359,143.6,force,upper_fy,0.006228738930076361 +karman_re400,sr,359,143.6,force,lower_fx,0.0025905719958245754 +karman_re400,sr,359,143.6,force,lower_fy,-0.005643845070153475 +karman_re400,sr,360,144.0,force,front_fx,-0.0027842624112963676 +karman_re400,sr,360,144.0,force,front_fy,-0.005870715249329805 +karman_re400,sr,360,144.0,force,upper_fx,-0.0020769163966178894 +karman_re400,sr,360,144.0,force,upper_fy,0.007845661602914333 +karman_re400,sr,360,144.0,force,lower_fx,0.0005677635781466961 +karman_re400,sr,360,144.0,force,lower_fy,-0.006230367813259363 +karman_re400,sr,361,144.4,force,front_fx,-0.004091923590749502 +karman_re400,sr,361,144.4,force,front_fy,-0.006260614842176437 +karman_re400,sr,361,144.4,force,upper_fx,0.002216341905295849 +karman_re400,sr,361,144.4,force,upper_fy,0.008477458730340004 +karman_re400,sr,361,144.4,force,lower_fx,-0.0016033672727644444 +karman_re400,sr,361,144.4,force,lower_fy,-0.007078725844621658 +karman_re400,sr,362,144.8,force,front_fx,-0.0022575443144887686 +karman_re400,sr,362,144.8,force,front_fy,-0.006135151255875826 +karman_re400,sr,362,144.8,force,upper_fx,0.005236591678112745 +karman_re400,sr,362,144.8,force,upper_fy,0.007907402701675892 +karman_re400,sr,362,144.8,force,lower_fx,-0.0031300208065658808 +karman_re400,sr,362,144.8,force,lower_fy,-0.00667141517624259 +karman_re400,sr,363,145.2,force,front_fx,0.0015112487599253654 +karman_re400,sr,363,145.2,force,front_fy,-0.004748757928609848 +karman_re400,sr,363,145.2,force,upper_fx,0.006428217515349388 +karman_re400,sr,363,145.2,force,upper_fy,0.007507529109716415 +karman_re400,sr,363,145.2,force,lower_fx,-0.005230543203651905 +karman_re400,sr,363,145.2,force,lower_fy,-0.0043090879917144775 +karman_re400,sr,364,145.6,force,front_fx,0.004205220378935337 +karman_re400,sr,364,145.6,force,front_fy,-0.0014269782695919275 +karman_re400,sr,364,145.6,force,upper_fx,0.005886666942387819 +karman_re400,sr,364,145.6,force,upper_fy,0.006827692501246929 +karman_re400,sr,364,145.6,force,lower_fx,-0.008635728619992733 +karman_re400,sr,364,145.6,force,lower_fy,-0.00172652886249125 +karman_re400,sr,365,146.0,force,front_fx,0.0029971559997648 +karman_re400,sr,365,146.0,force,front_fy,0.0015884732129052281 +karman_re400,sr,365,146.0,force,upper_fx,0.004546469543129206 +karman_re400,sr,365,146.0,force,upper_fy,0.005981063935905695 +karman_re400,sr,365,146.0,force,lower_fx,-0.01075967587530613 +karman_re400,sr,365,146.0,force,lower_fy,-0.0025881798937916756 +karman_re400,sr,366,146.4,force,front_fx,0.0005378311616368592 +karman_re400,sr,366,146.4,force,front_fy,0.004375268705189228 +karman_re400,sr,366,146.4,force,upper_fx,0.0029494641348719597 +karman_re400,sr,366,146.4,force,upper_fy,0.005662843119353056 +karman_re400,sr,366,146.4,force,lower_fx,-0.00790405459702015 +karman_re400,sr,366,146.4,force,lower_fy,-0.005666726268827915 +karman_re400,sr,367,146.8,force,front_fx,-0.0022363457828760147 +karman_re400,sr,367,146.8,force,front_fy,0.0056427293457090855 +karman_re400,sr,367,146.8,force,upper_fx,0.0012421824503690004 +karman_re400,sr,367,146.8,force,upper_fy,0.006007250398397446 +karman_re400,sr,367,146.8,force,lower_fx,-0.0034167813137173653 +karman_re400,sr,367,146.8,force,lower_fy,-0.007513186428695917 +karman_re400,sr,368,147.2,force,front_fx,-0.00408893870189786 +karman_re400,sr,368,147.2,force,front_fy,0.006363242398947477 +karman_re400,sr,368,147.2,force,upper_fx,-0.0009291082387790084 +karman_re400,sr,368,147.2,force,upper_fy,0.006967262830585241 +karman_re400,sr,368,147.2,force,lower_fx,0.0008526854799129069 +karman_re400,sr,368,147.2,force,lower_fy,-0.0084729278460145 +karman_re400,sr,369,147.6,force,front_fx,-0.0030851110350340605 +karman_re400,sr,369,147.6,force,front_fy,0.006228169891983271 +karman_re400,sr,369,147.6,force,upper_fx,-0.0025595419574528933 +karman_re400,sr,369,147.6,force,upper_fy,0.006999610457569361 +karman_re400,sr,369,147.6,force,lower_fx,0.00411069905385375 +karman_re400,sr,369,147.6,force,lower_fy,-0.008069880306720734 +karman_re400,sr,370,148.0,force,front_fx,0.00030174487619660795 +karman_re400,sr,370,148.0,force,front_fy,0.005382099188864231 +karman_re400,sr,370,148.0,force,upper_fx,-0.00433715432882309 +karman_re400,sr,370,148.0,force,upper_fy,0.005059758201241493 +karman_re400,sr,370,148.0,force,lower_fx,0.0058698104694485664 +karman_re400,sr,370,148.0,force,lower_fy,-0.007754470221698284 +karman_re400,sr,371,148.4,force,front_fx,0.003438370767980814 +karman_re400,sr,371,148.4,force,front_fy,0.0021542049944400787 +karman_re400,sr,371,148.4,force,upper_fx,-0.007431728765368462 +karman_re400,sr,371,148.4,force,upper_fy,0.0023029290605336428 +karman_re400,sr,371,148.4,force,lower_fx,0.0059106373228132725 +karman_re400,sr,371,148.4,force,lower_fy,-0.007304864469915628 +karman_re400,sr,372,148.8,force,front_fx,0.003460223088040948 +karman_re400,sr,372,148.8,force,front_fy,-0.0009248932474292815 +karman_re400,sr,372,148.8,force,upper_fx,-0.010276254266500473 +karman_re400,sr,372,148.8,force,upper_fy,0.0022994903847575188 +karman_re400,sr,372,148.8,force,lower_fx,0.004738877527415752 +karman_re400,sr,372,148.8,force,lower_fy,-0.006264531519263983 +karman_re400,sr,373,149.2,force,front_fx,0.0009407648467458785 +karman_re400,sr,373,149.2,force,front_fy,-0.003834497882053256 +karman_re400,sr,373,149.2,force,upper_fx,-0.008495443500578403 +karman_re400,sr,373,149.2,force,upper_fy,0.005435684230178595 +karman_re400,sr,373,149.2,force,lower_fx,0.003233651164919138 +karman_re400,sr,373,149.2,force,lower_fy,-0.005811937619000673 +karman_re400,sr,374,149.6,force,front_fx,-0.0016505303792655468 +karman_re400,sr,374,149.6,force,front_fy,-0.005315952468663454 +karman_re400,sr,374,149.6,force,upper_fx,-0.003800035919994116 +karman_re400,sr,374,149.6,force,upper_fy,0.007377395406365395 +karman_re400,sr,374,149.6,force,lower_fx,0.0015959414886310697 +karman_re400,sr,374,149.6,force,lower_fy,-0.005909566301852465 +karman_re400,sr,375,150.0,force,front_fx,-0.003740493441000581 +karman_re400,sr,375,150.0,force,front_fy,-0.00624790508300066 +karman_re400,sr,375,150.0,force,upper_fx,0.00024352018954232335 +karman_re400,sr,375,150.0,force,upper_fy,0.008292796090245247 +karman_re400,sr,375,150.0,force,lower_fx,-0.0006314981146715581 +karman_re400,sr,375,150.0,force,lower_fy,-0.006782222539186478 +karman_re400,sr,376,150.4,force,front_fx,-0.0034316317178308964 +karman_re400,sr,376,150.4,force,front_fy,-0.006192006636410952 +karman_re400,sr,376,150.4,force,upper_fx,0.003631721716374159 +karman_re400,sr,376,150.4,force,upper_fy,0.008217363618314266 +karman_re400,sr,376,150.4,force,lower_fx,-0.002405864419415593 +karman_re400,sr,376,150.4,force,lower_fy,-0.00706886313855648 +karman_re400,sr,377,150.8,force,front_fx,-0.00044666806934401393 +karman_re400,sr,377,150.8,force,front_fy,-0.005689810961484909 +karman_re400,sr,377,150.8,force,upper_fx,0.005665105767548084 +karman_re400,sr,377,150.8,force,upper_fy,0.007947173900902271 +karman_re400,sr,377,150.8,force,lower_fx,-0.0039824433624744415 +karman_re400,sr,377,150.8,force,lower_fy,-0.0054510366171598434 +karman_re400,sr,378,151.2,force,front_fx,0.0030854172073304653 +karman_re400,sr,378,151.2,force,front_fy,-0.003065031487494707 +karman_re400,sr,378,151.2,force,upper_fx,0.006155071314424276 +karman_re400,sr,378,151.2,force,upper_fy,0.007484284695237875 +karman_re400,sr,378,151.2,force,lower_fx,-0.006901772692799568 +karman_re400,sr,378,151.2,force,lower_fy,-0.0025737183168530464 +karman_re400,sr,379,151.6,force,front_fx,0.003975857049226761 +karman_re400,sr,379,151.6,force,front_fy,0.0001796350843505934 +karman_re400,sr,379,151.6,force,upper_fx,0.005011006724089384 +karman_re400,sr,379,151.6,force,upper_fy,0.0064202905632555485 +karman_re400,sr,379,151.6,force,lower_fx,-0.010144757106900215 +karman_re400,sr,379,151.6,force,lower_fy,-0.0017572403885424137 +karman_re400,sr,380,152.0,force,front_fx,0.0017033428885042667 +karman_re400,sr,380,152.0,force,front_fy,0.0031309928745031357 +karman_re400,sr,380,152.0,force,upper_fx,0.003598873969167471 +karman_re400,sr,380,152.0,force,upper_fy,0.0057557132095098495 +karman_re400,sr,380,152.0,force,lower_fx,-0.009410963393747807 +karman_re400,sr,380,152.0,force,lower_fy,-0.0047169034369289875 +karman_re400,sr,381,152.4,force,front_fx,-0.0009131607948802412 +karman_re400,sr,381,152.4,force,front_fy,0.005015881732106209 +karman_re400,sr,381,152.4,force,upper_fx,0.0020496773067861795 +karman_re400,sr,381,152.4,force,upper_fy,0.005742528010159731 +karman_re400,sr,381,152.4,force,lower_fx,-0.004703901708126068 +karman_re400,sr,381,152.4,force,lower_fy,-0.006934532430022955 +karman_re400,sr,382,152.8,force,front_fx,-0.0032878147903829813 +karman_re400,sr,382,152.8,force,front_fy,0.006089597474783659 +karman_re400,sr,382,152.8,force,upper_fx,-0.00017713704437483102 +karman_re400,sr,382,152.8,force,upper_fy,0.006480809301137924 +karman_re400,sr,382,152.8,force,lower_fx,-0.0005407111602835357 +karman_re400,sr,382,152.8,force,lower_fy,-0.008130805566906929 +karman_re400,sr,383,153.2,force,front_fx,-0.003765539498999715 +karman_re400,sr,383,153.2,force,front_fy,0.006215940695255995 +karman_re400,sr,383,153.2,force,upper_fx,-0.0022097285836935043 +karman_re400,sr,383,153.2,force,upper_fy,0.007080105599015951 +karman_re400,sr,383,153.2,force,lower_fx,0.003264007857069373 +karman_re400,sr,383,153.2,force,lower_fy,-0.008310101926326752 +karman_re400,sr,384,153.6,force,front_fx,-0.001214558258652687 +karman_re400,sr,384,153.6,force,front_fy,0.005945850163698196 +karman_re400,sr,384,153.6,force,upper_fx,-0.003649162594228983 +karman_re400,sr,384,153.6,force,upper_fy,0.006045803427696228 +karman_re400,sr,384,153.6,force,lower_fx,0.005746822338551283 +karman_re400,sr,384,153.6,force,lower_fy,-0.0080144377425313 +karman_re400,sr,385,154.0,force,front_fx,0.0026646617334336042 +karman_re400,sr,385,154.0,force,front_fy,0.003904536133632064 +karman_re400,sr,385,154.0,force,upper_fx,-0.006276273168623447 +karman_re400,sr,385,154.0,force,upper_fy,0.003290798980742693 +karman_re400,sr,385,154.0,force,lower_fx,0.006499758921563625 +karman_re400,sr,385,154.0,force,lower_fy,-0.007510678842663765 +karman_re400,sr,386,154.4,force,front_fx,0.004353465978056192 +karman_re400,sr,386,154.4,force,front_fy,0.0006455254042521119 +karman_re400,sr,386,154.4,force,upper_fx,-0.00980594102293253 +karman_re400,sr,386,154.4,force,upper_fy,0.0015030023641884327 +karman_re400,sr,386,154.4,force,lower_fx,0.005560713354498148 +karman_re400,sr,386,154.4,force,lower_fy,-0.006570420227944851 +karman_re400,sr,387,154.8,force,front_fx,0.0024172477424144745 +karman_re400,sr,387,154.8,force,front_fy,-0.002438754541799426 +karman_re400,sr,387,154.8,force,upper_fx,-0.010438981465995312 +karman_re400,sr,387,154.8,force,upper_fy,0.0037249205633997917 +karman_re400,sr,387,154.8,force,lower_fx,0.004061007406562567 +karman_re400,sr,387,154.8,force,lower_fy,-0.005834434647113085 +karman_re400,sr,388,155.2,force,front_fx,-0.00013441596820484847 +karman_re400,sr,388,155.2,force,front_fy,-0.0047370088286697865 +karman_re400,sr,388,155.2,force,upper_fx,-0.006364503875374794 +karman_re400,sr,388,155.2,force,upper_fy,0.006282362155616283 +karman_re400,sr,388,155.2,force,lower_fx,0.0025738426484167576 +karman_re400,sr,388,155.2,force,lower_fy,-0.005669383332133293 +karman_re400,sr,389,155.6,force,front_fx,-0.0028400898445397615 +karman_re400,sr,389,155.6,force,front_fy,-0.005902661010622978 +karman_re400,sr,389,155.6,force,upper_fx,-0.002082064049318433 +karman_re400,sr,389,155.6,force,upper_fy,0.007916854694485664 +karman_re400,sr,389,155.6,force,lower_fx,0.000555159873329103 +karman_re400,sr,389,155.6,force,lower_fy,-0.00626218318939209 +karman_re400,sr,390,156.0,force,front_fx,-0.004100983031094074 +karman_re400,sr,390,156.0,force,front_fy,-0.006277946289628744 +karman_re400,sr,390,156.0,force,upper_fx,0.0021973643451929092 +karman_re400,sr,390,156.0,force,upper_fy,0.008523400872945786 +karman_re400,sr,390,156.0,force,lower_fx,-0.0016052343416959047 +karman_re400,sr,390,156.0,force,lower_fy,-0.007112368941307068 +karman_re400,sr,391,156.4,force,front_fx,-0.0022251124028116465 +karman_re400,sr,391,156.4,force,front_fy,-0.006134869996458292 +karman_re400,sr,391,156.4,force,upper_fx,0.005190915893763304 +karman_re400,sr,391,156.4,force,upper_fy,0.007962904870510101 +karman_re400,sr,391,156.4,force,lower_fx,-0.003135350299999118 +karman_re400,sr,391,156.4,force,lower_fy,-0.0066697848960757256 +karman_re400,sr,392,156.8,force,front_fx,0.0015461614821106195 +karman_re400,sr,392,156.8,force,front_fy,-0.004697437863796949 +karman_re400,sr,392,156.8,force,upper_fx,0.0063636647537350655 +karman_re400,sr,392,156.8,force,upper_fy,0.007556598167866468 +karman_re400,sr,392,156.8,force,lower_fx,-0.00525425560772419 +karman_re400,sr,392,156.8,force,lower_fy,-0.004280904307961464 +karman_re400,sr,393,157.2,force,front_fx,0.004174177534878254 +karman_re400,sr,393,157.2,force,front_fy,-0.0013210484758019447 +karman_re400,sr,393,157.2,force,upper_fx,0.005785147659480572 +karman_re400,sr,393,157.2,force,upper_fy,0.00688139209523797 +karman_re400,sr,393,157.2,force,lower_fx,-0.00866750255227089 +karman_re400,sr,393,157.2,force,lower_fy,-0.001769772614352405 +karman_re400,sr,394,157.6,force,front_fx,0.00291796145029366 +karman_re400,sr,394,157.6,force,front_fy,0.0016643272247165442 +karman_re400,sr,394,157.6,force,upper_fx,0.004473669454455376 +karman_re400,sr,394,157.6,force,upper_fy,0.0060188365168869495 +karman_re400,sr,394,157.6,force,lower_fx,-0.01068110577762127 +karman_re400,sr,394,157.6,force,lower_fy,-0.0027761878445744514 +karman_re400,sr,395,158.0,force,front_fx,0.0004343073524069041 +karman_re400,sr,395,158.0,force,front_fy,0.004392116330564022 +karman_re400,sr,395,158.0,force,upper_fx,0.0029054174665361643 +karman_re400,sr,395,158.0,force,upper_fy,0.005699002183973789 +karman_re400,sr,395,158.0,force,lower_fx,-0.007653127424418926 +karman_re400,sr,395,158.0,force,lower_fy,-0.005861390382051468 +karman_re400,sr,396,158.4,force,front_fx,-0.002282898174598813 +karman_re400,sr,396,158.4,force,front_fy,0.00563838379457593 +karman_re400,sr,396,158.4,force,upper_fx,0.0011540581472218037 +karman_re400,sr,396,158.4,force,upper_fy,0.006053723860532045 +karman_re400,sr,396,158.4,force,lower_fx,-0.003139595966786146 +karman_re400,sr,396,158.4,force,lower_fy,-0.00758356275036931 +karman_re400,sr,397,158.8,force,front_fx,-0.004077020566910505 +karman_re400,sr,397,158.8,force,front_fy,0.006330511532723904 +karman_re400,sr,397,158.8,force,upper_fx,-0.0010444376384839416 +karman_re400,sr,397,158.8,force,upper_fy,0.007002540864050388 +karman_re400,sr,397,158.8,force,lower_fx,0.0010678719263523817 +karman_re400,sr,397,158.8,force,lower_fy,-0.008465893566608429 +karman_re400,sr,398,159.2,force,front_fx,-0.002978863660246134 +karman_re400,sr,398,159.2,force,front_fy,0.006194108631461859 +karman_re400,sr,398,159.2,force,upper_fx,-0.0026527303270995617 +karman_re400,sr,398,159.2,force,upper_fy,0.006969728972762823 +karman_re400,sr,398,159.2,force,lower_fx,0.004281264264136553 +karman_re400,sr,398,159.2,force,lower_fy,-0.00805840827524662 +karman_re400,sr,399,159.6,force,front_fx,0.00042932480573654175 +karman_re400,sr,399,159.6,force,front_fy,0.005322103388607502 +karman_re400,sr,399,159.6,force,upper_fx,-0.004470478277653456 +karman_re400,sr,399,159.6,force,upper_fy,0.004949829075485468 +karman_re400,sr,399,159.6,force,lower_fx,0.005969669669866562 +karman_re400,sr,399,159.6,force,lower_fy,-0.007732201833277941 +karman_re400,sr,0,0.0,alpha,front,-2.367738584759909 +karman_re400,sr,0,0.0,alpha,upper,-0.8389755920454803 +karman_re400,sr,0,0.0,alpha,lower,6.0234417689757525 +karman_re400,sr,1,0.4,alpha,front,-3.2425964569901424 +karman_re400,sr,1,0.4,alpha,upper,-1.4916845558232201 +karman_re400,sr,1,0.4,alpha,lower,5.370732805198012 +karman_re400,sr,2,0.8,alpha,front,-3.3192521901297884 +karman_re400,sr,2,0.8,alpha,upper,-0.9091618366364352 +karman_re400,sr,2,0.8,alpha,lower,5.953255524384797 +karman_re400,sr,3,1.2,alpha,front,-3.3857310436195687 +karman_re400,sr,3,1.2,alpha,upper,-0.003433231727393959 +karman_re400,sr,3,1.2,alpha,lower,6.858984129293838 +karman_re400,sr,4,1.6,alpha,front,-3.0977747665129987 +karman_re400,sr,4,1.6,alpha,upper,-0.9235889566954545 +karman_re400,sr,4,1.6,alpha,lower,5.938828404325777 +karman_re400,sr,5,2.0,alpha,front,-2.2801198289963533 +karman_re400,sr,5,2.0,alpha,upper,-3.3939191075166364 +karman_re400,sr,5,2.0,alpha,lower,3.4684982535045963 +karman_re400,sr,6,2.4,alpha,front,-0.8924545367451936 +karman_re400,sr,6,2.4,alpha,upper,-5.256032465883264 +karman_re400,sr,6,2.4,alpha,lower,1.6063848951379684 +karman_re400,sr,7,2.8,alpha,front,0.6516810682192251 +karman_re400,sr,7,2.8,alpha,upper,-4.975413242581269 +karman_re400,sr,7,2.8,alpha,lower,1.8870041184399629 +karman_re400,sr,8,3.2,alpha,front,1.5125171041556462 +karman_re400,sr,8,3.2,alpha,upper,-4.073232422424928 +karman_re400,sr,8,3.2,alpha,lower,2.789184938596305 +karman_re400,sr,9,3.6,alpha,front,2.0152704543915094 +karman_re400,sr,9,3.6,alpha,upper,-5.8259650632870486 +karman_re400,sr,9,3.6,alpha,lower,1.0364522977341837 +karman_re400,sr,10,4.0,alpha,front,2.730890818167731 +karman_re400,sr,10,4.0,alpha,upper,-7.737017084908686 +karman_re400,sr,10,4.0,alpha,lower,-0.8745997238874543 +karman_re400,sr,11,4.4,alpha,front,3.118209688659029 +karman_re400,sr,11,4.4,alpha,upper,-5.917010814574002 +karman_re400,sr,11,4.4,alpha,lower,0.9454065464472294 +karman_re400,sr,12,4.8,alpha,front,2.4199457420447485 +karman_re400,sr,12,4.8,alpha,upper,-2.429792196481527 +karman_re400,sr,12,4.8,alpha,lower,4.432625164539705 +karman_re400,sr,13,5.2,alpha,front,0.8935415550080437 +karman_re400,sr,13,5.2,alpha,upper,-0.49199286488786736 +karman_re400,sr,13,5.2,alpha,lower,6.370424496133365 +karman_re400,sr,14,5.6,alpha,front,-0.7962248825073346 +karman_re400,sr,14,5.6,alpha,upper,-2.086701329669503 +karman_re400,sr,14,5.6,alpha,lower,4.775716031351729 +karman_re400,sr,15,6.0,alpha,front,-1.3282271824783087 +karman_re400,sr,15,6.0,alpha,upper,-3.746664491871796 +karman_re400,sr,15,6.0,alpha,lower,3.115752869149436 +karman_re400,sr,16,6.4,alpha,front,-1.4188788446246694 +karman_re400,sr,16,6.4,alpha,upper,-1.3678747390638066 +karman_re400,sr,16,6.4,alpha,lower,5.494542621957425 +karman_re400,sr,17,6.8,alpha,front,-1.8623584975711833 +karman_re400,sr,17,6.8,alpha,upper,1.477119895776505 +karman_re400,sr,17,6.8,alpha,lower,8.339537256797737 +karman_re400,sr,18,7.2,alpha,front,-2.5110545001991165 +karman_re400,sr,18,7.2,alpha,upper,0.688773492945367 +karman_re400,sr,18,7.2,alpha,lower,7.5511908539666 +karman_re400,sr,19,7.6,alpha,front,-2.2653437953892803 +karman_re400,sr,19,7.6,alpha,upper,-3.508556873792147 +karman_re400,sr,19,7.6,alpha,lower,3.353860487229085 +karman_re400,sr,20,8.0,alpha,front,-0.8382684356844536 +karman_re400,sr,20,8.0,alpha,upper,-5.657902710152772 +karman_re400,sr,20,8.0,alpha,lower,1.20451465086846 +karman_re400,sr,21,8.4,alpha,front,0.7666553883691336 +karman_re400,sr,21,8.4,alpha,upper,-5.164692880129815 +karman_re400,sr,21,8.4,alpha,lower,1.6977244808914171 +karman_re400,sr,22,8.8,alpha,front,1.5877357043582176 +karman_re400,sr,22,8.8,alpha,upper,-3.8329747886272325 +karman_re400,sr,22,8.8,alpha,lower,3.0294425723939997 +karman_re400,sr,23,9.2,alpha,front,1.79661819046287 +karman_re400,sr,23,9.2,alpha,upper,-4.666785352543055 +karman_re400,sr,23,9.2,alpha,lower,2.195632008478177 +karman_re400,sr,24,9.6,alpha,front,2.3450411372738067 +karman_re400,sr,24,9.6,alpha,upper,-7.309233000504888 +karman_re400,sr,24,9.6,alpha,lower,-0.4468156394836549 +karman_re400,sr,25,10.0,alpha,front,3.032991275234948 +karman_re400,sr,25,10.0,alpha,upper,-6.85879420261148 +karman_re400,sr,25,10.0,alpha,lower,0.0036231584097521368 +karman_re400,sr,26,10.4,alpha,front,2.582919361017051 +karman_re400,sr,26,10.4,alpha,upper,-3.491743452475187 +karman_re400,sr,26,10.4,alpha,lower,3.3706739085460455 +karman_re400,sr,27,10.8,alpha,front,1.3123222393909446 +karman_re400,sr,27,10.8,alpha,upper,-1.8923713931973618 +karman_re400,sr,27,10.8,alpha,lower,4.970045967823871 +karman_re400,sr,28,11.2,alpha,front,-0.030772395896038716 +karman_re400,sr,28,11.2,alpha,upper,-1.6114141841359806 +karman_re400,sr,28,11.2,alpha,lower,5.251003176885251 +karman_re400,sr,29,11.6,alpha,front,-1.1343605333356834 +karman_re400,sr,29,11.6,alpha,upper,-2.5442938549782577 +karman_re400,sr,29,11.6,alpha,lower,4.318123506042975 +karman_re400,sr,30,12.0,alpha,front,-1.6131265773065588 +karman_re400,sr,30,12.0,alpha,upper,-2.0375837775553576 +karman_re400,sr,30,12.0,alpha,lower,4.824833583465875 +karman_re400,sr,31,12.4,alpha,front,-2.1341678970447227 +karman_re400,sr,31,12.4,alpha,upper,0.02051747445445784 +karman_re400,sr,31,12.4,alpha,lower,6.88293483547569 +karman_re400,sr,32,12.8,alpha,front,-2.6635041662340737 +karman_re400,sr,32,12.8,alpha,upper,0.42968550876310685 +karman_re400,sr,32,12.8,alpha,lower,7.2921028697843395 +karman_re400,sr,33,13.2,alpha,front,-2.6199261557440128 +karman_re400,sr,33,13.2,alpha,upper,-2.911407896990813 +karman_re400,sr,33,13.2,alpha,lower,3.9510094640304194 +karman_re400,sr,34,13.6,alpha,front,-1.2681778649690585 +karman_re400,sr,34,13.6,alpha,upper,-4.939614765320369 +karman_re400,sr,34,13.6,alpha,lower,1.9228025957008634 +karman_re400,sr,35,14.0,alpha,front,0.06218464572863847 +karman_re400,sr,35,14.0,alpha,upper,-4.822058141847126 +karman_re400,sr,35,14.0,alpha,lower,2.0403592191741065 +karman_re400,sr,36,14.4,alpha,front,1.1799365795184438 +karman_re400,sr,36,14.4,alpha,upper,-4.501520668919812 +karman_re400,sr,36,14.4,alpha,lower,2.36089669210142 +karman_re400,sr,37,14.8,alpha,front,1.8226800776869774 +karman_re400,sr,37,14.8,alpha,upper,-4.7472853391537875 +karman_re400,sr,37,14.8,alpha,lower,2.1151320218674443 +karman_re400,sr,38,15.2,alpha,front,2.430043234840577 +karman_re400,sr,38,15.2,alpha,upper,-6.281359006455575 +karman_re400,sr,38,15.2,alpha,lower,0.5810583545656574 +karman_re400,sr,39,15.6,alpha,front,2.9891549910704263 +karman_re400,sr,39,15.6,alpha,upper,-6.799474124061895 +karman_re400,sr,39,15.6,alpha,lower,0.06294323695933679 +karman_re400,sr,40,16.0,alpha,front,2.8525438904121025 +karman_re400,sr,40,16.0,alpha,upper,-4.5172896837911 +karman_re400,sr,40,16.0,alpha,lower,2.3451276772301326 +karman_re400,sr,41,16.4,alpha,front,1.6434347288257427 +karman_re400,sr,41,16.4,alpha,upper,-3.015143947821883 +karman_re400,sr,41,16.4,alpha,lower,3.8472734131993493 +karman_re400,sr,42,16.8,alpha,front,0.45196589896404377 +karman_re400,sr,42,16.8,alpha,upper,-2.8257370327531355 +karman_re400,sr,42,16.8,alpha,lower,4.036680328268097 +karman_re400,sr,43,17.2,alpha,front,-0.7725528148685591 +karman_re400,sr,43,17.2,alpha,upper,-2.808674232754249 +karman_re400,sr,43,17.2,alpha,lower,4.053743128266984 +karman_re400,sr,44,17.6,alpha,front,-1.6357539618979906 +karman_re400,sr,44,17.6,alpha,upper,-2.8054700668569263 +karman_re400,sr,44,17.6,alpha,lower,4.056947294164306 +karman_re400,sr,45,18.0,alpha,front,-2.3224086911044335 +karman_re400,sr,45,18.0,alpha,upper,-1.6140559539093509 +karman_re400,sr,45,18.0,alpha,lower,5.248361407111881 +karman_re400,sr,46,18.4,alpha,front,-2.9340671743393005 +karman_re400,sr,46,18.4,alpha,upper,-0.033269381374785745 +karman_re400,sr,46,18.4,alpha,lower,6.8291479796464465 +karman_re400,sr,47,18.8,alpha,front,-3.1617722036166183 +karman_re400,sr,47,18.8,alpha,upper,-0.2943035859484686 +karman_re400,sr,47,18.8,alpha,lower,6.568113775072764 +karman_re400,sr,48,19.2,alpha,front,-2.5522802089403447 +karman_re400,sr,48,19.2,alpha,upper,-2.3471091568059976 +karman_re400,sr,48,19.2,alpha,lower,4.515308204215234 +karman_re400,sr,49,19.6,alpha,front,-1.503871485032653 +karman_re400,sr,49,19.6,alpha,upper,-4.226221828657248 +karman_re400,sr,49,19.6,alpha,lower,2.636195532363984 +karman_re400,sr,50,20.0,alpha,front,-0.1445327261301809 +karman_re400,sr,50,20.0,alpha,upper,-4.809172358647581 +karman_re400,sr,50,20.0,alpha,lower,2.053245002373651 +karman_re400,sr,51,20.4,alpha,front,0.9698140068180028 +karman_re400,sr,51,20.4,alpha,upper,-4.183683123675817 +karman_re400,sr,51,20.4,alpha,lower,2.678734237345415 +karman_re400,sr,52,20.8,alpha,front,1.6995750429701577 +karman_re400,sr,52,20.8,alpha,upper,-4.636737505058534 +karman_re400,sr,52,20.8,alpha,lower,2.2256798559626985 +karman_re400,sr,53,21.2,alpha,front,2.3119731381818474 +karman_re400,sr,53,21.2,alpha,upper,-6.091837907008657 +karman_re400,sr,53,21.2,alpha,lower,0.7705794540125757 +karman_re400,sr,54,21.6,alpha,front,2.743211586874678 +karman_re400,sr,54,21.6,alpha,upper,-5.935254128797343 +karman_re400,sr,54,21.6,alpha,lower,0.9271632322238897 +karman_re400,sr,55,22.0,alpha,front,2.3261405836411053 +karman_re400,sr,55,22.0,alpha,upper,-3.604318592143412 +karman_re400,sr,55,22.0,alpha,lower,3.2580987688778205 +karman_re400,sr,56,22.4,alpha,front,1.0932161650399792 +karman_re400,sr,56,22.4,alpha,upper,-2.6572331666899305 +karman_re400,sr,56,22.4,alpha,lower,4.205184194331301 +karman_re400,sr,57,22.8,alpha,front,0.07680540766237474 +karman_re400,sr,57,22.8,alpha,upper,-2.9766528506778664 +karman_re400,sr,57,22.8,alpha,lower,3.885764510343366 +karman_re400,sr,58,23.2,alpha,front,-0.739089590898962 +karman_re400,sr,58,23.2,alpha,upper,-2.896316985080025 +karman_re400,sr,58,23.2,alpha,lower,3.9661003759412066 +karman_re400,sr,59,23.6,alpha,front,-1.473269140395543 +karman_re400,sr,59,23.6,alpha,upper,-1.716375204976072 +karman_re400,sr,59,23.6,alpha,lower,5.14604215604516 +karman_re400,sr,60,24.0,alpha,front,-2.222733967079949 +karman_re400,sr,60,24.0,alpha,upper,-0.31096434275181384 +karman_re400,sr,60,24.0,alpha,lower,6.5514530182694175 +karman_re400,sr,61,24.4,alpha,front,-2.6365662708275486 +karman_re400,sr,61,24.4,alpha,upper,-0.3723169793557659 +karman_re400,sr,61,24.4,alpha,lower,6.490100381665465 +karman_re400,sr,62,24.8,alpha,front,-2.359925240009922 +karman_re400,sr,62,24.8,alpha,upper,-2.2139552517662366 +karman_re400,sr,62,24.8,alpha,lower,4.648462109254996 +karman_re400,sr,63,25.2,alpha,front,-1.3606385528318108 +karman_re400,sr,63,25.2,alpha,upper,-3.961064997109692 +karman_re400,sr,63,25.2,alpha,lower,2.9013523639115397 +karman_re400,sr,64,25.6,alpha,front,-0.10974155597893089 +karman_re400,sr,64,25.6,alpha,upper,-4.576992280007558 +karman_re400,sr,64,25.6,alpha,lower,2.285425081013674 +karman_re400,sr,65,26.0,alpha,front,1.0532031926137304 +karman_re400,sr,65,26.0,alpha,upper,-4.261921041632059 +karman_re400,sr,65,26.0,alpha,lower,2.6004963193891735 +karman_re400,sr,66,26.4,alpha,front,1.8237422098582794 +karman_re400,sr,66,26.4,alpha,upper,-4.3886370791846865 +karman_re400,sr,66,26.4,alpha,lower,2.4737802818365453 +karman_re400,sr,67,26.8,alpha,front,2.435082168881253 +karman_re400,sr,67,26.8,alpha,upper,-5.908044448216646 +karman_re400,sr,67,26.8,alpha,lower,0.9543729128045865 +karman_re400,sr,68,27.2,alpha,front,2.9847016904776003 +karman_re400,sr,68,27.2,alpha,upper,-7.034010397345481 +karman_re400,sr,68,27.2,alpha,lower,-0.17159303632424994 +karman_re400,sr,69,27.6,alpha,front,3.0465388105957314 +karman_re400,sr,69,27.6,alpha,upper,-5.636264618243482 +karman_re400,sr,69,27.6,alpha,lower,1.2261527427777499 +karman_re400,sr,70,28.0,alpha,front,2.1585175945304345 +karman_re400,sr,70,28.0,alpha,upper,-3.299206362986172 +karman_re400,sr,70,28.0,alpha,lower,3.5632109980350606 +karman_re400,sr,71,28.4,alpha,front,0.9387547659720145 +karman_re400,sr,71,28.4,alpha,upper,-2.0193556879157737 +karman_re400,sr,71,28.4,alpha,lower,4.843061673105458 +karman_re400,sr,72,28.8,alpha,front,-0.43357518830948183 +karman_re400,sr,72,28.8,alpha,upper,-2.2812182240301704 +karman_re400,sr,72,28.8,alpha,lower,4.581199136991062 +karman_re400,sr,73,29.2,alpha,front,-1.3072965364926084 +karman_re400,sr,73,29.2,alpha,upper,-2.9417523193669046 +karman_re400,sr,73,29.2,alpha,lower,3.9206650416543276 +karman_re400,sr,74,29.6,alpha,front,-1.8630926039719984 +karman_re400,sr,74,29.6,alpha,upper,-1.6920749423511787 +karman_re400,sr,74,29.6,alpha,lower,5.170342418670053 +karman_re400,sr,75,30.0,alpha,front,-2.436999796524365 +karman_re400,sr,75,30.0,alpha,upper,-0.03618877143294963 +karman_re400,sr,75,30.0,alpha,lower,6.8262285895882835 +karman_re400,sr,76,30.4,alpha,front,-2.7927394822355542 +karman_re400,sr,76,30.4,alpha,upper,-1.17142158214103 +karman_re400,sr,76,30.4,alpha,lower,5.690995778880202 +karman_re400,sr,77,30.8,alpha,front,-2.0295414401995457 +karman_re400,sr,77,30.8,alpha,upper,-3.764648683679606 +karman_re400,sr,77,30.8,alpha,lower,3.097768677341626 +karman_re400,sr,78,31.2,alpha,front,-0.7631426754772921 +karman_re400,sr,78,31.2,alpha,upper,-4.494179679124263 +karman_re400,sr,78,31.2,alpha,lower,2.368237681896969 +karman_re400,sr,79,31.6,alpha,front,0.3590849114329281 +karman_re400,sr,79,31.6,alpha,upper,-4.294639585599087 +karman_re400,sr,79,31.6,alpha,lower,2.5677777754221456 +karman_re400,sr,80,32.0,alpha,front,1.250534625057071 +karman_re400,sr,80,32.0,alpha,upper,-4.233265634577877 +karman_re400,sr,80,32.0,alpha,lower,2.629151726443356 +karman_re400,sr,81,32.4,alpha,front,1.9186437770838494 +karman_re400,sr,81,32.4,alpha,upper,-5.357998202115167 +karman_re400,sr,81,32.4,alpha,lower,1.5044191589060658 +karman_re400,sr,82,32.8,alpha,front,2.558671427887857 +karman_re400,sr,82,32.8,alpha,upper,-6.869234384799352 +karman_re400,sr,82,32.8,alpha,lower,-0.006817023778120657 +karman_re400,sr,83,33.2,alpha,front,2.9157101631378786 +karman_re400,sr,83,33.2,alpha,upper,-6.365040017596321 +karman_re400,sr,83,33.2,alpha,lower,0.49737734342491086 +karman_re400,sr,84,33.6,alpha,front,2.38340740967626 +karman_re400,sr,84,33.6,alpha,upper,-3.8116223099092084 +karman_re400,sr,84,33.6,alpha,lower,3.050795051112024 +karman_re400,sr,85,34.0,alpha,front,1.1417312786144882 +karman_re400,sr,85,34.0,alpha,upper,-2.378970099970041 +karman_re400,sr,85,34.0,alpha,lower,4.483447261051191 +karman_re400,sr,86,34.4,alpha,front,-0.15340571596855823 +karman_re400,sr,86,34.4,alpha,upper,-2.2907728683038653 +karman_re400,sr,86,34.4,alpha,lower,4.5716444927173665 +karman_re400,sr,87,34.8,alpha,front,-1.2042294896516308 +karman_re400,sr,87,34.8,alpha,upper,-2.7160834907077187 +karman_re400,sr,87,34.8,alpha,lower,4.146333870313513 +karman_re400,sr,88,35.2,alpha,front,-1.8638069968587239 +karman_re400,sr,88,35.2,alpha,upper,-2.0081799299637217 +karman_re400,sr,88,35.2,alpha,lower,4.854237431057511 +karman_re400,sr,89,35.6,alpha,front,-2.5093862218693572 +karman_re400,sr,89,35.6,alpha,upper,-0.32121703419072967 +karman_re400,sr,89,35.6,alpha,lower,6.541200326830503 +karman_re400,sr,90,36.0,alpha,front,-3.0180064293378646 +karman_re400,sr,90,36.0,alpha,upper,-0.17112760667228333 +karman_re400,sr,90,36.0,alpha,lower,6.691289754348949 +karman_re400,sr,91,36.4,alpha,front,-2.710155708929895 +karman_re400,sr,91,36.4,alpha,upper,-2.5013474356438365 +karman_re400,sr,91,36.4,alpha,lower,4.361069925377396 +karman_re400,sr,92,36.8,alpha,front,-1.5536232442179465 +karman_re400,sr,92,36.8,alpha,upper,-4.12094657240843 +karman_re400,sr,92,36.8,alpha,lower,2.7414707886128022 +karman_re400,sr,93,37.2,alpha,front,-0.3247071624487674 +karman_re400,sr,93,37.2,alpha,upper,-4.586018326733239 +karman_re400,sr,93,37.2,alpha,lower,2.276399034287993 +karman_re400,sr,94,37.6,alpha,front,0.8719596970602798 +karman_re400,sr,94,37.6,alpha,upper,-4.3073253177680755 +karman_re400,sr,94,37.6,alpha,lower,2.5550920432531568 +karman_re400,sr,95,38.0,alpha,front,1.6592236552186994 +karman_re400,sr,95,38.0,alpha,upper,-4.475974426360314 +karman_re400,sr,95,38.0,alpha,lower,2.386442934660918 +karman_re400,sr,96,38.4,alpha,front,2.2823677911998903 +karman_re400,sr,96,38.4,alpha,upper,-5.90541866425622 +karman_re400,sr,96,38.4,alpha,lower,0.9569986967650124 +karman_re400,sr,97,38.8,alpha,front,2.8188325381238313 +karman_re400,sr,97,38.8,alpha,upper,-6.8418074494084555 +karman_re400,sr,97,38.8,alpha,lower,0.0206099116127767 +karman_re400,sr,98,39.2,alpha,front,2.835612201799224 +karman_re400,sr,98,39.2,alpha,upper,-5.078958986115387 +karman_re400,sr,98,39.2,alpha,lower,1.7834583749058452 +karman_re400,sr,99,39.6,alpha,front,1.8218863867458273 +karman_re400,sr,99,39.6,alpha,upper,-3.062147414235647 +karman_re400,sr,99,39.6,alpha,lower,3.800269946785585 +karman_re400,sr,100,40.0,alpha,front,0.6174043287948717 +karman_re400,sr,100,40.0,alpha,upper,-2.320004373607381 +karman_re400,sr,100,40.0,alpha,lower,4.542412987413851 +karman_re400,sr,101,40.4,alpha,front,-0.6329401762907289 +karman_re400,sr,101,40.4,alpha,upper,-2.479195970770289 +karman_re400,sr,101,40.4,alpha,lower,4.383221390250943 +karman_re400,sr,102,40.8,alpha,front,-1.5102463648513702 +karman_re400,sr,102,40.8,alpha,upper,-2.682421327039483 +karman_re400,sr,102,40.8,alpha,lower,4.179996033981749 +karman_re400,sr,103,41.2,alpha,front,-2.1343351067160348 +karman_re400,sr,103,41.2,alpha,upper,-1.4449957815556955 +karman_re400,sr,103,41.2,alpha,lower,5.417421579465537 +karman_re400,sr,104,41.6,alpha,front,-2.694119964012556 +karman_re400,sr,104,41.6,alpha,upper,-0.014008912710696373 +karman_re400,sr,104,41.6,alpha,lower,6.848408448310536 +karman_re400,sr,105,42.0,alpha,front,-2.9541296709083356 +karman_re400,sr,105,42.0,alpha,upper,-0.946773714068533 +karman_re400,sr,105,42.0,alpha,lower,5.915643646952699 +karman_re400,sr,106,42.4,alpha,front,-2.1815406257976653 +karman_re400,sr,106,42.4,alpha,upper,-3.3907252943362676 +karman_re400,sr,106,42.4,alpha,lower,3.471692066684965 +karman_re400,sr,107,42.8,alpha,front,-0.9636074910655669 +karman_re400,sr,107,42.8,alpha,upper,-4.443206859233591 +karman_re400,sr,107,42.8,alpha,lower,2.419210501787641 +karman_re400,sr,108,43.2,alpha,front,0.28164825229650337 +karman_re400,sr,108,43.2,alpha,upper,-4.486483956527197 +karman_re400,sr,108,43.2,alpha,lower,2.375933404494036 +karman_re400,sr,109,43.6,alpha,front,1.2535306796004737 +karman_re400,sr,109,43.6,alpha,upper,-4.124863248825541 +karman_re400,sr,109,43.6,alpha,lower,2.737554112195691 +karman_re400,sr,110,44.0,alpha,front,1.9179360441681 +karman_re400,sr,110,44.0,alpha,upper,-5.097511663880653 +karman_re400,sr,110,44.0,alpha,lower,1.7649056971405799 +karman_re400,sr,111,44.4,alpha,front,2.547985371256949 +karman_re400,sr,111,44.4,alpha,upper,-6.714904758458977 +karman_re400,sr,111,44.4,alpha,lower,0.1475126025622555 +karman_re400,sr,112,44.8,alpha,front,2.9441152057506783 +karman_re400,sr,112,44.8,alpha,upper,-6.249392709171939 +karman_re400,sr,112,44.8,alpha,lower,0.613024651849293 +karman_re400,sr,113,45.2,alpha,front,2.401577675291506 +karman_re400,sr,113,45.2,alpha,upper,-3.8126721972050337 +karman_re400,sr,113,45.2,alpha,lower,3.0497451638161985 +karman_re400,sr,114,45.6,alpha,front,1.189474679152069 +karman_re400,sr,114,45.6,alpha,upper,-2.4846040474121547 +karman_re400,sr,114,45.6,alpha,lower,4.377813313609078 +karman_re400,sr,115,46.0,alpha,front,-0.035556624896701444 +karman_re400,sr,115,46.0,alpha,upper,-2.3802626671309395 +karman_re400,sr,115,46.0,alpha,lower,4.482154693890292 +karman_re400,sr,116,46.4,alpha,front,-1.0671876220705594 +karman_re400,sr,116,46.4,alpha,upper,-2.6935635909072717 +karman_re400,sr,116,46.4,alpha,lower,4.1688537701139605 +karman_re400,sr,117,46.8,alpha,front,-1.768139666170298 +karman_re400,sr,117,46.8,alpha,upper,-1.953241106004568 +karman_re400,sr,117,46.8,alpha,lower,4.909176255016664 +karman_re400,sr,118,47.2,alpha,front,-2.417381120421191 +karman_re400,sr,118,47.2,alpha,upper,-0.3826453369759495 +karman_re400,sr,118,47.2,alpha,lower,6.479772024045283 +karman_re400,sr,119,47.6,alpha,front,-2.8720267919069724 +karman_re400,sr,119,47.6,alpha,upper,-0.21885416469154695 +karman_re400,sr,119,47.6,alpha,lower,6.643563196329685 +karman_re400,sr,120,48.0,alpha,front,-2.587985822937762 +karman_re400,sr,120,48.0,alpha,upper,-2.5038043789704068 +karman_re400,sr,120,48.0,alpha,lower,4.3586129820508255 +karman_re400,sr,121,48.4,alpha,front,-1.427916025641263 +karman_re400,sr,121,48.4,alpha,upper,-4.054209000529922 +karman_re400,sr,121,48.4,alpha,lower,2.80820836049131 +karman_re400,sr,122,48.8,alpha,front,-0.22785882604458227 +karman_re400,sr,122,48.8,alpha,upper,-4.500842565959313 +karman_re400,sr,122,48.8,alpha,lower,2.3615747950619195 +karman_re400,sr,123,49.2,alpha,front,0.9487373298686954 +karman_re400,sr,123,49.2,alpha,upper,-4.324478856286149 +karman_re400,sr,123,49.2,alpha,lower,2.5379385047350835 +karman_re400,sr,124,49.6,alpha,front,1.7476993272478736 +karman_re400,sr,124,49.6,alpha,upper,-4.523321054891943 +karman_re400,sr,124,49.6,alpha,lower,2.3390963061292895 +karman_re400,sr,125,50.0,alpha,front,2.384284883052292 +karman_re400,sr,125,50.0,alpha,upper,-5.9154318729926505 +karman_re400,sr,125,50.0,alpha,lower,0.9469854880285813 +karman_re400,sr,126,50.4,alpha,front,2.9031645538107718 +karman_re400,sr,126,50.4,alpha,upper,-6.814489369791415 +karman_re400,sr,126,50.4,alpha,lower,0.047927991229816946 +karman_re400,sr,127,50.8,alpha,front,2.8873526283180433 +karman_re400,sr,127,50.8,alpha,upper,-5.2611014910448795 +karman_re400,sr,127,50.8,alpha,lower,1.6013158699763528 +karman_re400,sr,128,51.2,alpha,front,1.9191288893697638 +karman_re400,sr,128,51.2,alpha,upper,-3.1948942139057683 +karman_re400,sr,128,51.2,alpha,lower,3.667523147115464 +karman_re400,sr,129,51.6,alpha,front,0.7096283989887875 +karman_re400,sr,129,51.6,alpha,upper,-2.3303467378446205 +karman_re400,sr,129,51.6,alpha,lower,4.532070623176612 +karman_re400,sr,130,52.0,alpha,front,-0.5519976862324715 +karman_re400,sr,130,52.0,alpha,upper,-2.4755381122770324 +karman_re400,sr,130,52.0,alpha,lower,4.3868792487442 +karman_re400,sr,131,52.4,alpha,front,-1.4470782273337206 +karman_re400,sr,131,52.4,alpha,upper,-2.736172328973981 +karman_re400,sr,131,52.4,alpha,lower,4.126245032047251 +karman_re400,sr,132,52.8,alpha,front,-2.0790568148149866 +karman_re400,sr,132,52.8,alpha,upper,-1.5341908324412503 +karman_re400,sr,132,52.8,alpha,lower,5.328226528579982 +karman_re400,sr,133,53.2,alpha,front,-2.6510936211183664 +karman_re400,sr,133,53.2,alpha,upper,-0.09270653697345521 +karman_re400,sr,133,53.2,alpha,lower,6.769710824047778 +karman_re400,sr,134,53.6,alpha,front,-2.9049630123732144 +karman_re400,sr,134,53.6,alpha,upper,-1.0921407801974912 +karman_re400,sr,134,53.6,alpha,lower,5.770276580823741 +karman_re400,sr,135,54.0,alpha,front,-2.124049625139448 +karman_re400,sr,135,54.0,alpha,upper,-3.4228680445456376 +karman_re400,sr,135,54.0,alpha,lower,3.439549316475594 +karman_re400,sr,136,54.4,alpha,front,-0.9270285328741228 +karman_re400,sr,136,54.4,alpha,upper,-4.408193057019483 +karman_re400,sr,136,54.4,alpha,lower,2.454224304001749 +karman_re400,sr,137,54.8,alpha,front,0.27739249754278666 +karman_re400,sr,137,54.8,alpha,upper,-4.416101923789137 +karman_re400,sr,137,54.8,alpha,lower,2.446315437232095 +karman_re400,sr,138,55.2,alpha,front,1.2221201696852915 +karman_re400,sr,138,55.2,alpha,upper,-4.146709004057265 +karman_re400,sr,138,55.2,alpha,lower,2.715708356963967 +karman_re400,sr,139,55.6,alpha,front,1.8958925170322583 +karman_re400,sr,139,55.6,alpha,upper,-5.187005725591178 +karman_re400,sr,139,55.6,alpha,lower,1.675411635430054 +karman_re400,sr,140,56.0,alpha,front,2.515431344325134 +karman_re400,sr,140,56.0,alpha,upper,-6.72276368859391 +karman_re400,sr,140,56.0,alpha,lower,0.13965367242732185 +karman_re400,sr,141,56.4,alpha,front,2.8770403292583255 +karman_re400,sr,141,56.4,alpha,upper,-6.289476526145607 +karman_re400,sr,141,56.4,alpha,lower,0.5729408348756251 +karman_re400,sr,142,56.8,alpha,front,2.35054848927315 +karman_re400,sr,142,56.8,alpha,upper,-3.83618991622486 +karman_re400,sr,142,56.8,alpha,lower,3.026227444796372 +karman_re400,sr,143,57.2,alpha,front,1.1270163835409774 +karman_re400,sr,143,57.2,alpha,upper,-2.5238786016362633 +karman_re400,sr,143,57.2,alpha,lower,4.338538759384969 +karman_re400,sr,144,57.6,alpha,front,-0.09067270461950275 +karman_re400,sr,144,57.6,alpha,upper,-2.3912188865852277 +karman_re400,sr,144,57.6,alpha,lower,4.4711984744360045 +karman_re400,sr,145,58.0,alpha,front,-1.134757068007613 +karman_re400,sr,145,58.0,alpha,upper,-2.645063547910276 +karman_re400,sr,145,58.0,alpha,lower,4.217353813110956 +karman_re400,sr,146,58.4,alpha,front,-1.8421078346221638 +karman_re400,sr,146,58.4,alpha,upper,-1.9669730715692804 +karman_re400,sr,146,58.4,alpha,lower,4.895444289451952 +karman_re400,sr,147,58.8,alpha,front,-2.4906765874046433 +karman_re400,sr,147,58.8,alpha,upper,-0.3941406589410432 +karman_re400,sr,147,58.8,alpha,lower,6.468276702080189 +karman_re400,sr,148,59.2,alpha,front,-2.9466238836180345 +karman_re400,sr,148,59.2,alpha,upper,-0.2501158682389475 +karman_re400,sr,148,59.2,alpha,lower,6.612301492782286 +karman_re400,sr,149,59.6,alpha,front,-2.6381414427630587 +karman_re400,sr,149,59.6,alpha,upper,-2.4369398340633723 +karman_re400,sr,149,59.6,alpha,lower,4.4254775269578595 +karman_re400,sr,150,60.0,alpha,front,-1.5040580974194093 +karman_re400,sr,150,60.0,alpha,upper,-4.052566572434307 +karman_re400,sr,150,60.0,alpha,lower,2.8098507885869255 +karman_re400,sr,151,60.4,alpha,front,-0.28922991330615194 +karman_re400,sr,151,60.4,alpha,upper,-4.540939856689604 +karman_re400,sr,151,60.4,alpha,lower,2.321477504331628 +karman_re400,sr,152,60.8,alpha,front,0.8869370615899665 +karman_re400,sr,152,60.8,alpha,upper,-4.28935208766057 +karman_re400,sr,152,60.8,alpha,lower,2.5730652733606623 +karman_re400,sr,153,61.2,alpha,front,1.6873959096459736 +karman_re400,sr,153,61.2,alpha,upper,-4.527559883501334 +karman_re400,sr,153,61.2,alpha,lower,2.334857477519898 +karman_re400,sr,154,61.6,alpha,front,2.3290669748880957 +karman_re400,sr,154,61.6,alpha,upper,-5.9230484277541855 +karman_re400,sr,154,61.6,alpha,lower,0.9393689332670463 +karman_re400,sr,155,62.0,alpha,front,2.8460058413044655 +karman_re400,sr,155,62.0,alpha,upper,-6.784047814570959 +karman_re400,sr,155,62.0,alpha,lower,0.07836954645027294 +karman_re400,sr,156,62.4,alpha,front,2.8197929947382283 +karman_re400,sr,156,62.4,alpha,upper,-5.071840731980192 +karman_re400,sr,156,62.4,alpha,lower,1.7905766290410408 +karman_re400,sr,157,62.8,alpha,front,1.8124359767300569 +karman_re400,sr,157,62.8,alpha,upper,-3.0918639747776346 +karman_re400,sr,157,62.8,alpha,lower,3.7705533862435976 +karman_re400,sr,158,63.2,alpha,front,0.6135250511004942 +karman_re400,sr,158,63.2,alpha,upper,-2.368937708258077 +karman_re400,sr,158,63.2,alpha,lower,4.493479652763155 +karman_re400,sr,159,63.6,alpha,front,-0.6159865763733382 +karman_re400,sr,159,63.6,alpha,upper,-2.506414177117889 +karman_re400,sr,159,63.6,alpha,lower,4.3560031839033435 +karman_re400,sr,160,64.0,alpha,front,-1.499562306211755 +karman_re400,sr,160,64.0,alpha,upper,-2.665413335542119 +karman_re400,sr,160,64.0,alpha,lower,4.197004025479113 +karman_re400,sr,161,64.4,alpha,front,-2.1352678578511703 +karman_re400,sr,161,64.4,alpha,upper,-1.418345147690525 +karman_re400,sr,161,64.4,alpha,lower,5.444072213330707 +karman_re400,sr,162,64.8,alpha,front,-2.6912724268219255 +karman_re400,sr,162,64.8,alpha,upper,-0.06257929328464584 +karman_re400,sr,162,64.8,alpha,lower,6.799838067736586 +karman_re400,sr,163,65.2,alpha,front,-2.916382731406873 +karman_re400,sr,163,65.2,alpha,upper,-1.0506241015236117 +karman_re400,sr,163,65.2,alpha,lower,5.8117932594976205 +karman_re400,sr,164,65.6,alpha,front,-2.126923136216887 +karman_re400,sr,164,65.6,alpha,upper,-3.3838422600201046 +karman_re400,sr,164,65.6,alpha,lower,3.478575101001128 +karman_re400,sr,165,66.0,alpha,front,-0.9170524291492892 +karman_re400,sr,165,66.0,alpha,upper,-4.395538991984708 +karman_re400,sr,165,66.0,alpha,lower,2.4668783690365244 +karman_re400,sr,166,66.4,alpha,front,0.31275387984034175 +karman_re400,sr,166,66.4,alpha,upper,-4.40288789856381 +karman_re400,sr,166,66.4,alpha,lower,2.459529462457423 +karman_re400,sr,167,66.8,alpha,front,1.2695336130608026 +karman_re400,sr,167,66.8,alpha,upper,-4.1200437545916895 +karman_re400,sr,167,66.8,alpha,lower,2.742373606429543 +karman_re400,sr,168,67.2,alpha,front,1.945848692926718 +karman_re400,sr,168,67.2,alpha,upper,-5.0993985987913915 +karman_re400,sr,168,67.2,alpha,lower,1.7630187622298406 +karman_re400,sr,169,67.6,alpha,front,2.5672582616670327 +karman_re400,sr,169,67.6,alpha,upper,-6.670356560667568 +karman_re400,sr,169,67.6,alpha,lower,0.19206080035366302 +karman_re400,sr,170,68.0,alpha,front,2.9397969693692523 +karman_re400,sr,170,68.0,alpha,upper,-6.264492375218386 +karman_re400,sr,170,68.0,alpha,lower,0.5979249858028455 +karman_re400,sr,171,68.4,alpha,front,2.398660918802528 +karman_re400,sr,171,68.4,alpha,upper,-3.9291484842149393 +karman_re400,sr,171,68.4,alpha,lower,2.933268876806293 +karman_re400,sr,172,68.8,alpha,front,1.2190740099602437 +karman_re400,sr,172,68.8,alpha,upper,-2.5722233538789463 +karman_re400,sr,172,68.8,alpha,lower,4.290194007142286 +karman_re400,sr,173,69.2,alpha,front,0.00369793223466849 +karman_re400,sr,173,69.2,alpha,upper,-2.343711790940809 +karman_re400,sr,173,69.2,alpha,lower,4.518705570080423 +karman_re400,sr,174,69.6,alpha,front,-1.047587682685732 +karman_re400,sr,174,69.6,alpha,upper,-2.658051640312662 +karman_re400,sr,174,69.6,alpha,lower,4.20436572070857 +karman_re400,sr,175,70.0,alpha,front,-1.7643790025590085 +karman_re400,sr,175,70.0,alpha,upper,-1.965333079407066 +karman_re400,sr,175,70.0,alpha,lower,4.897084281614166 +karman_re400,sr,176,70.4,alpha,front,-2.4166002166243157 +karman_re400,sr,176,70.4,alpha,upper,-0.41977840124891586 +karman_re400,sr,176,70.4,alpha,lower,6.442638959772316 +karman_re400,sr,177,70.8,alpha,front,-2.856585160800527 +karman_re400,sr,177,70.8,alpha,upper,-0.2994208349791321 +karman_re400,sr,177,70.8,alpha,lower,6.5629965260421 +karman_re400,sr,178,71.2,alpha,front,-2.555198031024679 +karman_re400,sr,178,71.2,alpha,upper,-2.5696522261742047 +karman_re400,sr,178,71.2,alpha,lower,4.292765134847028 +karman_re400,sr,179,71.6,alpha,front,-1.3935991931916323 +karman_re400,sr,179,71.6,alpha,upper,-4.130757598672579 +karman_re400,sr,179,71.6,alpha,lower,2.731659762348653 +karman_re400,sr,180,72.0,alpha,front,-0.1963164056917566 +karman_re400,sr,180,72.0,alpha,upper,-4.481460757362687 +karman_re400,sr,180,72.0,alpha,lower,2.3809566036585457 +karman_re400,sr,181,72.4,alpha,front,0.9343685312869202 +karman_re400,sr,181,72.4,alpha,upper,-4.282367962108266 +karman_re400,sr,181,72.4,alpha,lower,2.580049398912966 +karman_re400,sr,182,72.8,alpha,front,1.726849044911954 +karman_re400,sr,182,72.8,alpha,upper,-4.637128167877717 +karman_re400,sr,182,72.8,alpha,lower,2.2252891931435155 +karman_re400,sr,183,73.2,alpha,front,2.37329530934409 +karman_re400,sr,183,73.2,alpha,upper,-6.041717207070818 +karman_re400,sr,183,73.2,alpha,lower,0.8207001539504152 +karman_re400,sr,184,73.6,alpha,front,2.874109231631845 +karman_re400,sr,184,73.6,alpha,upper,-6.784187347881085 +karman_re400,sr,184,73.6,alpha,lower,0.07823001314014766 +karman_re400,sr,185,74.0,alpha,front,2.8055569071781075 +karman_re400,sr,185,74.0,alpha,upper,-5.053298863669394 +karman_re400,sr,185,74.0,alpha,lower,1.809118497351839 +karman_re400,sr,186,74.4,alpha,front,1.7898298152461367 +karman_re400,sr,186,74.4,alpha,upper,-3.130898285070071 +karman_re400,sr,186,74.4,alpha,lower,3.731519075951161 +karman_re400,sr,187,74.8,alpha,front,0.5807391239792845 +karman_re400,sr,187,74.8,alpha,upper,-2.398596719873466 +karman_re400,sr,187,74.8,alpha,lower,4.463820641147766 +karman_re400,sr,188,75.2,alpha,front,-0.6685546596852869 +karman_re400,sr,188,75.2,alpha,upper,-2.5326479618798157 +karman_re400,sr,188,75.2,alpha,lower,4.329769399141417 +karman_re400,sr,189,75.6,alpha,front,-1.5508823553625497 +karman_re400,sr,189,75.6,alpha,upper,-2.7198095553362034 +karman_re400,sr,189,75.6,alpha,lower,4.142607805685029 +karman_re400,sr,190,76.0,alpha,front,-2.1871651932861913 +karman_re400,sr,190,76.0,alpha,upper,-1.4918820186745376 +karman_re400,sr,190,76.0,alpha,lower,5.370535342346694 +karman_re400,sr,191,76.4,alpha,front,-2.749260083715749 +karman_re400,sr,191,76.4,alpha,upper,-0.09630737940054512 +karman_re400,sr,191,76.4,alpha,lower,6.766109981620687 +karman_re400,sr,192,76.8,alpha,front,-2.9755282464548314 +karman_re400,sr,192,76.8,alpha,upper,-0.9621248141157137 +karman_re400,sr,192,76.8,alpha,lower,5.9002925469055185 +karman_re400,sr,193,77.2,alpha,front,-2.2038799444444686 +karman_re400,sr,193,77.2,alpha,upper,-3.226493141983368 +karman_re400,sr,193,77.2,alpha,lower,3.6359242190378644 +karman_re400,sr,194,77.6,alpha,front,-1.0383599154996999 +karman_re400,sr,194,77.6,alpha,upper,-4.361468200488456 +karman_re400,sr,194,77.6,alpha,lower,2.5009491605327754 +karman_re400,sr,195,78.0,alpha,front,0.1973917051806762 +karman_re400,sr,195,78.0,alpha,upper,-4.478824772931144 +karman_re400,sr,195,78.0,alpha,lower,2.3835925880900883 +karman_re400,sr,196,78.4,alpha,front,1.1712527321620467 +karman_re400,sr,196,78.4,alpha,upper,-4.1305703362923785 +karman_re400,sr,196,78.4,alpha,lower,2.731847024728854 +karman_re400,sr,197,78.8,alpha,front,1.8560395171088606 +karman_re400,sr,197,78.8,alpha,upper,-5.0637849479772905 +karman_re400,sr,197,78.8,alpha,lower,1.7986324130439413 +karman_re400,sr,198,79.2,alpha,front,2.4767585800583514 +karman_re400,sr,198,79.2,alpha,upper,-6.600693280528638 +karman_re400,sr,198,79.2,alpha,lower,0.26172408049259355 +karman_re400,sr,199,79.6,alpha,front,2.834458694826127 +karman_re400,sr,199,79.6,alpha,upper,-6.141520138934318 +karman_re400,sr,199,79.6,alpha,lower,0.7208972220869136 +karman_re400,sr,200,80.0,alpha,front,2.302936312363706 +karman_re400,sr,200,80.0,alpha,upper,-3.7954480166183324 +karman_re400,sr,200,80.0,alpha,lower,3.0669693444029003 +karman_re400,sr,201,80.4,alpha,front,1.0991890934103727 +karman_re400,sr,201,80.4,alpha,upper,-2.5497908431892595 +karman_re400,sr,201,80.4,alpha,lower,4.312626517831973 +karman_re400,sr,202,80.8,alpha,front,-0.0691896642512549 +karman_re400,sr,202,80.8,alpha,upper,-2.463186102983979 +karman_re400,sr,202,80.8,alpha,lower,4.399231258037253 +karman_re400,sr,203,81.2,alpha,front,-1.0694354066748704 +karman_re400,sr,203,81.2,alpha,upper,-2.6615286307508956 +karman_re400,sr,203,81.2,alpha,lower,4.200888730270337 +karman_re400,sr,204,81.6,alpha,front,-1.790188166084469 +karman_re400,sr,204,81.6,alpha,upper,-1.845749759344202 +karman_re400,sr,204,81.6,alpha,lower,5.01666760167703 +karman_re400,sr,205,82.0,alpha,front,-2.454096741217069 +karman_re400,sr,205,82.0,alpha,upper,-0.3289969487359685 +karman_re400,sr,205,82.0,alpha,lower,6.533420412285263 +karman_re400,sr,206,82.4,alpha,front,-2.8689288398076322 +karman_re400,sr,206,82.4,alpha,upper,-0.29966602690052513 +karman_re400,sr,206,82.4,alpha,lower,6.562751334120706 +karman_re400,sr,207,82.8,alpha,front,-2.536604857252437 +karman_re400,sr,207,82.8,alpha,upper,-2.5421331820515825 +karman_re400,sr,207,82.8,alpha,lower,4.32028417896965 +karman_re400,sr,208,83.2,alpha,front,-1.3797211456711982 +karman_re400,sr,208,83.2,alpha,upper,-4.11235503530315 +karman_re400,sr,208,83.2,alpha,lower,2.7500623257180825 +karman_re400,sr,209,83.6,alpha,front,-0.15915711280515205 +karman_re400,sr,209,83.6,alpha,upper,-4.48766447075165 +karman_re400,sr,209,83.6,alpha,lower,2.3747528902695825 +karman_re400,sr,210,84.0,alpha,front,0.9850957098214039 +karman_re400,sr,210,84.0,alpha,upper,-4.2660603014636855 +karman_re400,sr,210,84.0,alpha,lower,2.5963570595575467 +karman_re400,sr,211,84.4,alpha,front,1.7683475016645653 +karman_re400,sr,211,84.4,alpha,upper,-4.580123672394526 +karman_re400,sr,211,84.4,alpha,lower,2.282293688626706 +karman_re400,sr,212,84.8,alpha,front,2.4096943595195603 +karman_re400,sr,212,84.8,alpha,upper,-6.014657336394281 +karman_re400,sr,212,84.8,alpha,lower,0.8477600246269512 +karman_re400,sr,213,85.2,alpha,front,2.9228092482005597 +karman_re400,sr,213,85.2,alpha,upper,-6.7909322952225795 +karman_re400,sr,213,85.2,alpha,lower,0.07148506579865321 +karman_re400,sr,214,85.6,alpha,front,2.8543692552572892 +karman_re400,sr,214,85.6,alpha,upper,-5.130682682476914 +karman_re400,sr,214,85.6,alpha,lower,1.7317346785443184 +karman_re400,sr,215,86.0,alpha,front,1.857702778260484 +karman_re400,sr,215,86.0,alpha,upper,-3.1833670725606242 +karman_re400,sr,215,86.0,alpha,lower,3.679050288460608 +karman_re400,sr,216,86.4,alpha,front,0.6579201734296385 +karman_re400,sr,216,86.4,alpha,upper,-2.357649592877905 +karman_re400,sr,216,86.4,alpha,lower,4.504767768143328 +karman_re400,sr,217,86.8,alpha,front,-0.6014934583333388 +karman_re400,sr,217,86.8,alpha,upper,-2.5009248011987655 +karman_re400,sr,217,86.8,alpha,lower,4.361492559822467 +karman_re400,sr,218,87.2,alpha,front,-1.4876607604778636 +karman_re400,sr,218,87.2,alpha,upper,-2.736721631955904 +karman_re400,sr,218,87.2,alpha,lower,4.125695729065328 +karman_re400,sr,219,87.6,alpha,front,-2.120820160813229 +karman_re400,sr,219,87.6,alpha,upper,-1.5191443763150305 +karman_re400,sr,219,87.6,alpha,lower,5.343272984706202 +karman_re400,sr,220,88.0,alpha,front,-2.6811436765623147 +karman_re400,sr,220,88.0,alpha,upper,-0.12593830165890374 +karman_re400,sr,220,88.0,alpha,lower,6.7364790593623285 +karman_re400,sr,221,88.4,alpha,front,-2.907168617161342 +karman_re400,sr,221,88.4,alpha,upper,-1.097472733920576 +karman_re400,sr,221,88.4,alpha,lower,5.764944627100656 +karman_re400,sr,222,88.8,alpha,front,-2.120230353783567 +karman_re400,sr,222,88.8,alpha,upper,-3.3594402971757202 +karman_re400,sr,222,88.8,alpha,lower,3.5029770638455124 +karman_re400,sr,223,89.2,alpha,front,-0.9438685802863673 +karman_re400,sr,223,89.2,alpha,upper,-4.37637519942747 +karman_re400,sr,223,89.2,alpha,lower,2.4860421615937622 +karman_re400,sr,224,89.6,alpha,front,0.2544329246990084 +karman_re400,sr,224,89.6,alpha,upper,-4.427483518113572 +karman_re400,sr,224,89.6,alpha,lower,2.43493384290766 +karman_re400,sr,225,90.0,alpha,front,1.2034187491847814 +karman_re400,sr,225,90.0,alpha,upper,-4.172460169514121 +karman_re400,sr,225,90.0,alpha,lower,2.689957191507111 +karman_re400,sr,226,90.4,alpha,front,1.8868548476177933 +karman_re400,sr,226,90.4,alpha,upper,-5.181132081178049 +karman_re400,sr,226,90.4,alpha,lower,1.6812852798431834 +karman_re400,sr,227,90.8,alpha,front,2.503790247856223 +karman_re400,sr,227,90.8,alpha,upper,-6.696731629566753 +karman_re400,sr,227,90.8,alpha,lower,0.16568573145447907 +karman_re400,sr,228,91.2,alpha,front,2.8393681590310234 +karman_re400,sr,228,91.2,alpha,upper,-6.170502874539259 +karman_re400,sr,228,91.2,alpha,lower,0.6919144864819735 +karman_re400,sr,229,91.6,alpha,front,2.289634396732529 +karman_re400,sr,229,91.6,alpha,upper,-3.767645795237845 +karman_re400,sr,229,91.6,alpha,lower,3.094771565783387 +karman_re400,sr,230,92.0,alpha,front,1.0677059898115489 +karman_re400,sr,230,92.0,alpha,upper,-2.471977691119815 +karman_re400,sr,230,92.0,alpha,lower,4.390439669901417 +karman_re400,sr,231,92.4,alpha,front,-0.13826510167530237 +karman_re400,sr,231,92.4,alpha,upper,-2.4180835780980097 +karman_re400,sr,231,92.4,alpha,lower,4.444333782923223 +karman_re400,sr,232,92.8,alpha,front,-1.1460884758261256 +karman_re400,sr,232,92.8,alpha,upper,-2.6718990082222462 +karman_re400,sr,232,92.8,alpha,lower,4.1905183527989855 +karman_re400,sr,233,93.2,alpha,front,-1.8419707280196647 +karman_re400,sr,233,93.2,alpha,upper,-1.8608534599053452 +karman_re400,sr,233,93.2,alpha,lower,5.001563901115887 +karman_re400,sr,234,93.6,alpha,front,-2.4936173641889425 +karman_re400,sr,234,93.6,alpha,upper,-0.2856248500397247 +karman_re400,sr,234,93.6,alpha,lower,6.576792510981508 +karman_re400,sr,235,94.0,alpha,front,-2.926716253574102 +karman_re400,sr,235,94.0,alpha,upper,-0.2951352668976086 +karman_re400,sr,235,94.0,alpha,lower,6.567282094123623 +karman_re400,sr,236,94.4,alpha,front,-2.5682705772554315 +karman_re400,sr,236,94.4,alpha,upper,-2.601936565012507 +karman_re400,sr,236,94.4,alpha,lower,4.260480796008725 +karman_re400,sr,237,94.8,alpha,front,-1.396756108234016 +karman_re400,sr,237,94.8,alpha,upper,-4.1190520252058125 +karman_re400,sr,237,94.8,alpha,lower,2.7433653358154197 +karman_re400,sr,238,95.2,alpha,front,-0.1764551621722371 +karman_re400,sr,238,95.2,alpha,upper,-4.499710770402879 +karman_re400,sr,238,95.2,alpha,lower,2.3627065906183535 +karman_re400,sr,239,95.6,alpha,front,0.9735827067942704 +karman_re400,sr,239,95.6,alpha,upper,-4.258650192057884 +karman_re400,sr,239,95.6,alpha,lower,2.6037671689633486 +karman_re400,sr,240,96.0,alpha,front,1.7524754144340178 +karman_re400,sr,240,96.0,alpha,upper,-4.586237865231003 +karman_re400,sr,240,96.0,alpha,lower,2.2761794957902293 +karman_re400,sr,241,96.4,alpha,front,2.392896580723112 +karman_re400,sr,241,96.4,alpha,upper,-6.016471954532179 +karman_re400,sr,241,96.4,alpha,lower,0.8459454064890536 +karman_re400,sr,242,96.8,alpha,front,2.905347337098354 +karman_re400,sr,242,96.8,alpha,upper,-6.7763519397280545 +karman_re400,sr,242,96.8,alpha,lower,0.08606542129317774 +karman_re400,sr,243,97.2,alpha,front,2.8266402440983915 +karman_re400,sr,243,97.2,alpha,upper,-5.054529314528566 +karman_re400,sr,243,97.2,alpha,lower,1.8078880464926659 +karman_re400,sr,244,97.6,alpha,front,1.8180237367789873 +karman_re400,sr,244,97.6,alpha,upper,-3.148046342737992 +karman_re400,sr,244,97.6,alpha,lower,3.7143710182832406 +karman_re400,sr,245,98.0,alpha,front,0.6226736534315215 +karman_re400,sr,245,98.0,alpha,upper,-2.3567635221032956 +karman_re400,sr,245,98.0,alpha,lower,4.505653838917937 +karman_re400,sr,246,98.4,alpha,front,-0.6241970773925458 +karman_re400,sr,246,98.4,alpha,upper,-2.4959527566356767 +karman_re400,sr,246,98.4,alpha,lower,4.3664646043855555 +karman_re400,sr,247,98.8,alpha,front,-1.507456147810942 +karman_re400,sr,247,98.8,alpha,upper,-2.687330950809172 +karman_re400,sr,247,98.8,alpha,lower,4.17508641021206 +karman_re400,sr,248,99.2,alpha,front,-2.1415455464934396 +karman_re400,sr,248,99.2,alpha,upper,-1.4482373999290585 +karman_re400,sr,248,99.2,alpha,lower,5.414179961092174 +karman_re400,sr,249,99.6,alpha,front,-2.6962376571837967 +karman_re400,sr,249,99.6,alpha,upper,-0.10409581971268755 +karman_re400,sr,249,99.6,alpha,lower,6.758321541308545 +karman_re400,sr,250,100.0,alpha,front,-2.901985827747578 +karman_re400,sr,250,100.0,alpha,upper,-1.1362798934233704 +karman_re400,sr,250,100.0,alpha,lower,5.726137467597862 +karman_re400,sr,251,100.4,alpha,front,-2.0940704761864946 +karman_re400,sr,251,100.4,alpha,upper,-3.4276415605365465 +karman_re400,sr,251,100.4,alpha,lower,3.4347758004846862 +karman_re400,sr,252,100.8,alpha,front,-0.9024607879386467 +karman_re400,sr,252,100.8,alpha,upper,-4.407025940428736 +karman_re400,sr,252,100.8,alpha,lower,2.4553914205924965 +karman_re400,sr,253,101.2,alpha,front,0.30615464779933604 +karman_re400,sr,253,101.2,alpha,upper,-4.4187863223970245 +karman_re400,sr,253,101.2,alpha,lower,2.4436310386242077 +karman_re400,sr,254,101.6,alpha,front,1.2468294612039172 +karman_re400,sr,254,101.6,alpha,upper,-4.161864163711504 +karman_re400,sr,254,101.6,alpha,lower,2.700553197309728 +karman_re400,sr,255,102.0,alpha,front,1.9228074133390118 +karman_re400,sr,255,102.0,alpha,upper,-5.205289232715634 +karman_re400,sr,255,102.0,alpha,lower,1.657128128305598 +karman_re400,sr,256,102.4,alpha,front,2.5335114783331676 +karman_re400,sr,256,102.4,alpha,upper,-6.729047026555918 +karman_re400,sr,256,102.4,alpha,lower,0.13337033446531432 +karman_re400,sr,257,102.8,alpha,front,2.871443467249061 +karman_re400,sr,257,102.8,alpha,upper,-6.147879295323432 +karman_re400,sr,257,102.8,alpha,lower,0.7145380656978002 +karman_re400,sr,258,103.2,alpha,front,2.2902605228039152 +karman_re400,sr,258,103.2,alpha,upper,-3.735485689002993 +karman_re400,sr,258,103.2,alpha,lower,3.126931672018239 +karman_re400,sr,259,103.6,alpha,front,1.0679954765499857 +karman_re400,sr,259,103.6,alpha,upper,-2.4717499313468227 +karman_re400,sr,259,103.6,alpha,lower,4.3906674296744095 +karman_re400,sr,260,104.0,alpha,front,-0.14723232247177775 +karman_re400,sr,260,104.0,alpha,upper,-2.417306515343095 +karman_re400,sr,260,104.0,alpha,lower,4.445110845678137 +karman_re400,sr,261,104.4,alpha,front,-1.1553512522595901 +karman_re400,sr,261,104.4,alpha,upper,-2.688787334491287 +karman_re400,sr,261,104.4,alpha,lower,4.1736300265299455 +karman_re400,sr,262,104.8,alpha,front,-1.8457773898304974 +karman_re400,sr,262,104.8,alpha,upper,-1.8772296311768286 +karman_re400,sr,262,104.8,alpha,lower,4.985187729844403 +karman_re400,sr,263,105.2,alpha,front,-2.4952802257423077 +karman_re400,sr,263,105.2,alpha,upper,-0.2925386380150754 +karman_re400,sr,263,105.2,alpha,lower,6.569878723006157 +karman_re400,sr,264,105.6,alpha,front,-2.927901373209433 +karman_re400,sr,264,105.6,alpha,upper,-0.29997813086752645 +karman_re400,sr,264,105.6,alpha,lower,6.5624392301537045 +karman_re400,sr,265,106.0,alpha,front,-2.5644523270951005 +karman_re400,sr,265,106.0,alpha,upper,-2.6081734679940585 +karman_re400,sr,265,106.0,alpha,lower,4.254243893027174 +karman_re400,sr,266,106.4,alpha,front,-1.3951025262402115 +karman_re400,sr,266,106.4,alpha,upper,-4.109868556284092 +karman_re400,sr,266,106.4,alpha,lower,2.7525488047371396 +karman_re400,sr,267,106.8,alpha,front,-0.18274477537113396 +karman_re400,sr,267,106.8,alpha,upper,-4.520075782618478 +karman_re400,sr,267,106.8,alpha,lower,2.3423415784027544 +karman_re400,sr,268,107.2,alpha,front,0.9689530057701855 +karman_re400,sr,268,107.2,alpha,upper,-4.274560795558104 +karman_re400,sr,268,107.2,alpha,lower,2.5878565654631287 +karman_re400,sr,269,107.6,alpha,front,1.7480257102255192 +karman_re400,sr,269,107.6,alpha,upper,-4.6102710886568135 +karman_re400,sr,269,107.6,alpha,lower,2.2521462723644188 +karman_re400,sr,270,108.0,alpha,front,2.388169066925289 +karman_re400,sr,270,108.0,alpha,upper,-6.0380855348616205 +karman_re400,sr,270,108.0,alpha,lower,0.8243318261596114 +karman_re400,sr,271,108.4,alpha,front,2.8942079584429914 +karman_re400,sr,271,108.4,alpha,upper,-6.763758620782466 +karman_re400,sr,271,108.4,alpha,lower,0.0986587402387662 +karman_re400,sr,272,108.8,alpha,front,2.802282776646541 +karman_re400,sr,272,108.8,alpha,upper,-4.981066587267447 +karman_re400,sr,272,108.8,alpha,lower,1.8813507737537853 +karman_re400,sr,273,109.2,alpha,front,1.7783548184533748 +karman_re400,sr,273,109.2,alpha,upper,-3.083232853754588 +karman_re400,sr,273,109.2,alpha,lower,3.779184507266644 +karman_re400,sr,274,109.6,alpha,front,0.5794136898554343 +karman_re400,sr,274,109.6,alpha,upper,-2.350051003125202 +karman_re400,sr,274,109.6,alpha,lower,4.51236635789603 +karman_re400,sr,275,110.0,alpha,front,-0.6528372391807125 +karman_re400,sr,275,110.0,alpha,upper,-2.501584330167083 +karman_re400,sr,275,110.0,alpha,lower,4.36083303085415 +karman_re400,sr,276,110.4,alpha,front,-1.5289805968088903 +karman_re400,sr,276,110.4,alpha,upper,-2.6345025586502984 +karman_re400,sr,276,110.4,alpha,lower,4.227914802370934 +karman_re400,sr,277,110.8,alpha,front,-2.1632594494657607 +karman_re400,sr,277,110.8,alpha,upper,-1.3662094740925568 +karman_re400,sr,277,110.8,alpha,lower,5.4962078869286755 +karman_re400,sr,278,111.2,alpha,front,-2.711698735405493 +karman_re400,sr,278,111.2,alpha,upper,-0.07939644462462647 +karman_re400,sr,278,111.2,alpha,lower,6.783020916396605 +karman_re400,sr,279,111.6,alpha,front,-2.8957704764336465 +karman_re400,sr,279,111.6,alpha,upper,-1.2023647873962515 +karman_re400,sr,279,111.6,alpha,lower,5.660052573624981 +karman_re400,sr,280,112.0,alpha,front,-2.0569812310188453 +karman_re400,sr,280,112.0,alpha,upper,-3.4980479526086157 +karman_re400,sr,280,112.0,alpha,lower,3.3643694084126174 +karman_re400,sr,281,112.4,alpha,front,-0.8529234798187905 +karman_re400,sr,281,112.4,alpha,upper,-4.419765263132546 +karman_re400,sr,281,112.4,alpha,lower,2.4426520978886863 +karman_re400,sr,282,112.8,alpha,front,0.3665908541225519 +karman_re400,sr,282,112.8,alpha,upper,-4.3887022404031635 +karman_re400,sr,282,112.8,alpha,lower,2.4737151206180688 +karman_re400,sr,283,113.2,alpha,front,1.2979185869610603 +karman_re400,sr,283,113.2,alpha,upper,-4.135683664992724 +karman_re400,sr,283,113.2,alpha,lower,2.726733696028508 +karman_re400,sr,284,113.6,alpha,front,1.967508960932776 +karman_re400,sr,284,113.6,alpha,upper,-5.204189408785089 +karman_re400,sr,284,113.6,alpha,lower,1.6582279522361434 +karman_re400,sr,285,114.0,alpha,front,2.5729590192235277 +karman_re400,sr,285,114.0,alpha,upper,-6.735645361155841 +karman_re400,sr,285,114.0,alpha,lower,0.12677199986539156 +karman_re400,sr,286,114.4,alpha,front,2.9113543645201463 +karman_re400,sr,286,114.4,alpha,upper,-6.154643577886297 +karman_re400,sr,286,114.4,alpha,lower,0.7077737831349351 +karman_re400,sr,287,114.8,alpha,front,2.3119683874025507 +karman_re400,sr,287,114.8,alpha,upper,-3.783268045121723 +karman_re400,sr,287,114.8,alpha,lower,3.0791493158995094 +karman_re400,sr,288,115.2,alpha,front,1.106904469987298 +karman_re400,sr,288,115.2,alpha,upper,-2.5045092771983173 +karman_re400,sr,288,115.2,alpha,lower,4.357908083822915 +karman_re400,sr,289,115.6,alpha,front,-0.11479261949174736 +karman_re400,sr,289,115.6,alpha,upper,-2.391893640137301 +karman_re400,sr,289,115.6,alpha,lower,4.470523720883931 +karman_re400,sr,290,116.0,alpha,front,-1.1360007065879225 +karman_re400,sr,290,116.0,alpha,upper,-2.68453693519824 +karman_re400,sr,290,116.0,alpha,lower,4.177880425822992 +karman_re400,sr,291,116.4,alpha,front,-1.8317147279146004 +karman_re400,sr,291,116.4,alpha,upper,-1.9075740535529202 +karman_re400,sr,291,116.4,alpha,lower,4.9548433074683125 +karman_re400,sr,292,116.8,alpha,front,-2.4810003599729695 +karman_re400,sr,292,116.8,alpha,upper,-0.32114761008880155 +karman_re400,sr,292,116.8,alpha,lower,6.541269750932431 +karman_re400,sr,293,117.2,alpha,front,-2.910885413763801 +karman_re400,sr,293,117.2,alpha,upper,-0.3342312367542575 +karman_re400,sr,293,117.2,alpha,lower,6.528186124266975 +karman_re400,sr,294,117.6,alpha,front,-2.5471381785489555 +karman_re400,sr,294,117.6,alpha,upper,-2.6472954718889303 +karman_re400,sr,294,117.6,alpha,lower,4.215121889132302 +karman_re400,sr,295,118.0,alpha,front,-1.3770100046861622 +karman_re400,sr,295,118.0,alpha,upper,-4.142754266180764 +karman_re400,sr,295,118.0,alpha,lower,2.719663094840469 +karman_re400,sr,296,118.4,alpha,front,-0.17413196501688125 +karman_re400,sr,296,118.4,alpha,upper,-4.525125777050398 +karman_re400,sr,296,118.4,alpha,lower,2.3372915839708335 +karman_re400,sr,297,118.8,alpha,front,0.9590167730715967 +karman_re400,sr,297,118.8,alpha,upper,-4.271472945480678 +karman_re400,sr,297,118.8,alpha,lower,2.5909444155405543 +karman_re400,sr,298,119.2,alpha,front,1.7337600079944577 +karman_re400,sr,298,119.2,alpha,upper,-4.678352991280991 +karman_re400,sr,298,119.2,alpha,lower,2.1840643697402413 +karman_re400,sr,299,119.6,alpha,front,2.378569917557714 +karman_re400,sr,299,119.6,alpha,upper,-6.107764191830146 +karman_re400,sr,299,119.6,alpha,lower,0.7546531691910867 +karman_re400,sr,300,120.0,alpha,front,2.8718692613934795 +karman_re400,sr,300,120.0,alpha,upper,-6.74556623279179 +karman_re400,sr,300,120.0,alpha,lower,0.11685112822944177 +karman_re400,sr,301,120.4,alpha,front,2.7541387344549286 +karman_re400,sr,301,120.4,alpha,upper,-4.857471893876508 +karman_re400,sr,301,120.4,alpha,lower,2.004945467144724 +karman_re400,sr,302,120.8,alpha,front,1.7009501937773464 +karman_re400,sr,302,120.8,alpha,upper,-3.0122007312901404 +karman_re400,sr,302,120.8,alpha,lower,3.8502166297310914 +karman_re400,sr,303,121.2,alpha,front,0.49559955351161167 +karman_re400,sr,303,121.2,alpha,upper,-2.382320726363098 +karman_re400,sr,303,121.2,alpha,lower,4.480096634658134 +karman_re400,sr,304,121.6,alpha,front,-0.7208128545477079 +karman_re400,sr,304,121.6,alpha,upper,-2.5263151440206 +karman_re400,sr,304,121.6,alpha,lower,4.336102217000632 +karman_re400,sr,305,122.0,alpha,front,-1.5884929874580307 +karman_re400,sr,305,122.0,alpha,upper,-2.5920969165308962 +karman_re400,sr,305,122.0,alpha,lower,4.270320444490336 +karman_re400,sr,306,122.4,alpha,front,-2.2229723940409007 +karman_re400,sr,306,122.4,alpha,upper,-1.3016237448821455 +karman_re400,sr,306,122.4,alpha,lower,5.560793616139087 +karman_re400,sr,307,122.8,alpha,front,-2.7685050022477324 +karman_re400,sr,307,122.8,alpha,upper,-0.06527419685532454 +karman_re400,sr,307,122.8,alpha,lower,6.797143164165907 +karman_re400,sr,308,123.2,alpha,front,-2.9277214651934598 +karman_re400,sr,308,123.2,alpha,upper,-1.179833773649663 +karman_re400,sr,308,123.2,alpha,lower,5.682583587371569 +karman_re400,sr,309,123.6,alpha,front,-2.0798196922904197 +karman_re400,sr,309,123.6,alpha,upper,-3.4342493343783973 +karman_re400,sr,309,123.6,alpha,lower,3.4281680266428345 +karman_re400,sr,310,124.0,alpha,front,-0.8827809733019103 +karman_re400,sr,310,124.0,alpha,upper,-4.411660912707463 +karman_re400,sr,310,124.0,alpha,lower,2.4507564483137694 +karman_re400,sr,311,124.4,alpha,front,0.3621368875326285 +karman_re400,sr,311,124.4,alpha,upper,-4.397868657791077 +karman_re400,sr,311,124.4,alpha,lower,2.4645487032301556 +karman_re400,sr,312,124.8,alpha,front,1.2993611366745288 +karman_re400,sr,312,124.8,alpha,upper,-4.090674314559343 +karman_re400,sr,312,124.8,alpha,lower,2.7717430464618897 +karman_re400,sr,313,125.2,alpha,front,1.9696040990023103 +karman_re400,sr,313,125.2,alpha,upper,-5.129949162031542 +karman_re400,sr,313,125.2,alpha,lower,1.7324681989896906 +karman_re400,sr,314,125.6,alpha,front,2.5745860057332335 +karman_re400,sr,314,125.6,alpha,upper,-6.683306743856403 +karman_re400,sr,314,125.6,alpha,lower,0.17911061716482957 +karman_re400,sr,315,126.0,alpha,front,2.9191718384521383 +karman_re400,sr,315,126.0,alpha,upper,-6.1248769284637525 +karman_re400,sr,315,126.0,alpha,lower,0.7375404325574801 +karman_re400,sr,316,126.4,alpha,front,2.3176806001091252 +karman_re400,sr,316,126.4,alpha,upper,-3.820754928721182 +karman_re400,sr,316,126.4,alpha,lower,3.0416624323000496 +karman_re400,sr,317,126.8,alpha,front,1.1376603935551222 +karman_re400,sr,317,126.8,alpha,upper,-2.5413542923466172 +karman_re400,sr,317,126.8,alpha,lower,4.321063068674615 +karman_re400,sr,318,127.2,alpha,front,-0.06511689497510018 +karman_re400,sr,318,127.2,alpha,upper,-2.386781529403655 +karman_re400,sr,318,127.2,alpha,lower,4.475635831617577 +karman_re400,sr,319,127.6,alpha,front,-1.0828100491891084 +karman_re400,sr,319,127.6,alpha,upper,-2.6692797708328353 +karman_re400,sr,319,127.6,alpha,lower,4.193137590188397 +karman_re400,sr,320,128.0,alpha,front,-1.7866310311862155 +karman_re400,sr,320,128.0,alpha,upper,-1.8866177185042312 +karman_re400,sr,320,128.0,alpha,lower,4.975799642517001 +karman_re400,sr,321,128.4,alpha,front,-2.438892382676606 +karman_re400,sr,321,128.4,alpha,upper,-0.32517953660494703 +karman_re400,sr,321,128.4,alpha,lower,6.537237824416285 +karman_re400,sr,322,128.8,alpha,front,-2.8490690727551162 +karman_re400,sr,322,128.8,alpha,upper,-0.3694747779372456 +karman_re400,sr,322,128.8,alpha,lower,6.492942583083987 +karman_re400,sr,323,129.2,alpha,front,-2.489246913635062 +karman_re400,sr,323,129.2,alpha,upper,-2.7026913378524444 +karman_re400,sr,323,129.2,alpha,lower,4.159726023168788 +karman_re400,sr,324,129.6,alpha,front,-1.3070872358047263 +karman_re400,sr,324,129.6,alpha,upper,-4.192664410125255 +karman_re400,sr,324,129.6,alpha,lower,2.669752950895977 +karman_re400,sr,325,130.0,alpha,front,-0.10894364844365645 +karman_re400,sr,325,130.0,alpha,upper,-4.501388215041134 +karman_re400,sr,325,130.0,alpha,lower,2.3610291459800985 +karman_re400,sr,326,130.4,alpha,front,0.9983577988261423 +karman_re400,sr,326,130.4,alpha,upper,-4.26099995431481 +karman_re400,sr,326,130.4,alpha,lower,2.6014174067064215 +karman_re400,sr,327,130.8,alpha,front,1.7630393715970274 +karman_re400,sr,327,130.8,alpha,upper,-4.741547802519439 +karman_re400,sr,327,130.8,alpha,lower,2.120869558501793 +karman_re400,sr,328,131.2,alpha,front,2.4107504533171773 +karman_re400,sr,328,131.2,alpha,upper,-6.17967934015245 +karman_re400,sr,328,131.2,alpha,lower,0.6827380208687814 +karman_re400,sr,329,131.6,alpha,front,2.8969286009866204 +karman_re400,sr,329,131.6,alpha,upper,-6.748456239403305 +karman_re400,sr,329,131.6,alpha,lower,0.11396112161792747 +karman_re400,sr,330,132.0,alpha,front,2.7508370760433265 +karman_re400,sr,330,132.0,alpha,upper,-4.830699920078802 +karman_re400,sr,330,132.0,alpha,lower,2.031717440942431 +karman_re400,sr,331,132.4,alpha,front,1.6889448412958374 +karman_re400,sr,331,132.4,alpha,upper,-3.024448299938627 +karman_re400,sr,331,132.4,alpha,lower,3.837969061082606 +karman_re400,sr,332,132.8,alpha,front,0.47977252098471884 +karman_re400,sr,332,132.8,alpha,upper,-2.3906729330117313 +karman_re400,sr,332,132.8,alpha,lower,4.471744428009501 +karman_re400,sr,333,133.2,alpha,front,-0.7463790845318556 +karman_re400,sr,333,133.2,alpha,upper,-2.5319314929682504 +karman_re400,sr,333,133.2,alpha,lower,4.330485868052982 +karman_re400,sr,334,133.6,alpha,front,-1.6107677931859763 +karman_re400,sr,334,133.6,alpha,upper,-2.6154021003614862 +karman_re400,sr,334,133.6,alpha,lower,4.2470152606597456 +karman_re400,sr,335,134.0,alpha,front,-2.241657075814357 +karman_re400,sr,335,134.0,alpha,upper,-1.3287676552610157 +karman_re400,sr,335,134.0,alpha,lower,5.533649705760217 +karman_re400,sr,336,134.4,alpha,front,-2.7895155234853424 +karman_re400,sr,336,134.4,alpha,upper,-0.08177520971360863 +karman_re400,sr,336,134.4,alpha,lower,6.780642151307624 +karman_re400,sr,337,134.8,alpha,front,-2.9438268734072106 +karman_re400,sr,337,134.8,alpha,upper,-1.1545888256026995 +karman_re400,sr,337,134.8,alpha,lower,5.707828535418533 +karman_re400,sr,338,135.2,alpha,front,-2.102646254413849 +karman_re400,sr,338,135.2,alpha,upper,-3.3806572770983143 +karman_re400,sr,338,135.2,alpha,lower,3.4817600839229184 +karman_re400,sr,339,135.6,alpha,front,-0.92216773085716 +karman_re400,sr,339,135.6,alpha,upper,-4.401232986309514 +karman_re400,sr,339,135.6,alpha,lower,2.461184374711718 +karman_re400,sr,340,136.0,alpha,front,0.3208349554235764 +karman_re400,sr,340,136.0,alpha,upper,-4.4204043911586295 +karman_re400,sr,340,136.0,alpha,lower,2.4420129698626023 +karman_re400,sr,341,136.4,alpha,front,1.2622917382203893 +karman_re400,sr,341,136.4,alpha,upper,-4.101650934955864 +karman_re400,sr,341,136.4,alpha,lower,2.760766426065368 +karman_re400,sr,342,136.8,alpha,front,1.938226489343751 +karman_re400,sr,342,136.8,alpha,upper,-5.126213049177778 +karman_re400,sr,342,136.8,alpha,lower,1.736204311843454 +karman_re400,sr,343,137.2,alpha,front,2.5410531406671275 +karman_re400,sr,343,137.2,alpha,upper,-6.657665652140103 +karman_re400,sr,343,137.2,alpha,lower,0.20475170888112837 +karman_re400,sr,344,137.6,alpha,front,2.8746999266576374 +karman_re400,sr,344,137.6,alpha,upper,-6.051807299955216 +karman_re400,sr,344,137.6,alpha,lower,0.8106100610660154 +karman_re400,sr,345,138.0,alpha,front,2.267831028150093 +karman_re400,sr,345,138.0,alpha,upper,-3.7510814481111354 +karman_re400,sr,345,138.0,alpha,lower,3.111335912910097 +karman_re400,sr,346,138.4,alpha,front,1.0790057183681174 +karman_re400,sr,346,138.4,alpha,upper,-2.5227562453217587 +karman_re400,sr,346,138.4,alpha,lower,4.3396611156994735 +karman_re400,sr,347,138.8,alpha,front,-0.10420981599836904 +karman_re400,sr,347,138.8,alpha,upper,-2.433780732933968 +karman_re400,sr,347,138.8,alpha,lower,4.428636628087264 +karman_re400,sr,348,139.2,alpha,front,-1.0986162915066036 +karman_re400,sr,348,139.2,alpha,upper,-2.666553961357131 +karman_re400,sr,348,139.2,alpha,lower,4.195863399664101 +karman_re400,sr,349,139.6,alpha,front,-1.8002093356129087 +karman_re400,sr,349,139.6,alpha,upper,-1.8193003944762882 +karman_re400,sr,349,139.6,alpha,lower,5.043116966544944 +karman_re400,sr,350,140.0,alpha,front,-2.4567518496462912 +karman_re400,sr,350,140.0,alpha,upper,-0.26457503604677335 +karman_re400,sr,350,140.0,alpha,lower,6.597842324974459 +karman_re400,sr,351,140.4,alpha,front,-2.8521639168680006 +karman_re400,sr,351,140.4,alpha,upper,-0.37909207137309764 +karman_re400,sr,351,140.4,alpha,lower,6.483325289648134 +karman_re400,sr,352,140.8,alpha,front,-2.4719054592079144 +karman_re400,sr,352,140.8,alpha,upper,-2.7254935014357304 +karman_re400,sr,352,140.8,alpha,lower,4.136923859585502 +karman_re400,sr,353,141.2,alpha,front,-1.2818731628859026 +karman_re400,sr,353,141.2,alpha,upper,-4.217665917077958 +karman_re400,sr,353,141.2,alpha,lower,2.644751443943275 +karman_re400,sr,354,141.6,alpha,front,-0.06897953661697652 +karman_re400,sr,354,141.6,alpha,upper,-4.503088801046697 +karman_re400,sr,354,141.6,alpha,lower,2.359328559974535 +karman_re400,sr,355,142.0,alpha,front,1.0372940315447479 +karman_re400,sr,355,142.0,alpha,upper,-4.241869351350162 +karman_re400,sr,355,142.0,alpha,lower,2.6205480096710705 +karman_re400,sr,356,142.4,alpha,front,1.7891699009219975 +karman_re400,sr,356,142.4,alpha,upper,-4.730921652040984 +karman_re400,sr,356,142.4,alpha,lower,2.131495708980248 +karman_re400,sr,357,142.8,alpha,front,2.43466596509504 +karman_re400,sr,357,142.8,alpha,upper,-6.191299655950182 +karman_re400,sr,357,142.8,alpha,lower,0.6711177050710497 +karman_re400,sr,358,143.2,alpha,front,2.925952488102539 +karman_re400,sr,358,143.2,alpha,upper,-6.753193825376549 +karman_re400,sr,358,143.2,alpha,lower,0.10922353564468334 +karman_re400,sr,359,143.6,alpha,front,2.768172358897369 +karman_re400,sr,359,143.6,alpha,upper,-4.8375910234243555 +karman_re400,sr,359,143.6,alpha,lower,2.024826337596877 +karman_re400,sr,360,144.0,alpha,front,1.7088331130241323 +karman_re400,sr,360,144.0,alpha,upper,-3.048751911971946 +karman_re400,sr,360,144.0,alpha,lower,3.813665449049286 +karman_re400,sr,361,144.4,alpha,front,0.5043291437686644 +karman_re400,sr,361,144.4,alpha,upper,-2.3749827814843005 +karman_re400,sr,361,144.4,alpha,lower,4.487434579536932 +karman_re400,sr,362,144.8,alpha,front,-0.7284021800739551 +karman_re400,sr,362,144.8,alpha,upper,-2.516589984408836 +karman_re400,sr,362,144.8,alpha,lower,4.345827376612396 +karman_re400,sr,363,145.2,alpha,front,-1.595477165821467 +karman_re400,sr,363,145.2,alpha,upper,-2.623007693422717 +karman_re400,sr,363,145.2,alpha,lower,4.239409667598515 +karman_re400,sr,364,145.6,alpha,front,-2.2232757335189683 +karman_re400,sr,364,145.6,alpha,upper,-1.3397771607584503 +karman_re400,sr,364,145.6,alpha,lower,5.5226402002627815 +karman_re400,sr,365,146.0,alpha,front,-2.7693586329276694 +karman_re400,sr,365,146.0,alpha,upper,-0.09560423199976675 +karman_re400,sr,365,146.0,alpha,lower,6.766813129021465 +karman_re400,sr,366,146.4,alpha,front,-2.9188163736012296 +karman_re400,sr,366,146.4,alpha,upper,-1.2126327034189233 +karman_re400,sr,366,146.4,alpha,lower,5.649784657602309 +karman_re400,sr,367,146.8,alpha,front,-2.0697195355062004 +karman_re400,sr,367,146.8,alpha,upper,-3.433747836589469 +karman_re400,sr,367,146.8,alpha,lower,3.4286695244317626 +karman_re400,sr,368,147.2,alpha,front,-0.8884444350209378 +karman_re400,sr,368,147.2,alpha,upper,-4.415926536584266 +karman_re400,sr,368,147.2,alpha,lower,2.4464908244369665 +karman_re400,sr,369,147.6,alpha,front,0.33978043056051327 +karman_re400,sr,369,147.6,alpha,upper,-4.4157493224293445 +karman_re400,sr,369,147.6,alpha,lower,2.446668038591888 +karman_re400,sr,370,148.0,alpha,front,1.2719863915717644 +karman_re400,sr,370,148.0,alpha,upper,-4.131048388222322 +karman_re400,sr,370,148.0,alpha,lower,2.7313689727989106 +karman_re400,sr,371,148.4,alpha,front,1.9464244696175235 +karman_re400,sr,371,148.4,alpha,upper,-5.1932563306981105 +karman_re400,sr,371,148.4,alpha,lower,1.669161030323122 +karman_re400,sr,372,148.8,alpha,front,2.5443320663777973 +karman_re400,sr,372,148.8,alpha,upper,-6.701928693477757 +karman_re400,sr,372,148.8,alpha,lower,0.16048866754347424 +karman_re400,sr,373,149.2,alpha,front,2.8633213218448055 +karman_re400,sr,373,149.2,alpha,upper,-6.023912969843005 +karman_re400,sr,373,149.2,alpha,lower,0.8385043911782271 +karman_re400,sr,374,149.6,alpha,front,2.236688115868739 +karman_re400,sr,374,149.6,alpha,upper,-3.6772373450269233 +karman_re400,sr,374,149.6,alpha,lower,3.1851800159943084 +karman_re400,sr,375,150.0,alpha,front,1.0289897803340973 +karman_re400,sr,375,150.0,alpha,upper,-2.4714085961790095 +karman_re400,sr,375,150.0,alpha,lower,4.391008764842223 +karman_re400,sr,376,150.4,alpha,front,-0.16686224282595 +karman_re400,sr,376,150.4,alpha,upper,-2.443458391844413 +karman_re400,sr,376,150.4,alpha,lower,4.41895896917682 +karman_re400,sr,377,150.8,alpha,front,-1.1513418165324323 +karman_re400,sr,377,150.8,alpha,upper,-2.6802146758698644 +karman_re400,sr,377,150.8,alpha,lower,4.182202685151368 +karman_re400,sr,378,151.2,alpha,front,-1.8397462977135774 +karman_re400,sr,378,151.2,alpha,upper,-1.7990072422960184 +karman_re400,sr,378,151.2,alpha,lower,5.063410118725214 +karman_re400,sr,379,151.6,alpha,front,-2.4898842284576883 +karman_re400,sr,379,151.6,alpha,upper,-0.22023404484028752 +karman_re400,sr,379,151.6,alpha,lower,6.642183316180946 +karman_re400,sr,380,152.0,alpha,front,-2.8901392489741444 +karman_re400,sr,380,152.0,alpha,upper,-0.38208263636032136 +karman_re400,sr,380,152.0,alpha,lower,6.48033472466091 +karman_re400,sr,381,152.4,alpha,front,-2.480920262722028 +karman_re400,sr,381,152.4,alpha,upper,-2.7519404303702433 +karman_re400,sr,381,152.4,alpha,lower,4.110476930650989 +karman_re400,sr,382,152.8,alpha,front,-1.2878785919146605 +karman_re400,sr,382,152.8,alpha,upper,-4.2106495154080905 +karman_re400,sr,382,152.8,alpha,lower,2.6517678456131417 +karman_re400,sr,383,153.2,alpha,front,-0.06933202668084934 +karman_re400,sr,383,153.2,alpha,upper,-4.510126212642148 +karman_re400,sr,383,153.2,alpha,lower,2.3522911483790843 +karman_re400,sr,384,153.6,alpha,front,1.0438180947133344 +karman_re400,sr,384,153.6,alpha,upper,-4.235492077706378 +karman_re400,sr,384,153.6,alpha,lower,2.626925283314854 +karman_re400,sr,385,154.0,alpha,front,1.791774082773154 +karman_re400,sr,385,154.0,alpha,upper,-4.718480731178795 +karman_re400,sr,385,154.0,alpha,lower,2.143936629842437 +karman_re400,sr,386,154.4,alpha,front,2.4363345986232514 +karman_re400,sr,386,154.4,alpha,upper,-6.190549692954354 +karman_re400,sr,386,154.4,alpha,lower,0.6718676680668785 +karman_re400,sr,387,154.8,alpha,front,2.9303551729159447 +karman_re400,sr,387,154.8,alpha,upper,-6.74474707406279 +karman_re400,sr,387,154.8,alpha,lower,0.11767028695844228 +karman_re400,sr,388,155.2,alpha,front,2.765085773148495 +karman_re400,sr,388,155.2,alpha,upper,-4.810600729095585 +karman_re400,sr,388,155.2,alpha,lower,2.0518166319256474 +karman_re400,sr,389,155.6,alpha,front,1.70450439828837 +karman_re400,sr,389,155.6,alpha,upper,-3.0303874100619073 +karman_re400,sr,389,155.6,alpha,lower,3.832029950959325 +karman_re400,sr,390,156.0,alpha,front,0.5029073065649321 +karman_re400,sr,390,156.0,alpha,upper,-2.349234051960846 +karman_re400,sr,390,156.0,alpha,lower,4.513183309060386 +karman_re400,sr,391,156.4,alpha,front,-0.725139282693435 +karman_re400,sr,391,156.4,alpha,upper,-2.5085477502854783 +karman_re400,sr,391,156.4,alpha,lower,4.353869610735754 +karman_re400,sr,392,156.8,alpha,front,-1.5877833009507951 +karman_re400,sr,392,156.8,alpha,upper,-2.5856493053101595 +karman_re400,sr,392,156.8,alpha,lower,4.276768055711073 +karman_re400,sr,393,157.2,alpha,front,-2.215487652258885 +karman_re400,sr,393,157.2,alpha,upper,-1.2892622963471632 +karman_re400,sr,393,157.2,alpha,lower,5.573155064674069 +karman_re400,sr,394,157.6,alpha,front,-2.756058493288753 +karman_re400,sr,394,157.6,alpha,upper,-0.088767252049466 +karman_re400,sr,394,157.6,alpha,lower,6.773650108971767 +karman_re400,sr,395,158.0,alpha,front,-2.8899507273957084 +karman_re400,sr,395,158.0,alpha,upper,-1.310870243580616 +karman_re400,sr,395,158.0,alpha,lower,5.551547117440617 +karman_re400,sr,396,158.4,alpha,front,-2.0134692874408695 +karman_re400,sr,396,158.4,alpha,upper,-3.537392844409678 +karman_re400,sr,396,158.4,alpha,lower,3.3250245166115544 +karman_re400,sr,397,158.8,alpha,front,-0.8187814494073846 +karman_re400,sr,397,158.8,alpha,upper,-4.431556398760022 +karman_re400,sr,397,158.8,alpha,lower,2.4308609622612103 +karman_re400,sr,398,159.2,alpha,front,0.4028083867890633 +karman_re400,sr,398,159.2,alpha,upper,-4.3880816863692615 +karman_re400,sr,398,159.2,alpha,lower,2.4743356746519702 +karman_re400,sr,399,159.6,alpha,front,1.3222830695823393 +karman_re400,sr,399,159.6,alpha,upper,-4.1430861621066475 +karman_re400,sr,399,159.6,alpha,lower,2.7193311989145843 +karman_re400,sr,0,0.0,omega,front,-0.02367738584759909 +karman_re400,sr,0,0.0,omega,upper,-0.008389755920454803 +karman_re400,sr,0,0.0,omega,lower,0.06023441768975753 +karman_re400,sr,1,0.4,omega,front,-0.032425964569901426 +karman_re400,sr,1,0.4,omega,upper,-0.014916845558232202 +karman_re400,sr,1,0.4,omega,lower,0.05370732805198012 +karman_re400,sr,2,0.8,omega,front,-0.033192521901297886 +karman_re400,sr,2,0.8,omega,upper,-0.009091618366364353 +karman_re400,sr,2,0.8,omega,lower,0.05953255524384798 +karman_re400,sr,3,1.2,omega,front,-0.033857310436195685 +karman_re400,sr,3,1.2,omega,upper,-3.433231727393959e-05 +karman_re400,sr,3,1.2,omega,lower,0.06858984129293838 +karman_re400,sr,4,1.6,omega,front,-0.030977747665129986 +karman_re400,sr,4,1.6,omega,upper,-0.009235889566954545 +karman_re400,sr,4,1.6,omega,lower,0.05938828404325777 +karman_re400,sr,5,2.0,omega,front,-0.022801198289963534 +karman_re400,sr,5,2.0,omega,upper,-0.03393919107516637 +karman_re400,sr,5,2.0,omega,lower,0.03468498253504596 +karman_re400,sr,6,2.4,omega,front,-0.008924545367451936 +karman_re400,sr,6,2.4,omega,upper,-0.05256032465883264 +karman_re400,sr,6,2.4,omega,lower,0.016063848951379685 +karman_re400,sr,7,2.8,omega,front,0.006516810682192251 +karman_re400,sr,7,2.8,omega,upper,-0.0497541324258127 +karman_re400,sr,7,2.8,omega,lower,0.018870041184399628 +karman_re400,sr,8,3.2,omega,front,0.015125171041556463 +karman_re400,sr,8,3.2,omega,upper,-0.04073232422424928 +karman_re400,sr,8,3.2,omega,lower,0.02789184938596305 +karman_re400,sr,9,3.6,omega,front,0.020152704543915094 +karman_re400,sr,9,3.6,omega,upper,-0.05825965063287049 +karman_re400,sr,9,3.6,omega,lower,0.010364522977341837 +karman_re400,sr,10,4.0,omega,front,0.02730890818167731 +karman_re400,sr,10,4.0,omega,upper,-0.07737017084908686 +karman_re400,sr,10,4.0,omega,lower,-0.008745997238874544 +karman_re400,sr,11,4.4,omega,front,0.031182096886590294 +karman_re400,sr,11,4.4,omega,upper,-0.05917010814574002 +karman_re400,sr,11,4.4,omega,lower,0.009454065464472295 +karman_re400,sr,12,4.8,omega,front,0.024199457420447486 +karman_re400,sr,12,4.8,omega,upper,-0.02429792196481527 +karman_re400,sr,12,4.8,omega,lower,0.04432625164539705 +karman_re400,sr,13,5.2,omega,front,0.008935415550080436 +karman_re400,sr,13,5.2,omega,upper,-0.0049199286488786735 +karman_re400,sr,13,5.2,omega,lower,0.06370424496133366 +karman_re400,sr,14,5.6,omega,front,-0.007962248825073346 +karman_re400,sr,14,5.6,omega,upper,-0.02086701329669503 +karman_re400,sr,14,5.6,omega,lower,0.047757160313517295 +karman_re400,sr,15,6.0,omega,front,-0.013282271824783087 +karman_re400,sr,15,6.0,omega,upper,-0.03746664491871796 +karman_re400,sr,15,6.0,omega,lower,0.031157528691494362 +karman_re400,sr,16,6.4,omega,front,-0.014188788446246695 +karman_re400,sr,16,6.4,omega,upper,-0.013678747390638067 +karman_re400,sr,16,6.4,omega,lower,0.05494542621957425 +karman_re400,sr,17,6.8,omega,front,-0.018623584975711833 +karman_re400,sr,17,6.8,omega,upper,0.01477119895776505 +karman_re400,sr,17,6.8,omega,lower,0.08339537256797737 +karman_re400,sr,18,7.2,omega,front,-0.025110545001991166 +karman_re400,sr,18,7.2,omega,upper,0.006887734929453671 +karman_re400,sr,18,7.2,omega,lower,0.075511908539666 +karman_re400,sr,19,7.6,omega,front,-0.022653437953892804 +karman_re400,sr,19,7.6,omega,upper,-0.03508556873792147 +karman_re400,sr,19,7.6,omega,lower,0.03353860487229085 +karman_re400,sr,20,8.0,omega,front,-0.008382684356844536 +karman_re400,sr,20,8.0,omega,upper,-0.05657902710152772 +karman_re400,sr,20,8.0,omega,lower,0.012045146508684601 +karman_re400,sr,21,8.4,omega,front,0.007666553883691336 +karman_re400,sr,21,8.4,omega,upper,-0.05164692880129815 +karman_re400,sr,21,8.4,omega,lower,0.01697724480891417 +karman_re400,sr,22,8.8,omega,front,0.015877357043582178 +karman_re400,sr,22,8.8,omega,upper,-0.038329747886272324 +karman_re400,sr,22,8.8,omega,lower,0.030294425723939998 +karman_re400,sr,23,9.2,omega,front,0.0179661819046287 +karman_re400,sr,23,9.2,omega,upper,-0.046667853525430555 +karman_re400,sr,23,9.2,omega,lower,0.02195632008478177 +karman_re400,sr,24,9.6,omega,front,0.023450411372738067 +karman_re400,sr,24,9.6,omega,upper,-0.07309233000504888 +karman_re400,sr,24,9.6,omega,lower,-0.004468156394836549 +karman_re400,sr,25,10.0,omega,front,0.030329912752349482 +karman_re400,sr,25,10.0,omega,upper,-0.0685879420261148 +karman_re400,sr,25,10.0,omega,lower,3.6231584097521366e-05 +karman_re400,sr,26,10.4,omega,front,0.025829193610170508 +karman_re400,sr,26,10.4,omega,upper,-0.03491743452475187 +karman_re400,sr,26,10.4,omega,lower,0.03370673908546046 +karman_re400,sr,27,10.8,omega,front,0.013123222393909447 +karman_re400,sr,27,10.8,omega,upper,-0.018923713931973618 +karman_re400,sr,27,10.8,omega,lower,0.04970045967823871 +karman_re400,sr,28,11.2,omega,front,-0.00030772395896038715 +karman_re400,sr,28,11.2,omega,upper,-0.016114141841359807 +karman_re400,sr,28,11.2,omega,lower,0.052510031768852515 +karman_re400,sr,29,11.6,omega,front,-0.011343605333356835 +karman_re400,sr,29,11.6,omega,upper,-0.02544293854978258 +karman_re400,sr,29,11.6,omega,lower,0.04318123506042975 +karman_re400,sr,30,12.0,omega,front,-0.01613126577306559 +karman_re400,sr,30,12.0,omega,upper,-0.020375837775553577 +karman_re400,sr,30,12.0,omega,lower,0.04824833583465875 +karman_re400,sr,31,12.4,omega,front,-0.021341678970447225 +karman_re400,sr,31,12.4,omega,upper,0.0002051747445445784 +karman_re400,sr,31,12.4,omega,lower,0.0688293483547569 +karman_re400,sr,32,12.8,omega,front,-0.026635041662340736 +karman_re400,sr,32,12.8,omega,upper,0.004296855087631069 +karman_re400,sr,32,12.8,omega,lower,0.07292102869784339 +karman_re400,sr,33,13.2,omega,front,-0.026199261557440127 +karman_re400,sr,33,13.2,omega,upper,-0.029114078969908128 +karman_re400,sr,33,13.2,omega,lower,0.039510094640304194 +karman_re400,sr,34,13.6,omega,front,-0.012681778649690586 +karman_re400,sr,34,13.6,omega,upper,-0.04939614765320369 +karman_re400,sr,34,13.6,omega,lower,0.019228025957008635 +karman_re400,sr,35,14.0,omega,front,0.0006218464572863848 +karman_re400,sr,35,14.0,omega,upper,-0.04822058141847126 +karman_re400,sr,35,14.0,omega,lower,0.020403592191741066 +karman_re400,sr,36,14.4,omega,front,0.011799365795184438 +karman_re400,sr,36,14.4,omega,upper,-0.045015206689198124 +karman_re400,sr,36,14.4,omega,lower,0.0236089669210142 +karman_re400,sr,37,14.8,omega,front,0.018226800776869775 +karman_re400,sr,37,14.8,omega,upper,-0.047472853391537874 +karman_re400,sr,37,14.8,omega,lower,0.021151320218674444 +karman_re400,sr,38,15.2,omega,front,0.024300432348405773 +karman_re400,sr,38,15.2,omega,upper,-0.06281359006455575 +karman_re400,sr,38,15.2,omega,lower,0.005810583545656574 +karman_re400,sr,39,15.6,omega,front,0.029891549910704262 +karman_re400,sr,39,15.6,omega,upper,-0.06799474124061895 +karman_re400,sr,39,15.6,omega,lower,0.0006294323695933679 +karman_re400,sr,40,16.0,omega,front,0.028525438904121025 +karman_re400,sr,40,16.0,omega,upper,-0.045172896837911 +karman_re400,sr,40,16.0,omega,lower,0.023451276772301327 +karman_re400,sr,41,16.4,omega,front,0.016434347288257427 +karman_re400,sr,41,16.4,omega,upper,-0.03015143947821883 +karman_re400,sr,41,16.4,omega,lower,0.038472734131993494 +karman_re400,sr,42,16.8,omega,front,0.0045196589896404375 +karman_re400,sr,42,16.8,omega,upper,-0.028257370327531357 +karman_re400,sr,42,16.8,omega,lower,0.04036680328268097 +karman_re400,sr,43,17.2,omega,front,-0.007725528148685591 +karman_re400,sr,43,17.2,omega,upper,-0.02808674232754249 +karman_re400,sr,43,17.2,omega,lower,0.04053743128266984 +karman_re400,sr,44,17.6,omega,front,-0.016357539618979906 +karman_re400,sr,44,17.6,omega,upper,-0.028054700668569264 +karman_re400,sr,44,17.6,omega,lower,0.040569472941643064 +karman_re400,sr,45,18.0,omega,front,-0.023224086911044335 +karman_re400,sr,45,18.0,omega,upper,-0.016140559539093508 +karman_re400,sr,45,18.0,omega,lower,0.05248361407111881 +karman_re400,sr,46,18.4,omega,front,-0.029340671743393006 +karman_re400,sr,46,18.4,omega,upper,-0.00033269381374785746 +karman_re400,sr,46,18.4,omega,lower,0.06829147979646447 +karman_re400,sr,47,18.8,omega,front,-0.03161772203616618 +karman_re400,sr,47,18.8,omega,upper,-0.002943035859484686 +karman_re400,sr,47,18.8,omega,lower,0.06568113775072763 +karman_re400,sr,48,19.2,omega,front,-0.025522802089403447 +karman_re400,sr,48,19.2,omega,upper,-0.023471091568059977 +karman_re400,sr,48,19.2,omega,lower,0.04515308204215234 +karman_re400,sr,49,19.6,omega,front,-0.015038714850326531 +karman_re400,sr,49,19.6,omega,upper,-0.042262218286572485 +karman_re400,sr,49,19.6,omega,lower,0.02636195532363984 +karman_re400,sr,50,20.0,omega,front,-0.001445327261301809 +karman_re400,sr,50,20.0,omega,upper,-0.048091723586475815 +karman_re400,sr,50,20.0,omega,lower,0.02053245002373651 +karman_re400,sr,51,20.4,omega,front,0.009698140068180029 +karman_re400,sr,51,20.4,omega,upper,-0.041836831236758174 +karman_re400,sr,51,20.4,omega,lower,0.026787342373454148 +karman_re400,sr,52,20.8,omega,front,0.016995750429701577 +karman_re400,sr,52,20.8,omega,upper,-0.04636737505058534 +karman_re400,sr,52,20.8,omega,lower,0.022256798559626985 +karman_re400,sr,53,21.2,omega,front,0.023119731381818474 +karman_re400,sr,53,21.2,omega,upper,-0.06091837907008657 +karman_re400,sr,53,21.2,omega,lower,0.007705794540125757 +karman_re400,sr,54,21.6,omega,front,0.02743211586874678 +karman_re400,sr,54,21.6,omega,upper,-0.05935254128797343 +karman_re400,sr,54,21.6,omega,lower,0.009271632322238897 +karman_re400,sr,55,22.0,omega,front,0.023261405836411054 +karman_re400,sr,55,22.0,omega,upper,-0.03604318592143412 +karman_re400,sr,55,22.0,omega,lower,0.03258098768877821 +karman_re400,sr,56,22.4,omega,front,0.010932161650399792 +karman_re400,sr,56,22.4,omega,upper,-0.026572331666899304 +karman_re400,sr,56,22.4,omega,lower,0.04205184194331301 +karman_re400,sr,57,22.8,omega,front,0.0007680540766237475 +karman_re400,sr,57,22.8,omega,upper,-0.029766528506778665 +karman_re400,sr,57,22.8,omega,lower,0.03885764510343366 +karman_re400,sr,58,23.2,omega,front,-0.00739089590898962 +karman_re400,sr,58,23.2,omega,upper,-0.028963169850800254 +karman_re400,sr,58,23.2,omega,lower,0.03966100375941207 +karman_re400,sr,59,23.6,omega,front,-0.014732691403955429 +karman_re400,sr,59,23.6,omega,upper,-0.01716375204976072 +karman_re400,sr,59,23.6,omega,lower,0.05146042156045161 +karman_re400,sr,60,24.0,omega,front,-0.022227339670799488 +karman_re400,sr,60,24.0,omega,upper,-0.0031096434275181386 +karman_re400,sr,60,24.0,omega,lower,0.06551453018269418 +karman_re400,sr,61,24.4,omega,front,-0.026365662708275485 +karman_re400,sr,61,24.4,omega,upper,-0.003723169793557659 +karman_re400,sr,61,24.4,omega,lower,0.06490100381665466 +karman_re400,sr,62,24.8,omega,front,-0.023599252400099222 +karman_re400,sr,62,24.8,omega,upper,-0.022139552517662368 +karman_re400,sr,62,24.8,omega,lower,0.04648462109254996 +karman_re400,sr,63,25.2,omega,front,-0.013606385528318108 +karman_re400,sr,63,25.2,omega,upper,-0.03961064997109692 +karman_re400,sr,63,25.2,omega,lower,0.0290135236391154 +karman_re400,sr,64,25.6,omega,front,-0.001097415559789309 +karman_re400,sr,64,25.6,omega,upper,-0.04576992280007558 +karman_re400,sr,64,25.6,omega,lower,0.022854250810136742 +karman_re400,sr,65,26.0,omega,front,0.010532031926137305 +karman_re400,sr,65,26.0,omega,upper,-0.04261921041632059 +karman_re400,sr,65,26.0,omega,lower,0.026004963193891735 +karman_re400,sr,66,26.4,omega,front,0.018237422098582794 +karman_re400,sr,66,26.4,omega,upper,-0.04388637079184687 +karman_re400,sr,66,26.4,omega,lower,0.024737802818365455 +karman_re400,sr,67,26.8,omega,front,0.02435082168881253 +karman_re400,sr,67,26.8,omega,upper,-0.05908044448216646 +karman_re400,sr,67,26.8,omega,lower,0.009543729128045865 +karman_re400,sr,68,27.2,omega,front,0.029847016904776005 +karman_re400,sr,68,27.2,omega,upper,-0.07034010397345482 +karman_re400,sr,68,27.2,omega,lower,-0.0017159303632424995 +karman_re400,sr,69,27.6,omega,front,0.030465388105957315 +karman_re400,sr,69,27.6,omega,upper,-0.05636264618243482 +karman_re400,sr,69,27.6,omega,lower,0.012261527427777499 +karman_re400,sr,70,28.0,omega,front,0.021585175945304343 +karman_re400,sr,70,28.0,omega,upper,-0.03299206362986172 +karman_re400,sr,70,28.0,omega,lower,0.03563210998035061 +karman_re400,sr,71,28.4,omega,front,0.009387547659720144 +karman_re400,sr,71,28.4,omega,upper,-0.020193556879157738 +karman_re400,sr,71,28.4,omega,lower,0.04843061673105458 +karman_re400,sr,72,28.8,omega,front,-0.004335751883094818 +karman_re400,sr,72,28.8,omega,upper,-0.022812182240301706 +karman_re400,sr,72,28.8,omega,lower,0.04581199136991062 +karman_re400,sr,73,29.2,omega,front,-0.013072965364926083 +karman_re400,sr,73,29.2,omega,upper,-0.029417523193669047 +karman_re400,sr,73,29.2,omega,lower,0.039206650416543275 +karman_re400,sr,74,29.6,omega,front,-0.018630926039719983 +karman_re400,sr,74,29.6,omega,upper,-0.016920749423511787 +karman_re400,sr,74,29.6,omega,lower,0.051703424186700535 +karman_re400,sr,75,30.0,omega,front,-0.02436999796524365 +karman_re400,sr,75,30.0,omega,upper,-0.0003618877143294963 +karman_re400,sr,75,30.0,omega,lower,0.06826228589588283 +karman_re400,sr,76,30.4,omega,front,-0.027927394822355543 +karman_re400,sr,76,30.4,omega,upper,-0.011714215821410301 +karman_re400,sr,76,30.4,omega,lower,0.05690995778880202 +karman_re400,sr,77,30.8,omega,front,-0.02029541440199546 +karman_re400,sr,77,30.8,omega,upper,-0.03764648683679606 +karman_re400,sr,77,30.8,omega,lower,0.030977686773416262 +karman_re400,sr,78,31.2,omega,front,-0.007631426754772921 +karman_re400,sr,78,31.2,omega,upper,-0.04494179679124263 +karman_re400,sr,78,31.2,omega,lower,0.02368237681896969 +karman_re400,sr,79,31.6,omega,front,0.003590849114329281 +karman_re400,sr,79,31.6,omega,upper,-0.04294639585599087 +karman_re400,sr,79,31.6,omega,lower,0.025677777754221455 +karman_re400,sr,80,32.0,omega,front,0.01250534625057071 +karman_re400,sr,80,32.0,omega,upper,-0.04233265634577877 +karman_re400,sr,80,32.0,omega,lower,0.02629151726443356 +karman_re400,sr,81,32.4,omega,front,0.019186437770838494 +karman_re400,sr,81,32.4,omega,upper,-0.05357998202115167 +karman_re400,sr,81,32.4,omega,lower,0.015044191589060658 +karman_re400,sr,82,32.8,omega,front,0.02558671427887857 +karman_re400,sr,82,32.8,omega,upper,-0.06869234384799353 +karman_re400,sr,82,32.8,omega,lower,-6.817023778120657e-05 +karman_re400,sr,83,33.2,omega,front,0.029157101631378787 +karman_re400,sr,83,33.2,omega,upper,-0.06365040017596321 +karman_re400,sr,83,33.2,omega,lower,0.004973773434249109 +karman_re400,sr,84,33.6,omega,front,0.0238340740967626 +karman_re400,sr,84,33.6,omega,upper,-0.038116223099092086 +karman_re400,sr,84,33.6,omega,lower,0.03050795051112024 +karman_re400,sr,85,34.0,omega,front,0.011417312786144882 +karman_re400,sr,85,34.0,omega,upper,-0.02378970099970041 +karman_re400,sr,85,34.0,omega,lower,0.04483447261051191 +karman_re400,sr,86,34.4,omega,front,-0.0015340571596855824 +karman_re400,sr,86,34.4,omega,upper,-0.022907728683038652 +karman_re400,sr,86,34.4,omega,lower,0.045716444927173666 +karman_re400,sr,87,34.8,omega,front,-0.012042294896516308 +karman_re400,sr,87,34.8,omega,upper,-0.027160834907077186 +karman_re400,sr,87,34.8,omega,lower,0.04146333870313513 +karman_re400,sr,88,35.2,omega,front,-0.01863806996858724 +karman_re400,sr,88,35.2,omega,upper,-0.02008179929963722 +karman_re400,sr,88,35.2,omega,lower,0.048542374310575113 +karman_re400,sr,89,35.6,omega,front,-0.02509386221869357 +karman_re400,sr,89,35.6,omega,upper,-0.0032121703419072966 +karman_re400,sr,89,35.6,omega,lower,0.06541200326830503 +karman_re400,sr,90,36.0,omega,front,-0.030180064293378647 +karman_re400,sr,90,36.0,omega,upper,-0.0017112760667228333 +karman_re400,sr,90,36.0,omega,lower,0.06691289754348949 +karman_re400,sr,91,36.4,omega,front,-0.027101557089298952 +karman_re400,sr,91,36.4,omega,upper,-0.025013474356438366 +karman_re400,sr,91,36.4,omega,lower,0.043610699253773956 +karman_re400,sr,92,36.8,omega,front,-0.015536232442179465 +karman_re400,sr,92,36.8,omega,upper,-0.0412094657240843 +karman_re400,sr,92,36.8,omega,lower,0.02741470788612802 +karman_re400,sr,93,37.2,omega,front,-0.003247071624487674 +karman_re400,sr,93,37.2,omega,upper,-0.04586018326733239 +karman_re400,sr,93,37.2,omega,lower,0.02276399034287993 +karman_re400,sr,94,37.6,omega,front,0.008719596970602797 +karman_re400,sr,94,37.6,omega,upper,-0.04307325317768076 +karman_re400,sr,94,37.6,omega,lower,0.025550920432531567 +karman_re400,sr,95,38.0,omega,front,0.016592236552186994 +karman_re400,sr,95,38.0,omega,upper,-0.04475974426360314 +karman_re400,sr,95,38.0,omega,lower,0.023864429346609182 +karman_re400,sr,96,38.4,omega,front,0.022823677911998904 +karman_re400,sr,96,38.4,omega,upper,-0.0590541866425622 +karman_re400,sr,96,38.4,omega,lower,0.009569986967650124 +karman_re400,sr,97,38.8,omega,front,0.028188325381238312 +karman_re400,sr,97,38.8,omega,upper,-0.06841807449408456 +karman_re400,sr,97,38.8,omega,lower,0.000206099116127767 +karman_re400,sr,98,39.2,omega,front,0.028356122017992237 +karman_re400,sr,98,39.2,omega,upper,-0.05078958986115387 +karman_re400,sr,98,39.2,omega,lower,0.017834583749058452 +karman_re400,sr,99,39.6,omega,front,0.018218863867458274 +karman_re400,sr,99,39.6,omega,upper,-0.030621474142356473 +karman_re400,sr,99,39.6,omega,lower,0.03800269946785585 +karman_re400,sr,100,40.0,omega,front,0.0061740432879487175 +karman_re400,sr,100,40.0,omega,upper,-0.02320004373607381 +karman_re400,sr,100,40.0,omega,lower,0.04542412987413851 +karman_re400,sr,101,40.4,omega,front,-0.006329401762907289 +karman_re400,sr,101,40.4,omega,upper,-0.024791959707702888 +karman_re400,sr,101,40.4,omega,lower,0.04383221390250944 +karman_re400,sr,102,40.8,omega,front,-0.015102463648513703 +karman_re400,sr,102,40.8,omega,upper,-0.02682421327039483 +karman_re400,sr,102,40.8,omega,lower,0.04179996033981749 +karman_re400,sr,103,41.2,omega,front,-0.021343351067160347 +karman_re400,sr,103,41.2,omega,upper,-0.014449957815556955 +karman_re400,sr,103,41.2,omega,lower,0.05417421579465537 +karman_re400,sr,104,41.6,omega,front,-0.026941199640125563 +karman_re400,sr,104,41.6,omega,upper,-0.00014008912710696374 +karman_re400,sr,104,41.6,omega,lower,0.06848408448310536 +karman_re400,sr,105,42.0,omega,front,-0.029541296709083356 +karman_re400,sr,105,42.0,omega,upper,-0.00946773714068533 +karman_re400,sr,105,42.0,omega,lower,0.059156436469526986 +karman_re400,sr,106,42.4,omega,front,-0.021815406257976653 +karman_re400,sr,106,42.4,omega,upper,-0.03390725294336268 +karman_re400,sr,106,42.4,omega,lower,0.03471692066684965 +karman_re400,sr,107,42.8,omega,front,-0.009636074910655669 +karman_re400,sr,107,42.8,omega,upper,-0.04443206859233591 +karman_re400,sr,107,42.8,omega,lower,0.02419210501787641 +karman_re400,sr,108,43.2,omega,front,0.0028164825229650336 +karman_re400,sr,108,43.2,omega,upper,-0.04486483956527197 +karman_re400,sr,108,43.2,omega,lower,0.02375933404494036 +karman_re400,sr,109,43.6,omega,front,0.012535306796004737 +karman_re400,sr,109,43.6,omega,upper,-0.04124863248825541 +karman_re400,sr,109,43.6,omega,lower,0.02737554112195691 +karman_re400,sr,110,44.0,omega,front,0.019179360441681 +karman_re400,sr,110,44.0,omega,upper,-0.05097511663880653 +karman_re400,sr,110,44.0,omega,lower,0.0176490569714058 +karman_re400,sr,111,44.4,omega,front,0.02547985371256949 +karman_re400,sr,111,44.4,omega,upper,-0.06714904758458977 +karman_re400,sr,111,44.4,omega,lower,0.001475126025622555 +karman_re400,sr,112,44.8,omega,front,0.029441152057506782 +karman_re400,sr,112,44.8,omega,upper,-0.062493927091719394 +karman_re400,sr,112,44.8,omega,lower,0.00613024651849293 +karman_re400,sr,113,45.2,omega,front,0.02401577675291506 +karman_re400,sr,113,45.2,omega,upper,-0.03812672197205034 +karman_re400,sr,113,45.2,omega,lower,0.030497451638161987 +karman_re400,sr,114,45.6,omega,front,0.01189474679152069 +karman_re400,sr,114,45.6,omega,upper,-0.024846040474121547 +karman_re400,sr,114,45.6,omega,lower,0.04377813313609078 +karman_re400,sr,115,46.0,omega,front,-0.00035556624896701446 +karman_re400,sr,115,46.0,omega,upper,-0.023802626671309394 +karman_re400,sr,115,46.0,omega,lower,0.044821546938902924 +karman_re400,sr,116,46.4,omega,front,-0.010671876220705595 +karman_re400,sr,116,46.4,omega,upper,-0.02693563590907272 +karman_re400,sr,116,46.4,omega,lower,0.04168853770113961 +karman_re400,sr,117,46.8,omega,front,-0.01768139666170298 +karman_re400,sr,117,46.8,omega,upper,-0.01953241106004568 +karman_re400,sr,117,46.8,omega,lower,0.049091762550166645 +karman_re400,sr,118,47.2,omega,front,-0.02417381120421191 +karman_re400,sr,118,47.2,omega,upper,-0.003826453369759495 +karman_re400,sr,118,47.2,omega,lower,0.06479772024045283 +karman_re400,sr,119,47.6,omega,front,-0.028720267919069724 +karman_re400,sr,119,47.6,omega,upper,-0.0021885416469154696 +karman_re400,sr,119,47.6,omega,lower,0.06643563196329685 +karman_re400,sr,120,48.0,omega,front,-0.025879858229377623 +karman_re400,sr,120,48.0,omega,upper,-0.02503804378970407 +karman_re400,sr,120,48.0,omega,lower,0.04358612982050825 +karman_re400,sr,121,48.4,omega,front,-0.014279160256412632 +karman_re400,sr,121,48.4,omega,upper,-0.04054209000529922 +karman_re400,sr,121,48.4,omega,lower,0.028082083604913103 +karman_re400,sr,122,48.8,omega,front,-0.0022785882604458227 +karman_re400,sr,122,48.8,omega,upper,-0.04500842565959313 +karman_re400,sr,122,48.8,omega,lower,0.023615747950619194 +karman_re400,sr,123,49.2,omega,front,0.009487373298686954 +karman_re400,sr,123,49.2,omega,upper,-0.043244788562861486 +karman_re400,sr,123,49.2,omega,lower,0.025379385047350836 +karman_re400,sr,124,49.6,omega,front,0.017476993272478737 +karman_re400,sr,124,49.6,omega,upper,-0.04523321054891943 +karman_re400,sr,124,49.6,omega,lower,0.023390963061292895 +karman_re400,sr,125,50.0,omega,front,0.023842848830522918 +karman_re400,sr,125,50.0,omega,upper,-0.059154318729926506 +karman_re400,sr,125,50.0,omega,lower,0.009469854880285813 +karman_re400,sr,126,50.4,omega,front,0.02903164553810772 +karman_re400,sr,126,50.4,omega,upper,-0.06814489369791416 +karman_re400,sr,126,50.4,omega,lower,0.00047927991229816945 +karman_re400,sr,127,50.8,omega,front,0.028873526283180434 +karman_re400,sr,127,50.8,omega,upper,-0.0526110149104488 +karman_re400,sr,127,50.8,omega,lower,0.016013158699763528 +karman_re400,sr,128,51.2,omega,front,0.019191288893697638 +karman_re400,sr,128,51.2,omega,upper,-0.03194894213905768 +karman_re400,sr,128,51.2,omega,lower,0.03667523147115464 +karman_re400,sr,129,51.6,omega,front,0.007096283989887875 +karman_re400,sr,129,51.6,omega,upper,-0.023303467378446206 +karman_re400,sr,129,51.6,omega,lower,0.045320706231766116 +karman_re400,sr,130,52.0,omega,front,-0.0055199768623247145 +karman_re400,sr,130,52.0,omega,upper,-0.024755381122770325 +karman_re400,sr,130,52.0,omega,lower,0.043868792487442 +karman_re400,sr,131,52.4,omega,front,-0.014470782273337207 +karman_re400,sr,131,52.4,omega,upper,-0.027361723289739813 +karman_re400,sr,131,52.4,omega,lower,0.04126245032047251 +karman_re400,sr,132,52.8,omega,front,-0.020790568148149866 +karman_re400,sr,132,52.8,omega,upper,-0.015341908324412503 +karman_re400,sr,132,52.8,omega,lower,0.053282265285799824 +karman_re400,sr,133,53.2,omega,front,-0.026510936211183667 +karman_re400,sr,133,53.2,omega,upper,-0.0009270653697345521 +karman_re400,sr,133,53.2,omega,lower,0.06769710824047778 +karman_re400,sr,134,53.6,omega,front,-0.029049630123732146 +karman_re400,sr,134,53.6,omega,upper,-0.010921407801974911 +karman_re400,sr,134,53.6,omega,lower,0.05770276580823741 +karman_re400,sr,135,54.0,omega,front,-0.021240496251394483 +karman_re400,sr,135,54.0,omega,upper,-0.03422868044545638 +karman_re400,sr,135,54.0,omega,lower,0.034395493164755944 +karman_re400,sr,136,54.4,omega,front,-0.009270285328741228 +karman_re400,sr,136,54.4,omega,upper,-0.044081930570194834 +karman_re400,sr,136,54.4,omega,lower,0.02454224304001749 +karman_re400,sr,137,54.8,omega,front,0.0027739249754278666 +karman_re400,sr,137,54.8,omega,upper,-0.04416101923789137 +karman_re400,sr,137,54.8,omega,lower,0.024463154372320953 +karman_re400,sr,138,55.2,omega,front,0.012221201696852915 +karman_re400,sr,138,55.2,omega,upper,-0.041467090040572654 +karman_re400,sr,138,55.2,omega,lower,0.02715708356963967 +karman_re400,sr,139,55.6,omega,front,0.018958925170322584 +karman_re400,sr,139,55.6,omega,upper,-0.05187005725591178 +karman_re400,sr,139,55.6,omega,lower,0.01675411635430054 +karman_re400,sr,140,56.0,omega,front,0.025154313443251343 +karman_re400,sr,140,56.0,omega,upper,-0.06722763688593911 +karman_re400,sr,140,56.0,omega,lower,0.0013965367242732185 +karman_re400,sr,141,56.4,omega,front,0.028770403292583256 +karman_re400,sr,141,56.4,omega,upper,-0.06289476526145607 +karman_re400,sr,141,56.4,omega,lower,0.0057294083487562505 +karman_re400,sr,142,56.8,omega,front,0.0235054848927315 +karman_re400,sr,142,56.8,omega,upper,-0.0383618991622486 +karman_re400,sr,142,56.8,omega,lower,0.030262274447963724 +karman_re400,sr,143,57.2,omega,front,0.011270163835409774 +karman_re400,sr,143,57.2,omega,upper,-0.025238786016362633 +karman_re400,sr,143,57.2,omega,lower,0.04338538759384969 +karman_re400,sr,144,57.6,omega,front,-0.0009067270461950275 +karman_re400,sr,144,57.6,omega,upper,-0.02391218886585228 +karman_re400,sr,144,57.6,omega,lower,0.04471198474436005 +karman_re400,sr,145,58.0,omega,front,-0.011347570680076129 +karman_re400,sr,145,58.0,omega,upper,-0.02645063547910276 +karman_re400,sr,145,58.0,omega,lower,0.04217353813110956 +karman_re400,sr,146,58.4,omega,front,-0.01842107834622164 +karman_re400,sr,146,58.4,omega,upper,-0.019669730715692803 +karman_re400,sr,146,58.4,omega,lower,0.048954442894519515 +karman_re400,sr,147,58.8,omega,front,-0.024906765874046433 +karman_re400,sr,147,58.8,omega,upper,-0.0039414065894104325 +karman_re400,sr,147,58.8,omega,lower,0.06468276702080189 +karman_re400,sr,148,59.2,omega,front,-0.029466238836180346 +karman_re400,sr,148,59.2,omega,upper,-0.002501158682389475 +karman_re400,sr,148,59.2,omega,lower,0.06612301492782285 +karman_re400,sr,149,59.6,omega,front,-0.02638141442763059 +karman_re400,sr,149,59.6,omega,upper,-0.024369398340633723 +karman_re400,sr,149,59.6,omega,lower,0.0442547752695786 +karman_re400,sr,150,60.0,omega,front,-0.015040580974194093 +karman_re400,sr,150,60.0,omega,upper,-0.04052566572434307 +karman_re400,sr,150,60.0,omega,lower,0.028098507885869255 +karman_re400,sr,151,60.4,omega,front,-0.0028922991330615194 +karman_re400,sr,151,60.4,omega,upper,-0.04540939856689605 +karman_re400,sr,151,60.4,omega,lower,0.023214775043316278 +karman_re400,sr,152,60.8,omega,front,0.008869370615899666 +karman_re400,sr,152,60.8,omega,upper,-0.0428935208766057 +karman_re400,sr,152,60.8,omega,lower,0.025730652733606623 +karman_re400,sr,153,61.2,omega,front,0.016873959096459737 +karman_re400,sr,153,61.2,omega,upper,-0.04527559883501334 +karman_re400,sr,153,61.2,omega,lower,0.02334857477519898 +karman_re400,sr,154,61.6,omega,front,0.023290669748880957 +karman_re400,sr,154,61.6,omega,upper,-0.05923048427754186 +karman_re400,sr,154,61.6,omega,lower,0.009393689332670463 +karman_re400,sr,155,62.0,omega,front,0.028460058413044657 +karman_re400,sr,155,62.0,omega,upper,-0.06784047814570959 +karman_re400,sr,155,62.0,omega,lower,0.0007836954645027294 +karman_re400,sr,156,62.4,omega,front,0.028197929947382284 +karman_re400,sr,156,62.4,omega,upper,-0.05071840731980192 +karman_re400,sr,156,62.4,omega,lower,0.017905766290410408 +karman_re400,sr,157,62.8,omega,front,0.01812435976730057 +karman_re400,sr,157,62.8,omega,upper,-0.030918639747776346 +karman_re400,sr,157,62.8,omega,lower,0.037705533862435976 +karman_re400,sr,158,63.2,omega,front,0.0061352505110049416 +karman_re400,sr,158,63.2,omega,upper,-0.02368937708258077 +karman_re400,sr,158,63.2,omega,lower,0.044934796527631556 +karman_re400,sr,159,63.6,omega,front,-0.006159865763733383 +karman_re400,sr,159,63.6,omega,upper,-0.025064141771178893 +karman_re400,sr,159,63.6,omega,lower,0.04356003183903344 +karman_re400,sr,160,64.0,omega,front,-0.014995623062117549 +karman_re400,sr,160,64.0,omega,upper,-0.02665413335542119 +karman_re400,sr,160,64.0,omega,lower,0.041970040254791126 +karman_re400,sr,161,64.4,omega,front,-0.021352678578511704 +karman_re400,sr,161,64.4,omega,upper,-0.014183451476905251 +karman_re400,sr,161,64.4,omega,lower,0.05444072213330707 +karman_re400,sr,162,64.8,omega,front,-0.026912724268219255 +karman_re400,sr,162,64.8,omega,upper,-0.0006257929328464584 +karman_re400,sr,162,64.8,omega,lower,0.06799838067736587 +karman_re400,sr,163,65.2,omega,front,-0.02916382731406873 +karman_re400,sr,163,65.2,omega,upper,-0.010506241015236117 +karman_re400,sr,163,65.2,omega,lower,0.058117932594976204 +karman_re400,sr,164,65.6,omega,front,-0.021269231362168867 +karman_re400,sr,164,65.6,omega,upper,-0.03383842260020105 +karman_re400,sr,164,65.6,omega,lower,0.03478575101001128 +karman_re400,sr,165,66.0,omega,front,-0.009170524291492892 +karman_re400,sr,165,66.0,omega,upper,-0.04395538991984708 +karman_re400,sr,165,66.0,omega,lower,0.024668783690365244 +karman_re400,sr,166,66.4,omega,front,0.0031275387984034176 +karman_re400,sr,166,66.4,omega,upper,-0.0440288789856381 +karman_re400,sr,166,66.4,omega,lower,0.02459529462457423 +karman_re400,sr,167,66.8,omega,front,0.012695336130608026 +karman_re400,sr,167,66.8,omega,upper,-0.041200437545916894 +karman_re400,sr,167,66.8,omega,lower,0.027423736064295434 +karman_re400,sr,168,67.2,omega,front,0.01945848692926718 +karman_re400,sr,168,67.2,omega,upper,-0.050993985987913916 +karman_re400,sr,168,67.2,omega,lower,0.017630187622298406 +karman_re400,sr,169,67.6,omega,front,0.02567258261667033 +karman_re400,sr,169,67.6,omega,upper,-0.06670356560667569 +karman_re400,sr,169,67.6,omega,lower,0.0019206080035366303 +karman_re400,sr,170,68.0,omega,front,0.029397969693692523 +karman_re400,sr,170,68.0,omega,upper,-0.06264492375218386 +karman_re400,sr,170,68.0,omega,lower,0.0059792498580284546 +karman_re400,sr,171,68.4,omega,front,0.02398660918802528 +karman_re400,sr,171,68.4,omega,upper,-0.03929148484214939 +karman_re400,sr,171,68.4,omega,lower,0.02933268876806293 +karman_re400,sr,172,68.8,omega,front,0.012190740099602438 +karman_re400,sr,172,68.8,omega,upper,-0.025722233538789465 +karman_re400,sr,172,68.8,omega,lower,0.04290194007142287 +karman_re400,sr,173,69.2,omega,front,3.69793223466849e-05 +karman_re400,sr,173,69.2,omega,upper,-0.02343711790940809 +karman_re400,sr,173,69.2,omega,lower,0.045187055700804224 +karman_re400,sr,174,69.6,omega,front,-0.01047587682685732 +karman_re400,sr,174,69.6,omega,upper,-0.02658051640312662 +karman_re400,sr,174,69.6,omega,lower,0.0420436572070857 +karman_re400,sr,175,70.0,omega,front,-0.017643790025590085 +karman_re400,sr,175,70.0,omega,upper,-0.01965333079407066 +karman_re400,sr,175,70.0,omega,lower,0.04897084281614166 +karman_re400,sr,176,70.4,omega,front,-0.024166002166243157 +karman_re400,sr,176,70.4,omega,upper,-0.0041977840124891586 +karman_re400,sr,176,70.4,omega,lower,0.06442638959772316 +karman_re400,sr,177,70.8,omega,front,-0.02856585160800527 +karman_re400,sr,177,70.8,omega,upper,-0.002994208349791321 +karman_re400,sr,177,70.8,omega,lower,0.065629965260421 +karman_re400,sr,178,71.2,omega,front,-0.025551980310246792 +karman_re400,sr,178,71.2,omega,upper,-0.025696522261742048 +karman_re400,sr,178,71.2,omega,lower,0.04292765134847028 +karman_re400,sr,179,71.6,omega,front,-0.013935991931916324 +karman_re400,sr,179,71.6,omega,upper,-0.04130757598672579 +karman_re400,sr,179,71.6,omega,lower,0.02731659762348653 +karman_re400,sr,180,72.0,omega,front,-0.001963164056917566 +karman_re400,sr,180,72.0,omega,upper,-0.04481460757362687 +karman_re400,sr,180,72.0,omega,lower,0.023809566036585458 +karman_re400,sr,181,72.4,omega,front,0.009343685312869202 +karman_re400,sr,181,72.4,omega,upper,-0.04282367962108266 +karman_re400,sr,181,72.4,omega,lower,0.02580049398912966 +karman_re400,sr,182,72.8,omega,front,0.01726849044911954 +karman_re400,sr,182,72.8,omega,upper,-0.04637128167877717 +karman_re400,sr,182,72.8,omega,lower,0.022252891931435155 +karman_re400,sr,183,73.2,omega,front,0.023732953093440902 +karman_re400,sr,183,73.2,omega,upper,-0.06041717207070818 +karman_re400,sr,183,73.2,omega,lower,0.008207001539504152 +karman_re400,sr,184,73.6,omega,front,0.02874109231631845 +karman_re400,sr,184,73.6,omega,upper,-0.06784187347881085 +karman_re400,sr,184,73.6,omega,lower,0.0007823001314014766 +karman_re400,sr,185,74.0,omega,front,0.028055569071781077 +karman_re400,sr,185,74.0,omega,upper,-0.050532988636693935 +karman_re400,sr,185,74.0,omega,lower,0.01809118497351839 +karman_re400,sr,186,74.4,omega,front,0.017898298152461366 +karman_re400,sr,186,74.4,omega,upper,-0.03130898285070071 +karman_re400,sr,186,74.4,omega,lower,0.03731519075951161 +karman_re400,sr,187,74.8,omega,front,0.005807391239792846 +karman_re400,sr,187,74.8,omega,upper,-0.02398596719873466 +karman_re400,sr,187,74.8,omega,lower,0.044638206411477664 +karman_re400,sr,188,75.2,omega,front,-0.00668554659685287 +karman_re400,sr,188,75.2,omega,upper,-0.025326479618798158 +karman_re400,sr,188,75.2,omega,lower,0.043297693991414164 +karman_re400,sr,189,75.6,omega,front,-0.015508823553625498 +karman_re400,sr,189,75.6,omega,upper,-0.027198095553362035 +karman_re400,sr,189,75.6,omega,lower,0.041426078056850286 +karman_re400,sr,190,76.0,omega,front,-0.021871651932861915 +karman_re400,sr,190,76.0,omega,upper,-0.014918820186745377 +karman_re400,sr,190,76.0,omega,lower,0.053705353423466946 +karman_re400,sr,191,76.4,omega,front,-0.02749260083715749 +karman_re400,sr,191,76.4,omega,upper,-0.0009630737940054513 +karman_re400,sr,191,76.4,omega,lower,0.06766109981620687 +karman_re400,sr,192,76.8,omega,front,-0.029755282464548314 +karman_re400,sr,192,76.8,omega,upper,-0.009621248141157137 +karman_re400,sr,192,76.8,omega,lower,0.05900292546905519 +karman_re400,sr,193,77.2,omega,front,-0.022038799444444687 +karman_re400,sr,193,77.2,omega,upper,-0.03226493141983368 +karman_re400,sr,193,77.2,omega,lower,0.03635924219037864 +karman_re400,sr,194,77.6,omega,front,-0.010383599154996998 +karman_re400,sr,194,77.6,omega,upper,-0.04361468200488457 +karman_re400,sr,194,77.6,omega,lower,0.025009491605327755 +karman_re400,sr,195,78.0,omega,front,0.001973917051806762 +karman_re400,sr,195,78.0,omega,upper,-0.04478824772931144 +karman_re400,sr,195,78.0,omega,lower,0.023835925880900884 +karman_re400,sr,196,78.4,omega,front,0.011712527321620467 +karman_re400,sr,196,78.4,omega,upper,-0.04130570336292379 +karman_re400,sr,196,78.4,omega,lower,0.02731847024728854 +karman_re400,sr,197,78.8,omega,front,0.018560395171088605 +karman_re400,sr,197,78.8,omega,upper,-0.05063784947977291 +karman_re400,sr,197,78.8,omega,lower,0.017986324130439414 +karman_re400,sr,198,79.2,omega,front,0.024767585800583514 +karman_re400,sr,198,79.2,omega,upper,-0.06600693280528638 +karman_re400,sr,198,79.2,omega,lower,0.0026172408049259356 +karman_re400,sr,199,79.6,omega,front,0.02834458694826127 +karman_re400,sr,199,79.6,omega,upper,-0.061415201389343185 +karman_re400,sr,199,79.6,omega,lower,0.0072089722208691365 +karman_re400,sr,200,80.0,omega,front,0.02302936312363706 +karman_re400,sr,200,80.0,omega,upper,-0.03795448016618332 +karman_re400,sr,200,80.0,omega,lower,0.030669693444029002 +karman_re400,sr,201,80.4,omega,front,0.010991890934103727 +karman_re400,sr,201,80.4,omega,upper,-0.025497908431892594 +karman_re400,sr,201,80.4,omega,lower,0.04312626517831973 +karman_re400,sr,202,80.8,omega,front,-0.000691896642512549 +karman_re400,sr,202,80.8,omega,upper,-0.024631861029839792 +karman_re400,sr,202,80.8,omega,lower,0.04399231258037253 +karman_re400,sr,203,81.2,omega,front,-0.010694354066748703 +karman_re400,sr,203,81.2,omega,upper,-0.026615286307508958 +karman_re400,sr,203,81.2,omega,lower,0.042008887302703364 +karman_re400,sr,204,81.6,omega,front,-0.01790188166084469 +karman_re400,sr,204,81.6,omega,upper,-0.01845749759344202 +karman_re400,sr,204,81.6,omega,lower,0.0501666760167703 +karman_re400,sr,205,82.0,omega,front,-0.02454096741217069 +karman_re400,sr,205,82.0,omega,upper,-0.0032899694873596854 +karman_re400,sr,205,82.0,omega,lower,0.06533420412285264 +karman_re400,sr,206,82.4,omega,front,-0.028689288398076322 +karman_re400,sr,206,82.4,omega,upper,-0.002996660269005251 +karman_re400,sr,206,82.4,omega,lower,0.06562751334120706 +karman_re400,sr,207,82.8,omega,front,-0.02536604857252437 +karman_re400,sr,207,82.8,omega,upper,-0.025421331820515824 +karman_re400,sr,207,82.8,omega,lower,0.0432028417896965 +karman_re400,sr,208,83.2,omega,front,-0.013797211456711983 +karman_re400,sr,208,83.2,omega,upper,-0.041123550353031495 +karman_re400,sr,208,83.2,omega,lower,0.027500623257180827 +karman_re400,sr,209,83.6,omega,front,-0.0015915711280515205 +karman_re400,sr,209,83.6,omega,upper,-0.0448766447075165 +karman_re400,sr,209,83.6,omega,lower,0.023747528902695825 +karman_re400,sr,210,84.0,omega,front,0.00985095709821404 +karman_re400,sr,210,84.0,omega,upper,-0.04266060301463686 +karman_re400,sr,210,84.0,omega,lower,0.02596357059557547 +karman_re400,sr,211,84.4,omega,front,0.017683475016645654 +karman_re400,sr,211,84.4,omega,upper,-0.04580123672394526 +karman_re400,sr,211,84.4,omega,lower,0.022822936886267062 +karman_re400,sr,212,84.8,omega,front,0.024096943595195604 +karman_re400,sr,212,84.8,omega,upper,-0.06014657336394281 +karman_re400,sr,212,84.8,omega,lower,0.008477600246269512 +karman_re400,sr,213,85.2,omega,front,0.029228092482005596 +karman_re400,sr,213,85.2,omega,upper,-0.06790932295222579 +karman_re400,sr,213,85.2,omega,lower,0.0007148506579865322 +karman_re400,sr,214,85.6,omega,front,0.028543692552572893 +karman_re400,sr,214,85.6,omega,upper,-0.05130682682476914 +karman_re400,sr,214,85.6,omega,lower,0.017317346785443184 +karman_re400,sr,215,86.0,omega,front,0.01857702778260484 +karman_re400,sr,215,86.0,omega,upper,-0.03183367072560624 +karman_re400,sr,215,86.0,omega,lower,0.03679050288460608 +karman_re400,sr,216,86.4,omega,front,0.006579201734296385 +karman_re400,sr,216,86.4,omega,upper,-0.02357649592877905 +karman_re400,sr,216,86.4,omega,lower,0.04504767768143328 +karman_re400,sr,217,86.8,omega,front,-0.006014934583333388 +karman_re400,sr,217,86.8,omega,upper,-0.025009248011987655 +karman_re400,sr,217,86.8,omega,lower,0.04361492559822467 +karman_re400,sr,218,87.2,omega,front,-0.014876607604778635 +karman_re400,sr,218,87.2,omega,upper,-0.02736721631955904 +karman_re400,sr,218,87.2,omega,lower,0.04125695729065328 +karman_re400,sr,219,87.6,omega,front,-0.02120820160813229 +karman_re400,sr,219,87.6,omega,upper,-0.015191443763150306 +karman_re400,sr,219,87.6,omega,lower,0.053432729847062016 +karman_re400,sr,220,88.0,omega,front,-0.026811436765623146 +karman_re400,sr,220,88.0,omega,upper,-0.0012593830165890374 +karman_re400,sr,220,88.0,omega,lower,0.06736479059362328 +karman_re400,sr,221,88.4,omega,front,-0.02907168617161342 +karman_re400,sr,221,88.4,omega,upper,-0.01097472733920576 +karman_re400,sr,221,88.4,omega,lower,0.05764944627100656 +karman_re400,sr,222,88.8,omega,front,-0.02120230353783567 +karman_re400,sr,222,88.8,omega,upper,-0.033594402971757205 +karman_re400,sr,222,88.8,omega,lower,0.035029770638455124 +karman_re400,sr,223,89.2,omega,front,-0.009438685802863674 +karman_re400,sr,223,89.2,omega,upper,-0.04376375199427471 +karman_re400,sr,223,89.2,omega,lower,0.024860421615937624 +karman_re400,sr,224,89.6,omega,front,0.0025443292469900843 +karman_re400,sr,224,89.6,omega,upper,-0.04427483518113572 +karman_re400,sr,224,89.6,omega,lower,0.024349338429076602 +karman_re400,sr,225,90.0,omega,front,0.012034187491847814 +karman_re400,sr,225,90.0,omega,upper,-0.04172460169514121 +karman_re400,sr,225,90.0,omega,lower,0.026899571915071113 +karman_re400,sr,226,90.4,omega,front,0.018868548476177933 +karman_re400,sr,226,90.4,omega,upper,-0.05181132081178049 +karman_re400,sr,226,90.4,omega,lower,0.016812852798431834 +karman_re400,sr,227,90.8,omega,front,0.025037902478562232 +karman_re400,sr,227,90.8,omega,upper,-0.06696731629566753 +karman_re400,sr,227,90.8,omega,lower,0.0016568573145447907 +karman_re400,sr,228,91.2,omega,front,0.028393681590310235 +karman_re400,sr,228,91.2,omega,upper,-0.06170502874539259 +karman_re400,sr,228,91.2,omega,lower,0.006919144864819735 +karman_re400,sr,229,91.6,omega,front,0.02289634396732529 +karman_re400,sr,229,91.6,omega,upper,-0.03767645795237845 +karman_re400,sr,229,91.6,omega,lower,0.03094771565783387 +karman_re400,sr,230,92.0,omega,front,0.010677059898115489 +karman_re400,sr,230,92.0,omega,upper,-0.02471977691119815 +karman_re400,sr,230,92.0,omega,lower,0.04390439669901417 +karman_re400,sr,231,92.4,omega,front,-0.0013826510167530238 +karman_re400,sr,231,92.4,omega,upper,-0.024180835780980098 +karman_re400,sr,231,92.4,omega,lower,0.044443337829232224 +karman_re400,sr,232,92.8,omega,front,-0.011460884758261257 +karman_re400,sr,232,92.8,omega,upper,-0.026718990082222463 +karman_re400,sr,232,92.8,omega,lower,0.04190518352798986 +karman_re400,sr,233,93.2,omega,front,-0.018419707280196648 +karman_re400,sr,233,93.2,omega,upper,-0.018608534599053452 +karman_re400,sr,233,93.2,omega,lower,0.050015639011158866 +karman_re400,sr,234,93.6,omega,front,-0.024936173641889426 +karman_re400,sr,234,93.6,omega,upper,-0.002856248500397247 +karman_re400,sr,234,93.6,omega,lower,0.06576792510981508 +karman_re400,sr,235,94.0,omega,front,-0.02926716253574102 +karman_re400,sr,235,94.0,omega,upper,-0.0029513526689760863 +karman_re400,sr,235,94.0,omega,lower,0.06567282094123623 +karman_re400,sr,236,94.4,omega,front,-0.025682705772554316 +karman_re400,sr,236,94.4,omega,upper,-0.026019365650125068 +karman_re400,sr,236,94.4,omega,lower,0.04260480796008725 +karman_re400,sr,237,94.8,omega,front,-0.01396756108234016 +karman_re400,sr,237,94.8,omega,upper,-0.041190520252058126 +karman_re400,sr,237,94.8,omega,lower,0.0274336533581542 +karman_re400,sr,238,95.2,omega,front,-0.0017645516217223711 +karman_re400,sr,238,95.2,omega,upper,-0.04499710770402879 +karman_re400,sr,238,95.2,omega,lower,0.023627065906183537 +karman_re400,sr,239,95.6,omega,front,0.009735827067942704 +karman_re400,sr,239,95.6,omega,upper,-0.042586501920578834 +karman_re400,sr,239,95.6,omega,lower,0.026037671689633488 +karman_re400,sr,240,96.0,omega,front,0.01752475414434018 +karman_re400,sr,240,96.0,omega,upper,-0.04586237865231003 +karman_re400,sr,240,96.0,omega,lower,0.022761794957902294 +karman_re400,sr,241,96.4,omega,front,0.023928965807231122 +karman_re400,sr,241,96.4,omega,upper,-0.060164719545321786 +karman_re400,sr,241,96.4,omega,lower,0.008459454064890536 +karman_re400,sr,242,96.8,omega,front,0.029053473370983542 +karman_re400,sr,242,96.8,omega,upper,-0.06776351939728055 +karman_re400,sr,242,96.8,omega,lower,0.0008606542129317773 +karman_re400,sr,243,97.2,omega,front,0.028266402440983916 +karman_re400,sr,243,97.2,omega,upper,-0.050545293145285664 +karman_re400,sr,243,97.2,omega,lower,0.018078880464926658 +karman_re400,sr,244,97.6,omega,front,0.018180237367789873 +karman_re400,sr,244,97.6,omega,upper,-0.03148046342737992 +karman_re400,sr,244,97.6,omega,lower,0.037143710182832405 +karman_re400,sr,245,98.0,omega,front,0.0062267365343152145 +karman_re400,sr,245,98.0,omega,upper,-0.023567635221032956 +karman_re400,sr,245,98.0,omega,lower,0.04505653838917937 +karman_re400,sr,246,98.4,omega,front,-0.006241970773925458 +karman_re400,sr,246,98.4,omega,upper,-0.02495952756635677 +karman_re400,sr,246,98.4,omega,lower,0.04366464604385555 +karman_re400,sr,247,98.8,omega,front,-0.01507456147810942 +karman_re400,sr,247,98.8,omega,upper,-0.02687330950809172 +karman_re400,sr,247,98.8,omega,lower,0.0417508641021206 +karman_re400,sr,248,99.2,omega,front,-0.021415455464934396 +karman_re400,sr,248,99.2,omega,upper,-0.014482373999290586 +karman_re400,sr,248,99.2,omega,lower,0.05414179961092174 +karman_re400,sr,249,99.6,omega,front,-0.02696237657183797 +karman_re400,sr,249,99.6,omega,upper,-0.0010409581971268756 +karman_re400,sr,249,99.6,omega,lower,0.06758321541308546 +karman_re400,sr,250,100.0,omega,front,-0.029019858277475778 +karman_re400,sr,250,100.0,omega,upper,-0.011362798934233705 +karman_re400,sr,250,100.0,omega,lower,0.057261374675978624 +karman_re400,sr,251,100.4,omega,front,-0.020940704761864947 +karman_re400,sr,251,100.4,omega,upper,-0.034276415605365464 +karman_re400,sr,251,100.4,omega,lower,0.034347758004846865 +karman_re400,sr,252,100.8,omega,front,-0.009024607879386467 +karman_re400,sr,252,100.8,omega,upper,-0.04407025940428736 +karman_re400,sr,252,100.8,omega,lower,0.024553914205924964 +karman_re400,sr,253,101.2,omega,front,0.0030615464779933607 +karman_re400,sr,253,101.2,omega,upper,-0.044187863223970246 +karman_re400,sr,253,101.2,omega,lower,0.02443631038624208 +karman_re400,sr,254,101.6,omega,front,0.012468294612039172 +karman_re400,sr,254,101.6,omega,upper,-0.041618641637115046 +karman_re400,sr,254,101.6,omega,lower,0.02700553197309728 +karman_re400,sr,255,102.0,omega,front,0.01922807413339012 +karman_re400,sr,255,102.0,omega,upper,-0.05205289232715634 +karman_re400,sr,255,102.0,omega,lower,0.01657128128305598 +karman_re400,sr,256,102.4,omega,front,0.025335114783331676 +karman_re400,sr,256,102.4,omega,upper,-0.06729047026555918 +karman_re400,sr,256,102.4,omega,lower,0.0013337033446531431 +karman_re400,sr,257,102.8,omega,front,0.02871443467249061 +karman_re400,sr,257,102.8,omega,upper,-0.06147879295323432 +karman_re400,sr,257,102.8,omega,lower,0.007145380656978002 +karman_re400,sr,258,103.2,omega,front,0.022902605228039153 +karman_re400,sr,258,103.2,omega,upper,-0.03735485689002993 +karman_re400,sr,258,103.2,omega,lower,0.03126931672018239 +karman_re400,sr,259,103.6,omega,front,0.010679954765499858 +karman_re400,sr,259,103.6,omega,upper,-0.024717499313468227 +karman_re400,sr,259,103.6,omega,lower,0.043906674296744094 +karman_re400,sr,260,104.0,omega,front,-0.0014723232247177776 +karman_re400,sr,260,104.0,omega,upper,-0.02417306515343095 +karman_re400,sr,260,104.0,omega,lower,0.04445110845678137 +karman_re400,sr,261,104.4,omega,front,-0.0115535125225959 +karman_re400,sr,261,104.4,omega,upper,-0.026887873344912872 +karman_re400,sr,261,104.4,omega,lower,0.04173630026529945 +karman_re400,sr,262,104.8,omega,front,-0.018457773898304976 +karman_re400,sr,262,104.8,omega,upper,-0.018772296311768286 +karman_re400,sr,262,104.8,omega,lower,0.049851877298444036 +karman_re400,sr,263,105.2,omega,front,-0.02495280225742308 +karman_re400,sr,263,105.2,omega,upper,-0.002925386380150754 +karman_re400,sr,263,105.2,omega,lower,0.06569878723006158 +karman_re400,sr,264,105.6,omega,front,-0.02927901373209433 +karman_re400,sr,264,105.6,omega,upper,-0.0029997813086752646 +karman_re400,sr,264,105.6,omega,lower,0.06562439230153705 +karman_re400,sr,265,106.0,omega,front,-0.025644523270951007 +karman_re400,sr,265,106.0,omega,upper,-0.026081734679940585 +karman_re400,sr,265,106.0,omega,lower,0.042542438930271737 +karman_re400,sr,266,106.4,omega,front,-0.013951025262402115 +karman_re400,sr,266,106.4,omega,upper,-0.04109868556284092 +karman_re400,sr,266,106.4,omega,lower,0.027525488047371396 +karman_re400,sr,267,106.8,omega,front,-0.0018274477537113395 +karman_re400,sr,267,106.8,omega,upper,-0.04520075782618478 +karman_re400,sr,267,106.8,omega,lower,0.023423415784027544 +karman_re400,sr,268,107.2,omega,front,0.009689530057701855 +karman_re400,sr,268,107.2,omega,upper,-0.04274560795558104 +karman_re400,sr,268,107.2,omega,lower,0.025878565654631286 +karman_re400,sr,269,107.6,omega,front,0.017480257102255193 +karman_re400,sr,269,107.6,omega,upper,-0.046102710886568136 +karman_re400,sr,269,107.6,omega,lower,0.02252146272364419 +karman_re400,sr,270,108.0,omega,front,0.02388169066925289 +karman_re400,sr,270,108.0,omega,upper,-0.06038085534861621 +karman_re400,sr,270,108.0,omega,lower,0.008243318261596114 +karman_re400,sr,271,108.4,omega,front,0.028942079584429913 +karman_re400,sr,271,108.4,omega,upper,-0.06763758620782466 +karman_re400,sr,271,108.4,omega,lower,0.000986587402387662 +karman_re400,sr,272,108.8,omega,front,0.02802282776646541 +karman_re400,sr,272,108.8,omega,upper,-0.04981066587267447 +karman_re400,sr,272,108.8,omega,lower,0.018813507737537854 +karman_re400,sr,273,109.2,omega,front,0.01778354818453375 +karman_re400,sr,273,109.2,omega,upper,-0.030832328537545882 +karman_re400,sr,273,109.2,omega,lower,0.03779184507266644 +karman_re400,sr,274,109.6,omega,front,0.005794136898554343 +karman_re400,sr,274,109.6,omega,upper,-0.02350051003125202 +karman_re400,sr,274,109.6,omega,lower,0.045123663578960305 +karman_re400,sr,275,110.0,omega,front,-0.006528372391807125 +karman_re400,sr,275,110.0,omega,upper,-0.02501584330167083 +karman_re400,sr,275,110.0,omega,lower,0.0436083303085415 +karman_re400,sr,276,110.4,omega,front,-0.015289805968088904 +karman_re400,sr,276,110.4,omega,upper,-0.026345025586502983 +karman_re400,sr,276,110.4,omega,lower,0.04227914802370934 +karman_re400,sr,277,110.8,omega,front,-0.021632594494657608 +karman_re400,sr,277,110.8,omega,upper,-0.013662094740925569 +karman_re400,sr,277,110.8,omega,lower,0.05496207886928676 +karman_re400,sr,278,111.2,omega,front,-0.027116987354054933 +karman_re400,sr,278,111.2,omega,upper,-0.0007939644462462647 +karman_re400,sr,278,111.2,omega,lower,0.06783020916396605 +karman_re400,sr,279,111.6,omega,front,-0.028957704764336466 +karman_re400,sr,279,111.6,omega,upper,-0.012023647873962515 +karman_re400,sr,279,111.6,omega,lower,0.05660052573624981 +karman_re400,sr,280,112.0,omega,front,-0.020569812310188455 +karman_re400,sr,280,112.0,omega,upper,-0.034980479526086156 +karman_re400,sr,280,112.0,omega,lower,0.03364369408412617 +karman_re400,sr,281,112.4,omega,front,-0.008529234798187905 +karman_re400,sr,281,112.4,omega,upper,-0.04419765263132546 +karman_re400,sr,281,112.4,omega,lower,0.024426520978886864 +karman_re400,sr,282,112.8,omega,front,0.0036659085412255187 +karman_re400,sr,282,112.8,omega,upper,-0.04388702240403163 +karman_re400,sr,282,112.8,omega,lower,0.02473715120618069 +karman_re400,sr,283,113.2,omega,front,0.012979185869610603 +karman_re400,sr,283,113.2,omega,upper,-0.041356836649927245 +karman_re400,sr,283,113.2,omega,lower,0.02726733696028508 +karman_re400,sr,284,113.6,omega,front,0.01967508960932776 +karman_re400,sr,284,113.6,omega,upper,-0.05204189408785089 +karman_re400,sr,284,113.6,omega,lower,0.016582279522361434 +karman_re400,sr,285,114.0,omega,front,0.025729590192235276 +karman_re400,sr,285,114.0,omega,upper,-0.06735645361155841 +karman_re400,sr,285,114.0,omega,lower,0.0012677199986539157 +karman_re400,sr,286,114.4,omega,front,0.029113543645201464 +karman_re400,sr,286,114.4,omega,upper,-0.06154643577886297 +karman_re400,sr,286,114.4,omega,lower,0.007077737831349351 +karman_re400,sr,287,114.8,omega,front,0.023119683874025507 +karman_re400,sr,287,114.8,omega,upper,-0.03783268045121723 +karman_re400,sr,287,114.8,omega,lower,0.030791493158995095 +karman_re400,sr,288,115.2,omega,front,0.01106904469987298 +karman_re400,sr,288,115.2,omega,upper,-0.025045092771983173 +karman_re400,sr,288,115.2,omega,lower,0.04357908083822915 +karman_re400,sr,289,115.6,omega,front,-0.0011479261949174737 +karman_re400,sr,289,115.6,omega,upper,-0.02391893640137301 +karman_re400,sr,289,115.6,omega,lower,0.044705237208839316 +karman_re400,sr,290,116.0,omega,front,-0.011360007065879226 +karman_re400,sr,290,116.0,omega,upper,-0.026845369351982402 +karman_re400,sr,290,116.0,omega,lower,0.04177880425822992 +karman_re400,sr,291,116.4,omega,front,-0.018317147279146004 +karman_re400,sr,291,116.4,omega,upper,-0.0190757405355292 +karman_re400,sr,291,116.4,omega,lower,0.049548433074683124 +karman_re400,sr,292,116.8,omega,front,-0.024810003599729697 +karman_re400,sr,292,116.8,omega,upper,-0.0032114761008880154 +karman_re400,sr,292,116.8,omega,lower,0.06541269750932431 +karman_re400,sr,293,117.2,omega,front,-0.02910885413763801 +karman_re400,sr,293,117.2,omega,upper,-0.003342312367542575 +karman_re400,sr,293,117.2,omega,lower,0.06528186124266976 +karman_re400,sr,294,117.6,omega,front,-0.025471381785489557 +karman_re400,sr,294,117.6,omega,upper,-0.026472954718889302 +karman_re400,sr,294,117.6,omega,lower,0.04215121889132302 +karman_re400,sr,295,118.0,omega,front,-0.013770100046861623 +karman_re400,sr,295,118.0,omega,upper,-0.04142754266180764 +karman_re400,sr,295,118.0,omega,lower,0.02719663094840469 +karman_re400,sr,296,118.4,omega,front,-0.0017413196501688125 +karman_re400,sr,296,118.4,omega,upper,-0.04525125777050398 +karman_re400,sr,296,118.4,omega,lower,0.023372915839708335 +karman_re400,sr,297,118.8,omega,front,0.009590167730715967 +karman_re400,sr,297,118.8,omega,upper,-0.04271472945480678 +karman_re400,sr,297,118.8,omega,lower,0.025909444155405543 +karman_re400,sr,298,119.2,omega,front,0.017337600079944577 +karman_re400,sr,298,119.2,omega,upper,-0.04678352991280991 +karman_re400,sr,298,119.2,omega,lower,0.021840643697402413 +karman_re400,sr,299,119.6,omega,front,0.02378569917557714 +karman_re400,sr,299,119.6,omega,upper,-0.06107764191830146 +karman_re400,sr,299,119.6,omega,lower,0.0075465316919108676 +karman_re400,sr,300,120.0,omega,front,0.028718692613934796 +karman_re400,sr,300,120.0,omega,upper,-0.0674556623279179 +karman_re400,sr,300,120.0,omega,lower,0.0011685112822944178 +karman_re400,sr,301,120.4,omega,front,0.027541387344549285 +karman_re400,sr,301,120.4,omega,upper,-0.04857471893876508 +karman_re400,sr,301,120.4,omega,lower,0.02004945467144724 +karman_re400,sr,302,120.8,omega,front,0.017009501937773463 +karman_re400,sr,302,120.8,omega,upper,-0.030122007312901405 +karman_re400,sr,302,120.8,omega,lower,0.038502166297310916 +karman_re400,sr,303,121.2,omega,front,0.004955995535116117 +karman_re400,sr,303,121.2,omega,upper,-0.02382320726363098 +karman_re400,sr,303,121.2,omega,lower,0.04480096634658134 +karman_re400,sr,304,121.6,omega,front,-0.00720812854547708 +karman_re400,sr,304,121.6,omega,upper,-0.025263151440206 +karman_re400,sr,304,121.6,omega,lower,0.04336102217000632 +karman_re400,sr,305,122.0,omega,front,-0.015884929874580307 +karman_re400,sr,305,122.0,omega,upper,-0.025920969165308963 +karman_re400,sr,305,122.0,omega,lower,0.04270320444490336 +karman_re400,sr,306,122.4,omega,front,-0.022229723940409007 +karman_re400,sr,306,122.4,omega,upper,-0.013016237448821456 +karman_re400,sr,306,122.4,omega,lower,0.05560793616139087 +karman_re400,sr,307,122.8,omega,front,-0.027685050022477325 +karman_re400,sr,307,122.8,omega,upper,-0.0006527419685532454 +karman_re400,sr,307,122.8,omega,lower,0.06797143164165907 +karman_re400,sr,308,123.2,omega,front,-0.0292772146519346 +karman_re400,sr,308,123.2,omega,upper,-0.01179833773649663 +karman_re400,sr,308,123.2,omega,lower,0.056825835873715695 +karman_re400,sr,309,123.6,omega,front,-0.0207981969229042 +karman_re400,sr,309,123.6,omega,upper,-0.034342493343783975 +karman_re400,sr,309,123.6,omega,lower,0.03428168026642835 +karman_re400,sr,310,124.0,omega,front,-0.008827809733019103 +karman_re400,sr,310,124.0,omega,upper,-0.04411660912707463 +karman_re400,sr,310,124.0,omega,lower,0.024507564483137696 +karman_re400,sr,311,124.4,omega,front,0.0036213688753262852 +karman_re400,sr,311,124.4,omega,upper,-0.043978686577910764 +karman_re400,sr,311,124.4,omega,lower,0.024645487032301558 +karman_re400,sr,312,124.8,omega,front,0.012993611366745289 +karman_re400,sr,312,124.8,omega,upper,-0.04090674314559343 +karman_re400,sr,312,124.8,omega,lower,0.027717430464618897 +karman_re400,sr,313,125.2,omega,front,0.019696040990023103 +karman_re400,sr,313,125.2,omega,upper,-0.05129949162031542 +karman_re400,sr,313,125.2,omega,lower,0.017324681989896906 +karman_re400,sr,314,125.6,omega,front,0.025745860057332336 +karman_re400,sr,314,125.6,omega,upper,-0.06683306743856403 +karman_re400,sr,314,125.6,omega,lower,0.0017911061716482956 +karman_re400,sr,315,126.0,omega,front,0.029191718384521385 +karman_re400,sr,315,126.0,omega,upper,-0.06124876928463752 +karman_re400,sr,315,126.0,omega,lower,0.007375404325574802 +karman_re400,sr,316,126.4,omega,front,0.023176806001091253 +karman_re400,sr,316,126.4,omega,upper,-0.038207549287211824 +karman_re400,sr,316,126.4,omega,lower,0.030416624323000498 +karman_re400,sr,317,126.8,omega,front,0.011376603935551222 +karman_re400,sr,317,126.8,omega,upper,-0.025413542923466172 +karman_re400,sr,317,126.8,omega,lower,0.04321063068674615 +karman_re400,sr,318,127.2,omega,front,-0.0006511689497510017 +karman_re400,sr,318,127.2,omega,upper,-0.023867815294036553 +karman_re400,sr,318,127.2,omega,lower,0.04475635831617577 +karman_re400,sr,319,127.6,omega,front,-0.010828100491891084 +karman_re400,sr,319,127.6,omega,upper,-0.026692797708328355 +karman_re400,sr,319,127.6,omega,lower,0.04193137590188397 +karman_re400,sr,320,128.0,omega,front,-0.017866310311862154 +karman_re400,sr,320,128.0,omega,upper,-0.018866177185042313 +karman_re400,sr,320,128.0,omega,lower,0.04975799642517001 +karman_re400,sr,321,128.4,omega,front,-0.02438892382676606 +karman_re400,sr,321,128.4,omega,upper,-0.0032517953660494703 +karman_re400,sr,321,128.4,omega,lower,0.06537237824416285 +karman_re400,sr,322,128.8,omega,front,-0.028490690727551164 +karman_re400,sr,322,128.8,omega,upper,-0.003694747779372456 +karman_re400,sr,322,128.8,omega,lower,0.06492942583083987 +karman_re400,sr,323,129.2,omega,front,-0.02489246913635062 +karman_re400,sr,323,129.2,omega,upper,-0.027026913378524444 +karman_re400,sr,323,129.2,omega,lower,0.04159726023168788 +karman_re400,sr,324,129.6,omega,front,-0.013070872358047263 +karman_re400,sr,324,129.6,omega,upper,-0.041926644101252554 +karman_re400,sr,324,129.6,omega,lower,0.02669752950895977 +karman_re400,sr,325,130.0,omega,front,-0.0010894364844365645 +karman_re400,sr,325,130.0,omega,upper,-0.04501388215041134 +karman_re400,sr,325,130.0,omega,lower,0.023610291459800984 +karman_re400,sr,326,130.4,omega,front,0.009983577988261423 +karman_re400,sr,326,130.4,omega,upper,-0.042609999543148105 +karman_re400,sr,326,130.4,omega,lower,0.026014174067064216 +karman_re400,sr,327,130.8,omega,front,0.017630393715970274 +karman_re400,sr,327,130.8,omega,upper,-0.04741547802519439 +karman_re400,sr,327,130.8,omega,lower,0.021208695585017933 +karman_re400,sr,328,131.2,omega,front,0.024107504533171772 +karman_re400,sr,328,131.2,omega,upper,-0.061796793401524504 +karman_re400,sr,328,131.2,omega,lower,0.0068273802086878145 +karman_re400,sr,329,131.6,omega,front,0.028969286009866205 +karman_re400,sr,329,131.6,omega,upper,-0.06748456239403305 +karman_re400,sr,329,131.6,omega,lower,0.0011396112161792748 +karman_re400,sr,330,132.0,omega,front,0.027508370760433266 +karman_re400,sr,330,132.0,omega,upper,-0.048306999200788014 +karman_re400,sr,330,132.0,omega,lower,0.02031717440942431 +karman_re400,sr,331,132.4,omega,front,0.016889448412958374 +karman_re400,sr,331,132.4,omega,upper,-0.030244482999386268 +karman_re400,sr,331,132.4,omega,lower,0.03837969061082606 +karman_re400,sr,332,132.8,omega,front,0.004797725209847188 +karman_re400,sr,332,132.8,omega,upper,-0.023906729330117314 +karman_re400,sr,332,132.8,omega,lower,0.04471744428009501 +karman_re400,sr,333,133.2,omega,front,-0.007463790845318556 +karman_re400,sr,333,133.2,omega,upper,-0.025319314929682504 +karman_re400,sr,333,133.2,omega,lower,0.04330485868052982 +karman_re400,sr,334,133.6,omega,front,-0.016107677931859764 +karman_re400,sr,334,133.6,omega,upper,-0.02615402100361486 +karman_re400,sr,334,133.6,omega,lower,0.04247015260659746 +karman_re400,sr,335,134.0,omega,front,-0.02241657075814357 +karman_re400,sr,335,134.0,omega,upper,-0.013287676552610157 +karman_re400,sr,335,134.0,omega,lower,0.05533649705760217 +karman_re400,sr,336,134.4,omega,front,-0.027895155234853423 +karman_re400,sr,336,134.4,omega,upper,-0.0008177520971360863 +karman_re400,sr,336,134.4,omega,lower,0.06780642151307624 +karman_re400,sr,337,134.8,omega,front,-0.029438268734072105 +karman_re400,sr,337,134.8,omega,upper,-0.011545888256026995 +karman_re400,sr,337,134.8,omega,lower,0.057078285354185326 +karman_re400,sr,338,135.2,omega,front,-0.02102646254413849 +karman_re400,sr,338,135.2,omega,upper,-0.033806572770983145 +karman_re400,sr,338,135.2,omega,lower,0.03481760083922918 +karman_re400,sr,339,135.6,omega,front,-0.0092216773085716 +karman_re400,sr,339,135.6,omega,upper,-0.04401232986309515 +karman_re400,sr,339,135.6,omega,lower,0.02461184374711718 +karman_re400,sr,340,136.0,omega,front,0.0032083495542357637 +karman_re400,sr,340,136.0,omega,upper,-0.0442040439115863 +karman_re400,sr,340,136.0,omega,lower,0.024420129698626024 +karman_re400,sr,341,136.4,omega,front,0.012622917382203893 +karman_re400,sr,341,136.4,omega,upper,-0.04101650934955864 +karman_re400,sr,341,136.4,omega,lower,0.027607664260653683 +karman_re400,sr,342,136.8,omega,front,0.01938226489343751 +karman_re400,sr,342,136.8,omega,upper,-0.05126213049177778 +karman_re400,sr,342,136.8,omega,lower,0.01736204311843454 +karman_re400,sr,343,137.2,omega,front,0.025410531406671277 +karman_re400,sr,343,137.2,omega,upper,-0.06657665652140103 +karman_re400,sr,343,137.2,omega,lower,0.002047517088811284 +karman_re400,sr,344,137.6,omega,front,0.028746999266576374 +karman_re400,sr,344,137.6,omega,upper,-0.06051807299955216 +karman_re400,sr,344,137.6,omega,lower,0.008106100610660154 +karman_re400,sr,345,138.0,omega,front,0.02267831028150093 +karman_re400,sr,345,138.0,omega,upper,-0.037510814481111356 +karman_re400,sr,345,138.0,omega,lower,0.03111335912910097 +karman_re400,sr,346,138.4,omega,front,0.010790057183681175 +karman_re400,sr,346,138.4,omega,upper,-0.025227562453217587 +karman_re400,sr,346,138.4,omega,lower,0.04339661115699474 +karman_re400,sr,347,138.8,omega,front,-0.0010420981599836903 +karman_re400,sr,347,138.8,omega,upper,-0.02433780732933968 +karman_re400,sr,347,138.8,omega,lower,0.04428636628087264 +karman_re400,sr,348,139.2,omega,front,-0.010986162915066036 +karman_re400,sr,348,139.2,omega,upper,-0.026665539613571314 +karman_re400,sr,348,139.2,omega,lower,0.04195863399664101 +karman_re400,sr,349,139.6,omega,front,-0.01800209335612909 +karman_re400,sr,349,139.6,omega,upper,-0.018193003944762882 +karman_re400,sr,349,139.6,omega,lower,0.05043116966544944 +karman_re400,sr,350,140.0,omega,front,-0.024567518496462912 +karman_re400,sr,350,140.0,omega,upper,-0.0026457503604677335 +karman_re400,sr,350,140.0,omega,lower,0.0659784232497446 +karman_re400,sr,351,140.4,omega,front,-0.028521639168680005 +karman_re400,sr,351,140.4,omega,upper,-0.0037909207137309764 +karman_re400,sr,351,140.4,omega,lower,0.06483325289648134 +karman_re400,sr,352,140.8,omega,front,-0.024719054592079143 +karman_re400,sr,352,140.8,omega,upper,-0.027254935014357305 +karman_re400,sr,352,140.8,omega,lower,0.04136923859585502 +karman_re400,sr,353,141.2,omega,front,-0.012818731628859025 +karman_re400,sr,353,141.2,omega,upper,-0.042176659170779576 +karman_re400,sr,353,141.2,omega,lower,0.02644751443943275 +karman_re400,sr,354,141.6,omega,front,-0.0006897953661697652 +karman_re400,sr,354,141.6,omega,upper,-0.04503088801046697 +karman_re400,sr,354,141.6,omega,lower,0.02359328559974535 +karman_re400,sr,355,142.0,omega,front,0.01037294031544748 +karman_re400,sr,355,142.0,omega,upper,-0.04241869351350162 +karman_re400,sr,355,142.0,omega,lower,0.026205480096710705 +karman_re400,sr,356,142.4,omega,front,0.017891699009219976 +karman_re400,sr,356,142.4,omega,upper,-0.04730921652040984 +karman_re400,sr,356,142.4,omega,lower,0.02131495708980248 +karman_re400,sr,357,142.8,omega,front,0.0243466596509504 +karman_re400,sr,357,142.8,omega,upper,-0.061912996559501825 +karman_re400,sr,357,142.8,omega,lower,0.006711177050710497 +karman_re400,sr,358,143.2,omega,front,0.02925952488102539 +karman_re400,sr,358,143.2,omega,upper,-0.0675319382537655 +karman_re400,sr,358,143.2,omega,lower,0.0010922353564468334 +karman_re400,sr,359,143.6,omega,front,0.02768172358897369 +karman_re400,sr,359,143.6,omega,upper,-0.048375910234243556 +karman_re400,sr,359,143.6,omega,lower,0.020248263375968772 +karman_re400,sr,360,144.0,omega,front,0.017088331130241323 +karman_re400,sr,360,144.0,omega,upper,-0.03048751911971946 +karman_re400,sr,360,144.0,omega,lower,0.03813665449049286 +karman_re400,sr,361,144.4,omega,front,0.005043291437686645 +karman_re400,sr,361,144.4,omega,upper,-0.023749827814843007 +karman_re400,sr,361,144.4,omega,lower,0.044874345795369315 +karman_re400,sr,362,144.8,omega,front,-0.007284021800739551 +karman_re400,sr,362,144.8,omega,upper,-0.02516589984408836 +karman_re400,sr,362,144.8,omega,lower,0.04345827376612396 +karman_re400,sr,363,145.2,omega,front,-0.01595477165821467 +karman_re400,sr,363,145.2,omega,upper,-0.02623007693422717 +karman_re400,sr,363,145.2,omega,lower,0.042394096675985156 +karman_re400,sr,364,145.6,omega,front,-0.022232757335189684 +karman_re400,sr,364,145.6,omega,upper,-0.013397771607584503 +karman_re400,sr,364,145.6,omega,lower,0.055226402002627815 +karman_re400,sr,365,146.0,omega,front,-0.027693586329276695 +karman_re400,sr,365,146.0,omega,upper,-0.0009560423199976675 +karman_re400,sr,365,146.0,omega,lower,0.06766813129021465 +karman_re400,sr,366,146.4,omega,front,-0.029188163736012296 +karman_re400,sr,366,146.4,omega,upper,-0.012126327034189232 +karman_re400,sr,366,146.4,omega,lower,0.05649784657602309 +karman_re400,sr,367,146.8,omega,front,-0.020697195355062006 +karman_re400,sr,367,146.8,omega,upper,-0.034337478365894694 +karman_re400,sr,367,146.8,omega,lower,0.03428669524431763 +karman_re400,sr,368,147.2,omega,front,-0.008884444350209379 +karman_re400,sr,368,147.2,omega,upper,-0.04415926536584266 +karman_re400,sr,368,147.2,omega,lower,0.024464908244369667 +karman_re400,sr,369,147.6,omega,front,0.0033978043056051327 +karman_re400,sr,369,147.6,omega,upper,-0.044157493224293444 +karman_re400,sr,369,147.6,omega,lower,0.02446668038591888 +karman_re400,sr,370,148.0,omega,front,0.012719863915717644 +karman_re400,sr,370,148.0,omega,upper,-0.04131048388222322 +karman_re400,sr,370,148.0,omega,lower,0.027313689727989105 +karman_re400,sr,371,148.4,omega,front,0.019464244696175234 +karman_re400,sr,371,148.4,omega,upper,-0.05193256330698111 +karman_re400,sr,371,148.4,omega,lower,0.01669161030323122 +karman_re400,sr,372,148.8,omega,front,0.025443320663777972 +karman_re400,sr,372,148.8,omega,upper,-0.06701928693477757 +karman_re400,sr,372,148.8,omega,lower,0.0016048866754347425 +karman_re400,sr,373,149.2,omega,front,0.028633213218448056 +karman_re400,sr,373,149.2,omega,upper,-0.06023912969843005 +karman_re400,sr,373,149.2,omega,lower,0.008385043911782271 +karman_re400,sr,374,149.6,omega,front,0.02236688115868739 +karman_re400,sr,374,149.6,omega,upper,-0.036772373450269236 +karman_re400,sr,374,149.6,omega,lower,0.031851800159943086 +karman_re400,sr,375,150.0,omega,front,0.010289897803340973 +karman_re400,sr,375,150.0,omega,upper,-0.024714085961790096 +karman_re400,sr,375,150.0,omega,lower,0.043910087648422226 +karman_re400,sr,376,150.4,omega,front,-0.0016686224282595 +karman_re400,sr,376,150.4,omega,upper,-0.024434583918444133 +karman_re400,sr,376,150.4,omega,lower,0.0441895896917682 +karman_re400,sr,377,150.8,omega,front,-0.011513418165324323 +karman_re400,sr,377,150.8,omega,upper,-0.026802146758698644 +karman_re400,sr,377,150.8,omega,lower,0.04182202685151368 +karman_re400,sr,378,151.2,omega,front,-0.018397462977135775 +karman_re400,sr,378,151.2,omega,upper,-0.017990072422960184 +karman_re400,sr,378,151.2,omega,lower,0.05063410118725214 +karman_re400,sr,379,151.6,omega,front,-0.024898842284576884 +karman_re400,sr,379,151.6,omega,upper,-0.0022023404484028753 +karman_re400,sr,379,151.6,omega,lower,0.06642183316180945 +karman_re400,sr,380,152.0,omega,front,-0.028901392489741443 +karman_re400,sr,380,152.0,omega,upper,-0.0038208263636032138 +karman_re400,sr,380,152.0,omega,lower,0.0648033472466091 +karman_re400,sr,381,152.4,omega,front,-0.024809202627220278 +karman_re400,sr,381,152.4,omega,upper,-0.027519404303702432 +karman_re400,sr,381,152.4,omega,lower,0.04110476930650989 +karman_re400,sr,382,152.8,omega,front,-0.012878785919146605 +karman_re400,sr,382,152.8,omega,upper,-0.04210649515408091 +karman_re400,sr,382,152.8,omega,lower,0.026517678456131417 +karman_re400,sr,383,153.2,omega,front,-0.0006933202668084935 +karman_re400,sr,383,153.2,omega,upper,-0.04510126212642148 +karman_re400,sr,383,153.2,omega,lower,0.023522911483790845 +karman_re400,sr,384,153.6,omega,front,0.010438180947133344 +karman_re400,sr,384,153.6,omega,upper,-0.04235492077706378 +karman_re400,sr,384,153.6,omega,lower,0.026269252833148543 +karman_re400,sr,385,154.0,omega,front,0.01791774082773154 +karman_re400,sr,385,154.0,omega,upper,-0.04718480731178795 +karman_re400,sr,385,154.0,omega,lower,0.02143936629842437 +karman_re400,sr,386,154.4,omega,front,0.024363345986232514 +karman_re400,sr,386,154.4,omega,upper,-0.061905496929543544 +karman_re400,sr,386,154.4,omega,lower,0.006718676680668785 +karman_re400,sr,387,154.8,omega,front,0.02930355172915945 +karman_re400,sr,387,154.8,omega,upper,-0.0674474707406279 +karman_re400,sr,387,154.8,omega,lower,0.0011767028695844229 +karman_re400,sr,388,155.2,omega,front,0.02765085773148495 +karman_re400,sr,388,155.2,omega,upper,-0.04810600729095585 +karman_re400,sr,388,155.2,omega,lower,0.020518166319256476 +karman_re400,sr,389,155.6,omega,front,0.0170450439828837 +karman_re400,sr,389,155.6,omega,upper,-0.030303874100619074 +karman_re400,sr,389,155.6,omega,lower,0.03832029950959325 +karman_re400,sr,390,156.0,omega,front,0.005029073065649321 +karman_re400,sr,390,156.0,omega,upper,-0.02349234051960846 +karman_re400,sr,390,156.0,omega,lower,0.04513183309060386 +karman_re400,sr,391,156.4,omega,front,-0.00725139282693435 +karman_re400,sr,391,156.4,omega,upper,-0.025085477502854784 +karman_re400,sr,391,156.4,omega,lower,0.04353869610735754 +karman_re400,sr,392,156.8,omega,front,-0.01587783300950795 +karman_re400,sr,392,156.8,omega,upper,-0.025856493053101594 +karman_re400,sr,392,156.8,omega,lower,0.04276768055711073 +karman_re400,sr,393,157.2,omega,front,-0.02215487652258885 +karman_re400,sr,393,157.2,omega,upper,-0.012892622963471632 +karman_re400,sr,393,157.2,omega,lower,0.05573155064674069 +karman_re400,sr,394,157.6,omega,front,-0.02756058493288753 +karman_re400,sr,394,157.6,omega,upper,-0.0008876725204946601 +karman_re400,sr,394,157.6,omega,lower,0.06773650108971767 +karman_re400,sr,395,158.0,omega,front,-0.028899507273957084 +karman_re400,sr,395,158.0,omega,upper,-0.013108702435806162 +karman_re400,sr,395,158.0,omega,lower,0.05551547117440617 +karman_re400,sr,396,158.4,omega,front,-0.020134692874408694 +karman_re400,sr,396,158.4,omega,upper,-0.03537392844409678 +karman_re400,sr,396,158.4,omega,lower,0.03325024516611554 +karman_re400,sr,397,158.8,omega,front,-0.008187814494073846 +karman_re400,sr,397,158.8,omega,upper,-0.04431556398760022 +karman_re400,sr,397,158.8,omega,lower,0.024308609622612103 +karman_re400,sr,398,159.2,omega,front,0.004028083867890633 +karman_re400,sr,398,159.2,omega,upper,-0.043880816863692614 +karman_re400,sr,398,159.2,omega,lower,0.0247433567465197 +karman_re400,sr,399,159.6,omega,front,0.013222830695823393 +karman_re400,sr,399,159.6,omega,upper,-0.041430861621066475 +karman_re400,sr,399,159.6,omega,lower,0.027193311989145843 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_manifest.json new file mode 100644 index 0000000..13ed6da --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re400", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_wide.csv new file mode 100644 index 0000000..f3ca502 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re400,sr,0,0.0,0.9955728054046631,0.00948510691523552,0.9374436140060425,-0.039215099066495895,1.2809689044952393,0.06611453741788864,0.0006674169562757015,-0.006253535859286785,0.006877486128360033,0.006069883704185486,-0.010126547887921333,-0.003103755647316575,-2.367738584759909,-0.8389755920454803,6.0234417689757525,-0.02367738584759909,-0.008389755920454803,0.06023441768975753 +karman_re400,sr,1,0.4,0.9778692126274109,-0.26124390959739685,1.0004303455352783,-0.32675647735595703,1.2732644081115723,-0.041523028165102005,0.005315686576068401,-0.0048168497160077095,0.0061454991810023785,0.005959687754511833,-0.01126051414757967,-0.0021027035545557737,-3.2425964569901424,-1.4916845558232201,5.370732805198012,-0.032425964569901426,-0.014916845558232202,0.05370732805198012 +karman_re400,sr,2,0.8,1.0055890083312988,-0.32041457295417786,1.0274592638015747,-0.4538823366165161,1.1523327827453613,-0.19381532073020935,0.007009761407971382,-0.0019999737851321697,0.005199515260756016,0.005021265242248774,-0.012555110268294811,0.00022085616365075111,-3.3192521901297884,-0.9091618366364352,5.953255524384797,-0.033192521901297886,-0.009091618366364353,0.05953255524384798 +karman_re400,sr,3,1.2,1.0605295896530151,-0.3427143096923828,1.0386930704116821,-0.46277138590812683,1.0373345613479614,-0.28245410323143005,0.0046391962096095085,0.0020799378398805857,0.003776660654693842,0.004481849726289511,-0.012467934750020504,-0.0006469290237873793,-3.3857310436195687,-0.003433231727393959,6.858984129293838,-0.033857310436195685,-3.433231727393959e-05,0.06858984129293838 +karman_re400,sr,4,1.6,1.123113989830017,-0.3457551896572113,1.0307157039642334,-0.45672908425331116,0.9766289591789246,-0.31456440687179565,0.0014589305501431227,0.004812469705939293,0.0024098330177366734,0.004490808118134737,-0.009547015652060509,-0.004433780908584595,-3.0977747665129987,-0.9235889566954545,5.938828404325777,-0.030977747665129986,-0.009235889566954545,0.05938828404325777 +karman_re400,sr,5,2.0,1.195190668106079,-0.3109767436981201,0.9906117916107178,-0.46565142273902893,0.9401680827140808,-0.31220659613609314,-0.0020968406461179256,0.006045269779860973,0.001039339927956462,0.005414044950157404,-0.003640652634203434,-0.00820476096123457,-2.2801198289963533,-3.3939191075166364,3.4684982535045963,-0.022801198289963534,-0.03393919107516637,0.03468498253504596 +karman_re400,sr,6,2.4,1.2715152502059937,-0.22457042336463928,0.9098406434059143,-0.4080996811389923,0.9172725081443787,-0.28915682435035706,-0.003932177554816008,0.006475095637142658,-0.0011427829740568995,0.0062287915498018265,0.0022746040485799313,-0.008590354584157467,-0.8924545367451936,-5.256032465883264,1.6063848951379684,-0.008924545367451936,-0.05256032465883264,0.016063848951379685 +karman_re400,sr,7,2.8,1.3002619743347168,-0.08999805152416229,0.8825860023498535,-0.08082536607980728,0.9072335958480835,-0.14251098036766052,-0.0027124867774546146,0.006297083105891943,-0.002721550175920129,0.006770354695618153,0.005210023373365402,-0.007752206176519394,0.6516810682192251,-4.975413242581269,1.8870041184399629,0.006516810682192251,-0.0497541324258127,0.018870041184399628 +karman_re400,sr,8,3.2,1.3074711561203003,-0.007086174096912146,0.9456263184547424,0.2458178699016571,0.8992388248443604,0.1856653094291687,0.0010083423694595695,0.004587501287460327,-0.004325035493820906,0.004540414549410343,0.006242954637855291,-0.008202732540667057,1.5125171041556462,-4.073232422424928,2.789184938596305,0.015125171041556463,-0.04073232422424928,0.02789184938596305 +karman_re400,sr,9,3.6,1.218336820602417,0.13748709857463837,0.9961988925933838,0.4290001690387726,0.9394996166229248,0.31822603940963745,0.003890358144417405,0.000551929697394371,-0.008208218030631542,0.0013513804879039526,0.006112453993409872,-0.007936283946037292,2.0152704543915094,-5.8259650632870486,1.0364522977341837,0.020152704543915094,-0.05825965063287049,0.010364522977341837 +karman_re400,sr,10,4.0,1.085651159286499,0.26896557211875916,1.0213916301727295,0.47082793712615967,1.005629062652588,0.3349568843841553,0.0029938772786408663,-0.0024033028166741133,-0.01169696357101202,0.002448185347020626,0.004654791671782732,-0.00624974025413394,2.730890818167731,-7.737017084908686,-0.8745997238874543,0.02730890818167731,-0.07737017084908686,-0.008745997238874544 +karman_re400,sr,11,4.4,1.0118335485458374,0.32131701707839966,1.0259395837783813,0.46430206298828125,1.0717829465866089,0.35112759470939636,0.0001479566126363352,-0.004968202672898769,-0.009549910202622414,0.007417270913720131,0.0031401794403791428,-0.005885797552764416,3.118209688659029,-5.917010814574002,0.9454065464472294,0.031182096886590294,-0.05917010814574002,0.009454065464472295 +karman_re400,sr,12,4.8,0.9744371771812439,0.3286628723144531,1.0077812671661377,0.45452916622161865,1.1404762268066406,0.3348342478275299,-0.0027148716617375612,-0.005573483649641275,-0.0034286121372133493,0.0108870267868042,0.0012570807011798024,-0.006392063107341528,2.4199457420447485,-2.429792196481527,4.432625164539705,0.024199457420447486,-0.02429792196481527,0.04432625164539705 +karman_re400,sr,13,5.2,0.9551446437835693,0.3145779073238373,0.9448643326759338,0.45153576135635376,1.222641110420227,0.29362753033638,-0.00416145334020257,-0.006227787118405104,0.002586778486147523,0.009700690396130085,-0.0015885899774730206,-0.007644525729119778,0.8935415550080437,-0.49199286488786736,6.370424496133365,0.008935415550080436,-0.0049199286488786735,0.06370424496133366 +karman_re400,sr,14,5.6,0.9522904753684998,0.19198253750801086,0.8682610392570496,0.2814186215400696,1.290197730064392,0.19560426473617554,-0.003187867347151041,-0.006170513108372688,0.004692049231380224,0.007632989436388016,-0.0022731160279363394,-0.008115418255329132,-0.7962248825073346,-2.086701329669503,4.775716031351729,-0.007962248825073346,-0.02086701329669503,0.047757160313517295 +karman_re400,sr,15,6.0,0.9320983290672302,-0.12448222935199738,0.8522464632987976,-0.08443722873926163,1.3316172361373901,0.08881816267967224,0.0002713029971346259,-0.005365109536796808,0.004870423581451178,0.007978169247508049,-0.002570115029811859,-0.004822697956115007,-1.3282271824783087,-3.746664491871796,3.115752869149436,-0.013282271824783087,-0.03746664491871796,0.031157528691494362 +karman_re400,sr,16,6.4,0.9457942843437195,-0.27879074215888977,0.9038895964622498,-0.3506687879562378,1.337558627128601,-0.0263160839676857,0.0028152463492006063,-0.0021293293684720993,0.004942199680954218,0.007930037565529346,-0.0048239268362522125,-0.00042369571747258306,-1.4188788446246694,-1.3678747390638066,5.494542621957425,-0.014188788446246695,-0.013678747390638067,0.05494542621957425 +karman_re400,sr,17,6.8,1.0014015436172485,-0.302983820438385,0.9381075501441956,-0.48816612362861633,1.1754571199417114,-0.12691982090473175,0.0030777358915656805,0.0014690213138237596,0.00408113282173872,0.006342352833598852,-0.009086727164685726,-4.1634753870312124e-05,-1.8623584975711833,1.477119895776505,8.339537256797737,-0.018623584975711833,0.01477119895776505,0.08339537256797737 +karman_re400,sr,18,7.2,1.0620558261871338,-0.3169717490673065,0.9680669903755188,-0.5276487469673157,0.9803254008293152,-0.2697094976902008,0.0010376193094998598,0.003878106130287051,0.0032998702954500914,0.005100858863443136,-0.008579493500292301,-0.005219148006290197,-2.5110545001991165,0.688773492945367,7.5511908539666,-0.025110545001991166,0.006887734929453671,0.075511908539666 +karman_re400,sr,19,7.6,1.115867257118225,-0.2976315915584564,1.0039207935333252,-0.5748942494392395,0.8967976570129395,-0.3178444802761078,-0.0017008964205160737,0.0051628160290420055,0.0015680764336138964,0.005455481819808483,-0.0028277665842324495,-0.008860780857503414,-2.2653437953892803,-3.508556873792147,3.353860487229085,-0.022653437953892804,-0.03508556873792147,0.03353860487229085 +karman_re400,sr,20,8.0,1.178184986114502,-0.2616720497608185,1.108248233795166,-0.6629903316497803,0.8473407626152039,-0.27977249026298523,-0.0035161792766302824,0.006396629847586155,-0.0017096995143219829,0.006213741842657328,0.0023106078151613474,-0.008864771574735641,-0.8382684356844536,-5.657902710152772,1.20451465086846,-0.008382684356844536,-0.05657902710152772,0.012045146508684601 +karman_re400,sr,21,8.4,1.2391456365585327,-0.1944693773984909,1.1441410779953003,-0.6878389716148376,0.8061835765838623,-0.19191871583461761,-0.0027615707367658615,0.006757641211152077,-0.0030670163687318563,0.007107793819159269,0.005259000230580568,-0.0077222175896167755,0.7666553883691336,-5.164692880129815,1.6977244808914171,0.007666553883691336,-0.05164692880129815,0.01697724480891417 +karman_re400,sr,22,8.8,1.3067317008972168,-0.18794965744018555,1.112083077430725,-0.11811091750860214,0.7900745272636414,-0.06765750050544739,0.0005118271219544113,0.0061407433822751045,-0.003247516695410013,0.005656316410750151,0.006173870526254177,-0.0075458926148712635,1.5877357043582176,-3.8329747886272325,3.0294425723939997,0.015877357043582178,-0.038329747886272324,0.030294425723939998 +karman_re400,sr,23,9.2,1.3327598571777344,-0.17102079093456268,1.0184253454208374,0.4227777123451233,0.8179990649223328,0.06896452605724335,0.0041221934370696545,0.002726525068283081,-0.006203682627528906,0.0016499216435477138,0.006093610543757677,-0.007580611854791641,1.79661819046287,-4.666785352543055,2.195632008478177,0.0179661819046287,-0.046667853525430555,0.02195632008478177 +karman_re400,sr,24,9.6,1.1868137121200562,0.2116885632276535,0.9745934009552002,0.5284371376037598,0.8752864599227905,0.1985391229391098,0.004054442048072815,-0.00012939999578520656,-0.010874968953430653,0.0008179008727893233,0.005029904656112194,-0.00605973182246089,2.3450411372738067,-7.309233000504888,-0.4468156394836549,0.023450411372738067,-0.07309233000504888,-0.004468156394836549 +karman_re400,sr,25,10.0,1.142014503479004,0.37528079748153687,0.9797554016113281,0.5676324963569641,0.9596478343009949,0.275307297706604,0.0017154552042484283,-0.0035407934337854385,-0.010356975719332695,0.0054787807166576385,0.0031877404544502497,-0.005571356974542141,3.032991275234948,-6.85879420261148,0.0036231584097521368,0.030329912752349482,-0.0685879420261148,3.6231584097521366e-05 +karman_re400,sr,26,10.4,1.0702204704284668,0.3728889226913452,0.9929624795913696,0.5812978148460388,1.0471609830856323,0.29332301020622253,-0.000915347773116082,-0.004989331122487783,-0.005083167925477028,0.00790820736438036,0.0017985925078392029,-0.005554852541536093,2.582919361017051,-3.491743452475187,3.3706739085460455,0.025829193610170508,-0.03491743452475187,0.03370673908546046 +karman_re400,sr,27,10.8,1.000569462776184,0.30888015031814575,0.9958608150482178,0.5978662967681885,1.1332722902297974,0.2603423595428467,-0.0033487447071820498,-0.006174532230943441,-0.0005073121865279973,0.00918158795684576,-0.000668681284878403,-0.006398563273251057,1.3123222393909446,-1.8923713931973618,4.970045967823871,0.013123222393909447,-0.018923713931973618,0.04970045967823871 +karman_re400,sr,28,11.2,0.9396827816963196,0.21154116094112396,0.9340428709983826,0.6008938550949097,1.2197675704956055,0.193264901638031,-0.003599282819777727,-0.006194236688315868,0.003522975370287895,0.008569568395614624,-0.002425561659038067,-0.007213203236460686,-0.030772395896038716,-1.6114141841359806,5.251003176885251,-0.00030772395896038715,-0.016114141841359807,0.052510031768852515 +karman_re400,sr,29,11.6,0.8948761820793152,0.06387749314308167,0.8496166467666626,0.18610259890556335,1.2967361211776733,0.08116299659013748,-0.0009606907260604203,-0.0058628227561712265,0.005225669592618942,0.008117429912090302,-0.003233495634049177,-0.005986149422824383,-1.1343605333356834,-2.5442938549782577,4.318123506042975,-0.011343605333356835,-0.02544293854978258,0.04318123506042975 +karman_re400,sr,30,12.0,0.8687711954116821,-0.13416776061058044,0.9200368523597717,-0.3185630440711975,1.348423957824707,-0.057930007576942444,0.002774219261482358,-0.003471560776233673,0.005655938293784857,0.007787647657096386,-0.005535544827580452,-0.002508898265659809,-1.6131265773065588,-2.0375837775553576,4.824833583465875,-0.01613126577306559,-0.020375837775553577,0.04824833583465875 +karman_re400,sr,31,12.4,0.9123504757881165,-0.2557949125766754,0.9612107276916504,-0.5120704174041748,1.321549415588379,-0.11812449246644974,0.004125458654016256,0.00023646645422559232,0.0045672268606722355,0.006768528372049332,-0.009400072507560253,-0.0008640353917144239,-2.1341678970447227,0.02051747445445784,6.88293483547569,-0.021341678970447225,0.0002051747445445784,0.0688293483547569 +karman_re400,sr,32,12.8,0.993415892124176,-0.3174852430820465,0.9706023931503296,-0.5682578086853027,1.207277536392212,-0.10496562719345093,0.001793215167708695,0.002720628399401903,0.003804033389315009,0.00566866435110569,-0.009934744797647,-0.004873729310929775,-2.6635041662340737,0.42968550876310685,7.2921028697843395,-0.026635041662340736,0.004296855087631069,0.07292102869784339 +karman_re400,sr,33,13.2,1.0770204067230225,-0.33350369334220886,0.9554505944252014,-0.5602579116821289,1.057684063911438,-0.12849265336990356,-0.0006655025645159185,0.004874890670180321,0.002316233469173312,0.005710232071578503,-0.00433403579518199,-0.008017048239707947,-2.6199261557440128,-2.911407896990813,3.9510094640304194,-0.026199261557440127,-0.029114078969908128,0.039510094640304194 +karman_re400,sr,34,13.6,1.1507412195205688,-0.2933253049850464,0.9051642417907715,-0.5907814502716064,0.9094421863555908,-0.169204443693161,-0.0028616043273359537,0.005907251965254545,-0.00043665722478181124,0.006416612770408392,-0.00011056366201955825,-0.0085436487570405,-1.2681778649690585,-4.939614765320369,1.9228025957008634,-0.012681778649690586,-0.04939614765320369,0.019228025957008635 +karman_re400,sr,35,14.0,1.1893655061721802,-0.24756722152233124,0.8082109689712524,-0.6158950924873352,0.8441320657730103,-0.17009460926055908,-0.0036256220191717148,0.0060801757499575615,-0.0026148753240704536,0.0070546288043260574,0.0035726604983210564,-0.008691464550793171,0.06218464572863847,-4.822058141847126,2.0403592191741065,0.0006218464572863848,-0.04822058141847126,0.020403592191741066 +karman_re400,sr,36,14.4,1.273492455482483,-0.18199145793914795,0.6202439069747925,-0.34362396597862244,0.830832302570343,-0.09629128128290176,-0.0012614740990102291,0.0059291161596775055,-0.003613146487623453,0.0063274274580180645,0.005944908130913973,-0.008340112864971161,1.1799365795184438,-4.501520668919812,2.36089669210142,0.011799365795184438,-0.045015206689198124,0.0236089669210142 +karman_re400,sr,37,14.8,1.3478479385375977,-0.06433561444282532,0.6788623332977295,0.28122588992118835,0.8462122082710266,0.007092906627804041,0.002893791999667883,0.004189176484942436,-0.006323104724287987,0.0033785284031182528,0.00641993572935462,-0.00773728359490633,1.8226800776869774,-4.7472853391537875,2.1151320218674443,0.018226800776869775,-0.047472853391537874,0.021151320218674444 +karman_re400,sr,38,15.2,1.2851108312606812,-0.030176980420947075,0.8104856610298157,0.49225395917892456,0.8812129497528076,0.11806169152259827,0.004636556375771761,0.001311693456955254,-0.010117776691913605,0.0014947524759918451,0.005557221360504627,-0.006645864807069302,2.430043234840577,-6.281359006455575,0.5810583545656574,0.024300432348405773,-0.06281359006455575,0.005810583545656574 +karman_re400,sr,39,15.6,1.101315975189209,0.1645176112651825,0.881350040435791,0.5324960947036743,0.9377596378326416,0.2095525711774826,0.002895894693210721,-0.0017400042852386832,-0.010684162378311157,0.004180112853646278,0.0042744530364871025,-0.005841064266860485,2.9891549910704263,-6.799474124061895,0.06294323695933679,0.029891549910704262,-0.06799474124061895,0.0006294323695933679 +karman_re400,sr,40,16.0,1.0241756439208984,0.33034491539001465,0.9218000769615173,0.5384423732757568,1.005672812461853,0.2620036005973816,0.0006323453853838146,-0.004093671217560768,-0.00587438652291894,0.006187917664647102,0.0027437133248895407,-0.005551626905798912,2.8525438904121025,-4.5172896837911,2.3451276772301326,0.028525438904121025,-0.045172896837911,0.023451276772301327 +karman_re400,sr,41,16.4,0.9920803904533386,0.34912726283073425,0.9398958086967468,0.5462180972099304,1.0750118494033813,0.2585331201553345,-0.0021413888316601515,-0.005533277522772551,-0.0017793192528188229,0.00699171656742692,0.0005907701561227441,-0.006065764464437962,1.6434347288257427,-3.015143947821883,3.8472734131993493,0.016434347288257427,-0.03015143947821883,0.038472734131993494 +karman_re400,sr,42,16.8,0.9573686122894287,0.28423169255256653,0.9437819719314575,0.5781526565551758,1.1501972675323486,0.23003333806991577,-0.003862502984702587,-0.006084887310862541,0.0024073536042124033,0.007808869704604149,-0.001643879571929574,-0.006856823340058327,0.45196589896404377,-2.8257370327531355,4.036680328268097,0.0045196589896404375,-0.028257370327531357,0.04036680328268097 +karman_re400,sr,43,17.2,0.9254847764968872,0.18090929090976715,0.8775333166122437,0.5255591869354248,1.2259540557861328,0.16009686887264252,-0.002415194408968091,-0.005981951951980591,0.005619049537926912,0.007516980171203613,-0.0029587727040052414,-0.006560033652931452,-0.7725528148685591,-2.808674232754249,4.053743128266984,-0.007725528148685591,-0.02808674232754249,0.04053743128266984 +karman_re400,sr,44,17.6,0.9037003517150879,0.03442389518022537,0.8235018253326416,0.0173202957957983,1.2887873649597168,0.06096291542053223,0.0013197403168305755,-0.005143516231328249,0.006991247646510601,0.007078398950397968,-0.005187361966818571,-0.0042994143441319466,-1.6357539618979906,-2.8054700668569263,4.056947294164306,-0.016357539618979906,-0.028054700668569264,0.040569472941643064 +karman_re400,sr,45,18.0,0.8930950164794922,-0.14256873726844788,0.8706899881362915,-0.3809139132499695,1.3074873685836792,0.045014843344688416,0.004367432091385126,-0.002432068344205618,0.006764112506061792,0.006427375134080648,-0.008622007444500923,-0.0012308823643252254,-2.3224086911044335,-1.6140559539093509,5.248361407111881,-0.023224086911044335,-0.016140559539093508,0.05248361407111881 +karman_re400,sr,46,18.4,0.9397472143173218,-0.24023881554603577,0.9115163683891296,-0.5226449370384216,1.1647049188613892,-0.04133429378271103,0.0037798122502863407,0.0009191837161779404,0.0051852259784936905,0.005628660321235657,-0.011394969187676907,-0.0008313690195791423,-2.9340671743393005,-0.033269381374785745,6.8291479796464465,-0.029340671743393006,-0.00033269381374785746,0.06829147979646447 +karman_re400,sr,47,18.8,1.0092331171035767,-0.2913018763065338,0.9438561201095581,-0.5686001777648926,0.9849472641944885,-0.2779761850833893,0.0015881656436249614,0.004171554930508137,0.003317345632240176,0.005303393583744764,-0.010066700167953968,-0.0036454724613577127,-3.1617722036166183,-0.2943035859484686,6.568113775072764,-0.03161772203616618,-0.002943035859484686,0.06568113775072763 +karman_re400,sr,48,19.2,1.0825800895690918,-0.29322123527526855,0.9714755415916443,-0.5660770535469055,0.9475538730621338,-0.35533276200294495,-0.0016669539036229253,0.005743261426687241,0.00206604297272861,0.005632644519209862,-0.005820193327963352,-0.006848463788628578,-2.5522802089403447,-2.3471091568059976,4.515308204215234,-0.025522802089403447,-0.023471091568059977,0.04515308204215234 +karman_re400,sr,49,19.6,1.165461540222168,-0.2627812325954437,0.9822218418121338,-0.5561577081680298,0.9092931151390076,-0.3026356101036072,-0.003963283728808165,0.006667456589639187,3.443676177994348e-05,0.006678922101855278,-0.0007234865333884954,-0.00878625176846981,-1.503871485032653,-4.226221828657248,2.636195532363984,-0.015038714850326531,-0.042262218286572485,0.02636195532363984 +karman_re400,sr,50,20.0,1.245704174041748,-0.1875479370355606,0.9360133409500122,-0.6725283265113831,0.8622262477874756,-0.20686598122119904,-0.003912868909537792,0.006571399979293346,-0.0019089290872216225,0.007268216460943222,0.0031767331529408693,-0.008418980985879898,-0.1445327261301809,-4.809172358647581,2.053245002373651,-0.001445327261301809,-0.048091723586475815,0.02053245002373651 +karman_re400,sr,51,20.4,1.3029710054397583,-0.07946948707103729,0.949962317943573,-0.2649296820163727,0.834892988204956,-0.07661893218755722,-0.0007407426019199193,0.00597441615536809,-0.003519379999488592,0.006156855262815952,0.0053931172005832195,-0.008000479079782963,0.9698140068180028,-4.183683123675817,2.678734237345415,0.009698140068180029,-0.041836831236758174,0.026787342373454148 +karman_re400,sr,52,20.8,1.3304904699325562,0.0018214252777397633,0.9807327389717102,0.39594054222106934,0.8396092057228088,0.07828059792518616,0.002713806927204132,0.0028501609340310097,-0.006151553243398666,0.0035480300430208445,0.005972332786768675,-0.007616949267685413,1.6995750429701577,-4.636737505058534,2.2256798559626985,0.016995750429701577,-0.04636737505058534,0.022256798559626985 +karman_re400,sr,53,21.2,1.2148966789245605,0.037776824086904526,0.9780939221382141,0.5744946599006653,0.8796918988227844,0.2088596373796463,0.003399623092263937,-0.000827655429020524,-0.009380867704749107,0.003056218847632408,0.005004413891583681,-0.006885673385113478,2.3119731381818474,-6.091837907008657,0.7705794540125757,0.023119731381818474,-0.06091837907008657,0.007705794540125757 +karman_re400,sr,54,21.6,1.0160222053527832,0.2090635448694229,0.9881672859191895,0.587489902973175,0.953320324420929,0.2782963514328003,0.0008564476738683879,-0.00339523795992136,-0.008540342561900616,0.006076469551771879,0.0036578369326889515,-0.006341207772493362,2.743211586874678,-5.935254128797343,0.9271632322238897,0.02743211586874678,-0.05935254128797343,0.009271632322238897 +karman_re400,sr,55,22.0,0.9590202569961548,0.3453875780105591,1.003542423248291,0.5681278109550476,1.026098370552063,0.3028995394706726,-0.0015145305078476667,-0.0051741390489041805,-0.003822422120720148,0.007601276505738497,0.0019103556405752897,-0.006417630240321159,2.3261405836411053,-3.604318592143412,3.2580987688778205,0.023261405836411054,-0.03604318592143412,0.03258098768877821 +karman_re400,sr,56,22.4,0.936247706413269,0.3369947075843811,1.0229506492614746,0.5545827746391296,1.091141700744629,0.28257429599761963,-0.003541214857250452,-0.0060403901152312756,-0.0005609563086181879,0.007722832728177309,-0.00015819210966583341,-0.00702767726033926,1.0932161650399792,-2.6572331666899305,4.205184194331301,0.010932161650399792,-0.026572331666899304,0.04205184194331301 +karman_re400,sr,57,22.8,0.8936936855316162,0.26855072379112244,1.0330430269241333,0.5260231494903564,1.1453825235366821,0.2468845248222351,-0.0037385306786745787,-0.006052620243281126,0.0021504221949726343,0.008074985817074776,-0.0017253312980756164,-0.007256972137838602,0.07680540766237474,-2.9766528506778664,3.885764510343366,0.0007680540766237475,-0.029766528506778665,0.03885764510343366 +karman_re400,sr,58,23.2,0.8528093695640564,0.15896746516227722,1.0773688554763794,0.5265841484069824,1.1840522289276123,0.21103711426258087,-0.0013713815715163946,-0.005602068733423948,0.004467091988772154,0.00819741003215313,-0.003258666954934597,-0.005574902985244989,-0.739089590898962,-2.896316985080025,3.9661003759412066,-0.00739089590898962,-0.028963169850800254,0.03966100375941207 +karman_re400,sr,59,23.6,0.8428383469581604,0.009713021107017994,1.0959200859069824,0.028179042041301727,1.2180362939834595,0.25864672660827637,0.001974238082766533,-0.0035966176073998213,0.005681948270648718,0.007663347292691469,-0.005973971448838711,-0.0028915354050695896,-1.473269140395543,-1.716375204976072,5.14604215604516,-0.014732691403955429,-0.01716375204976072,0.05146042156045161 +karman_re400,sr,60,24.0,0.8628952503204346,-0.15456992387771606,1.0138540267944336,-0.4047430455684662,1.13312828540802,0.13527801632881165,0.003570007625967264,-0.0003296057984698564,0.004830562975257635,0.0065295821987092495,-0.008995475247502327,-0.001851597335189581,-2.222733967079949,-0.31096434275181384,6.5514530182694175,-0.022227339670799488,-0.0031096434275181386,0.06551453018269418 +karman_re400,sr,61,24.4,0.928335964679718,-0.24721486866474152,0.9793197512626648,-0.5439273715019226,1.0625276565551758,-0.33240729570388794,0.002023344859480858,0.0025884900242090225,0.0034670617897063494,0.0056609963066875935,-0.008908282965421677,-0.003799441969022155,-2.6365662708275486,-0.3723169793557659,6.490100381665465,-0.026365662708275485,-0.003723169793557659,0.06490100381665466 +karman_re400,sr,62,24.8,1.0062333345413208,-0.28149276971817017,1.0003780126571655,-0.5827710628509521,1.040809988975525,-0.44626349210739136,-0.0004892223514616489,0.004650754854083061,0.0020274287089705467,0.005421942565590143,-0.0051077003590762615,-0.006232255604118109,-2.359925240009922,-2.2139552517662366,4.648462109254996,-0.023599252400099222,-0.022139552517662368,0.04648462109254996 +karman_re400,sr,63,25.2,1.0753586292266846,-0.2627071142196655,1.0661647319793701,-0.5863043069839478,0.988696277141571,-0.40815600752830505,-0.0028697638772428036,0.0058662863448262215,-7.604756683576852e-05,0.00602008355781436,-0.0006515274872072041,-0.007772338576614857,-1.3606385528318108,-3.961064997109692,2.9013523639115397,-0.013606385528318108,-0.03961064997109692,0.0290135236391154 +karman_re400,sr,64,25.6,1.13629949092865,-0.22343987226486206,1.199800729751587,-0.6352719664573669,0.929267168045044,-0.32327044010162354,-0.003665150608867407,0.00628264807164669,-0.002239303896203637,0.0067085642367601395,0.0032836475875228643,-0.00797897856682539,-0.10974155597893089,-4.576992280007558,2.285425081013674,-0.001097415559789309,-0.04576992280007558,0.022854250810136742 +karman_re400,sr,65,26.0,1.1742247343063354,-0.17699547111988068,1.264928936958313,-0.46345001459121704,0.8772149682044983,-0.19777734577655792,-0.0013507589465007186,0.00628901831805706,-0.003647581674158573,0.00610588351264596,0.005916042719036341,-0.00757008558139205,1.0532031926137304,-4.261921041632059,2.6004963193891735,0.010532031926137305,-0.04261921041632059,0.026004963193891735 +karman_re400,sr,66,26.4,1.1976758241653442,-0.22189655900001526,1.1804721355438232,0.037307947874069214,0.8633711934089661,-0.024056151509284973,0.002611570991575718,0.004579607397317886,-0.005970177706331015,0.0033642491325736046,0.00679928669705987,-0.007152091711759567,1.8237422098582794,-4.3886370791846865,2.4737802818365453,0.018237422098582794,-0.04388637079184687,0.024737802818365455 +karman_re400,sr,67,26.8,1.1617286205291748,-0.09500762820243835,1.0738632678985596,0.32637694478034973,0.880333662033081,0.17343713343143463,0.004744078032672405,0.0012649038108065724,-0.009640945121645927,0.0008239356684498489,0.006010700017213821,-0.006333725992590189,2.435082168881253,-5.908044448216646,0.9543729128045865,0.02435082168881253,-0.05908044448216646,0.009543729128045865 +karman_re400,sr,68,27.2,1.1427544355392456,0.37174364924430847,1.039648175239563,0.4602687954902649,0.9486939907073975,0.2683468461036682,0.0030928284395486116,-0.002009727992117405,-0.011602404527366161,0.0023111170157790184,0.004373511765152216,-0.0056833247654139996,2.9847016904776003,-7.034010397345481,-0.17159303632424994,0.029847016904776005,-0.07034010397345482,-0.0017159303632424995 +karman_re400,sr,69,27.6,1.1213507652282715,0.387058287858963,1.0415208339691162,0.4843897223472595,1.0291848182678223,0.29615113139152527,0.0005206970381550491,-0.0046700784005224705,-0.008405427448451519,0.005723371636122465,0.0029137444216758013,-0.005521499551832676,3.0465388105957314,-5.636264618243482,1.2261527427777499,0.030465388105957315,-0.05636264618243482,0.012261527427777499 +karman_re400,sr,70,28.0,1.0801831483840942,0.3170616924762726,1.0448108911514282,0.47990331053733826,1.096490502357483,0.2725123167037964,-0.0025021377950906754,-0.005796617828309536,-0.003667019307613373,0.008245519362390041,0.0012557696318253875,-0.006086362525820732,2.1585175945304345,-3.299206362986172,3.5632109980350606,0.021585175945304343,-0.03299206362986172,0.03563210998035061 +karman_re400,sr,71,28.4,1.0342942476272583,0.22142444550991058,1.0391863584518433,0.4779397249221802,1.1508817672729492,0.22318801283836365,-0.004204098135232925,-0.0064042373560369015,0.0012853981461375952,0.00890023447573185,-0.0009882511803880334,-0.007141545880585909,0.9387547659720145,-2.0193556879157737,4.843061673105458,0.009387547659720144,-0.020193556879157738,0.04843061673105458 +karman_re400,sr,72,28.8,0.9673181772232056,0.06581919640302658,1.0397063493728638,0.2920535206794739,1.1912990808486938,0.16037946939468384,-0.0030644782818853855,-0.00624063378199935,0.004298046231269836,0.007960308343172073,-0.0025573596358299255,-0.007211779244244099,-0.43357518830948183,-2.2812182240301704,4.581199136991062,-0.004335751883094818,-0.022812182240301706,0.04581199136991062 +karman_re400,sr,73,29.2,0.9093307256698608,-0.11924325674772263,0.9888252019882202,-0.05240599811077118,1.2133705615997314,0.09063300490379333,0.0004359841695986688,-0.005185204092413187,0.005670393817126751,0.007780370302498341,-0.004099582321941853,-0.005120700690895319,-1.3072965364926084,-2.9417523193669046,3.9206650416543276,-0.013072965364926083,-0.029417523193669047,0.039206650416543275 +karman_re400,sr,74,29.6,0.9348548054695129,-0.20975516736507416,0.9538541436195374,-0.306732177734375,1.2195907831192017,0.11046423763036728,0.0033870101906359196,-0.0016255384543910623,0.005551820620894432,0.007484035100787878,-0.007227699737995863,-0.0022920069750398397,-1.8630926039719984,-1.6920749423511787,5.170342418670053,-0.018630926039719983,-0.016920749423511787,0.051703424186700535 +karman_re400,sr,75,30.0,0.9905329346656799,-0.26416802406311035,0.9424418807029724,-0.43310174345970154,1.1116963624954224,0.1063418835401535,0.00308465538546443,0.0012198047479614615,0.0045117586851119995,0.006341615226119757,-0.010133245028555393,-0.0028857067227363586,-2.436999796524365,-0.03618877143294963,6.8262285895882835,-0.02436999796524365,-0.0003618877143294963,0.06826228589588283 +karman_re400,sr,76,30.4,1.048151969909668,-0.3005542457103729,0.9487510919570923,-0.4635539650917053,0.9295687079429626,-0.25875961780548096,0.0004999144002795219,0.003989811986684799,0.0029886309057474136,0.005872415378689766,-0.00765419565141201,-0.006382347550243139,-2.7927394822355542,-1.17142158214103,5.690995778880202,-0.027927394822355543,-0.011714215821410301,0.05690995778880202 +karman_re400,sr,77,30.8,1.1016089916229248,-0.29329270124435425,0.9570072889328003,-0.48354294896125793,0.9327855706214905,-0.3591333031654358,-0.00184615736361593,0.00533676752820611,0.0011551319621503353,0.005953135900199413,-0.002846754854544997,-0.0075787450186908245,-2.0295414401995457,-3.764648683679606,3.097768677341626,-0.02029541440199546,-0.03764648683679606,0.030977686773416262 +karman_re400,sr,78,31.2,1.1559643745422363,-0.2688870131969452,0.9834129810333252,-0.5160893201828003,0.9148944616317749,-0.2923069894313812,-0.0037849564105272293,0.006191872525960207,-0.0010892205173149705,0.006798849906772375,0.0007938050548546016,-0.008119300939142704,-0.7631426754772921,-4.494179679124263,2.368237681896969,-0.007631426754772921,-0.04494179679124263,0.02368237681896969 +karman_re400,sr,79,31.6,1.2030506134033203,-0.22654028236865997,1.0113110542297363,-0.5989710688591003,0.8845365643501282,-0.2009802609682083,-0.003047055331990123,0.006140108220279217,-0.002652260009199381,0.006866044830530882,0.0039054888766258955,-0.008092636242508888,0.3590849114329281,-4.294639585599087,2.5677777754221456,0.003590849114329281,-0.04294639585599087,0.025677777754221455 +karman_re400,sr,80,32.0,1.2264901399612427,-0.20060768723487854,0.9628927707672119,-0.2970545291900635,0.8686133027076721,-0.09114264696836472,0.0001626592711545527,0.005463798064738512,-0.004310601856559515,0.004898178856819868,0.005750682204961777,-0.007844831794500351,1.250534625057071,-4.233265634577877,2.629151726443356,0.01250534625057071,-0.04233265634577877,0.02629151726443356 +karman_re400,sr,81,32.4,1.2103188037872314,-0.2317712903022766,0.9018067717552185,0.25676047801971436,0.8697115182876587,0.04162632301449776,0.0034963199868798256,0.002710911678150296,-0.007434835657477379,0.0020330094266682863,0.005982725415378809,-0.007290806621313095,1.9186437770838494,-5.357998202115167,1.5044191589060658,0.019186437770838494,-0.05357998202115167,0.015044191589060658 +karman_re400,sr,82,32.8,1.0798861980438232,0.07348243147134781,0.8907739520072937,0.4669114649295807,0.8968313336372375,0.16488897800445557,0.0038468569982796907,-0.00044999271631240845,-0.01053922064602375,0.0017422463279217482,0.00475063594058156,-0.006228975486010313,2.558671427887857,-6.869234384799352,-0.006817023778120657,0.02558671427887857,-0.06869234384799353,-6.817023778120657e-05 +karman_re400,sr,83,33.2,1.0714938640594482,0.3864513039588928,0.9231545925140381,0.53128981590271,0.9601500034332275,0.2339937835931778,0.0015210374258458614,-0.0033804625272750854,-0.009131980128586292,0.005018943455070257,0.0033665040973573923,-0.005600712727755308,2.9157101631378786,-6.365040017596321,0.49737734342491086,0.029157101631378787,-0.06365040017596321,0.004973773434249109 +karman_re400,sr,84,33.6,1.04465913772583,0.4489677846431732,0.9672129154205322,0.5585652589797974,1.028529405593872,0.25511446595191956,-0.0011545136803761125,-0.005068495403975248,-0.004165841266512871,0.0072959051467478275,0.0018213476287201047,-0.005686709191650152,2.38340740967626,-3.8116223099092084,3.050795051112024,0.0238340740967626,-0.038116223099092086,0.03050795051112024 +karman_re400,sr,85,34.0,0.9979327321052551,0.39047321677207947,1.0283312797546387,0.571765661239624,1.0933828353881836,0.22972792387008667,-0.003416964318603277,-0.006173728033900261,0.0002808262361213565,0.008265618234872818,-0.0005236266297288239,-0.006521541625261307,1.1417312786144882,-2.378970099970041,4.483447261051191,0.011417312786144882,-0.02378970099970041,0.04483447261051191 +karman_re400,sr,86,34.4,0.9450385570526123,0.28939467668533325,1.1177715063095093,0.6296303272247314,1.1523158550262451,0.18111543357372284,-0.003520917845889926,-0.006248174235224724,0.0038448325358331203,0.008151215501129627,-0.002470094244927168,-0.007057569455355406,-0.15340571596855823,-2.2907728683038653,4.5716444927173665,-0.0015340571596855824,-0.022907728683038652,0.045716444927173666 +karman_re400,sr,87,34.8,0.901577353477478,0.1479983925819397,1.1667215824127197,0.33322691917419434,1.185073733329773,0.10925879329442978,-0.0006898078136146069,-0.005882516503334045,0.0059595475904643536,0.007967841811478138,-0.0038141747936606407,-0.005791593808680773,-1.2042294896516308,-2.7160834907077187,4.146333870313513,-0.012042294896516308,-0.027160834907077186,0.04146333870313513 +karman_re400,sr,88,35.2,0.878400981426239,-0.04920332133769989,1.0962936878204346,-0.1660192459821701,1.2115312814712524,0.11800789088010788,0.0031902792397886515,-0.0034765161108225584,0.0064672259613871574,0.007531078066676855,-0.006691885646432638,-0.002774945693090558,-1.8638069968587239,-2.0081799299637217,4.854237431057511,-0.01863806996858724,-0.02008179929963722,0.048542374310575113 +karman_re400,sr,89,35.6,0.8998426795005798,-0.21297666430473328,1.0262465476989746,-0.39795443415641785,1.2033288478851318,0.16900943219661713,0.004308877978473902,-0.0003580143675208092,0.005453570280224085,0.00643147574737668,-0.010372723452746868,-0.0014458105433732271,-2.5093862218693572,-0.32121703419072967,6.541200326830503,-0.02509386221869357,-0.0032121703419072966,0.06541200326830503 +karman_re400,sr,90,36.0,0.9741297960281372,-0.2798241376876831,1.0050851106643677,-0.4968985319137573,1.0431936979293823,-0.25247520208358765,0.0022121905349195004,0.0027996383141726255,0.003888272913172841,0.0057759047485888,-0.010323665104806423,-0.004353861324489117,-3.0180064293378646,-0.17112760667228333,6.691289754348949,-0.030180064293378647,-0.0017112760667228333,0.06691289754348949 +karman_re400,sr,91,36.4,1.0494155883789062,-0.2992159426212311,1.004081130027771,-0.5029723048210144,1.0246165990829468,-0.35509490966796875,-0.00040094726136885583,0.004827853292226791,0.0024114332627505064,0.005686504766345024,-0.005735699087381363,-0.0067413258366286755,-2.710155708929895,-2.5013474356438365,4.361069925377396,-0.027101557089298952,-0.025013474356438366,0.043610699253773956 +karman_re400,sr,92,36.8,1.1160287857055664,-0.27159878611564636,1.0014251470565796,-0.5186298489570618,0.9905750155448914,-0.2989296615123749,-0.00302782841026783,0.006004394963383675,0.00023559125838801265,0.006415931507945061,-0.0014671589015051723,-0.008181990124285221,-1.5536232442179465,-4.12094657240843,2.7414707886128022,-0.015536232442179465,-0.0412094657240843,0.02741470788612802 +karman_re400,sr,93,37.2,1.1758782863616943,-0.22341592609882355,1.0029139518737793,-0.5308053493499756,0.9483786821365356,-0.21898801624774933,-0.0039925179444253445,0.006212344393134117,-0.0018821615958586335,0.007169727701693773,0.0026903569232672453,-0.008509579114615917,-0.3247071624487674,-4.586018326733239,2.276399034287993,-0.003247071624487674,-0.04586018326733239,0.02276399034287993 +karman_re400,sr,94,37.6,1.218612551689148,-0.14635524153709412,0.9511767029762268,-0.32309722900390625,0.9157763719558716,-0.10984444618225098,-0.0018419185653328896,0.0060279350727796555,-0.0033200609032064676,0.006440004333853722,0.005380835384130478,-0.00803777202963829,0.8719596970602798,-4.3073253177680755,2.5550920432531568,0.008719596970602797,-0.04307325317768076,0.025550920432531567 +karman_re400,sr,95,38.0,1.2273191213607788,-0.09002719819545746,0.9305962920188904,0.12759341299533844,0.8889574408531189,0.05331861972808838,0.0020194645039737225,0.004322556778788567,-0.005629993509501219,0.0038386874366551638,0.006338643375784159,-0.007622514385730028,1.6592236552186994,-4.475974426360314,2.386442934660918,0.016592236552186994,-0.04475974426360314,0.023864429346609182 +karman_re400,sr,96,38.4,1.205702543258667,-0.14904598891735077,0.9230338931083679,0.37676048278808594,0.9033117890357971,0.19079351425170898,0.004315602593123913,0.00098590855486691,-0.009193477220833302,0.0016270033083856106,0.005588357336819172,-0.006842856295406818,2.2823677911998903,-5.90541866425622,0.9569986967650124,0.022823677911998904,-0.0590541866425622,0.009569986967650124 +karman_re400,sr,97,38.8,1.016597032546997,0.026911182329058647,0.9330402612686157,0.49495789408683777,0.9669126868247986,0.2567492127418518,0.0026439521461725235,-0.0019595613703131676,-0.010619372129440308,0.003461908083409071,0.0042504542507231236,-0.0059818243607878685,2.8188325381238313,-6.8418074494084555,0.0206099116127767,0.028188325381238312,-0.06841807449408456,0.000206099116127767 +karman_re400,sr,98,39.2,0.9224798083305359,0.3729027211666107,0.9539039134979248,0.5318895578384399,1.0347931385040283,0.29111775755882263,0.00020853003661613911,-0.004509992431849241,-0.006825719028711319,0.006275869440287352,0.0027281735092401505,-0.005711461417376995,2.835612201799224,-5.078958986115387,1.7834583749058452,0.028356122017992237,-0.05078958986115387,0.017834583749058452 +karman_re400,sr,99,39.6,0.9298175573348999,0.39799976348876953,0.983660876750946,0.5515038967132568,1.0989749431610107,0.2772993743419647,-0.002496520057320595,-0.00566094508394599,-0.0024664546363055706,0.007820716127753258,0.0007711866637691855,-0.006121343467384577,1.8218863867458273,-3.062147414235647,3.800269946785585,0.018218863867458274,-0.030621474142356473,0.03800269946785585 +karman_re400,sr,100,40.0,0.9036608934402466,0.3228977918624878,1.042823314666748,0.5961877703666687,1.1642497777938843,0.24036210775375366,-0.004069935530424118,-0.0062364256009459496,0.0018414551159366965,0.008492921479046345,-0.0014776554889976978,-0.00703700166195631,0.6174043287948717,-2.320004373607381,4.542412987413851,0.0061740432879487175,-0.02320004373607381,0.04542412987413851 +karman_re400,sr,101,40.4,0.8701180815696716,0.21538762748241425,1.0654816627502441,0.6063192486763,1.2177575826644897,0.17021805047988892,-0.00258352211676538,-0.006123021710664034,0.0049370406195521355,0.00796057004481554,-0.0029826252721250057,-0.006815444212406874,-0.6329401762907289,-2.479195970770289,4.383221390250943,-0.006329401762907289,-0.024791959707702888,0.04383221390250944 +karman_re400,sr,102,40.8,0.8571099042892456,0.07371310144662857,1.0560375452041626,0.03998453915119171,1.2370479106903076,0.10380882024765015,0.00105578254442662,-0.005040282383561134,0.00629906402900815,0.007602980360388756,-0.004893295932561159,-0.004565450828522444,-1.5102463648513702,-2.682421327039483,4.179996033981749,-0.015102463648513703,-0.02682421327039483,0.04179996033981749 +karman_re400,sr,103,41.2,0.8634371161460876,-0.10665693879127502,1.0007096529006958,-0.37752532958984375,1.2181477546691895,0.1269873082637787,0.004073570482432842,-0.0018193291034549475,0.005900076124817133,0.006999496836215258,-0.008227771148085594,-0.0017735488945618272,-2.1343351067160348,-1.4449957815556955,5.417421579465537,-0.021343351067160347,-0.014449957815556955,0.05417421579465537 +karman_re400,sr,104,41.6,0.909715473651886,-0.23567384481430054,0.9831646084785461,-0.5087597370147705,1.056898593902588,-0.05795499309897423,0.003324572928249836,0.0011489600874483585,0.004649666603654623,0.006028879899531603,-0.01084166020154953,-0.002229415811598301,-2.694119964012556,-0.014008912710696373,6.848408448310536,-0.026941199640125563,-0.00014008912710696374,0.06848408448310536 +karman_re400,sr,105,42.0,0.9880293011665344,-0.28730207681655884,0.9938642978668213,-0.5589773654937744,0.9877173900604248,-0.3622775375843048,0.0009050252265296876,0.00406238529831171,0.003063507378101349,0.0055960360914468765,-0.008376396261155605,-0.005534124560654163,-2.9541296709083356,-0.946773714068533,5.915643646952699,-0.029541296709083356,-0.00946773714068533,0.059156436469526986 +karman_re400,sr,106,42.4,1.062020182609558,-0.2869359850883484,1.0170973539352417,-0.5597742795944214,0.9888771176338196,-0.3907417058944702,-0.0018447376787662506,0.005455408710986376,0.001421862980350852,0.005852507892996073,-0.0036312525626271963,-0.0074001639150083065,-2.1815406257976653,-3.3907252943362676,3.471692066684965,-0.021815406257976653,-0.03390725294336268,0.03471692066684965 +karman_re400,sr,107,42.8,1.1300643682479858,-0.251487135887146,1.0618252754211426,-0.5668203234672546,0.9579018950462341,-0.32631397247314453,-0.0038865236565470695,0.006348891649395227,-0.0008317579049617052,0.006784267257899046,0.0006451932131312788,-0.008398107253015041,-0.9636074910655669,-4.443206859233591,2.419210501787641,-0.009636074910655669,-0.04443206859233591,0.02419210501787641 +karman_re400,sr,108,43.2,1.189136028289795,-0.1940145641565323,1.1091665029525757,-0.6059550046920776,0.9177229404449463,-0.22384004294872284,-0.003229072317481041,0.006270756945014,-0.0025326437316834927,0.0070322128012776375,0.004040816333144903,-0.008093023672699928,0.28164825229650337,-4.486483956527197,2.375933404494036,0.0028164825229650336,-0.04486483956527197,0.02375933404494036 +karman_re400,sr,109,43.6,1.2233394384384155,-0.12899750471115112,1.1075482368469238,-0.14709796011447906,0.891028881072998,-0.07096532732248306,3.129284959868528e-05,0.005599032621830702,-0.004170551896095276,0.0052764141000807285,0.005887020844966173,-0.007824703119695187,1.2535306796004737,-4.124863248825541,2.737554112195691,0.012535306796004737,-0.04124863248825541,0.02737554112195691 +karman_re400,sr,110,44.0,1.228822112083435,-0.14359934628009796,1.032157063484192,0.30367064476013184,0.879035234451294,0.12533985078334808,0.003442794317379594,0.0025904092472046614,-0.007252499461174011,0.0023793773725628853,0.0061090243980288506,-0.007401157170534134,1.9179360441681,-5.097511663880653,1.7649056971405799,0.019179360441681,-0.05097511663880653,0.0176490569714058 +karman_re400,sr,111,44.4,1.0932823419570923,0.03570422902703285,0.99805748462677,0.4714822471141815,0.9231536984443665,0.24108821153640747,0.0037743630819022655,-0.0005296996096149087,-0.010471918620169163,0.0020262873731553555,0.004966892767697573,-0.006336156278848648,2.547985371256949,-6.714904758458977,0.1475126025622555,0.02547985371256949,-0.06714904758458977,0.001475126025622555 +karman_re400,sr,112,44.8,1.0231542587280273,0.33645710349082947,1.0006823539733887,0.5250301957130432,0.9982861876487732,0.2914552390575409,0.001355771441012621,-0.0035439645871520042,-0.00912373885512352,0.005255622323602438,0.0034700294490903616,-0.005838997196406126,2.9441152057506783,-6.249392709171939,0.613024651849293,0.029441152057506782,-0.062493927091719394,0.00613024651849293 +karman_re400,sr,113,45.2,1.0112844705581665,0.3564721941947937,1.0152286291122437,0.5262995362281799,1.0691132545471191,0.29675614833831787,-0.00127821892965585,-0.005144060123711824,-0.004345130641013384,0.007329844869673252,0.0018924225587397814,-0.00588219566270709,2.401577675291506,-3.8126721972050337,3.0497451638161985,0.02401577675291506,-0.03812672197205034,0.030497451638161987 +karman_re400,sr,114,45.6,0.9694919586181641,0.29663780331611633,1.0430065393447876,0.5381979942321777,1.1323323249816895,0.26292553544044495,-0.0035589179024100304,-0.006177298258990049,-0.00018950167577713728,0.008350980468094349,-0.00037595906178466976,-0.006743761245161295,1.189474679152069,-2.4846040474121547,4.377813313609078,0.01189474679152069,-0.024846040474121547,0.04377813313609078 +karman_re400,sr,115,46.0,0.921427845954895,0.208977609872818,1.0810643434524536,0.5852832794189453,1.1869407892227173,0.2104947865009308,-0.0036615682765841484,-0.006146413739770651,0.0033550856169313192,0.008309897966682911,-0.002241199603304267,-0.007181812077760696,-0.035556624896701444,-2.3802626671309395,4.482154693890292,-0.00035556624896701446,-0.023802626671309394,0.044821546938902924 +karman_re400,sr,116,46.4,0.8884873390197754,0.0863564983010292,1.0776540040969849,0.27334439754486084,1.2209327220916748,0.1445080041885376,-0.0009725351119413972,-0.0057728528045117855,0.0055513749830424786,0.00806715153157711,-0.0037206721026450396,-0.005806885194033384,-1.0671876220705594,-2.6935635909072717,4.1688537701139605,-0.010671876220705595,-0.02693563590907272,0.04168853770113961 +karman_re400,sr,117,46.8,0.8742130398750305,-0.07834884524345398,1.008488655090332,-0.21200716495513916,1.2580444812774658,0.17436383664608002,0.0027356117498129606,-0.0034812840167433023,0.0062332856468856335,0.007607997860759497,-0.006443355232477188,-0.0029458082281053066,-1.768139666170298,-1.953241106004568,4.909176255016664,-0.01768139666170298,-0.01953241106004568,0.049091762550166645 +karman_re400,sr,118,47.2,0.9041846990585327,-0.20713786780834198,0.9639060497283936,-0.42545247077941895,1.183388590812683,0.11162486672401428,0.0041227457113564014,-0.00022491863637696952,0.005185649264603853,0.006573668215423822,-0.009875133633613586,-0.001660991576500237,-2.417381120421191,-0.3826453369759495,6.479772024045283,-0.02417381120421191,-0.003826453369759495,0.06479772024045283 +karman_re400,sr,119,47.6,0.9753445386886597,-0.26955246925354004,0.9646830558776855,-0.5156916975975037,1.0471247434616089,-0.3053205609321594,0.002033708617091179,0.0027172877453267574,0.00379728595726192,0.005784658249467611,-0.009773998521268368,-0.004366372246295214,-2.8720267919069724,-0.21885416469154695,6.643563196329685,-0.028720267919069724,-0.0021885416469154696,0.06643563196329685 +karman_re400,sr,120,48.0,1.046626091003418,-0.2905050814151764,0.984413206577301,-0.5347477197647095,1.0239068269729614,-0.38977518677711487,-0.0004975105985067785,0.004830114543437958,0.0022428592201322317,0.005664070136845112,-0.005245069973170757,-0.006616828963160515,-2.587985822937762,-2.5038043789704068,4.3586129820508255,-0.025879858229377623,-0.02503804378970407,0.04358612982050825 +karman_re400,sr,121,48.4,1.110064148902893,-0.26525428891181946,1.0131580829620361,-0.5559524297714233,0.9771897196769714,-0.341746062040329,-0.0030054915696382523,0.00595910893753171,7.354035187745467e-05,0.006293186452239752,-0.001121341367252171,-0.007928985171020031,-1.427916025641263,-4.054209000529922,2.80820836049131,-0.014279160256412632,-0.04054209000529922,0.028082083604913103 +karman_re400,sr,122,48.8,1.1673173904418945,-0.21833570301532745,1.0709741115570068,-0.6049042344093323,0.9267929792404175,-0.26021549105644226,-0.0039013344794511795,0.006216445472091436,-0.002064298838376999,0.006995294243097305,0.0029108382295817137,-0.00836137868463993,-0.22785882604458227,-4.500842565959313,2.3615747950619195,-0.0022785882604458227,-0.04500842565959313,0.023615747950619194 +karman_re400,sr,123,49.2,1.2008047103881836,-0.148041769862175,1.0920847654342651,-0.39753803610801697,0.8883931040763855,-0.14860597252845764,-0.0015937964199110866,0.006057048216462135,-0.003483276581391692,0.006285358220338821,0.005681582260876894,-0.00795553345233202,0.9487373298686954,-4.324478856286149,2.5379385047350835,0.009487373298686954,-0.043244788562861486,0.025379385047350836 +karman_re400,sr,124,49.6,1.2023210525512695,-0.13170738518238068,1.0393904447555542,0.11388429999351501,0.8743714690208435,0.006644767709076405,0.002335826400667429,0.004319732077419758,-0.0059222448617219925,0.0036670074332505465,0.0065808407962322235,-0.007466147653758526,1.7476993272478736,-4.523321054891943,2.3390963061292895,0.017476993272478737,-0.04523321054891943,0.023390963061292895 +karman_re400,sr,125,50.0,1.1649223566055298,-0.19418805837631226,0.9848061203956604,0.381547749042511,0.8857182860374451,0.17608590424060822,0.004455873742699623,0.001059764064848423,-0.009462960064411163,0.0014513200148940086,0.00576110789552331,-0.006625395268201828,2.384284883052292,-5.9154318729926505,0.9469854880285813,0.023842848830522918,-0.059154318729926506,0.009469854880285813 +karman_re400,sr,126,50.4,0.9971015453338623,0.17838163673877716,0.9750091433525085,0.5001242160797119,0.9510619640350342,0.25729355216026306,0.002764776349067688,-0.0020742537453770638,-0.010856683366000652,0.0030793335754424334,0.004284467548131943,-0.0058778016828000546,2.9031645538107718,-6.814489369791415,0.047927991229816946,0.02903164553810772,-0.06814489369791416,0.00047927991229816945 +karman_re400,sr,127,50.8,0.9985572695732117,0.4176587164402008,0.9886656403541565,0.5344815254211426,1.0266773700714111,0.291923463344574,0.00022995172184892,-0.0045885914005339146,-0.007273239549249411,0.006001974456012249,0.0027905884198844433,-0.005640577059239149,2.8873526283180433,-5.2611014910448795,1.6013158699763528,0.028873526283180434,-0.0526110149104488,0.016013158699763528 +karman_re400,sr,128,51.2,0.9861952066421509,0.38216128945350647,1.011390209197998,0.5450822710990906,1.094968557357788,0.2739749252796173,-0.0025696735829114914,-0.005796624347567558,-0.002782987430691719,0.007834915071725845,0.0009382728603668511,-0.006151359062641859,1.9191288893697638,-3.1948942139057683,3.667523147115464,0.019191288893697638,-0.03194894213905768,0.03667523147115464 +karman_re400,sr,129,51.6,0.9483286142349243,0.3006197214126587,1.0529195070266724,0.5743621587753296,1.159092903137207,0.2319619059562683,-0.0041474816389381886,-0.006352092605084181,0.0016289943596348166,0.008577857166528702,-0.0012656573671847582,-0.007116343360394239,0.7096283989887875,-2.3303467378446205,4.532070623176612,0.007096283989887875,-0.023303467378446206,0.045320706231766116 +karman_re400,sr,130,52.0,0.9119991064071655,0.186789870262146,1.068974256515503,0.49614742398262024,1.2120097875595093,0.16143806278705597,-0.002663119463250041,-0.006207706406712532,0.0047537656500935555,0.007986634038388729,-0.0028346492908895016,-0.006923709996044636,-0.5519976862324715,-2.4755381122770324,4.3868792487442,-0.0055199768623247145,-0.024755381122770325,0.043868792487442 +karman_re400,sr,131,52.4,0.8900461792945862,0.017521748319268227,1.0449672937393188,-0.03847239166498184,1.2349236011505127,0.08674153685569763,0.0009552721166983247,-0.005062420386821032,0.0061462074518203735,0.007637630216777325,-0.004756275564432144,-0.004736507311463356,-1.4470782273337206,-2.736172328973981,4.126245032047251,-0.014470782273337207,-0.027361723289739813,0.04126245032047251 +karman_re400,sr,132,52.8,0.8852577805519104,-0.1759054958820343,0.997549831867218,-0.3648337423801422,1.2239211797714233,0.10710743814706802,0.003875450696796179,-0.0016395901329815388,0.005842949263751507,0.007121728267520666,-0.00805926974862814,-0.002016133163124323,-2.0790568148149866,-1.5341908324412503,5.328226528579982,-0.020790568148149866,-0.015341908324412503,0.053282265285799824 +karman_re400,sr,133,53.2,0.9440428018569946,-0.26219359040260315,0.9862544536590576,-0.49720966815948486,1.0636837482452393,-0.005225948058068752,0.003139642532914877,0.001274035545065999,0.004640531726181507,0.0061344243586063385,-0.01059296727180481,-0.002557271160185337,-2.6510936211183664,-0.09270653697345521,6.769710824047778,-0.026510936211183667,-0.0009270653697345521,0.06769710824047778 +karman_re400,sr,134,53.6,1.0181382894515991,-0.30304035544395447,0.9942654967308044,-0.5286799669265747,0.9453689455986023,-0.32614830136299133,0.0006796338129788637,0.004168870858848095,0.003067830577492714,0.005775789730250835,-0.008070592768490314,-0.005763034336268902,-2.9049630123732144,-1.0921407801974912,5.770276580823741,-0.029049630123732146,-0.010921407801974911,0.05770276580823741 +karman_re400,sr,135,54.0,1.0855636596679688,-0.2964337170124054,1.0105047225952148,-0.5329872965812683,0.9612393975257874,-0.36685794591903687,-0.001978729385882616,0.0054666572250425816,0.0013716504909098148,0.00599489314481616,-0.0034896465949714184,-0.00748900230973959,-2.124049625139448,-3.4228680445456376,3.439549316475594,-0.021240496251394483,-0.03422868044545638,0.034395493164755944 +karman_re400,sr,136,54.4,1.148306131362915,-0.26166781783103943,1.05191969871521,-0.5426933765411377,0.9381939172744751,-0.3005862534046173,-0.003951743710786104,0.006279932800680399,-0.0008425786509178579,0.006927028764039278,0.0006120554753579199,-0.008433233015239239,-0.9270285328741228,-4.408193057019483,2.454224304001749,-0.009270285328741228,-0.044081930570194834,0.02454224304001749 +karman_re400,sr,137,54.8,1.2006161212921143,-0.2083091288805008,1.0855400562286377,-0.6070762276649475,0.9018491506576538,-0.20305724442005157,-0.003246130421757698,0.006169854197651148,-0.002507708966732025,0.007049100939184427,0.0039010357577353716,-0.008143320679664612,0.27739249754278666,-4.416101923789137,2.446315437232095,0.0027739249754278666,-0.04416101923789137,0.024463154372320953 +karman_re400,sr,138,55.2,1.2279001474380493,-0.15997719764709473,1.0682355165481567,-0.17602655291557312,0.879720151424408,-0.06932749599218369,-7.840511534595862e-05,0.0054951012134552,-0.004182921256870031,0.005183595232665539,0.005759056191891432,-0.007868748158216476,1.2221201696852915,-4.146709004057265,2.715708356963967,0.012221201696852915,-0.041467090040572654,0.02715708356963967 +karman_re400,sr,139,55.6,1.223209023475647,-0.18329428136348724,0.9952853322029114,0.3050265312194824,0.8729234933853149,0.1011832132935524,0.003272206289693713,0.002619534730911255,-0.0071852379478514194,0.002336630132049322,0.006005574017763138,-0.0073704286478459835,1.8958925170322583,-5.187005725591178,1.675411635430054,0.018958925170322584,-0.05187005725591178,0.01675411635430054 +karman_re400,sr,140,56.0,1.0849010944366455,0.06577268242835999,0.9675102829933167,0.4702906310558319,0.9131511449813843,0.21848398447036743,0.003749973140656948,-0.0005371130537241697,-0.01026380155235529,0.0019470053957775235,0.004823272116482258,-0.00631817476823926,2.515431344325134,-6.72276368859391,0.13965367242732185,0.025154313443251343,-0.06722763688593911,0.0013965367242732185 +karman_re400,sr,141,56.4,1.0502246618270874,0.37353307008743286,0.9797022342681885,0.5317666530609131,0.9865522980690002,0.27417099475860596,0.0013572705211117864,-0.0034509224351495504,-0.00893118791282177,0.0050955782644450665,0.0033949855715036392,-0.005714918952435255,2.8770403292583255,-6.289476526145607,0.5729408348756251,0.028770403292583256,-0.06289476526145607,0.0057294083487562505 +karman_re400,sr,142,56.8,1.028361439704895,0.39515089988708496,1.0061511993408203,0.538203775882721,1.0570002794265747,0.28290030360221863,-0.0012607716489583254,-0.005139648914337158,-0.0041305506601929665,0.007151687052100897,0.0017794739687815309,-0.0057641007006168365,2.35054848927315,-3.83618991622486,3.026227444796372,0.0235054848927315,-0.0383618991622486,0.030262274447963724 +karman_re400,sr,143,57.2,0.9823316931724548,0.33043140172958374,1.046532392501831,0.5461941361427307,1.1188451051712036,0.2514980435371399,-0.003502391977235675,-0.006190087180584669,-3.924289103451883e-06,0.008150276727974415,-0.00047940798685885966,-0.006559812929481268,1.1270163835409774,-2.5238786016362633,4.338538759384969,0.011270163835409774,-0.025238786016362633,0.04338538759384969 +karman_re400,sr,144,57.6,0.931450605392456,0.23570412397384644,1.1066826581954956,0.5884074568748474,1.1714577674865723,0.20149852335453033,-0.0035750526003539562,-0.006204355973750353,0.0035595891531556845,0.008210333064198494,-0.0023910272866487503,-0.007008075714111328,-0.09067270461950275,-2.3912188865852277,4.4711984744360045,-0.0009067270461950275,-0.02391218886585228,0.04471198474436005 +karman_re400,sr,145,58.0,0.8945896625518799,0.10340878367424011,1.1260968446731567,0.284247487783432,1.202653169631958,0.14505210518836975,-0.0007303663296625018,-0.005837289150804281,0.005816746968775988,0.00795242190361023,-0.0038431859575212,-0.005713155958801508,-1.134757068007613,-2.645063547910276,4.217353813110956,-0.011347570680076129,-0.02645063547910276,0.04217353813110956 +karman_re400,sr,146,58.4,0.877173662185669,-0.07548927515745163,1.0479367971420288,-0.1897793710231781,1.2420642375946045,0.20079410076141357,0.0030225657392293215,-0.003443004796281457,0.006389405112713575,0.007487286347895861,-0.006671593990176916,-0.002842676592990756,-1.8421078346221638,-1.9669730715692804,4.895444289451952,-0.01842107834622164,-0.019669730715692803,0.048954442894519515 +karman_re400,sr,147,58.8,0.9069746136665344,-0.21220126748085022,0.9898333549499512,-0.41326987743377686,1.162672758102417,0.08814157545566559,0.00419571390375495,-0.00022695091320201755,0.005329186096787453,0.0064583164639770985,-0.010122780688107014,-0.0015934485709294677,-2.4906765874046433,-0.3941406589410432,6.468276702080189,-0.024906765874046433,-0.0039414065894104325,0.06468276702080189 +karman_re400,sr,148,59.2,0.9797499775886536,-0.27311933040618896,0.983235776424408,-0.5089238882064819,1.0649921894073486,-0.3427708148956299,0.0020704297348856926,0.0028622872196137905,0.003817029995843768,0.005787666887044907,-0.010017268359661102,-0.004267124459147453,-2.9466238836180345,-0.2501158682389475,6.612301492782286,-0.029466238836180346,-0.002501158682389475,0.06612301492782285 +karman_re400,sr,149,59.6,1.05202054977417,-0.29087385535240173,0.9988860487937927,-0.5225641131401062,1.0377353429794312,-0.385155588388443,-0.0005532228387892246,0.004911207128316164,0.0023198514245450497,0.005704380106180906,-0.00556736346334219,-0.006654627155512571,-2.6381414427630587,-2.4369398340633723,4.4254775269578595,-0.02638141442763059,-0.024369398340633723,0.0442547752695786 +karman_re400,sr,150,60.0,1.1152704954147339,-0.26208049058914185,1.0197478532791138,-0.5416409969329834,0.9893079996109009,-0.3299409747123718,-0.003105806652456522,0.006037733983248472,0.00018919285503216088,0.006397703196853399,-0.0013275161618366838,-0.008094822987914085,-1.5040580974194093,-4.052566572434307,2.8098507885869255,-0.015040580974194093,-0.04052566572434307,0.028098507885869255 +karman_re400,sr,151,60.4,1.172024130821228,-0.21239525079727173,1.0574603080749512,-0.567384660243988,0.9402887225151062,-0.24719348549842834,-0.003964347764849663,0.00627298466861248,-0.0019105379469692707,0.007148345001041889,0.002740521216765046,-0.00846070982515812,-0.28922991330615194,-4.540939856689604,2.321477504331628,-0.0028922991330615194,-0.04540939856689605,0.023214775043316278 +karman_re400,sr,152,60.8,1.2083030939102173,-0.13654451072216034,1.0573227405548096,-0.3304697871208191,0.9043211936950684,-0.1306576281785965,-0.0016685171285644174,0.006060013547539711,-0.0033889380283653736,0.0063643730245530605,0.00545969232916832,-0.00804103072732687,0.8869370615899665,-4.28935208766057,2.5730652733606623,0.008869370615899666,-0.0428935208766057,0.025730652733606623 +karman_re400,sr,153,61.2,1.2095454931259155,-0.0972030758857727,1.0174976587295532,0.1355310082435608,0.8829905986785889,0.042414966970682144,0.0021874329540878534,0.004260015208274126,-0.005815601907670498,0.0037697607185691595,0.006397923454642296,-0.007580548990517855,1.6873959096459736,-4.527559883501334,2.334857477519898,0.016873959096459737,-0.04527559883501334,0.02334857477519898 +karman_re400,sr,154,61.6,1.1893213987350464,-0.1748531311750412,0.9787278175354004,0.3806680738925934,0.8964187502861023,0.20140275359153748,0.0042974199168384075,0.0008554469677619636,-0.009318869560956955,0.0016571949236094952,0.005605460610240698,-0.006784715689718723,2.3290669748880957,-5.9230484277541855,0.9393689332670463,0.023290669748880957,-0.05923048427754186,0.009393689332670463 +karman_re400,sr,155,62.0,0.9978468418121338,0.06837212294340134,0.9707802534103394,0.49829840660095215,0.9645707011222839,0.2691028118133545,0.0025617966894060373,-0.002139868214726448,-0.0105682872235775,0.003475545672699809,0.004218583926558495,-0.00598457595333457,2.8460058413044655,-6.784047814570959,0.07836954645027294,0.028460058413044657,-0.06784047814570959,0.0007836954645027294 +karman_re400,sr,156,62.4,0.9488963484764099,0.39439764618873596,0.9816261529922485,0.5242419838905334,1.036970853805542,0.2998368740081787,5.983589653624222e-05,-0.004613965284079313,-0.00677215913310647,0.006275626365095377,0.0027321758680045605,-0.005756664089858532,2.8197929947382283,-5.071840731980192,1.7905766290410408,0.028197929947382284,-0.05071840731980192,0.017905766290410408 +karman_re400,sr,157,62.8,0.9571216106414795,0.3770546615123749,1.0009914636611938,0.540956974029541,1.1019420623779297,0.2818218469619751,-0.0026322819758206606,-0.005758023355156183,-0.0024317556526511908,0.007869838736951351,0.0007855428848415613,-0.0062453001737594604,1.8124359767300569,-3.0918639747776346,3.7705533862435976,0.01812435976730057,-0.030918639747776346,0.037705533862435976 +karman_re400,sr,158,63.2,0.9273055195808411,0.29620227217674255,1.0504049062728882,0.5792955160140991,1.1640371084213257,0.24169287085533142,-0.0041125379502773285,-0.006242205388844013,0.0018218837212771177,0.008562820963561535,-0.0014083229470998049,-0.007148526143282652,0.6135250511004942,-2.368937708258077,4.493479652763155,0.0061352505110049416,-0.02368937708258077,0.044934796527631556 +karman_re400,sr,159,63.6,0.8938225507736206,0.18796245753765106,1.068718671798706,0.5346276760101318,1.2120083570480347,0.17423683404922485,-0.0025711164344102144,-0.006114833988249302,0.004888411611318588,0.008015795610845089,-0.0029752275440841913,-0.006844659335911274,-0.6159865763733382,-2.506414177117889,4.3560031839033435,-0.006159865763733383,-0.025064141771178893,0.04356003183903344 +karman_re400,sr,160,64.0,0.8780242800712585,0.04114513844251633,1.0363768339157104,-0.0038447221741080284,1.2262299060821533,0.11916409432888031,0.0010370980016887188,-0.0049744886346161366,0.006259344983845949,0.007642837706953287,-0.0049379062838852406,-0.004564551170915365,-1.499562306211755,-2.665413335542119,4.197004025479113,-0.014995623062117549,-0.02665413335542119,0.041970040254791126 +karman_re400,sr,161,64.4,0.8765305876731873,-0.1409621238708496,0.9797609448432922,-0.3625899851322174,1.2064259052276611,0.15396060049533844,0.003992544021457434,-0.0017241265159100294,0.005859803408384323,0.007003538776189089,-0.008253111504018307,-0.0018518698634579778,-2.1352678578511703,-1.418345147690525,5.444072213330707,-0.021352678578511704,-0.014183451476905251,0.05444072213330707 +karman_re400,sr,162,64.8,0.9295899868011475,-0.24290451407432556,0.9699028730392456,-0.4924759566783905,1.0388652086257935,-0.06289991736412048,0.003229025984182954,0.0012187467655166984,0.004613607656210661,0.006036581005901098,-0.010679775848984718,-0.002395936055108905,-2.6912724268219255,-0.06257929328464584,6.799838067736586,-0.026912724268219255,-0.0006257929328464584,0.06799838067736587 +karman_re400,sr,163,65.2,1.0050538778305054,-0.2890074551105499,0.9842382669448853,-0.5406143069267273,0.9891242980957031,-0.38186168670654297,0.0008106289897114038,0.0040942709892988205,0.003043257398530841,0.005632408428937197,-0.008110234513878822,-0.005559970624744892,-2.916382731406873,-1.0506241015236117,5.8117932594976205,-0.02916382731406873,-0.010506241015236117,0.058117932594976204 +karman_re400,sr,164,65.6,1.0745118856430054,-0.2846793532371521,1.0094823837280273,-0.5449581742286682,0.9904831051826477,-0.3951912224292755,-0.0019239467801526189,0.005465091671794653,0.0013467350509017706,0.0058766985312104225,-0.003462247783318162,-0.007351455744355917,-2.126923136216887,-3.3838422600201046,3.478575101001128,-0.021269231362168867,-0.03383842260020105,0.03478575101001128 +karman_re400,sr,165,66.0,1.1375727653503418,-0.2500220239162445,1.0554183721542358,-0.5530250072479248,0.9580026268959045,-0.32300156354904175,-0.0039188917726278305,0.006325138732790947,-0.000889248913154006,0.006804393604397774,0.0007508187554776669,-0.00829038955271244,-0.9170524291492892,-4.395538991984708,2.4668783690365244,-0.009170524291492892,-0.04395538991984708,0.024668783690365244 +karman_re400,sr,166,66.4,1.1909165382385254,-0.19669108092784882,1.1017087697982788,-0.5920531749725342,0.918379008769989,-0.2184755951166153,-0.0032050851732492447,0.006220147479325533,-0.0025643878616392612,0.006972163915634155,0.0040929908864200115,-0.00802560430020094,0.31275387984034175,-4.40288789856381,2.459529462457423,0.0031275387984034176,-0.0440288789856381,0.02459529462457423 +karman_re400,sr,167,66.8,1.2205462455749512,-0.14829669892787933,1.0939980745315552,-0.14622992277145386,0.8922283053398132,-0.06834053248167038,6.905348709551618e-05,0.00554197421297431,-0.004230042919516563,0.005180506035685539,0.005973902530968189,-0.007731680758297443,1.2695336130608026,-4.1200437545916895,2.742373606429543,0.012695336130608026,-0.041200437545916894,0.027423736064295434 +karman_re400,sr,168,67.2,1.2198891639709473,-0.17495130002498627,1.0175434350967407,0.2994120419025421,0.8798443675041199,0.12146445363759995,0.0034469389356672764,0.002565476344898343,-0.007306584622710943,0.0023274573031812906,0.006156005430966616,-0.007281109225004911,1.945848692926718,-5.0993985987913915,1.7630187622298406,0.01945848692926718,-0.050993985987913916,0.017630187622298406 +karman_re400,sr,169,67.6,1.0793052911758423,0.07909134030342102,0.9867634773254395,0.4682801365852356,0.9242997169494629,0.23420995473861694,0.0037544488441199064,-0.0005432458128780127,-0.010419808328151703,0.0019139830255880952,0.0049963584169745445,-0.006246943958103657,2.5672582616670327,-6.670356560667568,0.19206080035366302,0.02567258261667033,-0.06670356560667569,0.0019206080035366303 +karman_re400,sr,170,68.0,1.0457457304000854,0.3691760301589966,0.9947093725204468,0.5261740684509277,0.998718798160553,0.2848149538040161,0.0013677446404471993,-0.003576749237254262,-0.009156211279332638,0.004980981349945068,0.00342226168140769,-0.005742484237998724,2.9397969693692523,-6.264492375218386,0.5979249858028455,0.029397969693692523,-0.06264492375218386,0.0059792498580284546 +karman_re400,sr,171,68.4,1.0237284898757935,0.3732081949710846,1.015224814414978,0.5282834768295288,1.0680228471755981,0.2889823019504547,-0.0013147348072379827,-0.00523805059492588,-0.00452280230820179,0.007121861446648836,0.001869968487881124,-0.0058082090690732,2.398660918802528,-3.9291484842149393,2.933268876806293,0.02398660918802528,-0.03929148484214939,0.02933268876806293 +karman_re400,sr,172,68.8,0.9771333932876587,0.3076189458370209,1.0487158298492432,0.5360061526298523,1.129404067993164,0.2552114725112915,-0.0036056609824299812,-0.006249400321394205,-0.0003554091672413051,0.008305788971483707,-0.0003360173723194748,-0.00664267223328352,1.2190740099602437,-2.5722233538789463,4.290194007142286,0.012190740099602438,-0.025722233538789465,0.04290194007142287 +karman_re400,sr,173,69.2,0.9272123575210571,0.21450714766979218,1.0923701524734497,0.57576984167099,1.1829606294631958,0.2027900069952011,-0.003671766724437475,-0.006249893456697464,0.003287961706519127,0.008312242105603218,-0.0022055422887206078,-0.007129847537726164,0.00369793223466849,-2.343711790940809,4.518705570080423,3.69793223466849e-05,-0.02343711790940809,0.045187055700804224 +karman_re400,sr,174,69.6,0.8925827145576477,0.08413748443126678,1.0977822542190552,0.2557579576969147,1.2166469097137451,0.13935798406600952,-0.0008577347616665065,-0.005842266604304314,0.005523307248950005,0.008030624128878117,-0.003729019081220031,-0.005788850132375956,-1.047587682685732,-2.658051640312662,4.20436572070857,-0.01047587682685732,-0.02658051640312662,0.0420436572070857 +karman_re400,sr,175,70.0,0.8758754134178162,-0.09071486443281174,1.025739312171936,-0.21330010890960693,1.2561355829238892,0.1744011491537094,0.002800415735691786,-0.003390651661902666,0.00619081687182188,0.0075865513645112514,-0.006481728982180357,-0.0029811495915055275,-1.7643790025590085,-1.965333079407066,4.897084281614166,-0.017643790025590085,-0.01965333079407066,0.04897084281614166 +karman_re400,sr,176,70.4,0.9087755680084229,-0.21611188352108002,0.9766772389411926,-0.4243171811103821,1.1811165809631348,0.11014308780431747,0.004038339480757713,2.3800148483132944e-06,0.0051286108791828156,0.006613807287067175,-0.00985119678080082,-0.0018243418307974935,-2.4166002166243157,-0.41977840124891586,6.442638959772316,-0.024166002166243157,-0.0041977840124891586,0.06442638959772316 +karman_re400,sr,177,70.8,0.9809302687644958,-0.275572806596756,0.9740238785743713,-0.5128693580627441,1.0451653003692627,-0.31326210498809814,0.001833210582844913,0.0029197365511208773,0.00375297199934721,0.005898460280150175,-0.009646374732255936,-0.004580875858664513,-2.856585160800527,-0.2994208349791321,6.5629965260421,-0.02856585160800527,-0.002994208349791321,0.065629965260421 +karman_re400,sr,178,71.2,1.051561713218689,-0.29390639066696167,0.9913393259048462,-0.5274332165718079,1.021857738494873,-0.3831016421318054,-0.0007318570278584957,0.004936798941344023,0.0022198432125151157,0.005816252436488867,-0.005088130012154579,-0.006886077579110861,-2.555198031024679,-2.5696522261742047,4.292765134847028,-0.025551980310246792,-0.025696522261742048,0.04292765134847028 +karman_re400,sr,179,71.6,1.1133909225463867,-0.26697802543640137,1.0177676677703857,-0.5477941036224365,0.9754012823104858,-0.332297146320343,-0.0031555593013763428,0.006012141238898039,4.2924759327434e-05,0.006491032429039478,-0.0009865498868748546,-0.008097190409898758,-1.3935991931916323,-4.130757598672579,2.731659762348653,-0.013935991931916324,-0.04130757598672579,0.02731659762348653 +karman_re400,sr,180,72.0,1.1684819459915161,-0.2203955054283142,1.0758615732192993,-0.58970046043396,0.9259796142578125,-0.25177115201950073,-0.003873333567753434,0.006176580209285021,-0.002029975177720189,0.007139058317989111,0.0028698125388473272,-0.008440742269158363,-0.1963164056917566,-4.481460757362687,2.3809566036585457,-0.001963164056917566,-0.04481460757362687,0.023809566036585458 +karman_re400,sr,181,72.4,1.1991955041885376,-0.15354709327220917,1.0952235460281372,-0.3879091739654541,0.8887454867362976,-0.1407490074634552,-0.0015620082849636674,0.005984253250062466,-0.0035223830491304398,0.0062537663616240025,0.005533137824386358,-0.008097987622022629,0.9343685312869202,-4.282367962108266,2.580049398912966,0.009343685312869202,-0.04282367962108266,0.02580049398912966 +karman_re400,sr,182,72.8,1.1996454000473022,-0.1455310732126236,1.0372449159622192,0.10574735701084137,0.8739819526672363,0.012500382959842682,0.0022805628832429647,0.004197814967483282,-0.006002969574183226,0.0035958420485258102,0.0064424872398376465,-0.007588111329823732,1.726849044911954,-4.637128167877717,2.2252891931435155,0.01726849044911954,-0.04637128167877717,0.022252891931435155 +karman_re400,sr,183,73.2,1.1610054969787598,-0.21188506484031677,0.9785290360450745,0.3735531270503998,0.8857731819152832,0.17671175301074982,0.004345562309026718,0.0009245246765203774,-0.009488595649600029,0.0015618506586179137,0.0055831074714660645,-0.006689584814012051,2.37329530934409,-6.041717207070818,0.8207001539504152,0.023732953093440902,-0.06041717207070818,0.008207001539504152 +karman_re400,sr,184,73.6,1.006797432899475,0.19266223907470703,0.9673469066619873,0.4939800500869751,0.9516893029212952,0.2559276819229126,0.0026363057550042868,-0.00210845866240561,-0.010531540960073471,0.0034016105346381664,0.004180676769465208,-0.005882284604012966,2.874109231631845,-6.784187347881085,0.07823001314014766,0.02874109231631845,-0.06784187347881085,0.0007823001314014766 +karman_re400,sr,185,74.0,1.0103154182434082,0.42539048194885254,0.981641948223114,0.5323054194450378,1.0266425609588623,0.29029762744903564,0.0001348461810266599,-0.004550477955490351,-0.006691135931760073,0.006098705343902111,0.00269465334713459,-0.005639438517391682,2.8055569071781075,-5.053298863669394,1.809118497351839,0.028055569071781077,-0.050532988636693935,0.01809118497351839 +karman_re400,sr,186,74.4,0.9919973611831665,0.3868369162082672,1.0057713985443115,0.5464188456535339,1.09368097782135,0.27251553535461426,-0.002588513772934675,-0.0057562305592000484,-0.0023054322227835655,0.007736572064459324,0.0007399383466690779,-0.0061573912389576435,1.7898298152461367,-3.130898285070071,3.731519075951161,0.017898298152461366,-0.03130898285070071,0.03731519075951161 +karman_re400,sr,187,74.8,0.9522864818572998,0.30339065194129944,1.054314136505127,0.5782855749130249,1.155067801475525,0.23130786418914795,-0.004090276546776295,-0.00627051992341876,0.002018823754042387,0.008423027582466602,-0.0014870476443320513,-0.007048852276057005,0.5807391239792845,-2.398596719873466,4.463820641147766,0.005807391239792846,-0.02398596719873466,0.044638206411477664 +karman_re400,sr,188,75.2,0.9155991077423096,0.1901981234550476,1.079857349395752,0.4839318096637726,1.202255129814148,0.16543440520763397,-0.002481580711901188,-0.006154567468911409,0.0051177251152694225,0.007870019413530827,-0.003015034133568406,-0.00678207166492939,-0.6685546596852869,-2.5326479618798157,4.329769399141417,-0.00668554659685287,-0.025326479618798158,0.043297693991414164 +karman_re400,sr,189,75.6,0.8932185173034668,0.022590473294258118,1.0461758375167847,-0.029331881552934647,1.2181065082550049,0.11408717185258865,0.0011993939988315105,-0.004990953020751476,0.006453635636717081,0.007482543122023344,-0.005015762988477945,-0.004516717046499252,-1.5508823553625497,-2.7198095553362034,4.142607805685029,-0.015508823553625498,-0.027198095553362035,0.041426078056850286 +karman_re400,sr,190,76.0,0.8878562450408936,-0.16991285979747772,0.9926450252532959,-0.35159870982170105,1.2025680541992188,0.154207244515419,0.004141487181186676,-0.0017577551770955324,0.006047762464731932,0.006850132718682289,-0.008369237184524536,-0.0017500444082543254,-2.1871651932861913,-1.4918820186745376,5.370535342346694,-0.021871651932861915,-0.014918820186745377,0.053705353423466946 +karman_re400,sr,191,76.4,0.9465869069099426,-0.2573789358139038,0.9820674657821655,-0.4902392327785492,1.0292868614196777,-0.0774787962436676,0.0032485947012901306,0.0012662577209994197,0.0047432794235646725,0.005953397136181593,-0.01086026057600975,-0.0021774095948785543,-2.749260083715749,-0.09630737940054512,6.766109981620687,-0.02749260083715749,-0.0009630737940054513,0.06766109981620687 +karman_re400,sr,192,76.8,1.0209980010986328,-0.2968953847885132,0.9941060543060303,-0.526769757270813,0.9882423877716064,-0.380182683467865,0.0008586171315982938,0.004207969177514315,0.0030822008848190308,0.0056139398366212845,-0.008474849164485931,-0.0053008669055998325,-2.9755282464548314,-0.9621248141157137,5.9002925469055185,-0.029755282464548314,-0.009621248141157137,0.05900292546905519 +karman_re400,sr,193,77.2,1.0875192880630493,-0.2879248559474945,1.0133931636810303,-0.5312740802764893,0.9892990589141846,-0.3743545114994049,-0.001982782268896699,0.005554124712944031,0.0014782306971028447,0.0058877915143966675,-0.003966883290559053,-0.00731044402346015,-2.2038799444444686,-3.226493141983368,3.6359242190378644,-0.022038799444444687,-0.03226493141983368,0.03635924219037864 +karman_re400,sr,194,77.6,1.1494823694229126,-0.2511829435825348,1.0519639253616333,-0.5399952530860901,0.9556670188903809,-0.2984169125556946,-0.004015476908534765,0.006398742087185383,-0.0006915433914400637,0.006851438898593187,0.0003435700782574713,-0.008453565649688244,-1.0383599154996999,-4.361468200488456,2.5009491605327754,-0.010383599154996998,-0.04361468200488457,0.025009491605327755 +karman_re400,sr,195,78.0,1.2025783061981201,-0.19427607953548431,1.0770646333694458,-0.5771583318710327,0.9164398312568665,-0.1939876526594162,-0.0033546641934663057,0.006253294181078672,-0.0023738830350339413,0.007059555035084486,0.003768115071579814,-0.008129093796014786,0.1973917051806762,-4.478824772931144,2.3835925880900883,0.001973917051806762,-0.04478824772931144,0.023835925880900884 +karman_re400,sr,196,78.4,1.231278896331787,-0.13522183895111084,1.0593838691711426,-0.1143794059753418,0.8903103470802307,-0.0468912236392498,-0.0001162069384008646,0.00556098110973835,-0.00405577989295125,0.005332274828106165,0.005677210167050362,-0.007828985340893269,1.1712527321620467,-4.1305703362923785,2.731847024728854,0.011712527321620467,-0.04130570336292379,0.02731847024728854 +karman_re400,sr,197,78.8,1.229607343673706,-0.1558929681777954,0.9944947957992554,0.3220077157020569,0.879081666469574,0.13238611817359924,0.003165602684020996,0.0024833641946315765,-0.007015339098870754,0.0025767385959625244,0.005972674582153559,-0.0074238539673388,1.8560395171088606,-5.0637849479772905,1.7986324130439413,0.018560395171088605,-0.05063784947977291,0.017986324130439414 +karman_re400,sr,198,79.2,1.0850656032562256,0.035558171570301056,0.973071813583374,0.4751615822315216,0.9262751936912537,0.23381562530994415,0.0035835905000567436,-0.000744867546018213,-0.010037840344011784,0.002262529917061329,0.00482593709602952,-0.006407428532838821,2.4767585800583514,-6.600693280528638,0.26172408049259355,0.024767585800583514,-0.06600693280528638,0.0026172408049259356 +karman_re400,sr,199,79.6,1.020105004310608,0.35558608174324036,0.9840495586395264,0.5274573564529419,0.9986090660095215,0.28523680567741394,0.0010887414682656527,-0.003615658963099122,-0.008703550323843956,0.005326442886143923,0.003372946986928582,-0.005883476696908474,2.834458694826127,-6.141520138934318,0.7208972220869136,0.02834458694826127,-0.061415201389343185,0.0072089722208691365 +karman_re400,sr,200,80.0,1.0076758861541748,0.38049229979515076,1.0066163539886475,0.5298837423324585,1.0660948753356934,0.29081112146377563,-0.0014677169965580106,-0.005244805943220854,-0.004031647462397814,0.007277717813849449,0.0017324520740658045,-0.0059297592379152775,2.302936312363706,-3.7954480166183324,3.0669693444029003,0.02302936312363706,-0.03795448016618332,0.030669693444029002 +karman_re400,sr,201,80.4,0.9659032225608826,0.31803789734840393,1.0432837009429932,0.5332445502281189,1.1263750791549683,0.26029154658317566,-0.003612987697124481,-0.006195752415806055,-9.993968706112355e-05,0.008203290402889252,-0.00046276726061478257,-0.006722886580973864,1.0991890934103727,-2.5497908431892595,4.312626517831973,0.010991890934103727,-0.025497908431892594,0.04312626517831973 +karman_re400,sr,202,80.8,0.9179530143737793,0.22658829391002655,1.0967429876327515,0.5865329504013062,1.178963303565979,0.21328748762607574,-0.0035513988696038723,-0.006189781241118908,0.003320072079077363,0.008270643651485443,-0.002288000425323844,-0.007093566469848156,-0.0691896642512549,-2.463186102983979,4.399231258037253,-0.000691896642512549,-0.024631861029839792,0.04399231258037253 +karman_re400,sr,203,81.2,0.8837757110595703,0.10086971521377563,1.1176047325134277,0.323551744222641,1.2136554718017578,0.16429518163204193,-0.0007300589932128787,-0.005761540494859219,0.005532820243388414,0.008039267733693123,-0.003854848211631179,-0.005614614114165306,-1.0694354066748704,-2.6615286307508956,4.200888730270337,-0.010694354066748703,-0.026615286307508958,0.042008887302703364 +karman_re400,sr,204,81.6,0.8703805804252625,-0.06485175341367722,1.0403920412063599,-0.18717758357524872,1.2537494897842407,0.22402799129486084,0.002871583914384246,-0.0033514907117933035,0.00618049455806613,0.007535832934081554,-0.006688681431114674,-0.0027915984392166138,-1.790188166084469,-1.845749759344202,5.01666760167703,-0.01790188166084469,-0.01845749759344202,0.0501666760167703 +karman_re400,sr,205,82.0,0.8986587524414062,-0.20126089453697205,0.977215588092804,-0.42264053225517273,1.1550273895263672,0.05258527398109436,0.0040419804863631725,-3.5713324905373156e-05,0.005079073831439018,0.006512691266834736,-0.009965463541448116,-0.001723600784316659,-2.454096741217069,-0.3289969487359685,6.533420412285263,-0.02454096741217069,-0.0032899694873596854,0.06533420412285264 +karman_re400,sr,206,82.4,0.9706134796142578,-0.2658708989620209,0.9731229543685913,-0.5151822566986084,1.0806313753128052,-0.3497186005115509,0.0018966688076034188,0.0029054072219878435,0.0037031874526292086,0.005786421708762646,-0.009598657488822937,-0.004426752217113972,-2.8689288398076322,-0.29966602690052513,6.562751334120706,-0.028689288398076322,-0.002996660269005251,0.06562751334120706 +karman_re400,sr,207,82.8,1.0431225299835205,-0.28658175468444824,0.9936108589172363,-0.5345443487167358,1.0464766025543213,-0.3984709084033966,-0.0006997731979936361,0.004915450233966112,0.0021845591254532337,0.00571562210097909,-0.005050638224929571,-0.006757304072380066,-2.536604857252437,-2.5421331820515825,4.32028417896965,-0.02536604857252437,-0.025421331820515824,0.0432028417896965 +karman_re400,sr,208,83.2,1.106343388557434,-0.2591654062271118,1.0241848230361938,-0.5537925958633423,0.9942083954811096,-0.3451097011566162,-0.0031384890899062157,0.0060195536352694035,5.689747467840789e-06,0.006420467048883438,-0.0008289231918752193,-0.008036112412810326,-1.3797211456711982,-4.11235503530315,2.7500623257180825,-0.013797211456711983,-0.041123550353031495,0.027500623257180827 +karman_re400,sr,209,83.6,1.160841703414917,-0.21184903383255005,1.085862159729004,-0.5852213501930237,0.942727267742157,-0.26153573393821716,-0.0038528498262166977,0.006208237260580063,-0.0020975295919924974,0.007074939087033272,0.003068269230425358,-0.008351683616638184,-0.15915711280515205,-4.48766447075165,2.3747528902695825,-0.0015915711280515205,-0.0448766447075165,0.023747528902695825 +karman_re400,sr,210,84.0,1.1902825832366943,-0.14680983126163483,1.1096481084823608,-0.3471384048461914,0.9038254618644714,-0.1438809335231781,-0.0014770088018849492,0.006021171808242798,-0.003546040039509535,0.00623176759108901,0.005727096926420927,-0.00798881147056818,0.9850957098214039,-4.2660603014636855,2.5963570595575467,0.00985095709821404,-0.04266060301463686,0.02596357059557547 +karman_re400,sr,211,84.4,1.1931548118591309,-0.14479859173297882,1.0511550903320312,0.11411908268928528,0.8832416534423828,0.027454322203993797,0.002409749897196889,0.004190743435174227,-0.006061641499400139,0.003543528728187084,0.006574690341949463,-0.007494415156543255,1.7683475016645653,-4.580123672394526,2.282293688626706,0.017683475016645654,-0.04580123672394526,0.022822936886267062 +karman_re400,sr,212,84.8,1.1540471315383911,-0.21611209213733673,0.9956907629966736,0.3657039403915405,0.8950372934341431,0.19469286501407623,0.0044302367605268955,0.0009500732412561774,-0.009589474648237228,0.0014462281251326203,0.005737609229981899,-0.006584277376532555,2.4096943595195603,-6.014657336394281,0.8477600246269512,0.024096943595195604,-0.06014657336394281,0.008477600246269512 +karman_re400,sr,213,85.2,1.0112465620040894,0.22020334005355835,0.9821028113365173,0.4877852499485016,0.9637511968612671,0.26542767882347107,0.002685935003682971,-0.002161070005968213,-0.010737650096416473,0.003239663317799568,0.004230537451803684,-0.005838681012392044,2.9228092482005597,-6.7909322952225795,0.07148506579865321,0.029228092482005596,-0.06790932295222579,0.0007148506579865322 +karman_re400,sr,214,85.6,1.0195924043655396,0.4168294072151184,0.9925897121429443,0.5141698718070984,1.0375539064407349,0.29464685916900635,0.00015774536586832255,-0.004612337332218885,-0.007000903598964214,0.006005642935633659,0.002740808529779315,-0.00562661699950695,2.8543692552572892,-5.130682682476914,1.7317346785443184,0.028543692552572893,-0.05130682682476914,0.017317346785443184 +karman_re400,sr,215,86.0,0.9991999864578247,0.36449021100997925,1.0079118013381958,0.5266296863555908,1.101773977279663,0.27368101477622986,-0.002641227561980486,-0.005810821428894997,-0.0026195701211690903,0.007800381630659103,0.000830534496344626,-0.00615858007222414,1.857702778260484,-3.1833670725606242,3.679050288460608,0.01857702778260484,-0.03183367072560624,0.03679050288460608 +karman_re400,sr,216,86.4,0.9609824419021606,0.2785400152206421,1.0416640043258667,0.546502411365509,1.1610792875289917,0.2313830405473709,-0.004148350562900305,-0.006317415274679661,0.0017964807339012623,0.008516651578247547,-0.0013577246572822332,-0.00709396181628108,0.6579201734296385,-2.357649592877905,4.504767768143328,0.006579201734296385,-0.02357649592877905,0.04504767768143328 +karman_re400,sr,217,86.8,0.9262256026268005,0.16354773938655853,1.0363270044326782,0.44699805974960327,1.2067888975143433,0.16431352496147156,-0.0025775819085538387,-0.006175673566758633,0.004890888463705778,0.007903778925538063,-0.002910339506343007,-0.006841694936156273,-0.6014934583333388,-2.5009248011987655,4.361492559822467,-0.006014934583333388,-0.025009248011987655,0.04361492559822467 +karman_re400,sr,218,87.2,0.897322416305542,-0.009051935747265816,1.0023456811904907,-0.0469328798353672,1.2207738161087036,0.10613345354795456,0.0010761815356090665,-0.0049765994772315025,0.006259826943278313,0.007546097505837679,-0.004861661233007908,-0.004621963948011398,-1.4876607604778636,-2.736721631955904,4.125695729065328,-0.014876607604778635,-0.02736721631955904,0.04125695729065328 +karman_re400,sr,219,87.6,0.8947857618331909,-0.18049830198287964,0.9654925465583801,-0.35371890664100647,1.204688310623169,0.1473865956068039,0.00396298011764884,-0.0015919662546366453,0.005888886284083128,0.006988626904785633,-0.00817091390490532,-0.0019338533747941256,-2.120820160813229,-1.5191443763150305,5.343272984706202,-0.02120820160813229,-0.015191443763150306,0.053432729847062016 +karman_re400,sr,220,88.0,0.9549822807312012,-0.25516754388809204,0.9622714519500732,-0.4865066111087799,1.0309783220291138,-0.02416456863284111,0.0030995167326182127,0.0013558390783146024,0.0046458058059215546,0.006058541592210531,-0.010599259287118912,-0.0024895425885915756,-2.6811436765623147,-0.12593830165890374,6.7364790593623285,-0.026811436765623146,-0.0012593830165890374,0.06736479059362328 +karman_re400,sr,221,88.4,1.0250056982040405,-0.2950561046600342,0.9774578809738159,-0.5230512022972107,0.954426646232605,-0.3687719404697418,0.0006502675241790712,0.00425669876858592,0.003020242787897587,0.005713476333767176,-0.008098152466118336,-0.005603720434010029,-2.907168617161342,-1.097472733920576,5.764944627100656,-0.02907168617161342,-0.01097472733920576,0.05764944627100656 +karman_re400,sr,222,88.8,1.088857889175415,-0.28684893250465393,1.0007879734039307,-0.5313241481781006,0.9648070335388184,-0.38952645659446716,-0.002066698158159852,0.005548504181206226,0.0013427147641777992,0.005956762004643679,-0.003606890793889761,-0.007402211893349886,-2.120230353783567,-3.3594402971757202,3.5029770638455124,-0.02120230353783567,-0.033594402971757205,0.035029770638455124 +karman_re400,sr,223,89.2,1.1496870517730713,-0.252872496843338,1.0459907054901123,-0.5408937931060791,0.9373084902763367,-0.31580498814582825,-0.004004704765975475,0.006340521387755871,-0.0008138876291923225,0.006892440840601921,0.0005203475011512637,-0.008416051045060158,-0.9438685802863673,-4.37637519942747,2.4860421615937622,-0.009438685802863674,-0.04376375199427471,0.024860421615937624 +karman_re400,sr,224,89.6,1.2017344236373901,-0.19866639375686646,1.0820834636688232,-0.606163501739502,0.9009361863136292,-0.21260327100753784,-0.003225752618163824,0.006220477633178234,-0.002468605525791645,0.007010725326836109,0.0038420697674155235,-0.008144326508045197,0.2544329246990084,-4.427483518113572,2.43493384290766,0.0025443292469900843,-0.04427483518113572,0.024349338429076602 +karman_re400,sr,225,90.0,1.2283387184143066,-0.1478162705898285,1.0766422748565674,-0.16257300972938538,0.8787601590156555,-0.07221268117427826,3.493183248792775e-05,0.005487989634275436,-0.004183171782642603,0.005159171298146248,0.005711412522941828,-0.00783534161746502,1.2034187491847814,-4.172460169514121,2.689957191507111,0.012034187491847814,-0.04172460169514121,0.026899571915071113 +karman_re400,sr,226,90.4,1.2233006954193115,-0.17192623019218445,1.0066086053848267,0.3155214786529541,0.8711534142494202,0.10559132695198059,0.0032561314292252064,0.002436584560200572,-0.007206783164292574,0.0023851545993238688,0.005922983400523663,-0.007379142101854086,1.8868548476177933,-5.181132081178049,1.6812852798431834,0.018868548476177933,-0.05181132081178049,0.016812852798431834 +karman_re400,sr,227,90.8,1.0804505348205566,0.05793018266558647,0.9765821695327759,0.47705450654029846,0.9128523468971252,0.22446000576019287,0.003609905019402504,-0.0007776166312396526,-0.010150441899895668,0.0021552639082074165,0.004739080555737019,-0.006344486027956009,2.503790247856223,-6.696731629566753,0.16568573145447907,0.025037902478562232,-0.06696731629566753,0.0016568573145447907 +karman_re400,sr,228,91.2,1.0374763011932373,0.37182143330574036,0.9858867526054382,0.535120964050293,0.9870390295982361,0.27899911999702454,0.001107482356019318,-0.003630453022196889,-0.00868846382945776,0.005289818160235882,0.003318278817459941,-0.005804333835840225,2.8393681590310234,-6.170502874539259,0.6919144864819735,0.028393681590310235,-0.06170502874539259,0.006919144864819735 +karman_re400,sr,229,91.6,1.0214332342147827,0.39200836420059204,1.009671688079834,0.5389018058776855,1.0570271015167236,0.2865530848503113,-0.001474234857596457,-0.005233910866081715,-0.003899752162396908,0.007346040103584528,0.0016992513556033373,-0.005879081320017576,2.289634396732529,-3.767645795237845,3.094771565783387,0.02289634396732529,-0.03767645795237845,0.03094771565783387 +karman_re400,sr,230,92.0,0.9787039756774902,0.3271035850048065,1.0501939058303833,0.5439860820770264,1.1191908121109009,0.25486791133880615,-0.0036119655705988407,-0.006207542028278112,0.00017114663205575198,0.008249599486589432,-0.0005539095145650208,-0.006700220052152872,1.0677059898115489,-2.471977691119815,4.390439669901417,0.010677059898115489,-0.02471977691119815,0.04390439669901417 +karman_re400,sr,231,92.4,0.9296495318412781,0.23244082927703857,1.1127269268035889,0.5857352614402771,1.1723288297653198,0.20622484385967255,-0.003479864215478301,-0.006199958268553019,0.003603575751185417,0.008235028013586998,-0.0024064620956778526,-0.007073810324072838,-0.13826510167530237,-2.4180835780980097,4.444333782923223,-0.0013826510167530238,-0.024180835780980098,0.044443337829232224 +karman_re400,sr,232,92.8,0.8930715322494507,0.09998202323913574,1.130595088005066,0.28850048780441284,1.2055357694625854,0.15508896112442017,-0.0006003827438689768,-0.005765863694250584,0.005732386838644743,0.007993750274181366,-0.003926827106624842,-0.005592194851487875,-1.1460884758261256,-2.6718990082222462,4.1905183527989855,-0.011460884758261257,-0.026718990082222463,0.04190518352798986 +karman_re400,sr,233,93.2,0.876044511795044,-0.07661758363246918,1.0468530654907227,-0.18729610741138458,1.2490051984786987,0.2191365659236908,0.003052373183891177,-0.00329342158511281,0.006272241938859224,0.007511598989367485,-0.006804178468883038,-0.0027010352350771427,-1.8419707280196647,-1.8608534599053452,5.001563901115887,-0.018419707280196648,-0.018608534599053452,0.050015639011158866 +karman_re400,sr,234,93.6,0.9064443707466125,-0.2105311155319214,0.9858414530754089,-0.4130822420120239,1.1598548889160156,0.05524599924683571,0.004118617624044418,-7.322068267967552e-05,0.005175633355975151,0.006446393206715584,-0.010171938687562943,-0.0016503738006576896,-2.4936173641889425,-0.2856248500397247,6.576792510981508,-0.024936173641889426,-0.002856248500397247,0.06576792510981508 +karman_re400,sr,235,94.0,0.9796993136405945,-0.27167636156082153,0.9805331230163574,-0.5076103806495667,1.0810743570327759,-0.35062670707702637,0.0019378687720745802,0.002941800281405449,0.003727586939930916,0.0057628280483186245,-0.009740311652421951,-0.00449461629614234,-2.926716253574102,-0.2951352668976086,6.567282094123623,-0.02926716253574102,-0.0029513526689760863,0.06567282094123623 +karman_re400,sr,236,94.4,1.0517243146896362,-0.28847968578338623,0.9975057244300842,-0.5221007466316223,1.0461376905441284,-0.3845522403717041,-0.0006703303079120815,0.004934742581099272,0.0022096503525972366,0.00570794939994812,-0.005114877596497536,-0.006759873125702143,-2.5682705772554315,-2.601936565012507,4.260480796008725,-0.025682705772554316,-0.026019365650125068,0.04260480796008725 +karman_re400,sr,237,94.8,1.1139405965805054,-0.2591469883918762,1.0187686681747437,-0.5422566533088684,0.9945581555366516,-0.3287377953529358,-0.003160335822030902,0.0060402341187000275,8.314774277096149e-06,0.006432110443711281,-0.0009170083794742823,-0.008066178299486637,-1.396756108234016,-4.1190520252058125,2.7433653358154197,-0.01396756108234016,-0.041190520252058126,0.0274336533581542 +karman_re400,sr,238,95.2,1.1679245233535767,-0.20978078246116638,1.0602977275848389,-0.5612615942955017,0.9453323483467102,-0.2452336698770523,-0.003873300040140748,0.006211777217686176,-0.002065678359940648,0.007096678018569946,0.003039746778085828,-0.008362090215086937,-0.1764551621722371,-4.499710770402879,2.3627065906183535,-0.0017645516217223711,-0.04499710770402879,0.023627065906183537 +karman_re400,sr,239,95.6,1.1972286701202393,-0.1403529942035675,1.061692714691162,-0.31055620312690735,0.9091721177101135,-0.12760137021541595,-0.001501036691479385,0.005997275933623314,-0.003516464726999402,0.006228110287338495,0.005673439707607031,-0.007994504645466805,0.9735827067942704,-4.258650192057884,2.6037671689633486,0.009735827067942704,-0.042586501920578834,0.026037671689633488 +karman_re400,sr,240,96.0,1.1976693868637085,-0.1302490532398224,1.0166600942611694,0.13239234685897827,0.88555508852005,0.04721967130899429,0.002391900634393096,0.004136980045586824,-0.006015100982040167,0.003562122816219926,0.006533144041895866,-0.007515784353017807,1.7524754144340178,-4.586237865231003,2.2761794957902293,0.01752475414434018,-0.04586237865231003,0.022761794957902294 +karman_re400,sr,241,96.4,1.1649487018585205,-0.21240165829658508,0.976523756980896,0.3734721839427948,0.9010851979255676,0.20161430537700653,0.0043779341503977776,0.0008781183278188109,-0.009549597278237343,0.0015120489988476038,0.005685917101800442,-0.0066278004087507725,2.392896580723112,-6.016471954532179,0.8459454064890536,0.023928965807231122,-0.060164719545321786,0.008459454064890536 +karman_re400,sr,242,96.8,0.9967560768127441,0.17449408769607544,0.9690709710121155,0.4925310015678406,0.9699320793151855,0.26686719059944153,0.0026012405287474394,-0.0022133714519441128,-0.010620535351336002,0.0033869012258946896,0.004202242475003004,-0.0058694570325315,2.905347337098354,-6.7763519397280545,0.08606542129317774,0.029053473370983542,-0.06776351939728055,0.0008606542129317773 +karman_re400,sr,243,97.2,0.9921387434005737,0.4171231985092163,0.9817758798599243,0.5191259980201721,1.041161060333252,0.29526418447494507,7.816751167410985e-05,-0.004646612796932459,-0.006838825531303883,0.006088390946388245,0.002694811439141631,-0.005655348766595125,2.8266402440983915,-5.054529314528566,1.8078880464926659,0.028266402440983916,-0.050545293145285664,0.018078880464926658 +karman_re400,sr,244,97.6,0.9781553149223328,0.37202680110931396,1.0013325214385986,0.535508394241333,1.1048500537872314,0.2745307981967926,-0.002685406245291233,-0.00582371698692441,-0.002503579016774893,0.007824811153113842,0.0007616943912580609,-0.006181654520332813,1.8180237367789873,-3.148046342737992,3.7143710182832406,0.018180237367789873,-0.03148046342737992,0.037143710182832405 +karman_re400,sr,245,98.0,0.9407947063446045,0.28679412603378296,1.0434166193008423,0.5692570209503174,1.1656699180603027,0.23274920880794525,-0.004136951174587011,-0.006303770467638969,0.0018591731786727905,0.0085240937769413,-0.001414088997989893,-0.0070938002318143845,0.6226736534315215,-2.3567635221032956,4.505653838917937,0.0062267365343152145,-0.023567635221032956,0.04505653838917937 +karman_re400,sr,246,98.4,0.9064714908599854,0.17447936534881592,1.0502808094024658,0.48761269450187683,1.2130283117294312,0.16263435781002045,-0.0024946359917521477,-0.006174623500555754,0.004937742371112108,0.007941775023937225,-0.002967291744425893,-0.006804157514125109,-0.6241970773925458,-2.4959527566356767,4.3664646043855555,-0.006241970773925458,-0.02495952756635677,0.04366464604385555 +karman_re400,sr,247,98.8,0.8864551782608032,0.015672195702791214,1.018653154373169,-0.04533258453011513,1.226258635520935,0.10194573551416397,0.0011940605472773314,-0.004923565778881311,0.006270532496273518,0.007564438506960869,-0.004959638696163893,-0.004531866405159235,-1.507456147810942,-2.687330950809172,4.17508641021206,-0.01507456147810942,-0.02687330950809172,0.0417508641021206 +karman_re400,sr,248,99.2,0.8840644955635071,-0.16507163643836975,0.9738156795501709,-0.36976832151412964,1.2072157859802246,0.14055921137332916,0.004014147911220789,-0.001528944238089025,0.005835284013301134,0.006981457583606243,-0.008303668349981308,-0.0018932801904156804,-2.1415455464934396,-1.4482373999290585,5.414179961092174,-0.021415455464934396,-0.014482373999290586,0.05414179961092174 +karman_re400,sr,249,99.6,0.9425507187843323,-0.25192004442214966,0.9682780504226685,-0.49659115076065063,1.033554196357727,-0.031182048842310905,0.0030750827863812447,0.001434453297406435,0.004587023984640837,0.006062714383006096,-0.010630862787365913,-0.0025530634447932243,-2.6962376571837967,-0.10409581971268755,6.758321541308545,-0.02696237657183797,-0.0010409581971268756,0.06758321541308546 +karman_re400,sr,250,100.0,1.0157177448272705,-0.29405665397644043,0.982452929019928,-0.5358204245567322,0.9554219245910645,-0.36801865696907043,0.0005909466999582946,0.004268955904990435,0.0029885589610785246,0.005713271908462048,-0.007992655038833618,-0.005707816686481237,-2.901985827747578,-1.1362798934233704,5.726137467597862,-0.029019858277475778,-0.011362798934233705,0.057261374675978624 +karman_re400,sr,251,100.4,1.082320213317871,-0.2869546413421631,1.006290316581726,-0.5419087409973145,0.9657871127128601,-0.3927439749240875,-0.0021079983562231064,0.005561690777540207,0.0013040867634117603,0.0059943851083517075,-0.003428378142416477,-0.007486709393560886,-2.0940704761864946,-3.4276415605365465,3.4347758004846862,-0.020940704761864947,-0.034276415605365464,0.034347758004846865 +karman_re400,sr,252,100.8,1.145594835281372,-0.25184574723243713,1.053635835647583,-0.5513438582420349,0.939035177230835,-0.3213390111923218,-0.004013298079371452,0.006333180703222752,-0.0008908557356335223,0.006933544296771288,0.0007146058487705886,-0.008443853817880154,-0.9024607879386467,-4.407025940428736,2.4553914205924965,-0.009024607879386467,-0.04407025940428736,0.024553914205924964 +karman_re400,sr,253,101.2,1.1990524530410767,-0.1962997317314148,1.0958019495010376,-0.6052824258804321,0.9024592041969299,-0.21801090240478516,-0.0031494079157710075,0.006209350656718016,-0.002533441176638007,0.007014700677245855,0.004004877991974354,-0.00813209731131792,0.30615464779933604,-4.4187863223970245,2.4436310386242077,0.0030615464779933607,-0.044187863223970246,0.02443631038624208 +karman_re400,sr,254,101.6,1.2256547212600708,-0.14333786070346832,1.0916550159454346,-0.1455722153186798,0.8797953128814697,-0.07312212139368057,0.00013112193846609443,0.0054503995925188065,-0.004278175067156553,0.0051086656749248505,0.005804942920804024,-0.007821779698133469,1.2468294612039172,-4.161864163711504,2.700553197309728,0.012468294612039172,-0.041618641637115046,0.02700553197309728 +karman_re400,sr,255,102.0,1.2216331958770752,-0.16580180823802948,1.0180575847625732,0.31560906767845154,0.8723909258842468,0.11217385530471802,0.0033680310007184744,0.002375843469053507,-0.007333158049732447,0.0023104797583073378,0.00595246534794569,-0.007353887427598238,1.9228074133390118,-5.205289232715634,1.657128128305598,0.01922807413339012,-0.05205289232715634,0.01657128128305598 +karman_re400,sr,256,102.4,1.078055739402771,0.06184891611337662,0.986446738243103,0.47681793570518494,0.91572105884552,0.23197636008262634,0.0036126822233200073,-0.0007492867298424244,-0.010289175435900688,0.00213844352401793,0.004768548533320427,-0.006293067242950201,2.5335114783331676,-6.729047026555918,0.13337033446531432,0.025335114783331676,-0.06729047026555918,0.0013337033446531431 +karman_re400,sr,257,102.8,1.0340386629104614,0.3680303692817688,0.9937286376953125,0.5334568619728088,0.9914020299911499,0.28430044651031494,0.0011292027775198221,-0.0036566152703016996,-0.008694127202033997,0.005317258648574352,0.003315898822620511,-0.0057825916446745396,2.871443467249061,-6.147879295323432,0.7145380656978002,0.02871443467249061,-0.06147879295323432,0.007145380656978002 +karman_re400,sr,258,103.2,1.0199520587921143,0.3822214901447296,1.014569878578186,0.535788357257843,1.0620003938674927,0.2894665598869324,-0.00147357361856848,-0.005225421395152807,-0.0039078593254089355,0.0073258052580058575,0.0016926622483879328,-0.0058584981597959995,2.2902605228039152,-3.735485689002993,3.126931672018239,0.022902605228039153,-0.03735485689002993,0.03126931672018239 +karman_re400,sr,259,103.6,0.9779778122901917,0.31670159101486206,1.0518521070480347,0.5419487953186035,1.1242581605911255,0.25629350543022156,-0.0036327424459159374,-0.00621454231441021,0.0001968091237358749,0.008258987218141556,-0.0005752707365900278,-0.006708419416099787,1.0679954765499857,-2.4717499313468227,4.3906674296744095,0.010679954765499858,-0.024717499313468227,0.043906674296744094 +karman_re400,sr,260,104.0,0.9298651218414307,0.22196154296398163,1.1071088314056396,0.5804388523101807,1.1771522760391235,0.20644786953926086,-0.0034867238719016314,-0.006185814272612333,0.0036502594593912363,0.00820174254477024,-0.002408351982012391,-0.007066352292895317,-0.14723232247177775,-2.417306515343095,4.445110845678137,-0.0014723232247177776,-0.02417306515343095,0.04445110845678137 +karman_re400,sr,261,104.4,0.8949345350265503,0.08914461731910706,1.1145766973495483,0.2609814703464508,1.2112151384353638,0.15538397431373596,-0.0005981677677482367,-0.0057489811442792416,0.005752465222030878,0.007960064336657524,-0.003926710691303015,-0.005583553109318018,-1.1553512522595901,-2.688787334491287,4.1736300265299455,-0.0115535125225959,-0.026887873344912872,0.04173630026529945 +karman_re400,sr,262,104.8,0.8776803612709045,-0.08728944510221481,1.031896948814392,-0.20506614446640015,1.2549090385437012,0.21901769936084747,0.0030681323260068893,-0.003258353564888239,0.006290927529335022,0.0074897692538797855,-0.006794212851673365,-0.0026897788047790527,-1.8457773898304974,-1.8772296311768286,4.985187729844403,-0.018457773898304976,-0.018772296311768286,0.049851877298444036 +karman_re400,sr,263,105.2,0.9112486243247986,-0.21369318664073944,0.979346752166748,-0.42033281922340393,1.1539361476898193,0.0375603549182415,0.004100439138710499,-5.332854198059067e-05,0.005182299762964249,0.0064321947284042835,-0.010171486996114254,-0.001643581548705697,-2.4952802257423077,-0.2925386380150754,6.569878723006157,-0.02495280225742308,-0.002925386380150754,0.06569878723006158 +karman_re400,sr,264,105.6,0.9842406511306763,-0.27287745475769043,0.9782750010490417,-0.5103158950805664,1.0774688720703125,-0.35242390632629395,0.0019214678322896361,0.0029703048057854176,0.003720170585438609,0.005749281495809555,-0.009727705270051956,-0.004490607883781195,-2.927901373209433,-0.29997813086752645,6.5624392301537045,-0.02927901373209433,-0.0029997813086752646,0.06562439230153705 +karman_re400,sr,265,106.0,1.0547620058059692,-0.28795576095581055,0.9967352151870728,-0.5235084295272827,1.0413569211959839,-0.3832186758518219,-0.0007063004886731505,0.004948596004396677,0.0021793090272694826,0.005697750486433506,-0.005136547610163689,-0.006735629867762327,-2.5644523270951005,-2.6081734679940585,4.254243893027174,-0.025644523270951007,-0.026081734679940585,0.042542438930271737 +karman_re400,sr,266,106.4,1.1165348291397095,-0.2585494816303253,1.0213178396224976,-0.543793261051178,0.9891237020492554,-0.32709503173828125,-0.003183125052601099,0.006063501350581646,4.158240244578337e-06,0.0064110904932022095,-0.0009541473700664937,-0.008076302707195282,-1.3951025262402115,-4.109868556284092,2.7525488047371396,-0.013951025262402115,-0.04109868556284092,0.027525488047371396 +karman_re400,sr,267,106.8,1.170790433883667,-0.20855087041854858,1.0662541389465332,-0.5696561932563782,0.9389729499816895,-0.24291057884693146,-0.0038761573377996683,0.006236662156879902,-0.0020711752586066723,0.0070799593813717365,0.0030099719297140837,-0.008369703777134418,-0.18274477537113396,-4.520075782618478,2.3423415784027544,-0.0018274477537113395,-0.04520075782618478,0.023423415784027544 +karman_re400,sr,268,107.2,1.2002671957015991,-0.13764013350009918,1.0709658861160278,-0.31442537903785706,0.9027063250541687,-0.1252913624048233,-0.0014485137071460485,0.006010300014168024,-0.0035195397213101387,0.006204385310411453,0.005647030659019947,-0.008007533848285675,0.9689530057701855,-4.274560795558104,2.5878565654631287,0.009689530057701855,-0.04274560795558104,0.025878565654631286 +karman_re400,sr,269,107.6,1.2013863325119019,-0.1271960288286209,1.0218701362609863,0.14196179807186127,0.8819217085838318,0.04642437770962715,0.0024364094715565443,0.004089039750397205,-0.006038570776581764,0.003535228781402111,0.00648488337174058,-0.007521944120526314,1.7480257102255192,-4.6102710886568135,2.2521462723644188,0.017480257102255193,-0.046102710886568136,0.02252146272364419 +karman_re400,sr,270,108.0,1.170711636543274,-0.20644670724868774,0.9786415696144104,0.3814440071582794,0.8987982869148254,0.20105837285518646,0.004349812399595976,0.0007657168316654861,-0.009559627622365952,0.001565252896398306,0.005617472343146801,-0.0066617452539503574,2.388169066925289,-6.0380855348616205,0.8243318261596114,0.02388169066925289,-0.06038085534861621,0.008243318261596114 +karman_re400,sr,271,108.4,0.9970735907554626,0.1748216301202774,0.9705660343170166,0.497448205947876,0.9680240750312805,0.26736029982566833,0.002508479868993163,-0.0022999125067144632,-0.010540643706917763,0.0035305696073919535,0.004154404625296593,-0.005900778342038393,2.8942079584429914,-6.763758620782466,0.0986587402387662,0.028942079584429913,-0.06763758620782466,0.000986587402387662 +karman_re400,sr,272,108.8,0.9886816143989563,0.41498473286628723,0.9833346605300903,0.5235708355903625,1.0401029586791992,0.29587483406066895,-3.99396158172749e-05,-0.00469447486102581,-0.006667328532785177,0.0062399934977293015,0.002658286364749074,-0.005707831587642431,2.802282776646541,-4.981066587267447,1.8813507737537853,0.02802282776646541,-0.04981066587267447,0.018813507737537854 +karman_re400,sr,273,109.2,0.9742782711982727,0.3715101480484009,1.0037518739700317,0.5401535630226135,1.1042596101760864,0.27479788661003113,-0.0027441123966127634,-0.005848792847245932,-0.0023338920436799526,0.007900040596723557,0.0007045280071906745,-0.006246618460863829,1.7783548184533748,-3.083232853754588,3.779184507266644,0.01778354818453375,-0.030832328537545882,0.03779184507266644 +karman_re400,sr,274,109.6,0.9366182088851929,0.28777745366096497,1.0492687225341797,0.5769174098968506,1.165910005569458,0.23252886533737183,-0.004125229548662901,-0.006284119561314583,0.0019494480220600963,0.008564959280192852,-0.0014740019105374813,-0.007143278140574694,0.5794136898554343,-2.350051003125202,4.51236635789603,0.005794136898554343,-0.02350051003125202,0.045123663578960305 +karman_re400,sr,275,110.0,0.9016942381858826,0.1759863644838333,1.0623317956924438,0.48518577218055725,1.2130788564682007,0.161603182554245,-0.002408983651548624,-0.006149286404252052,0.004996977746486664,0.007998621091246605,-0.0030209296382963657,-0.0067802127450704575,-0.6528372391807125,-2.501584330167083,4.36083303085415,-0.006528372391807125,-0.02501584330167083,0.0436083303085415 +karman_re400,sr,276,110.4,0.8828977942466736,0.018553460016846657,1.0293841361999512,-0.048796556890010834,1.2250770330429077,0.10160432755947113,0.0012785461731255054,-0.004854308441281319,0.006268231198191643,0.007610431406646967,-0.005075806751847267,-0.004452413413673639,-1.5289805968088903,-2.6345025586502984,4.227914802370934,-0.015289805968088904,-0.026345025586502983,0.04227914802370934 +karman_re400,sr,277,110.8,0.8818695545196533,-0.16447801887989044,0.9804984927177429,-0.3693612217903137,1.2062039375305176,0.14217010140419006,0.004063756670802832,-0.001474554999731481,0.005793771240860224,0.00697840191423893,-0.008426258340477943,-0.001852451590821147,-2.1632594494657607,-1.3662094740925568,5.4962078869286755,-0.021632594494657608,-0.013662094740925569,0.05496207886928676 +karman_re400,sr,278,111.2,0.9408456683158875,-0.25381889939308167,0.9724785089492798,-0.4971071481704712,1.0319945812225342,-0.03347744792699814,0.0030418261885643005,0.0014727151719853282,0.0045272307470440865,0.00605779280886054,-0.010658062994480133,-0.002649205969646573,-2.711698735405493,-0.07939644462462647,6.783020916396605,-0.027116987354054933,-0.0007939644462462647,0.06783020916396605 +karman_re400,sr,279,111.6,1.0151060819625854,-0.29537326097488403,0.9849717020988464,-0.5365789532661438,0.9569701552391052,-0.3690512180328369,0.0005689235404133797,0.00426831329241395,0.0029721492901444435,0.005705689080059528,-0.00781457033008337,-0.0058079068548977375,-2.8957704764336465,-1.2023647873962515,5.660052573624981,-0.028957704764336466,-0.012023647873962515,0.05660052573624981 +karman_re400,sr,280,112.0,1.0826692581176758,-0.2876713275909424,1.0077588558197021,-0.5434173345565796,0.9683812856674194,-0.3900001049041748,-0.00212994497269392,0.005548169836401939,0.0012372948694974184,0.006005806382745504,-0.0032353985588997602,-0.0075176130048930645,-2.0569812310188453,-3.4980479526086157,3.3643694084126174,-0.020569812310188455,-0.034980479526086156,0.03364369408412617 +karman_re400,sr,281,112.4,1.1461392641067505,-0.25179263949394226,1.0566284656524658,-0.5567780137062073,0.9416536092758179,-0.3177589476108551,-0.004007797688245773,0.006320095155388117,-0.0009794853394851089,0.006948688067495823,0.0009429010679014027,-0.008412989787757397,-0.8529234798187905,-4.419765263132546,2.4426520978886863,-0.008529234798187905,-0.04419765263132546,0.024426520978886864 +karman_re400,sr,282,112.8,1.1985833644866943,-0.19601324200630188,1.0985759496688843,-0.5975552201271057,0.9052219986915588,-0.21430078148841858,-0.003086586482822895,0.006183747202157974,-0.0026178094558417797,0.006985119543969631,0.0041884188540279865,-0.00806247815489769,0.3665908541225519,-4.3887022404031635,2.4737151206180688,0.0036659085412255187,-0.04388702240403163,0.02473715120618069 +karman_re400,sr,283,113.2,1.2241673469543457,-0.1455937623977661,1.085709810256958,-0.12485317885875702,0.8830997943878174,-0.06836607307195663,0.00022451713448390365,0.005414109211415052,-0.004365058150142431,0.005050997249782085,0.005952472798526287,-0.007762429304420948,1.2979185869610603,-4.135683664992724,2.726733696028508,0.012979185869610603,-0.041356836649927245,0.02726733696028508 +karman_re400,sr,284,113.6,1.2176841497421265,-0.1689516305923462,1.0108122825622559,0.31799209117889404,0.8751474618911743,0.11744632571935654,0.003500614780932665,0.002356714801862836,-0.007463535759598017,0.0022146303672343493,0.006028948817402124,-0.007268128916621208,1.967508960932776,-5.204189408785089,1.6582279522361434,0.01967508960932776,-0.05204189408785089,0.016582279522361434 +karman_re400,sr,285,114.0,1.072953701019287,0.07719661295413971,0.9837121367454529,0.47576144337654114,0.92022705078125,0.23339392244815826,0.00362601806409657,-0.0007079035276547074,-0.010428216308355331,0.002046763664111495,0.00483879866078496,-0.0062117320485413074,2.5729590192235277,-6.735645361155841,0.12677199986539156,0.025729590192235276,-0.06735645361155841,0.0012677199986539157 +karman_re400,sr,286,114.4,1.0372406244277954,0.37425699830055237,0.9931415319442749,0.5319314002990723,0.9956838488578796,0.2843536138534546,0.0012064604088664055,-0.0036810606252402067,-0.008808459155261517,0.005180210340768099,0.0033154019620269537,-0.005718617234379053,2.9113543645201463,-6.154643577886297,0.7077737831349351,0.029113543645201464,-0.06154643577886297,0.007077737831349351 +karman_re400,sr,287,114.8,1.0208849906921387,0.3821656405925751,1.0147581100463867,0.5342142581939697,1.065484881401062,0.2876925766468048,-0.0014613522216677666,-0.005244138650596142,-0.004101098980754614,0.007218983955681324,0.0017034596530720592,-0.005801775958389044,2.3119683874025507,-3.783268045121723,3.0791493158995094,0.023119683874025507,-0.03783268045121723,0.030791493158995095 +karman_re400,sr,288,115.2,0.978150486946106,0.3143950402736664,1.051996111869812,0.5398970246315002,1.1276823282241821,0.2540917992591858,-0.003654971718788147,-0.006252898368984461,7.174475467763841e-05,0.008255776949226856,-0.000530222721863538,-0.006666345056146383,1.106904469987298,-2.5045092771983173,4.357908083822915,0.01106904469987298,-0.025045092771983173,0.04357908083822915 +karman_re400,sr,289,115.6,0.9301106333732605,0.21752916276454926,1.1013816595077515,0.5789071917533875,1.1812050342559814,0.20311328768730164,-0.0035312562249600887,-0.00622168043628335,0.0035901465453207493,0.008195833303034306,-0.0023669914808124304,-0.007053942885249853,-0.11479261949174736,-2.391893640137301,4.470523720883931,-0.0011479261949174737,-0.02391893640137301,0.044705237208839316 +karman_re400,sr,290,116.0,0.8954204320907593,0.08165084570646286,1.1057744026184082,0.23969970643520355,1.2163301706314087,0.1498759388923645,-0.0005895178765058517,-0.0057763345539569855,0.00572286918759346,0.00793062336742878,-0.00388256274163723,-0.0056005180813372135,-1.1360007065879225,-2.68453693519824,4.177880425822992,-0.011360007065879226,-0.026845369351982402,0.04177880425822992 +karman_re400,sr,291,116.4,0.8781617879867554,-0.09746632725000381,1.0268738269805908,-0.2238244265317917,1.260047435760498,0.2062225192785263,0.0030471107456833124,-0.0032092162873595953,0.006255882792174816,0.007489430718123913,-0.006754374597221613,-0.0027331921737641096,-1.8317147279146004,-1.9075740535529202,4.9548433074683125,-0.018317147279146004,-0.0190757405355292,0.049548433074683124 +karman_re400,sr,292,116.8,0.9145246148109436,-0.21871139109134674,0.9796078205108643,-0.42999565601348877,1.1508839130401611,0.031224660575389862,0.0040518008172512054,6.072169344406575e-05,0.005161372013390064,0.0064714932814240456,-0.010103183798491955,-0.0017352636205032468,-2.4810003599729695,-0.32114761008880155,6.541269750932431,-0.024810003599729697,-0.0032114761008880154,0.06541269750932431 +karman_re400,sr,293,117.2,0.9872050285339355,-0.2762787342071533,0.9799055457115173,-0.5139124989509583,1.066810131072998,-0.3480907678604126,0.001803739694878459,0.0030557468999177217,0.0036943841259926558,0.005804441403597593,-0.009662697091698647,-0.004605597350746393,-2.910885413763801,-0.3342312367542575,6.528186124266975,-0.02910885413763801,-0.003342312367542575,0.06528186124266976 +karman_re400,sr,294,117.6,1.0571264028549194,-0.29006484150886536,0.9984872341156006,-0.5245351195335388,1.0335896015167236,-0.37764838337898254,-0.0008164668688550591,0.005010351538658142,0.0021579782478511333,0.0057737152092158794,-0.005063001997768879,-0.006861886940896511,-2.5471381785489555,-2.6472954718889303,4.215121889132302,-0.025471381785489557,-0.026472954718889302,0.04215121889132302 +karman_re400,sr,295,118.0,1.1183863878250122,-0.2606959342956543,1.0251017808914185,-0.5438071489334106,0.981670081615448,-0.32221725583076477,-0.0032455625478178263,0.006077638361603022,-1.528726534161251e-05,0.006479437928646803,-0.0009284276748076081,-0.008152373135089874,-1.3770100046861622,-4.142754266180764,2.719663094840469,-0.013770100046861623,-0.04142754266180764,0.02719663094840469 +karman_re400,sr,296,118.4,1.1729345321655273,-0.210778146982193,1.0748769044876099,-0.5772903561592102,0.931143581867218,-0.23873820900917053,-0.003861060133203864,0.006231681909412146,-0.002063548192381859,0.007137631997466087,0.0029654938261955976,-0.008422654122114182,-0.17413196501688125,-4.525125777050398,2.3372915839708335,-0.0017413196501688125,-0.04525125777050398,0.023372915839708335 +karman_re400,sr,297,118.8,1.202513337135315,-0.14023356139659882,1.0839438438415527,-0.3302600383758545,0.894619882106781,-0.12271609902381897,-0.0014120120322331786,0.005980507005006075,-0.003539159195497632,0.006173540838062763,0.005552602466195822,-0.008080807514488697,0.9590167730715967,-4.271472945480678,2.5909444155405543,0.009590167730715967,-0.04271472945480678,0.025909444155405543 +karman_re400,sr,298,119.2,1.2048600912094116,-0.13189034163951874,1.027909278869629,0.14212651550769806,0.8769773244857788,0.04191366583108902,0.0024297721683979034,0.004020607564598322,-0.006084314547479153,0.0034949416294693947,0.006388802081346512,-0.007588217034935951,1.7337600079944577,-4.678352991280991,2.1840643697402413,0.017337600079944577,-0.04678352991280991,0.021840643697402413 +karman_re400,sr,299,119.6,1.175309181213379,-0.20567017793655396,0.9779596924781799,0.3851470649242401,0.8944498300552368,0.19610600173473358,0.004296170547604561,0.0006645377725362778,-0.00956662930548191,0.0016350409714505076,0.005493327509611845,-0.0067037115804851055,2.378569917557714,-6.107764191830146,0.7546531691910867,0.02378569917557714,-0.06107764191830146,0.0075465316919108676 +karman_re400,sr,300,120.0,1.004409670829773,0.18413126468658447,0.9686492085456848,0.4993627667427063,0.9637240767478943,0.2651401460170746,0.0024128095246851444,-0.0023410103749483824,-0.010362398810684681,0.003740878077223897,0.004080184269696474,-0.005922072567045689,2.8718692613934795,-6.74556623279179,0.11685112822944177,0.028718692613934796,-0.0674556623279179,0.0011685112822944178 +karman_re400,sr,301,120.4,0.9942607879638672,0.4154995381832123,0.9816144704818726,0.5283759832382202,1.0363993644714355,0.29487335681915283,-0.00011022426770068705,-0.004681124351918697,-0.0063158380798995495,0.006364105734974146,0.00260387035086751,-0.005723313894122839,2.7541387344549286,-4.857471893876508,2.004945467144724,0.027541387344549285,-0.04857471893876508,0.02004945467144724 +karman_re400,sr,302,120.8,0.9765204787254333,0.3736989498138428,1.0040074586868286,0.5457372069358826,1.1015011072158813,0.2740212678909302,-0.0027642815839499235,-0.0058373212814331055,-0.0020209411159157753,0.007885174825787544,0.000577961269300431,-0.006281103007495403,1.7009501937773464,-3.0122007312901404,3.8502166297310914,0.017009501937773463,-0.030122007312901405,0.038502166297310916 +karman_re400,sr,303,121.2,0.9373499155044556,0.2912238538265228,1.0548031330108643,0.5850715637207031,1.1626793146133423,0.23200343549251556,-0.004070450086146593,-0.0062300777062773705,0.0021811299957334995,0.00850773137062788,-0.0015987810911610723,-0.007123871240764856,0.49559955351161167,-2.382320726363098,4.480096634658134,0.004955995535116117,-0.02382320726363098,0.04480096634658134 +karman_re400,sr,304,121.6,0.9011704325675964,0.1800222247838974,1.0767261981964111,0.4767746329307556,1.2071164846420288,0.16305862367153168,-0.0022930530831217766,-0.006113126873970032,0.005187276750802994,0.007982091046869755,-0.0031427110079675913,-0.00669883145019412,-0.7208128545477079,-2.5263151440206,4.336102217000632,-0.00720812854547708,-0.025263151440206,0.04336102217000632 +karman_re400,sr,305,122.0,0.8829166293144226,0.02317148633301258,1.0392351150512695,-0.045642219483852386,1.2170733213424683,0.11433849483728409,0.0014380402863025665,-0.004793926142156124,0.006410240661352873,0.0075734942220151424,-0.005246929358690977,-0.00431670481339097,-1.5884929874580307,-2.5920969165308962,4.270320444490336,-0.015884929874580307,-0.025920969165308963,0.04270320444490336 +karman_re400,sr,306,122.4,0.8822022080421448,-0.16270996630191803,0.9852920770645142,-0.3615460991859436,1.196236252784729,0.16154690086841583,0.004205594304949045,-0.0015288734575733542,0.005872577428817749,0.006856434978544712,-0.008645341731607914,-0.0017088874010369182,-2.2229723940409007,-1.3016237448821455,5.560793616139087,-0.022229723940409007,-0.013016237448821456,0.05560793616139087 +karman_re400,sr,307,122.8,0.9414586424827576,-0.25398218631744385,0.9757483601570129,-0.49368417263031006,1.0200444459915161,-0.07367093861103058,0.003093171399086714,0.0014720914186909795,0.004553103819489479,0.005977131891995668,-0.010799739509820938,-0.0025340882129967213,-2.7685050022477324,-0.06527419685532454,6.797143164165907,-0.027685050022477325,-0.0006527419685532454,0.06797143164165907 +karman_re400,sr,308,123.2,1.016669511795044,-0.2942717671394348,0.9883663058280945,-0.5346605777740479,0.979698121547699,-0.38905370235443115,0.0006501983152702451,0.0042665391229093075,0.0029794066213071346,0.005626284517347813,-0.007927076891064644,-0.005630934610962868,-2.9277214651934598,-1.179833773649663,5.682583587371569,-0.0292772146519346,-0.01179833773649663,0.056825835873715695 +karman_re400,sr,309,123.6,1.0845322608947754,-0.2848966121673584,1.0105528831481934,-0.5415129065513611,0.9836145639419556,-0.38740161061286926,-0.0021262518130242825,0.005571482237428427,0.0012643896043300629,0.00596223771572113,-0.00336487521417439,-0.007461650297045708,-2.0798196922904197,-3.4342493343783973,3.4281680266428345,-0.0207981969229042,-0.034342493343783975,0.03428168026642835 +karman_re400,sr,310,124.0,1.1477967500686646,-0.24737243354320526,1.0562803745269775,-0.5564101338386536,0.9523109197616577,-0.31059691309928894,-0.004031052812933922,0.006344684399664402,-0.0009561180486343801,0.006915020756423473,0.0009429119527339935,-0.00839334074407816,-0.8827809733019103,-4.411660912707463,2.4507564483137694,-0.008827809733019103,-0.04411660912707463,0.024507564483137696 +karman_re400,sr,311,124.4,1.200330138206482,-0.18950386345386505,1.0903959274291992,-0.5743998289108276,0.9149256944656372,-0.20420299470424652,-0.003109672339633107,0.0062154727056622505,-0.0025929268449544907,0.0069887153804302216,0.00422086613252759,-0.007997240871191025,0.3621368875326285,-4.397868657791077,2.4645487032301556,0.0036213688753262852,-0.043978686577910764,0.024645487032301558 +karman_re400,sr,312,124.8,1.2256966829299927,-0.13384908437728882,1.0706833600997925,-0.08465404808521271,0.8905802369117737,-0.05101780593395233,0.0002461663680151105,0.005430889315903187,-0.004328226204961538,0.005096126813441515,0.006000291556119919,-0.0076940227299928665,1.2993611366745288,-4.090674314559343,2.7717430464618897,0.012993611366745289,-0.04090674314559343,0.027717430464618897 +karman_re400,sr,313,125.2,1.2197175025939941,-0.15721285343170166,1.0023216009140015,0.3279182016849518,0.8805490732192993,0.1366453766822815,0.0035102185793220997,0.0023008135613054037,-0.007434103637933731,0.0022716261446475983,0.0060669127851724625,-0.007245082873851061,1.9696040990023103,-5.129949162031542,1.7324681989896906,0.019696040990023103,-0.05129949162031542,0.017324681989896906 +karman_re400,sr,314,125.6,1.069726824760437,0.06533853709697723,0.9817586541175842,0.47868043184280396,0.929914116859436,0.24015003442764282,0.0035814724396914244,-0.00074103067163378,-0.010403774678707123,0.0020844442769885063,0.004904234781861305,-0.006203890312463045,2.5745860057332335,-6.683306743856403,0.17911061716482957,0.025745860057332336,-0.06683306743856403,0.0017911061716482956 +karman_re400,sr,315,126.0,1.0216279029846191,0.36705824732780457,0.9921736121177673,0.5283963084220886,1.0037319660186768,0.28856322169303894,0.0011482485570013523,-0.0037624856922775507,-0.008843895047903061,0.005157981533557177,0.0033099206630140543,-0.005753717385232449,2.9191718384521383,-6.1248769284637525,0.7375404325574801,0.029191718384521385,-0.06124876928463752,0.007375404325574802 +karman_re400,sr,316,126.4,1.0097169876098633,0.3763413727283478,1.0131736993789673,0.5297307968139648,1.0716962814331055,0.2899189293384552,-0.001524953288026154,-0.005299165844917297,-0.004243479110300541,0.0071964021772146225,0.0017223622417077422,-0.005835541523993015,2.3176806001091252,-3.820754928721182,3.0416624323000496,0.023176806001091253,-0.038207549287211824,0.030416624323000498 +karman_re400,sr,317,126.8,0.9688392877578735,0.30912914872169495,1.0491611957550049,0.5332334041595459,1.1331048011779785,0.2570233643054962,-0.0037179267965257168,-0.006284893024712801,-0.0001297869603149593,0.008301978930830956,-0.0004712571098934859,-0.006704729050397873,1.1376603935551222,-2.5413542923466172,4.321063068674615,0.011376603935551222,-0.025413542923466172,0.04321063068674615 +karman_re400,sr,318,127.2,0.9222357273101807,0.21302248537540436,1.0930649042129517,0.5838844776153564,1.1867808103561401,0.20674751698970795,-0.003570057451725006,-0.0062315394170582294,0.003407076932489872,0.008255594410002232,-0.0022711316123604774,-0.00709037110209465,-0.06511689497510018,-2.386781529403655,4.475635831617577,-0.0006511689497510017,-0.023867815294036553,0.04475635831617577 +karman_re400,sr,319,127.6,0.8895833492279053,0.0802195817232132,1.098567008972168,0.2520154118537903,1.2226506471633911,0.1549120992422104,-0.000643144128844142,-0.005765780806541443,0.005536405835300684,0.007969504222273827,-0.003832609159871936,-0.005607350263744593,-1.0828100491891084,-2.6692797708328353,4.193137590188397,-0.010828100491891084,-0.026692797708328355,0.04193137590188397 +karman_re400,sr,320,128.0,0.8746861815452576,-0.09397628903388977,1.0220907926559448,-0.2353070229291916,1.2591487169265747,0.2031070590019226,0.0029164496809244156,-0.0031688078306615353,0.006129402667284012,0.007533871103078127,-0.006660042330622673,-0.002783798612654209,-1.7866310311862155,-1.8866177185042312,4.975799642517001,-0.017866310311862154,-0.018866177185042313,0.04975799642517001 +karman_re400,sr,321,128.4,0.9103723168373108,-0.2156154215335846,0.9752167463302612,-0.43962836265563965,1.141810655593872,0.018691791221499443,0.003948399797081947,0.00020320358453318477,0.0050129066221416,0.00653491448611021,-0.009927487000823021,-0.0018525830237194896,-2.438892382676606,-0.32517953660494703,6.537237824416285,-0.02438892382676606,-0.0032517953660494703,0.06537237824416285 +karman_re400,sr,322,128.8,0.9827264547348022,-0.27457085251808167,0.9771022200584412,-0.5196201801300049,1.0647516250610352,-0.3478979170322418,0.0016595595516264439,0.0030960298608988523,0.00363325048238039,0.00584732461720705,-0.009420251473784447,-0.00473319785669446,-2.8490690727551162,-0.3694747779372456,6.492942583083987,-0.028490690727551164,-0.003694747779372456,0.06492942583083987 +karman_re400,sr,323,129.2,1.0525121688842773,-0.2896418571472168,0.9975435733795166,-0.530860960483551,1.0326931476593018,-0.38304802775382996,-0.0009231452131643891,0.005033832974731922,0.0020827632397413254,0.005818166770040989,-0.004771545063704252,-0.006982666440308094,-2.489246913635062,-2.7026913378524444,4.159726023168788,-0.02489246913635062,-0.027026913378524444,0.04159726023168788 +karman_re400,sr,324,129.6,1.1140505075454712,-0.26121512055397034,1.0299733877182007,-0.548283040523529,0.9810196161270142,-0.3286112844944,-0.003271757857874036,0.00606698589399457,-0.00011230458767386153,0.006516068708151579,-0.000683600315824151,-0.008152701891958714,-1.3070872358047263,-4.192664410125255,2.669752950895977,-0.013070872358047263,-0.041926644101252554,0.02669752950895977 +karman_re400,sr,325,130.0,1.167426586151123,-0.21290382742881775,1.0928133726119995,-0.5864439606666565,0.9292532205581665,-0.2450038194656372,-0.003785043954849243,0.006206096615642309,-0.0021499893628060818,0.0071200900711119175,0.0030853552743792534,-0.008389095775783062,-0.10894364844365645,-4.501388215041134,2.3610291459800985,-0.0010894364844365645,-0.04501388215041134,0.023610291459800984 +karman_re400,sr,326,130.4,1.1941232681274414,-0.14901790022850037,1.1141828298568726,-0.352079838514328,0.8907321691513062,-0.1288684457540512,-0.0013070544227957726,0.005947926081717014,-0.003629653947427869,0.006091844290494919,0.005615647416561842,-0.008095755241811275,0.9983577988261423,-4.26099995431481,2.6014174067064215,0.009983577988261423,-0.042609999543148105,0.026014174067064216 +karman_re400,sr,327,130.8,1.1988897323608398,-0.15851949155330658,1.0481528043746948,0.1270231306552887,0.8745905160903931,0.03269175440073013,0.002536754123866558,0.003974557854235172,-0.0062204585410654545,0.003367180470377207,0.006421411409974098,-0.0075704362243413925,1.7630393715970274,-4.741547802519439,2.120869558501793,0.017630393715970274,-0.04741547802519439,0.021208695585017933 +karman_re400,sr,328,131.2,1.1590259075164795,-0.21193000674247742,0.9862614274024963,0.37853848934173584,0.8916549682617188,0.19005747139453888,0.004328105133026838,0.0006836479296907783,-0.009704295545816422,0.0015619865152984858,0.0054870713502168655,-0.006635076832026243,2.4107504533171773,-6.17967934015245,0.6827380208687814,0.024107504533171772,-0.061796793401524504,0.0068273802086878145 +karman_re400,sr,329,131.6,1.023281455039978,0.2489195466041565,0.9729875922203064,0.4946157932281494,0.9608533382415771,0.2619816064834595,0.0024442856665700674,-0.002348455600440502,-0.010362925939261913,0.0037198271602392197,0.004062343388795853,-0.005860079079866409,2.8969286009866204,-6.748456239403305,0.11396112161792747,0.028969286009866205,-0.06748456239403305,0.0011396112161792748 +karman_re400,sr,330,132.0,1.023264765739441,0.42074042558670044,0.985848605632782,0.5253862142562866,1.0348765850067139,0.2916789650917053,-8.658769365865737e-05,-0.004664512351155281,-0.0062725055031478405,0.006291946861892939,0.0025842473842203617,-0.005669885315001011,2.7508370760433265,-4.830699920078802,2.031717440942431,0.027508370760433266,-0.048306999200788014,0.02031717440942431 +karman_re400,sr,331,132.4,0.9944506287574768,0.37096917629241943,1.0065898895263672,0.5415328741073608,1.1003355979919434,0.2697101831436157,-0.0027600377798080444,-0.005846564192324877,-0.001960715278983116,0.007844286039471626,0.000555190839804709,-0.006252987310290337,1.6889448412958374,-3.024448299938627,3.837969061082606,0.016889448412958374,-0.030244482999386268,0.03837969061082606 +karman_re400,sr,332,132.8,0.9525996446609497,0.2871956527233124,1.0502257347106934,0.572400689125061,1.160108208656311,0.2266291230916977,-0.0040703462436795235,-0.006232134532183409,0.0022759404964745045,0.008459586650133133,-0.001638038782402873,-0.0070843156427145,0.47977252098471884,-2.3906729330117313,4.471744428009501,0.004797725209847188,-0.023906729330117314,0.04471744428009501 +karman_re400,sr,333,133.2,0.9165374040603638,0.17300014197826385,1.0640842914581299,0.43130338191986084,1.2029114961624146,0.15861250460147858,-0.0022522597573697567,-0.006119735073298216,0.005293530412018299,0.007917101494967937,-0.003153265453875065,-0.006669482681900263,-0.7463790845318556,-2.5319314929682504,4.330485868052982,-0.007463790845318556,-0.025319314929682504,0.04330485868052982 +karman_re400,sr,334,133.6,0.8926789164543152,0.0026489808224141598,1.0271124839782715,-0.061623044312000275,1.212974190711975,0.11330699175596237,0.001508750719949603,-0.004772621672600508,0.006482867989689112,0.007505521178245544,-0.005272283684462309,-0.004290243145078421,-1.6107677931859763,-2.6154021003614862,4.2470152606597456,-0.016107677931859764,-0.02615402100361486,0.04247015260659746 +karman_re400,sr,335,134.0,0.8916336297988892,-0.18082726001739502,0.9823268055915833,-0.355482280254364,1.1938124895095825,0.16684074699878693,0.004252077080309391,-0.0015273138415068388,0.005944511853158474,0.006791932042688131,-0.008683585561811924,-0.0016696195816621184,-2.241657075814357,-1.3287676552610157,5.533649705760217,-0.02241657075814357,-0.013287676552610157,0.05533649705760217 +karman_re400,sr,336,134.4,0.9537029266357422,-0.2598506808280945,0.9748314619064331,-0.4898395836353302,1.0143381357192993,-0.07770157605409622,0.003084328956902027,0.0015091042732819915,0.004588990472257137,0.005941237322986126,-0.01084830891340971,-0.002459586365148425,-2.7895155234853424,-0.08177520971360863,6.780642151307624,-0.027895155234853423,-0.0008177520971360863,0.06780642151307624 +karman_re400,sr,337,134.8,1.0264580249786377,-0.2966587543487549,0.9872537851333618,-0.5242603421211243,0.9783868193626404,-0.3900987505912781,0.0006493811961263418,0.004322732333093882,0.00298155564814806,0.0056169647723436356,-0.008044629357755184,-0.005539656151086092,-2.9438268734072106,-1.1545888256026995,5.707828535418533,-0.029438268734072105,-0.011545888256026995,0.057078285354185326 +karman_re400,sr,338,135.2,1.0919833183288574,-0.28495457768440247,1.0074069499969482,-0.5327443480491638,0.9816524386405945,-0.37914398312568665,-0.002169452141970396,0.005617231596261263,0.0012981344480067492,0.005957878194749355,-0.0035376728046685457,-0.0074413432739675045,-2.102646254413849,-3.3806572770983143,3.4817600839229184,-0.02102646254413849,-0.033806572770983145,0.03481760083922918 +karman_re400,sr,339,135.6,1.15410578250885,-0.24722236394882202,1.0497431755065918,-0.5486387610435486,0.9497244954109192,-0.29963448643684387,-0.0040736268274486065,0.0063803838565945625,-0.0008879704982973635,0.006925852503627539,0.0007944739772938192,-0.008438636548817158,-0.92216773085716,-4.401232986309514,2.461184374711718,-0.0092216773085716,-0.04401232986309515,0.02461184374711718 +karman_re400,sr,340,136.0,1.2060563564300537,-0.18800978362560272,1.0716668367385864,-0.5701783895492554,0.9127512574195862,-0.19325242936611176,-0.003145464463159442,0.006236797198653221,-0.002523383591324091,0.007004736457020044,0.004096019081771374,-0.008030048571527004,0.3208349554235764,-4.4204043911586295,2.4420129698626023,0.0032083495542357637,-0.0442040439115863,0.024420129698626024 +karman_re400,sr,341,136.4,1.2309255599975586,-0.12793771922588348,1.048704743385315,-0.07430350035429001,0.8890015482902527,-0.04304942116141319,0.00021690776338800788,0.005427415482699871,-0.004277072846889496,0.005131658166646957,0.00588690210133791,-0.007723840419203043,1.2622917382203893,-4.101650934955864,2.760766426065368,0.012622917382203893,-0.04101650934955864,0.027607664260653683 +karman_re400,sr,342,136.8,1.2231135368347168,-0.14974728226661682,0.9878060817718506,0.3389362394809723,0.8797627091407776,0.13725432753562927,0.003414069302380085,0.0022197605576366186,-0.007345288991928101,0.002363910200074315,0.005979882553219795,-0.007298153825104237,1.938226489343751,-5.126213049177778,1.736204311843454,0.01938226489343751,-0.05126213049177778,0.01736204311843454 +karman_re400,sr,343,137.2,1.0715949535369873,0.04514750465750694,0.9721669554710388,0.4824202358722687,0.9293321371078491,0.2372804582118988,0.003482357831671834,-0.0008594503160566092,-0.010256321169435978,0.0022562185768038034,0.004818479530513287,-0.006263918709009886,2.5410531406671275,-6.657665652140103,0.20475170888112837,0.025410531406671277,-0.06657665652140103,0.002047517088811284 +karman_re400,sr,344,137.6,1.0078383684158325,0.36236298084259033,0.9847546219825745,0.5308181047439575,1.0019012689590454,0.28673210740089417,0.000997814116999507,-0.0038133009802550077,-0.00861725490540266,0.00532972626388073,0.0032751518301665783,-0.005818909965455532,2.8746999266576374,-6.051807299955216,0.8106100610660154,0.028746999266576374,-0.06051807299955216,0.008106100610660154 +karman_re400,sr,345,138.0,1.000577449798584,0.3850920498371124,1.0078589916229248,0.5326775312423706,1.0690679550170898,0.2892533242702484,-0.0016142327804118395,-0.005321962758898735,-0.004008837975561619,0.007287354674190283,0.0016494208248332143,-0.005898051895201206,2.267831028150093,-3.7510814481111354,3.111335912910097,0.02267831028150093,-0.037510814481111356,0.03111335912910097 +karman_re400,sr,346,138.4,0.9633007049560547,0.3194151520729065,1.0466394424438477,0.5337207913398743,1.130629062652588,0.2580086588859558,-0.00373259698972106,-0.006260034628212452,9.758492524269968e-06,0.008286595344543457,-0.0005367132253013551,-0.006761221680790186,1.0790057183681174,-2.5227562453217587,4.3396611156994735,0.010790057183681175,-0.025227562453217587,0.04339661115699474 +karman_re400,sr,347,138.8,0.9179515242576599,0.22318261861801147,1.0958623886108398,0.591885507106781,1.1842156648635864,0.20993977785110474,-0.0035020452924072742,-0.006210299674421549,0.0034449975937604904,0.008251783438026905,-0.0023160981945693493,-0.007082391530275345,-0.10420981599836904,-2.433780732933968,4.428636628087264,-0.0010420981599836903,-0.02433780732933968,0.04428636628087264 +karman_re400,sr,348,139.2,0.8853756189346313,0.09093594551086426,1.1107765436172485,0.2812862694263458,1.2201836109161377,0.1638803333044052,-0.0005504741566255689,-0.005721734371036291,0.005537945777177811,0.007978376932442188,-0.003902273252606392,-0.005513274110853672,-1.0986162915066036,-2.666553961357131,4.195863399664101,-0.010986162915066036,-0.026665539613571314,0.04195863399664101 +karman_re400,sr,349,139.6,0.8719027042388916,-0.08263126015663147,1.033293604850769,-0.22575636208057404,1.2534949779510498,0.21576747298240662,0.002963629551231861,-0.003117630258202553,0.006103693973273039,0.007514994591474533,-0.006779405288398266,-0.0026722392067313194,-1.8002093356129087,-1.8193003944762882,5.043116966544944,-0.01800209335612909,-0.018193003944762882,0.05043116966544944 +karman_re400,sr,350,140.0,0.9052187204360962,-0.2112300843000412,0.9795036911964417,-0.439622700214386,1.1335357427597046,-0.0031111417338252068,0.0039388565346598625,0.0002225602074759081,0.004963379818946123,0.006490846164524555,-0.009993243031203747,-0.0018232224974781275,-2.4567518496462912,-0.26457503604677335,6.597842324974459,-0.024567518496462912,-0.0026457503604677335,0.0659784232497446 +karman_re400,sr,351,140.4,0.9779273867607117,-0.272148996591568,0.9793197512626648,-0.5212789177894592,1.0753827095031738,-0.35645171999931335,0.0016618665540590882,0.003118065884336829,0.00360085372813046,0.005803227890282869,-0.009361710399389267,-0.004723972640931606,-2.8521639168680006,-0.37909207137309764,6.483325289648134,-0.028521639168680005,-0.0037909207137309764,0.06483325289648134 +karman_re400,sr,352,140.8,1.049237608909607,-0.28765934705734253,1.0001035928726196,-0.5332124829292297,1.0409928560256958,-0.38702142238616943,-0.0009388512116856873,0.005025723483413458,0.002050151815637946,0.005786858033388853,-0.004671934992074966,-0.006989592686295509,-2.4719054592079144,-2.7254935014357304,4.136923859585502,-0.024719054592079143,-0.027254935014357305,0.04136923859585502 +karman_re400,sr,353,141.2,1.1112874746322632,-0.2587240934371948,1.0327258110046387,-0.5507787466049194,0.9885677099227905,-0.3313215374946594,-0.003274385817348957,0.006068682298064232,-0.00016297186084557325,0.006505610421299934,-0.0005246975342743099,-0.008144844323396683,-1.2818731628859026,-4.217665917077958,2.644751443943275,-0.012818731628859025,-0.042176659170779576,0.02644751443943275 +karman_re400,sr,354,141.6,1.1637904644012451,-0.21003226935863495,1.0963778495788574,-0.5818907022476196,0.9364057779312134,-0.24632349610328674,-0.003761658677831292,0.006209079176187515,-0.0022118613123893738,0.007098430301994085,0.0032276632264256477,-0.00833817943930626,-0.06897953661697652,-4.503088801046697,2.359328559974535,-0.0006897953661697652,-0.04503088801046697,0.02359328559974535 +karman_re400,sr,355,142.0,1.189049243927002,-0.14797739684581757,1.1161847114562988,-0.3298967778682709,0.8976372480392456,-0.1274794340133667,-0.0012428718619048595,0.005940632428973913,-0.003656222717836499,0.006061323918402195,0.005726105999201536,-0.008048984222114086,1.0372940315447479,-4.241869351350162,2.6205480096710705,0.01037294031544748,-0.04241869351350162,0.026205480096710705 +karman_re400,sr,356,142.4,1.1945992708206177,-0.16476081311702728,1.0491151809692383,0.13033373653888702,0.8788196444511414,0.04082177206873894,0.0026209885254502296,0.003944500349462032,-0.006278487388044596,0.003306018188595772,0.006488794460892677,-0.007527044974267483,1.7891699009219975,-4.730921652040984,2.131495708980248,0.017891699009219976,-0.04730921652040984,0.02131495708980248 +karman_re400,sr,357,142.8,1.1522499322891235,-0.21223986148834229,0.9898906946182251,0.37432098388671875,0.8968666791915894,0.19642814993858337,0.004366727080196142,0.0007039884221740067,-0.009787697345018387,0.0014930299948900938,0.005555869545787573,-0.006573365535587072,2.43466596509504,-6.191299655950182,0.6711177050710497,0.0243466596509504,-0.061912996559501825,0.006711177050710497 +karman_re400,sr,358,143.2,1.0297870635986328,0.2712644636631012,0.9766597747802734,0.49077677726745605,0.966905951499939,0.2646922767162323,0.0024613228160887957,-0.0023729719687253237,-0.010445219464600086,0.0036693818401545286,0.004070955328643322,-0.005820172373205423,2.925952488102539,-6.753193825376549,0.10922353564468334,0.02925952488102539,-0.0675319382537655,0.0010922353564468334 +karman_re400,sr,359,143.6,1.0293338298797607,0.41824766993522644,0.9886673092842102,0.5174798369407654,1.0399367809295654,0.2918614149093628,-6.873745587654412e-05,-0.004689539782702923,-0.0063704741187393665,0.006228738930076361,0.0025905719958245754,-0.005643845070153475,2.768172358897369,-4.8375910234243555,2.024826337596877,0.02768172358897369,-0.048375910234243556,0.020248263375968772 +karman_re400,sr,360,144.0,0.9982241988182068,0.36298149824142456,1.0064698457717896,0.5332439541816711,1.1042332649230957,0.26841506361961365,-0.0027842624112963676,-0.005870715249329805,-0.0020769163966178894,0.007845661602914333,0.0005677635781466961,-0.006230367813259363,1.7088331130241323,-3.048751911971946,3.813665449049286,0.017088331130241323,-0.03048751911971946,0.03813665449049286 +karman_re400,sr,361,144.4,0.9566400647163391,0.277749627828598,1.0428522825241089,0.557599663734436,1.163007140159607,0.22454139590263367,-0.004091923590749502,-0.006260614842176437,0.002216341905295849,0.008477458730340004,-0.0016033672727644444,-0.007078725844621658,0.5043291437686644,-2.3749827814843005,4.487434579536932,0.005043291437686645,-0.023749827814843007,0.044874345795369315 +karman_re400,sr,362,144.8,0.9214343428611755,0.16189056634902954,1.0420113801956177,0.4094749689102173,1.2049288749694824,0.15527018904685974,-0.0022575443144887686,-0.006135151255875826,0.005236591678112745,0.007907402701675892,-0.0031300208065658808,-0.00667141517624259,-0.7284021800739551,-2.516589984408836,4.345827376612396,-0.007284021800739551,-0.02516589984408836,0.04345827376612396 +karman_re400,sr,363,145.2,0.8947553038597107,-0.013553841039538383,1.0087896585464478,-0.07412464916706085,1.2139384746551514,0.10611628741025925,0.0015112487599253654,-0.004748757928609848,0.006428217515349388,0.007507529109716415,-0.005230543203651905,-0.0043090879917144775,-1.595477165821467,-2.623007693422717,4.239409667598515,-0.01595477165821467,-0.02623007693422717,0.042394096675985156 +karman_re400,sr,364,145.6,0.895843505859375,-0.1876692771911621,0.9723978638648987,-0.35895732045173645,1.1949849128723145,0.16183823347091675,0.004205220378935337,-0.0014269782695919275,0.005886666942387819,0.006827692501246929,-0.008635728619992733,-0.00172652886249125,-2.2232757335189683,-1.3397771607584503,5.5226402002627815,-0.022232757335189684,-0.013397771607584503,0.055226402002627815 +karman_re400,sr,365,146.0,0.9586278796195984,-0.26073306798934937,0.9676949381828308,-0.49034106731414795,1.0119962692260742,-0.05090812221169472,0.0029971559997648,0.0015884732129052281,0.004546469543129206,0.005981063935905695,-0.01075967587530613,-0.0025881798937916756,-2.7693586329276694,-0.09560423199976675,6.766813129021465,-0.027693586329276695,-0.0009560423199976675,0.06766813129021465 +karman_re400,sr,366,146.4,1.0296462774276733,-0.2967533469200134,0.9813129305839539,-0.5230548977851868,0.9584657549858093,-0.3851771950721741,0.0005378311616368592,0.004375268705189228,0.0029494641348719597,0.005662843119353056,-0.00790405459702015,-0.005666726268827915,-2.9188163736012296,-1.2126327034189233,5.649784657602309,-0.029188163736012296,-0.012126327034189232,0.05649784657602309 +karman_re400,sr,367,146.8,1.0939985513687134,-0.2848471701145172,1.0029963254928589,-0.5336614847183228,0.9674133062362671,-0.38482552766799927,-0.0022363457828760147,0.0056427293457090855,0.0012421824503690004,0.006007250398397446,-0.0034167813137173653,-0.007513186428695917,-2.0697195355062004,-3.433747836589469,3.4286695244317626,-0.020697195355062006,-0.034337478365894694,0.03428669524431763 +karman_re400,sr,368,147.2,1.1561400890350342,-0.24765537679195404,1.048781156539917,-0.5517055988311768,0.938398540019989,-0.30599862337112427,-0.00408893870189786,0.006363242398947477,-0.0009291082387790084,0.006967262830585241,0.0008526854799129069,-0.0084729278460145,-0.8884444350209378,-4.415926536584266,2.4464908244369665,-0.008884444350209379,-0.04415926536584266,0.024464908244369667 +karman_re400,sr,369,147.6,1.208243489265442,-0.18803240358829498,1.07427179813385,-0.5859646797180176,0.902862548828125,-0.20014655590057373,-0.0030851110350340605,0.006228169891983271,-0.0025595419574528933,0.006999610457569361,0.00411069905385375,-0.008069880306720734,0.33978043056051327,-4.4157493224293445,2.446668038591888,0.0033978043056051327,-0.044157493224293444,0.02446668038591888 +karman_re400,sr,370,148.0,1.2320117950439453,-0.1279560923576355,1.0563740730285645,-0.08554069697856903,0.881834089756012,-0.05360008776187897,0.00030174487619660795,0.005382099188864231,-0.00433715432882309,0.005059758201241493,0.0058698104694485664,-0.007754470221698284,1.2719863915717644,-4.131048388222322,2.7313689727989106,0.012719863915717644,-0.04131048388222322,0.027313689727989105 +karman_re400,sr,371,148.4,1.2226476669311523,-0.14994092285633087,0.9935152530670166,0.34310707449913025,0.874980092048645,0.12682528793811798,0.003438370767980814,0.0021542049944400787,-0.007431728765368462,0.0023029290605336428,0.0059106373228132725,-0.007304864469915628,1.9464244696175235,-5.1932563306981105,1.669161030323122,0.019464244696175234,-0.05193256330698111,0.01669161030323122 +karman_re400,sr,372,148.8,1.0712954998016357,0.04582233354449272,0.974703311920166,0.4858394265174866,0.9225294589996338,0.23485884070396423,0.003460223088040948,-0.0009248932474292815,-0.010276254266500473,0.0022994903847575188,0.004738877527415752,-0.006264531519263983,2.5443320663777973,-6.701928693477757,0.16048866754347424,0.025443320663777972,-0.06701928693477757,0.0016048866754347425 +karman_re400,sr,373,149.2,1.0084214210510254,0.36401012539863586,0.985920250415802,0.5354989767074585,0.996174156665802,0.28541260957717896,0.0009407648467458785,-0.003834497882053256,-0.008495443500578403,0.005435684230178595,0.003233651164919138,-0.005811937619000673,2.8633213218448055,-6.023912969843005,0.8385043911782271,0.028633213218448056,-0.06023912969843005,0.008385043911782271 +karman_re400,sr,374,149.6,1.0028077363967896,0.3890421986579895,1.009239912033081,0.5375577807426453,1.0650279521942139,0.2889098823070526,-0.0016505303792655468,-0.005315952468663454,-0.003800035919994116,0.007377395406365395,0.0015959414886310697,-0.005909566301852465,2.236688115868739,-3.6772373450269233,3.1851800159943084,0.02236688115868739,-0.036772373450269236,0.031851800159943086 +karman_re400,sr,375,150.0,0.9667215943336487,0.3234151005744934,1.0497111082077026,0.5392258167266846,1.1274545192718506,0.25720319151878357,-0.003740493441000581,-0.00624790508300066,0.00024352018954232335,0.008292796090245247,-0.0006314981146715581,-0.006782222539186478,1.0289897803340973,-2.4714085961790095,4.391008764842223,0.010289897803340973,-0.024714085961790096,0.043910087648422226 +karman_re400,sr,376,150.4,0.9217204451560974,0.22644838690757751,1.1039680242538452,0.5920451283454895,1.1810717582702637,0.20934338867664337,-0.0034316317178308964,-0.006192006636410952,0.003631721716374159,0.008217363618314266,-0.002405864419415593,-0.00706886313855648,-0.16686224282595,-2.443458391844413,4.41895896917682,-0.0016686224282595,-0.024434583918444133,0.0441895896917682 +karman_re400,sr,377,150.8,0.8888891339302063,0.09158811718225479,1.1165211200714111,0.2698438763618469,1.217581033706665,0.1656275987625122,-0.00044666806934401393,-0.005689810961484909,0.005665105767548084,0.007947173900902271,-0.0039824433624744415,-0.0054510366171598434,-1.1513418165324323,-2.6802146758698644,4.182202685151368,-0.011513418165324323,-0.026802146758698644,0.04182202685151368 +karman_re400,sr,378,151.2,0.8744019865989685,-0.08558979630470276,1.0345957279205322,-0.22314853966236115,1.2521088123321533,0.22224050760269165,0.0030854172073304653,-0.003065031487494707,0.006155071314424276,0.007484284695237875,-0.006901772692799568,-0.0025737183168530464,-1.8397462977135774,-1.7990072422960184,5.063410118725214,-0.018397462977135775,-0.017990072422960184,0.05063410118725214 +karman_re400,sr,379,151.6,0.9083312749862671,-0.21360483765602112,0.9814064502716064,-0.4356401562690735,1.1313467025756836,-0.02085990458726883,0.003975857049226761,0.0001796350843505934,0.005011006724089384,0.0064202905632555485,-0.010144757106900215,-0.0017572403885424137,-2.4898842284576883,-0.22023404484028752,6.642183316180946,-0.024898842284576884,-0.0022023404484028753,0.06642183316180945 +karman_re400,sr,380,152.0,0.9816694855690002,-0.2732834219932556,0.9818309545516968,-0.5184904932975769,1.081528902053833,-0.3609314262866974,0.0017033428885042667,0.0031309928745031357,0.003598873969167471,0.0057557132095098495,-0.009410963393747807,-0.0047169034369289875,-2.8901392489741444,-0.38208263636032136,6.48033472466091,-0.028901392489741443,-0.0038208263636032138,0.0648033472466091 +karman_re400,sr,381,152.4,1.0527821779251099,-0.2868274748325348,1.0019890069961548,-0.529237687587738,1.044080376625061,-0.38284537196159363,-0.0009131607948802412,0.005015881732106209,0.0020496773067861795,0.005742528010159731,-0.004703901708126068,-0.006934532430022955,-2.480920262722028,-2.7519404303702433,4.110476930650989,-0.024809202627220278,-0.027519404303702432,0.04110476930650989 +karman_re400,sr,382,152.8,1.1146372556686401,-0.2566850781440735,1.0318013429641724,-0.5473806858062744,0.9910262227058411,-0.32534322142601013,-0.0032878147903829813,0.006089597474783659,-0.00017713704437483102,0.006480809301137924,-0.0005407111602835357,-0.008130805566906929,-1.2878785919146605,-4.2106495154080905,2.6517678456131417,-0.012878785919146605,-0.04210649515408091,0.026517678456131417 +karman_re400,sr,383,153.2,1.1668753623962402,-0.20653629302978516,1.0865777730941772,-0.5722463726997375,0.9393037557601929,-0.23938655853271484,-0.003765539498999715,0.006215940695255995,-0.0022097285836935043,0.007080105599015951,0.003264007857069373,-0.008310101926326752,-0.06933202668084934,-4.510126212642148,2.3522911483790843,-0.0006933202668084935,-0.04510126212642148,0.023522911483790845 +karman_re400,sr,384,153.6,1.1918284893035889,-0.14186251163482666,1.0970768928527832,-0.30256935954093933,0.9014965295791626,-0.11872777342796326,-0.001214558258652687,0.005945850163698196,-0.003649162594228983,0.006045803427696228,0.005746822338551283,-0.0080144377425313,1.0438180947133344,-4.235492077706378,2.626925283314854,0.010438180947133344,-0.04235492077706378,0.026269252833148543 +karman_re400,sr,385,154.0,1.198158621788025,-0.15661126375198364,1.0356941223144531,0.1459895819425583,0.8810629844665527,0.05426926538348198,0.0026646617334336042,0.003904536133632064,-0.006276273168623447,0.003290798980742693,0.006499758921563625,-0.007510678842663765,1.791774082773154,-4.718480731178795,2.143936629842437,0.01791774082773154,-0.04718480731178795,0.02143936629842437 +karman_re400,sr,386,154.4,1.1581370830535889,-0.2104673534631729,0.9843246340751648,0.3807835876941681,0.901797354221344,0.20315536856651306,0.004353465978056192,0.0006455254042521119,-0.00980594102293253,0.0015030023641884327,0.005560713354498148,-0.006570420227944851,2.4363345986232514,-6.190549692954354,0.6718676680668785,0.024363345986232514,-0.061905496929543544,0.006718676680668785 +karman_re400,sr,387,154.8,1.0215659141540527,0.26099738478660583,0.9738889932632446,0.49400752782821655,0.9721413254737854,0.26765403151512146,0.0024172477424144745,-0.002438754541799426,-0.010438981465995312,0.0037249205633997917,0.004061007406562567,-0.005834434647113085,2.9303551729159447,-6.74474707406279,0.11767028695844228,0.02930355172915945,-0.0674474707406279,0.0011767028695844229 +karman_re400,sr,388,155.2,1.0184880495071411,0.41510260105133057,0.9866700172424316,0.5179768204689026,1.0440524816513062,0.2930968403816223,-0.00013441596820484847,-0.0047370088286697865,-0.006364503875374794,0.006282362155616283,0.0025738426484167576,-0.005669383332133293,2.765085773148495,-4.810600729095585,2.0518166319256474,0.02765085773148495,-0.04810600729095585,0.020518166319256476 +karman_re400,sr,389,155.6,0.9883849620819092,0.36027809977531433,1.0054776668548584,0.5354375243186951,1.1077184677124023,0.2691434323787689,-0.0028400898445397615,-0.005902661010622978,-0.002082064049318433,0.007916854694485664,0.000555159873329103,-0.00626218318939209,1.70450439828837,-3.0303874100619073,3.832029950959325,0.0170450439828837,-0.030303874100619074,0.03832029950959325 +karman_re400,sr,390,156.0,0.9464019536972046,0.27538350224494934,1.0441254377365112,0.5660185813903809,1.1669750213623047,0.22494648396968842,-0.004100983031094074,-0.006277946289628744,0.0021973643451929092,0.008523400872945786,-0.0016052343416959047,-0.007112368941307068,0.5029073065649321,-2.349234051960846,4.513183309060386,0.005029073065649321,-0.02349234051960846,0.04513183309060386 +karman_re400,sr,391,156.4,0.9114951491355896,0.1610608696937561,1.04575777053833,0.4217207431793213,1.2100497484207153,0.15315498411655426,-0.0022251124028116465,-0.006134869996458292,0.005190915893763304,0.007962904870510101,-0.003135350299999118,-0.0066697848960757256,-0.725139282693435,-2.5085477502854783,4.353869610735754,-0.00725139282693435,-0.025085477502854784,0.04353869610735754 +karman_re400,sr,392,156.8,0.8888083696365356,-0.006967552471905947,1.0118277072906494,-0.08114483952522278,1.2181782722473145,0.09949444979429245,0.0015461614821106195,-0.004697437863796949,0.0063636647537350655,0.007556598167866468,-0.00525425560772419,-0.004280904307961464,-1.5877833009507951,-2.5856493053101595,4.276768055711073,-0.01587783300950795,-0.025856493053101594,0.04276768055711073 +karman_re400,sr,393,157.2,0.8906792998313904,-0.18281486630439758,0.9731298089027405,-0.36795249581336975,1.1988458633422852,0.1529974490404129,0.004174177534878254,-0.0013210484758019447,0.005785147659480572,0.00688139209523797,-0.00866750255227089,-0.001769772614352405,-2.215487652258885,-1.2892622963471632,5.573155064674069,-0.02215487652258885,-0.012892622963471632,0.05573155064674069 +karman_re400,sr,394,157.6,0.953360915184021,-0.25981205701828003,0.9680148363113403,-0.49553582072257996,1.0161082744598389,-0.03667248412966728,0.00291796145029366,0.0016643272247165442,0.004473669454455376,0.0060188365168869495,-0.01068110577762127,-0.0027761878445744514,-2.756058493288753,-0.088767252049466,6.773650108971767,-0.02756058493288753,-0.0008876725204946601,0.06773650108971767 +karman_re400,sr,395,158.0,1.025460958480835,-0.2969930171966553,0.9810916781425476,-0.5295712351799011,0.947806179523468,-0.3785078823566437,0.0004343073524069041,0.004392116330564022,0.0029054174665361643,0.005699002183973789,-0.007653127424418926,-0.005861390382051468,-2.8899507273957084,-1.310870243580616,5.551547117440617,-0.028899507273957084,-0.013108702435806162,0.05551547117440617 +karman_re400,sr,396,158.4,1.0911167860031128,-0.28561270236968994,1.0037461519241333,-0.5399977564811707,0.960631251335144,-0.38850197196006775,-0.002282898174598813,0.00563838379457593,0.0011540581472218037,0.006053723860532045,-0.003139595966786146,-0.00758356275036931,-2.0134692874408695,-3.537392844409678,3.3250245166115544,-0.020134692874408694,-0.03537392844409678,0.03325024516611554 +karman_re400,sr,397,158.8,1.1541732549667358,-0.2483549565076828,1.053109049797058,-0.5598424673080444,0.933820903301239,-0.3119385242462158,-0.004077020566910505,0.006330511532723904,-0.0010444376384839416,0.007002540864050388,0.0010678719263523817,-0.008465893566608429,-0.8187814494073846,-4.431556398760022,2.4308609622612103,-0.008187814494073846,-0.04431556398760022,0.024308609622612103 +karman_re400,sr,398,159.2,1.205976128578186,-0.18873752653598785,1.0852665901184082,-0.5907645225524902,0.8986993432044983,-0.20673868060112,-0.002978863660246134,0.006194108631461859,-0.0026527303270995617,0.006969728972762823,0.004281264264136553,-0.00805840827524662,0.4028083867890633,-4.3880816863692615,2.4743356746519702,0.004028083867890633,-0.043880816863692614,0.0247433567465197 +karman_re400,sr,399,159.6,1.2287039756774902,-0.1316612958908081,1.0686924457550049,-0.0864000916481018,0.8789725303649902,-0.06041792407631874,0.00042932480573654175,0.005322103388607502,-0.004470478277653456,0.004949829075485468,0.005969669669866562,-0.007732201833277941,1.3222830695823393,-4.1430861621066475,2.7193311989145843,0.013222830695823393,-0.041430861621066475,0.027193311989145843 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_long.csv new file mode 100644 index 0000000..f8435e0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,target,0,0.0,velocity,upper_ux,1.2120248079299927 +karman_re400,target,0,0.0,velocity,upper_uy,-0.4202609360218048 +karman_re400,target,0,0.0,velocity,center_ux,1.1749510765075684 +karman_re400,target,0,0.0,velocity,center_uy,-0.9050361514091492 +karman_re400,target,0,0.0,velocity,lower_ux,0.8927360773086548 +karman_re400,target,0,0.0,velocity,lower_uy,-0.4203765392303467 +karman_re400,target,1,0.4,velocity,upper_ux,1.342402458190918 +karman_re400,target,1,0.4,velocity,upper_uy,-0.3438524603843689 +karman_re400,target,1,0.4,velocity,center_ux,1.2083001136779785 +karman_re400,target,1,0.4,velocity,center_uy,-0.9104478359222412 +karman_re400,target,1,0.4,velocity,lower_ux,0.7323803901672363 +karman_re400,target,1,0.4,velocity,lower_uy,-0.36145347356796265 +karman_re400,target,2,0.8,velocity,upper_ux,1.4343644380569458 +karman_re400,target,2,0.8,velocity,upper_uy,-0.1897059679031372 +karman_re400,target,2,0.8,velocity,center_ux,1.2473909854888916 +karman_re400,target,2,0.8,velocity,center_uy,-0.5491563677787781 +karman_re400,target,2,0.8,velocity,lower_ux,0.6004230380058289 +karman_re400,target,2,0.8,velocity,lower_uy,-0.19426627457141876 +karman_re400,target,3,1.2,velocity,upper_ux,1.4488788843154907 +karman_re400,target,3,1.2,velocity,upper_uy,0.022213594987988472 +karman_re400,target,3,1.2,velocity,center_ux,1.255968451499939 +karman_re400,target,3,1.2,velocity,center_uy,0.188865065574646 +karman_re400,target,3,1.2,velocity,lower_ux,0.5737820267677307 +karman_re400,target,3,1.2,velocity,lower_uy,0.05653338134288788 +karman_re400,target,4,1.6,velocity,upper_ux,1.373765468597412 +karman_re400,target,4,1.6,velocity,upper_uy,0.21835777163505554 +karman_re400,target,4,1.6,velocity,center_ux,1.2212796211242676 +karman_re400,target,4,1.6,velocity,center_uy,0.7766143679618835 +karman_re400,target,4,1.6,velocity,lower_ux,0.6727274060249329 +karman_re400,target,4,1.6,velocity,lower_uy,0.27646422386169434 +karman_re400,target,5,2.0,velocity,upper_ux,1.2455558776855469 +karman_re400,target,5,2.0,velocity,upper_uy,0.3478473424911499 +karman_re400,target,5,2.0,velocity,center_ux,1.1742233037948608 +karman_re400,target,5,2.0,velocity,center_uy,0.9184023141860962 +karman_re400,target,5,2.0,velocity,lower_ux,0.8352329730987549 +karman_re400,target,5,2.0,velocity,lower_uy,0.38826489448547363 +karman_re400,target,6,2.4,velocity,upper_ux,1.1004387140274048 +karman_re400,target,6,2.4,velocity,upper_uy,0.41808444261550903 +karman_re400,target,6,2.4,velocity,center_ux,1.1519627571105957 +karman_re400,target,6,2.4,velocity,center_uy,0.8822964429855347 +karman_re400,target,6,2.4,velocity,lower_ux,1.002315640449524 +karman_re400,target,6,2.4,velocity,lower_uy,0.41020098328590393 +karman_re400,target,7,2.8,velocity,upper_ux,0.9423767924308777 +karman_re400,target,7,2.8,velocity,upper_uy,0.45078614354133606 +karman_re400,target,7,2.8,velocity,center_ux,1.1604948043823242 +karman_re400,target,7,2.8,velocity,center_uy,0.9072331190109253 +karman_re400,target,7,2.8,velocity,lower_ux,1.1544888019561768 +karman_re400,target,7,2.8,velocity,lower_uy,0.4050610065460205 +karman_re400,target,8,3.2,velocity,upper_ux,0.7753628492355347 +karman_re400,target,8,3.2,velocity,upper_uy,0.4166509509086609 +karman_re400,target,8,3.2,velocity,center_ux,1.2055919170379639 +karman_re400,target,8,3.2,velocity,center_uy,0.9401418566703796 +karman_re400,target,8,3.2,velocity,lower_ux,1.291069507598877 +karman_re400,target,8,3.2,velocity,lower_uy,0.35260674357414246 +karman_re400,target,9,3.6,velocity,upper_ux,0.6245367527008057 +karman_re400,target,9,3.6,velocity,upper_uy,0.27366137504577637 +karman_re400,target,9,3.6,velocity,center_ux,1.273838996887207 +karman_re400,target,9,3.6,velocity,center_uy,0.6906351447105408 +karman_re400,target,9,3.6,velocity,lower_ux,1.3988887071609497 +karman_re400,target,9,3.6,velocity,lower_uy,0.21903207898139954 +karman_re400,target,10,4.0,velocity,upper_ux,0.560326337814331 +karman_re400,target,10,4.0,velocity,upper_uy,0.019636090844869614 +karman_re400,target,10,4.0,velocity,center_ux,1.3097147941589355 +karman_re400,target,10,4.0,velocity,center_uy,-0.0007077599875628948 +karman_re400,target,10,4.0,velocity,lower_ux,1.434166431427002 +karman_re400,target,10,4.0,velocity,lower_uy,0.01883859559893608 +karman_re400,target,11,4.4,velocity,upper_ux,0.634819746017456 +karman_re400,target,11,4.4,velocity,upper_uy,-0.236068457365036 +karman_re400,target,11,4.4,velocity,center_ux,1.2849270105361938 +karman_re400,target,11,4.4,velocity,center_uy,-0.676206111907959 +karman_re400,target,11,4.4,velocity,lower_ux,1.378390908241272 +karman_re400,target,11,4.4,velocity,lower_uy,-0.18361996114253998 +karman_re400,target,12,4.8,velocity,upper_ux,0.7969540953636169 +karman_re400,target,12,4.8,velocity,upper_uy,-0.3799777925014496 +karman_re400,target,12,4.8,velocity,center_ux,1.2254160642623901 +karman_re400,target,12,4.8,velocity,center_uy,-0.9126290082931519 +karman_re400,target,12,4.8,velocity,lower_ux,1.2601410150527954 +karman_re400,target,12,4.8,velocity,lower_uy,-0.32803165912628174 +karman_re400,target,13,5.2,velocity,upper_ux,0.9682785868644714 +karman_re400,target,13,5.2,velocity,upper_uy,-0.41440948843955994 +karman_re400,target,13,5.2,velocity,center_ux,1.186139702796936 +karman_re400,target,13,5.2,velocity,center_uy,-0.8899717926979065 +karman_re400,target,13,5.2,velocity,lower_ux,1.1157454252243042 +karman_re400,target,13,5.2,velocity,lower_uy,-0.41235968470573425 +karman_re400,target,14,5.6,velocity,upper_ux,1.128709077835083 +karman_re400,target,14,5.6,velocity,upper_uy,-0.4022729992866516 +karman_re400,target,14,5.6,velocity,center_ux,1.1959125995635986 +karman_re400,target,14,5.6,velocity,center_uy,-0.901466429233551 +karman_re400,target,14,5.6,velocity,lower_ux,0.9608212113380432 +karman_re400,target,14,5.6,velocity,lower_uy,-0.4575628340244293 +karman_re400,target,15,6.0,velocity,upper_ux,1.26914644241333 +karman_re400,target,15,6.0,velocity,upper_uy,-0.3566041588783264 +karman_re400,target,15,6.0,velocity,center_ux,1.253311038017273 +karman_re400,target,15,6.0,velocity,center_uy,-0.9350844025611877 +karman_re400,target,15,6.0,velocity,lower_ux,0.7890927791595459 +karman_re400,target,15,6.0,velocity,lower_uy,-0.43687209486961365 +karman_re400,target,16,6.4,velocity,upper_ux,1.375434160232544 +karman_re400,target,16,6.4,velocity,upper_uy,-0.23402078449726105 +karman_re400,target,16,6.4,velocity,center_ux,1.3420203924179077 +karman_re400,target,16,6.4,velocity,center_uy,-0.7274941205978394 +karman_re400,target,16,6.4,velocity,lower_ux,0.6218501329421997 +karman_re400,target,16,6.4,velocity,lower_uy,-0.30157193541526794 +karman_re400,target,17,6.8,velocity,upper_ux,1.417791724205017 +karman_re400,target,17,6.8,velocity,upper_uy,-0.050407152622938156 +karman_re400,target,17,6.8,velocity,center_ux,1.3916412591934204 +karman_re400,target,17,6.8,velocity,center_uy,-0.07575255632400513 +karman_re400,target,17,6.8,velocity,lower_ux,0.539686381816864 +karman_re400,target,17,6.8,velocity,lower_uy,-0.03741087391972542 +karman_re400,target,18,7.2,velocity,upper_ux,1.3713443279266357 +karman_re400,target,18,7.2,velocity,upper_uy,0.14203406870365143 +karman_re400,target,18,7.2,velocity,center_ux,1.3530964851379395 +karman_re400,target,18,7.2,velocity,center_uy,0.6099657416343689 +karman_re400,target,18,7.2,velocity,lower_ux,0.6034209728240967 +karman_re400,target,18,7.2,velocity,lower_uy,0.2410980761051178 +karman_re400,target,19,7.6,velocity,upper_ux,1.2653709650039673 +karman_re400,target,19,7.6,velocity,upper_uy,0.28474098443984985 +karman_re400,target,19,7.6,velocity,center_ux,1.264355182647705 +karman_re400,target,19,7.6,velocity,center_uy,0.8781915307044983 +karman_re400,target,19,7.6,velocity,lower_ux,0.7682840824127197 +karman_re400,target,19,7.6,velocity,lower_uy,0.40044596791267395 +karman_re400,target,20,8.0,velocity,upper_ux,1.1361134052276611 +karman_re400,target,20,8.0,velocity,upper_uy,0.36988601088523865 +karman_re400,target,20,8.0,velocity,center_ux,1.1990392208099365 +karman_re400,target,20,8.0,velocity,center_uy,0.8635536432266235 +karman_re400,target,20,8.0,velocity,lower_ux,0.9485774040222168 +karman_re400,target,20,8.0,velocity,lower_uy,0.44024989008903503 +karman_re400,target,21,8.4,velocity,upper_ux,0.9927776455879211 +karman_re400,target,21,8.4,velocity,upper_uy,0.41941216588020325 +karman_re400,target,21,8.4,velocity,center_ux,1.179783821105957 +karman_re400,target,21,8.4,velocity,center_uy,0.8682653903961182 +karman_re400,target,21,8.4,velocity,lower_ux,1.1112067699432373 +karman_re400,target,21,8.4,velocity,lower_uy,0.4285144507884979 +karman_re400,target,22,8.8,velocity,upper_ux,0.8348067402839661 +karman_re400,target,22,8.8,velocity,upper_uy,0.41676953434944153 +karman_re400,target,22,8.8,velocity,center_ux,1.2003777027130127 +karman_re400,target,22,8.8,velocity,center_uy,0.9247766733169556 +karman_re400,target,22,8.8,velocity,lower_ux,1.2568199634552002 +karman_re400,target,22,8.8,velocity,lower_uy,0.39875686168670654 +karman_re400,target,23,9.2,velocity,upper_ux,0.6743665933609009 +karman_re400,target,23,9.2,velocity,upper_uy,0.3215062618255615 +karman_re400,target,23,9.2,velocity,center_ux,1.2517573833465576 +karman_re400,target,23,9.2,velocity,center_uy,0.8387874364852905 +karman_re400,target,23,9.2,velocity,lower_ux,1.3767832517623901 +karman_re400,target,23,9.2,velocity,lower_uy,0.2945161461830139 +karman_re400,target,24,9.6,velocity,upper_ux,0.5663478970527649 +karman_re400,target,24,9.6,velocity,upper_uy,0.1107029840350151 +karman_re400,target,24,9.6,velocity,center_ux,1.289695143699646 +karman_re400,target,24,9.6,velocity,center_uy,0.3073548674583435 +karman_re400,target,24,9.6,velocity,lower_ux,1.4428257942199707 +karman_re400,target,24,9.6,velocity,lower_uy,0.11849313974380493 +karman_re400,target,25,10.0,velocity,upper_ux,0.5866062045097351 +karman_re400,target,25,10.0,velocity,upper_uy,-0.151419997215271 +karman_re400,target,25,10.0,velocity,center_ux,1.2789416313171387 +karman_re400,target,25,10.0,velocity,center_uy,-0.44037187099456787 +karman_re400,target,25,10.0,velocity,lower_ux,1.4235594272613525 +karman_re400,target,25,10.0,velocity,lower_uy,-0.09125809371471405 +karman_re400,target,26,10.4,velocity,upper_ux,0.7212661504745483 +karman_re400,target,26,10.4,velocity,upper_uy,-0.33918502926826477 +karman_re400,target,26,10.4,velocity,center_ux,1.224654197692871 +karman_re400,target,26,10.4,velocity,center_uy,-0.8643913865089417 +karman_re400,target,26,10.4,velocity,lower_ux,1.3279061317443848 +karman_re400,target,26,10.4,velocity,lower_uy,-0.26192790269851685 +karman_re400,target,27,10.8,velocity,upper_ux,0.8920208811759949 +karman_re400,target,27,10.8,velocity,upper_uy,-0.41380175948143005 +karman_re400,target,27,10.8,velocity,center_ux,1.172156572341919 +karman_re400,target,27,10.8,velocity,center_uy,-0.8982797861099243 +karman_re400,target,27,10.8,velocity,lower_ux,1.1945475339889526 +karman_re400,target,27,10.8,velocity,lower_uy,-0.36551764607429504 +karman_re400,target,28,11.2,velocity,upper_ux,1.0563626289367676 +karman_re400,target,28,11.2,velocity,upper_uy,-0.4173983037471771 +karman_re400,target,28,11.2,velocity,center_ux,1.153164267539978 +karman_re400,target,28,11.2,velocity,center_uy,-0.8722547888755798 +karman_re400,target,28,11.2,velocity,lower_ux,1.0499099493026733 +karman_re400,target,28,11.2,velocity,lower_uy,-0.42193928360939026 +karman_re400,target,29,11.6,velocity,upper_ux,1.204798936843872 +karman_re400,target,29,11.6,velocity,upper_uy,-0.4062516391277313 +karman_re400,target,29,11.6,velocity,center_ux,1.1653155088424683 +karman_re400,target,29,11.6,velocity,center_uy,-0.9190737009048462 +karman_re400,target,29,11.6,velocity,lower_ux,0.8917550444602966 +karman_re400,target,29,11.6,velocity,lower_uy,-0.4381961524486542 +karman_re400,target,30,12.0,velocity,upper_ux,1.3341349363327026 +karman_re400,target,30,12.0,velocity,upper_uy,-0.3283812999725342 +karman_re400,target,30,12.0,velocity,center_ux,1.2094883918762207 +karman_re400,target,30,12.0,velocity,center_uy,-0.9125614762306213 +karman_re400,target,30,12.0,velocity,lower_ux,0.7275323271751404 +karman_re400,target,30,12.0,velocity,lower_uy,-0.37551864981651306 +karman_re400,target,31,12.4,velocity,upper_ux,1.4273256063461304 +karman_re400,target,31,12.4,velocity,upper_uy,-0.17112736403942108 +karman_re400,target,31,12.4,velocity,center_ux,1.2635173797607422 +karman_re400,target,31,12.4,velocity,center_uy,-0.5247402191162109 +karman_re400,target,31,12.4,velocity,lower_ux,0.5980023741722107 +karman_re400,target,31,12.4,velocity,lower_uy,-0.19999101758003235 +karman_re400,target,32,12.8,velocity,upper_ux,1.4361991882324219 +karman_re400,target,32,12.8,velocity,upper_uy,0.041783180087804794 +karman_re400,target,32,12.8,velocity,center_ux,1.278151273727417 +karman_re400,target,32,12.8,velocity,center_uy,0.22568605840206146 +karman_re400,target,32,12.8,velocity,lower_ux,0.574632465839386 +karman_re400,target,32,12.8,velocity,lower_uy,0.061137374490499496 +karman_re400,target,33,13.2,velocity,upper_ux,1.3568118810653687 +karman_re400,target,33,13.2,velocity,upper_uy,0.2344856858253479 +karman_re400,target,33,13.2,velocity,center_ux,1.2429314851760864 +karman_re400,target,33,13.2,velocity,center_uy,0.7958700656890869 +karman_re400,target,33,13.2,velocity,lower_ux,0.6804575324058533 +karman_re400,target,33,13.2,velocity,lower_uy,0.28463026881217957 +karman_re400,target,34,13.6,velocity,upper_ux,1.226958155632019 +karman_re400,target,34,13.6,velocity,upper_uy,0.3607170581817627 +karman_re400,target,34,13.6,velocity,center_ux,1.193595051765442 +karman_re400,target,34,13.6,velocity,center_uy,0.9201030135154724 +karman_re400,target,34,13.6,velocity,lower_ux,0.8484411835670471 +karman_re400,target,34,13.6,velocity,lower_uy,0.39220166206359863 +karman_re400,target,35,14.0,velocity,upper_ux,1.0769866704940796 +karman_re400,target,35,14.0,velocity,upper_uy,0.4318449795246124 +karman_re400,target,35,14.0,velocity,center_ux,1.1714366674423218 +karman_re400,target,35,14.0,velocity,center_uy,0.8883988261222839 +karman_re400,target,35,14.0,velocity,lower_ux,1.0143961906433105 +karman_re400,target,35,14.0,velocity,lower_uy,0.40776851773262024 +karman_re400,target,36,14.4,velocity,upper_ux,0.9164957404136658 +karman_re400,target,36,14.4,velocity,upper_uy,0.4619840383529663 +karman_re400,target,36,14.4,velocity,center_ux,1.1944429874420166 +karman_re400,target,36,14.4,velocity,center_uy,0.9182741045951843 +karman_re400,target,36,14.4,velocity,lower_ux,1.1689783334732056 +karman_re400,target,36,14.4,velocity,lower_uy,0.39493224024772644 +karman_re400,target,37,14.8,velocity,upper_ux,0.7432093620300293 +karman_re400,target,37,14.8,velocity,upper_uy,0.41425272822380066 +karman_re400,target,37,14.8,velocity,center_ux,1.2629578113555908 +karman_re400,target,37,14.8,velocity,center_uy,0.9229826927185059 +karman_re400,target,37,14.8,velocity,lower_ux,1.302474856376648 +karman_re400,target,37,14.8,velocity,lower_uy,0.3287750482559204 +karman_re400,target,38,15.2,velocity,upper_ux,0.591031014919281 +karman_re400,target,38,15.2,velocity,upper_uy,0.24200157821178436 +karman_re400,target,38,15.2,velocity,center_ux,1.346731424331665 +karman_re400,target,38,15.2,velocity,center_uy,0.5879356861114502 +karman_re400,target,38,15.2,velocity,lower_ux,1.396555781364441 +karman_re400,target,38,15.2,velocity,lower_uy,0.18591399490833282 +karman_re400,target,39,15.6,velocity,upper_ux,0.547687828540802 +karman_re400,target,39,15.6,velocity,upper_uy,-0.03985374793410301 +karman_re400,target,39,15.6,velocity,center_ux,1.3759151697158813 +karman_re400,target,39,15.6,velocity,center_uy,-0.13830341398715973 +karman_re400,target,39,15.6,velocity,lower_ux,1.4149186611175537 +karman_re400,target,39,15.6,velocity,lower_uy,-0.010761822573840618 +karman_re400,target,40,16.0,velocity,upper_ux,0.6479454040527344 +karman_re400,target,40,16.0,velocity,upper_uy,-0.2928529381752014 +karman_re400,target,40,16.0,velocity,center_ux,1.3231003284454346 +karman_re400,target,40,16.0,velocity,center_uy,-0.7374175786972046 +karman_re400,target,40,16.0,velocity,lower_ux,1.3471392393112183 +karman_re400,target,40,16.0,velocity,lower_uy,-0.19633804261684418 +karman_re400,target,41,16.4,velocity,upper_ux,0.8219239115715027 +karman_re400,target,41,16.4,velocity,upper_uy,-0.41457968950271606 +karman_re400,target,41,16.4,velocity,center_ux,1.2397972345352173 +karman_re400,target,41,16.4,velocity,center_uy,-0.8933937549591064 +karman_re400,target,41,16.4,velocity,lower_ux,1.2283580303192139 +karman_re400,target,41,16.4,velocity,lower_uy,-0.3234606087207794 +karman_re400,target,42,16.8,velocity,upper_ux,0.9980289340019226 +karman_re400,target,42,16.8,velocity,upper_uy,-0.43167442083358765 +karman_re400,target,42,16.8,velocity,center_ux,1.1936192512512207 +karman_re400,target,42,16.8,velocity,center_uy,-0.8645889163017273 +karman_re400,target,42,16.8,velocity,lower_ux,1.092668890953064 +karman_re400,target,42,16.8,velocity,lower_uy,-0.3984542191028595 +karman_re400,target,43,17.2,velocity,upper_ux,1.156194806098938 +karman_re400,target,43,17.2,velocity,upper_uy,-0.41640937328338623 +karman_re400,target,43,17.2,velocity,center_ux,1.1946954727172852 +karman_re400,target,43,17.2,velocity,center_uy,-0.8915326595306396 +karman_re400,target,43,17.2,velocity,lower_ux,0.9417034983634949 +karman_re400,target,43,17.2,velocity,lower_uy,-0.43725311756134033 +karman_re400,target,44,17.6,velocity,upper_ux,1.293764591217041 +karman_re400,target,44,17.6,velocity,upper_uy,-0.3640461266040802 +karman_re400,target,44,17.6,velocity,center_ux,1.2388052940368652 +karman_re400,target,44,17.6,velocity,center_uy,-0.9294062256813049 +karman_re400,target,44,17.6,velocity,lower_ux,0.7753720283508301 +karman_re400,target,44,17.6,velocity,lower_uy,-0.4082663357257843 +karman_re400,target,45,18.0,velocity,upper_ux,1.3989688158035278 +karman_re400,target,45,18.0,velocity,upper_uy,-0.23539258539676666 +karman_re400,target,45,18.0,velocity,center_ux,1.3074685335159302 +karman_re400,target,45,18.0,velocity,center_uy,-0.7036343216896057 +karman_re400,target,45,18.0,velocity,lower_ux,0.6191400289535522 +karman_re400,target,45,18.0,velocity,lower_uy,-0.2692858576774597 +karman_re400,target,46,18.4,velocity,upper_ux,1.434818148612976 +karman_re400,target,46,18.4,velocity,upper_uy,-0.044957466423511505 +karman_re400,target,46,18.4,velocity,center_ux,1.336898684501648 +karman_re400,target,46,18.4,velocity,center_uy,-0.03665705770254135 +karman_re400,target,46,18.4,velocity,lower_ux,0.5463529229164124 +karman_re400,target,46,18.4,velocity,lower_uy,-0.016236502677202225 +karman_re400,target,47,18.8,velocity,upper_ux,1.3854455947875977 +karman_re400,target,47,18.8,velocity,upper_uy,0.15147647261619568 +karman_re400,target,47,18.8,velocity,center_ux,1.3000059127807617 +karman_re400,target,47,18.8,velocity,center_uy,0.6404678225517273 +karman_re400,target,47,18.8,velocity,lower_ux,0.6155880093574524 +karman_re400,target,47,18.8,velocity,lower_uy,0.241845965385437 +karman_re400,target,48,19.2,velocity,upper_ux,1.2763350009918213 +karman_re400,target,48,19.2,velocity,upper_uy,0.2946923077106476 +karman_re400,target,48,19.2,velocity,center_ux,1.227007269859314 +karman_re400,target,48,19.2,velocity,center_uy,0.8938400745391846 +karman_re400,target,48,19.2,velocity,lower_ux,0.7774222493171692 +karman_re400,target,48,19.2,velocity,lower_uy,0.3904345631599426 +karman_re400,target,49,19.6,velocity,upper_ux,1.1416385173797607 +karman_re400,target,49,19.6,velocity,upper_uy,0.376975417137146 +karman_re400,target,49,19.6,velocity,center_ux,1.172989010810852 +karman_re400,target,49,19.6,velocity,center_uy,0.8715382218360901 +karman_re400,target,49,19.6,velocity,lower_ux,0.9510343074798584 +karman_re400,target,49,19.6,velocity,lower_uy,0.43038663268089294 +karman_re400,target,50,20.0,velocity,upper_ux,0.9967904090881348 +karman_re400,target,50,20.0,velocity,upper_uy,0.42261433601379395 +karman_re400,target,50,20.0,velocity,center_ux,1.1581934690475464 +karman_re400,target,50,20.0,velocity,center_uy,0.8737772107124329 +karman_re400,target,50,20.0,velocity,lower_ux,1.111432433128357 +karman_re400,target,50,20.0,velocity,lower_uy,0.42472371459007263 +karman_re400,target,51,20.4,velocity,upper_ux,0.8384366035461426 +karman_re400,target,51,20.4,velocity,upper_uy,0.4176778793334961 +karman_re400,target,51,20.4,velocity,center_ux,1.174705982208252 +karman_re400,target,51,20.4,velocity,center_uy,0.9303243160247803 +karman_re400,target,51,20.4,velocity,lower_ux,1.2555404901504517 +karman_re400,target,51,20.4,velocity,lower_uy,0.3981073498725891 +karman_re400,target,52,20.8,velocity,upper_ux,0.6802902817726135 +karman_re400,target,52,20.8,velocity,upper_uy,0.32260340452194214 +karman_re400,target,52,20.8,velocity,center_ux,1.2168689966201782 +karman_re400,target,52,20.8,velocity,center_uy,0.8436099290847778 +karman_re400,target,52,20.8,velocity,lower_ux,1.3762058019638062 +karman_re400,target,52,20.8,velocity,lower_uy,0.29367658495903015 +karman_re400,target,53,21.2,velocity,upper_ux,0.5792937278747559 +karman_re400,target,53,21.2,velocity,upper_uy,0.11606083065271378 +karman_re400,target,53,21.2,velocity,center_ux,1.2546073198318481 +karman_re400,target,53,21.2,velocity,center_uy,0.3074480891227722 +karman_re400,target,53,21.2,velocity,lower_ux,1.4478095769882202 +karman_re400,target,53,21.2,velocity,lower_uy,0.1123075783252716 +karman_re400,target,54,21.6,velocity,upper_ux,0.5994251370429993 +karman_re400,target,54,21.6,velocity,upper_uy,-0.1411537528038025 +karman_re400,target,54,21.6,velocity,center_ux,1.2502031326293945 +karman_re400,target,54,21.6,velocity,center_uy,-0.44818633794784546 +karman_re400,target,54,21.6,velocity,lower_ux,1.4272416830062866 +karman_re400,target,54,21.6,velocity,lower_uy,-0.10503958910703659 +karman_re400,target,55,22.0,velocity,upper_ux,0.7310802936553955 +karman_re400,target,55,22.0,velocity,upper_uy,-0.32684820890426636 +karman_re400,target,55,22.0,velocity,center_ux,1.2086708545684814 +karman_re400,target,55,22.0,velocity,center_uy,-0.8762701153755188 +karman_re400,target,55,22.0,velocity,lower_ux,1.3265175819396973 +karman_re400,target,55,22.0,velocity,lower_uy,-0.2806275188922882 +karman_re400,target,56,22.4,velocity,upper_ux,0.9005724191665649 +karman_re400,target,56,22.4,velocity,upper_uy,-0.4012070894241333 +karman_re400,target,56,22.4,velocity,center_ux,1.1700831651687622 +karman_re400,target,56,22.4,velocity,center_uy,-0.9111146330833435 +karman_re400,target,56,22.4,velocity,lower_ux,1.1882433891296387 +karman_re400,target,56,22.4,velocity,lower_uy,-0.3866322338581085 +karman_re400,target,57,22.8,velocity,upper_ux,1.0616611242294312 +karman_re400,target,57,22.8,velocity,upper_uy,-0.40399158000946045 +karman_re400,target,57,22.8,velocity,center_ux,1.1618250608444214 +karman_re400,target,57,22.8,velocity,center_uy,-0.8892799615859985 +karman_re400,target,57,22.8,velocity,lower_ux,1.034886360168457 +karman_re400,target,57,22.8,velocity,lower_uy,-0.44455665349960327 +karman_re400,target,58,23.2,velocity,upper_ux,1.2101109027862549 +karman_re400,target,58,23.2,velocity,upper_uy,-0.3863604664802551 +karman_re400,target,58,23.2,velocity,center_ux,1.1940486431121826 +karman_re400,target,58,23.2,velocity,center_uy,-0.9330095052719116 +karman_re400,target,58,23.2,velocity,lower_ux,0.8704131245613098 +karman_re400,target,58,23.2,velocity,lower_uy,-0.4564451277256012 +karman_re400,target,59,23.6,velocity,upper_ux,1.336503505706787 +karman_re400,target,59,23.6,velocity,upper_uy,-0.2976091206073761 +karman_re400,target,59,23.6,velocity,center_ux,1.2673975229263306 +karman_re400,target,59,23.6,velocity,center_uy,-0.8843792080879211 +karman_re400,target,59,23.6,velocity,lower_ux,0.6999298334121704 +karman_re400,target,59,23.6,velocity,lower_uy,-0.37897977232933044 +karman_re400,target,60,24.0,velocity,upper_ux,1.4151829481124878 +karman_re400,target,60,24.0,velocity,upper_uy,-0.13423794507980347 +karman_re400,target,60,24.0,velocity,center_ux,1.3384491205215454 +karman_re400,target,60,24.0,velocity,center_uy,-0.41712868213653564 +karman_re400,target,60,24.0,velocity,lower_ux,0.5707360506057739 +karman_re400,target,60,24.0,velocity,lower_uy,-0.173773854970932 +karman_re400,target,61,24.4,velocity,upper_ux,1.4087785482406616 +karman_re400,target,61,24.4,velocity,upper_uy,0.07091397792100906 +karman_re400,target,61,24.4,velocity,center_ux,1.3473663330078125 +karman_re400,target,61,24.4,velocity,center_uy,0.3392287790775299 +karman_re400,target,61,24.4,velocity,lower_ux,0.5677164196968079 +karman_re400,target,61,24.4,velocity,lower_uy,0.11102839559316635 +karman_re400,target,62,24.8,velocity,upper_ux,1.3219516277313232 +karman_re400,target,62,24.8,velocity,upper_uy,0.24625429511070251 +karman_re400,target,62,24.8,velocity,center_ux,1.287743330001831 +karman_re400,target,62,24.8,velocity,center_uy,0.8279101848602295 +karman_re400,target,62,24.8,velocity,lower_ux,0.6961563229560852 +karman_re400,target,62,24.8,velocity,lower_uy,0.33019721508026123 +karman_re400,target,63,25.2,velocity,upper_ux,1.1924257278442383 +karman_re400,target,63,25.2,velocity,upper_uy,0.3586026132106781 +karman_re400,target,63,25.2,velocity,center_ux,1.217245101928711 +karman_re400,target,63,25.2,velocity,center_uy,0.8978840112686157 +karman_re400,target,63,25.2,velocity,lower_ux,0.8724895715713501 +karman_re400,target,63,25.2,velocity,lower_uy,0.41869765520095825 +karman_re400,target,64,25.6,velocity,upper_ux,1.0496208667755127 +karman_re400,target,64,25.6,velocity,upper_uy,0.42493584752082825 +karman_re400,target,64,25.6,velocity,center_ux,1.191420078277588 +karman_re400,target,64,25.6,velocity,center_uy,0.8736982941627502 +karman_re400,target,64,25.6,velocity,lower_ux,1.043156385421753 +karman_re400,target,64,25.6,velocity,lower_uy,0.4200423061847687 +karman_re400,target,65,26.0,velocity,upper_ux,0.8905279636383057 +karman_re400,target,65,26.0,velocity,upper_uy,0.4482889175415039 +karman_re400,target,65,26.0,velocity,center_ux,1.213425874710083 +karman_re400,target,65,26.0,velocity,center_uy,0.9146479964256287 +karman_re400,target,65,26.0,velocity,lower_ux,1.196516513824463 +karman_re400,target,65,26.0,velocity,lower_uy,0.4003715515136719 +karman_re400,target,66,26.4,velocity,upper_ux,0.7178487181663513 +karman_re400,target,66,26.4,velocity,upper_uy,0.387803316116333 +karman_re400,target,66,26.4,velocity,center_ux,1.2803822755813599 +karman_re400,target,66,26.4,velocity,center_uy,0.9023222923278809 +karman_re400,target,66,26.4,velocity,lower_ux,1.3245190382003784 +karman_re400,target,66,26.4,velocity,lower_uy,0.3229130208492279 +karman_re400,target,67,26.8,velocity,upper_ux,0.5757465362548828 +karman_re400,target,67,26.8,velocity,upper_uy,0.20117250084877014 +karman_re400,target,67,26.8,velocity,center_ux,1.3547853231430054 +karman_re400,target,67,26.8,velocity,center_uy,0.5157848000526428 +karman_re400,target,67,26.8,velocity,lower_ux,1.4112625122070312 +karman_re400,target,67,26.8,velocity,lower_uy,0.17315131425857544 +karman_re400,target,68,27.2,velocity,upper_ux,0.5480135083198547 +karman_re400,target,68,27.2,velocity,upper_uy,-0.08052434027194977 +karman_re400,target,68,27.2,velocity,center_ux,1.365060567855835 +karman_re400,target,68,27.2,velocity,center_uy,-0.22104622423648834 +karman_re400,target,68,27.2,velocity,lower_ux,1.4172956943511963 +karman_re400,target,68,27.2,velocity,lower_uy,-0.023951862007379532 +karman_re400,target,69,27.6,velocity,upper_ux,0.6604875922203064 +karman_re400,target,69,27.6,velocity,upper_uy,-0.3157683312892914 +karman_re400,target,69,27.6,velocity,center_ux,1.3017414808273315 +karman_re400,target,69,27.6,velocity,center_uy,-0.771880030632019 +karman_re400,target,69,27.6,velocity,lower_ux,1.3437479734420776 +karman_re400,target,69,27.6,velocity,lower_uy,-0.2027614414691925 +karman_re400,target,70,28.0,velocity,upper_ux,0.8373148441314697 +karman_re400,target,70,28.0,velocity,upper_uy,-0.42296555638313293 +karman_re400,target,70,28.0,velocity,center_ux,1.2205771207809448 +karman_re400,target,70,28.0,velocity,center_uy,-0.889057993888855 +karman_re400,target,70,28.0,velocity,lower_ux,1.225874423980713 +karman_re400,target,70,28.0,velocity,lower_uy,-0.32187312841415405 +karman_re400,target,71,28.4,velocity,upper_ux,1.0090224742889404 +karman_re400,target,71,28.4,velocity,upper_uy,-0.4356151521205902 +karman_re400,target,71,28.4,velocity,center_ux,1.1735148429870605 +karman_re400,target,71,28.4,velocity,center_uy,-0.8555722236633301 +karman_re400,target,71,28.4,velocity,lower_ux,1.0900229215621948 +karman_re400,target,71,28.4,velocity,lower_uy,-0.3897838890552521 +karman_re400,target,72,28.8,velocity,upper_ux,1.1648986339569092 +karman_re400,target,72,28.8,velocity,upper_uy,-0.42593929171562195 +karman_re400,target,72,28.8,velocity,center_ux,1.1671242713928223 +karman_re400,target,72,28.8,velocity,center_uy,-0.8874013423919678 +karman_re400,target,72,28.8,velocity,lower_ux,0.9423370957374573 +karman_re400,target,72,28.8,velocity,lower_uy,-0.4235965311527252 +karman_re400,target,73,29.2,velocity,upper_ux,1.3029913902282715 +karman_re400,target,73,29.2,velocity,upper_uy,-0.37491053342819214 +karman_re400,target,73,29.2,velocity,center_ux,1.1928551197052002 +karman_re400,target,73,29.2,velocity,center_uy,-0.9320467114448547 +karman_re400,target,73,29.2,velocity,lower_ux,0.7827155590057373 +karman_re400,target,73,29.2,velocity,lower_uy,-0.39256781339645386 +karman_re400,target,74,29.6,velocity,upper_ux,1.4108844995498657 +karman_re400,target,74,29.6,velocity,upper_uy,-0.24426986277103424 +karman_re400,target,74,29.6,velocity,center_ux,1.2355356216430664 +karman_re400,target,74,29.6,velocity,center_uy,-0.7166495323181152 +karman_re400,target,74,29.6,velocity,lower_ux,0.6344087719917297 +karman_re400,target,74,29.6,velocity,lower_uy,-0.26060399413108826 +karman_re400,target,75,30.0,velocity,upper_ux,1.4536585807800293 +karman_re400,target,75,30.0,velocity,upper_uy,-0.04365086182951927 +karman_re400,target,75,30.0,velocity,center_ux,1.2583918571472168 +karman_re400,target,75,30.0,velocity,center_uy,-0.05130350962281227 +karman_re400,target,75,30.0,velocity,lower_ux,0.5686543583869934 +karman_re400,target,75,30.0,velocity,lower_uy,-0.025807905942201614 +karman_re400,target,76,30.4,velocity,upper_ux,1.4034392833709717 +karman_re400,target,76,30.4,velocity,upper_uy,0.16605764627456665 +karman_re400,target,76,30.4,velocity,center_ux,1.2366702556610107 +karman_re400,target,76,30.4,velocity,center_uy,0.6430968642234802 +karman_re400,target,76,30.4,velocity,lower_ux,0.6324224472045898 +karman_re400,target,76,30.4,velocity,lower_uy,0.21769705414772034 +karman_re400,target,77,30.8,velocity,upper_ux,1.2863879203796387 +karman_re400,target,77,30.8,velocity,upper_uy,0.3180035650730133 +karman_re400,target,77,30.8,velocity,center_ux,1.1893625259399414 +karman_re400,target,77,30.8,velocity,center_uy,0.9131166338920593 +karman_re400,target,77,30.8,velocity,lower_ux,0.7841352224349976 +karman_re400,target,77,30.8,velocity,lower_uy,0.36446326971054077 +karman_re400,target,78,31.2,velocity,upper_ux,1.1437991857528687 +karman_re400,target,78,31.2,velocity,upper_uy,0.4036225378513336 +karman_re400,target,78,31.2,velocity,center_ux,1.1580523252487183 +karman_re400,target,78,31.2,velocity,center_uy,0.8933849930763245 +karman_re400,target,78,31.2,velocity,lower_ux,0.9532206058502197 +karman_re400,target,78,31.2,velocity,lower_uy,0.4086930751800537 +karman_re400,target,79,31.6,velocity,upper_ux,0.9890261888504028 +karman_re400,target,79,31.6,velocity,upper_uy,0.44890862703323364 +karman_re400,target,79,31.6,velocity,center_ux,1.1588590145111084 +karman_re400,target,79,31.6,velocity,center_uy,0.8944653272628784 +karman_re400,target,79,31.6,velocity,lower_ux,1.110252857208252 +karman_re400,target,79,31.6,velocity,lower_uy,0.40561944246292114 +karman_re400,target,80,32.0,velocity,upper_ux,0.8225832581520081 +karman_re400,target,80,32.0,velocity,upper_uy,0.43899181485176086 +karman_re400,target,80,32.0,velocity,center_ux,1.1963030099868774 +karman_re400,target,80,32.0,velocity,center_uy,0.9420598745346069 +karman_re400,target,80,32.0,velocity,lower_ux,1.252376914024353 +karman_re400,target,80,32.0,velocity,lower_uy,0.3740992248058319 +karman_re400,target,81,32.4,velocity,upper_ux,0.6601161360740662 +karman_re400,target,81,32.4,velocity,upper_uy,0.3297533392906189 +karman_re400,target,81,32.4,velocity,center_ux,1.2673373222351074 +karman_re400,target,81,32.4,velocity,center_uy,0.8092772960662842 +karman_re400,target,81,32.4,velocity,lower_ux,1.370835542678833 +karman_re400,target,81,32.4,velocity,lower_uy,0.26275715231895447 +karman_re400,target,82,32.8,velocity,upper_ux,0.5613479018211365 +karman_re400,target,82,32.8,velocity,upper_uy,0.09772509336471558 +karman_re400,target,82,32.8,velocity,center_ux,1.3201850652694702 +karman_re400,target,82,32.8,velocity,center_uy,0.2179422378540039 +karman_re400,target,82,32.8,velocity,lower_ux,1.4300494194030762 +karman_re400,target,82,32.8,velocity,lower_uy,0.07900256663560867 +karman_re400,target,83,33.2,velocity,upper_ux,0.5980864763259888 +karman_re400,target,83,33.2,velocity,upper_uy,-0.17622041702270508 +karman_re400,target,83,33.2,velocity,center_ux,1.31064772605896 +karman_re400,target,83,33.2,velocity,center_uy,-0.5218892097473145 +karman_re400,target,83,33.2,velocity,lower_ux,1.3985100984573364 +karman_re400,target,83,33.2,velocity,lower_uy,-0.1288280040025711 +karman_re400,target,84,33.6,velocity,upper_ux,0.7464857697486877 +karman_re400,target,84,33.6,velocity,upper_uy,-0.35724854469299316 +karman_re400,target,84,33.6,velocity,center_ux,1.250584363937378 +karman_re400,target,84,33.6,velocity,center_uy,-0.8857900500297546 +karman_re400,target,84,33.6,velocity,lower_ux,1.2946653366088867 +karman_re400,target,84,33.6,velocity,lower_uy,-0.2905881404876709 +karman_re400,target,85,34.0,velocity,upper_ux,0.9209028482437134 +karman_re400,target,85,34.0,velocity,upper_uy,-0.41704005002975464 +karman_re400,target,85,34.0,velocity,center_ux,1.1967220306396484 +karman_re400,target,85,34.0,velocity,center_uy,-0.8960368633270264 +karman_re400,target,85,34.0,velocity,lower_ux,1.1564042568206787 +karman_re400,target,85,34.0,velocity,lower_uy,-0.3885989785194397 +karman_re400,target,86,34.4,velocity,upper_ux,1.085628867149353 +karman_re400,target,86,34.4,velocity,upper_uy,-0.4095695912837982 +karman_re400,target,86,34.4,velocity,center_ux,1.1896988153457642 +karman_re400,target,86,34.4,velocity,center_uy,-0.8869753479957581 +karman_re400,target,86,34.4,velocity,lower_ux,1.0065734386444092 +karman_re400,target,86,34.4,velocity,lower_uy,-0.44512486457824707 +karman_re400,target,87,34.8,velocity,upper_ux,1.2333401441574097 +karman_re400,target,87,34.8,velocity,upper_uy,-0.3809089958667755 +karman_re400,target,87,34.8,velocity,center_ux,1.2304736375808716 +karman_re400,target,87,34.8,velocity,center_uy,-0.9316365718841553 +karman_re400,target,87,34.8,velocity,lower_ux,0.8406317830085754 +karman_re400,target,87,34.8,velocity,lower_uy,-0.448577344417572 +karman_re400,target,88,35.2,velocity,upper_ux,1.3514142036437988 +karman_re400,target,88,35.2,velocity,upper_uy,-0.2798706293106079 +karman_re400,target,88,35.2,velocity,center_ux,1.3122689723968506 +karman_re400,target,88,35.2,velocity,center_uy,-0.8372364640235901 +karman_re400,target,88,35.2,velocity,lower_ux,0.6674256920814514 +karman_re400,target,88,35.2,velocity,lower_uy,-0.3525533676147461 +karman_re400,target,89,35.6,velocity,upper_ux,1.4173012971878052 +karman_re400,target,89,35.6,velocity,upper_uy,-0.11143449693918228 +karman_re400,target,89,35.6,velocity,center_ux,1.3786159753799438 +karman_re400,target,89,35.6,velocity,center_uy,-0.3031254708766937 +karman_re400,target,89,35.6,velocity,lower_ux,0.5505589842796326 +karman_re400,target,89,35.6,velocity,lower_uy,-0.12330625206232071 +karman_re400,target,90,36.0,velocity,upper_ux,1.396398663520813 +karman_re400,target,90,36.0,velocity,upper_uy,0.08678939938545227 +karman_re400,target,90,36.0,velocity,center_ux,1.3656731843948364 +karman_re400,target,90,36.0,velocity,center_uy,0.4371244013309479 +karman_re400,target,90,36.0,velocity,lower_ux,0.5701124668121338 +karman_re400,target,90,36.0,velocity,lower_uy,0.1658501774072647 +karman_re400,target,91,36.4,velocity,upper_ux,1.3039242029190063 +karman_re400,target,91,36.4,velocity,upper_uy,0.2480790913105011 +karman_re400,target,91,36.4,velocity,center_ux,1.2855157852172852 +karman_re400,target,91,36.4,velocity,center_uy,0.8454129099845886 +karman_re400,target,91,36.4,velocity,lower_ux,0.7137265801429749 +karman_re400,target,91,36.4,velocity,lower_uy,0.36563679575920105 +karman_re400,target,92,36.8,velocity,upper_ux,1.1792341470718384 +karman_re400,target,92,36.8,velocity,upper_uy,0.3485247492790222 +karman_re400,target,92,36.8,velocity,center_ux,1.2094967365264893 +karman_re400,target,92,36.8,velocity,center_uy,0.8766049742698669 +karman_re400,target,92,36.8,velocity,lower_ux,0.8949533700942993 +karman_re400,target,92,36.8,velocity,lower_uy,0.4362418055534363 +karman_re400,target,93,37.2,velocity,upper_ux,1.0400406122207642 +karman_re400,target,93,37.2,velocity,upper_uy,0.4071352779865265 +karman_re400,target,93,37.2,velocity,center_ux,1.1765528917312622 +karman_re400,target,93,37.2,velocity,center_uy,0.8576761484146118 +karman_re400,target,93,37.2,velocity,lower_ux,1.0625479221343994 +karman_re400,target,93,37.2,velocity,lower_uy,0.432125449180603 +karman_re400,target,94,37.6,velocity,upper_ux,0.8867106437683105 +karman_re400,target,94,37.6,velocity,upper_uy,0.4248453974723816 +karman_re400,target,94,37.6,velocity,center_ux,1.1841012239456177 +karman_re400,target,94,37.6,velocity,center_uy,0.9085771441459656 +karman_re400,target,94,37.6,velocity,lower_ux,1.2136095762252808 +karman_re400,target,94,37.6,velocity,lower_uy,0.4154903292655945 +karman_re400,target,95,38.0,velocity,upper_ux,0.7246882915496826 +karman_re400,target,95,38.0,velocity,upper_uy,0.3627430200576782 +karman_re400,target,95,38.0,velocity,center_ux,1.2257561683654785 +karman_re400,target,95,38.0,velocity,center_uy,0.9054365754127502 +karman_re400,target,95,38.0,velocity,lower_ux,1.343293309211731 +karman_re400,target,95,38.0,velocity,lower_uy,0.3362957239151001 +karman_re400,target,96,38.4,velocity,upper_ux,0.592110276222229 +karman_re400,target,96,38.4,velocity,upper_uy,0.1885274052619934 +karman_re400,target,96,38.4,velocity,center_ux,1.2711304426193237 +karman_re400,target,96,38.4,velocity,center_uy,0.5248199105262756 +karman_re400,target,96,38.4,velocity,lower_ux,1.431891918182373 +karman_re400,target,96,38.4,velocity,lower_uy,0.18100202083587646 +karman_re400,target,97,38.8,velocity,upper_ux,0.5684654116630554 +karman_re400,target,97,38.8,velocity,upper_uy,-0.06895075738430023 +karman_re400,target,97,38.8,velocity,center_ux,1.2780958414077759 +karman_re400,target,97,38.8,velocity,center_uy,-0.21700319647789001 +karman_re400,target,97,38.8,velocity,lower_ux,1.4414324760437012 +karman_re400,target,97,38.8,velocity,lower_uy,-0.02815031073987484 +karman_re400,target,98,39.2,velocity,upper_ux,0.6736750602722168 +karman_re400,target,98,39.2,velocity,upper_uy,-0.2891975939273834 +karman_re400,target,98,39.2,velocity,center_ux,1.2370167970657349 +karman_re400,target,98,39.2,velocity,center_uy,-0.7859970927238464 +karman_re400,target,98,39.2,velocity,lower_ux,1.3654130697250366 +karman_re400,target,98,39.2,velocity,lower_uy,-0.2188795655965805 +karman_re400,target,99,39.6,velocity,upper_ux,0.8395382165908813 +karman_re400,target,99,39.6,velocity,upper_uy,-0.3972138464450836 +karman_re400,target,99,39.6,velocity,center_ux,1.1825505495071411 +karman_re400,target,99,39.6,velocity,center_uy,-0.9125098586082458 +karman_re400,target,99,39.6,velocity,lower_ux,1.2384757995605469 +karman_re400,target,99,39.6,velocity,lower_uy,-0.3441230058670044 +karman_re400,target,100,40.0,velocity,upper_ux,1.0070433616638184 +karman_re400,target,100,40.0,velocity,upper_uy,-0.4157916307449341 +karman_re400,target,100,40.0,velocity,center_ux,1.1552109718322754 +karman_re400,target,100,40.0,velocity,center_uy,-0.8761531114578247 +karman_re400,target,100,40.0,velocity,lower_ux,1.0949939489364624 +karman_re400,target,100,40.0,velocity,lower_uy,-0.412504643201828 +karman_re400,target,101,40.4,velocity,upper_ux,1.1604083776474 +karman_re400,target,101,40.4,velocity,upper_uy,-0.40988293290138245 +karman_re400,target,101,40.4,velocity,center_ux,1.1613463163375854 +karman_re400,target,101,40.4,velocity,center_uy,-0.9041211605072021 +karman_re400,target,101,40.4,velocity,lower_ux,0.9397828578948975 +karman_re400,target,101,40.4,velocity,lower_uy,-0.4443041980266571 +karman_re400,target,102,40.8,velocity,upper_ux,1.2959930896759033 +karman_re400,target,102,40.8,velocity,upper_uy,-0.3562105894088745 +karman_re400,target,102,40.8,velocity,center_ux,1.2008897066116333 +karman_re400,target,102,40.8,velocity,center_uy,-0.9380713105201721 +karman_re400,target,102,40.8,velocity,lower_ux,0.7736894488334656 +karman_re400,target,102,40.8,velocity,lower_uy,-0.4089399576187134 +karman_re400,target,103,41.2,velocity,upper_ux,1.4037092924118042 +karman_re400,target,103,41.2,velocity,upper_uy,-0.22173652052879333 +karman_re400,target,103,41.2,velocity,center_ux,1.2628241777420044 +karman_re400,target,103,41.2,velocity,center_uy,-0.6877090334892273 +karman_re400,target,103,41.2,velocity,lower_ux,0.6254025101661682 +karman_re400,target,103,41.2,velocity,lower_uy,-0.26646116375923157 +karman_re400,target,104,41.6,velocity,upper_ux,1.4392236471176147 +karman_re400,target,104,41.6,velocity,upper_uy,-0.01995018869638443 +karman_re400,target,104,41.6,velocity,center_ux,1.2947089672088623 +karman_re400,target,104,41.6,velocity,center_uy,0.004091964568942785 +karman_re400,target,104,41.6,velocity,lower_ux,0.563612163066864 +karman_re400,target,104,41.6,velocity,lower_uy,-0.016159480437636375 +karman_re400,target,105,42.0,velocity,upper_ux,1.3825232982635498 +karman_re400,target,105,42.0,velocity,upper_uy,0.18399152159690857 +karman_re400,target,105,42.0,velocity,center_ux,1.2700854539871216 +karman_re400,target,105,42.0,velocity,center_uy,0.6789434552192688 +karman_re400,target,105,42.0,velocity,lower_ux,0.6374634504318237 +karman_re400,target,105,42.0,velocity,lower_uy,0.2347935289144516 +karman_re400,target,106,42.4,velocity,upper_ux,1.2638635635375977 +karman_re400,target,106,42.4,velocity,upper_uy,0.32903334498405457 +karman_re400,target,106,42.4,velocity,center_ux,1.2149494886398315 +karman_re400,target,106,42.4,velocity,center_uy,0.9148401021957397 +karman_re400,target,106,42.4,velocity,lower_ux,0.7981728315353394 +karman_re400,target,106,42.4,velocity,lower_uy,0.37695419788360596 +karman_re400,target,107,42.8,velocity,upper_ux,1.118961215019226 +karman_re400,target,107,42.8,velocity,upper_uy,0.4127213656902313 +karman_re400,target,107,42.8,velocity,center_ux,1.1787636280059814 +karman_re400,target,107,42.8,velocity,center_uy,0.8913000226020813 +karman_re400,target,107,42.8,velocity,lower_ux,0.9685001969337463 +karman_re400,target,107,42.8,velocity,lower_uy,0.41224613785743713 +karman_re400,target,108,43.2,velocity,upper_ux,0.9629379510879517 +karman_re400,target,108,43.2,velocity,upper_uy,0.45709899067878723 +karman_re400,target,108,43.2,velocity,center_ux,1.1873769760131836 +karman_re400,target,108,43.2,velocity,center_uy,0.9022393822669983 +karman_re400,target,108,43.2,velocity,lower_ux,1.127286434173584 +karman_re400,target,108,43.2,velocity,lower_uy,0.4021054208278656 +karman_re400,target,109,43.6,velocity,upper_ux,0.7926498651504517 +karman_re400,target,109,43.6,velocity,upper_uy,0.436802476644516 +karman_re400,target,109,43.6,velocity,center_ux,1.242738127708435 +karman_re400,target,109,43.6,velocity,center_uy,0.9377055168151855 +karman_re400,target,109,43.6,velocity,lower_ux,1.2684918642044067 +karman_re400,target,109,43.6,velocity,lower_uy,0.35780584812164307 +karman_re400,target,110,44.0,velocity,upper_ux,0.6266834735870361 +karman_re400,target,110,44.0,velocity,upper_uy,0.3039211332798004 +karman_re400,target,110,44.0,velocity,center_ux,1.3285017013549805 +karman_re400,target,110,44.0,velocity,center_uy,0.7352789044380188 +karman_re400,target,110,44.0,velocity,lower_ux,1.3763246536254883 +karman_re400,target,110,44.0,velocity,lower_uy,0.2354757934808731 +karman_re400,target,111,44.4,velocity,upper_ux,0.543328046798706 +karman_re400,target,111,44.4,velocity,upper_uy,0.04374784976243973 +karman_re400,target,111,44.4,velocity,center_ux,1.3780577182769775 +karman_re400,target,111,44.4,velocity,center_uy,0.0853266790509224 +karman_re400,target,111,44.4,velocity,lower_ux,1.4196423292160034 +karman_re400,target,111,44.4,velocity,lower_uy,0.05021584406495094 +karman_re400,target,112,44.8,velocity,upper_ux,0.6058080792427063 +karman_re400,target,112,44.8,velocity,upper_uy,-0.2333686500787735 +karman_re400,target,112,44.8,velocity,center_ux,1.3451714515686035 +karman_re400,target,112,44.8,velocity,center_uy,-0.6073886752128601 +karman_re400,target,112,44.8,velocity,lower_ux,1.3746588230133057 +karman_re400,target,112,44.8,velocity,lower_uy,-0.14503437280654907 +karman_re400,target,113,45.2,velocity,upper_ux,0.7682783007621765 +karman_re400,target,113,45.2,velocity,upper_uy,-0.39414432644844055 +karman_re400,target,113,45.2,velocity,center_ux,1.2610176801681519 +karman_re400,target,113,45.2,velocity,center_uy,-0.8829765915870667 +karman_re400,target,113,45.2,velocity,lower_ux,1.2668861150741577 +karman_re400,target,113,45.2,velocity,lower_uy,-0.2900281250476837 +karman_re400,target,114,45.6,velocity,upper_ux,0.9477266669273376 +karman_re400,target,114,45.6,velocity,upper_uy,-0.43540263175964355 +karman_re400,target,114,45.6,velocity,center_ux,1.199428677558899 +karman_re400,target,114,45.6,velocity,center_uy,-0.8697269558906555 +karman_re400,target,114,45.6,velocity,lower_ux,1.1355557441711426 +karman_re400,target,114,45.6,velocity,lower_uy,-0.3766893744468689 +karman_re400,target,115,46.0,velocity,upper_ux,1.110835313796997 +karman_re400,target,115,46.0,velocity,upper_uy,-0.4234428107738495 +karman_re400,target,115,46.0,velocity,center_ux,1.184922695159912 +karman_re400,target,115,46.0,velocity,center_uy,-0.8738991022109985 +karman_re400,target,115,46.0,velocity,lower_ux,0.9904474020004272 +karman_re400,target,115,46.0,velocity,lower_uy,-0.42690375447273254 +karman_re400,target,116,46.4,velocity,upper_ux,1.2558213472366333 +karman_re400,target,116,46.4,velocity,upper_uy,-0.3918393850326538 +karman_re400,target,116,46.4,velocity,center_ux,1.212204933166504 +karman_re400,target,116,46.4,velocity,center_uy,-0.9274676442146301 +karman_re400,target,116,46.4,velocity,lower_ux,0.8294852375984192 +karman_re400,target,116,46.4,velocity,lower_uy,-0.42323771119117737 +karman_re400,target,117,46.8,velocity,upper_ux,1.3740286827087402 +karman_re400,target,117,46.8,velocity,upper_uy,-0.28573817014694214 +karman_re400,target,117,46.8,velocity,center_ux,1.2731735706329346 +karman_re400,target,117,46.8,velocity,center_uy,-0.8279923796653748 +karman_re400,target,117,46.8,velocity,lower_ux,0.6663219332695007 +karman_re400,target,117,46.8,velocity,lower_uy,-0.3236384987831116 +karman_re400,target,118,47.2,velocity,upper_ux,1.4370228052139282 +karman_re400,target,118,47.2,velocity,upper_uy,-0.11007091403007507 +karman_re400,target,118,47.2,velocity,center_ux,1.3172491788864136 +karman_re400,target,118,47.2,velocity,center_uy,-0.280484139919281 +karman_re400,target,118,47.2,velocity,lower_ux,0.559140145778656 +karman_re400,target,118,47.2,velocity,lower_uy,-0.10399164259433746 +karman_re400,target,119,47.6,velocity,upper_ux,1.4136549234390259 +karman_re400,target,119,47.6,velocity,upper_uy,0.09553026407957077 +karman_re400,target,119,47.6,velocity,center_ux,1.3024392127990723 +karman_re400,target,119,47.6,velocity,center_uy,0.4616870880126953 +karman_re400,target,119,47.6,velocity,lower_ux,0.5834724307060242 +karman_re400,target,119,47.6,velocity,lower_uy,0.16457492113113403 +karman_re400,target,120,48.0,velocity,upper_ux,1.3182432651519775 +karman_re400,target,120,48.0,velocity,upper_uy,0.2609959542751312 +karman_re400,target,120,48.0,velocity,center_ux,1.2400789260864258 +karman_re400,target,120,48.0,velocity,center_uy,0.8651167154312134 +karman_re400,target,120,48.0,velocity,lower_ux,0.7241486310958862 +karman_re400,target,120,48.0,velocity,lower_uy,0.35142654180526733 +karman_re400,target,121,48.4,velocity,upper_ux,1.1867567300796509 +karman_re400,target,121,48.4,velocity,upper_uy,0.3613834083080292 +karman_re400,target,121,48.4,velocity,center_ux,1.1806737184524536 +karman_re400,target,121,48.4,velocity,center_uy,0.8905134797096252 +karman_re400,target,121,48.4,velocity,lower_ux,0.8977129459381104 +karman_re400,target,121,48.4,velocity,lower_uy,0.421714186668396 +karman_re400,target,122,48.8,velocity,upper_ux,1.043441891670227 +karman_re400,target,122,48.8,velocity,upper_uy,0.41703084111213684 +karman_re400,target,122,48.8,velocity,center_ux,1.157474398612976 +karman_re400,target,122,48.8,velocity,center_uy,0.8678218126296997 +karman_re400,target,122,48.8,velocity,lower_ux,1.0621399879455566 +karman_re400,target,122,48.8,velocity,lower_uy,0.4224849045276642 +karman_re400,target,123,49.2,velocity,upper_ux,0.8875579833984375 +karman_re400,target,123,49.2,velocity,upper_uy,0.4320068657398224 +karman_re400,target,123,49.2,velocity,center_ux,1.1680923700332642 +karman_re400,target,123,49.2,velocity,center_uy,0.9171460866928101 +karman_re400,target,123,49.2,velocity,lower_ux,1.2115896940231323 +karman_re400,target,123,49.2,velocity,lower_uy,0.4096290171146393 +karman_re400,target,124,49.6,velocity,upper_ux,0.7242531776428223 +karman_re400,target,124,49.6,velocity,upper_uy,0.3673058748245239 +karman_re400,target,124,49.6,velocity,center_ux,1.2085349559783936 +karman_re400,target,124,49.6,velocity,center_uy,0.9078747630119324 +karman_re400,target,124,49.6,velocity,lower_ux,1.3400413990020752 +karman_re400,target,124,49.6,velocity,lower_uy,0.32958343625068665 +karman_re400,target,125,50.0,velocity,upper_ux,0.5969409346580505 +karman_re400,target,125,50.0,velocity,upper_uy,0.1909475475549698 +karman_re400,target,125,50.0,velocity,center_ux,1.257325291633606 +karman_re400,target,125,50.0,velocity,center_uy,0.5122577548027039 +karman_re400,target,125,50.0,velocity,lower_ux,1.4315425157546997 +karman_re400,target,125,50.0,velocity,lower_uy,0.17061759531497955 +karman_re400,target,126,50.4,velocity,upper_ux,0.5770455002784729 +karman_re400,target,126,50.4,velocity,upper_uy,-0.06762689352035522 +karman_re400,target,126,50.4,velocity,center_ux,1.2687783241271973 +karman_re400,target,126,50.4,velocity,center_uy,-0.23896968364715576 +karman_re400,target,126,50.4,velocity,lower_ux,1.4392284154891968 +karman_re400,target,126,50.4,velocity,lower_uy,-0.0433325432240963 +karman_re400,target,127,50.8,velocity,upper_ux,0.6836943626403809 +karman_re400,target,127,50.8,velocity,upper_uy,-0.2866530120372772 +karman_re400,target,127,50.8,velocity,center_ux,1.2331620454788208 +karman_re400,target,127,50.8,velocity,center_uy,-0.8013493418693542 +karman_re400,target,127,50.8,velocity,lower_ux,1.3583296537399292 +karman_re400,target,127,50.8,velocity,lower_uy,-0.23578065633773804 +karman_re400,target,128,51.2,velocity,upper_ux,0.850643515586853 +karman_re400,target,128,51.2,velocity,upper_uy,-0.39191699028015137 +karman_re400,target,128,51.2,velocity,center_ux,1.1859573125839233 +karman_re400,target,128,51.2,velocity,center_uy,-0.9197124242782593 +karman_re400,target,128,51.2,velocity,lower_ux,1.227855920791626 +karman_re400,target,128,51.2,velocity,lower_uy,-0.3609927296638489 +karman_re400,target,129,51.6,velocity,upper_ux,1.0164607763290405 +karman_re400,target,129,51.6,velocity,upper_uy,-0.4074570834636688 +karman_re400,target,129,51.6,velocity,center_ux,1.165615200996399 +karman_re400,target,129,51.6,velocity,center_uy,-0.8870353102684021 +karman_re400,target,129,51.6,velocity,lower_ux,1.07857346534729 +karman_re400,target,129,51.6,velocity,lower_uy,-0.43060123920440674 +karman_re400,target,130,52.0,velocity,upper_ux,1.1694613695144653 +karman_re400,target,130,52.0,velocity,upper_uy,-0.39635181427001953 +karman_re400,target,130,52.0,velocity,center_ux,1.1860365867614746 +karman_re400,target,130,52.0,velocity,center_uy,-0.9178403615951538 +karman_re400,target,130,52.0,velocity,lower_ux,0.9176962971687317 +karman_re400,target,130,52.0,velocity,lower_uy,-0.45992621779441833 +karman_re400,target,131,52.4,velocity,upper_ux,1.3036004304885864 +karman_re400,target,131,52.4,velocity,upper_uy,-0.33100682497024536 +karman_re400,target,131,52.4,velocity,center_ux,1.2508177757263184 +karman_re400,target,131,52.4,velocity,center_uy,-0.9259941577911377 +karman_re400,target,131,52.4,velocity,lower_ux,0.7463032007217407 +karman_re400,target,131,52.4,velocity,lower_uy,-0.4127289652824402 +karman_re400,target,132,52.8,velocity,upper_ux,1.3993149995803833 +karman_re400,target,132,52.8,velocity,upper_uy,-0.18803006410598755 +karman_re400,target,132,52.8,velocity,center_ux,1.3309708833694458 +karman_re400,target,132,52.8,velocity,center_uy,-0.5970503091812134 +karman_re400,target,132,52.8,velocity,lower_ux,0.5956226587295532 +karman_re400,target,132,52.8,velocity,lower_uy,-0.2439221441745758 +karman_re400,target,133,53.2,velocity,upper_ux,1.418585181236267 +karman_re400,target,133,53.2,velocity,upper_uy,0.01075691357254982 +karman_re400,target,133,53.2,velocity,center_ux,1.360426664352417 +karman_re400,target,133,53.2,velocity,center_uy,0.12919005751609802 +karman_re400,target,133,53.2,velocity,lower_ux,0.5506887435913086 +karman_re400,target,133,53.2,velocity,lower_uy,0.033291660249233246 +karman_re400,target,134,53.6,velocity,upper_ux,1.351749062538147 +karman_re400,target,134,53.6,velocity,upper_uy,0.19910769164562225 +karman_re400,target,134,53.6,velocity,center_ux,1.3136554956436157 +karman_re400,target,134,53.6,velocity,center_uy,0.7369376420974731 +karman_re400,target,134,53.6,velocity,lower_ux,0.6490476727485657 +karman_re400,target,134,53.6,velocity,lower_uy,0.2848874032497406 +karman_re400,target,135,54.0,velocity,upper_ux,1.2313857078552246 +karman_re400,target,135,54.0,velocity,upper_uy,0.32837164402008057 +karman_re400,target,135,54.0,velocity,center_ux,1.235553503036499 +karman_re400,target,135,54.0,velocity,center_uy,0.8994925618171692 +karman_re400,target,135,54.0,velocity,lower_ux,0.8210287690162659 +karman_re400,target,135,54.0,velocity,lower_uy,0.40841132402420044 +karman_re400,target,136,54.4,velocity,upper_ux,1.0931541919708252 +karman_re400,target,136,54.4,velocity,upper_uy,0.4043792486190796 +karman_re400,target,136,54.4,velocity,center_ux,1.192448377609253 +karman_re400,target,136,54.4,velocity,center_uy,0.8705832958221436 +karman_re400,target,136,54.4,velocity,lower_ux,0.9958732724189758 +karman_re400,target,136,54.4,velocity,lower_uy,0.4271462559700012 +karman_re400,target,137,54.8,velocity,upper_ux,0.9407523274421692 +karman_re400,target,137,54.8,velocity,upper_uy,0.4433719515800476 +karman_re400,target,137,54.8,velocity,center_ux,1.1978206634521484 +karman_re400,target,137,54.8,velocity,center_uy,0.8959881663322449 +karman_re400,target,137,54.8,velocity,lower_ux,1.1544889211654663 +karman_re400,target,137,54.8,velocity,lower_uy,0.4119480848312378 +karman_re400,target,138,55.2,velocity,upper_ux,0.7721155285835266 +karman_re400,target,138,55.2,velocity,upper_uy,0.4132471978664398 +karman_re400,target,138,55.2,velocity,center_ux,1.247460961341858 +karman_re400,target,138,55.2,velocity,center_uy,0.9295406341552734 +karman_re400,target,138,55.2,velocity,lower_ux,1.2915878295898438 +karman_re400,target,138,55.2,velocity,lower_uy,0.3585447669029236 +karman_re400,target,139,55.6,velocity,upper_ux,0.6141625046730042 +karman_re400,target,139,55.6,velocity,upper_uy,0.27009040117263794 +karman_re400,target,139,55.6,velocity,center_ux,1.3220810890197754 +karman_re400,target,139,55.6,velocity,center_uy,0.6922008991241455 +karman_re400,target,139,55.6,velocity,lower_ux,1.3951889276504517 +karman_re400,target,139,55.6,velocity,lower_uy,0.2290310263633728 +karman_re400,target,140,56.0,velocity,upper_ux,0.5437933206558228 +karman_re400,target,140,56.0,velocity,upper_uy,0.010457277297973633 +karman_re400,target,140,56.0,velocity,center_ux,1.3546010255813599 +karman_re400,target,140,56.0,velocity,center_uy,0.018035268411040306 +karman_re400,target,140,56.0,velocity,lower_ux,1.4296536445617676 +karman_re400,target,140,56.0,velocity,lower_uy,0.03927169367671013 +karman_re400,target,141,56.4,velocity,upper_ux,0.6162771582603455 +karman_re400,target,141,56.4,velocity,upper_uy,-0.2506929636001587 +karman_re400,target,141,56.4,velocity,center_ux,1.3134129047393799 +karman_re400,target,141,56.4,velocity,center_uy,-0.6501480340957642 +karman_re400,target,141,56.4,velocity,lower_ux,1.3777717351913452 +karman_re400,target,141,56.4,velocity,lower_uy,-0.1544356644153595 +karman_re400,target,142,56.8,velocity,upper_ux,0.7814427018165588 +karman_re400,target,142,56.8,velocity,upper_uy,-0.3972263038158417 +karman_re400,target,142,56.8,velocity,center_ux,1.2354295253753662 +karman_re400,target,142,56.8,velocity,center_uy,-0.890798032283783 +karman_re400,target,142,56.8,velocity,lower_ux,1.2689344882965088 +karman_re400,target,142,56.8,velocity,lower_uy,-0.29478171467781067 +karman_re400,target,143,57.2,velocity,upper_ux,0.9564200043678284 +karman_re400,target,143,57.2,velocity,upper_uy,-0.4339275062084198 +karman_re400,target,143,57.2,velocity,center_ux,1.1787391901016235 +karman_re400,target,143,57.2,velocity,center_uy,-0.867173969745636 +karman_re400,target,143,57.2,velocity,lower_ux,1.1353709697723389 +karman_re400,target,143,57.2,velocity,lower_uy,-0.3759305477142334 +karman_re400,target,144,57.6,velocity,upper_ux,1.1166119575500488 +karman_re400,target,144,57.6,velocity,upper_uy,-0.42640990018844604 +karman_re400,target,144,57.6,velocity,center_ux,1.1630040407180786 +karman_re400,target,144,57.6,velocity,center_uy,-0.8730461001396179 +karman_re400,target,144,57.6,velocity,lower_ux,0.9906200170516968 +karman_re400,target,144,57.6,velocity,lower_uy,-0.4213089644908905 +karman_re400,target,145,58.0,velocity,upper_ux,1.2610218524932861 +karman_re400,target,145,58.0,velocity,upper_uy,-0.39727917313575745 +karman_re400,target,145,58.0,velocity,center_ux,1.1809515953063965 +karman_re400,target,145,58.0,velocity,center_uy,-0.9297820329666138 +karman_re400,target,145,58.0,velocity,lower_ux,0.8329313397407532 +karman_re400,target,145,58.0,velocity,lower_uy,-0.4146176874637604 +karman_re400,target,146,58.4,velocity,upper_ux,1.3803801536560059 +karman_re400,target,146,58.4,velocity,upper_uy,-0.2903881072998047 +karman_re400,target,146,58.4,velocity,center_ux,1.2239367961883545 +karman_re400,target,146,58.4,velocity,center_uy,-0.8336266875267029 +karman_re400,target,146,58.4,velocity,lower_ux,0.6749768257141113 +karman_re400,target,146,58.4,velocity,lower_uy,-0.31633883714675903 +karman_re400,target,147,58.8,velocity,upper_ux,1.4483757019042969 +karman_re400,target,147,58.8,velocity,upper_uy,-0.10795250535011292 +karman_re400,target,147,58.8,velocity,center_ux,1.259474515914917 +karman_re400,target,147,58.8,velocity,center_uy,-0.2855410575866699 +karman_re400,target,147,58.8,velocity,lower_ux,0.5755578875541687 +karman_re400,target,147,58.8,velocity,lower_uy,-0.10663574188947678 +karman_re400,target,148,59.2,velocity,upper_ux,1.4257179498672485 +karman_re400,target,148,59.2,velocity,upper_uy,0.10798118263483047 +karman_re400,target,148,59.2,velocity,center_ux,1.252457618713379 +karman_re400,target,148,59.2,velocity,center_uy,0.46594759821891785 +karman_re400,target,148,59.2,velocity,lower_ux,0.6000931859016418 +karman_re400,target,148,59.2,velocity,lower_uy,0.15019595623016357 +karman_re400,target,149,59.6,velocity,upper_ux,1.3240238428115845 +karman_re400,target,149,59.6,velocity,upper_uy,0.28088846802711487 +karman_re400,target,149,59.6,velocity,center_ux,1.2081198692321777 +karman_re400,target,149,59.6,velocity,center_uy,0.8792768120765686 +karman_re400,target,149,59.6,velocity,lower_ux,0.7340613603591919 +karman_re400,target,149,59.6,velocity,lower_uy,0.33248192071914673 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_wide.csv new file mode 100644 index 0000000..4c34c8c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re400/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re400,target,0,0.0,1.2120248079299927,-0.4202609360218048,1.1749510765075684,-0.9050361514091492,0.8927360773086548,-0.4203765392303467 +karman_re400,target,1,0.4,1.342402458190918,-0.3438524603843689,1.2083001136779785,-0.9104478359222412,0.7323803901672363,-0.36145347356796265 +karman_re400,target,2,0.8,1.4343644380569458,-0.1897059679031372,1.2473909854888916,-0.5491563677787781,0.6004230380058289,-0.19426627457141876 +karman_re400,target,3,1.2,1.4488788843154907,0.022213594987988472,1.255968451499939,0.188865065574646,0.5737820267677307,0.05653338134288788 +karman_re400,target,4,1.6,1.373765468597412,0.21835777163505554,1.2212796211242676,0.7766143679618835,0.6727274060249329,0.27646422386169434 +karman_re400,target,5,2.0,1.2455558776855469,0.3478473424911499,1.1742233037948608,0.9184023141860962,0.8352329730987549,0.38826489448547363 +karman_re400,target,6,2.4,1.1004387140274048,0.41808444261550903,1.1519627571105957,0.8822964429855347,1.002315640449524,0.41020098328590393 +karman_re400,target,7,2.8,0.9423767924308777,0.45078614354133606,1.1604948043823242,0.9072331190109253,1.1544888019561768,0.4050610065460205 +karman_re400,target,8,3.2,0.7753628492355347,0.4166509509086609,1.2055919170379639,0.9401418566703796,1.291069507598877,0.35260674357414246 +karman_re400,target,9,3.6,0.6245367527008057,0.27366137504577637,1.273838996887207,0.6906351447105408,1.3988887071609497,0.21903207898139954 +karman_re400,target,10,4.0,0.560326337814331,0.019636090844869614,1.3097147941589355,-0.0007077599875628948,1.434166431427002,0.01883859559893608 +karman_re400,target,11,4.4,0.634819746017456,-0.236068457365036,1.2849270105361938,-0.676206111907959,1.378390908241272,-0.18361996114253998 +karman_re400,target,12,4.8,0.7969540953636169,-0.3799777925014496,1.2254160642623901,-0.9126290082931519,1.2601410150527954,-0.32803165912628174 +karman_re400,target,13,5.2,0.9682785868644714,-0.41440948843955994,1.186139702796936,-0.8899717926979065,1.1157454252243042,-0.41235968470573425 +karman_re400,target,14,5.6,1.128709077835083,-0.4022729992866516,1.1959125995635986,-0.901466429233551,0.9608212113380432,-0.4575628340244293 +karman_re400,target,15,6.0,1.26914644241333,-0.3566041588783264,1.253311038017273,-0.9350844025611877,0.7890927791595459,-0.43687209486961365 +karman_re400,target,16,6.4,1.375434160232544,-0.23402078449726105,1.3420203924179077,-0.7274941205978394,0.6218501329421997,-0.30157193541526794 +karman_re400,target,17,6.8,1.417791724205017,-0.050407152622938156,1.3916412591934204,-0.07575255632400513,0.539686381816864,-0.03741087391972542 +karman_re400,target,18,7.2,1.3713443279266357,0.14203406870365143,1.3530964851379395,0.6099657416343689,0.6034209728240967,0.2410980761051178 +karman_re400,target,19,7.6,1.2653709650039673,0.28474098443984985,1.264355182647705,0.8781915307044983,0.7682840824127197,0.40044596791267395 +karman_re400,target,20,8.0,1.1361134052276611,0.36988601088523865,1.1990392208099365,0.8635536432266235,0.9485774040222168,0.44024989008903503 +karman_re400,target,21,8.4,0.9927776455879211,0.41941216588020325,1.179783821105957,0.8682653903961182,1.1112067699432373,0.4285144507884979 +karman_re400,target,22,8.8,0.8348067402839661,0.41676953434944153,1.2003777027130127,0.9247766733169556,1.2568199634552002,0.39875686168670654 +karman_re400,target,23,9.2,0.6743665933609009,0.3215062618255615,1.2517573833465576,0.8387874364852905,1.3767832517623901,0.2945161461830139 +karman_re400,target,24,9.6,0.5663478970527649,0.1107029840350151,1.289695143699646,0.3073548674583435,1.4428257942199707,0.11849313974380493 +karman_re400,target,25,10.0,0.5866062045097351,-0.151419997215271,1.2789416313171387,-0.44037187099456787,1.4235594272613525,-0.09125809371471405 +karman_re400,target,26,10.4,0.7212661504745483,-0.33918502926826477,1.224654197692871,-0.8643913865089417,1.3279061317443848,-0.26192790269851685 +karman_re400,target,27,10.8,0.8920208811759949,-0.41380175948143005,1.172156572341919,-0.8982797861099243,1.1945475339889526,-0.36551764607429504 +karman_re400,target,28,11.2,1.0563626289367676,-0.4173983037471771,1.153164267539978,-0.8722547888755798,1.0499099493026733,-0.42193928360939026 +karman_re400,target,29,11.6,1.204798936843872,-0.4062516391277313,1.1653155088424683,-0.9190737009048462,0.8917550444602966,-0.4381961524486542 +karman_re400,target,30,12.0,1.3341349363327026,-0.3283812999725342,1.2094883918762207,-0.9125614762306213,0.7275323271751404,-0.37551864981651306 +karman_re400,target,31,12.4,1.4273256063461304,-0.17112736403942108,1.2635173797607422,-0.5247402191162109,0.5980023741722107,-0.19999101758003235 +karman_re400,target,32,12.8,1.4361991882324219,0.041783180087804794,1.278151273727417,0.22568605840206146,0.574632465839386,0.061137374490499496 +karman_re400,target,33,13.2,1.3568118810653687,0.2344856858253479,1.2429314851760864,0.7958700656890869,0.6804575324058533,0.28463026881217957 +karman_re400,target,34,13.6,1.226958155632019,0.3607170581817627,1.193595051765442,0.9201030135154724,0.8484411835670471,0.39220166206359863 +karman_re400,target,35,14.0,1.0769866704940796,0.4318449795246124,1.1714366674423218,0.8883988261222839,1.0143961906433105,0.40776851773262024 +karman_re400,target,36,14.4,0.9164957404136658,0.4619840383529663,1.1944429874420166,0.9182741045951843,1.1689783334732056,0.39493224024772644 +karman_re400,target,37,14.8,0.7432093620300293,0.41425272822380066,1.2629578113555908,0.9229826927185059,1.302474856376648,0.3287750482559204 +karman_re400,target,38,15.2,0.591031014919281,0.24200157821178436,1.346731424331665,0.5879356861114502,1.396555781364441,0.18591399490833282 +karman_re400,target,39,15.6,0.547687828540802,-0.03985374793410301,1.3759151697158813,-0.13830341398715973,1.4149186611175537,-0.010761822573840618 +karman_re400,target,40,16.0,0.6479454040527344,-0.2928529381752014,1.3231003284454346,-0.7374175786972046,1.3471392393112183,-0.19633804261684418 +karman_re400,target,41,16.4,0.8219239115715027,-0.41457968950271606,1.2397972345352173,-0.8933937549591064,1.2283580303192139,-0.3234606087207794 +karman_re400,target,42,16.8,0.9980289340019226,-0.43167442083358765,1.1936192512512207,-0.8645889163017273,1.092668890953064,-0.3984542191028595 +karman_re400,target,43,17.2,1.156194806098938,-0.41640937328338623,1.1946954727172852,-0.8915326595306396,0.9417034983634949,-0.43725311756134033 +karman_re400,target,44,17.6,1.293764591217041,-0.3640461266040802,1.2388052940368652,-0.9294062256813049,0.7753720283508301,-0.4082663357257843 +karman_re400,target,45,18.0,1.3989688158035278,-0.23539258539676666,1.3074685335159302,-0.7036343216896057,0.6191400289535522,-0.2692858576774597 +karman_re400,target,46,18.4,1.434818148612976,-0.044957466423511505,1.336898684501648,-0.03665705770254135,0.5463529229164124,-0.016236502677202225 +karman_re400,target,47,18.8,1.3854455947875977,0.15147647261619568,1.3000059127807617,0.6404678225517273,0.6155880093574524,0.241845965385437 +karman_re400,target,48,19.2,1.2763350009918213,0.2946923077106476,1.227007269859314,0.8938400745391846,0.7774222493171692,0.3904345631599426 +karman_re400,target,49,19.6,1.1416385173797607,0.376975417137146,1.172989010810852,0.8715382218360901,0.9510343074798584,0.43038663268089294 +karman_re400,target,50,20.0,0.9967904090881348,0.42261433601379395,1.1581934690475464,0.8737772107124329,1.111432433128357,0.42472371459007263 +karman_re400,target,51,20.4,0.8384366035461426,0.4176778793334961,1.174705982208252,0.9303243160247803,1.2555404901504517,0.3981073498725891 +karman_re400,target,52,20.8,0.6802902817726135,0.32260340452194214,1.2168689966201782,0.8436099290847778,1.3762058019638062,0.29367658495903015 +karman_re400,target,53,21.2,0.5792937278747559,0.11606083065271378,1.2546073198318481,0.3074480891227722,1.4478095769882202,0.1123075783252716 +karman_re400,target,54,21.6,0.5994251370429993,-0.1411537528038025,1.2502031326293945,-0.44818633794784546,1.4272416830062866,-0.10503958910703659 +karman_re400,target,55,22.0,0.7310802936553955,-0.32684820890426636,1.2086708545684814,-0.8762701153755188,1.3265175819396973,-0.2806275188922882 +karman_re400,target,56,22.4,0.9005724191665649,-0.4012070894241333,1.1700831651687622,-0.9111146330833435,1.1882433891296387,-0.3866322338581085 +karman_re400,target,57,22.8,1.0616611242294312,-0.40399158000946045,1.1618250608444214,-0.8892799615859985,1.034886360168457,-0.44455665349960327 +karman_re400,target,58,23.2,1.2101109027862549,-0.3863604664802551,1.1940486431121826,-0.9330095052719116,0.8704131245613098,-0.4564451277256012 +karman_re400,target,59,23.6,1.336503505706787,-0.2976091206073761,1.2673975229263306,-0.8843792080879211,0.6999298334121704,-0.37897977232933044 +karman_re400,target,60,24.0,1.4151829481124878,-0.13423794507980347,1.3384491205215454,-0.41712868213653564,0.5707360506057739,-0.173773854970932 +karman_re400,target,61,24.4,1.4087785482406616,0.07091397792100906,1.3473663330078125,0.3392287790775299,0.5677164196968079,0.11102839559316635 +karman_re400,target,62,24.8,1.3219516277313232,0.24625429511070251,1.287743330001831,0.8279101848602295,0.6961563229560852,0.33019721508026123 +karman_re400,target,63,25.2,1.1924257278442383,0.3586026132106781,1.217245101928711,0.8978840112686157,0.8724895715713501,0.41869765520095825 +karman_re400,target,64,25.6,1.0496208667755127,0.42493584752082825,1.191420078277588,0.8736982941627502,1.043156385421753,0.4200423061847687 +karman_re400,target,65,26.0,0.8905279636383057,0.4482889175415039,1.213425874710083,0.9146479964256287,1.196516513824463,0.4003715515136719 +karman_re400,target,66,26.4,0.7178487181663513,0.387803316116333,1.2803822755813599,0.9023222923278809,1.3245190382003784,0.3229130208492279 +karman_re400,target,67,26.8,0.5757465362548828,0.20117250084877014,1.3547853231430054,0.5157848000526428,1.4112625122070312,0.17315131425857544 +karman_re400,target,68,27.2,0.5480135083198547,-0.08052434027194977,1.365060567855835,-0.22104622423648834,1.4172956943511963,-0.023951862007379532 +karman_re400,target,69,27.6,0.6604875922203064,-0.3157683312892914,1.3017414808273315,-0.771880030632019,1.3437479734420776,-0.2027614414691925 +karman_re400,target,70,28.0,0.8373148441314697,-0.42296555638313293,1.2205771207809448,-0.889057993888855,1.225874423980713,-0.32187312841415405 +karman_re400,target,71,28.4,1.0090224742889404,-0.4356151521205902,1.1735148429870605,-0.8555722236633301,1.0900229215621948,-0.3897838890552521 +karman_re400,target,72,28.8,1.1648986339569092,-0.42593929171562195,1.1671242713928223,-0.8874013423919678,0.9423370957374573,-0.4235965311527252 +karman_re400,target,73,29.2,1.3029913902282715,-0.37491053342819214,1.1928551197052002,-0.9320467114448547,0.7827155590057373,-0.39256781339645386 +karman_re400,target,74,29.6,1.4108844995498657,-0.24426986277103424,1.2355356216430664,-0.7166495323181152,0.6344087719917297,-0.26060399413108826 +karman_re400,target,75,30.0,1.4536585807800293,-0.04365086182951927,1.2583918571472168,-0.05130350962281227,0.5686543583869934,-0.025807905942201614 +karman_re400,target,76,30.4,1.4034392833709717,0.16605764627456665,1.2366702556610107,0.6430968642234802,0.6324224472045898,0.21769705414772034 +karman_re400,target,77,30.8,1.2863879203796387,0.3180035650730133,1.1893625259399414,0.9131166338920593,0.7841352224349976,0.36446326971054077 +karman_re400,target,78,31.2,1.1437991857528687,0.4036225378513336,1.1580523252487183,0.8933849930763245,0.9532206058502197,0.4086930751800537 +karman_re400,target,79,31.6,0.9890261888504028,0.44890862703323364,1.1588590145111084,0.8944653272628784,1.110252857208252,0.40561944246292114 +karman_re400,target,80,32.0,0.8225832581520081,0.43899181485176086,1.1963030099868774,0.9420598745346069,1.252376914024353,0.3740992248058319 +karman_re400,target,81,32.4,0.6601161360740662,0.3297533392906189,1.2673373222351074,0.8092772960662842,1.370835542678833,0.26275715231895447 +karman_re400,target,82,32.8,0.5613479018211365,0.09772509336471558,1.3201850652694702,0.2179422378540039,1.4300494194030762,0.07900256663560867 +karman_re400,target,83,33.2,0.5980864763259888,-0.17622041702270508,1.31064772605896,-0.5218892097473145,1.3985100984573364,-0.1288280040025711 +karman_re400,target,84,33.6,0.7464857697486877,-0.35724854469299316,1.250584363937378,-0.8857900500297546,1.2946653366088867,-0.2905881404876709 +karman_re400,target,85,34.0,0.9209028482437134,-0.41704005002975464,1.1967220306396484,-0.8960368633270264,1.1564042568206787,-0.3885989785194397 +karman_re400,target,86,34.4,1.085628867149353,-0.4095695912837982,1.1896988153457642,-0.8869753479957581,1.0065734386444092,-0.44512486457824707 +karman_re400,target,87,34.8,1.2333401441574097,-0.3809089958667755,1.2304736375808716,-0.9316365718841553,0.8406317830085754,-0.448577344417572 +karman_re400,target,88,35.2,1.3514142036437988,-0.2798706293106079,1.3122689723968506,-0.8372364640235901,0.6674256920814514,-0.3525533676147461 +karman_re400,target,89,35.6,1.4173012971878052,-0.11143449693918228,1.3786159753799438,-0.3031254708766937,0.5505589842796326,-0.12330625206232071 +karman_re400,target,90,36.0,1.396398663520813,0.08678939938545227,1.3656731843948364,0.4371244013309479,0.5701124668121338,0.1658501774072647 +karman_re400,target,91,36.4,1.3039242029190063,0.2480790913105011,1.2855157852172852,0.8454129099845886,0.7137265801429749,0.36563679575920105 +karman_re400,target,92,36.8,1.1792341470718384,0.3485247492790222,1.2094967365264893,0.8766049742698669,0.8949533700942993,0.4362418055534363 +karman_re400,target,93,37.2,1.0400406122207642,0.4071352779865265,1.1765528917312622,0.8576761484146118,1.0625479221343994,0.432125449180603 +karman_re400,target,94,37.6,0.8867106437683105,0.4248453974723816,1.1841012239456177,0.9085771441459656,1.2136095762252808,0.4154903292655945 +karman_re400,target,95,38.0,0.7246882915496826,0.3627430200576782,1.2257561683654785,0.9054365754127502,1.343293309211731,0.3362957239151001 +karman_re400,target,96,38.4,0.592110276222229,0.1885274052619934,1.2711304426193237,0.5248199105262756,1.431891918182373,0.18100202083587646 +karman_re400,target,97,38.8,0.5684654116630554,-0.06895075738430023,1.2780958414077759,-0.21700319647789001,1.4414324760437012,-0.02815031073987484 +karman_re400,target,98,39.2,0.6736750602722168,-0.2891975939273834,1.2370167970657349,-0.7859970927238464,1.3654130697250366,-0.2188795655965805 +karman_re400,target,99,39.6,0.8395382165908813,-0.3972138464450836,1.1825505495071411,-0.9125098586082458,1.2384757995605469,-0.3441230058670044 +karman_re400,target,100,40.0,1.0070433616638184,-0.4157916307449341,1.1552109718322754,-0.8761531114578247,1.0949939489364624,-0.412504643201828 +karman_re400,target,101,40.4,1.1604083776474,-0.40988293290138245,1.1613463163375854,-0.9041211605072021,0.9397828578948975,-0.4443041980266571 +karman_re400,target,102,40.8,1.2959930896759033,-0.3562105894088745,1.2008897066116333,-0.9380713105201721,0.7736894488334656,-0.4089399576187134 +karman_re400,target,103,41.2,1.4037092924118042,-0.22173652052879333,1.2628241777420044,-0.6877090334892273,0.6254025101661682,-0.26646116375923157 +karman_re400,target,104,41.6,1.4392236471176147,-0.01995018869638443,1.2947089672088623,0.004091964568942785,0.563612163066864,-0.016159480437636375 +karman_re400,target,105,42.0,1.3825232982635498,0.18399152159690857,1.2700854539871216,0.6789434552192688,0.6374634504318237,0.2347935289144516 +karman_re400,target,106,42.4,1.2638635635375977,0.32903334498405457,1.2149494886398315,0.9148401021957397,0.7981728315353394,0.37695419788360596 +karman_re400,target,107,42.8,1.118961215019226,0.4127213656902313,1.1787636280059814,0.8913000226020813,0.9685001969337463,0.41224613785743713 +karman_re400,target,108,43.2,0.9629379510879517,0.45709899067878723,1.1873769760131836,0.9022393822669983,1.127286434173584,0.4021054208278656 +karman_re400,target,109,43.6,0.7926498651504517,0.436802476644516,1.242738127708435,0.9377055168151855,1.2684918642044067,0.35780584812164307 +karman_re400,target,110,44.0,0.6266834735870361,0.3039211332798004,1.3285017013549805,0.7352789044380188,1.3763246536254883,0.2354757934808731 +karman_re400,target,111,44.4,0.543328046798706,0.04374784976243973,1.3780577182769775,0.0853266790509224,1.4196423292160034,0.05021584406495094 +karman_re400,target,112,44.8,0.6058080792427063,-0.2333686500787735,1.3451714515686035,-0.6073886752128601,1.3746588230133057,-0.14503437280654907 +karman_re400,target,113,45.2,0.7682783007621765,-0.39414432644844055,1.2610176801681519,-0.8829765915870667,1.2668861150741577,-0.2900281250476837 +karman_re400,target,114,45.6,0.9477266669273376,-0.43540263175964355,1.199428677558899,-0.8697269558906555,1.1355557441711426,-0.3766893744468689 +karman_re400,target,115,46.0,1.110835313796997,-0.4234428107738495,1.184922695159912,-0.8738991022109985,0.9904474020004272,-0.42690375447273254 +karman_re400,target,116,46.4,1.2558213472366333,-0.3918393850326538,1.212204933166504,-0.9274676442146301,0.8294852375984192,-0.42323771119117737 +karman_re400,target,117,46.8,1.3740286827087402,-0.28573817014694214,1.2731735706329346,-0.8279923796653748,0.6663219332695007,-0.3236384987831116 +karman_re400,target,118,47.2,1.4370228052139282,-0.11007091403007507,1.3172491788864136,-0.280484139919281,0.559140145778656,-0.10399164259433746 +karman_re400,target,119,47.6,1.4136549234390259,0.09553026407957077,1.3024392127990723,0.4616870880126953,0.5834724307060242,0.16457492113113403 +karman_re400,target,120,48.0,1.3182432651519775,0.2609959542751312,1.2400789260864258,0.8651167154312134,0.7241486310958862,0.35142654180526733 +karman_re400,target,121,48.4,1.1867567300796509,0.3613834083080292,1.1806737184524536,0.8905134797096252,0.8977129459381104,0.421714186668396 +karman_re400,target,122,48.8,1.043441891670227,0.41703084111213684,1.157474398612976,0.8678218126296997,1.0621399879455566,0.4224849045276642 +karman_re400,target,123,49.2,0.8875579833984375,0.4320068657398224,1.1680923700332642,0.9171460866928101,1.2115896940231323,0.4096290171146393 +karman_re400,target,124,49.6,0.7242531776428223,0.3673058748245239,1.2085349559783936,0.9078747630119324,1.3400413990020752,0.32958343625068665 +karman_re400,target,125,50.0,0.5969409346580505,0.1909475475549698,1.257325291633606,0.5122577548027039,1.4315425157546997,0.17061759531497955 +karman_re400,target,126,50.4,0.5770455002784729,-0.06762689352035522,1.2687783241271973,-0.23896968364715576,1.4392284154891968,-0.0433325432240963 +karman_re400,target,127,50.8,0.6836943626403809,-0.2866530120372772,1.2331620454788208,-0.8013493418693542,1.3583296537399292,-0.23578065633773804 +karman_re400,target,128,51.2,0.850643515586853,-0.39191699028015137,1.1859573125839233,-0.9197124242782593,1.227855920791626,-0.3609927296638489 +karman_re400,target,129,51.6,1.0164607763290405,-0.4074570834636688,1.165615200996399,-0.8870353102684021,1.07857346534729,-0.43060123920440674 +karman_re400,target,130,52.0,1.1694613695144653,-0.39635181427001953,1.1860365867614746,-0.9178403615951538,0.9176962971687317,-0.45992621779441833 +karman_re400,target,131,52.4,1.3036004304885864,-0.33100682497024536,1.2508177757263184,-0.9259941577911377,0.7463032007217407,-0.4127289652824402 +karman_re400,target,132,52.8,1.3993149995803833,-0.18803006410598755,1.3309708833694458,-0.5970503091812134,0.5956226587295532,-0.2439221441745758 +karman_re400,target,133,53.2,1.418585181236267,0.01075691357254982,1.360426664352417,0.12919005751609802,0.5506887435913086,0.033291660249233246 +karman_re400,target,134,53.6,1.351749062538147,0.19910769164562225,1.3136554956436157,0.7369376420974731,0.6490476727485657,0.2848874032497406 +karman_re400,target,135,54.0,1.2313857078552246,0.32837164402008057,1.235553503036499,0.8994925618171692,0.8210287690162659,0.40841132402420044 +karman_re400,target,136,54.4,1.0931541919708252,0.4043792486190796,1.192448377609253,0.8705832958221436,0.9958732724189758,0.4271462559700012 +karman_re400,target,137,54.8,0.9407523274421692,0.4433719515800476,1.1978206634521484,0.8959881663322449,1.1544889211654663,0.4119480848312378 +karman_re400,target,138,55.2,0.7721155285835266,0.4132471978664398,1.247460961341858,0.9295406341552734,1.2915878295898438,0.3585447669029236 +karman_re400,target,139,55.6,0.6141625046730042,0.27009040117263794,1.3220810890197754,0.6922008991241455,1.3951889276504517,0.2290310263633728 +karman_re400,target,140,56.0,0.5437933206558228,0.010457277297973633,1.3546010255813599,0.018035268411040306,1.4296536445617676,0.03927169367671013 +karman_re400,target,141,56.4,0.6162771582603455,-0.2506929636001587,1.3134129047393799,-0.6501480340957642,1.3777717351913452,-0.1544356644153595 +karman_re400,target,142,56.8,0.7814427018165588,-0.3972263038158417,1.2354295253753662,-0.890798032283783,1.2689344882965088,-0.29478171467781067 +karman_re400,target,143,57.2,0.9564200043678284,-0.4339275062084198,1.1787391901016235,-0.867173969745636,1.1353709697723389,-0.3759305477142334 +karman_re400,target,144,57.6,1.1166119575500488,-0.42640990018844604,1.1630040407180786,-0.8730461001396179,0.9906200170516968,-0.4213089644908905 +karman_re400,target,145,58.0,1.2610218524932861,-0.39727917313575745,1.1809515953063965,-0.9297820329666138,0.8329313397407532,-0.4146176874637604 +karman_re400,target,146,58.4,1.3803801536560059,-0.2903881072998047,1.2239367961883545,-0.8336266875267029,0.6749768257141113,-0.31633883714675903 +karman_re400,target,147,58.8,1.4483757019042969,-0.10795250535011292,1.259474515914917,-0.2855410575866699,0.5755578875541687,-0.10663574188947678 +karman_re400,target,148,59.2,1.4257179498672485,0.10798118263483047,1.252457618713379,0.46594759821891785,0.6000931859016418,0.15019595623016357 +karman_re400,target,149,59.6,1.3240238428115845,0.28088846802711487,1.2081198692321777,0.8792768120765686,0.7340613603591919,0.33248192071914673 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv new file mode 100644 index 0000000..ece9e97 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re50,sr,60,24.0,30,0.9547398926528534,-1,0.950797724723816,0.9594524737137059,0.9441077669461568,0.9380558218806982,0.9662973384062449,0.9697282302464979 +karman_re50,sr,90,36.0,30,0.9505411337052162,6,0.9655768632888794,0.9575754624170562,0.94156973361969,0.934868608104686,0.9331449608008067,0.9705111740001787 +karman_re50,sr,120,48.0,30,0.9516659507838389,-8,0.9501148760318756,0.9625965438472728,0.9479476233323415,0.9345188394499322,0.9499853591124217,0.9648324629291892 +karman_re50,sr,150,60.0,30,0.953682870129382,0,0.9467113077640533,0.9622887977631762,0.9480549395084381,0.9326293302544704,0.9625145812829335,0.9698982642032206 +karman_re50,sr,180,72.0,30,0.9523396161022699,7,0.9664686361948649,0.9622602410924931,0.9401881515979766,0.9391810866693656,0.933464378118515,0.9724752029404045 +karman_re50,sr,210,84.0,30,0.9528042549338553,-7,0.9456200381120046,0.9657263174653054,0.9466282228628794,0.9357615951138238,0.9556377947330474,0.9674515613160717 +karman_re50,sr,240,96.0,30,0.9521687770288231,0,0.9405934909979502,0.9598103614679228,0.949341893196106,0.9324114424486956,0.9609008808930715,0.9699545931691925 +karman_re50,sr,270,108.0,30,0.9540105829377555,8,0.9686466336250306,0.9647906785054753,0.9403325061003367,0.9417275873478502,0.9399820645650228,0.9685840274828176 +karman_re50,sr,300,120.0,30,0.9507969596423208,-7,0.9432539224624634,0.9650750586763024,0.9446897526582082,0.9345356804318726,0.9545289615790049,0.9626983820460737 +karman_re50,sr,330,132.0,30,0.953627163643897,1,0.948162333170573,0.9641640237144505,0.9504993001619975,0.9317098373391977,0.9599350730578105,0.967292414419353 +karman_re50,sr,360,144.0,30,0.953828474625738,8,0.9668863574663799,0.9667379441050191,0.9414330701033274,0.9405811086297036,0.9340550164381662,0.9732773510118325 +karman_re50,sr,390,156.0,30,0.9522740179478811,-6,0.9418747385342916,0.9682637573607887,0.9437929391860962,0.9351937113174548,0.9612680117289225,0.9632509495597332 +karman_re50,sr,400,160.0,30,0.9521778984189343,3,0.9476927002271016,0.9670580059988424,0.9461903611818949,0.9327708172767113,0.9499107122421264,0.9694447935869296 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_long.csv new file mode 100644 index 0000000..8192dfe --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,sr,0,0.0,velocity,upper_ux,0.9807555675506592 +karman_re50,sr,0,0.0,velocity,upper_uy,-0.14188915491104126 +karman_re50,sr,0,0.0,velocity,center_ux,0.9638603329658508 +karman_re50,sr,0,0.0,velocity,center_uy,-0.1766003966331482 +karman_re50,sr,0,0.0,velocity,lower_ux,1.038811206817627 +karman_re50,sr,0,0.0,velocity,lower_uy,-0.1813851147890091 +karman_re50,sr,1,0.4,velocity,upper_ux,0.9993488788604736 +karman_re50,sr,1,0.4,velocity,upper_uy,-0.18522809445858002 +karman_re50,sr,1,0.4,velocity,center_ux,0.9733971357345581 +karman_re50,sr,1,0.4,velocity,center_uy,-0.2140149623155594 +karman_re50,sr,1,0.4,velocity,lower_ux,1.0306259393692017 +karman_re50,sr,1,0.4,velocity,lower_uy,-0.2038445621728897 +karman_re50,sr,2,0.8,velocity,upper_ux,1.0185763835906982 +karman_re50,sr,2,0.8,velocity,upper_uy,-0.22976332902908325 +karman_re50,sr,2,0.8,velocity,center_ux,0.9767008423805237 +karman_re50,sr,2,0.8,velocity,center_uy,-0.24325250089168549 +karman_re50,sr,2,0.8,velocity,lower_ux,1.0241382122039795 +karman_re50,sr,2,0.8,velocity,lower_uy,-0.21258340775966644 +karman_re50,sr,3,1.2,velocity,upper_ux,1.037389874458313 +karman_re50,sr,3,1.2,velocity,upper_uy,-0.27148139476776123 +karman_re50,sr,3,1.2,velocity,center_ux,0.9719898700714111 +karman_re50,sr,3,1.2,velocity,center_uy,-0.26361122727394104 +karman_re50,sr,3,1.2,velocity,lower_ux,1.0164395570755005 +karman_re50,sr,3,1.2,velocity,lower_uy,-0.21198219060897827 +karman_re50,sr,4,1.6,velocity,upper_ux,1.0547292232513428 +karman_re50,sr,4,1.6,velocity,upper_uy,-0.2989649176597595 +karman_re50,sr,4,1.6,velocity,center_ux,0.9588329792022705 +karman_re50,sr,4,1.6,velocity,center_uy,-0.2685467302799225 +karman_re50,sr,4,1.6,velocity,lower_ux,1.0063133239746094 +karman_re50,sr,4,1.6,velocity,lower_uy,-0.20132268965244293 +karman_re50,sr,5,2.0,velocity,upper_ux,1.0700589418411255 +karman_re50,sr,5,2.0,velocity,upper_uy,-0.2942734658718109 +karman_re50,sr,5,2.0,velocity,center_ux,0.9405279755592346 +karman_re50,sr,5,2.0,velocity,center_uy,-0.2475939393043518 +karman_re50,sr,5,2.0,velocity,lower_ux,0.9944169521331787 +karman_re50,sr,5,2.0,velocity,lower_uy,-0.17692986130714417 +karman_re50,sr,6,2.4,velocity,upper_ux,1.082525610923767 +karman_re50,sr,6,2.4,velocity,upper_uy,-0.24658095836639404 +karman_re50,sr,6,2.4,velocity,center_ux,0.9232930541038513 +karman_re50,sr,6,2.4,velocity,center_uy,-0.1945764571428299 +karman_re50,sr,6,2.4,velocity,lower_ux,0.9815769195556641 +karman_re50,sr,6,2.4,velocity,lower_uy,-0.1359853446483612 +karman_re50,sr,7,2.8,velocity,upper_ux,1.0891997814178467 +karman_re50,sr,7,2.8,velocity,upper_uy,-0.16284368932247162 +karman_re50,sr,7,2.8,velocity,center_ux,0.9134936332702637 +karman_re50,sr,7,2.8,velocity,center_uy,-0.11494333297014236 +karman_re50,sr,7,2.8,velocity,lower_ux,0.9684023857116699 +karman_re50,sr,7,2.8,velocity,lower_uy,-0.07983505725860596 +karman_re50,sr,8,3.2,velocity,upper_ux,1.0863621234893799 +karman_re50,sr,8,3.2,velocity,upper_uy,-0.060802385210990906 +karman_re50,sr,8,3.2,velocity,center_ux,0.9157962799072266 +karman_re50,sr,8,3.2,velocity,center_uy,-0.026246700435876846 +karman_re50,sr,8,3.2,velocity,lower_ux,0.9582664370536804 +karman_re50,sr,8,3.2,velocity,lower_uy,-0.016641998663544655 +karman_re50,sr,9,3.6,velocity,upper_ux,1.0728837251663208 +karman_re50,sr,9,3.6,velocity,upper_uy,0.040080633014440536 +karman_re50,sr,9,3.6,velocity,center_ux,0.9284433722496033 +karman_re50,sr,9,3.6,velocity,center_uy,0.05383552610874176 +karman_re50,sr,9,3.6,velocity,lower_ux,0.9555878639221191 +karman_re50,sr,9,3.6,velocity,lower_uy,0.042713455855846405 +karman_re50,sr,10,4.0,velocity,upper_ux,1.0544356107711792 +karman_re50,sr,10,4.0,velocity,upper_uy,0.12058240175247192 +karman_re50,sr,10,4.0,velocity,center_ux,0.944069504737854 +karman_re50,sr,10,4.0,velocity,center_uy,0.11857210844755173 +karman_re50,sr,10,4.0,velocity,lower_ux,0.9620276689529419 +karman_re50,sr,10,4.0,velocity,lower_uy,0.09292936325073242 +karman_re50,sr,11,4.4,velocity,upper_ux,1.0395725965499878 +karman_re50,sr,11,4.4,velocity,upper_uy,0.1707296371459961 +karman_re50,sr,11,4.4,velocity,center_ux,0.9575911164283752 +karman_re50,sr,11,4.4,velocity,center_uy,0.1688423901796341 +karman_re50,sr,11,4.4,velocity,lower_ux,0.9759668707847595 +karman_re50,sr,11,4.4,velocity,lower_uy,0.13680221140384674 +karman_re50,sr,12,4.8,velocity,upper_ux,1.0304105281829834 +karman_re50,sr,12,4.8,velocity,upper_uy,0.19559282064437866 +karman_re50,sr,12,4.8,velocity,center_ux,0.967050313949585 +karman_re50,sr,12,4.8,velocity,center_uy,0.20745432376861572 +karman_re50,sr,12,4.8,velocity,lower_ux,0.9937362670898438 +karman_re50,sr,12,4.8,velocity,lower_uy,0.17983531951904297 +karman_re50,sr,13,5.2,velocity,upper_ux,1.02337646484375 +karman_re50,sr,13,5.2,velocity,upper_uy,0.20527128875255585 +karman_re50,sr,13,5.2,velocity,center_ux,0.9705027937889099 +karman_re50,sr,13,5.2,velocity,center_uy,0.23762395977973938 +karman_re50,sr,13,5.2,velocity,lower_ux,1.0124855041503906 +karman_re50,sr,13,5.2,velocity,lower_uy,0.22423091530799866 +karman_re50,sr,14,5.6,velocity,upper_ux,1.0152876377105713 +karman_re50,sr,14,5.6,velocity,upper_uy,0.2055377960205078 +karman_re50,sr,14,5.6,velocity,center_ux,0.9660864472389221 +karman_re50,sr,14,5.6,velocity,center_uy,0.2598292827606201 +karman_re50,sr,14,5.6,velocity,lower_ux,1.031045913696289 +karman_re50,sr,14,5.6,velocity,lower_uy,0.2671930193901062 +karman_re50,sr,15,6.0,velocity,upper_ux,1.0046972036361694 +karman_re50,sr,15,6.0,velocity,upper_uy,0.19572757184505463 +karman_re50,sr,15,6.0,velocity,center_ux,0.9530709981918335 +karman_re50,sr,15,6.0,velocity,center_uy,0.26771610975265503 +karman_re50,sr,15,6.0,velocity,lower_ux,1.048326015472412 +karman_re50,sr,15,6.0,velocity,lower_uy,0.29792797565460205 +karman_re50,sr,16,6.4,velocity,upper_ux,0.9922588467597961 +karman_re50,sr,16,6.4,velocity,upper_uy,0.17187167704105377 +karman_re50,sr,16,6.4,velocity,center_ux,0.9341819882392883 +karman_re50,sr,16,6.4,velocity,center_uy,0.2506471872329712 +karman_re50,sr,16,6.4,velocity,lower_ux,1.0636323690414429 +karman_re50,sr,16,6.4,velocity,lower_uy,0.2989245355129242 +karman_re50,sr,17,6.8,velocity,upper_ux,0.9791054725646973 +karman_re50,sr,17,6.8,velocity,upper_uy,0.12990155816078186 +karman_re50,sr,17,6.8,velocity,center_ux,0.9148423075675964 +karman_re50,sr,17,6.8,velocity,center_uy,0.20018629729747772 +karman_re50,sr,17,6.8,velocity,lower_ux,1.0761128664016724 +karman_re50,sr,17,6.8,velocity,lower_uy,0.25690263509750366 +karman_re50,sr,18,7.2,velocity,upper_ux,0.9664737582206726 +karman_re50,sr,18,7.2,velocity,upper_uy,0.07123477756977081 +karman_re50,sr,18,7.2,velocity,center_ux,0.9004916548728943 +karman_re50,sr,18,7.2,velocity,center_uy,0.11850419640541077 +karman_re50,sr,18,7.2,velocity,lower_ux,1.083214521408081 +karman_re50,sr,18,7.2,velocity,lower_uy,0.17627966403961182 +karman_re50,sr,19,7.6,velocity,upper_ux,0.958240807056427 +karman_re50,sr,19,7.6,velocity,upper_uy,0.0050899251364171505 +karman_re50,sr,19,7.6,velocity,center_ux,0.8957052826881409 +karman_re50,sr,19,7.6,velocity,center_uy,0.019051970914006233 +karman_re50,sr,19,7.6,velocity,lower_ux,1.0814908742904663 +karman_re50,sr,19,7.6,velocity,lower_uy,0.07382450252771378 +karman_re50,sr,20,8.0,velocity,upper_ux,0.9589338898658752 +karman_re50,sr,20,8.0,velocity,upper_uy,-0.05602492392063141 +karman_re50,sr,20,8.0,velocity,center_ux,0.9024300575256348 +karman_re50,sr,20,8.0,velocity,center_uy,-0.07950851321220398 +karman_re50,sr,20,8.0,velocity,lower_ux,1.0682178735733032 +karman_re50,sr,20,8.0,velocity,lower_uy,-0.032397929579019547 +karman_re50,sr,21,8.4,velocity,upper_ux,0.9695799946784973 +karman_re50,sr,21,8.4,velocity,upper_uy,-0.1065339669585228 +karman_re50,sr,21,8.4,velocity,center_ux,0.9195576310157776 +karman_re50,sr,21,8.4,velocity,center_uy,-0.16128326952457428 +karman_re50,sr,21,8.4,velocity,lower_ux,1.0438237190246582 +karman_re50,sr,21,8.4,velocity,lower_uy,-0.12749157845973969 +karman_re50,sr,22,8.8,velocity,upper_ux,0.9877662658691406 +karman_re50,sr,22,8.8,velocity,upper_uy,-0.150024875998497 +karman_re50,sr,22,8.8,velocity,center_ux,0.9435343742370605 +karman_re50,sr,22,8.8,velocity,center_uy,-0.21930693089962006 +karman_re50,sr,22,8.8,velocity,lower_ux,1.0129508972167969 +karman_re50,sr,22,8.8,velocity,lower_uy,-0.20018544793128967 +karman_re50,sr,23,9.2,velocity,upper_ux,1.0097154378890991 +karman_re50,sr,23,9.2,velocity,upper_uy,-0.1918281614780426 +karman_re50,sr,23,9.2,velocity,center_ux,0.9677979350090027 +karman_re50,sr,23,9.2,velocity,center_uy,-0.25751829147338867 +karman_re50,sr,23,9.2,velocity,lower_ux,0.9818364977836609 +karman_re50,sr,23,9.2,velocity,lower_uy,-0.24235902726650238 +karman_re50,sr,24,9.6,velocity,upper_ux,1.0322637557983398 +karman_re50,sr,24,9.6,velocity,upper_uy,-0.2335677295923233 +karman_re50,sr,24,9.6,velocity,center_ux,0.9854703545570374 +karman_re50,sr,24,9.6,velocity,center_uy,-0.282747745513916 +karman_re50,sr,24,9.6,velocity,lower_ux,0.9543381333351135 +karman_re50,sr,24,9.6,velocity,lower_uy,-0.25175732374191284 +karman_re50,sr,25,10.0,velocity,upper_ux,1.0534456968307495 +karman_re50,sr,25,10.0,velocity,upper_uy,-0.2709603011608124 +karman_re50,sr,25,10.0,velocity,center_ux,0.9926975965499878 +karman_re50,sr,25,10.0,velocity,center_uy,-0.2936691641807556 +karman_re50,sr,25,10.0,velocity,lower_ux,0.9311330318450928 +karman_re50,sr,25,10.0,velocity,lower_uy,-0.23142887651920319 +karman_re50,sr,26,10.4,velocity,upper_ux,1.070772647857666 +karman_re50,sr,26,10.4,velocity,upper_uy,-0.29250168800354004 +karman_re50,sr,26,10.4,velocity,center_ux,0.9880955219268799 +karman_re50,sr,26,10.4,velocity,center_uy,-0.2807639539241791 +karman_re50,sr,26,10.4,velocity,lower_ux,0.9132492542266846 +karman_re50,sr,26,10.4,velocity,lower_uy,-0.1878206431865692 +karman_re50,sr,27,10.8,velocity,upper_ux,1.0817545652389526 +karman_re50,sr,27,10.8,velocity,upper_uy,-0.2805456221103668 +karman_re50,sr,27,10.8,velocity,center_ux,0.9731497764587402 +karman_re50,sr,27,10.8,velocity,center_uy,-0.23251654207706451 +karman_re50,sr,27,10.8,velocity,lower_ux,0.905626654624939 +karman_re50,sr,27,10.8,velocity,lower_uy,-0.13072985410690308 +karman_re50,sr,28,11.2,velocity,upper_ux,1.0844169855117798 +karman_re50,sr,28,11.2,velocity,upper_uy,-0.22399389743804932 +karman_re50,sr,28,11.2,velocity,center_ux,0.9514759182929993 +karman_re50,sr,28,11.2,velocity,center_uy,-0.14493641257286072 +karman_re50,sr,28,11.2,velocity,lower_ux,0.9116196632385254 +karman_re50,sr,28,11.2,velocity,lower_uy,-0.07122398167848587 +karman_re50,sr,29,11.6,velocity,upper_ux,1.0764137506484985 +karman_re50,sr,29,11.6,velocity,upper_uy,-0.12855567038059235 +karman_re50,sr,29,11.6,velocity,center_ux,0.9289678931236267 +karman_re50,sr,29,11.6,velocity,center_uy,-0.02898857370018959 +karman_re50,sr,29,11.6,velocity,lower_ux,0.9261384606361389 +karman_re50,sr,29,11.6,velocity,lower_uy,-0.013286687433719635 +karman_re50,sr,30,12.0,velocity,upper_ux,1.0564050674438477 +karman_re50,sr,30,12.0,velocity,upper_uy,-0.012641149573028088 +karman_re50,sr,30,12.0,velocity,center_ux,0.917928159236908 +karman_re50,sr,30,12.0,velocity,center_uy,0.08591799437999725 +karman_re50,sr,30,12.0,velocity,lower_ux,0.9423683881759644 +karman_re50,sr,30,12.0,velocity,lower_uy,0.04334839805960655 +karman_re50,sr,31,12.4,velocity,upper_ux,1.025545358657837 +karman_re50,sr,31,12.4,velocity,upper_uy,0.10180319100618362 +karman_re50,sr,31,12.4,velocity,center_ux,0.9282885789871216 +karman_re50,sr,31,12.4,velocity,center_uy,0.17042580246925354 +karman_re50,sr,31,12.4,velocity,lower_ux,0.9597868323326111 +karman_re50,sr,31,12.4,velocity,lower_uy,0.09409397840499878 +karman_re50,sr,32,12.8,velocity,upper_ux,0.9885862469673157 +karman_re50,sr,32,12.8,velocity,upper_uy,0.19460713863372803 +karman_re50,sr,32,12.8,velocity,center_ux,0.9540547728538513 +karman_re50,sr,32,12.8,velocity,center_uy,0.22249755263328552 +karman_re50,sr,32,12.8,velocity,lower_ux,0.9802570939064026 +karman_re50,sr,32,12.8,velocity,lower_uy,0.13559111952781677 +karman_re50,sr,33,13.2,velocity,upper_ux,0.9544200897216797 +karman_re50,sr,33,13.2,velocity,upper_uy,0.2509264051914215 +karman_re50,sr,33,13.2,velocity,center_ux,0.9833614826202393 +karman_re50,sr,33,13.2,velocity,center_uy,0.2558962106704712 +karman_re50,sr,33,13.2,velocity,lower_ux,1.0037437677383423 +karman_re50,sr,33,13.2,velocity,lower_uy,0.17142684757709503 +karman_re50,sr,34,13.6,velocity,upper_ux,0.9282392263412476 +karman_re50,sr,34,13.6,velocity,upper_uy,0.2678932845592499 +karman_re50,sr,34,13.6,velocity,center_ux,1.0089409351348877 +karman_re50,sr,34,13.6,velocity,center_uy,0.2796865999698639 +karman_re50,sr,34,13.6,velocity,lower_ux,1.028436303138733 +karman_re50,sr,34,13.6,velocity,lower_uy,0.20677345991134644 +karman_re50,sr,35,14.0,velocity,upper_ux,0.9076306819915771 +karman_re50,sr,35,14.0,velocity,upper_uy,0.25087618827819824 +karman_re50,sr,35,14.0,velocity,center_ux,1.0261670351028442 +karman_re50,sr,35,14.0,velocity,center_uy,0.29390713572502136 +karman_re50,sr,35,14.0,velocity,lower_ux,1.0520588159561157 +karman_re50,sr,35,14.0,velocity,lower_uy,0.24223506450653076 +karman_re50,sr,36,14.4,velocity,upper_ux,0.8906084299087524 +karman_re50,sr,36,14.4,velocity,upper_uy,0.20700766146183014 +karman_re50,sr,36,14.4,velocity,center_ux,1.031571388244629 +karman_re50,sr,36,14.4,velocity,center_uy,0.2914392352104187 +karman_re50,sr,36,14.4,velocity,lower_ux,1.0726460218429565 +karman_re50,sr,36,14.4,velocity,lower_uy,0.2734035551548004 +karman_re50,sr,37,14.8,velocity,upper_ux,0.8810798525810242 +karman_re50,sr,37,14.8,velocity,upper_uy,0.14685650169849396 +karman_re50,sr,37,14.8,velocity,center_ux,1.02247953414917 +karman_re50,sr,37,14.8,velocity,center_uy,0.2608984410762787 +karman_re50,sr,37,14.8,velocity,lower_ux,1.0872793197631836 +karman_re50,sr,37,14.8,velocity,lower_uy,0.28871750831604004 +karman_re50,sr,38,15.2,velocity,upper_ux,0.8857917785644531 +karman_re50,sr,38,15.2,velocity,upper_uy,0.08639649301767349 +karman_re50,sr,38,15.2,velocity,center_ux,0.9990158081054688 +karman_re50,sr,38,15.2,velocity,center_uy,0.19372086226940155 +karman_re50,sr,38,15.2,velocity,lower_ux,1.0929595232009888 +karman_re50,sr,38,15.2,velocity,lower_uy,0.27176472544670105 +karman_re50,sr,39,15.6,velocity,upper_ux,0.9044836163520813 +karman_re50,sr,39,15.6,velocity,upper_uy,0.03531886264681816 +karman_re50,sr,39,15.6,velocity,center_ux,0.9664199948310852 +karman_re50,sr,39,15.6,velocity,center_uy,0.09273230284452438 +karman_re50,sr,39,15.6,velocity,lower_ux,1.0878279209136963 +karman_re50,sr,39,15.6,velocity,lower_uy,0.21239374577999115 +karman_re50,sr,40,16.0,velocity,upper_ux,0.9271204471588135 +karman_re50,sr,40,16.0,velocity,upper_uy,-0.01200849749147892 +karman_re50,sr,40,16.0,velocity,center_ux,0.937571108341217 +karman_re50,sr,40,16.0,velocity,center_uy,-0.021072397008538246 +karman_re50,sr,40,16.0,velocity,lower_ux,1.0704352855682373 +karman_re50,sr,40,16.0,velocity,lower_uy,0.11636623740196228 +karman_re50,sr,41,16.4,velocity,upper_ux,0.9465936422348022 +karman_re50,sr,41,16.4,velocity,upper_uy,-0.06147903576493263 +karman_re50,sr,41,16.4,velocity,center_ux,0.9292028546333313 +karman_re50,sr,41,16.4,velocity,center_uy,-0.11676068603992462 +karman_re50,sr,41,16.4,velocity,lower_ux,1.0406789779663086 +karman_re50,sr,41,16.4,velocity,lower_uy,0.0015837122919037938 +karman_re50,sr,42,16.8,velocity,upper_ux,0.9650903940200806 +karman_re50,sr,42,16.8,velocity,upper_uy,-0.10716679692268372 +karman_re50,sr,42,16.8,velocity,center_ux,0.9444397687911987 +karman_re50,sr,42,16.8,velocity,center_uy,-0.18141819536685944 +karman_re50,sr,42,16.8,velocity,lower_ux,1.001634955406189 +karman_re50,sr,42,16.8,velocity,lower_uy,-0.11054270714521408 +karman_re50,sr,43,17.2,velocity,upper_ux,0.985873281955719 +karman_re50,sr,43,17.2,velocity,upper_uy,-0.14362972974777222 +karman_re50,sr,43,17.2,velocity,center_ux,0.9708184003829956 +karman_re50,sr,43,17.2,velocity,center_uy,-0.22443285584449768 +karman_re50,sr,43,17.2,velocity,lower_ux,0.9605215191841125 +karman_re50,sr,43,17.2,velocity,lower_uy,-0.1992550641298294 +karman_re50,sr,44,17.6,velocity,upper_ux,1.0092380046844482 +karman_re50,sr,44,17.6,velocity,upper_uy,-0.1749456375837326 +karman_re50,sr,44,17.6,velocity,center_ux,0.998504638671875 +karman_re50,sr,44,17.6,velocity,center_uy,-0.2556396722793579 +karman_re50,sr,44,17.6,velocity,lower_ux,0.9266161918640137 +karman_re50,sr,44,17.6,velocity,lower_uy,-0.2511207163333893 +karman_re50,sr,45,18.0,velocity,upper_ux,1.0336674451828003 +karman_re50,sr,45,18.0,velocity,upper_uy,-0.20631198585033417 +karman_re50,sr,45,18.0,velocity,center_ux,1.0231144428253174 +karman_re50,sr,45,18.0,velocity,center_uy,-0.27817925810813904 +karman_re50,sr,45,18.0,velocity,lower_ux,0.9029396176338196 +karman_re50,sr,45,18.0,velocity,lower_uy,-0.2643483877182007 +karman_re50,sr,46,18.4,velocity,upper_ux,1.0570026636123657 +karman_re50,sr,46,18.4,velocity,upper_uy,-0.23879116773605347 +karman_re50,sr,46,18.4,velocity,center_ux,1.0402125120162964 +karman_re50,sr,46,18.4,velocity,center_uy,-0.2908637523651123 +karman_re50,sr,46,18.4,velocity,lower_ux,0.8852762579917908 +karman_re50,sr,46,18.4,velocity,lower_uy,-0.24428986012935638 +karman_re50,sr,47,18.8,velocity,upper_ux,1.0772709846496582 +karman_re50,sr,47,18.8,velocity,upper_uy,-0.26831915974617004 +karman_re50,sr,47,18.8,velocity,center_ux,1.0454412698745728 +karman_re50,sr,47,18.8,velocity,center_uy,-0.2864902913570404 +karman_re50,sr,47,18.8,velocity,lower_ux,0.8715361952781677 +karman_re50,sr,47,18.8,velocity,lower_uy,-0.19758503139019012 +karman_re50,sr,48,19.2,velocity,upper_ux,1.0915937423706055 +karman_re50,sr,48,19.2,velocity,upper_uy,-0.28464844822883606 +karman_re50,sr,48,19.2,velocity,center_ux,1.0351887941360474 +karman_re50,sr,48,19.2,velocity,center_uy,-0.25451144576072693 +karman_re50,sr,48,19.2,velocity,lower_ux,0.8660828471183777 +karman_re50,sr,48,19.2,velocity,lower_uy,-0.13610021770000458 +karman_re50,sr,49,19.6,velocity,upper_ux,1.096798300743103 +karman_re50,sr,49,19.6,velocity,upper_uy,-0.27205008268356323 +karman_re50,sr,49,19.6,velocity,center_ux,1.008887529373169 +karman_re50,sr,49,19.6,velocity,center_uy,-0.18732887506484985 +karman_re50,sr,49,19.6,velocity,lower_ux,0.8754928112030029 +karman_re50,sr,49,19.6,velocity,lower_uy,-0.07739464193582535 +karman_re50,sr,50,20.0,velocity,upper_ux,1.0908608436584473 +karman_re50,sr,50,20.0,velocity,upper_uy,-0.2188996523618698 +karman_re50,sr,50,20.0,velocity,center_ux,0.9722540974617004 +karman_re50,sr,50,20.0,velocity,center_uy,-0.08857492357492447 +karman_re50,sr,50,20.0,velocity,lower_ux,0.8989359140396118 +karman_re50,sr,50,20.0,velocity,lower_uy,-0.03127225860953331 +karman_re50,sr,51,20.4,velocity,upper_ux,1.0725560188293457 +karman_re50,sr,51,20.4,velocity,upper_uy,-0.12849575281143188 +karman_re50,sr,51,20.4,velocity,center_ux,0.9395541548728943 +karman_re50,sr,51,20.4,velocity,center_uy,0.020886952057480812 +karman_re50,sr,51,20.4,velocity,lower_ux,0.9253630638122559 +karman_re50,sr,51,20.4,velocity,lower_uy,0.010148473083972931 +karman_re50,sr,52,20.8,velocity,upper_ux,1.041938304901123 +karman_re50,sr,52,20.8,velocity,upper_uy,-0.016926541924476624 +karman_re50,sr,52,20.8,velocity,center_ux,0.9284335970878601 +karman_re50,sr,52,20.8,velocity,center_uy,0.11233591288328171 +karman_re50,sr,52,20.8,velocity,lower_ux,0.946541965007782 +karman_re50,sr,52,20.8,velocity,lower_uy,0.0563361756503582 +karman_re50,sr,53,21.2,velocity,upper_ux,1.0020231008529663 +karman_re50,sr,53,21.2,velocity,upper_uy,0.09483689069747925 +karman_re50,sr,53,21.2,velocity,center_ux,0.9423509240150452 +karman_re50,sr,53,21.2,velocity,center_uy,0.1743384599685669 +karman_re50,sr,53,21.2,velocity,lower_ux,0.9648457169532776 +karman_re50,sr,53,21.2,velocity,lower_uy,0.10171901434659958 +karman_re50,sr,54,21.6,velocity,upper_ux,0.9597296714782715 +karman_re50,sr,54,21.6,velocity,upper_uy,0.18631944060325623 +karman_re50,sr,54,21.6,velocity,center_ux,0.9683588147163391 +karman_re50,sr,54,21.6,velocity,center_uy,0.2168213129043579 +karman_re50,sr,54,21.6,velocity,lower_ux,0.9847540259361267 +karman_re50,sr,54,21.6,velocity,lower_uy,0.13880109786987305 +karman_re50,sr,55,22.0,velocity,upper_ux,0.9243485331535339 +karman_re50,sr,55,22.0,velocity,upper_uy,0.242812380194664 +karman_re50,sr,55,22.0,velocity,center_ux,0.9959338903427124 +karman_re50,sr,55,22.0,velocity,center_uy,0.24866899847984314 +karman_re50,sr,55,22.0,velocity,lower_ux,1.0073177814483643 +karman_re50,sr,55,22.0,velocity,lower_uy,0.16991466283798218 +karman_re50,sr,56,22.4,velocity,upper_ux,0.8997859954833984 +karman_re50,sr,56,22.4,velocity,upper_uy,0.26107335090637207 +karman_re50,sr,56,22.4,velocity,center_ux,1.0208505392074585 +karman_re50,sr,56,22.4,velocity,center_uy,0.2722744047641754 +karman_re50,sr,56,22.4,velocity,lower_ux,1.0312097072601318 +karman_re50,sr,56,22.4,velocity,lower_uy,0.20071923732757568 +karman_re50,sr,57,22.8,velocity,upper_ux,0.8822476863861084 +karman_re50,sr,57,22.8,velocity,upper_uy,0.2455672025680542 +karman_re50,sr,57,22.8,velocity,center_ux,1.0389111042022705 +karman_re50,sr,57,22.8,velocity,center_uy,0.2864750325679779 +karman_re50,sr,57,22.8,velocity,lower_ux,1.0542489290237427 +karman_re50,sr,57,22.8,velocity,lower_uy,0.2328566610813141 +karman_re50,sr,58,23.2,velocity,upper_ux,0.8688237071037292 +karman_re50,sr,58,23.2,velocity,upper_uy,0.2027217447757721 +karman_re50,sr,58,23.2,velocity,center_ux,1.045652985572815 +karman_re50,sr,58,23.2,velocity,center_uy,0.285049706697464 +karman_re50,sr,58,23.2,velocity,lower_ux,1.0744538307189941 +karman_re50,sr,58,23.2,velocity,lower_uy,0.2631833255290985 +karman_re50,sr,59,23.6,velocity,upper_ux,0.8628787994384766 +karman_re50,sr,59,23.6,velocity,upper_uy,0.14335842430591583 +karman_re50,sr,59,23.6,velocity,center_ux,1.0372958183288574 +karman_re50,sr,59,23.6,velocity,center_uy,0.2579006552696228 +karman_re50,sr,59,23.6,velocity,lower_ux,1.0891687870025635 +karman_re50,sr,59,23.6,velocity,lower_uy,0.2825780510902405 +karman_re50,sr,60,24.0,velocity,upper_ux,0.8709190487861633 +karman_re50,sr,60,24.0,velocity,upper_uy,0.08445103466510773 +karman_re50,sr,60,24.0,velocity,center_ux,1.0127297639846802 +karman_re50,sr,60,24.0,velocity,center_uy,0.19677852094173431 +karman_re50,sr,60,24.0,velocity,lower_ux,1.0952728986740112 +karman_re50,sr,60,24.0,velocity,lower_uy,0.2758519649505615 +karman_re50,sr,61,24.4,velocity,upper_ux,0.8935142755508423 +karman_re50,sr,61,24.4,velocity,upper_uy,0.03775079548358917 +karman_re50,sr,61,24.4,velocity,center_ux,0.9766523838043213 +karman_re50,sr,61,24.4,velocity,center_uy,0.10328979790210724 +karman_re50,sr,61,24.4,velocity,lower_ux,1.0906106233596802 +karman_re50,sr,61,24.4,velocity,lower_uy,0.22991739213466644 +karman_re50,sr,62,24.8,velocity,upper_ux,0.9206209778785706 +karman_re50,sr,62,24.8,velocity,upper_uy,-0.0026356903836131096 +karman_re50,sr,62,24.8,velocity,center_ux,0.9419994950294495 +karman_re50,sr,62,24.8,velocity,center_uy,-0.004813145846128464 +karman_re50,sr,62,24.8,velocity,lower_ux,1.0738948583602905 +karman_re50,sr,62,24.8,velocity,lower_uy,0.14517764747142792 +karman_re50,sr,63,25.2,velocity,upper_ux,0.9427498579025269 +karman_re50,sr,63,25.2,velocity,upper_uy,-0.047506481409072876 +karman_re50,sr,63,25.2,velocity,center_ux,0.9266888499259949 +karman_re50,sr,63,25.2,velocity,center_uy,-0.09917313605546951 +karman_re50,sr,63,25.2,velocity,lower_ux,1.044897198677063 +karman_re50,sr,63,25.2,velocity,lower_uy,0.03615133464336395 +karman_re50,sr,64,25.6,velocity,upper_ux,0.9610397815704346 +karman_re50,sr,64,25.6,velocity,upper_uy,-0.09360238909721375 +karman_re50,sr,64,25.6,velocity,center_ux,0.9372482299804688 +karman_re50,sr,64,25.6,velocity,center_uy,-0.16497096419334412 +karman_re50,sr,64,25.6,velocity,lower_ux,1.0060936212539673 +karman_re50,sr,64,25.6,velocity,lower_uy,-0.07691849768161774 +karman_re50,sr,65,26.0,velocity,upper_ux,0.9804178476333618 +karman_re50,sr,65,26.0,velocity,upper_uy,-0.13207563757896423 +karman_re50,sr,65,26.0,velocity,center_ux,0.9623146057128906 +karman_re50,sr,65,26.0,velocity,center_uy,-0.209687277674675 +karman_re50,sr,65,26.0,velocity,lower_ux,0.9637355804443359 +karman_re50,sr,65,26.0,velocity,lower_uy,-0.17312581837177277 +karman_re50,sr,66,26.4,velocity,upper_ux,1.0026034116744995 +karman_re50,sr,66,26.4,velocity,upper_uy,-0.16377821564674377 +karman_re50,sr,66,26.4,velocity,center_ux,0.9901924729347229 +karman_re50,sr,66,26.4,velocity,center_uy,-0.24323390424251556 +karman_re50,sr,66,26.4,velocity,lower_ux,0.9270727038383484 +karman_re50,sr,66,26.4,velocity,lower_uy,-0.23644965887069702 +karman_re50,sr,67,26.8,velocity,upper_ux,1.026458978652954 +karman_re50,sr,67,26.8,velocity,upper_uy,-0.19436399638652802 +karman_re50,sr,67,26.8,velocity,center_ux,1.016062617301941 +karman_re50,sr,67,26.8,velocity,center_uy,-0.2684209942817688 +karman_re50,sr,67,26.8,velocity,lower_ux,0.9012783765792847 +karman_re50,sr,67,26.8,velocity,lower_uy,-0.26142147183418274 +karman_re50,sr,68,27.2,velocity,upper_ux,1.0498074293136597 +karman_re50,sr,68,27.2,velocity,upper_uy,-0.2263784259557724 +karman_re50,sr,68,27.2,velocity,center_ux,1.0358537435531616 +karman_re50,sr,68,27.2,velocity,center_uy,-0.2847883403301239 +karman_re50,sr,68,27.2,velocity,lower_ux,0.8833236694335938 +karman_re50,sr,68,27.2,velocity,lower_uy,-0.2516753673553467 +karman_re50,sr,69,27.6,velocity,upper_ux,1.0706813335418701 +karman_re50,sr,69,27.6,velocity,upper_uy,-0.2575645446777344 +karman_re50,sr,69,27.6,velocity,center_ux,1.0450832843780518 +karman_re50,sr,69,27.6,velocity,center_uy,-0.28709715604782104 +karman_re50,sr,69,27.6,velocity,lower_ux,0.8694573044776917 +karman_re50,sr,69,27.6,velocity,lower_uy,-0.21325719356536865 +karman_re50,sr,70,28.0,velocity,upper_ux,1.0866748094558716 +karman_re50,sr,70,28.0,velocity,upper_uy,-0.2800234854221344 +karman_re50,sr,70,28.0,velocity,center_ux,1.0397952795028687 +karman_re50,sr,70,28.0,velocity,center_uy,-0.2655862271785736 +karman_re50,sr,70,28.0,velocity,lower_ux,0.8618998527526855 +karman_re50,sr,70,28.0,velocity,lower_uy,-0.15567608177661896 +karman_re50,sr,71,28.4,velocity,upper_ux,1.0947245359420776 +karman_re50,sr,71,28.4,velocity,upper_uy,-0.2795369327068329 +karman_re50,sr,71,28.4,velocity,center_ux,1.0182316303253174 +karman_re50,sr,71,28.4,velocity,center_uy,-0.21120478212833405 +karman_re50,sr,71,28.4,velocity,lower_ux,0.8672677874565125 +karman_re50,sr,71,28.4,velocity,lower_uy,-0.09531547874212265 +karman_re50,sr,72,28.8,velocity,upper_ux,1.0924232006072998 +karman_re50,sr,72,28.8,velocity,upper_uy,-0.2415224015712738 +karman_re50,sr,72,28.8,velocity,center_ux,0.9837585687637329 +karman_re50,sr,72,28.8,velocity,center_uy,-0.12294420599937439 +karman_re50,sr,72,28.8,velocity,lower_ux,0.8880184888839722 +karman_re50,sr,72,28.8,velocity,lower_uy,-0.04616912454366684 +karman_re50,sr,73,29.2,velocity,upper_ux,1.0782082080841064 +karman_re50,sr,73,29.2,velocity,upper_uy,-0.16352882981300354 +karman_re50,sr,73,29.2,velocity,center_ux,0.9475334286689758 +karman_re50,sr,73,29.2,velocity,center_uy,-0.015566417947411537 +karman_re50,sr,73,29.2,velocity,lower_ux,0.9155712723731995 +karman_re50,sr,73,29.2,velocity,lower_uy,-0.005758935119956732 +karman_re50,sr,74,29.6,velocity,upper_ux,1.0515252351760864 +karman_re50,sr,74,29.6,velocity,upper_uy,-0.05776854604482651 +karman_re50,sr,74,29.6,velocity,center_ux,0.9274489879608154 +karman_re50,sr,74,29.6,velocity,center_uy,0.08329956233501434 +karman_re50,sr,74,29.6,velocity,lower_ux,0.9390079379081726 +karman_re50,sr,74,29.6,velocity,lower_uy,0.03812604025006294 +karman_re50,sr,75,30.0,velocity,upper_ux,1.0142390727996826 +karman_re50,sr,75,30.0,velocity,upper_uy,0.055887699127197266 +karman_re50,sr,75,30.0,velocity,center_ux,0.9335373640060425 +karman_re50,sr,75,30.0,velocity,center_uy,0.15430939197540283 +karman_re50,sr,75,30.0,velocity,lower_ux,0.9575467705726624 +karman_re50,sr,75,30.0,velocity,lower_uy,0.08499077707529068 +karman_re50,sr,76,30.4,velocity,upper_ux,0.9718737006187439 +karman_re50,sr,76,30.4,velocity,upper_uy,0.1565490961074829 +karman_re50,sr,76,30.4,velocity,center_ux,0.9569188952445984 +karman_re50,sr,76,30.4,velocity,center_uy,0.20204851031303406 +karman_re50,sr,76,30.4,velocity,lower_ux,0.9763494729995728 +karman_re50,sr,76,30.4,velocity,lower_uy,0.1254739910364151 +karman_re50,sr,77,30.8,velocity,upper_ux,0.9335119128227234 +karman_re50,sr,77,30.8,velocity,upper_uy,0.22669263184070587 +karman_re50,sr,77,30.8,velocity,center_ux,0.9847392439842224 +karman_re50,sr,77,30.8,velocity,center_uy,0.23733069002628326 +karman_re50,sr,77,30.8,velocity,lower_ux,0.9979918599128723 +karman_re50,sr,77,30.8,velocity,lower_uy,0.15819182991981506 +karman_re50,sr,78,31.2,velocity,upper_ux,0.9056593179702759 +karman_re50,sr,78,31.2,velocity,upper_uy,0.25871995091438293 +karman_re50,sr,78,31.2,velocity,center_ux,1.0112017393112183 +karman_re50,sr,78,31.2,velocity,center_uy,0.2640277147293091 +karman_re50,sr,78,31.2,velocity,lower_ux,1.0216445922851562 +karman_re50,sr,78,31.2,velocity,lower_uy,0.1887740194797516 +karman_re50,sr,79,31.6,velocity,upper_ux,0.8865206241607666 +karman_re50,sr,79,31.6,velocity,upper_uy,0.2551075220108032 +karman_re50,sr,79,31.6,velocity,center_ux,1.0323179960250854 +karman_re50,sr,79,31.6,velocity,center_uy,0.2822551429271698 +karman_re50,sr,79,31.6,velocity,lower_ux,1.0451104640960693 +karman_re50,sr,79,31.6,velocity,lower_uy,0.22067192196846008 +karman_re50,sr,80,32.0,velocity,upper_ux,0.871843159198761 +karman_re50,sr,80,32.0,velocity,upper_uy,0.22161856293678284 +karman_re50,sr,80,32.0,velocity,center_ux,1.0436152219772339 +karman_re50,sr,80,32.0,velocity,center_uy,0.28775280714035034 +karman_re50,sr,80,32.0,velocity,lower_ux,1.0663676261901855 +karman_re50,sr,80,32.0,velocity,lower_uy,0.2524687647819519 +karman_re50,sr,81,32.4,velocity,upper_ux,0.8626338839530945 +karman_re50,sr,81,32.4,velocity,upper_uy,0.16687455773353577 +karman_re50,sr,81,32.4,velocity,center_ux,1.0410428047180176 +karman_re50,sr,81,32.4,velocity,center_uy,0.2715107202529907 +karman_re50,sr,81,32.4,velocity,lower_ux,1.0832202434539795 +karman_re50,sr,81,32.4,velocity,lower_uy,0.2775469124317169 +karman_re50,sr,82,32.8,velocity,upper_ux,0.8651760220527649 +karman_re50,sr,82,32.8,velocity,upper_uy,0.10596536844968796 +karman_re50,sr,82,32.8,velocity,center_ux,1.0223491191864014 +karman_re50,sr,82,32.8,velocity,center_uy,0.2237275093793869 +karman_re50,sr,82,32.8,velocity,lower_ux,1.0927305221557617 +karman_re50,sr,82,32.8,velocity,lower_uy,0.2825130224227905 +karman_re50,sr,83,33.2,velocity,upper_ux,0.8833852410316467 +karman_re50,sr,83,33.2,velocity,upper_uy,0.054554156959056854 +karman_re50,sr,83,33.2,velocity,center_ux,0.989785373210907 +karman_re50,sr,83,33.2,velocity,center_uy,0.14144201576709747 +karman_re50,sr,83,33.2,velocity,lower_ux,1.0923786163330078 +karman_re50,sr,83,33.2,velocity,lower_uy,0.25209152698516846 +karman_re50,sr,84,33.6,velocity,upper_ux,0.9105003476142883 +karman_re50,sr,84,33.6,velocity,upper_uy,0.013384472578763962 +karman_re50,sr,84,33.6,velocity,center_ux,0.9527523517608643 +karman_re50,sr,84,33.6,velocity,center_uy,0.03591460734605789 +karman_re50,sr,84,33.6,velocity,lower_ux,1.0803897380828857 +karman_re50,sr,84,33.6,velocity,lower_uy,0.18076694011688232 +karman_re50,sr,85,34.0,velocity,upper_ux,0.9349116683006287 +karman_re50,sr,85,34.0,velocity,upper_uy,-0.02940717712044716 +karman_re50,sr,85,34.0,velocity,center_ux,0.9284367561340332 +karman_re50,sr,85,34.0,velocity,center_uy,-0.06652548164129257 +karman_re50,sr,85,34.0,velocity,lower_ux,1.0559289455413818 +karman_re50,sr,85,34.0,velocity,lower_uy,0.07861554622650146 +karman_re50,sr,86,34.4,velocity,upper_ux,0.9538571238517761 +karman_re50,sr,86,34.4,velocity,upper_uy,-0.07642920315265656 +karman_re50,sr,86,34.4,velocity,center_ux,0.9297792911529541 +karman_re50,sr,86,34.4,velocity,center_uy,-0.14314408600330353 +karman_re50,sr,86,34.4,velocity,lower_ux,1.0203204154968262 +karman_re50,sr,86,34.4,velocity,lower_uy,-0.03541550040245056 +karman_re50,sr,87,34.8,velocity,upper_ux,0.9722510576248169 +karman_re50,sr,87,34.8,velocity,upper_uy,-0.11847717314958572 +karman_re50,sr,87,34.8,velocity,center_ux,0.9510419368743896 +karman_re50,sr,87,34.8,velocity,center_uy,-0.194414883852005 +karman_re50,sr,87,34.8,velocity,lower_ux,0.9783732891082764 +karman_re50,sr,87,34.8,velocity,lower_uy,-0.14024657011032104 +karman_re50,sr,88,35.2,velocity,upper_ux,0.9934338927268982 +karman_re50,sr,88,35.2,velocity,upper_uy,-0.1522575467824936 +karman_re50,sr,88,35.2,velocity,center_ux,0.9787637591362 +karman_re50,sr,88,35.2,velocity,center_uy,-0.2316601425409317 +karman_re50,sr,88,35.2,velocity,lower_ux,0.9388064742088318 +karman_re50,sr,88,35.2,velocity,lower_uy,-0.2172449678182602 +karman_re50,sr,89,35.6,velocity,upper_ux,1.0169782638549805 +karman_re50,sr,89,35.6,velocity,upper_uy,-0.1829136610031128 +karman_re50,sr,89,35.6,velocity,center_ux,1.0059425830841064 +karman_re50,sr,89,35.6,velocity,center_uy,-0.26000574231147766 +karman_re50,sr,89,35.6,velocity,lower_ux,0.909162700176239 +karman_re50,sr,89,35.6,velocity,lower_uy,-0.25663474202156067 +karman_re50,sr,90,36.0,velocity,upper_ux,1.0407061576843262 +karman_re50,sr,90,36.0,velocity,upper_uy,-0.21456535160541534 +karman_re50,sr,90,36.0,velocity,center_ux,1.0285357236862183 +karman_re50,sr,90,36.0,velocity,center_uy,-0.2800588011741638 +karman_re50,sr,90,36.0,velocity,lower_ux,0.8889768719673157 +karman_re50,sr,90,36.0,velocity,lower_uy,-0.2593599557876587 +karman_re50,sr,91,36.4,velocity,upper_ux,1.0625545978546143 +karman_re50,sr,91,36.4,velocity,upper_uy,-0.2467782199382782 +karman_re50,sr,91,36.4,velocity,center_ux,1.0420974493026733 +karman_re50,sr,91,36.4,velocity,center_uy,-0.2886570990085602 +karman_re50,sr,91,36.4,velocity,lower_ux,0.8736741542816162 +karman_re50,sr,91,36.4,velocity,lower_uy,-0.2309902012348175 +karman_re50,sr,92,36.8,velocity,upper_ux,1.0804731845855713 +karman_re50,sr,92,36.8,velocity,upper_uy,-0.2738875448703766 +karman_re50,sr,92,36.8,velocity,center_ux,1.0424644947052002 +karman_re50,sr,92,36.8,velocity,center_uy,-0.27730733156204224 +karman_re50,sr,92,36.8,velocity,lower_ux,0.8630198836326599 +karman_re50,sr,92,36.8,velocity,lower_uy,-0.17906638979911804 +karman_re50,sr,93,37.2,velocity,upper_ux,1.0916825532913208 +karman_re50,sr,93,37.2,velocity,upper_uy,-0.28383779525756836 +karman_re50,sr,93,37.2,velocity,center_ux,1.026929259300232 +karman_re50,sr,93,37.2,velocity,center_uy,-0.23595008254051208 +karman_re50,sr,93,37.2,velocity,lower_ux,0.8627969622612 +karman_re50,sr,93,37.2,velocity,lower_uy,-0.11760987341403961 +karman_re50,sr,94,37.6,velocity,upper_ux,1.0935237407684326 +karman_re50,sr,94,37.6,velocity,upper_uy,-0.26080626249313354 +karman_re50,sr,94,37.6,velocity,center_ux,0.9967013001441956 +karman_re50,sr,94,37.6,velocity,center_uy,-0.15956911444664001 +karman_re50,sr,94,37.6,velocity,lower_ux,0.8783174753189087 +karman_re50,sr,94,37.6,velocity,lower_uy,-0.06337910890579224 +karman_re50,sr,95,38.0,velocity,upper_ux,1.0839577913284302 +karman_re50,sr,95,38.0,velocity,upper_uy,-0.19674095511436462 +karman_re50,sr,95,38.0,velocity,center_ux,0.959475576877594 +karman_re50,sr,95,38.0,velocity,center_uy,-0.05645269900560379 +karman_re50,sr,95,38.0,velocity,lower_ux,0.9049012660980225 +karman_re50,sr,95,38.0,velocity,lower_uy,-0.020944807678461075 +karman_re50,sr,96,38.4,velocity,upper_ux,1.0618557929992676 +karman_re50,sr,96,38.4,velocity,upper_uy,-0.0990317165851593 +karman_re50,sr,96,38.4,velocity,center_ux,0.9313799142837524 +karman_re50,sr,96,38.4,velocity,center_uy,0.049044255167245865 +karman_re50,sr,96,38.4,velocity,lower_ux,0.9305762648582458 +karman_re50,sr,96,38.4,velocity,lower_uy,0.020846350118517876 +karman_re50,sr,97,38.8,velocity,upper_ux,1.028037190437317 +karman_re50,sr,97,38.8,velocity,upper_uy,0.01432811375707388 +karman_re50,sr,97,38.8,velocity,center_ux,0.9277237057685852 +karman_re50,sr,97,38.8,velocity,center_uy,0.131271630525589 +karman_re50,sr,97,38.8,velocity,lower_ux,0.9503208994865417 +karman_re50,sr,97,38.8,velocity,lower_uy,0.06774186342954636 +karman_re50,sr,98,39.2,velocity,upper_ux,0.986630916595459 +karman_re50,sr,98,39.2,velocity,upper_uy,0.12230712920427322 +karman_re50,sr,98,39.2,velocity,center_ux,0.9463000297546387 +karman_re50,sr,98,39.2,velocity,center_uy,0.18633237481117249 +karman_re50,sr,98,39.2,velocity,lower_ux,0.9684255719184875 +karman_re50,sr,98,39.2,velocity,lower_uy,0.11144594848155975 +karman_re50,sr,99,39.6,velocity,upper_ux,0.9458737969398499 +karman_re50,sr,99,39.6,velocity,upper_uy,0.20546212792396545 +karman_re50,sr,99,39.6,velocity,center_ux,0.9735478758811951 +karman_re50,sr,99,39.6,velocity,center_uy,0.22557087242603302 +karman_re50,sr,99,39.6,velocity,lower_ux,0.9890698194503784 +karman_re50,sr,99,39.6,velocity,lower_uy,0.14661866426467896 +karman_re50,sr,100,40.0,velocity,upper_ux,0.9141504764556885 +karman_re50,sr,100,40.0,velocity,upper_uy,0.2518875300884247 +karman_re50,sr,100,40.0,velocity,center_ux,1.0011215209960938 +karman_re50,sr,100,40.0,velocity,center_uy,0.25539693236351013 +karman_re50,sr,100,40.0,velocity,lower_ux,1.0123894214630127 +karman_re50,sr,100,40.0,velocity,lower_uy,0.17742280662059784 +karman_re50,sr,101,40.4,velocity,upper_ux,0.8924881815910339 +karman_re50,sr,101,40.4,velocity,upper_uy,0.2609957754611969 +karman_re50,sr,101,40.4,velocity,center_ux,1.024827241897583 +karman_re50,sr,101,40.4,velocity,center_uy,0.2770638167858124 +karman_re50,sr,101,40.4,velocity,lower_ux,1.0362598896026611 +karman_re50,sr,101,40.4,velocity,lower_uy,0.2088242918252945 +karman_re50,sr,102,40.8,velocity,upper_ux,0.8763770461082458 +karman_re50,sr,102,40.8,velocity,upper_uy,0.23786823451519012 +karman_re50,sr,102,40.8,velocity,center_ux,1.0402789115905762 +karman_re50,sr,102,40.8,velocity,center_uy,0.28817808628082275 +karman_re50,sr,102,40.8,velocity,lower_ux,1.058530330657959 +karman_re50,sr,102,40.8,velocity,lower_uy,0.24115997552871704 +karman_re50,sr,103,41.2,velocity,upper_ux,0.8644494414329529 +karman_re50,sr,103,41.2,velocity,upper_uy,0.18953600525856018 +karman_re50,sr,103,41.2,velocity,center_ux,1.0432204008102417 +karman_re50,sr,103,41.2,velocity,center_uy,0.2812381684780121 +karman_re50,sr,103,41.2,velocity,lower_ux,1.0772401094436646 +karman_re50,sr,103,41.2,velocity,lower_uy,0.26992788910865784 +karman_re50,sr,104,41.6,velocity,upper_ux,0.8616992235183716 +karman_re50,sr,104,41.6,velocity,upper_uy,0.12854547798633575 +karman_re50,sr,104,41.6,velocity,center_ux,1.0305912494659424 +karman_re50,sr,104,41.6,velocity,center_uy,0.24592775106430054 +karman_re50,sr,104,41.6,velocity,lower_ux,1.0897823572158813 +karman_re50,sr,104,41.6,velocity,lower_uy,0.28413528203964233 +karman_re50,sr,105,42.0,velocity,upper_ux,0.8743354082107544 +karman_re50,sr,105,42.0,velocity,upper_uy,0.07216527312994003 +karman_re50,sr,105,42.0,velocity,center_ux,1.0027518272399902 +karman_re50,sr,105,42.0,velocity,center_uy,0.17581823468208313 +karman_re50,sr,105,42.0,velocity,lower_ux,1.0934665203094482 +karman_re50,sr,105,42.0,velocity,lower_uy,0.26807379722595215 +karman_re50,sr,106,42.4,velocity,upper_ux,0.8997411131858826 +karman_re50,sr,106,42.4,velocity,upper_uy,0.028115542605519295 +karman_re50,sr,106,42.4,velocity,center_ux,0.9658936262130737 +karman_re50,sr,106,42.4,velocity,center_uy,0.07616539299488068 +karman_re50,sr,106,42.4,velocity,lower_ux,1.086066484451294 +karman_re50,sr,106,42.4,velocity,lower_uy,0.21127325296401978 +karman_re50,sr,107,42.8,velocity,upper_ux,0.9262510538101196 +karman_re50,sr,107,42.8,velocity,upper_uy,-0.012902425602078438 +karman_re50,sr,107,42.8,velocity,center_ux,0.934736967086792 +karman_re50,sr,107,42.8,velocity,center_uy,-0.03112166002392769 +karman_re50,sr,107,42.8,velocity,lower_ux,1.0662039518356323 +karman_re50,sr,107,42.8,velocity,lower_uy,0.11843028664588928 +karman_re50,sr,108,43.2,velocity,upper_ux,0.9468517303466797 +karman_re50,sr,108,43.2,velocity,upper_uy,-0.05919794738292694 +karman_re50,sr,108,43.2,velocity,center_ux,0.9261577725410461 +karman_re50,sr,108,43.2,velocity,center_uy,-0.11866552382707596 +karman_re50,sr,108,43.2,velocity,lower_ux,1.0342618227005005 +karman_re50,sr,108,43.2,velocity,lower_uy,0.00626495061442256 +karman_re50,sr,109,43.6,velocity,upper_ux,0.9648007154464722 +karman_re50,sr,109,43.6,velocity,upper_uy,-0.10414636880159378 +karman_re50,sr,109,43.6,velocity,center_ux,0.9416218400001526 +karman_re50,sr,109,43.6,velocity,center_uy,-0.17795638740062714 +karman_re50,sr,109,43.6,velocity,lower_ux,0.993706226348877 +karman_re50,sr,109,43.6,velocity,lower_uy,-0.10437245666980743 +karman_re50,sr,110,44.0,velocity,upper_ux,0.9849138855934143 +karman_re50,sr,110,44.0,velocity,upper_uy,-0.14067818224430084 +karman_re50,sr,110,44.0,velocity,center_ux,0.9681958556175232 +karman_re50,sr,110,44.0,velocity,center_uy,-0.21933721005916595 +karman_re50,sr,110,44.0,velocity,lower_ux,0.9521881341934204 +karman_re50,sr,110,44.0,velocity,lower_uy,-0.1933087408542633 +karman_re50,sr,111,44.4,velocity,upper_ux,1.0079690217971802 +karman_re50,sr,111,44.4,velocity,upper_uy,-0.1718195080757141 +karman_re50,sr,111,44.4,velocity,center_ux,0.996151864528656 +karman_re50,sr,111,44.4,velocity,center_uy,-0.25075432658195496 +karman_re50,sr,111,44.4,velocity,lower_ux,0.918640673160553 +karman_re50,sr,111,44.4,velocity,lower_uy,-0.24684888124465942 +karman_re50,sr,112,44.8,velocity,upper_ux,1.0319770574569702 +karman_re50,sr,112,44.8,velocity,upper_uy,-0.20290318131446838 +karman_re50,sr,112,44.8,velocity,center_ux,1.0209591388702393 +karman_re50,sr,112,44.8,velocity,center_uy,-0.2739446759223938 +karman_re50,sr,112,44.8,velocity,lower_ux,0.895579993724823 +karman_re50,sr,112,44.8,velocity,lower_uy,-0.2624194025993347 +karman_re50,sr,113,45.2,velocity,upper_ux,1.0547045469284058 +karman_re50,sr,113,45.2,velocity,upper_uy,-0.23527050018310547 +karman_re50,sr,113,45.2,velocity,center_ux,1.0382955074310303 +karman_re50,sr,113,45.2,velocity,center_uy,-0.28746479749679565 +karman_re50,sr,113,45.2,velocity,lower_ux,0.8788143396377563 +karman_re50,sr,113,45.2,velocity,lower_uy,-0.2447299063205719 +karman_re50,sr,114,45.6,velocity,upper_ux,1.074242115020752 +karman_re50,sr,114,45.6,velocity,upper_uy,-0.2652592062950134 +karman_re50,sr,114,45.6,velocity,center_ux,1.0438263416290283 +karman_re50,sr,114,45.6,velocity,center_uy,-0.2845820486545563 +karman_re50,sr,114,45.6,velocity,lower_ux,0.8659033179283142 +karman_re50,sr,114,45.6,velocity,lower_uy,-0.20018108189105988 +karman_re50,sr,115,46.0,velocity,upper_ux,1.0881692171096802 +karman_re50,sr,115,46.0,velocity,upper_uy,-0.28325098752975464 +karman_re50,sr,115,46.0,velocity,center_ux,1.0341856479644775 +karman_re50,sr,115,46.0,velocity,center_uy,-0.2551662027835846 +karman_re50,sr,115,46.0,velocity,lower_ux,0.8608894944190979 +karman_re50,sr,115,46.0,velocity,lower_uy,-0.14009977877140045 +karman_re50,sr,116,46.4,velocity,upper_ux,1.0937836170196533 +karman_re50,sr,116,46.4,velocity,upper_uy,-0.273838073015213 +karman_re50,sr,116,46.4,velocity,center_ux,1.0089764595031738 +karman_re50,sr,116,46.4,velocity,center_uy,-0.19141238927841187 +karman_re50,sr,116,46.4,velocity,lower_ux,0.8705991506576538 +karman_re50,sr,116,46.4,velocity,lower_uy,-0.08162683248519897 +karman_re50,sr,117,46.8,velocity,upper_ux,1.088661789894104 +karman_re50,sr,117,46.8,velocity,upper_uy,-0.2246422916650772 +karman_re50,sr,117,46.8,velocity,center_ux,0.9729961156845093 +karman_re50,sr,117,46.8,velocity,center_uy,-0.09589526802301407 +karman_re50,sr,117,46.8,velocity,lower_ux,0.894528329372406 +karman_re50,sr,117,46.8,velocity,lower_uy,-0.03555120527744293 +karman_re50,sr,118,47.2,velocity,upper_ux,1.071160078048706 +karman_re50,sr,118,47.2,velocity,upper_uy,-0.13742682337760925 +karman_re50,sr,118,47.2,velocity,center_ux,0.9393630027770996 +karman_re50,sr,118,47.2,velocity,center_uy,0.01229687687009573 +karman_re50,sr,118,47.2,velocity,lower_ux,0.9217900037765503 +karman_re50,sr,118,47.2,velocity,lower_uy,0.004993753042072058 +karman_re50,sr,119,47.6,velocity,upper_ux,1.041247844696045 +karman_re50,sr,119,47.6,velocity,upper_uy,-0.027322806417942047 +karman_re50,sr,119,47.6,velocity,center_ux,0.9258564114570618 +karman_re50,sr,119,47.6,velocity,center_uy,0.10494623333215714 +karman_re50,sr,119,47.6,velocity,lower_ux,0.9434844255447388 +karman_re50,sr,119,47.6,velocity,lower_uy,0.05048193410038948 +karman_re50,sr,120,48.0,velocity,upper_ux,1.0017495155334473 +karman_re50,sr,120,48.0,velocity,upper_uy,0.0850689709186554 +karman_re50,sr,120,48.0,velocity,center_ux,0.9376611113548279 +karman_re50,sr,120,48.0,velocity,center_uy,0.16883017122745514 +karman_re50,sr,120,48.0,velocity,lower_ux,0.9614410400390625 +karman_re50,sr,120,48.0,velocity,lower_uy,0.09649576246738434 +karman_re50,sr,121,48.4,velocity,upper_ux,0.9596416354179382 +karman_re50,sr,121,48.4,velocity,upper_uy,0.179216668009758 +karman_re50,sr,121,48.4,velocity,center_ux,0.963162362575531 +karman_re50,sr,121,48.4,velocity,center_uy,0.2126283198595047 +karman_re50,sr,121,48.4,velocity,lower_ux,0.980979323387146 +karman_re50,sr,121,48.4,velocity,lower_uy,0.1346656233072281 +karman_re50,sr,122,48.8,velocity,upper_ux,0.9241673350334167 +karman_re50,sr,122,48.8,velocity,upper_uy,0.23964092135429382 +karman_re50,sr,122,48.8,velocity,center_ux,0.9912865161895752 +karman_re50,sr,122,48.8,velocity,center_uy,0.24557282030582428 +karman_re50,sr,122,48.8,velocity,lower_ux,1.0036475658416748 +karman_re50,sr,122,48.8,velocity,lower_uy,0.16631145775318146 +karman_re50,sr,123,49.2,velocity,upper_ux,0.8993487358093262 +karman_re50,sr,123,49.2,velocity,upper_uy,0.2618623971939087 +karman_re50,sr,123,49.2,velocity,center_ux,1.0169559717178345 +karman_re50,sr,123,49.2,velocity,center_uy,0.27024054527282715 +karman_re50,sr,123,49.2,velocity,lower_ux,1.0276756286621094 +karman_re50,sr,123,49.2,velocity,lower_uy,0.1971915066242218 +karman_re50,sr,124,49.6,velocity,upper_ux,0.8816975355148315 +karman_re50,sr,124,49.6,velocity,upper_uy,0.24974919855594635 +karman_re50,sr,124,49.6,velocity,center_ux,1.0359172821044922 +karman_re50,sr,124,49.6,velocity,center_uy,0.28578054904937744 +karman_re50,sr,124,49.6,velocity,lower_ux,1.050734519958496 +karman_re50,sr,124,49.6,velocity,lower_uy,0.2294268012046814 +karman_re50,sr,125,50.0,velocity,upper_ux,0.8678985834121704 +karman_re50,sr,125,50.0,velocity,upper_uy,0.20947515964508057 +karman_re50,sr,125,50.0,velocity,center_ux,1.043776273727417 +karman_re50,sr,125,50.0,velocity,center_uy,0.28653979301452637 +karman_re50,sr,125,50.0,velocity,lower_ux,1.070915699005127 +karman_re50,sr,125,50.0,velocity,lower_uy,0.26036813855171204 +karman_re50,sr,126,50.4,velocity,upper_ux,0.8608918786048889 +karman_re50,sr,126,50.4,velocity,upper_uy,0.1510981023311615 +karman_re50,sr,126,50.4,velocity,center_ux,1.0369367599487305 +karman_re50,sr,126,50.4,velocity,center_uy,0.26263293623924255 +karman_re50,sr,126,50.4,velocity,lower_ux,1.085961937904358 +karman_re50,sr,126,50.4,velocity,lower_uy,0.2815512716770172 +karman_re50,sr,127,50.8,velocity,upper_ux,0.8676849603652954 +karman_re50,sr,127,50.8,velocity,upper_uy,0.09121000021696091 +karman_re50,sr,127,50.8,velocity,center_ux,1.014367938041687 +karman_re50,sr,127,50.8,velocity,center_uy,0.20530357956886292 +karman_re50,sr,127,50.8,velocity,lower_ux,1.0932384729385376 +karman_re50,sr,127,50.8,velocity,lower_uy,0.27824994921684265 +karman_re50,sr,128,51.2,velocity,upper_ux,0.8896726965904236 +karman_re50,sr,128,51.2,velocity,upper_uy,0.04299187660217285 +karman_re50,sr,128,51.2,velocity,center_ux,0.9796693921089172 +karman_re50,sr,128,51.2,velocity,center_uy,0.11468581855297089 +karman_re50,sr,128,51.2,velocity,lower_ux,1.0901918411254883 +karman_re50,sr,128,51.2,velocity,lower_uy,0.23658668994903564 +karman_re50,sr,129,51.6,velocity,upper_ux,0.9172191023826599 +karman_re50,sr,129,51.6,velocity,upper_uy,0.0024713051971048117 +karman_re50,sr,129,51.6,velocity,center_ux,0.9442724585533142 +karman_re50,sr,129,51.6,velocity,center_uy,0.0067481654696166515 +karman_re50,sr,129,51.6,velocity,lower_ux,1.074947714805603 +karman_re50,sr,129,51.6,velocity,lower_uy,0.15533971786499023 +karman_re50,sr,130,52.0,velocity,upper_ux,0.9399912357330322 +karman_re50,sr,130,52.0,velocity,upper_uy,-0.04195375367999077 +karman_re50,sr,130,52.0,velocity,center_ux,0.9261444211006165 +karman_re50,sr,130,52.0,velocity,center_uy,-0.09034794569015503 +karman_re50,sr,130,52.0,velocity,lower_ux,1.0471198558807373 +karman_re50,sr,130,52.0,velocity,lower_uy,0.04789562523365021 +karman_re50,sr,131,52.4,velocity,upper_ux,0.9581176042556763 +karman_re50,sr,131,52.4,velocity,upper_uy,-0.08865515887737274 +karman_re50,sr,131,52.4,velocity,center_ux,0.9339110851287842 +karman_re50,sr,131,52.4,velocity,center_uy,-0.1591947078704834 +karman_re50,sr,131,52.4,velocity,lower_ux,1.0089234113693237 +karman_re50,sr,131,52.4,velocity,lower_uy,-0.06572826951742172 +karman_re50,sr,132,52.8,velocity,upper_ux,0.9771162271499634 +karman_re50,sr,132,52.8,velocity,upper_uy,-0.1283709704875946 +karman_re50,sr,132,52.8,velocity,center_ux,0.9579865336418152 +karman_re50,sr,132,52.8,velocity,center_uy,-0.20566904544830322 +karman_re50,sr,132,52.8,velocity,lower_ux,0.9666264057159424 +karman_re50,sr,132,52.8,velocity,lower_uy,-0.16456937789916992 +karman_re50,sr,133,53.2,velocity,upper_ux,0.999351978302002 +karman_re50,sr,133,53.2,velocity,upper_uy,-0.16075217723846436 +karman_re50,sr,133,53.2,velocity,center_ux,0.9861741065979004 +karman_re50,sr,133,53.2,velocity,center_uy,-0.2402970939874649 +karman_re50,sr,133,53.2,velocity,lower_ux,0.9295188188552856 +karman_re50,sr,133,53.2,velocity,lower_uy,-0.23182690143585205 +karman_re50,sr,134,53.6,velocity,upper_ux,1.0233657360076904 +karman_re50,sr,134,53.6,velocity,upper_uy,-0.19144800305366516 +karman_re50,sr,134,53.6,velocity,center_ux,1.0126413106918335 +karman_re50,sr,134,53.6,velocity,center_uy,-0.26644036173820496 +karman_re50,sr,134,53.6,velocity,lower_ux,0.9029946327209473 +karman_re50,sr,134,53.6,velocity,lower_uy,-0.2608179748058319 +karman_re50,sr,135,54.0,velocity,upper_ux,1.0467625856399536 +karman_re50,sr,135,54.0,velocity,upper_uy,-0.22350460290908813 +karman_re50,sr,135,54.0,velocity,center_ux,1.033176302909851 +karman_re50,sr,135,54.0,velocity,center_uy,-0.2839454114437103 +karman_re50,sr,135,54.0,velocity,lower_ux,0.8844851851463318 +karman_re50,sr,135,54.0,velocity,lower_uy,-0.25452515482902527 +karman_re50,sr,136,54.4,velocity,upper_ux,1.0676052570343018 +karman_re50,sr,136,54.4,velocity,upper_uy,-0.2551085948944092 +karman_re50,sr,136,54.4,velocity,center_ux,1.043359637260437 +karman_re50,sr,136,54.4,velocity,center_uy,-0.28809183835983276 +karman_re50,sr,136,54.4,velocity,lower_ux,0.8699672818183899 +karman_re50,sr,136,54.4,velocity,lower_uy,-0.2188033163547516 +karman_re50,sr,137,54.8,velocity,upper_ux,1.08378005027771 +karman_re50,sr,137,54.8,velocity,upper_uy,-0.27899569272994995 +karman_re50,sr,137,54.8,velocity,center_ux,1.0393779277801514 +karman_re50,sr,137,54.8,velocity,center_uy,-0.269461452960968 +karman_re50,sr,137,54.8,velocity,lower_ux,0.8611855506896973 +karman_re50,sr,137,54.8,velocity,lower_uy,-0.1625843197107315 +karman_re50,sr,138,55.2,velocity,upper_ux,1.0927443504333496 +karman_re50,sr,138,55.2,velocity,upper_uy,-0.28138092160224915 +karman_re50,sr,138,55.2,velocity,center_ux,1.0196418762207031 +karman_re50,sr,138,55.2,velocity,center_uy,-0.21857355535030365 +karman_re50,sr,138,55.2,velocity,lower_ux,0.8650644421577454 +karman_re50,sr,138,55.2,velocity,lower_uy,-0.10158980637788773 +karman_re50,sr,139,55.6,velocity,upper_ux,1.0918409824371338 +karman_re50,sr,139,55.6,velocity,upper_uy,-0.2472606897354126 +karman_re50,sr,139,55.6,velocity,center_ux,0.9866580963134766 +karman_re50,sr,139,55.6,velocity,center_uy,-0.13326896727085114 +karman_re50,sr,139,55.6,velocity,lower_ux,0.8847914338111877 +karman_re50,sr,139,55.6,velocity,lower_uy,-0.050892725586891174 +karman_re50,sr,140,56.0,velocity,upper_ux,1.0789446830749512 +karman_re50,sr,140,56.0,velocity,upper_uy,-0.17258842289447784 +karman_re50,sr,140,56.0,velocity,center_ux,0.95013028383255 +karman_re50,sr,140,56.0,velocity,center_uy,-0.026468129828572273 +karman_re50,sr,140,56.0,velocity,lower_ux,0.9123608469963074 +karman_re50,sr,140,56.0,velocity,lower_uy,-0.009947466664016247 +karman_re50,sr,141,56.4,velocity,upper_ux,1.0533276796340942 +karman_re50,sr,141,56.4,velocity,upper_uy,-0.06851841509342194 +karman_re50,sr,141,56.4,velocity,center_ux,0.9276431202888489 +karman_re50,sr,141,56.4,velocity,center_uy,0.0746530070900917 +karman_re50,sr,141,56.4,velocity,lower_ux,0.9363508820533752 +karman_re50,sr,141,56.4,velocity,lower_uy,0.03340443968772888 +karman_re50,sr,142,56.8,velocity,upper_ux,1.0166294574737549 +karman_re50,sr,142,56.8,velocity,upper_uy,0.04549960047006607 +karman_re50,sr,142,56.8,velocity,center_ux,0.9309378862380981 +karman_re50,sr,142,56.8,velocity,center_uy,0.14873255789279938 +karman_re50,sr,142,56.8,velocity,lower_ux,0.9548916816711426 +karman_re50,sr,142,56.8,velocity,lower_uy,0.08045840263366699 +karman_re50,sr,143,57.2,velocity,upper_ux,0.9743835926055908 +karman_re50,sr,143,57.2,velocity,upper_uy,0.14843302965164185 +karman_re50,sr,143,57.2,velocity,center_ux,0.9531088471412659 +karman_re50,sr,143,57.2,velocity,center_uy,0.19829611480236053 +karman_re50,sr,143,57.2,velocity,lower_ux,0.9734005928039551 +karman_re50,sr,143,57.2,velocity,lower_uy,0.1218588650226593 +karman_re50,sr,144,57.6,velocity,upper_ux,0.9357168674468994 +karman_re50,sr,144,57.6,velocity,upper_uy,0.22220556437969208 +karman_re50,sr,144,57.6,velocity,center_ux,0.9811458587646484 +karman_re50,sr,144,57.6,velocity,center_uy,0.23461845517158508 +karman_re50,sr,144,57.6,velocity,lower_ux,0.9951198697090149 +karman_re50,sr,144,57.6,velocity,lower_uy,0.1551879644393921 +karman_re50,sr,145,58.0,velocity,upper_ux,0.907256007194519 +karman_re50,sr,145,58.0,velocity,upper_uy,0.258073627948761 +karman_re50,sr,145,58.0,velocity,center_ux,1.0082296133041382 +karman_re50,sr,145,58.0,velocity,center_uy,0.26221054792404175 +karman_re50,sr,145,58.0,velocity,lower_ux,1.0190190076828003 +karman_re50,sr,145,58.0,velocity,lower_uy,0.1858370453119278 +karman_re50,sr,146,58.4,velocity,upper_ux,0.8876323103904724 +karman_re50,sr,146,58.4,velocity,upper_uy,0.25775259733200073 +karman_re50,sr,146,58.4,velocity,center_ux,1.0301305055618286 +karman_re50,sr,146,58.4,velocity,center_uy,0.28143560886383057 +karman_re50,sr,146,58.4,velocity,lower_ux,1.042665958404541 +karman_re50,sr,146,58.4,velocity,lower_uy,0.21764671802520752 +karman_re50,sr,147,58.8,velocity,upper_ux,0.8724108934402466 +karman_re50,sr,147,58.8,velocity,upper_uy,0.22686821222305298 +karman_re50,sr,147,58.8,velocity,center_ux,1.0424230098724365 +karman_re50,sr,147,58.8,velocity,center_uy,0.28856512904167175 +karman_re50,sr,147,58.8,velocity,lower_ux,1.064052700996399 +karman_re50,sr,147,58.8,velocity,lower_uy,0.2496872842311859 +karman_re50,sr,148,59.2,velocity,upper_ux,0.8621065616607666 +karman_re50,sr,148,59.2,velocity,upper_uy,0.17345671355724335 +karman_re50,sr,148,59.2,velocity,center_ux,1.0411266088485718 +karman_re50,sr,148,59.2,velocity,center_uy,0.27484023571014404 +karman_re50,sr,148,59.2,velocity,lower_ux,1.0811750888824463 +karman_re50,sr,148,59.2,velocity,lower_uy,0.2758263945579529 +karman_re50,sr,149,59.6,velocity,upper_ux,0.8632182478904724 +karman_re50,sr,149,59.6,velocity,upper_uy,0.11205248534679413 +karman_re50,sr,149,59.6,velocity,center_ux,1.024182677268982 +karman_re50,sr,149,59.6,velocity,center_uy,0.2302710860967636 +karman_re50,sr,149,59.6,velocity,lower_ux,1.0916166305541992 +karman_re50,sr,149,59.6,velocity,lower_uy,0.28330403566360474 +karman_re50,sr,150,60.0,velocity,upper_ux,0.8803794384002686 +karman_re50,sr,150,60.0,velocity,upper_uy,0.059034522622823715 +karman_re50,sr,150,60.0,velocity,center_ux,0.9931724667549133 +karman_re50,sr,150,60.0,velocity,center_uy,0.15081720054149628 +karman_re50,sr,150,60.0,velocity,lower_ux,1.0926917791366577 +karman_re50,sr,150,60.0,velocity,lower_uy,0.256549596786499 +karman_re50,sr,151,60.4,velocity,upper_ux,0.9074705243110657 +karman_re50,sr,151,60.4,velocity,upper_uy,0.01717948354780674 +karman_re50,sr,151,60.4,velocity,center_ux,0.9561569094657898 +karman_re50,sr,151,60.4,velocity,center_uy,0.04619897902011871 +karman_re50,sr,151,60.4,velocity,lower_ux,1.0820603370666504 +karman_re50,sr,151,60.4,velocity,lower_uy,0.1887192279100418 +karman_re50,sr,152,60.8,velocity,upper_ux,0.9325447082519531 +karman_re50,sr,152,60.8,velocity,upper_uy,-0.025098180398344994 +karman_re50,sr,152,60.8,velocity,center_ux,0.9298133254051208 +karman_re50,sr,152,60.8,velocity,center_uy,-0.05803016573190689 +karman_re50,sr,152,60.8,velocity,lower_ux,1.0586869716644287 +karman_re50,sr,152,60.8,velocity,lower_uy,0.08863238990306854 +karman_re50,sr,153,61.2,velocity,upper_ux,0.9516696929931641 +karman_re50,sr,153,61.2,velocity,upper_uy,-0.07212302088737488 +karman_re50,sr,153,61.2,velocity,center_ux,0.9284133315086365 +karman_re50,sr,153,61.2,velocity,center_uy,-0.13750533759593964 +karman_re50,sr,153,61.2,velocity,lower_ux,1.0236787796020508 +karman_re50,sr,153,61.2,velocity,lower_uy,-0.02520439215004444 +karman_re50,sr,154,61.6,velocity,upper_ux,0.9697760939598083 +karman_re50,sr,154,61.6,velocity,upper_uy,-0.11503423005342484 +karman_re50,sr,154,61.6,velocity,center_ux,0.9482265710830688 +karman_re50,sr,154,61.6,velocity,center_uy,-0.19057588279247284 +karman_re50,sr,154,61.6,velocity,lower_ux,0.9818238615989685 +karman_re50,sr,154,61.6,velocity,lower_uy,-0.13166487216949463 +karman_re50,sr,155,62.0,velocity,upper_ux,0.9909379482269287 +karman_re50,sr,155,62.0,velocity,upper_uy,-0.14950530230998993 +karman_re50,sr,155,62.0,velocity,center_ux,0.9759395718574524 +karman_re50,sr,155,62.0,velocity,center_uy,-0.22877377271652222 +karman_re50,sr,155,62.0,velocity,lower_ux,0.9419002532958984 +karman_re50,sr,155,62.0,velocity,lower_uy,-0.21174116432666779 +karman_re50,sr,156,62.4,velocity,upper_ux,1.0146656036376953 +karman_re50,sr,156,62.4,velocity,upper_uy,-0.18022224307060242 +karman_re50,sr,156,62.4,velocity,center_ux,1.003568410873413 +karman_re50,sr,156,62.4,velocity,center_uy,-0.2578554153442383 +karman_re50,sr,156,62.4,velocity,lower_ux,0.9115406274795532 +karman_re50,sr,156,62.4,velocity,lower_uy,-0.2545942962169647 +karman_re50,sr,157,62.8,velocity,upper_ux,1.0385384559631348 +karman_re50,sr,157,62.8,velocity,upper_uy,-0.21174709498882294 +karman_re50,sr,157,62.8,velocity,center_ux,1.0267608165740967 +karman_re50,sr,157,62.8,velocity,center_uy,-0.27872416377067566 +karman_re50,sr,157,62.8,velocity,lower_ux,0.8907263278961182 +karman_re50,sr,157,62.8,velocity,lower_uy,-0.2604317367076874 +karman_re50,sr,158,63.2,velocity,upper_ux,1.060459852218628 +karman_re50,sr,158,63.2,velocity,upper_uy,-0.24404264986515045 +karman_re50,sr,158,63.2,velocity,center_ux,1.0411120653152466 +karman_re50,sr,158,63.2,velocity,center_uy,-0.2886075973510742 +karman_re50,sr,158,63.2,velocity,lower_ux,0.8748790621757507 +karman_re50,sr,158,63.2,velocity,lower_uy,-0.23461471498012543 +karman_re50,sr,159,63.6,velocity,upper_ux,1.0785049200057983 +karman_re50,sr,159,63.6,velocity,upper_uy,-0.27197957038879395 +karman_re50,sr,159,63.6,velocity,center_ux,1.0424959659576416 +karman_re50,sr,159,63.6,velocity,center_uy,-0.27944615483283997 +karman_re50,sr,159,63.6,velocity,lower_ux,0.8632855415344238 +karman_re50,sr,159,63.6,velocity,lower_uy,-0.18437615036964417 +karman_re50,sr,160,64.0,velocity,upper_ux,1.0903900861740112 +karman_re50,sr,160,64.0,velocity,upper_uy,-0.28405651450157166 +karman_re50,sr,160,64.0,velocity,center_ux,1.0284318923950195 +karman_re50,sr,160,64.0,velocity,center_uy,-0.24107211828231812 +karman_re50,sr,160,64.0,velocity,lower_ux,0.8617779016494751 +karman_re50,sr,160,64.0,velocity,lower_uy,-0.12304768711328506 +karman_re50,sr,161,64.4,velocity,upper_ux,1.0934345722198486 +karman_re50,sr,161,64.4,velocity,upper_uy,-0.2644256055355072 +karman_re50,sr,161,64.4,velocity,center_ux,0.9996803998947144 +karman_re50,sr,161,64.4,velocity,center_uy,-0.16767755150794983 +karman_re50,sr,161,64.4,velocity,lower_ux,0.8761727809906006 +karman_re50,sr,161,64.4,velocity,lower_uy,-0.0676567330956459 +karman_re50,sr,162,64.8,velocity,upper_ux,1.0850955247879028 +karman_re50,sr,162,64.8,velocity,upper_uy,-0.20384974777698517 +karman_re50,sr,162,64.8,velocity,center_ux,0.9627562165260315 +karman_re50,sr,162,64.8,velocity,center_uy,-0.0660746693611145 +karman_re50,sr,162,64.8,velocity,lower_ux,0.9024171233177185 +karman_re50,sr,162,64.8,velocity,lower_uy,-0.02444365993142128 +karman_re50,sr,163,65.2,velocity,upper_ux,1.0640325546264648 +karman_re50,sr,163,65.2,velocity,upper_uy,-0.10839734971523285 +karman_re50,sr,163,65.2,velocity,center_ux,0.9330583810806274 +karman_re50,sr,163,65.2,velocity,center_uy,0.0405026338994503 +karman_re50,sr,163,65.2,velocity,lower_ux,0.928528904914856 +karman_re50,sr,163,65.2,velocity,lower_uy,0.016952546313405037 +karman_re50,sr,164,65.6,velocity,upper_ux,1.030868649482727 +karman_re50,sr,164,65.6,velocity,upper_uy,0.004468691535294056 +karman_re50,sr,164,65.6,velocity,center_ux,0.9267833828926086 +karman_re50,sr,164,65.6,velocity,center_uy,0.12535083293914795 +karman_re50,sr,164,65.6,velocity,lower_ux,0.9484748244285583 +karman_re50,sr,164,65.6,velocity,lower_uy,0.06359315663576126 +karman_re50,sr,165,66.0,velocity,upper_ux,0.9896600842475891 +karman_re50,sr,165,66.0,velocity,upper_uy,0.1137770339846611 +karman_re50,sr,165,66.0,velocity,center_ux,0.943713366985321 +karman_re50,sr,165,66.0,velocity,center_uy,0.18237245082855225 +karman_re50,sr,165,66.0,velocity,lower_ux,0.9663071632385254 +karman_re50,sr,165,66.0,velocity,lower_uy,0.10793393850326538 +karman_re50,sr,166,66.4,velocity,upper_ux,0.9486813545227051 +karman_re50,sr,166,66.4,velocity,upper_uy,0.19973477721214294 +karman_re50,sr,166,66.4,velocity,center_ux,0.9708164930343628 +karman_re50,sr,166,66.4,velocity,center_uy,0.2225879728794098 +karman_re50,sr,166,66.4,velocity,lower_ux,0.9868640899658203 +karman_re50,sr,166,66.4,velocity,lower_uy,0.1437576413154602 +karman_re50,sr,167,66.8,velocity,upper_ux,0.916347861289978 +karman_re50,sr,167,66.8,velocity,upper_uy,0.2495635747909546 +karman_re50,sr,167,66.8,velocity,center_ux,0.9988251328468323 +karman_re50,sr,167,66.8,velocity,center_uy,0.2531626224517822 +karman_re50,sr,167,66.8,velocity,lower_ux,1.0103257894515991 +karman_re50,sr,167,66.8,velocity,lower_uy,0.17470461130142212 +karman_re50,sr,168,67.2,velocity,upper_ux,0.8941072821617126 +karman_re50,sr,168,67.2,velocity,upper_uy,0.26175346970558167 +karman_re50,sr,168,67.2,velocity,center_ux,1.0231266021728516 +karman_re50,sr,168,67.2,velocity,center_uy,0.27558329701423645 +karman_re50,sr,168,67.2,velocity,lower_ux,1.034348964691162 +karman_re50,sr,168,67.2,velocity,lower_uy,0.205963134765625 +karman_re50,sr,169,67.6,velocity,upper_ux,0.8775656223297119 +karman_re50,sr,169,67.6,velocity,upper_uy,0.2412051409482956 +karman_re50,sr,169,67.6,velocity,center_ux,1.0393612384796143 +karman_re50,sr,169,67.6,velocity,center_uy,0.287880003452301 +karman_re50,sr,169,67.6,velocity,lower_ux,1.0567247867584229 +karman_re50,sr,169,67.6,velocity,lower_uy,0.23832589387893677 +karman_re50,sr,170,68.0,velocity,upper_ux,0.8648723363876343 +karman_re50,sr,170,68.0,velocity,upper_uy,0.19466367363929749 +karman_re50,sr,170,68.0,velocity,center_ux,1.0432814359664917 +karman_re50,sr,170,68.0,velocity,center_uy,0.28292807936668396 +karman_re50,sr,170,68.0,velocity,lower_ux,1.0755681991577148 +karman_re50,sr,170,68.0,velocity,lower_uy,0.2677154839038849 +karman_re50,sr,171,68.4,velocity,upper_ux,0.8609586954116821 +karman_re50,sr,171,68.4,velocity,upper_uy,0.13406571745872498 +karman_re50,sr,171,68.4,velocity,center_ux,1.032048225402832 +karman_re50,sr,171,68.4,velocity,center_uy,0.25046709179878235 +karman_re50,sr,171,68.4,velocity,lower_ux,1.0887295007705688 +karman_re50,sr,171,68.4,velocity,lower_uy,0.28377866744995117 +karman_re50,sr,172,68.8,velocity,upper_ux,0.8724427819252014 +karman_re50,sr,172,68.8,velocity,upper_uy,0.07665227353572845 +karman_re50,sr,172,68.8,velocity,center_ux,1.0057200193405151 +karman_re50,sr,172,68.8,velocity,center_uy,0.18337656557559967 +karman_re50,sr,172,68.8,velocity,lower_ux,1.0935896635055542 +karman_re50,sr,172,68.8,velocity,lower_uy,0.27092722058296204 +karman_re50,sr,173,69.2,velocity,upper_ux,0.8973709940910339 +karman_re50,sr,173,69.2,velocity,upper_uy,0.03166607767343521 +karman_re50,sr,173,69.2,velocity,center_ux,0.9694135785102844 +karman_re50,sr,173,69.2,velocity,center_uy,0.085584856569767 +karman_re50,sr,173,69.2,velocity,lower_ux,1.0874505043029785 +karman_re50,sr,173,69.2,velocity,lower_uy,0.21772454679012299 +karman_re50,sr,174,69.6,velocity,upper_ux,0.9242722392082214 +karman_re50,sr,174,69.6,velocity,upper_uy,-0.009105253964662552 +karman_re50,sr,174,69.6,velocity,center_ux,0.9369953870773315 +karman_re50,sr,174,69.6,velocity,center_uy,-0.02230130136013031 +karman_re50,sr,174,69.6,velocity,lower_ux,1.0686864852905273 +karman_re50,sr,174,69.6,velocity,lower_uy,0.12746202945709229 +karman_re50,sr,175,70.0,velocity,upper_ux,0.9451873302459717 +karman_re50,sr,175,70.0,velocity,upper_uy,-0.055052563548088074 +karman_re50,sr,175,70.0,velocity,center_ux,0.9258701205253601 +karman_re50,sr,175,70.0,velocity,center_uy,-0.11231514066457748 +karman_re50,sr,175,70.0,velocity,lower_ux,1.0374860763549805 +karman_re50,sr,175,70.0,velocity,lower_uy,0.016189152374863625 +karman_re50,sr,176,70.4,velocity,upper_ux,0.9629067182540894 +karman_re50,sr,176,70.4,velocity,upper_uy,-0.10055095702409744 +karman_re50,sr,176,70.4,velocity,center_ux,0.9394429922103882 +karman_re50,sr,176,70.4,velocity,center_uy,-0.17371970415115356 +karman_re50,sr,176,70.4,velocity,lower_ux,0.9971931576728821 +karman_re50,sr,176,70.4,velocity,lower_uy,-0.09534764289855957 +karman_re50,sr,177,70.8,velocity,upper_ux,0.9828553795814514 +karman_re50,sr,177,70.8,velocity,upper_uy,-0.13783538341522217 +karman_re50,sr,177,70.8,velocity,center_ux,0.9656477570533752 +karman_re50,sr,177,70.8,velocity,center_uy,-0.21617941558361053 +karman_re50,sr,177,70.8,velocity,lower_ux,0.9554838538169861 +karman_re50,sr,177,70.8,velocity,lower_uy,-0.1867731809616089 +karman_re50,sr,178,71.2,velocity,upper_ux,1.0059878826141357 +karman_re50,sr,178,71.2,velocity,upper_uy,-0.16919958591461182 +karman_re50,sr,178,71.2,velocity,center_ux,0.9939324259757996 +karman_re50,sr,178,71.2,velocity,center_uy,-0.2483154535293579 +karman_re50,sr,178,71.2,velocity,lower_ux,0.9212756156921387 +karman_re50,sr,178,71.2,velocity,lower_uy,-0.24357865750789642 +karman_re50,sr,179,71.6,velocity,upper_ux,1.0301125049591064 +karman_re50,sr,179,71.6,velocity,upper_uy,-0.20018236339092255 +karman_re50,sr,179,71.6,velocity,center_ux,1.0192437171936035 +karman_re50,sr,179,71.6,velocity,center_uy,-0.2722148001194 +karman_re50,sr,179,71.6,velocity,lower_ux,0.8975042104721069 +karman_re50,sr,179,71.6,velocity,lower_uy,-0.2622697949409485 +karman_re50,sr,180,72.0,velocity,upper_ux,1.0529192686080933 +karman_re50,sr,180,72.0,velocity,upper_uy,-0.23250983655452728 +karman_re50,sr,180,72.0,velocity,center_ux,1.0372675657272339 +karman_re50,sr,180,72.0,velocity,center_uy,-0.2867336869239807 +karman_re50,sr,180,72.0,velocity,lower_ux,0.8802486658096313 +karman_re50,sr,180,72.0,velocity,lower_uy,-0.24720486998558044 +karman_re50,sr,181,72.4,velocity,upper_ux,1.072525978088379 +karman_re50,sr,181,72.4,velocity,upper_uy,-0.262980192899704 +karman_re50,sr,181,72.4,velocity,center_ux,1.0436623096466064 +karman_re50,sr,181,72.4,velocity,center_uy,-0.2856229543685913 +karman_re50,sr,181,72.4,velocity,lower_ux,0.8666520118713379 +karman_re50,sr,181,72.4,velocity,lower_uy,-0.20465674996376038 +karman_re50,sr,182,72.8,velocity,upper_ux,1.086903691291809 +karman_re50,sr,182,72.8,velocity,upper_uy,-0.28253403306007385 +karman_re50,sr,182,72.8,velocity,center_ux,1.0352703332901 +karman_re50,sr,182,72.8,velocity,center_uy,-0.25886258482933044 +karman_re50,sr,182,72.8,velocity,lower_ux,0.8605694770812988 +karman_re50,sr,182,72.8,velocity,lower_uy,-0.14534403383731842 +karman_re50,sr,183,73.2,velocity,upper_ux,1.093530535697937 +karman_re50,sr,183,73.2,velocity,upper_uy,-0.2760586440563202 +karman_re50,sr,183,73.2,velocity,center_ux,1.0115294456481934 +karman_re50,sr,183,73.2,velocity,center_uy,-0.198155015707016 +karman_re50,sr,183,73.2,velocity,lower_ux,0.8690923452377319 +karman_re50,sr,183,73.2,velocity,lower_uy,-0.08615393936634064 +karman_re50,sr,184,73.6,velocity,upper_ux,1.0895863771438599 +karman_re50,sr,184,73.6,velocity,upper_uy,-0.23040646314620972 +karman_re50,sr,184,73.6,velocity,center_ux,0.976306676864624 +karman_re50,sr,184,73.6,velocity,center_uy,-0.1048618033528328 +karman_re50,sr,184,73.6,velocity,lower_ux,0.8923277258872986 +karman_re50,sr,184,73.6,velocity,lower_uy,-0.03906909376382828 +karman_re50,sr,185,74.0,velocity,upper_ux,1.073166847229004 +karman_re50,sr,185,74.0,velocity,upper_uy,-0.14592383801937103 +karman_re50,sr,185,74.0,velocity,center_ux,0.941782534122467 +karman_re50,sr,185,74.0,velocity,center_uy,0.0033776629716157913 +karman_re50,sr,185,74.0,velocity,lower_ux,0.9197907447814941 +karman_re50,sr,185,74.0,velocity,lower_uy,0.0014313642168417573 +karman_re50,sr,186,74.4,velocity,upper_ux,1.0440585613250732 +karman_re50,sr,186,74.4,velocity,upper_uy,-0.036973197013139725 +karman_re50,sr,186,74.4,velocity,center_ux,0.9259027242660522 +karman_re50,sr,186,74.4,velocity,center_uy,0.09821901470422745 +karman_re50,sr,186,74.4,velocity,lower_ux,0.9418324828147888 +karman_re50,sr,186,74.4,velocity,lower_uy,0.046447351574897766 +karman_re50,sr,187,74.8,velocity,upper_ux,1.004929542541504 +karman_re50,sr,187,74.8,velocity,upper_uy,0.07606485486030579 +karman_re50,sr,187,74.8,velocity,center_ux,0.9356335997581482 +karman_re50,sr,187,74.8,velocity,center_uy,0.1643885374069214 +karman_re50,sr,187,74.8,velocity,lower_ux,0.9596269130706787 +karman_re50,sr,187,74.8,velocity,lower_uy,0.09282630681991577 +karman_re50,sr,188,75.2,velocity,upper_ux,0.9627701640129089 +karman_re50,sr,188,75.2,velocity,upper_uy,0.17245618999004364 +karman_re50,sr,188,75.2,velocity,center_ux,0.9605631828308105 +karman_re50,sr,188,75.2,velocity,center_uy,0.20938101410865784 +karman_re50,sr,188,75.2,velocity,lower_ux,0.9789630174636841 +karman_re50,sr,188,75.2,velocity,lower_uy,0.1317223161458969 +karman_re50,sr,189,75.6,velocity,upper_ux,0.9267529845237732 +karman_re50,sr,189,75.6,velocity,upper_uy,0.23609183728694916 +karman_re50,sr,189,75.6,velocity,center_ux,0.988955020904541 +karman_re50,sr,189,75.6,velocity,center_uy,0.24309296905994415 +karman_re50,sr,189,75.6,velocity,lower_ux,1.001668930053711 +karman_re50,sr,189,75.6,velocity,lower_uy,0.1636919379234314 +karman_re50,sr,190,76.0,velocity,upper_ux,0.9012661576271057 +karman_re50,sr,190,76.0,velocity,upper_uy,0.2614724338054657 +karman_re50,sr,190,76.0,velocity,center_ux,1.015110731124878 +karman_re50,sr,190,76.0,velocity,center_uy,0.26846468448638916 +karman_re50,sr,190,76.0,velocity,lower_ux,1.0258132219314575 +karman_re50,sr,190,76.0,velocity,lower_uy,0.19448921084403992 +karman_re50,sr,191,76.4,velocity,upper_ux,0.8831724524497986 +karman_re50,sr,191,76.4,velocity,upper_uy,0.2520691156387329 +karman_re50,sr,191,76.4,velocity,center_ux,1.0347548723220825 +karman_re50,sr,191,76.4,velocity,center_uy,0.2849605977535248 +karman_re50,sr,191,76.4,velocity,lower_ux,1.0489846467971802 +karman_re50,sr,191,76.4,velocity,lower_uy,0.22665727138519287 +karman_re50,sr,192,76.8,velocity,upper_ux,0.8687955737113953 +karman_re50,sr,192,76.8,velocity,upper_uy,0.2139231562614441 +karman_re50,sr,192,76.8,velocity,center_ux,1.043482780456543 +karman_re50,sr,192,76.8,velocity,center_uy,0.28737378120422363 +karman_re50,sr,192,76.8,velocity,lower_ux,1.0692635774612427 +karman_re50,sr,192,76.8,velocity,lower_uy,0.2579507529735565 +karman_re50,sr,193,77.2,velocity,upper_ux,0.8607882857322693 +karman_re50,sr,193,77.2,velocity,upper_uy,0.15653148293495178 +karman_re50,sr,193,77.2,velocity,center_ux,1.0378682613372803 +karman_re50,sr,193,77.2,velocity,center_uy,0.26600944995880127 +karman_re50,sr,193,77.2,velocity,lower_ux,1.0847291946411133 +karman_re50,sr,193,77.2,velocity,lower_uy,0.2804579436779022 +karman_re50,sr,194,77.6,velocity,upper_ux,0.8663458228111267 +karman_re50,sr,194,77.6,velocity,upper_uy,0.09609159827232361 +karman_re50,sr,194,77.6,velocity,center_ux,1.0168055295944214 +karman_re50,sr,194,77.6,velocity,center_uy,0.21175141632556915 +karman_re50,sr,194,77.6,velocity,lower_ux,1.092984914779663 +karman_re50,sr,194,77.6,velocity,lower_uy,0.2798942029476166 +karman_re50,sr,195,78.0,velocity,upper_ux,0.8874769806861877 +karman_re50,sr,195,78.0,velocity,upper_uy,0.04671115428209305 +karman_re50,sr,195,78.0,velocity,center_ux,0.9830778241157532 +karman_re50,sr,195,78.0,velocity,center_uy,0.12357451766729355 +karman_re50,sr,195,78.0,velocity,lower_ux,1.0911513566970825 +karman_re50,sr,195,78.0,velocity,lower_uy,0.24177499115467072 +karman_re50,sr,196,78.4,velocity,upper_ux,0.9151132702827454 +karman_re50,sr,196,78.4,velocity,upper_uy,0.0060271210968494415 +karman_re50,sr,196,78.4,velocity,center_ux,0.9471192955970764 +karman_re50,sr,196,78.4,velocity,center_uy,0.016010409221053123 +karman_re50,sr,196,78.4,velocity,lower_ux,1.0770576000213623 +karman_re50,sr,196,78.4,velocity,lower_uy,0.1635340303182602 +karman_re50,sr,197,78.8,velocity,upper_ux,0.9383230805397034 +karman_re50,sr,197,78.8,velocity,upper_uy,-0.03791821375489235 +karman_re50,sr,197,78.8,velocity,center_ux,0.9267679452896118 +karman_re50,sr,197,78.8,velocity,center_uy,-0.08310998231172562 +karman_re50,sr,197,78.8,velocity,lower_ux,1.0501271486282349 +karman_re50,sr,197,78.8,velocity,lower_uy,0.05756101757287979 +karman_re50,sr,198,79.2,velocity,upper_ux,0.9563944935798645 +karman_re50,sr,198,79.2,velocity,upper_uy,-0.0848393514752388 +karman_re50,sr,198,79.2,velocity,center_ux,0.9322570562362671 +karman_re50,sr,198,79.2,velocity,center_uy,-0.15440765023231506 +karman_re50,sr,198,79.2,velocity,lower_ux,1.012392520904541 +karman_re50,sr,198,79.2,velocity,lower_uy,-0.05634063109755516 +karman_re50,sr,199,79.6,velocity,upper_ux,0.9751680493354797 +karman_re50,sr,199,79.6,velocity,upper_uy,-0.12534376978874207 +karman_re50,sr,199,79.6,velocity,center_ux,0.9555074572563171 +karman_re50,sr,199,79.6,velocity,center_uy,-0.20227466523647308 +karman_re50,sr,199,79.6,velocity,lower_ux,0.970106840133667 +karman_re50,sr,199,79.6,velocity,lower_uy,-0.1571551263332367 +karman_re50,sr,200,80.0,velocity,upper_ux,0.9973838329315186 +karman_re50,sr,200,80.0,velocity,upper_uy,-0.15814845263957977 +karman_re50,sr,200,80.0,velocity,center_ux,0.9838584065437317 +karman_re50,sr,200,80.0,velocity,center_uy,-0.2376810610294342 +karman_re50,sr,200,80.0,velocity,lower_ux,0.9324593544006348 +karman_re50,sr,200,80.0,velocity,lower_uy,-0.22749143838882446 +karman_re50,sr,201,80.4,velocity,upper_ux,1.0214821100234985 +karman_re50,sr,201,80.4,velocity,upper_uy,-0.18881207704544067 +karman_re50,sr,201,80.4,velocity,center_ux,1.0107556581497192 +karman_re50,sr,201,80.4,velocity,center_uy,-0.2644995450973511 +karman_re50,sr,201,80.4,velocity,lower_ux,0.9051610827445984 +karman_re50,sr,201,80.4,velocity,lower_uy,-0.25968238711357117 +karman_re50,sr,202,80.8,velocity,upper_ux,1.044983148574829 +karman_re50,sr,202,80.8,velocity,upper_uy,-0.2207689881324768 +karman_re50,sr,202,80.8,velocity,center_ux,1.0319184064865112 +karman_re50,sr,202,80.8,velocity,center_uy,-0.2828328609466553 +karman_re50,sr,202,80.8,velocity,lower_ux,0.8861142992973328 +karman_re50,sr,202,80.8,velocity,lower_uy,-0.25615599751472473 +karman_re50,sr,203,81.2,velocity,upper_ux,1.0658938884735107 +karman_re50,sr,203,81.2,velocity,upper_uy,-0.25260719656944275 +karman_re50,sr,203,81.2,velocity,center_ux,1.0429048538208008 +karman_re50,sr,203,81.2,velocity,center_uy,-0.2884158790111542 +karman_re50,sr,203,81.2,velocity,lower_ux,0.8710588812828064 +karman_re50,sr,203,81.2,velocity,lower_uy,-0.22266386449337006 +karman_re50,sr,204,81.6,velocity,upper_ux,1.0823777914047241 +karman_re50,sr,204,81.6,velocity,upper_uy,-0.27759692072868347 +karman_re50,sr,204,81.6,velocity,center_ux,1.0400400161743164 +karman_re50,sr,204,81.6,velocity,center_uy,-0.2721283733844757 +karman_re50,sr,204,81.6,velocity,lower_ux,0.8613799214363098 +karman_re50,sr,204,81.6,velocity,lower_uy,-0.16770854592323303 +karman_re50,sr,205,82.0,velocity,upper_ux,1.0921787023544312 +karman_re50,sr,205,82.0,velocity,upper_uy,-0.2824351191520691 +karman_re50,sr,205,82.0,velocity,center_ux,1.0217419862747192 +karman_re50,sr,205,82.0,velocity,center_uy,-0.22423450648784637 +karman_re50,sr,205,82.0,velocity,lower_ux,0.864064633846283 +karman_re50,sr,205,82.0,velocity,lower_uy,-0.10646870732307434 +karman_re50,sr,206,82.4,velocity,upper_ux,1.0924062728881836 +karman_re50,sr,206,82.4,velocity,upper_uy,-0.2517786920070648 +karman_re50,sr,206,82.4,velocity,center_ux,0.9898414611816406 +karman_re50,sr,206,82.4,velocity,center_uy,-0.14162024855613708 +karman_re50,sr,206,82.4,velocity,lower_ux,0.8827975392341614 +karman_re50,sr,206,82.4,velocity,lower_uy,-0.05466736853122711 +karman_re50,sr,207,82.8,velocity,upper_ux,1.0806390047073364 +karman_re50,sr,207,82.8,velocity,upper_uy,-0.1802557110786438 +karman_re50,sr,207,82.8,velocity,center_ux,0.9530712962150574 +karman_re50,sr,207,82.8,velocity,center_uy,-0.035708703100681305 +karman_re50,sr,207,82.8,velocity,lower_ux,0.9102537035942078 +karman_re50,sr,207,82.8,velocity,lower_uy,-0.013348234817385674 +karman_re50,sr,208,83.2,velocity,upper_ux,1.055964708328247 +karman_re50,sr,208,83.2,velocity,upper_uy,-0.07793878763914108 +karman_re50,sr,208,83.2,velocity,center_ux,0.9286180138587952 +karman_re50,sr,208,83.2,velocity,center_uy,0.06700856983661652 +karman_re50,sr,208,83.2,velocity,lower_ux,0.9346635341644287 +karman_re50,sr,208,83.2,velocity,lower_uy,0.029507257044315338 +karman_re50,sr,209,83.6,velocity,upper_ux,1.019824504852295 +karman_re50,sr,209,83.6,velocity,upper_uy,0.03607684001326561 +karman_re50,sr,209,83.6,velocity,center_ux,0.9295299649238586 +karman_re50,sr,209,83.6,velocity,center_uy,0.1436043679714203 +karman_re50,sr,209,83.6,velocity,lower_ux,0.953236997127533 +karman_re50,sr,209,83.6,velocity,lower_uy,0.076587975025177 +karman_re50,sr,210,84.0,velocity,upper_ux,0.9777069687843323 +karman_re50,sr,210,84.0,velocity,upper_uy,0.14072611927986145 +karman_re50,sr,210,84.0,velocity,center_ux,0.9506293535232544 +karman_re50,sr,210,84.0,velocity,center_uy,0.1947525143623352 +karman_re50,sr,210,84.0,velocity,lower_ux,0.9715156555175781 +karman_re50,sr,210,84.0,velocity,lower_uy,0.11870945990085602 +karman_re50,sr,211,84.4,velocity,upper_ux,0.9386138916015625 +karman_re50,sr,211,84.4,velocity,upper_uy,0.21747377514839172 +karman_re50,sr,211,84.4,velocity,center_ux,0.9787285327911377 +karman_re50,sr,211,84.4,velocity,center_uy,0.23192603886127472 +karman_re50,sr,211,84.4,velocity,lower_ux,0.9931678175926208 +karman_re50,sr,211,84.4,velocity,lower_uy,0.15254580974578857 +karman_re50,sr,212,84.8,velocity,upper_ux,0.9094016551971436 +karman_re50,sr,212,84.8,velocity,upper_uy,0.25659963488578796 +karman_re50,sr,212,84.8,velocity,center_ux,1.0062146186828613 +karman_re50,sr,212,84.8,velocity,center_uy,0.26021939516067505 +karman_re50,sr,212,84.8,velocity,lower_ux,1.017134666442871 +karman_re50,sr,212,84.8,velocity,lower_uy,0.1832166612148285 +karman_re50,sr,213,85.2,velocity,upper_ux,0.8892315030097961 +karman_re50,sr,213,85.2,velocity,upper_uy,0.25912919640541077 +karman_re50,sr,213,85.2,velocity,center_ux,1.0287339687347412 +karman_re50,sr,213,85.2,velocity,center_uy,0.2802351415157318 +karman_re50,sr,213,85.2,velocity,lower_ux,1.0408982038497925 +karman_re50,sr,213,85.2,velocity,lower_uy,0.21490316092967987 +karman_re50,sr,214,85.6,velocity,upper_ux,0.8735409379005432 +karman_re50,sr,214,85.6,velocity,upper_uy,0.2305782288312912 +karman_re50,sr,214,85.6,velocity,center_ux,1.041836142539978 +karman_re50,sr,214,85.6,velocity,center_uy,0.2886888086795807 +karman_re50,sr,214,85.6,velocity,lower_ux,1.0623754262924194 +karman_re50,sr,214,85.6,velocity,lower_uy,0.24708566069602966 +karman_re50,sr,215,86.0,velocity,upper_ux,0.8624305725097656 +karman_re50,sr,215,86.0,velocity,upper_uy,0.17860448360443115 +karman_re50,sr,215,86.0,velocity,center_ux,1.0416388511657715 +karman_re50,sr,215,86.0,velocity,center_uy,0.277141809463501 +karman_re50,sr,215,86.0,velocity,lower_ux,1.0797741413116455 +karman_re50,sr,215,86.0,velocity,lower_uy,0.2741117775440216 +karman_re50,sr,216,86.4,velocity,upper_ux,0.8623768091201782 +karman_re50,sr,216,86.4,velocity,upper_uy,0.11716577410697937 +karman_re50,sr,216,86.4,velocity,center_ux,1.0261365175247192 +karman_re50,sr,216,86.4,velocity,center_uy,0.23548391461372375 +karman_re50,sr,216,86.4,velocity,lower_ux,1.0909929275512695 +karman_re50,sr,216,86.4,velocity,lower_uy,0.283795028924942 +karman_re50,sr,217,86.8,velocity,upper_ux,0.8784401416778564 +karman_re50,sr,217,86.8,velocity,upper_uy,0.06301353126764297 +karman_re50,sr,217,86.8,velocity,center_ux,0.9963408708572388 +karman_re50,sr,217,86.8,velocity,center_uy,0.1588166356086731 +karman_re50,sr,217,86.8,velocity,lower_ux,1.0931792259216309 +karman_re50,sr,217,86.8,velocity,lower_uy,0.26040035486221313 +karman_re50,sr,218,87.2,velocity,upper_ux,0.9052668809890747 +karman_re50,sr,218,87.2,velocity,upper_uy,0.020559091120958328 +karman_re50,sr,218,87.2,velocity,center_ux,0.9593737125396729 +karman_re50,sr,218,87.2,velocity,center_uy,0.05546299368143082 +karman_re50,sr,218,87.2,velocity,lower_ux,1.0836946964263916 +karman_re50,sr,218,87.2,velocity,lower_uy,0.195903018116951 +karman_re50,sr,219,87.6,velocity,upper_ux,0.9307790994644165 +karman_re50,sr,219,87.6,velocity,upper_uy,-0.021293213590979576 +karman_re50,sr,219,87.6,velocity,center_ux,0.9313231706619263 +karman_re50,sr,219,87.6,velocity,center_uy,-0.05000258982181549 +karman_re50,sr,219,87.6,velocity,lower_ux,1.061314344406128 +karman_re50,sr,219,87.6,velocity,lower_uy,0.09788057208061218 +karman_re50,sr,220,88.0,velocity,upper_ux,0.950062096118927 +karman_re50,sr,220,88.0,velocity,upper_uy,-0.06818676739931107 +karman_re50,sr,220,88.0,velocity,center_ux,0.9274649024009705 +karman_re50,sr,220,88.0,velocity,center_uy,-0.13199318945407867 +karman_re50,sr,220,88.0,velocity,lower_ux,1.0269383192062378 +karman_re50,sr,220,88.0,velocity,lower_uy,-0.015598268248140812 +karman_re50,sr,221,88.4,velocity,upper_ux,0.9679643511772156 +karman_re50,sr,221,88.4,velocity,upper_uy,-0.11178021132946014 +karman_re50,sr,221,88.4,velocity,center_ux,0.9459345936775208 +karman_re50,sr,221,88.4,velocity,center_uy,-0.18683357536792755 +karman_re50,sr,221,88.4,velocity,lower_ux,0.9852897524833679 +karman_re50,sr,221,88.4,velocity,lower_uy,-0.12345035374164581 +karman_re50,sr,222,88.8,velocity,upper_ux,0.9890105724334717 +karman_re50,sr,222,88.8,velocity,upper_uy,-0.14685560762882233 +karman_re50,sr,222,88.8,velocity,center_ux,0.9735518097877502 +karman_re50,sr,222,88.8,velocity,center_uy,-0.2259395569562912 +karman_re50,sr,222,88.8,velocity,lower_ux,0.945005476474762 +karman_re50,sr,222,88.8,velocity,lower_uy,-0.20630483329296112 +karman_re50,sr,223,89.2,velocity,upper_ux,1.0127676725387573 +karman_re50,sr,223,89.2,velocity,upper_uy,-0.1776602417230606 +karman_re50,sr,223,89.2,velocity,center_ux,1.0015076398849487 +karman_re50,sr,223,89.2,velocity,center_uy,-0.25571590662002563 +karman_re50,sr,223,89.2,velocity,lower_ux,0.9138630628585815 +karman_re50,sr,223,89.2,velocity,lower_uy,-0.25240665674209595 +karman_re50,sr,224,89.6,velocity,upper_ux,1.0367459058761597 +karman_re50,sr,224,89.6,velocity,upper_uy,-0.20906399190425873 +karman_re50,sr,224,89.6,velocity,center_ux,1.025253415107727 +karman_re50,sr,224,89.6,velocity,center_uy,-0.27732256054878235 +karman_re50,sr,224,89.6,velocity,lower_ux,0.8924233913421631 +karman_re50,sr,224,89.6,velocity,lower_uy,-0.26118043065071106 +karman_re50,sr,225,90.0,velocity,upper_ux,1.0587496757507324 +karman_re50,sr,225,90.0,velocity,upper_uy,-0.2414127141237259 +karman_re50,sr,225,90.0,velocity,center_ux,1.0403560400009155 +karman_re50,sr,225,90.0,velocity,center_uy,-0.2883683145046234 +karman_re50,sr,225,90.0,velocity,lower_ux,0.8761129975318909 +karman_re50,sr,225,90.0,velocity,lower_uy,-0.23779302835464478 +karman_re50,sr,226,90.4,velocity,upper_ux,1.0770047903060913 +karman_re50,sr,226,90.4,velocity,upper_uy,-0.2700660824775696 +karman_re50,sr,226,90.4,velocity,center_ux,1.0427601337432861 +karman_re50,sr,226,90.4,velocity,center_uy,-0.28121480345726013 +karman_re50,sr,226,90.4,velocity,lower_ux,0.8638057112693787 +karman_re50,sr,226,90.4,velocity,lower_uy,-0.18923482298851013 +karman_re50,sr,227,90.8,velocity,upper_ux,1.0895525217056274 +karman_re50,sr,227,90.8,velocity,upper_uy,-0.28406408429145813 +karman_re50,sr,227,90.8,velocity,center_ux,1.0300745964050293 +karman_re50,sr,227,90.8,velocity,center_uy,-0.2456330507993698 +karman_re50,sr,227,90.8,velocity,lower_ux,0.8611955046653748 +karman_re50,sr,227,90.8,velocity,lower_uy,-0.1281818449497223 +karman_re50,sr,228,91.2,velocity,upper_ux,1.0936297178268433 +karman_re50,sr,228,91.2,velocity,upper_uy,-0.2676362097263336 +karman_re50,sr,228,91.2,velocity,center_ux,1.0026074647903442 +karman_re50,sr,228,91.2,velocity,center_uy,-0.17515422403812408 +karman_re50,sr,228,91.2,velocity,lower_ux,0.8744081258773804 +karman_re50,sr,228,91.2,velocity,lower_uy,-0.0718040019273758 +karman_re50,sr,229,91.6,velocity,upper_ux,1.086413025856018 +karman_re50,sr,229,91.6,velocity,upper_uy,-0.2104647010564804 +karman_re50,sr,229,91.6,velocity,center_ux,0.9659984111785889 +karman_re50,sr,229,91.6,velocity,center_uy,-0.07520909607410431 +karman_re50,sr,229,91.6,velocity,lower_ux,0.9001836180686951 +karman_re50,sr,229,91.6,velocity,lower_uy,-0.027795938774943352 +karman_re50,sr,230,92.0,velocity,upper_ux,1.0663717985153198 +karman_re50,sr,230,92.0,velocity,upper_uy,-0.11733818054199219 +karman_re50,sr,230,92.0,velocity,center_ux,0.934907078742981 +karman_re50,sr,230,92.0,velocity,center_uy,0.03213227167725563 +karman_re50,sr,230,92.0,velocity,lower_ux,0.9266578555107117 +karman_re50,sr,230,92.0,velocity,lower_uy,0.01327731367200613 +karman_re50,sr,231,92.4,velocity,upper_ux,1.0339202880859375 +karman_re50,sr,231,92.4,velocity,upper_uy,-0.005118622910231352 +karman_re50,sr,231,92.4,velocity,center_ux,0.9261828064918518 +karman_re50,sr,231,92.4,velocity,center_uy,0.11942824721336365 +karman_re50,sr,231,92.4,velocity,lower_ux,0.946858823299408 +karman_re50,sr,231,92.4,velocity,lower_uy,0.05963034927845001 +karman_re50,sr,232,92.8,velocity,upper_ux,0.9930213689804077 +karman_re50,sr,232,92.8,velocity,upper_uy,0.10529628396034241 +karman_re50,sr,232,92.8,velocity,center_ux,0.9415236115455627 +karman_re50,sr,232,92.8,velocity,center_uy,0.17842474579811096 +karman_re50,sr,232,92.8,velocity,lower_ux,0.9645315408706665 +karman_re50,sr,232,92.8,velocity,lower_uy,0.10453711450099945 +karman_re50,sr,233,93.2,velocity,upper_ux,0.9518045783042908 +karman_re50,sr,233,93.2,velocity,upper_uy,0.19384419918060303 +karman_re50,sr,233,93.2,velocity,center_ux,0.9683759212493896 +karman_re50,sr,233,93.2,velocity,center_uy,0.21964310109615326 +karman_re50,sr,233,93.2,velocity,lower_ux,0.9849368929862976 +karman_re50,sr,233,93.2,velocity,lower_uy,0.1410232037305832 +karman_re50,sr,234,93.6,velocity,upper_ux,0.918731153011322 +karman_re50,sr,234,93.6,velocity,upper_uy,0.24692319333553314 +karman_re50,sr,234,93.6,velocity,center_ux,0.9966680407524109 +karman_re50,sr,234,93.6,velocity,center_uy,0.2509366571903229 +karman_re50,sr,234,93.6,velocity,lower_ux,1.0083990097045898 +karman_re50,sr,234,93.6,velocity,lower_uy,0.17214077711105347 +karman_re50,sr,235,94.0,velocity,upper_ux,0.8958337306976318 +karman_re50,sr,235,94.0,velocity,upper_uy,0.26211947202682495 +karman_re50,sr,235,94.0,velocity,center_ux,1.0214948654174805 +karman_re50,sr,235,94.0,velocity,center_uy,0.27405884861946106 +karman_re50,sr,235,94.0,velocity,lower_ux,1.0325195789337158 +karman_re50,sr,235,94.0,velocity,lower_uy,0.20327207446098328 +karman_re50,sr,236,94.4,velocity,upper_ux,0.8788536190986633 +karman_re50,sr,236,94.4,velocity,upper_uy,0.24409742653369904 +karman_re50,sr,236,94.4,velocity,center_ux,1.038467526435852 +karman_re50,sr,236,94.4,velocity,center_uy,0.2874220907688141 +karman_re50,sr,236,94.4,velocity,lower_ux,1.0549969673156738 +karman_re50,sr,236,94.4,velocity,lower_uy,0.23563332855701447 +karman_re50,sr,237,94.8,velocity,upper_ux,0.8655411005020142 +karman_re50,sr,237,94.8,velocity,upper_uy,0.1993843913078308 +karman_re50,sr,237,94.8,velocity,center_ux,1.0433787107467651 +karman_re50,sr,237,94.8,velocity,center_uy,0.28431016206741333 +karman_re50,sr,237,94.8,velocity,lower_ux,1.0740309953689575 +karman_re50,sr,237,94.8,velocity,lower_uy,0.26556554436683655 +karman_re50,sr,238,95.2,velocity,upper_ux,0.8605981469154358 +karman_re50,sr,238,95.2,velocity,upper_uy,0.13932393491268158 +karman_re50,sr,238,95.2,velocity,center_ux,1.0334968566894531 +karman_re50,sr,238,95.2,velocity,center_uy,0.25454261898994446 +karman_re50,sr,238,95.2,velocity,lower_ux,1.0877902507781982 +karman_re50,sr,238,95.2,velocity,lower_uy,0.2833137512207031 +karman_re50,sr,239,95.6,velocity,upper_ux,0.8708536624908447 +karman_re50,sr,239,95.6,velocity,upper_uy,0.08104059100151062 +karman_re50,sr,239,95.6,velocity,center_ux,1.0085211992263794 +karman_re50,sr,239,95.6,velocity,center_uy,0.19042456150054932 +karman_re50,sr,239,95.6,velocity,lower_ux,1.093645453453064 +karman_re50,sr,239,95.6,velocity,lower_uy,0.2734943628311157 +karman_re50,sr,240,96.0,velocity,upper_ux,0.8951390981674194 +karman_re50,sr,240,96.0,velocity,upper_uy,0.03509782254695892 +karman_re50,sr,240,96.0,velocity,center_ux,0.9727646112442017 +karman_re50,sr,240,96.0,velocity,center_uy,0.09462904930114746 +karman_re50,sr,240,96.0,velocity,lower_ux,1.0886343717575073 +karman_re50,sr,240,96.0,velocity,lower_uy,0.22379568219184875 +karman_re50,sr,241,96.4,velocity,upper_ux,0.9223249554634094 +karman_re50,sr,241,96.4,velocity,upper_uy,-0.005504466127604246 +karman_re50,sr,241,96.4,velocity,center_ux,0.9392620921134949 +karman_re50,sr,241,96.4,velocity,center_uy,-0.013568726368248463 +karman_re50,sr,241,96.4,velocity,lower_ux,1.0709384679794312 +karman_re50,sr,241,96.4,velocity,lower_uy,0.13615116477012634 +karman_re50,sr,242,96.8,velocity,upper_ux,0.9435903429985046 +karman_re50,sr,242,96.8,velocity,upper_uy,-0.05104858800768852 +karman_re50,sr,242,96.8,velocity,center_ux,0.9257378578186035 +karman_re50,sr,242,96.8,velocity,center_uy,-0.1058933362364769 +karman_re50,sr,242,96.8,velocity,lower_ux,1.0405341386795044 +karman_re50,sr,242,96.8,velocity,lower_uy,0.02586786448955536 +karman_re50,sr,243,97.2,velocity,upper_ux,0.9612100720405579 +karman_re50,sr,243,97.2,velocity,upper_uy,-0.09699083119630814 +karman_re50,sr,243,97.2,velocity,center_ux,0.9374682903289795 +karman_re50,sr,243,97.2,velocity,center_uy,-0.16945450007915497 +karman_re50,sr,243,97.2,velocity,lower_ux,1.000647783279419 +karman_re50,sr,243,97.2,velocity,lower_uy,-0.08643515408039093 +karman_re50,sr,244,97.6,velocity,upper_ux,0.9809712171554565 +karman_re50,sr,244,97.6,velocity,upper_uy,-0.1350104957818985 +karman_re50,sr,244,97.6,velocity,center_ux,0.9632221460342407 +karman_re50,sr,244,97.6,velocity,center_uy,-0.2130415141582489 +karman_re50,sr,244,97.6,velocity,lower_ux,0.9587975144386292 +karman_re50,sr,244,97.6,velocity,lower_uy,-0.18021947145462036 +karman_re50,sr,245,98.0,velocity,upper_ux,1.0040538311004639 +karman_re50,sr,245,98.0,velocity,upper_uy,-0.16663245856761932 +karman_re50,sr,245,98.0,velocity,center_ux,0.9917089343070984 +karman_re50,sr,245,98.0,velocity,center_uy,-0.24590471386909485 +karman_re50,sr,245,98.0,velocity,lower_ux,0.9238715171813965 +karman_re50,sr,245,98.0,velocity,lower_uy,-0.240217387676239 +karman_re50,sr,246,98.4,velocity,upper_ux,1.0282528400421143 +karman_re50,sr,246,98.4,velocity,upper_uy,-0.1975209265947342 +karman_re50,sr,246,98.4,velocity,center_ux,1.0174798965454102 +karman_re50,sr,246,98.4,velocity,center_uy,-0.2704983651638031 +karman_re50,sr,246,98.4,velocity,lower_ux,0.8993679285049438 +karman_re50,sr,246,98.4,velocity,lower_uy,-0.2620031237602234 +karman_re50,sr,247,98.8,velocity,upper_ux,1.051156997680664 +karman_re50,sr,247,98.8,velocity,upper_uy,-0.22979094088077545 +karman_re50,sr,247,98.8,velocity,center_ux,1.0361933708190918 +karman_re50,sr,247,98.8,velocity,center_uy,-0.2859739065170288 +karman_re50,sr,247,98.8,velocity,lower_ux,0.8816481828689575 +karman_re50,sr,247,98.8,velocity,lower_uy,-0.2495596557855606 +karman_re50,sr,248,99.2,velocity,upper_ux,1.0709141492843628 +karman_re50,sr,248,99.2,velocity,upper_uy,-0.26067158579826355 +karman_re50,sr,248,99.2,velocity,center_ux,1.0435194969177246 +karman_re50,sr,248,99.2,velocity,center_uy,-0.28654658794403076 +karman_re50,sr,248,99.2,velocity,lower_ux,0.8674991130828857 +karman_re50,sr,248,99.2,velocity,lower_uy,-0.2090359628200531 +karman_re50,sr,249,99.6,velocity,upper_ux,1.08579683303833 +karman_re50,sr,249,99.6,velocity,upper_uy,-0.2816595435142517 +karman_re50,sr,249,99.6,velocity,center_ux,1.0364223718643188 +karman_re50,sr,249,99.6,velocity,center_uy,-0.26234281063079834 +karman_re50,sr,249,99.6,velocity,lower_ux,0.8604725003242493 +karman_re50,sr,249,99.6,velocity,lower_uy,-0.1505732387304306 +karman_re50,sr,250,100.0,velocity,upper_ux,1.0933330059051514 +karman_re50,sr,250,100.0,velocity,upper_uy,-0.2779962718486786 +karman_re50,sr,250,100.0,velocity,center_ux,1.014066219329834 +karman_re50,sr,250,100.0,velocity,center_uy,-0.20463623106479645 +karman_re50,sr,250,100.0,velocity,lower_ux,0.8677442669868469 +karman_re50,sr,250,100.0,velocity,lower_uy,-0.0907452404499054 +karman_re50,sr,251,100.4,velocity,upper_ux,1.0904834270477295 +karman_re50,sr,251,100.4,velocity,upper_uy,-0.2358573079109192 +karman_re50,sr,251,100.4,velocity,center_ux,0.9795992970466614 +karman_re50,sr,251,100.4,velocity,center_uy,-0.11364161223173141 +karman_re50,sr,251,100.4,velocity,lower_ux,0.89014732837677 +karman_re50,sr,251,100.4,velocity,lower_uy,-0.04260202497243881 +karman_re50,sr,252,100.8,velocity,upper_ux,1.075143814086914 +karman_re50,sr,252,100.8,velocity,upper_uy,-0.1542140543460846 +karman_re50,sr,252,100.8,velocity,center_ux,0.9443247318267822 +karman_re50,sr,252,100.8,velocity,center_uy,-0.005565866362303495 +karman_re50,sr,252,100.8,velocity,lower_ux,0.9177471995353699 +karman_re50,sr,252,100.8,velocity,lower_uy,-0.0020608892664313316 +karman_re50,sr,253,101.2,velocity,upper_ux,1.0468918085098267 +karman_re50,sr,253,101.2,velocity,upper_uy,-0.0465601347386837 +karman_re50,sr,253,101.2,velocity,center_ux,0.9261860847473145 +karman_re50,sr,253,101.2,velocity,center_uy,0.09134869277477264 +karman_re50,sr,253,101.2,velocity,lower_ux,0.9401950240135193 +karman_re50,sr,253,101.2,velocity,lower_uy,0.0424741692841053 +karman_re50,sr,254,101.6,velocity,upper_ux,1.0082604885101318 +karman_re50,sr,254,101.6,velocity,upper_uy,0.06694822013378143 +karman_re50,sr,254,101.6,velocity,center_ux,0.9338668584823608 +karman_re50,sr,254,101.6,velocity,center_uy,0.15984801948070526 +karman_re50,sr,254,101.6,velocity,lower_ux,0.9579724073410034 +karman_re50,sr,254,101.6,velocity,lower_uy,0.08914413303136826 +karman_re50,sr,255,102.0,velocity,upper_ux,0.966081440448761 +karman_re50,sr,255,102.0,velocity,upper_uy,0.1654500812292099 +karman_re50,sr,255,102.0,velocity,center_ux,0.9581369161605835 +karman_re50,sr,255,102.0,velocity,center_uy,0.20611755549907684 +karman_re50,sr,255,102.0,velocity,lower_ux,0.9771135449409485 +karman_re50,sr,255,102.0,velocity,lower_uy,0.12878499925136566 +karman_re50,sr,256,102.4,velocity,upper_ux,0.9294193983078003 +karman_re50,sr,256,102.4,velocity,upper_uy,0.23221957683563232 +karman_re50,sr,256,102.4,velocity,center_ux,0.9866589307785034 +karman_re50,sr,256,102.4,velocity,center_uy,0.24060264229774475 +karman_re50,sr,256,102.4,velocity,lower_ux,0.9997338056564331 +karman_re50,sr,256,102.4,velocity,lower_uy,0.1611136496067047 +karman_re50,sr,257,102.8,velocity,upper_ux,0.9031647443771362 +karman_re50,sr,257,102.8,velocity,upper_uy,0.26075735688209534 +karman_re50,sr,257,102.8,velocity,center_ux,1.013239860534668 +karman_re50,sr,257,102.8,velocity,center_uy,0.26665687561035156 +karman_re50,sr,257,102.8,velocity,lower_ux,1.0239362716674805 +karman_re50,sr,257,102.8,velocity,lower_uy,0.19184117019176483 +karman_re50,sr,258,103.2,velocity,upper_ux,0.8845816850662231 +karman_re50,sr,258,103.2,velocity,upper_uy,0.2540692090988159 +karman_re50,sr,258,103.2,velocity,center_ux,1.0335536003112793 +karman_re50,sr,258,103.2,velocity,center_uy,0.28403133153915405 +karman_re50,sr,258,103.2,velocity,lower_ux,1.0472133159637451 +karman_re50,sr,258,103.2,velocity,lower_uy,0.22391857206821442 +karman_re50,sr,259,103.6,velocity,upper_ux,0.8697126507759094 +karman_re50,sr,259,103.6,velocity,upper_uy,0.21806524693965912 +karman_re50,sr,259,103.6,velocity,center_ux,1.043187141418457 +karman_re50,sr,259,103.6,velocity,center_uy,0.28795865178108215 +karman_re50,sr,259,103.6,velocity,lower_ux,1.0676307678222656 +karman_re50,sr,259,103.6,velocity,lower_uy,0.2554905414581299 +karman_re50,sr,260,104.0,velocity,upper_ux,0.860858142375946 +karman_re50,sr,260,104.0,velocity,upper_uy,0.16175638139247894 +karman_re50,sr,260,104.0,velocity,center_ux,1.038830280303955 +karman_re50,sr,260,104.0,velocity,center_uy,0.2689918279647827 +karman_re50,sr,260,104.0,velocity,lower_ux,1.0835399627685547 +karman_re50,sr,260,104.0,velocity,lower_uy,0.2792030870914459 +karman_re50,sr,261,104.4,velocity,upper_ux,0.8651854991912842 +karman_re50,sr,261,104.4,velocity,upper_uy,0.10087891668081284 +karman_re50,sr,261,104.4,velocity,center_ux,1.0191740989685059 +karman_re50,sr,261,104.4,velocity,center_uy,0.21769466996192932 +karman_re50,sr,261,104.4,velocity,lower_ux,1.0926438570022583 +karman_re50,sr,261,104.4,velocity,lower_uy,0.2812148928642273 +karman_re50,sr,262,104.8,velocity,upper_ux,0.8853490352630615 +karman_re50,sr,262,104.8,velocity,upper_uy,0.050368670374155045 +karman_re50,sr,262,104.8,velocity,center_ux,0.9863646626472473 +karman_re50,sr,262,104.8,velocity,center_uy,0.13203394412994385 +karman_re50,sr,262,104.8,velocity,lower_ux,1.0918817520141602 +karman_re50,sr,262,104.8,velocity,lower_uy,0.24658803641796112 +karman_re50,sr,263,105.2,velocity,upper_ux,0.9129831194877625 +karman_re50,sr,263,105.2,velocity,upper_uy,0.009435930289328098 +karman_re50,sr,263,105.2,velocity,center_ux,0.9499655365943909 +karman_re50,sr,263,105.2,velocity,center_uy,0.025095077231526375 +karman_re50,sr,263,105.2,velocity,lower_ux,1.0788826942443848 +karman_re50,sr,263,105.2,velocity,lower_uy,0.17141512036323547 +karman_re50,sr,264,105.6,velocity,upper_ux,0.9366461038589478 +karman_re50,sr,264,105.6,velocity,upper_uy,-0.034002743661403656 +karman_re50,sr,264,105.6,velocity,center_ux,0.9275367856025696 +karman_re50,sr,264,105.6,velocity,center_uy,-0.07578688114881516 +karman_re50,sr,264,105.6,velocity,lower_ux,1.0528663396835327 +karman_re50,sr,264,105.6,velocity,lower_uy,0.0670599713921547 +karman_re50,sr,265,106.0,velocity,upper_ux,0.9547961354255676 +karman_re50,sr,265,106.0,velocity,upper_uy,-0.0810433179140091 +karman_re50,sr,265,106.0,velocity,center_ux,0.9308059215545654 +karman_re50,sr,265,106.0,velocity,center_uy,-0.14950452744960785 +karman_re50,sr,265,106.0,velocity,lower_ux,1.0157122611999512 +karman_re50,sr,265,106.0,velocity,lower_uy,-0.04696891829371452 +karman_re50,sr,266,106.4,velocity,upper_ux,0.9733735918998718 +karman_re50,sr,266,106.4,velocity,upper_uy,-0.12229840457439423 +karman_re50,sr,266,106.4,velocity,center_ux,0.9531548023223877 +karman_re50,sr,266,106.4,velocity,center_uy,-0.19882258772850037 +karman_re50,sr,266,106.4,velocity,lower_ux,0.973512589931488 +karman_re50,sr,266,106.4,velocity,lower_uy,-0.14961738884449005 +karman_re50,sr,267,106.8,velocity,upper_ux,0.9954608678817749 +karman_re50,sr,267,106.8,velocity,upper_uy,-0.15555554628372192 +karman_re50,sr,267,106.8,velocity,center_ux,0.9815314412117004 +karman_re50,sr,267,106.8,velocity,center_uy,-0.23503535985946655 +karman_re50,sr,267,106.8,velocity,lower_ux,0.935291588306427 +karman_re50,sr,267,106.8,velocity,lower_uy,-0.2229638695716858 +karman_re50,sr,268,107.2,velocity,upper_ux,1.0195866823196411 +karman_re50,sr,268,107.2,velocity,upper_uy,-0.18620477616786957 +karman_re50,sr,268,107.2,velocity,center_ux,1.0087889432907104 +karman_re50,sr,268,107.2,velocity,center_uy,-0.262542188167572 +karman_re50,sr,268,107.2,velocity,lower_ux,0.9071838855743408 +karman_re50,sr,268,107.2,velocity,lower_uy,-0.2583703100681305 +karman_re50,sr,269,107.6,velocity,upper_ux,1.043184757232666 +karman_re50,sr,269,107.6,velocity,upper_uy,-0.2180423140525818 +karman_re50,sr,269,107.6,velocity,center_ux,1.0305670499801636 +karman_re50,sr,269,107.6,velocity,center_uy,-0.28167951107025146 +karman_re50,sr,269,107.6,velocity,lower_ux,0.8875958919525146 +karman_re50,sr,269,107.6,velocity,lower_uy,-0.25764453411102295 +karman_re50,sr,270,108.0,velocity,upper_ux,1.0642178058624268 +karman_re50,sr,270,108.0,velocity,upper_uy,-0.2500605285167694 +karman_re50,sr,270,108.0,velocity,center_ux,1.0424047708511353 +karman_re50,sr,270,108.0,velocity,center_uy,-0.2886335849761963 +karman_re50,sr,270,108.0,velocity,lower_ux,0.8720901012420654 +karman_re50,sr,270,108.0,velocity,lower_uy,-0.2264278084039688 +karman_re50,sr,271,108.4,velocity,upper_ux,1.0810741186141968 +karman_re50,sr,271,108.4,velocity,upper_uy,-0.2760433256626129 +karman_re50,sr,271,108.4,velocity,center_ux,1.040735125541687 +karman_re50,sr,271,108.4,velocity,center_uy,-0.2745908796787262 +karman_re50,sr,271,108.4,velocity,lower_ux,0.8616594076156616 +karman_re50,sr,271,108.4,velocity,lower_uy,-0.1728120744228363 +karman_re50,sr,272,108.8,velocity,upper_ux,1.0916467905044556 +karman_re50,sr,272,108.8,velocity,upper_uy,-0.28320035338401794 +karman_re50,sr,272,108.8,velocity,center_ux,1.0238368511199951 +karman_re50,sr,272,108.8,velocity,center_uy,-0.22961193323135376 +karman_re50,sr,272,108.8,velocity,lower_ux,0.8631515502929688 +karman_re50,sr,272,108.8,velocity,lower_uy,-0.11141190677881241 +karman_re50,sr,273,109.2,velocity,upper_ux,1.0928994417190552 +karman_re50,sr,273,109.2,velocity,upper_uy,-0.2559528052806854 +karman_re50,sr,273,109.2,velocity,center_ux,0.9929907321929932 +karman_re50,sr,273,109.2,velocity,center_uy,-0.14971044659614563 +karman_re50,sr,273,109.2,velocity,lower_ux,0.8807814717292786 +karman_re50,sr,273,109.2,velocity,lower_uy,-0.05849786847829819 +karman_re50,sr,274,109.6,velocity,upper_ux,1.0822274684906006 +karman_re50,sr,274,109.6,velocity,upper_uy,-0.1876538097858429 +karman_re50,sr,274,109.6,velocity,center_ux,0.9560858011245728 +karman_re50,sr,274,109.6,velocity,center_uy,-0.04485585540533066 +karman_re50,sr,274,109.6,velocity,lower_ux,0.9080466628074646 +karman_re50,sr,274,109.6,velocity,lower_uy,-0.016700487583875656 +karman_re50,sr,275,110.0,velocity,upper_ux,1.058512806892395 +karman_re50,sr,275,110.0,velocity,upper_uy,-0.08724860846996307 +karman_re50,sr,275,110.0,velocity,center_ux,0.9297991394996643 +karman_re50,sr,275,110.0,velocity,center_uy,0.05925440788269043 +karman_re50,sr,275,110.0,velocity,lower_ux,0.9329006671905518 +karman_re50,sr,275,110.0,velocity,lower_uy,0.025673069059848785 +karman_re50,sr,276,110.4,velocity,upper_ux,1.023032546043396 +karman_re50,sr,276,110.4,velocity,upper_uy,0.02659371867775917 +karman_re50,sr,276,110.4,velocity,center_ux,0.928383469581604 +karman_re50,sr,276,110.4,velocity,center_uy,0.13833679258823395 +karman_re50,sr,276,110.4,velocity,lower_ux,0.9516493082046509 +karman_re50,sr,276,110.4,velocity,lower_uy,0.07270612567663193 +karman_re50,sr,277,110.8,velocity,upper_ux,0.981117308139801 +karman_re50,sr,277,110.8,velocity,upper_uy,0.13279159367084503 +karman_re50,sr,277,110.8,velocity,center_ux,0.9483411312103271 +karman_re50,sr,277,110.8,velocity,center_uy,0.1911233514547348 +karman_re50,sr,277,110.8,velocity,lower_ux,0.9697567820549011 +karman_re50,sr,277,110.8,velocity,lower_uy,0.11552438884973526 +karman_re50,sr,278,111.2,velocity,upper_ux,0.941556453704834 +karman_re50,sr,278,111.2,velocity,upper_uy,0.21240948140621185 +karman_re50,sr,278,111.2,velocity,center_ux,0.9763567447662354 +karman_re50,sr,278,111.2,velocity,center_uy,0.22916288673877716 +karman_re50,sr,278,111.2,velocity,lower_ux,0.9912469983100891 +karman_re50,sr,278,111.2,velocity,lower_uy,0.1499088853597641 +karman_re50,sr,279,111.6,velocity,upper_ux,0.9115292429924011 +karman_re50,sr,279,111.6,velocity,upper_uy,0.25477179884910583 +karman_re50,sr,279,111.6,velocity,center_ux,1.0041543245315552 +karman_re50,sr,279,111.6,velocity,center_uy,0.2581433653831482 +karman_re50,sr,279,111.6,velocity,lower_ux,1.0152080059051514 +karman_re50,sr,279,111.6,velocity,lower_uy,0.1806240975856781 +karman_re50,sr,280,112.0,velocity,upper_ux,0.8907747864723206 +karman_re50,sr,280,112.0,velocity,upper_uy,0.260181188583374 +karman_re50,sr,280,112.0,velocity,center_ux,1.0272446870803833 +karman_re50,sr,280,112.0,velocity,center_uy,0.27891111373901367 +karman_re50,sr,280,112.0,velocity,lower_ux,1.039064884185791 +karman_re50,sr,280,112.0,velocity,lower_uy,0.21218088269233704 +karman_re50,sr,281,112.4,velocity,upper_ux,0.8746662735939026 +karman_re50,sr,281,112.4,velocity,upper_uy,0.23401078581809998 +karman_re50,sr,281,112.4,velocity,center_ux,1.0411587953567505 +karman_re50,sr,281,112.4,velocity,center_uy,0.2886064052581787 +karman_re50,sr,281,112.4,velocity,lower_ux,1.0606622695922852 +karman_re50,sr,281,112.4,velocity,lower_uy,0.24446044862270355 +karman_re50,sr,282,112.8,velocity,upper_ux,0.8629004955291748 +karman_re50,sr,282,112.8,velocity,upper_uy,0.18358716368675232 +karman_re50,sr,282,112.8,velocity,center_ux,1.0421026945114136 +karman_re50,sr,282,112.8,velocity,center_uy,0.2791491746902466 +karman_re50,sr,282,112.8,velocity,lower_ux,1.0783882141113281 +karman_re50,sr,282,112.8,velocity,lower_uy,0.2722860276699066 +karman_re50,sr,283,113.2,velocity,upper_ux,0.8617125153541565 +karman_re50,sr,283,113.2,velocity,upper_uy,0.12226950377225876 +karman_re50,sr,283,113.2,velocity,center_ux,1.0279911756515503 +karman_re50,sr,283,113.2,velocity,center_uy,0.24035145342350006 +karman_re50,sr,283,113.2,velocity,lower_ux,1.0903152227401733 +karman_re50,sr,283,113.2,velocity,lower_uy,0.28404492139816284 +karman_re50,sr,284,113.6,velocity,upper_ux,0.8765708804130554 +karman_re50,sr,284,113.6,velocity,upper_uy,0.06705905497074127 +karman_re50,sr,284,113.6,velocity,center_ux,0.9993593096733093 +karman_re50,sr,284,113.6,velocity,center_uy,0.1665416955947876 +karman_re50,sr,284,113.6,velocity,lower_ux,1.0934970378875732 +karman_re50,sr,284,113.6,velocity,lower_uy,0.2639385163784027 +karman_re50,sr,285,114.0,velocity,upper_ux,0.9030140042304993 +karman_re50,sr,285,114.0,velocity,upper_uy,0.023929597809910774 +karman_re50,sr,285,114.0,velocity,center_ux,0.9625372886657715 +karman_re50,sr,285,114.0,velocity,center_uy,0.0646643415093422 +karman_re50,sr,285,114.0,velocity,lower_ux,1.0851181745529175 +karman_re50,sr,285,114.0,velocity,lower_uy,0.20282045006752014 +karman_re50,sr,286,114.4,velocity,upper_ux,0.9289324283599854 +karman_re50,sr,286,114.4,velocity,upper_uy,-0.01753058284521103 +karman_re50,sr,286,114.4,velocity,center_ux,0.9329289197921753 +karman_re50,sr,286,114.4,velocity,center_uy,-0.04180118441581726 +karman_re50,sr,286,114.4,velocity,lower_ux,1.063750982284546 +karman_re50,sr,286,114.4,velocity,lower_uy,0.1069965735077858 +karman_re50,sr,287,114.8,velocity,upper_ux,0.9484884142875671 +karman_re50,sr,287,114.8,velocity,upper_uy,-0.06421352177858353 +karman_re50,sr,287,114.8,velocity,center_ux,0.9266801476478577 +karman_re50,sr,287,114.8,velocity,center_uy,-0.12627683579921722 +karman_re50,sr,287,114.8,velocity,lower_ux,1.0301179885864258 +karman_re50,sr,287,114.8,velocity,lower_uy,-0.005980014801025391 +karman_re50,sr,288,115.2,velocity,upper_ux,0.9662581086158752 +karman_re50,sr,288,115.2,velocity,upper_uy,-0.10843925178050995 +karman_re50,sr,288,115.2,velocity,center_ux,0.9437534809112549 +karman_re50,sr,288,115.2,velocity,center_uy,-0.18298093974590302 +karman_re50,sr,288,115.2,velocity,lower_ux,0.9887837767601013 +karman_re50,sr,288,115.2,velocity,lower_uy,-0.11509056389331818 +karman_re50,sr,289,115.6,velocity,upper_ux,0.9871109127998352 +karman_re50,sr,289,115.6,velocity,upper_uy,-0.14414994418621063 +karman_re50,sr,289,115.6,velocity,center_ux,0.9711548089981079 +karman_re50,sr,289,115.6,velocity,center_uy,-0.2230341136455536 +karman_re50,sr,289,115.6,velocity,lower_ux,0.9481332898139954 +karman_re50,sr,289,115.6,velocity,lower_uy,-0.2006385773420334 +karman_re50,sr,290,116.0,velocity,upper_ux,1.0108251571655273 +karman_re50,sr,290,116.0,velocity,upper_uy,-0.17507725954055786 +karman_re50,sr,290,116.0,velocity,center_ux,0.9993656873703003 +karman_re50,sr,290,116.0,velocity,center_uy,-0.25351056456565857 +karman_re50,sr,290,116.0,velocity,lower_ux,0.9161697626113892 +karman_re50,sr,290,116.0,velocity,lower_uy,-0.24998408555984497 +karman_re50,sr,291,116.4,velocity,upper_ux,1.0348831415176392 +karman_re50,sr,291,116.4,velocity,upper_uy,-0.20635248720645905 +karman_re50,sr,291,116.4,velocity,center_ux,1.0236356258392334 +karman_re50,sr,291,116.4,velocity,center_uy,-0.2758311331272125 +karman_re50,sr,291,116.4,velocity,lower_ux,0.8940733075141907 +karman_re50,sr,291,116.4,velocity,lower_uy,-0.26171696186065674 +karman_re50,sr,292,116.8,velocity,upper_ux,1.0569988489151 +karman_re50,sr,292,116.8,velocity,upper_uy,-0.238722026348114 +karman_re50,sr,292,116.8,velocity,center_ux,1.0395129919052124 +karman_re50,sr,292,116.8,velocity,center_uy,-0.2879849374294281 +karman_re50,sr,292,116.8,velocity,lower_ux,0.8773455023765564 +karman_re50,sr,292,116.8,velocity,lower_uy,-0.2407996952533722 +karman_re50,sr,293,117.2,velocity,upper_ux,1.0755311250686646 +karman_re50,sr,293,117.2,velocity,upper_uy,-0.26800477504730225 +karman_re50,sr,293,117.2,velocity,center_ux,1.0430054664611816 +karman_re50,sr,293,117.2,velocity,center_uy,-0.2827492952346802 +karman_re50,sr,293,117.2,velocity,lower_ux,0.8644611239433289 +karman_re50,sr,293,117.2,velocity,lower_uy,-0.1939915418624878 +karman_re50,sr,294,117.6,velocity,upper_ux,1.0887091159820557 +karman_re50,sr,294,117.6,velocity,upper_uy,-0.28381478786468506 +karman_re50,sr,294,117.6,velocity,center_ux,1.0316872596740723 +karman_re50,sr,294,117.6,velocity,center_uy,-0.2499045878648758 +karman_re50,sr,294,117.6,velocity,lower_ux,0.860799252986908 +karman_re50,sr,294,117.6,velocity,lower_uy,-0.13334475457668304 +karman_re50,sr,295,118.0,velocity,upper_ux,1.0937221050262451 +karman_re50,sr,295,118.0,velocity,upper_uy,-0.2705153524875641 +karman_re50,sr,295,118.0,velocity,center_ux,1.005461573600769 +karman_re50,sr,295,118.0,velocity,center_uy,-0.18236564099788666 +karman_re50,sr,295,118.0,velocity,lower_ux,0.8727473616600037 +karman_re50,sr,295,118.0,velocity,lower_uy,-0.0760459154844284 +karman_re50,sr,296,118.4,velocity,upper_ux,1.0875900983810425 +karman_re50,sr,296,118.4,velocity,upper_uy,-0.21681243181228638 +karman_re50,sr,296,118.4,velocity,center_ux,0.9692425727844238 +karman_re50,sr,296,118.4,velocity,center_uy,-0.08425965905189514 +karman_re50,sr,296,118.4,velocity,lower_ux,0.8979433178901672 +karman_re50,sr,296,118.4,velocity,lower_uy,-0.03118230402469635 +karman_re50,sr,297,118.8,velocity,upper_ux,1.0685843229293823 +karman_re50,sr,297,118.8,velocity,upper_uy,-0.12616558372974396 +karman_re50,sr,297,118.8,velocity,center_ux,0.9369011521339417 +karman_re50,sr,297,118.8,velocity,center_uy,0.023607296869158745 +karman_re50,sr,297,118.8,velocity,lower_ux,0.9247382879257202 +karman_re50,sr,297,118.8,velocity,lower_uy,0.009632722474634647 +karman_re50,sr,298,119.2,velocity,upper_ux,1.0369371175765991 +karman_re50,sr,298,119.2,velocity,upper_uy,-0.014770891517400742 +karman_re50,sr,298,119.2,velocity,center_ux,0.9258062839508057 +karman_re50,sr,298,119.2,velocity,center_uy,0.11326780170202255 +karman_re50,sr,298,119.2,velocity,lower_ux,0.9452896118164062 +karman_re50,sr,298,119.2,velocity,lower_uy,0.05563913285732269 +karman_re50,sr,299,119.6,velocity,upper_ux,0.9964544177055359 +karman_re50,sr,299,119.6,velocity,upper_uy,0.09658966213464737 +karman_re50,sr,299,119.6,velocity,center_ux,0.939501941204071 +karman_re50,sr,299,119.6,velocity,center_uy,0.17431913316249847 +karman_re50,sr,299,119.6,velocity,lower_ux,0.9628871083259583 +karman_re50,sr,299,119.6,velocity,lower_uy,0.10105893015861511 +karman_re50,sr,300,120.0,velocity,upper_ux,0.9549974203109741 +karman_re50,sr,300,120.0,velocity,upper_uy,0.1876228004693985 +karman_re50,sr,300,120.0,velocity,center_ux,0.9659753441810608 +karman_re50,sr,300,120.0,velocity,center_uy,0.21659426391124725 +karman_re50,sr,300,120.0,velocity,lower_ux,0.9830803871154785 +karman_re50,sr,300,120.0,velocity,lower_uy,0.1382409632205963 +karman_re50,sr,301,120.4,velocity,upper_ux,0.9211320281028748 +karman_re50,sr,301,120.4,velocity,upper_uy,0.24393068253993988 +karman_re50,sr,301,120.4,velocity,center_ux,0.9944571852684021 +karman_re50,sr,301,120.4,velocity,center_uy,0.24861019849777222 +karman_re50,sr,301,120.4,velocity,lower_ux,1.006457805633545 +karman_re50,sr,301,120.4,velocity,lower_uy,0.16956762969493866 +karman_re50,sr,302,120.8,velocity,upper_ux,0.8975224494934082 +karman_re50,sr,302,120.8,velocity,upper_uy,0.2621719241142273 +karman_re50,sr,302,120.8,velocity,center_ux,1.0197581052780151 +karman_re50,sr,302,120.8,velocity,center_uy,0.2724230885505676 +karman_re50,sr,302,120.8,velocity,lower_ux,1.0306425094604492 +karman_re50,sr,302,120.8,velocity,lower_uy,0.20058107376098633 +karman_re50,sr,303,121.2,velocity,upper_ux,0.8801165819168091 +karman_re50,sr,303,121.2,velocity,upper_uy,0.2467188686132431 +karman_re50,sr,303,121.2,velocity,center_ux,1.0374623537063599 +karman_re50,sr,303,121.2,velocity,center_uy,0.28679224848747253 +karman_re50,sr,303,121.2,velocity,lower_ux,1.0532292127609253 +karman_re50,sr,303,121.2,velocity,lower_uy,0.2329108566045761 +karman_re50,sr,304,121.6,velocity,upper_ux,0.8663040399551392 +karman_re50,sr,304,121.6,velocity,upper_uy,0.20391994714736938 +karman_re50,sr,304,121.6,velocity,center_ux,1.0434093475341797 +karman_re50,sr,304,121.6,velocity,center_uy,0.28543269634246826 +karman_re50,sr,304,121.6,velocity,lower_ux,1.0725035667419434 +karman_re50,sr,304,121.6,velocity,lower_uy,0.26331624388694763 +karman_re50,sr,305,122.0,velocity,upper_ux,0.8604071736335754 +karman_re50,sr,305,122.0,velocity,upper_uy,0.1445428431034088 +karman_re50,sr,305,122.0,velocity,center_ux,1.0348659753799438 +karman_re50,sr,305,122.0,velocity,center_uy,0.25828588008880615 +karman_re50,sr,305,122.0,velocity,lower_ux,1.086829423904419 +karman_re50,sr,305,122.0,velocity,lower_uy,0.28263235092163086 +karman_re50,sr,306,122.4,velocity,upper_ux,0.8693742156028748 +karman_re50,sr,306,122.4,velocity,upper_uy,0.08549803495407104 +karman_re50,sr,306,122.4,velocity,center_ux,1.0111877918243408 +karman_re50,sr,306,122.4,velocity,center_uy,0.19714641571044922 +karman_re50,sr,306,122.4,velocity,lower_ux,1.093568205833435 +karman_re50,sr,306,122.4,velocity,lower_uy,0.2757387161254883 +karman_re50,sr,307,122.8,velocity,upper_ux,0.8929010033607483 +karman_re50,sr,307,122.8,velocity,upper_uy,0.038562774658203125 +karman_re50,sr,307,122.8,velocity,center_ux,0.9760379195213318 +karman_re50,sr,307,122.8,velocity,center_uy,0.10350653529167175 +karman_re50,sr,307,122.8,velocity,lower_ux,1.089627981185913 +karman_re50,sr,307,122.8,velocity,lower_uy,0.22955858707427979 +karman_re50,sr,308,123.2,velocity,upper_ux,0.9202970266342163 +karman_re50,sr,308,123.2,velocity,upper_uy,-0.001958210254088044 +karman_re50,sr,308,123.2,velocity,center_ux,0.9415996670722961 +karman_re50,sr,308,123.2,velocity,center_uy,-0.004758876282721758 +karman_re50,sr,308,123.2,velocity,lower_ux,1.0729937553405762 +karman_re50,sr,308,123.2,velocity,lower_uy,0.14464297890663147 +karman_re50,sr,309,123.6,velocity,upper_ux,0.9419843554496765 +karman_re50,sr,309,123.6,velocity,upper_uy,-0.04705207422375679 +karman_re50,sr,309,123.6,velocity,center_ux,0.9257845878601074 +karman_re50,sr,309,123.6,velocity,center_uy,-0.09926749020814896 +karman_re50,sr,309,123.6,velocity,lower_ux,1.0434552431106567 +karman_re50,sr,309,123.6,velocity,lower_uy,0.03550349175930023 +karman_re50,sr,310,124.0,velocity,upper_ux,0.9596073031425476 +karman_re50,sr,310,124.0,velocity,upper_uy,-0.09337074309587479 +karman_re50,sr,310,124.0,velocity,center_ux,0.9356454610824585 +karman_re50,sr,310,124.0,velocity,center_uy,-0.1650635153055191 +karman_re50,sr,310,124.0,velocity,lower_ux,1.0040837526321411 +karman_re50,sr,310,124.0,velocity,lower_uy,-0.07742860913276672 +karman_re50,sr,311,124.4,velocity,upper_ux,0.9791472554206848 +karman_re50,sr,311,124.4,velocity,upper_uy,-0.1321338713169098 +karman_re50,sr,311,124.4,velocity,center_ux,0.9608336687088013 +karman_re50,sr,311,124.4,velocity,center_uy,-0.20984356105327606 +karman_re50,sr,311,124.4,velocity,lower_ux,0.9621172547340393 +karman_re50,sr,311,124.4,velocity,lower_uy,-0.17346054315567017 +karman_re50,sr,312,124.8,velocity,upper_ux,1.0021041631698608 +karman_re50,sr,312,124.8,velocity,upper_uy,-0.1640574336051941 +karman_re50,sr,312,124.8,velocity,center_ux,0.9894362092018127 +karman_re50,sr,312,124.8,velocity,center_uy,-0.2434489130973816 +karman_re50,sr,312,124.8,velocity,lower_ux,0.9264476299285889 +karman_re50,sr,312,124.8,velocity,lower_uy,-0.23662486672401428 +karman_re50,sr,313,125.2,velocity,upper_ux,1.0263447761535645 +karman_re50,sr,313,125.2,velocity,upper_uy,-0.19486074149608612 +karman_re50,sr,313,125.2,velocity,center_ux,1.0156292915344238 +karman_re50,sr,313,125.2,velocity,center_uy,-0.26872384548187256 +karman_re50,sr,313,125.2,velocity,lower_ux,0.9011742472648621 +karman_re50,sr,313,125.2,velocity,lower_uy,-0.26153096556663513 +karman_re50,sr,314,125.6,velocity,upper_ux,1.0493512153625488 +karman_re50,sr,314,125.6,velocity,upper_uy,-0.2270512729883194 +karman_re50,sr,314,125.6,velocity,center_ux,1.035025954246521 +karman_re50,sr,314,125.6,velocity,center_uy,-0.2851048707962036 +karman_re50,sr,314,125.6,velocity,lower_ux,0.8829942345619202 +karman_re50,sr,314,125.6,velocity,lower_uy,-0.2517400085926056 +karman_re50,sr,315,126.0,velocity,upper_ux,1.0693174600601196 +karman_re50,sr,315,126.0,velocity,upper_uy,-0.2582821846008301 +karman_re50,sr,315,126.0,velocity,center_ux,1.0433361530303955 +karman_re50,sr,315,126.0,velocity,center_uy,-0.28727757930755615 +karman_re50,sr,315,126.0,velocity,lower_ux,0.8684026598930359 +karman_re50,sr,315,126.0,velocity,lower_uy,-0.21328924596309662 +karman_re50,sr,316,126.4,velocity,upper_ux,1.0847018957138062 +karman_re50,sr,316,126.4,velocity,upper_uy,-0.28059712052345276 +karman_re50,sr,316,126.4,velocity,center_ux,1.0375351905822754 +karman_re50,sr,316,126.4,velocity,center_uy,-0.2655530571937561 +karman_re50,sr,316,126.4,velocity,lower_ux,0.8605185747146606 +karman_re50,sr,316,126.4,velocity,lower_uy,-0.15577784180641174 +karman_re50,sr,317,126.8,velocity,upper_ux,1.0930665731430054 +karman_re50,sr,317,126.8,velocity,upper_uy,-0.27964216470718384 +karman_re50,sr,317,126.8,velocity,center_ux,1.0165119171142578 +karman_re50,sr,317,126.8,velocity,center_uy,-0.21084272861480713 +karman_re50,sr,317,126.8,velocity,lower_ux,0.8665011525154114 +karman_re50,sr,317,126.8,velocity,lower_uy,-0.09541329741477966 +karman_re50,sr,318,127.2,velocity,upper_ux,1.091259241104126 +karman_re50,sr,318,127.2,velocity,upper_uy,-0.24101687967777252 +karman_re50,sr,318,127.2,velocity,center_ux,0.9828381538391113 +karman_re50,sr,318,127.2,velocity,center_uy,-0.12227576971054077 +karman_re50,sr,318,127.2,velocity,lower_ux,0.8879730701446533 +karman_re50,sr,318,127.2,velocity,lower_uy,-0.04618782922625542 +karman_re50,sr,319,127.6,velocity,upper_ux,1.0769959688186646 +karman_re50,sr,319,127.6,velocity,upper_uy,-0.1623312383890152 +karman_re50,sr,319,127.6,velocity,center_ux,0.9469447135925293 +karman_re50,sr,319,127.6,velocity,center_uy,-0.014608973637223244 +karman_re50,sr,319,127.6,velocity,lower_ux,0.9156279563903809 +karman_re50,sr,319,127.6,velocity,lower_uy,-0.005523668602108955 +karman_re50,sr,320,128.0,velocity,upper_ux,1.0496704578399658 +karman_re50,sr,320,128.0,velocity,upper_uy,-0.056133680045604706 +karman_re50,sr,320,128.0,velocity,center_ux,0.92665696144104 +karman_re50,sr,320,128.0,velocity,center_uy,0.08422806113958359 +karman_re50,sr,320,128.0,velocity,lower_ux,0.9385349750518799 +karman_re50,sr,320,128.0,velocity,lower_uy,0.03850620612502098 +karman_re50,sr,321,128.4,velocity,upper_ux,1.0116499662399292 +karman_re50,sr,321,128.4,velocity,upper_uy,0.0576886422932148 +karman_re50,sr,321,128.4,velocity,center_ux,0.932269811630249 +karman_re50,sr,321,128.4,velocity,center_uy,0.15511342883110046 +karman_re50,sr,321,128.4,velocity,lower_ux,0.956398606300354 +karman_re50,sr,321,128.4,velocity,lower_uy,0.08539155125617981 +karman_re50,sr,322,128.8,velocity,upper_ux,0.9694892764091492 +karman_re50,sr,322,128.8,velocity,upper_uy,0.15818257629871368 +karman_re50,sr,322,128.8,velocity,center_ux,0.955758810043335 +karman_re50,sr,322,128.8,velocity,center_uy,0.20274364948272705 +karman_re50,sr,322,128.8,velocity,lower_ux,0.9753245711326599 +karman_re50,sr,322,128.8,velocity,lower_uy,0.12578687071800232 +karman_re50,sr,323,129.2,velocity,upper_ux,0.9321618676185608 +karman_re50,sr,323,129.2,velocity,upper_uy,0.2280406355857849 +karman_re50,sr,323,129.2,velocity,center_ux,0.9843122959136963 +karman_re50,sr,323,129.2,velocity,center_uy,0.2380170375108719 +karman_re50,sr,323,129.2,velocity,lower_ux,0.9977817535400391 +karman_re50,sr,323,129.2,velocity,lower_uy,0.15852276980876923 +karman_re50,sr,324,129.6,velocity,upper_ux,0.9050968885421753 +karman_re50,sr,324,129.6,velocity,upper_uy,0.25976717472076416 +karman_re50,sr,324,129.6,velocity,center_ux,1.0112580060958862 +karman_re50,sr,324,129.6,velocity,center_uy,0.26475536823272705 +karman_re50,sr,324,129.6,velocity,lower_ux,1.0219967365264893 +karman_re50,sr,324,129.6,velocity,lower_uy,0.18920515477657318 +karman_re50,sr,325,130.0,velocity,upper_ux,0.8860097527503967 +karman_re50,sr,325,130.0,velocity,upper_uy,0.255837619304657 +karman_re50,sr,325,130.0,velocity,center_ux,1.032209873199463 +karman_re50,sr,325,130.0,velocity,center_uy,0.2829779386520386 +karman_re50,sr,325,130.0,velocity,lower_ux,1.045372724533081 +karman_re50,sr,325,130.0,velocity,lower_uy,0.22117973864078522 +karman_re50,sr,326,130.4,velocity,upper_ux,0.8707379102706909 +karman_re50,sr,326,130.4,velocity,upper_uy,0.2220500409603119 +karman_re50,sr,326,130.4,velocity,center_ux,1.0427803993225098 +karman_re50,sr,326,130.4,velocity,center_uy,0.2883656919002533 +karman_re50,sr,326,130.4,velocity,lower_ux,1.0659821033477783 +karman_re50,sr,326,130.4,velocity,lower_uy,0.25298798084259033 +karman_re50,sr,327,130.8,velocity,upper_ux,0.8611137270927429 +karman_re50,sr,327,130.8,velocity,upper_uy,0.16695445775985718 +karman_re50,sr,327,130.8,velocity,center_ux,1.039689540863037 +karman_re50,sr,327,130.8,velocity,center_uy,0.2717440128326416 +karman_re50,sr,327,130.8,velocity,lower_ux,1.0823416709899902 +karman_re50,sr,327,130.8,velocity,lower_uy,0.2778111398220062 +karman_re50,sr,328,131.2,velocity,upper_ux,0.8641718029975891 +karman_re50,sr,328,131.2,velocity,upper_uy,0.105775386095047 +karman_re50,sr,328,131.2,velocity,center_ux,1.0214005708694458 +karman_re50,sr,328,131.2,velocity,center_uy,0.2234145551919937 +karman_re50,sr,328,131.2,velocity,lower_ux,1.092220425605774 +karman_re50,sr,328,131.2,velocity,lower_uy,0.2822876274585724 +karman_re50,sr,329,131.6,velocity,upper_ux,0.8832449913024902 +karman_re50,sr,329,131.6,velocity,upper_uy,0.05413314700126648 +karman_re50,sr,329,131.6,velocity,center_ux,0.989544689655304 +karman_re50,sr,329,131.6,velocity,center_uy,0.14038532972335815 +karman_re50,sr,329,131.6,velocity,lower_ux,1.0924746990203857 +karman_re50,sr,329,131.6,velocity,lower_uy,0.25112006068229675 +karman_re50,sr,330,132.0,velocity,upper_ux,0.9107611179351807 +karman_re50,sr,330,132.0,velocity,upper_uy,0.012843001633882523 +karman_re50,sr,330,132.0,velocity,center_ux,0.9528394341468811 +karman_re50,sr,330,132.0,velocity,center_uy,0.034282926470041275 +karman_re50,sr,330,132.0,velocity,lower_ux,1.0805621147155762 +karman_re50,sr,330,132.0,velocity,lower_uy,0.17909583449363708 +karman_re50,sr,331,132.4,velocity,upper_ux,0.9348981380462646 +karman_re50,sr,331,132.4,velocity,upper_uy,-0.030099494382739067 +karman_re50,sr,331,132.4,velocity,center_ux,0.9284659624099731 +karman_re50,sr,331,132.4,velocity,center_uy,-0.06821925938129425 +karman_re50,sr,331,132.4,velocity,lower_ux,1.055517554283142 +karman_re50,sr,331,132.4,velocity,lower_uy,0.07649275660514832 +karman_re50,sr,332,132.8,velocity,upper_ux,0.9532354474067688 +karman_re50,sr,332,132.8,velocity,upper_uy,-0.07718546688556671 +karman_re50,sr,332,132.8,velocity,center_ux,0.9295158386230469 +karman_re50,sr,332,132.8,velocity,center_uy,-0.1444237381219864 +karman_re50,sr,332,132.8,velocity,lower_ux,1.0190542936325073 +karman_re50,sr,332,132.8,velocity,lower_uy,-0.03753067925572395 +karman_re50,sr,333,133.2,velocity,upper_ux,0.9716268181800842 +karman_re50,sr,333,133.2,velocity,upper_uy,-0.11917975544929504 +karman_re50,sr,333,133.2,velocity,center_ux,0.9508547782897949 +karman_re50,sr,333,133.2,velocity,center_uy,-0.19529426097869873 +karman_re50,sr,333,133.2,velocity,lower_ux,0.9769970178604126 +karman_re50,sr,333,133.2,velocity,lower_uy,-0.14189840853214264 +karman_re50,sr,334,133.6,velocity,upper_ux,0.9935181140899658 +karman_re50,sr,334,133.6,velocity,upper_uy,-0.15293893218040466 +karman_re50,sr,334,133.6,velocity,center_ux,0.9791635870933533 +karman_re50,sr,334,133.6,velocity,center_uy,-0.232334703207016 +karman_re50,sr,334,133.6,velocity,lower_ux,0.9381971955299377 +karman_re50,sr,334,133.6,velocity,lower_uy,-0.21819892525672913 +karman_re50,sr,335,134.0,velocity,upper_ux,1.0176255702972412 +karman_re50,sr,335,134.0,velocity,upper_uy,-0.1836031973361969 +karman_re50,sr,335,134.0,velocity,center_ux,1.0067306756973267 +karman_re50,sr,335,134.0,velocity,center_uy,-0.2605248689651489 +karman_re50,sr,335,134.0,velocity,lower_ux,0.9092464447021484 +karman_re50,sr,335,134.0,velocity,lower_uy,-0.25683102011680603 +karman_re50,sr,336,134.4,velocity,upper_ux,1.041314721107483 +karman_re50,sr,336,134.4,velocity,upper_uy,-0.21531574428081512 +karman_re50,sr,336,134.4,velocity,center_ux,1.0290939807891846 +karman_re50,sr,336,134.4,velocity,center_uy,-0.28043973445892334 +karman_re50,sr,336,134.4,velocity,lower_ux,0.8890963792800903 +karman_re50,sr,336,134.4,velocity,lower_uy,-0.25893527269363403 +karman_re50,sr,337,134.8,velocity,upper_ux,1.0625194311141968 +karman_re50,sr,337,134.8,velocity,upper_uy,-0.247477188706398 +karman_re50,sr,337,134.8,velocity,center_ux,1.0418124198913574 +karman_re50,sr,337,134.8,velocity,center_uy,-0.28871023654937744 +karman_re50,sr,337,134.8,velocity,lower_ux,0.8732125759124756 +karman_re50,sr,337,134.8,velocity,lower_uy,-0.23004402220249176 +karman_re50,sr,338,135.2,velocity,upper_ux,1.0797744989395142 +karman_re50,sr,338,135.2,velocity,upper_uy,-0.27436593174934387 +karman_re50,sr,338,135.2,velocity,center_ux,1.0413554906845093 +karman_re50,sr,338,135.2,velocity,center_uy,-0.27685078978538513 +karman_re50,sr,338,135.2,velocity,lower_ux,0.8621156215667725 +karman_re50,sr,338,135.2,velocity,lower_uy,-0.17787238955497742 +karman_re50,sr,339,135.6,velocity,upper_ux,1.0910574197769165 +karman_re50,sr,339,135.6,velocity,upper_uy,-0.2837332487106323 +karman_re50,sr,339,135.6,velocity,center_ux,1.0258233547210693 +karman_re50,sr,339,135.6,velocity,center_uy,-0.23477581143379211 +karman_re50,sr,339,135.6,velocity,lower_ux,0.8623993396759033 +karman_re50,sr,339,135.6,velocity,lower_uy,-0.11644651740789413 +karman_re50,sr,340,136.0,velocity,upper_ux,1.0932855606079102 +karman_re50,sr,340,136.0,velocity,upper_uy,-0.25984495878219604 +karman_re50,sr,340,136.0,velocity,center_ux,0.9960518479347229 +karman_re50,sr,340,136.0,velocity,center_uy,-0.15767261385917664 +karman_re50,sr,340,136.0,velocity,lower_ux,0.8788237571716309 +karman_re50,sr,340,136.0,velocity,lower_uy,-0.062441181391477585 +karman_re50,sr,341,136.4,velocity,upper_ux,1.0836989879608154 +karman_re50,sr,341,136.4,velocity,upper_uy,-0.1948511302471161 +karman_re50,sr,341,136.4,velocity,center_ux,0.9591284990310669 +karman_re50,sr,341,136.4,velocity,center_uy,-0.0540853850543499 +karman_re50,sr,341,136.4,velocity,lower_ux,0.9057748317718506 +karman_re50,sr,341,136.4,velocity,lower_uy,-0.020072156563401222 +karman_re50,sr,342,136.8,velocity,upper_ux,1.0609939098358154 +karman_re50,sr,342,136.8,velocity,upper_uy,-0.09649644047021866 +karman_re50,sr,342,136.8,velocity,center_ux,0.9311459064483643 +karman_re50,sr,342,136.8,velocity,center_uy,0.05124490708112717 +karman_re50,sr,342,136.8,velocity,lower_ux,0.9310692548751831 +karman_re50,sr,342,136.8,velocity,lower_uy,0.0218556709587574 +karman_re50,sr,343,137.2,velocity,upper_ux,1.026282787322998 +karman_re50,sr,343,137.2,velocity,upper_uy,0.01702238619327545 +karman_re50,sr,343,137.2,velocity,center_ux,0.9274193048477173 +karman_re50,sr,343,137.2,velocity,center_uy,0.1328408122062683 +karman_re50,sr,343,137.2,velocity,lower_ux,0.9500971436500549 +karman_re50,sr,343,137.2,velocity,lower_uy,0.06876857578754425 +karman_re50,sr,344,137.6,velocity,upper_ux,0.9846362471580505 +karman_re50,sr,344,137.6,velocity,upper_uy,0.1246446818113327 +karman_re50,sr,344,137.6,velocity,center_ux,0.9461200833320618 +karman_re50,sr,344,137.6,velocity,center_uy,0.18738482892513275 +karman_re50,sr,344,137.6,velocity,lower_ux,0.9680569171905518 +karman_re50,sr,344,137.6,velocity,lower_uy,0.11226622760295868 +karman_re50,sr,345,138.0,velocity,upper_ux,0.944608747959137 +karman_re50,sr,345,138.0,velocity,upper_uy,0.2070639282464981 +karman_re50,sr,345,138.0,velocity,center_ux,0.9739441871643066 +karman_re50,sr,345,138.0,velocity,center_uy,0.2263336181640625 +karman_re50,sr,345,138.0,velocity,lower_ux,0.9893219470977783 +karman_re50,sr,345,138.0,velocity,lower_uy,0.14724937081336975 +karman_re50,sr,346,138.4,velocity,upper_ux,0.9137342572212219 +karman_re50,sr,346,138.4,velocity,upper_uy,0.25267842411994934 +karman_re50,sr,346,138.4,velocity,center_ux,1.00199294090271 +karman_re50,sr,346,138.4,velocity,center_uy,0.25601574778556824 +karman_re50,sr,346,138.4,velocity,lower_ux,1.0132300853729248 +karman_re50,sr,346,138.4,velocity,lower_uy,0.17804880440235138 +karman_re50,sr,347,138.8,velocity,upper_ux,0.8923524618148804 +karman_re50,sr,347,138.8,velocity,upper_uy,0.26102036237716675 +karman_re50,sr,347,138.8,velocity,center_ux,1.0256191492080688 +karman_re50,sr,347,138.8,velocity,center_uy,0.2775295376777649 +karman_re50,sr,347,138.8,velocity,lower_ux,1.0371661186218262 +karman_re50,sr,347,138.8,velocity,lower_uy,0.20947925746440887 +karman_re50,sr,348,139.2,velocity,upper_ux,0.875863790512085 +karman_re50,sr,348,139.2,velocity,upper_uy,0.23729373514652252 +karman_re50,sr,348,139.2,velocity,center_ux,1.0403690338134766 +karman_re50,sr,348,139.2,velocity,center_uy,0.28841644525527954 +karman_re50,sr,348,139.2,velocity,lower_ux,1.0589206218719482 +karman_re50,sr,348,139.2,velocity,lower_uy,0.24182464182376862 +karman_re50,sr,349,139.6,velocity,upper_ux,0.8635126352310181 +karman_re50,sr,349,139.6,velocity,upper_uy,0.18853223323822021 +karman_re50,sr,349,139.6,velocity,center_ux,1.0424858331680298 +karman_re50,sr,349,139.6,velocity,center_uy,0.2809857428073883 +karman_re50,sr,349,139.6,velocity,lower_ux,1.077003836631775 +karman_re50,sr,349,139.6,velocity,lower_uy,0.2703770697116852 +karman_re50,sr,350,140.0,velocity,upper_ux,0.8611798286437988 +karman_re50,sr,350,140.0,velocity,upper_uy,0.12746335566043854 +karman_re50,sr,350,140.0,velocity,center_ux,1.0297400951385498 +karman_re50,sr,350,140.0,velocity,center_uy,0.2450077086687088 +karman_re50,sr,350,140.0,velocity,lower_ux,1.0895848274230957 +karman_re50,sr,350,140.0,velocity,lower_uy,0.2840936481952667 +karman_re50,sr,351,140.4,velocity,upper_ux,0.8747406005859375 +karman_re50,sr,351,140.4,velocity,upper_uy,0.07123105227947235 +karman_re50,sr,351,140.4,velocity,center_ux,1.0022859573364258 +karman_re50,sr,351,140.4,velocity,center_uy,0.1741095930337906 +karman_re50,sr,351,140.4,velocity,lower_ux,1.0937023162841797 +karman_re50,sr,351,140.4,velocity,lower_uy,0.2672043740749359 +karman_re50,sr,352,140.8,velocity,upper_ux,0.9006710052490234 +karman_re50,sr,352,140.8,velocity,upper_uy,0.027316274121403694 +karman_re50,sr,352,140.8,velocity,center_ux,0.9657123684883118 +karman_re50,sr,352,140.8,velocity,center_uy,0.07388529926538467 +karman_re50,sr,352,140.8,velocity,lower_ux,1.0864057540893555 +karman_re50,sr,352,140.8,velocity,lower_uy,0.20950856804847717 +karman_re50,sr,353,141.2,velocity,upper_ux,0.9269686937332153 +karman_re50,sr,353,141.2,velocity,upper_uy,-0.01381480973213911 +karman_re50,sr,353,141.2,velocity,center_ux,0.9346863627433777 +karman_re50,sr,353,141.2,velocity,center_uy,-0.03337722271680832 +karman_re50,sr,353,141.2,velocity,lower_ux,1.0660786628723145 +karman_re50,sr,353,141.2,velocity,lower_uy,0.11601097881793976 +karman_re50,sr,354,141.6,velocity,upper_ux,0.946897566318512 +karman_re50,sr,354,141.6,velocity,upper_uy,-0.06022077426314354 +karman_re50,sr,354,141.6,velocity,center_ux,0.926085889339447 +karman_re50,sr,354,141.6,velocity,center_uy,-0.12032011151313782 +karman_re50,sr,354,141.6,velocity,lower_ux,1.0332905054092407 +karman_re50,sr,354,141.6,velocity,lower_uy,0.003677973523736 +karman_re50,sr,355,142.0,velocity,upper_ux,0.9645829200744629 +karman_re50,sr,355,142.0,velocity,upper_uy,-0.10503925383090973 +karman_re50,sr,355,142.0,velocity,center_ux,0.9416446685791016 +karman_re50,sr,355,142.0,velocity,center_uy,-0.1790054738521576 +karman_re50,sr,355,142.0,velocity,lower_ux,0.9923490285873413 +karman_re50,sr,355,142.0,velocity,lower_uy,-0.10656131058931351 +karman_re50,sr,356,142.4,velocity,upper_ux,0.9851928949356079 +karman_re50,sr,356,142.4,velocity,upper_uy,-0.141429603099823 +karman_re50,sr,356,142.4,velocity,center_ux,0.9687033891677856 +karman_re50,sr,356,142.4,velocity,center_uy,-0.22007551789283752 +karman_re50,sr,356,142.4,velocity,lower_ux,0.9513643383979797 +karman_re50,sr,356,142.4,velocity,lower_uy,-0.19472776353359222 +karman_re50,sr,357,142.8,velocity,upper_ux,1.0088200569152832 +karman_re50,sr,357,142.8,velocity,upper_uy,-0.17252889275550842 +karman_re50,sr,357,142.8,velocity,center_ux,0.9971030950546265 +karman_re50,sr,357,142.8,velocity,center_uy,-0.2512832581996918 +karman_re50,sr,357,142.8,velocity,lower_ux,0.9185702800750732 +karman_re50,sr,357,142.8,velocity,lower_uy,-0.24734243750572205 +karman_re50,sr,358,143.2,velocity,upper_ux,1.0329433679580688 +karman_re50,sr,358,143.2,velocity,upper_uy,-0.20368725061416626 +karman_re50,sr,358,143.2,velocity,center_ux,1.0218586921691895 +karman_re50,sr,358,143.2,velocity,center_uy,-0.2743320167064667 +karman_re50,sr,358,143.2,velocity,lower_ux,0.8957807421684265 +karman_re50,sr,358,143.2,velocity,lower_uy,-0.2621186077594757 +karman_re50,sr,359,143.6,velocity,upper_ux,1.055209994316101 +karman_re50,sr,359,143.6,velocity,upper_uy,-0.23605972528457642 +karman_re50,sr,359,143.6,velocity,center_ux,1.0385268926620483 +karman_re50,sr,359,143.6,velocity,center_uy,-0.2875734567642212 +karman_re50,sr,359,143.6,velocity,lower_ux,0.8786523938179016 +karman_re50,sr,359,143.6,velocity,lower_uy,-0.24376261234283447 +karman_re50,sr,360,144.0,velocity,upper_ux,1.074066162109375 +karman_re50,sr,360,144.0,velocity,upper_uy,-0.2659066319465637 +karman_re50,sr,360,144.0,velocity,center_ux,1.043153166770935 +karman_re50,sr,360,144.0,velocity,center_uy,-0.28421249985694885 +karman_re50,sr,360,144.0,velocity,lower_ux,0.8652510643005371 +karman_re50,sr,360,144.0,velocity,lower_uy,-0.19880814850330353 +karman_re50,sr,361,144.4,velocity,upper_ux,1.0878466367721558 +karman_re50,sr,361,144.4,velocity,upper_uy,-0.2834140956401825 +karman_re50,sr,361,144.4,velocity,center_ux,1.0332010984420776 +karman_re50,sr,361,144.4,velocity,center_uy,-0.2540726661682129 +karman_re50,sr,361,144.4,velocity,lower_ux,0.8605226874351501 +karman_re50,sr,361,144.4,velocity,lower_uy,-0.13867318630218506 +karman_re50,sr,362,144.8,velocity,upper_ux,1.0937494039535522 +karman_re50,sr,362,144.8,velocity,upper_uy,-0.2731451988220215 +karman_re50,sr,362,144.8,velocity,center_ux,1.008235216140747 +karman_re50,sr,362,144.8,velocity,center_uy,-0.18949665129184723 +karman_re50,sr,362,144.8,velocity,lower_ux,0.8711091876029968 +karman_re50,sr,362,144.8,velocity,lower_uy,-0.08046266436576843 +karman_re50,sr,363,145.2,velocity,upper_ux,1.0886850357055664 +karman_re50,sr,363,145.2,velocity,upper_uy,-0.22291894257068634 +karman_re50,sr,363,145.2,velocity,center_ux,0.9725083112716675 +karman_re50,sr,363,145.2,velocity,center_uy,-0.09334364533424377 +karman_re50,sr,363,145.2,velocity,lower_ux,0.8955905437469482 +karman_re50,sr,363,145.2,velocity,lower_uy,-0.034610722213983536 +karman_re50,sr,364,145.6,velocity,upper_ux,1.0707366466522217 +karman_re50,sr,364,145.6,velocity,upper_uy,-0.13484792411327362 +karman_re50,sr,364,145.6,velocity,center_ux,0.9390632510185242 +karman_re50,sr,364,145.6,velocity,center_uy,0.014899126254022121 +karman_re50,sr,364,145.6,velocity,lower_ux,0.9226596355438232 +karman_re50,sr,364,145.6,velocity,lower_uy,0.006051755975931883 +karman_re50,sr,365,146.0,velocity,upper_ux,1.0399800539016724 +karman_re50,sr,365,146.0,velocity,upper_uy,-0.024400120601058006 +karman_re50,sr,365,146.0,velocity,center_ux,0.9256665706634521 +karman_re50,sr,365,146.0,velocity,center_uy,0.10691322386264801 +karman_re50,sr,365,146.0,velocity,lower_ux,0.9436647295951843 +karman_re50,sr,365,146.0,velocity,lower_uy,0.05166862532496452 +karman_re50,sr,366,146.4,velocity,upper_ux,0.9999818205833435 +karman_re50,sr,366,146.4,velocity,upper_uy,0.0877833440899849 +karman_re50,sr,366,146.4,velocity,center_ux,0.9376262426376343 +karman_re50,sr,366,146.4,velocity,center_uy,0.17013993859291077 +karman_re50,sr,366,146.4,velocity,lower_ux,0.9612639546394348 +karman_re50,sr,366,146.4,velocity,lower_uy,0.0975487008690834 +karman_re50,sr,367,146.8,velocity,upper_ux,0.9583024382591248 +karman_re50,sr,367,146.8,velocity,upper_uy,0.18120788037776947 +karman_re50,sr,367,146.8,velocity,center_ux,0.9635977745056152 +karman_re50,sr,367,146.8,velocity,center_uy,0.2135450392961502 +karman_re50,sr,367,146.8,velocity,lower_ux,0.9812163710594177 +karman_re50,sr,367,146.8,velocity,lower_uy,0.13545836508274078 +karman_re50,sr,368,147.2,velocity,upper_ux,0.9236338138580322 +karman_re50,sr,368,147.2,velocity,upper_uy,0.24072149395942688 +karman_re50,sr,368,147.2,velocity,center_ux,0.9922051429748535 +karman_re50,sr,368,147.2,velocity,center_uy,0.2462967038154602 +karman_re50,sr,368,147.2,velocity,lower_ux,1.0044734477996826 +karman_re50,sr,368,147.2,velocity,lower_uy,0.16703680157661438 +karman_re50,sr,369,147.6,velocity,upper_ux,0.8992648124694824 +karman_re50,sr,369,147.6,velocity,upper_uy,0.2620423138141632 +karman_re50,sr,369,147.6,velocity,center_ux,1.017941951751709 +karman_re50,sr,369,147.6,velocity,center_uy,0.2707953155040741 +karman_re50,sr,369,147.6,velocity,lower_ux,1.0287052392959595 +karman_re50,sr,369,147.6,velocity,lower_uy,0.19794350862503052 +karman_re50,sr,370,148.0,velocity,upper_ux,0.8814297318458557 +karman_re50,sr,370,148.0,velocity,upper_uy,0.24919791519641876 +karman_re50,sr,370,148.0,velocity,center_ux,1.0363811254501343 +karman_re50,sr,370,148.0,velocity,center_uy,0.2861226797103882 +karman_re50,sr,370,148.0,velocity,lower_ux,1.0514262914657593 +karman_re50,sr,370,148.0,velocity,lower_uy,0.23021584749221802 +karman_re50,sr,371,148.4,velocity,upper_ux,0.8671796321868896 +karman_re50,sr,371,148.4,velocity,upper_uy,0.20837850868701935 +karman_re50,sr,371,148.4,velocity,center_ux,1.0434015989303589 +karman_re50,sr,371,148.4,velocity,center_uy,0.2864409387111664 +karman_re50,sr,371,148.4,velocity,lower_ux,1.070986270904541 +karman_re50,sr,371,148.4,velocity,lower_uy,0.26103293895721436 +karman_re50,sr,372,148.8,velocity,upper_ux,0.8603482842445374 +karman_re50,sr,372,148.8,velocity,upper_uy,0.1497839391231537 +karman_re50,sr,372,148.8,velocity,center_ux,1.0361779928207397 +karman_re50,sr,372,148.8,velocity,center_uy,0.26183873414993286 +karman_re50,sr,372,148.8,velocity,lower_ux,1.085853099822998 +karman_re50,sr,372,148.8,velocity,lower_uy,0.2817980647087097 +karman_re50,sr,373,149.2,velocity,upper_ux,0.8679736852645874 +karman_re50,sr,373,149.2,velocity,upper_uy,0.09004470705986023 +karman_re50,sr,373,149.2,velocity,center_ux,1.013782024383545 +karman_re50,sr,373,149.2,velocity,center_uy,0.2036677896976471 +karman_re50,sr,373,149.2,velocity,lower_ux,1.093421220779419 +karman_re50,sr,373,149.2,velocity,lower_uy,0.2777212858200073 +karman_re50,sr,374,149.6,velocity,upper_ux,0.8906300067901611 +karman_re50,sr,374,149.6,velocity,upper_uy,0.04204700142145157 +karman_re50,sr,374,149.6,velocity,center_ux,0.9793037176132202 +karman_re50,sr,374,149.6,velocity,center_uy,0.11228708177804947 +karman_re50,sr,374,149.6,velocity,lower_ux,1.0905154943466187 +karman_re50,sr,374,149.6,velocity,lower_uy,0.23504841327667236 +karman_re50,sr,375,150.0,velocity,upper_ux,0.9181668162345886 +karman_re50,sr,375,150.0,velocity,upper_uy,0.0015104881022125483 +karman_re50,sr,375,150.0,velocity,center_ux,0.9440668225288391 +karman_re50,sr,375,150.0,velocity,center_uy,0.004153051879256964 +karman_re50,sr,375,150.0,velocity,lower_ux,1.0749434232711792 +karman_re50,sr,375,150.0,velocity,lower_uy,0.1529586762189865 +karman_re50,sr,376,150.4,velocity,upper_ux,0.9403461217880249 +karman_re50,sr,376,150.4,velocity,upper_uy,-0.043099094182252884 +karman_re50,sr,376,150.4,velocity,center_ux,0.9260570406913757 +karman_re50,sr,376,150.4,velocity,center_uy,-0.09243856370449066 +karman_re50,sr,376,150.4,velocity,lower_ux,1.0463415384292603 +karman_re50,sr,376,150.4,velocity,lower_uy,0.0450977124273777 +karman_re50,sr,377,150.8,velocity,upper_ux,0.9580475687980652 +karman_re50,sr,377,150.8,velocity,upper_uy,-0.08971922099590302 +karman_re50,sr,377,150.8,velocity,center_ux,0.9339795708656311 +karman_re50,sr,377,150.8,velocity,center_uy,-0.16054777801036835 +karman_re50,sr,377,150.8,velocity,lower_ux,1.0075565576553345 +karman_re50,sr,377,150.8,velocity,lower_uy,-0.06832978129386902 +karman_re50,sr,378,151.2,velocity,upper_ux,0.9773446917533875 +karman_re50,sr,378,151.2,velocity,upper_uy,-0.12923449277877808 +karman_re50,sr,378,151.2,velocity,center_ux,0.9584745764732361 +karman_re50,sr,378,151.2,velocity,center_uy,-0.2065965235233307 +karman_re50,sr,378,151.2,velocity,lower_ux,0.9655097126960754 +karman_re50,sr,378,151.2,velocity,lower_uy,-0.16649915277957916 +karman_re50,sr,379,151.6,velocity,upper_ux,1.0001353025436401 +karman_re50,sr,379,151.6,velocity,upper_uy,-0.16150684654712677 +karman_re50,sr,379,151.6,velocity,center_ux,0.9871242642402649 +karman_re50,sr,379,151.6,velocity,center_uy,-0.2409648448228836 +karman_re50,sr,379,151.6,velocity,lower_ux,0.9291028380393982 +karman_re50,sr,379,151.6,velocity,lower_uy,-0.2327970713376999 +karman_re50,sr,380,152.0,velocity,upper_ux,1.024387001991272 +karman_re50,sr,380,152.0,velocity,upper_uy,-0.19224141538143158 +karman_re50,sr,380,152.0,velocity,center_ux,1.0136908292770386 +karman_re50,sr,380,152.0,velocity,center_uy,-0.2669207453727722 +karman_re50,sr,380,152.0,velocity,lower_ux,0.9030249714851379 +karman_re50,sr,380,152.0,velocity,lower_uy,-0.2608570456504822 +karman_re50,sr,381,152.4,velocity,upper_ux,1.0475119352340698 +karman_re50,sr,381,152.4,velocity,upper_uy,-0.2243392914533615 +karman_re50,sr,381,152.4,velocity,center_ux,1.033760666847229 +karman_re50,sr,381,152.4,velocity,center_uy,-0.2841808795928955 +karman_re50,sr,381,152.4,velocity,lower_ux,0.8843796253204346 +karman_re50,sr,381,152.4,velocity,lower_uy,-0.253770112991333 +karman_re50,sr,382,152.8,velocity,upper_ux,1.067731499671936 +karman_re50,sr,382,152.8,velocity,upper_uy,-0.2558650076389313 +karman_re50,sr,382,152.8,velocity,center_ux,1.0430806875228882 +karman_re50,sr,382,152.8,velocity,center_uy,-0.28789222240448 +karman_re50,sr,382,152.8,velocity,lower_ux,0.8694095015525818 +karman_re50,sr,382,152.8,velocity,lower_uy,-0.2174578160047531 +karman_re50,sr,383,153.2,velocity,upper_ux,1.083604097366333 +karman_re50,sr,383,153.2,velocity,upper_uy,-0.27940312027931213 +karman_re50,sr,383,153.2,velocity,center_ux,1.0385662317276 +karman_re50,sr,383,153.2,velocity,center_uy,-0.2685886025428772 +karman_re50,sr,383,153.2,velocity,lower_ux,0.8607038855552673 +karman_re50,sr,383,153.2,velocity,lower_uy,-0.161008819937706 +karman_re50,sr,384,153.6,velocity,upper_ux,1.0927408933639526 +karman_re50,sr,384,153.6,velocity,upper_uy,-0.28103750944137573 +karman_re50,sr,384,153.6,velocity,center_ux,1.0188627243041992 +karman_re50,sr,384,153.6,velocity,center_uy,-0.21685929596424103 +karman_re50,sr,384,153.6,velocity,lower_ux,0.8653602004051208 +karman_re50,sr,384,153.6,velocity,lower_uy,-0.100194051861763 +karman_re50,sr,385,154.0,velocity,upper_ux,1.091944694519043 +karman_re50,sr,385,154.0,velocity,upper_uy,-0.24589329957962036 +karman_re50,sr,385,154.0,velocity,center_ux,0.9860373735427856 +karman_re50,sr,385,154.0,velocity,center_uy,-0.13080771267414093 +karman_re50,sr,385,154.0,velocity,lower_ux,0.8857887983322144 +karman_re50,sr,385,154.0,velocity,lower_uy,-0.049840882420539856 +karman_re50,sr,386,154.4,velocity,upper_ux,1.0787553787231445 +karman_re50,sr,386,154.4,velocity,upper_uy,-0.1702442765235901 +karman_re50,sr,386,154.4,velocity,center_ux,0.949666440486908 +karman_re50,sr,386,154.4,velocity,center_uy,-0.023731127381324768 +karman_re50,sr,386,154.4,velocity,lower_ux,0.9134093523025513 +karman_re50,sr,386,154.4,velocity,lower_uy,-0.008936714380979538 +karman_re50,sr,387,154.8,velocity,upper_ux,1.0524107217788696 +karman_re50,sr,387,154.8,velocity,upper_uy,-0.06562978774309158 +karman_re50,sr,387,154.8,velocity,center_ux,0.9273545145988464 +karman_re50,sr,387,154.8,velocity,center_uy,0.07691571116447449 +karman_re50,sr,387,154.8,velocity,lower_ux,0.9368228316307068 +karman_re50,sr,387,154.8,velocity,lower_uy,0.03458709642291069 +karman_re50,sr,388,155.2,velocity,upper_ux,1.015069842338562 +karman_re50,sr,388,155.2,velocity,upper_uy,0.04837356507778168 +karman_re50,sr,388,155.2,velocity,center_ux,0.9308608770370483 +karman_re50,sr,388,155.2,velocity,center_uy,0.15025892853736877 +karman_re50,sr,388,155.2,velocity,lower_ux,0.954862117767334 +karman_re50,sr,388,155.2,velocity,lower_uy,0.08161154389381409 +karman_re50,sr,389,155.6,velocity,upper_ux,0.9729589223861694 +karman_re50,sr,389,155.6,velocity,upper_uy,0.1507432907819748 +karman_re50,sr,389,155.6,velocity,center_ux,0.9534481763839722 +karman_re50,sr,389,155.6,velocity,center_uy,0.1993468999862671 +karman_re50,sr,389,155.6,velocity,lower_ux,0.973569929599762 +karman_re50,sr,389,155.6,velocity,lower_uy,0.12275740504264832 +karman_re50,sr,390,156.0,velocity,upper_ux,0.9349678754806519 +karman_re50,sr,390,156.0,velocity,upper_uy,0.2236347645521164 +karman_re50,sr,390,156.0,velocity,center_ux,0.9819660186767578 +karman_re50,sr,390,156.0,velocity,center_uy,0.2354317605495453 +karman_re50,sr,390,156.0,velocity,lower_ux,0.9958274364471436 +karman_re50,sr,390,156.0,velocity,lower_uy,0.1559431254863739 +karman_re50,sr,391,156.4,velocity,upper_ux,0.9070497155189514 +karman_re50,sr,391,156.4,velocity,upper_uy,0.2585638463497162 +karman_re50,sr,391,156.4,velocity,center_ux,1.009242057800293 +karman_re50,sr,391,156.4,velocity,center_uy,0.26284897327423096 +karman_re50,sr,391,156.4,velocity,lower_ux,1.020027756690979 +karman_re50,sr,391,156.4,velocity,lower_uy,0.18660102784633636 +karman_re50,sr,392,156.8,velocity,upper_ux,0.8874300122261047 +karman_re50,sr,392,156.8,velocity,upper_uy,0.2574138343334198 +karman_re50,sr,392,156.8,velocity,center_ux,1.030822515487671 +karman_re50,sr,392,156.8,velocity,center_uy,0.2818736433982849 +karman_re50,sr,392,156.8,velocity,lower_ux,1.0435090065002441 +karman_re50,sr,392,156.8,velocity,lower_uy,0.21845510601997375 +karman_re50,sr,393,157.2,velocity,upper_ux,0.8718068599700928 +karman_re50,sr,393,157.2,velocity,upper_uy,0.22586767375469208 +karman_re50,sr,393,157.2,velocity,center_ux,1.0423611402511597 +karman_re50,sr,393,157.2,velocity,center_uy,0.28863200545310974 +karman_re50,sr,393,157.2,velocity,lower_ux,1.0643467903137207 +karman_re50,sr,393,157.2,velocity,lower_uy,0.25044602155685425 +karman_re50,sr,394,157.6,velocity,upper_ux,0.8614760637283325 +karman_re50,sr,394,157.6,velocity,upper_uy,0.17206087708473206 +karman_re50,sr,394,157.6,velocity,center_ux,1.0405198335647583 +karman_re50,sr,394,157.6,velocity,center_uy,0.27425074577331543 +karman_re50,sr,394,157.6,velocity,lower_ux,1.0811431407928467 +karman_re50,sr,394,157.6,velocity,lower_uy,0.27627405524253845 +karman_re50,sr,395,158.0,velocity,upper_ux,0.8632739186286926 +karman_re50,sr,395,158.0,velocity,upper_uy,0.11068063974380493 +karman_re50,sr,395,158.0,velocity,center_ux,1.0235586166381836 +karman_re50,sr,395,158.0,velocity,center_uy,0.22882482409477234 +karman_re50,sr,395,158.0,velocity,lower_ux,1.0917342901229858 +karman_re50,sr,395,158.0,velocity,lower_uy,0.28308725357055664 +karman_re50,sr,396,158.4,velocity,upper_ux,0.8811972737312317 +karman_re50,sr,396,158.4,velocity,upper_uy,0.05791808292269707 +karman_re50,sr,396,158.4,velocity,center_ux,0.9926788210868835 +karman_re50,sr,396,158.4,velocity,center_uy,0.14848247170448303 +karman_re50,sr,396,158.4,velocity,lower_ux,1.0929549932479858 +karman_re50,sr,396,158.4,velocity,lower_uy,0.2553294897079468 +karman_re50,sr,397,158.8,velocity,upper_ux,0.90850430727005 +karman_re50,sr,397,158.8,velocity,upper_uy,0.016180140897631645 +karman_re50,sr,397,158.8,velocity,center_ux,0.9557806253433228 +karman_re50,sr,397,158.8,velocity,center_uy,0.043418146669864655 +karman_re50,sr,397,158.8,velocity,lower_ux,1.0821088552474976 +karman_re50,sr,397,158.8,velocity,lower_uy,0.1865297108888626 +karman_re50,sr,398,159.2,velocity,upper_ux,0.9331327676773071 +karman_re50,sr,398,159.2,velocity,upper_uy,-0.026272015646100044 +karman_re50,sr,398,159.2,velocity,center_ux,0.9296008348464966 +karman_re50,sr,398,159.2,velocity,center_uy,-0.06049684062600136 +karman_re50,sr,398,159.2,velocity,lower_ux,1.0580687522888184 +karman_re50,sr,398,159.2,velocity,lower_uy,0.08582444489002228 +karman_re50,sr,399,159.6,velocity,upper_ux,0.951739490032196 +karman_re50,sr,399,159.6,velocity,upper_uy,-0.07331691682338715 +karman_re50,sr,399,159.6,velocity,center_ux,0.9284279346466064 +karman_re50,sr,399,159.6,velocity,center_uy,-0.13917894661426544 +karman_re50,sr,399,159.6,velocity,lower_ux,1.022362470626831 +karman_re50,sr,399,159.6,velocity,lower_uy,-0.02804196998476982 +karman_re50,sr,0,0.0,force,front_fx,0.0004848707758355886 +karman_re50,sr,0,0.0,force,front_fy,-0.0007217866368591785 +karman_re50,sr,0,0.0,force,upper_fx,-0.0023788136895745993 +karman_re50,sr,0,0.0,force,upper_fy,0.0025164219550788403 +karman_re50,sr,0,0.0,force,lower_fx,0.001971409423276782 +karman_re50,sr,0,0.0,force,lower_fy,-0.003573086578398943 +karman_re50,sr,1,0.4,force,front_fx,0.0006915788981132209 +karman_re50,sr,1,0.4,force,front_fy,-0.0015374699141830206 +karman_re50,sr,1,0.4,force,upper_fx,-0.0021267395932227373 +karman_re50,sr,1,0.4,force,upper_fy,0.0027440411504358053 +karman_re50,sr,1,0.4,force,lower_fx,0.0011597276898100972 +karman_re50,sr,1,0.4,force,lower_fy,-0.0038373819552361965 +karman_re50,sr,2,0.8,force,front_fx,0.0005649439408443868 +karman_re50,sr,2,0.8,force,front_fy,-0.0017540749395266175 +karman_re50,sr,2,0.8,force,upper_fx,-0.0017395839095115662 +karman_re50,sr,2,0.8,force,upper_fy,0.0033599447924643755 +karman_re50,sr,2,0.8,force,lower_fx,0.0006580029148608446 +karman_re50,sr,2,0.8,force,lower_fy,-0.0037202853709459305 +karman_re50,sr,3,1.2,force,front_fx,0.00031263180426321924 +karman_re50,sr,3,1.2,force,front_fy,-0.0021424838341772556 +karman_re50,sr,3,1.2,force,upper_fx,-0.0006292805192060769 +karman_re50,sr,3,1.2,force,upper_fy,0.004033940844237804 +karman_re50,sr,3,1.2,force,lower_fx,-0.00012232566950842738 +karman_re50,sr,3,1.2,force,lower_fy,-0.0034653404727578163 +karman_re50,sr,4,1.6,force,front_fx,0.00016251843771897256 +karman_re50,sr,4,1.6,force,front_fy,-0.002446537371724844 +karman_re50,sr,4,1.6,force,upper_fx,0.0007147158612497151 +karman_re50,sr,4,1.6,force,upper_fy,0.004283574875444174 +karman_re50,sr,4,1.6,force,lower_fx,-0.0010912714060395956 +karman_re50,sr,4,1.6,force,lower_fy,-0.0033088638447225094 +karman_re50,sr,5,2.0,force,front_fx,0.0003604751836974174 +karman_re50,sr,5,2.0,force,front_fy,-0.0028330215718597174 +karman_re50,sr,5,2.0,force,upper_fx,0.0018389183096587658 +karman_re50,sr,5,2.0,force,upper_fy,0.004401225131005049 +karman_re50,sr,5,2.0,force,lower_fx,-0.00224778288975358 +karman_re50,sr,5,2.0,force,lower_fy,-0.003188615432009101 +karman_re50,sr,6,2.4,force,front_fx,0.0009917023126035929 +karman_re50,sr,6,2.4,force,front_fy,-0.0032938020303845406 +karman_re50,sr,6,2.4,force,upper_fx,0.0026970673352479935 +karman_re50,sr,6,2.4,force,upper_fy,0.004536184016615152 +karman_re50,sr,6,2.4,force,lower_fx,-0.0035255008842796087 +karman_re50,sr,6,2.4,force,lower_fy,-0.003052883083000779 +karman_re50,sr,7,2.8,force,front_fx,0.0018848608015105128 +karman_re50,sr,7,2.8,force,front_fy,-0.0035916147753596306 +karman_re50,sr,7,2.8,force,upper_fx,0.003218134632334113 +karman_re50,sr,7,2.8,force,upper_fy,0.004549957811832428 +karman_re50,sr,7,2.8,force,lower_fx,-0.004730358254164457 +karman_re50,sr,7,2.8,force,lower_fy,-0.002933704759925604 +karman_re50,sr,8,3.2,force,front_fx,0.002762638730928302 +karman_re50,sr,8,3.2,force,front_fy,-0.0035820312332361937 +karman_re50,sr,8,3.2,force,upper_fx,0.003379828529432416 +karman_re50,sr,8,3.2,force,upper_fy,0.004365073516964912 +karman_re50,sr,8,3.2,force,lower_fx,-0.0056011914275586605 +karman_re50,sr,8,3.2,force,lower_fy,-0.0028847649227827787 +karman_re50,sr,9,3.6,force,front_fx,0.0033045881427824497 +karman_re50,sr,9,3.6,force,front_fy,-0.003177619306370616 +karman_re50,sr,9,3.6,force,upper_fx,0.0032558434177190065 +karman_re50,sr,9,3.6,force,upper_fy,0.004054582677781582 +karman_re50,sr,9,3.6,force,lower_fx,-0.005872802343219519 +karman_re50,sr,9,3.6,force,lower_fy,-0.0028547164984047413 +karman_re50,sr,10,4.0,force,front_fx,0.003283361904323101 +karman_re50,sr,10,4.0,force,front_fy,-0.002393249189481139 +karman_re50,sr,10,4.0,force,upper_fx,0.002906652633100748 +karman_re50,sr,10,4.0,force,upper_fy,0.003719678847119212 +karman_re50,sr,10,4.0,force,lower_fx,-0.005504318047314882 +karman_re50,sr,10,4.0,force,lower_fy,-0.002846213523298502 +karman_re50,sr,11,4.4,force,front_fx,0.0027421710547059774 +karman_re50,sr,11,4.4,force,front_fy,-0.0013470340054482222 +karman_re50,sr,11,4.4,force,upper_fx,0.0023758031893521547 +karman_re50,sr,11,4.4,force,upper_fy,0.0034795620013028383 +karman_re50,sr,11,4.4,force,lower_fx,-0.004658157005906105 +karman_re50,sr,11,4.4,force,lower_fy,-0.002941592363640666 +karman_re50,sr,12,4.8,force,front_fx,0.0018996725557371974 +karman_re50,sr,12,4.8,force,front_fy,-0.0002710053522605449 +karman_re50,sr,12,4.8,force,upper_fx,0.0017323181964457035 +karman_re50,sr,12,4.8,force,upper_fy,0.0033590474631637335 +karman_re50,sr,12,4.8,force,lower_fx,-0.0035164018627256155 +karman_re50,sr,12,4.8,force,lower_fy,-0.0032218059059232473 +karman_re50,sr,13,5.2,force,front_fx,0.0010593191254884005 +karman_re50,sr,13,5.2,force,front_fy,0.0006633868906646967 +karman_re50,sr,13,5.2,force,upper_fx,0.0010234613437205553 +karman_re50,sr,13,5.2,force,upper_fy,0.0032982034608721733 +karman_re50,sr,13,5.2,force,lower_fx,-0.0022151204757392406 +karman_re50,sr,13,5.2,force,lower_fy,-0.0036084256134927273 +karman_re50,sr,14,5.6,force,front_fx,0.0004484451492317021 +karman_re50,sr,14,5.6,force,front_fy,0.0014112686039879918 +karman_re50,sr,14,5.6,force,upper_fx,0.00023452988534700125 +karman_re50,sr,14,5.6,force,upper_fy,0.003228812012821436 +karman_re50,sr,14,5.6,force,lower_fx,-0.0008767882827669382 +karman_re50,sr,14,5.6,force,lower_fy,-0.003955189138650894 +karman_re50,sr,15,6.0,force,front_fx,0.00019006524235010147 +karman_re50,sr,15,6.0,force,front_fy,0.002020052634179592 +karman_re50,sr,15,6.0,force,upper_fx,-0.0006688091671094298 +karman_re50,sr,15,6.0,force,upper_fy,0.0031333137303590775 +karman_re50,sr,15,6.0,force,lower_fx,0.0003725596470758319 +karman_re50,sr,15,6.0,force,lower_fy,-0.004220988601446152 +karman_re50,sr,16,6.4,force,front_fx,0.0003268023137934506 +karman_re50,sr,16,6.4,force,front_fy,0.002577344188466668 +karman_re50,sr,16,6.4,force,upper_fx,-0.0017090736655518413 +karman_re50,sr,16,6.4,force,upper_fy,0.0030578244477510452 +karman_re50,sr,16,6.4,force,lower_fx,0.0014322074130177498 +karman_re50,sr,16,6.4,force,lower_fy,-0.004418731667101383 +karman_re50,sr,17,6.8,force,front_fx,0.0008315113373100758 +karman_re50,sr,17,6.8,force,front_fy,0.0030665071681141853 +karman_re50,sr,17,6.8,force,upper_fx,-0.0028198659420013428 +karman_re50,sr,17,6.8,force,upper_fy,0.0030261140782386065 +karman_re50,sr,17,6.8,force,lower_fx,0.0022292095236480236 +karman_re50,sr,17,6.8,force,lower_fy,-0.004556683357805014 +karman_re50,sr,18,7.2,force,front_fx,0.0015644073719158769 +karman_re50,sr,18,7.2,force,front_fy,0.0034204500261694193 +karman_re50,sr,18,7.2,force,upper_fx,-0.0038612664211541414 +karman_re50,sr,18,7.2,force,upper_fy,0.003057557623833418 +karman_re50,sr,18,7.2,force,lower_fx,0.002723577432334423 +karman_re50,sr,18,7.2,force,lower_fy,-0.0045631034299731255 +karman_re50,sr,19,7.6,force,front_fx,0.002278320724144578 +karman_re50,sr,19,7.6,force,front_fy,0.0034913993440568447 +karman_re50,sr,19,7.6,force,upper_fx,-0.00458779139444232 +karman_re50,sr,19,7.6,force,upper_fy,0.0031054974533617496 +karman_re50,sr,19,7.6,force,lower_fx,0.002923266962170601 +karman_re50,sr,19,7.6,force,lower_fy,-0.004413525573909283 +karman_re50,sr,20,8.0,force,front_fx,0.002713120775297284 +karman_re50,sr,20,8.0,force,front_fy,0.0031595886684954166 +karman_re50,sr,20,8.0,force,upper_fx,-0.004809268284589052 +karman_re50,sr,20,8.0,force,upper_fy,0.0031144649256020784 +karman_re50,sr,20,8.0,force,lower_fx,0.0028623330872505903 +karman_re50,sr,20,8.0,force,lower_fy,-0.004123259335756302 +karman_re50,sr,21,8.4,force,front_fx,0.002709995023906231 +karman_re50,sr,21,8.4,force,front_fy,0.0024111666716635227 +karman_re50,sr,21,8.4,force,upper_fx,-0.004504930227994919 +karman_re50,sr,21,8.4,force,upper_fy,0.003103528870269656 +karman_re50,sr,21,8.4,force,lower_fx,0.0025641382671892643 +karman_re50,sr,21,8.4,force,lower_fy,-0.0037828506901860237 +karman_re50,sr,22,8.8,force,front_fx,0.002281779423356056 +karman_re50,sr,22,8.8,force,front_fy,0.0013906820677220821 +karman_re50,sr,22,8.8,force,upper_fx,-0.0037871086969971657 +karman_re50,sr,22,8.8,force,upper_fy,0.003183291759341955 +karman_re50,sr,22,8.8,force,lower_fx,0.002072480507194996 +karman_re50,sr,22,8.8,force,lower_fy,-0.0034915844444185495 +karman_re50,sr,23,9.2,force,front_fx,0.0015867053298279643 +karman_re50,sr,23,9.2,force,front_fy,0.00031709621543996036 +karman_re50,sr,23,9.2,force,upper_fx,-0.0027866088785231113 +karman_re50,sr,23,9.2,force,upper_fy,0.0034103873185813427 +karman_re50,sr,23,9.2,force,lower_fx,0.0014590343926101923 +karman_re50,sr,23,9.2,force,lower_fy,-0.0033064966555684805 +karman_re50,sr,24,9.6,force,front_fx,0.0008852508035488427 +karman_re50,sr,24,9.6,force,front_fy,-0.0006382327410392463 +karman_re50,sr,24,9.6,force,upper_fx,-0.0016324425814673305 +karman_re50,sr,24,9.6,force,upper_fy,0.0037102848291397095 +karman_re50,sr,24,9.6,force,lower_fx,0.0007627673330716789 +karman_re50,sr,24,9.6,force,lower_fy,-0.003191727912053466 +karman_re50,sr,25,10.0,force,front_fx,0.00040493012056685984 +karman_re50,sr,25,10.0,force,front_fy,-0.0014254988636821508 +karman_re50,sr,25,10.0,force,upper_fx,-0.00045558487181551754 +karman_re50,sr,25,10.0,force,upper_fy,0.003979083616286516 +karman_re50,sr,25,10.0,force,lower_fx,-2.8385395125951618e-05 +karman_re50,sr,25,10.0,force,lower_fy,-0.003090272657573223 +karman_re50,sr,26,10.4,force,front_fx,0.0002736505994107574 +karman_re50,sr,26,10.4,force,front_fy,-0.0020905795972794294 +karman_re50,sr,26,10.4,force,upper_fx,0.0006376325618475676 +karman_re50,sr,26,10.4,force,upper_fy,0.004186341073364019 +karman_re50,sr,26,10.4,force,lower_fx,-0.0009459614520892501 +karman_re50,sr,26,10.4,force,lower_fy,-0.002996095223352313 +karman_re50,sr,27,10.8,force,front_fx,0.0005119092529639602 +karman_re50,sr,27,10.8,force,front_fy,-0.002683907514438033 +karman_re50,sr,27,10.8,force,upper_fx,0.0015601899940520525 +karman_re50,sr,27,10.8,force,upper_fy,0.004357286263257265 +karman_re50,sr,27,10.8,force,lower_fx,-0.0019770674407482147 +karman_re50,sr,27,10.8,force,lower_fy,-0.002945322310552001 +karman_re50,sr,28,11.2,force,front_fx,0.0010598149383440614 +karman_re50,sr,28,11.2,force,front_fy,-0.0032167616300284863 +karman_re50,sr,28,11.2,force,upper_fx,0.0022631241008639336 +karman_re50,sr,28,11.2,force,upper_fy,0.004471773747354746 +karman_re50,sr,28,11.2,force,lower_fx,-0.0030500548891723156 +karman_re50,sr,28,11.2,force,lower_fy,-0.002970537170767784 +karman_re50,sr,29,11.6,force,front_fx,0.0017694121925160289 +karman_re50,sr,29,11.6,force,front_fy,-0.0036038951948285103 +karman_re50,sr,29,11.6,force,upper_fx,0.002716735005378723 +karman_re50,sr,29,11.6,force,upper_fy,0.004487926140427589 +karman_re50,sr,29,11.6,force,lower_fx,-0.004010350443422794 +karman_re50,sr,29,11.6,force,lower_fy,-0.0030396031215786934 +karman_re50,sr,30,12.0,force,front_fx,0.0024186584632843733 +karman_re50,sr,30,12.0,force,front_fy,-0.003707821946591139 +karman_re50,sr,30,12.0,force,upper_fx,0.002923630177974701 +karman_re50,sr,30,12.0,force,upper_fy,0.0043573928996920586 +karman_re50,sr,30,12.0,force,lower_fx,-0.00466349720954895 +karman_re50,sr,30,12.0,force,lower_fy,-0.0030891934875398874 +karman_re50,sr,31,12.4,force,front_fx,0.0028009512461721897 +karman_re50,sr,31,12.4,force,front_fy,-0.0034045223146677017 +karman_re50,sr,31,12.4,force,upper_fx,0.0028875377029180527 +karman_re50,sr,31,12.4,force,upper_fy,0.00409075478091836 +karman_re50,sr,31,12.4,force,lower_fx,-0.00487470394000411 +karman_re50,sr,31,12.4,force,lower_fy,-0.0030716329347342253 +karman_re50,sr,32,12.8,force,front_fx,0.00279920338653028 +karman_re50,sr,32,12.8,force,front_fy,-0.002660637255758047 +karman_re50,sr,32,12.8,force,upper_fx,0.002615254605188966 +karman_re50,sr,32,12.8,force,upper_fy,0.003754980629310012 +karman_re50,sr,32,12.8,force,lower_fx,-0.004619809798896313 +karman_re50,sr,32,12.8,force,lower_fy,-0.003042454831302166 +karman_re50,sr,33,13.2,force,front_fx,0.002399756573140621 +karman_re50,sr,33,13.2,force,front_fy,-0.0016400858294218779 +karman_re50,sr,33,13.2,force,upper_fx,0.0021496114786714315 +karman_re50,sr,33,13.2,force,upper_fy,0.0034534824080765247 +karman_re50,sr,33,13.2,force,lower_fx,-0.003969406709074974 +karman_re50,sr,33,13.2,force,lower_fy,-0.003118071472272277 +karman_re50,sr,34,13.6,force,front_fx,0.00172426865901798 +karman_re50,sr,34,13.6,force,front_fy,-0.0005394452600739896 +karman_re50,sr,34,13.6,force,upper_fx,0.0015629552071914077 +karman_re50,sr,34,13.6,force,upper_fy,0.003260276047512889 +karman_re50,sr,34,13.6,force,lower_fx,-0.0030108708888292313 +karman_re50,sr,34,13.6,force,lower_fy,-0.0033389318268746138 +karman_re50,sr,35,14.0,force,front_fx,0.0009960628813132644 +karman_re50,sr,35,14.0,force,front_fy,0.0004421584599185735 +karman_re50,sr,35,14.0,force,upper_fx,0.0008913099300116301 +karman_re50,sr,35,14.0,force,upper_fy,0.0031503255013376474 +karman_re50,sr,35,14.0,force,lower_fx,-0.0018808790482580662 +karman_re50,sr,35,14.0,force,lower_fy,-0.0036330202128738165 +karman_re50,sr,36,14.4,force,front_fx,0.0004644929722417146 +karman_re50,sr,36,14.4,force,front_fy,0.0012719978112727404 +karman_re50,sr,36,14.4,force,upper_fx,0.00014017202192917466 +karman_re50,sr,36,14.4,force,upper_fy,0.003063719253987074 +karman_re50,sr,36,14.4,force,lower_fx,-0.000706867256667465 +karman_re50,sr,36,14.4,force,lower_fy,-0.003903493518009782 +karman_re50,sr,37,14.8,force,front_fx,0.0002659146557562053 +karman_re50,sr,37,14.8,force,front_fy,0.001960577443242073 +karman_re50,sr,37,14.8,force,upper_fx,-0.0007368713850155473 +karman_re50,sr,37,14.8,force,upper_fy,0.0029812476132065058 +karman_re50,sr,37,14.8,force,lower_fx,0.0003960320318583399 +karman_re50,sr,37,14.8,force,lower_fy,-0.004119084682315588 +karman_re50,sr,38,15.2,force,front_fx,0.0004309802025090903 +karman_re50,sr,38,15.2,force,front_fy,0.002570715034380555 +karman_re50,sr,38,15.2,force,upper_fx,-0.0017299242317676544 +karman_re50,sr,38,15.2,force,upper_fy,0.0029386235401034355 +karman_re50,sr,38,15.2,force,lower_fx,0.0013472817372530699 +karman_re50,sr,38,15.2,force,lower_fy,-0.00429941713809967 +karman_re50,sr,39,15.6,force,front_fx,0.0009127702796831727 +karman_re50,sr,39,15.6,force,front_fy,0.0031129673589020967 +karman_re50,sr,39,15.6,force,upper_fx,-0.0027785361744463444 +karman_re50,sr,39,15.6,force,upper_fy,0.0029620144050568342 +karman_re50,sr,39,15.6,force,lower_fx,0.00209138635545969 +karman_re50,sr,39,15.6,force,lower_fy,-0.004433663096278906 +karman_re50,sr,40,16.0,force,front_fx,0.0015818935353308916 +karman_re50,sr,40,16.0,force,front_fy,0.003529803128913045 +karman_re50,sr,40,16.0,force,upper_fx,-0.0037524413783103228 +karman_re50,sr,40,16.0,force,upper_fy,0.0030343912076205015 +karman_re50,sr,40,16.0,force,lower_fx,0.002590470016002655 +karman_re50,sr,40,16.0,force,lower_fy,-0.004473437555134296 +karman_re50,sr,41,16.4,force,front_fx,0.0022376757115125656 +karman_re50,sr,41,16.4,force,front_fy,0.0036910497583448887 +karman_re50,sr,41,16.4,force,upper_fx,-0.004465505480766296 +karman_re50,sr,41,16.4,force,upper_fy,0.0030892903450876474 +karman_re50,sr,41,16.4,force,lower_fx,0.002845549490302801 +karman_re50,sr,41,16.4,force,lower_fy,-0.004373795352876186 +karman_re50,sr,42,16.8,force,front_fx,0.0026695847045630217 +karman_re50,sr,42,16.8,force,front_fy,0.0034509017132222652 +karman_re50,sr,42,16.8,force,upper_fx,-0.004762010183185339 +karman_re50,sr,42,16.8,force,upper_fy,0.00308376457542181 +karman_re50,sr,42,16.8,force,lower_fx,0.002857054118067026 +karman_re50,sr,42,16.8,force,lower_fy,-0.004129102453589439 +karman_re50,sr,43,17.2,force,front_fx,0.0027481105644255877 +karman_re50,sr,43,17.2,force,front_fy,0.002793353982269764 +karman_re50,sr,43,17.2,force,upper_fx,-0.004597808234393597 +karman_re50,sr,43,17.2,force,upper_fy,0.003052293322980404 +karman_re50,sr,43,17.2,force,lower_fx,0.002633822849020362 +karman_re50,sr,43,17.2,force,lower_fy,-0.0038004638627171516 +karman_re50,sr,44,17.6,force,front_fx,0.002427292987704277 +karman_re50,sr,44,17.6,force,front_fy,0.0018015004461631179 +karman_re50,sr,44,17.6,force,upper_fx,-0.004019306041300297 +karman_re50,sr,44,17.6,force,upper_fy,0.0031058373861014843 +karman_re50,sr,44,17.6,force,lower_fx,0.002204249380156398 +karman_re50,sr,44,17.6,force,lower_fy,-0.0034871927928179502 +karman_re50,sr,45,18.0,force,front_fx,0.0018043885938823223 +karman_re50,sr,45,18.0,force,front_fy,0.0007137848297134042 +karman_re50,sr,45,18.0,force,upper_fx,-0.0031232559122145176 +karman_re50,sr,45,18.0,force,upper_fy,0.0032981790136545897 +karman_re50,sr,45,18.0,force,lower_fx,0.00164216966368258 +karman_re50,sr,45,18.0,force,lower_fy,-0.0032713692635297775 +karman_re50,sr,46,18.4,force,front_fx,0.001086066011339426 +karman_re50,sr,46,18.4,force,front_fy,-0.0002999799035023898 +karman_re50,sr,46,18.4,force,upper_fx,-0.002029377268627286 +karman_re50,sr,46,18.4,force,upper_fy,0.003574323607608676 +karman_re50,sr,46,18.4,force,lower_fx,0.0009903813479468226 +karman_re50,sr,46,18.4,force,lower_fy,-0.00315107312053442 +karman_re50,sr,47,18.8,force,front_fx,0.0005237877485342324 +karman_re50,sr,47,18.8,force,front_fy,-0.0011533936485648155 +karman_re50,sr,47,18.8,force,upper_fx,-0.0008725470979698002 +karman_re50,sr,47,18.8,force,upper_fy,0.0038466460537165403 +karman_re50,sr,47,18.8,force,lower_fx,0.0002505327283870429 +karman_re50,sr,47,18.8,force,lower_fy,-0.0030587362125515938 +karman_re50,sr,48,19.2,force,front_fx,0.0002766922989394516 +karman_re50,sr,48,19.2,force,front_fy,-0.0018656376050785184 +karman_re50,sr,48,19.2,force,upper_fx,0.00023503141710534692 +karman_re50,sr,48,19.2,force,upper_fy,0.00406751548871398 +karman_re50,sr,48,19.2,force,lower_fx,-0.0006046551279723644 +karman_re50,sr,48,19.2,force,lower_fy,-0.002974380739033222 +karman_re50,sr,49,19.6,force,front_fx,0.0003902918833773583 +karman_re50,sr,49,19.6,force,front_fy,-0.0024865635205060244 +karman_re50,sr,49,19.6,force,upper_fx,0.0012087682262063026 +karman_re50,sr,49,19.6,force,upper_fy,0.004256154876202345 +karman_re50,sr,49,19.6,force,lower_fx,-0.0015782697591930628 +karman_re50,sr,49,19.6,force,lower_fy,-0.002924148226156831 +karman_re50,sr,50,20.0,force,front_fx,0.0008293635328300297 +karman_re50,sr,50,20.0,force,front_fy,-0.003044511191546917 +karman_re50,sr,50,20.0,force,upper_fx,0.0019850311800837517 +karman_re50,sr,50,20.0,force,upper_fy,0.004402303136885166 +karman_re50,sr,50,20.0,force,lower_fx,-0.002623223466798663 +karman_re50,sr,50,20.0,force,lower_fy,-0.0029436666518449783 +karman_re50,sr,51,20.4,force,front_fx,0.0014804978854954243 +karman_re50,sr,51,20.4,force,front_fy,-0.0034897523000836372 +karman_re50,sr,51,20.4,force,upper_fx,0.0025252443738281727 +karman_re50,sr,51,20.4,force,upper_fy,0.004466335289180279 +karman_re50,sr,51,20.4,force,lower_fx,-0.003622004296630621 +karman_re50,sr,51,20.4,force,lower_fy,-0.003011896274983883 +karman_re50,sr,52,20.8,force,front_fx,0.002151643857359886 +karman_re50,sr,52,20.8,force,front_fy,-0.0037053367123007774 +karman_re50,sr,52,20.8,force,upper_fx,0.002820698544383049 +karman_re50,sr,52,20.8,force,upper_fy,0.004393081646412611 +karman_re50,sr,52,20.8,force,lower_fx,-0.004392936360090971 +karman_re50,sr,52,20.8,force,lower_fy,-0.0030736573971807957 +karman_re50,sr,53,21.2,force,front_fx,0.002635893877595663 +karman_re50,sr,53,21.2,force,front_fy,-0.0035454421304166317 +karman_re50,sr,53,21.2,force,upper_fx,0.0028766097966581583 +karman_re50,sr,53,21.2,force,upper_fy,0.004172532353550196 +karman_re50,sr,53,21.2,force,lower_fx,-0.004770806524902582 +karman_re50,sr,53,21.2,force,lower_fy,-0.003076770342886448 +karman_re50,sr,54,21.6,force,front_fx,0.0027785899583250284 +karman_re50,sr,54,21.6,force,front_fy,-0.0029420482460409403 +karman_re50,sr,54,21.6,force,upper_fx,0.0026961425319314003 +karman_re50,sr,54,21.6,force,upper_fy,0.0038544752169400454 +karman_re50,sr,54,21.6,force,lower_fx,-0.004685195162892342 +karman_re50,sr,54,21.6,force,lower_fy,-0.0030412706546485424 +karman_re50,sr,55,22.0,force,front_fx,0.002529863500967622 +karman_re50,sr,55,22.0,force,front_fy,-0.002006154041737318 +karman_re50,sr,55,22.0,force,upper_fx,0.00230198260396719 +karman_re50,sr,55,22.0,force,upper_fy,0.0035329130478203297 +karman_re50,sr,55,22.0,force,lower_fx,-0.004176594782620668 +karman_re50,sr,55,22.0,force,lower_fy,-0.0030789868906140327 +karman_re50,sr,56,22.4,force,front_fx,0.0019468424143269658 +karman_re50,sr,56,22.4,force,front_fy,-0.000918322301004082 +karman_re50,sr,56,22.4,force,upper_fx,0.00175873760599643 +karman_re50,sr,56,22.4,force,upper_fy,0.003303905948996544 +karman_re50,sr,56,22.4,force,lower_fx,-0.0033266607206314802 +karman_re50,sr,56,22.4,force,lower_fy,-0.0032504091504961252 +karman_re50,sr,57,22.8,force,front_fx,0.0012208211701363325 +karman_re50,sr,57,22.8,force,front_fy,0.0001158841623691842 +karman_re50,sr,57,22.8,force,upper_fx,0.0011229418450966477 +karman_re50,sr,57,22.8,force,upper_fy,0.0031691654585301876 +karman_re50,sr,57,22.8,force,lower_fx,-0.0022583540994673967 +karman_re50,sr,57,22.8,force,lower_fy,-0.0035215704701840878 +karman_re50,sr,58,23.2,force,front_fx,0.0006075145793147385 +karman_re50,sr,58,23.2,force,front_fy,0.0010073884623125196 +karman_re50,sr,58,23.2,force,upper_fx,0.0004014955193269998 +karman_re50,sr,58,23.2,force,upper_fy,0.0030777319334447384 +karman_re50,sr,58,23.2,force,lower_fx,-0.0011016377247869968 +karman_re50,sr,58,23.2,force,lower_fy,-0.0037957325112074614 +karman_re50,sr,59,23.6,force,front_fx,0.0002924170985352248 +karman_re50,sr,59,23.6,force,front_fy,0.0017372570000588894 +karman_re50,sr,59,23.6,force,upper_fx,-0.0004277900734450668 +karman_re50,sr,59,23.6,force,upper_fy,0.0029888288117945194 +karman_re50,sr,59,23.6,force,lower_fx,2.4611272237962112e-05 +karman_re50,sr,59,23.6,force,lower_fy,-0.00402913149446249 +karman_re50,sr,60,24.0,force,front_fx,0.0003377993416506797 +karman_re50,sr,60,24.0,force,front_fy,0.0023695742711424828 +karman_re50,sr,60,24.0,force,upper_fx,-0.0013766889460384846 +karman_re50,sr,60,24.0,force,upper_fy,0.0029320535250008106 +karman_re50,sr,60,24.0,force,lower_fx,0.0010317444102838635 +karman_re50,sr,60,24.0,force,lower_fy,-0.004221901763230562 +karman_re50,sr,61,24.4,force,front_fx,0.0007187250885181129 +karman_re50,sr,61,24.4,force,front_fy,0.002937131328508258 +karman_re50,sr,61,24.4,force,upper_fx,-0.0024121494498103857 +karman_re50,sr,61,24.4,force,upper_fy,0.002937889192253351 +karman_re50,sr,61,24.4,force,lower_fx,0.0018510946538299322 +karman_re50,sr,61,24.4,force,lower_fy,-0.004380025900900364 +karman_re50,sr,62,24.8,force,front_fx,0.0013380780583247542 +karman_re50,sr,62,24.8,force,front_fy,0.0034092299174517393 +karman_re50,sr,62,24.8,force,upper_fx,-0.0034293702337890863 +karman_re50,sr,62,24.8,force,upper_fy,0.0030014419462531805 +karman_re50,sr,62,24.8,force,lower_fx,0.0024360462557524443 +karman_re50,sr,62,24.8,force,lower_fy,-0.0044641210697591305 +karman_re50,sr,63,25.2,force,front_fx,0.002018348081037402 +karman_re50,sr,63,25.2,force,front_fy,0.003676622174680233 +karman_re50,sr,63,25.2,force,upper_fx,-0.004258411005139351 +karman_re50,sr,63,25.2,force,upper_fy,0.003068678779527545 +karman_re50,sr,63,25.2,force,lower_fx,0.002774852328002453 +karman_re50,sr,63,25.2,force,lower_fy,-0.00441583851352334 +karman_re50,sr,64,25.6,force,front_fx,0.0025492317508906126 +karman_re50,sr,64,25.6,force,front_fy,0.0035931929014623165 +karman_re50,sr,64,25.6,force,upper_fx,-0.0047148545272648335 +karman_re50,sr,64,25.6,force,upper_fy,0.0030788921285420656 +karman_re50,sr,64,25.6,force,lower_fx,0.002873877063393593 +karman_re50,sr,64,25.6,force,lower_fy,-0.0042201499454677105 +karman_re50,sr,65,26.0,force,front_fx,0.002763602649793029 +karman_re50,sr,65,26.0,force,front_fy,0.003068201942369342 +karman_re50,sr,65,26.0,force,upper_fx,-0.004714092239737511 +karman_re50,sr,65,26.0,force,upper_fy,0.0030475908424705267 +karman_re50,sr,65,26.0,force,lower_fx,0.002737124217674136 +karman_re50,sr,65,26.0,force,lower_fy,-0.003910874016582966 +karman_re50,sr,66,26.4,force,front_fx,0.0025895144790410995 +karman_re50,sr,66,26.4,force,front_fy,0.002181329997256398 +karman_re50,sr,66,26.4,force,upper_fx,-0.004274305887520313 +karman_re50,sr,66,26.4,force,upper_fy,0.003062971169129014 +karman_re50,sr,66,26.4,force,lower_fx,0.002381017664447427 +karman_re50,sr,66,26.4,force,lower_fy,-0.0035828128457069397 +karman_re50,sr,67,26.8,force,front_fx,0.0020593826193362474 +karman_re50,sr,67,26.8,force,front_fy,0.0011075477814301848 +karman_re50,sr,67,26.8,force,upper_fx,-0.003479469334706664 +karman_re50,sr,67,26.8,force,upper_fy,0.0032101201359182596 +karman_re50,sr,67,26.8,force,lower_fx,0.0018586079822853208 +karman_re50,sr,67,26.8,force,lower_fy,-0.0033332654275000095 +karman_re50,sr,68,27.2,force,front_fx,0.0013398510636761785 +karman_re50,sr,68,27.2,force,front_fy,5.222373511060141e-05 +karman_re50,sr,68,27.2,force,upper_fx,-0.0024466686882078648 +karman_re50,sr,68,27.2,force,upper_fy,0.0034636049531400204 +karman_re50,sr,68,27.2,force,lower_fx,0.0012348335003480315 +karman_re50,sr,68,27.2,force,lower_fy,-0.0031845406629145145 +karman_re50,sr,69,27.6,force,front_fx,0.0006923584151081741 +karman_re50,sr,69,27.6,force,front_fy,-0.000862294458784163 +karman_re50,sr,69,27.6,force,upper_fx,-0.0012989856768399477 +karman_re50,sr,69,27.6,force,upper_fy,0.003744088811799884 +karman_re50,sr,69,27.6,force,lower_fx,0.0005275860312394798 +karman_re50,sr,69,27.6,force,lower_fy,-0.003084543626755476 +karman_re50,sr,70,28.0,force,front_fx,0.00032124441349878907 +karman_re50,sr,70,28.0,force,front_fy,-0.0016196700744330883 +karman_re50,sr,70,28.0,force,upper_fx,-0.000161807969561778 +karman_re50,sr,70,28.0,force,upper_fy,0.00398244010284543 +karman_re50,sr,70,28.0,force,lower_fx,-0.00028163997922092676 +karman_re50,sr,70,28.0,force,lower_fy,-0.002993351547047496 +karman_re50,sr,71,28.4,force,front_fx,0.0003073150001000613 +karman_re50,sr,71,28.4,force,front_fy,-0.002267393982037902 +karman_re50,sr,71,28.4,force,upper_fx,0.0008735921001061797 +karman_re50,sr,71,28.4,force,upper_fy,0.004182666540145874 +karman_re50,sr,71,28.4,force,lower_fx,-0.001210584188811481 +karman_re50,sr,71,28.4,force,lower_fy,-0.0029274499975144863 +karman_re50,sr,72,28.8,force,front_fx,0.0006358461687341332 +karman_re50,sr,72,28.8,force,front_fy,-0.0028474521823227406 +karman_re50,sr,72,28.8,force,upper_fx,0.0017299578757956624 +karman_re50,sr,72,28.8,force,upper_fy,0.004352698568254709 +karman_re50,sr,72,28.8,force,lower_fx,-0.0022326281759887934 +karman_re50,sr,72,28.8,force,lower_fy,-0.002918477402999997 +karman_re50,sr,73,29.2,force,front_fx,0.0012274677865207195 +karman_re50,sr,73,29.2,force,front_fy,-0.003344782395288348 +karman_re50,sr,73,29.2,force,upper_fx,0.0023555587977170944 +karman_re50,sr,73,29.2,force,upper_fy,0.0044523607939481735 +karman_re50,sr,73,29.2,force,lower_fx,-0.0032732319086790085 +karman_re50,sr,73,29.2,force,lower_fy,-0.00298327743075788 +karman_re50,sr,74,29.6,force,front_fx,0.0019138067727908492 +karman_re50,sr,74,29.6,force,front_fy,-0.0036623459309339523 +karman_re50,sr,74,29.6,force,upper_fx,0.0027358466759324074 +karman_re50,sr,74,29.6,force,upper_fy,0.004432344809174538 +karman_re50,sr,74,29.6,force,lower_fx,-0.004150861408561468 +karman_re50,sr,74,29.6,force,lower_fy,-0.0030535573605448008 +karman_re50,sr,75,30.0,force,front_fx,0.0024860929697752 +karman_re50,sr,75,30.0,force,front_fy,-0.0036517218686640263 +karman_re50,sr,75,30.0,force,upper_fx,0.0028786328621208668 +karman_re50,sr,75,30.0,force,upper_fy,0.00426110764965415 +karman_re50,sr,75,30.0,force,lower_fx,-0.004684832412749529 +karman_re50,sr,75,30.0,force,lower_fy,-0.0030730655416846275 +karman_re50,sr,76,30.4,force,front_fx,0.002766423160210252 +karman_re50,sr,76,30.4,force,front_fy,-0.003209418151527643 +karman_re50,sr,76,30.4,force,upper_fx,0.0027839276008307934 +karman_re50,sr,76,30.4,force,upper_fy,0.003968734294176102 +karman_re50,sr,76,30.4,force,lower_fx,-0.004766021389514208 +karman_re50,sr,76,30.4,force,lower_fy,-0.0030435866210609674 +karman_re50,sr,77,30.8,force,front_fx,0.0026642372831702232 +karman_re50,sr,77,30.8,force,front_fy,-0.0023733258713036776 +karman_re50,sr,77,30.8,force,upper_fx,0.002464293735101819 +karman_re50,sr,77,30.8,force,upper_fy,0.0036377080250531435 +karman_re50,sr,77,30.8,force,lower_fx,-0.004400165285915136 +karman_re50,sr,77,30.8,force,lower_fy,-0.003046001773327589 +karman_re50,sr,78,31.2,force,front_fx,0.0021830922923982143 +karman_re50,sr,78,31.2,force,front_fy,-0.0013131527230143547 +karman_re50,sr,78,31.2,force,upper_fx,0.0019676601514220238 +karman_re50,sr,78,31.2,force,upper_fy,0.0033713714219629765 +karman_re50,sr,78,31.2,force,lower_fx,-0.003660437650978565 +karman_re50,sr,78,31.2,force,lower_fy,-0.003171120770275593 +karman_re50,sr,79,31.6,force,front_fx,0.001479758182540536 +karman_re50,sr,79,31.6,force,front_fy,-0.00024278054479509592 +karman_re50,sr,79,31.6,force,upper_fx,0.001358314766548574 +karman_re50,sr,79,31.6,force,upper_fy,0.0032073217444121838 +karman_re50,sr,79,31.6,force,lower_fx,-0.00265759089961648 +karman_re50,sr,79,31.6,force,lower_fy,-0.003416543360799551 +karman_re50,sr,80,32.0,force,front_fx,0.0007995309424586594 +karman_re50,sr,80,32.0,force,front_fy,0.0007019274053163826 +karman_re50,sr,80,32.0,force,upper_fx,0.0006668918067589402 +karman_re50,sr,80,32.0,force,upper_fy,0.0031028769444674253 +karman_re50,sr,80,32.0,force,lower_fx,-0.0015167157398536801 +karman_re50,sr,80,32.0,force,lower_fy,-0.003689427860081196 +karman_re50,sr,81,32.4,force,front_fx,0.0003633956948760897 +karman_re50,sr,81,32.4,force,front_fy,0.001491200877353549 +karman_re50,sr,81,32.4,force,upper_fx,-0.00012253016757313162 +karman_re50,sr,81,32.4,force,upper_fy,0.003008867148309946 +karman_re50,sr,81,32.4,force,lower_fx,-0.0003708687727339566 +karman_re50,sr,81,32.4,force,lower_fy,-0.0039413850754499435 +karman_re50,sr,82,32.8,force,front_fx,0.00028098924667574465 +karman_re50,sr,82,32.8,force,front_fy,0.002150362590327859 +karman_re50,sr,82,32.8,force,upper_fx,-0.0010268979240208864 +karman_re50,sr,82,32.8,force,upper_fy,0.0029350975528359413 +karman_re50,sr,82,32.8,force,lower_fx,0.0006922793108969927 +karman_re50,sr,82,32.8,force,lower_fy,-0.004149307496845722 +karman_re50,sr,83,33.2,force,front_fx,0.0005500201368704438 +karman_re50,sr,83,33.2,force,front_fy,0.002741216914728284 +karman_re50,sr,83,33.2,force,upper_fx,-0.0020389235578477383 +karman_re50,sr,83,33.2,force,upper_fy,0.0029199228156358004 +karman_re50,sr,83,33.2,force,lower_fx,0.0015884330496191978 +karman_re50,sr,83,33.2,force,lower_fy,-0.004326398018747568 +karman_re50,sr,84,33.6,force,front_fx,0.0011022343533113599 +karman_re50,sr,84,33.6,force,front_fy,0.0032578103709965944 +karman_re50,sr,84,33.6,force,upper_fx,-0.0030815121717751026 +karman_re50,sr,84,33.6,force,upper_fy,0.002970037516206503 +karman_re50,sr,84,33.6,force,lower_fx,0.0022590793669223785 +karman_re50,sr,84,33.6,force,lower_fy,-0.004446300677955151 +karman_re50,sr,85,34.0,force,front_fx,0.0017851993907243013 +karman_re50,sr,85,34.0,force,front_fy,0.003618500428274274 +karman_re50,sr,85,34.0,force,upper_fx,-0.004005761351436377 +karman_re50,sr,85,34.0,force,upper_fy,0.0030424927826970816 +karman_re50,sr,85,34.0,force,lower_fx,0.002681727521121502 +karman_re50,sr,85,34.0,force,lower_fy,-0.004447701387107372 +karman_re50,sr,86,34.4,force,front_fx,0.0023924317210912704 +karman_re50,sr,86,34.4,force,front_fy,0.003675983287394047 +karman_re50,sr,86,34.4,force,upper_fx,-0.004614059813320637 +karman_re50,sr,86,34.4,force,upper_fy,0.0030735349282622337 +karman_re50,sr,86,34.4,force,lower_fx,0.0028651549946516752 +karman_re50,sr,86,34.4,force,lower_fy,-0.004302338231354952 +karman_re50,sr,87,34.8,force,front_fx,0.0027376338839530945 +karman_re50,sr,87,34.8,force,front_fy,0.0033162867184728384 +karman_re50,sr,87,34.8,force,upper_fx,-0.004777721595019102 +karman_re50,sr,87,34.8,force,upper_fy,0.00304974801838398 +karman_re50,sr,87,34.8,force,lower_fx,0.002813939703628421 +karman_re50,sr,87,34.8,force,lower_fy,-0.004024697933346033 +karman_re50,sr,88,35.2,force,front_fx,0.0027066508773714304 +karman_re50,sr,88,35.2,force,front_fy,0.0025420330930501223 +karman_re50,sr,88,35.2,force,upper_fx,-0.004486235324293375 +karman_re50,sr,88,35.2,force,upper_fy,0.0030386170838028193 +karman_re50,sr,88,35.2,force,lower_fx,0.0025341298896819353 +karman_re50,sr,88,35.2,force,lower_fy,-0.0036941247526556253 +karman_re50,sr,89,35.6,force,front_fx,0.0022877510637044907 +karman_re50,sr,89,35.6,force,front_fy,0.0015088143991306424 +karman_re50,sr,89,35.6,force,upper_fx,-0.003804809181019664 +karman_re50,sr,89,35.6,force,upper_fy,0.0031401985324919224 +karman_re50,sr,89,35.6,force,lower_fx,0.002064433181658387 +karman_re50,sr,89,35.6,force,lower_fy,-0.003410463919863105 +karman_re50,sr,90,36.0,force,front_fx,0.0016070737037807703 +karman_re50,sr,90,36.0,force,front_fy,0.0004268758639227599 +karman_re50,sr,90,36.0,force,upper_fx,-0.0028407168574631214 +karman_re50,sr,90,36.0,force,upper_fy,0.0033665148075670004 +karman_re50,sr,90,36.0,force,lower_fx,0.001470995950512588 +karman_re50,sr,90,36.0,force,lower_fy,-0.003228531451895833 +karman_re50,sr,91,36.4,force,front_fx,0.0009037231793627143 +karman_re50,sr,91,36.4,force,front_fy,-0.0005464291316457093 +karman_re50,sr,91,36.4,force,upper_fx,-0.0017217407003045082 +karman_re50,sr,91,36.4,force,upper_fy,0.0036435381043702364 +karman_re50,sr,91,36.4,force,lower_fx,0.0007916746544651687 +karman_re50,sr,91,36.4,force,lower_fy,-0.00311611988581717 +karman_re50,sr,92,36.8,force,front_fx,0.00041517746285535395 +karman_re50,sr,92,36.8,force,front_fy,-0.0013586279237642884 +karman_re50,sr,92,36.8,force,upper_fx,-0.0005681609036400914 +karman_re50,sr,92,36.8,force,upper_fy,0.00389589904807508 +karman_re50,sr,92,36.8,force,lower_fx,2.130854409188032e-05 +karman_re50,sr,92,36.8,force,lower_fy,-0.003020795527845621 +karman_re50,sr,93,37.2,force,front_fx,0.00026964061544276774 +karman_re50,sr,93,37.2,force,front_fy,-0.002040249528363347 +karman_re50,sr,93,37.2,force,upper_fx,0.0005167656927369535 +karman_re50,sr,93,37.2,force,upper_fy,0.004109492991119623 +karman_re50,sr,93,37.2,force,lower_fx,-0.0008619712316431105 +karman_re50,sr,93,37.2,force,lower_fy,-0.002941260114312172 +karman_re50,sr,94,37.6,force,front_fx,0.00048116306425072253 +karman_re50,sr,94,37.6,force,front_fy,-0.002643701620399952 +karman_re50,sr,94,37.6,force,upper_fx,0.001447618124075234 +karman_re50,sr,94,37.6,force,upper_fy,0.00429605832323432 +karman_re50,sr,94,37.6,force,lower_fx,-0.0018565732752904296 +karman_re50,sr,94,37.6,force,lower_fy,-0.0029127681627869606 +karman_re50,sr,95,38.0,force,front_fx,0.0009931587846949697 +karman_re50,sr,95,38.0,force,front_fy,-0.003178911516442895 +karman_re50,sr,95,38.0,force,upper_fx,0.002161062555387616 +karman_re50,sr,95,38.0,force,upper_fy,0.004429249558597803 +karman_re50,sr,95,38.0,force,lower_fx,-0.0029047972057014704 +karman_re50,sr,95,38.0,force,lower_fy,-0.002956198528409004 +karman_re50,sr,96,38.4,force,front_fx,0.0016662541311234236 +karman_re50,sr,96,38.4,force,front_fy,-0.00357642094604671 +karman_re50,sr,96,38.4,force,upper_fx,0.0026265315245836973 +karman_re50,sr,96,38.4,force,upper_fy,0.004458836745470762 +karman_re50,sr,96,38.4,force,lower_fx,-0.003865715814754367 +karman_re50,sr,96,38.4,force,lower_fy,-0.0030278710182756186 +karman_re50,sr,97,38.8,force,front_fx,0.002305182395502925 +karman_re50,sr,97,38.8,force,front_fy,-0.003703409805893898 +karman_re50,sr,97,38.8,force,upper_fx,0.002851376309990883 +karman_re50,sr,97,38.8,force,upper_fy,0.0043370989151299 +karman_re50,sr,97,38.8,force,lower_fx,-0.00454590143635869 +karman_re50,sr,97,38.8,force,lower_fy,-0.0030696303583681583 +karman_re50,sr,98,39.2,force,front_fx,0.002709908178076148 +karman_re50,sr,98,39.2,force,front_fy,-0.003421034896746278 +karman_re50,sr,98,39.2,force,upper_fx,0.002843171590939164 +karman_re50,sr,98,39.2,force,upper_fy,0.0040802545845508575 +karman_re50,sr,98,39.2,force,lower_fx,-0.004794614389538765 +karman_re50,sr,98,39.2,force,lower_fy,-0.003050112398341298 +karman_re50,sr,99,39.6,force,front_fx,0.0027512621600180864 +karman_re50,sr,99,39.6,force,front_fy,-0.002707564039155841 +karman_re50,sr,99,39.6,force,upper_fx,0.002604365348815918 +karman_re50,sr,99,39.6,force,upper_fy,0.003751893062144518 +karman_re50,sr,99,39.6,force,lower_fx,-0.004580208100378513 +karman_re50,sr,99,39.6,force,lower_fy,-0.003032343927770853 +karman_re50,sr,100,40.0,force,front_fx,0.002395871328189969 +karman_re50,sr,100,40.0,force,front_fy,-0.001712219906039536 +karman_re50,sr,100,40.0,force,upper_fx,0.002165179466828704 +karman_re50,sr,100,40.0,force,upper_fy,0.0034556498285382986 +karman_re50,sr,100,40.0,force,lower_fx,-0.00396142341196537 +karman_re50,sr,100,40.0,force,lower_fy,-0.003110822755843401 +karman_re50,sr,101,40.4,force,front_fx,0.001744315610267222 +karman_re50,sr,101,40.4,force,front_fy,-0.000622284016571939 +karman_re50,sr,101,40.4,force,upper_fx,0.0015893183881416917 +karman_re50,sr,101,40.4,force,upper_fy,0.003257551696151495 +karman_re50,sr,101,40.4,force,lower_fx,-0.003039400791749358 +karman_re50,sr,101,40.4,force,lower_fy,-0.0033200597390532494 +karman_re50,sr,102,40.8,force,front_fx,0.0010252331849187613 +karman_re50,sr,102,40.8,force,front_fy,0.0003756421501748264 +karman_re50,sr,102,40.8,force,upper_fx,0.000925267580896616 +karman_re50,sr,102,40.8,force,upper_fy,0.0031368830241262913 +karman_re50,sr,102,40.8,force,lower_fx,-0.0019392622634768486 +karman_re50,sr,102,40.8,force,lower_fy,-0.0035936683416366577 +karman_re50,sr,103,41.2,force,front_fx,0.0004812644037883729 +karman_re50,sr,103,41.2,force,front_fy,0.0012193142902106047 +karman_re50,sr,103,41.2,force,upper_fx,0.00017195186228491366 +karman_re50,sr,103,41.2,force,upper_fy,0.003038607770577073 +karman_re50,sr,103,41.2,force,lower_fx,-0.0007828136440366507 +karman_re50,sr,103,41.2,force,lower_fy,-0.00385233573615551 +karman_re50,sr,104,41.6,force,front_fx,0.0002687988162506372 +karman_re50,sr,104,41.6,force,front_fy,0.0019194886554032564 +karman_re50,sr,104,41.6,force,upper_fx,-0.0006868511554785073 +karman_re50,sr,104,41.6,force,upper_fy,0.002952361712232232 +karman_re50,sr,104,41.6,force,lower_fx,0.0003231915761716664 +karman_re50,sr,104,41.6,force,lower_fy,-0.004073654767125845 +karman_re50,sr,105,42.0,force,front_fx,0.0004161002580076456 +karman_re50,sr,105,42.0,force,front_fy,0.0025346814654767513 +karman_re50,sr,105,42.0,force,upper_fx,-0.0016662661219015718 +karman_re50,sr,105,42.0,force,upper_fy,0.002911926247179508 +karman_re50,sr,105,42.0,force,lower_fx,0.0012901743175461888 +karman_re50,sr,105,42.0,force,lower_fy,-0.004265014547854662 +karman_re50,sr,106,42.4,force,front_fx,0.0008793637971393764 +karman_re50,sr,106,42.4,force,front_fy,0.003083288436755538 +karman_re50,sr,106,42.4,force,upper_fx,-0.0027074695099145174 +karman_re50,sr,106,42.4,force,upper_fy,0.002947675995528698 +karman_re50,sr,106,42.4,force,lower_fx,0.0020465755369514227 +karman_re50,sr,106,42.4,force,lower_fy,-0.00441399309784174 +karman_re50,sr,107,42.8,force,front_fx,0.0015378014650195837 +karman_re50,sr,107,42.8,force,front_fy,0.0035165611188858747 +karman_re50,sr,107,42.8,force,upper_fx,-0.003699352964758873 +karman_re50,sr,107,42.8,force,upper_fy,0.0030195340514183044 +karman_re50,sr,107,42.8,force,lower_fx,0.002557056024670601 +karman_re50,sr,107,42.8,force,lower_fy,-0.004464155063033104 +karman_re50,sr,108,43.2,force,front_fx,0.002194879576563835 +karman_re50,sr,108,43.2,force,front_fy,0.003702388145029545 +karman_re50,sr,108,43.2,force,upper_fx,-0.004444271791726351 +karman_re50,sr,108,43.2,force,upper_fy,0.003067320678383112 +karman_re50,sr,108,43.2,force,lower_fx,0.0028239486273378134 +karman_re50,sr,108,43.2,force,lower_fy,-0.004370533395558596 +karman_re50,sr,109,43.6,force,front_fx,0.0026509645394980907 +karman_re50,sr,109,43.6,force,front_fy,0.003501584753394127 +karman_re50,sr,109,43.6,force,upper_fx,-0.004776451736688614 +karman_re50,sr,109,43.6,force,upper_fy,0.003056376241147518 +karman_re50,sr,109,43.6,force,lower_fx,0.002858061110600829 +karman_re50,sr,109,43.6,force,lower_fy,-0.004133347421884537 +karman_re50,sr,110,44.0,force,front_fx,0.0027680632192641497 +karman_re50,sr,110,44.0,force,front_fy,0.00286657246761024 +karman_re50,sr,110,44.0,force,upper_fx,-0.0046432348899543285 +karman_re50,sr,110,44.0,force,upper_fy,0.003031324129551649 +karman_re50,sr,110,44.0,force,lower_fx,0.002661224687471986 +karman_re50,sr,110,44.0,force,lower_fy,-0.0038114963099360466 +karman_re50,sr,111,44.4,force,front_fx,0.002481083618476987 +karman_re50,sr,111,44.4,force,front_fy,0.0019024111097678542 +karman_re50,sr,111,44.4,force,upper_fx,-0.0040900870226323605 +karman_re50,sr,111,44.4,force,upper_fy,0.003089379286393523 +karman_re50,sr,111,44.4,force,lower_fx,0.0022543156519532204 +karman_re50,sr,111,44.4,force,lower_fy,-0.0035030124709010124 +karman_re50,sr,112,44.8,force,front_fx,0.0018721356755122542 +karman_re50,sr,112,44.8,force,front_fy,0.0008134628878906369 +karman_re50,sr,112,44.8,force,upper_fx,-0.003214601892977953 +karman_re50,sr,112,44.8,force,upper_fy,0.003278365358710289 +karman_re50,sr,112,44.8,force,lower_fx,0.0016986087430268526 +karman_re50,sr,112,44.8,force,lower_fy,-0.0032851346768438816 +karman_re50,sr,113,45.2,force,front_fx,0.001144356094300747 +karman_re50,sr,113,45.2,force,front_fy,-0.00021452702640090138 +karman_re50,sr,113,45.2,force,upper_fx,-0.002139144577085972 +karman_re50,sr,113,45.2,force,upper_fy,0.003542962484061718 +karman_re50,sr,113,45.2,force,lower_fx,0.001046526711434126 +karman_re50,sr,113,45.2,force,lower_fy,-0.0031543562654405832 +karman_re50,sr,114,45.6,force,front_fx,0.0005559714045375586 +karman_re50,sr,114,45.6,force,front_fy,-0.0010805524652823806 +karman_re50,sr,114,45.6,force,upper_fx,-0.0009868338238447905 +karman_re50,sr,114,45.6,force,upper_fy,0.0038064420223236084 +karman_re50,sr,114,45.6,force,lower_fx,0.0003106210788246244 +karman_re50,sr,114,45.6,force,lower_fy,-0.003053466323763132 +karman_re50,sr,115,46.0,force,front_fx,0.0002798665373120457 +karman_re50,sr,115,46.0,force,front_fy,-0.0018047260819002986 +karman_re50,sr,115,46.0,force,upper_fx,0.00013523787492886186 +karman_re50,sr,115,46.0,force,upper_fy,0.004032629542052746 +karman_re50,sr,115,46.0,force,lower_fx,-0.0005278315511532128 +karman_re50,sr,115,46.0,force,lower_fy,-0.002963252132758498 +karman_re50,sr,116,46.4,force,front_fx,0.00036621143226511776 +karman_re50,sr,116,46.4,force,front_fy,-0.0024311658926308155 +karman_re50,sr,116,46.4,force,upper_fx,0.0011332392459735274 +karman_re50,sr,116,46.4,force,upper_fy,0.004231989849358797 +karman_re50,sr,116,46.4,force,lower_fx,-0.0014818826457485557 +karman_re50,sr,116,46.4,force,lower_fy,-0.0029146901797503233 +karman_re50,sr,117,46.8,force,front_fx,0.0007803391199558973 +karman_re50,sr,117,46.8,force,front_fy,-0.0029941098764538765 +karman_re50,sr,117,46.8,force,upper_fx,0.001931305625475943 +karman_re50,sr,117,46.8,force,upper_fy,0.004392520058900118 +karman_re50,sr,117,46.8,force,lower_fx,-0.002521553309634328 +karman_re50,sr,117,46.8,force,lower_fy,-0.0029367608949542046 +karman_re50,sr,118,47.2,force,front_fx,0.0014148290501907468 +karman_re50,sr,118,47.2,force,front_fy,-0.0034549639094620943 +karman_re50,sr,118,47.2,force,upper_fx,0.002484764438122511 +karman_re50,sr,118,47.2,force,upper_fy,0.0044652377255260944 +karman_re50,sr,118,47.2,force,lower_fx,-0.0035374355502426624 +karman_re50,sr,118,47.2,force,lower_fy,-0.0030050405766814947 +karman_re50,sr,119,47.6,force,front_fx,0.00208711763843894 +karman_re50,sr,119,47.6,force,front_fy,-0.0036963738966733217 +karman_re50,sr,119,47.6,force,upper_fx,0.0027939549181610346 +karman_re50,sr,119,47.6,force,upper_fy,0.004398541525006294 +karman_re50,sr,119,47.6,force,lower_fx,-0.004343164619058371 +karman_re50,sr,119,47.6,force,lower_fy,-0.0030588696245104074 +karman_re50,sr,120,48.0,force,front_fx,0.0025954446755349636 +karman_re50,sr,120,48.0,force,front_fy,-0.0035736537538468838 +karman_re50,sr,120,48.0,force,upper_fx,0.0028701794799417257 +karman_re50,sr,120,48.0,force,upper_fy,0.00418349914252758 +karman_re50,sr,120,48.0,force,lower_fx,-0.004759397357702255 +karman_re50,sr,120,48.0,force,lower_fy,-0.003058113856241107 +karman_re50,sr,121,48.4,force,front_fx,0.002781842602416873 +karman_re50,sr,121,48.4,force,front_fy,-0.003011422697454691 +karman_re50,sr,121,48.4,force,upper_fx,0.0027152285911142826 +karman_re50,sr,121,48.4,force,upper_fy,0.0038706546183675528 +karman_re50,sr,121,48.4,force,lower_fx,-0.004707434680312872 +karman_re50,sr,121,48.4,force,lower_fy,-0.0030303169041872025 +karman_re50,sr,122,48.8,force,front_fx,0.002567928982898593 +karman_re50,sr,122,48.8,force,front_fy,-0.0020965910516679287 +karman_re50,sr,122,48.8,force,upper_fx,0.0023442748934030533 +karman_re50,sr,122,48.8,force,upper_fy,0.0035535721108317375 +karman_re50,sr,122,48.8,force,lower_fx,-0.004223219584673643 +karman_re50,sr,122,48.8,force,lower_fy,-0.003072891617193818 +karman_re50,sr,123,49.2,force,front_fx,0.0020038632210344076 +karman_re50,sr,123,49.2,force,front_fy,-0.0010137384524568915 +karman_re50,sr,123,49.2,force,upper_fx,0.0018105098279193044 +karman_re50,sr,123,49.2,force,upper_fy,0.0033194134011864662 +karman_re50,sr,123,49.2,force,lower_fx,-0.0033959406428039074 +karman_re50,sr,123,49.2,force,lower_fy,-0.0032363291829824448 +karman_re50,sr,124,49.6,force,front_fx,0.0012746375286951661 +karman_re50,sr,124,49.6,force,front_fy,3.325082434457727e-05 +karman_re50,sr,124,49.6,force,upper_fx,0.001172889955341816 +karman_re50,sr,124,49.6,force,upper_fy,0.003175497055053711 +karman_re50,sr,124,49.6,force,lower_fx,-0.0023478970397263765 +karman_re50,sr,124,49.6,force,lower_fy,-0.003492794232442975 +karman_re50,sr,125,50.0,force,front_fx,0.0006426908075809479 +karman_re50,sr,125,50.0,force,front_fy,0.0009345643920823932 +karman_re50,sr,125,50.0,force,upper_fx,0.0004528439894784242 +karman_re50,sr,125,50.0,force,upper_fy,0.0030717297922819853 +karman_re50,sr,125,50.0,force,lower_fx,-0.0012011743383482099 +karman_re50,sr,125,50.0,force,lower_fy,-0.003759415354579687 +karman_re50,sr,126,50.4,force,front_fx,0.0003026417107321322 +karman_re50,sr,126,50.4,force,front_fy,0.0016803063917905092 +karman_re50,sr,126,50.4,force,upper_fx,-0.0003643626405391842 +karman_re50,sr,126,50.4,force,upper_fy,0.002977126045152545 +karman_re50,sr,126,50.4,force,lower_fx,-6.583359208889306e-05 +karman_re50,sr,126,50.4,force,lower_fy,-0.003993231803178787 +karman_re50,sr,127,50.8,force,front_fx,0.0003238279605284333 +karman_re50,sr,127,50.8,force,front_fy,0.002320527099072933 +karman_re50,sr,127,50.8,force,upper_fx,-0.0012961765751242638 +karman_re50,sr,127,50.8,force,upper_fy,0.0029202185105532408 +karman_re50,sr,127,50.8,force,lower_fx,0.0009628969710320234 +karman_re50,sr,127,50.8,force,lower_fy,-0.004197047557681799 +karman_re50,sr,128,51.2,force,front_fx,0.0006823062431067228 +karman_re50,sr,128,51.2,force,front_fy,0.0028947589453309774 +karman_re50,sr,128,51.2,force,upper_fx,-0.002325106645002961 +karman_re50,sr,128,51.2,force,upper_fy,0.0029298195149749517 +karman_re50,sr,128,51.2,force,lower_fx,0.0018029025522992015 +karman_re50,sr,128,51.2,force,lower_fy,-0.004370394162833691 +karman_re50,sr,129,51.6,force,front_fx,0.001286587561480701 +karman_re50,sr,129,51.6,force,front_fy,0.0033808958251029253 +karman_re50,sr,129,51.6,force,upper_fx,-0.003357378300279379 +karman_re50,sr,129,51.6,force,upper_fy,0.0029938367661088705 +karman_re50,sr,129,51.6,force,lower_fx,0.002402136567980051 +karman_re50,sr,129,51.6,force,lower_fy,-0.004463212098926306 +karman_re50,sr,130,52.0,force,front_fx,0.001967937685549259 +karman_re50,sr,130,52.0,force,front_fy,0.0036731893196702003 +karman_re50,sr,130,52.0,force,upper_fx,-0.004218070302158594 +karman_re50,sr,130,52.0,force,upper_fy,0.0030547978822141886 +karman_re50,sr,130,52.0,force,lower_fx,0.0027529268991202116 +karman_re50,sr,130,52.0,force,lower_fy,-0.004422653932124376 +karman_re50,sr,131,52.4,force,front_fx,0.002522887196391821 +karman_re50,sr,131,52.4,force,front_fy,0.003623298602178693 +karman_re50,sr,131,52.4,force,upper_fx,-0.004713856149464846 +karman_re50,sr,131,52.4,force,upper_fy,0.0030634391587227583 +karman_re50,sr,131,52.4,force,lower_fx,0.0028707117307931185 +karman_re50,sr,131,52.4,force,lower_fy,-0.00423155864700675 +karman_re50,sr,132,52.8,force,front_fx,0.00277283345349133 +karman_re50,sr,132,52.8,force,front_fy,0.003143689362332225 +karman_re50,sr,132,52.8,force,upper_fx,-0.004745138343423605 +karman_re50,sr,132,52.8,force,upper_fy,0.003035353496670723 +karman_re50,sr,132,52.8,force,lower_fx,0.0027587341610342264 +karman_re50,sr,132,52.8,force,lower_fy,-0.003930125385522842 +karman_re50,sr,133,53.2,force,front_fx,0.002631949493661523 +karman_re50,sr,133,53.2,force,front_fy,0.002275296254083514 +karman_re50,sr,133,53.2,force,upper_fx,-0.004332393407821655 +karman_re50,sr,133,53.2,force,upper_fy,0.0030547475907951593 +karman_re50,sr,133,53.2,force,lower_fx,0.0024250817950814962 +karman_re50,sr,133,53.2,force,lower_fy,-0.0036073625087738037 +karman_re50,sr,134,53.6,force,front_fx,0.0021216075401753187 +karman_re50,sr,134,53.6,force,front_fy,0.0012088147923350334 +karman_re50,sr,134,53.6,force,upper_fx,-0.003559501376003027 +karman_re50,sr,134,53.6,force,upper_fy,0.0031995782628655434 +karman_re50,sr,134,53.6,force,lower_fx,0.0019159100484102964 +karman_re50,sr,134,53.6,force,lower_fy,-0.0033536225091665983 +karman_re50,sr,135,54.0,force,front_fx,0.0014045899733901024 +karman_re50,sr,135,54.0,force,front_fy,0.00014437692880164832 +karman_re50,sr,135,54.0,force,upper_fx,-0.002544127171859145 +karman_re50,sr,135,54.0,force,upper_fy,0.0034443854819983244 +karman_re50,sr,135,54.0,force,lower_fx,0.001291812164708972 +karman_re50,sr,135,54.0,force,lower_fy,-0.003197431331500411 +karman_re50,sr,136,54.4,force,front_fx,0.000737417140044272 +karman_re50,sr,136,54.4,force,front_fy,-0.000784996896982193 +karman_re50,sr,136,54.4,force,upper_fx,-0.001408119103871286 +karman_re50,sr,136,54.4,force,upper_fy,0.003713045036420226 +karman_re50,sr,136,54.4,force,lower_fx,0.0005864400882273912 +karman_re50,sr,136,54.4,force,lower_fy,-0.0030882221180945635 +karman_re50,sr,137,54.8,force,front_fx,0.0003376767272129655 +karman_re50,sr,137,54.8,force,front_fy,-0.0015566247748211026 +karman_re50,sr,137,54.8,force,upper_fx,-0.00026335444999858737 +karman_re50,sr,137,54.8,force,upper_fy,0.00395176513120532 +karman_re50,sr,137,54.8,force,lower_fx,-0.00021148042287677526 +karman_re50,sr,137,54.8,force,lower_fy,-0.0029900730587542057 +karman_re50,sr,138,55.2,force,front_fx,0.00029481525416485965 +karman_re50,sr,138,55.2,force,front_fy,-0.002211256418377161 +karman_re50,sr,138,55.2,force,upper_fx,0.000791887054219842 +karman_re50,sr,138,55.2,force,upper_fy,0.004161543678492308 +karman_re50,sr,138,55.2,force,lower_fx,-0.0011219880543649197 +karman_re50,sr,138,55.2,force,lower_fy,-0.0029245323967188597 +karman_re50,sr,139,55.6,force,front_fx,0.0005980192217975855 +karman_re50,sr,139,55.6,force,front_fy,-0.002797965658828616 +karman_re50,sr,139,55.6,force,upper_fx,0.0016707443865016103 +karman_re50,sr,139,55.6,force,upper_fy,0.0043428377248346806 +karman_re50,sr,139,55.6,force,lower_fx,-0.0021373420022428036 +karman_re50,sr,139,55.6,force,lower_fy,-0.0029235451947897673 +karman_re50,sr,140,56.0,force,front_fx,0.0011688846861943603 +karman_re50,sr,140,56.0,force,front_fy,-0.0033060102723538876 +karman_re50,sr,140,56.0,force,upper_fx,0.002314666286110878 +karman_re50,sr,140,56.0,force,upper_fy,0.0044558909721672535 +karman_re50,sr,140,56.0,force,lower_fx,-0.003181543666869402 +karman_re50,sr,140,56.0,force,lower_fy,-0.0029814187437295914 +karman_re50,sr,141,56.4,force,front_fx,0.001852511428296566 +karman_re50,sr,141,56.4,force,front_fy,-0.003643851960077882 +karman_re50,sr,141,56.4,force,upper_fx,0.0027080602012574673 +karman_re50,sr,141,56.4,force,upper_fy,0.00444152532145381 +karman_re50,sr,141,56.4,force,lower_fx,-0.004089068621397018 +karman_re50,sr,141,56.4,force,lower_fy,-0.003045758232474327 +karman_re50,sr,142,56.8,force,front_fx,0.0024439378175884485 +karman_re50,sr,142,56.8,force,front_fy,-0.003666448872536421 +karman_re50,sr,142,56.8,force,upper_fx,0.0028671466279774904 +karman_re50,sr,142,56.8,force,upper_fy,0.004274752922356129 +karman_re50,sr,142,56.8,force,lower_fx,-0.004662967752665281 +karman_re50,sr,142,56.8,force,lower_fy,-0.003063881304115057 +karman_re50,sr,143,57.2,force,front_fx,0.002758450573310256 +karman_re50,sr,143,57.2,force,front_fy,-0.0032625633757561445 +karman_re50,sr,143,57.2,force,upper_fx,0.002797502325847745 +karman_re50,sr,143,57.2,force,upper_fy,0.0039886548183858395 +karman_re50,sr,143,57.2,force,lower_fx,-0.004779620096087456 +karman_re50,sr,143,57.2,force,lower_fy,-0.003036735113710165 +karman_re50,sr,144,57.6,force,front_fx,0.002689361572265625 +karman_re50,sr,144,57.6,force,front_fy,-0.0024560035672038794 +karman_re50,sr,144,57.6,force,upper_fx,0.002502585295587778 +karman_re50,sr,144,57.6,force,upper_fy,0.003662281669676304 +karman_re50,sr,144,57.6,force,lower_fx,-0.004441044293344021 +karman_re50,sr,144,57.6,force,lower_fy,-0.0030433740466833115 +karman_re50,sr,145,58.0,force,front_fx,0.0022403965704143047 +karman_re50,sr,145,58.0,force,front_fy,-0.0014077052474021912 +karman_re50,sr,145,58.0,force,upper_fx,0.002019597217440605 +karman_re50,sr,145,58.0,force,upper_fy,0.003394019789993763 +karman_re50,sr,145,58.0,force,lower_fx,-0.0037254763301461935 +karman_re50,sr,145,58.0,force,lower_fy,-0.003164878813549876 +karman_re50,sr,146,58.4,force,front_fx,0.001540375524200499 +karman_re50,sr,146,58.4,force,front_fy,-0.0003300095268059522 +karman_re50,sr,146,58.4,force,upper_fx,0.0014125407906249166 +karman_re50,sr,146,58.4,force,upper_fy,0.003221099963411689 +karman_re50,sr,146,58.4,force,lower_fx,-0.002744336612522602 +karman_re50,sr,146,58.4,force,lower_fy,-0.003397173248231411 +karman_re50,sr,147,58.8,force,front_fx,0.0008441180689260364 +karman_re50,sr,147,58.8,force,front_fy,0.0006276975618675351 +karman_re50,sr,147,58.8,force,upper_fx,0.0007211028132587671 +karman_re50,sr,147,58.8,force,upper_fy,0.0031072692945599556 +karman_re50,sr,147,58.8,force,lower_fx,-0.0016213749768212438 +karman_re50,sr,147,58.8,force,lower_fy,-0.0036653142888098955 +karman_re50,sr,148,59.2,force,front_fx,0.00038458031485788524 +karman_re50,sr,148,59.2,force,front_fy,0.0014253685949370265 +karman_re50,sr,148,59.2,force,upper_fx,-5.761844658991322e-05 +karman_re50,sr,148,59.2,force,upper_fy,0.003006933955475688 +karman_re50,sr,148,59.2,force,lower_fx,-0.00046975736040621996 +karman_re50,sr,148,59.2,force,lower_fy,-0.003910518251359463 +karman_re50,sr,149,59.6,force,front_fx,0.00027531900559552014 +karman_re50,sr,149,59.6,force,front_fy,0.0020977782551199198 +karman_re50,sr,149,59.6,force,upper_fx,-0.0009444149327464402 +karman_re50,sr,149,59.6,force,upper_fy,0.002932835603132844 +karman_re50,sr,149,59.6,force,lower_fx,0.0006096651195548475 +karman_re50,sr,149,59.6,force,lower_fy,-0.004124851431697607 +karman_re50,sr,150,60.0,force,front_fx,0.0005186187336221337 +karman_re50,sr,150,60.0,force,front_fy,0.002694995142519474 +karman_re50,sr,150,60.0,force,upper_fx,-0.0019444116624072194 +karman_re50,sr,150,60.0,force,upper_fy,0.002919960068538785 +karman_re50,sr,150,60.0,force,lower_fx,0.0015281655360013247 +karman_re50,sr,150,60.0,force,lower_fy,-0.004313605837523937 +karman_re50,sr,151,60.4,force,front_fx,0.0010493005393072963 +karman_re50,sr,151,60.4,force,front_fy,0.0032205560710281134 +karman_re50,sr,151,60.4,force,upper_fx,-0.0029915887862443924 +karman_re50,sr,151,60.4,force,upper_fy,0.002970359055325389 +karman_re50,sr,151,60.4,force,lower_fx,0.0022154883481562138 +karman_re50,sr,151,60.4,force,lower_fy,-0.004445618484169245 +karman_re50,sr,152,60.8,force,front_fx,0.0017255954444408417 +karman_re50,sr,152,60.8,force,front_fy,0.003599049523472786 +karman_re50,sr,152,60.8,force,upper_fx,-0.003941533621400595 +karman_re50,sr,152,60.8,force,upper_fy,0.003037182381376624 +karman_re50,sr,152,60.8,force,lower_fx,0.0026530774775892496 +karman_re50,sr,152,60.8,force,lower_fy,-0.00445599015802145 +karman_re50,sr,153,61.2,force,front_fx,0.002347637200728059 +karman_re50,sr,153,61.2,force,front_fy,0.003688634606078267 +karman_re50,sr,153,61.2,force,upper_fx,-0.004588454496115446 +karman_re50,sr,153,61.2,force,upper_fy,0.003064896212890744 +karman_re50,sr,153,61.2,force,lower_fx,0.0028525693342089653 +karman_re50,sr,153,61.2,force,lower_fy,-0.004316419363021851 +karman_re50,sr,154,61.6,force,front_fx,0.0027256193570792675 +karman_re50,sr,154,61.6,force,front_fy,0.0033678209874778986 +karman_re50,sr,154,61.6,force,upper_fx,-0.004791144281625748 +karman_re50,sr,154,61.6,force,upper_fy,0.0030426678713411093 +karman_re50,sr,154,61.6,force,lower_fx,0.0028251558542251587 +karman_re50,sr,154,61.6,force,lower_fy,-0.004045208916068077 +karman_re50,sr,155,62.0,force,front_fx,0.002730804495513439 +karman_re50,sr,155,62.0,force,front_fy,0.0026229978539049625 +karman_re50,sr,155,62.0,force,upper_fx,-0.004528333432972431 +karman_re50,sr,155,62.0,force,upper_fy,0.003036295995116234 +karman_re50,sr,155,62.0,force,lower_fx,0.0025708209723234177 +karman_re50,sr,155,62.0,force,lower_fy,-0.003719813423231244 +karman_re50,sr,156,62.4,force,front_fx,0.002343027153983712 +karman_re50,sr,156,62.4,force,front_fy,0.0016041521448642015 +karman_re50,sr,156,62.4,force,upper_fx,-0.0038726949132978916 +karman_re50,sr,156,62.4,force,upper_fy,0.0031347244512289762 +karman_re50,sr,156,62.4,force,lower_fx,0.0021167572122067213 +karman_re50,sr,156,62.4,force,lower_fy,-0.0034357933327555656 +karman_re50,sr,157,62.8,force,front_fx,0.0016725227469578385 +karman_re50,sr,157,62.8,force,front_fy,0.0005189255462028086 +karman_re50,sr,157,62.8,force,upper_fx,-0.0029318565502762794 +karman_re50,sr,157,62.8,force,upper_fy,0.0033507978077977896 +karman_re50,sr,157,62.8,force,lower_fx,0.0015275611076503992 +karman_re50,sr,157,62.8,force,lower_fy,-0.0032468356657773256 +karman_re50,sr,158,63.2,force,front_fx,0.0009575299336574972 +karman_re50,sr,158,63.2,force,front_fy,-0.00046740315156057477 +karman_re50,sr,158,63.2,force,upper_fx,-0.0018252137815579772 +karman_re50,sr,158,63.2,force,upper_fy,0.003617658978328109 +karman_re50,sr,158,63.2,force,lower_fx,0.0008493257337249815 +karman_re50,sr,158,63.2,force,lower_fy,-0.0031250512693077326 +karman_re50,sr,159,63.6,force,front_fx,0.00044309694203548133 +karman_re50,sr,159,63.6,force,front_fy,-0.0012927044881507754 +karman_re50,sr,159,63.6,force,upper_fx,-0.000673120841383934 +karman_re50,sr,159,63.6,force,upper_fy,0.0038678315468132496 +karman_re50,sr,159,63.6,force,lower_fx,8.7547923612874e-05 +karman_re50,sr,159,63.6,force,lower_fy,-0.003023269586265087 +karman_re50,sr,160,64.0,force,front_fx,0.0002687343512661755 +karman_re50,sr,160,64.0,force,front_fy,-0.001984909176826477 +karman_re50,sr,160,64.0,force,upper_fx,0.00042706739623099566 +karman_re50,sr,160,64.0,force,upper_fy,0.0040873317047953606 +karman_re50,sr,160,64.0,force,lower_fx,-0.0007788579678162932 +karman_re50,sr,160,64.0,force,lower_fy,-0.0029411606956273317 +karman_re50,sr,161,64.4,force,front_fx,0.00045237981248646975 +karman_re50,sr,161,64.4,force,front_fy,-0.0025930588599294424 +karman_re50,sr,161,64.4,force,upper_fx,0.0013795644044876099 +karman_re50,sr,161,64.4,force,upper_fy,0.004283586051315069 +karman_re50,sr,161,64.4,force,lower_fx,-0.001759418286383152 +karman_re50,sr,161,64.4,force,lower_fy,-0.002916068769991398 +karman_re50,sr,162,64.8,force,front_fx,0.0009404734591953456 +karman_re50,sr,162,64.8,force,front_fy,-0.003135188715532422 +karman_re50,sr,162,64.8,force,upper_fx,0.0021122207399457693 +karman_re50,sr,162,64.8,force,upper_fy,0.004429145250469446 +karman_re50,sr,162,64.8,force,lower_fx,-0.0028079322073608637 +karman_re50,sr,162,64.8,force,lower_fy,-0.0029584448784589767 +karman_re50,sr,163,65.2,force,front_fx,0.0016041529597714543 +karman_re50,sr,163,65.2,force,front_fy,-0.003550167428329587 +karman_re50,sr,163,65.2,force,upper_fx,0.0025928604882210493 +karman_re50,sr,163,65.2,force,upper_fy,0.004465047270059586 +karman_re50,sr,163,65.2,force,lower_fx,-0.0037901231553405523 +karman_re50,sr,163,65.2,force,lower_fy,-0.003026628401130438 +karman_re50,sr,164,65.6,force,front_fx,0.0022510180715471506 +karman_re50,sr,164,65.6,force,front_fy,-0.003703092224895954 +karman_re50,sr,164,65.6,force,upper_fx,0.0028340958524495363 +karman_re50,sr,164,65.6,force,upper_fy,0.004350731149315834 +karman_re50,sr,164,65.6,force,lower_fx,-0.004505862947553396 +karman_re50,sr,164,65.6,force,lower_fy,-0.003063353942707181 +karman_re50,sr,165,66.0,force,front_fx,0.0026846686378121376 +karman_re50,sr,165,66.0,force,front_fy,-0.003459024475887418 +karman_re50,sr,165,66.0,force,upper_fx,0.002848462201654911 +karman_re50,sr,165,66.0,force,upper_fy,0.004100397229194641 +karman_re50,sr,165,66.0,force,lower_fx,-0.004792726133018732 +karman_re50,sr,165,66.0,force,lower_fy,-0.0030461722053587437 +karman_re50,sr,166,66.4,force,front_fx,0.002764162141829729 +karman_re50,sr,166,66.4,force,front_fy,-0.002784356474876404 +karman_re50,sr,166,66.4,force,upper_fx,0.002634461037814617 +karman_re50,sr,166,66.4,force,upper_fy,0.00377778522670269 +karman_re50,sr,166,66.4,force,lower_fx,-0.004610375966876745 +karman_re50,sr,166,66.4,force,lower_fy,-0.003030732274055481 +karman_re50,sr,167,66.8,force,front_fx,0.0024428782053291798 +karman_re50,sr,167,66.8,force,front_fy,-0.0018012160435318947 +karman_re50,sr,167,66.8,force,upper_fx,0.002213099505752325 +karman_re50,sr,167,66.8,force,upper_fy,0.003481091232970357 +karman_re50,sr,167,66.8,force,lower_fx,-0.004018019884824753 +karman_re50,sr,167,66.8,force,lower_fy,-0.0031072453130036592 +karman_re50,sr,168,67.2,force,front_fx,0.001804203144274652 +karman_re50,sr,168,67.2,force,front_fy,-0.000712668290361762 +karman_re50,sr,168,67.2,force,upper_fx,0.0016425661742687225 +karman_re50,sr,168,67.2,force,upper_fy,0.003275251481682062 +karman_re50,sr,168,67.2,force,lower_fx,-0.0031198516953736544 +karman_re50,sr,168,67.2,force,lower_fy,-0.003305715275928378 +karman_re50,sr,169,67.6,force,front_fx,0.0010777292773127556 +karman_re50,sr,169,67.6,force,front_fy,0.00029959241510368884 +karman_re50,sr,169,67.6,force,upper_fx,0.0009784240974113345 +karman_re50,sr,169,67.6,force,upper_fy,0.003145139431580901 +karman_re50,sr,169,67.6,force,lower_fx,-0.0020365160889923573 +karman_re50,sr,169,67.6,force,lower_fy,-0.0035693487152457237 +karman_re50,sr,170,68.0,force,front_fx,0.0005125116440467536 +karman_re50,sr,170,68.0,force,front_fy,0.001154560362920165 +karman_re50,sr,170,68.0,force,upper_fx,0.00023352140851784497 +karman_re50,sr,170,68.0,force,upper_fy,0.0030402287375181913 +karman_re50,sr,170,68.0,force,lower_fx,-0.0008830895530991256 +karman_re50,sr,170,68.0,force,lower_fy,-0.003824155079200864 +karman_re50,sr,171,68.4,force,front_fx,0.0002727954415604472 +karman_re50,sr,171,68.4,force,front_fy,0.0018656147876754403 +karman_re50,sr,171,68.4,force,upper_fx,-0.0006116076838225126 +karman_re50,sr,171,68.4,force,upper_fy,0.002952569629997015 +karman_re50,sr,171,68.4,force,lower_fx,0.0002335606113774702 +karman_re50,sr,171,68.4,force,lower_fy,-0.004049818497151136 +karman_re50,sr,172,68.8,force,front_fx,0.00039342595846392214 +karman_re50,sr,172,68.8,force,front_fy,0.002486094832420349 +karman_re50,sr,172,68.8,force,upper_fx,-0.0015712347812950611 +karman_re50,sr,172,68.8,force,upper_fy,0.0029174780938774347 +karman_re50,sr,172,68.8,force,lower_fx,0.001221304526552558 +karman_re50,sr,172,68.8,force,lower_fy,-0.0042504738084971905 +karman_re50,sr,173,69.2,force,front_fx,0.0008328265976160765 +karman_re50,sr,173,69.2,force,front_fy,0.003042975440621376 +karman_re50,sr,173,69.2,force,upper_fx,-0.002613875549286604 +karman_re50,sr,173,69.2,force,upper_fy,0.002949462039396167 +karman_re50,sr,173,69.2,force,lower_fx,0.0019974589813500643 +karman_re50,sr,173,69.2,force,lower_fy,-0.004410185851156712 +karman_re50,sr,174,69.6,force,front_fx,0.0014765402302145958 +karman_re50,sr,174,69.6,force,front_fy,0.0034882365725934505 +karman_re50,sr,174,69.6,force,upper_fx,-0.0036234697327017784 +karman_re50,sr,174,69.6,force,upper_fy,0.0030162129551172256 +karman_re50,sr,174,69.6,force,lower_fx,0.0025231975596398115 +karman_re50,sr,174,69.6,force,lower_fy,-0.004470134153962135 +karman_re50,sr,175,70.0,force,front_fx,0.0021398477256298065 +karman_re50,sr,175,70.0,force,front_fy,0.0036993727553635836 +karman_re50,sr,175,70.0,force,upper_fx,-0.004402251914143562 +karman_re50,sr,175,70.0,force,upper_fy,0.003060586517676711 +karman_re50,sr,175,70.0,force,lower_fx,0.0028074695728719234 +karman_re50,sr,175,70.0,force,lower_fy,-0.004381454084068537 +karman_re50,sr,176,70.4,force,front_fx,0.0026270910166203976 +karman_re50,sr,176,70.4,force,front_fy,0.003535796422511339 +karman_re50,sr,176,70.4,force,upper_fx,-0.004774050787091255 +karman_re50,sr,176,70.4,force,upper_fy,0.003050588071346283 +karman_re50,sr,176,70.4,force,lower_fx,0.0028612397145479918 +karman_re50,sr,176,70.4,force,lower_fy,-0.004153565037995577 +karman_re50,sr,177,70.8,force,front_fx,0.0027761636301875114 +karman_re50,sr,177,70.8,force,front_fy,0.002935264725238085 +karman_re50,sr,177,70.8,force,upper_fx,-0.004674303811043501 +karman_re50,sr,177,70.8,force,upper_fy,0.0030284717213362455 +karman_re50,sr,177,70.8,force,lower_fx,0.0026893941685557365 +karman_re50,sr,177,70.8,force,lower_fy,-0.003837331896647811 +karman_re50,sr,178,71.2,force,front_fx,0.002526236465200782 +karman_re50,sr,178,71.2,force,front_fy,0.001991820987313986 +karman_re50,sr,178,71.2,force,upper_fx,-0.0041489796712994576 +karman_re50,sr,178,71.2,force,upper_fy,0.0030859005637466908 +karman_re50,sr,178,71.2,force,lower_fx,0.0023017716594040394 +karman_re50,sr,178,71.2,force,lower_fy,-0.0035292136017233133 +karman_re50,sr,179,71.6,force,front_fx,0.0019352425588294864 +karman_re50,sr,179,71.6,force,front_fy,0.0009070014348253608 +karman_re50,sr,179,71.6,force,upper_fx,-0.0032973862253129482 +karman_re50,sr,179,71.6,force,upper_fy,0.0032650509383529425 +karman_re50,sr,179,71.6,force,lower_fx,0.0017534825019538403 +karman_re50,sr,179,71.6,force,lower_fy,-0.0033060628920793533 +karman_re50,sr,180,72.0,force,front_fx,0.0012020221911370754 +karman_re50,sr,180,72.0,force,front_fy,-0.00012766532017849386 +karman_re50,sr,180,72.0,force,upper_fx,-0.0022388827055692673 +karman_re50,sr,180,72.0,force,upper_fy,0.00352048990316689 +karman_re50,sr,180,72.0,force,lower_fx,0.0011027255095541477 +karman_re50,sr,180,72.0,force,lower_fy,-0.0031654692720621824 +karman_re50,sr,181,72.4,force,front_fx,0.0005919105024076998 +karman_re50,sr,181,72.4,force,front_fy,-0.0010128935100510716 +karman_re50,sr,181,72.4,force,upper_fx,-0.00109084602445364 +karman_re50,sr,181,72.4,force,upper_fy,0.0037792993243783712 +karman_re50,sr,181,72.4,force,lower_fx,0.00037143781082704663 +karman_re50,sr,181,72.4,force,lower_fy,-0.0030570856761187315 +karman_re50,sr,182,72.8,force,front_fx,0.00028905487852171063 +karman_re50,sr,182,72.8,force,front_fy,-0.0017501338152214885 +karman_re50,sr,182,72.8,force,upper_fx,4.119070581509732e-05 +karman_re50,sr,182,72.8,force,upper_fy,0.004008586518466473 +karman_re50,sr,182,72.8,force,lower_fx,-0.00045202753972262144 +karman_re50,sr,182,72.8,force,lower_fy,-0.0029645657632499933 +karman_re50,sr,183,73.2,force,front_fx,0.00034713346394710243 +karman_re50,sr,183,73.2,force,front_fy,-0.002379595534875989 +karman_re50,sr,183,73.2,force,upper_fx,0.0010584670817479491 +karman_re50,sr,183,73.2,force,upper_fy,0.004216241184622049 +karman_re50,sr,183,73.2,force,lower_fx,-0.001391252619214356 +karman_re50,sr,183,73.2,force,lower_fy,-0.0029175288509577513 +karman_re50,sr,184,73.6,force,front_fx,0.0007353376713581383 +karman_re50,sr,184,73.6,force,front_fy,-0.0029486585408449173 +karman_re50,sr,184,73.6,force,upper_fx,0.001877090078778565 +karman_re50,sr,184,73.6,force,upper_fy,0.004387394990772009 +karman_re50,sr,184,73.6,force,lower_fx,-0.0024256333708763123 +karman_re50,sr,184,73.6,force,lower_fy,-0.002939208410680294 +karman_re50,sr,185,74.0,force,front_fx,0.0013538575731217861 +karman_re50,sr,185,74.0,force,front_fy,-0.0034214325714856386 +karman_re50,sr,185,74.0,force,upper_fx,0.0024477336555719376 +karman_re50,sr,185,74.0,force,upper_fy,0.004469722975045443 +karman_re50,sr,185,74.0,force,lower_fx,-0.003455157857388258 +karman_re50,sr,185,74.0,force,lower_fy,-0.003004577476531267 +karman_re50,sr,186,74.4,force,front_fx,0.0020298075396567583 +karman_re50,sr,186,74.4,force,front_fy,-0.0036857554223388433 +karman_re50,sr,186,74.4,force,upper_fx,0.0027720206417143345 +karman_re50,sr,186,74.4,force,upper_fy,0.0044095576740801334 +karman_re50,sr,186,74.4,force,lower_fx,-0.004291430581361055 +karman_re50,sr,186,74.4,force,lower_fy,-0.0030545347835868597 +karman_re50,sr,187,74.8,force,front_fx,0.00256221741437912 +karman_re50,sr,187,74.8,force,front_fy,-0.003598277224227786 +karman_re50,sr,187,74.8,force,upper_fx,0.0028682672418653965 +karman_re50,sr,187,74.8,force,upper_fy,0.004202090669423342 +karman_re50,sr,187,74.8,force,lower_fx,-0.004745463375002146 +karman_re50,sr,187,74.8,force,lower_fy,-0.0030564675107598305 +karman_re50,sr,188,75.2,force,front_fx,0.0027818731032311916 +karman_re50,sr,188,75.2,force,front_fy,-0.0030733931344002485 +karman_re50,sr,188,75.2,force,upper_fx,0.00273831095546484 +karman_re50,sr,188,75.2,force,upper_fy,0.003895942587405443 +karman_re50,sr,188,75.2,force,lower_fx,-0.004727768711745739 +karman_re50,sr,188,75.2,force,lower_fy,-0.0030293974559754133 +karman_re50,sr,189,75.6,force,front_fx,0.002603622619062662 +karman_re50,sr,189,75.6,force,front_fy,-0.0021796703804284334 +karman_re50,sr,189,75.6,force,upper_fx,0.002387923886999488 +karman_re50,sr,189,75.6,force,upper_fy,0.0035806363448500633 +karman_re50,sr,189,75.6,force,lower_fx,-0.004271865356713533 +karman_re50,sr,189,75.6,force,lower_fy,-0.003065912751480937 +karman_re50,sr,190,76.0,force,front_fx,0.002058313461020589 +karman_re50,sr,190,76.0,force,front_fy,-0.0011051434557884932 +karman_re50,sr,190,76.0,force,upper_fx,0.0018624881049618125 +karman_re50,sr,190,76.0,force,upper_fy,0.0033400715328752995 +karman_re50,sr,190,76.0,force,lower_fx,-0.003471293253824115 +karman_re50,sr,190,76.0,force,lower_fy,-0.003224962158128619 +karman_re50,sr,191,76.4,force,front_fx,0.0013339919969439507 +karman_re50,sr,191,76.4,force,front_fy,-4.9963487981585786e-05 +karman_re50,sr,191,76.4,force,upper_fx,0.0012270263396203518 +karman_re50,sr,191,76.4,force,upper_fy,0.0031876659486442804 +karman_re50,sr,191,76.4,force,lower_fx,-0.0024426693562418222 +karman_re50,sr,191,76.4,force,lower_fy,-0.003471778007224202 +karman_re50,sr,192,76.8,force,front_fx,0.0006800791597925127 +karman_re50,sr,192,76.8,force,front_fy,0.0008647830691188574 +karman_re50,sr,192,76.8,force,upper_fx,0.0005111105274409056 +karman_re50,sr,192,76.8,force,upper_fy,0.0030759975779801607 +karman_re50,sr,192,76.8,force,lower_fx,-0.0013035816373303533 +karman_re50,sr,192,76.8,force,lower_fy,-0.0037348857149481773 +karman_re50,sr,193,77.2,force,front_fx,0.0003170787822455168 +karman_re50,sr,193,77.2,force,front_fy,0.0016221064142882824 +karman_re50,sr,193,77.2,force,upper_fx,-0.0002936669916380197 +karman_re50,sr,193,77.2,force,upper_fy,0.0029788557440042496 +karman_re50,sr,193,77.2,force,lower_fx,-0.00015959437587298453 +karman_re50,sr,193,77.2,force,lower_fy,-0.003968337085098028 +karman_re50,sr,194,77.6,force,front_fx,0.00030974659603089094 +karman_re50,sr,194,77.6,force,front_fy,0.002269915072247386 +karman_re50,sr,194,77.6,force,upper_fx,-0.0012105684727430344 +karman_re50,sr,194,77.6,force,upper_fy,0.002921674633398652 +karman_re50,sr,194,77.6,force,lower_fx,0.0008863022085279226 +karman_re50,sr,194,77.6,force,lower_fy,-0.004180019721388817 +karman_re50,sr,195,78.0,force,front_fx,0.0006432596128433943 +karman_re50,sr,195,78.0,force,front_fy,0.002850065939128399 +karman_re50,sr,195,78.0,force,upper_fx,-0.0022321275901049376 +karman_re50,sr,195,78.0,force,upper_fy,0.0029315007850527763 +karman_re50,sr,195,78.0,force,lower_fx,0.0017461921088397503 +karman_re50,sr,195,78.0,force,lower_fy,-0.004362092353403568 +karman_re50,sr,196,78.4,force,front_fx,0.0012304825941100717 +karman_re50,sr,196,78.4,force,front_fy,0.0033462056890130043 +karman_re50,sr,196,78.4,force,upper_fx,-0.003274381859228015 +karman_re50,sr,196,78.4,force,upper_fy,0.0029925883281975985 +karman_re50,sr,196,78.4,force,lower_fx,0.002362527884542942 +karman_re50,sr,196,78.4,force,lower_fy,-0.004464758560061455 +karman_re50,sr,197,78.8,force,front_fx,0.001910617109388113 +karman_re50,sr,197,78.8,force,front_fy,0.0036608169320970774 +karman_re50,sr,197,78.8,force,upper_fx,-0.004162713885307312 +karman_re50,sr,197,78.8,force,upper_fy,0.0030496218241751194 +karman_re50,sr,197,78.8,force,lower_fx,0.0027291688602417707 +karman_re50,sr,197,78.8,force,lower_fy,-0.004432079382240772 +karman_re50,sr,198,79.2,force,front_fx,0.002483078045770526 +karman_re50,sr,198,79.2,force,front_fy,0.00364444637671113 +karman_re50,sr,198,79.2,force,upper_fx,-0.0046959067694842815 +karman_re50,sr,198,79.2,force,upper_fy,0.003057843539863825 +karman_re50,sr,198,79.2,force,lower_fx,0.002866300754249096 +karman_re50,sr,198,79.2,force,lower_fy,-0.004248579498380423 +karman_re50,sr,199,79.6,force,front_fx,0.002768319332972169 +karman_re50,sr,199,79.6,force,front_fy,0.003198587102815509 +karman_re50,sr,199,79.6,force,upper_fx,-0.004762561991810799 +karman_re50,sr,199,79.6,force,upper_fy,0.0030326684936881065 +karman_re50,sr,199,79.6,force,lower_fx,0.0027781021781265736 +karman_re50,sr,199,79.6,force,lower_fy,-0.003954329993575811 +karman_re50,sr,200,80.0,force,front_fx,0.002664273139089346 +karman_re50,sr,200,80.0,force,front_fy,0.00235930597409606 +karman_re50,sr,200,80.0,force,upper_fx,-0.004380560480058193 +karman_re50,sr,200,80.0,force,upper_fy,0.00305262953042984 +karman_re50,sr,200,80.0,force,lower_fx,0.002465613419190049 +karman_re50,sr,200,80.0,force,lower_fy,-0.0036340809892863035 +karman_re50,sr,201,80.4,force,front_fx,0.0021815947256982327 +karman_re50,sr,201,80.4,force,front_fy,0.0013021767372265458 +karman_re50,sr,201,80.4,force,upper_fx,-0.003633829765021801 +karman_re50,sr,201,80.4,force,upper_fy,0.0031891444232314825 +karman_re50,sr,201,80.4,force,lower_fx,0.0019673104397952557 +karman_re50,sr,201,80.4,force,lower_fy,-0.0033769342117011547 +karman_re50,sr,202,80.8,force,front_fx,0.001466117100790143 +karman_re50,sr,202,80.8,force,front_fy,0.00023196903930511326 +karman_re50,sr,202,80.8,force,upper_fx,-0.0026378724724054337 +karman_re50,sr,202,80.8,force,upper_fy,0.003424748545512557 +karman_re50,sr,202,80.8,force,lower_fx,0.0013467117678374052 +karman_re50,sr,202,80.8,force,lower_fy,-0.0032108279410749674 +karman_re50,sr,203,81.2,force,front_fx,0.0007853475399315357 +karman_re50,sr,203,81.2,force,front_fy,-0.0007123484974727035 +karman_re50,sr,203,81.2,force,upper_fx,-0.00151077623013407 +karman_re50,sr,203,81.2,force,upper_fy,0.003687293268740177 +karman_re50,sr,203,81.2,force,lower_fx,0.0006449155043810606 +karman_re50,sr,203,81.2,force,lower_fy,-0.003094383282586932 +karman_re50,sr,204,81.6,force,front_fx,0.0003568572283256799 +karman_re50,sr,204,81.6,force,front_fy,-0.0014957399107515812 +karman_re50,sr,204,81.6,force,upper_fx,-0.000361414480721578 +karman_re50,sr,204,81.6,force,upper_fy,0.003927305806428194 +karman_re50,sr,204,81.6,force,lower_fx,-0.00014198740245774388 +karman_re50,sr,204,81.6,force,lower_fy,-0.002993868663907051 +karman_re50,sr,205,82.0,force,front_fx,0.00028546908288262784 +karman_re50,sr,205,82.0,force,front_fy,-0.002159034600481391 +karman_re50,sr,205,82.0,force,upper_fx,0.0007103335810825229 +karman_re50,sr,205,82.0,force,upper_fy,0.004143438767641783 +karman_re50,sr,205,82.0,force,lower_fx,-0.0010370895033702254 +karman_re50,sr,205,82.0,force,lower_fy,-0.002926723100244999 +karman_re50,sr,206,82.4,force,front_fx,0.000561852240934968 +karman_re50,sr,206,82.4,force,front_fy,-0.002750513842329383 +karman_re50,sr,206,82.4,force,upper_fx,0.0016091844299808145 +karman_re50,sr,206,82.4,force,upper_fy,0.004333644639700651 +karman_re50,sr,206,82.4,force,lower_fx,-0.0020433254539966583 +karman_re50,sr,206,82.4,force,lower_fy,-0.002925260690972209 +karman_re50,sr,207,82.8,force,front_fx,0.001113459118641913 +karman_re50,sr,207,82.8,force,front_fy,-0.0032655142713338137 +karman_re50,sr,207,82.8,force,upper_fx,0.002270954195410013 +karman_re50,sr,207,82.8,force,upper_fy,0.004455848131328821 +karman_re50,sr,207,82.8,force,lower_fx,-0.0030927113257348537 +karman_re50,sr,207,82.8,force,lower_fy,-0.0029806867241859436 +karman_re50,sr,208,83.2,force,front_fx,0.00179244892206043 +karman_re50,sr,208,83.2,force,front_fy,-0.0036262336652725935 +karman_re50,sr,208,83.2,force,upper_fx,0.0026804711669683456 +karman_re50,sr,208,83.2,force,upper_fy,0.004449264612048864 +karman_re50,sr,208,83.2,force,lower_fx,-0.004025184083729982 +karman_re50,sr,208,83.2,force,lower_fy,-0.0030416897498071194 +karman_re50,sr,209,83.6,force,front_fx,0.002397593343630433 +karman_re50,sr,209,83.6,force,front_fy,-0.0036794892512261868 +karman_re50,sr,209,83.6,force,upper_fx,0.00285809813067317 +karman_re50,sr,209,83.6,force,upper_fy,0.004291044548153877 +karman_re50,sr,209,83.6,force,lower_fx,-0.004636039026081562 +karman_re50,sr,209,83.6,force,lower_fy,-0.0030605641659349203 +karman_re50,sr,210,84.0,force,front_fx,0.002745406934991479 +karman_re50,sr,210,84.0,force,front_fy,-0.0033121660817414522 +karman_re50,sr,210,84.0,force,upper_fx,0.0028116812463849783 +karman_re50,sr,210,84.0,force,upper_fy,0.004012236371636391 +karman_re50,sr,210,84.0,force,lower_fx,-0.0047883642837405205 +karman_re50,sr,210,84.0,force,lower_fy,-0.0030344927217811346 +karman_re50,sr,211,84.4,force,front_fx,0.002715339884161949 +karman_re50,sr,211,84.4,force,front_fy,-0.002534880070015788 +karman_re50,sr,211,84.4,force,upper_fx,0.0025386621709913015 +karman_re50,sr,211,84.4,force,upper_fy,0.003689371980726719 +karman_re50,sr,211,84.4,force,lower_fx,-0.004481207579374313 +karman_re50,sr,211,84.4,force,lower_fy,-0.00304122781381011 +karman_re50,sr,212,84.8,force,front_fx,0.002291490091010928 +karman_re50,sr,212,84.8,force,front_fy,-0.0014997187536209822 +karman_re50,sr,212,84.8,force,upper_fx,0.0020688974764198065 +karman_re50,sr,212,84.8,force,upper_fy,0.00341662485152483 +karman_re50,sr,212,84.8,force,lower_fx,-0.0037919110618531704 +karman_re50,sr,212,84.8,force,lower_fy,-0.003155692480504513 +karman_re50,sr,213,85.2,force,front_fx,0.0016018110327422619 +karman_re50,sr,213,85.2,force,front_fy,-0.00041910717845894396 +karman_re50,sr,213,85.2,force,upper_fx,0.0014656243147328496 +karman_re50,sr,213,85.2,force,upper_fy,0.003235330805182457 +karman_re50,sr,213,85.2,force,lower_fx,-0.0028337801340967417 +karman_re50,sr,213,85.2,force,lower_fy,-0.003378709778189659 +karman_re50,sr,214,85.6,force,front_fx,0.0008914479403756559 +karman_re50,sr,214,85.6,force,front_fy,0.0005527340690605342 +karman_re50,sr,214,85.6,force,upper_fx,0.0007774536497890949 +karman_re50,sr,214,85.6,force,upper_fy,0.003113958053290844 +karman_re50,sr,214,85.6,force,lower_fx,-0.0017206663032993674 +karman_re50,sr,214,85.6,force,lower_fy,-0.0036400926765054464 +karman_re50,sr,215,86.0,force,front_fx,0.00040838506538420916 +karman_re50,sr,215,86.0,force,front_fy,0.0013635866343975067 +karman_re50,sr,215,86.0,force,upper_fx,8.320066626765765e-06 +karman_re50,sr,215,86.0,force,upper_fy,0.0030103540048003197 +karman_re50,sr,215,86.0,force,lower_fx,-0.000566799018997699 +karman_re50,sr,215,86.0,force,lower_fy,-0.0038847913965582848 +karman_re50,sr,216,86.4,force,front_fx,0.00027184351347386837 +karman_re50,sr,216,86.4,force,front_fy,0.002045263070613146 +karman_re50,sr,216,86.4,force,upper_fx,-0.0008652000688016415 +karman_re50,sr,216,86.4,force,upper_fy,0.0029344051145017147 +karman_re50,sr,216,86.4,force,lower_fx,0.0005263236816972494 +karman_re50,sr,216,86.4,force,lower_fy,-0.004105290863662958 +karman_re50,sr,217,86.8,force,front_fx,0.0004884049412794411 +karman_re50,sr,217,86.8,force,front_fy,0.002647669054567814 +karman_re50,sr,217,86.8,force,upper_fx,-0.0018533350666984916 +karman_re50,sr,217,86.8,force,upper_fy,0.0029205307364463806 +karman_re50,sr,217,86.8,force,lower_fx,0.0014629987999796867 +karman_re50,sr,217,86.8,force,lower_fy,-0.004303327761590481 +karman_re50,sr,218,87.2,force,front_fx,0.0009976918809115887 +karman_re50,sr,218,87.2,force,front_fy,0.003180801635608077 +karman_re50,sr,218,87.2,force,upper_fx,-0.0029044856783002615 +karman_re50,sr,218,87.2,force,upper_fy,0.0029689790681004524 +karman_re50,sr,218,87.2,force,lower_fx,0.002170002553611994 +karman_re50,sr,218,87.2,force,lower_fy,-0.004442128352820873 +karman_re50,sr,219,87.6,force,front_fx,0.001667504315264523 +karman_re50,sr,219,87.6,force,front_fy,0.003577506635338068 +karman_re50,sr,219,87.6,force,upper_fx,-0.003874480491504073 +karman_re50,sr,219,87.6,force,upper_fy,0.0030335464980453253 +karman_re50,sr,219,87.6,force,lower_fx,0.0026234614197164774 +karman_re50,sr,219,87.6,force,lower_fy,-0.004461647942662239 +karman_re50,sr,220,88.0,force,front_fx,0.0023031472228467464 +karman_re50,sr,220,88.0,force,front_fy,0.003698152955621481 +karman_re50,sr,220,88.0,force,upper_fx,-0.0045549883507192135 +karman_re50,sr,220,88.0,force,upper_fy,0.0030602007173001766 +karman_re50,sr,220,88.0,force,lower_fx,0.0028414095286279917 +karman_re50,sr,220,88.0,force,lower_fy,-0.004330163821578026 +karman_re50,sr,221,88.4,force,front_fx,0.0027073738165199757 +karman_re50,sr,221,88.4,force,front_fy,0.003411042969673872 +karman_re50,sr,221,88.4,force,upper_fx,-0.004795188084244728 +karman_re50,sr,221,88.4,force,upper_fy,0.0030394098721444607 +karman_re50,sr,221,88.4,force,lower_fx,0.002836412750184536 +karman_re50,sr,221,88.4,force,lower_fy,-0.004068207461386919 +karman_re50,sr,222,88.8,force,front_fx,0.0027517417911440134 +karman_re50,sr,222,88.8,force,front_fy,0.002699584700167179 +karman_re50,sr,222,88.8,force,upper_fx,-0.004566045477986336 +karman_re50,sr,222,88.8,force,upper_fy,0.0030346005223691463 +karman_re50,sr,222,88.8,force,lower_fx,0.0026040314696729183 +karman_re50,sr,222,88.8,force,lower_fy,-0.003746224567294121 +karman_re50,sr,223,89.2,force,front_fx,0.0023927560541778803 +karman_re50,sr,223,89.2,force,front_fy,0.0016962444642558694 +karman_re50,sr,223,89.2,force,upper_fx,-0.003937911242246628 +karman_re50,sr,223,89.2,force,upper_fy,0.0031271150801330805 +karman_re50,sr,223,89.2,force,lower_fx,0.0021657126490026712 +karman_re50,sr,223,89.2,force,lower_fy,-0.0034595991019159555 +karman_re50,sr,224,89.6,force,front_fx,0.001734384335577488 +karman_re50,sr,224,89.6,force,front_fy,0.0006089163944125175 +karman_re50,sr,224,89.6,force,upper_fx,-0.0030179708264768124 +karman_re50,sr,224,89.6,force,upper_fy,0.003334399778395891 +karman_re50,sr,224,89.6,force,lower_fx,0.0015815289225429296 +karman_re50,sr,224,89.6,force,lower_fy,-0.003262822050601244 +karman_re50,sr,225,90.0,force,front_fx,0.0010076870676130056 +karman_re50,sr,225,90.0,force,front_fy,-0.00038938180659897625 +karman_re50,sr,225,90.0,force,upper_fx,-0.0019269926706328988 +karman_re50,sr,225,90.0,force,upper_fy,0.0035925237461924553 +karman_re50,sr,225,90.0,force,lower_fx,0.0009064878686331213 +karman_re50,sr,225,90.0,force,lower_fy,-0.00313383131287992 +karman_re50,sr,226,90.4,force,front_fx,0.0004716796684078872 +karman_re50,sr,226,90.4,force,front_fy,-0.0012291999300941825 +karman_re50,sr,226,90.4,force,upper_fx,-0.0007720405119471252 +karman_re50,sr,226,90.4,force,upper_fy,0.0038421694189310074 +karman_re50,sr,226,90.4,force,lower_fx,0.00015311790048144758 +karman_re50,sr,226,90.4,force,lower_fy,-0.003027286846190691 +karman_re50,sr,227,90.8,force,front_fx,0.0002696366573218256 +karman_re50,sr,227,90.8,force,front_fy,-0.001929956371895969 +karman_re50,sr,227,90.8,force,upper_fx,0.0003389259800314903 +karman_re50,sr,227,90.8,force,upper_fy,0.004066853784024715 +karman_re50,sr,227,90.8,force,lower_fx,-0.0006994528230279684 +karman_re50,sr,227,90.8,force,lower_fy,-0.0029434573370963335 +karman_re50,sr,228,91.2,force,front_fx,0.0004255488747730851 +karman_re50,sr,228,91.2,force,front_fy,-0.0025435753632336855 +karman_re50,sr,228,91.2,force,upper_fx,0.0013108535204082727 +karman_re50,sr,228,91.2,force,upper_fy,0.004271096549928188 +karman_re50,sr,228,91.2,force,lower_fx,-0.001667884411290288 +karman_re50,sr,228,91.2,force,lower_fy,-0.002918619429692626 +karman_re50,sr,229,91.6,force,front_fx,0.0008902654517441988 +karman_re50,sr,229,91.6,force,front_fy,-0.0030921960715204477 +karman_re50,sr,229,91.6,force,upper_fx,0.0020619004499167204 +karman_re50,sr,229,91.6,force,upper_fy,0.004424579907208681 +karman_re50,sr,229,91.6,force,lower_fx,-0.0027163836639374495 +karman_re50,sr,229,91.6,force,lower_fy,-0.002958523342385888 +karman_re50,sr,230,92.0,force,front_fx,0.0015434692613780499 +karman_re50,sr,230,92.0,force,front_fy,-0.0035221714060753584 +karman_re50,sr,230,92.0,force,upper_fx,0.0025597838684916496 +karman_re50,sr,230,92.0,force,upper_fy,0.004469446372240782 +karman_re50,sr,230,92.0,force,lower_fx,-0.003715713042765856 +karman_re50,sr,230,92.0,force,lower_fy,-0.0030229398980736732 +karman_re50,sr,231,92.4,force,front_fx,0.002199382521212101 +karman_re50,sr,231,92.4,force,front_fy,-0.003703539725393057 +karman_re50,sr,231,92.4,force,upper_fx,0.0028187152929604053 +karman_re50,sr,231,92.4,force,upper_fy,0.004364030435681343 +karman_re50,sr,231,92.4,force,lower_fx,-0.004464062862098217 +karman_re50,sr,231,92.4,force,lower_fy,-0.0030582561157643795 +karman_re50,sr,232,92.8,force,front_fx,0.0026594591327011585 +karman_re50,sr,232,92.8,force,front_fy,-0.003495394252240658 +karman_re50,sr,232,92.8,force,upper_fx,0.002854269463568926 +karman_re50,sr,232,92.8,force,upper_fy,0.004121851641684771 +karman_re50,sr,232,92.8,force,lower_fx,-0.004788958001881838 +karman_re50,sr,232,92.8,force,lower_fy,-0.0030431661289185286 +karman_re50,sr,233,93.2,force,front_fx,0.002774670720100403 +karman_re50,sr,233,93.2,force,front_fy,-0.002856412436813116 +karman_re50,sr,233,93.2,force,upper_fx,0.0026629683561623096 +karman_re50,sr,233,93.2,force,upper_fy,0.0038043237291276455 +karman_re50,sr,233,93.2,force,lower_fx,-0.004641203675419092 +karman_re50,sr,233,93.2,force,lower_fy,-0.0030303264502435923 +karman_re50,sr,234,93.6,force,front_fx,0.0024868189357221127 +karman_re50,sr,234,93.6,force,front_fy,-0.0018903452437371016 +karman_re50,sr,234,93.6,force,upper_fx,0.002258370164781809 +karman_re50,sr,234,93.6,force,upper_fy,0.0035058751236647367 +karman_re50,sr,234,93.6,force,lower_fx,-0.004076962359249592 +karman_re50,sr,234,93.6,force,lower_fy,-0.0031020846217870712 +karman_re50,sr,235,94.0,force,front_fx,0.0018669606652110815 +karman_re50,sr,235,94.0,force,front_fy,-0.0008033131598494947 +karman_re50,sr,235,94.0,force,upper_fx,0.0016953031299635768 +karman_re50,sr,235,94.0,force,upper_fy,0.003292070236057043 +karman_re50,sr,235,94.0,force,lower_fx,-0.0032019317150115967 +karman_re50,sr,235,94.0,force,lower_fy,-0.0032904690597206354 +karman_re50,sr,236,94.4,force,front_fx,0.001132662408053875 +karman_re50,sr,236,94.4,force,front_fy,0.000219361245399341 +karman_re50,sr,236,94.4,force,upper_fx,0.0010338923893868923 +karman_re50,sr,236,94.4,force,upper_fy,0.0031540340278297663 +karman_re50,sr,236,94.4,force,lower_fx,-0.002133316593244672 +karman_re50,sr,236,94.4,force,lower_fy,-0.003544833743944764 +karman_re50,sr,237,94.8,force,front_fx,0.0005472172633744776 +karman_re50,sr,237,94.8,force,front_fy,0.0010891853598877788 +karman_re50,sr,237,94.8,force,upper_fx,0.0002957842661999166 +karman_re50,sr,237,94.8,force,upper_fy,0.0030448762699961662 +karman_re50,sr,237,94.8,force,lower_fx,-0.0009826035238802433 +karman_re50,sr,237,94.8,force,lower_fy,-0.0037981539499014616 +karman_re50,sr,238,95.2,force,front_fx,0.0002793687744997442 +karman_re50,sr,238,95.2,force,front_fy,0.0018107672221958637 +karman_re50,sr,238,95.2,force,upper_fx,-0.0005352477310225368 +karman_re50,sr,238,95.2,force,upper_fy,0.0029563161078840494 +karman_re50,sr,238,95.2,force,lower_fx,0.00014436314813792706 +karman_re50,sr,238,95.2,force,lower_fy,-0.0040274797938764095 +karman_re50,sr,239,95.6,force,front_fx,0.0003722252731677145 +karman_re50,sr,239,95.6,force,front_fy,0.002437123330309987 +karman_re50,sr,239,95.6,force,upper_fx,-0.001483321306295693 +karman_re50,sr,239,95.6,force,upper_fy,0.0029177069664001465 +karman_re50,sr,239,95.6,force,lower_fx,0.001149294781498611 +karman_re50,sr,239,95.6,force,lower_fy,-0.004236090928316116 +karman_re50,sr,240,96.0,force,front_fx,0.0007870819536037743 +karman_re50,sr,240,96.0,force,front_fy,0.0029986617155373096 +karman_re50,sr,240,96.0,force,upper_fx,-0.0025236490182578564 +karman_re50,sr,240,96.0,force,upper_fy,0.0029477255884557962 +karman_re50,sr,240,96.0,force,lower_fx,0.0019433468114584684 +karman_re50,sr,240,96.0,force,lower_fy,-0.004404561128467321 +karman_re50,sr,241,96.4,force,front_fx,0.001417689141817391 +karman_re50,sr,241,96.4,force,front_fy,0.003458031453192234 +karman_re50,sr,241,96.4,force,upper_fx,-0.0035465380642563105 +karman_re50,sr,241,96.4,force,upper_fy,0.0030127328354865313 +karman_re50,sr,241,96.4,force,lower_fx,0.0024875060189515352 +karman_re50,sr,241,96.4,force,lower_fy,-0.004471997730433941 +karman_re50,sr,242,96.8,force,front_fx,0.002089180052280426 +karman_re50,sr,242,96.8,force,front_fy,0.003696445608511567 +karman_re50,sr,242,96.8,force,upper_fx,-0.004355763550847769 +karman_re50,sr,242,96.8,force,upper_fy,0.003055957145988941 +karman_re50,sr,242,96.8,force,lower_fx,0.0027874864172190428 +karman_re50,sr,242,96.8,force,lower_fy,-0.004394169431179762 +karman_re50,sr,243,97.2,force,front_fx,0.0025969732087105513 +karman_re50,sr,243,97.2,force,front_fy,0.003565771970897913 +karman_re50,sr,243,97.2,force,upper_fx,-0.004764317534863949 +karman_re50,sr,243,97.2,force,upper_fy,0.003048622515052557 +karman_re50,sr,243,97.2,force,lower_fx,0.002863845322281122 +karman_re50,sr,243,97.2,force,lower_fy,-0.00417330814525485 +karman_re50,sr,244,97.6,force,front_fx,0.002782359952107072 +karman_re50,sr,244,97.6,force,front_fy,0.0029995013028383255 +karman_re50,sr,244,97.6,force,upper_fx,-0.004699328448623419 +karman_re50,sr,244,97.6,force,upper_fy,0.003028505714610219 +karman_re50,sr,244,97.6,force,lower_fx,0.0027141657192260027 +karman_re50,sr,244,97.6,force,lower_fy,-0.003863237565383315 +karman_re50,sr,245,98.0,force,front_fx,0.002565820002928376 +karman_re50,sr,245,98.0,force,front_fy,0.0020798889454454184 +karman_re50,sr,245,98.0,force,upper_fx,-0.004202700685709715 +karman_re50,sr,245,98.0,force,upper_fy,0.0030819138046354055 +karman_re50,sr,245,98.0,force,lower_fx,0.002345223678275943 +karman_re50,sr,245,98.0,force,lower_fy,-0.003555024042725563 +karman_re50,sr,246,98.4,force,front_fx,0.0019942496437579393 +karman_re50,sr,246,98.4,force,front_fy,0.0009993478888645768 +karman_re50,sr,246,98.4,force,upper_fx,-0.003375992411747575 +karman_re50,sr,246,98.4,force,upper_fy,0.0032502745743840933 +karman_re50,sr,246,98.4,force,lower_fx,0.0018056483240798116 +karman_re50,sr,246,98.4,force,lower_fy,-0.003324629971757531 +karman_re50,sr,247,98.8,force,front_fx,0.0012603813083842397 +karman_re50,sr,247,98.8,force,front_fy,-4.529158468358219e-05 +karman_re50,sr,247,98.8,force,upper_fx,-0.002334735356271267 +karman_re50,sr,247,98.8,force,upper_fy,0.00349719007499516 +karman_re50,sr,247,98.8,force,lower_fx,0.001158116851001978 +karman_re50,sr,247,98.8,force,lower_fy,-0.003176128026098013 +karman_re50,sr,248,99.2,force,front_fx,0.0006312624318525195 +karman_re50,sr,248,99.2,force,front_fy,-0.0009447511401958764 +karman_re50,sr,248,99.2,force,upper_fx,-0.0011915554059669375 +karman_re50,sr,248,99.2,force,upper_fy,0.003753814147785306 +karman_re50,sr,248,99.2,force,lower_fx,0.0004338764410931617 +karman_re50,sr,248,99.2,force,lower_fy,-0.003064075019210577 +karman_re50,sr,249,99.6,force,front_fx,0.0003006352053489536 +karman_re50,sr,249,99.6,force,front_fy,-0.0016896921442821622 +karman_re50,sr,249,99.6,force,upper_fx,-5.195770791033283e-05 +karman_re50,sr,249,99.6,force,upper_fy,0.003987192176282406 +karman_re50,sr,249,99.6,force,lower_fx,-0.0003783027932513505 +karman_re50,sr,249,99.6,force,lower_fy,-0.0029679962899535894 +karman_re50,sr,250,100.0,force,front_fx,0.0003303923876956105 +karman_re50,sr,250,100.0,force,front_fy,-0.0023288829252123833 +karman_re50,sr,250,100.0,force,upper_fx,0.0009820804698392749 +karman_re50,sr,250,100.0,force,upper_fy,0.004200631286948919 +karman_re50,sr,250,100.0,force,lower_fx,-0.0013039278564974666 +karman_re50,sr,250,100.0,force,lower_fy,-0.002919513499364257 +karman_re50,sr,251,100.4,force,front_fx,0.0006928276270627975 +karman_re50,sr,251,100.4,force,front_fy,-0.00290278228931129 +karman_re50,sr,251,100.4,force,upper_fx,0.0018199724145233631 +karman_re50,sr,251,100.4,force,upper_fy,0.004379896447062492 +karman_re50,sr,251,100.4,force,lower_fx,-0.0023330107796937227 +karman_re50,sr,251,100.4,force,lower_fy,-0.0029380670748651028 +karman_re50,sr,252,100.8,force,front_fx,0.0012961645843461156 +karman_re50,sr,252,100.8,force,front_fy,-0.003387142438441515 +karman_re50,sr,252,100.8,force,upper_fx,0.0024082856252789497 +karman_re50,sr,252,100.8,force,upper_fy,0.004469954874366522 +karman_re50,sr,252,100.8,force,lower_fx,-0.003372510662302375 +karman_re50,sr,252,100.8,force,lower_fy,-0.003001370234414935 +karman_re50,sr,253,101.2,force,front_fx,0.00197541038505733 +karman_re50,sr,253,101.2,force,front_fy,-0.0036768477875739336 +karman_re50,sr,253,101.2,force,upper_fx,0.0027500642463564873 +karman_re50,sr,253,101.2,force,upper_fy,0.004419567063450813 +karman_re50,sr,253,101.2,force,lower_fx,-0.004236393142491579 +karman_re50,sr,253,101.2,force,lower_fy,-0.003050882602110505 +karman_re50,sr,254,101.6,force,front_fx,0.0025270050391554832 +karman_re50,sr,254,101.6,force,front_fy,-0.0036170873790979385 +karman_re50,sr,254,101.6,force,upper_fx,0.002866964088752866 +karman_re50,sr,254,101.6,force,upper_fy,0.004221667535603046 +karman_re50,sr,254,101.6,force,lower_fx,-0.004728423431515694 +karman_re50,sr,254,101.6,force,lower_fy,-0.003053711261600256 +karman_re50,sr,255,102.0,force,front_fx,0.002778941299766302 +karman_re50,sr,255,102.0,force,front_fy,-0.003126522060483694 +karman_re50,sr,255,102.0,force,upper_fx,0.0027588086668401957 +karman_re50,sr,255,102.0,force,upper_fy,0.003921759780496359 +karman_re50,sr,255,102.0,force,lower_fx,-0.004745860118418932 +karman_re50,sr,255,102.0,force,lower_fy,-0.0030289078131318092 +karman_re50,sr,256,102.4,force,front_fx,0.00263648247346282 +karman_re50,sr,256,102.4,force,front_fy,-0.0022645301651209593 +karman_re50,sr,256,102.4,force,upper_fx,0.0024275535251945257 +karman_re50,sr,256,102.4,force,upper_fy,0.003606581361964345 +karman_re50,sr,256,102.4,force,lower_fx,-0.004321282263845205 +karman_re50,sr,256,102.4,force,lower_fy,-0.0030630677938461304 +karman_re50,sr,257,102.8,force,front_fx,0.0021171404514461756 +karman_re50,sr,257,102.8,force,front_fy,-0.0011973390355706215 +karman_re50,sr,257,102.8,force,upper_fx,0.001913026673719287 +karman_re50,sr,257,102.8,force,upper_fy,0.003359358524903655 +karman_re50,sr,257,102.8,force,lower_fx,-0.0035461822990328074 +karman_re50,sr,257,102.8,force,lower_fy,-0.003211826318874955 +karman_re50,sr,258,103.2,force,front_fx,0.001393485115841031 +karman_re50,sr,258,103.2,force,front_fy,-0.00013447106175590307 +karman_re50,sr,258,103.2,force,upper_fx,0.0012811524793505669 +karman_re50,sr,258,103.2,force,upper_fy,0.0031983167864382267 +karman_re50,sr,258,103.2,force,lower_fx,-0.0025356062687933445 +karman_re50,sr,258,103.2,force,lower_fy,-0.0034505657386034727 +karman_re50,sr,259,103.6,force,front_fx,0.0007271729409694672 +karman_re50,sr,259,103.6,force,front_fy,0.0007938656490296125 +karman_re50,sr,259,103.6,force,upper_fx,0.0005713164573535323 +karman_re50,sr,259,103.6,force,upper_fy,0.003082430921494961 +karman_re50,sr,259,103.6,force,lower_fx,-0.0014020918169990182 +karman_re50,sr,259,103.6,force,lower_fy,-0.003707755822688341 +karman_re50,sr,260,104.0,force,front_fx,0.00033442548010498285 +karman_re50,sr,260,104.0,force,front_fy,0.0015642386861145496 +karman_re50,sr,260,104.0,force,upper_fx,-0.00022285482555162162 +karman_re50,sr,260,104.0,force,upper_fy,0.0029826408717781305 +karman_re50,sr,260,104.0,force,lower_fx,-0.0002539210254326463 +karman_re50,sr,260,104.0,force,lower_fy,-0.003945502452552319 +karman_re50,sr,261,104.4,force,front_fx,0.0002984069287776947 +karman_re50,sr,261,104.4,force,front_fy,0.0022191840689629316 +karman_re50,sr,261,104.4,force,upper_fx,-0.0011267137015238404 +karman_re50,sr,261,104.4,force,upper_fy,0.002923311898484826 +karman_re50,sr,261,104.4,force,lower_fx,0.0008070328622125089 +karman_re50,sr,261,104.4,force,lower_fy,-0.00416339049115777 +karman_re50,sr,262,104.8,force,front_fx,0.0006051991949789226 +karman_re50,sr,262,104.8,force,front_fy,0.0028037652373313904 +karman_re50,sr,262,104.8,force,upper_fx,-0.002140788361430168 +karman_re50,sr,262,104.8,force,upper_fy,0.002931348280981183 +karman_re50,sr,262,104.8,force,lower_fx,0.0016856580041348934 +karman_re50,sr,262,104.8,force,lower_fy,-0.004352272488176823 +karman_re50,sr,263,105.2,force,front_fx,0.0011742818169295788 +karman_re50,sr,263,105.2,force,front_fy,0.003309759311378002 +karman_re50,sr,263,105.2,force,upper_fx,-0.0031902091577649117 +karman_re50,sr,263,105.2,force,upper_fy,0.0029895827174186707 +karman_re50,sr,263,105.2,force,lower_fx,0.0023203338496387005 +karman_re50,sr,263,105.2,force,lower_fy,-0.004463271703571081 +karman_re50,sr,264,105.6,force,front_fx,0.0018542190082371235 +karman_re50,sr,264,105.6,force,front_fy,0.003645572578534484 +karman_re50,sr,264,105.6,force,upper_fx,-0.004102332983165979 +karman_re50,sr,264,105.6,force,upper_fy,0.003044873708859086 +karman_re50,sr,264,105.6,force,lower_fx,0.0027048932388424873 +karman_re50,sr,264,105.6,force,lower_fy,-0.004440101329237223 +karman_re50,sr,265,106.0,force,front_fx,0.0024427520111203194 +karman_re50,sr,265,106.0,force,front_fy,0.0036632579285651445 +karman_re50,sr,265,106.0,force,upper_fx,-0.004670578520745039 +karman_re50,sr,265,106.0,force,upper_fy,0.003054884262382984 +karman_re50,sr,265,106.0,force,lower_fx,0.0028625684790313244 +karman_re50,sr,265,106.0,force,lower_fy,-0.004264356568455696 +karman_re50,sr,266,106.4,force,front_fx,0.0027589979581534863 +karman_re50,sr,266,106.4,force,front_fy,0.0032525230199098587 +karman_re50,sr,266,106.4,force,upper_fx,-0.004776663612574339 +karman_re50,sr,266,106.4,force,upper_fy,0.003031123662367463 +karman_re50,sr,266,106.4,force,lower_fx,0.0027953265234827995 +karman_re50,sr,266,106.4,force,lower_fy,-0.00398014672100544 +karman_re50,sr,267,106.8,force,front_fx,0.002691027009859681 +karman_re50,sr,267,106.8,force,front_fy,0.002441935706883669 +karman_re50,sr,267,106.8,force,upper_fx,-0.004426189232617617 +karman_re50,sr,267,106.8,force,upper_fy,0.003049277001991868 +karman_re50,sr,267,106.8,force,lower_fx,0.0025028579402714968 +karman_re50,sr,267,106.8,force,lower_fy,-0.0036613026168197393 +karman_re50,sr,268,107.2,force,front_fx,0.0022331851068884134 +karman_re50,sr,268,107.2,force,front_fy,0.0013952243607491255 +karman_re50,sr,268,107.2,force,upper_fx,-0.0037065711803734303 +karman_re50,sr,268,107.2,force,upper_fy,0.0031777266412973404 +karman_re50,sr,268,107.2,force,lower_fx,0.002016309881582856 +karman_re50,sr,268,107.2,force,lower_fy,-0.0033977050334215164 +karman_re50,sr,269,107.6,force,front_fx,0.0015292222378775477 +karman_re50,sr,269,107.6,force,front_fy,0.00032075258786790073 +karman_re50,sr,269,107.6,force,upper_fx,-0.0027298005297780037 +karman_re50,sr,269,107.6,force,upper_fy,0.003404031042009592 +karman_re50,sr,269,107.6,force,lower_fx,0.001401012996211648 +karman_re50,sr,269,107.6,force,lower_fy,-0.00322324363514781 +karman_re50,sr,270,108.0,force,front_fx,0.0008314076694659889 +karman_re50,sr,270,108.0,force,front_fy,-0.0006380222039297223 +karman_re50,sr,270,108.0,force,upper_fx,-0.0016108499839901924 +karman_re50,sr,270,108.0,force,upper_fy,0.00366233685053885 +karman_re50,sr,270,108.0,force,lower_fx,0.0007074980530887842 +karman_re50,sr,270,108.0,force,lower_fy,-0.0030980503652244806 +karman_re50,sr,271,108.4,force,front_fx,0.0003797774843405932 +karman_re50,sr,271,108.4,force,front_fy,-0.001435235608369112 +karman_re50,sr,271,108.4,force,upper_fx,-0.00045726855751127005 +karman_re50,sr,271,108.4,force,upper_fy,0.0039033531211316586 +karman_re50,sr,271,108.4,force,lower_fx,-7.236951205413789e-05 +karman_re50,sr,271,108.4,force,lower_fy,-0.002999055664986372 +karman_re50,sr,272,108.8,force,front_fx,0.00027841393603011966 +karman_re50,sr,272,108.8,force,front_fy,-0.0021067082416266203 +karman_re50,sr,272,108.8,force,upper_fx,0.0006268087308853865 +karman_re50,sr,272,108.8,force,upper_fy,0.004124444909393787 +karman_re50,sr,272,108.8,force,lower_fx,-0.0009546854416839778 +karman_re50,sr,272,108.8,force,lower_fy,-0.0029305198695510626 +karman_re50,sr,273,109.2,force,front_fx,0.0005279122269712389 +karman_re50,sr,273,109.2,force,front_fy,-0.0027031719218939543 +karman_re50,sr,273,109.2,force,upper_fx,0.0015446123434230685 +karman_re50,sr,273,109.2,force,upper_fy,0.004322641063481569 +karman_re50,sr,273,109.2,force,lower_fx,-0.0019509615376591682 +karman_re50,sr,273,109.2,force,lower_fy,-0.0029252637177705765 +karman_re50,sr,274,109.6,force,front_fx,0.0010580546222627163 +karman_re50,sr,274,109.6,force,front_fy,-0.003227849490940571 +karman_re50,sr,274,109.6,force,upper_fx,0.0022248735185712576 +karman_re50,sr,274,109.6,force,upper_fy,0.004452316556125879 +karman_re50,sr,274,109.6,force,lower_fx,-0.003004638245329261 +karman_re50,sr,274,109.6,force,lower_fy,-0.0029775998555123806 +karman_re50,sr,275,110.0,force,front_fx,0.0017327870009467006 +karman_re50,sr,275,110.0,force,front_fy,-0.0036035359371453524 +karman_re50,sr,275,110.0,force,upper_fx,0.0026523778215050697 +karman_re50,sr,275,110.0,force,upper_fy,0.00445540202781558 +karman_re50,sr,275,110.0,force,lower_fx,-0.0039581372402608395 +karman_re50,sr,275,110.0,force,lower_fy,-0.003037242917343974 +karman_re50,sr,276,110.4,force,front_fx,0.002352931536734104 +karman_re50,sr,276,110.4,force,front_fy,-0.003689136588945985 +karman_re50,sr,276,110.4,force,upper_fx,0.0028490193653851748 +karman_re50,sr,276,110.4,force,upper_fy,0.0043071419931948185 +karman_re50,sr,276,110.4,force,lower_fx,-0.004602326080203056 +karman_re50,sr,276,110.4,force,lower_fy,-0.003055956680327654 +karman_re50,sr,277,110.8,force,front_fx,0.0027301511727273464 +karman_re50,sr,277,110.8,force,front_fy,-0.003359222784638405 +karman_re50,sr,277,110.8,force,upper_fx,0.0028242645785212517 +karman_re50,sr,277,110.8,force,upper_fy,0.004036484286189079 +karman_re50,sr,277,110.8,force,lower_fx,-0.004793806932866573 +karman_re50,sr,277,110.8,force,lower_fy,-0.00303541193716228 +karman_re50,sr,278,111.2,force,front_fx,0.0027350112795829773 +karman_re50,sr,278,111.2,force,front_fy,-0.002611607313156128 +karman_re50,sr,278,111.2,force,upper_fx,0.002572129713371396 +karman_re50,sr,278,111.2,force,upper_fy,0.003716509323567152 +karman_re50,sr,278,111.2,force,lower_fx,-0.004519972484558821 +karman_re50,sr,278,111.2,force,lower_fy,-0.0030404464341700077 +karman_re50,sr,279,111.6,force,front_fx,0.0023410790599882603 +karman_re50,sr,279,111.6,force,front_fy,-0.0015927475178614259 +karman_re50,sr,279,111.6,force,upper_fx,0.0021162880584597588 +karman_re50,sr,279,111.6,force,upper_fy,0.003438785905018449 +karman_re50,sr,279,111.6,force,lower_fx,-0.0038584626745432615 +karman_re50,sr,279,111.6,force,lower_fy,-0.0031461850740015507 +karman_re50,sr,280,112.0,force,front_fx,0.0016629556193947792 +karman_re50,sr,280,112.0,force,front_fy,-0.0005077376845292747 +karman_re50,sr,280,112.0,force,upper_fx,0.0015192813007161021 +karman_re50,sr,280,112.0,force,upper_fy,0.0032492917962372303 +karman_re50,sr,280,112.0,force,lower_fx,-0.002919998951256275 +karman_re50,sr,280,112.0,force,lower_fy,-0.003357910318300128 +karman_re50,sr,281,112.4,force,front_fx,0.0009445033501833677 +karman_re50,sr,281,112.4,force,front_fy,0.00047860131599009037 +karman_re50,sr,281,112.4,force,upper_fx,0.0008352997247129679 +karman_re50,sr,281,112.4,force,upper_fy,0.0031212682370096445 +karman_re50,sr,281,112.4,force,lower_fx,-0.0018197203753516078 +karman_re50,sr,281,112.4,force,lower_fy,-0.0036151327658444643 +karman_re50,sr,282,112.8,force,front_fx,0.0004366328939795494 +karman_re50,sr,282,112.8,force,front_fy,0.0013022726634517312 +karman_re50,sr,282,112.8,force,upper_fx,7.486404501833022e-05 +karman_re50,sr,282,112.8,force,upper_fy,0.003015208523720503 +karman_re50,sr,282,112.8,force,lower_fx,-0.0006658582133240998 +karman_re50,sr,282,112.8,force,lower_fy,-0.003863611025735736 +karman_re50,sr,283,113.2,force,front_fx,0.00026953165070153773 +karman_re50,sr,283,113.2,force,front_fy,0.0019909944385290146 +karman_re50,sr,283,113.2,force,upper_fx,-0.0007857448072172701 +karman_re50,sr,283,113.2,force,upper_fy,0.002937795128673315 +karman_re50,sr,283,113.2,force,lower_fx,0.00044101965613663197 +karman_re50,sr,283,113.2,force,lower_fy,-0.004086373373866081 +karman_re50,sr,284,113.6,force,front_fx,0.0004591054457705468 +karman_re50,sr,284,113.6,force,front_fy,0.0025992996525019407 +karman_re50,sr,284,113.6,force,upper_fx,-0.0017634157557040453 +karman_re50,sr,284,113.6,force,upper_fy,0.0029218546114861965 +karman_re50,sr,284,113.6,force,lower_fx,0.0013947257539257407 +karman_re50,sr,284,113.6,force,lower_fy,-0.004289967939257622 +karman_re50,sr,285,114.0,force,front_fx,0.0009462429443374276 +karman_re50,sr,285,114.0,force,front_fy,0.0031405158806592226 +karman_re50,sr,285,114.0,force,upper_fx,-0.0028155390173196793 +karman_re50,sr,285,114.0,force,upper_fy,0.0029666356276720762 +karman_re50,sr,285,114.0,force,lower_fx,0.0021205111406743526 +karman_re50,sr,285,114.0,force,lower_fy,-0.00443708011880517 +karman_re50,sr,286,114.4,force,front_fx,0.0016082659130916 +karman_re50,sr,286,114.4,force,front_fy,0.0035503616090863943 +karman_re50,sr,286,114.4,force,upper_fx,-0.0038025861140340567 +karman_re50,sr,286,114.4,force,upper_fy,0.0030286326073110104 +karman_re50,sr,286,114.4,force,lower_fx,0.002592516830191016 +karman_re50,sr,286,114.4,force,lower_fy,-0.004466115962713957 +karman_re50,sr,287,114.8,force,front_fx,0.0022526017855852842 +karman_re50,sr,287,114.8,force,front_fy,0.0037012959364801645 +karman_re50,sr,287,114.8,force,upper_fx,-0.004516417160630226 +karman_re50,sr,287,114.8,force,upper_fy,0.0030564151238650084 +karman_re50,sr,287,114.8,force,lower_fx,0.002829607343301177 +karman_re50,sr,287,114.8,force,lower_fy,-0.004344284068793058 +karman_re50,sr,288,115.2,force,front_fx,0.0026864123065024614 +karman_re50,sr,288,115.2,force,front_fy,0.003453601384535432 +karman_re50,sr,288,115.2,force,upper_fx,-0.004794304259121418 +karman_re50,sr,288,115.2,force,upper_fy,0.0030392080079764128 +karman_re50,sr,288,115.2,force,lower_fx,0.002845168113708496 +karman_re50,sr,288,115.2,force,lower_fy,-0.004091300535947084 +karman_re50,sr,289,115.6,force,front_fx,0.0027637300081551075 +karman_re50,sr,289,115.6,force,front_fy,0.0027735340408980846 +karman_re50,sr,289,115.6,force,upper_fx,-0.0045997402630746365 +karman_re50,sr,289,115.6,force,upper_fy,0.003033936955034733 +karman_re50,sr,289,115.6,force,lower_fx,0.0026340866461396217 +karman_re50,sr,289,115.6,force,lower_fy,-0.0037739789113402367 +karman_re50,sr,290,116.0,force,front_fx,0.002437511458992958 +karman_re50,sr,290,116.0,force,front_fy,0.0017868876457214355 +karman_re50,sr,290,116.0,force,upper_fx,-0.004001246299594641 +karman_re50,sr,290,116.0,force,upper_fy,0.003119011875241995 +karman_re50,sr,290,116.0,force,lower_fx,0.002211089478805661 +karman_re50,sr,290,116.0,force,lower_fy,-0.0034831780940294266 +karman_re50,sr,291,116.4,force,front_fx,0.0017950455658137798 +karman_re50,sr,291,116.4,force,front_fy,0.000699312542565167 +karman_re50,sr,291,116.4,force,upper_fx,-0.0031042667105793953 +karman_re50,sr,291,116.4,force,upper_fy,0.0033150450326502323 +karman_re50,sr,291,116.4,force,lower_fx,0.0016347352648153901 +karman_re50,sr,291,116.4,force,lower_fy,-0.0032773695420473814 +karman_re50,sr,292,116.8,force,front_fx,0.0010632992489263415 +karman_re50,sr,292,116.8,force,front_fy,-0.0003113861021120101 +karman_re50,sr,292,116.8,force,upper_fx,-0.002023928100243211 +karman_re50,sr,292,116.8,force,upper_fy,0.003569382708519697 +karman_re50,sr,292,116.8,force,lower_fx,0.0009635731694288552 +karman_re50,sr,292,116.8,force,lower_fy,-0.003142032539471984 +karman_re50,sr,293,117.2,force,front_fx,0.0005045478465035558 +karman_re50,sr,293,117.2,force,front_fy,-0.0011644859332591295 +karman_re50,sr,293,117.2,force,upper_fx,-0.0008720327168703079 +karman_re50,sr,293,117.2,force,upper_fy,0.0038183366414159536 +karman_re50,sr,293,117.2,force,lower_fx,0.00021856218518223614 +karman_re50,sr,293,117.2,force,lower_fy,-0.0030324768740683794 +karman_re50,sr,294,117.6,force,front_fx,0.00027340621454641223 +karman_re50,sr,294,117.6,force,front_fy,-0.0018749140435829759 +karman_re50,sr,294,117.6,force,upper_fx,0.00025005300994962454 +karman_re50,sr,294,117.6,force,upper_fy,0.0040468187071383 +karman_re50,sr,294,117.6,force,lower_fx,-0.0006217670161277056 +karman_re50,sr,294,117.6,force,lower_fy,-0.0029475856572389603 +karman_re50,sr,295,118.0,force,front_fx,0.00040072400588542223 +karman_re50,sr,295,118.0,force,front_fy,-0.0024945384357124567 +karman_re50,sr,295,118.0,force,upper_fx,0.0012383146677166224 +karman_re50,sr,295,118.0,force,upper_fy,0.004256146959960461 +karman_re50,sr,295,118.0,force,lower_fx,-0.0015789266908541322 +karman_re50,sr,295,118.0,force,lower_fy,-0.002919404301792383 +karman_re50,sr,296,118.4,force,front_fx,0.0008415609481744468 +karman_re50,sr,296,118.4,force,front_fy,-0.003049507737159729 +karman_re50,sr,296,118.4,force,upper_fx,0.0020087703596800566 +karman_re50,sr,296,118.4,force,upper_fy,0.004417720250785351 +karman_re50,sr,296,118.4,force,lower_fx,-0.0026253683026880026 +karman_re50,sr,296,118.4,force,lower_fy,-0.002955799922347069 +karman_re50,sr,297,118.8,force,front_fx,0.0014840770745649934 +karman_re50,sr,297,118.8,force,front_fy,-0.003493285272270441 +karman_re50,sr,297,118.8,force,upper_fx,0.0025257200468331575 +karman_re50,sr,297,118.8,force,upper_fy,0.004471729975193739 +karman_re50,sr,297,118.8,force,lower_fx,-0.0036390339955687523 +karman_re50,sr,297,118.8,force,lower_fy,-0.0030188849195837975 +karman_re50,sr,298,119.2,force,front_fx,0.00214799540117383 +karman_re50,sr,298,119.2,force,front_fy,-0.003703101072460413 +karman_re50,sr,298,119.2,force,upper_fx,0.002802872098982334 +karman_re50,sr,298,119.2,force,upper_fy,0.004376861732453108 +karman_re50,sr,298,119.2,force,lower_fx,-0.004417463671416044 +karman_re50,sr,298,119.2,force,lower_fy,-0.0030546400230377913 +karman_re50,sr,299,119.6,force,front_fx,0.0026323271449655294 +karman_re50,sr,299,119.6,force,front_fy,-0.0035301577299833298 +karman_re50,sr,299,119.6,force,upper_fx,0.002858958439901471 +karman_re50,sr,299,119.6,force,upper_fy,0.004143965896219015 +karman_re50,sr,299,119.6,force,lower_fx,-0.004780415445566177 +karman_re50,sr,299,119.6,force,lower_fy,-0.003043361008167267 +karman_re50,sr,300,120.0,force,front_fx,0.0027806537691503763 +karman_re50,sr,300,120.0,force,front_fy,-0.002925632055848837 +karman_re50,sr,300,120.0,force,upper_fx,0.0026894081383943558 +karman_re50,sr,300,120.0,force,upper_fy,0.0038316366262733936 +karman_re50,sr,300,120.0,force,lower_fx,-0.004670447204262018 +karman_re50,sr,300,120.0,force,lower_fy,-0.003029790474101901 +karman_re50,sr,301,120.4,force,front_fx,0.0025233542546629906 +karman_re50,sr,301,120.4,force,front_fy,-0.0019792986568063498 +karman_re50,sr,301,120.4,force,upper_fx,0.002301529049873352 +karman_re50,sr,301,120.4,force,upper_fy,0.0035302801989018917 +karman_re50,sr,301,120.4,force,lower_fx,-0.004134968854486942 +karman_re50,sr,301,120.4,force,lower_fy,-0.0030958435963839293 +karman_re50,sr,302,120.8,force,front_fx,0.0019253520295023918 +karman_re50,sr,302,120.8,force,front_fy,-0.0008951725903898478 +karman_re50,sr,302,120.8,force,upper_fx,0.0017471840837970376 +karman_re50,sr,302,120.8,force,upper_fy,0.0033084049355238676 +karman_re50,sr,302,120.8,force,lower_fx,-0.00328383082523942 +karman_re50,sr,302,120.8,force,lower_fy,-0.0032726891804486513 +karman_re50,sr,303,121.2,force,front_fx,0.0011890975292772055 +karman_re50,sr,303,121.2,force,front_fy,0.0001381473703077063 +karman_re50,sr,303,121.2,force,upper_fx,0.0010902485810220242 +karman_re50,sr,303,121.2,force,upper_fy,0.0031635609921067953 +karman_re50,sr,303,121.2,force,lower_fx,-0.002229724545031786 +karman_re50,sr,303,121.2,force,lower_fy,-0.0035203599836677313 +karman_re50,sr,304,121.6,force,front_fx,0.0005844391416758299 +karman_re50,sr,304,121.6,force,front_fy,0.001027866848744452 +karman_re50,sr,304,121.6,force,upper_fx,0.00035935521009378135 +karman_re50,sr,304,121.6,force,upper_fy,0.003050902858376503 +karman_re50,sr,304,121.6,force,lower_fx,-0.0010828841477632523 +karman_re50,sr,304,121.6,force,lower_fy,-0.003774939803406596 +karman_re50,sr,305,122.0,force,front_fx,0.0002882961998693645 +karman_re50,sr,305,122.0,force,front_fy,0.0017539222026243806 +karman_re50,sr,305,122.0,force,upper_fx,-0.00046104344073683023 +karman_re50,sr,305,122.0,force,upper_fy,0.002959436969831586 +karman_re50,sr,305,122.0,force,lower_fx,5.35525796294678e-05 +karman_re50,sr,305,122.0,force,lower_fy,-0.0040068840608000755 +karman_re50,sr,306,122.4,force,front_fx,0.00035233062226325274 +karman_re50,sr,306,122.4,force,front_fy,0.0023868344724178314 +karman_re50,sr,306,122.4,force,upper_fx,-0.0013963214587420225 +karman_re50,sr,306,122.4,force,upper_fy,0.0029204937163740396 +karman_re50,sr,306,122.4,force,lower_fx,0.0010737820994108915 +karman_re50,sr,306,122.4,force,lower_fy,-0.004220691509544849 +karman_re50,sr,307,122.8,force,front_fx,0.0007419364410452545 +karman_re50,sr,307,122.8,force,front_fy,0.002955014118924737 +karman_re50,sr,307,122.8,force,upper_fx,-0.002432757057249546 +karman_re50,sr,307,122.8,force,upper_fy,0.0029463977552950382 +karman_re50,sr,307,122.8,force,lower_fx,0.0018879867857322097 +karman_re50,sr,307,122.8,force,lower_fy,-0.004395042546093464 +karman_re50,sr,308,123.2,force,front_fx,0.0013599719386547804 +karman_re50,sr,308,123.2,force,front_fy,0.0034266230650246143 +karman_re50,sr,308,123.2,force,upper_fx,-0.0034659593366086483 +karman_re50,sr,308,123.2,force,upper_fy,0.0030079076532274485 +karman_re50,sr,308,123.2,force,lower_fx,0.0024505003821104765 +karman_re50,sr,308,123.2,force,lower_fy,-0.004472791682928801 +karman_re50,sr,309,123.6,force,front_fx,0.002034219913184643 +karman_re50,sr,309,123.6,force,front_fy,0.0036887952592223883 +karman_re50,sr,309,123.6,force,upper_fx,-0.004303606227040291 +karman_re50,sr,309,123.6,force,upper_fy,0.0030510188080370426 +karman_re50,sr,309,123.6,force,lower_fx,0.0027687454130500555 +karman_re50,sr,309,123.6,force,lower_fy,-0.004405555780977011 +karman_re50,sr,310,124.0,force,front_fx,0.0025653636548668146 +karman_re50,sr,310,124.0,force,front_fy,0.00359336263500154 +karman_re50,sr,310,124.0,force,upper_fx,-0.004750177729874849 +karman_re50,sr,310,124.0,force,upper_fy,0.003047552425414324 +karman_re50,sr,310,124.0,force,lower_fx,0.0028649824671447277 +karman_re50,sr,310,124.0,force,lower_fy,-0.004194091074168682 +karman_re50,sr,311,124.4,force,front_fx,0.0027833031490445137 +karman_re50,sr,311,124.4,force,front_fy,0.0030626975931227207 +karman_re50,sr,311,124.4,force,upper_fx,-0.00472208671271801 +karman_re50,sr,311,124.4,force,upper_fy,0.0030292130541056395 +karman_re50,sr,311,124.4,force,lower_fx,0.0027369880117475986 +karman_re50,sr,311,124.4,force,lower_fy,-0.003890105988830328 +karman_re50,sr,312,124.8,force,front_fx,0.0026004991959780455 +karman_re50,sr,312,124.8,force,front_fy,0.0021662157960236073 +karman_re50,sr,312,124.8,force,upper_fx,-0.004257206805050373 +karman_re50,sr,312,124.8,force,upper_fy,0.0030757307540625334 +karman_re50,sr,312,124.8,force,lower_fx,0.0023861993104219437 +karman_re50,sr,312,124.8,force,lower_fy,-0.003580436110496521 +karman_re50,sr,313,125.2,force,front_fx,0.0020519604440778494 +karman_re50,sr,313,125.2,force,front_fy,0.0010913040023297071 +karman_re50,sr,313,125.2,force,upper_fx,-0.0034551203716546297 +karman_re50,sr,313,125.2,force,upper_fy,0.0032344297505915165 +karman_re50,sr,313,125.2,force,lower_fx,0.0018561328761279583 +karman_re50,sr,313,125.2,force,lower_fy,-0.003342295531183481 +karman_re50,sr,314,125.6,force,front_fx,0.0013204579008743167 +karman_re50,sr,314,125.6,force,front_fy,3.809854024439119e-05 +karman_re50,sr,314,125.6,force,upper_fx,-0.0024288154672831297 +karman_re50,sr,314,125.6,force,upper_fy,0.0034746676683425903 +karman_re50,sr,314,125.6,force,lower_fx,0.0012140386970713735 +karman_re50,sr,314,125.6,force,lower_fy,-0.0031851744279265404 +karman_re50,sr,315,126.0,force,front_fx,0.0006738301599398255 +karman_re50,sr,315,126.0,force,front_fy,-0.0008749935077503324 +karman_re50,sr,315,126.0,force,upper_fx,-0.0012909002834931016 +karman_re50,sr,315,126.0,force,upper_fy,0.003729404415935278 +karman_re50,sr,315,126.0,force,lower_fx,0.0004964544787071645 +karman_re50,sr,315,126.0,force,lower_fy,-0.0030700722709298134 +karman_re50,sr,316,126.4,force,front_fx,0.00031698751263320446 +karman_re50,sr,316,126.4,force,front_fy,-0.0016319581773132086 +karman_re50,sr,316,126.4,force,upper_fx,-0.0001451222487958148 +karman_re50,sr,316,126.4,force,upper_fy,0.003965931944549084 +karman_re50,sr,316,126.4,force,lower_fx,-0.000305249763187021 +karman_re50,sr,316,126.4,force,lower_fy,-0.002973195631057024 +karman_re50,sr,317,126.8,force,front_fx,0.0003159846237394959 +karman_re50,sr,317,126.8,force,front_fy,-0.002278338884934783 +karman_re50,sr,317,126.8,force,upper_fx,0.0009033933747559786 +karman_re50,sr,317,126.8,force,upper_fy,0.004184207413345575 +karman_re50,sr,317,126.8,force,lower_fx,-0.001219052355736494 +karman_re50,sr,317,126.8,force,lower_fy,-0.002921704901382327 +karman_re50,sr,318,127.2,force,front_fx,0.0006514351116493344 +karman_re50,sr,318,127.2,force,front_fy,-0.0028573370072990656 +karman_re50,sr,318,127.2,force,upper_fx,0.0017595887184143066 +karman_re50,sr,318,127.2,force,upper_fy,0.004369259346276522 +karman_re50,sr,318,127.2,force,lower_fx,-0.002242029644548893 +karman_re50,sr,318,127.2,force,lower_fy,-0.0029372465796768665 +karman_re50,sr,319,127.6,force,front_fx,0.00123854901175946 +karman_re50,sr,319,127.6,force,front_fy,-0.003352154977619648 +karman_re50,sr,319,127.6,force,upper_fx,0.002367570763453841 +karman_re50,sr,319,127.6,force,upper_fy,0.004468480125069618 +karman_re50,sr,319,127.6,force,lower_fx,-0.0032896704506129026 +karman_re50,sr,319,127.6,force,lower_fy,-0.002997602801769972 +karman_re50,sr,320,128.0,force,front_fx,0.0019181849202141166 +karman_re50,sr,320,128.0,force,front_fy,-0.003663670504465699 +karman_re50,sr,320,128.0,force,upper_fx,0.0027273453306406736 +karman_re50,sr,320,128.0,force,upper_fy,0.0044285692274570465 +karman_re50,sr,320,128.0,force,lower_fx,-0.004177601542323828 +karman_re50,sr,320,128.0,force,lower_fy,-0.003046682570129633 +karman_re50,sr,321,128.4,force,front_fx,0.0024893435183912516 +karman_re50,sr,321,128.4,force,front_fy,-0.003641872201114893 +karman_re50,sr,321,128.4,force,upper_fx,0.00286425300873816 +karman_re50,sr,321,128.4,force,upper_fy,0.004240851849317551 +karman_re50,sr,321,128.4,force,lower_fx,-0.004704453516751528 +karman_re50,sr,321,128.4,force,lower_fy,-0.0030503561720252037 +karman_re50,sr,322,128.8,force,front_fx,0.002772911684587598 +karman_re50,sr,322,128.8,force,front_fy,-0.003189986338838935 +karman_re50,sr,322,128.8,force,upper_fx,0.0027775540947914124 +karman_re50,sr,322,128.8,force,upper_fy,0.003948175348341465 +karman_re50,sr,322,128.8,force,lower_fx,-0.004762127064168453 +karman_re50,sr,322,128.8,force,lower_fy,-0.003029759507626295 +karman_re50,sr,323,129.2,force,front_fx,0.002663661725819111 +karman_re50,sr,323,129.2,force,front_fy,-0.002347829518839717 +karman_re50,sr,323,129.2,force,upper_fx,0.002465031808242202 +karman_re50,sr,323,129.2,force,upper_fy,0.0036328828427940607 +karman_re50,sr,323,129.2,force,lower_fx,-0.0043698567897081375 +karman_re50,sr,323,129.2,force,lower_fy,-0.0030597439035773277 +karman_re50,sr,324,129.6,force,front_fx,0.002172239124774933 +karman_re50,sr,324,129.6,force,front_fy,-0.001289286301471293 +karman_re50,sr,324,129.6,force,upper_fx,0.00196230155415833 +karman_re50,sr,324,129.6,force,upper_fy,0.0033784976694732904 +karman_re50,sr,324,129.6,force,lower_fx,-0.003620070405304432 +karman_re50,sr,324,129.6,force,lower_fy,-0.003197749610990286 +karman_re50,sr,325,130.0,force,front_fx,0.001455702818930149 +karman_re50,sr,325,130.0,force,front_fy,-0.0002204439224442467 +karman_re50,sr,325,130.0,force,upper_fx,0.0013360196026042104 +karman_re50,sr,325,130.0,force,upper_fy,0.003209877060726285 +karman_re50,sr,325,130.0,force,lower_fx,-0.002626776462420821 +karman_re50,sr,325,130.0,force,lower_fy,-0.003429312026128173 +karman_re50,sr,326,130.4,force,front_fx,0.0007735389517620206 +karman_re50,sr,326,130.4,force,front_fy,0.0007219492108561099 +karman_re50,sr,326,130.4,force,upper_fx,0.0006317317020148039 +karman_re50,sr,326,130.4,force,upper_fy,0.003089405596256256 +karman_re50,sr,326,130.4,force,lower_fx,-0.001500794431194663 +karman_re50,sr,326,130.4,force,lower_fy,-0.003683939576148987 +karman_re50,sr,327,130.8,force,front_fx,0.0003540182369761169 +karman_re50,sr,327,130.8,force,front_fy,0.0015047740889713168 +karman_re50,sr,327,130.8,force,upper_fx,-0.0001524470280855894 +karman_re50,sr,327,130.8,force,upper_fy,0.0029882274102419615 +karman_re50,sr,327,130.8,force,lower_fx,-0.0003484596963971853 +karman_re50,sr,327,130.8,force,lower_fy,-0.003924197051674128 +karman_re50,sr,328,131.2,force,front_fx,0.00028902009944431484 +karman_re50,sr,328,131.2,force,front_fy,0.002167164348065853 +karman_re50,sr,328,131.2,force,upper_fx,-0.0010441800113767385 +karman_re50,sr,328,131.2,force,upper_fy,0.0029261859599500895 +karman_re50,sr,328,131.2,force,lower_fx,0.0007286587497219443 +karman_re50,sr,328,131.2,force,lower_fy,-0.004143296275287867 +karman_re50,sr,329,131.6,force,front_fx,0.0005680231843143702 +karman_re50,sr,329,131.6,force,front_fy,0.002757713897153735 +karman_re50,sr,329,131.6,force,upper_fx,-0.00204986403696239 +karman_re50,sr,329,131.6,force,upper_fy,0.0029311287216842175 +karman_re50,sr,329,131.6,force,lower_fx,0.0016222390113398433 +karman_re50,sr,329,131.6,force,lower_fy,-0.004340696148574352 +karman_re50,sr,330,132.0,force,front_fx,0.0011189113138243556 +karman_re50,sr,330,132.0,force,front_fy,0.0032724591437727213 +karman_re50,sr,330,132.0,force,upper_fx,-0.0031047887168824673 +karman_re50,sr,330,132.0,force,upper_fy,0.0029844436794519424 +karman_re50,sr,330,132.0,force,lower_fx,0.0022772266529500484 +karman_re50,sr,330,132.0,force,lower_fy,-0.004460941534489393 +karman_re50,sr,331,132.4,force,front_fx,0.0017953128553926945 +karman_re50,sr,331,132.4,force,front_fy,0.003626246703788638 +karman_re50,sr,331,132.4,force,upper_fx,-0.00403900071978569 +karman_re50,sr,331,132.4,force,upper_fy,0.003039764706045389 +karman_re50,sr,331,132.4,force,lower_fx,0.0026799493934959173 +karman_re50,sr,331,132.4,force,lower_fy,-0.004447305575013161 +karman_re50,sr,332,132.8,force,front_fx,0.002405785955488682 +karman_re50,sr,332,132.8,force,front_fy,0.0036753537133336067 +karman_re50,sr,332,132.8,force,upper_fx,-0.004643925931304693 +karman_re50,sr,332,132.8,force,upper_fy,0.0030534551478922367 +karman_re50,sr,332,132.8,force,lower_fx,0.002855511847883463 +karman_re50,sr,332,132.8,force,lower_fy,-0.004283581860363483 +karman_re50,sr,333,133.2,force,front_fx,0.0027503487654030323 +karman_re50,sr,333,133.2,force,front_fy,0.003297503339126706 +karman_re50,sr,333,133.2,force,upper_fx,-0.00478708790615201 +karman_re50,sr,333,133.2,force,upper_fy,0.003032387001439929 +karman_re50,sr,333,133.2,force,lower_fx,0.002810442354530096 +karman_re50,sr,333,133.2,force,lower_fy,-0.004005108494311571 +karman_re50,sr,334,133.6,force,front_fx,0.0027141335885971785 +karman_re50,sr,334,133.6,force,front_fy,0.0025219707749783993 +karman_re50,sr,334,133.6,force,upper_fx,-0.004469787236303091 +karman_re50,sr,334,133.6,force,upper_fy,0.0030467542819678783 +karman_re50,sr,334,133.6,force,lower_fx,0.002538081957027316 +karman_re50,sr,334,133.6,force,lower_fy,-0.0036864844150841236 +karman_re50,sr,335,134.0,force,front_fx,0.002283276291564107 +karman_re50,sr,335,134.0,force,front_fy,0.0014868475263938308 +karman_re50,sr,335,134.0,force,upper_fx,-0.0037770431954413652 +karman_re50,sr,335,134.0,force,upper_fy,0.0031642518006265163 +karman_re50,sr,335,134.0,force,lower_fx,0.002065389882773161 +karman_re50,sr,335,134.0,force,lower_fy,-0.003418381791561842 +karman_re50,sr,336,134.4,force,front_fx,0.0015885964967310429 +karman_re50,sr,336,134.4,force,front_fy,0.0004062105726916343 +karman_re50,sr,336,134.4,force,upper_fx,-0.002819555113092065 +karman_re50,sr,336,134.4,force,upper_fy,0.0033818427473306656 +karman_re50,sr,336,134.4,force,lower_fx,0.0014565113233402371 +karman_re50,sr,336,134.4,force,lower_fy,-0.0032349410466849804 +karman_re50,sr,337,134.8,force,front_fx,0.0008853340987116098 +karman_re50,sr,337,134.8,force,front_fy,-0.000563302543014288 +karman_re50,sr,337,134.8,force,upper_fx,-0.0017139326082542539 +karman_re50,sr,337,134.8,force,upper_fy,0.003633366199210286 +karman_re50,sr,337,134.8,force,lower_fx,0.0007640637340955436 +karman_re50,sr,337,134.8,force,lower_fy,-0.0031094893347471952 +karman_re50,sr,338,135.2,force,front_fx,0.0004043253429699689 +karman_re50,sr,338,135.2,force,front_fy,-0.0013737321132794023 +karman_re50,sr,338,135.2,force,upper_fx,-0.0005547759938053787 +karman_re50,sr,338,135.2,force,upper_fy,0.003882978344336152 +karman_re50,sr,338,135.2,force,lower_fx,-3.5785005820798688e-06 +karman_re50,sr,338,135.2,force,lower_fy,-0.00300394743680954 +karman_re50,sr,339,135.6,force,front_fx,0.0002739107294473797 +karman_re50,sr,339,135.6,force,front_fy,-0.0020526601001620293 +karman_re50,sr,339,135.6,force,upper_fx,0.0005419660010375082 +karman_re50,sr,339,135.6,force,upper_fy,0.004108526278287172 +karman_re50,sr,339,135.6,force,lower_fx,-0.0008725664229132235 +karman_re50,sr,339,135.6,force,lower_fy,-0.002933330135419965 +karman_re50,sr,340,136.0,force,front_fx,0.0004946067929267883 +karman_re50,sr,340,136.0,force,front_fy,-0.0026542756240814924 +karman_re50,sr,340,136.0,force,upper_fx,0.001475460478104651 +karman_re50,sr,340,136.0,force,upper_fy,0.00430859811604023 +karman_re50,sr,340,136.0,force,lower_fx,-0.0018612476997077465 +karman_re50,sr,340,136.0,force,lower_fy,-0.0029261417221277952 +karman_re50,sr,341,136.4,force,front_fx,0.0010043554939329624 +karman_re50,sr,341,136.4,force,front_fy,-0.003186219371855259 +karman_re50,sr,341,136.4,force,upper_fx,0.0021776538342237473 +karman_re50,sr,341,136.4,force,upper_fy,0.0044479393400251865 +karman_re50,sr,341,136.4,force,lower_fx,-0.0029168641194701195 +karman_re50,sr,341,136.4,force,lower_fy,-0.0029737758450210094 +karman_re50,sr,342,136.8,force,front_fx,0.0016730751376599073 +karman_re50,sr,342,136.8,force,front_fy,-0.003580622375011444 +karman_re50,sr,342,136.8,force,upper_fx,0.0026247971691191196 +karman_re50,sr,342,136.8,force,upper_fy,0.004461398348212242 +karman_re50,sr,342,136.8,force,lower_fx,-0.0038885504473000765 +karman_re50,sr,342,136.8,force,lower_fy,-0.0030315855983644724 +karman_re50,sr,343,137.2,force,front_fx,0.002306743524968624 +karman_re50,sr,343,137.2,force,front_fy,-0.003695567836984992 +karman_re50,sr,343,137.2,force,upper_fx,0.0028398504946380854 +karman_re50,sr,343,137.2,force,upper_fy,0.004324006848037243 +karman_re50,sr,343,137.2,force,lower_fx,-0.004566920455545187 +karman_re50,sr,343,137.2,force,lower_fy,-0.003053739434108138 +karman_re50,sr,344,137.6,force,front_fx,0.002712822053581476 +karman_re50,sr,344,137.6,force,front_fy,-0.003403594484552741 +karman_re50,sr,344,137.6,force,upper_fx,0.002835382241755724 +karman_re50,sr,344,137.6,force,upper_fy,0.004061388783156872 +karman_re50,sr,344,137.6,force,lower_fx,-0.004796026274561882 +karman_re50,sr,344,137.6,force,lower_fy,-0.003036297159269452 +karman_re50,sr,345,138.0,force,front_fx,0.002752643311396241 +karman_re50,sr,345,138.0,force,front_fy,-0.0026880863588303328 +karman_re50,sr,345,138.0,force,upper_fx,0.0026034745387732983 +karman_re50,sr,345,138.0,force,upper_fy,0.003743995213881135 +karman_re50,sr,345,138.0,force,lower_fx,-0.004558127839118242 +karman_re50,sr,345,138.0,force,lower_fy,-0.003038431517779827 +karman_re50,sr,346,138.4,force,front_fx,0.00238535413518548 +karman_re50,sr,346,138.4,force,front_fy,-0.001684249029494822 +karman_re50,sr,346,138.4,force,upper_fx,0.0021620113402605057 +karman_re50,sr,346,138.4,force,upper_fy,0.003460803534835577 +karman_re50,sr,346,138.4,force,lower_fx,-0.003924514167010784 +karman_re50,sr,346,138.4,force,lower_fy,-0.0031361610163003206 +karman_re50,sr,347,138.8,force,front_fx,0.0017238396685570478 +karman_re50,sr,347,138.8,force,front_fy,-0.0005967844044789672 +karman_re50,sr,347,138.8,force,upper_fx,0.00157219881657511 +karman_re50,sr,347,138.8,force,upper_fy,0.0032630236819386482 +karman_re50,sr,347,138.8,force,lower_fx,-0.0030062010046094656 +karman_re50,sr,347,138.8,force,lower_fy,-0.0033385208807885647 +karman_re50,sr,348,139.2,force,front_fx,0.0009981953771784902 +karman_re50,sr,348,139.2,force,front_fy,0.00040070462273433805 +karman_re50,sr,348,139.2,force,upper_fx,0.0008935638470575213 +karman_re50,sr,348,139.2,force,upper_fy,0.003129963530227542 +karman_re50,sr,348,139.2,force,lower_fx,-0.0019158940995112062 +karman_re50,sr,348,139.2,force,lower_fy,-0.0035920061636716127 +karman_re50,sr,349,139.6,force,front_fx,0.00046757064410485327 +karman_re50,sr,349,139.6,force,front_fy,0.0012389331823214889 +karman_re50,sr,349,139.6,force,upper_fx,0.00014119892148301005 +karman_re50,sr,349,139.6,force,upper_fy,0.003021381562575698 +karman_re50,sr,349,139.6,force,lower_fx,-0.0007612940389662981 +karman_re50,sr,349,139.6,force,lower_fy,-0.00383977172896266 +karman_re50,sr,350,140.0,force,front_fx,0.0002711607376113534 +karman_re50,sr,350,140.0,force,front_fy,0.0019380097510293126 +karman_re50,sr,350,140.0,force,upper_fx,-0.0007076557958498597 +karman_re50,sr,350,140.0,force,upper_fy,0.002942232182249427 +karman_re50,sr,350,140.0,force,lower_fx,0.000354117713868618 +karman_re50,sr,350,140.0,force,lower_fy,-0.004068401642143726 +karman_re50,sr,351,140.4,force,front_fx,0.00043117761379107833 +karman_re50,sr,351,140.4,force,front_fy,0.002550831064581871 +karman_re50,sr,351,140.4,force,upper_fx,-0.001676094369031489 +karman_re50,sr,351,140.4,force,upper_fy,0.002921825274825096 +karman_re50,sr,351,140.4,force,lower_fx,0.0013252751668915153 +karman_re50,sr,351,140.4,force,lower_fy,-0.004277235362678766 +karman_re50,sr,352,140.8,force,front_fx,0.0008968598558567464 +karman_re50,sr,352,140.8,force,front_fy,0.003098377026617527 +karman_re50,sr,352,140.8,force,upper_fx,-0.002727799816057086 +karman_re50,sr,352,140.8,force,upper_fy,0.0029632882215082645 +karman_re50,sr,352,140.8,force,lower_fx,0.002070188755169511 +karman_re50,sr,352,140.8,force,lower_fy,-0.004430241417139769 +karman_re50,sr,353,141.2,force,front_fx,0.0015498115681111813 +karman_re50,sr,353,141.2,force,front_fy,0.0035249304492026567 +karman_re50,sr,353,141.2,force,upper_fx,-0.003729830961674452 +karman_re50,sr,353,141.2,force,upper_fy,0.003022480523213744 +karman_re50,sr,353,141.2,force,lower_fx,0.0025613459292799234 +karman_re50,sr,353,141.2,force,lower_fy,-0.004469198174774647 +karman_re50,sr,354,141.6,force,front_fx,0.002204569987952709 +karman_re50,sr,354,141.6,force,front_fy,0.0037032023537904024 +karman_re50,sr,354,141.6,force,upper_fx,-0.004474039655178785 +karman_re50,sr,354,141.6,force,upper_fy,0.003054492175579071 +karman_re50,sr,354,141.6,force,lower_fx,0.00281658791936934 +karman_re50,sr,354,141.6,force,lower_fy,-0.004359191749244928 +karman_re50,sr,355,142.0,force,front_fx,0.0026629315689206123 +karman_re50,sr,355,142.0,force,front_fy,0.0034907886292785406 +karman_re50,sr,355,142.0,force,upper_fx,-0.0047903237864375114 +karman_re50,sr,355,142.0,force,upper_fy,0.003040534444153309 +karman_re50,sr,355,142.0,force,lower_fx,0.002852567471563816 +karman_re50,sr,355,142.0,force,lower_fy,-0.004115207586437464 +karman_re50,sr,356,142.4,force,front_fx,0.002775414614006877 +karman_re50,sr,356,142.4,force,front_fy,0.002844695234671235 +karman_re50,sr,356,142.4,force,upper_fx,-0.00463199894875288 +karman_re50,sr,356,142.4,force,upper_fy,0.003033141139894724 +karman_re50,sr,356,142.4,force,lower_fx,0.0026623320300132036 +karman_re50,sr,356,142.4,force,lower_fy,-0.0038010545540601015 +karman_re50,sr,357,142.8,force,front_fx,0.002480775350704789 +karman_re50,sr,357,142.8,force,front_fy,0.0018769634189084172 +karman_re50,sr,357,142.8,force,upper_fx,-0.004062909632921219 +karman_re50,sr,357,142.8,force,upper_fy,0.0031099163461476564 +karman_re50,sr,357,142.8,force,lower_fx,0.00225439528003335 +karman_re50,sr,357,142.8,force,lower_fy,-0.0035060837399214506 +karman_re50,sr,358,143.2,force,front_fx,0.0018555516144260764 +karman_re50,sr,358,143.2,force,front_fy,0.0007907072431407869 +karman_re50,sr,358,143.2,force,upper_fx,-0.003196661826223135 +karman_re50,sr,358,143.2,force,upper_fy,0.003295642090961337 +karman_re50,sr,358,143.2,force,lower_fx,0.0016864623175933957 +karman_re50,sr,358,143.2,force,lower_fy,-0.003292506095021963 +karman_re50,sr,359,143.6,force,front_fx,0.0011210402008146048 +karman_re50,sr,359,143.6,force,front_fy,-0.00023245452030096203 +karman_re50,sr,359,143.6,force,upper_fx,-0.0021214564330875874 +karman_re50,sr,359,143.6,force,upper_fy,0.003544432809576392 +karman_re50,sr,359,143.6,force,lower_fx,0.0010214823996648192 +karman_re50,sr,359,143.6,force,lower_fy,-0.0031509804539382458 +karman_re50,sr,360,144.0,force,front_fx,0.0005401146481744945 +karman_re50,sr,360,144.0,force,front_fy,-0.0010991347953677177 +karman_re50,sr,360,144.0,force,upper_fx,-0.0009711330640129745 +karman_re50,sr,360,144.0,force,upper_fy,0.0037954587023705244 +karman_re50,sr,360,144.0,force,lower_fx,0.00028392960666678846 +karman_re50,sr,360,144.0,force,lower_fy,-0.0030395654030144215 +karman_re50,sr,361,144.4,force,front_fx,0.0002796364715322852 +karman_re50,sr,361,144.4,force,front_fy,-0.0018186317756772041 +karman_re50,sr,361,144.4,force,upper_fx,0.00015898213314358145 +karman_re50,sr,361,144.4,force,upper_fy,0.004028011113405228 +karman_re50,sr,361,144.4,force,lower_fx,-0.000544712704140693 +karman_re50,sr,361,144.4,force,lower_fy,-0.002952232025563717 +karman_re50,sr,362,144.8,force,front_fx,0.00037736131343990564 +karman_re50,sr,362,144.8,force,front_fy,-0.002443966455757618 +karman_re50,sr,362,144.8,force,upper_fx,0.0011635191040113568 +karman_re50,sr,362,144.8,force,upper_fy,0.004241716582328081 +karman_re50,sr,362,144.8,force,lower_fx,-0.001491460483521223 +karman_re50,sr,362,144.8,force,lower_fy,-0.00292111374437809 +karman_re50,sr,363,145.2,force,front_fx,0.0007937350310385227 +karman_re50,sr,363,145.2,force,front_fy,-0.0030054745730012655 +karman_re50,sr,363,145.2,force,upper_fx,0.001953625585883856 +karman_re50,sr,363,145.2,force,upper_fy,0.004409490153193474 +karman_re50,sr,363,145.2,force,lower_fx,-0.0025347184855490923 +karman_re50,sr,363,145.2,force,lower_fy,-0.0029531652107834816 +karman_re50,sr,364,145.6,force,front_fx,0.0014248921070247889 +karman_re50,sr,364,145.6,force,front_fy,-0.003462135558947921 +karman_re50,sr,364,145.6,force,upper_fx,0.0024901540018618107 +karman_re50,sr,364,145.6,force,upper_fy,0.0044731199741363525 +karman_re50,sr,364,145.6,force,lower_fx,-0.00356026622466743 +karman_re50,sr,364,145.6,force,lower_fy,-0.00301394728012383 +karman_re50,sr,365,146.0,force,front_fx,0.0020938320085406303 +karman_re50,sr,365,146.0,force,front_fy,-0.0036931955255568027 +karman_re50,sr,365,146.0,force,upper_fx,0.0027865436859428883 +karman_re50,sr,365,146.0,force,upper_fy,0.004389779642224312 +karman_re50,sr,365,146.0,force,lower_fx,-0.004368033725768328 +karman_re50,sr,365,146.0,force,lower_fy,-0.003053303575143218 +karman_re50,sr,366,146.4,force,front_fx,0.0026007904671132565 +karman_re50,sr,366,146.4,force,front_fy,-0.0035615444649010897 +karman_re50,sr,366,146.4,force,upper_fx,0.0028629139997065067 +karman_re50,sr,366,146.4,force,upper_fy,0.004166916012763977 +karman_re50,sr,366,146.4,force,lower_fx,-0.004767825361341238 +karman_re50,sr,366,146.4,force,lower_fy,-0.0030433463398367167 +karman_re50,sr,367,146.8,force,front_fx,0.0027851464692503214 +karman_re50,sr,367,146.8,force,front_fy,-0.002989189000800252 +karman_re50,sr,367,146.8,force,upper_fx,0.00271382718347013 +karman_re50,sr,367,146.8,force,upper_fy,0.0038594177458435297 +karman_re50,sr,367,146.8,force,lower_fx,-0.004693704657256603 +karman_re50,sr,367,146.8,force,lower_fy,-0.003029256360605359 +karman_re50,sr,368,147.2,force,front_fx,0.002563607646152377 +karman_re50,sr,368,147.2,force,front_fy,-0.0020660648588091135 +karman_re50,sr,368,147.2,force,upper_fx,0.002342281863093376 +karman_re50,sr,368,147.2,force,upper_fy,0.0035546657163649797 +karman_re50,sr,368,147.2,force,lower_fx,-0.004192221909761429 +karman_re50,sr,368,147.2,force,lower_fy,-0.0030878884717822075 +karman_re50,sr,369,147.6,force,front_fx,0.001985160168260336 +karman_re50,sr,369,147.6,force,front_fy,-0.0009865188039839268 +karman_re50,sr,369,147.6,force,upper_fx,0.0017977370880544186 +karman_re50,sr,369,147.6,force,upper_fy,0.00332474778406322 +karman_re50,sr,369,147.6,force,lower_fx,-0.00336443237029016 +karman_re50,sr,369,147.6,force,lower_fy,-0.0032568550668656826 +karman_re50,sr,370,148.0,force,front_fx,0.001250105444341898 +karman_re50,sr,370,148.0,force,front_fy,5.676583532476798e-05 +karman_re50,sr,370,148.0,force,upper_fx,0.0011467339936643839 +karman_re50,sr,370,148.0,force,upper_fy,0.0031733778305351734 +karman_re50,sr,370,148.0,force,lower_fx,-0.002325016539543867 +karman_re50,sr,370,148.0,force,lower_fy,-0.003497702069580555 +karman_re50,sr,371,148.4,force,front_fx,0.0006241058581508696 +karman_re50,sr,371,148.4,force,front_fy,0.0009598173783160746 +karman_re50,sr,371,148.4,force,upper_fx,0.0004224013246130198 +karman_re50,sr,371,148.4,force,upper_fy,0.0030582742765545845 +karman_re50,sr,371,148.4,force,lower_fx,-0.0011797061888501048 +karman_re50,sr,371,148.4,force,lower_fy,-0.0037514865398406982 +karman_re50,sr,372,148.8,force,front_fx,0.0002992231457028538 +karman_re50,sr,372,148.8,force,front_fy,0.0016974721802398562 +karman_re50,sr,372,148.8,force,upper_fx,-0.0003875199763569981 +karman_re50,sr,372,148.8,force,upper_fy,0.0029650675132870674 +karman_re50,sr,372,148.8,force,lower_fx,-3.809592453762889e-05 +karman_re50,sr,372,148.8,force,lower_fy,-0.0039880466647446156 +karman_re50,sr,373,149.2,force,front_fx,0.00033451340277679265 +karman_re50,sr,373,149.2,force,front_fy,0.0023363970685750246 +karman_re50,sr,373,149.2,force,upper_fx,-0.0013120844960212708 +karman_re50,sr,373,149.2,force,upper_fy,0.0029214087408035994 +karman_re50,sr,373,149.2,force,lower_fx,0.000996492337435484 +karman_re50,sr,373,149.2,force,lower_fy,-0.004205419681966305 +karman_re50,sr,374,149.6,force,front_fx,0.0006988084060139954 +karman_re50,sr,374,149.6,force,front_fy,0.002909410512074828 +karman_re50,sr,374,149.6,force,upper_fx,-0.002343645552173257 +karman_re50,sr,374,149.6,force,upper_fy,0.0029437285847961903 +karman_re50,sr,374,149.6,force,lower_fx,0.0018298343056812882 +karman_re50,sr,374,149.6,force,lower_fy,-0.004384936299175024 +karman_re50,sr,375,150.0,force,front_fx,0.0013019758043810725 +karman_re50,sr,375,150.0,force,front_fy,0.0033926728647202253 +karman_re50,sr,375,150.0,force,upper_fx,-0.0033857470843940973 +karman_re50,sr,375,150.0,force,upper_fy,0.0030032633803784847 +karman_re50,sr,375,150.0,force,lower_fx,0.0024120090529322624 +karman_re50,sr,375,150.0,force,lower_fy,-0.004471664782613516 +karman_re50,sr,376,150.4,force,front_fx,0.001980121247470379 +karman_re50,sr,376,150.4,force,front_fy,0.0036782429087907076 +karman_re50,sr,376,150.4,force,upper_fx,-0.004249714780598879 +karman_re50,sr,376,150.4,force,upper_fy,0.003046252764761448 +karman_re50,sr,376,150.4,force,lower_fx,0.0027496281545609236 +karman_re50,sr,376,150.4,force,lower_fy,-0.004415883217006922 +karman_re50,sr,377,150.8,force,front_fx,0.0025314476806670427 +karman_re50,sr,377,150.8,force,front_fy,0.003618591232225299 +karman_re50,sr,377,150.8,force,upper_fx,-0.004731718450784683 +karman_re50,sr,377,150.8,force,upper_fy,0.003047797130420804 +karman_re50,sr,377,150.8,force,lower_fx,0.0028650376480072737 +karman_re50,sr,377,150.8,force,lower_fy,-0.004214807413518429 +karman_re50,sr,378,151.2,force,front_fx,0.002781956223770976 +karman_re50,sr,378,151.2,force,front_fy,0.003123554401099682 +karman_re50,sr,378,151.2,force,upper_fx,-0.0047418042086064816 +karman_re50,sr,378,151.2,force,upper_fy,0.0030302328523248434 +karman_re50,sr,378,151.2,force,lower_fx,0.0027575003914535046 +karman_re50,sr,378,151.2,force,lower_fy,-0.003917126916348934 +karman_re50,sr,379,151.6,force,front_fx,0.0026337308809161186 +karman_re50,sr,379,151.6,force,front_fy,0.002254227874800563 +karman_re50,sr,379,151.6,force,upper_fx,-0.004309556912630796 +karman_re50,sr,379,151.6,force,upper_fy,0.0030699893832206726 +karman_re50,sr,379,151.6,force,lower_fx,0.002424808219075203 +karman_re50,sr,379,151.6,force,lower_fy,-0.003605431877076626 +karman_re50,sr,380,152.0,force,front_fx,0.00210800813511014 +karman_re50,sr,380,152.0,force,front_fy,0.001184389111585915 +karman_re50,sr,380,152.0,force,upper_fx,-0.003532247617840767 +karman_re50,sr,380,152.0,force,upper_fy,0.003218337893486023 +karman_re50,sr,380,152.0,force,lower_fx,0.0019060316262766719 +karman_re50,sr,380,152.0,force,lower_fy,-0.0033595880959182978 +karman_re50,sr,381,152.4,force,front_fx,0.0013808021321892738 +karman_re50,sr,381,152.4,force,front_fy,0.0001222232385771349 +karman_re50,sr,381,152.4,force,upper_fx,-0.0025224187411367893 +karman_re50,sr,381,152.4,force,upper_fy,0.0034515156876295805 +karman_re50,sr,381,152.4,force,lower_fx,0.0012697972124442458 +karman_re50,sr,381,152.4,force,lower_fy,-0.003196367993950844 +karman_re50,sr,382,152.8,force,front_fx,0.000720264739356935 +karman_re50,sr,382,152.8,force,front_fy,-0.0008047346491366625 +karman_re50,sr,382,152.8,force,upper_fx,-0.001389415469020605 +karman_re50,sr,382,152.8,force,upper_fy,0.0037064896896481514 +karman_re50,sr,382,152.8,force,lower_fx,0.0005587770137935877 +karman_re50,sr,382,152.8,force,lower_fy,-0.0030773768667131662 +karman_re50,sr,383,153.2,force,front_fx,0.00033317398629151285 +karman_re50,sr,383,153.2,force,front_fy,-0.0015730810118839145 +karman_re50,sr,383,153.2,force,upper_fx,-0.0002391548769082874 +karman_re50,sr,383,153.2,force,upper_fy,0.003945924807339907 +karman_re50,sr,383,153.2,force,lower_fx,-0.0002331352443434298 +karman_re50,sr,383,153.2,force,lower_fy,-0.002978964475914836 +karman_re50,sr,384,153.6,force,front_fx,0.00030222945497371256 +karman_re50,sr,384,153.6,force,front_fy,-0.0022265459410846233 +karman_re50,sr,384,153.6,force,upper_fx,0.0008225688943639398 +karman_re50,sr,384,153.6,force,upper_fy,0.004167662933468819 +karman_re50,sr,384,153.6,force,lower_fx,-0.0011356511386111379 +karman_re50,sr,384,153.6,force,lower_fy,-0.0029241954907774925 +karman_re50,sr,385,154.0,force,front_fx,0.000612035219091922 +karman_re50,sr,385,154.0,force,front_fy,-0.0028109136037528515 +karman_re50,sr,385,154.0,force,upper_fx,0.0016972091980278492 +karman_re50,sr,385,154.0,force,upper_fy,0.0043578059412539005 +karman_re50,sr,385,154.0,force,lower_fx,-0.002152084605768323 +karman_re50,sr,385,154.0,force,lower_fy,-0.002936007920652628 +karman_re50,sr,386,154.4,force,front_fx,0.0011821901425719261 +karman_re50,sr,386,154.4,force,front_fy,-0.00331603130325675 +karman_re50,sr,386,154.4,force,upper_fx,0.0023253962863236666 +karman_re50,sr,386,154.4,force,upper_fy,0.004465712234377861 +karman_re50,sr,386,154.4,force,lower_fx,-0.0032042316161096096 +karman_re50,sr,386,154.4,force,lower_fy,-0.002991913817822933 +karman_re50,sr,387,154.8,force,front_fx,0.0018604833167046309 +karman_re50,sr,387,154.8,force,front_fy,-0.003648420562967658 +karman_re50,sr,387,154.8,force,upper_fx,0.0027051351498812437 +karman_re50,sr,387,154.8,force,upper_fy,0.004437027499079704 +karman_re50,sr,387,154.8,force,lower_fx,-0.004115425981581211 +karman_re50,sr,387,154.8,force,lower_fy,-0.0030410047620534897 +karman_re50,sr,388,155.2,force,front_fx,0.0024495527613908052 +karman_re50,sr,388,155.2,force,front_fy,-0.0036589563824236393 +karman_re50,sr,388,155.2,force,upper_fx,0.0028600359801203012 +karman_re50,sr,388,155.2,force,upper_fy,0.0042599644511938095 +karman_re50,sr,388,155.2,force,lower_fx,-0.004678293131291866 +karman_re50,sr,388,155.2,force,lower_fy,-0.003052713815122843 +karman_re50,sr,389,155.6,force,front_fx,0.0027641078922897577 +karman_re50,sr,389,155.6,force,front_fy,-0.0032451495062559843 +karman_re50,sr,389,155.6,force,upper_fx,0.0027944562025368214 +karman_re50,sr,389,155.6,force,upper_fy,0.0039747110567986965 +karman_re50,sr,389,155.6,force,lower_fx,-0.004773677792400122 +karman_re50,sr,389,155.6,force,lower_fy,-0.0030314612668007612 +karman_re50,sr,390,156.0,force,front_fx,0.0026894756592810154 +karman_re50,sr,390,156.0,force,front_fy,-0.0024297002237290144 +karman_re50,sr,390,156.0,force,upper_fx,0.0025009019300341606 +karman_re50,sr,390,156.0,force,upper_fy,0.00365908513776958 +karman_re50,sr,390,156.0,force,lower_fx,-0.004415467847138643 +karman_re50,sr,390,156.0,force,lower_fy,-0.0030545995105057955 +karman_re50,sr,391,156.4,force,front_fx,0.0022200194653123617 +karman_re50,sr,391,156.4,force,front_fy,-0.0013809092342853546 +karman_re50,sr,391,156.4,force,upper_fx,0.0020102043636143208 +karman_re50,sr,391,156.4,force,upper_fy,0.003397569293156266 +karman_re50,sr,391,156.4,force,lower_fx,-0.0036932257935404778 +karman_re50,sr,391,156.4,force,lower_fy,-0.0031831455416977406 +karman_re50,sr,392,156.8,force,front_fx,0.0015149001264944673 +karman_re50,sr,392,156.8,force,front_fy,-0.00030677736504003406 +karman_re50,sr,392,156.8,force,upper_fx,0.0013906733365729451 +karman_re50,sr,392,156.8,force,upper_fy,0.003221502061933279 +karman_re50,sr,392,156.8,force,lower_fx,-0.0027169957756996155 +karman_re50,sr,392,156.8,force,lower_fy,-0.0034058771561831236 +karman_re50,sr,393,157.2,force,front_fx,0.0008221364696510136 +karman_re50,sr,393,157.2,force,front_fy,0.000651123293209821 +karman_re50,sr,393,157.2,force,upper_fx,0.0006922794273123145 +karman_re50,sr,393,157.2,force,upper_fy,0.003097188426181674 +karman_re50,sr,393,157.2,force,lower_fx,-0.0015989075182005763 +karman_re50,sr,393,157.2,force,lower_fy,-0.0036608611699193716 +karman_re50,sr,394,157.6,force,front_fx,0.0003765550209209323 +karman_re50,sr,394,157.6,force,front_fy,0.0014445449924096465 +karman_re50,sr,394,157.6,force,upper_fx,-8.289355901069939e-05 +karman_re50,sr,394,157.6,force,upper_fy,0.0029943170957267284 +karman_re50,sr,394,157.6,force,lower_fx,-0.0004436497110873461 +karman_re50,sr,394,157.6,force,lower_fy,-0.0039037405513226986 +karman_re50,sr,395,158.0,force,front_fx,0.00028101669158786535 +karman_re50,sr,395,158.0,force,front_fy,0.0021140282042324543 +karman_re50,sr,395,158.0,force,upper_fx,-0.0009629311971366405 +karman_re50,sr,395,158.0,force,upper_fy,0.002929896814748645 +karman_re50,sr,395,158.0,force,lower_fx,0.0006424790481105447 +karman_re50,sr,395,158.0,force,lower_fy,-0.00412927707657218 +karman_re50,sr,396,158.4,force,front_fx,0.0005333793815225363 +karman_re50,sr,396,158.4,force,front_fy,0.0027097146958112717 +karman_re50,sr,396,158.4,force,upper_fx,-0.001962197944521904 +karman_re50,sr,396,158.4,force,upper_fy,0.002929205307736993 +karman_re50,sr,396,158.4,force,lower_fx,0.001556777860969305 +karman_re50,sr,396,158.4,force,lower_fy,-0.004328079055994749 +karman_re50,sr,397,158.8,force,front_fx,0.0010646372102200985 +karman_re50,sr,397,158.8,force,front_fy,0.003233369207009673 +karman_re50,sr,397,158.8,force,upper_fx,-0.0030187061056494713 +karman_re50,sr,397,158.8,force,upper_fy,0.002980737015604973 +karman_re50,sr,397,158.8,force,lower_fx,0.0022311515640467405 +karman_re50,sr,397,158.8,force,lower_fy,-0.004455085843801498 +karman_re50,sr,398,159.2,force,front_fx,0.0017389169661328197 +karman_re50,sr,398,159.2,force,front_fy,0.003606966696679592 +karman_re50,sr,398,159.2,force,upper_fx,-0.003971707075834274 +karman_re50,sr,398,159.2,force,upper_fy,0.003035761648789048 +karman_re50,sr,398,159.2,force,lower_fx,0.0026536902878433466 +karman_re50,sr,398,159.2,force,lower_fy,-0.004453599918633699 +karman_re50,sr,399,159.6,force,front_fx,0.0023587578907608986 +karman_re50,sr,399,159.6,force,front_fy,0.0036881165578961372 +karman_re50,sr,399,159.6,force,upper_fx,-0.004609913099557161 +karman_re50,sr,399,159.6,force,upper_fy,0.0030519934371113777 +karman_re50,sr,399,159.6,force,lower_fx,0.0028485311195254326 +karman_re50,sr,399,159.6,force,lower_fy,-0.004301931709051132 +karman_re50,sr,0,0.0,alpha,front,1.1303061206045322 +karman_re50,sr,0,0.0,alpha,upper,-4.403400662544717 +karman_re50,sr,0,0.0,alpha,lower,2.459016698476515 +karman_re50,sr,1,0.4,alpha,front,0.8295689151963589 +karman_re50,sr,1,0.4,alpha,upper,-4.122152054950243 +karman_re50,sr,1,0.4,alpha,lower,2.740265306070989 +karman_re50,sr,2,0.8,alpha,front,0.6267152346185917 +karman_re50,sr,2,0.8,alpha,upper,-4.1461342760204705 +karman_re50,sr,2,0.8,alpha,lower,2.716283085000762 +karman_re50,sr,3,1.2,alpha,front,0.45720953831262817 +karman_re50,sr,3,1.2,alpha,upper,-3.666832103258771 +karman_re50,sr,3,1.2,alpha,lower,3.1955852577624606 +karman_re50,sr,4,1.6,alpha,front,0.09667411850091466 +karman_re50,sr,4,1.6,alpha,upper,-3.059406075684512 +karman_re50,sr,4,1.6,alpha,lower,3.80301128533672 +karman_re50,sr,5,2.0,alpha,front,-0.3443940366547387 +karman_re50,sr,5,2.0,alpha,upper,-2.7938540139426458 +karman_re50,sr,5,2.0,alpha,lower,4.0685633470785865 +karman_re50,sr,6,2.4,alpha,front,-0.7793164149932601 +karman_re50,sr,6,2.4,alpha,upper,-2.638294241234772 +karman_re50,sr,6,2.4,alpha,lower,4.22412311978646 +karman_re50,sr,7,2.8,alpha,front,-1.186617107605167 +karman_re50,sr,7,2.8,alpha,upper,-2.461291708027199 +karman_re50,sr,7,2.8,alpha,lower,4.4011256529940335 +karman_re50,sr,8,3.2,alpha,front,-1.5157435492950229 +karman_re50,sr,8,3.2,alpha,upper,-2.3743555286335467 +karman_re50,sr,8,3.2,alpha,lower,4.488061832387686 +karman_re50,sr,9,3.6,alpha,front,-1.7126420392250967 +karman_re50,sr,9,3.6,alpha,upper,-2.4632483715315416 +karman_re50,sr,9,3.6,alpha,lower,4.399168989489691 +karman_re50,sr,10,4.0,alpha,front,-1.7407936477423442 +karman_re50,sr,10,4.0,alpha,upper,-2.6466271126620344 +karman_re50,sr,10,4.0,alpha,lower,4.215790248359197 +karman_re50,sr,11,4.4,alpha,front,-1.6039360837580907 +karman_re50,sr,11,4.4,alpha,upper,-2.860057659668825 +karman_re50,sr,11,4.4,alpha,lower,4.002359701352407 +karman_re50,sr,12,4.8,alpha,front,-1.3413460821070564 +karman_re50,sr,12,4.8,alpha,upper,-3.07943523358245 +karman_re50,sr,12,4.8,alpha,lower,3.7829821274387823 +karman_re50,sr,13,5.2,alpha,front,-1.0009084345106494 +karman_re50,sr,13,5.2,alpha,upper,-3.3414676760515656 +karman_re50,sr,13,5.2,alpha,lower,3.5209496849696675 +karman_re50,sr,14,5.6,alpha,front,-0.6175836818132637 +karman_re50,sr,14,5.6,alpha,upper,-3.634060121002759 +karman_re50,sr,14,5.6,alpha,lower,3.228357240018473 +karman_re50,sr,15,6.0,alpha,front,-0.21192361477662475 +karman_re50,sr,15,6.0,alpha,upper,-3.9061800681770356 +karman_re50,sr,15,6.0,alpha,lower,2.9562372928441967 +karman_re50,sr,16,6.4,alpha,front,0.19858457258224302 +karman_re50,sr,16,6.4,alpha,upper,-4.142429373563407 +karman_re50,sr,16,6.4,alpha,lower,2.7199879874578254 +karman_re50,sr,17,6.8,alpha,front,0.5990288472739423 +karman_re50,sr,17,6.8,alpha,upper,-4.321093517842128 +karman_re50,sr,17,6.8,alpha,lower,2.541323843179105 +karman_re50,sr,18,7.2,alpha,front,0.9628370656230274 +karman_re50,sr,18,7.2,alpha,upper,-4.432033993952453 +karman_re50,sr,18,7.2,alpha,lower,2.430383367068779 +karman_re50,sr,19,7.6,alpha,front,1.255701519340105 +karman_re50,sr,19,7.6,alpha,upper,-4.415671372560513 +karman_re50,sr,19,7.6,alpha,lower,2.4467459884607194 +karman_re50,sr,20,8.0,alpha,front,1.4323266580200338 +karman_re50,sr,20,8.0,alpha,upper,-4.2865163566901465 +karman_re50,sr,20,8.0,alpha,lower,2.5759010043310857 +karman_re50,sr,21,8.4,alpha,front,1.4629415234025795 +karman_re50,sr,21,8.4,alpha,upper,-4.090850158501726 +karman_re50,sr,21,8.4,alpha,lower,2.7715672025195057 +karman_re50,sr,22,8.8,alpha,front,1.3480410845307016 +karman_re50,sr,22,8.8,alpha,upper,-3.8754110321599846 +karman_re50,sr,22,8.8,alpha,lower,2.9870063288612476 +karman_re50,sr,23,9.2,alpha,front,1.1173985640547661 +karman_re50,sr,23,9.2,alpha,upper,-3.632798459746886 +karman_re50,sr,23,9.2,alpha,lower,3.229618901274347 +karman_re50,sr,24,9.6,alpha,front,0.8096259873062518 +karman_re50,sr,24,9.6,alpha,upper,-3.363275522069736 +karman_re50,sr,24,9.6,alpha,lower,3.4991418389514966 +karman_re50,sr,25,10.0,alpha,front,0.4567562717879321 +karman_re50,sr,25,10.0,alpha,upper,-3.0921290347808292 +karman_re50,sr,25,10.0,alpha,lower,3.770288326240403 +karman_re50,sr,26,10.4,alpha,front,0.08146511046821397 +karman_re50,sr,26,10.4,alpha,upper,-2.850023288760973 +karman_re50,sr,26,10.4,alpha,lower,4.012394072260259 +karman_re50,sr,27,10.8,alpha,front,-0.30198459577213277 +karman_re50,sr,27,10.8,alpha,upper,-2.652917758424245 +karman_re50,sr,27,10.8,alpha,lower,4.209499602596987 +karman_re50,sr,28,11.2,alpha,front,-0.6745398424022769 +karman_re50,sr,28,11.2,alpha,upper,-2.507938310197719 +karman_re50,sr,28,11.2,alpha,lower,4.354479050823513 +karman_re50,sr,29,11.6,alpha,front,-1.0132004765427851 +karman_re50,sr,29,11.6,alpha,upper,-2.449563754422311 +karman_re50,sr,29,11.6,alpha,lower,4.4128536065989215 +karman_re50,sr,30,12.0,alpha,front,-1.2828263823318384 +karman_re50,sr,30,12.0,alpha,upper,-2.484163447958251 +karman_re50,sr,30,12.0,alpha,lower,4.378253913062981 +karman_re50,sr,31,12.4,alpha,front,-1.4468326964037272 +karman_re50,sr,31,12.4,alpha,upper,-2.6019446340418977 +karman_re50,sr,31,12.4,alpha,lower,4.2604727269793345 +karman_re50,sr,32,12.8,alpha,front,-1.480226234877009 +karman_re50,sr,32,12.8,alpha,upper,-2.7648141861486204 +karman_re50,sr,32,12.8,alpha,lower,4.097603174872612 +karman_re50,sr,33,13.2,alpha,front,-1.3796957933816818 +karman_re50,sr,33,13.2,alpha,upper,-2.965294549966578 +karman_re50,sr,33,13.2,alpha,lower,3.897122811054654 +karman_re50,sr,34,13.6,alpha,front,-1.166870560059248 +karman_re50,sr,34,13.6,alpha,upper,-3.211886524081864 +karman_re50,sr,34,13.6,alpha,lower,3.6505308369393683 +karman_re50,sr,35,14.0,alpha,front,-0.8722090463736327 +karman_re50,sr,35,14.0,alpha,upper,-3.48264097833905 +karman_re50,sr,35,14.0,alpha,lower,3.3797763826821825 +karman_re50,sr,36,14.4,alpha,front,-0.5286445646037514 +karman_re50,sr,36,14.4,alpha,upper,-3.746838356618292 +karman_re50,sr,36,14.4,alpha,lower,3.1155790044029406 +karman_re50,sr,37,14.8,alpha,front,-0.1615267624776023 +karman_re50,sr,37,14.8,alpha,upper,-3.980329424165558 +karman_re50,sr,37,14.8,alpha,lower,2.882087936855674 +karman_re50,sr,38,15.2,alpha,front,0.2160398292634483 +karman_re50,sr,38,15.2,alpha,upper,-4.175229978036881 +karman_re50,sr,38,15.2,alpha,lower,2.6871873829843516 +karman_re50,sr,39,15.6,alpha,front,0.5868099983228363 +karman_re50,sr,39,15.6,alpha,upper,-4.321019221873398 +karman_re50,sr,39,15.6,alpha,lower,2.541398139147835 +karman_re50,sr,40,16.0,alpha,front,0.9286733681060453 +karman_re50,sr,40,16.0,alpha,upper,-4.393506357807421 +karman_re50,sr,40,16.0,alpha,lower,2.4689110032138104 +karman_re50,sr,41,16.4,alpha,front,1.2095660355953348 +karman_re50,sr,41,16.4,alpha,upper,-4.372187982157012 +karman_re50,sr,41,16.4,alpha,lower,2.4902293788642207 +karman_re50,sr,42,16.8,alpha,front,1.3941868690305819 +karman_re50,sr,42,16.8,alpha,upper,-4.271134807475454 +karman_re50,sr,42,16.8,alpha,lower,2.5912825535457786 +karman_re50,sr,43,17.2,alpha,front,1.4529229290629169 +karman_re50,sr,43,17.2,alpha,upper,-4.114745599444543 +karman_re50,sr,43,17.2,alpha,lower,2.7476717615766892 +karman_re50,sr,44,17.6,alpha,front,1.379041073834904 +karman_re50,sr,44,17.6,alpha,upper,-3.920430583064483 +karman_re50,sr,44,17.6,alpha,lower,2.9419867779567492 +karman_re50,sr,45,18.0,alpha,front,1.186805362784764 +karman_re50,sr,45,18.0,alpha,upper,-3.6805735080654127 +karman_re50,sr,45,18.0,alpha,lower,3.181843852955819 +karman_re50,sr,46,18.4,alpha,front,0.9087462465470554 +karman_re50,sr,46,18.4,alpha,upper,-3.4136780290529027 +karman_re50,sr,46,18.4,alpha,lower,3.44873933196833 +karman_re50,sr,47,18.8,alpha,front,0.5758550342638078 +karman_re50,sr,47,18.8,alpha,upper,-3.154449041436648 +karman_re50,sr,47,18.8,alpha,lower,3.7079683195845843 +karman_re50,sr,48,19.2,alpha,front,0.21416651262723194 +karman_re50,sr,48,19.2,alpha,upper,-2.9160016106475615 +karman_re50,sr,48,19.2,alpha,lower,3.946415750373671 +karman_re50,sr,49,19.6,alpha,front,-0.16012462768800823 +karman_re50,sr,49,19.6,alpha,upper,-2.716417822567004 +karman_re50,sr,49,19.6,alpha,lower,4.145999538454228 +karman_re50,sr,50,20.0,alpha,front,-0.5314762066636523 +karman_re50,sr,50,20.0,alpha,upper,-2.5602216622581224 +karman_re50,sr,50,20.0,alpha,lower,4.30219569876311 +karman_re50,sr,51,20.4,alpha,front,-0.8787744235621755 +karman_re50,sr,51,20.4,alpha,upper,-2.4774195663376193 +karman_re50,sr,51,20.4,alpha,lower,4.3849977946836125 +karman_re50,sr,52,20.8,alpha,front,-1.172253992198625 +karman_re50,sr,52,20.8,alpha,upper,-2.4801642542971813 +karman_re50,sr,52,20.8,alpha,lower,4.382253106724051 +karman_re50,sr,53,21.2,alpha,front,-1.3756092795904247 +karman_re50,sr,53,21.2,alpha,upper,-2.568449179565792 +karman_re50,sr,53,21.2,alpha,lower,4.29396818145544 +karman_re50,sr,54,21.6,alpha,front,-1.4583295379012917 +karman_re50,sr,54,21.6,alpha,upper,-2.7146998805359583 +karman_re50,sr,54,21.6,alpha,lower,4.147717480485274 +karman_re50,sr,55,22.0,alpha,front,-1.4075894834229203 +karman_re50,sr,55,22.0,alpha,upper,-2.8994616228548615 +karman_re50,sr,55,22.0,alpha,lower,3.962955738166371 +karman_re50,sr,56,22.4,alpha,front,-1.2354369592516485 +karman_re50,sr,56,22.4,alpha,upper,-3.13439050009206 +karman_re50,sr,56,22.4,alpha,lower,3.728026860929172 +karman_re50,sr,57,22.8,alpha,front,-0.9697636796373252 +karman_re50,sr,57,22.8,alpha,upper,-3.3962276111515846 +karman_re50,sr,57,22.8,alpha,lower,3.466189749869648 +karman_re50,sr,58,23.2,alpha,front,-0.6447986542123068 +karman_re50,sr,58,23.2,alpha,upper,-3.6616431083771572 +karman_re50,sr,58,23.2,alpha,lower,3.200774252644075 +karman_re50,sr,59,23.6,alpha,front,-0.2866410715881441 +karman_re50,sr,59,23.6,alpha,upper,-3.900702719679079 +karman_re50,sr,59,23.6,alpha,lower,2.961714641342153 +karman_re50,sr,60,24.0,alpha,front,0.08627099894323623 +karman_re50,sr,60,24.0,alpha,upper,-4.111453130961435 +karman_re50,sr,60,24.0,alpha,lower,2.7509642300597976 +karman_re50,sr,61,24.4,alpha,front,0.4592779254987406 +karman_re50,sr,61,24.4,alpha,upper,-4.274628697201656 +karman_re50,sr,61,24.4,alpha,lower,2.587788663819576 +karman_re50,sr,62,24.8,alpha,front,0.8129823906792794 +karman_re50,sr,62,24.8,alpha,upper,-4.374208741158967 +karman_re50,sr,62,24.8,alpha,lower,2.488208619862265 +karman_re50,sr,63,25.2,alpha,front,1.1185098024120665 +karman_re50,sr,63,25.2,alpha,upper,-4.387641239161196 +karman_re50,sr,63,25.2,alpha,lower,2.474776121860036 +karman_re50,sr,64,25.6,alpha,front,1.341213193486176 +karman_re50,sr,64,25.6,alpha,upper,-4.3121041623632985 +karman_re50,sr,64,25.6,alpha,lower,2.5503131986579337 +karman_re50,sr,65,26.0,alpha,front,1.4471386110705724 +karman_re50,sr,65,26.0,alpha,upper,-4.177466773882337 +karman_re50,sr,65,26.0,alpha,lower,2.6849505871388955 +karman_re50,sr,66,26.4,alpha,front,1.4209150641509662 +karman_re50,sr,66,26.4,alpha,upper,-3.99570168638416 +karman_re50,sr,66,26.4,alpha,lower,2.866715674637072 +karman_re50,sr,67,26.8,alpha,front,1.2691416959687498 +karman_re50,sr,67,26.8,alpha,upper,-3.771128418772068 +karman_re50,sr,67,26.8,alpha,lower,3.091288942249164 +karman_re50,sr,68,27.2,alpha,front,1.0179484808513124 +karman_re50,sr,68,27.2,alpha,upper,-3.5117322652261707 +karman_re50,sr,68,27.2,alpha,lower,3.350685095795061 +karman_re50,sr,69,27.6,alpha,front,0.7020466991293082 +karman_re50,sr,69,27.6,alpha,upper,-3.2487310824926507 +karman_re50,sr,69,27.6,alpha,lower,3.6136862785285815 +karman_re50,sr,70,28.0,alpha,front,0.3483194013482724 +karman_re50,sr,70,28.0,alpha,upper,-2.999938090303736 +karman_re50,sr,70,28.0,alpha,lower,3.862479270717496 +karman_re50,sr,71,28.4,alpha,front,-0.022851450989965764 +karman_re50,sr,71,28.4,alpha,upper,-2.7844526812273753 +karman_re50,sr,71,28.4,alpha,lower,4.0779646797938565 +karman_re50,sr,72,28.8,alpha,front,-0.39744349156890346 +karman_re50,sr,72,28.8,alpha,upper,-2.610434014190174 +karman_re50,sr,72,28.8,alpha,lower,4.251983346831058 +karman_re50,sr,73,29.2,alpha,front,-0.7556481879377476 +karman_re50,sr,73,29.2,alpha,upper,-2.4933845216018486 +karman_re50,sr,73,29.2,alpha,lower,4.369032839419384 +karman_re50,sr,74,29.6,alpha,front,-1.0733862790572433 +karman_re50,sr,74,29.6,alpha,upper,-2.470588447852065 +karman_re50,sr,74,29.6,alpha,lower,4.391828913169167 +karman_re50,sr,75,30.0,alpha,front,-1.3132657352792552 +karman_re50,sr,75,30.0,alpha,upper,-2.529632124083556 +karman_re50,sr,75,30.0,alpha,lower,4.332785236937676 +karman_re50,sr,76,30.4,alpha,front,-1.442320432867858 +karman_re50,sr,76,30.4,alpha,upper,-2.654358765276766 +karman_re50,sr,76,30.4,alpha,lower,4.208058595744466 +karman_re50,sr,77,30.8,alpha,front,-1.4397429353004132 +karman_re50,sr,77,30.8,alpha,upper,-2.8262630421219113 +karman_re50,sr,77,30.8,alpha,lower,4.036154318899321 +karman_re50,sr,78,31.2,alpha,front,-1.3090229341690873 +karman_re50,sr,78,31.2,alpha,upper,-3.044297351010729 +karman_re50,sr,78,31.2,alpha,lower,3.8181200100105035 +karman_re50,sr,79,31.6,alpha,front,-1.0732541452330733 +karman_re50,sr,79,31.6,alpha,upper,-3.300266602998951 +karman_re50,sr,79,31.6,alpha,lower,3.562150758022281 +karman_re50,sr,80,32.0,alpha,front,-0.7658160100270861 +karman_re50,sr,80,32.0,alpha,upper,-3.568016790143533 +karman_re50,sr,80,32.0,alpha,lower,3.2944005708777 +karman_re50,sr,81,32.4,alpha,front,-0.4164046065376831 +karman_re50,sr,81,32.4,alpha,upper,-3.8147489826752126 +karman_re50,sr,81,32.4,alpha,lower,3.0476683783460197 +karman_re50,sr,82,32.8,alpha,front,-0.047357108346015225 +karman_re50,sr,82,32.8,alpha,upper,-4.040973660887335 +karman_re50,sr,82,32.8,alpha,lower,2.8214437001338966 +karman_re50,sr,83,33.2,alpha,front,0.3278397352972328 +karman_re50,sr,83,33.2,alpha,upper,-4.225169505428022 +karman_re50,sr,83,33.2,alpha,lower,2.6372478555932104 +karman_re50,sr,84,33.6,alpha,front,0.69172136872638 +karman_re50,sr,84,33.6,alpha,upper,-4.350890007448834 +karman_re50,sr,84,33.6,alpha,lower,2.5115273535723976 +karman_re50,sr,85,34.0,alpha,front,1.018427932161897 +karman_re50,sr,85,34.0,alpha,upper,-4.396523718062056 +karman_re50,sr,85,34.0,alpha,lower,2.4658936429591756 +karman_re50,sr,86,34.4,alpha,front,1.2752754848381247 +karman_re50,sr,86,34.4,alpha,upper,-4.350061790092499 +karman_re50,sr,86,34.4,alpha,lower,2.512355570928733 +karman_re50,sr,87,34.8,alpha,front,1.426254229683254 +karman_re50,sr,87,34.8,alpha,upper,-4.234711970034712 +karman_re50,sr,87,34.8,alpha,lower,2.6277053909865202 +karman_re50,sr,88,35.2,alpha,front,1.4476972938358719 +karman_re50,sr,88,35.2,alpha,upper,-4.068719551307924 +karman_re50,sr,88,35.2,alpha,lower,2.793697809713308 +karman_re50,sr,89,35.6,alpha,front,1.3387535774050117 +karman_re50,sr,89,35.6,alpha,upper,-3.859839175648339 +karman_re50,sr,89,35.6,alpha,lower,3.002578185372893 +karman_re50,sr,90,36.0,alpha,front,1.119239380032618 +karman_re50,sr,90,36.0,alpha,upper,-3.607932756081288 +karman_re50,sr,90,36.0,alpha,lower,3.2544846049399436 +karman_re50,sr,91,36.4,alpha,front,0.8222251649999117 +karman_re50,sr,91,36.4,alpha,upper,-3.3409826208130937 +karman_re50,sr,91,36.4,alpha,lower,3.521434740208139 +karman_re50,sr,92,36.8,alpha,front,0.47929754295464 +karman_re50,sr,92,36.8,alpha,upper,-3.0863347104490697 +karman_re50,sr,92,36.8,alpha,lower,3.776082650572163 +karman_re50,sr,93,37.2,alpha,front,0.11240929892809264 +karman_re50,sr,93,37.2,alpha,upper,-2.8589864579557416 +karman_re50,sr,93,37.2,alpha,lower,4.003430903065491 +karman_re50,sr,94,37.6,alpha,front,-0.26291922621629654 +karman_re50,sr,94,37.6,alpha,upper,-2.667311841136513 +karman_re50,sr,94,37.6,alpha,lower,4.195105519884719 +karman_re50,sr,95,38.0,alpha,front,-0.6300951476891656 +karman_re50,sr,95,38.0,alpha,upper,-2.5266878418309515 +karman_re50,sr,95,38.0,alpha,lower,4.335729519190281 +karman_re50,sr,96,38.4,alpha,front,-0.9660377588746287 +karman_re50,sr,96,38.4,alpha,upper,-2.4679940265341767 +karman_re50,sr,96,38.4,alpha,lower,4.394423334487056 +karman_re50,sr,97,38.8,alpha,front,-1.2380437606913892 +karman_re50,sr,97,38.8,alpha,upper,-2.4955132229026358 +karman_re50,sr,97,38.8,alpha,lower,4.3669041381185965 +karman_re50,sr,98,39.2,alpha,front,-1.410629182976121 +karman_re50,sr,98,39.2,alpha,upper,-2.6024225337260036 +karman_re50,sr,98,39.2,alpha,lower,4.259994827295229 +karman_re50,sr,99,39.6,alpha,front,-1.4564930731044774 +karman_re50,sr,99,39.6,alpha,upper,-2.7576080861651517 +karman_re50,sr,99,39.6,alpha,lower,4.1048092748560805 +karman_re50,sr,100,40.0,alpha,front,-1.3700673845416178 +karman_re50,sr,100,40.0,alpha,upper,-2.9607020542765303 +karman_re50,sr,100,40.0,alpha,lower,3.901715306744702 +karman_re50,sr,101,40.4,alpha,front,-1.1683169281560764 +karman_re50,sr,101,40.4,alpha,upper,-3.2057293979191948 +karman_re50,sr,101,40.4,alpha,lower,3.656687963102038 +karman_re50,sr,102,40.8,alpha,front,-0.8826769223553571 +karman_re50,sr,102,40.8,alpha,upper,-3.4720821205207972 +karman_re50,sr,102,40.8,alpha,lower,3.3903352405004346 +karman_re50,sr,103,41.2,alpha,front,-0.5462535722649207 +karman_re50,sr,103,41.2,alpha,upper,-3.729896439814429 +karman_re50,sr,103,41.2,alpha,lower,3.1325209212068037 +karman_re50,sr,104,41.6,alpha,front,-0.18206969270294102 +karman_re50,sr,104,41.6,alpha,upper,-3.9632979868092097 +karman_re50,sr,104,41.6,alpha,lower,2.899119374212023 +karman_re50,sr,105,42.0,alpha,front,0.19261082281542907 +karman_re50,sr,105,42.0,alpha,upper,-4.164411997803098 +karman_re50,sr,105,42.0,alpha,lower,2.6980053632181336 +karman_re50,sr,106,42.4,alpha,front,0.5637805290836617 +karman_re50,sr,106,42.4,alpha,upper,-4.315980798125132 +karman_re50,sr,106,42.4,alpha,lower,2.5464365628961008 +karman_re50,sr,107,42.8,alpha,front,0.906576028404715 +karman_re50,sr,107,42.8,alpha,upper,-4.390020080373097 +karman_re50,sr,107,42.8,alpha,lower,2.472397280648135 +karman_re50,sr,108,43.2,alpha,front,1.1930703974821784 +karman_re50,sr,108,43.2,alpha,upper,-4.37583320424575 +karman_re50,sr,108,43.2,alpha,lower,2.4865841567754816 +karman_re50,sr,109,43.6,alpha,front,1.386018503427751 +karman_re50,sr,109,43.6,alpha,upper,-4.283367608277696 +karman_re50,sr,109,43.6,alpha,lower,2.5790497527435363 +karman_re50,sr,110,44.0,alpha,front,1.4558689006245777 +karman_re50,sr,110,44.0,alpha,upper,-4.135430327919022 +karman_re50,sr,110,44.0,alpha,lower,2.7269870331022106 +karman_re50,sr,111,44.4,alpha,front,1.392929155711609 +karman_re50,sr,111,44.4,alpha,upper,-3.9413561644539845 +karman_re50,sr,111,44.4,alpha,lower,2.921061196567248 +karman_re50,sr,112,44.8,alpha,front,1.209850416356023 +karman_re50,sr,112,44.8,alpha,upper,-3.7016796530182625 +karman_re50,sr,112,44.8,alpha,lower,3.16073770800297 +karman_re50,sr,113,45.2,alpha,front,0.936928224531955 +karman_re50,sr,113,45.2,alpha,upper,-3.4356350759918834 +karman_re50,sr,113,45.2,alpha,lower,3.4267822850293483 +karman_re50,sr,114,45.6,alpha,front,0.6074938701839612 +karman_re50,sr,114,45.6,alpha,upper,-3.177102613082474 +karman_re50,sr,114,45.6,alpha,lower,3.685314747938758 +karman_re50,sr,115,46.0,alpha,front,0.2474190928148 +karman_re50,sr,115,46.0,alpha,upper,-2.938844728361152 +karman_re50,sr,115,46.0,alpha,lower,3.923572632660081 +karman_re50,sr,116,46.4,alpha,front,-0.12644449956366433 +karman_re50,sr,116,46.4,alpha,upper,-2.7319525310942843 +karman_re50,sr,116,46.4,alpha,lower,4.1304648299269475 +karman_re50,sr,117,46.8,alpha,front,-0.49869254393257445 +karman_re50,sr,117,46.8,alpha,upper,-2.5698384228335427 +karman_re50,sr,117,46.8,alpha,lower,4.29257893818769 +karman_re50,sr,118,47.2,alpha,front,-0.8491411269020215 +karman_re50,sr,118,47.2,alpha,upper,-2.4793010203982067 +karman_re50,sr,118,47.2,alpha,lower,4.383116340623026 +karman_re50,sr,119,47.6,alpha,front,-1.1484077441189158 +karman_re50,sr,119,47.6,alpha,upper,-2.4763990624884435 +karman_re50,sr,119,47.6,alpha,lower,4.386018298532789 +karman_re50,sr,120,48.0,alpha,front,-1.361018126777654 +karman_re50,sr,120,48.0,alpha,upper,-2.555209424793917 +karman_re50,sr,120,48.0,alpha,lower,4.307207936227315 +karman_re50,sr,121,48.4,alpha,front,-1.4549276247265928 +karman_re50,sr,121,48.4,alpha,upper,-2.6953294903771496 +karman_re50,sr,121,48.4,alpha,lower,4.167087870644083 +karman_re50,sr,122,48.8,alpha,front,-1.415470093879768 +karman_re50,sr,122,48.8,alpha,upper,-2.8817195019287745 +karman_re50,sr,122,48.8,alpha,lower,3.9806978590924578 +karman_re50,sr,123,49.2,alpha,front,-1.252393067758107 +karman_re50,sr,123,49.2,alpha,upper,-3.1168960831436867 +karman_re50,sr,123,49.2,alpha,lower,3.7455212778775455 +karman_re50,sr,124,49.6,alpha,front,-0.992847805038312 +karman_re50,sr,124,49.6,alpha,upper,-3.37688066685176 +karman_re50,sr,124,49.6,alpha,lower,3.485536694169472 +karman_re50,sr,125,50.0,alpha,front,-0.6713990000898492 +karman_re50,sr,125,50.0,alpha,upper,-3.638686415268746 +karman_re50,sr,125,50.0,alpha,lower,3.223730945752487 +karman_re50,sr,126,50.4,alpha,front,-0.31541421079680443 +karman_re50,sr,126,50.4,alpha,upper,-3.880880007136875 +karman_re50,sr,126,50.4,alpha,lower,2.9815373538843577 +karman_re50,sr,127,50.8,alpha,front,0.05692821091081585 +karman_re50,sr,127,50.8,alpha,upper,-4.095630982292838 +karman_re50,sr,127,50.8,alpha,lower,2.766786378728394 +karman_re50,sr,128,51.2,alpha,front,0.4307956494225189 +karman_re50,sr,128,51.2,alpha,upper,-4.26611556670272 +karman_re50,sr,128,51.2,alpha,lower,2.596301794318512 +karman_re50,sr,129,51.6,alpha,front,0.7871936732647162 +karman_re50,sr,129,51.6,alpha,upper,-4.373187323834767 +karman_re50,sr,129,51.6,alpha,lower,2.489230037186466 +karman_re50,sr,130,52.0,alpha,front,1.0983148168204093 +karman_re50,sr,130,52.0,alpha,upper,-4.3920198294494694 +karman_re50,sr,130,52.0,alpha,lower,2.470397531571763 +karman_re50,sr,131,52.4,alpha,front,1.3293393088317393 +karman_re50,sr,131,52.4,alpha,upper,-4.325637294864156 +karman_re50,sr,131,52.4,alpha,lower,2.5367800661570765 +karman_re50,sr,132,52.8,alpha,front,1.4463446093307768 +karman_re50,sr,132,52.8,alpha,upper,-4.195031376161826 +karman_re50,sr,132,52.8,alpha,lower,2.667385984859406 +karman_re50,sr,133,53.2,alpha,front,1.4309563467917548 +karman_re50,sr,133,53.2,alpha,upper,-4.016291870193513 +karman_re50,sr,133,53.2,alpha,lower,2.8461254908277196 +karman_re50,sr,134,53.6,alpha,front,1.2886215782767776 +karman_re50,sr,134,53.6,alpha,upper,-3.792558542867249 +karman_re50,sr,134,53.6,alpha,lower,3.069858818153983 +karman_re50,sr,135,54.0,alpha,front,1.044137506921358 +karman_re50,sr,135,54.0,alpha,upper,-3.5319368103289794 +karman_re50,sr,135,54.0,alpha,lower,3.3304805506922524 +karman_re50,sr,136,54.4,alpha,front,0.7314972017860657 +karman_re50,sr,136,54.4,alpha,upper,-3.2697276104424557 +karman_re50,sr,136,54.4,alpha,lower,3.5926897505787765 +karman_re50,sr,137,54.8,alpha,front,0.38035389504417666 +karman_re50,sr,137,54.8,alpha,upper,-3.0226426643051454 +karman_re50,sr,137,54.8,alpha,lower,3.839774696716087 +karman_re50,sr,138,55.2,alpha,front,0.00989215479067736 +karman_re50,sr,138,55.2,alpha,upper,-2.8023669921957444 +karman_re50,sr,138,55.2,alpha,lower,4.060050368825488 +karman_re50,sr,139,55.6,alpha,front,-0.36496778589577034 +karman_re50,sr,139,55.6,alpha,upper,-2.6223382684749583 +karman_re50,sr,139,55.6,alpha,lower,4.2400790925462735 +karman_re50,sr,140,56.0,alpha,front,-0.7261857639329425 +karman_re50,sr,140,56.0,alpha,upper,-2.503146220214628 +karman_re50,sr,140,56.0,alpha,lower,4.359271140806604 +karman_re50,sr,141,56.4,alpha,front,-1.0481036972369766 +karman_re50,sr,141,56.4,alpha,upper,-2.4670647179417 +karman_re50,sr,141,56.4,alpha,lower,4.395352643079532 +karman_re50,sr,142,56.8,alpha,front,-1.296183353723086 +karman_re50,sr,142,56.8,alpha,upper,-2.5185292918876967 +karman_re50,sr,142,56.8,alpha,lower,4.343888069133536 +karman_re50,sr,143,57.2,alpha,front,-1.4359605601837409 +karman_re50,sr,143,57.2,alpha,upper,-2.6394307564121693 +karman_re50,sr,143,57.2,alpha,lower,4.222986604609063 +karman_re50,sr,144,57.6,alpha,front,-1.4449247923182407 +karman_re50,sr,144,57.6,alpha,upper,-2.8087570544898828 +karman_re50,sr,144,57.6,alpha,lower,4.0536603065313495 +karman_re50,sr,145,58.0,alpha,front,-1.3241204223752836 +karman_re50,sr,145,58.0,alpha,upper,-3.026510622054237 +karman_re50,sr,145,58.0,alpha,lower,3.835906738966995 +karman_re50,sr,146,58.4,alpha,front,-1.0955609188217053 +karman_re50,sr,146,58.4,alpha,upper,-3.2813754827367863 +karman_re50,sr,146,58.4,alpha,lower,3.581041878284446 +karman_re50,sr,147,58.8,alpha,front,-0.792698716474121 +karman_re50,sr,147,58.8,alpha,upper,-3.5463413980040404 +karman_re50,sr,147,58.8,alpha,lower,3.3160759630171928 +karman_re50,sr,148,59.2,alpha,front,-0.44670048151036684 +karman_re50,sr,148,59.2,alpha,upper,-3.796109220290862 +karman_re50,sr,148,59.2,alpha,lower,3.0663081407303703 +karman_re50,sr,149,59.6,alpha,front,-0.07859312563412416 +karman_re50,sr,149,59.6,alpha,upper,-4.022054222899385 +karman_re50,sr,149,59.6,alpha,lower,2.8403631381218477 +karman_re50,sr,150,60.0,alpha,front,0.29635640969937627 +karman_re50,sr,150,60.0,alpha,upper,-4.210656975454131 +karman_re50,sr,150,60.0,alpha,lower,2.6517603855671013 +karman_re50,sr,151,60.4,alpha,front,0.6622055983540547 +karman_re50,sr,151,60.4,alpha,upper,-4.342500957307511 +karman_re50,sr,151,60.4,alpha,lower,2.519916403713721 +karman_re50,sr,152,60.8,alpha,front,0.9929673071175303 +karman_re50,sr,152,60.8,alpha,upper,-4.395867386256328 +karman_re50,sr,152,60.8,alpha,lower,2.466549974764904 +karman_re50,sr,153,61.2,alpha,front,1.2575640912231463 +karman_re50,sr,153,61.2,alpha,upper,-4.3589541649728005 +karman_re50,sr,153,61.2,alpha,lower,2.5034631960484313 +karman_re50,sr,154,61.6,alpha,front,1.4189713738214336 +karman_re50,sr,154,61.6,alpha,upper,-4.249568271109817 +karman_re50,sr,154,61.6,alpha,lower,2.612849089911415 +karman_re50,sr,155,62.0,alpha,front,1.4523958145600453 +karman_re50,sr,155,62.0,alpha,upper,-4.086761139796495 +karman_re50,sr,155,62.0,alpha,lower,2.7756562212247373 +karman_re50,sr,156,62.4,alpha,front,1.3537783387281468 +karman_re50,sr,156,62.4,alpha,upper,-3.878154502152846 +karman_re50,sr,156,62.4,alpha,lower,2.9842628588683864 +karman_re50,sr,157,62.8,alpha,front,1.1421628669336563 +karman_re50,sr,157,62.8,alpha,upper,-3.628074880390697 +karman_re50,sr,157,62.8,alpha,lower,3.234342480630535 +karman_re50,sr,158,63.2,alpha,front,0.8503918472514691 +karman_re50,sr,158,63.2,alpha,upper,-3.363228782597605 +karman_re50,sr,158,63.2,alpha,lower,3.4991885784236274 +karman_re50,sr,159,63.6,alpha,front,0.5100232302542315 +karman_re50,sr,159,63.6,alpha,upper,-3.109096985622915 +karman_re50,sr,159,63.6,alpha,lower,3.7533203753983173 +karman_re50,sr,160,64.0,alpha,front,0.1450562754673393 +karman_re50,sr,160,64.0,alpha,upper,-2.8789573056978934 +karman_re50,sr,160,64.0,alpha,lower,3.983460055323339 +karman_re50,sr,161,64.4,alpha,front,-0.22996480182938625 +karman_re50,sr,161,64.4,alpha,upper,-2.681737895474669 +karman_re50,sr,161,64.4,alpha,lower,4.180679465546563 +karman_re50,sr,162,64.8,alpha,front,-0.5985905545839914 +karman_re50,sr,162,64.8,alpha,upper,-2.537001583850729 +karman_re50,sr,162,64.8,alpha,lower,4.3254157771705035 +karman_re50,sr,163,65.2,alpha,front,-0.9382520935626258 +karman_re50,sr,163,65.2,alpha,upper,-2.469531100510199 +karman_re50,sr,163,65.2,alpha,lower,4.392886260511033 +karman_re50,sr,164,65.6,alpha,front,-1.2172076418937459 +karman_re50,sr,164,65.6,alpha,upper,-2.4906396813964493 +karman_re50,sr,164,65.6,alpha,lower,4.371777679624783 +karman_re50,sr,165,66.0,alpha,front,-1.3996987054103822 +karman_re50,sr,165,66.0,alpha,upper,-2.5894044488936183 +karman_re50,sr,165,66.0,alpha,lower,4.273012912127614 +karman_re50,sr,166,66.4,alpha,front,-1.4571418874769895 +karman_re50,sr,166,66.4,alpha,upper,-2.7418605379569603 +karman_re50,sr,166,66.4,alpha,lower,4.1205568230642715 +karman_re50,sr,167,66.8,alpha,front,-1.3815593864602727 +karman_re50,sr,167,66.8,alpha,upper,-2.9427175579770455 +karman_re50,sr,167,66.8,alpha,lower,3.9196998030441867 +karman_re50,sr,168,67.2,alpha,front,-1.188247779298813 +karman_re50,sr,168,67.2,alpha,upper,-3.186754237954696 +karman_re50,sr,168,67.2,alpha,lower,3.6756631230665358 +karman_re50,sr,169,67.6,alpha,front,-0.9081726898465755 +karman_re50,sr,169,67.6,alpha,upper,-3.451128678143022 +karman_re50,sr,169,67.6,alpha,lower,3.41128868287821 +karman_re50,sr,170,68.0,alpha,front,-0.5749361802681097 +karman_re50,sr,170,68.0,alpha,upper,-3.708595267943663 +karman_re50,sr,170,68.0,alpha,lower,3.153822093077569 +karman_re50,sr,171,68.4,alpha,front,-0.21293292782810871 +karman_re50,sr,171,68.4,alpha,upper,-3.943810976338829 +karman_re50,sr,171,68.4,alpha,lower,2.9186063846824037 +karman_re50,sr,172,68.8,alpha,front,0.16116997395746188 +karman_re50,sr,172,68.8,alpha,upper,-4.148689722403943 +karman_re50,sr,172,68.8,alpha,lower,2.7137276386172897 +karman_re50,sr,173,69.2,alpha,front,0.5325252852918405 +karman_re50,sr,173,69.2,alpha,upper,-4.302842439081072 +karman_re50,sr,173,69.2,alpha,lower,2.5595749219401602 +karman_re50,sr,174,69.6,alpha,front,0.879361744202673 +karman_re50,sr,174,69.6,alpha,upper,-4.3863626786173535 +karman_re50,sr,174,69.6,alpha,lower,2.476054682403879 +karman_re50,sr,175,70.0,alpha,front,1.1721431258817727 +karman_re50,sr,175,70.0,alpha,upper,-4.381914511981314 +karman_re50,sr,175,70.0,alpha,lower,2.4805028490399184 +karman_re50,sr,176,70.4,alpha,front,1.3748630076426258 +karman_re50,sr,176,70.4,alpha,upper,-4.294911953402485 +karman_re50,sr,176,70.4,alpha,lower,2.5675054076187473 +karman_re50,sr,177,70.8,alpha,front,1.456017195978317 +karman_re50,sr,177,70.8,alpha,upper,-4.152435274499635 +karman_re50,sr,177,70.8,alpha,lower,2.709982086521597 +karman_re50,sr,178,71.2,alpha,front,1.4042256652822058 +karman_re50,sr,178,71.2,alpha,upper,-3.9601149830833076 +karman_re50,sr,178,71.2,alpha,lower,2.9023023779379247 +karman_re50,sr,179,71.6,alpha,front,1.230130649576177 +karman_re50,sr,179,71.6,alpha,upper,-3.7210870389155986 +karman_re50,sr,179,71.6,alpha,lower,3.141330322105634 +karman_re50,sr,180,72.0,alpha,front,0.9631790329327576 +karman_re50,sr,180,72.0,alpha,upper,-3.4580260235679163 +karman_re50,sr,180,72.0,alpha,lower,3.4043913374533155 +karman_re50,sr,181,72.4,alpha,front,0.6372303741943447 +karman_re50,sr,181,72.4,alpha,upper,-3.1990639229049074 +karman_re50,sr,181,72.4,alpha,lower,3.663353438116325 +karman_re50,sr,182,72.8,alpha,front,0.2788512642855826 +karman_re50,sr,182,72.8,alpha,upper,-2.9589597529114746 +karman_re50,sr,182,72.8,alpha,lower,3.903457608109757 +karman_re50,sr,183,73.2,alpha,front,-0.09405460692281395 +karman_re50,sr,183,73.2,alpha,upper,-2.7485330162797754 +karman_re50,sr,183,73.2,alpha,lower,4.113884344741456 +karman_re50,sr,184,73.6,alpha,front,-0.46715105458819156 +karman_re50,sr,184,73.6,alpha,upper,-2.5819925125377656 +karman_re50,sr,184,73.6,alpha,lower,4.280424848483467 +karman_re50,sr,185,74.0,alpha,front,-0.820510932870416 +karman_re50,sr,185,74.0,alpha,upper,-2.4842526640190625 +karman_re50,sr,185,74.0,alpha,lower,4.37816469700217 +karman_re50,sr,186,74.4,alpha,front,-1.125656128868873 +karman_re50,sr,186,74.4,alpha,upper,-2.4731633817027454 +karman_re50,sr,186,74.4,alpha,lower,4.389253979318487 +karman_re50,sr,187,74.8,alpha,front,-1.346969894798872 +karman_re50,sr,187,74.8,alpha,upper,-2.545171552231801 +karman_re50,sr,187,74.8,alpha,lower,4.317245808789432 +karman_re50,sr,188,75.2,alpha,front,-1.451905818295415 +karman_re50,sr,188,75.2,alpha,upper,-2.6820961299304518 +karman_re50,sr,188,75.2,alpha,lower,4.1803212310907805 +karman_re50,sr,189,75.6,alpha,front,-1.4237494145990641 +karman_re50,sr,189,75.6,alpha,upper,-2.864582710452833 +karman_re50,sr,189,75.6,alpha,lower,3.9978346505683993 +karman_re50,sr,190,76.0,alpha,front,-1.2699932842575874 +karman_re50,sr,190,76.0,alpha,upper,-3.0946356102504446 +karman_re50,sr,190,76.0,alpha,lower,3.7677817507707876 +karman_re50,sr,191,76.4,alpha,front,-1.01712926002142 +karman_re50,sr,191,76.4,alpha,upper,-3.355939708632665 +karman_re50,sr,191,76.4,alpha,lower,3.5064776523885675 +karman_re50,sr,192,76.8,alpha,front,-0.6997952515409602 +karman_re50,sr,192,76.8,alpha,upper,-3.6169869682869185 +karman_re50,sr,192,76.8,alpha,lower,3.2454303927343138 +karman_re50,sr,193,77.2,alpha,front,-0.3460540233206323 +karman_re50,sr,193,77.2,alpha,upper,-3.862049632963897 +karman_re50,sr,193,77.2,alpha,lower,3.000367728057335 +karman_re50,sr,194,77.6,alpha,front,0.02556707358047137 +karman_re50,sr,194,77.6,alpha,upper,-4.078221518521824 +karman_re50,sr,194,77.6,alpha,lower,2.784195842499409 +karman_re50,sr,195,78.0,alpha,front,0.39986425781937246 +karman_re50,sr,195,78.0,alpha,upper,-4.254029074150375 +karman_re50,sr,195,78.0,alpha,lower,2.608388286870858 +karman_re50,sr,196,78.4,alpha,front,0.7586485270624784 +karman_re50,sr,196,78.4,alpha,upper,-4.366659479057635 +karman_re50,sr,196,78.4,alpha,lower,2.4957578819635975 +karman_re50,sr,197,78.8,alpha,front,1.0749345447100092 +karman_re50,sr,197,78.8,alpha,upper,-4.39384738848356 +karman_re50,sr,197,78.8,alpha,lower,2.468569972537672 +karman_re50,sr,198,79.2,alpha,front,1.3142525209789118 +karman_re50,sr,198,79.2,alpha,upper,-4.335185088075161 +karman_re50,sr,198,79.2,alpha,lower,2.5272322729460717 +karman_re50,sr,199,79.6,alpha,front,1.4420805851130978 +karman_re50,sr,199,79.6,alpha,upper,-4.209820080085055 +karman_re50,sr,199,79.6,alpha,lower,2.652597280936178 +karman_re50,sr,200,80.0,alpha,front,1.437972359816458 +karman_re50,sr,200,80.0,alpha,upper,-4.03387474197351 +karman_re50,sr,200,80.0,alpha,lower,2.828542619047722 +karman_re50,sr,201,80.4,alpha,front,1.3055360397647306 +karman_re50,sr,201,80.4,alpha,upper,-3.8114144943409367 +karman_re50,sr,201,80.4,alpha,lower,3.0510028666802955 +karman_re50,sr,202,80.8,alpha,front,1.0681134468358793 +karman_re50,sr,202,80.8,alpha,upper,-3.5540027130418186 +karman_re50,sr,202,80.8,alpha,lower,3.308414647979414 +karman_re50,sr,203,81.2,alpha,front,0.7598431482564023 +karman_re50,sr,203,81.2,alpha,upper,-3.29132794538403 +karman_re50,sr,203,81.2,alpha,lower,3.5710894156372017 +karman_re50,sr,204,81.6,alpha,front,0.41108118073680244 +karman_re50,sr,204,81.6,alpha,upper,-3.0435102400305354 +karman_re50,sr,204,81.6,alpha,lower,3.8189071209906973 +karman_re50,sr,205,82.0,alpha,front,0.04184380399761216 +karman_re50,sr,205,82.0,alpha,upper,-2.820842633567203 +karman_re50,sr,205,82.0,alpha,lower,4.041574727454029 +karman_re50,sr,206,82.4,alpha,front,-0.3332260978238395 +karman_re50,sr,206,82.4,alpha,upper,-2.6356093858893717 +karman_re50,sr,206,82.4,alpha,lower,4.226807975131861 +karman_re50,sr,207,82.8,alpha,front,-0.6965179908230346 +karman_re50,sr,207,82.8,alpha,upper,-2.5102792421960674 +karman_re50,sr,207,82.8,alpha,lower,4.352138118825165 +karman_re50,sr,208,83.2,alpha,front,-1.0228280417865252 +karman_re50,sr,208,83.2,alpha,upper,-2.4666140702625174 +karman_re50,sr,208,83.2,alpha,lower,4.395803290758715 +karman_re50,sr,209,83.6,alpha,front,-1.2787397353411618 +karman_re50,sr,209,83.6,alpha,upper,-2.510808296481594 +karman_re50,sr,209,83.6,alpha,lower,4.351609064539638 +karman_re50,sr,210,84.0,alpha,front,-1.4290998576822054 +karman_re50,sr,210,84.0,alpha,upper,-2.626608764218563 +karman_re50,sr,210,84.0,alpha,lower,4.235808596802669 +karman_re50,sr,211,84.4,alpha,front,-1.4492961308682513 +karman_re50,sr,211,84.4,alpha,upper,-2.7918710119084054 +karman_re50,sr,211,84.4,alpha,lower,4.070546349112827 +karman_re50,sr,212,84.8,alpha,front,-1.3386590946167611 +karman_re50,sr,212,84.8,alpha,upper,-3.007393112231618 +karman_re50,sr,212,84.8,alpha,lower,3.8550242487896136 +karman_re50,sr,213,85.2,alpha,front,-1.1176310858414522 +karman_re50,sr,213,85.2,alpha,upper,-3.260587379338603 +karman_re50,sr,213,85.2,alpha,lower,3.601829981682629 +karman_re50,sr,214,85.6,alpha,front,-0.8198780136286341 +karman_re50,sr,214,85.6,alpha,upper,-3.5249628852477928 +karman_re50,sr,214,85.6,alpha,lower,3.3374544757734395 +karman_re50,sr,215,86.0,alpha,front,-0.4763807753657103 +karman_re50,sr,215,86.0,alpha,upper,-3.7752433192696855 +karman_re50,sr,215,86.0,alpha,lower,3.087174041751547 +karman_re50,sr,216,86.4,alpha,front,-0.10967274633817352 +karman_re50,sr,216,86.4,alpha,upper,-4.002995327724227 +karman_re50,sr,216,86.4,alpha,lower,2.8594220332970055 +karman_re50,sr,217,86.8,alpha,front,0.26535761918994955 +karman_re50,sr,217,86.8,alpha,upper,-4.196840208957897 +karman_re50,sr,217,86.8,alpha,lower,2.6655771520633356 +karman_re50,sr,218,87.2,alpha,front,0.6324106641983057 +karman_re50,sr,218,87.2,alpha,upper,-4.3354070625063255 +karman_re50,sr,218,87.2,alpha,lower,2.5270102985149068 +karman_re50,sr,219,87.6,alpha,front,0.9676831713040358 +karman_re50,sr,219,87.6,alpha,upper,-4.394487582230507 +karman_re50,sr,219,87.6,alpha,lower,2.4679297787907255 +karman_re50,sr,220,88.0,alpha,front,1.2391296911589798 +karman_re50,sr,220,88.0,alpha,upper,-4.365031209824912 +karman_re50,sr,220,88.0,alpha,lower,2.4973861511963196 +karman_re50,sr,221,88.4,alpha,front,1.4104613961073247 +karman_re50,sr,221,88.4,alpha,upper,-4.261625989198864 +karman_re50,sr,221,88.4,alpha,lower,2.600791371822368 +karman_re50,sr,222,88.8,alpha,front,1.455313592244573 +karman_re50,sr,222,88.8,alpha,upper,-4.103930055144162 +karman_re50,sr,222,88.8,alpha,lower,2.75848730587707 +karman_re50,sr,223,89.2,alpha,front,1.3673029637887713 +karman_re50,sr,223,89.2,alpha,upper,-3.8965331629257784 +karman_re50,sr,223,89.2,alpha,lower,2.9658841980954542 +karman_re50,sr,224,89.6,alpha,front,1.1639349336525036 +karman_re50,sr,224,89.6,alpha,upper,-3.648616954515381 +karman_re50,sr,224,89.6,alpha,lower,3.2138004065058516 +karman_re50,sr,225,90.0,alpha,front,0.8771049020378341 +karman_re50,sr,225,90.0,alpha,upper,-3.384404656144057 +karman_re50,sr,225,90.0,alpha,lower,3.478012704877175 +karman_re50,sr,226,90.4,alpha,front,0.5403326027680939 +karman_re50,sr,226,90.4,alpha,upper,-3.131273875551336 +karman_re50,sr,226,90.4,alpha,lower,3.7311434854698966 +karman_re50,sr,227,90.8,alpha,front,0.17642374670758104 +karman_re50,sr,227,90.8,alpha,upper,-2.8983643871035545 +karman_re50,sr,227,90.8,alpha,lower,3.9640529739176777 +karman_re50,sr,228,91.2,alpha,front,-0.19801439026705792 +karman_re50,sr,228,91.2,alpha,upper,-2.6966299743216013 +karman_re50,sr,228,91.2,alpha,lower,4.1657873866996304 +karman_re50,sr,229,91.6,alpha,front,-0.5680325653535834 +karman_re50,sr,229,91.6,alpha,upper,-2.5468362082197 +karman_re50,sr,229,91.6,alpha,lower,4.315581152801532 +karman_re50,sr,230,92.0,alpha,front,-0.9111983146611128 +karman_re50,sr,230,92.0,alpha,upper,-2.4725676437403665 +karman_re50,sr,230,92.0,alpha,lower,4.389849717280866 +karman_re50,sr,231,92.4,alpha,front,-1.1967103824193772 +karman_re50,sr,231,92.4,alpha,upper,-2.4853512699829072 +karman_re50,sr,231,92.4,alpha,lower,4.377066091038325 +karman_re50,sr,232,92.8,alpha,front,-1.3887946013297094 +karman_re50,sr,232,92.8,alpha,upper,-2.577374744038683 +karman_re50,sr,232,92.8,alpha,lower,4.285042616982549 +karman_re50,sr,233,93.2,alpha,front,-1.457530740982393 +karman_re50,sr,233,93.2,alpha,upper,-2.725866047000244 +karman_re50,sr,233,93.2,alpha,lower,4.136551314020989 +karman_re50,sr,234,93.6,alpha,front,-1.3928743219505708 +karman_re50,sr,234,93.6,alpha,upper,-2.9250989084252215 +karman_re50,sr,234,93.6,alpha,lower,3.9373184525960108 +karman_re50,sr,235,94.0,alpha,front,-1.208120777493669 +karman_re50,sr,235,94.0,alpha,upper,-3.167173748540052 +karman_re50,sr,235,94.0,alpha,lower,3.6952436124811796 +karman_re50,sr,236,94.4,alpha,front,-0.9338817096084553 +karman_re50,sr,236,94.4,alpha,upper,-3.4301616858857047 +karman_re50,sr,236,94.4,alpha,lower,3.432255675135527 +karman_re50,sr,237,94.8,alpha,front,-0.6039731875268514 +karman_re50,sr,237,94.8,alpha,upper,-3.6867490559744267 +karman_re50,sr,237,94.8,alpha,lower,3.1756683050468055 +karman_re50,sr,238,95.2,alpha,front,-0.24378307611030792 +karman_re50,sr,238,95.2,alpha,upper,-3.923770095511398 +karman_re50,sr,238,95.2,alpha,lower,2.938647265509834 +karman_re50,sr,239,95.6,alpha,front,0.12959888381707713 +karman_re50,sr,239,95.6,alpha,upper,-4.131632859992721 +karman_re50,sr,239,95.6,alpha,lower,2.730784501028511 +karman_re50,sr,240,96.0,alpha,front,0.502028612194221 +karman_re50,sr,240,96.0,alpha,upper,-4.293287947053214 +karman_re50,sr,240,96.0,alpha,lower,2.569129413968018 +karman_re50,sr,241,96.4,alpha,front,0.8518369721537155 +karman_re50,sr,241,96.4,alpha,upper,-4.383820173130073 +karman_re50,sr,241,96.4,alpha,lower,2.478597187891159 +karman_re50,sr,242,96.8,alpha,front,1.150666362276015 +karman_re50,sr,242,96.8,alpha,upper,-4.3854087061991915 +karman_re50,sr,242,96.8,alpha,lower,2.4770086548220407 +karman_re50,sr,243,97.2,alpha,front,1.3621871736830289 +karman_re50,sr,243,97.2,alpha,upper,-4.3062535070716415 +karman_re50,sr,243,97.2,alpha,lower,2.556163853949591 +karman_re50,sr,244,97.6,alpha,front,1.4546579847016652 +karman_re50,sr,244,97.6,alpha,upper,-4.16663037190221 +karman_re50,sr,244,97.6,alpha,lower,2.6957869891190223 +karman_re50,sr,245,98.0,alpha,front,1.4137215850996476 +karman_re50,sr,245,98.0,alpha,upper,-3.9770322360614854 +karman_re50,sr,245,98.0,alpha,lower,2.885385124959747 +karman_re50,sr,246,98.4,alpha,front,1.2486611308216284 +karman_re50,sr,246,98.4,alpha,upper,-3.7405711567150655 +karman_re50,sr,246,98.4,alpha,lower,3.1218462043061668 +karman_re50,sr,247,98.8,alpha,front,0.9881166948561613 +karman_re50,sr,247,98.8,alpha,upper,-3.4798289977192858 +karman_re50,sr,247,98.8,alpha,lower,3.382588363301947 +karman_re50,sr,248,99.2,alpha,front,0.6660719557047382 +karman_re50,sr,248,99.2,alpha,upper,-3.2212691305591146 +karman_re50,sr,248,99.2,alpha,lower,3.6411482304621177 +karman_re50,sr,249,99.6,alpha,front,0.3099628913532755 +karman_re50,sr,249,99.6,alpha,upper,-2.9801945455970635 +karman_re50,sr,249,99.6,alpha,lower,3.8822228154241687 +karman_re50,sr,250,100.0,alpha,front,-0.062232610007113484 +karman_re50,sr,250,100.0,alpha,upper,-2.764765771972276 +karman_re50,sr,250,100.0,alpha,lower,4.097651589048956 +karman_re50,sr,251,100.4,alpha,front,-0.43593199663867505 +karman_re50,sr,251,100.4,alpha,upper,-2.593497425990626 +karman_re50,sr,251,100.4,alpha,lower,4.268919935030606 +karman_re50,sr,252,100.8,alpha,front,-0.7919561075103592 +karman_re50,sr,252,100.8,alpha,upper,-2.488409584367846 +karman_re50,sr,252,100.8,alpha,lower,4.374007776653386 +karman_re50,sr,253,101.2,alpha,front,-1.1023730923347268 +karman_re50,sr,253,101.2,alpha,upper,-2.470914558436122 +karman_re50,sr,253,101.2,alpha,lower,4.39150280258511 +karman_re50,sr,254,101.6,alpha,front,-1.3322875003837258 +karman_re50,sr,254,101.6,alpha,upper,-2.5362383754670326 +karman_re50,sr,254,101.6,alpha,lower,4.3261789855542 +karman_re50,sr,255,102.0,alpha,front,-1.4484078683392376 +karman_re50,sr,255,102.0,alpha,upper,-2.6674927091915364 +karman_re50,sr,255,102.0,alpha,lower,4.194924651829695 +karman_re50,sr,256,102.4,alpha,front,-1.4311081941300148 +karman_re50,sr,256,102.4,alpha,upper,-2.8473809100042526 +karman_re50,sr,256,102.4,alpha,lower,4.01503645101698 +karman_re50,sr,257,102.8,alpha,front,-1.2869740790564645 +karman_re50,sr,257,102.8,alpha,upper,-3.0758101079442692 +karman_re50,sr,257,102.8,alpha,lower,3.786607253076963 +karman_re50,sr,258,103.2,alpha,front,-1.041047768786222 +karman_re50,sr,258,103.2,alpha,upper,-3.3347387145230147 +karman_re50,sr,258,103.2,alpha,lower,3.527678646498218 +karman_re50,sr,259,103.6,alpha,front,-0.7278395457258765 +karman_re50,sr,259,103.6,alpha,upper,-3.5961519731707665 +karman_re50,sr,259,103.6,alpha,lower,3.2662653878504657 +karman_re50,sr,260,104.0,alpha,front,-0.3763205056214073 +karman_re50,sr,260,104.0,alpha,upper,-3.8401029387418695 +karman_re50,sr,260,104.0,alpha,lower,3.0223144222793623 +karman_re50,sr,261,104.4,alpha,front,-0.00592419125778649 +karman_re50,sr,261,104.4,alpha,upper,-4.06081509966756 +karman_re50,sr,261,104.4,alpha,lower,2.801602261353672 +karman_re50,sr,262,104.8,alpha,front,0.3687571872818226 +karman_re50,sr,262,104.8,alpha,upper,-4.242084779210312 +karman_re50,sr,262,104.8,alpha,lower,2.620332581810921 +karman_re50,sr,263,105.2,alpha,front,0.7296869328750918 +karman_re50,sr,263,105.2,alpha,upper,-4.360338079636237 +karman_re50,sr,263,105.2,alpha,lower,2.5020792813849955 +karman_re50,sr,264,105.6,alpha,front,1.050836949325654 +karman_re50,sr,264,105.6,alpha,upper,-4.394840488081975 +karman_re50,sr,264,105.6,alpha,lower,2.4675768729392575 +karman_re50,sr,265,106.0,alpha,front,1.2981088845317565 +karman_re50,sr,265,106.0,alpha,upper,-4.343535315527905 +karman_re50,sr,265,106.0,alpha,lower,2.518882045493327 +karman_re50,sr,266,106.4,alpha,front,1.4365388676635171 +karman_re50,sr,266,106.4,alpha,upper,-4.222071607125317 +karman_re50,sr,266,106.4,alpha,lower,2.6403457538959154 +karman_re50,sr,267,106.8,alpha,front,1.4439460873833687 +karman_re50,sr,267,106.8,alpha,upper,-4.051766216066245 +karman_re50,sr,267,106.8,alpha,lower,2.8106511449549876 +karman_re50,sr,268,107.2,alpha,front,1.3213396180938353 +karman_re50,sr,268,107.2,alpha,upper,-3.8314066565003473 +karman_re50,sr,268,107.2,alpha,lower,3.031010704520885 +karman_re50,sr,269,107.6,alpha,front,1.091328906864519 +karman_re50,sr,269,107.6,alpha,upper,-3.5750505478388814 +karman_re50,sr,269,107.6,alpha,lower,3.2873668131823504 +karman_re50,sr,270,108.0,alpha,front,0.7877284467342107 +karman_re50,sr,270,108.0,alpha,upper,-3.3129934415440814 +karman_re50,sr,270,108.0,alpha,lower,3.549423919477151 +karman_re50,sr,271,108.4,alpha,front,0.4420990409631248 +karman_re50,sr,271,108.4,alpha,upper,-3.0622268865628546 +karman_re50,sr,271,108.4,alpha,lower,3.800190474458378 +karman_re50,sr,272,108.8,alpha,front,0.0733985994090082 +karman_re50,sr,272,108.8,alpha,upper,-2.839896809121396 +karman_re50,sr,272,108.8,alpha,lower,4.022520551899836 +karman_re50,sr,273,109.2,alpha,front,-0.30158416501718216 +karman_re50,sr,273,109.2,alpha,upper,-2.6505119696990955 +karman_re50,sr,273,109.2,alpha,lower,4.211905391322136 +karman_re50,sr,274,109.6,alpha,front,-0.666590967242922 +karman_re50,sr,274,109.6,alpha,upper,-2.51747635967512 +karman_re50,sr,274,109.6,alpha,lower,4.344941001346112 +karman_re50,sr,275,110.0,alpha,front,-0.9972454948734857 +karman_re50,sr,275,110.0,alpha,upper,-2.46690485981226 +karman_re50,sr,275,110.0,alpha,lower,4.395512501208972 +karman_re50,sr,276,110.4,alpha,front,-1.2605969088063382 +karman_re50,sr,276,110.4,alpha,upper,-2.503887352951878 +karman_re50,sr,276,110.4,alpha,lower,4.358530008069354 +karman_re50,sr,277,110.8,alpha,front,-1.4209396616437722 +karman_re50,sr,277,110.8,alpha,upper,-2.6130699986217167 +karman_re50,sr,277,110.8,alpha,lower,4.249347362399516 +karman_re50,sr,278,111.2,alpha,front,-1.4527336082879638 +karman_re50,sr,278,111.2,alpha,upper,-2.776616587968076 +karman_re50,sr,278,111.2,alpha,lower,4.0858007730531565 +karman_re50,sr,279,111.6,alpha,front,-1.3524335129888039 +karman_re50,sr,279,111.6,alpha,upper,-2.9891373138495982 +karman_re50,sr,279,111.6,alpha,lower,3.8732800471716335 +karman_re50,sr,280,112.0,alpha,front,-1.139359374351082 +karman_re50,sr,280,112.0,alpha,upper,-3.239879661742653 +karman_re50,sr,280,112.0,alpha,lower,3.6225376992785794 +karman_re50,sr,281,112.4,alpha,front,-0.8465517301864323 +karman_re50,sr,281,112.4,alpha,upper,-3.502233342929023 +karman_re50,sr,281,112.4,alpha,lower,3.360184018092209 +karman_re50,sr,282,112.8,alpha,front,-0.5063009613756204 +karman_re50,sr,282,112.8,alpha,upper,-3.7541421984294754 +karman_re50,sr,282,112.8,alpha,lower,3.108275162591757 +karman_re50,sr,283,113.2,alpha,front,-0.1412525620811577 +karman_re50,sr,283,113.2,alpha,upper,-3.9859713504139185 +karman_re50,sr,283,113.2,alpha,lower,2.8764460106073138 +karman_re50,sr,284,113.6,alpha,front,0.23393872881128883 +karman_re50,sr,284,113.6,alpha,upper,-4.182253535261113 +karman_re50,sr,284,113.6,alpha,lower,2.6801638257601192 +karman_re50,sr,285,114.0,alpha,front,0.6022440592622721 +karman_re50,sr,285,114.0,alpha,upper,-4.325805526514661 +karman_re50,sr,285,114.0,alpha,lower,2.536611834506571 +karman_re50,sr,286,114.4,alpha,front,0.9412836235514291 +karman_re50,sr,286,114.4,alpha,upper,-4.392718942335553 +karman_re50,sr,286,114.4,alpha,lower,2.469698418685679 +karman_re50,sr,287,114.8,alpha,front,1.2195187406221384 +karman_re50,sr,287,114.8,alpha,upper,-4.3711659558494596 +karman_re50,sr,287,114.8,alpha,lower,2.4912514051717722 +karman_re50,sr,288,115.2,alpha,front,1.4008554091695478 +karman_re50,sr,288,115.2,alpha,upper,-4.273334455336545 +karman_re50,sr,288,115.2,alpha,lower,2.5890829056846876 +karman_re50,sr,289,115.6,alpha,front,1.4568146609030201 +karman_re50,sr,289,115.6,alpha,upper,-4.119162403438045 +karman_re50,sr,289,115.6,alpha,lower,2.7432549575831877 +karman_re50,sr,290,116.0,alpha,front,1.3794598084100878 +karman_re50,sr,290,116.0,alpha,upper,-3.9151153763835302 +karman_re50,sr,290,116.0,alpha,lower,2.9473019846377024 +karman_re50,sr,291,116.4,alpha,front,1.1846658249087212 +karman_re50,sr,291,116.4,alpha,upper,-3.6693336546157473 +karman_re50,sr,291,116.4,alpha,lower,3.193083706405485 +karman_re50,sr,292,116.8,alpha,front,0.9037073791060891 +karman_re50,sr,292,116.8,alpha,upper,-3.406573020305575 +karman_re50,sr,292,116.8,alpha,lower,3.455844340715658 +karman_re50,sr,293,117.2,alpha,front,0.5697036963709106 +karman_re50,sr,293,117.2,alpha,upper,-3.151768296728862 +karman_re50,sr,293,117.2,alpha,lower,3.7106490642923697 +karman_re50,sr,294,117.6,alpha,front,0.2079717766984603 +karman_re50,sr,294,117.6,alpha,upper,-2.9173421352472917 +karman_re50,sr,294,117.6,alpha,lower,3.9450752257739405 +karman_re50,sr,295,118.0,alpha,front,-0.16625234488384283 +karman_re50,sr,295,118.0,alpha,upper,-2.712430199589589 +karman_re50,sr,295,118.0,alpha,lower,4.1499871614316435 +karman_re50,sr,296,118.4,alpha,front,-0.537235860563481 +karman_re50,sr,296,118.4,alpha,upper,-2.5571248296762805 +karman_re50,sr,296,118.4,alpha,lower,4.305292531344952 +karman_re50,sr,297,118.8,alpha,front,-0.8837103944515575 +karman_re50,sr,297,118.8,alpha,upper,-2.4752722910446496 +karman_re50,sr,297,118.8,alpha,lower,4.387145069976583 +karman_re50,sr,298,119.2,alpha,front,-1.175592191650984 +karman_re50,sr,298,119.2,alpha,upper,-2.4812065293011285 +karman_re50,sr,298,119.2,alpha,lower,4.381210831720104 +karman_re50,sr,299,119.6,alpha,front,-1.376887106021746 +karman_re50,sr,299,119.6,alpha,upper,-2.566619945827489 +karman_re50,sr,299,119.6,alpha,lower,4.295797415193744 +karman_re50,sr,300,120.0,alpha,front,-1.456795879784867 +karman_re50,sr,300,120.0,alpha,upper,-2.7115331671146756 +karman_re50,sr,300,120.0,alpha,lower,4.150884193906556 +karman_re50,sr,301,120.4,alpha,front,-1.4034928908755857 +karman_re50,sr,301,120.4,alpha,upper,-2.9068887837944697 +karman_re50,sr,301,120.4,alpha,lower,3.9555285772267625 +karman_re50,sr,302,120.8,alpha,front,-1.2274125822213255 +karman_re50,sr,302,120.8,alpha,upper,-3.147134542416835 +karman_re50,sr,302,120.8,alpha,lower,3.715282818604397 +karman_re50,sr,303,121.2,alpha,front,-0.9593929948320484 +karman_re50,sr,303,121.2,alpha,upper,-3.4078544735203318 +karman_re50,sr,303,121.2,alpha,lower,3.454562887500901 +karman_re50,sr,304,121.6,alpha,front,-0.6331046553739403 +karman_re50,sr,304,121.6,alpha,upper,-3.664516291823621 +karman_re50,sr,304,121.6,alpha,lower,3.1979010691976115 +karman_re50,sr,305,122.0,alpha,front,-0.2750288682933185 +karman_re50,sr,305,122.0,alpha,upper,-3.904649845263703 +karman_re50,sr,305,122.0,alpha,lower,2.957767515757529 +karman_re50,sr,306,122.4,alpha,front,0.09813125701955633 +karman_re50,sr,306,122.4,alpha,upper,-4.116124794487014 +karman_re50,sr,306,122.4,alpha,lower,2.746292566534218 +karman_re50,sr,307,122.8,alpha,front,0.47103816884841787 +karman_re50,sr,307,122.8,alpha,upper,-4.28139617692711 +karman_re50,sr,307,122.8,alpha,lower,2.5810211840941224 +karman_re50,sr,308,123.2,alpha,front,0.8239473446947723 +karman_re50,sr,308,123.2,alpha,upper,-4.378464316810492 +karman_re50,sr,308,123.2,alpha,lower,2.483953044210741 +karman_re50,sr,309,123.6,alpha,front,1.128243527593169 +karman_re50,sr,309,123.6,alpha,upper,-4.389083007242905 +karman_re50,sr,309,123.6,alpha,lower,2.473334353778327 +karman_re50,sr,310,124.0,alpha,front,1.348667166202281 +karman_re50,sr,310,124.0,alpha,upper,-4.31692807172644 +karman_re50,sr,310,124.0,alpha,lower,2.545489289294792 +karman_re50,sr,311,124.4,alpha,front,1.4521784331073786 +karman_re50,sr,311,124.4,alpha,upper,-4.180919861724073 +karman_re50,sr,311,124.4,alpha,lower,2.6814974992971594 +karman_re50,sr,312,124.8,alpha,front,1.4224136020204425 +karman_re50,sr,312,124.8,alpha,upper,-3.994138730615752 +karman_re50,sr,312,124.8,alpha,lower,2.8682786304054804 +karman_re50,sr,313,125.2,alpha,front,1.2668690918726004 +karman_re50,sr,313,125.2,alpha,upper,-3.7612309168721847 +karman_re50,sr,313,125.2,alpha,lower,3.101186444149048 +karman_re50,sr,314,125.6,alpha,front,1.0128332457431513 +karman_re50,sr,314,125.6,alpha,upper,-3.5017411321361864 +karman_re50,sr,314,125.6,alpha,lower,3.3606762288850454 +karman_re50,sr,315,126.0,alpha,front,0.694676686447311 +karman_re50,sr,315,126.0,alpha,upper,-3.241911686936588 +karman_re50,sr,315,126.0,alpha,lower,3.6205056740846437 +karman_re50,sr,316,126.4,alpha,front,0.340840897739071 +karman_re50,sr,316,126.4,alpha,upper,-3.0000773952451047 +karman_re50,sr,316,126.4,alpha,lower,3.862339965776128 +karman_re50,sr,317,126.8,alpha,front,-0.030535631152843 +karman_re50,sr,317,126.8,alpha,upper,-2.7820674456902967 +karman_re50,sr,317,126.8,alpha,lower,4.0803499153309355 +karman_re50,sr,318,127.2,alpha,front,-0.4047413101655175 +karman_re50,sr,318,127.2,alpha,upper,-2.6056697851953565 +karman_re50,sr,318,127.2,alpha,lower,4.256747575825876 +karman_re50,sr,319,127.6,alpha,front,-0.7630914825003876 +karman_re50,sr,319,127.6,alpha,upper,-2.4948285733711213 +karman_re50,sr,319,127.6,alpha,lower,4.367588787650111 +karman_re50,sr,320,128.0,alpha,front,-1.078811669013771 +karman_re50,sr,320,128.0,alpha,upper,-2.4694153936736525 +karman_re50,sr,320,128.0,alpha,lower,4.39300196734758 +karman_re50,sr,321,128.4,alpha,front,-1.3167437941221165 +karman_re50,sr,321,128.4,alpha,upper,-2.527605579739773 +karman_re50,sr,321,128.4,alpha,lower,4.334811781281459 +karman_re50,sr,322,128.8,alpha,front,-1.443319916912176 +karman_re50,sr,322,128.8,alpha,upper,-2.6527543986405413 +karman_re50,sr,322,128.8,alpha,lower,4.2096629623806905 +karman_re50,sr,323,129.2,alpha,front,-1.437784903833378 +karman_re50,sr,323,129.2,alpha,upper,-2.830664926023332 +karman_re50,sr,323,129.2,alpha,lower,4.031752434997901 +karman_re50,sr,324,129.6,alpha,front,-1.3033839811432524 +karman_re50,sr,324,129.6,alpha,upper,-3.0564383475729224 +karman_re50,sr,324,129.6,alpha,lower,3.8059790134483102 +karman_re50,sr,325,130.0,alpha,front,-1.0645344228330171 +karman_re50,sr,325,130.0,alpha,upper,-3.3130191710906294 +karman_re50,sr,325,130.0,alpha,lower,3.5493981899306024 +karman_re50,sr,326,130.4,alpha,front,-0.7556882365632185 +karman_re50,sr,326,130.4,alpha,upper,-3.5746952060540127 +karman_re50,sr,326,130.4,alpha,lower,3.2877221549672195 +karman_re50,sr,327,130.8,alpha,front,-0.40666359978831307 +karman_re50,sr,327,130.8,alpha,upper,-3.8199690357076888 +karman_re50,sr,327,130.8,alpha,lower,3.042448325313543 +karman_re50,sr,328,131.2,alpha,front,-0.03737877630589232 +karman_re50,sr,328,131.2,alpha,upper,-4.043230705429187 +karman_re50,sr,328,131.2,alpha,lower,2.819186655592045 +karman_re50,sr,329,131.6,alpha,front,0.3380727585024293 +karman_re50,sr,329,131.6,alpha,upper,-4.227066031826528 +karman_re50,sr,329,131.6,alpha,lower,2.6353513291947044 +karman_re50,sr,330,132.0,alpha,front,0.7002543233403572 +karman_re50,sr,330,132.0,alpha,upper,-4.352911984417491 +karman_re50,sr,330,132.0,alpha,lower,2.5095053766037414 +karman_re50,sr,331,132.4,alpha,front,1.0263272793370914 +karman_re50,sr,331,132.4,alpha,upper,-4.396677181866319 +karman_re50,sr,331,132.4,alpha,lower,2.4657401791549134 +karman_re50,sr,332,132.8,alpha,front,1.2812750086926168 +karman_re50,sr,332,132.8,alpha,upper,-4.351586836647354 +karman_re50,sr,332,132.8,alpha,lower,2.510830524373878 +karman_re50,sr,333,133.2,alpha,front,1.430110663677183 +karman_re50,sr,333,133.2,alpha,upper,-4.235577335375413 +karman_re50,sr,333,133.2,alpha,lower,2.6268400256458193 +karman_re50,sr,334,133.6,alpha,front,1.4488164797585374 +karman_re50,sr,334,133.6,alpha,upper,-4.067262406396622 +karman_re50,sr,334,133.6,alpha,lower,2.7951549546246106 +karman_re50,sr,335,134.0,alpha,front,1.3363706397896882 +karman_re50,sr,335,134.0,alpha,upper,-3.849522388711811 +karman_re50,sr,335,134.0,alpha,lower,3.0128949723094216 +karman_re50,sr,336,134.4,alpha,front,1.11412696431217 +karman_re50,sr,336,134.4,alpha,upper,-3.597381967292427 +karman_re50,sr,336,134.4,alpha,lower,3.2650353937288052 +karman_re50,sr,337,134.8,alpha,front,0.815427554623425 +karman_re50,sr,337,134.8,alpha,upper,-3.3351509962511314 +karman_re50,sr,337,134.8,alpha,lower,3.527266364770101 +karman_re50,sr,338,135.2,alpha,front,0.47254328898920905 +karman_re50,sr,338,135.2,alpha,upper,-3.0886503696383825 +karman_re50,sr,338,135.2,alpha,lower,3.7737669913828498 +karman_re50,sr,339,135.6,alpha,front,0.10511100112575442 +karman_re50,sr,339,135.6,alpha,upper,-2.856418375167751 +karman_re50,sr,339,135.6,alpha,lower,4.0059989858534815 +karman_re50,sr,340,136.0,alpha,front,-0.2697452746688521 +karman_re50,sr,340,136.0,alpha,upper,-2.6627586248725565 +karman_re50,sr,340,136.0,alpha,lower,4.199658736148676 +karman_re50,sr,341,136.4,alpha,front,-0.6362959580664652 +karman_re50,sr,341,136.4,alpha,upper,-2.52723303417526 +karman_re50,sr,341,136.4,alpha,lower,4.335184326845972 +karman_re50,sr,342,136.8,alpha,front,-0.9715027534585625 +karman_re50,sr,342,136.8,alpha,upper,-2.4672665959223066 +karman_re50,sr,342,136.8,alpha,lower,4.395150765098926 +karman_re50,sr,343,137.2,alpha,front,-1.242067493156243 +karman_re50,sr,343,137.2,alpha,upper,-2.4962671442902415 +karman_re50,sr,343,137.2,alpha,lower,4.366150216730991 +karman_re50,sr,344,137.6,alpha,front,-1.4124394962869016 +karman_re50,sr,344,137.6,alpha,upper,-2.600592386512675 +karman_re50,sr,344,137.6,alpha,lower,4.261824974508557 +karman_re50,sr,345,138.0,alpha,front,-1.4552769180043967 +karman_re50,sr,345,138.0,alpha,upper,-2.7609106028735395 +karman_re50,sr,345,138.0,alpha,lower,4.101506758147693 +karman_re50,sr,346,138.4,alpha,front,-1.3656868996314664 +karman_re50,sr,346,138.4,alpha,upper,-2.969847005001347 +karman_re50,sr,346,138.4,alpha,lower,3.892570356019885 +karman_re50,sr,347,138.8,alpha,front,-1.160674345061922 +karman_re50,sr,347,138.8,alpha,upper,-3.2189278940690906 +karman_re50,sr,347,138.8,alpha,lower,3.643489466952141 +karman_re50,sr,348,139.2,alpha,front,-0.8730812361726901 +karman_re50,sr,348,139.2,alpha,upper,-3.4805756113066884 +karman_re50,sr,348,139.2,alpha,lower,3.3818417497145448 +karman_re50,sr,349,139.6,alpha,front,-0.5357515972317974 +karman_re50,sr,349,139.6,alpha,upper,-3.733334150826572 +karman_re50,sr,349,139.6,alpha,lower,3.12908321019466 +karman_re50,sr,350,140.0,alpha,front,-0.17210154209344816 +karman_re50,sr,350,140.0,alpha,upper,-3.966346557460544 +karman_re50,sr,350,140.0,alpha,lower,2.896070803560688 +karman_re50,sr,351,140.4,alpha,front,0.20247566062515193 +karman_re50,sr,351,140.4,alpha,upper,-4.16760063462499 +karman_re50,sr,351,140.4,alpha,lower,2.694816726396242 +karman_re50,sr,352,140.8,alpha,front,0.572348315345845 +karman_re50,sr,352,140.8,alpha,upper,-4.3174989936172965 +karman_re50,sr,352,140.8,alpha,lower,2.5449183674039357 +karman_re50,sr,353,141.2,alpha,front,0.9149558702859468 +karman_re50,sr,353,141.2,alpha,upper,-4.390436016001315 +karman_re50,sr,353,141.2,alpha,lower,2.4719813450199166 +karman_re50,sr,354,141.6,alpha,front,1.1997004873887076 +karman_re50,sr,354,141.6,alpha,upper,-4.3772041780129936 +karman_re50,sr,354,141.6,alpha,lower,2.4852131830082387 +karman_re50,sr,355,142.0,alpha,front,1.3902914520065384 +karman_re50,sr,355,142.0,alpha,upper,-4.284339850196365 +karman_re50,sr,355,142.0,alpha,lower,2.5780775108248672 +karman_re50,sr,356,142.4,alpha,front,1.4574666276617945 +karman_re50,sr,356,142.4,alpha,upper,-4.133927661502288 +karman_re50,sr,356,142.4,alpha,lower,2.7284896995189443 +karman_re50,sr,357,142.8,alpha,front,1.3909976753288662 +karman_re50,sr,357,142.8,alpha,upper,-3.9333402688605243 +karman_re50,sr,357,142.8,alpha,lower,2.929077092160708 +karman_re50,sr,358,143.2,alpha,front,1.204682989275311 +karman_re50,sr,358,143.2,alpha,upper,-3.6902589315135734 +karman_re50,sr,358,143.2,alpha,lower,3.1721584295076584 +karman_re50,sr,359,143.6,alpha,front,0.9311908593349936 +karman_re50,sr,359,143.6,alpha,upper,-3.429158081324498 +karman_re50,sr,359,143.6,alpha,lower,3.4332592796967343 +karman_re50,sr,360,144.0,alpha,front,0.5993449738962845 +karman_re50,sr,360,144.0,alpha,upper,-3.1739337682194653 +karman_re50,sr,360,144.0,alpha,lower,3.6884835928017665 +karman_re50,sr,361,144.4,alpha,front,0.23933507574438417 +karman_re50,sr,361,144.4,alpha,upper,-2.9369369357706665 +karman_re50,sr,361,144.4,alpha,lower,3.9254804252505657 +karman_re50,sr,362,144.8,alpha,front,-0.13419159147737653 +karman_re50,sr,362,144.8,alpha,upper,-2.727766531790526 +karman_re50,sr,362,144.8,alpha,lower,4.134650829230706 +karman_re50,sr,363,145.2,alpha,front,-0.5062932358092879 +karman_re50,sr,363,145.2,alpha,upper,-2.567678511136055 +karman_re50,sr,363,145.2,alpha,lower,4.294738849885177 +karman_re50,sr,364,145.6,alpha,front,-0.8559079904125008 +karman_re50,sr,364,145.6,alpha,upper,-2.4789310630129315 +karman_re50,sr,364,145.6,alpha,lower,4.3834862980083 +karman_re50,sr,365,146.0,alpha,front,-1.1537892226668065 +karman_re50,sr,365,146.0,alpha,upper,-2.477068944173715 +karman_re50,sr,365,146.0,alpha,lower,4.385348416847517 +karman_re50,sr,366,146.4,alpha,front,-1.364347268669485 +karman_re50,sr,366,146.4,alpha,upper,-2.5572991511602883 +karman_re50,sr,366,146.4,alpha,lower,4.305118209860944 +karman_re50,sr,367,146.8,alpha,front,-1.4551493129604907 +karman_re50,sr,367,146.8,alpha,upper,-2.6965167034184554 +karman_re50,sr,367,146.8,alpha,lower,4.165900657602776 +karman_re50,sr,368,147.2,alpha,front,-1.412584594854572 +karman_re50,sr,368,147.2,alpha,upper,-2.8883737107510825 +karman_re50,sr,368,147.2,alpha,lower,3.9740436502701493 +karman_re50,sr,369,147.6,alpha,front,-1.2461018815746587 +karman_re50,sr,369,147.6,alpha,upper,-3.1259872910878435 +karman_re50,sr,369,147.6,alpha,lower,3.7364300699333883 +karman_re50,sr,370,148.0,alpha,front,-0.9844036056375458 +karman_re50,sr,370,148.0,alpha,upper,-3.3868142510151458 +karman_re50,sr,370,148.0,alpha,lower,3.475603110006086 +karman_re50,sr,371,148.4,alpha,front,-0.6620479568410454 +karman_re50,sr,371,148.4,alpha,upper,-3.6432813468921945 +karman_re50,sr,371,148.4,alpha,lower,3.2191360141290377 +karman_re50,sr,372,148.8,alpha,front,-0.3055150408366987 +karman_re50,sr,372,148.8,alpha,upper,-3.884493866583076 +karman_re50,sr,372,148.8,alpha,lower,2.9779234944381563 +karman_re50,sr,373,149.2,alpha,front,0.06663367006509982 +karman_re50,sr,373,149.2,alpha,upper,-4.100125431663496 +karman_re50,sr,373,149.2,alpha,lower,2.7622919293577364 +karman_re50,sr,374,149.6,alpha,front,0.4402357142833728 +karman_re50,sr,374,149.6,alpha,upper,-4.2708117418081475 +karman_re50,sr,374,149.6,alpha,lower,2.5916056192130847 +karman_re50,sr,375,150.0,alpha,front,0.795864733476839 +karman_re50,sr,375,150.0,alpha,upper,-4.3736012802670965 +karman_re50,sr,375,150.0,alpha,lower,2.4888160807541357 +karman_re50,sr,376,150.4,alpha,front,1.1056072630404359 +karman_re50,sr,376,150.4,alpha,upper,-4.391382985110949 +karman_re50,sr,376,150.4,alpha,lower,2.471034375910283 +karman_re50,sr,377,150.8,alpha,front,1.3347447188753383 +karman_re50,sr,377,150.8,alpha,upper,-4.326797560392213 +karman_re50,sr,377,150.8,alpha,lower,2.535619800629019 +karman_re50,sr,378,151.2,alpha,front,1.4486688504018959 +karman_re50,sr,378,151.2,alpha,upper,-4.1943060769916825 +karman_re50,sr,378,151.2,alpha,lower,2.6681112840295493 +karman_re50,sr,379,151.6,alpha,front,1.43008526698786 +karman_re50,sr,379,151.6,alpha,upper,-4.011140632279614 +karman_re50,sr,379,151.6,alpha,lower,2.8512767287416185 +karman_re50,sr,380,152.0,alpha,front,1.2842145866821404 +karman_re50,sr,380,152.0,alpha,upper,-3.781329651117888 +karman_re50,sr,380,152.0,alpha,lower,3.0810877099033442 +karman_re50,sr,381,152.4,alpha,front,1.037056559179636 +karman_re50,sr,381,152.4,alpha,upper,-3.523570901554966 +karman_re50,sr,381,152.4,alpha,lower,3.3388464594662657 +karman_re50,sr,382,152.8,alpha,front,0.7231593399218879 +karman_re50,sr,382,152.8,alpha,upper,-3.2643699271728233 +karman_re50,sr,382,152.8,alpha,lower,3.5980474338484094 +karman_re50,sr,383,153.2,alpha,front,0.3715119621767052 +karman_re50,sr,383,153.2,alpha,upper,-3.0198375347480715 +karman_re50,sr,383,153.2,alpha,lower,3.842579826273161 +karman_re50,sr,384,153.6,alpha,front,0.001147918147452544 +karman_re50,sr,384,153.6,alpha,upper,-2.7989221256292365 +karman_re50,sr,384,153.6,alpha,lower,4.063495235391996 +karman_re50,sr,385,154.0,alpha,front,-0.37342417304342324 +karman_re50,sr,385,154.0,alpha,upper,-2.618116643645211 +karman_re50,sr,385,154.0,alpha,lower,4.244300717376022 +karman_re50,sr,386,154.4,alpha,front,-0.734043841487987 +karman_re50,sr,386,154.4,alpha,upper,-2.501507902756627 +karman_re50,sr,386,154.4,alpha,lower,4.360909458264605 +karman_re50,sr,387,154.8,alpha,front,-1.0544763570653681 +karman_re50,sr,387,154.8,alpha,upper,-2.4675053173956036 +karman_re50,sr,387,154.8,alpha,lower,4.394912043625629 +karman_re50,sr,388,155.2,alpha,front,-1.3006517946499312 +karman_re50,sr,388,155.2,alpha,upper,-2.518362125958054 +karman_re50,sr,388,155.2,alpha,lower,4.344055235063179 +karman_re50,sr,389,155.6,alpha,front,-1.4375270741569819 +karman_re50,sr,389,155.6,alpha,upper,-2.6417984836779285 +karman_re50,sr,389,155.6,alpha,lower,4.220618877343304 +karman_re50,sr,390,156.0,alpha,front,-1.443210737787971 +karman_re50,sr,390,156.0,alpha,upper,-2.8144262327431666 +karman_re50,sr,390,156.0,alpha,lower,4.047991128278065 +karman_re50,sr,391,156.4,alpha,front,-1.3189220930292413 +karman_re50,sr,391,156.4,alpha,upper,-3.035941033724482 +karman_re50,sr,391,156.4,alpha,lower,3.82647632729675 +karman_re50,sr,392,156.8,alpha,front,-1.0876197026289731 +karman_re50,sr,392,156.8,alpha,upper,-3.2909989421290597 +karman_re50,sr,392,156.8,alpha,lower,3.571418418892173 +karman_re50,sr,393,157.2,alpha,front,-0.7833149061681137 +karman_re50,sr,393,157.2,alpha,upper,-3.5517698755881386 +karman_re50,sr,393,157.2,alpha,lower,3.3106474854330936 +karman_re50,sr,394,157.6,alpha,front,-0.43691953713504217 +karman_re50,sr,394,157.6,alpha,upper,-3.7997891544305653 +karman_re50,sr,394,157.6,alpha,lower,3.062628206590667 +karman_re50,sr,395,158.0,alpha,front,-0.06879465304768625 +karman_re50,sr,395,158.0,alpha,upper,-4.025872396259594 +karman_re50,sr,395,158.0,alpha,lower,2.8365449647616385 +karman_re50,sr,396,158.4,alpha,front,0.3061448576420009 +karman_re50,sr,396,158.4,alpha,upper,-4.215472511296206 +karman_re50,sr,396,158.4,alpha,lower,2.646944849725026 +karman_re50,sr,397,158.8,alpha,front,0.6710536139950178 +karman_re50,sr,397,158.8,alpha,upper,-4.345919485344121 +karman_re50,sr,397,158.8,alpha,lower,2.516497875677111 +karman_re50,sr,398,159.2,alpha,front,1.001125371965251 +karman_re50,sr,398,159.2,alpha,upper,-4.395271952785625 +karman_re50,sr,398,159.2,alpha,lower,2.4671454082356075 +karman_re50,sr,399,159.6,alpha,front,1.2634349000385696 +karman_re50,sr,399,159.6,alpha,upper,-4.358320213305194 +karman_re50,sr,399,159.6,alpha,lower,2.5040971477160383 +karman_re50,sr,0,0.0,omega,front,0.011303061206045321 +karman_re50,sr,0,0.0,omega,upper,-0.044034006625447174 +karman_re50,sr,0,0.0,omega,lower,0.02459016698476515 +karman_re50,sr,1,0.4,omega,front,0.00829568915196359 +karman_re50,sr,1,0.4,omega,upper,-0.041221520549502434 +karman_re50,sr,1,0.4,omega,lower,0.02740265306070989 +karman_re50,sr,2,0.8,omega,front,0.006267152346185917 +karman_re50,sr,2,0.8,omega,upper,-0.0414613427602047 +karman_re50,sr,2,0.8,omega,lower,0.027162830850007622 +karman_re50,sr,3,1.2,omega,front,0.0045720953831262815 +karman_re50,sr,3,1.2,omega,upper,-0.036668321032587714 +karman_re50,sr,3,1.2,omega,lower,0.03195585257762461 +karman_re50,sr,4,1.6,omega,front,0.0009667411850091466 +karman_re50,sr,4,1.6,omega,upper,-0.03059406075684512 +karman_re50,sr,4,1.6,omega,lower,0.0380301128533672 +karman_re50,sr,5,2.0,omega,front,-0.0034439403665473874 +karman_re50,sr,5,2.0,omega,upper,-0.027938540139426458 +karman_re50,sr,5,2.0,omega,lower,0.04068563347078587 +karman_re50,sr,6,2.4,omega,front,-0.007793164149932601 +karman_re50,sr,6,2.4,omega,upper,-0.026382942412347718 +karman_re50,sr,6,2.4,omega,lower,0.042241231197864604 +karman_re50,sr,7,2.8,omega,front,-0.01186617107605167 +karman_re50,sr,7,2.8,omega,upper,-0.024612917080271992 +karman_re50,sr,7,2.8,omega,lower,0.04401125652994033 +karman_re50,sr,8,3.2,omega,front,-0.01515743549295023 +karman_re50,sr,8,3.2,omega,upper,-0.02374355528633547 +karman_re50,sr,8,3.2,omega,lower,0.04488061832387686 +karman_re50,sr,9,3.6,omega,front,-0.017126420392250968 +karman_re50,sr,9,3.6,omega,upper,-0.024632483715315418 +karman_re50,sr,9,3.6,omega,lower,0.04399168989489691 +karman_re50,sr,10,4.0,omega,front,-0.017407936477423443 +karman_re50,sr,10,4.0,omega,upper,-0.026466271126620346 +karman_re50,sr,10,4.0,omega,lower,0.042157902483591976 +karman_re50,sr,11,4.4,omega,front,-0.016039360837580906 +karman_re50,sr,11,4.4,omega,upper,-0.028600576596688253 +karman_re50,sr,11,4.4,omega,lower,0.040023597013524065 +karman_re50,sr,12,4.8,omega,front,-0.013413460821070564 +karman_re50,sr,12,4.8,omega,upper,-0.0307943523358245 +karman_re50,sr,12,4.8,omega,lower,0.037829821274387825 +karman_re50,sr,13,5.2,omega,front,-0.010009084345106493 +karman_re50,sr,13,5.2,omega,upper,-0.033414676760515655 +karman_re50,sr,13,5.2,omega,lower,0.035209496849696674 +karman_re50,sr,14,5.6,omega,front,-0.006175836818132638 +karman_re50,sr,14,5.6,omega,upper,-0.03634060121002759 +karman_re50,sr,14,5.6,omega,lower,0.03228357240018473 +karman_re50,sr,15,6.0,omega,front,-0.0021192361477662476 +karman_re50,sr,15,6.0,omega,upper,-0.039061800681770356 +karman_re50,sr,15,6.0,omega,lower,0.029562372928441966 +karman_re50,sr,16,6.4,omega,front,0.0019858457258224303 +karman_re50,sr,16,6.4,omega,upper,-0.04142429373563407 +karman_re50,sr,16,6.4,omega,lower,0.027199879874578253 +karman_re50,sr,17,6.8,omega,front,0.005990288472739424 +karman_re50,sr,17,6.8,omega,upper,-0.04321093517842128 +karman_re50,sr,17,6.8,omega,lower,0.025413238431791052 +karman_re50,sr,18,7.2,omega,front,0.009628370656230274 +karman_re50,sr,18,7.2,omega,upper,-0.044320339939524535 +karman_re50,sr,18,7.2,omega,lower,0.02430383367068779 +karman_re50,sr,19,7.6,omega,front,0.012557015193401052 +karman_re50,sr,19,7.6,omega,upper,-0.04415671372560513 +karman_re50,sr,19,7.6,omega,lower,0.024467459884607193 +karman_re50,sr,20,8.0,omega,front,0.014323266580200339 +karman_re50,sr,20,8.0,omega,upper,-0.04286516356690147 +karman_re50,sr,20,8.0,omega,lower,0.025759010043310857 +karman_re50,sr,21,8.4,omega,front,0.014629415234025795 +karman_re50,sr,21,8.4,omega,upper,-0.040908501585017264 +karman_re50,sr,21,8.4,omega,lower,0.027715672025195058 +karman_re50,sr,22,8.8,omega,front,0.013480410845307017 +karman_re50,sr,22,8.8,omega,upper,-0.038754110321599845 +karman_re50,sr,22,8.8,omega,lower,0.029870063288612476 +karman_re50,sr,23,9.2,omega,front,0.011173985640547661 +karman_re50,sr,23,9.2,omega,upper,-0.03632798459746886 +karman_re50,sr,23,9.2,omega,lower,0.03229618901274347 +karman_re50,sr,24,9.6,omega,front,0.008096259873062518 +karman_re50,sr,24,9.6,omega,upper,-0.03363275522069736 +karman_re50,sr,24,9.6,omega,lower,0.034991418389514965 +karman_re50,sr,25,10.0,omega,front,0.004567562717879321 +karman_re50,sr,25,10.0,omega,upper,-0.030921290347808293 +karman_re50,sr,25,10.0,omega,lower,0.03770288326240403 +karman_re50,sr,26,10.4,omega,front,0.0008146511046821398 +karman_re50,sr,26,10.4,omega,upper,-0.028500232887609733 +karman_re50,sr,26,10.4,omega,lower,0.040123940722602586 +karman_re50,sr,27,10.8,omega,front,-0.0030198459577213278 +karman_re50,sr,27,10.8,omega,upper,-0.02652917758424245 +karman_re50,sr,27,10.8,omega,lower,0.04209499602596987 +karman_re50,sr,28,11.2,omega,front,-0.00674539842402277 +karman_re50,sr,28,11.2,omega,upper,-0.025079383101977187 +karman_re50,sr,28,11.2,omega,lower,0.04354479050823513 +karman_re50,sr,29,11.6,omega,front,-0.010132004765427851 +karman_re50,sr,29,11.6,omega,upper,-0.024495637544223108 +karman_re50,sr,29,11.6,omega,lower,0.04412853606598922 +karman_re50,sr,30,12.0,omega,front,-0.012828263823318385 +karman_re50,sr,30,12.0,omega,upper,-0.02484163447958251 +karman_re50,sr,30,12.0,omega,lower,0.04378253913062981 +karman_re50,sr,31,12.4,omega,front,-0.014468326964037272 +karman_re50,sr,31,12.4,omega,upper,-0.026019446340418976 +karman_re50,sr,31,12.4,omega,lower,0.04260472726979335 +karman_re50,sr,32,12.8,omega,front,-0.014802262348770091 +karman_re50,sr,32,12.8,omega,upper,-0.027648141861486203 +karman_re50,sr,32,12.8,omega,lower,0.04097603174872612 +karman_re50,sr,33,13.2,omega,front,-0.013796957933816818 +karman_re50,sr,33,13.2,omega,upper,-0.02965294549966578 +karman_re50,sr,33,13.2,omega,lower,0.03897122811054654 +karman_re50,sr,34,13.6,omega,front,-0.01166870560059248 +karman_re50,sr,34,13.6,omega,upper,-0.03211886524081864 +karman_re50,sr,34,13.6,omega,lower,0.03650530836939368 +karman_re50,sr,35,14.0,omega,front,-0.008722090463736327 +karman_re50,sr,35,14.0,omega,upper,-0.0348264097833905 +karman_re50,sr,35,14.0,omega,lower,0.03379776382682183 +karman_re50,sr,36,14.4,omega,front,-0.005286445646037514 +karman_re50,sr,36,14.4,omega,upper,-0.03746838356618292 +karman_re50,sr,36,14.4,omega,lower,0.031155790044029408 +karman_re50,sr,37,14.8,omega,front,-0.0016152676247760231 +karman_re50,sr,37,14.8,omega,upper,-0.03980329424165558 +karman_re50,sr,37,14.8,omega,lower,0.02882087936855674 +karman_re50,sr,38,15.2,omega,front,0.002160398292634483 +karman_re50,sr,38,15.2,omega,upper,-0.04175229978036881 +karman_re50,sr,38,15.2,omega,lower,0.026871873829843518 +karman_re50,sr,39,15.6,omega,front,0.005868099983228363 +karman_re50,sr,39,15.6,omega,upper,-0.04321019221873398 +karman_re50,sr,39,15.6,omega,lower,0.025413981391478352 +karman_re50,sr,40,16.0,omega,front,0.009286733681060453 +karman_re50,sr,40,16.0,omega,upper,-0.04393506357807422 +karman_re50,sr,40,16.0,omega,lower,0.024689110032138105 +karman_re50,sr,41,16.4,omega,front,0.012095660355953348 +karman_re50,sr,41,16.4,omega,upper,-0.04372187982157012 +karman_re50,sr,41,16.4,omega,lower,0.024902293788642206 +karman_re50,sr,42,16.8,omega,front,0.013941868690305819 +karman_re50,sr,42,16.8,omega,upper,-0.04271134807475454 +karman_re50,sr,42,16.8,omega,lower,0.025912825535457786 +karman_re50,sr,43,17.2,omega,front,0.01452922929062917 +karman_re50,sr,43,17.2,omega,upper,-0.04114745599444543 +karman_re50,sr,43,17.2,omega,lower,0.027476717615766894 +karman_re50,sr,44,17.6,omega,front,0.01379041073834904 +karman_re50,sr,44,17.6,omega,upper,-0.03920430583064483 +karman_re50,sr,44,17.6,omega,lower,0.029419867779567493 +karman_re50,sr,45,18.0,omega,front,0.011868053627847638 +karman_re50,sr,45,18.0,omega,upper,-0.03680573508065413 +karman_re50,sr,45,18.0,omega,lower,0.03181843852955819 +karman_re50,sr,46,18.4,omega,front,0.009087462465470554 +karman_re50,sr,46,18.4,omega,upper,-0.03413678029052903 +karman_re50,sr,46,18.4,omega,lower,0.0344873933196833 +karman_re50,sr,47,18.8,omega,front,0.005758550342638078 +karman_re50,sr,47,18.8,omega,upper,-0.03154449041436648 +karman_re50,sr,47,18.8,omega,lower,0.03707968319584584 +karman_re50,sr,48,19.2,omega,front,0.0021416651262723195 +karman_re50,sr,48,19.2,omega,upper,-0.029160016106475617 +karman_re50,sr,48,19.2,omega,lower,0.03946415750373671 +karman_re50,sr,49,19.6,omega,front,-0.0016012462768800822 +karman_re50,sr,49,19.6,omega,upper,-0.027164178225670042 +karman_re50,sr,49,19.6,omega,lower,0.04145999538454228 +karman_re50,sr,50,20.0,omega,front,-0.0053147620666365225 +karman_re50,sr,50,20.0,omega,upper,-0.025602216622581223 +karman_re50,sr,50,20.0,omega,lower,0.0430219569876311 +karman_re50,sr,51,20.4,omega,front,-0.008787744235621755 +karman_re50,sr,51,20.4,omega,upper,-0.024774195663376193 +karman_re50,sr,51,20.4,omega,lower,0.04384997794683613 +karman_re50,sr,52,20.8,omega,front,-0.01172253992198625 +karman_re50,sr,52,20.8,omega,upper,-0.024801642542971816 +karman_re50,sr,52,20.8,omega,lower,0.04382253106724052 +karman_re50,sr,53,21.2,omega,front,-0.013756092795904246 +karman_re50,sr,53,21.2,omega,upper,-0.025684491795657922 +karman_re50,sr,53,21.2,omega,lower,0.0429396818145544 +karman_re50,sr,54,21.6,omega,front,-0.014583295379012918 +karman_re50,sr,54,21.6,omega,upper,-0.027146998805359583 +karman_re50,sr,54,21.6,omega,lower,0.04147717480485274 +karman_re50,sr,55,22.0,omega,front,-0.014075894834229203 +karman_re50,sr,55,22.0,omega,upper,-0.028994616228548615 +karman_re50,sr,55,22.0,omega,lower,0.03962955738166371 +karman_re50,sr,56,22.4,omega,front,-0.012354369592516486 +karman_re50,sr,56,22.4,omega,upper,-0.0313439050009206 +karman_re50,sr,56,22.4,omega,lower,0.03728026860929172 +karman_re50,sr,57,22.8,omega,front,-0.009697636796373253 +karman_re50,sr,57,22.8,omega,upper,-0.033962276111515845 +karman_re50,sr,57,22.8,omega,lower,0.034661897498696484 +karman_re50,sr,58,23.2,omega,front,-0.006447986542123068 +karman_re50,sr,58,23.2,omega,upper,-0.03661643108377157 +karman_re50,sr,58,23.2,omega,lower,0.03200774252644075 +karman_re50,sr,59,23.6,omega,front,-0.002866410715881441 +karman_re50,sr,59,23.6,omega,upper,-0.03900702719679079 +karman_re50,sr,59,23.6,omega,lower,0.02961714641342153 +karman_re50,sr,60,24.0,omega,front,0.0008627099894323622 +karman_re50,sr,60,24.0,omega,upper,-0.041114531309614344 +karman_re50,sr,60,24.0,omega,lower,0.027509642300597978 +karman_re50,sr,61,24.4,omega,front,0.004592779254987406 +karman_re50,sr,61,24.4,omega,upper,-0.042746286972016566 +karman_re50,sr,61,24.4,omega,lower,0.02587788663819576 +karman_re50,sr,62,24.8,omega,front,0.008129823906792793 +karman_re50,sr,62,24.8,omega,upper,-0.04374208741158968 +karman_re50,sr,62,24.8,omega,lower,0.024882086198622647 +karman_re50,sr,63,25.2,omega,front,0.011185098024120666 +karman_re50,sr,63,25.2,omega,upper,-0.04387641239161196 +karman_re50,sr,63,25.2,omega,lower,0.024747761218600364 +karman_re50,sr,64,25.6,omega,front,0.01341213193486176 +karman_re50,sr,64,25.6,omega,upper,-0.043121041623632984 +karman_re50,sr,64,25.6,omega,lower,0.025503131986579337 +karman_re50,sr,65,26.0,omega,front,0.014471386110705725 +karman_re50,sr,65,26.0,omega,upper,-0.04177466773882337 +karman_re50,sr,65,26.0,omega,lower,0.026849505871388957 +karman_re50,sr,66,26.4,omega,front,0.014209150641509663 +karman_re50,sr,66,26.4,omega,upper,-0.0399570168638416 +karman_re50,sr,66,26.4,omega,lower,0.02866715674637072 +karman_re50,sr,67,26.8,omega,front,0.012691416959687498 +karman_re50,sr,67,26.8,omega,upper,-0.037711284187720684 +karman_re50,sr,67,26.8,omega,lower,0.03091288942249164 +karman_re50,sr,68,27.2,omega,front,0.010179484808513124 +karman_re50,sr,68,27.2,omega,upper,-0.03511732265226171 +karman_re50,sr,68,27.2,omega,lower,0.03350685095795061 +karman_re50,sr,69,27.6,omega,front,0.007020466991293082 +karman_re50,sr,69,27.6,omega,upper,-0.03248731082492651 +karman_re50,sr,69,27.6,omega,lower,0.036136862785285814 +karman_re50,sr,70,28.0,omega,front,0.003483194013482724 +karman_re50,sr,70,28.0,omega,upper,-0.02999938090303736 +karman_re50,sr,70,28.0,omega,lower,0.03862479270717496 +karman_re50,sr,71,28.4,omega,front,-0.00022851450989965765 +karman_re50,sr,71,28.4,omega,upper,-0.027844526812273753 +karman_re50,sr,71,28.4,omega,lower,0.040779646797938565 +karman_re50,sr,72,28.8,omega,front,-0.003974434915689035 +karman_re50,sr,72,28.8,omega,upper,-0.02610434014190174 +karman_re50,sr,72,28.8,omega,lower,0.042519833468310585 +karman_re50,sr,73,29.2,omega,front,-0.007556481879377476 +karman_re50,sr,73,29.2,omega,upper,-0.024933845216018487 +karman_re50,sr,73,29.2,omega,lower,0.04369032839419384 +karman_re50,sr,74,29.6,omega,front,-0.010733862790572432 +karman_re50,sr,74,29.6,omega,upper,-0.02470588447852065 +karman_re50,sr,74,29.6,omega,lower,0.04391828913169167 +karman_re50,sr,75,30.0,omega,front,-0.013132657352792551 +karman_re50,sr,75,30.0,omega,upper,-0.025296321240835563 +karman_re50,sr,75,30.0,omega,lower,0.04332785236937676 +karman_re50,sr,76,30.4,omega,front,-0.014423204328678581 +karman_re50,sr,76,30.4,omega,upper,-0.026543587652767663 +karman_re50,sr,76,30.4,omega,lower,0.042080585957444655 +karman_re50,sr,77,30.8,omega,front,-0.014397429353004133 +karman_re50,sr,77,30.8,omega,upper,-0.028262630421219112 +karman_re50,sr,77,30.8,omega,lower,0.04036154318899321 +karman_re50,sr,78,31.2,omega,front,-0.013090229341690874 +karman_re50,sr,78,31.2,omega,upper,-0.03044297351010729 +karman_re50,sr,78,31.2,omega,lower,0.038181200100105034 +karman_re50,sr,79,31.6,omega,front,-0.010732541452330734 +karman_re50,sr,79,31.6,omega,upper,-0.03300266602998951 +karman_re50,sr,79,31.6,omega,lower,0.03562150758022281 +karman_re50,sr,80,32.0,omega,front,-0.007658160100270861 +karman_re50,sr,80,32.0,omega,upper,-0.03568016790143533 +karman_re50,sr,80,32.0,omega,lower,0.032944005708777 +karman_re50,sr,81,32.4,omega,front,-0.004164046065376831 +karman_re50,sr,81,32.4,omega,upper,-0.038147489826752125 +karman_re50,sr,81,32.4,omega,lower,0.030476683783460197 +karman_re50,sr,82,32.8,omega,front,-0.00047357108346015225 +karman_re50,sr,82,32.8,omega,upper,-0.040409736608873356 +karman_re50,sr,82,32.8,omega,lower,0.028214437001338966 +karman_re50,sr,83,33.2,omega,front,0.003278397352972328 +karman_re50,sr,83,33.2,omega,upper,-0.042251695054280225 +karman_re50,sr,83,33.2,omega,lower,0.026372478555932104 +karman_re50,sr,84,33.6,omega,front,0.0069172136872638 +karman_re50,sr,84,33.6,omega,upper,-0.04350890007448834 +karman_re50,sr,84,33.6,omega,lower,0.025115273535723976 +karman_re50,sr,85,34.0,omega,front,0.01018427932161897 +karman_re50,sr,85,34.0,omega,upper,-0.043965237180620564 +karman_re50,sr,85,34.0,omega,lower,0.024658936429591757 +karman_re50,sr,86,34.4,omega,front,0.012752754848381247 +karman_re50,sr,86,34.4,omega,upper,-0.04350061790092499 +karman_re50,sr,86,34.4,omega,lower,0.025123555709287333 +karman_re50,sr,87,34.8,omega,front,0.01426254229683254 +karman_re50,sr,87,34.8,omega,upper,-0.04234711970034712 +karman_re50,sr,87,34.8,omega,lower,0.026277053909865202 +karman_re50,sr,88,35.2,omega,front,0.014476972938358718 +karman_re50,sr,88,35.2,omega,upper,-0.04068719551307925 +karman_re50,sr,88,35.2,omega,lower,0.02793697809713308 +karman_re50,sr,89,35.6,omega,front,0.013387535774050116 +karman_re50,sr,89,35.6,omega,upper,-0.03859839175648339 +karman_re50,sr,89,35.6,omega,lower,0.03002578185372893 +karman_re50,sr,90,36.0,omega,front,0.011192393800326179 +karman_re50,sr,90,36.0,omega,upper,-0.036079327560812884 +karman_re50,sr,90,36.0,omega,lower,0.03254484604939944 +karman_re50,sr,91,36.4,omega,front,0.008222251649999117 +karman_re50,sr,91,36.4,omega,upper,-0.03340982620813094 +karman_re50,sr,91,36.4,omega,lower,0.03521434740208139 +karman_re50,sr,92,36.8,omega,front,0.0047929754295464 +karman_re50,sr,92,36.8,omega,upper,-0.030863347104490697 +karman_re50,sr,92,36.8,omega,lower,0.03776082650572163 +karman_re50,sr,93,37.2,omega,front,0.0011240929892809264 +karman_re50,sr,93,37.2,omega,upper,-0.028589864579557416 +karman_re50,sr,93,37.2,omega,lower,0.040034309030654906 +karman_re50,sr,94,37.6,omega,front,-0.0026291922621629656 +karman_re50,sr,94,37.6,omega,upper,-0.026673118411365132 +karman_re50,sr,94,37.6,omega,lower,0.04195105519884719 +karman_re50,sr,95,38.0,omega,front,-0.006300951476891656 +karman_re50,sr,95,38.0,omega,upper,-0.025266878418309515 +karman_re50,sr,95,38.0,omega,lower,0.04335729519190281 +karman_re50,sr,96,38.4,omega,front,-0.009660377588746287 +karman_re50,sr,96,38.4,omega,upper,-0.024679940265341767 +karman_re50,sr,96,38.4,omega,lower,0.043944233344870555 +karman_re50,sr,97,38.8,omega,front,-0.012380437606913892 +karman_re50,sr,97,38.8,omega,upper,-0.02495513222902636 +karman_re50,sr,97,38.8,omega,lower,0.04366904138118596 +karman_re50,sr,98,39.2,omega,front,-0.014106291829761211 +karman_re50,sr,98,39.2,omega,upper,-0.026024225337260037 +karman_re50,sr,98,39.2,omega,lower,0.042599948272952284 +karman_re50,sr,99,39.6,omega,front,-0.014564930731044774 +karman_re50,sr,99,39.6,omega,upper,-0.027576080861651517 +karman_re50,sr,99,39.6,omega,lower,0.041048092748560805 +karman_re50,sr,100,40.0,omega,front,-0.013700673845416178 +karman_re50,sr,100,40.0,omega,upper,-0.029607020542765303 +karman_re50,sr,100,40.0,omega,lower,0.03901715306744702 +karman_re50,sr,101,40.4,omega,front,-0.011683169281560764 +karman_re50,sr,101,40.4,omega,upper,-0.03205729397919195 +karman_re50,sr,101,40.4,omega,lower,0.03656687963102038 +karman_re50,sr,102,40.8,omega,front,-0.008826769223553571 +karman_re50,sr,102,40.8,omega,upper,-0.034720821205207975 +karman_re50,sr,102,40.8,omega,lower,0.03390335240500435 +karman_re50,sr,103,41.2,omega,front,-0.005462535722649207 +karman_re50,sr,103,41.2,omega,upper,-0.03729896439814429 +karman_re50,sr,103,41.2,omega,lower,0.031325209212068036 +karman_re50,sr,104,41.6,omega,front,-0.0018206969270294102 +karman_re50,sr,104,41.6,omega,upper,-0.0396329798680921 +karman_re50,sr,104,41.6,omega,lower,0.02899119374212023 +karman_re50,sr,105,42.0,omega,front,0.0019261082281542908 +karman_re50,sr,105,42.0,omega,upper,-0.04164411997803098 +karman_re50,sr,105,42.0,omega,lower,0.026980053632181335 +karman_re50,sr,106,42.4,omega,front,0.005637805290836617 +karman_re50,sr,106,42.4,omega,upper,-0.04315980798125132 +karman_re50,sr,106,42.4,omega,lower,0.025464365628961007 +karman_re50,sr,107,42.8,omega,front,0.00906576028404715 +karman_re50,sr,107,42.8,omega,upper,-0.04390020080373097 +karman_re50,sr,107,42.8,omega,lower,0.02472397280648135 +karman_re50,sr,108,43.2,omega,front,0.011930703974821783 +karman_re50,sr,108,43.2,omega,upper,-0.0437583320424575 +karman_re50,sr,108,43.2,omega,lower,0.024865841567754815 +karman_re50,sr,109,43.6,omega,front,0.01386018503427751 +karman_re50,sr,109,43.6,omega,upper,-0.04283367608277696 +karman_re50,sr,109,43.6,omega,lower,0.025790497527435365 +karman_re50,sr,110,44.0,omega,front,0.014558689006245778 +karman_re50,sr,110,44.0,omega,upper,-0.04135430327919022 +karman_re50,sr,110,44.0,omega,lower,0.027269870331022107 +karman_re50,sr,111,44.4,omega,front,0.013929291557116091 +karman_re50,sr,111,44.4,omega,upper,-0.039413561644539845 +karman_re50,sr,111,44.4,omega,lower,0.029210611965672484 +karman_re50,sr,112,44.8,omega,front,0.01209850416356023 +karman_re50,sr,112,44.8,omega,upper,-0.037016796530182625 +karman_re50,sr,112,44.8,omega,lower,0.031607377080029704 +karman_re50,sr,113,45.2,omega,front,0.00936928224531955 +karman_re50,sr,113,45.2,omega,upper,-0.03435635075991884 +karman_re50,sr,113,45.2,omega,lower,0.034267822850293485 +karman_re50,sr,114,45.6,omega,front,0.006074938701839612 +karman_re50,sr,114,45.6,omega,upper,-0.03177102613082474 +karman_re50,sr,114,45.6,omega,lower,0.03685314747938758 +karman_re50,sr,115,46.0,omega,front,0.002474190928148 +karman_re50,sr,115,46.0,omega,upper,-0.029388447283611518 +karman_re50,sr,115,46.0,omega,lower,0.03923572632660081 +karman_re50,sr,116,46.4,omega,front,-0.0012644449956366432 +karman_re50,sr,116,46.4,omega,upper,-0.02731952531094284 +karman_re50,sr,116,46.4,omega,lower,0.04130464829926948 +karman_re50,sr,117,46.8,omega,front,-0.004986925439325745 +karman_re50,sr,117,46.8,omega,upper,-0.025698384228335428 +karman_re50,sr,117,46.8,omega,lower,0.042925789381876904 +karman_re50,sr,118,47.2,omega,front,-0.008491411269020215 +karman_re50,sr,118,47.2,omega,upper,-0.024793010203982068 +karman_re50,sr,118,47.2,omega,lower,0.043831163406230264 +karman_re50,sr,119,47.6,omega,front,-0.011484077441189159 +karman_re50,sr,119,47.6,omega,upper,-0.024763990624884435 +karman_re50,sr,119,47.6,omega,lower,0.043860182985327886 +karman_re50,sr,120,48.0,omega,front,-0.01361018126777654 +karman_re50,sr,120,48.0,omega,upper,-0.02555209424793917 +karman_re50,sr,120,48.0,omega,lower,0.043072079362273155 +karman_re50,sr,121,48.4,omega,front,-0.014549276247265928 +karman_re50,sr,121,48.4,omega,upper,-0.026953294903771498 +karman_re50,sr,121,48.4,omega,lower,0.041670878706440824 +karman_re50,sr,122,48.8,omega,front,-0.01415470093879768 +karman_re50,sr,122,48.8,omega,upper,-0.028817195019287745 +karman_re50,sr,122,48.8,omega,lower,0.03980697859092458 +karman_re50,sr,123,49.2,omega,front,-0.01252393067758107 +karman_re50,sr,123,49.2,omega,upper,-0.031168960831436866 +karman_re50,sr,123,49.2,omega,lower,0.037455212778775455 +karman_re50,sr,124,49.6,omega,front,-0.00992847805038312 +karman_re50,sr,124,49.6,omega,upper,-0.0337688066685176 +karman_re50,sr,124,49.6,omega,lower,0.03485536694169472 +karman_re50,sr,125,50.0,omega,front,-0.006713990000898493 +karman_re50,sr,125,50.0,omega,upper,-0.03638686415268746 +karman_re50,sr,125,50.0,omega,lower,0.03223730945752487 +karman_re50,sr,126,50.4,omega,front,-0.003154142107968044 +karman_re50,sr,126,50.4,omega,upper,-0.03880880007136875 +karman_re50,sr,126,50.4,omega,lower,0.029815373538843577 +karman_re50,sr,127,50.8,omega,front,0.0005692821091081585 +karman_re50,sr,127,50.8,omega,upper,-0.04095630982292838 +karman_re50,sr,127,50.8,omega,lower,0.027667863787283944 +karman_re50,sr,128,51.2,omega,front,0.004307956494225189 +karman_re50,sr,128,51.2,omega,upper,-0.042661155667027204 +karman_re50,sr,128,51.2,omega,lower,0.025963017943185118 +karman_re50,sr,129,51.6,omega,front,0.007871936732647163 +karman_re50,sr,129,51.6,omega,upper,-0.043731873238347665 +karman_re50,sr,129,51.6,omega,lower,0.02489230037186466 +karman_re50,sr,130,52.0,omega,front,0.010983148168204093 +karman_re50,sr,130,52.0,omega,upper,-0.04392019829449469 +karman_re50,sr,130,52.0,omega,lower,0.02470397531571763 +karman_re50,sr,131,52.4,omega,front,0.013293393088317394 +karman_re50,sr,131,52.4,omega,upper,-0.043256372948641555 +karman_re50,sr,131,52.4,omega,lower,0.025367800661570766 +karman_re50,sr,132,52.8,omega,front,0.014463446093307769 +karman_re50,sr,132,52.8,omega,upper,-0.041950313761618264 +karman_re50,sr,132,52.8,omega,lower,0.02667385984859406 +karman_re50,sr,133,53.2,omega,front,0.014309563467917548 +karman_re50,sr,133,53.2,omega,upper,-0.04016291870193513 +karman_re50,sr,133,53.2,omega,lower,0.028461254908277195 +karman_re50,sr,134,53.6,omega,front,0.012886215782767775 +karman_re50,sr,134,53.6,omega,upper,-0.03792558542867249 +karman_re50,sr,134,53.6,omega,lower,0.030698588181539834 +karman_re50,sr,135,54.0,omega,front,0.01044137506921358 +karman_re50,sr,135,54.0,omega,upper,-0.0353193681032898 +karman_re50,sr,135,54.0,omega,lower,0.033304805506922525 +karman_re50,sr,136,54.4,omega,front,0.007314972017860657 +karman_re50,sr,136,54.4,omega,upper,-0.03269727610442456 +karman_re50,sr,136,54.4,omega,lower,0.035926897505787765 +karman_re50,sr,137,54.8,omega,front,0.0038035389504417665 +karman_re50,sr,137,54.8,omega,upper,-0.030226426643051453 +karman_re50,sr,137,54.8,omega,lower,0.03839774696716087 +karman_re50,sr,138,55.2,omega,front,9.89215479067736e-05 +karman_re50,sr,138,55.2,omega,upper,-0.028023669921957445 +karman_re50,sr,138,55.2,omega,lower,0.04060050368825488 +karman_re50,sr,139,55.6,omega,front,-0.0036496778589577036 +karman_re50,sr,139,55.6,omega,upper,-0.026223382684749583 +karman_re50,sr,139,55.6,omega,lower,0.042400790925462735 +karman_re50,sr,140,56.0,omega,front,-0.007261857639329425 +karman_re50,sr,140,56.0,omega,upper,-0.02503146220214628 +karman_re50,sr,140,56.0,omega,lower,0.043592711408066045 +karman_re50,sr,141,56.4,omega,front,-0.010481036972369765 +karman_re50,sr,141,56.4,omega,upper,-0.024670647179417 +karman_re50,sr,141,56.4,omega,lower,0.043953526430795316 +karman_re50,sr,142,56.8,omega,front,-0.012961833537230861 +karman_re50,sr,142,56.8,omega,upper,-0.02518529291887697 +karman_re50,sr,142,56.8,omega,lower,0.04343888069133536 +karman_re50,sr,143,57.2,omega,front,-0.014359605601837409 +karman_re50,sr,143,57.2,omega,upper,-0.026394307564121693 +karman_re50,sr,143,57.2,omega,lower,0.04222986604609063 +karman_re50,sr,144,57.6,omega,front,-0.014449247923182407 +karman_re50,sr,144,57.6,omega,upper,-0.028087570544898827 +karman_re50,sr,144,57.6,omega,lower,0.040536603065313495 +karman_re50,sr,145,58.0,omega,front,-0.013241204223752837 +karman_re50,sr,145,58.0,omega,upper,-0.030265106220542373 +karman_re50,sr,145,58.0,omega,lower,0.03835906738966995 +karman_re50,sr,146,58.4,omega,front,-0.010955609188217053 +karman_re50,sr,146,58.4,omega,upper,-0.03281375482736786 +karman_re50,sr,146,58.4,omega,lower,0.03581041878284446 +karman_re50,sr,147,58.8,omega,front,-0.00792698716474121 +karman_re50,sr,147,58.8,omega,upper,-0.0354634139800404 +karman_re50,sr,147,58.8,omega,lower,0.033160759630171927 +karman_re50,sr,148,59.2,omega,front,-0.004467004815103669 +karman_re50,sr,148,59.2,omega,upper,-0.03796109220290862 +karman_re50,sr,148,59.2,omega,lower,0.030663081407303703 +karman_re50,sr,149,59.6,omega,front,-0.0007859312563412415 +karman_re50,sr,149,59.6,omega,upper,-0.04022054222899385 +karman_re50,sr,149,59.6,omega,lower,0.02840363138121848 +karman_re50,sr,150,60.0,omega,front,0.0029635640969937625 +karman_re50,sr,150,60.0,omega,upper,-0.04210656975454131 +karman_re50,sr,150,60.0,omega,lower,0.026517603855671014 +karman_re50,sr,151,60.4,omega,front,0.006622055983540547 +karman_re50,sr,151,60.4,omega,upper,-0.04342500957307511 +karman_re50,sr,151,60.4,omega,lower,0.02519916403713721 +karman_re50,sr,152,60.8,omega,front,0.009929673071175303 +karman_re50,sr,152,60.8,omega,upper,-0.04395867386256328 +karman_re50,sr,152,60.8,omega,lower,0.02466549974764904 +karman_re50,sr,153,61.2,omega,front,0.012575640912231463 +karman_re50,sr,153,61.2,omega,upper,-0.043589541649728 +karman_re50,sr,153,61.2,omega,lower,0.025034631960484312 +karman_re50,sr,154,61.6,omega,front,0.014189713738214337 +karman_re50,sr,154,61.6,omega,upper,-0.04249568271109817 +karman_re50,sr,154,61.6,omega,lower,0.02612849089911415 +karman_re50,sr,155,62.0,omega,front,0.014523958145600454 +karman_re50,sr,155,62.0,omega,upper,-0.04086761139796496 +karman_re50,sr,155,62.0,omega,lower,0.027756562212247374 +karman_re50,sr,156,62.4,omega,front,0.013537783387281468 +karman_re50,sr,156,62.4,omega,upper,-0.03878154502152846 +karman_re50,sr,156,62.4,omega,lower,0.029842628588683865 +karman_re50,sr,157,62.8,omega,front,0.011421628669336563 +karman_re50,sr,157,62.8,omega,upper,-0.03628074880390697 +karman_re50,sr,157,62.8,omega,lower,0.03234342480630535 +karman_re50,sr,158,63.2,omega,front,0.008503918472514692 +karman_re50,sr,158,63.2,omega,upper,-0.03363228782597605 +karman_re50,sr,158,63.2,omega,lower,0.034991885784236273 +karman_re50,sr,159,63.6,omega,front,0.005100232302542315 +karman_re50,sr,159,63.6,omega,upper,-0.03109096985622915 +karman_re50,sr,159,63.6,omega,lower,0.037533203753983176 +karman_re50,sr,160,64.0,omega,front,0.0014505627546733929 +karman_re50,sr,160,64.0,omega,upper,-0.028789573056978934 +karman_re50,sr,160,64.0,omega,lower,0.03983460055323339 +karman_re50,sr,161,64.4,omega,front,-0.0022996480182938626 +karman_re50,sr,161,64.4,omega,upper,-0.02681737895474669 +karman_re50,sr,161,64.4,omega,lower,0.04180679465546563 +karman_re50,sr,162,64.8,omega,front,-0.005985905545839914 +karman_re50,sr,162,64.8,omega,upper,-0.02537001583850729 +karman_re50,sr,162,64.8,omega,lower,0.043254157771705035 +karman_re50,sr,163,65.2,omega,front,-0.009382520935626259 +karman_re50,sr,163,65.2,omega,upper,-0.024695311005101993 +karman_re50,sr,163,65.2,omega,lower,0.04392886260511033 +karman_re50,sr,164,65.6,omega,front,-0.012172076418937458 +karman_re50,sr,164,65.6,omega,upper,-0.024906396813964494 +karman_re50,sr,164,65.6,omega,lower,0.04371777679624783 +karman_re50,sr,165,66.0,omega,front,-0.013996987054103823 +karman_re50,sr,165,66.0,omega,upper,-0.025894044488936185 +karman_re50,sr,165,66.0,omega,lower,0.04273012912127614 +karman_re50,sr,166,66.4,omega,front,-0.014571418874769895 +karman_re50,sr,166,66.4,omega,upper,-0.027418605379569604 +karman_re50,sr,166,66.4,omega,lower,0.04120556823064272 +karman_re50,sr,167,66.8,omega,front,-0.013815593864602727 +karman_re50,sr,167,66.8,omega,upper,-0.029427175579770454 +karman_re50,sr,167,66.8,omega,lower,0.03919699803044187 +karman_re50,sr,168,67.2,omega,front,-0.01188247779298813 +karman_re50,sr,168,67.2,omega,upper,-0.03186754237954696 +karman_re50,sr,168,67.2,omega,lower,0.03675663123066536 +karman_re50,sr,169,67.6,omega,front,-0.009081726898465755 +karman_re50,sr,169,67.6,omega,upper,-0.03451128678143022 +karman_re50,sr,169,67.6,omega,lower,0.0341128868287821 +karman_re50,sr,170,68.0,omega,front,-0.005749361802681097 +karman_re50,sr,170,68.0,omega,upper,-0.03708595267943663 +karman_re50,sr,170,68.0,omega,lower,0.03153822093077569 +karman_re50,sr,171,68.4,omega,front,-0.002129329278281087 +karman_re50,sr,171,68.4,omega,upper,-0.03943810976338829 +karman_re50,sr,171,68.4,omega,lower,0.02918606384682404 +karman_re50,sr,172,68.8,omega,front,0.0016116997395746189 +karman_re50,sr,172,68.8,omega,upper,-0.04148689722403943 +karman_re50,sr,172,68.8,omega,lower,0.027137276386172898 +karman_re50,sr,173,69.2,omega,front,0.005325252852918405 +karman_re50,sr,173,69.2,omega,upper,-0.04302842439081072 +karman_re50,sr,173,69.2,omega,lower,0.025595749219401602 +karman_re50,sr,174,69.6,omega,front,0.00879361744202673 +karman_re50,sr,174,69.6,omega,upper,-0.04386362678617354 +karman_re50,sr,174,69.6,omega,lower,0.024760546824038793 +karman_re50,sr,175,70.0,omega,front,0.011721431258817727 +karman_re50,sr,175,70.0,omega,upper,-0.04381914511981314 +karman_re50,sr,175,70.0,omega,lower,0.024805028490399183 +karman_re50,sr,176,70.4,omega,front,0.013748630076426259 +karman_re50,sr,176,70.4,omega,upper,-0.04294911953402485 +karman_re50,sr,176,70.4,omega,lower,0.025675054076187476 +karman_re50,sr,177,70.8,omega,front,0.01456017195978317 +karman_re50,sr,177,70.8,omega,upper,-0.04152435274499635 +karman_re50,sr,177,70.8,omega,lower,0.027099820865215972 +karman_re50,sr,178,71.2,omega,front,0.014042256652822058 +karman_re50,sr,178,71.2,omega,upper,-0.03960114983083308 +karman_re50,sr,178,71.2,omega,lower,0.029023023779379247 +karman_re50,sr,179,71.6,omega,front,0.01230130649576177 +karman_re50,sr,179,71.6,omega,upper,-0.037210870389155985 +karman_re50,sr,179,71.6,omega,lower,0.03141330322105634 +karman_re50,sr,180,72.0,omega,front,0.009631790329327577 +karman_re50,sr,180,72.0,omega,upper,-0.034580260235679165 +karman_re50,sr,180,72.0,omega,lower,0.034043913374533157 +karman_re50,sr,181,72.4,omega,front,0.006372303741943447 +karman_re50,sr,181,72.4,omega,upper,-0.03199063922904907 +karman_re50,sr,181,72.4,omega,lower,0.03663353438116325 +karman_re50,sr,182,72.8,omega,front,0.0027885126428558262 +karman_re50,sr,182,72.8,omega,upper,-0.029589597529114747 +karman_re50,sr,182,72.8,omega,lower,0.039034576081097574 +karman_re50,sr,183,73.2,omega,front,-0.0009405460692281395 +karman_re50,sr,183,73.2,omega,upper,-0.027485330162797753 +karman_re50,sr,183,73.2,omega,lower,0.041138843447414565 +karman_re50,sr,184,73.6,omega,front,-0.0046715105458819154 +karman_re50,sr,184,73.6,omega,upper,-0.025819925125377657 +karman_re50,sr,184,73.6,omega,lower,0.04280424848483467 +karman_re50,sr,185,74.0,omega,front,-0.00820510932870416 +karman_re50,sr,185,74.0,omega,upper,-0.024842526640190626 +karman_re50,sr,185,74.0,omega,lower,0.043781646970021695 +karman_re50,sr,186,74.4,omega,front,-0.01125656128868873 +karman_re50,sr,186,74.4,omega,upper,-0.024731633817027456 +karman_re50,sr,186,74.4,omega,lower,0.043892539793184866 +karman_re50,sr,187,74.8,omega,front,-0.01346969894798872 +karman_re50,sr,187,74.8,omega,upper,-0.02545171552231801 +karman_re50,sr,187,74.8,omega,lower,0.04317245808789432 +karman_re50,sr,188,75.2,omega,front,-0.01451905818295415 +karman_re50,sr,188,75.2,omega,upper,-0.02682096129930452 +karman_re50,sr,188,75.2,omega,lower,0.041803212310907806 +karman_re50,sr,189,75.6,omega,front,-0.014237494145990641 +karman_re50,sr,189,75.6,omega,upper,-0.02864582710452833 +karman_re50,sr,189,75.6,omega,lower,0.03997834650568399 +karman_re50,sr,190,76.0,omega,front,-0.012699932842575874 +karman_re50,sr,190,76.0,omega,upper,-0.030946356102504447 +karman_re50,sr,190,76.0,omega,lower,0.03767781750770788 +karman_re50,sr,191,76.4,omega,front,-0.0101712926002142 +karman_re50,sr,191,76.4,omega,upper,-0.03355939708632665 +karman_re50,sr,191,76.4,omega,lower,0.03506477652388568 +karman_re50,sr,192,76.8,omega,front,-0.006997952515409602 +karman_re50,sr,192,76.8,omega,upper,-0.036169869682869185 +karman_re50,sr,192,76.8,omega,lower,0.03245430392734314 +karman_re50,sr,193,77.2,omega,front,-0.003460540233206323 +karman_re50,sr,193,77.2,omega,upper,-0.03862049632963897 +karman_re50,sr,193,77.2,omega,lower,0.030003677280573352 +karman_re50,sr,194,77.6,omega,front,0.0002556707358047137 +karman_re50,sr,194,77.6,omega,upper,-0.04078221518521824 +karman_re50,sr,194,77.6,omega,lower,0.02784195842499409 +karman_re50,sr,195,78.0,omega,front,0.003998642578193725 +karman_re50,sr,195,78.0,omega,upper,-0.04254029074150375 +karman_re50,sr,195,78.0,omega,lower,0.02608388286870858 +karman_re50,sr,196,78.4,omega,front,0.007586485270624784 +karman_re50,sr,196,78.4,omega,upper,-0.04366659479057635 +karman_re50,sr,196,78.4,omega,lower,0.024957578819635975 +karman_re50,sr,197,78.8,omega,front,0.010749345447100092 +karman_re50,sr,197,78.8,omega,upper,-0.0439384738848356 +karman_re50,sr,197,78.8,omega,lower,0.024685699725376722 +karman_re50,sr,198,79.2,omega,front,0.013142525209789119 +karman_re50,sr,198,79.2,omega,upper,-0.04335185088075161 +karman_re50,sr,198,79.2,omega,lower,0.025272322729460717 +karman_re50,sr,199,79.6,omega,front,0.014420805851130978 +karman_re50,sr,199,79.6,omega,upper,-0.04209820080085055 +karman_re50,sr,199,79.6,omega,lower,0.02652597280936178 +karman_re50,sr,200,80.0,omega,front,0.014379723598164581 +karman_re50,sr,200,80.0,omega,upper,-0.0403387474197351 +karman_re50,sr,200,80.0,omega,lower,0.02828542619047722 +karman_re50,sr,201,80.4,omega,front,0.013055360397647306 +karman_re50,sr,201,80.4,omega,upper,-0.03811414494340937 +karman_re50,sr,201,80.4,omega,lower,0.030510028666802955 +karman_re50,sr,202,80.8,omega,front,0.010681134468358793 +karman_re50,sr,202,80.8,omega,upper,-0.035540027130418185 +karman_re50,sr,202,80.8,omega,lower,0.033084146479794144 +karman_re50,sr,203,81.2,omega,front,0.007598431482564024 +karman_re50,sr,203,81.2,omega,upper,-0.0329132794538403 +karman_re50,sr,203,81.2,omega,lower,0.03571089415637202 +karman_re50,sr,204,81.6,omega,front,0.004110811807368025 +karman_re50,sr,204,81.6,omega,upper,-0.030435102400305353 +karman_re50,sr,204,81.6,omega,lower,0.03818907120990697 +karman_re50,sr,205,82.0,omega,front,0.00041843803997612157 +karman_re50,sr,205,82.0,omega,upper,-0.02820842633567203 +karman_re50,sr,205,82.0,omega,lower,0.040415747274540295 +karman_re50,sr,206,82.4,omega,front,-0.003332260978238395 +karman_re50,sr,206,82.4,omega,upper,-0.026356093858893717 +karman_re50,sr,206,82.4,omega,lower,0.042268079751318605 +karman_re50,sr,207,82.8,omega,front,-0.006965179908230346 +karman_re50,sr,207,82.8,omega,upper,-0.025102792421960674 +karman_re50,sr,207,82.8,omega,lower,0.04352138118825165 +karman_re50,sr,208,83.2,omega,front,-0.010228280417865252 +karman_re50,sr,208,83.2,omega,upper,-0.024666140702625176 +karman_re50,sr,208,83.2,omega,lower,0.043958032907587145 +karman_re50,sr,209,83.6,omega,front,-0.012787397353411618 +karman_re50,sr,209,83.6,omega,upper,-0.02510808296481594 +karman_re50,sr,209,83.6,omega,lower,0.04351609064539638 +karman_re50,sr,210,84.0,omega,front,-0.014290998576822055 +karman_re50,sr,210,84.0,omega,upper,-0.02626608764218563 +karman_re50,sr,210,84.0,omega,lower,0.04235808596802669 +karman_re50,sr,211,84.4,omega,front,-0.014492961308682512 +karman_re50,sr,211,84.4,omega,upper,-0.027918710119084054 +karman_re50,sr,211,84.4,omega,lower,0.04070546349112827 +karman_re50,sr,212,84.8,omega,front,-0.013386590946167612 +karman_re50,sr,212,84.8,omega,upper,-0.030073931122316183 +karman_re50,sr,212,84.8,omega,lower,0.03855024248789614 +karman_re50,sr,213,85.2,omega,front,-0.011176310858414522 +karman_re50,sr,213,85.2,omega,upper,-0.03260587379338603 +karman_re50,sr,213,85.2,omega,lower,0.03601829981682629 +karman_re50,sr,214,85.6,omega,front,-0.00819878013628634 +karman_re50,sr,214,85.6,omega,upper,-0.03524962885247793 +karman_re50,sr,214,85.6,omega,lower,0.033374544757734395 +karman_re50,sr,215,86.0,omega,front,-0.004763807753657103 +karman_re50,sr,215,86.0,omega,upper,-0.03775243319269685 +karman_re50,sr,215,86.0,omega,lower,0.030871740417515472 +karman_re50,sr,216,86.4,omega,front,-0.0010967274633817351 +karman_re50,sr,216,86.4,omega,upper,-0.04002995327724227 +karman_re50,sr,216,86.4,omega,lower,0.028594220332970054 +karman_re50,sr,217,86.8,omega,front,0.0026535761918994954 +karman_re50,sr,217,86.8,omega,upper,-0.04196840208957897 +karman_re50,sr,217,86.8,omega,lower,0.026655771520633358 +karman_re50,sr,218,87.2,omega,front,0.006324106641983057 +karman_re50,sr,218,87.2,omega,upper,-0.04335407062506325 +karman_re50,sr,218,87.2,omega,lower,0.02527010298514907 +karman_re50,sr,219,87.6,omega,front,0.009676831713040358 +karman_re50,sr,219,87.6,omega,upper,-0.04394487582230507 +karman_re50,sr,219,87.6,omega,lower,0.024679297787907256 +karman_re50,sr,220,88.0,omega,front,0.012391296911589798 +karman_re50,sr,220,88.0,omega,upper,-0.04365031209824912 +karman_re50,sr,220,88.0,omega,lower,0.024973861511963198 +karman_re50,sr,221,88.4,omega,front,0.014104613961073247 +karman_re50,sr,221,88.4,omega,upper,-0.04261625989198864 +karman_re50,sr,221,88.4,omega,lower,0.026007913718223682 +karman_re50,sr,222,88.8,omega,front,0.014553135922445731 +karman_re50,sr,222,88.8,omega,upper,-0.04103930055144162 +karman_re50,sr,222,88.8,omega,lower,0.0275848730587707 +karman_re50,sr,223,89.2,omega,front,0.013673029637887713 +karman_re50,sr,223,89.2,omega,upper,-0.038965331629257784 +karman_re50,sr,223,89.2,omega,lower,0.02965884198095454 +karman_re50,sr,224,89.6,omega,front,0.011639349336525035 +karman_re50,sr,224,89.6,omega,upper,-0.03648616954515381 +karman_re50,sr,224,89.6,omega,lower,0.03213800406505852 +karman_re50,sr,225,90.0,omega,front,0.008771049020378341 +karman_re50,sr,225,90.0,omega,upper,-0.03384404656144057 +karman_re50,sr,225,90.0,omega,lower,0.03478012704877175 +karman_re50,sr,226,90.4,omega,front,0.005403326027680939 +karman_re50,sr,226,90.4,omega,upper,-0.03131273875551336 +karman_re50,sr,226,90.4,omega,lower,0.03731143485469897 +karman_re50,sr,227,90.8,omega,front,0.0017642374670758104 +karman_re50,sr,227,90.8,omega,upper,-0.028983643871035546 +karman_re50,sr,227,90.8,omega,lower,0.039640529739176776 +karman_re50,sr,228,91.2,omega,front,-0.001980143902670579 +karman_re50,sr,228,91.2,omega,upper,-0.026966299743216016 +karman_re50,sr,228,91.2,omega,lower,0.041657873866996306 +karman_re50,sr,229,91.6,omega,front,-0.005680325653535834 +karman_re50,sr,229,91.6,omega,upper,-0.025468362082197 +karman_re50,sr,229,91.6,omega,lower,0.04315581152801532 +karman_re50,sr,230,92.0,omega,front,-0.009111983146611128 +karman_re50,sr,230,92.0,omega,upper,-0.024725676437403667 +karman_re50,sr,230,92.0,omega,lower,0.04389849717280866 +karman_re50,sr,231,92.4,omega,front,-0.011967103824193772 +karman_re50,sr,231,92.4,omega,upper,-0.024853512699829074 +karman_re50,sr,231,92.4,omega,lower,0.043770660910383244 +karman_re50,sr,232,92.8,omega,front,-0.013887946013297094 +karman_re50,sr,232,92.8,omega,upper,-0.02577374744038683 +karman_re50,sr,232,92.8,omega,lower,0.04285042616982549 +karman_re50,sr,233,93.2,omega,front,-0.014575307409823931 +karman_re50,sr,233,93.2,omega,upper,-0.02725866047000244 +karman_re50,sr,233,93.2,omega,lower,0.041365513140209885 +karman_re50,sr,234,93.6,omega,front,-0.013928743219505709 +karman_re50,sr,234,93.6,omega,upper,-0.029250989084252214 +karman_re50,sr,234,93.6,omega,lower,0.03937318452596011 +karman_re50,sr,235,94.0,omega,front,-0.012081207774936691 +karman_re50,sr,235,94.0,omega,upper,-0.031671737485400524 +karman_re50,sr,235,94.0,omega,lower,0.0369524361248118 +karman_re50,sr,236,94.4,omega,front,-0.009338817096084553 +karman_re50,sr,236,94.4,omega,upper,-0.03430161685885705 +karman_re50,sr,236,94.4,omega,lower,0.034322556751355274 +karman_re50,sr,237,94.8,omega,front,-0.0060397318752685135 +karman_re50,sr,237,94.8,omega,upper,-0.03686749055974427 +karman_re50,sr,237,94.8,omega,lower,0.031756683050468054 +karman_re50,sr,238,95.2,omega,front,-0.002437830761103079 +karman_re50,sr,238,95.2,omega,upper,-0.03923770095511398 +karman_re50,sr,238,95.2,omega,lower,0.02938647265509834 +karman_re50,sr,239,95.6,omega,front,0.0012959888381707714 +karman_re50,sr,239,95.6,omega,upper,-0.04131632859992721 +karman_re50,sr,239,95.6,omega,lower,0.02730784501028511 +karman_re50,sr,240,96.0,omega,front,0.00502028612194221 +karman_re50,sr,240,96.0,omega,upper,-0.04293287947053214 +karman_re50,sr,240,96.0,omega,lower,0.02569129413968018 +karman_re50,sr,241,96.4,omega,front,0.008518369721537154 +karman_re50,sr,241,96.4,omega,upper,-0.04383820173130073 +karman_re50,sr,241,96.4,omega,lower,0.02478597187891159 +karman_re50,sr,242,96.8,omega,front,0.01150666362276015 +karman_re50,sr,242,96.8,omega,upper,-0.04385408706199192 +karman_re50,sr,242,96.8,omega,lower,0.024770086548220407 +karman_re50,sr,243,97.2,omega,front,0.013621871736830288 +karman_re50,sr,243,97.2,omega,upper,-0.04306253507071642 +karman_re50,sr,243,97.2,omega,lower,0.025561638539495907 +karman_re50,sr,244,97.6,omega,front,0.014546579847016652 +karman_re50,sr,244,97.6,omega,upper,-0.0416663037190221 +karman_re50,sr,244,97.6,omega,lower,0.026957869891190225 +karman_re50,sr,245,98.0,omega,front,0.014137215850996476 +karman_re50,sr,245,98.0,omega,upper,-0.039770322360614854 +karman_re50,sr,245,98.0,omega,lower,0.028853851249597467 +karman_re50,sr,246,98.4,omega,front,0.012486611308216284 +karman_re50,sr,246,98.4,omega,upper,-0.037405711567150654 +karman_re50,sr,246,98.4,omega,lower,0.031218462043061668 +karman_re50,sr,247,98.8,omega,front,0.009881166948561613 +karman_re50,sr,247,98.8,omega,upper,-0.03479828997719286 +karman_re50,sr,247,98.8,omega,lower,0.03382588363301947 +karman_re50,sr,248,99.2,omega,front,0.006660719557047382 +karman_re50,sr,248,99.2,omega,upper,-0.032212691305591144 +karman_re50,sr,248,99.2,omega,lower,0.03641148230462118 +karman_re50,sr,249,99.6,omega,front,0.0030996289135327548 +karman_re50,sr,249,99.6,omega,upper,-0.029801945455970636 +karman_re50,sr,249,99.6,omega,lower,0.03882222815424169 +karman_re50,sr,250,100.0,omega,front,-0.0006223261000711348 +karman_re50,sr,250,100.0,omega,upper,-0.02764765771972276 +karman_re50,sr,250,100.0,omega,lower,0.04097651589048956 +karman_re50,sr,251,100.4,omega,front,-0.0043593199663867505 +karman_re50,sr,251,100.4,omega,upper,-0.025934974259906263 +karman_re50,sr,251,100.4,omega,lower,0.042689199350306066 +karman_re50,sr,252,100.8,omega,front,-0.007919561075103592 +karman_re50,sr,252,100.8,omega,upper,-0.02488409584367846 +karman_re50,sr,252,100.8,omega,lower,0.04374007776653386 +karman_re50,sr,253,101.2,omega,front,-0.011023730923347267 +karman_re50,sr,253,101.2,omega,upper,-0.024709145584361217 +karman_re50,sr,253,101.2,omega,lower,0.04391502802585111 +karman_re50,sr,254,101.6,omega,front,-0.013322875003837258 +karman_re50,sr,254,101.6,omega,upper,-0.025362383754670325 +karman_re50,sr,254,101.6,omega,lower,0.043261789855542 +karman_re50,sr,255,102.0,omega,front,-0.014484078683392377 +karman_re50,sr,255,102.0,omega,upper,-0.026674927091915365 +karman_re50,sr,255,102.0,omega,lower,0.041949246518296956 +karman_re50,sr,256,102.4,omega,front,-0.014311081941300149 +karman_re50,sr,256,102.4,omega,upper,-0.028473809100042526 +karman_re50,sr,256,102.4,omega,lower,0.040150364510169796 +karman_re50,sr,257,102.8,omega,front,-0.012869740790564646 +karman_re50,sr,257,102.8,omega,upper,-0.03075810107944269 +karman_re50,sr,257,102.8,omega,lower,0.03786607253076963 +karman_re50,sr,258,103.2,omega,front,-0.010410477687862222 +karman_re50,sr,258,103.2,omega,upper,-0.033347387145230147 +karman_re50,sr,258,103.2,omega,lower,0.03527678646498218 +karman_re50,sr,259,103.6,omega,front,-0.007278395457258766 +karman_re50,sr,259,103.6,omega,upper,-0.035961519731707664 +karman_re50,sr,259,103.6,omega,lower,0.03266265387850466 +karman_re50,sr,260,104.0,omega,front,-0.003763205056214073 +karman_re50,sr,260,104.0,omega,upper,-0.0384010293874187 +karman_re50,sr,260,104.0,omega,lower,0.030223144222793624 +karman_re50,sr,261,104.4,omega,front,-5.9241912577864896e-05 +karman_re50,sr,261,104.4,omega,upper,-0.040608150996675606 +karman_re50,sr,261,104.4,omega,lower,0.02801602261353672 +karman_re50,sr,262,104.8,omega,front,0.0036875718728182263 +karman_re50,sr,262,104.8,omega,upper,-0.04242084779210312 +karman_re50,sr,262,104.8,omega,lower,0.026203325818109212 +karman_re50,sr,263,105.2,omega,front,0.007296869328750918 +karman_re50,sr,263,105.2,omega,upper,-0.04360338079636237 +karman_re50,sr,263,105.2,omega,lower,0.025020792813849956 +karman_re50,sr,264,105.6,omega,front,0.01050836949325654 +karman_re50,sr,264,105.6,omega,upper,-0.043948404880819754 +karman_re50,sr,264,105.6,omega,lower,0.024675768729392575 +karman_re50,sr,265,106.0,omega,front,0.012981088845317566 +karman_re50,sr,265,106.0,omega,upper,-0.043435353155279056 +karman_re50,sr,265,106.0,omega,lower,0.02518882045493327 +karman_re50,sr,266,106.4,omega,front,0.014365388676635171 +karman_re50,sr,266,106.4,omega,upper,-0.04222071607125317 +karman_re50,sr,266,106.4,omega,lower,0.026403457538959153 +karman_re50,sr,267,106.8,omega,front,0.014439460873833687 +karman_re50,sr,267,106.8,omega,upper,-0.040517662160662445 +karman_re50,sr,267,106.8,omega,lower,0.028106511449549877 +karman_re50,sr,268,107.2,omega,front,0.013213396180938353 +karman_re50,sr,268,107.2,omega,upper,-0.038314066565003475 +karman_re50,sr,268,107.2,omega,lower,0.03031010704520885 +karman_re50,sr,269,107.6,omega,front,0.010913289068645192 +karman_re50,sr,269,107.6,omega,upper,-0.03575050547838882 +karman_re50,sr,269,107.6,omega,lower,0.032873668131823505 +karman_re50,sr,270,108.0,omega,front,0.007877284467342108 +karman_re50,sr,270,108.0,omega,upper,-0.03312993441544081 +karman_re50,sr,270,108.0,omega,lower,0.03549423919477151 +karman_re50,sr,271,108.4,omega,front,0.004420990409631248 +karman_re50,sr,271,108.4,omega,upper,-0.030622268865628546 +karman_re50,sr,271,108.4,omega,lower,0.03800190474458378 +karman_re50,sr,272,108.8,omega,front,0.000733985994090082 +karman_re50,sr,272,108.8,omega,upper,-0.02839896809121396 +karman_re50,sr,272,108.8,omega,lower,0.040225205518998365 +karman_re50,sr,273,109.2,omega,front,-0.0030158416501718218 +karman_re50,sr,273,109.2,omega,upper,-0.026505119696990955 +karman_re50,sr,273,109.2,omega,lower,0.04211905391322136 +karman_re50,sr,274,109.6,omega,front,-0.00666590967242922 +karman_re50,sr,274,109.6,omega,upper,-0.025174763596751203 +karman_re50,sr,274,109.6,omega,lower,0.04344941001346112 +karman_re50,sr,275,110.0,omega,front,-0.009972454948734857 +karman_re50,sr,275,110.0,omega,upper,-0.024669048598122603 +karman_re50,sr,275,110.0,omega,lower,0.04395512501208972 +karman_re50,sr,276,110.4,omega,front,-0.012605969088063383 +karman_re50,sr,276,110.4,omega,upper,-0.025038873529518783 +karman_re50,sr,276,110.4,omega,lower,0.04358530008069354 +karman_re50,sr,277,110.8,omega,front,-0.014209396616437721 +karman_re50,sr,277,110.8,omega,upper,-0.026130699986217167 +karman_re50,sr,277,110.8,omega,lower,0.04249347362399516 +karman_re50,sr,278,111.2,omega,front,-0.014527336082879639 +karman_re50,sr,278,111.2,omega,upper,-0.02776616587968076 +karman_re50,sr,278,111.2,omega,lower,0.04085800773053157 +karman_re50,sr,279,111.6,omega,front,-0.01352433512988804 +karman_re50,sr,279,111.6,omega,upper,-0.029891373138495984 +karman_re50,sr,279,111.6,omega,lower,0.03873280047171634 +karman_re50,sr,280,112.0,omega,front,-0.01139359374351082 +karman_re50,sr,280,112.0,omega,upper,-0.03239879661742653 +karman_re50,sr,280,112.0,omega,lower,0.036225376992785795 +karman_re50,sr,281,112.4,omega,front,-0.008465517301864322 +karman_re50,sr,281,112.4,omega,upper,-0.03502233342929023 +karman_re50,sr,281,112.4,omega,lower,0.03360184018092209 +karman_re50,sr,282,112.8,omega,front,-0.005063009613756204 +karman_re50,sr,282,112.8,omega,upper,-0.037541421984294755 +karman_re50,sr,282,112.8,omega,lower,0.03108275162591757 +karman_re50,sr,283,113.2,omega,front,-0.0014125256208115768 +karman_re50,sr,283,113.2,omega,upper,-0.03985971350413919 +karman_re50,sr,283,113.2,omega,lower,0.02876446010607314 +karman_re50,sr,284,113.6,omega,front,0.002339387288112888 +karman_re50,sr,284,113.6,omega,upper,-0.04182253535261113 +karman_re50,sr,284,113.6,omega,lower,0.026801638257601193 +karman_re50,sr,285,114.0,omega,front,0.006022440592622721 +karman_re50,sr,285,114.0,omega,upper,-0.04325805526514661 +karman_re50,sr,285,114.0,omega,lower,0.025366118345065712 +karman_re50,sr,286,114.4,omega,front,0.009412836235514291 +karman_re50,sr,286,114.4,omega,upper,-0.04392718942335553 +karman_re50,sr,286,114.4,omega,lower,0.024696984186856792 +karman_re50,sr,287,114.8,omega,front,0.012195187406221384 +karman_re50,sr,287,114.8,omega,upper,-0.0437116595584946 +karman_re50,sr,287,114.8,omega,lower,0.024912514051717724 +karman_re50,sr,288,115.2,omega,front,0.014008554091695477 +karman_re50,sr,288,115.2,omega,upper,-0.04273334455336545 +karman_re50,sr,288,115.2,omega,lower,0.025890829056846875 +karman_re50,sr,289,115.6,omega,front,0.014568146609030202 +karman_re50,sr,289,115.6,omega,upper,-0.04119162403438045 +karman_re50,sr,289,115.6,omega,lower,0.02743254957583188 +karman_re50,sr,290,116.0,omega,front,0.013794598084100877 +karman_re50,sr,290,116.0,omega,upper,-0.0391511537638353 +karman_re50,sr,290,116.0,omega,lower,0.029473019846377024 +karman_re50,sr,291,116.4,omega,front,0.011846658249087212 +karman_re50,sr,291,116.4,omega,upper,-0.03669333654615747 +karman_re50,sr,291,116.4,omega,lower,0.03193083706405485 +karman_re50,sr,292,116.8,omega,front,0.009037073791060892 +karman_re50,sr,292,116.8,omega,upper,-0.03406573020305575 +karman_re50,sr,292,116.8,omega,lower,0.03455844340715658 +karman_re50,sr,293,117.2,omega,front,0.0056970369637091055 +karman_re50,sr,293,117.2,omega,upper,-0.03151768296728862 +karman_re50,sr,293,117.2,omega,lower,0.0371064906429237 +karman_re50,sr,294,117.6,omega,front,0.002079717766984603 +karman_re50,sr,294,117.6,omega,upper,-0.029173421352472917 +karman_re50,sr,294,117.6,omega,lower,0.039450752257739405 +karman_re50,sr,295,118.0,omega,front,-0.0016625234488384284 +karman_re50,sr,295,118.0,omega,upper,-0.027124301995895893 +karman_re50,sr,295,118.0,omega,lower,0.04149987161431644 +karman_re50,sr,296,118.4,omega,front,-0.00537235860563481 +karman_re50,sr,296,118.4,omega,upper,-0.025571248296762807 +karman_re50,sr,296,118.4,omega,lower,0.043052925313449515 +karman_re50,sr,297,118.8,omega,front,-0.008837103944515576 +karman_re50,sr,297,118.8,omega,upper,-0.024752722910446497 +karman_re50,sr,297,118.8,omega,lower,0.04387145069976583 +karman_re50,sr,298,119.2,omega,front,-0.01175592191650984 +karman_re50,sr,298,119.2,omega,upper,-0.024812065293011287 +karman_re50,sr,298,119.2,omega,lower,0.04381210831720104 +karman_re50,sr,299,119.6,omega,front,-0.01376887106021746 +karman_re50,sr,299,119.6,omega,upper,-0.02566619945827489 +karman_re50,sr,299,119.6,omega,lower,0.04295797415193744 +karman_re50,sr,300,120.0,omega,front,-0.01456795879784867 +karman_re50,sr,300,120.0,omega,upper,-0.027115331671146756 +karman_re50,sr,300,120.0,omega,lower,0.04150884193906556 +karman_re50,sr,301,120.4,omega,front,-0.014034928908755857 +karman_re50,sr,301,120.4,omega,upper,-0.029068887837944698 +karman_re50,sr,301,120.4,omega,lower,0.03955528577226763 +karman_re50,sr,302,120.8,omega,front,-0.012274125822213256 +karman_re50,sr,302,120.8,omega,upper,-0.03147134542416835 +karman_re50,sr,302,120.8,omega,lower,0.03715282818604397 +karman_re50,sr,303,121.2,omega,front,-0.009593929948320484 +karman_re50,sr,303,121.2,omega,upper,-0.03407854473520332 +karman_re50,sr,303,121.2,omega,lower,0.03454562887500901 +karman_re50,sr,304,121.6,omega,front,-0.006331046553739403 +karman_re50,sr,304,121.6,omega,upper,-0.03664516291823621 +karman_re50,sr,304,121.6,omega,lower,0.03197901069197612 +karman_re50,sr,305,122.0,omega,front,-0.0027502886829331853 +karman_re50,sr,305,122.0,omega,upper,-0.03904649845263703 +karman_re50,sr,305,122.0,omega,lower,0.02957767515757529 +karman_re50,sr,306,122.4,omega,front,0.0009813125701955633 +karman_re50,sr,306,122.4,omega,upper,-0.04116124794487014 +karman_re50,sr,306,122.4,omega,lower,0.027462925665342183 +karman_re50,sr,307,122.8,omega,front,0.004710381688484179 +karman_re50,sr,307,122.8,omega,upper,-0.0428139617692711 +karman_re50,sr,307,122.8,omega,lower,0.025810211840941226 +karman_re50,sr,308,123.2,omega,front,0.008239473446947723 +karman_re50,sr,308,123.2,omega,upper,-0.04378464316810492 +karman_re50,sr,308,123.2,omega,lower,0.024839530442107408 +karman_re50,sr,309,123.6,omega,front,0.011282435275931691 +karman_re50,sr,309,123.6,omega,upper,-0.043890830072429055 +karman_re50,sr,309,123.6,omega,lower,0.02473334353778327 +karman_re50,sr,310,124.0,omega,front,0.013486671662022812 +karman_re50,sr,310,124.0,omega,upper,-0.0431692807172644 +karman_re50,sr,310,124.0,omega,lower,0.02545489289294792 +karman_re50,sr,311,124.4,omega,front,0.014521784331073786 +karman_re50,sr,311,124.4,omega,upper,-0.04180919861724073 +karman_re50,sr,311,124.4,omega,lower,0.026814974992971596 +karman_re50,sr,312,124.8,omega,front,0.014224136020204425 +karman_re50,sr,312,124.8,omega,upper,-0.03994138730615752 +karman_re50,sr,312,124.8,omega,lower,0.028682786304054804 +karman_re50,sr,313,125.2,omega,front,0.012668690918726005 +karman_re50,sr,313,125.2,omega,upper,-0.037612309168721846 +karman_re50,sr,313,125.2,omega,lower,0.03101186444149048 +karman_re50,sr,314,125.6,omega,front,0.010128332457431513 +karman_re50,sr,314,125.6,omega,upper,-0.035017411321361866 +karman_re50,sr,314,125.6,omega,lower,0.033606762288850456 +karman_re50,sr,315,126.0,omega,front,0.0069467668644731095 +karman_re50,sr,315,126.0,omega,upper,-0.03241911686936588 +karman_re50,sr,315,126.0,omega,lower,0.03620505674084644 +karman_re50,sr,316,126.4,omega,front,0.00340840897739071 +karman_re50,sr,316,126.4,omega,upper,-0.030000773952451047 +karman_re50,sr,316,126.4,omega,lower,0.03862339965776128 +karman_re50,sr,317,126.8,omega,front,-0.00030535631152843 +karman_re50,sr,317,126.8,omega,upper,-0.027820674456902967 +karman_re50,sr,317,126.8,omega,lower,0.04080349915330936 +karman_re50,sr,318,127.2,omega,front,-0.004047413101655175 +karman_re50,sr,318,127.2,omega,upper,-0.026056697851953567 +karman_re50,sr,318,127.2,omega,lower,0.042567475758258755 +karman_re50,sr,319,127.6,omega,front,-0.007630914825003876 +karman_re50,sr,319,127.6,omega,upper,-0.024948285733711214 +karman_re50,sr,319,127.6,omega,lower,0.04367588787650111 +karman_re50,sr,320,128.0,omega,front,-0.01078811669013771 +karman_re50,sr,320,128.0,omega,upper,-0.024694153936736525 +karman_re50,sr,320,128.0,omega,lower,0.0439300196734758 +karman_re50,sr,321,128.4,omega,front,-0.013167437941221166 +karman_re50,sr,321,128.4,omega,upper,-0.02527605579739773 +karman_re50,sr,321,128.4,omega,lower,0.04334811781281459 +karman_re50,sr,322,128.8,omega,front,-0.01443319916912176 +karman_re50,sr,322,128.8,omega,upper,-0.026527543986405413 +karman_re50,sr,322,128.8,omega,lower,0.042096629623806905 +karman_re50,sr,323,129.2,omega,front,-0.01437784903833378 +karman_re50,sr,323,129.2,omega,upper,-0.02830664926023332 +karman_re50,sr,323,129.2,omega,lower,0.04031752434997901 +karman_re50,sr,324,129.6,omega,front,-0.013033839811432524 +karman_re50,sr,324,129.6,omega,upper,-0.030564383475729224 +karman_re50,sr,324,129.6,omega,lower,0.0380597901344831 +karman_re50,sr,325,130.0,omega,front,-0.010645344228330172 +karman_re50,sr,325,130.0,omega,upper,-0.033130191710906295 +karman_re50,sr,325,130.0,omega,lower,0.035493981899306026 +karman_re50,sr,326,130.4,omega,front,-0.007556882365632185 +karman_re50,sr,326,130.4,omega,upper,-0.03574695206054013 +karman_re50,sr,326,130.4,omega,lower,0.032877221549672195 +karman_re50,sr,327,130.8,omega,front,-0.004066635997883131 +karman_re50,sr,327,130.8,omega,upper,-0.03819969035707689 +karman_re50,sr,327,130.8,omega,lower,0.03042448325313543 +karman_re50,sr,328,131.2,omega,front,-0.0003737877630589232 +karman_re50,sr,328,131.2,omega,upper,-0.04043230705429188 +karman_re50,sr,328,131.2,omega,lower,0.028191866555920448 +karman_re50,sr,329,131.6,omega,front,0.003380727585024293 +karman_re50,sr,329,131.6,omega,upper,-0.04227066031826528 +karman_re50,sr,329,131.6,omega,lower,0.026353513291947045 +karman_re50,sr,330,132.0,omega,front,0.0070025432334035725 +karman_re50,sr,330,132.0,omega,upper,-0.043529119844174916 +karman_re50,sr,330,132.0,omega,lower,0.025095053766037413 +karman_re50,sr,331,132.4,omega,front,0.010263272793370914 +karman_re50,sr,331,132.4,omega,upper,-0.04396677181866319 +karman_re50,sr,331,132.4,omega,lower,0.024657401791549134 +karman_re50,sr,332,132.8,omega,front,0.012812750086926169 +karman_re50,sr,332,132.8,omega,upper,-0.043515868366473545 +karman_re50,sr,332,132.8,omega,lower,0.02510830524373878 +karman_re50,sr,333,133.2,omega,front,0.01430110663677183 +karman_re50,sr,333,133.2,omega,upper,-0.04235577335375413 +karman_re50,sr,333,133.2,omega,lower,0.026268400256458192 +karman_re50,sr,334,133.6,omega,front,0.014488164797585374 +karman_re50,sr,334,133.6,omega,upper,-0.04067262406396622 +karman_re50,sr,334,133.6,omega,lower,0.027951549546246107 +karman_re50,sr,335,134.0,omega,front,0.013363706397896882 +karman_re50,sr,335,134.0,omega,upper,-0.03849522388711811 +karman_re50,sr,335,134.0,omega,lower,0.030128949723094215 +karman_re50,sr,336,134.4,omega,front,0.0111412696431217 +karman_re50,sr,336,134.4,omega,upper,-0.03597381967292427 +karman_re50,sr,336,134.4,omega,lower,0.03265035393728805 +karman_re50,sr,337,134.8,omega,front,0.00815427554623425 +karman_re50,sr,337,134.8,omega,upper,-0.033351509962511315 +karman_re50,sr,337,134.8,omega,lower,0.03527266364770101 +karman_re50,sr,338,135.2,omega,front,0.0047254328898920905 +karman_re50,sr,338,135.2,omega,upper,-0.030886503696383825 +karman_re50,sr,338,135.2,omega,lower,0.0377376699138285 +karman_re50,sr,339,135.6,omega,front,0.0010511100112575442 +karman_re50,sr,339,135.6,omega,upper,-0.028564183751677512 +karman_re50,sr,339,135.6,omega,lower,0.04005998985853482 +karman_re50,sr,340,136.0,omega,front,-0.0026974527466885213 +karman_re50,sr,340,136.0,omega,upper,-0.026627586248725566 +karman_re50,sr,340,136.0,omega,lower,0.04199658736148676 +karman_re50,sr,341,136.4,omega,front,-0.006362959580664652 +karman_re50,sr,341,136.4,omega,upper,-0.025272330341752598 +karman_re50,sr,341,136.4,omega,lower,0.04335184326845973 +karman_re50,sr,342,136.8,omega,front,-0.009715027534585625 +karman_re50,sr,342,136.8,omega,upper,-0.024672665959223065 +karman_re50,sr,342,136.8,omega,lower,0.043951507650989256 +karman_re50,sr,343,137.2,omega,front,-0.012420674931562431 +karman_re50,sr,343,137.2,omega,upper,-0.024962671442902415 +karman_re50,sr,343,137.2,omega,lower,0.04366150216730991 +karman_re50,sr,344,137.6,omega,front,-0.014124394962869016 +karman_re50,sr,344,137.6,omega,upper,-0.02600592386512675 +karman_re50,sr,344,137.6,omega,lower,0.042618249745085574 +karman_re50,sr,345,138.0,omega,front,-0.014552769180043968 +karman_re50,sr,345,138.0,omega,upper,-0.027609106028735397 +karman_re50,sr,345,138.0,omega,lower,0.04101506758147693 +karman_re50,sr,346,138.4,omega,front,-0.013656868996314664 +karman_re50,sr,346,138.4,omega,upper,-0.02969847005001347 +karman_re50,sr,346,138.4,omega,lower,0.03892570356019885 +karman_re50,sr,347,138.8,omega,front,-0.01160674345061922 +karman_re50,sr,347,138.8,omega,upper,-0.03218927894069091 +karman_re50,sr,347,138.8,omega,lower,0.03643489466952141 +karman_re50,sr,348,139.2,omega,front,-0.008730812361726901 +karman_re50,sr,348,139.2,omega,upper,-0.03480575611306688 +karman_re50,sr,348,139.2,omega,lower,0.033818417497145446 +karman_re50,sr,349,139.6,omega,front,-0.005357515972317975 +karman_re50,sr,349,139.6,omega,upper,-0.03733334150826572 +karman_re50,sr,349,139.6,omega,lower,0.0312908321019466 +karman_re50,sr,350,140.0,omega,front,-0.0017210154209344817 +karman_re50,sr,350,140.0,omega,upper,-0.03966346557460544 +karman_re50,sr,350,140.0,omega,lower,0.02896070803560688 +karman_re50,sr,351,140.4,omega,front,0.0020247566062515194 +karman_re50,sr,351,140.4,omega,upper,-0.0416760063462499 +karman_re50,sr,351,140.4,omega,lower,0.026948167263962423 +karman_re50,sr,352,140.8,omega,front,0.00572348315345845 +karman_re50,sr,352,140.8,omega,upper,-0.04317498993617296 +karman_re50,sr,352,140.8,omega,lower,0.02544918367403936 +karman_re50,sr,353,141.2,omega,front,0.009149558702859469 +karman_re50,sr,353,141.2,omega,upper,-0.04390436016001315 +karman_re50,sr,353,141.2,omega,lower,0.024719813450199166 +karman_re50,sr,354,141.6,omega,front,0.011997004873887076 +karman_re50,sr,354,141.6,omega,upper,-0.04377204178012994 +karman_re50,sr,354,141.6,omega,lower,0.024852131830082388 +karman_re50,sr,355,142.0,omega,front,0.013902914520065384 +karman_re50,sr,355,142.0,omega,upper,-0.04284339850196365 +karman_re50,sr,355,142.0,omega,lower,0.025780775108248673 +karman_re50,sr,356,142.4,omega,front,0.014574666276617946 +karman_re50,sr,356,142.4,omega,upper,-0.04133927661502289 +karman_re50,sr,356,142.4,omega,lower,0.027284896995189444 +karman_re50,sr,357,142.8,omega,front,0.013909976753288662 +karman_re50,sr,357,142.8,omega,upper,-0.039333402688605246 +karman_re50,sr,357,142.8,omega,lower,0.02929077092160708 +karman_re50,sr,358,143.2,omega,front,0.012046829892753111 +karman_re50,sr,358,143.2,omega,upper,-0.036902589315135736 +karman_re50,sr,358,143.2,omega,lower,0.031721584295076585 +karman_re50,sr,359,143.6,omega,front,0.009311908593349936 +karman_re50,sr,359,143.6,omega,upper,-0.03429158081324498 +karman_re50,sr,359,143.6,omega,lower,0.03433259279696734 +karman_re50,sr,360,144.0,omega,front,0.005993449738962845 +karman_re50,sr,360,144.0,omega,upper,-0.031739337682194654 +karman_re50,sr,360,144.0,omega,lower,0.03688483592801767 +karman_re50,sr,361,144.4,omega,front,0.002393350757443842 +karman_re50,sr,361,144.4,omega,upper,-0.029369369357706666 +karman_re50,sr,361,144.4,omega,lower,0.03925480425250566 +karman_re50,sr,362,144.8,omega,front,-0.0013419159147737654 +karman_re50,sr,362,144.8,omega,upper,-0.027277665317905264 +karman_re50,sr,362,144.8,omega,lower,0.041346508292307065 +karman_re50,sr,363,145.2,omega,front,-0.005062932358092879 +karman_re50,sr,363,145.2,omega,upper,-0.025676785111360553 +karman_re50,sr,363,145.2,omega,lower,0.04294738849885177 +karman_re50,sr,364,145.6,omega,front,-0.008559079904125008 +karman_re50,sr,364,145.6,omega,upper,-0.024789310630129315 +karman_re50,sr,364,145.6,omega,lower,0.043834862980083 +karman_re50,sr,365,146.0,omega,front,-0.011537892226668066 +karman_re50,sr,365,146.0,omega,upper,-0.02477068944173715 +karman_re50,sr,365,146.0,omega,lower,0.04385348416847517 +karman_re50,sr,366,146.4,omega,front,-0.01364347268669485 +karman_re50,sr,366,146.4,omega,upper,-0.025572991511602885 +karman_re50,sr,366,146.4,omega,lower,0.04305118209860944 +karman_re50,sr,367,146.8,omega,front,-0.014551493129604907 +karman_re50,sr,367,146.8,omega,upper,-0.026965167034184556 +karman_re50,sr,367,146.8,omega,lower,0.041659006576027766 +karman_re50,sr,368,147.2,omega,front,-0.01412584594854572 +karman_re50,sr,368,147.2,omega,upper,-0.028883737107510826 +karman_re50,sr,368,147.2,omega,lower,0.039740436502701496 +karman_re50,sr,369,147.6,omega,front,-0.012461018815746587 +karman_re50,sr,369,147.6,omega,upper,-0.031259872910878436 +karman_re50,sr,369,147.6,omega,lower,0.037364300699333886 +karman_re50,sr,370,148.0,omega,front,-0.009844036056375459 +karman_re50,sr,370,148.0,omega,upper,-0.03386814251015146 +karman_re50,sr,370,148.0,omega,lower,0.03475603110006086 +karman_re50,sr,371,148.4,omega,front,-0.006620479568410454 +karman_re50,sr,371,148.4,omega,upper,-0.036432813468921944 +karman_re50,sr,371,148.4,omega,lower,0.03219136014129038 +karman_re50,sr,372,148.8,omega,front,-0.0030551504083669873 +karman_re50,sr,372,148.8,omega,upper,-0.03884493866583076 +karman_re50,sr,372,148.8,omega,lower,0.029779234944381564 +karman_re50,sr,373,149.2,omega,front,0.0006663367006509982 +karman_re50,sr,373,149.2,omega,upper,-0.04100125431663496 +karman_re50,sr,373,149.2,omega,lower,0.027622919293577363 +karman_re50,sr,374,149.6,omega,front,0.004402357142833728 +karman_re50,sr,374,149.6,omega,upper,-0.042708117418081476 +karman_re50,sr,374,149.6,omega,lower,0.02591605619213085 +karman_re50,sr,375,150.0,omega,front,0.00795864733476839 +karman_re50,sr,375,150.0,omega,upper,-0.04373601280267097 +karman_re50,sr,375,150.0,omega,lower,0.02488816080754136 +karman_re50,sr,376,150.4,omega,front,0.011056072630404359 +karman_re50,sr,376,150.4,omega,upper,-0.0439138298511095 +karman_re50,sr,376,150.4,omega,lower,0.02471034375910283 +karman_re50,sr,377,150.8,omega,front,0.013347447188753383 +karman_re50,sr,377,150.8,omega,upper,-0.04326797560392213 +karman_re50,sr,377,150.8,omega,lower,0.02535619800629019 +karman_re50,sr,378,151.2,omega,front,0.01448668850401896 +karman_re50,sr,378,151.2,omega,upper,-0.04194306076991682 +karman_re50,sr,378,151.2,omega,lower,0.026681112840295493 +karman_re50,sr,379,151.6,omega,front,0.014300852669878602 +karman_re50,sr,379,151.6,omega,upper,-0.04011140632279614 +karman_re50,sr,379,151.6,omega,lower,0.028512767287416186 +karman_re50,sr,380,152.0,omega,front,0.012842145866821404 +karman_re50,sr,380,152.0,omega,upper,-0.03781329651117888 +karman_re50,sr,380,152.0,omega,lower,0.03081087709903344 +karman_re50,sr,381,152.4,omega,front,0.010370565591796358 +karman_re50,sr,381,152.4,omega,upper,-0.03523570901554966 +karman_re50,sr,381,152.4,omega,lower,0.03338846459466266 +karman_re50,sr,382,152.8,omega,front,0.007231593399218879 +karman_re50,sr,382,152.8,omega,upper,-0.032643699271728235 +karman_re50,sr,382,152.8,omega,lower,0.03598047433848409 +karman_re50,sr,383,153.2,omega,front,0.0037151196217670517 +karman_re50,sr,383,153.2,omega,upper,-0.030198375347480714 +karman_re50,sr,383,153.2,omega,lower,0.03842579826273161 +karman_re50,sr,384,153.6,omega,front,1.1479181474525441e-05 +karman_re50,sr,384,153.6,omega,upper,-0.027989221256292364 +karman_re50,sr,384,153.6,omega,lower,0.040634952353919965 +karman_re50,sr,385,154.0,omega,front,-0.0037342417304342323 +karman_re50,sr,385,154.0,omega,upper,-0.02618116643645211 +karman_re50,sr,385,154.0,omega,lower,0.04244300717376022 +karman_re50,sr,386,154.4,omega,front,-0.0073404384148798695 +karman_re50,sr,386,154.4,omega,upper,-0.02501507902756627 +karman_re50,sr,386,154.4,omega,lower,0.04360909458264605 +karman_re50,sr,387,154.8,omega,front,-0.010544763570653681 +karman_re50,sr,387,154.8,omega,upper,-0.024675053173956036 +karman_re50,sr,387,154.8,omega,lower,0.04394912043625629 +karman_re50,sr,388,155.2,omega,front,-0.013006517946499312 +karman_re50,sr,388,155.2,omega,upper,-0.02518362125958054 +karman_re50,sr,388,155.2,omega,lower,0.04344055235063179 +karman_re50,sr,389,155.6,omega,front,-0.014375270741569818 +karman_re50,sr,389,155.6,omega,upper,-0.026417984836779287 +karman_re50,sr,389,155.6,omega,lower,0.04220618877343304 +karman_re50,sr,390,156.0,omega,front,-0.014432107377879711 +karman_re50,sr,390,156.0,omega,upper,-0.02814426232743167 +karman_re50,sr,390,156.0,omega,lower,0.04047991128278065 +karman_re50,sr,391,156.4,omega,front,-0.013189220930292414 +karman_re50,sr,391,156.4,omega,upper,-0.030359410337244822 +karman_re50,sr,391,156.4,omega,lower,0.0382647632729675 +karman_re50,sr,392,156.8,omega,front,-0.010876197026289731 +karman_re50,sr,392,156.8,omega,upper,-0.0329099894212906 +karman_re50,sr,392,156.8,omega,lower,0.03571418418892173 +karman_re50,sr,393,157.2,omega,front,-0.007833149061681137 +karman_re50,sr,393,157.2,omega,upper,-0.035517698755881386 +karman_re50,sr,393,157.2,omega,lower,0.033106474854330936 +karman_re50,sr,394,157.6,omega,front,-0.004369195371350422 +karman_re50,sr,394,157.6,omega,upper,-0.037997891544305655 +karman_re50,sr,394,157.6,omega,lower,0.03062628206590667 +karman_re50,sr,395,158.0,omega,front,-0.0006879465304768626 +karman_re50,sr,395,158.0,omega,upper,-0.04025872396259594 +karman_re50,sr,395,158.0,omega,lower,0.028365449647616385 +karman_re50,sr,396,158.4,omega,front,0.003061448576420009 +karman_re50,sr,396,158.4,omega,upper,-0.04215472511296207 +karman_re50,sr,396,158.4,omega,lower,0.026469448497250258 +karman_re50,sr,397,158.8,omega,front,0.006710536139950179 +karman_re50,sr,397,158.8,omega,upper,-0.043459194853441206 +karman_re50,sr,397,158.8,omega,lower,0.025164978756771112 +karman_re50,sr,398,159.2,omega,front,0.01001125371965251 +karman_re50,sr,398,159.2,omega,upper,-0.043952719527856246 +karman_re50,sr,398,159.2,omega,lower,0.024671454082356076 +karman_re50,sr,399,159.6,omega,front,0.012634349000385696 +karman_re50,sr,399,159.6,omega,upper,-0.04358320213305194 +karman_re50,sr,399,159.6,omega,lower,0.025040971477160383 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_manifest.json b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_manifest.json new file mode 100644 index 0000000..534a1b3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re50", + "source": "sr", + "input": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_wide.csv new file mode 100644 index 0000000..7c54a08 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/sr_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re50,sr,0,0.0,0.9807555675506592,-0.14188915491104126,0.9638603329658508,-0.1766003966331482,1.038811206817627,-0.1813851147890091,0.0004848707758355886,-0.0007217866368591785,-0.0023788136895745993,0.0025164219550788403,0.001971409423276782,-0.003573086578398943,1.1303061206045322,-4.403400662544717,2.459016698476515,0.011303061206045321,-0.044034006625447174,0.02459016698476515 +karman_re50,sr,1,0.4,0.9993488788604736,-0.18522809445858002,0.9733971357345581,-0.2140149623155594,1.0306259393692017,-0.2038445621728897,0.0006915788981132209,-0.0015374699141830206,-0.0021267395932227373,0.0027440411504358053,0.0011597276898100972,-0.0038373819552361965,0.8295689151963589,-4.122152054950243,2.740265306070989,0.00829568915196359,-0.041221520549502434,0.02740265306070989 +karman_re50,sr,2,0.8,1.0185763835906982,-0.22976332902908325,0.9767008423805237,-0.24325250089168549,1.0241382122039795,-0.21258340775966644,0.0005649439408443868,-0.0017540749395266175,-0.0017395839095115662,0.0033599447924643755,0.0006580029148608446,-0.0037202853709459305,0.6267152346185917,-4.1461342760204705,2.716283085000762,0.006267152346185917,-0.0414613427602047,0.027162830850007622 +karman_re50,sr,3,1.2,1.037389874458313,-0.27148139476776123,0.9719898700714111,-0.26361122727394104,1.0164395570755005,-0.21198219060897827,0.00031263180426321924,-0.0021424838341772556,-0.0006292805192060769,0.004033940844237804,-0.00012232566950842738,-0.0034653404727578163,0.45720953831262817,-3.666832103258771,3.1955852577624606,0.0045720953831262815,-0.036668321032587714,0.03195585257762461 +karman_re50,sr,4,1.6,1.0547292232513428,-0.2989649176597595,0.9588329792022705,-0.2685467302799225,1.0063133239746094,-0.20132268965244293,0.00016251843771897256,-0.002446537371724844,0.0007147158612497151,0.004283574875444174,-0.0010912714060395956,-0.0033088638447225094,0.09667411850091466,-3.059406075684512,3.80301128533672,0.0009667411850091466,-0.03059406075684512,0.0380301128533672 +karman_re50,sr,5,2.0,1.0700589418411255,-0.2942734658718109,0.9405279755592346,-0.2475939393043518,0.9944169521331787,-0.17692986130714417,0.0003604751836974174,-0.0028330215718597174,0.0018389183096587658,0.004401225131005049,-0.00224778288975358,-0.003188615432009101,-0.3443940366547387,-2.7938540139426458,4.0685633470785865,-0.0034439403665473874,-0.027938540139426458,0.04068563347078587 +karman_re50,sr,6,2.4,1.082525610923767,-0.24658095836639404,0.9232930541038513,-0.1945764571428299,0.9815769195556641,-0.1359853446483612,0.0009917023126035929,-0.0032938020303845406,0.0026970673352479935,0.004536184016615152,-0.0035255008842796087,-0.003052883083000779,-0.7793164149932601,-2.638294241234772,4.22412311978646,-0.007793164149932601,-0.026382942412347718,0.042241231197864604 +karman_re50,sr,7,2.8,1.0891997814178467,-0.16284368932247162,0.9134936332702637,-0.11494333297014236,0.9684023857116699,-0.07983505725860596,0.0018848608015105128,-0.0035916147753596306,0.003218134632334113,0.004549957811832428,-0.004730358254164457,-0.002933704759925604,-1.186617107605167,-2.461291708027199,4.4011256529940335,-0.01186617107605167,-0.024612917080271992,0.04401125652994033 +karman_re50,sr,8,3.2,1.0863621234893799,-0.060802385210990906,0.9157962799072266,-0.026246700435876846,0.9582664370536804,-0.016641998663544655,0.002762638730928302,-0.0035820312332361937,0.003379828529432416,0.004365073516964912,-0.0056011914275586605,-0.0028847649227827787,-1.5157435492950229,-2.3743555286335467,4.488061832387686,-0.01515743549295023,-0.02374355528633547,0.04488061832387686 +karman_re50,sr,9,3.6,1.0728837251663208,0.040080633014440536,0.9284433722496033,0.05383552610874176,0.9555878639221191,0.042713455855846405,0.0033045881427824497,-0.003177619306370616,0.0032558434177190065,0.004054582677781582,-0.005872802343219519,-0.0028547164984047413,-1.7126420392250967,-2.4632483715315416,4.399168989489691,-0.017126420392250968,-0.024632483715315418,0.04399168989489691 +karman_re50,sr,10,4.0,1.0544356107711792,0.12058240175247192,0.944069504737854,0.11857210844755173,0.9620276689529419,0.09292936325073242,0.003283361904323101,-0.002393249189481139,0.002906652633100748,0.003719678847119212,-0.005504318047314882,-0.002846213523298502,-1.7407936477423442,-2.6466271126620344,4.215790248359197,-0.017407936477423443,-0.026466271126620346,0.042157902483591976 +karman_re50,sr,11,4.4,1.0395725965499878,0.1707296371459961,0.9575911164283752,0.1688423901796341,0.9759668707847595,0.13680221140384674,0.0027421710547059774,-0.0013470340054482222,0.0023758031893521547,0.0034795620013028383,-0.004658157005906105,-0.002941592363640666,-1.6039360837580907,-2.860057659668825,4.002359701352407,-0.016039360837580906,-0.028600576596688253,0.040023597013524065 +karman_re50,sr,12,4.8,1.0304105281829834,0.19559282064437866,0.967050313949585,0.20745432376861572,0.9937362670898438,0.17983531951904297,0.0018996725557371974,-0.0002710053522605449,0.0017323181964457035,0.0033590474631637335,-0.0035164018627256155,-0.0032218059059232473,-1.3413460821070564,-3.07943523358245,3.7829821274387823,-0.013413460821070564,-0.0307943523358245,0.037829821274387825 +karman_re50,sr,13,5.2,1.02337646484375,0.20527128875255585,0.9705027937889099,0.23762395977973938,1.0124855041503906,0.22423091530799866,0.0010593191254884005,0.0006633868906646967,0.0010234613437205553,0.0032982034608721733,-0.0022151204757392406,-0.0036084256134927273,-1.0009084345106494,-3.3414676760515656,3.5209496849696675,-0.010009084345106493,-0.033414676760515655,0.035209496849696674 +karman_re50,sr,14,5.6,1.0152876377105713,0.2055377960205078,0.9660864472389221,0.2598292827606201,1.031045913696289,0.2671930193901062,0.0004484451492317021,0.0014112686039879918,0.00023452988534700125,0.003228812012821436,-0.0008767882827669382,-0.003955189138650894,-0.6175836818132637,-3.634060121002759,3.228357240018473,-0.006175836818132638,-0.03634060121002759,0.03228357240018473 +karman_re50,sr,15,6.0,1.0046972036361694,0.19572757184505463,0.9530709981918335,0.26771610975265503,1.048326015472412,0.29792797565460205,0.00019006524235010147,0.002020052634179592,-0.0006688091671094298,0.0031333137303590775,0.0003725596470758319,-0.004220988601446152,-0.21192361477662475,-3.9061800681770356,2.9562372928441967,-0.0021192361477662476,-0.039061800681770356,0.029562372928441966 +karman_re50,sr,16,6.4,0.9922588467597961,0.17187167704105377,0.9341819882392883,0.2506471872329712,1.0636323690414429,0.2989245355129242,0.0003268023137934506,0.002577344188466668,-0.0017090736655518413,0.0030578244477510452,0.0014322074130177498,-0.004418731667101383,0.19858457258224302,-4.142429373563407,2.7199879874578254,0.0019858457258224303,-0.04142429373563407,0.027199879874578253 +karman_re50,sr,17,6.8,0.9791054725646973,0.12990155816078186,0.9148423075675964,0.20018629729747772,1.0761128664016724,0.25690263509750366,0.0008315113373100758,0.0030665071681141853,-0.0028198659420013428,0.0030261140782386065,0.0022292095236480236,-0.004556683357805014,0.5990288472739423,-4.321093517842128,2.541323843179105,0.005990288472739424,-0.04321093517842128,0.025413238431791052 +karman_re50,sr,18,7.2,0.9664737582206726,0.07123477756977081,0.9004916548728943,0.11850419640541077,1.083214521408081,0.17627966403961182,0.0015644073719158769,0.0034204500261694193,-0.0038612664211541414,0.003057557623833418,0.002723577432334423,-0.0045631034299731255,0.9628370656230274,-4.432033993952453,2.430383367068779,0.009628370656230274,-0.044320339939524535,0.02430383367068779 +karman_re50,sr,19,7.6,0.958240807056427,0.0050899251364171505,0.8957052826881409,0.019051970914006233,1.0814908742904663,0.07382450252771378,0.002278320724144578,0.0034913993440568447,-0.00458779139444232,0.0031054974533617496,0.002923266962170601,-0.004413525573909283,1.255701519340105,-4.415671372560513,2.4467459884607194,0.012557015193401052,-0.04415671372560513,0.024467459884607193 +karman_re50,sr,20,8.0,0.9589338898658752,-0.05602492392063141,0.9024300575256348,-0.07950851321220398,1.0682178735733032,-0.032397929579019547,0.002713120775297284,0.0031595886684954166,-0.004809268284589052,0.0031144649256020784,0.0028623330872505903,-0.004123259335756302,1.4323266580200338,-4.2865163566901465,2.5759010043310857,0.014323266580200339,-0.04286516356690147,0.025759010043310857 +karman_re50,sr,21,8.4,0.9695799946784973,-0.1065339669585228,0.9195576310157776,-0.16128326952457428,1.0438237190246582,-0.12749157845973969,0.002709995023906231,0.0024111666716635227,-0.004504930227994919,0.003103528870269656,0.0025641382671892643,-0.0037828506901860237,1.4629415234025795,-4.090850158501726,2.7715672025195057,0.014629415234025795,-0.040908501585017264,0.027715672025195058 +karman_re50,sr,22,8.8,0.9877662658691406,-0.150024875998497,0.9435343742370605,-0.21930693089962006,1.0129508972167969,-0.20018544793128967,0.002281779423356056,0.0013906820677220821,-0.0037871086969971657,0.003183291759341955,0.002072480507194996,-0.0034915844444185495,1.3480410845307016,-3.8754110321599846,2.9870063288612476,0.013480410845307017,-0.038754110321599845,0.029870063288612476 +karman_re50,sr,23,9.2,1.0097154378890991,-0.1918281614780426,0.9677979350090027,-0.25751829147338867,0.9818364977836609,-0.24235902726650238,0.0015867053298279643,0.00031709621543996036,-0.0027866088785231113,0.0034103873185813427,0.0014590343926101923,-0.0033064966555684805,1.1173985640547661,-3.632798459746886,3.229618901274347,0.011173985640547661,-0.03632798459746886,0.03229618901274347 +karman_re50,sr,24,9.6,1.0322637557983398,-0.2335677295923233,0.9854703545570374,-0.282747745513916,0.9543381333351135,-0.25175732374191284,0.0008852508035488427,-0.0006382327410392463,-0.0016324425814673305,0.0037102848291397095,0.0007627673330716789,-0.003191727912053466,0.8096259873062518,-3.363275522069736,3.4991418389514966,0.008096259873062518,-0.03363275522069736,0.034991418389514965 +karman_re50,sr,25,10.0,1.0534456968307495,-0.2709603011608124,0.9926975965499878,-0.2936691641807556,0.9311330318450928,-0.23142887651920319,0.00040493012056685984,-0.0014254988636821508,-0.00045558487181551754,0.003979083616286516,-2.8385395125951618e-05,-0.003090272657573223,0.4567562717879321,-3.0921290347808292,3.770288326240403,0.004567562717879321,-0.030921290347808293,0.03770288326240403 +karman_re50,sr,26,10.4,1.070772647857666,-0.29250168800354004,0.9880955219268799,-0.2807639539241791,0.9132492542266846,-0.1878206431865692,0.0002736505994107574,-0.0020905795972794294,0.0006376325618475676,0.004186341073364019,-0.0009459614520892501,-0.002996095223352313,0.08146511046821397,-2.850023288760973,4.012394072260259,0.0008146511046821398,-0.028500232887609733,0.040123940722602586 +karman_re50,sr,27,10.8,1.0817545652389526,-0.2805456221103668,0.9731497764587402,-0.23251654207706451,0.905626654624939,-0.13072985410690308,0.0005119092529639602,-0.002683907514438033,0.0015601899940520525,0.004357286263257265,-0.0019770674407482147,-0.002945322310552001,-0.30198459577213277,-2.652917758424245,4.209499602596987,-0.0030198459577213278,-0.02652917758424245,0.04209499602596987 +karman_re50,sr,28,11.2,1.0844169855117798,-0.22399389743804932,0.9514759182929993,-0.14493641257286072,0.9116196632385254,-0.07122398167848587,0.0010598149383440614,-0.0032167616300284863,0.0022631241008639336,0.004471773747354746,-0.0030500548891723156,-0.002970537170767784,-0.6745398424022769,-2.507938310197719,4.354479050823513,-0.00674539842402277,-0.025079383101977187,0.04354479050823513 +karman_re50,sr,29,11.6,1.0764137506484985,-0.12855567038059235,0.9289678931236267,-0.02898857370018959,0.9261384606361389,-0.013286687433719635,0.0017694121925160289,-0.0036038951948285103,0.002716735005378723,0.004487926140427589,-0.004010350443422794,-0.0030396031215786934,-1.0132004765427851,-2.449563754422311,4.4128536065989215,-0.010132004765427851,-0.024495637544223108,0.04412853606598922 +karman_re50,sr,30,12.0,1.0564050674438477,-0.012641149573028088,0.917928159236908,0.08591799437999725,0.9423683881759644,0.04334839805960655,0.0024186584632843733,-0.003707821946591139,0.002923630177974701,0.0043573928996920586,-0.00466349720954895,-0.0030891934875398874,-1.2828263823318384,-2.484163447958251,4.378253913062981,-0.012828263823318385,-0.02484163447958251,0.04378253913062981 +karman_re50,sr,31,12.4,1.025545358657837,0.10180319100618362,0.9282885789871216,0.17042580246925354,0.9597868323326111,0.09409397840499878,0.0028009512461721897,-0.0034045223146677017,0.0028875377029180527,0.00409075478091836,-0.00487470394000411,-0.0030716329347342253,-1.4468326964037272,-2.6019446340418977,4.2604727269793345,-0.014468326964037272,-0.026019446340418976,0.04260472726979335 +karman_re50,sr,32,12.8,0.9885862469673157,0.19460713863372803,0.9540547728538513,0.22249755263328552,0.9802570939064026,0.13559111952781677,0.00279920338653028,-0.002660637255758047,0.002615254605188966,0.003754980629310012,-0.004619809798896313,-0.003042454831302166,-1.480226234877009,-2.7648141861486204,4.097603174872612,-0.014802262348770091,-0.027648141861486203,0.04097603174872612 +karman_re50,sr,33,13.2,0.9544200897216797,0.2509264051914215,0.9833614826202393,0.2558962106704712,1.0037437677383423,0.17142684757709503,0.002399756573140621,-0.0016400858294218779,0.0021496114786714315,0.0034534824080765247,-0.003969406709074974,-0.003118071472272277,-1.3796957933816818,-2.965294549966578,3.897122811054654,-0.013796957933816818,-0.02965294549966578,0.03897122811054654 +karman_re50,sr,34,13.6,0.9282392263412476,0.2678932845592499,1.0089409351348877,0.2796865999698639,1.028436303138733,0.20677345991134644,0.00172426865901798,-0.0005394452600739896,0.0015629552071914077,0.003260276047512889,-0.0030108708888292313,-0.0033389318268746138,-1.166870560059248,-3.211886524081864,3.6505308369393683,-0.01166870560059248,-0.03211886524081864,0.03650530836939368 +karman_re50,sr,35,14.0,0.9076306819915771,0.25087618827819824,1.0261670351028442,0.29390713572502136,1.0520588159561157,0.24223506450653076,0.0009960628813132644,0.0004421584599185735,0.0008913099300116301,0.0031503255013376474,-0.0018808790482580662,-0.0036330202128738165,-0.8722090463736327,-3.48264097833905,3.3797763826821825,-0.008722090463736327,-0.0348264097833905,0.03379776382682183 +karman_re50,sr,36,14.4,0.8906084299087524,0.20700766146183014,1.031571388244629,0.2914392352104187,1.0726460218429565,0.2734035551548004,0.0004644929722417146,0.0012719978112727404,0.00014017202192917466,0.003063719253987074,-0.000706867256667465,-0.003903493518009782,-0.5286445646037514,-3.746838356618292,3.1155790044029406,-0.005286445646037514,-0.03746838356618292,0.031155790044029408 +karman_re50,sr,37,14.8,0.8810798525810242,0.14685650169849396,1.02247953414917,0.2608984410762787,1.0872793197631836,0.28871750831604004,0.0002659146557562053,0.001960577443242073,-0.0007368713850155473,0.0029812476132065058,0.0003960320318583399,-0.004119084682315588,-0.1615267624776023,-3.980329424165558,2.882087936855674,-0.0016152676247760231,-0.03980329424165558,0.02882087936855674 +karman_re50,sr,38,15.2,0.8857917785644531,0.08639649301767349,0.9990158081054688,0.19372086226940155,1.0929595232009888,0.27176472544670105,0.0004309802025090903,0.002570715034380555,-0.0017299242317676544,0.0029386235401034355,0.0013472817372530699,-0.00429941713809967,0.2160398292634483,-4.175229978036881,2.6871873829843516,0.002160398292634483,-0.04175229978036881,0.026871873829843518 +karman_re50,sr,39,15.6,0.9044836163520813,0.03531886264681816,0.9664199948310852,0.09273230284452438,1.0878279209136963,0.21239374577999115,0.0009127702796831727,0.0031129673589020967,-0.0027785361744463444,0.0029620144050568342,0.00209138635545969,-0.004433663096278906,0.5868099983228363,-4.321019221873398,2.541398139147835,0.005868099983228363,-0.04321019221873398,0.025413981391478352 +karman_re50,sr,40,16.0,0.9271204471588135,-0.01200849749147892,0.937571108341217,-0.021072397008538246,1.0704352855682373,0.11636623740196228,0.0015818935353308916,0.003529803128913045,-0.0037524413783103228,0.0030343912076205015,0.002590470016002655,-0.004473437555134296,0.9286733681060453,-4.393506357807421,2.4689110032138104,0.009286733681060453,-0.04393506357807422,0.024689110032138105 +karman_re50,sr,41,16.4,0.9465936422348022,-0.06147903576493263,0.9292028546333313,-0.11676068603992462,1.0406789779663086,0.0015837122919037938,0.0022376757115125656,0.0036910497583448887,-0.004465505480766296,0.0030892903450876474,0.002845549490302801,-0.004373795352876186,1.2095660355953348,-4.372187982157012,2.4902293788642207,0.012095660355953348,-0.04372187982157012,0.024902293788642206 +karman_re50,sr,42,16.8,0.9650903940200806,-0.10716679692268372,0.9444397687911987,-0.18141819536685944,1.001634955406189,-0.11054270714521408,0.0026695847045630217,0.0034509017132222652,-0.004762010183185339,0.00308376457542181,0.002857054118067026,-0.004129102453589439,1.3941868690305819,-4.271134807475454,2.5912825535457786,0.013941868690305819,-0.04271134807475454,0.025912825535457786 +karman_re50,sr,43,17.2,0.985873281955719,-0.14362972974777222,0.9708184003829956,-0.22443285584449768,0.9605215191841125,-0.1992550641298294,0.0027481105644255877,0.002793353982269764,-0.004597808234393597,0.003052293322980404,0.002633822849020362,-0.0038004638627171516,1.4529229290629169,-4.114745599444543,2.7476717615766892,0.01452922929062917,-0.04114745599444543,0.027476717615766894 +karman_re50,sr,44,17.6,1.0092380046844482,-0.1749456375837326,0.998504638671875,-0.2556396722793579,0.9266161918640137,-0.2511207163333893,0.002427292987704277,0.0018015004461631179,-0.004019306041300297,0.0031058373861014843,0.002204249380156398,-0.0034871927928179502,1.379041073834904,-3.920430583064483,2.9419867779567492,0.01379041073834904,-0.03920430583064483,0.029419867779567493 +karman_re50,sr,45,18.0,1.0336674451828003,-0.20631198585033417,1.0231144428253174,-0.27817925810813904,0.9029396176338196,-0.2643483877182007,0.0018043885938823223,0.0007137848297134042,-0.0031232559122145176,0.0032981790136545897,0.00164216966368258,-0.0032713692635297775,1.186805362784764,-3.6805735080654127,3.181843852955819,0.011868053627847638,-0.03680573508065413,0.03181843852955819 +karman_re50,sr,46,18.4,1.0570026636123657,-0.23879116773605347,1.0402125120162964,-0.2908637523651123,0.8852762579917908,-0.24428986012935638,0.001086066011339426,-0.0002999799035023898,-0.002029377268627286,0.003574323607608676,0.0009903813479468226,-0.00315107312053442,0.9087462465470554,-3.4136780290529027,3.44873933196833,0.009087462465470554,-0.03413678029052903,0.0344873933196833 +karman_re50,sr,47,18.8,1.0772709846496582,-0.26831915974617004,1.0454412698745728,-0.2864902913570404,0.8715361952781677,-0.19758503139019012,0.0005237877485342324,-0.0011533936485648155,-0.0008725470979698002,0.0038466460537165403,0.0002505327283870429,-0.0030587362125515938,0.5758550342638078,-3.154449041436648,3.7079683195845843,0.005758550342638078,-0.03154449041436648,0.03707968319584584 +karman_re50,sr,48,19.2,1.0915937423706055,-0.28464844822883606,1.0351887941360474,-0.25451144576072693,0.8660828471183777,-0.13610021770000458,0.0002766922989394516,-0.0018656376050785184,0.00023503141710534692,0.00406751548871398,-0.0006046551279723644,-0.002974380739033222,0.21416651262723194,-2.9160016106475615,3.946415750373671,0.0021416651262723195,-0.029160016106475617,0.03946415750373671 +karman_re50,sr,49,19.6,1.096798300743103,-0.27205008268356323,1.008887529373169,-0.18732887506484985,0.8754928112030029,-0.07739464193582535,0.0003902918833773583,-0.0024865635205060244,0.0012087682262063026,0.004256154876202345,-0.0015782697591930628,-0.002924148226156831,-0.16012462768800823,-2.716417822567004,4.145999538454228,-0.0016012462768800822,-0.027164178225670042,0.04145999538454228 +karman_re50,sr,50,20.0,1.0908608436584473,-0.2188996523618698,0.9722540974617004,-0.08857492357492447,0.8989359140396118,-0.03127225860953331,0.0008293635328300297,-0.003044511191546917,0.0019850311800837517,0.004402303136885166,-0.002623223466798663,-0.0029436666518449783,-0.5314762066636523,-2.5602216622581224,4.30219569876311,-0.0053147620666365225,-0.025602216622581223,0.0430219569876311 +karman_re50,sr,51,20.4,1.0725560188293457,-0.12849575281143188,0.9395541548728943,0.020886952057480812,0.9253630638122559,0.010148473083972931,0.0014804978854954243,-0.0034897523000836372,0.0025252443738281727,0.004466335289180279,-0.003622004296630621,-0.003011896274983883,-0.8787744235621755,-2.4774195663376193,4.3849977946836125,-0.008787744235621755,-0.024774195663376193,0.04384997794683613 +karman_re50,sr,52,20.8,1.041938304901123,-0.016926541924476624,0.9284335970878601,0.11233591288328171,0.946541965007782,0.0563361756503582,0.002151643857359886,-0.0037053367123007774,0.002820698544383049,0.004393081646412611,-0.004392936360090971,-0.0030736573971807957,-1.172253992198625,-2.4801642542971813,4.382253106724051,-0.01172253992198625,-0.024801642542971816,0.04382253106724052 +karman_re50,sr,53,21.2,1.0020231008529663,0.09483689069747925,0.9423509240150452,0.1743384599685669,0.9648457169532776,0.10171901434659958,0.002635893877595663,-0.0035454421304166317,0.0028766097966581583,0.004172532353550196,-0.004770806524902582,-0.003076770342886448,-1.3756092795904247,-2.568449179565792,4.29396818145544,-0.013756092795904246,-0.025684491795657922,0.0429396818145544 +karman_re50,sr,54,21.6,0.9597296714782715,0.18631944060325623,0.9683588147163391,0.2168213129043579,0.9847540259361267,0.13880109786987305,0.0027785899583250284,-0.0029420482460409403,0.0026961425319314003,0.0038544752169400454,-0.004685195162892342,-0.0030412706546485424,-1.4583295379012917,-2.7146998805359583,4.147717480485274,-0.014583295379012918,-0.027146998805359583,0.04147717480485274 +karman_re50,sr,55,22.0,0.9243485331535339,0.242812380194664,0.9959338903427124,0.24866899847984314,1.0073177814483643,0.16991466283798218,0.002529863500967622,-0.002006154041737318,0.00230198260396719,0.0035329130478203297,-0.004176594782620668,-0.0030789868906140327,-1.4075894834229203,-2.8994616228548615,3.962955738166371,-0.014075894834229203,-0.028994616228548615,0.03962955738166371 +karman_re50,sr,56,22.4,0.8997859954833984,0.26107335090637207,1.0208505392074585,0.2722744047641754,1.0312097072601318,0.20071923732757568,0.0019468424143269658,-0.000918322301004082,0.00175873760599643,0.003303905948996544,-0.0033266607206314802,-0.0032504091504961252,-1.2354369592516485,-3.13439050009206,3.728026860929172,-0.012354369592516486,-0.0313439050009206,0.03728026860929172 +karman_re50,sr,57,22.8,0.8822476863861084,0.2455672025680542,1.0389111042022705,0.2864750325679779,1.0542489290237427,0.2328566610813141,0.0012208211701363325,0.0001158841623691842,0.0011229418450966477,0.0031691654585301876,-0.0022583540994673967,-0.0035215704701840878,-0.9697636796373252,-3.3962276111515846,3.466189749869648,-0.009697636796373253,-0.033962276111515845,0.034661897498696484 +karman_re50,sr,58,23.2,0.8688237071037292,0.2027217447757721,1.045652985572815,0.285049706697464,1.0744538307189941,0.2631833255290985,0.0006075145793147385,0.0010073884623125196,0.0004014955193269998,0.0030777319334447384,-0.0011016377247869968,-0.0037957325112074614,-0.6447986542123068,-3.6616431083771572,3.200774252644075,-0.006447986542123068,-0.03661643108377157,0.03200774252644075 +karman_re50,sr,59,23.6,0.8628787994384766,0.14335842430591583,1.0372958183288574,0.2579006552696228,1.0891687870025635,0.2825780510902405,0.0002924170985352248,0.0017372570000588894,-0.0004277900734450668,0.0029888288117945194,2.4611272237962112e-05,-0.00402913149446249,-0.2866410715881441,-3.900702719679079,2.961714641342153,-0.002866410715881441,-0.03900702719679079,0.02961714641342153 +karman_re50,sr,60,24.0,0.8709190487861633,0.08445103466510773,1.0127297639846802,0.19677852094173431,1.0952728986740112,0.2758519649505615,0.0003377993416506797,0.0023695742711424828,-0.0013766889460384846,0.0029320535250008106,0.0010317444102838635,-0.004221901763230562,0.08627099894323623,-4.111453130961435,2.7509642300597976,0.0008627099894323622,-0.041114531309614344,0.027509642300597978 +karman_re50,sr,61,24.4,0.8935142755508423,0.03775079548358917,0.9766523838043213,0.10328979790210724,1.0906106233596802,0.22991739213466644,0.0007187250885181129,0.002937131328508258,-0.0024121494498103857,0.002937889192253351,0.0018510946538299322,-0.004380025900900364,0.4592779254987406,-4.274628697201656,2.587788663819576,0.004592779254987406,-0.042746286972016566,0.02587788663819576 +karman_re50,sr,62,24.8,0.9206209778785706,-0.0026356903836131096,0.9419994950294495,-0.004813145846128464,1.0738948583602905,0.14517764747142792,0.0013380780583247542,0.0034092299174517393,-0.0034293702337890863,0.0030014419462531805,0.0024360462557524443,-0.0044641210697591305,0.8129823906792794,-4.374208741158967,2.488208619862265,0.008129823906792793,-0.04374208741158968,0.024882086198622647 +karman_re50,sr,63,25.2,0.9427498579025269,-0.047506481409072876,0.9266888499259949,-0.09917313605546951,1.044897198677063,0.03615133464336395,0.002018348081037402,0.003676622174680233,-0.004258411005139351,0.003068678779527545,0.002774852328002453,-0.00441583851352334,1.1185098024120665,-4.387641239161196,2.474776121860036,0.011185098024120666,-0.04387641239161196,0.024747761218600364 +karman_re50,sr,64,25.6,0.9610397815704346,-0.09360238909721375,0.9372482299804688,-0.16497096419334412,1.0060936212539673,-0.07691849768161774,0.0025492317508906126,0.0035931929014623165,-0.0047148545272648335,0.0030788921285420656,0.002873877063393593,-0.0042201499454677105,1.341213193486176,-4.3121041623632985,2.5503131986579337,0.01341213193486176,-0.043121041623632984,0.025503131986579337 +karman_re50,sr,65,26.0,0.9804178476333618,-0.13207563757896423,0.9623146057128906,-0.209687277674675,0.9637355804443359,-0.17312581837177277,0.002763602649793029,0.003068201942369342,-0.004714092239737511,0.0030475908424705267,0.002737124217674136,-0.003910874016582966,1.4471386110705724,-4.177466773882337,2.6849505871388955,0.014471386110705725,-0.04177466773882337,0.026849505871388957 +karman_re50,sr,66,26.4,1.0026034116744995,-0.16377821564674377,0.9901924729347229,-0.24323390424251556,0.9270727038383484,-0.23644965887069702,0.0025895144790410995,0.002181329997256398,-0.004274305887520313,0.003062971169129014,0.002381017664447427,-0.0035828128457069397,1.4209150641509662,-3.99570168638416,2.866715674637072,0.014209150641509663,-0.0399570168638416,0.02866715674637072 +karman_re50,sr,67,26.8,1.026458978652954,-0.19436399638652802,1.016062617301941,-0.2684209942817688,0.9012783765792847,-0.26142147183418274,0.0020593826193362474,0.0011075477814301848,-0.003479469334706664,0.0032101201359182596,0.0018586079822853208,-0.0033332654275000095,1.2691416959687498,-3.771128418772068,3.091288942249164,0.012691416959687498,-0.037711284187720684,0.03091288942249164 +karman_re50,sr,68,27.2,1.0498074293136597,-0.2263784259557724,1.0358537435531616,-0.2847883403301239,0.8833236694335938,-0.2516753673553467,0.0013398510636761785,5.222373511060141e-05,-0.0024466686882078648,0.0034636049531400204,0.0012348335003480315,-0.0031845406629145145,1.0179484808513124,-3.5117322652261707,3.350685095795061,0.010179484808513124,-0.03511732265226171,0.03350685095795061 +karman_re50,sr,69,27.6,1.0706813335418701,-0.2575645446777344,1.0450832843780518,-0.28709715604782104,0.8694573044776917,-0.21325719356536865,0.0006923584151081741,-0.000862294458784163,-0.0012989856768399477,0.003744088811799884,0.0005275860312394798,-0.003084543626755476,0.7020466991293082,-3.2487310824926507,3.6136862785285815,0.007020466991293082,-0.03248731082492651,0.036136862785285814 +karman_re50,sr,70,28.0,1.0866748094558716,-0.2800234854221344,1.0397952795028687,-0.2655862271785736,0.8618998527526855,-0.15567608177661896,0.00032124441349878907,-0.0016196700744330883,-0.000161807969561778,0.00398244010284543,-0.00028163997922092676,-0.002993351547047496,0.3483194013482724,-2.999938090303736,3.862479270717496,0.003483194013482724,-0.02999938090303736,0.03862479270717496 +karman_re50,sr,71,28.4,1.0947245359420776,-0.2795369327068329,1.0182316303253174,-0.21120478212833405,0.8672677874565125,-0.09531547874212265,0.0003073150001000613,-0.002267393982037902,0.0008735921001061797,0.004182666540145874,-0.001210584188811481,-0.0029274499975144863,-0.022851450989965764,-2.7844526812273753,4.0779646797938565,-0.00022851450989965765,-0.027844526812273753,0.040779646797938565 +karman_re50,sr,72,28.8,1.0924232006072998,-0.2415224015712738,0.9837585687637329,-0.12294420599937439,0.8880184888839722,-0.04616912454366684,0.0006358461687341332,-0.0028474521823227406,0.0017299578757956624,0.004352698568254709,-0.0022326281759887934,-0.002918477402999997,-0.39744349156890346,-2.610434014190174,4.251983346831058,-0.003974434915689035,-0.02610434014190174,0.042519833468310585 +karman_re50,sr,73,29.2,1.0782082080841064,-0.16352882981300354,0.9475334286689758,-0.015566417947411537,0.9155712723731995,-0.005758935119956732,0.0012274677865207195,-0.003344782395288348,0.0023555587977170944,0.0044523607939481735,-0.0032732319086790085,-0.00298327743075788,-0.7556481879377476,-2.4933845216018486,4.369032839419384,-0.007556481879377476,-0.024933845216018487,0.04369032839419384 +karman_re50,sr,74,29.6,1.0515252351760864,-0.05776854604482651,0.9274489879608154,0.08329956233501434,0.9390079379081726,0.03812604025006294,0.0019138067727908492,-0.0036623459309339523,0.0027358466759324074,0.004432344809174538,-0.004150861408561468,-0.0030535573605448008,-1.0733862790572433,-2.470588447852065,4.391828913169167,-0.010733862790572432,-0.02470588447852065,0.04391828913169167 +karman_re50,sr,75,30.0,1.0142390727996826,0.055887699127197266,0.9335373640060425,0.15430939197540283,0.9575467705726624,0.08499077707529068,0.0024860929697752,-0.0036517218686640263,0.0028786328621208668,0.00426110764965415,-0.004684832412749529,-0.0030730655416846275,-1.3132657352792552,-2.529632124083556,4.332785236937676,-0.013132657352792551,-0.025296321240835563,0.04332785236937676 +karman_re50,sr,76,30.4,0.9718737006187439,0.1565490961074829,0.9569188952445984,0.20204851031303406,0.9763494729995728,0.1254739910364151,0.002766423160210252,-0.003209418151527643,0.0027839276008307934,0.003968734294176102,-0.004766021389514208,-0.0030435866210609674,-1.442320432867858,-2.654358765276766,4.208058595744466,-0.014423204328678581,-0.026543587652767663,0.042080585957444655 +karman_re50,sr,77,30.8,0.9335119128227234,0.22669263184070587,0.9847392439842224,0.23733069002628326,0.9979918599128723,0.15819182991981506,0.0026642372831702232,-0.0023733258713036776,0.002464293735101819,0.0036377080250531435,-0.004400165285915136,-0.003046001773327589,-1.4397429353004132,-2.8262630421219113,4.036154318899321,-0.014397429353004133,-0.028262630421219112,0.04036154318899321 +karman_re50,sr,78,31.2,0.9056593179702759,0.25871995091438293,1.0112017393112183,0.2640277147293091,1.0216445922851562,0.1887740194797516,0.0021830922923982143,-0.0013131527230143547,0.0019676601514220238,0.0033713714219629765,-0.003660437650978565,-0.003171120770275593,-1.3090229341690873,-3.044297351010729,3.8181200100105035,-0.013090229341690874,-0.03044297351010729,0.038181200100105034 +karman_re50,sr,79,31.6,0.8865206241607666,0.2551075220108032,1.0323179960250854,0.2822551429271698,1.0451104640960693,0.22067192196846008,0.001479758182540536,-0.00024278054479509592,0.001358314766548574,0.0032073217444121838,-0.00265759089961648,-0.003416543360799551,-1.0732541452330733,-3.300266602998951,3.562150758022281,-0.010732541452330734,-0.03300266602998951,0.03562150758022281 +karman_re50,sr,80,32.0,0.871843159198761,0.22161856293678284,1.0436152219772339,0.28775280714035034,1.0663676261901855,0.2524687647819519,0.0007995309424586594,0.0007019274053163826,0.0006668918067589402,0.0031028769444674253,-0.0015167157398536801,-0.003689427860081196,-0.7658160100270861,-3.568016790143533,3.2944005708777,-0.007658160100270861,-0.03568016790143533,0.032944005708777 +karman_re50,sr,81,32.4,0.8626338839530945,0.16687455773353577,1.0410428047180176,0.2715107202529907,1.0832202434539795,0.2775469124317169,0.0003633956948760897,0.001491200877353549,-0.00012253016757313162,0.003008867148309946,-0.0003708687727339566,-0.0039413850754499435,-0.4164046065376831,-3.8147489826752126,3.0476683783460197,-0.004164046065376831,-0.038147489826752125,0.030476683783460197 +karman_re50,sr,82,32.8,0.8651760220527649,0.10596536844968796,1.0223491191864014,0.2237275093793869,1.0927305221557617,0.2825130224227905,0.00028098924667574465,0.002150362590327859,-0.0010268979240208864,0.0029350975528359413,0.0006922793108969927,-0.004149307496845722,-0.047357108346015225,-4.040973660887335,2.8214437001338966,-0.00047357108346015225,-0.040409736608873356,0.028214437001338966 +karman_re50,sr,83,33.2,0.8833852410316467,0.054554156959056854,0.989785373210907,0.14144201576709747,1.0923786163330078,0.25209152698516846,0.0005500201368704438,0.002741216914728284,-0.0020389235578477383,0.0029199228156358004,0.0015884330496191978,-0.004326398018747568,0.3278397352972328,-4.225169505428022,2.6372478555932104,0.003278397352972328,-0.042251695054280225,0.026372478555932104 +karman_re50,sr,84,33.6,0.9105003476142883,0.013384472578763962,0.9527523517608643,0.03591460734605789,1.0803897380828857,0.18076694011688232,0.0011022343533113599,0.0032578103709965944,-0.0030815121717751026,0.002970037516206503,0.0022590793669223785,-0.004446300677955151,0.69172136872638,-4.350890007448834,2.5115273535723976,0.0069172136872638,-0.04350890007448834,0.025115273535723976 +karman_re50,sr,85,34.0,0.9349116683006287,-0.02940717712044716,0.9284367561340332,-0.06652548164129257,1.0559289455413818,0.07861554622650146,0.0017851993907243013,0.003618500428274274,-0.004005761351436377,0.0030424927826970816,0.002681727521121502,-0.004447701387107372,1.018427932161897,-4.396523718062056,2.4658936429591756,0.01018427932161897,-0.043965237180620564,0.024658936429591757 +karman_re50,sr,86,34.4,0.9538571238517761,-0.07642920315265656,0.9297792911529541,-0.14314408600330353,1.0203204154968262,-0.03541550040245056,0.0023924317210912704,0.003675983287394047,-0.004614059813320637,0.0030735349282622337,0.0028651549946516752,-0.004302338231354952,1.2752754848381247,-4.350061790092499,2.512355570928733,0.012752754848381247,-0.04350061790092499,0.025123555709287333 +karman_re50,sr,87,34.8,0.9722510576248169,-0.11847717314958572,0.9510419368743896,-0.194414883852005,0.9783732891082764,-0.14024657011032104,0.0027376338839530945,0.0033162867184728384,-0.004777721595019102,0.00304974801838398,0.002813939703628421,-0.004024697933346033,1.426254229683254,-4.234711970034712,2.6277053909865202,0.01426254229683254,-0.04234711970034712,0.026277053909865202 +karman_re50,sr,88,35.2,0.9934338927268982,-0.1522575467824936,0.9787637591362,-0.2316601425409317,0.9388064742088318,-0.2172449678182602,0.0027066508773714304,0.0025420330930501223,-0.004486235324293375,0.0030386170838028193,0.0025341298896819353,-0.0036941247526556253,1.4476972938358719,-4.068719551307924,2.793697809713308,0.014476972938358718,-0.04068719551307925,0.02793697809713308 +karman_re50,sr,89,35.6,1.0169782638549805,-0.1829136610031128,1.0059425830841064,-0.26000574231147766,0.909162700176239,-0.25663474202156067,0.0022877510637044907,0.0015088143991306424,-0.003804809181019664,0.0031401985324919224,0.002064433181658387,-0.003410463919863105,1.3387535774050117,-3.859839175648339,3.002578185372893,0.013387535774050116,-0.03859839175648339,0.03002578185372893 +karman_re50,sr,90,36.0,1.0407061576843262,-0.21456535160541534,1.0285357236862183,-0.2800588011741638,0.8889768719673157,-0.2593599557876587,0.0016070737037807703,0.0004268758639227599,-0.0028407168574631214,0.0033665148075670004,0.001470995950512588,-0.003228531451895833,1.119239380032618,-3.607932756081288,3.2544846049399436,0.011192393800326179,-0.036079327560812884,0.03254484604939944 +karman_re50,sr,91,36.4,1.0625545978546143,-0.2467782199382782,1.0420974493026733,-0.2886570990085602,0.8736741542816162,-0.2309902012348175,0.0009037231793627143,-0.0005464291316457093,-0.0017217407003045082,0.0036435381043702364,0.0007916746544651687,-0.00311611988581717,0.8222251649999117,-3.3409826208130937,3.521434740208139,0.008222251649999117,-0.03340982620813094,0.03521434740208139 +karman_re50,sr,92,36.8,1.0804731845855713,-0.2738875448703766,1.0424644947052002,-0.27730733156204224,0.8630198836326599,-0.17906638979911804,0.00041517746285535395,-0.0013586279237642884,-0.0005681609036400914,0.00389589904807508,2.130854409188032e-05,-0.003020795527845621,0.47929754295464,-3.0863347104490697,3.776082650572163,0.0047929754295464,-0.030863347104490697,0.03776082650572163 +karman_re50,sr,93,37.2,1.0916825532913208,-0.28383779525756836,1.026929259300232,-0.23595008254051208,0.8627969622612,-0.11760987341403961,0.00026964061544276774,-0.002040249528363347,0.0005167656927369535,0.004109492991119623,-0.0008619712316431105,-0.002941260114312172,0.11240929892809264,-2.8589864579557416,4.003430903065491,0.0011240929892809264,-0.028589864579557416,0.040034309030654906 +karman_re50,sr,94,37.6,1.0935237407684326,-0.26080626249313354,0.9967013001441956,-0.15956911444664001,0.8783174753189087,-0.06337910890579224,0.00048116306425072253,-0.002643701620399952,0.001447618124075234,0.00429605832323432,-0.0018565732752904296,-0.0029127681627869606,-0.26291922621629654,-2.667311841136513,4.195105519884719,-0.0026291922621629656,-0.026673118411365132,0.04195105519884719 +karman_re50,sr,95,38.0,1.0839577913284302,-0.19674095511436462,0.959475576877594,-0.05645269900560379,0.9049012660980225,-0.020944807678461075,0.0009931587846949697,-0.003178911516442895,0.002161062555387616,0.004429249558597803,-0.0029047972057014704,-0.002956198528409004,-0.6300951476891656,-2.5266878418309515,4.335729519190281,-0.006300951476891656,-0.025266878418309515,0.04335729519190281 +karman_re50,sr,96,38.4,1.0618557929992676,-0.0990317165851593,0.9313799142837524,0.049044255167245865,0.9305762648582458,0.020846350118517876,0.0016662541311234236,-0.00357642094604671,0.0026265315245836973,0.004458836745470762,-0.003865715814754367,-0.0030278710182756186,-0.9660377588746287,-2.4679940265341767,4.394423334487056,-0.009660377588746287,-0.024679940265341767,0.043944233344870555 +karman_re50,sr,97,38.8,1.028037190437317,0.01432811375707388,0.9277237057685852,0.131271630525589,0.9503208994865417,0.06774186342954636,0.002305182395502925,-0.003703409805893898,0.002851376309990883,0.0043370989151299,-0.00454590143635869,-0.0030696303583681583,-1.2380437606913892,-2.4955132229026358,4.3669041381185965,-0.012380437606913892,-0.02495513222902636,0.04366904138118596 +karman_re50,sr,98,39.2,0.986630916595459,0.12230712920427322,0.9463000297546387,0.18633237481117249,0.9684255719184875,0.11144594848155975,0.002709908178076148,-0.003421034896746278,0.002843171590939164,0.0040802545845508575,-0.004794614389538765,-0.003050112398341298,-1.410629182976121,-2.6024225337260036,4.259994827295229,-0.014106291829761211,-0.026024225337260037,0.042599948272952284 +karman_re50,sr,99,39.6,0.9458737969398499,0.20546212792396545,0.9735478758811951,0.22557087242603302,0.9890698194503784,0.14661866426467896,0.0027512621600180864,-0.002707564039155841,0.002604365348815918,0.003751893062144518,-0.004580208100378513,-0.003032343927770853,-1.4564930731044774,-2.7576080861651517,4.1048092748560805,-0.014564930731044774,-0.027576080861651517,0.041048092748560805 +karman_re50,sr,100,40.0,0.9141504764556885,0.2518875300884247,1.0011215209960938,0.25539693236351013,1.0123894214630127,0.17742280662059784,0.002395871328189969,-0.001712219906039536,0.002165179466828704,0.0034556498285382986,-0.00396142341196537,-0.003110822755843401,-1.3700673845416178,-2.9607020542765303,3.901715306744702,-0.013700673845416178,-0.029607020542765303,0.03901715306744702 +karman_re50,sr,101,40.4,0.8924881815910339,0.2609957754611969,1.024827241897583,0.2770638167858124,1.0362598896026611,0.2088242918252945,0.001744315610267222,-0.000622284016571939,0.0015893183881416917,0.003257551696151495,-0.003039400791749358,-0.0033200597390532494,-1.1683169281560764,-3.2057293979191948,3.656687963102038,-0.011683169281560764,-0.03205729397919195,0.03656687963102038 +karman_re50,sr,102,40.8,0.8763770461082458,0.23786823451519012,1.0402789115905762,0.28817808628082275,1.058530330657959,0.24115997552871704,0.0010252331849187613,0.0003756421501748264,0.000925267580896616,0.0031368830241262913,-0.0019392622634768486,-0.0035936683416366577,-0.8826769223553571,-3.4720821205207972,3.3903352405004346,-0.008826769223553571,-0.034720821205207975,0.03390335240500435 +karman_re50,sr,103,41.2,0.8644494414329529,0.18953600525856018,1.0432204008102417,0.2812381684780121,1.0772401094436646,0.26992788910865784,0.0004812644037883729,0.0012193142902106047,0.00017195186228491366,0.003038607770577073,-0.0007828136440366507,-0.00385233573615551,-0.5462535722649207,-3.729896439814429,3.1325209212068037,-0.005462535722649207,-0.03729896439814429,0.031325209212068036 +karman_re50,sr,104,41.6,0.8616992235183716,0.12854547798633575,1.0305912494659424,0.24592775106430054,1.0897823572158813,0.28413528203964233,0.0002687988162506372,0.0019194886554032564,-0.0006868511554785073,0.002952361712232232,0.0003231915761716664,-0.004073654767125845,-0.18206969270294102,-3.9632979868092097,2.899119374212023,-0.0018206969270294102,-0.0396329798680921,0.02899119374212023 +karman_re50,sr,105,42.0,0.8743354082107544,0.07216527312994003,1.0027518272399902,0.17581823468208313,1.0934665203094482,0.26807379722595215,0.0004161002580076456,0.0025346814654767513,-0.0016662661219015718,0.002911926247179508,0.0012901743175461888,-0.004265014547854662,0.19261082281542907,-4.164411997803098,2.6980053632181336,0.0019261082281542908,-0.04164411997803098,0.026980053632181335 +karman_re50,sr,106,42.4,0.8997411131858826,0.028115542605519295,0.9658936262130737,0.07616539299488068,1.086066484451294,0.21127325296401978,0.0008793637971393764,0.003083288436755538,-0.0027074695099145174,0.002947675995528698,0.0020465755369514227,-0.00441399309784174,0.5637805290836617,-4.315980798125132,2.5464365628961008,0.005637805290836617,-0.04315980798125132,0.025464365628961007 +karman_re50,sr,107,42.8,0.9262510538101196,-0.012902425602078438,0.934736967086792,-0.03112166002392769,1.0662039518356323,0.11843028664588928,0.0015378014650195837,0.0035165611188858747,-0.003699352964758873,0.0030195340514183044,0.002557056024670601,-0.004464155063033104,0.906576028404715,-4.390020080373097,2.472397280648135,0.00906576028404715,-0.04390020080373097,0.02472397280648135 +karman_re50,sr,108,43.2,0.9468517303466797,-0.05919794738292694,0.9261577725410461,-0.11866552382707596,1.0342618227005005,0.00626495061442256,0.002194879576563835,0.003702388145029545,-0.004444271791726351,0.003067320678383112,0.0028239486273378134,-0.004370533395558596,1.1930703974821784,-4.37583320424575,2.4865841567754816,0.011930703974821783,-0.0437583320424575,0.024865841567754815 +karman_re50,sr,109,43.6,0.9648007154464722,-0.10414636880159378,0.9416218400001526,-0.17795638740062714,0.993706226348877,-0.10437245666980743,0.0026509645394980907,0.003501584753394127,-0.004776451736688614,0.003056376241147518,0.002858061110600829,-0.004133347421884537,1.386018503427751,-4.283367608277696,2.5790497527435363,0.01386018503427751,-0.04283367608277696,0.025790497527435365 +karman_re50,sr,110,44.0,0.9849138855934143,-0.14067818224430084,0.9681958556175232,-0.21933721005916595,0.9521881341934204,-0.1933087408542633,0.0027680632192641497,0.00286657246761024,-0.0046432348899543285,0.003031324129551649,0.002661224687471986,-0.0038114963099360466,1.4558689006245777,-4.135430327919022,2.7269870331022106,0.014558689006245778,-0.04135430327919022,0.027269870331022107 +karman_re50,sr,111,44.4,1.0079690217971802,-0.1718195080757141,0.996151864528656,-0.25075432658195496,0.918640673160553,-0.24684888124465942,0.002481083618476987,0.0019024111097678542,-0.0040900870226323605,0.003089379286393523,0.0022543156519532204,-0.0035030124709010124,1.392929155711609,-3.9413561644539845,2.921061196567248,0.013929291557116091,-0.039413561644539845,0.029210611965672484 +karman_re50,sr,112,44.8,1.0319770574569702,-0.20290318131446838,1.0209591388702393,-0.2739446759223938,0.895579993724823,-0.2624194025993347,0.0018721356755122542,0.0008134628878906369,-0.003214601892977953,0.003278365358710289,0.0016986087430268526,-0.0032851346768438816,1.209850416356023,-3.7016796530182625,3.16073770800297,0.01209850416356023,-0.037016796530182625,0.031607377080029704 +karman_re50,sr,113,45.2,1.0547045469284058,-0.23527050018310547,1.0382955074310303,-0.28746479749679565,0.8788143396377563,-0.2447299063205719,0.001144356094300747,-0.00021452702640090138,-0.002139144577085972,0.003542962484061718,0.001046526711434126,-0.0031543562654405832,0.936928224531955,-3.4356350759918834,3.4267822850293483,0.00936928224531955,-0.03435635075991884,0.034267822850293485 +karman_re50,sr,114,45.6,1.074242115020752,-0.2652592062950134,1.0438263416290283,-0.2845820486545563,0.8659033179283142,-0.20018108189105988,0.0005559714045375586,-0.0010805524652823806,-0.0009868338238447905,0.0038064420223236084,0.0003106210788246244,-0.003053466323763132,0.6074938701839612,-3.177102613082474,3.685314747938758,0.006074938701839612,-0.03177102613082474,0.03685314747938758 +karman_re50,sr,115,46.0,1.0881692171096802,-0.28325098752975464,1.0341856479644775,-0.2551662027835846,0.8608894944190979,-0.14009977877140045,0.0002798665373120457,-0.0018047260819002986,0.00013523787492886186,0.004032629542052746,-0.0005278315511532128,-0.002963252132758498,0.2474190928148,-2.938844728361152,3.923572632660081,0.002474190928148,-0.029388447283611518,0.03923572632660081 +karman_re50,sr,116,46.4,1.0937836170196533,-0.273838073015213,1.0089764595031738,-0.19141238927841187,0.8705991506576538,-0.08162683248519897,0.00036621143226511776,-0.0024311658926308155,0.0011332392459735274,0.004231989849358797,-0.0014818826457485557,-0.0029146901797503233,-0.12644449956366433,-2.7319525310942843,4.1304648299269475,-0.0012644449956366432,-0.02731952531094284,0.04130464829926948 +karman_re50,sr,117,46.8,1.088661789894104,-0.2246422916650772,0.9729961156845093,-0.09589526802301407,0.894528329372406,-0.03555120527744293,0.0007803391199558973,-0.0029941098764538765,0.001931305625475943,0.004392520058900118,-0.002521553309634328,-0.0029367608949542046,-0.49869254393257445,-2.5698384228335427,4.29257893818769,-0.004986925439325745,-0.025698384228335428,0.042925789381876904 +karman_re50,sr,118,47.2,1.071160078048706,-0.13742682337760925,0.9393630027770996,0.01229687687009573,0.9217900037765503,0.004993753042072058,0.0014148290501907468,-0.0034549639094620943,0.002484764438122511,0.0044652377255260944,-0.0035374355502426624,-0.0030050405766814947,-0.8491411269020215,-2.4793010203982067,4.383116340623026,-0.008491411269020215,-0.024793010203982068,0.043831163406230264 +karman_re50,sr,119,47.6,1.041247844696045,-0.027322806417942047,0.9258564114570618,0.10494623333215714,0.9434844255447388,0.05048193410038948,0.00208711763843894,-0.0036963738966733217,0.0027939549181610346,0.004398541525006294,-0.004343164619058371,-0.0030588696245104074,-1.1484077441189158,-2.4763990624884435,4.386018298532789,-0.011484077441189159,-0.024763990624884435,0.043860182985327886 +karman_re50,sr,120,48.0,1.0017495155334473,0.0850689709186554,0.9376611113548279,0.16883017122745514,0.9614410400390625,0.09649576246738434,0.0025954446755349636,-0.0035736537538468838,0.0028701794799417257,0.00418349914252758,-0.004759397357702255,-0.003058113856241107,-1.361018126777654,-2.555209424793917,4.307207936227315,-0.01361018126777654,-0.02555209424793917,0.043072079362273155 +karman_re50,sr,121,48.4,0.9596416354179382,0.179216668009758,0.963162362575531,0.2126283198595047,0.980979323387146,0.1346656233072281,0.002781842602416873,-0.003011422697454691,0.0027152285911142826,0.0038706546183675528,-0.004707434680312872,-0.0030303169041872025,-1.4549276247265928,-2.6953294903771496,4.167087870644083,-0.014549276247265928,-0.026953294903771498,0.041670878706440824 +karman_re50,sr,122,48.8,0.9241673350334167,0.23964092135429382,0.9912865161895752,0.24557282030582428,1.0036475658416748,0.16631145775318146,0.002567928982898593,-0.0020965910516679287,0.0023442748934030533,0.0035535721108317375,-0.004223219584673643,-0.003072891617193818,-1.415470093879768,-2.8817195019287745,3.9806978590924578,-0.01415470093879768,-0.028817195019287745,0.03980697859092458 +karman_re50,sr,123,49.2,0.8993487358093262,0.2618623971939087,1.0169559717178345,0.27024054527282715,1.0276756286621094,0.1971915066242218,0.0020038632210344076,-0.0010137384524568915,0.0018105098279193044,0.0033194134011864662,-0.0033959406428039074,-0.0032363291829824448,-1.252393067758107,-3.1168960831436867,3.7455212778775455,-0.01252393067758107,-0.031168960831436866,0.037455212778775455 +karman_re50,sr,124,49.6,0.8816975355148315,0.24974919855594635,1.0359172821044922,0.28578054904937744,1.050734519958496,0.2294268012046814,0.0012746375286951661,3.325082434457727e-05,0.001172889955341816,0.003175497055053711,-0.0023478970397263765,-0.003492794232442975,-0.992847805038312,-3.37688066685176,3.485536694169472,-0.00992847805038312,-0.0337688066685176,0.03485536694169472 +karman_re50,sr,125,50.0,0.8678985834121704,0.20947515964508057,1.043776273727417,0.28653979301452637,1.070915699005127,0.26036813855171204,0.0006426908075809479,0.0009345643920823932,0.0004528439894784242,0.0030717297922819853,-0.0012011743383482099,-0.003759415354579687,-0.6713990000898492,-3.638686415268746,3.223730945752487,-0.006713990000898493,-0.03638686415268746,0.03223730945752487 +karman_re50,sr,126,50.4,0.8608918786048889,0.1510981023311615,1.0369367599487305,0.26263293623924255,1.085961937904358,0.2815512716770172,0.0003026417107321322,0.0016803063917905092,-0.0003643626405391842,0.002977126045152545,-6.583359208889306e-05,-0.003993231803178787,-0.31541421079680443,-3.880880007136875,2.9815373538843577,-0.003154142107968044,-0.03880880007136875,0.029815373538843577 +karman_re50,sr,127,50.8,0.8676849603652954,0.09121000021696091,1.014367938041687,0.20530357956886292,1.0932384729385376,0.27824994921684265,0.0003238279605284333,0.002320527099072933,-0.0012961765751242638,0.0029202185105532408,0.0009628969710320234,-0.004197047557681799,0.05692821091081585,-4.095630982292838,2.766786378728394,0.0005692821091081585,-0.04095630982292838,0.027667863787283944 +karman_re50,sr,128,51.2,0.8896726965904236,0.04299187660217285,0.9796693921089172,0.11468581855297089,1.0901918411254883,0.23658668994903564,0.0006823062431067228,0.0028947589453309774,-0.002325106645002961,0.0029298195149749517,0.0018029025522992015,-0.004370394162833691,0.4307956494225189,-4.26611556670272,2.596301794318512,0.004307956494225189,-0.042661155667027204,0.025963017943185118 +karman_re50,sr,129,51.6,0.9172191023826599,0.0024713051971048117,0.9442724585533142,0.0067481654696166515,1.074947714805603,0.15533971786499023,0.001286587561480701,0.0033808958251029253,-0.003357378300279379,0.0029938367661088705,0.002402136567980051,-0.004463212098926306,0.7871936732647162,-4.373187323834767,2.489230037186466,0.007871936732647163,-0.043731873238347665,0.02489230037186466 +karman_re50,sr,130,52.0,0.9399912357330322,-0.04195375367999077,0.9261444211006165,-0.09034794569015503,1.0471198558807373,0.04789562523365021,0.001967937685549259,0.0036731893196702003,-0.004218070302158594,0.0030547978822141886,0.0027529268991202116,-0.004422653932124376,1.0983148168204093,-4.3920198294494694,2.470397531571763,0.010983148168204093,-0.04392019829449469,0.02470397531571763 +karman_re50,sr,131,52.4,0.9581176042556763,-0.08865515887737274,0.9339110851287842,-0.1591947078704834,1.0089234113693237,-0.06572826951742172,0.002522887196391821,0.003623298602178693,-0.004713856149464846,0.0030634391587227583,0.0028707117307931185,-0.00423155864700675,1.3293393088317393,-4.325637294864156,2.5367800661570765,0.013293393088317394,-0.043256372948641555,0.025367800661570766 +karman_re50,sr,132,52.8,0.9771162271499634,-0.1283709704875946,0.9579865336418152,-0.20566904544830322,0.9666264057159424,-0.16456937789916992,0.00277283345349133,0.003143689362332225,-0.004745138343423605,0.003035353496670723,0.0027587341610342264,-0.003930125385522842,1.4463446093307768,-4.195031376161826,2.667385984859406,0.014463446093307769,-0.041950313761618264,0.02667385984859406 +karman_re50,sr,133,53.2,0.999351978302002,-0.16075217723846436,0.9861741065979004,-0.2402970939874649,0.9295188188552856,-0.23182690143585205,0.002631949493661523,0.002275296254083514,-0.004332393407821655,0.0030547475907951593,0.0024250817950814962,-0.0036073625087738037,1.4309563467917548,-4.016291870193513,2.8461254908277196,0.014309563467917548,-0.04016291870193513,0.028461254908277195 +karman_re50,sr,134,53.6,1.0233657360076904,-0.19144800305366516,1.0126413106918335,-0.26644036173820496,0.9029946327209473,-0.2608179748058319,0.0021216075401753187,0.0012088147923350334,-0.003559501376003027,0.0031995782628655434,0.0019159100484102964,-0.0033536225091665983,1.2886215782767776,-3.792558542867249,3.069858818153983,0.012886215782767775,-0.03792558542867249,0.030698588181539834 +karman_re50,sr,135,54.0,1.0467625856399536,-0.22350460290908813,1.033176302909851,-0.2839454114437103,0.8844851851463318,-0.25452515482902527,0.0014045899733901024,0.00014437692880164832,-0.002544127171859145,0.0034443854819983244,0.001291812164708972,-0.003197431331500411,1.044137506921358,-3.5319368103289794,3.3304805506922524,0.01044137506921358,-0.0353193681032898,0.033304805506922525 +karman_re50,sr,136,54.4,1.0676052570343018,-0.2551085948944092,1.043359637260437,-0.28809183835983276,0.8699672818183899,-0.2188033163547516,0.000737417140044272,-0.000784996896982193,-0.001408119103871286,0.003713045036420226,0.0005864400882273912,-0.0030882221180945635,0.7314972017860657,-3.2697276104424557,3.5926897505787765,0.007314972017860657,-0.03269727610442456,0.035926897505787765 +karman_re50,sr,137,54.8,1.08378005027771,-0.27899569272994995,1.0393779277801514,-0.269461452960968,0.8611855506896973,-0.1625843197107315,0.0003376767272129655,-0.0015566247748211026,-0.00026335444999858737,0.00395176513120532,-0.00021148042287677526,-0.0029900730587542057,0.38035389504417666,-3.0226426643051454,3.839774696716087,0.0038035389504417665,-0.030226426643051453,0.03839774696716087 +karman_re50,sr,138,55.2,1.0927443504333496,-0.28138092160224915,1.0196418762207031,-0.21857355535030365,0.8650644421577454,-0.10158980637788773,0.00029481525416485965,-0.002211256418377161,0.000791887054219842,0.004161543678492308,-0.0011219880543649197,-0.0029245323967188597,0.00989215479067736,-2.8023669921957444,4.060050368825488,9.89215479067736e-05,-0.028023669921957445,0.04060050368825488 +karman_re50,sr,139,55.6,1.0918409824371338,-0.2472606897354126,0.9866580963134766,-0.13326896727085114,0.8847914338111877,-0.050892725586891174,0.0005980192217975855,-0.002797965658828616,0.0016707443865016103,0.0043428377248346806,-0.0021373420022428036,-0.0029235451947897673,-0.36496778589577034,-2.6223382684749583,4.2400790925462735,-0.0036496778589577036,-0.026223382684749583,0.042400790925462735 +karman_re50,sr,140,56.0,1.0789446830749512,-0.17258842289447784,0.95013028383255,-0.026468129828572273,0.9123608469963074,-0.009947466664016247,0.0011688846861943603,-0.0033060102723538876,0.002314666286110878,0.0044558909721672535,-0.003181543666869402,-0.0029814187437295914,-0.7261857639329425,-2.503146220214628,4.359271140806604,-0.007261857639329425,-0.02503146220214628,0.043592711408066045 +karman_re50,sr,141,56.4,1.0533276796340942,-0.06851841509342194,0.9276431202888489,0.0746530070900917,0.9363508820533752,0.03340443968772888,0.001852511428296566,-0.003643851960077882,0.0027080602012574673,0.00444152532145381,-0.004089068621397018,-0.003045758232474327,-1.0481036972369766,-2.4670647179417,4.395352643079532,-0.010481036972369765,-0.024670647179417,0.043953526430795316 +karman_re50,sr,142,56.8,1.0166294574737549,0.04549960047006607,0.9309378862380981,0.14873255789279938,0.9548916816711426,0.08045840263366699,0.0024439378175884485,-0.003666448872536421,0.0028671466279774904,0.004274752922356129,-0.004662967752665281,-0.003063881304115057,-1.296183353723086,-2.5185292918876967,4.343888069133536,-0.012961833537230861,-0.02518529291887697,0.04343888069133536 +karman_re50,sr,143,57.2,0.9743835926055908,0.14843302965164185,0.9531088471412659,0.19829611480236053,0.9734005928039551,0.1218588650226593,0.002758450573310256,-0.0032625633757561445,0.002797502325847745,0.0039886548183858395,-0.004779620096087456,-0.003036735113710165,-1.4359605601837409,-2.6394307564121693,4.222986604609063,-0.014359605601837409,-0.026394307564121693,0.04222986604609063 +karman_re50,sr,144,57.6,0.9357168674468994,0.22220556437969208,0.9811458587646484,0.23461845517158508,0.9951198697090149,0.1551879644393921,0.002689361572265625,-0.0024560035672038794,0.002502585295587778,0.003662281669676304,-0.004441044293344021,-0.0030433740466833115,-1.4449247923182407,-2.8087570544898828,4.0536603065313495,-0.014449247923182407,-0.028087570544898827,0.040536603065313495 +karman_re50,sr,145,58.0,0.907256007194519,0.258073627948761,1.0082296133041382,0.26221054792404175,1.0190190076828003,0.1858370453119278,0.0022403965704143047,-0.0014077052474021912,0.002019597217440605,0.003394019789993763,-0.0037254763301461935,-0.003164878813549876,-1.3241204223752836,-3.026510622054237,3.835906738966995,-0.013241204223752837,-0.030265106220542373,0.03835906738966995 +karman_re50,sr,146,58.4,0.8876323103904724,0.25775259733200073,1.0301305055618286,0.28143560886383057,1.042665958404541,0.21764671802520752,0.001540375524200499,-0.0003300095268059522,0.0014125407906249166,0.003221099963411689,-0.002744336612522602,-0.003397173248231411,-1.0955609188217053,-3.2813754827367863,3.581041878284446,-0.010955609188217053,-0.03281375482736786,0.03581041878284446 +karman_re50,sr,147,58.8,0.8724108934402466,0.22686821222305298,1.0424230098724365,0.28856512904167175,1.064052700996399,0.2496872842311859,0.0008441180689260364,0.0006276975618675351,0.0007211028132587671,0.0031072692945599556,-0.0016213749768212438,-0.0036653142888098955,-0.792698716474121,-3.5463413980040404,3.3160759630171928,-0.00792698716474121,-0.0354634139800404,0.033160759630171927 +karman_re50,sr,148,59.2,0.8621065616607666,0.17345671355724335,1.0411266088485718,0.27484023571014404,1.0811750888824463,0.2758263945579529,0.00038458031485788524,0.0014253685949370265,-5.761844658991322e-05,0.003006933955475688,-0.00046975736040621996,-0.003910518251359463,-0.44670048151036684,-3.796109220290862,3.0663081407303703,-0.004467004815103669,-0.03796109220290862,0.030663081407303703 +karman_re50,sr,149,59.6,0.8632182478904724,0.11205248534679413,1.024182677268982,0.2302710860967636,1.0916166305541992,0.28330403566360474,0.00027531900559552014,0.0020977782551199198,-0.0009444149327464402,0.002932835603132844,0.0006096651195548475,-0.004124851431697607,-0.07859312563412416,-4.022054222899385,2.8403631381218477,-0.0007859312563412415,-0.04022054222899385,0.02840363138121848 +karman_re50,sr,150,60.0,0.8803794384002686,0.059034522622823715,0.9931724667549133,0.15081720054149628,1.0926917791366577,0.256549596786499,0.0005186187336221337,0.002694995142519474,-0.0019444116624072194,0.002919960068538785,0.0015281655360013247,-0.004313605837523937,0.29635640969937627,-4.210656975454131,2.6517603855671013,0.0029635640969937625,-0.04210656975454131,0.026517603855671014 +karman_re50,sr,151,60.4,0.9074705243110657,0.01717948354780674,0.9561569094657898,0.04619897902011871,1.0820603370666504,0.1887192279100418,0.0010493005393072963,0.0032205560710281134,-0.0029915887862443924,0.002970359055325389,0.0022154883481562138,-0.004445618484169245,0.6622055983540547,-4.342500957307511,2.519916403713721,0.006622055983540547,-0.04342500957307511,0.02519916403713721 +karman_re50,sr,152,60.8,0.9325447082519531,-0.025098180398344994,0.9298133254051208,-0.05803016573190689,1.0586869716644287,0.08863238990306854,0.0017255954444408417,0.003599049523472786,-0.003941533621400595,0.003037182381376624,0.0026530774775892496,-0.00445599015802145,0.9929673071175303,-4.395867386256328,2.466549974764904,0.009929673071175303,-0.04395867386256328,0.02466549974764904 +karman_re50,sr,153,61.2,0.9516696929931641,-0.07212302088737488,0.9284133315086365,-0.13750533759593964,1.0236787796020508,-0.02520439215004444,0.002347637200728059,0.003688634606078267,-0.004588454496115446,0.003064896212890744,0.0028525693342089653,-0.004316419363021851,1.2575640912231463,-4.3589541649728005,2.5034631960484313,0.012575640912231463,-0.043589541649728,0.025034631960484312 +karman_re50,sr,154,61.6,0.9697760939598083,-0.11503423005342484,0.9482265710830688,-0.19057588279247284,0.9818238615989685,-0.13166487216949463,0.0027256193570792675,0.0033678209874778986,-0.004791144281625748,0.0030426678713411093,0.0028251558542251587,-0.004045208916068077,1.4189713738214336,-4.249568271109817,2.612849089911415,0.014189713738214337,-0.04249568271109817,0.02612849089911415 +karman_re50,sr,155,62.0,0.9909379482269287,-0.14950530230998993,0.9759395718574524,-0.22877377271652222,0.9419002532958984,-0.21174116432666779,0.002730804495513439,0.0026229978539049625,-0.004528333432972431,0.003036295995116234,0.0025708209723234177,-0.003719813423231244,1.4523958145600453,-4.086761139796495,2.7756562212247373,0.014523958145600454,-0.04086761139796496,0.027756562212247374 +karman_re50,sr,156,62.4,1.0146656036376953,-0.18022224307060242,1.003568410873413,-0.2578554153442383,0.9115406274795532,-0.2545942962169647,0.002343027153983712,0.0016041521448642015,-0.0038726949132978916,0.0031347244512289762,0.0021167572122067213,-0.0034357933327555656,1.3537783387281468,-3.878154502152846,2.9842628588683864,0.013537783387281468,-0.03878154502152846,0.029842628588683865 +karman_re50,sr,157,62.8,1.0385384559631348,-0.21174709498882294,1.0267608165740967,-0.27872416377067566,0.8907263278961182,-0.2604317367076874,0.0016725227469578385,0.0005189255462028086,-0.0029318565502762794,0.0033507978077977896,0.0015275611076503992,-0.0032468356657773256,1.1421628669336563,-3.628074880390697,3.234342480630535,0.011421628669336563,-0.03628074880390697,0.03234342480630535 +karman_re50,sr,158,63.2,1.060459852218628,-0.24404264986515045,1.0411120653152466,-0.2886075973510742,0.8748790621757507,-0.23461471498012543,0.0009575299336574972,-0.00046740315156057477,-0.0018252137815579772,0.003617658978328109,0.0008493257337249815,-0.0031250512693077326,0.8503918472514691,-3.363228782597605,3.4991885784236274,0.008503918472514692,-0.03363228782597605,0.034991885784236273 +karman_re50,sr,159,63.6,1.0785049200057983,-0.27197957038879395,1.0424959659576416,-0.27944615483283997,0.8632855415344238,-0.18437615036964417,0.00044309694203548133,-0.0012927044881507754,-0.000673120841383934,0.0038678315468132496,8.7547923612874e-05,-0.003023269586265087,0.5100232302542315,-3.109096985622915,3.7533203753983173,0.005100232302542315,-0.03109096985622915,0.037533203753983176 +karman_re50,sr,160,64.0,1.0903900861740112,-0.28405651450157166,1.0284318923950195,-0.24107211828231812,0.8617779016494751,-0.12304768711328506,0.0002687343512661755,-0.001984909176826477,0.00042706739623099566,0.0040873317047953606,-0.0007788579678162932,-0.0029411606956273317,0.1450562754673393,-2.8789573056978934,3.983460055323339,0.0014505627546733929,-0.028789573056978934,0.03983460055323339 +karman_re50,sr,161,64.4,1.0934345722198486,-0.2644256055355072,0.9996803998947144,-0.16767755150794983,0.8761727809906006,-0.0676567330956459,0.00045237981248646975,-0.0025930588599294424,0.0013795644044876099,0.004283586051315069,-0.001759418286383152,-0.002916068769991398,-0.22996480182938625,-2.681737895474669,4.180679465546563,-0.0022996480182938626,-0.02681737895474669,0.04180679465546563 +karman_re50,sr,162,64.8,1.0850955247879028,-0.20384974777698517,0.9627562165260315,-0.0660746693611145,0.9024171233177185,-0.02444365993142128,0.0009404734591953456,-0.003135188715532422,0.0021122207399457693,0.004429145250469446,-0.0028079322073608637,-0.0029584448784589767,-0.5985905545839914,-2.537001583850729,4.3254157771705035,-0.005985905545839914,-0.02537001583850729,0.043254157771705035 +karman_re50,sr,163,65.2,1.0640325546264648,-0.10839734971523285,0.9330583810806274,0.0405026338994503,0.928528904914856,0.016952546313405037,0.0016041529597714543,-0.003550167428329587,0.0025928604882210493,0.004465047270059586,-0.0037901231553405523,-0.003026628401130438,-0.9382520935626258,-2.469531100510199,4.392886260511033,-0.009382520935626259,-0.024695311005101993,0.04392886260511033 +karman_re50,sr,164,65.6,1.030868649482727,0.004468691535294056,0.9267833828926086,0.12535083293914795,0.9484748244285583,0.06359315663576126,0.0022510180715471506,-0.003703092224895954,0.0028340958524495363,0.004350731149315834,-0.004505862947553396,-0.003063353942707181,-1.2172076418937459,-2.4906396813964493,4.371777679624783,-0.012172076418937458,-0.024906396813964494,0.04371777679624783 +karman_re50,sr,165,66.0,0.9896600842475891,0.1137770339846611,0.943713366985321,0.18237245082855225,0.9663071632385254,0.10793393850326538,0.0026846686378121376,-0.003459024475887418,0.002848462201654911,0.004100397229194641,-0.004792726133018732,-0.0030461722053587437,-1.3996987054103822,-2.5894044488936183,4.273012912127614,-0.013996987054103823,-0.025894044488936185,0.04273012912127614 +karman_re50,sr,166,66.4,0.9486813545227051,0.19973477721214294,0.9708164930343628,0.2225879728794098,0.9868640899658203,0.1437576413154602,0.002764162141829729,-0.002784356474876404,0.002634461037814617,0.00377778522670269,-0.004610375966876745,-0.003030732274055481,-1.4571418874769895,-2.7418605379569603,4.1205568230642715,-0.014571418874769895,-0.027418605379569604,0.04120556823064272 +karman_re50,sr,167,66.8,0.916347861289978,0.2495635747909546,0.9988251328468323,0.2531626224517822,1.0103257894515991,0.17470461130142212,0.0024428782053291798,-0.0018012160435318947,0.002213099505752325,0.003481091232970357,-0.004018019884824753,-0.0031072453130036592,-1.3815593864602727,-2.9427175579770455,3.9196998030441867,-0.013815593864602727,-0.029427175579770454,0.03919699803044187 +karman_re50,sr,168,67.2,0.8941072821617126,0.26175346970558167,1.0231266021728516,0.27558329701423645,1.034348964691162,0.205963134765625,0.001804203144274652,-0.000712668290361762,0.0016425661742687225,0.003275251481682062,-0.0031198516953736544,-0.003305715275928378,-1.188247779298813,-3.186754237954696,3.6756631230665358,-0.01188247779298813,-0.03186754237954696,0.03675663123066536 +karman_re50,sr,169,67.6,0.8775656223297119,0.2412051409482956,1.0393612384796143,0.287880003452301,1.0567247867584229,0.23832589387893677,0.0010777292773127556,0.00029959241510368884,0.0009784240974113345,0.003145139431580901,-0.0020365160889923573,-0.0035693487152457237,-0.9081726898465755,-3.451128678143022,3.41128868287821,-0.009081726898465755,-0.03451128678143022,0.0341128868287821 +karman_re50,sr,170,68.0,0.8648723363876343,0.19466367363929749,1.0432814359664917,0.28292807936668396,1.0755681991577148,0.2677154839038849,0.0005125116440467536,0.001154560362920165,0.00023352140851784497,0.0030402287375181913,-0.0008830895530991256,-0.003824155079200864,-0.5749361802681097,-3.708595267943663,3.153822093077569,-0.005749361802681097,-0.03708595267943663,0.03153822093077569 +karman_re50,sr,171,68.4,0.8609586954116821,0.13406571745872498,1.032048225402832,0.25046709179878235,1.0887295007705688,0.28377866744995117,0.0002727954415604472,0.0018656147876754403,-0.0006116076838225126,0.002952569629997015,0.0002335606113774702,-0.004049818497151136,-0.21293292782810871,-3.943810976338829,2.9186063846824037,-0.002129329278281087,-0.03943810976338829,0.02918606384682404 +karman_re50,sr,172,68.8,0.8724427819252014,0.07665227353572845,1.0057200193405151,0.18337656557559967,1.0935896635055542,0.27092722058296204,0.00039342595846392214,0.002486094832420349,-0.0015712347812950611,0.0029174780938774347,0.001221304526552558,-0.0042504738084971905,0.16116997395746188,-4.148689722403943,2.7137276386172897,0.0016116997395746189,-0.04148689722403943,0.027137276386172898 +karman_re50,sr,173,69.2,0.8973709940910339,0.03166607767343521,0.9694135785102844,0.085584856569767,1.0874505043029785,0.21772454679012299,0.0008328265976160765,0.003042975440621376,-0.002613875549286604,0.002949462039396167,0.0019974589813500643,-0.004410185851156712,0.5325252852918405,-4.302842439081072,2.5595749219401602,0.005325252852918405,-0.04302842439081072,0.025595749219401602 +karman_re50,sr,174,69.6,0.9242722392082214,-0.009105253964662552,0.9369953870773315,-0.02230130136013031,1.0686864852905273,0.12746202945709229,0.0014765402302145958,0.0034882365725934505,-0.0036234697327017784,0.0030162129551172256,0.0025231975596398115,-0.004470134153962135,0.879361744202673,-4.3863626786173535,2.476054682403879,0.00879361744202673,-0.04386362678617354,0.024760546824038793 +karman_re50,sr,175,70.0,0.9451873302459717,-0.055052563548088074,0.9258701205253601,-0.11231514066457748,1.0374860763549805,0.016189152374863625,0.0021398477256298065,0.0036993727553635836,-0.004402251914143562,0.003060586517676711,0.0028074695728719234,-0.004381454084068537,1.1721431258817727,-4.381914511981314,2.4805028490399184,0.011721431258817727,-0.04381914511981314,0.024805028490399183 +karman_re50,sr,176,70.4,0.9629067182540894,-0.10055095702409744,0.9394429922103882,-0.17371970415115356,0.9971931576728821,-0.09534764289855957,0.0026270910166203976,0.003535796422511339,-0.004774050787091255,0.003050588071346283,0.0028612397145479918,-0.004153565037995577,1.3748630076426258,-4.294911953402485,2.5675054076187473,0.013748630076426259,-0.04294911953402485,0.025675054076187476 +karman_re50,sr,177,70.8,0.9828553795814514,-0.13783538341522217,0.9656477570533752,-0.21617941558361053,0.9554838538169861,-0.1867731809616089,0.0027761636301875114,0.002935264725238085,-0.004674303811043501,0.0030284717213362455,0.0026893941685557365,-0.003837331896647811,1.456017195978317,-4.152435274499635,2.709982086521597,0.01456017195978317,-0.04152435274499635,0.027099820865215972 +karman_re50,sr,178,71.2,1.0059878826141357,-0.16919958591461182,0.9939324259757996,-0.2483154535293579,0.9212756156921387,-0.24357865750789642,0.002526236465200782,0.001991820987313986,-0.0041489796712994576,0.0030859005637466908,0.0023017716594040394,-0.0035292136017233133,1.4042256652822058,-3.9601149830833076,2.9023023779379247,0.014042256652822058,-0.03960114983083308,0.029023023779379247 +karman_re50,sr,179,71.6,1.0301125049591064,-0.20018236339092255,1.0192437171936035,-0.2722148001194,0.8975042104721069,-0.2622697949409485,0.0019352425588294864,0.0009070014348253608,-0.0032973862253129482,0.0032650509383529425,0.0017534825019538403,-0.0033060628920793533,1.230130649576177,-3.7210870389155986,3.141330322105634,0.01230130649576177,-0.037210870389155985,0.03141330322105634 +karman_re50,sr,180,72.0,1.0529192686080933,-0.23250983655452728,1.0372675657272339,-0.2867336869239807,0.8802486658096313,-0.24720486998558044,0.0012020221911370754,-0.00012766532017849386,-0.0022388827055692673,0.00352048990316689,0.0011027255095541477,-0.0031654692720621824,0.9631790329327576,-3.4580260235679163,3.4043913374533155,0.009631790329327577,-0.034580260235679165,0.034043913374533157 +karman_re50,sr,181,72.4,1.072525978088379,-0.262980192899704,1.0436623096466064,-0.2856229543685913,0.8666520118713379,-0.20465674996376038,0.0005919105024076998,-0.0010128935100510716,-0.00109084602445364,0.0037792993243783712,0.00037143781082704663,-0.0030570856761187315,0.6372303741943447,-3.1990639229049074,3.663353438116325,0.006372303741943447,-0.03199063922904907,0.03663353438116325 +karman_re50,sr,182,72.8,1.086903691291809,-0.28253403306007385,1.0352703332901,-0.25886258482933044,0.8605694770812988,-0.14534403383731842,0.00028905487852171063,-0.0017501338152214885,4.119070581509732e-05,0.004008586518466473,-0.00045202753972262144,-0.0029645657632499933,0.2788512642855826,-2.9589597529114746,3.903457608109757,0.0027885126428558262,-0.029589597529114747,0.039034576081097574 +karman_re50,sr,183,73.2,1.093530535697937,-0.2760586440563202,1.0115294456481934,-0.198155015707016,0.8690923452377319,-0.08615393936634064,0.00034713346394710243,-0.002379595534875989,0.0010584670817479491,0.004216241184622049,-0.001391252619214356,-0.0029175288509577513,-0.09405460692281395,-2.7485330162797754,4.113884344741456,-0.0009405460692281395,-0.027485330162797753,0.041138843447414565 +karman_re50,sr,184,73.6,1.0895863771438599,-0.23040646314620972,0.976306676864624,-0.1048618033528328,0.8923277258872986,-0.03906909376382828,0.0007353376713581383,-0.0029486585408449173,0.001877090078778565,0.004387394990772009,-0.0024256333708763123,-0.002939208410680294,-0.46715105458819156,-2.5819925125377656,4.280424848483467,-0.0046715105458819154,-0.025819925125377657,0.04280424848483467 +karman_re50,sr,185,74.0,1.073166847229004,-0.14592383801937103,0.941782534122467,0.0033776629716157913,0.9197907447814941,0.0014313642168417573,0.0013538575731217861,-0.0034214325714856386,0.0024477336555719376,0.004469722975045443,-0.003455157857388258,-0.003004577476531267,-0.820510932870416,-2.4842526640190625,4.37816469700217,-0.00820510932870416,-0.024842526640190626,0.043781646970021695 +karman_re50,sr,186,74.4,1.0440585613250732,-0.036973197013139725,0.9259027242660522,0.09821901470422745,0.9418324828147888,0.046447351574897766,0.0020298075396567583,-0.0036857554223388433,0.0027720206417143345,0.0044095576740801334,-0.004291430581361055,-0.0030545347835868597,-1.125656128868873,-2.4731633817027454,4.389253979318487,-0.01125656128868873,-0.024731633817027456,0.043892539793184866 +karman_re50,sr,187,74.8,1.004929542541504,0.07606485486030579,0.9356335997581482,0.1643885374069214,0.9596269130706787,0.09282630681991577,0.00256221741437912,-0.003598277224227786,0.0028682672418653965,0.004202090669423342,-0.004745463375002146,-0.0030564675107598305,-1.346969894798872,-2.545171552231801,4.317245808789432,-0.01346969894798872,-0.02545171552231801,0.04317245808789432 +karman_re50,sr,188,75.2,0.9627701640129089,0.17245618999004364,0.9605631828308105,0.20938101410865784,0.9789630174636841,0.1317223161458969,0.0027818731032311916,-0.0030733931344002485,0.00273831095546484,0.003895942587405443,-0.004727768711745739,-0.0030293974559754133,-1.451905818295415,-2.6820961299304518,4.1803212310907805,-0.01451905818295415,-0.02682096129930452,0.041803212310907806 +karman_re50,sr,189,75.6,0.9267529845237732,0.23609183728694916,0.988955020904541,0.24309296905994415,1.001668930053711,0.1636919379234314,0.002603622619062662,-0.0021796703804284334,0.002387923886999488,0.0035806363448500633,-0.004271865356713533,-0.003065912751480937,-1.4237494145990641,-2.864582710452833,3.9978346505683993,-0.014237494145990641,-0.02864582710452833,0.03997834650568399 +karman_re50,sr,190,76.0,0.9012661576271057,0.2614724338054657,1.015110731124878,0.26846468448638916,1.0258132219314575,0.19448921084403992,0.002058313461020589,-0.0011051434557884932,0.0018624881049618125,0.0033400715328752995,-0.003471293253824115,-0.003224962158128619,-1.2699932842575874,-3.0946356102504446,3.7677817507707876,-0.012699932842575874,-0.030946356102504447,0.03767781750770788 +karman_re50,sr,191,76.4,0.8831724524497986,0.2520691156387329,1.0347548723220825,0.2849605977535248,1.0489846467971802,0.22665727138519287,0.0013339919969439507,-4.9963487981585786e-05,0.0012270263396203518,0.0031876659486442804,-0.0024426693562418222,-0.003471778007224202,-1.01712926002142,-3.355939708632665,3.5064776523885675,-0.0101712926002142,-0.03355939708632665,0.03506477652388568 +karman_re50,sr,192,76.8,0.8687955737113953,0.2139231562614441,1.043482780456543,0.28737378120422363,1.0692635774612427,0.2579507529735565,0.0006800791597925127,0.0008647830691188574,0.0005111105274409056,0.0030759975779801607,-0.0013035816373303533,-0.0037348857149481773,-0.6997952515409602,-3.6169869682869185,3.2454303927343138,-0.006997952515409602,-0.036169869682869185,0.03245430392734314 +karman_re50,sr,193,77.2,0.8607882857322693,0.15653148293495178,1.0378682613372803,0.26600944995880127,1.0847291946411133,0.2804579436779022,0.0003170787822455168,0.0016221064142882824,-0.0002936669916380197,0.0029788557440042496,-0.00015959437587298453,-0.003968337085098028,-0.3460540233206323,-3.862049632963897,3.000367728057335,-0.003460540233206323,-0.03862049632963897,0.030003677280573352 +karman_re50,sr,194,77.6,0.8663458228111267,0.09609159827232361,1.0168055295944214,0.21175141632556915,1.092984914779663,0.2798942029476166,0.00030974659603089094,0.002269915072247386,-0.0012105684727430344,0.002921674633398652,0.0008863022085279226,-0.004180019721388817,0.02556707358047137,-4.078221518521824,2.784195842499409,0.0002556707358047137,-0.04078221518521824,0.02784195842499409 +karman_re50,sr,195,78.0,0.8874769806861877,0.04671115428209305,0.9830778241157532,0.12357451766729355,1.0911513566970825,0.24177499115467072,0.0006432596128433943,0.002850065939128399,-0.0022321275901049376,0.0029315007850527763,0.0017461921088397503,-0.004362092353403568,0.39986425781937246,-4.254029074150375,2.608388286870858,0.003998642578193725,-0.04254029074150375,0.02608388286870858 +karman_re50,sr,196,78.4,0.9151132702827454,0.0060271210968494415,0.9471192955970764,0.016010409221053123,1.0770576000213623,0.1635340303182602,0.0012304825941100717,0.0033462056890130043,-0.003274381859228015,0.0029925883281975985,0.002362527884542942,-0.004464758560061455,0.7586485270624784,-4.366659479057635,2.4957578819635975,0.007586485270624784,-0.04366659479057635,0.024957578819635975 +karman_re50,sr,197,78.8,0.9383230805397034,-0.03791821375489235,0.9267679452896118,-0.08310998231172562,1.0501271486282349,0.05756101757287979,0.001910617109388113,0.0036608169320970774,-0.004162713885307312,0.0030496218241751194,0.0027291688602417707,-0.004432079382240772,1.0749345447100092,-4.39384738848356,2.468569972537672,0.010749345447100092,-0.0439384738848356,0.024685699725376722 +karman_re50,sr,198,79.2,0.9563944935798645,-0.0848393514752388,0.9322570562362671,-0.15440765023231506,1.012392520904541,-0.05634063109755516,0.002483078045770526,0.00364444637671113,-0.0046959067694842815,0.003057843539863825,0.002866300754249096,-0.004248579498380423,1.3142525209789118,-4.335185088075161,2.5272322729460717,0.013142525209789119,-0.04335185088075161,0.025272322729460717 +karman_re50,sr,199,79.6,0.9751680493354797,-0.12534376978874207,0.9555074572563171,-0.20227466523647308,0.970106840133667,-0.1571551263332367,0.002768319332972169,0.003198587102815509,-0.004762561991810799,0.0030326684936881065,0.0027781021781265736,-0.003954329993575811,1.4420805851130978,-4.209820080085055,2.652597280936178,0.014420805851130978,-0.04209820080085055,0.02652597280936178 +karman_re50,sr,200,80.0,0.9973838329315186,-0.15814845263957977,0.9838584065437317,-0.2376810610294342,0.9324593544006348,-0.22749143838882446,0.002664273139089346,0.00235930597409606,-0.004380560480058193,0.00305262953042984,0.002465613419190049,-0.0036340809892863035,1.437972359816458,-4.03387474197351,2.828542619047722,0.014379723598164581,-0.0403387474197351,0.02828542619047722 +karman_re50,sr,201,80.4,1.0214821100234985,-0.18881207704544067,1.0107556581497192,-0.2644995450973511,0.9051610827445984,-0.25968238711357117,0.0021815947256982327,0.0013021767372265458,-0.003633829765021801,0.0031891444232314825,0.0019673104397952557,-0.0033769342117011547,1.3055360397647306,-3.8114144943409367,3.0510028666802955,0.013055360397647306,-0.03811414494340937,0.030510028666802955 +karman_re50,sr,202,80.8,1.044983148574829,-0.2207689881324768,1.0319184064865112,-0.2828328609466553,0.8861142992973328,-0.25615599751472473,0.001466117100790143,0.00023196903930511326,-0.0026378724724054337,0.003424748545512557,0.0013467117678374052,-0.0032108279410749674,1.0681134468358793,-3.5540027130418186,3.308414647979414,0.010681134468358793,-0.035540027130418185,0.033084146479794144 +karman_re50,sr,203,81.2,1.0658938884735107,-0.25260719656944275,1.0429048538208008,-0.2884158790111542,0.8710588812828064,-0.22266386449337006,0.0007853475399315357,-0.0007123484974727035,-0.00151077623013407,0.003687293268740177,0.0006449155043810606,-0.003094383282586932,0.7598431482564023,-3.29132794538403,3.5710894156372017,0.007598431482564024,-0.0329132794538403,0.03571089415637202 +karman_re50,sr,204,81.6,1.0823777914047241,-0.27759692072868347,1.0400400161743164,-0.2721283733844757,0.8613799214363098,-0.16770854592323303,0.0003568572283256799,-0.0014957399107515812,-0.000361414480721578,0.003927305806428194,-0.00014198740245774388,-0.002993868663907051,0.41108118073680244,-3.0435102400305354,3.8189071209906973,0.004110811807368025,-0.030435102400305353,0.03818907120990697 +karman_re50,sr,205,82.0,1.0921787023544312,-0.2824351191520691,1.0217419862747192,-0.22423450648784637,0.864064633846283,-0.10646870732307434,0.00028546908288262784,-0.002159034600481391,0.0007103335810825229,0.004143438767641783,-0.0010370895033702254,-0.002926723100244999,0.04184380399761216,-2.820842633567203,4.041574727454029,0.00041843803997612157,-0.02820842633567203,0.040415747274540295 +karman_re50,sr,206,82.4,1.0924062728881836,-0.2517786920070648,0.9898414611816406,-0.14162024855613708,0.8827975392341614,-0.05466736853122711,0.000561852240934968,-0.002750513842329383,0.0016091844299808145,0.004333644639700651,-0.0020433254539966583,-0.002925260690972209,-0.3332260978238395,-2.6356093858893717,4.226807975131861,-0.003332260978238395,-0.026356093858893717,0.042268079751318605 +karman_re50,sr,207,82.8,1.0806390047073364,-0.1802557110786438,0.9530712962150574,-0.035708703100681305,0.9102537035942078,-0.013348234817385674,0.001113459118641913,-0.0032655142713338137,0.002270954195410013,0.004455848131328821,-0.0030927113257348537,-0.0029806867241859436,-0.6965179908230346,-2.5102792421960674,4.352138118825165,-0.006965179908230346,-0.025102792421960674,0.04352138118825165 +karman_re50,sr,208,83.2,1.055964708328247,-0.07793878763914108,0.9286180138587952,0.06700856983661652,0.9346635341644287,0.029507257044315338,0.00179244892206043,-0.0036262336652725935,0.0026804711669683456,0.004449264612048864,-0.004025184083729982,-0.0030416897498071194,-1.0228280417865252,-2.4666140702625174,4.395803290758715,-0.010228280417865252,-0.024666140702625176,0.043958032907587145 +karman_re50,sr,209,83.6,1.019824504852295,0.03607684001326561,0.9295299649238586,0.1436043679714203,0.953236997127533,0.076587975025177,0.002397593343630433,-0.0036794892512261868,0.00285809813067317,0.004291044548153877,-0.004636039026081562,-0.0030605641659349203,-1.2787397353411618,-2.510808296481594,4.351609064539638,-0.012787397353411618,-0.02510808296481594,0.04351609064539638 +karman_re50,sr,210,84.0,0.9777069687843323,0.14072611927986145,0.9506293535232544,0.1947525143623352,0.9715156555175781,0.11870945990085602,0.002745406934991479,-0.0033121660817414522,0.0028116812463849783,0.004012236371636391,-0.0047883642837405205,-0.0030344927217811346,-1.4290998576822054,-2.626608764218563,4.235808596802669,-0.014290998576822055,-0.02626608764218563,0.04235808596802669 +karman_re50,sr,211,84.4,0.9386138916015625,0.21747377514839172,0.9787285327911377,0.23192603886127472,0.9931678175926208,0.15254580974578857,0.002715339884161949,-0.002534880070015788,0.0025386621709913015,0.003689371980726719,-0.004481207579374313,-0.00304122781381011,-1.4492961308682513,-2.7918710119084054,4.070546349112827,-0.014492961308682512,-0.027918710119084054,0.04070546349112827 +karman_re50,sr,212,84.8,0.9094016551971436,0.25659963488578796,1.0062146186828613,0.26021939516067505,1.017134666442871,0.1832166612148285,0.002291490091010928,-0.0014997187536209822,0.0020688974764198065,0.00341662485152483,-0.0037919110618531704,-0.003155692480504513,-1.3386590946167611,-3.007393112231618,3.8550242487896136,-0.013386590946167612,-0.030073931122316183,0.03855024248789614 +karman_re50,sr,213,85.2,0.8892315030097961,0.25912919640541077,1.0287339687347412,0.2802351415157318,1.0408982038497925,0.21490316092967987,0.0016018110327422619,-0.00041910717845894396,0.0014656243147328496,0.003235330805182457,-0.0028337801340967417,-0.003378709778189659,-1.1176310858414522,-3.260587379338603,3.601829981682629,-0.011176310858414522,-0.03260587379338603,0.03601829981682629 +karman_re50,sr,214,85.6,0.8735409379005432,0.2305782288312912,1.041836142539978,0.2886888086795807,1.0623754262924194,0.24708566069602966,0.0008914479403756559,0.0005527340690605342,0.0007774536497890949,0.003113958053290844,-0.0017206663032993674,-0.0036400926765054464,-0.8198780136286341,-3.5249628852477928,3.3374544757734395,-0.00819878013628634,-0.03524962885247793,0.033374544757734395 +karman_re50,sr,215,86.0,0.8624305725097656,0.17860448360443115,1.0416388511657715,0.277141809463501,1.0797741413116455,0.2741117775440216,0.00040838506538420916,0.0013635866343975067,8.320066626765765e-06,0.0030103540048003197,-0.000566799018997699,-0.0038847913965582848,-0.4763807753657103,-3.7752433192696855,3.087174041751547,-0.004763807753657103,-0.03775243319269685,0.030871740417515472 +karman_re50,sr,216,86.4,0.8623768091201782,0.11716577410697937,1.0261365175247192,0.23548391461372375,1.0909929275512695,0.283795028924942,0.00027184351347386837,0.002045263070613146,-0.0008652000688016415,0.0029344051145017147,0.0005263236816972494,-0.004105290863662958,-0.10967274633817352,-4.002995327724227,2.8594220332970055,-0.0010967274633817351,-0.04002995327724227,0.028594220332970054 +karman_re50,sr,217,86.8,0.8784401416778564,0.06301353126764297,0.9963408708572388,0.1588166356086731,1.0931792259216309,0.26040035486221313,0.0004884049412794411,0.002647669054567814,-0.0018533350666984916,0.0029205307364463806,0.0014629987999796867,-0.004303327761590481,0.26535761918994955,-4.196840208957897,2.6655771520633356,0.0026535761918994954,-0.04196840208957897,0.026655771520633358 +karman_re50,sr,218,87.2,0.9052668809890747,0.020559091120958328,0.9593737125396729,0.05546299368143082,1.0836946964263916,0.195903018116951,0.0009976918809115887,0.003180801635608077,-0.0029044856783002615,0.0029689790681004524,0.002170002553611994,-0.004442128352820873,0.6324106641983057,-4.3354070625063255,2.5270102985149068,0.006324106641983057,-0.04335407062506325,0.02527010298514907 +karman_re50,sr,219,87.6,0.9307790994644165,-0.021293213590979576,0.9313231706619263,-0.05000258982181549,1.061314344406128,0.09788057208061218,0.001667504315264523,0.003577506635338068,-0.003874480491504073,0.0030335464980453253,0.0026234614197164774,-0.004461647942662239,0.9676831713040358,-4.394487582230507,2.4679297787907255,0.009676831713040358,-0.04394487582230507,0.024679297787907256 +karman_re50,sr,220,88.0,0.950062096118927,-0.06818676739931107,0.9274649024009705,-0.13199318945407867,1.0269383192062378,-0.015598268248140812,0.0023031472228467464,0.003698152955621481,-0.0045549883507192135,0.0030602007173001766,0.0028414095286279917,-0.004330163821578026,1.2391296911589798,-4.365031209824912,2.4973861511963196,0.012391296911589798,-0.04365031209824912,0.024973861511963198 +karman_re50,sr,221,88.4,0.9679643511772156,-0.11178021132946014,0.9459345936775208,-0.18683357536792755,0.9852897524833679,-0.12345035374164581,0.0027073738165199757,0.003411042969673872,-0.004795188084244728,0.0030394098721444607,0.002836412750184536,-0.004068207461386919,1.4104613961073247,-4.261625989198864,2.600791371822368,0.014104613961073247,-0.04261625989198864,0.026007913718223682 +karman_re50,sr,222,88.8,0.9890105724334717,-0.14685560762882233,0.9735518097877502,-0.2259395569562912,0.945005476474762,-0.20630483329296112,0.0027517417911440134,0.002699584700167179,-0.004566045477986336,0.0030346005223691463,0.0026040314696729183,-0.003746224567294121,1.455313592244573,-4.103930055144162,2.75848730587707,0.014553135922445731,-0.04103930055144162,0.0275848730587707 +karman_re50,sr,223,89.2,1.0127676725387573,-0.1776602417230606,1.0015076398849487,-0.25571590662002563,0.9138630628585815,-0.25240665674209595,0.0023927560541778803,0.0016962444642558694,-0.003937911242246628,0.0031271150801330805,0.0021657126490026712,-0.0034595991019159555,1.3673029637887713,-3.8965331629257784,2.9658841980954542,0.013673029637887713,-0.038965331629257784,0.02965884198095454 +karman_re50,sr,224,89.6,1.0367459058761597,-0.20906399190425873,1.025253415107727,-0.27732256054878235,0.8924233913421631,-0.26118043065071106,0.001734384335577488,0.0006089163944125175,-0.0030179708264768124,0.003334399778395891,0.0015815289225429296,-0.003262822050601244,1.1639349336525036,-3.648616954515381,3.2138004065058516,0.011639349336525035,-0.03648616954515381,0.03213800406505852 +karman_re50,sr,225,90.0,1.0587496757507324,-0.2414127141237259,1.0403560400009155,-0.2883683145046234,0.8761129975318909,-0.23779302835464478,0.0010076870676130056,-0.00038938180659897625,-0.0019269926706328988,0.0035925237461924553,0.0009064878686331213,-0.00313383131287992,0.8771049020378341,-3.384404656144057,3.478012704877175,0.008771049020378341,-0.03384404656144057,0.03478012704877175 +karman_re50,sr,226,90.4,1.0770047903060913,-0.2700660824775696,1.0427601337432861,-0.28121480345726013,0.8638057112693787,-0.18923482298851013,0.0004716796684078872,-0.0012291999300941825,-0.0007720405119471252,0.0038421694189310074,0.00015311790048144758,-0.003027286846190691,0.5403326027680939,-3.131273875551336,3.7311434854698966,0.005403326027680939,-0.03131273875551336,0.03731143485469897 +karman_re50,sr,227,90.8,1.0895525217056274,-0.28406408429145813,1.0300745964050293,-0.2456330507993698,0.8611955046653748,-0.1281818449497223,0.0002696366573218256,-0.001929956371895969,0.0003389259800314903,0.004066853784024715,-0.0006994528230279684,-0.0029434573370963335,0.17642374670758104,-2.8983643871035545,3.9640529739176777,0.0017642374670758104,-0.028983643871035546,0.039640529739176776 +karman_re50,sr,228,91.2,1.0936297178268433,-0.2676362097263336,1.0026074647903442,-0.17515422403812408,0.8744081258773804,-0.0718040019273758,0.0004255488747730851,-0.0025435753632336855,0.0013108535204082727,0.004271096549928188,-0.001667884411290288,-0.002918619429692626,-0.19801439026705792,-2.6966299743216013,4.1657873866996304,-0.001980143902670579,-0.026966299743216016,0.041657873866996306 +karman_re50,sr,229,91.6,1.086413025856018,-0.2104647010564804,0.9659984111785889,-0.07520909607410431,0.9001836180686951,-0.027795938774943352,0.0008902654517441988,-0.0030921960715204477,0.0020619004499167204,0.004424579907208681,-0.0027163836639374495,-0.002958523342385888,-0.5680325653535834,-2.5468362082197,4.315581152801532,-0.005680325653535834,-0.025468362082197,0.04315581152801532 +karman_re50,sr,230,92.0,1.0663717985153198,-0.11733818054199219,0.934907078742981,0.03213227167725563,0.9266578555107117,0.01327731367200613,0.0015434692613780499,-0.0035221714060753584,0.0025597838684916496,0.004469446372240782,-0.003715713042765856,-0.0030229398980736732,-0.9111983146611128,-2.4725676437403665,4.389849717280866,-0.009111983146611128,-0.024725676437403667,0.04389849717280866 +karman_re50,sr,231,92.4,1.0339202880859375,-0.005118622910231352,0.9261828064918518,0.11942824721336365,0.946858823299408,0.05963034927845001,0.002199382521212101,-0.003703539725393057,0.0028187152929604053,0.004364030435681343,-0.004464062862098217,-0.0030582561157643795,-1.1967103824193772,-2.4853512699829072,4.377066091038325,-0.011967103824193772,-0.024853512699829074,0.043770660910383244 +karman_re50,sr,232,92.8,0.9930213689804077,0.10529628396034241,0.9415236115455627,0.17842474579811096,0.9645315408706665,0.10453711450099945,0.0026594591327011585,-0.003495394252240658,0.002854269463568926,0.004121851641684771,-0.004788958001881838,-0.0030431661289185286,-1.3887946013297094,-2.577374744038683,4.285042616982549,-0.013887946013297094,-0.02577374744038683,0.04285042616982549 +karman_re50,sr,233,93.2,0.9518045783042908,0.19384419918060303,0.9683759212493896,0.21964310109615326,0.9849368929862976,0.1410232037305832,0.002774670720100403,-0.002856412436813116,0.0026629683561623096,0.0038043237291276455,-0.004641203675419092,-0.0030303264502435923,-1.457530740982393,-2.725866047000244,4.136551314020989,-0.014575307409823931,-0.02725866047000244,0.041365513140209885 +karman_re50,sr,234,93.6,0.918731153011322,0.24692319333553314,0.9966680407524109,0.2509366571903229,1.0083990097045898,0.17214077711105347,0.0024868189357221127,-0.0018903452437371016,0.002258370164781809,0.0035058751236647367,-0.004076962359249592,-0.0031020846217870712,-1.3928743219505708,-2.9250989084252215,3.9373184525960108,-0.013928743219505709,-0.029250989084252214,0.03937318452596011 +karman_re50,sr,235,94.0,0.8958337306976318,0.26211947202682495,1.0214948654174805,0.27405884861946106,1.0325195789337158,0.20327207446098328,0.0018669606652110815,-0.0008033131598494947,0.0016953031299635768,0.003292070236057043,-0.0032019317150115967,-0.0032904690597206354,-1.208120777493669,-3.167173748540052,3.6952436124811796,-0.012081207774936691,-0.031671737485400524,0.0369524361248118 +karman_re50,sr,236,94.4,0.8788536190986633,0.24409742653369904,1.038467526435852,0.2874220907688141,1.0549969673156738,0.23563332855701447,0.001132662408053875,0.000219361245399341,0.0010338923893868923,0.0031540340278297663,-0.002133316593244672,-0.003544833743944764,-0.9338817096084553,-3.4301616858857047,3.432255675135527,-0.009338817096084553,-0.03430161685885705,0.034322556751355274 +karman_re50,sr,237,94.8,0.8655411005020142,0.1993843913078308,1.0433787107467651,0.28431016206741333,1.0740309953689575,0.26556554436683655,0.0005472172633744776,0.0010891853598877788,0.0002957842661999166,0.0030448762699961662,-0.0009826035238802433,-0.0037981539499014616,-0.6039731875268514,-3.6867490559744267,3.1756683050468055,-0.0060397318752685135,-0.03686749055974427,0.031756683050468054 +karman_re50,sr,238,95.2,0.8605981469154358,0.13932393491268158,1.0334968566894531,0.25454261898994446,1.0877902507781982,0.2833137512207031,0.0002793687744997442,0.0018107672221958637,-0.0005352477310225368,0.0029563161078840494,0.00014436314813792706,-0.0040274797938764095,-0.24378307611030792,-3.923770095511398,2.938647265509834,-0.002437830761103079,-0.03923770095511398,0.02938647265509834 +karman_re50,sr,239,95.6,0.8708536624908447,0.08104059100151062,1.0085211992263794,0.19042456150054932,1.093645453453064,0.2734943628311157,0.0003722252731677145,0.002437123330309987,-0.001483321306295693,0.0029177069664001465,0.001149294781498611,-0.004236090928316116,0.12959888381707713,-4.131632859992721,2.730784501028511,0.0012959888381707714,-0.04131632859992721,0.02730784501028511 +karman_re50,sr,240,96.0,0.8951390981674194,0.03509782254695892,0.9727646112442017,0.09462904930114746,1.0886343717575073,0.22379568219184875,0.0007870819536037743,0.0029986617155373096,-0.0025236490182578564,0.0029477255884557962,0.0019433468114584684,-0.004404561128467321,0.502028612194221,-4.293287947053214,2.569129413968018,0.00502028612194221,-0.04293287947053214,0.02569129413968018 +karman_re50,sr,241,96.4,0.9223249554634094,-0.005504466127604246,0.9392620921134949,-0.013568726368248463,1.0709384679794312,0.13615116477012634,0.001417689141817391,0.003458031453192234,-0.0035465380642563105,0.0030127328354865313,0.0024875060189515352,-0.004471997730433941,0.8518369721537155,-4.383820173130073,2.478597187891159,0.008518369721537154,-0.04383820173130073,0.02478597187891159 +karman_re50,sr,242,96.8,0.9435903429985046,-0.05104858800768852,0.9257378578186035,-0.1058933362364769,1.0405341386795044,0.02586786448955536,0.002089180052280426,0.003696445608511567,-0.004355763550847769,0.003055957145988941,0.0027874864172190428,-0.004394169431179762,1.150666362276015,-4.3854087061991915,2.4770086548220407,0.01150666362276015,-0.04385408706199192,0.024770086548220407 +karman_re50,sr,243,97.2,0.9612100720405579,-0.09699083119630814,0.9374682903289795,-0.16945450007915497,1.000647783279419,-0.08643515408039093,0.0025969732087105513,0.003565771970897913,-0.004764317534863949,0.003048622515052557,0.002863845322281122,-0.00417330814525485,1.3621871736830289,-4.3062535070716415,2.556163853949591,0.013621871736830288,-0.04306253507071642,0.025561638539495907 +karman_re50,sr,244,97.6,0.9809712171554565,-0.1350104957818985,0.9632221460342407,-0.2130415141582489,0.9587975144386292,-0.18021947145462036,0.002782359952107072,0.0029995013028383255,-0.004699328448623419,0.003028505714610219,0.0027141657192260027,-0.003863237565383315,1.4546579847016652,-4.16663037190221,2.6957869891190223,0.014546579847016652,-0.0416663037190221,0.026957869891190225 +karman_re50,sr,245,98.0,1.0040538311004639,-0.16663245856761932,0.9917089343070984,-0.24590471386909485,0.9238715171813965,-0.240217387676239,0.002565820002928376,0.0020798889454454184,-0.004202700685709715,0.0030819138046354055,0.002345223678275943,-0.003555024042725563,1.4137215850996476,-3.9770322360614854,2.885385124959747,0.014137215850996476,-0.039770322360614854,0.028853851249597467 +karman_re50,sr,246,98.4,1.0282528400421143,-0.1975209265947342,1.0174798965454102,-0.2704983651638031,0.8993679285049438,-0.2620031237602234,0.0019942496437579393,0.0009993478888645768,-0.003375992411747575,0.0032502745743840933,0.0018056483240798116,-0.003324629971757531,1.2486611308216284,-3.7405711567150655,3.1218462043061668,0.012486611308216284,-0.037405711567150654,0.031218462043061668 +karman_re50,sr,247,98.8,1.051156997680664,-0.22979094088077545,1.0361933708190918,-0.2859739065170288,0.8816481828689575,-0.2495596557855606,0.0012603813083842397,-4.529158468358219e-05,-0.002334735356271267,0.00349719007499516,0.001158116851001978,-0.003176128026098013,0.9881166948561613,-3.4798289977192858,3.382588363301947,0.009881166948561613,-0.03479828997719286,0.03382588363301947 +karman_re50,sr,248,99.2,1.0709141492843628,-0.26067158579826355,1.0435194969177246,-0.28654658794403076,0.8674991130828857,-0.2090359628200531,0.0006312624318525195,-0.0009447511401958764,-0.0011915554059669375,0.003753814147785306,0.0004338764410931617,-0.003064075019210577,0.6660719557047382,-3.2212691305591146,3.6411482304621177,0.006660719557047382,-0.032212691305591144,0.03641148230462118 +karman_re50,sr,249,99.6,1.08579683303833,-0.2816595435142517,1.0364223718643188,-0.26234281063079834,0.8604725003242493,-0.1505732387304306,0.0003006352053489536,-0.0016896921442821622,-5.195770791033283e-05,0.003987192176282406,-0.0003783027932513505,-0.0029679962899535894,0.3099628913532755,-2.9801945455970635,3.8822228154241687,0.0030996289135327548,-0.029801945455970636,0.03882222815424169 +karman_re50,sr,250,100.0,1.0933330059051514,-0.2779962718486786,1.014066219329834,-0.20463623106479645,0.8677442669868469,-0.0907452404499054,0.0003303923876956105,-0.0023288829252123833,0.0009820804698392749,0.004200631286948919,-0.0013039278564974666,-0.002919513499364257,-0.062232610007113484,-2.764765771972276,4.097651589048956,-0.0006223261000711348,-0.02764765771972276,0.04097651589048956 +karman_re50,sr,251,100.4,1.0904834270477295,-0.2358573079109192,0.9795992970466614,-0.11364161223173141,0.89014732837677,-0.04260202497243881,0.0006928276270627975,-0.00290278228931129,0.0018199724145233631,0.004379896447062492,-0.0023330107796937227,-0.0029380670748651028,-0.43593199663867505,-2.593497425990626,4.268919935030606,-0.0043593199663867505,-0.025934974259906263,0.042689199350306066 +karman_re50,sr,252,100.8,1.075143814086914,-0.1542140543460846,0.9443247318267822,-0.005565866362303495,0.9177471995353699,-0.0020608892664313316,0.0012961645843461156,-0.003387142438441515,0.0024082856252789497,0.004469954874366522,-0.003372510662302375,-0.003001370234414935,-0.7919561075103592,-2.488409584367846,4.374007776653386,-0.007919561075103592,-0.02488409584367846,0.04374007776653386 +karman_re50,sr,253,101.2,1.0468918085098267,-0.0465601347386837,0.9261860847473145,0.09134869277477264,0.9401950240135193,0.0424741692841053,0.00197541038505733,-0.0036768477875739336,0.0027500642463564873,0.004419567063450813,-0.004236393142491579,-0.003050882602110505,-1.1023730923347268,-2.470914558436122,4.39150280258511,-0.011023730923347267,-0.024709145584361217,0.04391502802585111 +karman_re50,sr,254,101.6,1.0082604885101318,0.06694822013378143,0.9338668584823608,0.15984801948070526,0.9579724073410034,0.08914413303136826,0.0025270050391554832,-0.0036170873790979385,0.002866964088752866,0.004221667535603046,-0.004728423431515694,-0.003053711261600256,-1.3322875003837258,-2.5362383754670326,4.3261789855542,-0.013322875003837258,-0.025362383754670325,0.043261789855542 +karman_re50,sr,255,102.0,0.966081440448761,0.1654500812292099,0.9581369161605835,0.20611755549907684,0.9771135449409485,0.12878499925136566,0.002778941299766302,-0.003126522060483694,0.0027588086668401957,0.003921759780496359,-0.004745860118418932,-0.0030289078131318092,-1.4484078683392376,-2.6674927091915364,4.194924651829695,-0.014484078683392377,-0.026674927091915365,0.041949246518296956 +karman_re50,sr,256,102.4,0.9294193983078003,0.23221957683563232,0.9866589307785034,0.24060264229774475,0.9997338056564331,0.1611136496067047,0.00263648247346282,-0.0022645301651209593,0.0024275535251945257,0.003606581361964345,-0.004321282263845205,-0.0030630677938461304,-1.4311081941300148,-2.8473809100042526,4.01503645101698,-0.014311081941300149,-0.028473809100042526,0.040150364510169796 +karman_re50,sr,257,102.8,0.9031647443771362,0.26075735688209534,1.013239860534668,0.26665687561035156,1.0239362716674805,0.19184117019176483,0.0021171404514461756,-0.0011973390355706215,0.001913026673719287,0.003359358524903655,-0.0035461822990328074,-0.003211826318874955,-1.2869740790564645,-3.0758101079442692,3.786607253076963,-0.012869740790564646,-0.03075810107944269,0.03786607253076963 +karman_re50,sr,258,103.2,0.8845816850662231,0.2540692090988159,1.0335536003112793,0.28403133153915405,1.0472133159637451,0.22391857206821442,0.001393485115841031,-0.00013447106175590307,0.0012811524793505669,0.0031983167864382267,-0.0025356062687933445,-0.0034505657386034727,-1.041047768786222,-3.3347387145230147,3.527678646498218,-0.010410477687862222,-0.033347387145230147,0.03527678646498218 +karman_re50,sr,259,103.6,0.8697126507759094,0.21806524693965912,1.043187141418457,0.28795865178108215,1.0676307678222656,0.2554905414581299,0.0007271729409694672,0.0007938656490296125,0.0005713164573535323,0.003082430921494961,-0.0014020918169990182,-0.003707755822688341,-0.7278395457258765,-3.5961519731707665,3.2662653878504657,-0.007278395457258766,-0.035961519731707664,0.03266265387850466 +karman_re50,sr,260,104.0,0.860858142375946,0.16175638139247894,1.038830280303955,0.2689918279647827,1.0835399627685547,0.2792030870914459,0.00033442548010498285,0.0015642386861145496,-0.00022285482555162162,0.0029826408717781305,-0.0002539210254326463,-0.003945502452552319,-0.3763205056214073,-3.8401029387418695,3.0223144222793623,-0.003763205056214073,-0.0384010293874187,0.030223144222793624 +karman_re50,sr,261,104.4,0.8651854991912842,0.10087891668081284,1.0191740989685059,0.21769466996192932,1.0926438570022583,0.2812148928642273,0.0002984069287776947,0.0022191840689629316,-0.0011267137015238404,0.002923311898484826,0.0008070328622125089,-0.00416339049115777,-0.00592419125778649,-4.06081509966756,2.801602261353672,-5.9241912577864896e-05,-0.040608150996675606,0.02801602261353672 +karman_re50,sr,262,104.8,0.8853490352630615,0.050368670374155045,0.9863646626472473,0.13203394412994385,1.0918817520141602,0.24658803641796112,0.0006051991949789226,0.0028037652373313904,-0.002140788361430168,0.002931348280981183,0.0016856580041348934,-0.004352272488176823,0.3687571872818226,-4.242084779210312,2.620332581810921,0.0036875718728182263,-0.04242084779210312,0.026203325818109212 +karman_re50,sr,263,105.2,0.9129831194877625,0.009435930289328098,0.9499655365943909,0.025095077231526375,1.0788826942443848,0.17141512036323547,0.0011742818169295788,0.003309759311378002,-0.0031902091577649117,0.0029895827174186707,0.0023203338496387005,-0.004463271703571081,0.7296869328750918,-4.360338079636237,2.5020792813849955,0.007296869328750918,-0.04360338079636237,0.025020792813849956 +karman_re50,sr,264,105.6,0.9366461038589478,-0.034002743661403656,0.9275367856025696,-0.07578688114881516,1.0528663396835327,0.0670599713921547,0.0018542190082371235,0.003645572578534484,-0.004102332983165979,0.003044873708859086,0.0027048932388424873,-0.004440101329237223,1.050836949325654,-4.394840488081975,2.4675768729392575,0.01050836949325654,-0.043948404880819754,0.024675768729392575 +karman_re50,sr,265,106.0,0.9547961354255676,-0.0810433179140091,0.9308059215545654,-0.14950452744960785,1.0157122611999512,-0.04696891829371452,0.0024427520111203194,0.0036632579285651445,-0.004670578520745039,0.003054884262382984,0.0028625684790313244,-0.004264356568455696,1.2981088845317565,-4.343535315527905,2.518882045493327,0.012981088845317566,-0.043435353155279056,0.02518882045493327 +karman_re50,sr,266,106.4,0.9733735918998718,-0.12229840457439423,0.9531548023223877,-0.19882258772850037,0.973512589931488,-0.14961738884449005,0.0027589979581534863,0.0032525230199098587,-0.004776663612574339,0.003031123662367463,0.0027953265234827995,-0.00398014672100544,1.4365388676635171,-4.222071607125317,2.6403457538959154,0.014365388676635171,-0.04222071607125317,0.026403457538959153 +karman_re50,sr,267,106.8,0.9954608678817749,-0.15555554628372192,0.9815314412117004,-0.23503535985946655,0.935291588306427,-0.2229638695716858,0.002691027009859681,0.002441935706883669,-0.004426189232617617,0.003049277001991868,0.0025028579402714968,-0.0036613026168197393,1.4439460873833687,-4.051766216066245,2.8106511449549876,0.014439460873833687,-0.040517662160662445,0.028106511449549877 +karman_re50,sr,268,107.2,1.0195866823196411,-0.18620477616786957,1.0087889432907104,-0.262542188167572,0.9071838855743408,-0.2583703100681305,0.0022331851068884134,0.0013952243607491255,-0.0037065711803734303,0.0031777266412973404,0.002016309881582856,-0.0033977050334215164,1.3213396180938353,-3.8314066565003473,3.031010704520885,0.013213396180938353,-0.038314066565003475,0.03031010704520885 +karman_re50,sr,269,107.6,1.043184757232666,-0.2180423140525818,1.0305670499801636,-0.28167951107025146,0.8875958919525146,-0.25764453411102295,0.0015292222378775477,0.00032075258786790073,-0.0027298005297780037,0.003404031042009592,0.001401012996211648,-0.00322324363514781,1.091328906864519,-3.5750505478388814,3.2873668131823504,0.010913289068645192,-0.03575050547838882,0.032873668131823505 +karman_re50,sr,270,108.0,1.0642178058624268,-0.2500605285167694,1.0424047708511353,-0.2886335849761963,0.8720901012420654,-0.2264278084039688,0.0008314076694659889,-0.0006380222039297223,-0.0016108499839901924,0.00366233685053885,0.0007074980530887842,-0.0030980503652244806,0.7877284467342107,-3.3129934415440814,3.549423919477151,0.007877284467342108,-0.03312993441544081,0.03549423919477151 +karman_re50,sr,271,108.4,1.0810741186141968,-0.2760433256626129,1.040735125541687,-0.2745908796787262,0.8616594076156616,-0.1728120744228363,0.0003797774843405932,-0.001435235608369112,-0.00045726855751127005,0.0039033531211316586,-7.236951205413789e-05,-0.002999055664986372,0.4420990409631248,-3.0622268865628546,3.800190474458378,0.004420990409631248,-0.030622268865628546,0.03800190474458378 +karman_re50,sr,272,108.8,1.0916467905044556,-0.28320035338401794,1.0238368511199951,-0.22961193323135376,0.8631515502929688,-0.11141190677881241,0.00027841393603011966,-0.0021067082416266203,0.0006268087308853865,0.004124444909393787,-0.0009546854416839778,-0.0029305198695510626,0.0733985994090082,-2.839896809121396,4.022520551899836,0.000733985994090082,-0.02839896809121396,0.040225205518998365 +karman_re50,sr,273,109.2,1.0928994417190552,-0.2559528052806854,0.9929907321929932,-0.14971044659614563,0.8807814717292786,-0.05849786847829819,0.0005279122269712389,-0.0027031719218939543,0.0015446123434230685,0.004322641063481569,-0.0019509615376591682,-0.0029252637177705765,-0.30158416501718216,-2.6505119696990955,4.211905391322136,-0.0030158416501718218,-0.026505119696990955,0.04211905391322136 +karman_re50,sr,274,109.6,1.0822274684906006,-0.1876538097858429,0.9560858011245728,-0.04485585540533066,0.9080466628074646,-0.016700487583875656,0.0010580546222627163,-0.003227849490940571,0.0022248735185712576,0.004452316556125879,-0.003004638245329261,-0.0029775998555123806,-0.666590967242922,-2.51747635967512,4.344941001346112,-0.00666590967242922,-0.025174763596751203,0.04344941001346112 +karman_re50,sr,275,110.0,1.058512806892395,-0.08724860846996307,0.9297991394996643,0.05925440788269043,0.9329006671905518,0.025673069059848785,0.0017327870009467006,-0.0036035359371453524,0.0026523778215050697,0.00445540202781558,-0.0039581372402608395,-0.003037242917343974,-0.9972454948734857,-2.46690485981226,4.395512501208972,-0.009972454948734857,-0.024669048598122603,0.04395512501208972 +karman_re50,sr,276,110.4,1.023032546043396,0.02659371867775917,0.928383469581604,0.13833679258823395,0.9516493082046509,0.07270612567663193,0.002352931536734104,-0.003689136588945985,0.0028490193653851748,0.0043071419931948185,-0.004602326080203056,-0.003055956680327654,-1.2605969088063382,-2.503887352951878,4.358530008069354,-0.012605969088063383,-0.025038873529518783,0.04358530008069354 +karman_re50,sr,277,110.8,0.981117308139801,0.13279159367084503,0.9483411312103271,0.1911233514547348,0.9697567820549011,0.11552438884973526,0.0027301511727273464,-0.003359222784638405,0.0028242645785212517,0.004036484286189079,-0.004793806932866573,-0.00303541193716228,-1.4209396616437722,-2.6130699986217167,4.249347362399516,-0.014209396616437721,-0.026130699986217167,0.04249347362399516 +karman_re50,sr,278,111.2,0.941556453704834,0.21240948140621185,0.9763567447662354,0.22916288673877716,0.9912469983100891,0.1499088853597641,0.0027350112795829773,-0.002611607313156128,0.002572129713371396,0.003716509323567152,-0.004519972484558821,-0.0030404464341700077,-1.4527336082879638,-2.776616587968076,4.0858007730531565,-0.014527336082879639,-0.02776616587968076,0.04085800773053157 +karman_re50,sr,279,111.6,0.9115292429924011,0.25477179884910583,1.0041543245315552,0.2581433653831482,1.0152080059051514,0.1806240975856781,0.0023410790599882603,-0.0015927475178614259,0.0021162880584597588,0.003438785905018449,-0.0038584626745432615,-0.0031461850740015507,-1.3524335129888039,-2.9891373138495982,3.8732800471716335,-0.01352433512988804,-0.029891373138495984,0.03873280047171634 +karman_re50,sr,280,112.0,0.8907747864723206,0.260181188583374,1.0272446870803833,0.27891111373901367,1.039064884185791,0.21218088269233704,0.0016629556193947792,-0.0005077376845292747,0.0015192813007161021,0.0032492917962372303,-0.002919998951256275,-0.003357910318300128,-1.139359374351082,-3.239879661742653,3.6225376992785794,-0.01139359374351082,-0.03239879661742653,0.036225376992785795 +karman_re50,sr,281,112.4,0.8746662735939026,0.23401078581809998,1.0411587953567505,0.2886064052581787,1.0606622695922852,0.24446044862270355,0.0009445033501833677,0.00047860131599009037,0.0008352997247129679,0.0031212682370096445,-0.0018197203753516078,-0.0036151327658444643,-0.8465517301864323,-3.502233342929023,3.360184018092209,-0.008465517301864322,-0.03502233342929023,0.03360184018092209 +karman_re50,sr,282,112.8,0.8629004955291748,0.18358716368675232,1.0421026945114136,0.2791491746902466,1.0783882141113281,0.2722860276699066,0.0004366328939795494,0.0013022726634517312,7.486404501833022e-05,0.003015208523720503,-0.0006658582133240998,-0.003863611025735736,-0.5063009613756204,-3.7541421984294754,3.108275162591757,-0.005063009613756204,-0.037541421984294755,0.03108275162591757 +karman_re50,sr,283,113.2,0.8617125153541565,0.12226950377225876,1.0279911756515503,0.24035145342350006,1.0903152227401733,0.28404492139816284,0.00026953165070153773,0.0019909944385290146,-0.0007857448072172701,0.002937795128673315,0.00044101965613663197,-0.004086373373866081,-0.1412525620811577,-3.9859713504139185,2.8764460106073138,-0.0014125256208115768,-0.03985971350413919,0.02876446010607314 +karman_re50,sr,284,113.6,0.8765708804130554,0.06705905497074127,0.9993593096733093,0.1665416955947876,1.0934970378875732,0.2639385163784027,0.0004591054457705468,0.0025992996525019407,-0.0017634157557040453,0.0029218546114861965,0.0013947257539257407,-0.004289967939257622,0.23393872881128883,-4.182253535261113,2.6801638257601192,0.002339387288112888,-0.04182253535261113,0.026801638257601193 +karman_re50,sr,285,114.0,0.9030140042304993,0.023929597809910774,0.9625372886657715,0.0646643415093422,1.0851181745529175,0.20282045006752014,0.0009462429443374276,0.0031405158806592226,-0.0028155390173196793,0.0029666356276720762,0.0021205111406743526,-0.00443708011880517,0.6022440592622721,-4.325805526514661,2.536611834506571,0.006022440592622721,-0.04325805526514661,0.025366118345065712 +karman_re50,sr,286,114.4,0.9289324283599854,-0.01753058284521103,0.9329289197921753,-0.04180118441581726,1.063750982284546,0.1069965735077858,0.0016082659130916,0.0035503616090863943,-0.0038025861140340567,0.0030286326073110104,0.002592516830191016,-0.004466115962713957,0.9412836235514291,-4.392718942335553,2.469698418685679,0.009412836235514291,-0.04392718942335553,0.024696984186856792 +karman_re50,sr,287,114.8,0.9484884142875671,-0.06421352177858353,0.9266801476478577,-0.12627683579921722,1.0301179885864258,-0.005980014801025391,0.0022526017855852842,0.0037012959364801645,-0.004516417160630226,0.0030564151238650084,0.002829607343301177,-0.004344284068793058,1.2195187406221384,-4.3711659558494596,2.4912514051717722,0.012195187406221384,-0.0437116595584946,0.024912514051717724 +karman_re50,sr,288,115.2,0.9662581086158752,-0.10843925178050995,0.9437534809112549,-0.18298093974590302,0.9887837767601013,-0.11509056389331818,0.0026864123065024614,0.003453601384535432,-0.004794304259121418,0.0030392080079764128,0.002845168113708496,-0.004091300535947084,1.4008554091695478,-4.273334455336545,2.5890829056846876,0.014008554091695477,-0.04273334455336545,0.025890829056846875 +karman_re50,sr,289,115.6,0.9871109127998352,-0.14414994418621063,0.9711548089981079,-0.2230341136455536,0.9481332898139954,-0.2006385773420334,0.0027637300081551075,0.0027735340408980846,-0.0045997402630746365,0.003033936955034733,0.0026340866461396217,-0.0037739789113402367,1.4568146609030201,-4.119162403438045,2.7432549575831877,0.014568146609030202,-0.04119162403438045,0.02743254957583188 +karman_re50,sr,290,116.0,1.0108251571655273,-0.17507725954055786,0.9993656873703003,-0.25351056456565857,0.9161697626113892,-0.24998408555984497,0.002437511458992958,0.0017868876457214355,-0.004001246299594641,0.003119011875241995,0.002211089478805661,-0.0034831780940294266,1.3794598084100878,-3.9151153763835302,2.9473019846377024,0.013794598084100877,-0.0391511537638353,0.029473019846377024 +karman_re50,sr,291,116.4,1.0348831415176392,-0.20635248720645905,1.0236356258392334,-0.2758311331272125,0.8940733075141907,-0.26171696186065674,0.0017950455658137798,0.000699312542565167,-0.0031042667105793953,0.0033150450326502323,0.0016347352648153901,-0.0032773695420473814,1.1846658249087212,-3.6693336546157473,3.193083706405485,0.011846658249087212,-0.03669333654615747,0.03193083706405485 +karman_re50,sr,292,116.8,1.0569988489151,-0.238722026348114,1.0395129919052124,-0.2879849374294281,0.8773455023765564,-0.2407996952533722,0.0010632992489263415,-0.0003113861021120101,-0.002023928100243211,0.003569382708519697,0.0009635731694288552,-0.003142032539471984,0.9037073791060891,-3.406573020305575,3.455844340715658,0.009037073791060892,-0.03406573020305575,0.03455844340715658 +karman_re50,sr,293,117.2,1.0755311250686646,-0.26800477504730225,1.0430054664611816,-0.2827492952346802,0.8644611239433289,-0.1939915418624878,0.0005045478465035558,-0.0011644859332591295,-0.0008720327168703079,0.0038183366414159536,0.00021856218518223614,-0.0030324768740683794,0.5697036963709106,-3.151768296728862,3.7106490642923697,0.0056970369637091055,-0.03151768296728862,0.0371064906429237 +karman_re50,sr,294,117.6,1.0887091159820557,-0.28381478786468506,1.0316872596740723,-0.2499045878648758,0.860799252986908,-0.13334475457668304,0.00027340621454641223,-0.0018749140435829759,0.00025005300994962454,0.0040468187071383,-0.0006217670161277056,-0.0029475856572389603,0.2079717766984603,-2.9173421352472917,3.9450752257739405,0.002079717766984603,-0.029173421352472917,0.039450752257739405 +karman_re50,sr,295,118.0,1.0937221050262451,-0.2705153524875641,1.005461573600769,-0.18236564099788666,0.8727473616600037,-0.0760459154844284,0.00040072400588542223,-0.0024945384357124567,0.0012383146677166224,0.004256146959960461,-0.0015789266908541322,-0.002919404301792383,-0.16625234488384283,-2.712430199589589,4.1499871614316435,-0.0016625234488384284,-0.027124301995895893,0.04149987161431644 +karman_re50,sr,296,118.4,1.0875900983810425,-0.21681243181228638,0.9692425727844238,-0.08425965905189514,0.8979433178901672,-0.03118230402469635,0.0008415609481744468,-0.003049507737159729,0.0020087703596800566,0.004417720250785351,-0.0026253683026880026,-0.002955799922347069,-0.537235860563481,-2.5571248296762805,4.305292531344952,-0.00537235860563481,-0.025571248296762807,0.043052925313449515 +karman_re50,sr,297,118.8,1.0685843229293823,-0.12616558372974396,0.9369011521339417,0.023607296869158745,0.9247382879257202,0.009632722474634647,0.0014840770745649934,-0.003493285272270441,0.0025257200468331575,0.004471729975193739,-0.0036390339955687523,-0.0030188849195837975,-0.8837103944515575,-2.4752722910446496,4.387145069976583,-0.008837103944515576,-0.024752722910446497,0.04387145069976583 +karman_re50,sr,298,119.2,1.0369371175765991,-0.014770891517400742,0.9258062839508057,0.11326780170202255,0.9452896118164062,0.05563913285732269,0.00214799540117383,-0.003703101072460413,0.002802872098982334,0.004376861732453108,-0.004417463671416044,-0.0030546400230377913,-1.175592191650984,-2.4812065293011285,4.381210831720104,-0.01175592191650984,-0.024812065293011287,0.04381210831720104 +karman_re50,sr,299,119.6,0.9964544177055359,0.09658966213464737,0.939501941204071,0.17431913316249847,0.9628871083259583,0.10105893015861511,0.0026323271449655294,-0.0035301577299833298,0.002858958439901471,0.004143965896219015,-0.004780415445566177,-0.003043361008167267,-1.376887106021746,-2.566619945827489,4.295797415193744,-0.01376887106021746,-0.02566619945827489,0.04295797415193744 +karman_re50,sr,300,120.0,0.9549974203109741,0.1876228004693985,0.9659753441810608,0.21659426391124725,0.9830803871154785,0.1382409632205963,0.0027806537691503763,-0.002925632055848837,0.0026894081383943558,0.0038316366262733936,-0.004670447204262018,-0.003029790474101901,-1.456795879784867,-2.7115331671146756,4.150884193906556,-0.01456795879784867,-0.027115331671146756,0.04150884193906556 +karman_re50,sr,301,120.4,0.9211320281028748,0.24393068253993988,0.9944571852684021,0.24861019849777222,1.006457805633545,0.16956762969493866,0.0025233542546629906,-0.0019792986568063498,0.002301529049873352,0.0035302801989018917,-0.004134968854486942,-0.0030958435963839293,-1.4034928908755857,-2.9068887837944697,3.9555285772267625,-0.014034928908755857,-0.029068887837944698,0.03955528577226763 +karman_re50,sr,302,120.8,0.8975224494934082,0.2621719241142273,1.0197581052780151,0.2724230885505676,1.0306425094604492,0.20058107376098633,0.0019253520295023918,-0.0008951725903898478,0.0017471840837970376,0.0033084049355238676,-0.00328383082523942,-0.0032726891804486513,-1.2274125822213255,-3.147134542416835,3.715282818604397,-0.012274125822213256,-0.03147134542416835,0.03715282818604397 +karman_re50,sr,303,121.2,0.8801165819168091,0.2467188686132431,1.0374623537063599,0.28679224848747253,1.0532292127609253,0.2329108566045761,0.0011890975292772055,0.0001381473703077063,0.0010902485810220242,0.0031635609921067953,-0.002229724545031786,-0.0035203599836677313,-0.9593929948320484,-3.4078544735203318,3.454562887500901,-0.009593929948320484,-0.03407854473520332,0.03454562887500901 +karman_re50,sr,304,121.6,0.8663040399551392,0.20391994714736938,1.0434093475341797,0.28543269634246826,1.0725035667419434,0.26331624388694763,0.0005844391416758299,0.001027866848744452,0.00035935521009378135,0.003050902858376503,-0.0010828841477632523,-0.003774939803406596,-0.6331046553739403,-3.664516291823621,3.1979010691976115,-0.006331046553739403,-0.03664516291823621,0.03197901069197612 +karman_re50,sr,305,122.0,0.8604071736335754,0.1445428431034088,1.0348659753799438,0.25828588008880615,1.086829423904419,0.28263235092163086,0.0002882961998693645,0.0017539222026243806,-0.00046104344073683023,0.002959436969831586,5.35525796294678e-05,-0.0040068840608000755,-0.2750288682933185,-3.904649845263703,2.957767515757529,-0.0027502886829331853,-0.03904649845263703,0.02957767515757529 +karman_re50,sr,306,122.4,0.8693742156028748,0.08549803495407104,1.0111877918243408,0.19714641571044922,1.093568205833435,0.2757387161254883,0.00035233062226325274,0.0023868344724178314,-0.0013963214587420225,0.0029204937163740396,0.0010737820994108915,-0.004220691509544849,0.09813125701955633,-4.116124794487014,2.746292566534218,0.0009813125701955633,-0.04116124794487014,0.027462925665342183 +karman_re50,sr,307,122.8,0.8929010033607483,0.038562774658203125,0.9760379195213318,0.10350653529167175,1.089627981185913,0.22955858707427979,0.0007419364410452545,0.002955014118924737,-0.002432757057249546,0.0029463977552950382,0.0018879867857322097,-0.004395042546093464,0.47103816884841787,-4.28139617692711,2.5810211840941224,0.004710381688484179,-0.0428139617692711,0.025810211840941226 +karman_re50,sr,308,123.2,0.9202970266342163,-0.001958210254088044,0.9415996670722961,-0.004758876282721758,1.0729937553405762,0.14464297890663147,0.0013599719386547804,0.0034266230650246143,-0.0034659593366086483,0.0030079076532274485,0.0024505003821104765,-0.004472791682928801,0.8239473446947723,-4.378464316810492,2.483953044210741,0.008239473446947723,-0.04378464316810492,0.024839530442107408 +karman_re50,sr,309,123.6,0.9419843554496765,-0.04705207422375679,0.9257845878601074,-0.09926749020814896,1.0434552431106567,0.03550349175930023,0.002034219913184643,0.0036887952592223883,-0.004303606227040291,0.0030510188080370426,0.0027687454130500555,-0.004405555780977011,1.128243527593169,-4.389083007242905,2.473334353778327,0.011282435275931691,-0.043890830072429055,0.02473334353778327 +karman_re50,sr,310,124.0,0.9596073031425476,-0.09337074309587479,0.9356454610824585,-0.1650635153055191,1.0040837526321411,-0.07742860913276672,0.0025653636548668146,0.00359336263500154,-0.004750177729874849,0.003047552425414324,0.0028649824671447277,-0.004194091074168682,1.348667166202281,-4.31692807172644,2.545489289294792,0.013486671662022812,-0.0431692807172644,0.02545489289294792 +karman_re50,sr,311,124.4,0.9791472554206848,-0.1321338713169098,0.9608336687088013,-0.20984356105327606,0.9621172547340393,-0.17346054315567017,0.0027833031490445137,0.0030626975931227207,-0.00472208671271801,0.0030292130541056395,0.0027369880117475986,-0.003890105988830328,1.4521784331073786,-4.180919861724073,2.6814974992971594,0.014521784331073786,-0.04180919861724073,0.026814974992971596 +karman_re50,sr,312,124.8,1.0021041631698608,-0.1640574336051941,0.9894362092018127,-0.2434489130973816,0.9264476299285889,-0.23662486672401428,0.0026004991959780455,0.0021662157960236073,-0.004257206805050373,0.0030757307540625334,0.0023861993104219437,-0.003580436110496521,1.4224136020204425,-3.994138730615752,2.8682786304054804,0.014224136020204425,-0.03994138730615752,0.028682786304054804 +karman_re50,sr,313,125.2,1.0263447761535645,-0.19486074149608612,1.0156292915344238,-0.26872384548187256,0.9011742472648621,-0.26153096556663513,0.0020519604440778494,0.0010913040023297071,-0.0034551203716546297,0.0032344297505915165,0.0018561328761279583,-0.003342295531183481,1.2668690918726004,-3.7612309168721847,3.101186444149048,0.012668690918726005,-0.037612309168721846,0.03101186444149048 +karman_re50,sr,314,125.6,1.0493512153625488,-0.2270512729883194,1.035025954246521,-0.2851048707962036,0.8829942345619202,-0.2517400085926056,0.0013204579008743167,3.809854024439119e-05,-0.0024288154672831297,0.0034746676683425903,0.0012140386970713735,-0.0031851744279265404,1.0128332457431513,-3.5017411321361864,3.3606762288850454,0.010128332457431513,-0.035017411321361866,0.033606762288850456 +karman_re50,sr,315,126.0,1.0693174600601196,-0.2582821846008301,1.0433361530303955,-0.28727757930755615,0.8684026598930359,-0.21328924596309662,0.0006738301599398255,-0.0008749935077503324,-0.0012909002834931016,0.003729404415935278,0.0004964544787071645,-0.0030700722709298134,0.694676686447311,-3.241911686936588,3.6205056740846437,0.0069467668644731095,-0.03241911686936588,0.03620505674084644 +karman_re50,sr,316,126.4,1.0847018957138062,-0.28059712052345276,1.0375351905822754,-0.2655530571937561,0.8605185747146606,-0.15577784180641174,0.00031698751263320446,-0.0016319581773132086,-0.0001451222487958148,0.003965931944549084,-0.000305249763187021,-0.002973195631057024,0.340840897739071,-3.0000773952451047,3.862339965776128,0.00340840897739071,-0.030000773952451047,0.03862339965776128 +karman_re50,sr,317,126.8,1.0930665731430054,-0.27964216470718384,1.0165119171142578,-0.21084272861480713,0.8665011525154114,-0.09541329741477966,0.0003159846237394959,-0.002278338884934783,0.0009033933747559786,0.004184207413345575,-0.001219052355736494,-0.002921704901382327,-0.030535631152843,-2.7820674456902967,4.0803499153309355,-0.00030535631152843,-0.027820674456902967,0.04080349915330936 +karman_re50,sr,318,127.2,1.091259241104126,-0.24101687967777252,0.9828381538391113,-0.12227576971054077,0.8879730701446533,-0.04618782922625542,0.0006514351116493344,-0.0028573370072990656,0.0017595887184143066,0.004369259346276522,-0.002242029644548893,-0.0029372465796768665,-0.4047413101655175,-2.6056697851953565,4.256747575825876,-0.004047413101655175,-0.026056697851953567,0.042567475758258755 +karman_re50,sr,319,127.6,1.0769959688186646,-0.1623312383890152,0.9469447135925293,-0.014608973637223244,0.9156279563903809,-0.005523668602108955,0.00123854901175946,-0.003352154977619648,0.002367570763453841,0.004468480125069618,-0.0032896704506129026,-0.002997602801769972,-0.7630914825003876,-2.4948285733711213,4.367588787650111,-0.007630914825003876,-0.024948285733711214,0.04367588787650111 +karman_re50,sr,320,128.0,1.0496704578399658,-0.056133680045604706,0.92665696144104,0.08422806113958359,0.9385349750518799,0.03850620612502098,0.0019181849202141166,-0.003663670504465699,0.0027273453306406736,0.0044285692274570465,-0.004177601542323828,-0.003046682570129633,-1.078811669013771,-2.4694153936736525,4.39300196734758,-0.01078811669013771,-0.024694153936736525,0.0439300196734758 +karman_re50,sr,321,128.4,1.0116499662399292,0.0576886422932148,0.932269811630249,0.15511342883110046,0.956398606300354,0.08539155125617981,0.0024893435183912516,-0.003641872201114893,0.00286425300873816,0.004240851849317551,-0.004704453516751528,-0.0030503561720252037,-1.3167437941221165,-2.527605579739773,4.334811781281459,-0.013167437941221166,-0.02527605579739773,0.04334811781281459 +karman_re50,sr,322,128.8,0.9694892764091492,0.15818257629871368,0.955758810043335,0.20274364948272705,0.9753245711326599,0.12578687071800232,0.002772911684587598,-0.003189986338838935,0.0027775540947914124,0.003948175348341465,-0.004762127064168453,-0.003029759507626295,-1.443319916912176,-2.6527543986405413,4.2096629623806905,-0.01443319916912176,-0.026527543986405413,0.042096629623806905 +karman_re50,sr,323,129.2,0.9321618676185608,0.2280406355857849,0.9843122959136963,0.2380170375108719,0.9977817535400391,0.15852276980876923,0.002663661725819111,-0.002347829518839717,0.002465031808242202,0.0036328828427940607,-0.0043698567897081375,-0.0030597439035773277,-1.437784903833378,-2.830664926023332,4.031752434997901,-0.01437784903833378,-0.02830664926023332,0.04031752434997901 +karman_re50,sr,324,129.6,0.9050968885421753,0.25976717472076416,1.0112580060958862,0.26475536823272705,1.0219967365264893,0.18920515477657318,0.002172239124774933,-0.001289286301471293,0.00196230155415833,0.0033784976694732904,-0.003620070405304432,-0.003197749610990286,-1.3033839811432524,-3.0564383475729224,3.8059790134483102,-0.013033839811432524,-0.030564383475729224,0.0380597901344831 +karman_re50,sr,325,130.0,0.8860097527503967,0.255837619304657,1.032209873199463,0.2829779386520386,1.045372724533081,0.22117973864078522,0.001455702818930149,-0.0002204439224442467,0.0013360196026042104,0.003209877060726285,-0.002626776462420821,-0.003429312026128173,-1.0645344228330171,-3.3130191710906294,3.5493981899306024,-0.010645344228330172,-0.033130191710906295,0.035493981899306026 +karman_re50,sr,326,130.4,0.8707379102706909,0.2220500409603119,1.0427803993225098,0.2883656919002533,1.0659821033477783,0.25298798084259033,0.0007735389517620206,0.0007219492108561099,0.0006317317020148039,0.003089405596256256,-0.001500794431194663,-0.003683939576148987,-0.7556882365632185,-3.5746952060540127,3.2877221549672195,-0.007556882365632185,-0.03574695206054013,0.032877221549672195 +karman_re50,sr,327,130.8,0.8611137270927429,0.16695445775985718,1.039689540863037,0.2717440128326416,1.0823416709899902,0.2778111398220062,0.0003540182369761169,0.0015047740889713168,-0.0001524470280855894,0.0029882274102419615,-0.0003484596963971853,-0.003924197051674128,-0.40666359978831307,-3.8199690357076888,3.042448325313543,-0.004066635997883131,-0.03819969035707689,0.03042448325313543 +karman_re50,sr,328,131.2,0.8641718029975891,0.105775386095047,1.0214005708694458,0.2234145551919937,1.092220425605774,0.2822876274585724,0.00028902009944431484,0.002167164348065853,-0.0010441800113767385,0.0029261859599500895,0.0007286587497219443,-0.004143296275287867,-0.03737877630589232,-4.043230705429187,2.819186655592045,-0.0003737877630589232,-0.04043230705429188,0.028191866555920448 +karman_re50,sr,329,131.6,0.8832449913024902,0.05413314700126648,0.989544689655304,0.14038532972335815,1.0924746990203857,0.25112006068229675,0.0005680231843143702,0.002757713897153735,-0.00204986403696239,0.0029311287216842175,0.0016222390113398433,-0.004340696148574352,0.3380727585024293,-4.227066031826528,2.6353513291947044,0.003380727585024293,-0.04227066031826528,0.026353513291947045 +karman_re50,sr,330,132.0,0.9107611179351807,0.012843001633882523,0.9528394341468811,0.034282926470041275,1.0805621147155762,0.17909583449363708,0.0011189113138243556,0.0032724591437727213,-0.0031047887168824673,0.0029844436794519424,0.0022772266529500484,-0.004460941534489393,0.7002543233403572,-4.352911984417491,2.5095053766037414,0.0070025432334035725,-0.043529119844174916,0.025095053766037413 +karman_re50,sr,331,132.4,0.9348981380462646,-0.030099494382739067,0.9284659624099731,-0.06821925938129425,1.055517554283142,0.07649275660514832,0.0017953128553926945,0.003626246703788638,-0.00403900071978569,0.003039764706045389,0.0026799493934959173,-0.004447305575013161,1.0263272793370914,-4.396677181866319,2.4657401791549134,0.010263272793370914,-0.04396677181866319,0.024657401791549134 +karman_re50,sr,332,132.8,0.9532354474067688,-0.07718546688556671,0.9295158386230469,-0.1444237381219864,1.0190542936325073,-0.03753067925572395,0.002405785955488682,0.0036753537133336067,-0.004643925931304693,0.0030534551478922367,0.002855511847883463,-0.004283581860363483,1.2812750086926168,-4.351586836647354,2.510830524373878,0.012812750086926169,-0.043515868366473545,0.02510830524373878 +karman_re50,sr,333,133.2,0.9716268181800842,-0.11917975544929504,0.9508547782897949,-0.19529426097869873,0.9769970178604126,-0.14189840853214264,0.0027503487654030323,0.003297503339126706,-0.00478708790615201,0.003032387001439929,0.002810442354530096,-0.004005108494311571,1.430110663677183,-4.235577335375413,2.6268400256458193,0.01430110663677183,-0.04235577335375413,0.026268400256458192 +karman_re50,sr,334,133.6,0.9935181140899658,-0.15293893218040466,0.9791635870933533,-0.232334703207016,0.9381971955299377,-0.21819892525672913,0.0027141335885971785,0.0025219707749783993,-0.004469787236303091,0.0030467542819678783,0.002538081957027316,-0.0036864844150841236,1.4488164797585374,-4.067262406396622,2.7951549546246106,0.014488164797585374,-0.04067262406396622,0.027951549546246107 +karman_re50,sr,335,134.0,1.0176255702972412,-0.1836031973361969,1.0067306756973267,-0.2605248689651489,0.9092464447021484,-0.25683102011680603,0.002283276291564107,0.0014868475263938308,-0.0037770431954413652,0.0031642518006265163,0.002065389882773161,-0.003418381791561842,1.3363706397896882,-3.849522388711811,3.0128949723094216,0.013363706397896882,-0.03849522388711811,0.030128949723094215 +karman_re50,sr,336,134.4,1.041314721107483,-0.21531574428081512,1.0290939807891846,-0.28043973445892334,0.8890963792800903,-0.25893527269363403,0.0015885964967310429,0.0004062105726916343,-0.002819555113092065,0.0033818427473306656,0.0014565113233402371,-0.0032349410466849804,1.11412696431217,-3.597381967292427,3.2650353937288052,0.0111412696431217,-0.03597381967292427,0.03265035393728805 +karman_re50,sr,337,134.8,1.0625194311141968,-0.247477188706398,1.0418124198913574,-0.28871023654937744,0.8732125759124756,-0.23004402220249176,0.0008853340987116098,-0.000563302543014288,-0.0017139326082542539,0.003633366199210286,0.0007640637340955436,-0.0031094893347471952,0.815427554623425,-3.3351509962511314,3.527266364770101,0.00815427554623425,-0.033351509962511315,0.03527266364770101 +karman_re50,sr,338,135.2,1.0797744989395142,-0.27436593174934387,1.0413554906845093,-0.27685078978538513,0.8621156215667725,-0.17787238955497742,0.0004043253429699689,-0.0013737321132794023,-0.0005547759938053787,0.003882978344336152,-3.5785005820798688e-06,-0.00300394743680954,0.47254328898920905,-3.0886503696383825,3.7737669913828498,0.0047254328898920905,-0.030886503696383825,0.0377376699138285 +karman_re50,sr,339,135.6,1.0910574197769165,-0.2837332487106323,1.0258233547210693,-0.23477581143379211,0.8623993396759033,-0.11644651740789413,0.0002739107294473797,-0.0020526601001620293,0.0005419660010375082,0.004108526278287172,-0.0008725664229132235,-0.002933330135419965,0.10511100112575442,-2.856418375167751,4.0059989858534815,0.0010511100112575442,-0.028564183751677512,0.04005998985853482 +karman_re50,sr,340,136.0,1.0932855606079102,-0.25984495878219604,0.9960518479347229,-0.15767261385917664,0.8788237571716309,-0.062441181391477585,0.0004946067929267883,-0.0026542756240814924,0.001475460478104651,0.00430859811604023,-0.0018612476997077465,-0.0029261417221277952,-0.2697452746688521,-2.6627586248725565,4.199658736148676,-0.0026974527466885213,-0.026627586248725566,0.04199658736148676 +karman_re50,sr,341,136.4,1.0836989879608154,-0.1948511302471161,0.9591284990310669,-0.0540853850543499,0.9057748317718506,-0.020072156563401222,0.0010043554939329624,-0.003186219371855259,0.0021776538342237473,0.0044479393400251865,-0.0029168641194701195,-0.0029737758450210094,-0.6362959580664652,-2.52723303417526,4.335184326845972,-0.006362959580664652,-0.025272330341752598,0.04335184326845973 +karman_re50,sr,342,136.8,1.0609939098358154,-0.09649644047021866,0.9311459064483643,0.05124490708112717,0.9310692548751831,0.0218556709587574,0.0016730751376599073,-0.003580622375011444,0.0026247971691191196,0.004461398348212242,-0.0038885504473000765,-0.0030315855983644724,-0.9715027534585625,-2.4672665959223066,4.395150765098926,-0.009715027534585625,-0.024672665959223065,0.043951507650989256 +karman_re50,sr,343,137.2,1.026282787322998,0.01702238619327545,0.9274193048477173,0.1328408122062683,0.9500971436500549,0.06876857578754425,0.002306743524968624,-0.003695567836984992,0.0028398504946380854,0.004324006848037243,-0.004566920455545187,-0.003053739434108138,-1.242067493156243,-2.4962671442902415,4.366150216730991,-0.012420674931562431,-0.024962671442902415,0.04366150216730991 +karman_re50,sr,344,137.6,0.9846362471580505,0.1246446818113327,0.9461200833320618,0.18738482892513275,0.9680569171905518,0.11226622760295868,0.002712822053581476,-0.003403594484552741,0.002835382241755724,0.004061388783156872,-0.004796026274561882,-0.003036297159269452,-1.4124394962869016,-2.600592386512675,4.261824974508557,-0.014124394962869016,-0.02600592386512675,0.042618249745085574 +karman_re50,sr,345,138.0,0.944608747959137,0.2070639282464981,0.9739441871643066,0.2263336181640625,0.9893219470977783,0.14724937081336975,0.002752643311396241,-0.0026880863588303328,0.0026034745387732983,0.003743995213881135,-0.004558127839118242,-0.003038431517779827,-1.4552769180043967,-2.7609106028735395,4.101506758147693,-0.014552769180043968,-0.027609106028735397,0.04101506758147693 +karman_re50,sr,346,138.4,0.9137342572212219,0.25267842411994934,1.00199294090271,0.25601574778556824,1.0132300853729248,0.17804880440235138,0.00238535413518548,-0.001684249029494822,0.0021620113402605057,0.003460803534835577,-0.003924514167010784,-0.0031361610163003206,-1.3656868996314664,-2.969847005001347,3.892570356019885,-0.013656868996314664,-0.02969847005001347,0.03892570356019885 +karman_re50,sr,347,138.8,0.8923524618148804,0.26102036237716675,1.0256191492080688,0.2775295376777649,1.0371661186218262,0.20947925746440887,0.0017238396685570478,-0.0005967844044789672,0.00157219881657511,0.0032630236819386482,-0.0030062010046094656,-0.0033385208807885647,-1.160674345061922,-3.2189278940690906,3.643489466952141,-0.01160674345061922,-0.03218927894069091,0.03643489466952141 +karman_re50,sr,348,139.2,0.875863790512085,0.23729373514652252,1.0403690338134766,0.28841644525527954,1.0589206218719482,0.24182464182376862,0.0009981953771784902,0.00040070462273433805,0.0008935638470575213,0.003129963530227542,-0.0019158940995112062,-0.0035920061636716127,-0.8730812361726901,-3.4805756113066884,3.3818417497145448,-0.008730812361726901,-0.03480575611306688,0.033818417497145446 +karman_re50,sr,349,139.6,0.8635126352310181,0.18853223323822021,1.0424858331680298,0.2809857428073883,1.077003836631775,0.2703770697116852,0.00046757064410485327,0.0012389331823214889,0.00014119892148301005,0.003021381562575698,-0.0007612940389662981,-0.00383977172896266,-0.5357515972317974,-3.733334150826572,3.12908321019466,-0.005357515972317975,-0.03733334150826572,0.0312908321019466 +karman_re50,sr,350,140.0,0.8611798286437988,0.12746335566043854,1.0297400951385498,0.2450077086687088,1.0895848274230957,0.2840936481952667,0.0002711607376113534,0.0019380097510293126,-0.0007076557958498597,0.002942232182249427,0.000354117713868618,-0.004068401642143726,-0.17210154209344816,-3.966346557460544,2.896070803560688,-0.0017210154209344817,-0.03966346557460544,0.02896070803560688 +karman_re50,sr,351,140.4,0.8747406005859375,0.07123105227947235,1.0022859573364258,0.1741095930337906,1.0937023162841797,0.2672043740749359,0.00043117761379107833,0.002550831064581871,-0.001676094369031489,0.002921825274825096,0.0013252751668915153,-0.004277235362678766,0.20247566062515193,-4.16760063462499,2.694816726396242,0.0020247566062515194,-0.0416760063462499,0.026948167263962423 +karman_re50,sr,352,140.8,0.9006710052490234,0.027316274121403694,0.9657123684883118,0.07388529926538467,1.0864057540893555,0.20950856804847717,0.0008968598558567464,0.003098377026617527,-0.002727799816057086,0.0029632882215082645,0.002070188755169511,-0.004430241417139769,0.572348315345845,-4.3174989936172965,2.5449183674039357,0.00572348315345845,-0.04317498993617296,0.02544918367403936 +karman_re50,sr,353,141.2,0.9269686937332153,-0.01381480973213911,0.9346863627433777,-0.03337722271680832,1.0660786628723145,0.11601097881793976,0.0015498115681111813,0.0035249304492026567,-0.003729830961674452,0.003022480523213744,0.0025613459292799234,-0.004469198174774647,0.9149558702859468,-4.390436016001315,2.4719813450199166,0.009149558702859469,-0.04390436016001315,0.024719813450199166 +karman_re50,sr,354,141.6,0.946897566318512,-0.06022077426314354,0.926085889339447,-0.12032011151313782,1.0332905054092407,0.003677973523736,0.002204569987952709,0.0037032023537904024,-0.004474039655178785,0.003054492175579071,0.00281658791936934,-0.004359191749244928,1.1997004873887076,-4.3772041780129936,2.4852131830082387,0.011997004873887076,-0.04377204178012994,0.024852131830082388 +karman_re50,sr,355,142.0,0.9645829200744629,-0.10503925383090973,0.9416446685791016,-0.1790054738521576,0.9923490285873413,-0.10656131058931351,0.0026629315689206123,0.0034907886292785406,-0.0047903237864375114,0.003040534444153309,0.002852567471563816,-0.004115207586437464,1.3902914520065384,-4.284339850196365,2.5780775108248672,0.013902914520065384,-0.04284339850196365,0.025780775108248673 +karman_re50,sr,356,142.4,0.9851928949356079,-0.141429603099823,0.9687033891677856,-0.22007551789283752,0.9513643383979797,-0.19472776353359222,0.002775414614006877,0.002844695234671235,-0.00463199894875288,0.003033141139894724,0.0026623320300132036,-0.0038010545540601015,1.4574666276617945,-4.133927661502288,2.7284896995189443,0.014574666276617946,-0.04133927661502289,0.027284896995189444 +karman_re50,sr,357,142.8,1.0088200569152832,-0.17252889275550842,0.9971030950546265,-0.2512832581996918,0.9185702800750732,-0.24734243750572205,0.002480775350704789,0.0018769634189084172,-0.004062909632921219,0.0031099163461476564,0.00225439528003335,-0.0035060837399214506,1.3909976753288662,-3.9333402688605243,2.929077092160708,0.013909976753288662,-0.039333402688605246,0.02929077092160708 +karman_re50,sr,358,143.2,1.0329433679580688,-0.20368725061416626,1.0218586921691895,-0.2743320167064667,0.8957807421684265,-0.2621186077594757,0.0018555516144260764,0.0007907072431407869,-0.003196661826223135,0.003295642090961337,0.0016864623175933957,-0.003292506095021963,1.204682989275311,-3.6902589315135734,3.1721584295076584,0.012046829892753111,-0.036902589315135736,0.031721584295076585 +karman_re50,sr,359,143.6,1.055209994316101,-0.23605972528457642,1.0385268926620483,-0.2875734567642212,0.8786523938179016,-0.24376261234283447,0.0011210402008146048,-0.00023245452030096203,-0.0021214564330875874,0.003544432809576392,0.0010214823996648192,-0.0031509804539382458,0.9311908593349936,-3.429158081324498,3.4332592796967343,0.009311908593349936,-0.03429158081324498,0.03433259279696734 +karman_re50,sr,360,144.0,1.074066162109375,-0.2659066319465637,1.043153166770935,-0.28421249985694885,0.8652510643005371,-0.19880814850330353,0.0005401146481744945,-0.0010991347953677177,-0.0009711330640129745,0.0037954587023705244,0.00028392960666678846,-0.0030395654030144215,0.5993449738962845,-3.1739337682194653,3.6884835928017665,0.005993449738962845,-0.031739337682194654,0.03688483592801767 +karman_re50,sr,361,144.4,1.0878466367721558,-0.2834140956401825,1.0332010984420776,-0.2540726661682129,0.8605226874351501,-0.13867318630218506,0.0002796364715322852,-0.0018186317756772041,0.00015898213314358145,0.004028011113405228,-0.000544712704140693,-0.002952232025563717,0.23933507574438417,-2.9369369357706665,3.9254804252505657,0.002393350757443842,-0.029369369357706666,0.03925480425250566 +karman_re50,sr,362,144.8,1.0937494039535522,-0.2731451988220215,1.008235216140747,-0.18949665129184723,0.8711091876029968,-0.08046266436576843,0.00037736131343990564,-0.002443966455757618,0.0011635191040113568,0.004241716582328081,-0.001491460483521223,-0.00292111374437809,-0.13419159147737653,-2.727766531790526,4.134650829230706,-0.0013419159147737654,-0.027277665317905264,0.041346508292307065 +karman_re50,sr,363,145.2,1.0886850357055664,-0.22291894257068634,0.9725083112716675,-0.09334364533424377,0.8955905437469482,-0.034610722213983536,0.0007937350310385227,-0.0030054745730012655,0.001953625585883856,0.004409490153193474,-0.0025347184855490923,-0.0029531652107834816,-0.5062932358092879,-2.567678511136055,4.294738849885177,-0.005062932358092879,-0.025676785111360553,0.04294738849885177 +karman_re50,sr,364,145.6,1.0707366466522217,-0.13484792411327362,0.9390632510185242,0.014899126254022121,0.9226596355438232,0.006051755975931883,0.0014248921070247889,-0.003462135558947921,0.0024901540018618107,0.0044731199741363525,-0.00356026622466743,-0.00301394728012383,-0.8559079904125008,-2.4789310630129315,4.3834862980083,-0.008559079904125008,-0.024789310630129315,0.043834862980083 +karman_re50,sr,365,146.0,1.0399800539016724,-0.024400120601058006,0.9256665706634521,0.10691322386264801,0.9436647295951843,0.05166862532496452,0.0020938320085406303,-0.0036931955255568027,0.0027865436859428883,0.004389779642224312,-0.004368033725768328,-0.003053303575143218,-1.1537892226668065,-2.477068944173715,4.385348416847517,-0.011537892226668066,-0.02477068944173715,0.04385348416847517 +karman_re50,sr,366,146.4,0.9999818205833435,0.0877833440899849,0.9376262426376343,0.17013993859291077,0.9612639546394348,0.0975487008690834,0.0026007904671132565,-0.0035615444649010897,0.0028629139997065067,0.004166916012763977,-0.004767825361341238,-0.0030433463398367167,-1.364347268669485,-2.5572991511602883,4.305118209860944,-0.01364347268669485,-0.025572991511602885,0.04305118209860944 +karman_re50,sr,367,146.8,0.9583024382591248,0.18120788037776947,0.9635977745056152,0.2135450392961502,0.9812163710594177,0.13545836508274078,0.0027851464692503214,-0.002989189000800252,0.00271382718347013,0.0038594177458435297,-0.004693704657256603,-0.003029256360605359,-1.4551493129604907,-2.6965167034184554,4.165900657602776,-0.014551493129604907,-0.026965167034184556,0.041659006576027766 +karman_re50,sr,368,147.2,0.9236338138580322,0.24072149395942688,0.9922051429748535,0.2462967038154602,1.0044734477996826,0.16703680157661438,0.002563607646152377,-0.0020660648588091135,0.002342281863093376,0.0035546657163649797,-0.004192221909761429,-0.0030878884717822075,-1.412584594854572,-2.8883737107510825,3.9740436502701493,-0.01412584594854572,-0.028883737107510826,0.039740436502701496 +karman_re50,sr,369,147.6,0.8992648124694824,0.2620423138141632,1.017941951751709,0.2707953155040741,1.0287052392959595,0.19794350862503052,0.001985160168260336,-0.0009865188039839268,0.0017977370880544186,0.00332474778406322,-0.00336443237029016,-0.0032568550668656826,-1.2461018815746587,-3.1259872910878435,3.7364300699333883,-0.012461018815746587,-0.031259872910878436,0.037364300699333886 +karman_re50,sr,370,148.0,0.8814297318458557,0.24919791519641876,1.0363811254501343,0.2861226797103882,1.0514262914657593,0.23021584749221802,0.001250105444341898,5.676583532476798e-05,0.0011467339936643839,0.0031733778305351734,-0.002325016539543867,-0.003497702069580555,-0.9844036056375458,-3.3868142510151458,3.475603110006086,-0.009844036056375459,-0.03386814251015146,0.03475603110006086 +karman_re50,sr,371,148.4,0.8671796321868896,0.20837850868701935,1.0434015989303589,0.2864409387111664,1.070986270904541,0.26103293895721436,0.0006241058581508696,0.0009598173783160746,0.0004224013246130198,0.0030582742765545845,-0.0011797061888501048,-0.0037514865398406982,-0.6620479568410454,-3.6432813468921945,3.2191360141290377,-0.006620479568410454,-0.036432813468921944,0.03219136014129038 +karman_re50,sr,372,148.8,0.8603482842445374,0.1497839391231537,1.0361779928207397,0.26183873414993286,1.085853099822998,0.2817980647087097,0.0002992231457028538,0.0016974721802398562,-0.0003875199763569981,0.0029650675132870674,-3.809592453762889e-05,-0.0039880466647446156,-0.3055150408366987,-3.884493866583076,2.9779234944381563,-0.0030551504083669873,-0.03884493866583076,0.029779234944381564 +karman_re50,sr,373,149.2,0.8679736852645874,0.09004470705986023,1.013782024383545,0.2036677896976471,1.093421220779419,0.2777212858200073,0.00033451340277679265,0.0023363970685750246,-0.0013120844960212708,0.0029214087408035994,0.000996492337435484,-0.004205419681966305,0.06663367006509982,-4.100125431663496,2.7622919293577364,0.0006663367006509982,-0.04100125431663496,0.027622919293577363 +karman_re50,sr,374,149.6,0.8906300067901611,0.04204700142145157,0.9793037176132202,0.11228708177804947,1.0905154943466187,0.23504841327667236,0.0006988084060139954,0.002909410512074828,-0.002343645552173257,0.0029437285847961903,0.0018298343056812882,-0.004384936299175024,0.4402357142833728,-4.2708117418081475,2.5916056192130847,0.004402357142833728,-0.042708117418081476,0.02591605619213085 +karman_re50,sr,375,150.0,0.9181668162345886,0.0015104881022125483,0.9440668225288391,0.004153051879256964,1.0749434232711792,0.1529586762189865,0.0013019758043810725,0.0033926728647202253,-0.0033857470843940973,0.0030032633803784847,0.0024120090529322624,-0.004471664782613516,0.795864733476839,-4.3736012802670965,2.4888160807541357,0.00795864733476839,-0.04373601280267097,0.02488816080754136 +karman_re50,sr,376,150.4,0.9403461217880249,-0.043099094182252884,0.9260570406913757,-0.09243856370449066,1.0463415384292603,0.0450977124273777,0.001980121247470379,0.0036782429087907076,-0.004249714780598879,0.003046252764761448,0.0027496281545609236,-0.004415883217006922,1.1056072630404359,-4.391382985110949,2.471034375910283,0.011056072630404359,-0.0439138298511095,0.02471034375910283 +karman_re50,sr,377,150.8,0.9580475687980652,-0.08971922099590302,0.9339795708656311,-0.16054777801036835,1.0075565576553345,-0.06832978129386902,0.0025314476806670427,0.003618591232225299,-0.004731718450784683,0.003047797130420804,0.0028650376480072737,-0.004214807413518429,1.3347447188753383,-4.326797560392213,2.535619800629019,0.013347447188753383,-0.04326797560392213,0.02535619800629019 +karman_re50,sr,378,151.2,0.9773446917533875,-0.12923449277877808,0.9584745764732361,-0.2065965235233307,0.9655097126960754,-0.16649915277957916,0.002781956223770976,0.003123554401099682,-0.0047418042086064816,0.0030302328523248434,0.0027575003914535046,-0.003917126916348934,1.4486688504018959,-4.1943060769916825,2.6681112840295493,0.01448668850401896,-0.04194306076991682,0.026681112840295493 +karman_re50,sr,379,151.6,1.0001353025436401,-0.16150684654712677,0.9871242642402649,-0.2409648448228836,0.9291028380393982,-0.2327970713376999,0.0026337308809161186,0.002254227874800563,-0.004309556912630796,0.0030699893832206726,0.002424808219075203,-0.003605431877076626,1.43008526698786,-4.011140632279614,2.8512767287416185,0.014300852669878602,-0.04011140632279614,0.028512767287416186 +karman_re50,sr,380,152.0,1.024387001991272,-0.19224141538143158,1.0136908292770386,-0.2669207453727722,0.9030249714851379,-0.2608570456504822,0.00210800813511014,0.001184389111585915,-0.003532247617840767,0.003218337893486023,0.0019060316262766719,-0.0033595880959182978,1.2842145866821404,-3.781329651117888,3.0810877099033442,0.012842145866821404,-0.03781329651117888,0.03081087709903344 +karman_re50,sr,381,152.4,1.0475119352340698,-0.2243392914533615,1.033760666847229,-0.2841808795928955,0.8843796253204346,-0.253770112991333,0.0013808021321892738,0.0001222232385771349,-0.0025224187411367893,0.0034515156876295805,0.0012697972124442458,-0.003196367993950844,1.037056559179636,-3.523570901554966,3.3388464594662657,0.010370565591796358,-0.03523570901554966,0.03338846459466266 +karman_re50,sr,382,152.8,1.067731499671936,-0.2558650076389313,1.0430806875228882,-0.28789222240448,0.8694095015525818,-0.2174578160047531,0.000720264739356935,-0.0008047346491366625,-0.001389415469020605,0.0037064896896481514,0.0005587770137935877,-0.0030773768667131662,0.7231593399218879,-3.2643699271728233,3.5980474338484094,0.007231593399218879,-0.032643699271728235,0.03598047433848409 +karman_re50,sr,383,153.2,1.083604097366333,-0.27940312027931213,1.0385662317276,-0.2685886025428772,0.8607038855552673,-0.161008819937706,0.00033317398629151285,-0.0015730810118839145,-0.0002391548769082874,0.003945924807339907,-0.0002331352443434298,-0.002978964475914836,0.3715119621767052,-3.0198375347480715,3.842579826273161,0.0037151196217670517,-0.030198375347480714,0.03842579826273161 +karman_re50,sr,384,153.6,1.0927408933639526,-0.28103750944137573,1.0188627243041992,-0.21685929596424103,0.8653602004051208,-0.100194051861763,0.00030222945497371256,-0.0022265459410846233,0.0008225688943639398,0.004167662933468819,-0.0011356511386111379,-0.0029241954907774925,0.001147918147452544,-2.7989221256292365,4.063495235391996,1.1479181474525441e-05,-0.027989221256292364,0.040634952353919965 +karman_re50,sr,385,154.0,1.091944694519043,-0.24589329957962036,0.9860373735427856,-0.13080771267414093,0.8857887983322144,-0.049840882420539856,0.000612035219091922,-0.0028109136037528515,0.0016972091980278492,0.0043578059412539005,-0.002152084605768323,-0.002936007920652628,-0.37342417304342324,-2.618116643645211,4.244300717376022,-0.0037342417304342323,-0.02618116643645211,0.04244300717376022 +karman_re50,sr,386,154.4,1.0787553787231445,-0.1702442765235901,0.949666440486908,-0.023731127381324768,0.9134093523025513,-0.008936714380979538,0.0011821901425719261,-0.00331603130325675,0.0023253962863236666,0.004465712234377861,-0.0032042316161096096,-0.002991913817822933,-0.734043841487987,-2.501507902756627,4.360909458264605,-0.0073404384148798695,-0.02501507902756627,0.04360909458264605 +karman_re50,sr,387,154.8,1.0524107217788696,-0.06562978774309158,0.9273545145988464,0.07691571116447449,0.9368228316307068,0.03458709642291069,0.0018604833167046309,-0.003648420562967658,0.0027051351498812437,0.004437027499079704,-0.004115425981581211,-0.0030410047620534897,-1.0544763570653681,-2.4675053173956036,4.394912043625629,-0.010544763570653681,-0.024675053173956036,0.04394912043625629 +karman_re50,sr,388,155.2,1.015069842338562,0.04837356507778168,0.9308608770370483,0.15025892853736877,0.954862117767334,0.08161154389381409,0.0024495527613908052,-0.0036589563824236393,0.0028600359801203012,0.0042599644511938095,-0.004678293131291866,-0.003052713815122843,-1.3006517946499312,-2.518362125958054,4.344055235063179,-0.013006517946499312,-0.02518362125958054,0.04344055235063179 +karman_re50,sr,389,155.6,0.9729589223861694,0.1507432907819748,0.9534481763839722,0.1993468999862671,0.973569929599762,0.12275740504264832,0.0027641078922897577,-0.0032451495062559843,0.0027944562025368214,0.0039747110567986965,-0.004773677792400122,-0.0030314612668007612,-1.4375270741569819,-2.6417984836779285,4.220618877343304,-0.014375270741569818,-0.026417984836779287,0.04220618877343304 +karman_re50,sr,390,156.0,0.9349678754806519,0.2236347645521164,0.9819660186767578,0.2354317605495453,0.9958274364471436,0.1559431254863739,0.0026894756592810154,-0.0024297002237290144,0.0025009019300341606,0.00365908513776958,-0.004415467847138643,-0.0030545995105057955,-1.443210737787971,-2.8144262327431666,4.047991128278065,-0.014432107377879711,-0.02814426232743167,0.04047991128278065 +karman_re50,sr,391,156.4,0.9070497155189514,0.2585638463497162,1.009242057800293,0.26284897327423096,1.020027756690979,0.18660102784633636,0.0022200194653123617,-0.0013809092342853546,0.0020102043636143208,0.003397569293156266,-0.0036932257935404778,-0.0031831455416977406,-1.3189220930292413,-3.035941033724482,3.82647632729675,-0.013189220930292414,-0.030359410337244822,0.0382647632729675 +karman_re50,sr,392,156.8,0.8874300122261047,0.2574138343334198,1.030822515487671,0.2818736433982849,1.0435090065002441,0.21845510601997375,0.0015149001264944673,-0.00030677736504003406,0.0013906733365729451,0.003221502061933279,-0.0027169957756996155,-0.0034058771561831236,-1.0876197026289731,-3.2909989421290597,3.571418418892173,-0.010876197026289731,-0.0329099894212906,0.03571418418892173 +karman_re50,sr,393,157.2,0.8718068599700928,0.22586767375469208,1.0423611402511597,0.28863200545310974,1.0643467903137207,0.25044602155685425,0.0008221364696510136,0.000651123293209821,0.0006922794273123145,0.003097188426181674,-0.0015989075182005763,-0.0036608611699193716,-0.7833149061681137,-3.5517698755881386,3.3106474854330936,-0.007833149061681137,-0.035517698755881386,0.033106474854330936 +karman_re50,sr,394,157.6,0.8614760637283325,0.17206087708473206,1.0405198335647583,0.27425074577331543,1.0811431407928467,0.27627405524253845,0.0003765550209209323,0.0014445449924096465,-8.289355901069939e-05,0.0029943170957267284,-0.0004436497110873461,-0.0039037405513226986,-0.43691953713504217,-3.7997891544305653,3.062628206590667,-0.004369195371350422,-0.037997891544305655,0.03062628206590667 +karman_re50,sr,395,158.0,0.8632739186286926,0.11068063974380493,1.0235586166381836,0.22882482409477234,1.0917342901229858,0.28308725357055664,0.00028101669158786535,0.0021140282042324543,-0.0009629311971366405,0.002929896814748645,0.0006424790481105447,-0.00412927707657218,-0.06879465304768625,-4.025872396259594,2.8365449647616385,-0.0006879465304768626,-0.04025872396259594,0.028365449647616385 +karman_re50,sr,396,158.4,0.8811972737312317,0.05791808292269707,0.9926788210868835,0.14848247170448303,1.0929549932479858,0.2553294897079468,0.0005333793815225363,0.0027097146958112717,-0.001962197944521904,0.002929205307736993,0.001556777860969305,-0.004328079055994749,0.3061448576420009,-4.215472511296206,2.646944849725026,0.003061448576420009,-0.04215472511296207,0.026469448497250258 +karman_re50,sr,397,158.8,0.90850430727005,0.016180140897631645,0.9557806253433228,0.043418146669864655,1.0821088552474976,0.1865297108888626,0.0010646372102200985,0.003233369207009673,-0.0030187061056494713,0.002980737015604973,0.0022311515640467405,-0.004455085843801498,0.6710536139950178,-4.345919485344121,2.516497875677111,0.006710536139950179,-0.043459194853441206,0.025164978756771112 +karman_re50,sr,398,159.2,0.9331327676773071,-0.026272015646100044,0.9296008348464966,-0.06049684062600136,1.0580687522888184,0.08582444489002228,0.0017389169661328197,0.003606966696679592,-0.003971707075834274,0.003035761648789048,0.0026536902878433466,-0.004453599918633699,1.001125371965251,-4.395271952785625,2.4671454082356075,0.01001125371965251,-0.043952719527856246,0.024671454082356076 +karman_re50,sr,399,159.6,0.951739490032196,-0.07331691682338715,0.9284279346466064,-0.13917894661426544,1.022362470626831,-0.02804196998476982,0.0023587578907608986,0.0036881165578961372,-0.004609913099557161,0.0030519934371113777,0.0028485311195254326,-0.004301931709051132,1.2634349000385696,-4.358320213305194,2.5040971477160383,0.012634349000385696,-0.04358320213305194,0.025040971477160383 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_long.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_long.csv new file mode 100644 index 0000000..a7c9342 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,target,0,0.0,velocity,upper_ux,1.0628379583358765 +karman_re50,target,0,0.0,velocity,upper_uy,-0.27876970171928406 +karman_re50,target,0,0.0,velocity,center_ux,1.057525634765625 +karman_re50,target,0,0.0,velocity,center_uy,-0.36015385389328003 +karman_re50,target,0,0.0,velocity,lower_ux,1.050817608833313 +karman_re50,target,0,0.0,velocity,lower_uy,-0.2917177379131317 +karman_re50,target,1,0.4,velocity,upper_ux,1.1026315689086914 +karman_re50,target,1,0.4,velocity,upper_uy,-0.3140738308429718 +karman_re50,target,1,0.4,velocity,center_ux,1.0572105646133423 +karman_re50,target,1,0.4,velocity,center_uy,-0.39166778326034546 +karman_re50,target,1,0.4,velocity,lower_ux,1.017696499824524 +karman_re50,target,1,0.4,velocity,lower_uy,-0.3070320785045624 +karman_re50,target,2,0.8,velocity,upper_ux,1.143236517906189 +karman_re50,target,2,0.8,velocity,upper_uy,-0.3399810492992401 +karman_re50,target,2,0.8,velocity,center_ux,1.0521425008773804 +karman_re50,target,2,0.8,velocity,center_uy,-0.405939519405365 +karman_re50,target,2,0.8,velocity,lower_ux,0.9808329939842224 +karman_re50,target,2,0.8,velocity,lower_uy,-0.3054814338684082 +karman_re50,target,3,1.2,velocity,upper_ux,1.1790348291397095 +karman_re50,target,3,1.2,velocity,upper_uy,-0.32966887950897217 +karman_re50,target,3,1.2,velocity,center_ux,1.043758511543274 +karman_re50,target,3,1.2,velocity,center_uy,-0.37311455607414246 +karman_re50,target,3,1.2,velocity,lower_ux,0.9436081051826477 +karman_re50,target,3,1.2,velocity,lower_uy,-0.2746821343898773 +karman_re50,target,4,1.6,velocity,upper_ux,1.2016206979751587 +karman_re50,target,4,1.6,velocity,upper_uy,-0.2601204812526703 +karman_re50,target,4,1.6,velocity,center_ux,1.0369089841842651 +karman_re50,target,4,1.6,velocity,center_uy,-0.2767051160335541 +karman_re50,target,4,1.6,velocity,lower_ux,0.9135377407073975 +karman_re50,target,4,1.6,velocity,lower_uy,-0.20767593383789062 +karman_re50,target,5,2.0,velocity,upper_ux,1.2067512273788452 +karman_re50,target,5,2.0,velocity,upper_uy,-0.1422220766544342 +karman_re50,target,5,2.0,velocity,center_ux,1.0348206758499146 +karman_re50,target,5,2.0,velocity,center_uy,-0.1326625794172287 +karman_re50,target,5,2.0,velocity,lower_ux,0.8977144360542297 +karman_re50,target,5,2.0,velocity,lower_uy,-0.11053882539272308 +karman_re50,target,6,2.4,velocity,upper_ux,1.1963030099868774 +karman_re50,target,6,2.4,velocity,upper_uy,-0.01225329376757145 +karman_re50,target,6,2.4,velocity,center_ux,1.0370675325393677 +karman_re50,target,6,2.4,velocity,center_uy,0.02254047803580761 +karman_re50,target,6,2.4,velocity,lower_ux,0.8994511961936951 +karman_re50,target,6,2.4,velocity,lower_uy,-0.0014706356450915337 +karman_re50,target,7,2.8,velocity,upper_ux,1.1742247343063354 +karman_re50,target,7,2.8,velocity,upper_uy,0.09943193197250366 +karman_re50,target,7,2.8,velocity,center_ux,1.041396975517273 +karman_re50,target,7,2.8,velocity,center_uy,0.15441776812076569 +karman_re50,target,7,2.8,velocity,lower_ux,0.9173515439033508 +karman_re50,target,7,2.8,velocity,lower_uy,0.0972050130367279 +karman_re50,target,8,3.2,velocity,upper_ux,1.145249843597412 +karman_re50,target,8,3.2,velocity,upper_uy,0.1798088103532791 +karman_re50,target,8,3.2,velocity,center_ux,1.0457152128219604 +karman_re50,target,8,3.2,velocity,center_uy,0.24427586793899536 +karman_re50,target,8,3.2,velocity,lower_ux,0.9466639161109924 +karman_re50,target,8,3.2,velocity,lower_uy,0.1688643842935562 +karman_re50,target,9,3.6,velocity,upper_ux,1.1146231889724731 +karman_re50,target,9,3.6,velocity,upper_uy,0.23131977021694183 +karman_re50,target,9,3.6,velocity,center_ux,1.0499671697616577 +karman_re50,target,9,3.6,velocity,center_uy,0.29508423805236816 +karman_re50,target,9,3.6,velocity,lower_ux,0.9822700023651123 +karman_re50,target,9,3.6,velocity,lower_uy,0.21260906755924225 +karman_re50,target,10,4.0,velocity,upper_ux,1.0848495960235596 +karman_re50,target,10,4.0,velocity,upper_uy,0.26467153429985046 +karman_re50,target,10,4.0,velocity,center_ux,1.0543209314346313 +karman_re50,target,10,4.0,velocity,center_uy,0.3262161314487457 +karman_re50,target,10,4.0,velocity,lower_ux,1.020004391670227 +karman_re50,target,10,4.0,velocity,lower_uy,0.24303634464740753 +karman_re50,target,11,4.4,velocity,upper_ux,1.0547749996185303 +karman_re50,target,11,4.4,velocity,upper_uy,0.2890814542770386 +karman_re50,target,11,4.4,velocity,center_ux,1.0574952363967896 +karman_re50,target,11,4.4,velocity,center_uy,0.35617586970329285 +karman_re50,target,11,4.4,velocity,lower_ux,1.0581973791122437 +karman_re50,target,11,4.4,velocity,lower_uy,0.27454352378845215 +karman_re50,target,12,4.8,velocity,upper_ux,1.0220646858215332 +karman_re50,target,12,4.8,velocity,upper_uy,0.3057600259780884 +karman_re50,target,12,4.8,velocity,center_ux,1.05765962600708 +karman_re50,target,12,4.8,velocity,center_uy,0.3881831765174866 +karman_re50,target,12,4.8,velocity,lower_ux,1.0977623462677002 +karman_re50,target,12,4.8,velocity,lower_uy,0.3098108768463135 +karman_re50,target,13,5.2,velocity,upper_ux,0.9855660200119019 +karman_re50,target,13,5.2,velocity,upper_uy,0.30697309970855713 +karman_re50,target,13,5.2,velocity,center_ux,1.0531996488571167 +karman_re50,target,13,5.2,velocity,center_uy,0.40612006187438965 +karman_re50,target,13,5.2,velocity,lower_ux,1.138486385345459 +karman_re50,target,13,5.2,velocity,lower_uy,0.33804458379745483 +karman_re50,target,14,5.6,velocity,upper_ux,0.9480282068252563 +karman_re50,target,14,5.6,velocity,upper_uy,0.28035107254981995 +karman_re50,target,14,5.6,velocity,center_ux,1.0450304746627808 +karman_re50,target,14,5.6,velocity,center_uy,0.3804906904697418 +karman_re50,target,14,5.6,velocity,lower_ux,1.1753665208816528 +karman_re50,target,14,5.6,velocity,lower_uy,0.3337915539741516 +karman_re50,target,15,6.0,velocity,upper_ux,0.9166383147239685 +karman_re50,target,15,6.0,velocity,upper_uy,0.21774426102638245 +karman_re50,target,15,6.0,velocity,center_ux,1.037766933441162 +karman_re50,target,15,6.0,velocity,center_uy,0.2916359007358551 +karman_re50,target,15,6.0,velocity,lower_ux,1.1999571323394775 +karman_re50,target,15,6.0,velocity,lower_uy,0.2717263400554657 +karman_re50,target,16,6.4,velocity,upper_ux,0.8987869024276733 +karman_re50,target,16,6.4,velocity,upper_uy,0.12348976731300354 +karman_re50,target,16,6.4,velocity,center_ux,1.0350593328475952 +karman_re50,target,16,6.4,velocity,center_uy,0.15162619948387146 +karman_re50,target,16,6.4,velocity,lower_ux,1.2071967124938965 +karman_re50,target,16,6.4,velocity,lower_uy,0.15800827741622925 +karman_re50,target,17,6.8,velocity,upper_ux,0.8983596563339233 +karman_re50,target,17,6.8,velocity,upper_uy,0.014668155461549759 +karman_re50,target,17,6.8,velocity,center_ux,1.0368694067001343 +karman_re50,target,17,6.8,velocity,center_uy,-0.004262116737663746 +karman_re50,target,17,6.8,velocity,lower_ux,1.1984381675720215 +karman_re50,target,17,6.8,velocity,lower_uy,0.027630247175693512 +karman_re50,target,18,7.2,velocity,upper_ux,0.9145036339759827 +karman_re50,target,18,7.2,velocity,upper_uy,-0.0863882526755333 +karman_re50,target,18,7.2,velocity,center_ux,1.0410575866699219 +karman_re50,target,18,7.2,velocity,center_uy,-0.14037078619003296 +karman_re50,target,18,7.2,velocity,lower_ux,1.177531123161316 +karman_re50,target,18,7.2,velocity,lower_uy,-0.08728272467851639 +karman_re50,target,19,7.6,velocity,upper_ux,0.942730724811554 +karman_re50,target,19,7.6,velocity,upper_uy,-0.16179159283638 +karman_re50,target,19,7.6,velocity,center_ux,1.0454087257385254 +karman_re50,target,19,7.6,velocity,center_uy,-0.23563097417354584 +karman_re50,target,19,7.6,velocity,lower_ux,1.149105429649353 +karman_re50,target,19,7.6,velocity,lower_uy,-0.1715870499610901 +karman_re50,target,20,8.0,velocity,upper_ux,0.9778393507003784 +karman_re50,target,20,8.0,velocity,upper_uy,-0.20836910605430603 +karman_re50,target,20,8.0,velocity,center_ux,1.0496201515197754 +karman_re50,target,20,8.0,velocity,center_uy,-0.2903643548488617 +karman_re50,target,20,8.0,velocity,lower_ux,1.1184598207473755 +karman_re50,target,20,8.0,velocity,lower_uy,-0.226125106215477 +karman_re50,target,21,8.4,velocity,upper_ux,1.0154649019241333 +karman_re50,target,21,8.4,velocity,upper_uy,-0.23947571218013763 +karman_re50,target,21,8.4,velocity,center_ux,1.0539747476577759 +karman_re50,target,21,8.4,velocity,center_uy,-0.32272082567214966 +karman_re50,target,21,8.4,velocity,lower_ux,1.0885648727416992 +karman_re50,target,21,8.4,velocity,lower_uy,-0.2611103951931 +karman_re50,target,22,8.8,velocity,upper_ux,1.053577184677124 +karman_re50,target,22,8.8,velocity,upper_uy,-0.27043044567108154 +karman_re50,target,22,8.8,velocity,center_ux,1.0573623180389404 +karman_re50,target,22,8.8,velocity,center_uy,-0.35228756070137024 +karman_re50,target,22,8.8,velocity,lower_ux,1.0586236715316772 +karman_re50,target,22,8.8,velocity,lower_uy,-0.2863847017288208 +karman_re50,target,23,9.2,velocity,upper_ux,1.09291410446167 +karman_re50,target,23,9.2,velocity,upper_uy,-0.30551356077194214 +karman_re50,target,23,9.2,velocity,center_ux,1.0579770803451538 +karman_re50,target,23,9.2,velocity,center_uy,-0.3845355212688446 +karman_re50,target,23,9.2,velocity,lower_ux,1.0263105630874634 +karman_re50,target,23,9.2,velocity,lower_uy,-0.3042865991592407 +karman_re50,target,24,9.6,velocity,upper_ux,1.1336674690246582 +karman_re50,target,24,9.6,velocity,upper_uy,-0.3356713354587555 +karman_re50,target,24,9.6,velocity,center_ux,1.0541212558746338 +karman_re50,target,24,9.6,velocity,center_uy,-0.4056418240070343 +karman_re50,target,24,9.6,velocity,lower_ux,0.990214467048645 +karman_re50,target,24,9.6,velocity,lower_uy,-0.30804046988487244 +karman_re50,target,25,10.0,velocity,upper_ux,1.171480655670166 +karman_re50,target,25,10.0,velocity,upper_uy,-0.3370108902454376 +karman_re50,target,25,10.0,velocity,center_ux,1.0462342500686646 +karman_re50,target,25,10.0,velocity,center_uy,-0.3868395686149597 +karman_re50,target,25,10.0,velocity,lower_ux,0.9524821639060974 +karman_re50,target,25,10.0,velocity,lower_uy,-0.28543195128440857 +karman_re50,target,26,10.4,velocity,upper_ux,1.1979858875274658 +karman_re50,target,26,10.4,velocity,upper_uy,-0.28246593475341797 +karman_re50,target,26,10.4,velocity,center_ux,1.0386162996292114 +karman_re50,target,26,10.4,velocity,center_uy,-0.3056880235671997 +karman_re50,target,26,10.4,velocity,lower_ux,0.9199060201644897 +karman_re50,target,26,10.4,velocity,lower_uy,-0.22726017236709595 +karman_re50,target,27,10.8,velocity,upper_ux,1.2073498964309692 +karman_re50,target,27,10.8,velocity,upper_uy,-0.17344938218593597 +karman_re50,target,27,10.8,velocity,center_ux,1.0352898836135864 +karman_re50,target,27,10.8,velocity,center_uy,-0.17023774981498718 +karman_re50,target,27,10.8,velocity,lower_ux,0.9000977277755737 +karman_re50,target,27,10.8,velocity,lower_uy,-0.1361353099346161 +karman_re50,target,28,11.2,velocity,upper_ux,1.200333595275879 +karman_re50,target,28,11.2,velocity,upper_uy,-0.043133221566677094 +karman_re50,target,28,11.2,velocity,center_ux,1.036636233329773 +karman_re50,target,28,11.2,velocity,center_uy,-0.01420674193650484 +karman_re50,target,28,11.2,velocity,lower_ux,0.8975040912628174 +karman_re50,target,28,11.2,velocity,lower_uy,-0.027902064844965935 +karman_re50,target,29,11.6,velocity,upper_ux,1.1806583404541016 +karman_re50,target,29,11.6,velocity,upper_uy,0.07477734982967377 +karman_re50,target,29,11.6,velocity,center_ux,1.0406538248062134 +karman_re50,target,29,11.6,velocity,center_uy,0.1257919818162918 +karman_re50,target,29,11.6,velocity,lower_ux,0.911827564239502 +karman_re50,target,29,11.6,velocity,lower_uy,0.0752396509051323 +karman_re50,target,30,12.0,velocity,upper_ux,1.1528617143630981 +karman_re50,target,30,12.0,velocity,upper_uy,0.16300535202026367 +karman_re50,target,30,12.0,velocity,center_ux,1.045039176940918 +karman_re50,target,30,12.0,velocity,center_uy,0.22642916440963745 +karman_re50,target,30,12.0,velocity,lower_ux,0.9388916492462158 +karman_re50,target,30,12.0,velocity,lower_uy,0.154307559132576 +karman_re50,target,31,12.4,velocity,upper_ux,1.1222528219223022 +karman_re50,target,31,12.4,velocity,upper_uy,0.22070875763893127 +karman_re50,target,31,12.4,velocity,center_ux,1.0492297410964966 +karman_re50,target,31,12.4,velocity,center_uy,0.2853509187698364 +karman_re50,target,31,12.4,velocity,lower_ux,0.9734423160552979 +karman_re50,target,31,12.4,velocity,lower_uy,0.20391929149627686 +karman_re50,target,32,12.8,velocity,upper_ux,1.0922305583953857 +karman_re50,target,32,12.8,velocity,upper_uy,0.2574618458747864 +karman_re50,target,32,12.8,velocity,center_ux,1.0535764694213867 +karman_re50,target,32,12.8,velocity,center_uy,0.31922921538352966 +karman_re50,target,32,12.8,velocity,lower_ux,1.0109319686889648 +karman_re50,target,32,12.8,velocity,lower_uy,0.2359485626220703 +karman_re50,target,33,13.2,velocity,upper_ux,1.0623905658721924 +karman_re50,target,33,13.2,velocity,upper_uy,0.28362295031547546 +karman_re50,target,33,13.2,velocity,center_ux,1.057151436805725 +karman_re50,target,33,13.2,velocity,center_uy,0.3484865427017212 +karman_re50,target,33,13.2,velocity,lower_ux,1.0489760637283325 +karman_re50,target,33,13.2,velocity,lower_uy,0.2664218246936798 +karman_re50,target,34,13.6,velocity,upper_ux,1.0304547548294067 +karman_re50,target,34,13.6,velocity,upper_uy,0.302629292011261 +karman_re50,target,34,13.6,velocity,center_ux,1.0581859350204468 +karman_re50,target,34,13.6,velocity,center_uy,0.3807646930217743 +karman_re50,target,34,13.6,velocity,lower_ux,1.0880929231643677 +karman_re50,target,34,13.6,velocity,lower_uy,0.30119895935058594 +karman_re50,target,35,14.0,velocity,upper_ux,0.994788646697998 +karman_re50,target,35,14.0,velocity,upper_uy,0.30871543288230896 +karman_re50,target,35,14.0,velocity,center_ux,1.0549262762069702 +karman_re50,target,35,14.0,velocity,center_uy,0.4045749008655548 +karman_re50,target,35,14.0,velocity,lower_ux,1.1288031339645386 +karman_re50,target,35,14.0,velocity,lower_uy,0.3329160809516907 +karman_re50,target,36,14.4,velocity,upper_ux,0.9569732546806335 +karman_re50,target,36,14.4,velocity,upper_uy,0.28994953632354736 +karman_re50,target,36,14.4,velocity,center_ux,1.0473841428756714 +karman_re50,target,36,14.4,velocity,center_uy,0.3922029733657837 +karman_re50,target,36,14.4,velocity,lower_ux,1.1674059629440308 +karman_re50,target,36,14.4,velocity,lower_uy,0.33937573432922363 +karman_re50,target,37,14.8,velocity,upper_ux,0.9233372211456299 +karman_re50,target,37,14.8,velocity,upper_uy,0.23622919619083405 +karman_re50,target,37,14.8,velocity,center_ux,1.0394772291183472 +karman_re50,target,37,14.8,velocity,center_uy,0.3188491463661194 +karman_re50,target,37,14.8,velocity,lower_ux,1.1957284212112427 +karman_re50,target,37,14.8,velocity,lower_uy,0.2923245131969452 +karman_re50,target,38,15.2,velocity,upper_ux,0.9016510844230652 +karman_re50,target,38,15.2,velocity,upper_uy,0.1484624147415161 +karman_re50,target,38,15.2,velocity,center_ux,1.0355371236801147 +karman_re50,target,38,15.2,velocity,center_uy,0.1884615570306778 +karman_re50,target,38,15.2,velocity,lower_ux,1.2072275876998901 +karman_re50,target,38,15.2,velocity,lower_uy,0.1885102093219757 +karman_re50,target,39,15.6,velocity,upper_ux,0.8968916535377502 +karman_re50,target,39,15.6,velocity,upper_uy,0.04115242883563042 +karman_re50,target,39,15.6,velocity,center_ux,1.0363929271697998 +karman_re50,target,39,15.6,velocity,center_uy,0.03283892944455147 +karman_re50,target,39,15.6,velocity,lower_ux,1.202000617980957 +karman_re50,target,39,15.6,velocity,lower_uy,0.058751411736011505 +karman_re50,target,40,16.0,velocity,upper_ux,0.9093371033668518 +karman_re50,target,40,16.0,velocity,upper_uy,-0.0637720599770546 +karman_re50,target,40,16.0,velocity,center_ux,1.0402089357376099 +karman_re50,target,40,16.0,velocity,center_uy,-0.11068561673164368 +karman_re50,target,40,16.0,velocity,lower_ux,1.1836198568344116 +karman_re50,target,40,16.0,velocity,lower_uy,-0.06190136820077896 +karman_re50,target,41,16.4,velocity,upper_ux,0.9351570010185242 +karman_re50,target,41,16.4,velocity,upper_uy,-0.14639872312545776 +karman_re50,target,41,16.4,velocity,center_ux,1.044622540473938 +karman_re50,target,41,16.4,velocity,center_uy,-0.2166420966386795 +karman_re50,target,41,16.4,velocity,lower_ux,1.1565284729003906 +karman_re50,target,41,16.4,velocity,lower_uy,-0.15403138101100922 +karman_re50,target,42,16.8,velocity,upper_ux,0.969086229801178 +karman_re50,target,42,16.8,velocity,upper_uy,-0.19922290742397308 +karman_re50,target,42,16.8,velocity,center_ux,1.0488096475601196 +karman_re50,target,42,16.8,velocity,center_uy,-0.2799958884716034 +karman_re50,target,42,16.8,velocity,lower_ux,1.1260151863098145 +karman_re50,target,42,16.8,velocity,lower_uy,-0.21503373980522156 +karman_re50,target,43,17.2,velocity,upper_ux,1.0064085721969604 +karman_re50,target,43,17.2,velocity,upper_uy,-0.2324276864528656 +karman_re50,target,43,17.2,velocity,center_ux,1.0531423091888428 +karman_re50,target,43,17.2,velocity,center_uy,-0.3157064616680145 +karman_re50,target,43,17.2,velocity,lower_ux,1.095865249633789 +karman_re50,target,43,17.2,velocity,lower_uy,-0.25370144844055176 +karman_re50,target,44,17.6,velocity,upper_ux,1.0443940162658691 +karman_re50,target,44,17.6,velocity,upper_uy,-0.26251161098480225 +karman_re50,target,44,17.6,velocity,center_ux,1.0568785667419434 +karman_re50,target,44,17.6,velocity,center_uy,-0.3447711169719696 +karman_re50,target,44,17.6,velocity,lower_ux,1.066092610359192 +karman_re50,target,44,17.6,velocity,lower_uy,-0.28079167008399963 +karman_re50,target,45,18.0,velocity,upper_ux,1.0833041667938232 +karman_re50,target,45,18.0,velocity,upper_uy,-0.2968845069408417 +karman_re50,target,45,18.0,velocity,center_ux,1.0583068132400513 +karman_re50,target,45,18.0,velocity,center_uy,-0.3769088685512543 +karman_re50,target,45,18.0,velocity,lower_ux,1.0345120429992676 +karman_re50,target,45,18.0,velocity,lower_uy,-0.30080646276474 +karman_re50,target,46,18.4,velocity,upper_ux,1.123910903930664 +karman_re50,target,46,18.4,velocity,upper_uy,-0.329829603433609 +karman_re50,target,46,18.4,velocity,center_ux,1.0556279420852661 +karman_re50,target,46,18.4,velocity,center_uy,-0.4029849171638489 +karman_re50,target,46,18.4,velocity,lower_ux,0.9992931485176086 +karman_re50,target,46,18.4,velocity,lower_uy,-0.3090272843837738 +karman_re50,target,47,18.8,velocity,upper_ux,1.1631684303283691 +karman_re50,target,47,18.8,velocity,upper_uy,-0.3409344553947449 +karman_re50,target,47,18.8,velocity,center_ux,1.0484857559204102 +karman_re50,target,47,18.8,velocity,center_uy,-0.3966221213340759 +karman_re50,target,47,18.8,velocity,lower_ux,0.9614917635917664 +karman_re50,target,47,18.8,velocity,lower_uy,-0.2939296066761017 +karman_re50,target,48,19.2,velocity,upper_ux,1.1932008266448975 +karman_re50,target,48,19.2,velocity,upper_uy,-0.3012848198413849 +karman_re50,target,48,19.2,velocity,center_ux,1.0403623580932617 +karman_re50,target,48,19.2,velocity,center_uy,-0.3311026096343994 +karman_re50,target,48,19.2,velocity,lower_ux,0.9269255995750427 +karman_re50,target,48,19.2,velocity,lower_uy,-0.24465423822402954 +karman_re50,target,49,19.6,velocity,upper_ux,1.2068355083465576 +karman_re50,target,49,19.6,velocity,upper_uy,-0.20314238965511322 +karman_re50,target,49,19.6,velocity,center_ux,1.0358247756958008 +karman_re50,target,49,19.6,velocity,center_uy,-0.20625430345535278 +karman_re50,target,49,19.6,velocity,lower_ux,0.9034426808357239 +karman_re50,target,49,19.6,velocity,lower_uy,-0.1604546159505844 +karman_re50,target,50,20.0,velocity,upper_ux,1.2034512758255005 +karman_re50,target,50,20.0,velocity,upper_uy,-0.07445953786373138 +karman_re50,target,50,20.0,velocity,center_ux,1.0361607074737549 +karman_re50,target,50,20.0,velocity,center_uy,-0.051597870886325836 +karman_re50,target,50,20.0,velocity,lower_ux,0.8965287804603577 +karman_re50,target,50,20.0,velocity,lower_uy,-0.054395198822021484 +karman_re50,target,51,20.4,velocity,upper_ux,1.186423659324646 +karman_re50,target,51,20.4,velocity,upper_uy,0.048652905970811844 +karman_re50,target,51,20.4,velocity,center_ux,1.039741039276123 +karman_re50,target,51,20.4,velocity,center_uy,0.09506449103355408 +karman_re50,target,51,20.4,velocity,lower_ux,0.9070388078689575 +karman_re50,target,51,20.4,velocity,lower_uy,0.05200377479195595 +karman_re50,target,52,20.8,velocity,upper_ux,1.160112738609314 +karman_re50,target,52,20.8,velocity,upper_uy,0.1446412056684494 +karman_re50,target,52,20.8,velocity,center_ux,1.0441700220108032 +karman_re50,target,52,20.8,velocity,center_uy,0.20624925196170807 +karman_re50,target,52,20.8,velocity,lower_ux,0.9315357804298401 +karman_re50,target,52,20.8,velocity,lower_uy,0.13805650174617767 +karman_re50,target,53,21.2,velocity,upper_ux,1.129758358001709 +karman_re50,target,53,21.2,velocity,upper_uy,0.2090689241886139 +karman_re50,target,53,21.2,velocity,center_ux,1.0483704805374146 +karman_re50,target,53,21.2,velocity,center_uy,0.2742542326450348 +karman_re50,target,53,21.2,velocity,lower_ux,0.9647780060768127 +karman_re50,target,53,21.2,velocity,lower_uy,0.19424596428871155 +karman_re50,target,54,21.6,velocity,upper_ux,1.0994850397109985 +karman_re50,target,54,21.6,velocity,upper_uy,0.24980683624744415 +karman_re50,target,54,21.6,velocity,center_ux,1.0526843070983887 +karman_re50,target,54,21.6,velocity,center_uy,0.31211739778518677 +karman_re50,target,54,21.6,velocity,lower_ux,1.001894474029541 +karman_re50,target,54,21.6,velocity,lower_uy,0.22888484597206116 +karman_re50,target,55,22.0,velocity,upper_ux,1.0697476863861084 +karman_re50,target,55,22.0,velocity,upper_uy,0.27788764238357544 +karman_re50,target,55,22.0,velocity,center_ux,1.0565571784973145 +karman_re50,target,55,22.0,velocity,center_uy,0.3411365747451782 +karman_re50,target,55,22.0,velocity,lower_ux,1.0398280620574951 +karman_re50,target,55,22.0,velocity,lower_uy,0.2586918771266937 +karman_re50,target,56,22.4,velocity,upper_ux,1.0384948253631592 +karman_re50,target,56,22.4,velocity,upper_uy,0.29883167147636414 +karman_re50,target,56,22.4,velocity,center_ux,1.0583500862121582 +karman_re50,target,56,22.4,velocity,center_uy,0.37299999594688416 +karman_re50,target,56,22.4,velocity,lower_ux,1.0785496234893799 +karman_re50,target,56,22.4,velocity,lower_uy,0.29258397221565247 +karman_re50,target,57,22.8,velocity,upper_ux,1.0037333965301514 +karman_re50,target,57,22.8,velocity,upper_uy,0.3090022802352905 +karman_re50,target,57,22.8,velocity,center_ux,1.056237816810608 +karman_re50,target,57,22.8,velocity,center_uy,0.4009343087673187 +karman_re50,target,57,22.8,velocity,lower_ux,1.1190050840377808 +karman_re50,target,57,22.8,velocity,lower_uy,0.32646074891090393 +karman_re50,target,58,23.2,velocity,upper_ux,0.9660331606864929 +karman_re50,target,58,23.2,velocity,upper_uy,0.2973915636539459 +karman_re50,target,58,23.2,velocity,center_ux,1.049544095993042 +karman_re50,target,58,23.2,velocity,center_uy,0.40014025568962097 +karman_re50,target,58,23.2,velocity,lower_ux,1.1587889194488525 +karman_re50,target,58,23.2,velocity,lower_uy,0.34173858165740967 +karman_re50,target,59,23.6,velocity,upper_ux,0.9306628704071045 +karman_re50,target,59,23.6,velocity,upper_uy,0.25253409147262573 +karman_re50,target,59,23.6,velocity,center_ux,1.0412789583206177 +karman_re50,target,59,23.6,velocity,center_uy,0.34243106842041016 +karman_re50,target,59,23.6,velocity,lower_ux,1.1904178857803345 +karman_re50,target,59,23.6,velocity,lower_uy,0.30933335423469543 +karman_re50,target,60,24.0,velocity,upper_ux,0.9054728150367737 +karman_re50,target,60,24.0,velocity,upper_uy,0.17208948731422424 +karman_re50,target,60,24.0,velocity,center_ux,1.0361590385437012 +karman_re50,target,60,24.0,velocity,center_uy,0.22356641292572021 +karman_re50,target,60,24.0,velocity,lower_ux,1.2061841487884521 +karman_re50,target,60,24.0,velocity,lower_uy,0.21729347109794617 +karman_re50,target,61,24.4,velocity,upper_ux,0.8964183926582336 +karman_re50,target,61,24.4,velocity,upper_uy,0.0676000788807869 +karman_re50,target,61,24.4,velocity,center_ux,1.0359537601470947 +karman_re50,target,61,24.4,velocity,center_uy,0.07043930143117905 +karman_re50,target,61,24.4,velocity,lower_ux,1.2046864032745361 +karman_re50,target,61,24.4,velocity,lower_uy,0.09022524207830429 +karman_re50,target,62,24.8,velocity,upper_ux,0.9049440026283264 +karman_re50,target,62,24.8,velocity,upper_uy,-0.03995833918452263 +karman_re50,target,62,24.8,velocity,center_ux,1.0392640829086304 +karman_re50,target,62,24.8,velocity,center_uy,-0.07894822955131531 +karman_re50,target,62,24.8,velocity,lower_ux,1.189073085784912 +karman_re50,target,62,24.8,velocity,lower_uy,-0.03503502532839775 +karman_re50,target,63,25.2,velocity,upper_ux,0.9280384182929993 +karman_re50,target,63,25.2,velocity,upper_uy,-0.1292782425880432 +karman_re50,target,63,25.2,velocity,center_ux,1.0436906814575195 +karman_re50,target,63,25.2,velocity,center_uy,-0.1952349692583084 +karman_re50,target,63,25.2,velocity,lower_ux,1.1636146306991577 +karman_re50,target,63,25.2,velocity,lower_uy,-0.1348152607679367 +karman_re50,target,64,25.6,velocity,upper_ux,0.9605236649513245 +karman_re50,target,64,25.6,velocity,upper_uy,-0.18895655870437622 +karman_re50,target,64,25.6,velocity,center_ux,1.0479165315628052 +karman_re50,target,64,25.6,velocity,center_uy,-0.26808369159698486 +karman_re50,target,64,25.6,velocity,lower_ux,1.1334848403930664 +karman_re50,target,64,25.6,velocity,lower_uy,-0.20278353989124298 +karman_re50,target,65,26.0,velocity,upper_ux,0.997391939163208 +karman_re50,target,65,26.0,velocity,upper_uy,-0.2252916395664215 +karman_re50,target,65,26.0,velocity,center_ux,1.052209496498108 +karman_re50,target,65,26.0,velocity,center_uy,-0.3084244430065155 +karman_re50,target,65,26.0,velocity,lower_ux,1.1030986309051514 +karman_re50,target,65,26.0,velocity,lower_uy,-0.24575424194335938 +karman_re50,target,66,26.4,velocity,upper_ux,1.0352762937545776 +karman_re50,target,66,26.4,velocity,upper_uy,-0.25495636463165283 +karman_re50,target,66,26.4,velocity,center_ux,1.0561952590942383 +karman_re50,target,66,26.4,velocity,center_uy,-0.3375738561153412 +karman_re50,target,66,26.4,velocity,lower_ux,1.0733661651611328 +karman_re50,target,66,26.4,velocity,lower_uy,-0.2749042212963104 +karman_re50,target,67,26.8,velocity,upper_ux,1.073828101158142 +karman_re50,target,67,26.8,velocity,upper_uy,-0.2883128225803375 +karman_re50,target,67,26.8,velocity,center_ux,1.0583282709121704 +karman_re50,target,67,26.8,velocity,center_uy,-0.36906564235687256 +karman_re50,target,67,26.8,velocity,lower_ux,1.04241144657135 +karman_re50,target,67,26.8,velocity,lower_uy,-0.29671889543533325 +karman_re50,target,68,27.2,velocity,upper_ux,1.1140974760055542 +karman_re50,target,68,27.2,velocity,upper_uy,-0.32285454869270325 +karman_re50,target,68,27.2,velocity,center_ux,1.0567611455917358 +karman_re50,target,68,27.2,velocity,center_uy,-0.39848124980926514 +karman_re50,target,68,27.2,velocity,lower_ux,1.0081098079681396 +karman_re50,target,68,27.2,velocity,lower_uy,-0.30866721272468567 +karman_re50,target,69,27.6,velocity,upper_ux,1.1542874574661255 +karman_re50,target,69,27.6,velocity,upper_uy,-0.3418423533439636 +karman_re50,target,69,27.6,velocity,center_ux,1.0505553483963013 +karman_re50,target,69,27.6,velocity,center_uy,-0.40280044078826904 +karman_re50,target,69,27.6,velocity,lower_ux,0.9705875515937805 +karman_re50,target,69,27.6,velocity,lower_uy,-0.3003574311733246 +karman_re50,target,70,28.0,velocity,upper_ux,1.187389850616455 +karman_re50,target,70,28.0,velocity,upper_uy,-0.31646212935447693 +karman_re50,target,70,28.0,velocity,center_ux,1.0422258377075195 +karman_re50,target,70,28.0,velocity,center_uy,-0.35281893610954285 +karman_re50,target,70,28.0,velocity,lower_ux,0.9345393180847168 +karman_re50,target,70,28.0,velocity,lower_uy,-0.2598700225353241 +karman_re50,target,71,28.4,velocity,upper_ux,1.2052687406539917 +karman_re50,target,71,28.4,velocity,upper_uy,-0.23090538382530212 +karman_re50,target,71,28.4,velocity,center_ux,1.0365536212921143 +karman_re50,target,71,28.4,velocity,center_uy,-0.2403450906276703 +karman_re50,target,71,28.4,velocity,lower_ux,0.9077353477478027 +karman_re50,target,71,28.4,velocity,lower_uy,-0.18334683775901794 +karman_re50,target,72,28.8,velocity,upper_ux,1.2057064771652222 +karman_re50,target,72,28.8,velocity,upper_uy,-0.10600581765174866 +karman_re50,target,72,28.8,velocity,center_ux,1.035783052444458 +karman_re50,target,72,28.8,velocity,center_uy,-0.08931375294923782 +karman_re50,target,72,28.8,velocity,lower_ux,0.8965626358985901 +karman_re50,target,72,28.8,velocity,lower_uy,-0.08073810487985611 +karman_re50,target,73,29.2,velocity,upper_ux,1.1915663480758667 +karman_re50,target,73,29.2,velocity,upper_uy,0.02106107771396637 +karman_re50,target,73,29.2,velocity,center_ux,1.03878915309906 +karman_re50,target,73,29.2,velocity,center_uy,0.06236208975315094 +karman_re50,target,73,29.2,velocity,lower_ux,0.9030615091323853 +karman_re50,target,73,29.2,velocity,lower_uy,0.027659006416797638 +karman_re50,target,74,29.6,velocity,upper_ux,1.1670325994491577 +karman_re50,target,74,29.6,velocity,upper_uy,0.12454217672348022 +karman_re50,target,74,29.6,velocity,center_ux,1.0431907176971436 +karman_re50,target,74,29.6,velocity,center_uy,0.18359056115150452 +karman_re50,target,74,29.6,velocity,lower_ux,0.9246716499328613 +karman_re50,target,74,29.6,velocity,lower_uy,0.12006380409002304 +karman_re50,target,75,30.0,velocity,upper_ux,1.1371955871582031 +karman_re50,target,75,30.0,velocity,upper_uy,0.1961531788110733 +karman_re50,target,75,30.0,velocity,center_ux,1.0474518537521362 +karman_re50,target,75,30.0,velocity,center_uy,0.2614450454711914 +karman_re50,target,75,30.0,velocity,lower_ux,0.9563290476799011 +karman_re50,target,75,30.0,velocity,lower_uy,0.18332445621490479 +karman_re50,target,76,30.4,velocity,upper_ux,1.1067144870758057 +karman_re50,target,76,30.4,velocity,upper_uy,0.24152304232120514 +karman_re50,target,76,30.4,velocity,center_ux,1.0517246723175049 +karman_re50,target,76,30.4,velocity,center_uy,0.3045896589756012 +karman_re50,target,76,30.4,velocity,lower_ux,0.9929032921791077 +karman_re50,target,76,30.4,velocity,lower_uy,0.22161774337291718 +karman_re50,target,77,30.8,velocity,upper_ux,1.0769578218460083 +karman_re50,target,77,30.8,velocity,upper_uy,0.27183598279953003 +karman_re50,target,77,30.8,velocity,center_ux,1.0558017492294312 +karman_re50,target,77,30.8,velocity,center_uy,0.3340740501880646 +karman_re50,target,77,30.8,velocity,lower_ux,1.0307354927062988 +karman_re50,target,77,30.8,velocity,lower_uy,0.2512955367565155 +karman_re50,target,78,31.2,velocity,upper_ux,1.0462685823440552 +karman_re50,target,78,31.2,velocity,upper_uy,0.29448071122169495 +karman_re50,target,78,31.2,velocity,center_ux,1.0582449436187744 +karman_re50,target,78,31.2,velocity,center_uy,0.36513152718544006 +karman_re50,target,78,31.2,velocity,lower_ux,1.0691381692886353 +karman_re50,target,78,31.2,velocity,lower_uy,0.28408345580101013 +karman_re50,target,79,31.6,velocity,upper_ux,1.0124232769012451 +karman_re50,target,79,31.6,velocity,upper_uy,0.30804550647735596 +karman_re50,target,79,31.6,velocity,center_ux,1.0572046041488647 +karman_re50,target,79,31.6,velocity,center_uy,0.39568400382995605 +karman_re50,target,79,31.6,velocity,lower_ux,1.1091974973678589 +karman_re50,target,79,31.6,velocity,lower_uy,0.3190540373325348 +karman_re50,target,80,32.0,velocity,upper_ux,0.9751450419425964 +karman_re50,target,80,32.0,velocity,upper_uy,0.3028479218482971 +karman_re50,target,80,32.0,velocity,center_ux,1.051518201828003 +karman_re50,target,80,32.0,velocity,center_uy,0.40465113520622253 +karman_re50,target,80,32.0,velocity,lower_ux,1.1496820449829102 +karman_re50,target,80,32.0,velocity,lower_uy,0.34130004048347473 +karman_re50,target,81,32.4,velocity,upper_ux,0.9385409355163574 +karman_re50,target,81,32.4,velocity,upper_uy,0.2666607201099396 +karman_re50,target,81,32.4,velocity,center_ux,1.0432034730911255 +karman_re50,target,81,32.4,velocity,center_uy,0.36225444078445435 +karman_re50,target,81,32.4,velocity,lower_ux,1.184131383895874 +karman_re50,target,81,32.4,velocity,lower_uy,0.32266947627067566 +karman_re50,target,82,32.8,velocity,upper_ux,0.9102238416671753 +karman_re50,target,82,32.8,velocity,upper_uy,0.19420142471790314 +karman_re50,target,82,32.8,velocity,center_ux,1.0370123386383057 +karman_re50,target,82,32.8,velocity,center_uy,0.2565348446369171 +karman_re50,target,82,32.8,velocity,lower_ux,1.204095482826233 +karman_re50,target,82,32.8,velocity,lower_uy,0.243919238448143 +karman_re50,target,83,33.2,velocity,upper_ux,0.8969646692276001 +karman_re50,target,83,33.2,velocity,upper_uy,0.09377370774745941 +karman_re50,target,83,33.2,velocity,center_ux,1.035658359527588 +karman_re50,target,83,33.2,velocity,center_uy,0.108164481818676 +karman_re50,target,83,33.2,velocity,lower_ux,1.2065109014511108 +karman_re50,target,83,33.2,velocity,lower_uy,0.12175145000219345 +karman_re50,target,84,33.6,velocity,upper_ux,0.9013999700546265 +karman_re50,target,84,33.6,velocity,upper_uy,-0.01513728965073824 +karman_re50,target,84,33.6,velocity,center_ux,1.0383247137069702 +karman_re50,target,84,33.6,velocity,center_uy,-0.04534035176038742 +karman_re50,target,84,33.6,velocity,lower_ux,1.1939010620117188 +karman_re50,target,84,33.6,velocity,lower_uy,-0.006750758271664381 +karman_re50,target,85,34.0,velocity,upper_ux,0.9214482307434082 +karman_re50,target,85,34.0,velocity,upper_uy,-0.11042043566703796 +karman_re50,target,85,34.0,velocity,center_ux,1.0426745414733887 +karman_re50,target,85,34.0,velocity,center_uy,-0.17131353914737701 +karman_re50,target,85,34.0,velocity,lower_ux,1.1703619956970215 +karman_re50,target,85,34.0,velocity,lower_uy,-0.11381415277719498 +karman_re50,target,86,34.4,velocity,upper_ux,0.9522016644477844 +karman_re50,target,86,34.4,velocity,upper_uy,-0.17732369899749756 +karman_re50,target,86,34.4,velocity,center_ux,1.0469774007797241 +karman_re50,target,86,34.4,velocity,center_uy,-0.2543015778064728 +karman_re50,target,86,34.4,velocity,lower_ux,1.1408891677856445 +karman_re50,target,86,34.4,velocity,lower_uy,-0.18915389478206635 +karman_re50,target,87,34.8,velocity,upper_ux,0.9884312152862549 +karman_re50,target,87,34.8,velocity,upper_uy,-0.21783217787742615 +karman_re50,target,87,34.8,velocity,center_ux,1.0512337684631348 +karman_re50,target,87,34.8,velocity,center_uy,-0.30057254433631897 +karman_re50,target,87,34.8,velocity,lower_ux,1.1103359460830688 +karman_re50,target,87,34.8,velocity,lower_uy,-0.23709076642990112 +karman_re50,target,88,35.2,velocity,upper_ux,1.0262037515640259 +karman_re50,target,88,35.2,velocity,upper_uy,-0.24770057201385498 +karman_re50,target,88,35.2,velocity,center_ux,1.0553810596466064 +karman_re50,target,88,35.2,velocity,center_uy,-0.3306226432323456 +karman_re50,target,88,35.2,velocity,lower_ux,1.080531120300293 +karman_re50,target,88,35.2,velocity,lower_uy,-0.2686755657196045 +karman_re50,target,89,35.6,velocity,upper_ux,1.0644769668579102 +karman_re50,target,89,35.6,velocity,upper_uy,-0.2799072861671448 +karman_re50,target,89,35.6,velocity,center_ux,1.0581060647964478 +karman_re50,target,89,35.6,velocity,center_uy,-0.36121830344200134 +karman_re50,target,89,35.6,velocity,lower_ux,1.050072193145752 +karman_re50,target,89,35.6,velocity,lower_uy,-0.29212692379951477 +karman_re50,target,90,36.0,velocity,upper_ux,1.1043108701705933 +karman_re50,target,90,36.0,velocity,upper_uy,-0.3150978982448578 +karman_re50,target,90,36.0,velocity,center_ux,1.0575703382492065 +karman_re50,target,90,36.0,velocity,center_uy,-0.39259424805641174 +karman_re50,target,90,36.0,velocity,lower_ux,1.0166754722595215 +karman_re50,target,90,36.0,velocity,lower_uy,-0.307159960269928 +karman_re50,target,91,36.4,velocity,upper_ux,1.1449894905090332 +karman_re50,target,91,36.4,velocity,upper_uy,-0.34017032384872437 +karman_re50,target,91,36.4,velocity,center_ux,1.0524274110794067 +karman_re50,target,91,36.4,velocity,center_uy,-0.40574225783348083 +karman_re50,target,91,36.4,velocity,lower_ux,0.9796979427337646 +karman_re50,target,91,36.4,velocity,lower_uy,-0.30488312244415283 +karman_re50,target,92,36.8,velocity,upper_ux,1.1806527376174927 +karman_re50,target,92,36.8,velocity,upper_uy,-0.3279624283313751 +karman_re50,target,92,36.8,velocity,center_ux,1.044203758239746 +karman_re50,target,92,36.8,velocity,center_uy,-0.3707318902015686 +karman_re50,target,92,36.8,velocity,lower_ux,0.9426569938659668 +karman_re50,target,92,36.8,velocity,lower_uy,-0.27290815114974976 +karman_re50,target,93,37.2,velocity,upper_ux,1.2026599645614624 +karman_re50,target,93,37.2,velocity,upper_uy,-0.2562769949436188 +karman_re50,target,93,37.2,velocity,center_ux,1.0375374555587769 +karman_re50,target,93,37.2,velocity,center_uy,-0.27208220958709717 +karman_re50,target,93,37.2,velocity,lower_ux,0.9129317998886108 +karman_re50,target,93,37.2,velocity,lower_uy,-0.2046326845884323 +karman_re50,target,94,37.6,velocity,upper_ux,1.2070945501327515 +karman_re50,target,94,37.6,velocity,upper_uy,-0.1374090313911438 +karman_re50,target,94,37.6,velocity,center_ux,1.0355839729309082 +karman_re50,target,94,37.6,velocity,center_uy,-0.12693430483341217 +karman_re50,target,94,37.6,velocity,lower_ux,0.897625207901001 +karman_re50,target,94,37.6,velocity,lower_uy,-0.1066742017865181 +karman_re50,target,95,38.0,velocity,upper_ux,1.1960736513137817 +karman_re50,target,95,38.0,velocity,upper_uy,-0.007872730493545532 +karman_re50,target,95,38.0,velocity,center_ux,1.0378775596618652 +karman_re50,target,95,38.0,velocity,center_uy,0.027918193489313126 +karman_re50,target,95,38.0,velocity,lower_ux,0.8999655246734619 +karman_re50,target,95,38.0,velocity,lower_uy,0.002422576304525137 +karman_re50,target,96,38.4,velocity,upper_ux,1.1735966205596924 +karman_re50,target,96,38.4,velocity,upper_uy,0.102627694606781 +karman_re50,target,96,38.4,velocity,center_ux,1.0421464443206787 +karman_re50,target,96,38.4,velocity,center_uy,0.158405601978302 +karman_re50,target,96,38.4,velocity,lower_ux,0.9183760285377502 +karman_re50,target,96,38.4,velocity,lower_uy,0.10035651922225952 +karman_re50,target,97,38.8,velocity,upper_ux,1.1445612907409668 +karman_re50,target,97,38.8,velocity,upper_uy,0.1817646473646164 +karman_re50,target,97,38.8,velocity,center_ux,1.0464932918548584 +karman_re50,target,97,38.8,velocity,center_uy,0.24662181735038757 +karman_re50,target,97,38.8,velocity,lower_ux,0.9481483697891235 +karman_re50,target,97,38.8,velocity,lower_uy,0.1709296554327011 +karman_re50,target,98,39.2,velocity,upper_ux,1.1139672994613647 +karman_re50,target,98,39.2,velocity,upper_uy,0.23243604600429535 +karman_re50,target,98,39.2,velocity,center_ux,1.05073881149292 +karman_re50,target,98,39.2,velocity,center_uy,0.2963341176509857 +karman_re50,target,98,39.2,velocity,lower_ux,0.983978807926178 +karman_re50,target,98,39.2,velocity,lower_uy,0.2139018028974533 +karman_re50,target,99,39.6,velocity,upper_ux,1.084092378616333 +karman_re50,target,99,39.6,velocity,upper_uy,0.2654159665107727 +karman_re50,target,99,39.6,velocity,center_ux,1.0549386739730835 +karman_re50,target,99,39.6,velocity,center_uy,0.3272038698196411 +karman_re50,target,99,39.6,velocity,lower_ux,1.0216790437698364 +karman_re50,target,99,39.6,velocity,lower_uy,0.24415677785873413 +karman_re50,target,100,40.0,velocity,upper_ux,1.0538299083709717 +karman_re50,target,100,40.0,velocity,upper_uy,0.2896675169467926 +karman_re50,target,100,40.0,velocity,center_ux,1.057918906211853 +karman_re50,target,100,40.0,velocity,center_uy,0.35734325647354126 +karman_re50,target,100,40.0,velocity,lower_ux,1.0598440170288086 +karman_re50,target,100,40.0,velocity,lower_uy,0.2757919430732727 +karman_re50,target,101,40.4,velocity,upper_ux,1.0208685398101807 +karman_re50,target,101,40.4,velocity,upper_uy,0.3060344457626343 +karman_re50,target,101,40.4,velocity,center_ux,1.0578633546829224 +karman_re50,target,101,40.4,velocity,center_uy,0.38926371932029724 +karman_re50,target,101,40.4,velocity,lower_ux,1.099446177482605 +karman_re50,target,101,40.4,velocity,lower_uy,0.3110215663909912 +karman_re50,target,102,40.8,velocity,upper_ux,0.9842371344566345 +karman_re50,target,102,40.8,velocity,upper_uy,0.30648699402809143 +karman_re50,target,102,40.8,velocity,center_ux,1.0532795190811157 +karman_re50,target,102,40.8,velocity,center_uy,0.40612727403640747 +karman_re50,target,102,40.8,velocity,lower_ux,1.1402279138565063 +karman_re50,target,102,40.8,velocity,lower_uy,0.3385087251663208 +karman_re50,target,103,41.2,velocity,upper_ux,0.946872353553772 +karman_re50,target,103,41.2,velocity,upper_uy,0.2786165475845337 +karman_re50,target,103,41.2,velocity,center_ux,1.0452227592468262 +karman_re50,target,103,41.2,velocity,center_uy,0.3782491385936737 +karman_re50,target,103,41.2,velocity,lower_ux,1.176971197128296 +karman_re50,target,103,41.2,velocity,lower_uy,0.33235394954681396 +karman_re50,target,104,41.6,velocity,upper_ux,0.9158486127853394 +karman_re50,target,104,41.6,velocity,upper_uy,0.21461820602416992 +karman_re50,target,104,41.6,velocity,center_ux,1.038131833076477 +karman_re50,target,104,41.6,velocity,center_uy,0.2869310975074768 +karman_re50,target,104,41.6,velocity,lower_ux,1.200965166091919 +karman_re50,target,104,41.6,velocity,lower_uy,0.2679220139980316 +karman_re50,target,105,42.0,velocity,upper_ux,0.8985450267791748 +karman_re50,target,105,42.0,velocity,upper_uy,0.11940270662307739 +karman_re50,target,105,42.0,velocity,center_ux,1.0355719327926636 +karman_re50,target,105,42.0,velocity,center_uy,0.14555831253528595 +karman_re50,target,105,42.0,velocity,lower_ux,1.2074553966522217 +karman_re50,target,105,42.0,velocity,lower_uy,0.15291665494441986 +karman_re50,target,106,42.4,velocity,upper_ux,0.8987663388252258 +karman_re50,target,106,42.4,velocity,upper_uy,0.010449527762830257 +karman_re50,target,106,42.4,velocity,center_ux,1.0374560356140137 +karman_re50,target,106,42.4,velocity,center_uy,-0.010140053927898407 +karman_re50,target,106,42.4,velocity,lower_ux,1.1980788707733154 +karman_re50,target,106,42.4,velocity,lower_uy,0.022778015583753586 +karman_re50,target,107,42.8,velocity,upper_ux,0.9154672026634216 +karman_re50,target,107,42.8,velocity,upper_uy,-0.08988839387893677 +karman_re50,target,107,42.8,velocity,center_ux,1.0416127443313599 +karman_re50,target,107,42.8,velocity,center_uy,-0.1448758989572525 +karman_re50,target,107,42.8,velocity,lower_ux,1.1767313480377197 +karman_re50,target,107,42.8,velocity,lower_uy,-0.09098445624113083 +karman_re50,target,108,43.2,velocity,upper_ux,0.9441792964935303 +karman_re50,target,108,43.2,velocity,upper_uy,-0.1641242951154709 +karman_re50,target,108,43.2,velocity,center_ux,1.04600191116333 +karman_re50,target,108,43.2,velocity,center_uy,-0.2383754402399063 +karman_re50,target,108,43.2,velocity,lower_ux,1.148206114768982 +karman_re50,target,108,43.2,velocity,lower_uy,-0.17396610975265503 +karman_re50,target,109,43.6,velocity,upper_ux,0.9795511364936829 +karman_re50,target,109,43.6,velocity,upper_uy,-0.20979490876197815 +karman_re50,target,109,43.6,velocity,center_ux,1.0502432584762573 +karman_re50,target,109,43.6,velocity,center_uy,-0.29183217883110046 +karman_re50,target,109,43.6,velocity,lower_ux,1.1176091432571411 +karman_re50,target,109,43.6,velocity,lower_uy,-0.22753611207008362 +karman_re50,target,110,44.0,velocity,upper_ux,1.0171613693237305 +karman_re50,target,110,44.0,velocity,upper_uy,-0.2406521588563919 +karman_re50,target,110,44.0,velocity,center_ux,1.0544793605804443 +karman_re50,target,110,44.0,velocity,center_uy,-0.3237970471382141 +karman_re50,target,110,44.0,velocity,lower_ux,1.0876480340957642 +karman_re50,target,110,44.0,velocity,lower_uy,-0.26204434037208557 +karman_re50,target,111,44.4,velocity,upper_ux,1.0552335977554321 +karman_re50,target,111,44.4,velocity,upper_uy,-0.27174681425094604 +karman_re50,target,111,44.4,velocity,center_ux,1.0576872825622559 +karman_re50,target,111,44.4,velocity,center_uy,-0.35351940989494324 +karman_re50,target,111,44.4,velocity,lower_ux,1.0575443506240845 +karman_re50,target,111,44.4,velocity,lower_uy,-0.28710898756980896 +karman_re50,target,112,44.8,velocity,upper_ux,1.0946063995361328 +karman_re50,target,112,44.8,velocity,upper_uy,-0.3068585693836212 +karman_re50,target,112,44.8,velocity,center_ux,1.05808687210083 +karman_re50,target,112,44.8,velocity,center_uy,-0.38573798537254333 +karman_re50,target,112,44.8,velocity,lower_ux,1.0250006914138794 +karman_re50,target,112,44.8,velocity,lower_uy,-0.3046882152557373 +karman_re50,target,113,45.2,velocity,upper_ux,1.135411024093628 +karman_re50,target,113,45.2,velocity,upper_uy,-0.33637356758117676 +karman_re50,target,113,45.2,velocity,center_ux,1.054071068763733 +karman_re50,target,113,45.2,velocity,center_uy,-0.4058605134487152 +karman_re50,target,113,45.2,velocity,lower_ux,0.9887537360191345 +karman_re50,target,113,45.2,velocity,lower_uy,-0.3076794147491455 +karman_re50,target,114,45.6,velocity,upper_ux,1.173099160194397 +karman_re50,target,114,45.6,velocity,upper_uy,-0.3358670473098755 +karman_re50,target,114,45.6,velocity,center_ux,1.0462499856948853 +karman_re50,target,114,45.6,velocity,center_uy,-0.3848135769367218 +karman_re50,target,114,45.6,velocity,lower_ux,0.9511733055114746 +karman_re50,target,114,45.6,velocity,lower_uy,-0.28378915786743164 +karman_re50,target,115,46.0,velocity,upper_ux,1.1990113258361816 +karman_re50,target,115,46.0,velocity,upper_uy,-0.2788028419017792 +karman_re50,target,115,46.0,velocity,center_ux,1.0387929677963257 +karman_re50,target,115,46.0,velocity,center_uy,-0.30103200674057007 +karman_re50,target,115,46.0,velocity,lower_ux,0.9189656972885132 +karman_re50,target,115,46.0,velocity,lower_uy,-0.22413669526576996 +karman_re50,target,116,46.4,velocity,upper_ux,1.2075872421264648 +karman_re50,target,116,46.4,velocity,upper_uy,-0.1682109385728836 +karman_re50,target,116,46.4,velocity,center_ux,1.0356196165084839 +karman_re50,target,116,46.4,velocity,center_uy,-0.16397212445735931 +karman_re50,target,116,46.4,velocity,lower_ux,0.8997207880020142 +karman_re50,target,116,46.4,velocity,lower_uy,-0.1319229155778885 +karman_re50,target,117,46.8,velocity,upper_ux,1.1999105215072632 +karman_re50,target,117,46.8,velocity,upper_uy,-0.03792993724346161 +karman_re50,target,117,46.8,velocity,center_ux,1.037063717842102 +karman_re50,target,117,46.8,velocity,center_uy,-0.007946825586259365 +karman_re50,target,117,46.8,velocity,lower_ux,0.8978071808815002 +karman_re50,target,117,46.8,velocity,lower_uy,-0.023443792015314102 +karman_re50,target,118,47.2,velocity,upper_ux,1.1797595024108887 +karman_re50,target,118,47.2,velocity,upper_uy,0.07889098674058914 +karman_re50,target,118,47.2,velocity,center_ux,1.0410757064819336 +karman_re50,target,118,47.2,velocity,center_uy,0.1307382434606552 +karman_re50,target,118,47.2,velocity,lower_ux,0.9127286672592163 +karman_re50,target,118,47.2,velocity,lower_uy,0.07903362810611725 +karman_re50,target,119,47.6,velocity,upper_ux,1.1518183946609497 +karman_re50,target,119,47.6,velocity,upper_uy,0.16574272513389587 +karman_re50,target,119,47.6,velocity,center_ux,1.0455013513565063 +karman_re50,target,119,47.6,velocity,center_uy,0.22953951358795166 +karman_re50,target,119,47.6,velocity,lower_ux,0.9403000473976135 +karman_re50,target,119,47.6,velocity,lower_uy,0.15689082443714142 +karman_re50,target,120,48.0,velocity,upper_ux,1.1212620735168457 +karman_re50,target,120,48.0,velocity,upper_uy,0.2223699986934662 +karman_re50,target,120,48.0,velocity,center_ux,1.0497472286224365 +karman_re50,target,120,48.0,velocity,center_uy,0.28702566027641296 +karman_re50,target,120,48.0,velocity,lower_ux,0.9751520752906799 +karman_re50,target,120,48.0,velocity,lower_uy,0.20547683537006378 +karman_re50,target,121,48.4,velocity,upper_ux,1.0912022590637207 +karman_re50,target,121,48.4,velocity,upper_uy,0.25855135917663574 +karman_re50,target,121,48.4,velocity,center_ux,1.0540066957473755 +karman_re50,target,121,48.4,velocity,center_uy,0.32037895917892456 +karman_re50,target,121,48.4,velocity,lower_ux,1.012648344039917 +karman_re50,target,121,48.4,velocity,lower_uy,0.23716720938682556 +karman_re50,target,122,48.8,velocity,upper_ux,1.0612218379974365 +karman_re50,target,122,48.8,velocity,upper_uy,0.2844575345516205 +karman_re50,target,122,48.8,velocity,center_ux,1.0574160814285278 +karman_re50,target,122,48.8,velocity,center_uy,0.34975650906562805 +karman_re50,target,122,48.8,velocity,lower_ux,1.0506457090377808 +karman_re50,target,122,48.8,velocity,lower_uy,0.2677748501300812 +karman_re50,target,123,49.2,velocity,upper_ux,1.0290744304656982 +karman_re50,target,123,49.2,velocity,upper_uy,0.30314287543296814 +karman_re50,target,123,49.2,velocity,center_ux,1.0582451820373535 +karman_re50,target,123,49.2,velocity,center_uy,0.3820629417896271 +karman_re50,target,123,49.2,velocity,lower_ux,1.0897942781448364 +karman_re50,target,123,49.2,velocity,lower_uy,0.302636981010437 +karman_re50,target,124,49.6,velocity,upper_ux,0.9932414293289185 +karman_re50,target,124,49.6,velocity,upper_uy,0.3084847927093506 +karman_re50,target,124,49.6,velocity,center_ux,1.0547980070114136 +karman_re50,target,124,49.6,velocity,center_uy,0.404999315738678 +karman_re50,target,124,49.6,velocity,lower_ux,1.1305549144744873 +karman_re50,target,124,49.6,velocity,lower_uy,0.33382004499435425 +karman_re50,target,125,50.0,velocity,upper_ux,0.9555469751358032 +karman_re50,target,125,50.0,velocity,upper_uy,0.2884344756603241 +karman_re50,target,125,50.0,velocity,center_ux,1.0472794771194458 +karman_re50,target,125,50.0,velocity,center_uy,0.3904381990432739 +karman_re50,target,125,50.0,velocity,lower_ux,1.1690508127212524 +karman_re50,target,125,50.0,velocity,lower_uy,0.33853188157081604 +karman_re50,target,126,50.4,velocity,upper_ux,0.9222730398178101 +karman_re50,target,126,50.4,velocity,upper_uy,0.23317112028598785 +karman_re50,target,126,50.4,velocity,center_ux,1.0395197868347168 +karman_re50,target,126,50.4,velocity,center_uy,0.31433767080307007 +karman_re50,target,126,50.4,velocity,lower_ux,1.1968011856079102 +karman_re50,target,126,50.4,velocity,lower_uy,0.2888745367527008 +karman_re50,target,127,50.8,velocity,upper_ux,0.9011504650115967 +karman_re50,target,127,50.8,velocity,upper_uy,0.14419984817504883 +karman_re50,target,127,50.8,velocity,center_ux,1.0357362031936646 +karman_re50,target,127,50.8,velocity,center_uy,0.18210947513580322 +karman_re50,target,127,50.8,velocity,lower_ux,1.207485318183899 +karman_re50,target,127,50.8,velocity,lower_uy,0.18322624266147614 +karman_re50,target,128,51.2,velocity,upper_ux,0.897094190120697 +karman_re50,target,128,51.2,velocity,upper_uy,0.03652288019657135 +karman_re50,target,128,51.2,velocity,center_ux,1.0367077589035034 +karman_re50,target,128,51.2,velocity,center_uy,0.026292340829968452 +karman_re50,target,128,51.2,velocity,lower_ux,1.2015619277954102 +karman_re50,target,128,51.2,velocity,lower_uy,0.053290728479623795 +karman_re50,target,129,51.6,velocity,upper_ux,0.9101731181144714 +karman_re50,target,129,51.6,velocity,upper_uy,-0.06781475245952606 +karman_re50,target,129,51.6,velocity,center_ux,1.040540337562561 +karman_re50,target,129,51.6,velocity,center_uy,-0.11601070314645767 +karman_re50,target,129,51.6,velocity,lower_ux,1.1826717853546143 +karman_re50,target,129,51.6,velocity,lower_uy,-0.06635451316833496 +karman_re50,target,130,52.0,velocity,upper_ux,0.9365230798721313 +karman_re50,target,130,52.0,velocity,upper_uy,-0.1492185741662979 +karman_re50,target,130,52.0,velocity,center_ux,1.0449923276901245 +karman_re50,target,130,52.0,velocity,center_uy,-0.22009259462356567 +karman_re50,target,130,52.0,velocity,lower_ux,1.1553902626037598 +karman_re50,target,130,52.0,velocity,lower_uy,-0.1570786088705063 +karman_re50,target,131,52.4,velocity,upper_ux,0.9707884192466736 +karman_re50,target,131,52.4,velocity,upper_uy,-0.20091579854488373 +karman_re50,target,131,52.4,velocity,center_ux,1.0492510795593262 +karman_re50,target,131,52.4,velocity,center_uy,-0.2818724513053894 +karman_re50,target,131,52.4,velocity,lower_ux,1.124923586845398 +karman_re50,target,131,52.4,velocity,lower_uy,-0.21691392362117767 +karman_re50,target,132,52.8,velocity,upper_ux,1.0081417560577393 +karman_re50,target,132,52.8,velocity,upper_uy,-0.2336830198764801 +karman_re50,target,132,52.8,velocity,center_ux,1.053523063659668 +karman_re50,target,132,52.8,velocity,center_uy,-0.3169226348400116 +karman_re50,target,132,52.8,velocity,lower_ux,1.0947597026824951 +karman_re50,target,132,52.8,velocity,lower_uy,-0.25492188334465027 +karman_re50,target,133,53.2,velocity,upper_ux,1.046075463294983 +karman_re50,target,133,53.2,velocity,upper_uy,-0.2638798952102661 +karman_re50,target,133,53.2,velocity,center_ux,1.0571075677871704 +karman_re50,target,133,53.2,velocity,center_uy,-0.3460588753223419 +karman_re50,target,133,53.2,velocity,lower_ux,1.0648672580718994 +karman_re50,target,133,53.2,velocity,lower_uy,-0.2817147374153137 +karman_re50,target,134,53.6,velocity,upper_ux,1.0850129127502441 +karman_re50,target,134,53.6,velocity,upper_uy,-0.29838335514068604 +karman_re50,target,134,53.6,velocity,center_ux,1.0583395957946777 +karman_re50,target,134,53.6,velocity,center_uy,-0.37827590107917786 +karman_re50,target,134,53.6,velocity,lower_ux,1.033090353012085 +karman_re50,target,134,53.6,velocity,lower_uy,-0.30141404271125793 +karman_re50,target,135,54.0,velocity,upper_ux,1.1256721019744873 +karman_re50,target,135,54.0,velocity,upper_uy,-0.33090269565582275 +karman_re50,target,135,54.0,velocity,center_ux,1.0554578304290771 +karman_re50,target,135,54.0,velocity,center_uy,-0.40360110998153687 +karman_re50,target,135,54.0,velocity,lower_ux,0.9976922869682312 +karman_re50,target,135,54.0,velocity,lower_uy,-0.3089248538017273 +karman_re50,target,136,54.4,velocity,upper_ux,1.1648451089859009 +karman_re50,target,136,54.4,velocity,upper_uy,-0.3403865694999695 +karman_re50,target,136,54.4,velocity,center_ux,1.048298716545105 +karman_re50,target,136,54.4,velocity,center_uy,-0.3951432704925537 +karman_re50,target,136,54.4,velocity,lower_ux,0.9599764347076416 +karman_re50,target,136,54.4,velocity,lower_uy,-0.29256200790405273 +karman_re50,target,137,54.8,velocity,upper_ux,1.1943376064300537 +karman_re50,target,137,54.8,velocity,upper_uy,-0.2980990707874298 +karman_re50,target,137,54.8,velocity,center_ux,1.0403056144714355 +karman_re50,target,137,54.8,velocity,center_uy,-0.3268044590950012 +karman_re50,target,137,54.8,velocity,lower_ux,0.9257546067237854 +karman_re50,target,137,54.8,velocity,lower_uy,-0.24170537292957306 +karman_re50,target,138,55.2,velocity,upper_ux,1.2071439027786255 +karman_re50,target,138,55.2,velocity,upper_uy,-0.19789326190948486 +karman_re50,target,138,55.2,velocity,center_ux,1.035923719406128 +karman_re50,target,138,55.2,velocity,center_uy,-0.199903205037117 +karman_re50,target,138,55.2,velocity,lower_ux,0.9028303623199463 +karman_re50,target,138,55.2,velocity,lower_uy,-0.15619944036006927 +karman_re50,target,139,55.6,velocity,upper_ux,1.2030278444290161 +karman_re50,target,139,55.6,velocity,upper_uy,-0.06881501525640488 +karman_re50,target,139,55.6,velocity,center_ux,1.0363917350769043 +karman_re50,target,139,55.6,velocity,center_uy,-0.04484224319458008 +karman_re50,target,139,55.6,velocity,lower_ux,0.896629810333252 +karman_re50,target,139,55.6,velocity,lower_uy,-0.049649856984615326 +karman_re50,target,140,56.0,velocity,upper_ux,1.1854628324508667 +karman_re50,target,140,56.0,velocity,upper_uy,0.05339027941226959 +karman_re50,target,140,56.0,velocity,center_ux,1.0400093793869019 +karman_re50,target,140,56.0,velocity,center_uy,0.10071690380573273 +karman_re50,target,140,56.0,velocity,lower_ux,0.9078064560890198 +karman_re50,target,140,56.0,velocity,lower_uy,0.05625562369823456 +karman_re50,target,141,56.4,velocity,upper_ux,1.158915400505066 +karman_re50,target,141,56.4,velocity,upper_uy,0.14796417951583862 +karman_re50,target,141,56.4,velocity,center_ux,1.0444742441177368 +karman_re50,target,141,56.4,velocity,center_uy,0.21001945436000824 +karman_re50,target,141,56.4,velocity,lower_ux,0.9328534007072449 +karman_re50,target,141,56.4,velocity,lower_uy,0.1410997062921524 +karman_re50,target,142,56.8,velocity,upper_ux,1.128592610359192 +karman_re50,target,142,56.8,velocity,upper_uy,0.2111479938030243 +karman_re50,target,142,56.8,velocity,center_ux,1.048754096031189 +karman_re50,target,142,56.8,velocity,center_uy,0.2763337790966034 +karman_re50,target,142,56.8,velocity,lower_ux,0.966463565826416 +karman_re50,target,142,56.8,velocity,lower_uy,0.19607818126678467 +karman_re50,target,143,57.2,velocity,upper_ux,1.098324179649353 +karman_re50,target,143,57.2,velocity,upper_uy,0.25114375352859497 +karman_re50,target,143,57.2,velocity,center_ux,1.0530312061309814 +karman_re50,target,143,57.2,velocity,center_uy,0.3133992850780487 +karman_re50,target,143,57.2,velocity,lower_ux,1.0036402940750122 +karman_re50,target,143,57.2,velocity,lower_uy,0.23017694056034088 +karman_re50,target,144,57.6,velocity,upper_ux,1.0684856176376343 +karman_re50,target,144,57.6,velocity,upper_uy,0.2788843810558319 +karman_re50,target,144,57.6,velocity,center_ux,1.0567662715911865 +karman_re50,target,144,57.6,velocity,center_uy,0.3424296975135803 +karman_re50,target,144,57.6,velocity,lower_ux,1.041520357131958 +karman_re50,target,144,57.6,velocity,lower_uy,0.26006218791007996 +karman_re50,target,145,58.0,velocity,upper_ux,1.0370525121688843 +karman_re50,target,145,58.0,velocity,upper_uy,0.2995220422744751 +karman_re50,target,145,58.0,velocity,center_ux,1.0583724975585938 +karman_re50,target,145,58.0,velocity,center_uy,0.37441420555114746 +karman_re50,target,145,58.0,velocity,lower_ux,1.0802621841430664 +karman_re50,target,145,58.0,velocity,lower_uy,0.2941201329231262 +karman_re50,target,146,58.4,velocity,upper_ux,1.0021017789840698 +karman_re50,target,146,58.4,velocity,upper_uy,0.3090255558490753 +karman_re50,target,146,58.4,velocity,center_ux,1.0560487508773804 +karman_re50,target,146,58.4,velocity,center_uy,0.4017238914966583 +karman_re50,target,146,58.4,velocity,lower_ux,1.1207740306854248 +karman_re50,target,146,58.4,velocity,lower_uy,0.327673077583313 +karman_re50,target,147,58.8,velocity,upper_ux,0.9644497632980347 +karman_re50,target,147,58.8,velocity,upper_uy,0.2961845099925995 +karman_re50,target,147,58.8,velocity,center_ux,1.0493018627166748 +karman_re50,target,147,58.8,velocity,center_uy,0.39895737171173096 +karman_re50,target,147,58.8,velocity,lower_ux,1.1604968309402466 +karman_re50,target,147,58.8,velocity,lower_uy,0.3414742648601532 +karman_re50,target,148,59.2,velocity,upper_ux,0.9294021725654602 +karman_re50,target,148,59.2,velocity,upper_uy,0.24972718954086304 +karman_re50,target,148,59.2,velocity,center_ux,1.0411485433578491 +karman_re50,target,148,59.2,velocity,center_uy,0.33839768171310425 +karman_re50,target,148,59.2,velocity,lower_ux,1.1916260719299316 +karman_re50,target,148,59.2,velocity,lower_uy,0.3064461052417755 +karman_re50,target,149,59.6,velocity,upper_ux,0.9047561883926392 +karman_re50,target,149,59.6,velocity,upper_uy,0.16788722574710846 +karman_re50,target,149,59.6,velocity,center_ux,1.0361857414245605 +karman_re50,target,149,59.6,velocity,center_uy,0.21728664636611938 +karman_re50,target,149,59.6,velocity,lower_ux,1.206559181213379 +karman_re50,target,149,59.6,velocity,lower_uy,0.21214233338832855 diff --git a/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_wide.csv b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_wide.csv new file mode 100644 index 0000000..791d2d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-long-timeseries-csv-20260720/karman_re50/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re50,target,0,0.0,1.0628379583358765,-0.27876970171928406,1.057525634765625,-0.36015385389328003,1.050817608833313,-0.2917177379131317 +karman_re50,target,1,0.4,1.1026315689086914,-0.3140738308429718,1.0572105646133423,-0.39166778326034546,1.017696499824524,-0.3070320785045624 +karman_re50,target,2,0.8,1.143236517906189,-0.3399810492992401,1.0521425008773804,-0.405939519405365,0.9808329939842224,-0.3054814338684082 +karman_re50,target,3,1.2,1.1790348291397095,-0.32966887950897217,1.043758511543274,-0.37311455607414246,0.9436081051826477,-0.2746821343898773 +karman_re50,target,4,1.6,1.2016206979751587,-0.2601204812526703,1.0369089841842651,-0.2767051160335541,0.9135377407073975,-0.20767593383789062 +karman_re50,target,5,2.0,1.2067512273788452,-0.1422220766544342,1.0348206758499146,-0.1326625794172287,0.8977144360542297,-0.11053882539272308 +karman_re50,target,6,2.4,1.1963030099868774,-0.01225329376757145,1.0370675325393677,0.02254047803580761,0.8994511961936951,-0.0014706356450915337 +karman_re50,target,7,2.8,1.1742247343063354,0.09943193197250366,1.041396975517273,0.15441776812076569,0.9173515439033508,0.0972050130367279 +karman_re50,target,8,3.2,1.145249843597412,0.1798088103532791,1.0457152128219604,0.24427586793899536,0.9466639161109924,0.1688643842935562 +karman_re50,target,9,3.6,1.1146231889724731,0.23131977021694183,1.0499671697616577,0.29508423805236816,0.9822700023651123,0.21260906755924225 +karman_re50,target,10,4.0,1.0848495960235596,0.26467153429985046,1.0543209314346313,0.3262161314487457,1.020004391670227,0.24303634464740753 +karman_re50,target,11,4.4,1.0547749996185303,0.2890814542770386,1.0574952363967896,0.35617586970329285,1.0581973791122437,0.27454352378845215 +karman_re50,target,12,4.8,1.0220646858215332,0.3057600259780884,1.05765962600708,0.3881831765174866,1.0977623462677002,0.3098108768463135 +karman_re50,target,13,5.2,0.9855660200119019,0.30697309970855713,1.0531996488571167,0.40612006187438965,1.138486385345459,0.33804458379745483 +karman_re50,target,14,5.6,0.9480282068252563,0.28035107254981995,1.0450304746627808,0.3804906904697418,1.1753665208816528,0.3337915539741516 +karman_re50,target,15,6.0,0.9166383147239685,0.21774426102638245,1.037766933441162,0.2916359007358551,1.1999571323394775,0.2717263400554657 +karman_re50,target,16,6.4,0.8987869024276733,0.12348976731300354,1.0350593328475952,0.15162619948387146,1.2071967124938965,0.15800827741622925 +karman_re50,target,17,6.8,0.8983596563339233,0.014668155461549759,1.0368694067001343,-0.004262116737663746,1.1984381675720215,0.027630247175693512 +karman_re50,target,18,7.2,0.9145036339759827,-0.0863882526755333,1.0410575866699219,-0.14037078619003296,1.177531123161316,-0.08728272467851639 +karman_re50,target,19,7.6,0.942730724811554,-0.16179159283638,1.0454087257385254,-0.23563097417354584,1.149105429649353,-0.1715870499610901 +karman_re50,target,20,8.0,0.9778393507003784,-0.20836910605430603,1.0496201515197754,-0.2903643548488617,1.1184598207473755,-0.226125106215477 +karman_re50,target,21,8.4,1.0154649019241333,-0.23947571218013763,1.0539747476577759,-0.32272082567214966,1.0885648727416992,-0.2611103951931 +karman_re50,target,22,8.8,1.053577184677124,-0.27043044567108154,1.0573623180389404,-0.35228756070137024,1.0586236715316772,-0.2863847017288208 +karman_re50,target,23,9.2,1.09291410446167,-0.30551356077194214,1.0579770803451538,-0.3845355212688446,1.0263105630874634,-0.3042865991592407 +karman_re50,target,24,9.6,1.1336674690246582,-0.3356713354587555,1.0541212558746338,-0.4056418240070343,0.990214467048645,-0.30804046988487244 +karman_re50,target,25,10.0,1.171480655670166,-0.3370108902454376,1.0462342500686646,-0.3868395686149597,0.9524821639060974,-0.28543195128440857 +karman_re50,target,26,10.4,1.1979858875274658,-0.28246593475341797,1.0386162996292114,-0.3056880235671997,0.9199060201644897,-0.22726017236709595 +karman_re50,target,27,10.8,1.2073498964309692,-0.17344938218593597,1.0352898836135864,-0.17023774981498718,0.9000977277755737,-0.1361353099346161 +karman_re50,target,28,11.2,1.200333595275879,-0.043133221566677094,1.036636233329773,-0.01420674193650484,0.8975040912628174,-0.027902064844965935 +karman_re50,target,29,11.6,1.1806583404541016,0.07477734982967377,1.0406538248062134,0.1257919818162918,0.911827564239502,0.0752396509051323 +karman_re50,target,30,12.0,1.1528617143630981,0.16300535202026367,1.045039176940918,0.22642916440963745,0.9388916492462158,0.154307559132576 +karman_re50,target,31,12.4,1.1222528219223022,0.22070875763893127,1.0492297410964966,0.2853509187698364,0.9734423160552979,0.20391929149627686 +karman_re50,target,32,12.8,1.0922305583953857,0.2574618458747864,1.0535764694213867,0.31922921538352966,1.0109319686889648,0.2359485626220703 +karman_re50,target,33,13.2,1.0623905658721924,0.28362295031547546,1.057151436805725,0.3484865427017212,1.0489760637283325,0.2664218246936798 +karman_re50,target,34,13.6,1.0304547548294067,0.302629292011261,1.0581859350204468,0.3807646930217743,1.0880929231643677,0.30119895935058594 +karman_re50,target,35,14.0,0.994788646697998,0.30871543288230896,1.0549262762069702,0.4045749008655548,1.1288031339645386,0.3329160809516907 +karman_re50,target,36,14.4,0.9569732546806335,0.28994953632354736,1.0473841428756714,0.3922029733657837,1.1674059629440308,0.33937573432922363 +karman_re50,target,37,14.8,0.9233372211456299,0.23622919619083405,1.0394772291183472,0.3188491463661194,1.1957284212112427,0.2923245131969452 +karman_re50,target,38,15.2,0.9016510844230652,0.1484624147415161,1.0355371236801147,0.1884615570306778,1.2072275876998901,0.1885102093219757 +karman_re50,target,39,15.6,0.8968916535377502,0.04115242883563042,1.0363929271697998,0.03283892944455147,1.202000617980957,0.058751411736011505 +karman_re50,target,40,16.0,0.9093371033668518,-0.0637720599770546,1.0402089357376099,-0.11068561673164368,1.1836198568344116,-0.06190136820077896 +karman_re50,target,41,16.4,0.9351570010185242,-0.14639872312545776,1.044622540473938,-0.2166420966386795,1.1565284729003906,-0.15403138101100922 +karman_re50,target,42,16.8,0.969086229801178,-0.19922290742397308,1.0488096475601196,-0.2799958884716034,1.1260151863098145,-0.21503373980522156 +karman_re50,target,43,17.2,1.0064085721969604,-0.2324276864528656,1.0531423091888428,-0.3157064616680145,1.095865249633789,-0.25370144844055176 +karman_re50,target,44,17.6,1.0443940162658691,-0.26251161098480225,1.0568785667419434,-0.3447711169719696,1.066092610359192,-0.28079167008399963 +karman_re50,target,45,18.0,1.0833041667938232,-0.2968845069408417,1.0583068132400513,-0.3769088685512543,1.0345120429992676,-0.30080646276474 +karman_re50,target,46,18.4,1.123910903930664,-0.329829603433609,1.0556279420852661,-0.4029849171638489,0.9992931485176086,-0.3090272843837738 +karman_re50,target,47,18.8,1.1631684303283691,-0.3409344553947449,1.0484857559204102,-0.3966221213340759,0.9614917635917664,-0.2939296066761017 +karman_re50,target,48,19.2,1.1932008266448975,-0.3012848198413849,1.0403623580932617,-0.3311026096343994,0.9269255995750427,-0.24465423822402954 +karman_re50,target,49,19.6,1.2068355083465576,-0.20314238965511322,1.0358247756958008,-0.20625430345535278,0.9034426808357239,-0.1604546159505844 +karman_re50,target,50,20.0,1.2034512758255005,-0.07445953786373138,1.0361607074737549,-0.051597870886325836,0.8965287804603577,-0.054395198822021484 +karman_re50,target,51,20.4,1.186423659324646,0.048652905970811844,1.039741039276123,0.09506449103355408,0.9070388078689575,0.05200377479195595 +karman_re50,target,52,20.8,1.160112738609314,0.1446412056684494,1.0441700220108032,0.20624925196170807,0.9315357804298401,0.13805650174617767 +karman_re50,target,53,21.2,1.129758358001709,0.2090689241886139,1.0483704805374146,0.2742542326450348,0.9647780060768127,0.19424596428871155 +karman_re50,target,54,21.6,1.0994850397109985,0.24980683624744415,1.0526843070983887,0.31211739778518677,1.001894474029541,0.22888484597206116 +karman_re50,target,55,22.0,1.0697476863861084,0.27788764238357544,1.0565571784973145,0.3411365747451782,1.0398280620574951,0.2586918771266937 +karman_re50,target,56,22.4,1.0384948253631592,0.29883167147636414,1.0583500862121582,0.37299999594688416,1.0785496234893799,0.29258397221565247 +karman_re50,target,57,22.8,1.0037333965301514,0.3090022802352905,1.056237816810608,0.4009343087673187,1.1190050840377808,0.32646074891090393 +karman_re50,target,58,23.2,0.9660331606864929,0.2973915636539459,1.049544095993042,0.40014025568962097,1.1587889194488525,0.34173858165740967 +karman_re50,target,59,23.6,0.9306628704071045,0.25253409147262573,1.0412789583206177,0.34243106842041016,1.1904178857803345,0.30933335423469543 +karman_re50,target,60,24.0,0.9054728150367737,0.17208948731422424,1.0361590385437012,0.22356641292572021,1.2061841487884521,0.21729347109794617 +karman_re50,target,61,24.4,0.8964183926582336,0.0676000788807869,1.0359537601470947,0.07043930143117905,1.2046864032745361,0.09022524207830429 +karman_re50,target,62,24.8,0.9049440026283264,-0.03995833918452263,1.0392640829086304,-0.07894822955131531,1.189073085784912,-0.03503502532839775 +karman_re50,target,63,25.2,0.9280384182929993,-0.1292782425880432,1.0436906814575195,-0.1952349692583084,1.1636146306991577,-0.1348152607679367 +karman_re50,target,64,25.6,0.9605236649513245,-0.18895655870437622,1.0479165315628052,-0.26808369159698486,1.1334848403930664,-0.20278353989124298 +karman_re50,target,65,26.0,0.997391939163208,-0.2252916395664215,1.052209496498108,-0.3084244430065155,1.1030986309051514,-0.24575424194335938 +karman_re50,target,66,26.4,1.0352762937545776,-0.25495636463165283,1.0561952590942383,-0.3375738561153412,1.0733661651611328,-0.2749042212963104 +karman_re50,target,67,26.8,1.073828101158142,-0.2883128225803375,1.0583282709121704,-0.36906564235687256,1.04241144657135,-0.29671889543533325 +karman_re50,target,68,27.2,1.1140974760055542,-0.32285454869270325,1.0567611455917358,-0.39848124980926514,1.0081098079681396,-0.30866721272468567 +karman_re50,target,69,27.6,1.1542874574661255,-0.3418423533439636,1.0505553483963013,-0.40280044078826904,0.9705875515937805,-0.3003574311733246 +karman_re50,target,70,28.0,1.187389850616455,-0.31646212935447693,1.0422258377075195,-0.35281893610954285,0.9345393180847168,-0.2598700225353241 +karman_re50,target,71,28.4,1.2052687406539917,-0.23090538382530212,1.0365536212921143,-0.2403450906276703,0.9077353477478027,-0.18334683775901794 +karman_re50,target,72,28.8,1.2057064771652222,-0.10600581765174866,1.035783052444458,-0.08931375294923782,0.8965626358985901,-0.08073810487985611 +karman_re50,target,73,29.2,1.1915663480758667,0.02106107771396637,1.03878915309906,0.06236208975315094,0.9030615091323853,0.027659006416797638 +karman_re50,target,74,29.6,1.1670325994491577,0.12454217672348022,1.0431907176971436,0.18359056115150452,0.9246716499328613,0.12006380409002304 +karman_re50,target,75,30.0,1.1371955871582031,0.1961531788110733,1.0474518537521362,0.2614450454711914,0.9563290476799011,0.18332445621490479 +karman_re50,target,76,30.4,1.1067144870758057,0.24152304232120514,1.0517246723175049,0.3045896589756012,0.9929032921791077,0.22161774337291718 +karman_re50,target,77,30.8,1.0769578218460083,0.27183598279953003,1.0558017492294312,0.3340740501880646,1.0307354927062988,0.2512955367565155 +karman_re50,target,78,31.2,1.0462685823440552,0.29448071122169495,1.0582449436187744,0.36513152718544006,1.0691381692886353,0.28408345580101013 +karman_re50,target,79,31.6,1.0124232769012451,0.30804550647735596,1.0572046041488647,0.39568400382995605,1.1091974973678589,0.3190540373325348 +karman_re50,target,80,32.0,0.9751450419425964,0.3028479218482971,1.051518201828003,0.40465113520622253,1.1496820449829102,0.34130004048347473 +karman_re50,target,81,32.4,0.9385409355163574,0.2666607201099396,1.0432034730911255,0.36225444078445435,1.184131383895874,0.32266947627067566 +karman_re50,target,82,32.8,0.9102238416671753,0.19420142471790314,1.0370123386383057,0.2565348446369171,1.204095482826233,0.243919238448143 +karman_re50,target,83,33.2,0.8969646692276001,0.09377370774745941,1.035658359527588,0.108164481818676,1.2065109014511108,0.12175145000219345 +karman_re50,target,84,33.6,0.9013999700546265,-0.01513728965073824,1.0383247137069702,-0.04534035176038742,1.1939010620117188,-0.006750758271664381 +karman_re50,target,85,34.0,0.9214482307434082,-0.11042043566703796,1.0426745414733887,-0.17131353914737701,1.1703619956970215,-0.11381415277719498 +karman_re50,target,86,34.4,0.9522016644477844,-0.17732369899749756,1.0469774007797241,-0.2543015778064728,1.1408891677856445,-0.18915389478206635 +karman_re50,target,87,34.8,0.9884312152862549,-0.21783217787742615,1.0512337684631348,-0.30057254433631897,1.1103359460830688,-0.23709076642990112 +karman_re50,target,88,35.2,1.0262037515640259,-0.24770057201385498,1.0553810596466064,-0.3306226432323456,1.080531120300293,-0.2686755657196045 +karman_re50,target,89,35.6,1.0644769668579102,-0.2799072861671448,1.0581060647964478,-0.36121830344200134,1.050072193145752,-0.29212692379951477 +karman_re50,target,90,36.0,1.1043108701705933,-0.3150978982448578,1.0575703382492065,-0.39259424805641174,1.0166754722595215,-0.307159960269928 +karman_re50,target,91,36.4,1.1449894905090332,-0.34017032384872437,1.0524274110794067,-0.40574225783348083,0.9796979427337646,-0.30488312244415283 +karman_re50,target,92,36.8,1.1806527376174927,-0.3279624283313751,1.044203758239746,-0.3707318902015686,0.9426569938659668,-0.27290815114974976 +karman_re50,target,93,37.2,1.2026599645614624,-0.2562769949436188,1.0375374555587769,-0.27208220958709717,0.9129317998886108,-0.2046326845884323 +karman_re50,target,94,37.6,1.2070945501327515,-0.1374090313911438,1.0355839729309082,-0.12693430483341217,0.897625207901001,-0.1066742017865181 +karman_re50,target,95,38.0,1.1960736513137817,-0.007872730493545532,1.0378775596618652,0.027918193489313126,0.8999655246734619,0.002422576304525137 +karman_re50,target,96,38.4,1.1735966205596924,0.102627694606781,1.0421464443206787,0.158405601978302,0.9183760285377502,0.10035651922225952 +karman_re50,target,97,38.8,1.1445612907409668,0.1817646473646164,1.0464932918548584,0.24662181735038757,0.9481483697891235,0.1709296554327011 +karman_re50,target,98,39.2,1.1139672994613647,0.23243604600429535,1.05073881149292,0.2963341176509857,0.983978807926178,0.2139018028974533 +karman_re50,target,99,39.6,1.084092378616333,0.2654159665107727,1.0549386739730835,0.3272038698196411,1.0216790437698364,0.24415677785873413 +karman_re50,target,100,40.0,1.0538299083709717,0.2896675169467926,1.057918906211853,0.35734325647354126,1.0598440170288086,0.2757919430732727 +karman_re50,target,101,40.4,1.0208685398101807,0.3060344457626343,1.0578633546829224,0.38926371932029724,1.099446177482605,0.3110215663909912 +karman_re50,target,102,40.8,0.9842371344566345,0.30648699402809143,1.0532795190811157,0.40612727403640747,1.1402279138565063,0.3385087251663208 +karman_re50,target,103,41.2,0.946872353553772,0.2786165475845337,1.0452227592468262,0.3782491385936737,1.176971197128296,0.33235394954681396 +karman_re50,target,104,41.6,0.9158486127853394,0.21461820602416992,1.038131833076477,0.2869310975074768,1.200965166091919,0.2679220139980316 +karman_re50,target,105,42.0,0.8985450267791748,0.11940270662307739,1.0355719327926636,0.14555831253528595,1.2074553966522217,0.15291665494441986 +karman_re50,target,106,42.4,0.8987663388252258,0.010449527762830257,1.0374560356140137,-0.010140053927898407,1.1980788707733154,0.022778015583753586 +karman_re50,target,107,42.8,0.9154672026634216,-0.08988839387893677,1.0416127443313599,-0.1448758989572525,1.1767313480377197,-0.09098445624113083 +karman_re50,target,108,43.2,0.9441792964935303,-0.1641242951154709,1.04600191116333,-0.2383754402399063,1.148206114768982,-0.17396610975265503 +karman_re50,target,109,43.6,0.9795511364936829,-0.20979490876197815,1.0502432584762573,-0.29183217883110046,1.1176091432571411,-0.22753611207008362 +karman_re50,target,110,44.0,1.0171613693237305,-0.2406521588563919,1.0544793605804443,-0.3237970471382141,1.0876480340957642,-0.26204434037208557 +karman_re50,target,111,44.4,1.0552335977554321,-0.27174681425094604,1.0576872825622559,-0.35351940989494324,1.0575443506240845,-0.28710898756980896 +karman_re50,target,112,44.8,1.0946063995361328,-0.3068585693836212,1.05808687210083,-0.38573798537254333,1.0250006914138794,-0.3046882152557373 +karman_re50,target,113,45.2,1.135411024093628,-0.33637356758117676,1.054071068763733,-0.4058605134487152,0.9887537360191345,-0.3076794147491455 +karman_re50,target,114,45.6,1.173099160194397,-0.3358670473098755,1.0462499856948853,-0.3848135769367218,0.9511733055114746,-0.28378915786743164 +karman_re50,target,115,46.0,1.1990113258361816,-0.2788028419017792,1.0387929677963257,-0.30103200674057007,0.9189656972885132,-0.22413669526576996 +karman_re50,target,116,46.4,1.2075872421264648,-0.1682109385728836,1.0356196165084839,-0.16397212445735931,0.8997207880020142,-0.1319229155778885 +karman_re50,target,117,46.8,1.1999105215072632,-0.03792993724346161,1.037063717842102,-0.007946825586259365,0.8978071808815002,-0.023443792015314102 +karman_re50,target,118,47.2,1.1797595024108887,0.07889098674058914,1.0410757064819336,0.1307382434606552,0.9127286672592163,0.07903362810611725 +karman_re50,target,119,47.6,1.1518183946609497,0.16574272513389587,1.0455013513565063,0.22953951358795166,0.9403000473976135,0.15689082443714142 +karman_re50,target,120,48.0,1.1212620735168457,0.2223699986934662,1.0497472286224365,0.28702566027641296,0.9751520752906799,0.20547683537006378 +karman_re50,target,121,48.4,1.0912022590637207,0.25855135917663574,1.0540066957473755,0.32037895917892456,1.012648344039917,0.23716720938682556 +karman_re50,target,122,48.8,1.0612218379974365,0.2844575345516205,1.0574160814285278,0.34975650906562805,1.0506457090377808,0.2677748501300812 +karman_re50,target,123,49.2,1.0290744304656982,0.30314287543296814,1.0582451820373535,0.3820629417896271,1.0897942781448364,0.302636981010437 +karman_re50,target,124,49.6,0.9932414293289185,0.3084847927093506,1.0547980070114136,0.404999315738678,1.1305549144744873,0.33382004499435425 +karman_re50,target,125,50.0,0.9555469751358032,0.2884344756603241,1.0472794771194458,0.3904381990432739,1.1690508127212524,0.33853188157081604 +karman_re50,target,126,50.4,0.9222730398178101,0.23317112028598785,1.0395197868347168,0.31433767080307007,1.1968011856079102,0.2888745367527008 +karman_re50,target,127,50.8,0.9011504650115967,0.14419984817504883,1.0357362031936646,0.18210947513580322,1.207485318183899,0.18322624266147614 +karman_re50,target,128,51.2,0.897094190120697,0.03652288019657135,1.0367077589035034,0.026292340829968452,1.2015619277954102,0.053290728479623795 +karman_re50,target,129,51.6,0.9101731181144714,-0.06781475245952606,1.040540337562561,-0.11601070314645767,1.1826717853546143,-0.06635451316833496 +karman_re50,target,130,52.0,0.9365230798721313,-0.1492185741662979,1.0449923276901245,-0.22009259462356567,1.1553902626037598,-0.1570786088705063 +karman_re50,target,131,52.4,0.9707884192466736,-0.20091579854488373,1.0492510795593262,-0.2818724513053894,1.124923586845398,-0.21691392362117767 +karman_re50,target,132,52.8,1.0081417560577393,-0.2336830198764801,1.053523063659668,-0.3169226348400116,1.0947597026824951,-0.25492188334465027 +karman_re50,target,133,53.2,1.046075463294983,-0.2638798952102661,1.0571075677871704,-0.3460588753223419,1.0648672580718994,-0.2817147374153137 +karman_re50,target,134,53.6,1.0850129127502441,-0.29838335514068604,1.0583395957946777,-0.37827590107917786,1.033090353012085,-0.30141404271125793 +karman_re50,target,135,54.0,1.1256721019744873,-0.33090269565582275,1.0554578304290771,-0.40360110998153687,0.9976922869682312,-0.3089248538017273 +karman_re50,target,136,54.4,1.1648451089859009,-0.3403865694999695,1.048298716545105,-0.3951432704925537,0.9599764347076416,-0.29256200790405273 +karman_re50,target,137,54.8,1.1943376064300537,-0.2980990707874298,1.0403056144714355,-0.3268044590950012,0.9257546067237854,-0.24170537292957306 +karman_re50,target,138,55.2,1.2071439027786255,-0.19789326190948486,1.035923719406128,-0.199903205037117,0.9028303623199463,-0.15619944036006927 +karman_re50,target,139,55.6,1.2030278444290161,-0.06881501525640488,1.0363917350769043,-0.04484224319458008,0.896629810333252,-0.049649856984615326 +karman_re50,target,140,56.0,1.1854628324508667,0.05339027941226959,1.0400093793869019,0.10071690380573273,0.9078064560890198,0.05625562369823456 +karman_re50,target,141,56.4,1.158915400505066,0.14796417951583862,1.0444742441177368,0.21001945436000824,0.9328534007072449,0.1410997062921524 +karman_re50,target,142,56.8,1.128592610359192,0.2111479938030243,1.048754096031189,0.2763337790966034,0.966463565826416,0.19607818126678467 +karman_re50,target,143,57.2,1.098324179649353,0.25114375352859497,1.0530312061309814,0.3133992850780487,1.0036402940750122,0.23017694056034088 +karman_re50,target,144,57.6,1.0684856176376343,0.2788843810558319,1.0567662715911865,0.3424296975135803,1.041520357131958,0.26006218791007996 +karman_re50,target,145,58.0,1.0370525121688843,0.2995220422744751,1.0583724975585938,0.37441420555114746,1.0802621841430664,0.2941201329231262 +karman_re50,target,146,58.4,1.0021017789840698,0.3090255558490753,1.0560487508773804,0.4017238914966583,1.1207740306854248,0.327673077583313 +karman_re50,target,147,58.8,0.9644497632980347,0.2961845099925995,1.0493018627166748,0.39895737171173096,1.1604968309402466,0.3414742648601532 +karman_re50,target,148,59.2,0.9294021725654602,0.24972718954086304,1.0411485433578491,0.33839768171310425,1.1916260719299316,0.3064461052417755 +karman_re50,target,149,59.6,0.9047561883926392,0.16788722574710846,1.0361857414245605,0.21728664636611938,1.206559181213379,0.21214233338832855 diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..47a6711 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.24201575527044217 * Cd_rear_a + -0.8372711325983693 * Cl_F","deployment_expression_hash":"8bf481656436b9a0cb8237dd65e76324e3e94d10d9c9c6bf91f1084b1526559e","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.24201575527044217 * Cd_rear_a + -0.8372711325983693 * Cl_F","fitted_expression_hash":"8bf481656436b9a0cb8237dd65e76324e3e94d10d9c9c6bf91f1084b1526559e","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.561612+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068},"per_case":{"illusion_0.75L":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068}}},"optimizer":{"cost":63.07501798091381,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":5,"refitted_constants":[0.24201575527044217,-0.8372711325983693],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8031153300859661,1.8031153300859661],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_rear_shared_upper.json new file mode 100644 index 0000000..77b0a76 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_0.75L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.24859161792995263 * Cd_rear_a - -0.08286020333465423 * Cl_F","deployment_expression_hash":"ece21f94c45145703ef83d1b8d560b026e69243952653c912b6ae2241ffeb6f3","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.24859161792995263 * Cd_rear_a - -0.08286020333465423 * Cl_F","fitted_expression_hash":"ece21f94c45145703ef83d1b8d560b026e69243952653c912b6ae2241ffeb6f3","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.579255+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148}}},"optimizer":{"cost":491.7515327530284,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[0.24859161792995263,-0.08286020333465423],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7018357595974948,0.7018357595974948],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..f8f25ed --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.044119550519154505 * Cd_rear_a + 2.1015026293420416 * Cl_F","deployment_expression_hash":"f74a54078f4a5290d1589dc1f862ec739b82c01eace53f130750edd2d415f7d7","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.044119550519154505 * Cd_rear_a + 2.1015026293420416 * Cl_F","fitted_expression_hash":"f74a54078f4a5290d1589dc1f862ec739b82c01eace53f130750edd2d415f7d7","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.631081+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026},"per_case":{"illusion_1.5L":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026}},"per_trajectory":{"illusion_1.5L:trajectory-001":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026}}},"optimizer":{"cost":1874.1886566503042,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[0.044119550519154505,2.1015026293420416],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1.5L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.795274277620026,7.795274277620026],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_rear_shared_upper.json new file mode 100644 index 0000000..31fe668 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1.5L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.5682603086502969 * Cd_rear_a - 1.6011017720495324 * Cl_F","deployment_expression_hash":"5662e9bf6cffd0921e089485cb09edaa1bd9a48895b1135fff8ba1233eb20e7f","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.5682603086502969 * Cd_rear_a - 1.6011017720495324 * Cl_F","fitted_expression_hash":"5662e9bf6cffd0921e089485cb09edaa1bd9a48895b1135fff8ba1233eb20e7f","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.647873+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145},"per_case":{"illusion_1.5L":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145}},"per_trajectory":{"illusion_1.5L:trajectory-001":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145}}},"optimizer":{"cost":783.9593058514514,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.5682603086502969,1.6011017720495324],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1.5L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.121136424190122,4.121136424190122],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_front.json new file mode 100644 index 0000000..572e7d0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"--2.043848942000545 * Cd_rear_a + -2.219295123924814 * Cl_F","deployment_expression_hash":"0231cef8c9019550c64e7354d7672e13530b0a76a658151f64f73e7cbd62b160","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"--2.043848942000545 * Cd_rear_a + -2.219295123924814 * Cl_F","fitted_expression_hash":"0231cef8c9019550c64e7354d7672e13530b0a76a658151f64f73e7cbd62b160","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.599745+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424},"per_case":{"illusion_1L":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424}},"per_trajectory":{"illusion_1L:trajectory-001":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424}}},"optimizer":{"cost":20.653171215516565,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[-2.043848942000545,-2.219295123924814],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.007531536402189065,0.007531536402189065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..c387ebf --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-20260720/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.18434653705308968 * Cd_rear_a - 0.15875223987426046 * Cl_F","deployment_expression_hash":"6a10365160b492b142bd40ca093e8ad0e82af96c929cb46a6af626fcf55bb5ce","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.18434653705308968 * Cd_rear_a - 0.15875223987426046 * Cl_F","fitted_expression_hash":"6a10365160b492b142bd40ca093e8ad0e82af96c929cb46a6af626fcf55bb5ce","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.616390+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149},"per_case":{"illusion_1L":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149}},"per_trajectory":{"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149}}},"optimizer":{"cost":161.40493776148585,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":5,"refitted_constants":[0.18434653705308968,0.15875223987426046],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.03826880648297437,0.03826880648297437],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-20260720","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_front.json new file mode 100644 index 0000000..f628806 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.24201575527044217*Cd_rear_a - 0.8372711325983693*Cl_F","deployment_expression_hash":"9b46121f2ec25914650f4e819ca8893b6d1c11d3320ff46e716d2ed54f6bcc80","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.24201575527044217*Cd_rear_a - 0.8372711325983693*Cl_F","fitted_expression_hash":"9b46121f2ec25914650f4e819ca8893b6d1c11d3320ff46e716d2ed54f6bcc80","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.027928+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068},"per_case":{"illusion_0.75L":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":0.507387673315919,"max_error":1.2880074120007943,"r2":0.8034648267882286,"rmse":0.5658425189470068}}},"optimizer":{"cost":63.07501798091381,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":5,"refitted_constants":[0.24201575527044217,-0.8372711325983693],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8031153300859661,1.8031153300859661],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_rear_shared_upper.json new file mode 100644 index 0000000..9a4141d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_0.75L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.24859161792995263*Cd_rear_a + 0.08286020333465423*Cl_F","deployment_expression_hash":"9556c20dddb8d5e39a403a9769bf730c3ce4076aaed4a7ab05e5fe927e83faa1","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.24859161792995263*Cd_rear_a + 0.08286020333465423*Cl_F","fitted_expression_hash":"9556c20dddb8d5e39a403a9769bf730c3ce4076aaed4a7ab05e5fe927e83faa1","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c4a425ee4618deef1ec042c107fc7d8d9767dbe0da595eef31978cc7647f7b56","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"72c0de1d1909e72ed68fd3f2a794512e05623a5010e0564655806618e77de2c0"},"trajectories":{"illusion_0.75L":[{"hash":"2d1517b682b1049ad20da1b011db47d3c29f10a16c998c19dc64f191e562f89f","id":"illusion_0.75L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.058864+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148},"per_case":{"illusion_0.75L":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148}},"per_trajectory":{"illusion_0.75L:trajectory-001":{"mae":1.5228555424866943,"max_error":2.5172953469703403,"r2":-5.43956220650249,"rmse":1.5799369208526148}}},"optimizer":{"cost":491.7515327530284,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[0.24859161792995263,-0.08286020333465423],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_0.75L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.7018357595974948,0.7018357595974948],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_0.75L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_front.json new file mode 100644 index 0000000..33245a9 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.044119550519154505*Cd_rear_a + 2.1015026293420416*Cl_F","deployment_expression_hash":"d4bbba23e79f1c59f562ad16b1002791fe49215e1e5a6c692cd172c9431a0417","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.044119550519154505*Cd_rear_a + 2.1015026293420416*Cl_F","fitted_expression_hash":"d4bbba23e79f1c59f562ad16b1002791fe49215e1e5a6c692cd172c9431a0417","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.155540+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026},"per_case":{"illusion_1.5L":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026}},"per_trajectory":{"illusion_1.5L:trajectory-001":{"mae":2.5622557463777267,"max_error":7.030255100055559,"r2":0.5420581062268233,"rmse":3.084420205371026}}},"optimizer":{"cost":1874.1886566503042,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[0.044119550519154505,2.1015026293420416],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1.5L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.795274277620026,7.795274277620026],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_rear_shared_upper.json new file mode 100644 index 0000000..61549cd --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1.5L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.5682603086502969*Cd_rear_a - 1.6011017720495324*Cl_F","deployment_expression_hash":"0561c73459d88b56741f247ab4c45dc11bd4b321ed3ffbd070cc7946fafa9042","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_1.5L":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.5682603086502969*Cd_rear_a - 1.6011017720495324*Cl_F","fitted_expression_hash":"0561c73459d88b56741f247ab4c45dc11bd4b321ed3ffbd070cc7946fafa9042","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"149b16eadae1f2bcf51ceb92b2e024eed4593125b56fedd6cc2dd2dbfb77e89c","paths":{"illusion_1.5L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz"},"per_scene_hashes":{"illusion_1.5L":"f4de51d1faa90c6d823ac554c91dd9d218b692538329c9bda775c286d58348c5"},"trajectories":{"illusion_1.5L":[{"hash":"656ccc86c83b7a4384a513e7930265dabce0dde48e1aefb8c86f5967f508fd0c","id":"illusion_1.5L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.187173+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145},"per_case":{"illusion_1.5L":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145}},"per_trajectory":{"illusion_1.5L:trajectory-001":{"mae":1.6098420125432724,"max_error":5.0089302664731585,"r2":0.5948268502056615,"rmse":1.9948656250961145}}},"optimizer":{"cost":783.9593058514514,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.5682603086502969,1.6011017720495324],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1.5L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.121136424190122,4.121136424190122],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_1.5L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_front.json new file mode 100644 index 0000000..e9c34df --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"2.043848942000545*Cd_rear_a - 2.219295123924814*Cl_F","deployment_expression_hash":"80400ce6bb3654203398a568f8f8c2a1b4aebde920c28b16fdb43b5c905a253b","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json","sha256":"f5106420e15e2f2c0d96afe60e43b97981fca65f42bdcf0e6f91ece002857356"},"dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"2.043848942000545*Cd_rear_a - 2.219295123924814*Cl_F","fitted_expression_hash":"80400ce6bb3654203398a568f8f8c2a1b4aebde920c28b16fdb43b5c905a253b","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.090944+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424},"per_case":{"illusion_1L":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424}},"per_trajectory":{"illusion_1L:trajectory-001":{"mae":0.26749351633879453,"max_error":1.0441460226187893,"r2":0.6059884236814721,"rmse":0.32378763498020424}}},"optimizer":{"cost":20.653171215516565,"initial_constants":[1.826604,2.064493],"name":"scipy.optimize.least_squares","nfev":4,"refitted_constants":[-2.043848942000545,-2.219295123924814],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.007531536402189065,0.007531536402189065],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-1.826604*Cd_rear_a+2.064493*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..f4bc3fe --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-illusion-v2-20260720/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-illusion-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.18434653705308968*Cd_rear_a - 0.15875223987426046*Cl_F","deployment_expression_hash":"7a4aa9ed2d0fc6771c5f06b22100241b9563042dbb35b757e42e84a4f6d2bba4","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"d5c330aa50b61ae62a55a32bb45bfb395b1c0d8f8c3b0b19bbe43ada1e4fff7c"},"dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.18434653705308968*Cd_rear_a - 0.15875223987426046*Cl_F","fitted_expression_hash":"7a4aa9ed2d0fc6771c5f06b22100241b9563042dbb35b757e42e84a4f6d2bba4","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"38176ffb3de102f1fbbbbd3b2374899c1f891916ea6afffb24df4ec6db40a352","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"89ff2a18d4fec86e3ec0e0804577f9f86e9687063229771372fd260bf441bbb1"},"trajectories":{"illusion_1L":[{"hash":"4914d81de346558f0ae8d52d4280d46149367dd760f1df2ede7fae551985aa93","id":"illusion_1L:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes illusion_0.75L,illusion_1L,illusion_1.5L --mode per-scene --run-id article2-percase-refit-illusion-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-illusion-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-1.826604*Cd_rear_a+2.064493*Cl_F --rear-topology-expression=1.254440*Cd_rear_a-1.528074*Cl_F --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-illusion-actual_only-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.124626+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149},"per_case":{"illusion_1L":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149}},"per_trajectory":{"illusion_1L:trajectory-001":{"mae":0.8679547536796725,"max_error":1.5008460737775966,"r2":-11.247969651640615,"rmse":0.905159878077149}}},"optimizer":{"cost":161.40493776148585,"initial_constants":[1.25444,1.528074],"name":"scipy.optimize.least_squares","nfev":5,"refitted_constants":[0.18434653705308968,0.15875223987426046],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"illusion_1L":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.03826880648297437,0.03826880648297437],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.254440*Cd_rear_a-1.528074*Cl_F"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-illusion-v2-20260720","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_front.json new file mode 100644 index 0000000..657949f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.324842776541943 * Cd_rear_a","deployment_expression_hash":"ced7269af5ec63c0b71ea67a366b319258fa5717d243ab13e1ba32e628dcdb6a","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.324842776541943 * Cd_rear_a","fitted_expression_hash":"ced7269af5ec63c0b71ea67a366b319258fa5717d243ab13e1ba32e628dcdb6a","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.610395+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274},"per_case":{"karman_re100":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274}}},"optimizer":{"cost":41.35985414834604,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.324842776541943],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1770422999512413,2.1770422999512413],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..c8facff --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.3203186589016584 * Cl_rear_s - 4.177446928237706","deployment_expression_hash":"f9a73a2d7947a5737a923946846a14591260128111d152908d451c892eaa65cf","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.3203186589016584 * Cl_rear_s - 4.177446928237706","fitted_expression_hash":"f9a73a2d7947a5737a923946846a14591260128111d152908d451c892eaa65cf","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.629939+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985},"per_case":{"karman_re100":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985}}},"optimizer":{"cost":215.05289012446303,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3203186589016584,4.177446928237706],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.272020453252877,-1.0828734032225347],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_front.json new file mode 100644 index 0000000..554ec4f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.5002775221133345 * Cd_rear_a","deployment_expression_hash":"3b792dfe02857f398c1d2d1d579e8739428a23297fda027b0da9529ad651bb2a","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.5002775221133345 * Cd_rear_a","fitted_expression_hash":"3b792dfe02857f398c1d2d1d579e8739428a23297fda027b0da9529ad651bb2a","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.644539+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735},"per_case":{"karman_re200":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735}},"per_trajectory":{"karman_re200:trajectory-001":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735}}},"optimizer":{"cost":391.07297084124383,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.5002775221133345],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re200":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.9287835586276865,4.9287835586276865],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_rear_shared_upper.json new file mode 100644 index 0000000..2635868 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re200_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.6971078570952467 * Cl_rear_s - 3.410910965502206","deployment_expression_hash":"eeceac7a87978bbbca9c8e0792c3c7292f1c7b2aa08940f31504cc2f8de6e62a","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.6971078570952467 * Cl_rear_s - 3.410910965502206","fitted_expression_hash":"eeceac7a87978bbbca9c8e0792c3c7292f1c7b2aa08940f31504cc2f8de6e62a","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.662178+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044},"per_case":{"karman_re200":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044}},"per_trajectory":{"karman_re200:trajectory-001":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044}}},"optimizer":{"cost":1238.8433849766488,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.6971078570952467,3.410910965502206],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re200":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.308095491109563,2.486273560105151],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_front.json new file mode 100644 index 0000000..c97141b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.29472162211279335 * Cd_rear_a","deployment_expression_hash":"e00546b5f916e6dc62c458600a30a7f9a71bcfcc7467521607b98aafccd88531","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.29472162211279335 * Cd_rear_a","fitted_expression_hash":"e00546b5f916e6dc62c458600a30a7f9a71bcfcc7467521607b98aafccd88531","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.675951+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204},"per_case":{"karman_re400":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204}},"per_trajectory":{"karman_re400:trajectory-001":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204}}},"optimizer":{"cost":7.785738277681992,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.29472162211279335],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re400":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.452399761549377,2.452399761549377],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_rear_shared_upper.json new file mode 100644 index 0000000..d953e33 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re400_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.054929993313117 * Cl_rear_s - 2.5544553575675293","deployment_expression_hash":"6b2aac7935b455e3d7044989565e4b60d52c56bc7d44ba5989887da7e638250e","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.054929993313117 * Cl_rear_s - 2.5544553575675293","fitted_expression_hash":"6b2aac7935b455e3d7044989565e4b60d52c56bc7d44ba5989887da7e638250e","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.733569+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116},"per_case":{"karman_re400":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116}},"per_trajectory":{"karman_re400:trajectory-001":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116}}},"optimizer":{"cost":1190.2714744663203,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.054929993313117,2.5544553575675293],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re400":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.848958918828123,2.740048203693064],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_front.json new file mode 100644 index 0000000..dd38eff --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.5835788969350136 * Cd_rear_a","deployment_expression_hash":"2408f83e555cb7e289660b533c8ee49036bd86e8d985db3bf4fafe69682fb412","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.5835788969350136 * Cd_rear_a","fitted_expression_hash":"2408f83e555cb7e289660b533c8ee49036bd86e8d985db3bf4fafe69682fb412","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.515810+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128},"per_case":{"karman_re50":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128}},"per_trajectory":{"karman_re50:trajectory-001":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128}}},"optimizer":{"cost":568.5818396421696,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.5835788969350136],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re50":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1324229019040257,2.1324229019040257],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_rear_shared_upper.json new file mode 100644 index 0000000..f32afb7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-20260720/formulas/karman_re50_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.22124106819225497 * Cl_rear_s - 3.582021485268801","deployment_expression_hash":"5c8498a409d5c918db3239cf09706ac54d55b1f00268bcba656117e4b57523ce","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.22124106819225497 * Cl_rear_s - 3.582021485268801","fitted_expression_hash":"5c8498a409d5c918db3239cf09706ac54d55b1f00268bcba656117e4b57523ce","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:40:56.593679+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433},"per_case":{"karman_re50":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433}},"per_trajectory":{"karman_re50:trajectory-001":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433}}},"optimizer":{"cost":203.03284144482782,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.22124106819225497,3.582021485268801],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re50":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.8903943217292403,-3.2736486488083614],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-20260720","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_front.json new file mode 100644 index 0000000..97c8254 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.324842776541943*Cd_rear_a","deployment_expression_hash":"9f6536ce361574fe4ab7929333ed64855250d056e1635435423bebf44f345634","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.324842776541943*Cd_rear_a","fitted_expression_hash":"9f6536ce361574fe4ab7929333ed64855250d056e1635435423bebf44f345634","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.063438+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274},"per_case":{"karman_re100":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.36762602777500997,"max_error":0.9996270856110621,"r2":0.8942459148735239,"rmse":0.45820137299549274}}},"optimizer":{"cost":41.35985414834604,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.324842776541943],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1770422999512413,2.1770422999512413],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..d0bb1a5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.3203186589016584*Cl_rear_s - 4.177446928237706","deployment_expression_hash":"e2cd8414b0c81eba10a1a6566fa3e501585854f4017b8b737b90131a9b751012","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.3203186589016584*Cl_rear_s - 4.177446928237706","fitted_expression_hash":"e2cd8414b0c81eba10a1a6566fa3e501585854f4017b8b737b90131a9b751012","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"87f80572552541551060eb2f849b53e09f5c81374f1f30f9dead6d197f073bda","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"094ef9bfdfb32a3335011bbc8490a52cda20139bfeb04fd1b49d5870e997c77f"},"trajectories":{"karman_re100":[{"hash":"d3b486f671ce40188af10076aeb92b18d0f39be285be3be1fd78775f3d65935e","id":"karman_re100:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.105335+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985},"per_case":{"karman_re100":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985}},"per_trajectory":{"karman_re100:trajectory-001":{"mae":0.7736831127890521,"max_error":2.7880229053394796,"r2":0.7130789672514801,"rmse":1.0448153119880985}}},"optimizer":{"cost":215.05289012446303,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.3203186589016584,4.177446928237706],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re100":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.272020453252877,-1.0828734032225347],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_front.json new file mode 100644 index 0000000..9b62397 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.5002775221133345*Cd_rear_a","deployment_expression_hash":"f7ff5dfc07553f9e90a89185c4b410bae867be87c4d779119f5b0f792d86cf67","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.5002775221133345*Cd_rear_a","fitted_expression_hash":"f7ff5dfc07553f9e90a89185c4b410bae867be87c4d779119f5b0f792d86cf67","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.129307+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735},"per_case":{"karman_re200":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735}},"per_trajectory":{"karman_re200:trajectory-001":{"mae":1.1792826984245248,"max_error":3.052569064879571,"r2":0.6465569445532036,"rmse":1.4089506676834735}}},"optimizer":{"cost":391.07297084124383,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.5002775221133345],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re200":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.9287835586276865,4.9287835586276865],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_rear_shared_upper.json new file mode 100644 index 0000000..0c25ef8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re200_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.6971078570952467*Cl_rear_s - 3.410910965502206","deployment_expression_hash":"2b74b5226ef836a93cad9b1a27022c342c592d41349c7c73417b84bca16de05d","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re200":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.6971078570952467*Cl_rear_s - 3.410910965502206","fitted_expression_hash":"2b74b5226ef836a93cad9b1a27022c342c592d41349c7c73417b84bca16de05d","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e018b5dadd19343480424aefa86eb0564f9dd6a9723451032cee4c88aa09dc89","paths":{"karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz"},"per_scene_hashes":{"karman_re200":"553a3217f408b9bfa1a9864f2c07ec509727a742de906369bd69128bcd8a3e54"},"trajectories":{"karman_re200":[{"hash":"027f19ac5b858bc1dc8465e9d2ae93eb95760d8705a47da8c8814489204180c4","id":"karman_re200:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.171233+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044},"per_case":{"karman_re200":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044}},"per_trajectory":{"karman_re200:trajectory-001":{"mae":2.099878553243882,"max_error":5.730734240383761,"r2":0.5787723199954065,"rmse":2.5076971709926044}}},"optimizer":{"cost":1238.8433849766488,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.6971078570952467,3.410910965502206],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re200":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-9.308095491109563,2.486273560105151],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re200"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_front.json new file mode 100644 index 0000000..3cff83b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.29472162211279335*Cd_rear_a","deployment_expression_hash":"789f162c0bd30e2198b1a7c940eaf07150e7c575023f5cd2f660106389ec21a5","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.29472162211279335*Cd_rear_a","fitted_expression_hash":"789f162c0bd30e2198b1a7c940eaf07150e7c575023f5cd2f660106389ec21a5","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.196801+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204},"per_case":{"karman_re400":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204}},"per_trajectory":{"karman_re400:trajectory-001":{"mae":0.1479559237498144,"max_error":0.8564633439697262,"r2":0.9735052865964828,"rmse":0.19880018636789204}}},"optimizer":{"cost":7.785738277681992,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.29472162211279335],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re400":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.452399761549377,2.452399761549377],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_rear_shared_upper.json new file mode 100644 index 0000000..2240915 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re400_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"1.054929993313117*Cl_rear_s - 2.5544553575675293","deployment_expression_hash":"332c5746955a3584940270bb6dc988a1642f5be1ff890071fdd0c1b010f6a879","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re400":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"1.054929993313117*Cl_rear_s - 2.5544553575675293","fitted_expression_hash":"332c5746955a3584940270bb6dc988a1642f5be1ff890071fdd0c1b010f6a879","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3a3bcf2fc1424d669bb82099a717bf2261cc26fab51a1b5465b0f31461916e19","paths":{"karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz"},"per_scene_hashes":{"karman_re400":"30b602d592c64cec6d037fb9210c2cc745912ede96412d1241fe88ab873bd297"},"trajectories":{"karman_re400":[{"hash":"338306a36182af77bd510216dba14c2d0937a65742098abfa32f5af7f2d49677","id":"karman_re400:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.240749+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116},"per_case":{"karman_re400":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116}},"per_trajectory":{"karman_re400:trajectory-001":{"mae":2.180989822453082,"max_error":4.877274411462385,"r2":0.32847453250491054,"rmse":2.4580453982854116}}},"optimizer":{"cost":1190.2714744663203,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[1.054929993313117,2.5544553575675293],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re400":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-7.848958918828123,2.740048203693064],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re400"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_front.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_front.json new file mode 100644 index 0000000..04ed70e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-front_odd-anchor-upper","deployment_expression":"-0.5835788969350136*Cd_rear_a","deployment_expression_hash":"a692cd32389031e7285c27dc4876acbabc3bb6d6a8f11b358733add7313edae1","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json","sha256":"49af614459fefee3ebeed5c1e8761bdd1f0f8860a8d2e8f303dd1bb010ad67bf"},"dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-0.5835788969350136*Cd_rear_a","fitted_expression_hash":"a692cd32389031e7285c27dc4876acbabc3bb6d6a8f11b358733add7313edae1","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["front_odd"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:38.982031+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128},"per_case":{"karman_re50":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128}},"per_trajectory":{"karman_re50:trajectory-001":{"mae":1.5402098101682624,"max_error":2.701252546683189,"r2":0.28270513879302694,"rmse":1.6988826421169128}}},"optimizer":{"cost":568.5818396421696,"initial_constants":[0.381391],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.5835788969350136],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re50":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.1324229019040257,2.1324229019040257],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"-0.381391*Cd_rear_a"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"front_odd","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_rear_shared_upper.json b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_rear_shared_upper.json new file mode 100644 index 0000000..8783756 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-karman-v2-20260720/formulas/karman_re50_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"article2-percase-refit-karman-v2-20260720-per-scene-rear_shared-anchor-upper","deployment_expression":"0.22124106819225497*Cl_rear_s - 3.582021485268801","deployment_expression_hash":"ac3b3ad41e9f3b3d2a169996268202eb510d52d0f8693dbc21e434828410f325","discovery_parent":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","sha256":"f24114508350fd6a9bbd6e5aa93713b2b136590539602c0ba6334e3af7508982"},"dt_c_metadata":{"per_scene":{"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"0.22124106819225497*Cl_rear_s - 3.582021485268801","fitted_expression_hash":"ac3b3ad41e9f3b3d2a169996268202eb510d52d0f8693dbc21e434828410f325","g_metadata":{"deployment_architecture":"mapped_shared","deployment_semantics":"mapped_shared","fit_augmentation":"G","fitted_heads":["rear_shared"],"front_rule":"front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"b95c6f35a5f7f73f38051d0f720261d114346440b7ea0f89830d0f782f81cb97","paths":{"karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re50":"1477703d46c51dd32f3cb9e3754d1bae973ed784500d0e9d0ffa7afda25ea04a"},"trajectories":{"karman_re50":[{"hash":"a1780dd327d329ac154d17cf733a7c4141627d01cd7f07398ece04008e51c0d7","id":"karman_re50:trajectory-001","path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz","sample_count":197}]}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode per-scene --run-id article2-percase-refit-karman-v2-20260720 --data-root src/SR_analysis/data/runs/article-joint-data-karman-20260718 --feature-set symmetry --feature-profile actual_only --deployment-architecture mapped_shared --fit-augmentation G --fit-purpose fixed-topology-refit --front-topology-expression=-0.381391*Cd_rear_a --rear-topology-expression=1.307782*Cl_rear_s-3.431209 --front-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_front.json --rear-discovery-parent-path src/SR_analysis/results/runs/article-joint-karman-symmetry-s0-20260718/formulas/joint_rear_shared_upper.json","created_at":"2026-07-20T13:46:39.033585+00:00","deployment_architecture":"mapped_shared","diagnostic_metrics":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":null,"python":"3.10.20"},"feature_profile":"actual_only","feature_set":"symmetry","fit_augmentation":"G","fit_purpose":"fixed-topology-refit","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"offline_metrics":{"aggregate":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433},"per_case":{"karman_re50":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433}},"per_trajectory":{"karman_re50:trajectory-001":{"mae":0.8173865388047218,"max_error":2.5468694656114192,"r2":0.022057303194492284,"rmse":1.0151963163022433}}},"optimizer":{"cost":203.03284144482782,"initial_constants":[1.307782,3.431209],"name":"scipy.optimize.least_squares","nfev":3,"refitted_constants":[0.22124106819225497,3.582021485268801],"success":true},"sample_weighting":"case_equal_trajectory_equal_within_case","scene_sample_counts":{"karman_re50":197},"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-3.8903943217292403,-3.2736486488083614],"required_output_range":null,"safe":true,"within_output_range":true},"topology_expression":"1.307782*Cl_rear_s-3.431209"},"pysr":{"purpose":"fixed-topology-refit","used":false}},"role":"rear_shared","run_id":"article2-percase-refit-karman-v2-20260720","schema_version":"1.0","training_scenes":["karman_re50"]} diff --git a/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/coefficients.csv b/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/coefficients.csv new file mode 100644 index 0000000..a1c51e1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/coefficients.csv @@ -0,0 +1,15 @@ +objective,scene,role,deployment_expression,coefficient_0,coefficient_1,coefficient_2,r2,mae,rmse +karman,karman_re100,front_odd,-0.324842776541943*Cd_rear_a,0.324842776541943,,,0.8942459148735239,0.36762602777500997,0.45820137299549274 +karman,karman_re100,rear_shared,1.3203186589016584*Cl_rear_s - 4.177446928237706,1.3203186589016584,4.177446928237706,,0.7130789672514801,0.7736831127890521,1.0448153119880985 +karman,karman_re200,front_odd,-0.5002775221133345*Cd_rear_a,0.5002775221133345,,,0.6465569445532036,1.1792826984245248,1.4089506676834735 +karman,karman_re200,rear_shared,1.6971078570952467*Cl_rear_s - 3.410910965502206,1.6971078570952467,3.410910965502206,,0.5787723199954065,2.099878553243882,2.5076971709926044 +karman,karman_re400,front_odd,-0.29472162211279335*Cd_rear_a,0.29472162211279335,,,0.9735052865964828,0.1479559237498144,0.19880018636789204 +karman,karman_re400,rear_shared,1.054929993313117*Cl_rear_s - 2.5544553575675293,1.054929993313117,2.5544553575675293,,0.32847453250491054,2.180989822453082,2.4580453982854116 +karman,karman_re50,front_odd,-0.5835788969350136*Cd_rear_a,0.5835788969350136,,,0.28270513879302694,1.5402098101682624,1.6988826421169128 +karman,karman_re50,rear_shared,0.22124106819225497*Cl_rear_s - 3.582021485268801,0.22124106819225497,3.582021485268801,,0.022057303194492284,0.8173865388047218,1.0151963163022433 +illusion,illusion_0.75L,front_odd,-0.24201575527044217*Cd_rear_a - 0.8372711325983693*Cl_F,0.24201575527044217,-0.8372711325983693,,0.8034648267882286,0.507387673315919,0.5658425189470068 +illusion,illusion_0.75L,rear_shared,0.24859161792995263*Cd_rear_a + 0.08286020333465423*Cl_F,0.24859161792995263,-0.08286020333465423,,-5.43956220650249,1.5228555424866943,1.5799369208526148 +illusion,illusion_1.5L,front_odd,-0.044119550519154505*Cd_rear_a + 2.1015026293420416*Cl_F,0.044119550519154505,2.1015026293420416,,0.5420581062268233,2.5622557463777267,3.084420205371026 +illusion,illusion_1.5L,rear_shared,1.5682603086502969*Cd_rear_a - 1.6011017720495324*Cl_F,1.5682603086502969,1.6011017720495324,,0.5948268502056615,1.6098420125432724,1.9948656250961145 +illusion,illusion_1L,front_odd,2.043848942000545*Cd_rear_a - 2.219295123924814*Cl_F,-2.043848942000545,-2.219295123924814,,0.6059884236814721,0.26749351633879453,0.32378763498020424 +illusion,illusion_1L,rear_shared,0.18434653705308968*Cd_rear_a - 0.15875223987426046*Cl_F,0.18434653705308968,0.15875223987426046,,-11.247969651640615,0.8679547536796725,0.905159878077149 diff --git a/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/interpretation.md b/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/interpretation.md new file mode 100644 index 0000000..edaabd6 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/interpretation.md @@ -0,0 +1,17 @@ +# Per-case fixed-topology refit interpretation + +## Kármán + +The frozen joint topology does not acquire one monotonic coefficient trend with Reynolds number. The rear constant remains the most stable element: its magnitude is 3.58, 4.18, 3.41 and 2.55 for Re 50, 100, 200 and 400, respectively. The rear lift coefficient is weak at Re50 (0.22), peaks at Re200 (1.70), and decreases at Re400 (1.05). The front drag-asymmetry coefficient varies non-monotonically (0.58, 0.32, 0.50, 0.29). + +This supports a common steady rear-rotation backbone, but not a simple low-Re/high-Re two-group coefficient law. The independent broad-discovery inventory reaches the same conclusion: Re50 favours simple front-force/affine structures, Re400 repeatedly selects `Cl_rear_s-Cl_tot`, and Re100/Re200 are heterogeneous lift-based intermediates. Re400 is distinct chiefly through a smaller rear constant and poorer rear-head offline fit, consistent with the loss of joint-law closed-loop performance. Re50 is also structurally special because its rear lift feedback is nearly absent. The data therefore suggest non-monotonic retuning plus distinct endpoint signatures rather than two clean clusters. + +## Illusion + +The frozen four-term topology changes signs and relative weights between diameters. At 0.75L the front action is dominated by negative front-lift feedback and the rear refit is poorly identified. At 1L the front coefficients reverse relative to the joint formula and the rear topology has strongly negative R2, indicating that this fixed rear family is not a useful open-loop action surrogate for that single trajectory. At 1.5L the rear coefficients become an order of magnitude larger and the front action is almost purely positive front-lift feedback. + +Broad discovery makes the diameter progression clearer than the frozen-topology coefficients alone: 0.75L is rear-drag dominated (`Cd_rear_a` 15 and `Cd_rear_s` 10 occurrences), 1L is mixed/transitional (`Cd_F` 13 and `Cl_rear_s` 12), and 1.5L is overwhelmingly lift-contrast dominated (`Cl_F` 54 and `Cl_rear_s` 46). The endpoint families are therefore clearly distinct, while 1L is a genuine transition rather than a member of either clean group. Coefficient sign changes still show that one joint static formula is an averaging compromise rather than a universal target-tracking law. + +## Scope + +These per-case refits are diagnostics on PPO-visited trajectories. They are not promoted to controllers without separate closed-loop CFD validation. Negative R2 values are retained because they are useful evidence that the frozen topology is insufficient for a particular head/case. diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/ablation_summary.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/ablation_summary.csv new file mode 100644 index 0000000..1bcca33 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/ablation_summary.csv @@ -0,0 +1,25 @@ +run_id,variant,scene,steps,status,similarity,lag,termination_reason,formula_hash +article-ablation-L2-i_front0-20260718,i_front0,illusion_0.75L,40,completed,0.9393749322736294,11,completed,028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533 +article-ablation-L2-i_front0-20260718,i_front0,illusion_1L,40,completed,0.9334814093710048,3,completed,028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533 +article-ablation-L2-i_front0-20260718,i_front0,illusion_1.5L,40,completed,0.8850846949366383,3,completed,028cce8471d193e7d21aa9fb953b3f65a6999b40f17b3c7a0be6b975153fa533 +article-ablation-L2-i_front1-20260718,i_front1,illusion_0.75L,40,completed,0.9600674752922108,15,completed,278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef +article-ablation-L2-i_front1-20260718,i_front1,illusion_1L,40,completed,0.9270345351132736,5,completed,278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef +article-ablation-L2-i_front1-20260718,i_front1,illusion_1.5L,40,completed,0.8365631411283242,9,completed,278b1137701d2bad9d9d63730be5acf3cdac49af149da322d64a17f6a17845ef +article-ablation-L2-i_rear0-20260718,i_rear0,illusion_0.75L,40,completed,0.9544875667504836,10,completed,56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a +article-ablation-L2-i_rear0-20260718,i_rear0,illusion_1L,40,completed,0.9368508072587213,2,completed,56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a +article-ablation-L2-i_rear0-20260718,i_rear0,illusion_1.5L,40,completed,0.8876030370075668,-19,completed,56d7d5018cb04cb63fc08a040b772f103b6872750098d92c5288ed5e7672bc5a +article-ablation-L2-i_rear1-20260718,i_rear1,illusion_0.75L,40,completed,0.9546406496255831,6,completed,620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6 +article-ablation-L2-i_rear1-20260718,i_rear1,illusion_1L,40,completed,0.9304544354575531,-16,completed,620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6 +article-ablation-L2-i_rear1-20260718,i_rear1,illusion_1.5L,40,completed,0.850815811858478,-4,completed,620e339914f7805261e07510b3e4288bc931378f54b8b7b5473cd0ad0c3ef4a6 +article-ablation-L2-k_front0-20260718,k_front0,karman_re100,40,completed,0.912182289249419,-5,completed,8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309 +article-ablation-L2-k_front0-20260718,k_front0,karman_re200,40,completed,0.8814340770341612,2,completed,8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309 +article-ablation-L2-k_front0-20260718,k_front0,karman_re400,40,completed,0.8132892155191964,3,completed,8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309 +article-ablation-L2-k_front0-20260718,k_front0,karman_re50,40,completed,0.9393610483087186,0,completed,8b5536a5b12441e8d49b33d746004daf5805430db49c49ce10dbcffc0ee9b309 +article-ablation-L2-k_rear0-20260718,k_rear0,karman_re100,40,completed,0.8699433454752175,12,completed,888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257 +article-ablation-L2-k_rear0-20260718,k_rear0,karman_re200,40,completed,0.8252501933153124,2,completed,888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257 +article-ablation-L2-k_rear0-20260718,k_rear0,karman_re400,40,completed,0.7895346511795651,4,completed,888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257 +article-ablation-L2-k_rear0-20260718,k_rear0,karman_re50,40,completed,0.917126327101788,-1,completed,888dfc90293c1eb0835026de1b9d9d87c588adce3de450964557e46448f3b257 +article-ablation-L2-k_rear1-20260718,k_rear1,karman_re100,40,completed,0.8177349978055443,-10,completed,67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec +article-ablation-L2-k_rear1-20260718,k_rear1,karman_re200,40,completed,0.7080887641085104,-6,completed,67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec +article-ablation-L2-k_rear1-20260718,k_rear1,karman_re400,40,completed,0.6474009072692651,-19,completed,67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec +article-ablation-L2-k_rear1-20260718,k_rear1,karman_re50,40,completed,0.8393441314783155,-4,completed,67ae1e890bc1e29ce626d902b15660d179c5c31d60b741aeac35cbe4148d49ec diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.pdf new file mode 100644 index 0000000..139c53a Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.png new file mode 100644 index 0000000..1b7dfd0 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.pdf new file mode 100644 index 0000000..e3a67b2 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.png new file mode 100644 index 0000000..6589302 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.pdf new file mode 100644 index 0000000..31bc5d9 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.png new file mode 100644 index 0000000..6ba1c81 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.pdf new file mode 100644 index 0000000..c427ce7 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.png new file mode 100644 index 0000000..1927c09 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.pdf new file mode 100644 index 0000000..f72d821 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.png new file mode 100644 index 0000000..998637b Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.pdf b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.pdf new file mode 100644 index 0000000..f8b86a3 Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.pdf differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.png b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.png new file mode 100644 index 0000000..e78afbe Binary files /dev/null and b/src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.png differ diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..f02b35a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_0.75L,ppo,72,14.4,36,0.9154395991044347,-7,0.9588778399758868,0.9303702009508723,0.9354800631602606,0.8719344248788224,0.9260511116849052,0.8699239539758613 +illusion_0.75L,ppo,108,21.6,36,0.9058528282556734,-14,0.9427875826756159,0.9444572793177536,0.8432215402523676,0.860033555706549,0.943568252854877,0.9010487587268775 +illusion_0.75L,ppo,144,28.8,36,0.9578881891642662,-7,0.9727840142117606,0.9753595498752676,0.931338197655148,0.9503257515736752,0.9711413482824961,0.94638027338725 +illusion_0.75L,ppo,180,36.0,36,0.9696243896787227,-2,0.9890074266327752,0.9717061299985895,0.9306335664457746,0.9622154454183247,0.9857939961883757,0.9783897733884968 +illusion_0.75L,ppo,216,43.2,36,0.9782542933891011,5,0.9806818432278104,0.9855463448653204,0.9675506833526824,0.9668696649476058,0.9831130504608154,0.9857641734803716 +illusion_0.75L,ppo,252,50.4,36,0.9792546836003937,-17,0.9768167270554436,0.9875685539769216,0.9743242031998105,0.974639095314261,0.9760822537872527,0.9860972682686729 +illusion_0.75L,ppo,288,57.6,36,0.9738656012069207,-10,0.9811118874284956,0.9864311497965699,0.9693905827071931,0.9490129829694828,0.98424318101671,0.9730038233230718 +illusion_0.75L,ppo,324,64.8,36,0.9818518159316025,-4,0.9850634584824244,0.987024823229553,0.9685081839561462,0.9795796227020522,0.9870630767610338,0.9838717304584053 +illusion_0.75L,ppo,360,72.0,36,0.9765408432274988,2,0.9771031108167436,0.9900617926485009,0.9704146799114015,0.9588508110803863,0.9785448147190942,0.9842698501888663 +illusion_0.75L,ppo,396,79.2,36,0.9799881971724703,8,0.9744893345567915,0.9835206075319244,0.9765264143546423,0.9725161351573964,0.9849771873818504,0.9878995040522164 +illusion_0.75L,ppo,400,80.0,36,0.9763280530993748,-17,0.9719278878635831,0.980109131730084,0.9730200469493866,0.9680408756766055,0.9794242911868625,0.9854460851897279 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_long.csv new file mode 100644 index 0000000..cf0ce5f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,ppo,0,0.0,velocity,upper_ux,0.90583336353302 +illusion_0.75L,ppo,0,0.0,velocity,upper_uy,-0.20850256085395813 +illusion_0.75L,ppo,0,0.0,velocity,center_ux,0.7696645855903625 +illusion_0.75L,ppo,0,0.0,velocity,center_uy,-0.5184223055839539 +illusion_0.75L,ppo,0,0.0,velocity,lower_ux,1.1382818222045898 +illusion_0.75L,ppo,0,0.0,velocity,lower_uy,-0.23160357773303986 +illusion_0.75L,ppo,1,0.2,velocity,upper_ux,0.9346581101417542 +illusion_0.75L,ppo,1,0.2,velocity,upper_uy,-0.2333710789680481 +illusion_0.75L,ppo,1,0.2,velocity,center_ux,0.810030996799469 +illusion_0.75L,ppo,1,0.2,velocity,center_uy,-0.5128098726272583 +illusion_0.75L,ppo,1,0.2,velocity,lower_ux,1.0419607162475586 +illusion_0.75L,ppo,1,0.2,velocity,lower_uy,-0.31055617332458496 +illusion_0.75L,ppo,2,0.4,velocity,upper_ux,0.9642118811607361 +illusion_0.75L,ppo,2,0.4,velocity,upper_uy,-0.2550995945930481 +illusion_0.75L,ppo,2,0.4,velocity,center_ux,0.8435966968536377 +illusion_0.75L,ppo,2,0.4,velocity,center_uy,-0.50937420129776 +illusion_0.75L,ppo,2,0.4,velocity,lower_ux,0.960164487361908 +illusion_0.75L,ppo,2,0.4,velocity,lower_uy,-0.3506736755371094 +illusion_0.75L,ppo,3,0.6,velocity,upper_ux,0.9945495128631592 +illusion_0.75L,ppo,3,0.6,velocity,upper_uy,-0.27397212386131287 +illusion_0.75L,ppo,3,0.6,velocity,center_ux,0.8695603013038635 +illusion_0.75L,ppo,3,0.6,velocity,center_uy,-0.5131033062934875 +illusion_0.75L,ppo,3,0.6,velocity,lower_ux,0.8988192081451416 +illusion_0.75L,ppo,3,0.6,velocity,lower_uy,-0.3568616807460785 +illusion_0.75L,ppo,4,0.8,velocity,upper_ux,1.0260318517684937 +illusion_0.75L,ppo,4,0.8,velocity,upper_uy,-0.29040589928627014 +illusion_0.75L,ppo,4,0.8,velocity,center_ux,0.8897067308425903 +illusion_0.75L,ppo,4,0.8,velocity,center_uy,-0.5218648910522461 +illusion_0.75L,ppo,4,0.8,velocity,lower_ux,0.8554297685623169 +illusion_0.75L,ppo,4,0.8,velocity,lower_uy,-0.3405631184577942 +illusion_0.75L,ppo,5,1.0,velocity,upper_ux,1.0586779117584229 +illusion_0.75L,ppo,5,1.0,velocity,upper_uy,-0.3044672906398773 +illusion_0.75L,ppo,5,1.0,velocity,center_ux,0.9047123789787292 +illusion_0.75L,ppo,5,1.0,velocity,center_uy,-0.5327944755554199 +illusion_0.75L,ppo,5,1.0,velocity,lower_ux,0.8230391144752502 +illusion_0.75L,ppo,5,1.0,velocity,lower_uy,-0.3120873272418976 +illusion_0.75L,ppo,6,1.2,velocity,upper_ux,1.0928244590759277 +illusion_0.75L,ppo,6,1.2,velocity,upper_uy,-0.31636467576026917 +illusion_0.75L,ppo,6,1.2,velocity,center_ux,0.9144799709320068 +illusion_0.75L,ppo,6,1.2,velocity,center_uy,-0.5424194931983948 +illusion_0.75L,ppo,6,1.2,velocity,lower_ux,0.7959758043289185 +illusion_0.75L,ppo,6,1.2,velocity,lower_uy,-0.27664053440093994 +illusion_0.75L,ppo,7,1.4,velocity,upper_ux,1.128603458404541 +illusion_0.75L,ppo,7,1.4,velocity,upper_uy,-0.3258638083934784 +illusion_0.75L,ppo,7,1.4,velocity,center_ux,0.9176493883132935 +illusion_0.75L,ppo,7,1.4,velocity,center_uy,-0.5452343225479126 +illusion_0.75L,ppo,7,1.4,velocity,lower_ux,0.7713738083839417 +illusion_0.75L,ppo,7,1.4,velocity,lower_uy,-0.2357712984085083 +illusion_0.75L,ppo,8,1.6,velocity,upper_ux,1.1665724515914917 +illusion_0.75L,ppo,8,1.6,velocity,upper_uy,-0.3326914310455322 +illusion_0.75L,ppo,8,1.6,velocity,center_ux,0.9127352237701416 +illusion_0.75L,ppo,8,1.6,velocity,center_uy,-0.5330833792686462 +illusion_0.75L,ppo,8,1.6,velocity,lower_ux,0.7498684525489807 +illusion_0.75L,ppo,8,1.6,velocity,lower_uy,-0.18964356184005737 +illusion_0.75L,ppo,9,1.8,velocity,upper_ux,1.2067636251449585 +illusion_0.75L,ppo,9,1.8,velocity,upper_uy,-0.3360676169395447 +illusion_0.75L,ppo,9,1.8,velocity,center_ux,0.8979538679122925 +illusion_0.75L,ppo,9,1.8,velocity,center_uy,-0.49632927775382996 +illusion_0.75L,ppo,9,1.8,velocity,lower_ux,0.7337867617607117 +illusion_0.75L,ppo,9,1.8,velocity,lower_uy,-0.13928452134132385 +illusion_0.75L,ppo,10,2.0,velocity,upper_ux,1.2488921880722046 +illusion_0.75L,ppo,10,2.0,velocity,upper_uy,-0.3346298635005951 +illusion_0.75L,ppo,10,2.0,velocity,center_ux,0.8727039098739624 +illusion_0.75L,ppo,10,2.0,velocity,center_uy,-0.42671406269073486 +illusion_0.75L,ppo,10,2.0,velocity,lower_ux,0.7263771891593933 +illusion_0.75L,ppo,10,2.0,velocity,lower_uy,-0.08734635263681412 +illusion_0.75L,ppo,11,2.2,velocity,upper_ux,1.2919867038726807 +illusion_0.75L,ppo,11,2.2,velocity,upper_uy,-0.32601937651634216 +illusion_0.75L,ppo,11,2.2,velocity,center_ux,0.8386058807373047 +illusion_0.75L,ppo,11,2.2,velocity,center_uy,-0.32066383957862854 +illusion_0.75L,ppo,11,2.2,velocity,lower_ux,0.730384111404419 +illusion_0.75L,ppo,11,2.2,velocity,lower_uy,-0.03762441873550415 +illusion_0.75L,ppo,12,2.4,velocity,upper_ux,1.3331190347671509 +illusion_0.75L,ppo,12,2.4,velocity,upper_uy,-0.3061894476413727 +illusion_0.75L,ppo,12,2.4,velocity,center_ux,0.799427330493927 +illusion_0.75L,ppo,12,2.4,velocity,center_uy,-0.18089823424816132 +illusion_0.75L,ppo,12,2.4,velocity,lower_ux,0.7460113763809204 +illusion_0.75L,ppo,12,2.4,velocity,lower_uy,0.006725707091391087 +illusion_0.75L,ppo,13,2.6,velocity,upper_ux,1.365877628326416 +illusion_0.75L,ppo,13,2.6,velocity,upper_uy,-0.2691580653190613 +illusion_0.75L,ppo,13,2.6,velocity,center_ux,0.7605582475662231 +illusion_0.75L,ppo,13,2.6,velocity,center_uy,-0.016642045229673386 +illusion_0.75L,ppo,13,2.6,velocity,lower_ux,0.7699361443519592 +illusion_0.75L,ppo,13,2.6,velocity,lower_uy,0.04527031257748604 +illusion_0.75L,ppo,14,2.8,velocity,upper_ux,1.3808451890945435 +illusion_0.75L,ppo,14,2.8,velocity,upper_uy,-0.20774541795253754 +illusion_0.75L,ppo,14,2.8,velocity,center_ux,0.7292136549949646 +illusion_0.75L,ppo,14,2.8,velocity,center_uy,0.15627896785736084 +illusion_0.75L,ppo,14,2.8,velocity,lower_ux,0.797615647315979 +illusion_0.75L,ppo,14,2.8,velocity,lower_uy,0.08025936782360077 +illusion_0.75L,ppo,15,3.0,velocity,upper_ux,1.3672361373901367 +illusion_0.75L,ppo,15,3.0,velocity,upper_uy,-0.11732926964759827 +illusion_0.75L,ppo,15,3.0,velocity,center_ux,0.7127396464347839 +illusion_0.75L,ppo,15,3.0,velocity,center_uy,0.3154537081718445 +illusion_0.75L,ppo,15,3.0,velocity,lower_ux,0.8256313800811768 +illusion_0.75L,ppo,15,3.0,velocity,lower_uy,0.11420148611068726 +illusion_0.75L,ppo,16,3.2,velocity,upper_ux,1.31852126121521 +illusion_0.75L,ppo,16,3.2,velocity,upper_uy,-0.00164996983949095 +illusion_0.75L,ppo,16,3.2,velocity,center_ux,0.7168662548065186 +illusion_0.75L,ppo,16,3.2,velocity,center_uy,0.43507304787635803 +illusion_0.75L,ppo,16,3.2,velocity,lower_ux,0.85310959815979 +illusion_0.75L,ppo,16,3.2,velocity,lower_uy,0.14755019545555115 +illusion_0.75L,ppo,17,3.4,velocity,upper_ux,1.2384942770004272 +illusion_0.75L,ppo,17,3.4,velocity,upper_uy,0.1236235499382019 +illusion_0.75L,ppo,17,3.4,velocity,center_ux,0.7420246005058289 +illusion_0.75L,ppo,17,3.4,velocity,center_uy,0.49839943647384644 +illusion_0.75L,ppo,17,3.4,velocity,lower_ux,0.8806049823760986 +illusion_0.75L,ppo,17,3.4,velocity,lower_uy,0.17900557816028595 +illusion_0.75L,ppo,18,3.6,velocity,upper_ux,1.1419498920440674 +illusion_0.75L,ppo,18,3.6,velocity,upper_uy,0.2350998818874359 +illusion_0.75L,ppo,18,3.6,velocity,center_ux,0.7803472876548767 +illusion_0.75L,ppo,18,3.6,velocity,center_uy,0.5138702988624573 +illusion_0.75L,ppo,18,3.6,velocity,lower_ux,0.9087501764297485 +illusion_0.75L,ppo,18,3.6,velocity,lower_uy,0.20746590197086334 +illusion_0.75L,ppo,19,3.8,velocity,upper_ux,1.0478322505950928 +illusion_0.75L,ppo,19,3.8,velocity,upper_uy,0.31302371621131897 +illusion_0.75L,ppo,19,3.8,velocity,center_ux,0.8198149800300598 +illusion_0.75L,ppo,19,3.8,velocity,center_uy,0.5091760754585266 +illusion_0.75L,ppo,19,3.8,velocity,lower_ux,0.9377811551094055 +illusion_0.75L,ppo,19,3.8,velocity,lower_uy,0.23263108730316162 +illusion_0.75L,ppo,20,4.0,velocity,upper_ux,0.9699280261993408 +illusion_0.75L,ppo,20,4.0,velocity,upper_uy,0.35061711072921753 +illusion_0.75L,ppo,20,4.0,velocity,center_ux,0.852684736251831 +illusion_0.75L,ppo,20,4.0,velocity,center_uy,0.5057334303855896 +illusion_0.75L,ppo,20,4.0,velocity,lower_ux,0.9674424529075623 +illusion_0.75L,ppo,20,4.0,velocity,lower_uy,0.25474852323532104 +illusion_0.75L,ppo,21,4.2,velocity,upper_ux,0.9124045372009277 +illusion_0.75L,ppo,21,4.2,velocity,upper_uy,0.3546332120895386 +illusion_0.75L,ppo,21,4.2,velocity,center_ux,0.8778254985809326 +illusion_0.75L,ppo,21,4.2,velocity,center_uy,0.5090228915214539 +illusion_0.75L,ppo,21,4.2,velocity,lower_ux,0.9975526332855225 +illusion_0.75L,ppo,21,4.2,velocity,lower_uy,0.27417421340942383 +illusion_0.75L,ppo,22,4.4,velocity,upper_ux,0.8714282512664795 +illusion_0.75L,ppo,22,4.4,velocity,upper_uy,0.3375322222709656 +illusion_0.75L,ppo,22,4.4,velocity,center_ux,0.8968015909194946 +illusion_0.75L,ppo,22,4.4,velocity,center_uy,0.5172105431556702 +illusion_0.75L,ppo,22,4.4,velocity,lower_ux,1.0283557176589966 +illusion_0.75L,ppo,22,4.4,velocity,lower_uy,0.29127973318099976 +illusion_0.75L,ppo,23,4.6,velocity,upper_ux,0.8400804996490479 +illusion_0.75L,ppo,23,4.6,velocity,upper_uy,0.30931949615478516 +illusion_0.75L,ppo,23,4.6,velocity,center_ux,0.9105557799339294 +illusion_0.75L,ppo,23,4.6,velocity,center_uy,0.5276029706001282 +illusion_0.75L,ppo,23,4.6,velocity,lower_ux,1.0601619482040405 +illusion_0.75L,ppo,23,4.6,velocity,lower_uy,0.3063174784183502 +illusion_0.75L,ppo,24,4.8,velocity,upper_ux,0.8127768039703369 +illusion_0.75L,ppo,24,4.8,velocity,upper_uy,0.27453887462615967 +illusion_0.75L,ppo,24,4.8,velocity,center_ux,0.9186723828315735 +illusion_0.75L,ppo,24,4.8,velocity,center_uy,0.5367356538772583 +illusion_0.75L,ppo,24,4.8,velocity,lower_ux,1.093085527420044 +illusion_0.75L,ppo,24,4.8,velocity,lower_uy,0.3194817900657654 +illusion_0.75L,ppo,25,5.0,velocity,upper_ux,0.7876831889152527 +illusion_0.75L,ppo,25,5.0,velocity,upper_uy,0.23410871624946594 +illusion_0.75L,ppo,25,5.0,velocity,center_ux,0.9202376008033752 +illusion_0.75L,ppo,25,5.0,velocity,center_uy,0.538988471031189 +illusion_0.75L,ppo,25,5.0,velocity,lower_ux,1.1277843713760376 +illusion_0.75L,ppo,25,5.0,velocity,lower_uy,0.33067747950553894 +illusion_0.75L,ppo,26,5.2,velocity,upper_ux,0.7658166289329529 +illusion_0.75L,ppo,26,5.2,velocity,upper_uy,0.18791627883911133 +illusion_0.75L,ppo,26,5.2,velocity,center_ux,0.9135929346084595 +illusion_0.75L,ppo,26,5.2,velocity,center_uy,0.5260970592498779 +illusion_0.75L,ppo,26,5.2,velocity,lower_ux,1.1648778915405273 +illusion_0.75L,ppo,26,5.2,velocity,lower_uy,0.3397637605667114 +illusion_0.75L,ppo,27,5.4,velocity,upper_ux,0.7500078082084656 +illusion_0.75L,ppo,27,5.4,velocity,upper_uy,0.1372014433145523 +illusion_0.75L,ppo,27,5.4,velocity,center_ux,0.8970326781272888 +illusion_0.75L,ppo,27,5.4,velocity,center_uy,0.488189160823822 +illusion_0.75L,ppo,27,5.4,velocity,lower_ux,1.2047868967056274 +illusion_0.75L,ppo,27,5.4,velocity,lower_uy,0.3459007143974304 +illusion_0.75L,ppo,28,5.6,velocity,upper_ux,0.7437261343002319 +illusion_0.75L,ppo,28,5.6,velocity,upper_uy,0.0848122388124466 +illusion_0.75L,ppo,28,5.6,velocity,center_ux,0.8699190020561218 +illusion_0.75L,ppo,28,5.6,velocity,center_uy,0.4166278839111328 +illusion_0.75L,ppo,28,5.6,velocity,lower_ux,1.2472821474075317 +illusion_0.75L,ppo,28,5.6,velocity,lower_uy,0.3476240634918213 +illusion_0.75L,ppo,29,5.8,velocity,upper_ux,0.7495846748352051 +illusion_0.75L,ppo,29,5.8,velocity,upper_uy,0.035055503249168396 +illusion_0.75L,ppo,29,5.8,velocity,center_ux,0.8338930010795593 +illusion_0.75L,ppo,29,5.8,velocity,center_uy,0.30733516812324524 +illusion_0.75L,ppo,29,5.8,velocity,lower_ux,1.2908161878585815 +illusion_0.75L,ppo,29,5.8,velocity,lower_uy,0.34149324893951416 +illusion_0.75L,ppo,30,6.0,velocity,upper_ux,0.7675195932388306 +illusion_0.75L,ppo,30,6.0,velocity,upper_uy,-0.008969736285507679 +illusion_0.75L,ppo,30,6.0,velocity,center_ux,0.7930880784988403 +illusion_0.75L,ppo,30,6.0,velocity,center_uy,0.16283062100410461 +illusion_0.75L,ppo,30,6.0,velocity,lower_ux,1.3311362266540527 +illusion_0.75L,ppo,30,6.0,velocity,lower_uy,0.3217555284500122 +illusion_0.75L,ppo,31,6.2,velocity,upper_ux,0.7939025163650513 +illusion_0.75L,ppo,31,6.2,velocity,upper_uy,-0.04694482684135437 +illusion_0.75L,ppo,31,6.2,velocity,center_ux,0.7534863948822021 +illusion_0.75L,ppo,31,6.2,velocity,center_uy,-0.007188799791038036 +illusion_0.75L,ppo,31,6.2,velocity,lower_ux,1.3598042726516724 +illusion_0.75L,ppo,31,6.2,velocity,lower_uy,0.2797156274318695 +illusion_0.75L,ppo,32,6.4,velocity,upper_ux,0.8236000537872314 +illusion_0.75L,ppo,32,6.4,velocity,upper_uy,-0.08145910501480103 +illusion_0.75L,ppo,32,6.4,velocity,center_ux,0.7224211692810059 +illusion_0.75L,ppo,32,6.4,velocity,center_uy,-0.18548618257045746 +illusion_0.75L,ppo,32,6.4,velocity,lower_ux,1.3652290105819702 +illusion_0.75L,ppo,32,6.4,velocity,lower_uy,0.206525981426239 +illusion_0.75L,ppo,33,6.6,velocity,upper_ux,0.853545069694519 +illusion_0.75L,ppo,33,6.6,velocity,upper_uy,-0.11483990401029587 +illusion_0.75L,ppo,33,6.6,velocity,center_ux,0.7080010771751404 +illusion_0.75L,ppo,33,6.6,velocity,center_uy,-0.34740108251571655 +illusion_0.75L,ppo,33,6.6,velocity,lower_ux,1.3374327421188354 +illusion_0.75L,ppo,33,6.6,velocity,lower_uy,0.0985163226723671 +illusion_0.75L,ppo,34,6.8,velocity,upper_ux,0.8832885026931763 +illusion_0.75L,ppo,34,6.8,velocity,upper_uy,-0.14704270660877228 +illusion_0.75L,ppo,34,6.8,velocity,center_ux,0.716257631778717 +illusion_0.75L,ppo,34,6.8,velocity,center_uy,-0.4657716751098633 +illusion_0.75L,ppo,34,6.8,velocity,lower_ux,1.27388596534729 +illusion_0.75L,ppo,34,6.8,velocity,lower_uy,-0.03645078092813492 +illusion_0.75L,ppo,35,7.0,velocity,upper_ux,0.9136298894882202 +illusion_0.75L,ppo,35,7.0,velocity,upper_uy,-0.17658261954784393 +illusion_0.75L,ppo,35,7.0,velocity,center_ux,0.7466319799423218 +illusion_0.75L,ppo,35,7.0,velocity,center_uy,-0.5270044803619385 +illusion_0.75L,ppo,35,7.0,velocity,lower_ux,1.1833168268203735 +illusion_0.75L,ppo,35,7.0,velocity,lower_uy,-0.17723670601844788 +illusion_0.75L,ppo,36,7.2,velocity,upper_ux,0.9452473521232605 +illusion_0.75L,ppo,36,7.2,velocity,upper_uy,-0.2021586298942566 +illusion_0.75L,ppo,36,7.2,velocity,center_ux,0.7893834114074707 +illusion_0.75L,ppo,36,7.2,velocity,center_uy,-0.5460253357887268 +illusion_0.75L,ppo,36,7.2,velocity,lower_ux,1.0829136371612549 +illusion_0.75L,ppo,36,7.2,velocity,lower_uy,-0.297102153301239 +illusion_0.75L,ppo,37,7.4,velocity,upper_ux,0.9784295558929443 +illusion_0.75L,ppo,37,7.4,velocity,upper_uy,-0.22355549037456512 +illusion_0.75L,ppo,37,7.4,velocity,center_ux,0.832488477230072 +illusion_0.75L,ppo,37,7.4,velocity,center_uy,-0.5518133044242859 +illusion_0.75L,ppo,37,7.4,velocity,lower_ux,0.9904569387435913 +illusion_0.75L,ppo,37,7.4,velocity,lower_uy,-0.3759872317314148 +illusion_0.75L,ppo,38,7.6,velocity,upper_ux,1.0130690336227417 +illusion_0.75L,ppo,38,7.6,velocity,upper_uy,-0.2407723218202591 +illusion_0.75L,ppo,38,7.6,velocity,center_ux,0.8701346516609192 +illusion_0.75L,ppo,38,7.6,velocity,center_uy,-0.5606619119644165 +illusion_0.75L,ppo,38,7.6,velocity,lower_ux,0.9166441559791565 +illusion_0.75L,ppo,38,7.6,velocity,lower_uy,-0.4095442593097687 +illusion_0.75L,ppo,39,7.8,velocity,upper_ux,1.0490758419036865 +illusion_0.75L,ppo,39,7.8,velocity,upper_uy,-0.2540304362773895 +illusion_0.75L,ppo,39,7.8,velocity,center_ux,0.9020686149597168 +illusion_0.75L,ppo,39,7.8,velocity,center_uy,-0.5735722184181213 +illusion_0.75L,ppo,39,7.8,velocity,lower_ux,0.8622687458992004 +illusion_0.75L,ppo,39,7.8,velocity,lower_uy,-0.4071313142776489 +illusion_0.75L,ppo,40,8.0,velocity,upper_ux,1.0865050554275513 +illusion_0.75L,ppo,40,8.0,velocity,upper_uy,-0.2631792724132538 +illusion_0.75L,ppo,40,8.0,velocity,center_ux,0.9288071393966675 +illusion_0.75L,ppo,40,8.0,velocity,center_uy,-0.5859279036521912 +illusion_0.75L,ppo,40,8.0,velocity,lower_ux,0.8213123083114624 +illusion_0.75L,ppo,40,8.0,velocity,lower_uy,-0.3821720778942108 +illusion_0.75L,ppo,41,8.2,velocity,upper_ux,1.1255019903182983 +illusion_0.75L,ppo,41,8.2,velocity,upper_uy,-0.26794302463531494 +illusion_0.75L,ppo,41,8.2,velocity,center_ux,0.949608564376831 +illusion_0.75L,ppo,41,8.2,velocity,center_uy,-0.5903881192207336 +illusion_0.75L,ppo,41,8.2,velocity,lower_ux,0.7871169447898865 +illusion_0.75L,ppo,41,8.2,velocity,lower_uy,-0.3432392179965973 +illusion_0.75L,ppo,42,8.4,velocity,upper_ux,1.1660792827606201 +illusion_0.75L,ppo,42,8.4,velocity,upper_uy,-0.2676522731781006 +illusion_0.75L,ppo,42,8.4,velocity,center_ux,0.9624927639961243 +illusion_0.75L,ppo,42,8.4,velocity,center_uy,-0.5762932896614075 +illusion_0.75L,ppo,42,8.4,velocity,lower_ux,0.756374716758728 +illusion_0.75L,ppo,42,8.4,velocity,lower_uy,-0.2930927872657776 +illusion_0.75L,ppo,43,8.6,velocity,upper_ux,1.2078977823257446 +illusion_0.75L,ppo,43,8.6,velocity,upper_uy,-0.2613019347190857 +illusion_0.75L,ppo,43,8.6,velocity,center_ux,0.9651051163673401 +illusion_0.75L,ppo,43,8.6,velocity,center_uy,-0.5311241149902344 +illusion_0.75L,ppo,43,8.6,velocity,lower_ux,0.7295990586280823 +illusion_0.75L,ppo,43,8.6,velocity,lower_uy,-0.2321166843175888 +illusion_0.75L,ppo,44,8.8,velocity,upper_ux,1.2504360675811768 +illusion_0.75L,ppo,44,8.8,velocity,upper_uy,-0.24723929166793823 +illusion_0.75L,ppo,44,8.8,velocity,center_ux,0.9569262862205505 +illusion_0.75L,ppo,44,8.8,velocity,center_uy,-0.44424545764923096 +illusion_0.75L,ppo,44,8.8,velocity,lower_ux,0.7103788256645203 +illusion_0.75L,ppo,44,8.8,velocity,lower_uy,-0.16213807463645935 +illusion_0.75L,ppo,45,9.0,velocity,upper_ux,1.2918236255645752 +illusion_0.75L,ppo,45,9.0,velocity,upper_uy,-0.22306141257286072 +illusion_0.75L,ppo,45,9.0,velocity,center_ux,0.9400948286056519 +illusion_0.75L,ppo,45,9.0,velocity,center_uy,-0.3114742040634155 +illusion_0.75L,ppo,45,9.0,velocity,lower_ux,0.7033116817474365 +illusion_0.75L,ppo,45,9.0,velocity,lower_uy,-0.08829081803560257 +illusion_0.75L,ppo,46,9.2,velocity,upper_ux,1.3279870748519897 +illusion_0.75L,ppo,46,9.2,velocity,upper_uy,-0.18565574288368225 +illusion_0.75L,ppo,46,9.2,velocity,center_ux,0.9197437167167664 +illusion_0.75L,ppo,46,9.2,velocity,center_uy,-0.13920678198337555 +illusion_0.75L,ppo,46,9.2,velocity,lower_ux,0.7123916149139404 +illusion_0.75L,ppo,46,9.2,velocity,lower_uy,-0.01895119994878769 +illusion_0.75L,ppo,47,9.4,velocity,upper_ux,1.35196852684021 +illusion_0.75L,ppo,47,9.4,velocity,upper_uy,-0.13220320641994476 +illusion_0.75L,ppo,47,9.4,velocity,center_ux,0.9024459719657898 +illusion_0.75L,ppo,47,9.4,velocity,center_uy,0.053824201226234436 +illusion_0.75L,ppo,47,9.4,velocity,lower_ux,0.7384300231933594 +illusion_0.75L,ppo,47,9.4,velocity,lower_uy,0.0374620147049427 +illusion_0.75L,ppo,48,9.6,velocity,upper_ux,1.3552676439285278 +illusion_0.75L,ppo,48,9.6,velocity,upper_uy,-0.06272803992033005 +illusion_0.75L,ppo,48,9.6,velocity,center_ux,0.8943482041358948 +illusion_0.75L,ppo,48,9.6,velocity,center_uy,0.2386857569217682 +illusion_0.75L,ppo,48,9.6,velocity,lower_ux,0.7772074937820435 +illusion_0.75L,ppo,48,9.6,velocity,lower_uy,0.07764725387096405 +illusion_0.75L,ppo,49,9.8,velocity,upper_ux,1.331593632698059 +illusion_0.75L,ppo,49,9.8,velocity,upper_uy,0.016500011086463928 +illusion_0.75L,ppo,49,9.8,velocity,center_ux,0.8991646766662598 +illusion_0.75L,ppo,49,9.8,velocity,center_uy,0.3816705048084259 +illusion_0.75L,ppo,49,9.8,velocity,lower_ux,0.8206098675727844 +illusion_0.75L,ppo,49,9.8,velocity,lower_uy,0.10559923201799393 +illusion_0.75L,ppo,50,10.0,velocity,upper_ux,1.2822691202163696 +illusion_0.75L,ppo,50,10.0,velocity,upper_uy,0.09272614121437073 +illusion_0.75L,ppo,50,10.0,velocity,center_ux,0.9175313711166382 +illusion_0.75L,ppo,50,10.0,velocity,center_uy,0.4564133584499359 +illusion_0.75L,ppo,50,10.0,velocity,lower_ux,0.8619757294654846 +illusion_0.75L,ppo,50,10.0,velocity,lower_uy,0.1277051717042923 +illusion_0.75L,ppo,51,10.2,velocity,upper_ux,1.2169111967086792 +illusion_0.75L,ppo,51,10.2,velocity,upper_uy,0.15191254019737244 +illusion_0.75L,ppo,51,10.2,velocity,center_ux,0.9456800222396851 +illusion_0.75L,ppo,51,10.2,velocity,center_uy,0.46442875266075134 +illusion_0.75L,ppo,51,10.2,velocity,lower_ux,0.8989958167076111 +illusion_0.75L,ppo,51,10.2,velocity,lower_uy,0.14698868989944458 +illusion_0.75L,ppo,52,10.4,velocity,upper_ux,1.1487367153167725 +illusion_0.75L,ppo,52,10.4,velocity,upper_uy,0.1859380006790161 +illusion_0.75L,ppo,52,10.4,velocity,center_ux,0.9767659902572632 +illusion_0.75L,ppo,52,10.4,velocity,center_uy,0.4372205436229706 +illusion_0.75L,ppo,52,10.4,velocity,lower_ux,0.9324029684066772 +illusion_0.75L,ppo,52,10.4,velocity,lower_uy,0.16311126947402954 +illusion_0.75L,ppo,53,10.6,velocity,upper_ux,1.0879244804382324 +illusion_0.75L,ppo,53,10.6,velocity,upper_uy,0.19518853724002838 +illusion_0.75L,ppo,53,10.6,velocity,center_ux,1.0049115419387817 +illusion_0.75L,ppo,53,10.6,velocity,center_uy,0.40575477480888367 +illusion_0.75L,ppo,53,10.6,velocity,lower_ux,0.9629060626029968 +illusion_0.75L,ppo,53,10.6,velocity,lower_uy,0.17545074224472046 +illusion_0.75L,ppo,54,10.8,velocity,upper_ux,1.0392380952835083 +illusion_0.75L,ppo,54,10.8,velocity,upper_uy,0.1858455240726471 +illusion_0.75L,ppo,54,10.8,velocity,center_ux,1.0281788110733032 +illusion_0.75L,ppo,54,10.8,velocity,center_uy,0.38058212399482727 +illusion_0.75L,ppo,54,10.8,velocity,lower_ux,0.990834653377533 +illusion_0.75L,ppo,54,10.8,velocity,lower_uy,0.18420249223709106 +illusion_0.75L,ppo,55,11.0,velocity,upper_ux,1.0032074451446533 +illusion_0.75L,ppo,55,11.0,velocity,upper_uy,0.16522160172462463 +illusion_0.75L,ppo,55,11.0,velocity,center_ux,1.0468088388442993 +illusion_0.75L,ppo,55,11.0,velocity,center_uy,0.3602481782436371 +illusion_0.75L,ppo,55,11.0,velocity,lower_ux,1.0164462327957153 +illusion_0.75L,ppo,55,11.0,velocity,lower_uy,0.19000352919101715 +illusion_0.75L,ppo,56,11.2,velocity,upper_ux,0.9784905314445496 +illusion_0.75L,ppo,56,11.2,velocity,upper_uy,0.13918693363666534 +illusion_0.75L,ppo,56,11.2,velocity,center_ux,1.0610511302947998 +illusion_0.75L,ppo,56,11.2,velocity,center_uy,0.3416690528392792 +illusion_0.75L,ppo,56,11.2,velocity,lower_ux,1.0400700569152832 +illusion_0.75L,ppo,56,11.2,velocity,lower_uy,0.19339504837989807 +illusion_0.75L,ppo,57,11.4,velocity,upper_ux,0.9631834626197815 +illusion_0.75L,ppo,57,11.4,velocity,upper_uy,0.11156541109085083 +illusion_0.75L,ppo,57,11.4,velocity,center_ux,1.0703250169754028 +illusion_0.75L,ppo,57,11.4,velocity,center_uy,0.3223346471786499 +illusion_0.75L,ppo,57,11.4,velocity,lower_ux,1.0618330240249634 +illusion_0.75L,ppo,57,11.4,velocity,lower_uy,0.19486349821090698 +illusion_0.75L,ppo,58,11.6,velocity,upper_ux,0.955452024936676 +illusion_0.75L,ppo,58,11.6,velocity,upper_uy,0.08479902893304825 +illusion_0.75L,ppo,58,11.6,velocity,center_ux,1.0735453367233276 +illusion_0.75L,ppo,58,11.6,velocity,center_uy,0.299913227558136 +illusion_0.75L,ppo,58,11.6,velocity,lower_ux,1.081925630569458 +illusion_0.75L,ppo,58,11.6,velocity,lower_uy,0.19464895129203796 +illusion_0.75L,ppo,59,11.8,velocity,upper_ux,0.9537338018417358 +illusion_0.75L,ppo,59,11.8,velocity,upper_uy,0.06004621833562851 +illusion_0.75L,ppo,59,11.8,velocity,center_ux,1.0695620775222778 +illusion_0.75L,ppo,59,11.8,velocity,center_uy,0.27212682366371155 +illusion_0.75L,ppo,59,11.8,velocity,lower_ux,1.1008062362670898 +illusion_0.75L,ppo,59,11.8,velocity,lower_uy,0.19307468831539154 +illusion_0.75L,ppo,60,12.0,velocity,upper_ux,0.9560677409172058 +illusion_0.75L,ppo,60,12.0,velocity,upper_uy,0.03778061270713806 +illusion_0.75L,ppo,60,12.0,velocity,center_ux,1.056671142578125 +illusion_0.75L,ppo,60,12.0,velocity,center_uy,0.23697322607040405 +illusion_0.75L,ppo,60,12.0,velocity,lower_ux,1.1185203790664673 +illusion_0.75L,ppo,60,12.0,velocity,lower_uy,0.19017687439918518 +illusion_0.75L,ppo,61,12.2,velocity,upper_ux,0.9607502818107605 +illusion_0.75L,ppo,61,12.2,velocity,upper_uy,0.01776619628071785 +illusion_0.75L,ppo,61,12.2,velocity,center_ux,1.033510446548462 +illusion_0.75L,ppo,61,12.2,velocity,center_uy,0.19320796430110931 +illusion_0.75L,ppo,61,12.2,velocity,lower_ux,1.1351395845413208 +illusion_0.75L,ppo,61,12.2,velocity,lower_uy,0.186106875538826 +illusion_0.75L,ppo,62,12.4,velocity,upper_ux,0.9663093686103821 +illusion_0.75L,ppo,62,12.4,velocity,upper_uy,-0.0003275216440670192 +illusion_0.75L,ppo,62,12.4,velocity,center_ux,0.9994198679924011 +illusion_0.75L,ppo,62,12.4,velocity,center_uy,0.14090481400489807 +illusion_0.75L,ppo,62,12.4,velocity,lower_ux,1.150517463684082 +illusion_0.75L,ppo,62,12.4,velocity,lower_uy,0.1808493733406067 +illusion_0.75L,ppo,63,12.6,velocity,upper_ux,0.9721210598945618 +illusion_0.75L,ppo,63,12.6,velocity,upper_uy,-0.01695660874247551 +illusion_0.75L,ppo,63,12.6,velocity,center_ux,0.9558591246604919 +illusion_0.75L,ppo,63,12.6,velocity,center_uy,0.08202490210533142 +illusion_0.75L,ppo,63,12.6,velocity,lower_ux,1.1648125648498535 +illusion_0.75L,ppo,63,12.6,velocity,lower_uy,0.1745181530714035 +illusion_0.75L,ppo,64,12.8,velocity,upper_ux,0.9776079654693604 +illusion_0.75L,ppo,64,12.8,velocity,upper_uy,-0.03247342258691788 +illusion_0.75L,ppo,64,12.8,velocity,center_ux,0.9062950611114502 +illusion_0.75L,ppo,64,12.8,velocity,center_uy,0.020599357783794403 +illusion_0.75L,ppo,64,12.8,velocity,lower_ux,1.1777538061141968 +illusion_0.75L,ppo,64,12.8,velocity,lower_uy,0.16713514924049377 +illusion_0.75L,ppo,65,13.0,velocity,upper_ux,0.9826722145080566 +illusion_0.75L,ppo,65,13.0,velocity,upper_uy,-0.04716956242918968 +illusion_0.75L,ppo,65,13.0,velocity,center_ux,0.8567517995834351 +illusion_0.75L,ppo,65,13.0,velocity,center_uy,-0.03783675283193588 +illusion_0.75L,ppo,65,13.0,velocity,lower_ux,1.189176321029663 +illusion_0.75L,ppo,65,13.0,velocity,lower_uy,0.15864306688308716 +illusion_0.75L,ppo,66,13.2,velocity,upper_ux,0.9873700141906738 +illusion_0.75L,ppo,66,13.2,velocity,upper_uy,-0.061312202364206314 +illusion_0.75L,ppo,66,13.2,velocity,center_ux,0.8143013715744019 +illusion_0.75L,ppo,66,13.2,velocity,center_uy,-0.08765390515327454 +illusion_0.75L,ppo,66,13.2,velocity,lower_ux,1.198889136314392 +illusion_0.75L,ppo,66,13.2,velocity,lower_uy,0.1490718573331833 +illusion_0.75L,ppo,67,13.4,velocity,upper_ux,0.992021918296814 +illusion_0.75L,ppo,67,13.4,velocity,upper_uy,-0.0750136449933052 +illusion_0.75L,ppo,67,13.4,velocity,center_ux,0.7850693464279175 +illusion_0.75L,ppo,67,13.4,velocity,center_uy,-0.12505652010440826 +illusion_0.75L,ppo,67,13.4,velocity,lower_ux,1.2068442106246948 +illusion_0.75L,ppo,67,13.4,velocity,lower_uy,0.13834169507026672 +illusion_0.75L,ppo,68,13.6,velocity,upper_ux,0.9966521263122559 +illusion_0.75L,ppo,68,13.6,velocity,upper_uy,-0.08849786967039108 +illusion_0.75L,ppo,68,13.6,velocity,center_ux,0.7717406749725342 +illusion_0.75L,ppo,68,13.6,velocity,center_uy,-0.14924974739551544 +illusion_0.75L,ppo,68,13.6,velocity,lower_ux,1.2126437425613403 +illusion_0.75L,ppo,68,13.6,velocity,lower_uy,0.1264842301607132 +illusion_0.75L,ppo,69,13.8,velocity,upper_ux,1.0014622211456299 +illusion_0.75L,ppo,69,13.8,velocity,upper_uy,-0.10186349600553513 +illusion_0.75L,ppo,69,13.8,velocity,center_ux,0.7734598517417908 +illusion_0.75L,ppo,69,13.8,velocity,center_uy,-0.1623140573501587 +illusion_0.75L,ppo,69,13.8,velocity,lower_ux,1.2160263061523438 +illusion_0.75L,ppo,69,13.8,velocity,lower_uy,0.11337936669588089 +illusion_0.75L,ppo,70,14.0,velocity,upper_ux,1.0067877769470215 +illusion_0.75L,ppo,70,14.0,velocity,upper_uy,-0.1153365969657898 +illusion_0.75L,ppo,70,14.0,velocity,center_ux,0.7866711616516113 +illusion_0.75L,ppo,70,14.0,velocity,center_uy,-0.1679898202419281 +illusion_0.75L,ppo,70,14.0,velocity,lower_ux,1.2168549299240112 +illusion_0.75L,ppo,70,14.0,velocity,lower_uy,0.09905029088258743 +illusion_0.75L,ppo,71,14.2,velocity,upper_ux,1.0128254890441895 +illusion_0.75L,ppo,71,14.2,velocity,upper_uy,-0.12896686792373657 +illusion_0.75L,ppo,71,14.2,velocity,center_ux,0.806369960308075 +illusion_0.75L,ppo,71,14.2,velocity,center_uy,-0.17034725844860077 +illusion_0.75L,ppo,71,14.2,velocity,lower_ux,1.214829683303833 +illusion_0.75L,ppo,71,14.2,velocity,lower_uy,0.08342652022838593 +illusion_0.75L,ppo,72,14.4,velocity,upper_ux,1.0196175575256348 +illusion_0.75L,ppo,72,14.4,velocity,upper_uy,-0.14282971620559692 +illusion_0.75L,ppo,72,14.4,velocity,center_ux,0.8274946808815002 +illusion_0.75L,ppo,72,14.4,velocity,center_uy,-0.17293131351470947 +illusion_0.75L,ppo,72,14.4,velocity,lower_ux,1.2095283269882202 +illusion_0.75L,ppo,72,14.4,velocity,lower_uy,0.06656069308519363 +illusion_0.75L,ppo,73,14.6,velocity,upper_ux,1.0272572040557861 +illusion_0.75L,ppo,73,14.6,velocity,upper_uy,-0.1569414734840393 +illusion_0.75L,ppo,73,14.6,velocity,center_ux,0.8460187315940857 +illusion_0.75L,ppo,73,14.6,velocity,center_uy,-0.17840275168418884 +illusion_0.75L,ppo,73,14.6,velocity,lower_ux,1.2005940675735474 +illusion_0.75L,ppo,73,14.6,velocity,lower_uy,0.04851454123854637 +illusion_0.75L,ppo,74,14.8,velocity,upper_ux,1.0359604358673096 +illusion_0.75L,ppo,74,14.8,velocity,upper_uy,-0.17131389677524567 +illusion_0.75L,ppo,74,14.8,velocity,center_ux,0.8595556616783142 +illusion_0.75L,ppo,74,14.8,velocity,center_uy,-0.18840762972831726 +illusion_0.75L,ppo,74,14.8,velocity,lower_ux,1.1878910064697266 +illusion_0.75L,ppo,74,14.8,velocity,lower_uy,0.029396548867225647 +illusion_0.75L,ppo,75,15.0,velocity,upper_ux,1.0457072257995605 +illusion_0.75L,ppo,75,15.0,velocity,upper_uy,-0.1859559267759323 +illusion_0.75L,ppo,75,15.0,velocity,center_ux,0.8671237826347351 +illusion_0.75L,ppo,75,15.0,velocity,center_uy,-0.20344135165214539 +illusion_0.75L,ppo,75,15.0,velocity,lower_ux,1.171218752861023 +illusion_0.75L,ppo,75,15.0,velocity,lower_uy,0.009525250643491745 +illusion_0.75L,ppo,76,15.2,velocity,upper_ux,1.05657160282135 +illusion_0.75L,ppo,76,15.2,velocity,upper_uy,-0.2007734179496765 +illusion_0.75L,ppo,76,15.2,velocity,center_ux,0.8692085146903992 +illusion_0.75L,ppo,76,15.2,velocity,center_uy,-0.222922682762146 +illusion_0.75L,ppo,76,15.2,velocity,lower_ux,1.1507076025009155 +illusion_0.75L,ppo,76,15.2,velocity,lower_uy,-0.01062699593603611 +illusion_0.75L,ppo,77,15.4,velocity,upper_ux,1.068619966506958 +illusion_0.75L,ppo,77,15.4,velocity,upper_uy,-0.21577602624893188 +illusion_0.75L,ppo,77,15.4,velocity,center_ux,0.8669775128364563 +illusion_0.75L,ppo,77,15.4,velocity,center_uy,-0.24548301100730896 +illusion_0.75L,ppo,77,15.4,velocity,lower_ux,1.1267879009246826 +illusion_0.75L,ppo,77,15.4,velocity,lower_uy,-0.030271433293819427 +illusion_0.75L,ppo,78,15.6,velocity,upper_ux,1.0821943283081055 +illusion_0.75L,ppo,78,15.6,velocity,upper_uy,-0.23090358078479767 +illusion_0.75L,ppo,78,15.6,velocity,center_ux,0.8618254065513611 +illusion_0.75L,ppo,78,15.6,velocity,center_uy,-0.26933419704437256 +illusion_0.75L,ppo,78,15.6,velocity,lower_ux,1.1005144119262695 +illusion_0.75L,ppo,78,15.6,velocity,lower_uy,-0.04855404794216156 +illusion_0.75L,ppo,79,15.8,velocity,upper_ux,1.097304105758667 +illusion_0.75L,ppo,79,15.8,velocity,upper_uy,-0.24623508751392365 +illusion_0.75L,ppo,79,15.8,velocity,center_ux,0.8541565537452698 +illusion_0.75L,ppo,79,15.8,velocity,center_uy,-0.2925538420677185 +illusion_0.75L,ppo,79,15.8,velocity,lower_ux,1.0729098320007324 +illusion_0.75L,ppo,79,15.8,velocity,lower_uy,-0.06442718207836151 +illusion_0.75L,ppo,80,16.0,velocity,upper_ux,1.1142818927764893 +illusion_0.75L,ppo,80,16.0,velocity,upper_uy,-0.2617303133010864 +illusion_0.75L,ppo,80,16.0,velocity,center_ux,0.8438480496406555 +illusion_0.75L,ppo,80,16.0,velocity,center_uy,-0.3130952715873718 +illusion_0.75L,ppo,80,16.0,velocity,lower_ux,1.0455113649368286 +illusion_0.75L,ppo,80,16.0,velocity,lower_uy,-0.07692209631204605 +illusion_0.75L,ppo,81,16.2,velocity,upper_ux,1.1335874795913696 +illusion_0.75L,ppo,81,16.2,velocity,upper_uy,-0.27741965651512146 +illusion_0.75L,ppo,81,16.2,velocity,center_ux,0.8300502896308899 +illusion_0.75L,ppo,81,16.2,velocity,center_uy,-0.3287052810192108 +illusion_0.75L,ppo,81,16.2,velocity,lower_ux,1.0199490785598755 +illusion_0.75L,ppo,81,16.2,velocity,lower_uy,-0.08517039567232132 +illusion_0.75L,ppo,82,16.4,velocity,upper_ux,1.155781865119934 +illusion_0.75L,ppo,82,16.4,velocity,upper_uy,-0.2932168245315552 +illusion_0.75L,ppo,82,16.4,velocity,center_ux,0.8114318251609802 +illusion_0.75L,ppo,82,16.4,velocity,center_uy,-0.3366561532020569 +illusion_0.75L,ppo,82,16.4,velocity,lower_ux,0.9976803660392761 +illusion_0.75L,ppo,82,16.4,velocity,lower_uy,-0.08870074898004532 +illusion_0.75L,ppo,83,16.6,velocity,upper_ux,1.1812225580215454 +illusion_0.75L,ppo,83,16.6,velocity,upper_uy,-0.3089762032032013 +illusion_0.75L,ppo,83,16.6,velocity,center_ux,0.7862981557846069 +illusion_0.75L,ppo,83,16.6,velocity,center_uy,-0.33342915773391724 +illusion_0.75L,ppo,83,16.6,velocity,lower_ux,0.9794670939445496 +illusion_0.75L,ppo,83,16.6,velocity,lower_uy,-0.08730261772871017 +illusion_0.75L,ppo,84,16.8,velocity,upper_ux,1.210381031036377 +illusion_0.75L,ppo,84,16.8,velocity,upper_uy,-0.3241439759731293 +illusion_0.75L,ppo,84,16.8,velocity,center_ux,0.7536112070083618 +illusion_0.75L,ppo,84,16.8,velocity,center_uy,-0.31467175483703613 +illusion_0.75L,ppo,84,16.8,velocity,lower_ux,0.9656423330307007 +illusion_0.75L,ppo,84,16.8,velocity,lower_uy,-0.08103904873132706 +illusion_0.75L,ppo,85,17.0,velocity,upper_ux,1.2433704137802124 +illusion_0.75L,ppo,85,17.0,velocity,upper_uy,-0.3374131917953491 +illusion_0.75L,ppo,85,17.0,velocity,center_ux,0.7134373188018799 +illusion_0.75L,ppo,85,17.0,velocity,center_uy,-0.27573108673095703 +illusion_0.75L,ppo,85,17.0,velocity,lower_ux,0.9558603763580322 +illusion_0.75L,ppo,85,17.0,velocity,lower_uy,-0.06998404860496521 +illusion_0.75L,ppo,86,17.2,velocity,upper_ux,1.2791390419006348 +illusion_0.75L,ppo,86,17.2,velocity,upper_uy,-0.34595146775245667 +illusion_0.75L,ppo,86,17.2,velocity,center_ux,0.6674016714096069 +illusion_0.75L,ppo,86,17.2,velocity,center_uy,-0.2129306197166443 +illusion_0.75L,ppo,86,17.2,velocity,lower_ux,0.9491652846336365 +illusion_0.75L,ppo,86,17.2,velocity,lower_uy,-0.05412151664495468 +illusion_0.75L,ppo,87,17.4,velocity,upper_ux,1.3142597675323486 +illusion_0.75L,ppo,87,17.4,velocity,upper_uy,-0.34414413571357727 +illusion_0.75L,ppo,87,17.4,velocity,center_ux,0.6189213395118713 +illusion_0.75L,ppo,87,17.4,velocity,center_uy,-0.1251576840877533 +illusion_0.75L,ppo,87,17.4,velocity,lower_ux,0.944383978843689 +illusion_0.75L,ppo,87,17.4,velocity,lower_uy,-0.033336613327264786 +illusion_0.75L,ppo,88,17.6,velocity,upper_ux,1.341769814491272 +illusion_0.75L,ppo,88,17.6,velocity,upper_uy,-0.3227364718914032 +illusion_0.75L,ppo,88,17.6,velocity,center_ux,0.5730135440826416 +illusion_0.75L,ppo,88,17.6,velocity,center_uy,-0.015206693671643734 +illusion_0.75L,ppo,88,17.6,velocity,lower_ux,0.9407612681388855 +illusion_0.75L,ppo,88,17.6,velocity,lower_uy,-0.007559787482023239 +illusion_0.75L,ppo,89,17.8,velocity,upper_ux,1.3517346382141113 +illusion_0.75L,ppo,89,17.8,velocity,upper_uy,-0.2699820399284363 +illusion_0.75L,ppo,89,17.8,velocity,center_ux,0.5357983708381653 +illusion_0.75L,ppo,89,17.8,velocity,center_uy,0.10959479957818985 +illusion_0.75L,ppo,89,17.8,velocity,lower_ux,0.938536524772644 +illusion_0.75L,ppo,89,17.8,velocity,lower_uy,0.02273157425224781 +illusion_0.75L,ppo,90,18.0,velocity,upper_ux,1.3345839977264404 +illusion_0.75L,ppo,90,18.0,velocity,upper_uy,-0.17734886705875397 +illusion_0.75L,ppo,90,18.0,velocity,center_ux,0.5134274363517761 +illusion_0.75L,ppo,90,18.0,velocity,center_uy,0.23730483651161194 +illusion_0.75L,ppo,90,18.0,velocity,lower_ux,0.9384568929672241 +illusion_0.75L,ppo,90,18.0,velocity,lower_uy,0.05652395263314247 +illusion_0.75L,ppo,91,18.2,velocity,upper_ux,1.2870632410049438 +illusion_0.75L,ppo,91,18.2,velocity,upper_uy,-0.04648173227906227 +illusion_0.75L,ppo,91,18.2,velocity,center_ux,0.5120842456817627 +illusion_0.75L,ppo,91,18.2,velocity,center_uy,0.3515678346157074 +illusion_0.75L,ppo,91,18.2,velocity,lower_ux,0.9416002035140991 +illusion_0.75L,ppo,91,18.2,velocity,lower_uy,0.09213133901357651 +illusion_0.75L,ppo,92,18.4,velocity,upper_ux,1.2145450115203857 +illusion_0.75L,ppo,92,18.4,velocity,upper_uy,0.10791891813278198 +illusion_0.75L,ppo,92,18.4,velocity,center_ux,0.5367523431777954 +illusion_0.75L,ppo,92,18.4,velocity,center_uy,0.43408656120300293 +illusion_0.75L,ppo,92,18.4,velocity,lower_ux,0.9488553404808044 +illusion_0.75L,ppo,92,18.4,velocity,lower_uy,0.12812918424606323 +illusion_0.75L,ppo,93,18.6,velocity,upper_ux,1.1277379989624023 +illusion_0.75L,ppo,93,18.6,velocity,upper_uy,0.2631436586380005 +illusion_0.75L,ppo,93,18.6,velocity,center_ux,0.586245596408844 +illusion_0.75L,ppo,93,18.6,velocity,center_uy,0.47405296564102173 +illusion_0.75L,ppo,93,18.6,velocity,lower_ux,0.9604946970939636 +illusion_0.75L,ppo,93,18.6,velocity,lower_uy,0.16336557269096375 +illusion_0.75L,ppo,94,18.8,velocity,upper_ux,1.0383375883102417 +illusion_0.75L,ppo,94,18.8,velocity,upper_uy,0.3948979675769806 +illusion_0.75L,ppo,94,18.8,velocity,center_ux,0.6482591032981873 +illusion_0.75L,ppo,94,18.8,velocity,center_uy,0.48036739230155945 +illusion_0.75L,ppo,94,18.8,velocity,lower_ux,0.9761937856674194 +illusion_0.75L,ppo,94,18.8,velocity,lower_uy,0.19745467603206635 +illusion_0.75L,ppo,95,19.0,velocity,upper_ux,0.9574686288833618 +illusion_0.75L,ppo,95,19.0,velocity,upper_uy,0.4829498529434204 +illusion_0.75L,ppo,95,19.0,velocity,center_ux,0.7052029967308044 +illusion_0.75L,ppo,95,19.0,velocity,center_uy,0.47681307792663574 +illusion_0.75L,ppo,95,19.0,velocity,lower_ux,0.9956720471382141 +illusion_0.75L,ppo,95,19.0,velocity,lower_uy,0.23017992079257965 +illusion_0.75L,ppo,96,19.2,velocity,upper_ux,0.894166111946106 +illusion_0.75L,ppo,96,19.2,velocity,upper_uy,0.5167533755302429 +illusion_0.75L,ppo,96,19.2,velocity,center_ux,0.7466206550598145 +illusion_0.75L,ppo,96,19.2,velocity,center_uy,0.4804176986217499 +illusion_0.75L,ppo,96,19.2,velocity,lower_ux,1.018746256828308 +illusion_0.75L,ppo,96,19.2,velocity,lower_uy,0.2615814805030823 +illusion_0.75L,ppo,97,19.4,velocity,upper_ux,0.8522549271583557 +illusion_0.75L,ppo,97,19.4,velocity,upper_uy,0.501207172870636 +illusion_0.75L,ppo,97,19.4,velocity,center_ux,0.7722781300544739 +illusion_0.75L,ppo,97,19.4,velocity,center_uy,0.49231964349746704 +illusion_0.75L,ppo,97,19.4,velocity,lower_ux,1.0453819036483765 +illusion_0.75L,ppo,97,19.4,velocity,lower_uy,0.29165735840797424 +illusion_0.75L,ppo,98,19.6,velocity,upper_ux,0.8280491828918457 +illusion_0.75L,ppo,98,19.6,velocity,upper_uy,0.4538954496383667 +illusion_0.75L,ppo,98,19.6,velocity,center_ux,0.7853420972824097 +illusion_0.75L,ppo,98,19.6,velocity,center_uy,0.506413459777832 +illusion_0.75L,ppo,98,19.6,velocity,lower_ux,1.075605034828186 +illusion_0.75L,ppo,98,19.6,velocity,lower_uy,0.32031527161598206 +illusion_0.75L,ppo,99,19.8,velocity,upper_ux,0.8133106827735901 +illusion_0.75L,ppo,99,19.8,velocity,upper_uy,0.3931683599948883 +illusion_0.75L,ppo,99,19.8,velocity,center_ux,0.7878791689872742 +illusion_0.75L,ppo,99,19.8,velocity,center_uy,0.5162035822868347 +illusion_0.75L,ppo,99,19.8,velocity,lower_ux,1.1096200942993164 +illusion_0.75L,ppo,99,19.8,velocity,lower_uy,0.3471725881099701 +illusion_0.75L,ppo,100,20.0,velocity,upper_ux,0.8008197546005249 +illusion_0.75L,ppo,100,20.0,velocity,upper_uy,0.32897594571113586 +illusion_0.75L,ppo,100,20.0,velocity,center_ux,0.7808522582054138 +illusion_0.75L,ppo,100,20.0,velocity,center_uy,0.5145315527915955 +illusion_0.75L,ppo,100,20.0,velocity,lower_ux,1.1475847959518433 +illusion_0.75L,ppo,100,20.0,velocity,lower_uy,0.3711179792881012 +illusion_0.75L,ppo,101,20.2,velocity,upper_ux,0.7872414588928223 +illusion_0.75L,ppo,101,20.2,velocity,upper_uy,0.2632367014884949 +illusion_0.75L,ppo,101,20.2,velocity,center_ux,0.7650871872901917 +illusion_0.75L,ppo,101,20.2,velocity,center_uy,0.49272647500038147 +illusion_0.75L,ppo,101,20.2,velocity,lower_ux,1.188858151435852 +illusion_0.75L,ppo,101,20.2,velocity,lower_uy,0.3899247348308563 +illusion_0.75L,ppo,102,20.4,velocity,upper_ux,0.7731626033782959 +illusion_0.75L,ppo,102,20.4,velocity,upper_uy,0.19525745511054993 +illusion_0.75L,ppo,102,20.4,velocity,center_ux,0.7422360777854919 +illusion_0.75L,ppo,102,20.4,velocity,center_uy,0.44220706820487976 +illusion_0.75L,ppo,102,20.4,velocity,lower_ux,1.2313324213027954 +illusion_0.75L,ppo,102,20.4,velocity,lower_uy,0.39914339780807495 +illusion_0.75L,ppo,103,20.6,velocity,upper_ux,0.7621546387672424 +illusion_0.75L,ppo,103,20.6,velocity,upper_uy,0.1258113831281662 +illusion_0.75L,ppo,103,20.6,velocity,center_ux,0.7154091596603394 +illusion_0.75L,ppo,103,20.6,velocity,center_uy,0.35760176181793213 +illusion_0.75L,ppo,103,20.6,velocity,lower_ux,1.2706859111785889 +illusion_0.75L,ppo,103,20.6,velocity,lower_uy,0.3909578025341034 +illusion_0.75L,ppo,104,20.8,velocity,upper_ux,0.758968710899353 +illusion_0.75L,ppo,104,20.8,velocity,upper_uy,0.058716148138046265 +illusion_0.75L,ppo,104,20.8,velocity,center_ux,0.6886465549468994 +illusion_0.75L,ppo,104,20.8,velocity,center_uy,0.23925036191940308 +illusion_0.75L,ppo,104,20.8,velocity,lower_ux,1.2993263006210327 +illusion_0.75L,ppo,104,20.8,velocity,lower_uy,0.3535315692424774 +illusion_0.75L,ppo,105,21.0,velocity,upper_ux,0.7672967314720154 +illusion_0.75L,ppo,105,21.0,velocity,upper_uy,-0.0007962200324982405 +illusion_0.75L,ppo,105,21.0,velocity,center_ux,0.6663482785224915 +illusion_0.75L,ppo,105,21.0,velocity,center_uy,0.09402456879615784 +illusion_0.75L,ppo,105,21.0,velocity,lower_ux,1.3081581592559814 +illusion_0.75L,ppo,105,21.0,velocity,lower_uy,0.27498579025268555 +illusion_0.75L,ppo,106,21.2,velocity,upper_ux,0.7874625325202942 +illusion_0.75L,ppo,106,21.2,velocity,upper_uy,-0.04980268329381943 +illusion_0.75L,ppo,106,21.2,velocity,center_ux,0.6526609659194946 +illusion_0.75L,ppo,106,21.2,velocity,center_uy,-0.06549035757780075 +illusion_0.75L,ppo,106,21.2,velocity,lower_ux,1.292311668395996 +illusion_0.75L,ppo,106,21.2,velocity,lower_uy,0.15345314145088196 +illusion_0.75L,ppo,107,21.4,velocity,upper_ux,0.8159176111221313 +illusion_0.75L,ppo,107,21.4,velocity,upper_uy,-0.09009670466184616 +illusion_0.75L,ppo,107,21.4,velocity,center_ux,0.6504513621330261 +illusion_0.75L,ppo,107,21.4,velocity,center_uy,-0.22343724966049194 +illusion_0.75L,ppo,107,21.4,velocity,lower_ux,1.2549632787704468 +illusion_0.75L,ppo,107,21.4,velocity,lower_uy,0.003423840506002307 +illusion_0.75L,ppo,108,21.6,velocity,upper_ux,0.8480793237686157 +illusion_0.75L,ppo,108,21.6,velocity,upper_uy,-0.12602762877941132 +illusion_0.75L,ppo,108,21.6,velocity,center_ux,0.6606696248054504 +illusion_0.75L,ppo,108,21.6,velocity,center_uy,-0.36358654499053955 +illusion_0.75L,ppo,108,21.6,velocity,lower_ux,1.2037794589996338 +illusion_0.75L,ppo,108,21.6,velocity,lower_uy,-0.15119820833206177 +illusion_0.75L,ppo,109,21.8,velocity,upper_ux,0.8814792633056641 +illusion_0.75L,ppo,109,21.8,velocity,upper_uy,-0.1601424217224121 +illusion_0.75L,ppo,109,21.8,velocity,center_ux,0.6827501654624939 +illusion_0.75L,ppo,109,21.8,velocity,center_uy,-0.47143858671188354 +illusion_0.75L,ppo,109,21.8,velocity,lower_ux,1.1455488204956055 +illusion_0.75L,ppo,109,21.8,velocity,lower_uy,-0.28841063380241394 +illusion_0.75L,ppo,110,22.0,velocity,upper_ux,0.9160235524177551 +illusion_0.75L,ppo,110,22.0,velocity,upper_uy,-0.19233456254005432 +illusion_0.75L,ppo,110,22.0,velocity,center_ux,0.7145987153053284 +illusion_0.75L,ppo,110,22.0,velocity,center_uy,-0.5391557812690735 +illusion_0.75L,ppo,110,22.0,velocity,lower_ux,1.0854196548461914 +illusion_0.75L,ppo,110,22.0,velocity,lower_uy,-0.39253032207489014 +illusion_0.75L,ppo,111,22.2,velocity,upper_ux,0.9525370597839355 +illusion_0.75L,ppo,111,22.2,velocity,upper_uy,-0.2216131091117859 +illusion_0.75L,ppo,111,22.2,velocity,center_ux,0.751244068145752 +illusion_0.75L,ppo,111,22.2,velocity,center_uy,-0.5739330649375916 +illusion_0.75L,ppo,111,22.2,velocity,lower_ux,1.0279141664505005 +illusion_0.75L,ppo,111,22.2,velocity,lower_uy,-0.4560289680957794 +illusion_0.75L,ppo,112,22.4,velocity,upper_ux,0.9915196299552917 +illusion_0.75L,ppo,112,22.4,velocity,upper_uy,-0.24745751917362213 +illusion_0.75L,ppo,112,22.4,velocity,center_ux,0.7857153415679932 +illusion_0.75L,ppo,112,22.4,velocity,center_uy,-0.5942575931549072 +illusion_0.75L,ppo,112,22.4,velocity,lower_ux,0.9760236144065857 +illusion_0.75L,ppo,112,22.4,velocity,lower_uy,-0.48100894689559937 +illusion_0.75L,ppo,113,22.6,velocity,upper_ux,1.0334571599960327 +illusion_0.75L,ppo,113,22.6,velocity,upper_uy,-0.26958051323890686 +illusion_0.75L,ppo,113,22.6,velocity,center_ux,0.813378095626831 +illusion_0.75L,ppo,113,22.6,velocity,center_uy,-0.6139659285545349 +illusion_0.75L,ppo,113,22.6,velocity,lower_ux,0.9303684830665588 +illusion_0.75L,ppo,113,22.6,velocity,lower_uy,-0.4773765206336975 +illusion_0.75L,ppo,114,22.8,velocity,upper_ux,1.0792226791381836 +illusion_0.75L,ppo,114,22.8,velocity,upper_uy,-0.28757157921791077 +illusion_0.75L,ppo,114,22.8,velocity,center_ux,0.8329403400421143 +illusion_0.75L,ppo,114,22.8,velocity,center_uy,-0.6355637311935425 +illusion_0.75L,ppo,114,22.8,velocity,lower_ux,0.8895478844642639 +illusion_0.75L,ppo,114,22.8,velocity,lower_uy,-0.4564169943332672 +illusion_0.75L,ppo,115,23.0,velocity,upper_ux,1.1297060251235962 +illusion_0.75L,ppo,115,23.0,velocity,upper_uy,-0.30036187171936035 +illusion_0.75L,ppo,115,23.0,velocity,center_ux,0.8438698053359985 +illusion_0.75L,ppo,115,23.0,velocity,center_uy,-0.6532644033432007 +illusion_0.75L,ppo,115,23.0,velocity,lower_ux,0.8514420986175537 +illusion_0.75L,ppo,115,23.0,velocity,lower_uy,-0.42492052912712097 +illusion_0.75L,ppo,116,23.2,velocity,upper_ux,1.1853532791137695 +illusion_0.75L,ppo,116,23.2,velocity,upper_uy,-0.30559203028678894 +illusion_0.75L,ppo,116,23.2,velocity,center_ux,0.845553994178772 +illusion_0.75L,ppo,116,23.2,velocity,center_uy,-0.6541597843170166 +illusion_0.75L,ppo,116,23.2,velocity,lower_ux,0.8148887753486633 +illusion_0.75L,ppo,116,23.2,velocity,lower_uy,-0.38397786021232605 +illusion_0.75L,ppo,117,23.4,velocity,upper_ux,1.2449973821640015 +illusion_0.75L,ppo,117,23.4,velocity,upper_uy,-0.29814785718917847 +illusion_0.75L,ppo,117,23.4,velocity,center_ux,0.8391168713569641 +illusion_0.75L,ppo,117,23.4,velocity,center_uy,-0.6182502508163452 +illusion_0.75L,ppo,117,23.4,velocity,lower_ux,0.7805889248847961 +illusion_0.75L,ppo,117,23.4,velocity,lower_uy,-0.33163487911224365 +illusion_0.75L,ppo,118,23.6,velocity,upper_ux,1.3030949831008911 +illusion_0.75L,ppo,118,23.6,velocity,upper_uy,-0.268473744392395 +illusion_0.75L,ppo,118,23.6,velocity,center_ux,0.8294602036476135 +illusion_0.75L,ppo,118,23.6,velocity,center_uy,-0.5251471996307373 +illusion_0.75L,ppo,118,23.6,velocity,lower_ux,0.7509245872497559 +illusion_0.75L,ppo,118,23.6,velocity,lower_uy,-0.2661797106266022 +illusion_0.75L,ppo,119,23.8,velocity,upper_ux,1.3478349447250366 +illusion_0.75L,ppo,119,23.8,velocity,upper_uy,-0.2053748071193695 +illusion_0.75L,ppo,119,23.8,velocity,center_ux,0.8239235877990723 +illusion_0.75L,ppo,119,23.8,velocity,center_uy,-0.3685074746608734 +illusion_0.75L,ppo,119,23.8,velocity,lower_ux,0.7291847467422485 +illusion_0.75L,ppo,119,23.8,velocity,lower_uy,-0.1884424388408661 +illusion_0.75L,ppo,120,24.0,velocity,upper_ux,1.3667542934417725 +illusion_0.75L,ppo,120,24.0,velocity,upper_uy,-0.10741476714611053 +illusion_0.75L,ppo,120,24.0,velocity,center_ux,0.8282716274261475 +illusion_0.75L,ppo,120,24.0,velocity,center_uy,-0.16444779932498932 +illusion_0.75L,ppo,120,24.0,velocity,lower_ux,0.7190898060798645 +illusion_0.75L,ppo,120,24.0,velocity,lower_uy,-0.1030983179807663 +illusion_0.75L,ppo,121,24.2,velocity,upper_ux,1.3562852144241333 +illusion_0.75L,ppo,121,24.2,velocity,upper_uy,0.008562508039176464 +illusion_0.75L,ppo,121,24.2,velocity,center_ux,0.8438235521316528 +illusion_0.75L,ppo,121,24.2,velocity,center_uy,0.05546627566218376 +illusion_0.75L,ppo,121,24.2,velocity,lower_ux,0.7239100933074951 +illusion_0.75L,ppo,121,24.2,velocity,lower_uy,-0.01855483092367649 +illusion_0.75L,ppo,122,24.4,velocity,upper_ux,1.3229565620422363 +illusion_0.75L,ppo,122,24.4,velocity,upper_uy,0.11718259006738663 +illusion_0.75L,ppo,122,24.4,velocity,center_ux,0.8682477474212646 +illusion_0.75L,ppo,122,24.4,velocity,center_uy,0.2579086422920227 +illusion_0.75L,ppo,122,24.4,velocity,lower_ux,0.7452433705329895 +illusion_0.75L,ppo,122,24.4,velocity,lower_uy,0.05501846224069595 +illusion_0.75L,ppo,123,24.6,velocity,upper_ux,1.2761989831924438 +illusion_0.75L,ppo,123,24.6,velocity,upper_uy,0.1995684951543808 +illusion_0.75L,ppo,123,24.6,velocity,center_ux,0.8969262838363647 +illusion_0.75L,ppo,123,24.6,velocity,center_uy,0.4159194529056549 +illusion_0.75L,ppo,123,24.6,velocity,lower_ux,0.7805492281913757 +illusion_0.75L,ppo,123,24.6,velocity,lower_uy,0.11110201478004456 +illusion_0.75L,ppo,124,24.8,velocity,upper_ux,1.2243157625198364 +illusion_0.75L,ppo,124,24.8,velocity,upper_uy,0.2496056705713272 +illusion_0.75L,ppo,124,24.8,velocity,center_ux,0.9252351522445679 +illusion_0.75L,ppo,124,24.8,velocity,center_uy,0.5116445422172546 +illusion_0.75L,ppo,124,24.8,velocity,lower_ux,0.8235795497894287 +illusion_0.75L,ppo,124,24.8,velocity,lower_uy,0.15069960057735443 +illusion_0.75L,ppo,125,25.0,velocity,upper_ux,1.1731661558151245 +illusion_0.75L,ppo,125,25.0,velocity,upper_uy,0.271256685256958 +illusion_0.75L,ppo,125,25.0,velocity,center_ux,0.9503020644187927 +illusion_0.75L,ppo,125,25.0,velocity,center_uy,0.544083833694458 +illusion_0.75L,ppo,125,25.0,velocity,lower_ux,0.8681259751319885 +illusion_0.75L,ppo,125,25.0,velocity,lower_uy,0.17997965216636658 +illusion_0.75L,ppo,126,25.2,velocity,upper_ux,1.1253916025161743 +illusion_0.75L,ppo,126,25.2,velocity,upper_uy,0.2728877663612366 +illusion_0.75L,ppo,126,25.2,velocity,center_ux,0.971172034740448 +illusion_0.75L,ppo,126,25.2,velocity,center_uy,0.53529953956604 +illusion_0.75L,ppo,126,25.2,velocity,lower_ux,0.91114342212677 +illusion_0.75L,ppo,126,25.2,velocity,lower_uy,0.20357736945152283 +illusion_0.75L,ppo,127,25.4,velocity,upper_ux,1.0809221267700195 +illusion_0.75L,ppo,127,25.4,velocity,upper_uy,0.26154568791389465 +illusion_0.75L,ppo,127,25.4,velocity,center_ux,0.987623929977417 +illusion_0.75L,ppo,127,25.4,velocity,center_uy,0.5148811936378479 +illusion_0.75L,ppo,127,25.4,velocity,lower_ux,0.9521584510803223 +illusion_0.75L,ppo,127,25.4,velocity,lower_uy,0.2230495661497116 +illusion_0.75L,ppo,128,25.6,velocity,upper_ux,1.0388503074645996 +illusion_0.75L,ppo,128,25.6,velocity,upper_uy,0.24098652601242065 +illusion_0.75L,ppo,128,25.6,velocity,center_ux,0.9996744394302368 +illusion_0.75L,ppo,128,25.6,velocity,center_uy,0.4988643527030945 +illusion_0.75L,ppo,128,25.6,velocity,lower_ux,0.9916711449623108 +illusion_0.75L,ppo,128,25.6,velocity,lower_uy,0.23875583708286285 +illusion_0.75L,ppo,129,25.8,velocity,upper_ux,0.9988322257995605 +illusion_0.75L,ppo,129,25.8,velocity,upper_uy,0.21233944594860077 +illusion_0.75L,ppo,129,25.8,velocity,center_ux,1.007103681564331 +illusion_0.75L,ppo,129,25.8,velocity,center_uy,0.488570898771286 +illusion_0.75L,ppo,129,25.8,velocity,lower_ux,1.0302926301956177 +illusion_0.75L,ppo,129,25.8,velocity,lower_uy,0.25117599964141846 +illusion_0.75L,ppo,130,26.0,velocity,upper_ux,0.961780846118927 +illusion_0.75L,ppo,130,26.0,velocity,upper_uy,0.17590926587581635 +illusion_0.75L,ppo,130,26.0,velocity,center_ux,1.0088156461715698 +illusion_0.75L,ppo,130,26.0,velocity,center_uy,0.47871387004852295 +illusion_0.75L,ppo,130,26.0,velocity,lower_ux,1.0686583518981934 +illusion_0.75L,ppo,130,26.0,velocity,lower_uy,0.2607128918170929 +illusion_0.75L,ppo,131,26.2,velocity,upper_ux,0.9298122525215149 +illusion_0.75L,ppo,131,26.2,velocity,upper_uy,0.13271062076091766 +illusion_0.75L,ppo,131,26.2,velocity,center_ux,1.0025320053100586 +illusion_0.75L,ppo,131,26.2,velocity,center_uy,0.46087077260017395 +illusion_0.75L,ppo,131,26.2,velocity,lower_ux,1.1074209213256836 +illusion_0.75L,ppo,131,26.2,velocity,lower_uy,0.2673797309398651 +illusion_0.75L,ppo,132,26.4,velocity,upper_ux,0.9055535793304443 +illusion_0.75L,ppo,132,26.4,velocity,upper_uy,0.08504275232553482 +illusion_0.75L,ppo,132,26.4,velocity,center_ux,0.9853526949882507 +illusion_0.75L,ppo,132,26.4,velocity,center_uy,0.4238748848438263 +illusion_0.75L,ppo,132,26.4,velocity,lower_ux,1.1471631526947021 +illusion_0.75L,ppo,132,26.4,velocity,lower_uy,0.2707262635231018 +illusion_0.75L,ppo,133,26.6,velocity,upper_ux,0.8913021683692932 +illusion_0.75L,ppo,133,26.6,velocity,upper_uy,0.036248330026865005 +illusion_0.75L,ppo,133,26.6,velocity,center_ux,0.9556817412376404 +illusion_0.75L,ppo,133,26.6,velocity,center_uy,0.3554857671260834 +illusion_0.75L,ppo,133,26.6,velocity,lower_ux,1.1883529424667358 +illusion_0.75L,ppo,133,26.6,velocity,lower_uy,0.26934128999710083 +illusion_0.75L,ppo,134,26.8,velocity,upper_ux,0.8874486684799194 +illusion_0.75L,ppo,134,26.8,velocity,upper_uy,-0.010637853294610977 +illusion_0.75L,ppo,134,26.8,velocity,center_ux,0.914971113204956 +illusion_0.75L,ppo,134,26.8,velocity,center_uy,0.24746233224868774 +illusion_0.75L,ppo,134,26.8,velocity,lower_ux,1.2300598621368408 +illusion_0.75L,ppo,134,26.8,velocity,lower_uy,0.2603851556777954 +illusion_0.75L,ppo,135,27.0,velocity,upper_ux,0.8926403522491455 +illusion_0.75L,ppo,135,27.0,velocity,upper_uy,-0.05382505804300308 +illusion_0.75L,ppo,135,27.0,velocity,center_ux,0.8694487810134888 +illusion_0.75L,ppo,135,27.0,velocity,center_uy,0.1027771532535553 +illusion_0.75L,ppo,135,27.0,velocity,lower_ux,1.2687150239944458 +illusion_0.75L,ppo,135,27.0,velocity,lower_uy,0.23840735852718353 +illusion_0.75L,ppo,136,27.2,velocity,upper_ux,0.9046581983566284 +illusion_0.75L,ppo,136,27.2,velocity,upper_uy,-0.09305419772863388 +illusion_0.75L,ppo,136,27.2,velocity,center_ux,0.8287769556045532 +illusion_0.75L,ppo,136,27.2,velocity,center_uy,-0.06041581183671951 +illusion_0.75L,ppo,136,27.2,velocity,lower_ux,1.2961822748184204 +illusion_0.75L,ppo,136,27.2,velocity,lower_uy,0.19525998830795288 +illusion_0.75L,ppo,137,27.4,velocity,upper_ux,0.9216006994247437 +illusion_0.75L,ppo,137,27.4,velocity,upper_uy,-0.12876532971858978 +illusion_0.75L,ppo,137,27.4,velocity,center_ux,0.8025842905044556 +illusion_0.75L,ppo,137,27.4,velocity,center_uy,-0.21321284770965576 +illusion_0.75L,ppo,137,27.4,velocity,lower_ux,1.300550103187561 +illusion_0.75L,ppo,137,27.4,velocity,lower_uy,0.12375543266534805 +illusion_0.75L,ppo,138,27.6,velocity,upper_ux,0.9419849514961243 +illusion_0.75L,ppo,138,27.6,velocity,upper_uy,-0.1614723950624466 +illusion_0.75L,ppo,138,27.6,velocity,center_ux,0.7959343791007996 +illusion_0.75L,ppo,138,27.6,velocity,center_uy,-0.3288428485393524 +illusion_0.75L,ppo,138,27.6,velocity,lower_ux,1.2726666927337646 +illusion_0.75L,ppo,138,27.6,velocity,lower_uy,0.0264861062169075 +illusion_0.75L,ppo,139,27.8,velocity,upper_ux,0.9651284217834473 +illusion_0.75L,ppo,139,27.8,velocity,upper_uy,-0.19157418608665466 +illusion_0.75L,ppo,139,27.8,velocity,center_ux,0.8067036271095276 +illusion_0.75L,ppo,139,27.8,velocity,center_uy,-0.39788612723350525 +illusion_0.75L,ppo,139,27.8,velocity,lower_ux,1.2153480052947998 +illusion_0.75L,ppo,139,27.8,velocity,lower_uy,-0.07945248484611511 +illusion_0.75L,ppo,140,28.0,velocity,upper_ux,0.9906637072563171 +illusion_0.75L,ppo,140,28.0,velocity,upper_uy,-0.2194451093673706 +illusion_0.75L,ppo,140,28.0,velocity,center_ux,0.8262731432914734 +illusion_0.75L,ppo,140,28.0,velocity,center_uy,-0.43204307556152344 +illusion_0.75L,ppo,140,28.0,velocity,lower_ux,1.1425795555114746 +illusion_0.75L,ppo,140,28.0,velocity,lower_uy,-0.171098992228508 +illusion_0.75L,ppo,141,28.2,velocity,upper_ux,1.0185869932174683 +illusion_0.75L,ppo,141,28.2,velocity,upper_uy,-0.24549858272075653 +illusion_0.75L,ppo,141,28.2,velocity,center_ux,0.845452070236206 +illusion_0.75L,ppo,141,28.2,velocity,center_uy,-0.4507603049278259 +illusion_0.75L,ppo,141,28.2,velocity,lower_ux,1.0700243711471558 +illusion_0.75L,ppo,141,28.2,velocity,lower_uy,-0.23337127268314362 +illusion_0.75L,ppo,142,28.4,velocity,upper_ux,1.049066185951233 +illusion_0.75L,ppo,142,28.4,velocity,upper_uy,-0.27004292607307434 +illusion_0.75L,ppo,142,28.4,velocity,center_ux,0.8587875962257385 +illusion_0.75L,ppo,142,28.4,velocity,center_uy,-0.46698570251464844 +illusion_0.75L,ppo,142,28.4,velocity,lower_ux,1.0070306062698364 +illusion_0.75L,ppo,142,28.4,velocity,lower_uy,-0.26412278413772583 +illusion_0.75L,ppo,143,28.6,velocity,upper_ux,1.0826070308685303 +illusion_0.75L,ppo,143,28.6,velocity,upper_uy,-0.29333674907684326 +illusion_0.75L,ppo,143,28.6,velocity,center_ux,0.864300549030304 +illusion_0.75L,ppo,143,28.6,velocity,center_uy,-0.4846704602241516 +illusion_0.75L,ppo,143,28.6,velocity,lower_ux,0.9558313488960266 +illusion_0.75L,ppo,143,28.6,velocity,lower_uy,-0.2694295346736908 +illusion_0.75L,ppo,144,28.8,velocity,upper_ux,1.1202727556228638 +illusion_0.75L,ppo,144,28.8,velocity,upper_uy,-0.3154050409793854 +illusion_0.75L,ppo,144,28.8,velocity,center_ux,0.8612697720527649 +illusion_0.75L,ppo,144,28.8,velocity,center_uy,-0.5018987655639648 +illusion_0.75L,ppo,144,28.8,velocity,lower_ux,0.9147292971611023 +illusion_0.75L,ppo,144,28.8,velocity,lower_uy,-0.25701987743377686 +illusion_0.75L,ppo,145,29.0,velocity,upper_ux,1.1633293628692627 +illusion_0.75L,ppo,145,29.0,velocity,upper_uy,-0.3359638452529907 +illusion_0.75L,ppo,145,29.0,velocity,center_ux,0.8485091924667358 +illusion_0.75L,ppo,145,29.0,velocity,center_uy,-0.5124706029891968 +illusion_0.75L,ppo,145,29.0,velocity,lower_ux,0.8810572624206543 +illusion_0.75L,ppo,145,29.0,velocity,lower_uy,-0.2323099970817566 +illusion_0.75L,ppo,146,29.2,velocity,upper_ux,1.2131327390670776 +illusion_0.75L,ppo,146,29.2,velocity,upper_uy,-0.3534259796142578 +illusion_0.75L,ppo,146,29.2,velocity,center_ux,0.8247612714767456 +illusion_0.75L,ppo,146,29.2,velocity,center_uy,-0.5057721734046936 +illusion_0.75L,ppo,146,29.2,velocity,lower_ux,0.8533540964126587 +illusion_0.75L,ppo,146,29.2,velocity,lower_uy,-0.19819116592407227 +illusion_0.75L,ppo,147,29.4,velocity,upper_ux,1.2699005603790283 +illusion_0.75L,ppo,147,29.4,velocity,upper_uy,-0.3626708686351776 +illusion_0.75L,ppo,147,29.4,velocity,center_ux,0.7906354665756226 +illusion_0.75L,ppo,147,29.4,velocity,center_uy,-0.4673718512058258 +illusion_0.75L,ppo,147,29.4,velocity,lower_ux,0.8321182727813721 +illusion_0.75L,ppo,147,29.4,velocity,lower_uy,-0.15632468461990356 +illusion_0.75L,ppo,148,29.6,velocity,upper_ux,1.3287125825881958 +illusion_0.75L,ppo,148,29.6,velocity,upper_uy,-0.35012558102607727 +illusion_0.75L,ppo,148,29.6,velocity,center_ux,0.75081467628479 +illusion_0.75L,ppo,148,29.6,velocity,center_uy,-0.38350149989128113 +illusion_0.75L,ppo,148,29.6,velocity,lower_ux,0.8192503452301025 +illusion_0.75L,ppo,148,29.6,velocity,lower_uy,-0.10886023193597794 +illusion_0.75L,ppo,149,29.8,velocity,upper_ux,1.3754478693008423 +illusion_0.75L,ppo,149,29.8,velocity,upper_uy,-0.2935085892677307 +illusion_0.75L,ppo,149,29.8,velocity,center_ux,0.7137274146080017 +illusion_0.75L,ppo,149,29.8,velocity,center_uy,-0.2499092072248459 +illusion_0.75L,ppo,149,29.8,velocity,lower_ux,0.8165169358253479 +illusion_0.75L,ppo,149,29.8,velocity,lower_uy,-0.05890681594610214 +illusion_0.75L,ppo,150,30.0,velocity,upper_ux,1.3939694166183472 +illusion_0.75L,ppo,150,30.0,velocity,upper_uy,-0.17972974479198456 +illusion_0.75L,ppo,150,30.0,velocity,center_ux,0.6883090734481812 +illusion_0.75L,ppo,150,30.0,velocity,center_uy,-0.07787472754716873 +illusion_0.75L,ppo,150,30.0,velocity,lower_ux,0.8243694305419922 +illusion_0.75L,ppo,150,30.0,velocity,lower_uy,-0.009789452888071537 +illusion_0.75L,ppo,151,30.2,velocity,upper_ux,1.3803170919418335 +illusion_0.75L,ppo,151,30.2,velocity,upper_uy,-0.025703055784106255 +illusion_0.75L,ppo,151,30.2,velocity,center_ux,0.6798057556152344 +illusion_0.75L,ppo,151,30.2,velocity,center_uy,0.10948856174945831 +illusion_0.75L,ppo,151,30.2,velocity,lower_ux,0.8409280180931091 +illusion_0.75L,ppo,151,30.2,velocity,lower_uy,0.036572400480508804 +illusion_0.75L,ppo,152,30.4,velocity,upper_ux,1.3424721956253052 +illusion_0.75L,ppo,152,30.4,velocity,upper_uy,0.13318587839603424 +illusion_0.75L,ppo,152,30.4,velocity,center_ux,0.6890602707862854 +illusion_0.75L,ppo,152,30.4,velocity,center_uy,0.28593066334724426 +illusion_0.75L,ppo,152,30.4,velocity,lower_ux,0.8631172180175781 +illusion_0.75L,ppo,152,30.4,velocity,lower_uy,0.08007580041885376 +illusion_0.75L,ppo,153,30.6,velocity,upper_ux,1.2892882823944092 +illusion_0.75L,ppo,153,30.6,velocity,upper_uy,0.2669815123081207 +illusion_0.75L,ppo,153,30.6,velocity,center_ux,0.7138093709945679 +illusion_0.75L,ppo,153,30.6,velocity,center_uy,0.42766666412353516 +illusion_0.75L,ppo,153,30.6,velocity,lower_ux,0.8883914351463318 +illusion_0.75L,ppo,153,30.6,velocity,lower_uy,0.12101991474628448 +illusion_0.75L,ppo,154,30.8,velocity,upper_ux,1.2280826568603516 +illusion_0.75L,ppo,154,30.8,velocity,upper_uy,0.3587644100189209 +illusion_0.75L,ppo,154,30.8,velocity,center_ux,0.7503446936607361 +illusion_0.75L,ppo,154,30.8,velocity,center_uy,0.517514705657959 +illusion_0.75L,ppo,154,30.8,velocity,lower_ux,0.9158791899681091 +illusion_0.75L,ppo,154,30.8,velocity,lower_uy,0.15899235010147095 +illusion_0.75L,ppo,155,31.0,velocity,upper_ux,1.1657805442810059 +illusion_0.75L,ppo,155,31.0,velocity,upper_uy,0.4053964614868164 +illusion_0.75L,ppo,155,31.0,velocity,center_ux,0.7928169965744019 +illusion_0.75L,ppo,155,31.0,velocity,center_uy,0.5552220344543457 +illusion_0.75L,ppo,155,31.0,velocity,lower_ux,0.9455654621124268 +illusion_0.75L,ppo,155,31.0,velocity,lower_uy,0.1932266652584076 +illusion_0.75L,ppo,156,31.2,velocity,upper_ux,1.107588291168213 +illusion_0.75L,ppo,156,31.2,velocity,upper_uy,0.4154534637928009 +illusion_0.75L,ppo,156,31.2,velocity,center_ux,0.8333663940429688 +illusion_0.75L,ppo,156,31.2,velocity,center_uy,0.5616633296012878 +illusion_0.75L,ppo,156,31.2,velocity,lower_ux,0.9774096608161926 +illusion_0.75L,ppo,156,31.2,velocity,lower_uy,0.22357577085494995 +illusion_0.75L,ppo,157,31.4,velocity,upper_ux,1.055264949798584 +illusion_0.75L,ppo,157,31.4,velocity,upper_uy,0.40224629640579224 +illusion_0.75L,ppo,157,31.4,velocity,center_ux,0.8658871650695801 +illusion_0.75L,ppo,157,31.4,velocity,center_uy,0.5605802536010742 +illusion_0.75L,ppo,157,31.4,velocity,lower_ux,1.0112218856811523 +illusion_0.75L,ppo,157,31.4,velocity,lower_uy,0.25032225251197815 +illusion_0.75L,ppo,158,31.6,velocity,upper_ux,1.0079641342163086 +illusion_0.75L,ppo,158,31.6,velocity,upper_uy,0.37571650743484497 +illusion_0.75L,ppo,158,31.6,velocity,center_ux,0.8886811137199402 +illusion_0.75L,ppo,158,31.6,velocity,center_uy,0.5617027878761292 +illusion_0.75L,ppo,158,31.6,velocity,lower_ux,1.0472549200057983 +illusion_0.75L,ppo,158,31.6,velocity,lower_uy,0.27392682433128357 +illusion_0.75L,ppo,159,31.8,velocity,upper_ux,0.9640734195709229 +illusion_0.75L,ppo,159,31.8,velocity,upper_uy,0.33969029784202576 +illusion_0.75L,ppo,159,31.8,velocity,center_ux,0.901894211769104 +illusion_0.75L,ppo,159,31.8,velocity,center_uy,0.5631920695304871 +illusion_0.75L,ppo,159,31.8,velocity,lower_ux,1.0860490798950195 +illusion_0.75L,ppo,159,31.8,velocity,lower_uy,0.29463374614715576 +illusion_0.75L,ppo,160,32.0,velocity,upper_ux,0.9228067994117737 +illusion_0.75L,ppo,160,32.0,velocity,upper_uy,0.29381993412971497 +illusion_0.75L,ppo,160,32.0,velocity,center_ux,0.9049860239028931 +illusion_0.75L,ppo,160,32.0,velocity,center_uy,0.557737410068512 +illusion_0.75L,ppo,160,32.0,velocity,lower_ux,1.1282069683074951 +illusion_0.75L,ppo,160,32.0,velocity,lower_uy,0.3123377561569214 +illusion_0.75L,ppo,161,32.2,velocity,upper_ux,0.8851620554924011 +illusion_0.75L,ppo,161,32.2,velocity,upper_uy,0.23706987500190735 +illusion_0.75L,ppo,161,32.2,velocity,center_ux,0.8968788981437683 +illusion_0.75L,ppo,161,32.2,velocity,center_uy,0.5338259339332581 +illusion_0.75L,ppo,161,32.2,velocity,lower_ux,1.1743148565292358 +illusion_0.75L,ppo,161,32.2,velocity,lower_uy,0.3259308338165283 +illusion_0.75L,ppo,162,32.4,velocity,upper_ux,0.8538461327552795 +illusion_0.75L,ppo,162,32.4,velocity,upper_uy,0.17033615708351135 +illusion_0.75L,ppo,162,32.4,velocity,center_ux,0.8774473667144775 +illusion_0.75L,ppo,162,32.4,velocity,center_uy,0.47686153650283813 +illusion_0.75L,ppo,162,32.4,velocity,lower_ux,1.2239923477172852 +illusion_0.75L,ppo,162,32.4,velocity,lower_uy,0.3319944739341736 +illusion_0.75L,ppo,163,32.6,velocity,upper_ux,0.8326637744903564 +illusion_0.75L,ppo,163,32.6,velocity,upper_uy,0.09771604835987091 +illusion_0.75L,ppo,163,32.6,velocity,center_ux,0.8495259284973145 +illusion_0.75L,ppo,163,32.6,velocity,center_uy,0.37420299649238586 +illusion_0.75L,ppo,163,32.6,velocity,lower_ux,1.273705244064331 +illusion_0.75L,ppo,163,32.6,velocity,lower_uy,0.3223564624786377 +illusion_0.75L,ppo,164,32.8,velocity,upper_ux,0.8249244093894958 +illusion_0.75L,ppo,164,32.8,velocity,upper_uy,0.025957856327295303 +illusion_0.75L,ppo,164,32.8,velocity,center_ux,0.8192681074142456 +illusion_0.75L,ppo,164,32.8,velocity,center_uy,0.22354644536972046 +illusion_0.75L,ppo,164,32.8,velocity,lower_ux,1.313639521598816 +illusion_0.75L,ppo,164,32.8,velocity,lower_uy,0.28241419792175293 +illusion_0.75L,ppo,165,33.0,velocity,upper_ux,0.8316653966903687 +illusion_0.75L,ppo,165,33.0,velocity,upper_uy,-0.03834947571158409 +illusion_0.75L,ppo,165,33.0,velocity,center_ux,0.7941787242889404 +illusion_0.75L,ppo,165,33.0,velocity,center_uy,0.03820930793881416 +illusion_0.75L,ppo,165,33.0,velocity,lower_ux,1.3292186260223389 +illusion_0.75L,ppo,165,33.0,velocity,lower_uy,0.1978074312210083 +illusion_0.75L,ppo,166,33.2,velocity,upper_ux,0.850647509098053 +illusion_0.75L,ppo,166,33.2,velocity,upper_uy,-0.09203996509313583 +illusion_0.75L,ppo,166,33.2,velocity,center_ux,0.7800444960594177 +illusion_0.75L,ppo,166,33.2,velocity,center_uy,-0.15591508150100708 +illusion_0.75L,ppo,166,33.2,velocity,lower_ux,1.3112983703613281 +illusion_0.75L,ppo,166,33.2,velocity,lower_uy,0.07099104672670364 +illusion_0.75L,ppo,167,33.4,velocity,upper_ux,0.8776348233222961 +illusion_0.75L,ppo,167,33.4,velocity,upper_uy,-0.1361134946346283 +illusion_0.75L,ppo,167,33.4,velocity,center_ux,0.7796976566314697 +illusion_0.75L,ppo,167,33.4,velocity,center_uy,-0.3279768228530884 +illusion_0.75L,ppo,167,33.4,velocity,lower_ux,1.2644882202148438 +illusion_0.75L,ppo,167,33.4,velocity,lower_uy,-0.0727115347981453 +illusion_0.75L,ppo,168,33.6,velocity,upper_ux,0.9088903665542603 +illusion_0.75L,ppo,168,33.6,velocity,upper_uy,-0.17324557900428772 +illusion_0.75L,ppo,168,33.6,velocity,center_ux,0.7931495904922485 +illusion_0.75L,ppo,168,33.6,velocity,center_uy,-0.4516980051994324 +illusion_0.75L,ppo,168,33.6,velocity,lower_ux,1.2015763521194458 +illusion_0.75L,ppo,168,33.6,velocity,lower_uy,-0.20193064212799072 +illusion_0.75L,ppo,169,33.8,velocity,upper_ux,0.9426814317703247 +illusion_0.75L,ppo,169,33.8,velocity,upper_uy,-0.20541685819625854 +illusion_0.75L,ppo,169,33.8,velocity,center_ux,0.8170961737632751 +illusion_0.75L,ppo,169,33.8,velocity,center_uy,-0.5193099975585938 +illusion_0.75L,ppo,169,33.8,velocity,lower_ux,1.1345059871673584 +illusion_0.75L,ppo,169,33.8,velocity,lower_uy,-0.2966388463973999 +illusion_0.75L,ppo,170,34.0,velocity,upper_ux,0.9786519408226013 +illusion_0.75L,ppo,170,34.0,velocity,upper_uy,-0.23365512490272522 +illusion_0.75L,ppo,170,34.0,velocity,center_ux,0.8447410464286804 +illusion_0.75L,ppo,170,34.0,velocity,center_uy,-0.5473644137382507 +illusion_0.75L,ppo,170,34.0,velocity,lower_ux,1.0712227821350098 +illusion_0.75L,ppo,170,34.0,velocity,lower_uy,-0.3519388437271118 +illusion_0.75L,ppo,171,34.2,velocity,upper_ux,1.0169835090637207 +illusion_0.75L,ppo,171,34.2,velocity,upper_uy,-0.258470743894577 +illusion_0.75L,ppo,171,34.2,velocity,center_ux,0.8692013025283813 +illusion_0.75L,ppo,171,34.2,velocity,center_uy,-0.5607826113700867 +illusion_0.75L,ppo,171,34.2,velocity,lower_ux,1.0154081583023071 +illusion_0.75L,ppo,171,34.2,velocity,lower_uy,-0.3740755021572113 +illusion_0.75L,ppo,172,34.4,velocity,upper_ux,1.0582172870635986 +illusion_0.75L,ppo,172,34.4,velocity,upper_uy,-0.28015562891960144 +illusion_0.75L,ppo,172,34.4,velocity,center_ux,0.8866795301437378 +illusion_0.75L,ppo,172,34.4,velocity,center_uy,-0.5747028589248657 +illusion_0.75L,ppo,172,34.4,velocity,lower_ux,0.9669837951660156 +illusion_0.75L,ppo,172,34.4,velocity,lower_uy,-0.3732742965221405 +illusion_0.75L,ppo,173,34.6,velocity,upper_ux,1.1033138036727905 +illusion_0.75L,ppo,173,34.6,velocity,upper_uy,-0.2985336482524872 +illusion_0.75L,ppo,173,34.6,velocity,center_ux,0.8957127332687378 +illusion_0.75L,ppo,173,34.6,velocity,center_uy,-0.5922913551330566 +illusion_0.75L,ppo,173,34.6,velocity,lower_ux,0.9238650798797607 +illusion_0.75L,ppo,173,34.6,velocity,lower_uy,-0.35755598545074463 +illusion_0.75L,ppo,174,34.8,velocity,upper_ux,1.1534972190856934 +illusion_0.75L,ppo,174,34.8,velocity,upper_uy,-0.3128005266189575 +illusion_0.75L,ppo,174,34.8,velocity,center_ux,0.8950088620185852 +illusion_0.75L,ppo,174,34.8,velocity,center_uy,-0.6083035469055176 +illusion_0.75L,ppo,174,34.8,velocity,lower_ux,0.8839237093925476 +illusion_0.75L,ppo,174,34.8,velocity,lower_uy,-0.3301762640476227 +illusion_0.75L,ppo,175,35.0,velocity,upper_ux,1.209836721420288 +illusion_0.75L,ppo,175,35.0,velocity,upper_uy,-0.3206135630607605 +illusion_0.75L,ppo,175,35.0,velocity,center_ux,0.8832342028617859 +illusion_0.75L,ppo,175,35.0,velocity,center_uy,-0.608534574508667 +illusion_0.75L,ppo,175,35.0,velocity,lower_ux,0.8463413715362549 +illusion_0.75L,ppo,175,35.0,velocity,lower_uy,-0.29097288846969604 +illusion_0.75L,ppo,176,35.2,velocity,upper_ux,1.2715365886688232 +illusion_0.75L,ppo,176,35.2,velocity,upper_uy,-0.31601542234420776 +illusion_0.75L,ppo,176,35.2,velocity,center_ux,0.8614323139190674 +illusion_0.75L,ppo,176,35.2,velocity,center_uy,-0.5693955421447754 +illusion_0.75L,ppo,176,35.2,velocity,lower_ux,0.81209397315979 +illusion_0.75L,ppo,176,35.2,velocity,lower_uy,-0.2387492060661316 +illusion_0.75L,ppo,177,35.4,velocity,upper_ux,1.3319032192230225 +illusion_0.75L,ppo,177,35.4,velocity,upper_uy,-0.2859061360359192 +illusion_0.75L,ppo,177,35.4,velocity,center_ux,0.8359548449516296 +illusion_0.75L,ppo,177,35.4,velocity,center_uy,-0.46773430705070496 +illusion_0.75L,ppo,177,35.4,velocity,lower_ux,0.7840616703033447 +illusion_0.75L,ppo,177,35.4,velocity,lower_uy,-0.17385129630565643 +illusion_0.75L,ppo,178,35.6,velocity,upper_ux,1.3756728172302246 +illusion_0.75L,ppo,178,35.6,velocity,upper_uy,-0.2139897346496582 +illusion_0.75L,ppo,178,35.6,velocity,center_ux,0.8165282607078552 +illusion_0.75L,ppo,178,35.6,velocity,center_uy,-0.299506813287735 +illusion_0.75L,ppo,178,35.6,velocity,lower_ux,0.7663440704345703 +illusion_0.75L,ppo,178,35.6,velocity,lower_uy,-0.09981192648410797 +illusion_0.75L,ppo,179,35.8,velocity,upper_ux,1.3883253335952759 +illusion_0.75L,ppo,179,35.8,velocity,upper_uy,-0.09936226904392242 +illusion_0.75L,ppo,179,35.8,velocity,center_ux,0.8103398680686951 +illusion_0.75L,ppo,179,35.8,velocity,center_uy,-0.08714590221643448 +illusion_0.75L,ppo,179,35.8,velocity,lower_ux,0.7630900740623474 +illusion_0.75L,ppo,179,35.8,velocity,lower_uy,-0.024018974974751472 +illusion_0.75L,ppo,180,36.0,velocity,upper_ux,1.3692669868469238 +illusion_0.75L,ppo,180,36.0,velocity,upper_uy,0.0332392081618309 +illusion_0.75L,ppo,180,36.0,velocity,center_ux,0.8189482688903809 +illusion_0.75L,ppo,180,36.0,velocity,center_uy,0.13295987248420715 +illusion_0.75L,ppo,180,36.0,velocity,lower_ux,0.7765541076660156 +illusion_0.75L,ppo,180,36.0,velocity,lower_uy,0.04454069212079048 +illusion_0.75L,ppo,181,36.2,velocity,upper_ux,1.3284333944320679 +illusion_0.75L,ppo,181,36.2,velocity,upper_uy,0.15214753150939941 +illusion_0.75L,ppo,181,36.2,velocity,center_ux,0.8393584489822388 +illusion_0.75L,ppo,181,36.2,velocity,center_uy,0.3266898989677429 +illusion_0.75L,ppo,181,36.2,velocity,lower_ux,0.8046472668647766 +illusion_0.75L,ppo,181,36.2,velocity,lower_uy,0.1000487357378006 +illusion_0.75L,ppo,182,36.4,velocity,upper_ux,1.2762280702590942 +illusion_0.75L,ppo,182,36.4,velocity,upper_uy,0.23817451298236847 +illusion_0.75L,ppo,182,36.4,velocity,center_ux,0.8666344285011292 +illusion_0.75L,ppo,182,36.4,velocity,center_uy,0.4683937430381775 +illusion_0.75L,ppo,182,36.4,velocity,lower_ux,0.8413642644882202 +illusion_0.75L,ppo,182,36.4,velocity,lower_uy,0.1431073546409607 +illusion_0.75L,ppo,183,36.6,velocity,upper_ux,1.2206294536590576 +illusion_0.75L,ppo,183,36.6,velocity,upper_uy,0.2876646816730499 +illusion_0.75L,ppo,183,36.6,velocity,center_ux,0.8961026668548584 +illusion_0.75L,ppo,183,36.6,velocity,center_uy,0.5438826680183411 +illusion_0.75L,ppo,183,36.6,velocity,lower_ux,0.8807805776596069 +illusion_0.75L,ppo,183,36.6,velocity,lower_uy,0.1779467761516571 +illusion_0.75L,ppo,184,36.8,velocity,upper_ux,1.1669796705245972 +illusion_0.75L,ppo,184,36.8,velocity,upper_uy,0.30751192569732666 +illusion_0.75L,ppo,184,36.8,velocity,center_ux,0.92418372631073 +illusion_0.75L,ppo,184,36.8,velocity,center_uy,0.5613706111907959 +illusion_0.75L,ppo,184,36.8,velocity,lower_ux,0.920116126537323 +illusion_0.75L,ppo,184,36.8,velocity,lower_uy,0.2075166255235672 +illusion_0.75L,ppo,185,37.0,velocity,upper_ux,1.1173282861709595 +illusion_0.75L,ppo,185,37.0,velocity,upper_uy,0.3077848255634308 +illusion_0.75L,ppo,185,37.0,velocity,center_ux,0.948016881942749 +illusion_0.75L,ppo,185,37.0,velocity,center_uy,0.5503453612327576 +illusion_0.75L,ppo,185,37.0,velocity,lower_ux,0.9589117169380188 +illusion_0.75L,ppo,185,37.0,velocity,lower_uy,0.23274283111095428 +illusion_0.75L,ppo,186,37.2,velocity,upper_ux,1.0711642503738403 +illusion_0.75L,ppo,186,37.2,velocity,upper_uy,0.2960848808288574 +illusion_0.75L,ppo,186,37.2,velocity,center_ux,0.9659401774406433 +illusion_0.75L,ppo,186,37.2,velocity,center_uy,0.5368978977203369 +illusion_0.75L,ppo,186,37.2,velocity,lower_ux,0.9973814487457275 +illusion_0.75L,ppo,186,37.2,velocity,lower_uy,0.2540099024772644 +illusion_0.75L,ppo,187,37.4,velocity,upper_ux,1.0271245241165161 +illusion_0.75L,ppo,187,37.4,velocity,upper_uy,0.27554020285606384 +illusion_0.75L,ppo,187,37.4,velocity,center_ux,0.9775513410568237 +illusion_0.75L,ppo,187,37.4,velocity,center_uy,0.5296534895896912 +illusion_0.75L,ppo,187,37.4,velocity,lower_ux,1.0358614921569824 +illusion_0.75L,ppo,187,37.4,velocity,lower_uy,0.2719718813896179 +illusion_0.75L,ppo,188,37.6,velocity,upper_ux,0.9846578240394592 +illusion_0.75L,ppo,188,37.6,velocity,upper_uy,0.24628101289272308 +illusion_0.75L,ppo,188,37.6,velocity,center_ux,0.9826563000679016 +illusion_0.75L,ppo,188,37.6,velocity,center_uy,0.5261321067810059 +illusion_0.75L,ppo,188,37.6,velocity,lower_ux,1.075026512145996 +illusion_0.75L,ppo,188,37.6,velocity,lower_uy,0.2870974838733673 +illusion_0.75L,ppo,189,37.8,velocity,upper_ux,0.9445679187774658 +illusion_0.75L,ppo,189,37.8,velocity,upper_uy,0.20742817223072052 +illusion_0.75L,ppo,189,37.8,velocity,center_ux,0.9799488186836243 +illusion_0.75L,ppo,189,37.8,velocity,center_uy,0.5192212462425232 +illusion_0.75L,ppo,189,37.8,velocity,lower_ux,1.115718960762024 +illusion_0.75L,ppo,189,37.8,velocity,lower_uy,0.29960882663726807 +illusion_0.75L,ppo,190,38.0,velocity,upper_ux,0.9090763926506042 +illusion_0.75L,ppo,190,38.0,velocity,upper_uy,0.15920333564281464 +illusion_0.75L,ppo,190,38.0,velocity,center_ux,0.9670549631118774 +illusion_0.75L,ppo,190,38.0,velocity,center_uy,0.49805763363838196 +illusion_0.75L,ppo,190,38.0,velocity,lower_ux,1.1587965488433838 +illusion_0.75L,ppo,190,38.0,velocity,lower_uy,0.3090480864048004 +illusion_0.75L,ppo,191,38.2,velocity,upper_ux,0.8815392255783081 +illusion_0.75L,ppo,191,38.2,velocity,upper_uy,0.10389885306358337 +illusion_0.75L,ppo,191,38.2,velocity,center_ux,0.9421090483665466 +illusion_0.75L,ppo,191,38.2,velocity,center_uy,0.44828400015830994 +illusion_0.75L,ppo,191,38.2,velocity,lower_ux,1.2049274444580078 +illusion_0.75L,ppo,191,38.2,velocity,lower_uy,0.31385117769241333 +illusion_0.75L,ppo,192,38.4,velocity,upper_ux,0.8652834296226501 +illusion_0.75L,ppo,192,38.4,velocity,upper_uy,0.045848436653614044 +illusion_0.75L,ppo,192,38.4,velocity,center_ux,0.9061707258224487 +illusion_0.75L,ppo,192,38.4,velocity,center_uy,0.3558819591999054 +illusion_0.75L,ppo,192,38.4,velocity,lower_ux,1.253343105316162 +illusion_0.75L,ppo,192,38.4,velocity,lower_uy,0.30975010991096497 +illusion_0.75L,ppo,193,38.6,velocity,upper_ux,0.8618283867835999 +illusion_0.75L,ppo,193,38.6,velocity,upper_uy,-0.010104852728545666 +illusion_0.75L,ppo,193,38.6,velocity,center_ux,0.86474609375 +illusion_0.75L,ppo,193,38.6,velocity,center_uy,0.21574757993221283 +illusion_0.75L,ppo,193,38.6,velocity,lower_ux,1.2988052368164062 +illusion_0.75L,ppo,193,38.6,velocity,lower_uy,0.28737202286720276 +illusion_0.75L,ppo,194,38.8,velocity,upper_ux,0.8701056838035583 +illusion_0.75L,ppo,194,38.8,velocity,upper_uy,-0.06067145988345146 +illusion_0.75L,ppo,194,38.8,velocity,center_ux,0.8266422152519226 +illusion_0.75L,ppo,194,38.8,velocity,center_uy,0.03935029357671738 +illusion_0.75L,ppo,194,38.8,velocity,lower_ux,1.329023838043213 +illusion_0.75L,ppo,194,38.8,velocity,lower_uy,0.23222513496875763 +illusion_0.75L,ppo,195,39.0,velocity,upper_ux,0.887179434299469 +illusion_0.75L,ppo,195,39.0,velocity,upper_uy,-0.10502264648675919 +illusion_0.75L,ppo,195,39.0,velocity,center_ux,0.8003227114677429 +illusion_0.75L,ppo,195,39.0,velocity,center_uy,-0.14632827043533325 +illusion_0.75L,ppo,195,39.0,velocity,lower_ux,1.3286514282226562 +illusion_0.75L,ppo,195,39.0,velocity,lower_uy,0.13453638553619385 +illusion_0.75L,ppo,196,39.2,velocity,upper_ux,0.9099926948547363 +illusion_0.75L,ppo,196,39.2,velocity,upper_uy,-0.14402055740356445 +illusion_0.75L,ppo,196,39.2,velocity,center_ux,0.7911627888679504 +illusion_0.75L,ppo,196,39.2,velocity,center_uy,-0.30806344747543335 +illusion_0.75L,ppo,196,39.2,velocity,lower_ux,1.2919058799743652 +illusion_0.75L,ppo,196,39.2,velocity,lower_uy,0.004978563636541367 +illusion_0.75L,ppo,197,39.4,velocity,upper_ux,0.9364431500434875 +illusion_0.75L,ppo,197,39.4,velocity,upper_uy,-0.17872434854507446 +illusion_0.75L,ppo,197,39.4,velocity,center_ux,0.7999032735824585 +illusion_0.75L,ppo,197,39.4,velocity,center_uy,-0.4202583432197571 +illusion_0.75L,ppo,197,39.4,velocity,lower_ux,1.228691577911377 +illusion_0.75L,ppo,197,39.4,velocity,lower_uy,-0.12679287791252136 +illusion_0.75L,ppo,198,39.6,velocity,upper_ux,0.9655237793922424 +illusion_0.75L,ppo,198,39.6,velocity,upper_uy,-0.20993424952030182 +illusion_0.75L,ppo,198,39.6,velocity,center_ux,0.82147216796875 +illusion_0.75L,ppo,198,39.6,velocity,center_uy,-0.4795578718185425 +illusion_0.75L,ppo,198,39.6,velocity,lower_ux,1.1556873321533203 +illusion_0.75L,ppo,198,39.6,velocity,lower_uy,-0.23246130347251892 +illusion_0.75L,ppo,199,39.8,velocity,upper_ux,0.9970157742500305 +illusion_0.75L,ppo,199,39.8,velocity,upper_uy,-0.23819996416568756 +illusion_0.75L,ppo,199,39.8,velocity,center_ux,0.8468413352966309 +illusion_0.75L,ppo,199,39.8,velocity,center_uy,-0.5049594640731812 +illusion_0.75L,ppo,199,39.8,velocity,lower_ux,1.0858850479125977 +illusion_0.75L,ppo,199,39.8,velocity,lower_uy,-0.2995615303516388 +illusion_0.75L,ppo,200,40.0,velocity,upper_ux,1.0311123132705688 +illusion_0.75L,ppo,200,40.0,velocity,upper_uy,-0.2639656364917755 +illusion_0.75L,ppo,200,40.0,velocity,center_ux,0.868232250213623 +illusion_0.75L,ppo,200,40.0,velocity,center_uy,-0.5191912651062012 +illusion_0.75L,ppo,200,40.0,velocity,lower_ux,1.0254621505737305 +illusion_0.75L,ppo,200,40.0,velocity,lower_uy,-0.3306189477443695 +illusion_0.75L,ppo,201,40.2,velocity,upper_ux,1.0683112144470215 +illusion_0.75L,ppo,201,40.2,velocity,upper_uy,-0.2875099182128906 +illusion_0.75L,ppo,201,40.2,velocity,center_ux,0.8818925619125366 +illusion_0.75L,ppo,201,40.2,velocity,center_uy,-0.5344918966293335 +illusion_0.75L,ppo,201,40.2,velocity,lower_ux,0.9749704599380493 +illusion_0.75L,ppo,201,40.2,velocity,lower_uy,-0.33536458015441895 +illusion_0.75L,ppo,202,40.4,velocity,upper_ux,1.1095994710922241 +illusion_0.75L,ppo,202,40.4,velocity,upper_uy,-0.3088547885417938 +illusion_0.75L,ppo,202,40.4,velocity,center_ux,0.8865816593170166 +illusion_0.75L,ppo,202,40.4,velocity,center_uy,-0.5531651973724365 +illusion_0.75L,ppo,202,40.4,velocity,lower_ux,0.9320132732391357 +illusion_0.75L,ppo,202,40.4,velocity,lower_uy,-0.32316333055496216 +illusion_0.75L,ppo,203,40.6,velocity,upper_ux,1.1565035581588745 +illusion_0.75L,ppo,203,40.6,velocity,upper_uy,-0.32752448320388794 +illusion_0.75L,ppo,203,40.6,velocity,center_ux,0.8812941908836365 +illusion_0.75L,ppo,203,40.6,velocity,center_uy,-0.5711527466773987 +illusion_0.75L,ppo,203,40.6,velocity,lower_ux,0.8939042687416077 +illusion_0.75L,ppo,203,40.6,velocity,lower_uy,-0.2992667257785797 +illusion_0.75L,ppo,204,40.8,velocity,upper_ux,1.2106001377105713 +illusion_0.75L,ppo,204,40.8,velocity,upper_uy,-0.341740220785141 +illusion_0.75L,ppo,204,40.8,velocity,center_ux,0.8645510077476501 +illusion_0.75L,ppo,204,40.8,velocity,center_uy,-0.5776132941246033 +illusion_0.75L,ppo,204,40.8,velocity,lower_ux,0.8590916991233826 +illusion_0.75L,ppo,204,40.8,velocity,lower_uy,-0.26506125926971436 +illusion_0.75L,ppo,205,41.0,velocity,upper_ux,1.272202968597412 +illusion_0.75L,ppo,205,41.0,velocity,upper_uy,-0.34620827436447144 +illusion_0.75L,ppo,205,41.0,velocity,center_ux,0.8364354968070984 +illusion_0.75L,ppo,205,41.0,velocity,center_uy,-0.5534665584564209 +illusion_0.75L,ppo,205,41.0,velocity,lower_ux,0.8278648853302002 +illusion_0.75L,ppo,205,41.0,velocity,lower_uy,-0.22012750804424286 +illusion_0.75L,ppo,206,41.2,velocity,upper_ux,1.3362513780593872 +illusion_0.75L,ppo,206,41.2,velocity,upper_uy,-0.3275071084499359 +illusion_0.75L,ppo,206,41.2,velocity,center_ux,0.8018986582756042 +illusion_0.75L,ppo,206,41.2,velocity,center_uy,-0.47631508111953735 +illusion_0.75L,ppo,206,41.2,velocity,lower_ux,0.8023731112480164 +illusion_0.75L,ppo,206,41.2,velocity,lower_uy,-0.16471602022647858 +illusion_0.75L,ppo,207,41.4,velocity,upper_ux,1.3881289958953857 +illusion_0.75L,ppo,207,41.4,velocity,upper_uy,-0.26492005586624146 +illusion_0.75L,ppo,207,41.4,velocity,center_ux,0.7709518671035767 +illusion_0.75L,ppo,207,41.4,velocity,center_uy,-0.3353132903575897 +illusion_0.75L,ppo,207,41.4,velocity,lower_ux,0.786082923412323 +illusion_0.75L,ppo,207,41.4,velocity,lower_uy,-0.1013948917388916 +illusion_0.75L,ppo,208,41.6,velocity,upper_ux,1.4111055135726929 +illusion_0.75L,ppo,208,41.6,velocity,upper_uy,-0.15001754462718964 +illusion_0.75L,ppo,208,41.6,velocity,center_ux,0.7533518075942993 +illusion_0.75L,ppo,208,41.6,velocity,center_uy,-0.1431993693113327 +illusion_0.75L,ppo,208,41.6,velocity,lower_ux,0.782524824142456 +illusion_0.75L,ppo,208,41.6,velocity,lower_uy,-0.035664308816194534 +illusion_0.75L,ppo,209,41.8,velocity,upper_ux,1.4013781547546387 +illusion_0.75L,ppo,209,41.8,velocity,upper_uy,-0.004573244601488113 +illusion_0.75L,ppo,209,41.8,velocity,center_ux,0.7534500360488892 +illusion_0.75L,ppo,209,41.8,velocity,center_uy,0.0692216083407402 +illusion_0.75L,ppo,209,41.8,velocity,lower_ux,0.7934471964836121 +illusion_0.75L,ppo,209,41.8,velocity,lower_uy,0.025833740830421448 +illusion_0.75L,ppo,210,42.0,velocity,upper_ux,1.3667688369750977 +illusion_0.75L,ppo,210,42.0,velocity,upper_uy,0.13610690832138062 +illusion_0.75L,ppo,210,42.0,velocity,center_ux,0.7698014974594116 +illusion_0.75L,ppo,210,42.0,velocity,center_uy,0.2684616148471832 +illusion_0.75L,ppo,210,42.0,velocity,lower_ux,0.8169966340065002 +illusion_0.75L,ppo,210,42.0,velocity,lower_uy,0.0786622166633606 +illusion_0.75L,ppo,211,42.2,velocity,upper_ux,1.3164231777191162 +illusion_0.75L,ppo,211,42.2,velocity,upper_uy,0.24650926887989044 +illusion_0.75L,ppo,211,42.2,velocity,center_ux,0.7978747487068176 +illusion_0.75L,ppo,211,42.2,velocity,center_uy,0.4277983605861664 +illusion_0.75L,ppo,211,42.2,velocity,lower_ux,0.8483930230140686 +illusion_0.75L,ppo,211,42.2,velocity,lower_uy,0.12284155935049057 +illusion_0.75L,ppo,212,42.4,velocity,upper_ux,1.258197546005249 +illusion_0.75L,ppo,212,42.4,velocity,upper_uy,0.31668126583099365 +illusion_0.75L,ppo,212,42.4,velocity,center_ux,0.832436203956604 +illusion_0.75L,ppo,212,42.4,velocity,center_uy,0.5290176272392273 +illusion_0.75L,ppo,212,42.4,velocity,lower_ux,0.8829067945480347 +illusion_0.75L,ppo,212,42.4,velocity,lower_uy,0.1607416868209839 +illusion_0.75L,ppo,213,42.6,velocity,upper_ux,1.1990493535995483 +illusion_0.75L,ppo,213,42.6,velocity,upper_uy,0.3497774600982666 +illusion_0.75L,ppo,213,42.6,velocity,center_ux,0.8687400221824646 +illusion_0.75L,ppo,213,42.6,velocity,center_uy,0.5694109201431274 +illusion_0.75L,ppo,213,42.6,velocity,lower_ux,0.9183489084243774 +illusion_0.75L,ppo,213,42.6,velocity,lower_uy,0.1939406394958496 +illusion_0.75L,ppo,214,42.8,velocity,upper_ux,1.1434420347213745 +illusion_0.75L,ppo,214,42.8,velocity,upper_uy,0.3563864529132843 +illusion_0.75L,ppo,214,42.8,velocity,center_ux,0.9021432399749756 +illusion_0.75L,ppo,214,42.8,velocity,center_uy,0.5697497725486755 +illusion_0.75L,ppo,214,42.8,velocity,lower_ux,0.9543992877006531 +illusion_0.75L,ppo,214,42.8,velocity,lower_uy,0.22281287610530853 +illusion_0.75L,ppo,215,43.0,velocity,upper_ux,1.0924615859985352 +illusion_0.75L,ppo,215,43.0,velocity,upper_uy,0.34707000851631165 +illusion_0.75L,ppo,215,43.0,velocity,center_ux,0.9290976524353027 +illusion_0.75L,ppo,215,43.0,velocity,center_uy,0.5588135719299316 +illusion_0.75L,ppo,215,43.0,velocity,lower_ux,0.9911864995956421 +illusion_0.75L,ppo,215,43.0,velocity,lower_uy,0.24764814972877502 +illusion_0.75L,ppo,216,43.2,velocity,upper_ux,1.0449550151824951 +illusion_0.75L,ppo,216,43.2,velocity,upper_uy,0.32769840955734253 +illusion_0.75L,ppo,216,43.2,velocity,center_ux,0.9483307003974915 +illusion_0.75L,ppo,216,43.2,velocity,center_uy,0.5516647100448608 +illusion_0.75L,ppo,216,43.2,velocity,lower_ux,1.0288634300231934 +illusion_0.75L,ppo,216,43.2,velocity,lower_uy,0.26901835203170776 +illusion_0.75L,ppo,217,43.4,velocity,upper_ux,0.9996004700660706 +illusion_0.75L,ppo,217,43.4,velocity,upper_uy,0.29947033524513245 +illusion_0.75L,ppo,217,43.4,velocity,center_ux,0.9598758220672607 +illusion_0.75L,ppo,217,43.4,velocity,center_uy,0.5492108464241028 +illusion_0.75L,ppo,217,43.4,velocity,lower_ux,1.0678917169570923 +illusion_0.75L,ppo,217,43.4,velocity,lower_uy,0.2874305248260498 +illusion_0.75L,ppo,218,43.6,velocity,upper_ux,0.9561222791671753 +illusion_0.75L,ppo,218,43.6,velocity,upper_uy,0.2611508071422577 +illusion_0.75L,ppo,218,43.6,velocity,center_ux,0.9631156921386719 +illusion_0.75L,ppo,218,43.6,velocity,center_uy,0.5458407402038574 +illusion_0.75L,ppo,218,43.6,velocity,lower_ux,1.1089892387390137 +illusion_0.75L,ppo,218,43.6,velocity,lower_uy,0.3031842112541199 +illusion_0.75L,ppo,219,43.8,velocity,upper_ux,0.9157834053039551 +illusion_0.75L,ppo,219,43.8,velocity,upper_uy,0.21171264350414276 +illusion_0.75L,ppo,219,43.8,velocity,center_ux,0.9562508463859558 +illusion_0.75L,ppo,219,43.8,velocity,center_uy,0.5315518379211426 +illusion_0.75L,ppo,219,43.8,velocity,lower_ux,1.1529569625854492 +illusion_0.75L,ppo,219,43.8,velocity,lower_uy,0.3159416913986206 +illusion_0.75L,ppo,220,44.0,velocity,upper_ux,0.8814818859100342 +illusion_0.75L,ppo,220,44.0,velocity,upper_uy,0.15208178758621216 +illusion_0.75L,ppo,220,44.0,velocity,center_ux,0.9374703764915466 +illusion_0.75L,ppo,220,44.0,velocity,center_uy,0.4917687177658081 +illusion_0.75L,ppo,220,44.0,velocity,lower_ux,1.2003976106643677 +illusion_0.75L,ppo,220,44.0,velocity,lower_uy,0.3241448998451233 +illusion_0.75L,ppo,221,44.2,velocity,upper_ux,0.8571014404296875 +illusion_0.75L,ppo,221,44.2,velocity,upper_uy,0.0861748680472374 +illusion_0.75L,ppo,221,44.2,velocity,center_ux,0.9072239398956299 +illusion_0.75L,ppo,221,44.2,velocity,center_uy,0.4103917181491852 +illusion_0.75L,ppo,221,44.2,velocity,lower_ux,1.250408411026001 +illusion_0.75L,ppo,221,44.2,velocity,lower_uy,0.32325878739356995 +illusion_0.75L,ppo,222,44.4,velocity,upper_ux,0.846070408821106 +illusion_0.75L,ppo,222,44.4,velocity,upper_uy,0.020129848271608353 +illusion_0.75L,ppo,222,44.4,velocity,center_ux,0.870319664478302 +illusion_0.75L,ppo,222,44.4,velocity,center_uy,0.27829083800315857 +illusion_0.75L,ppo,222,44.4,velocity,lower_ux,1.2977054119110107 +illusion_0.75L,ppo,222,44.4,velocity,lower_uy,0.3030793368816376 +illusion_0.75L,ppo,223,44.6,velocity,upper_ux,0.8492639660835266 +illusion_0.75L,ppo,223,44.6,velocity,upper_uy,-0.040103763341903687 +illusion_0.75L,ppo,223,44.6,velocity,center_ux,0.8348958492279053 +illusion_0.75L,ppo,223,44.6,velocity,center_uy,0.10256875306367874 +illusion_0.75L,ppo,223,44.6,velocity,lower_ux,1.329576015472412 +illusion_0.75L,ppo,223,44.6,velocity,lower_uy,0.24750107526779175 +illusion_0.75L,ppo,224,44.8,velocity,upper_ux,0.8644940853118896 +illusion_0.75L,ppo,224,44.8,velocity,upper_uy,-0.09155149757862091 +illusion_0.75L,ppo,224,44.8,velocity,center_ux,0.809080183506012 +illusion_0.75L,ppo,224,44.8,velocity,center_uy,-0.09252171218395233 +illusion_0.75L,ppo,224,44.8,velocity,lower_ux,1.330586552619934 +illusion_0.75L,ppo,224,44.8,velocity,lower_uy,0.1457694172859192 +illusion_0.75L,ppo,225,45.0,velocity,upper_ux,0.8879104852676392 +illusion_0.75L,ppo,225,45.0,velocity,upper_uy,-0.13475623726844788 +illusion_0.75L,ppo,225,45.0,velocity,center_ux,0.7981640696525574 +illusion_0.75L,ppo,225,45.0,velocity,center_uy,-0.27359259128570557 +illusion_0.75L,ppo,225,45.0,velocity,lower_ux,1.295810580253601 +illusion_0.75L,ppo,225,45.0,velocity,lower_uy,0.009851236827671528 +illusion_0.75L,ppo,226,45.2,velocity,upper_ux,0.9161461591720581 +illusion_0.75L,ppo,226,45.2,velocity,upper_uy,-0.1717202067375183 +illusion_0.75L,ppo,226,45.2,velocity,center_ux,0.803832471370697 +illusion_0.75L,ppo,226,45.2,velocity,center_uy,-0.4098401963710785 +illusion_0.75L,ppo,226,45.2,velocity,lower_ux,1.2357432842254639 +illusion_0.75L,ppo,226,45.2,velocity,lower_uy,-0.1284324675798416 +illusion_0.75L,ppo,227,45.4,velocity,upper_ux,0.9472948312759399 +illusion_0.75L,ppo,227,45.4,velocity,upper_uy,-0.20412462949752808 +illusion_0.75L,ppo,227,45.4,velocity,center_ux,0.8232152462005615 +illusion_0.75L,ppo,227,45.4,velocity,center_uy,-0.4883137047290802 +illusion_0.75L,ppo,227,45.4,velocity,lower_ux,1.1660706996917725 +illusion_0.75L,ppo,227,45.4,velocity,lower_uy,-0.23985540866851807 +illusion_0.75L,ppo,228,45.6,velocity,upper_ux,0.9807778000831604 +illusion_0.75L,ppo,228,45.6,velocity,upper_uy,-0.23288722336292267 +illusion_0.75L,ppo,228,45.6,velocity,center_ux,0.8489726185798645 +illusion_0.75L,ppo,228,45.6,velocity,center_uy,-0.5222893953323364 +illusion_0.75L,ppo,228,45.6,velocity,lower_ux,1.0985021591186523 +illusion_0.75L,ppo,228,45.6,velocity,lower_uy,-0.3118174374103546 +illusion_0.75L,ppo,229,45.8,velocity,upper_ux,1.0166270732879639 +illusion_0.75L,ppo,229,45.8,velocity,upper_uy,-0.2586137056350708 +illusion_0.75L,ppo,229,45.8,velocity,center_ux,0.8729831576347351 +illusion_0.75L,ppo,229,45.8,velocity,center_uy,-0.5373251438140869 +illusion_0.75L,ppo,229,45.8,velocity,lower_ux,1.0388580560684204 +illusion_0.75L,ppo,229,45.8,velocity,lower_uy,-0.3468162417411804 +illusion_0.75L,ppo,230,46.0,velocity,upper_ux,1.0552884340286255 +illusion_0.75L,ppo,230,46.0,velocity,upper_uy,-0.28163209557533264 +illusion_0.75L,ppo,230,46.0,velocity,center_ux,0.8904720544815063 +illusion_0.75L,ppo,230,46.0,velocity,center_uy,-0.5511463284492493 +illusion_0.75L,ppo,230,46.0,velocity,lower_ux,0.9880712032318115 +illusion_0.75L,ppo,230,46.0,velocity,lower_uy,-0.3549037575721741 +illusion_0.75L,ppo,231,46.2,velocity,upper_ux,1.0975360870361328 +illusion_0.75L,ppo,231,46.2,velocity,upper_uy,-0.3019830286502838 +illusion_0.75L,ppo,231,46.2,velocity,center_ux,0.8996404409408569 +illusion_0.75L,ppo,231,46.2,velocity,center_uy,-0.5693569779396057 +illusion_0.75L,ppo,231,46.2,velocity,lower_ux,0.9440205097198486 +illusion_0.75L,ppo,231,46.2,velocity,lower_uy,-0.34590834379196167 +illusion_0.75L,ppo,232,46.4,velocity,upper_ux,1.144648551940918 +illusion_0.75L,ppo,232,46.4,velocity,upper_uy,-0.31917738914489746 +illusion_0.75L,ppo,232,46.4,velocity,center_ux,0.8994163274765015 +illusion_0.75L,ppo,232,46.4,velocity,center_uy,-0.5896999835968018 +illusion_0.75L,ppo,232,46.4,velocity,lower_ux,0.9040241837501526 +illusion_0.75L,ppo,232,46.4,velocity,lower_uy,-0.325368195772171 +illusion_0.75L,ppo,233,46.6,velocity,upper_ux,1.198155403137207 +illusion_0.75L,ppo,233,46.6,velocity,upper_uy,-0.3317109942436218 +illusion_0.75L,ppo,233,46.6,velocity,center_ux,0.8883016705513 +illusion_0.75L,ppo,233,46.6,velocity,center_uy,-0.6026925444602966 +illusion_0.75L,ppo,233,46.6,velocity,lower_ux,0.8664765954017639 +illusion_0.75L,ppo,233,46.6,velocity,lower_uy,-0.2944716215133667 +illusion_0.75L,ppo,234,46.8,velocity,upper_ux,1.2587482929229736 +illusion_0.75L,ppo,234,46.8,velocity,upper_uy,-0.33540961146354675 +illusion_0.75L,ppo,234,46.8,velocity,center_ux,0.8657539486885071 +illusion_0.75L,ppo,234,46.8,velocity,center_uy,-0.5891638398170471 +illusion_0.75L,ppo,234,46.8,velocity,lower_ux,0.8314653635025024 +illusion_0.75L,ppo,234,46.8,velocity,lower_uy,-0.252168744802475 +illusion_0.75L,ppo,235,47.0,velocity,upper_ux,1.3229070901870728 +illusion_0.75L,ppo,235,47.0,velocity,upper_uy,-0.31957656145095825 +illusion_0.75L,ppo,235,47.0,velocity,center_ux,0.8357251882553101 +illusion_0.75L,ppo,235,47.0,velocity,center_uy,-0.5233794450759888 +illusion_0.75L,ppo,235,47.0,velocity,lower_ux,0.8008934855461121 +illusion_0.75L,ppo,235,47.0,velocity,lower_uy,-0.19761782884597778 +illusion_0.75L,ppo,236,47.2,velocity,upper_ux,1.3781421184539795 +illusion_0.75L,ppo,236,47.2,velocity,upper_uy,-0.26574790477752686 +illusion_0.75L,ppo,236,47.2,velocity,center_ux,0.8078407049179077 +illusion_0.75L,ppo,236,47.2,velocity,center_uy,-0.38909852504730225 +illusion_0.75L,ppo,236,47.2,velocity,lower_ux,0.7782912254333496 +illusion_0.75L,ppo,236,47.2,velocity,lower_uy,-0.13217295706272125 +illusion_0.75L,ppo,237,47.4,velocity,upper_ux,1.4069952964782715 +illusion_0.75L,ppo,237,47.4,velocity,upper_uy,-0.16263718903064728 +illusion_0.75L,ppo,237,47.4,velocity,center_ux,0.7921322584152222 +illusion_0.75L,ppo,237,47.4,velocity,center_uy,-0.19590330123901367 +illusion_0.75L,ppo,237,47.4,velocity,lower_ux,0.7678463459014893 +illusion_0.75L,ppo,237,47.4,velocity,lower_uy,-0.06069859862327576 +illusion_0.75L,ppo,238,47.6,velocity,upper_ux,1.4024871587753296 +illusion_0.75L,ppo,238,47.6,velocity,upper_uy,-0.026706209406256676 +illusion_0.75L,ppo,238,47.6,velocity,center_ux,0.793133020401001 +illusion_0.75L,ppo,238,47.6,velocity,center_uy,0.024400105699896812 +illusion_0.75L,ppo,238,47.6,velocity,lower_ux,0.7728285789489746 +illusion_0.75L,ppo,238,47.6,velocity,lower_uy,0.00906379148364067 +illusion_0.75L,ppo,239,47.8,velocity,upper_ux,1.3715384006500244 +illusion_0.75L,ppo,239,47.8,velocity,upper_uy,0.10807041078805923 +illusion_0.75L,ppo,239,47.8,velocity,center_ux,0.8094595074653625 +illusion_0.75L,ppo,239,47.8,velocity,center_uy,0.23520700633525848 +illusion_0.75L,ppo,239,47.8,velocity,lower_ux,0.7934597134590149 +illusion_0.75L,ppo,239,47.8,velocity,lower_uy,0.06966140121221542 +illusion_0.75L,ppo,240,48.0,velocity,upper_ux,1.3241735696792603 +illusion_0.75L,ppo,240,48.0,velocity,upper_uy,0.21525651216506958 +illusion_0.75L,ppo,240,48.0,velocity,center_ux,0.8363755941390991 +illusion_0.75L,ppo,240,48.0,velocity,center_uy,0.4070836007595062 +illusion_0.75L,ppo,240,48.0,velocity,lower_ux,0.825605571269989 +illusion_0.75L,ppo,240,48.0,velocity,lower_uy,0.11838582158088684 +illusion_0.75L,ppo,241,48.2,velocity,upper_ux,1.2687923908233643 +illusion_0.75L,ppo,241,48.2,velocity,upper_uy,0.2845946252346039 +illusion_0.75L,ppo,241,48.2,velocity,center_ux,0.8684964776039124 +illusion_0.75L,ppo,241,48.2,velocity,center_uy,0.5198090076446533 +illusion_0.75L,ppo,241,48.2,velocity,lower_ux,0.8631555438041687 +illusion_0.75L,ppo,241,48.2,velocity,lower_uy,0.15757697820663452 +illusion_0.75L,ppo,242,48.4,velocity,upper_ux,1.2121111154556274 +illusion_0.75L,ppo,242,48.4,velocity,upper_uy,0.31899210810661316 +illusion_0.75L,ppo,242,48.4,velocity,center_ux,0.9011645317077637 +illusion_0.75L,ppo,242,48.4,velocity,center_uy,0.5675281286239624 +illusion_0.75L,ppo,242,48.4,velocity,lower_ux,0.9017592668533325 +illusion_0.75L,ppo,242,48.4,velocity,lower_uy,0.19063186645507812 +illusion_0.75L,ppo,243,48.6,velocity,upper_ux,1.1583269834518433 +illusion_0.75L,ppo,243,48.6,velocity,upper_uy,0.328421950340271 +illusion_0.75L,ppo,243,48.6,velocity,center_ux,0.9307583570480347 +illusion_0.75L,ppo,243,48.6,velocity,center_uy,0.5685924291610718 +illusion_0.75L,ppo,243,48.6,velocity,lower_ux,0.9400627613067627 +illusion_0.75L,ppo,243,48.6,velocity,lower_uy,0.21899423003196716 +illusion_0.75L,ppo,244,48.8,velocity,upper_ux,1.1084898710250854 +illusion_0.75L,ppo,244,48.8,velocity,upper_uy,0.3226413428783417 +illusion_0.75L,ppo,244,48.8,velocity,center_ux,0.9547102451324463 +illusion_0.75L,ppo,244,48.8,velocity,center_uy,0.5539486408233643 +illusion_0.75L,ppo,244,48.8,velocity,lower_ux,0.9781240224838257 +illusion_0.75L,ppo,244,48.8,velocity,lower_uy,0.24312756955623627 +illusion_0.75L,ppo,245,49.0,velocity,upper_ux,1.0615671873092651 +illusion_0.75L,ppo,245,49.0,velocity,upper_uy,0.30719637870788574 +illusion_0.75L,ppo,245,49.0,velocity,center_ux,0.9720169305801392 +illusion_0.75L,ppo,245,49.0,velocity,center_uy,0.5426828265190125 +illusion_0.75L,ppo,245,49.0,velocity,lower_ux,1.0162056684494019 +illusion_0.75L,ppo,245,49.0,velocity,lower_uy,0.26353296637535095 +illusion_0.75L,ppo,246,49.2,velocity,upper_ux,1.016301155090332 +illusion_0.75L,ppo,246,49.2,velocity,upper_uy,0.2832452356815338 +illusion_0.75L,ppo,246,49.2,velocity,center_ux,0.982697606086731 +illusion_0.75L,ppo,246,49.2,velocity,center_uy,0.5379072427749634 +illusion_0.75L,ppo,246,49.2,velocity,lower_ux,1.054753303527832 +illusion_0.75L,ppo,246,49.2,velocity,lower_uy,0.28084391355514526 +illusion_0.75L,ppo,247,49.4,velocity,upper_ux,0.9725357294082642 +illusion_0.75L,ppo,247,49.4,velocity,upper_uy,0.24969856441020966 +illusion_0.75L,ppo,247,49.4,velocity,center_ux,0.9863836765289307 +illusion_0.75L,ppo,247,49.4,velocity,center_uy,0.5351846814155579 +illusion_0.75L,ppo,247,49.4,velocity,lower_ux,1.0945773124694824 +illusion_0.75L,ppo,247,49.4,velocity,lower_uy,0.29546549916267395 +illusion_0.75L,ppo,248,49.6,velocity,upper_ux,0.9315767884254456 +illusion_0.75L,ppo,248,49.6,velocity,upper_uy,0.2054692655801773 +illusion_0.75L,ppo,248,49.6,velocity,center_ux,0.9813965559005737 +illusion_0.75L,ppo,248,49.6,velocity,center_uy,0.525994598865509 +illusion_0.75L,ppo,248,49.6,velocity,lower_ux,1.1366369724273682 +illusion_0.75L,ppo,248,49.6,velocity,lower_uy,0.30737096071243286 +illusion_0.75L,ppo,249,49.8,velocity,upper_ux,0.8961738348007202 +illusion_0.75L,ppo,249,49.8,velocity,upper_uy,0.15118281543254852 +illusion_0.75L,ppo,249,49.8,velocity,center_ux,0.9653072953224182 +illusion_0.75L,ppo,249,49.8,velocity,center_uy,0.49722757935523987 +illusion_0.75L,ppo,249,49.8,velocity,lower_ux,1.1817927360534668 +illusion_0.75L,ppo,249,49.8,velocity,lower_uy,0.3157450556755066 +illusion_0.75L,ppo,250,50.0,velocity,upper_ux,0.8700787425041199 +illusion_0.75L,ppo,250,50.0,velocity,upper_uy,0.09012710303068161 +illusion_0.75L,ppo,250,50.0,velocity,center_ux,0.9370210766792297 +illusion_0.75L,ppo,250,50.0,velocity,center_uy,0.43243417143821716 +illusion_0.75L,ppo,250,50.0,velocity,lower_ux,1.2301979064941406 +illusion_0.75L,ppo,250,50.0,velocity,lower_uy,0.31786996126174927 +illusion_0.75L,ppo,251,50.2,velocity,upper_ux,0.8566253185272217 +illusion_0.75L,ppo,251,50.2,velocity,upper_uy,0.027677135542035103 +illusion_0.75L,ppo,251,50.2,velocity,center_ux,0.8993351459503174 +illusion_0.75L,ppo,251,50.2,velocity,center_uy,0.31857264041900635 +illusion_0.75L,ppo,251,50.2,velocity,lower_ux,1.2791905403137207 +illusion_0.75L,ppo,251,50.2,velocity,lower_uy,0.30701619386672974 +illusion_0.75L,ppo,252,50.4,velocity,upper_ux,0.8569746613502502 +illusion_0.75L,ppo,252,50.4,velocity,upper_uy,-0.030604608356952667 +illusion_0.75L,ppo,252,50.4,velocity,center_ux,0.859618067741394 +illusion_0.75L,ppo,252,50.4,velocity,center_uy,0.15651823580265045 +illusion_0.75L,ppo,252,50.4,velocity,lower_ux,1.3198078870773315 +illusion_0.75L,ppo,252,50.4,velocity,lower_uy,0.27008387446403503 +illusion_0.75L,ppo,253,50.6,velocity,upper_ux,0.8692828416824341 +illusion_0.75L,ppo,253,50.6,velocity,upper_uy,-0.08154726028442383 +illusion_0.75L,ppo,253,50.6,velocity,center_ux,0.8268939256668091 +illusion_0.75L,ppo,253,50.6,velocity,center_uy,-0.03397490829229355 +illusion_0.75L,ppo,253,50.6,velocity,lower_ux,1.3364328145980835 +illusion_0.75L,ppo,253,50.6,velocity,lower_uy,0.19219297170639038 +illusion_0.75L,ppo,254,50.8,velocity,upper_ux,0.8899623155593872 +illusion_0.75L,ppo,254,50.8,velocity,upper_uy,-0.12502531707286835 +illusion_0.75L,ppo,254,50.8,velocity,center_ux,0.8082187175750732 +illusion_0.75L,ppo,254,50.8,velocity,center_uy,-0.22010467946529388 +illusion_0.75L,ppo,254,50.8,velocity,lower_ux,1.3168734312057495 +illusion_0.75L,ppo,254,50.8,velocity,lower_uy,0.07283361256122589 +illusion_0.75L,ppo,255,51.0,velocity,upper_ux,0.9157221913337708 +illusion_0.75L,ppo,255,51.0,velocity,upper_uy,-0.1625744253396988 +illusion_0.75L,ppo,255,51.0,velocity,center_ux,0.8069391846656799 +illusion_0.75L,ppo,255,51.0,velocity,center_uy,-0.36817726492881775 +illusion_0.75L,ppo,255,51.0,velocity,lower_ux,1.2645596265792847 +illusion_0.75L,ppo,255,51.0,velocity,lower_uy,-0.06416895985603333 +illusion_0.75L,ppo,256,51.2,velocity,upper_ux,0.9445802569389343 +illusion_0.75L,ppo,256,51.2,velocity,upper_uy,-0.19567734003067017 +illusion_0.75L,ppo,256,51.2,velocity,center_ux,0.8215305209159851 +illusion_0.75L,ppo,256,51.2,velocity,center_uy,-0.4594000279903412 +illusion_0.75L,ppo,256,51.2,velocity,lower_ux,1.1951532363891602 +illusion_0.75L,ppo,256,51.2,velocity,lower_uy,-0.18606406450271606 +illusion_0.75L,ppo,257,51.4,velocity,upper_ux,0.9757254719734192 +illusion_0.75L,ppo,257,51.4,velocity,upper_uy,-0.22523409128189087 +illusion_0.75L,ppo,257,51.4,velocity,center_ux,0.8450931310653687 +illusion_0.75L,ppo,257,51.4,velocity,center_uy,-0.5013909339904785 +illusion_0.75L,ppo,257,51.4,velocity,lower_ux,1.12391197681427 +illusion_0.75L,ppo,257,51.4,velocity,lower_uy,-0.2723981738090515 +illusion_0.75L,ppo,258,51.6,velocity,upper_ux,1.0091919898986816 +illusion_0.75L,ppo,258,51.6,velocity,upper_uy,-0.25186896324157715 +illusion_0.75L,ppo,258,51.6,velocity,center_ux,0.8689248561859131 +illusion_0.75L,ppo,258,51.6,velocity,center_uy,-0.5187230110168457 +illusion_0.75L,ppo,258,51.6,velocity,lower_ux,1.0597796440124512 +illusion_0.75L,ppo,258,51.6,velocity,lower_uy,-0.3200932741165161 +illusion_0.75L,ppo,259,51.8,velocity,upper_ux,1.0453600883483887 +illusion_0.75L,ppo,259,51.8,velocity,upper_uy,-0.27598318457603455 +illusion_0.75L,ppo,259,51.8,velocity,center_ux,0.8871805667877197 +illusion_0.75L,ppo,259,51.8,velocity,center_uy,-0.5317060351371765 +illusion_0.75L,ppo,259,51.8,velocity,lower_ux,1.0054537057876587 +illusion_0.75L,ppo,259,51.8,velocity,lower_uy,-0.3371593952178955 +illusion_0.75L,ppo,260,52.0,velocity,upper_ux,1.0849416255950928 +illusion_0.75L,ppo,260,52.0,velocity,upper_uy,-0.2978256344795227 +illusion_0.75L,ppo,260,52.0,velocity,center_ux,0.8976165056228638 +illusion_0.75L,ppo,260,52.0,velocity,center_uy,-0.5484613180160522 +illusion_0.75L,ppo,260,52.0,velocity,lower_ux,0.9595233201980591 +illusion_0.75L,ppo,260,52.0,velocity,lower_uy,-0.33407390117645264 +illusion_0.75L,ppo,261,52.2,velocity,upper_ux,1.129074215888977 +illusion_0.75L,ppo,261,52.2,velocity,upper_uy,-0.3172202408313751 +illusion_0.75L,ppo,261,52.2,velocity,center_ux,0.8992570638656616 +illusion_0.75L,ppo,261,52.2,velocity,center_uy,-0.5687930583953857 +illusion_0.75L,ppo,261,52.2,velocity,lower_ux,0.9190900921821594 +illusion_0.75L,ppo,261,52.2,velocity,lower_uy,-0.3182169198989868 +illusion_0.75L,ppo,262,52.4,velocity,upper_ux,1.1792845726013184 +illusion_0.75L,ppo,262,52.4,velocity,upper_uy,-0.33330094814300537 +illusion_0.75L,ppo,262,52.4,velocity,center_ux,0.8906658291816711 +illusion_0.75L,ppo,262,52.4,velocity,center_uy,-0.5864707827568054 +illusion_0.75L,ppo,262,52.4,velocity,lower_ux,0.8818639516830444 +illusion_0.75L,ppo,262,52.4,velocity,lower_uy,-0.29238083958625793 +illusion_0.75L,ppo,263,52.6,velocity,upper_ux,1.2369804382324219 +illusion_0.75L,ppo,263,52.6,velocity,upper_uy,-0.3433937728404999 +illusion_0.75L,ppo,263,52.6,velocity,center_ux,0.8703736662864685 +illusion_0.75L,ppo,263,52.6,velocity,center_uy,-0.5872604846954346 +illusion_0.75L,ppo,263,52.6,velocity,lower_ux,0.8471474647521973 +illusion_0.75L,ppo,263,52.6,velocity,lower_uy,-0.2562994062900543 +illusion_0.75L,ppo,264,52.8,velocity,upper_ux,1.3011939525604248 +illusion_0.75L,ppo,264,52.8,velocity,upper_uy,-0.3399542272090912 +illusion_0.75L,ppo,264,52.8,velocity,center_ux,0.839773952960968 +illusion_0.75L,ppo,264,52.8,velocity,center_uy,-0.5481697916984558 +illusion_0.75L,ppo,264,52.8,velocity,lower_ux,0.8160495162010193 +illusion_0.75L,ppo,264,52.8,velocity,lower_uy,-0.20895494520664215 +illusion_0.75L,ppo,265,53.0,velocity,upper_ux,1.36348557472229 +illusion_0.75L,ppo,265,53.0,velocity,upper_uy,-0.30617690086364746 +illusion_0.75L,ppo,265,53.0,velocity,center_ux,0.8062440752983093 +illusion_0.75L,ppo,265,53.0,velocity,center_uy,-0.4470105767250061 +illusion_0.75L,ppo,265,53.0,velocity,lower_ux,0.791368842124939 +illusion_0.75L,ppo,265,53.0,velocity,lower_uy,-0.15075258910655975 +illusion_0.75L,ppo,266,53.2,velocity,upper_ux,1.406380295753479 +illusion_0.75L,ppo,266,53.2,velocity,upper_uy,-0.22278085350990295 +illusion_0.75L,ppo,266,53.2,velocity,center_ux,0.7808606624603271 +illusion_0.75L,ppo,266,53.2,velocity,center_uy,-0.2806369662284851 +illusion_0.75L,ppo,266,53.2,velocity,lower_ux,0.7769647240638733 +illusion_0.75L,ppo,266,53.2,velocity,lower_uy,-0.0849514752626419 +illusion_0.75L,ppo,267,53.4,velocity,upper_ux,1.4164024591445923 +illusion_0.75L,ppo,267,53.4,velocity,upper_uy,-0.09265202283859253 +illusion_0.75L,ppo,267,53.4,velocity,center_ux,0.7715885639190674 +illusion_0.75L,ppo,267,53.4,velocity,center_uy,-0.07161860913038254 +illusion_0.75L,ppo,267,53.4,velocity,lower_ux,0.77640700340271 +illusion_0.75L,ppo,267,53.4,velocity,lower_uy,-0.017819369211792946 +illusion_0.75L,ppo,268,53.6,velocity,upper_ux,1.3956725597381592 +illusion_0.75L,ppo,268,53.6,velocity,upper_uy,0.053096674382686615 +illusion_0.75L,ppo,268,53.6,velocity,center_ux,0.7798551917076111 +illusion_0.75L,ppo,268,53.6,velocity,center_uy,0.1446046680212021 +illusion_0.75L,ppo,268,53.6,velocity,lower_ux,0.7909677624702454 +illusion_0.75L,ppo,268,53.6,velocity,lower_uy,0.043475281447172165 +illusion_0.75L,ppo,269,53.8,velocity,upper_ux,1.3540464639663696 +illusion_0.75L,ppo,269,53.8,velocity,upper_uy,0.180888831615448 +illusion_0.75L,ppo,269,53.8,velocity,center_ux,0.8023476600646973 +illusion_0.75L,ppo,269,53.8,velocity,center_uy,0.3353450894355774 +illusion_0.75L,ppo,269,53.8,velocity,lower_ux,0.8180909156799316 +illusion_0.75L,ppo,269,53.8,velocity,lower_uy,0.09478805214166641 +illusion_0.75L,ppo,270,54.0,velocity,upper_ux,1.300435185432434 +illusion_0.75L,ppo,270,54.0,velocity,upper_uy,0.27217745780944824 +illusion_0.75L,ppo,270,54.0,velocity,center_ux,0.8338435292243958 +illusion_0.75L,ppo,270,54.0,velocity,center_uy,0.47635409235954285 +illusion_0.75L,ppo,270,54.0,velocity,lower_ux,0.8523971438407898 +illusion_0.75L,ppo,270,54.0,velocity,lower_uy,0.1368236392736435 +illusion_0.75L,ppo,271,54.2,velocity,upper_ux,1.2423919439315796 +illusion_0.75L,ppo,271,54.2,velocity,upper_uy,0.3239099383354187 +illusion_0.75L,ppo,271,54.2,velocity,center_ux,0.8691365122795105 +illusion_0.75L,ppo,271,54.2,velocity,center_uy,0.5536816120147705 +illusion_0.75L,ppo,271,54.2,velocity,lower_ux,0.8891243934631348 +illusion_0.75L,ppo,271,54.2,velocity,lower_uy,0.17249956727027893 +illusion_0.75L,ppo,272,54.4,velocity,upper_ux,1.1857601404190063 +illusion_0.75L,ppo,272,54.4,velocity,upper_uy,0.3439353108406067 +illusion_0.75L,ppo,272,54.4,velocity,center_ux,0.9036908149719238 +illusion_0.75L,ppo,272,54.4,velocity,center_uy,0.5735389590263367 +illusion_0.75L,ppo,272,54.4,velocity,lower_ux,0.9262534976005554 +illusion_0.75L,ppo,272,54.4,velocity,lower_uy,0.20345011353492737 +illusion_0.75L,ppo,273,54.6,velocity,upper_ux,1.133267879486084 +illusion_0.75L,ppo,273,54.6,velocity,upper_uy,0.34361734986305237 +illusion_0.75L,ppo,273,54.6,velocity,center_ux,0.9336640238761902 +illusion_0.75L,ppo,273,54.6,velocity,center_uy,0.5636168122291565 +illusion_0.75L,ppo,273,54.6,velocity,lower_ux,0.9635318517684937 +illusion_0.75L,ppo,273,54.6,velocity,lower_uy,0.2300722748041153 +illusion_0.75L,ppo,274,54.8,velocity,upper_ux,1.0846599340438843 +illusion_0.75L,ppo,274,54.8,velocity,upper_uy,0.33142611384391785 +illusion_0.75L,ppo,274,54.8,velocity,center_ux,0.9568238258361816 +illusion_0.75L,ppo,274,54.8,velocity,center_uy,0.5503840446472168 +illusion_0.75L,ppo,274,54.8,velocity,lower_ux,1.0010823011398315 +illusion_0.75L,ppo,274,54.8,velocity,lower_uy,0.25270983576774597 +illusion_0.75L,ppo,275,55.0,velocity,upper_ux,1.0384206771850586 +illusion_0.75L,ppo,275,55.0,velocity,upper_uy,0.31066375970840454 +illusion_0.75L,ppo,275,55.0,velocity,center_ux,0.9728167653083801 +illusion_0.75L,ppo,275,55.0,velocity,center_uy,0.543533980846405 +illusion_0.75L,ppo,275,55.0,velocity,lower_ux,1.0391457080841064 +illusion_0.75L,ppo,275,55.0,velocity,lower_uy,0.2719842791557312 +illusion_0.75L,ppo,276,55.2,velocity,upper_ux,0.9934892058372498 +illusion_0.75L,ppo,276,55.2,velocity,upper_uy,0.28096792101860046 +illusion_0.75L,ppo,276,55.2,velocity,center_ux,0.9816652536392212 +illusion_0.75L,ppo,276,55.2,velocity,center_uy,0.5414302349090576 +illusion_0.75L,ppo,276,55.2,velocity,lower_ux,1.07822847366333 +illusion_0.75L,ppo,276,55.2,velocity,lower_uy,0.2884076237678528 +illusion_0.75L,ppo,277,55.4,velocity,upper_ux,0.9502241611480713 +illusion_0.75L,ppo,277,55.4,velocity,upper_uy,0.24073252081871033 +illusion_0.75L,ppo,277,55.4,velocity,center_ux,0.9824362993240356 +illusion_0.75L,ppo,277,55.4,velocity,center_uy,0.5375272631645203 +illusion_0.75L,ppo,277,55.4,velocity,lower_ux,1.1191720962524414 +illusion_0.75L,ppo,277,55.4,velocity,lower_uy,0.3021808862686157 +illusion_0.75L,ppo,278,55.6,velocity,upper_ux,0.9105609059333801 +illusion_0.75L,ppo,278,55.6,velocity,upper_uy,0.1893019676208496 +illusion_0.75L,ppo,278,55.6,velocity,center_ux,0.9729911088943481 +illusion_0.75L,ppo,278,55.6,velocity,center_uy,0.5207387804985046 +illusion_0.75L,ppo,278,55.6,velocity,lower_ux,1.162862777709961 +illusion_0.75L,ppo,278,55.6,velocity,lower_uy,0.3128725588321686 +illusion_0.75L,ppo,279,55.8,velocity,upper_ux,0.8779188394546509 +illusion_0.75L,ppo,279,55.8,velocity,upper_uy,0.12848921120166779 +illusion_0.75L,ppo,279,55.8,velocity,center_ux,0.9514037370681763 +illusion_0.75L,ppo,279,55.8,velocity,center_uy,0.4752563238143921 +illusion_0.75L,ppo,279,55.8,velocity,lower_ux,1.2098582983016968 +illusion_0.75L,ppo,279,55.8,velocity,lower_uy,0.31872090697288513 +illusion_0.75L,ppo,280,56.0,velocity,upper_ux,0.8563858866691589 +illusion_0.75L,ppo,280,56.0,velocity,upper_uy,0.06298697739839554 +illusion_0.75L,ppo,280,56.0,velocity,center_ux,0.9185775518417358 +illusion_0.75L,ppo,280,56.0,velocity,center_uy,0.3848192095756531 +illusion_0.75L,ppo,280,56.0,velocity,lower_ux,1.2590935230255127 +illusion_0.75L,ppo,280,56.0,velocity,lower_uy,0.3150072991847992 +illusion_0.75L,ppo,281,56.2,velocity,upper_ux,0.8488943576812744 +illusion_0.75L,ppo,281,56.2,velocity,upper_uy,-0.0008473152411170304 +illusion_0.75L,ppo,281,56.2,velocity,center_ux,0.8800358772277832 +illusion_0.75L,ppo,281,56.2,velocity,center_uy,0.24257515370845795 +illusion_0.75L,ppo,281,56.2,velocity,lower_ux,1.3046878576278687 +illusion_0.75L,ppo,281,56.2,velocity,lower_uy,0.2912732660770416 +illusion_0.75L,ppo,282,56.4,velocity,upper_ux,0.8554317355155945 +illusion_0.75L,ppo,282,56.4,velocity,upper_uy,-0.05782867595553398 +illusion_0.75L,ppo,282,56.4,velocity,center_ux,0.8444589376449585 +illusion_0.75L,ppo,282,56.4,velocity,center_uy,0.05986057221889496 +illusion_0.75L,ppo,282,56.4,velocity,lower_ux,1.3332713842391968 +illusion_0.75L,ppo,282,56.4,velocity,lower_uy,0.2318599820137024 +illusion_0.75L,ppo,283,56.6,velocity,upper_ux,0.8730108141899109 +illusion_0.75L,ppo,283,56.6,velocity,upper_uy,-0.10609908401966095 +illusion_0.75L,ppo,283,56.6,velocity,center_ux,0.8198718428611755 +illusion_0.75L,ppo,283,56.6,velocity,center_uy,-0.13504454493522644 +illusion_0.75L,ppo,283,56.6,velocity,lower_ux,1.329452395439148 +illusion_0.75L,ppo,283,56.6,velocity,lower_uy,0.12787950038909912 +illusion_0.75L,ppo,284,56.8,velocity,upper_ux,0.8976277112960815 +illusion_0.75L,ppo,284,56.8,velocity,upper_uy,-0.14682503044605255 +illusion_0.75L,ppo,284,56.8,velocity,center_ux,0.8111435770988464 +illusion_0.75L,ppo,284,56.8,velocity,center_uy,-0.30682095885276794 +illusion_0.75L,ppo,284,56.8,velocity,lower_ux,1.2896218299865723 +illusion_0.75L,ppo,284,56.8,velocity,lower_uy,-0.006345793139189482 +illusion_0.75L,ppo,285,57.0,velocity,upper_ux,0.9262360334396362 +illusion_0.75L,ppo,285,57.0,velocity,upper_uy,-0.1819840371608734 +illusion_0.75L,ppo,285,57.0,velocity,center_ux,0.8190872073173523 +illusion_0.75L,ppo,285,57.0,velocity,center_uy,-0.4270966649055481 +illusion_0.75L,ppo,285,57.0,velocity,lower_ux,1.2259258031845093 +illusion_0.75L,ppo,285,57.0,velocity,lower_uy,-0.13848797976970673 +illusion_0.75L,ppo,286,57.2,velocity,upper_ux,0.957304835319519 +illusion_0.75L,ppo,286,57.2,velocity,upper_uy,-0.21299879252910614 +illusion_0.75L,ppo,286,57.2,velocity,center_ux,0.8394203186035156 +illusion_0.75L,ppo,286,57.2,velocity,center_uy,-0.490266889333725 +illusion_0.75L,ppo,286,57.2,velocity,lower_ux,1.1549267768859863 +illusion_0.75L,ppo,286,57.2,velocity,lower_uy,-0.2412913292646408 +illusion_0.75L,ppo,287,57.4,velocity,upper_ux,0.9903972744941711 +illusion_0.75L,ppo,287,57.4,velocity,upper_uy,-0.2407228648662567 +illusion_0.75L,ppo,287,57.4,velocity,center_ux,0.8639065623283386 +illusion_0.75L,ppo,287,57.4,velocity,center_uy,-0.5156791806221008 +illusion_0.75L,ppo,287,57.4,velocity,lower_ux,1.0880359411239624 +illusion_0.75L,ppo,287,57.4,velocity,lower_uy,-0.3049934506416321 +illusion_0.75L,ppo,288,57.6,velocity,upper_ux,1.0257084369659424 +illusion_0.75L,ppo,288,57.6,velocity,upper_uy,-0.2656777799129486 +illusion_0.75L,ppo,288,57.6,velocity,center_ux,0.8851295709609985 +illusion_0.75L,ppo,288,57.6,velocity,center_uy,-0.5283797979354858 +illusion_0.75L,ppo,288,57.6,velocity,lower_ux,1.0301556587219238 +illusion_0.75L,ppo,288,57.6,velocity,lower_uy,-0.33418723940849304 +illusion_0.75L,ppo,289,57.8,velocity,upper_ux,1.0637695789337158 +illusion_0.75L,ppo,289,57.8,velocity,upper_uy,-0.2882164418697357 +illusion_0.75L,ppo,289,57.8,velocity,center_ux,0.899427592754364 +illusion_0.75L,ppo,289,57.8,velocity,center_uy,-0.5425467491149902 +illusion_0.75L,ppo,289,57.8,velocity,lower_ux,0.981234610080719 +illusion_0.75L,ppo,289,57.8,velocity,lower_uy,-0.3392745554447174 +illusion_0.75L,ppo,290,58.0,velocity,upper_ux,1.1054794788360596 +illusion_0.75L,ppo,290,58.0,velocity,upper_uy,-0.30835700035095215 +illusion_0.75L,ppo,290,58.0,velocity,center_ux,0.9055675268173218 +illusion_0.75L,ppo,290,58.0,velocity,center_uy,-0.5615569949150085 +illusion_0.75L,ppo,290,58.0,velocity,lower_ux,0.9386789798736572 +illusion_0.75L,ppo,290,58.0,velocity,lower_uy,-0.3293851912021637 +illusion_0.75L,ppo,291,58.2,velocity,upper_ux,1.1522578001022339 +illusion_0.75L,ppo,291,58.2,velocity,upper_uy,-0.3256775140762329 +illusion_0.75L,ppo,291,58.2,velocity,center_ux,0.9025422930717468 +illusion_0.75L,ppo,291,58.2,velocity,center_uy,-0.5823462009429932 +illusion_0.75L,ppo,291,58.2,velocity,lower_ux,0.8998392224311829 +illusion_0.75L,ppo,291,58.2,velocity,lower_uy,-0.3091265559196472 +illusion_0.75L,ppo,292,58.4,velocity,upper_ux,1.2057899236679077 +illusion_0.75L,ppo,292,58.4,velocity,upper_uy,-0.33864811062812805 +illusion_0.75L,ppo,292,58.4,velocity,center_ux,0.888745903968811 +illusion_0.75L,ppo,292,58.4,velocity,center_uy,-0.595182478427887 +illusion_0.75L,ppo,292,58.4,velocity,lower_ux,0.8633530139923096 +illusion_0.75L,ppo,292,58.4,velocity,lower_uy,-0.27920618653297424 +illusion_0.75L,ppo,293,58.6,velocity,upper_ux,1.2668839693069458 +illusion_0.75L,ppo,293,58.6,velocity,upper_uy,-0.34298065304756165 +illusion_0.75L,ppo,293,58.6,velocity,center_ux,0.8635472059249878 +illusion_0.75L,ppo,293,58.6,velocity,center_uy,-0.5810065865516663 +illusion_0.75L,ppo,293,58.6,velocity,lower_ux,0.8295354247093201 +illusion_0.75L,ppo,293,58.6,velocity,lower_uy,-0.23840802907943726 +illusion_0.75L,ppo,294,58.8,velocity,upper_ux,1.3319408893585205 +illusion_0.75L,ppo,294,58.8,velocity,upper_uy,-0.32732388377189636 +illusion_0.75L,ppo,294,58.8,velocity,center_ux,0.8310186266899109 +illusion_0.75L,ppo,294,58.8,velocity,center_uy,-0.5145372152328491 +illusion_0.75L,ppo,294,58.8,velocity,lower_ux,0.8004688024520874 +illusion_0.75L,ppo,294,58.8,velocity,lower_uy,-0.18596294522285461 +illusion_0.75L,ppo,295,59.0,velocity,upper_ux,1.3877286911010742 +illusion_0.75L,ppo,295,59.0,velocity,upper_uy,-0.27179354429244995 +illusion_0.75L,ppo,295,59.0,velocity,center_ux,0.8009845018386841 +illusion_0.75L,ppo,295,59.0,velocity,center_uy,-0.3801119923591614 +illusion_0.75L,ppo,295,59.0,velocity,lower_ux,0.7795920372009277 +illusion_0.75L,ppo,295,59.0,velocity,lower_uy,-0.12331464141607285 +illusion_0.75L,ppo,296,59.2,velocity,upper_ux,1.41611647605896 +illusion_0.75L,ppo,296,59.2,velocity,upper_uy,-0.16434167325496674 +illusion_0.75L,ppo,296,59.2,velocity,center_ux,0.7837401628494263 +illusion_0.75L,ppo,296,59.2,velocity,center_uy,-0.18765869736671448 +illusion_0.75L,ppo,296,59.2,velocity,lower_ux,0.7708876132965088 +illusion_0.75L,ppo,296,59.2,velocity,lower_uy,-0.05521750450134277 +illusion_0.75L,ppo,297,59.4,velocity,upper_ux,1.410510540008545 +illusion_0.75L,ppo,297,59.4,velocity,upper_uy,-0.02286488562822342 +illusion_0.75L,ppo,297,59.4,velocity,center_ux,0.7839535474777222 +illusion_0.75L,ppo,297,59.4,velocity,center_uy,0.031218810006976128 +illusion_0.75L,ppo,297,59.4,velocity,lower_ux,0.7772644758224487 +illusion_0.75L,ppo,297,59.4,velocity,lower_uy,0.011021469719707966 +illusion_0.75L,ppo,298,59.6,velocity,upper_ux,1.3784654140472412 +illusion_0.75L,ppo,298,59.6,velocity,upper_uy,0.1166350468993187 +illusion_0.75L,ppo,298,59.6,velocity,center_ux,0.8002188205718994 +illusion_0.75L,ppo,298,59.6,velocity,center_uy,0.24045774340629578 +illusion_0.75L,ppo,298,59.6,velocity,lower_ux,0.798480212688446 +illusion_0.75L,ppo,298,59.6,velocity,lower_uy,0.06873837113380432 +illusion_0.75L,ppo,299,59.8,velocity,upper_ux,1.330101728439331 +illusion_0.75L,ppo,299,59.8,velocity,upper_uy,0.22683994472026825 +illusion_0.75L,ppo,299,59.8,velocity,center_ux,0.8278566002845764 +illusion_0.75L,ppo,299,59.8,velocity,center_uy,0.41089335083961487 +illusion_0.75L,ppo,299,59.8,velocity,lower_ux,0.8303155303001404 +illusion_0.75L,ppo,299,59.8,velocity,lower_uy,0.11571188271045685 +illusion_0.75L,ppo,300,60.0,velocity,upper_ux,1.273737907409668 +illusion_0.75L,ppo,300,60.0,velocity,upper_uy,0.297283411026001 +illusion_0.75L,ppo,300,60.0,velocity,center_ux,0.8614041209220886 +illusion_0.75L,ppo,300,60.0,velocity,center_uy,0.5222635865211487 +illusion_0.75L,ppo,300,60.0,velocity,lower_ux,0.8669382333755493 +illusion_0.75L,ppo,300,60.0,velocity,lower_uy,0.15424133837223053 +illusion_0.75L,ppo,301,60.2,velocity,upper_ux,1.21622896194458 +illusion_0.75L,ppo,301,60.2,velocity,upper_uy,0.331381231546402 +illusion_0.75L,ppo,301,60.2,velocity,center_ux,0.8959978222846985 +illusion_0.75L,ppo,301,60.2,velocity,center_uy,0.5687668323516846 +illusion_0.75L,ppo,301,60.2,velocity,lower_ux,0.9044858813285828 +illusion_0.75L,ppo,301,60.2,velocity,lower_uy,0.18716730177402496 +illusion_0.75L,ppo,302,60.4,velocity,upper_ux,1.1618952751159668 +illusion_0.75L,ppo,302,60.4,velocity,upper_uy,0.33986836671829224 +illusion_0.75L,ppo,302,60.4,velocity,center_ux,0.9276277422904968 +illusion_0.75L,ppo,302,60.4,velocity,center_uy,0.5689193606376648 +illusion_0.75L,ppo,302,60.4,velocity,lower_ux,0.9418830871582031 +illusion_0.75L,ppo,302,60.4,velocity,lower_uy,0.21560268104076385 +illusion_0.75L,ppo,303,60.6,velocity,upper_ux,1.1118181943893433 +illusion_0.75L,ppo,303,60.6,velocity,upper_uy,0.33325091004371643 +illusion_0.75L,ppo,303,60.6,velocity,center_ux,0.9534903168678284 +illusion_0.75L,ppo,303,60.6,velocity,center_uy,0.5537682175636292 +illusion_0.75L,ppo,303,60.6,velocity,lower_ux,0.9792807698249817 +illusion_0.75L,ppo,303,60.6,velocity,lower_uy,0.23980242013931274 +illusion_0.75L,ppo,304,60.8,velocity,upper_ux,1.064854383468628 +illusion_0.75L,ppo,304,60.8,velocity,upper_uy,0.3172682225704193 +illusion_0.75L,ppo,304,60.8,velocity,center_ux,0.9725754261016846 +illusion_0.75L,ppo,304,60.8,velocity,center_uy,0.5423528552055359 +illusion_0.75L,ppo,304,60.8,velocity,lower_ux,1.0169318914413452 +illusion_0.75L,ppo,304,60.8,velocity,lower_uy,0.2602733075618744 +illusion_0.75L,ppo,305,61.0,velocity,upper_ux,1.019564151763916 +illusion_0.75L,ppo,305,61.0,velocity,upper_uy,0.2930465042591095 +illusion_0.75L,ppo,305,61.0,velocity,center_ux,0.9850281476974487 +illusion_0.75L,ppo,305,61.0,velocity,center_uy,0.5378319025039673 +illusion_0.75L,ppo,305,61.0,velocity,lower_ux,1.0552301406860352 +illusion_0.75L,ppo,305,61.0,velocity,lower_uy,0.27759888768196106 +illusion_0.75L,ppo,306,61.2,velocity,upper_ux,0.9755207896232605 +illusion_0.75L,ppo,306,61.2,velocity,upper_uy,0.2592456042766571 +illusion_0.75L,ppo,306,61.2,velocity,center_ux,0.9905495643615723 +illusion_0.75L,ppo,306,61.2,velocity,center_uy,0.5360248684883118 +illusion_0.75L,ppo,306,61.2,velocity,lower_ux,1.0948476791381836 +illusion_0.75L,ppo,306,61.2,velocity,lower_uy,0.29221460223197937 +illusion_0.75L,ppo,307,61.4,velocity,upper_ux,0.9338030219078064 +illusion_0.75L,ppo,307,61.4,velocity,upper_uy,0.21450641751289368 +illusion_0.75L,ppo,307,61.4,velocity,center_ux,0.9875097870826721 +illusion_0.75L,ppo,307,61.4,velocity,center_uy,0.5286605954170227 +illusion_0.75L,ppo,307,61.4,velocity,lower_ux,1.1366186141967773 +illusion_0.75L,ppo,307,61.4,velocity,lower_uy,0.3041016459465027 +illusion_0.75L,ppo,308,61.6,velocity,upper_ux,0.8970847129821777 +illusion_0.75L,ppo,308,61.6,velocity,upper_uy,0.15918560326099396 +illusion_0.75L,ppo,308,61.6,velocity,center_ux,0.9734328389167786 +illusion_0.75L,ppo,308,61.6,velocity,center_uy,0.5025515556335449 +illusion_0.75L,ppo,308,61.6,velocity,lower_ux,1.1813410520553589 +illusion_0.75L,ppo,308,61.6,velocity,lower_uy,0.3124791979789734 +illusion_0.75L,ppo,309,61.8,velocity,upper_ux,0.8692107200622559 +illusion_0.75L,ppo,309,61.8,velocity,upper_uy,0.09643984586000443 +illusion_0.75L,ppo,309,61.8,velocity,center_ux,0.9469670057296753 +illusion_0.75L,ppo,309,61.8,velocity,center_uy,0.44070395827293396 +illusion_0.75L,ppo,309,61.8,velocity,lower_ux,1.2291678190231323 +illusion_0.75L,ppo,309,61.8,velocity,lower_uy,0.3148224651813507 +illusion_0.75L,ppo,310,62.0,velocity,upper_ux,0.8539248704910278 +illusion_0.75L,ppo,310,62.0,velocity,upper_uy,0.031903378665447235 +illusion_0.75L,ppo,310,62.0,velocity,center_ux,0.9106033444404602 +illusion_0.75L,ppo,310,62.0,velocity,center_uy,0.32919225096702576 +illusion_0.75L,ppo,310,62.0,velocity,lower_ux,1.2777223587036133 +illusion_0.75L,ppo,310,62.0,velocity,lower_uy,0.3048365116119385 +illusion_0.75L,ppo,311,62.2,velocity,upper_ux,0.8528711199760437 +illusion_0.75L,ppo,311,62.2,velocity,upper_uy,-0.028378713876008987 +illusion_0.75L,ppo,311,62.2,velocity,center_ux,0.8714776635169983 +illusion_0.75L,ppo,311,62.2,velocity,center_uy,0.16806064546108246 +illusion_0.75L,ppo,311,62.2,velocity,lower_ux,1.3185937404632568 +illusion_0.75L,ppo,311,62.2,velocity,lower_uy,0.270162969827652 +illusion_0.75L,ppo,312,62.4,velocity,upper_ux,0.8644785284996033 +illusion_0.75L,ppo,312,62.4,velocity,upper_uy,-0.08068124949932098 +illusion_0.75L,ppo,312,62.4,velocity,center_ux,0.8385900259017944 +illusion_0.75L,ppo,312,62.4,velocity,center_uy,-0.023207712918519974 +illusion_0.75L,ppo,312,62.4,velocity,lower_ux,1.3364776372909546 +illusion_0.75L,ppo,312,62.4,velocity,lower_uy,0.1959567666053772 +illusion_0.75L,ppo,313,62.6,velocity,upper_ux,0.88507479429245 +illusion_0.75L,ppo,313,62.6,velocity,upper_uy,-0.12478706985712051 +illusion_0.75L,ppo,313,62.6,velocity,center_ux,0.8191441893577576 +illusion_0.75L,ppo,313,62.6,velocity,center_uy,-0.21139991283416748 +illusion_0.75L,ppo,313,62.6,velocity,lower_ux,1.3185709714889526 +illusion_0.75L,ppo,313,62.6,velocity,lower_uy,0.08036456257104874 +illusion_0.75L,ppo,314,62.8,velocity,upper_ux,0.9110546112060547 +illusion_0.75L,ppo,314,62.8,velocity,upper_uy,-0.1624271422624588 +illusion_0.75L,ppo,314,62.8,velocity,center_ux,0.8166764974594116 +illusion_0.75L,ppo,314,62.8,velocity,center_uy,-0.3619649112224579 +illusion_0.75L,ppo,314,62.8,velocity,lower_ux,1.267339825630188 +illusion_0.75L,ppo,314,62.8,velocity,lower_uy,-0.0543971061706543 +illusion_0.75L,ppo,315,63.0,velocity,upper_ux,0.9401954412460327 +illusion_0.75L,ppo,315,63.0,velocity,upper_uy,-0.19536276161670685 +illusion_0.75L,ppo,315,63.0,velocity,center_ux,0.8299917578697205 +illusion_0.75L,ppo,315,63.0,velocity,center_uy,-0.4550569951534271 +illusion_0.75L,ppo,315,63.0,velocity,lower_ux,1.1983914375305176 +illusion_0.75L,ppo,315,63.0,velocity,lower_uy,-0.1757499873638153 +illusion_0.75L,ppo,316,63.2,velocity,upper_ux,0.9715750217437744 +illusion_0.75L,ppo,316,63.2,velocity,upper_uy,-0.22465310990810394 +illusion_0.75L,ppo,316,63.2,velocity,center_ux,0.8526053428649902 +illusion_0.75L,ppo,316,63.2,velocity,center_uy,-0.4976063072681427 +illusion_0.75L,ppo,316,63.2,velocity,lower_ux,1.127485990524292 +illusion_0.75L,ppo,316,63.2,velocity,lower_uy,-0.2626258134841919 +illusion_0.75L,ppo,317,63.4,velocity,upper_ux,1.0050688982009888 +illusion_0.75L,ppo,317,63.4,velocity,upper_uy,-0.2509825825691223 +illusion_0.75L,ppo,317,63.4,velocity,center_ux,0.8759593367576599 +illusion_0.75L,ppo,317,63.4,velocity,center_uy,-0.5143864154815674 +illusion_0.75L,ppo,317,63.4,velocity,lower_ux,1.063726782798767 +illusion_0.75L,ppo,317,63.4,velocity,lower_uy,-0.31151115894317627 +illusion_0.75L,ppo,318,63.6,velocity,upper_ux,1.0409643650054932 +illusion_0.75L,ppo,318,63.6,velocity,upper_uy,-0.2748434841632843 +illusion_0.75L,ppo,318,63.6,velocity,center_ux,0.8941803574562073 +illusion_0.75L,ppo,318,63.6,velocity,center_uy,-0.5264118313789368 +illusion_0.75L,ppo,318,63.6,velocity,lower_ux,1.0097732543945312 +illusion_0.75L,ppo,318,63.6,velocity,lower_uy,-0.3301379382610321 +illusion_0.75L,ppo,319,63.8,velocity,upper_ux,1.0798659324645996 +illusion_0.75L,ppo,319,63.8,velocity,upper_uy,-0.29648634791374207 +illusion_0.75L,ppo,319,63.8,velocity,center_ux,0.9049773216247559 +illusion_0.75L,ppo,319,63.8,velocity,center_uy,-0.5423816442489624 +illusion_0.75L,ppo,319,63.8,velocity,lower_ux,0.9641191363334656 +illusion_0.75L,ppo,319,63.8,velocity,lower_uy,-0.3289198577404022 +illusion_0.75L,ppo,320,64.0,velocity,upper_ux,1.1228216886520386 +illusion_0.75L,ppo,320,64.0,velocity,upper_uy,-0.31585055589675903 +illusion_0.75L,ppo,320,64.0,velocity,center_ux,0.9074398875236511 +illusion_0.75L,ppo,320,64.0,velocity,center_uy,-0.5626723766326904 +illusion_0.75L,ppo,320,64.0,velocity,lower_ux,0.9237949252128601 +illusion_0.75L,ppo,320,64.0,velocity,lower_uy,-0.3152419328689575 +illusion_0.75L,ppo,321,64.2,velocity,upper_ux,1.1713413000106812 +illusion_0.75L,ppo,321,64.2,velocity,upper_uy,-0.33225682377815247 +illusion_0.75L,ppo,321,64.2,velocity,center_ux,0.9002261161804199 +illusion_0.75L,ppo,321,64.2,velocity,center_uy,-0.5821592807769775 +illusion_0.75L,ppo,321,64.2,velocity,lower_ux,0.8864411115646362 +illusion_0.75L,ppo,321,64.2,velocity,lower_uy,-0.29205265641212463 +illusion_0.75L,ppo,322,64.4,velocity,upper_ux,1.227035403251648 +illusion_0.75L,ppo,322,64.4,velocity,upper_uy,-0.3436664342880249 +illusion_0.75L,ppo,322,64.4,velocity,center_ux,0.8816127777099609 +illusion_0.75L,ppo,322,64.4,velocity,center_uy,-0.5884502530097961 +illusion_0.75L,ppo,322,64.4,velocity,lower_ux,0.851279616355896 +illusion_0.75L,ppo,322,64.4,velocity,lower_uy,-0.259089857339859 +illusion_0.75L,ppo,323,64.6,velocity,upper_ux,1.2899366617202759 +illusion_0.75L,ppo,323,64.6,velocity,upper_uy,-0.34408512711524963 +illusion_0.75L,ppo,323,64.6,velocity,center_ux,0.8519794940948486 +illusion_0.75L,ppo,323,64.6,velocity,center_uy,-0.5599737763404846 +illusion_0.75L,ppo,323,64.6,velocity,lower_ux,0.8192887306213379 +illusion_0.75L,ppo,323,64.6,velocity,lower_uy,-0.21516843140125275 +illusion_0.75L,ppo,324,64.8,velocity,upper_ux,1.3538711071014404 +illusion_0.75L,ppo,324,64.8,velocity,upper_uy,-0.318892240524292 +illusion_0.75L,ppo,324,64.8,velocity,center_ux,0.817421555519104 +illusion_0.75L,ppo,324,64.8,velocity,center_uy,-0.4728320240974426 +illusion_0.75L,ppo,324,64.8,velocity,lower_ux,0.7931423187255859 +illusion_0.75L,ppo,324,64.8,velocity,lower_uy,-0.16018672287464142 +illusion_0.75L,ppo,325,65.0,velocity,upper_ux,1.402613878250122 +illusion_0.75L,ppo,325,65.0,velocity,upper_uy,-0.24707633256912231 +illusion_0.75L,ppo,325,65.0,velocity,center_ux,0.7888851761817932 +illusion_0.75L,ppo,325,65.0,velocity,center_uy,-0.3186979293823242 +illusion_0.75L,ppo,325,65.0,velocity,lower_ux,0.7766519784927368 +illusion_0.75L,ppo,325,65.0,velocity,lower_uy,-0.0967341884970665 +illusion_0.75L,ppo,326,65.2,velocity,upper_ux,1.4197813272476196 +illusion_0.75L,ppo,326,65.2,velocity,upper_uy,-0.12408304959535599 +illusion_0.75L,ppo,326,65.2,velocity,center_ux,0.7755535840988159 +illusion_0.75L,ppo,326,65.2,velocity,center_uy,-0.11552964150905609 +illusion_0.75L,ppo,326,65.2,velocity,lower_ux,0.7735522985458374 +illusion_0.75L,ppo,326,65.2,velocity,lower_uy,-0.030458271503448486 +illusion_0.75L,ppo,327,65.4,velocity,upper_ux,1.4042326211929321 +illusion_0.75L,ppo,327,65.4,velocity,upper_uy,0.023155486211180687 +illusion_0.75L,ppo,327,65.4,velocity,center_ux,0.780235230922699 +illusion_0.75L,ppo,327,65.4,velocity,center_uy,0.10234707593917847 +illusion_0.75L,ppo,327,65.4,velocity,lower_ux,0.7856958508491516 +illusion_0.75L,ppo,327,65.4,velocity,lower_uy,0.03145693242549896 +illusion_0.75L,ppo,328,65.6,velocity,upper_ux,1.3656865358352661 +illusion_0.75L,ppo,328,65.6,velocity,upper_uy,0.15827125310897827 +illusion_0.75L,ppo,328,65.6,velocity,center_ux,0.8003539443016052 +illusion_0.75L,ppo,328,65.6,velocity,center_uy,0.30080336332321167 +illusion_0.75L,ppo,328,65.6,velocity,lower_ux,0.8112406730651855 +illusion_0.75L,ppo,328,65.6,velocity,lower_uy,0.08403447270393372 +illusion_0.75L,ppo,329,65.8,velocity,upper_ux,1.3136718273162842 +illusion_0.75L,ppo,329,65.8,velocity,upper_uy,0.25848084688186646 +illusion_0.75L,ppo,329,65.8,velocity,center_ux,0.8307880163192749 +illusion_0.75L,ppo,329,65.8,velocity,center_uy,0.453459769487381 +illusion_0.75L,ppo,329,65.8,velocity,lower_ux,0.844989001750946 +illusion_0.75L,ppo,329,65.8,velocity,lower_uy,0.1270938366651535 +illusion_0.75L,ppo,330,66.0,velocity,upper_ux,1.2560210227966309 +illusion_0.75L,ppo,330,66.0,velocity,upper_uy,0.3177814781665802 +illusion_0.75L,ppo,330,66.0,velocity,center_ux,0.866121768951416 +illusion_0.75L,ppo,330,66.0,velocity,center_uy,0.5433184504508972 +illusion_0.75L,ppo,330,66.0,velocity,lower_ux,0.8816989660263062 +illusion_0.75L,ppo,330,66.0,velocity,lower_uy,0.16340896487236023 +illusion_0.75L,ppo,331,66.2,velocity,upper_ux,1.1989860534667969 +illusion_0.75L,ppo,331,66.2,velocity,upper_uy,0.3427138030529022 +illusion_0.75L,ppo,331,66.2,velocity,center_ux,0.9015097618103027 +illusion_0.75L,ppo,331,66.2,velocity,center_uy,0.5716960430145264 +illusion_0.75L,ppo,331,66.2,velocity,lower_ux,0.9187488555908203 +illusion_0.75L,ppo,331,66.2,velocity,lower_uy,0.19494859874248505 +illusion_0.75L,ppo,332,66.4,velocity,upper_ux,1.1459074020385742 +illusion_0.75L,ppo,332,66.4,velocity,upper_uy,0.3450962007045746 +illusion_0.75L,ppo,332,66.4,velocity,center_ux,0.9328801035881042 +illusion_0.75L,ppo,332,66.4,velocity,center_uy,0.5638140439987183 +illusion_0.75L,ppo,332,66.4,velocity,lower_ux,0.955730676651001 +illusion_0.75L,ppo,332,66.4,velocity,lower_uy,0.22213473916053772 +illusion_0.75L,ppo,333,66.6,velocity,upper_ux,1.096899390220642 +illusion_0.75L,ppo,333,66.6,velocity,upper_uy,0.3345949053764343 +illusion_0.75L,ppo,333,66.6,velocity,center_ux,0.9576473832130432 +illusion_0.75L,ppo,333,66.6,velocity,center_uy,0.5489113330841064 +illusion_0.75L,ppo,333,66.6,velocity,lower_ux,0.9927926063537598 +illusion_0.75L,ppo,333,66.6,velocity,lower_uy,0.24524477124214172 +illusion_0.75L,ppo,334,66.8,velocity,upper_ux,1.0504753589630127 +illusion_0.75L,ppo,334,66.8,velocity,upper_uy,0.3156059980392456 +illusion_0.75L,ppo,334,66.8,velocity,center_ux,0.9753047823905945 +illusion_0.75L,ppo,334,66.8,velocity,center_uy,0.5401633977890015 +illusion_0.75L,ppo,334,66.8,velocity,lower_ux,1.0301820039749146 +illusion_0.75L,ppo,334,66.8,velocity,lower_uy,0.2648161053657532 +illusion_0.75L,ppo,335,67.0,velocity,upper_ux,1.005352258682251 +illusion_0.75L,ppo,335,67.0,velocity,upper_uy,0.2881995737552643 +illusion_0.75L,ppo,335,67.0,velocity,center_ux,0.9861122965812683 +illusion_0.75L,ppo,335,67.0,velocity,center_uy,0.5375259518623352 +illusion_0.75L,ppo,335,67.0,velocity,lower_ux,1.0683773756027222 +illusion_0.75L,ppo,335,67.0,velocity,lower_uy,0.281429260969162 +illusion_0.75L,ppo,336,67.2,velocity,upper_ux,0.9615622758865356 +illusion_0.75L,ppo,336,67.2,velocity,upper_uy,0.25074946880340576 +illusion_0.75L,ppo,336,67.2,velocity,center_ux,0.9895598888397217 +illusion_0.75L,ppo,336,67.2,velocity,center_uy,0.5355263948440552 +illusion_0.75L,ppo,336,67.2,velocity,lower_ux,1.1081817150115967 +illusion_0.75L,ppo,336,67.2,velocity,lower_uy,0.29535049200057983 +illusion_0.75L,ppo,337,67.4,velocity,upper_ux,0.9206730127334595 +illusion_0.75L,ppo,337,67.4,velocity,upper_uy,0.20213072001934052 +illusion_0.75L,ppo,337,67.4,velocity,center_ux,0.9837498664855957 +illusion_0.75L,ppo,337,67.4,velocity,center_uy,0.5244662761688232 +illusion_0.75L,ppo,337,67.4,velocity,lower_ux,1.150485634803772 +illusion_0.75L,ppo,337,67.4,velocity,lower_uy,0.30640268325805664 +illusion_0.75L,ppo,338,67.6,velocity,upper_ux,0.885837733745575 +illusion_0.75L,ppo,338,67.6,velocity,upper_uy,0.14344295859336853 +illusion_0.75L,ppo,338,67.6,velocity,center_ux,0.9663811326026917 +illusion_0.75L,ppo,338,67.6,velocity,center_uy,0.4895801842212677 +illusion_0.75L,ppo,338,67.6,velocity,lower_ux,1.1960210800170898 +illusion_0.75L,ppo,338,67.6,velocity,lower_uy,0.31337955594062805 +illusion_0.75L,ppo,339,67.8,velocity,upper_ux,0.8611263036727905 +illusion_0.75L,ppo,339,67.8,velocity,upper_uy,0.07868916541337967 +illusion_0.75L,ppo,339,67.8,velocity,center_ux,0.9370487928390503 +illusion_0.75L,ppo,339,67.8,velocity,center_uy,0.4137243926525116 +illusion_0.75L,ppo,339,67.8,velocity,lower_ux,1.2444571256637573 +illusion_0.75L,ppo,339,67.8,velocity,lower_uy,0.3128970265388489 +illusion_0.75L,ppo,340,68.0,velocity,upper_ux,0.8499403595924377 +illusion_0.75L,ppo,340,68.0,velocity,upper_uy,0.014023996889591217 +illusion_0.75L,ppo,340,68.0,velocity,center_ux,0.8996689319610596 +illusion_0.75L,ppo,340,68.0,velocity,center_uy,0.2861083745956421 +illusion_0.75L,ppo,340,68.0,velocity,lower_ux,1.2919001579284668 +illusion_0.75L,ppo,340,68.0,velocity,lower_uy,0.2969774901866913 +illusion_0.75L,ppo,341,68.2,velocity,upper_ux,0.8530591726303101 +illusion_0.75L,ppo,341,68.2,velocity,upper_uy,-0.04476368427276611 +illusion_0.75L,ppo,341,68.2,velocity,center_ux,0.8622317314147949 +illusion_0.75L,ppo,341,68.2,velocity,center_uy,0.11267846077680588 +illusion_0.75L,ppo,341,68.2,velocity,lower_ux,1.3275092840194702 +illusion_0.75L,ppo,341,68.2,velocity,lower_uy,0.25163158774375916 +illusion_0.75L,ppo,342,68.4,velocity,upper_ux,0.8680793642997742 +illusion_0.75L,ppo,342,68.4,velocity,upper_uy,-0.09490717202425003 +illusion_0.75L,ppo,342,68.4,velocity,center_ux,0.8333906531333923 +illusion_0.75L,ppo,342,68.4,velocity,center_uy,-0.08182454109191895 +illusion_0.75L,ppo,342,68.4,velocity,lower_ux,1.3352504968643188 +illusion_0.75L,ppo,342,68.4,velocity,lower_uy,0.16407914459705353 +illusion_0.75L,ppo,343,68.6,velocity,upper_ux,0.8909804821014404 +illusion_0.75L,ppo,343,68.6,velocity,upper_uy,-0.1369953155517578 +illusion_0.75L,ppo,343,68.6,velocity,center_ux,0.8192052245140076 +illusion_0.75L,ppo,343,68.6,velocity,center_uy,-0.26224076747894287 +illusion_0.75L,ppo,343,68.6,velocity,lower_ux,1.3060246706008911 +illusion_0.75L,ppo,343,68.6,velocity,lower_uy,0.03964798152446747 +illusion_0.75L,ppo,344,68.8,velocity,upper_ux,0.9183543920516968 +illusion_0.75L,ppo,344,68.8,velocity,upper_uy,-0.17305877804756165 +illusion_0.75L,ppo,344,68.8,velocity,center_ux,0.821860671043396 +illusion_0.75L,ppo,344,68.8,velocity,center_uy,-0.3965598940849304 +illusion_0.75L,ppo,344,68.8,velocity,lower_ux,1.2474251985549927 +illusion_0.75L,ppo,344,68.8,velocity,lower_uy,-0.09379328787326813 +illusion_0.75L,ppo,345,69.0,velocity,upper_ux,0.9483205676078796 +illusion_0.75L,ppo,345,69.0,velocity,upper_uy,-0.20472344756126404 +illusion_0.75L,ppo,345,69.0,velocity,center_ux,0.8385540246963501 +illusion_0.75L,ppo,345,69.0,velocity,center_uy,-0.47239479422569275 +illusion_0.75L,ppo,345,69.0,velocity,lower_ux,1.1764552593231201 +illusion_0.75L,ppo,345,69.0,velocity,lower_uy,-0.20553675293922424 +illusion_0.75L,ppo,346,69.2,velocity,upper_ux,0.9802535772323608 +illusion_0.75L,ppo,346,69.2,velocity,upper_uy,-0.23297175765037537 +illusion_0.75L,ppo,346,69.2,velocity,center_ux,0.8617916703224182 +illusion_0.75L,ppo,346,69.2,velocity,center_uy,-0.5041553974151611 +illusion_0.75L,ppo,346,69.2,velocity,lower_ux,1.1071090698242188 +illusion_0.75L,ppo,346,69.2,velocity,lower_uy,-0.28015124797821045 +illusion_0.75L,ppo,347,69.4,velocity,upper_ux,1.014264702796936 +illusion_0.75L,ppo,347,69.4,velocity,upper_uy,-0.25838303565979004 +illusion_0.75L,ppo,347,69.4,velocity,center_ux,0.883626401424408 +illusion_0.75L,ppo,347,69.4,velocity,center_uy,-0.5176103711128235 +illusion_0.75L,ppo,347,69.4,velocity,lower_ux,1.0463409423828125 +illusion_0.75L,ppo,347,69.4,velocity,lower_uy,-0.3185984492301941 +illusion_0.75L,ppo,348,69.6,velocity,upper_ux,1.050786018371582 +illusion_0.75L,ppo,348,69.6,velocity,upper_uy,-0.28141018748283386 +illusion_0.75L,ppo,348,69.6,velocity,center_ux,0.899496853351593 +illusion_0.75L,ppo,348,69.6,velocity,center_uy,-0.5301805734634399 +illusion_0.75L,ppo,348,69.6,velocity,lower_ux,0.9952408671379089 +illusion_0.75L,ppo,348,69.6,velocity,lower_uy,-0.3302454352378845 +illusion_0.75L,ppo,349,69.8,velocity,upper_ux,1.090590476989746 +illusion_0.75L,ppo,349,69.8,velocity,upper_uy,-0.30224499106407166 +illusion_0.75L,ppo,349,69.8,velocity,center_ux,0.9078857898712158 +illusion_0.75L,ppo,349,69.8,velocity,center_uy,-0.5475528240203857 +illusion_0.75L,ppo,349,69.8,velocity,lower_ux,0.9516048431396484 +illusion_0.75L,ppo,349,69.8,velocity,lower_uy,-0.32498350739479065 +illusion_0.75L,ppo,350,70.0,velocity,upper_ux,1.1348892450332642 +illusion_0.75L,ppo,350,70.0,velocity,upper_uy,-0.3207126557826996 +illusion_0.75L,ppo,350,70.0,velocity,center_ux,0.907919704914093 +illusion_0.75L,ppo,350,70.0,velocity,center_uy,-0.5684922933578491 +illusion_0.75L,ppo,350,70.0,velocity,lower_ux,0.9125013947486877 +illusion_0.75L,ppo,350,70.0,velocity,lower_uy,-0.3087916076183319 +illusion_0.75L,ppo,351,70.2,velocity,upper_ux,1.1852484941482544 +illusion_0.75L,ppo,351,70.2,velocity,upper_uy,-0.3358829617500305 +illusion_0.75L,ppo,351,70.2,velocity,center_ux,0.8980121612548828 +illusion_0.75L,ppo,351,70.2,velocity,center_uy,-0.5862163305282593 +illusion_0.75L,ppo,351,70.2,velocity,lower_ux,0.8759582042694092 +illusion_0.75L,ppo,351,70.2,velocity,lower_uy,-0.28338974714279175 +illusion_0.75L,ppo,352,70.4,velocity,upper_ux,1.2430672645568848 +illusion_0.75L,ppo,352,70.4,velocity,upper_uy,-0.345053493976593 +illusion_0.75L,ppo,352,70.4,velocity,center_ux,0.8765237927436829 +illusion_0.75L,ppo,352,70.4,velocity,center_uy,-0.5859431624412537 +illusion_0.75L,ppo,352,70.4,velocity,lower_ux,0.8416478633880615 +illusion_0.75L,ppo,352,70.4,velocity,lower_uy,-0.2479684203863144 +illusion_0.75L,ppo,353,70.6,velocity,upper_ux,1.3073824644088745 +illusion_0.75L,ppo,353,70.6,velocity,upper_uy,-0.34058478474617004 +illusion_0.75L,ppo,353,70.6,velocity,center_ux,0.8449763655662537 +illusion_0.75L,ppo,353,70.6,velocity,center_uy,-0.5442522168159485 +illusion_0.75L,ppo,353,70.6,velocity,lower_ux,0.811054527759552 +illusion_0.75L,ppo,353,70.6,velocity,lower_uy,-0.2013818323612213 +illusion_0.75L,ppo,354,70.8,velocity,upper_ux,1.3694888353347778 +illusion_0.75L,ppo,354,70.8,velocity,upper_uy,-0.30534255504608154 +illusion_0.75L,ppo,354,70.8,velocity,center_ux,0.8110172748565674 +illusion_0.75L,ppo,354,70.8,velocity,center_uy,-0.4393383860588074 +illusion_0.75L,ppo,354,70.8,velocity,lower_ux,0.7871941328048706 +illusion_0.75L,ppo,354,70.8,velocity,lower_uy,-0.14411474764347076 +illusion_0.75L,ppo,355,71.0,velocity,upper_ux,1.4113785028457642 +illusion_0.75L,ppo,355,71.0,velocity,upper_uy,-0.2197030633687973 +illusion_0.75L,ppo,355,71.0,velocity,center_ux,0.7858161926269531 +illusion_0.75L,ppo,355,71.0,velocity,center_uy,-0.26952028274536133 +illusion_0.75L,ppo,355,71.0,velocity,lower_ux,0.7739593386650085 +illusion_0.75L,ppo,355,71.0,velocity,lower_uy,-0.07953271269798279 +illusion_0.75L,ppo,356,71.2,velocity,upper_ux,1.4194481372833252 +illusion_0.75L,ppo,356,71.2,velocity,upper_uy,-0.08700867742300034 +illusion_0.75L,ppo,356,71.2,velocity,center_ux,0.777081310749054 +illusion_0.75L,ppo,356,71.2,velocity,center_uy,-0.05872471630573273 +illusion_0.75L,ppo,356,71.2,velocity,lower_ux,0.7747678160667419 +illusion_0.75L,ppo,356,71.2,velocity,lower_uy,-0.013946461491286755 +illusion_0.75L,ppo,357,71.4,velocity,upper_ux,1.396551489830017 +illusion_0.75L,ppo,357,71.4,velocity,upper_uy,0.06030275300145149 +illusion_0.75L,ppo,357,71.4,velocity,center_ux,0.7859901189804077 +illusion_0.75L,ppo,357,71.4,velocity,center_uy,0.15731438994407654 +illusion_0.75L,ppo,357,71.4,velocity,lower_ux,0.7906567454338074 +illusion_0.75L,ppo,357,71.4,velocity,lower_uy,0.045668311417102814 +illusion_0.75L,ppo,358,71.6,velocity,upper_ux,1.3532891273498535 +illusion_0.75L,ppo,358,71.6,velocity,upper_uy,0.1878524273633957 +illusion_0.75L,ppo,358,71.6,velocity,center_ux,0.8091183304786682 +illusion_0.75L,ppo,358,71.6,velocity,center_uy,0.34611400961875916 +illusion_0.75L,ppo,358,71.6,velocity,lower_ux,0.8188030123710632 +illusion_0.75L,ppo,358,71.6,velocity,lower_uy,0.09543266892433167 +illusion_0.75L,ppo,359,71.8,velocity,upper_ux,1.2988495826721191 +illusion_0.75L,ppo,359,71.8,velocity,upper_uy,0.2772383987903595 +illusion_0.75L,ppo,359,71.8,velocity,center_ux,0.8411630392074585 +illusion_0.75L,ppo,359,71.8,velocity,center_uy,0.48336219787597656 +illusion_0.75L,ppo,359,71.8,velocity,lower_ux,0.8536570072174072 +illusion_0.75L,ppo,359,71.8,velocity,lower_uy,0.13628415763378143 +illusion_0.75L,ppo,360,72.0,velocity,upper_ux,1.2408276796340942 +illusion_0.75L,ppo,360,72.0,velocity,upper_uy,0.32633480429649353 +illusion_0.75L,ppo,360,72.0,velocity,center_ux,0.8768588900566101 +illusion_0.75L,ppo,360,72.0,velocity,center_uy,0.5555970668792725 +illusion_0.75L,ppo,360,72.0,velocity,lower_ux,0.8905516862869263 +illusion_0.75L,ppo,360,72.0,velocity,lower_uy,0.17109617590904236 +illusion_0.75L,ppo,361,72.2,velocity,upper_ux,1.1848556995391846 +illusion_0.75L,ppo,361,72.2,velocity,upper_uy,0.3439904451370239 +illusion_0.75L,ppo,361,72.2,velocity,center_ux,0.9115748405456543 +illusion_0.75L,ppo,361,72.2,velocity,center_uy,0.57088303565979 +illusion_0.75L,ppo,361,72.2,velocity,lower_ux,0.9276213049888611 +illusion_0.75L,ppo,361,72.2,velocity,lower_uy,0.20138411223888397 +illusion_0.75L,ppo,362,72.4,velocity,upper_ux,1.133255958557129 +illusion_0.75L,ppo,362,72.4,velocity,upper_uy,0.3421069085597992 +illusion_0.75L,ppo,362,72.4,velocity,center_ux,0.9414839148521423 +illusion_0.75L,ppo,362,72.4,velocity,center_uy,0.5583580136299133 +illusion_0.75L,ppo,362,72.4,velocity,lower_ux,0.9646897912025452 +illusion_0.75L,ppo,362,72.4,velocity,lower_uy,0.2273893505334854 +illusion_0.75L,ppo,363,72.6,velocity,upper_ux,1.0854460000991821 +illusion_0.75L,ppo,363,72.6,velocity,upper_uy,0.329088032245636 +illusion_0.75L,ppo,363,72.6,velocity,center_ux,0.964560329914093 +illusion_0.75L,ppo,363,72.6,velocity,center_uy,0.5441257953643799 +illusion_0.75L,ppo,363,72.6,velocity,lower_ux,1.0019028186798096 +illusion_0.75L,ppo,363,72.6,velocity,lower_uy,0.24941036105155945 +illusion_0.75L,ppo,364,72.8,velocity,upper_ux,1.0397661924362183 +illusion_0.75L,ppo,364,72.8,velocity,upper_uy,0.3079725205898285 +illusion_0.75L,ppo,364,72.8,velocity,center_ux,0.9806565642356873 +illusion_0.75L,ppo,364,72.8,velocity,center_uy,0.5370248556137085 +illusion_0.75L,ppo,364,72.8,velocity,lower_ux,1.039501667022705 +illusion_0.75L,ppo,364,72.8,velocity,lower_uy,0.2680547833442688 +illusion_0.75L,ppo,365,73.0,velocity,upper_ux,0.9951607584953308 +illusion_0.75L,ppo,365,73.0,velocity,upper_uy,0.2781773805618286 +illusion_0.75L,ppo,365,73.0,velocity,center_ux,0.9899387359619141 +illusion_0.75L,ppo,365,73.0,velocity,center_uy,0.5351485013961792 +illusion_0.75L,ppo,365,73.0,velocity,lower_ux,1.0780062675476074 +illusion_0.75L,ppo,365,73.0,velocity,lower_uy,0.28383907675743103 +illusion_0.75L,ppo,366,73.2,velocity,upper_ux,0.9519944787025452 +illusion_0.75L,ppo,366,73.2,velocity,upper_uy,0.23798638582229614 +illusion_0.75L,ppo,366,73.2,velocity,center_ux,0.9914966821670532 +illusion_0.75L,ppo,366,73.2,velocity,center_uy,0.5320835709571838 +illusion_0.75L,ppo,366,73.2,velocity,lower_ux,1.118194341659546 +illusion_0.75L,ppo,366,73.2,velocity,lower_uy,0.2969740033149719 +illusion_0.75L,ppo,367,73.4,velocity,upper_ux,0.9122494459152222 +illusion_0.75L,ppo,367,73.4,velocity,upper_uy,0.1867564618587494 +illusion_0.75L,ppo,367,73.4,velocity,center_ux,0.983146071434021 +illusion_0.75L,ppo,367,73.4,velocity,center_uy,0.5169482231140137 +illusion_0.75L,ppo,367,73.4,velocity,lower_ux,1.1609081029891968 +illusion_0.75L,ppo,367,73.4,velocity,lower_uy,0.30706465244293213 +illusion_0.75L,ppo,368,73.6,velocity,upper_ux,0.8794364929199219 +illusion_0.75L,ppo,368,73.6,velocity,upper_uy,0.1262940913438797 +illusion_0.75L,ppo,368,73.6,velocity,center_ux,0.962745726108551 +illusion_0.75L,ppo,368,73.6,velocity,center_uy,0.4739929139614105 +illusion_0.75L,ppo,368,73.6,velocity,lower_ux,1.2067714929580688 +illusion_0.75L,ppo,368,73.6,velocity,lower_uy,0.31261372566223145 +illusion_0.75L,ppo,369,73.8,velocity,upper_ux,0.857729434967041 +illusion_0.75L,ppo,369,73.8,velocity,upper_uy,0.0613277293741703 +illusion_0.75L,ppo,369,73.8,velocity,center_ux,0.9307717084884644 +illusion_0.75L,ppo,369,73.8,velocity,center_uy,0.38664233684539795 +illusion_0.75L,ppo,369,73.8,velocity,lower_ux,1.2550355195999146 +illusion_0.75L,ppo,369,73.8,velocity,lower_uy,0.309502512216568 +illusion_0.75L,ppo,370,74.0,velocity,upper_ux,0.8500314354896545 +illusion_0.75L,ppo,370,74.0,velocity,upper_uy,-0.0018761263927444816 +illusion_0.75L,ppo,370,74.0,velocity,center_ux,0.8922459483146667 +illusion_0.75L,ppo,370,74.0,velocity,center_uy,0.2473442107439041 +illusion_0.75L,ppo,370,74.0,velocity,lower_ux,1.3006446361541748 +illusion_0.75L,ppo,370,74.0,velocity,lower_uy,0.28861939907073975 +illusion_0.75L,ppo,371,74.2,velocity,upper_ux,0.8563011884689331 +illusion_0.75L,ppo,371,74.2,velocity,upper_uy,-0.058181032538414 +illusion_0.75L,ppo,371,74.2,velocity,center_ux,0.8557370901107788 +illusion_0.75L,ppo,371,74.2,velocity,center_uy,0.06676332652568817 +illusion_0.75L,ppo,371,74.2,velocity,lower_ux,1.3313182592391968 +illusion_0.75L,ppo,371,74.2,velocity,lower_uy,0.2353854775428772 +illusion_0.75L,ppo,372,74.4,velocity,upper_ux,0.8735561966896057 +illusion_0.75L,ppo,372,74.4,velocity,upper_uy,-0.10584326088428497 +illusion_0.75L,ppo,372,74.4,velocity,center_ux,0.8296054601669312 +illusion_0.75L,ppo,372,74.4,velocity,center_uy,-0.12689635157585144 +illusion_0.75L,ppo,372,74.4,velocity,lower_ux,1.3313233852386475 +illusion_0.75L,ppo,372,74.4,velocity,lower_uy,0.13949191570281982 +illusion_0.75L,ppo,373,74.6,velocity,upper_ux,0.897749125957489 +illusion_0.75L,ppo,373,74.6,velocity,upper_uy,-0.1460517942905426 +illusion_0.75L,ppo,373,74.6,velocity,center_ux,0.8191478848457336 +illusion_0.75L,ppo,373,74.6,velocity,center_uy,-0.29789191484451294 +illusion_0.75L,ppo,373,74.6,velocity,lower_ux,1.2946553230285645 +illusion_0.75L,ppo,373,74.6,velocity,lower_uy,0.01135021448135376 +illusion_0.75L,ppo,374,74.8,velocity,upper_ux,0.9258062839508057 +illusion_0.75L,ppo,374,74.8,velocity,upper_uy,-0.18078742921352386 +illusion_0.75L,ppo,374,74.8,velocity,center_ux,0.8254656195640564 +illusion_0.75L,ppo,374,74.8,velocity,center_uy,-0.41754528880119324 +illusion_0.75L,ppo,374,74.8,velocity,lower_ux,1.23188054561615 +illusion_0.75L,ppo,374,74.8,velocity,lower_uy,-0.11880705505609512 +illusion_0.75L,ppo,375,75.0,velocity,upper_ux,0.9562105536460876 +illusion_0.75L,ppo,375,75.0,velocity,upper_uy,-0.2114740014076233 +illusion_0.75L,ppo,375,75.0,velocity,center_ux,0.8444309830665588 +illusion_0.75L,ppo,375,75.0,velocity,center_uy,-0.480210542678833 +illusion_0.75L,ppo,375,75.0,velocity,lower_ux,1.1602790355682373 +illusion_0.75L,ppo,375,75.0,velocity,lower_uy,-0.222620889544487 +illusion_0.75L,ppo,376,75.2,velocity,upper_ux,0.9885218143463135 +illusion_0.75L,ppo,376,75.2,velocity,upper_uy,-0.23894158005714417 +illusion_0.75L,ppo,376,75.2,velocity,center_ux,0.8678874969482422 +illusion_0.75L,ppo,376,75.2,velocity,center_uy,-0.5051506757736206 +illusion_0.75L,ppo,376,75.2,velocity,lower_ux,1.0925076007843018 +illusion_0.75L,ppo,376,75.2,velocity,lower_uy,-0.288580060005188 +illusion_0.75L,ppo,377,75.4,velocity,upper_ux,1.0228840112686157 +illusion_0.75L,ppo,377,75.4,velocity,upper_uy,-0.2637757658958435 +illusion_0.75L,ppo,377,75.4,velocity,center_ux,0.8884202837944031 +illusion_0.75L,ppo,377,75.4,velocity,center_uy,-0.5172862410545349 +illusion_0.75L,ppo,377,75.4,velocity,lower_ux,1.034030795097351 +illusion_0.75L,ppo,377,75.4,velocity,lower_uy,-0.3201506435871124 +illusion_0.75L,ppo,378,75.6,velocity,upper_ux,1.0597562789916992 +illusion_0.75L,ppo,378,75.6,velocity,upper_uy,-0.2863323986530304 +illusion_0.75L,ppo,378,75.6,velocity,center_ux,0.9023557305335999 +illusion_0.75L,ppo,378,75.6,velocity,center_uy,-0.5308068990707397 +illusion_0.75L,ppo,378,75.6,velocity,lower_ux,0.9849153757095337 +illusion_0.75L,ppo,378,75.6,velocity,lower_uy,-0.32737836241722107 +illusion_0.75L,ppo,379,75.8,velocity,upper_ux,1.1000117063522339 +illusion_0.75L,ppo,379,75.8,velocity,upper_uy,-0.3067677617073059 +illusion_0.75L,ppo,379,75.8,velocity,center_ux,0.9085738658905029 +illusion_0.75L,ppo,379,75.8,velocity,center_uy,-0.5493011474609375 +illusion_0.75L,ppo,379,75.8,velocity,lower_ux,0.9425704479217529 +illusion_0.75L,ppo,379,75.8,velocity,lower_uy,-0.31944790482521057 +illusion_0.75L,ppo,380,76.0,velocity,upper_ux,1.1450111865997314 +illusion_0.75L,ppo,380,76.0,velocity,upper_uy,-0.3247961699962616 +illusion_0.75L,ppo,380,76.0,velocity,center_ux,0.9061897397041321 +illusion_0.75L,ppo,380,76.0,velocity,center_uy,-0.5703604221343994 +illusion_0.75L,ppo,380,76.0,velocity,lower_ux,0.9042075872421265 +illusion_0.75L,ppo,380,76.0,velocity,lower_uy,-0.3013897240161896 +illusion_0.75L,ppo,381,76.2,velocity,upper_ux,1.1964209079742432 +illusion_0.75L,ppo,381,76.2,velocity,upper_uy,-0.33931007981300354 +illusion_0.75L,ppo,381,76.2,velocity,center_ux,0.8935171365737915 +illusion_0.75L,ppo,381,76.2,velocity,center_uy,-0.5858576893806458 +illusion_0.75L,ppo,381,76.2,velocity,lower_ux,0.8682235479354858 +illusion_0.75L,ppo,381,76.2,velocity,lower_uy,-0.274219810962677 +illusion_0.75L,ppo,382,76.4,velocity,upper_ux,1.2555190324783325 +illusion_0.75L,ppo,382,76.4,velocity,upper_uy,-0.34698542952537537 +illusion_0.75L,ppo,382,76.4,velocity,center_ux,0.8692643642425537 +illusion_0.75L,ppo,382,76.4,velocity,center_uy,-0.5792772769927979 +illusion_0.75L,ppo,382,76.4,velocity,lower_ux,0.8347236514091492 +illusion_0.75L,ppo,382,76.4,velocity,lower_uy,-0.23690903186798096 +illusion_0.75L,ppo,383,76.6,velocity,upper_ux,1.3204182386398315 +illusion_0.75L,ppo,383,76.6,velocity,upper_uy,-0.3385922908782959 +illusion_0.75L,ppo,383,76.6,velocity,center_ux,0.8360339999198914 +illusion_0.75L,ppo,383,76.6,velocity,center_uy,-0.5265921950340271 +illusion_0.75L,ppo,383,76.6,velocity,lower_ux,0.8055808544158936 +illusion_0.75L,ppo,383,76.6,velocity,lower_uy,-0.1885368674993515 +illusion_0.75L,ppo,384,76.8,velocity,upper_ux,1.3803350925445557 +illusion_0.75L,ppo,384,76.8,velocity,upper_uy,-0.2951059341430664 +illusion_0.75L,ppo,384,76.8,velocity,center_ux,0.8025373220443726 +illusion_0.75L,ppo,384,76.8,velocity,center_uy,-0.4088060259819031 +illusion_0.75L,ppo,384,76.8,velocity,lower_ux,0.7840284705162048 +illusion_0.75L,ppo,384,76.8,velocity,lower_uy,-0.13008296489715576 +illusion_0.75L,ppo,385,77.0,velocity,upper_ux,1.416477084159851 +illusion_0.75L,ppo,385,77.0,velocity,upper_uy,-0.19879648089408875 +illusion_0.75L,ppo,385,77.0,velocity,center_ux,0.7797412276268005 +illusion_0.75L,ppo,385,77.0,velocity,center_uy,-0.22941261529922485 +illusion_0.75L,ppo,385,77.0,velocity,lower_ux,0.773884654045105 +illusion_0.75L,ppo,385,77.0,velocity,lower_uy,-0.06554371863603592 +illusion_0.75L,ppo,386,77.2,velocity,upper_ux,1.418047308921814 +illusion_0.75L,ppo,386,77.2,velocity,upper_uy,-0.059388112276792526 +illusion_0.75L,ppo,386,77.2,velocity,center_ux,0.774199366569519 +illusion_0.75L,ppo,386,77.2,velocity,center_uy,-0.015678562223911285 +illusion_0.75L,ppo,386,77.2,velocity,lower_ux,0.7781638503074646 +illusion_0.75L,ppo,386,77.2,velocity,lower_uy,-0.0014744519721716642 +illusion_0.75L,ppo,387,77.4,velocity,upper_ux,1.3904823064804077 +illusion_0.75L,ppo,387,77.4,velocity,upper_uy,0.08768656104803085 +illusion_0.75L,ppo,387,77.4,velocity,center_ux,0.7860545516014099 +illusion_0.75L,ppo,387,77.4,velocity,center_uy,0.196740061044693 +illusion_0.75L,ppo,387,77.4,velocity,lower_ux,0.7970791459083557 +illusion_0.75L,ppo,387,77.4,velocity,lower_uy,0.05562526732683182 +illusion_0.75L,ppo,388,77.6,velocity,upper_ux,1.3443759679794312 +illusion_0.75L,ppo,388,77.6,velocity,upper_uy,0.21007676422595978 +illusion_0.75L,ppo,388,77.6,velocity,center_ux,0.8113522529602051 +illusion_0.75L,ppo,388,77.6,velocity,center_uy,0.37693798542022705 +illusion_0.75L,ppo,388,77.6,velocity,lower_ux,0.8269751667976379 +illusion_0.75L,ppo,388,77.6,velocity,lower_uy,0.10302912443876266 +illusion_0.75L,ppo,389,77.8,velocity,upper_ux,1.2884658575057983 +illusion_0.75L,ppo,389,77.8,velocity,upper_uy,0.29243767261505127 +illusion_0.75L,ppo,389,77.8,velocity,center_ux,0.8446853160858154 +illusion_0.75L,ppo,389,77.8,velocity,center_uy,0.5021724700927734 +illusion_0.75L,ppo,389,77.8,velocity,lower_ux,0.8622124195098877 +illusion_0.75L,ppo,389,77.8,velocity,lower_uy,0.14236098527908325 +illusion_0.75L,ppo,390,78.0,velocity,upper_ux,1.2301216125488281 +illusion_0.75L,ppo,390,78.0,velocity,upper_uy,0.33504295349121094 +illusion_0.75L,ppo,390,78.0,velocity,center_ux,0.8808770775794983 +illusion_0.75L,ppo,390,78.0,velocity,center_uy,0.5620326399803162 +illusion_0.75L,ppo,390,78.0,velocity,lower_ux,0.8987753391265869 +illusion_0.75L,ppo,390,78.0,velocity,lower_uy,0.17626461386680603 +illusion_0.75L,ppo,391,78.2,velocity,upper_ux,1.17453932762146 +illusion_0.75L,ppo,391,78.2,velocity,upper_uy,0.34806564450263977 +illusion_0.75L,ppo,391,78.2,velocity,center_ux,0.9153411984443665 +illusion_0.75L,ppo,391,78.2,velocity,center_uy,0.5695137977600098 +illusion_0.75L,ppo,391,78.2,velocity,lower_ux,0.9354048371315002 +illusion_0.75L,ppo,391,78.2,velocity,lower_uy,0.20577532052993774 +illusion_0.75L,ppo,392,78.4,velocity,upper_ux,1.1234837770462036 +illusion_0.75L,ppo,392,78.4,velocity,upper_uy,0.3433477282524109 +illusion_0.75L,ppo,392,78.4,velocity,center_ux,0.9444252252578735 +illusion_0.75L,ppo,392,78.4,velocity,center_uy,0.5553011298179626 +illusion_0.75L,ppo,392,78.4,velocity,lower_ux,0.9721271395683289 +illusion_0.75L,ppo,392,78.4,velocity,lower_uy,0.23104673624038696 +illusion_0.75L,ppo,393,78.6,velocity,upper_ux,1.0760363340377808 +illusion_0.75L,ppo,393,78.6,velocity,upper_uy,0.32842931151390076 +illusion_0.75L,ppo,393,78.6,velocity,center_ux,0.9665012955665588 +illusion_0.75L,ppo,393,78.6,velocity,center_uy,0.5423920750617981 +illusion_0.75L,ppo,393,78.6,velocity,lower_ux,1.0091278553009033 +illusion_0.75L,ppo,393,78.6,velocity,lower_uy,0.2524511516094208 +illusion_0.75L,ppo,394,78.8,velocity,upper_ux,1.0305842161178589 +illusion_0.75L,ppo,394,78.8,velocity,upper_uy,0.3055309057235718 +illusion_0.75L,ppo,394,78.8,velocity,center_ux,0.9817041754722595 +illusion_0.75L,ppo,394,78.8,velocity,center_uy,0.5367504358291626 +illusion_0.75L,ppo,394,78.8,velocity,lower_ux,1.0467535257339478 +illusion_0.75L,ppo,394,78.8,velocity,lower_uy,0.2705743908882141 +illusion_0.75L,ppo,395,79.0,velocity,upper_ux,0.986247181892395 +illusion_0.75L,ppo,395,79.0,velocity,upper_uy,0.27362582087516785 +illusion_0.75L,ppo,395,79.0,velocity,center_ux,0.9900795221328735 +illusion_0.75L,ppo,395,79.0,velocity,center_uy,0.5353725552558899 +illusion_0.75L,ppo,395,79.0,velocity,lower_ux,1.0855575799942017 +illusion_0.75L,ppo,395,79.0,velocity,lower_uy,0.2859053909778595 +illusion_0.75L,ppo,396,79.2,velocity,upper_ux,0.9435865879058838 +illusion_0.75L,ppo,396,79.2,velocity,upper_uy,0.23105034232139587 +illusion_0.75L,ppo,396,79.2,velocity,center_ux,0.990399956703186 +illusion_0.75L,ppo,396,79.2,velocity,center_uy,0.5311084985733032 +illusion_0.75L,ppo,396,79.2,velocity,lower_ux,1.1262649297714233 +illusion_0.75L,ppo,396,79.2,velocity,lower_uy,0.29854172468185425 +illusion_0.75L,ppo,397,79.4,velocity,upper_ux,0.9048696160316467 +illusion_0.75L,ppo,397,79.4,velocity,upper_uy,0.17746122181415558 +illusion_0.75L,ppo,397,79.4,velocity,center_ux,0.9803413152694702 +illusion_0.75L,ppo,397,79.4,velocity,center_uy,0.512053370475769 +illusion_0.75L,ppo,397,79.4,velocity,lower_ux,1.1696797609329224 +illusion_0.75L,ppo,397,79.4,velocity,lower_uy,0.3079598844051361 +illusion_0.75L,ppo,398,79.6,velocity,upper_ux,0.8738219738006592 +illusion_0.75L,ppo,398,79.6,velocity,upper_uy,0.1152581200003624 +illusion_0.75L,ppo,398,79.6,velocity,center_ux,0.9580344557762146 +illusion_0.75L,ppo,398,79.6,velocity,center_uy,0.46171510219573975 +illusion_0.75L,ppo,398,79.6,velocity,lower_ux,1.216255784034729 +illusion_0.75L,ppo,398,79.6,velocity,lower_uy,0.31226131319999695 +illusion_0.75L,ppo,399,79.8,velocity,upper_ux,0.8545224070549011 +illusion_0.75L,ppo,399,79.8,velocity,upper_uy,0.04962790012359619 +illusion_0.75L,ppo,399,79.8,velocity,center_ux,0.9246679544448853 +illusion_0.75L,ppo,399,79.8,velocity,center_uy,0.3643251359462738 +illusion_0.75L,ppo,399,79.8,velocity,lower_ux,1.2646129131317139 +illusion_0.75L,ppo,399,79.8,velocity,lower_uy,0.3066197335720062 +illusion_0.75L,ppo,0,0.0,force,front_fx,0.0017352784052491188 +illusion_0.75L,ppo,0,0.0,force,front_fy,0.00025491940323263407 +illusion_0.75L,ppo,0,0.0,force,upper_fx,0.0013487270334735513 +illusion_0.75L,ppo,0,0.0,force,upper_fy,0.0031360096763819456 +illusion_0.75L,ppo,0,0.0,force,lower_fx,0.0011379566276445985 +illusion_0.75L,ppo,0,0.0,force,lower_fy,-0.00298038637265563 +illusion_0.75L,ppo,1,0.2,force,front_fx,0.0017559343250468373 +illusion_0.75L,ppo,1,0.2,force,front_fy,0.000549698481336236 +illusion_0.75L,ppo,1,0.2,force,upper_fx,0.001300143776461482 +illusion_0.75L,ppo,1,0.2,force,upper_fy,0.00321865058504045 +illusion_0.75L,ppo,1,0.2,force,lower_fx,0.0010455516166985035 +illusion_0.75L,ppo,1,0.2,force,lower_fy,-0.003156463848426938 +illusion_0.75L,ppo,2,0.4,force,front_fx,0.0017976436065509915 +illusion_0.75L,ppo,2,0.4,force,front_fy,0.0007255986565724015 +illusion_0.75L,ppo,2,0.4,force,upper_fx,0.0012918361462652683 +illusion_0.75L,ppo,2,0.4,force,upper_fy,0.0033593729604035616 +illusion_0.75L,ppo,2,0.4,force,lower_fx,0.0009751743637025356 +illusion_0.75L,ppo,2,0.4,force,lower_fy,-0.003281122539192438 +illusion_0.75L,ppo,3,0.6,force,front_fx,0.0018645637901499867 +illusion_0.75L,ppo,3,0.6,force,front_fy,0.0008699091267772019 +illusion_0.75L,ppo,3,0.6,force,upper_fx,0.0013106993865221739 +illusion_0.75L,ppo,3,0.6,force,upper_fy,0.003529385896399617 +illusion_0.75L,ppo,3,0.6,force,lower_fx,0.0009009872446767986 +illusion_0.75L,ppo,3,0.6,force,lower_fy,-0.003348279045894742 +illusion_0.75L,ppo,4,0.8,force,front_fx,0.0019330999348312616 +illusion_0.75L,ppo,4,0.8,force,front_fy,0.0009742575348354876 +illusion_0.75L,ppo,4,0.8,force,upper_fx,0.0013804255286231637 +illusion_0.75L,ppo,4,0.8,force,upper_fy,0.003673973958939314 +illusion_0.75L,ppo,4,0.8,force,lower_fx,0.0007844785577617586 +illusion_0.75L,ppo,4,0.8,force,lower_fy,-0.0033761155791580677 +illusion_0.75L,ppo,5,1.0,force,front_fx,0.0020390304271131754 +illusion_0.75L,ppo,5,1.0,force,front_fy,0.0009970148093998432 +illusion_0.75L,ppo,5,1.0,force,upper_fx,0.0015027693007141352 +illusion_0.75L,ppo,5,1.0,force,upper_fy,0.003743448294699192 +illusion_0.75L,ppo,5,1.0,force,lower_fx,0.000606942514423281 +illusion_0.75L,ppo,5,1.0,force,lower_fy,-0.0033964705653488636 +illusion_0.75L,ppo,6,1.2,force,front_fx,0.0021404996514320374 +illusion_0.75L,ppo,6,1.2,force,front_fy,0.0009840172715485096 +illusion_0.75L,ppo,6,1.2,force,upper_fx,0.00162474752869457 +illusion_0.75L,ppo,6,1.2,force,upper_fy,0.003733585588634014 +illusion_0.75L,ppo,6,1.2,force,lower_fx,0.0003883686731569469 +illusion_0.75L,ppo,6,1.2,force,lower_fy,-0.003439781256020069 +illusion_0.75L,ppo,7,1.4,force,front_fx,0.0022307245526462793 +illusion_0.75L,ppo,7,1.4,force,front_fy,0.0009442497976124287 +illusion_0.75L,ppo,7,1.4,force,upper_fx,0.0017129168845713139 +illusion_0.75L,ppo,7,1.4,force,upper_fy,0.0036828152369707823 +illusion_0.75L,ppo,7,1.4,force,lower_fx,0.00016417585720773786 +illusion_0.75L,ppo,7,1.4,force,lower_fy,-0.0035043982788920403 +illusion_0.75L,ppo,8,1.6,force,front_fx,0.002306716050952673 +illusion_0.75L,ppo,8,1.6,force,front_fy,0.000937060103751719 +illusion_0.75L,ppo,8,1.6,force,upper_fx,0.0017705183709040284 +illusion_0.75L,ppo,8,1.6,force,upper_fy,0.0036353839095681906 +illusion_0.75L,ppo,8,1.6,force,lower_fx,-2.692532325454522e-05 +illusion_0.75L,ppo,8,1.6,force,lower_fy,-0.003571577137336135 +illusion_0.75L,ppo,9,1.8,force,front_fx,0.00235129171051085 +illusion_0.75L,ppo,9,1.8,force,front_fy,0.000914447009563446 +illusion_0.75L,ppo,9,1.8,force,upper_fx,0.0018008039332926273 +illusion_0.75L,ppo,9,1.8,force,upper_fy,0.003611563704907894 +illusion_0.75L,ppo,9,1.8,force,lower_fx,-0.00018493250536266714 +illusion_0.75L,ppo,9,1.8,force,lower_fy,-0.0036298916675150394 +illusion_0.75L,ppo,10,2.0,force,front_fx,0.0023934838827699423 +illusion_0.75L,ppo,10,2.0,force,front_fy,0.0008811072912067175 +illusion_0.75L,ppo,10,2.0,force,upper_fx,0.0018091327510774136 +illusion_0.75L,ppo,10,2.0,force,upper_fy,0.003606886835768819 +illusion_0.75L,ppo,10,2.0,force,lower_fx,-0.0003226722765248269 +illusion_0.75L,ppo,10,2.0,force,lower_fy,-0.0036786580458283424 +illusion_0.75L,ppo,11,2.2,force,front_fx,0.0024014220107346773 +illusion_0.75L,ppo,11,2.2,force,front_fy,0.0008395742624998093 +illusion_0.75L,ppo,11,2.2,force,upper_fx,0.0018094832776114345 +illusion_0.75L,ppo,11,2.2,force,upper_fy,0.003611291293054819 +illusion_0.75L,ppo,11,2.2,force,lower_fx,-0.0004392363189253956 +illusion_0.75L,ppo,11,2.2,force,lower_fy,-0.0037240334786474705 +illusion_0.75L,ppo,12,2.4,force,front_fx,0.0023901567328721285 +illusion_0.75L,ppo,12,2.4,force,front_fy,0.0008000982343219221 +illusion_0.75L,ppo,12,2.4,force,upper_fx,0.0018026551697403193 +illusion_0.75L,ppo,12,2.4,force,upper_fy,0.0036132929380983114 +illusion_0.75L,ppo,12,2.4,force,lower_fx,-0.0005499038961715996 +illusion_0.75L,ppo,12,2.4,force,lower_fy,-0.003769122762605548 +illusion_0.75L,ppo,13,2.6,force,front_fx,0.0023645469918847084 +illusion_0.75L,ppo,13,2.6,force,front_fy,0.0007254690863192081 +illusion_0.75L,ppo,13,2.6,force,upper_fx,0.0017919326201081276 +illusion_0.75L,ppo,13,2.6,force,upper_fy,0.003608378581702709 +illusion_0.75L,ppo,13,2.6,force,lower_fx,-0.0006518380832858384 +illusion_0.75L,ppo,13,2.6,force,lower_fy,-0.0038304633926600218 +illusion_0.75L,ppo,14,2.8,force,front_fx,0.0023262083996087313 +illusion_0.75L,ppo,14,2.8,force,front_fy,0.0006986098014749587 +illusion_0.75L,ppo,14,2.8,force,upper_fx,0.001784859923645854 +illusion_0.75L,ppo,14,2.8,force,upper_fy,0.0035912408493459225 +illusion_0.75L,ppo,14,2.8,force,lower_fx,-0.0007286664331331849 +illusion_0.75L,ppo,14,2.8,force,lower_fy,-0.003907785285264254 +illusion_0.75L,ppo,15,3.0,force,front_fx,0.002287094248458743 +illusion_0.75L,ppo,15,3.0,force,front_fy,0.0006553427083417773 +illusion_0.75L,ppo,15,3.0,force,upper_fx,0.0017718368908390403 +illusion_0.75L,ppo,15,3.0,force,upper_fy,0.0035615437664091587 +illusion_0.75L,ppo,15,3.0,force,lower_fx,-0.0007872142596170306 +illusion_0.75L,ppo,15,3.0,force,lower_fy,-0.004007058683782816 +illusion_0.75L,ppo,16,3.2,force,front_fx,0.002258475637063384 +illusion_0.75L,ppo,16,3.2,force,front_fy,0.0006409465568140149 +illusion_0.75L,ppo,16,3.2,force,upper_fx,0.0017629750072956085 +illusion_0.75L,ppo,16,3.2,force,upper_fy,0.003507255809381604 +illusion_0.75L,ppo,16,3.2,force,lower_fx,-0.0008145753527060151 +illusion_0.75L,ppo,16,3.2,force,lower_fy,-0.004115865100175142 +illusion_0.75L,ppo,17,3.4,force,front_fx,0.002249538665637374 +illusion_0.75L,ppo,17,3.4,force,front_fy,0.0006698157521896064 +illusion_0.75L,ppo,17,3.4,force,upper_fx,0.0017616343684494495 +illusion_0.75L,ppo,17,3.4,force,upper_fy,0.0034232554025948048 +illusion_0.75L,ppo,17,3.4,force,lower_fx,-0.0008138723787851632 +illusion_0.75L,ppo,17,3.4,force,lower_fy,-0.004215756431221962 +illusion_0.75L,ppo,18,3.6,force,front_fx,0.0022680950351059437 +illusion_0.75L,ppo,18,3.6,force,front_fy,0.0007255920791067183 +illusion_0.75L,ppo,18,3.6,force,upper_fx,0.001771765761077404 +illusion_0.75L,ppo,18,3.6,force,upper_fy,0.0033042614813894033 +illusion_0.75L,ppo,18,3.6,force,lower_fx,-0.0007977834902703762 +illusion_0.75L,ppo,18,3.6,force,lower_fy,-0.004292227327823639 +illusion_0.75L,ppo,19,3.8,force,front_fx,0.0023229802027344704 +illusion_0.75L,ppo,19,3.8,force,front_fy,0.000804418174084276 +illusion_0.75L,ppo,19,3.8,force,upper_fx,0.001808774657547474 +illusion_0.75L,ppo,19,3.8,force,upper_fy,0.003153261262923479 +illusion_0.75L,ppo,19,3.8,force,lower_fx,-0.0007693214574828744 +illusion_0.75L,ppo,19,3.8,force,lower_fy,-0.004341864958405495 +illusion_0.75L,ppo,20,4.0,force,front_fx,0.002413057489320636 +illusion_0.75L,ppo,20,4.0,force,front_fy,0.0008884347043931484 +illusion_0.75L,ppo,20,4.0,force,upper_fx,0.001856836024671793 +illusion_0.75L,ppo,20,4.0,force,upper_fy,0.002986022038385272 +illusion_0.75L,ppo,20,4.0,force,lower_fx,-0.0007554771727882326 +illusion_0.75L,ppo,20,4.0,force,lower_fy,-0.004376277793198824 +illusion_0.75L,ppo,21,4.2,force,front_fx,0.0025109860580414534 +illusion_0.75L,ppo,21,4.2,force,front_fy,0.0009724118281155825 +illusion_0.75L,ppo,21,4.2,force,upper_fx,0.001909357262775302 +illusion_0.75L,ppo,21,4.2,force,upper_fy,0.002823073184117675 +illusion_0.75L,ppo,21,4.2,force,lower_fx,-0.0007595151546411216 +illusion_0.75L,ppo,21,4.2,force,lower_fy,-0.004403919912874699 +illusion_0.75L,ppo,22,4.4,force,front_fx,0.0026306842919439077 +illusion_0.75L,ppo,22,4.4,force,front_fy,0.0010501754004508257 +illusion_0.75L,ppo,22,4.4,force,upper_fx,0.0019522345392033458 +illusion_0.75L,ppo,22,4.4,force,upper_fy,0.0026800825726240873 +illusion_0.75L,ppo,22,4.4,force,lower_fx,-0.0007847351371310651 +illusion_0.75L,ppo,22,4.4,force,lower_fy,-0.004428862128406763 +illusion_0.75L,ppo,23,4.6,force,front_fx,0.002749243751168251 +illusion_0.75L,ppo,23,4.6,force,front_fy,0.0010797801660373807 +illusion_0.75L,ppo,23,4.6,force,upper_fx,0.0019706175662577152 +illusion_0.75L,ppo,23,4.6,force,upper_fy,0.0025739988777786493 +illusion_0.75L,ppo,23,4.6,force,lower_fx,-0.0008339530904777348 +illusion_0.75L,ppo,23,4.6,force,lower_fy,-0.004449889063835144 +illusion_0.75L,ppo,24,4.8,force,front_fx,0.002875538542866707 +illusion_0.75L,ppo,24,4.8,force,front_fy,0.0010757028358057141 +illusion_0.75L,ppo,24,4.8,force,upper_fx,0.001982505666092038 +illusion_0.75L,ppo,24,4.8,force,upper_fy,0.0025166005361825228 +illusion_0.75L,ppo,24,4.8,force,lower_fx,-0.0008837523055262864 +illusion_0.75L,ppo,24,4.8,force,lower_fy,-0.004450618755072355 +illusion_0.75L,ppo,25,5.0,force,front_fx,0.0029907196294516325 +illusion_0.75L,ppo,25,5.0,force,front_fy,0.0010525527177378535 +illusion_0.75L,ppo,25,5.0,force,upper_fx,0.00199464475736022 +illusion_0.75L,ppo,25,5.0,force,upper_fy,0.0025121006183326244 +illusion_0.75L,ppo,25,5.0,force,lower_fx,-0.0009339196258224547 +illusion_0.75L,ppo,25,5.0,force,lower_fy,-0.004420611076056957 +illusion_0.75L,ppo,26,5.2,force,front_fx,0.003093249863013625 +illusion_0.75L,ppo,26,5.2,force,front_fy,0.0010674772784113884 +illusion_0.75L,ppo,26,5.2,force,upper_fx,0.0020130372140556574 +illusion_0.75L,ppo,26,5.2,force,upper_fy,0.0025649303570389748 +illusion_0.75L,ppo,26,5.2,force,lower_fx,-0.0009921388700604439 +illusion_0.75L,ppo,26,5.2,force,lower_fy,-0.0043609365820884705 +illusion_0.75L,ppo,27,5.4,force,front_fx,0.0031500188633799553 +illusion_0.75L,ppo,27,5.4,force,front_fy,0.0009925063932314515 +illusion_0.75L,ppo,27,5.4,force,upper_fx,0.002039073733612895 +illusion_0.75L,ppo,27,5.4,force,upper_fy,0.0026650025974959135 +illusion_0.75L,ppo,27,5.4,force,lower_fx,-0.00107000267598778 +illusion_0.75L,ppo,27,5.4,force,lower_fy,-0.0042797839269042015 +illusion_0.75L,ppo,28,5.6,force,front_fx,0.0032081857789307833 +illusion_0.75L,ppo,28,5.6,force,front_fy,0.0009388533071614802 +illusion_0.75L,ppo,28,5.6,force,upper_fx,0.002072548493742943 +illusion_0.75L,ppo,28,5.6,force,upper_fy,0.0027926741167902946 +illusion_0.75L,ppo,28,5.6,force,lower_fx,-0.0011663041077554226 +illusion_0.75L,ppo,28,5.6,force,lower_fy,-0.004184817895293236 +illusion_0.75L,ppo,29,5.8,force,front_fx,0.0032130153849720955 +illusion_0.75L,ppo,29,5.8,force,front_fy,0.0008854714105837047 +illusion_0.75L,ppo,29,5.8,force,upper_fx,0.0020999799016863108 +illusion_0.75L,ppo,29,5.8,force,upper_fy,0.002932279370725155 +illusion_0.75L,ppo,29,5.8,force,lower_fx,-0.001282467506825924 +illusion_0.75L,ppo,29,5.8,force,lower_fy,-0.004079689271748066 +illusion_0.75L,ppo,30,6.0,force,front_fx,0.0031731710769236088 +illusion_0.75L,ppo,30,6.0,force,front_fy,0.0008665331988595426 +illusion_0.75L,ppo,30,6.0,force,upper_fx,0.0021281372755765915 +illusion_0.75L,ppo,30,6.0,force,upper_fy,0.0030674629379063845 +illusion_0.75L,ppo,30,6.0,force,lower_fx,-0.0013970880536362529 +illusion_0.75L,ppo,30,6.0,force,lower_fy,-0.003973935730755329 +illusion_0.75L,ppo,31,6.2,force,front_fx,0.0031318766996264458 +illusion_0.75L,ppo,31,6.2,force,front_fy,0.0008504054858349264 +illusion_0.75L,ppo,31,6.2,force,upper_fx,0.002149685053154826 +illusion_0.75L,ppo,31,6.2,force,upper_fy,0.0031910273246467113 +illusion_0.75L,ppo,31,6.2,force,lower_fx,-0.0015013925731182098 +illusion_0.75L,ppo,31,6.2,force,lower_fy,-0.0038783270865678787 +illusion_0.75L,ppo,32,6.4,force,front_fx,0.0030506188049912453 +illusion_0.75L,ppo,32,6.4,force,front_fy,0.0008169947541318834 +illusion_0.75L,ppo,32,6.4,force,upper_fx,0.0021629638504236937 +illusion_0.75L,ppo,32,6.4,force,upper_fy,0.0032957252115011215 +illusion_0.75L,ppo,32,6.4,force,lower_fx,-0.0015802346169948578 +illusion_0.75L,ppo,32,6.4,force,lower_fy,-0.0037953644059598446 +illusion_0.75L,ppo,33,6.6,force,front_fx,0.0029514790512621403 +illusion_0.75L,ppo,33,6.6,force,front_fy,0.0008344472735188901 +illusion_0.75L,ppo,33,6.6,force,upper_fx,0.002169623039662838 +illusion_0.75L,ppo,33,6.6,force,upper_fy,0.0033737935591489077 +illusion_0.75L,ppo,33,6.6,force,lower_fx,-0.0016211047768592834 +illusion_0.75L,ppo,33,6.6,force,lower_fy,-0.0037229314912110567 +illusion_0.75L,ppo,34,6.8,force,front_fx,0.0028612292371690273 +illusion_0.75L,ppo,34,6.8,force,front_fy,0.0008773019071668386 +illusion_0.75L,ppo,34,6.8,force,upper_fx,0.0021687482949346304 +illusion_0.75L,ppo,34,6.8,force,upper_fy,0.0034167738631367683 +illusion_0.75L,ppo,34,6.8,force,lower_fx,-0.0016224734717980027 +illusion_0.75L,ppo,34,6.8,force,lower_fy,-0.003661483759060502 +illusion_0.75L,ppo,35,7.0,force,front_fx,0.0027691873256117105 +illusion_0.75L,ppo,35,7.0,force,front_fy,0.0009076728601939976 +illusion_0.75L,ppo,35,7.0,force,upper_fx,0.002170863328501582 +illusion_0.75L,ppo,35,7.0,force,upper_fy,0.0034223648253828287 +illusion_0.75L,ppo,35,7.0,force,lower_fx,-0.0015795571962371469 +illusion_0.75L,ppo,35,7.0,force,lower_fy,-0.0036105052568018436 +illusion_0.75L,ppo,36,7.2,force,front_fx,0.002688165521249175 +illusion_0.75L,ppo,36,7.2,force,front_fy,0.0009741411195136607 +illusion_0.75L,ppo,36,7.2,force,upper_fx,0.0021850301418453455 +illusion_0.75L,ppo,36,7.2,force,upper_fy,0.0033882444258779287 +illusion_0.75L,ppo,36,7.2,force,lower_fx,-0.0014920190442353487 +illusion_0.75L,ppo,36,7.2,force,lower_fy,-0.0035645910538733006 +illusion_0.75L,ppo,37,7.4,force,front_fx,0.0026355343870818615 +illusion_0.75L,ppo,37,7.4,force,front_fy,0.0010561305098235607 +illusion_0.75L,ppo,37,7.4,force,upper_fx,0.0022017161827534437 +illusion_0.75L,ppo,37,7.4,force,upper_fy,0.0033214744180440903 +illusion_0.75L,ppo,37,7.4,force,lower_fx,-0.0013851613039150834 +illusion_0.75L,ppo,37,7.4,force,lower_fy,-0.003528666216880083 +illusion_0.75L,ppo,38,7.6,force,front_fx,0.0026064347475767136 +illusion_0.75L,ppo,38,7.6,force,front_fy,0.0011228675721213222 +illusion_0.75L,ppo,38,7.6,force,upper_fx,0.0022255321964621544 +illusion_0.75L,ppo,38,7.6,force,upper_fy,0.0032331920228898525 +illusion_0.75L,ppo,38,7.6,force,lower_fx,-0.0012669365387409925 +illusion_0.75L,ppo,38,7.6,force,lower_fy,-0.003506907494738698 +illusion_0.75L,ppo,39,7.8,force,front_fx,0.002584257395938039 +illusion_0.75L,ppo,39,7.8,force,front_fy,0.0011743591167032719 +illusion_0.75L,ppo,39,7.8,force,upper_fx,0.0022433390840888023 +illusion_0.75L,ppo,39,7.8,force,upper_fy,0.0031372029334306717 +illusion_0.75L,ppo,39,7.8,force,lower_fx,-0.0011548094917088747 +illusion_0.75L,ppo,39,7.8,force,lower_fy,-0.003505660919472575 +illusion_0.75L,ppo,40,8.0,force,front_fx,0.002562454901635647 +illusion_0.75L,ppo,40,8.0,force,front_fy,0.0012070671655237675 +illusion_0.75L,ppo,40,8.0,force,upper_fx,0.0022479414474219084 +illusion_0.75L,ppo,40,8.0,force,upper_fy,0.0030480625573545694 +illusion_0.75L,ppo,40,8.0,force,lower_fx,-0.0010557021014392376 +illusion_0.75L,ppo,40,8.0,force,lower_fy,-0.0035255462862551212 +illusion_0.75L,ppo,41,8.2,force,front_fx,0.0025294951628893614 +illusion_0.75L,ppo,41,8.2,force,front_fy,0.0012104962952435017 +illusion_0.75L,ppo,41,8.2,force,upper_fx,0.0022397912107408047 +illusion_0.75L,ppo,41,8.2,force,upper_fy,0.002972204005345702 +illusion_0.75L,ppo,41,8.2,force,lower_fx,-0.0009645936661399901 +illusion_0.75L,ppo,41,8.2,force,lower_fy,-0.003562093013897538 +illusion_0.75L,ppo,42,8.4,force,front_fx,0.002510965568944812 +illusion_0.75L,ppo,42,8.4,force,front_fy,0.0011923931306228042 +illusion_0.75L,ppo,42,8.4,force,upper_fx,0.002222971757873893 +illusion_0.75L,ppo,42,8.4,force,upper_fy,0.002918523270636797 +illusion_0.75L,ppo,42,8.4,force,lower_fx,-0.0008782348013482988 +illusion_0.75L,ppo,42,8.4,force,lower_fy,-0.003620375646278262 +illusion_0.75L,ppo,43,8.6,force,front_fx,0.002480150666087866 +illusion_0.75L,ppo,43,8.6,force,front_fy,0.0011554337106645107 +illusion_0.75L,ppo,43,8.6,force,upper_fx,0.0021932264789938927 +illusion_0.75L,ppo,43,8.6,force,upper_fy,0.0028914078138768673 +illusion_0.75L,ppo,43,8.6,force,lower_fx,-0.0007978754001669586 +illusion_0.75L,ppo,43,8.6,force,lower_fy,-0.0036918881814926863 +illusion_0.75L,ppo,44,8.8,force,front_fx,0.0024429697077721357 +illusion_0.75L,ppo,44,8.8,force,front_fy,0.0011210839729756117 +illusion_0.75L,ppo,44,8.8,force,upper_fx,0.0021492522209882736 +illusion_0.75L,ppo,44,8.8,force,upper_fy,0.002894554054364562 +illusion_0.75L,ppo,44,8.8,force,lower_fx,-0.0007307545165531337 +illusion_0.75L,ppo,44,8.8,force,lower_fy,-0.0037744080182164907 +illusion_0.75L,ppo,45,9.0,force,front_fx,0.002400095108896494 +illusion_0.75L,ppo,45,9.0,force,front_fy,0.001047661411575973 +illusion_0.75L,ppo,45,9.0,force,upper_fx,0.0020955605432391167 +illusion_0.75L,ppo,45,9.0,force,upper_fy,0.002922859974205494 +illusion_0.75L,ppo,45,9.0,force,lower_fx,-0.0006772940396331251 +illusion_0.75L,ppo,45,9.0,force,lower_fy,-0.0038637658581137657 +illusion_0.75L,ppo,46,9.2,force,front_fx,0.002360725775361061 +illusion_0.75L,ppo,46,9.2,force,front_fy,0.0009862759616225958 +illusion_0.75L,ppo,46,9.2,force,upper_fx,0.002032465534284711 +illusion_0.75L,ppo,46,9.2,force,upper_fy,0.0029688156209886074 +illusion_0.75L,ppo,46,9.2,force,lower_fx,-0.0006419407436624169 +illusion_0.75L,ppo,46,9.2,force,lower_fy,-0.003954102285206318 +illusion_0.75L,ppo,47,9.4,force,front_fx,0.0023320759646594524 +illusion_0.75L,ppo,47,9.4,force,front_fy,0.0009256206685677171 +illusion_0.75L,ppo,47,9.4,force,upper_fx,0.0019718066323548555 +illusion_0.75L,ppo,47,9.4,force,upper_fy,0.0030228784307837486 +illusion_0.75L,ppo,47,9.4,force,lower_fx,-0.000615101947914809 +illusion_0.75L,ppo,47,9.4,force,lower_fy,-0.004045224282890558 +illusion_0.75L,ppo,48,9.6,force,front_fx,0.0023146681487560272 +illusion_0.75L,ppo,48,9.6,force,front_fy,0.0008687387453392148 +illusion_0.75L,ppo,48,9.6,force,upper_fx,0.0019100626232102513 +illusion_0.75L,ppo,48,9.6,force,upper_fy,0.003076178953051567 +illusion_0.75L,ppo,48,9.6,force,lower_fx,-0.0006037106504663825 +illusion_0.75L,ppo,48,9.6,force,lower_fy,-0.004137190990149975 +illusion_0.75L,ppo,49,9.8,force,front_fx,0.0023138211108744144 +illusion_0.75L,ppo,49,9.8,force,front_fy,0.0008303107460960746 +illusion_0.75L,ppo,49,9.8,force,upper_fx,0.0018543930491432548 +illusion_0.75L,ppo,49,9.8,force,upper_fy,0.003117996733635664 +illusion_0.75L,ppo,49,9.8,force,lower_fx,-0.00060098129324615 +illusion_0.75L,ppo,49,9.8,force,lower_fy,-0.004220200702548027 +illusion_0.75L,ppo,50,10.0,force,front_fx,0.0023284589406102896 +illusion_0.75L,ppo,50,10.0,force,front_fy,0.0008170670480467379 +illusion_0.75L,ppo,50,10.0,force,upper_fx,0.0018079541623592377 +illusion_0.75L,ppo,50,10.0,force,upper_fy,0.0031359465792775154 +illusion_0.75L,ppo,50,10.0,force,lower_fx,-0.0006057398277334869 +illusion_0.75L,ppo,50,10.0,force,lower_fy,-0.00428608525544405 +illusion_0.75L,ppo,51,10.2,force,front_fx,0.0023839157074689865 +illusion_0.75L,ppo,51,10.2,force,front_fy,0.0008433024049736559 +illusion_0.75L,ppo,51,10.2,force,upper_fx,0.0017678478034213185 +illusion_0.75L,ppo,51,10.2,force,upper_fy,0.0031222926918417215 +illusion_0.75L,ppo,51,10.2,force,lower_fx,-0.0006275440682657063 +illusion_0.75L,ppo,51,10.2,force,lower_fy,-0.004328900948166847 +illusion_0.75L,ppo,52,10.4,force,front_fx,0.002448966959491372 +illusion_0.75L,ppo,52,10.4,force,front_fy,0.0008632146054878831 +illusion_0.75L,ppo,52,10.4,force,upper_fx,0.0017471201717853546 +illusion_0.75L,ppo,52,10.4,force,upper_fy,0.0030798548832535744 +illusion_0.75L,ppo,52,10.4,force,lower_fx,-0.0006579993641935289 +illusion_0.75L,ppo,52,10.4,force,lower_fy,-0.0043412623926997185 +illusion_0.75L,ppo,53,10.6,force,front_fx,0.002567979507148266 +illusion_0.75L,ppo,53,10.6,force,front_fy,0.0009096639114432037 +illusion_0.75L,ppo,53,10.6,force,upper_fx,0.0017418772913515568 +illusion_0.75L,ppo,53,10.6,force,upper_fy,0.00301713147200644 +illusion_0.75L,ppo,53,10.6,force,lower_fx,-0.0007036585593596101 +illusion_0.75L,ppo,53,10.6,force,lower_fy,-0.004326348192989826 +illusion_0.75L,ppo,54,10.8,force,front_fx,0.002677974058315158 +illusion_0.75L,ppo,54,10.8,force,front_fy,0.0009688819409348071 +illusion_0.75L,ppo,54,10.8,force,upper_fx,0.0017491098260506988 +illusion_0.75L,ppo,54,10.8,force,upper_fy,0.0029469309374690056 +illusion_0.75L,ppo,54,10.8,force,lower_fx,-0.0007678658585064113 +illusion_0.75L,ppo,54,10.8,force,lower_fy,-0.0042876251973211765 +illusion_0.75L,ppo,55,11.0,force,front_fx,0.0028421557508409023 +illusion_0.75L,ppo,55,11.0,force,front_fy,0.001019451068714261 +illusion_0.75L,ppo,55,11.0,force,upper_fx,0.0017621890874579549 +illusion_0.75L,ppo,55,11.0,force,upper_fy,0.002878018422052264 +illusion_0.75L,ppo,55,11.0,force,lower_fx,-0.0008560474379919469 +illusion_0.75L,ppo,55,11.0,force,lower_fy,-0.004230140708386898 +illusion_0.75L,ppo,56,11.2,force,front_fx,0.0030000777915120125 +illusion_0.75L,ppo,56,11.2,force,front_fy,0.0010449900291860104 +illusion_0.75L,ppo,56,11.2,force,upper_fx,0.0017835483886301517 +illusion_0.75L,ppo,56,11.2,force,upper_fy,0.0028166782576590776 +illusion_0.75L,ppo,56,11.2,force,lower_fx,-0.0009612292633391917 +illusion_0.75L,ppo,56,11.2,force,lower_fy,-0.004154564812779427 +illusion_0.75L,ppo,57,11.4,force,front_fx,0.003143194830045104 +illusion_0.75L,ppo,57,11.4,force,front_fy,0.001018607639707625 +illusion_0.75L,ppo,57,11.4,force,upper_fx,0.001815939205698669 +illusion_0.75L,ppo,57,11.4,force,upper_fy,0.0027743414975702763 +illusion_0.75L,ppo,57,11.4,force,lower_fx,-0.0010774339316412807 +illusion_0.75L,ppo,57,11.4,force,lower_fy,-0.004055312369018793 +illusion_0.75L,ppo,58,11.6,force,front_fx,0.003291010158136487 +illusion_0.75L,ppo,58,11.6,force,front_fy,0.0010101309744641185 +illusion_0.75L,ppo,58,11.6,force,upper_fx,0.0018671544967219234 +illusion_0.75L,ppo,58,11.6,force,upper_fy,0.0027516379486769438 +illusion_0.75L,ppo,58,11.6,force,lower_fx,-0.0011933819623664021 +illusion_0.75L,ppo,58,11.6,force,lower_fy,-0.003929152153432369 +illusion_0.75L,ppo,59,11.8,force,front_fx,0.0034099635668098927 +illusion_0.75L,ppo,59,11.8,force,front_fy,0.0009898814605548978 +illusion_0.75L,ppo,59,11.8,force,upper_fx,0.0019351596711203456 +illusion_0.75L,ppo,59,11.8,force,upper_fy,0.002758502261713147 +illusion_0.75L,ppo,59,11.8,force,lower_fx,-0.0013110130093991756 +illusion_0.75L,ppo,59,11.8,force,lower_fy,-0.003788052825257182 +illusion_0.75L,ppo,60,12.0,force,front_fx,0.003517006989568472 +illusion_0.75L,ppo,60,12.0,force,front_fy,0.0009775892831385136 +illusion_0.75L,ppo,60,12.0,force,upper_fx,0.002013345481827855 +illusion_0.75L,ppo,60,12.0,force,upper_fy,0.002792402170598507 +illusion_0.75L,ppo,60,12.0,force,lower_fx,-0.0014373967424035072 +illusion_0.75L,ppo,60,12.0,force,lower_fy,-0.003641959046944976 +illusion_0.75L,ppo,61,12.2,force,front_fx,0.003572329180315137 +illusion_0.75L,ppo,61,12.2,force,front_fy,0.0009467077325098217 +illusion_0.75L,ppo,61,12.2,force,upper_fx,0.0020938809029757977 +illusion_0.75L,ppo,61,12.2,force,upper_fy,0.0028496356680989265 +illusion_0.75L,ppo,61,12.2,force,lower_fx,-0.0015731803141534328 +illusion_0.75L,ppo,61,12.2,force,lower_fy,-0.0035062390379607677 +illusion_0.75L,ppo,62,12.4,force,front_fx,0.003585216123610735 +illusion_0.75L,ppo,62,12.4,force,front_fy,0.0009322178084403276 +illusion_0.75L,ppo,62,12.4,force,upper_fx,0.002167313126847148 +illusion_0.75L,ppo,62,12.4,force,upper_fy,0.0029190427158027887 +illusion_0.75L,ppo,62,12.4,force,lower_fx,-0.0017171161016449332 +illusion_0.75L,ppo,62,12.4,force,lower_fy,-0.003384230425581336 +illusion_0.75L,ppo,63,12.6,force,front_fx,0.003562676254659891 +illusion_0.75L,ppo,63,12.6,force,front_fy,0.0009419696871191263 +illusion_0.75L,ppo,63,12.6,force,upper_fx,0.0022283236030489206 +illusion_0.75L,ppo,63,12.6,force,upper_fy,0.0029877787455916405 +illusion_0.75L,ppo,63,12.6,force,lower_fx,-0.0018597017042338848 +illusion_0.75L,ppo,63,12.6,force,lower_fy,-0.0032827877439558506 +illusion_0.75L,ppo,64,12.8,force,front_fx,0.0035016650799661875 +illusion_0.75L,ppo,64,12.8,force,front_fy,0.0009843604639172554 +illusion_0.75L,ppo,64,12.8,force,upper_fx,0.0022797577548772097 +illusion_0.75L,ppo,64,12.8,force,upper_fy,0.0030527107883244753 +illusion_0.75L,ppo,64,12.8,force,lower_fx,-0.0019839771557599306 +illusion_0.75L,ppo,64,12.8,force,lower_fy,-0.0032167404424399137 +illusion_0.75L,ppo,65,13.0,force,front_fx,0.0034084052313119173 +illusion_0.75L,ppo,65,13.0,force,front_fy,0.0010102229425683618 +illusion_0.75L,ppo,65,13.0,force,upper_fx,0.0023162723518908024 +illusion_0.75L,ppo,65,13.0,force,upper_fy,0.0031069007236510515 +illusion_0.75L,ppo,65,13.0,force,lower_fx,-0.0020883267279714346 +illusion_0.75L,ppo,65,13.0,force,lower_fy,-0.0031930950935930014 +illusion_0.75L,ppo,66,13.2,force,front_fx,0.0032832345459610224 +illusion_0.75L,ppo,66,13.2,force,front_fy,0.0010593592887744308 +illusion_0.75L,ppo,66,13.2,force,upper_fx,0.0023414669558405876 +illusion_0.75L,ppo,66,13.2,force,upper_fy,0.00315003446303308 +illusion_0.75L,ppo,66,13.2,force,lower_fx,-0.0021593542769551277 +illusion_0.75L,ppo,66,13.2,force,lower_fy,-0.0032129150349646807 +illusion_0.75L,ppo,67,13.4,force,front_fx,0.003146752715110779 +illusion_0.75L,ppo,67,13.4,force,front_fy,0.001103283604606986 +illusion_0.75L,ppo,67,13.4,force,upper_fx,0.002363998908549547 +illusion_0.75L,ppo,67,13.4,force,upper_fy,0.00317982560954988 +illusion_0.75L,ppo,67,13.4,force,lower_fx,-0.0021806813310831785 +illusion_0.75L,ppo,67,13.4,force,lower_fy,-0.0032695597037672997 +illusion_0.75L,ppo,68,13.6,force,front_fx,0.002993532922118902 +illusion_0.75L,ppo,68,13.6,force,front_fy,0.0011206052731722593 +illusion_0.75L,ppo,68,13.6,force,upper_fx,0.002380454447120428 +illusion_0.75L,ppo,68,13.6,force,upper_fy,0.0031985498499125242 +illusion_0.75L,ppo,68,13.6,force,lower_fx,-0.0021564089693129063 +illusion_0.75L,ppo,68,13.6,force,lower_fy,-0.0033612162806093693 +illusion_0.75L,ppo,69,13.8,force,front_fx,0.0028474789578467607 +illusion_0.75L,ppo,69,13.8,force,front_fy,0.0011487045558169484 +illusion_0.75L,ppo,69,13.8,force,upper_fx,0.00240272912196815 +illusion_0.75L,ppo,69,13.8,force,upper_fy,0.003204468870535493 +illusion_0.75L,ppo,69,13.8,force,lower_fx,-0.0020711275283247232 +illusion_0.75L,ppo,69,13.8,force,lower_fy,-0.0034730893094092607 +illusion_0.75L,ppo,70,14.0,force,front_fx,0.0027114504482597113 +illusion_0.75L,ppo,70,14.0,force,front_fy,0.0011683475458994508 +illusion_0.75L,ppo,70,14.0,force,upper_fx,0.0024223329965025187 +illusion_0.75L,ppo,70,14.0,force,upper_fy,0.0032030579168349504 +illusion_0.75L,ppo,70,14.0,force,lower_fx,-0.0019388310611248016 +illusion_0.75L,ppo,70,14.0,force,lower_fy,-0.0035961964167654514 +illusion_0.75L,ppo,71,14.2,force,front_fx,0.0026026132982224226 +illusion_0.75L,ppo,71,14.2,force,front_fy,0.001167580601759255 +illusion_0.75L,ppo,71,14.2,force,upper_fx,0.0024396118242293596 +illusion_0.75L,ppo,71,14.2,force,upper_fy,0.0031968436669558287 +illusion_0.75L,ppo,71,14.2,force,lower_fx,-0.0017696149880066514 +illusion_0.75L,ppo,71,14.2,force,lower_fy,-0.003717901650816202 +illusion_0.75L,ppo,72,14.4,force,front_fx,0.0025027794763445854 +illusion_0.75L,ppo,72,14.4,force,front_fy,0.0011620805598795414 +illusion_0.75L,ppo,72,14.4,force,upper_fx,0.00244649825617671 +illusion_0.75L,ppo,72,14.4,force,upper_fy,0.0031893490813672543 +illusion_0.75L,ppo,72,14.4,force,lower_fx,-0.0015821519773453474 +illusion_0.75L,ppo,72,14.4,force,lower_fy,-0.003834574017673731 +illusion_0.75L,ppo,73,14.6,force,front_fx,0.002432342618703842 +illusion_0.75L,ppo,73,14.6,force,front_fy,0.0011398352216929197 +illusion_0.75L,ppo,73,14.6,force,upper_fx,0.0024417259264737368 +illusion_0.75L,ppo,73,14.6,force,upper_fy,0.003179366234689951 +illusion_0.75L,ppo,73,14.6,force,lower_fx,-0.0013915188610553741 +illusion_0.75L,ppo,73,14.6,force,lower_fy,-0.003946552984416485 +illusion_0.75L,ppo,74,14.8,force,front_fx,0.002370521891862154 +illusion_0.75L,ppo,74,14.8,force,front_fy,0.0011198294814676046 +illusion_0.75L,ppo,74,14.8,force,upper_fx,0.002422293648123741 +illusion_0.75L,ppo,74,14.8,force,upper_fy,0.0031702762935310602 +illusion_0.75L,ppo,74,14.8,force,lower_fx,-0.0012076101265847683 +illusion_0.75L,ppo,74,14.8,force,lower_fy,-0.004055873956531286 +illusion_0.75L,ppo,75,15.0,force,front_fx,0.0023039800580590963 +illusion_0.75L,ppo,75,15.0,force,front_fy,0.001062260940670967 +illusion_0.75L,ppo,75,15.0,force,upper_fx,0.002396966330707073 +illusion_0.75L,ppo,75,15.0,force,upper_fy,0.0031654024496674538 +illusion_0.75L,ppo,75,15.0,force,lower_fx,-0.0010254723019897938 +illusion_0.75L,ppo,75,15.0,force,lower_fy,-0.004166840575635433 +illusion_0.75L,ppo,76,15.2,force,front_fx,0.002263252856209874 +illusion_0.75L,ppo,76,15.2,force,front_fy,0.0010154442861676216 +illusion_0.75L,ppo,76,15.2,force,upper_fx,0.002359542762860656 +illusion_0.75L,ppo,76,15.2,force,upper_fy,0.0031663186382502317 +illusion_0.75L,ppo,76,15.2,force,lower_fx,-0.0008531292551197112 +illusion_0.75L,ppo,76,15.2,force,lower_fy,-0.004282196518033743 +illusion_0.75L,ppo,77,15.4,force,front_fx,0.0022232690826058388 +illusion_0.75L,ppo,77,15.4,force,front_fy,0.0009527013171464205 +illusion_0.75L,ppo,77,15.4,force,upper_fx,0.002305332338437438 +illusion_0.75L,ppo,77,15.4,force,upper_fy,0.003175716381520033 +illusion_0.75L,ppo,77,15.4,force,lower_fx,-0.0006936208228580654 +illusion_0.75L,ppo,77,15.4,force,lower_fy,-0.0044020479544997215 +illusion_0.75L,ppo,78,15.6,force,front_fx,0.0021930215880274773 +illusion_0.75L,ppo,78,15.6,force,front_fy,0.0008881919202394783 +illusion_0.75L,ppo,78,15.6,force,upper_fx,0.002233265433460474 +illusion_0.75L,ppo,78,15.6,force,upper_fy,0.003198447870090604 +illusion_0.75L,ppo,78,15.6,force,lower_fx,-0.000549366173800081 +illusion_0.75L,ppo,78,15.6,force,lower_fy,-0.004524740390479565 +illusion_0.75L,ppo,79,15.8,force,front_fx,0.0021700614597648382 +illusion_0.75L,ppo,79,15.8,force,front_fy,0.0008215676061809063 +illusion_0.75L,ppo,79,15.8,force,upper_fx,0.0021379604004323483 +illusion_0.75L,ppo,79,15.8,force,upper_fy,0.0032333466224372387 +illusion_0.75L,ppo,79,15.8,force,lower_fx,-0.00042524345917627215 +illusion_0.75L,ppo,79,15.8,force,lower_fy,-0.0046388269402086735 +illusion_0.75L,ppo,80,16.0,force,front_fx,0.002161995507776737 +illusion_0.75L,ppo,80,16.0,force,front_fy,0.0007578394724987447 +illusion_0.75L,ppo,80,16.0,force,upper_fx,0.002030143514275551 +illusion_0.75L,ppo,80,16.0,force,upper_fy,0.003282524412497878 +illusion_0.75L,ppo,80,16.0,force,lower_fx,-0.0003154515870846808 +illusion_0.75L,ppo,80,16.0,force,lower_fy,-0.00473629729822278 +illusion_0.75L,ppo,81,16.2,force,front_fx,0.0021820582915097475 +illusion_0.75L,ppo,81,16.2,force,front_fy,0.0007010857225395739 +illusion_0.75L,ppo,81,16.2,force,upper_fx,0.0019122265512123704 +illusion_0.75L,ppo,81,16.2,force,upper_fy,0.003344685072079301 +illusion_0.75L,ppo,81,16.2,force,lower_fx,-0.0002227463701274246 +illusion_0.75L,ppo,81,16.2,force,lower_fy,-0.004811354447156191 +illusion_0.75L,ppo,82,16.4,force,front_fx,0.0021938281133770943 +illusion_0.75L,ppo,82,16.4,force,front_fy,0.0006365884910337627 +illusion_0.75L,ppo,82,16.4,force,upper_fx,0.0017888478469103575 +illusion_0.75L,ppo,82,16.4,force,upper_fy,0.003422017442062497 +illusion_0.75L,ppo,82,16.4,force,lower_fx,-0.00015261321095749736 +illusion_0.75L,ppo,82,16.4,force,lower_fy,-0.0048605455085635185 +illusion_0.75L,ppo,83,16.6,force,front_fx,0.0022204210981726646 +illusion_0.75L,ppo,83,16.6,force,front_fy,0.0006063470500521362 +illusion_0.75L,ppo,83,16.6,force,upper_fx,0.0016739130951464176 +illusion_0.75L,ppo,83,16.6,force,upper_fy,0.0035105114802718163 +illusion_0.75L,ppo,83,16.6,force,lower_fx,-0.00010136127821169794 +illusion_0.75L,ppo,83,16.6,force,lower_fy,-0.004876244347542524 +illusion_0.75L,ppo,84,16.8,force,front_fx,0.0022553345188498497 +illusion_0.75L,ppo,84,16.8,force,front_fy,0.0005363450618460774 +illusion_0.75L,ppo,84,16.8,force,upper_fx,0.0015706365229561925 +illusion_0.75L,ppo,84,16.8,force,upper_fy,0.003607268910855055 +illusion_0.75L,ppo,84,16.8,force,lower_fx,-7.666386954952031e-05 +illusion_0.75L,ppo,84,16.8,force,lower_fy,-0.004861645866185427 +illusion_0.75L,ppo,85,17.0,force,front_fx,0.002283114707097411 +illusion_0.75L,ppo,85,17.0,force,front_fy,0.0004838783061131835 +illusion_0.75L,ppo,85,17.0,force,upper_fx,0.0014949229080229998 +illusion_0.75L,ppo,85,17.0,force,upper_fy,0.0037107861135154963 +illusion_0.75L,ppo,85,17.0,force,lower_fx,-7.27113729226403e-05 +illusion_0.75L,ppo,85,17.0,force,lower_fy,-0.004813606850802898 +illusion_0.75L,ppo,86,17.2,force,front_fx,0.002293685916811228 +illusion_0.75L,ppo,86,17.2,force,front_fy,0.00043503433698788285 +illusion_0.75L,ppo,86,17.2,force,upper_fx,0.001455963123589754 +illusion_0.75L,ppo,86,17.2,force,upper_fy,0.003815057221800089 +illusion_0.75L,ppo,86,17.2,force,lower_fx,-7.829964306438342e-05 +illusion_0.75L,ppo,86,17.2,force,lower_fy,-0.004735799506306648 +illusion_0.75L,ppo,87,17.4,force,front_fx,0.0022996333427727222 +illusion_0.75L,ppo,87,17.4,force,front_fy,0.00040337894461117685 +illusion_0.75L,ppo,87,17.4,force,upper_fx,0.001451323740184307 +illusion_0.75L,ppo,87,17.4,force,upper_fy,0.0039202552288770676 +illusion_0.75L,ppo,87,17.4,force,lower_fx,-0.00010140716767637059 +illusion_0.75L,ppo,87,17.4,force,lower_fy,-0.004643975291401148 +illusion_0.75L,ppo,88,17.6,force,front_fx,0.0022936107125133276 +illusion_0.75L,ppo,88,17.6,force,front_fy,0.00032871327130123973 +illusion_0.75L,ppo,88,17.6,force,upper_fx,0.0014760341728106141 +illusion_0.75L,ppo,88,17.6,force,upper_fy,0.00402776338160038 +illusion_0.75L,ppo,88,17.6,force,lower_fx,-0.00014247355284169316 +illusion_0.75L,ppo,88,17.6,force,lower_fy,-0.004547238349914551 +illusion_0.75L,ppo,89,17.8,force,front_fx,0.002259312430396676 +illusion_0.75L,ppo,89,17.8,force,front_fy,0.00029757467564195395 +illusion_0.75L,ppo,89,17.8,force,upper_fx,0.0015279734507203102 +illusion_0.75L,ppo,89,17.8,force,upper_fy,0.004134711343795061 +illusion_0.75L,ppo,89,17.8,force,lower_fx,-0.00019266890012659132 +illusion_0.75L,ppo,89,17.8,force,lower_fy,-0.004448651801794767 +illusion_0.75L,ppo,90,18.0,force,front_fx,0.002237118547782302 +illusion_0.75L,ppo,90,18.0,force,front_fy,0.00028775670216418803 +illusion_0.75L,ppo,90,18.0,force,upper_fx,0.0015966236824169755 +illusion_0.75L,ppo,90,18.0,force,upper_fy,0.004230776336044073 +illusion_0.75L,ppo,90,18.0,force,lower_fx,-0.00025403284234926105 +illusion_0.75L,ppo,90,18.0,force,lower_fy,-0.004350930452346802 +illusion_0.75L,ppo,91,18.2,force,front_fx,0.0021937908604741096 +illusion_0.75L,ppo,91,18.2,force,front_fy,0.00029928088770247996 +illusion_0.75L,ppo,91,18.2,force,upper_fx,0.0016786933410912752 +illusion_0.75L,ppo,91,18.2,force,upper_fy,0.004307989031076431 +illusion_0.75L,ppo,91,18.2,force,lower_fx,-0.0003202891966793686 +illusion_0.75L,ppo,91,18.2,force,lower_fy,-0.004260886460542679 +illusion_0.75L,ppo,92,18.4,force,front_fx,0.002175474539399147 +illusion_0.75L,ppo,92,18.4,force,front_fy,0.00034460003371350467 +illusion_0.75L,ppo,92,18.4,force,upper_fx,0.001773230149410665 +illusion_0.75L,ppo,92,18.4,force,upper_fy,0.004351813346147537 +illusion_0.75L,ppo,92,18.4,force,lower_fx,-0.0003858833515550941 +illusion_0.75L,ppo,92,18.4,force,lower_fy,-0.004174854606389999 +illusion_0.75L,ppo,93,18.6,force,front_fx,0.0021792983170598745 +illusion_0.75L,ppo,93,18.6,force,front_fy,0.00048097860417328775 +illusion_0.75L,ppo,93,18.6,force,upper_fx,0.0018758709775283933 +illusion_0.75L,ppo,93,18.6,force,upper_fy,0.004351534880697727 +illusion_0.75L,ppo,93,18.6,force,lower_fx,-0.00045717228204011917 +illusion_0.75L,ppo,93,18.6,force,lower_fy,-0.004093152470886707 +illusion_0.75L,ppo,94,18.8,force,front_fx,0.0022099537309259176 +illusion_0.75L,ppo,94,18.8,force,front_fy,0.0006222493830136955 +illusion_0.75L,ppo,94,18.8,force,upper_fx,0.001991579309105873 +illusion_0.75L,ppo,94,18.8,force,upper_fy,0.0042998772114515305 +illusion_0.75L,ppo,94,18.8,force,lower_fx,-0.0005394119070842862 +illusion_0.75L,ppo,94,18.8,force,lower_fy,-0.004016445949673653 +illusion_0.75L,ppo,95,19.0,force,front_fx,0.0022798823192715645 +illusion_0.75L,ppo,95,19.0,force,front_fy,0.0008049846510402858 +illusion_0.75L,ppo,95,19.0,force,upper_fx,0.002120734192430973 +illusion_0.75L,ppo,95,19.0,force,upper_fy,0.004192552994936705 +illusion_0.75L,ppo,95,19.0,force,lower_fx,-0.0006428176420740783 +illusion_0.75L,ppo,95,19.0,force,lower_fy,-0.0039527080953121185 +illusion_0.75L,ppo,96,19.2,force,front_fx,0.002374299569055438 +illusion_0.75L,ppo,96,19.2,force,front_fy,0.0009798688115552068 +illusion_0.75L,ppo,96,19.2,force,upper_fx,0.002258710330352187 +illusion_0.75L,ppo,96,19.2,force,upper_fy,0.004027884919196367 +illusion_0.75L,ppo,96,19.2,force,lower_fx,-0.0007661411655135453 +illusion_0.75L,ppo,96,19.2,force,lower_fy,-0.003906545229256153 +illusion_0.75L,ppo,97,19.4,force,front_fx,0.0024983843322843313 +illusion_0.75L,ppo,97,19.4,force,front_fy,0.001151232747361064 +illusion_0.75L,ppo,97,19.4,force,upper_fx,0.002405616221949458 +illusion_0.75L,ppo,97,19.4,force,upper_fy,0.0038220605347305536 +illusion_0.75L,ppo,97,19.4,force,lower_fx,-0.0009023059974424541 +illusion_0.75L,ppo,97,19.4,force,lower_fy,-0.003902672789990902 +illusion_0.75L,ppo,98,19.6,force,front_fx,0.0026135435327887535 +illusion_0.75L,ppo,98,19.6,force,front_fy,0.0012555589200928807 +illusion_0.75L,ppo,98,19.6,force,upper_fx,0.0025325589813292027 +illusion_0.75L,ppo,98,19.6,force,upper_fy,0.0036024940200150013 +illusion_0.75L,ppo,98,19.6,force,lower_fx,-0.0010327858617529273 +illusion_0.75L,ppo,98,19.6,force,lower_fy,-0.0039442721754312515 +illusion_0.75L,ppo,99,19.8,force,front_fx,0.002693380229175091 +illusion_0.75L,ppo,99,19.8,force,front_fy,0.001330262515693903 +illusion_0.75L,ppo,99,19.8,force,upper_fx,0.0026234218385070562 +illusion_0.75L,ppo,99,19.8,force,upper_fy,0.0034006619825959206 +illusion_0.75L,ppo,99,19.8,force,lower_fx,-0.0011376093607395887 +illusion_0.75L,ppo,99,19.8,force,lower_fy,-0.004033587872982025 +illusion_0.75L,ppo,100,20.0,force,front_fx,0.0027522232849150896 +illusion_0.75L,ppo,100,20.0,force,front_fy,0.001347363111563027 +illusion_0.75L,ppo,100,20.0,force,upper_fx,0.002673257840797305 +illusion_0.75L,ppo,100,20.0,force,upper_fy,0.0032454803586006165 +illusion_0.75L,ppo,100,20.0,force,lower_fx,-0.0011966829188168049 +illusion_0.75L,ppo,100,20.0,force,lower_fy,-0.004156238865107298 +illusion_0.75L,ppo,101,20.2,force,front_fx,0.0027392571792006493 +illusion_0.75L,ppo,101,20.2,force,front_fy,0.0013124137185513973 +illusion_0.75L,ppo,101,20.2,force,upper_fx,0.002677150070667267 +illusion_0.75L,ppo,101,20.2,force,upper_fy,0.0031615025363862514 +illusion_0.75L,ppo,101,20.2,force,lower_fx,-0.001212366041727364 +illusion_0.75L,ppo,101,20.2,force,lower_fy,-0.004294960759580135 +illusion_0.75L,ppo,102,20.4,force,front_fx,0.002707485342398286 +illusion_0.75L,ppo,102,20.4,force,front_fy,0.001250644214451313 +illusion_0.75L,ppo,102,20.4,force,upper_fx,0.002656531287357211 +illusion_0.75L,ppo,102,20.4,force,upper_fy,0.003151369048282504 +illusion_0.75L,ppo,102,20.4,force,lower_fx,-0.0011797602055594325 +illusion_0.75L,ppo,102,20.4,force,lower_fy,-0.004430198576301336 +illusion_0.75L,ppo,103,20.6,force,front_fx,0.0026345059741288424 +illusion_0.75L,ppo,103,20.6,force,front_fy,0.0011531513882800937 +illusion_0.75L,ppo,103,20.6,force,upper_fx,0.0026180860586464405 +illusion_0.75L,ppo,103,20.6,force,upper_fy,0.00320155406370759 +illusion_0.75L,ppo,103,20.6,force,lower_fx,-0.0011124837910756469 +illusion_0.75L,ppo,103,20.6,force,lower_fy,-0.0045562442392110825 +illusion_0.75L,ppo,104,20.8,force,front_fx,0.002547615673393011 +illusion_0.75L,ppo,104,20.8,force,front_fy,0.0010571539169177413 +illusion_0.75L,ppo,104,20.8,force,upper_fx,0.0025666288565844297 +illusion_0.75L,ppo,104,20.8,force,upper_fy,0.0032849812414497137 +illusion_0.75L,ppo,104,20.8,force,lower_fx,-0.0010254589142277837 +illusion_0.75L,ppo,104,20.8,force,lower_fy,-0.004677136428654194 +illusion_0.75L,ppo,105,21.0,force,front_fx,0.002443100092932582 +illusion_0.75L,ppo,105,21.0,force,front_fy,0.0009539603488519788 +illusion_0.75L,ppo,105,21.0,force,upper_fx,0.002502850955352187 +illusion_0.75L,ppo,105,21.0,force,upper_fy,0.0033687760587781668 +illusion_0.75L,ppo,105,21.0,force,lower_fx,-0.000926619628444314 +illusion_0.75L,ppo,105,21.0,force,lower_fy,-0.004795018117874861 +illusion_0.75L,ppo,106,21.2,force,front_fx,0.0023478022776544094 +illusion_0.75L,ppo,106,21.2,force,front_fy,0.0008518437389284372 +illusion_0.75L,ppo,106,21.2,force,upper_fx,0.002428079955279827 +illusion_0.75L,ppo,106,21.2,force,upper_fy,0.00342892250046134 +illusion_0.75L,ppo,106,21.2,force,lower_fx,-0.0008172803209163249 +illusion_0.75L,ppo,106,21.2,force,lower_fy,-0.004909834358841181 +illusion_0.75L,ppo,107,21.4,force,front_fx,0.0022608886938542128 +illusion_0.75L,ppo,107,21.4,force,front_fy,0.0007712920778430998 +illusion_0.75L,ppo,107,21.4,force,upper_fx,0.002341626677662134 +illusion_0.75L,ppo,107,21.4,force,upper_fy,0.003447289112955332 +illusion_0.75L,ppo,107,21.4,force,lower_fx,-0.0006971900002099574 +illusion_0.75L,ppo,107,21.4,force,lower_fy,-0.0050064874812960625 +illusion_0.75L,ppo,108,21.6,force,front_fx,0.0022022065240889788 +illusion_0.75L,ppo,108,21.6,force,front_fy,0.0007093420717865229 +illusion_0.75L,ppo,108,21.6,force,upper_fx,0.0022540860809385777 +illusion_0.75L,ppo,108,21.6,force,upper_fy,0.0034245378337800503 +illusion_0.75L,ppo,108,21.6,force,lower_fx,-0.0005578838754445314 +illusion_0.75L,ppo,108,21.6,force,lower_fy,-0.005080738104879856 +illusion_0.75L,ppo,109,21.8,force,front_fx,0.002166317543014884 +illusion_0.75L,ppo,109,21.8,force,front_fy,0.0006653859745711088 +illusion_0.75L,ppo,109,21.8,force,upper_fx,0.002161093521863222 +illusion_0.75L,ppo,109,21.8,force,upper_fy,0.0033717500045895576 +illusion_0.75L,ppo,109,21.8,force,lower_fx,-0.0004092409217264503 +illusion_0.75L,ppo,109,21.8,force,lower_fy,-0.005128269083797932 +illusion_0.75L,ppo,110,22.0,force,front_fx,0.002155712340027094 +illusion_0.75L,ppo,110,22.0,force,front_fy,0.0006355975056067109 +illusion_0.75L,ppo,110,22.0,force,upper_fx,0.002059389604255557 +illusion_0.75L,ppo,110,22.0,force,upper_fy,0.003307260340079665 +illusion_0.75L,ppo,110,22.0,force,lower_fx,-0.00026322033954784274 +illusion_0.75L,ppo,110,22.0,force,lower_fy,-0.005148023832589388 +illusion_0.75L,ppo,111,22.2,force,front_fx,0.00216924911364913 +illusion_0.75L,ppo,111,22.2,force,front_fy,0.000614489777944982 +illusion_0.75L,ppo,111,22.2,force,upper_fx,0.001951583311893046 +illusion_0.75L,ppo,111,22.2,force,upper_fy,0.0032505521085113287 +illusion_0.75L,ppo,111,22.2,force,lower_fx,-0.0001266291073989123 +illusion_0.75L,ppo,111,22.2,force,lower_fy,-0.005135612096637487 +illusion_0.75L,ppo,112,22.4,force,front_fx,0.002203144831582904 +illusion_0.75L,ppo,112,22.4,force,front_fy,0.0006076013669371605 +illusion_0.75L,ppo,112,22.4,force,upper_fx,0.0018360483227297664 +illusion_0.75L,ppo,112,22.4,force,upper_fy,0.003217240795493126 +illusion_0.75L,ppo,112,22.4,force,lower_fx,-1.2712668649328407e-05 +illusion_0.75L,ppo,112,22.4,force,lower_fy,-0.005088327452540398 +illusion_0.75L,ppo,113,22.6,force,front_fx,0.002259375061839819 +illusion_0.75L,ppo,113,22.6,force,front_fy,0.0006029829382896423 +illusion_0.75L,ppo,113,22.6,force,upper_fx,0.0017281492473557591 +illusion_0.75L,ppo,113,22.6,force,upper_fy,0.0032143238931894302 +illusion_0.75L,ppo,113,22.6,force,lower_fx,7.80631962697953e-05 +illusion_0.75L,ppo,113,22.6,force,lower_fy,-0.005008991342037916 +illusion_0.75L,ppo,114,22.8,force,front_fx,0.002323269611224532 +illusion_0.75L,ppo,114,22.8,force,front_fy,0.0006037233979441226 +illusion_0.75L,ppo,114,22.8,force,upper_fx,0.0016449193935841322 +illusion_0.75L,ppo,114,22.8,force,upper_fy,0.003244078252464533 +illusion_0.75L,ppo,114,22.8,force,lower_fx,0.0001472916774218902 +illusion_0.75L,ppo,114,22.8,force,lower_fy,-0.004899522289633751 +illusion_0.75L,ppo,115,23.0,force,front_fx,0.0023928198497742414 +illusion_0.75L,ppo,115,23.0,force,front_fy,0.0005944407894276083 +illusion_0.75L,ppo,115,23.0,force,upper_fx,0.001591561478562653 +illusion_0.75L,ppo,115,23.0,force,upper_fy,0.003303177421912551 +illusion_0.75L,ppo,115,23.0,force,lower_fx,0.00018467074551153928 +illusion_0.75L,ppo,115,23.0,force,lower_fy,-0.0047677611000835896 +illusion_0.75L,ppo,116,23.2,force,front_fx,0.0024577858857810497 +illusion_0.75L,ppo,116,23.2,force,front_fy,0.0005872616311535239 +illusion_0.75L,ppo,116,23.2,force,upper_fx,0.001582498662173748 +illusion_0.75L,ppo,116,23.2,force,upper_fy,0.0033810443710535765 +illusion_0.75L,ppo,116,23.2,force,lower_fx,0.00019680462719406933 +illusion_0.75L,ppo,116,23.2,force,lower_fy,-0.0046192966401577 +illusion_0.75L,ppo,117,23.4,force,front_fx,0.0025025273207575083 +illusion_0.75L,ppo,117,23.4,force,front_fy,0.0005670984974130988 +illusion_0.75L,ppo,117,23.4,force,upper_fx,0.001612754655070603 +illusion_0.75L,ppo,117,23.4,force,upper_fy,0.0034707975573837757 +illusion_0.75L,ppo,117,23.4,force,lower_fx,0.00017725600628182292 +illusion_0.75L,ppo,117,23.4,force,lower_fy,-0.004466000013053417 +illusion_0.75L,ppo,118,23.6,force,front_fx,0.0025316206738352776 +illusion_0.75L,ppo,118,23.6,force,front_fy,0.0005463709821924567 +illusion_0.75L,ppo,118,23.6,force,upper_fx,0.0016747458139434457 +illusion_0.75L,ppo,118,23.6,force,upper_fy,0.003563332837074995 +illusion_0.75L,ppo,118,23.6,force,lower_fx,0.00012387293099891394 +illusion_0.75L,ppo,118,23.6,force,lower_fy,-0.004317566752433777 +illusion_0.75L,ppo,119,23.8,force,front_fx,0.0025369643699377775 +illusion_0.75L,ppo,119,23.8,force,front_fy,0.0005249943351373076 +illusion_0.75L,ppo,119,23.8,force,upper_fx,0.0017670548986643553 +illusion_0.75L,ppo,119,23.8,force,upper_fy,0.0036594837438315153 +illusion_0.75L,ppo,119,23.8,force,lower_fx,4.8747286200523376e-05 +illusion_0.75L,ppo,119,23.8,force,lower_fy,-0.004182777833193541 +illusion_0.75L,ppo,120,24.0,force,front_fx,0.0025347708724439144 +illusion_0.75L,ppo,120,24.0,force,front_fy,0.000537550135049969 +illusion_0.75L,ppo,120,24.0,force,upper_fx,0.0018737827194854617 +illusion_0.75L,ppo,120,24.0,force,upper_fy,0.0037565198726952076 +illusion_0.75L,ppo,120,24.0,force,lower_fx,-5.085278462502174e-05 +illusion_0.75L,ppo,120,24.0,force,lower_fy,-0.004065473563969135 +illusion_0.75L,ppo,121,24.2,force,front_fx,0.0025332001969218254 +illusion_0.75L,ppo,121,24.2,force,front_fy,0.0005485352594405413 +illusion_0.75L,ppo,121,24.2,force,upper_fx,0.001984245143830776 +illusion_0.75L,ppo,121,24.2,force,upper_fy,0.0038501343224197626 +illusion_0.75L,ppo,121,24.2,force,lower_fx,-0.00017407163977622986 +illusion_0.75L,ppo,121,24.2,force,lower_fy,-0.003973698243498802 +illusion_0.75L,ppo,122,24.4,force,front_fx,0.002525824587792158 +illusion_0.75L,ppo,122,24.4,force,front_fy,0.0006047748611308634 +illusion_0.75L,ppo,122,24.4,force,upper_fx,0.0020917013753205538 +illusion_0.75L,ppo,122,24.4,force,upper_fy,0.003929244354367256 +illusion_0.75L,ppo,122,24.4,force,lower_fx,-0.0003181884821970016 +illusion_0.75L,ppo,122,24.4,force,lower_fy,-0.0039032846689224243 +illusion_0.75L,ppo,123,24.6,force,front_fx,0.002564232097938657 +illusion_0.75L,ppo,123,24.6,force,front_fy,0.0006969267269596457 +illusion_0.75L,ppo,123,24.6,force,upper_fx,0.002188455779105425 +illusion_0.75L,ppo,123,24.6,force,upper_fy,0.0039899335242807865 +illusion_0.75L,ppo,123,24.6,force,lower_fx,-0.00048652905388735235 +illusion_0.75L,ppo,123,24.6,force,lower_fy,-0.003850374836474657 +illusion_0.75L,ppo,124,24.8,force,front_fx,0.002596313366666436 +illusion_0.75L,ppo,124,24.8,force,front_fy,0.0008280580514110625 +illusion_0.75L,ppo,124,24.8,force,upper_fx,0.0022788261994719505 +illusion_0.75L,ppo,124,24.8,force,upper_fy,0.0040269349701702595 +illusion_0.75L,ppo,124,24.8,force,lower_fx,-0.0006727318395860493 +illusion_0.75L,ppo,124,24.8,force,lower_fy,-0.003809562884271145 +illusion_0.75L,ppo,125,25.0,force,front_fx,0.002659095451235771 +illusion_0.75L,ppo,125,25.0,force,front_fy,0.0009589800029061735 +illusion_0.75L,ppo,125,25.0,force,upper_fx,0.0023674191907048225 +illusion_0.75L,ppo,125,25.0,force,upper_fy,0.004032907076179981 +illusion_0.75L,ppo,125,25.0,force,lower_fx,-0.0008715981966815889 +illusion_0.75L,ppo,125,25.0,force,lower_fy,-0.003782265819609165 +illusion_0.75L,ppo,126,25.2,force,front_fx,0.002744491444900632 +illusion_0.75L,ppo,126,25.2,force,front_fy,0.0010925859678536654 +illusion_0.75L,ppo,126,25.2,force,upper_fx,0.002454893197864294 +illusion_0.75L,ppo,126,25.2,force,upper_fy,0.003998009022325277 +illusion_0.75L,ppo,126,25.2,force,lower_fx,-0.001076122629456222 +illusion_0.75L,ppo,126,25.2,force,lower_fy,-0.0037699646782130003 +illusion_0.75L,ppo,127,25.4,force,front_fx,0.0028326152823865414 +illusion_0.75L,ppo,127,25.4,force,front_fy,0.001214892603456974 +illusion_0.75L,ppo,127,25.4,force,upper_fx,0.0025444633793085814 +illusion_0.75L,ppo,127,25.4,force,upper_fy,0.003920622635632753 +illusion_0.75L,ppo,127,25.4,force,lower_fx,-0.0012702695094048977 +illusion_0.75L,ppo,127,25.4,force,lower_fy,-0.00377665925770998 +illusion_0.75L,ppo,128,25.6,force,front_fx,0.0029226718470454216 +illusion_0.75L,ppo,128,25.6,force,front_fy,0.0013145451666787267 +illusion_0.75L,ppo,128,25.6,force,upper_fx,0.0026324798818677664 +illusion_0.75L,ppo,128,25.6,force,upper_fy,0.003808407811447978 +illusion_0.75L,ppo,128,25.6,force,lower_fx,-0.001441364292986691 +illusion_0.75L,ppo,128,25.6,force,lower_fy,-0.0038075619377195835 +illusion_0.75L,ppo,129,25.8,force,front_fx,0.002980434335768223 +illusion_0.75L,ppo,129,25.8,force,front_fy,0.0014031205791980028 +illusion_0.75L,ppo,129,25.8,force,upper_fx,0.002709489781409502 +illusion_0.75L,ppo,129,25.8,force,upper_fy,0.0036745041143149137 +illusion_0.75L,ppo,129,25.8,force,lower_fx,-0.0015787561424076557 +illusion_0.75L,ppo,129,25.8,force,lower_fy,-0.003865201259031892 +illusion_0.75L,ppo,130,26.0,force,front_fx,0.003014518879354 +illusion_0.75L,ppo,130,26.0,force,front_fy,0.0014496557414531708 +illusion_0.75L,ppo,130,26.0,force,upper_fx,0.0027814877685159445 +illusion_0.75L,ppo,130,26.0,force,upper_fy,0.0035343968775123358 +illusion_0.75L,ppo,130,26.0,force,lower_fx,-0.0016598234651610255 +illusion_0.75L,ppo,130,26.0,force,lower_fy,-0.003951257094740868 +illusion_0.75L,ppo,131,26.2,force,front_fx,0.0030129882507026196 +illusion_0.75L,ppo,131,26.2,force,front_fy,0.001463750028051436 +illusion_0.75L,ppo,131,26.2,force,upper_fx,0.002839646302163601 +illusion_0.75L,ppo,131,26.2,force,upper_fy,0.003406228730455041 +illusion_0.75L,ppo,131,26.2,force,lower_fx,-0.00168399338144809 +illusion_0.75L,ppo,131,26.2,force,lower_fy,-0.004066118970513344 +illusion_0.75L,ppo,132,26.4,force,front_fx,0.0029799106996506453 +illusion_0.75L,ppo,132,26.4,force,front_fy,0.0014568690676242113 +illusion_0.75L,ppo,132,26.4,force,upper_fx,0.0028771415818482637 +illusion_0.75L,ppo,132,26.4,force,upper_fy,0.0033075748942792416 +illusion_0.75L,ppo,132,26.4,force,lower_fx,-0.0016528369160369039 +illusion_0.75L,ppo,132,26.4,force,lower_fy,-0.004205656237900257 +illusion_0.75L,ppo,133,26.6,force,front_fx,0.0029085343703627586 +illusion_0.75L,ppo,133,26.6,force,front_fy,0.0014022629475221038 +illusion_0.75L,ppo,133,26.6,force,upper_fx,0.002891290234401822 +illusion_0.75L,ppo,133,26.6,force,upper_fy,0.0032509840093553066 +illusion_0.75L,ppo,133,26.6,force,lower_fx,-0.0015666494145989418 +illusion_0.75L,ppo,133,26.6,force,lower_fy,-0.004365440458059311 +illusion_0.75L,ppo,134,26.8,force,front_fx,0.0028118742629885674 +illusion_0.75L,ppo,134,26.8,force,front_fy,0.0013071905123069882 +illusion_0.75L,ppo,134,26.8,force,upper_fx,0.0028725105803459883 +illusion_0.75L,ppo,134,26.8,force,upper_fy,0.003241147380322218 +illusion_0.75L,ppo,134,26.8,force,lower_fx,-0.0014432092430070043 +illusion_0.75L,ppo,134,26.8,force,lower_fy,-0.004541446454823017 +illusion_0.75L,ppo,135,27.0,force,front_fx,0.002690698020160198 +illusion_0.75L,ppo,135,27.0,force,front_fy,0.0012134982971474528 +illusion_0.75L,ppo,135,27.0,force,upper_fx,0.0028241060208529234 +illusion_0.75L,ppo,135,27.0,force,upper_fy,0.0032742726616561413 +illusion_0.75L,ppo,135,27.0,force,lower_fx,-0.0012841265415772796 +illusion_0.75L,ppo,135,27.0,force,lower_fy,-0.00472185667604208 +illusion_0.75L,ppo,136,27.2,force,front_fx,0.0025755902752280235 +illusion_0.75L,ppo,136,27.2,force,front_fy,0.0010781347518786788 +illusion_0.75L,ppo,136,27.2,force,upper_fx,0.00274637364782393 +illusion_0.75L,ppo,136,27.2,force,upper_fy,0.0033406384754925966 +illusion_0.75L,ppo,136,27.2,force,lower_fx,-0.0011004533153027296 +illusion_0.75L,ppo,136,27.2,force,lower_fy,-0.004902830813080072 +illusion_0.75L,ppo,137,27.4,force,front_fx,0.00245854863896966 +illusion_0.75L,ppo,137,27.4,force,front_fy,0.0009425331372767687 +illusion_0.75L,ppo,137,27.4,force,upper_fx,0.0026363993529230356 +illusion_0.75L,ppo,137,27.4,force,upper_fy,0.0034267145674675703 +illusion_0.75L,ppo,137,27.4,force,lower_fx,-0.0009054108522832394 +illusion_0.75L,ppo,137,27.4,force,lower_fy,-0.0050742654129862785 +illusion_0.75L,ppo,138,27.6,force,front_fx,0.002357935067266226 +illusion_0.75L,ppo,138,27.6,force,front_fy,0.0008189455256797373 +illusion_0.75L,ppo,138,27.6,force,upper_fx,0.0025002481415867805 +illusion_0.75L,ppo,138,27.6,force,upper_fy,0.003511012764647603 +illusion_0.75L,ppo,138,27.6,force,lower_fx,-0.0007037606555968523 +illusion_0.75L,ppo,138,27.6,force,lower_fy,-0.005219172686338425 +illusion_0.75L,ppo,139,27.8,force,front_fx,0.0022956219036132097 +illusion_0.75L,ppo,139,27.8,force,front_fy,0.0007286479230970144 +illusion_0.75L,ppo,139,27.8,force,upper_fx,0.002342967316508293 +illusion_0.75L,ppo,139,27.8,force,upper_fy,0.0035766898654401302 +illusion_0.75L,ppo,139,27.8,force,lower_fx,-0.0005069976905360818 +illusion_0.75L,ppo,139,27.8,force,lower_fy,-0.005325878970324993 +illusion_0.75L,ppo,140,28.0,force,front_fx,0.0022563866805285215 +illusion_0.75L,ppo,140,28.0,force,front_fy,0.000661283265799284 +illusion_0.75L,ppo,140,28.0,force,upper_fx,0.002168379258364439 +illusion_0.75L,ppo,140,28.0,force,upper_fy,0.003618262941017747 +illusion_0.75L,ppo,140,28.0,force,lower_fx,-0.00033080161665566266 +illusion_0.75L,ppo,140,28.0,force,lower_fy,-0.005383722018450499 +illusion_0.75L,ppo,141,28.2,force,front_fx,0.0022660314571112394 +illusion_0.75L,ppo,141,28.2,force,front_fy,0.0006233943859115243 +illusion_0.75L,ppo,141,28.2,force,upper_fx,0.0019968170672655106 +illusion_0.75L,ppo,141,28.2,force,upper_fy,0.003637860529124737 +illusion_0.75L,ppo,141,28.2,force,lower_fx,-0.00017535287770442665 +illusion_0.75L,ppo,141,28.2,force,lower_fy,-0.005388391669839621 +illusion_0.75L,ppo,142,28.4,force,front_fx,0.0023000140208750963 +illusion_0.75L,ppo,142,28.4,force,front_fy,0.0006069130613468587 +illusion_0.75L,ppo,142,28.4,force,upper_fx,0.0018355563515797257 +illusion_0.75L,ppo,142,28.4,force,upper_fy,0.0036507504992187023 +illusion_0.75L,ppo,142,28.4,force,lower_fx,-5.300512202666141e-05 +illusion_0.75L,ppo,142,28.4,force,lower_fy,-0.005343205761164427 +illusion_0.75L,ppo,143,28.6,force,front_fx,0.0023621348664164543 +illusion_0.75L,ppo,143,28.6,force,front_fy,0.0005904989084228873 +illusion_0.75L,ppo,143,28.6,force,upper_fx,0.0016979313222691417 +illusion_0.75L,ppo,143,28.6,force,upper_fy,0.003666664706543088 +illusion_0.75L,ppo,143,28.6,force,lower_fx,3.0891740607330576e-05 +illusion_0.75L,ppo,143,28.6,force,lower_fy,-0.005257901735603809 +illusion_0.75L,ppo,144,28.8,force,front_fx,0.002427024533972144 +illusion_0.75L,ppo,144,28.8,force,front_fy,0.0005767031689174473 +illusion_0.75L,ppo,144,28.8,force,upper_fx,0.0015972699038684368 +illusion_0.75L,ppo,144,28.8,force,upper_fy,0.003690366167575121 +illusion_0.75L,ppo,144,28.8,force,lower_fx,7.799561717547476e-05 +illusion_0.75L,ppo,144,28.8,force,lower_fy,-0.005141718313097954 +illusion_0.75L,ppo,145,29.0,force,front_fx,0.0024774151388555765 +illusion_0.75L,ppo,145,29.0,force,front_fy,0.0005493008065968752 +illusion_0.75L,ppo,145,29.0,force,upper_fx,0.001542343758046627 +illusion_0.75L,ppo,145,29.0,force,upper_fy,0.003721826011314988 +illusion_0.75L,ppo,145,29.0,force,lower_fx,8.900109969545156e-05 +illusion_0.75L,ppo,145,29.0,force,lower_fy,-0.0050031389109790325 +illusion_0.75L,ppo,146,29.2,force,front_fx,0.0025362949818372726 +illusion_0.75L,ppo,146,29.2,force,front_fy,0.0005302706267684698 +illusion_0.75L,ppo,146,29.2,force,upper_fx,0.0015374287031590939 +illusion_0.75L,ppo,146,29.2,force,upper_fy,0.0037588379345834255 +illusion_0.75L,ppo,146,29.2,force,lower_fx,7.0388508902397e-05 +illusion_0.75L,ppo,146,29.2,force,lower_fy,-0.004849166143685579 +illusion_0.75L,ppo,147,29.4,force,front_fx,0.0025682596024125814 +illusion_0.75L,ppo,147,29.4,force,front_fy,0.0004664883890654892 +illusion_0.75L,ppo,147,29.4,force,upper_fx,0.0015849232440814376 +illusion_0.75L,ppo,147,29.4,force,upper_fy,0.003807850182056427 +illusion_0.75L,ppo,147,29.4,force,lower_fx,3.268935688538477e-05 +illusion_0.75L,ppo,147,29.4,force,lower_fy,-0.004692342132329941 +illusion_0.75L,ppo,148,29.6,force,front_fx,0.0025640036910772324 +illusion_0.75L,ppo,148,29.6,force,front_fy,0.00041798644815571606 +illusion_0.75L,ppo,148,29.6,force,upper_fx,0.0016703307628631592 +illusion_0.75L,ppo,148,29.6,force,upper_fy,0.0038780837785452604 +illusion_0.75L,ppo,148,29.6,force,lower_fx,-2.717538518481888e-05 +illusion_0.75L,ppo,148,29.6,force,lower_fy,-0.004543535877019167 +illusion_0.75L,ppo,149,29.8,force,front_fx,0.0025533500593155622 +illusion_0.75L,ppo,149,29.8,force,front_fy,0.0003829752386081964 +illusion_0.75L,ppo,149,29.8,force,upper_fx,0.0017824711976572871 +illusion_0.75L,ppo,149,29.8,force,upper_fy,0.003967649303376675 +illusion_0.75L,ppo,149,29.8,force,lower_fx,-0.00010516014299355447 +illusion_0.75L,ppo,149,29.8,force,lower_fy,-0.004412591923028231 +illusion_0.75L,ppo,150,30.0,force,front_fx,0.002512541599571705 +illusion_0.75L,ppo,150,30.0,force,front_fy,0.00035062801907770336 +illusion_0.75L,ppo,150,30.0,force,upper_fx,0.001907495898194611 +illusion_0.75L,ppo,150,30.0,force,upper_fy,0.004077380057424307 +illusion_0.75L,ppo,150,30.0,force,lower_fx,-0.00020454706100281328 +illusion_0.75L,ppo,150,30.0,force,lower_fy,-0.00430952338501811 +illusion_0.75L,ppo,151,30.2,force,front_fx,0.002458827570080757 +illusion_0.75L,ppo,151,30.2,force,front_fy,0.0003511004615575075 +illusion_0.75L,ppo,151,30.2,force,upper_fx,0.0020281414035707712 +illusion_0.75L,ppo,151,30.2,force,upper_fy,0.0041867331601679325 +illusion_0.75L,ppo,151,30.2,force,lower_fx,-0.00032273397664539516 +illusion_0.75L,ppo,151,30.2,force,lower_fy,-0.004227286204695702 +illusion_0.75L,ppo,152,30.4,force,front_fx,0.002414330141618848 +illusion_0.75L,ppo,152,30.4,force,front_fy,0.00040554802399128675 +illusion_0.75L,ppo,152,30.4,force,upper_fx,0.002142183016985655 +illusion_0.75L,ppo,152,30.4,force,upper_fy,0.0042748115956783295 +illusion_0.75L,ppo,152,30.4,force,lower_fx,-0.00044621730921790004 +illusion_0.75L,ppo,152,30.4,force,lower_fy,-0.004158889874815941 +illusion_0.75L,ppo,153,30.6,force,front_fx,0.002391323447227478 +illusion_0.75L,ppo,153,30.6,force,front_fy,0.00052132603013888 +illusion_0.75L,ppo,153,30.6,force,upper_fx,0.0022449276875704527 +illusion_0.75L,ppo,153,30.6,force,upper_fy,0.004330220632255077 +illusion_0.75L,ppo,153,30.6,force,lower_fx,-0.0005758036859333515 +illusion_0.75L,ppo,153,30.6,force,lower_fy,-0.004099985118955374 +illusion_0.75L,ppo,154,30.8,force,front_fx,0.0023924726992845535 +illusion_0.75L,ppo,154,30.8,force,front_fy,0.000671645044349134 +illusion_0.75L,ppo,154,30.8,force,upper_fx,0.0023372708819806576 +illusion_0.75L,ppo,154,30.8,force,upper_fy,0.004347653593868017 +illusion_0.75L,ppo,154,30.8,force,lower_fx,-0.0007181204855442047 +illusion_0.75L,ppo,154,30.8,force,lower_fy,-0.004050358198583126 +illusion_0.75L,ppo,155,31.0,force,front_fx,0.0024267928674817085 +illusion_0.75L,ppo,155,31.0,force,front_fy,0.0008480934193357825 +illusion_0.75L,ppo,155,31.0,force,upper_fx,0.0024290282744914293 +illusion_0.75L,ppo,155,31.0,force,upper_fy,0.004317862913012505 +illusion_0.75L,ppo,155,31.0,force,lower_fx,-0.0008725483785383403 +illusion_0.75L,ppo,155,31.0,force,lower_fy,-0.004010174423456192 +illusion_0.75L,ppo,156,31.2,force,front_fx,0.002494242275133729 +illusion_0.75L,ppo,156,31.2,force,front_fy,0.0010216732043772936 +illusion_0.75L,ppo,156,31.2,force,upper_fx,0.002525666728615761 +illusion_0.75L,ppo,156,31.2,force,upper_fy,0.004234927240759134 +illusion_0.75L,ppo,156,31.2,force,lower_fx,-0.0010348301148042083 +illusion_0.75L,ppo,156,31.2,force,lower_fy,-0.0039858450181782246 +illusion_0.75L,ppo,157,31.4,force,front_fx,0.0025794380344450474 +illusion_0.75L,ppo,157,31.4,force,front_fy,0.0011497762752696872 +illusion_0.75L,ppo,157,31.4,force,upper_fx,0.0026282980106770992 +illusion_0.75L,ppo,157,31.4,force,upper_fy,0.004101870581507683 +illusion_0.75L,ppo,157,31.4,force,lower_fx,-0.0011920674005523324 +illusion_0.75L,ppo,157,31.4,force,lower_fy,-0.003985881339758635 +illusion_0.75L,ppo,158,31.6,force,front_fx,0.002670944668352604 +illusion_0.75L,ppo,158,31.6,force,front_fy,0.0012734218034893274 +illusion_0.75L,ppo,158,31.6,force,upper_fx,0.002738203154876828 +illusion_0.75L,ppo,158,31.6,force,upper_fy,0.003929118625819683 +illusion_0.75L,ppo,158,31.6,force,lower_fx,-0.0013171678874641657 +illusion_0.75L,ppo,158,31.6,force,lower_fy,-0.004017963074147701 +illusion_0.75L,ppo,159,31.8,force,front_fx,0.0027399214450269938 +illusion_0.75L,ppo,159,31.8,force,front_fy,0.0013625293504446745 +illusion_0.75L,ppo,159,31.8,force,upper_fx,0.002837572945281863 +illusion_0.75L,ppo,159,31.8,force,upper_fy,0.0037418710999190807 +illusion_0.75L,ppo,159,31.8,force,lower_fx,-0.0013991785235702991 +illusion_0.75L,ppo,159,31.8,force,lower_fy,-0.0040893289260566235 +illusion_0.75L,ppo,160,32.0,force,front_fx,0.0027823178097605705 +illusion_0.75L,ppo,160,32.0,force,front_fy,0.0014049820601940155 +illusion_0.75L,ppo,160,32.0,force,upper_fx,0.0029159635305404663 +illusion_0.75L,ppo,160,32.0,force,upper_fy,0.0035670027136802673 +illusion_0.75L,ppo,160,32.0,force,lower_fx,-0.0014272634871304035 +illusion_0.75L,ppo,160,32.0,force,lower_fy,-0.00419794674962759 +illusion_0.75L,ppo,161,32.2,force,front_fx,0.0027892859652638435 +illusion_0.75L,ppo,161,32.2,force,front_fy,0.0014041325775906444 +illusion_0.75L,ppo,161,32.2,force,upper_fx,0.002961097052320838 +illusion_0.75L,ppo,161,32.2,force,upper_fy,0.003431184682995081 +illusion_0.75L,ppo,161,32.2,force,lower_fx,-0.0013990072766318917 +illusion_0.75L,ppo,161,32.2,force,lower_fy,-0.0043353973887860775 +illusion_0.75L,ppo,162,32.4,force,front_fx,0.0027552680112421513 +illusion_0.75L,ppo,162,32.4,force,front_fy,0.0013620264362543821 +illusion_0.75L,ppo,162,32.4,force,upper_fx,0.0029661860316991806 +illusion_0.75L,ppo,162,32.4,force,upper_fy,0.0033514501992613077 +illusion_0.75L,ppo,162,32.4,force,lower_fx,-0.001324212527833879 +illusion_0.75L,ppo,162,32.4,force,lower_fy,-0.004490777384489775 +illusion_0.75L,ppo,163,32.6,force,front_fx,0.002689369022846222 +illusion_0.75L,ppo,163,32.6,force,front_fy,0.0012848691549152136 +illusion_0.75L,ppo,163,32.6,force,upper_fx,0.002935979049652815 +illusion_0.75L,ppo,163,32.6,force,upper_fy,0.0033351099118590355 +illusion_0.75L,ppo,163,32.6,force,lower_fx,-0.0012102777836844325 +illusion_0.75L,ppo,163,32.6,force,lower_fy,-0.004654780495911837 +illusion_0.75L,ppo,164,32.8,force,front_fx,0.0026011920999735594 +illusion_0.75L,ppo,164,32.8,force,front_fy,0.0011827184353023767 +illusion_0.75L,ppo,164,32.8,force,upper_fx,0.002872847719117999 +illusion_0.75L,ppo,164,32.8,force,upper_fy,0.003376790788024664 +illusion_0.75L,ppo,164,32.8,force,lower_fx,-0.0010699471458792686 +illusion_0.75L,ppo,164,32.8,force,lower_fy,-0.004822276532649994 +illusion_0.75L,ppo,165,33.0,force,front_fx,0.002504985313862562 +illusion_0.75L,ppo,165,33.0,force,front_fy,0.0010630455799400806 +illusion_0.75L,ppo,165,33.0,force,upper_fx,0.002778703812509775 +illusion_0.75L,ppo,165,33.0,force,upper_fy,0.0034561159554868937 +illusion_0.75L,ppo,165,33.0,force,lower_fx,-0.0009160585468634963 +illusion_0.75L,ppo,165,33.0,force,lower_fy,-0.00498642073944211 +illusion_0.75L,ppo,166,33.2,force,front_fx,0.002404050901532173 +illusion_0.75L,ppo,166,33.2,force,front_fy,0.0009345816215500236 +illusion_0.75L,ppo,166,33.2,force,upper_fx,0.0026584852021187544 +illusion_0.75L,ppo,166,33.2,force,upper_fy,0.003541765734553337 +illusion_0.75L,ppo,166,33.2,force,lower_fx,-0.0007536932826042175 +illusion_0.75L,ppo,166,33.2,force,lower_fy,-0.0051372116431593895 +illusion_0.75L,ppo,167,33.4,force,front_fx,0.0023137617390602827 +illusion_0.75L,ppo,167,33.4,force,front_fy,0.0008222003816626966 +illusion_0.75L,ppo,167,33.4,force,upper_fx,0.0025172391906380653 +illusion_0.75L,ppo,167,33.4,force,upper_fy,0.00360224605537951 +illusion_0.75L,ppo,167,33.4,force,lower_fx,-0.0005891164182685316 +illusion_0.75L,ppo,167,33.4,force,lower_fy,-0.00526274973526597 +illusion_0.75L,ppo,168,33.6,force,front_fx,0.0022604812402278185 +illusion_0.75L,ppo,168,33.6,force,front_fy,0.0007375997374765575 +illusion_0.75L,ppo,168,33.6,force,upper_fx,0.0023637639824301004 +illusion_0.75L,ppo,168,33.6,force,upper_fy,0.0036222341004759073 +illusion_0.75L,ppo,168,33.6,force,lower_fx,-0.00042480172123759985 +illusion_0.75L,ppo,168,33.6,force,lower_fy,-0.005349201150238514 +illusion_0.75L,ppo,169,33.8,force,front_fx,0.0022386147174984217 +illusion_0.75L,ppo,169,33.8,force,front_fy,0.0006827976321801543 +illusion_0.75L,ppo,169,33.8,force,upper_fx,0.002205898519605398 +illusion_0.75L,ppo,169,33.8,force,upper_fy,0.0036082447040826082 +illusion_0.75L,ppo,169,33.8,force,lower_fx,-0.00026612720103003085 +illusion_0.75L,ppo,169,33.8,force,lower_fy,-0.005393105559051037 +illusion_0.75L,ppo,170,34.0,force,front_fx,0.002251126803457737 +illusion_0.75L,ppo,170,34.0,force,front_fy,0.0006518334266729653 +illusion_0.75L,ppo,170,34.0,force,upper_fx,0.0020465401466935873 +illusion_0.75L,ppo,170,34.0,force,upper_fy,0.0035776784643530846 +illusion_0.75L,ppo,170,34.0,force,lower_fx,-0.00012276806228328496 +illusion_0.75L,ppo,170,34.0,force,lower_fy,-0.005398062989115715 +illusion_0.75L,ppo,171,34.2,force,front_fx,0.0022954693995416164 +illusion_0.75L,ppo,171,34.2,force,front_fy,0.0006339845713227987 +illusion_0.75L,ppo,171,34.2,force,upper_fx,0.0018949087243527174 +illusion_0.75L,ppo,171,34.2,force,upper_fy,0.0035478337667882442 +illusion_0.75L,ppo,171,34.2,force,lower_fx,-2.468270622557611e-06 +illusion_0.75L,ppo,171,34.2,force,lower_fy,-0.00536603108048439 +illusion_0.75L,ppo,172,34.4,force,front_fx,0.002356660785153508 +illusion_0.75L,ppo,172,34.4,force,front_fy,0.0006157552707009017 +illusion_0.75L,ppo,172,34.4,force,upper_fx,0.001757336314767599 +illusion_0.75L,ppo,172,34.4,force,upper_fy,0.0035351524129509926 +illusion_0.75L,ppo,172,34.4,force,lower_fx,8.5852800111752e-05 +illusion_0.75L,ppo,172,34.4,force,lower_fy,-0.00530000077560544 +illusion_0.75L,ppo,173,34.6,force,front_fx,0.0024304548278450966 +illusion_0.75L,ppo,173,34.6,force,front_fy,0.0006045150221325457 +illusion_0.75L,ppo,173,34.6,force,upper_fx,0.001646274933591485 +illusion_0.75L,ppo,173,34.6,force,upper_fy,0.0035444649402052164 +illusion_0.75L,ppo,173,34.6,force,lower_fx,0.0001397256855852902 +illusion_0.75L,ppo,173,34.6,force,lower_fy,-0.0051980470307171345 +illusion_0.75L,ppo,174,34.8,force,front_fx,0.0025112798903137445 +illusion_0.75L,ppo,174,34.8,force,front_fy,0.0006040477892383933 +illusion_0.75L,ppo,174,34.8,force,upper_fx,0.001579783856868744 +illusion_0.75L,ppo,174,34.8,force,upper_fy,0.003572721965610981 +illusion_0.75L,ppo,174,34.8,force,lower_fx,0.00016458809841424227 +illusion_0.75L,ppo,174,34.8,force,lower_fy,-0.0050641996785998344 +illusion_0.75L,ppo,175,35.0,force,front_fx,0.0025695806834846735 +illusion_0.75L,ppo,175,35.0,force,front_fy,0.0005493345088325441 +illusion_0.75L,ppo,175,35.0,force,upper_fx,0.0015659874770790339 +illusion_0.75L,ppo,175,35.0,force,upper_fy,0.0036164820194244385 +illusion_0.75L,ppo,175,35.0,force,lower_fx,0.00016246718587353826 +illusion_0.75L,ppo,175,35.0,force,lower_fy,-0.004909086041152477 +illusion_0.75L,ppo,176,35.2,force,front_fx,0.002615799894556403 +illusion_0.75L,ppo,176,35.2,force,front_fy,0.000510607787873596 +illusion_0.75L,ppo,176,35.2,force,upper_fx,0.0016043162904679775 +illusion_0.75L,ppo,176,35.2,force,upper_fy,0.0036693685688078403 +illusion_0.75L,ppo,176,35.2,force,lower_fx,0.0001334716216661036 +illusion_0.75L,ppo,176,35.2,force,lower_fy,-0.00474275927990675 +illusion_0.75L,ppo,177,35.4,force,front_fx,0.0026372401043772697 +illusion_0.75L,ppo,177,35.4,force,front_fy,0.00046951122931204736 +illusion_0.75L,ppo,177,35.4,force,upper_fx,0.0016860859468579292 +illusion_0.75L,ppo,177,35.4,force,upper_fy,0.0037341099232435226 +illusion_0.75L,ppo,177,35.4,force,lower_fx,7.739337888779119e-05 +illusion_0.75L,ppo,177,35.4,force,lower_fy,-0.004577440209686756 +illusion_0.75L,ppo,178,35.6,force,front_fx,0.0026315266732126474 +illusion_0.75L,ppo,178,35.6,force,front_fy,0.0004394030256662518 +illusion_0.75L,ppo,178,35.6,force,upper_fx,0.0017971955239772797 +illusion_0.75L,ppo,178,35.6,force,upper_fy,0.003814109368249774 +illusion_0.75L,ppo,178,35.6,force,lower_fx,-8.68508232088061e-06 +illusion_0.75L,ppo,178,35.6,force,lower_fy,-0.004428957123309374 +illusion_0.75L,ppo,179,35.8,force,front_fx,0.0026099937967956066 +illusion_0.75L,ppo,179,35.8,force,front_fy,0.00042495105299167335 +illusion_0.75L,ppo,179,35.8,force,upper_fx,0.0019222386181354523 +illusion_0.75L,ppo,179,35.8,force,upper_fy,0.003902395721524954 +illusion_0.75L,ppo,179,35.8,force,lower_fx,-0.00012469571083784103 +illusion_0.75L,ppo,179,35.8,force,lower_fy,-0.004303494468331337 +illusion_0.75L,ppo,180,36.0,force,front_fx,0.0025893719866871834 +illusion_0.75L,ppo,180,36.0,force,front_fy,0.0004346594214439392 +illusion_0.75L,ppo,180,36.0,force,upper_fx,0.0020551972556859255 +illusion_0.75L,ppo,180,36.0,force,upper_fy,0.003987520467489958 +illusion_0.75L,ppo,180,36.0,force,lower_fx,-0.0002593456592876464 +illusion_0.75L,ppo,180,36.0,force,lower_fy,-0.004203103017061949 +illusion_0.75L,ppo,181,36.2,force,front_fx,0.0025744063314050436 +illusion_0.75L,ppo,181,36.2,force,front_fy,0.0005058725364506245 +illusion_0.75L,ppo,181,36.2,force,upper_fx,0.002181997988373041 +illusion_0.75L,ppo,181,36.2,force,upper_fy,0.004063335247337818 +illusion_0.75L,ppo,181,36.2,force,lower_fx,-0.00041210214840248227 +illusion_0.75L,ppo,181,36.2,force,lower_fy,-0.0041250139474868774 +illusion_0.75L,ppo,182,36.4,force,front_fx,0.002580763306468725 +illusion_0.75L,ppo,182,36.4,force,front_fy,0.0006203746888786554 +illusion_0.75L,ppo,182,36.4,force,upper_fx,0.0022978305350989103 +illusion_0.75L,ppo,182,36.4,force,upper_fy,0.0041253105737268925 +illusion_0.75L,ppo,182,36.4,force,lower_fx,-0.0005825656116940081 +illusion_0.75L,ppo,182,36.4,force,lower_fy,-0.004066497087478638 +illusion_0.75L,ppo,183,36.6,force,front_fx,0.002614440629258752 +illusion_0.75L,ppo,183,36.6,force,front_fy,0.0007647707243449986 +illusion_0.75L,ppo,183,36.6,force,upper_fx,0.0023993859067559242 +illusion_0.75L,ppo,183,36.6,force,upper_fy,0.004168923012912273 +illusion_0.75L,ppo,183,36.6,force,lower_fx,-0.0007727989577688277 +illusion_0.75L,ppo,183,36.6,force,lower_fy,-0.004023352637887001 +illusion_0.75L,ppo,184,36.8,force,front_fx,0.002670882735401392 +illusion_0.75L,ppo,184,36.8,force,front_fy,0.0009204685920849442 +illusion_0.75L,ppo,184,36.8,force,upper_fx,0.0024885511957108974 +illusion_0.75L,ppo,184,36.8,force,upper_fy,0.00418122997507453 +illusion_0.75L,ppo,184,36.8,force,lower_fx,-0.0009810351766645908 +illusion_0.75L,ppo,184,36.8,force,lower_fy,-0.003991875797510147 +illusion_0.75L,ppo,185,37.0,force,front_fx,0.0027527231723070145 +illusion_0.75L,ppo,185,37.0,force,front_fy,0.0010686441091820598 +illusion_0.75L,ppo,185,37.0,force,upper_fx,0.002576420083642006 +illusion_0.75L,ppo,185,37.0,force,upper_fy,0.0041486164554953575 +illusion_0.75L,ppo,185,37.0,force,lower_fx,-0.001191597431898117 +illusion_0.75L,ppo,185,37.0,force,lower_fy,-0.003969372250139713 +illusion_0.75L,ppo,186,37.2,force,front_fx,0.0028424025513231754 +illusion_0.75L,ppo,186,37.2,force,front_fy,0.0012136888690292835 +illusion_0.75L,ppo,186,37.2,force,upper_fx,0.0026677364949136972 +illusion_0.75L,ppo,186,37.2,force,upper_fy,0.004071337636560202 +illusion_0.75L,ppo,186,37.2,force,lower_fx,-0.0013851107796654105 +illusion_0.75L,ppo,186,37.2,force,lower_fy,-0.003959604073315859 +illusion_0.75L,ppo,187,37.4,force,front_fx,0.0029245675541460514 +illusion_0.75L,ppo,187,37.4,force,front_fy,0.0013232305645942688 +illusion_0.75L,ppo,187,37.4,force,upper_fx,0.002757326001301408 +illusion_0.75L,ppo,187,37.4,force,upper_fy,0.003956684842705727 +illusion_0.75L,ppo,187,37.4,force,lower_fx,-0.0015485185431316495 +illusion_0.75L,ppo,187,37.4,force,lower_fy,-0.003972881007939577 +illusion_0.75L,ppo,188,37.6,force,front_fx,0.0029824802186340094 +illusion_0.75L,ppo,188,37.6,force,front_fy,0.001406622352078557 +illusion_0.75L,ppo,188,37.6,force,upper_fx,0.0028408507350832224 +illusion_0.75L,ppo,188,37.6,force,upper_fy,0.003818985540419817 +illusion_0.75L,ppo,188,37.6,force,lower_fx,-0.0016660349210724235 +illusion_0.75L,ppo,188,37.6,force,lower_fy,-0.004015425685793161 +illusion_0.75L,ppo,189,37.8,force,front_fx,0.0030059402342885733 +illusion_0.75L,ppo,189,37.8,force,front_fy,0.001457931357435882 +illusion_0.75L,ppo,189,37.8,force,upper_fx,0.0029110857285559177 +illusion_0.75L,ppo,189,37.8,force,upper_fy,0.0036771362647414207 +illusion_0.75L,ppo,189,37.8,force,lower_fx,-0.0017274479614570737 +illusion_0.75L,ppo,189,37.8,force,lower_fy,-0.004087955225259066 +illusion_0.75L,ppo,190,38.0,force,front_fx,0.00299246609210968 +illusion_0.75L,ppo,190,38.0,force,front_fy,0.001471019582822919 +illusion_0.75L,ppo,190,38.0,force,upper_fx,0.0029619920533150434 +illusion_0.75L,ppo,190,38.0,force,upper_fy,0.0035500922240316868 +illusion_0.75L,ppo,190,38.0,force,lower_fx,-0.0017297271406278014 +illusion_0.75L,ppo,190,38.0,force,lower_fy,-0.004190754145383835 +illusion_0.75L,ppo,191,38.2,force,front_fx,0.0029388987459242344 +illusion_0.75L,ppo,191,38.2,force,front_fy,0.0014557464746758342 +illusion_0.75L,ppo,191,38.2,force,upper_fx,0.002991500310599804 +illusion_0.75L,ppo,191,38.2,force,upper_fy,0.003455530619248748 +illusion_0.75L,ppo,191,38.2,force,lower_fx,-0.0016697929240763187 +illusion_0.75L,ppo,191,38.2,force,lower_fy,-0.004317964892834425 +illusion_0.75L,ppo,192,38.4,force,front_fx,0.002861008746549487 +illusion_0.75L,ppo,192,38.4,force,front_fy,0.001393218757584691 +illusion_0.75L,ppo,192,38.4,force,upper_fx,0.0029944926500320435 +illusion_0.75L,ppo,192,38.4,force,upper_fy,0.0034067772794514894 +illusion_0.75L,ppo,192,38.4,force,lower_fx,-0.0015565860085189342 +illusion_0.75L,ppo,192,38.4,force,lower_fy,-0.004470623563975096 +illusion_0.75L,ppo,193,38.6,force,front_fx,0.0027629947289824486 +illusion_0.75L,ppo,193,38.6,force,front_fy,0.001296436763368547 +illusion_0.75L,ppo,193,38.6,force,upper_fx,0.0029667182825505733 +illusion_0.75L,ppo,193,38.6,force,upper_fy,0.003409448079764843 +illusion_0.75L,ppo,193,38.6,force,lower_fx,-0.001399610540829599 +illusion_0.75L,ppo,193,38.6,force,lower_fy,-0.004645852837711573 +illusion_0.75L,ppo,194,38.8,force,front_fx,0.0026372310239821672 +illusion_0.75L,ppo,194,38.8,force,front_fy,0.0011738637695088983 +illusion_0.75L,ppo,194,38.8,force,upper_fx,0.002903760876506567 +illusion_0.75L,ppo,194,38.8,force,upper_fy,0.00346015696413815 +illusion_0.75L,ppo,194,38.8,force,lower_fx,-0.0012100854655727744 +illusion_0.75L,ppo,194,38.8,force,lower_fy,-0.004835077561438084 +illusion_0.75L,ppo,195,39.0,force,front_fx,0.002501671900972724 +illusion_0.75L,ppo,195,39.0,force,front_fy,0.001040616538375616 +illusion_0.75L,ppo,195,39.0,force,upper_fx,0.0028031684923917055 +illusion_0.75L,ppo,195,39.0,force,upper_fy,0.0035390621051192284 +illusion_0.75L,ppo,195,39.0,force,lower_fx,-0.0010034287115558982 +illusion_0.75L,ppo,195,39.0,force,lower_fy,-0.005020129028707743 +illusion_0.75L,ppo,196,39.2,force,front_fx,0.0023739065509289503 +illusion_0.75L,ppo,196,39.2,force,front_fy,0.0009062474127858877 +illusion_0.75L,ppo,196,39.2,force,upper_fx,0.0026710820384323597 +illusion_0.75L,ppo,196,39.2,force,upper_fy,0.0036148088984191418 +illusion_0.75L,ppo,196,39.2,force,lower_fx,-0.0007857209420762956 +illusion_0.75L,ppo,196,39.2,force,lower_fy,-0.005185624584555626 +illusion_0.75L,ppo,197,39.4,force,front_fx,0.0022859431337565184 +illusion_0.75L,ppo,197,39.4,force,front_fy,0.0008013952756300569 +illusion_0.75L,ppo,197,39.4,force,upper_fx,0.0025181425735354424 +illusion_0.75L,ppo,197,39.4,force,upper_fy,0.003664187388494611 +illusion_0.75L,ppo,197,39.4,force,lower_fx,-0.0005637956201098859 +illusion_0.75L,ppo,197,39.4,force,lower_fy,-0.0053173089399933815 +illusion_0.75L,ppo,198,39.6,force,front_fx,0.0022330847568809986 +illusion_0.75L,ppo,198,39.6,force,front_fy,0.0007277657277882099 +illusion_0.75L,ppo,198,39.6,force,upper_fx,0.0023478635121136904 +illusion_0.75L,ppo,198,39.6,force,upper_fy,0.0036810305900871754 +illusion_0.75L,ppo,198,39.6,force,lower_fx,-0.000352609931724146 +illusion_0.75L,ppo,198,39.6,force,lower_fy,-0.005403435323387384 +illusion_0.75L,ppo,199,39.8,force,front_fx,0.002217330737039447 +illusion_0.75L,ppo,199,39.8,force,front_fy,0.0006781538832001388 +illusion_0.75L,ppo,199,39.8,force,upper_fx,0.0021673948504030704 +illusion_0.75L,ppo,199,39.8,force,upper_fy,0.0036757749039679766 +illusion_0.75L,ppo,199,39.8,force,lower_fx,-0.00016621120448689908 +illusion_0.75L,ppo,199,39.8,force,lower_fy,-0.005447353236377239 +illusion_0.75L,ppo,200,40.0,force,front_fx,0.002241531852632761 +illusion_0.75L,ppo,200,40.0,force,front_fy,0.0006427987827919424 +illusion_0.75L,ppo,200,40.0,force,upper_fx,0.0019851413089782 +illusion_0.75L,ppo,200,40.0,force,upper_fy,0.0036625659558922052 +illusion_0.75L,ppo,200,40.0,force,lower_fx,-1.5655881725251675e-05 +illusion_0.75L,ppo,200,40.0,force,lower_fy,-0.005446515511721373 +illusion_0.75L,ppo,201,40.2,force,front_fx,0.0022886311635375023 +illusion_0.75L,ppo,201,40.2,force,front_fy,0.0006215982721187174 +illusion_0.75L,ppo,201,40.2,force,upper_fx,0.0018108581425622106 +illusion_0.75L,ppo,201,40.2,force,upper_fy,0.0036568555515259504 +illusion_0.75L,ppo,201,40.2,force,lower_fx,9.418823901796713e-05 +illusion_0.75L,ppo,201,40.2,force,lower_fy,-0.00540309539064765 +illusion_0.75L,ppo,202,40.4,force,front_fx,0.002344723092392087 +illusion_0.75L,ppo,202,40.4,force,front_fy,0.0006031127413734794 +illusion_0.75L,ppo,202,40.4,force,upper_fx,0.001667537959292531 +illusion_0.75L,ppo,202,40.4,force,upper_fy,0.0036633184645324945 +illusion_0.75L,ppo,202,40.4,force,lower_fx,0.00016705173766240478 +illusion_0.75L,ppo,202,40.4,force,lower_fy,-0.005320596043020487 +illusion_0.75L,ppo,203,40.6,force,front_fx,0.0024374783970415592 +illusion_0.75L,ppo,203,40.6,force,front_fy,0.000581726199015975 +illusion_0.75L,ppo,203,40.6,force,upper_fx,0.001569124753586948 +illusion_0.75L,ppo,203,40.6,force,upper_fy,0.0036846704315394163 +illusion_0.75L,ppo,203,40.6,force,lower_fx,0.00020779264741577208 +illusion_0.75L,ppo,203,40.6,force,lower_fy,-0.0052078962326049805 +illusion_0.75L,ppo,204,40.8,force,front_fx,0.002495518419891596 +illusion_0.75L,ppo,204,40.8,force,front_fy,0.0005312631838023663 +illusion_0.75L,ppo,204,40.8,force,upper_fx,0.0015261200023815036 +illusion_0.75L,ppo,204,40.8,force,upper_fy,0.003720775945112109 +illusion_0.75L,ppo,204,40.8,force,lower_fx,0.0002183175238315016 +illusion_0.75L,ppo,204,40.8,force,lower_fy,-0.0050714523531496525 +illusion_0.75L,ppo,205,41.0,force,front_fx,0.002549906726926565 +illusion_0.75L,ppo,205,41.0,force,front_fy,0.0005009297747164965 +illusion_0.75L,ppo,205,41.0,force,upper_fx,0.0015402594581246376 +illusion_0.75L,ppo,205,41.0,force,upper_fy,0.003768482245504856 +illusion_0.75L,ppo,205,41.0,force,lower_fx,0.00020234161638654768 +illusion_0.75L,ppo,205,41.0,force,lower_fy,-0.0049188584089279175 +illusion_0.75L,ppo,206,41.2,force,front_fx,0.0025705054868012667 +illusion_0.75L,ppo,206,41.2,force,front_fy,0.0004445600206963718 +illusion_0.75L,ppo,206,41.2,force,upper_fx,0.0015999965835362673 +illusion_0.75L,ppo,206,41.2,force,upper_fy,0.003829516703262925 +illusion_0.75L,ppo,206,41.2,force,lower_fx,0.00015423999866470695 +illusion_0.75L,ppo,206,41.2,force,lower_fy,-0.004766987171024084 +illusion_0.75L,ppo,207,41.4,force,front_fx,0.002556894440203905 +illusion_0.75L,ppo,207,41.4,force,front_fy,0.000389770430047065 +illusion_0.75L,ppo,207,41.4,force,upper_fx,0.0016971989534795284 +illusion_0.75L,ppo,207,41.4,force,upper_fy,0.003903608303517103 +illusion_0.75L,ppo,207,41.4,force,lower_fx,7.864482904551551e-05 +illusion_0.75L,ppo,207,41.4,force,lower_fy,-0.0046239267103374004 +illusion_0.75L,ppo,208,41.6,force,front_fx,0.002539998386055231 +illusion_0.75L,ppo,208,41.6,force,front_fy,0.000352467002812773 +illusion_0.75L,ppo,208,41.6,force,upper_fx,0.0018208090914413333 +illusion_0.75L,ppo,208,41.6,force,upper_fy,0.0039872704073786736 +illusion_0.75L,ppo,208,41.6,force,lower_fx,-1.8005977835855447e-05 +illusion_0.75L,ppo,208,41.6,force,lower_fy,-0.004495770204812288 +illusion_0.75L,ppo,209,41.8,force,front_fx,0.002514871070161462 +illusion_0.75L,ppo,209,41.8,force,front_fy,0.00036570761585608125 +illusion_0.75L,ppo,209,41.8,force,upper_fx,0.0019548963755369186 +illusion_0.75L,ppo,209,41.8,force,upper_fy,0.004070756025612354 +illusion_0.75L,ppo,209,41.8,force,lower_fx,-0.0001321607705904171 +illusion_0.75L,ppo,209,41.8,force,lower_fy,-0.004385749343782663 +illusion_0.75L,ppo,210,42.0,force,front_fx,0.002486828016117215 +illusion_0.75L,ppo,210,42.0,force,front_fy,0.0004054305609315634 +illusion_0.75L,ppo,210,42.0,force,upper_fx,0.002084820531308651 +illusion_0.75L,ppo,210,42.0,force,upper_fy,0.004148411564528942 +illusion_0.75L,ppo,210,42.0,force,lower_fx,-0.0002654676209203899 +illusion_0.75L,ppo,210,42.0,force,lower_fy,-0.004295696970075369 +illusion_0.75L,ppo,211,42.2,force,front_fx,0.002477184869349003 +illusion_0.75L,ppo,211,42.2,force,front_fy,0.0004987199790775776 +illusion_0.75L,ppo,211,42.2,force,upper_fx,0.0022038696333765984 +illusion_0.75L,ppo,211,42.2,force,upper_fy,0.004212689585983753 +illusion_0.75L,ppo,211,42.2,force,lower_fx,-0.0004169069870840758 +illusion_0.75L,ppo,211,42.2,force,lower_fy,-0.004221288952976465 +illusion_0.75L,ppo,212,42.4,force,front_fx,0.0024888087064027786 +illusion_0.75L,ppo,212,42.4,force,front_fy,0.0006504289922304451 +illusion_0.75L,ppo,212,42.4,force,upper_fx,0.002308716531842947 +illusion_0.75L,ppo,212,42.4,force,upper_fy,0.0042585511691868305 +illusion_0.75L,ppo,212,42.4,force,lower_fx,-0.0005912070628255606 +illusion_0.75L,ppo,212,42.4,force,lower_fy,-0.004158055875450373 +illusion_0.75L,ppo,213,42.6,force,front_fx,0.0025235223583877087 +illusion_0.75L,ppo,213,42.6,force,front_fy,0.0008020499954000115 +illusion_0.75L,ppo,213,42.6,force,upper_fx,0.002407925669103861 +illusion_0.75L,ppo,213,42.6,force,upper_fy,0.004275464918464422 +illusion_0.75L,ppo,213,42.6,force,lower_fx,-0.0007822507759556174 +illusion_0.75L,ppo,213,42.6,force,lower_fy,-0.0041007064282894135 +illusion_0.75L,ppo,214,42.8,force,front_fx,0.002614368684589863 +illusion_0.75L,ppo,214,42.8,force,front_fy,0.0009673400199972093 +illusion_0.75L,ppo,214,42.8,force,upper_fx,0.0025074374862015247 +illusion_0.75L,ppo,214,42.8,force,upper_fy,0.004253016784787178 +illusion_0.75L,ppo,214,42.8,force,lower_fx,-0.0009848697809502482 +illusion_0.75L,ppo,214,42.8,force,lower_fy,-0.004054119810461998 +illusion_0.75L,ppo,215,43.0,force,front_fx,0.002697157673537731 +illusion_0.75L,ppo,215,43.0,force,front_fy,0.001117501873522997 +illusion_0.75L,ppo,215,43.0,force,upper_fx,0.0026097744703292847 +illusion_0.75L,ppo,215,43.0,force,upper_fy,0.0041863094083964825 +illusion_0.75L,ppo,215,43.0,force,lower_fx,-0.0011826046975329518 +illusion_0.75L,ppo,215,43.0,force,lower_fy,-0.004022690467536449 +illusion_0.75L,ppo,216,43.2,force,front_fx,0.002808375284075737 +illusion_0.75L,ppo,216,43.2,force,front_fy,0.0012499138247221708 +illusion_0.75L,ppo,216,43.2,force,upper_fx,0.0027135713025927544 +illusion_0.75L,ppo,216,43.2,force,upper_fy,0.004077297635376453 +illusion_0.75L,ppo,216,43.2,force,lower_fx,-0.0013605637941509485 +illusion_0.75L,ppo,216,43.2,force,lower_fy,-0.00401652418076992 +illusion_0.75L,ppo,217,43.4,force,front_fx,0.0028920238837599754 +illusion_0.75L,ppo,217,43.4,force,front_fy,0.001351076178252697 +illusion_0.75L,ppo,217,43.4,force,upper_fx,0.0028085652738809586 +illusion_0.75L,ppo,217,43.4,force,upper_fy,0.003940577618777752 +illusion_0.75L,ppo,217,43.4,force,lower_fx,-0.0015040679136291146 +illusion_0.75L,ppo,217,43.4,force,lower_fy,-0.004040183499455452 +illusion_0.75L,ppo,218,43.6,force,front_fx,0.0029396191239356995 +illusion_0.75L,ppo,218,43.6,force,front_fy,0.001422668225131929 +illusion_0.75L,ppo,218,43.6,force,upper_fx,0.0028874243143945932 +illusion_0.75L,ppo,218,43.6,force,upper_fy,0.003793790005147457 +illusion_0.75L,ppo,218,43.6,force,lower_fx,-0.0015987188089638948 +illusion_0.75L,ppo,218,43.6,force,lower_fy,-0.004092681687325239 +illusion_0.75L,ppo,219,43.8,force,front_fx,0.0029623282607644796 +illusion_0.75L,ppo,219,43.8,force,front_fy,0.0014502863632515073 +illusion_0.75L,ppo,219,43.8,force,upper_fx,0.0029494424816221 +illusion_0.75L,ppo,219,43.8,force,upper_fy,0.003655766136944294 +illusion_0.75L,ppo,219,43.8,force,lower_fx,-0.0016305813333019614 +illusion_0.75L,ppo,219,43.8,force,lower_fy,-0.004170779138803482 +illusion_0.75L,ppo,220,44.0,force,front_fx,0.002944051520898938 +illusion_0.75L,ppo,220,44.0,force,front_fy,0.0014549815095961094 +illusion_0.75L,ppo,220,44.0,force,upper_fx,0.0029860124923288822 +illusion_0.75L,ppo,220,44.0,force,upper_fy,0.0035468926653265953 +illusion_0.75L,ppo,220,44.0,force,lower_fx,-0.0016085553215816617 +illusion_0.75L,ppo,220,44.0,force,lower_fy,-0.004278667736798525 +illusion_0.75L,ppo,221,44.2,force,front_fx,0.0028884634375572205 +illusion_0.75L,ppo,221,44.2,force,front_fy,0.001421549473889172 +illusion_0.75L,ppo,221,44.2,force,upper_fx,0.0029942744877189398 +illusion_0.75L,ppo,221,44.2,force,upper_fy,0.0034837303683161736 +illusion_0.75L,ppo,221,44.2,force,lower_fx,-0.0015328924637287855 +illusion_0.75L,ppo,221,44.2,force,lower_fy,-0.004410938825458288 +illusion_0.75L,ppo,222,44.4,force,front_fx,0.0027945598121732473 +illusion_0.75L,ppo,222,44.4,force,front_fy,0.001333999214693904 +illusion_0.75L,ppo,222,44.4,force,upper_fx,0.002969631925225258 +illusion_0.75L,ppo,222,44.4,force,upper_fy,0.0034737649839371443 +illusion_0.75L,ppo,222,44.4,force,lower_fx,-0.0014154785312712193 +illusion_0.75L,ppo,222,44.4,force,lower_fy,-0.004565595183521509 +illusion_0.75L,ppo,223,44.6,force,front_fx,0.0026782688219100237 +illusion_0.75L,ppo,223,44.6,force,front_fy,0.0012162908678874373 +illusion_0.75L,ppo,223,44.6,force,upper_fx,0.0029121809639036655 +illusion_0.75L,ppo,223,44.6,force,upper_fy,0.003509317059069872 +illusion_0.75L,ppo,223,44.6,force,lower_fx,-0.0012642720248550177 +illusion_0.75L,ppo,223,44.6,force,lower_fy,-0.004736043978482485 +illusion_0.75L,ppo,224,44.8,force,front_fx,0.002548914635553956 +illusion_0.75L,ppo,224,44.8,force,front_fy,0.0010805655037984252 +illusion_0.75L,ppo,224,44.8,force,upper_fx,0.0028258177917450666 +illusion_0.75L,ppo,224,44.8,force,upper_fy,0.003568330081179738 +illusion_0.75L,ppo,224,44.8,force,lower_fx,-0.0010832974221557379 +illusion_0.75L,ppo,224,44.8,force,lower_fy,-0.004907323978841305 +illusion_0.75L,ppo,225,45.0,force,front_fx,0.0024314403999596834 +illusion_0.75L,ppo,225,45.0,force,front_fy,0.0009691413724794984 +illusion_0.75L,ppo,225,45.0,force,upper_fx,0.0027152691036462784 +illusion_0.75L,ppo,225,45.0,force,upper_fy,0.0036244187504053116 +illusion_0.75L,ppo,225,45.0,force,lower_fx,-0.0008800165960565209 +illusion_0.75L,ppo,225,45.0,force,lower_fy,-0.005067646969109774 +illusion_0.75L,ppo,226,45.2,force,front_fx,0.0023338606115430593 +illusion_0.75L,ppo,226,45.2,force,front_fy,0.0008590167853981256 +illusion_0.75L,ppo,226,45.2,force,upper_fx,0.0025835453998297453 +illusion_0.75L,ppo,226,45.2,force,upper_fy,0.0036574439145624638 +illusion_0.75L,ppo,226,45.2,force,lower_fx,-0.0006641015643253922 +illusion_0.75L,ppo,226,45.2,force,lower_fy,-0.005203009117394686 +illusion_0.75L,ppo,227,45.4,force,front_fx,0.002270720200613141 +illusion_0.75L,ppo,227,45.4,force,front_fy,0.0007858552853576839 +illusion_0.75L,ppo,227,45.4,force,upper_fx,0.002433579880744219 +illusion_0.75L,ppo,227,45.4,force,upper_fy,0.0036586052738130093 +illusion_0.75L,ppo,227,45.4,force,lower_fx,-0.00045108210179023445 +illusion_0.75L,ppo,227,45.4,force,lower_fy,-0.005307881161570549 +illusion_0.75L,ppo,228,45.6,force,front_fx,0.0022440473549067974 +illusion_0.75L,ppo,228,45.6,force,front_fy,0.0007247928297147155 +illusion_0.75L,ppo,228,45.6,force,upper_fx,0.002271196572110057 +illusion_0.75L,ppo,228,45.6,force,upper_fy,0.0036427644081413746 +illusion_0.75L,ppo,228,45.6,force,lower_fx,-0.0002580817963462323 +illusion_0.75L,ppo,228,45.6,force,lower_fy,-0.005377932917326689 +illusion_0.75L,ppo,229,45.8,force,front_fx,0.002248962176963687 +illusion_0.75L,ppo,229,45.8,force,front_fy,0.0006847032345831394 +illusion_0.75L,ppo,229,45.8,force,upper_fx,0.002096796641126275 +illusion_0.75L,ppo,229,45.8,force,upper_fy,0.0036169784143567085 +illusion_0.75L,ppo,229,45.8,force,lower_fx,-9.663990931585431e-05 +illusion_0.75L,ppo,229,45.8,force,lower_fy,-0.005409036763012409 +illusion_0.75L,ppo,230,46.0,force,front_fx,0.0022890286054462194 +illusion_0.75L,ppo,230,46.0,force,front_fy,0.0006467301864176989 +illusion_0.75L,ppo,230,46.0,force,upper_fx,0.0019256699597463012 +illusion_0.75L,ppo,230,46.0,force,upper_fy,0.003598487004637718 +illusion_0.75L,ppo,230,46.0,force,lower_fx,3.0915434763301164e-05 +illusion_0.75L,ppo,230,46.0,force,lower_fy,-0.00540139339864254 +illusion_0.75L,ppo,231,46.2,force,front_fx,0.0023482588585466146 +illusion_0.75L,ppo,231,46.2,force,front_fy,0.0006429029745049775 +illusion_0.75L,ppo,231,46.2,force,upper_fx,0.001768928486853838 +illusion_0.75L,ppo,231,46.2,force,upper_fy,0.0035974925849586725 +illusion_0.75L,ppo,231,46.2,force,lower_fx,0.00012211286230012774 +illusion_0.75L,ppo,231,46.2,force,lower_fy,-0.00535237742587924 +illusion_0.75L,ppo,232,46.4,force,front_fx,0.0024067750200629234 +illusion_0.75L,ppo,232,46.4,force,front_fy,0.000591730116866529 +illusion_0.75L,ppo,232,46.4,force,upper_fx,0.0016452388372272253 +illusion_0.75L,ppo,232,46.4,force,upper_fy,0.0036188059020787477 +illusion_0.75L,ppo,232,46.4,force,lower_fx,0.0001779642334440723 +illusion_0.75L,ppo,232,46.4,force,lower_fy,-0.005266472231596708 +illusion_0.75L,ppo,233,46.6,force,front_fx,0.0024915924295783043 +illusion_0.75L,ppo,233,46.6,force,front_fy,0.0005744238733313978 +illusion_0.75L,ppo,233,46.6,force,upper_fx,0.0015702679520472884 +illusion_0.75L,ppo,233,46.6,force,upper_fy,0.0036524622701108456 +illusion_0.75L,ppo,233,46.6,force,lower_fx,0.00020127923926338553 +illusion_0.75L,ppo,233,46.6,force,lower_fy,-0.005149480886757374 +illusion_0.75L,ppo,234,46.8,force,front_fx,0.002514987951144576 +illusion_0.75L,ppo,234,46.8,force,front_fy,0.000561680702958256 +illusion_0.75L,ppo,234,46.8,force,upper_fx,0.001547995489090681 +illusion_0.75L,ppo,234,46.8,force,upper_fy,0.0036974018439650536 +illusion_0.75L,ppo,234,46.8,force,lower_fx,0.00019363056344445795 +illusion_0.75L,ppo,234,46.8,force,lower_fy,-0.005009797401726246 +illusion_0.75L,ppo,235,47.0,force,front_fx,0.0025647126603871584 +illusion_0.75L,ppo,235,47.0,force,front_fy,0.0004659497644752264 +illusion_0.75L,ppo,235,47.0,force,upper_fx,0.001579497940838337 +illusion_0.75L,ppo,235,47.0,force,upper_fy,0.003749790834262967 +illusion_0.75L,ppo,235,47.0,force,lower_fx,0.0001560193340992555 +illusion_0.75L,ppo,235,47.0,force,lower_fy,-0.0048612444661557674 +illusion_0.75L,ppo,236,47.2,force,front_fx,0.002571002347394824 +illusion_0.75L,ppo,236,47.2,force,front_fy,0.0004173792840447277 +illusion_0.75L,ppo,236,47.2,force,upper_fx,0.0016574293840676546 +illusion_0.75L,ppo,236,47.2,force,upper_fy,0.003810756141319871 +illusion_0.75L,ppo,236,47.2,force,lower_fx,0.00010007742093876004 +illusion_0.75L,ppo,236,47.2,force,lower_fy,-0.00471098255366087 +illusion_0.75L,ppo,237,47.4,force,front_fx,0.0025668605230748653 +illusion_0.75L,ppo,237,47.4,force,front_fy,0.0003818329132627696 +illusion_0.75L,ppo,237,47.4,force,upper_fx,0.0017686798237264156 +illusion_0.75L,ppo,237,47.4,force,upper_fy,0.0038818959146738052 +illusion_0.75L,ppo,237,47.4,force,lower_fx,2.4217031750595197e-05 +illusion_0.75L,ppo,237,47.4,force,lower_fy,-0.004569632466882467 +illusion_0.75L,ppo,238,47.6,force,front_fx,0.002549986820667982 +illusion_0.75L,ppo,238,47.6,force,front_fy,0.00038506370037794113 +illusion_0.75L,ppo,238,47.6,force,upper_fx,0.001898704213090241 +illusion_0.75L,ppo,238,47.6,force,upper_fy,0.00395775493234396 +illusion_0.75L,ppo,238,47.6,force,lower_fx,-7.455536251654848e-05 +illusion_0.75L,ppo,238,47.6,force,lower_fy,-0.004449514206498861 +illusion_0.75L,ppo,239,47.8,force,front_fx,0.0025356074329465628 +illusion_0.75L,ppo,239,47.8,force,front_fy,0.000425785401603207 +illusion_0.75L,ppo,239,47.8,force,upper_fx,0.0020303595811128616 +illusion_0.75L,ppo,239,47.8,force,upper_fy,0.0040321736596524715 +illusion_0.75L,ppo,239,47.8,force,lower_fx,-0.00019934056035708636 +illusion_0.75L,ppo,239,47.8,force,lower_fy,-0.004351827781647444 +illusion_0.75L,ppo,240,48.0,force,front_fx,0.002533885184675455 +illusion_0.75L,ppo,240,48.0,force,front_fy,0.0004980688681825995 +illusion_0.75L,ppo,240,48.0,force,upper_fx,0.0021538150031119585 +illusion_0.75L,ppo,240,48.0,force,upper_fy,0.004098949953913689 +illusion_0.75L,ppo,240,48.0,force,lower_fx,-0.00035012696753256023 +illusion_0.75L,ppo,240,48.0,force,lower_fy,-0.0042721908539533615 +illusion_0.75L,ppo,241,48.2,force,front_fx,0.0025493886787444353 +illusion_0.75L,ppo,241,48.2,force,front_fy,0.0006268153083510697 +illusion_0.75L,ppo,241,48.2,force,upper_fx,0.002267253352329135 +illusion_0.75L,ppo,241,48.2,force,upper_fy,0.0041544875130057335 +illusion_0.75L,ppo,241,48.2,force,lower_fx,-0.0005235545104369521 +illusion_0.75L,ppo,241,48.2,force,lower_fy,-0.004204182885587215 +illusion_0.75L,ppo,242,48.4,force,front_fx,0.002596477512270212 +illusion_0.75L,ppo,242,48.4,force,front_fy,0.000778095331043005 +illusion_0.75L,ppo,242,48.4,force,upper_fx,0.002371766371652484 +illusion_0.75L,ppo,242,48.4,force,upper_fy,0.0041912030428647995 +illusion_0.75L,ppo,242,48.4,force,lower_fx,-0.0007193984347395599 +illusion_0.75L,ppo,242,48.4,force,lower_fy,-0.004145227838307619 +illusion_0.75L,ppo,243,48.6,force,front_fx,0.0026667851489037275 +illusion_0.75L,ppo,243,48.6,force,front_fy,0.0009391232742927969 +illusion_0.75L,ppo,243,48.6,force,upper_fx,0.0024693822488188744 +illusion_0.75L,ppo,243,48.6,force,upper_fy,0.004199753049761057 +illusion_0.75L,ppo,243,48.6,force,lower_fx,-0.0009323899284936488 +illusion_0.75L,ppo,243,48.6,force,lower_fy,-0.004095122683793306 +illusion_0.75L,ppo,244,48.8,force,front_fx,0.0027597465086728334 +illusion_0.75L,ppo,244,48.8,force,front_fy,0.001071643433533609 +illusion_0.75L,ppo,244,48.8,force,upper_fx,0.0025650302413851023 +illusion_0.75L,ppo,244,48.8,force,upper_fy,0.004170502535998821 +illusion_0.75L,ppo,244,48.8,force,lower_fx,-0.001148106879554689 +illusion_0.75L,ppo,244,48.8,force,lower_fy,-0.004053901880979538 +illusion_0.75L,ppo,245,49.0,force,front_fx,0.0028675824869424105 +illusion_0.75L,ppo,245,49.0,force,front_fy,0.0012025843607261777 +illusion_0.75L,ppo,245,49.0,force,upper_fx,0.002658173441886902 +illusion_0.75L,ppo,245,49.0,force,upper_fy,0.0041006444953382015 +illusion_0.75L,ppo,245,49.0,force,lower_fx,-0.0013508491683751345 +illusion_0.75L,ppo,245,49.0,force,lower_fy,-0.004025550093501806 +illusion_0.75L,ppo,246,49.2,force,front_fx,0.002941132988780737 +illusion_0.75L,ppo,246,49.2,force,front_fy,0.0013056130846962333 +illusion_0.75L,ppo,246,49.2,force,upper_fx,0.0027480917051434517 +illusion_0.75L,ppo,246,49.2,force,upper_fy,0.003997622989118099 +illusion_0.75L,ppo,246,49.2,force,lower_fx,-0.0015207786345854402 +illusion_0.75L,ppo,246,49.2,force,lower_fy,-0.004015003331005573 +illusion_0.75L,ppo,247,49.4,force,front_fx,0.003005456877872348 +illusion_0.75L,ppo,247,49.4,force,front_fy,0.001395318191498518 +illusion_0.75L,ppo,247,49.4,force,upper_fx,0.0028329927008599043 +illusion_0.75L,ppo,247,49.4,force,upper_fy,0.0038720027077943087 +illusion_0.75L,ppo,247,49.4,force,lower_fx,-0.0016431356780231 +illusion_0.75L,ppo,247,49.4,force,lower_fy,-0.0040286993607878685 +illusion_0.75L,ppo,248,49.6,force,front_fx,0.0030397986993193626 +illusion_0.75L,ppo,248,49.6,force,front_fy,0.0014522920828312635 +illusion_0.75L,ppo,248,49.6,force,upper_fx,0.0029049257282167673 +illusion_0.75L,ppo,248,49.6,force,upper_fy,0.0037426413036882877 +illusion_0.75L,ppo,248,49.6,force,lower_fx,-0.0017116658855229616 +illusion_0.75L,ppo,248,49.6,force,lower_fy,-0.004072059877216816 +illusion_0.75L,ppo,249,49.8,force,front_fx,0.0030383961275219917 +illusion_0.75L,ppo,249,49.8,force,front_fy,0.0014803700614720583 +illusion_0.75L,ppo,249,49.8,force,upper_fx,0.00296005723066628 +illusion_0.75L,ppo,249,49.8,force,upper_fy,0.0036289545241743326 +illusion_0.75L,ppo,249,49.8,force,lower_fx,-0.0017214171821251512 +illusion_0.75L,ppo,249,49.8,force,lower_fy,-0.0041474467143416405 +illusion_0.75L,ppo,250,50.0,force,front_fx,0.002997581148520112 +illusion_0.75L,ppo,250,50.0,force,front_fy,0.0014605766627937555 +illusion_0.75L,ppo,250,50.0,force,upper_fx,0.002989548956975341 +illusion_0.75L,ppo,250,50.0,force,upper_fy,0.0035472435411065817 +illusion_0.75L,ppo,250,50.0,force,lower_fx,-0.0016786705236881971 +illusion_0.75L,ppo,250,50.0,force,lower_fy,-0.00425723334774375 +illusion_0.75L,ppo,251,50.2,force,front_fx,0.002912280848249793 +illusion_0.75L,ppo,251,50.2,force,front_fy,0.0014004908734932542 +illusion_0.75L,ppo,251,50.2,force,upper_fx,0.002988585503771901 +illusion_0.75L,ppo,251,50.2,force,upper_fy,0.0035081517416983843 +illusion_0.75L,ppo,251,50.2,force,lower_fx,-0.0015873415395617485 +illusion_0.75L,ppo,251,50.2,force,lower_fy,-0.004398245830088854 +illusion_0.75L,ppo,252,50.4,force,front_fx,0.0027996504213660955 +illusion_0.75L,ppo,252,50.4,force,front_fy,0.0013073284644633532 +illusion_0.75L,ppo,252,50.4,force,upper_fx,0.0029586786404252052 +illusion_0.75L,ppo,252,50.4,force,upper_fy,0.0035140416584908962 +illusion_0.75L,ppo,252,50.4,force,lower_fx,-0.0014490614412352443 +illusion_0.75L,ppo,252,50.4,force,lower_fy,-0.004563477821648121 +illusion_0.75L,ppo,253,50.6,force,front_fx,0.0026574761141091585 +illusion_0.75L,ppo,253,50.6,force,front_fy,0.0011851084418594837 +illusion_0.75L,ppo,253,50.6,force,upper_fx,0.002896514255553484 +illusion_0.75L,ppo,253,50.6,force,upper_fy,0.00355730508454144 +illusion_0.75L,ppo,253,50.6,force,lower_fx,-0.0012723017716780305 +illusion_0.75L,ppo,253,50.6,force,lower_fy,-0.004741388373076916 +illusion_0.75L,ppo,254,50.8,force,front_fx,0.0025231000036001205 +illusion_0.75L,ppo,254,50.8,force,front_fy,0.0010493829613551497 +illusion_0.75L,ppo,254,50.8,force,upper_fx,0.0028046262450516224 +illusion_0.75L,ppo,254,50.8,force,upper_fy,0.0036148836370557547 +illusion_0.75L,ppo,254,50.8,force,lower_fx,-0.0010657105594873428 +illusion_0.75L,ppo,254,50.8,force,lower_fy,-0.004918386694043875 +illusion_0.75L,ppo,255,51.0,force,front_fx,0.002400600118562579 +illusion_0.75L,ppo,255,51.0,force,front_fy,0.0009421793511137366 +illusion_0.75L,ppo,255,51.0,force,upper_fx,0.0026859857607632875 +illusion_0.75L,ppo,255,51.0,force,upper_fy,0.0036600613966584206 +illusion_0.75L,ppo,255,51.0,force,lower_fx,-0.0008399923099204898 +illusion_0.75L,ppo,255,51.0,force,lower_fy,-0.0050765275955200195 +illusion_0.75L,ppo,256,51.2,force,front_fx,0.002305402187630534 +illusion_0.75L,ppo,256,51.2,force,front_fy,0.0008467027801088989 +illusion_0.75L,ppo,256,51.2,force,upper_fx,0.0025431672111153603 +illusion_0.75L,ppo,256,51.2,force,upper_fy,0.003679153975099325 +illusion_0.75L,ppo,256,51.2,force,lower_fx,-0.0006125984946265817 +illusion_0.75L,ppo,256,51.2,force,lower_fy,-0.005207135807722807 +illusion_0.75L,ppo,257,51.4,force,front_fx,0.002248950768262148 +illusion_0.75L,ppo,257,51.4,force,front_fy,0.0007766727940179408 +illusion_0.75L,ppo,257,51.4,force,upper_fx,0.0023832605220377445 +illusion_0.75L,ppo,257,51.4,force,upper_fy,0.0036697101313620806 +illusion_0.75L,ppo,257,51.4,force,lower_fx,-0.0003973412385676056 +illusion_0.75L,ppo,257,51.4,force,lower_fy,-0.005300296004861593 +illusion_0.75L,ppo,258,51.6,force,front_fx,0.0022408508230000734 +illusion_0.75L,ppo,258,51.6,force,front_fy,0.0007309144712053239 +illusion_0.75L,ppo,258,51.6,force,upper_fx,0.0022133425809442997 +illusion_0.75L,ppo,258,51.6,force,upper_fy,0.0036446256563067436 +illusion_0.75L,ppo,258,51.6,force,lower_fx,-0.0002051044866675511 +illusion_0.75L,ppo,258,51.6,force,lower_fy,-0.005357703659683466 +illusion_0.75L,ppo,259,51.8,force,front_fx,0.0022594290785491467 +illusion_0.75L,ppo,259,51.8,force,front_fy,0.0006908149807713926 +illusion_0.75L,ppo,259,51.8,force,upper_fx,0.002038566628471017 +illusion_0.75L,ppo,259,51.8,force,upper_fy,0.003621811978518963 +illusion_0.75L,ppo,259,51.8,force,lower_fx,-4.766487836604938e-05 +illusion_0.75L,ppo,259,51.8,force,lower_fy,-0.005378073547035456 +illusion_0.75L,ppo,260,52.0,force,front_fx,0.002312083961442113 +illusion_0.75L,ppo,260,52.0,force,front_fy,0.0006574419094249606 +illusion_0.75L,ppo,260,52.0,force,upper_fx,0.0018707269337028265 +illusion_0.75L,ppo,260,52.0,force,upper_fy,0.0036139902658760548 +illusion_0.75L,ppo,260,52.0,force,lower_fx,7.101182563928887e-05 +illusion_0.75L,ppo,260,52.0,force,lower_fy,-0.0053644306026399136 +illusion_0.75L,ppo,261,52.2,force,front_fx,0.002364853862673044 +illusion_0.75L,ppo,261,52.2,force,front_fy,0.0006279193330556154 +illusion_0.75L,ppo,261,52.2,force,upper_fx,0.001725038280710578 +illusion_0.75L,ppo,261,52.2,force,upper_fy,0.0036265680100768805 +illusion_0.75L,ppo,261,52.2,force,lower_fx,0.00015096305287443101 +illusion_0.75L,ppo,261,52.2,force,lower_fy,-0.005316823720932007 +illusion_0.75L,ppo,262,52.4,force,front_fx,0.0024291062727570534 +illusion_0.75L,ppo,262,52.4,force,front_fy,0.000592343567404896 +illusion_0.75L,ppo,262,52.4,force,upper_fx,0.001615390763618052 +illusion_0.75L,ppo,262,52.4,force,upper_fy,0.0036555163096636534 +illusion_0.75L,ppo,262,52.4,force,lower_fx,0.00019123397942166775 +illusion_0.75L,ppo,262,52.4,force,lower_fy,-0.005235567688941956 +illusion_0.75L,ppo,263,52.6,force,front_fx,0.0024837006349116564 +illusion_0.75L,ppo,263,52.6,force,front_fy,0.0005434177001006901 +illusion_0.75L,ppo,263,52.6,force,upper_fx,0.0015563338529318571 +illusion_0.75L,ppo,263,52.6,force,upper_fy,0.0036957510747015476 +illusion_0.75L,ppo,263,52.6,force,lower_fx,0.0002013496559811756 +illusion_0.75L,ppo,263,52.6,force,lower_fy,-0.005124935880303383 +illusion_0.75L,ppo,264,52.8,force,front_fx,0.0025339326821267605 +illusion_0.75L,ppo,264,52.8,force,front_fy,0.0004957407945767045 +illusion_0.75L,ppo,264,52.8,force,upper_fx,0.0015534927370026708 +illusion_0.75L,ppo,264,52.8,force,upper_fy,0.0037433654069900513 +illusion_0.75L,ppo,264,52.8,force,lower_fx,0.00018740506493486464 +illusion_0.75L,ppo,264,52.8,force,lower_fy,-0.0049927677027881145 +illusion_0.75L,ppo,265,53.0,force,front_fx,0.0025487705133855343 +illusion_0.75L,ppo,265,53.0,force,front_fy,0.0004417877353262156 +illusion_0.75L,ppo,265,53.0,force,upper_fx,0.0015972043620422482 +illusion_0.75L,ppo,265,53.0,force,upper_fy,0.0038029197603464127 +illusion_0.75L,ppo,265,53.0,force,lower_fx,0.00014596391702070832 +illusion_0.75L,ppo,265,53.0,force,lower_fy,-0.004853781312704086 +illusion_0.75L,ppo,266,53.2,force,front_fx,0.0025336043909192085 +illusion_0.75L,ppo,266,53.2,force,front_fy,0.0003805719316005707 +illusion_0.75L,ppo,266,53.2,force,upper_fx,0.0016817443538457155 +illusion_0.75L,ppo,266,53.2,force,upper_fy,0.0038730003871023655 +illusion_0.75L,ppo,266,53.2,force,lower_fx,8.180583972716704e-05 +illusion_0.75L,ppo,266,53.2,force,lower_fy,-0.004717634525150061 +illusion_0.75L,ppo,267,53.4,force,front_fx,0.0025214680936187506 +illusion_0.75L,ppo,267,53.4,force,front_fy,0.0003604115918278694 +illusion_0.75L,ppo,267,53.4,force,upper_fx,0.001792294206097722 +illusion_0.75L,ppo,267,53.4,force,upper_fy,0.0039468626491725445 +illusion_0.75L,ppo,267,53.4,force,lower_fx,-6.073241365811555e-06 +illusion_0.75L,ppo,267,53.4,force,lower_fy,-0.004591539967805147 +illusion_0.75L,ppo,268,53.6,force,front_fx,0.002500554546713829 +illusion_0.75L,ppo,268,53.6,force,front_fy,0.00036383428960107267 +illusion_0.75L,ppo,268,53.6,force,upper_fx,0.001915920409373939 +illusion_0.75L,ppo,268,53.6,force,upper_fy,0.004015080165117979 +illusion_0.75L,ppo,268,53.6,force,lower_fx,-0.00011377449845895171 +illusion_0.75L,ppo,268,53.6,force,lower_fy,-0.0044789994135499 +illusion_0.75L,ppo,269,53.8,force,front_fx,0.002496813889592886 +illusion_0.75L,ppo,269,53.8,force,front_fy,0.0004278913838788867 +illusion_0.75L,ppo,269,53.8,force,upper_fx,0.0020429380238056183 +illusion_0.75L,ppo,269,53.8,force,upper_fy,0.0040746224112808704 +illusion_0.75L,ppo,269,53.8,force,lower_fx,-0.0002385427214903757 +illusion_0.75L,ppo,269,53.8,force,lower_fy,-0.004380370490252972 +illusion_0.75L,ppo,270,54.0,force,front_fx,0.002494567772373557 +illusion_0.75L,ppo,270,54.0,force,front_fy,0.0005493900971487164 +illusion_0.75L,ppo,270,54.0,force,upper_fx,0.0021650397684425116 +illusion_0.75L,ppo,270,54.0,force,upper_fy,0.004127693362534046 +illusion_0.75L,ppo,270,54.0,force,lower_fx,-0.0003845062165055424 +illusion_0.75L,ppo,270,54.0,force,lower_fy,-0.004295851103961468 +illusion_0.75L,ppo,271,54.2,force,front_fx,0.0025395166594535112 +illusion_0.75L,ppo,271,54.2,force,front_fy,0.0006689004367217422 +illusion_0.75L,ppo,271,54.2,force,upper_fx,0.0022785961627960205 +illusion_0.75L,ppo,271,54.2,force,upper_fy,0.0041722459718585014 +illusion_0.75L,ppo,271,54.2,force,lower_fx,-0.0005569926579482853 +illusion_0.75L,ppo,271,54.2,force,lower_fy,-0.004225272219628096 +illusion_0.75L,ppo,272,54.4,force,front_fx,0.0025999664794653654 +illusion_0.75L,ppo,272,54.4,force,front_fy,0.0008265924407169223 +illusion_0.75L,ppo,272,54.4,force,upper_fx,0.00238472456112504 +illusion_0.75L,ppo,272,54.4,force,upper_fy,0.004197190050035715 +illusion_0.75L,ppo,272,54.4,force,lower_fx,-0.0007530674920417368 +illusion_0.75L,ppo,272,54.4,force,lower_fy,-0.0041642398573458195 +illusion_0.75L,ppo,273,54.6,force,front_fx,0.002679093973711133 +illusion_0.75L,ppo,273,54.6,force,front_fy,0.0009828656911849976 +illusion_0.75L,ppo,273,54.6,force,upper_fx,0.0024856592062860727 +illusion_0.75L,ppo,273,54.6,force,upper_fy,0.004190619569271803 +illusion_0.75L,ppo,273,54.6,force,lower_fx,-0.0009653964661993086 +illusion_0.75L,ppo,273,54.6,force,lower_fy,-0.004111473448574543 +illusion_0.75L,ppo,274,54.8,force,front_fx,0.0027842381969094276 +illusion_0.75L,ppo,274,54.8,force,front_fy,0.001123660709708929 +illusion_0.75L,ppo,274,54.8,force,upper_fx,0.002584754256531596 +illusion_0.75L,ppo,274,54.8,force,upper_fy,0.0041442993097007275 +illusion_0.75L,ppo,274,54.8,force,lower_fx,-0.0011776271276175976 +illusion_0.75L,ppo,274,54.8,force,lower_fy,-0.004070273134857416 +illusion_0.75L,ppo,275,55.0,force,front_fx,0.002882525557652116 +illusion_0.75L,ppo,275,55.0,force,front_fy,0.0012382912682369351 +illusion_0.75L,ppo,275,55.0,force,upper_fx,0.0026812476571649313 +illusion_0.75L,ppo,275,55.0,force,upper_fy,0.004062632564455271 +illusion_0.75L,ppo,275,55.0,force,lower_fx,-0.0013689490733668208 +illusion_0.75L,ppo,275,55.0,force,lower_fy,-0.004045552108436823 +illusion_0.75L,ppo,276,55.2,force,front_fx,0.002963934326544404 +illusion_0.75L,ppo,276,55.2,force,front_fy,0.0013419893803074956 +illusion_0.75L,ppo,276,55.2,force,upper_fx,0.0027708434499800205 +illusion_0.75L,ppo,276,55.2,force,upper_fy,0.003955377731472254 +illusion_0.75L,ppo,276,55.2,force,lower_fx,-0.0015230881981551647 +illusion_0.75L,ppo,276,55.2,force,lower_fy,-0.004040547180920839 +illusion_0.75L,ppo,277,55.4,force,front_fx,0.0030163757037371397 +illusion_0.75L,ppo,277,55.4,force,front_fy,0.0014144007582217455 +illusion_0.75L,ppo,277,55.4,force,upper_fx,0.002847211668267846 +illusion_0.75L,ppo,277,55.4,force,upper_fy,0.003836545627564192 +illusion_0.75L,ppo,277,55.4,force,lower_fx,-0.0016308517660945654 +illusion_0.75L,ppo,277,55.4,force,lower_fy,-0.004059567581862211 +illusion_0.75L,ppo,278,55.6,force,front_fx,0.0030270928982645273 +illusion_0.75L,ppo,278,55.6,force,front_fy,0.001451843068934977 +illusion_0.75L,ppo,278,55.6,force,upper_fx,0.0029066698625683784 +illusion_0.75L,ppo,278,55.6,force,upper_fy,0.003721765009686351 +illusion_0.75L,ppo,278,55.6,force,lower_fx,-0.0016868142411112785 +illusion_0.75L,ppo,278,55.6,force,lower_fy,-0.0041060177609324455 +illusion_0.75L,ppo,279,55.8,force,front_fx,0.0030279348138719797 +illusion_0.75L,ppo,279,55.8,force,front_fy,0.001464356668293476 +illusion_0.75L,ppo,279,55.8,force,upper_fx,0.0029457840137183666 +illusion_0.75L,ppo,279,55.8,force,upper_fy,0.003624070668593049 +illusion_0.75L,ppo,279,55.8,force,lower_fx,-0.0016898683970794082 +illusion_0.75L,ppo,279,55.8,force,lower_fy,-0.004179358948022127 +illusion_0.75L,ppo,280,56.0,force,front_fx,0.002960406942293048 +illusion_0.75L,ppo,280,56.0,force,front_fy,0.0014352459693327546 +illusion_0.75L,ppo,280,56.0,force,upper_fx,0.0029617834370583296 +illusion_0.75L,ppo,280,56.0,force,upper_fy,0.0035619724076241255 +illusion_0.75L,ppo,280,56.0,force,lower_fx,-0.0016392837278544903 +illusion_0.75L,ppo,280,56.0,force,lower_fy,-0.00428288197144866 +illusion_0.75L,ppo,281,56.2,force,front_fx,0.002892586635425687 +illusion_0.75L,ppo,281,56.2,force,front_fy,0.00136407685931772 +illusion_0.75L,ppo,281,56.2,force,upper_fx,0.002953377552330494 +illusion_0.75L,ppo,281,56.2,force,upper_fy,0.0035391494166105986 +illusion_0.75L,ppo,281,56.2,force,lower_fx,-0.001539977383799851 +illusion_0.75L,ppo,281,56.2,force,lower_fy,-0.004416652489453554 +illusion_0.75L,ppo,282,56.4,force,front_fx,0.0027637735474854708 +illusion_0.75L,ppo,282,56.4,force,front_fy,0.00126598309725523 +illusion_0.75L,ppo,282,56.4,force,upper_fx,0.0029174969531595707 +illusion_0.75L,ppo,282,56.4,force,upper_fy,0.003557302290573716 +illusion_0.75L,ppo,282,56.4,force,lower_fx,-0.0013951186556369066 +illusion_0.75L,ppo,282,56.4,force,lower_fy,-0.004576519597321749 +illusion_0.75L,ppo,283,56.6,force,front_fx,0.002620484447106719 +illusion_0.75L,ppo,283,56.6,force,front_fy,0.0011394345201551914 +illusion_0.75L,ppo,283,56.6,force,upper_fx,0.002852172590792179 +illusion_0.75L,ppo,283,56.6,force,upper_fy,0.0036003782879561186 +illusion_0.75L,ppo,283,56.6,force,lower_fx,-0.0012146516237407923 +illusion_0.75L,ppo,283,56.6,force,lower_fy,-0.004750750493258238 +illusion_0.75L,ppo,284,56.8,force,front_fx,0.002495167776942253 +illusion_0.75L,ppo,284,56.8,force,front_fy,0.0010210559703409672 +illusion_0.75L,ppo,284,56.8,force,upper_fx,0.0027577965520322323 +illusion_0.75L,ppo,284,56.8,force,upper_fy,0.003641668241471052 +illusion_0.75L,ppo,284,56.8,force,lower_fx,-0.0010027181124314666 +illusion_0.75L,ppo,284,56.8,force,lower_fy,-0.0049166008830070496 +illusion_0.75L,ppo,285,57.0,force,front_fx,0.0023801634088158607 +illusion_0.75L,ppo,285,57.0,force,front_fy,0.0009176351013593376 +illusion_0.75L,ppo,285,57.0,force,upper_fx,0.0026397565379738808 +illusion_0.75L,ppo,285,57.0,force,upper_fy,0.003663507755845785 +illusion_0.75L,ppo,285,57.0,force,lower_fx,-0.0007835799478925765 +illusion_0.75L,ppo,285,57.0,force,lower_fy,-0.005074060522019863 +illusion_0.75L,ppo,286,57.2,force,front_fx,0.00229832180775702 +illusion_0.75L,ppo,286,57.2,force,front_fy,0.0008417367353104055 +illusion_0.75L,ppo,286,57.2,force,upper_fx,0.002501026028767228 +illusion_0.75L,ppo,286,57.2,force,upper_fy,0.003658684203401208 +illusion_0.75L,ppo,286,57.2,force,lower_fx,-0.0005566697218455374 +illusion_0.75L,ppo,286,57.2,force,lower_fy,-0.0051941354759037495 +illusion_0.75L,ppo,287,57.4,force,front_fx,0.0022567210253328085 +illusion_0.75L,ppo,287,57.4,force,front_fy,0.0007887220126576722 +illusion_0.75L,ppo,287,57.4,force,upper_fx,0.0023442856036126614 +illusion_0.75L,ppo,287,57.4,force,upper_fy,0.0036346011329442263 +illusion_0.75L,ppo,287,57.4,force,lower_fx,-0.00034665674320422113 +illusion_0.75L,ppo,287,57.4,force,lower_fy,-0.005281961057335138 +illusion_0.75L,ppo,288,57.6,force,front_fx,0.0022544863168150187 +illusion_0.75L,ppo,288,57.6,force,front_fy,0.0007391967810690403 +illusion_0.75L,ppo,288,57.6,force,upper_fx,0.0021749127190560102 +illusion_0.75L,ppo,288,57.6,force,upper_fy,0.0036079215351492167 +illusion_0.75L,ppo,288,57.6,force,lower_fx,-0.0001674438244663179 +illusion_0.75L,ppo,288,57.6,force,lower_fy,-0.005335223861038685 +illusion_0.75L,ppo,289,57.8,force,front_fx,0.002282023197039962 +illusion_0.75L,ppo,289,57.8,force,front_fy,0.0007002992206253111 +illusion_0.75L,ppo,289,57.8,force,upper_fx,0.001999017084017396 +illusion_0.75L,ppo,289,57.8,force,upper_fy,0.0035920473746955395 +illusion_0.75L,ppo,289,57.8,force,lower_fx,-2.790107646433171e-05 +illusion_0.75L,ppo,289,57.8,force,lower_fy,-0.005353101994842291 +illusion_0.75L,ppo,290,58.0,force,front_fx,0.0023307413794100285 +illusion_0.75L,ppo,290,58.0,force,front_fy,0.0006637448095716536 +illusion_0.75L,ppo,290,58.0,force,upper_fx,0.0018326245481148362 +illusion_0.75L,ppo,290,58.0,force,upper_fy,0.0035940089728683233 +illusion_0.75L,ppo,290,58.0,force,lower_fx,7.134876796044409e-05 +illusion_0.75L,ppo,290,58.0,force,lower_fy,-0.005333621986210346 +illusion_0.75L,ppo,291,58.2,force,front_fx,0.002388583030551672 +illusion_0.75L,ppo,291,58.2,force,front_fy,0.0006267710123211145 +illusion_0.75L,ppo,291,58.2,force,upper_fx,0.0016964481910690665 +illusion_0.75L,ppo,291,58.2,force,upper_fy,0.0036122812889516354 +illusion_0.75L,ppo,291,58.2,force,lower_fx,0.00013635499635711312 +illusion_0.75L,ppo,291,58.2,force,lower_fy,-0.005277109332382679 +illusion_0.75L,ppo,292,58.4,force,front_fx,0.002441542688757181 +illusion_0.75L,ppo,292,58.4,force,front_fy,0.0005800824146717787 +illusion_0.75L,ppo,292,58.4,force,upper_fx,0.0016041186172515154 +illusion_0.75L,ppo,292,58.4,force,upper_fy,0.0036442684940993786 +illusion_0.75L,ppo,292,58.4,force,lower_fx,0.0001697878906270489 +illusion_0.75L,ppo,292,58.4,force,lower_fy,-0.005188577808439732 +illusion_0.75L,ppo,293,58.6,force,front_fx,0.0025028488598763943 +illusion_0.75L,ppo,293,58.6,force,front_fy,0.0005310819251462817 +illusion_0.75L,ppo,293,58.6,force,upper_fx,0.0015650212299078703 +illusion_0.75L,ppo,293,58.6,force,upper_fy,0.003685226198285818 +illusion_0.75L,ppo,293,58.6,force,lower_fx,0.00017727325030136853 +illusion_0.75L,ppo,293,58.6,force,lower_fy,-0.005074049346148968 +illusion_0.75L,ppo,294,58.8,force,front_fx,0.0025353473611176014 +illusion_0.75L,ppo,294,58.8,force,front_fy,0.0004815158899873495 +illusion_0.75L,ppo,294,58.8,force,upper_fx,0.0015768256271257997 +illusion_0.75L,ppo,294,58.8,force,upper_fy,0.0037374524399638176 +illusion_0.75L,ppo,294,58.8,force,lower_fx,0.00015933204849716276 +illusion_0.75L,ppo,294,58.8,force,lower_fy,-0.0049455189146101475 +illusion_0.75L,ppo,295,59.0,force,front_fx,0.0025404023472219706 +illusion_0.75L,ppo,295,59.0,force,front_fy,0.0004190188192296773 +illusion_0.75L,ppo,295,59.0,force,upper_fx,0.0016306821489706635 +illusion_0.75L,ppo,295,59.0,force,upper_fy,0.0038015362806618214 +illusion_0.75L,ppo,295,59.0,force,lower_fx,0.00011288053065072745 +illusion_0.75L,ppo,295,59.0,force,lower_fy,-0.004814488813281059 +illusion_0.75L,ppo,296,59.2,force,front_fx,0.002529512858018279 +illusion_0.75L,ppo,296,59.2,force,front_fy,0.0003791064373217523 +illusion_0.75L,ppo,296,59.2,force,upper_fx,0.0017189208883792162 +illusion_0.75L,ppo,296,59.2,force,upper_fy,0.0038716765120625496 +illusion_0.75L,ppo,296,59.2,force,lower_fx,4.206837547826581e-05 +illusion_0.75L,ppo,296,59.2,force,lower_fy,-0.004688202869147062 +illusion_0.75L,ppo,297,59.4,force,front_fx,0.002508961595594883 +illusion_0.75L,ppo,297,59.4,force,front_fy,0.0003654320607893169 +illusion_0.75L,ppo,297,59.4,force,upper_fx,0.001832772744819522 +illusion_0.75L,ppo,297,59.4,force,upper_fy,0.003939850255846977 +illusion_0.75L,ppo,297,59.4,force,lower_fx,-4.645551962312311e-05 +illusion_0.75L,ppo,297,59.4,force,lower_fy,-0.004569739568978548 +illusion_0.75L,ppo,298,59.6,force,front_fx,0.002504464704543352 +illusion_0.75L,ppo,298,59.6,force,front_fy,0.0004000559856649488 +illusion_0.75L,ppo,298,59.6,force,upper_fx,0.001955532468855381 +illusion_0.75L,ppo,298,59.6,force,upper_fy,0.0040004802867770195 +illusion_0.75L,ppo,298,59.6,force,lower_fx,-0.00015540575259365141 +illusion_0.75L,ppo,298,59.6,force,lower_fy,-0.004464068915694952 +illusion_0.75L,ppo,299,59.8,force,front_fx,0.002507326891645789 +illusion_0.75L,ppo,299,59.8,force,front_fy,0.00048690728726796806 +illusion_0.75L,ppo,299,59.8,force,upper_fx,0.002077349927276373 +illusion_0.75L,ppo,299,59.8,force,upper_fy,0.004055443685501814 +illusion_0.75L,ppo,299,59.8,force,lower_fx,-0.0002854545309673995 +illusion_0.75L,ppo,299,59.8,force,lower_fy,-0.00437166029587388 +illusion_0.75L,ppo,300,60.0,force,front_fx,0.0025243600830435753 +illusion_0.75L,ppo,300,60.0,force,front_fy,0.0006000089924782515 +illusion_0.75L,ppo,300,60.0,force,upper_fx,0.0021912562660872936 +illusion_0.75L,ppo,300,60.0,force,upper_fy,0.004105971660465002 +illusion_0.75L,ppo,300,60.0,force,lower_fx,-0.0004429295950103551 +illusion_0.75L,ppo,300,60.0,force,lower_fy,-0.004292072728276253 +illusion_0.75L,ppo,301,60.2,force,front_fx,0.0025743318255990744 +illusion_0.75L,ppo,301,60.2,force,front_fy,0.0007616637740284204 +illusion_0.75L,ppo,301,60.2,force,upper_fx,0.002296545309945941 +illusion_0.75L,ppo,301,60.2,force,upper_fy,0.004143991507589817 +illusion_0.75L,ppo,301,60.2,force,lower_fx,-0.0006289308657869697 +illusion_0.75L,ppo,301,60.2,force,lower_fy,-0.004220711067318916 +illusion_0.75L,ppo,302,60.4,force,front_fx,0.0026457032654434443 +illusion_0.75L,ppo,302,60.4,force,front_fy,0.0009105801582336426 +illusion_0.75L,ppo,302,60.4,force,upper_fx,0.002398278098553419 +illusion_0.75L,ppo,302,60.4,force,upper_fy,0.004159702453762293 +illusion_0.75L,ppo,302,60.4,force,lower_fx,-0.0008322940557263792 +illusion_0.75L,ppo,302,60.4,force,lower_fy,-0.004152349662035704 +illusion_0.75L,ppo,303,60.6,force,front_fx,0.0027536218985915184 +illusion_0.75L,ppo,303,60.6,force,front_fy,0.001024766475893557 +illusion_0.75L,ppo,303,60.6,force,upper_fx,0.0025004541967064142 +illusion_0.75L,ppo,303,60.6,force,upper_fy,0.004142677877098322 +illusion_0.75L,ppo,303,60.6,force,lower_fx,-0.0010499343043193221 +illusion_0.75L,ppo,303,60.6,force,lower_fy,-0.0041006822139024734 +illusion_0.75L,ppo,304,60.8,force,front_fx,0.00285098934546113 +illusion_0.75L,ppo,304,60.8,force,front_fy,0.001168380375020206 +illusion_0.75L,ppo,304,60.8,force,upper_fx,0.002602634020149708 +illusion_0.75L,ppo,304,60.8,force,upper_fy,0.004090715199708939 +illusion_0.75L,ppo,304,60.8,force,lower_fx,-0.0012516527203842998 +illusion_0.75L,ppo,304,60.8,force,lower_fy,-0.004056141711771488 +illusion_0.75L,ppo,305,61.0,force,front_fx,0.002941274316981435 +illusion_0.75L,ppo,305,61.0,force,front_fy,0.0012748062144964933 +illusion_0.75L,ppo,305,61.0,force,upper_fx,0.0026985006406903267 +illusion_0.75L,ppo,305,61.0,force,upper_fy,0.004010274540632963 +illusion_0.75L,ppo,305,61.0,force,lower_fx,-0.0014304604846984148 +illusion_0.75L,ppo,305,61.0,force,lower_fy,-0.0040306514129042625 +illusion_0.75L,ppo,306,61.2,force,front_fx,0.0030156285502016544 +illusion_0.75L,ppo,306,61.2,force,front_fy,0.0013694786466658115 +illusion_0.75L,ppo,306,61.2,force,upper_fx,0.0027838670648634434 +illusion_0.75L,ppo,306,61.2,force,upper_fy,0.003909104969352484 +illusion_0.75L,ppo,306,61.2,force,lower_fx,-0.001573538058437407 +illusion_0.75L,ppo,306,61.2,force,lower_fy,-0.004028411116451025 +illusion_0.75L,ppo,307,61.4,force,front_fx,0.003057387424632907 +illusion_0.75L,ppo,307,61.4,force,front_fy,0.0014318019384518266 +illusion_0.75L,ppo,307,61.4,force,upper_fx,0.0028540727216750383 +illusion_0.75L,ppo,307,61.4,force,upper_fy,0.0038010231219232082 +illusion_0.75L,ppo,307,61.4,force,lower_fx,-0.0016709374031051993 +illusion_0.75L,ppo,307,61.4,force,lower_fy,-0.0040502664633095264 +illusion_0.75L,ppo,308,61.6,force,front_fx,0.0030631190165877342 +illusion_0.75L,ppo,308,61.6,force,front_fy,0.001468412228859961 +illusion_0.75L,ppo,308,61.6,force,upper_fx,0.0029085048008710146 +illusion_0.75L,ppo,308,61.6,force,upper_fy,0.0036993378307670355 +illusion_0.75L,ppo,308,61.6,force,lower_fx,-0.00171395274810493 +illusion_0.75L,ppo,308,61.6,force,lower_fy,-0.00409835297614336 +illusion_0.75L,ppo,309,61.8,force,front_fx,0.003037975635379553 +illusion_0.75L,ppo,309,61.8,force,front_fy,0.0014621263835579157 +illusion_0.75L,ppo,309,61.8,force,upper_fx,0.0029434552416205406 +illusion_0.75L,ppo,309,61.8,force,upper_fy,0.003617890877649188 +illusion_0.75L,ppo,309,61.8,force,lower_fx,-0.0017044000560417771 +illusion_0.75L,ppo,309,61.8,force,lower_fy,-0.004178080707788467 +illusion_0.75L,ppo,310,62.0,force,front_fx,0.0029725122731179 +illusion_0.75L,ppo,310,62.0,force,front_fy,0.0014224458718672395 +illusion_0.75L,ppo,310,62.0,force,upper_fx,0.0029536604415625334 +illusion_0.75L,ppo,310,62.0,force,upper_fy,0.003568964544683695 +illusion_0.75L,ppo,310,62.0,force,lower_fx,-0.0016440172912552953 +illusion_0.75L,ppo,310,62.0,force,lower_fy,-0.00428885268047452 +illusion_0.75L,ppo,311,62.2,force,front_fx,0.00286680250428617 +illusion_0.75L,ppo,311,62.2,force,front_fy,0.0013441890478134155 +illusion_0.75L,ppo,311,62.2,force,upper_fx,0.0029367387760430574 +illusion_0.75L,ppo,311,62.2,force,upper_fy,0.003560106735676527 +illusion_0.75L,ppo,311,62.2,force,lower_fx,-0.0015361851546913385 +illusion_0.75L,ppo,311,62.2,force,lower_fy,-0.004429263062775135 +illusion_0.75L,ppo,312,62.4,force,front_fx,0.002736048772931099 +illusion_0.75L,ppo,312,62.4,force,front_fy,0.0012418250553309917 +illusion_0.75L,ppo,312,62.4,force,upper_fx,0.00289078033529222 +illusion_0.75L,ppo,312,62.4,force,upper_fy,0.0035833411384373903 +illusion_0.75L,ppo,312,62.4,force,lower_fx,-0.0013856623554602265 +illusion_0.75L,ppo,312,62.4,force,lower_fy,-0.004589652176946402 +illusion_0.75L,ppo,313,62.6,force,front_fx,0.0025972602888941765 +illusion_0.75L,ppo,313,62.6,force,front_fy,0.0011098067043349147 +illusion_0.75L,ppo,313,62.6,force,upper_fx,0.0028180403169244528 +illusion_0.75L,ppo,313,62.6,force,upper_fy,0.003620503004640341 +illusion_0.75L,ppo,313,62.6,force,lower_fx,-0.001198116922751069 +illusion_0.75L,ppo,313,62.6,force,lower_fy,-0.004758614115417004 +illusion_0.75L,ppo,314,62.8,force,front_fx,0.0024698202032595873 +illusion_0.75L,ppo,314,62.8,force,front_fy,0.0010031131096184254 +illusion_0.75L,ppo,314,62.8,force,upper_fx,0.0027227101381868124 +illusion_0.75L,ppo,314,62.8,force,upper_fy,0.0036487975157797337 +illusion_0.75L,ppo,314,62.8,force,lower_fx,-0.000979593489319086 +illusion_0.75L,ppo,314,62.8,force,lower_fy,-0.004917689133435488 +illusion_0.75L,ppo,315,63.0,force,front_fx,0.0023620862048119307 +illusion_0.75L,ppo,315,63.0,force,front_fy,0.0009167721727862954 +illusion_0.75L,ppo,315,63.0,force,upper_fx,0.002606565598398447 +illusion_0.75L,ppo,315,63.0,force,upper_fy,0.0036547305062413216 +illusion_0.75L,ppo,315,63.0,force,lower_fx,-0.0007461138302460313 +illusion_0.75L,ppo,315,63.0,force,lower_fy,-0.0050581227988004684 +illusion_0.75L,ppo,316,63.2,force,front_fx,0.002293837256729603 +illusion_0.75L,ppo,316,63.2,force,front_fy,0.0008404967957176268 +illusion_0.75L,ppo,316,63.2,force,upper_fx,0.0024706851691007614 +illusion_0.75L,ppo,316,63.2,force,upper_fy,0.0036397429648786783 +illusion_0.75L,ppo,316,63.2,force,lower_fx,-0.0005173062672838569 +illusion_0.75L,ppo,316,63.2,force,lower_fy,-0.005174784455448389 +illusion_0.75L,ppo,317,63.4,force,front_fx,0.0022625960409641266 +illusion_0.75L,ppo,317,63.4,force,front_fy,0.000790827558375895 +illusion_0.75L,ppo,317,63.4,force,upper_fx,0.0023142897989600897 +illusion_0.75L,ppo,317,63.4,force,upper_fy,0.003613421693444252 +illusion_0.75L,ppo,317,63.4,force,lower_fx,-0.0003125069197267294 +illusion_0.75L,ppo,317,63.4,force,lower_fy,-0.00526127265766263 +illusion_0.75L,ppo,318,63.6,force,front_fx,0.0022653755731880665 +illusion_0.75L,ppo,318,63.6,force,front_fy,0.0007446419913321733 +illusion_0.75L,ppo,318,63.6,force,upper_fx,0.002143383026123047 +illusion_0.75L,ppo,318,63.6,force,upper_fy,0.0035910794977098703 +illusion_0.75L,ppo,318,63.6,force,lower_fx,-0.00014272218686528504 +illusion_0.75L,ppo,318,63.6,force,lower_fy,-0.0053169564343988895 +illusion_0.75L,ppo,319,63.8,force,front_fx,0.002298903651535511 +illusion_0.75L,ppo,319,63.8,force,front_fy,0.0007040470372885466 +illusion_0.75L,ppo,319,63.8,force,upper_fx,0.001970952842384577 +illusion_0.75L,ppo,319,63.8,force,upper_fy,0.00358278164640069 +illusion_0.75L,ppo,319,63.8,force,lower_fx,-1.0424830179545097e-05 +illusion_0.75L,ppo,319,63.8,force,lower_fy,-0.005335405934602022 +illusion_0.75L,ppo,320,64.0,force,front_fx,0.0023466453421860933 +illusion_0.75L,ppo,320,64.0,force,front_fy,0.0006560326437465847 +illusion_0.75L,ppo,320,64.0,force,upper_fx,0.0018109673401340842 +illusion_0.75L,ppo,320,64.0,force,upper_fy,0.003594210371375084 +illusion_0.75L,ppo,320,64.0,force,lower_fx,8.244616765296087e-05 +illusion_0.75L,ppo,320,64.0,force,lower_fy,-0.005316153634339571 +illusion_0.75L,ppo,321,64.2,force,front_fx,0.0024024290032684803 +illusion_0.75L,ppo,321,64.2,force,front_fy,0.0006284356932155788 +illusion_0.75L,ppo,321,64.2,force,upper_fx,0.0016828851075842977 +illusion_0.75L,ppo,321,64.2,force,upper_fy,0.003621473675593734 +illusion_0.75L,ppo,321,64.2,force,lower_fx,0.00014103691501077265 +illusion_0.75L,ppo,321,64.2,force,lower_fy,-0.005258570890873671 +illusion_0.75L,ppo,322,64.4,force,front_fx,0.002461278811097145 +illusion_0.75L,ppo,322,64.4,force,front_fy,0.0005736227612942457 +illusion_0.75L,ppo,322,64.4,force,upper_fx,0.001598161063157022 +illusion_0.75L,ppo,322,64.4,force,upper_fy,0.003660384099930525 +illusion_0.75L,ppo,322,64.4,force,lower_fx,0.00016564039106015116 +illusion_0.75L,ppo,322,64.4,force,lower_fy,-0.005170258693397045 +illusion_0.75L,ppo,323,64.6,force,front_fx,0.0024987924844026566 +illusion_0.75L,ppo,323,64.6,force,front_fy,0.0005205830093473196 +illusion_0.75L,ppo,323,64.6,force,upper_fx,0.0015634961891919374 +illusion_0.75L,ppo,323,64.6,force,upper_fy,0.0037074678111821413 +illusion_0.75L,ppo,323,64.6,force,lower_fx,0.0001614792417967692 +illusion_0.75L,ppo,323,64.6,force,lower_fy,-0.005056396592408419 +illusion_0.75L,ppo,324,64.8,force,front_fx,0.00252895406447351 +illusion_0.75L,ppo,324,64.8,force,front_fy,0.00045563330058939755 +illusion_0.75L,ppo,324,64.8,force,upper_fx,0.001579938572831452 +illusion_0.75L,ppo,324,64.8,force,upper_fy,0.0037613098975270987 +illusion_0.75L,ppo,324,64.8,force,lower_fx,0.00013410477549768984 +illusion_0.75L,ppo,324,64.8,force,lower_fy,-0.004926650319248438 +illusion_0.75L,ppo,325,65.0,force,front_fx,0.0025248269084841013 +illusion_0.75L,ppo,325,65.0,force,front_fy,0.0004099856305401772 +illusion_0.75L,ppo,325,65.0,force,upper_fx,0.0016411147080361843 +illusion_0.75L,ppo,325,65.0,force,upper_fy,0.003824362065643072 +illusion_0.75L,ppo,325,65.0,force,lower_fx,8.558216359233484e-05 +illusion_0.75L,ppo,325,65.0,force,lower_fy,-0.004793554078787565 +illusion_0.75L,ppo,326,65.2,force,front_fx,0.002502757590264082 +illusion_0.75L,ppo,326,65.2,force,front_fy,0.0003594653680920601 +illusion_0.75L,ppo,326,65.2,force,upper_fx,0.0017365420935675502 +illusion_0.75L,ppo,326,65.2,force,upper_fy,0.0038924955297261477 +illusion_0.75L,ppo,326,65.2,force,lower_fx,1.5842630091356114e-05 +illusion_0.75L,ppo,326,65.2,force,lower_fy,-0.004667946603149176 +illusion_0.75L,ppo,327,65.4,force,front_fx,0.002510729245841503 +illusion_0.75L,ppo,327,65.4,force,front_fy,0.0003670592559501529 +illusion_0.75L,ppo,327,65.4,force,upper_fx,0.0018535080598667264 +illusion_0.75L,ppo,327,65.4,force,upper_fy,0.0039558084681630135 +illusion_0.75L,ppo,327,65.4,force,lower_fx,-7.256629760377109e-05 +illusion_0.75L,ppo,327,65.4,force,lower_fy,-0.004554263781756163 +illusion_0.75L,ppo,328,65.6,force,front_fx,0.002492479747161269 +illusion_0.75L,ppo,328,65.6,force,front_fy,0.00041119620436802506 +illusion_0.75L,ppo,328,65.6,force,upper_fx,0.001976354280486703 +illusion_0.75L,ppo,328,65.6,force,upper_fy,0.004013403784483671 +illusion_0.75L,ppo,328,65.6,force,lower_fx,-0.00018175206787418574 +illusion_0.75L,ppo,328,65.6,force,lower_fy,-0.00445420341566205 +illusion_0.75L,ppo,329,65.8,force,front_fx,0.0024976918939501047 +illusion_0.75L,ppo,329,65.8,force,front_fy,0.0005127523327246308 +illusion_0.75L,ppo,329,65.8,force,upper_fx,0.002094978466629982 +illusion_0.75L,ppo,329,65.8,force,upper_fy,0.0040648928843438625 +illusion_0.75L,ppo,329,65.8,force,lower_fx,-0.00031726204906590283 +illusion_0.75L,ppo,329,65.8,force,lower_fy,-0.004367587622255087 +illusion_0.75L,ppo,330,66.0,force,front_fx,0.002513884101063013 +illusion_0.75L,ppo,330,66.0,force,front_fy,0.0006338853854686022 +illusion_0.75L,ppo,330,66.0,force,upper_fx,0.0022071381099522114 +illusion_0.75L,ppo,330,66.0,force,upper_fy,0.004108636174350977 +illusion_0.75L,ppo,330,66.0,force,lower_fx,-0.0004784729389939457 +illusion_0.75L,ppo,330,66.0,force,lower_fy,-0.004291083663702011 +illusion_0.75L,ppo,331,66.2,force,front_fx,0.0025972947478294373 +illusion_0.75L,ppo,331,66.2,force,front_fy,0.0007766048656776547 +illusion_0.75L,ppo,331,66.2,force,upper_fx,0.002313408302143216 +illusion_0.75L,ppo,331,66.2,force,upper_fy,0.004137454554438591 +illusion_0.75L,ppo,331,66.2,force,lower_fx,-0.000665278930682689 +illusion_0.75L,ppo,331,66.2,force,lower_fy,-0.004221517592668533 +illusion_0.75L,ppo,332,66.4,force,front_fx,0.002668531611561775 +illusion_0.75L,ppo,332,66.4,force,front_fy,0.0009324142592959106 +illusion_0.75L,ppo,332,66.4,force,upper_fx,0.002415651688352227 +illusion_0.75L,ppo,332,66.4,force,upper_fy,0.004144721664488316 +illusion_0.75L,ppo,332,66.4,force,lower_fx,-0.0008691144757904112 +illusion_0.75L,ppo,332,66.4,force,lower_fy,-0.004156936891376972 +illusion_0.75L,ppo,333,66.6,force,front_fx,0.0027555611450225115 +illusion_0.75L,ppo,333,66.6,force,front_fy,0.0010689232731238008 +illusion_0.75L,ppo,333,66.6,force,upper_fx,0.0025158729404211044 +illusion_0.75L,ppo,333,66.6,force,upper_fy,0.004121121019124985 +illusion_0.75L,ppo,333,66.6,force,lower_fx,-0.0010794703848659992 +illusion_0.75L,ppo,333,66.6,force,lower_fy,-0.004099594429135323 +illusion_0.75L,ppo,334,66.8,force,front_fx,0.0028699866961687803 +illusion_0.75L,ppo,334,66.8,force,front_fy,0.0011909876484423876 +illusion_0.75L,ppo,334,66.8,force,upper_fx,0.0026122780982404947 +illusion_0.75L,ppo,334,66.8,force,upper_fy,0.0040612779557704926 +illusion_0.75L,ppo,334,66.8,force,lower_fx,-0.0012823848519474268 +illusion_0.75L,ppo,334,66.8,force,lower_fy,-0.004056479316204786 +illusion_0.75L,ppo,335,67.0,force,front_fx,0.0029615270905196667 +illusion_0.75L,ppo,335,67.0,force,front_fy,0.001326176105067134 +illusion_0.75L,ppo,335,67.0,force,upper_fx,0.002703513018786907 +illusion_0.75L,ppo,335,67.0,force,upper_fy,0.0039734430611133575 +illusion_0.75L,ppo,335,67.0,force,lower_fx,-0.0014566320460289717 +illusion_0.75L,ppo,335,67.0,force,lower_fy,-0.004030462354421616 +illusion_0.75L,ppo,336,67.2,force,front_fx,0.003023593919351697 +illusion_0.75L,ppo,336,67.2,force,front_fy,0.0013798746513202786 +illusion_0.75L,ppo,336,67.2,force,upper_fx,0.0027844514697790146 +illusion_0.75L,ppo,336,67.2,force,upper_fy,0.0038720625452697277 +illusion_0.75L,ppo,336,67.2,force,lower_fx,-0.0015917071141302586 +illusion_0.75L,ppo,336,67.2,force,lower_fy,-0.004028430674225092 +illusion_0.75L,ppo,337,67.4,force,front_fx,0.003078767331317067 +illusion_0.75L,ppo,337,67.4,force,front_fy,0.001467192079871893 +illusion_0.75L,ppo,337,67.4,force,upper_fx,0.0028537276666611433 +illusion_0.75L,ppo,337,67.4,force,upper_fy,0.003765250789001584 +illusion_0.75L,ppo,337,67.4,force,lower_fx,-0.0016756253316998482 +illusion_0.75L,ppo,337,67.4,force,lower_fy,-0.004050069954246283 +illusion_0.75L,ppo,338,67.6,force,front_fx,0.003070313949137926 +illusion_0.75L,ppo,338,67.6,force,front_fy,0.001459262683056295 +illusion_0.75L,ppo,338,67.6,force,upper_fx,0.002905348315834999 +illusion_0.75L,ppo,338,67.6,force,upper_fy,0.003674339037388563 +illusion_0.75L,ppo,338,67.6,force,lower_fx,-0.0017068471061065793 +illusion_0.75L,ppo,338,67.6,force,lower_fy,-0.004103654529899359 +illusion_0.75L,ppo,339,67.8,force,front_fx,0.0030268325936049223 +illusion_0.75L,ppo,339,67.8,force,front_fy,0.0014605175238102674 +illusion_0.75L,ppo,339,67.8,force,upper_fx,0.0029346421360969543 +illusion_0.75L,ppo,339,67.8,force,upper_fy,0.0036069059278815985 +illusion_0.75L,ppo,339,67.8,force,lower_fx,-0.001688238582573831 +illusion_0.75L,ppo,339,67.8,force,lower_fy,-0.004189135041087866 +illusion_0.75L,ppo,340,68.0,force,front_fx,0.002955659991130233 +illusion_0.75L,ppo,340,68.0,force,front_fy,0.0013976942282170057 +illusion_0.75L,ppo,340,68.0,force,upper_fx,0.00293863657861948 +illusion_0.75L,ppo,340,68.0,force,upper_fy,0.003573231166228652 +illusion_0.75L,ppo,340,68.0,force,lower_fx,-0.0016204887069761753 +illusion_0.75L,ppo,340,68.0,force,lower_fy,-0.004306698217988014 +illusion_0.75L,ppo,341,68.2,force,front_fx,0.0028502624481916428 +illusion_0.75L,ppo,341,68.2,force,front_fy,0.0013158374931663275 +illusion_0.75L,ppo,341,68.2,force,upper_fx,0.0029173155780881643 +illusion_0.75L,ppo,341,68.2,force,upper_fy,0.0035744833294302225 +illusion_0.75L,ppo,341,68.2,force,lower_fx,-0.0015039948048070073 +illusion_0.75L,ppo,341,68.2,force,lower_fy,-0.004451380576938391 +illusion_0.75L,ppo,342,68.4,force,front_fx,0.002707347273826599 +illusion_0.75L,ppo,342,68.4,force,front_fy,0.0012053957907482982 +illusion_0.75L,ppo,342,68.4,force,upper_fx,0.0028669205494225025 +illusion_0.75L,ppo,342,68.4,force,upper_fy,0.003604221623390913 +illusion_0.75L,ppo,342,68.4,force,lower_fx,-0.001345309428870678 +illusion_0.75L,ppo,342,68.4,force,lower_fy,-0.004612082149833441 +illusion_0.75L,ppo,343,68.6,force,front_fx,0.002564535476267338 +illusion_0.75L,ppo,343,68.6,force,front_fy,0.001101590460166335 +illusion_0.75L,ppo,343,68.6,force,upper_fx,0.002791391219943762 +illusion_0.75L,ppo,343,68.6,force,upper_fy,0.0036384195555001497 +illusion_0.75L,ppo,343,68.6,force,lower_fx,-0.0011506909504532814 +illusion_0.75L,ppo,343,68.6,force,lower_fy,-0.004774780943989754 +illusion_0.75L,ppo,344,68.8,force,front_fx,0.002451720181852579 +illusion_0.75L,ppo,344,68.8,force,front_fy,0.0009864337043836713 +illusion_0.75L,ppo,344,68.8,force,upper_fx,0.0026931168977171183 +illusion_0.75L,ppo,344,68.8,force,upper_fy,0.0036566173657774925 +illusion_0.75L,ppo,344,68.8,force,lower_fx,-0.0009321633260697126 +illusion_0.75L,ppo,344,68.8,force,lower_fy,-0.004929357208311558 +illusion_0.75L,ppo,345,69.0,force,front_fx,0.002347849775105715 +illusion_0.75L,ppo,345,69.0,force,front_fy,0.0008979811682365835 +illusion_0.75L,ppo,345,69.0,force,upper_fx,0.002571251941844821 +illusion_0.75L,ppo,345,69.0,force,upper_fy,0.0036519705317914486 +illusion_0.75L,ppo,345,69.0,force,lower_fx,-0.000705921440385282 +illusion_0.75L,ppo,345,69.0,force,lower_fy,-0.005062418058514595 +illusion_0.75L,ppo,346,69.2,force,front_fx,0.0022792702075093985 +illusion_0.75L,ppo,346,69.2,force,front_fy,0.0008375886827707291 +illusion_0.75L,ppo,346,69.2,force,upper_fx,0.0024313253816217184 +illusion_0.75L,ppo,346,69.2,force,upper_fy,0.003625346813350916 +illusion_0.75L,ppo,346,69.2,force,lower_fx,-0.00048694887664169073 +illusion_0.75L,ppo,346,69.2,force,lower_fy,-0.005166512914001942 +illusion_0.75L,ppo,347,69.4,force,front_fx,0.0022650950122624636 +illusion_0.75L,ppo,347,69.4,force,front_fy,0.0007899271440692246 +illusion_0.75L,ppo,347,69.4,force,upper_fx,0.002276488346979022 +illusion_0.75L,ppo,347,69.4,force,upper_fy,0.0035907658748328686 +illusion_0.75L,ppo,347,69.4,force,lower_fx,-0.00029078350053168833 +illusion_0.75L,ppo,347,69.4,force,lower_fy,-0.005241692066192627 +illusion_0.75L,ppo,348,69.6,force,front_fx,0.002279151463881135 +illusion_0.75L,ppo,348,69.6,force,front_fy,0.0007478975458070636 +illusion_0.75L,ppo,348,69.6,force,upper_fx,0.002110661007463932 +illusion_0.75L,ppo,348,69.6,force,upper_fy,0.003565408056601882 +illusion_0.75L,ppo,348,69.6,force,lower_fx,-0.00012829166371375322 +illusion_0.75L,ppo,348,69.6,force,lower_fy,-0.005288324318826199 +illusion_0.75L,ppo,349,69.8,force,front_fx,0.0023167880717664957 +illusion_0.75L,ppo,349,69.8,force,front_fy,0.0007051985594443977 +illusion_0.75L,ppo,349,69.8,force,upper_fx,0.0019455977017059922 +illusion_0.75L,ppo,349,69.8,force,upper_fy,0.003560801036655903 +illusion_0.75L,ppo,349,69.8,force,lower_fx,-3.5922766983276233e-06 +illusion_0.75L,ppo,349,69.8,force,lower_fy,-0.0053035784512758255 +illusion_0.75L,ppo,350,70.0,force,front_fx,0.002367602661252022 +illusion_0.75L,ppo,350,70.0,force,front_fy,0.0006577183958142996 +illusion_0.75L,ppo,350,70.0,force,upper_fx,0.0017952173948287964 +illusion_0.75L,ppo,350,70.0,force,upper_fy,0.003577243071049452 +illusion_0.75L,ppo,350,70.0,force,lower_fx,8.144556340994313e-05 +illusion_0.75L,ppo,350,70.0,force,lower_fy,-0.005285291466861963 +illusion_0.75L,ppo,351,70.2,force,front_fx,0.002422636840492487 +illusion_0.75L,ppo,351,70.2,force,front_fy,0.0006105084903538227 +illusion_0.75L,ppo,351,70.2,force,upper_fx,0.0016754833050072193 +illusion_0.75L,ppo,351,70.2,force,upper_fy,0.0036103054881095886 +illusion_0.75L,ppo,351,70.2,force,lower_fx,0.00012955546844750643 +illusion_0.75L,ppo,351,70.2,force,lower_fy,-0.005231602117419243 +illusion_0.75L,ppo,352,70.4,force,front_fx,0.0024716013576835394 +illusion_0.75L,ppo,352,70.4,force,front_fy,0.0005566441104747355 +illusion_0.75L,ppo,352,70.4,force,upper_fx,0.0016016596928238869 +illusion_0.75L,ppo,352,70.4,force,upper_fy,0.003653061343356967 +illusion_0.75L,ppo,352,70.4,force,lower_fx,0.00015115263522602618 +illusion_0.75L,ppo,352,70.4,force,lower_fy,-0.005143271759152412 +illusion_0.75L,ppo,353,70.6,force,front_fx,0.0025102696381509304 +illusion_0.75L,ppo,353,70.6,force,front_fy,0.0005012628971599042 +illusion_0.75L,ppo,353,70.6,force,upper_fx,0.0015776458894833922 +illusion_0.75L,ppo,353,70.6,force,upper_fy,0.0037029844243079424 +illusion_0.75L,ppo,353,70.6,force,lower_fx,0.0001466627581976354 +illusion_0.75L,ppo,353,70.6,force,lower_fy,-0.005030773114413023 +illusion_0.75L,ppo,354,70.8,force,front_fx,0.0025363843888044357 +illusion_0.75L,ppo,354,70.8,force,front_fy,0.00043495610589161515 +illusion_0.75L,ppo,354,70.8,force,upper_fx,0.0016010552644729614 +illusion_0.75L,ppo,354,70.8,force,upper_fy,0.0037615683395415545 +illusion_0.75L,ppo,354,70.8,force,lower_fx,0.00011854388139909133 +illusion_0.75L,ppo,354,70.8,force,lower_fy,-0.004904231987893581 +illusion_0.75L,ppo,355,71.0,force,front_fx,0.0025249121244996786 +illusion_0.75L,ppo,355,71.0,force,front_fy,0.0003975694125983864 +illusion_0.75L,ppo,355,71.0,force,upper_fx,0.0016656819498166442 +illusion_0.75L,ppo,355,71.0,force,upper_fy,0.0038299113512039185 +illusion_0.75L,ppo,355,71.0,force,lower_fx,6.810361810494214e-05 +illusion_0.75L,ppo,355,71.0,force,lower_fy,-0.004773726686835289 +illusion_0.75L,ppo,356,71.2,force,front_fx,0.002506036078557372 +illusion_0.75L,ppo,356,71.2,force,front_fy,0.0003676414489746094 +illusion_0.75L,ppo,356,71.2,force,upper_fx,0.0017596468096598983 +illusion_0.75L,ppo,356,71.2,force,upper_fy,0.003899302566424012 +illusion_0.75L,ppo,356,71.2,force,lower_fx,-7.85634620115161e-06 +illusion_0.75L,ppo,356,71.2,force,lower_fy,-0.004649689886718988 +illusion_0.75L,ppo,357,71.4,force,front_fx,0.0024991934187710285 +illusion_0.75L,ppo,357,71.4,force,front_fy,0.00037548562977463007 +illusion_0.75L,ppo,357,71.4,force,upper_fx,0.0018721182132139802 +illusion_0.75L,ppo,357,71.4,force,upper_fy,0.003958569373935461 +illusion_0.75L,ppo,357,71.4,force,lower_fx,-0.00010474156442796811 +illusion_0.75L,ppo,357,71.4,force,lower_fy,-0.004537240602076054 +illusion_0.75L,ppo,358,71.6,force,front_fx,0.0024809835013002157 +illusion_0.75L,ppo,358,71.6,force,front_fy,0.0004342481552157551 +illusion_0.75L,ppo,358,71.6,force,upper_fx,0.001992873614653945 +illusion_0.75L,ppo,358,71.6,force,upper_fy,0.004007500596344471 +illusion_0.75L,ppo,358,71.6,force,lower_fx,-0.00021856054081581533 +illusion_0.75L,ppo,358,71.6,force,lower_fy,-0.004436282906681299 +illusion_0.75L,ppo,359,71.8,force,front_fx,0.002504799049347639 +illusion_0.75L,ppo,359,71.8,force,front_fy,0.0005388435092754662 +illusion_0.75L,ppo,359,71.8,force,upper_fx,0.0021116898860782385 +illusion_0.75L,ppo,359,71.8,force,upper_fy,0.004050062969326973 +illusion_0.75L,ppo,359,71.8,force,lower_fx,-0.0003557319287210703 +illusion_0.75L,ppo,359,71.8,force,lower_fy,-0.004347951151430607 +illusion_0.75L,ppo,360,72.0,force,front_fx,0.0025433567352592945 +illusion_0.75L,ppo,360,72.0,force,front_fy,0.0006692520692013204 +illusion_0.75L,ppo,360,72.0,force,upper_fx,0.0022246292792260647 +illusion_0.75L,ppo,360,72.0,force,upper_fy,0.0040891291573643684 +illusion_0.75L,ppo,360,72.0,force,lower_fx,-0.0005183254834264517 +illusion_0.75L,ppo,360,72.0,force,lower_fy,-0.004273273050785065 +illusion_0.75L,ppo,361,72.2,force,front_fx,0.0025989783462136984 +illusion_0.75L,ppo,361,72.2,force,front_fy,0.0008210718515329063 +illusion_0.75L,ppo,361,72.2,force,upper_fx,0.0023305967915803194 +illusion_0.75L,ppo,361,72.2,force,upper_fy,0.0041163912974298 +illusion_0.75L,ppo,361,72.2,force,lower_fx,-0.0007065047393552959 +illusion_0.75L,ppo,361,72.2,force,lower_fy,-0.004206511192023754 +illusion_0.75L,ppo,362,72.4,force,front_fx,0.002711860928684473 +illusion_0.75L,ppo,362,72.4,force,front_fy,0.0009598566102795303 +illusion_0.75L,ppo,362,72.4,force,upper_fx,0.0024312527384608984 +illusion_0.75L,ppo,362,72.4,force,upper_fy,0.0041185165755450726 +illusion_0.75L,ppo,362,72.4,force,lower_fx,-0.0009146173833869398 +illusion_0.75L,ppo,362,72.4,force,lower_fy,-0.004147639498114586 +illusion_0.75L,ppo,363,72.6,force,front_fx,0.002800927497446537 +illusion_0.75L,ppo,363,72.6,force,front_fy,0.0010990396840497851 +illusion_0.75L,ppo,363,72.6,force,upper_fx,0.0025309985503554344 +illusion_0.75L,ppo,363,72.6,force,upper_fy,0.00409082043915987 +illusion_0.75L,ppo,363,72.6,force,lower_fx,-0.0011218348518013954 +illusion_0.75L,ppo,363,72.6,force,lower_fy,-0.004095831885933876 +illusion_0.75L,ppo,364,72.8,force,front_fx,0.002904483349993825 +illusion_0.75L,ppo,364,72.8,force,front_fy,0.0012127426452934742 +illusion_0.75L,ppo,364,72.8,force,upper_fx,0.002626357600092888 +illusion_0.75L,ppo,364,72.8,force,upper_fy,0.004032900556921959 +illusion_0.75L,ppo,364,72.8,force,lower_fx,-0.001315747620537877 +illusion_0.75L,ppo,364,72.8,force,lower_fy,-0.004054978024214506 +illusion_0.75L,ppo,365,73.0,force,front_fx,0.00298108346760273 +illusion_0.75L,ppo,365,73.0,force,front_fy,0.001311752013862133 +illusion_0.75L,ppo,365,73.0,force,upper_fx,0.002714803209528327 +illusion_0.75L,ppo,365,73.0,force,upper_fy,0.003949702251702547 +illusion_0.75L,ppo,365,73.0,force,lower_fx,-0.0014799534110352397 +illusion_0.75L,ppo,365,73.0,force,lower_fy,-0.004030995536595583 +illusion_0.75L,ppo,366,73.2,force,front_fx,0.003050591330975294 +illusion_0.75L,ppo,366,73.2,force,front_fy,0.0014012367464601994 +illusion_0.75L,ppo,366,73.2,force,upper_fx,0.0027931309305131435 +illusion_0.75L,ppo,366,73.2,force,upper_fy,0.003852102207019925 +illusion_0.75L,ppo,366,73.2,force,lower_fx,-0.0016030861297622323 +illusion_0.75L,ppo,366,73.2,force,lower_fy,-0.004026317968964577 +illusion_0.75L,ppo,367,73.4,force,front_fx,0.0030791915487498045 +illusion_0.75L,ppo,367,73.4,force,front_fy,0.001440760912373662 +illusion_0.75L,ppo,367,73.4,force,upper_fx,0.0028538843616843224 +illusion_0.75L,ppo,367,73.4,force,upper_fy,0.0037547433748841286 +illusion_0.75L,ppo,367,73.4,force,lower_fx,-0.0016828313237056136 +illusion_0.75L,ppo,367,73.4,force,lower_fy,-0.0040480648167431355 +illusion_0.75L,ppo,368,73.6,force,front_fx,0.003070489503443241 +illusion_0.75L,ppo,368,73.6,force,front_fy,0.0014770862180739641 +illusion_0.75L,ppo,368,73.6,force,upper_fx,0.0028979494236409664 +illusion_0.75L,ppo,368,73.6,force,upper_fy,0.003668146440759301 +illusion_0.75L,ppo,368,73.6,force,lower_fx,-0.0017117878887802362 +illusion_0.75L,ppo,368,73.6,force,lower_fy,-0.004096904303878546 +illusion_0.75L,ppo,369,73.8,force,front_fx,0.003020235802978277 +illusion_0.75L,ppo,369,73.8,force,front_fy,0.0014453001786023378 +illusion_0.75L,ppo,369,73.8,force,upper_fx,0.002923040185123682 +illusion_0.75L,ppo,369,73.8,force,upper_fy,0.0036050942726433277 +illusion_0.75L,ppo,369,73.8,force,lower_fx,-0.0016901236958801746 +illusion_0.75L,ppo,369,73.8,force,lower_fy,-0.004178428091108799 +illusion_0.75L,ppo,370,74.0,force,front_fx,0.002949927467852831 +illusion_0.75L,ppo,370,74.0,force,front_fy,0.001391586265526712 +illusion_0.75L,ppo,370,74.0,force,upper_fx,0.002926602028310299 +illusion_0.75L,ppo,370,74.0,force,upper_fy,0.0035728453658521175 +illusion_0.75L,ppo,370,74.0,force,lower_fx,-0.0016177167417481542 +illusion_0.75L,ppo,370,74.0,force,lower_fy,-0.0042935204692184925 +illusion_0.75L,ppo,371,74.2,force,front_fx,0.002838444197550416 +illusion_0.75L,ppo,371,74.2,force,front_fy,0.001306070713326335 +illusion_0.75L,ppo,371,74.2,force,upper_fx,0.0029052377212792635 +illusion_0.75L,ppo,371,74.2,force,upper_fy,0.003576579038053751 +illusion_0.75L,ppo,371,74.2,force,lower_fx,-0.0014956509694457054 +illusion_0.75L,ppo,371,74.2,force,lower_fy,-0.004438623320311308 +illusion_0.75L,ppo,372,74.4,force,front_fx,0.002698096912354231 +illusion_0.75L,ppo,372,74.4,force,front_fy,0.001199150807224214 +illusion_0.75L,ppo,372,74.4,force,upper_fx,0.0028557416517287493 +illusion_0.75L,ppo,372,74.4,force,upper_fy,0.003605886362493038 +illusion_0.75L,ppo,372,74.4,force,lower_fx,-0.0013313101371750236 +illusion_0.75L,ppo,372,74.4,force,lower_fy,-0.0046060397289693356 +illusion_0.75L,ppo,373,74.6,force,front_fx,0.002557385480031371 +illusion_0.75L,ppo,373,74.6,force,front_fy,0.0010779170552268624 +illusion_0.75L,ppo,373,74.6,force,upper_fx,0.0027775948401540518 +illusion_0.75L,ppo,373,74.6,force,upper_fy,0.003639764152467251 +illusion_0.75L,ppo,373,74.6,force,lower_fx,-0.0011337081668898463 +illusion_0.75L,ppo,373,74.6,force,lower_fy,-0.0047768051736056805 +illusion_0.75L,ppo,374,74.8,force,front_fx,0.0024316487833857536 +illusion_0.75L,ppo,374,74.8,force,front_fy,0.000978136551566422 +illusion_0.75L,ppo,374,74.8,force,upper_fx,0.0026765756774693727 +illusion_0.75L,ppo,374,74.8,force,upper_fy,0.003655939595773816 +illusion_0.75L,ppo,374,74.8,force,lower_fx,-0.0009095665882341564 +illusion_0.75L,ppo,374,74.8,force,lower_fy,-0.004932265728712082 +illusion_0.75L,ppo,375,75.0,force,front_fx,0.0023382543586194515 +illusion_0.75L,ppo,375,75.0,force,front_fy,0.0008849275182001293 +illusion_0.75L,ppo,375,75.0,force,upper_fx,0.0025548329576849937 +illusion_0.75L,ppo,375,75.0,force,upper_fy,0.003647526726126671 +illusion_0.75L,ppo,375,75.0,force,lower_fx,-0.000676905969157815 +illusion_0.75L,ppo,375,75.0,force,lower_fy,-0.005063858814537525 +illusion_0.75L,ppo,376,75.2,force,front_fx,0.002283793641254306 +illusion_0.75L,ppo,376,75.2,force,front_fy,0.0008370315772481263 +illusion_0.75L,ppo,376,75.2,force,upper_fx,0.002413177862763405 +illusion_0.75L,ppo,376,75.2,force,upper_fy,0.003619966795668006 +illusion_0.75L,ppo,376,75.2,force,lower_fx,-0.00045573353418149054 +illusion_0.75L,ppo,376,75.2,force,lower_fy,-0.0051649389788508415 +illusion_0.75L,ppo,377,75.4,force,front_fx,0.002268073381856084 +illusion_0.75L,ppo,377,75.4,force,front_fy,0.0007914523012004793 +illusion_0.75L,ppo,377,75.4,force,upper_fx,0.0022548800334334373 +illusion_0.75L,ppo,377,75.4,force,upper_fy,0.0035900569055229425 +illusion_0.75L,ppo,377,75.4,force,lower_fx,-0.000263096735579893 +illusion_0.75L,ppo,377,75.4,force,lower_fy,-0.005236917175352573 +illusion_0.75L,ppo,378,75.6,force,front_fx,0.0022850383538752794 +illusion_0.75L,ppo,378,75.6,force,front_fy,0.0007493857992812991 +illusion_0.75L,ppo,378,75.6,force,upper_fx,0.0020847637206315994 +illusion_0.75L,ppo,378,75.6,force,upper_fy,0.00357068027369678 +illusion_0.75L,ppo,378,75.6,force,lower_fx,-0.00011028502194676548 +illusion_0.75L,ppo,378,75.6,force,lower_fy,-0.005278648808598518 +illusion_0.75L,ppo,379,75.8,force,front_fx,0.0023196483962237835 +illusion_0.75L,ppo,379,75.8,force,front_fy,0.0007051508873701096 +illusion_0.75L,ppo,379,75.8,force,upper_fx,0.0019170769955962896 +illusion_0.75L,ppo,379,75.8,force,upper_fy,0.00356824928894639 +illusion_0.75L,ppo,379,75.8,force,lower_fx,1.7134800600615563e-06 +illusion_0.75L,ppo,379,75.8,force,lower_fy,-0.005288500338792801 +illusion_0.75L,ppo,380,76.0,force,front_fx,0.0023627050686627626 +illusion_0.75L,ppo,380,76.0,force,front_fy,0.0006578270113095641 +illusion_0.75L,ppo,380,76.0,force,upper_fx,0.0017711275722831488 +illusion_0.75L,ppo,380,76.0,force,upper_fy,0.0035827606916427612 +illusion_0.75L,ppo,380,76.0,force,lower_fx,7.78597968746908e-05 +illusion_0.75L,ppo,380,76.0,force,lower_fy,-0.005263185128569603 +illusion_0.75L,ppo,381,76.2,force,front_fx,0.0024271435104310513 +illusion_0.75L,ppo,381,76.2,force,front_fy,0.000608468777500093 +illusion_0.75L,ppo,381,76.2,force,upper_fx,0.0016612726030871272 +illusion_0.75L,ppo,381,76.2,force,upper_fy,0.0036099241115152836 +illusion_0.75L,ppo,381,76.2,force,lower_fx,0.0001227347820531577 +illusion_0.75L,ppo,381,76.2,force,lower_fy,-0.005205016117542982 +illusion_0.75L,ppo,382,76.4,force,front_fx,0.0024805532302707434 +illusion_0.75L,ppo,382,76.4,force,front_fy,0.0005654420820064843 +illusion_0.75L,ppo,382,76.4,force,upper_fx,0.0015970245003700256 +illusion_0.75L,ppo,382,76.4,force,upper_fy,0.0036492375656962395 +illusion_0.75L,ppo,382,76.4,force,lower_fx,0.00014154017844703048 +illusion_0.75L,ppo,382,76.4,force,lower_fy,-0.0051191444508731365 +illusion_0.75L,ppo,383,76.6,force,front_fx,0.0024955577682703733 +illusion_0.75L,ppo,383,76.6,force,front_fy,0.0004958980716764927 +illusion_0.75L,ppo,383,76.6,force,upper_fx,0.0015801857225596905 +illusion_0.75L,ppo,383,76.6,force,upper_fy,0.003700756933540106 +illusion_0.75L,ppo,383,76.6,force,lower_fx,0.00013483727525454015 +illusion_0.75L,ppo,383,76.6,force,lower_fy,-0.005013307556509972 +illusion_0.75L,ppo,384,76.8,force,front_fx,0.0025160235818475485 +illusion_0.75L,ppo,384,76.8,force,front_fy,0.00043338368413969874 +illusion_0.75L,ppo,384,76.8,force,upper_fx,0.0016073682345449924 +illusion_0.75L,ppo,384,76.8,force,upper_fy,0.0037614142056554556 +illusion_0.75L,ppo,384,76.8,force,lower_fx,0.00010267113248119131 +illusion_0.75L,ppo,384,76.8,force,lower_fy,-0.004896846134215593 +illusion_0.75L,ppo,385,77.0,force,front_fx,0.0025121530052274466 +illusion_0.75L,ppo,385,77.0,force,front_fy,0.000386358326068148 +illusion_0.75L,ppo,385,77.0,force,upper_fx,0.0016739292768761516 +illusion_0.75L,ppo,385,77.0,force,upper_fy,0.0038289239164441824 +illusion_0.75L,ppo,385,77.0,force,lower_fx,4.99343077535741e-05 +illusion_0.75L,ppo,385,77.0,force,lower_fy,-0.004776244051754475 +illusion_0.75L,ppo,386,77.2,force,front_fx,0.0025004788767546415 +illusion_0.75L,ppo,386,77.2,force,front_fy,0.00036022826679982245 +illusion_0.75L,ppo,386,77.2,force,upper_fx,0.0017692050896584988 +illusion_0.75L,ppo,386,77.2,force,upper_fy,0.0038973733317106962 +illusion_0.75L,ppo,386,77.2,force,lower_fx,-2.2791600713389926e-05 +illusion_0.75L,ppo,386,77.2,force,lower_fy,-0.004658989608287811 +illusion_0.75L,ppo,387,77.4,force,front_fx,0.0024860610719770193 +illusion_0.75L,ppo,387,77.4,force,front_fy,0.00037710857577621937 +illusion_0.75L,ppo,387,77.4,force,upper_fx,0.0018767863512039185 +illusion_0.75L,ppo,387,77.4,force,upper_fy,0.0039525930769741535 +illusion_0.75L,ppo,387,77.4,force,lower_fx,-0.00011354185699019581 +illusion_0.75L,ppo,387,77.4,force,lower_fy,-0.004548864904791117 +illusion_0.75L,ppo,388,77.6,force,front_fx,0.0024844887666404247 +illusion_0.75L,ppo,388,77.6,force,front_fy,0.00044721030280925333 +illusion_0.75L,ppo,388,77.6,force,upper_fx,0.0019996962510049343 +illusion_0.75L,ppo,388,77.6,force,upper_fy,0.004007572308182716 +illusion_0.75L,ppo,388,77.6,force,lower_fx,-0.0002232521219411865 +illusion_0.75L,ppo,388,77.6,force,lower_fy,-0.004447747953236103 +illusion_0.75L,ppo,389,77.8,force,front_fx,0.0025004646740853786 +illusion_0.75L,ppo,389,77.8,force,front_fy,0.0005561307189054787 +illusion_0.75L,ppo,389,77.8,force,upper_fx,0.002113851485773921 +illusion_0.75L,ppo,389,77.8,force,upper_fy,0.0040519265457987785 +illusion_0.75L,ppo,389,77.8,force,lower_fx,-0.0003626150719355792 +illusion_0.75L,ppo,389,77.8,force,lower_fy,-0.004358474165201187 +illusion_0.75L,ppo,390,78.0,force,front_fx,0.002550708130002022 +illusion_0.75L,ppo,390,78.0,force,front_fy,0.0006912809330970049 +illusion_0.75L,ppo,390,78.0,force,upper_fx,0.0022224029526114464 +illusion_0.75L,ppo,390,78.0,force,upper_fy,0.004088079556822777 +illusion_0.75L,ppo,390,78.0,force,lower_fx,-0.0005318965413607657 +illusion_0.75L,ppo,390,78.0,force,lower_fy,-0.00428021838888526 +illusion_0.75L,ppo,391,78.2,force,front_fx,0.002613668330013752 +illusion_0.75L,ppo,391,78.2,force,front_fy,0.0008443891420029104 +illusion_0.75L,ppo,391,78.2,force,upper_fx,0.0023274566046893597 +illusion_0.75L,ppo,391,78.2,force,upper_fy,0.004109055269509554 +illusion_0.75L,ppo,391,78.2,force,lower_fx,-0.0007246214081533253 +illusion_0.75L,ppo,391,78.2,force,lower_fy,-0.004207624588161707 +illusion_0.75L,ppo,392,78.4,force,front_fx,0.0027068087365478277 +illusion_0.75L,ppo,392,78.4,force,front_fy,0.0009779001120477915 +illusion_0.75L,ppo,392,78.4,force,upper_fx,0.002430916531011462 +illusion_0.75L,ppo,392,78.4,force,upper_fy,0.004104342311620712 +illusion_0.75L,ppo,392,78.4,force,lower_fx,-0.0009323824197053909 +illusion_0.75L,ppo,392,78.4,force,lower_fy,-0.004143353085964918 +illusion_0.75L,ppo,393,78.6,force,front_fx,0.002813492203131318 +illusion_0.75L,ppo,393,78.6,force,front_fy,0.0011201765155419707 +illusion_0.75L,ppo,393,78.6,force,upper_fx,0.0025343820452690125 +illusion_0.75L,ppo,393,78.6,force,upper_fy,0.004068965092301369 +illusion_0.75L,ppo,393,78.6,force,lower_fx,-0.0011375023750588298 +illusion_0.75L,ppo,393,78.6,force,lower_fy,-0.004090393893420696 +illusion_0.75L,ppo,394,78.8,force,front_fx,0.0029165500309318304 +illusion_0.75L,ppo,394,78.8,force,front_fy,0.0012252365704625845 +illusion_0.75L,ppo,394,78.8,force,upper_fx,0.0026322207413613796 +illusion_0.75L,ppo,394,78.8,force,upper_fy,0.00400750245898962 +illusion_0.75L,ppo,394,78.8,force,lower_fx,-0.001326954923570156 +illusion_0.75L,ppo,394,78.8,force,lower_fy,-0.004054350778460503 +illusion_0.75L,ppo,395,79.0,force,front_fx,0.0029984014108777046 +illusion_0.75L,ppo,395,79.0,force,front_fy,0.001323803560808301 +illusion_0.75L,ppo,395,79.0,force,upper_fx,0.0027185040526092052 +illusion_0.75L,ppo,395,79.0,force,upper_fy,0.003927016630768776 +illusion_0.75L,ppo,395,79.0,force,lower_fx,-0.001487060682848096 +illusion_0.75L,ppo,395,79.0,force,lower_fy,-0.004035416059195995 +illusion_0.75L,ppo,396,79.2,force,front_fx,0.0030555587727576494 +illusion_0.75L,ppo,396,79.2,force,front_fy,0.001415535807609558 +illusion_0.75L,ppo,396,79.2,force,upper_fx,0.0027926210314035416 +illusion_0.75L,ppo,396,79.2,force,upper_fy,0.0038361786864697933 +illusion_0.75L,ppo,396,79.2,force,lower_fx,-0.0016053603030741215 +illusion_0.75L,ppo,396,79.2,force,lower_fy,-0.004035180434584618 +illusion_0.75L,ppo,397,79.4,force,front_fx,0.003081792499870062 +illusion_0.75L,ppo,397,79.4,force,front_fy,0.0014466868015006185 +illusion_0.75L,ppo,397,79.4,force,upper_fx,0.002851329045370221 +illusion_0.75L,ppo,397,79.4,force,upper_fy,0.0037474166601896286 +illusion_0.75L,ppo,397,79.4,force,lower_fx,-0.0016770749352872372 +illusion_0.75L,ppo,397,79.4,force,lower_fy,-0.004059633240103722 +illusion_0.75L,ppo,398,79.6,force,front_fx,0.0030661148484796286 +illusion_0.75L,ppo,398,79.6,force,front_fy,0.0014554186491295695 +illusion_0.75L,ppo,398,79.6,force,upper_fx,0.0028924131765961647 +illusion_0.75L,ppo,398,79.6,force,upper_fy,0.0036716239992529154 +illusion_0.75L,ppo,398,79.6,force,lower_fx,-0.0016997335478663445 +illusion_0.75L,ppo,398,79.6,force,lower_fy,-0.004111066460609436 +illusion_0.75L,ppo,399,79.8,force,front_fx,0.0030214213766157627 +illusion_0.75L,ppo,399,79.8,force,front_fy,0.0014361264184117317 +illusion_0.75L,ppo,399,79.8,force,upper_fx,0.002914056181907654 +illusion_0.75L,ppo,399,79.8,force,upper_fy,0.0036188107915222645 +illusion_0.75L,ppo,399,79.8,force,lower_fx,-0.0016713894437998533 +illusion_0.75L,ppo,399,79.8,force,lower_fy,-0.004188579507172108 +illusion_0.75L,ppo,0,0.0,alpha,front,-1.4492467641830444 +illusion_0.75L,ppo,0,0.0,alpha,upper,-1.0971254110336304 +illusion_0.75L,ppo,0,0.0,alpha,lower,1.786779671907425 +illusion_0.75L,ppo,1,0.2,alpha,front,-1.4369914531707764 +illusion_0.75L,ppo,1,0.2,alpha,upper,-1.1521430015563965 +illusion_0.75L,ppo,1,0.2,alpha,lower,1.7234466671943665 +illusion_0.75L,ppo,2,0.4,alpha,front,-1.4323949813842773 +illusion_0.75L,ppo,2,0.4,alpha,upper,-1.3317302465438843 +illusion_0.75L,ppo,2,0.4,alpha,lower,1.608982861042023 +illusion_0.75L,ppo,3,0.6,alpha,front,-1.4377899169921875 +illusion_0.75L,ppo,3,0.6,alpha,upper,-1.425523281097412 +illusion_0.75L,ppo,3,0.6,alpha,lower,1.539044201374054 +illusion_0.75L,ppo,4,0.8,alpha,front,-1.3984769582748413 +illusion_0.75L,ppo,4,0.8,alpha,upper,-1.4607462286949158 +illusion_0.75L,ppo,4,0.8,alpha,lower,1.5422994494438171 +illusion_0.75L,ppo,5,1.0,alpha,front,-1.3374109268188477 +illusion_0.75L,ppo,5,1.0,alpha,upper,-1.4353806376457214 +illusion_0.75L,ppo,5,1.0,alpha,lower,1.5988014042377472 +illusion_0.75L,ppo,6,1.2,alpha,front,-1.29972505569458 +illusion_0.75L,ppo,6,1.2,alpha,upper,-1.3993152379989624 +illusion_0.75L,ppo,6,1.2,alpha,lower,1.6429562270641327 +illusion_0.75L,ppo,7,1.4,alpha,front,-1.2916269302368164 +illusion_0.75L,ppo,7,1.4,alpha,upper,-1.3916049003601074 +illusion_0.75L,ppo,7,1.4,alpha,lower,1.6457701325416567 +illusion_0.75L,ppo,8,1.6,alpha,front,-1.3073861598968506 +illusion_0.75L,ppo,8,1.6,alpha,upper,-1.413040578365326 +illusion_0.75L,ppo,8,1.6,alpha,lower,1.6077304780483244 +illusion_0.75L,ppo,9,1.8,alpha,front,-1.2797155380249023 +illusion_0.75L,ppo,9,1.8,alpha,upper,-1.4513064622879028 +illusion_0.75L,ppo,9,1.8,alpha,lower,1.5996510982513426 +illusion_0.75L,ppo,10,2.0,alpha,front,-1.2352747917175293 +illusion_0.75L,ppo,10,2.0,alpha,upper,-1.4670320749282837 +illusion_0.75L,ppo,10,2.0,alpha,lower,1.6161989569664001 +illusion_0.75L,ppo,11,2.2,alpha,front,-1.168007254600525 +illusion_0.75L,ppo,11,2.2,alpha,upper,-1.4751394391059875 +illusion_0.75L,ppo,11,2.2,alpha,lower,1.6575176417827606 +illusion_0.75L,ppo,12,2.4,alpha,front,-1.0878041982650757 +illusion_0.75L,ppo,12,2.4,alpha,upper,-1.4618824124336243 +illusion_0.75L,ppo,12,2.4,alpha,lower,1.7277092635631561 +illusion_0.75L,ppo,13,2.6,alpha,front,-1.0054346323013306 +illusion_0.75L,ppo,13,2.6,alpha,upper,-1.4309058785438538 +illusion_0.75L,ppo,13,2.6,alpha,lower,1.8124326169490812 +illusion_0.75L,ppo,14,2.8,alpha,front,-0.9694478511810304 +illusion_0.75L,ppo,14,2.8,alpha,upper,-1.3748527765274048 +illusion_0.75L,ppo,14,2.8,alpha,lower,1.8708449453115463 +illusion_0.75L,ppo,15,3.0,alpha,front,-0.9376689791679382 +illusion_0.75L,ppo,15,3.0,alpha,upper,-1.295680284500122 +illusion_0.75L,ppo,15,3.0,alpha,lower,1.9400555714964869 +illusion_0.75L,ppo,16,3.2,alpha,front,-0.9842204451560974 +illusion_0.75L,ppo,16,3.2,alpha,upper,-1.1679357886314392 +illusion_0.75L,ppo,16,3.2,alpha,lower,1.9564840085804465 +illusion_0.75L,ppo,17,3.4,alpha,front,-1.0799813270568848 +illusion_0.75L,ppo,17,3.4,alpha,upper,-1.0002243518829346 +illusion_0.75L,ppo,17,3.4,alpha,lower,1.9442201033234598 +illusion_0.75L,ppo,18,3.6,alpha,front,-1.2023106813430786 +illusion_0.75L,ppo,18,3.6,alpha,upper,-0.8124327659606934 +illusion_0.75L,ppo,18,3.6,alpha,lower,1.9174890592694283 +illusion_0.75L,ppo,19,3.8,alpha,front,-1.3292316198349 +illusion_0.75L,ppo,19,3.8,alpha,upper,-0.6497324705123901 +illusion_0.75L,ppo,19,3.8,alpha,lower,1.8863528221845627 +illusion_0.75L,ppo,20,4.0,alpha,front,-1.4150722026824951 +illusion_0.75L,ppo,20,4.0,alpha,upper,-0.5702247619628906 +illusion_0.75L,ppo,20,4.0,alpha,lower,1.8833324983716009 +illusion_0.75L,ppo,21,4.2,alpha,front,-1.4630913734436035 +illusion_0.75L,ppo,21,4.2,alpha,upper,-0.6010178327560425 +illusion_0.75L,ppo,21,4.2,alpha,lower,1.8916421085596085 +illusion_0.75L,ppo,22,4.4,alpha,front,-1.48393714427948 +illusion_0.75L,ppo,22,4.4,alpha,upper,-0.7204657793045044 +illusion_0.75L,ppo,22,4.4,alpha,lower,1.9054559022188187 +illusion_0.75L,ppo,23,4.6,alpha,front,-1.4953029155731201 +illusion_0.75L,ppo,23,4.6,alpha,upper,-0.9097154140472413 +illusion_0.75L,ppo,23,4.6,alpha,lower,1.9034971743822098 +illusion_0.75L,ppo,24,4.8,alpha,front,-1.5436832904815674 +illusion_0.75L,ppo,24,4.8,alpha,upper,-1.1126391887664795 +illusion_0.75L,ppo,24,4.8,alpha,lower,1.854331910610199 +illusion_0.75L,ppo,25,5.0,alpha,front,-1.597791314125061 +illusion_0.75L,ppo,25,5.0,alpha,upper,-1.3017863035202026 +illusion_0.75L,ppo,25,5.0,alpha,lower,1.7965611517429352 +illusion_0.75L,ppo,26,5.2,alpha,front,-1.63911771774292 +illusion_0.75L,ppo,26,5.2,alpha,upper,-1.4478985667228699 +illusion_0.75L,ppo,26,5.2,alpha,lower,1.7543018758296967 +illusion_0.75L,ppo,27,5.4,alpha,front,-1.6175860166549683 +illusion_0.75L,ppo,27,5.4,alpha,upper,-1.5515240728855133 +illusion_0.75L,ppo,27,5.4,alpha,lower,1.7634669840335844 +illusion_0.75L,ppo,28,5.6,alpha,front,-1.6296758651733398 +illusion_0.75L,ppo,28,5.6,alpha,upper,-1.571236431598663 +illusion_0.75L,ppo,28,5.6,alpha,lower,1.7479106485843658 +illusion_0.75L,ppo,29,5.8,alpha,front,-1.5897834300994873 +illusion_0.75L,ppo,29,5.8,alpha,upper,-1.5727973282337187 +illusion_0.75L,ppo,29,5.8,alpha,lower,1.7483457028865812 +illusion_0.75L,ppo,30,6.0,alpha,front,-1.5360969305038452 +illusion_0.75L,ppo,30,6.0,alpha,upper,-1.5279820263385773 +illusion_0.75L,ppo,30,6.0,alpha,lower,1.7375543415546417 +illusion_0.75L,ppo,31,6.2,alpha,front,-1.4475390911102295 +illusion_0.75L,ppo,31,6.2,alpha,upper,-1.459273636341095 +illusion_0.75L,ppo,31,6.2,alpha,lower,1.7323333323001862 +illusion_0.75L,ppo,32,6.4,alpha,front,-1.35520601272583 +illusion_0.75L,ppo,32,6.4,alpha,upper,-1.3832411766052246 +illusion_0.75L,ppo,32,6.4,alpha,lower,1.7020213305950163 +illusion_0.75L,ppo,33,6.6,alpha,front,-1.2951828241348267 +illusion_0.75L,ppo,33,6.6,alpha,upper,-1.2644284963607788 +illusion_0.75L,ppo,33,6.6,alpha,lower,1.6424103677272794 +illusion_0.75L,ppo,34,6.8,alpha,front,-1.2309784889221191 +illusion_0.75L,ppo,34,6.8,alpha,upper,-1.1230125427246094 +illusion_0.75L,ppo,34,6.8,alpha,lower,1.596452236175537 +illusion_0.75L,ppo,35,7.0,alpha,front,-1.1939345598220825 +illusion_0.75L,ppo,35,7.0,alpha,upper,-0.9759721755981444 +illusion_0.75L,ppo,35,7.0,alpha,lower,1.5544151961803436 +illusion_0.75L,ppo,36,7.2,alpha,front,-1.2078826427459717 +illusion_0.75L,ppo,36,7.2,alpha,upper,-0.8270660638809204 +illusion_0.75L,ppo,36,7.2,alpha,lower,1.519793838262558 +illusion_0.75L,ppo,37,7.4,alpha,front,-1.2065908908843994 +illusion_0.75L,ppo,37,7.4,alpha,upper,-0.7185882329940796 +illusion_0.75L,ppo,37,7.4,alpha,lower,1.5383909046649933 +illusion_0.75L,ppo,38,7.6,alpha,front,-1.1813023090362549 +illusion_0.75L,ppo,38,7.6,alpha,upper,-0.675844669342041 +illusion_0.75L,ppo,38,7.6,alpha,lower,1.5895237624645233 +illusion_0.75L,ppo,39,7.8,alpha,front,-1.140123724937439 +illusion_0.75L,ppo,39,7.8,alpha,upper,-0.6917445659637451 +illusion_0.75L,ppo,39,7.8,alpha,lower,1.6597654521465302 +illusion_0.75L,ppo,40,8.0,alpha,front,-1.0970005989074707 +illusion_0.75L,ppo,40,8.0,alpha,upper,-0.7459720373153687 +illusion_0.75L,ppo,40,8.0,alpha,lower,1.7316657900810242 +illusion_0.75L,ppo,41,8.2,alpha,front,-1.062481164932251 +illusion_0.75L,ppo,41,8.2,alpha,upper,-0.8146409988403321 +illusion_0.75L,ppo,41,8.2,alpha,lower,1.792795568704605 +illusion_0.75L,ppo,42,8.4,alpha,front,-1.0438742637634277 +illusion_0.75L,ppo,42,8.4,alpha,upper,-0.8787251710891724 +illusion_0.75L,ppo,42,8.4,alpha,lower,1.8395203948020935 +illusion_0.75L,ppo,43,8.6,alpha,front,-1.0265672206878662 +illusion_0.75L,ppo,43,8.6,alpha,upper,-0.9554817676544188 +illusion_0.75L,ppo,43,8.6,alpha,lower,1.8771104365587234 +illusion_0.75L,ppo,44,8.8,alpha,front,-1.0118863582611084 +illusion_0.75L,ppo,44,8.8,alpha,upper,-1.0275475978851318 +illusion_0.75L,ppo,44,8.8,alpha,lower,1.913418635725975 +illusion_0.75L,ppo,45,9.0,alpha,front,-0.9888030290603638 +illusion_0.75L,ppo,45,9.0,alpha,upper,-1.1000018119812012 +illusion_0.75L,ppo,45,9.0,alpha,lower,1.9581106901168823 +illusion_0.75L,ppo,46,9.2,alpha,front,-0.9958561062812804 +illusion_0.75L,ppo,46,9.2,alpha,upper,-1.1599097847938538 +illusion_0.75L,ppo,46,9.2,alpha,lower,1.987552985548973 +illusion_0.75L,ppo,47,9.4,alpha,front,-1.0114994049072266 +illusion_0.75L,ppo,47,9.4,alpha,upper,-1.209991216659546 +illusion_0.75L,ppo,47,9.4,alpha,lower,2.018463745713234 +illusion_0.75L,ppo,48,9.6,alpha,front,-1.0539706945419312 +illusion_0.75L,ppo,48,9.6,alpha,upper,-1.2381630539894104 +illusion_0.75L,ppo,48,9.6,alpha,lower,2.039277859032154 +illusion_0.75L,ppo,49,9.8,alpha,front,-1.140035629272461 +illusion_0.75L,ppo,49,9.8,alpha,upper,-1.228631615638733 +illusion_0.75L,ppo,49,9.8,alpha,lower,2.0295992866158485 +illusion_0.75L,ppo,50,10.0,alpha,front,-1.2584879398345947 +illusion_0.75L,ppo,50,10.0,alpha,upper,-1.1782896518707275 +illusion_0.75L,ppo,50,10.0,alpha,lower,1.9929592832922935 +illusion_0.75L,ppo,51,10.2,alpha,front,-1.397828459739685 +illusion_0.75L,ppo,51,10.2,alpha,upper,-1.1034166812896729 +illusion_0.75L,ppo,51,10.2,alpha,lower,1.9302421435713768 +illusion_0.75L,ppo,52,10.4,alpha,front,-1.52958083152771 +illusion_0.75L,ppo,52,10.4,alpha,upper,-1.053486943244934 +illusion_0.75L,ppo,52,10.4,alpha,lower,1.8498093634843826 +illusion_0.75L,ppo,53,10.6,alpha,front,-1.6605100631713865 +illusion_0.75L,ppo,53,10.6,alpha,upper,-1.0295828580856323 +illusion_0.75L,ppo,53,10.6,alpha,lower,1.764933854341507 +illusion_0.75L,ppo,54,10.8,alpha,front,-1.746000051498413 +illusion_0.75L,ppo,54,10.8,alpha,upper,-1.0815637111663818 +illusion_0.75L,ppo,54,10.8,alpha,lower,1.6995910108089447 +illusion_0.75L,ppo,55,11.0,alpha,front,-1.8039665222167967 +illusion_0.75L,ppo,55,11.0,alpha,upper,-1.1648171544075012 +illusion_0.75L,ppo,55,11.0,alpha,lower,1.6551181972026825 +illusion_0.75L,ppo,56,11.2,alpha,front,-1.8441729545593262 +illusion_0.75L,ppo,56,11.2,alpha,upper,-1.2984501123428345 +illusion_0.75L,ppo,56,11.2,alpha,lower,1.6047661900520327 +illusion_0.75L,ppo,57,11.4,alpha,front,-1.8882004022598267 +illusion_0.75L,ppo,57,11.4,alpha,upper,-1.4283128380775452 +illusion_0.75L,ppo,57,11.4,alpha,lower,1.5485673546791077 +illusion_0.75L,ppo,58,11.6,alpha,front,-1.9492809772491455 +illusion_0.75L,ppo,58,11.6,alpha,upper,-1.5203665792942047 +illusion_0.75L,ppo,58,11.6,alpha,lower,1.4836282134056091 +illusion_0.75L,ppo,59,11.8,alpha,front,-1.963219165802002 +illusion_0.75L,ppo,59,11.8,alpha,upper,-1.5893259346485138 +illusion_0.75L,ppo,59,11.8,alpha,lower,1.4586623311042786 +illusion_0.75L,ppo,60,12.0,alpha,front,-1.9543514251708984 +illusion_0.75L,ppo,60,12.0,alpha,upper,-1.604032754898071 +illusion_0.75L,ppo,60,12.0,alpha,lower,1.460337519645691 +illusion_0.75L,ppo,61,12.2,alpha,front,-1.9072840213775637 +illusion_0.75L,ppo,61,12.2,alpha,upper,-1.578638166189194 +illusion_0.75L,ppo,61,12.2,alpha,lower,1.4884110689163208 +illusion_0.75L,ppo,62,12.4,alpha,front,-1.8522005081176758 +illusion_0.75L,ppo,62,12.4,alpha,upper,-1.4944102764129639 +illusion_0.75L,ppo,62,12.4,alpha,lower,1.5203388035297394 +illusion_0.75L,ppo,63,12.6,alpha,front,-1.7667131423950198 +illusion_0.75L,ppo,63,12.6,alpha,upper,-1.3721177577972412 +illusion_0.75L,ppo,63,12.6,alpha,lower,1.564685583114624 +illusion_0.75L,ppo,64,12.8,alpha,front,-1.649038553237915 +illusion_0.75L,ppo,64,12.8,alpha,upper,-1.2351691126823425 +illusion_0.75L,ppo,64,12.8,alpha,lower,1.6196324825286865 +illusion_0.75L,ppo,65,13.0,alpha,front,-1.4979119300842285 +illusion_0.75L,ppo,65,13.0,alpha,upper,-1.1021751761436462 +illusion_0.75L,ppo,65,13.0,alpha,lower,1.69193497300148 +illusion_0.75L,ppo,66,13.2,alpha,front,-1.3640315532684326 +illusion_0.75L,ppo,66,13.2,alpha,upper,-0.9780433177947998 +illusion_0.75L,ppo,66,13.2,alpha,lower,1.7478184998035433 +illusion_0.75L,ppo,67,13.4,alpha,front,-1.2310913801193237 +illusion_0.75L,ppo,67,13.4,alpha,upper,-0.8751192092895509 +illusion_0.75L,ppo,67,13.4,alpha,lower,1.8137055933475494 +illusion_0.75L,ppo,68,13.6,alpha,front,-1.1225026845932007 +illusion_0.75L,ppo,68,13.6,alpha,upper,-0.798262596130371 +illusion_0.75L,ppo,68,13.6,alpha,lower,1.8830203637480736 +illusion_0.75L,ppo,69,13.8,alpha,front,-1.0641794204711914 +illusion_0.75L,ppo,69,13.8,alpha,upper,-0.7365481853485107 +illusion_0.75L,ppo,69,13.8,alpha,lower,1.939982168376446 +illusion_0.75L,ppo,70,14.0,alpha,front,-1.0114595890045166 +illusion_0.75L,ppo,70,14.0,alpha,upper,-0.7068606615066528 +illusion_0.75L,ppo,70,14.0,alpha,lower,2.020038388669491 +illusion_0.75L,ppo,71,14.2,alpha,front,-0.974043071269989 +illusion_0.75L,ppo,71,14.2,alpha,upper,-0.6987141370773315 +illusion_0.75L,ppo,71,14.2,alpha,lower,2.1069215312600136 +illusion_0.75L,ppo,72,14.4,alpha,front,-0.9465981721878052 +illusion_0.75L,ppo,72,14.4,alpha,upper,-0.7084890604019165 +illusion_0.75L,ppo,72,14.4,alpha,lower,2.1941382586956024 +illusion_0.75L,ppo,73,14.6,alpha,front,-0.9202035069465637 +illusion_0.75L,ppo,73,14.6,alpha,upper,-0.7232580184936523 +illusion_0.75L,ppo,73,14.6,alpha,lower,2.2789546251296997 +illusion_0.75L,ppo,74,14.8,alpha,front,-0.8991240859031676 +illusion_0.75L,ppo,74,14.8,alpha,upper,-0.7520320415496826 +illusion_0.75L,ppo,74,14.8,alpha,lower,2.3422052562236786 +illusion_0.75L,ppo,75,15.0,alpha,front,-0.8748298287391663 +illusion_0.75L,ppo,75,15.0,alpha,upper,-0.7890110015869142 +illusion_0.75L,ppo,75,15.0,alpha,lower,2.3872663378715515 +illusion_0.75L,ppo,76,15.2,alpha,front,-0.8734559416770935 +illusion_0.75L,ppo,76,15.2,alpha,upper,-0.8246240615844725 +illusion_0.75L,ppo,76,15.2,alpha,lower,2.3982246816158295 +illusion_0.75L,ppo,77,15.4,alpha,front,-0.862480103969574 +illusion_0.75L,ppo,77,15.4,alpha,upper,-0.8930591344833373 +illusion_0.75L,ppo,77,15.4,alpha,lower,2.387974798679352 +illusion_0.75L,ppo,78,15.6,alpha,front,-0.8735676407814027 +illusion_0.75L,ppo,78,15.6,alpha,upper,-0.9778615236282349 +illusion_0.75L,ppo,78,15.6,alpha,lower,2.338181793689728 +illusion_0.75L,ppo,79,15.8,alpha,front,-0.9007800817489624 +illusion_0.75L,ppo,79,15.8,alpha,upper,-1.0860756635665894 +illusion_0.75L,ppo,79,15.8,alpha,lower,2.2535675764083862 +illusion_0.75L,ppo,80,16.0,alpha,front,-0.9485130906105042 +illusion_0.75L,ppo,80,16.0,alpha,upper,-1.211315095424652 +illusion_0.75L,ppo,80,16.0,alpha,lower,2.133435219526291 +illusion_0.75L,ppo,81,16.2,alpha,front,-1.0026313066482544 +illusion_0.75L,ppo,81,16.2,alpha,upper,-1.3537108302116394 +illusion_0.75L,ppo,81,16.2,alpha,lower,1.995776280760765 +illusion_0.75L,ppo,82,16.4,alpha,front,-1.0526816844940186 +illusion_0.75L,ppo,82,16.4,alpha,upper,-1.519773542881012 +illusion_0.75L,ppo,82,16.4,alpha,lower,1.848593235015869 +illusion_0.75L,ppo,83,16.6,alpha,front,-1.1098674535751343 +illusion_0.75L,ppo,83,16.6,alpha,upper,-1.6782851815223696 +illusion_0.75L,ppo,83,16.6,alpha,lower,1.6956529617309568 +illusion_0.75L,ppo,84,16.8,alpha,front,-1.1272728443145752 +illusion_0.75L,ppo,84,16.8,alpha,upper,-1.8434638381004336 +illusion_0.75L,ppo,84,16.8,alpha,lower,1.5741931498050692 +illusion_0.75L,ppo,85,17.0,alpha,front,-1.1586494445800781 +illusion_0.75L,ppo,85,17.0,alpha,upper,-1.992481857538223 +illusion_0.75L,ppo,85,17.0,alpha,lower,1.445677936077118 +illusion_0.75L,ppo,86,17.2,alpha,front,-1.1556363105773926 +illusion_0.75L,ppo,86,17.2,alpha,upper,-2.1182147562503815 +illusion_0.75L,ppo,86,17.2,alpha,lower,1.3606970310211182 +illusion_0.75L,ppo,87,17.4,alpha,front,-1.1276761293411255 +illusion_0.75L,ppo,87,17.4,alpha,upper,-2.211210459470749 +illusion_0.75L,ppo,87,17.4,alpha,lower,1.3220528960227966 +illusion_0.75L,ppo,88,17.6,alpha,front,-1.0773664712905884 +illusion_0.75L,ppo,88,17.6,alpha,upper,-2.273040324449539 +illusion_0.75L,ppo,88,17.6,alpha,lower,1.3246898651123047 +illusion_0.75L,ppo,89,17.8,alpha,front,-1.0686397552490234 +illusion_0.75L,ppo,89,17.8,alpha,upper,-2.2639914453029633 +illusion_0.75L,ppo,89,17.8,alpha,lower,1.3253610730171204 +illusion_0.75L,ppo,90,18.0,alpha,front,-1.0626438856124878 +illusion_0.75L,ppo,90,18.0,alpha,upper,-2.162259191274643 +illusion_0.75L,ppo,90,18.0,alpha,lower,1.3628925681114197 +illusion_0.75L,ppo,91,18.2,alpha,front,-1.0929076671600342 +illusion_0.75L,ppo,91,18.2,alpha,upper,-1.9628174006938934 +illusion_0.75L,ppo,91,18.2,alpha,lower,1.4017024636268616 +illusion_0.75L,ppo,92,18.4,alpha,front,-1.177940011024475 +illusion_0.75L,ppo,92,18.4,alpha,upper,-1.6484384834766388 +illusion_0.75L,ppo,92,18.4,alpha,lower,1.4359896183013916 +illusion_0.75L,ppo,93,18.6,alpha,front,-1.2975472211837769 +illusion_0.75L,ppo,93,18.6,alpha,upper,-1.2771198749542236 +illusion_0.75L,ppo,93,18.6,alpha,lower,1.469963014125824 +illusion_0.75L,ppo,94,18.8,alpha,front,-1.3959156274795532 +illusion_0.75L,ppo,94,18.8,alpha,upper,-0.9062589406967162 +illusion_0.75L,ppo,94,18.8,alpha,lower,1.5372937321662903 +illusion_0.75L,ppo,95,19.0,alpha,front,-1.490918517112732 +illusion_0.75L,ppo,95,19.0,alpha,upper,-0.5724960565567017 +illusion_0.75L,ppo,95,19.0,alpha,lower,1.6122389733791351 +illusion_0.75L,ppo,96,19.2,alpha,front,-1.509829044342041 +illusion_0.75L,ppo,96,19.2,alpha,upper,-0.3441809415817261 +illusion_0.75L,ppo,96,19.2,alpha,lower,1.7298509776592255 +illusion_0.75L,ppo,97,19.4,alpha,front,-1.465100646018982 +illusion_0.75L,ppo,97,19.4,alpha,upper,-0.2426251173019409 +illusion_0.75L,ppo,97,19.4,alpha,lower,1.8734481036663055 +illusion_0.75L,ppo,98,19.6,alpha,front,-1.3550944328308105 +illusion_0.75L,ppo,98,19.6,alpha,upper,-0.2868553400039673 +illusion_0.75L,ppo,98,19.6,alpha,lower,2.03615090996027 +illusion_0.75L,ppo,99,19.8,alpha,front,-1.2528328895568848 +illusion_0.75L,ppo,99,19.8,alpha,upper,-0.4226365089416504 +illusion_0.75L,ppo,99,19.8,alpha,lower,2.1634255051612854 +illusion_0.75L,ppo,100,20.0,alpha,front,-1.1513265371322632 +illusion_0.75L,ppo,100,20.0,alpha,upper,-0.6060894727706909 +illusion_0.75L,ppo,100,20.0,alpha,lower,2.2641234397888184 +illusion_0.75L,ppo,101,20.2,alpha,front,-1.0683963298797607 +illusion_0.75L,ppo,101,20.2,alpha,upper,-0.7968968152999878 +illusion_0.75L,ppo,101,20.2,alpha,lower,2.3276871144771576 +illusion_0.75L,ppo,102,20.4,alpha,front,-1.009952187538147 +illusion_0.75L,ppo,102,20.4,alpha,upper,-0.9281570911407472 +illusion_0.75L,ppo,102,20.4,alpha,lower,2.365500748157501 +illusion_0.75L,ppo,103,20.6,alpha,front,-0.9364262819290161 +illusion_0.75L,ppo,103,20.6,alpha,upper,-1.0115150213241577 +illusion_0.75L,ppo,103,20.6,alpha,lower,2.4056935906410217 +illusion_0.75L,ppo,104,20.8,alpha,front,-0.8673431873321533 +illusion_0.75L,ppo,104,20.8,alpha,upper,-1.028119683265686 +illusion_0.75L,ppo,104,20.8,alpha,lower,2.43513023853302 +illusion_0.75L,ppo,105,21.0,alpha,front,-0.7905925512313844 +illusion_0.75L,ppo,105,21.0,alpha,upper,-1.0093954801559448 +illusion_0.75L,ppo,105,21.0,alpha,lower,2.445639967918396 +illusion_0.75L,ppo,106,21.2,alpha,front,-0.7376440763473511 +illusion_0.75L,ppo,106,21.2,alpha,upper,-0.9619898796081543 +illusion_0.75L,ppo,106,21.2,alpha,lower,2.4047686755657196 +illusion_0.75L,ppo,107,21.4,alpha,front,-0.7183976769447327 +illusion_0.75L,ppo,107,21.4,alpha,upper,-0.9151533842086792 +illusion_0.75L,ppo,107,21.4,alpha,lower,2.3004381358623505 +illusion_0.75L,ppo,108,21.6,alpha,front,-0.7297375202178955 +illusion_0.75L,ppo,108,21.6,alpha,upper,-0.885614514350891 +illusion_0.75L,ppo,108,21.6,alpha,lower,2.1529827415943146 +illusion_0.75L,ppo,109,21.8,alpha,front,-0.7666083574295044 +illusion_0.75L,ppo,109,21.8,alpha,upper,-0.9032729864120483 +illusion_0.75L,ppo,109,21.8,alpha,lower,1.9883312806487081 +illusion_0.75L,ppo,110,22.0,alpha,front,-0.8314532637596129 +illusion_0.75L,ppo,110,22.0,alpha,upper,-0.9734992980957032 +illusion_0.75L,ppo,110,22.0,alpha,lower,1.8224757015705109 +illusion_0.75L,ppo,111,22.2,alpha,front,-0.9236755967140199 +illusion_0.75L,ppo,111,22.2,alpha,upper,-1.0957319736480713 +illusion_0.75L,ppo,111,22.2,alpha,lower,1.6632653772830963 +illusion_0.75L,ppo,112,22.4,alpha,front,-1.0320353507995605 +illusion_0.75L,ppo,112,22.4,alpha,upper,-1.2559747695922852 +illusion_0.75L,ppo,112,22.4,alpha,lower,1.5179893374443054 +illusion_0.75L,ppo,113,22.6,alpha,front,-1.1356273889541626 +illusion_0.75L,ppo,113,22.6,alpha,upper,-1.4349120259284973 +illusion_0.75L,ppo,113,22.6,alpha,lower,1.388000249862671 +illusion_0.75L,ppo,114,22.8,alpha,front,-1.2210509777069092 +illusion_0.75L,ppo,114,22.8,alpha,upper,-1.6150681674480436 +illusion_0.75L,ppo,114,22.8,alpha,lower,1.275311827659607 +illusion_0.75L,ppo,115,23.0,alpha,front,-1.2740163803100586 +illusion_0.75L,ppo,115,23.0,alpha,upper,-1.7730351239442825 +illusion_0.75L,ppo,115,23.0,alpha,lower,1.1955427527427673 +illusion_0.75L,ppo,116,23.2,alpha,front,-1.305173397064209 +illusion_0.75L,ppo,116,23.2,alpha,upper,-1.8978528082370758 +illusion_0.75L,ppo,116,23.2,alpha,lower,1.1392780542373657 +illusion_0.75L,ppo,117,23.4,alpha,front,-1.3025152683258057 +illusion_0.75L,ppo,117,23.4,alpha,upper,-1.988506257534027 +illusion_0.75L,ppo,117,23.4,alpha,lower,1.1251567602157593 +illusion_0.75L,ppo,118,23.6,alpha,front,-1.2943902015686035 +illusion_0.75L,ppo,118,23.6,alpha,upper,-2.0354852080345154 +illusion_0.75L,ppo,118,23.6,alpha,lower,1.1393896341323853 +illusion_0.75L,ppo,119,23.8,alpha,front,-1.296434760093689 +illusion_0.75L,ppo,119,23.8,alpha,upper,-2.0367601215839386 +illusion_0.75L,ppo,119,23.8,alpha,lower,1.1793997287750244 +illusion_0.75L,ppo,120,24.0,alpha,front,-1.3322112560272217 +illusion_0.75L,ppo,120,24.0,alpha,upper,-1.9615224599838255 +illusion_0.75L,ppo,120,24.0,alpha,lower,1.245193064212799 +illusion_0.75L,ppo,121,24.2,alpha,front,-1.3935847282409668 +illusion_0.75L,ppo,121,24.2,alpha,upper,-1.8045607507228851 +illusion_0.75L,ppo,121,24.2,alpha,lower,1.3383086323738098 +illusion_0.75L,ppo,122,24.4,alpha,front,-1.4999533891677856 +illusion_0.75L,ppo,122,24.4,alpha,upper,-1.5788382589817045 +illusion_0.75L,ppo,122,24.4,alpha,lower,1.4286660552024841 +illusion_0.75L,ppo,123,24.6,alpha,front,-1.5966575145721436 +illusion_0.75L,ppo,123,24.6,alpha,upper,-1.3266876935958862 +illusion_0.75L,ppo,123,24.6,alpha,lower,1.5399363338947296 +illusion_0.75L,ppo,124,24.8,alpha,front,-1.6584343910217285 +illusion_0.75L,ppo,124,24.8,alpha,upper,-1.104402780532837 +illusion_0.75L,ppo,124,24.8,alpha,lower,1.6564187109470367 +illusion_0.75L,ppo,125,25.0,alpha,front,-1.670769214630127 +illusion_0.75L,ppo,125,25.0,alpha,upper,-0.898444652557373 +illusion_0.75L,ppo,125,25.0,alpha,lower,1.7876304984092712 +illusion_0.75L,ppo,126,25.2,alpha,front,-1.645951271057129 +illusion_0.75L,ppo,126,25.2,alpha,upper,-0.734976053237915 +illusion_0.75L,ppo,126,25.2,alpha,lower,1.9087788090109827 +illusion_0.75L,ppo,127,25.4,alpha,front,-1.58677077293396 +illusion_0.75L,ppo,127,25.4,alpha,upper,-0.6203519105911255 +illusion_0.75L,ppo,127,25.4,alpha,lower,2.0242287144064903 +illusion_0.75L,ppo,128,25.6,alpha,front,-1.5101306438446045 +illusion_0.75L,ppo,128,25.6,alpha,upper,-0.5475348234176636 +illusion_0.75L,ppo,128,25.6,alpha,lower,2.137833058834076 +illusion_0.75L,ppo,129,25.8,alpha,front,-1.4293482303619385 +illusion_0.75L,ppo,129,25.8,alpha,upper,-0.5178683996200562 +illusion_0.75L,ppo,129,25.8,alpha,lower,2.2445449233055115 +illusion_0.75L,ppo,130,26.0,alpha,front,-1.3457574844360352 +illusion_0.75L,ppo,130,26.0,alpha,upper,-0.5175360441207886 +illusion_0.75L,ppo,130,26.0,alpha,lower,2.349157929420471 +illusion_0.75L,ppo,131,26.2,alpha,front,-1.2684149742126465 +illusion_0.75L,ppo,131,26.2,alpha,upper,-0.5500060319900513 +illusion_0.75L,ppo,131,26.2,alpha,lower,2.444333493709564 +illusion_0.75L,ppo,132,26.4,alpha,front,-1.1889346837997437 +illusion_0.75L,ppo,132,26.4,alpha,upper,-0.6102372407913208 +illusion_0.75L,ppo,132,26.4,alpha,lower,2.5299118161201477 +illusion_0.75L,ppo,133,26.6,alpha,front,-1.0930051803588867 +illusion_0.75L,ppo,133,26.6,alpha,upper,-0.6965615749359131 +illusion_0.75L,ppo,133,26.6,alpha,lower,2.6051920652389526 +illusion_0.75L,ppo,134,26.8,alpha,front,-0.999370813369751 +illusion_0.75L,ppo,134,26.8,alpha,upper,-0.7912310361862183 +illusion_0.75L,ppo,134,26.8,alpha,lower,2.648625433444977 +illusion_0.75L,ppo,135,27.0,alpha,front,-0.9152764081954956 +illusion_0.75L,ppo,135,27.0,alpha,upper,-0.8895045518875122 +illusion_0.75L,ppo,135,27.0,alpha,lower,2.642423093318939 +illusion_0.75L,ppo,136,27.2,alpha,front,-0.8259572982788087 +illusion_0.75L,ppo,136,27.2,alpha,upper,-0.983917474746704 +illusion_0.75L,ppo,136,27.2,alpha,lower,2.6068366169929504 +illusion_0.75L,ppo,137,27.4,alpha,front,-0.7859983444213868 +illusion_0.75L,ppo,137,27.4,alpha,upper,-1.069825291633606 +illusion_0.75L,ppo,137,27.4,alpha,lower,2.5076348781585693 +illusion_0.75L,ppo,138,27.6,alpha,front,-0.7979563474655152 +illusion_0.75L,ppo,138,27.6,alpha,upper,-1.1362943649291992 +illusion_0.75L,ppo,138,27.6,alpha,lower,2.362336039543152 +illusion_0.75L,ppo,139,27.8,alpha,front,-0.8643426299095154 +illusion_0.75L,ppo,139,27.8,alpha,upper,-1.1909382343292236 +illusion_0.75L,ppo,139,27.8,alpha,lower,2.1839161813259125 +illusion_0.75L,ppo,140,28.0,alpha,front,-0.9652470946311951 +illusion_0.75L,ppo,140,28.0,alpha,upper,-1.261526346206665 +illusion_0.75L,ppo,140,28.0,alpha,lower,1.9903861060738566 +illusion_0.75L,ppo,141,28.2,alpha,front,-1.0916337966918945 +illusion_0.75L,ppo,141,28.2,alpha,upper,-1.350250244140625 +illusion_0.75L,ppo,141,28.2,alpha,lower,1.789715349674225 +illusion_0.75L,ppo,142,28.4,alpha,front,-1.198849081993103 +illusion_0.75L,ppo,142,28.4,alpha,upper,-1.4831633567810059 +illusion_0.75L,ppo,142,28.4,alpha,lower,1.6090479493141174 +illusion_0.75L,ppo,143,28.6,alpha,front,-1.277998924255371 +illusion_0.75L,ppo,143,28.6,alpha,upper,-1.6365144550800323 +illusion_0.75L,ppo,143,28.6,alpha,lower,1.4567129015922546 +illusion_0.75L,ppo,144,28.8,alpha,front,-1.3317558765411377 +illusion_0.75L,ppo,144,28.8,alpha,upper,-1.7984308898448944 +illusion_0.75L,ppo,144,28.8,alpha,lower,1.3290942311286926 +illusion_0.75L,ppo,145,29.0,alpha,front,-1.3551232814788818 +illusion_0.75L,ppo,145,29.0,alpha,upper,-1.9467486739158628 +illusion_0.75L,ppo,145,29.0,alpha,lower,1.236907184123993 +illusion_0.75L,ppo,146,29.2,alpha,front,-1.357981562614441 +illusion_0.75L,ppo,146,29.2,alpha,upper,-2.0645513832569122 +illusion_0.75L,ppo,146,29.2,alpha,lower,1.1765851378440857 +illusion_0.75L,ppo,147,29.4,alpha,front,-1.3158494234085083 +illusion_0.75L,ppo,147,29.4,alpha,upper,-2.1732639372348785 +illusion_0.75L,ppo,147,29.4,alpha,lower,1.1622974872589111 +illusion_0.75L,ppo,148,29.6,alpha,front,-1.27403724193573 +illusion_0.75L,ppo,148,29.6,alpha,upper,-2.241489499807358 +illusion_0.75L,ppo,148,29.6,alpha,lower,1.1749473810195923 +illusion_0.75L,ppo,149,29.8,alpha,front,-1.215761661529541 +illusion_0.75L,ppo,149,29.8,alpha,upper,-2.2542339265346527 +illusion_0.75L,ppo,149,29.8,alpha,lower,1.234294056892395 +illusion_0.75L,ppo,150,30.0,alpha,front,-1.1751294136047363 +illusion_0.75L,ppo,150,30.0,alpha,upper,-2.1847549378871918 +illusion_0.75L,ppo,150,30.0,alpha,lower,1.3150646686553955 +illusion_0.75L,ppo,151,30.2,alpha,front,-1.201697587966919 +illusion_0.75L,ppo,151,30.2,alpha,upper,-1.9722681045532227 +illusion_0.75L,ppo,151,30.2,alpha,lower,1.3882167339324951 +illusion_0.75L,ppo,152,30.4,alpha,front,-1.2798187732696533 +illusion_0.75L,ppo,152,30.4,alpha,upper,-1.6498116254806519 +illusion_0.75L,ppo,152,30.4,alpha,lower,1.4557890892028809 +illusion_0.75L,ppo,153,30.6,alpha,front,-1.3664946556091309 +illusion_0.75L,ppo,153,30.6,alpha,upper,-1.2966689467430115 +illusion_0.75L,ppo,153,30.6,alpha,lower,1.538371980190277 +illusion_0.75L,ppo,154,30.8,alpha,front,-1.4291245937347412 +illusion_0.75L,ppo,154,30.8,alpha,upper,-0.972196102142334 +illusion_0.75L,ppo,154,30.8,alpha,lower,1.6454049050807953 +illusion_0.75L,ppo,155,31.0,alpha,front,-1.4655004739761353 +illusion_0.75L,ppo,155,31.0,alpha,upper,-0.7012619972229004 +illusion_0.75L,ppo,155,31.0,alpha,lower,1.7661690711975098 +illusion_0.75L,ppo,156,31.2,alpha,front,-1.4603016376495361 +illusion_0.75L,ppo,156,31.2,alpha,upper,-0.5053317546844482 +illusion_0.75L,ppo,156,31.2,alpha,lower,1.9027582556009293 +illusion_0.75L,ppo,157,31.4,alpha,front,-1.4220726490020752 +illusion_0.75L,ppo,157,31.4,alpha,upper,-0.3906844854354858 +illusion_0.75L,ppo,157,31.4,alpha,lower,2.0424521192908287 +illusion_0.75L,ppo,158,31.6,alpha,front,-1.3782446384429932 +illusion_0.75L,ppo,158,31.6,alpha,upper,-0.3440755605697632 +illusion_0.75L,ppo,158,31.6,alpha,lower,2.1653579473495483 +illusion_0.75L,ppo,159,31.8,alpha,front,-1.2982244491577148 +illusion_0.75L,ppo,159,31.8,alpha,upper,-0.371440052986145 +illusion_0.75L,ppo,159,31.8,alpha,lower,2.2989775240421295 +illusion_0.75L,ppo,160,32.0,alpha,front,-1.214958667755127 +illusion_0.75L,ppo,160,32.0,alpha,upper,-0.44856357574462885 +illusion_0.75L,ppo,160,32.0,alpha,lower,2.4194947481155396 +illusion_0.75L,ppo,161,32.2,alpha,front,-1.1351343393325806 +illusion_0.75L,ppo,161,32.2,alpha,upper,-0.5627013444900513 +illusion_0.75L,ppo,161,32.2,alpha,lower,2.520101249217987 +illusion_0.75L,ppo,162,32.4,alpha,front,-1.0555546283721924 +illusion_0.75L,ppo,162,32.4,alpha,upper,-0.6955691576004028 +illusion_0.75L,ppo,162,32.4,alpha,lower,2.5992076992988586 +illusion_0.75L,ppo,163,32.6,alpha,front,-0.9771000146865844 +illusion_0.75L,ppo,163,32.6,alpha,upper,-0.8249753713607788 +illusion_0.75L,ppo,163,32.6,alpha,lower,2.649510622024536 +illusion_0.75L,ppo,164,32.8,alpha,front,-0.8982986211776733 +illusion_0.75L,ppo,164,32.8,alpha,upper,-0.9356818199157716 +illusion_0.75L,ppo,164,32.8,alpha,lower,2.666132867336273 +illusion_0.75L,ppo,165,33.0,alpha,front,-0.8295936584472656 +illusion_0.75L,ppo,165,33.0,alpha,upper,-1.0127732753753662 +illusion_0.75L,ppo,165,33.0,alpha,lower,2.6346943974494934 +illusion_0.75L,ppo,166,33.2,alpha,front,-0.7907735109329224 +illusion_0.75L,ppo,166,33.2,alpha,upper,-1.0470022559165955 +illusion_0.75L,ppo,166,33.2,alpha,lower,2.538018584251404 +illusion_0.75L,ppo,167,33.4,alpha,front,-0.7993466854095459 +illusion_0.75L,ppo,167,33.4,alpha,upper,-1.0442497730255127 +illusion_0.75L,ppo,167,33.4,alpha,lower,2.37587970495224 +illusion_0.75L,ppo,168,33.6,alpha,front,-0.8517345786094666 +illusion_0.75L,ppo,168,33.6,alpha,upper,-1.0445513725280762 +illusion_0.75L,ppo,168,33.6,alpha,lower,2.1732532680034637 +illusion_0.75L,ppo,169,33.8,alpha,front,-0.9360591173171997 +illusion_0.75L,ppo,169,33.8,alpha,upper,-1.091415524482727 +illusion_0.75L,ppo,169,33.8,alpha,lower,1.964153617620468 +illusion_0.75L,ppo,170,34.0,alpha,front,-1.0406453609466553 +illusion_0.75L,ppo,170,34.0,alpha,upper,-1.1943433284759521 +illusion_0.75L,ppo,170,34.0,alpha,lower,1.7737870514392853 +illusion_0.75L,ppo,171,34.2,alpha,front,-1.1488078832626343 +illusion_0.75L,ppo,171,34.2,alpha,upper,-1.3515969514846802 +illusion_0.75L,ppo,171,34.2,alpha,lower,1.604848474264145 +illusion_0.75L,ppo,172,34.4,alpha,front,-1.2434271574020386 +illusion_0.75L,ppo,172,34.4,alpha,upper,-1.5417386889457703 +illusion_0.75L,ppo,172,34.4,alpha,lower,1.456300973892212 +illusion_0.75L,ppo,173,34.6,alpha,front,-1.3225311040878296 +illusion_0.75L,ppo,173,34.6,alpha,upper,-1.7302159368991852 +illusion_0.75L,ppo,173,34.6,alpha,lower,1.3226398229599 +illusion_0.75L,ppo,174,34.8,alpha,front,-1.3703900575637817 +illusion_0.75L,ppo,174,34.8,alpha,upper,-1.8970804810523985 +illusion_0.75L,ppo,174,34.8,alpha,lower,1.2167983055114746 +illusion_0.75L,ppo,175,35.0,alpha,front,-1.373252511024475 +illusion_0.75L,ppo,175,35.0,alpha,upper,-2.03619247674942 +illusion_0.75L,ppo,175,35.0,alpha,lower,1.155615746974945 +illusion_0.75L,ppo,176,35.2,alpha,front,-1.3788875341415405 +illusion_0.75L,ppo,176,35.2,alpha,upper,-2.122868925333023 +illusion_0.75L,ppo,176,35.2,alpha,lower,1.1146145462989807 +illusion_0.75L,ppo,177,35.4,alpha,front,-1.3440515995025635 +illusion_0.75L,ppo,177,35.4,alpha,upper,-2.182426482439041 +illusion_0.75L,ppo,177,35.4,alpha,lower,1.1317052245140076 +illusion_0.75L,ppo,178,35.6,alpha,front,-1.3140960931777954 +illusion_0.75L,ppo,178,35.6,alpha,upper,-2.184150129556656 +illusion_0.75L,ppo,178,35.6,alpha,lower,1.1895731091499329 +illusion_0.75L,ppo,179,35.8,alpha,front,-1.3235266208648682 +illusion_0.75L,ppo,179,35.8,alpha,upper,-2.089203506708145 +illusion_0.75L,ppo,179,35.8,alpha,lower,1.2714513540267944 +illusion_0.75L,ppo,180,36.0,alpha,front,-1.3922213315963745 +illusion_0.75L,ppo,180,36.0,alpha,upper,-1.8815367817878723 +illusion_0.75L,ppo,180,36.0,alpha,lower,1.3568469285964966 +illusion_0.75L,ppo,181,36.2,alpha,front,-1.4967565536499023 +illusion_0.75L,ppo,181,36.2,alpha,upper,-1.6040971875190733 +illusion_0.75L,ppo,181,36.2,alpha,lower,1.4475526809692383 +illusion_0.75L,ppo,182,36.4,alpha,front,-1.582825422286987 +illusion_0.75L,ppo,182,36.4,alpha,upper,-1.31842839717865 +illusion_0.75L,ppo,182,36.4,alpha,lower,1.5610319375991821 +illusion_0.75L,ppo,183,36.6,alpha,front,-1.633927583694458 +illusion_0.75L,ppo,183,36.6,alpha,upper,-1.0652819871902466 +illusion_0.75L,ppo,183,36.6,alpha,lower,1.6859411895275116 +illusion_0.75L,ppo,184,36.8,alpha,front,-1.6437132358551025 +illusion_0.75L,ppo,184,36.8,alpha,upper,-0.8588171005249023 +illusion_0.75L,ppo,184,36.8,alpha,lower,1.809773713350296 +illusion_0.75L,ppo,185,37.0,alpha,front,-1.6210935115814207 +illusion_0.75L,ppo,185,37.0,alpha,upper,-0.699135422706604 +illusion_0.75L,ppo,185,37.0,alpha,lower,1.922181375324726 +illusion_0.75L,ppo,186,37.2,alpha,front,-1.572398066520691 +illusion_0.75L,ppo,186,37.2,alpha,upper,-0.5894902944564819 +illusion_0.75L,ppo,186,37.2,alpha,lower,2.0286159738898277 +illusion_0.75L,ppo,187,37.4,alpha,front,-1.4939321279525757 +illusion_0.75L,ppo,187,37.4,alpha,upper,-0.5260897874832153 +illusion_0.75L,ppo,187,37.4,alpha,lower,2.1466054022312164 +illusion_0.75L,ppo,188,37.6,alpha,front,-1.4141764640808105 +illusion_0.75L,ppo,188,37.6,alpha,upper,-0.502933144569397 +illusion_0.75L,ppo,188,37.6,alpha,lower,2.2583709359169006 +illusion_0.75L,ppo,189,37.8,alpha,front,-1.3286453485488892 +illusion_0.75L,ppo,189,37.8,alpha,upper,-0.5182203054428101 +illusion_0.75L,ppo,189,37.8,alpha,lower,2.3695455491542816 +illusion_0.75L,ppo,190,38.0,alpha,front,-1.2404568195343018 +illusion_0.75L,ppo,190,38.0,alpha,upper,-0.5651576519012451 +illusion_0.75L,ppo,190,38.0,alpha,lower,2.474905252456665 +illusion_0.75L,ppo,191,38.2,alpha,front,-1.1496531963348389 +illusion_0.75L,ppo,191,38.2,alpha,upper,-0.6387884616851807 +illusion_0.75L,ppo,191,38.2,alpha,lower,2.565573751926422 +illusion_0.75L,ppo,192,38.4,alpha,front,-1.0419921875 +illusion_0.75L,ppo,192,38.4,alpha,upper,-0.7311872243881226 +illusion_0.75L,ppo,192,38.4,alpha,lower,2.645076870918274 +illusion_0.75L,ppo,193,38.6,alpha,front,-0.9338511228561401 +illusion_0.75L,ppo,193,38.6,alpha,upper,-0.8380839824676514 +illusion_0.75L,ppo,193,38.6,alpha,lower,2.6866795420646667 +illusion_0.75L,ppo,194,38.8,alpha,front,-0.8335260152816771 +illusion_0.75L,ppo,194,38.8,alpha,upper,-0.9456462860107422 +illusion_0.75L,ppo,194,38.8,alpha,lower,2.6798255443573 +illusion_0.75L,ppo,195,39.0,alpha,front,-0.7660606503486633 +illusion_0.75L,ppo,195,39.0,alpha,upper,-1.021957516670227 +illusion_0.75L,ppo,195,39.0,alpha,lower,2.612914204597473 +illusion_0.75L,ppo,196,39.2,alpha,front,-0.7483648657798767 +illusion_0.75L,ppo,196,39.2,alpha,upper,-1.0543437600135803 +illusion_0.75L,ppo,196,39.2,alpha,lower,2.4826258420944214 +illusion_0.75L,ppo,197,39.4,alpha,front,-0.790752947330475 +illusion_0.75L,ppo,197,39.4,alpha,upper,-1.063585638999939 +illusion_0.75L,ppo,197,39.4,alpha,lower,2.300727069377899 +illusion_0.75L,ppo,198,39.6,alpha,front,-0.8693735599517821 +illusion_0.75L,ppo,198,39.6,alpha,upper,-1.1021185517311096 +illusion_0.75L,ppo,198,39.6,alpha,lower,2.1060316786170006 +illusion_0.75L,ppo,199,39.8,alpha,front,-0.9738485813140868 +illusion_0.75L,ppo,199,39.8,alpha,upper,-1.1886972188949585 +illusion_0.75L,ppo,199,39.8,alpha,lower,1.9191945642232893 +illusion_0.75L,ppo,200,40.0,alpha,front,-1.086396336555481 +illusion_0.75L,ppo,200,40.0,alpha,upper,-1.3297128081321716 +illusion_0.75L,ppo,200,40.0,alpha,lower,1.7430336475372314 +illusion_0.75L,ppo,201,40.2,alpha,front,-1.189557433128357 +illusion_0.75L,ppo,201,40.2,alpha,upper,-1.508607566356659 +illusion_0.75L,ppo,201,40.2,alpha,lower,1.5765059292316437 +illusion_0.75L,ppo,202,40.4,alpha,front,-1.2707557678222656 +illusion_0.75L,ppo,202,40.4,alpha,upper,-1.6949739158153534 +illusion_0.75L,ppo,202,40.4,alpha,lower,1.4257135391235352 +illusion_0.75L,ppo,203,40.6,alpha,front,-1.3239890336990356 +illusion_0.75L,ppo,203,40.6,alpha,upper,-1.8637539148330688 +illusion_0.75L,ppo,203,40.6,alpha,lower,1.3022469878196716 +illusion_0.75L,ppo,204,40.8,alpha,front,-1.337135910987854 +illusion_0.75L,ppo,204,40.8,alpha,upper,-2.0286926329135895 +illusion_0.75L,ppo,204,40.8,alpha,lower,1.2107638716697693 +illusion_0.75L,ppo,205,41.0,alpha,front,-1.3341914415359497 +illusion_0.75L,ppo,205,41.0,alpha,upper,-2.142944246530533 +illusion_0.75L,ppo,205,41.0,alpha,lower,1.1549378633499146 +illusion_0.75L,ppo,206,41.2,alpha,front,-1.2780485153198242 +illusion_0.75L,ppo,206,41.2,alpha,upper,-2.237472742795944 +illusion_0.75L,ppo,206,41.2,alpha,lower,1.1612319350242615 +illusion_0.75L,ppo,207,41.4,alpha,front,-1.2386068105697632 +illusion_0.75L,ppo,207,41.4,alpha,upper,-2.271288424730301 +illusion_0.75L,ppo,207,41.4,alpha,lower,1.1912773251533508 +illusion_0.75L,ppo,208,41.6,alpha,front,-1.2367690801620483 +illusion_0.75L,ppo,208,41.6,alpha,upper,-2.2052715718746185 +illusion_0.75L,ppo,208,41.6,alpha,lower,1.2451277375221252 +illusion_0.75L,ppo,209,41.8,alpha,front,-1.286764144897461 +illusion_0.75L,ppo,209,41.8,alpha,upper,-2.0254138112068176 +illusion_0.75L,ppo,209,41.8,alpha,lower,1.3122591376304626 +illusion_0.75L,ppo,210,42.0,alpha,front,-1.367616057395935 +illusion_0.75L,ppo,210,42.0,alpha,upper,-1.7587590366601944 +illusion_0.75L,ppo,210,42.0,alpha,lower,1.400393009185791 +illusion_0.75L,ppo,211,42.2,alpha,front,-1.4748029708862305 +illusion_0.75L,ppo,211,42.2,alpha,upper,-1.4557244777679443 +illusion_0.75L,ppo,211,42.2,alpha,lower,1.4919024109840393 +illusion_0.75L,ppo,212,42.4,alpha,front,-1.558783769607544 +illusion_0.75L,ppo,212,42.4,alpha,upper,-1.175129234790802 +illusion_0.75L,ppo,212,42.4,alpha,lower,1.5997083783149721 +illusion_0.75L,ppo,213,42.6,alpha,front,-1.596389651298523 +illusion_0.75L,ppo,213,42.6,alpha,upper,-0.9373446702957153 +illusion_0.75L,ppo,213,42.6,alpha,lower,1.7233907580375671 +illusion_0.75L,ppo,214,42.8,alpha,front,-1.610651135444641 +illusion_0.75L,ppo,214,42.8,alpha,upper,-0.7400821447372437 +illusion_0.75L,ppo,214,42.8,alpha,lower,1.8390437066555023 +illusion_0.75L,ppo,215,43.0,alpha,front,-1.57765531539917 +illusion_0.75L,ppo,215,43.0,alpha,upper,-0.6150747537612915 +illusion_0.75L,ppo,215,43.0,alpha,lower,1.956303644925356 +illusion_0.75L,ppo,216,43.2,alpha,front,-1.5246732234954834 +illusion_0.75L,ppo,216,43.2,alpha,upper,-0.5277577638626099 +illusion_0.75L,ppo,216,43.2,alpha,lower,2.0760253742337227 +illusion_0.75L,ppo,217,43.4,alpha,front,-1.448440432548523 +illusion_0.75L,ppo,217,43.4,alpha,upper,-0.5073939561843872 +illusion_0.75L,ppo,217,43.4,alpha,lower,2.193827897310257 +illusion_0.75L,ppo,218,43.6,alpha,front,-1.3718338012695312 +illusion_0.75L,ppo,218,43.6,alpha,upper,-0.5215859413146973 +illusion_0.75L,ppo,218,43.6,alpha,lower,2.3040718734264374 +illusion_0.75L,ppo,219,43.8,alpha,front,-1.2914762496948242 +illusion_0.75L,ppo,219,43.8,alpha,upper,-0.5659518241882324 +illusion_0.75L,ppo,219,43.8,alpha,lower,2.40935942530632 +illusion_0.75L,ppo,220,44.0,alpha,front,-1.2039921283721924 +illusion_0.75L,ppo,220,44.0,alpha,upper,-0.6421090364456177 +illusion_0.75L,ppo,220,44.0,alpha,lower,2.506969690322876 +illusion_0.75L,ppo,221,44.2,alpha,front,-1.096196174621582 +illusion_0.75L,ppo,221,44.2,alpha,upper,-0.7404252290725708 +illusion_0.75L,ppo,221,44.2,alpha,lower,2.5970135927200317 +illusion_0.75L,ppo,222,44.4,alpha,front,-0.9782895445823669 +illusion_0.75L,ppo,222,44.4,alpha,upper,-0.8456549644470216 +illusion_0.75L,ppo,222,44.4,alpha,lower,2.662216305732727 +illusion_0.75L,ppo,223,44.6,alpha,front,-0.8811141252517701 +illusion_0.75L,ppo,223,44.6,alpha,upper,-0.9320862293243408 +illusion_0.75L,ppo,223,44.6,alpha,lower,2.6715198159217834 +illusion_0.75L,ppo,224,44.8,alpha,front,-0.8121588230133058 +illusion_0.75L,ppo,224,44.8,alpha,upper,-0.9870151281356812 +illusion_0.75L,ppo,224,44.8,alpha,lower,2.616446793079376 +illusion_0.75L,ppo,225,45.0,alpha,front,-0.7865382432937622 +illusion_0.75L,ppo,225,45.0,alpha,upper,-0.9981198310852051 +illusion_0.75L,ppo,225,45.0,alpha,lower,2.4967170357704163 +illusion_0.75L,ppo,226,45.2,alpha,front,-0.7892333269119263 +illusion_0.75L,ppo,226,45.2,alpha,upper,-0.9981315135955809 +illusion_0.75L,ppo,226,45.2,alpha,lower,2.3415869176387787 +illusion_0.75L,ppo,227,45.4,alpha,front,-0.8457056283950807 +illusion_0.75L,ppo,227,45.4,alpha,upper,-1.0156893730163574 +illusion_0.75L,ppo,227,45.4,alpha,lower,2.1609631180763245 +illusion_0.75L,ppo,228,45.6,alpha,front,-0.9274576306343079 +illusion_0.75L,ppo,228,45.6,alpha,upper,-1.0943671464920044 +illusion_0.75L,ppo,228,45.6,alpha,lower,1.9886558055877686 +illusion_0.75L,ppo,229,45.8,alpha,front,-1.0335941314697266 +illusion_0.75L,ppo,229,45.8,alpha,upper,-1.2259082794189453 +illusion_0.75L,ppo,229,45.8,alpha,lower,1.821386843919754 +illusion_0.75L,ppo,230,46.0,alpha,front,-1.1385387182235718 +illusion_0.75L,ppo,230,46.0,alpha,upper,-1.4014517068862915 +illusion_0.75L,ppo,230,46.0,alpha,lower,1.6598868370056152 +illusion_0.75L,ppo,231,46.2,alpha,front,-1.2315760850906372 +illusion_0.75L,ppo,231,46.2,alpha,upper,-1.596912622451782 +illusion_0.75L,ppo,231,46.2,alpha,lower,1.503794401884079 +illusion_0.75L,ppo,232,46.4,alpha,front,-1.2787636518478394 +illusion_0.75L,ppo,232,46.4,alpha,upper,-1.7894603312015533 +illusion_0.75L,ppo,232,46.4,alpha,lower,1.381214201450348 +illusion_0.75L,ppo,233,46.6,alpha,front,-1.3302065134048462 +illusion_0.75L,ppo,233,46.6,alpha,upper,-1.9390918016433716 +illusion_0.75L,ppo,233,46.6,alpha,lower,1.263685703277588 +illusion_0.75L,ppo,234,46.8,alpha,front,-1.315824031829834 +illusion_0.75L,ppo,234,46.8,alpha,upper,-2.083252400159836 +illusion_0.75L,ppo,234,46.8,alpha,lower,1.2005890011787415 +illusion_0.75L,ppo,235,47.0,alpha,front,-1.2757598161697388 +illusion_0.75L,ppo,235,47.0,alpha,upper,-2.1667900383472443 +illusion_0.75L,ppo,235,47.0,alpha,lower,1.1890684962272644 +illusion_0.75L,ppo,236,47.2,alpha,front,-1.2757208347320557 +illusion_0.75L,ppo,236,47.2,alpha,upper,-2.2165684401988983 +illusion_0.75L,ppo,236,47.2,alpha,lower,1.1719082593917847 +illusion_0.75L,ppo,237,47.4,alpha,front,-1.2701784372329712 +illusion_0.75L,ppo,237,47.4,alpha,upper,-2.1863742768764496 +illusion_0.75L,ppo,237,47.4,alpha,lower,1.2190772891044617 +illusion_0.75L,ppo,238,47.6,alpha,front,-1.3138152360916138 +illusion_0.75L,ppo,238,47.6,alpha,upper,-2.047316700220108 +illusion_0.75L,ppo,238,47.6,alpha,lower,1.2892292141914368 +illusion_0.75L,ppo,239,47.8,alpha,front,-1.3973320722579956 +illusion_0.75L,ppo,239,47.8,alpha,upper,-1.8151704668998718 +illusion_0.75L,ppo,239,47.8,alpha,lower,1.3784028887748718 +illusion_0.75L,ppo,240,48.0,alpha,front,-1.5007905960083008 +illusion_0.75L,ppo,240,48.0,alpha,upper,-1.546358346939087 +illusion_0.75L,ppo,240,48.0,alpha,lower,1.475529432296753 +illusion_0.75L,ppo,241,48.2,alpha,front,-1.5994956493377688 +illusion_0.75L,ppo,241,48.2,alpha,upper,-1.287021279335022 +illusion_0.75L,ppo,241,48.2,alpha,lower,1.5745696723461151 +illusion_0.75L,ppo,242,48.4,alpha,front,-1.650067329406738 +illusion_0.75L,ppo,242,48.4,alpha,upper,-1.064178466796875 +illusion_0.75L,ppo,242,48.4,alpha,lower,1.6907839179039004 +illusion_0.75L,ppo,243,48.6,alpha,front,-1.6598944664001465 +illusion_0.75L,ppo,243,48.6,alpha,upper,-0.8870843648910522 +illusion_0.75L,ppo,243,48.6,alpha,lower,1.8040986061096191 +illusion_0.75L,ppo,244,48.8,alpha,front,-1.634490966796875 +illusion_0.75L,ppo,244,48.8,alpha,upper,-0.7522648572921753 +illusion_0.75L,ppo,244,48.8,alpha,lower,1.9124796837568285 +illusion_0.75L,ppo,245,49.0,alpha,front,-1.5986407995223997 +illusion_0.75L,ppo,245,49.0,alpha,upper,-0.6554552316665649 +illusion_0.75L,ppo,245,49.0,alpha,lower,2.0070251896977425 +illusion_0.75L,ppo,246,49.2,alpha,front,-1.5361692905426025 +illusion_0.75L,ppo,246,49.2,alpha,upper,-0.6035987138748169 +illusion_0.75L,ppo,246,49.2,alpha,lower,2.1075081154704094 +illusion_0.75L,ppo,247,49.4,alpha,front,-1.4720165729522705 +illusion_0.75L,ppo,247,49.4,alpha,upper,-0.5692161321640015 +illusion_0.75L,ppo,247,49.4,alpha,lower,2.2098982632160187 +illusion_0.75L,ppo,248,49.6,alpha,front,-1.386026382446289 +illusion_0.75L,ppo,248,49.6,alpha,upper,-0.5793004035949707 +illusion_0.75L,ppo,248,49.6,alpha,lower,2.3220148980617523 +illusion_0.75L,ppo,249,49.8,alpha,front,-1.2902534008026123 +illusion_0.75L,ppo,249,49.8,alpha,upper,-0.6228108406066895 +illusion_0.75L,ppo,249,49.8,alpha,lower,2.4322874546051025 +illusion_0.75L,ppo,250,50.0,alpha,front,-1.1750717163085938 +illusion_0.75L,ppo,250,50.0,alpha,upper,-0.696524977684021 +illusion_0.75L,ppo,250,50.0,alpha,lower,2.539556324481964 +illusion_0.75L,ppo,251,50.2,alpha,front,-1.0576101541519165 +illusion_0.75L,ppo,251,50.2,alpha,upper,-0.7880576848983766 +illusion_0.75L,ppo,251,50.2,alpha,lower,2.616328716278076 +illusion_0.75L,ppo,252,50.4,alpha,front,-0.9441137909889221 +illusion_0.75L,ppo,252,50.4,alpha,upper,-0.8801724910736084 +illusion_0.75L,ppo,252,50.4,alpha,lower,2.650373935699463 +illusion_0.75L,ppo,253,50.6,alpha,front,-0.8454777002334595 +illusion_0.75L,ppo,253,50.6,alpha,upper,-0.9581140279769899 +illusion_0.75L,ppo,253,50.6,alpha,lower,2.6324374675750732 +illusion_0.75L,ppo,254,50.8,alpha,front,-0.7878599166870116 +illusion_0.75L,ppo,254,50.8,alpha,upper,-0.9915729761123657 +illusion_0.75L,ppo,254,50.8,alpha,lower,2.5530959367752075 +illusion_0.75L,ppo,255,51.0,alpha,front,-0.7784587144851685 +illusion_0.75L,ppo,255,51.0,alpha,upper,-0.9964208602905272 +illusion_0.75L,ppo,255,51.0,alpha,lower,2.417473793029785 +illusion_0.75L,ppo,256,51.2,alpha,front,-0.8040362000465394 +illusion_0.75L,ppo,256,51.2,alpha,upper,-1.0016725063323975 +illusion_0.75L,ppo,256,51.2,alpha,lower,2.262830525636673 +illusion_0.75L,ppo,257,51.4,alpha,front,-0.8802464008331299 +illusion_0.75L,ppo,257,51.4,alpha,upper,-1.0415898561477661 +illusion_0.75L,ppo,257,51.4,alpha,lower,2.094281740486622 +illusion_0.75L,ppo,258,51.6,alpha,front,-0.9789851903915404 +illusion_0.75L,ppo,258,51.6,alpha,upper,-1.139001727104187 +illusion_0.75L,ppo,258,51.6,alpha,lower,1.9326852560043337 +illusion_0.75L,ppo,259,51.8,alpha,front,-1.0741000175476074 +illusion_0.75L,ppo,259,51.8,alpha,upper,-1.2980259656906128 +illusion_0.75L,ppo,259,51.8,alpha,lower,1.7803133130073547 +illusion_0.75L,ppo,260,52.0,alpha,front,-1.1627200841903687 +illusion_0.75L,ppo,260,52.0,alpha,upper,-1.4827589392662048 +illusion_0.75L,ppo,260,52.0,alpha,lower,1.6312048137187958 +illusion_0.75L,ppo,261,52.2,alpha,front,-1.2295951843261719 +illusion_0.75L,ppo,261,52.2,alpha,upper,-1.680204302072525 +illusion_0.75L,ppo,261,52.2,alpha,lower,1.4905365705490112 +illusion_0.75L,ppo,262,52.4,alpha,front,-1.2730402946472168 +illusion_0.75L,ppo,262,52.4,alpha,upper,-1.8549681305885315 +illusion_0.75L,ppo,262,52.4,alpha,lower,1.3700115084648132 +illusion_0.75L,ppo,263,52.6,alpha,front,-1.2901360988616943 +illusion_0.75L,ppo,263,52.6,alpha,upper,-2.0063193440437317 +illusion_0.75L,ppo,263,52.6,alpha,lower,1.2723739743232727 +illusion_0.75L,ppo,264,52.8,alpha,front,-1.2811529636383057 +illusion_0.75L,ppo,264,52.8,alpha,upper,-2.1254027783870697 +illusion_0.75L,ppo,264,52.8,alpha,lower,1.2105337381362915 +illusion_0.75L,ppo,265,53.0,alpha,front,-1.240352749824524 +illusion_0.75L,ppo,265,53.0,alpha,upper,-2.218938797712326 +illusion_0.75L,ppo,265,53.0,alpha,lower,1.1994820833206177 +illusion_0.75L,ppo,266,53.2,alpha,front,-1.214198112487793 +illusion_0.75L,ppo,266,53.2,alpha,upper,-2.2418632805347443 +illusion_0.75L,ppo,266,53.2,alpha,lower,1.2250535488128662 +illusion_0.75L,ppo,267,53.4,alpha,front,-1.2446014881134033 +illusion_0.75L,ppo,267,53.4,alpha,upper,-2.149117261171341 +illusion_0.75L,ppo,267,53.4,alpha,lower,1.2698854804039001 +illusion_0.75L,ppo,268,53.6,alpha,front,-1.3171026706695557 +illusion_0.75L,ppo,268,53.6,alpha,upper,-1.9527217745780947 +illusion_0.75L,ppo,268,53.6,alpha,lower,1.334913730621338 +illusion_0.75L,ppo,269,53.8,alpha,front,-1.434988021850586 +illusion_0.75L,ppo,269,53.8,alpha,upper,-1.684251695871353 +illusion_0.75L,ppo,269,53.8,alpha,lower,1.4055036306381226 +illusion_0.75L,ppo,270,54.0,alpha,front,-1.537176489830017 +illusion_0.75L,ppo,270,54.0,alpha,upper,-1.4193652272224426 +illusion_0.75L,ppo,270,54.0,alpha,lower,1.5013920664787292 +illusion_0.75L,ppo,271,54.2,alpha,front,-1.6035476922988894 +illusion_0.75L,ppo,271,54.2,alpha,upper,-1.1776884198188782 +illusion_0.75L,ppo,271,54.2,alpha,lower,1.6212356984615328 +illusion_0.75L,ppo,272,54.4,alpha,front,-1.6516718864440918 +illusion_0.75L,ppo,272,54.4,alpha,upper,-0.9848531484603882 +illusion_0.75L,ppo,272,54.4,alpha,lower,1.7239317297935486 +illusion_0.75L,ppo,273,54.6,alpha,front,-1.6501080989837646 +illusion_0.75L,ppo,273,54.6,alpha,upper,-0.8341734409332277 +illusion_0.75L,ppo,273,54.6,alpha,lower,1.834262698888779 +illusion_0.75L,ppo,274,54.8,alpha,front,-1.6235032081604004 +illusion_0.75L,ppo,274,54.8,alpha,upper,-0.7210874557495117 +illusion_0.75L,ppo,274,54.8,alpha,lower,1.9369104579091072 +illusion_0.75L,ppo,275,55.0,alpha,front,-1.5779807567596436 +illusion_0.75L,ppo,275,55.0,alpha,upper,-0.6534783840179443 +illusion_0.75L,ppo,275,55.0,alpha,lower,2.033479541540146 +illusion_0.75L,ppo,276,55.2,alpha,front,-1.5237243175506592 +illusion_0.75L,ppo,276,55.2,alpha,upper,-0.6165704727172852 +illusion_0.75L,ppo,276,55.2,alpha,lower,2.129449784755707 +illusion_0.75L,ppo,277,55.4,alpha,front,-1.4482028484344482 +illusion_0.75L,ppo,277,55.4,alpha,upper,-0.6131099462509155 +illusion_0.75L,ppo,277,55.4,alpha,lower,2.237407475709915 +illusion_0.75L,ppo,278,55.6,alpha,front,-1.3648693561553955 +illusion_0.75L,ppo,278,55.6,alpha,upper,-0.6365090608596802 +illusion_0.75L,ppo,278,55.6,alpha,lower,2.345282733440399 +illusion_0.75L,ppo,279,55.8,alpha,front,-1.2729594707489014 +illusion_0.75L,ppo,279,55.8,alpha,upper,-0.6799640655517578 +illusion_0.75L,ppo,279,55.8,alpha,lower,2.447966992855072 +illusion_0.75L,ppo,280,56.0,alpha,front,-1.1545709371566772 +illusion_0.75L,ppo,280,56.0,alpha,upper,-0.761101484298706 +illusion_0.75L,ppo,280,56.0,alpha,lower,2.539463222026825 +illusion_0.75L,ppo,281,56.2,alpha,front,-1.0341764688491821 +illusion_0.75L,ppo,281,56.2,alpha,upper,-0.8336002826690675 +illusion_0.75L,ppo,281,56.2,alpha,lower,2.6049631237983704 +illusion_0.75L,ppo,282,56.4,alpha,front,-0.9155853390693665 +illusion_0.75L,ppo,282,56.4,alpha,upper,-0.9214452505111695 +illusion_0.75L,ppo,282,56.4,alpha,lower,2.6204323172569275 +illusion_0.75L,ppo,283,56.6,alpha,front,-0.8259490132331848 +illusion_0.75L,ppo,283,56.6,alpha,upper,-0.9650510549545288 +illusion_0.75L,ppo,283,56.6,alpha,lower,2.5846696496009827 +illusion_0.75L,ppo,284,56.8,alpha,front,-0.7879955172538756 +illusion_0.75L,ppo,284,56.8,alpha,upper,-0.9692450761795044 +illusion_0.75L,ppo,284,56.8,alpha,lower,2.4824180006980896 +illusion_0.75L,ppo,285,57.0,alpha,front,-0.7899251580238342 +illusion_0.75L,ppo,285,57.0,alpha,upper,-0.9657101631164551 +illusion_0.75L,ppo,285,57.0,alpha,lower,2.3414632976055145 +illusion_0.75L,ppo,286,57.2,alpha,front,-0.843646764755249 +illusion_0.75L,ppo,286,57.2,alpha,upper,-0.9827214479446412 +illusion_0.75L,ppo,286,57.2,alpha,lower,2.179026246070862 +illusion_0.75L,ppo,287,57.4,alpha,front,-0.9211424589157104 +illusion_0.75L,ppo,287,57.4,alpha,upper,-1.0524473190307617 +illusion_0.75L,ppo,287,57.4,alpha,lower,2.0303243324160576 +illusion_0.75L,ppo,288,57.6,alpha,front,-1.0088802576065063 +illusion_0.75L,ppo,288,57.6,alpha,upper,-1.1848522424697876 +illusion_0.75L,ppo,288,57.6,alpha,lower,1.8893155157566068 +illusion_0.75L,ppo,289,57.8,alpha,front,-1.0995174646377563 +illusion_0.75L,ppo,289,57.8,alpha,upper,-1.3583295941352844 +illusion_0.75L,ppo,289,57.8,alpha,lower,1.7451243698596957 +illusion_0.75L,ppo,290,58.0,alpha,front,-1.177694320678711 +illusion_0.75L,ppo,290,58.0,alpha,upper,-1.5484789311885834 +illusion_0.75L,ppo,290,58.0,alpha,lower,1.6008403301239014 +illusion_0.75L,ppo,291,58.2,alpha,front,-1.2391018867492676 +illusion_0.75L,ppo,291,58.2,alpha,upper,-1.7300911843776703 +illusion_0.75L,ppo,291,58.2,alpha,lower,1.4628305435180664 +illusion_0.75L,ppo,292,58.4,alpha,front,-1.274183750152588 +illusion_0.75L,ppo,292,58.4,alpha,upper,-1.8899820148944855 +illusion_0.75L,ppo,292,58.4,alpha,lower,1.347220003604889 +illusion_0.75L,ppo,293,58.6,alpha,front,-1.2826002836227417 +illusion_0.75L,ppo,293,58.6,alpha,upper,-2.021296352148056 +illusion_0.75L,ppo,293,58.6,alpha,lower,1.2625689506530762 +illusion_0.75L,ppo,294,58.8,alpha,front,-1.2540326118469238 +illusion_0.75L,ppo,294,58.8,alpha,upper,-2.13871231675148 +illusion_0.75L,ppo,294,58.8,alpha,lower,1.2223461866378784 +illusion_0.75L,ppo,295,59.0,alpha,front,-1.2155404090881348 +illusion_0.75L,ppo,295,59.0,alpha,upper,-2.2102576792240143 +illusion_0.75L,ppo,295,59.0,alpha,lower,1.227782428264618 +illusion_0.75L,ppo,296,59.2,alpha,front,-1.2198803424835205 +illusion_0.75L,ppo,296,59.2,alpha,upper,-2.1932707130908966 +illusion_0.75L,ppo,296,59.2,alpha,lower,1.2540282011032104 +illusion_0.75L,ppo,297,59.4,alpha,front,-1.275782823562622 +illusion_0.75L,ppo,297,59.4,alpha,upper,-2.0611120760440826 +illusion_0.75L,ppo,297,59.4,alpha,lower,1.3011894822120667 +illusion_0.75L,ppo,298,59.6,alpha,front,-1.38032066822052 +illusion_0.75L,ppo,298,59.6,alpha,upper,-1.8297203183174133 +illusion_0.75L,ppo,298,59.6,alpha,lower,1.3648537993431091 +illusion_0.75L,ppo,299,59.8,alpha,front,-1.4923076629638672 +illusion_0.75L,ppo,299,59.8,alpha,upper,-1.5747709870338438 +illusion_0.75L,ppo,299,59.8,alpha,lower,1.447487473487854 +illusion_0.75L,ppo,300,60.0,alpha,front,-1.582520842552185 +illusion_0.75L,ppo,300,60.0,alpha,upper,-1.3333628177642822 +illusion_0.75L,ppo,300,60.0,alpha,lower,1.5515776872634888 +illusion_0.75L,ppo,301,60.2,alpha,front,-1.6495178937911987 +illusion_0.75L,ppo,301,60.2,alpha,upper,-1.1207308769226074 +illusion_0.75L,ppo,301,60.2,alpha,lower,1.656024843454361 +illusion_0.75L,ppo,302,60.4,alpha,front,-1.6618511676788328 +illusion_0.75L,ppo,302,60.4,alpha,upper,-0.9569023847579957 +illusion_0.75L,ppo,302,60.4,alpha,lower,1.7677042782306671 +illusion_0.75L,ppo,303,60.6,alpha,front,-1.6548807621002195 +illusion_0.75L,ppo,303,60.6,alpha,upper,-0.8229066133499146 +illusion_0.75L,ppo,303,60.6,alpha,lower,1.8658288419246674 +illusion_0.75L,ppo,304,60.8,alpha,front,-1.6424863338470457 +illusion_0.75L,ppo,304,60.8,alpha,upper,-0.7331650257110596 +illusion_0.75L,ppo,304,60.8,alpha,lower,1.9406924471259117 +illusion_0.75L,ppo,305,61.0,alpha,front,-1.5799484252929685 +illusion_0.75L,ppo,305,61.0,alpha,upper,-0.6750719547271729 +illusion_0.75L,ppo,305,61.0,alpha,lower,2.0497668460011482 +illusion_0.75L,ppo,306,61.2,alpha,front,-1.518470287322998 +illusion_0.75L,ppo,306,61.2,alpha,upper,-0.643613338470459 +illusion_0.75L,ppo,306,61.2,alpha,lower,2.151291161775589 +illusion_0.75L,ppo,307,61.4,alpha,front,-1.4399988651275635 +illusion_0.75L,ppo,307,61.4,alpha,upper,-0.6452786922454834 +illusion_0.75L,ppo,307,61.4,alpha,lower,2.258583724498749 +illusion_0.75L,ppo,308,61.6,alpha,front,-1.355407953262329 +illusion_0.75L,ppo,308,61.6,alpha,upper,-0.6687332391738892 +illusion_0.75L,ppo,308,61.6,alpha,lower,2.3623478412628174 +illusion_0.75L,ppo,309,61.8,alpha,front,-1.2498871088027954 +illusion_0.75L,ppo,309,61.8,alpha,upper,-0.717132568359375 +illusion_0.75L,ppo,309,61.8,alpha,lower,2.4659958481788635 +illusion_0.75L,ppo,310,62.0,alpha,front,-1.1318693161010742 +illusion_0.75L,ppo,310,62.0,alpha,upper,-0.7894891500473021 +illusion_0.75L,ppo,310,62.0,alpha,lower,2.547992169857025 +illusion_0.75L,ppo,311,62.2,alpha,front,-1.0046327114105225 +illusion_0.75L,ppo,311,62.2,alpha,upper,-0.870168924331665 +illusion_0.75L,ppo,311,62.2,alpha,lower,2.598521053791046 +illusion_0.75L,ppo,312,62.4,alpha,front,-0.8942569494247438 +illusion_0.75L,ppo,312,62.4,alpha,upper,-0.9334976673126222 +illusion_0.75L,ppo,312,62.4,alpha,lower,2.5975365042686462 +illusion_0.75L,ppo,313,62.6,alpha,front,-0.8171977400779724 +illusion_0.75L,ppo,313,62.6,alpha,upper,-0.9627491235733032 +illusion_0.75L,ppo,313,62.6,alpha,lower,2.538055181503296 +illusion_0.75L,ppo,314,62.8,alpha,front,-0.7994477152824402 +illusion_0.75L,ppo,314,62.8,alpha,upper,-0.95546817779541 +illusion_0.75L,ppo,314,62.8,alpha,lower,2.416108399629593 +illusion_0.75L,ppo,315,63.0,alpha,front,-0.8117124438285828 +illusion_0.75L,ppo,315,63.0,alpha,upper,-0.9504926204681396 +illusion_0.75L,ppo,315,63.0,alpha,lower,2.279624789953232 +illusion_0.75L,ppo,316,63.2,alpha,front,-0.8615664243698121 +illusion_0.75L,ppo,316,63.2,alpha,upper,-0.9828076362609863 +illusion_0.75L,ppo,316,63.2,alpha,lower,2.1427924036979675 +illusion_0.75L,ppo,317,63.4,alpha,front,-0.9431688189506531 +illusion_0.75L,ppo,317,63.4,alpha,upper,-1.0766306519508362 +illusion_0.75L,ppo,317,63.4,alpha,lower,2.004881262779236 +illusion_0.75L,ppo,318,63.6,alpha,front,-1.0275160074234009 +illusion_0.75L,ppo,318,63.6,alpha,upper,-1.226680874824524 +illusion_0.75L,ppo,318,63.6,alpha,lower,1.8704752326011655 +illusion_0.75L,ppo,319,63.8,alpha,front,-1.114354133605957 +illusion_0.75L,ppo,319,63.8,alpha,upper,-1.4087865352630615 +illusion_0.75L,ppo,319,63.8,alpha,lower,1.7255837619304655 +illusion_0.75L,ppo,320,64.0,alpha,front,-1.186814308166504 +illusion_0.75L,ppo,320,64.0,alpha,upper,-1.5996856689453127 +illusion_0.75L,ppo,320,64.0,alpha,lower,1.581906318664551 +illusion_0.75L,ppo,321,64.2,alpha,front,-1.2462209463119507 +illusion_0.75L,ppo,321,64.2,alpha,upper,-1.7738121598958967 +illusion_0.75L,ppo,321,64.2,alpha,lower,1.4445418119430542 +illusion_0.75L,ppo,322,64.4,alpha,front,-1.2605922222137451 +illusion_0.75L,ppo,322,64.4,alpha,upper,-1.9303051531314852 +illusion_0.75L,ppo,322,64.4,alpha,lower,1.3451236486434937 +illusion_0.75L,ppo,323,64.6,alpha,front,-1.2604022026062012 +illusion_0.75L,ppo,323,64.6,alpha,upper,-2.0612185895442963 +illusion_0.75L,ppo,323,64.6,alpha,lower,1.2655312418937683 +illusion_0.75L,ppo,324,64.8,alpha,front,-1.2330052852630615 +illusion_0.75L,ppo,324,64.8,alpha,upper,-2.1588626205921173 +illusion_0.75L,ppo,324,64.8,alpha,lower,1.2314897179603577 +illusion_0.75L,ppo,325,65.0,alpha,front,-1.210057020187378 +illusion_0.75L,ppo,325,65.0,alpha,upper,-2.210716813802719 +illusion_0.75L,ppo,325,65.0,alpha,lower,1.2331767678260803 +illusion_0.75L,ppo,326,65.2,alpha,front,-1.2166697978973389 +illusion_0.75L,ppo,326,65.2,alpha,upper,-2.1614652574062347 +illusion_0.75L,ppo,326,65.2,alpha,lower,1.2745023369789124 +illusion_0.75L,ppo,327,65.4,alpha,front,-1.2976410388946533 +illusion_0.75L,ppo,327,65.4,alpha,upper,-1.9865918159484863 +illusion_0.75L,ppo,327,65.4,alpha,lower,1.3212296962738037 +illusion_0.75L,ppo,328,65.6,alpha,front,-1.394361972808838 +illusion_0.75L,ppo,328,65.6,alpha,upper,-1.759532392024994 +illusion_0.75L,ppo,328,65.6,alpha,lower,1.3929884433746338 +illusion_0.75L,ppo,329,65.8,alpha,front,-1.5096845626831055 +illusion_0.75L,ppo,329,65.8,alpha,upper,-1.4958699345588684 +illusion_0.75L,ppo,329,65.8,alpha,lower,1.4788906574249268 +illusion_0.75L,ppo,330,66.0,alpha,front,-1.595433712005615 +illusion_0.75L,ppo,330,66.0,alpha,upper,-1.2634093761444092 +illusion_0.75L,ppo,330,66.0,alpha,lower,1.5805947482585905 +illusion_0.75L,ppo,331,66.2,alpha,front,-1.6592055559158325 +illusion_0.75L,ppo,331,66.2,alpha,upper,-1.061187982559204 +illusion_0.75L,ppo,331,66.2,alpha,lower,1.6794585287570953 +illusion_0.75L,ppo,332,66.4,alpha,front,-1.6761881113052368 +illusion_0.75L,ppo,332,66.4,alpha,upper,-0.9254995584487915 +illusion_0.75L,ppo,332,66.4,alpha,lower,1.7724156975746155 +illusion_0.75L,ppo,333,66.6,alpha,front,-1.6600942611694334 +illusion_0.75L,ppo,333,66.6,alpha,upper,-0.8077352046966553 +illusion_0.75L,ppo,333,66.6,alpha,lower,1.8723379373550415 +illusion_0.75L,ppo,334,66.8,alpha,front,-1.6279761791229248 +illusion_0.75L,ppo,334,66.8,alpha,upper,-0.719738245010376 +illusion_0.75L,ppo,334,66.8,alpha,lower,1.9671940207481384 +illusion_0.75L,ppo,335,67.0,alpha,front,-1.577118635177612 +illusion_0.75L,ppo,335,67.0,alpha,upper,-0.677717924118042 +illusion_0.75L,ppo,335,67.0,alpha,lower,2.0588855519890785 +illusion_0.75L,ppo,336,67.2,alpha,front,-1.4926773309707642 +illusion_0.75L,ppo,336,67.2,alpha,upper,-0.6630158424377441 +illusion_0.75L,ppo,336,67.2,alpha,lower,2.1739368438720703 +illusion_0.75L,ppo,337,67.4,alpha,front,-1.4386662244796753 +illusion_0.75L,ppo,337,67.4,alpha,upper,-0.6582063436508179 +illusion_0.75L,ppo,337,67.4,alpha,lower,2.26274436712265 +illusion_0.75L,ppo,338,67.6,alpha,front,-1.3190287351608276 +illusion_0.75L,ppo,338,67.6,alpha,upper,-0.7069782018661499 +illusion_0.75L,ppo,338,67.6,alpha,lower,2.38712877035141 +illusion_0.75L,ppo,339,67.8,alpha,front,-1.2315775156021118 +illusion_0.75L,ppo,339,67.8,alpha,upper,-0.7499203681945801 +illusion_0.75L,ppo,339,67.8,alpha,lower,2.4736592769622803 +illusion_0.75L,ppo,340,68.0,alpha,front,-1.0993117094039917 +illusion_0.75L,ppo,340,68.0,alpha,upper,-0.8209898471832274 +illusion_0.75L,ppo,340,68.0,alpha,lower,2.5590858459472656 +illusion_0.75L,ppo,341,68.2,alpha,front,-0.9859098196029663 +illusion_0.75L,ppo,341,68.2,alpha,upper,-0.8940025568008422 +illusion_0.75L,ppo,341,68.2,alpha,lower,2.5866310000419617 +illusion_0.75L,ppo,342,68.4,alpha,front,-0.8822066783905029 +illusion_0.75L,ppo,342,68.4,alpha,upper,-0.9498263597488404 +illusion_0.75L,ppo,342,68.4,alpha,lower,2.5687580704689026 +illusion_0.75L,ppo,343,68.6,alpha,front,-0.8229589462280273 +illusion_0.75L,ppo,343,68.6,alpha,upper,-0.956798791885376 +illusion_0.75L,ppo,343,68.6,alpha,lower,2.492630898952484 +illusion_0.75L,ppo,344,68.8,alpha,front,-0.7974380850791931 +illusion_0.75L,ppo,344,68.8,alpha,upper,-0.9427603483200073 +illusion_0.75L,ppo,344,68.8,alpha,lower,2.3805313110351562 +illusion_0.75L,ppo,345,69.0,alpha,front,-0.8289140462875366 +illusion_0.75L,ppo,345,69.0,alpha,upper,-0.9466983079910278 +illusion_0.75L,ppo,345,69.0,alpha,lower,2.235164761543274 +illusion_0.75L,ppo,346,69.2,alpha,front,-0.8955547213554382 +illusion_0.75L,ppo,346,69.2,alpha,upper,-0.9869933128356934 +illusion_0.75L,ppo,346,69.2,alpha,lower,2.0951702669262886 +illusion_0.75L,ppo,347,69.4,alpha,front,-0.9745478630065918 +illusion_0.75L,ppo,347,69.4,alpha,upper,-1.0886597633361816 +illusion_0.75L,ppo,347,69.4,alpha,lower,1.9669259563088417 +illusion_0.75L,ppo,348,69.6,alpha,front,-1.052808165550232 +illusion_0.75L,ppo,348,69.6,alpha,upper,-1.2517457008361816 +illusion_0.75L,ppo,348,69.6,alpha,lower,1.837503716349602 +illusion_0.75L,ppo,349,69.8,alpha,front,-1.1256495714187622 +illusion_0.75L,ppo,349,69.8,alpha,upper,-1.441339373588562 +illusion_0.75L,ppo,349,69.8,alpha,lower,1.703645080327988 +illusion_0.75L,ppo,350,70.0,alpha,front,-1.1875483989715576 +illusion_0.75L,ppo,350,70.0,alpha,upper,-1.6321610808372498 +illusion_0.75L,ppo,350,70.0,alpha,lower,1.56910040974617 +illusion_0.75L,ppo,351,70.2,alpha,front,-1.2361055612564087 +illusion_0.75L,ppo,351,70.2,alpha,upper,-1.8055049777030947 +illusion_0.75L,ppo,351,70.2,alpha,lower,1.4399903416633606 +illusion_0.75L,ppo,352,70.4,alpha,front,-1.2594349384307861 +illusion_0.75L,ppo,352,70.4,alpha,upper,-1.953589677810669 +illusion_0.75L,ppo,352,70.4,alpha,lower,1.3326035737991333 +illusion_0.75L,ppo,353,70.6,alpha,front,-1.2539194822311401 +illusion_0.75L,ppo,353,70.6,alpha,upper,-2.074555069208145 +illusion_0.75L,ppo,353,70.6,alpha,lower,1.2615531086921692 +illusion_0.75L,ppo,354,70.8,alpha,front,-1.2248458862304688 +illusion_0.75L,ppo,354,70.8,alpha,upper,-2.1681730449199677 +illusion_0.75L,ppo,354,70.8,alpha,lower,1.23463636636734 +illusion_0.75L,ppo,355,71.0,alpha,front,-1.209702491760254 +illusion_0.75L,ppo,355,71.0,alpha,upper,-2.204133480787277 +illusion_0.75L,ppo,355,71.0,alpha,lower,1.2422555088996887 +illusion_0.75L,ppo,356,71.2,alpha,front,-1.2276182174682617 +illusion_0.75L,ppo,356,71.2,alpha,upper,-2.124783545732498 +illusion_0.75L,ppo,356,71.2,alpha,lower,1.2907963395118713 +illusion_0.75L,ppo,357,71.4,alpha,front,-1.3141087293624878 +illusion_0.75L,ppo,357,71.4,alpha,upper,-1.927968770265579 +illusion_0.75L,ppo,357,71.4,alpha,lower,1.3433642983436584 +illusion_0.75L,ppo,358,71.6,alpha,front,-1.430741310119629 +illusion_0.75L,ppo,358,71.6,alpha,upper,-1.678795546293259 +illusion_0.75L,ppo,358,71.6,alpha,lower,1.4084327816963196 +illusion_0.75L,ppo,359,71.8,alpha,front,-1.5419416427612305 +illusion_0.75L,ppo,359,71.8,alpha,upper,-1.4197582006454468 +illusion_0.75L,ppo,359,71.8,alpha,lower,1.498659908771515 +illusion_0.75L,ppo,360,72.0,alpha,front,-1.617948055267334 +illusion_0.75L,ppo,360,72.0,alpha,upper,-1.2092359066009521 +illusion_0.75L,ppo,360,72.0,alpha,lower,1.6017898619174957 +illusion_0.75L,ppo,361,72.2,alpha,front,-1.661996364593506 +illusion_0.75L,ppo,361,72.2,alpha,upper,-1.0361851453781128 +illusion_0.75L,ppo,361,72.2,alpha,lower,1.7053467333316803 +illusion_0.75L,ppo,362,72.4,alpha,front,-1.6694930791854858 +illusion_0.75L,ppo,362,72.4,alpha,upper,-0.8985413312911987 +illusion_0.75L,ppo,362,72.4,alpha,lower,1.8060413748025894 +illusion_0.75L,ppo,363,72.6,alpha,front,-1.655938982963562 +illusion_0.75L,ppo,363,72.6,alpha,upper,-0.8136942386627196 +illusion_0.75L,ppo,363,72.6,alpha,lower,1.8864252865314484 +illusion_0.75L,ppo,364,72.8,alpha,front,-1.6206157207489014 +illusion_0.75L,ppo,364,72.8,alpha,upper,-0.738721489906311 +illusion_0.75L,ppo,364,72.8,alpha,lower,1.9778962805867195 +illusion_0.75L,ppo,365,73.0,alpha,front,-1.5740008354187012 +illusion_0.75L,ppo,365,73.0,alpha,upper,-0.6956846714019775 +illusion_0.75L,ppo,365,73.0,alpha,lower,2.0669383481144905 +illusion_0.75L,ppo,366,73.2,alpha,front,-1.512352705001831 +illusion_0.75L,ppo,366,73.2,alpha,upper,-0.6725465059280396 +illusion_0.75L,ppo,366,73.2,alpha,lower,2.166729599237442 +illusion_0.75L,ppo,367,73.4,alpha,front,-1.4222142696380615 +illusion_0.75L,ppo,367,73.4,alpha,upper,-0.6862912178039551 +illusion_0.75L,ppo,367,73.4,alpha,lower,2.279962509870529 +illusion_0.75L,ppo,368,73.6,alpha,front,-1.3355293273925781 +illusion_0.75L,ppo,368,73.6,alpha,upper,-0.7135814428329468 +illusion_0.75L,ppo,368,73.6,alpha,lower,2.379111498594284 +illusion_0.75L,ppo,369,73.8,alpha,front,-1.2098758220672607 +illusion_0.75L,ppo,369,73.8,alpha,upper,-0.767175555229187 +illusion_0.75L,ppo,369,73.8,alpha,lower,2.4849641919136047 +illusion_0.75L,ppo,370,74.0,alpha,front,-1.0944124460220337 +illusion_0.75L,ppo,370,74.0,alpha,upper,-0.8275008201599121 +illusion_0.75L,ppo,370,74.0,alpha,lower,2.549218475818634 +illusion_0.75L,ppo,371,74.2,alpha,front,-0.966334640979767 +illusion_0.75L,ppo,371,74.2,alpha,upper,-0.9033347368240358 +illusion_0.75L,ppo,371,74.2,alpha,lower,2.578866183757782 +illusion_0.75L,ppo,372,74.4,alpha,front,-0.8624455332756042 +illusion_0.75L,ppo,372,74.4,alpha,upper,-0.9525184631347657 +illusion_0.75L,ppo,372,74.4,alpha,lower,2.5566409826278687 +illusion_0.75L,ppo,373,74.6,alpha,front,-0.8042964339256286 +illusion_0.75L,ppo,373,74.6,alpha,upper,-0.9617538452148436 +illusion_0.75L,ppo,373,74.6,alpha,lower,2.475667655467987 +illusion_0.75L,ppo,374,74.8,alpha,front,-0.8042668104171754 +illusion_0.75L,ppo,374,74.8,alpha,upper,-0.9465701580047607 +illusion_0.75L,ppo,374,74.8,alpha,lower,2.344570219516754 +illusion_0.75L,ppo,375,75.0,alpha,front,-0.8414143323898315 +illusion_0.75L,ppo,375,75.0,alpha,upper,-0.949057936668396 +illusion_0.75L,ppo,375,75.0,alpha,lower,2.2058675587177277 +illusion_0.75L,ppo,376,75.2,alpha,front,-0.9183784127235414 +illusion_0.75L,ppo,376,75.2,alpha,upper,-1.0014092922210693 +illusion_0.75L,ppo,376,75.2,alpha,lower,2.065575249493122 +illusion_0.75L,ppo,377,75.4,alpha,front,-0.9879126548767089 +illusion_0.75L,ppo,377,75.4,alpha,upper,-1.1199997663497925 +illusion_0.75L,ppo,377,75.4,alpha,lower,1.947070945054293 +illusion_0.75L,ppo,378,75.6,alpha,front,-1.0625700950622559 +illusion_0.75L,ppo,378,75.6,alpha,upper,-1.282805323600769 +illusion_0.75L,ppo,378,75.6,alpha,lower,1.82249017059803 +illusion_0.75L,ppo,379,75.8,alpha,front,-1.1322605609893799 +illusion_0.75L,ppo,379,75.8,alpha,upper,-1.4668694734573364 +illusion_0.75L,ppo,379,75.8,alpha,lower,1.6892544329166412 +illusion_0.75L,ppo,380,76.0,alpha,front,-1.193964958190918 +illusion_0.75L,ppo,380,76.0,alpha,upper,-1.646156430244446 +illusion_0.75L,ppo,380,76.0,alpha,lower,1.553045004606247 +illusion_0.75L,ppo,381,76.2,alpha,front,-1.2368168830871582 +illusion_0.75L,ppo,381,76.2,alpha,upper,-1.8061399459838867 +illusion_0.75L,ppo,381,76.2,alpha,lower,1.4304428100585938 +illusion_0.75L,ppo,382,76.4,alpha,front,-1.2472230195999146 +illusion_0.75L,ppo,382,76.4,alpha,upper,-1.9582163095474243 +illusion_0.75L,ppo,382,76.4,alpha,lower,1.333137571811676 +illusion_0.75L,ppo,383,76.6,alpha,front,-1.2204068899154663 +illusion_0.75L,ppo,383,76.6,alpha,upper,-2.0890441238880157 +illusion_0.75L,ppo,383,76.6,alpha,lower,1.2799797058105469 +illusion_0.75L,ppo,384,76.8,alpha,front,-1.1994750499725342 +illusion_0.75L,ppo,384,76.8,alpha,upper,-2.167852371931076 +illusion_0.75L,ppo,384,76.8,alpha,lower,1.2575103044509888 +illusion_0.75L,ppo,385,77.0,alpha,front,-1.1901021003723145 +illusion_0.75L,ppo,385,77.0,alpha,upper,-2.193639725446701 +illusion_0.75L,ppo,385,77.0,alpha,lower,1.2673668265342712 +illusion_0.75L,ppo,386,77.2,alpha,front,-1.2309324741363525 +illusion_0.75L,ppo,386,77.2,alpha,upper,-2.100056439638138 +illusion_0.75L,ppo,386,77.2,alpha,lower,1.3021809458732605 +illusion_0.75L,ppo,387,77.4,alpha,front,-1.328620433807373 +illusion_0.75L,ppo,387,77.4,alpha,upper,-1.8937112987041476 +illusion_0.75L,ppo,387,77.4,alpha,lower,1.3500741720199585 +illusion_0.75L,ppo,388,77.6,alpha,front,-1.4503288269042969 +illusion_0.75L,ppo,388,77.6,alpha,upper,-1.6414821147918701 +illusion_0.75L,ppo,388,77.6,alpha,lower,1.4147921800613403 +illusion_0.75L,ppo,389,77.8,alpha,front,-1.5487804412841797 +illusion_0.75L,ppo,389,77.8,alpha,upper,-1.39006906747818 +illusion_0.75L,ppo,389,77.8,alpha,lower,1.5146970450878143 +illusion_0.75L,ppo,390,78.0,alpha,front,-1.624171495437622 +illusion_0.75L,ppo,390,78.0,alpha,upper,-1.1777392625808716 +illusion_0.75L,ppo,390,78.0,alpha,lower,1.6169701516628265 +illusion_0.75L,ppo,391,78.2,alpha,front,-1.6643828153610227 +illusion_0.75L,ppo,391,78.2,alpha,upper,-1.0141843557357788 +illusion_0.75L,ppo,391,78.2,alpha,lower,1.7147328853607178 +illusion_0.75L,ppo,392,78.4,alpha,front,-1.6685416698455813 +illusion_0.75L,ppo,392,78.4,alpha,upper,-0.8835349082946777 +illusion_0.75L,ppo,392,78.4,alpha,lower,1.8123530745506287 +illusion_0.75L,ppo,393,78.6,alpha,front,-1.6565827131271362 +illusion_0.75L,ppo,393,78.6,alpha,upper,-0.7916697263717652 +illusion_0.75L,ppo,393,78.6,alpha,lower,1.8962994813919067 +illusion_0.75L,ppo,394,78.8,alpha,front,-1.6087768077850342 +illusion_0.75L,ppo,394,78.8,alpha,upper,-0.7387903928756714 +illusion_0.75L,ppo,394,78.8,alpha,lower,1.993683010339737 +illusion_0.75L,ppo,395,79.0,alpha,front,-1.5630810260772703 +illusion_0.75L,ppo,395,79.0,alpha,upper,-0.7084285020828247 +illusion_0.75L,ppo,395,79.0,alpha,lower,2.0814737752079964 +illusion_0.75L,ppo,396,79.2,alpha,front,-1.4993571043014526 +illusion_0.75L,ppo,396,79.2,alpha,upper,-0.6992095708847046 +illusion_0.75L,ppo,396,79.2,alpha,lower,2.1786779165267944 +illusion_0.75L,ppo,397,79.4,alpha,front,-1.410249948501587 +illusion_0.75L,ppo,397,79.4,alpha,upper,-0.7138898372650146 +illusion_0.75L,ppo,397,79.4,alpha,lower,2.289167493581772 +illusion_0.75L,ppo,398,79.6,alpha,front,-1.3268415927886963 +illusion_0.75L,ppo,398,79.6,alpha,upper,-0.7440422773361206 +illusion_0.75L,ppo,398,79.6,alpha,lower,2.381381928920746 +illusion_0.75L,ppo,399,79.8,alpha,front,-1.216967225074768 +illusion_0.75L,ppo,399,79.8,alpha,upper,-0.7927561998367311 +illusion_0.75L,ppo,399,79.8,alpha,lower,2.4701183438301086 +illusion_0.75L,ppo,0,0.0,omega,front,-0.014492467641830445 +illusion_0.75L,ppo,0,0.0,omega,upper,-0.010971254110336304 +illusion_0.75L,ppo,0,0.0,omega,lower,0.01786779671907425 +illusion_0.75L,ppo,1,0.2,omega,front,-0.014369914531707764 +illusion_0.75L,ppo,1,0.2,omega,upper,-0.011521430015563964 +illusion_0.75L,ppo,1,0.2,omega,lower,0.017234466671943664 +illusion_0.75L,ppo,2,0.4,omega,front,-0.014323949813842773 +illusion_0.75L,ppo,2,0.4,omega,upper,-0.013317302465438843 +illusion_0.75L,ppo,2,0.4,omega,lower,0.01608982861042023 +illusion_0.75L,ppo,3,0.6,omega,front,-0.014377899169921875 +illusion_0.75L,ppo,3,0.6,omega,upper,-0.01425523281097412 +illusion_0.75L,ppo,3,0.6,omega,lower,0.01539044201374054 +illusion_0.75L,ppo,4,0.8,omega,front,-0.013984769582748413 +illusion_0.75L,ppo,4,0.8,omega,upper,-0.014607462286949159 +illusion_0.75L,ppo,4,0.8,omega,lower,0.015422994494438172 +illusion_0.75L,ppo,5,1.0,omega,front,-0.013374109268188477 +illusion_0.75L,ppo,5,1.0,omega,upper,-0.014353806376457215 +illusion_0.75L,ppo,5,1.0,omega,lower,0.01598801404237747 +illusion_0.75L,ppo,6,1.2,omega,front,-0.0129972505569458 +illusion_0.75L,ppo,6,1.2,omega,upper,-0.013993152379989625 +illusion_0.75L,ppo,6,1.2,omega,lower,0.016429562270641327 +illusion_0.75L,ppo,7,1.4,omega,front,-0.012916269302368165 +illusion_0.75L,ppo,7,1.4,omega,upper,-0.013916049003601074 +illusion_0.75L,ppo,7,1.4,omega,lower,0.016457701325416567 +illusion_0.75L,ppo,8,1.6,omega,front,-0.013073861598968506 +illusion_0.75L,ppo,8,1.6,omega,upper,-0.014130405783653259 +illusion_0.75L,ppo,8,1.6,omega,lower,0.016077304780483245 +illusion_0.75L,ppo,9,1.8,omega,front,-0.012797155380249024 +illusion_0.75L,ppo,9,1.8,omega,upper,-0.014513064622879029 +illusion_0.75L,ppo,9,1.8,omega,lower,0.015996510982513427 +illusion_0.75L,ppo,10,2.0,omega,front,-0.012352747917175293 +illusion_0.75L,ppo,10,2.0,omega,upper,-0.014670320749282838 +illusion_0.75L,ppo,10,2.0,omega,lower,0.016161989569664 +illusion_0.75L,ppo,11,2.2,omega,front,-0.01168007254600525 +illusion_0.75L,ppo,11,2.2,omega,upper,-0.014751394391059876 +illusion_0.75L,ppo,11,2.2,omega,lower,0.016575176417827606 +illusion_0.75L,ppo,12,2.4,omega,front,-0.010878041982650757 +illusion_0.75L,ppo,12,2.4,omega,upper,-0.014618824124336243 +illusion_0.75L,ppo,12,2.4,omega,lower,0.017277092635631562 +illusion_0.75L,ppo,13,2.6,omega,front,-0.010054346323013306 +illusion_0.75L,ppo,13,2.6,omega,upper,-0.014309058785438538 +illusion_0.75L,ppo,13,2.6,omega,lower,0.018124326169490813 +illusion_0.75L,ppo,14,2.8,omega,front,-0.009694478511810304 +illusion_0.75L,ppo,14,2.8,omega,upper,-0.013748527765274049 +illusion_0.75L,ppo,14,2.8,omega,lower,0.018708449453115464 +illusion_0.75L,ppo,15,3.0,omega,front,-0.009376689791679382 +illusion_0.75L,ppo,15,3.0,omega,upper,-0.012956802845001222 +illusion_0.75L,ppo,15,3.0,omega,lower,0.01940055571496487 +illusion_0.75L,ppo,16,3.2,omega,front,-0.009842204451560975 +illusion_0.75L,ppo,16,3.2,omega,upper,-0.011679357886314393 +illusion_0.75L,ppo,16,3.2,omega,lower,0.019564840085804464 +illusion_0.75L,ppo,17,3.4,omega,front,-0.010799813270568849 +illusion_0.75L,ppo,17,3.4,omega,upper,-0.010002243518829347 +illusion_0.75L,ppo,17,3.4,omega,lower,0.0194422010332346 +illusion_0.75L,ppo,18,3.6,omega,front,-0.012023106813430787 +illusion_0.75L,ppo,18,3.6,omega,upper,-0.008124327659606934 +illusion_0.75L,ppo,18,3.6,omega,lower,0.019174890592694283 +illusion_0.75L,ppo,19,3.8,omega,front,-0.013292316198348999 +illusion_0.75L,ppo,19,3.8,omega,upper,-0.006497324705123902 +illusion_0.75L,ppo,19,3.8,omega,lower,0.018863528221845626 +illusion_0.75L,ppo,20,4.0,omega,front,-0.014150722026824951 +illusion_0.75L,ppo,20,4.0,omega,upper,-0.005702247619628906 +illusion_0.75L,ppo,20,4.0,omega,lower,0.01883332498371601 +illusion_0.75L,ppo,21,4.2,omega,front,-0.014630913734436035 +illusion_0.75L,ppo,21,4.2,omega,upper,-0.006010178327560425 +illusion_0.75L,ppo,21,4.2,omega,lower,0.018916421085596085 +illusion_0.75L,ppo,22,4.4,omega,front,-0.0148393714427948 +illusion_0.75L,ppo,22,4.4,omega,upper,-0.007204657793045044 +illusion_0.75L,ppo,22,4.4,omega,lower,0.019054559022188187 +illusion_0.75L,ppo,23,4.6,omega,front,-0.014953029155731202 +illusion_0.75L,ppo,23,4.6,omega,upper,-0.009097154140472413 +illusion_0.75L,ppo,23,4.6,omega,lower,0.0190349717438221 +illusion_0.75L,ppo,24,4.8,omega,front,-0.015436832904815675 +illusion_0.75L,ppo,24,4.8,omega,upper,-0.011126391887664795 +illusion_0.75L,ppo,24,4.8,omega,lower,0.01854331910610199 +illusion_0.75L,ppo,25,5.0,omega,front,-0.015977913141250612 +illusion_0.75L,ppo,25,5.0,omega,upper,-0.013017863035202026 +illusion_0.75L,ppo,25,5.0,omega,lower,0.017965611517429352 +illusion_0.75L,ppo,26,5.2,omega,front,-0.0163911771774292 +illusion_0.75L,ppo,26,5.2,omega,upper,-0.0144789856672287 +illusion_0.75L,ppo,26,5.2,omega,lower,0.017543018758296967 +illusion_0.75L,ppo,27,5.4,omega,front,-0.016175860166549684 +illusion_0.75L,ppo,27,5.4,omega,upper,-0.015515240728855134 +illusion_0.75L,ppo,27,5.4,omega,lower,0.017634669840335845 +illusion_0.75L,ppo,28,5.6,omega,front,-0.016296758651733398 +illusion_0.75L,ppo,28,5.6,omega,upper,-0.015712364315986632 +illusion_0.75L,ppo,28,5.6,omega,lower,0.017479106485843658 +illusion_0.75L,ppo,29,5.8,omega,front,-0.015897834300994874 +illusion_0.75L,ppo,29,5.8,omega,upper,-0.015727973282337188 +illusion_0.75L,ppo,29,5.8,omega,lower,0.017483457028865813 +illusion_0.75L,ppo,30,6.0,omega,front,-0.015360969305038453 +illusion_0.75L,ppo,30,6.0,omega,upper,-0.015279820263385773 +illusion_0.75L,ppo,30,6.0,omega,lower,0.017375543415546417 +illusion_0.75L,ppo,31,6.2,omega,front,-0.014475390911102295 +illusion_0.75L,ppo,31,6.2,omega,upper,-0.01459273636341095 +illusion_0.75L,ppo,31,6.2,omega,lower,0.01732333332300186 +illusion_0.75L,ppo,32,6.4,omega,front,-0.0135520601272583 +illusion_0.75L,ppo,32,6.4,omega,upper,-0.013832411766052247 +illusion_0.75L,ppo,32,6.4,omega,lower,0.017020213305950164 +illusion_0.75L,ppo,33,6.6,omega,front,-0.012951828241348266 +illusion_0.75L,ppo,33,6.6,omega,upper,-0.012644284963607788 +illusion_0.75L,ppo,33,6.6,omega,lower,0.016424103677272796 +illusion_0.75L,ppo,34,6.8,omega,front,-0.012309784889221192 +illusion_0.75L,ppo,34,6.8,omega,upper,-0.011230125427246093 +illusion_0.75L,ppo,34,6.8,omega,lower,0.01596452236175537 +illusion_0.75L,ppo,35,7.0,omega,front,-0.011939345598220826 +illusion_0.75L,ppo,35,7.0,omega,upper,-0.009759721755981445 +illusion_0.75L,ppo,35,7.0,omega,lower,0.015544151961803436 +illusion_0.75L,ppo,36,7.2,omega,front,-0.012078826427459718 +illusion_0.75L,ppo,36,7.2,omega,upper,-0.008270660638809204 +illusion_0.75L,ppo,36,7.2,omega,lower,0.01519793838262558 +illusion_0.75L,ppo,37,7.4,omega,front,-0.012065908908843995 +illusion_0.75L,ppo,37,7.4,omega,upper,-0.007185882329940796 +illusion_0.75L,ppo,37,7.4,omega,lower,0.015383909046649933 +illusion_0.75L,ppo,38,7.6,omega,front,-0.01181302309036255 +illusion_0.75L,ppo,38,7.6,omega,upper,-0.00675844669342041 +illusion_0.75L,ppo,38,7.6,omega,lower,0.015895237624645234 +illusion_0.75L,ppo,39,7.8,omega,front,-0.011401237249374389 +illusion_0.75L,ppo,39,7.8,omega,upper,-0.006917445659637451 +illusion_0.75L,ppo,39,7.8,omega,lower,0.0165976545214653 +illusion_0.75L,ppo,40,8.0,omega,front,-0.010970005989074707 +illusion_0.75L,ppo,40,8.0,omega,upper,-0.007459720373153686 +illusion_0.75L,ppo,40,8.0,omega,lower,0.01731665790081024 +illusion_0.75L,ppo,41,8.2,omega,front,-0.01062481164932251 +illusion_0.75L,ppo,41,8.2,omega,upper,-0.008146409988403321 +illusion_0.75L,ppo,41,8.2,omega,lower,0.01792795568704605 +illusion_0.75L,ppo,42,8.4,omega,front,-0.010438742637634278 +illusion_0.75L,ppo,42,8.4,omega,upper,-0.008787251710891723 +illusion_0.75L,ppo,42,8.4,omega,lower,0.018395203948020935 +illusion_0.75L,ppo,43,8.6,omega,front,-0.010265672206878662 +illusion_0.75L,ppo,43,8.6,omega,upper,-0.009554817676544189 +illusion_0.75L,ppo,43,8.6,omega,lower,0.018771104365587234 +illusion_0.75L,ppo,44,8.8,omega,front,-0.010118863582611085 +illusion_0.75L,ppo,44,8.8,omega,upper,-0.010275475978851319 +illusion_0.75L,ppo,44,8.8,omega,lower,0.01913418635725975 +illusion_0.75L,ppo,45,9.0,omega,front,-0.009888030290603637 +illusion_0.75L,ppo,45,9.0,omega,upper,-0.011000018119812011 +illusion_0.75L,ppo,45,9.0,omega,lower,0.019581106901168824 +illusion_0.75L,ppo,46,9.2,omega,front,-0.009958561062812805 +illusion_0.75L,ppo,46,9.2,omega,upper,-0.011599097847938538 +illusion_0.75L,ppo,46,9.2,omega,lower,0.01987552985548973 +illusion_0.75L,ppo,47,9.4,omega,front,-0.010114994049072266 +illusion_0.75L,ppo,47,9.4,omega,upper,-0.012099912166595459 +illusion_0.75L,ppo,47,9.4,omega,lower,0.02018463745713234 +illusion_0.75L,ppo,48,9.6,omega,front,-0.010539706945419312 +illusion_0.75L,ppo,48,9.6,omega,upper,-0.012381630539894104 +illusion_0.75L,ppo,48,9.6,omega,lower,0.020392778590321542 +illusion_0.75L,ppo,49,9.8,omega,front,-0.011400356292724609 +illusion_0.75L,ppo,49,9.8,omega,upper,-0.012286316156387329 +illusion_0.75L,ppo,49,9.8,omega,lower,0.020295992866158487 +illusion_0.75L,ppo,50,10.0,omega,front,-0.012584879398345947 +illusion_0.75L,ppo,50,10.0,omega,upper,-0.011782896518707276 +illusion_0.75L,ppo,50,10.0,omega,lower,0.019929592832922935 +illusion_0.75L,ppo,51,10.2,omega,front,-0.013978284597396851 +illusion_0.75L,ppo,51,10.2,omega,upper,-0.011034166812896729 +illusion_0.75L,ppo,51,10.2,omega,lower,0.019302421435713767 +illusion_0.75L,ppo,52,10.4,omega,front,-0.0152958083152771 +illusion_0.75L,ppo,52,10.4,omega,upper,-0.01053486943244934 +illusion_0.75L,ppo,52,10.4,omega,lower,0.018498093634843827 +illusion_0.75L,ppo,53,10.6,omega,front,-0.016605100631713866 +illusion_0.75L,ppo,53,10.6,omega,upper,-0.010295828580856323 +illusion_0.75L,ppo,53,10.6,omega,lower,0.01764933854341507 +illusion_0.75L,ppo,54,10.8,omega,front,-0.01746000051498413 +illusion_0.75L,ppo,54,10.8,omega,upper,-0.010815637111663818 +illusion_0.75L,ppo,54,10.8,omega,lower,0.016995910108089447 +illusion_0.75L,ppo,55,11.0,omega,front,-0.018039665222167968 +illusion_0.75L,ppo,55,11.0,omega,upper,-0.011648171544075013 +illusion_0.75L,ppo,55,11.0,omega,lower,0.016551181972026825 +illusion_0.75L,ppo,56,11.2,omega,front,-0.018441729545593262 +illusion_0.75L,ppo,56,11.2,omega,upper,-0.012984501123428345 +illusion_0.75L,ppo,56,11.2,omega,lower,0.016047661900520326 +illusion_0.75L,ppo,57,11.4,omega,front,-0.018882004022598268 +illusion_0.75L,ppo,57,11.4,omega,upper,-0.014283128380775452 +illusion_0.75L,ppo,57,11.4,omega,lower,0.015485673546791078 +illusion_0.75L,ppo,58,11.6,omega,front,-0.019492809772491456 +illusion_0.75L,ppo,58,11.6,omega,upper,-0.015203665792942047 +illusion_0.75L,ppo,58,11.6,omega,lower,0.014836282134056092 +illusion_0.75L,ppo,59,11.8,omega,front,-0.01963219165802002 +illusion_0.75L,ppo,59,11.8,omega,upper,-0.01589325934648514 +illusion_0.75L,ppo,59,11.8,omega,lower,0.014586623311042785 +illusion_0.75L,ppo,60,12.0,omega,front,-0.019543514251708985 +illusion_0.75L,ppo,60,12.0,omega,upper,-0.01604032754898071 +illusion_0.75L,ppo,60,12.0,omega,lower,0.01460337519645691 +illusion_0.75L,ppo,61,12.2,omega,front,-0.019072840213775637 +illusion_0.75L,ppo,61,12.2,omega,upper,-0.01578638166189194 +illusion_0.75L,ppo,61,12.2,omega,lower,0.014884110689163208 +illusion_0.75L,ppo,62,12.4,omega,front,-0.018522005081176757 +illusion_0.75L,ppo,62,12.4,omega,upper,-0.014944102764129639 +illusion_0.75L,ppo,62,12.4,omega,lower,0.015203388035297393 +illusion_0.75L,ppo,63,12.6,omega,front,-0.017667131423950197 +illusion_0.75L,ppo,63,12.6,omega,upper,-0.013721177577972412 +illusion_0.75L,ppo,63,12.6,omega,lower,0.01564685583114624 +illusion_0.75L,ppo,64,12.8,omega,front,-0.01649038553237915 +illusion_0.75L,ppo,64,12.8,omega,upper,-0.012351691126823425 +illusion_0.75L,ppo,64,12.8,omega,lower,0.016196324825286865 +illusion_0.75L,ppo,65,13.0,omega,front,-0.014979119300842286 +illusion_0.75L,ppo,65,13.0,omega,upper,-0.011021751761436462 +illusion_0.75L,ppo,65,13.0,omega,lower,0.016919349730014802 +illusion_0.75L,ppo,66,13.2,omega,front,-0.013640315532684327 +illusion_0.75L,ppo,66,13.2,omega,upper,-0.009780433177947998 +illusion_0.75L,ppo,66,13.2,omega,lower,0.017478184998035433 +illusion_0.75L,ppo,67,13.4,omega,front,-0.012310913801193238 +illusion_0.75L,ppo,67,13.4,omega,upper,-0.008751192092895509 +illusion_0.75L,ppo,67,13.4,omega,lower,0.018137055933475494 +illusion_0.75L,ppo,68,13.6,omega,front,-0.011225026845932008 +illusion_0.75L,ppo,68,13.6,omega,upper,-0.00798262596130371 +illusion_0.75L,ppo,68,13.6,omega,lower,0.018830203637480735 +illusion_0.75L,ppo,69,13.8,omega,front,-0.010641794204711914 +illusion_0.75L,ppo,69,13.8,omega,upper,-0.007365481853485107 +illusion_0.75L,ppo,69,13.8,omega,lower,0.01939982168376446 +illusion_0.75L,ppo,70,14.0,omega,front,-0.010114595890045167 +illusion_0.75L,ppo,70,14.0,omega,upper,-0.007068606615066529 +illusion_0.75L,ppo,70,14.0,omega,lower,0.020200383886694907 +illusion_0.75L,ppo,71,14.2,omega,front,-0.00974043071269989 +illusion_0.75L,ppo,71,14.2,omega,upper,-0.006987141370773315 +illusion_0.75L,ppo,71,14.2,omega,lower,0.021069215312600136 +illusion_0.75L,ppo,72,14.4,omega,front,-0.009465981721878052 +illusion_0.75L,ppo,72,14.4,omega,upper,-0.007084890604019165 +illusion_0.75L,ppo,72,14.4,omega,lower,0.021941382586956024 +illusion_0.75L,ppo,73,14.6,omega,front,-0.009202035069465637 +illusion_0.75L,ppo,73,14.6,omega,upper,-0.007232580184936523 +illusion_0.75L,ppo,73,14.6,omega,lower,0.022789546251296998 +illusion_0.75L,ppo,74,14.8,omega,front,-0.008991240859031677 +illusion_0.75L,ppo,74,14.8,omega,upper,-0.007520320415496827 +illusion_0.75L,ppo,74,14.8,omega,lower,0.023422052562236787 +illusion_0.75L,ppo,75,15.0,omega,front,-0.008748298287391662 +illusion_0.75L,ppo,75,15.0,omega,upper,-0.007890110015869142 +illusion_0.75L,ppo,75,15.0,omega,lower,0.023872663378715516 +illusion_0.75L,ppo,76,15.2,omega,front,-0.008734559416770935 +illusion_0.75L,ppo,76,15.2,omega,upper,-0.008246240615844726 +illusion_0.75L,ppo,76,15.2,omega,lower,0.023982246816158296 +illusion_0.75L,ppo,77,15.4,omega,front,-0.00862480103969574 +illusion_0.75L,ppo,77,15.4,omega,upper,-0.008930591344833374 +illusion_0.75L,ppo,77,15.4,omega,lower,0.023879747986793518 +illusion_0.75L,ppo,78,15.6,omega,front,-0.008735676407814027 +illusion_0.75L,ppo,78,15.6,omega,upper,-0.009778615236282349 +illusion_0.75L,ppo,78,15.6,omega,lower,0.023381817936897278 +illusion_0.75L,ppo,79,15.8,omega,front,-0.009007800817489624 +illusion_0.75L,ppo,79,15.8,omega,upper,-0.010860756635665894 +illusion_0.75L,ppo,79,15.8,omega,lower,0.022535675764083864 +illusion_0.75L,ppo,80,16.0,omega,front,-0.009485130906105041 +illusion_0.75L,ppo,80,16.0,omega,upper,-0.012113150954246522 +illusion_0.75L,ppo,80,16.0,omega,lower,0.02133435219526291 +illusion_0.75L,ppo,81,16.2,omega,front,-0.010026313066482544 +illusion_0.75L,ppo,81,16.2,omega,upper,-0.013537108302116393 +illusion_0.75L,ppo,81,16.2,omega,lower,0.01995776280760765 +illusion_0.75L,ppo,82,16.4,omega,front,-0.010526816844940185 +illusion_0.75L,ppo,82,16.4,omega,upper,-0.01519773542881012 +illusion_0.75L,ppo,82,16.4,omega,lower,0.01848593235015869 +illusion_0.75L,ppo,83,16.6,omega,front,-0.011098674535751344 +illusion_0.75L,ppo,83,16.6,omega,upper,-0.016782851815223696 +illusion_0.75L,ppo,83,16.6,omega,lower,0.01695652961730957 +illusion_0.75L,ppo,84,16.8,omega,front,-0.011272728443145752 +illusion_0.75L,ppo,84,16.8,omega,upper,-0.018434638381004335 +illusion_0.75L,ppo,84,16.8,omega,lower,0.01574193149805069 +illusion_0.75L,ppo,85,17.0,omega,front,-0.011586494445800781 +illusion_0.75L,ppo,85,17.0,omega,upper,-0.019924818575382232 +illusion_0.75L,ppo,85,17.0,omega,lower,0.01445677936077118 +illusion_0.75L,ppo,86,17.2,omega,front,-0.011556363105773926 +illusion_0.75L,ppo,86,17.2,omega,upper,-0.021182147562503816 +illusion_0.75L,ppo,86,17.2,omega,lower,0.013606970310211183 +illusion_0.75L,ppo,87,17.4,omega,front,-0.011276761293411255 +illusion_0.75L,ppo,87,17.4,omega,upper,-0.02211210459470749 +illusion_0.75L,ppo,87,17.4,omega,lower,0.013220528960227967 +illusion_0.75L,ppo,88,17.6,omega,front,-0.010773664712905884 +illusion_0.75L,ppo,88,17.6,omega,upper,-0.022730403244495392 +illusion_0.75L,ppo,88,17.6,omega,lower,0.013246898651123048 +illusion_0.75L,ppo,89,17.8,omega,front,-0.010686397552490234 +illusion_0.75L,ppo,89,17.8,omega,upper,-0.022639914453029632 +illusion_0.75L,ppo,89,17.8,omega,lower,0.013253610730171204 +illusion_0.75L,ppo,90,18.0,omega,front,-0.010626438856124878 +illusion_0.75L,ppo,90,18.0,omega,upper,-0.02162259191274643 +illusion_0.75L,ppo,90,18.0,omega,lower,0.013628925681114196 +illusion_0.75L,ppo,91,18.2,omega,front,-0.010929076671600342 +illusion_0.75L,ppo,91,18.2,omega,upper,-0.019628174006938934 +illusion_0.75L,ppo,91,18.2,omega,lower,0.014017024636268615 +illusion_0.75L,ppo,92,18.4,omega,front,-0.011779400110244751 +illusion_0.75L,ppo,92,18.4,omega,upper,-0.01648438483476639 +illusion_0.75L,ppo,92,18.4,omega,lower,0.014359896183013917 +illusion_0.75L,ppo,93,18.6,omega,front,-0.01297547221183777 +illusion_0.75L,ppo,93,18.6,omega,upper,-0.012771198749542237 +illusion_0.75L,ppo,93,18.6,omega,lower,0.01469963014125824 +illusion_0.75L,ppo,94,18.8,omega,front,-0.013959156274795532 +illusion_0.75L,ppo,94,18.8,omega,upper,-0.009062589406967162 +illusion_0.75L,ppo,94,18.8,omega,lower,0.015372937321662903 +illusion_0.75L,ppo,95,19.0,omega,front,-0.014909185171127319 +illusion_0.75L,ppo,95,19.0,omega,upper,-0.005724960565567017 +illusion_0.75L,ppo,95,19.0,omega,lower,0.01612238973379135 +illusion_0.75L,ppo,96,19.2,omega,front,-0.01509829044342041 +illusion_0.75L,ppo,96,19.2,omega,upper,-0.003441809415817261 +illusion_0.75L,ppo,96,19.2,omega,lower,0.017298509776592256 +illusion_0.75L,ppo,97,19.4,omega,front,-0.01465100646018982 +illusion_0.75L,ppo,97,19.4,omega,upper,-0.002426251173019409 +illusion_0.75L,ppo,97,19.4,omega,lower,0.018734481036663055 +illusion_0.75L,ppo,98,19.6,omega,front,-0.013550944328308105 +illusion_0.75L,ppo,98,19.6,omega,upper,-0.002868553400039673 +illusion_0.75L,ppo,98,19.6,omega,lower,0.0203615090996027 +illusion_0.75L,ppo,99,19.8,omega,front,-0.012528328895568848 +illusion_0.75L,ppo,99,19.8,omega,upper,-0.004226365089416504 +illusion_0.75L,ppo,99,19.8,omega,lower,0.021634255051612854 +illusion_0.75L,ppo,100,20.0,omega,front,-0.011513265371322632 +illusion_0.75L,ppo,100,20.0,omega,upper,-0.006060894727706909 +illusion_0.75L,ppo,100,20.0,omega,lower,0.022641234397888184 +illusion_0.75L,ppo,101,20.2,omega,front,-0.010683963298797608 +illusion_0.75L,ppo,101,20.2,omega,upper,-0.007968968152999878 +illusion_0.75L,ppo,101,20.2,omega,lower,0.023276871144771578 +illusion_0.75L,ppo,102,20.4,omega,front,-0.01009952187538147 +illusion_0.75L,ppo,102,20.4,omega,upper,-0.009281570911407471 +illusion_0.75L,ppo,102,20.4,omega,lower,0.02365500748157501 +illusion_0.75L,ppo,103,20.6,omega,front,-0.009364262819290162 +illusion_0.75L,ppo,103,20.6,omega,upper,-0.010115150213241577 +illusion_0.75L,ppo,103,20.6,omega,lower,0.02405693590641022 +illusion_0.75L,ppo,104,20.8,omega,front,-0.008673431873321534 +illusion_0.75L,ppo,104,20.8,omega,upper,-0.010281196832656861 +illusion_0.75L,ppo,104,20.8,omega,lower,0.0243513023853302 +illusion_0.75L,ppo,105,21.0,omega,front,-0.007905925512313844 +illusion_0.75L,ppo,105,21.0,omega,upper,-0.010093954801559448 +illusion_0.75L,ppo,105,21.0,omega,lower,0.02445639967918396 +illusion_0.75L,ppo,106,21.2,omega,front,-0.007376440763473511 +illusion_0.75L,ppo,106,21.2,omega,upper,-0.009619898796081543 +illusion_0.75L,ppo,106,21.2,omega,lower,0.024047686755657195 +illusion_0.75L,ppo,107,21.4,omega,front,-0.007183976769447327 +illusion_0.75L,ppo,107,21.4,omega,upper,-0.009151533842086793 +illusion_0.75L,ppo,107,21.4,omega,lower,0.023004381358623507 +illusion_0.75L,ppo,108,21.6,omega,front,-0.007297375202178955 +illusion_0.75L,ppo,108,21.6,omega,upper,-0.00885614514350891 +illusion_0.75L,ppo,108,21.6,omega,lower,0.021529827415943146 +illusion_0.75L,ppo,109,21.8,omega,front,-0.007666083574295044 +illusion_0.75L,ppo,109,21.8,omega,upper,-0.009032729864120483 +illusion_0.75L,ppo,109,21.8,omega,lower,0.019883312806487082 +illusion_0.75L,ppo,110,22.0,omega,front,-0.00831453263759613 +illusion_0.75L,ppo,110,22.0,omega,upper,-0.009734992980957032 +illusion_0.75L,ppo,110,22.0,omega,lower,0.01822475701570511 +illusion_0.75L,ppo,111,22.2,omega,front,-0.009236755967140199 +illusion_0.75L,ppo,111,22.2,omega,upper,-0.010957319736480713 +illusion_0.75L,ppo,111,22.2,omega,lower,0.016632653772830963 +illusion_0.75L,ppo,112,22.4,omega,front,-0.010320353507995607 +illusion_0.75L,ppo,112,22.4,omega,upper,-0.012559747695922852 +illusion_0.75L,ppo,112,22.4,omega,lower,0.015179893374443055 +illusion_0.75L,ppo,113,22.6,omega,front,-0.011356273889541626 +illusion_0.75L,ppo,113,22.6,omega,upper,-0.014349120259284974 +illusion_0.75L,ppo,113,22.6,omega,lower,0.01388000249862671 +illusion_0.75L,ppo,114,22.8,omega,front,-0.012210509777069093 +illusion_0.75L,ppo,114,22.8,omega,upper,-0.016150681674480437 +illusion_0.75L,ppo,114,22.8,omega,lower,0.01275311827659607 +illusion_0.75L,ppo,115,23.0,omega,front,-0.012740163803100587 +illusion_0.75L,ppo,115,23.0,omega,upper,-0.017730351239442825 +illusion_0.75L,ppo,115,23.0,omega,lower,0.011955427527427674 +illusion_0.75L,ppo,116,23.2,omega,front,-0.01305173397064209 +illusion_0.75L,ppo,116,23.2,omega,upper,-0.018978528082370758 +illusion_0.75L,ppo,116,23.2,omega,lower,0.011392780542373658 +illusion_0.75L,ppo,117,23.4,omega,front,-0.013025152683258058 +illusion_0.75L,ppo,117,23.4,omega,upper,-0.01988506257534027 +illusion_0.75L,ppo,117,23.4,omega,lower,0.011251567602157593 +illusion_0.75L,ppo,118,23.6,omega,front,-0.012943902015686036 +illusion_0.75L,ppo,118,23.6,omega,upper,-0.020354852080345154 +illusion_0.75L,ppo,118,23.6,omega,lower,0.011393896341323853 +illusion_0.75L,ppo,119,23.8,omega,front,-0.01296434760093689 +illusion_0.75L,ppo,119,23.8,omega,upper,-0.020367601215839387 +illusion_0.75L,ppo,119,23.8,omega,lower,0.011793997287750244 +illusion_0.75L,ppo,120,24.0,omega,front,-0.013322112560272216 +illusion_0.75L,ppo,120,24.0,omega,upper,-0.019615224599838256 +illusion_0.75L,ppo,120,24.0,omega,lower,0.012451930642127991 +illusion_0.75L,ppo,121,24.2,omega,front,-0.013935847282409668 +illusion_0.75L,ppo,121,24.2,omega,upper,-0.01804560750722885 +illusion_0.75L,ppo,121,24.2,omega,lower,0.013383086323738098 +illusion_0.75L,ppo,122,24.4,omega,front,-0.014999533891677857 +illusion_0.75L,ppo,122,24.4,omega,upper,-0.015788382589817046 +illusion_0.75L,ppo,122,24.4,omega,lower,0.014286660552024842 +illusion_0.75L,ppo,123,24.6,omega,front,-0.015966575145721435 +illusion_0.75L,ppo,123,24.6,omega,upper,-0.013266876935958863 +illusion_0.75L,ppo,123,24.6,omega,lower,0.015399363338947297 +illusion_0.75L,ppo,124,24.8,omega,front,-0.016584343910217285 +illusion_0.75L,ppo,124,24.8,omega,upper,-0.01104402780532837 +illusion_0.75L,ppo,124,24.8,omega,lower,0.016564187109470368 +illusion_0.75L,ppo,125,25.0,omega,front,-0.01670769214630127 +illusion_0.75L,ppo,125,25.0,omega,upper,-0.00898444652557373 +illusion_0.75L,ppo,125,25.0,omega,lower,0.017876304984092713 +illusion_0.75L,ppo,126,25.2,omega,front,-0.01645951271057129 +illusion_0.75L,ppo,126,25.2,omega,upper,-0.007349760532379151 +illusion_0.75L,ppo,126,25.2,omega,lower,0.019087788090109827 +illusion_0.75L,ppo,127,25.4,omega,front,-0.0158677077293396 +illusion_0.75L,ppo,127,25.4,omega,upper,-0.006203519105911255 +illusion_0.75L,ppo,127,25.4,omega,lower,0.020242287144064904 +illusion_0.75L,ppo,128,25.6,omega,front,-0.015101306438446045 +illusion_0.75L,ppo,128,25.6,omega,upper,-0.005475348234176636 +illusion_0.75L,ppo,128,25.6,omega,lower,0.02137833058834076 +illusion_0.75L,ppo,129,25.8,omega,front,-0.014293482303619385 +illusion_0.75L,ppo,129,25.8,omega,upper,-0.005178683996200562 +illusion_0.75L,ppo,129,25.8,omega,lower,0.022445449233055116 +illusion_0.75L,ppo,130,26.0,omega,front,-0.013457574844360352 +illusion_0.75L,ppo,130,26.0,omega,upper,-0.005175360441207886 +illusion_0.75L,ppo,130,26.0,omega,lower,0.02349157929420471 +illusion_0.75L,ppo,131,26.2,omega,front,-0.012684149742126465 +illusion_0.75L,ppo,131,26.2,omega,upper,-0.0055000603199005125 +illusion_0.75L,ppo,131,26.2,omega,lower,0.02444333493709564 +illusion_0.75L,ppo,132,26.4,omega,front,-0.011889346837997437 +illusion_0.75L,ppo,132,26.4,omega,upper,-0.006102372407913208 +illusion_0.75L,ppo,132,26.4,omega,lower,0.025299118161201478 +illusion_0.75L,ppo,133,26.6,omega,front,-0.010930051803588867 +illusion_0.75L,ppo,133,26.6,omega,upper,-0.006965615749359131 +illusion_0.75L,ppo,133,26.6,omega,lower,0.026051920652389527 +illusion_0.75L,ppo,134,26.8,omega,front,-0.00999370813369751 +illusion_0.75L,ppo,134,26.8,omega,upper,-0.007912310361862183 +illusion_0.75L,ppo,134,26.8,omega,lower,0.026486254334449767 +illusion_0.75L,ppo,135,27.0,omega,front,-0.009152764081954956 +illusion_0.75L,ppo,135,27.0,omega,upper,-0.008895045518875122 +illusion_0.75L,ppo,135,27.0,omega,lower,0.026424230933189394 +illusion_0.75L,ppo,136,27.2,omega,front,-0.008259572982788087 +illusion_0.75L,ppo,136,27.2,omega,upper,-0.00983917474746704 +illusion_0.75L,ppo,136,27.2,omega,lower,0.026068366169929504 +illusion_0.75L,ppo,137,27.4,omega,front,-0.007859983444213868 +illusion_0.75L,ppo,137,27.4,omega,upper,-0.01069825291633606 +illusion_0.75L,ppo,137,27.4,omega,lower,0.025076348781585694 +illusion_0.75L,ppo,138,27.6,omega,front,-0.007979563474655152 +illusion_0.75L,ppo,138,27.6,omega,upper,-0.011362943649291992 +illusion_0.75L,ppo,138,27.6,omega,lower,0.02362336039543152 +illusion_0.75L,ppo,139,27.8,omega,front,-0.008643426299095154 +illusion_0.75L,ppo,139,27.8,omega,upper,-0.011909382343292236 +illusion_0.75L,ppo,139,27.8,omega,lower,0.021839161813259126 +illusion_0.75L,ppo,140,28.0,omega,front,-0.00965247094631195 +illusion_0.75L,ppo,140,28.0,omega,upper,-0.01261526346206665 +illusion_0.75L,ppo,140,28.0,omega,lower,0.019903861060738565 +illusion_0.75L,ppo,141,28.2,omega,front,-0.010916337966918946 +illusion_0.75L,ppo,141,28.2,omega,upper,-0.01350250244140625 +illusion_0.75L,ppo,141,28.2,omega,lower,0.01789715349674225 +illusion_0.75L,ppo,142,28.4,omega,front,-0.01198849081993103 +illusion_0.75L,ppo,142,28.4,omega,upper,-0.01483163356781006 +illusion_0.75L,ppo,142,28.4,omega,lower,0.016090479493141175 +illusion_0.75L,ppo,143,28.6,omega,front,-0.012779989242553712 +illusion_0.75L,ppo,143,28.6,omega,upper,-0.016365144550800324 +illusion_0.75L,ppo,143,28.6,omega,lower,0.014567129015922546 +illusion_0.75L,ppo,144,28.8,omega,front,-0.013317558765411377 +illusion_0.75L,ppo,144,28.8,omega,upper,-0.017984308898448945 +illusion_0.75L,ppo,144,28.8,omega,lower,0.013290942311286927 +illusion_0.75L,ppo,145,29.0,omega,front,-0.013551232814788818 +illusion_0.75L,ppo,145,29.0,omega,upper,-0.01946748673915863 +illusion_0.75L,ppo,145,29.0,omega,lower,0.012369071841239929 +illusion_0.75L,ppo,146,29.2,omega,front,-0.01357981562614441 +illusion_0.75L,ppo,146,29.2,omega,upper,-0.020645513832569122 +illusion_0.75L,ppo,146,29.2,omega,lower,0.011765851378440858 +illusion_0.75L,ppo,147,29.4,omega,front,-0.013158494234085083 +illusion_0.75L,ppo,147,29.4,omega,upper,-0.021732639372348785 +illusion_0.75L,ppo,147,29.4,omega,lower,0.011622974872589112 +illusion_0.75L,ppo,148,29.6,omega,front,-0.0127403724193573 +illusion_0.75L,ppo,148,29.6,omega,upper,-0.02241489499807358 +illusion_0.75L,ppo,148,29.6,omega,lower,0.011749473810195922 +illusion_0.75L,ppo,149,29.8,omega,front,-0.01215761661529541 +illusion_0.75L,ppo,149,29.8,omega,upper,-0.022542339265346528 +illusion_0.75L,ppo,149,29.8,omega,lower,0.01234294056892395 +illusion_0.75L,ppo,150,30.0,omega,front,-0.011751294136047363 +illusion_0.75L,ppo,150,30.0,omega,upper,-0.021847549378871917 +illusion_0.75L,ppo,150,30.0,omega,lower,0.013150646686553955 +illusion_0.75L,ppo,151,30.2,omega,front,-0.012016975879669189 +illusion_0.75L,ppo,151,30.2,omega,upper,-0.019722681045532226 +illusion_0.75L,ppo,151,30.2,omega,lower,0.013882167339324951 +illusion_0.75L,ppo,152,30.4,omega,front,-0.012798187732696533 +illusion_0.75L,ppo,152,30.4,omega,upper,-0.01649811625480652 +illusion_0.75L,ppo,152,30.4,omega,lower,0.014557890892028809 +illusion_0.75L,ppo,153,30.6,omega,front,-0.01366494655609131 +illusion_0.75L,ppo,153,30.6,omega,upper,-0.012966689467430115 +illusion_0.75L,ppo,153,30.6,omega,lower,0.015383719801902772 +illusion_0.75L,ppo,154,30.8,omega,front,-0.014291245937347413 +illusion_0.75L,ppo,154,30.8,omega,upper,-0.00972196102142334 +illusion_0.75L,ppo,154,30.8,omega,lower,0.016454049050807953 +illusion_0.75L,ppo,155,31.0,omega,front,-0.014655004739761352 +illusion_0.75L,ppo,155,31.0,omega,upper,-0.007012619972229004 +illusion_0.75L,ppo,155,31.0,omega,lower,0.017661690711975098 +illusion_0.75L,ppo,156,31.2,omega,front,-0.01460301637649536 +illusion_0.75L,ppo,156,31.2,omega,upper,-0.005053317546844483 +illusion_0.75L,ppo,156,31.2,omega,lower,0.019027582556009292 +illusion_0.75L,ppo,157,31.4,omega,front,-0.014220726490020753 +illusion_0.75L,ppo,157,31.4,omega,upper,-0.003906844854354858 +illusion_0.75L,ppo,157,31.4,omega,lower,0.020424521192908288 +illusion_0.75L,ppo,158,31.6,omega,front,-0.013782446384429933 +illusion_0.75L,ppo,158,31.6,omega,upper,-0.003440755605697632 +illusion_0.75L,ppo,158,31.6,omega,lower,0.021653579473495485 +illusion_0.75L,ppo,159,31.8,omega,front,-0.01298224449157715 +illusion_0.75L,ppo,159,31.8,omega,upper,-0.0037144005298614504 +illusion_0.75L,ppo,159,31.8,omega,lower,0.022989775240421294 +illusion_0.75L,ppo,160,32.0,omega,front,-0.012149586677551269 +illusion_0.75L,ppo,160,32.0,omega,upper,-0.004485635757446289 +illusion_0.75L,ppo,160,32.0,omega,lower,0.024194947481155395 +illusion_0.75L,ppo,161,32.2,omega,front,-0.011351343393325806 +illusion_0.75L,ppo,161,32.2,omega,upper,-0.005627013444900512 +illusion_0.75L,ppo,161,32.2,omega,lower,0.02520101249217987 +illusion_0.75L,ppo,162,32.4,omega,front,-0.010555546283721923 +illusion_0.75L,ppo,162,32.4,omega,upper,-0.006955691576004028 +illusion_0.75L,ppo,162,32.4,omega,lower,0.025992076992988587 +illusion_0.75L,ppo,163,32.6,omega,front,-0.009771000146865844 +illusion_0.75L,ppo,163,32.6,omega,upper,-0.008249753713607788 +illusion_0.75L,ppo,163,32.6,omega,lower,0.02649510622024536 +illusion_0.75L,ppo,164,32.8,omega,front,-0.008982986211776733 +illusion_0.75L,ppo,164,32.8,omega,upper,-0.009356818199157716 +illusion_0.75L,ppo,164,32.8,omega,lower,0.02666132867336273 +illusion_0.75L,ppo,165,33.0,omega,front,-0.008295936584472656 +illusion_0.75L,ppo,165,33.0,omega,upper,-0.010127732753753662 +illusion_0.75L,ppo,165,33.0,omega,lower,0.026346943974494934 +illusion_0.75L,ppo,166,33.2,omega,front,-0.007907735109329224 +illusion_0.75L,ppo,166,33.2,omega,upper,-0.010470022559165956 +illusion_0.75L,ppo,166,33.2,omega,lower,0.025380185842514037 +illusion_0.75L,ppo,167,33.4,omega,front,-0.007993466854095459 +illusion_0.75L,ppo,167,33.4,omega,upper,-0.010442497730255127 +illusion_0.75L,ppo,167,33.4,omega,lower,0.0237587970495224 +illusion_0.75L,ppo,168,33.6,omega,front,-0.008517345786094666 +illusion_0.75L,ppo,168,33.6,omega,upper,-0.010445513725280763 +illusion_0.75L,ppo,168,33.6,omega,lower,0.02173253268003464 +illusion_0.75L,ppo,169,33.8,omega,front,-0.009360591173171997 +illusion_0.75L,ppo,169,33.8,omega,upper,-0.010914155244827271 +illusion_0.75L,ppo,169,33.8,omega,lower,0.01964153617620468 +illusion_0.75L,ppo,170,34.0,omega,front,-0.010406453609466553 +illusion_0.75L,ppo,170,34.0,omega,upper,-0.011943433284759521 +illusion_0.75L,ppo,170,34.0,omega,lower,0.017737870514392854 +illusion_0.75L,ppo,171,34.2,omega,front,-0.011488078832626343 +illusion_0.75L,ppo,171,34.2,omega,upper,-0.013515969514846802 +illusion_0.75L,ppo,171,34.2,omega,lower,0.01604848474264145 +illusion_0.75L,ppo,172,34.4,omega,front,-0.012434271574020385 +illusion_0.75L,ppo,172,34.4,omega,upper,-0.015417386889457704 +illusion_0.75L,ppo,172,34.4,omega,lower,0.01456300973892212 +illusion_0.75L,ppo,173,34.6,omega,front,-0.013225311040878296 +illusion_0.75L,ppo,173,34.6,omega,upper,-0.017302159368991852 +illusion_0.75L,ppo,173,34.6,omega,lower,0.013226398229599 +illusion_0.75L,ppo,174,34.8,omega,front,-0.013703900575637818 +illusion_0.75L,ppo,174,34.8,omega,upper,-0.018970804810523986 +illusion_0.75L,ppo,174,34.8,omega,lower,0.012167983055114746 +illusion_0.75L,ppo,175,35.0,omega,front,-0.013732525110244751 +illusion_0.75L,ppo,175,35.0,omega,upper,-0.020361924767494204 +illusion_0.75L,ppo,175,35.0,omega,lower,0.01155615746974945 +illusion_0.75L,ppo,176,35.2,omega,front,-0.013788875341415405 +illusion_0.75L,ppo,176,35.2,omega,upper,-0.02122868925333023 +illusion_0.75L,ppo,176,35.2,omega,lower,0.011146145462989808 +illusion_0.75L,ppo,177,35.4,omega,front,-0.013440515995025635 +illusion_0.75L,ppo,177,35.4,omega,upper,-0.021824264824390413 +illusion_0.75L,ppo,177,35.4,omega,lower,0.011317052245140076 +illusion_0.75L,ppo,178,35.6,omega,front,-0.013140960931777954 +illusion_0.75L,ppo,178,35.6,omega,upper,-0.02184150129556656 +illusion_0.75L,ppo,178,35.6,omega,lower,0.011895731091499329 +illusion_0.75L,ppo,179,35.8,omega,front,-0.013235266208648682 +illusion_0.75L,ppo,179,35.8,omega,upper,-0.02089203506708145 +illusion_0.75L,ppo,179,35.8,omega,lower,0.012714513540267945 +illusion_0.75L,ppo,180,36.0,omega,front,-0.013922213315963746 +illusion_0.75L,ppo,180,36.0,omega,upper,-0.018815367817878723 +illusion_0.75L,ppo,180,36.0,omega,lower,0.013568469285964967 +illusion_0.75L,ppo,181,36.2,omega,front,-0.014967565536499024 +illusion_0.75L,ppo,181,36.2,omega,upper,-0.016040971875190733 +illusion_0.75L,ppo,181,36.2,omega,lower,0.014475526809692383 +illusion_0.75L,ppo,182,36.4,omega,front,-0.015828254222869872 +illusion_0.75L,ppo,182,36.4,omega,upper,-0.0131842839717865 +illusion_0.75L,ppo,182,36.4,omega,lower,0.015610319375991822 +illusion_0.75L,ppo,183,36.6,omega,front,-0.01633927583694458 +illusion_0.75L,ppo,183,36.6,omega,upper,-0.010652819871902466 +illusion_0.75L,ppo,183,36.6,omega,lower,0.016859411895275116 +illusion_0.75L,ppo,184,36.8,omega,front,-0.016437132358551026 +illusion_0.75L,ppo,184,36.8,omega,upper,-0.008588171005249024 +illusion_0.75L,ppo,184,36.8,omega,lower,0.01809773713350296 +illusion_0.75L,ppo,185,37.0,omega,front,-0.016210935115814208 +illusion_0.75L,ppo,185,37.0,omega,upper,-0.00699135422706604 +illusion_0.75L,ppo,185,37.0,omega,lower,0.01922181375324726 +illusion_0.75L,ppo,186,37.2,omega,front,-0.01572398066520691 +illusion_0.75L,ppo,186,37.2,omega,upper,-0.005894902944564819 +illusion_0.75L,ppo,186,37.2,omega,lower,0.020286159738898277 +illusion_0.75L,ppo,187,37.4,omega,front,-0.014939321279525757 +illusion_0.75L,ppo,187,37.4,omega,upper,-0.005260897874832153 +illusion_0.75L,ppo,187,37.4,omega,lower,0.021466054022312164 +illusion_0.75L,ppo,188,37.6,omega,front,-0.014141764640808106 +illusion_0.75L,ppo,188,37.6,omega,upper,-0.00502933144569397 +illusion_0.75L,ppo,188,37.6,omega,lower,0.022583709359169007 +illusion_0.75L,ppo,189,37.8,omega,front,-0.013286453485488892 +illusion_0.75L,ppo,189,37.8,omega,upper,-0.005182203054428101 +illusion_0.75L,ppo,189,37.8,omega,lower,0.023695455491542818 +illusion_0.75L,ppo,190,38.0,omega,front,-0.012404568195343017 +illusion_0.75L,ppo,190,38.0,omega,upper,-0.005651576519012451 +illusion_0.75L,ppo,190,38.0,omega,lower,0.02474905252456665 +illusion_0.75L,ppo,191,38.2,omega,front,-0.01149653196334839 +illusion_0.75L,ppo,191,38.2,omega,upper,-0.0063878846168518065 +illusion_0.75L,ppo,191,38.2,omega,lower,0.025655737519264223 +illusion_0.75L,ppo,192,38.4,omega,front,-0.010419921875 +illusion_0.75L,ppo,192,38.4,omega,upper,-0.007311872243881226 +illusion_0.75L,ppo,192,38.4,omega,lower,0.02645076870918274 +illusion_0.75L,ppo,193,38.6,omega,front,-0.009338511228561401 +illusion_0.75L,ppo,193,38.6,omega,upper,-0.008380839824676514 +illusion_0.75L,ppo,193,38.6,omega,lower,0.02686679542064667 +illusion_0.75L,ppo,194,38.8,omega,front,-0.008335260152816772 +illusion_0.75L,ppo,194,38.8,omega,upper,-0.009456462860107422 +illusion_0.75L,ppo,194,38.8,omega,lower,0.026798255443572998 +illusion_0.75L,ppo,195,39.0,omega,front,-0.007660606503486634 +illusion_0.75L,ppo,195,39.0,omega,upper,-0.01021957516670227 +illusion_0.75L,ppo,195,39.0,omega,lower,0.026129142045974732 +illusion_0.75L,ppo,196,39.2,omega,front,-0.007483648657798768 +illusion_0.75L,ppo,196,39.2,omega,upper,-0.010543437600135803 +illusion_0.75L,ppo,196,39.2,omega,lower,0.024826258420944214 +illusion_0.75L,ppo,197,39.4,omega,front,-0.00790752947330475 +illusion_0.75L,ppo,197,39.4,omega,upper,-0.01063585638999939 +illusion_0.75L,ppo,197,39.4,omega,lower,0.023007270693778992 +illusion_0.75L,ppo,198,39.6,omega,front,-0.008693735599517822 +illusion_0.75L,ppo,198,39.6,omega,upper,-0.011021185517311096 +illusion_0.75L,ppo,198,39.6,omega,lower,0.021060316786170007 +illusion_0.75L,ppo,199,39.8,omega,front,-0.009738485813140869 +illusion_0.75L,ppo,199,39.8,omega,upper,-0.011886972188949586 +illusion_0.75L,ppo,199,39.8,omega,lower,0.019191945642232894 +illusion_0.75L,ppo,200,40.0,omega,front,-0.01086396336555481 +illusion_0.75L,ppo,200,40.0,omega,upper,-0.013297128081321717 +illusion_0.75L,ppo,200,40.0,omega,lower,0.017430336475372316 +illusion_0.75L,ppo,201,40.2,omega,front,-0.011895574331283569 +illusion_0.75L,ppo,201,40.2,omega,upper,-0.01508607566356659 +illusion_0.75L,ppo,201,40.2,omega,lower,0.015765059292316436 +illusion_0.75L,ppo,202,40.4,omega,front,-0.012707557678222656 +illusion_0.75L,ppo,202,40.4,omega,upper,-0.016949739158153534 +illusion_0.75L,ppo,202,40.4,omega,lower,0.014257135391235352 +illusion_0.75L,ppo,203,40.6,omega,front,-0.013239890336990356 +illusion_0.75L,ppo,203,40.6,omega,upper,-0.01863753914833069 +illusion_0.75L,ppo,203,40.6,omega,lower,0.013022469878196717 +illusion_0.75L,ppo,204,40.8,omega,front,-0.01337135910987854 +illusion_0.75L,ppo,204,40.8,omega,upper,-0.020286926329135896 +illusion_0.75L,ppo,204,40.8,omega,lower,0.012107638716697693 +illusion_0.75L,ppo,205,41.0,omega,front,-0.013341914415359497 +illusion_0.75L,ppo,205,41.0,omega,upper,-0.02142944246530533 +illusion_0.75L,ppo,205,41.0,omega,lower,0.011549378633499146 +illusion_0.75L,ppo,206,41.2,omega,front,-0.012780485153198242 +illusion_0.75L,ppo,206,41.2,omega,upper,-0.022374727427959443 +illusion_0.75L,ppo,206,41.2,omega,lower,0.011612319350242616 +illusion_0.75L,ppo,207,41.4,omega,front,-0.012386068105697631 +illusion_0.75L,ppo,207,41.4,omega,upper,-0.02271288424730301 +illusion_0.75L,ppo,207,41.4,omega,lower,0.011912773251533509 +illusion_0.75L,ppo,208,41.6,omega,front,-0.012367690801620484 +illusion_0.75L,ppo,208,41.6,omega,upper,-0.022052715718746185 +illusion_0.75L,ppo,208,41.6,omega,lower,0.012451277375221254 +illusion_0.75L,ppo,209,41.8,omega,front,-0.01286764144897461 +illusion_0.75L,ppo,209,41.8,omega,upper,-0.020254138112068176 +illusion_0.75L,ppo,209,41.8,omega,lower,0.013122591376304628 +illusion_0.75L,ppo,210,42.0,omega,front,-0.01367616057395935 +illusion_0.75L,ppo,210,42.0,omega,upper,-0.017587590366601943 +illusion_0.75L,ppo,210,42.0,omega,lower,0.01400393009185791 +illusion_0.75L,ppo,211,42.2,omega,front,-0.014748029708862305 +illusion_0.75L,ppo,211,42.2,omega,upper,-0.014557244777679444 +illusion_0.75L,ppo,211,42.2,omega,lower,0.014919024109840393 +illusion_0.75L,ppo,212,42.4,omega,front,-0.01558783769607544 +illusion_0.75L,ppo,212,42.4,omega,upper,-0.01175129234790802 +illusion_0.75L,ppo,212,42.4,omega,lower,0.01599708378314972 +illusion_0.75L,ppo,213,42.6,omega,front,-0.01596389651298523 +illusion_0.75L,ppo,213,42.6,omega,upper,-0.009373446702957153 +illusion_0.75L,ppo,213,42.6,omega,lower,0.01723390758037567 +illusion_0.75L,ppo,214,42.8,omega,front,-0.01610651135444641 +illusion_0.75L,ppo,214,42.8,omega,upper,-0.007400821447372437 +illusion_0.75L,ppo,214,42.8,omega,lower,0.018390437066555024 +illusion_0.75L,ppo,215,43.0,omega,front,-0.0157765531539917 +illusion_0.75L,ppo,215,43.0,omega,upper,-0.006150747537612915 +illusion_0.75L,ppo,215,43.0,omega,lower,0.01956303644925356 +illusion_0.75L,ppo,216,43.2,omega,front,-0.015246732234954834 +illusion_0.75L,ppo,216,43.2,omega,upper,-0.0052775776386260985 +illusion_0.75L,ppo,216,43.2,omega,lower,0.020760253742337226 +illusion_0.75L,ppo,217,43.4,omega,front,-0.01448440432548523 +illusion_0.75L,ppo,217,43.4,omega,upper,-0.005073939561843872 +illusion_0.75L,ppo,217,43.4,omega,lower,0.02193827897310257 +illusion_0.75L,ppo,218,43.6,omega,front,-0.013718338012695314 +illusion_0.75L,ppo,218,43.6,omega,upper,-0.005215859413146973 +illusion_0.75L,ppo,218,43.6,omega,lower,0.023040718734264373 +illusion_0.75L,ppo,219,43.8,omega,front,-0.012914762496948243 +illusion_0.75L,ppo,219,43.8,omega,upper,-0.005659518241882325 +illusion_0.75L,ppo,219,43.8,omega,lower,0.024093594253063202 +illusion_0.75L,ppo,220,44.0,omega,front,-0.012039921283721925 +illusion_0.75L,ppo,220,44.0,omega,upper,-0.006421090364456177 +illusion_0.75L,ppo,220,44.0,omega,lower,0.02506969690322876 +illusion_0.75L,ppo,221,44.2,omega,front,-0.010961961746215821 +illusion_0.75L,ppo,221,44.2,omega,upper,-0.007404252290725708 +illusion_0.75L,ppo,221,44.2,omega,lower,0.02597013592720032 +illusion_0.75L,ppo,222,44.4,omega,front,-0.00978289544582367 +illusion_0.75L,ppo,222,44.4,omega,upper,-0.008456549644470216 +illusion_0.75L,ppo,222,44.4,omega,lower,0.026622163057327272 +illusion_0.75L,ppo,223,44.6,omega,front,-0.008811141252517701 +illusion_0.75L,ppo,223,44.6,omega,upper,-0.009320862293243408 +illusion_0.75L,ppo,223,44.6,omega,lower,0.026715198159217836 +illusion_0.75L,ppo,224,44.8,omega,front,-0.008121588230133057 +illusion_0.75L,ppo,224,44.8,omega,upper,-0.009870151281356812 +illusion_0.75L,ppo,224,44.8,omega,lower,0.026164467930793762 +illusion_0.75L,ppo,225,45.0,omega,front,-0.007865382432937622 +illusion_0.75L,ppo,225,45.0,omega,upper,-0.00998119831085205 +illusion_0.75L,ppo,225,45.0,omega,lower,0.024967170357704162 +illusion_0.75L,ppo,226,45.2,omega,front,-0.007892333269119263 +illusion_0.75L,ppo,226,45.2,omega,upper,-0.00998131513595581 +illusion_0.75L,ppo,226,45.2,omega,lower,0.02341586917638779 +illusion_0.75L,ppo,227,45.4,omega,front,-0.008457056283950807 +illusion_0.75L,ppo,227,45.4,omega,upper,-0.010156893730163574 +illusion_0.75L,ppo,227,45.4,omega,lower,0.021609631180763245 +illusion_0.75L,ppo,228,45.6,omega,front,-0.009274576306343079 +illusion_0.75L,ppo,228,45.6,omega,upper,-0.010943671464920044 +illusion_0.75L,ppo,228,45.6,omega,lower,0.019886558055877687 +illusion_0.75L,ppo,229,45.8,omega,front,-0.010335941314697266 +illusion_0.75L,ppo,229,45.8,omega,upper,-0.012259082794189453 +illusion_0.75L,ppo,229,45.8,omega,lower,0.01821386843919754 +illusion_0.75L,ppo,230,46.0,omega,front,-0.011385387182235718 +illusion_0.75L,ppo,230,46.0,omega,upper,-0.014014517068862916 +illusion_0.75L,ppo,230,46.0,omega,lower,0.01659886837005615 +illusion_0.75L,ppo,231,46.2,omega,front,-0.012315760850906372 +illusion_0.75L,ppo,231,46.2,omega,upper,-0.01596912622451782 +illusion_0.75L,ppo,231,46.2,omega,lower,0.01503794401884079 +illusion_0.75L,ppo,232,46.4,omega,front,-0.012787636518478394 +illusion_0.75L,ppo,232,46.4,omega,upper,-0.017894603312015533 +illusion_0.75L,ppo,232,46.4,omega,lower,0.01381214201450348 +illusion_0.75L,ppo,233,46.6,omega,front,-0.013302065134048462 +illusion_0.75L,ppo,233,46.6,omega,upper,-0.019390918016433716 +illusion_0.75L,ppo,233,46.6,omega,lower,0.012636857032775879 +illusion_0.75L,ppo,234,46.8,omega,front,-0.01315824031829834 +illusion_0.75L,ppo,234,46.8,omega,upper,-0.02083252400159836 +illusion_0.75L,ppo,234,46.8,omega,lower,0.012005890011787415 +illusion_0.75L,ppo,235,47.0,omega,front,-0.012757598161697388 +illusion_0.75L,ppo,235,47.0,omega,upper,-0.02166790038347244 +illusion_0.75L,ppo,235,47.0,omega,lower,0.011890684962272644 +illusion_0.75L,ppo,236,47.2,omega,front,-0.012757208347320557 +illusion_0.75L,ppo,236,47.2,omega,upper,-0.022165684401988985 +illusion_0.75L,ppo,236,47.2,omega,lower,0.011719082593917848 +illusion_0.75L,ppo,237,47.4,omega,front,-0.012701784372329713 +illusion_0.75L,ppo,237,47.4,omega,upper,-0.021863742768764495 +illusion_0.75L,ppo,237,47.4,omega,lower,0.012190772891044617 +illusion_0.75L,ppo,238,47.6,omega,front,-0.013138152360916137 +illusion_0.75L,ppo,238,47.6,omega,upper,-0.02047316700220108 +illusion_0.75L,ppo,238,47.6,omega,lower,0.012892292141914369 +illusion_0.75L,ppo,239,47.8,omega,front,-0.013973320722579957 +illusion_0.75L,ppo,239,47.8,omega,upper,-0.01815170466899872 +illusion_0.75L,ppo,239,47.8,omega,lower,0.013784028887748719 +illusion_0.75L,ppo,240,48.0,omega,front,-0.015007905960083008 +illusion_0.75L,ppo,240,48.0,omega,upper,-0.01546358346939087 +illusion_0.75L,ppo,240,48.0,omega,lower,0.01475529432296753 +illusion_0.75L,ppo,241,48.2,omega,front,-0.015994956493377687 +illusion_0.75L,ppo,241,48.2,omega,upper,-0.01287021279335022 +illusion_0.75L,ppo,241,48.2,omega,lower,0.015745696723461152 +illusion_0.75L,ppo,242,48.4,omega,front,-0.016500673294067382 +illusion_0.75L,ppo,242,48.4,omega,upper,-0.01064178466796875 +illusion_0.75L,ppo,242,48.4,omega,lower,0.016907839179039003 +illusion_0.75L,ppo,243,48.6,omega,front,-0.016598944664001466 +illusion_0.75L,ppo,243,48.6,omega,upper,-0.008870843648910522 +illusion_0.75L,ppo,243,48.6,omega,lower,0.018040986061096193 +illusion_0.75L,ppo,244,48.8,omega,front,-0.01634490966796875 +illusion_0.75L,ppo,244,48.8,omega,upper,-0.007522648572921753 +illusion_0.75L,ppo,244,48.8,omega,lower,0.019124796837568285 +illusion_0.75L,ppo,245,49.0,omega,front,-0.015986407995223998 +illusion_0.75L,ppo,245,49.0,omega,upper,-0.006554552316665649 +illusion_0.75L,ppo,245,49.0,omega,lower,0.020070251896977424 +illusion_0.75L,ppo,246,49.2,omega,front,-0.015361692905426026 +illusion_0.75L,ppo,246,49.2,omega,upper,-0.006035987138748169 +illusion_0.75L,ppo,246,49.2,omega,lower,0.021075081154704096 +illusion_0.75L,ppo,247,49.4,omega,front,-0.014720165729522705 +illusion_0.75L,ppo,247,49.4,omega,upper,-0.005692161321640014 +illusion_0.75L,ppo,247,49.4,omega,lower,0.02209898263216019 +illusion_0.75L,ppo,248,49.6,omega,front,-0.013860263824462891 +illusion_0.75L,ppo,248,49.6,omega,upper,-0.005793004035949707 +illusion_0.75L,ppo,248,49.6,omega,lower,0.023220148980617524 +illusion_0.75L,ppo,249,49.8,omega,front,-0.012902534008026123 +illusion_0.75L,ppo,249,49.8,omega,upper,-0.006228108406066895 +illusion_0.75L,ppo,249,49.8,omega,lower,0.024322874546051025 +illusion_0.75L,ppo,250,50.0,omega,front,-0.011750717163085938 +illusion_0.75L,ppo,250,50.0,omega,upper,-0.00696524977684021 +illusion_0.75L,ppo,250,50.0,omega,lower,0.025395563244819643 +illusion_0.75L,ppo,251,50.2,omega,front,-0.010576101541519166 +illusion_0.75L,ppo,251,50.2,omega,upper,-0.007880576848983765 +illusion_0.75L,ppo,251,50.2,omega,lower,0.02616328716278076 +illusion_0.75L,ppo,252,50.4,omega,front,-0.009441137909889222 +illusion_0.75L,ppo,252,50.4,omega,upper,-0.008801724910736084 +illusion_0.75L,ppo,252,50.4,omega,lower,0.02650373935699463 +illusion_0.75L,ppo,253,50.6,omega,front,-0.008454777002334594 +illusion_0.75L,ppo,253,50.6,omega,upper,-0.009581140279769898 +illusion_0.75L,ppo,253,50.6,omega,lower,0.026324374675750734 +illusion_0.75L,ppo,254,50.8,omega,front,-0.007878599166870117 +illusion_0.75L,ppo,254,50.8,omega,upper,-0.009915729761123657 +illusion_0.75L,ppo,254,50.8,omega,lower,0.025530959367752074 +illusion_0.75L,ppo,255,51.0,omega,front,-0.007784587144851684 +illusion_0.75L,ppo,255,51.0,omega,upper,-0.009964208602905273 +illusion_0.75L,ppo,255,51.0,omega,lower,0.02417473793029785 +illusion_0.75L,ppo,256,51.2,omega,front,-0.008040362000465394 +illusion_0.75L,ppo,256,51.2,omega,upper,-0.010016725063323975 +illusion_0.75L,ppo,256,51.2,omega,lower,0.02262830525636673 +illusion_0.75L,ppo,257,51.4,omega,front,-0.008802464008331299 +illusion_0.75L,ppo,257,51.4,omega,upper,-0.010415898561477661 +illusion_0.75L,ppo,257,51.4,omega,lower,0.02094281740486622 +illusion_0.75L,ppo,258,51.6,omega,front,-0.009789851903915405 +illusion_0.75L,ppo,258,51.6,omega,upper,-0.01139001727104187 +illusion_0.75L,ppo,258,51.6,omega,lower,0.019326852560043337 +illusion_0.75L,ppo,259,51.8,omega,front,-0.010741000175476075 +illusion_0.75L,ppo,259,51.8,omega,upper,-0.012980259656906128 +illusion_0.75L,ppo,259,51.8,omega,lower,0.017803133130073548 +illusion_0.75L,ppo,260,52.0,omega,front,-0.011627200841903686 +illusion_0.75L,ppo,260,52.0,omega,upper,-0.014827589392662049 +illusion_0.75L,ppo,260,52.0,omega,lower,0.016312048137187958 +illusion_0.75L,ppo,261,52.2,omega,front,-0.012295951843261719 +illusion_0.75L,ppo,261,52.2,omega,upper,-0.01680204302072525 +illusion_0.75L,ppo,261,52.2,omega,lower,0.014905365705490113 +illusion_0.75L,ppo,262,52.4,omega,front,-0.012730402946472168 +illusion_0.75L,ppo,262,52.4,omega,upper,-0.018549681305885315 +illusion_0.75L,ppo,262,52.4,omega,lower,0.013700115084648133 +illusion_0.75L,ppo,263,52.6,omega,front,-0.012901360988616944 +illusion_0.75L,ppo,263,52.6,omega,upper,-0.02006319344043732 +illusion_0.75L,ppo,263,52.6,omega,lower,0.012723739743232727 +illusion_0.75L,ppo,264,52.8,omega,front,-0.012811529636383058 +illusion_0.75L,ppo,264,52.8,omega,upper,-0.021254027783870696 +illusion_0.75L,ppo,264,52.8,omega,lower,0.012105337381362916 +illusion_0.75L,ppo,265,53.0,omega,front,-0.01240352749824524 +illusion_0.75L,ppo,265,53.0,omega,upper,-0.022189387977123262 +illusion_0.75L,ppo,265,53.0,omega,lower,0.011994820833206177 +illusion_0.75L,ppo,266,53.2,omega,front,-0.01214198112487793 +illusion_0.75L,ppo,266,53.2,omega,upper,-0.022418632805347442 +illusion_0.75L,ppo,266,53.2,omega,lower,0.012250535488128662 +illusion_0.75L,ppo,267,53.4,omega,front,-0.012446014881134034 +illusion_0.75L,ppo,267,53.4,omega,upper,-0.02149117261171341 +illusion_0.75L,ppo,267,53.4,omega,lower,0.012698854804039001 +illusion_0.75L,ppo,268,53.6,omega,front,-0.013171026706695557 +illusion_0.75L,ppo,268,53.6,omega,upper,-0.019527217745780947 +illusion_0.75L,ppo,268,53.6,omega,lower,0.01334913730621338 +illusion_0.75L,ppo,269,53.8,omega,front,-0.01434988021850586 +illusion_0.75L,ppo,269,53.8,omega,upper,-0.01684251695871353 +illusion_0.75L,ppo,269,53.8,omega,lower,0.014055036306381226 +illusion_0.75L,ppo,270,54.0,omega,front,-0.015371764898300172 +illusion_0.75L,ppo,270,54.0,omega,upper,-0.014193652272224426 +illusion_0.75L,ppo,270,54.0,omega,lower,0.015013920664787293 +illusion_0.75L,ppo,271,54.2,omega,front,-0.016035476922988894 +illusion_0.75L,ppo,271,54.2,omega,upper,-0.011776884198188783 +illusion_0.75L,ppo,271,54.2,omega,lower,0.016212356984615327 +illusion_0.75L,ppo,272,54.4,omega,front,-0.016516718864440918 +illusion_0.75L,ppo,272,54.4,omega,upper,-0.009848531484603882 +illusion_0.75L,ppo,272,54.4,omega,lower,0.017239317297935486 +illusion_0.75L,ppo,273,54.6,omega,front,-0.016501080989837647 +illusion_0.75L,ppo,273,54.6,omega,upper,-0.008341734409332276 +illusion_0.75L,ppo,273,54.6,omega,lower,0.01834262698888779 +illusion_0.75L,ppo,274,54.8,omega,front,-0.016235032081604005 +illusion_0.75L,ppo,274,54.8,omega,upper,-0.007210874557495118 +illusion_0.75L,ppo,274,54.8,omega,lower,0.019369104579091072 +illusion_0.75L,ppo,275,55.0,omega,front,-0.015779807567596435 +illusion_0.75L,ppo,275,55.0,omega,upper,-0.006534783840179443 +illusion_0.75L,ppo,275,55.0,omega,lower,0.02033479541540146 +illusion_0.75L,ppo,276,55.2,omega,front,-0.015237243175506593 +illusion_0.75L,ppo,276,55.2,omega,upper,-0.006165704727172852 +illusion_0.75L,ppo,276,55.2,omega,lower,0.02129449784755707 +illusion_0.75L,ppo,277,55.4,omega,front,-0.014482028484344482 +illusion_0.75L,ppo,277,55.4,omega,upper,-0.006131099462509155 +illusion_0.75L,ppo,277,55.4,omega,lower,0.02237407475709915 +illusion_0.75L,ppo,278,55.6,omega,front,-0.013648693561553956 +illusion_0.75L,ppo,278,55.6,omega,upper,-0.006365090608596802 +illusion_0.75L,ppo,278,55.6,omega,lower,0.023452827334403993 +illusion_0.75L,ppo,279,55.8,omega,front,-0.012729594707489014 +illusion_0.75L,ppo,279,55.8,omega,upper,-0.006799640655517579 +illusion_0.75L,ppo,279,55.8,omega,lower,0.02447966992855072 +illusion_0.75L,ppo,280,56.0,omega,front,-0.011545709371566773 +illusion_0.75L,ppo,280,56.0,omega,upper,-0.0076110148429870605 +illusion_0.75L,ppo,280,56.0,omega,lower,0.02539463222026825 +illusion_0.75L,ppo,281,56.2,omega,front,-0.01034176468849182 +illusion_0.75L,ppo,281,56.2,omega,upper,-0.008336002826690675 +illusion_0.75L,ppo,281,56.2,omega,lower,0.026049631237983706 +illusion_0.75L,ppo,282,56.4,omega,front,-0.009155853390693665 +illusion_0.75L,ppo,282,56.4,omega,upper,-0.009214452505111695 +illusion_0.75L,ppo,282,56.4,omega,lower,0.026204323172569276 +illusion_0.75L,ppo,283,56.6,omega,front,-0.008259490132331848 +illusion_0.75L,ppo,283,56.6,omega,upper,-0.009650510549545289 +illusion_0.75L,ppo,283,56.6,omega,lower,0.025846696496009826 +illusion_0.75L,ppo,284,56.8,omega,front,-0.007879955172538757 +illusion_0.75L,ppo,284,56.8,omega,upper,-0.009692450761795044 +illusion_0.75L,ppo,284,56.8,omega,lower,0.024824180006980896 +illusion_0.75L,ppo,285,57.0,omega,front,-0.007899251580238343 +illusion_0.75L,ppo,285,57.0,omega,upper,-0.00965710163116455 +illusion_0.75L,ppo,285,57.0,omega,lower,0.023414632976055144 +illusion_0.75L,ppo,286,57.2,omega,front,-0.00843646764755249 +illusion_0.75L,ppo,286,57.2,omega,upper,-0.009827214479446412 +illusion_0.75L,ppo,286,57.2,omega,lower,0.02179026246070862 +illusion_0.75L,ppo,287,57.4,omega,front,-0.009211424589157104 +illusion_0.75L,ppo,287,57.4,omega,upper,-0.010524473190307618 +illusion_0.75L,ppo,287,57.4,omega,lower,0.020303243324160575 +illusion_0.75L,ppo,288,57.6,omega,front,-0.010088802576065063 +illusion_0.75L,ppo,288,57.6,omega,upper,-0.011848522424697876 +illusion_0.75L,ppo,288,57.6,omega,lower,0.01889315515756607 +illusion_0.75L,ppo,289,57.8,omega,front,-0.010995174646377564 +illusion_0.75L,ppo,289,57.8,omega,upper,-0.013583295941352845 +illusion_0.75L,ppo,289,57.8,omega,lower,0.017451243698596956 +illusion_0.75L,ppo,290,58.0,omega,front,-0.01177694320678711 +illusion_0.75L,ppo,290,58.0,omega,upper,-0.015484789311885834 +illusion_0.75L,ppo,290,58.0,omega,lower,0.016008403301239014 +illusion_0.75L,ppo,291,58.2,omega,front,-0.012391018867492677 +illusion_0.75L,ppo,291,58.2,omega,upper,-0.017300911843776703 +illusion_0.75L,ppo,291,58.2,omega,lower,0.014628305435180664 +illusion_0.75L,ppo,292,58.4,omega,front,-0.012741837501525879 +illusion_0.75L,ppo,292,58.4,omega,upper,-0.018899820148944854 +illusion_0.75L,ppo,292,58.4,omega,lower,0.01347220003604889 +illusion_0.75L,ppo,293,58.6,omega,front,-0.012826002836227417 +illusion_0.75L,ppo,293,58.6,omega,upper,-0.02021296352148056 +illusion_0.75L,ppo,293,58.6,omega,lower,0.012625689506530762 +illusion_0.75L,ppo,294,58.8,omega,front,-0.012540326118469239 +illusion_0.75L,ppo,294,58.8,omega,upper,-0.0213871231675148 +illusion_0.75L,ppo,294,58.8,omega,lower,0.012223461866378784 +illusion_0.75L,ppo,295,59.0,omega,front,-0.012155404090881347 +illusion_0.75L,ppo,295,59.0,omega,upper,-0.022102576792240144 +illusion_0.75L,ppo,295,59.0,omega,lower,0.012277824282646179 +illusion_0.75L,ppo,296,59.2,omega,front,-0.012198803424835205 +illusion_0.75L,ppo,296,59.2,omega,upper,-0.021932707130908967 +illusion_0.75L,ppo,296,59.2,omega,lower,0.012540282011032106 +illusion_0.75L,ppo,297,59.4,omega,front,-0.01275782823562622 +illusion_0.75L,ppo,297,59.4,omega,upper,-0.02061112076044083 +illusion_0.75L,ppo,297,59.4,omega,lower,0.013011894822120666 +illusion_0.75L,ppo,298,59.6,omega,front,-0.0138032066822052 +illusion_0.75L,ppo,298,59.6,omega,upper,-0.018297203183174134 +illusion_0.75L,ppo,298,59.6,omega,lower,0.013648537993431091 +illusion_0.75L,ppo,299,59.8,omega,front,-0.014923076629638671 +illusion_0.75L,ppo,299,59.8,omega,upper,-0.01574770987033844 +illusion_0.75L,ppo,299,59.8,omega,lower,0.01447487473487854 +illusion_0.75L,ppo,300,60.0,omega,front,-0.01582520842552185 +illusion_0.75L,ppo,300,60.0,omega,upper,-0.013333628177642822 +illusion_0.75L,ppo,300,60.0,omega,lower,0.015515776872634888 +illusion_0.75L,ppo,301,60.2,omega,front,-0.016495178937911987 +illusion_0.75L,ppo,301,60.2,omega,upper,-0.011207308769226074 +illusion_0.75L,ppo,301,60.2,omega,lower,0.01656024843454361 +illusion_0.75L,ppo,302,60.4,omega,front,-0.01661851167678833 +illusion_0.75L,ppo,302,60.4,omega,upper,-0.009569023847579957 +illusion_0.75L,ppo,302,60.4,omega,lower,0.01767704278230667 +illusion_0.75L,ppo,303,60.6,omega,front,-0.016548807621002196 +illusion_0.75L,ppo,303,60.6,omega,upper,-0.008229066133499146 +illusion_0.75L,ppo,303,60.6,omega,lower,0.018658288419246674 +illusion_0.75L,ppo,304,60.8,omega,front,-0.016424863338470458 +illusion_0.75L,ppo,304,60.8,omega,upper,-0.007331650257110596 +illusion_0.75L,ppo,304,60.8,omega,lower,0.019406924471259118 +illusion_0.75L,ppo,305,61.0,omega,front,-0.015799484252929687 +illusion_0.75L,ppo,305,61.0,omega,upper,-0.0067507195472717284 +illusion_0.75L,ppo,305,61.0,omega,lower,0.020497668460011484 +illusion_0.75L,ppo,306,61.2,omega,front,-0.015184702873229981 +illusion_0.75L,ppo,306,61.2,omega,upper,-0.00643613338470459 +illusion_0.75L,ppo,306,61.2,omega,lower,0.02151291161775589 +illusion_0.75L,ppo,307,61.4,omega,front,-0.014399988651275635 +illusion_0.75L,ppo,307,61.4,omega,upper,-0.006452786922454834 +illusion_0.75L,ppo,307,61.4,omega,lower,0.02258583724498749 +illusion_0.75L,ppo,308,61.6,omega,front,-0.013554079532623291 +illusion_0.75L,ppo,308,61.6,omega,upper,-0.006687332391738892 +illusion_0.75L,ppo,308,61.6,omega,lower,0.023623478412628175 +illusion_0.75L,ppo,309,61.8,omega,front,-0.012498871088027955 +illusion_0.75L,ppo,309,61.8,omega,upper,-0.00717132568359375 +illusion_0.75L,ppo,309,61.8,omega,lower,0.024659958481788636 +illusion_0.75L,ppo,310,62.0,omega,front,-0.011318693161010742 +illusion_0.75L,ppo,310,62.0,omega,upper,-0.007894891500473022 +illusion_0.75L,ppo,310,62.0,omega,lower,0.025479921698570253 +illusion_0.75L,ppo,311,62.2,omega,front,-0.010046327114105224 +illusion_0.75L,ppo,311,62.2,omega,upper,-0.00870168924331665 +illusion_0.75L,ppo,311,62.2,omega,lower,0.02598521053791046 +illusion_0.75L,ppo,312,62.4,omega,front,-0.008942569494247437 +illusion_0.75L,ppo,312,62.4,omega,upper,-0.009334976673126221 +illusion_0.75L,ppo,312,62.4,omega,lower,0.025975365042686462 +illusion_0.75L,ppo,313,62.6,omega,front,-0.008171977400779724 +illusion_0.75L,ppo,313,62.6,omega,upper,-0.009627491235733032 +illusion_0.75L,ppo,313,62.6,omega,lower,0.02538055181503296 +illusion_0.75L,ppo,314,62.8,omega,front,-0.007994477152824402 +illusion_0.75L,ppo,314,62.8,omega,upper,-0.009554681777954101 +illusion_0.75L,ppo,314,62.8,omega,lower,0.02416108399629593 +illusion_0.75L,ppo,315,63.0,omega,front,-0.008117124438285828 +illusion_0.75L,ppo,315,63.0,omega,upper,-0.009504926204681397 +illusion_0.75L,ppo,315,63.0,omega,lower,0.02279624789953232 +illusion_0.75L,ppo,316,63.2,omega,front,-0.008615664243698121 +illusion_0.75L,ppo,316,63.2,omega,upper,-0.009828076362609864 +illusion_0.75L,ppo,316,63.2,omega,lower,0.021427924036979677 +illusion_0.75L,ppo,317,63.4,omega,front,-0.00943168818950653 +illusion_0.75L,ppo,317,63.4,omega,upper,-0.010766306519508361 +illusion_0.75L,ppo,317,63.4,omega,lower,0.02004881262779236 +illusion_0.75L,ppo,318,63.6,omega,front,-0.01027516007423401 +illusion_0.75L,ppo,318,63.6,omega,upper,-0.012266808748245239 +illusion_0.75L,ppo,318,63.6,omega,lower,0.018704752326011657 +illusion_0.75L,ppo,319,63.8,omega,front,-0.01114354133605957 +illusion_0.75L,ppo,319,63.8,omega,upper,-0.014087865352630615 +illusion_0.75L,ppo,319,63.8,omega,lower,0.017255837619304656 +illusion_0.75L,ppo,320,64.0,omega,front,-0.011868143081665039 +illusion_0.75L,ppo,320,64.0,omega,upper,-0.015996856689453127 +illusion_0.75L,ppo,320,64.0,omega,lower,0.01581906318664551 +illusion_0.75L,ppo,321,64.2,omega,front,-0.012462209463119506 +illusion_0.75L,ppo,321,64.2,omega,upper,-0.01773812159895897 +illusion_0.75L,ppo,321,64.2,omega,lower,0.014445418119430542 +illusion_0.75L,ppo,322,64.4,omega,front,-0.012605922222137451 +illusion_0.75L,ppo,322,64.4,omega,upper,-0.01930305153131485 +illusion_0.75L,ppo,322,64.4,omega,lower,0.013451236486434938 +illusion_0.75L,ppo,323,64.6,omega,front,-0.012604022026062011 +illusion_0.75L,ppo,323,64.6,omega,upper,-0.020612185895442964 +illusion_0.75L,ppo,323,64.6,omega,lower,0.012655312418937683 +illusion_0.75L,ppo,324,64.8,omega,front,-0.012330052852630615 +illusion_0.75L,ppo,324,64.8,omega,upper,-0.021588626205921172 +illusion_0.75L,ppo,324,64.8,omega,lower,0.012314897179603577 +illusion_0.75L,ppo,325,65.0,omega,front,-0.01210057020187378 +illusion_0.75L,ppo,325,65.0,omega,upper,-0.02210716813802719 +illusion_0.75L,ppo,325,65.0,omega,lower,0.012331767678260804 +illusion_0.75L,ppo,326,65.2,omega,front,-0.012166697978973389 +illusion_0.75L,ppo,326,65.2,omega,upper,-0.021614652574062348 +illusion_0.75L,ppo,326,65.2,omega,lower,0.012745023369789124 +illusion_0.75L,ppo,327,65.4,omega,front,-0.012976410388946534 +illusion_0.75L,ppo,327,65.4,omega,upper,-0.019865918159484863 +illusion_0.75L,ppo,327,65.4,omega,lower,0.013212296962738037 +illusion_0.75L,ppo,328,65.6,omega,front,-0.013943619728088379 +illusion_0.75L,ppo,328,65.6,omega,upper,-0.01759532392024994 +illusion_0.75L,ppo,328,65.6,omega,lower,0.013929884433746337 +illusion_0.75L,ppo,329,65.8,omega,front,-0.015096845626831055 +illusion_0.75L,ppo,329,65.8,omega,upper,-0.014958699345588685 +illusion_0.75L,ppo,329,65.8,omega,lower,0.014788906574249267 +illusion_0.75L,ppo,330,66.0,omega,front,-0.01595433712005615 +illusion_0.75L,ppo,330,66.0,omega,upper,-0.012634093761444093 +illusion_0.75L,ppo,330,66.0,omega,lower,0.015805947482585906 +illusion_0.75L,ppo,331,66.2,omega,front,-0.016592055559158325 +illusion_0.75L,ppo,331,66.2,omega,upper,-0.010611879825592042 +illusion_0.75L,ppo,331,66.2,omega,lower,0.016794585287570954 +illusion_0.75L,ppo,332,66.4,omega,front,-0.01676188111305237 +illusion_0.75L,ppo,332,66.4,omega,upper,-0.009254995584487915 +illusion_0.75L,ppo,332,66.4,omega,lower,0.017724156975746155 +illusion_0.75L,ppo,333,66.6,omega,front,-0.016600942611694335 +illusion_0.75L,ppo,333,66.6,omega,upper,-0.008077352046966553 +illusion_0.75L,ppo,333,66.6,omega,lower,0.018723379373550415 +illusion_0.75L,ppo,334,66.8,omega,front,-0.01627976179122925 +illusion_0.75L,ppo,334,66.8,omega,upper,-0.00719738245010376 +illusion_0.75L,ppo,334,66.8,omega,lower,0.019671940207481385 +illusion_0.75L,ppo,335,67.0,omega,front,-0.01577118635177612 +illusion_0.75L,ppo,335,67.0,omega,upper,-0.00677717924118042 +illusion_0.75L,ppo,335,67.0,omega,lower,0.020588855519890786 +illusion_0.75L,ppo,336,67.2,omega,front,-0.014926773309707642 +illusion_0.75L,ppo,336,67.2,omega,upper,-0.006630158424377442 +illusion_0.75L,ppo,336,67.2,omega,lower,0.021739368438720704 +illusion_0.75L,ppo,337,67.4,omega,front,-0.014386662244796754 +illusion_0.75L,ppo,337,67.4,omega,upper,-0.0065820634365081785 +illusion_0.75L,ppo,337,67.4,omega,lower,0.022627443671226502 +illusion_0.75L,ppo,338,67.6,omega,front,-0.013190287351608277 +illusion_0.75L,ppo,338,67.6,omega,upper,-0.0070697820186615 +illusion_0.75L,ppo,338,67.6,omega,lower,0.0238712877035141 +illusion_0.75L,ppo,339,67.8,omega,front,-0.012315775156021119 +illusion_0.75L,ppo,339,67.8,omega,upper,-0.007499203681945801 +illusion_0.75L,ppo,339,67.8,omega,lower,0.024736592769622805 +illusion_0.75L,ppo,340,68.0,omega,front,-0.010993117094039917 +illusion_0.75L,ppo,340,68.0,omega,upper,-0.008209898471832275 +illusion_0.75L,ppo,340,68.0,omega,lower,0.025590858459472655 +illusion_0.75L,ppo,341,68.2,omega,front,-0.009859098196029663 +illusion_0.75L,ppo,341,68.2,omega,upper,-0.008940025568008422 +illusion_0.75L,ppo,341,68.2,omega,lower,0.025866310000419616 +illusion_0.75L,ppo,342,68.4,omega,front,-0.00882206678390503 +illusion_0.75L,ppo,342,68.4,omega,upper,-0.009498263597488404 +illusion_0.75L,ppo,342,68.4,omega,lower,0.025687580704689027 +illusion_0.75L,ppo,343,68.6,omega,front,-0.008229589462280274 +illusion_0.75L,ppo,343,68.6,omega,upper,-0.00956798791885376 +illusion_0.75L,ppo,343,68.6,omega,lower,0.02492630898952484 +illusion_0.75L,ppo,344,68.8,omega,front,-0.007974380850791931 +illusion_0.75L,ppo,344,68.8,omega,upper,-0.009427603483200073 +illusion_0.75L,ppo,344,68.8,omega,lower,0.023805313110351563 +illusion_0.75L,ppo,345,69.0,omega,front,-0.008289140462875367 +illusion_0.75L,ppo,345,69.0,omega,upper,-0.009466983079910278 +illusion_0.75L,ppo,345,69.0,omega,lower,0.02235164761543274 +illusion_0.75L,ppo,346,69.2,omega,front,-0.008955547213554382 +illusion_0.75L,ppo,346,69.2,omega,upper,-0.009869933128356934 +illusion_0.75L,ppo,346,69.2,omega,lower,0.020951702669262887 +illusion_0.75L,ppo,347,69.4,omega,front,-0.009745478630065918 +illusion_0.75L,ppo,347,69.4,omega,upper,-0.010886597633361817 +illusion_0.75L,ppo,347,69.4,omega,lower,0.019669259563088418 +illusion_0.75L,ppo,348,69.6,omega,front,-0.010528081655502319 +illusion_0.75L,ppo,348,69.6,omega,upper,-0.012517457008361817 +illusion_0.75L,ppo,348,69.6,omega,lower,0.01837503716349602 +illusion_0.75L,ppo,349,69.8,omega,front,-0.011256495714187622 +illusion_0.75L,ppo,349,69.8,omega,upper,-0.01441339373588562 +illusion_0.75L,ppo,349,69.8,omega,lower,0.017036450803279878 +illusion_0.75L,ppo,350,70.0,omega,front,-0.011875483989715576 +illusion_0.75L,ppo,350,70.0,omega,upper,-0.016321610808372498 +illusion_0.75L,ppo,350,70.0,omega,lower,0.0156910040974617 +illusion_0.75L,ppo,351,70.2,omega,front,-0.012361055612564087 +illusion_0.75L,ppo,351,70.2,omega,upper,-0.018055049777030947 +illusion_0.75L,ppo,351,70.2,omega,lower,0.014399903416633606 +illusion_0.75L,ppo,352,70.4,omega,front,-0.012594349384307861 +illusion_0.75L,ppo,352,70.4,omega,upper,-0.01953589677810669 +illusion_0.75L,ppo,352,70.4,omega,lower,0.013326035737991333 +illusion_0.75L,ppo,353,70.6,omega,front,-0.012539194822311401 +illusion_0.75L,ppo,353,70.6,omega,upper,-0.020745550692081453 +illusion_0.75L,ppo,353,70.6,omega,lower,0.012615531086921691 +illusion_0.75L,ppo,354,70.8,omega,front,-0.012248458862304688 +illusion_0.75L,ppo,354,70.8,omega,upper,-0.021681730449199677 +illusion_0.75L,ppo,354,70.8,omega,lower,0.012346363663673402 +illusion_0.75L,ppo,355,71.0,omega,front,-0.012097024917602539 +illusion_0.75L,ppo,355,71.0,omega,upper,-0.02204133480787277 +illusion_0.75L,ppo,355,71.0,omega,lower,0.012422555088996888 +illusion_0.75L,ppo,356,71.2,omega,front,-0.012276182174682617 +illusion_0.75L,ppo,356,71.2,omega,upper,-0.021247835457324983 +illusion_0.75L,ppo,356,71.2,omega,lower,0.012907963395118714 +illusion_0.75L,ppo,357,71.4,omega,front,-0.013141087293624879 +illusion_0.75L,ppo,357,71.4,omega,upper,-0.01927968770265579 +illusion_0.75L,ppo,357,71.4,omega,lower,0.013433642983436585 +illusion_0.75L,ppo,358,71.6,omega,front,-0.014307413101196289 +illusion_0.75L,ppo,358,71.6,omega,upper,-0.01678795546293259 +illusion_0.75L,ppo,358,71.6,omega,lower,0.014084327816963196 +illusion_0.75L,ppo,359,71.8,omega,front,-0.015419416427612305 +illusion_0.75L,ppo,359,71.8,omega,upper,-0.014197582006454467 +illusion_0.75L,ppo,359,71.8,omega,lower,0.01498659908771515 +illusion_0.75L,ppo,360,72.0,omega,front,-0.01617948055267334 +illusion_0.75L,ppo,360,72.0,omega,upper,-0.012092359066009521 +illusion_0.75L,ppo,360,72.0,omega,lower,0.016017898619174957 +illusion_0.75L,ppo,361,72.2,omega,front,-0.01661996364593506 +illusion_0.75L,ppo,361,72.2,omega,upper,-0.010361851453781127 +illusion_0.75L,ppo,361,72.2,omega,lower,0.017053467333316804 +illusion_0.75L,ppo,362,72.4,omega,front,-0.01669493079185486 +illusion_0.75L,ppo,362,72.4,omega,upper,-0.008985413312911987 +illusion_0.75L,ppo,362,72.4,omega,lower,0.018060413748025896 +illusion_0.75L,ppo,363,72.6,omega,front,-0.01655938982963562 +illusion_0.75L,ppo,363,72.6,omega,upper,-0.008136942386627197 +illusion_0.75L,ppo,363,72.6,omega,lower,0.018864252865314485 +illusion_0.75L,ppo,364,72.8,omega,front,-0.016206157207489014 +illusion_0.75L,ppo,364,72.8,omega,upper,-0.007387214899063111 +illusion_0.75L,ppo,364,72.8,omega,lower,0.019778962805867197 +illusion_0.75L,ppo,365,73.0,omega,front,-0.015740008354187013 +illusion_0.75L,ppo,365,73.0,omega,upper,-0.006956846714019776 +illusion_0.75L,ppo,365,73.0,omega,lower,0.020669383481144905 +illusion_0.75L,ppo,366,73.2,omega,front,-0.01512352705001831 +illusion_0.75L,ppo,366,73.2,omega,upper,-0.006725465059280396 +illusion_0.75L,ppo,366,73.2,omega,lower,0.021667295992374422 +illusion_0.75L,ppo,367,73.4,omega,front,-0.014222142696380615 +illusion_0.75L,ppo,367,73.4,omega,upper,-0.006862912178039551 +illusion_0.75L,ppo,367,73.4,omega,lower,0.02279962509870529 +illusion_0.75L,ppo,368,73.6,omega,front,-0.013355293273925782 +illusion_0.75L,ppo,368,73.6,omega,upper,-0.007135814428329468 +illusion_0.75L,ppo,368,73.6,omega,lower,0.02379111498594284 +illusion_0.75L,ppo,369,73.8,omega,front,-0.012098758220672608 +illusion_0.75L,ppo,369,73.8,omega,upper,-0.00767175555229187 +illusion_0.75L,ppo,369,73.8,omega,lower,0.024849641919136047 +illusion_0.75L,ppo,370,74.0,omega,front,-0.010944124460220337 +illusion_0.75L,ppo,370,74.0,omega,upper,-0.008275008201599121 +illusion_0.75L,ppo,370,74.0,omega,lower,0.02549218475818634 +illusion_0.75L,ppo,371,74.2,omega,front,-0.00966334640979767 +illusion_0.75L,ppo,371,74.2,omega,upper,-0.009033347368240357 +illusion_0.75L,ppo,371,74.2,omega,lower,0.02578866183757782 +illusion_0.75L,ppo,372,74.4,omega,front,-0.008624455332756043 +illusion_0.75L,ppo,372,74.4,omega,upper,-0.009525184631347657 +illusion_0.75L,ppo,372,74.4,omega,lower,0.025566409826278686 +illusion_0.75L,ppo,373,74.6,omega,front,-0.008042964339256286 +illusion_0.75L,ppo,373,74.6,omega,upper,-0.009617538452148437 +illusion_0.75L,ppo,373,74.6,omega,lower,0.02475667655467987 +illusion_0.75L,ppo,374,74.8,omega,front,-0.008042668104171754 +illusion_0.75L,ppo,374,74.8,omega,upper,-0.009465701580047607 +illusion_0.75L,ppo,374,74.8,omega,lower,0.02344570219516754 +illusion_0.75L,ppo,375,75.0,omega,front,-0.008414143323898315 +illusion_0.75L,ppo,375,75.0,omega,upper,-0.00949057936668396 +illusion_0.75L,ppo,375,75.0,omega,lower,0.022058675587177275 +illusion_0.75L,ppo,376,75.2,omega,front,-0.009183784127235414 +illusion_0.75L,ppo,376,75.2,omega,upper,-0.010014092922210694 +illusion_0.75L,ppo,376,75.2,omega,lower,0.02065575249493122 +illusion_0.75L,ppo,377,75.4,omega,front,-0.00987912654876709 +illusion_0.75L,ppo,377,75.4,omega,upper,-0.011199997663497925 +illusion_0.75L,ppo,377,75.4,omega,lower,0.01947070945054293 +illusion_0.75L,ppo,378,75.6,omega,front,-0.010625700950622558 +illusion_0.75L,ppo,378,75.6,omega,upper,-0.012828053236007692 +illusion_0.75L,ppo,378,75.6,omega,lower,0.0182249017059803 +illusion_0.75L,ppo,379,75.8,omega,front,-0.0113226056098938 +illusion_0.75L,ppo,379,75.8,omega,upper,-0.014668694734573365 +illusion_0.75L,ppo,379,75.8,omega,lower,0.016892544329166412 +illusion_0.75L,ppo,380,76.0,omega,front,-0.01193964958190918 +illusion_0.75L,ppo,380,76.0,omega,upper,-0.01646156430244446 +illusion_0.75L,ppo,380,76.0,omega,lower,0.01553045004606247 +illusion_0.75L,ppo,381,76.2,omega,front,-0.012368168830871582 +illusion_0.75L,ppo,381,76.2,omega,upper,-0.018061399459838867 +illusion_0.75L,ppo,381,76.2,omega,lower,0.014304428100585938 +illusion_0.75L,ppo,382,76.4,omega,front,-0.012472230195999147 +illusion_0.75L,ppo,382,76.4,omega,upper,-0.019582163095474243 +illusion_0.75L,ppo,382,76.4,omega,lower,0.01333137571811676 +illusion_0.75L,ppo,383,76.6,omega,front,-0.012204068899154664 +illusion_0.75L,ppo,383,76.6,omega,upper,-0.020890441238880158 +illusion_0.75L,ppo,383,76.6,omega,lower,0.012799797058105468 +illusion_0.75L,ppo,384,76.8,omega,front,-0.011994750499725343 +illusion_0.75L,ppo,384,76.8,omega,upper,-0.021678523719310762 +illusion_0.75L,ppo,384,76.8,omega,lower,0.012575103044509888 +illusion_0.75L,ppo,385,77.0,omega,front,-0.011901021003723145 +illusion_0.75L,ppo,385,77.0,omega,upper,-0.02193639725446701 +illusion_0.75L,ppo,385,77.0,omega,lower,0.012673668265342712 +illusion_0.75L,ppo,386,77.2,omega,front,-0.012309324741363526 +illusion_0.75L,ppo,386,77.2,omega,upper,-0.02100056439638138 +illusion_0.75L,ppo,386,77.2,omega,lower,0.013021809458732604 +illusion_0.75L,ppo,387,77.4,omega,front,-0.013286204338073732 +illusion_0.75L,ppo,387,77.4,omega,upper,-0.018937112987041475 +illusion_0.75L,ppo,387,77.4,omega,lower,0.013500741720199586 +illusion_0.75L,ppo,388,77.6,omega,front,-0.01450328826904297 +illusion_0.75L,ppo,388,77.6,omega,upper,-0.0164148211479187 +illusion_0.75L,ppo,388,77.6,omega,lower,0.014147921800613403 +illusion_0.75L,ppo,389,77.8,omega,front,-0.015487804412841798 +illusion_0.75L,ppo,389,77.8,omega,upper,-0.0139006906747818 +illusion_0.75L,ppo,389,77.8,omega,lower,0.015146970450878143 +illusion_0.75L,ppo,390,78.0,omega,front,-0.01624171495437622 +illusion_0.75L,ppo,390,78.0,omega,upper,-0.011777392625808717 +illusion_0.75L,ppo,390,78.0,omega,lower,0.016169701516628266 +illusion_0.75L,ppo,391,78.2,omega,front,-0.016643828153610228 +illusion_0.75L,ppo,391,78.2,omega,upper,-0.010141843557357788 +illusion_0.75L,ppo,391,78.2,omega,lower,0.017147328853607178 +illusion_0.75L,ppo,392,78.4,omega,front,-0.016685416698455812 +illusion_0.75L,ppo,392,78.4,omega,upper,-0.008835349082946777 +illusion_0.75L,ppo,392,78.4,omega,lower,0.018123530745506287 +illusion_0.75L,ppo,393,78.6,omega,front,-0.016565827131271364 +illusion_0.75L,ppo,393,78.6,omega,upper,-0.007916697263717652 +illusion_0.75L,ppo,393,78.6,omega,lower,0.018962994813919068 +illusion_0.75L,ppo,394,78.8,omega,front,-0.016087768077850343 +illusion_0.75L,ppo,394,78.8,omega,upper,-0.007387903928756714 +illusion_0.75L,ppo,394,78.8,omega,lower,0.01993683010339737 +illusion_0.75L,ppo,395,79.0,omega,front,-0.015630810260772704 +illusion_0.75L,ppo,395,79.0,omega,upper,-0.007084285020828247 +illusion_0.75L,ppo,395,79.0,omega,lower,0.020814737752079964 +illusion_0.75L,ppo,396,79.2,omega,front,-0.014993571043014527 +illusion_0.75L,ppo,396,79.2,omega,upper,-0.006992095708847046 +illusion_0.75L,ppo,396,79.2,omega,lower,0.021786779165267944 +illusion_0.75L,ppo,397,79.4,omega,front,-0.014102499485015869 +illusion_0.75L,ppo,397,79.4,omega,upper,-0.007138898372650146 +illusion_0.75L,ppo,397,79.4,omega,lower,0.02289167493581772 +illusion_0.75L,ppo,398,79.6,omega,front,-0.013268415927886964 +illusion_0.75L,ppo,398,79.6,omega,upper,-0.007440422773361206 +illusion_0.75L,ppo,398,79.6,omega,lower,0.02381381928920746 +illusion_0.75L,ppo,399,79.8,omega,front,-0.01216967225074768 +illusion_0.75L,ppo,399,79.8,omega,upper,-0.00792756199836731 +illusion_0.75L,ppo,399,79.8,omega,lower,0.024701183438301088 +illusion_0.75L,ppo,0,0.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,ppo,0,0.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,ppo,1,0.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,ppo,1,0.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,ppo,2,0.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,ppo,2,0.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,ppo,3,0.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,ppo,3,0.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,ppo,4,0.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,ppo,4,0.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,ppo,5,1.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,ppo,5,1.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,ppo,6,1.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,ppo,6,1.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,ppo,7,1.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,ppo,7,1.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,ppo,8,1.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,ppo,8,1.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,ppo,9,1.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,ppo,9,1.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,ppo,10,2.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,ppo,10,2.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,ppo,11,2.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,ppo,11,2.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,ppo,12,2.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,ppo,12,2.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,ppo,13,2.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,ppo,13,2.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,ppo,14,2.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,ppo,14,2.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,ppo,15,3.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,ppo,15,3.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,ppo,16,3.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,ppo,16,3.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,ppo,17,3.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,ppo,17,3.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,ppo,18,3.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,ppo,18,3.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,ppo,19,3.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,ppo,19,3.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,ppo,20,4.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,ppo,20,4.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,ppo,21,4.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,ppo,21,4.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,ppo,22,4.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,ppo,22,4.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,ppo,23,4.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,ppo,23,4.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,ppo,24,4.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,ppo,24,4.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,ppo,25,5.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,ppo,25,5.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,ppo,26,5.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,ppo,26,5.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,ppo,27,5.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,ppo,27,5.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,ppo,28,5.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,ppo,28,5.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,ppo,29,5.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,ppo,29,5.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,ppo,30,6.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,ppo,30,6.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,ppo,31,6.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,ppo,31,6.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,ppo,32,6.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,ppo,32,6.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,ppo,33,6.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,ppo,33,6.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,ppo,34,6.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,ppo,34,6.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,ppo,35,7.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,ppo,35,7.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,ppo,36,7.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,ppo,36,7.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,ppo,37,7.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,ppo,37,7.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,ppo,38,7.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,ppo,38,7.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,ppo,39,7.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,ppo,39,7.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,ppo,40,8.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,ppo,40,8.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,ppo,41,8.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,ppo,41,8.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,ppo,42,8.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,ppo,42,8.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,ppo,43,8.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,ppo,43,8.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,ppo,44,8.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,ppo,44,8.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,ppo,45,9.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,ppo,45,9.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,ppo,46,9.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,ppo,46,9.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,ppo,47,9.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,ppo,47,9.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,ppo,48,9.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,ppo,48,9.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,ppo,49,9.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,ppo,49,9.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,ppo,50,10.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,ppo,50,10.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,ppo,51,10.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,ppo,51,10.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,ppo,52,10.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,ppo,52,10.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,ppo,53,10.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,ppo,53,10.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,ppo,54,10.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,ppo,54,10.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,ppo,55,11.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,ppo,55,11.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,ppo,56,11.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,ppo,56,11.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,ppo,57,11.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,ppo,57,11.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,ppo,58,11.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,ppo,58,11.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,ppo,59,11.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,ppo,59,11.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,ppo,60,12.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,ppo,60,12.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,ppo,61,12.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,ppo,61,12.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,ppo,62,12.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,ppo,62,12.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,ppo,63,12.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,ppo,63,12.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,ppo,64,12.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,ppo,64,12.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,ppo,65,13.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,ppo,65,13.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,ppo,66,13.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,ppo,66,13.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,ppo,67,13.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,ppo,67,13.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,ppo,68,13.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,ppo,68,13.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,ppo,69,13.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,ppo,69,13.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,ppo,70,14.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,ppo,70,14.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,ppo,71,14.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,ppo,71,14.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,ppo,72,14.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,ppo,72,14.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,ppo,73,14.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,ppo,73,14.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,ppo,74,14.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,ppo,74,14.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,ppo,75,15.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,ppo,75,15.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,ppo,76,15.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,ppo,76,15.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,ppo,77,15.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,ppo,77,15.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,ppo,78,15.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,ppo,78,15.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,ppo,79,15.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,ppo,79,15.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,ppo,80,16.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,ppo,80,16.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,ppo,81,16.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,ppo,81,16.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,ppo,82,16.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,ppo,82,16.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,ppo,83,16.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,ppo,83,16.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,ppo,84,16.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,ppo,84,16.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,ppo,85,17.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,ppo,85,17.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,ppo,86,17.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,ppo,86,17.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,ppo,87,17.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,ppo,87,17.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,ppo,88,17.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,ppo,88,17.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,ppo,89,17.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,ppo,89,17.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,ppo,90,18.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,ppo,90,18.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,ppo,91,18.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,ppo,91,18.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,ppo,92,18.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,ppo,92,18.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,ppo,93,18.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,ppo,93,18.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,ppo,94,18.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,ppo,94,18.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,ppo,95,19.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,ppo,95,19.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,ppo,96,19.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,ppo,96,19.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,ppo,97,19.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,ppo,97,19.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,ppo,98,19.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,ppo,98,19.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,ppo,99,19.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,ppo,99,19.8,target_force,target_cl,0.0009286822751164436 +illusion_0.75L,ppo,100,20.0,target_force,target_cd,0.004329230170696974 +illusion_0.75L,ppo,100,20.0,target_force,target_cl,0.0007613134803250432 +illusion_0.75L,ppo,101,20.2,target_force,target_cd,0.0043093012645840645 +illusion_0.75L,ppo,101,20.2,target_force,target_cl,0.0005613267421722412 +illusion_0.75L,ppo,102,20.4,target_force,target_cd,0.004291526973247528 +illusion_0.75L,ppo,102,20.4,target_force,target_cl,0.0003369711630512029 +illusion_0.75L,ppo,103,20.6,target_force,target_cd,0.004277484491467476 +illusion_0.75L,ppo,103,20.6,target_force,target_cl,9.754252096172422e-05 +illusion_0.75L,ppo,104,20.8,target_force,target_cd,0.0042631374672055244 +illusion_0.75L,ppo,104,20.8,target_force,target_cl,-0.00014684362395200878 +illusion_0.75L,ppo,105,21.0,target_force,target_cd,0.004247708711773157 +illusion_0.75L,ppo,105,21.0,target_force,target_cl,-0.0003855770919471979 +illusion_0.75L,ppo,106,21.2,target_force,target_cd,0.004238303285092115 +illusion_0.75L,ppo,106,21.2,target_force,target_cl,-0.0006080058519728482 +illusion_0.75L,ppo,107,21.4,target_force,target_cd,0.004244087729603052 +illusion_0.75L,ppo,107,21.4,target_force,target_cl,-0.0008040002430789173 +illusion_0.75L,ppo,108,21.6,target_force,target_cd,0.004266131203621626 +illusion_0.75L,ppo,108,21.6,target_force,target_cl,-0.0009645655518397689 +illusion_0.75L,ppo,109,21.8,target_force,target_cd,0.00429448951035738 +illusion_0.75L,ppo,109,21.8,target_force,target_cl,-0.0010824102209880948 +illusion_0.75L,ppo,110,22.0,target_force,target_cd,0.0043162815272808075 +illusion_0.75L,ppo,110,22.0,target_force,target_cl,-0.0011523779248818755 +illusion_0.75L,ppo,111,22.2,target_force,target_cd,0.004326277878135443 +illusion_0.75L,ppo,111,22.2,target_force,target_cl,-0.0011716809822246432 +illusion_0.75L,ppo,112,22.4,target_force,target_cd,0.004328808281570673 +illusion_0.75L,ppo,112,22.4,target_force,target_cl,-0.0011399217182770371 +illusion_0.75L,ppo,113,22.6,target_force,target_cd,0.0043297018855810165 +illusion_0.75L,ppo,113,22.6,target_force,target_cl,-0.0010589387966319919 +illusion_0.75L,ppo,114,22.8,target_force,target_cd,0.0043281326070427895 +illusion_0.75L,ppo,114,22.8,target_force,target_cl,-0.0009325520950369537 +illusion_0.75L,ppo,115,23.0,target_force,target_cd,0.004317938350141048 +illusion_0.75L,ppo,115,23.0,target_force,target_cl,-0.0007662828429602087 +illusion_0.75L,ppo,116,23.2,target_force,target_cd,0.004296679049730301 +illusion_0.75L,ppo,116,23.2,target_force,target_cl,-0.0005671066464856267 +illusion_0.75L,ppo,117,23.4,target_force,target_cd,0.004271471872925758 +illusion_0.75L,ppo,117,23.4,target_force,target_cl,-0.00034325156593695283 +illusion_0.75L,ppo,118,23.6,target_force,target_cd,0.004254178609699011 +illusion_0.75L,ppo,118,23.6,target_force,target_cl,-0.00010401237523183227 +illusion_0.75L,ppo,119,23.8,target_force,target_cd,0.004250772297382355 +illusion_0.75L,ppo,119,23.8,target_force,target_cl,0.00014047697186470032 +illusion_0.75L,ppo,120,24.0,target_force,target_cd,0.004256573971360922 +illusion_0.75L,ppo,120,24.0,target_force,target_cl,0.000379570439690724 +illusion_0.75L,ppo,121,24.2,target_force,target_cd,0.00426256749778986 +illusion_0.75L,ppo,121,24.2,target_force,target_cl,0.0006025657639838755 +illusion_0.75L,ppo,122,24.4,target_force,target_cd,0.004265558440238237 +illusion_0.75L,ppo,122,24.4,target_force,target_cl,0.0007992724422365427 +illusion_0.75L,ppo,123,24.6,target_force,target_cd,0.004270726349204779 +illusion_0.75L,ppo,123,24.6,target_force,target_cl,0.0009606286184862256 +illusion_0.75L,ppo,124,24.8,target_force,target_cd,0.004283971153199673 +illusion_0.75L,ppo,124,24.8,target_force,target_cl,0.001079274108633399 +illusion_0.75L,ppo,125,25.0,target_force,target_cd,0.004303178749978542 +illusion_0.75L,ppo,125,25.0,target_force,target_cl,0.0011499872198328376 +illusion_0.75L,ppo,126,25.2,target_force,target_cd,0.004318722058087587 +illusion_0.75L,ppo,126,25.2,target_force,target_cl,0.00116992206312716 +illusion_0.75L,ppo,127,25.4,target_force,target_cd,0.004322815220803022 +illusion_0.75L,ppo,127,25.4,target_force,target_cl,0.001138634397648275 +illusion_0.75L,ppo,128,25.6,target_force,target_cd,0.004317114595323801 +illusion_0.75L,ppo,128,25.6,target_force,target_cl,0.0010579300578683615 +illusion_0.75L,ppo,129,25.8,target_force,target_cd,0.004309931304305792 +illusion_0.75L,ppo,129,25.8,target_force,target_cl,0.000931612157728523 +illusion_0.75L,ppo,130,26.0,target_force,target_cd,0.004306346643716097 +illusion_0.75L,ppo,130,26.0,target_force,target_cl,0.0007652023923583329 +illusion_0.75L,ppo,131,26.2,target_force,target_cd,0.00430266372859478 +illusion_0.75L,ppo,131,26.2,target_force,target_cl,0.0005656927824020386 +illusion_0.75L,ppo,132,26.4,target_force,target_cd,0.00429161824285984 +illusion_0.75L,ppo,132,26.4,target_force,target_cl,0.0003413430822547525 +illusion_0.75L,ppo,133,26.6,target_force,target_cd,0.004272329621016979 +illusion_0.75L,ppo,133,26.6,target_force,target_cl,0.00010149206354981288 +illusion_0.75L,ppo,134,26.8,target_force,target_cd,0.004253413062542677 +illusion_0.75L,ppo,134,26.8,target_force,target_cl,-0.00014367327094078064 +illusion_0.75L,ppo,135,27.0,target_force,target_cd,0.004245383199304342 +illusion_0.75L,ppo,135,27.0,target_force,target_cl,-0.0003834486415144056 +illusion_0.75L,ppo,136,27.2,target_force,target_cd,0.004250668920576572 +illusion_0.75L,ppo,136,27.2,target_force,target_cl,-0.0006070726667530835 +illusion_0.75L,ppo,137,27.4,target_force,target_cd,0.004262279253453016 +illusion_0.75L,ppo,137,27.4,target_force,target_cl,-0.0008042993140406907 +illusion_0.75L,ppo,138,27.6,target_force,target_cd,0.0042722816579043865 +illusion_0.75L,ppo,138,27.6,target_force,target_cl,-0.0009660187060944736 +illusion_0.75L,ppo,139,27.8,target_force,target_cd,0.004280176013708115 +illusion_0.75L,ppo,139,27.8,target_force,target_cl,-0.0010848336387425661 +illusion_0.75L,ppo,140,28.0,target_force,target_cd,0.004291605204343796 +illusion_0.75L,ppo,140,28.0,target_force,target_cl,-0.0011554996017366648 +illusion_0.75L,ppo,141,28.2,target_force,target_cd,0.004309208132326603 +illusion_0.75L,ppo,141,28.2,target_force,target_cl,-0.0011751636629924178 +illusion_0.75L,ppo,142,28.4,target_force,target_cd,0.004326635040342808 +illusion_0.75L,ppo,142,28.4,target_force,target_cl,-0.001143390778452158 +illusion_0.75L,ppo,143,28.6,target_force,target_cd,0.004333213437348604 +illusion_0.75L,ppo,143,28.6,target_force,target_cl,-0.0010620126267895103 +illusion_0.75L,ppo,144,28.8,target_force,target_cd,0.004324445500969887 +illusion_0.75L,ppo,144,28.8,target_force,target_cl,-0.0009348725434392691 +illusion_0.75L,ppo,145,29.0,target_force,target_cd,0.004306653048843145 +illusion_0.75L,ppo,145,29.0,target_force,target_cl,-0.0007675446104258299 +illusion_0.75L,ppo,146,29.2,target_force,target_cd,0.004290517885237932 +illusion_0.75L,ppo,146,29.2,target_force,target_cl,-0.000567082257475704 +illusion_0.75L,ppo,147,29.4,target_force,target_cd,0.004280740395188332 +illusion_0.75L,ppo,147,29.4,target_force,target_cl,-0.00034181104274466634 +illusion_0.75L,ppo,148,29.6,target_force,target_cd,0.004273268859833479 +illusion_0.75L,ppo,148,29.6,target_force,target_cl,-0.00010113600001204759 +illusion_0.75L,ppo,149,29.8,target_force,target_cd,0.004262732807546854 +illusion_0.75L,ppo,149,29.8,target_force,target_cl,0.00014469395682681352 +illusion_0.75L,ppo,150,30.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,ppo,150,30.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,ppo,151,30.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,ppo,151,30.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,ppo,152,30.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,ppo,152,30.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,ppo,153,30.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,ppo,153,30.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,ppo,154,30.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,ppo,154,30.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,ppo,155,31.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,ppo,155,31.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,ppo,156,31.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,ppo,156,31.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,ppo,157,31.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,ppo,157,31.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,ppo,158,31.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,ppo,158,31.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,ppo,159,31.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,ppo,159,31.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,ppo,160,32.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,ppo,160,32.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,ppo,161,32.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,ppo,161,32.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,ppo,162,32.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,ppo,162,32.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,ppo,163,32.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,ppo,163,32.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,ppo,164,32.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,ppo,164,32.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,ppo,165,33.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,ppo,165,33.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,ppo,166,33.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,ppo,166,33.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,ppo,167,33.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,ppo,167,33.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,ppo,168,33.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,ppo,168,33.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,ppo,169,33.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,ppo,169,33.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,ppo,170,34.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,ppo,170,34.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,ppo,171,34.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,ppo,171,34.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,ppo,172,34.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,ppo,172,34.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,ppo,173,34.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,ppo,173,34.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,ppo,174,34.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,ppo,174,34.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,ppo,175,35.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,ppo,175,35.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,ppo,176,35.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,ppo,176,35.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,ppo,177,35.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,ppo,177,35.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,ppo,178,35.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,ppo,178,35.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,ppo,179,35.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,ppo,179,35.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,ppo,180,36.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,ppo,180,36.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,ppo,181,36.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,ppo,181,36.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,ppo,182,36.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,ppo,182,36.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,ppo,183,36.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,ppo,183,36.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,ppo,184,36.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,ppo,184,36.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,ppo,185,37.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,ppo,185,37.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,ppo,186,37.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,ppo,186,37.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,ppo,187,37.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,ppo,187,37.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,ppo,188,37.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,ppo,188,37.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,ppo,189,37.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,ppo,189,37.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,ppo,190,38.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,ppo,190,38.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,ppo,191,38.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,ppo,191,38.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,ppo,192,38.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,ppo,192,38.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,ppo,193,38.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,ppo,193,38.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,ppo,194,38.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,ppo,194,38.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,ppo,195,39.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,ppo,195,39.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,ppo,196,39.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,ppo,196,39.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,ppo,197,39.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,ppo,197,39.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,ppo,198,39.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,ppo,198,39.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,ppo,199,39.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,ppo,199,39.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,ppo,200,40.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,ppo,200,40.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,ppo,201,40.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,ppo,201,40.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,ppo,202,40.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,ppo,202,40.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,ppo,203,40.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,ppo,203,40.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,ppo,204,40.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,ppo,204,40.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,ppo,205,41.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,ppo,205,41.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,ppo,206,41.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,ppo,206,41.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,ppo,207,41.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,ppo,207,41.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,ppo,208,41.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,ppo,208,41.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,ppo,209,41.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,ppo,209,41.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,ppo,210,42.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,ppo,210,42.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,ppo,211,42.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,ppo,211,42.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,ppo,212,42.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,ppo,212,42.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,ppo,213,42.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,ppo,213,42.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,ppo,214,42.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,ppo,214,42.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,ppo,215,43.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,ppo,215,43.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,ppo,216,43.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,ppo,216,43.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,ppo,217,43.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,ppo,217,43.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,ppo,218,43.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,ppo,218,43.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,ppo,219,43.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,ppo,219,43.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,ppo,220,44.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,ppo,220,44.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,ppo,221,44.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,ppo,221,44.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,ppo,222,44.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,ppo,222,44.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,ppo,223,44.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,ppo,223,44.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,ppo,224,44.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,ppo,224,44.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,ppo,225,45.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,ppo,225,45.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,ppo,226,45.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,ppo,226,45.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,ppo,227,45.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,ppo,227,45.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,ppo,228,45.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,ppo,228,45.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,ppo,229,45.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,ppo,229,45.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,ppo,230,46.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,ppo,230,46.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,ppo,231,46.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,ppo,231,46.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,ppo,232,46.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,ppo,232,46.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,ppo,233,46.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,ppo,233,46.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,ppo,234,46.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,ppo,234,46.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,ppo,235,47.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,ppo,235,47.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,ppo,236,47.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,ppo,236,47.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,ppo,237,47.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,ppo,237,47.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,ppo,238,47.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,ppo,238,47.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,ppo,239,47.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,ppo,239,47.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,ppo,240,48.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,ppo,240,48.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,ppo,241,48.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,ppo,241,48.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,ppo,242,48.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,ppo,242,48.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,ppo,243,48.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,ppo,243,48.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,ppo,244,48.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,ppo,244,48.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,ppo,245,49.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,ppo,245,49.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,ppo,246,49.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,ppo,246,49.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,ppo,247,49.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,ppo,247,49.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,ppo,248,49.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,ppo,248,49.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,ppo,249,49.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,ppo,249,49.8,target_force,target_cl,0.0009286822751164436 +illusion_0.75L,ppo,250,50.0,target_force,target_cd,0.004329230170696974 +illusion_0.75L,ppo,250,50.0,target_force,target_cl,0.0007613134803250432 +illusion_0.75L,ppo,251,50.2,target_force,target_cd,0.0043093012645840645 +illusion_0.75L,ppo,251,50.2,target_force,target_cl,0.0005613267421722412 +illusion_0.75L,ppo,252,50.4,target_force,target_cd,0.004291526973247528 +illusion_0.75L,ppo,252,50.4,target_force,target_cl,0.0003369711630512029 +illusion_0.75L,ppo,253,50.6,target_force,target_cd,0.004277484491467476 +illusion_0.75L,ppo,253,50.6,target_force,target_cl,9.754252096172422e-05 +illusion_0.75L,ppo,254,50.8,target_force,target_cd,0.0042631374672055244 +illusion_0.75L,ppo,254,50.8,target_force,target_cl,-0.00014684362395200878 +illusion_0.75L,ppo,255,51.0,target_force,target_cd,0.004247708711773157 +illusion_0.75L,ppo,255,51.0,target_force,target_cl,-0.0003855770919471979 +illusion_0.75L,ppo,256,51.2,target_force,target_cd,0.004238303285092115 +illusion_0.75L,ppo,256,51.2,target_force,target_cl,-0.0006080058519728482 +illusion_0.75L,ppo,257,51.4,target_force,target_cd,0.004244087729603052 +illusion_0.75L,ppo,257,51.4,target_force,target_cl,-0.0008040002430789173 +illusion_0.75L,ppo,258,51.6,target_force,target_cd,0.004266131203621626 +illusion_0.75L,ppo,258,51.6,target_force,target_cl,-0.0009645655518397689 +illusion_0.75L,ppo,259,51.8,target_force,target_cd,0.00429448951035738 +illusion_0.75L,ppo,259,51.8,target_force,target_cl,-0.0010824102209880948 +illusion_0.75L,ppo,260,52.0,target_force,target_cd,0.0043162815272808075 +illusion_0.75L,ppo,260,52.0,target_force,target_cl,-0.0011523779248818755 +illusion_0.75L,ppo,261,52.2,target_force,target_cd,0.004326277878135443 +illusion_0.75L,ppo,261,52.2,target_force,target_cl,-0.0011716809822246432 +illusion_0.75L,ppo,262,52.4,target_force,target_cd,0.004328808281570673 +illusion_0.75L,ppo,262,52.4,target_force,target_cl,-0.0011399217182770371 +illusion_0.75L,ppo,263,52.6,target_force,target_cd,0.0043297018855810165 +illusion_0.75L,ppo,263,52.6,target_force,target_cl,-0.0010589387966319919 +illusion_0.75L,ppo,264,52.8,target_force,target_cd,0.0043281326070427895 +illusion_0.75L,ppo,264,52.8,target_force,target_cl,-0.0009325520950369537 +illusion_0.75L,ppo,265,53.0,target_force,target_cd,0.004317938350141048 +illusion_0.75L,ppo,265,53.0,target_force,target_cl,-0.0007662828429602087 +illusion_0.75L,ppo,266,53.2,target_force,target_cd,0.004296679049730301 +illusion_0.75L,ppo,266,53.2,target_force,target_cl,-0.0005671066464856267 +illusion_0.75L,ppo,267,53.4,target_force,target_cd,0.004271471872925758 +illusion_0.75L,ppo,267,53.4,target_force,target_cl,-0.00034325156593695283 +illusion_0.75L,ppo,268,53.6,target_force,target_cd,0.004254178609699011 +illusion_0.75L,ppo,268,53.6,target_force,target_cl,-0.00010401237523183227 +illusion_0.75L,ppo,269,53.8,target_force,target_cd,0.004250772297382355 +illusion_0.75L,ppo,269,53.8,target_force,target_cl,0.00014047697186470032 +illusion_0.75L,ppo,270,54.0,target_force,target_cd,0.004256573971360922 +illusion_0.75L,ppo,270,54.0,target_force,target_cl,0.000379570439690724 +illusion_0.75L,ppo,271,54.2,target_force,target_cd,0.00426256749778986 +illusion_0.75L,ppo,271,54.2,target_force,target_cl,0.0006025657639838755 +illusion_0.75L,ppo,272,54.4,target_force,target_cd,0.004265558440238237 +illusion_0.75L,ppo,272,54.4,target_force,target_cl,0.0007992724422365427 +illusion_0.75L,ppo,273,54.6,target_force,target_cd,0.004270726349204779 +illusion_0.75L,ppo,273,54.6,target_force,target_cl,0.0009606286184862256 +illusion_0.75L,ppo,274,54.8,target_force,target_cd,0.004283971153199673 +illusion_0.75L,ppo,274,54.8,target_force,target_cl,0.001079274108633399 +illusion_0.75L,ppo,275,55.0,target_force,target_cd,0.004303178749978542 +illusion_0.75L,ppo,275,55.0,target_force,target_cl,0.0011499872198328376 +illusion_0.75L,ppo,276,55.2,target_force,target_cd,0.004318722058087587 +illusion_0.75L,ppo,276,55.2,target_force,target_cl,0.00116992206312716 +illusion_0.75L,ppo,277,55.4,target_force,target_cd,0.004322815220803022 +illusion_0.75L,ppo,277,55.4,target_force,target_cl,0.001138634397648275 +illusion_0.75L,ppo,278,55.6,target_force,target_cd,0.004317114595323801 +illusion_0.75L,ppo,278,55.6,target_force,target_cl,0.0010579300578683615 +illusion_0.75L,ppo,279,55.8,target_force,target_cd,0.004309931304305792 +illusion_0.75L,ppo,279,55.8,target_force,target_cl,0.000931612157728523 +illusion_0.75L,ppo,280,56.0,target_force,target_cd,0.004306346643716097 +illusion_0.75L,ppo,280,56.0,target_force,target_cl,0.0007652023923583329 +illusion_0.75L,ppo,281,56.2,target_force,target_cd,0.00430266372859478 +illusion_0.75L,ppo,281,56.2,target_force,target_cl,0.0005656927824020386 +illusion_0.75L,ppo,282,56.4,target_force,target_cd,0.00429161824285984 +illusion_0.75L,ppo,282,56.4,target_force,target_cl,0.0003413430822547525 +illusion_0.75L,ppo,283,56.6,target_force,target_cd,0.004272329621016979 +illusion_0.75L,ppo,283,56.6,target_force,target_cl,0.00010149206354981288 +illusion_0.75L,ppo,284,56.8,target_force,target_cd,0.004253413062542677 +illusion_0.75L,ppo,284,56.8,target_force,target_cl,-0.00014367327094078064 +illusion_0.75L,ppo,285,57.0,target_force,target_cd,0.004245383199304342 +illusion_0.75L,ppo,285,57.0,target_force,target_cl,-0.0003834486415144056 +illusion_0.75L,ppo,286,57.2,target_force,target_cd,0.004250668920576572 +illusion_0.75L,ppo,286,57.2,target_force,target_cl,-0.0006070726667530835 +illusion_0.75L,ppo,287,57.4,target_force,target_cd,0.004262279253453016 +illusion_0.75L,ppo,287,57.4,target_force,target_cl,-0.0008042993140406907 +illusion_0.75L,ppo,288,57.6,target_force,target_cd,0.0042722816579043865 +illusion_0.75L,ppo,288,57.6,target_force,target_cl,-0.0009660187060944736 +illusion_0.75L,ppo,289,57.8,target_force,target_cd,0.004280176013708115 +illusion_0.75L,ppo,289,57.8,target_force,target_cl,-0.0010848336387425661 +illusion_0.75L,ppo,290,58.0,target_force,target_cd,0.004291605204343796 +illusion_0.75L,ppo,290,58.0,target_force,target_cl,-0.0011554996017366648 +illusion_0.75L,ppo,291,58.2,target_force,target_cd,0.004309208132326603 +illusion_0.75L,ppo,291,58.2,target_force,target_cl,-0.0011751636629924178 +illusion_0.75L,ppo,292,58.4,target_force,target_cd,0.004326635040342808 +illusion_0.75L,ppo,292,58.4,target_force,target_cl,-0.001143390778452158 +illusion_0.75L,ppo,293,58.6,target_force,target_cd,0.004333213437348604 +illusion_0.75L,ppo,293,58.6,target_force,target_cl,-0.0010620126267895103 +illusion_0.75L,ppo,294,58.8,target_force,target_cd,0.004324445500969887 +illusion_0.75L,ppo,294,58.8,target_force,target_cl,-0.0009348725434392691 +illusion_0.75L,ppo,295,59.0,target_force,target_cd,0.004306653048843145 +illusion_0.75L,ppo,295,59.0,target_force,target_cl,-0.0007675446104258299 +illusion_0.75L,ppo,296,59.2,target_force,target_cd,0.004290517885237932 +illusion_0.75L,ppo,296,59.2,target_force,target_cl,-0.000567082257475704 +illusion_0.75L,ppo,297,59.4,target_force,target_cd,0.004280740395188332 +illusion_0.75L,ppo,297,59.4,target_force,target_cl,-0.00034181104274466634 +illusion_0.75L,ppo,298,59.6,target_force,target_cd,0.004273268859833479 +illusion_0.75L,ppo,298,59.6,target_force,target_cl,-0.00010113600001204759 +illusion_0.75L,ppo,299,59.8,target_force,target_cd,0.004262732807546854 +illusion_0.75L,ppo,299,59.8,target_force,target_cl,0.00014469395682681352 +illusion_0.75L,ppo,300,60.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,ppo,300,60.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,ppo,301,60.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,ppo,301,60.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,ppo,302,60.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,ppo,302,60.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,ppo,303,60.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,ppo,303,60.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,ppo,304,60.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,ppo,304,60.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,ppo,305,61.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,ppo,305,61.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,ppo,306,61.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,ppo,306,61.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,ppo,307,61.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,ppo,307,61.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,ppo,308,61.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,ppo,308,61.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,ppo,309,61.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,ppo,309,61.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,ppo,310,62.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,ppo,310,62.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,ppo,311,62.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,ppo,311,62.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,ppo,312,62.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,ppo,312,62.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,ppo,313,62.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,ppo,313,62.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,ppo,314,62.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,ppo,314,62.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,ppo,315,63.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,ppo,315,63.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,ppo,316,63.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,ppo,316,63.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,ppo,317,63.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,ppo,317,63.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,ppo,318,63.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,ppo,318,63.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,ppo,319,63.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,ppo,319,63.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,ppo,320,64.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,ppo,320,64.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,ppo,321,64.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,ppo,321,64.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,ppo,322,64.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,ppo,322,64.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,ppo,323,64.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,ppo,323,64.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,ppo,324,64.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,ppo,324,64.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,ppo,325,65.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,ppo,325,65.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,ppo,326,65.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,ppo,326,65.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,ppo,327,65.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,ppo,327,65.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,ppo,328,65.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,ppo,328,65.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,ppo,329,65.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,ppo,329,65.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,ppo,330,66.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,ppo,330,66.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,ppo,331,66.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,ppo,331,66.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,ppo,332,66.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,ppo,332,66.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,ppo,333,66.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,ppo,333,66.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,ppo,334,66.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,ppo,334,66.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,ppo,335,67.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,ppo,335,67.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,ppo,336,67.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,ppo,336,67.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,ppo,337,67.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,ppo,337,67.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,ppo,338,67.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,ppo,338,67.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,ppo,339,67.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,ppo,339,67.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,ppo,340,68.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,ppo,340,68.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,ppo,341,68.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,ppo,341,68.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,ppo,342,68.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,ppo,342,68.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,ppo,343,68.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,ppo,343,68.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,ppo,344,68.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,ppo,344,68.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,ppo,345,69.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,ppo,345,69.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,ppo,346,69.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,ppo,346,69.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,ppo,347,69.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,ppo,347,69.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,ppo,348,69.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,ppo,348,69.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,ppo,349,69.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,ppo,349,69.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,ppo,350,70.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,ppo,350,70.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,ppo,351,70.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,ppo,351,70.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,ppo,352,70.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,ppo,352,70.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,ppo,353,70.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,ppo,353,70.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,ppo,354,70.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,ppo,354,70.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,ppo,355,71.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,ppo,355,71.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,ppo,356,71.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,ppo,356,71.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,ppo,357,71.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,ppo,357,71.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,ppo,358,71.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,ppo,358,71.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,ppo,359,71.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,ppo,359,71.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,ppo,360,72.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,ppo,360,72.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,ppo,361,72.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,ppo,361,72.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,ppo,362,72.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,ppo,362,72.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,ppo,363,72.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,ppo,363,72.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,ppo,364,72.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,ppo,364,72.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,ppo,365,73.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,ppo,365,73.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,ppo,366,73.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,ppo,366,73.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,ppo,367,73.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,ppo,367,73.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,ppo,368,73.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,ppo,368,73.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,ppo,369,73.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,ppo,369,73.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,ppo,370,74.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,ppo,370,74.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,ppo,371,74.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,ppo,371,74.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,ppo,372,74.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,ppo,372,74.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,ppo,373,74.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,ppo,373,74.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,ppo,374,74.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,ppo,374,74.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,ppo,375,75.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,ppo,375,75.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,ppo,376,75.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,ppo,376,75.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,ppo,377,75.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,ppo,377,75.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,ppo,378,75.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,ppo,378,75.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,ppo,379,75.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,ppo,379,75.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,ppo,380,76.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,ppo,380,76.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,ppo,381,76.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,ppo,381,76.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,ppo,382,76.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,ppo,382,76.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,ppo,383,76.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,ppo,383,76.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,ppo,384,76.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,ppo,384,76.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,ppo,385,77.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,ppo,385,77.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,ppo,386,77.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,ppo,386,77.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,ppo,387,77.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,ppo,387,77.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,ppo,388,77.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,ppo,388,77.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,ppo,389,77.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,ppo,389,77.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,ppo,390,78.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,ppo,390,78.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,ppo,391,78.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,ppo,391,78.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,ppo,392,78.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,ppo,392,78.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,ppo,393,78.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,ppo,393,78.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,ppo,394,78.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,ppo,394,78.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,ppo,395,79.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,ppo,395,79.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,ppo,396,79.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,ppo,396,79.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,ppo,397,79.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,ppo,397,79.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,ppo,398,79.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,ppo,398,79.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,ppo,399,79.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,ppo,399,79.8,target_force,target_cl,0.0009286822751164436 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_manifest.json new file mode 100644 index 0000000..8f92650 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_0.75L", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_0p75L__ppo__f-ppo__si-400.npz", + "sample_interval": 400, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_wide.csv new file mode 100644 index 0000000..851487b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_0.75L,ppo,0,0.0,0.90583336353302,-0.20850256085395813,0.7696645855903625,-0.5184223055839539,1.1382818222045898,-0.23160357773303986,0.0017352784052491188,0.00025491940323263407,0.0013487270334735513,0.0031360096763819456,0.0011379566276445985,-0.00298038637265563,-1.4492467641830444,-1.0971254110336304,1.786779671907425,-0.014492467641830445,-0.010971254110336304,0.01786779671907425,0.0042510125786066055,0.00038492129533551633,0 +illusion_0.75L,ppo,1,0.2,0.9346581101417542,-0.2333710789680481,0.810030996799469,-0.5128098726272583,1.0419607162475586,-0.31055617332458496,0.0017559343250468373,0.000549698481336236,0.001300143776461482,0.00321865058504045,0.0010455516166985035,-0.003156463848426938,-1.4369914531707764,-1.1521430015563965,1.7234466671943665,-0.014369914531707764,-0.011521430015563964,0.017234466671943664,0.004246690776199102,0.0006087439251132309,1 +illusion_0.75L,ppo,2,0.4,0.9642118811607361,-0.2550995945930481,0.8435966968536377,-0.50937420129776,0.960164487361908,-0.3506736755371094,0.0017976436065509915,0.0007255986565724015,0.0012918361462652683,0.0033593729604035616,0.0009751743637025356,-0.003281122539192438,-1.4323949813842773,-1.3317302465438843,1.608982861042023,-0.014323949813842773,-0.013317302465438843,0.01608982861042023,0.004255807958543301,0.000805890653282404,2 +illusion_0.75L,ppo,3,0.6,0.9945495128631592,-0.27397212386131287,0.8695603013038635,-0.5131033062934875,0.8988192081451416,-0.3568616807460785,0.0018645637901499867,0.0008699091267772019,0.0013106993865221739,0.003529385896399617,0.0009009872446767986,-0.003348279045894742,-1.4377899169921875,-1.425523281097412,1.539044201374054,-0.014377899169921875,-0.01425523281097412,0.01539044201374054,0.004274525213986635,0.0009672442683950067,3 +illusion_0.75L,ppo,4,0.8,1.0260318517684937,-0.29040589928627014,0.8897067308425903,-0.5218648910522461,0.8554297685623169,-0.3405631184577942,0.0019330999348312616,0.0009742575348354876,0.0013804255286231637,0.003673973958939314,0.0007844785577617586,-0.0033761155791580677,-1.3984769582748413,-1.4607462286949158,1.5422994494438171,-0.013984769582748413,-0.014607462286949159,0.015422994494438172,0.004292297642678022,0.0010854192078113556,4 +illusion_0.75L,ppo,5,1.0,1.0586779117584229,-0.3044672906398773,0.9047123789787292,-0.5327944755554199,0.8230391144752502,-0.3120873272418976,0.0020390304271131754,0.0009970148093998432,0.0015027693007141352,0.003743448294699192,0.000606942514423281,-0.0033964705653488636,-1.3374109268188477,-1.4353806376457214,1.5988014042377472,-0.013374109268188477,-0.014353806376457215,0.01598801404237747,0.004302178509533405,0.0011552009964361787,5 +illusion_0.75L,ppo,6,1.2,1.0928244590759277,-0.31636467576026917,0.9144799709320068,-0.5424194931983948,0.7959758043289185,-0.27664053440093994,0.0021404996514320374,0.0009840172715485096,0.00162474752869457,0.003733585588634014,0.0003883686731569469,-0.003439781256020069,-1.29972505569458,-1.3993152379989624,1.6429562270641327,-0.0129972505569458,-0.013993152379989625,0.016429562270641327,0.004306729417294264,0.0011737841414287686,6 +illusion_0.75L,ppo,7,1.4,1.128603458404541,-0.3258638083934784,0.9176493883132935,-0.5452343225479126,0.7713738083839417,-0.2357712984085083,0.0022307245526462793,0.0009442497976124287,0.0017129168845713139,0.0036828152369707823,0.00016417585720773786,-0.0035043982788920403,-1.2916269302368164,-1.3916049003601074,1.6457701325416567,-0.012916269302368165,-0.013916049003601074,0.016457701325416567,0.004313030280172825,0.0011407959973439574,7 +illusion_0.75L,ppo,8,1.6,1.1665724515914917,-0.3326914310455322,0.9127352237701416,-0.5330833792686462,0.7498684525489807,-0.18964356184005737,0.002306716050952673,0.000937060103751719,0.0017705183709040284,0.0036353839095681906,-2.692532325454522e-05,-0.003571577137336135,-1.3073861598968506,-1.413040578365326,1.6077304780483244,-0.013073861598968506,-0.014130405783653259,0.016077304780483245,0.004322762601077557,0.0010581414680927992,8 +illusion_0.75L,ppo,9,1.8,1.2067636251449585,-0.3360676169395447,0.8979538679122925,-0.49632927775382996,0.7337867617607117,-0.13928452134132385,0.00235129171051085,0.000914447009563446,0.0018008039332926273,0.003611563704907894,-0.00018493250536266714,-0.0036298916675150394,-1.2797155380249023,-1.4513064622879028,1.5996510982513426,-0.012797155380249024,-0.014513064622879029,0.015996510982513427,0.00432894192636013,0.0009297445067204535,9 +illusion_0.75L,ppo,10,2.0,1.2488921880722046,-0.3346298635005951,0.8727039098739624,-0.42671406269073486,0.7263771891593933,-0.08734635263681412,0.0023934838827699423,0.0008811072912067175,0.0018091327510774136,0.003606886835768819,-0.0003226722765248269,-0.0036786580458283424,-1.2352747917175293,-1.4670320749282837,1.6161989569664001,-0.012352747917175293,-0.014670320749282838,0.016161989569664,0.004323208704590797,0.0007612616172991693,10 +illusion_0.75L,ppo,11,2.2,1.2919867038726807,-0.32601937651634216,0.8386058807373047,-0.32066383957862854,0.730384111404419,-0.03762441873550415,0.0024014220107346773,0.0008395742624998093,0.0018094832776114345,0.003611291293054819,-0.0004392363189253956,-0.0037240334786474705,-1.168007254600525,-1.4751394391059875,1.6575176417827606,-0.01168007254600525,-0.014751394391059876,0.016575176417827606,0.0043054320849478245,0.0005598256830126047,11 +illusion_0.75L,ppo,12,2.4,1.3331190347671509,-0.3061894476413727,0.799427330493927,-0.18089823424816132,0.7460113763809204,0.006725707091391087,0.0023901567328721285,0.0008000982343219221,0.0018026551697403193,0.0036132929380983114,-0.0005499038961715996,-0.003769122762605548,-1.0878041982650757,-1.4618824124336243,1.7277092635631561,-0.010878041982650757,-0.014618824124336243,0.017277092635631562,0.0042846668511629105,0.0003338336537126452,12 +illusion_0.75L,ppo,13,2.6,1.365877628326416,-0.2691580653190613,0.7605582475662231,-0.016642045229673386,0.7699361443519592,0.04527031257748604,0.0023645469918847084,0.0007254690863192081,0.0017919326201081276,0.003608378581702709,-0.0006518380832858384,-0.0038304633926600218,-1.0054346323013306,-1.4309058785438538,1.8124326169490812,-0.010054346323013306,-0.014309058785438538,0.018124326169490813,0.004270360339432955,9.274937474401668e-05,13 +illusion_0.75L,ppo,14,2.8,1.3808451890945435,-0.20774541795253754,0.7292136549949646,0.15627896785736084,0.797615647315979,0.08025936782360077,0.0023262083996087313,0.0006986098014749587,0.001784859923645854,0.0035912408493459225,-0.0007286664331331849,-0.003907785285264254,-0.9694478511810304,-1.3748527765274048,1.8708449453115463,-0.009694478511810304,-0.013748527765274049,0.018708449453115464,0.004263774491846561,-0.00015313613403122872,14 +illusion_0.75L,ppo,15,3.0,1.3672361373901367,-0.11732926964759827,0.7127396464347839,0.3154537081718445,0.8256313800811768,0.11420148611068726,0.002287094248458743,0.0006553427083417773,0.0017718368908390403,0.0035615437664091587,-0.0007872142596170306,-0.004007058683782816,-0.9376689791679382,-1.295680284500122,1.9400555714964869,-0.009376689791679382,-0.012956802845001222,0.01940055571496487,0.004259183071553707,-0.00039304280653595924,15 +illusion_0.75L,ppo,16,3.2,1.31852126121521,-0.00164996983949095,0.7168662548065186,0.43507304787635803,0.85310959815979,0.14755019545555115,0.002258475637063384,0.0006409465568140149,0.0017629750072956085,0.003507255809381604,-0.0008145753527060151,-0.004115865100175142,-0.9842204451560974,-1.1679357886314392,1.9564840085804465,-0.009842204451560975,-0.011679357886314393,0.019564840085804464,0.004253040533512831,-0.0006161675555631518,16 +illusion_0.75L,ppo,17,3.4,1.2384942770004272,0.1236235499382019,0.7420246005058289,0.49839943647384644,0.8806049823760986,0.17900557816028595,0.002249538665637374,0.0006698157521896064,0.0017616343684494495,0.0034232554025948048,-0.0008138723787851632,-0.004215756431221962,-1.0799813270568848,-1.0002243518829346,1.9442201033234598,-0.010799813270568849,-0.010002243518829347,0.0194422010332346,0.004250074736773968,-0.0008122602594085038,17 +illusion_0.75L,ppo,18,3.6,1.1419498920440674,0.2350998818874359,0.7803472876548767,0.5138702988624573,0.9087501764297485,0.20746590197086334,0.0022680950351059437,0.0007255920791067183,0.001771765761077404,0.0033042614813894033,-0.0007977834902703762,-0.004292227327823639,-1.2023106813430786,-0.8124327659606934,1.9174890592694283,-0.012023106813430787,-0.008124327659606934,0.019174890592694283,0.004258817993104458,-0.0009722463437356055,18 +illusion_0.75L,ppo,19,3.8,1.0478322505950928,0.31302371621131897,0.8198149800300598,0.5091760754585266,0.9377811551094055,0.23263108730316162,0.0023229802027344704,0.000804418174084276,0.001808774657547474,0.003153261262923479,-0.0007693214574828744,-0.004341864958405495,-1.3292316198349,-0.6497324705123901,1.8863528221845627,-0.013292316198348999,-0.006497324705123902,0.018863528221845626,0.004281363915652037,-0.0010888022370636463,19 +illusion_0.75L,ppo,20,4.0,0.9699280261993408,0.35061711072921753,0.852684736251831,0.5057334303855896,0.9674424529075623,0.25474852323532104,0.002413057489320636,0.0008884347043931484,0.001856836024671793,0.002986022038385272,-0.0007554771727882326,-0.004376277793198824,-1.4150722026824951,-0.5702247619628906,1.8833324983716009,-0.014150722026824951,-0.005702247619628906,0.01883332498371601,0.004309054929763079,-0.001156791695393622,20 +illusion_0.75L,ppo,21,4.2,0.9124045372009277,0.3546332120895386,0.8778254985809326,0.5090228915214539,0.9975526332855225,0.27417421340942383,0.0025109860580414534,0.0009724118281155825,0.001909357262775302,0.002823073184117675,-0.0007595151546411216,-0.004403919912874699,-1.4630913734436035,-0.6010178327560425,1.8916421085596085,-0.014630913734436035,-0.006010178327560425,0.018916421085596085,0.004329311661422253,-0.0011734996223822236,21 +illusion_0.75L,ppo,22,4.4,0.8714282512664795,0.3375322222709656,0.8968015909194946,0.5172105431556702,1.0283557176589966,0.29127973318099976,0.0026306842919439077,0.0010501754004508257,0.0019522345392033458,0.0026800825726240873,-0.0007847351371310651,-0.004428862128406763,-1.48393714427948,-0.7204657793045044,1.9054559022188187,-0.0148393714427948,-0.007204657793045044,0.019054559022188187,0.004336345009505749,-0.0011386508122086525,22 +illusion_0.75L,ppo,23,4.6,0.8400804996490479,0.30931949615478516,0.9105557799339294,0.5276029706001282,1.0601619482040405,0.3063174784183502,0.002749243751168251,0.0010797801660373807,0.0019706175662577152,0.0025739988777786493,-0.0008339530904777348,-0.004449889063835144,-1.4953029155731201,-0.9097154140472413,1.9034971743822098,-0.014953029155731202,-0.009097154140472413,0.0190349717438221,0.004334232769906521,-0.0010542497038841248,23 +illusion_0.75L,ppo,24,4.8,0.8127768039703369,0.27453887462615967,0.9186723828315735,0.5367356538772583,1.093085527420044,0.3194817900657654,0.002875538542866707,0.0010757028358057141,0.001982505666092038,0.0025166005361825228,-0.0008837523055262864,-0.004450618755072355,-1.5436832904815674,-1.1126391887664795,1.854331910610199,-0.015436832904815675,-0.011126391887664795,0.01854331910610199,0.004329643212258816,-0.0009243153617717326,24 +illusion_0.75L,ppo,25,5.0,0.7876831889152527,0.23410871624946594,0.9202376008033752,0.538988471031189,1.1277843713760376,0.33067747950553894,0.0029907196294516325,0.0010525527177378535,0.00199464475736022,0.0025121006183326244,-0.0009339196258224547,-0.004420611076056957,-1.597791314125061,-1.3017863035202026,1.7965611517429352,-0.015977913141250612,-0.013017863035202026,0.017965611517429352,0.00432319100946188,-0.0007545904372818768,25 +illusion_0.75L,ppo,26,5.2,0.7658166289329529,0.18791627883911133,0.9135929346084595,0.5260970592498779,1.1648778915405273,0.3397637605667114,0.003093249863013625,0.0010674772784113884,0.0020130372140556574,0.0025649303570389748,-0.0009921388700604439,-0.0043609365820884705,-1.63911771774292,-1.4478985667228699,1.7543018758296967,-0.0163911771774292,-0.0144789856672287,0.017543018758296967,0.004309643525630236,-0.0005522798164747655,26 +illusion_0.75L,ppo,27,5.4,0.7500078082084656,0.1372014433145523,0.8970326781272888,0.488189160823822,1.2047868967056274,0.3459007143974304,0.0031500188633799553,0.0009925063932314515,0.002039073733612895,0.0026650025974959135,-0.00107000267598778,-0.0042797839269042015,-1.6175860166549683,-1.5515240728855133,1.7634669840335844,-0.016175860166549684,-0.015515240728855134,0.017634669840335845,0.004286581184715033,-0.0003258340584579855,27 +illusion_0.75L,ppo,28,5.6,0.7437261343002319,0.0848122388124466,0.8699190020561218,0.4166278839111328,1.2472821474075317,0.3476240634918213,0.0032081857789307833,0.0009388533071614802,0.002072548493742943,0.0027926741167902946,-0.0011663041077554226,-0.004184817895293236,-1.6296758651733398,-1.571236431598663,1.7479106485843658,-0.016296758651733398,-0.015712364315986632,0.017479106485843658,0.004260983318090439,-8.474913192912936e-05,28 +illusion_0.75L,ppo,29,5.8,0.7495846748352051,0.035055503249168396,0.8338930010795593,0.30733516812324524,1.2908161878585815,0.34149324893951416,0.0032130153849720955,0.0008854714105837047,0.0020999799016863108,0.002932279370725155,-0.001282467506825924,-0.004079689271748066,-1.5897834300994873,-1.5727973282337187,1.7483457028865812,-0.015897834300994874,-0.015727973282337188,0.017483457028865813,0.004245322663336992,0.00016067505930550396,29 +illusion_0.75L,ppo,30,6.0,0.7675195932388306,-0.008969736285507679,0.7930880784988403,0.16283062100410461,1.3311362266540527,0.3217555284500122,0.0031731710769236088,0.0008665331988595426,0.0021281372755765915,0.0030674629379063845,-0.0013970880536362529,-0.003973935730755329,-1.5360969305038452,-1.5279820263385773,1.7375543415546417,-0.015360969305038453,-0.015279820263385773,0.017375543415546417,0.004246708005666733,0.0003996735031250864,30 +illusion_0.75L,ppo,31,6.2,0.7939025163650513,-0.04694482684135437,0.7534863948822021,-0.007188799791038036,1.3598042726516724,0.2797156274318695,0.0031318766996264458,0.0008504054858349264,0.002149685053154826,0.0031910273246467113,-0.0015013925731182098,-0.0038783270865678787,-1.4475390911102295,-1.459273636341095,1.7323333323001862,-0.014475390911102295,-0.01459273636341095,0.01732333332300186,0.004260779824107885,0.0006214812165126204,31 +illusion_0.75L,ppo,32,6.4,0.8236000537872314,-0.08145910501480103,0.7224211692810059,-0.18548618257045746,1.3652290105819702,0.206525981426239,0.0030506188049912453,0.0008169947541318834,0.0021629638504236937,0.0032957252115011215,-0.0015802346169948578,-0.0037953644059598446,-1.35520601272583,-1.3832411766052246,1.7020213305950163,-0.0135520601272583,-0.013832411766052247,0.017020213305950164,0.00427695456892252,0.0008159072604030371,32 +illusion_0.75L,ppo,33,6.6,0.853545069694519,-0.11483990401029587,0.7080010771751404,-0.34740108251571655,1.3374327421188354,0.0985163226723671,0.0029514790512621403,0.0008344472735188901,0.002169623039662838,0.0033737935591489077,-0.0016211047768592834,-0.0037229314912110567,-1.2951828241348267,-1.2644284963607788,1.6424103677272794,-0.012951828241348266,-0.012644284963607788,0.016424103677272796,0.004289029631763697,0.000973953865468502,33 +illusion_0.75L,ppo,34,6.8,0.8832885026931763,-0.14704270660877228,0.716257631778717,-0.4657716751098633,1.27388596534729,-0.03645078092813492,0.0028612292371690273,0.0008773019071668386,0.0021687482949346304,0.0034167738631367683,-0.0016224734717980027,-0.003661483759060502,-1.2309784889221191,-1.1230125427246094,1.596452236175537,-0.012309784889221192,-0.011230125427246093,0.01596452236175537,0.004299434833228588,0.0010883876821026206,34 +illusion_0.75L,ppo,35,7.0,0.9136298894882202,-0.17658261954784393,0.7466319799423218,-0.5270044803619385,1.1833168268203735,-0.17723670601844788,0.0027691873256117105,0.0009076728601939976,0.002170863328501582,0.0034223648253828287,-0.0015795571962371469,-0.0036105052568018436,-1.1939345598220825,-0.9759721755981444,1.5544151961803436,-0.011939345598220826,-0.009759721755981445,0.015544151961803436,0.0043129948899149895,0.0011541711864992976,35 +illusion_0.75L,ppo,36,7.2,0.9452473521232605,-0.2021586298942566,0.7893834114074707,-0.5460253357887268,1.0829136371612549,-0.297102153301239,0.002688165521249175,0.0009741411195136607,0.0021850301418453455,0.0033882444258779287,-0.0014920190442353487,-0.0035645910538733006,-1.2078826427459717,-0.8270660638809204,1.519793838262558,-0.012078826427459718,-0.008270660638809204,0.01519793838262558,0.0043281856924295425,0.0011686912039294839,36 +illusion_0.75L,ppo,37,7.4,0.9784295558929443,-0.22355549037456512,0.832488477230072,-0.5518133044242859,0.9904569387435913,-0.3759872317314148,0.0026355343870818615,0.0010561305098235607,0.0022017161827534437,0.0033214744180440903,-0.0013851613039150834,-0.003528666216880083,-1.2065908908843994,-0.7185882329940796,1.5383909046649933,-0.012065908908843995,-0.007185882329940796,0.015383909046649933,0.004336609039455652,0.001131771714426577,37 +illusion_0.75L,ppo,38,7.6,1.0130690336227417,-0.2407723218202591,0.8701346516609192,-0.5606619119644165,0.9166441559791565,-0.4095442593097687,0.0026064347475767136,0.0011228675721213222,0.0022255321964621544,0.0032331920228898525,-0.0012669365387409925,-0.003506907494738698,-1.1813023090362549,-0.675844669342041,1.5895237624645233,-0.01181302309036255,-0.00675844669342041,0.015895237624645234,0.004331659525632858,0.0010455084266141057,38 +illusion_0.75L,ppo,39,7.8,1.0490758419036865,-0.2540304362773895,0.9020686149597168,-0.5735722184181213,0.8622687458992004,-0.4071313142776489,0.002584257395938039,0.0011743591167032719,0.0022433390840888023,0.0031372029334306717,-0.0011548094917088747,-0.003505660919472575,-1.140123724937439,-0.6917445659637451,1.6597654521465302,-0.011401237249374389,-0.006917445659637451,0.0165976545214653,0.004316441714763641,0.0009139995672740042,39 +illusion_0.75L,ppo,40,8.0,1.0865050554275513,-0.2631792724132538,0.9288071393966675,-0.5859279036521912,0.8213123083114624,-0.3821720778942108,0.002562454901635647,0.0012070671655237675,0.0022479414474219084,0.0030480625573545694,-0.0010557021014392376,-0.0035255462862551212,-1.0970005989074707,-0.7459720373153687,1.7316657900810242,-0.010970005989074707,-0.007459720373153686,0.01731665790081024,0.004301527515053749,0.0007430499535985291,40 +illusion_0.75L,ppo,41,8.2,1.1255019903182983,-0.26794302463531494,0.949608564376831,-0.5903881192207336,0.7871169447898865,-0.3432392179965973,0.0025294951628893614,0.0012104962952435017,0.0022397912107408047,0.002972204005345702,-0.0009645936661399901,-0.003562093013897538,-1.062481164932251,-0.8146409988403321,1.792795568704605,-0.01062481164932251,-0.008146409988403321,0.01792795568704605,0.004294632934033871,0.0005399071960709989,41 +illusion_0.75L,ppo,42,8.4,1.1660792827606201,-0.2676522731781006,0.9624927639961243,-0.5762932896614075,0.756374716758728,-0.2930927872657776,0.002510965568944812,0.0011923931306228042,0.002222971757873893,0.002918523270636797,-0.0008782348013482988,-0.003620375646278262,-1.0438742637634277,-0.8787251710891724,1.8395203948020935,-0.010438742637634278,-0.008787251710891723,0.018395203948020935,0.004293559584766626,0.00031304333242587745,42 +illusion_0.75L,ppo,43,8.6,1.2078977823257446,-0.2613019347190857,0.9651051163673401,-0.5311241149902344,0.7295990586280823,-0.2321166843175888,0.002480150666087866,0.0011554337106645107,0.0021932264789938927,0.0028914078138768673,-0.0007978754001669586,-0.0036918881814926863,-1.0265672206878662,-0.9554817676544188,1.8771104365587234,-0.010265672206878662,-0.009554817676544189,0.018771104365587234,0.004290138371288776,7.195398939074948e-05,43 +illusion_0.75L,ppo,44,8.8,1.2504360675811768,-0.24723929166793823,0.9569262862205505,-0.44424545764923096,0.7103788256645203,-0.16213807463645935,0.0024429697077721357,0.0011210839729756117,0.0021492522209882736,0.002894554054364562,-0.0007307545165531337,-0.0037744080182164907,-1.0118863582611084,-1.0275475978851318,1.913418635725975,-0.010118863582611085,-0.010275475978851319,0.01913418635725975,0.00428050896152854,-0.0001730822114041075,44 +illusion_0.75L,ppo,45,9.0,1.2918236255645752,-0.22306141257286072,0.9400948286056519,-0.3114742040634155,0.7033116817474365,-0.08829081803560257,0.002400095108896494,0.001047661411575973,0.0020955605432391167,0.002922859974205494,-0.0006772940396331251,-0.0038637658581137657,-0.9888030290603638,-1.1000018119812012,1.9581106901168823,-0.009888030290603637,-0.011000018119812011,0.019581106901168824,0.0042700087651610374,-0.00041134055936709046,45 +illusion_0.75L,ppo,46,9.2,1.3279870748519897,-0.18565574288368225,0.9197437167167664,-0.13920678198337555,0.7123916149139404,-0.01895119994878769,0.002360725775361061,0.0009862759616225958,0.002032465534284711,0.0029688156209886074,-0.0006419407436624169,-0.003954102285206318,-0.9958561062812804,-1.1599097847938538,1.987552985548973,-0.009958561062812805,-0.011599097847938538,0.01987552985548973,0.004267278593033552,-0.000632112380117178,46 +illusion_0.75L,ppo,47,9.4,1.35196852684021,-0.13220320641994476,0.9024459719657898,0.053824201226234436,0.7384300231933594,0.0374620147049427,0.0023320759646594524,0.0009256206685677171,0.0019718066323548555,0.0030228784307837486,-0.000615101947914809,-0.004045224282890558,-1.0114994049072266,-1.209991216659546,2.018463745713234,-0.010114994049072266,-0.012099912166595459,0.02018463745713234,0.004274563863873482,-0.0008252749685198069,47 +illusion_0.75L,ppo,48,9.6,1.3552676439285278,-0.06272803992033005,0.8943482041358948,0.2386857569217682,0.7772074937820435,0.07764725387096405,0.0023146681487560272,0.0008687387453392148,0.0019100626232102513,0.003076178953051567,-0.0006037106504663825,-0.004137190990149975,-1.0539706945419312,-1.2381630539894104,2.039277859032154,-0.010539706945419312,-0.012381630539894104,0.020392778590321542,0.004285456147044897,-0.0009819063125178218,48 +illusion_0.75L,ppo,49,9.8,1.331593632698059,0.016500011086463928,0.8991646766662598,0.3816705048084259,0.8206098675727844,0.10559923201799393,0.0023138211108744144,0.0008303107460960746,0.0018543930491432548,0.003117996733635664,-0.00060098129324615,-0.004220200702548027,-1.140035629272461,-1.228631615638733,2.0295992866158485,-0.011400356292724609,-0.012286316156387329,0.020295992866158487,0.004292575176805258,-0.0010948515264317393,49 +illusion_0.75L,ppo,50,10.0,1.2822691202163696,0.09272614121437073,0.9175313711166382,0.4564133584499359,0.8619757294654846,0.1277051717042923,0.0023284589406102896,0.0008170670480467379,0.0018079541623592377,0.0031359465792775154,-0.0006057398277334869,-0.00428608525544405,-1.2584879398345947,-1.1782896518707275,1.9929592832922935,-0.012584879398345947,-0.011782896518707276,0.019929592832922935,0.004296126775443554,-0.0011591494549065828,50 +illusion_0.75L,ppo,51,10.2,1.2169111967086792,0.15191254019737244,0.9456800222396851,0.46442875266075134,0.8989958167076111,0.14698868989944458,0.0023839157074689865,0.0008433024049736559,0.0017678478034213185,0.0031222926918417215,-0.0006275440682657063,-0.004328900948166847,-1.397828459739685,-1.1034166812896729,1.9302421435713768,-0.013978284597396851,-0.011034166812896729,0.019302421435713767,0.0043031927198171616,-0.0011722566559910774,51 +illusion_0.75L,ppo,52,10.4,1.1487367153167725,0.1859380006790161,0.9767659902572632,0.4372205436229706,0.9324029684066772,0.16311126947402954,0.002448966959491372,0.0008632146054878831,0.0017471201717853546,0.0030798548832535744,-0.0006579993641935289,-0.0043412623926997185,-1.52958083152771,-1.053486943244934,1.8498093634843826,-0.0152958083152771,-0.01053486943244934,0.018498093634843827,0.00431835139170289,-0.001134056132286787,52 +illusion_0.75L,ppo,53,10.6,1.0879244804382324,0.19518853724002838,1.0049115419387817,0.40575477480888367,0.9629060626029968,0.17545074224472046,0.002567979507148266,0.0009096639114432037,0.0017418772913515568,0.00301713147200644,-0.0007036585593596101,-0.004326348192989826,-1.6605100631713865,-1.0295828580856323,1.764933854341507,-0.016605100631713866,-0.010295828580856323,0.01764933854341507,0.004336398560553789,-0.0010466892272233963,53 +illusion_0.75L,ppo,54,10.8,1.0392380952835083,0.1858455240726471,1.0281788110733032,0.38058212399482727,0.990834653377533,0.18420249223709106,0.002677974058315158,0.0009688819409348071,0.0017491098260506988,0.0029469309374690056,-0.0007678658585064113,-0.0042876251973211765,-1.746000051498413,-1.0815637111663818,1.6995910108089447,-0.01746000051498413,-0.010815637111663818,0.016995910108089447,0.004345819354057312,-0.0009142835042439401,54 +illusion_0.75L,ppo,55,11.0,1.0032074451446533,0.16522160172462463,1.0468088388442993,0.3602481782436371,1.0164462327957153,0.19000352919101715,0.0028421557508409023,0.001019451068714261,0.0017621890874579549,0.002878018422052264,-0.0008560474379919469,-0.004230140708386898,-1.8039665222167967,-1.1648171544075012,1.6551181972026825,-0.018039665222167968,-0.011648171544075013,0.016551181972026825,0.004339585080742836,-0.0007426568772643805,55 +illusion_0.75L,ppo,56,11.2,0.9784905314445496,0.13918693363666534,1.0610511302947998,0.3416690528392792,1.0400700569152832,0.19339504837989807,0.0030000777915120125,0.0010449900291860104,0.0017835483886301517,0.0028166782576590776,-0.0009612292633391917,-0.004154564812779427,-1.8441729545593262,-1.2984501123428345,1.6047661900520327,-0.018441729545593262,-0.012984501123428345,0.016047661900520326,0.004321560729295015,-0.0005390531150624156,56 +illusion_0.75L,ppo,57,11.4,0.9631834626197815,0.11156541109085083,1.0703250169754028,0.3223346471786499,1.0618330240249634,0.19486349821090698,0.003143194830045104,0.001018607639707625,0.001815939205698669,0.0027743414975702763,-0.0010774339316412807,-0.004055312369018793,-1.8882004022598267,-1.4283128380775452,1.5485673546791077,-0.018882004022598268,-0.014283128380775452,0.015485673546791078,0.004301773849874735,-0.000311925308778882,57 +illusion_0.75L,ppo,58,11.6,0.955452024936676,0.08479902893304825,1.0735453367233276,0.299913227558136,1.081925630569458,0.19464895129203796,0.003291010158136487,0.0010101309744641185,0.0018671544967219234,0.0027516379486769438,-0.0011933819623664021,-0.003929152153432369,-1.9492809772491455,-1.5203665792942047,1.4836282134056091,-0.019492809772491456,-0.015203665792942047,0.014836282134056092,0.004286319483071566,-7.073696906445548e-05,58 +illusion_0.75L,ppo,59,11.8,0.9537338018417358,0.06004621833562851,1.0695620775222778,0.27212682366371155,1.1008062362670898,0.19307468831539154,0.0034099635668098927,0.0009898814605548978,0.0019351596711203456,0.002758502261713147,-0.0013110130093991756,-0.003788052825257182,-1.963219165802002,-1.5893259346485138,1.4586623311042786,-0.01963219165802002,-0.01589325934648514,0.014586623311042785,0.004273382015526295,0.00017427514831069857,59 +illusion_0.75L,ppo,60,12.0,0.9560677409172058,0.03778061270713806,1.056671142578125,0.23697322607040405,1.1185203790664673,0.19017687439918518,0.003517006989568472,0.0009775892831385136,0.002013345481827855,0.002792402170598507,-0.0014373967424035072,-0.003641959046944976,-1.9543514251708984,-1.604032754898071,1.460337519645691,-0.019543514251708985,-0.01604032754898071,0.01460337519645691,0.004259394947439432,0.0004124342813156545,60 +illusion_0.75L,ppo,61,12.2,0.9607502818107605,0.01776619628071785,1.033510446548462,0.19320796430110931,1.1351395845413208,0.186106875538826,0.003572329180315137,0.0009467077325098217,0.0020938809029757977,0.0028496356680989265,-0.0015731803141534328,-0.0035062390379607677,-1.9072840213775637,-1.578638166189194,1.4884110689163208,-0.019072840213775637,-0.01578638166189194,0.014884110689163208,0.004247340373694897,0.000633081654086709,61 +illusion_0.75L,ppo,62,12.4,0.9663093686103821,-0.0003275216440670192,0.9994198679924011,0.14090481400489807,1.150517463684082,0.1808493733406067,0.003585216123610735,0.0009322178084403276,0.002167313126847148,0.0029190427158027887,-0.0017171161016449332,-0.003384230425581336,-1.8522005081176758,-1.4944102764129639,1.5203388035297394,-0.018522005081176757,-0.014944102764129639,0.015203388035297393,0.004246612079441547,0.0008261421462520957,62 +illusion_0.75L,ppo,63,12.6,0.9721210598945618,-0.01695660874247551,0.9558591246604919,0.08202490210533142,1.1648125648498535,0.1745181530714035,0.003562676254659891,0.0009419696871191263,0.0022283236030489206,0.0029877787455916405,-0.0018597017042338848,-0.0032827877439558506,-1.7667131423950198,-1.3721177577972412,1.564685583114624,-0.017667131423950197,-0.013721177577972412,0.01564685583114624,0.004263712093234062,0.0009827353060245514,63 +illusion_0.75L,ppo,64,12.8,0.9776079654693604,-0.03247342258691788,0.9062950611114502,0.020599357783794403,1.1777538061141968,0.16713514924049377,0.0035016650799661875,0.0009843604639172554,0.0022797577548772097,0.0030527107883244753,-0.0019839771557599306,-0.0032167404424399137,-1.649038553237915,-1.2351691126823425,1.6196324825286865,-0.01649038553237915,-0.012351691126823425,0.016196324825286865,0.0042939698323607445,0.0010957379126921296,64 +illusion_0.75L,ppo,65,13.0,0.9826722145080566,-0.04716956242918968,0.8567517995834351,-0.03783675283193588,1.189176321029663,0.15864306688308716,0.0034084052313119173,0.0010102229425683618,0.0023162723518908024,0.0031069007236510515,-0.0020883267279714346,-0.0031930950935930014,-1.4979119300842285,-1.1021751761436462,1.69193497300148,-0.014979119300842286,-0.011021751761436462,0.016919349730014802,0.004323890432715416,0.001160208135843277,65 +illusion_0.75L,ppo,66,13.2,0.9873700141906738,-0.061312202364206314,0.8143013715744019,-0.08765390515327454,1.198889136314392,0.1490718573331833,0.0032832345459610224,0.0010593592887744308,0.0023414669558405876,0.00315003446303308,-0.0021593542769551277,-0.0032129150349646807,-1.3640315532684326,-0.9780433177947998,1.7478184998035433,-0.013640315532684327,-0.009780433177947998,0.017478184998035433,0.004342077765613794,0.0011736078886315227,66 +illusion_0.75L,ppo,67,13.4,0.992021918296814,-0.0750136449933052,0.7850693464279175,-0.12505652010440826,1.2068442106246948,0.13834169507026672,0.003146752715110779,0.001103283604606986,0.002363998908549547,0.00317982560954988,-0.0021806813310831785,-0.0032695597037672997,-1.2310913801193237,-0.8751192092895509,1.8137055933475494,-0.012310913801193238,-0.008751192092895509,0.018137055933475494,0.004347268491983414,0.0011358100455254316,67 +illusion_0.75L,ppo,68,13.6,0.9966521263122559,-0.08849786967039108,0.7717406749725342,-0.14924974739551544,1.2126437425613403,0.1264842301607132,0.002993532922118902,0.0011206052731722593,0.002380454447120428,0.0031985498499125242,-0.0021564089693129063,-0.0033612162806093693,-1.1225026845932007,-0.798262596130371,1.8830203637480736,-0.011225026845932008,-0.00798262596130371,0.018830203637480735,0.004345463588833809,0.0010489318519830704,68 +illusion_0.75L,ppo,69,13.8,1.0014622211456299,-0.10186349600553513,0.7734598517417908,-0.1623140573501587,1.2160263061523438,0.11337936669588089,0.0028474789578467607,0.0011487045558169484,0.00240272912196815,0.003204468870535493,-0.0020711275283247232,-0.0034730893094092607,-1.0641794204711914,-0.7365481853485107,1.939982168376446,-0.010641794204711914,-0.007365481853485107,0.01939982168376446,0.004340487066656351,0.0009170636185444891,69 +illusion_0.75L,ppo,70,14.0,1.0067877769470215,-0.1153365969657898,0.7866711616516113,-0.1679898202419281,1.2168549299240112,0.09905029088258743,0.0027114504482597113,0.0011683475458994508,0.0024223329965025187,0.0032030579168349504,-0.0019388310611248016,-0.0035961964167654514,-1.0114595890045166,-0.7068606615066528,2.020038388669491,-0.010114595890045167,-0.007068606615066529,0.020200383886694907,0.004329410847276449,0.0007459750631824136,70 +illusion_0.75L,ppo,71,14.2,1.0128254890441895,-0.12896686792373657,0.806369960308075,-0.17034725844860077,1.214829683303833,0.08342652022838593,0.0026026132982224226,0.001167580601759255,0.0024396118242293596,0.0031968436669558287,-0.0017696149880066514,-0.003717901650816202,-0.974043071269989,-0.6987141370773315,2.1069215312600136,-0.00974043071269989,-0.006987141370773315,0.021069215312600136,0.004308085888624191,0.000542854773811996,71 +illusion_0.75L,ppo,72,14.4,1.0196175575256348,-0.14282971620559692,0.8274946808815002,-0.17293131351470947,1.2095283269882202,0.06656069308519363,0.0025027794763445854,0.0011620805598795414,0.00244649825617671,0.0031893490813672543,-0.0015821519773453474,-0.003834574017673731,-0.9465981721878052,-0.7084890604019165,2.1941382586956024,-0.009465981721878052,-0.007084890604019165,0.021941382586956024,0.0042798398062586784,0.000316097226459533,72 +illusion_0.75L,ppo,73,14.6,1.0272572040557861,-0.1569414734840393,0.8460187315940857,-0.17840275168418884,1.2005940675735474,0.04851454123854637,0.002432342618703842,0.0011398352216929197,0.0024417259264737368,0.003179366234689951,-0.0013915188610553741,-0.003946552984416485,-0.9202035069465637,-0.7232580184936523,2.2789546251296997,-0.009202035069465637,-0.007232580184936523,0.022789546251296998,0.004256341140717268,7.510853174608201e-05,73 +illusion_0.75L,ppo,74,14.8,1.0359604358673096,-0.17131389677524567,0.8595556616783142,-0.18840762972831726,1.1878910064697266,0.029396548867225647,0.002370521891862154,0.0011198294814676046,0.002422293648123741,0.0031702762935310602,-0.0012076101265847683,-0.004055873956531286,-0.8991240859031676,-0.7520320415496826,2.3422052562236786,-0.008991240859031677,-0.007520320415496827,0.023422052562236787,0.004248499870300293,-0.00016992665769066662,74 +illusion_0.75L,ppo,75,15.0,1.0457072257995605,-0.1859559267759323,0.8671237826347351,-0.20344135165214539,1.171218752861023,0.009525250643491745,0.0023039800580590963,0.001062260940670967,0.002396966330707073,0.0031654024496674538,-0.0010254723019897938,-0.004166840575635433,-0.8748298287391663,-0.7890110015869142,2.3872663378715515,-0.008748298287391662,-0.007890110015869142,0.023872663378715516,0.00425688037648797,-0.0004083740059286356,75 +illusion_0.75L,ppo,76,15.2,1.05657160282135,-0.2007734179496765,0.8692085146903992,-0.222922682762146,1.1507076025009155,-0.01062699593603611,0.002263252856209874,0.0010154442861676216,0.002359542762860656,0.0031663186382502317,-0.0008531292551197112,-0.004282196518033743,-0.8734559416770935,-0.8246240615844725,2.3982246816158295,-0.008734559416770935,-0.008246240615844726,0.023982246816158296,0.004272068850696087,-0.0006296037463471293,76 +illusion_0.75L,ppo,77,15.4,1.068619966506958,-0.21577602624893188,0.8669775128364563,-0.24548301100730896,1.1267879009246826,-0.030271433293819427,0.0022232690826058388,0.0009527013171464205,0.002305332338437438,0.003175716381520033,-0.0006936208228580654,-0.0044020479544997215,-0.862480103969574,-0.8930591344833373,2.387974798679352,-0.00862480103969574,-0.008930591344833374,0.023879747986793518,0.004284536466002464,-0.0008235537097789347,77 +illusion_0.75L,ppo,78,15.6,1.0821943283081055,-0.23090358078479767,0.8618254065513611,-0.26933419704437256,1.1005144119262695,-0.04855404794216156,0.0021930215880274773,0.0008881919202394783,0.002233265433460474,0.003198447870090604,-0.000549366173800081,-0.004524740390479565,-0.8735676407814027,-0.9778615236282349,2.338181793689728,-0.008735676407814027,-0.009778615236282349,0.023381817936897278,0.004293113015592098,-0.000981337740086019,78 +illusion_0.75L,ppo,79,15.8,1.097304105758667,-0.24623508751392365,0.8541565537452698,-0.2925538420677185,1.0729098320007324,-0.06442718207836151,0.0021700614597648382,0.0008215676061809063,0.0021379604004323483,0.0032333466224372387,-0.00042524345917627215,-0.0046388269402086735,-0.9007800817489624,-1.0860756635665894,2.2535675764083862,-0.009007800817489624,-0.010860756635665894,0.022535675764083864,0.004303110297769308,-0.001095808343961835,79 +illusion_0.75L,ppo,80,16.0,1.1142818927764893,-0.2617303133010864,0.8438480496406555,-0.3130952715873718,1.0455113649368286,-0.07692209631204605,0.002161995507776737,0.0007578394724987447,0.002030143514275551,0.003282524412497878,-0.0003154515870846808,-0.00473629729822278,-0.9485130906105042,-1.211315095424652,2.133435219526291,-0.009485130906105041,-0.012113150954246522,0.02133435219526291,0.004317091777920723,-0.0011619804427027702,80 +illusion_0.75L,ppo,81,16.2,1.1335874795913696,-0.27741965651512146,0.8300502896308899,-0.3287052810192108,1.0199490785598755,-0.08517039567232132,0.0021820582915097475,0.0007010857225395739,0.0019122265512123704,0.003344685072079301,-0.0002227463701274246,-0.004811354447156191,-1.0026313066482544,-1.3537108302116394,1.995776280760765,-0.010026313066482544,-0.013537108302116393,0.01995776280760765,0.0043295822106301785,-0.0011772552970796824,81 +illusion_0.75L,ppo,82,16.4,1.155781865119934,-0.2932168245315552,0.8114318251609802,-0.3366561532020569,0.9976803660392761,-0.08870074898004532,0.0021938281133770943,0.0006365884910337627,0.0017888478469103575,0.003422017442062497,-0.00015261321095749736,-0.0048605455085635185,-1.0526816844940186,-1.519773542881012,1.848593235015869,-0.010526816844940185,-0.01519773542881012,0.01848593235015869,0.004332154523581266,-0.0011414313921704888,82 +illusion_0.75L,ppo,83,16.6,1.1812225580215454,-0.3089762032032013,0.7862981557846069,-0.33342915773391724,0.9794670939445496,-0.08730261772871017,0.0022204210981726646,0.0006063470500521362,0.0016739130951464176,0.0035105114802718163,-0.00010136127821169794,-0.004876244347542524,-1.1098674535751343,-1.6782851815223696,1.6956529617309568,-0.011098674535751344,-0.016782851815223696,0.01695652961730957,0.004323046654462814,-0.0010565404081717134,83 +illusion_0.75L,ppo,84,16.8,1.210381031036377,-0.3241439759731293,0.7536112070083618,-0.31467175483703613,0.9656423330307007,-0.08103904873132706,0.0022553345188498497,0.0005363450618460774,0.0015706365229561925,0.003607268910855055,-7.666386954952031e-05,-0.004861645866185427,-1.1272728443145752,-1.8434638381004336,1.5741931498050692,-0.011272728443145752,-0.018434638381004335,0.01574193149805069,0.004309957846999168,-0.0009265808621421456,84 +illusion_0.75L,ppo,85,17.0,1.2433704137802124,-0.3374131917953491,0.7134373188018799,-0.27573108673095703,0.9558603763580322,-0.06998404860496521,0.002283114707097411,0.0004838783061131835,0.0014949229080229998,0.0037107861135154963,-7.27113729226403e-05,-0.004813606850802898,-1.1586494445800781,-1.992481857538223,1.445677936077118,-0.011586494445800781,-0.019924818575382232,0.01445677936077118,0.0043023559264838696,-0.0007572299218736589,85 +illusion_0.75L,ppo,86,17.2,1.2791390419006348,-0.34595146775245667,0.6674016714096069,-0.2129306197166443,0.9491652846336365,-0.05412151664495468,0.002293685916811228,0.00043503433698788285,0.001455963123589754,0.003815057221800089,-7.829964306438342e-05,-0.004735799506306648,-1.1556363105773926,-2.1182147562503815,1.3606970310211182,-0.011556363105773926,-0.021182147562503816,0.013606970310211183,0.0043017142452299595,-0.0005555875250138342,86 +illusion_0.75L,ppo,87,17.4,1.3142597675323486,-0.34414413571357727,0.6189213395118713,-0.1251576840877533,0.944383978843689,-0.033336613327264786,0.0022996333427727222,0.00040337894461117685,0.001451323740184307,0.0039202552288770676,-0.00010140716767637059,-0.004643975291401148,-1.1276761293411255,-2.211210459470749,1.3220528960227966,-0.011276761293411255,-0.02211210459470749,0.013220528960227967,0.004300643689930439,-0.0003299686941318214,87 +illusion_0.75L,ppo,88,17.6,1.341769814491272,-0.3227364718914032,0.5730135440826416,-0.015206693671643734,0.9407612681388855,-0.007559787482023239,0.0022936107125133276,0.00032871327130123973,0.0014760341728106141,0.00402776338160038,-0.00014247355284169316,-0.004547238349914551,-1.0773664712905884,-2.273040324449539,1.3246898651123047,-0.010773664712905884,-0.022730403244495392,0.013246898651123048,0.00429190369322896,-8.971420174930245e-05,88 +illusion_0.75L,ppo,89,17.8,1.3517346382141113,-0.2699820399284363,0.5357983708381653,0.10959479957818985,0.938536524772644,0.02273157425224781,0.002259312430396676,0.00029757467564195395,0.0015279734507203102,0.004134711343795061,-0.00019266890012659132,-0.004448651801794767,-1.0686397552490234,-2.2639914453029633,1.3253610730171204,-0.010686397552490234,-0.022639914453029632,0.013253610730171204,0.004277124535292387,0.00015503856411669403,89 +illusion_0.75L,ppo,90,18.0,1.3345839977264404,-0.17734886705875397,0.5134274363517761,0.23730483651161194,0.9384568929672241,0.05652395263314247,0.002237118547782302,0.00028775670216418803,0.0015966236824169755,0.004230776336044073,-0.00025403284234926105,-0.004350930452346802,-1.0626438856124878,-2.162259191274643,1.3628925681114197,-0.010626438856124878,-0.02162259191274643,0.013628925681114196,0.004265474621206522,0.00039368137368001044,90 +illusion_0.75L,ppo,91,18.2,1.2870632410049438,-0.04648173227906227,0.5120842456817627,0.3515678346157074,0.9416002035140991,0.09213133901357651,0.0021937908604741096,0.00029928088770247996,0.0016786933410912752,0.004307989031076431,-0.0003202891966793686,-0.004260886460542679,-1.0929076671600342,-1.9628174006938934,1.4017024636268616,-0.010929076671600342,-0.019628174006938934,0.014017024636268615,0.004263981245458126,0.0006155874580144882,91 +illusion_0.75L,ppo,92,18.4,1.2145450115203857,0.10791891813278198,0.5367523431777954,0.43408656120300293,0.9488553404808044,0.12812918424606323,0.002175474539399147,0.00034460003371350467,0.001773230149410665,0.004351813346147537,-0.0003858833515550941,-0.004174854606389999,-1.177940011024475,-1.6484384834766388,1.4359896183013916,-0.011779400110244751,-0.01648438483476639,0.014359896183013917,0.004270609002560377,0.0008106737514026463,92 +illusion_0.75L,ppo,93,18.6,1.1277379989624023,0.2631436586380005,0.586245596408844,0.47405296564102173,0.9604946970939636,0.16336557269096375,0.0021792983170598745,0.00048097860417328775,0.0018758709775283933,0.004351534880697727,-0.00045717228204011917,-0.004093152470886707,-1.2975472211837769,-1.2771198749542236,1.469963014125824,-0.01297547221183777,-0.012771198749542237,0.01469963014125824,0.00427780719473958,0.0009700104128569365,93 +illusion_0.75L,ppo,94,18.8,1.0383375883102417,0.3948979675769806,0.6482591032981873,0.48036739230155945,0.9761937856674194,0.19745467603206635,0.0022099537309259176,0.0006222493830136955,0.001991579309105873,0.0042998772114515305,-0.0005394119070842862,-0.004016445949673653,-1.3959156274795532,-0.9062589406967162,1.5372937321662903,-0.013959156274795532,-0.009062589406967162,0.015372937321662903,0.004282041918486357,0.00108638487290591,94 +illusion_0.75L,ppo,95,19.0,0.9574686288833618,0.4829498529434204,0.7052029967308044,0.47681307792663574,0.9956720471382141,0.23017992079257965,0.0022798823192715645,0.0008049846510402858,0.002120734192430973,0.004192552994936705,-0.0006428176420740783,-0.0039527080953121185,-1.490918517112732,-0.5724960565567017,1.6122389733791351,-0.014909185171127319,-0.005724960565567017,0.01612238973379135,0.004287917632609606,0.001154729281552136,95 +illusion_0.75L,ppo,96,19.2,0.894166111946106,0.5167533755302429,0.7466206550598145,0.4804176986217499,1.018746256828308,0.2615814805030823,0.002374299569055438,0.0009798688115552068,0.002258710330352187,0.004027884919196367,-0.0007661411655135453,-0.003906545229256153,-1.509829044342041,-0.3441809415817261,1.7298509776592255,-0.01509829044342041,-0.003441809415817261,0.017298509776592256,0.004301857203245163,0.0011723487405106425,96 +illusion_0.75L,ppo,97,19.4,0.8522549271583557,0.501207172870636,0.7722781300544739,0.49231964349746704,1.0453819036483765,0.29165735840797424,0.0024983843322843313,0.001151232747361064,0.002405616221949458,0.0038220605347305536,-0.0009023059974424541,-0.003902672789990902,-1.465100646018982,-0.2426251173019409,1.8734481036663055,-0.01465100646018982,-0.002426251173019409,0.018734481036663055,0.004322571214288473,0.0011389366118237376,97 +illusion_0.75L,ppo,98,19.6,0.8280491828918457,0.4538954496383667,0.7853420972824097,0.506413459777832,1.075605034828186,0.32031527161598206,0.0026135435327887535,0.0012555589200928807,0.0025325589813292027,0.0036024940200150013,-0.0010327858617529273,-0.0039442721754312515,-1.3550944328308105,-0.2868553400039673,2.03615090996027,-0.013550944328308105,-0.002868553400039673,0.0203615090996027,0.0043395934626460075,0.0010564166586846113,98 +illusion_0.75L,ppo,99,19.8,0.8133106827735901,0.3931683599948883,0.7878791689872742,0.5162035822868347,1.1096200942993164,0.3471725881099701,0.002693380229175091,0.001330262515693903,0.0026234218385070562,0.0034006619825959206,-0.0011376093607395887,-0.004033587872982025,-1.2528328895568848,-0.4226365089416504,2.1634255051612854,-0.012528328895568848,-0.004226365089416504,0.021634255051612854,0.004342196509242058,0.0009286822751164436,99 +illusion_0.75L,ppo,100,20.0,0.8008197546005249,0.32897594571113586,0.7808522582054138,0.5145315527915955,1.1475847959518433,0.3711179792881012,0.0027522232849150896,0.001347363111563027,0.002673257840797305,0.0032454803586006165,-0.0011966829188168049,-0.004156238865107298,-1.1513265371322632,-0.6060894727706909,2.2641234397888184,-0.011513265371322632,-0.006060894727706909,0.022641234397888184,0.004329230170696974,0.0007613134803250432,100 +illusion_0.75L,ppo,101,20.2,0.7872414588928223,0.2632367014884949,0.7650871872901917,0.49272647500038147,1.188858151435852,0.3899247348308563,0.0027392571792006493,0.0013124137185513973,0.002677150070667267,0.0031615025363862514,-0.001212366041727364,-0.004294960759580135,-1.0683963298797607,-0.7968968152999878,2.3276871144771576,-0.010683963298797608,-0.007968968152999878,0.023276871144771578,0.0043093012645840645,0.0005613267421722412,101 +illusion_0.75L,ppo,102,20.4,0.7731626033782959,0.19525745511054993,0.7422360777854919,0.44220706820487976,1.2313324213027954,0.39914339780807495,0.002707485342398286,0.001250644214451313,0.002656531287357211,0.003151369048282504,-0.0011797602055594325,-0.004430198576301336,-1.009952187538147,-0.9281570911407472,2.365500748157501,-0.01009952187538147,-0.009281570911407471,0.02365500748157501,0.004291526973247528,0.0003369711630512029,102 +illusion_0.75L,ppo,103,20.6,0.7621546387672424,0.1258113831281662,0.7154091596603394,0.35760176181793213,1.2706859111785889,0.3909578025341034,0.0026345059741288424,0.0011531513882800937,0.0026180860586464405,0.00320155406370759,-0.0011124837910756469,-0.0045562442392110825,-0.9364262819290161,-1.0115150213241577,2.4056935906410217,-0.009364262819290162,-0.010115150213241577,0.02405693590641022,0.004277484491467476,9.754252096172422e-05,103 +illusion_0.75L,ppo,104,20.8,0.758968710899353,0.058716148138046265,0.6886465549468994,0.23925036191940308,1.2993263006210327,0.3535315692424774,0.002547615673393011,0.0010571539169177413,0.0025666288565844297,0.0032849812414497137,-0.0010254589142277837,-0.004677136428654194,-0.8673431873321533,-1.028119683265686,2.43513023853302,-0.008673431873321534,-0.010281196832656861,0.0243513023853302,0.0042631374672055244,-0.00014684362395200878,104 +illusion_0.75L,ppo,105,21.0,0.7672967314720154,-0.0007962200324982405,0.6663482785224915,0.09402456879615784,1.3081581592559814,0.27498579025268555,0.002443100092932582,0.0009539603488519788,0.002502850955352187,0.0033687760587781668,-0.000926619628444314,-0.004795018117874861,-0.7905925512313844,-1.0093954801559448,2.445639967918396,-0.007905925512313844,-0.010093954801559448,0.02445639967918396,0.004247708711773157,-0.0003855770919471979,105 +illusion_0.75L,ppo,106,21.2,0.7874625325202942,-0.04980268329381943,0.6526609659194946,-0.06549035757780075,1.292311668395996,0.15345314145088196,0.0023478022776544094,0.0008518437389284372,0.002428079955279827,0.00342892250046134,-0.0008172803209163249,-0.004909834358841181,-0.7376440763473511,-0.9619898796081543,2.4047686755657196,-0.007376440763473511,-0.009619898796081543,0.024047686755657195,0.004238303285092115,-0.0006080058519728482,106 +illusion_0.75L,ppo,107,21.4,0.8159176111221313,-0.09009670466184616,0.6504513621330261,-0.22343724966049194,1.2549632787704468,0.003423840506002307,0.0022608886938542128,0.0007712920778430998,0.002341626677662134,0.003447289112955332,-0.0006971900002099574,-0.0050064874812960625,-0.7183976769447327,-0.9151533842086792,2.3004381358623505,-0.007183976769447327,-0.009151533842086793,0.023004381358623507,0.004244087729603052,-0.0008040002430789173,107 +illusion_0.75L,ppo,108,21.6,0.8480793237686157,-0.12602762877941132,0.6606696248054504,-0.36358654499053955,1.2037794589996338,-0.15119820833206177,0.0022022065240889788,0.0007093420717865229,0.0022540860809385777,0.0034245378337800503,-0.0005578838754445314,-0.005080738104879856,-0.7297375202178955,-0.885614514350891,2.1529827415943146,-0.007297375202178955,-0.00885614514350891,0.021529827415943146,0.004266131203621626,-0.0009645655518397689,108 +illusion_0.75L,ppo,109,21.8,0.8814792633056641,-0.1601424217224121,0.6827501654624939,-0.47143858671188354,1.1455488204956055,-0.28841063380241394,0.002166317543014884,0.0006653859745711088,0.002161093521863222,0.0033717500045895576,-0.0004092409217264503,-0.005128269083797932,-0.7666083574295044,-0.9032729864120483,1.9883312806487081,-0.007666083574295044,-0.009032729864120483,0.019883312806487082,0.00429448951035738,-0.0010824102209880948,109 +illusion_0.75L,ppo,110,22.0,0.9160235524177551,-0.19233456254005432,0.7145987153053284,-0.5391557812690735,1.0854196548461914,-0.39253032207489014,0.002155712340027094,0.0006355975056067109,0.002059389604255557,0.003307260340079665,-0.00026322033954784274,-0.005148023832589388,-0.8314532637596129,-0.9734992980957032,1.8224757015705109,-0.00831453263759613,-0.009734992980957032,0.01822475701570511,0.0043162815272808075,-0.0011523779248818755,110 +illusion_0.75L,ppo,111,22.2,0.9525370597839355,-0.2216131091117859,0.751244068145752,-0.5739330649375916,1.0279141664505005,-0.4560289680957794,0.00216924911364913,0.000614489777944982,0.001951583311893046,0.0032505521085113287,-0.0001266291073989123,-0.005135612096637487,-0.9236755967140199,-1.0957319736480713,1.6632653772830963,-0.009236755967140199,-0.010957319736480713,0.016632653772830963,0.004326277878135443,-0.0011716809822246432,111 +illusion_0.75L,ppo,112,22.4,0.9915196299552917,-0.24745751917362213,0.7857153415679932,-0.5942575931549072,0.9760236144065857,-0.48100894689559937,0.002203144831582904,0.0006076013669371605,0.0018360483227297664,0.003217240795493126,-1.2712668649328407e-05,-0.005088327452540398,-1.0320353507995605,-1.2559747695922852,1.5179893374443054,-0.010320353507995607,-0.012559747695922852,0.015179893374443055,0.004328808281570673,-0.0011399217182770371,112 +illusion_0.75L,ppo,113,22.6,1.0334571599960327,-0.26958051323890686,0.813378095626831,-0.6139659285545349,0.9303684830665588,-0.4773765206336975,0.002259375061839819,0.0006029829382896423,0.0017281492473557591,0.0032143238931894302,7.80631962697953e-05,-0.005008991342037916,-1.1356273889541626,-1.4349120259284973,1.388000249862671,-0.011356273889541626,-0.014349120259284974,0.01388000249862671,0.0043297018855810165,-0.0010589387966319919,113 +illusion_0.75L,ppo,114,22.8,1.0792226791381836,-0.28757157921791077,0.8329403400421143,-0.6355637311935425,0.8895478844642639,-0.4564169943332672,0.002323269611224532,0.0006037233979441226,0.0016449193935841322,0.003244078252464533,0.0001472916774218902,-0.004899522289633751,-1.2210509777069092,-1.6150681674480436,1.275311827659607,-0.012210509777069093,-0.016150681674480437,0.01275311827659607,0.0043281326070427895,-0.0009325520950369537,114 +illusion_0.75L,ppo,115,23.0,1.1297060251235962,-0.30036187171936035,0.8438698053359985,-0.6532644033432007,0.8514420986175537,-0.42492052912712097,0.0023928198497742414,0.0005944407894276083,0.001591561478562653,0.003303177421912551,0.00018467074551153928,-0.0047677611000835896,-1.2740163803100586,-1.7730351239442825,1.1955427527427673,-0.012740163803100587,-0.017730351239442825,0.011955427527427674,0.004317938350141048,-0.0007662828429602087,115 +illusion_0.75L,ppo,116,23.2,1.1853532791137695,-0.30559203028678894,0.845553994178772,-0.6541597843170166,0.8148887753486633,-0.38397786021232605,0.0024577858857810497,0.0005872616311535239,0.001582498662173748,0.0033810443710535765,0.00019680462719406933,-0.0046192966401577,-1.305173397064209,-1.8978528082370758,1.1392780542373657,-0.01305173397064209,-0.018978528082370758,0.011392780542373658,0.004296679049730301,-0.0005671066464856267,116 +illusion_0.75L,ppo,117,23.4,1.2449973821640015,-0.29814785718917847,0.8391168713569641,-0.6182502508163452,0.7805889248847961,-0.33163487911224365,0.0025025273207575083,0.0005670984974130988,0.001612754655070603,0.0034707975573837757,0.00017725600628182292,-0.004466000013053417,-1.3025152683258057,-1.988506257534027,1.1251567602157593,-0.013025152683258058,-0.01988506257534027,0.011251567602157593,0.004271471872925758,-0.00034325156593695283,117 +illusion_0.75L,ppo,118,23.6,1.3030949831008911,-0.268473744392395,0.8294602036476135,-0.5251471996307373,0.7509245872497559,-0.2661797106266022,0.0025316206738352776,0.0005463709821924567,0.0016747458139434457,0.003563332837074995,0.00012387293099891394,-0.004317566752433777,-1.2943902015686035,-2.0354852080345154,1.1393896341323853,-0.012943902015686036,-0.020354852080345154,0.011393896341323853,0.004254178609699011,-0.00010401237523183227,118 +illusion_0.75L,ppo,119,23.8,1.3478349447250366,-0.2053748071193695,0.8239235877990723,-0.3685074746608734,0.7291847467422485,-0.1884424388408661,0.0025369643699377775,0.0005249943351373076,0.0017670548986643553,0.0036594837438315153,4.8747286200523376e-05,-0.004182777833193541,-1.296434760093689,-2.0367601215839386,1.1793997287750244,-0.01296434760093689,-0.020367601215839387,0.011793997287750244,0.004250772297382355,0.00014047697186470032,119 +illusion_0.75L,ppo,120,24.0,1.3667542934417725,-0.10741476714611053,0.8282716274261475,-0.16444779932498932,0.7190898060798645,-0.1030983179807663,0.0025347708724439144,0.000537550135049969,0.0018737827194854617,0.0037565198726952076,-5.085278462502174e-05,-0.004065473563969135,-1.3322112560272217,-1.9615224599838255,1.245193064212799,-0.013322112560272216,-0.019615224599838256,0.012451930642127991,0.004256573971360922,0.000379570439690724,120 +illusion_0.75L,ppo,121,24.2,1.3562852144241333,0.008562508039176464,0.8438235521316528,0.05546627566218376,0.7239100933074951,-0.01855483092367649,0.0025332001969218254,0.0005485352594405413,0.001984245143830776,0.0038501343224197626,-0.00017407163977622986,-0.003973698243498802,-1.3935847282409668,-1.8045607507228851,1.3383086323738098,-0.013935847282409668,-0.01804560750722885,0.013383086323738098,0.00426256749778986,0.0006025657639838755,121 +illusion_0.75L,ppo,122,24.4,1.3229565620422363,0.11718259006738663,0.8682477474212646,0.2579086422920227,0.7452433705329895,0.05501846224069595,0.002525824587792158,0.0006047748611308634,0.0020917013753205538,0.003929244354367256,-0.0003181884821970016,-0.0039032846689224243,-1.4999533891677856,-1.5788382589817045,1.4286660552024841,-0.014999533891677857,-0.015788382589817046,0.014286660552024842,0.004265558440238237,0.0007992724422365427,122 +illusion_0.75L,ppo,123,24.6,1.2761989831924438,0.1995684951543808,0.8969262838363647,0.4159194529056549,0.7805492281913757,0.11110201478004456,0.002564232097938657,0.0006969267269596457,0.002188455779105425,0.0039899335242807865,-0.00048652905388735235,-0.003850374836474657,-1.5966575145721436,-1.3266876935958862,1.5399363338947296,-0.015966575145721435,-0.013266876935958863,0.015399363338947297,0.004270726349204779,0.0009606286184862256,123 +illusion_0.75L,ppo,124,24.8,1.2243157625198364,0.2496056705713272,0.9252351522445679,0.5116445422172546,0.8235795497894287,0.15069960057735443,0.002596313366666436,0.0008280580514110625,0.0022788261994719505,0.0040269349701702595,-0.0006727318395860493,-0.003809562884271145,-1.6584343910217285,-1.104402780532837,1.6564187109470367,-0.016584343910217285,-0.01104402780532837,0.016564187109470368,0.004283971153199673,0.001079274108633399,124 +illusion_0.75L,ppo,125,25.0,1.1731661558151245,0.271256685256958,0.9503020644187927,0.544083833694458,0.8681259751319885,0.17997965216636658,0.002659095451235771,0.0009589800029061735,0.0023674191907048225,0.004032907076179981,-0.0008715981966815889,-0.003782265819609165,-1.670769214630127,-0.898444652557373,1.7876304984092712,-0.01670769214630127,-0.00898444652557373,0.017876304984092713,0.004303178749978542,0.0011499872198328376,125 +illusion_0.75L,ppo,126,25.2,1.1253916025161743,0.2728877663612366,0.971172034740448,0.53529953956604,0.91114342212677,0.20357736945152283,0.002744491444900632,0.0010925859678536654,0.002454893197864294,0.003998009022325277,-0.001076122629456222,-0.0037699646782130003,-1.645951271057129,-0.734976053237915,1.9087788090109827,-0.01645951271057129,-0.007349760532379151,0.019087788090109827,0.004318722058087587,0.00116992206312716,126 +illusion_0.75L,ppo,127,25.4,1.0809221267700195,0.26154568791389465,0.987623929977417,0.5148811936378479,0.9521584510803223,0.2230495661497116,0.0028326152823865414,0.001214892603456974,0.0025444633793085814,0.003920622635632753,-0.0012702695094048977,-0.00377665925770998,-1.58677077293396,-0.6203519105911255,2.0242287144064903,-0.0158677077293396,-0.006203519105911255,0.020242287144064904,0.004322815220803022,0.001138634397648275,127 +illusion_0.75L,ppo,128,25.6,1.0388503074645996,0.24098652601242065,0.9996744394302368,0.4988643527030945,0.9916711449623108,0.23875583708286285,0.0029226718470454216,0.0013145451666787267,0.0026324798818677664,0.003808407811447978,-0.001441364292986691,-0.0038075619377195835,-1.5101306438446045,-0.5475348234176636,2.137833058834076,-0.015101306438446045,-0.005475348234176636,0.02137833058834076,0.004317114595323801,0.0010579300578683615,128 +illusion_0.75L,ppo,129,25.8,0.9988322257995605,0.21233944594860077,1.007103681564331,0.488570898771286,1.0302926301956177,0.25117599964141846,0.002980434335768223,0.0014031205791980028,0.002709489781409502,0.0036745041143149137,-0.0015787561424076557,-0.003865201259031892,-1.4293482303619385,-0.5178683996200562,2.2445449233055115,-0.014293482303619385,-0.005178683996200562,0.022445449233055116,0.004309931304305792,0.000931612157728523,129 +illusion_0.75L,ppo,130,26.0,0.961780846118927,0.17590926587581635,1.0088156461715698,0.47871387004852295,1.0686583518981934,0.2607128918170929,0.003014518879354,0.0014496557414531708,0.0027814877685159445,0.0035343968775123358,-0.0016598234651610255,-0.003951257094740868,-1.3457574844360352,-0.5175360441207886,2.349157929420471,-0.013457574844360352,-0.005175360441207886,0.02349157929420471,0.004306346643716097,0.0007652023923583329,130 +illusion_0.75L,ppo,131,26.2,0.9298122525215149,0.13271062076091766,1.0025320053100586,0.46087077260017395,1.1074209213256836,0.2673797309398651,0.0030129882507026196,0.001463750028051436,0.002839646302163601,0.003406228730455041,-0.00168399338144809,-0.004066118970513344,-1.2684149742126465,-0.5500060319900513,2.444333493709564,-0.012684149742126465,-0.0055000603199005125,0.02444333493709564,0.00430266372859478,0.0005656927824020386,131 +illusion_0.75L,ppo,132,26.4,0.9055535793304443,0.08504275232553482,0.9853526949882507,0.4238748848438263,1.1471631526947021,0.2707262635231018,0.0029799106996506453,0.0014568690676242113,0.0028771415818482637,0.0033075748942792416,-0.0016528369160369039,-0.004205656237900257,-1.1889346837997437,-0.6102372407913208,2.5299118161201477,-0.011889346837997437,-0.006102372407913208,0.025299118161201478,0.00429161824285984,0.0003413430822547525,132 +illusion_0.75L,ppo,133,26.6,0.8913021683692932,0.036248330026865005,0.9556817412376404,0.3554857671260834,1.1883529424667358,0.26934128999710083,0.0029085343703627586,0.0014022629475221038,0.002891290234401822,0.0032509840093553066,-0.0015666494145989418,-0.004365440458059311,-1.0930051803588867,-0.6965615749359131,2.6051920652389526,-0.010930051803588867,-0.006965615749359131,0.026051920652389527,0.004272329621016979,0.00010149206354981288,133 +illusion_0.75L,ppo,134,26.8,0.8874486684799194,-0.010637853294610977,0.914971113204956,0.24746233224868774,1.2300598621368408,0.2603851556777954,0.0028118742629885674,0.0013071905123069882,0.0028725105803459883,0.003241147380322218,-0.0014432092430070043,-0.004541446454823017,-0.999370813369751,-0.7912310361862183,2.648625433444977,-0.00999370813369751,-0.007912310361862183,0.026486254334449767,0.004253413062542677,-0.00014367327094078064,134 +illusion_0.75L,ppo,135,27.0,0.8926403522491455,-0.05382505804300308,0.8694487810134888,0.1027771532535553,1.2687150239944458,0.23840735852718353,0.002690698020160198,0.0012134982971474528,0.0028241060208529234,0.0032742726616561413,-0.0012841265415772796,-0.00472185667604208,-0.9152764081954956,-0.8895045518875122,2.642423093318939,-0.009152764081954956,-0.008895045518875122,0.026424230933189394,0.004245383199304342,-0.0003834486415144056,135 +illusion_0.75L,ppo,136,27.2,0.9046581983566284,-0.09305419772863388,0.8287769556045532,-0.06041581183671951,1.2961822748184204,0.19525998830795288,0.0025755902752280235,0.0010781347518786788,0.00274637364782393,0.0033406384754925966,-0.0011004533153027296,-0.004902830813080072,-0.8259572982788087,-0.983917474746704,2.6068366169929504,-0.008259572982788087,-0.00983917474746704,0.026068366169929504,0.004250668920576572,-0.0006070726667530835,136 +illusion_0.75L,ppo,137,27.4,0.9216006994247437,-0.12876532971858978,0.8025842905044556,-0.21321284770965576,1.300550103187561,0.12375543266534805,0.00245854863896966,0.0009425331372767687,0.0026363993529230356,0.0034267145674675703,-0.0009054108522832394,-0.0050742654129862785,-0.7859983444213868,-1.069825291633606,2.5076348781585693,-0.007859983444213868,-0.01069825291633606,0.025076348781585694,0.004262279253453016,-0.0008042993140406907,137 +illusion_0.75L,ppo,138,27.6,0.9419849514961243,-0.1614723950624466,0.7959343791007996,-0.3288428485393524,1.2726666927337646,0.0264861062169075,0.002357935067266226,0.0008189455256797373,0.0025002481415867805,0.003511012764647603,-0.0007037606555968523,-0.005219172686338425,-0.7979563474655152,-1.1362943649291992,2.362336039543152,-0.007979563474655152,-0.011362943649291992,0.02362336039543152,0.0042722816579043865,-0.0009660187060944736,138 +illusion_0.75L,ppo,139,27.8,0.9651284217834473,-0.19157418608665466,0.8067036271095276,-0.39788612723350525,1.2153480052947998,-0.07945248484611511,0.0022956219036132097,0.0007286479230970144,0.002342967316508293,0.0035766898654401302,-0.0005069976905360818,-0.005325878970324993,-0.8643426299095154,-1.1909382343292236,2.1839161813259125,-0.008643426299095154,-0.011909382343292236,0.021839161813259126,0.004280176013708115,-0.0010848336387425661,139 +illusion_0.75L,ppo,140,28.0,0.9906637072563171,-0.2194451093673706,0.8262731432914734,-0.43204307556152344,1.1425795555114746,-0.171098992228508,0.0022563866805285215,0.000661283265799284,0.002168379258364439,0.003618262941017747,-0.00033080161665566266,-0.005383722018450499,-0.9652470946311951,-1.261526346206665,1.9903861060738566,-0.00965247094631195,-0.01261526346206665,0.019903861060738565,0.004291605204343796,-0.0011554996017366648,140 +illusion_0.75L,ppo,141,28.2,1.0185869932174683,-0.24549858272075653,0.845452070236206,-0.4507603049278259,1.0700243711471558,-0.23337127268314362,0.0022660314571112394,0.0006233943859115243,0.0019968170672655106,0.003637860529124737,-0.00017535287770442665,-0.005388391669839621,-1.0916337966918945,-1.350250244140625,1.789715349674225,-0.010916337966918946,-0.01350250244140625,0.01789715349674225,0.004309208132326603,-0.0011751636629924178,141 +illusion_0.75L,ppo,142,28.4,1.049066185951233,-0.27004292607307434,0.8587875962257385,-0.46698570251464844,1.0070306062698364,-0.26412278413772583,0.0023000140208750963,0.0006069130613468587,0.0018355563515797257,0.0036507504992187023,-5.300512202666141e-05,-0.005343205761164427,-1.198849081993103,-1.4831633567810059,1.6090479493141174,-0.01198849081993103,-0.01483163356781006,0.016090479493141175,0.004326635040342808,-0.001143390778452158,142 +illusion_0.75L,ppo,143,28.6,1.0826070308685303,-0.29333674907684326,0.864300549030304,-0.4846704602241516,0.9558313488960266,-0.2694295346736908,0.0023621348664164543,0.0005904989084228873,0.0016979313222691417,0.003666664706543088,3.0891740607330576e-05,-0.005257901735603809,-1.277998924255371,-1.6365144550800323,1.4567129015922546,-0.012779989242553712,-0.016365144550800324,0.014567129015922546,0.004333213437348604,-0.0010620126267895103,143 +illusion_0.75L,ppo,144,28.8,1.1202727556228638,-0.3154050409793854,0.8612697720527649,-0.5018987655639648,0.9147292971611023,-0.25701987743377686,0.002427024533972144,0.0005767031689174473,0.0015972699038684368,0.003690366167575121,7.799561717547476e-05,-0.005141718313097954,-1.3317558765411377,-1.7984308898448944,1.3290942311286926,-0.013317558765411377,-0.017984308898448945,0.013290942311286927,0.004324445500969887,-0.0009348725434392691,144 +illusion_0.75L,ppo,145,29.0,1.1633293628692627,-0.3359638452529907,0.8485091924667358,-0.5124706029891968,0.8810572624206543,-0.2323099970817566,0.0024774151388555765,0.0005493008065968752,0.001542343758046627,0.003721826011314988,8.900109969545156e-05,-0.0050031389109790325,-1.3551232814788818,-1.9467486739158628,1.236907184123993,-0.013551232814788818,-0.01946748673915863,0.012369071841239929,0.004306653048843145,-0.0007675446104258299,145 +illusion_0.75L,ppo,146,29.2,1.2131327390670776,-0.3534259796142578,0.8247612714767456,-0.5057721734046936,0.8533540964126587,-0.19819116592407227,0.0025362949818372726,0.0005302706267684698,0.0015374287031590939,0.0037588379345834255,7.0388508902397e-05,-0.004849166143685579,-1.357981562614441,-2.0645513832569122,1.1765851378440857,-0.01357981562614441,-0.020645513832569122,0.011765851378440858,0.004290517885237932,-0.000567082257475704,146 +illusion_0.75L,ppo,147,29.4,1.2699005603790283,-0.3626708686351776,0.7906354665756226,-0.4673718512058258,0.8321182727813721,-0.15632468461990356,0.0025682596024125814,0.0004664883890654892,0.0015849232440814376,0.003807850182056427,3.268935688538477e-05,-0.004692342132329941,-1.3158494234085083,-2.1732639372348785,1.1622974872589111,-0.013158494234085083,-0.021732639372348785,0.011622974872589112,0.004280740395188332,-0.00034181104274466634,147 +illusion_0.75L,ppo,148,29.6,1.3287125825881958,-0.35012558102607727,0.75081467628479,-0.38350149989128113,0.8192503452301025,-0.10886023193597794,0.0025640036910772324,0.00041798644815571606,0.0016703307628631592,0.0038780837785452604,-2.717538518481888e-05,-0.004543535877019167,-1.27403724193573,-2.241489499807358,1.1749473810195923,-0.0127403724193573,-0.02241489499807358,0.011749473810195922,0.004273268859833479,-0.00010113600001204759,148 +illusion_0.75L,ppo,149,29.8,1.3754478693008423,-0.2935085892677307,0.7137274146080017,-0.2499092072248459,0.8165169358253479,-0.05890681594610214,0.0025533500593155622,0.0003829752386081964,0.0017824711976572871,0.003967649303376675,-0.00010516014299355447,-0.004412591923028231,-1.215761661529541,-2.2542339265346527,1.234294056892395,-0.01215761661529541,-0.022542339265346528,0.01234294056892395,0.004262732807546854,0.00014469395682681352,149 +illusion_0.75L,ppo,150,30.0,1.3939694166183472,-0.17972974479198456,0.6883090734481812,-0.07787472754716873,0.8243694305419922,-0.009789452888071537,0.002512541599571705,0.00035062801907770336,0.001907495898194611,0.004077380057424307,-0.00020454706100281328,-0.00430952338501811,-1.1751294136047363,-2.1847549378871918,1.3150646686553955,-0.011751294136047363,-0.021847549378871917,0.013150646686553955,0.0042510125786066055,0.00038492129533551633,150 +illusion_0.75L,ppo,151,30.2,1.3803170919418335,-0.025703055784106255,0.6798057556152344,0.10948856174945831,0.8409280180931091,0.036572400480508804,0.002458827570080757,0.0003511004615575075,0.0020281414035707712,0.0041867331601679325,-0.00032273397664539516,-0.004227286204695702,-1.201697587966919,-1.9722681045532227,1.3882167339324951,-0.012016975879669189,-0.019722681045532226,0.013882167339324951,0.004246690776199102,0.0006087439251132309,151 +illusion_0.75L,ppo,152,30.4,1.3424721956253052,0.13318587839603424,0.6890602707862854,0.28593066334724426,0.8631172180175781,0.08007580041885376,0.002414330141618848,0.00040554802399128675,0.002142183016985655,0.0042748115956783295,-0.00044621730921790004,-0.004158889874815941,-1.2798187732696533,-1.6498116254806519,1.4557890892028809,-0.012798187732696533,-0.01649811625480652,0.014557890892028809,0.004255807958543301,0.000805890653282404,152 +illusion_0.75L,ppo,153,30.6,1.2892882823944092,0.2669815123081207,0.7138093709945679,0.42766666412353516,0.8883914351463318,0.12101991474628448,0.002391323447227478,0.00052132603013888,0.0022449276875704527,0.004330220632255077,-0.0005758036859333515,-0.004099985118955374,-1.3664946556091309,-1.2966689467430115,1.538371980190277,-0.01366494655609131,-0.012966689467430115,0.015383719801902772,0.004274525213986635,0.0009672442683950067,153 +illusion_0.75L,ppo,154,30.8,1.2280826568603516,0.3587644100189209,0.7503446936607361,0.517514705657959,0.9158791899681091,0.15899235010147095,0.0023924726992845535,0.000671645044349134,0.0023372708819806576,0.004347653593868017,-0.0007181204855442047,-0.004050358198583126,-1.4291245937347412,-0.972196102142334,1.6454049050807953,-0.014291245937347413,-0.00972196102142334,0.016454049050807953,0.004292297642678022,0.0010854192078113556,154 +illusion_0.75L,ppo,155,31.0,1.1657805442810059,0.4053964614868164,0.7928169965744019,0.5552220344543457,0.9455654621124268,0.1932266652584076,0.0024267928674817085,0.0008480934193357825,0.0024290282744914293,0.004317862913012505,-0.0008725483785383403,-0.004010174423456192,-1.4655004739761353,-0.7012619972229004,1.7661690711975098,-0.014655004739761352,-0.007012619972229004,0.017661690711975098,0.004302178509533405,0.0011552009964361787,155 +illusion_0.75L,ppo,156,31.2,1.107588291168213,0.4154534637928009,0.8333663940429688,0.5616633296012878,0.9774096608161926,0.22357577085494995,0.002494242275133729,0.0010216732043772936,0.002525666728615761,0.004234927240759134,-0.0010348301148042083,-0.0039858450181782246,-1.4603016376495361,-0.5053317546844482,1.9027582556009293,-0.01460301637649536,-0.005053317546844483,0.019027582556009292,0.004306729417294264,0.0011737841414287686,156 +illusion_0.75L,ppo,157,31.4,1.055264949798584,0.40224629640579224,0.8658871650695801,0.5605802536010742,1.0112218856811523,0.25032225251197815,0.0025794380344450474,0.0011497762752696872,0.0026282980106770992,0.004101870581507683,-0.0011920674005523324,-0.003985881339758635,-1.4220726490020752,-0.3906844854354858,2.0424521192908287,-0.014220726490020753,-0.003906844854354858,0.020424521192908288,0.004313030280172825,0.0011407959973439574,157 +illusion_0.75L,ppo,158,31.6,1.0079641342163086,0.37571650743484497,0.8886811137199402,0.5617027878761292,1.0472549200057983,0.27392682433128357,0.002670944668352604,0.0012734218034893274,0.002738203154876828,0.003929118625819683,-0.0013171678874641657,-0.004017963074147701,-1.3782446384429932,-0.3440755605697632,2.1653579473495483,-0.013782446384429933,-0.003440755605697632,0.021653579473495485,0.004322762601077557,0.0010581414680927992,158 +illusion_0.75L,ppo,159,31.8,0.9640734195709229,0.33969029784202576,0.901894211769104,0.5631920695304871,1.0860490798950195,0.29463374614715576,0.0027399214450269938,0.0013625293504446745,0.002837572945281863,0.0037418710999190807,-0.0013991785235702991,-0.0040893289260566235,-1.2982244491577148,-0.371440052986145,2.2989775240421295,-0.01298224449157715,-0.0037144005298614504,0.022989775240421294,0.00432894192636013,0.0009297445067204535,159 +illusion_0.75L,ppo,160,32.0,0.9228067994117737,0.29381993412971497,0.9049860239028931,0.557737410068512,1.1282069683074951,0.3123377561569214,0.0027823178097605705,0.0014049820601940155,0.0029159635305404663,0.0035670027136802673,-0.0014272634871304035,-0.00419794674962759,-1.214958667755127,-0.44856357574462885,2.4194947481155396,-0.012149586677551269,-0.004485635757446289,0.024194947481155395,0.004323208704590797,0.0007612616172991693,160 +illusion_0.75L,ppo,161,32.2,0.8851620554924011,0.23706987500190735,0.8968788981437683,0.5338259339332581,1.1743148565292358,0.3259308338165283,0.0027892859652638435,0.0014041325775906444,0.002961097052320838,0.003431184682995081,-0.0013990072766318917,-0.0043353973887860775,-1.1351343393325806,-0.5627013444900513,2.520101249217987,-0.011351343393325806,-0.005627013444900512,0.02520101249217987,0.0043054320849478245,0.0005598256830126047,161 +illusion_0.75L,ppo,162,32.4,0.8538461327552795,0.17033615708351135,0.8774473667144775,0.47686153650283813,1.2239923477172852,0.3319944739341736,0.0027552680112421513,0.0013620264362543821,0.0029661860316991806,0.0033514501992613077,-0.001324212527833879,-0.004490777384489775,-1.0555546283721924,-0.6955691576004028,2.5992076992988586,-0.010555546283721923,-0.006955691576004028,0.025992076992988587,0.0042846668511629105,0.0003338336537126452,162 +illusion_0.75L,ppo,163,32.6,0.8326637744903564,0.09771604835987091,0.8495259284973145,0.37420299649238586,1.273705244064331,0.3223564624786377,0.002689369022846222,0.0012848691549152136,0.002935979049652815,0.0033351099118590355,-0.0012102777836844325,-0.004654780495911837,-0.9771000146865844,-0.8249753713607788,2.649510622024536,-0.009771000146865844,-0.008249753713607788,0.02649510622024536,0.004270360339432955,9.274937474401668e-05,163 +illusion_0.75L,ppo,164,32.8,0.8249244093894958,0.025957856327295303,0.8192681074142456,0.22354644536972046,1.313639521598816,0.28241419792175293,0.0026011920999735594,0.0011827184353023767,0.002872847719117999,0.003376790788024664,-0.0010699471458792686,-0.004822276532649994,-0.8982986211776733,-0.9356818199157716,2.666132867336273,-0.008982986211776733,-0.009356818199157716,0.02666132867336273,0.004263774491846561,-0.00015313613403122872,164 +illusion_0.75L,ppo,165,33.0,0.8316653966903687,-0.03834947571158409,0.7941787242889404,0.03820930793881416,1.3292186260223389,0.1978074312210083,0.002504985313862562,0.0010630455799400806,0.002778703812509775,0.0034561159554868937,-0.0009160585468634963,-0.00498642073944211,-0.8295936584472656,-1.0127732753753662,2.6346943974494934,-0.008295936584472656,-0.010127732753753662,0.026346943974494934,0.004259183071553707,-0.00039304280653595924,165 +illusion_0.75L,ppo,166,33.2,0.850647509098053,-0.09203996509313583,0.7800444960594177,-0.15591508150100708,1.3112983703613281,0.07099104672670364,0.002404050901532173,0.0009345816215500236,0.0026584852021187544,0.003541765734553337,-0.0007536932826042175,-0.0051372116431593895,-0.7907735109329224,-1.0470022559165955,2.538018584251404,-0.007907735109329224,-0.010470022559165956,0.025380185842514037,0.004253040533512831,-0.0006161675555631518,166 +illusion_0.75L,ppo,167,33.4,0.8776348233222961,-0.1361134946346283,0.7796976566314697,-0.3279768228530884,1.2644882202148438,-0.0727115347981453,0.0023137617390602827,0.0008222003816626966,0.0025172391906380653,0.00360224605537951,-0.0005891164182685316,-0.00526274973526597,-0.7993466854095459,-1.0442497730255127,2.37587970495224,-0.007993466854095459,-0.010442497730255127,0.0237587970495224,0.004250074736773968,-0.0008122602594085038,167 +illusion_0.75L,ppo,168,33.6,0.9088903665542603,-0.17324557900428772,0.7931495904922485,-0.4516980051994324,1.2015763521194458,-0.20193064212799072,0.0022604812402278185,0.0007375997374765575,0.0023637639824301004,0.0036222341004759073,-0.00042480172123759985,-0.005349201150238514,-0.8517345786094666,-1.0445513725280762,2.1732532680034637,-0.008517345786094666,-0.010445513725280763,0.02173253268003464,0.004258817993104458,-0.0009722463437356055,168 +illusion_0.75L,ppo,169,33.8,0.9426814317703247,-0.20541685819625854,0.8170961737632751,-0.5193099975585938,1.1345059871673584,-0.2966388463973999,0.0022386147174984217,0.0006827976321801543,0.002205898519605398,0.0036082447040826082,-0.00026612720103003085,-0.005393105559051037,-0.9360591173171997,-1.091415524482727,1.964153617620468,-0.009360591173171997,-0.010914155244827271,0.01964153617620468,0.004281363915652037,-0.0010888022370636463,169 +illusion_0.75L,ppo,170,34.0,0.9786519408226013,-0.23365512490272522,0.8447410464286804,-0.5473644137382507,1.0712227821350098,-0.3519388437271118,0.002251126803457737,0.0006518334266729653,0.0020465401466935873,0.0035776784643530846,-0.00012276806228328496,-0.005398062989115715,-1.0406453609466553,-1.1943433284759521,1.7737870514392853,-0.010406453609466553,-0.011943433284759521,0.017737870514392854,0.004309054929763079,-0.001156791695393622,170 +illusion_0.75L,ppo,171,34.2,1.0169835090637207,-0.258470743894577,0.8692013025283813,-0.5607826113700867,1.0154081583023071,-0.3740755021572113,0.0022954693995416164,0.0006339845713227987,0.0018949087243527174,0.0035478337667882442,-2.468270622557611e-06,-0.00536603108048439,-1.1488078832626343,-1.3515969514846802,1.604848474264145,-0.011488078832626343,-0.013515969514846802,0.01604848474264145,0.004329311661422253,-0.0011734996223822236,171 +illusion_0.75L,ppo,172,34.4,1.0582172870635986,-0.28015562891960144,0.8866795301437378,-0.5747028589248657,0.9669837951660156,-0.3732742965221405,0.002356660785153508,0.0006157552707009017,0.001757336314767599,0.0035351524129509926,8.5852800111752e-05,-0.00530000077560544,-1.2434271574020386,-1.5417386889457703,1.456300973892212,-0.012434271574020385,-0.015417386889457704,0.01456300973892212,0.004336345009505749,-0.0011386508122086525,172 +illusion_0.75L,ppo,173,34.6,1.1033138036727905,-0.2985336482524872,0.8957127332687378,-0.5922913551330566,0.9238650798797607,-0.35755598545074463,0.0024304548278450966,0.0006045150221325457,0.001646274933591485,0.0035444649402052164,0.0001397256855852902,-0.0051980470307171345,-1.3225311040878296,-1.7302159368991852,1.3226398229599,-0.013225311040878296,-0.017302159368991852,0.013226398229599,0.004334232769906521,-0.0010542497038841248,173 +illusion_0.75L,ppo,174,34.8,1.1534972190856934,-0.3128005266189575,0.8950088620185852,-0.6083035469055176,0.8839237093925476,-0.3301762640476227,0.0025112798903137445,0.0006040477892383933,0.001579783856868744,0.003572721965610981,0.00016458809841424227,-0.0050641996785998344,-1.3703900575637817,-1.8970804810523985,1.2167983055114746,-0.013703900575637818,-0.018970804810523986,0.012167983055114746,0.004329643212258816,-0.0009243153617717326,174 +illusion_0.75L,ppo,175,35.0,1.209836721420288,-0.3206135630607605,0.8832342028617859,-0.608534574508667,0.8463413715362549,-0.29097288846969604,0.0025695806834846735,0.0005493345088325441,0.0015659874770790339,0.0036164820194244385,0.00016246718587353826,-0.004909086041152477,-1.373252511024475,-2.03619247674942,1.155615746974945,-0.013732525110244751,-0.020361924767494204,0.01155615746974945,0.00432319100946188,-0.0007545904372818768,175 +illusion_0.75L,ppo,176,35.2,1.2715365886688232,-0.31601542234420776,0.8614323139190674,-0.5693955421447754,0.81209397315979,-0.2387492060661316,0.002615799894556403,0.000510607787873596,0.0016043162904679775,0.0036693685688078403,0.0001334716216661036,-0.00474275927990675,-1.3788875341415405,-2.122868925333023,1.1146145462989807,-0.013788875341415405,-0.02122868925333023,0.011146145462989808,0.004309643525630236,-0.0005522798164747655,176 +illusion_0.75L,ppo,177,35.4,1.3319032192230225,-0.2859061360359192,0.8359548449516296,-0.46773430705070496,0.7840616703033447,-0.17385129630565643,0.0026372401043772697,0.00046951122931204736,0.0016860859468579292,0.0037341099232435226,7.739337888779119e-05,-0.004577440209686756,-1.3440515995025635,-2.182426482439041,1.1317052245140076,-0.013440515995025635,-0.021824264824390413,0.011317052245140076,0.004286581184715033,-0.0003258340584579855,177 +illusion_0.75L,ppo,178,35.6,1.3756728172302246,-0.2139897346496582,0.8165282607078552,-0.299506813287735,0.7663440704345703,-0.09981192648410797,0.0026315266732126474,0.0004394030256662518,0.0017971955239772797,0.003814109368249774,-8.68508232088061e-06,-0.004428957123309374,-1.3140960931777954,-2.184150129556656,1.1895731091499329,-0.013140960931777954,-0.02184150129556656,0.011895731091499329,0.004260983318090439,-8.474913192912936e-05,178 +illusion_0.75L,ppo,179,35.8,1.3883253335952759,-0.09936226904392242,0.8103398680686951,-0.08714590221643448,0.7630900740623474,-0.024018974974751472,0.0026099937967956066,0.00042495105299167335,0.0019222386181354523,0.003902395721524954,-0.00012469571083784103,-0.004303494468331337,-1.3235266208648682,-2.089203506708145,1.2714513540267944,-0.013235266208648682,-0.02089203506708145,0.012714513540267945,0.004245322663336992,0.00016067505930550396,179 +illusion_0.75L,ppo,180,36.0,1.3692669868469238,0.0332392081618309,0.8189482688903809,0.13295987248420715,0.7765541076660156,0.04454069212079048,0.0025893719866871834,0.0004346594214439392,0.0020551972556859255,0.003987520467489958,-0.0002593456592876464,-0.004203103017061949,-1.3922213315963745,-1.8815367817878723,1.3568469285964966,-0.013922213315963746,-0.018815367817878723,0.013568469285964967,0.004246708005666733,0.0003996735031250864,180 +illusion_0.75L,ppo,181,36.2,1.3284333944320679,0.15214753150939941,0.8393584489822388,0.3266898989677429,0.8046472668647766,0.1000487357378006,0.0025744063314050436,0.0005058725364506245,0.002181997988373041,0.004063335247337818,-0.00041210214840248227,-0.0041250139474868774,-1.4967565536499023,-1.6040971875190733,1.4475526809692383,-0.014967565536499024,-0.016040971875190733,0.014475526809692383,0.004260779824107885,0.0006214812165126204,181 +illusion_0.75L,ppo,182,36.4,1.2762280702590942,0.23817451298236847,0.8666344285011292,0.4683937430381775,0.8413642644882202,0.1431073546409607,0.002580763306468725,0.0006203746888786554,0.0022978305350989103,0.0041253105737268925,-0.0005825656116940081,-0.004066497087478638,-1.582825422286987,-1.31842839717865,1.5610319375991821,-0.015828254222869872,-0.0131842839717865,0.015610319375991822,0.00427695456892252,0.0008159072604030371,182 +illusion_0.75L,ppo,183,36.6,1.2206294536590576,0.2876646816730499,0.8961026668548584,0.5438826680183411,0.8807805776596069,0.1779467761516571,0.002614440629258752,0.0007647707243449986,0.0023993859067559242,0.004168923012912273,-0.0007727989577688277,-0.004023352637887001,-1.633927583694458,-1.0652819871902466,1.6859411895275116,-0.01633927583694458,-0.010652819871902466,0.016859411895275116,0.004289029631763697,0.000973953865468502,183 +illusion_0.75L,ppo,184,36.8,1.1669796705245972,0.30751192569732666,0.92418372631073,0.5613706111907959,0.920116126537323,0.2075166255235672,0.002670882735401392,0.0009204685920849442,0.0024885511957108974,0.00418122997507453,-0.0009810351766645908,-0.003991875797510147,-1.6437132358551025,-0.8588171005249023,1.809773713350296,-0.016437132358551026,-0.008588171005249024,0.01809773713350296,0.004299434833228588,0.0010883876821026206,184 +illusion_0.75L,ppo,185,37.0,1.1173282861709595,0.3077848255634308,0.948016881942749,0.5503453612327576,0.9589117169380188,0.23274283111095428,0.0027527231723070145,0.0010686441091820598,0.002576420083642006,0.0041486164554953575,-0.001191597431898117,-0.003969372250139713,-1.6210935115814207,-0.699135422706604,1.922181375324726,-0.016210935115814208,-0.00699135422706604,0.01922181375324726,0.0043129948899149895,0.0011541711864992976,185 +illusion_0.75L,ppo,186,37.2,1.0711642503738403,0.2960848808288574,0.9659401774406433,0.5368978977203369,0.9973814487457275,0.2540099024772644,0.0028424025513231754,0.0012136888690292835,0.0026677364949136972,0.004071337636560202,-0.0013851107796654105,-0.003959604073315859,-1.572398066520691,-0.5894902944564819,2.0286159738898277,-0.01572398066520691,-0.005894902944564819,0.020286159738898277,0.0043281856924295425,0.0011686912039294839,186 +illusion_0.75L,ppo,187,37.4,1.0271245241165161,0.27554020285606384,0.9775513410568237,0.5296534895896912,1.0358614921569824,0.2719718813896179,0.0029245675541460514,0.0013232305645942688,0.002757326001301408,0.003956684842705727,-0.0015485185431316495,-0.003972881007939577,-1.4939321279525757,-0.5260897874832153,2.1466054022312164,-0.014939321279525757,-0.005260897874832153,0.021466054022312164,0.004336609039455652,0.001131771714426577,187 +illusion_0.75L,ppo,188,37.6,0.9846578240394592,0.24628101289272308,0.9826563000679016,0.5261321067810059,1.075026512145996,0.2870974838733673,0.0029824802186340094,0.001406622352078557,0.0028408507350832224,0.003818985540419817,-0.0016660349210724235,-0.004015425685793161,-1.4141764640808105,-0.502933144569397,2.2583709359169006,-0.014141764640808106,-0.00502933144569397,0.022583709359169007,0.004331659525632858,0.0010455084266141057,188 +illusion_0.75L,ppo,189,37.8,0.9445679187774658,0.20742817223072052,0.9799488186836243,0.5192212462425232,1.115718960762024,0.29960882663726807,0.0030059402342885733,0.001457931357435882,0.0029110857285559177,0.0036771362647414207,-0.0017274479614570737,-0.004087955225259066,-1.3286453485488892,-0.5182203054428101,2.3695455491542816,-0.013286453485488892,-0.005182203054428101,0.023695455491542818,0.004316441714763641,0.0009139995672740042,189 +illusion_0.75L,ppo,190,38.0,0.9090763926506042,0.15920333564281464,0.9670549631118774,0.49805763363838196,1.1587965488433838,0.3090480864048004,0.00299246609210968,0.001471019582822919,0.0029619920533150434,0.0035500922240316868,-0.0017297271406278014,-0.004190754145383835,-1.2404568195343018,-0.5651576519012451,2.474905252456665,-0.012404568195343017,-0.005651576519012451,0.02474905252456665,0.004301527515053749,0.0007430499535985291,190 +illusion_0.75L,ppo,191,38.2,0.8815392255783081,0.10389885306358337,0.9421090483665466,0.44828400015830994,1.2049274444580078,0.31385117769241333,0.0029388987459242344,0.0014557464746758342,0.002991500310599804,0.003455530619248748,-0.0016697929240763187,-0.004317964892834425,-1.1496531963348389,-0.6387884616851807,2.565573751926422,-0.01149653196334839,-0.0063878846168518065,0.025655737519264223,0.004294632934033871,0.0005399071960709989,191 +illusion_0.75L,ppo,192,38.4,0.8652834296226501,0.045848436653614044,0.9061707258224487,0.3558819591999054,1.253343105316162,0.30975010991096497,0.002861008746549487,0.001393218757584691,0.0029944926500320435,0.0034067772794514894,-0.0015565860085189342,-0.004470623563975096,-1.0419921875,-0.7311872243881226,2.645076870918274,-0.010419921875,-0.007311872243881226,0.02645076870918274,0.004293559584766626,0.00031304333242587745,192 +illusion_0.75L,ppo,193,38.6,0.8618283867835999,-0.010104852728545666,0.86474609375,0.21574757993221283,1.2988052368164062,0.28737202286720276,0.0027629947289824486,0.001296436763368547,0.0029667182825505733,0.003409448079764843,-0.001399610540829599,-0.004645852837711573,-0.9338511228561401,-0.8380839824676514,2.6866795420646667,-0.009338511228561401,-0.008380839824676514,0.02686679542064667,0.004290138371288776,7.195398939074948e-05,193 +illusion_0.75L,ppo,194,38.8,0.8701056838035583,-0.06067145988345146,0.8266422152519226,0.03935029357671738,1.329023838043213,0.23222513496875763,0.0026372310239821672,0.0011738637695088983,0.002903760876506567,0.00346015696413815,-0.0012100854655727744,-0.004835077561438084,-0.8335260152816771,-0.9456462860107422,2.6798255443573,-0.008335260152816772,-0.009456462860107422,0.026798255443572998,0.00428050896152854,-0.0001730822114041075,194 +illusion_0.75L,ppo,195,39.0,0.887179434299469,-0.10502264648675919,0.8003227114677429,-0.14632827043533325,1.3286514282226562,0.13453638553619385,0.002501671900972724,0.001040616538375616,0.0028031684923917055,0.0035390621051192284,-0.0010034287115558982,-0.005020129028707743,-0.7660606503486633,-1.021957516670227,2.612914204597473,-0.007660606503486634,-0.01021957516670227,0.026129142045974732,0.0042700087651610374,-0.00041134055936709046,195 +illusion_0.75L,ppo,196,39.2,0.9099926948547363,-0.14402055740356445,0.7911627888679504,-0.30806344747543335,1.2919058799743652,0.004978563636541367,0.0023739065509289503,0.0009062474127858877,0.0026710820384323597,0.0036148088984191418,-0.0007857209420762956,-0.005185624584555626,-0.7483648657798767,-1.0543437600135803,2.4826258420944214,-0.007483648657798768,-0.010543437600135803,0.024826258420944214,0.004267278593033552,-0.000632112380117178,196 +illusion_0.75L,ppo,197,39.4,0.9364431500434875,-0.17872434854507446,0.7999032735824585,-0.4202583432197571,1.228691577911377,-0.12679287791252136,0.0022859431337565184,0.0008013952756300569,0.0025181425735354424,0.003664187388494611,-0.0005637956201098859,-0.0053173089399933815,-0.790752947330475,-1.063585638999939,2.300727069377899,-0.00790752947330475,-0.01063585638999939,0.023007270693778992,0.004274563863873482,-0.0008252749685198069,197 +illusion_0.75L,ppo,198,39.6,0.9655237793922424,-0.20993424952030182,0.82147216796875,-0.4795578718185425,1.1556873321533203,-0.23246130347251892,0.0022330847568809986,0.0007277657277882099,0.0023478635121136904,0.0036810305900871754,-0.000352609931724146,-0.005403435323387384,-0.8693735599517821,-1.1021185517311096,2.1060316786170006,-0.008693735599517822,-0.011021185517311096,0.021060316786170007,0.004285456147044897,-0.0009819063125178218,198 +illusion_0.75L,ppo,199,39.8,0.9970157742500305,-0.23819996416568756,0.8468413352966309,-0.5049594640731812,1.0858850479125977,-0.2995615303516388,0.002217330737039447,0.0006781538832001388,0.0021673948504030704,0.0036757749039679766,-0.00016621120448689908,-0.005447353236377239,-0.9738485813140868,-1.1886972188949585,1.9191945642232893,-0.009738485813140869,-0.011886972188949586,0.019191945642232894,0.004292575176805258,-0.0010948515264317393,199 +illusion_0.75L,ppo,200,40.0,1.0311123132705688,-0.2639656364917755,0.868232250213623,-0.5191912651062012,1.0254621505737305,-0.3306189477443695,0.002241531852632761,0.0006427987827919424,0.0019851413089782,0.0036625659558922052,-1.5655881725251675e-05,-0.005446515511721373,-1.086396336555481,-1.3297128081321716,1.7430336475372314,-0.01086396336555481,-0.013297128081321717,0.017430336475372316,0.004296126775443554,-0.0011591494549065828,200 +illusion_0.75L,ppo,201,40.2,1.0683112144470215,-0.2875099182128906,0.8818925619125366,-0.5344918966293335,0.9749704599380493,-0.33536458015441895,0.0022886311635375023,0.0006215982721187174,0.0018108581425622106,0.0036568555515259504,9.418823901796713e-05,-0.00540309539064765,-1.189557433128357,-1.508607566356659,1.5765059292316437,-0.011895574331283569,-0.01508607566356659,0.015765059292316436,0.0043031927198171616,-0.0011722566559910774,201 +illusion_0.75L,ppo,202,40.4,1.1095994710922241,-0.3088547885417938,0.8865816593170166,-0.5531651973724365,0.9320132732391357,-0.32316333055496216,0.002344723092392087,0.0006031127413734794,0.001667537959292531,0.0036633184645324945,0.00016705173766240478,-0.005320596043020487,-1.2707557678222656,-1.6949739158153534,1.4257135391235352,-0.012707557678222656,-0.016949739158153534,0.014257135391235352,0.00431835139170289,-0.001134056132286787,202 +illusion_0.75L,ppo,203,40.6,1.1565035581588745,-0.32752448320388794,0.8812941908836365,-0.5711527466773987,0.8939042687416077,-0.2992667257785797,0.0024374783970415592,0.000581726199015975,0.001569124753586948,0.0036846704315394163,0.00020779264741577208,-0.0052078962326049805,-1.3239890336990356,-1.8637539148330688,1.3022469878196716,-0.013239890336990356,-0.01863753914833069,0.013022469878196717,0.004336398560553789,-0.0010466892272233963,203 +illusion_0.75L,ppo,204,40.8,1.2106001377105713,-0.341740220785141,0.8645510077476501,-0.5776132941246033,0.8590916991233826,-0.26506125926971436,0.002495518419891596,0.0005312631838023663,0.0015261200023815036,0.003720775945112109,0.0002183175238315016,-0.0050714523531496525,-1.337135910987854,-2.0286926329135895,1.2107638716697693,-0.01337135910987854,-0.020286926329135896,0.012107638716697693,0.004345819354057312,-0.0009142835042439401,204 +illusion_0.75L,ppo,205,41.0,1.272202968597412,-0.34620827436447144,0.8364354968070984,-0.5534665584564209,0.8278648853302002,-0.22012750804424286,0.002549906726926565,0.0005009297747164965,0.0015402594581246376,0.003768482245504856,0.00020234161638654768,-0.0049188584089279175,-1.3341914415359497,-2.142944246530533,1.1549378633499146,-0.013341914415359497,-0.02142944246530533,0.011549378633499146,0.004339585080742836,-0.0007426568772643805,205 +illusion_0.75L,ppo,206,41.2,1.3362513780593872,-0.3275071084499359,0.8018986582756042,-0.47631508111953735,0.8023731112480164,-0.16471602022647858,0.0025705054868012667,0.0004445600206963718,0.0015999965835362673,0.003829516703262925,0.00015423999866470695,-0.004766987171024084,-1.2780485153198242,-2.237472742795944,1.1612319350242615,-0.012780485153198242,-0.022374727427959443,0.011612319350242616,0.004321560729295015,-0.0005390531150624156,206 +illusion_0.75L,ppo,207,41.4,1.3881289958953857,-0.26492005586624146,0.7709518671035767,-0.3353132903575897,0.786082923412323,-0.1013948917388916,0.002556894440203905,0.000389770430047065,0.0016971989534795284,0.003903608303517103,7.864482904551551e-05,-0.0046239267103374004,-1.2386068105697632,-2.271288424730301,1.1912773251533508,-0.012386068105697631,-0.02271288424730301,0.011912773251533509,0.004301773849874735,-0.000311925308778882,207 +illusion_0.75L,ppo,208,41.6,1.4111055135726929,-0.15001754462718964,0.7533518075942993,-0.1431993693113327,0.782524824142456,-0.035664308816194534,0.002539998386055231,0.000352467002812773,0.0018208090914413333,0.0039872704073786736,-1.8005977835855447e-05,-0.004495770204812288,-1.2367690801620483,-2.2052715718746185,1.2451277375221252,-0.012367690801620484,-0.022052715718746185,0.012451277375221254,0.004286319483071566,-7.073696906445548e-05,208 +illusion_0.75L,ppo,209,41.8,1.4013781547546387,-0.004573244601488113,0.7534500360488892,0.0692216083407402,0.7934471964836121,0.025833740830421448,0.002514871070161462,0.00036570761585608125,0.0019548963755369186,0.004070756025612354,-0.0001321607705904171,-0.004385749343782663,-1.286764144897461,-2.0254138112068176,1.3122591376304626,-0.01286764144897461,-0.020254138112068176,0.013122591376304628,0.004273382015526295,0.00017427514831069857,209 +illusion_0.75L,ppo,210,42.0,1.3667688369750977,0.13610690832138062,0.7698014974594116,0.2684616148471832,0.8169966340065002,0.0786622166633606,0.002486828016117215,0.0004054305609315634,0.002084820531308651,0.004148411564528942,-0.0002654676209203899,-0.004295696970075369,-1.367616057395935,-1.7587590366601944,1.400393009185791,-0.01367616057395935,-0.017587590366601943,0.01400393009185791,0.004259394947439432,0.0004124342813156545,210 +illusion_0.75L,ppo,211,42.2,1.3164231777191162,0.24650926887989044,0.7978747487068176,0.4277983605861664,0.8483930230140686,0.12284155935049057,0.002477184869349003,0.0004987199790775776,0.0022038696333765984,0.004212689585983753,-0.0004169069870840758,-0.004221288952976465,-1.4748029708862305,-1.4557244777679443,1.4919024109840393,-0.014748029708862305,-0.014557244777679444,0.014919024109840393,0.004247340373694897,0.000633081654086709,211 +illusion_0.75L,ppo,212,42.4,1.258197546005249,0.31668126583099365,0.832436203956604,0.5290176272392273,0.8829067945480347,0.1607416868209839,0.0024888087064027786,0.0006504289922304451,0.002308716531842947,0.0042585511691868305,-0.0005912070628255606,-0.004158055875450373,-1.558783769607544,-1.175129234790802,1.5997083783149721,-0.01558783769607544,-0.01175129234790802,0.01599708378314972,0.004246612079441547,0.0008261421462520957,212 +illusion_0.75L,ppo,213,42.6,1.1990493535995483,0.3497774600982666,0.8687400221824646,0.5694109201431274,0.9183489084243774,0.1939406394958496,0.0025235223583877087,0.0008020499954000115,0.002407925669103861,0.004275464918464422,-0.0007822507759556174,-0.0041007064282894135,-1.596389651298523,-0.9373446702957153,1.7233907580375671,-0.01596389651298523,-0.009373446702957153,0.01723390758037567,0.004263712093234062,0.0009827353060245514,213 +illusion_0.75L,ppo,214,42.8,1.1434420347213745,0.3563864529132843,0.9021432399749756,0.5697497725486755,0.9543992877006531,0.22281287610530853,0.002614368684589863,0.0009673400199972093,0.0025074374862015247,0.004253016784787178,-0.0009848697809502482,-0.004054119810461998,-1.610651135444641,-0.7400821447372437,1.8390437066555023,-0.01610651135444641,-0.007400821447372437,0.018390437066555024,0.0042939698323607445,0.0010957379126921296,214 +illusion_0.75L,ppo,215,43.0,1.0924615859985352,0.34707000851631165,0.9290976524353027,0.5588135719299316,0.9911864995956421,0.24764814972877502,0.002697157673537731,0.001117501873522997,0.0026097744703292847,0.0041863094083964825,-0.0011826046975329518,-0.004022690467536449,-1.57765531539917,-0.6150747537612915,1.956303644925356,-0.0157765531539917,-0.006150747537612915,0.01956303644925356,0.004323890432715416,0.001160208135843277,215 +illusion_0.75L,ppo,216,43.2,1.0449550151824951,0.32769840955734253,0.9483307003974915,0.5516647100448608,1.0288634300231934,0.26901835203170776,0.002808375284075737,0.0012499138247221708,0.0027135713025927544,0.004077297635376453,-0.0013605637941509485,-0.00401652418076992,-1.5246732234954834,-0.5277577638626099,2.0760253742337227,-0.015246732234954834,-0.0052775776386260985,0.020760253742337226,0.004342077765613794,0.0011736078886315227,216 +illusion_0.75L,ppo,217,43.4,0.9996004700660706,0.29947033524513245,0.9598758220672607,0.5492108464241028,1.0678917169570923,0.2874305248260498,0.0028920238837599754,0.001351076178252697,0.0028085652738809586,0.003940577618777752,-0.0015040679136291146,-0.004040183499455452,-1.448440432548523,-0.5073939561843872,2.193827897310257,-0.01448440432548523,-0.005073939561843872,0.02193827897310257,0.004347268491983414,0.0011358100455254316,217 +illusion_0.75L,ppo,218,43.6,0.9561222791671753,0.2611508071422577,0.9631156921386719,0.5458407402038574,1.1089892387390137,0.3031842112541199,0.0029396191239356995,0.001422668225131929,0.0028874243143945932,0.003793790005147457,-0.0015987188089638948,-0.004092681687325239,-1.3718338012695312,-0.5215859413146973,2.3040718734264374,-0.013718338012695314,-0.005215859413146973,0.023040718734264373,0.004345463588833809,0.0010489318519830704,218 +illusion_0.75L,ppo,219,43.8,0.9157834053039551,0.21171264350414276,0.9562508463859558,0.5315518379211426,1.1529569625854492,0.3159416913986206,0.0029623282607644796,0.0014502863632515073,0.0029494424816221,0.003655766136944294,-0.0016305813333019614,-0.004170779138803482,-1.2914762496948242,-0.5659518241882324,2.40935942530632,-0.012914762496948243,-0.005659518241882325,0.024093594253063202,0.004340487066656351,0.0009170636185444891,219 +illusion_0.75L,ppo,220,44.0,0.8814818859100342,0.15208178758621216,0.9374703764915466,0.4917687177658081,1.2003976106643677,0.3241448998451233,0.002944051520898938,0.0014549815095961094,0.0029860124923288822,0.0035468926653265953,-0.0016085553215816617,-0.004278667736798525,-1.2039921283721924,-0.6421090364456177,2.506969690322876,-0.012039921283721925,-0.006421090364456177,0.02506969690322876,0.004329410847276449,0.0007459750631824136,220 +illusion_0.75L,ppo,221,44.2,0.8571014404296875,0.0861748680472374,0.9072239398956299,0.4103917181491852,1.250408411026001,0.32325878739356995,0.0028884634375572205,0.001421549473889172,0.0029942744877189398,0.0034837303683161736,-0.0015328924637287855,-0.004410938825458288,-1.096196174621582,-0.7404252290725708,2.5970135927200317,-0.010961961746215821,-0.007404252290725708,0.02597013592720032,0.004308085888624191,0.000542854773811996,221 +illusion_0.75L,ppo,222,44.4,0.846070408821106,0.020129848271608353,0.870319664478302,0.27829083800315857,1.2977054119110107,0.3030793368816376,0.0027945598121732473,0.001333999214693904,0.002969631925225258,0.0034737649839371443,-0.0014154785312712193,-0.004565595183521509,-0.9782895445823669,-0.8456549644470216,2.662216305732727,-0.00978289544582367,-0.008456549644470216,0.026622163057327272,0.0042798398062586784,0.000316097226459533,222 +illusion_0.75L,ppo,223,44.6,0.8492639660835266,-0.040103763341903687,0.8348958492279053,0.10256875306367874,1.329576015472412,0.24750107526779175,0.0026782688219100237,0.0012162908678874373,0.0029121809639036655,0.003509317059069872,-0.0012642720248550177,-0.004736043978482485,-0.8811141252517701,-0.9320862293243408,2.6715198159217834,-0.008811141252517701,-0.009320862293243408,0.026715198159217836,0.004256341140717268,7.510853174608201e-05,223 +illusion_0.75L,ppo,224,44.8,0.8644940853118896,-0.09155149757862091,0.809080183506012,-0.09252171218395233,1.330586552619934,0.1457694172859192,0.002548914635553956,0.0010805655037984252,0.0028258177917450666,0.003568330081179738,-0.0010832974221557379,-0.004907323978841305,-0.8121588230133058,-0.9870151281356812,2.616446793079376,-0.008121588230133057,-0.009870151281356812,0.026164467930793762,0.004248499870300293,-0.00016992665769066662,224 +illusion_0.75L,ppo,225,45.0,0.8879104852676392,-0.13475623726844788,0.7981640696525574,-0.27359259128570557,1.295810580253601,0.009851236827671528,0.0024314403999596834,0.0009691413724794984,0.0027152691036462784,0.0036244187504053116,-0.0008800165960565209,-0.005067646969109774,-0.7865382432937622,-0.9981198310852051,2.4967170357704163,-0.007865382432937622,-0.00998119831085205,0.024967170357704162,0.00425688037648797,-0.0004083740059286356,225 +illusion_0.75L,ppo,226,45.2,0.9161461591720581,-0.1717202067375183,0.803832471370697,-0.4098401963710785,1.2357432842254639,-0.1284324675798416,0.0023338606115430593,0.0008590167853981256,0.0025835453998297453,0.0036574439145624638,-0.0006641015643253922,-0.005203009117394686,-0.7892333269119263,-0.9981315135955809,2.3415869176387787,-0.007892333269119263,-0.00998131513595581,0.02341586917638779,0.004272068850696087,-0.0006296037463471293,226 +illusion_0.75L,ppo,227,45.4,0.9472948312759399,-0.20412462949752808,0.8232152462005615,-0.4883137047290802,1.1660706996917725,-0.23985540866851807,0.002270720200613141,0.0007858552853576839,0.002433579880744219,0.0036586052738130093,-0.00045108210179023445,-0.005307881161570549,-0.8457056283950807,-1.0156893730163574,2.1609631180763245,-0.008457056283950807,-0.010156893730163574,0.021609631180763245,0.004284536466002464,-0.0008235537097789347,227 +illusion_0.75L,ppo,228,45.6,0.9807778000831604,-0.23288722336292267,0.8489726185798645,-0.5222893953323364,1.0985021591186523,-0.3118174374103546,0.0022440473549067974,0.0007247928297147155,0.002271196572110057,0.0036427644081413746,-0.0002580817963462323,-0.005377932917326689,-0.9274576306343079,-1.0943671464920044,1.9886558055877686,-0.009274576306343079,-0.010943671464920044,0.019886558055877687,0.004293113015592098,-0.000981337740086019,228 +illusion_0.75L,ppo,229,45.8,1.0166270732879639,-0.2586137056350708,0.8729831576347351,-0.5373251438140869,1.0388580560684204,-0.3468162417411804,0.002248962176963687,0.0006847032345831394,0.002096796641126275,0.0036169784143567085,-9.663990931585431e-05,-0.005409036763012409,-1.0335941314697266,-1.2259082794189453,1.821386843919754,-0.010335941314697266,-0.012259082794189453,0.01821386843919754,0.004303110297769308,-0.001095808343961835,229 +illusion_0.75L,ppo,230,46.0,1.0552884340286255,-0.28163209557533264,0.8904720544815063,-0.5511463284492493,0.9880712032318115,-0.3549037575721741,0.0022890286054462194,0.0006467301864176989,0.0019256699597463012,0.003598487004637718,3.0915434763301164e-05,-0.00540139339864254,-1.1385387182235718,-1.4014517068862915,1.6598868370056152,-0.011385387182235718,-0.014014517068862916,0.01659886837005615,0.004317091777920723,-0.0011619804427027702,230 +illusion_0.75L,ppo,231,46.2,1.0975360870361328,-0.3019830286502838,0.8996404409408569,-0.5693569779396057,0.9440205097198486,-0.34590834379196167,0.0023482588585466146,0.0006429029745049775,0.001768928486853838,0.0035974925849586725,0.00012211286230012774,-0.00535237742587924,-1.2315760850906372,-1.596912622451782,1.503794401884079,-0.012315760850906372,-0.01596912622451782,0.01503794401884079,0.0043295822106301785,-0.0011772552970796824,231 +illusion_0.75L,ppo,232,46.4,1.144648551940918,-0.31917738914489746,0.8994163274765015,-0.5896999835968018,0.9040241837501526,-0.325368195772171,0.0024067750200629234,0.000591730116866529,0.0016452388372272253,0.0036188059020787477,0.0001779642334440723,-0.005266472231596708,-1.2787636518478394,-1.7894603312015533,1.381214201450348,-0.012787636518478394,-0.017894603312015533,0.01381214201450348,0.004332154523581266,-0.0011414313921704888,232 +illusion_0.75L,ppo,233,46.6,1.198155403137207,-0.3317109942436218,0.8883016705513,-0.6026925444602966,0.8664765954017639,-0.2944716215133667,0.0024915924295783043,0.0005744238733313978,0.0015702679520472884,0.0036524622701108456,0.00020127923926338553,-0.005149480886757374,-1.3302065134048462,-1.9390918016433716,1.263685703277588,-0.013302065134048462,-0.019390918016433716,0.012636857032775879,0.004323046654462814,-0.0010565404081717134,233 +illusion_0.75L,ppo,234,46.8,1.2587482929229736,-0.33540961146354675,0.8657539486885071,-0.5891638398170471,0.8314653635025024,-0.252168744802475,0.002514987951144576,0.000561680702958256,0.001547995489090681,0.0036974018439650536,0.00019363056344445795,-0.005009797401726246,-1.315824031829834,-2.083252400159836,1.2005890011787415,-0.01315824031829834,-0.02083252400159836,0.012005890011787415,0.004309957846999168,-0.0009265808621421456,234 +illusion_0.75L,ppo,235,47.0,1.3229070901870728,-0.31957656145095825,0.8357251882553101,-0.5233794450759888,0.8008934855461121,-0.19761782884597778,0.0025647126603871584,0.0004659497644752264,0.001579497940838337,0.003749790834262967,0.0001560193340992555,-0.0048612444661557674,-1.2757598161697388,-2.1667900383472443,1.1890684962272644,-0.012757598161697388,-0.02166790038347244,0.011890684962272644,0.0043023559264838696,-0.0007572299218736589,235 +illusion_0.75L,ppo,236,47.2,1.3781421184539795,-0.26574790477752686,0.8078407049179077,-0.38909852504730225,0.7782912254333496,-0.13217295706272125,0.002571002347394824,0.0004173792840447277,0.0016574293840676546,0.003810756141319871,0.00010007742093876004,-0.00471098255366087,-1.2757208347320557,-2.2165684401988983,1.1719082593917847,-0.012757208347320557,-0.022165684401988985,0.011719082593917848,0.0043017142452299595,-0.0005555875250138342,236 +illusion_0.75L,ppo,237,47.4,1.4069952964782715,-0.16263718903064728,0.7921322584152222,-0.19590330123901367,0.7678463459014893,-0.06069859862327576,0.0025668605230748653,0.0003818329132627696,0.0017686798237264156,0.0038818959146738052,2.4217031750595197e-05,-0.004569632466882467,-1.2701784372329712,-2.1863742768764496,1.2190772891044617,-0.012701784372329713,-0.021863742768764495,0.012190772891044617,0.004300643689930439,-0.0003299686941318214,237 +illusion_0.75L,ppo,238,47.6,1.4024871587753296,-0.026706209406256676,0.793133020401001,0.024400105699896812,0.7728285789489746,0.00906379148364067,0.002549986820667982,0.00038506370037794113,0.001898704213090241,0.00395775493234396,-7.455536251654848e-05,-0.004449514206498861,-1.3138152360916138,-2.047316700220108,1.2892292141914368,-0.013138152360916137,-0.02047316700220108,0.012892292141914369,0.00429190369322896,-8.971420174930245e-05,238 +illusion_0.75L,ppo,239,47.8,1.3715384006500244,0.10807041078805923,0.8094595074653625,0.23520700633525848,0.7934597134590149,0.06966140121221542,0.0025356074329465628,0.000425785401603207,0.0020303595811128616,0.0040321736596524715,-0.00019934056035708636,-0.004351827781647444,-1.3973320722579956,-1.8151704668998718,1.3784028887748718,-0.013973320722579957,-0.01815170466899872,0.013784028887748719,0.004277124535292387,0.00015503856411669403,239 +illusion_0.75L,ppo,240,48.0,1.3241735696792603,0.21525651216506958,0.8363755941390991,0.4070836007595062,0.825605571269989,0.11838582158088684,0.002533885184675455,0.0004980688681825995,0.0021538150031119585,0.004098949953913689,-0.00035012696753256023,-0.0042721908539533615,-1.5007905960083008,-1.546358346939087,1.475529432296753,-0.015007905960083008,-0.01546358346939087,0.01475529432296753,0.004265474621206522,0.00039368137368001044,240 +illusion_0.75L,ppo,241,48.2,1.2687923908233643,0.2845946252346039,0.8684964776039124,0.5198090076446533,0.8631555438041687,0.15757697820663452,0.0025493886787444353,0.0006268153083510697,0.002267253352329135,0.0041544875130057335,-0.0005235545104369521,-0.004204182885587215,-1.5994956493377688,-1.287021279335022,1.5745696723461151,-0.015994956493377687,-0.01287021279335022,0.015745696723461152,0.004263981245458126,0.0006155874580144882,241 +illusion_0.75L,ppo,242,48.4,1.2121111154556274,0.31899210810661316,0.9011645317077637,0.5675281286239624,0.9017592668533325,0.19063186645507812,0.002596477512270212,0.000778095331043005,0.002371766371652484,0.0041912030428647995,-0.0007193984347395599,-0.004145227838307619,-1.650067329406738,-1.064178466796875,1.6907839179039004,-0.016500673294067382,-0.01064178466796875,0.016907839179039003,0.004270609002560377,0.0008106737514026463,242 +illusion_0.75L,ppo,243,48.6,1.1583269834518433,0.328421950340271,0.9307583570480347,0.5685924291610718,0.9400627613067627,0.21899423003196716,0.0026667851489037275,0.0009391232742927969,0.0024693822488188744,0.004199753049761057,-0.0009323899284936488,-0.004095122683793306,-1.6598944664001465,-0.8870843648910522,1.8040986061096191,-0.016598944664001466,-0.008870843648910522,0.018040986061096193,0.00427780719473958,0.0009700104128569365,243 +illusion_0.75L,ppo,244,48.8,1.1084898710250854,0.3226413428783417,0.9547102451324463,0.5539486408233643,0.9781240224838257,0.24312756955623627,0.0027597465086728334,0.001071643433533609,0.0025650302413851023,0.004170502535998821,-0.001148106879554689,-0.004053901880979538,-1.634490966796875,-0.7522648572921753,1.9124796837568285,-0.01634490966796875,-0.007522648572921753,0.019124796837568285,0.004282041918486357,0.00108638487290591,244 +illusion_0.75L,ppo,245,49.0,1.0615671873092651,0.30719637870788574,0.9720169305801392,0.5426828265190125,1.0162056684494019,0.26353296637535095,0.0028675824869424105,0.0012025843607261777,0.002658173441886902,0.0041006444953382015,-0.0013508491683751345,-0.004025550093501806,-1.5986407995223997,-0.6554552316665649,2.0070251896977425,-0.015986407995223998,-0.006554552316665649,0.020070251896977424,0.004287917632609606,0.001154729281552136,245 +illusion_0.75L,ppo,246,49.2,1.016301155090332,0.2832452356815338,0.982697606086731,0.5379072427749634,1.054753303527832,0.28084391355514526,0.002941132988780737,0.0013056130846962333,0.0027480917051434517,0.003997622989118099,-0.0015207786345854402,-0.004015003331005573,-1.5361692905426025,-0.6035987138748169,2.1075081154704094,-0.015361692905426026,-0.006035987138748169,0.021075081154704096,0.004301857203245163,0.0011723487405106425,246 +illusion_0.75L,ppo,247,49.4,0.9725357294082642,0.24969856441020966,0.9863836765289307,0.5351846814155579,1.0945773124694824,0.29546549916267395,0.003005456877872348,0.001395318191498518,0.0028329927008599043,0.0038720027077943087,-0.0016431356780231,-0.0040286993607878685,-1.4720165729522705,-0.5692161321640015,2.2098982632160187,-0.014720165729522705,-0.005692161321640014,0.02209898263216019,0.004322571214288473,0.0011389366118237376,247 +illusion_0.75L,ppo,248,49.6,0.9315767884254456,0.2054692655801773,0.9813965559005737,0.525994598865509,1.1366369724273682,0.30737096071243286,0.0030397986993193626,0.0014522920828312635,0.0029049257282167673,0.0037426413036882877,-0.0017116658855229616,-0.004072059877216816,-1.386026382446289,-0.5793004035949707,2.3220148980617523,-0.013860263824462891,-0.005793004035949707,0.023220148980617524,0.0043395934626460075,0.0010564166586846113,248 +illusion_0.75L,ppo,249,49.8,0.8961738348007202,0.15118281543254852,0.9653072953224182,0.49722757935523987,1.1817927360534668,0.3157450556755066,0.0030383961275219917,0.0014803700614720583,0.00296005723066628,0.0036289545241743326,-0.0017214171821251512,-0.0041474467143416405,-1.2902534008026123,-0.6228108406066895,2.4322874546051025,-0.012902534008026123,-0.006228108406066895,0.024322874546051025,0.004342196509242058,0.0009286822751164436,249 +illusion_0.75L,ppo,250,50.0,0.8700787425041199,0.09012710303068161,0.9370210766792297,0.43243417143821716,1.2301979064941406,0.31786996126174927,0.002997581148520112,0.0014605766627937555,0.002989548956975341,0.0035472435411065817,-0.0016786705236881971,-0.00425723334774375,-1.1750717163085938,-0.696524977684021,2.539556324481964,-0.011750717163085938,-0.00696524977684021,0.025395563244819643,0.004329230170696974,0.0007613134803250432,250 +illusion_0.75L,ppo,251,50.2,0.8566253185272217,0.027677135542035103,0.8993351459503174,0.31857264041900635,1.2791905403137207,0.30701619386672974,0.002912280848249793,0.0014004908734932542,0.002988585503771901,0.0035081517416983843,-0.0015873415395617485,-0.004398245830088854,-1.0576101541519165,-0.7880576848983766,2.616328716278076,-0.010576101541519166,-0.007880576848983765,0.02616328716278076,0.0043093012645840645,0.0005613267421722412,251 +illusion_0.75L,ppo,252,50.4,0.8569746613502502,-0.030604608356952667,0.859618067741394,0.15651823580265045,1.3198078870773315,0.27008387446403503,0.0027996504213660955,0.0013073284644633532,0.0029586786404252052,0.0035140416584908962,-0.0014490614412352443,-0.004563477821648121,-0.9441137909889221,-0.8801724910736084,2.650373935699463,-0.009441137909889222,-0.008801724910736084,0.02650373935699463,0.004291526973247528,0.0003369711630512029,252 +illusion_0.75L,ppo,253,50.6,0.8692828416824341,-0.08154726028442383,0.8268939256668091,-0.03397490829229355,1.3364328145980835,0.19219297170639038,0.0026574761141091585,0.0011851084418594837,0.002896514255553484,0.00355730508454144,-0.0012723017716780305,-0.004741388373076916,-0.8454777002334595,-0.9581140279769899,2.6324374675750732,-0.008454777002334594,-0.009581140279769898,0.026324374675750734,0.004277484491467476,9.754252096172422e-05,253 +illusion_0.75L,ppo,254,50.8,0.8899623155593872,-0.12502531707286835,0.8082187175750732,-0.22010467946529388,1.3168734312057495,0.07283361256122589,0.0025231000036001205,0.0010493829613551497,0.0028046262450516224,0.0036148836370557547,-0.0010657105594873428,-0.004918386694043875,-0.7878599166870116,-0.9915729761123657,2.5530959367752075,-0.007878599166870117,-0.009915729761123657,0.025530959367752074,0.0042631374672055244,-0.00014684362395200878,254 +illusion_0.75L,ppo,255,51.0,0.9157221913337708,-0.1625744253396988,0.8069391846656799,-0.36817726492881775,1.2645596265792847,-0.06416895985603333,0.002400600118562579,0.0009421793511137366,0.0026859857607632875,0.0036600613966584206,-0.0008399923099204898,-0.0050765275955200195,-0.7784587144851685,-0.9964208602905272,2.417473793029785,-0.007784587144851684,-0.009964208602905273,0.02417473793029785,0.004247708711773157,-0.0003855770919471979,255 +illusion_0.75L,ppo,256,51.2,0.9445802569389343,-0.19567734003067017,0.8215305209159851,-0.4594000279903412,1.1951532363891602,-0.18606406450271606,0.002305402187630534,0.0008467027801088989,0.0025431672111153603,0.003679153975099325,-0.0006125984946265817,-0.005207135807722807,-0.8040362000465394,-1.0016725063323975,2.262830525636673,-0.008040362000465394,-0.010016725063323975,0.02262830525636673,0.004238303285092115,-0.0006080058519728482,256 +illusion_0.75L,ppo,257,51.4,0.9757254719734192,-0.22523409128189087,0.8450931310653687,-0.5013909339904785,1.12391197681427,-0.2723981738090515,0.002248950768262148,0.0007766727940179408,0.0023832605220377445,0.0036697101313620806,-0.0003973412385676056,-0.005300296004861593,-0.8802464008331299,-1.0415898561477661,2.094281740486622,-0.008802464008331299,-0.010415898561477661,0.02094281740486622,0.004244087729603052,-0.0008040002430789173,257 +illusion_0.75L,ppo,258,51.6,1.0091919898986816,-0.25186896324157715,0.8689248561859131,-0.5187230110168457,1.0597796440124512,-0.3200932741165161,0.0022408508230000734,0.0007309144712053239,0.0022133425809442997,0.0036446256563067436,-0.0002051044866675511,-0.005357703659683466,-0.9789851903915404,-1.139001727104187,1.9326852560043337,-0.009789851903915405,-0.01139001727104187,0.019326852560043337,0.004266131203621626,-0.0009645655518397689,258 +illusion_0.75L,ppo,259,51.8,1.0453600883483887,-0.27598318457603455,0.8871805667877197,-0.5317060351371765,1.0054537057876587,-0.3371593952178955,0.0022594290785491467,0.0006908149807713926,0.002038566628471017,0.003621811978518963,-4.766487836604938e-05,-0.005378073547035456,-1.0741000175476074,-1.2980259656906128,1.7803133130073547,-0.010741000175476075,-0.012980259656906128,0.017803133130073548,0.00429448951035738,-0.0010824102209880948,259 +illusion_0.75L,ppo,260,52.0,1.0849416255950928,-0.2978256344795227,0.8976165056228638,-0.5484613180160522,0.9595233201980591,-0.33407390117645264,0.002312083961442113,0.0006574419094249606,0.0018707269337028265,0.0036139902658760548,7.101182563928887e-05,-0.0053644306026399136,-1.1627200841903687,-1.4827589392662048,1.6312048137187958,-0.011627200841903686,-0.014827589392662049,0.016312048137187958,0.0043162815272808075,-0.0011523779248818755,260 +illusion_0.75L,ppo,261,52.2,1.129074215888977,-0.3172202408313751,0.8992570638656616,-0.5687930583953857,0.9190900921821594,-0.3182169198989868,0.002364853862673044,0.0006279193330556154,0.001725038280710578,0.0036265680100768805,0.00015096305287443101,-0.005316823720932007,-1.2295951843261719,-1.680204302072525,1.4905365705490112,-0.012295951843261719,-0.01680204302072525,0.014905365705490113,0.004326277878135443,-0.0011716809822246432,261 +illusion_0.75L,ppo,262,52.4,1.1792845726013184,-0.33330094814300537,0.8906658291816711,-0.5864707827568054,0.8818639516830444,-0.29238083958625793,0.0024291062727570534,0.000592343567404896,0.001615390763618052,0.0036555163096636534,0.00019123397942166775,-0.005235567688941956,-1.2730402946472168,-1.8549681305885315,1.3700115084648132,-0.012730402946472168,-0.018549681305885315,0.013700115084648133,0.004328808281570673,-0.0011399217182770371,262 +illusion_0.75L,ppo,263,52.6,1.2369804382324219,-0.3433937728404999,0.8703736662864685,-0.5872604846954346,0.8471474647521973,-0.2562994062900543,0.0024837006349116564,0.0005434177001006901,0.0015563338529318571,0.0036957510747015476,0.0002013496559811756,-0.005124935880303383,-1.2901360988616943,-2.0063193440437317,1.2723739743232727,-0.012901360988616944,-0.02006319344043732,0.012723739743232727,0.0043297018855810165,-0.0010589387966319919,263 +illusion_0.75L,ppo,264,52.8,1.3011939525604248,-0.3399542272090912,0.839773952960968,-0.5481697916984558,0.8160495162010193,-0.20895494520664215,0.0025339326821267605,0.0004957407945767045,0.0015534927370026708,0.0037433654069900513,0.00018740506493486464,-0.0049927677027881145,-1.2811529636383057,-2.1254027783870697,1.2105337381362915,-0.012811529636383058,-0.021254027783870696,0.012105337381362916,0.0043281326070427895,-0.0009325520950369537,264 +illusion_0.75L,ppo,265,53.0,1.36348557472229,-0.30617690086364746,0.8062440752983093,-0.4470105767250061,0.791368842124939,-0.15075258910655975,0.0025487705133855343,0.0004417877353262156,0.0015972043620422482,0.0038029197603464127,0.00014596391702070832,-0.004853781312704086,-1.240352749824524,-2.218938797712326,1.1994820833206177,-0.01240352749824524,-0.022189387977123262,0.011994820833206177,0.004317938350141048,-0.0007662828429602087,265 +illusion_0.75L,ppo,266,53.2,1.406380295753479,-0.22278085350990295,0.7808606624603271,-0.2806369662284851,0.7769647240638733,-0.0849514752626419,0.0025336043909192085,0.0003805719316005707,0.0016817443538457155,0.0038730003871023655,8.180583972716704e-05,-0.004717634525150061,-1.214198112487793,-2.2418632805347443,1.2250535488128662,-0.01214198112487793,-0.022418632805347442,0.012250535488128662,0.004296679049730301,-0.0005671066464856267,266 +illusion_0.75L,ppo,267,53.4,1.4164024591445923,-0.09265202283859253,0.7715885639190674,-0.07161860913038254,0.77640700340271,-0.017819369211792946,0.0025214680936187506,0.0003604115918278694,0.001792294206097722,0.0039468626491725445,-6.073241365811555e-06,-0.004591539967805147,-1.2446014881134033,-2.149117261171341,1.2698854804039001,-0.012446014881134034,-0.02149117261171341,0.012698854804039001,0.004271471872925758,-0.00034325156593695283,267 +illusion_0.75L,ppo,268,53.6,1.3956725597381592,0.053096674382686615,0.7798551917076111,0.1446046680212021,0.7909677624702454,0.043475281447172165,0.002500554546713829,0.00036383428960107267,0.001915920409373939,0.004015080165117979,-0.00011377449845895171,-0.0044789994135499,-1.3171026706695557,-1.9527217745780947,1.334913730621338,-0.013171026706695557,-0.019527217745780947,0.01334913730621338,0.004254178609699011,-0.00010401237523183227,268 +illusion_0.75L,ppo,269,53.8,1.3540464639663696,0.180888831615448,0.8023476600646973,0.3353450894355774,0.8180909156799316,0.09478805214166641,0.002496813889592886,0.0004278913838788867,0.0020429380238056183,0.0040746224112808704,-0.0002385427214903757,-0.004380370490252972,-1.434988021850586,-1.684251695871353,1.4055036306381226,-0.01434988021850586,-0.01684251695871353,0.014055036306381226,0.004250772297382355,0.00014047697186470032,269 +illusion_0.75L,ppo,270,54.0,1.300435185432434,0.27217745780944824,0.8338435292243958,0.47635409235954285,0.8523971438407898,0.1368236392736435,0.002494567772373557,0.0005493900971487164,0.0021650397684425116,0.004127693362534046,-0.0003845062165055424,-0.004295851103961468,-1.537176489830017,-1.4193652272224426,1.5013920664787292,-0.015371764898300172,-0.014193652272224426,0.015013920664787293,0.004256573971360922,0.000379570439690724,270 +illusion_0.75L,ppo,271,54.2,1.2423919439315796,0.3239099383354187,0.8691365122795105,0.5536816120147705,0.8891243934631348,0.17249956727027893,0.0025395166594535112,0.0006689004367217422,0.0022785961627960205,0.0041722459718585014,-0.0005569926579482853,-0.004225272219628096,-1.6035476922988894,-1.1776884198188782,1.6212356984615328,-0.016035476922988894,-0.011776884198188783,0.016212356984615327,0.00426256749778986,0.0006025657639838755,271 +illusion_0.75L,ppo,272,54.4,1.1857601404190063,0.3439353108406067,0.9036908149719238,0.5735389590263367,0.9262534976005554,0.20345011353492737,0.0025999664794653654,0.0008265924407169223,0.00238472456112504,0.004197190050035715,-0.0007530674920417368,-0.0041642398573458195,-1.6516718864440918,-0.9848531484603882,1.7239317297935486,-0.016516718864440918,-0.009848531484603882,0.017239317297935486,0.004265558440238237,0.0007992724422365427,272 +illusion_0.75L,ppo,273,54.6,1.133267879486084,0.34361734986305237,0.9336640238761902,0.5636168122291565,0.9635318517684937,0.2300722748041153,0.002679093973711133,0.0009828656911849976,0.0024856592062860727,0.004190619569271803,-0.0009653964661993086,-0.004111473448574543,-1.6501080989837646,-0.8341734409332277,1.834262698888779,-0.016501080989837647,-0.008341734409332276,0.01834262698888779,0.004270726349204779,0.0009606286184862256,273 +illusion_0.75L,ppo,274,54.8,1.0846599340438843,0.33142611384391785,0.9568238258361816,0.5503840446472168,1.0010823011398315,0.25270983576774597,0.0027842381969094276,0.001123660709708929,0.002584754256531596,0.0041442993097007275,-0.0011776271276175976,-0.004070273134857416,-1.6235032081604004,-0.7210874557495117,1.9369104579091072,-0.016235032081604005,-0.007210874557495118,0.019369104579091072,0.004283971153199673,0.001079274108633399,274 +illusion_0.75L,ppo,275,55.0,1.0384206771850586,0.31066375970840454,0.9728167653083801,0.543533980846405,1.0391457080841064,0.2719842791557312,0.002882525557652116,0.0012382912682369351,0.0026812476571649313,0.004062632564455271,-0.0013689490733668208,-0.004045552108436823,-1.5779807567596436,-0.6534783840179443,2.033479541540146,-0.015779807567596435,-0.006534783840179443,0.02033479541540146,0.004303178749978542,0.0011499872198328376,275 +illusion_0.75L,ppo,276,55.2,0.9934892058372498,0.28096792101860046,0.9816652536392212,0.5414302349090576,1.07822847366333,0.2884076237678528,0.002963934326544404,0.0013419893803074956,0.0027708434499800205,0.003955377731472254,-0.0015230881981551647,-0.004040547180920839,-1.5237243175506592,-0.6165704727172852,2.129449784755707,-0.015237243175506593,-0.006165704727172852,0.02129449784755707,0.004318722058087587,0.00116992206312716,276 +illusion_0.75L,ppo,277,55.4,0.9502241611480713,0.24073252081871033,0.9824362993240356,0.5375272631645203,1.1191720962524414,0.3021808862686157,0.0030163757037371397,0.0014144007582217455,0.002847211668267846,0.003836545627564192,-0.0016308517660945654,-0.004059567581862211,-1.4482028484344482,-0.6131099462509155,2.237407475709915,-0.014482028484344482,-0.006131099462509155,0.02237407475709915,0.004322815220803022,0.001138634397648275,277 +illusion_0.75L,ppo,278,55.6,0.9105609059333801,0.1893019676208496,0.9729911088943481,0.5207387804985046,1.162862777709961,0.3128725588321686,0.0030270928982645273,0.001451843068934977,0.0029066698625683784,0.003721765009686351,-0.0016868142411112785,-0.0041060177609324455,-1.3648693561553955,-0.6365090608596802,2.345282733440399,-0.013648693561553956,-0.006365090608596802,0.023452827334403993,0.004317114595323801,0.0010579300578683615,278 +illusion_0.75L,ppo,279,55.8,0.8779188394546509,0.12848921120166779,0.9514037370681763,0.4752563238143921,1.2098582983016968,0.31872090697288513,0.0030279348138719797,0.001464356668293476,0.0029457840137183666,0.003624070668593049,-0.0016898683970794082,-0.004179358948022127,-1.2729594707489014,-0.6799640655517578,2.447966992855072,-0.012729594707489014,-0.006799640655517579,0.02447966992855072,0.004309931304305792,0.000931612157728523,279 +illusion_0.75L,ppo,280,56.0,0.8563858866691589,0.06298697739839554,0.9185775518417358,0.3848192095756531,1.2590935230255127,0.3150072991847992,0.002960406942293048,0.0014352459693327546,0.0029617834370583296,0.0035619724076241255,-0.0016392837278544903,-0.00428288197144866,-1.1545709371566772,-0.761101484298706,2.539463222026825,-0.011545709371566773,-0.0076110148429870605,0.02539463222026825,0.004306346643716097,0.0007652023923583329,280 +illusion_0.75L,ppo,281,56.2,0.8488943576812744,-0.0008473152411170304,0.8800358772277832,0.24257515370845795,1.3046878576278687,0.2912732660770416,0.002892586635425687,0.00136407685931772,0.002953377552330494,0.0035391494166105986,-0.001539977383799851,-0.004416652489453554,-1.0341764688491821,-0.8336002826690675,2.6049631237983704,-0.01034176468849182,-0.008336002826690675,0.026049631237983706,0.00430266372859478,0.0005656927824020386,281 +illusion_0.75L,ppo,282,56.4,0.8554317355155945,-0.05782867595553398,0.8444589376449585,0.05986057221889496,1.3332713842391968,0.2318599820137024,0.0027637735474854708,0.00126598309725523,0.0029174969531595707,0.003557302290573716,-0.0013951186556369066,-0.004576519597321749,-0.9155853390693665,-0.9214452505111695,2.6204323172569275,-0.009155853390693665,-0.009214452505111695,0.026204323172569276,0.00429161824285984,0.0003413430822547525,282 +illusion_0.75L,ppo,283,56.6,0.8730108141899109,-0.10609908401966095,0.8198718428611755,-0.13504454493522644,1.329452395439148,0.12787950038909912,0.002620484447106719,0.0011394345201551914,0.002852172590792179,0.0036003782879561186,-0.0012146516237407923,-0.004750750493258238,-0.8259490132331848,-0.9650510549545288,2.5846696496009827,-0.008259490132331848,-0.009650510549545289,0.025846696496009826,0.004272329621016979,0.00010149206354981288,283 +illusion_0.75L,ppo,284,56.8,0.8976277112960815,-0.14682503044605255,0.8111435770988464,-0.30682095885276794,1.2896218299865723,-0.006345793139189482,0.002495167776942253,0.0010210559703409672,0.0027577965520322323,0.003641668241471052,-0.0010027181124314666,-0.0049166008830070496,-0.7879955172538756,-0.9692450761795044,2.4824180006980896,-0.007879955172538757,-0.009692450761795044,0.024824180006980896,0.004253413062542677,-0.00014367327094078064,284 +illusion_0.75L,ppo,285,57.0,0.9262360334396362,-0.1819840371608734,0.8190872073173523,-0.4270966649055481,1.2259258031845093,-0.13848797976970673,0.0023801634088158607,0.0009176351013593376,0.0026397565379738808,0.003663507755845785,-0.0007835799478925765,-0.005074060522019863,-0.7899251580238342,-0.9657101631164551,2.3414632976055145,-0.007899251580238343,-0.00965710163116455,0.023414632976055144,0.004245383199304342,-0.0003834486415144056,285 +illusion_0.75L,ppo,286,57.2,0.957304835319519,-0.21299879252910614,0.8394203186035156,-0.490266889333725,1.1549267768859863,-0.2412913292646408,0.00229832180775702,0.0008417367353104055,0.002501026028767228,0.003658684203401208,-0.0005566697218455374,-0.0051941354759037495,-0.843646764755249,-0.9827214479446412,2.179026246070862,-0.00843646764755249,-0.009827214479446412,0.02179026246070862,0.004250668920576572,-0.0006070726667530835,286 +illusion_0.75L,ppo,287,57.4,0.9903972744941711,-0.2407228648662567,0.8639065623283386,-0.5156791806221008,1.0880359411239624,-0.3049934506416321,0.0022567210253328085,0.0007887220126576722,0.0023442856036126614,0.0036346011329442263,-0.00034665674320422113,-0.005281961057335138,-0.9211424589157104,-1.0524473190307617,2.0303243324160576,-0.009211424589157104,-0.010524473190307618,0.020303243324160575,0.004262279253453016,-0.0008042993140406907,287 +illusion_0.75L,ppo,288,57.6,1.0257084369659424,-0.2656777799129486,0.8851295709609985,-0.5283797979354858,1.0301556587219238,-0.33418723940849304,0.0022544863168150187,0.0007391967810690403,0.0021749127190560102,0.0036079215351492167,-0.0001674438244663179,-0.005335223861038685,-1.0088802576065063,-1.1848522424697876,1.8893155157566068,-0.010088802576065063,-0.011848522424697876,0.01889315515756607,0.0042722816579043865,-0.0009660187060944736,288 +illusion_0.75L,ppo,289,57.8,1.0637695789337158,-0.2882164418697357,0.899427592754364,-0.5425467491149902,0.981234610080719,-0.3392745554447174,0.002282023197039962,0.0007002992206253111,0.001999017084017396,0.0035920473746955395,-2.790107646433171e-05,-0.005353101994842291,-1.0995174646377563,-1.3583295941352844,1.7451243698596957,-0.010995174646377564,-0.013583295941352845,0.017451243698596956,0.004280176013708115,-0.0010848336387425661,289 +illusion_0.75L,ppo,290,58.0,1.1054794788360596,-0.30835700035095215,0.9055675268173218,-0.5615569949150085,0.9386789798736572,-0.3293851912021637,0.0023307413794100285,0.0006637448095716536,0.0018326245481148362,0.0035940089728683233,7.134876796044409e-05,-0.005333621986210346,-1.177694320678711,-1.5484789311885834,1.6008403301239014,-0.01177694320678711,-0.015484789311885834,0.016008403301239014,0.004291605204343796,-0.0011554996017366648,290 +illusion_0.75L,ppo,291,58.2,1.1522578001022339,-0.3256775140762329,0.9025422930717468,-0.5823462009429932,0.8998392224311829,-0.3091265559196472,0.002388583030551672,0.0006267710123211145,0.0016964481910690665,0.0036122812889516354,0.00013635499635711312,-0.005277109332382679,-1.2391018867492676,-1.7300911843776703,1.4628305435180664,-0.012391018867492677,-0.017300911843776703,0.014628305435180664,0.004309208132326603,-0.0011751636629924178,291 +illusion_0.75L,ppo,292,58.4,1.2057899236679077,-0.33864811062812805,0.888745903968811,-0.595182478427887,0.8633530139923096,-0.27920618653297424,0.002441542688757181,0.0005800824146717787,0.0016041186172515154,0.0036442684940993786,0.0001697878906270489,-0.005188577808439732,-1.274183750152588,-1.8899820148944855,1.347220003604889,-0.012741837501525879,-0.018899820148944854,0.01347220003604889,0.004326635040342808,-0.001143390778452158,292 +illusion_0.75L,ppo,293,58.6,1.2668839693069458,-0.34298065304756165,0.8635472059249878,-0.5810065865516663,0.8295354247093201,-0.23840802907943726,0.0025028488598763943,0.0005310819251462817,0.0015650212299078703,0.003685226198285818,0.00017727325030136853,-0.005074049346148968,-1.2826002836227417,-2.021296352148056,1.2625689506530762,-0.012826002836227417,-0.02021296352148056,0.012625689506530762,0.004333213437348604,-0.0010620126267895103,293 +illusion_0.75L,ppo,294,58.8,1.3319408893585205,-0.32732388377189636,0.8310186266899109,-0.5145372152328491,0.8004688024520874,-0.18596294522285461,0.0025353473611176014,0.0004815158899873495,0.0015768256271257997,0.0037374524399638176,0.00015933204849716276,-0.0049455189146101475,-1.2540326118469238,-2.13871231675148,1.2223461866378784,-0.012540326118469239,-0.0213871231675148,0.012223461866378784,0.004324445500969887,-0.0009348725434392691,294 +illusion_0.75L,ppo,295,59.0,1.3877286911010742,-0.27179354429244995,0.8009845018386841,-0.3801119923591614,0.7795920372009277,-0.12331464141607285,0.0025404023472219706,0.0004190188192296773,0.0016306821489706635,0.0038015362806618214,0.00011288053065072745,-0.004814488813281059,-1.2155404090881348,-2.2102576792240143,1.227782428264618,-0.012155404090881347,-0.022102576792240144,0.012277824282646179,0.004306653048843145,-0.0007675446104258299,295 +illusion_0.75L,ppo,296,59.2,1.41611647605896,-0.16434167325496674,0.7837401628494263,-0.18765869736671448,0.7708876132965088,-0.05521750450134277,0.002529512858018279,0.0003791064373217523,0.0017189208883792162,0.0038716765120625496,4.206837547826581e-05,-0.004688202869147062,-1.2198803424835205,-2.1932707130908966,1.2540282011032104,-0.012198803424835205,-0.021932707130908967,0.012540282011032106,0.004290517885237932,-0.000567082257475704,296 +illusion_0.75L,ppo,297,59.4,1.410510540008545,-0.02286488562822342,0.7839535474777222,0.031218810006976128,0.7772644758224487,0.011021469719707966,0.002508961595594883,0.0003654320607893169,0.001832772744819522,0.003939850255846977,-4.645551962312311e-05,-0.004569739568978548,-1.275782823562622,-2.0611120760440826,1.3011894822120667,-0.01275782823562622,-0.02061112076044083,0.013011894822120666,0.004280740395188332,-0.00034181104274466634,297 +illusion_0.75L,ppo,298,59.6,1.3784654140472412,0.1166350468993187,0.8002188205718994,0.24045774340629578,0.798480212688446,0.06873837113380432,0.002504464704543352,0.0004000559856649488,0.001955532468855381,0.0040004802867770195,-0.00015540575259365141,-0.004464068915694952,-1.38032066822052,-1.8297203183174133,1.3648537993431091,-0.0138032066822052,-0.018297203183174134,0.013648537993431091,0.004273268859833479,-0.00010113600001204759,298 +illusion_0.75L,ppo,299,59.8,1.330101728439331,0.22683994472026825,0.8278566002845764,0.41089335083961487,0.8303155303001404,0.11571188271045685,0.002507326891645789,0.00048690728726796806,0.002077349927276373,0.004055443685501814,-0.0002854545309673995,-0.00437166029587388,-1.4923076629638672,-1.5747709870338438,1.447487473487854,-0.014923076629638671,-0.01574770987033844,0.01447487473487854,0.004262732807546854,0.00014469395682681352,299 +illusion_0.75L,ppo,300,60.0,1.273737907409668,0.297283411026001,0.8614041209220886,0.5222635865211487,0.8669382333755493,0.15424133837223053,0.0025243600830435753,0.0006000089924782515,0.0021912562660872936,0.004105971660465002,-0.0004429295950103551,-0.004292072728276253,-1.582520842552185,-1.3333628177642822,1.5515776872634888,-0.01582520842552185,-0.013333628177642822,0.015515776872634888,0.0042510125786066055,0.00038492129533551633,300 +illusion_0.75L,ppo,301,60.2,1.21622896194458,0.331381231546402,0.8959978222846985,0.5687668323516846,0.9044858813285828,0.18716730177402496,0.0025743318255990744,0.0007616637740284204,0.002296545309945941,0.004143991507589817,-0.0006289308657869697,-0.004220711067318916,-1.6495178937911987,-1.1207308769226074,1.656024843454361,-0.016495178937911987,-0.011207308769226074,0.01656024843454361,0.004246690776199102,0.0006087439251132309,301 +illusion_0.75L,ppo,302,60.4,1.1618952751159668,0.33986836671829224,0.9276277422904968,0.5689193606376648,0.9418830871582031,0.21560268104076385,0.0026457032654434443,0.0009105801582336426,0.002398278098553419,0.004159702453762293,-0.0008322940557263792,-0.004152349662035704,-1.6618511676788328,-0.9569023847579957,1.7677042782306671,-0.01661851167678833,-0.009569023847579957,0.01767704278230667,0.004255807958543301,0.000805890653282404,302 +illusion_0.75L,ppo,303,60.6,1.1118181943893433,0.33325091004371643,0.9534903168678284,0.5537682175636292,0.9792807698249817,0.23980242013931274,0.0027536218985915184,0.001024766475893557,0.0025004541967064142,0.004142677877098322,-0.0010499343043193221,-0.0041006822139024734,-1.6548807621002195,-0.8229066133499146,1.8658288419246674,-0.016548807621002196,-0.008229066133499146,0.018658288419246674,0.004274525213986635,0.0009672442683950067,303 +illusion_0.75L,ppo,304,60.8,1.064854383468628,0.3172682225704193,0.9725754261016846,0.5423528552055359,1.0169318914413452,0.2602733075618744,0.00285098934546113,0.001168380375020206,0.002602634020149708,0.004090715199708939,-0.0012516527203842998,-0.004056141711771488,-1.6424863338470457,-0.7331650257110596,1.9406924471259117,-0.016424863338470458,-0.007331650257110596,0.019406924471259118,0.004292297642678022,0.0010854192078113556,304 +illusion_0.75L,ppo,305,61.0,1.019564151763916,0.2930465042591095,0.9850281476974487,0.5378319025039673,1.0552301406860352,0.27759888768196106,0.002941274316981435,0.0012748062144964933,0.0026985006406903267,0.004010274540632963,-0.0014304604846984148,-0.0040306514129042625,-1.5799484252929685,-0.6750719547271729,2.0497668460011482,-0.015799484252929687,-0.0067507195472717284,0.020497668460011484,0.004302178509533405,0.0011552009964361787,305 +illusion_0.75L,ppo,306,61.2,0.9755207896232605,0.2592456042766571,0.9905495643615723,0.5360248684883118,1.0948476791381836,0.29221460223197937,0.0030156285502016544,0.0013694786466658115,0.0027838670648634434,0.003909104969352484,-0.001573538058437407,-0.004028411116451025,-1.518470287322998,-0.643613338470459,2.151291161775589,-0.015184702873229981,-0.00643613338470459,0.02151291161775589,0.004306729417294264,0.0011737841414287686,306 +illusion_0.75L,ppo,307,61.4,0.9338030219078064,0.21450641751289368,0.9875097870826721,0.5286605954170227,1.1366186141967773,0.3041016459465027,0.003057387424632907,0.0014318019384518266,0.0028540727216750383,0.0038010231219232082,-0.0016709374031051993,-0.0040502664633095264,-1.4399988651275635,-0.6452786922454834,2.258583724498749,-0.014399988651275635,-0.006452786922454834,0.02258583724498749,0.004313030280172825,0.0011407959973439574,307 +illusion_0.75L,ppo,308,61.6,0.8970847129821777,0.15918560326099396,0.9734328389167786,0.5025515556335449,1.1813410520553589,0.3124791979789734,0.0030631190165877342,0.001468412228859961,0.0029085048008710146,0.0036993378307670355,-0.00171395274810493,-0.00409835297614336,-1.355407953262329,-0.6687332391738892,2.3623478412628174,-0.013554079532623291,-0.006687332391738892,0.023623478412628175,0.004322762601077557,0.0010581414680927992,308 +illusion_0.75L,ppo,309,61.8,0.8692107200622559,0.09643984586000443,0.9469670057296753,0.44070395827293396,1.2291678190231323,0.3148224651813507,0.003037975635379553,0.0014621263835579157,0.0029434552416205406,0.003617890877649188,-0.0017044000560417771,-0.004178080707788467,-1.2498871088027954,-0.717132568359375,2.4659958481788635,-0.012498871088027955,-0.00717132568359375,0.024659958481788636,0.00432894192636013,0.0009297445067204535,309 +illusion_0.75L,ppo,310,62.0,0.8539248704910278,0.031903378665447235,0.9106033444404602,0.32919225096702576,1.2777223587036133,0.3048365116119385,0.0029725122731179,0.0014224458718672395,0.0029536604415625334,0.003568964544683695,-0.0016440172912552953,-0.00428885268047452,-1.1318693161010742,-0.7894891500473021,2.547992169857025,-0.011318693161010742,-0.007894891500473022,0.025479921698570253,0.004323208704590797,0.0007612616172991693,310 +illusion_0.75L,ppo,311,62.2,0.8528711199760437,-0.028378713876008987,0.8714776635169983,0.16806064546108246,1.3185937404632568,0.270162969827652,0.00286680250428617,0.0013441890478134155,0.0029367387760430574,0.003560106735676527,-0.0015361851546913385,-0.004429263062775135,-1.0046327114105225,-0.870168924331665,2.598521053791046,-0.010046327114105224,-0.00870168924331665,0.02598521053791046,0.0043054320849478245,0.0005598256830126047,311 +illusion_0.75L,ppo,312,62.4,0.8644785284996033,-0.08068124949932098,0.8385900259017944,-0.023207712918519974,1.3364776372909546,0.1959567666053772,0.002736048772931099,0.0012418250553309917,0.00289078033529222,0.0035833411384373903,-0.0013856623554602265,-0.004589652176946402,-0.8942569494247438,-0.9334976673126222,2.5975365042686462,-0.008942569494247437,-0.009334976673126221,0.025975365042686462,0.0042846668511629105,0.0003338336537126452,312 +illusion_0.75L,ppo,313,62.6,0.88507479429245,-0.12478706985712051,0.8191441893577576,-0.21139991283416748,1.3185709714889526,0.08036456257104874,0.0025972602888941765,0.0011098067043349147,0.0028180403169244528,0.003620503004640341,-0.001198116922751069,-0.004758614115417004,-0.8171977400779724,-0.9627491235733032,2.538055181503296,-0.008171977400779724,-0.009627491235733032,0.02538055181503296,0.004270360339432955,9.274937474401668e-05,313 +illusion_0.75L,ppo,314,62.8,0.9110546112060547,-0.1624271422624588,0.8166764974594116,-0.3619649112224579,1.267339825630188,-0.0543971061706543,0.0024698202032595873,0.0010031131096184254,0.0027227101381868124,0.0036487975157797337,-0.000979593489319086,-0.004917689133435488,-0.7994477152824402,-0.95546817779541,2.416108399629593,-0.007994477152824402,-0.009554681777954101,0.02416108399629593,0.004263774491846561,-0.00015313613403122872,314 +illusion_0.75L,ppo,315,63.0,0.9401954412460327,-0.19536276161670685,0.8299917578697205,-0.4550569951534271,1.1983914375305176,-0.1757499873638153,0.0023620862048119307,0.0009167721727862954,0.002606565598398447,0.0036547305062413216,-0.0007461138302460313,-0.0050581227988004684,-0.8117124438285828,-0.9504926204681396,2.279624789953232,-0.008117124438285828,-0.009504926204681397,0.02279624789953232,0.004259183071553707,-0.00039304280653595924,315 +illusion_0.75L,ppo,316,63.2,0.9715750217437744,-0.22465310990810394,0.8526053428649902,-0.4976063072681427,1.127485990524292,-0.2626258134841919,0.002293837256729603,0.0008404967957176268,0.0024706851691007614,0.0036397429648786783,-0.0005173062672838569,-0.005174784455448389,-0.8615664243698121,-0.9828076362609863,2.1427924036979675,-0.008615664243698121,-0.009828076362609864,0.021427924036979677,0.004253040533512831,-0.0006161675555631518,316 +illusion_0.75L,ppo,317,63.4,1.0050688982009888,-0.2509825825691223,0.8759593367576599,-0.5143864154815674,1.063726782798767,-0.31151115894317627,0.0022625960409641266,0.000790827558375895,0.0023142897989600897,0.003613421693444252,-0.0003125069197267294,-0.00526127265766263,-0.9431688189506531,-1.0766306519508362,2.004881262779236,-0.00943168818950653,-0.010766306519508361,0.02004881262779236,0.004250074736773968,-0.0008122602594085038,317 +illusion_0.75L,ppo,318,63.6,1.0409643650054932,-0.2748434841632843,0.8941803574562073,-0.5264118313789368,1.0097732543945312,-0.3301379382610321,0.0022653755731880665,0.0007446419913321733,0.002143383026123047,0.0035910794977098703,-0.00014272218686528504,-0.0053169564343988895,-1.0275160074234009,-1.226680874824524,1.8704752326011655,-0.01027516007423401,-0.012266808748245239,0.018704752326011657,0.004258817993104458,-0.0009722463437356055,318 +illusion_0.75L,ppo,319,63.8,1.0798659324645996,-0.29648634791374207,0.9049773216247559,-0.5423816442489624,0.9641191363334656,-0.3289198577404022,0.002298903651535511,0.0007040470372885466,0.001970952842384577,0.00358278164640069,-1.0424830179545097e-05,-0.005335405934602022,-1.114354133605957,-1.4087865352630615,1.7255837619304655,-0.01114354133605957,-0.014087865352630615,0.017255837619304656,0.004281363915652037,-0.0010888022370636463,319 +illusion_0.75L,ppo,320,64.0,1.1228216886520386,-0.31585055589675903,0.9074398875236511,-0.5626723766326904,0.9237949252128601,-0.3152419328689575,0.0023466453421860933,0.0006560326437465847,0.0018109673401340842,0.003594210371375084,8.244616765296087e-05,-0.005316153634339571,-1.186814308166504,-1.5996856689453127,1.581906318664551,-0.011868143081665039,-0.015996856689453127,0.01581906318664551,0.004309054929763079,-0.001156791695393622,320 +illusion_0.75L,ppo,321,64.2,1.1713413000106812,-0.33225682377815247,0.9002261161804199,-0.5821592807769775,0.8864411115646362,-0.29205265641212463,0.0024024290032684803,0.0006284356932155788,0.0016828851075842977,0.003621473675593734,0.00014103691501077265,-0.005258570890873671,-1.2462209463119507,-1.7738121598958967,1.4445418119430542,-0.012462209463119506,-0.01773812159895897,0.014445418119430542,0.004329311661422253,-0.0011734996223822236,321 +illusion_0.75L,ppo,322,64.4,1.227035403251648,-0.3436664342880249,0.8816127777099609,-0.5884502530097961,0.851279616355896,-0.259089857339859,0.002461278811097145,0.0005736227612942457,0.001598161063157022,0.003660384099930525,0.00016564039106015116,-0.005170258693397045,-1.2605922222137451,-1.9303051531314852,1.3451236486434937,-0.012605922222137451,-0.01930305153131485,0.013451236486434938,0.004336345009505749,-0.0011386508122086525,322 +illusion_0.75L,ppo,323,64.6,1.2899366617202759,-0.34408512711524963,0.8519794940948486,-0.5599737763404846,0.8192887306213379,-0.21516843140125275,0.0024987924844026566,0.0005205830093473196,0.0015634961891919374,0.0037074678111821413,0.0001614792417967692,-0.005056396592408419,-1.2604022026062012,-2.0612185895442963,1.2655312418937683,-0.012604022026062011,-0.020612185895442964,0.012655312418937683,0.004334232769906521,-0.0010542497038841248,323 +illusion_0.75L,ppo,324,64.8,1.3538711071014404,-0.318892240524292,0.817421555519104,-0.4728320240974426,0.7931423187255859,-0.16018672287464142,0.00252895406447351,0.00045563330058939755,0.001579938572831452,0.0037613098975270987,0.00013410477549768984,-0.004926650319248438,-1.2330052852630615,-2.1588626205921173,1.2314897179603577,-0.012330052852630615,-0.021588626205921172,0.012314897179603577,0.004329643212258816,-0.0009243153617717326,324 +illusion_0.75L,ppo,325,65.0,1.402613878250122,-0.24707633256912231,0.7888851761817932,-0.3186979293823242,0.7766519784927368,-0.0967341884970665,0.0025248269084841013,0.0004099856305401772,0.0016411147080361843,0.003824362065643072,8.558216359233484e-05,-0.004793554078787565,-1.210057020187378,-2.210716813802719,1.2331767678260803,-0.01210057020187378,-0.02210716813802719,0.012331767678260804,0.00432319100946188,-0.0007545904372818768,325 +illusion_0.75L,ppo,326,65.2,1.4197813272476196,-0.12408304959535599,0.7755535840988159,-0.11552964150905609,0.7735522985458374,-0.030458271503448486,0.002502757590264082,0.0003594653680920601,0.0017365420935675502,0.0038924955297261477,1.5842630091356114e-05,-0.004667946603149176,-1.2166697978973389,-2.1614652574062347,1.2745023369789124,-0.012166697978973389,-0.021614652574062348,0.012745023369789124,0.004309643525630236,-0.0005522798164747655,326 +illusion_0.75L,ppo,327,65.4,1.4042326211929321,0.023155486211180687,0.780235230922699,0.10234707593917847,0.7856958508491516,0.03145693242549896,0.002510729245841503,0.0003670592559501529,0.0018535080598667264,0.0039558084681630135,-7.256629760377109e-05,-0.004554263781756163,-1.2976410388946533,-1.9865918159484863,1.3212296962738037,-0.012976410388946534,-0.019865918159484863,0.013212296962738037,0.004286581184715033,-0.0003258340584579855,327 +illusion_0.75L,ppo,328,65.6,1.3656865358352661,0.15827125310897827,0.8003539443016052,0.30080336332321167,0.8112406730651855,0.08403447270393372,0.002492479747161269,0.00041119620436802506,0.001976354280486703,0.004013403784483671,-0.00018175206787418574,-0.00445420341566205,-1.394361972808838,-1.759532392024994,1.3929884433746338,-0.013943619728088379,-0.01759532392024994,0.013929884433746337,0.004260983318090439,-8.474913192912936e-05,328 +illusion_0.75L,ppo,329,65.8,1.3136718273162842,0.25848084688186646,0.8307880163192749,0.453459769487381,0.844989001750946,0.1270938366651535,0.0024976918939501047,0.0005127523327246308,0.002094978466629982,0.0040648928843438625,-0.00031726204906590283,-0.004367587622255087,-1.5096845626831055,-1.4958699345588684,1.4788906574249268,-0.015096845626831055,-0.014958699345588685,0.014788906574249267,0.004245322663336992,0.00016067505930550396,329 +illusion_0.75L,ppo,330,66.0,1.2560210227966309,0.3177814781665802,0.866121768951416,0.5433184504508972,0.8816989660263062,0.16340896487236023,0.002513884101063013,0.0006338853854686022,0.0022071381099522114,0.004108636174350977,-0.0004784729389939457,-0.004291083663702011,-1.595433712005615,-1.2634093761444092,1.5805947482585905,-0.01595433712005615,-0.012634093761444093,0.015805947482585906,0.004246708005666733,0.0003996735031250864,330 +illusion_0.75L,ppo,331,66.2,1.1989860534667969,0.3427138030529022,0.9015097618103027,0.5716960430145264,0.9187488555908203,0.19494859874248505,0.0025972947478294373,0.0007766048656776547,0.002313408302143216,0.004137454554438591,-0.000665278930682689,-0.004221517592668533,-1.6592055559158325,-1.061187982559204,1.6794585287570953,-0.016592055559158325,-0.010611879825592042,0.016794585287570954,0.004260779824107885,0.0006214812165126204,331 +illusion_0.75L,ppo,332,66.4,1.1459074020385742,0.3450962007045746,0.9328801035881042,0.5638140439987183,0.955730676651001,0.22213473916053772,0.002668531611561775,0.0009324142592959106,0.002415651688352227,0.004144721664488316,-0.0008691144757904112,-0.004156936891376972,-1.6761881113052368,-0.9254995584487915,1.7724156975746155,-0.01676188111305237,-0.009254995584487915,0.017724156975746155,0.00427695456892252,0.0008159072604030371,332 +illusion_0.75L,ppo,333,66.6,1.096899390220642,0.3345949053764343,0.9576473832130432,0.5489113330841064,0.9927926063537598,0.24524477124214172,0.0027555611450225115,0.0010689232731238008,0.0025158729404211044,0.004121121019124985,-0.0010794703848659992,-0.004099594429135323,-1.6600942611694334,-0.8077352046966553,1.8723379373550415,-0.016600942611694335,-0.008077352046966553,0.018723379373550415,0.004289029631763697,0.000973953865468502,333 +illusion_0.75L,ppo,334,66.8,1.0504753589630127,0.3156059980392456,0.9753047823905945,0.5401633977890015,1.0301820039749146,0.2648161053657532,0.0028699866961687803,0.0011909876484423876,0.0026122780982404947,0.0040612779557704926,-0.0012823848519474268,-0.004056479316204786,-1.6279761791229248,-0.719738245010376,1.9671940207481384,-0.01627976179122925,-0.00719738245010376,0.019671940207481385,0.004299434833228588,0.0010883876821026206,334 +illusion_0.75L,ppo,335,67.0,1.005352258682251,0.2881995737552643,0.9861122965812683,0.5375259518623352,1.0683773756027222,0.281429260969162,0.0029615270905196667,0.001326176105067134,0.002703513018786907,0.0039734430611133575,-0.0014566320460289717,-0.004030462354421616,-1.577118635177612,-0.677717924118042,2.0588855519890785,-0.01577118635177612,-0.00677717924118042,0.020588855519890786,0.0043129948899149895,0.0011541711864992976,335 +illusion_0.75L,ppo,336,67.2,0.9615622758865356,0.25074946880340576,0.9895598888397217,0.5355263948440552,1.1081817150115967,0.29535049200057983,0.003023593919351697,0.0013798746513202786,0.0027844514697790146,0.0038720625452697277,-0.0015917071141302586,-0.004028430674225092,-1.4926773309707642,-0.6630158424377441,2.1739368438720703,-0.014926773309707642,-0.006630158424377442,0.021739368438720704,0.0043281856924295425,0.0011686912039294839,336 +illusion_0.75L,ppo,337,67.4,0.9206730127334595,0.20213072001934052,0.9837498664855957,0.5244662761688232,1.150485634803772,0.30640268325805664,0.003078767331317067,0.001467192079871893,0.0028537276666611433,0.003765250789001584,-0.0016756253316998482,-0.004050069954246283,-1.4386662244796753,-0.6582063436508179,2.26274436712265,-0.014386662244796754,-0.0065820634365081785,0.022627443671226502,0.004336609039455652,0.001131771714426577,337 +illusion_0.75L,ppo,338,67.6,0.885837733745575,0.14344295859336853,0.9663811326026917,0.4895801842212677,1.1960210800170898,0.31337955594062805,0.003070313949137926,0.001459262683056295,0.002905348315834999,0.003674339037388563,-0.0017068471061065793,-0.004103654529899359,-1.3190287351608276,-0.7069782018661499,2.38712877035141,-0.013190287351608277,-0.0070697820186615,0.0238712877035141,0.004331659525632858,0.0010455084266141057,338 +illusion_0.75L,ppo,339,67.8,0.8611263036727905,0.07868916541337967,0.9370487928390503,0.4137243926525116,1.2444571256637573,0.3128970265388489,0.0030268325936049223,0.0014605175238102674,0.0029346421360969543,0.0036069059278815985,-0.001688238582573831,-0.004189135041087866,-1.2315775156021118,-0.7499203681945801,2.4736592769622803,-0.012315775156021119,-0.007499203681945801,0.024736592769622805,0.004316441714763641,0.0009139995672740042,339 +illusion_0.75L,ppo,340,68.0,0.8499403595924377,0.014023996889591217,0.8996689319610596,0.2861083745956421,1.2919001579284668,0.2969774901866913,0.002955659991130233,0.0013976942282170057,0.00293863657861948,0.003573231166228652,-0.0016204887069761753,-0.004306698217988014,-1.0993117094039917,-0.8209898471832274,2.5590858459472656,-0.010993117094039917,-0.008209898471832275,0.025590858459472655,0.004301527515053749,0.0007430499535985291,340 +illusion_0.75L,ppo,341,68.2,0.8530591726303101,-0.04476368427276611,0.8622317314147949,0.11267846077680588,1.3275092840194702,0.25163158774375916,0.0028502624481916428,0.0013158374931663275,0.0029173155780881643,0.0035744833294302225,-0.0015039948048070073,-0.004451380576938391,-0.9859098196029663,-0.8940025568008422,2.5866310000419617,-0.009859098196029663,-0.008940025568008422,0.025866310000419616,0.004294632934033871,0.0005399071960709989,341 +illusion_0.75L,ppo,342,68.4,0.8680793642997742,-0.09490717202425003,0.8333906531333923,-0.08182454109191895,1.3352504968643188,0.16407914459705353,0.002707347273826599,0.0012053957907482982,0.0028669205494225025,0.003604221623390913,-0.001345309428870678,-0.004612082149833441,-0.8822066783905029,-0.9498263597488404,2.5687580704689026,-0.00882206678390503,-0.009498263597488404,0.025687580704689027,0.004293559584766626,0.00031304333242587745,342 +illusion_0.75L,ppo,343,68.6,0.8909804821014404,-0.1369953155517578,0.8192052245140076,-0.26224076747894287,1.3060246706008911,0.03964798152446747,0.002564535476267338,0.001101590460166335,0.002791391219943762,0.0036384195555001497,-0.0011506909504532814,-0.004774780943989754,-0.8229589462280273,-0.956798791885376,2.492630898952484,-0.008229589462280274,-0.00956798791885376,0.02492630898952484,0.004290138371288776,7.195398939074948e-05,343 +illusion_0.75L,ppo,344,68.8,0.9183543920516968,-0.17305877804756165,0.821860671043396,-0.3965598940849304,1.2474251985549927,-0.09379328787326813,0.002451720181852579,0.0009864337043836713,0.0026931168977171183,0.0036566173657774925,-0.0009321633260697126,-0.004929357208311558,-0.7974380850791931,-0.9427603483200073,2.3805313110351562,-0.007974380850791931,-0.009427603483200073,0.023805313110351563,0.00428050896152854,-0.0001730822114041075,344 +illusion_0.75L,ppo,345,69.0,0.9483205676078796,-0.20472344756126404,0.8385540246963501,-0.47239479422569275,1.1764552593231201,-0.20553675293922424,0.002347849775105715,0.0008979811682365835,0.002571251941844821,0.0036519705317914486,-0.000705921440385282,-0.005062418058514595,-0.8289140462875366,-0.9466983079910278,2.235164761543274,-0.008289140462875367,-0.009466983079910278,0.02235164761543274,0.0042700087651610374,-0.00041134055936709046,345 +illusion_0.75L,ppo,346,69.2,0.9802535772323608,-0.23297175765037537,0.8617916703224182,-0.5041553974151611,1.1071090698242188,-0.28015124797821045,0.0022792702075093985,0.0008375886827707291,0.0024313253816217184,0.003625346813350916,-0.00048694887664169073,-0.005166512914001942,-0.8955547213554382,-0.9869933128356934,2.0951702669262886,-0.008955547213554382,-0.009869933128356934,0.020951702669262887,0.004267278593033552,-0.000632112380117178,346 +illusion_0.75L,ppo,347,69.4,1.014264702796936,-0.25838303565979004,0.883626401424408,-0.5176103711128235,1.0463409423828125,-0.3185984492301941,0.0022650950122624636,0.0007899271440692246,0.002276488346979022,0.0035907658748328686,-0.00029078350053168833,-0.005241692066192627,-0.9745478630065918,-1.0886597633361816,1.9669259563088417,-0.009745478630065918,-0.010886597633361817,0.019669259563088418,0.004274563863873482,-0.0008252749685198069,347 +illusion_0.75L,ppo,348,69.6,1.050786018371582,-0.28141018748283386,0.899496853351593,-0.5301805734634399,0.9952408671379089,-0.3302454352378845,0.002279151463881135,0.0007478975458070636,0.002110661007463932,0.003565408056601882,-0.00012829166371375322,-0.005288324318826199,-1.052808165550232,-1.2517457008361816,1.837503716349602,-0.010528081655502319,-0.012517457008361817,0.01837503716349602,0.004285456147044897,-0.0009819063125178218,348 +illusion_0.75L,ppo,349,69.8,1.090590476989746,-0.30224499106407166,0.9078857898712158,-0.5475528240203857,0.9516048431396484,-0.32498350739479065,0.0023167880717664957,0.0007051985594443977,0.0019455977017059922,0.003560801036655903,-3.5922766983276233e-06,-0.0053035784512758255,-1.1256495714187622,-1.441339373588562,1.703645080327988,-0.011256495714187622,-0.01441339373588562,0.017036450803279878,0.004292575176805258,-0.0010948515264317393,349 +illusion_0.75L,ppo,350,70.0,1.1348892450332642,-0.3207126557826996,0.907919704914093,-0.5684922933578491,0.9125013947486877,-0.3087916076183319,0.002367602661252022,0.0006577183958142996,0.0017952173948287964,0.003577243071049452,8.144556340994313e-05,-0.005285291466861963,-1.1875483989715576,-1.6321610808372498,1.56910040974617,-0.011875483989715576,-0.016321610808372498,0.0156910040974617,0.004296126775443554,-0.0011591494549065828,350 +illusion_0.75L,ppo,351,70.2,1.1852484941482544,-0.3358829617500305,0.8980121612548828,-0.5862163305282593,0.8759582042694092,-0.28338974714279175,0.002422636840492487,0.0006105084903538227,0.0016754833050072193,0.0036103054881095886,0.00012955546844750643,-0.005231602117419243,-1.2361055612564087,-1.8055049777030947,1.4399903416633606,-0.012361055612564087,-0.018055049777030947,0.014399903416633606,0.0043031927198171616,-0.0011722566559910774,351 +illusion_0.75L,ppo,352,70.4,1.2430672645568848,-0.345053493976593,0.8765237927436829,-0.5859431624412537,0.8416478633880615,-0.2479684203863144,0.0024716013576835394,0.0005566441104747355,0.0016016596928238869,0.003653061343356967,0.00015115263522602618,-0.005143271759152412,-1.2594349384307861,-1.953589677810669,1.3326035737991333,-0.012594349384307861,-0.01953589677810669,0.013326035737991333,0.00431835139170289,-0.001134056132286787,352 +illusion_0.75L,ppo,353,70.6,1.3073824644088745,-0.34058478474617004,0.8449763655662537,-0.5442522168159485,0.811054527759552,-0.2013818323612213,0.0025102696381509304,0.0005012628971599042,0.0015776458894833922,0.0037029844243079424,0.0001466627581976354,-0.005030773114413023,-1.2539194822311401,-2.074555069208145,1.2615531086921692,-0.012539194822311401,-0.020745550692081453,0.012615531086921691,0.004336398560553789,-0.0010466892272233963,353 +illusion_0.75L,ppo,354,70.8,1.3694888353347778,-0.30534255504608154,0.8110172748565674,-0.4393383860588074,0.7871941328048706,-0.14411474764347076,0.0025363843888044357,0.00043495610589161515,0.0016010552644729614,0.0037615683395415545,0.00011854388139909133,-0.004904231987893581,-1.2248458862304688,-2.1681730449199677,1.23463636636734,-0.012248458862304688,-0.021681730449199677,0.012346363663673402,0.004345819354057312,-0.0009142835042439401,354 +illusion_0.75L,ppo,355,71.0,1.4113785028457642,-0.2197030633687973,0.7858161926269531,-0.26952028274536133,0.7739593386650085,-0.07953271269798279,0.0025249121244996786,0.0003975694125983864,0.0016656819498166442,0.0038299113512039185,6.810361810494214e-05,-0.004773726686835289,-1.209702491760254,-2.204133480787277,1.2422555088996887,-0.012097024917602539,-0.02204133480787277,0.012422555088996888,0.004339585080742836,-0.0007426568772643805,355 +illusion_0.75L,ppo,356,71.2,1.4194481372833252,-0.08700867742300034,0.777081310749054,-0.05872471630573273,0.7747678160667419,-0.013946461491286755,0.002506036078557372,0.0003676414489746094,0.0017596468096598983,0.003899302566424012,-7.85634620115161e-06,-0.004649689886718988,-1.2276182174682617,-2.124783545732498,1.2907963395118713,-0.012276182174682617,-0.021247835457324983,0.012907963395118714,0.004321560729295015,-0.0005390531150624156,356 +illusion_0.75L,ppo,357,71.4,1.396551489830017,0.06030275300145149,0.7859901189804077,0.15731438994407654,0.7906567454338074,0.045668311417102814,0.0024991934187710285,0.00037548562977463007,0.0018721182132139802,0.003958569373935461,-0.00010474156442796811,-0.004537240602076054,-1.3141087293624878,-1.927968770265579,1.3433642983436584,-0.013141087293624879,-0.01927968770265579,0.013433642983436585,0.004301773849874735,-0.000311925308778882,357 +illusion_0.75L,ppo,358,71.6,1.3532891273498535,0.1878524273633957,0.8091183304786682,0.34611400961875916,0.8188030123710632,0.09543266892433167,0.0024809835013002157,0.0004342481552157551,0.001992873614653945,0.004007500596344471,-0.00021856054081581533,-0.004436282906681299,-1.430741310119629,-1.678795546293259,1.4084327816963196,-0.014307413101196289,-0.01678795546293259,0.014084327816963196,0.004286319483071566,-7.073696906445548e-05,358 +illusion_0.75L,ppo,359,71.8,1.2988495826721191,0.2772383987903595,0.8411630392074585,0.48336219787597656,0.8536570072174072,0.13628415763378143,0.002504799049347639,0.0005388435092754662,0.0021116898860782385,0.004050062969326973,-0.0003557319287210703,-0.004347951151430607,-1.5419416427612305,-1.4197582006454468,1.498659908771515,-0.015419416427612305,-0.014197582006454467,0.01498659908771515,0.004273382015526295,0.00017427514831069857,359 +illusion_0.75L,ppo,360,72.0,1.2408276796340942,0.32633480429649353,0.8768588900566101,0.5555970668792725,0.8905516862869263,0.17109617590904236,0.0025433567352592945,0.0006692520692013204,0.0022246292792260647,0.0040891291573643684,-0.0005183254834264517,-0.004273273050785065,-1.617948055267334,-1.2092359066009521,1.6017898619174957,-0.01617948055267334,-0.012092359066009521,0.016017898619174957,0.004259394947439432,0.0004124342813156545,360 +illusion_0.75L,ppo,361,72.2,1.1848556995391846,0.3439904451370239,0.9115748405456543,0.57088303565979,0.9276213049888611,0.20138411223888397,0.0025989783462136984,0.0008210718515329063,0.0023305967915803194,0.0041163912974298,-0.0007065047393552959,-0.004206511192023754,-1.661996364593506,-1.0361851453781128,1.7053467333316803,-0.01661996364593506,-0.010361851453781127,0.017053467333316804,0.004247340373694897,0.000633081654086709,361 +illusion_0.75L,ppo,362,72.4,1.133255958557129,0.3421069085597992,0.9414839148521423,0.5583580136299133,0.9646897912025452,0.2273893505334854,0.002711860928684473,0.0009598566102795303,0.0024312527384608984,0.0041185165755450726,-0.0009146173833869398,-0.004147639498114586,-1.6694930791854858,-0.8985413312911987,1.8060413748025894,-0.01669493079185486,-0.008985413312911987,0.018060413748025896,0.004246612079441547,0.0008261421462520957,362 +illusion_0.75L,ppo,363,72.6,1.0854460000991821,0.329088032245636,0.964560329914093,0.5441257953643799,1.0019028186798096,0.24941036105155945,0.002800927497446537,0.0010990396840497851,0.0025309985503554344,0.00409082043915987,-0.0011218348518013954,-0.004095831885933876,-1.655938982963562,-0.8136942386627196,1.8864252865314484,-0.01655938982963562,-0.008136942386627197,0.018864252865314485,0.004263712093234062,0.0009827353060245514,363 +illusion_0.75L,ppo,364,72.8,1.0397661924362183,0.3079725205898285,0.9806565642356873,0.5370248556137085,1.039501667022705,0.2680547833442688,0.002904483349993825,0.0012127426452934742,0.002626357600092888,0.004032900556921959,-0.001315747620537877,-0.004054978024214506,-1.6206157207489014,-0.738721489906311,1.9778962805867195,-0.016206157207489014,-0.007387214899063111,0.019778962805867197,0.0042939698323607445,0.0010957379126921296,364 +illusion_0.75L,ppo,365,73.0,0.9951607584953308,0.2781773805618286,0.9899387359619141,0.5351485013961792,1.0780062675476074,0.28383907675743103,0.00298108346760273,0.001311752013862133,0.002714803209528327,0.003949702251702547,-0.0014799534110352397,-0.004030995536595583,-1.5740008354187012,-0.6956846714019775,2.0669383481144905,-0.015740008354187013,-0.006956846714019776,0.020669383481144905,0.004323890432715416,0.001160208135843277,365 +illusion_0.75L,ppo,366,73.2,0.9519944787025452,0.23798638582229614,0.9914966821670532,0.5320835709571838,1.118194341659546,0.2969740033149719,0.003050591330975294,0.0014012367464601994,0.0027931309305131435,0.003852102207019925,-0.0016030861297622323,-0.004026317968964577,-1.512352705001831,-0.6725465059280396,2.166729599237442,-0.01512352705001831,-0.006725465059280396,0.021667295992374422,0.004342077765613794,0.0011736078886315227,366 +illusion_0.75L,ppo,367,73.4,0.9122494459152222,0.1867564618587494,0.983146071434021,0.5169482231140137,1.1609081029891968,0.30706465244293213,0.0030791915487498045,0.001440760912373662,0.0028538843616843224,0.0037547433748841286,-0.0016828313237056136,-0.0040480648167431355,-1.4222142696380615,-0.6862912178039551,2.279962509870529,-0.014222142696380615,-0.006862912178039551,0.02279962509870529,0.004347268491983414,0.0011358100455254316,367 +illusion_0.75L,ppo,368,73.6,0.8794364929199219,0.1262940913438797,0.962745726108551,0.4739929139614105,1.2067714929580688,0.31261372566223145,0.003070489503443241,0.0014770862180739641,0.0028979494236409664,0.003668146440759301,-0.0017117878887802362,-0.004096904303878546,-1.3355293273925781,-0.7135814428329468,2.379111498594284,-0.013355293273925782,-0.007135814428329468,0.02379111498594284,0.004345463588833809,0.0010489318519830704,368 +illusion_0.75L,ppo,369,73.8,0.857729434967041,0.0613277293741703,0.9307717084884644,0.38664233684539795,1.2550355195999146,0.309502512216568,0.003020235802978277,0.0014453001786023378,0.002923040185123682,0.0036050942726433277,-0.0016901236958801746,-0.004178428091108799,-1.2098758220672607,-0.767175555229187,2.4849641919136047,-0.012098758220672608,-0.00767175555229187,0.024849641919136047,0.004340487066656351,0.0009170636185444891,369 +illusion_0.75L,ppo,370,74.0,0.8500314354896545,-0.0018761263927444816,0.8922459483146667,0.2473442107439041,1.3006446361541748,0.28861939907073975,0.002949927467852831,0.001391586265526712,0.002926602028310299,0.0035728453658521175,-0.0016177167417481542,-0.0042935204692184925,-1.0944124460220337,-0.8275008201599121,2.549218475818634,-0.010944124460220337,-0.008275008201599121,0.02549218475818634,0.004329410847276449,0.0007459750631824136,370 +illusion_0.75L,ppo,371,74.2,0.8563011884689331,-0.058181032538414,0.8557370901107788,0.06676332652568817,1.3313182592391968,0.2353854775428772,0.002838444197550416,0.001306070713326335,0.0029052377212792635,0.003576579038053751,-0.0014956509694457054,-0.004438623320311308,-0.966334640979767,-0.9033347368240358,2.578866183757782,-0.00966334640979767,-0.009033347368240357,0.02578866183757782,0.004308085888624191,0.000542854773811996,371 +illusion_0.75L,ppo,372,74.4,0.8735561966896057,-0.10584326088428497,0.8296054601669312,-0.12689635157585144,1.3313233852386475,0.13949191570281982,0.002698096912354231,0.001199150807224214,0.0028557416517287493,0.003605886362493038,-0.0013313101371750236,-0.0046060397289693356,-0.8624455332756042,-0.9525184631347657,2.5566409826278687,-0.008624455332756043,-0.009525184631347657,0.025566409826278686,0.0042798398062586784,0.000316097226459533,372 +illusion_0.75L,ppo,373,74.6,0.897749125957489,-0.1460517942905426,0.8191478848457336,-0.29789191484451294,1.2946553230285645,0.01135021448135376,0.002557385480031371,0.0010779170552268624,0.0027775948401540518,0.003639764152467251,-0.0011337081668898463,-0.0047768051736056805,-0.8042964339256286,-0.9617538452148436,2.475667655467987,-0.008042964339256286,-0.009617538452148437,0.02475667655467987,0.004256341140717268,7.510853174608201e-05,373 +illusion_0.75L,ppo,374,74.8,0.9258062839508057,-0.18078742921352386,0.8254656195640564,-0.41754528880119324,1.23188054561615,-0.11880705505609512,0.0024316487833857536,0.000978136551566422,0.0026765756774693727,0.003655939595773816,-0.0009095665882341564,-0.004932265728712082,-0.8042668104171754,-0.9465701580047607,2.344570219516754,-0.008042668104171754,-0.009465701580047607,0.02344570219516754,0.004248499870300293,-0.00016992665769066662,374 +illusion_0.75L,ppo,375,75.0,0.9562105536460876,-0.2114740014076233,0.8444309830665588,-0.480210542678833,1.1602790355682373,-0.222620889544487,0.0023382543586194515,0.0008849275182001293,0.0025548329576849937,0.003647526726126671,-0.000676905969157815,-0.005063858814537525,-0.8414143323898315,-0.949057936668396,2.2058675587177277,-0.008414143323898315,-0.00949057936668396,0.022058675587177275,0.00425688037648797,-0.0004083740059286356,375 +illusion_0.75L,ppo,376,75.2,0.9885218143463135,-0.23894158005714417,0.8678874969482422,-0.5051506757736206,1.0925076007843018,-0.288580060005188,0.002283793641254306,0.0008370315772481263,0.002413177862763405,0.003619966795668006,-0.00045573353418149054,-0.0051649389788508415,-0.9183784127235414,-1.0014092922210693,2.065575249493122,-0.009183784127235414,-0.010014092922210694,0.02065575249493122,0.004272068850696087,-0.0006296037463471293,376 +illusion_0.75L,ppo,377,75.4,1.0228840112686157,-0.2637757658958435,0.8884202837944031,-0.5172862410545349,1.034030795097351,-0.3201506435871124,0.002268073381856084,0.0007914523012004793,0.0022548800334334373,0.0035900569055229425,-0.000263096735579893,-0.005236917175352573,-0.9879126548767089,-1.1199997663497925,1.947070945054293,-0.00987912654876709,-0.011199997663497925,0.01947070945054293,0.004284536466002464,-0.0008235537097789347,377 +illusion_0.75L,ppo,378,75.6,1.0597562789916992,-0.2863323986530304,0.9023557305335999,-0.5308068990707397,0.9849153757095337,-0.32737836241722107,0.0022850383538752794,0.0007493857992812991,0.0020847637206315994,0.00357068027369678,-0.00011028502194676548,-0.005278648808598518,-1.0625700950622559,-1.282805323600769,1.82249017059803,-0.010625700950622558,-0.012828053236007692,0.0182249017059803,0.004293113015592098,-0.000981337740086019,378 +illusion_0.75L,ppo,379,75.8,1.1000117063522339,-0.3067677617073059,0.9085738658905029,-0.5493011474609375,0.9425704479217529,-0.31944790482521057,0.0023196483962237835,0.0007051508873701096,0.0019170769955962896,0.00356824928894639,1.7134800600615563e-06,-0.005288500338792801,-1.1322605609893799,-1.4668694734573364,1.6892544329166412,-0.0113226056098938,-0.014668694734573365,0.016892544329166412,0.004303110297769308,-0.001095808343961835,379 +illusion_0.75L,ppo,380,76.0,1.1450111865997314,-0.3247961699962616,0.9061897397041321,-0.5703604221343994,0.9042075872421265,-0.3013897240161896,0.0023627050686627626,0.0006578270113095641,0.0017711275722831488,0.0035827606916427612,7.78597968746908e-05,-0.005263185128569603,-1.193964958190918,-1.646156430244446,1.553045004606247,-0.01193964958190918,-0.01646156430244446,0.01553045004606247,0.004317091777920723,-0.0011619804427027702,380 +illusion_0.75L,ppo,381,76.2,1.1964209079742432,-0.33931007981300354,0.8935171365737915,-0.5858576893806458,0.8682235479354858,-0.274219810962677,0.0024271435104310513,0.000608468777500093,0.0016612726030871272,0.0036099241115152836,0.0001227347820531577,-0.005205016117542982,-1.2368168830871582,-1.8061399459838867,1.4304428100585938,-0.012368168830871582,-0.018061399459838867,0.014304428100585938,0.0043295822106301785,-0.0011772552970796824,381 +illusion_0.75L,ppo,382,76.4,1.2555190324783325,-0.34698542952537537,0.8692643642425537,-0.5792772769927979,0.8347236514091492,-0.23690903186798096,0.0024805532302707434,0.0005654420820064843,0.0015970245003700256,0.0036492375656962395,0.00014154017844703048,-0.0051191444508731365,-1.2472230195999146,-1.9582163095474243,1.333137571811676,-0.012472230195999147,-0.019582163095474243,0.01333137571811676,0.004332154523581266,-0.0011414313921704888,382 +illusion_0.75L,ppo,383,76.6,1.3204182386398315,-0.3385922908782959,0.8360339999198914,-0.5265921950340271,0.8055808544158936,-0.1885368674993515,0.0024955577682703733,0.0004958980716764927,0.0015801857225596905,0.003700756933540106,0.00013483727525454015,-0.005013307556509972,-1.2204068899154663,-2.0890441238880157,1.2799797058105469,-0.012204068899154664,-0.020890441238880158,0.012799797058105468,0.004323046654462814,-0.0010565404081717134,383 +illusion_0.75L,ppo,384,76.8,1.3803350925445557,-0.2951059341430664,0.8025373220443726,-0.4088060259819031,0.7840284705162048,-0.13008296489715576,0.0025160235818475485,0.00043338368413969874,0.0016073682345449924,0.0037614142056554556,0.00010267113248119131,-0.004896846134215593,-1.1994750499725342,-2.167852371931076,1.2575103044509888,-0.011994750499725343,-0.021678523719310762,0.012575103044509888,0.004309957846999168,-0.0009265808621421456,384 +illusion_0.75L,ppo,385,77.0,1.416477084159851,-0.19879648089408875,0.7797412276268005,-0.22941261529922485,0.773884654045105,-0.06554371863603592,0.0025121530052274466,0.000386358326068148,0.0016739292768761516,0.0038289239164441824,4.99343077535741e-05,-0.004776244051754475,-1.1901021003723145,-2.193639725446701,1.2673668265342712,-0.011901021003723145,-0.02193639725446701,0.012673668265342712,0.0043023559264838696,-0.0007572299218736589,385 +illusion_0.75L,ppo,386,77.2,1.418047308921814,-0.059388112276792526,0.774199366569519,-0.015678562223911285,0.7781638503074646,-0.0014744519721716642,0.0025004788767546415,0.00036022826679982245,0.0017692050896584988,0.0038973733317106962,-2.2791600713389926e-05,-0.004658989608287811,-1.2309324741363525,-2.100056439638138,1.3021809458732605,-0.012309324741363526,-0.02100056439638138,0.013021809458732604,0.0043017142452299595,-0.0005555875250138342,386 +illusion_0.75L,ppo,387,77.4,1.3904823064804077,0.08768656104803085,0.7860545516014099,0.196740061044693,0.7970791459083557,0.05562526732683182,0.0024860610719770193,0.00037710857577621937,0.0018767863512039185,0.0039525930769741535,-0.00011354185699019581,-0.004548864904791117,-1.328620433807373,-1.8937112987041476,1.3500741720199585,-0.013286204338073732,-0.018937112987041475,0.013500741720199586,0.004300643689930439,-0.0003299686941318214,387 +illusion_0.75L,ppo,388,77.6,1.3443759679794312,0.21007676422595978,0.8113522529602051,0.37693798542022705,0.8269751667976379,0.10302912443876266,0.0024844887666404247,0.00044721030280925333,0.0019996962510049343,0.004007572308182716,-0.0002232521219411865,-0.004447747953236103,-1.4503288269042969,-1.6414821147918701,1.4147921800613403,-0.01450328826904297,-0.0164148211479187,0.014147921800613403,0.00429190369322896,-8.971420174930245e-05,388 +illusion_0.75L,ppo,389,77.8,1.2884658575057983,0.29243767261505127,0.8446853160858154,0.5021724700927734,0.8622124195098877,0.14236098527908325,0.0025004646740853786,0.0005561307189054787,0.002113851485773921,0.0040519265457987785,-0.0003626150719355792,-0.004358474165201187,-1.5487804412841797,-1.39006906747818,1.5146970450878143,-0.015487804412841798,-0.0139006906747818,0.015146970450878143,0.004277124535292387,0.00015503856411669403,389 +illusion_0.75L,ppo,390,78.0,1.2301216125488281,0.33504295349121094,0.8808770775794983,0.5620326399803162,0.8987753391265869,0.17626461386680603,0.002550708130002022,0.0006912809330970049,0.0022224029526114464,0.004088079556822777,-0.0005318965413607657,-0.00428021838888526,-1.624171495437622,-1.1777392625808716,1.6169701516628265,-0.01624171495437622,-0.011777392625808717,0.016169701516628266,0.004265474621206522,0.00039368137368001044,390 +illusion_0.75L,ppo,391,78.2,1.17453932762146,0.34806564450263977,0.9153411984443665,0.5695137977600098,0.9354048371315002,0.20577532052993774,0.002613668330013752,0.0008443891420029104,0.0023274566046893597,0.004109055269509554,-0.0007246214081533253,-0.004207624588161707,-1.6643828153610227,-1.0141843557357788,1.7147328853607178,-0.016643828153610228,-0.010141843557357788,0.017147328853607178,0.004263981245458126,0.0006155874580144882,391 +illusion_0.75L,ppo,392,78.4,1.1234837770462036,0.3433477282524109,0.9444252252578735,0.5553011298179626,0.9721271395683289,0.23104673624038696,0.0027068087365478277,0.0009779001120477915,0.002430916531011462,0.004104342311620712,-0.0009323824197053909,-0.004143353085964918,-1.6685416698455813,-0.8835349082946777,1.8123530745506287,-0.016685416698455812,-0.008835349082946777,0.018123530745506287,0.004270609002560377,0.0008106737514026463,392 +illusion_0.75L,ppo,393,78.6,1.0760363340377808,0.32842931151390076,0.9665012955665588,0.5423920750617981,1.0091278553009033,0.2524511516094208,0.002813492203131318,0.0011201765155419707,0.0025343820452690125,0.004068965092301369,-0.0011375023750588298,-0.004090393893420696,-1.6565827131271362,-0.7916697263717652,1.8962994813919067,-0.016565827131271364,-0.007916697263717652,0.018962994813919068,0.00427780719473958,0.0009700104128569365,393 +illusion_0.75L,ppo,394,78.8,1.0305842161178589,0.3055309057235718,0.9817041754722595,0.5367504358291626,1.0467535257339478,0.2705743908882141,0.0029165500309318304,0.0012252365704625845,0.0026322207413613796,0.00400750245898962,-0.001326954923570156,-0.004054350778460503,-1.6087768077850342,-0.7387903928756714,1.993683010339737,-0.016087768077850343,-0.007387903928756714,0.01993683010339737,0.004282041918486357,0.00108638487290591,394 +illusion_0.75L,ppo,395,79.0,0.986247181892395,0.27362582087516785,0.9900795221328735,0.5353725552558899,1.0855575799942017,0.2859053909778595,0.0029984014108777046,0.001323803560808301,0.0027185040526092052,0.003927016630768776,-0.001487060682848096,-0.004035416059195995,-1.5630810260772703,-0.7084285020828247,2.0814737752079964,-0.015630810260772704,-0.007084285020828247,0.020814737752079964,0.004287917632609606,0.001154729281552136,395 +illusion_0.75L,ppo,396,79.2,0.9435865879058838,0.23105034232139587,0.990399956703186,0.5311084985733032,1.1262649297714233,0.29854172468185425,0.0030555587727576494,0.001415535807609558,0.0027926210314035416,0.0038361786864697933,-0.0016053603030741215,-0.004035180434584618,-1.4993571043014526,-0.6992095708847046,2.1786779165267944,-0.014993571043014527,-0.006992095708847046,0.021786779165267944,0.004301857203245163,0.0011723487405106425,396 +illusion_0.75L,ppo,397,79.4,0.9048696160316467,0.17746122181415558,0.9803413152694702,0.512053370475769,1.1696797609329224,0.3079598844051361,0.003081792499870062,0.0014466868015006185,0.002851329045370221,0.0037474166601896286,-0.0016770749352872372,-0.004059633240103722,-1.410249948501587,-0.7138898372650146,2.289167493581772,-0.014102499485015869,-0.007138898372650146,0.02289167493581772,0.004322571214288473,0.0011389366118237376,397 +illusion_0.75L,ppo,398,79.6,0.8738219738006592,0.1152581200003624,0.9580344557762146,0.46171510219573975,1.216255784034729,0.31226131319999695,0.0030661148484796286,0.0014554186491295695,0.0028924131765961647,0.0036716239992529154,-0.0016997335478663445,-0.004111066460609436,-1.3268415927886963,-0.7440422773361206,2.381381928920746,-0.013268415927886964,-0.007440422773361206,0.02381381928920746,0.0043395934626460075,0.0010564166586846113,398 +illusion_0.75L,ppo,399,79.8,0.8545224070549011,0.04962790012359619,0.9246679544448853,0.3643251359462738,1.2646129131317139,0.3066197335720062,0.0030214213766157627,0.0014361264184117317,0.002914056181907654,0.0036188107915222645,-0.0016713894437998533,-0.004188579507172108,-1.216967225074768,-0.7927561998367311,2.4701183438301086,-0.01216967225074768,-0.00792756199836731,0.024701183438301088,0.004342196509242058,0.0009286822751164436,399 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_long.csv new file mode 100644 index 0000000..ffe880c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,target,0,0.0,velocity,upper_ux,0.972428560256958 +illusion_0.75L,target,0,0.0,velocity,upper_uy,-0.22864657640457153 +illusion_0.75L,target,0,0.0,velocity,center_ux,0.9272081255912781 +illusion_0.75L,target,0,0.0,velocity,center_uy,-0.5291661620140076 +illusion_0.75L,target,0,0.0,velocity,lower_ux,1.0905728340148926 +illusion_0.75L,target,0,0.0,velocity,lower_uy,-0.33677834272384644 +illusion_0.75L,target,1,0.2,velocity,upper_ux,1.0079513788223267 +illusion_0.75L,target,1,0.2,velocity,upper_uy,-0.2512833774089813 +illusion_0.75L,target,1,0.2,velocity,center_ux,0.9486978650093079 +illusion_0.75L,target,1,0.2,velocity,center_uy,-0.5232889652252197 +illusion_0.75L,target,1,0.2,velocity,lower_ux,1.047960877418518 +illusion_0.75L,target,1,0.2,velocity,lower_uy,-0.33643561601638794 +illusion_0.75L,target,2,0.4,velocity,upper_ux,1.0443874597549438 +illusion_0.75L,target,2,0.4,velocity,upper_uy,-0.27129629254341125 +illusion_0.75L,target,2,0.4,velocity,center_ux,0.9634935855865479 +illusion_0.75L,target,2,0.4,velocity,center_uy,-0.5240337252616882 +illusion_0.75L,target,2,0.4,velocity,lower_ux,1.009245753288269 +illusion_0.75L,target,2,0.4,velocity,lower_uy,-0.32623401284217834 +illusion_0.75L,target,3,0.6,velocity,upper_ux,1.0824006795883179 +illusion_0.75L,target,3,0.6,velocity,upper_uy,-0.2891448438167572 +illusion_0.75L,target,3,0.6,velocity,center_ux,0.9718227982521057 +illusion_0.75L,target,3,0.6,velocity,center_uy,-0.5322773456573486 +illusion_0.75L,target,3,0.6,velocity,lower_ux,0.9716646671295166 +illusion_0.75L,target,3,0.6,velocity,lower_uy,-0.3092268109321594 +illusion_0.75L,target,4,0.8,velocity,upper_ux,1.1229161024093628 +illusion_0.75L,target,4,0.8,velocity,upper_uy,-0.3049857020378113 +illusion_0.75L,target,4,0.8,velocity,center_ux,0.9731597304344177 +illusion_0.75L,target,4,0.8,velocity,center_uy,-0.5451499223709106 +illusion_0.75L,target,4,0.8,velocity,lower_ux,0.9337620735168457 +illusion_0.75L,target,4,0.8,velocity,lower_uy,-0.28435009717941284 +illusion_0.75L,target,5,1.0,velocity,upper_ux,1.1671923398971558 +illusion_0.75L,target,5,1.0,velocity,upper_uy,-0.3184956908226013 +illusion_0.75L,target,5,1.0,velocity,center_ux,0.9656947255134583 +illusion_0.75L,target,5,1.0,velocity,center_uy,-0.5552468299865723 +illusion_0.75L,target,5,1.0,velocity,lower_ux,0.8956544399261475 +illusion_0.75L,target,5,1.0,velocity,lower_uy,-0.2490893006324768 +illusion_0.75L,target,6,1.2,velocity,upper_ux,1.2167537212371826 +illusion_0.75L,target,6,1.2,velocity,upper_uy,-0.3283718526363373 +illusion_0.75L,target,6,1.2,velocity,center_ux,0.9470556378364563 +illusion_0.75L,target,6,1.2,velocity,center_uy,-0.5466539263725281 +illusion_0.75L,target,6,1.2,velocity,lower_ux,0.8592856526374817 +illusion_0.75L,target,6,1.2,velocity,lower_uy,-0.201548770070076 +illusion_0.75L,target,7,1.4,velocity,upper_ux,1.272146224975586 +illusion_0.75L,target,7,1.4,velocity,upper_uy,-0.3305774927139282 +illusion_0.75L,target,7,1.4,velocity,center_ux,0.9169982075691223 +illusion_0.75L,target,7,1.4,velocity,center_uy,-0.49463924765586853 +illusion_0.75L,target,7,1.4,velocity,lower_ux,0.8284265398979187 +illusion_0.75L,target,7,1.4,velocity,lower_uy,-0.14222654700279236 +illusion_0.75L,target,8,1.6,velocity,upper_ux,1.3286950588226318 +illusion_0.75L,target,8,1.6,velocity,upper_uy,-0.3136594891548157 +illusion_0.75L,target,8,1.6,velocity,center_ux,0.8810133337974548 +illusion_0.75L,target,8,1.6,velocity,center_uy,-0.37747707962989807 +illusion_0.75L,target,8,1.6,velocity,lower_ux,0.8080916404724121 +illusion_0.75L,target,8,1.6,velocity,lower_uy,-0.07531851530075073 +illusion_0.75L,target,9,1.8,velocity,upper_ux,1.3700147867202759 +illusion_0.75L,target,9,1.8,velocity,upper_uy,-0.25513672828674316 +illusion_0.75L,target,9,1.8,velocity,center_ux,0.8496693968772888 +illusion_0.75L,target,9,1.8,velocity,center_uy,-0.19591554999351501 +illusion_0.75L,target,9,1.8,velocity,lower_ux,0.8028934597969055 +illusion_0.75L,target,9,1.8,velocity,lower_uy,-0.008350428193807602 +illusion_0.75L,target,10,2.0,velocity,upper_ux,1.373154878616333 +illusion_0.75L,target,10,2.0,velocity,upper_uy,-0.1380479782819748 +illusion_0.75L,target,10,2.0,velocity,center_ux,0.8321697115898132 +illusion_0.75L,target,10,2.0,velocity,center_uy,0.02170734480023384 +illusion_0.75L,target,10,2.0,velocity,lower_ux,0.8142148852348328 +illusion_0.75L,target,10,2.0,velocity,lower_uy,0.05105871707201004 +illusion_0.75L,target,11,2.2,velocity,upper_ux,1.332930088043213 +illusion_0.75L,target,11,2.2,velocity,upper_uy,0.01717189885675907 +illusion_0.75L,target,11,2.2,velocity,center_ux,0.8316653370857239 +illusion_0.75L,target,11,2.2,velocity,center_uy,0.23379237949848175 +illusion_0.75L,target,11,2.2,velocity,lower_ux,0.8385917544364929 +illusion_0.75L,target,11,2.2,velocity,lower_uy,0.09959950298070908 +illusion_0.75L,target,12,2.4,velocity,upper_ux,1.268751621246338 +illusion_0.75L,target,12,2.4,velocity,upper_uy,0.16220694780349731 +illusion_0.75L,target,12,2.4,velocity,center_ux,0.8461537957191467 +illusion_0.75L,target,12,2.4,velocity,center_uy,0.40086811780929565 +illusion_0.75L,target,12,2.4,velocity,lower_ux,0.8699540495872498 +illusion_0.75L,target,12,2.4,velocity,lower_uy,0.139118492603302 +illusion_0.75L,target,13,2.6,velocity,upper_ux,1.2017635107040405 +illusion_0.75L,target,13,2.6,velocity,upper_uy,0.2638150453567505 +illusion_0.75L,target,13,2.6,velocity,center_ux,0.8710004687309265 +illusion_0.75L,target,13,2.6,velocity,center_uy,0.4981798231601715 +illusion_0.75L,target,13,2.6,velocity,lower_ux,0.9036571383476257 +illusion_0.75L,target,13,2.6,velocity,lower_uy,0.17286524176597595 +illusion_0.75L,target,14,2.8,velocity,upper_ux,1.1420572996139526 +illusion_0.75L,target,14,2.8,velocity,upper_uy,0.3179084062576294 +illusion_0.75L,target,14,2.8,velocity,center_ux,0.9001067280769348 +illusion_0.75L,target,14,2.8,velocity,center_uy,0.5307366847991943 +illusion_0.75L,target,14,2.8,velocity,lower_ux,0.9379274249076843 +illusion_0.75L,target,14,2.8,velocity,lower_uy,0.20246201753616333 +illusion_0.75L,target,15,3.0,velocity,upper_ux,1.0916234254837036 +illusion_0.75L,target,15,3.0,velocity,upper_uy,0.3371937572956085 +illusion_0.75L,target,15,3.0,velocity,center_ux,0.9271506667137146 +illusion_0.75L,target,15,3.0,velocity,center_uy,0.5296574234962463 +illusion_0.75L,target,15,3.0,velocity,lower_ux,0.9724995493888855 +illusion_0.75L,target,15,3.0,velocity,lower_uy,0.2283669263124466 +illusion_0.75L,target,16,3.2,velocity,upper_ux,1.0484066009521484 +illusion_0.75L,target,16,3.2,velocity,upper_uy,0.3368973433971405 +illusion_0.75L,target,16,3.2,velocity,center_ux,0.9482501745223999 +illusion_0.75L,target,16,3.2,velocity,center_uy,0.5237621068954468 +illusion_0.75L,target,16,3.2,velocity,lower_ux,1.0075255632400513 +illusion_0.75L,target,16,3.2,velocity,lower_uy,0.2510359287261963 +illusion_0.75L,target,17,3.4,velocity,upper_ux,1.0091495513916016 +illusion_0.75L,target,17,3.4,velocity,upper_uy,0.32671502232551575 +illusion_0.75L,target,17,3.4,velocity,center_ux,0.9626703858375549 +illusion_0.75L,target,17,3.4,velocity,center_uy,0.5244511961936951 +illusion_0.75L,target,17,3.4,velocity,lower_ux,1.0434787273406982 +illusion_0.75L,target,17,3.4,velocity,lower_uy,0.27105939388275146 +illusion_0.75L,target,18,3.6,velocity,upper_ux,0.9712127447128296 +illusion_0.75L,target,18,3.6,velocity,upper_uy,0.3097425401210785 +illusion_0.75L,target,18,3.6,velocity,center_ux,0.970777153968811 +illusion_0.75L,target,18,3.6,velocity,center_uy,0.5326407551765442 +illusion_0.75L,target,18,3.6,velocity,lower_ux,1.081150770187378 +illusion_0.75L,target,18,3.6,velocity,lower_uy,0.288899302482605 +illusion_0.75L,target,19,3.8,velocity,upper_ux,0.9332447052001953 +illusion_0.75L,target,19,3.8,velocity,upper_uy,0.2849293053150177 +illusion_0.75L,target,19,3.8,velocity,center_ux,0.972182035446167 +illusion_0.75L,target,19,3.8,velocity,center_uy,0.5454770922660828 +illusion_0.75L,target,19,3.8,velocity,lower_ux,1.1215815544128418 +illusion_0.75L,target,19,3.8,velocity,lower_uy,0.3047185242176056 +illusion_0.75L,target,20,4.0,velocity,upper_ux,0.895420253276825 +illusion_0.75L,target,20,4.0,velocity,upper_uy,0.24975408613681793 +illusion_0.75L,target,20,4.0,velocity,center_ux,0.9651687145233154 +illusion_0.75L,target,20,4.0,velocity,center_uy,0.5556049942970276 +illusion_0.75L,target,20,4.0,velocity,lower_ux,1.1661207675933838 +illusion_0.75L,target,20,4.0,velocity,lower_uy,0.31820034980773926 +illusion_0.75L,target,21,4.2,velocity,upper_ux,0.8595588207244873 +illusion_0.75L,target,21,4.2,velocity,upper_uy,0.20228269696235657 +illusion_0.75L,target,21,4.2,velocity,center_ux,0.9472661018371582 +illusion_0.75L,target,21,4.2,velocity,center_uy,0.54718416929245 +illusion_0.75L,target,21,4.2,velocity,lower_ux,1.216211199760437 +illusion_0.75L,target,21,4.2,velocity,lower_uy,0.3280545473098755 +illusion_0.75L,target,22,4.4,velocity,upper_ux,0.8291653990745544 +illusion_0.75L,target,22,4.4,velocity,upper_uy,0.14295679330825806 +illusion_0.75L,target,22,4.4,velocity,center_ux,0.9179372191429138 +illusion_0.75L,target,22,4.4,velocity,center_uy,0.4954488277435303 +illusion_0.75L,target,22,4.4,velocity,lower_ux,1.2721785306930542 +illusion_0.75L,target,22,4.4,velocity,lower_uy,0.3302682042121887 +illusion_0.75L,target,23,4.6,velocity,upper_ux,0.8090806603431702 +illusion_0.75L,target,23,4.6,velocity,upper_uy,0.07593511790037155 +illusion_0.75L,target,23,4.6,velocity,center_ux,0.8824365735054016 +illusion_0.75L,target,23,4.6,velocity,center_uy,0.3784646689891815 +illusion_0.75L,target,23,4.6,velocity,lower_ux,1.3291993141174316 +illusion_0.75L,target,23,4.6,velocity,lower_uy,0.3134384751319885 +illusion_0.75L,target,24,4.8,velocity,upper_ux,0.803843080997467 +illusion_0.75L,target,24,4.8,velocity,upper_uy,0.008770022541284561 +illusion_0.75L,target,24,4.8,velocity,center_ux,0.8512240648269653 +illusion_0.75L,target,24,4.8,velocity,center_uy,0.19680127501487732 +illusion_0.75L,target,24,4.8,velocity,lower_ux,1.3707972764968872 +illusion_0.75L,target,24,4.8,velocity,lower_uy,0.25511786341667175 +illusion_0.75L,target,25,5.0,velocity,upper_ux,0.814888060092926 +illusion_0.75L,target,25,5.0,velocity,upper_uy,-0.05083857476711273 +illusion_0.75L,target,25,5.0,velocity,center_ux,0.8335514068603516 +illusion_0.75L,target,25,5.0,velocity,center_uy,-0.021122310310602188 +illusion_0.75L,target,25,5.0,velocity,lower_ux,1.373948097229004 +illusion_0.75L,target,25,5.0,velocity,lower_uy,0.13827764987945557 +illusion_0.75L,target,26,5.2,velocity,upper_ux,0.8388457298278809 +illusion_0.75L,target,26,5.2,velocity,upper_uy,-0.09951182454824448 +illusion_0.75L,target,26,5.2,velocity,center_ux,0.8326671719551086 +illusion_0.75L,target,26,5.2,velocity,center_uy,-0.23348325490951538 +illusion_0.75L,target,26,5.2,velocity,lower_ux,1.333431601524353 +illusion_0.75L,target,26,5.2,velocity,lower_uy,-0.016747256740927696 +illusion_0.75L,target,27,5.4,velocity,upper_ux,0.8697036504745483 +illusion_0.75L,target,27,5.4,velocity,upper_uy,-0.13908147811889648 +illusion_0.75L,target,27,5.4,velocity,center_ux,0.8466389179229736 +illusion_0.75L,target,27,5.4,velocity,center_uy,-0.40067920088768005 +illusion_0.75L,target,27,5.4,velocity,lower_ux,1.2687489986419678 +illusion_0.75L,target,27,5.4,velocity,lower_uy,-0.16165292263031006 +illusion_0.75L,target,28,5.6,velocity,upper_ux,0.9029199481010437 +illusion_0.75L,target,28,5.6,velocity,upper_uy,-0.17282342910766602 +illusion_0.75L,target,28,5.6,velocity,center_ux,0.8709477186203003 +illusion_0.75L,target,28,5.6,velocity,center_uy,-0.4979989528656006 +illusion_0.75L,target,28,5.6,velocity,lower_ux,1.2012606859207153 +illusion_0.75L,target,28,5.6,velocity,lower_uy,-0.26319384574890137 +illusion_0.75L,target,29,5.8,velocity,upper_ux,0.9368302822113037 +illusion_0.75L,target,29,5.8,velocity,upper_uy,-0.20239071547985077 +illusion_0.75L,target,29,5.8,velocity,center_ux,0.8996299505233765 +illusion_0.75L,target,29,5.8,velocity,center_uy,-0.5305495262145996 +illusion_0.75L,target,29,5.8,velocity,lower_ux,1.1412221193313599 +illusion_0.75L,target,29,5.8,velocity,lower_uy,-0.31730130314826965 +illusion_0.75L,target,30,6.0,velocity,upper_ux,0.9712843298912048 +illusion_0.75L,target,30,6.0,velocity,upper_uy,-0.2282608151435852 +illusion_0.75L,target,30,6.0,velocity,center_ux,0.9265144467353821 +illusion_0.75L,target,30,6.0,velocity,center_uy,-0.529447078704834 +illusion_0.75L,target,30,6.0,velocity,lower_ux,1.0907307863235474 +illusion_0.75L,target,30,6.0,velocity,lower_uy,-0.3366656005382538 +illusion_0.75L,target,31,6.2,velocity,upper_ux,1.0065319538116455 +illusion_0.75L,target,31,6.2,velocity,upper_uy,-0.25090065598487854 +illusion_0.75L,target,31,6.2,velocity,center_ux,0.9478340148925781 +illusion_0.75L,target,31,6.2,velocity,center_uy,-0.5234811305999756 +illusion_0.75L,target,31,6.2,velocity,lower_ux,1.047804355621338 +illusion_0.75L,target,31,6.2,velocity,lower_uy,-0.33646687865257263 +illusion_0.75L,target,32,6.4,velocity,upper_ux,1.0429867506027222 +illusion_0.75L,target,32,6.4,velocity,upper_uy,-0.2709074914455414 +illusion_0.75L,target,32,6.4,velocity,center_ux,0.9627863168716431 +illusion_0.75L,target,32,6.4,velocity,center_uy,-0.524074912071228 +illusion_0.75L,target,32,6.4,velocity,lower_ux,1.0091079473495483 +illusion_0.75L,target,32,6.4,velocity,lower_uy,-0.3263702690601349 +illusion_0.75L,target,33,6.6,velocity,upper_ux,1.0812089443206787 +illusion_0.75L,target,33,6.6,velocity,upper_uy,-0.2887464761734009 +illusion_0.75L,target,33,6.6,velocity,center_ux,0.9714927077293396 +illusion_0.75L,target,33,6.6,velocity,center_uy,-0.5321820974349976 +illusion_0.75L,target,33,6.6,velocity,lower_ux,0.9717581272125244 +illusion_0.75L,target,33,6.6,velocity,lower_uy,-0.3094654083251953 +illusion_0.75L,target,34,6.8,velocity,upper_ux,1.1220386028289795 +illusion_0.75L,target,34,6.8,velocity,upper_uy,-0.30458033084869385 +illusion_0.75L,target,34,6.8,velocity,center_ux,0.9733619093894958 +illusion_0.75L,target,34,6.8,velocity,center_uy,-0.5449807643890381 +illusion_0.75L,target,34,6.8,velocity,lower_ux,0.9342023730278015 +illusion_0.75L,target,34,6.8,velocity,lower_uy,-0.2847021222114563 +illusion_0.75L,target,35,7.0,velocity,upper_ux,1.1666884422302246 +illusion_0.75L,target,35,7.0,velocity,upper_uy,-0.3180919587612152 +illusion_0.75L,target,35,7.0,velocity,center_ux,0.9665476083755493 +illusion_0.75L,target,35,7.0,velocity,center_uy,-0.5551546216011047 +illusion_0.75L,target,35,7.0,velocity,lower_ux,0.8964942693710327 +illusion_0.75L,target,35,7.0,velocity,lower_uy,-0.24955475330352783 +illusion_0.75L,target,36,7.2,velocity,upper_ux,1.2165806293487549 +illusion_0.75L,target,36,7.2,velocity,upper_uy,-0.32799816131591797 +illusion_0.75L,target,36,7.2,velocity,center_ux,0.9485490918159485 +illusion_0.75L,target,36,7.2,velocity,center_uy,-0.5469091534614563 +illusion_0.75L,target,36,7.2,velocity,lower_ux,0.86045241355896 +illusion_0.75L,target,36,7.2,velocity,lower_uy,-0.20209667086601257 +illusion_0.75L,target,37,7.4,velocity,upper_ux,1.2721322774887085 +illusion_0.75L,target,37,7.4,velocity,upper_uy,-0.3303276300430298 +illusion_0.75L,target,37,7.4,velocity,center_ux,0.918871283531189 +illusion_0.75L,target,37,7.4,velocity,center_uy,-0.495512455701828 +illusion_0.75L,target,37,7.4,velocity,lower_ux,0.8296827077865601 +illusion_0.75L,target,37,7.4,velocity,lower_uy,-0.14279352128505707 +illusion_0.75L,target,38,7.6,velocity,upper_ux,1.3286725282669067 +illusion_0.75L,target,38,7.6,velocity,upper_uy,-0.3137856423854828 +illusion_0.75L,target,38,7.6,velocity,center_ux,0.8828162550926208 +illusion_0.75L,target,38,7.6,velocity,center_uy,-0.3790040910243988 +illusion_0.75L,target,38,7.6,velocity,lower_ux,0.8091151714324951 +illusion_0.75L,target,38,7.6,velocity,lower_uy,-0.07583511620759964 +illusion_0.75L,target,39,7.8,velocity,upper_ux,1.3699824810028076 +illusion_0.75L,target,39,7.8,velocity,upper_uy,-0.2560325562953949 +illusion_0.75L,target,39,7.8,velocity,center_ux,0.8509546518325806 +illusion_0.75L,target,39,7.8,velocity,center_uy,-0.19784478843212128 +illusion_0.75L,target,39,7.8,velocity,lower_ux,0.8033998608589172 +illusion_0.75L,target,39,7.8,velocity,lower_uy,-0.008775416761636734 +illusion_0.75L,target,40,8.0,velocity,upper_ux,1.3731637001037598 +illusion_0.75L,target,40,8.0,velocity,upper_uy,-0.13983950018882751 +illusion_0.75L,target,40,8.0,velocity,center_ux,0.8326960802078247 +illusion_0.75L,target,40,8.0,velocity,center_uy,0.019703008234500885 +illusion_0.75L,target,40,8.0,velocity,lower_ux,0.8140650391578674 +illusion_0.75L,target,40,8.0,velocity,lower_uy,0.05072295665740967 +illusion_0.75L,target,41,8.2,velocity,upper_ux,1.3328580856323242 +illusion_0.75L,target,41,8.2,velocity,upper_uy,0.014956938102841377 +illusion_0.75L,target,41,8.2,velocity,center_ux,0.8314552903175354 +illusion_0.75L,target,41,8.2,velocity,center_uy,0.2319667637348175 +illusion_0.75L,target,41,8.2,velocity,lower_ux,0.8378461599349976 +illusion_0.75L,target,41,8.2,velocity,lower_uy,0.09932374209165573 +illusion_0.75L,target,42,8.4,velocity,upper_ux,1.2684844732284546 +illusion_0.75L,target,42,8.4,velocity,upper_uy,0.16021746397018433 +illusion_0.75L,target,42,8.4,velocity,center_ux,0.8454458713531494 +illusion_0.75L,target,42,8.4,velocity,center_uy,0.39943596720695496 +illusion_0.75L,target,42,8.4,velocity,lower_ux,0.8688536882400513 +illusion_0.75L,target,42,8.4,velocity,lower_uy,0.13886693120002747 +illusion_0.75L,target,43,8.6,velocity,upper_ux,1.2014282941818237 +illusion_0.75L,target,43,8.6,velocity,upper_uy,0.2623881995677948 +illusion_0.75L,target,43,8.6,velocity,center_ux,0.8701478838920593 +illusion_0.75L,target,43,8.6,velocity,center_uy,0.49728596210479736 +illusion_0.75L,target,43,8.6,velocity,lower_ux,0.9025251865386963 +illusion_0.75L,target,43,8.6,velocity,lower_uy,0.17261987924575806 +illusion_0.75L,target,44,8.8,velocity,upper_ux,1.1418366432189941 +illusion_0.75L,target,44,8.8,velocity,upper_uy,0.31704798340797424 +illusion_0.75L,target,44,8.8,velocity,center_ux,0.8993913531303406 +illusion_0.75L,target,44,8.8,velocity,center_uy,0.5302852392196655 +illusion_0.75L,target,44,8.8,velocity,lower_ux,0.9369841814041138 +illusion_0.75L,target,44,8.8,velocity,lower_uy,0.202227383852005 +illusion_0.75L,target,45,9.0,velocity,upper_ux,1.0916773080825806 +illusion_0.75L,target,45,9.0,velocity,upper_uy,0.3367311358451843 +illusion_0.75L,target,45,9.0,velocity,center_ux,0.9267725348472595 +illusion_0.75L,target,45,9.0,velocity,center_uy,0.5293636918067932 +illusion_0.75L,target,45,9.0,velocity,lower_ux,0.9718776941299438 +illusion_0.75L,target,45,9.0,velocity,lower_uy,0.22815518081188202 +illusion_0.75L,target,46,9.2,velocity,upper_ux,1.048864483833313 +illusion_0.75L,target,46,9.2,velocity,upper_uy,0.33665353059768677 +illusion_0.75L,target,46,9.2,velocity,center_ux,0.9483327269554138 +illusion_0.75L,target,46,9.2,velocity,center_uy,0.523423433303833 +illusion_0.75L,target,46,9.2,velocity,lower_ux,1.0073144435882568 +illusion_0.75L,target,46,9.2,velocity,lower_uy,0.2508573532104492 +illusion_0.75L,target,47,9.4,velocity,upper_ux,1.010034203529358 +illusion_0.75L,target,47,9.4,velocity,upper_uy,0.3265901207923889 +illusion_0.75L,target,47,9.4,velocity,center_ux,0.9632074236869812 +illusion_0.75L,target,47,9.4,velocity,center_uy,0.5240156054496765 +illusion_0.75L,target,47,9.4,velocity,lower_ux,1.0436694622039795 +illusion_0.75L,target,47,9.4,velocity,lower_uy,0.2709205746650696 +illusion_0.75L,target,48,9.6,velocity,upper_ux,0.9723655581474304 +illusion_0.75L,target,48,9.6,velocity,upper_uy,0.3097136616706848 +illusion_0.75L,target,48,9.6,velocity,center_ux,0.971591055393219 +illusion_0.75L,target,48,9.6,velocity,center_uy,0.5321347713470459 +illusion_0.75L,target,48,9.6,velocity,lower_ux,1.081567406654358 +illusion_0.75L,target,48,9.6,velocity,lower_uy,0.2888103723526001 +illusion_0.75L,target,49,9.8,velocity,upper_ux,0.9343774914741516 +illusion_0.75L,target,49,9.8,velocity,upper_uy,0.2850179672241211 +illusion_0.75L,target,49,9.8,velocity,center_ux,0.9729876518249512 +illusion_0.75L,target,49,9.8,velocity,center_uy,0.544973611831665 +illusion_0.75L,target,49,9.8,velocity,lower_ux,1.121927261352539 +illusion_0.75L,target,49,9.8,velocity,lower_uy,0.30469125509262085 +illusion_0.75L,target,50,10.0,velocity,upper_ux,0.8962311744689941 +illusion_0.75L,target,50,10.0,velocity,upper_uy,0.24999549984931946 +illusion_0.75L,target,50,10.0,velocity,center_ux,0.9656925201416016 +illusion_0.75L,target,50,10.0,velocity,center_uy,0.5552481412887573 +illusion_0.75L,target,50,10.0,velocity,lower_ux,1.1660829782485962 +illusion_0.75L,target,50,10.0,velocity,lower_uy,0.31825265288352966 +illusion_0.75L,target,51,10.2,velocity,upper_ux,0.8598502278327942 +illusion_0.75L,target,51,10.2,velocity,upper_uy,0.20271484553813934 +illusion_0.75L,target,51,10.2,velocity,center_ux,0.9473516941070557 +illusion_0.75L,target,51,10.2,velocity,center_uy,0.547244668006897 +illusion_0.75L,target,51,10.2,velocity,lower_ux,1.2155776023864746 +illusion_0.75L,target,51,10.2,velocity,lower_uy,0.328218549489975 +illusion_0.75L,target,52,10.4,velocity,upper_ux,0.8289118409156799 +illusion_0.75L,target,52,10.4,velocity,upper_uy,0.1436011642217636 +illusion_0.75L,target,52,10.4,velocity,center_ux,0.9175871014595032 +illusion_0.75L,target,52,10.4,velocity,center_uy,0.49634066224098206 +illusion_0.75L,target,52,10.4,velocity,lower_ux,1.2709591388702393 +illusion_0.75L,target,52,10.4,velocity,lower_uy,0.3306393325328827 +illusion_0.75L,target,53,10.6,velocity,upper_ux,0.8084098696708679 +illusion_0.75L,target,53,10.6,velocity,upper_uy,0.07676681876182556 +illusion_0.75L,target,53,10.6,velocity,center_ux,0.8817495703697205 +illusion_0.75L,target,53,10.6,velocity,center_uy,0.3805442154407501 +illusion_0.75L,target,53,10.6,velocity,lower_ux,1.3277109861373901 +illusion_0.75L,target,53,10.6,velocity,lower_uy,0.31426680088043213 +illusion_0.75L,target,54,10.8,velocity,upper_ux,0.8029760122299194 +illusion_0.75L,target,54,10.8,velocity,upper_uy,0.00968919973820448 +illusion_0.75L,target,54,10.8,velocity,center_ux,0.8503406643867493 +illusion_0.75L,target,54,10.8,velocity,center_uy,0.20001177489757538 +illusion_0.75L,target,54,10.8,velocity,lower_ux,1.3696789741516113 +illusion_0.75L,target,54,10.8,velocity,lower_uy,0.2567690908908844 +illusion_0.75L,target,55,11.0,velocity,upper_ux,0.8140155673027039 +illusion_0.75L,target,55,11.0,velocity,upper_uy,-0.04995596781373024 +illusion_0.75L,target,55,11.0,velocity,center_ux,0.8325778245925903 +illusion_0.75L,target,55,11.0,velocity,center_uy,-0.01735605299472809 +illusion_0.75L,target,55,11.0,velocity,lower_ux,1.3737435340881348 +illusion_0.75L,target,55,11.0,velocity,lower_uy,0.1407392919063568 +illusion_0.75L,target,56,11.2,velocity,upper_ux,0.8381503820419312 +illusion_0.75L,target,56,11.2,velocity,upper_uy,-0.09873288869857788 +illusion_0.75L,target,56,11.2,velocity,center_ux,0.8317304849624634 +illusion_0.75L,target,56,11.2,velocity,center_uy,-0.23000797629356384 +illusion_0.75L,target,56,11.2,velocity,lower_ux,1.3341752290725708 +illusion_0.75L,target,56,11.2,velocity,lower_uy,-0.01419429574161768 +illusion_0.75L,target,57,11.4,velocity,upper_ux,0.8693610429763794 +illusion_0.75L,target,57,11.4,velocity,upper_uy,-0.13840734958648682 +illusion_0.75L,target,57,11.4,velocity,center_ux,0.8459092974662781 +illusion_0.75L,target,57,11.4,velocity,center_uy,-0.3982885777950287 +illusion_0.75L,target,57,11.4,velocity,lower_ux,1.2701537609100342 +illusion_0.75L,target,57,11.4,velocity,lower_uy,-0.1598111242055893 +illusion_0.75L,target,58,11.6,velocity,upper_ux,0.9029884338378906 +illusion_0.75L,target,58,11.6,velocity,upper_uy,-0.17224647104740143 +illusion_0.75L,target,58,11.6,velocity,center_ux,0.8705545663833618 +illusion_0.75L,target,58,11.6,velocity,center_uy,-0.497012734413147 +illusion_0.75L,target,58,11.6,velocity,lower_ux,1.2030363082885742 +illusion_0.75L,target,58,11.6,velocity,lower_uy,-0.262330561876297 +illusion_0.75L,target,59,11.8,velocity,upper_ux,0.9371801614761353 +illusion_0.75L,target,59,11.8,velocity,upper_uy,-0.2019149363040924 +illusion_0.75L,target,59,11.8,velocity,center_ux,0.8995625376701355 +illusion_0.75L,target,59,11.8,velocity,center_uy,-0.5305614471435547 +illusion_0.75L,target,59,11.8,velocity,lower_ux,1.14308500289917 +illusion_0.75L,target,59,11.8,velocity,lower_uy,-0.31721386313438416 +illusion_0.75L,target,60,12.0,velocity,upper_ux,0.9716480374336243 +illusion_0.75L,target,60,12.0,velocity,upper_uy,-0.2278820276260376 +illusion_0.75L,target,60,12.0,velocity,center_ux,0.9265906810760498 +illusion_0.75L,target,60,12.0,velocity,center_uy,-0.5298000574111938 +illusion_0.75L,target,60,12.0,velocity,lower_ux,1.0923937559127808 +illusion_0.75L,target,60,12.0,velocity,lower_uy,-0.3370044231414795 +illusion_0.75L,target,61,12.2,velocity,upper_ux,1.0066158771514893 +illusion_0.75L,target,61,12.2,velocity,upper_uy,-0.25060194730758667 +illusion_0.75L,target,61,12.2,velocity,center_ux,0.9477738738059998 +illusion_0.75L,target,61,12.2,velocity,center_uy,-0.5238286852836609 +illusion_0.75L,target,61,12.2,velocity,lower_ux,1.0490318536758423 +illusion_0.75L,target,61,12.2,velocity,lower_uy,-0.33697450160980225 +illusion_0.75L,target,62,12.4,velocity,upper_ux,1.0425825119018555 +illusion_0.75L,target,62,12.4,velocity,upper_uy,-0.270663321018219 +illusion_0.75L,target,62,12.4,velocity,center_ux,0.9623637199401855 +illusion_0.75L,target,62,12.4,velocity,center_uy,-0.52434903383255 +illusion_0.75L,target,62,12.4,velocity,lower_ux,1.0097709894180298 +illusion_0.75L,target,62,12.4,velocity,lower_uy,-0.3269437551498413 +illusion_0.75L,target,63,12.6,velocity,upper_ux,1.080284833908081 +illusion_0.75L,target,63,12.6,velocity,upper_uy,-0.2885352075099945 +illusion_0.75L,target,63,12.6,velocity,center_ux,0.9706786870956421 +illusion_0.75L,target,63,12.6,velocity,center_uy,-0.5323935151100159 +illusion_0.75L,target,63,12.6,velocity,lower_ux,0.9719037413597107 +illusion_0.75L,target,63,12.6,velocity,lower_uy,-0.3101081848144531 +illusion_0.75L,target,64,12.8,velocity,upper_ux,1.1207494735717773 +illusion_0.75L,target,64,12.8,velocity,upper_uy,-0.3043886423110962 +illusion_0.75L,target,64,12.8,velocity,center_ux,0.9723392724990845 +illusion_0.75L,target,64,12.8,velocity,center_uy,-0.5451771020889282 +illusion_0.75L,target,64,12.8,velocity,lower_ux,0.9340382218360901 +illusion_0.75L,target,64,12.8,velocity,lower_uy,-0.28547152876853943 +illusion_0.75L,target,65,13.0,velocity,upper_ux,1.1653062105178833 +illusion_0.75L,target,65,13.0,velocity,upper_uy,-0.31792277097702026 +illusion_0.75L,target,65,13.0,velocity,center_ux,0.9656414985656738 +illusion_0.75L,target,65,13.0,velocity,center_uy,-0.555474042892456 +illusion_0.75L,target,65,13.0,velocity,lower_ux,0.8963042497634888 +illusion_0.75L,target,65,13.0,velocity,lower_uy,-0.2505158483982086 +illusion_0.75L,target,66,13.2,velocity,upper_ux,1.2153232097625732 +illusion_0.75L,target,66,13.2,velocity,upper_uy,-0.3278726637363434 +illusion_0.75L,target,66,13.2,velocity,center_ux,0.9480261206626892 +illusion_0.75L,target,66,13.2,velocity,center_uy,-0.5476346015930176 +illusion_0.75L,target,66,13.2,velocity,lower_ux,0.8604139685630798 +illusion_0.75L,target,66,13.2,velocity,lower_uy,-0.20327579975128174 +illusion_0.75L,target,67,13.4,velocity,upper_ux,1.2711570262908936 +illusion_0.75L,target,67,13.4,velocity,upper_uy,-0.33031097054481506 +illusion_0.75L,target,67,13.4,velocity,center_ux,0.9188591837882996 +illusion_0.75L,target,67,13.4,velocity,center_uy,-0.4969877600669861 +illusion_0.75L,target,67,13.4,velocity,lower_ux,0.8298315405845642 +illusion_0.75L,target,67,13.4,velocity,lower_uy,-0.14413462579250336 +illusion_0.75L,target,68,13.6,velocity,upper_ux,1.3281960487365723 +illusion_0.75L,target,68,13.6,velocity,upper_uy,-0.31404975056648254 +illusion_0.75L,target,68,13.6,velocity,center_ux,0.8833087682723999 +illusion_0.75L,target,68,13.6,velocity,center_uy,-0.3813495635986328 +illusion_0.75L,target,68,13.6,velocity,lower_ux,0.8094319105148315 +illusion_0.75L,target,68,13.6,velocity,lower_uy,-0.07718747854232788 +illusion_0.75L,target,69,13.8,velocity,upper_ux,1.3702714443206787 +illusion_0.75L,target,69,13.8,velocity,upper_uy,-0.25681746006011963 +illusion_0.75L,target,69,13.8,velocity,center_ux,0.8518346548080444 +illusion_0.75L,target,69,13.8,velocity,center_uy,-0.20073460042476654 +illusion_0.75L,target,69,13.8,velocity,lower_ux,0.8038299083709717 +illusion_0.75L,target,69,13.8,velocity,lower_uy,-0.00994913000613451 +illusion_0.75L,target,70,14.0,velocity,upper_ux,1.3742610216140747 +illusion_0.75L,target,70,14.0,velocity,upper_uy,-0.1411363184452057 +illusion_0.75L,target,70,14.0,velocity,center_ux,0.8337566256523132 +illusion_0.75L,target,70,14.0,velocity,center_uy,0.016861388459801674 +illusion_0.75L,target,70,14.0,velocity,lower_ux,0.8145160675048828 +illusion_0.75L,target,70,14.0,velocity,lower_uy,0.04984002187848091 +illusion_0.75L,target,71,14.2,velocity,upper_ux,1.3343727588653564 +illusion_0.75L,target,71,14.2,velocity,upper_uy,0.013541639782488346 +illusion_0.75L,target,71,14.2,velocity,center_ux,0.8324355483055115 +illusion_0.75L,target,71,14.2,velocity,center_uy,0.22970086336135864 +illusion_0.75L,target,71,14.2,velocity,lower_ux,0.8381847143173218 +illusion_0.75L,target,71,14.2,velocity,lower_uy,0.09870205074548721 +illusion_0.75L,target,72,14.4,velocity,upper_ux,1.2698713541030884 +illusion_0.75L,target,72,14.4,velocity,upper_uy,0.1590554565191269 +illusion_0.75L,target,72,14.4,velocity,center_ux,0.8460870385169983 +illusion_0.75L,target,72,14.4,velocity,center_uy,0.39803558588027954 +illusion_0.75L,target,72,14.4,velocity,lower_ux,0.8689061999320984 +illusion_0.75L,target,72,14.4,velocity,lower_uy,0.13840195536613464 +illusion_0.75L,target,73,14.6,velocity,upper_ux,1.2023283243179321 +illusion_0.75L,target,73,14.6,velocity,upper_uy,0.26158636808395386 +illusion_0.75L,target,73,14.6,velocity,center_ux,0.8702656030654907 +illusion_0.75L,target,73,14.6,velocity,center_uy,0.49674132466316223 +illusion_0.75L,target,73,14.6,velocity,lower_ux,0.9021252393722534 +illusion_0.75L,target,73,14.6,velocity,lower_uy,0.17222630977630615 +illusion_0.75L,target,74,14.8,velocity,upper_ux,1.1421732902526855 +illusion_0.75L,target,74,14.8,velocity,upper_uy,0.3165571689605713 +illusion_0.75L,target,74,14.8,velocity,center_ux,0.8989870548248291 +illusion_0.75L,target,74,14.8,velocity,center_uy,0.5302852392196655 +illusion_0.75L,target,74,14.8,velocity,lower_ux,0.93609219789505 +illusion_0.75L,target,74,14.8,velocity,lower_uy,0.20186355710029602 +illusion_0.75L,target,75,15.0,velocity,upper_ux,1.0916049480438232 +illusion_0.75L,target,75,15.0,velocity,upper_uy,0.3364681303501129 +illusion_0.75L,target,75,15.0,velocity,center_ux,0.9260444045066833 +illusion_0.75L,target,75,15.0,velocity,center_uy,0.5295112133026123 +illusion_0.75L,target,75,15.0,velocity,lower_ux,0.9706274271011353 +illusion_0.75L,target,75,15.0,velocity,lower_uy,0.22780030965805054 +illusion_0.75L,target,76,15.2,velocity,upper_ux,1.0486809015274048 +illusion_0.75L,target,76,15.2,velocity,upper_uy,0.33654889464378357 +illusion_0.75L,target,76,15.2,velocity,center_ux,0.9475975632667542 +illusion_0.75L,target,76,15.2,velocity,center_uy,0.523484468460083 +illusion_0.75L,target,76,15.2,velocity,lower_ux,1.0059705972671509 +illusion_0.75L,target,76,15.2,velocity,lower_uy,0.25050216913223267 +illusion_0.75L,target,77,15.4,velocity,upper_ux,1.00999116897583 +illusion_0.75L,target,77,15.4,velocity,upper_uy,0.32660359144210815 +illusion_0.75L,target,77,15.4,velocity,center_ux,0.9627209305763245 +illusion_0.75L,target,77,15.4,velocity,center_uy,0.5239301323890686 +illusion_0.75L,target,77,15.4,velocity,lower_ux,1.042455792427063 +illusion_0.75L,target,77,15.4,velocity,lower_uy,0.2705622911453247 +illusion_0.75L,target,78,15.6,velocity,upper_ux,0.9726118445396423 +illusion_0.75L,target,78,15.6,velocity,upper_uy,0.30983391404151917 +illusion_0.75L,target,78,15.6,velocity,center_ux,0.9715152978897095 +illusion_0.75L,target,78,15.6,velocity,center_uy,0.531913161277771 +illusion_0.75L,target,78,15.6,velocity,lower_ux,1.0806108713150024 +illusion_0.75L,target,78,15.6,velocity,lower_uy,0.2884484529495239 +illusion_0.75L,target,79,15.8,velocity,upper_ux,0.9350032210350037 +illusion_0.75L,target,79,15.8,velocity,upper_uy,0.2852485179901123 +illusion_0.75L,target,79,15.8,velocity,center_ux,0.973452091217041 +illusion_0.75L,target,79,15.8,velocity,center_uy,0.5446736812591553 +illusion_0.75L,target,79,15.8,velocity,lower_ux,1.1213122606277466 +illusion_0.75L,target,79,15.8,velocity,lower_uy,0.30432865023612976 +illusion_0.75L,target,80,16.0,velocity,upper_ux,0.8972322344779968 +illusion_0.75L,target,80,16.0,velocity,upper_uy,0.25033435225486755 +illusion_0.75L,target,80,16.0,velocity,center_ux,0.9667560458183289 +illusion_0.75L,target,80,16.0,velocity,center_uy,0.5550236701965332 +illusion_0.75L,target,80,16.0,velocity,lower_ux,1.1658111810684204 +illusion_0.75L,target,80,16.0,velocity,lower_uy,0.31790149211883545 +illusion_0.75L,target,81,16.2,velocity,upper_ux,0.861067533493042 +illusion_0.75L,target,81,16.2,velocity,upper_uy,0.2031375914812088 +illusion_0.75L,target,81,16.2,velocity,center_ux,0.9489105939865112 +illusion_0.75L,target,81,16.2,velocity,center_uy,0.5473712682723999 +illusion_0.75L,target,81,16.2,velocity,lower_ux,1.2155210971832275 +illusion_0.75L,target,81,16.2,velocity,lower_uy,0.3279148042201996 +illusion_0.75L,target,82,16.4,velocity,upper_ux,0.8300634622573853 +illusion_0.75L,target,82,16.4,velocity,upper_uy,0.14406195282936096 +illusion_0.75L,target,82,16.4,velocity,center_ux,0.9193313717842102 +illusion_0.75L,target,82,16.4,velocity,center_uy,0.49710801243782043 +illusion_0.75L,target,82,16.4,velocity,lower_ux,1.2708832025527954 +illusion_0.75L,target,82,16.4,velocity,lower_uy,0.3304797112941742 +illusion_0.75L,target,83,16.6,velocity,upper_ux,0.8091959357261658 +illusion_0.75L,target,83,16.6,velocity,upper_uy,0.07721469551324844 +illusion_0.75L,target,83,16.6,velocity,center_ux,0.8832470178604126 +illusion_0.75L,target,83,16.6,velocity,center_uy,0.38204026222229004 +illusion_0.75L,target,83,16.6,velocity,lower_ux,1.3274595737457275 +illusion_0.75L,target,83,16.6,velocity,lower_uy,0.31450679898262024 +illusion_0.75L,target,84,16.8,velocity,upper_ux,0.803181529045105 +illusion_0.75L,target,84,16.8,velocity,upper_uy,0.010097110643982887 +illusion_0.75L,target,84,16.8,velocity,center_ux,0.8512169122695923 +illusion_0.75L,target,84,16.8,velocity,center_uy,0.2020431011915207 +illusion_0.75L,target,84,16.8,velocity,lower_ux,1.3693313598632812 +illusion_0.75L,target,84,16.8,velocity,lower_uy,0.2578171193599701 +illusion_0.75L,target,85,17.0,velocity,upper_ux,0.8136008381843567 +illusion_0.75L,target,85,17.0,velocity,upper_uy,-0.04959312081336975 +illusion_0.75L,target,85,17.0,velocity,center_ux,0.8326953649520874 +illusion_0.75L,target,85,17.0,velocity,center_uy,-0.01511454675346613 +illusion_0.75L,target,85,17.0,velocity,lower_ux,1.373500108718872 +illusion_0.75L,target,85,17.0,velocity,lower_uy,0.1427334100008011 +illusion_0.75L,target,86,17.2,velocity,upper_ux,0.8372654914855957 +illusion_0.75L,target,86,17.2,velocity,upper_uy,-0.09840502589941025 +illusion_0.75L,target,86,17.2,velocity,center_ux,0.8312081694602966 +illusion_0.75L,target,86,17.2,velocity,center_uy,-0.22789402306079865 +illusion_0.75L,target,86,17.2,velocity,lower_ux,1.3340344429016113 +illusion_0.75L,target,86,17.2,velocity,lower_uy,-0.011778093874454498 +illusion_0.75L,target,87,17.4,velocity,upper_ux,0.8682989478111267 +illusion_0.75L,target,87,17.4,velocity,upper_uy,-0.13810227811336517 +illusion_0.75L,target,87,17.4,velocity,center_ux,0.8450496792793274 +illusion_0.75L,target,87,17.4,velocity,center_uy,-0.39664027094841003 +illusion_0.75L,target,87,17.4,velocity,lower_ux,1.2700316905975342 +illusion_0.75L,target,87,17.4,velocity,lower_uy,-0.1577092707157135 +illusion_0.75L,target,88,17.6,velocity,upper_ux,0.9020116329193115 +illusion_0.75L,target,88,17.6,velocity,upper_uy,-0.17195932567119598 +illusion_0.75L,target,88,17.6,velocity,center_ux,0.8696645498275757 +illusion_0.75L,target,88,17.6,velocity,center_uy,-0.49603912234306335 +illusion_0.75L,target,88,17.6,velocity,lower_ux,1.2029600143432617 +illusion_0.75L,target,88,17.6,velocity,lower_uy,-0.26091355085372925 +illusion_0.75L,target,89,17.8,velocity,upper_ux,0.9364480376243591 +illusion_0.75L,target,89,17.8,velocity,upper_uy,-0.20165382325649261 +illusion_0.75L,target,89,17.8,velocity,center_ux,0.8988814353942871 +illusion_0.75L,target,89,17.8,velocity,center_uy,-0.5301324725151062 +illusion_0.75L,target,89,17.8,velocity,lower_ux,1.143155574798584 +illusion_0.75L,target,89,17.8,velocity,lower_uy,-0.316449373960495 +illusion_0.75L,target,90,18.0,velocity,upper_ux,0.9712743163108826 +illusion_0.75L,target,90,18.0,velocity,upper_uy,-0.22765757143497467 +illusion_0.75L,target,90,18.0,velocity,center_ux,0.9263041019439697 +illusion_0.75L,target,90,18.0,velocity,center_uy,-0.5295688509941101 +illusion_0.75L,target,90,18.0,velocity,lower_ux,1.09274423122406 +illusion_0.75L,target,90,18.0,velocity,lower_uy,-0.3366701602935791 +illusion_0.75L,target,91,18.2,velocity,upper_ux,1.0066403150558472 +illusion_0.75L,target,91,18.2,velocity,upper_uy,-0.25042256712913513 +illusion_0.75L,target,91,18.2,velocity,center_ux,0.9479506015777588 +illusion_0.75L,target,91,18.2,velocity,center_uy,-0.5235661864280701 +illusion_0.75L,target,91,18.2,velocity,lower_ux,1.0497465133666992 +illusion_0.75L,target,91,18.2,velocity,lower_uy,-0.33685848116874695 +illusion_0.75L,target,92,18.4,velocity,upper_ux,1.0429086685180664 +illusion_0.75L,target,92,18.4,velocity,upper_uy,-0.2705364525318146 +illusion_0.75L,target,92,18.4,velocity,center_ux,0.9628998637199402 +illusion_0.75L,target,92,18.4,velocity,center_uy,-0.5240047574043274 +illusion_0.75L,target,92,18.4,velocity,lower_ux,1.0107933282852173 +illusion_0.75L,target,92,18.4,velocity,lower_uy,-0.32693755626678467 +illusion_0.75L,target,93,18.6,velocity,upper_ux,1.0806775093078613 +illusion_0.75L,target,93,18.6,velocity,upper_uy,-0.28846612572669983 +illusion_0.75L,target,93,18.6,velocity,center_ux,0.9713284969329834 +illusion_0.75L,target,93,18.6,velocity,center_uy,-0.5319980382919312 +illusion_0.75L,target,93,18.6,velocity,lower_ux,0.9730238318443298 +illusion_0.75L,target,93,18.6,velocity,lower_uy,-0.310194194316864 +illusion_0.75L,target,94,18.8,velocity,upper_ux,1.1209182739257812 +illusion_0.75L,target,94,18.8,velocity,upper_uy,-0.30438363552093506 +illusion_0.75L,target,94,18.8,velocity,center_ux,0.9728246331214905 +illusion_0.75L,target,94,18.8,velocity,center_uy,-0.5447938442230225 +illusion_0.75L,target,94,18.8,velocity,lower_ux,0.9349859356880188 +illusion_0.75L,target,94,18.8,velocity,lower_uy,-0.2856766879558563 +illusion_0.75L,target,95,19.0,velocity,upper_ux,1.1650002002716064 +illusion_0.75L,target,95,19.0,velocity,upper_uy,-0.3179910182952881 +illusion_0.75L,target,95,19.0,velocity,center_ux,0.9657545685768127 +illusion_0.75L,target,95,19.0,velocity,center_uy,-0.5552340149879456 +illusion_0.75L,target,95,19.0,velocity,lower_ux,0.8968501091003418 +illusion_0.75L,target,95,19.0,velocity,lower_uy,-0.250885933637619 +illusion_0.75L,target,96,19.2,velocity,upper_ux,1.2144447565078735 +illusion_0.75L,target,96,19.2,velocity,upper_uy,-0.32804471254348755 +illusion_0.75L,target,96,19.2,velocity,center_ux,0.9477275609970093 +illusion_0.75L,target,96,19.2,velocity,center_uy,-0.5478072166442871 +illusion_0.75L,target,96,19.2,velocity,lower_ux,0.8604665398597717 +illusion_0.75L,target,96,19.2,velocity,lower_uy,-0.20385845005512238 +illusion_0.75L,target,97,19.4,velocity,upper_ux,1.269819736480713 +illusion_0.75L,target,97,19.4,velocity,upper_uy,-0.3306778073310852 +illusion_0.75L,target,97,19.4,velocity,center_ux,0.918265163898468 +illusion_0.75L,target,97,19.4,velocity,center_uy,-0.49799850583076477 +illusion_0.75L,target,97,19.4,velocity,lower_ux,0.829456090927124 +illusion_0.75L,target,97,19.4,velocity,lower_uy,-0.144950270652771 +illusion_0.75L,target,98,19.6,velocity,upper_ux,1.326776146888733 +illusion_0.75L,target,98,19.6,velocity,upper_uy,-0.3148428797721863 +illusion_0.75L,target,98,19.6,velocity,center_ux,0.8825830817222595 +illusion_0.75L,target,98,19.6,velocity,center_uy,-0.3835512101650238 +illusion_0.75L,target,98,19.6,velocity,lower_ux,0.8087964653968811 +illusion_0.75L,target,98,19.6,velocity,lower_uy,-0.07818526029586792 +illusion_0.75L,target,99,19.8,velocity,upper_ux,1.3693389892578125 +illusion_0.75L,target,99,19.8,velocity,upper_uy,-0.25836381316185 +illusion_0.75L,target,99,19.8,velocity,center_ux,0.8510673642158508 +illusion_0.75L,target,99,19.8,velocity,center_uy,-0.20403650403022766 +illusion_0.75L,target,99,19.8,velocity,lower_ux,0.8030909895896912 +illusion_0.75L,target,99,19.8,velocity,lower_uy,-0.01099863089621067 +illusion_0.75L,target,100,20.0,velocity,upper_ux,1.3742725849151611 +illusion_0.75L,target,100,20.0,velocity,upper_uy,-0.14341270923614502 +illusion_0.75L,target,100,20.0,velocity,center_ux,0.8329923748970032 +illusion_0.75L,target,100,20.0,velocity,center_uy,0.01306457631289959 +illusion_0.75L,target,100,20.0,velocity,lower_ux,0.8138032555580139 +illusion_0.75L,target,100,20.0,velocity,lower_uy,0.04887707158923149 +illusion_0.75L,target,101,20.2,velocity,upper_ux,1.3353478908538818 +illusion_0.75L,target,101,20.2,velocity,upper_uy,0.011197532527148724 +illusion_0.75L,target,101,20.2,velocity,center_ux,0.8317803144454956 +illusion_0.75L,target,101,20.2,velocity,center_uy,0.226250559091568 +illusion_0.75L,target,101,20.2,velocity,lower_ux,0.8376777768135071 +illusion_0.75L,target,101,20.2,velocity,lower_uy,0.09788186103105545 +illusion_0.75L,target,102,20.4,velocity,upper_ux,1.2715011835098267 +illusion_0.75L,target,102,20.4,velocity,upper_uy,0.15737314522266388 +illusion_0.75L,target,102,20.4,velocity,center_ux,0.8456557989120483 +illusion_0.75L,target,102,20.4,velocity,center_uy,0.3957004249095917 +illusion_0.75L,target,102,20.4,velocity,lower_ux,0.8687477707862854 +illusion_0.75L,target,102,20.4,velocity,lower_uy,0.13770747184753418 +illusion_0.75L,target,103,20.6,velocity,upper_ux,1.2042510509490967 +illusion_0.75L,target,103,20.6,velocity,upper_uy,0.2608024477958679 +illusion_0.75L,target,103,20.6,velocity,center_ux,0.8700915575027466 +illusion_0.75L,target,103,20.6,velocity,center_uy,0.4958156645298004 +illusion_0.75L,target,103,20.6,velocity,lower_ux,0.9022936224937439 +illusion_0.75L,target,103,20.6,velocity,lower_uy,0.17163871228694916 +illusion_0.75L,target,104,20.8,velocity,upper_ux,1.1440399885177612 +illusion_0.75L,target,104,20.8,velocity,upper_uy,0.31648415327072144 +illusion_0.75L,target,104,20.8,velocity,center_ux,0.898979902267456 +illusion_0.75L,target,104,20.8,velocity,center_uy,0.5303552150726318 +illusion_0.75L,target,104,20.8,velocity,lower_ux,0.936389684677124 +illusion_0.75L,target,104,20.8,velocity,lower_uy,0.20137760043144226 +illusion_0.75L,target,105,21.0,velocity,upper_ux,1.0931259393692017 +illusion_0.75L,target,105,21.0,velocity,upper_uy,0.3367869555950165 +illusion_0.75L,target,105,21.0,velocity,center_ux,0.9260188341140747 +illusion_0.75L,target,105,21.0,velocity,center_uy,0.5299175381660461 +illusion_0.75L,target,105,21.0,velocity,lower_ux,0.9707841277122498 +illusion_0.75L,target,105,21.0,velocity,lower_uy,0.22740481793880463 +illusion_0.75L,target,106,21.2,velocity,upper_ux,1.0496705770492554 +illusion_0.75L,target,106,21.2,velocity,upper_uy,0.33702677488327026 +illusion_0.75L,target,106,21.2,velocity,center_ux,0.9473321437835693 +illusion_0.75L,target,106,21.2,velocity,center_uy,0.5238715410232544 +illusion_0.75L,target,106,21.2,velocity,lower_ux,1.0057445764541626 +illusion_0.75L,target,106,21.2,velocity,lower_uy,0.2501731812953949 +illusion_0.75L,target,107,21.4,velocity,upper_ux,1.0104237794876099 +illusion_0.75L,target,107,21.4,velocity,upper_uy,0.3271489441394806 +illusion_0.75L,target,107,21.4,velocity,center_ux,0.9621046185493469 +illusion_0.75L,target,107,21.4,velocity,center_uy,0.5242250561714172 +illusion_0.75L,target,107,21.4,velocity,lower_ux,1.041739583015442 +illusion_0.75L,target,107,21.4,velocity,lower_uy,0.27027520537376404 +illusion_0.75L,target,108,21.6,velocity,upper_ux,0.9726325273513794 +illusion_0.75L,target,108,21.6,velocity,upper_uy,0.31045323610305786 +illusion_0.75L,target,108,21.6,velocity,center_ux,0.9706282019615173 +illusion_0.75L,target,108,21.6,velocity,center_uy,0.5321279764175415 +illusion_0.75L,target,108,21.6,velocity,lower_ux,1.0794801712036133 +illusion_0.75L,target,108,21.6,velocity,lower_uy,0.28818249702453613 +illusion_0.75L,target,109,21.8,velocity,upper_ux,0.9348800778388977 +illusion_0.75L,target,109,21.8,velocity,upper_uy,0.28599217534065247 +illusion_0.75L,target,109,21.8,velocity,center_ux,0.9725484251976013 +illusion_0.75L,target,109,21.8,velocity,center_uy,0.5448601841926575 +illusion_0.75L,target,109,21.8,velocity,lower_ux,1.1199883222579956 +illusion_0.75L,target,109,21.8,velocity,lower_uy,0.30407437682151794 +illusion_0.75L,target,110,22.0,velocity,upper_ux,0.8972001671791077 +illusion_0.75L,target,110,22.0,velocity,upper_uy,0.25125372409820557 +illusion_0.75L,target,110,22.0,velocity,center_ux,0.9661190509796143 +illusion_0.75L,target,110,22.0,velocity,center_uy,0.555320143699646 +illusion_0.75L,target,110,22.0,velocity,lower_ux,1.164526104927063 +illusion_0.75L,target,110,22.0,velocity,lower_uy,0.31766051054000854 +illusion_0.75L,target,111,22.2,velocity,upper_ux,0.8612346053123474 +illusion_0.75L,target,111,22.2,velocity,upper_uy,0.2042466402053833 +illusion_0.75L,target,111,22.2,velocity,center_ux,0.9487335085868835 +illusion_0.75L,target,111,22.2,velocity,center_uy,0.5480508208274841 +illusion_0.75L,target,111,22.2,velocity,lower_ux,1.214419960975647 +illusion_0.75L,target,111,22.2,velocity,lower_uy,0.32770535349845886 +illusion_0.75L,target,112,22.4,velocity,upper_ux,0.8304486870765686 +illusion_0.75L,target,112,22.4,velocity,upper_uy,0.14530019462108612 +illusion_0.75L,target,112,22.4,velocity,center_ux,0.9197076559066772 +illusion_0.75L,target,112,22.4,velocity,center_uy,0.4984915256500244 +illusion_0.75L,target,112,22.4,velocity,lower_ux,1.2700963020324707 +illusion_0.75L,target,112,22.4,velocity,lower_uy,0.33036890625953674 +illusion_0.75L,target,113,22.6,velocity,upper_ux,0.8097500801086426 +illusion_0.75L,target,113,22.6,velocity,upper_uy,0.07843952625989914 +illusion_0.75L,target,113,22.6,velocity,center_ux,0.8841200470924377 +illusion_0.75L,target,113,22.6,velocity,center_uy,0.3842168152332306 +illusion_0.75L,target,113,22.6,velocity,lower_ux,1.3271565437316895 +illusion_0.75L,target,113,22.6,velocity,lower_uy,0.31467270851135254 +illusion_0.75L,target,114,22.8,velocity,upper_ux,0.8037842512130737 +illusion_0.75L,target,114,22.8,velocity,upper_uy,0.011138278059661388 +illusion_0.75L,target,114,22.8,velocity,center_ux,0.8523838520050049 +illusion_0.75L,target,114,22.8,velocity,center_uy,0.20468690991401672 +illusion_0.75L,target,114,22.8,velocity,lower_ux,1.3696997165679932 +illusion_0.75L,target,114,22.8,velocity,lower_uy,0.2585226893424988 +illusion_0.75L,target,115,23.0,velocity,upper_ux,0.814093828201294 +illusion_0.75L,target,115,23.0,velocity,upper_uy,-0.04882688820362091 +illusion_0.75L,target,115,23.0,velocity,center_ux,0.8338819146156311 +illusion_0.75L,target,115,23.0,velocity,center_uy,-0.012549273669719696 +illusion_0.75L,target,115,23.0,velocity,lower_ux,1.3745155334472656 +illusion_0.75L,target,115,23.0,velocity,lower_uy,0.14400500059127808 +illusion_0.75L,target,116,23.2,velocity,upper_ux,0.8374993205070496 +illusion_0.75L,target,116,23.2,velocity,upper_uy,-0.09787531942129135 +illusion_0.75L,target,116,23.2,velocity,center_ux,0.8321487903594971 +illusion_0.75L,target,116,23.2,velocity,center_uy,-0.225845605134964 +illusion_0.75L,target,116,23.2,velocity,lower_ux,1.3352994918823242 +illusion_0.75L,target,116,23.2,velocity,lower_uy,-0.010311313904821873 +illusion_0.75L,target,117,23.4,velocity,upper_ux,0.8681316375732422 +illusion_0.75L,target,117,23.4,velocity,upper_uy,-0.13770467042922974 +illusion_0.75L,target,117,23.4,velocity,center_ux,0.8455272912979126 +illusion_0.75L,target,117,23.4,velocity,center_uy,-0.3953253924846649 +illusion_0.75L,target,117,23.4,velocity,lower_ux,1.2710442543029785 +illusion_0.75L,target,117,23.4,velocity,lower_uy,-0.15643557906150818 +illusion_0.75L,target,118,23.6,velocity,upper_ux,0.9013713598251343 +illusion_0.75L,target,118,23.6,velocity,upper_uy,-0.17161552608013153 +illusion_0.75L,target,118,23.6,velocity,center_ux,0.8695926666259766 +illusion_0.75L,target,118,23.6,velocity,center_uy,-0.4954482316970825 +illusion_0.75L,target,118,23.6,velocity,lower_ux,1.2034685611724854 +illusion_0.75L,target,118,23.6,velocity,lower_uy,-0.25997352600097656 +illusion_0.75L,target,119,23.8,velocity,upper_ux,0.9354016184806824 +illusion_0.75L,target,119,23.8,velocity,upper_uy,-0.20132757723331451 +illusion_0.75L,target,119,23.8,velocity,center_ux,0.8983613848686218 +illusion_0.75L,target,119,23.8,velocity,center_uy,-0.5300215482711792 +illusion_0.75L,target,119,23.8,velocity,lower_ux,1.1432021856307983 +illusion_0.75L,target,119,23.8,velocity,lower_uy,-0.31582772731781006 +illusion_0.75L,target,120,24.0,velocity,upper_ux,0.9700317978858948 +illusion_0.75L,target,120,24.0,velocity,upper_uy,-0.22733579576015472 +illusion_0.75L,target,120,24.0,velocity,center_ux,0.9256075024604797 +illusion_0.75L,target,120,24.0,velocity,center_uy,-0.5295963287353516 +illusion_0.75L,target,120,24.0,velocity,lower_ux,1.0925607681274414 +illusion_0.75L,target,120,24.0,velocity,lower_uy,-0.3362964987754822 +illusion_0.75L,target,121,24.2,velocity,upper_ux,1.0054402351379395 +illusion_0.75L,target,121,24.2,velocity,upper_uy,-0.2501007616519928 +illusion_0.75L,target,121,24.2,velocity,center_ux,0.9473645687103271 +illusion_0.75L,target,121,24.2,velocity,center_uy,-0.5235126614570618 +illusion_0.75L,target,121,24.2,velocity,lower_ux,1.0495988130569458 +illusion_0.75L,target,121,24.2,velocity,lower_uy,-0.33665716648101807 +illusion_0.75L,target,122,24.4,velocity,upper_ux,1.0419038534164429 +illusion_0.75L,target,122,24.4,velocity,upper_uy,-0.2702147364616394 +illusion_0.75L,target,122,24.4,velocity,center_ux,0.9626126289367676 +illusion_0.75L,target,122,24.4,velocity,center_uy,-0.5238099098205566 +illusion_0.75L,target,122,24.4,velocity,lower_ux,1.0108622312545776 +illusion_0.75L,target,122,24.4,velocity,lower_uy,-0.3268599212169647 +illusion_0.75L,target,123,24.6,velocity,upper_ux,1.079971194267273 +illusion_0.75L,target,123,24.6,velocity,upper_uy,-0.2881479561328888 +illusion_0.75L,target,123,24.6,velocity,center_ux,0.9714736938476562 +illusion_0.75L,target,123,24.6,velocity,center_uy,-0.5316707491874695 +illusion_0.75L,target,123,24.6,velocity,lower_ux,0.9734300971031189 +illusion_0.75L,target,123,24.6,velocity,lower_uy,-0.3102249205112457 +illusion_0.75L,target,124,24.8,velocity,upper_ux,1.1205532550811768 +illusion_0.75L,target,124,24.8,velocity,upper_uy,-0.30407509207725525 +illusion_0.75L,target,124,24.8,velocity,center_ux,0.9734873175621033 +illusion_0.75L,target,124,24.8,velocity,center_uy,-0.5443937182426453 +illusion_0.75L,target,124,24.8,velocity,lower_ux,0.9357770681381226 +illusion_0.75L,target,124,24.8,velocity,lower_uy,-0.285818487405777 +illusion_0.75L,target,125,25.0,velocity,upper_ux,1.1649059057235718 +illusion_0.75L,target,125,25.0,velocity,upper_uy,-0.3177074193954468 +illusion_0.75L,target,125,25.0,velocity,center_ux,0.9669125080108643 +illusion_0.75L,target,125,25.0,velocity,center_uy,-0.5549142360687256 +illusion_0.75L,target,125,25.0,velocity,lower_ux,0.8979443907737732 +illusion_0.75L,target,125,25.0,velocity,lower_uy,-0.25113701820373535 +illusion_0.75L,target,126,25.2,velocity,upper_ux,1.2144179344177246 +illusion_0.75L,target,126,25.2,velocity,upper_uy,-0.32782191038131714 +illusion_0.75L,target,126,25.2,velocity,center_ux,0.9492075443267822 +illusion_0.75L,target,126,25.2,velocity,center_uy,-0.5478427410125732 +illusion_0.75L,target,126,25.2,velocity,lower_ux,0.8616438508033752 +illusion_0.75L,target,126,25.2,velocity,lower_uy,-0.2042020857334137 +illusion_0.75L,target,127,25.4,velocity,upper_ux,1.2696137428283691 +illusion_0.75L,target,127,25.4,velocity,upper_uy,-0.3306155800819397 +illusion_0.75L,target,127,25.4,velocity,center_ux,0.9197547435760498 +illusion_0.75L,target,127,25.4,velocity,center_uy,-0.49870064854621887 +illusion_0.75L,target,127,25.4,velocity,lower_ux,0.8304296135902405 +illusion_0.75L,target,127,25.4,velocity,lower_uy,-0.14535585045814514 +illusion_0.75L,target,128,25.6,velocity,upper_ux,1.326270341873169 +illusion_0.75L,target,128,25.6,velocity,upper_uy,-0.3151971995830536 +illusion_0.75L,target,128,25.6,velocity,center_ux,0.8837010264396667 +illusion_0.75L,target,128,25.6,velocity,center_uy,-0.38506680727005005 +illusion_0.75L,target,128,25.6,velocity,lower_ux,0.8093081712722778 +illusion_0.75L,target,128,25.6,velocity,lower_uy,-0.07862113416194916 +illusion_0.75L,target,129,25.8,velocity,upper_ux,1.3687134981155396 +illusion_0.75L,target,129,25.8,velocity,upper_uy,-0.2595505118370056 +illusion_0.75L,target,129,25.8,velocity,center_ux,0.851533830165863 +illusion_0.75L,target,129,25.8,velocity,center_uy,-0.20622707903385162 +illusion_0.75L,target,129,25.8,velocity,lower_ux,0.8030109405517578 +illusion_0.75L,target,129,25.8,velocity,lower_uy,-0.01143935602158308 +illusion_0.75L,target,130,26.0,velocity,upper_ux,1.373866081237793 +illusion_0.75L,target,130,26.0,velocity,upper_uy,-0.14556896686553955 +illusion_0.75L,target,130,26.0,velocity,center_ux,0.8327648639678955 +illusion_0.75L,target,130,26.0,velocity,center_uy,0.010542702861130238 +illusion_0.75L,target,130,26.0,velocity,lower_ux,0.8131846785545349 +illusion_0.75L,target,130,26.0,velocity,lower_uy,0.04845200851559639 +illusion_0.75L,target,131,26.2,velocity,upper_ux,1.3352564573287964 +illusion_0.75L,target,131,26.2,velocity,upper_uy,0.008641102351248264 +illusion_0.75L,target,131,26.2,velocity,center_ux,0.8310520648956299 +illusion_0.75L,target,131,26.2,velocity,center_uy,0.223835751414299 +illusion_0.75L,target,131,26.2,velocity,lower_ux,0.8367429971694946 +illusion_0.75L,target,131,26.2,velocity,lower_uy,0.0974847674369812 +illusion_0.75L,target,132,26.4,velocity,upper_ux,1.2716010808944702 +illusion_0.75L,target,132,26.4,velocity,upper_uy,0.15521612763404846 +illusion_0.75L,target,132,26.4,velocity,center_ux,0.8447186350822449 +illusion_0.75L,target,132,26.4,velocity,center_uy,0.39384597539901733 +illusion_0.75L,target,132,26.4,velocity,lower_ux,0.8677735924720764 +illusion_0.75L,target,132,26.4,velocity,lower_uy,0.13733872771263123 +illusion_0.75L,target,133,26.6,velocity,upper_ux,1.2044693231582642 +illusion_0.75L,target,133,26.6,velocity,upper_uy,0.2594287395477295 +illusion_0.75L,target,133,26.6,velocity,center_ux,0.8691970705986023 +illusion_0.75L,target,133,26.6,velocity,center_uy,0.49478012323379517 +illusion_0.75L,target,133,26.6,velocity,lower_ux,0.9014778137207031 +illusion_0.75L,target,133,26.6,velocity,lower_uy,0.17129933834075928 +illusion_0.75L,target,134,26.8,velocity,upper_ux,1.144431233406067 +illusion_0.75L,target,134,26.8,velocity,upper_uy,0.31582844257354736 +illusion_0.75L,target,134,26.8,velocity,center_ux,0.8983579277992249 +illusion_0.75L,target,134,26.8,velocity,center_uy,0.5299688577651978 +illusion_0.75L,target,134,26.8,velocity,lower_ux,0.9358665347099304 +illusion_0.75L,target,134,26.8,velocity,lower_uy,0.20107921957969666 +illusion_0.75L,target,135,27.0,velocity,upper_ux,1.0937789678573608 +illusion_0.75L,target,135,27.0,velocity,upper_uy,0.33658671379089355 +illusion_0.75L,target,135,27.0,velocity,center_ux,0.9258237481117249 +illusion_0.75L,target,135,27.0,velocity,center_uy,0.5297724604606628 +illusion_0.75L,target,135,27.0,velocity,lower_ux,0.970630943775177 +illusion_0.75L,target,135,27.0,velocity,lower_uy,0.2271578013896942 +illusion_0.75L,target,136,27.2,velocity,upper_ux,1.0505993366241455 +illusion_0.75L,target,136,27.2,velocity,upper_uy,0.3370433747768402 +illusion_0.75L,target,136,27.2,velocity,center_ux,0.9475555419921875 +illusion_0.75L,target,136,27.2,velocity,center_uy,0.5237076878547668 +illusion_0.75L,target,136,27.2,velocity,lower_ux,1.0059289932250977 +illusion_0.75L,target,136,27.2,velocity,lower_uy,0.24998295307159424 +illusion_0.75L,target,137,27.4,velocity,upper_ux,1.0115077495574951 +illusion_0.75L,target,137,27.4,velocity,upper_uy,0.32726559042930603 +illusion_0.75L,target,137,27.4,velocity,center_ux,0.962563693523407 +illusion_0.75L,target,137,27.4,velocity,center_uy,0.5239901542663574 +illusion_0.75L,target,137,27.4,velocity,lower_ux,1.0420944690704346 +illusion_0.75L,target,137,27.4,velocity,lower_uy,0.2701430022716522 +illusion_0.75L,target,138,27.6,velocity,upper_ux,0.9736559987068176 +illusion_0.75L,target,138,27.6,velocity,upper_uy,0.3106553852558136 +illusion_0.75L,target,138,27.6,velocity,center_ux,0.9710578918457031 +illusion_0.75L,target,138,27.6,velocity,center_uy,0.5318519473075867 +illusion_0.75L,target,138,27.6,velocity,lower_ux,1.0797518491744995 +illusion_0.75L,target,138,27.6,velocity,lower_uy,0.2881111204624176 +illusion_0.75L,target,139,27.8,velocity,upper_ux,0.935614824295044 +illusion_0.75L,target,139,27.8,velocity,upper_uy,0.2863157391548157 +illusion_0.75L,target,139,27.8,velocity,center_ux,0.9727031588554382 +illusion_0.75L,target,139,27.8,velocity,center_uy,0.5445994138717651 +illusion_0.75L,target,139,27.8,velocity,lower_ux,1.1199190616607666 +illusion_0.75L,target,139,27.8,velocity,lower_uy,0.30406445264816284 +illusion_0.75L,target,140,28.0,velocity,upper_ux,0.897510290145874 +illusion_0.75L,target,140,28.0,velocity,upper_uy,0.25175321102142334 +illusion_0.75L,target,140,28.0,velocity,center_ux,0.9658820629119873 +illusion_0.75L,target,140,28.0,velocity,center_uy,0.5551972389221191 +illusion_0.75L,target,140,28.0,velocity,lower_ux,1.1639522314071655 +illusion_0.75L,target,140,28.0,velocity,lower_uy,0.31771764159202576 +illusion_0.75L,target,141,28.2,velocity,upper_ux,0.8611302375793457 +illusion_0.75L,target,141,28.2,velocity,upper_uy,0.2049727886915207 +illusion_0.75L,target,141,28.2,velocity,center_ux,0.9481763243675232 +illusion_0.75L,target,141,28.2,velocity,center_uy,0.5483345985412598 +illusion_0.75L,target,141,28.2,velocity,lower_ux,1.2133502960205078 +illusion_0.75L,target,141,28.2,velocity,lower_uy,0.32785555720329285 +illusion_0.75L,target,142,28.4,velocity,upper_ux,0.8300625681877136 +illusion_0.75L,target,142,28.4,velocity,upper_uy,0.14626482129096985 +illusion_0.75L,target,142,28.4,velocity,center_ux,0.9190289378166199 +illusion_0.75L,target,142,28.4,velocity,center_uy,0.4996070861816406 +illusion_0.75L,target,142,28.4,velocity,lower_ux,1.2687301635742188 +illusion_0.75L,target,142,28.4,velocity,lower_uy,0.3306974172592163 +illusion_0.75L,target,143,28.6,velocity,upper_ux,0.809226393699646 +illusion_0.75L,target,143,28.6,velocity,upper_uy,0.07957026362419128 +illusion_0.75L,target,143,28.6,velocity,center_ux,0.8834810853004456 +illusion_0.75L,target,143,28.6,velocity,center_uy,0.3864991068840027 +illusion_0.75L,target,143,28.6,velocity,lower_ux,1.3258614540100098 +illusion_0.75L,target,143,28.6,velocity,lower_uy,0.31539443135261536 +illusion_0.75L,target,144,28.8,velocity,upper_ux,0.803205132484436 +illusion_0.75L,target,144,28.8,velocity,upper_uy,0.012281734496355057 +illusion_0.75L,target,144,28.8,velocity,center_ux,0.8518081903457642 +illusion_0.75L,target,144,28.8,velocity,center_uy,0.20800632238388062 +illusion_0.75L,target,144,28.8,velocity,lower_ux,1.3689570426940918 +illusion_0.75L,target,144,28.8,velocity,lower_uy,0.2599356472492218 +illusion_0.75L,target,145,29.0,velocity,upper_ux,0.8135682940483093 +illusion_0.75L,target,145,29.0,velocity,upper_uy,-0.04781525209546089 +illusion_0.75L,target,145,29.0,velocity,center_ux,0.8333901166915894 +illusion_0.75L,target,145,29.0,velocity,center_uy,-0.008804626762866974 +illusion_0.75L,target,145,29.0,velocity,lower_ux,1.3747323751449585 +illusion_0.75L,target,145,29.0,velocity,lower_uy,0.14608821272850037 +illusion_0.75L,target,146,29.2,velocity,upper_ux,0.8371843099594116 +illusion_0.75L,target,146,29.2,velocity,upper_uy,-0.0970430001616478 +illusion_0.75L,target,146,29.2,velocity,center_ux,0.831810712814331 +illusion_0.75L,target,146,29.2,velocity,center_uy,-0.22249726951122284 +illusion_0.75L,target,146,29.2,velocity,lower_ux,1.3364648818969727 +illusion_0.75L,target,146,29.2,velocity,lower_uy,-0.00816657580435276 +illusion_0.75L,target,147,29.4,velocity,upper_ux,0.8681145310401917 +illusion_0.75L,target,147,29.4,velocity,upper_uy,-0.13701707124710083 +illusion_0.75L,target,147,29.4,velocity,center_ux,0.8453816175460815 +illusion_0.75L,target,147,29.4,velocity,center_uy,-0.3930903971195221 +illusion_0.75L,target,147,29.4,velocity,lower_ux,1.272801160812378 +illusion_0.75L,target,147,29.4,velocity,lower_uy,-0.15488725900650024 +illusion_0.75L,target,148,29.6,velocity,upper_ux,0.9015604257583618 +illusion_0.75L,target,148,29.6,velocity,upper_uy,-0.171036496758461 +illusion_0.75L,target,148,29.6,velocity,center_ux,0.8695852160453796 +illusion_0.75L,target,148,29.6,velocity,center_uy,-0.49458253383636475 +illusion_0.75L,target,148,29.6,velocity,lower_ux,1.2054026126861572 +illusion_0.75L,target,148,29.6,velocity,lower_uy,-0.25923052430152893 +illusion_0.75L,target,149,29.8,velocity,upper_ux,0.935573935508728 +illusion_0.75L,target,149,29.8,velocity,upper_uy,-0.20084446668624878 +illusion_0.75L,target,149,29.8,velocity,center_ux,0.8983637094497681 +illusion_0.75L,target,149,29.8,velocity,center_uy,-0.530116081237793 +illusion_0.75L,target,149,29.8,velocity,lower_ux,1.1449477672576904 +illusion_0.75L,target,149,29.8,velocity,lower_uy,-0.31572163105010986 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_wide.csv new file mode 100644 index 0000000..3174c25 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_0.75L,target,0,0.0,0.972428560256958,-0.22864657640457153,0.9272081255912781,-0.5291661620140076,1.0905728340148926,-0.33677834272384644 +illusion_0.75L,target,1,0.2,1.0079513788223267,-0.2512833774089813,0.9486978650093079,-0.5232889652252197,1.047960877418518,-0.33643561601638794 +illusion_0.75L,target,2,0.4,1.0443874597549438,-0.27129629254341125,0.9634935855865479,-0.5240337252616882,1.009245753288269,-0.32623401284217834 +illusion_0.75L,target,3,0.6,1.0824006795883179,-0.2891448438167572,0.9718227982521057,-0.5322773456573486,0.9716646671295166,-0.3092268109321594 +illusion_0.75L,target,4,0.8,1.1229161024093628,-0.3049857020378113,0.9731597304344177,-0.5451499223709106,0.9337620735168457,-0.28435009717941284 +illusion_0.75L,target,5,1.0,1.1671923398971558,-0.3184956908226013,0.9656947255134583,-0.5552468299865723,0.8956544399261475,-0.2490893006324768 +illusion_0.75L,target,6,1.2,1.2167537212371826,-0.3283718526363373,0.9470556378364563,-0.5466539263725281,0.8592856526374817,-0.201548770070076 +illusion_0.75L,target,7,1.4,1.272146224975586,-0.3305774927139282,0.9169982075691223,-0.49463924765586853,0.8284265398979187,-0.14222654700279236 +illusion_0.75L,target,8,1.6,1.3286950588226318,-0.3136594891548157,0.8810133337974548,-0.37747707962989807,0.8080916404724121,-0.07531851530075073 +illusion_0.75L,target,9,1.8,1.3700147867202759,-0.25513672828674316,0.8496693968772888,-0.19591554999351501,0.8028934597969055,-0.008350428193807602 +illusion_0.75L,target,10,2.0,1.373154878616333,-0.1380479782819748,0.8321697115898132,0.02170734480023384,0.8142148852348328,0.05105871707201004 +illusion_0.75L,target,11,2.2,1.332930088043213,0.01717189885675907,0.8316653370857239,0.23379237949848175,0.8385917544364929,0.09959950298070908 +illusion_0.75L,target,12,2.4,1.268751621246338,0.16220694780349731,0.8461537957191467,0.40086811780929565,0.8699540495872498,0.139118492603302 +illusion_0.75L,target,13,2.6,1.2017635107040405,0.2638150453567505,0.8710004687309265,0.4981798231601715,0.9036571383476257,0.17286524176597595 +illusion_0.75L,target,14,2.8,1.1420572996139526,0.3179084062576294,0.9001067280769348,0.5307366847991943,0.9379274249076843,0.20246201753616333 +illusion_0.75L,target,15,3.0,1.0916234254837036,0.3371937572956085,0.9271506667137146,0.5296574234962463,0.9724995493888855,0.2283669263124466 +illusion_0.75L,target,16,3.2,1.0484066009521484,0.3368973433971405,0.9482501745223999,0.5237621068954468,1.0075255632400513,0.2510359287261963 +illusion_0.75L,target,17,3.4,1.0091495513916016,0.32671502232551575,0.9626703858375549,0.5244511961936951,1.0434787273406982,0.27105939388275146 +illusion_0.75L,target,18,3.6,0.9712127447128296,0.3097425401210785,0.970777153968811,0.5326407551765442,1.081150770187378,0.288899302482605 +illusion_0.75L,target,19,3.8,0.9332447052001953,0.2849293053150177,0.972182035446167,0.5454770922660828,1.1215815544128418,0.3047185242176056 +illusion_0.75L,target,20,4.0,0.895420253276825,0.24975408613681793,0.9651687145233154,0.5556049942970276,1.1661207675933838,0.31820034980773926 +illusion_0.75L,target,21,4.2,0.8595588207244873,0.20228269696235657,0.9472661018371582,0.54718416929245,1.216211199760437,0.3280545473098755 +illusion_0.75L,target,22,4.4,0.8291653990745544,0.14295679330825806,0.9179372191429138,0.4954488277435303,1.2721785306930542,0.3302682042121887 +illusion_0.75L,target,23,4.6,0.8090806603431702,0.07593511790037155,0.8824365735054016,0.3784646689891815,1.3291993141174316,0.3134384751319885 +illusion_0.75L,target,24,4.8,0.803843080997467,0.008770022541284561,0.8512240648269653,0.19680127501487732,1.3707972764968872,0.25511786341667175 +illusion_0.75L,target,25,5.0,0.814888060092926,-0.05083857476711273,0.8335514068603516,-0.021122310310602188,1.373948097229004,0.13827764987945557 +illusion_0.75L,target,26,5.2,0.8388457298278809,-0.09951182454824448,0.8326671719551086,-0.23348325490951538,1.333431601524353,-0.016747256740927696 +illusion_0.75L,target,27,5.4,0.8697036504745483,-0.13908147811889648,0.8466389179229736,-0.40067920088768005,1.2687489986419678,-0.16165292263031006 +illusion_0.75L,target,28,5.6,0.9029199481010437,-0.17282342910766602,0.8709477186203003,-0.4979989528656006,1.2012606859207153,-0.26319384574890137 +illusion_0.75L,target,29,5.8,0.9368302822113037,-0.20239071547985077,0.8996299505233765,-0.5305495262145996,1.1412221193313599,-0.31730130314826965 +illusion_0.75L,target,30,6.0,0.9712843298912048,-0.2282608151435852,0.9265144467353821,-0.529447078704834,1.0907307863235474,-0.3366656005382538 +illusion_0.75L,target,31,6.2,1.0065319538116455,-0.25090065598487854,0.9478340148925781,-0.5234811305999756,1.047804355621338,-0.33646687865257263 +illusion_0.75L,target,32,6.4,1.0429867506027222,-0.2709074914455414,0.9627863168716431,-0.524074912071228,1.0091079473495483,-0.3263702690601349 +illusion_0.75L,target,33,6.6,1.0812089443206787,-0.2887464761734009,0.9714927077293396,-0.5321820974349976,0.9717581272125244,-0.3094654083251953 +illusion_0.75L,target,34,6.8,1.1220386028289795,-0.30458033084869385,0.9733619093894958,-0.5449807643890381,0.9342023730278015,-0.2847021222114563 +illusion_0.75L,target,35,7.0,1.1666884422302246,-0.3180919587612152,0.9665476083755493,-0.5551546216011047,0.8964942693710327,-0.24955475330352783 +illusion_0.75L,target,36,7.2,1.2165806293487549,-0.32799816131591797,0.9485490918159485,-0.5469091534614563,0.86045241355896,-0.20209667086601257 +illusion_0.75L,target,37,7.4,1.2721322774887085,-0.3303276300430298,0.918871283531189,-0.495512455701828,0.8296827077865601,-0.14279352128505707 +illusion_0.75L,target,38,7.6,1.3286725282669067,-0.3137856423854828,0.8828162550926208,-0.3790040910243988,0.8091151714324951,-0.07583511620759964 +illusion_0.75L,target,39,7.8,1.3699824810028076,-0.2560325562953949,0.8509546518325806,-0.19784478843212128,0.8033998608589172,-0.008775416761636734 +illusion_0.75L,target,40,8.0,1.3731637001037598,-0.13983950018882751,0.8326960802078247,0.019703008234500885,0.8140650391578674,0.05072295665740967 +illusion_0.75L,target,41,8.2,1.3328580856323242,0.014956938102841377,0.8314552903175354,0.2319667637348175,0.8378461599349976,0.09932374209165573 +illusion_0.75L,target,42,8.4,1.2684844732284546,0.16021746397018433,0.8454458713531494,0.39943596720695496,0.8688536882400513,0.13886693120002747 +illusion_0.75L,target,43,8.6,1.2014282941818237,0.2623881995677948,0.8701478838920593,0.49728596210479736,0.9025251865386963,0.17261987924575806 +illusion_0.75L,target,44,8.8,1.1418366432189941,0.31704798340797424,0.8993913531303406,0.5302852392196655,0.9369841814041138,0.202227383852005 +illusion_0.75L,target,45,9.0,1.0916773080825806,0.3367311358451843,0.9267725348472595,0.5293636918067932,0.9718776941299438,0.22815518081188202 +illusion_0.75L,target,46,9.2,1.048864483833313,0.33665353059768677,0.9483327269554138,0.523423433303833,1.0073144435882568,0.2508573532104492 +illusion_0.75L,target,47,9.4,1.010034203529358,0.3265901207923889,0.9632074236869812,0.5240156054496765,1.0436694622039795,0.2709205746650696 +illusion_0.75L,target,48,9.6,0.9723655581474304,0.3097136616706848,0.971591055393219,0.5321347713470459,1.081567406654358,0.2888103723526001 +illusion_0.75L,target,49,9.8,0.9343774914741516,0.2850179672241211,0.9729876518249512,0.544973611831665,1.121927261352539,0.30469125509262085 +illusion_0.75L,target,50,10.0,0.8962311744689941,0.24999549984931946,0.9656925201416016,0.5552481412887573,1.1660829782485962,0.31825265288352966 +illusion_0.75L,target,51,10.2,0.8598502278327942,0.20271484553813934,0.9473516941070557,0.547244668006897,1.2155776023864746,0.328218549489975 +illusion_0.75L,target,52,10.4,0.8289118409156799,0.1436011642217636,0.9175871014595032,0.49634066224098206,1.2709591388702393,0.3306393325328827 +illusion_0.75L,target,53,10.6,0.8084098696708679,0.07676681876182556,0.8817495703697205,0.3805442154407501,1.3277109861373901,0.31426680088043213 +illusion_0.75L,target,54,10.8,0.8029760122299194,0.00968919973820448,0.8503406643867493,0.20001177489757538,1.3696789741516113,0.2567690908908844 +illusion_0.75L,target,55,11.0,0.8140155673027039,-0.04995596781373024,0.8325778245925903,-0.01735605299472809,1.3737435340881348,0.1407392919063568 +illusion_0.75L,target,56,11.2,0.8381503820419312,-0.09873288869857788,0.8317304849624634,-0.23000797629356384,1.3341752290725708,-0.01419429574161768 +illusion_0.75L,target,57,11.4,0.8693610429763794,-0.13840734958648682,0.8459092974662781,-0.3982885777950287,1.2701537609100342,-0.1598111242055893 +illusion_0.75L,target,58,11.6,0.9029884338378906,-0.17224647104740143,0.8705545663833618,-0.497012734413147,1.2030363082885742,-0.262330561876297 +illusion_0.75L,target,59,11.8,0.9371801614761353,-0.2019149363040924,0.8995625376701355,-0.5305614471435547,1.14308500289917,-0.31721386313438416 +illusion_0.75L,target,60,12.0,0.9716480374336243,-0.2278820276260376,0.9265906810760498,-0.5298000574111938,1.0923937559127808,-0.3370044231414795 +illusion_0.75L,target,61,12.2,1.0066158771514893,-0.25060194730758667,0.9477738738059998,-0.5238286852836609,1.0490318536758423,-0.33697450160980225 +illusion_0.75L,target,62,12.4,1.0425825119018555,-0.270663321018219,0.9623637199401855,-0.52434903383255,1.0097709894180298,-0.3269437551498413 +illusion_0.75L,target,63,12.6,1.080284833908081,-0.2885352075099945,0.9706786870956421,-0.5323935151100159,0.9719037413597107,-0.3101081848144531 +illusion_0.75L,target,64,12.8,1.1207494735717773,-0.3043886423110962,0.9723392724990845,-0.5451771020889282,0.9340382218360901,-0.28547152876853943 +illusion_0.75L,target,65,13.0,1.1653062105178833,-0.31792277097702026,0.9656414985656738,-0.555474042892456,0.8963042497634888,-0.2505158483982086 +illusion_0.75L,target,66,13.2,1.2153232097625732,-0.3278726637363434,0.9480261206626892,-0.5476346015930176,0.8604139685630798,-0.20327579975128174 +illusion_0.75L,target,67,13.4,1.2711570262908936,-0.33031097054481506,0.9188591837882996,-0.4969877600669861,0.8298315405845642,-0.14413462579250336 +illusion_0.75L,target,68,13.6,1.3281960487365723,-0.31404975056648254,0.8833087682723999,-0.3813495635986328,0.8094319105148315,-0.07718747854232788 +illusion_0.75L,target,69,13.8,1.3702714443206787,-0.25681746006011963,0.8518346548080444,-0.20073460042476654,0.8038299083709717,-0.00994913000613451 +illusion_0.75L,target,70,14.0,1.3742610216140747,-0.1411363184452057,0.8337566256523132,0.016861388459801674,0.8145160675048828,0.04984002187848091 +illusion_0.75L,target,71,14.2,1.3343727588653564,0.013541639782488346,0.8324355483055115,0.22970086336135864,0.8381847143173218,0.09870205074548721 +illusion_0.75L,target,72,14.4,1.2698713541030884,0.1590554565191269,0.8460870385169983,0.39803558588027954,0.8689061999320984,0.13840195536613464 +illusion_0.75L,target,73,14.6,1.2023283243179321,0.26158636808395386,0.8702656030654907,0.49674132466316223,0.9021252393722534,0.17222630977630615 +illusion_0.75L,target,74,14.8,1.1421732902526855,0.3165571689605713,0.8989870548248291,0.5302852392196655,0.93609219789505,0.20186355710029602 +illusion_0.75L,target,75,15.0,1.0916049480438232,0.3364681303501129,0.9260444045066833,0.5295112133026123,0.9706274271011353,0.22780030965805054 +illusion_0.75L,target,76,15.2,1.0486809015274048,0.33654889464378357,0.9475975632667542,0.523484468460083,1.0059705972671509,0.25050216913223267 +illusion_0.75L,target,77,15.4,1.00999116897583,0.32660359144210815,0.9627209305763245,0.5239301323890686,1.042455792427063,0.2705622911453247 +illusion_0.75L,target,78,15.6,0.9726118445396423,0.30983391404151917,0.9715152978897095,0.531913161277771,1.0806108713150024,0.2884484529495239 +illusion_0.75L,target,79,15.8,0.9350032210350037,0.2852485179901123,0.973452091217041,0.5446736812591553,1.1213122606277466,0.30432865023612976 +illusion_0.75L,target,80,16.0,0.8972322344779968,0.25033435225486755,0.9667560458183289,0.5550236701965332,1.1658111810684204,0.31790149211883545 +illusion_0.75L,target,81,16.2,0.861067533493042,0.2031375914812088,0.9489105939865112,0.5473712682723999,1.2155210971832275,0.3279148042201996 +illusion_0.75L,target,82,16.4,0.8300634622573853,0.14406195282936096,0.9193313717842102,0.49710801243782043,1.2708832025527954,0.3304797112941742 +illusion_0.75L,target,83,16.6,0.8091959357261658,0.07721469551324844,0.8832470178604126,0.38204026222229004,1.3274595737457275,0.31450679898262024 +illusion_0.75L,target,84,16.8,0.803181529045105,0.010097110643982887,0.8512169122695923,0.2020431011915207,1.3693313598632812,0.2578171193599701 +illusion_0.75L,target,85,17.0,0.8136008381843567,-0.04959312081336975,0.8326953649520874,-0.01511454675346613,1.373500108718872,0.1427334100008011 +illusion_0.75L,target,86,17.2,0.8372654914855957,-0.09840502589941025,0.8312081694602966,-0.22789402306079865,1.3340344429016113,-0.011778093874454498 +illusion_0.75L,target,87,17.4,0.8682989478111267,-0.13810227811336517,0.8450496792793274,-0.39664027094841003,1.2700316905975342,-0.1577092707157135 +illusion_0.75L,target,88,17.6,0.9020116329193115,-0.17195932567119598,0.8696645498275757,-0.49603912234306335,1.2029600143432617,-0.26091355085372925 +illusion_0.75L,target,89,17.8,0.9364480376243591,-0.20165382325649261,0.8988814353942871,-0.5301324725151062,1.143155574798584,-0.316449373960495 +illusion_0.75L,target,90,18.0,0.9712743163108826,-0.22765757143497467,0.9263041019439697,-0.5295688509941101,1.09274423122406,-0.3366701602935791 +illusion_0.75L,target,91,18.2,1.0066403150558472,-0.25042256712913513,0.9479506015777588,-0.5235661864280701,1.0497465133666992,-0.33685848116874695 +illusion_0.75L,target,92,18.4,1.0429086685180664,-0.2705364525318146,0.9628998637199402,-0.5240047574043274,1.0107933282852173,-0.32693755626678467 +illusion_0.75L,target,93,18.6,1.0806775093078613,-0.28846612572669983,0.9713284969329834,-0.5319980382919312,0.9730238318443298,-0.310194194316864 +illusion_0.75L,target,94,18.8,1.1209182739257812,-0.30438363552093506,0.9728246331214905,-0.5447938442230225,0.9349859356880188,-0.2856766879558563 +illusion_0.75L,target,95,19.0,1.1650002002716064,-0.3179910182952881,0.9657545685768127,-0.5552340149879456,0.8968501091003418,-0.250885933637619 +illusion_0.75L,target,96,19.2,1.2144447565078735,-0.32804471254348755,0.9477275609970093,-0.5478072166442871,0.8604665398597717,-0.20385845005512238 +illusion_0.75L,target,97,19.4,1.269819736480713,-0.3306778073310852,0.918265163898468,-0.49799850583076477,0.829456090927124,-0.144950270652771 +illusion_0.75L,target,98,19.6,1.326776146888733,-0.3148428797721863,0.8825830817222595,-0.3835512101650238,0.8087964653968811,-0.07818526029586792 +illusion_0.75L,target,99,19.8,1.3693389892578125,-0.25836381316185,0.8510673642158508,-0.20403650403022766,0.8030909895896912,-0.01099863089621067 +illusion_0.75L,target,100,20.0,1.3742725849151611,-0.14341270923614502,0.8329923748970032,0.01306457631289959,0.8138032555580139,0.04887707158923149 +illusion_0.75L,target,101,20.2,1.3353478908538818,0.011197532527148724,0.8317803144454956,0.226250559091568,0.8376777768135071,0.09788186103105545 +illusion_0.75L,target,102,20.4,1.2715011835098267,0.15737314522266388,0.8456557989120483,0.3957004249095917,0.8687477707862854,0.13770747184753418 +illusion_0.75L,target,103,20.6,1.2042510509490967,0.2608024477958679,0.8700915575027466,0.4958156645298004,0.9022936224937439,0.17163871228694916 +illusion_0.75L,target,104,20.8,1.1440399885177612,0.31648415327072144,0.898979902267456,0.5303552150726318,0.936389684677124,0.20137760043144226 +illusion_0.75L,target,105,21.0,1.0931259393692017,0.3367869555950165,0.9260188341140747,0.5299175381660461,0.9707841277122498,0.22740481793880463 +illusion_0.75L,target,106,21.2,1.0496705770492554,0.33702677488327026,0.9473321437835693,0.5238715410232544,1.0057445764541626,0.2501731812953949 +illusion_0.75L,target,107,21.4,1.0104237794876099,0.3271489441394806,0.9621046185493469,0.5242250561714172,1.041739583015442,0.27027520537376404 +illusion_0.75L,target,108,21.6,0.9726325273513794,0.31045323610305786,0.9706282019615173,0.5321279764175415,1.0794801712036133,0.28818249702453613 +illusion_0.75L,target,109,21.8,0.9348800778388977,0.28599217534065247,0.9725484251976013,0.5448601841926575,1.1199883222579956,0.30407437682151794 +illusion_0.75L,target,110,22.0,0.8972001671791077,0.25125372409820557,0.9661190509796143,0.555320143699646,1.164526104927063,0.31766051054000854 +illusion_0.75L,target,111,22.2,0.8612346053123474,0.2042466402053833,0.9487335085868835,0.5480508208274841,1.214419960975647,0.32770535349845886 +illusion_0.75L,target,112,22.4,0.8304486870765686,0.14530019462108612,0.9197076559066772,0.4984915256500244,1.2700963020324707,0.33036890625953674 +illusion_0.75L,target,113,22.6,0.8097500801086426,0.07843952625989914,0.8841200470924377,0.3842168152332306,1.3271565437316895,0.31467270851135254 +illusion_0.75L,target,114,22.8,0.8037842512130737,0.011138278059661388,0.8523838520050049,0.20468690991401672,1.3696997165679932,0.2585226893424988 +illusion_0.75L,target,115,23.0,0.814093828201294,-0.04882688820362091,0.8338819146156311,-0.012549273669719696,1.3745155334472656,0.14400500059127808 +illusion_0.75L,target,116,23.2,0.8374993205070496,-0.09787531942129135,0.8321487903594971,-0.225845605134964,1.3352994918823242,-0.010311313904821873 +illusion_0.75L,target,117,23.4,0.8681316375732422,-0.13770467042922974,0.8455272912979126,-0.3953253924846649,1.2710442543029785,-0.15643557906150818 +illusion_0.75L,target,118,23.6,0.9013713598251343,-0.17161552608013153,0.8695926666259766,-0.4954482316970825,1.2034685611724854,-0.25997352600097656 +illusion_0.75L,target,119,23.8,0.9354016184806824,-0.20132757723331451,0.8983613848686218,-0.5300215482711792,1.1432021856307983,-0.31582772731781006 +illusion_0.75L,target,120,24.0,0.9700317978858948,-0.22733579576015472,0.9256075024604797,-0.5295963287353516,1.0925607681274414,-0.3362964987754822 +illusion_0.75L,target,121,24.2,1.0054402351379395,-0.2501007616519928,0.9473645687103271,-0.5235126614570618,1.0495988130569458,-0.33665716648101807 +illusion_0.75L,target,122,24.4,1.0419038534164429,-0.2702147364616394,0.9626126289367676,-0.5238099098205566,1.0108622312545776,-0.3268599212169647 +illusion_0.75L,target,123,24.6,1.079971194267273,-0.2881479561328888,0.9714736938476562,-0.5316707491874695,0.9734300971031189,-0.3102249205112457 +illusion_0.75L,target,124,24.8,1.1205532550811768,-0.30407509207725525,0.9734873175621033,-0.5443937182426453,0.9357770681381226,-0.285818487405777 +illusion_0.75L,target,125,25.0,1.1649059057235718,-0.3177074193954468,0.9669125080108643,-0.5549142360687256,0.8979443907737732,-0.25113701820373535 +illusion_0.75L,target,126,25.2,1.2144179344177246,-0.32782191038131714,0.9492075443267822,-0.5478427410125732,0.8616438508033752,-0.2042020857334137 +illusion_0.75L,target,127,25.4,1.2696137428283691,-0.3306155800819397,0.9197547435760498,-0.49870064854621887,0.8304296135902405,-0.14535585045814514 +illusion_0.75L,target,128,25.6,1.326270341873169,-0.3151971995830536,0.8837010264396667,-0.38506680727005005,0.8093081712722778,-0.07862113416194916 +illusion_0.75L,target,129,25.8,1.3687134981155396,-0.2595505118370056,0.851533830165863,-0.20622707903385162,0.8030109405517578,-0.01143935602158308 +illusion_0.75L,target,130,26.0,1.373866081237793,-0.14556896686553955,0.8327648639678955,0.010542702861130238,0.8131846785545349,0.04845200851559639 +illusion_0.75L,target,131,26.2,1.3352564573287964,0.008641102351248264,0.8310520648956299,0.223835751414299,0.8367429971694946,0.0974847674369812 +illusion_0.75L,target,132,26.4,1.2716010808944702,0.15521612763404846,0.8447186350822449,0.39384597539901733,0.8677735924720764,0.13733872771263123 +illusion_0.75L,target,133,26.6,1.2044693231582642,0.2594287395477295,0.8691970705986023,0.49478012323379517,0.9014778137207031,0.17129933834075928 +illusion_0.75L,target,134,26.8,1.144431233406067,0.31582844257354736,0.8983579277992249,0.5299688577651978,0.9358665347099304,0.20107921957969666 +illusion_0.75L,target,135,27.0,1.0937789678573608,0.33658671379089355,0.9258237481117249,0.5297724604606628,0.970630943775177,0.2271578013896942 +illusion_0.75L,target,136,27.2,1.0505993366241455,0.3370433747768402,0.9475555419921875,0.5237076878547668,1.0059289932250977,0.24998295307159424 +illusion_0.75L,target,137,27.4,1.0115077495574951,0.32726559042930603,0.962563693523407,0.5239901542663574,1.0420944690704346,0.2701430022716522 +illusion_0.75L,target,138,27.6,0.9736559987068176,0.3106553852558136,0.9710578918457031,0.5318519473075867,1.0797518491744995,0.2881111204624176 +illusion_0.75L,target,139,27.8,0.935614824295044,0.2863157391548157,0.9727031588554382,0.5445994138717651,1.1199190616607666,0.30406445264816284 +illusion_0.75L,target,140,28.0,0.897510290145874,0.25175321102142334,0.9658820629119873,0.5551972389221191,1.1639522314071655,0.31771764159202576 +illusion_0.75L,target,141,28.2,0.8611302375793457,0.2049727886915207,0.9481763243675232,0.5483345985412598,1.2133502960205078,0.32785555720329285 +illusion_0.75L,target,142,28.4,0.8300625681877136,0.14626482129096985,0.9190289378166199,0.4996070861816406,1.2687301635742188,0.3306974172592163 +illusion_0.75L,target,143,28.6,0.809226393699646,0.07957026362419128,0.8834810853004456,0.3864991068840027,1.3258614540100098,0.31539443135261536 +illusion_0.75L,target,144,28.8,0.803205132484436,0.012281734496355057,0.8518081903457642,0.20800632238388062,1.3689570426940918,0.2599356472492218 +illusion_0.75L,target,145,29.0,0.8135682940483093,-0.04781525209546089,0.8333901166915894,-0.008804626762866974,1.3747323751449585,0.14608821272850037 +illusion_0.75L,target,146,29.2,0.8371843099594116,-0.0970430001616478,0.831810712814331,-0.22249726951122284,1.3364648818969727,-0.00816657580435276 +illusion_0.75L,target,147,29.4,0.8681145310401917,-0.13701707124710083,0.8453816175460815,-0.3930903971195221,1.272801160812378,-0.15488725900650024 +illusion_0.75L,target,148,29.6,0.9015604257583618,-0.171036496758461,0.8695852160453796,-0.49458253383636475,1.2054026126861572,-0.25923052430152893 +illusion_0.75L,target,149,29.8,0.935573935508728,-0.20084446668624878,0.8983637094497681,-0.530116081237793,1.1449477672576904,-0.31572163105010986 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..37f48db --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1.5L,ppo,72,28.8,36,0.8258952130951608,7,0.8679720428254869,0.7711962376229672,0.7696535140275955,0.7973545994609594,0.8441662035054631,0.9050286811284928 +illusion_1.5L,ppo,108,43.2,36,0.9074888582453476,-1,0.9565065287881427,0.9168471497897472,0.8864726465609338,0.8719371777907428,0.9686430212524202,0.8445266252900991 +illusion_1.5L,ppo,144,57.6,36,0.9289773744186042,-15,0.9583298795753055,0.9129021288050959,0.917981829908159,0.8713912848745369,0.9648603532049391,0.9483987701435884 +illusion_1.5L,ppo,180,72.0,36,0.934097056064746,-4,0.9456486139032576,0.9502609449425816,0.9263288411829207,0.9163616912232505,0.9406235358781285,0.9253587092583379 +illusion_1.5L,ppo,216,86.4,36,0.9402137274629677,8,0.9742263274060355,0.907664251099858,0.9520516809489992,0.8880788271522356,0.9661684913767709,0.9530927867939075 +illusion_1.5L,ppo,252,100.8,36,0.9297524181418811,-5,0.9426626612742742,0.9342381806733707,0.9475071264637841,0.8653531573298905,0.9390573907229636,0.9496959923870034 +illusion_1.5L,ppo,288,115.2,36,0.9249386985008,4,0.9673429760668013,0.9435936492971249,0.8858491265111499,0.8778834036654897,0.9457137990329001,0.929249236431335 +illusion_1.5L,ppo,324,129.6,36,0.9358989605038746,-10,0.9431649612055885,0.9493599539079393,0.9382365064488517,0.8954591856810212,0.9547521149118742,0.9344210408679727 +illusion_1.5L,ppo,360,144.0,36,0.9467416430125013,3,0.9747453696197934,0.9202148018715283,0.9542396482494142,0.9034929837151948,0.9648110394676527,0.9629460151514245 +illusion_1.5L,ppo,396,158.4,36,0.9348654846177885,-11,0.9411533176898956,0.9513129756734189,0.960816408197085,0.8662401816497246,0.9578454635209508,0.9318245609756559 +illusion_1.5L,ppo,400,160.0,36,0.9267012908606341,-7,0.9403367870383792,0.9316085944624825,0.9431894636816449,0.8604755275365379,0.9461659598681662,0.9384314125765942 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_long.csv new file mode 100644 index 0000000..8f6dc9a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,ppo,0,0.0,velocity,upper_ux,1.099976897239685 +illusion_1.5L,ppo,0,0.0,velocity,upper_uy,-0.31849512457847595 +illusion_1.5L,ppo,0,0.0,velocity,center_ux,0.9535225033760071 +illusion_1.5L,ppo,0,0.0,velocity,center_uy,-0.5483039617538452 +illusion_1.5L,ppo,0,0.0,velocity,lower_ux,0.851777970790863 +illusion_1.5L,ppo,0,0.0,velocity,lower_uy,-0.2916666865348816 +illusion_1.5L,ppo,1,0.4,velocity,upper_ux,1.1750082969665527 +illusion_1.5L,ppo,1,0.4,velocity,upper_uy,-0.3366432189941406 +illusion_1.5L,ppo,1,0.4,velocity,center_ux,0.9536588191986084 +illusion_1.5L,ppo,1,0.4,velocity,center_uy,-0.5511385798454285 +illusion_1.5L,ppo,1,0.4,velocity,lower_ux,0.7902666330337524 +illusion_1.5L,ppo,1,0.4,velocity,lower_uy,-0.213478684425354 +illusion_1.5L,ppo,2,0.8,velocity,upper_ux,1.2608689069747925 +illusion_1.5L,ppo,2,0.8,velocity,upper_uy,-0.34059470891952515 +illusion_1.5L,ppo,2,0.8,velocity,center_ux,0.9155110716819763 +illusion_1.5L,ppo,2,0.8,velocity,center_uy,-0.4565860629081726 +illusion_1.5L,ppo,2,0.8,velocity,lower_ux,0.7467697858810425 +illusion_1.5L,ppo,2,0.8,velocity,lower_uy,-0.10630388557910919 +illusion_1.5L,ppo,3,1.2,velocity,upper_ux,1.3496137857437134 +illusion_1.5L,ppo,3,1.2,velocity,upper_uy,-0.30973508954048157 +illusion_1.5L,ppo,3,1.2,velocity,center_ux,0.8421260118484497 +illusion_1.5L,ppo,3,1.2,velocity,center_uy,-0.202263742685318 +illusion_1.5L,ppo,3,1.2,velocity,lower_ux,0.7471931576728821 +illusion_1.5L,ppo,3,1.2,velocity,lower_uy,0.005089789163321257 +illusion_1.5L,ppo,4,1.6,velocity,upper_ux,1.3892676830291748 +illusion_1.5L,ppo,4,1.6,velocity,upper_uy,-0.18605190515518188 +illusion_1.5L,ppo,4,1.6,velocity,center_ux,0.7779160141944885 +illusion_1.5L,ppo,4,1.6,velocity,center_uy,0.1588158756494522 +illusion_1.5L,ppo,4,1.6,velocity,lower_ux,0.7928940057754517 +illusion_1.5L,ppo,4,1.6,velocity,lower_uy,0.09305249154567719 +illusion_1.5L,ppo,5,2.0,velocity,upper_ux,1.2945294380187988 +illusion_1.5L,ppo,5,2.0,velocity,upper_uy,0.0607953704893589 +illusion_1.5L,ppo,5,2.0,velocity,center_ux,0.7734797596931458 +illusion_1.5L,ppo,5,2.0,velocity,center_uy,0.44464847445487976 +illusion_1.5L,ppo,5,2.0,velocity,lower_ux,0.8526725769042969 +illusion_1.5L,ppo,5,2.0,velocity,lower_uy,0.1638992428779602 +illusion_1.5L,ppo,6,2.4,velocity,upper_ux,1.115586519241333 +illusion_1.5L,ppo,6,2.4,velocity,upper_uy,0.2839464247226715 +illusion_1.5L,ppo,6,2.4,velocity,center_ux,0.8312569260597229 +illusion_1.5L,ppo,6,2.4,velocity,center_uy,0.5227129459381104 +illusion_1.5L,ppo,6,2.4,velocity,lower_ux,0.9138904809951782 +illusion_1.5L,ppo,6,2.4,velocity,lower_uy,0.2230985015630722 +illusion_1.5L,ppo,7,2.8,velocity,upper_ux,0.9778898358345032 +illusion_1.5L,ppo,7,2.8,velocity,upper_uy,0.3554610013961792 +illusion_1.5L,ppo,7,2.8,velocity,center_ux,0.8913658261299133 +illusion_1.5L,ppo,7,2.8,velocity,center_uy,0.5183441638946533 +illusion_1.5L,ppo,7,2.8,velocity,lower_ux,0.9757066369056702 +illusion_1.5L,ppo,7,2.8,velocity,lower_uy,0.2691124379634857 +illusion_1.5L,ppo,8,3.2,velocity,upper_ux,0.8975840210914612 +illusion_1.5L,ppo,8,3.2,velocity,upper_uy,0.3320774435997009 +illusion_1.5L,ppo,8,3.2,velocity,center_ux,0.9298224449157715 +illusion_1.5L,ppo,8,3.2,velocity,center_uy,0.531841516494751 +illusion_1.5L,ppo,8,3.2,velocity,lower_ux,1.0398427248001099 +illusion_1.5L,ppo,8,3.2,velocity,lower_uy,0.30405139923095703 +illusion_1.5L,ppo,9,3.6,velocity,upper_ux,0.8314389586448669 +illusion_1.5L,ppo,9,3.6,velocity,upper_uy,0.27858152985572815 +illusion_1.5L,ppo,9,3.6,velocity,center_ux,0.9491778016090393 +illusion_1.5L,ppo,9,3.6,velocity,center_uy,0.5579574108123779 +illusion_1.5L,ppo,9,3.6,velocity,lower_ux,1.1070752143859863 +illusion_1.5L,ppo,9,3.6,velocity,lower_uy,0.3305412232875824 +illusion_1.5L,ppo,10,4.0,velocity,upper_ux,0.7680780291557312 +illusion_1.5L,ppo,10,4.0,velocity,upper_uy,0.19757263362407684 +illusion_1.5L,ppo,10,4.0,velocity,center_ux,0.9447603821754456 +illusion_1.5L,ppo,10,4.0,velocity,center_uy,0.5575675368309021 +illusion_1.5L,ppo,10,4.0,velocity,lower_ux,1.1825809478759766 +illusion_1.5L,ppo,10,4.0,velocity,lower_uy,0.3473564386367798 +illusion_1.5L,ppo,11,4.4,velocity,upper_ux,0.7240200042724609 +illusion_1.5L,ppo,11,4.4,velocity,upper_uy,0.08899645507335663 +illusion_1.5L,ppo,11,4.4,velocity,center_ux,0.9017706513404846 +illusion_1.5L,ppo,11,4.4,velocity,center_uy,0.45619770884513855 +illusion_1.5L,ppo,11,4.4,velocity,lower_ux,1.2688137292861938 +illusion_1.5L,ppo,11,4.4,velocity,lower_uy,0.3486625552177429 +illusion_1.5L,ppo,12,4.8,velocity,upper_ux,0.724001407623291 +illusion_1.5L,ppo,12,4.8,velocity,upper_uy,-0.023139851167798042 +illusion_1.5L,ppo,12,4.8,velocity,center_ux,0.8268073201179504 +illusion_1.5L,ppo,12,4.8,velocity,center_uy,0.2009703516960144 +illusion_1.5L,ppo,12,4.8,velocity,lower_ux,1.3586664199829102 +illusion_1.5L,ppo,12,4.8,velocity,lower_uy,0.3129992187023163 +illusion_1.5L,ppo,13,5.2,velocity,upper_ux,0.7659614086151123 +illusion_1.5L,ppo,13,5.2,velocity,upper_uy,-0.11488711088895798 +illusion_1.5L,ppo,13,5.2,velocity,center_ux,0.7617775201797485 +illusion_1.5L,ppo,13,5.2,velocity,center_uy,-0.1499500572681427 +illusion_1.5L,ppo,13,5.2,velocity,lower_ux,1.4012036323547363 +illusion_1.5L,ppo,13,5.2,velocity,lower_uy,0.1890067607164383 +illusion_1.5L,ppo,14,5.6,velocity,upper_ux,0.8213576674461365 +illusion_1.5L,ppo,14,5.6,velocity,upper_uy,-0.19133859872817993 +illusion_1.5L,ppo,14,5.6,velocity,center_ux,0.7492608428001404 +illusion_1.5L,ppo,14,5.6,velocity,center_uy,-0.4299377501010895 +illusion_1.5L,ppo,14,5.6,velocity,lower_ux,1.317550539970398 +illusion_1.5L,ppo,14,5.6,velocity,lower_uy,-0.03887706622481346 +illusion_1.5L,ppo,15,6.0,velocity,upper_ux,0.8792874217033386 +illusion_1.5L,ppo,15,6.0,velocity,upper_uy,-0.25742486119270325 +illusion_1.5L,ppo,15,6.0,velocity,center_ux,0.7909626960754395 +illusion_1.5L,ppo,15,6.0,velocity,center_uy,-0.5134557485580444 +illusion_1.5L,ppo,15,6.0,velocity,lower_ux,1.1540719270706177 +illusion_1.5L,ppo,15,6.0,velocity,lower_uy,-0.23336191475391388 +illusion_1.5L,ppo,16,6.4,velocity,upper_ux,0.9395577907562256 +illusion_1.5L,ppo,16,6.4,velocity,upper_uy,-0.31149178743362427 +illusion_1.5L,ppo,16,6.4,velocity,center_ux,0.8338911533355713 +illusion_1.5L,ppo,16,6.4,velocity,center_uy,-0.49962109327316284 +illusion_1.5L,ppo,16,6.4,velocity,lower_ux,1.0231969356536865 +illusion_1.5L,ppo,16,6.4,velocity,lower_uy,-0.29116812348365784 +illusion_1.5L,ppo,17,6.8,velocity,upper_ux,1.00351881980896 +illusion_1.5L,ppo,17,6.8,velocity,upper_uy,-0.355611652135849 +illusion_1.5L,ppo,17,6.8,velocity,center_ux,0.8467668890953064 +illusion_1.5L,ppo,17,6.8,velocity,center_uy,-0.5040479898452759 +illusion_1.5L,ppo,17,6.8,velocity,lower_ux,0.9471198916435242 +illusion_1.5L,ppo,17,6.8,velocity,lower_uy,-0.26476725935935974 +illusion_1.5L,ppo,18,7.2,velocity,upper_ux,1.0703043937683105 +illusion_1.5L,ppo,18,7.2,velocity,upper_uy,-0.38950398564338684 +illusion_1.5L,ppo,18,7.2,velocity,center_ux,0.8351020216941833 +illusion_1.5L,ppo,18,7.2,velocity,center_uy,-0.5282728672027588 +illusion_1.5L,ppo,18,7.2,velocity,lower_ux,0.8948360681533813 +illusion_1.5L,ppo,18,7.2,velocity,lower_uy,-0.21481652557849884 +illusion_1.5L,ppo,19,7.6,velocity,upper_ux,1.141778826713562 +illusion_1.5L,ppo,19,7.6,velocity,upper_uy,-0.4151398837566376 +illusion_1.5L,ppo,19,7.6,velocity,center_ux,0.8122506141662598 +illusion_1.5L,ppo,19,7.6,velocity,center_uy,-0.5302664041519165 +illusion_1.5L,ppo,19,7.6,velocity,lower_ux,0.8508548140525818 +illusion_1.5L,ppo,19,7.6,velocity,lower_uy,-0.15672357380390167 +illusion_1.5L,ppo,20,8.0,velocity,upper_ux,1.220288872718811 +illusion_1.5L,ppo,20,8.0,velocity,upper_uy,-0.43308502435684204 +illusion_1.5L,ppo,20,8.0,velocity,center_ux,0.7655134797096252 +illusion_1.5L,ppo,20,8.0,velocity,center_uy,-0.47963306307792664 +illusion_1.5L,ppo,20,8.0,velocity,lower_ux,0.8149528503417969 +illusion_1.5L,ppo,20,8.0,velocity,lower_uy,-0.08886748552322388 +illusion_1.5L,ppo,21,8.4,velocity,upper_ux,1.30967378616333 +illusion_1.5L,ppo,21,8.4,velocity,upper_uy,-0.43481722474098206 +illusion_1.5L,ppo,21,8.4,velocity,center_ux,0.6804035902023315 +illusion_1.5L,ppo,21,8.4,velocity,center_uy,-0.3505691587924957 +illusion_1.5L,ppo,21,8.4,velocity,lower_ux,0.7944460511207581 +illusion_1.5L,ppo,21,8.4,velocity,lower_uy,-0.010062533430755138 +illusion_1.5L,ppo,22,8.8,velocity,upper_ux,1.394059658050537 +illusion_1.5L,ppo,22,8.8,velocity,upper_uy,-0.38873377442359924 +illusion_1.5L,ppo,22,8.8,velocity,center_ux,0.5723876357078552 +illusion_1.5L,ppo,22,8.8,velocity,center_uy,-0.11555219441652298 +illusion_1.5L,ppo,22,8.8,velocity,lower_ux,0.7904538512229919 +illusion_1.5L,ppo,22,8.8,velocity,lower_uy,0.07878325134515762 +illusion_1.5L,ppo,23,9.2,velocity,upper_ux,1.4193514585494995 +illusion_1.5L,ppo,23,9.2,velocity,upper_uy,-0.23836754262447357 +illusion_1.5L,ppo,23,9.2,velocity,center_ux,0.48859652876853943 +illusion_1.5L,ppo,23,9.2,velocity,center_uy,0.1892208456993103 +illusion_1.5L,ppo,23,9.2,velocity,lower_ux,0.8032591938972473 +illusion_1.5L,ppo,23,9.2,velocity,lower_uy,0.17207546532154083 +illusion_1.5L,ppo,24,9.6,velocity,upper_ux,1.3371915817260742 +illusion_1.5L,ppo,24,9.6,velocity,upper_uy,0.015562420710921288 +illusion_1.5L,ppo,24,9.6,velocity,center_ux,0.47659289836883545 +illusion_1.5L,ppo,24,9.6,velocity,center_uy,0.44867661595344543 +illusion_1.5L,ppo,24,9.6,velocity,lower_ux,0.8323528170585632 +illusion_1.5L,ppo,24,9.6,velocity,lower_uy,0.262000173330307 +illusion_1.5L,ppo,25,10.0,velocity,upper_ux,1.1804760694503784 +illusion_1.5L,ppo,25,10.0,velocity,upper_uy,0.25812041759490967 +illusion_1.5L,ppo,25,10.0,velocity,center_ux,0.5315051078796387 +illusion_1.5L,ppo,25,10.0,velocity,center_uy,0.5805907249450684 +illusion_1.5L,ppo,25,10.0,velocity,lower_ux,0.874815821647644 +illusion_1.5L,ppo,25,10.0,velocity,lower_uy,0.34436145424842834 +illusion_1.5L,ppo,26,10.4,velocity,upper_ux,1.0186278820037842 +illusion_1.5L,ppo,26,10.4,velocity,upper_uy,0.3829788863658905 +illusion_1.5L,ppo,26,10.4,velocity,center_ux,0.5947105288505554 +illusion_1.5L,ppo,26,10.4,velocity,center_uy,0.6283680200576782 +illusion_1.5L,ppo,26,10.4,velocity,lower_ux,0.9268435835838318 +illusion_1.5L,ppo,26,10.4,velocity,lower_uy,0.41796737909317017 +illusion_1.5L,ppo,27,10.8,velocity,upper_ux,0.8950983285903931 +illusion_1.5L,ppo,27,10.8,velocity,upper_uy,0.38720816373825073 +illusion_1.5L,ppo,27,10.8,velocity,center_ux,0.629852294921875 +illusion_1.5L,ppo,27,10.8,velocity,center_uy,0.6498619318008423 +illusion_1.5L,ppo,27,10.8,velocity,lower_ux,0.9848471879959106 +illusion_1.5L,ppo,27,10.8,velocity,lower_uy,0.48620450496673584 +illusion_1.5L,ppo,28,11.2,velocity,upper_ux,0.810971736907959 +illusion_1.5L,ppo,28,11.2,velocity,upper_uy,0.3254161477088928 +illusion_1.5L,ppo,28,11.2,velocity,center_ux,0.6379437446594238 +illusion_1.5L,ppo,28,11.2,velocity,center_uy,0.6370641589164734 +illusion_1.5L,ppo,28,11.2,velocity,lower_ux,1.0486609935760498 +illusion_1.5L,ppo,28,11.2,velocity,lower_uy,0.5525408983230591 +illusion_1.5L,ppo,29,11.6,velocity,upper_ux,0.750528872013092 +illusion_1.5L,ppo,29,11.6,velocity,upper_uy,0.23475311696529388 +illusion_1.5L,ppo,29,11.6,velocity,center_ux,0.6138889193534851 +illusion_1.5L,ppo,29,11.6,velocity,center_uy,0.5728189945220947 +illusion_1.5L,ppo,29,11.6,velocity,lower_ux,1.1149168014526367 +illusion_1.5L,ppo,29,11.6,velocity,lower_uy,0.610637903213501 +illusion_1.5L,ppo,30,12.0,velocity,upper_ux,0.7131666541099548 +illusion_1.5L,ppo,30,12.0,velocity,upper_uy,0.12680096924304962 +illusion_1.5L,ppo,30,12.0,velocity,center_ux,0.5583255290985107 +illusion_1.5L,ppo,30,12.0,velocity,center_uy,0.4430258274078369 +illusion_1.5L,ppo,30,12.0,velocity,lower_ux,1.1721255779266357 +illusion_1.5L,ppo,30,12.0,velocity,lower_uy,0.639543354511261 +illusion_1.5L,ppo,31,12.4,velocity,upper_ux,0.7028138041496277 +illusion_1.5L,ppo,31,12.4,velocity,upper_uy,0.011957637965679169 +illusion_1.5L,ppo,31,12.4,velocity,center_ux,0.48347485065460205 +illusion_1.5L,ppo,31,12.4,velocity,center_uy,0.24289733171463013 +illusion_1.5L,ppo,31,12.4,velocity,lower_ux,1.1958175897598267 +illusion_1.5L,ppo,31,12.4,velocity,lower_uy,0.5905409455299377 +illusion_1.5L,ppo,32,12.8,velocity,upper_ux,0.7161672115325928 +illusion_1.5L,ppo,32,12.8,velocity,upper_uy,-0.10343599319458008 +illusion_1.5L,ppo,32,12.8,velocity,center_ux,0.4112061560153961 +illusion_1.5L,ppo,32,12.8,velocity,center_uy,-0.0129037294536829 +illusion_1.5L,ppo,32,12.8,velocity,lower_ux,1.162133812904358 +illusion_1.5L,ppo,32,12.8,velocity,lower_uy,0.3812655210494995 +illusion_1.5L,ppo,33,13.2,velocity,upper_ux,0.7413732409477234 +illusion_1.5L,ppo,33,13.2,velocity,upper_uy,-0.21944302320480347 +illusion_1.5L,ppo,33,13.2,velocity,center_ux,0.36001697182655334 +illusion_1.5L,ppo,33,13.2,velocity,center_uy,-0.2883681356906891 +illusion_1.5L,ppo,33,13.2,velocity,lower_ux,1.077007532119751 +illusion_1.5L,ppo,33,13.2,velocity,lower_uy,0.04678625613451004 +illusion_1.5L,ppo,34,13.6,velocity,upper_ux,0.7767755389213562 +illusion_1.5L,ppo,34,13.6,velocity,upper_uy,-0.33396244049072266 +illusion_1.5L,ppo,34,13.6,velocity,center_ux,0.34541264176368713 +illusion_1.5L,ppo,34,13.6,velocity,center_uy,-0.5284796357154846 +illusion_1.5L,ppo,34,13.6,velocity,lower_ux,0.9724568724632263 +illusion_1.5L,ppo,34,13.6,velocity,lower_uy,-0.2894784212112427 +illusion_1.5L,ppo,35,14.0,velocity,upper_ux,0.8218798041343689 +illusion_1.5L,ppo,35,14.0,velocity,upper_uy,-0.44716203212738037 +illusion_1.5L,ppo,35,14.0,velocity,center_ux,0.3737741708755493 +illusion_1.5L,ppo,35,14.0,velocity,center_uy,-0.6763774752616882 +illusion_1.5L,ppo,35,14.0,velocity,lower_ux,0.8758971691131592 +illusion_1.5L,ppo,35,14.0,velocity,lower_uy,-0.5442480444908142 +illusion_1.5L,ppo,36,14.4,velocity,upper_ux,0.875479519367218 +illusion_1.5L,ppo,36,14.4,velocity,upper_uy,-0.5633947253227234 +illusion_1.5L,ppo,36,14.4,velocity,center_ux,0.41511040925979614 +illusion_1.5L,ppo,36,14.4,velocity,center_uy,-0.7418858408927917 +illusion_1.5L,ppo,36,14.4,velocity,lower_ux,0.7991033792495728 +illusion_1.5L,ppo,36,14.4,velocity,lower_uy,-0.6828866004943848 +illusion_1.5L,ppo,37,14.8,velocity,upper_ux,0.9359966516494751 +illusion_1.5L,ppo,37,14.8,velocity,upper_uy,-0.6767194271087646 +illusion_1.5L,ppo,37,14.8,velocity,center_ux,0.42861220240592957 +illusion_1.5L,ppo,37,14.8,velocity,center_uy,-0.7733412384986877 +illusion_1.5L,ppo,37,14.8,velocity,lower_ux,0.7457057237625122 +illusion_1.5L,ppo,37,14.8,velocity,lower_uy,-0.6899577379226685 +illusion_1.5L,ppo,38,15.2,velocity,upper_ux,0.9955703616142273 +illusion_1.5L,ppo,38,15.2,velocity,upper_uy,-0.7419323921203613 +illusion_1.5L,ppo,38,15.2,velocity,center_ux,0.4076624810695648 +illusion_1.5L,ppo,38,15.2,velocity,center_uy,-0.7664675712585449 +illusion_1.5L,ppo,38,15.2,velocity,lower_ux,0.7100991010665894 +illusion_1.5L,ppo,38,15.2,velocity,lower_uy,-0.6059398055076599 +illusion_1.5L,ppo,39,15.6,velocity,upper_ux,1.0469869375228882 +illusion_1.5L,ppo,39,15.6,velocity,upper_uy,-0.6989283561706543 +illusion_1.5L,ppo,39,15.6,velocity,center_ux,0.3706223964691162 +illusion_1.5L,ppo,39,15.6,velocity,center_uy,-0.6784529685974121 +illusion_1.5L,ppo,39,15.6,velocity,lower_ux,0.6816736459732056 +illusion_1.5L,ppo,39,15.6,velocity,lower_uy,-0.4869650602340698 +illusion_1.5L,ppo,40,16.0,velocity,upper_ux,1.082192063331604 +illusion_1.5L,ppo,40,16.0,velocity,upper_uy,-0.4982312321662903 +illusion_1.5L,ppo,40,16.0,velocity,center_ux,0.33581674098968506 +illusion_1.5L,ppo,40,16.0,velocity,center_uy,-0.4869539737701416 +illusion_1.5L,ppo,40,16.0,velocity,lower_ux,0.656953752040863 +illusion_1.5L,ppo,40,16.0,velocity,lower_uy,-0.34518811106681824 +illusion_1.5L,ppo,41,16.4,velocity,upper_ux,1.095755934715271 +illusion_1.5L,ppo,41,16.4,velocity,upper_uy,-0.15138211846351624 +illusion_1.5L,ppo,41,16.4,velocity,center_ux,0.3198545277118683 +illusion_1.5L,ppo,41,16.4,velocity,center_uy,-0.21071763336658478 +illusion_1.5L,ppo,41,16.4,velocity,lower_ux,0.6427490711212158 +illusion_1.5L,ppo,41,16.4,velocity,lower_uy,-0.17648690938949585 +illusion_1.5L,ppo,42,16.8,velocity,upper_ux,1.086368203163147 +illusion_1.5L,ppo,42,16.8,velocity,upper_uy,0.211649090051651 +illusion_1.5L,ppo,42,16.8,velocity,center_ux,0.33243119716644287 +illusion_1.5L,ppo,42,16.8,velocity,center_uy,0.10523422062397003 +illusion_1.5L,ppo,42,16.8,velocity,lower_ux,0.6477837562561035 +illusion_1.5L,ppo,42,16.8,velocity,lower_uy,0.007681591901928186 +illusion_1.5L,ppo,43,17.2,velocity,upper_ux,1.0563209056854248 +illusion_1.5L,ppo,43,17.2,velocity,upper_uy,0.5111325979232788 +illusion_1.5L,ppo,43,17.2,velocity,center_ux,0.371785968542099 +illusion_1.5L,ppo,43,17.2,velocity,center_uy,0.4071047902107239 +illusion_1.5L,ppo,43,17.2,velocity,lower_ux,0.6876928806304932 +illusion_1.5L,ppo,43,17.2,velocity,lower_uy,0.16898681223392487 +illusion_1.5L,ppo,44,17.6,velocity,upper_ux,1.0104703903198242 +illusion_1.5L,ppo,44,17.6,velocity,upper_uy,0.7293464541435242 +illusion_1.5L,ppo,44,17.6,velocity,center_ux,0.4258027970790863 +illusion_1.5L,ppo,44,17.6,velocity,center_uy,0.6530249714851379 +illusion_1.5L,ppo,44,17.6,velocity,lower_ux,0.7589697241783142 +illusion_1.5L,ppo,44,17.6,velocity,lower_uy,0.2890162169933319 +illusion_1.5L,ppo,45,18.0,velocity,upper_ux,0.9517003893852234 +illusion_1.5L,ppo,45,18.0,velocity,upper_uy,0.8474674224853516 +illusion_1.5L,ppo,45,18.0,velocity,center_ux,0.4867962896823883 +illusion_1.5L,ppo,45,18.0,velocity,center_uy,0.8060177564620972 +illusion_1.5L,ppo,45,18.0,velocity,lower_ux,0.8444178700447083 +illusion_1.5L,ppo,45,18.0,velocity,lower_uy,0.39119842648506165 +illusion_1.5L,ppo,46,18.4,velocity,upper_ux,0.8843719959259033 +illusion_1.5L,ppo,46,18.4,velocity,upper_uy,0.857451856136322 +illusion_1.5L,ppo,46,18.4,velocity,center_ux,0.5411293506622314 +illusion_1.5L,ppo,46,18.4,velocity,center_uy,0.8641359806060791 +illusion_1.5L,ppo,46,18.4,velocity,lower_ux,0.9388858079910278 +illusion_1.5L,ppo,46,18.4,velocity,lower_uy,0.49092522263526917 +illusion_1.5L,ppo,47,18.8,velocity,upper_ux,0.819495439529419 +illusion_1.5L,ppo,47,18.8,velocity,upper_uy,0.7942003607749939 +illusion_1.5L,ppo,47,18.8,velocity,center_ux,0.567695677280426 +illusion_1.5L,ppo,47,18.8,velocity,center_uy,0.8686093688011169 +illusion_1.5L,ppo,47,18.8,velocity,lower_ux,1.041948676109314 +illusion_1.5L,ppo,47,18.8,velocity,lower_uy,0.5652312636375427 +illusion_1.5L,ppo,48,19.2,velocity,upper_ux,0.7629286050796509 +illusion_1.5L,ppo,48,19.2,velocity,upper_uy,0.6807845234870911 +illusion_1.5L,ppo,48,19.2,velocity,center_ux,0.5726907253265381 +illusion_1.5L,ppo,48,19.2,velocity,center_uy,0.7726595997810364 +illusion_1.5L,ppo,48,19.2,velocity,lower_ux,1.1371899843215942 +illusion_1.5L,ppo,48,19.2,velocity,lower_uy,0.4910166263580322 +illusion_1.5L,ppo,49,19.6,velocity,upper_ux,0.7192699909210205 +illusion_1.5L,ppo,49,19.6,velocity,upper_uy,0.49363258481025696 +illusion_1.5L,ppo,49,19.6,velocity,center_ux,0.5917133092880249 +illusion_1.5L,ppo,49,19.6,velocity,center_uy,0.49673137068748474 +illusion_1.5L,ppo,49,19.6,velocity,lower_ux,1.205459713935852 +illusion_1.5L,ppo,49,19.6,velocity,lower_uy,0.19806617498397827 +illusion_1.5L,ppo,50,20.0,velocity,upper_ux,0.6987769603729248 +illusion_1.5L,ppo,50,20.0,velocity,upper_uy,0.22286565601825714 +illusion_1.5L,ppo,50,20.0,velocity,center_ux,0.6504058241844177 +illusion_1.5L,ppo,50,20.0,velocity,center_uy,0.07740198820829391 +illusion_1.5L,ppo,50,20.0,velocity,lower_ux,1.2301051616668701 +illusion_1.5L,ppo,50,20.0,velocity,lower_uy,-0.20497846603393555 +illusion_1.5L,ppo,51,20.4,velocity,upper_ux,0.7151654958724976 +illusion_1.5L,ppo,51,20.4,velocity,upper_uy,-0.07150044292211533 +illusion_1.5L,ppo,51,20.4,velocity,center_ux,0.7377921342849731 +illusion_1.5L,ppo,51,20.4,velocity,center_uy,-0.356918066740036 +illusion_1.5L,ppo,51,20.4,velocity,lower_ux,1.2090246677398682 +illusion_1.5L,ppo,51,20.4,velocity,lower_uy,-0.5354105234146118 +illusion_1.5L,ppo,52,20.8,velocity,upper_ux,0.7831017374992371 +illusion_1.5L,ppo,52,20.8,velocity,upper_uy,-0.26577767729759216 +illusion_1.5L,ppo,52,20.8,velocity,center_ux,0.8272097110748291 +illusion_1.5L,ppo,52,20.8,velocity,center_uy,-0.6710523962974548 +illusion_1.5L,ppo,52,20.8,velocity,lower_ux,1.149972915649414 +illusion_1.5L,ppo,52,20.8,velocity,lower_uy,-0.6993334293365479 +illusion_1.5L,ppo,53,21.2,velocity,upper_ux,0.8825851678848267 +illusion_1.5L,ppo,53,21.2,velocity,upper_uy,-0.3331773281097412 +illusion_1.5L,ppo,53,21.2,velocity,center_ux,0.9024699926376343 +illusion_1.5L,ppo,53,21.2,velocity,center_uy,-0.7733837366104126 +illusion_1.5L,ppo,53,21.2,velocity,lower_ux,1.0782121419906616 +illusion_1.5L,ppo,53,21.2,velocity,lower_uy,-0.7373679876327515 +illusion_1.5L,ppo,54,21.6,velocity,upper_ux,0.9855718016624451 +illusion_1.5L,ppo,54,21.6,velocity,upper_uy,-0.3578403890132904 +illusion_1.5L,ppo,54,21.6,velocity,center_ux,0.9663002490997314 +illusion_1.5L,ppo,54,21.6,velocity,center_uy,-0.7773270606994629 +illusion_1.5L,ppo,54,21.6,velocity,lower_ux,1.0115643739700317 +illusion_1.5L,ppo,54,21.6,velocity,lower_uy,-0.7292929887771606 +illusion_1.5L,ppo,55,22.0,velocity,upper_ux,1.0889722108840942 +illusion_1.5L,ppo,55,22.0,velocity,upper_uy,-0.37044429779052734 +illusion_1.5L,ppo,55,22.0,velocity,center_ux,1.0194348096847534 +illusion_1.5L,ppo,55,22.0,velocity,center_uy,-0.779551088809967 +illusion_1.5L,ppo,55,22.0,velocity,lower_ux,0.939218282699585 +illusion_1.5L,ppo,55,22.0,velocity,lower_uy,-0.6670967936515808 +illusion_1.5L,ppo,56,22.4,velocity,upper_ux,1.1989871263504028 +illusion_1.5L,ppo,56,22.4,velocity,upper_uy,-0.3664117455482483 +illusion_1.5L,ppo,56,22.4,velocity,center_ux,1.0480806827545166 +illusion_1.5L,ppo,56,22.4,velocity,center_uy,-0.6838091015815735 +illusion_1.5L,ppo,56,22.4,velocity,lower_ux,0.8578633666038513 +illusion_1.5L,ppo,56,22.4,velocity,lower_uy,-0.47958827018737793 +illusion_1.5L,ppo,57,22.8,velocity,upper_ux,1.2966642379760742 +illusion_1.5L,ppo,57,22.8,velocity,upper_uy,-0.3065105676651001 +illusion_1.5L,ppo,57,22.8,velocity,center_ux,1.0414707660675049 +illusion_1.5L,ppo,57,22.8,velocity,center_uy,-0.31296873092651367 +illusion_1.5L,ppo,57,22.8,velocity,lower_ux,0.7950806617736816 +illusion_1.5L,ppo,57,22.8,velocity,lower_uy,-0.15653662383556366 +illusion_1.5L,ppo,58,23.2,velocity,upper_ux,1.2861404418945312 +illusion_1.5L,ppo,58,23.2,velocity,upper_uy,-0.09608037024736404 +illusion_1.5L,ppo,58,23.2,velocity,center_ux,1.0343995094299316 +illusion_1.5L,ppo,58,23.2,velocity,center_uy,0.16764138638973236 +illusion_1.5L,ppo,58,23.2,velocity,lower_ux,0.7881581783294678 +illusion_1.5L,ppo,58,23.2,velocity,lower_uy,0.17157062888145447 +illusion_1.5L,ppo,59,23.6,velocity,upper_ux,1.1528568267822266 +illusion_1.5L,ppo,59,23.6,velocity,upper_uy,0.17725244164466858 +illusion_1.5L,ppo,59,23.6,velocity,center_ux,1.0407267808914185 +illusion_1.5L,ppo,59,23.6,velocity,center_uy,0.42767345905303955 +illusion_1.5L,ppo,59,23.6,velocity,lower_ux,0.840610682964325 +illusion_1.5L,ppo,59,23.6,velocity,lower_uy,0.33106529712677 +illusion_1.5L,ppo,60,24.0,velocity,upper_ux,1.0409190654754639 +illusion_1.5L,ppo,60,24.0,velocity,upper_uy,0.32070982456207275 +illusion_1.5L,ppo,60,24.0,velocity,center_ux,1.0541568994522095 +illusion_1.5L,ppo,60,24.0,velocity,center_uy,0.4634145498275757 +illusion_1.5L,ppo,60,24.0,velocity,lower_ux,0.9123886227607727 +illusion_1.5L,ppo,60,24.0,velocity,lower_uy,0.3475705683231354 +illusion_1.5L,ppo,61,24.4,velocity,upper_ux,0.9835498929023743 +illusion_1.5L,ppo,61,24.4,velocity,upper_uy,0.36383056640625 +illusion_1.5L,ppo,61,24.4,velocity,center_ux,1.073474407196045 +illusion_1.5L,ppo,61,24.4,velocity,center_uy,0.44879475235939026 +illusion_1.5L,ppo,61,24.4,velocity,lower_ux,0.9743152856826782 +illusion_1.5L,ppo,61,24.4,velocity,lower_uy,0.33646517992019653 +illusion_1.5L,ppo,62,24.8,velocity,upper_ux,0.9429938793182373 +illusion_1.5L,ppo,62,24.8,velocity,upper_uy,0.37067630887031555 +illusion_1.5L,ppo,62,24.8,velocity,center_ux,1.0977572202682495 +illusion_1.5L,ppo,62,24.8,velocity,center_uy,0.4401603043079376 +illusion_1.5L,ppo,62,24.8,velocity,lower_ux,1.025015115737915 +illusion_1.5L,ppo,62,24.8,velocity,lower_uy,0.3265489935874939 +illusion_1.5L,ppo,63,25.2,velocity,upper_ux,0.8976266384124756 +illusion_1.5L,ppo,63,25.2,velocity,upper_uy,0.34323322772979736 +illusion_1.5L,ppo,63,25.2,velocity,center_ux,1.127497673034668 +illusion_1.5L,ppo,63,25.2,velocity,center_uy,0.43763506412506104 +illusion_1.5L,ppo,63,25.2,velocity,lower_ux,1.0687520503997803 +illusion_1.5L,ppo,63,25.2,velocity,lower_uy,0.31785109639167786 +illusion_1.5L,ppo,64,25.6,velocity,upper_ux,0.8379431366920471 +illusion_1.5L,ppo,64,25.6,velocity,upper_uy,0.26543474197387695 +illusion_1.5L,ppo,64,25.6,velocity,center_ux,1.1607290506362915 +illusion_1.5L,ppo,64,25.6,velocity,center_uy,0.43597888946533203 +illusion_1.5L,ppo,64,25.6,velocity,lower_ux,1.106876254081726 +illusion_1.5L,ppo,64,25.6,velocity,lower_uy,0.3092799484729767 +illusion_1.5L,ppo,65,26.0,velocity,upper_ux,0.7752000689506531 +illusion_1.5L,ppo,65,26.0,velocity,upper_uy,0.1355070024728775 +illusion_1.5L,ppo,65,26.0,velocity,center_ux,1.1922717094421387 +illusion_1.5L,ppo,65,26.0,velocity,center_uy,0.42289677262306213 +illusion_1.5L,ppo,65,26.0,velocity,lower_ux,1.1418776512145996 +illusion_1.5L,ppo,65,26.0,velocity,lower_uy,0.29962852597236633 +illusion_1.5L,ppo,66,26.4,velocity,upper_ux,0.7429367899894714 +illusion_1.5L,ppo,66,26.4,velocity,upper_uy,-0.004566439893096685 +illusion_1.5L,ppo,66,26.4,velocity,center_ux,1.1999671459197998 +illusion_1.5L,ppo,66,26.4,velocity,center_uy,0.3705298602581024 +illusion_1.5L,ppo,66,26.4,velocity,lower_ux,1.1737697124481201 +illusion_1.5L,ppo,66,26.4,velocity,lower_uy,0.28781211376190186 +illusion_1.5L,ppo,67,26.8,velocity,upper_ux,0.7646917700767517 +illusion_1.5L,ppo,67,26.8,velocity,upper_uy,-0.09304232895374298 +illusion_1.5L,ppo,67,26.8,velocity,center_ux,1.1463264226913452 +illusion_1.5L,ppo,67,26.8,velocity,center_uy,0.24266275763511658 +illusion_1.5L,ppo,67,26.8,velocity,lower_ux,1.2028679847717285 +illusion_1.5L,ppo,67,26.8,velocity,lower_uy,0.2733694911003113 +illusion_1.5L,ppo,68,27.2,velocity,upper_ux,0.8111904859542847 +illusion_1.5L,ppo,68,27.2,velocity,upper_uy,-0.13286644220352173 +illusion_1.5L,ppo,68,27.2,velocity,center_ux,1.0197956562042236 +illusion_1.5L,ppo,68,27.2,velocity,center_uy,0.05054020881652832 +illusion_1.5L,ppo,68,27.2,velocity,lower_ux,1.2269484996795654 +illusion_1.5L,ppo,68,27.2,velocity,lower_uy,0.25624606013298035 +illusion_1.5L,ppo,69,27.6,velocity,upper_ux,0.8511306047439575 +illusion_1.5L,ppo,69,27.6,velocity,upper_uy,-0.16087649762630463 +illusion_1.5L,ppo,69,27.6,velocity,center_ux,0.8881992101669312 +illusion_1.5L,ppo,69,27.6,velocity,center_uy,-0.11420798301696777 +illusion_1.5L,ppo,69,27.6,velocity,lower_ux,1.2445069551467896 +illusion_1.5L,ppo,69,27.6,velocity,lower_uy,0.237682044506073 +illusion_1.5L,ppo,70,28.0,velocity,upper_ux,0.8809802532196045 +illusion_1.5L,ppo,70,28.0,velocity,upper_uy,-0.18730506300926208 +illusion_1.5L,ppo,70,28.0,velocity,center_ux,0.8193607330322266 +illusion_1.5L,ppo,70,28.0,velocity,center_uy,-0.1951335370540619 +illusion_1.5L,ppo,70,28.0,velocity,lower_ux,1.251967430114746 +illusion_1.5L,ppo,70,28.0,velocity,lower_uy,0.21824100613594055 +illusion_1.5L,ppo,71,28.4,velocity,upper_ux,0.9051089286804199 +illusion_1.5L,ppo,71,28.4,velocity,upper_uy,-0.2126237452030182 +illusion_1.5L,ppo,71,28.4,velocity,center_ux,0.8024730682373047 +illusion_1.5L,ppo,71,28.4,velocity,center_uy,-0.2279716283082962 +illusion_1.5L,ppo,71,28.4,velocity,lower_ux,1.243848443031311 +illusion_1.5L,ppo,71,28.4,velocity,lower_uy,0.19626930356025696 +illusion_1.5L,ppo,72,28.8,velocity,upper_ux,0.925932765007019 +illusion_1.5L,ppo,72,28.8,velocity,upper_uy,-0.23899506032466888 +illusion_1.5L,ppo,72,28.8,velocity,center_ux,0.8035471439361572 +illusion_1.5L,ppo,72,28.8,velocity,center_uy,-0.2516547739505768 +illusion_1.5L,ppo,72,28.8,velocity,lower_ux,1.209060549736023 +illusion_1.5L,ppo,72,28.8,velocity,lower_uy,0.1641014665365219 +illusion_1.5L,ppo,73,29.2,velocity,upper_ux,0.9451865553855896 +illusion_1.5L,ppo,73,29.2,velocity,upper_uy,-0.2680106461048126 +illusion_1.5L,ppo,73,29.2,velocity,center_ux,0.8065648674964905 +illusion_1.5L,ppo,73,29.2,velocity,center_uy,-0.2778964936733246 +illusion_1.5L,ppo,73,29.2,velocity,lower_ux,1.1332191228866577 +illusion_1.5L,ppo,73,29.2,velocity,lower_uy,0.10985821485519409 +illusion_1.5L,ppo,74,29.6,velocity,upper_ux,0.965023398399353 +illusion_1.5L,ppo,74,29.6,velocity,upper_uy,-0.3007993996143341 +illusion_1.5L,ppo,74,29.6,velocity,center_ux,0.8058174848556519 +illusion_1.5L,ppo,74,29.6,velocity,center_uy,-0.3123299479484558 +illusion_1.5L,ppo,74,29.6,velocity,lower_ux,1.0086098909378052 +illusion_1.5L,ppo,74,29.6,velocity,lower_uy,0.024913733825087547 +illusion_1.5L,ppo,75,30.0,velocity,upper_ux,0.9863589406013489 +illusion_1.5L,ppo,75,30.0,velocity,upper_uy,-0.3379884660243988 +illusion_1.5L,ppo,75,30.0,velocity,center_ux,0.8001362681388855 +illusion_1.5L,ppo,75,30.0,velocity,center_uy,-0.3571639955043793 +illusion_1.5L,ppo,75,30.0,velocity,lower_ux,0.8459160327911377 +illusion_1.5L,ppo,75,30.0,velocity,lower_uy,-0.08470166474580765 +illusion_1.5L,ppo,76,30.4,velocity,upper_ux,1.0120810270309448 +illusion_1.5L,ppo,76,30.4,velocity,upper_uy,-0.3797437250614166 +illusion_1.5L,ppo,76,30.4,velocity,center_ux,0.7922377586364746 +illusion_1.5L,ppo,76,30.4,velocity,center_uy,-0.41095519065856934 +illusion_1.5L,ppo,76,30.4,velocity,lower_ux,0.6863534450531006 +illusion_1.5L,ppo,76,30.4,velocity,lower_uy,-0.19325213134288788 +illusion_1.5L,ppo,77,30.8,velocity,upper_ux,1.0441478490829468 +illusion_1.5L,ppo,77,30.8,velocity,upper_uy,-0.42638617753982544 +illusion_1.5L,ppo,77,30.8,velocity,center_ux,0.7809557914733887 +illusion_1.5L,ppo,77,30.8,velocity,center_uy,-0.47304004430770874 +illusion_1.5L,ppo,77,30.8,velocity,lower_ux,0.5774635672569275 +illusion_1.5L,ppo,77,30.8,velocity,lower_uy,-0.26963889598846436 +illusion_1.5L,ppo,78,31.2,velocity,upper_ux,1.0865219831466675 +illusion_1.5L,ppo,78,31.2,velocity,upper_uy,-0.477324515581131 +illusion_1.5L,ppo,78,31.2,velocity,center_ux,0.7632995843887329 +illusion_1.5L,ppo,78,31.2,velocity,center_uy,-0.5438546538352966 +illusion_1.5L,ppo,78,31.2,velocity,lower_ux,0.530575156211853 +illusion_1.5L,ppo,78,31.2,velocity,lower_uy,-0.3026893734931946 +illusion_1.5L,ppo,79,31.6,velocity,upper_ux,1.1421773433685303 +illusion_1.5L,ppo,79,31.6,velocity,upper_uy,-0.5310309529304504 +illusion_1.5L,ppo,79,31.6,velocity,center_ux,0.7318371534347534 +illusion_1.5L,ppo,79,31.6,velocity,center_uy,-0.6224479079246521 +illusion_1.5L,ppo,79,31.6,velocity,lower_ux,0.5132930278778076 +illusion_1.5L,ppo,79,31.6,velocity,lower_uy,-0.30358195304870605 +illusion_1.5L,ppo,80,32.0,velocity,upper_ux,1.2142642736434937 +illusion_1.5L,ppo,80,32.0,velocity,upper_uy,-0.581100344657898 +illusion_1.5L,ppo,80,32.0,velocity,center_ux,0.6819811463356018 +illusion_1.5L,ppo,80,32.0,velocity,center_uy,-0.6859026551246643 +illusion_1.5L,ppo,80,32.0,velocity,lower_ux,0.49506840109825134 +illusion_1.5L,ppo,80,32.0,velocity,lower_uy,-0.28126904368400574 +illusion_1.5L,ppo,81,32.4,velocity,upper_ux,1.294029712677002 +illusion_1.5L,ppo,81,32.4,velocity,upper_uy,-0.61179518699646 +illusion_1.5L,ppo,81,32.4,velocity,center_ux,0.6245611310005188 +illusion_1.5L,ppo,81,32.4,velocity,center_uy,-0.6649124622344971 +illusion_1.5L,ppo,81,32.4,velocity,lower_ux,0.46720024943351746 +illusion_1.5L,ppo,81,32.4,velocity,lower_uy,-0.2345280647277832 +illusion_1.5L,ppo,82,32.8,velocity,upper_ux,1.3563286066055298 +illusion_1.5L,ppo,82,32.8,velocity,upper_uy,-0.6000205278396606 +illusion_1.5L,ppo,82,32.8,velocity,center_ux,0.5783030390739441 +illusion_1.5L,ppo,82,32.8,velocity,center_uy,-0.5189934372901917 +illusion_1.5L,ppo,82,32.8,velocity,lower_ux,0.4386715292930603 +illusion_1.5L,ppo,82,32.8,velocity,lower_uy,-0.15861812233924866 +illusion_1.5L,ppo,83,33.2,velocity,upper_ux,1.3758708238601685 +illusion_1.5L,ppo,83,33.2,velocity,upper_uy,-0.5249543190002441 +illusion_1.5L,ppo,83,33.2,velocity,center_ux,0.5310752987861633 +illusion_1.5L,ppo,83,33.2,velocity,center_uy,-0.29263466596603394 +illusion_1.5L,ppo,83,33.2,velocity,lower_ux,0.42456111311912537 +illusion_1.5L,ppo,83,33.2,velocity,lower_uy,-0.05581438168883324 +illusion_1.5L,ppo,84,33.6,velocity,upper_ux,1.3379015922546387 +illusion_1.5L,ppo,84,33.6,velocity,upper_uy,-0.34895676374435425 +illusion_1.5L,ppo,84,33.6,velocity,center_ux,0.47887498140335083 +illusion_1.5L,ppo,84,33.6,velocity,center_uy,-0.01192475762218237 +illusion_1.5L,ppo,84,33.6,velocity,lower_ux,0.4430367648601532 +illusion_1.5L,ppo,84,33.6,velocity,lower_uy,0.05692942440509796 +illusion_1.5L,ppo,85,34.0,velocity,upper_ux,1.2341192960739136 +illusion_1.5L,ppo,85,34.0,velocity,upper_uy,-0.03080557845532894 +illusion_1.5L,ppo,85,34.0,velocity,center_ux,0.444710373878479 +illusion_1.5L,ppo,85,34.0,velocity,center_uy,0.3040339946746826 +illusion_1.5L,ppo,85,34.0,velocity,lower_ux,0.511502742767334 +illusion_1.5L,ppo,85,34.0,velocity,lower_uy,0.14479714632034302 +illusion_1.5L,ppo,86,34.4,velocity,upper_ux,1.10527765750885 +illusion_1.5L,ppo,86,34.4,velocity,upper_uy,0.37430208921432495 +illusion_1.5L,ppo,86,34.4,velocity,center_ux,0.45568421483039856 +illusion_1.5L,ppo,86,34.4,velocity,center_uy,0.5946930646896362 +illusion_1.5L,ppo,86,34.4,velocity,lower_ux,0.6193978786468506 +illusion_1.5L,ppo,86,34.4,velocity,lower_uy,0.18887504935264587 +illusion_1.5L,ppo,87,34.8,velocity,upper_ux,1.0069332122802734 +illusion_1.5L,ppo,87,34.8,velocity,upper_uy,0.7196546196937561 +illusion_1.5L,ppo,87,34.8,velocity,center_ux,0.5260210633277893 +illusion_1.5L,ppo,87,34.8,velocity,center_uy,0.7696099877357483 +illusion_1.5L,ppo,87,34.8,velocity,lower_ux,0.7203459143638611 +illusion_1.5L,ppo,87,34.8,velocity,lower_uy,0.23075146973133087 +illusion_1.5L,ppo,88,35.2,velocity,upper_ux,0.9507982730865479 +illusion_1.5L,ppo,88,35.2,velocity,upper_uy,0.8487563133239746 +illusion_1.5L,ppo,88,35.2,velocity,center_ux,0.6366716623306274 +illusion_1.5L,ppo,88,35.2,velocity,center_uy,0.7805724143981934 +illusion_1.5L,ppo,88,35.2,velocity,lower_ux,0.7993360757827759 +illusion_1.5L,ppo,88,35.2,velocity,lower_uy,0.2922442853450775 +illusion_1.5L,ppo,89,35.6,velocity,upper_ux,0.9163208603858948 +illusion_1.5L,ppo,89,35.6,velocity,upper_uy,0.7754753828048706 +illusion_1.5L,ppo,89,35.6,velocity,center_ux,0.739818811416626 +illusion_1.5L,ppo,89,35.6,velocity,center_uy,0.7405063509941101 +illusion_1.5L,ppo,89,35.6,velocity,lower_ux,0.8739389777183533 +illusion_1.5L,ppo,89,35.6,velocity,lower_uy,0.3509887456893921 +illusion_1.5L,ppo,90,36.0,velocity,upper_ux,0.874031126499176 +illusion_1.5L,ppo,90,36.0,velocity,upper_uy,0.6918003559112549 +illusion_1.5L,ppo,90,36.0,velocity,center_ux,0.8132102489471436 +illusion_1.5L,ppo,90,36.0,velocity,center_uy,0.7477223873138428 +illusion_1.5L,ppo,90,36.0,velocity,lower_ux,0.949540913105011 +illusion_1.5L,ppo,90,36.0,velocity,lower_uy,0.3988945484161377 +illusion_1.5L,ppo,91,36.4,velocity,upper_ux,0.8150842189788818 +illusion_1.5L,ppo,91,36.4,velocity,upper_uy,0.6547086834907532 +illusion_1.5L,ppo,91,36.4,velocity,center_ux,0.8707943558692932 +illusion_1.5L,ppo,91,36.4,velocity,center_uy,0.7830780148506165 +illusion_1.5L,ppo,91,36.4,velocity,lower_ux,1.0283201932907104 +illusion_1.5L,ppo,91,36.4,velocity,lower_uy,0.43770813941955566 +illusion_1.5L,ppo,92,36.8,velocity,upper_ux,0.7397424578666687 +illusion_1.5L,ppo,92,36.8,velocity,upper_uy,0.6246526837348938 +illusion_1.5L,ppo,92,36.8,velocity,center_ux,0.9183803796768188 +illusion_1.5L,ppo,92,36.8,velocity,center_uy,0.827552855014801 +illusion_1.5L,ppo,92,36.8,velocity,lower_ux,1.1117717027664185 +illusion_1.5L,ppo,92,36.8,velocity,lower_uy,0.4681480824947357 +illusion_1.5L,ppo,93,37.2,velocity,upper_ux,0.6528175473213196 +illusion_1.5L,ppo,93,37.2,velocity,upper_uy,0.5557043552398682 +illusion_1.5L,ppo,93,37.2,velocity,center_ux,0.9501407146453857 +illusion_1.5L,ppo,93,37.2,velocity,center_uy,0.8225094676017761 +illusion_1.5L,ppo,93,37.2,velocity,lower_ux,1.2040826082229614 +illusion_1.5L,ppo,93,37.2,velocity,lower_uy,0.48889225721359253 +illusion_1.5L,ppo,94,37.6,velocity,upper_ux,0.5715795755386353 +illusion_1.5L,ppo,94,37.6,velocity,upper_uy,0.4046432077884674 +illusion_1.5L,ppo,94,37.6,velocity,center_ux,0.9525783658027649 +illusion_1.5L,ppo,94,37.6,velocity,center_uy,0.6679494380950928 +illusion_1.5L,ppo,94,37.6,velocity,lower_ux,1.3048181533813477 +illusion_1.5L,ppo,94,37.6,velocity,lower_uy,0.4901784658432007 +illusion_1.5L,ppo,95,38.0,velocity,upper_ux,0.5229552984237671 +illusion_1.5L,ppo,95,38.0,velocity,upper_uy,0.16988800466060638 +illusion_1.5L,ppo,95,38.0,velocity,center_ux,0.9324564933776855 +illusion_1.5L,ppo,95,38.0,velocity,center_uy,0.3679526448249817 +illusion_1.5L,ppo,95,38.0,velocity,lower_ux,1.3857378959655762 +illusion_1.5L,ppo,95,38.0,velocity,lower_uy,0.42876407504081726 +illusion_1.5L,ppo,96,38.4,velocity,upper_ux,0.5266097784042358 +illusion_1.5L,ppo,96,38.4,velocity,upper_uy,-0.09335511922836304 +illusion_1.5L,ppo,96,38.4,velocity,center_ux,0.9097535014152527 +illusion_1.5L,ppo,96,38.4,velocity,center_uy,-0.03959715738892555 +illusion_1.5L,ppo,96,38.4,velocity,lower_ux,1.3738044500350952 +illusion_1.5L,ppo,96,38.4,velocity,lower_uy,0.2299507111310959 +illusion_1.5L,ppo,97,38.8,velocity,upper_ux,0.587975800037384 +illusion_1.5L,ppo,97,38.8,velocity,upper_uy,-0.29794207215309143 +illusion_1.5L,ppo,97,38.8,velocity,center_ux,0.9107053875923157 +illusion_1.5L,ppo,97,38.8,velocity,center_uy,-0.4443337917327881 +illusion_1.5L,ppo,97,38.8,velocity,lower_ux,1.2460025548934937 +illusion_1.5L,ppo,97,38.8,velocity,lower_uy,-0.08209051191806793 +illusion_1.5L,ppo,98,39.2,velocity,upper_ux,0.6918935179710388 +illusion_1.5L,ppo,98,39.2,velocity,upper_uy,-0.3776188790798187 +illusion_1.5L,ppo,98,39.2,velocity,center_ux,0.9331933856010437 +illusion_1.5L,ppo,98,39.2,velocity,center_uy,-0.6375234723091125 +illusion_1.5L,ppo,98,39.2,velocity,lower_ux,1.0859909057617188 +illusion_1.5L,ppo,98,39.2,velocity,lower_uy,-0.33379051089286804 +illusion_1.5L,ppo,99,39.6,velocity,upper_ux,0.7962306141853333 +illusion_1.5L,ppo,99,39.6,velocity,upper_uy,-0.38644886016845703 +illusion_1.5L,ppo,99,39.6,velocity,center_ux,0.9558098316192627 +illusion_1.5L,ppo,99,39.6,velocity,center_uy,-0.6210560202598572 +illusion_1.5L,ppo,99,39.6,velocity,lower_ux,1.0003615617752075 +illusion_1.5L,ppo,99,39.6,velocity,lower_uy,-0.403423547744751 +illusion_1.5L,ppo,100,40.0,velocity,upper_ux,0.8809834122657776 +illusion_1.5L,ppo,100,40.0,velocity,upper_uy,-0.3942176103591919 +illusion_1.5L,ppo,100,40.0,velocity,center_ux,0.9742011427879333 +illusion_1.5L,ppo,100,40.0,velocity,center_uy,-0.5796787142753601 +illusion_1.5L,ppo,100,40.0,velocity,lower_ux,0.9705625772476196 +illusion_1.5L,ppo,100,40.0,velocity,lower_uy,-0.3898157477378845 +illusion_1.5L,ppo,101,40.4,velocity,upper_ux,0.9516541361808777 +illusion_1.5L,ppo,101,40.4,velocity,upper_uy,-0.4034346640110016 +illusion_1.5L,ppo,101,40.4,velocity,center_ux,0.9911618232727051 +illusion_1.5L,ppo,101,40.4,velocity,center_uy,-0.5701016187667847 +illusion_1.5L,ppo,101,40.4,velocity,lower_ux,0.9389685988426208 +illusion_1.5L,ppo,101,40.4,velocity,lower_uy,-0.38262298703193665 +illusion_1.5L,ppo,102,40.8,velocity,upper_ux,1.014854907989502 +illusion_1.5L,ppo,102,40.8,velocity,upper_uy,-0.41161468625068665 +illusion_1.5L,ppo,102,40.8,velocity,center_ux,1.0109264850616455 +illusion_1.5L,ppo,102,40.8,velocity,center_uy,-0.581458568572998 +illusion_1.5L,ppo,102,40.8,velocity,lower_ux,0.8921666145324707 +illusion_1.5L,ppo,102,40.8,velocity,lower_uy,-0.3854638934135437 +illusion_1.5L,ppo,103,41.2,velocity,upper_ux,1.0735175609588623 +illusion_1.5L,ppo,103,41.2,velocity,upper_uy,-0.4191115200519562 +illusion_1.5L,ppo,103,41.2,velocity,center_ux,1.0348559617996216 +illusion_1.5L,ppo,103,41.2,velocity,center_uy,-0.6073289513587952 +illusion_1.5L,ppo,103,41.2,velocity,lower_ux,0.829305112361908 +illusion_1.5L,ppo,103,41.2,velocity,lower_uy,-0.3827878534793854 +illusion_1.5L,ppo,104,41.6,velocity,upper_ux,1.13177490234375 +illusion_1.5L,ppo,104,41.6,velocity,upper_uy,-0.42572417855262756 +illusion_1.5L,ppo,104,41.6,velocity,center_ux,1.0624558925628662 +illusion_1.5L,ppo,104,41.6,velocity,center_uy,-0.6378490924835205 +illusion_1.5L,ppo,104,41.6,velocity,lower_ux,0.7519271373748779 +illusion_1.5L,ppo,104,41.6,velocity,lower_uy,-0.35352063179016113 +illusion_1.5L,ppo,105,42.0,velocity,upper_ux,1.1924415826797485 +illusion_1.5L,ppo,105,42.0,velocity,upper_uy,-0.430814653635025 +illusion_1.5L,ppo,105,42.0,velocity,center_ux,1.081141471862793 +illusion_1.5L,ppo,105,42.0,velocity,center_uy,-0.6451373100280762 +illusion_1.5L,ppo,105,42.0,velocity,lower_ux,0.6675841808319092 +illusion_1.5L,ppo,105,42.0,velocity,lower_uy,-0.273112028837204 +illusion_1.5L,ppo,106,42.4,velocity,upper_ux,1.2587270736694336 +illusion_1.5L,ppo,106,42.4,velocity,upper_uy,-0.4326605200767517 +illusion_1.5L,ppo,106,42.4,velocity,center_ux,1.0636942386627197 +illusion_1.5L,ppo,106,42.4,velocity,center_uy,-0.5692756175994873 +illusion_1.5L,ppo,106,42.4,velocity,lower_ux,0.5961382389068604 +illusion_1.5L,ppo,106,42.4,velocity,lower_uy,-0.1322784125804901 +illusion_1.5L,ppo,107,42.8,velocity,upper_ux,1.3310543298721313 +illusion_1.5L,ppo,107,42.8,velocity,upper_uy,-0.42515525221824646 +illusion_1.5L,ppo,107,42.8,velocity,center_ux,0.9902618527412415 +illusion_1.5L,ppo,107,42.8,velocity,center_uy,-0.3478080630302429 +illusion_1.5L,ppo,107,42.8,velocity,lower_ux,0.5657598376274109 +illusion_1.5L,ppo,107,42.8,velocity,lower_uy,0.040130652487277985 +illusion_1.5L,ppo,108,43.2,velocity,upper_ux,1.3920392990112305 +illusion_1.5L,ppo,108,43.2,velocity,upper_uy,-0.38362860679626465 +illusion_1.5L,ppo,108,43.2,velocity,center_ux,0.8810315728187561 +illusion_1.5L,ppo,108,43.2,velocity,center_uy,0.013162913732230663 +illusion_1.5L,ppo,108,43.2,velocity,lower_ux,0.6008505821228027 +illusion_1.5L,ppo,108,43.2,velocity,lower_uy,0.17602641880512238 +illusion_1.5L,ppo,109,43.6,velocity,upper_ux,1.372069239616394 +illusion_1.5L,ppo,109,43.6,velocity,upper_uy,-0.2420457899570465 +illusion_1.5L,ppo,109,43.6,velocity,center_ux,0.7977316975593567 +illusion_1.5L,ppo,109,43.6,velocity,center_uy,0.37970227003097534 +illusion_1.5L,ppo,109,43.6,velocity,lower_ux,0.6867912411689758 +illusion_1.5L,ppo,109,43.6,velocity,lower_uy,0.2364875078201294 +illusion_1.5L,ppo,110,44.0,velocity,upper_ux,1.201683521270752 +illusion_1.5L,ppo,110,44.0,velocity,upper_uy,0.028607433661818504 +illusion_1.5L,ppo,110,44.0,velocity,center_ux,0.7938627600669861 +illusion_1.5L,ppo,110,44.0,velocity,center_uy,0.544167160987854 +illusion_1.5L,ppo,110,44.0,velocity,lower_ux,0.7711875438690186 +illusion_1.5L,ppo,110,44.0,velocity,lower_uy,0.2691147029399872 +illusion_1.5L,ppo,111,44.4,velocity,upper_ux,0.9712841510772705 +illusion_1.5L,ppo,111,44.4,velocity,upper_uy,0.2904033362865448 +illusion_1.5L,ppo,111,44.4,velocity,center_ux,0.8401756882667542 +illusion_1.5L,ppo,111,44.4,velocity,center_uy,0.5247878432273865 +illusion_1.5L,ppo,111,44.4,velocity,lower_ux,0.8377321362495422 +illusion_1.5L,ppo,111,44.4,velocity,lower_uy,0.3052283525466919 +illusion_1.5L,ppo,112,44.8,velocity,upper_ux,0.8446347713470459 +illusion_1.5L,ppo,112,44.8,velocity,upper_uy,0.39677032828330994 +illusion_1.5L,ppo,112,44.8,velocity,center_ux,0.878967821598053 +illusion_1.5L,ppo,112,44.8,velocity,center_uy,0.49726802110671997 +illusion_1.5L,ppo,112,44.8,velocity,lower_ux,0.8940873742103577 +illusion_1.5L,ppo,112,44.8,velocity,lower_uy,0.33826687932014465 +illusion_1.5L,ppo,113,45.2,velocity,upper_ux,0.8279588222503662 +illusion_1.5L,ppo,113,45.2,velocity,upper_uy,0.3935920298099518 +illusion_1.5L,ppo,113,45.2,velocity,center_ux,0.9036274552345276 +illusion_1.5L,ppo,113,45.2,velocity,center_uy,0.49648478627204895 +illusion_1.5L,ppo,113,45.2,velocity,lower_ux,0.9450550079345703 +illusion_1.5L,ppo,113,45.2,velocity,lower_uy,0.3678295910358429 +illusion_1.5L,ppo,114,45.6,velocity,upper_ux,0.8300948143005371 +illusion_1.5L,ppo,114,45.6,velocity,upper_uy,0.37539196014404297 +illusion_1.5L,ppo,114,45.6,velocity,center_ux,0.9188137650489807 +illusion_1.5L,ppo,114,45.6,velocity,center_uy,0.5092066526412964 +illusion_1.5L,ppo,114,45.6,velocity,lower_ux,0.9922013282775879 +illusion_1.5L,ppo,114,45.6,velocity,lower_uy,0.39655235409736633 +illusion_1.5L,ppo,115,46.0,velocity,upper_ux,0.8155907988548279 +illusion_1.5L,ppo,115,46.0,velocity,upper_uy,0.36196935176849365 +illusion_1.5L,ppo,115,46.0,velocity,center_ux,0.9263808727264404 +illusion_1.5L,ppo,115,46.0,velocity,center_uy,0.5334023833274841 +illusion_1.5L,ppo,115,46.0,velocity,lower_ux,1.0392858982086182 +illusion_1.5L,ppo,115,46.0,velocity,lower_uy,0.4265890419483185 +illusion_1.5L,ppo,116,46.4,velocity,upper_ux,0.7842562198638916 +illusion_1.5L,ppo,116,46.4,velocity,upper_uy,0.3432849943637848 +illusion_1.5L,ppo,116,46.4,velocity,center_ux,0.9248327612876892 +illusion_1.5L,ppo,116,46.4,velocity,center_uy,0.5703884363174438 +illusion_1.5L,ppo,116,46.4,velocity,lower_ux,1.0897334814071655 +illusion_1.5L,ppo,116,46.4,velocity,lower_uy,0.4593430459499359 +illusion_1.5L,ppo,117,46.8,velocity,upper_ux,0.7384548187255859 +illusion_1.5L,ppo,117,46.8,velocity,upper_uy,0.3078059256076813 +illusion_1.5L,ppo,117,46.8,velocity,center_ux,0.9103565812110901 +illusion_1.5L,ppo,117,46.8,velocity,center_uy,0.6194362640380859 +illusion_1.5L,ppo,117,46.8,velocity,lower_ux,1.1487218141555786 +illusion_1.5L,ppo,117,46.8,velocity,lower_uy,0.4949200451374054 +illusion_1.5L,ppo,118,47.2,velocity,upper_ux,0.6800316572189331 +illusion_1.5L,ppo,118,47.2,velocity,upper_uy,0.24437971413135529 +illusion_1.5L,ppo,118,47.2,velocity,center_ux,0.8731492757797241 +illusion_1.5L,ppo,118,47.2,velocity,center_uy,0.6616327166557312 +illusion_1.5L,ppo,118,47.2,velocity,lower_ux,1.2219775915145874 +illusion_1.5L,ppo,118,47.2,velocity,lower_uy,0.5313818454742432 +illusion_1.5L,ppo,119,47.6,velocity,upper_ux,0.6177970767021179 +illusion_1.5L,ppo,119,47.6,velocity,upper_uy,0.14501261711120605 +illusion_1.5L,ppo,119,47.6,velocity,center_ux,0.8054841756820679 +illusion_1.5L,ppo,119,47.6,velocity,center_uy,0.6226232051849365 +illusion_1.5L,ppo,119,47.6,velocity,lower_ux,1.3131458759307861 +illusion_1.5L,ppo,119,47.6,velocity,lower_uy,0.5580915212631226 +illusion_1.5L,ppo,120,48.0,velocity,upper_ux,0.5732563138008118 +illusion_1.5L,ppo,120,48.0,velocity,upper_uy,0.018066121265292168 +illusion_1.5L,ppo,120,48.0,velocity,center_ux,0.723799467086792 +illusion_1.5L,ppo,120,48.0,velocity,center_uy,0.41875582933425903 +illusion_1.5L,ppo,120,48.0,velocity,lower_ux,1.4014482498168945 +illusion_1.5L,ppo,120,48.0,velocity,lower_uy,0.5364360809326172 +illusion_1.5L,ppo,121,48.4,velocity,upper_ux,0.5770089030265808 +illusion_1.5L,ppo,121,48.4,velocity,upper_uy,-0.10092516988515854 +illusion_1.5L,ppo,121,48.4,velocity,center_ux,0.6503533124923706 +illusion_1.5L,ppo,121,48.4,velocity,center_uy,0.08458604663610458 +illusion_1.5L,ppo,121,48.4,velocity,lower_ux,1.4284051656723022 +illusion_1.5L,ppo,121,48.4,velocity,lower_uy,0.40921521186828613 +illusion_1.5L,ppo,122,48.8,velocity,upper_ux,0.6365079283714294 +illusion_1.5L,ppo,122,48.8,velocity,upper_uy,-0.1763710379600525 +illusion_1.5L,ppo,122,48.8,velocity,center_ux,0.6026279330253601 +illusion_1.5L,ppo,122,48.8,velocity,center_uy,-0.2909294664859772 +illusion_1.5L,ppo,122,48.8,velocity,lower_ux,1.3684699535369873 +illusion_1.5L,ppo,122,48.8,velocity,lower_uy,0.17224422097206116 +illusion_1.5L,ppo,123,49.2,velocity,upper_ux,0.7131805419921875 +illusion_1.5L,ppo,123,49.2,velocity,upper_uy,-0.22611171007156372 +illusion_1.5L,ppo,123,49.2,velocity,center_ux,0.6163720488548279 +illusion_1.5L,ppo,123,49.2,velocity,center_uy,-0.5910624265670776 +illusion_1.5L,ppo,123,49.2,velocity,lower_ux,1.2124406099319458 +illusion_1.5L,ppo,123,49.2,velocity,lower_uy,-0.1813463568687439 +illusion_1.5L,ppo,124,49.6,velocity,upper_ux,0.7797197699546814 +illusion_1.5L,ppo,124,49.6,velocity,upper_uy,-0.2787036895751953 +illusion_1.5L,ppo,124,49.6,velocity,center_ux,0.6992747783660889 +illusion_1.5L,ppo,124,49.6,velocity,center_uy,-0.6809425354003906 +illusion_1.5L,ppo,124,49.6,velocity,lower_ux,1.0197744369506836 +illusion_1.5L,ppo,124,49.6,velocity,lower_uy,-0.5300958752632141 +illusion_1.5L,ppo,125,50.0,velocity,upper_ux,0.8388724327087402 +illusion_1.5L,ppo,125,50.0,velocity,upper_uy,-0.32921236753463745 +illusion_1.5L,ppo,125,50.0,velocity,center_ux,0.7914592623710632 +illusion_1.5L,ppo,125,50.0,velocity,center_uy,-0.6306037306785583 +illusion_1.5L,ppo,125,50.0,velocity,lower_ux,0.9315635561943054 +illusion_1.5L,ppo,125,50.0,velocity,lower_uy,-0.6281405091285706 +illusion_1.5L,ppo,126,50.4,velocity,upper_ux,0.8955637216567993 +illusion_1.5L,ppo,126,50.4,velocity,upper_uy,-0.3727034628391266 +illusion_1.5L,ppo,126,50.4,velocity,center_ux,0.8500270843505859 +illusion_1.5L,ppo,126,50.4,velocity,center_uy,-0.5994491577148438 +illusion_1.5L,ppo,126,50.4,velocity,lower_ux,0.9350045919418335 +illusion_1.5L,ppo,126,50.4,velocity,lower_uy,-0.5502339601516724 +illusion_1.5L,ppo,127,50.8,velocity,upper_ux,0.9504989385604858 +illusion_1.5L,ppo,127,50.8,velocity,upper_uy,-0.4116615056991577 +illusion_1.5L,ppo,127,50.8,velocity,center_ux,0.8837838172912598 +illusion_1.5L,ppo,127,50.8,velocity,center_uy,-0.5953683257102966 +illusion_1.5L,ppo,127,50.8,velocity,lower_ux,0.9308086633682251 +illusion_1.5L,ppo,127,50.8,velocity,lower_uy,-0.484641432762146 +illusion_1.5L,ppo,128,51.2,velocity,upper_ux,1.006050705909729 +illusion_1.5L,ppo,128,51.2,velocity,upper_uy,-0.44969671964645386 +illusion_1.5L,ppo,128,51.2,velocity,center_ux,0.9013627767562866 +illusion_1.5L,ppo,128,51.2,velocity,center_uy,-0.6070024967193604 +illusion_1.5L,ppo,128,51.2,velocity,lower_ux,0.9009218811988831 +illusion_1.5L,ppo,128,51.2,velocity,lower_uy,-0.44692492485046387 +illusion_1.5L,ppo,129,51.6,velocity,upper_ux,1.0653210878372192 +illusion_1.5L,ppo,129,51.6,velocity,upper_uy,-0.48918917775154114 +illusion_1.5L,ppo,129,51.6,velocity,center_ux,0.9032688140869141 +illusion_1.5L,ppo,129,51.6,velocity,center_uy,-0.6347479820251465 +illusion_1.5L,ppo,129,51.6,velocity,lower_ux,0.8547990322113037 +illusion_1.5L,ppo,129,51.6,velocity,lower_uy,-0.41240009665489197 +illusion_1.5L,ppo,130,52.0,velocity,upper_ux,1.1340428590774536 +illusion_1.5L,ppo,130,52.0,velocity,upper_uy,-0.5312589406967163 +illusion_1.5L,ppo,130,52.0,velocity,center_ux,0.8863430023193359 +illusion_1.5L,ppo,130,52.0,velocity,center_uy,-0.6797813177108765 +illusion_1.5L,ppo,130,52.0,velocity,lower_ux,0.7955611944198608 +illusion_1.5L,ppo,130,52.0,velocity,lower_uy,-0.36626172065734863 +illusion_1.5L,ppo,131,52.4,velocity,upper_ux,1.2196502685546875 +illusion_1.5L,ppo,131,52.4,velocity,upper_uy,-0.5729905962944031 +illusion_1.5L,ppo,131,52.4,velocity,center_ux,0.8423058986663818 +illusion_1.5L,ppo,131,52.4,velocity,center_uy,-0.7240841388702393 +illusion_1.5L,ppo,131,52.4,velocity,lower_ux,0.72382652759552 +illusion_1.5L,ppo,131,52.4,velocity,lower_uy,-0.29576700925827026 +illusion_1.5L,ppo,132,52.8,velocity,upper_ux,1.3237212896347046 +illusion_1.5L,ppo,132,52.8,velocity,upper_uy,-0.596028208732605 +illusion_1.5L,ppo,132,52.8,velocity,center_ux,0.7707681059837341 +illusion_1.5L,ppo,132,52.8,velocity,center_uy,-0.6804932355880737 +illusion_1.5L,ppo,132,52.8,velocity,lower_ux,0.646187424659729 +illusion_1.5L,ppo,132,52.8,velocity,lower_uy,-0.190191388130188 +illusion_1.5L,ppo,133,53.2,velocity,upper_ux,1.4089831113815308 +illusion_1.5L,ppo,133,53.2,velocity,upper_uy,-0.5401401519775391 +illusion_1.5L,ppo,133,53.2,velocity,center_ux,0.7006658315658569 +illusion_1.5L,ppo,133,53.2,velocity,center_uy,-0.45409896969795227 +illusion_1.5L,ppo,133,53.2,velocity,lower_ux,0.5815165042877197 +illusion_1.5L,ppo,133,53.2,velocity,lower_uy,-0.050947174429893494 +illusion_1.5L,ppo,134,53.6,velocity,upper_ux,1.4244784116744995 +illusion_1.5L,ppo,134,53.6,velocity,upper_uy,-0.3702727258205414 +illusion_1.5L,ppo,134,53.6,velocity,center_ux,0.6443628072738647 +illusion_1.5L,ppo,134,53.6,velocity,center_uy,-0.1002812311053276 +illusion_1.5L,ppo,134,53.6,velocity,lower_ux,0.562003493309021 +illusion_1.5L,ppo,134,53.6,velocity,lower_uy,0.09041357785463333 +illusion_1.5L,ppo,135,54.0,velocity,upper_ux,1.3713674545288086 +illusion_1.5L,ppo,135,54.0,velocity,upper_uy,-0.1027410626411438 +illusion_1.5L,ppo,135,54.0,velocity,center_ux,0.6108880043029785 +illusion_1.5L,ppo,135,54.0,velocity,center_uy,0.2921239137649536 +illusion_1.5L,ppo,135,54.0,velocity,lower_ux,0.6105225086212158 +illusion_1.5L,ppo,135,54.0,velocity,lower_uy,0.18282705545425415 +illusion_1.5L,ppo,136,54.4,velocity,upper_ux,1.2217270135879517 +illusion_1.5L,ppo,136,54.4,velocity,upper_uy,0.29117390513420105 +illusion_1.5L,ppo,136,54.4,velocity,center_ux,0.6376780867576599 +illusion_1.5L,ppo,136,54.4,velocity,center_uy,0.6078283190727234 +illusion_1.5L,ppo,136,54.4,velocity,lower_ux,0.6945696473121643 +illusion_1.5L,ppo,136,54.4,velocity,lower_uy,0.22782489657402039 +illusion_1.5L,ppo,137,54.8,velocity,upper_ux,1.060048222541809 +illusion_1.5L,ppo,137,54.8,velocity,upper_uy,0.6106154322624207 +illusion_1.5L,ppo,137,54.8,velocity,center_ux,0.7270990014076233 +illusion_1.5L,ppo,137,54.8,velocity,center_uy,0.702735424041748 +illusion_1.5L,ppo,137,54.8,velocity,lower_ux,0.7694494128227234 +illusion_1.5L,ppo,137,54.8,velocity,lower_uy,0.2712102234363556 +illusion_1.5L,ppo,138,55.2,velocity,upper_ux,1.0047932863235474 +illusion_1.5L,ppo,138,55.2,velocity,upper_uy,0.6293416023254395 +illusion_1.5L,ppo,138,55.2,velocity,center_ux,0.8213205933570862 +illusion_1.5L,ppo,138,55.2,velocity,center_uy,0.6308467984199524 +illusion_1.5L,ppo,138,55.2,velocity,lower_ux,0.8320982456207275 +illusion_1.5L,ppo,138,55.2,velocity,lower_uy,0.3182808458805084 +illusion_1.5L,ppo,139,55.6,velocity,upper_ux,1.0100802183151245 +illusion_1.5L,ppo,139,55.6,velocity,upper_uy,0.5208701491355896 +illusion_1.5L,ppo,139,55.6,velocity,center_ux,0.8782654404640198 +illusion_1.5L,ppo,139,55.6,velocity,center_uy,0.5792480707168579 +illusion_1.5L,ppo,139,55.6,velocity,lower_ux,0.8902748227119446 +illusion_1.5L,ppo,139,55.6,velocity,lower_uy,0.35965225100517273 +illusion_1.5L,ppo,140,56.0,velocity,upper_ux,0.9984250664710999 +illusion_1.5L,ppo,140,56.0,velocity,upper_uy,0.4488210380077362 +illusion_1.5L,ppo,140,56.0,velocity,center_ux,0.9069993495941162 +illusion_1.5L,ppo,140,56.0,velocity,center_uy,0.562938928604126 +illusion_1.5L,ppo,140,56.0,velocity,lower_ux,0.9452563524246216 +illusion_1.5L,ppo,140,56.0,velocity,lower_uy,0.39688652753829956 +illusion_1.5L,ppo,141,56.4,velocity,upper_ux,0.9644699692726135 +illusion_1.5L,ppo,141,56.4,velocity,upper_uy,0.3981708288192749 +illusion_1.5L,ppo,141,56.4,velocity,center_ux,0.9169797301292419 +illusion_1.5L,ppo,141,56.4,velocity,center_uy,0.5650777220726013 +illusion_1.5L,ppo,141,56.4,velocity,lower_ux,0.9993496537208557 +illusion_1.5L,ppo,141,56.4,velocity,lower_uy,0.433557391166687 +illusion_1.5L,ppo,142,56.8,velocity,upper_ux,0.9134246706962585 +illusion_1.5L,ppo,142,56.8,velocity,upper_uy,0.34694549441337585 +illusion_1.5L,ppo,142,56.8,velocity,center_ux,0.9091758131980896 +illusion_1.5L,ppo,142,56.8,velocity,center_uy,0.5851967334747314 +illusion_1.5L,ppo,142,56.8,velocity,lower_ux,1.0559388399124146 +illusion_1.5L,ppo,142,56.8,velocity,lower_uy,0.4724588096141815 +illusion_1.5L,ppo,143,57.2,velocity,upper_ux,0.8464797139167786 +illusion_1.5L,ppo,143,57.2,velocity,upper_uy,0.28582194447517395 +illusion_1.5L,ppo,143,57.2,velocity,center_ux,0.8811725378036499 +illusion_1.5L,ppo,143,57.2,velocity,center_uy,0.6240112781524658 +illusion_1.5L,ppo,143,57.2,velocity,lower_ux,1.1210665702819824 +illusion_1.5L,ppo,143,57.2,velocity,lower_uy,0.5145048499107361 +illusion_1.5L,ppo,144,57.6,velocity,upper_ux,0.766828179359436 +illusion_1.5L,ppo,144,57.6,velocity,upper_uy,0.20856726169586182 +illusion_1.5L,ppo,144,57.6,velocity,center_ux,0.8263416290283203 +illusion_1.5L,ppo,144,57.6,velocity,center_uy,0.6650369167327881 +illusion_1.5L,ppo,144,57.6,velocity,lower_ux,1.2020758390426636 +illusion_1.5L,ppo,144,57.6,velocity,lower_uy,0.557365894317627 +illusion_1.5L,ppo,145,58.0,velocity,upper_ux,0.6865572929382324 +illusion_1.5L,ppo,145,58.0,velocity,upper_uy,0.11225346475839615 +illusion_1.5L,ppo,145,58.0,velocity,center_ux,0.7451912760734558 +illusion_1.5L,ppo,145,58.0,velocity,center_uy,0.6305930614471436 +illusion_1.5L,ppo,145,58.0,velocity,lower_ux,1.2993903160095215 +illusion_1.5L,ppo,145,58.0,velocity,lower_uy,0.5845839977264404 +illusion_1.5L,ppo,146,58.4,velocity,upper_ux,0.6324041485786438 +illusion_1.5L,ppo,146,58.4,velocity,upper_uy,0.005979978479444981 +illusion_1.5L,ppo,146,58.4,velocity,center_ux,0.6619094610214233 +illusion_1.5L,ppo,146,58.4,velocity,center_uy,0.43691182136535645 +illusion_1.5L,ppo,146,58.4,velocity,lower_ux,1.3814232349395752 +illusion_1.5L,ppo,146,58.4,velocity,lower_uy,0.5448066592216492 +illusion_1.5L,ppo,147,58.8,velocity,upper_ux,0.6329512000083923 +illusion_1.5L,ppo,147,58.8,velocity,upper_uy,-0.08443700522184372 +illusion_1.5L,ppo,147,58.8,velocity,center_ux,0.5875611305236816 +illusion_1.5L,ppo,147,58.8,velocity,center_uy,0.11890294402837753 +illusion_1.5L,ppo,147,58.8,velocity,lower_ux,1.4056586027145386 +illusion_1.5L,ppo,147,58.8,velocity,lower_uy,0.40219733119010925 +illusion_1.5L,ppo,148,59.2,velocity,upper_ux,0.6858092546463013 +illusion_1.5L,ppo,148,59.2,velocity,upper_uy,-0.14319252967834473 +illusion_1.5L,ppo,148,59.2,velocity,center_ux,0.5394123792648315 +illusion_1.5L,ppo,148,59.2,velocity,center_uy,-0.25012797117233276 +illusion_1.5L,ppo,148,59.2,velocity,lower_ux,1.3613214492797852 +illusion_1.5L,ppo,148,59.2,velocity,lower_uy,0.14444032311439514 +illusion_1.5L,ppo,149,59.6,velocity,upper_ux,0.7508542537689209 +illusion_1.5L,ppo,149,59.6,velocity,upper_uy,-0.19254396855831146 +illusion_1.5L,ppo,149,59.6,velocity,center_ux,0.5601252913475037 +illusion_1.5L,ppo,149,59.6,velocity,center_uy,-0.5567200779914856 +illusion_1.5L,ppo,149,59.6,velocity,lower_ux,1.2230793237686157 +illusion_1.5L,ppo,149,59.6,velocity,lower_uy,-0.2578584849834442 +illusion_1.5L,ppo,150,60.0,velocity,upper_ux,0.808149516582489 +illusion_1.5L,ppo,150,60.0,velocity,upper_uy,-0.2499244064092636 +illusion_1.5L,ppo,150,60.0,velocity,center_ux,0.655874490737915 +illusion_1.5L,ppo,150,60.0,velocity,center_uy,-0.6720749735832214 +illusion_1.5L,ppo,150,60.0,velocity,lower_ux,1.0708532333374023 +illusion_1.5L,ppo,150,60.0,velocity,lower_uy,-0.6059650182723999 +illusion_1.5L,ppo,151,60.4,velocity,upper_ux,0.863139808177948 +illusion_1.5L,ppo,151,60.4,velocity,upper_uy,-0.3044869899749756 +illusion_1.5L,ppo,151,60.4,velocity,center_ux,0.7686091661453247 +illusion_1.5L,ppo,151,60.4,velocity,center_uy,-0.6304290890693665 +illusion_1.5L,ppo,151,60.4,velocity,lower_ux,0.9971597790718079 +illusion_1.5L,ppo,151,60.4,velocity,lower_uy,-0.6701464056968689 +illusion_1.5L,ppo,152,60.8,velocity,upper_ux,0.9187591075897217 +illusion_1.5L,ppo,152,60.8,velocity,upper_uy,-0.3507932722568512 +illusion_1.5L,ppo,152,60.8,velocity,center_ux,0.8428417444229126 +illusion_1.5L,ppo,152,60.8,velocity,center_uy,-0.6003854274749756 +illusion_1.5L,ppo,152,60.8,velocity,lower_ux,0.9788886308670044 +illusion_1.5L,ppo,152,60.8,velocity,lower_uy,-0.5668004751205444 +illusion_1.5L,ppo,153,61.2,velocity,upper_ux,0.9739788770675659 +illusion_1.5L,ppo,153,61.2,velocity,upper_uy,-0.3913901150226593 +illusion_1.5L,ppo,153,61.2,velocity,center_ux,0.8864333629608154 +illusion_1.5L,ppo,153,61.2,velocity,center_uy,-0.6012750864028931 +illusion_1.5L,ppo,153,61.2,velocity,lower_ux,0.9493836164474487 +illusion_1.5L,ppo,153,61.2,velocity,lower_uy,-0.49257975816726685 +illusion_1.5L,ppo,154,61.6,velocity,upper_ux,1.0302964448928833 +illusion_1.5L,ppo,154,61.6,velocity,upper_uy,-0.43010765314102173 +illusion_1.5L,ppo,154,61.6,velocity,center_ux,0.9119501709938049 +illusion_1.5L,ppo,154,61.6,velocity,center_uy,-0.6171937584877014 +illusion_1.5L,ppo,154,61.6,velocity,lower_ux,0.8989251852035522 +illusion_1.5L,ppo,154,61.6,velocity,lower_uy,-0.44889548420906067 +illusion_1.5L,ppo,155,62.0,velocity,upper_ux,1.0910011529922485 +illusion_1.5L,ppo,155,62.0,velocity,upper_uy,-0.47050830721855164 +illusion_1.5L,ppo,155,62.0,velocity,center_ux,0.9209052324295044 +illusion_1.5L,ppo,155,62.0,velocity,center_uy,-0.6447969079017639 +illusion_1.5L,ppo,155,62.0,velocity,lower_ux,0.8342335224151611 +illusion_1.5L,ppo,155,62.0,velocity,lower_uy,-0.40097784996032715 +illusion_1.5L,ppo,156,62.4,velocity,upper_ux,1.1618106365203857 +illusion_1.5L,ppo,156,62.4,velocity,upper_uy,-0.5154054164886475 +illusion_1.5L,ppo,156,62.4,velocity,center_ux,0.9065178632736206 +illusion_1.5L,ppo,156,62.4,velocity,center_uy,-0.6718671321868896 +illusion_1.5L,ppo,156,62.4,velocity,lower_ux,0.7589218020439148 +illusion_1.5L,ppo,156,62.4,velocity,lower_uy,-0.32562708854675293 +illusion_1.5L,ppo,157,62.8,velocity,upper_ux,1.250657320022583 +illusion_1.5L,ppo,157,62.8,velocity,upper_uy,-0.5619996786117554 +illusion_1.5L,ppo,157,62.8,velocity,center_ux,0.8552299737930298 +illusion_1.5L,ppo,157,62.8,velocity,center_uy,-0.6468499898910522 +illusion_1.5L,ppo,157,62.8,velocity,lower_ux,0.6815144419670105 +illusion_1.5L,ppo,157,62.8,velocity,lower_uy,-0.20824794471263885 +illusion_1.5L,ppo,158,63.2,velocity,upper_ux,1.3446673154830933 +illusion_1.5L,ppo,158,63.2,velocity,upper_uy,-0.5629189610481262 +illusion_1.5L,ppo,158,63.2,velocity,center_ux,0.7697663307189941 +illusion_1.5L,ppo,158,63.2,velocity,center_uy,-0.4736923575401306 +illusion_1.5L,ppo,158,63.2,velocity,lower_ux,0.6214205026626587 +illusion_1.5L,ppo,158,63.2,velocity,lower_uy,-0.05437997728586197 +illusion_1.5L,ppo,159,63.6,velocity,upper_ux,1.3715671300888062 +illusion_1.5L,ppo,159,63.6,velocity,upper_uy,-0.39940643310546875 +illusion_1.5L,ppo,159,63.6,velocity,center_ux,0.6890060305595398 +illusion_1.5L,ppo,159,63.6,velocity,center_uy,-0.13527415692806244 +illusion_1.5L,ppo,159,63.6,velocity,lower_ux,0.6101993322372437 +illusion_1.5L,ppo,159,63.6,velocity,lower_uy,0.09487294405698776 +illusion_1.5L,ppo,160,64.0,velocity,upper_ux,1.2990906238555908 +illusion_1.5L,ppo,160,64.0,velocity,upper_uy,-0.0700191929936409 +illusion_1.5L,ppo,160,64.0,velocity,center_ux,0.646304726600647 +illusion_1.5L,ppo,160,64.0,velocity,center_uy,0.26852184534072876 +illusion_1.5L,ppo,160,64.0,velocity,lower_ux,0.6609256863594055 +illusion_1.5L,ppo,160,64.0,velocity,lower_uy,0.19103483855724335 +illusion_1.5L,ppo,161,64.4,velocity,upper_ux,1.161020040512085 +illusion_1.5L,ppo,161,64.4,velocity,upper_uy,0.3401302397251129 +illusion_1.5L,ppo,161,64.4,velocity,center_ux,0.6651787757873535 +illusion_1.5L,ppo,161,64.4,velocity,center_uy,0.585918664932251 +illusion_1.5L,ppo,161,64.4,velocity,lower_ux,0.7382717728614807 +illusion_1.5L,ppo,161,64.4,velocity,lower_uy,0.24852651357650757 +illusion_1.5L,ppo,162,64.8,velocity,upper_ux,1.045242190361023 +illusion_1.5L,ppo,162,64.8,velocity,upper_uy,0.5934848189353943 +illusion_1.5L,ppo,162,64.8,velocity,center_ux,0.74174964427948 +illusion_1.5L,ppo,162,64.8,velocity,center_uy,0.6771160960197449 +illusion_1.5L,ppo,162,64.8,velocity,lower_ux,0.8105738162994385 +illusion_1.5L,ppo,162,64.8,velocity,lower_uy,0.30170097947120667 +illusion_1.5L,ppo,163,65.2,velocity,upper_ux,0.9964197278022766 +illusion_1.5L,ppo,163,65.2,velocity,upper_uy,0.5903931856155396 +illusion_1.5L,ppo,163,65.2,velocity,center_ux,0.8213951587677002 +illusion_1.5L,ppo,163,65.2,velocity,center_uy,0.6513831615447998 +illusion_1.5L,ppo,163,65.2,velocity,lower_ux,0.8789122700691223 +illusion_1.5L,ppo,163,65.2,velocity,lower_uy,0.34870558977127075 +illusion_1.5L,ppo,164,65.6,velocity,upper_ux,0.9627229571342468 +illusion_1.5L,ppo,164,65.6,velocity,upper_uy,0.5269545316696167 +illusion_1.5L,ppo,164,65.6,velocity,center_ux,0.8756019473075867 +illusion_1.5L,ppo,164,65.6,velocity,center_uy,0.6446710228919983 +illusion_1.5L,ppo,164,65.6,velocity,lower_ux,0.9454103112220764 +illusion_1.5L,ppo,164,65.6,velocity,lower_uy,0.38654178380966187 +illusion_1.5L,ppo,165,66.0,velocity,upper_ux,0.9136232733726501 +illusion_1.5L,ppo,165,66.0,velocity,upper_uy,0.48862114548683167 +illusion_1.5L,ppo,165,66.0,velocity,center_ux,0.9144842624664307 +illusion_1.5L,ppo,165,66.0,velocity,center_uy,0.6623420715332031 +illusion_1.5L,ppo,165,66.0,velocity,lower_ux,1.0115251541137695 +illusion_1.5L,ppo,165,66.0,velocity,lower_uy,0.41710129380226135 +illusion_1.5L,ppo,166,66.4,velocity,upper_ux,0.8482638001441956 +illusion_1.5L,ppo,166,66.4,velocity,upper_uy,0.4553919732570648 +illusion_1.5L,ppo,166,66.4,velocity,center_ux,0.9462328553199768 +illusion_1.5L,ppo,166,66.4,velocity,center_uy,0.6971350312232971 +illusion_1.5L,ppo,166,66.4,velocity,lower_ux,1.0787665843963623 +illusion_1.5L,ppo,166,66.4,velocity,lower_uy,0.44195184111595154 +illusion_1.5L,ppo,167,66.8,velocity,upper_ux,0.7675382494926453 +illusion_1.5L,ppo,167,66.8,velocity,upper_uy,0.3997575044631958 +illusion_1.5L,ppo,167,66.8,velocity,center_ux,0.9706149101257324 +illusion_1.5L,ppo,167,66.8,velocity,center_uy,0.7280732989311218 +illusion_1.5L,ppo,167,66.8,velocity,lower_ux,1.1490081548690796 +illusion_1.5L,ppo,167,66.8,velocity,lower_uy,0.46193888783454895 +illusion_1.5L,ppo,168,67.2,velocity,upper_ux,0.6808556914329529 +illusion_1.5L,ppo,168,67.2,velocity,upper_uy,0.2940419614315033 +illusion_1.5L,ppo,168,67.2,velocity,center_ux,0.9719192385673523 +illusion_1.5L,ppo,168,67.2,velocity,center_uy,0.6939641833305359 +illusion_1.5L,ppo,168,67.2,velocity,lower_ux,1.224379301071167 +illusion_1.5L,ppo,168,67.2,velocity,lower_uy,0.4767867922782898 +illusion_1.5L,ppo,169,67.6,velocity,upper_ux,0.611284613609314 +illusion_1.5L,ppo,169,67.6,velocity,upper_uy,0.13004352152347565 +illusion_1.5L,ppo,169,67.6,velocity,center_ux,0.9301079511642456 +illusion_1.5L,ppo,169,67.6,velocity,center_uy,0.5231685638427734 +illusion_1.5L,ppo,169,67.6,velocity,lower_ux,1.3046406507492065 +illusion_1.5L,ppo,169,67.6,velocity,lower_uy,0.48168861865997314 +illusion_1.5L,ppo,170,68.0,velocity,upper_ux,0.5877518653869629 +illusion_1.5L,ppo,170,68.0,velocity,upper_uy,-0.05791940167546272 +illusion_1.5L,ppo,170,68.0,velocity,center_ux,0.8515706658363342 +illusion_1.5L,ppo,170,68.0,velocity,center_uy,0.1996878832578659 +illusion_1.5L,ppo,170,68.0,velocity,lower_ux,1.3696991205215454 +illusion_1.5L,ppo,170,68.0,velocity,lower_uy,0.44508877396583557 +illusion_1.5L,ppo,171,68.4,velocity,upper_ux,0.6283725500106812 +illusion_1.5L,ppo,171,68.4,velocity,upper_uy,-0.202134907245636 +illusion_1.5L,ppo,171,68.4,velocity,center_ux,0.775575578212738 +illusion_1.5L,ppo,171,68.4,velocity,center_uy,-0.21711784601211548 +illusion_1.5L,ppo,171,68.4,velocity,lower_ux,1.345916748046875 +illusion_1.5L,ppo,171,68.4,velocity,lower_uy,0.2776309847831726 +illusion_1.5L,ppo,172,68.8,velocity,upper_ux,0.7123477458953857 +illusion_1.5L,ppo,172,68.8,velocity,upper_uy,-0.2775692641735077 +illusion_1.5L,ppo,172,68.8,velocity,center_ux,0.7537382245063782 +illusion_1.5L,ppo,172,68.8,velocity,center_uy,-0.5471093058586121 +illusion_1.5L,ppo,172,68.8,velocity,lower_ux,1.1848031282424927 +illusion_1.5L,ppo,172,68.8,velocity,lower_uy,-0.054685283452272415 +illusion_1.5L,ppo,173,69.2,velocity,upper_ux,0.796713650226593 +illusion_1.5L,ppo,173,69.2,velocity,upper_uy,-0.32783111929893494 +illusion_1.5L,ppo,173,69.2,velocity,center_ux,0.7909377813339233 +illusion_1.5L,ppo,173,69.2,velocity,center_uy,-0.6470092535018921 +illusion_1.5L,ppo,173,69.2,velocity,lower_ux,0.9853065013885498 +illusion_1.5L,ppo,173,69.2,velocity,lower_uy,-0.37466925382614136 +illusion_1.5L,ppo,174,69.6,velocity,upper_ux,0.872529923915863 +illusion_1.5L,ppo,174,69.6,velocity,upper_uy,-0.3719237148761749 +illusion_1.5L,ppo,174,69.6,velocity,center_ux,0.841593861579895 +illusion_1.5L,ppo,174,69.6,velocity,center_uy,-0.6323440074920654 +illusion_1.5L,ppo,174,69.6,velocity,lower_ux,0.8835542798042297 +illusion_1.5L,ppo,174,69.6,velocity,lower_uy,-0.4971134662628174 +illusion_1.5L,ppo,175,70.0,velocity,upper_ux,0.9437310695648193 +illusion_1.5L,ppo,175,70.0,velocity,upper_uy,-0.40863585472106934 +illusion_1.5L,ppo,175,70.0,velocity,center_ux,0.8787556290626526 +illusion_1.5L,ppo,175,70.0,velocity,center_uy,-0.6354256272315979 +illusion_1.5L,ppo,175,70.0,velocity,lower_ux,0.8574223518371582 +illusion_1.5L,ppo,175,70.0,velocity,lower_uy,-0.4913085103034973 +illusion_1.5L,ppo,176,70.4,velocity,upper_ux,1.0140196084976196 +illusion_1.5L,ppo,176,70.4,velocity,upper_uy,-0.4394066333770752 +illusion_1.5L,ppo,176,70.4,velocity,center_ux,0.9074754118919373 +illusion_1.5L,ppo,176,70.4,velocity,center_uy,-0.6651714444160461 +illusion_1.5L,ppo,176,70.4,velocity,lower_ux,0.8277189135551453 +illusion_1.5L,ppo,176,70.4,velocity,lower_uy,-0.4778444170951843 +illusion_1.5L,ppo,177,70.8,velocity,upper_ux,1.0865635871887207 +illusion_1.5L,ppo,177,70.8,velocity,upper_uy,-0.4651579260826111 +illusion_1.5L,ppo,177,70.8,velocity,center_ux,0.9334375262260437 +illusion_1.5L,ppo,177,70.8,velocity,center_uy,-0.7165768146514893 +illusion_1.5L,ppo,177,70.8,velocity,lower_ux,0.775102972984314 +illusion_1.5L,ppo,177,70.8,velocity,lower_uy,-0.47356030344963074 +illusion_1.5L,ppo,178,71.2,velocity,upper_ux,1.1648586988449097 +illusion_1.5L,ppo,178,71.2,velocity,upper_uy,-0.48514899611473083 +illusion_1.5L,ppo,178,71.2,velocity,center_ux,0.9580633044242859 +illusion_1.5L,ppo,178,71.2,velocity,center_uy,-0.776994526386261 +illusion_1.5L,ppo,178,71.2,velocity,lower_ux,0.7025083303451538 +illusion_1.5L,ppo,178,71.2,velocity,lower_uy,-0.45971381664276123 +illusion_1.5L,ppo,179,71.6,velocity,upper_ux,1.252316951751709 +illusion_1.5L,ppo,179,71.6,velocity,upper_uy,-0.49682989716529846 +illusion_1.5L,ppo,179,71.6,velocity,center_ux,0.9710728526115417 +illusion_1.5L,ppo,179,71.6,velocity,center_uy,-0.7883241772651672 +illusion_1.5L,ppo,179,71.6,velocity,lower_ux,0.615237832069397 +illusion_1.5L,ppo,179,71.6,velocity,lower_uy,-0.4097844660282135 +illusion_1.5L,ppo,180,72.0,velocity,upper_ux,1.3501476049423218 +illusion_1.5L,ppo,180,72.0,velocity,upper_uy,-0.4919775426387787 +illusion_1.5L,ppo,180,72.0,velocity,center_ux,0.9549384117126465 +illusion_1.5L,ppo,180,72.0,velocity,center_uy,-0.6656020879745483 +illusion_1.5L,ppo,180,72.0,velocity,lower_ux,0.5312365889549255 +illusion_1.5L,ppo,180,72.0,velocity,lower_uy,-0.29595956206321716 +illusion_1.5L,ppo,181,72.4,velocity,upper_ux,1.4404308795928955 +illusion_1.5L,ppo,181,72.4,velocity,upper_uy,-0.4396277666091919 +illusion_1.5L,ppo,181,72.4,velocity,center_ux,0.9105449914932251 +illusion_1.5L,ppo,181,72.4,velocity,center_uy,-0.3916574716567993 +illusion_1.5L,ppo,181,72.4,velocity,lower_ux,0.47930967807769775 +illusion_1.5L,ppo,181,72.4,velocity,lower_uy,-0.11700582504272461 +illusion_1.5L,ppo,182,72.8,velocity,upper_ux,1.4533315896987915 +illusion_1.5L,ppo,182,72.8,velocity,upper_uy,-0.2680068612098694 +illusion_1.5L,ppo,182,72.8,velocity,center_ux,0.8645622134208679 +illusion_1.5L,ppo,182,72.8,velocity,center_uy,0.018938129767775536 +illusion_1.5L,ppo,182,72.8,velocity,lower_ux,0.4810318052768707 +illusion_1.5L,ppo,182,72.8,velocity,lower_uy,0.08785189688205719 +illusion_1.5L,ppo,183,73.2,velocity,upper_ux,1.3337599039077759 +illusion_1.5L,ppo,183,73.2,velocity,upper_uy,0.031106431037187576 +illusion_1.5L,ppo,183,73.2,velocity,center_ux,0.8552826046943665 +illusion_1.5L,ppo,183,73.2,velocity,center_uy,0.4364808201789856 +illusion_1.5L,ppo,183,73.2,velocity,lower_ux,0.5419347882270813 +illusion_1.5L,ppo,183,73.2,velocity,lower_uy,0.25448843836784363 +illusion_1.5L,ppo,184,73.6,velocity,upper_ux,1.1564933061599731 +illusion_1.5L,ppo,184,73.6,velocity,upper_uy,0.29275843501091003 +illusion_1.5L,ppo,184,73.6,velocity,center_ux,0.880908191204071 +illusion_1.5L,ppo,184,73.6,velocity,center_uy,0.6659802794456482 +illusion_1.5L,ppo,184,73.6,velocity,lower_ux,0.6478990912437439 +illusion_1.5L,ppo,184,73.6,velocity,lower_uy,0.33040255308151245 +illusion_1.5L,ppo,185,74.0,velocity,upper_ux,1.0400415658950806 +illusion_1.5L,ppo,185,74.0,velocity,upper_uy,0.37981730699539185 +illusion_1.5L,ppo,185,74.0,velocity,center_ux,0.9125570058822632 +illusion_1.5L,ppo,185,74.0,velocity,center_uy,0.6625697612762451 +illusion_1.5L,ppo,185,74.0,velocity,lower_ux,0.7564702033996582 +illusion_1.5L,ppo,185,74.0,velocity,lower_uy,0.35226088762283325 +illusion_1.5L,ppo,186,74.4,velocity,upper_ux,0.9924215078353882 +illusion_1.5L,ppo,186,74.4,velocity,upper_uy,0.3634769916534424 +illusion_1.5L,ppo,186,74.4,velocity,center_ux,0.932668149471283 +illusion_1.5L,ppo,186,74.4,velocity,center_uy,0.5918205380439758 +illusion_1.5L,ppo,186,74.4,velocity,lower_ux,0.8413383364677429 +illusion_1.5L,ppo,186,74.4,velocity,lower_uy,0.37717047333717346 +illusion_1.5L,ppo,187,74.8,velocity,upper_ux,0.9602249264717102 +illusion_1.5L,ppo,187,74.8,velocity,upper_uy,0.3453940153121948 +illusion_1.5L,ppo,187,74.8,velocity,center_ux,0.9422553777694702 +illusion_1.5L,ppo,187,74.8,velocity,center_uy,0.5623142719268799 +illusion_1.5L,ppo,187,74.8,velocity,lower_ux,0.9105714559555054 +illusion_1.5L,ppo,187,74.8,velocity,lower_uy,0.4037210941314697 +illusion_1.5L,ppo,188,75.2,velocity,upper_ux,0.9188969135284424 +illusion_1.5L,ppo,188,75.2,velocity,upper_uy,0.3435644805431366 +illusion_1.5L,ppo,188,75.2,velocity,center_ux,0.9457932114601135 +illusion_1.5L,ppo,188,75.2,velocity,center_uy,0.5637401342391968 +illusion_1.5L,ppo,188,75.2,velocity,lower_ux,0.9715570211410522 +illusion_1.5L,ppo,188,75.2,velocity,lower_uy,0.4294188618659973 +illusion_1.5L,ppo,189,75.6,velocity,upper_ux,0.8681809306144714 +illusion_1.5L,ppo,189,75.6,velocity,upper_uy,0.3473459482192993 +illusion_1.5L,ppo,189,75.6,velocity,center_ux,0.945250928401947 +illusion_1.5L,ppo,189,75.6,velocity,center_uy,0.5857946872711182 +illusion_1.5L,ppo,189,75.6,velocity,lower_ux,1.0292725563049316 +illusion_1.5L,ppo,189,75.6,velocity,lower_uy,0.4566308259963989 +illusion_1.5L,ppo,190,76.0,velocity,upper_ux,0.8087942600250244 +illusion_1.5L,ppo,190,76.0,velocity,upper_uy,0.34654149413108826 +illusion_1.5L,ppo,190,76.0,velocity,center_ux,0.9396481513977051 +illusion_1.5L,ppo,190,76.0,velocity,center_uy,0.6258922219276428 +illusion_1.5L,ppo,190,76.0,velocity,lower_ux,1.0880316495895386 +illusion_1.5L,ppo,190,76.0,velocity,lower_uy,0.48700374364852905 +illusion_1.5L,ppo,191,76.4,velocity,upper_ux,0.7401161789894104 +illusion_1.5L,ppo,191,76.4,velocity,upper_uy,0.3295546770095825 +illusion_1.5L,ppo,191,76.4,velocity,center_ux,0.9247679114341736 +illusion_1.5L,ppo,191,76.4,velocity,center_uy,0.6788800954818726 +illusion_1.5L,ppo,191,76.4,velocity,lower_ux,1.152826189994812 +illusion_1.5L,ppo,191,76.4,velocity,lower_uy,0.5217790603637695 +illusion_1.5L,ppo,192,76.8,velocity,upper_ux,0.6646217107772827 +illusion_1.5L,ppo,192,76.8,velocity,upper_uy,0.28074780106544495 +illusion_1.5L,ppo,192,76.8,velocity,center_ux,0.89014732837677 +illusion_1.5L,ppo,192,76.8,velocity,center_uy,0.7126117944717407 +illusion_1.5L,ppo,192,76.8,velocity,lower_ux,1.230005145072937 +illusion_1.5L,ppo,192,76.8,velocity,lower_uy,0.5607175230979919 +illusion_1.5L,ppo,193,77.2,velocity,upper_ux,0.5926496386528015 +illusion_1.5L,ppo,193,77.2,velocity,upper_uy,0.18670165538787842 +illusion_1.5L,ppo,193,77.2,velocity,center_ux,0.8263320922851562 +illusion_1.5L,ppo,193,77.2,velocity,center_uy,0.6386873126029968 +illusion_1.5L,ppo,193,77.2,velocity,lower_ux,1.3228949308395386 +illusion_1.5L,ppo,193,77.2,velocity,lower_uy,0.5933601260185242 +illusion_1.5L,ppo,194,77.6,velocity,upper_ux,0.5443329215049744 +illusion_1.5L,ppo,194,77.6,velocity,upper_uy,0.05003690719604492 +illusion_1.5L,ppo,194,77.6,velocity,center_ux,0.7483336925506592 +illusion_1.5L,ppo,194,77.6,velocity,center_uy,0.39518916606903076 +illusion_1.5L,ppo,194,77.6,velocity,lower_ux,1.3989976644515991 +illusion_1.5L,ppo,194,77.6,velocity,lower_uy,0.5505886673927307 +illusion_1.5L,ppo,195,78.0,velocity,upper_ux,0.5440934896469116 +illusion_1.5L,ppo,195,78.0,velocity,upper_uy,-0.09633591771125793 +illusion_1.5L,ppo,195,78.0,velocity,center_ux,0.6805678606033325 +illusion_1.5L,ppo,195,78.0,velocity,center_uy,0.03319701552391052 +illusion_1.5L,ppo,195,78.0,velocity,lower_ux,1.3897885084152222 +illusion_1.5L,ppo,195,78.0,velocity,lower_uy,0.32600685954093933 +illusion_1.5L,ppo,196,78.4,velocity,upper_ux,0.6059436202049255 +illusion_1.5L,ppo,196,78.4,velocity,upper_uy,-0.19970369338989258 +illusion_1.5L,ppo,196,78.4,velocity,center_ux,0.6508486270904541 +illusion_1.5L,ppo,196,78.4,velocity,center_uy,-0.36403822898864746 +illusion_1.5L,ppo,196,78.4,velocity,lower_ux,1.2976431846618652 +illusion_1.5L,ppo,196,78.4,velocity,lower_uy,-0.0695953294634819 +illusion_1.5L,ppo,197,78.8,velocity,upper_ux,0.6993520259857178 +illusion_1.5L,ppo,197,78.8,velocity,upper_uy,-0.2552531957626343 +illusion_1.5L,ppo,197,78.8,velocity,center_ux,0.682582676410675 +illusion_1.5L,ppo,197,78.8,velocity,center_uy,-0.6562491059303284 +illusion_1.5L,ppo,197,78.8,velocity,lower_ux,1.1719290018081665 +illusion_1.5L,ppo,197,78.8,velocity,lower_uy,-0.48220595717430115 +illusion_1.5L,ppo,198,79.2,velocity,upper_ux,0.7833070158958435 +illusion_1.5L,ppo,198,79.2,velocity,upper_uy,-0.30597788095474243 +illusion_1.5L,ppo,198,79.2,velocity,center_ux,0.760416567325592 +illusion_1.5L,ppo,198,79.2,velocity,center_uy,-0.7192897796630859 +illusion_1.5L,ppo,198,79.2,velocity,lower_ux,1.0898141860961914 +illusion_1.5L,ppo,198,79.2,velocity,lower_uy,-0.6339950561523438 +illusion_1.5L,ppo,199,79.6,velocity,upper_ux,0.8563407063484192 +illusion_1.5L,ppo,199,79.6,velocity,upper_uy,-0.356424480676651 +illusion_1.5L,ppo,199,79.6,velocity,center_ux,0.8337088227272034 +illusion_1.5L,ppo,199,79.6,velocity,center_uy,-0.667727530002594 +illusion_1.5L,ppo,199,79.6,velocity,lower_ux,1.0464141368865967 +illusion_1.5L,ppo,199,79.6,velocity,lower_uy,-0.5746743083000183 +illusion_1.5L,ppo,200,80.0,velocity,upper_ux,0.925886332988739 +illusion_1.5L,ppo,200,80.0,velocity,upper_uy,-0.39953678846359253 +illusion_1.5L,ppo,200,80.0,velocity,center_ux,0.8798643350601196 +illusion_1.5L,ppo,200,80.0,velocity,center_uy,-0.6458398699760437 +illusion_1.5L,ppo,200,80.0,velocity,lower_ux,1.0037016868591309 +illusion_1.5L,ppo,200,80.0,velocity,lower_uy,-0.5129336714744568 +illusion_1.5L,ppo,201,80.4,velocity,upper_ux,0.994681715965271 +illusion_1.5L,ppo,201,80.4,velocity,upper_uy,-0.4374676048755646 +illusion_1.5L,ppo,201,80.4,velocity,center_ux,0.9069910645484924 +illusion_1.5L,ppo,201,80.4,velocity,center_uy,-0.6552162766456604 +illusion_1.5L,ppo,201,80.4,velocity,lower_ux,0.9519568085670471 +illusion_1.5L,ppo,201,80.4,velocity,lower_uy,-0.4827731251716614 +illusion_1.5L,ppo,202,80.8,velocity,upper_ux,1.066185474395752 +illusion_1.5L,ppo,202,80.8,velocity,upper_uy,-0.47258031368255615 +illusion_1.5L,ppo,202,80.8,velocity,center_ux,0.9211663603782654 +illusion_1.5L,ppo,202,80.8,velocity,center_uy,-0.6884252429008484 +illusion_1.5L,ppo,202,80.8,velocity,lower_ux,0.8917043209075928 +illusion_1.5L,ppo,202,80.8,velocity,lower_uy,-0.45964157581329346 +illusion_1.5L,ppo,203,81.2,velocity,upper_ux,1.1451300382614136 +illusion_1.5L,ppo,203,81.2,velocity,upper_uy,-0.5057485103607178 +illusion_1.5L,ppo,203,81.2,velocity,center_ux,0.9230047464370728 +illusion_1.5L,ppo,203,81.2,velocity,center_uy,-0.740047812461853 +illusion_1.5L,ppo,203,81.2,velocity,lower_ux,0.8196051716804504 +illusion_1.5L,ppo,203,81.2,velocity,lower_uy,-0.42613667249679565 +illusion_1.5L,ppo,204,81.6,velocity,upper_ux,1.2378123998641968 +illusion_1.5L,ppo,204,81.6,velocity,upper_uy,-0.5349968075752258 +illusion_1.5L,ppo,204,81.6,velocity,center_ux,0.9062342047691345 +illusion_1.5L,ppo,204,81.6,velocity,center_uy,-0.7648873329162598 +illusion_1.5L,ppo,204,81.6,velocity,lower_ux,0.7354896664619446 +illusion_1.5L,ppo,204,81.6,velocity,lower_uy,-0.36148208379745483 +illusion_1.5L,ppo,205,82.0,velocity,upper_ux,1.346103310585022 +illusion_1.5L,ppo,205,82.0,velocity,upper_uy,-0.5460923910140991 +illusion_1.5L,ppo,205,82.0,velocity,center_ux,0.8645471334457397 +illusion_1.5L,ppo,205,82.0,velocity,center_uy,-0.6521254777908325 +illusion_1.5L,ppo,205,82.0,velocity,lower_ux,0.6515522003173828 +illusion_1.5L,ppo,205,82.0,velocity,lower_uy,-0.24467147886753082 +illusion_1.5L,ppo,206,82.4,velocity,upper_ux,1.4346829652786255 +illusion_1.5L,ppo,206,82.4,velocity,upper_uy,-0.4768100380897522 +illusion_1.5L,ppo,206,82.4,velocity,center_ux,0.8071348071098328 +illusion_1.5L,ppo,206,82.4,velocity,center_uy,-0.35987380146980286 +illusion_1.5L,ppo,206,82.4,velocity,lower_ux,0.5922869443893433 +illusion_1.5L,ppo,206,82.4,velocity,lower_uy,-0.07623365521430969 +illusion_1.5L,ppo,207,82.8,velocity,upper_ux,1.4309180974960327 +illusion_1.5L,ppo,207,82.8,velocity,upper_uy,-0.23499809205532074 +illusion_1.5L,ppo,207,82.8,velocity,center_ux,0.7589973211288452 +illusion_1.5L,ppo,207,82.8,velocity,center_uy,0.05339813232421875 +illusion_1.5L,ppo,207,82.8,velocity,lower_ux,0.5855125188827515 +illusion_1.5L,ppo,207,82.8,velocity,lower_uy,0.10183117538690567 +illusion_1.5L,ppo,208,83.2,velocity,upper_ux,1.3080224990844727 +illusion_1.5L,ppo,208,83.2,velocity,upper_uy,0.16658784449100494 +illusion_1.5L,ppo,208,83.2,velocity,center_ux,0.7602960467338562 +illusion_1.5L,ppo,208,83.2,velocity,center_uy,0.4610763192176819 +illusion_1.5L,ppo,208,83.2,velocity,lower_ux,0.6421663761138916 +illusion_1.5L,ppo,208,83.2,velocity,lower_uy,0.223875030875206 +illusion_1.5L,ppo,209,83.6,velocity,upper_ux,1.1638950109481812 +illusion_1.5L,ppo,209,83.6,velocity,upper_uy,0.46557533740997314 +illusion_1.5L,ppo,209,83.6,velocity,center_ux,0.8167341351509094 +illusion_1.5L,ppo,209,83.6,velocity,center_uy,0.6654494404792786 +illusion_1.5L,ppo,209,83.6,velocity,lower_ux,0.7305362224578857 +illusion_1.5L,ppo,209,83.6,velocity,lower_uy,0.2833443582057953 +illusion_1.5L,ppo,210,84.0,velocity,upper_ux,1.0914055109024048 +illusion_1.5L,ppo,210,84.0,velocity,upper_uy,0.5071880221366882 +illusion_1.5L,ppo,210,84.0,velocity,center_ux,0.8856645226478577 +illusion_1.5L,ppo,210,84.0,velocity,center_uy,0.6493608951568604 +illusion_1.5L,ppo,210,84.0,velocity,lower_ux,0.8123183250427246 +illusion_1.5L,ppo,210,84.0,velocity,lower_uy,0.3236963152885437 +illusion_1.5L,ppo,211,84.4,velocity,upper_ux,1.0560386180877686 +illusion_1.5L,ppo,211,84.4,velocity,upper_uy,0.46460407972335815 +illusion_1.5L,ppo,211,84.4,velocity,center_ux,0.9363166689872742 +illusion_1.5L,ppo,211,84.4,velocity,center_uy,0.5963414311408997 +illusion_1.5L,ppo,211,84.4,velocity,lower_ux,0.8829692006111145 +illusion_1.5L,ppo,211,84.4,velocity,lower_uy,0.35585445165634155 +illusion_1.5L,ppo,212,84.8,velocity,upper_ux,1.0193063020706177 +illusion_1.5L,ppo,212,84.8,velocity,upper_uy,0.4353974461555481 +illusion_1.5L,ppo,212,84.8,velocity,center_ux,0.9701003432273865 +illusion_1.5L,ppo,212,84.8,velocity,center_uy,0.5702136158943176 +illusion_1.5L,ppo,212,84.8,velocity,lower_ux,0.9451467990875244 +illusion_1.5L,ppo,212,84.8,velocity,lower_uy,0.3806692063808441 +illusion_1.5L,ppo,213,85.2,velocity,upper_ux,0.9744230508804321 +illusion_1.5L,ppo,213,85.2,velocity,upper_uy,0.4107905924320221 +illusion_1.5L,ppo,213,85.2,velocity,center_ux,0.9939468502998352 +illusion_1.5L,ppo,213,85.2,velocity,center_uy,0.5625631213188171 +illusion_1.5L,ppo,213,85.2,velocity,lower_ux,1.0012317895889282 +illusion_1.5L,ppo,213,85.2,velocity,lower_uy,0.40189480781555176 +illusion_1.5L,ppo,214,85.6,velocity,upper_ux,0.9173464775085449 +illusion_1.5L,ppo,214,85.6,velocity,upper_uy,0.37338152527809143 +illusion_1.5L,ppo,214,85.6,velocity,center_ux,1.0104011297225952 +illusion_1.5L,ppo,214,85.6,velocity,center_uy,0.5684381127357483 +illusion_1.5L,ppo,214,85.6,velocity,lower_ux,1.0537608861923218 +illusion_1.5L,ppo,214,85.6,velocity,lower_uy,0.42245227098464966 +illusion_1.5L,ppo,215,86.0,velocity,upper_ux,0.8449598550796509 +illusion_1.5L,ppo,215,86.0,velocity,upper_uy,0.30680763721466064 +illusion_1.5L,ppo,215,86.0,velocity,center_ux,1.0183995962142944 +illusion_1.5L,ppo,215,86.0,velocity,center_uy,0.5833562612533569 +illusion_1.5L,ppo,215,86.0,velocity,lower_ux,1.1063621044158936 +illusion_1.5L,ppo,215,86.0,velocity,lower_uy,0.4446335732936859 +illusion_1.5L,ppo,216,86.4,velocity,upper_ux,0.7629475593566895 +illusion_1.5L,ppo,216,86.4,velocity,upper_uy,0.20009134709835052 +illusion_1.5L,ppo,216,86.4,velocity,center_ux,1.0098069906234741 +illusion_1.5L,ppo,216,86.4,velocity,center_uy,0.593754768371582 +illusion_1.5L,ppo,216,86.4,velocity,lower_ux,1.1640583276748657 +illusion_1.5L,ppo,216,86.4,velocity,lower_uy,0.4701445400714874 +illusion_1.5L,ppo,217,86.8,velocity,upper_ux,0.694235622882843 +illusion_1.5L,ppo,217,86.8,velocity,upper_uy,0.06419453024864197 +illusion_1.5L,ppo,217,86.8,velocity,center_ux,0.9649973511695862 +illusion_1.5L,ppo,217,86.8,velocity,center_uy,0.5568467974662781 +illusion_1.5L,ppo,217,86.8,velocity,lower_ux,1.2330623865127563 +illusion_1.5L,ppo,217,86.8,velocity,lower_uy,0.4988463521003723 +illusion_1.5L,ppo,218,87.2,velocity,upper_ux,0.6738479137420654 +illusion_1.5L,ppo,218,87.2,velocity,upper_uy,-0.0589439831674099 +illusion_1.5L,ppo,218,87.2,velocity,center_ux,0.8691257238388062 +illusion_1.5L,ppo,218,87.2,velocity,center_uy,0.3963354825973511 +illusion_1.5L,ppo,218,87.2,velocity,lower_ux,1.3167866468429565 +illusion_1.5L,ppo,218,87.2,velocity,lower_uy,0.5187318921089172 +illusion_1.5L,ppo,219,87.6,velocity,upper_ux,0.7076277136802673 +illusion_1.5L,ppo,219,87.6,velocity,upper_uy,-0.13741779327392578 +illusion_1.5L,ppo,219,87.6,velocity,center_ux,0.7459574937820435 +illusion_1.5L,ppo,219,87.6,velocity,center_uy,0.0805540680885315 +illusion_1.5L,ppo,219,87.6,velocity,lower_ux,1.3820010423660278 +illusion_1.5L,ppo,219,87.6,velocity,lower_uy,0.4668777883052826 +illusion_1.5L,ppo,220,88.0,velocity,upper_ux,0.7610827088356018 +illusion_1.5L,ppo,220,88.0,velocity,upper_uy,-0.19043996930122375 +illusion_1.5L,ppo,220,88.0,velocity,center_ux,0.6553574204444885 +illusion_1.5L,ppo,220,88.0,velocity,center_uy,-0.296567440032959 +illusion_1.5L,ppo,220,88.0,velocity,lower_ux,1.3471373319625854 +illusion_1.5L,ppo,220,88.0,velocity,lower_uy,0.2543807327747345 +illusion_1.5L,ppo,221,88.4,velocity,upper_ux,0.8117125630378723 +illusion_1.5L,ppo,221,88.4,velocity,upper_uy,-0.24152614176273346 +illusion_1.5L,ppo,221,88.4,velocity,center_ux,0.6639491319656372 +illusion_1.5L,ppo,221,88.4,velocity,center_uy,-0.5342966914176941 +illusion_1.5L,ppo,221,88.4,velocity,lower_ux,1.187099575996399 +illusion_1.5L,ppo,221,88.4,velocity,lower_uy,-0.08883032202720642 +illusion_1.5L,ppo,222,88.8,velocity,upper_ux,0.8611577749252319 +illusion_1.5L,ppo,222,88.8,velocity,upper_uy,-0.28901833295822144 +illusion_1.5L,ppo,222,88.8,velocity,center_ux,0.7524822950363159 +illusion_1.5L,ppo,222,88.8,velocity,center_uy,-0.5656256675720215 +illusion_1.5L,ppo,222,88.8,velocity,lower_ux,0.9684107899665833 +illusion_1.5L,ppo,222,88.8,velocity,lower_uy,-0.4331796169281006 +illusion_1.5L,ppo,223,89.2,velocity,upper_ux,0.9108035564422607 +illusion_1.5L,ppo,223,89.2,velocity,upper_uy,-0.3295154273509979 +illusion_1.5L,ppo,223,89.2,velocity,center_ux,0.8312771320343018 +illusion_1.5L,ppo,223,89.2,velocity,center_uy,-0.554259717464447 +illusion_1.5L,ppo,223,89.2,velocity,lower_ux,0.8522741198539734 +illusion_1.5L,ppo,223,89.2,velocity,lower_uy,-0.5668503642082214 +illusion_1.5L,ppo,224,89.6,velocity,upper_ux,0.9602193236351013 +illusion_1.5L,ppo,224,89.6,velocity,upper_uy,-0.36394089460372925 +illusion_1.5L,ppo,224,89.6,velocity,center_ux,0.8851580023765564 +illusion_1.5L,ppo,224,89.6,velocity,center_uy,-0.5596955418586731 +illusion_1.5L,ppo,224,89.6,velocity,lower_ux,0.8530229330062866 +illusion_1.5L,ppo,224,89.6,velocity,lower_uy,-0.5283229947090149 +illusion_1.5L,ppo,225,90.0,velocity,upper_ux,1.0090324878692627 +illusion_1.5L,ppo,225,90.0,velocity,upper_uy,-0.3943905532360077 +illusion_1.5L,ppo,225,90.0,velocity,center_ux,0.9250816106796265 +illusion_1.5L,ppo,225,90.0,velocity,center_uy,-0.5743862986564636 +illusion_1.5L,ppo,225,90.0,velocity,lower_ux,0.8553395867347717 +illusion_1.5L,ppo,225,90.0,velocity,lower_uy,-0.4826388955116272 +illusion_1.5L,ppo,226,90.4,velocity,upper_ux,1.0583916902542114 +illusion_1.5L,ppo,226,90.4,velocity,upper_uy,-0.4230787754058838 +illusion_1.5L,ppo,226,90.4,velocity,center_ux,0.955765962600708 +illusion_1.5L,ppo,226,90.4,velocity,center_uy,-0.5968198776245117 +illusion_1.5L,ppo,226,90.4,velocity,lower_ux,0.828481137752533 +illusion_1.5L,ppo,226,90.4,velocity,lower_uy,-0.45054158568382263 +illusion_1.5L,ppo,227,90.8,velocity,upper_ux,1.1107431650161743 +illusion_1.5L,ppo,227,90.8,velocity,upper_uy,-0.4521212875843048 +illusion_1.5L,ppo,227,90.8,velocity,center_ux,0.9777158498764038 +illusion_1.5L,ppo,227,90.8,velocity,center_uy,-0.6252636313438416 +illusion_1.5L,ppo,227,90.8,velocity,lower_ux,0.7798871397972107 +illusion_1.5L,ppo,227,90.8,velocity,lower_uy,-0.4070742726325989 +illusion_1.5L,ppo,228,91.2,velocity,upper_ux,1.1700241565704346 +illusion_1.5L,ppo,228,91.2,velocity,upper_uy,-0.48339948058128357 +illusion_1.5L,ppo,228,91.2,velocity,center_ux,0.9842414855957031 +illusion_1.5L,ppo,228,91.2,velocity,center_uy,-0.6503040790557861 +illusion_1.5L,ppo,228,91.2,velocity,lower_ux,0.715187668800354 +illusion_1.5L,ppo,228,91.2,velocity,lower_uy,-0.3295608460903168 +illusion_1.5L,ppo,229,91.6,velocity,upper_ux,1.2432228326797485 +illusion_1.5L,ppo,229,91.6,velocity,upper_uy,-0.516928493976593 +illusion_1.5L,ppo,229,91.6,velocity,center_ux,0.9581887125968933 +illusion_1.5L,ppo,229,91.6,velocity,center_uy,-0.6368498802185059 +illusion_1.5L,ppo,229,91.6,velocity,lower_ux,0.6446377635002136 +illusion_1.5L,ppo,229,91.6,velocity,lower_uy,-0.203395277261734 +illusion_1.5L,ppo,230,92.0,velocity,upper_ux,1.335879921913147 +illusion_1.5L,ppo,230,92.0,velocity,upper_uy,-0.5413060188293457 +illusion_1.5L,ppo,230,92.0,velocity,center_ux,0.8830844759941101 +illusion_1.5L,ppo,230,92.0,velocity,center_uy,-0.5068053603172302 +illusion_1.5L,ppo,230,92.0,velocity,lower_ux,0.5898509621620178 +illusion_1.5L,ppo,230,92.0,velocity,lower_uy,-0.03819708526134491 +illusion_1.5L,ppo,231,92.4,velocity,upper_ux,1.4190412759780884 +illusion_1.5L,ppo,231,92.4,velocity,upper_uy,-0.4933192729949951 +illusion_1.5L,ppo,231,92.4,velocity,center_ux,0.7797590494155884 +illusion_1.5L,ppo,231,92.4,velocity,center_uy,-0.2066885530948639 +illusion_1.5L,ppo,231,92.4,velocity,lower_ux,0.5846520066261292 +illusion_1.5L,ppo,231,92.4,velocity,lower_uy,0.1160363033413887 +illusion_1.5L,ppo,232,92.8,velocity,upper_ux,1.4046324491500854 +illusion_1.5L,ppo,232,92.8,velocity,upper_uy,-0.2811512351036072 +illusion_1.5L,ppo,232,92.8,velocity,center_ux,0.6962424516677856 +illusion_1.5L,ppo,232,92.8,velocity,center_uy,0.19798502326011658 +illusion_1.5L,ppo,232,92.8,velocity,lower_ux,0.642641007900238 +illusion_1.5L,ppo,232,92.8,velocity,lower_uy,0.20358452200889587 +illusion_1.5L,ppo,233,93.2,velocity,upper_ux,1.2666940689086914 +illusion_1.5L,ppo,233,93.2,velocity,upper_uy,0.05261596292257309 +illusion_1.5L,ppo,233,93.2,velocity,center_ux,0.6802343130111694 +illusion_1.5L,ppo,233,93.2,velocity,center_uy,0.5391529202461243 +illusion_1.5L,ppo,233,93.2,velocity,lower_ux,0.7241197228431702 +illusion_1.5L,ppo,233,93.2,velocity,lower_uy,0.24602411687374115 +illusion_1.5L,ppo,234,93.6,velocity,upper_ux,1.0546903610229492 +illusion_1.5L,ppo,234,93.6,velocity,upper_uy,0.3974395990371704 +illusion_1.5L,ppo,234,93.6,velocity,center_ux,0.7505517601966858 +illusion_1.5L,ppo,234,93.6,velocity,center_uy,0.6390880346298218 +illusion_1.5L,ppo,234,93.6,velocity,lower_ux,0.7948812246322632 +illusion_1.5L,ppo,234,93.6,velocity,lower_uy,0.2867477536201477 +illusion_1.5L,ppo,235,94.0,velocity,upper_ux,0.9090120196342468 +illusion_1.5L,ppo,235,94.0,velocity,upper_uy,0.5595601797103882 +illusion_1.5L,ppo,235,94.0,velocity,center_ux,0.8394530415534973 +illusion_1.5L,ppo,235,94.0,velocity,center_uy,0.6031233668327332 +illusion_1.5L,ppo,235,94.0,velocity,lower_ux,0.856834888458252 +illusion_1.5L,ppo,235,94.0,velocity,lower_uy,0.3242667019367218 +illusion_1.5L,ppo,236,94.4,velocity,upper_ux,0.8848266005516052 +illusion_1.5L,ppo,236,94.4,velocity,upper_uy,0.5340337157249451 +illusion_1.5L,ppo,236,94.4,velocity,center_ux,0.903123140335083 +illusion_1.5L,ppo,236,94.4,velocity,center_uy,0.5783854126930237 +illusion_1.5L,ppo,236,94.4,velocity,lower_ux,0.9131975769996643 +illusion_1.5L,ppo,236,94.4,velocity,lower_uy,0.35376304388046265 +illusion_1.5L,ppo,237,94.8,velocity,upper_ux,0.8829271197319031 +illusion_1.5L,ppo,237,94.8,velocity,upper_uy,0.4833676815032959 +illusion_1.5L,ppo,237,94.8,velocity,center_ux,0.9494304656982422 +illusion_1.5L,ppo,237,94.8,velocity,center_uy,0.5678470134735107 +illusion_1.5L,ppo,237,94.8,velocity,lower_ux,0.9646196961402893 +illusion_1.5L,ppo,237,94.8,velocity,lower_uy,0.37725770473480225 +illusion_1.5L,ppo,238,95.2,velocity,upper_ux,0.8604831099510193 +illusion_1.5L,ppo,238,95.2,velocity,upper_uy,0.43944981694221497 +illusion_1.5L,ppo,238,95.2,velocity,center_ux,0.9852169752120972 +illusion_1.5L,ppo,238,95.2,velocity,center_uy,0.5639761686325073 +illusion_1.5L,ppo,238,95.2,velocity,lower_ux,1.0119527578353882 +illusion_1.5L,ppo,238,95.2,velocity,lower_uy,0.39774081110954285 +illusion_1.5L,ppo,239,95.6,velocity,upper_ux,0.8174923658370972 +illusion_1.5L,ppo,239,95.6,velocity,upper_uy,0.3807048797607422 +illusion_1.5L,ppo,239,95.6,velocity,center_ux,1.0120161771774292 +illusion_1.5L,ppo,239,95.6,velocity,center_uy,0.564538300037384 +illusion_1.5L,ppo,239,95.6,velocity,lower_ux,1.056512713432312 +illusion_1.5L,ppo,239,95.6,velocity,lower_uy,0.4178088307380676 +illusion_1.5L,ppo,240,96.0,velocity,upper_ux,0.7565117478370667 +illusion_1.5L,ppo,240,96.0,velocity,upper_uy,0.2893136441707611 +illusion_1.5L,ppo,240,96.0,velocity,center_ux,1.0276250839233398 +illusion_1.5L,ppo,240,96.0,velocity,center_uy,0.5668522715568542 +illusion_1.5L,ppo,240,96.0,velocity,lower_ux,1.1004881858825684 +illusion_1.5L,ppo,240,96.0,velocity,lower_uy,0.4399366080760956 +illusion_1.5L,ppo,241,96.4,velocity,upper_ux,0.6858060956001282 +illusion_1.5L,ppo,241,96.4,velocity,upper_uy,0.1596480906009674 +illusion_1.5L,ppo,241,96.4,velocity,center_ux,1.0240520238876343 +illusion_1.5L,ppo,241,96.4,velocity,center_uy,0.564165472984314 +illusion_1.5L,ppo,241,96.4,velocity,lower_ux,1.1473853588104248 +illusion_1.5L,ppo,241,96.4,velocity,lower_uy,0.4664340615272522 +illusion_1.5L,ppo,242,96.8,velocity,upper_ux,0.6303237676620483 +illusion_1.5L,ppo,242,96.8,velocity,upper_uy,0.012524431571364403 +illusion_1.5L,ppo,242,96.8,velocity,center_ux,0.9855095148086548 +illusion_1.5L,ppo,242,96.8,velocity,center_uy,0.5366876721382141 +illusion_1.5L,ppo,242,96.8,velocity,lower_ux,1.2035657167434692 +illusion_1.5L,ppo,242,96.8,velocity,lower_uy,0.4988079071044922 +illusion_1.5L,ppo,243,97.2,velocity,upper_ux,0.6272948384284973 +illusion_1.5L,ppo,243,97.2,velocity,upper_uy,-0.10132819414138794 +illusion_1.5L,ppo,243,97.2,velocity,center_ux,0.8938694000244141 +illusion_1.5L,ppo,243,97.2,velocity,center_uy,0.43851444125175476 +illusion_1.5L,ppo,243,97.2,velocity,lower_ux,1.2768988609313965 +illusion_1.5L,ppo,243,97.2,velocity,lower_uy,0.5324008464813232 +illusion_1.5L,ppo,244,97.6,velocity,upper_ux,0.6824809908866882 +illusion_1.5L,ppo,244,97.6,velocity,upper_uy,-0.15154224634170532 +illusion_1.5L,ppo,244,97.6,velocity,center_ux,0.756408154964447 +illusion_1.5L,ppo,244,97.6,velocity,center_uy,0.2181374430656433 +illusion_1.5L,ppo,244,97.6,velocity,lower_ux,1.3594653606414795 +illusion_1.5L,ppo,244,97.6,velocity,lower_uy,0.5302927494049072 +illusion_1.5L,ppo,245,98.0,velocity,upper_ux,0.7512531876564026 +illusion_1.5L,ppo,245,98.0,velocity,upper_uy,-0.17233404517173767 +illusion_1.5L,ppo,245,98.0,velocity,center_ux,0.61814284324646 +illusion_1.5L,ppo,245,98.0,velocity,center_uy,-0.11052321642637253 +illusion_1.5L,ppo,245,98.0,velocity,lower_ux,1.3901933431625366 +illusion_1.5L,ppo,245,98.0,velocity,lower_uy,0.4071272313594818 +illusion_1.5L,ppo,246,98.4,velocity,upper_ux,0.8031427264213562 +illusion_1.5L,ppo,246,98.4,velocity,upper_uy,-0.20282132923603058 +illusion_1.5L,ppo,246,98.4,velocity,center_ux,0.5440477728843689 +illusion_1.5L,ppo,246,98.4,velocity,center_uy,-0.4337354600429535 +illusion_1.5L,ppo,246,98.4,velocity,lower_ux,1.3187439441680908 +illusion_1.5L,ppo,246,98.4,velocity,lower_uy,0.15892744064331055 +illusion_1.5L,ppo,247,98.8,velocity,upper_ux,0.8433409929275513 +illusion_1.5L,ppo,247,98.8,velocity,upper_uy,-0.24413317441940308 +illusion_1.5L,ppo,247,98.8,velocity,center_ux,0.6036420464515686 +illusion_1.5L,ppo,247,98.8,velocity,center_uy,-0.5728685259819031 +illusion_1.5L,ppo,247,98.8,velocity,lower_ux,1.1498935222625732 +illusion_1.5L,ppo,247,98.8,velocity,lower_uy,-0.14542868733406067 +illusion_1.5L,ppo,248,99.2,velocity,upper_ux,0.8822433948516846 +illusion_1.5L,ppo,248,99.2,velocity,upper_uy,-0.28558599948883057 +illusion_1.5L,ppo,248,99.2,velocity,center_ux,0.7337531447410583 +illusion_1.5L,ppo,248,99.2,velocity,center_uy,-0.5475004315376282 +illusion_1.5L,ppo,248,99.2,velocity,lower_ux,0.9111382365226746 +illusion_1.5L,ppo,248,99.2,velocity,lower_uy,-0.4501551687717438 +illusion_1.5L,ppo,249,99.6,velocity,upper_ux,0.9223451018333435 +illusion_1.5L,ppo,249,99.6,velocity,upper_uy,-0.32289835810661316 +illusion_1.5L,ppo,249,99.6,velocity,center_ux,0.8250043988227844 +illusion_1.5L,ppo,249,99.6,velocity,center_uy,-0.5260246396064758 +illusion_1.5L,ppo,249,99.6,velocity,lower_ux,0.7437026500701904 +illusion_1.5L,ppo,249,99.6,velocity,lower_uy,-0.5991511940956116 +illusion_1.5L,ppo,250,100.0,velocity,upper_ux,0.963030993938446 +illusion_1.5L,ppo,250,100.0,velocity,upper_uy,-0.35656723380088806 +illusion_1.5L,ppo,250,100.0,velocity,center_ux,0.8799736499786377 +illusion_1.5L,ppo,250,100.0,velocity,center_uy,-0.5290279388427734 +illusion_1.5L,ppo,250,100.0,velocity,lower_ux,0.739168643951416 +illusion_1.5L,ppo,250,100.0,velocity,lower_uy,-0.5532381534576416 +illusion_1.5L,ppo,251,100.4,velocity,upper_ux,1.0039376020431519 +illusion_1.5L,ppo,251,100.4,velocity,upper_uy,-0.38841524720191956 +illusion_1.5L,ppo,251,100.4,velocity,center_ux,0.9171106815338135 +illusion_1.5L,ppo,251,100.4,velocity,center_uy,-0.5378686189651489 +illusion_1.5L,ppo,251,100.4,velocity,lower_ux,0.7795284390449524 +illusion_1.5L,ppo,251,100.4,velocity,lower_uy,-0.4712104797363281 +illusion_1.5L,ppo,252,100.8,velocity,upper_ux,1.0457653999328613 +illusion_1.5L,ppo,252,100.8,velocity,upper_uy,-0.4208137094974518 +illusion_1.5L,ppo,252,100.8,velocity,center_ux,0.940066933631897 +illusion_1.5L,ppo,252,100.8,velocity,center_uy,-0.5505838990211487 +illusion_1.5L,ppo,252,100.8,velocity,lower_ux,0.7831653356552124 +illusion_1.5L,ppo,252,100.8,velocity,lower_uy,-0.4078758656978607 +illusion_1.5L,ppo,253,101.2,velocity,upper_ux,1.0911239385604858 +illusion_1.5L,ppo,253,101.2,velocity,upper_uy,-0.4560214579105377 +illusion_1.5L,ppo,253,101.2,velocity,center_ux,0.9473962187767029 +illusion_1.5L,ppo,253,101.2,velocity,center_uy,-0.5684888362884521 +illusion_1.5L,ppo,253,101.2,velocity,lower_ux,0.7530955672264099 +illusion_1.5L,ppo,253,101.2,velocity,lower_uy,-0.3399427831172943 +illusion_1.5L,ppo,254,101.6,velocity,upper_ux,1.144809365272522 +illusion_1.5L,ppo,254,101.6,velocity,upper_uy,-0.4955223500728607 +illusion_1.5L,ppo,254,101.6,velocity,center_ux,0.932919442653656 +illusion_1.5L,ppo,254,101.6,velocity,center_uy,-0.5903662443161011 +illusion_1.5L,ppo,254,101.6,velocity,lower_ux,0.7012391090393066 +illusion_1.5L,ppo,254,101.6,velocity,lower_uy,-0.24937480688095093 +illusion_1.5L,ppo,255,102.0,velocity,upper_ux,1.214975118637085 +illusion_1.5L,ppo,255,102.0,velocity,upper_uy,-0.5378987789154053 +illusion_1.5L,ppo,255,102.0,velocity,center_ux,0.8846904039382935 +illusion_1.5L,ppo,255,102.0,velocity,center_uy,-0.6000072956085205 +illusion_1.5L,ppo,255,102.0,velocity,lower_ux,0.639894962310791 +illusion_1.5L,ppo,255,102.0,velocity,lower_uy,-0.13181622326374054 +illusion_1.5L,ppo,256,102.4,velocity,upper_ux,1.3069871664047241 +illusion_1.5L,ppo,256,102.4,velocity,upper_uy,-0.5692746043205261 +illusion_1.5L,ppo,256,102.4,velocity,center_ux,0.7920523881912231 +illusion_1.5L,ppo,256,102.4,velocity,center_uy,-0.538834273815155 +illusion_1.5L,ppo,256,102.4,velocity,lower_ux,0.5923119783401489 +illusion_1.5L,ppo,256,102.4,velocity,lower_uy,-0.0027138807345181704 +illusion_1.5L,ppo,257,102.8,velocity,upper_ux,1.3966175317764282 +illusion_1.5L,ppo,257,102.8,velocity,upper_uy,-0.5384208559989929 +illusion_1.5L,ppo,257,102.8,velocity,center_ux,0.6757344603538513 +illusion_1.5L,ppo,257,102.8,velocity,center_uy,-0.3305545449256897 +illusion_1.5L,ppo,257,102.8,velocity,lower_ux,0.5924749970436096 +illusion_1.5L,ppo,257,102.8,velocity,lower_uy,0.10000159591436386 +illusion_1.5L,ppo,258,103.2,velocity,upper_ux,1.420271396636963 +illusion_1.5L,ppo,258,103.2,velocity,upper_uy,-0.39083099365234375 +illusion_1.5L,ppo,258,103.2,velocity,center_ux,0.5814938545227051 +illusion_1.5L,ppo,258,103.2,velocity,center_uy,0.00516277551651001 +illusion_1.5L,ppo,258,103.2,velocity,lower_ux,0.6469710469245911 +illusion_1.5L,ppo,258,103.2,velocity,lower_uy,0.15276014804840088 +illusion_1.5L,ppo,259,103.6,velocity,upper_ux,1.3550726175308228 +illusion_1.5L,ppo,259,103.6,velocity,upper_uy,-0.15056638419628143 +illusion_1.5L,ppo,259,103.6,velocity,center_ux,0.5395378470420837 +illusion_1.5L,ppo,259,103.6,velocity,center_uy,0.3623102605342865 +illusion_1.5L,ppo,259,103.6,velocity,lower_ux,0.717052161693573 +illusion_1.5L,ppo,259,103.6,velocity,lower_uy,0.18516547977924347 +illusion_1.5L,ppo,260,104.0,velocity,upper_ux,1.1921206712722778 +illusion_1.5L,ppo,260,104.0,velocity,upper_uy,0.16943153738975525 +illusion_1.5L,ppo,260,104.0,velocity,center_ux,0.5752491354942322 +illusion_1.5L,ppo,260,104.0,velocity,center_uy,0.6064109206199646 +illusion_1.5L,ppo,260,104.0,velocity,lower_ux,0.7744012475013733 +illusion_1.5L,ppo,260,104.0,velocity,lower_uy,0.2292335480451584 +illusion_1.5L,ppo,261,104.4,velocity,upper_ux,0.9680593013763428 +illusion_1.5L,ppo,261,104.4,velocity,upper_uy,0.49610885977745056 +illusion_1.5L,ppo,261,104.4,velocity,center_ux,0.688071072101593 +illusion_1.5L,ppo,261,104.4,velocity,center_uy,0.6363360285758972 +illusion_1.5L,ppo,261,104.4,velocity,lower_ux,0.8244093060493469 +illusion_1.5L,ppo,261,104.4,velocity,lower_uy,0.27865418791770935 +illusion_1.5L,ppo,262,104.8,velocity,upper_ux,0.8298947215080261 +illusion_1.5L,ppo,262,104.8,velocity,upper_uy,0.6316072940826416 +illusion_1.5L,ppo,262,104.8,velocity,center_ux,0.7933763861656189 +illusion_1.5L,ppo,262,104.8,velocity,center_uy,0.5938190817832947 +illusion_1.5L,ppo,262,104.8,velocity,lower_ux,0.8734361529350281 +illusion_1.5L,ppo,262,104.8,velocity,lower_uy,0.3227841258049011 +illusion_1.5L,ppo,263,105.2,velocity,upper_ux,0.8200985789299011 +illusion_1.5L,ppo,263,105.2,velocity,upper_uy,0.5797091126441956 +illusion_1.5L,ppo,263,105.2,velocity,center_ux,0.8591369390487671 +illusion_1.5L,ppo,263,105.2,velocity,center_uy,0.5778805613517761 +illusion_1.5L,ppo,263,105.2,velocity,lower_ux,0.9214349985122681 +illusion_1.5L,ppo,263,105.2,velocity,lower_uy,0.3610261082649231 +illusion_1.5L,ppo,264,105.6,velocity,upper_ux,0.8309921026229858 +illusion_1.5L,ppo,264,105.6,velocity,upper_uy,0.5107730627059937 +illusion_1.5L,ppo,264,105.6,velocity,center_ux,0.9003944993019104 +illusion_1.5L,ppo,264,105.6,velocity,center_uy,0.5751988887786865 +illusion_1.5L,ppo,264,105.6,velocity,lower_ux,0.9679906964302063 +illusion_1.5L,ppo,264,105.6,velocity,lower_uy,0.3962678015232086 +illusion_1.5L,ppo,265,106.0,velocity,upper_ux,0.8178690075874329 +illusion_1.5L,ppo,265,106.0,velocity,upper_uy,0.4582483768463135 +illusion_1.5L,ppo,265,106.0,velocity,center_ux,0.9234534502029419 +illusion_1.5L,ppo,265,106.0,velocity,center_uy,0.5806796550750732 +illusion_1.5L,ppo,265,106.0,velocity,lower_ux,1.0139906406402588 +illusion_1.5L,ppo,265,106.0,velocity,lower_uy,0.43180039525032043 +illusion_1.5L,ppo,266,106.4,velocity,upper_ux,0.7844829559326172 +illusion_1.5L,ppo,266,106.4,velocity,upper_uy,0.400858998298645 +illusion_1.5L,ppo,266,106.4,velocity,center_ux,0.9290268421173096 +illusion_1.5L,ppo,266,106.4,velocity,center_uy,0.5960525274276733 +illusion_1.5L,ppo,266,106.4,velocity,lower_ux,1.062474250793457 +illusion_1.5L,ppo,266,106.4,velocity,lower_uy,0.4706716537475586 +illusion_1.5L,ppo,267,106.8,velocity,upper_ux,0.7329673767089844 +illusion_1.5L,ppo,267,106.8,velocity,upper_uy,0.32417938113212585 +illusion_1.5L,ppo,267,106.8,velocity,center_ux,0.9133948683738708 +illusion_1.5L,ppo,267,106.8,velocity,center_uy,0.6224744319915771 +illusion_1.5L,ppo,267,106.8,velocity,lower_ux,1.1178913116455078 +illusion_1.5L,ppo,267,106.8,velocity,lower_uy,0.515326976776123 +illusion_1.5L,ppo,268,107.2,velocity,upper_ux,0.665363073348999 +illusion_1.5L,ppo,268,107.2,velocity,upper_uy,0.21972183883190155 +illusion_1.5L,ppo,268,107.2,velocity,center_ux,0.8677446842193604 +illusion_1.5L,ppo,268,107.2,velocity,center_uy,0.6513393521308899 +illusion_1.5L,ppo,268,107.2,velocity,lower_ux,1.1881310939788818 +illusion_1.5L,ppo,268,107.2,velocity,lower_uy,0.5665315389633179 +illusion_1.5L,ppo,269,107.6,velocity,upper_ux,0.5910658836364746 +illusion_1.5L,ppo,269,107.6,velocity,upper_uy,0.08717634528875351 +illusion_1.5L,ppo,269,107.6,velocity,center_ux,0.7803677320480347 +illusion_1.5L,ppo,269,107.6,velocity,center_uy,0.6349753141403198 +illusion_1.5L,ppo,269,107.6,velocity,lower_ux,1.280684232711792 +illusion_1.5L,ppo,269,107.6,velocity,lower_uy,0.6149272322654724 +illusion_1.5L,ppo,270,108.0,velocity,upper_ux,0.5385100245475769 +illusion_1.5L,ppo,270,108.0,velocity,upper_uy,-0.053859610110521317 +illusion_1.5L,ppo,270,108.0,velocity,center_ux,0.6651742458343506 +illusion_1.5L,ppo,270,108.0,velocity,center_uy,0.4783395826816559 +illusion_1.5L,ppo,270,108.0,velocity,lower_ux,1.374220609664917 +illusion_1.5L,ppo,270,108.0,velocity,lower_uy,0.5993655920028687 +illusion_1.5L,ppo,271,108.4,velocity,upper_ux,0.548936128616333 +illusion_1.5L,ppo,271,108.4,velocity,upper_uy,-0.15709306299686432 +illusion_1.5L,ppo,271,108.4,velocity,center_ux,0.5680890083312988 +illusion_1.5L,ppo,271,108.4,velocity,center_uy,0.1593477874994278 +illusion_1.5L,ppo,271,108.4,velocity,lower_ux,1.3982653617858887 +illusion_1.5L,ppo,271,108.4,velocity,lower_uy,0.42888393998146057 +illusion_1.5L,ppo,272,108.8,velocity,upper_ux,0.6283383965492249 +illusion_1.5L,ppo,272,108.8,velocity,upper_uy,-0.19320575892925262 +illusion_1.5L,ppo,272,108.8,velocity,center_ux,0.5200421810150146 +illusion_1.5L,ppo,272,108.8,velocity,center_uy,-0.2229689061641693 +illusion_1.5L,ppo,272,108.8,velocity,lower_ux,1.3481067419052124 +illusion_1.5L,ppo,272,108.8,velocity,lower_uy,0.15898358821868896 +illusion_1.5L,ppo,273,109.2,velocity,upper_ux,0.7208951711654663 +illusion_1.5L,ppo,273,109.2,velocity,upper_uy,-0.20461933314800262 +illusion_1.5L,ppo,273,109.2,velocity,center_ux,0.5333857536315918 +illusion_1.5L,ppo,273,109.2,velocity,center_uy,-0.5566344261169434 +illusion_1.5L,ppo,273,109.2,velocity,lower_ux,1.2290904521942139 +illusion_1.5L,ppo,273,109.2,velocity,lower_uy,-0.17790795862674713 +illusion_1.5L,ppo,274,109.6,velocity,upper_ux,0.7878785133361816 +illusion_1.5L,ppo,274,109.6,velocity,upper_uy,-0.23967665433883667 +illusion_1.5L,ppo,274,109.6,velocity,center_ux,0.619924008846283 +illusion_1.5L,ppo,274,109.6,velocity,center_uy,-0.7104660868644714 +illusion_1.5L,ppo,274,109.6,velocity,lower_ux,1.0551481246948242 +illusion_1.5L,ppo,274,109.6,velocity,lower_uy,-0.5425741672515869 +illusion_1.5L,ppo,275,110.0,velocity,upper_ux,0.8408205509185791 +illusion_1.5L,ppo,275,110.0,velocity,upper_uy,-0.2879136800765991 +illusion_1.5L,ppo,275,110.0,velocity,center_ux,0.749603271484375 +illusion_1.5L,ppo,275,110.0,velocity,center_uy,-0.6438419222831726 +illusion_1.5L,ppo,275,110.0,velocity,lower_ux,0.9346592426300049 +illusion_1.5L,ppo,275,110.0,velocity,lower_uy,-0.7205761075019836 +illusion_1.5L,ppo,276,110.4,velocity,upper_ux,0.8913697600364685 +illusion_1.5L,ppo,276,110.4,velocity,upper_uy,-0.33216819167137146 +illusion_1.5L,ppo,276,110.4,velocity,center_ux,0.8385277390480042 +illusion_1.5L,ppo,276,110.4,velocity,center_uy,-0.5780102014541626 +illusion_1.5L,ppo,276,110.4,velocity,lower_ux,0.9313246011734009 +illusion_1.5L,ppo,276,110.4,velocity,lower_uy,-0.6321504712104797 +illusion_1.5L,ppo,277,110.8,velocity,upper_ux,0.9411400556564331 +illusion_1.5L,ppo,277,110.8,velocity,upper_uy,-0.37139949202537537 +illusion_1.5L,ppo,277,110.8,velocity,center_ux,0.8869900703430176 +illusion_1.5L,ppo,277,110.8,velocity,center_uy,-0.5637447237968445 +illusion_1.5L,ppo,277,110.8,velocity,lower_ux,0.9498490691184998 +illusion_1.5L,ppo,277,110.8,velocity,lower_uy,-0.5186812877655029 +illusion_1.5L,ppo,278,111.2,velocity,upper_ux,0.9904877543449402 +illusion_1.5L,ppo,278,111.2,velocity,upper_uy,-0.40902984142303467 +illusion_1.5L,ppo,278,111.2,velocity,center_ux,0.9145649671554565 +illusion_1.5L,ppo,278,111.2,velocity,center_uy,-0.5658133029937744 +illusion_1.5L,ppo,278,111.2,velocity,lower_ux,0.9325798749923706 +illusion_1.5L,ppo,278,111.2,velocity,lower_uy,-0.4610527455806732 +illusion_1.5L,ppo,279,111.6,velocity,upper_ux,1.0420070886611938 +illusion_1.5L,ppo,279,111.6,velocity,upper_uy,-0.44857919216156006 +illusion_1.5L,ppo,279,111.6,velocity,center_ux,0.9250888228416443 +illusion_1.5L,ppo,279,111.6,velocity,center_uy,-0.5792564153671265 +illusion_1.5L,ppo,279,111.6,velocity,lower_ux,0.892229437828064 +illusion_1.5L,ppo,279,111.6,velocity,lower_uy,-0.4159127175807953 +illusion_1.5L,ppo,280,112.0,velocity,upper_ux,1.0999270677566528 +illusion_1.5L,ppo,280,112.0,velocity,upper_uy,-0.4928828179836273 +illusion_1.5L,ppo,280,112.0,velocity,center_ux,0.9155706167221069 +illusion_1.5L,ppo,280,112.0,velocity,center_uy,-0.6049809455871582 +illusion_1.5L,ppo,280,112.0,velocity,lower_ux,0.8366620540618896 +illusion_1.5L,ppo,280,112.0,velocity,lower_uy,-0.3582417368888855 +illusion_1.5L,ppo,281,112.4,velocity,upper_ux,1.172072172164917 +illusion_1.5L,ppo,281,112.4,velocity,upper_uy,-0.5429344773292542 +illusion_1.5L,ppo,281,112.4,velocity,center_ux,0.8777884840965271 +illusion_1.5L,ppo,281,112.4,velocity,center_uy,-0.6366843581199646 +illusion_1.5L,ppo,281,112.4,velocity,lower_ux,0.7678588628768921 +illusion_1.5L,ppo,281,112.4,velocity,lower_uy,-0.27507495880126953 +illusion_1.5L,ppo,282,112.8,velocity,upper_ux,1.2662259340286255 +illusion_1.5L,ppo,282,112.8,velocity,upper_uy,-0.5897979140281677 +illusion_1.5L,ppo,282,112.8,velocity,center_ux,0.80029296875 +illusion_1.5L,ppo,282,112.8,velocity,center_uy,-0.6294395327568054 +illusion_1.5L,ppo,282,112.8,velocity,lower_ux,0.6925534605979919 +illusion_1.5L,ppo,282,112.8,velocity,lower_uy,-0.16042573750019073 +illusion_1.5L,ppo,283,113.2,velocity,upper_ux,1.3633017539978027 +illusion_1.5L,ppo,283,113.2,velocity,upper_uy,-0.5790181756019592 +illusion_1.5L,ppo,283,113.2,velocity,center_ux,0.6965342164039612 +illusion_1.5L,ppo,283,113.2,velocity,center_uy,-0.48132288455963135 +illusion_1.5L,ppo,283,113.2,velocity,lower_ux,0.6325672268867493 +illusion_1.5L,ppo,283,113.2,velocity,lower_uy,-0.025586893782019615 +illusion_1.5L,ppo,284,113.6,velocity,upper_ux,1.3973406553268433 +illusion_1.5L,ppo,284,113.6,velocity,upper_uy,-0.4283267855644226 +illusion_1.5L,ppo,284,113.6,velocity,center_ux,0.6119127869606018 +illusion_1.5L,ppo,284,113.6,velocity,center_uy,-0.1620316058397293 +illusion_1.5L,ppo,284,113.6,velocity,lower_ux,0.6207614541053772 +illusion_1.5L,ppo,284,113.6,velocity,lower_uy,0.09239785373210907 +illusion_1.5L,ppo,285,114.0,velocity,upper_ux,1.340267300605774 +illusion_1.5L,ppo,285,114.0,velocity,upper_uy,-0.13644807040691376 +illusion_1.5L,ppo,285,114.0,velocity,center_ux,0.5788604021072388 +illusion_1.5L,ppo,285,114.0,velocity,center_uy,0.22215405106544495 +illusion_1.5L,ppo,285,114.0,velocity,lower_ux,0.6655665040016174 +illusion_1.5L,ppo,285,114.0,velocity,lower_uy,0.16420882940292358 +illusion_1.5L,ppo,286,114.4,velocity,upper_ux,1.1970068216323853 +illusion_1.5L,ppo,286,114.4,velocity,upper_uy,0.2768639624118805 +illusion_1.5L,ppo,286,114.4,velocity,center_ux,0.6112460494041443 +illusion_1.5L,ppo,286,114.4,velocity,center_uy,0.5338181257247925 +illusion_1.5L,ppo,286,114.4,velocity,lower_ux,0.7308118939399719 +illusion_1.5L,ppo,286,114.4,velocity,lower_uy,0.212867870926857 +illusion_1.5L,ppo,287,114.8,velocity,upper_ux,1.0605671405792236 +illusion_1.5L,ppo,287,114.8,velocity,upper_uy,0.5940660238265991 +illusion_1.5L,ppo,287,114.8,velocity,center_ux,0.7006677985191345 +illusion_1.5L,ppo,287,114.8,velocity,center_uy,0.6475026607513428 +illusion_1.5L,ppo,287,114.8,velocity,lower_ux,0.7906987071037292 +illusion_1.5L,ppo,287,114.8,velocity,lower_uy,0.26408082246780396 +illusion_1.5L,ppo,288,115.2,velocity,upper_ux,1.008365273475647 +illusion_1.5L,ppo,288,115.2,velocity,upper_uy,0.6274977326393127 +illusion_1.5L,ppo,288,115.2,velocity,center_ux,0.7971837520599365 +illusion_1.5L,ppo,288,115.2,velocity,center_uy,0.6145460605621338 +illusion_1.5L,ppo,288,115.2,velocity,lower_ux,0.8469843864440918 +illusion_1.5L,ppo,288,115.2,velocity,lower_uy,0.31239232420921326 +illusion_1.5L,ppo,289,115.6,velocity,upper_ux,0.9951707720756531 +illusion_1.5L,ppo,289,115.6,velocity,upper_uy,0.5479964017868042 +illusion_1.5L,ppo,289,115.6,velocity,center_ux,0.8614760637283325 +illusion_1.5L,ppo,289,115.6,velocity,center_uy,0.5852060914039612 +illusion_1.5L,ppo,289,115.6,velocity,lower_ux,0.9016684889793396 +illusion_1.5L,ppo,289,115.6,velocity,lower_uy,0.35374194383621216 +illusion_1.5L,ppo,290,116.0,velocity,upper_ux,0.9730340838432312 +illusion_1.5L,ppo,290,116.0,velocity,upper_uy,0.49362099170684814 +illusion_1.5L,ppo,290,116.0,velocity,center_ux,0.9002768993377686 +illusion_1.5L,ppo,290,116.0,velocity,center_uy,0.5764716267585754 +illusion_1.5L,ppo,290,116.0,velocity,lower_ux,0.9550039768218994 +illusion_1.5L,ppo,290,116.0,velocity,lower_uy,0.3907889425754547 +illusion_1.5L,ppo,291,116.4,velocity,upper_ux,0.9387561678886414 +illusion_1.5L,ppo,291,116.4,velocity,upper_uy,0.4536503255367279 +illusion_1.5L,ppo,291,116.4,velocity,center_ux,0.9205199480056763 +illusion_1.5L,ppo,291,116.4,velocity,center_uy,0.5815297365188599 +illusion_1.5L,ppo,291,116.4,velocity,lower_ux,1.0081062316894531 +illusion_1.5L,ppo,291,116.4,velocity,lower_uy,0.4270803928375244 +illusion_1.5L,ppo,292,116.8,velocity,upper_ux,0.8927110433578491 +illusion_1.5L,ppo,292,116.8,velocity,upper_uy,0.40769073367118835 +illusion_1.5L,ppo,292,116.8,velocity,center_ux,0.9233211278915405 +illusion_1.5L,ppo,292,116.8,velocity,center_uy,0.6009775400161743 +illusion_1.5L,ppo,292,116.8,velocity,lower_ux,1.0643633604049683 +illusion_1.5L,ppo,292,116.8,velocity,lower_uy,0.4654313027858734 +illusion_1.5L,ppo,293,117.2,velocity,upper_ux,0.8317232728004456 +illusion_1.5L,ppo,293,117.2,velocity,upper_uy,0.34151485562324524 +illusion_1.5L,ppo,293,117.2,velocity,center_ux,0.9048347473144531 +illusion_1.5L,ppo,293,117.2,velocity,center_uy,0.634760320186615 +illusion_1.5L,ppo,293,117.2,velocity,lower_ux,1.1291255950927734 +illusion_1.5L,ppo,293,117.2,velocity,lower_uy,0.5075546503067017 +illusion_1.5L,ppo,294,117.6,velocity,upper_ux,0.7560928463935852 +illusion_1.5L,ppo,294,117.6,velocity,upper_uy,0.24331718683242798 +illusion_1.5L,ppo,294,117.6,velocity,center_ux,0.8556854724884033 +illusion_1.5L,ppo,294,117.6,velocity,center_uy,0.6637887358665466 +illusion_1.5L,ppo,294,117.6,velocity,lower_ux,1.2105131149291992 +illusion_1.5L,ppo,294,117.6,velocity,lower_uy,0.5518987774848938 +illusion_1.5L,ppo,295,118.0,velocity,upper_ux,0.6775875091552734 +illusion_1.5L,ppo,295,118.0,velocity,upper_uy,0.11125391721725464 +illusion_1.5L,ppo,295,118.0,velocity,center_ux,0.7707895040512085 +illusion_1.5L,ppo,295,118.0,velocity,center_uy,0.6066448092460632 +illusion_1.5L,ppo,295,118.0,velocity,lower_ux,1.3102240562438965 +illusion_1.5L,ppo,295,118.0,velocity,lower_uy,0.5805405974388123 +illusion_1.5L,ppo,296,118.4,velocity,upper_ux,0.6287220120429993 +illusion_1.5L,ppo,296,118.4,velocity,upper_uy,-0.03014102391898632 +illusion_1.5L,ppo,296,118.4,velocity,center_ux,0.67719566822052 +illusion_1.5L,ppo,296,118.4,velocity,center_uy,0.37012627720832825 +illusion_1.5L,ppo,296,118.4,velocity,lower_ux,1.3890867233276367 +illusion_1.5L,ppo,296,118.4,velocity,lower_uy,0.5242825150489807 +illusion_1.5L,ppo,297,118.8,velocity,upper_ux,0.6428588628768921 +illusion_1.5L,ppo,297,118.8,velocity,upper_uy,-0.13412164151668549 +illusion_1.5L,ppo,297,118.8,velocity,center_ux,0.6078468561172485 +illusion_1.5L,ppo,297,118.8,velocity,center_uy,-0.0018834179500117898 +illusion_1.5L,ppo,297,118.8,velocity,lower_ux,1.3885122537612915 +illusion_1.5L,ppo,297,118.8,velocity,lower_uy,0.3303329050540924 +illusion_1.5L,ppo,298,119.2,velocity,upper_ux,0.7049640417098999 +illusion_1.5L,ppo,298,119.2,velocity,upper_uy,-0.1917220503091812 +illusion_1.5L,ppo,298,119.2,velocity,center_ux,0.5883124470710754 +illusion_1.5L,ppo,298,119.2,velocity,center_uy,-0.3860417604446411 +illusion_1.5L,ppo,298,119.2,velocity,lower_ux,1.3004454374313354 +illusion_1.5L,ppo,298,119.2,velocity,lower_uy,0.011011677794158459 +illusion_1.5L,ppo,299,119.6,velocity,upper_ux,0.771640419960022 +illusion_1.5L,ppo,299,119.6,velocity,upper_uy,-0.24100050330162048 +illusion_1.5L,ppo,299,119.6,velocity,center_ux,0.6411032676696777 +illusion_1.5L,ppo,299,119.6,velocity,center_uy,-0.6355172395706177 +illusion_1.5L,ppo,299,119.6,velocity,lower_ux,1.1333786249160767 +illusion_1.5L,ppo,299,119.6,velocity,lower_uy,-0.4017202854156494 +illusion_1.5L,ppo,300,120.0,velocity,upper_ux,0.8324225544929504 +illusion_1.5L,ppo,300,120.0,velocity,upper_uy,-0.29224327206611633 +illusion_1.5L,ppo,300,120.0,velocity,center_ux,0.7452224493026733 +illusion_1.5L,ppo,300,120.0,velocity,center_uy,-0.6626677513122559 +illusion_1.5L,ppo,300,120.0,velocity,lower_ux,1.003739356994629 +illusion_1.5L,ppo,300,120.0,velocity,lower_uy,-0.6448037028312683 +illusion_1.5L,ppo,301,120.4,velocity,upper_ux,0.8921180963516235 +illusion_1.5L,ppo,301,120.4,velocity,upper_uy,-0.3359955847263336 +illusion_1.5L,ppo,301,120.4,velocity,center_ux,0.8341279029846191 +illusion_1.5L,ppo,301,120.4,velocity,center_uy,-0.6235132813453674 +illusion_1.5L,ppo,301,120.4,velocity,lower_ux,0.9705522656440735 +illusion_1.5L,ppo,301,120.4,velocity,lower_uy,-0.6129600405693054 +illusion_1.5L,ppo,302,120.8,velocity,upper_ux,0.9507591724395752 +illusion_1.5L,ppo,302,120.8,velocity,upper_uy,-0.37139785289764404 +illusion_1.5L,ppo,302,120.8,velocity,center_ux,0.8925517201423645 +illusion_1.5L,ppo,302,120.8,velocity,center_uy,-0.6149465441703796 +illusion_1.5L,ppo,302,120.8,velocity,lower_ux,0.9544425010681152 +illusion_1.5L,ppo,302,120.8,velocity,lower_uy,-0.5336079597473145 +illusion_1.5L,ppo,303,121.2,velocity,upper_ux,1.00825834274292 +illusion_1.5L,ppo,303,121.2,velocity,upper_uy,-0.4013206958770752 +illusion_1.5L,ppo,303,121.2,velocity,center_ux,0.9351834654808044 +illusion_1.5L,ppo,303,121.2,velocity,center_uy,-0.6241363286972046 +illusion_1.5L,ppo,303,121.2,velocity,lower_ux,0.9136728048324585 +illusion_1.5L,ppo,303,121.2,velocity,lower_uy,-0.4907574951648712 +illusion_1.5L,ppo,304,121.6,velocity,upper_ux,1.065601110458374 +illusion_1.5L,ppo,304,121.6,velocity,upper_uy,-0.42857691645622253 +illusion_1.5L,ppo,304,121.6,velocity,center_ux,0.9681363701820374 +illusion_1.5L,ppo,304,121.6,velocity,center_uy,-0.64459228515625 +illusion_1.5L,ppo,304,121.6,velocity,lower_ux,0.8530703186988831 +illusion_1.5L,ppo,304,121.6,velocity,lower_uy,-0.4527052342891693 +illusion_1.5L,ppo,305,122.0,velocity,upper_ux,1.1255574226379395 +illusion_1.5L,ppo,305,122.0,velocity,upper_uy,-0.45589762926101685 +illusion_1.5L,ppo,305,122.0,velocity,center_ux,0.9904882907867432 +illusion_1.5L,ppo,305,122.0,velocity,center_uy,-0.6676245331764221 +illusion_1.5L,ppo,305,122.0,velocity,lower_ux,0.7775045037269592 +illusion_1.5L,ppo,305,122.0,velocity,lower_uy,-0.3890972137451172 +illusion_1.5L,ppo,306,122.4,velocity,upper_ux,1.1922250986099243 +illusion_1.5L,ppo,306,122.4,velocity,upper_uy,-0.4857000410556793 +illusion_1.5L,ppo,306,122.4,velocity,center_ux,0.9894029498100281 +illusion_1.5L,ppo,306,122.4,velocity,center_uy,-0.663597583770752 +illusion_1.5L,ppo,306,122.4,velocity,lower_ux,0.6947492361068726 +illusion_1.5L,ppo,306,122.4,velocity,lower_uy,-0.2762468457221985 +illusion_1.5L,ppo,307,122.8,velocity,upper_ux,1.2713580131530762 +illusion_1.5L,ppo,307,122.8,velocity,upper_uy,-0.5166144371032715 +illusion_1.5L,ppo,307,122.8,velocity,center_ux,0.9434055089950562 +illusion_1.5L,ppo,307,122.8,velocity,center_uy,-0.5639296770095825 +illusion_1.5L,ppo,307,122.8,velocity,lower_ux,0.6238150596618652 +illusion_1.5L,ppo,307,122.8,velocity,lower_uy,-0.11110785603523254 +illusion_1.5L,ppo,308,123.2,velocity,upper_ux,1.3516916036605835 +illusion_1.5L,ppo,308,123.2,velocity,upper_uy,-0.5130075216293335 +illusion_1.5L,ppo,308,123.2,velocity,center_ux,0.8525630235671997 +illusion_1.5L,ppo,308,123.2,velocity,center_uy,-0.30243706703186035 +illusion_1.5L,ppo,308,123.2,velocity,lower_ux,0.5945634245872498 +illusion_1.5L,ppo,308,123.2,velocity,lower_uy,0.06880918145179749 +illusion_1.5L,ppo,309,123.6,velocity,upper_ux,1.3562358617782593 +illusion_1.5L,ppo,309,123.6,velocity,upper_uy,-0.34889012575149536 +illusion_1.5L,ppo,309,123.6,velocity,center_ux,0.755907416343689 +illusion_1.5L,ppo,309,123.6,velocity,center_uy,0.09257832169532776 +illusion_1.5L,ppo,309,123.6,velocity,lower_ux,0.6318492293357849 +illusion_1.5L,ppo,309,123.6,velocity,lower_uy,0.19484806060791016 +illusion_1.5L,ppo,310,124.0,velocity,upper_ux,1.231503963470459 +illusion_1.5L,ppo,310,124.0,velocity,upper_uy,0.006344431545585394 +illusion_1.5L,ppo,310,124.0,velocity,center_ux,0.7092829942703247 +illusion_1.5L,ppo,310,124.0,velocity,center_uy,0.4689934551715851 +illusion_1.5L,ppo,310,124.0,velocity,lower_ux,0.7121860980987549 +illusion_1.5L,ppo,310,124.0,velocity,lower_uy,0.2531934976577759 +illusion_1.5L,ppo,311,124.4,velocity,upper_ux,1.0492033958435059 +illusion_1.5L,ppo,311,124.4,velocity,upper_uy,0.3772211968898773 +illusion_1.5L,ppo,311,124.4,velocity,center_ux,0.7459932565689087 +illusion_1.5L,ppo,311,124.4,velocity,center_uy,0.6246130466461182 +illusion_1.5L,ppo,311,124.4,velocity,lower_ux,0.7895300388336182 +illusion_1.5L,ppo,311,124.4,velocity,lower_uy,0.2967865467071533 +illusion_1.5L,ppo,312,124.8,velocity,upper_ux,0.9320959448814392 +illusion_1.5L,ppo,312,124.8,velocity,upper_uy,0.5504003167152405 +illusion_1.5L,ppo,312,124.8,velocity,center_ux,0.8163478374481201 +illusion_1.5L,ppo,312,124.8,velocity,center_uy,0.6103194355964661 +illusion_1.5L,ppo,312,124.8,velocity,lower_ux,0.8570440411567688 +illusion_1.5L,ppo,312,124.8,velocity,lower_uy,0.3400965631008148 +illusion_1.5L,ppo,313,125.2,velocity,upper_ux,0.9124120473861694 +illusion_1.5L,ppo,313,125.2,velocity,upper_uy,0.524702787399292 +illusion_1.5L,ppo,313,125.2,velocity,center_ux,0.8682319521903992 +illusion_1.5L,ppo,313,125.2,velocity,center_uy,0.5973952412605286 +illusion_1.5L,ppo,313,125.2,velocity,lower_ux,0.9203768372535706 +illusion_1.5L,ppo,313,125.2,velocity,lower_uy,0.3771999478340149 +illusion_1.5L,ppo,314,125.6,velocity,upper_ux,0.9014720320701599 +illusion_1.5L,ppo,314,125.6,velocity,upper_uy,0.4758540093898773 +illusion_1.5L,ppo,314,125.6,velocity,center_ux,0.9031630158424377 +illusion_1.5L,ppo,314,125.6,velocity,center_uy,0.6090372204780579 +illusion_1.5L,ppo,314,125.6,velocity,lower_ux,0.9818156361579895 +illusion_1.5L,ppo,314,125.6,velocity,lower_uy,0.4087584614753723 +illusion_1.5L,ppo,315,126.0,velocity,upper_ux,0.8652346730232239 +illusion_1.5L,ppo,315,126.0,velocity,upper_uy,0.44580376148223877 +illusion_1.5L,ppo,315,126.0,velocity,center_ux,0.928730845451355 +illusion_1.5L,ppo,315,126.0,velocity,center_uy,0.6382114291191101 +illusion_1.5L,ppo,315,126.0,velocity,lower_ux,1.043092966079712 +illusion_1.5L,ppo,315,126.0,velocity,lower_uy,0.43650972843170166 +illusion_1.5L,ppo,316,126.4,velocity,upper_ux,0.8079016208648682 +illusion_1.5L,ppo,316,126.4,velocity,upper_uy,0.41305312514305115 +illusion_1.5L,ppo,316,126.4,velocity,center_ux,0.948538064956665 +illusion_1.5L,ppo,316,126.4,velocity,center_uy,0.6809427738189697 +illusion_1.5L,ppo,316,126.4,velocity,lower_ux,1.1067713499069214 +illusion_1.5L,ppo,316,126.4,velocity,lower_uy,0.4613446891307831 +illusion_1.5L,ppo,317,126.8,velocity,upper_ux,0.7337232232093811 +illusion_1.5L,ppo,317,126.8,velocity,upper_uy,0.3540046811103821 +illusion_1.5L,ppo,317,126.8,velocity,center_ux,0.9584535360336304 +illusion_1.5L,ppo,317,126.8,velocity,center_uy,0.7139241099357605 +illusion_1.5L,ppo,317,126.8,velocity,lower_ux,1.1752070188522339 +illusion_1.5L,ppo,317,126.8,velocity,lower_uy,0.4835798740386963 +illusion_1.5L,ppo,318,127.2,velocity,upper_ux,0.6543556451797485 +illusion_1.5L,ppo,318,127.2,velocity,upper_uy,0.24681253731250763 +illusion_1.5L,ppo,318,127.2,velocity,center_ux,0.9421703219413757 +illusion_1.5L,ppo,318,127.2,velocity,center_uy,0.6709651350975037 +illusion_1.5L,ppo,318,127.2,velocity,lower_ux,1.251318097114563 +illusion_1.5L,ppo,318,127.2,velocity,lower_uy,0.5023323893547058 +illusion_1.5L,ppo,319,127.6,velocity,upper_ux,0.5926757454872131 +illusion_1.5L,ppo,319,127.6,velocity,upper_uy,0.0888013169169426 +illusion_1.5L,ppo,319,127.6,velocity,center_ux,0.8858826160430908 +illusion_1.5L,ppo,319,127.6,velocity,center_uy,0.4818718731403351 +illusion_1.5L,ppo,319,127.6,velocity,lower_ux,1.3331842422485352 +illusion_1.5L,ppo,319,127.6,velocity,lower_uy,0.508752167224884 +illusion_1.5L,ppo,320,128.0,velocity,upper_ux,0.5771224498748779 +illusion_1.5L,ppo,320,128.0,velocity,upper_uy,-0.08409503102302551 +illusion_1.5L,ppo,320,128.0,velocity,center_ux,0.802284300327301 +illusion_1.5L,ppo,320,128.0,velocity,center_uy,0.14681711792945862 +illusion_1.5L,ppo,320,128.0,velocity,lower_ux,1.3877142667770386 +illusion_1.5L,ppo,320,128.0,velocity,lower_uy,0.45262327790260315 +illusion_1.5L,ppo,321,128.4,velocity,upper_ux,0.6253345012664795 +illusion_1.5L,ppo,321,128.4,velocity,upper_uy,-0.20923736691474915 +illusion_1.5L,ppo,321,128.4,velocity,center_ux,0.730631411075592 +illusion_1.5L,ppo,321,128.4,velocity,center_uy,-0.26483476161956787 +illusion_1.5L,ppo,321,128.4,velocity,lower_ux,1.334791660308838 +illusion_1.5L,ppo,321,128.4,velocity,lower_uy,0.23168498277664185 +illusion_1.5L,ppo,322,128.8,velocity,upper_ux,0.7111037373542786 +illusion_1.5L,ppo,322,128.8,velocity,upper_uy,-0.2749147415161133 +illusion_1.5L,ppo,322,128.8,velocity,center_ux,0.7193791270256042 +illusion_1.5L,ppo,322,128.8,velocity,center_uy,-0.5820849537849426 +illusion_1.5L,ppo,322,128.8,velocity,lower_ux,1.16457200050354 +illusion_1.5L,ppo,322,128.8,velocity,lower_uy,-0.1386798471212387 +illusion_1.5L,ppo,323,129.2,velocity,upper_ux,0.793525218963623 +illusion_1.5L,ppo,323,129.2,velocity,upper_uy,-0.3255923390388489 +illusion_1.5L,ppo,323,129.2,velocity,center_ux,0.7696208357810974 +illusion_1.5L,ppo,323,129.2,velocity,center_uy,-0.6700347065925598 +illusion_1.5L,ppo,323,129.2,velocity,lower_ux,0.9837743639945984 +illusion_1.5L,ppo,323,129.2,velocity,lower_uy,-0.4544966518878937 +illusion_1.5L,ppo,324,129.6,velocity,upper_ux,0.8674682378768921 +illusion_1.5L,ppo,324,129.6,velocity,upper_uy,-0.3719812035560608 +illusion_1.5L,ppo,324,129.6,velocity,center_ux,0.8294533491134644 +illusion_1.5L,ppo,324,129.6,velocity,center_uy,-0.646594226360321 +illusion_1.5L,ppo,324,129.6,velocity,lower_ux,0.9050646424293518 +illusion_1.5L,ppo,324,129.6,velocity,lower_uy,-0.5430793166160583 +illusion_1.5L,ppo,325,130.0,velocity,upper_ux,0.9379076957702637 +illusion_1.5L,ppo,325,130.0,velocity,upper_uy,-0.4107452630996704 +illusion_1.5L,ppo,325,130.0,velocity,center_ux,0.8713048696517944 +illusion_1.5L,ppo,325,130.0,velocity,center_uy,-0.6449191570281982 +illusion_1.5L,ppo,325,130.0,velocity,lower_ux,0.8880094885826111 +illusion_1.5L,ppo,325,130.0,velocity,lower_uy,-0.5110026597976685 +illusion_1.5L,ppo,326,130.4,velocity,upper_ux,1.0073684453964233 +illusion_1.5L,ppo,326,130.4,velocity,upper_uy,-0.44331416487693787 +illusion_1.5L,ppo,326,130.4,velocity,center_ux,0.901467502117157 +illusion_1.5L,ppo,326,130.4,velocity,center_uy,-0.6705334186553955 +illusion_1.5L,ppo,326,130.4,velocity,lower_ux,0.8578612804412842 +illusion_1.5L,ppo,326,130.4,velocity,lower_uy,-0.4849531948566437 +illusion_1.5L,ppo,327,130.8,velocity,upper_ux,1.0788943767547607 +illusion_1.5L,ppo,327,130.8,velocity,upper_uy,-0.4709051847457886 +illusion_1.5L,ppo,327,130.8,velocity,center_ux,0.9268357753753662 +illusion_1.5L,ppo,327,130.8,velocity,center_uy,-0.7174482941627502 +illusion_1.5L,ppo,327,130.8,velocity,lower_ux,0.80381178855896 +illusion_1.5L,ppo,327,130.8,velocity,lower_uy,-0.4720184803009033 +illusion_1.5L,ppo,328,131.2,velocity,upper_ux,1.1554245948791504 +illusion_1.5L,ppo,328,131.2,velocity,upper_uy,-0.49337294697761536 +illusion_1.5L,ppo,328,131.2,velocity,center_ux,0.9489797949790955 +illusion_1.5L,ppo,328,131.2,velocity,center_uy,-0.77396559715271 +illusion_1.5L,ppo,328,131.2,velocity,lower_ux,0.7299804091453552 +illusion_1.5L,ppo,328,131.2,velocity,lower_uy,-0.45116034150123596 +illusion_1.5L,ppo,329,131.6,velocity,upper_ux,1.240602970123291 +illusion_1.5L,ppo,329,131.6,velocity,upper_uy,-0.5090605020523071 +illusion_1.5L,ppo,329,131.6,velocity,center_ux,0.9587655067443848 +illusion_1.5L,ppo,329,131.6,velocity,center_uy,-0.7873126268386841 +illusion_1.5L,ppo,329,131.6,velocity,lower_ux,0.6420625448226929 +illusion_1.5L,ppo,329,131.6,velocity,lower_uy,-0.3963184654712677 +illusion_1.5L,ppo,330,132.0,velocity,upper_ux,1.3360460996627808 +illusion_1.5L,ppo,330,132.0,velocity,upper_uy,-0.5114039778709412 +illusion_1.5L,ppo,330,132.0,velocity,center_ux,0.9389618635177612 +illusion_1.5L,ppo,330,132.0,velocity,center_uy,-0.6738354563713074 +illusion_1.5L,ppo,330,132.0,velocity,lower_ux,0.5573924779891968 +illusion_1.5L,ppo,330,132.0,velocity,lower_uy,-0.28145697712898254 +illusion_1.5L,ppo,331,132.4,velocity,upper_ux,1.4252864122390747 +illusion_1.5L,ppo,331,132.4,velocity,upper_uy,-0.4700450897216797 +illusion_1.5L,ppo,331,132.4,velocity,center_ux,0.8886439800262451 +illusion_1.5L,ppo,331,132.4,velocity,center_uy,-0.4092177450656891 +illusion_1.5L,ppo,331,132.4,velocity,lower_ux,0.5035464763641357 +illusion_1.5L,ppo,331,132.4,velocity,lower_uy,-0.10601910948753357 +illusion_1.5L,ppo,332,132.8,velocity,upper_ux,1.4402759075164795 +illusion_1.5L,ppo,332,132.8,velocity,upper_uy,-0.305021196603775 +illusion_1.5L,ppo,332,132.8,velocity,center_ux,0.8319844007492065 +illusion_1.5L,ppo,332,132.8,velocity,center_uy,-0.005345595069229603 +illusion_1.5L,ppo,332,132.8,velocity,lower_ux,0.5020200610160828 +illusion_1.5L,ppo,332,132.8,velocity,lower_uy,0.09171546995639801 +illusion_1.5L,ppo,333,133.2,velocity,upper_ux,1.3266024589538574 +illusion_1.5L,ppo,333,133.2,velocity,upper_uy,0.011108368635177612 +illusion_1.5L,ppo,333,133.2,velocity,center_ux,0.8128738403320312 +illusion_1.5L,ppo,333,133.2,velocity,center_uy,0.421782910823822 +illusion_1.5L,ppo,333,133.2,velocity,lower_ux,0.5600444674491882 +illusion_1.5L,ppo,333,133.2,velocity,lower_uy,0.24779599905014038 +illusion_1.5L,ppo,334,133.6,velocity,upper_ux,1.1490423679351807 +illusion_1.5L,ppo,334,133.6,velocity,upper_uy,0.32086580991744995 +illusion_1.5L,ppo,334,133.6,velocity,center_ux,0.8411828875541687 +illusion_1.5L,ppo,334,133.6,velocity,center_uy,0.6677489280700684 +illusion_1.5L,ppo,334,133.6,velocity,lower_ux,0.6629959344863892 +illusion_1.5L,ppo,334,133.6,velocity,lower_uy,0.31654688715934753 +illusion_1.5L,ppo,335,134.0,velocity,upper_ux,1.0323125123977661 +illusion_1.5L,ppo,335,134.0,velocity,upper_uy,0.43904364109039307 +illusion_1.5L,ppo,335,134.0,velocity,center_ux,0.885680615901947 +illusion_1.5L,ppo,335,134.0,velocity,center_uy,0.6722990274429321 +illusion_1.5L,ppo,335,134.0,velocity,lower_ux,0.7653195858001709 +illusion_1.5L,ppo,335,134.0,velocity,lower_uy,0.3437498211860657 +illusion_1.5L,ppo,336,134.4,velocity,upper_ux,0.9949187636375427 +illusion_1.5L,ppo,336,134.4,velocity,upper_uy,0.41630569100379944 +illusion_1.5L,ppo,336,134.4,velocity,center_ux,0.9182860851287842 +illusion_1.5L,ppo,336,134.4,velocity,center_uy,0.6036921143531799 +illusion_1.5L,ppo,336,134.4,velocity,lower_ux,0.846587061882019 +illusion_1.5L,ppo,336,134.4,velocity,lower_uy,0.3742770254611969 +illusion_1.5L,ppo,337,134.8,velocity,upper_ux,0.9716069102287292 +illusion_1.5L,ppo,337,134.8,velocity,upper_uy,0.38567307591438293 +illusion_1.5L,ppo,337,134.8,velocity,center_ux,0.9357187747955322 +illusion_1.5L,ppo,337,134.8,velocity,center_uy,0.5753973722457886 +illusion_1.5L,ppo,337,134.8,velocity,lower_ux,0.9147550463676453 +illusion_1.5L,ppo,337,134.8,velocity,lower_uy,0.40372955799102783 +illusion_1.5L,ppo,338,135.2,velocity,upper_ux,0.9342924356460571 +illusion_1.5L,ppo,338,135.2,velocity,upper_uy,0.3751784563064575 +illusion_1.5L,ppo,338,135.2,velocity,center_ux,0.9444006085395813 +illusion_1.5L,ppo,338,135.2,velocity,center_uy,0.5772092342376709 +illusion_1.5L,ppo,338,135.2,velocity,lower_ux,0.9761584401130676 +illusion_1.5L,ppo,338,135.2,velocity,lower_uy,0.43139126896858215 +illusion_1.5L,ppo,339,135.6,velocity,upper_ux,0.8846806883811951 +illusion_1.5L,ppo,339,135.6,velocity,upper_uy,0.3712700605392456 +illusion_1.5L,ppo,339,135.6,velocity,center_ux,0.9469345808029175 +illusion_1.5L,ppo,339,135.6,velocity,center_uy,0.5994846224784851 +illusion_1.5L,ppo,339,135.6,velocity,lower_ux,1.0348819494247437 +illusion_1.5L,ppo,339,135.6,velocity,lower_uy,0.45981353521347046 +illusion_1.5L,ppo,340,136.0,velocity,upper_ux,0.824719250202179 +illusion_1.5L,ppo,340,136.0,velocity,upper_uy,0.36242538690567017 +illusion_1.5L,ppo,340,136.0,velocity,center_ux,0.9432842135429382 +illusion_1.5L,ppo,340,136.0,velocity,center_uy,0.640134871006012 +illusion_1.5L,ppo,340,136.0,velocity,lower_ux,1.0954229831695557 +illusion_1.5L,ppo,340,136.0,velocity,lower_uy,0.4907985329627991 +illusion_1.5L,ppo,341,136.4,velocity,upper_ux,0.7538223266601562 +illusion_1.5L,ppo,341,136.4,velocity,upper_uy,0.33603206276893616 +illusion_1.5L,ppo,341,136.4,velocity,center_ux,0.9292019605636597 +illusion_1.5L,ppo,341,136.4,velocity,center_uy,0.6921252608299255 +illusion_1.5L,ppo,341,136.4,velocity,lower_ux,1.1626660823822021 +illusion_1.5L,ppo,341,136.4,velocity,lower_uy,0.5255037546157837 +illusion_1.5L,ppo,342,136.8,velocity,upper_ux,0.6754637956619263 +illusion_1.5L,ppo,342,136.8,velocity,upper_uy,0.27560585737228394 +illusion_1.5L,ppo,342,136.8,velocity,center_ux,0.8935204148292542 +illusion_1.5L,ppo,342,136.8,velocity,center_uy,0.7153856754302979 +illusion_1.5L,ppo,342,136.8,velocity,lower_ux,1.2431036233901978 +illusion_1.5L,ppo,342,136.8,velocity,lower_uy,0.5635350942611694 +illusion_1.5L,ppo,343,137.2,velocity,upper_ux,0.6022560596466064 +illusion_1.5L,ppo,343,137.2,velocity,upper_uy,0.16846174001693726 +illusion_1.5L,ppo,343,137.2,velocity,center_ux,0.8276228904724121 +illusion_1.5L,ppo,343,137.2,velocity,center_uy,0.6149269342422485 +illusion_1.5L,ppo,343,137.2,velocity,lower_ux,1.3384345769882202 +illusion_1.5L,ppo,343,137.2,velocity,lower_uy,0.5909072756767273 +illusion_1.5L,ppo,344,137.6,velocity,upper_ux,0.5565841794013977 +illusion_1.5L,ppo,344,137.6,velocity,upper_uy,0.0219986941665411 +illusion_1.5L,ppo,344,137.6,velocity,center_ux,0.748538613319397 +illusion_1.5L,ppo,344,137.6,velocity,center_uy,0.34318313002586365 +illusion_1.5L,ppo,344,137.6,velocity,lower_ux,1.407851219177246 +illusion_1.5L,ppo,344,137.6,velocity,lower_uy,0.5263080596923828 +illusion_1.5L,ppo,345,138.0,velocity,upper_ux,0.5641681551933289 +illusion_1.5L,ppo,345,138.0,velocity,upper_uy,-0.12327402830123901 +illusion_1.5L,ppo,345,138.0,velocity,center_ux,0.6835447549819946 +illusion_1.5L,ppo,345,138.0,velocity,center_uy,-0.04122684895992279 +illusion_1.5L,ppo,345,138.0,velocity,lower_ux,1.384384274482727 +illusion_1.5L,ppo,345,138.0,velocity,lower_uy,0.2683791220188141 +illusion_1.5L,ppo,346,138.4,velocity,upper_ux,0.6324859857559204 +illusion_1.5L,ppo,346,138.4,velocity,upper_uy,-0.21653275191783905 +illusion_1.5L,ppo,346,138.4,velocity,center_ux,0.66535484790802 +illusion_1.5L,ppo,346,138.4,velocity,center_uy,-0.4386812150478363 +illusion_1.5L,ppo,346,138.4,velocity,lower_ux,1.2769062519073486 +illusion_1.5L,ppo,346,138.4,velocity,lower_uy,-0.1495712697505951 +illusion_1.5L,ppo,347,138.8,velocity,upper_ux,0.7234839797019958 +illusion_1.5L,ppo,347,138.8,velocity,upper_uy,-0.2685208022594452 +illusion_1.5L,ppo,347,138.8,velocity,center_ux,0.7121870517730713 +illusion_1.5L,ppo,347,138.8,velocity,center_uy,-0.6840088367462158 +illusion_1.5L,ppo,347,138.8,velocity,lower_ux,1.1489894390106201 +illusion_1.5L,ppo,347,138.8,velocity,lower_uy,-0.5247640013694763 +illusion_1.5L,ppo,348,139.2,velocity,upper_ux,0.8031710982322693 +illusion_1.5L,ppo,348,139.2,velocity,upper_uy,-0.3182288110256195 +illusion_1.5L,ppo,348,139.2,velocity,center_ux,0.7936552166938782 +illusion_1.5L,ppo,348,139.2,velocity,center_uy,-0.6992443203926086 +illusion_1.5L,ppo,348,139.2,velocity,lower_ux,1.0762684345245361 +illusion_1.5L,ppo,348,139.2,velocity,lower_uy,-0.6144476532936096 +illusion_1.5L,ppo,349,139.6,velocity,upper_ux,0.8742499351501465 +illusion_1.5L,ppo,349,139.6,velocity,upper_uy,-0.3643542528152466 +illusion_1.5L,ppo,349,139.6,velocity,center_ux,0.8599767088890076 +illusion_1.5L,ppo,349,139.6,velocity,center_uy,-0.649088978767395 +illusion_1.5L,ppo,349,139.6,velocity,lower_ux,1.0384747982025146 +illusion_1.5L,ppo,349,139.6,velocity,lower_uy,-0.5462508201599121 +illusion_1.5L,ppo,350,140.0,velocity,upper_ux,0.9417346715927124 +illusion_1.5L,ppo,350,140.0,velocity,upper_uy,-0.40322789549827576 +illusion_1.5L,ppo,350,140.0,velocity,center_ux,0.9008582234382629 +illusion_1.5L,ppo,350,140.0,velocity,center_uy,-0.6344732046127319 +illusion_1.5L,ppo,350,140.0,velocity,lower_ux,0.9962359070777893 +illusion_1.5L,ppo,350,140.0,velocity,lower_uy,-0.4969148337841034 +illusion_1.5L,ppo,351,140.4,velocity,upper_ux,1.0084261894226074 +illusion_1.5L,ppo,351,140.4,velocity,upper_uy,-0.4376484751701355 +illusion_1.5L,ppo,351,140.4,velocity,center_ux,0.926079273223877 +illusion_1.5L,ppo,351,140.4,velocity,center_uy,-0.6461873054504395 +illusion_1.5L,ppo,351,140.4,velocity,lower_ux,0.9447688460350037 +illusion_1.5L,ppo,351,140.4,velocity,lower_uy,-0.4725116789340973 +illusion_1.5L,ppo,352,140.8,velocity,upper_ux,1.077573537826538 +illusion_1.5L,ppo,352,140.8,velocity,upper_uy,-0.4699171781539917 +illusion_1.5L,ppo,352,140.8,velocity,center_ux,0.9401648044586182 +illusion_1.5L,ppo,352,140.8,velocity,center_uy,-0.6797890663146973 +illusion_1.5L,ppo,352,140.8,velocity,lower_ux,0.8841516971588135 +illusion_1.5L,ppo,352,140.8,velocity,lower_uy,-0.45017239451408386 +illusion_1.5L,ppo,353,141.2,velocity,upper_ux,1.1540488004684448 +illusion_1.5L,ppo,353,141.2,velocity,upper_uy,-0.5008699893951416 +illusion_1.5L,ppo,353,141.2,velocity,center_ux,0.9427366852760315 +illusion_1.5L,ppo,353,141.2,velocity,center_uy,-0.7284362316131592 +illusion_1.5L,ppo,353,141.2,velocity,lower_ux,0.8109763860702515 +illusion_1.5L,ppo,353,141.2,velocity,lower_uy,-0.41230490803718567 +illusion_1.5L,ppo,354,141.6,velocity,upper_ux,1.2440552711486816 +illusion_1.5L,ppo,354,141.6,velocity,upper_uy,-0.5288188457489014 +illusion_1.5L,ppo,354,141.6,velocity,center_ux,0.9246494770050049 +illusion_1.5L,ppo,354,141.6,velocity,center_uy,-0.7446883916854858 +illusion_1.5L,ppo,354,141.6,velocity,lower_ux,0.7263101935386658 +illusion_1.5L,ppo,354,141.6,velocity,lower_uy,-0.33694931864738464 +illusion_1.5L,ppo,355,142.0,velocity,upper_ux,1.3496562242507935 +illusion_1.5L,ppo,355,142.0,velocity,upper_uy,-0.5396162271499634 +illusion_1.5L,ppo,355,142.0,velocity,center_ux,0.8767746090888977 +illusion_1.5L,ppo,355,142.0,velocity,center_uy,-0.6183429956436157 +illusion_1.5L,ppo,355,142.0,velocity,lower_ux,0.644517719745636 +illusion_1.5L,ppo,355,142.0,velocity,lower_uy,-0.20601260662078857 +illusion_1.5L,ppo,356,142.4,velocity,upper_ux,1.4336072206497192 +illusion_1.5L,ppo,356,142.4,velocity,upper_uy,-0.4677678346633911 +illusion_1.5L,ppo,356,142.4,velocity,center_ux,0.8124058246612549 +illusion_1.5L,ppo,356,142.4,velocity,center_uy,-0.30784550309181213 +illusion_1.5L,ppo,356,142.4,velocity,lower_ux,0.5923376679420471 +illusion_1.5L,ppo,356,142.4,velocity,lower_uy,-0.029373491182923317 +illusion_1.5L,ppo,357,142.8,velocity,upper_ux,1.4162850379943848 +illusion_1.5L,ppo,357,142.8,velocity,upper_uy,-0.21826177835464478 +illusion_1.5L,ppo,357,142.8,velocity,center_ux,0.761945366859436 +illusion_1.5L,ppo,357,142.8,velocity,center_uy,0.11642252653837204 +illusion_1.5L,ppo,357,142.8,velocity,lower_ux,0.5985603332519531 +illusion_1.5L,ppo,357,142.8,velocity,lower_uy,0.13910798728466034 +illusion_1.5L,ppo,358,143.2,velocity,upper_ux,1.278372049331665 +illusion_1.5L,ppo,358,143.2,velocity,upper_uy,0.18057644367218018 +illusion_1.5L,ppo,358,143.2,velocity,center_ux,0.7653326392173767 +illusion_1.5L,ppo,358,143.2,velocity,center_uy,0.5050899982452393 +illusion_1.5L,ppo,358,143.2,velocity,lower_ux,0.6663573980331421 +illusion_1.5L,ppo,358,143.2,velocity,lower_uy,0.2399905025959015 +illusion_1.5L,ppo,359,143.6,velocity,upper_ux,1.1262636184692383 +illusion_1.5L,ppo,359,143.6,velocity,upper_uy,0.4710720181465149 +illusion_1.5L,ppo,359,143.6,velocity,center_ux,0.8238785266876221 +illusion_1.5L,ppo,359,143.6,velocity,center_uy,0.6642628312110901 +illusion_1.5L,ppo,359,143.6,velocity,lower_ux,0.753642201423645 +illusion_1.5L,ppo,359,143.6,velocity,lower_uy,0.29062825441360474 +illusion_1.5L,ppo,360,144.0,velocity,upper_ux,1.0588923692703247 +illusion_1.5L,ppo,360,144.0,velocity,upper_uy,0.5075016617774963 +illusion_1.5L,ppo,360,144.0,velocity,center_ux,0.8915581703186035 +illusion_1.5L,ppo,360,144.0,velocity,center_uy,0.6305902600288391 +illusion_1.5L,ppo,360,144.0,velocity,lower_ux,0.8308878540992737 +illusion_1.5L,ppo,360,144.0,velocity,lower_uy,0.32943809032440186 +illusion_1.5L,ppo,361,144.4,velocity,upper_ux,1.030755877494812 +illusion_1.5L,ppo,361,144.4,velocity,upper_uy,0.46568936109542847 +illusion_1.5L,ppo,361,144.4,velocity,center_ux,0.9398855566978455 +illusion_1.5L,ppo,361,144.4,velocity,center_uy,0.5856821537017822 +illusion_1.5L,ppo,361,144.4,velocity,lower_ux,0.8979854583740234 +illusion_1.5L,ppo,361,144.4,velocity,lower_uy,0.3599788248538971 +illusion_1.5L,ppo,362,144.8,velocity,upper_ux,0.9982460141181946 +illusion_1.5L,ppo,362,144.8,velocity,upper_uy,0.4379533529281616 +illusion_1.5L,ppo,362,144.8,velocity,center_ux,0.973050057888031 +illusion_1.5L,ppo,362,144.8,velocity,center_uy,0.5657021999359131 +illusion_1.5L,ppo,362,144.8,velocity,lower_ux,0.9576793909072876 +illusion_1.5L,ppo,362,144.8,velocity,lower_uy,0.38391029834747314 +illusion_1.5L,ppo,363,145.2,velocity,upper_ux,0.955373227596283 +illusion_1.5L,ppo,363,145.2,velocity,upper_uy,0.41332051157951355 +illusion_1.5L,ppo,363,145.2,velocity,center_ux,0.9970266222953796 +illusion_1.5L,ppo,363,145.2,velocity,center_uy,0.5615999102592468 +illusion_1.5L,ppo,363,145.2,velocity,lower_ux,1.0119564533233643 +illusion_1.5L,ppo,363,145.2,velocity,lower_uy,0.40483760833740234 +illusion_1.5L,ppo,364,145.6,velocity,upper_ux,0.8992940783500671 +illusion_1.5L,ppo,364,145.6,velocity,upper_uy,0.37342819571495056 +illusion_1.5L,ppo,364,145.6,velocity,center_ux,1.013907790184021 +illusion_1.5L,ppo,364,145.6,velocity,center_uy,0.5694962739944458 +illusion_1.5L,ppo,364,145.6,velocity,lower_ux,1.0635565519332886 +illusion_1.5L,ppo,364,145.6,velocity,lower_uy,0.4255787134170532 +illusion_1.5L,ppo,365,146.0,velocity,upper_ux,0.8274362683296204 +illusion_1.5L,ppo,365,146.0,velocity,upper_uy,0.3010959029197693 +illusion_1.5L,ppo,365,146.0,velocity,center_ux,1.0215392112731934 +illusion_1.5L,ppo,365,146.0,velocity,center_uy,0.5846583247184753 +illusion_1.5L,ppo,365,146.0,velocity,lower_ux,1.1158876419067383 +illusion_1.5L,ppo,365,146.0,velocity,lower_uy,0.44830799102783203 +illusion_1.5L,ppo,366,146.4,velocity,upper_ux,0.7467092871665955 +illusion_1.5L,ppo,366,146.4,velocity,upper_uy,0.18647731840610504 +illusion_1.5L,ppo,366,146.4,velocity,center_ux,1.0102145671844482 +illusion_1.5L,ppo,366,146.4,velocity,center_uy,0.5918391942977905 +illusion_1.5L,ppo,366,146.4,velocity,lower_ux,1.1741324663162231 +illusion_1.5L,ppo,366,146.4,velocity,lower_uy,0.47472548484802246 +illusion_1.5L,ppo,367,146.8,velocity,upper_ux,0.6823375821113586 +illusion_1.5L,ppo,367,146.8,velocity,upper_uy,0.04499746486544609 +illusion_1.5L,ppo,367,146.8,velocity,center_ux,0.9592615365982056 +illusion_1.5L,ppo,367,146.8,velocity,center_uy,0.5443924069404602 +illusion_1.5L,ppo,367,146.8,velocity,lower_ux,1.2450944185256958 +illusion_1.5L,ppo,367,146.8,velocity,lower_uy,0.5041419863700867 +illusion_1.5L,ppo,368,147.2,velocity,upper_ux,0.6695711016654968 +illusion_1.5L,ppo,368,147.2,velocity,upper_uy,-0.07660384476184845 +illusion_1.5L,ppo,368,147.2,velocity,center_ux,0.8566031455993652 +illusion_1.5L,ppo,368,147.2,velocity,center_uy,0.3655279874801636 +illusion_1.5L,ppo,368,147.2,velocity,lower_ux,1.3306907415390015 +illusion_1.5L,ppo,368,147.2,velocity,lower_uy,0.5204752087593079 +illusion_1.5L,ppo,369,147.6,velocity,upper_ux,0.7097473740577698 +illusion_1.5L,ppo,369,147.6,velocity,upper_uy,-0.1497010588645935 +illusion_1.5L,ppo,369,147.6,velocity,center_ux,0.7325170636177063 +illusion_1.5L,ppo,369,147.6,velocity,center_uy,0.03464861214160919 +illusion_1.5L,ppo,369,147.6,velocity,lower_ux,1.3900609016418457 +illusion_1.5L,ppo,369,147.6,velocity,lower_uy,0.4512375593185425 +illusion_1.5L,ppo,370,148.0,velocity,upper_ux,0.7651622295379639 +illusion_1.5L,ppo,370,148.0,velocity,upper_uy,-0.19987761974334717 +illusion_1.5L,ppo,370,148.0,velocity,center_ux,0.6499532461166382 +illusion_1.5L,ppo,370,148.0,velocity,center_uy,-0.3383104205131531 +illusion_1.5L,ppo,370,148.0,velocity,lower_ux,1.3410526514053345 +illusion_1.5L,ppo,370,148.0,velocity,lower_uy,0.21774473786354065 +illusion_1.5L,ppo,371,148.4,velocity,upper_ux,0.8163567185401917 +illusion_1.5L,ppo,371,148.4,velocity,upper_uy,-0.2494521588087082 +illusion_1.5L,ppo,371,148.4,velocity,center_ux,0.6724757552146912 +illusion_1.5L,ppo,371,148.4,velocity,center_uy,-0.5482873320579529 +illusion_1.5L,ppo,371,148.4,velocity,lower_ux,1.1686465740203857 +illusion_1.5L,ppo,371,148.4,velocity,lower_uy,-0.13325682282447815 +illusion_1.5L,ppo,372,148.8,velocity,upper_ux,0.8658570051193237 +illusion_1.5L,ppo,372,148.8,velocity,upper_uy,-0.29525721073150635 +illusion_1.5L,ppo,372,148.8,velocity,center_ux,0.7645979523658752 +illusion_1.5L,ppo,372,148.8,velocity,center_uy,-0.5644384622573853 +illusion_1.5L,ppo,372,148.8,velocity,lower_ux,0.9503961205482483 +illusion_1.5L,ppo,372,148.8,velocity,lower_uy,-0.4615055024623871 +illusion_1.5L,ppo,373,149.2,velocity,upper_ux,0.9153980016708374 +illusion_1.5L,ppo,373,149.2,velocity,upper_uy,-0.334107369184494 +illusion_1.5L,ppo,373,149.2,velocity,center_ux,0.8405749797821045 +illusion_1.5L,ppo,373,149.2,velocity,center_uy,-0.5533769726753235 +illusion_1.5L,ppo,373,149.2,velocity,lower_ux,0.8486804962158203 +illusion_1.5L,ppo,373,149.2,velocity,lower_uy,-0.566299557685852 +illusion_1.5L,ppo,374,149.6,velocity,upper_ux,0.9643003344535828 +illusion_1.5L,ppo,374,149.6,velocity,upper_uy,-0.3671523928642273 +illusion_1.5L,ppo,374,149.6,velocity,center_ux,0.8925304412841797 +illusion_1.5L,ppo,374,149.6,velocity,center_uy,-0.5586263537406921 +illusion_1.5L,ppo,374,149.6,velocity,lower_ux,0.8542125225067139 +illusion_1.5L,ppo,374,149.6,velocity,lower_uy,-0.520062267780304 +illusion_1.5L,ppo,375,150.0,velocity,upper_ux,1.01259183883667 +illusion_1.5L,ppo,375,150.0,velocity,upper_uy,-0.3964862823486328 +illusion_1.5L,ppo,375,150.0,velocity,center_ux,0.9314379096031189 +illusion_1.5L,ppo,375,150.0,velocity,center_uy,-0.5722813010215759 +illusion_1.5L,ppo,375,150.0,velocity,lower_ux,0.85504150390625 +illusion_1.5L,ppo,375,150.0,velocity,lower_uy,-0.4744679629802704 +illusion_1.5L,ppo,376,150.4,velocity,upper_ux,1.0611516237258911 +illusion_1.5L,ppo,376,150.4,velocity,upper_uy,-0.42441490292549133 +illusion_1.5L,ppo,376,150.4,velocity,center_ux,0.9611973762512207 +illusion_1.5L,ppo,376,150.4,velocity,center_uy,-0.5931321382522583 +illusion_1.5L,ppo,376,150.4,velocity,lower_ux,0.8267121911048889 +illusion_1.5L,ppo,376,150.4,velocity,lower_uy,-0.43980804085731506 +illusion_1.5L,ppo,377,150.8,velocity,upper_ux,1.1124458312988281 +illusion_1.5L,ppo,377,150.8,velocity,upper_uy,-0.45311829447746277 +illusion_1.5L,ppo,377,150.8,velocity,center_ux,0.9817718267440796 +illusion_1.5L,ppo,377,150.8,velocity,center_uy,-0.619083821773529 +illusion_1.5L,ppo,377,150.8,velocity,lower_ux,0.7766016125679016 +illusion_1.5L,ppo,377,150.8,velocity,lower_uy,-0.39122024178504944 +illusion_1.5L,ppo,378,151.2,velocity,upper_ux,1.1705876588821411 +illusion_1.5L,ppo,378,151.2,velocity,upper_uy,-0.4845691919326782 +illusion_1.5L,ppo,378,151.2,velocity,center_ux,0.9858232736587524 +illusion_1.5L,ppo,378,151.2,velocity,center_uy,-0.640550434589386 +illusion_1.5L,ppo,378,151.2,velocity,lower_ux,0.710767388343811 +illusion_1.5L,ppo,378,151.2,velocity,lower_uy,-0.30727487802505493 +illusion_1.5L,ppo,379,151.6,velocity,upper_ux,1.2428702116012573 +illusion_1.5L,ppo,379,151.6,velocity,upper_uy,-0.5188289880752563 +illusion_1.5L,ppo,379,151.6,velocity,center_ux,0.9557930827140808 +illusion_1.5L,ppo,379,151.6,velocity,center_uy,-0.6234232187271118 +illusion_1.5L,ppo,379,151.6,velocity,lower_ux,0.6406893730163574 +illusion_1.5L,ppo,379,151.6,velocity,lower_uy,-0.17647743225097656 +illusion_1.5L,ppo,380,152.0,velocity,upper_ux,1.3352470397949219 +illusion_1.5L,ppo,380,152.0,velocity,upper_uy,-0.5437031388282776 +illusion_1.5L,ppo,380,152.0,velocity,center_ux,0.8759713172912598 +illusion_1.5L,ppo,380,152.0,velocity,center_uy,-0.4924266040325165 +illusion_1.5L,ppo,380,152.0,velocity,lower_ux,0.5903695821762085 +illusion_1.5L,ppo,380,152.0,velocity,lower_uy,-0.013905704952776432 +illusion_1.5L,ppo,381,152.4,velocity,upper_ux,1.4177709817886353 +illusion_1.5L,ppo,381,152.4,velocity,upper_uy,-0.49432432651519775 +illusion_1.5L,ppo,381,152.4,velocity,center_ux,0.7678635120391846 +illusion_1.5L,ppo,381,152.4,velocity,center_uy,-0.19530098140239716 +illusion_1.5L,ppo,381,152.4,velocity,lower_ux,0.5939272046089172 +illusion_1.5L,ppo,381,152.4,velocity,lower_uy,0.12669320404529572 +illusion_1.5L,ppo,382,152.8,velocity,upper_ux,1.4040348529815674 +illusion_1.5L,ppo,382,152.8,velocity,upper_uy,-0.28330108523368835 +illusion_1.5L,ppo,382,152.8,velocity,center_ux,0.6806882619857788 +illusion_1.5L,ppo,382,152.8,velocity,center_uy,0.20451143383979797 +illusion_1.5L,ppo,382,152.8,velocity,lower_ux,0.6571249961853027 +illusion_1.5L,ppo,382,152.8,velocity,lower_uy,0.20078645646572113 +illusion_1.5L,ppo,383,153.2,velocity,upper_ux,1.2689837217330933 +illusion_1.5L,ppo,383,153.2,velocity,upper_uy,0.04316575825214386 +illusion_1.5L,ppo,383,153.2,velocity,center_ux,0.6636505126953125 +illusion_1.5L,ppo,383,153.2,velocity,center_uy,0.5395846366882324 +illusion_1.5L,ppo,383,153.2,velocity,lower_ux,0.7353625297546387 +illusion_1.5L,ppo,383,153.2,velocity,lower_uy,0.24114903807640076 +illusion_1.5L,ppo,384,153.6,velocity,upper_ux,1.054326057434082 +illusion_1.5L,ppo,384,153.6,velocity,upper_uy,0.38842257857322693 +illusion_1.5L,ppo,384,153.6,velocity,center_ux,0.7381939888000488 +illusion_1.5L,ppo,384,153.6,velocity,center_uy,0.6343973278999329 +illusion_1.5L,ppo,384,153.6,velocity,lower_ux,0.8019351363182068 +illusion_1.5L,ppo,384,153.6,velocity,lower_uy,0.28318625688552856 +illusion_1.5L,ppo,385,154.0,velocity,upper_ux,0.896689772605896 +illusion_1.5L,ppo,385,154.0,velocity,upper_uy,0.5644779801368713 +illusion_1.5L,ppo,385,154.0,velocity,center_ux,0.8312696814537048 +illusion_1.5L,ppo,385,154.0,velocity,center_uy,0.5983373522758484 +illusion_1.5L,ppo,385,154.0,velocity,lower_ux,0.8610265851020813 +illusion_1.5L,ppo,385,154.0,velocity,lower_uy,0.32139939069747925 +illusion_1.5L,ppo,386,154.4,velocity,upper_ux,0.8691784739494324 +illusion_1.5L,ppo,386,154.4,velocity,upper_uy,0.5419960021972656 +illusion_1.5L,ppo,386,154.4,velocity,center_ux,0.8970558047294617 +illusion_1.5L,ppo,386,154.4,velocity,center_uy,0.5749961137771606 +illusion_1.5L,ppo,386,154.4,velocity,lower_ux,0.9156330823898315 +illusion_1.5L,ppo,386,154.4,velocity,lower_uy,0.3517225682735443 +illusion_1.5L,ppo,387,154.8,velocity,upper_ux,0.871571958065033 +illusion_1.5L,ppo,387,154.8,velocity,upper_uy,0.4861967861652374 +illusion_1.5L,ppo,387,154.8,velocity,center_ux,0.9441164135932922 +illusion_1.5L,ppo,387,154.8,velocity,center_uy,0.5652969479560852 +illusion_1.5L,ppo,387,154.8,velocity,lower_ux,0.9657596349716187 +illusion_1.5L,ppo,387,154.8,velocity,lower_uy,0.37626948952674866 +illusion_1.5L,ppo,388,155.2,velocity,upper_ux,0.852547287940979 +illusion_1.5L,ppo,388,155.2,velocity,upper_uy,0.4383418560028076 +illusion_1.5L,ppo,388,155.2,velocity,center_ux,0.9796151518821716 +illusion_1.5L,ppo,388,155.2,velocity,center_uy,0.5617799162864685 +illusion_1.5L,ppo,388,155.2,velocity,lower_ux,1.012143850326538 +illusion_1.5L,ppo,388,155.2,velocity,lower_uy,0.3980180621147156 +illusion_1.5L,ppo,389,155.6,velocity,upper_ux,0.8115845322608948 +illusion_1.5L,ppo,389,155.6,velocity,upper_uy,0.3774341940879822 +illusion_1.5L,ppo,389,155.6,velocity,center_ux,1.0049782991409302 +illusion_1.5L,ppo,389,155.6,velocity,center_uy,0.5626590847969055 +illusion_1.5L,ppo,389,155.6,velocity,lower_ux,1.0559906959533691 +illusion_1.5L,ppo,389,155.6,velocity,lower_uy,0.4196246862411499 +illusion_1.5L,ppo,390,156.0,velocity,upper_ux,0.7521045207977295 +illusion_1.5L,ppo,390,156.0,velocity,upper_uy,0.2859651744365692 +illusion_1.5L,ppo,390,156.0,velocity,center_ux,1.0181068181991577 +illusion_1.5L,ppo,390,156.0,velocity,center_uy,0.5657992362976074 +illusion_1.5L,ppo,390,156.0,velocity,lower_ux,1.0996828079223633 +illusion_1.5L,ppo,390,156.0,velocity,lower_uy,0.4436401426792145 +illusion_1.5L,ppo,391,156.4,velocity,upper_ux,0.6824214458465576 +illusion_1.5L,ppo,391,156.4,velocity,upper_uy,0.15869100391864777 +illusion_1.5L,ppo,391,156.4,velocity,center_ux,1.011366844177246 +illusion_1.5L,ppo,391,156.4,velocity,center_uy,0.5653632283210754 +illusion_1.5L,ppo,391,156.4,velocity,lower_ux,1.1471790075302124 +illusion_1.5L,ppo,391,156.4,velocity,lower_uy,0.4724213778972626 +illusion_1.5L,ppo,392,156.8,velocity,upper_ux,0.6263821125030518 +illusion_1.5L,ppo,392,156.8,velocity,upper_uy,0.014960824511945248 +illusion_1.5L,ppo,392,156.8,velocity,center_ux,0.9692986011505127 +illusion_1.5L,ppo,392,156.8,velocity,center_uy,0.5425560474395752 +illusion_1.5L,ppo,392,156.8,velocity,lower_ux,1.205142617225647 +illusion_1.5L,ppo,392,156.8,velocity,lower_uy,0.5072226524353027 +illusion_1.5L,ppo,393,157.2,velocity,upper_ux,0.6210426092147827 +illusion_1.5L,ppo,393,157.2,velocity,upper_uy,-0.09750772267580032 +illusion_1.5L,ppo,393,157.2,velocity,center_ux,0.8751188516616821 +illusion_1.5L,ppo,393,157.2,velocity,center_uy,0.45061084628105164 +illusion_1.5L,ppo,393,157.2,velocity,lower_ux,1.28177809715271 +illusion_1.5L,ppo,393,157.2,velocity,lower_uy,0.5420126914978027 +illusion_1.5L,ppo,394,157.6,velocity,upper_ux,0.6743927597999573 +illusion_1.5L,ppo,394,157.6,velocity,upper_uy,-0.14820173382759094 +illusion_1.5L,ppo,394,157.6,velocity,center_ux,0.7381142973899841 +illusion_1.5L,ppo,394,157.6,velocity,center_uy,0.2345561981201172 +illusion_1.5L,ppo,394,157.6,velocity,lower_ux,1.3661117553710938 +illusion_1.5L,ppo,394,157.6,velocity,lower_uy,0.5350459814071655 +illusion_1.5L,ppo,395,158.0,velocity,upper_ux,0.7443360090255737 +illusion_1.5L,ppo,395,158.0,velocity,upper_uy,-0.16800785064697266 +illusion_1.5L,ppo,395,158.0,velocity,center_ux,0.6048433780670166 +illusion_1.5L,ppo,395,158.0,velocity,center_uy,-0.09296530485153198 +illusion_1.5L,ppo,395,158.0,velocity,lower_ux,1.3946092128753662 +illusion_1.5L,ppo,395,158.0,velocity,lower_uy,0.40266552567481995 +illusion_1.5L,ppo,396,158.4,velocity,upper_ux,0.7976194620132446 +illusion_1.5L,ppo,396,158.4,velocity,upper_uy,-0.19713890552520752 +illusion_1.5L,ppo,396,158.4,velocity,center_ux,0.5318897366523743 +illusion_1.5L,ppo,396,158.4,velocity,center_uy,-0.4250850975513458 +illusion_1.5L,ppo,396,158.4,velocity,lower_ux,1.3241984844207764 +illusion_1.5L,ppo,396,158.4,velocity,lower_uy,0.15525323152542114 +illusion_1.5L,ppo,397,158.8,velocity,upper_ux,0.8382210731506348 +illusion_1.5L,ppo,397,158.8,velocity,upper_uy,-0.23873521387577057 +illusion_1.5L,ppo,397,158.8,velocity,center_ux,0.5863116383552551 +illusion_1.5L,ppo,397,158.8,velocity,center_uy,-0.5841213464736938 +illusion_1.5L,ppo,397,158.8,velocity,lower_ux,1.160260558128357 +illusion_1.5L,ppo,397,158.8,velocity,lower_uy,-0.14500299096107483 +illusion_1.5L,ppo,398,159.2,velocity,upper_ux,0.8770571947097778 +illusion_1.5L,ppo,398,159.2,velocity,upper_uy,-0.28133925795555115 +illusion_1.5L,ppo,398,159.2,velocity,center_ux,0.7210835814476013 +illusion_1.5L,ppo,398,159.2,velocity,center_uy,-0.5596544742584229 +illusion_1.5L,ppo,398,159.2,velocity,lower_ux,0.9230506420135498 +illusion_1.5L,ppo,398,159.2,velocity,lower_uy,-0.4526556134223938 +illusion_1.5L,ppo,399,159.6,velocity,upper_ux,0.9172481298446655 +illusion_1.5L,ppo,399,159.6,velocity,upper_uy,-0.31972751021385193 +illusion_1.5L,ppo,399,159.6,velocity,center_ux,0.8190263509750366 +illusion_1.5L,ppo,399,159.6,velocity,center_uy,-0.5307742953300476 +illusion_1.5L,ppo,399,159.6,velocity,lower_ux,0.7507978677749634 +illusion_1.5L,ppo,399,159.6,velocity,lower_uy,-0.6089279055595398 +illusion_1.5L,ppo,0,0.0,force,front_fx,0.0019668666645884514 +illusion_1.5L,ppo,0,0.0,force,front_fy,-0.0004738658608403057 +illusion_1.5L,ppo,0,0.0,force,upper_fx,0.00243289303034544 +illusion_1.5L,ppo,0,0.0,force,upper_fy,0.0021826792508363724 +illusion_1.5L,ppo,0,0.0,force,lower_fx,0.0013182003749534488 +illusion_1.5L,ppo,0,0.0,force,lower_fy,-0.002933492651209235 +illusion_1.5L,ppo,1,0.4,force,front_fx,0.0020375216845422983 +illusion_1.5L,ppo,1,0.4,force,front_fy,-0.0009040882578119636 +illusion_1.5L,ppo,1,0.4,force,upper_fx,0.0034563448280096054 +illusion_1.5L,ppo,1,0.4,force,upper_fy,0.0012386930175125599 +illusion_1.5L,ppo,1,0.4,force,lower_fx,0.0017636005068197846 +illusion_1.5L,ppo,1,0.4,force,lower_fy,-0.0027858633548021317 +illusion_1.5L,ppo,2,0.8,force,front_fx,0.002056336961686611 +illusion_1.5L,ppo,2,0.8,force,front_fy,-0.0006817670655436814 +illusion_1.5L,ppo,2,0.8,force,upper_fx,0.003010205226019025 +illusion_1.5L,ppo,2,0.8,force,upper_fy,0.0007200751570053399 +illusion_1.5L,ppo,2,0.8,force,lower_fx,0.002676321193575859 +illusion_1.5L,ppo,2,0.8,force,lower_fy,-0.0017837202176451683 +illusion_1.5L,ppo,3,1.2,force,front_fx,0.002329855225980282 +illusion_1.5L,ppo,3,1.2,force,front_fy,0.00021416485833469778 +illusion_1.5L,ppo,3,1.2,force,upper_fx,0.0021366747096180916 +illusion_1.5L,ppo,3,1.2,force,upper_fy,0.0008633002871647477 +illusion_1.5L,ppo,3,1.2,force,lower_fx,0.0035515197087079287 +illusion_1.5L,ppo,3,1.2,force,lower_fy,-0.0005146919284015894 +illusion_1.5L,ppo,4,1.6,force,front_fx,0.0023361053317785263 +illusion_1.5L,ppo,4,1.6,force,front_fy,0.0011140548158437014 +illusion_1.5L,ppo,4,1.6,force,upper_fx,0.0019600477535277605 +illusion_1.5L,ppo,4,1.6,force,upper_fy,0.0012143157655373216 +illusion_1.5L,ppo,4,1.6,force,lower_fx,0.003920885734260082 +illusion_1.5L,ppo,4,1.6,force,lower_fy,0.00025738493422977626 +illusion_1.5L,ppo,5,2.0,force,front_fx,0.002098418539389968 +illusion_1.5L,ppo,5,2.0,force,front_fy,0.0010784853948280215 +illusion_1.5L,ppo,5,2.0,force,upper_fx,0.0021978511940687895 +illusion_1.5L,ppo,5,2.0,force,upper_fy,0.0011046540457755327 +illusion_1.5L,ppo,5,2.0,force,lower_fx,0.0035692248493433 +illusion_1.5L,ppo,5,2.0,force,lower_fy,0.00045197553117759526 +illusion_1.5L,ppo,6,2.4,force,front_fx,0.0020110001787543297 +illusion_1.5L,ppo,6,2.4,force,front_fy,0.0004244740994181484 +illusion_1.5L,ppo,6,2.4,force,upper_fx,0.0023927995935082436 +illusion_1.5L,ppo,6,2.4,force,upper_fy,0.00106708740349859 +illusion_1.5L,ppo,6,2.4,force,lower_fx,0.003120736451819539 +illusion_1.5L,ppo,6,2.4,force,lower_fy,0.0004338914586696774 +illusion_1.5L,ppo,7,2.8,force,front_fx,0.0018753623589873314 +illusion_1.5L,ppo,7,2.8,force,front_fy,9.880999277811497e-05 +illusion_1.5L,ppo,7,2.8,force,upper_fx,0.0025073415599763393 +illusion_1.5L,ppo,7,2.8,force,upper_fy,0.0016279136762022972 +illusion_1.5L,ppo,7,2.8,force,lower_fx,0.003278779797255993 +illusion_1.5L,ppo,7,2.8,force,lower_fy,0.0003506780485622585 +illusion_1.5L,ppo,8,3.2,force,front_fx,0.001807454857043922 +illusion_1.5L,ppo,8,3.2,force,front_fy,0.0004211741324979812 +illusion_1.5L,ppo,8,3.2,force,upper_fx,0.0023341053165495396 +illusion_1.5L,ppo,8,3.2,force,upper_fy,0.002377405995503068 +illusion_1.5L,ppo,8,3.2,force,lower_fx,0.0036741902586072683 +illusion_1.5L,ppo,8,3.2,force,lower_fy,0.00019149002037011087 +illusion_1.5L,ppo,9,3.6,force,front_fx,0.0018156878650188446 +illusion_1.5L,ppo,9,3.6,force,front_fy,0.0006849018973298371 +illusion_1.5L,ppo,9,3.6,force,upper_fx,0.00212554051540792 +illusion_1.5L,ppo,9,3.6,force,upper_fy,0.002743133343756199 +illusion_1.5L,ppo,9,3.6,force,lower_fx,0.003699439810588956 +illusion_1.5L,ppo,9,3.6,force,lower_fy,0.00025993981398642063 +illusion_1.5L,ppo,10,4.0,force,front_fx,0.0019084307132288814 +illusion_1.5L,ppo,10,4.0,force,front_fy,0.0004955362528562546 +illusion_1.5L,ppo,10,4.0,force,upper_fx,0.0023872412275522947 +illusion_1.5L,ppo,10,4.0,force,upper_fy,0.0024378723464906216 +illusion_1.5L,ppo,10,4.0,force,lower_fx,0.0033684258814901114 +illusion_1.5L,ppo,10,4.0,force,lower_fy,0.0005149596254341304 +illusion_1.5L,ppo,11,4.4,force,front_fx,0.002133866073563695 +illusion_1.5L,ppo,11,4.4,force,front_fy,1.7466869394411333e-05 +illusion_1.5L,ppo,11,4.4,force,upper_fx,0.0028800100553780794 +illusion_1.5L,ppo,11,4.4,force,upper_fy,0.0015754177002236247 +illusion_1.5L,ppo,11,4.4,force,lower_fx,0.002899663057178259 +illusion_1.5L,ppo,11,4.4,force,lower_fy,0.0007085696561262012 +illusion_1.5L,ppo,12,4.8,force,front_fx,0.002345702610909939 +illusion_1.5L,ppo,12,4.8,force,front_fy,-0.0005059323739260435 +illusion_1.5L,ppo,12,4.8,force,upper_fx,0.0031041025649756193 +illusion_1.5L,ppo,12,4.8,force,upper_fy,0.00085010303882882 +illusion_1.5L,ppo,12,4.8,force,lower_fx,0.002603387925773859 +illusion_1.5L,ppo,12,4.8,force,lower_fy,0.0008830121369101107 +illusion_1.5L,ppo,13,5.2,force,front_fx,0.0024029419291764498 +illusion_1.5L,ppo,13,5.2,force,front_fy,-0.0007037937175482512 +illusion_1.5L,ppo,13,5.2,force,upper_fx,0.0030067432671785355 +illusion_1.5L,ppo,13,5.2,force,upper_fy,0.00048323397641070187 +illusion_1.5L,ppo,13,5.2,force,lower_fx,0.002455337904393673 +illusion_1.5L,ppo,13,5.2,force,lower_fy,0.0010318680433556437 +illusion_1.5L,ppo,14,5.6,force,front_fx,0.002282294910401106 +illusion_1.5L,ppo,14,5.6,force,front_fy,-0.0005765570094808936 +illusion_1.5L,ppo,14,5.6,force,upper_fx,0.003004373051226139 +illusion_1.5L,ppo,14,5.6,force,upper_fy,0.00019137786875944585 +illusion_1.5L,ppo,14,5.6,force,lower_fx,0.0023795815650373697 +illusion_1.5L,ppo,14,5.6,force,lower_fy,0.0008951686322689056 +illusion_1.5L,ppo,15,6.0,force,front_fx,0.002077824668958783 +illusion_1.5L,ppo,15,6.0,force,front_fy,-0.0005699695320799947 +illusion_1.5L,ppo,15,6.0,force,upper_fx,0.003388606710359454 +illusion_1.5L,ppo,15,6.0,force,upper_fy,-7.828106754459441e-05 +illusion_1.5L,ppo,15,6.0,force,lower_fx,0.0024717850610613823 +illusion_1.5L,ppo,15,6.0,force,lower_fy,0.00034924090141430497 +illusion_1.5L,ppo,16,6.4,force,front_fx,0.0019342750310897827 +illusion_1.5L,ppo,16,6.4,force,front_fy,-0.0008078078390099108 +illusion_1.5L,ppo,16,6.4,force,upper_fx,0.0038859283085912466 +illusion_1.5L,ppo,16,6.4,force,upper_fy,-0.00020879207295365632 +illusion_1.5L,ppo,16,6.4,force,lower_fx,0.0025872329715639353 +illusion_1.5L,ppo,16,6.4,force,lower_fy,-0.0005217210855334997 +illusion_1.5L,ppo,17,6.8,force,front_fx,0.0018495197873562574 +illusion_1.5L,ppo,17,6.8,force,front_fy,-0.0010143584804609418 +illusion_1.5L,ppo,17,6.8,force,upper_fx,0.004040016792714596 +illusion_1.5L,ppo,17,6.8,force,upper_fy,-0.00014051736798137426 +illusion_1.5L,ppo,17,6.8,force,lower_fx,0.002560150809586048 +illusion_1.5L,ppo,17,6.8,force,lower_fy,-0.0013759044231846929 +illusion_1.5L,ppo,18,7.2,force,front_fx,0.0018308691214770079 +illusion_1.5L,ppo,18,7.2,force,front_fy,-0.0011114950757473707 +illusion_1.5L,ppo,18,7.2,force,upper_fx,0.003792951814830303 +illusion_1.5L,ppo,18,7.2,force,upper_fy,-1.9305469322716817e-05 +illusion_1.5L,ppo,18,7.2,force,lower_fx,0.0025159006472676992 +illusion_1.5L,ppo,18,7.2,force,lower_fy,-0.0019402519101276994 +illusion_1.5L,ppo,19,7.6,force,front_fx,0.0017989850603044033 +illusion_1.5L,ppo,19,7.6,force,front_fy,-0.0011421865783631802 +illusion_1.5L,ppo,19,7.6,force,upper_fx,0.0034932359121739864 +illusion_1.5L,ppo,19,7.6,force,upper_fy,-8.807646372588351e-05 +illusion_1.5L,ppo,19,7.6,force,lower_fx,0.0025137565098702908 +illusion_1.5L,ppo,19,7.6,force,lower_fy,-0.0023487780708819628 +illusion_1.5L,ppo,20,8.0,force,front_fx,0.0017754960572347045 +illusion_1.5L,ppo,20,8.0,force,front_fy,-0.0011311304988339543 +illusion_1.5L,ppo,20,8.0,force,upper_fx,0.003359655849635601 +illusion_1.5L,ppo,20,8.0,force,upper_fy,-0.00024577154545113444 +illusion_1.5L,ppo,20,8.0,force,lower_fx,0.0025795719120651484 +illusion_1.5L,ppo,20,8.0,force,lower_fy,-0.002695355797186494 +illusion_1.5L,ppo,21,8.4,force,front_fx,0.0018113680416718125 +illusion_1.5L,ppo,21,8.4,force,front_fy,-0.001138280495069921 +illusion_1.5L,ppo,21,8.4,force,upper_fx,0.0031487694941461086 +illusion_1.5L,ppo,21,8.4,force,upper_fy,-0.0003933779080398381 +illusion_1.5L,ppo,21,8.4,force,lower_fx,0.002698427764698863 +illusion_1.5L,ppo,21,8.4,force,lower_fy,-0.0028423937037587166 +illusion_1.5L,ppo,22,8.8,force,front_fx,0.0018889139173552394 +illusion_1.5L,ppo,22,8.8,force,front_fy,-0.0009996367152780294 +illusion_1.5L,ppo,22,8.8,force,upper_fx,0.002762733493000269 +illusion_1.5L,ppo,22,8.8,force,upper_fy,-0.0005549568450078368 +illusion_1.5L,ppo,22,8.8,force,lower_fx,0.002872403245419264 +illusion_1.5L,ppo,22,8.8,force,lower_fy,-0.0026857461780309677 +illusion_1.5L,ppo,23,9.2,force,front_fx,0.002037863479927182 +illusion_1.5L,ppo,23,9.2,force,front_fy,-0.0007097612251527607 +illusion_1.5L,ppo,23,9.2,force,upper_fx,0.0023762464988976717 +illusion_1.5L,ppo,23,9.2,force,upper_fy,-0.0007094857865013182 +illusion_1.5L,ppo,23,9.2,force,lower_fx,0.003103145631030202 +illusion_1.5L,ppo,23,9.2,force,lower_fy,-0.0023063726257532835 +illusion_1.5L,ppo,24,9.6,force,front_fx,0.002130432752892375 +illusion_1.5L,ppo,24,9.6,force,front_fy,-0.00045498524559661746 +illusion_1.5L,ppo,24,9.6,force,upper_fx,0.0021287789568305016 +illusion_1.5L,ppo,24,9.6,force,upper_fy,-0.0006929181981831789 +illusion_1.5L,ppo,24,9.6,force,lower_fx,0.003306954400613904 +illusion_1.5L,ppo,24,9.6,force,lower_fy,-0.001797018456272781 +illusion_1.5L,ppo,25,10.0,force,front_fx,0.002068562898784876 +illusion_1.5L,ppo,25,10.0,force,front_fy,-0.0004476408357731998 +illusion_1.5L,ppo,25,10.0,force,upper_fx,0.0021663710940629244 +illusion_1.5L,ppo,25,10.0,force,upper_fy,-0.0004227882600389421 +illusion_1.5L,ppo,25,10.0,force,lower_fx,0.003461112966760993 +illusion_1.5L,ppo,25,10.0,force,lower_fy,-0.0013693912187591195 +illusion_1.5L,ppo,26,10.4,force,front_fx,0.0019275732338428497 +illusion_1.5L,ppo,26,10.4,force,front_fy,-0.0005053814966231585 +illusion_1.5L,ppo,26,10.4,force,upper_fx,0.0024678693152964115 +illusion_1.5L,ppo,26,10.4,force,upper_fy,0.00015373916539829224 +illusion_1.5L,ppo,26,10.4,force,lower_fx,0.0036476573441177607 +illusion_1.5L,ppo,26,10.4,force,lower_fy,-0.00112443370744586 +illusion_1.5L,ppo,27,10.8,force,front_fx,0.0018325126729905605 +illusion_1.5L,ppo,27,10.8,force,front_fy,-0.0004047501424793154 +illusion_1.5L,ppo,27,10.8,force,upper_fx,0.002766137709841132 +illusion_1.5L,ppo,27,10.8,force,upper_fy,0.0009871753863990307 +illusion_1.5L,ppo,27,10.8,force,lower_fx,0.0038520386442542076 +illusion_1.5L,ppo,27,10.8,force,lower_fy,-0.0009928684448823333 +illusion_1.5L,ppo,28,11.2,force,front_fx,0.0018378188833594322 +illusion_1.5L,ppo,28,11.2,force,front_fy,-0.00018644398369360715 +illusion_1.5L,ppo,28,11.2,force,upper_fx,0.002866487018764019 +illusion_1.5L,ppo,28,11.2,force,upper_fy,0.0018441213760524988 +illusion_1.5L,ppo,28,11.2,force,lower_fx,0.0038734241388738155 +illusion_1.5L,ppo,28,11.2,force,lower_fy,-0.0007763219764456153 +illusion_1.5L,ppo,29,11.6,force,front_fx,0.0019209064776077867 +illusion_1.5L,ppo,29,11.6,force,front_fy,8.06856041890569e-06 +illusion_1.5L,ppo,29,11.6,force,upper_fx,0.002921310719102621 +illusion_1.5L,ppo,29,11.6,force,upper_fy,0.002420522505417466 +illusion_1.5L,ppo,29,11.6,force,lower_fx,0.0036790287122130394 +illusion_1.5L,ppo,29,11.6,force,lower_fy,-0.00034368145861662924 +illusion_1.5L,ppo,30,12.0,force,front_fx,0.002030559116974473 +illusion_1.5L,ppo,30,12.0,force,front_fy,7.610595639562234e-05 +illusion_1.5L,ppo,30,12.0,force,upper_fx,0.003133135149255395 +illusion_1.5L,ppo,30,12.0,force,upper_fy,0.002523529576137662 +illusion_1.5L,ppo,30,12.0,force,lower_fx,0.0033549435902386904 +illusion_1.5L,ppo,30,12.0,force,lower_fy,0.00020964774012099952 +illusion_1.5L,ppo,31,12.4,force,front_fx,0.0021648735273629427 +illusion_1.5L,ppo,31,12.4,force,front_fy,2.28978278755676e-05 +illusion_1.5L,ppo,31,12.4,force,upper_fx,0.0034536970779299736 +illusion_1.5L,ppo,31,12.4,force,upper_fy,0.0023106371518224478 +illusion_1.5L,ppo,31,12.4,force,lower_fx,0.0030387479346245527 +illusion_1.5L,ppo,31,12.4,force,lower_fy,0.0008126982138492167 +illusion_1.5L,ppo,32,12.8,force,front_fx,0.0023073919583112 +illusion_1.5L,ppo,32,12.8,force,front_fy,-3.60698250005953e-05 +illusion_1.5L,ppo,32,12.8,force,upper_fx,0.003662785980850458 +illusion_1.5L,ppo,32,12.8,force,upper_fy,0.0020289577078074217 +illusion_1.5L,ppo,32,12.8,force,lower_fx,0.0028139203786849976 +illusion_1.5L,ppo,32,12.8,force,lower_fy,0.0013900792691856623 +illusion_1.5L,ppo,33,13.2,force,front_fx,0.0023544731084257364 +illusion_1.5L,ppo,33,13.2,force,front_fy,0.00018472253577783704 +illusion_1.5L,ppo,33,13.2,force,upper_fx,0.0036665506195276976 +illusion_1.5L,ppo,33,13.2,force,upper_fy,0.0018149222014471889 +illusion_1.5L,ppo,33,13.2,force,lower_fx,0.0026569736655801535 +illusion_1.5L,ppo,33,13.2,force,lower_fy,0.0017980136908590794 +illusion_1.5L,ppo,34,13.6,force,front_fx,0.002285995287820697 +illusion_1.5L,ppo,34,13.6,force,front_fy,0.0005187997012399137 +illusion_1.5L,ppo,34,13.6,force,upper_fx,0.003600683296099305 +illusion_1.5L,ppo,34,13.6,force,upper_fy,0.0017410560976713896 +illusion_1.5L,ppo,34,13.6,force,lower_fx,0.0026259685400873423 +illusion_1.5L,ppo,34,13.6,force,lower_fy,0.0018198234029114246 +illusion_1.5L,ppo,35,14.0,force,front_fx,0.0021412039641290903 +illusion_1.5L,ppo,35,14.0,force,front_fy,0.0006417168187908828 +illusion_1.5L,ppo,35,14.0,force,upper_fx,0.003575108014047146 +illusion_1.5L,ppo,35,14.0,force,upper_fy,0.0018781578401103616 +illusion_1.5L,ppo,35,14.0,force,lower_fx,0.0026778646279126406 +illusion_1.5L,ppo,35,14.0,force,lower_fy,0.0013740829890593886 +illusion_1.5L,ppo,36,14.4,force,front_fx,0.0020196493715047836 +illusion_1.5L,ppo,36,14.4,force,front_fy,0.0006189687992446125 +illusion_1.5L,ppo,36,14.4,force,upper_fx,0.003505745902657509 +illusion_1.5L,ppo,36,14.4,force,upper_fy,0.002049168571829796 +illusion_1.5L,ppo,36,14.4,force,lower_fx,0.002671747701242566 +illusion_1.5L,ppo,36,14.4,force,lower_fy,0.0005950338090769947 +illusion_1.5L,ppo,37,14.8,force,front_fx,0.0019639567472040653 +illusion_1.5L,ppo,37,14.8,force,front_fy,0.0006324019050225616 +illusion_1.5L,ppo,37,14.8,force,upper_fx,0.0032558059319853783 +illusion_1.5L,ppo,37,14.8,force,upper_fy,0.0021704481914639473 +illusion_1.5L,ppo,37,14.8,force,lower_fx,0.0026130550540983677 +illusion_1.5L,ppo,37,14.8,force,lower_fy,-0.00014452128380071372 +illusion_1.5L,ppo,38,15.2,force,front_fx,0.001979653723537922 +illusion_1.5L,ppo,38,15.2,force,front_fy,0.0005794635508209467 +illusion_1.5L,ppo,38,15.2,force,upper_fx,0.002950141439214349 +illusion_1.5L,ppo,38,15.2,force,upper_fy,0.0020889488514512777 +illusion_1.5L,ppo,38,15.2,force,lower_fx,0.002621515654027462 +illusion_1.5L,ppo,38,15.2,force,lower_fy,-0.0006492872489616275 +illusion_1.5L,ppo,39,15.6,force,front_fx,0.002017481718212366 +illusion_1.5L,ppo,39,15.6,force,front_fy,0.0004383031919132918 +illusion_1.5L,ppo,39,15.6,force,upper_fx,0.002783955307677388 +illusion_1.5L,ppo,39,15.6,force,upper_fy,0.0016587181016802788 +illusion_1.5L,ppo,39,15.6,force,lower_fx,0.0027400804683566093 +illusion_1.5L,ppo,39,15.6,force,lower_fy,-0.000954208429902792 +illusion_1.5L,ppo,40,16.0,force,front_fx,0.00207667239010334 +illusion_1.5L,ppo,40,16.0,force,front_fy,0.00023574088118039072 +illusion_1.5L,ppo,40,16.0,force,upper_fx,0.0027441363781690598 +illusion_1.5L,ppo,40,16.0,force,upper_fy,0.001063551870174706 +illusion_1.5L,ppo,40,16.0,force,lower_fx,0.002949225716292858 +illusion_1.5L,ppo,40,16.0,force,lower_fy,-0.001113216276280582 +illusion_1.5L,ppo,41,16.4,force,front_fx,0.002103676786646247 +illusion_1.5L,ppo,41,16.4,force,front_fy,-2.7786451028077863e-05 +illusion_1.5L,ppo,41,16.4,force,upper_fx,0.0026759218890219927 +illusion_1.5L,ppo,41,16.4,force,upper_fy,0.0005543051520362496 +illusion_1.5L,ppo,41,16.4,force,lower_fx,0.0031047039665281773 +illusion_1.5L,ppo,41,16.4,force,lower_fy,-0.0012095760321244597 +illusion_1.5L,ppo,42,16.8,force,front_fx,0.002102526370435953 +illusion_1.5L,ppo,42,16.8,force,front_fy,-0.0003346287121530622 +illusion_1.5L,ppo,42,16.8,force,upper_fx,0.0025957124307751656 +illusion_1.5L,ppo,42,16.8,force,upper_fy,0.00020236516138538718 +illusion_1.5L,ppo,42,16.8,force,lower_fx,0.00311102787964046 +illusion_1.5L,ppo,42,16.8,force,lower_fy,-0.0014056410873308778 +illusion_1.5L,ppo,43,17.2,force,front_fx,0.0020910287275910378 +illusion_1.5L,ppo,43,17.2,force,front_fy,-0.0006984780193306506 +illusion_1.5L,ppo,43,17.2,force,upper_fx,0.0025430393870919943 +illusion_1.5L,ppo,43,17.2,force,upper_fy,1.9335426259203814e-05 +illusion_1.5L,ppo,43,17.2,force,lower_fx,0.0030228025279939175 +illusion_1.5L,ppo,43,17.2,force,lower_fy,-0.0018240660429000854 +illusion_1.5L,ppo,44,17.6,force,front_fx,0.002046343870460987 +illusion_1.5L,ppo,44,17.6,force,front_fy,-0.0010541094234213233 +illusion_1.5L,ppo,44,17.6,force,upper_fx,0.0024690183345228434 +illusion_1.5L,ppo,44,17.6,force,upper_fy,2.7136251446790993e-05 +illusion_1.5L,ppo,44,17.6,force,lower_fx,0.0029320926405489445 +illusion_1.5L,ppo,44,17.6,force,lower_fy,-0.0023856107145547867 +illusion_1.5L,ppo,45,18.0,force,front_fx,0.0020011011511087418 +illusion_1.5L,ppo,45,18.0,force,front_fy,-0.001320396549999714 +illusion_1.5L,ppo,45,18.0,force,upper_fx,0.0023719987366348505 +illusion_1.5L,ppo,45,18.0,force,upper_fy,0.00016364891780540347 +illusion_1.5L,ppo,45,18.0,force,lower_fx,0.0028930306434631348 +illusion_1.5L,ppo,45,18.0,force,lower_fy,-0.0029024160467088223 +illusion_1.5L,ppo,46,18.4,force,front_fx,0.001970922574400902 +illusion_1.5L,ppo,46,18.4,force,front_fy,-0.0014749962138012052 +illusion_1.5L,ppo,46,18.4,force,upper_fx,0.0022448941599577665 +illusion_1.5L,ppo,46,18.4,force,upper_fy,0.00034274981589987874 +illusion_1.5L,ppo,46,18.4,force,lower_fx,0.0028432756662368774 +illusion_1.5L,ppo,46,18.4,force,lower_fy,-0.0032117057126015425 +illusion_1.5L,ppo,47,18.8,force,front_fx,0.001957878703251481 +illusion_1.5L,ppo,47,18.8,force,front_fy,-0.0015658963238820434 +illusion_1.5L,ppo,47,18.8,force,upper_fx,0.0021290897857397795 +illusion_1.5L,ppo,47,18.8,force,upper_fy,0.0004845511575695127 +illusion_1.5L,ppo,47,18.8,force,lower_fx,0.0027506863698363304 +illusion_1.5L,ppo,47,18.8,force,lower_fy,-0.0032381745986640453 +illusion_1.5L,ppo,48,19.2,force,front_fx,0.0019656165968626738 +illusion_1.5L,ppo,48,19.2,force,front_fy,-0.001609500148333609 +illusion_1.5L,ppo,48,19.2,force,upper_fx,0.002101306105032563 +illusion_1.5L,ppo,48,19.2,force,upper_fy,0.0005568282213062048 +illusion_1.5L,ppo,48,19.2,force,lower_fx,0.002669937675818801 +illusion_1.5L,ppo,48,19.2,force,lower_fy,-0.0029924451373517513 +illusion_1.5L,ppo,49,19.6,force,front_fx,0.001998492982238531 +illusion_1.5L,ppo,49,19.6,force,front_fy,-0.0015081942547112703 +illusion_1.5L,ppo,49,19.6,force,upper_fx,0.002169713145121932 +illusion_1.5L,ppo,49,19.6,force,upper_fy,0.0005603000754490495 +illusion_1.5L,ppo,49,19.6,force,lower_fx,0.002638115780428052 +illusion_1.5L,ppo,49,19.6,force,lower_fy,-0.002542588161304593 +illusion_1.5L,ppo,50,20.0,force,front_fx,0.0020301274489611387 +illusion_1.5L,ppo,50,20.0,force,front_fy,-0.0011979149421676993 +illusion_1.5L,ppo,50,20.0,force,upper_fx,0.002250364050269127 +illusion_1.5L,ppo,50,20.0,force,upper_fy,0.0005331556312739849 +illusion_1.5L,ppo,50,20.0,force,lower_fx,0.002616328652948141 +illusion_1.5L,ppo,50,20.0,force,lower_fy,-0.00196074228733778 +illusion_1.5L,ppo,51,20.4,force,front_fx,0.0020951570477336645 +illusion_1.5L,ppo,51,20.4,force,front_fy,-0.0007304231985472143 +illusion_1.5L,ppo,51,20.4,force,upper_fx,0.0023115752264857292 +illusion_1.5L,ppo,51,20.4,force,upper_fy,0.0005618307623080909 +illusion_1.5L,ppo,51,20.4,force,lower_fx,0.002641254337504506 +illusion_1.5L,ppo,51,20.4,force,lower_fy,-0.0012756326468661427 +illusion_1.5L,ppo,52,20.8,force,front_fx,0.0021433064248412848 +illusion_1.5L,ppo,52,20.8,force,front_fy,-0.00025814087712205946 +illusion_1.5L,ppo,52,20.8,force,upper_fx,0.0023636939004063606 +illusion_1.5L,ppo,52,20.8,force,upper_fy,0.0006217684131115675 +illusion_1.5L,ppo,52,20.8,force,lower_fx,0.00269687594845891 +illusion_1.5L,ppo,52,20.8,force,lower_fy,-0.000601787818595767 +illusion_1.5L,ppo,53,21.2,force,front_fx,0.0021392740309238434 +illusion_1.5L,ppo,53,21.2,force,front_fy,0.0001353169500362128 +illusion_1.5L,ppo,53,21.2,force,upper_fx,0.0024342869874089956 +illusion_1.5L,ppo,53,21.2,force,upper_fy,0.0007214710349217057 +illusion_1.5L,ppo,53,21.2,force,lower_fx,0.0027683512307703495 +illusion_1.5L,ppo,53,21.2,force,lower_fy,-2.9437802368192933e-05 +illusion_1.5L,ppo,54,21.6,force,front_fx,0.0021024232264608145 +illusion_1.5L,ppo,54,21.6,force,front_fy,0.0004058100748807192 +illusion_1.5L,ppo,54,21.6,force,upper_fx,0.002527473261579871 +illusion_1.5L,ppo,54,21.6,force,upper_fy,0.0009326755534857512 +illusion_1.5L,ppo,54,21.6,force,lower_fx,0.0028741878923028708 +illusion_1.5L,ppo,54,21.6,force,lower_fy,0.00039600615855306387 +illusion_1.5L,ppo,55,22.0,force,front_fx,0.0020397803746163845 +illusion_1.5L,ppo,55,22.0,force,front_fy,0.0006826111930422485 +illusion_1.5L,ppo,55,22.0,force,upper_fx,0.002594855148345232 +illusion_1.5L,ppo,55,22.0,force,upper_fy,0.0012925757328048348 +illusion_1.5L,ppo,55,22.0,force,lower_fx,0.0029660470318049192 +illusion_1.5L,ppo,55,22.0,force,lower_fy,0.0006806435994803905 +illusion_1.5L,ppo,56,22.4,force,front_fx,0.001982659101486206 +illusion_1.5L,ppo,56,22.4,force,front_fy,0.0009615399758331478 +illusion_1.5L,ppo,56,22.4,force,upper_fx,0.00262752384878695 +illusion_1.5L,ppo,56,22.4,force,upper_fy,0.0016760453581809998 +illusion_1.5L,ppo,56,22.4,force,lower_fx,0.0030113914981484413 +illusion_1.5L,ppo,56,22.4,force,lower_fy,0.0008408281137235463 +illusion_1.5L,ppo,57,22.8,force,front_fx,0.0019465450895950198 +illusion_1.5L,ppo,57,22.8,force,front_fy,0.00111811060924083 +illusion_1.5L,ppo,57,22.8,force,upper_fx,0.0026407709810882807 +illusion_1.5L,ppo,57,22.8,force,upper_fy,0.001929801655933261 +illusion_1.5L,ppo,57,22.8,force,lower_fx,0.0029873973689973354 +illusion_1.5L,ppo,57,22.8,force,lower_fy,0.0009510097443126142 +illusion_1.5L,ppo,58,23.2,force,front_fx,0.0019387495703995228 +illusion_1.5L,ppo,58,23.2,force,front_fy,0.0010591534664854407 +illusion_1.5L,ppo,58,23.2,force,upper_fx,0.0026438215281814337 +illusion_1.5L,ppo,58,23.2,force,upper_fy,0.0019017703598365188 +illusion_1.5L,ppo,58,23.2,force,lower_fx,0.0028756081592291594 +illusion_1.5L,ppo,58,23.2,force,lower_fy,0.0010239100083708763 +illusion_1.5L,ppo,59,23.6,force,front_fx,0.0019958633929491043 +illusion_1.5L,ppo,59,23.6,force,front_fy,0.0007384234922938049 +illusion_1.5L,ppo,59,23.6,force,upper_fx,0.0026382775977253914 +illusion_1.5L,ppo,59,23.6,force,upper_fy,0.001732658944092691 +illusion_1.5L,ppo,59,23.6,force,lower_fx,0.002794176572933793 +illusion_1.5L,ppo,59,23.6,force,lower_fy,0.0011273487471044064 +illusion_1.5L,ppo,60,24.0,force,front_fx,0.0020941130351275206 +illusion_1.5L,ppo,60,24.0,force,front_fy,0.00036746065597981215 +illusion_1.5L,ppo,60,24.0,force,upper_fx,0.0025730810593813658 +illusion_1.5L,ppo,60,24.0,force,upper_fy,0.0016334387473762035 +illusion_1.5L,ppo,60,24.0,force,lower_fx,0.0027969295624643564 +illusion_1.5L,ppo,60,24.0,force,lower_fy,0.0012278836220502853 +illusion_1.5L,ppo,61,24.4,force,front_fx,0.002133956179022789 +illusion_1.5L,ppo,61,24.4,force,front_fy,0.00024528204812668264 +illusion_1.5L,ppo,61,24.4,force,upper_fx,0.0024436519015580416 +illusion_1.5L,ppo,61,24.4,force,upper_fy,0.0014941885601729155 +illusion_1.5L,ppo,61,24.4,force,lower_fx,0.002742114709690213 +illusion_1.5L,ppo,61,24.4,force,lower_fy,0.001205687876790762 +illusion_1.5L,ppo,62,24.8,force,front_fx,0.00214145565405488 +illusion_1.5L,ppo,62,24.8,force,front_fy,0.00020806373504456133 +illusion_1.5L,ppo,62,24.8,force,upper_fx,0.00236418005079031 +illusion_1.5L,ppo,62,24.8,force,upper_fy,0.0012846236350014806 +illusion_1.5L,ppo,62,24.8,force,lower_fx,0.002641654573380947 +illusion_1.5L,ppo,62,24.8,force,lower_fy,0.0011385052930563688 +illusion_1.5L,ppo,63,25.2,force,front_fx,0.0021581652108579874 +illusion_1.5L,ppo,63,25.2,force,front_fy,-7.02727775205858e-05 +illusion_1.5L,ppo,63,25.2,force,upper_fx,0.002409236738458276 +illusion_1.5L,ppo,63,25.2,force,upper_fy,0.0009880688739940524 +illusion_1.5L,ppo,63,25.2,force,lower_fx,0.0025386689230799675 +illusion_1.5L,ppo,63,25.2,force,lower_fy,0.0009682889794930816 +illusion_1.5L,ppo,64,25.6,force,front_fx,0.0021995685528963804 +illusion_1.5L,ppo,64,25.6,force,front_fy,-0.0004342611937317997 +illusion_1.5L,ppo,64,25.6,force,upper_fx,0.002555309794843197 +illusion_1.5L,ppo,64,25.6,force,upper_fy,0.0005402531241998076 +illusion_1.5L,ppo,64,25.6,force,lower_fx,0.0024547644425183535 +illusion_1.5L,ppo,64,25.6,force,lower_fy,0.0006365462904796004 +illusion_1.5L,ppo,65,26.0,force,front_fx,0.0022233035415410995 +illusion_1.5L,ppo,65,26.0,force,front_fy,-0.0007360663148574531 +illusion_1.5L,ppo,65,26.0,force,upper_fx,0.002612513955682516 +illusion_1.5L,ppo,65,26.0,force,upper_fy,0.0001568636071169749 +illusion_1.5L,ppo,65,26.0,force,lower_fx,0.002428819425404072 +illusion_1.5L,ppo,65,26.0,force,lower_fy,0.00028393001412041485 +illusion_1.5L,ppo,66,26.4,force,front_fx,0.0022186983842402697 +illusion_1.5L,ppo,66,26.4,force,front_fy,-0.0009743344271555543 +illusion_1.5L,ppo,66,26.4,force,upper_fx,0.0025153832975775003 +illusion_1.5L,ppo,66,26.4,force,upper_fy,-4.3900683522224426e-05 +illusion_1.5L,ppo,66,26.4,force,lower_fx,0.002441754098981619 +illusion_1.5L,ppo,66,26.4,force,lower_fy,7.940465366118588e-06 +illusion_1.5L,ppo,67,26.8,force,front_fx,0.002160776173695922 +illusion_1.5L,ppo,67,26.8,force,front_fy,-0.0011080156546086073 +illusion_1.5L,ppo,67,26.8,force,upper_fx,0.002505288692191243 +illusion_1.5L,ppo,67,26.8,force,upper_fy,-0.0002621732419356704 +illusion_1.5L,ppo,67,26.8,force,lower_fx,0.0024985652416944504 +illusion_1.5L,ppo,67,26.8,force,lower_fy,-0.00032340074540115893 +illusion_1.5L,ppo,68,27.2,force,front_fx,0.002049884293228388 +illusion_1.5L,ppo,68,27.2,force,front_fy,-0.0012056813575327396 +illusion_1.5L,ppo,68,27.2,force,upper_fx,0.002660834463313222 +illusion_1.5L,ppo,68,27.2,force,upper_fy,-0.0004853743012063205 +illusion_1.5L,ppo,68,27.2,force,lower_fx,0.0025818259455263615 +illusion_1.5L,ppo,68,27.2,force,lower_fy,-0.0007719298591837287 +illusion_1.5L,ppo,69,27.6,force,front_fx,0.0019408230436965823 +illusion_1.5L,ppo,69,27.6,force,front_fy,-0.0013551617739722133 +illusion_1.5L,ppo,69,27.6,force,upper_fx,0.002781718270853162 +illusion_1.5L,ppo,69,27.6,force,upper_fy,-0.0005993118975311518 +illusion_1.5L,ppo,69,27.6,force,lower_fx,0.0026126024313271046 +illusion_1.5L,ppo,69,27.6,force,lower_fy,-0.0012713901232928038 +illusion_1.5L,ppo,70,28.0,force,front_fx,0.001872947090305388 +illusion_1.5L,ppo,70,28.0,force,front_fy,-0.0014671820681542158 +illusion_1.5L,ppo,70,28.0,force,upper_fx,0.0027598405722528696 +illusion_1.5L,ppo,70,28.0,force,upper_fy,-0.0006394256488420069 +illusion_1.5L,ppo,70,28.0,force,lower_fx,0.0025927277747541666 +illusion_1.5L,ppo,70,28.0,force,lower_fy,-0.0016678556567057967 +illusion_1.5L,ppo,71,28.4,force,front_fx,0.001857276656664908 +illusion_1.5L,ppo,71,28.4,force,front_fy,-0.0014937337255105376 +illusion_1.5L,ppo,71,28.4,force,upper_fx,0.0026491323951631784 +illusion_1.5L,ppo,71,28.4,force,upper_fy,-0.0006736685172654688 +illusion_1.5L,ppo,71,28.4,force,lower_fx,0.0025873156264424324 +illusion_1.5L,ppo,71,28.4,force,lower_fy,-0.0018558428855612874 +illusion_1.5L,ppo,72,28.8,force,front_fx,0.0018482821760699153 +illusion_1.5L,ppo,72,28.8,force,front_fy,-0.0014437256613746285 +illusion_1.5L,ppo,72,28.8,force,upper_fx,0.002515251748263836 +illusion_1.5L,ppo,72,28.8,force,upper_fy,-0.0007180568063631654 +illusion_1.5L,ppo,72,28.8,force,lower_fx,0.002568952040746808 +illusion_1.5L,ppo,72,28.8,force,lower_fy,-0.001879007206298411 +illusion_1.5L,ppo,73,29.2,force,front_fx,0.0018589704995974898 +illusion_1.5L,ppo,73,29.2,force,front_fy,-0.0013475283049046993 +illusion_1.5L,ppo,73,29.2,force,upper_fx,0.0024326154962182045 +illusion_1.5L,ppo,73,29.2,force,upper_fy,-0.0007289525237865746 +illusion_1.5L,ppo,73,29.2,force,lower_fx,0.0025454473216086626 +illusion_1.5L,ppo,73,29.2,force,lower_fy,-0.0018031015060842037 +illusion_1.5L,ppo,74,29.6,force,front_fx,0.001882627489976585 +illusion_1.5L,ppo,74,29.6,force,front_fy,-0.0011939562391489744 +illusion_1.5L,ppo,74,29.6,force,upper_fx,0.0023861557710915804 +illusion_1.5L,ppo,74,29.6,force,upper_fy,-0.0006967674707993865 +illusion_1.5L,ppo,74,29.6,force,lower_fx,0.002516227774322033 +illusion_1.5L,ppo,74,29.6,force,lower_fy,-0.0016639665700495243 +illusion_1.5L,ppo,75,30.0,force,front_fx,0.001922554918564856 +illusion_1.5L,ppo,75,30.0,force,front_fy,-0.0009440702269785106 +illusion_1.5L,ppo,75,30.0,force,upper_fx,0.0023365274537354708 +illusion_1.5L,ppo,75,30.0,force,upper_fy,-0.0005948839825578034 +illusion_1.5L,ppo,75,30.0,force,lower_fx,0.002491249702870846 +illusion_1.5L,ppo,75,30.0,force,lower_fy,-0.0014393841847777367 +illusion_1.5L,ppo,76,30.4,force,front_fx,0.00198741490021348 +illusion_1.5L,ppo,76,30.4,force,front_fy,-0.000614860444329679 +illusion_1.5L,ppo,76,30.4,force,upper_fx,0.00229258113540709 +illusion_1.5L,ppo,76,30.4,force,upper_fy,-0.0003894500550813973 +illusion_1.5L,ppo,76,30.4,force,lower_fx,0.002513335319235921 +illusion_1.5L,ppo,76,30.4,force,lower_fy,-0.0011181175941601396 +illusion_1.5L,ppo,77,30.8,force,front_fx,0.002041331958025694 +illusion_1.5L,ppo,77,30.8,force,front_fy,-0.0002485599252395332 +illusion_1.5L,ppo,77,30.8,force,upper_fx,0.002269037766382098 +illusion_1.5L,ppo,77,30.8,force,upper_fy,-9.083995246328413e-05 +illusion_1.5L,ppo,77,30.8,force,lower_fx,0.002553356811404228 +illusion_1.5L,ppo,77,30.8,force,lower_fy,-0.0007699948037043214 +illusion_1.5L,ppo,78,31.2,force,front_fx,0.002057785866782069 +illusion_1.5L,ppo,78,31.2,force,front_fy,9.678120113676414e-05 +illusion_1.5L,ppo,78,31.2,force,upper_fx,0.002292345045134425 +illusion_1.5L,ppo,78,31.2,force,upper_fy,0.00028265744913369417 +illusion_1.5L,ppo,78,31.2,force,lower_fx,0.0025863004848361015 +illusion_1.5L,ppo,78,31.2,force,lower_fy,-0.0004590636817738414 +illusion_1.5L,ppo,79,31.6,force,front_fx,0.0020389698911458254 +illusion_1.5L,ppo,79,31.6,force,front_fy,0.0003603696823120117 +illusion_1.5L,ppo,79,31.6,force,upper_fx,0.0023668098729103804 +illusion_1.5L,ppo,79,31.6,force,upper_fy,0.0007144231931306422 +illusion_1.5L,ppo,79,31.6,force,lower_fx,0.002626721514388919 +illusion_1.5L,ppo,79,31.6,force,lower_fy,-0.00019650941248983145 +illusion_1.5L,ppo,80,32.0,force,front_fx,0.001994503429159522 +illusion_1.5L,ppo,80,32.0,force,front_fy,0.0006149017717689276 +illusion_1.5L,ppo,80,32.0,force,upper_fx,0.00243879621848464 +illusion_1.5L,ppo,80,32.0,force,upper_fy,0.0011587354820221663 +illusion_1.5L,ppo,80,32.0,force,lower_fx,0.0026495016645640135 +illusion_1.5L,ppo,80,32.0,force,lower_fy,1.0854386346181855e-05 +illusion_1.5L,ppo,81,32.4,force,front_fx,0.0019545420072972775 +illusion_1.5L,ppo,81,32.4,force,front_fy,0.0008699208265170455 +illusion_1.5L,ppo,81,32.4,force,upper_fx,0.0024972204118967056 +illusion_1.5L,ppo,81,32.4,force,upper_fy,0.0015658523188903928 +illusion_1.5L,ppo,81,32.4,force,lower_fx,0.0026576402597129345 +illusion_1.5L,ppo,81,32.4,force,lower_fy,0.00017905440472532064 +illusion_1.5L,ppo,82,32.8,force,front_fx,0.0019344533793628216 +illusion_1.5L,ppo,82,32.8,force,front_fy,0.0010914369486272335 +illusion_1.5L,ppo,82,32.8,force,upper_fx,0.0025531724095344543 +illusion_1.5L,ppo,82,32.8,force,upper_fy,0.0019177166977897286 +illusion_1.5L,ppo,82,32.8,force,lower_fx,0.002663067542016506 +illusion_1.5L,ppo,82,32.8,force,lower_fy,0.00034058079472742975 +illusion_1.5L,ppo,83,33.2,force,front_fx,0.0019083534134551883 +illusion_1.5L,ppo,83,33.2,force,front_fy,0.0012016291730105877 +illusion_1.5L,ppo,83,33.2,force,upper_fx,0.002584566129371524 +illusion_1.5L,ppo,83,33.2,force,upper_fy,0.002112218178808689 +illusion_1.5L,ppo,83,33.2,force,lower_fx,0.0026032673195004463 +illusion_1.5L,ppo,83,33.2,force,lower_fy,0.00044714976684190333 +illusion_1.5L,ppo,84,33.6,force,front_fx,0.0019023132044821978 +illusion_1.5L,ppo,84,33.6,force,front_fy,0.0011832013260573149 +illusion_1.5L,ppo,84,33.6,force,upper_fx,0.002602607011795044 +illusion_1.5L,ppo,84,33.6,force,upper_fy,0.0021669205743819475 +illusion_1.5L,ppo,84,33.6,force,lower_fx,0.0025263065472245216 +illusion_1.5L,ppo,84,33.6,force,lower_fy,0.000526272866409272 +illusion_1.5L,ppo,85,34.0,force,front_fx,0.0019071444403380156 +illusion_1.5L,ppo,85,34.0,force,front_fy,0.0010143902618438005 +illusion_1.5L,ppo,85,34.0,force,upper_fx,0.0025749769993126392 +illusion_1.5L,ppo,85,34.0,force,upper_fy,0.002178840572014451 +illusion_1.5L,ppo,85,34.0,force,lower_fx,0.0024779473897069693 +illusion_1.5L,ppo,85,34.0,force,lower_fy,0.000560595013666898 +illusion_1.5L,ppo,86,34.4,force,front_fx,0.0019290060736238956 +illusion_1.5L,ppo,86,34.4,force,front_fy,0.0007543997489847243 +illusion_1.5L,ppo,86,34.4,force,upper_fx,0.0024840300902724266 +illusion_1.5L,ppo,86,34.4,force,upper_fy,0.002203259849920869 +illusion_1.5L,ppo,86,34.4,force,lower_fx,0.002439550356939435 +illusion_1.5L,ppo,86,34.4,force,lower_fy,0.0005170722142793238 +illusion_1.5L,ppo,87,34.8,force,front_fx,0.001981503563001752 +illusion_1.5L,ppo,87,34.8,force,front_fy,0.00045659937313757837 +illusion_1.5L,ppo,87,34.8,force,upper_fx,0.0023642960004508495 +illusion_1.5L,ppo,87,34.8,force,upper_fy,0.002212407998740673 +illusion_1.5L,ppo,87,34.8,force,lower_fx,0.002403144259005785 +illusion_1.5L,ppo,87,34.8,force,lower_fy,0.0003827879554592073 +illusion_1.5L,ppo,88,35.2,force,front_fx,0.002047742484137416 +illusion_1.5L,ppo,88,35.2,force,front_fy,0.0001847302046371624 +illusion_1.5L,ppo,88,35.2,force,upper_fx,0.0022471905685961246 +illusion_1.5L,ppo,88,35.2,force,upper_fy,0.002145743928849697 +illusion_1.5L,ppo,88,35.2,force,lower_fx,0.0023532987106591463 +illusion_1.5L,ppo,88,35.2,force,lower_fy,0.00017309022950939834 +illusion_1.5L,ppo,89,35.6,force,front_fx,0.002096907701343298 +illusion_1.5L,ppo,89,35.6,force,front_fy,-4.85345626657363e-05 +illusion_1.5L,ppo,89,35.6,force,upper_fx,0.0021779080852866173 +illusion_1.5L,ppo,89,35.6,force,upper_fy,0.0019286689348518848 +illusion_1.5L,ppo,89,35.6,force,lower_fx,0.002296960446983576 +illusion_1.5L,ppo,89,35.6,force,lower_fy,-7.935902249300852e-05 +illusion_1.5L,ppo,90,36.0,force,front_fx,0.002137968083843589 +illusion_1.5L,ppo,90,36.0,force,front_fy,-0.00030445028096437454 +illusion_1.5L,ppo,90,36.0,force,upper_fx,0.002204097108915448 +illusion_1.5L,ppo,90,36.0,force,upper_fy,0.0015784396091476083 +illusion_1.5L,ppo,90,36.0,force,lower_fx,0.0022841384634375572 +illusion_1.5L,ppo,90,36.0,force,lower_fy,-0.0003169547126162797 +illusion_1.5L,ppo,91,36.4,force,front_fx,0.0021658989135175943 +illusion_1.5L,ppo,91,36.4,force,front_fy,-0.0006129450048319995 +illusion_1.5L,ppo,91,36.4,force,upper_fx,0.002292623743414879 +illusion_1.5L,ppo,91,36.4,force,upper_fy,0.001146784983575344 +illusion_1.5L,ppo,91,36.4,force,lower_fx,0.002316881436854601 +illusion_1.5L,ppo,91,36.4,force,lower_fy,-0.0005578434793278575 +illusion_1.5L,ppo,92,36.8,force,front_fx,0.002179862931370735 +illusion_1.5L,ppo,92,36.8,force,front_fy,-0.000964331382419914 +illusion_1.5L,ppo,92,36.8,force,upper_fx,0.0023879590444266796 +illusion_1.5L,ppo,92,36.8,force,upper_fy,0.0006989012472331524 +illusion_1.5L,ppo,92,36.8,force,lower_fx,0.0023824789095669985 +illusion_1.5L,ppo,92,36.8,force,lower_fy,-0.0008309451513923705 +illusion_1.5L,ppo,93,37.2,force,front_fx,0.002197820693254471 +illusion_1.5L,ppo,93,37.2,force,front_fy,-0.00130930554587394 +illusion_1.5L,ppo,93,37.2,force,upper_fx,0.00244240858592093 +illusion_1.5L,ppo,93,37.2,force,upper_fy,0.0003241988306399435 +illusion_1.5L,ppo,93,37.2,force,lower_fx,0.002475810470059514 +illusion_1.5L,ppo,93,37.2,force,lower_fy,-0.001091129146516323 +illusion_1.5L,ppo,94,37.6,force,front_fx,0.002176705515012145 +illusion_1.5L,ppo,94,37.6,force,front_fy,-0.0015802475390955806 +illusion_1.5L,ppo,94,37.6,force,upper_fx,0.002451515756547451 +illusion_1.5L,ppo,94,37.6,force,upper_fy,1.622085619601421e-05 +illusion_1.5L,ppo,94,37.6,force,lower_fx,0.0025500888004899025 +illusion_1.5L,ppo,94,37.6,force,lower_fy,-0.0013275125529617071 +illusion_1.5L,ppo,95,38.0,force,front_fx,0.002136870287358761 +illusion_1.5L,ppo,95,38.0,force,front_fy,-0.0017713485285639763 +illusion_1.5L,ppo,95,38.0,force,upper_fx,0.002474059583619237 +illusion_1.5L,ppo,95,38.0,force,upper_fy,-0.0002242985210614279 +illusion_1.5L,ppo,95,38.0,force,lower_fx,0.00261376122944057 +illusion_1.5L,ppo,95,38.0,force,lower_fy,-0.0015102432807907462 +illusion_1.5L,ppo,96,38.4,force,front_fx,0.002065342850983143 +illusion_1.5L,ppo,96,38.4,force,front_fy,-0.001851909444667399 +illusion_1.5L,ppo,96,38.4,force,upper_fx,0.0025375925470143557 +illusion_1.5L,ppo,96,38.4,force,upper_fy,-0.00043431107769720256 +illusion_1.5L,ppo,96,38.4,force,lower_fx,0.0026654358953237534 +illusion_1.5L,ppo,96,38.4,force,lower_fy,-0.0016498413169756532 +illusion_1.5L,ppo,97,38.8,force,front_fx,0.001980964560061693 +illusion_1.5L,ppo,97,38.8,force,front_fy,-0.0017130498308688402 +illusion_1.5L,ppo,97,38.8,force,upper_fx,0.002626280300319195 +illusion_1.5L,ppo,97,38.8,force,upper_fy,-0.0006225758697837591 +illusion_1.5L,ppo,97,38.8,force,lower_fx,0.0026887226849794388 +illusion_1.5L,ppo,97,38.8,force,lower_fy,-0.001751194940879941 +illusion_1.5L,ppo,98,39.2,force,front_fx,0.001944053336046636 +illusion_1.5L,ppo,98,39.2,force,front_fy,-0.0013931496068835258 +illusion_1.5L,ppo,98,39.2,force,upper_fx,0.002670423360541463 +illusion_1.5L,ppo,98,39.2,force,upper_fy,-0.0007368738879449666 +illusion_1.5L,ppo,98,39.2,force,lower_fx,0.0026887813583016396 +illusion_1.5L,ppo,98,39.2,force,lower_fy,-0.001768750138580799 +illusion_1.5L,ppo,99,39.6,force,front_fx,0.001962200039997697 +illusion_1.5L,ppo,99,39.6,force,front_fy,-0.0010974743636325002 +illusion_1.5L,ppo,99,39.6,force,upper_fx,0.0026224986650049686 +illusion_1.5L,ppo,99,39.6,force,upper_fy,-0.0007673604995943606 +illusion_1.5L,ppo,99,39.6,force,lower_fx,0.0026625157333910465 +illusion_1.5L,ppo,99,39.6,force,lower_fy,-0.0016686269082129002 +illusion_1.5L,ppo,100,40.0,force,front_fx,0.001962515991181135 +illusion_1.5L,ppo,100,40.0,force,front_fy,-0.0009456782136112452 +illusion_1.5L,ppo,100,40.0,force,upper_fx,0.002536046551540494 +illusion_1.5L,ppo,100,40.0,force,upper_fy,-0.0007404485368169844 +illusion_1.5L,ppo,100,40.0,force,lower_fx,0.002610541880130768 +illusion_1.5L,ppo,100,40.0,force,lower_fy,-0.0014902716502547264 +illusion_1.5L,ppo,101,40.4,force,front_fx,0.001968927448615432 +illusion_1.5L,ppo,101,40.4,force,front_fy,-0.0008336625178344548 +illusion_1.5L,ppo,101,40.4,force,upper_fx,0.002473305445164442 +illusion_1.5L,ppo,101,40.4,force,upper_fy,-0.0006475684931501746 +illusion_1.5L,ppo,101,40.4,force,lower_fx,0.0025874043349176645 +illusion_1.5L,ppo,101,40.4,force,lower_fy,-0.0012487841304391623 +illusion_1.5L,ppo,102,40.8,force,front_fx,0.001998374704271555 +illusion_1.5L,ppo,102,40.8,force,front_fy,-0.0005708960234187543 +illusion_1.5L,ppo,102,40.8,force,upper_fx,0.0024111371021717787 +illusion_1.5L,ppo,102,40.8,force,upper_fy,-0.00044140670797787607 +illusion_1.5L,ppo,102,40.8,force,lower_fx,0.0026268106885254383 +illusion_1.5L,ppo,102,40.8,force,lower_fy,-0.0008939377730712295 +illusion_1.5L,ppo,103,41.2,force,front_fx,0.002033275319263339 +illusion_1.5L,ppo,103,41.2,force,front_fy,-0.0002090247580781579 +illusion_1.5L,ppo,103,41.2,force,upper_fx,0.0023611439391970634 +illusion_1.5L,ppo,103,41.2,force,upper_fy,-9.89655964076519e-05 +illusion_1.5L,ppo,103,41.2,force,lower_fx,0.002701767021790147 +illusion_1.5L,ppo,103,41.2,force,lower_fy,-0.000445606536231935 +illusion_1.5L,ppo,104,41.6,force,front_fx,0.0020479594822973013 +illusion_1.5L,ppo,104,41.6,force,front_fy,0.00012780781253241003 +illusion_1.5L,ppo,104,41.6,force,upper_fx,0.0023740308824926615 +illusion_1.5L,ppo,104,41.6,force,upper_fy,0.00033195686410181224 +illusion_1.5L,ppo,104,41.6,force,lower_fx,0.0027536984998732805 +illusion_1.5L,ppo,104,41.6,force,lower_fy,-3.910029772669077e-05 +illusion_1.5L,ppo,105,42.0,force,front_fx,0.0020242538303136826 +illusion_1.5L,ppo,105,42.0,force,front_fy,0.0004135787603445351 +illusion_1.5L,ppo,105,42.0,force,upper_fx,0.0024220338091254234 +illusion_1.5L,ppo,105,42.0,force,upper_fy,0.0007383113843388855 +illusion_1.5L,ppo,105,42.0,force,lower_fx,0.002733750967308879 +illusion_1.5L,ppo,105,42.0,force,lower_fy,0.00022509480186272413 +illusion_1.5L,ppo,106,42.4,force,front_fx,0.0019886577501893044 +illusion_1.5L,ppo,106,42.4,force,front_fy,0.0006486860802397132 +illusion_1.5L,ppo,106,42.4,force,upper_fx,0.002482344163581729 +illusion_1.5L,ppo,106,42.4,force,upper_fy,0.001131087657995522 +illusion_1.5L,ppo,106,42.4,force,lower_fx,0.0027373165357857943 +illusion_1.5L,ppo,106,42.4,force,lower_fy,0.000446521386038512 +illusion_1.5L,ppo,107,42.8,force,front_fx,0.0019434608984738588 +illusion_1.5L,ppo,107,42.8,force,front_fy,0.0008517783717252314 +illusion_1.5L,ppo,107,42.8,force,upper_fx,0.002535278908908367 +illusion_1.5L,ppo,107,42.8,force,upper_fy,0.0015248724957928061 +illusion_1.5L,ppo,107,42.8,force,lower_fx,0.0028272676281630993 +illusion_1.5L,ppo,107,42.8,force,lower_fy,0.0006701045203953981 +illusion_1.5L,ppo,108,43.2,force,front_fx,0.0019072761060670018 +illusion_1.5L,ppo,108,43.2,force,front_fy,0.0010425399523228407 +illusion_1.5L,ppo,108,43.2,force,upper_fx,0.002561040222644806 +illusion_1.5L,ppo,108,43.2,force,upper_fy,0.0018059279536828399 +illusion_1.5L,ppo,108,43.2,force,lower_fx,0.0028998872730880976 +illusion_1.5L,ppo,108,43.2,force,lower_fy,0.0008402193197980523 +illusion_1.5L,ppo,109,43.6,force,front_fx,0.0018876111134886742 +illusion_1.5L,ppo,109,43.6,force,front_fy,0.0011394625762477517 +illusion_1.5L,ppo,109,43.6,force,upper_fx,0.0025834194384515285 +illusion_1.5L,ppo,109,43.6,force,upper_fy,0.001919963164255023 +illusion_1.5L,ppo,109,43.6,force,lower_fx,0.0029077150393277407 +illusion_1.5L,ppo,109,43.6,force,lower_fy,0.0009904238395392895 +illusion_1.5L,ppo,110,44.0,force,front_fx,0.0018994910642504692 +illusion_1.5L,ppo,110,44.0,force,front_fy,0.0010274512460455298 +illusion_1.5L,ppo,110,44.0,force,upper_fx,0.0025992372538894415 +illusion_1.5L,ppo,110,44.0,force,upper_fy,0.0019464573124423623 +illusion_1.5L,ppo,110,44.0,force,lower_fx,0.0028921596240252256 +illusion_1.5L,ppo,110,44.0,force,lower_fy,0.0011360812932252884 +illusion_1.5L,ppo,111,44.4,force,front_fx,0.00194765895139426 +illusion_1.5L,ppo,111,44.4,force,front_fy,0.0007303744787350297 +illusion_1.5L,ppo,111,44.4,force,upper_fx,0.0025438263546675444 +illusion_1.5L,ppo,111,44.4,force,upper_fy,0.001995763275772333 +illusion_1.5L,ppo,111,44.4,force,lower_fx,0.00285726273432374 +illusion_1.5L,ppo,111,44.4,force,lower_fy,0.0012417654506862164 +illusion_1.5L,ppo,112,44.8,force,front_fx,0.0020518137607723475 +illusion_1.5L,ppo,112,44.8,force,front_fy,0.00041860059718601406 +illusion_1.5L,ppo,112,44.8,force,upper_fx,0.0024363829288631678 +illusion_1.5L,ppo,112,44.8,force,upper_fy,0.00201680907048285 +illusion_1.5L,ppo,112,44.8,force,lower_fx,0.0028007335495203733 +illusion_1.5L,ppo,112,44.8,force,lower_fy,0.0012555357534438372 +illusion_1.5L,ppo,113,45.2,force,front_fx,0.002134440466761589 +illusion_1.5L,ppo,113,45.2,force,front_fy,0.00026570074260234833 +illusion_1.5L,ppo,113,45.2,force,upper_fx,0.0023428257554769516 +illusion_1.5L,ppo,113,45.2,force,upper_fy,0.001839983742684126 +illusion_1.5L,ppo,113,45.2,force,lower_fx,0.0026767835952341557 +illusion_1.5L,ppo,113,45.2,force,lower_fy,0.0011728079989552498 +illusion_1.5L,ppo,114,45.6,force,front_fx,0.0021627910900861025 +illusion_1.5L,ppo,114,45.6,force,front_fy,0.00012830138439312577 +illusion_1.5L,ppo,114,45.6,force,upper_fx,0.0023515864741057158 +illusion_1.5L,ppo,114,45.6,force,upper_fy,0.0014694157289341092 +illusion_1.5L,ppo,114,45.6,force,lower_fx,0.0025337766855955124 +illusion_1.5L,ppo,114,45.6,force,lower_fy,0.0010517569025978446 +illusion_1.5L,ppo,115,46.0,force,front_fx,0.002210909267887473 +illusion_1.5L,ppo,115,46.0,force,front_fy,-0.00017937082157004625 +illusion_1.5L,ppo,115,46.0,force,upper_fx,0.0024585798382759094 +illusion_1.5L,ppo,115,46.0,force,upper_fy,0.001042156363837421 +illusion_1.5L,ppo,115,46.0,force,lower_fx,0.0024623966310173273 +illusion_1.5L,ppo,115,46.0,force,lower_fy,0.0008807714912109077 +illusion_1.5L,ppo,116,46.4,force,front_fx,0.0022563422098755836 +illusion_1.5L,ppo,116,46.4,force,front_fy,-0.0005620535812340677 +illusion_1.5L,ppo,116,46.4,force,upper_fx,0.002581222914159298 +illusion_1.5L,ppo,116,46.4,force,upper_fy,0.0005590076907537878 +illusion_1.5L,ppo,116,46.4,force,lower_fx,0.002446082653477788 +illusion_1.5L,ppo,116,46.4,force,lower_fy,0.0005338944611139596 +illusion_1.5L,ppo,117,46.8,force,front_fx,0.002254416234791279 +illusion_1.5L,ppo,117,46.8,force,front_fy,-0.0008806888945400715 +illusion_1.5L,ppo,117,46.8,force,upper_fx,0.002624512417241931 +illusion_1.5L,ppo,117,46.8,force,upper_fy,0.00016747813788242638 +illusion_1.5L,ppo,117,46.8,force,lower_fx,0.0024745615664869547 +illusion_1.5L,ppo,117,46.8,force,lower_fy,7.173849735409021e-05 +illusion_1.5L,ppo,118,47.2,force,front_fx,0.0022235147189348936 +illusion_1.5L,ppo,118,47.2,force,front_fy,-0.0011740027694031596 +illusion_1.5L,ppo,118,47.2,force,upper_fx,0.0025620090309530497 +illusion_1.5L,ppo,118,47.2,force,upper_fy,-3.1018920708447695e-05 +illusion_1.5L,ppo,118,47.2,force,lower_fx,0.002527316566556692 +illusion_1.5L,ppo,118,47.2,force,lower_fy,-0.00040707149310037494 +illusion_1.5L,ppo,119,47.6,force,front_fx,0.0021610332187265158 +illusion_1.5L,ppo,119,47.6,force,front_fy,-0.0014341919450089335 +illusion_1.5L,ppo,119,47.6,force,upper_fx,0.0025258141104131937 +illusion_1.5L,ppo,119,47.6,force,upper_fy,-0.00018127083603758365 +illusion_1.5L,ppo,119,47.6,force,lower_fx,0.0025785232428461313 +illusion_1.5L,ppo,119,47.6,force,lower_fy,-0.0009167887037619948 +illusion_1.5L,ppo,120,48.0,force,front_fx,0.002078418852761388 +illusion_1.5L,ppo,120,48.0,force,front_fy,-0.001666800701059401 +illusion_1.5L,ppo,120,48.0,force,upper_fx,0.0025877607986330986 +illusion_1.5L,ppo,120,48.0,force,upper_fy,-0.0003300812386441976 +illusion_1.5L,ppo,120,48.0,force,lower_fx,0.0026323036290705204 +illusion_1.5L,ppo,120,48.0,force,lower_fy,-0.0014179428108036518 +illusion_1.5L,ppo,121,48.4,force,front_fx,0.0020217876881361008 +illusion_1.5L,ppo,121,48.4,force,front_fy,-0.0018681332003325224 +illusion_1.5L,ppo,121,48.4,force,upper_fx,0.002648124936968088 +illusion_1.5L,ppo,121,48.4,force,upper_fy,-0.00043491172255016863 +illusion_1.5L,ppo,121,48.4,force,lower_fx,0.0026786017697304487 +illusion_1.5L,ppo,121,48.4,force,lower_fy,-0.0017924623098224401 +illusion_1.5L,ppo,122,48.8,force,front_fx,0.0019525097450241446 +illusion_1.5L,ppo,122,48.8,force,front_fy,-0.001855975715443492 +illusion_1.5L,ppo,122,48.8,force,upper_fx,0.002657679608091712 +illusion_1.5L,ppo,122,48.8,force,upper_fy,-0.0005514894146472216 +illusion_1.5L,ppo,122,48.8,force,lower_fx,0.0026975313667207956 +illusion_1.5L,ppo,122,48.8,force,lower_fy,-0.0020126409363001585 +illusion_1.5L,ppo,123,49.2,force,front_fx,0.001895669149234891 +illusion_1.5L,ppo,123,49.2,force,front_fy,-0.00162907422054559 +illusion_1.5L,ppo,123,49.2,force,upper_fx,0.0026314021088182926 +illusion_1.5L,ppo,123,49.2,force,upper_fy,-0.0006467144703492522 +illusion_1.5L,ppo,123,49.2,force,lower_fx,0.0026922591496258974 +illusion_1.5L,ppo,123,49.2,force,lower_fy,-0.00212874892167747 +illusion_1.5L,ppo,124,49.6,force,front_fx,0.0018901515286415815 +illusion_1.5L,ppo,124,49.6,force,front_fy,-0.0012930274242535233 +illusion_1.5L,ppo,124,49.6,force,upper_fx,0.0025483903009444475 +illusion_1.5L,ppo,124,49.6,force,upper_fy,-0.0006544062634930015 +illusion_1.5L,ppo,124,49.6,force,lower_fx,0.0026274817064404488 +illusion_1.5L,ppo,124,49.6,force,lower_fy,-0.0021664078813046217 +illusion_1.5L,ppo,125,50.0,force,front_fx,0.0019256524974480271 +illusion_1.5L,ppo,125,50.0,force,front_fy,-0.0009610293200239539 +illusion_1.5L,ppo,125,50.0,force,upper_fx,0.00243936013430357 +illusion_1.5L,ppo,125,50.0,force,upper_fy,-0.000594757148064673 +illusion_1.5L,ppo,125,50.0,force,lower_fx,0.0025112279690802097 +illusion_1.5L,ppo,125,50.0,force,lower_fy,-0.0021072591189295053 +illusion_1.5L,ppo,126,50.4,force,front_fx,0.0019527471158653498 +illusion_1.5L,ppo,126,50.4,force,front_fy,-0.0007917554466985166 +illusion_1.5L,ppo,126,50.4,force,upper_fx,0.002345978282392025 +illusion_1.5L,ppo,126,50.4,force,upper_fy,-0.0004581209213938564 +illusion_1.5L,ppo,126,50.4,force,lower_fx,0.0024540522135794163 +illusion_1.5L,ppo,126,50.4,force,lower_fy,-0.0018450323259457946 +illusion_1.5L,ppo,127,50.8,force,front_fx,0.0019566284026950598 +illusion_1.5L,ppo,127,50.8,force,front_fy,-0.0007136024651117623 +illusion_1.5L,ppo,127,50.8,force,upper_fx,0.002299775369465351 +illusion_1.5L,ppo,127,50.8,force,upper_fy,-0.0002934648364316672 +illusion_1.5L,ppo,127,50.8,force,lower_fx,0.0025030774995684624 +illusion_1.5L,ppo,127,50.8,force,lower_fy,-0.0014290795661509037 +illusion_1.5L,ppo,128,51.2,force,front_fx,0.0019905606750398874 +illusion_1.5L,ppo,128,51.2,force,front_fy,-0.0004522305098362267 +illusion_1.5L,ppo,128,51.2,force,upper_fx,0.002304350957274437 +illusion_1.5L,ppo,128,51.2,force,upper_fy,-0.00012024682655464858 +illusion_1.5L,ppo,128,51.2,force,lower_fx,0.002604063367471099 +illusion_1.5L,ppo,128,51.2,force,lower_fy,-0.0009638852789066732 +illusion_1.5L,ppo,129,51.6,force,front_fx,0.002045770175755024 +illusion_1.5L,ppo,129,51.6,force,front_fy,-6.929474329808727e-05 +illusion_1.5L,ppo,129,51.6,force,upper_fx,0.0023394436575472355 +illusion_1.5L,ppo,129,51.6,force,upper_fy,0.0001824208884499967 +illusion_1.5L,ppo,129,51.6,force,lower_fx,0.002725091762840748 +illusion_1.5L,ppo,129,51.6,force,lower_fy,-0.00043018319411203265 +illusion_1.5L,ppo,130,52.0,force,front_fx,0.002052292926236987 +illusion_1.5L,ppo,130,52.0,force,front_fy,0.00025201853713952005 +illusion_1.5L,ppo,130,52.0,force,upper_fx,0.002389254281297326 +illusion_1.5L,ppo,130,52.0,force,upper_fy,0.0005737292231060565 +illusion_1.5L,ppo,130,52.0,force,lower_fx,0.0027656499296426773 +illusion_1.5L,ppo,130,52.0,force,lower_fy,1.674572195042856e-05 +illusion_1.5L,ppo,131,52.4,force,front_fx,0.0020250165835022926 +illusion_1.5L,ppo,131,52.4,force,front_fy,0.0005107168690301478 +illusion_1.5L,ppo,131,52.4,force,upper_fx,0.0024608587846159935 +illusion_1.5L,ppo,131,52.4,force,upper_fy,0.0009003752493299544 +illusion_1.5L,ppo,131,52.4,force,lower_fx,0.002689270069822669 +illusion_1.5L,ppo,131,52.4,force,lower_fy,0.00025072359130717814 +illusion_1.5L,ppo,132,52.8,force,front_fx,0.0019998489879071712 +illusion_1.5L,ppo,132,52.8,force,front_fy,0.0007215015357360244 +illusion_1.5L,ppo,132,52.8,force,upper_fx,0.0025359096471220255 +illusion_1.5L,ppo,132,52.8,force,upper_fy,0.001207937253639102 +illusion_1.5L,ppo,132,52.8,force,lower_fx,0.0026388494297862053 +illusion_1.5L,ppo,132,52.8,force,lower_fy,0.0003989003598690033 +illusion_1.5L,ppo,133,53.2,force,front_fx,0.0019511571153998375 +illusion_1.5L,ppo,133,53.2,force,front_fy,0.0009191095014102757 +illusion_1.5L,ppo,133,53.2,force,upper_fx,0.0025592383462935686 +illusion_1.5L,ppo,133,53.2,force,upper_fy,0.001549845444969833 +illusion_1.5L,ppo,133,53.2,force,lower_fx,0.00265731243416667 +illusion_1.5L,ppo,133,53.2,force,lower_fy,0.0005236493307165802 +illusion_1.5L,ppo,134,53.6,force,front_fx,0.0019183685071766376 +illusion_1.5L,ppo,134,53.6,force,front_fy,0.0010696046520024538 +illusion_1.5L,ppo,134,53.6,force,upper_fx,0.0025593305472284555 +illusion_1.5L,ppo,134,53.6,force,upper_fy,0.0018040317809209228 +illusion_1.5L,ppo,134,53.6,force,lower_fx,0.0026671672239899635 +illusion_1.5L,ppo,134,53.6,force,lower_fy,0.0005851425812579691 +illusion_1.5L,ppo,135,54.0,force,front_fx,0.001901785028167069 +illusion_1.5L,ppo,135,54.0,force,front_fy,0.0010332834208384156 +illusion_1.5L,ppo,135,54.0,force,upper_fx,0.0025583363603800535 +illusion_1.5L,ppo,135,54.0,force,upper_fy,0.001910862629301846 +illusion_1.5L,ppo,135,54.0,force,lower_fx,0.002616672310978174 +illusion_1.5L,ppo,135,54.0,force,lower_fy,0.0006151621928438544 +illusion_1.5L,ppo,136,54.4,force,front_fx,0.001921608578413725 +illusion_1.5L,ppo,136,54.4,force,front_fy,0.0007896742317825556 +illusion_1.5L,ppo,136,54.4,force,upper_fx,0.0025374460965394974 +illusion_1.5L,ppo,136,54.4,force,upper_fy,0.0018778800731524825 +illusion_1.5L,ppo,136,54.4,force,lower_fx,0.0025130927097052336 +illusion_1.5L,ppo,136,54.4,force,lower_fy,0.0006000873981975019 +illusion_1.5L,ppo,137,54.8,force,front_fx,0.0019941662903875113 +illusion_1.5L,ppo,137,54.8,force,front_fy,0.0004143440746702254 +illusion_1.5L,ppo,137,54.8,force,upper_fx,0.002470159437507391 +illusion_1.5L,ppo,137,54.8,force,upper_fy,0.0018332223407924175 +illusion_1.5L,ppo,137,54.8,force,lower_fx,0.0024376690853387117 +illusion_1.5L,ppo,137,54.8,force,lower_fy,0.0005471438053064048 +illusion_1.5L,ppo,138,55.2,force,front_fx,0.0020847716368734837 +illusion_1.5L,ppo,138,55.2,force,front_fy,7.706733595114201e-05 +illusion_1.5L,ppo,138,55.2,force,upper_fx,0.0023450208827853203 +illusion_1.5L,ppo,138,55.2,force,upper_fy,0.00179539795499295 +illusion_1.5L,ppo,138,55.2,force,lower_fx,0.002393984002992511 +illusion_1.5L,ppo,138,55.2,force,lower_fy,0.00044086723937653005 +illusion_1.5L,ppo,139,55.6,force,front_fx,0.00212508300319314 +illusion_1.5L,ppo,139,55.6,force,front_fy,-4.6754252252867445e-05 +illusion_1.5L,ppo,139,55.6,force,upper_fx,0.002266997005790472 +illusion_1.5L,ppo,139,55.6,force,upper_fy,0.0015784968854859471 +illusion_1.5L,ppo,139,55.6,force,lower_fx,0.0023407682310789824 +illusion_1.5L,ppo,139,55.6,force,lower_fy,0.000265456095803529 +illusion_1.5L,ppo,140,56.0,force,front_fx,0.002116820542141795 +illusion_1.5L,ppo,140,56.0,force,front_fy,-0.00015436726971529424 +illusion_1.5L,ppo,140,56.0,force,upper_fx,0.002327198628336191 +illusion_1.5L,ppo,140,56.0,force,upper_fy,0.0012365976581349969 +illusion_1.5L,ppo,140,56.0,force,lower_fx,0.0023245741613209248 +illusion_1.5L,ppo,140,56.0,force,lower_fy,7.895785529399291e-05 +illusion_1.5L,ppo,141,56.4,force,front_fx,0.002118012635037303 +illusion_1.5L,ppo,141,56.4,force,front_fy,-0.00046455030678771436 +illusion_1.5L,ppo,141,56.4,force,upper_fx,0.0024744998663663864 +illusion_1.5L,ppo,141,56.4,force,upper_fy,0.0008564054733142257 +illusion_1.5L,ppo,141,56.4,force,lower_fx,0.0023528598248958588 +illusion_1.5L,ppo,141,56.4,force,lower_fy,-0.00018361571710556746 +illusion_1.5L,ppo,142,56.8,force,front_fx,0.0021277708001434803 +illusion_1.5L,ppo,142,56.8,force,front_fy,-0.0008155444520525634 +illusion_1.5L,ppo,142,56.8,force,upper_fx,0.002613548655062914 +illusion_1.5L,ppo,142,56.8,force,upper_fy,0.0004322775930631906 +illusion_1.5L,ppo,142,56.8,force,lower_fx,0.0024053119122982025 +illusion_1.5L,ppo,142,56.8,force,lower_fy,-0.0005579173448495567 +illusion_1.5L,ppo,143,57.2,force,front_fx,0.0021313303150236607 +illusion_1.5L,ppo,143,57.2,force,front_fy,-0.0010870419209823012 +illusion_1.5L,ppo,143,57.2,force,upper_fx,0.002602220978587866 +illusion_1.5L,ppo,143,57.2,force,upper_fy,0.0001288532221224159 +illusion_1.5L,ppo,143,57.2,force,lower_fx,0.002483896678313613 +illusion_1.5L,ppo,143,57.2,force,lower_fy,-0.0008925433503463864 +illusion_1.5L,ppo,144,57.6,force,front_fx,0.0021206557285040617 +illusion_1.5L,ppo,144,57.6,force,front_fy,-0.0012748119188472629 +illusion_1.5L,ppo,144,57.6,force,upper_fx,0.002440676325932145 +illusion_1.5L,ppo,144,57.6,force,upper_fy,-1.0873446854020585e-06 +illusion_1.5L,ppo,144,57.6,force,lower_fx,0.0025548075791448355 +illusion_1.5L,ppo,144,57.6,force,lower_fy,-0.0010750822257250547 +illusion_1.5L,ppo,145,58.0,force,front_fx,0.0020899316295981407 +illusion_1.5L,ppo,145,58.0,force,front_fy,-0.001405722345225513 +illusion_1.5L,ppo,145,58.0,force,upper_fx,0.0023581432178616524 +illusion_1.5L,ppo,145,58.0,force,upper_fy,-0.00012985592184122652 +illusion_1.5L,ppo,145,58.0,force,lower_fx,0.0026081756222993135 +illusion_1.5L,ppo,145,58.0,force,lower_fy,-0.0012133511481806636 +illusion_1.5L,ppo,146,58.4,force,front_fx,0.0020486791618168354 +illusion_1.5L,ppo,146,58.4,force,front_fy,-0.0015301614766940475 +illusion_1.5L,ppo,146,58.4,force,upper_fx,0.0024111769162118435 +illusion_1.5L,ppo,146,58.4,force,upper_fy,-0.00027907275944016874 +illusion_1.5L,ppo,146,58.4,force,lower_fx,0.002636497374624014 +illusion_1.5L,ppo,146,58.4,force,lower_fy,-0.0013373229885473847 +illusion_1.5L,ppo,147,58.8,force,front_fx,0.0020152051001787186 +illusion_1.5L,ppo,147,58.8,force,front_fy,-0.0016091872239485383 +illusion_1.5L,ppo,147,58.8,force,upper_fx,0.002466602250933647 +illusion_1.5L,ppo,147,58.8,force,upper_fy,-0.0003862485755234957 +illusion_1.5L,ppo,147,58.8,force,lower_fx,0.0026464739348739386 +illusion_1.5L,ppo,147,58.8,force,lower_fy,-0.0013704827288165689 +illusion_1.5L,ppo,148,59.2,force,front_fx,0.0020101519767194986 +illusion_1.5L,ppo,148,59.2,force,front_fy,-0.0014719241298735142 +illusion_1.5L,ppo,148,59.2,force,upper_fx,0.0024477066472172737 +illusion_1.5L,ppo,148,59.2,force,upper_fy,-0.0004228426259942353 +illusion_1.5L,ppo,148,59.2,force,lower_fx,0.0026736592408269644 +illusion_1.5L,ppo,148,59.2,force,lower_fy,-0.0012476756237447262 +illusion_1.5L,ppo,149,59.6,force,front_fx,0.0020323724020272493 +illusion_1.5L,ppo,149,59.6,force,front_fy,-0.0010883432114496827 +illusion_1.5L,ppo,149,59.6,force,upper_fx,0.0023600782733410597 +illusion_1.5L,ppo,149,59.6,force,upper_fy,-0.0003569484397303313 +illusion_1.5L,ppo,149,59.6,force,lower_fx,0.0027013528160750866 +illusion_1.5L,ppo,149,59.6,force,lower_fy,-0.001033748034387827 +illusion_1.5L,ppo,150,60.0,force,front_fx,0.002059917664155364 +illusion_1.5L,ppo,150,60.0,force,front_fy,-0.0005840655649080873 +illusion_1.5L,ppo,150,60.0,force,upper_fx,0.0022710443008691072 +illusion_1.5L,ppo,150,60.0,force,upper_fy,-0.00015896308468654752 +illusion_1.5L,ppo,150,60.0,force,lower_fx,0.002679284894838929 +illusion_1.5L,ppo,150,60.0,force,lower_fy,-0.0008551047649234533 +illusion_1.5L,ppo,151,60.4,force,front_fx,0.002062650164589286 +illusion_1.5L,ppo,151,60.4,force,front_fy,-0.00017808815755415708 +illusion_1.5L,ppo,151,60.4,force,upper_fx,0.002247166819870472 +illusion_1.5L,ppo,151,60.4,force,upper_fy,0.00015188944234978408 +illusion_1.5L,ppo,151,60.4,force,lower_fx,0.002626249799504876 +illusion_1.5L,ppo,151,60.4,force,lower_fy,-0.0007105488330125809 +illusion_1.5L,ppo,152,60.8,force,front_fx,0.002018520375713706 +illusion_1.5L,ppo,152,60.8,force,front_fy,-2.263249371026177e-05 +illusion_1.5L,ppo,152,60.8,force,upper_fx,0.002286962466314435 +illusion_1.5L,ppo,152,60.8,force,upper_fy,0.0005046685691922903 +illusion_1.5L,ppo,152,60.8,force,lower_fx,0.0026086270809173584 +illusion_1.5L,ppo,152,60.8,force,lower_fy,-0.0005126760806888342 +illusion_1.5L,ppo,153,61.2,force,front_fx,0.0019672440830618143 +illusion_1.5L,ppo,153,61.2,force,front_fy,8.653313125250861e-05 +illusion_1.5L,ppo,153,61.2,force,upper_fx,0.0023636745754629374 +illusion_1.5L,ppo,153,61.2,force,upper_fy,0.0008575929678045213 +illusion_1.5L,ppo,153,61.2,force,lower_fx,0.0026892530731856823 +illusion_1.5L,ppo,153,61.2,force,lower_fy,-0.0002633238327689469 +illusion_1.5L,ppo,154,61.6,force,front_fx,0.001960102701559663 +illusion_1.5L,ppo,154,61.6,force,front_fy,0.00036089957575313747 +illusion_1.5L,ppo,154,61.6,force,upper_fx,0.0024480316787958145 +illusion_1.5L,ppo,154,61.6,force,upper_fy,0.0012410198105499148 +illusion_1.5L,ppo,154,61.6,force,lower_fx,0.002872991608455777 +illusion_1.5L,ppo,154,61.6,force,lower_fy,3.818292316282168e-05 +illusion_1.5L,ppo,155,62.0,force,front_fx,0.001959514105692506 +illusion_1.5L,ppo,155,62.0,force,front_fy,0.0007093617459759116 +illusion_1.5L,ppo,155,62.0,force,upper_fx,0.002500284230336547 +illusion_1.5L,ppo,155,62.0,force,upper_fy,0.0016259102849289775 +illusion_1.5L,ppo,155,62.0,force,lower_fx,0.003021956654265523 +illusion_1.5L,ppo,155,62.0,force,lower_fy,0.00038539234083145857 +illusion_1.5L,ppo,156,62.4,force,front_fx,0.001954675419256091 +illusion_1.5L,ppo,156,62.4,force,front_fy,0.0009553027921356261 +illusion_1.5L,ppo,156,62.4,force,upper_fx,0.00257522938773036 +illusion_1.5L,ppo,156,62.4,force,upper_fy,0.0018233680166304111 +illusion_1.5L,ppo,156,62.4,force,lower_fx,0.003013439243659377 +illusion_1.5L,ppo,156,62.4,force,lower_fy,0.0006794849177822471 +illusion_1.5L,ppo,157,62.8,force,front_fx,0.001965803559869528 +illusion_1.5L,ppo,157,62.8,force,front_fy,0.0010449547553434968 +illusion_1.5L,ppo,157,62.8,force,upper_fx,0.002692142967134714 +illusion_1.5L,ppo,157,62.8,force,upper_fy,0.001754071214236319 +illusion_1.5L,ppo,157,62.8,force,lower_fx,0.0028800410218536854 +illusion_1.5L,ppo,157,62.8,force,lower_fy,0.0008806585683487356 +illusion_1.5L,ppo,158,63.2,force,front_fx,0.001969124423339963 +illusion_1.5L,ppo,158,63.2,force,front_fy,0.0010411788243800402 +illusion_1.5L,ppo,158,63.2,force,upper_fx,0.002752837259322405 +illusion_1.5L,ppo,158,63.2,force,upper_fy,0.001593652181327343 +illusion_1.5L,ppo,158,63.2,force,lower_fx,0.002747000427916646 +illusion_1.5L,ppo,158,63.2,force,lower_fy,0.0010087535483762622 +illusion_1.5L,ppo,159,63.6,force,front_fx,0.0019603250548243523 +illusion_1.5L,ppo,159,63.6,force,front_fy,0.00101258244831115 +illusion_1.5L,ppo,159,63.6,force,upper_fx,0.0027209999971091747 +illusion_1.5L,ppo,159,63.6,force,upper_fy,0.0015069026267156005 +illusion_1.5L,ppo,159,63.6,force,lower_fx,0.002688676817342639 +illusion_1.5L,ppo,159,63.6,force,lower_fy,0.001061845920048654 +illusion_1.5L,ppo,160,64.0,force,front_fx,0.0019699865952134132 +illusion_1.5L,ppo,160,64.0,force,front_fy,0.0008793933666311204 +illusion_1.5L,ppo,160,64.0,force,upper_fx,0.0026509463787078857 +illusion_1.5L,ppo,160,64.0,force,upper_fy,0.0014689458766952157 +illusion_1.5L,ppo,160,64.0,force,lower_fx,0.00265426654368639 +illusion_1.5L,ppo,160,64.0,force,lower_fy,0.000995862064883113 +illusion_1.5L,ppo,161,64.4,force,front_fx,0.002016573678702116 +illusion_1.5L,ppo,161,64.4,force,front_fy,0.0005370991420932114 +illusion_1.5L,ppo,161,64.4,force,upper_fx,0.002595774829387665 +illusion_1.5L,ppo,161,64.4,force,upper_fy,0.0013651145854964852 +illusion_1.5L,ppo,161,64.4,force,lower_fx,0.002562334295362234 +illusion_1.5L,ppo,161,64.4,force,lower_fy,0.0007708284538239241 +illusion_1.5L,ppo,162,64.8,force,front_fx,0.0021129492670297623 +illusion_1.5L,ppo,162,64.8,force,front_fy,5.523802246898413e-05 +illusion_1.5L,ppo,162,64.8,force,upper_fx,0.0025524022057652473 +illusion_1.5L,ppo,162,64.8,force,upper_fy,0.0012055305996909738 +illusion_1.5L,ppo,162,64.8,force,lower_fx,0.0024487278424203396 +illusion_1.5L,ppo,162,64.8,force,lower_fy,0.00041756738210096955 +illusion_1.5L,ppo,163,65.2,force,front_fx,0.0021821334958076477 +illusion_1.5L,ppo,163,65.2,force,front_fy,-0.000350587913999334 +illusion_1.5L,ppo,163,65.2,force,upper_fx,0.0024823539424687624 +illusion_1.5L,ppo,163,65.2,force,upper_fy,0.001020207186229527 +illusion_1.5L,ppo,163,65.2,force,lower_fx,0.002377845346927643 +illusion_1.5L,ppo,163,65.2,force,lower_fy,-2.38969787460519e-05 +illusion_1.5L,ppo,164,65.6,force,front_fx,0.002171469619497657 +illusion_1.5L,ppo,164,65.6,force,front_fy,-0.000578319828491658 +illusion_1.5L,ppo,164,65.6,force,upper_fx,0.0024124146439135075 +illusion_1.5L,ppo,164,65.6,force,upper_fy,0.0008047017618082464 +illusion_1.5L,ppo,164,65.6,force,lower_fx,0.002377635333687067 +illusion_1.5L,ppo,164,65.6,force,lower_fy,-0.00047330104280263186 +illusion_1.5L,ppo,165,66.0,force,front_fx,0.0021376963704824448 +illusion_1.5L,ppo,165,66.0,force,front_fy,-0.0008116110693663359 +illusion_1.5L,ppo,165,66.0,force,upper_fx,0.0024185492657124996 +illusion_1.5L,ppo,165,66.0,force,upper_fy,0.0005993022350594401 +illusion_1.5L,ppo,165,66.0,force,lower_fx,0.002449238207191229 +illusion_1.5L,ppo,165,66.0,force,lower_fy,-0.000912969175260514 +illusion_1.5L,ppo,166,66.4,force,front_fx,0.002099907025694847 +illusion_1.5L,ppo,166,66.4,force,front_fy,-0.0011277933372184634 +illusion_1.5L,ppo,166,66.4,force,upper_fx,0.002526543801650405 +illusion_1.5L,ppo,166,66.4,force,upper_fy,0.0003623479569796473 +illusion_1.5L,ppo,166,66.4,force,lower_fx,0.0025386172346770763 +illusion_1.5L,ppo,166,66.4,force,lower_fy,-0.0014103885041549802 +illusion_1.5L,ppo,167,66.8,force,front_fx,0.0020680443849414587 +illusion_1.5L,ppo,167,66.8,force,front_fy,-0.0014558290131390095 +illusion_1.5L,ppo,167,66.8,force,upper_fx,0.0026722783222794533 +illusion_1.5L,ppo,167,66.8,force,upper_fy,7.275809912243858e-05 +illusion_1.5L,ppo,167,66.8,force,lower_fx,0.0026245741173624992 +illusion_1.5L,ppo,167,66.8,force,lower_fy,-0.001918239169754088 +illusion_1.5L,ppo,168,67.2,force,front_fx,0.0020524233113974333 +illusion_1.5L,ppo,168,67.2,force,front_fy,-0.001751988078467548 +illusion_1.5L,ppo,168,67.2,force,upper_fx,0.002698322758078575 +illusion_1.5L,ppo,168,67.2,force,upper_fy,-0.00017539919645059854 +illusion_1.5L,ppo,168,67.2,force,lower_fx,0.002705568680539727 +illusion_1.5L,ppo,168,67.2,force,lower_fy,-0.0022302751895040274 +illusion_1.5L,ppo,169,67.6,force,front_fx,0.0020411070436239243 +illusion_1.5L,ppo,169,67.6,force,front_fy,-0.001947343465872109 +illusion_1.5L,ppo,169,67.6,force,upper_fx,0.0026244083419442177 +illusion_1.5L,ppo,169,67.6,force,upper_fy,-0.000402995414333418 +illusion_1.5L,ppo,169,67.6,force,lower_fx,0.0027745994739234447 +illusion_1.5L,ppo,169,67.6,force,lower_fy,-0.0022729102056473494 +illusion_1.5L,ppo,170,68.0,force,front_fx,0.002011342905461788 +illusion_1.5L,ppo,170,68.0,force,front_fy,-0.0019762967713177204 +illusion_1.5L,ppo,170,68.0,force,upper_fx,0.0025867046788334846 +illusion_1.5L,ppo,170,68.0,force,upper_fy,-0.0006249643629416823 +illusion_1.5L,ppo,170,68.0,force,lower_fx,0.002825579373165965 +illusion_1.5L,ppo,170,68.0,force,lower_fy,-0.002150417771190405 +illusion_1.5L,ppo,171,68.4,force,front_fx,0.001986290793865919 +illusion_1.5L,ppo,171,68.4,force,front_fy,-0.0018982668407261372 +illusion_1.5L,ppo,171,68.4,force,upper_fx,0.0025941759813576937 +illusion_1.5L,ppo,171,68.4,force,upper_fy,-0.0007844961946830153 +illusion_1.5L,ppo,171,68.4,force,lower_fx,0.0028508962132036686 +illusion_1.5L,ppo,171,68.4,force,lower_fy,-0.001950145815499127 +illusion_1.5L,ppo,172,68.8,force,front_fx,0.0019770616199821234 +illusion_1.5L,ppo,172,68.8,force,front_fy,-0.0016488595865666866 +illusion_1.5L,ppo,172,68.8,force,upper_fx,0.0026016125921159983 +illusion_1.5L,ppo,172,68.8,force,upper_fy,-0.0008724667713977396 +illusion_1.5L,ppo,172,68.8,force,lower_fx,0.0028276622761040926 +illusion_1.5L,ppo,172,68.8,force,lower_fy,-0.001755216741003096 +illusion_1.5L,ppo,173,69.2,force,front_fx,0.002025358146056533 +illusion_1.5L,ppo,173,69.2,force,front_fy,-0.0011725119547918439 +illusion_1.5L,ppo,173,69.2,force,upper_fx,0.0025678733363747597 +illusion_1.5L,ppo,173,69.2,force,upper_fy,-0.0008410275913774967 +illusion_1.5L,ppo,173,69.2,force,lower_fx,0.0027754129841923714 +illusion_1.5L,ppo,173,69.2,force,lower_fy,-0.0015681381337344646 +illusion_1.5L,ppo,174,69.6,force,front_fx,0.0020936911460012197 +illusion_1.5L,ppo,174,69.6,force,front_fy,-0.000696678995154798 +illusion_1.5L,ppo,174,69.6,force,upper_fx,0.0024624797515571117 +illusion_1.5L,ppo,174,69.6,force,upper_fy,-0.0006415197276510298 +illusion_1.5L,ppo,174,69.6,force,lower_fx,0.002720552496612072 +illusion_1.5L,ppo,174,69.6,force,lower_fy,-0.0012999284081161022 +illusion_1.5L,ppo,175,70.0,force,front_fx,0.0020878156647086143 +illusion_1.5L,ppo,175,70.0,force,front_fy,-0.00041562714613974094 +illusion_1.5L,ppo,175,70.0,force,upper_fx,0.002377657685428858 +illusion_1.5L,ppo,175,70.0,force,upper_fy,-0.00030987581703811884 +illusion_1.5L,ppo,175,70.0,force,lower_fx,0.0026943644043058157 +illusion_1.5L,ppo,175,70.0,force,lower_fy,-0.0009436130640096962 +illusion_1.5L,ppo,176,70.4,force,front_fx,0.0020579856354743242 +illusion_1.5L,ppo,176,70.4,force,front_fy,-0.0002004259149543941 +illusion_1.5L,ppo,176,70.4,force,upper_fx,0.0023989074397832155 +illusion_1.5L,ppo,176,70.4,force,upper_fy,6.593015132239088e-05 +illusion_1.5L,ppo,176,70.4,force,lower_fx,0.00273154117166996 +illusion_1.5L,ppo,176,70.4,force,lower_fy,-0.0006015950348228216 +illusion_1.5L,ppo,177,70.8,force,front_fx,0.0020455040503293276 +illusion_1.5L,ppo,177,70.8,force,front_fy,0.00013900044723413885 +illusion_1.5L,ppo,177,70.8,force,upper_fx,0.002464375924319029 +illusion_1.5L,ppo,177,70.8,force,upper_fy,0.0005188141367398202 +illusion_1.5L,ppo,177,70.8,force,lower_fx,0.0028380155563354492 +illusion_1.5L,ppo,177,70.8,force,lower_fy,-0.0002552657388150692 +illusion_1.5L,ppo,178,71.2,force,front_fx,0.0020329460967332125 +illusion_1.5L,ppo,178,71.2,force,front_fy,0.0005365707911550999 +illusion_1.5L,ppo,178,71.2,force,upper_fx,0.002531099831685424 +illusion_1.5L,ppo,178,71.2,force,upper_fy,0.0010739894350990653 +illusion_1.5L,ppo,178,71.2,force,lower_fx,0.0029733297415077686 +illusion_1.5L,ppo,178,71.2,force,lower_fy,0.00011928897583857179 +illusion_1.5L,ppo,179,71.6,force,front_fx,0.002009210642427206 +illusion_1.5L,ppo,179,71.6,force,front_fy,0.0008916484657675028 +illusion_1.5L,ppo,179,71.6,force,upper_fx,0.002597732935100794 +illusion_1.5L,ppo,179,71.6,force,upper_fy,0.0015746542485430837 +illusion_1.5L,ppo,179,71.6,force,lower_fx,0.0030098080169409513 +illusion_1.5L,ppo,179,71.6,force,lower_fy,0.00041142452391795814 +illusion_1.5L,ppo,180,72.0,force,front_fx,0.0019825620111078024 +illusion_1.5L,ppo,180,72.0,force,front_fy,0.0011469300370663404 +illusion_1.5L,ppo,180,72.0,force,upper_fx,0.002662000246345997 +illusion_1.5L,ppo,180,72.0,force,upper_fy,0.0018504580948501825 +illusion_1.5L,ppo,180,72.0,force,lower_fx,0.0028988271951675415 +illusion_1.5L,ppo,180,72.0,force,lower_fy,0.0005881121614947915 +illusion_1.5L,ppo,181,72.4,force,front_fx,0.0019516863394528627 +illusion_1.5L,ppo,181,72.4,force,front_fy,0.0012804212747141719 +illusion_1.5L,ppo,181,72.4,force,upper_fx,0.002715237205848098 +illusion_1.5L,ppo,181,72.4,force,upper_fy,0.0019873271230608225 +illusion_1.5L,ppo,181,72.4,force,lower_fx,0.0027918964624404907 +illusion_1.5L,ppo,181,72.4,force,lower_fy,0.0007526833796873689 +illusion_1.5L,ppo,182,72.8,force,front_fx,0.0019201826071366668 +illusion_1.5L,ppo,182,72.8,force,front_fy,0.0012886413605883718 +illusion_1.5L,ppo,182,72.8,force,upper_fx,0.002733677625656128 +illusion_1.5L,ppo,182,72.8,force,upper_fy,0.002112046116963029 +illusion_1.5L,ppo,182,72.8,force,lower_fx,0.0027882116846740246 +illusion_1.5L,ppo,182,72.8,force,lower_fy,0.0009176947642117739 +illusion_1.5L,ppo,183,73.2,force,front_fx,0.001911487546749413 +illusion_1.5L,ppo,183,73.2,force,front_fy,0.0012006532633677125 +illusion_1.5L,ppo,183,73.2,force,upper_fx,0.0027072057127952576 +illusion_1.5L,ppo,183,73.2,force,upper_fy,0.002165495650842786 +illusion_1.5L,ppo,183,73.2,force,lower_fx,0.0027925262693315744 +illusion_1.5L,ppo,183,73.2,force,lower_fy,0.0010110868606716394 +illusion_1.5L,ppo,184,73.6,force,front_fx,0.001967852935194969 +illusion_1.5L,ppo,184,73.6,force,front_fy,0.0009193026926368475 +illusion_1.5L,ppo,184,73.6,force,upper_fx,0.0026605830062180758 +illusion_1.5L,ppo,184,73.6,force,upper_fy,0.0021226208191365004 +illusion_1.5L,ppo,184,73.6,force,lower_fx,0.0027714704629033804 +illusion_1.5L,ppo,184,73.6,force,lower_fy,0.001080574351362884 +illusion_1.5L,ppo,185,74.0,force,front_fx,0.002091268077492714 +illusion_1.5L,ppo,185,74.0,force,front_fy,0.0005351501167751849 +illusion_1.5L,ppo,185,74.0,force,upper_fx,0.0026077167131006718 +illusion_1.5L,ppo,185,74.0,force,upper_fy,0.0019504236988723278 +illusion_1.5L,ppo,185,74.0,force,lower_fx,0.0027147457003593445 +illusion_1.5L,ppo,185,74.0,force,lower_fy,0.0011177477426826954 +illusion_1.5L,ppo,186,74.4,force,front_fx,0.002179689472541213 +illusion_1.5L,ppo,186,74.4,force,front_fy,0.00029157998505979776 +illusion_1.5L,ppo,186,74.4,force,upper_fx,0.0025646984577178955 +illusion_1.5L,ppo,186,74.4,force,upper_fy,0.0015986368525773287 +illusion_1.5L,ppo,186,74.4,force,lower_fx,0.0026175675448030233 +illusion_1.5L,ppo,186,74.4,force,lower_fy,0.0010761073790490627 +illusion_1.5L,ppo,187,74.8,force,front_fx,0.002214323729276657 +illusion_1.5L,ppo,187,74.8,force,front_fy,0.00012274054461158812 +illusion_1.5L,ppo,187,74.8,force,upper_fx,0.002528567099943757 +illusion_1.5L,ppo,187,74.8,force,upper_fy,0.0012402069987729192 +illusion_1.5L,ppo,187,74.8,force,lower_fx,0.002557652536779642 +illusion_1.5L,ppo,187,74.8,force,lower_fy,0.000997719238512218 +illusion_1.5L,ppo,188,75.2,force,front_fx,0.002233937382698059 +illusion_1.5L,ppo,188,75.2,force,front_fy,-0.0001522059756098315 +illusion_1.5L,ppo,188,75.2,force,upper_fx,0.002526648575440049 +illusion_1.5L,ppo,188,75.2,force,upper_fy,0.0009245446999557316 +illusion_1.5L,ppo,188,75.2,force,lower_fx,0.002541810506954789 +illusion_1.5L,ppo,188,75.2,force,lower_fy,0.0007975377957336605 +illusion_1.5L,ppo,189,75.6,force,front_fx,0.0022436620201915503 +illusion_1.5L,ppo,189,75.6,force,front_fy,-0.0004937781486660242 +illusion_1.5L,ppo,189,75.6,force,upper_fx,0.0026226965710520744 +illusion_1.5L,ppo,189,75.6,force,upper_fy,0.0005285387742333114 +illusion_1.5L,ppo,189,75.6,force,lower_fx,0.0025483372155576944 +illusion_1.5L,ppo,189,75.6,force,lower_fy,0.00037277990486472845 +illusion_1.5L,ppo,190,76.0,force,front_fx,0.0022310076747089624 +illusion_1.5L,ppo,190,76.0,force,front_fy,-0.0008363388478755951 +illusion_1.5L,ppo,190,76.0,force,upper_fx,0.0026903548277914524 +illusion_1.5L,ppo,190,76.0,force,upper_fy,0.00019749358762055635 +illusion_1.5L,ppo,190,76.0,force,lower_fx,0.00257676187902689 +illusion_1.5L,ppo,190,76.0,force,lower_fy,-0.00015065261686686426 +illusion_1.5L,ppo,191,76.4,force,front_fx,0.002209835685789585 +illusion_1.5L,ppo,191,76.4,force,front_fy,-0.001158004510216415 +illusion_1.5L,ppo,191,76.4,force,upper_fx,0.00262798136100173 +illusion_1.5L,ppo,191,76.4,force,upper_fy,2.945801315945573e-05 +illusion_1.5L,ppo,191,76.4,force,lower_fx,0.0026087455917149782 +illusion_1.5L,ppo,191,76.4,force,lower_fy,-0.000645985477603972 +illusion_1.5L,ppo,192,76.8,force,front_fx,0.002162796212360263 +illusion_1.5L,ppo,192,76.8,force,front_fy,-0.0014134414959698915 +illusion_1.5L,ppo,192,76.8,force,upper_fx,0.0025565503165125847 +illusion_1.5L,ppo,192,76.8,force,upper_fy,-0.00011087562597822398 +illusion_1.5L,ppo,192,76.8,force,lower_fx,0.002642775420099497 +illusion_1.5L,ppo,192,76.8,force,lower_fy,-0.0011020272504538298 +illusion_1.5L,ppo,193,77.2,force,front_fx,0.0021142957266420126 +illusion_1.5L,ppo,193,77.2,force,front_fy,-0.001643693307414651 +illusion_1.5L,ppo,193,77.2,force,upper_fx,0.0025685399305075407 +illusion_1.5L,ppo,193,77.2,force,upper_fy,-0.0002567692718002945 +illusion_1.5L,ppo,193,77.2,force,lower_fx,0.0026924735866487026 +illusion_1.5L,ppo,193,77.2,force,lower_fy,-0.0014868895523250103 +illusion_1.5L,ppo,194,77.6,force,front_fx,0.002070124726742506 +illusion_1.5L,ppo,194,77.6,force,front_fy,-0.001870320294983685 +illusion_1.5L,ppo,194,77.6,force,upper_fx,0.0026107195299118757 +illusion_1.5L,ppo,194,77.6,force,upper_fy,-0.00039608965744264424 +illusion_1.5L,ppo,194,77.6,force,lower_fx,0.0027276352047920227 +illusion_1.5L,ppo,194,77.6,force,lower_fy,-0.0017572781071066856 +illusion_1.5L,ppo,195,78.0,force,front_fx,0.002029385417699814 +illusion_1.5L,ppo,195,78.0,force,front_fy,-0.0019519365159794688 +illusion_1.5L,ppo,195,78.0,force,upper_fx,0.00265208026394248 +illusion_1.5L,ppo,195,78.0,force,upper_fy,-0.0005371581646613777 +illusion_1.5L,ppo,195,78.0,force,lower_fx,0.0027563951443880796 +illusion_1.5L,ppo,195,78.0,force,lower_fy,-0.0018713861936703324 +illusion_1.5L,ppo,196,78.4,force,front_fx,0.0019877227023243904 +illusion_1.5L,ppo,196,78.4,force,front_fy,-0.001751621370203793 +illusion_1.5L,ppo,196,78.4,force,upper_fx,0.0026670803781598806 +illusion_1.5L,ppo,196,78.4,force,upper_fy,-0.0006675567710772157 +illusion_1.5L,ppo,196,78.4,force,lower_fx,0.0027764919213950634 +illusion_1.5L,ppo,196,78.4,force,lower_fy,-0.0018562510376796126 +illusion_1.5L,ppo,197,78.8,force,front_fx,0.0019770837388932705 +illusion_1.5L,ppo,197,78.8,force,front_fy,-0.001343120471574366 +illusion_1.5L,ppo,197,78.8,force,upper_fx,0.0026129684410989285 +illusion_1.5L,ppo,197,78.8,force,upper_fy,-0.0007048392435535789 +illusion_1.5L,ppo,197,78.8,force,lower_fx,0.0027463193982839584 +illusion_1.5L,ppo,197,78.8,force,lower_fy,-0.00178437156137079 +illusion_1.5L,ppo,198,79.2,force,front_fx,0.0020001879893243313 +illusion_1.5L,ppo,198,79.2,force,front_fy,-0.0009307495784014463 +illusion_1.5L,ppo,198,79.2,force,upper_fx,0.0025062612257897854 +illusion_1.5L,ppo,198,79.2,force,upper_fy,-0.0005878567462787032 +illusion_1.5L,ppo,198,79.2,force,lower_fx,0.002667567227035761 +illusion_1.5L,ppo,198,79.2,force,lower_fy,-0.0016761883161962032 +illusion_1.5L,ppo,199,79.6,force,front_fx,0.0019973786547780037 +illusion_1.5L,ppo,199,79.6,force,front_fy,-0.0007249334594234824 +illusion_1.5L,ppo,199,79.6,force,upper_fx,0.0024062125012278557 +illusion_1.5L,ppo,199,79.6,force,upper_fy,-0.0003665024705696851 +illusion_1.5L,ppo,199,79.6,force,lower_fx,0.0025893612764775753 +illusion_1.5L,ppo,199,79.6,force,lower_fy,-0.0014713610289618373 +illusion_1.5L,ppo,200,80.0,force,front_fx,0.0019863247871398926 +illusion_1.5L,ppo,200,80.0,force,front_fy,-0.000613293144851923 +illusion_1.5L,ppo,200,80.0,force,upper_fx,0.0023657395504415035 +illusion_1.5L,ppo,200,80.0,force,upper_fy,-0.000163078133482486 +illusion_1.5L,ppo,200,80.0,force,lower_fx,0.0025659846141934395 +illusion_1.5L,ppo,200,80.0,force,lower_fy,-0.001183117157779634 +illusion_1.5L,ppo,201,80.4,force,front_fx,0.0020076262298971415 +illusion_1.5L,ppo,201,80.4,force,front_fy,-0.000362582242814824 +illusion_1.5L,ppo,201,80.4,force,upper_fx,0.0023698131553828716 +illusion_1.5L,ppo,201,80.4,force,upper_fy,6.204639794304967e-05 +illusion_1.5L,ppo,201,80.4,force,lower_fx,0.0026361257769167423 +illusion_1.5L,ppo,201,80.4,force,lower_fy,-0.0008044727146625519 +illusion_1.5L,ppo,202,80.8,force,front_fx,0.0020429950673133135 +illusion_1.5L,ppo,202,80.8,force,front_fy,1.3759658941125963e-05 +illusion_1.5L,ppo,202,80.8,force,upper_fx,0.002385754371061921 +illusion_1.5L,ppo,202,80.8,force,upper_fy,0.00040357577381655574 +illusion_1.5L,ppo,202,80.8,force,lower_fx,0.0027604345232248306 +illusion_1.5L,ppo,202,80.8,force,lower_fy,-0.00031765352468937635 +illusion_1.5L,ppo,203,81.2,force,front_fx,0.0020454046316444874 +illusion_1.5L,ppo,203,81.2,force,front_fy,0.0003651792067103088 +illusion_1.5L,ppo,203,81.2,force,upper_fx,0.00242129759863019 +illusion_1.5L,ppo,203,81.2,force,upper_fy,0.0007805001805536449 +illusion_1.5L,ppo,203,81.2,force,lower_fx,0.0028079645708203316 +illusion_1.5L,ppo,203,81.2,force,lower_fy,0.00010971911979140714 +illusion_1.5L,ppo,204,81.6,force,front_fx,0.0020283213816583157 +illusion_1.5L,ppo,204,81.6,force,front_fy,0.000632364593911916 +illusion_1.5L,ppo,204,81.6,force,upper_fx,0.0024967254139482975 +illusion_1.5L,ppo,204,81.6,force,upper_fy,0.001083491719327867 +illusion_1.5L,ppo,204,81.6,force,lower_fx,0.002758490853011608 +illusion_1.5L,ppo,204,81.6,force,lower_fy,0.000377414224203676 +illusion_1.5L,ppo,205,82.0,force,front_fx,0.001992378383874893 +illusion_1.5L,ppo,205,82.0,force,front_fy,0.0008381123770959675 +illusion_1.5L,ppo,205,82.0,force,upper_fx,0.0025573503226041794 +illusion_1.5L,ppo,205,82.0,force,upper_fy,0.0013348598731681705 +illusion_1.5L,ppo,205,82.0,force,lower_fx,0.002698548138141632 +illusion_1.5L,ppo,205,82.0,force,lower_fy,0.0005435996572487056 +illusion_1.5L,ppo,206,82.4,force,front_fx,0.0019500473281368613 +illusion_1.5L,ppo,206,82.4,force,front_fy,0.0010167215950787067 +illusion_1.5L,ppo,206,82.4,force,upper_fx,0.0025744992308318615 +illusion_1.5L,ppo,206,82.4,force,upper_fy,0.0015980784082785249 +illusion_1.5L,ppo,206,82.4,force,lower_fx,0.0027046778704971075 +illusion_1.5L,ppo,206,82.4,force,lower_fy,0.0006744282436557114 +illusion_1.5L,ppo,207,82.8,force,front_fx,0.0019127653213217854 +illusion_1.5L,ppo,207,82.8,force,front_fy,0.0011357618495821953 +illusion_1.5L,ppo,207,82.8,force,upper_fx,0.0025660833343863487 +illusion_1.5L,ppo,207,82.8,force,upper_fy,0.001821361598558724 +illusion_1.5L,ppo,207,82.8,force,lower_fx,0.002735365414991975 +illusion_1.5L,ppo,207,82.8,force,lower_fy,0.0007531896117143333 +illusion_1.5L,ppo,208,83.2,force,front_fx,0.0018863833975046873 +illusion_1.5L,ppo,208,83.2,force,front_fy,0.001052690320648253 +illusion_1.5L,ppo,208,83.2,force,upper_fx,0.002536892658099532 +illusion_1.5L,ppo,208,83.2,force,upper_fy,0.0019592363387346268 +illusion_1.5L,ppo,208,83.2,force,lower_fx,0.0027153664268553257 +illusion_1.5L,ppo,208,83.2,force,lower_fy,0.0007828243542462587 +illusion_1.5L,ppo,209,83.6,force,front_fx,0.0019181326497346163 +illusion_1.5L,ppo,209,83.6,force,front_fy,0.0007209245231933892 +illusion_1.5L,ppo,209,83.6,force,upper_fx,0.0024815713986754417 +illusion_1.5L,ppo,209,83.6,force,upper_fy,0.0020492346957325935 +illusion_1.5L,ppo,209,83.6,force,lower_fx,0.002661209786310792 +illusion_1.5L,ppo,209,83.6,force,lower_fy,0.0007801548927091062 +illusion_1.5L,ppo,210,84.0,force,front_fx,0.0019987940322607756 +illusion_1.5L,ppo,210,84.0,force,front_fy,0.0004243719158694148 +illusion_1.5L,ppo,210,84.0,force,upper_fx,0.0023890750017017126 +illusion_1.5L,ppo,210,84.0,force,upper_fy,0.0020422080997377634 +illusion_1.5L,ppo,210,84.0,force,lower_fx,0.0025900749024003744 +illusion_1.5L,ppo,210,84.0,force,lower_fy,0.0007277491968125105 +illusion_1.5L,ppo,211,84.4,force,front_fx,0.0020500256214290857 +illusion_1.5L,ppo,211,84.4,force,front_fy,0.00033420335967093706 +illusion_1.5L,ppo,211,84.4,force,upper_fx,0.0022852155379951 +illusion_1.5L,ppo,211,84.4,force,upper_fy,0.0018781023100018501 +illusion_1.5L,ppo,211,84.4,force,lower_fx,0.0025148075073957443 +illusion_1.5L,ppo,211,84.4,force,lower_fy,0.000668841996230185 +illusion_1.5L,ppo,212,84.8,force,front_fx,0.0020802589133381844 +illusion_1.5L,ppo,212,84.8,force,front_fy,0.00022697907115798444 +illusion_1.5L,ppo,212,84.8,force,upper_fx,0.0022372137755155563 +illusion_1.5L,ppo,212,84.8,force,upper_fy,0.0016495375894010067 +illusion_1.5L,ppo,212,84.8,force,lower_fx,0.0024727291893213987 +illusion_1.5L,ppo,212,84.8,force,lower_fy,0.0006631794385612011 +illusion_1.5L,ppo,213,85.2,force,front_fx,0.002125830389559269 +illusion_1.5L,ppo,213,85.2,force,front_fy,-3.9201462641358376e-05 +illusion_1.5L,ppo,213,85.2,force,upper_fx,0.0023260030429810286 +illusion_1.5L,ppo,213,85.2,force,upper_fy,0.00128292350564152 +illusion_1.5L,ppo,213,85.2,force,lower_fx,0.0024432537611573935 +illusion_1.5L,ppo,213,85.2,force,lower_fy,0.0005696768057532609 +illusion_1.5L,ppo,214,85.6,force,front_fx,0.002172115258872509 +illusion_1.5L,ppo,214,85.6,force,front_fy,-0.00037718817475251853 +illusion_1.5L,ppo,214,85.6,force,upper_fx,0.002495039952918887 +illusion_1.5L,ppo,214,85.6,force,upper_fy,0.0007476729806512594 +illusion_1.5L,ppo,214,85.6,force,lower_fx,0.002415415132418275 +illusion_1.5L,ppo,214,85.6,force,lower_fy,0.0003141813795082271 +illusion_1.5L,ppo,215,86.0,force,front_fx,0.0022107562981545925 +illusion_1.5L,ppo,215,86.0,force,front_fy,-0.0007203453569673002 +illusion_1.5L,ppo,215,86.0,force,upper_fx,0.0025353922974318266 +illusion_1.5L,ppo,215,86.0,force,upper_fy,0.00034152567968703806 +illusion_1.5L,ppo,215,86.0,force,lower_fx,0.0024308909196406603 +illusion_1.5L,ppo,215,86.0,force,lower_fy,3.821281643467955e-05 +illusion_1.5L,ppo,216,86.4,force,front_fx,0.0022187770809978247 +illusion_1.5L,ppo,216,86.4,force,front_fy,-0.0010012224083766341 +illusion_1.5L,ppo,216,86.4,force,upper_fx,0.002440443728119135 +illusion_1.5L,ppo,216,86.4,force,upper_fy,0.000112237932626158 +illusion_1.5L,ppo,216,86.4,force,lower_fx,0.002471414627507329 +illusion_1.5L,ppo,216,86.4,force,lower_fy,-0.00022701898706145585 +illusion_1.5L,ppo,217,86.8,force,front_fx,0.0021746570710092783 +illusion_1.5L,ppo,217,86.8,force,front_fy,-0.0011917274678125978 +illusion_1.5L,ppo,217,86.8,force,upper_fx,0.0024139159359037876 +illusion_1.5L,ppo,217,86.8,force,upper_fy,-0.00011042767437174916 +illusion_1.5L,ppo,217,86.8,force,lower_fx,0.0025187244173139334 +illusion_1.5L,ppo,217,86.8,force,lower_fy,-0.0005430472665466368 +illusion_1.5L,ppo,218,87.2,force,front_fx,0.0021106975618749857 +illusion_1.5L,ppo,218,87.2,force,front_fy,-0.0014046123251318932 +illusion_1.5L,ppo,218,87.2,force,upper_fx,0.002522045746445656 +illusion_1.5L,ppo,218,87.2,force,upper_fy,-0.0003369332989677787 +illusion_1.5L,ppo,218,87.2,force,lower_fx,0.0025746482424438 +illusion_1.5L,ppo,218,87.2,force,lower_fy,-0.0008971851784735918 +illusion_1.5L,ppo,219,87.6,force,front_fx,0.002038004342466593 +illusion_1.5L,ppo,219,87.6,force,front_fy,-0.001618830836378038 +illusion_1.5L,ppo,219,87.6,force,upper_fx,0.0026714049745351076 +illusion_1.5L,ppo,219,87.6,force,upper_fy,-0.0005270313122309744 +illusion_1.5L,ppo,219,87.6,force,lower_fx,0.0026172567158937454 +illusion_1.5L,ppo,219,87.6,force,lower_fy,-0.0012639749329537153 +illusion_1.5L,ppo,220,88.0,force,front_fx,0.0019587911665439606 +illusion_1.5L,ppo,220,88.0,force,front_fy,-0.0016903415089473128 +illusion_1.5L,ppo,220,88.0,force,upper_fx,0.002750230021774769 +illusion_1.5L,ppo,220,88.0,force,upper_fy,-0.0006503699696622789 +illusion_1.5L,ppo,220,88.0,force,lower_fx,0.002643744694069028 +illusion_1.5L,ppo,220,88.0,force,lower_fy,-0.001578176044858992 +illusion_1.5L,ppo,221,88.4,force,front_fx,0.0019015019061043859 +illusion_1.5L,ppo,221,88.4,force,front_fy,-0.0015121742617338896 +illusion_1.5L,ppo,221,88.4,force,upper_fx,0.002694617724046111 +illusion_1.5L,ppo,221,88.4,force,upper_fy,-0.0006876105326227844 +illusion_1.5L,ppo,221,88.4,force,lower_fx,0.0026446410920470953 +illusion_1.5L,ppo,221,88.4,force,lower_fy,-0.0017843851819634438 +illusion_1.5L,ppo,222,88.8,force,front_fx,0.0018845717422664165 +illusion_1.5L,ppo,222,88.8,force,front_fy,-0.0012001862050965428 +illusion_1.5L,ppo,222,88.8,force,upper_fx,0.002557753585278988 +illusion_1.5L,ppo,222,88.8,force,upper_fy,-0.0006548494566231966 +illusion_1.5L,ppo,222,88.8,force,lower_fx,0.0025903102941811085 +illusion_1.5L,ppo,222,88.8,force,lower_fy,-0.0019044301006942987 +illusion_1.5L,ppo,223,89.2,force,front_fx,0.0019062012434005737 +illusion_1.5L,ppo,223,89.2,force,front_fy,-0.0008865267736837268 +illusion_1.5L,ppo,223,89.2,force,upper_fx,0.0024498619604855776 +illusion_1.5L,ppo,223,89.2,force,upper_fy,-0.0005850653978995979 +illusion_1.5L,ppo,223,89.2,force,lower_fx,0.002483137184754014 +illusion_1.5L,ppo,223,89.2,force,lower_fy,-0.001964082010090351 +illusion_1.5L,ppo,224,89.6,force,front_fx,0.0019196852808818221 +illusion_1.5L,ppo,224,89.6,force,front_fy,-0.000742665957659483 +illusion_1.5L,ppo,224,89.6,force,upper_fx,0.002372595714405179 +illusion_1.5L,ppo,224,89.6,force,upper_fy,-0.00046212191227823496 +illusion_1.5L,ppo,224,89.6,force,lower_fx,0.0023748273961246014 +illusion_1.5L,ppo,224,89.6,force,lower_fy,-0.0018941642483696342 +illusion_1.5L,ppo,225,90.0,force,front_fx,0.001909945160150528 +illusion_1.5L,ppo,225,90.0,force,front_fy,-0.0007265982567332685 +illusion_1.5L,ppo,225,90.0,force,upper_fx,0.00230859755538404 +illusion_1.5L,ppo,225,90.0,force,upper_fy,-0.00032418567570857704 +illusion_1.5L,ppo,225,90.0,force,lower_fx,0.002334197983145714 +illusion_1.5L,ppo,225,90.0,force,lower_fy,-0.0016663788119331002 +illusion_1.5L,ppo,226,90.4,force,front_fx,0.0019363666651770473 +illusion_1.5L,ppo,226,90.4,force,front_fy,-0.0005605908809229732 +illusion_1.5L,ppo,226,90.4,force,upper_fx,0.0022827298380434513 +illusion_1.5L,ppo,226,90.4,force,upper_fy,-0.00018395345250610262 +illusion_1.5L,ppo,226,90.4,force,lower_fx,0.00240694941021502 +illusion_1.5L,ppo,226,90.4,force,lower_fy,-0.0012986789224669337 +illusion_1.5L,ppo,227,90.8,force,front_fx,0.001996584003791213 +illusion_1.5L,ppo,227,90.8,force,front_fy,-0.00022682153212372214 +illusion_1.5L,ppo,227,90.8,force,upper_fx,0.0022760056890547276 +illusion_1.5L,ppo,227,90.8,force,upper_fy,3.588708204915747e-05 +illusion_1.5L,ppo,227,90.8,force,lower_fx,0.0025387872010469437 +illusion_1.5L,ppo,227,90.8,force,lower_fy,-0.0007909435662440956 +illusion_1.5L,ppo,228,91.2,force,front_fx,0.002031688578426838 +illusion_1.5L,ppo,228,91.2,force,front_fy,9.909026994137093e-05 +illusion_1.5L,ppo,228,91.2,force,upper_fx,0.002294637495651841 +illusion_1.5L,ppo,228,91.2,force,upper_fy,0.00033645780058577657 +illusion_1.5L,ppo,228,91.2,force,lower_fx,0.0026102918200194836 +illusion_1.5L,ppo,228,91.2,force,lower_fy,-0.00028085120720788836 +illusion_1.5L,ppo,229,91.6,force,front_fx,0.0020287143997848034 +illusion_1.5L,ppo,229,91.6,force,front_fy,0.0003433960664551705 +illusion_1.5L,ppo,229,91.6,force,upper_fx,0.0023622000589966774 +illusion_1.5L,ppo,229,91.6,force,upper_fy,0.0006035828846506774 +illusion_1.5L,ppo,229,91.6,force,lower_fx,0.0025791004300117493 +illusion_1.5L,ppo,229,91.6,force,lower_fy,5.563497688854113e-05 +illusion_1.5L,ppo,230,92.0,force,front_fx,0.0020059668458998203 +illusion_1.5L,ppo,230,92.0,force,front_fy,0.0005315258167684078 +illusion_1.5L,ppo,230,92.0,force,upper_fx,0.0024310462176799774 +illusion_1.5L,ppo,230,92.0,force,upper_fy,0.0008330619311891496 +illusion_1.5L,ppo,230,92.0,force,lower_fx,0.0025269484613090754 +illusion_1.5L,ppo,230,92.0,force,lower_fy,0.0002678502642083913 +illusion_1.5L,ppo,231,92.4,force,front_fx,0.001963180024176836 +illusion_1.5L,ppo,231,92.4,force,front_fy,0.0006975252763368189 +illusion_1.5L,ppo,231,92.4,force,upper_fx,0.0024639954790472984 +illusion_1.5L,ppo,231,92.4,force,upper_fy,0.0011218893341720104 +illusion_1.5L,ppo,231,92.4,force,lower_fx,0.002568290801718831 +illusion_1.5L,ppo,231,92.4,force,lower_fy,0.00047049287240952253 +illusion_1.5L,ppo,232,92.8,force,front_fx,0.0019223977578803897 +illusion_1.5L,ppo,232,92.8,force,front_fy,0.0008585136383771896 +illusion_1.5L,ppo,232,92.8,force,upper_fx,0.0024722290690988302 +illusion_1.5L,ppo,232,92.8,force,upper_fy,0.0014482642291113734 +illusion_1.5L,ppo,232,92.8,force,lower_fx,0.0026711728423833847 +illusion_1.5L,ppo,232,92.8,force,lower_fy,0.0006343346904031932 +illusion_1.5L,ppo,233,93.2,force,front_fx,0.0018792185001075268 +illusion_1.5L,ppo,233,93.2,force,front_fy,0.0008835472399368882 +illusion_1.5L,ppo,233,93.2,force,upper_fx,0.0024569223169237375 +illusion_1.5L,ppo,233,93.2,force,upper_fy,0.0017381268553435802 +illusion_1.5L,ppo,233,93.2,force,lower_fx,0.00271138409152627 +illusion_1.5L,ppo,233,93.2,force,lower_fy,0.0007165414281189442 +illusion_1.5L,ppo,234,93.6,force,front_fx,0.0018726561684161425 +illusion_1.5L,ppo,234,93.6,force,front_fy,0.000680384982842952 +illusion_1.5L,ppo,234,93.6,force,upper_fx,0.0024199895560741425 +illusion_1.5L,ppo,234,93.6,force,upper_fy,0.0019719551783055067 +illusion_1.5L,ppo,234,93.6,force,lower_fx,0.002679642057046294 +illusion_1.5L,ppo,234,93.6,force,lower_fy,0.0007587854634039104 +illusion_1.5L,ppo,235,94.0,force,front_fx,0.001939285546541214 +illusion_1.5L,ppo,235,94.0,force,front_fy,0.000394938891986385 +illusion_1.5L,ppo,235,94.0,force,upper_fx,0.0023407861590385437 +illusion_1.5L,ppo,235,94.0,force,upper_fy,0.002136166440322995 +illusion_1.5L,ppo,235,94.0,force,lower_fx,0.0026314237620681524 +illusion_1.5L,ppo,235,94.0,force,lower_fy,0.0007848797249607742 +illusion_1.5L,ppo,236,94.4,force,front_fx,0.0020157911349087954 +illusion_1.5L,ppo,236,94.4,force,front_fy,0.0002584733592811972 +illusion_1.5L,ppo,236,94.4,force,upper_fx,0.0022195212077349424 +illusion_1.5L,ppo,236,94.4,force,upper_fy,0.0021342195104807615 +illusion_1.5L,ppo,236,94.4,force,lower_fx,0.0025641866959631443 +illusion_1.5L,ppo,236,94.4,force,lower_fy,0.0007816128199920058 +illusion_1.5L,ppo,237,94.8,force,front_fx,0.002059394959360361 +illusion_1.5L,ppo,237,94.8,force,front_fy,0.0002555868122726679 +illusion_1.5L,ppo,237,94.8,force,upper_fx,0.0021448188927024603 +illusion_1.5L,ppo,237,94.8,force,upper_fy,0.0019626475404947996 +illusion_1.5L,ppo,237,94.8,force,lower_fx,0.002496023429557681 +illusion_1.5L,ppo,237,94.8,force,lower_fy,0.0008102420251816511 +illusion_1.5L,ppo,238,95.2,force,front_fx,0.002089013811200857 +illusion_1.5L,ppo,238,95.2,force,front_fy,0.0001368330849800259 +illusion_1.5L,ppo,238,95.2,force,upper_fx,0.0021820992697030306 +illusion_1.5L,ppo,238,95.2,force,upper_fy,0.0016727850306779146 +illusion_1.5L,ppo,238,95.2,force,lower_fx,0.002448058221489191 +illusion_1.5L,ppo,238,95.2,force,lower_fy,0.0008476224029436707 +illusion_1.5L,ppo,239,95.6,force,front_fx,0.002148256404325366 +illusion_1.5L,ppo,239,95.6,force,front_fy,-0.00015199073823168874 +illusion_1.5L,ppo,239,95.6,force,upper_fx,0.002335031982511282 +illusion_1.5L,ppo,239,95.6,force,upper_fy,0.0012029141653329134 +illusion_1.5L,ppo,239,95.6,force,lower_fx,0.002410499844700098 +illusion_1.5L,ppo,239,95.6,force,lower_fy,0.0007699530106037855 +illusion_1.5L,ppo,240,96.0,force,front_fx,0.002218937035650015 +illusion_1.5L,ppo,240,96.0,force,front_fy,-0.0004821176698897034 +illusion_1.5L,ppo,240,96.0,force,upper_fx,0.0024697568733245134 +illusion_1.5L,ppo,240,96.0,force,upper_fy,0.0006630649440921843 +illusion_1.5L,ppo,240,96.0,force,lower_fx,0.002394995419308543 +illusion_1.5L,ppo,240,96.0,force,lower_fy,0.000587905989959836 +illusion_1.5L,ppo,241,96.4,force,front_fx,0.0022561296354979277 +illusion_1.5L,ppo,241,96.4,force,front_fy,-0.0007744081085547805 +illusion_1.5L,ppo,241,96.4,force,upper_fx,0.0024625156074762344 +illusion_1.5L,ppo,241,96.4,force,upper_fy,0.0002718942705541849 +illusion_1.5L,ppo,241,96.4,force,lower_fx,0.002408417174592614 +illusion_1.5L,ppo,241,96.4,force,lower_fy,0.0003808094479609281 +illusion_1.5L,ppo,242,96.8,force,front_fx,0.002248513512313366 +illusion_1.5L,ppo,242,96.8,force,front_fy,-0.0010067899711430073 +illusion_1.5L,ppo,242,96.8,force,upper_fx,0.0024110297672450542 +illusion_1.5L,ppo,242,96.8,force,upper_fy,5.701033387595089e-06 +illusion_1.5L,ppo,242,96.8,force,lower_fx,0.002440971788018942 +illusion_1.5L,ppo,242,96.8,force,lower_fy,0.00014192545495461673 +illusion_1.5L,ppo,243,97.2,force,front_fx,0.0022015292197465897 +illusion_1.5L,ppo,243,97.2,force,front_fy,-0.0012153887655586004 +illusion_1.5L,ppo,243,97.2,force,upper_fx,0.002471266547217965 +illusion_1.5L,ppo,243,97.2,force,upper_fy,-0.0002505221636965871 +illusion_1.5L,ppo,243,97.2,force,lower_fx,0.0024973235558718443 +illusion_1.5L,ppo,243,97.2,force,lower_fy,-0.00017783287330530584 +illusion_1.5L,ppo,244,97.6,force,front_fx,0.002114243572577834 +illusion_1.5L,ppo,244,97.6,force,front_fy,-0.0014173701638355851 +illusion_1.5L,ppo,244,97.6,force,upper_fx,0.0026362077333033085 +illusion_1.5L,ppo,244,97.6,force,upper_fy,-0.000491560494992882 +illusion_1.5L,ppo,244,97.6,force,lower_fx,0.002562226029112935 +illusion_1.5L,ppo,244,97.6,force,lower_fy,-0.0006039142026565969 +illusion_1.5L,ppo,245,98.0,force,front_fx,0.002009093761444092 +illusion_1.5L,ppo,245,98.0,force,front_fy,-0.0015716487541794777 +illusion_1.5L,ppo,245,98.0,force,upper_fx,0.002772946609184146 +illusion_1.5L,ppo,245,98.0,force,upper_fy,-0.0006310423486866057 +illusion_1.5L,ppo,245,98.0,force,lower_fx,0.002610991010442376 +illusion_1.5L,ppo,245,98.0,force,lower_fy,-0.0010932674631476402 +illusion_1.5L,ppo,246,98.4,force,front_fx,0.0019101710058748722 +illusion_1.5L,ppo,246,98.4,force,front_fy,-0.0015691658481955528 +illusion_1.5L,ppo,246,98.4,force,upper_fx,0.002764895325526595 +illusion_1.5L,ppo,246,98.4,force,upper_fy,-0.0006518722511827946 +illusion_1.5L,ppo,246,98.4,force,lower_fx,0.002618873957544565 +illusion_1.5L,ppo,246,98.4,force,lower_fy,-0.0015439183916896582 +illusion_1.5L,ppo,247,98.8,force,front_fx,0.0018381993286311626 +illusion_1.5L,ppo,247,98.8,force,front_fy,-0.0013906549429520965 +illusion_1.5L,ppo,247,98.8,force,upper_fx,0.002620523562654853 +illusion_1.5L,ppo,247,98.8,force,upper_fy,-0.0005968065233901143 +illusion_1.5L,ppo,247,98.8,force,lower_fx,0.0025718279648572206 +illusion_1.5L,ppo,247,98.8,force,lower_fy,-0.0018846063176169991 +illusion_1.5L,ppo,248,99.2,force,front_fx,0.0018241495126858354 +illusion_1.5L,ppo,248,99.2,force,front_fy,-0.0011451838072389364 +illusion_1.5L,ppo,248,99.2,force,upper_fx,0.0024518368300050497 +illusion_1.5L,ppo,248,99.2,force,upper_fy,-0.0005091262864880264 +illusion_1.5L,ppo,248,99.2,force,lower_fx,0.002485602628439665 +illusion_1.5L,ppo,248,99.2,force,lower_fy,-0.0020761266350746155 +illusion_1.5L,ppo,249,99.6,force,front_fx,0.001862222095951438 +illusion_1.5L,ppo,249,99.6,force,front_fy,-0.0008762783836573362 +illusion_1.5L,ppo,249,99.6,force,upper_fx,0.0023436369374394417 +illusion_1.5L,ppo,249,99.6,force,upper_fy,-0.00044193226494826376 +illusion_1.5L,ppo,249,99.6,force,lower_fx,0.0023776853922754526 +illusion_1.5L,ppo,249,99.6,force,lower_fy,-0.0021211591083556414 +illusion_1.5L,ppo,250,100.0,force,front_fx,0.0019086201209574938 +illusion_1.5L,ppo,250,100.0,force,front_fy,-0.0006693461327813566 +illusion_1.5L,ppo,250,100.0,force,upper_fx,0.0022732564248144627 +illusion_1.5L,ppo,250,100.0,force,upper_fy,-0.00036514271050691605 +illusion_1.5L,ppo,250,100.0,force,lower_fx,0.002293386496603489 +illusion_1.5L,ppo,250,100.0,force,lower_fy,-0.001992787467315793 +illusion_1.5L,ppo,251,100.4,force,front_fx,0.0019224748248234391 +illusion_1.5L,ppo,251,100.4,force,front_fy,-0.0006104084313847125 +illusion_1.5L,ppo,251,100.4,force,upper_fx,0.0022199677769094706 +illusion_1.5L,ppo,251,100.4,force,upper_fy,-0.00022440262546297163 +illusion_1.5L,ppo,251,100.4,force,lower_fx,0.002314907032996416 +illusion_1.5L,ppo,251,100.4,force,lower_fy,-0.001653270679526031 +illusion_1.5L,ppo,252,100.8,force,front_fx,0.0019383687758818269 +illusion_1.5L,ppo,252,100.8,force,front_fy,-0.000487516779685393 +illusion_1.5L,ppo,252,100.8,force,upper_fx,0.0022097115870565176 +illusion_1.5L,ppo,252,100.8,force,upper_fy,-9.024432074511424e-05 +illusion_1.5L,ppo,252,100.8,force,lower_fx,0.002409851411357522 +illusion_1.5L,ppo,252,100.8,force,lower_fy,-0.0012169660767540336 +illusion_1.5L,ppo,253,101.2,force,front_fx,0.0019828067161142826 +illusion_1.5L,ppo,253,101.2,force,front_fy,-0.00017690304957795888 +illusion_1.5L,ppo,253,101.2,force,upper_fx,0.0022331762593239546 +illusion_1.5L,ppo,253,101.2,force,upper_fy,8.835563494358212e-05 +illusion_1.5L,ppo,253,101.2,force,lower_fx,0.00252535636536777 +illusion_1.5L,ppo,253,101.2,force,lower_fy,-0.000717331247869879 +illusion_1.5L,ppo,254,101.6,force,front_fx,0.002014986239373684 +illusion_1.5L,ppo,254,101.6,force,front_fy,0.0001427659735782072 +illusion_1.5L,ppo,254,101.6,force,upper_fx,0.0022855037823319435 +illusion_1.5L,ppo,254,101.6,force,upper_fy,0.0004243842849973589 +illusion_1.5L,ppo,254,101.6,force,lower_fx,0.0026613902300596237 +illusion_1.5L,ppo,254,101.6,force,lower_fy,-0.00015977039583958685 +illusion_1.5L,ppo,255,102.0,force,front_fx,0.002008814364671707 +illusion_1.5L,ppo,255,102.0,force,front_fy,0.0004217065579723567 +illusion_1.5L,ppo,255,102.0,force,upper_fx,0.002360491082072258 +illusion_1.5L,ppo,255,102.0,force,upper_fy,0.0007911306456662714 +illusion_1.5L,ppo,255,102.0,force,lower_fx,0.00271689984947443 +illusion_1.5L,ppo,255,102.0,force,lower_fy,0.00025406834902241826 +illusion_1.5L,ppo,256,102.4,force,front_fx,0.001987421652302146 +illusion_1.5L,ppo,256,102.4,force,front_fy,0.0006832421640865505 +illusion_1.5L,ppo,256,102.4,force,upper_fx,0.0024429934564977884 +illusion_1.5L,ppo,256,102.4,force,upper_fy,0.0010873194551095366 +illusion_1.5L,ppo,256,102.4,force,lower_fx,0.0026874784380197525 +illusion_1.5L,ppo,256,102.4,force,lower_fy,0.0004886253154836595 +illusion_1.5L,ppo,257,102.8,force,front_fx,0.0019471821142360568 +illusion_1.5L,ppo,257,102.8,force,front_fy,0.0008832369931042194 +illusion_1.5L,ppo,257,102.8,force,upper_fx,0.002502526855096221 +illusion_1.5L,ppo,257,102.8,force,upper_fy,0.0014175819233059883 +illusion_1.5L,ppo,257,102.8,force,lower_fx,0.002692370442673564 +illusion_1.5L,ppo,257,102.8,force,lower_fy,0.0006663823733106256 +illusion_1.5L,ppo,258,103.2,force,front_fx,0.0018901713192462921 +illusion_1.5L,ppo,258,103.2,force,front_fy,0.0010331611847504973 +illusion_1.5L,ppo,258,103.2,force,upper_fx,0.002517909975722432 +illusion_1.5L,ppo,258,103.2,force,upper_fy,0.0017596030374988914 +illusion_1.5L,ppo,258,103.2,force,lower_fx,0.002707987790927291 +illusion_1.5L,ppo,258,103.2,force,lower_fy,0.0007556805503554642 +illusion_1.5L,ppo,259,103.6,force,front_fx,0.0018457348924130201 +illusion_1.5L,ppo,259,103.6,force,front_fy,0.0010839164024218917 +illusion_1.5L,ppo,259,103.6,force,upper_fx,0.002500884933397174 +illusion_1.5L,ppo,259,103.6,force,upper_fy,0.0020455089397728443 +illusion_1.5L,ppo,259,103.6,force,lower_fx,0.002677355660125613 +illusion_1.5L,ppo,259,103.6,force,lower_fy,0.0007635110523551702 +illusion_1.5L,ppo,260,104.0,force,front_fx,0.0018340636743232608 +illusion_1.5L,ppo,260,104.0,force,front_fy,0.000953438866417855 +illusion_1.5L,ppo,260,104.0,force,upper_fx,0.002454432426020503 +illusion_1.5L,ppo,260,104.0,force,upper_fy,0.002274121856316924 +illusion_1.5L,ppo,260,104.0,force,lower_fx,0.0026202979497611523 +illusion_1.5L,ppo,260,104.0,force,lower_fy,0.0007559272926300764 +illusion_1.5L,ppo,261,104.4,force,front_fx,0.001881972886621952 +illusion_1.5L,ppo,261,104.4,force,front_fy,0.0006985898944549263 +illusion_1.5L,ppo,261,104.4,force,upper_fx,0.002372693968936801 +illusion_1.5L,ppo,261,104.4,force,upper_fy,0.0024072001688182354 +illusion_1.5L,ppo,261,104.4,force,lower_fx,0.0025601976085454226 +illusion_1.5L,ppo,261,104.4,force,lower_fy,0.0007435532170347869 +illusion_1.5L,ppo,262,104.8,force,front_fx,0.001995568163692951 +illusion_1.5L,ppo,262,104.8,force,front_fy,0.00039475999074056745 +illusion_1.5L,ppo,262,104.8,force,upper_fx,0.0022584812249988317 +illusion_1.5L,ppo,262,104.8,force,upper_fy,0.002430973807349801 +illusion_1.5L,ppo,262,104.8,force,lower_fx,0.002525139134377241 +illusion_1.5L,ppo,262,104.8,force,lower_fy,0.0007460549240931869 +illusion_1.5L,ppo,263,105.2,force,front_fx,0.0021121217869222164 +illusion_1.5L,ppo,263,105.2,force,front_fy,0.0001835254079196602 +illusion_1.5L,ppo,263,105.2,force,upper_fx,0.0021731536835432053 +illusion_1.5L,ppo,263,105.2,force,upper_fy,0.0022435972932726145 +illusion_1.5L,ppo,263,105.2,force,lower_fx,0.0024753124453127384 +illusion_1.5L,ppo,263,105.2,force,lower_fy,0.0007236861274577677 +illusion_1.5L,ppo,264,105.6,force,front_fx,0.0021563356276601553 +illusion_1.5L,ppo,264,105.6,force,front_fy,7.478342740796506e-05 +illusion_1.5L,ppo,264,105.6,force,upper_fx,0.0022197263315320015 +illusion_1.5L,ppo,264,105.6,force,upper_fy,0.0018021324649453163 +illusion_1.5L,ppo,264,105.6,force,lower_fx,0.0023992005735635757 +illusion_1.5L,ppo,264,105.6,force,lower_fy,0.0006646325346082449 +illusion_1.5L,ppo,265,106.0,force,front_fx,0.0021855079103261232 +illusion_1.5L,ppo,265,106.0,force,front_fy,-0.0001686702307779342 +illusion_1.5L,ppo,265,106.0,force,upper_fx,0.0023621118161827326 +illusion_1.5L,ppo,265,106.0,force,upper_fy,0.001293773646466434 +illusion_1.5L,ppo,265,106.0,force,lower_fx,0.0023700660094618797 +illusion_1.5L,ppo,265,106.0,force,lower_fy,0.0005814000032842159 +illusion_1.5L,ppo,266,106.4,force,front_fx,0.002236058935523033 +illusion_1.5L,ppo,266,106.4,force,front_fy,-0.0005555039388127625 +illusion_1.5L,ppo,266,106.4,force,upper_fx,0.0025143923703581095 +illusion_1.5L,ppo,266,106.4,force,upper_fy,0.0007644694414921105 +illusion_1.5L,ppo,266,106.4,force,lower_fx,0.002389350440353155 +illusion_1.5L,ppo,266,106.4,force,lower_fy,0.00035643577575683594 +illusion_1.5L,ppo,267,106.8,force,front_fx,0.002252211794257164 +illusion_1.5L,ppo,267,106.8,force,front_fy,-0.0008964914595708251 +illusion_1.5L,ppo,267,106.8,force,upper_fx,0.002620695624500513 +illusion_1.5L,ppo,267,106.8,force,upper_fy,0.00025834343978203833 +illusion_1.5L,ppo,267,106.8,force,lower_fx,0.0024390548933297396 +illusion_1.5L,ppo,267,106.8,force,lower_fy,-3.302757613710128e-05 +illusion_1.5L,ppo,268,107.2,force,front_fx,0.00222757481969893 +illusion_1.5L,ppo,268,107.2,force,front_fy,-0.0011888695880770683 +illusion_1.5L,ppo,268,107.2,force,upper_fx,0.00259867450222373 +illusion_1.5L,ppo,268,107.2,force,upper_fy,-4.435142545844428e-05 +illusion_1.5L,ppo,268,107.2,force,lower_fx,0.002505409996956587 +illusion_1.5L,ppo,268,107.2,force,lower_fy,-0.00044802442425861955 +illusion_1.5L,ppo,269,107.6,force,front_fx,0.002183333272114396 +illusion_1.5L,ppo,269,107.6,force,front_fy,-0.00145963195245713 +illusion_1.5L,ppo,269,107.6,force,upper_fx,0.0025373816024512053 +illusion_1.5L,ppo,269,107.6,force,upper_fy,-0.0002195203851442784 +illusion_1.5L,ppo,269,107.6,force,lower_fx,0.0025643762201070786 +illusion_1.5L,ppo,269,107.6,force,lower_fy,-0.0008607679628767073 +illusion_1.5L,ppo,270,108.0,force,front_fx,0.002106007421389222 +illusion_1.5L,ppo,270,108.0,force,front_fy,-0.0016891780542209744 +illusion_1.5L,ppo,270,108.0,force,upper_fx,0.002581095090135932 +illusion_1.5L,ppo,270,108.0,force,upper_fy,-0.00039048600592650473 +illusion_1.5L,ppo,270,108.0,force,lower_fx,0.0026238574646413326 +illusion_1.5L,ppo,270,108.0,force,lower_fy,-0.0012886531185358763 +illusion_1.5L,ppo,271,108.4,force,front_fx,0.002032608725130558 +illusion_1.5L,ppo,271,108.4,force,front_fy,-0.0018623017240315676 +illusion_1.5L,ppo,271,108.4,force,upper_fx,0.002672947244718671 +illusion_1.5L,ppo,271,108.4,force,upper_fy,-0.0005241776234470308 +illusion_1.5L,ppo,271,108.4,force,lower_fx,0.0026760129258036613 +illusion_1.5L,ppo,271,108.4,force,lower_fy,-0.0016576042398810387 +illusion_1.5L,ppo,272,108.8,force,front_fx,0.0019484938820824027 +illusion_1.5L,ppo,272,108.8,force,front_fy,-0.001840003882534802 +illusion_1.5L,ppo,272,108.8,force,upper_fx,0.002721467986702919 +illusion_1.5L,ppo,272,108.8,force,upper_fy,-0.0006304785492829978 +illusion_1.5L,ppo,272,108.8,force,lower_fx,0.0027008922770619392 +illusion_1.5L,ppo,272,108.8,force,lower_fy,-0.0019282494904473424 +illusion_1.5L,ppo,273,109.2,force,front_fx,0.0018818086246028543 +illusion_1.5L,ppo,273,109.2,force,front_fy,-0.0016067087417468429 +illusion_1.5L,ppo,273,109.2,force,upper_fx,0.0026891324669122696 +illusion_1.5L,ppo,273,109.2,force,upper_fy,-0.0006810908089391887 +illusion_1.5L,ppo,273,109.2,force,lower_fx,0.0026892265304923058 +illusion_1.5L,ppo,273,109.2,force,lower_fy,-0.0021076572593301535 +illusion_1.5L,ppo,274,109.6,force,front_fx,0.0018707906128838658 +illusion_1.5L,ppo,274,109.6,force,front_fy,-0.0013042544014751911 +illusion_1.5L,ppo,274,109.6,force,upper_fx,0.0025698752142488956 +illusion_1.5L,ppo,274,109.6,force,upper_fy,-0.0006351210176944733 +illusion_1.5L,ppo,274,109.6,force,lower_fx,0.0026175968814641237 +illusion_1.5L,ppo,274,109.6,force,lower_fy,-0.0021934164687991142 +illusion_1.5L,ppo,275,110.0,force,front_fx,0.0019049090333282948 +illusion_1.5L,ppo,275,110.0,force,front_fy,-0.0009793792851269245 +illusion_1.5L,ppo,275,110.0,force,upper_fx,0.0024302799720317125 +illusion_1.5L,ppo,275,110.0,force,upper_fy,-0.0005262037157081068 +illusion_1.5L,ppo,275,110.0,force,lower_fx,0.002493765205144882 +illusion_1.5L,ppo,275,110.0,force,lower_fy,-0.00217052991501987 +illusion_1.5L,ppo,276,110.4,force,front_fx,0.0019506794633343816 +illusion_1.5L,ppo,276,110.4,force,front_fy,-0.0007447475800290704 +illusion_1.5L,ppo,276,110.4,force,upper_fx,0.0023224910255521536 +illusion_1.5L,ppo,276,110.4,force,upper_fy,-0.00037616692134179175 +illusion_1.5L,ppo,276,110.4,force,lower_fx,0.0024136919528245926 +illusion_1.5L,ppo,276,110.4,force,lower_fy,-0.0019561341032385826 +illusion_1.5L,ppo,277,110.8,force,front_fx,0.0019554251339286566 +illusion_1.5L,ppo,277,110.8,force,front_fy,-0.000664259132463485 +illusion_1.5L,ppo,277,110.8,force,upper_fx,0.002266940427944064 +illusion_1.5L,ppo,277,110.8,force,upper_fy,-0.00017737160669639707 +illusion_1.5L,ppo,277,110.8,force,lower_fx,0.0024552089162170887 +illusion_1.5L,ppo,277,110.8,force,lower_fy,-0.001531829359009862 +illusion_1.5L,ppo,278,111.2,force,front_fx,0.0019710157066583633 +illusion_1.5L,ppo,278,111.2,force,front_fy,-0.0004924224922433496 +illusion_1.5L,ppo,278,111.2,force,upper_fx,0.0022755598183721304 +illusion_1.5L,ppo,278,111.2,force,upper_fy,7.071248091961024e-06 +illusion_1.5L,ppo,278,111.2,force,lower_fx,0.0025581386871635914 +illusion_1.5L,ppo,278,111.2,force,lower_fy,-0.0010477451141923666 +illusion_1.5L,ppo,279,111.6,force,front_fx,0.0020226275082677603 +illusion_1.5L,ppo,279,111.6,force,front_fy,-0.00013407107326202095 +illusion_1.5L,ppo,279,111.6,force,upper_fx,0.0023236004635691643 +illusion_1.5L,ppo,279,111.6,force,upper_fy,0.00023909317678771913 +illusion_1.5L,ppo,279,111.6,force,lower_fx,0.002667094115167856 +illusion_1.5L,ppo,279,111.6,force,lower_fy,-0.0005299823824316263 +illusion_1.5L,ppo,280,112.0,force,front_fx,0.0020457673817873 +illusion_1.5L,ppo,280,112.0,force,front_fy,0.00020302963093854487 +illusion_1.5L,ppo,280,112.0,force,upper_fx,0.002381238155066967 +illusion_1.5L,ppo,280,112.0,force,upper_fy,0.0005812403396703303 +illusion_1.5L,ppo,280,112.0,force,lower_fx,0.0027403361164033413 +illusion_1.5L,ppo,280,112.0,force,lower_fy,-1.8562457626103424e-05 +illusion_1.5L,ppo,281,112.4,force,front_fx,0.0020283462945371866 +illusion_1.5L,ppo,281,112.4,force,front_fy,0.00044750527013093233 +illusion_1.5L,ppo,281,112.4,force,upper_fx,0.002458747709169984 +illusion_1.5L,ppo,281,112.4,force,upper_fy,0.0008996535907499492 +illusion_1.5L,ppo,281,112.4,force,lower_fx,0.0027200186159461737 +illusion_1.5L,ppo,281,112.4,force,lower_fy,0.00032051309244707227 +illusion_1.5L,ppo,282,112.8,force,front_fx,0.00200548954308033 +illusion_1.5L,ppo,282,112.8,force,front_fy,0.0006607771501876414 +illusion_1.5L,ppo,282,112.8,force,upper_fx,0.0025414431001991034 +illusion_1.5L,ppo,282,112.8,force,upper_fy,0.0011415828485041857 +illusion_1.5L,ppo,282,112.8,force,lower_fx,0.0026664321776479483 +illusion_1.5L,ppo,282,112.8,force,lower_fy,0.0005129548371769488 +illusion_1.5L,ppo,283,113.2,force,front_fx,0.00196943455375731 +illusion_1.5L,ppo,283,113.2,force,front_fy,0.0008513978100381792 +illusion_1.5L,ppo,283,113.2,force,upper_fx,0.0025781586300581694 +illusion_1.5L,ppo,283,113.2,force,upper_fy,0.0014042252441868186 +illusion_1.5L,ppo,283,113.2,force,lower_fx,0.0026714978739619255 +illusion_1.5L,ppo,283,113.2,force,lower_fy,0.0006633821758441627 +illusion_1.5L,ppo,284,113.6,force,front_fx,0.001929083140566945 +illusion_1.5L,ppo,284,113.6,force,front_fy,0.0010096527403220534 +illusion_1.5L,ppo,284,113.6,force,upper_fx,0.0025753993541002274 +illusion_1.5L,ppo,284,113.6,force,upper_fy,0.0016586300916969776 +illusion_1.5L,ppo,284,113.6,force,lower_fx,0.002696148818358779 +illusion_1.5L,ppo,284,113.6,force,lower_fy,0.0007464493974111974 +illusion_1.5L,ppo,285,114.0,force,front_fx,0.0019045369699597359 +illusion_1.5L,ppo,285,114.0,force,front_fy,0.0010115507757291198 +illusion_1.5L,ppo,285,114.0,force,upper_fx,0.0025630679447203875 +illusion_1.5L,ppo,285,114.0,force,upper_fy,0.001802732003852725 +illusion_1.5L,ppo,285,114.0,force,lower_fx,0.002654189709573984 +illusion_1.5L,ppo,285,114.0,force,lower_fy,0.0007352360407821834 +illusion_1.5L,ppo,286,114.4,force,front_fx,0.001915444154292345 +illusion_1.5L,ppo,286,114.4,force,front_fy,0.000785134150646627 +illusion_1.5L,ppo,286,114.4,force,upper_fx,0.002531476318836212 +illusion_1.5L,ppo,286,114.4,force,upper_fy,0.0018371858168393373 +illusion_1.5L,ppo,286,114.4,force,lower_fx,0.0025443793274462223 +illusion_1.5L,ppo,286,114.4,force,lower_fy,0.0006649092538282275 +illusion_1.5L,ppo,287,114.8,force,front_fx,0.001983500085771084 +illusion_1.5L,ppo,287,114.8,force,front_fy,0.0003975355648435652 +illusion_1.5L,ppo,287,114.8,force,upper_fx,0.0024566464126110077 +illusion_1.5L,ppo,287,114.8,force,upper_fy,0.001854436006397009 +illusion_1.5L,ppo,287,114.8,force,lower_fx,0.002448973013088107 +illusion_1.5L,ppo,287,114.8,force,lower_fy,0.0005557424738071859 +illusion_1.5L,ppo,288,115.2,force,front_fx,0.002065099775791168 +illusion_1.5L,ppo,288,115.2,force,front_fy,9.053616668097675e-05 +illusion_1.5L,ppo,288,115.2,force,upper_fx,0.002334168180823326 +illusion_1.5L,ppo,288,115.2,force,upper_fy,0.0018221749924123287 +illusion_1.5L,ppo,288,115.2,force,lower_fx,0.0023810090497136116 +illusion_1.5L,ppo,288,115.2,force,lower_fy,0.0003861219447571784 +illusion_1.5L,ppo,289,115.6,force,front_fx,0.0021039776038378477 +illusion_1.5L,ppo,289,115.6,force,front_fy,-3.3000273106154054e-05 +illusion_1.5L,ppo,289,115.6,force,upper_fx,0.0022432547993957996 +illusion_1.5L,ppo,289,115.6,force,upper_fy,0.0016252652276307344 +illusion_1.5L,ppo,289,115.6,force,lower_fx,0.002322703367099166 +illusion_1.5L,ppo,289,115.6,force,lower_fy,0.00019213328778278083 +illusion_1.5L,ppo,290,116.0,force,front_fx,0.002111652633175254 +illusion_1.5L,ppo,290,116.0,force,front_fy,-0.0001859159383457154 +illusion_1.5L,ppo,290,116.0,force,upper_fx,0.0022739802952855825 +illusion_1.5L,ppo,290,116.0,force,upper_fy,0.001324398908764124 +illusion_1.5L,ppo,290,116.0,force,lower_fx,0.0023068867158144712 +illusion_1.5L,ppo,290,116.0,force,lower_fy,1.9115954273729585e-05 +illusion_1.5L,ppo,291,116.4,force,front_fx,0.0021252064034342766 +illusion_1.5L,ppo,291,116.4,force,front_fy,-0.0004933216259814799 +illusion_1.5L,ppo,291,116.4,force,upper_fx,0.0024284946266561747 +illusion_1.5L,ppo,291,116.4,force,upper_fy,0.0009304654086008668 +illusion_1.5L,ppo,291,116.4,force,lower_fx,0.002335507655516267 +illusion_1.5L,ppo,291,116.4,force,lower_fy,-0.00024008229956962168 +illusion_1.5L,ppo,292,116.8,force,front_fx,0.002133409958332777 +illusion_1.5L,ppo,292,116.8,force,front_fy,-0.0008307323441840708 +illusion_1.5L,ppo,292,116.8,force,upper_fx,0.002587695140391588 +illusion_1.5L,ppo,292,116.8,force,upper_fy,0.00048029719619080424 +illusion_1.5L,ppo,292,116.8,force,lower_fx,0.002392043126747012 +illusion_1.5L,ppo,292,116.8,force,lower_fy,-0.0006066591595299542 +illusion_1.5L,ppo,293,117.2,force,front_fx,0.002134657697752118 +illusion_1.5L,ppo,293,117.2,force,front_fy,-0.0011179528664797544 +illusion_1.5L,ppo,293,117.2,force,upper_fx,0.002570569748058915 +illusion_1.5L,ppo,293,117.2,force,upper_fy,0.00017937627853825688 +illusion_1.5L,ppo,293,117.2,force,lower_fx,0.002467455342411995 +illusion_1.5L,ppo,293,117.2,force,lower_fy,-0.0009153828141279519 +illusion_1.5L,ppo,294,117.6,force,front_fx,0.002124242717400193 +illusion_1.5L,ppo,294,117.6,force,front_fy,-0.0013008745154365897 +illusion_1.5L,ppo,294,117.6,force,upper_fx,0.0024261707440018654 +illusion_1.5L,ppo,294,117.6,force,upper_fy,1.9264178263256326e-05 +illusion_1.5L,ppo,294,117.6,force,lower_fx,0.0025379073340445757 +illusion_1.5L,ppo,294,117.6,force,lower_fy,-0.0010988159338012338 +illusion_1.5L,ppo,295,118.0,force,front_fx,0.0020865860860794783 +illusion_1.5L,ppo,295,118.0,force,front_fy,-0.0014233451802283525 +illusion_1.5L,ppo,295,118.0,force,upper_fx,0.002357984660193324 +illusion_1.5L,ppo,295,118.0,force,upper_fy,-0.00012837647227570415 +illusion_1.5L,ppo,295,118.0,force,lower_fx,0.002590550109744072 +illusion_1.5L,ppo,295,118.0,force,lower_fy,-0.0012327504809945822 +illusion_1.5L,ppo,296,118.4,force,front_fx,0.002047313842922449 +illusion_1.5L,ppo,296,118.4,force,front_fy,-0.001552601926960051 +illusion_1.5L,ppo,296,118.4,force,upper_fx,0.0024038010742515326 +illusion_1.5L,ppo,296,118.4,force,upper_fy,-0.00027745531406253576 +illusion_1.5L,ppo,296,118.4,force,lower_fx,0.0026225263718515635 +illusion_1.5L,ppo,296,118.4,force,lower_fy,-0.001330588129349053 +illusion_1.5L,ppo,297,118.8,force,front_fx,0.0020160735584795475 +illusion_1.5L,ppo,297,118.8,force,front_fy,-0.0015922607854008675 +illusion_1.5L,ppo,297,118.8,force,upper_fx,0.002463400596752763 +illusion_1.5L,ppo,297,118.8,force,upper_fy,-0.000395289360312745 +illusion_1.5L,ppo,297,118.8,force,lower_fx,0.0026393968146294355 +illusion_1.5L,ppo,297,118.8,force,lower_fy,-0.0013410948449745774 +illusion_1.5L,ppo,298,119.2,force,front_fx,0.0020080311223864555 +illusion_1.5L,ppo,298,119.2,force,front_fy,-0.0013863163767382503 +illusion_1.5L,ppo,298,119.2,force,upper_fx,0.002455694368109107 +illusion_1.5L,ppo,298,119.2,force,upper_fy,-0.0004440256452653557 +illusion_1.5L,ppo,298,119.2,force,lower_fx,0.002664846833795309 +illusion_1.5L,ppo,298,119.2,force,lower_fy,-0.001223600935190916 +illusion_1.5L,ppo,299,119.6,force,front_fx,0.002030550502240658 +illusion_1.5L,ppo,299,119.6,force,front_fy,-0.0009622025536373258 +illusion_1.5L,ppo,299,119.6,force,upper_fx,0.002365834079682827 +illusion_1.5L,ppo,299,119.6,force,upper_fy,-0.0003677133936434984 +illusion_1.5L,ppo,299,119.6,force,lower_fx,0.00267944042570889 +illusion_1.5L,ppo,299,119.6,force,lower_fy,-0.0010261096758767962 +illusion_1.5L,ppo,300,120.0,force,front_fx,0.0020615439862012863 +illusion_1.5L,ppo,300,120.0,force,front_fy,-0.0004703792801592499 +illusion_1.5L,ppo,300,120.0,force,upper_fx,0.0022784657776355743 +illusion_1.5L,ppo,300,120.0,force,upper_fy,-0.000168523212778382 +illusion_1.5L,ppo,300,120.0,force,lower_fx,0.002648573834449053 +illusion_1.5L,ppo,300,120.0,force,lower_fy,-0.0008559469715692103 +illusion_1.5L,ppo,301,120.4,force,front_fx,0.0020524030551314354 +illusion_1.5L,ppo,301,120.4,force,front_fy,-0.00015254042227752507 +illusion_1.5L,ppo,301,120.4,force,upper_fx,0.0022594595793634653 +illusion_1.5L,ppo,301,120.4,force,upper_fy,0.00012213770241942257 +illusion_1.5L,ppo,301,120.4,force,lower_fx,0.0026015029288828373 +illusion_1.5L,ppo,301,120.4,force,lower_fy,-0.000683776568621397 +illusion_1.5L,ppo,302,120.8,force,front_fx,0.0020023752003908157 +illusion_1.5L,ppo,302,120.8,force,front_fy,-6.509535160148516e-05 +illusion_1.5L,ppo,302,120.8,force,upper_fx,0.0023072916083037853 +illusion_1.5L,ppo,302,120.8,force,upper_fy,0.0004527664859779179 +illusion_1.5L,ppo,302,120.8,force,lower_fx,0.002614838071167469 +illusion_1.5L,ppo,302,120.8,force,lower_fy,-0.000452891894383356 +illusion_1.5L,ppo,303,121.2,force,front_fx,0.0019691286142915487 +illusion_1.5L,ppo,303,121.2,force,front_fy,0.00010107820708071813 +illusion_1.5L,ppo,303,121.2,force,upper_fx,0.0023800060153007507 +illusion_1.5L,ppo,303,121.2,force,upper_fy,0.00078842684160918 +illusion_1.5L,ppo,303,121.2,force,lower_fx,0.0027171573601663113 +illusion_1.5L,ppo,303,121.2,force,lower_fy,-0.000198435052880086 +illusion_1.5L,ppo,304,121.6,force,front_fx,0.001968874828889966 +illusion_1.5L,ppo,304,121.6,force,front_fy,0.00044382066698744893 +illusion_1.5L,ppo,304,121.6,force,upper_fx,0.0024433741346001625 +illusion_1.5L,ppo,304,121.6,force,upper_fy,0.0011912655318155885 +illusion_1.5L,ppo,304,121.6,force,lower_fx,0.0028936981689184904 +illusion_1.5L,ppo,304,121.6,force,lower_fy,0.0001272657245863229 +illusion_1.5L,ppo,305,122.0,force,front_fx,0.001962982350960374 +illusion_1.5L,ppo,305,122.0,force,front_fy,0.0007641812553629279 +illusion_1.5L,ppo,305,122.0,force,upper_fx,0.0024940406437963247 +illusion_1.5L,ppo,305,122.0,force,upper_fy,0.0015906139742583036 +illusion_1.5L,ppo,305,122.0,force,lower_fx,0.003017134964466095 +illusion_1.5L,ppo,305,122.0,force,lower_fy,0.00047661864664405584 +illusion_1.5L,ppo,306,122.4,force,front_fx,0.0019546765834093094 +illusion_1.5L,ppo,306,122.4,force,front_fy,0.000966372259426862 +illusion_1.5L,ppo,306,122.4,force,upper_fx,0.002579214982688427 +illusion_1.5L,ppo,306,122.4,force,upper_fy,0.0017486936412751675 +illusion_1.5L,ppo,306,122.4,force,lower_fx,0.0029640239663422108 +illusion_1.5L,ppo,306,122.4,force,lower_fy,0.0007244825828820467 +illusion_1.5L,ppo,307,122.8,force,front_fx,0.001965372124686837 +illusion_1.5L,ppo,307,122.8,force,front_fy,0.0010312719969078898 +illusion_1.5L,ppo,307,122.8,force,upper_fx,0.002686883555725217 +illusion_1.5L,ppo,307,122.8,force,upper_fy,0.0016700157430022955 +illusion_1.5L,ppo,307,122.8,force,lower_fx,0.002833867445588112 +illusion_1.5L,ppo,307,122.8,force,lower_fy,0.0009081027819775045 +illusion_1.5L,ppo,308,123.2,force,front_fx,0.0019667153246700764 +illusion_1.5L,ppo,308,123.2,force,front_fy,0.000998582225292921 +illusion_1.5L,ppo,308,123.2,force,upper_fx,0.0027273690793663263 +illusion_1.5L,ppo,308,123.2,force,upper_fy,0.001565341604873538 +illusion_1.5L,ppo,308,123.2,force,lower_fx,0.002762496704235673 +illusion_1.5L,ppo,308,123.2,force,lower_fy,0.0010642939014360309 +illusion_1.5L,ppo,309,123.6,force,front_fx,0.001970757730305195 +illusion_1.5L,ppo,309,123.6,force,front_fy,0.0009655795292928815 +illusion_1.5L,ppo,309,123.6,force,upper_fx,0.0027062639128416777 +illusion_1.5L,ppo,309,123.6,force,upper_fy,0.0014662123285233974 +illusion_1.5L,ppo,309,123.6,force,lower_fx,0.0027395004872232676 +illusion_1.5L,ppo,309,123.6,force,lower_fy,0.0011367033002898097 +illusion_1.5L,ppo,310,124.0,force,front_fx,0.0019927623216062784 +illusion_1.5L,ppo,310,124.0,force,front_fy,0.0008143955492414534 +illusion_1.5L,ppo,310,124.0,force,upper_fx,0.002669745124876499 +illusion_1.5L,ppo,310,124.0,force,upper_fy,0.0013451623963192105 +illusion_1.5L,ppo,310,124.0,force,lower_fx,0.002699235687032342 +illusion_1.5L,ppo,310,124.0,force,lower_fy,0.0011003076797351241 +illusion_1.5L,ppo,311,124.4,force,front_fx,0.0020656336564570665 +illusion_1.5L,ppo,311,124.4,force,front_fy,0.00038933809264563024 +illusion_1.5L,ppo,311,124.4,force,upper_fx,0.002626607660204172 +illusion_1.5L,ppo,311,124.4,force,upper_fy,0.0012212184956297278 +illusion_1.5L,ppo,311,124.4,force,lower_fx,0.0026114366482943296 +illusion_1.5L,ppo,311,124.4,force,lower_fy,0.0009382606949657202 +illusion_1.5L,ppo,312,124.8,force,front_fx,0.002179377479478717 +illusion_1.5L,ppo,312,124.8,force,front_fy,-0.00011368156265234575 +illusion_1.5L,ppo,312,124.8,force,upper_fx,0.002566674957051873 +illusion_1.5L,ppo,312,124.8,force,upper_fy,0.0010770916705951095 +illusion_1.5L,ppo,312,124.8,force,lower_fx,0.0024968483485281467 +illusion_1.5L,ppo,312,124.8,force,lower_fy,0.0006273627514019608 +illusion_1.5L,ppo,313,125.2,force,front_fx,0.002229803940281272 +illusion_1.5L,ppo,313,125.2,force,front_fy,-0.000431180844316259 +illusion_1.5L,ppo,313,125.2,force,upper_fx,0.0024884967133402824 +illusion_1.5L,ppo,313,125.2,force,upper_fy,0.0008791752625256777 +illusion_1.5L,ppo,313,125.2,force,lower_fx,0.0024198945611715317 +illusion_1.5L,ppo,313,125.2,force,lower_fy,0.00020228321955073625 +illusion_1.5L,ppo,314,125.6,force,front_fx,0.0021911230869591236 +illusion_1.5L,ppo,314,125.6,force,front_fy,-0.0006037908606231213 +illusion_1.5L,ppo,314,125.6,force,upper_fx,0.002437866060063243 +illusion_1.5L,ppo,314,125.6,force,upper_fy,0.0006702161626890302 +illusion_1.5L,ppo,314,125.6,force,lower_fx,0.002422950929030776 +illusion_1.5L,ppo,314,125.6,force,lower_fy,-0.00025302308495156467 +illusion_1.5L,ppo,315,126.0,force,front_fx,0.002136011142283678 +illusion_1.5L,ppo,315,126.0,force,front_fy,-0.0008541095303371549 +illusion_1.5L,ppo,315,126.0,force,upper_fx,0.002484045224264264 +illusion_1.5L,ppo,315,126.0,force,upper_fy,0.0004873374127782881 +illusion_1.5L,ppo,315,126.0,force,lower_fx,0.0024924397002905607 +illusion_1.5L,ppo,315,126.0,force,lower_fy,-0.0007516039186157286 +illusion_1.5L,ppo,316,126.4,force,front_fx,0.0020967237651348114 +illusion_1.5L,ppo,316,126.4,force,front_fy,-0.0011936663649976254 +illusion_1.5L,ppo,316,126.4,force,upper_fx,0.0026244204491376877 +illusion_1.5L,ppo,316,126.4,force,upper_fy,0.0002478254318702966 +illusion_1.5L,ppo,316,126.4,force,lower_fx,0.0025781886652112007 +illusion_1.5L,ppo,316,126.4,force,lower_fy,-0.001332953223027289 +illusion_1.5L,ppo,317,126.8,force,front_fx,0.002065467182546854 +illusion_1.5L,ppo,317,126.8,force,front_fy,-0.001513230032287538 +illusion_1.5L,ppo,317,126.8,force,upper_fx,0.002726559294387698 +illusion_1.5L,ppo,317,126.8,force,upper_fy,-1.5713516404503025e-05 +illusion_1.5L,ppo,317,126.8,force,lower_fx,0.002652494702488184 +illusion_1.5L,ppo,317,126.8,force,lower_fy,-0.0018609320977702737 +illusion_1.5L,ppo,318,127.2,force,front_fx,0.002054925076663494 +illusion_1.5L,ppo,318,127.2,force,front_fy,-0.0017817859770730138 +illusion_1.5L,ppo,318,127.2,force,upper_fx,0.002677914220839739 +illusion_1.5L,ppo,318,127.2,force,upper_fy,-0.00022445911599788815 +illusion_1.5L,ppo,318,127.2,force,lower_fx,0.002721491502597928 +illusion_1.5L,ppo,318,127.2,force,lower_fy,-0.0021365294232964516 +illusion_1.5L,ppo,319,127.6,force,front_fx,0.0020396574400365353 +illusion_1.5L,ppo,319,127.6,force,front_fy,-0.0019399981247261167 +illusion_1.5L,ppo,319,127.6,force,upper_fx,0.002590667689219117 +illusion_1.5L,ppo,319,127.6,force,upper_fy,-0.0004366383654996753 +illusion_1.5L,ppo,319,127.6,force,lower_fx,0.0027811492327600718 +illusion_1.5L,ppo,319,127.6,force,lower_fy,-0.0021779879461973906 +illusion_1.5L,ppo,320,128.0,force,front_fx,0.001996678300201893 +illusion_1.5L,ppo,320,128.0,force,front_fy,-0.0019763584714382887 +illusion_1.5L,ppo,320,128.0,force,upper_fx,0.002581749577075243 +illusion_1.5L,ppo,320,128.0,force,upper_fy,-0.0006435831892304122 +illusion_1.5L,ppo,320,128.0,force,lower_fx,0.002820000285282731 +illusion_1.5L,ppo,320,128.0,force,lower_fy,-0.002108704298734665 +illusion_1.5L,ppo,321,128.4,force,front_fx,0.00196466944180429 +illusion_1.5L,ppo,321,128.4,force,front_fy,-0.001906003337353468 +illusion_1.5L,ppo,321,128.4,force,upper_fx,0.00260296743363142 +illusion_1.5L,ppo,321,128.4,force,upper_fy,-0.0007820872706361115 +illusion_1.5L,ppo,321,128.4,force,lower_fx,0.0028298040851950645 +illusion_1.5L,ppo,321,128.4,force,lower_fy,-0.001965933945029974 +illusion_1.5L,ppo,322,128.8,force,front_fx,0.0019668140448629856 +illusion_1.5L,ppo,322,128.8,force,front_fy,-0.0016136356862261891 +illusion_1.5L,ppo,322,128.8,force,upper_fx,0.002605907851830125 +illusion_1.5L,ppo,322,128.8,force,upper_fy,-0.0008549003978259861 +illusion_1.5L,ppo,322,128.8,force,lower_fx,0.0028052018024027348 +illusion_1.5L,ppo,322,128.8,force,lower_fy,-0.0017958208918571472 +illusion_1.5L,ppo,323,129.2,force,front_fx,0.0020269956439733505 +illusion_1.5L,ppo,323,129.2,force,front_fy,-0.0011082253186032176 +illusion_1.5L,ppo,323,129.2,force,upper_fx,0.0025474911089986563 +illusion_1.5L,ppo,323,129.2,force,upper_fy,-0.0008069827454164624 +illusion_1.5L,ppo,323,129.2,force,lower_fx,0.0027518686838448048 +illusion_1.5L,ppo,323,129.2,force,lower_fy,-0.0016004975186660886 +illusion_1.5L,ppo,324,129.6,force,front_fx,0.0020882945973426104 +illusion_1.5L,ppo,324,129.6,force,front_fy,-0.0006626656395383179 +illusion_1.5L,ppo,324,129.6,force,upper_fx,0.002432896289974451 +illusion_1.5L,ppo,324,129.6,force,upper_fy,-0.0005901409895159304 +illusion_1.5L,ppo,324,129.6,force,lower_fx,0.0026927588041871786 +illusion_1.5L,ppo,324,129.6,force,lower_fy,-0.0013152662431821227 +illusion_1.5L,ppo,325,130.0,force,front_fx,0.002075216732919216 +illusion_1.5L,ppo,325,130.0,force,front_fy,-0.00042849124292843044 +illusion_1.5L,ppo,325,130.0,force,upper_fx,0.0023682722821831703 +illusion_1.5L,ppo,325,130.0,force,upper_fy,-0.0002712704590521753 +illusion_1.5L,ppo,325,130.0,force,lower_fx,0.0026594840455800295 +illusion_1.5L,ppo,325,130.0,force,lower_fy,-0.000972225796431303 +illusion_1.5L,ppo,326,130.4,force,front_fx,0.0020434847101569176 +illusion_1.5L,ppo,326,130.4,force,front_fy,-0.0002273597929161042 +illusion_1.5L,ppo,326,130.4,force,upper_fx,0.0023979535326361656 +illusion_1.5L,ppo,326,130.4,force,upper_fy,8.876359788700938e-05 +illusion_1.5L,ppo,326,130.4,force,lower_fx,0.0026959350798279047 +illusion_1.5L,ppo,326,130.4,force,lower_fy,-0.0006356381345540285 +illusion_1.5L,ppo,327,130.8,force,front_fx,0.002037876518443227 +illusion_1.5L,ppo,327,130.8,force,front_fy,0.00011737451859517023 +illusion_1.5L,ppo,327,130.8,force,upper_fx,0.002463460434228182 +illusion_1.5L,ppo,327,130.8,force,upper_fy,0.0005405850824899971 +illusion_1.5L,ppo,327,130.8,force,lower_fx,0.002827538875862956 +illusion_1.5L,ppo,327,130.8,force,lower_fy,-0.0002623609034344554 +illusion_1.5L,ppo,328,131.2,force,front_fx,0.0020301705226302147 +illusion_1.5L,ppo,328,131.2,force,front_fy,0.0005250500398688018 +illusion_1.5L,ppo,328,131.2,force,upper_fx,0.002526715397834778 +illusion_1.5L,ppo,328,131.2,force,upper_fy,0.0010891619604080915 +illusion_1.5L,ppo,328,131.2,force,lower_fx,0.0029743283521384 +illusion_1.5L,ppo,328,131.2,force,lower_fy,0.00013991260493639857 +illusion_1.5L,ppo,329,131.6,force,front_fx,0.002011760836467147 +illusion_1.5L,ppo,329,131.6,force,front_fy,0.0008762740180827677 +illusion_1.5L,ppo,329,131.6,force,upper_fx,0.002594385063275695 +illusion_1.5L,ppo,329,131.6,force,upper_fy,0.00155680684838444 +illusion_1.5L,ppo,329,131.6,force,lower_fx,0.002995563205331564 +illusion_1.5L,ppo,329,131.6,force,lower_fy,0.00043831029324792325 +illusion_1.5L,ppo,330,132.0,force,front_fx,0.001990729942917824 +illusion_1.5L,ppo,330,132.0,force,front_fy,0.0011259432649239898 +illusion_1.5L,ppo,330,132.0,force,upper_fx,0.002666841959580779 +illusion_1.5L,ppo,330,132.0,force,upper_fy,0.0018036890542134643 +illusion_1.5L,ppo,330,132.0,force,lower_fx,0.0028783446177840233 +illusion_1.5L,ppo,330,132.0,force,lower_fy,0.0006217074114829302 +illusion_1.5L,ppo,331,132.4,force,front_fx,0.00195669406093657 +illusion_1.5L,ppo,331,132.4,force,front_fy,0.0012373044155538082 +illusion_1.5L,ppo,331,132.4,force,upper_fx,0.0027215806767344475 +illusion_1.5L,ppo,331,132.4,force,upper_fy,0.0019451266853138804 +illusion_1.5L,ppo,331,132.4,force,lower_fx,0.002788817510008812 +illusion_1.5L,ppo,331,132.4,force,lower_fy,0.0007934051100164652 +illusion_1.5L,ppo,332,132.8,force,front_fx,0.001920257112942636 +illusion_1.5L,ppo,332,132.8,force,front_fy,0.001262980978935957 +illusion_1.5L,ppo,332,132.8,force,upper_fx,0.002731419401243329 +illusion_1.5L,ppo,332,132.8,force,upper_fy,0.002082382095977664 +illusion_1.5L,ppo,332,132.8,force,lower_fx,0.002794483210891485 +illusion_1.5L,ppo,332,132.8,force,lower_fy,0.0009472985402680933 +illusion_1.5L,ppo,333,133.2,force,front_fx,0.0019100536592304707 +illusion_1.5L,ppo,333,133.2,force,front_fy,0.0012109157396480441 +illusion_1.5L,ppo,333,133.2,force,upper_fx,0.0027028692420572042 +illusion_1.5L,ppo,333,133.2,force,upper_fy,0.0021470212377607822 +illusion_1.5L,ppo,333,133.2,force,lower_fx,0.0028040576726198196 +illusion_1.5L,ppo,333,133.2,force,lower_fy,0.0010277745313942432 +illusion_1.5L,ppo,334,133.6,force,front_fx,0.0019604628905653954 +illusion_1.5L,ppo,334,133.6,force,front_fy,0.0009254318429157138 +illusion_1.5L,ppo,334,133.6,force,upper_fx,0.0026560912374407053 +illusion_1.5L,ppo,334,133.6,force,upper_fy,0.0021254050079733133 +illusion_1.5L,ppo,334,133.6,force,lower_fx,0.0027804591227322817 +illusion_1.5L,ppo,334,133.6,force,lower_fy,0.0010813215048983693 +illusion_1.5L,ppo,335,134.0,force,front_fx,0.0020840754732489586 +illusion_1.5L,ppo,335,134.0,force,front_fy,0.0005206771311350167 +illusion_1.5L,ppo,335,134.0,force,upper_fx,0.0025994142051786184 +illusion_1.5L,ppo,335,134.0,force,upper_fy,0.0019768255297094584 +illusion_1.5L,ppo,335,134.0,force,lower_fx,0.002708219224587083 +illusion_1.5L,ppo,335,134.0,force,lower_fy,0.001083885319530964 +illusion_1.5L,ppo,336,134.4,force,front_fx,0.0021732694003731012 +illusion_1.5L,ppo,336,134.4,force,front_fy,0.000268301839241758 +illusion_1.5L,ppo,336,134.4,force,upper_fx,0.002543335547670722 +illusion_1.5L,ppo,336,134.4,force,upper_fy,0.0016493407310917974 +illusion_1.5L,ppo,336,134.4,force,lower_fx,0.002599934581667185 +illusion_1.5L,ppo,336,134.4,force,lower_fy,0.0009999613976106048 +illusion_1.5L,ppo,337,134.8,force,front_fx,0.002202065195888281 +illusion_1.5L,ppo,337,134.8,force,front_fy,0.00011436757631599903 +illusion_1.5L,ppo,337,134.8,force,upper_fx,0.00248429155908525 +illusion_1.5L,ppo,337,134.8,force,upper_fy,0.0013208338059484959 +illusion_1.5L,ppo,337,134.8,force,lower_fx,0.002534965518862009 +illusion_1.5L,ppo,337,134.8,force,lower_fy,0.0008997871773317456 +illusion_1.5L,ppo,338,135.2,force,front_fx,0.0022153069730848074 +illusion_1.5L,ppo,338,135.2,force,front_fy,-0.00013951094297226518 +illusion_1.5L,ppo,338,135.2,force,upper_fx,0.0024752672761678696 +illusion_1.5L,ppo,338,135.2,force,upper_fy,0.001019965740852058 +illusion_1.5L,ppo,338,135.2,force,lower_fx,0.002520125126466155 +illusion_1.5L,ppo,338,135.2,force,lower_fy,0.000699553289450705 +illusion_1.5L,ppo,339,135.6,force,front_fx,0.002222997136414051 +illusion_1.5L,ppo,339,135.6,force,front_fy,-0.00047793734120205045 +illusion_1.5L,ppo,339,135.6,force,upper_fx,0.0025886371731758118 +illusion_1.5L,ppo,339,135.6,force,upper_fy,0.0006090502138249576 +illusion_1.5L,ppo,339,135.6,force,lower_fx,0.002528861863538623 +illusion_1.5L,ppo,339,135.6,force,lower_fy,0.00028824424953199923 +illusion_1.5L,ppo,340,136.0,force,front_fx,0.002221839502453804 +illusion_1.5L,ppo,340,136.0,force,front_fy,-0.0008383451495319605 +illusion_1.5L,ppo,340,136.0,force,upper_fx,0.0026799356564879417 +illusion_1.5L,ppo,340,136.0,force,upper_fy,0.00023866085393819958 +illusion_1.5L,ppo,340,136.0,force,lower_fx,0.002559739165008068 +illusion_1.5L,ppo,340,136.0,force,lower_fy,-0.00021604813809972256 +illusion_1.5L,ppo,341,136.4,force,front_fx,0.0022065206430852413 +illusion_1.5L,ppo,341,136.4,force,front_fy,-0.0011697130976244807 +illusion_1.5L,ppo,341,136.4,force,upper_fx,0.0026272202376276255 +illusion_1.5L,ppo,341,136.4,force,upper_fy,3.409918645047583e-05 +illusion_1.5L,ppo,341,136.4,force,lower_fx,0.002596911508589983 +illusion_1.5L,ppo,341,136.4,force,lower_fy,-0.0006828270270489156 +illusion_1.5L,ppo,342,136.8,force,front_fx,0.0021686505060642958 +illusion_1.5L,ppo,342,136.8,force,front_fy,-0.0014159763231873512 +illusion_1.5L,ppo,342,136.8,force,upper_fx,0.0025492971763014793 +illusion_1.5L,ppo,342,136.8,force,upper_fy,-0.00012282772513572127 +illusion_1.5L,ppo,342,136.8,force,lower_fx,0.0026374291628599167 +illusion_1.5L,ppo,342,136.8,force,lower_fy,-0.0011005866108462214 +illusion_1.5L,ppo,343,137.2,force,front_fx,0.0021135418210178614 +illusion_1.5L,ppo,343,137.2,force,front_fy,-0.0016399109736084938 +illusion_1.5L,ppo,343,137.2,force,upper_fx,0.0025491779670119286 +illusion_1.5L,ppo,343,137.2,force,upper_fy,-0.00027427866007201374 +illusion_1.5L,ppo,343,137.2,force,lower_fx,0.0026846081018447876 +illusion_1.5L,ppo,343,137.2,force,lower_fy,-0.0014578162226825953 +illusion_1.5L,ppo,344,137.6,force,front_fx,0.002068217610940337 +illusion_1.5L,ppo,344,137.6,force,front_fy,-0.001857270603068173 +illusion_1.5L,ppo,344,137.6,force,upper_fx,0.0025992586743086576 +illusion_1.5L,ppo,344,137.6,force,upper_fy,-0.0004153712361585349 +illusion_1.5L,ppo,344,137.6,force,lower_fx,0.0027195634320378304 +illusion_1.5L,ppo,344,137.6,force,lower_fy,-0.0017220871523022652 +illusion_1.5L,ppo,345,138.0,force,front_fx,0.0020210815127938986 +illusion_1.5L,ppo,345,138.0,force,front_fy,-0.0019231000915169716 +illusion_1.5L,ppo,345,138.0,force,upper_fx,0.0026545159053057432 +illusion_1.5L,ppo,345,138.0,force,upper_fy,-0.0005553431692533195 +illusion_1.5L,ppo,345,138.0,force,lower_fx,0.002746423240751028 +illusion_1.5L,ppo,345,138.0,force,lower_fy,-0.0018523308681324124 +illusion_1.5L,ppo,346,138.4,force,front_fx,0.001981607172638178 +illusion_1.5L,ppo,346,138.4,force,front_fy,-0.0017011156305670738 +illusion_1.5L,ppo,346,138.4,force,upper_fx,0.0026709965895861387 +illusion_1.5L,ppo,346,138.4,force,upper_fy,-0.0006737175863236189 +illusion_1.5L,ppo,346,138.4,force,lower_fx,0.002762802178040147 +illusion_1.5L,ppo,346,138.4,force,lower_fy,-0.0018562963232398033 +illusion_1.5L,ppo,347,138.8,force,front_fx,0.0019752581138163805 +illusion_1.5L,ppo,347,138.8,force,front_fy,-0.001269868458621204 +illusion_1.5L,ppo,347,138.8,force,upper_fx,0.0026113372296094894 +illusion_1.5L,ppo,347,138.8,force,upper_fy,-0.0006982150953263044 +illusion_1.5L,ppo,347,138.8,force,lower_fx,0.0027296552434563637 +illusion_1.5L,ppo,347,138.8,force,lower_fy,-0.0018037748523056507 +illusion_1.5L,ppo,348,139.2,force,front_fx,0.001995042897760868 +illusion_1.5L,ppo,348,139.2,force,front_fy,-0.000894614146091044 +illusion_1.5L,ppo,348,139.2,force,upper_fx,0.002494746120646596 +illusion_1.5L,ppo,348,139.2,force,upper_fy,-0.0005679451860487461 +illusion_1.5L,ppo,348,139.2,force,lower_fx,0.002646323526278138 +illusion_1.5L,ppo,348,139.2,force,lower_fy,-0.0016916757449507713 +illusion_1.5L,ppo,349,139.6,force,front_fx,0.0019845359493047 +illusion_1.5L,ppo,349,139.6,force,front_fy,-0.0007423576898872852 +illusion_1.5L,ppo,349,139.6,force,upper_fx,0.0023984627332538366 +illusion_1.5L,ppo,349,139.6,force,upper_fy,-0.0003603023651521653 +illusion_1.5L,ppo,349,139.6,force,lower_fx,0.0025703259743750095 +illusion_1.5L,ppo,349,139.6,force,lower_fy,-0.0014745817752555013 +illusion_1.5L,ppo,350,140.0,force,front_fx,0.0019784041214734316 +illusion_1.5L,ppo,350,140.0,force,front_fy,-0.0006315010250546038 +illusion_1.5L,ppo,350,140.0,force,upper_fx,0.0023665453772991896 +illusion_1.5L,ppo,350,140.0,force,upper_fy,-0.00018791395996231586 +illusion_1.5L,ppo,350,140.0,force,lower_fx,0.002555448329076171 +illusion_1.5L,ppo,350,140.0,force,lower_fy,-0.0011857501231133938 +illusion_1.5L,ppo,351,140.4,force,front_fx,0.002010572934523225 +illusion_1.5L,ppo,351,140.4,force,front_fy,-0.00035023409873247147 +illusion_1.5L,ppo,351,140.4,force,upper_fx,0.0023688646033406258 +illusion_1.5L,ppo,351,140.4,force,upper_fy,3.614033630583435e-05 +illusion_1.5L,ppo,351,140.4,force,lower_fx,0.0026425712276250124 +illusion_1.5L,ppo,351,140.4,force,lower_fy,-0.0007811456453055143 +illusion_1.5L,ppo,352,140.8,force,front_fx,0.002049329923465848 +illusion_1.5L,ppo,352,140.8,force,front_fy,3.197284968337044e-05 +illusion_1.5L,ppo,352,140.8,force,upper_fx,0.002381624188274145 +illusion_1.5L,ppo,352,140.8,force,upper_fy,0.0003896135895047337 +illusion_1.5L,ppo,352,140.8,force,lower_fx,0.0027720979414880276 +illusion_1.5L,ppo,352,140.8,force,lower_fy,-0.0002699563337955624 +illusion_1.5L,ppo,353,141.2,force,front_fx,0.002050008624792099 +illusion_1.5L,ppo,353,141.2,force,front_fy,0.0003699805529322475 +illusion_1.5L,ppo,353,141.2,force,upper_fx,0.0024227953981608152 +illusion_1.5L,ppo,353,141.2,force,upper_fy,0.0007524568354710937 +illusion_1.5L,ppo,353,141.2,force,lower_fx,0.0027996301651000977 +illusion_1.5L,ppo,353,141.2,force,lower_fy,0.0001386801595799625 +illusion_1.5L,ppo,354,141.6,force,front_fx,0.0020274699199944735 +illusion_1.5L,ppo,354,141.6,force,front_fy,0.0006223004893399775 +illusion_1.5L,ppo,354,141.6,force,upper_fx,0.002497427398338914 +illusion_1.5L,ppo,354,141.6,force,upper_fy,0.001037740265019238 +illusion_1.5L,ppo,354,141.6,force,lower_fx,0.0027310329023748636 +illusion_1.5L,ppo,354,141.6,force,lower_fy,0.00038331892574205995 +illusion_1.5L,ppo,355,142.0,force,front_fx,0.001990017481148243 +illusion_1.5L,ppo,355,142.0,force,front_fy,0.0008121172431856394 +illusion_1.5L,ppo,355,142.0,force,upper_fx,0.0025529933627694845 +illusion_1.5L,ppo,355,142.0,force,upper_fy,0.0013085290556773543 +illusion_1.5L,ppo,355,142.0,force,lower_fx,0.002690279157832265 +illusion_1.5L,ppo,355,142.0,force,lower_fy,0.0005562560982070863 +illusion_1.5L,ppo,356,142.4,force,front_fx,0.001945236581377685 +illusion_1.5L,ppo,356,142.4,force,front_fy,0.0010015226434916258 +illusion_1.5L,ppo,356,142.4,force,upper_fx,0.0025666060391813517 +illusion_1.5L,ppo,356,142.4,force,upper_fy,0.0015896379482001066 +illusion_1.5L,ppo,356,142.4,force,lower_fx,0.002720411168411374 +illusion_1.5L,ppo,356,142.4,force,lower_fy,0.0006892289384268224 +illusion_1.5L,ppo,357,142.8,force,front_fx,0.001912396401166916 +illusion_1.5L,ppo,357,142.8,force,front_fy,0.001127201016061008 +illusion_1.5L,ppo,357,142.8,force,upper_fx,0.0025593701284378767 +illusion_1.5L,ppo,357,142.8,force,upper_fy,0.0018103820038959384 +illusion_1.5L,ppo,357,142.8,force,lower_fx,0.002755889669060707 +illusion_1.5L,ppo,357,142.8,force,lower_fy,0.0007704129093326628 +illusion_1.5L,ppo,358,143.2,force,front_fx,0.0018906518816947937 +illusion_1.5L,ppo,358,143.2,force,front_fy,0.0010162191465497017 +illusion_1.5L,ppo,358,143.2,force,upper_fx,0.002537895692512393 +illusion_1.5L,ppo,358,143.2,force,upper_fy,0.001937676570378244 +illusion_1.5L,ppo,358,143.2,force,lower_fx,0.0027358343359082937 +illusion_1.5L,ppo,358,143.2,force,lower_fy,0.0008115917444229126 +illusion_1.5L,ppo,359,143.6,force,front_fx,0.0019298637052997947 +illusion_1.5L,ppo,359,143.6,force,front_fy,0.0006731926696375012 +illusion_1.5L,ppo,359,143.6,force,upper_fx,0.002486206591129303 +illusion_1.5L,ppo,359,143.6,force,upper_fy,0.002017070073634386 +illusion_1.5L,ppo,359,143.6,force,lower_fx,0.002678906312212348 +illusion_1.5L,ppo,359,143.6,force,lower_fy,0.0008182435412891209 +illusion_1.5L,ppo,360,144.0,force,front_fx,0.002010456519201398 +illusion_1.5L,ppo,360,144.0,force,front_fy,0.0003870182845275849 +illusion_1.5L,ppo,360,144.0,force,upper_fx,0.0023854554165154696 +illusion_1.5L,ppo,360,144.0,force,upper_fy,0.002013834659010172 +illusion_1.5L,ppo,360,144.0,force,lower_fx,0.0026066068094223738 +illusion_1.5L,ppo,360,144.0,force,lower_fy,0.0007700493442825973 +illusion_1.5L,ppo,361,144.4,force,front_fx,0.0020571397617459297 +illusion_1.5L,ppo,361,144.4,force,front_fy,0.00031290194601751864 +illusion_1.5L,ppo,361,144.4,force,upper_fx,0.002271581906825304 +illusion_1.5L,ppo,361,144.4,force,upper_fy,0.001869087340310216 +illusion_1.5L,ppo,361,144.4,force,lower_fx,0.002531555248424411 +illusion_1.5L,ppo,361,144.4,force,lower_fy,0.0007132711471058428 +illusion_1.5L,ppo,362,144.8,force,front_fx,0.002081045415252447 +illusion_1.5L,ppo,362,144.8,force,front_fy,0.00021790392929688096 +illusion_1.5L,ppo,362,144.8,force,upper_fx,0.0022294779773801565 +illusion_1.5L,ppo,362,144.8,force,upper_fy,0.001642449526116252 +illusion_1.5L,ppo,362,144.8,force,lower_fx,0.002481074770912528 +illusion_1.5L,ppo,362,144.8,force,lower_fy,0.0006969284149818122 +illusion_1.5L,ppo,363,145.2,force,front_fx,0.002125863917171955 +illusion_1.5L,ppo,363,145.2,force,front_fy,-5.590907676378265e-05 +illusion_1.5L,ppo,363,145.2,force,upper_fx,0.002334822667762637 +illusion_1.5L,ppo,363,145.2,force,upper_fy,0.001262536970898509 +illusion_1.5L,ppo,363,145.2,force,lower_fx,0.0024438113905489445 +illusion_1.5L,ppo,363,145.2,force,lower_fy,0.0005892131594009697 +illusion_1.5L,ppo,364,145.6,force,front_fx,0.002180995885282755 +illusion_1.5L,ppo,364,145.6,force,front_fy,-0.00040660463855601847 +illusion_1.5L,ppo,364,145.6,force,upper_fx,0.002507054014131427 +illusion_1.5L,ppo,364,145.6,force,upper_fy,0.000724141311366111 +illusion_1.5L,ppo,364,145.6,force,lower_fx,0.0024167208466678858 +illusion_1.5L,ppo,364,145.6,force,lower_fy,0.0003293185727670789 +illusion_1.5L,ppo,365,146.0,force,front_fx,0.002214741427451372 +illusion_1.5L,ppo,365,146.0,force,front_fy,-0.0007460229098796844 +illusion_1.5L,ppo,365,146.0,force,upper_fx,0.002531281439587474 +illusion_1.5L,ppo,365,146.0,force,upper_fy,0.00032439405913464725 +illusion_1.5L,ppo,365,146.0,force,lower_fx,0.0024297109339386225 +illusion_1.5L,ppo,365,146.0,force,lower_fy,5.379092544899322e-05 +illusion_1.5L,ppo,366,146.4,force,front_fx,0.002221419708803296 +illusion_1.5L,ppo,366,146.4,force,front_fy,-0.001009079278446734 +illusion_1.5L,ppo,366,146.4,force,upper_fx,0.00242496095597744 +illusion_1.5L,ppo,366,146.4,force,upper_fy,0.0001041531577357091 +illusion_1.5L,ppo,366,146.4,force,lower_fx,0.0024700546637177467 +illusion_1.5L,ppo,366,146.4,force,lower_fy,-0.00020401411165948957 +illusion_1.5L,ppo,367,146.8,force,front_fx,0.002176567679271102 +illusion_1.5L,ppo,367,146.8,force,front_fy,-0.001196203287690878 +illusion_1.5L,ppo,367,146.8,force,upper_fx,0.0024009887129068375 +illusion_1.5L,ppo,367,146.8,force,upper_fy,-0.0001151372489403002 +illusion_1.5L,ppo,367,146.8,force,lower_fx,0.0025173360481858253 +illusion_1.5L,ppo,367,146.8,force,lower_fy,-0.0005158872809261084 +illusion_1.5L,ppo,368,147.2,force,front_fx,0.0021095143165439367 +illusion_1.5L,ppo,368,147.2,force,front_fy,-0.0014168028719723225 +illusion_1.5L,ppo,368,147.2,force,upper_fx,0.002524166600778699 +illusion_1.5L,ppo,368,147.2,force,upper_fy,-0.000346248532878235 +illusion_1.5L,ppo,368,147.2,force,lower_fx,0.0025722552090883255 +illusion_1.5L,ppo,368,147.2,force,lower_fy,-0.0008751373970881104 +illusion_1.5L,ppo,369,147.6,force,front_fx,0.002036068355664611 +illusion_1.5L,ppo,369,147.6,force,front_fy,-0.0016162532847374678 +illusion_1.5L,ppo,369,147.6,force,upper_fx,0.002687657717615366 +illusion_1.5L,ppo,369,147.6,force,upper_fy,-0.0005406440468505025 +illusion_1.5L,ppo,369,147.6,force,lower_fx,0.0026168266776949167 +illusion_1.5L,ppo,369,147.6,force,lower_fy,-0.0012525151250883937 +illusion_1.5L,ppo,370,148.0,force,front_fx,0.0019541133660823107 +illusion_1.5L,ppo,370,148.0,force,front_fy,-0.001668809331022203 +illusion_1.5L,ppo,370,148.0,force,upper_fx,0.0027589439414441586 +illusion_1.5L,ppo,370,148.0,force,upper_fy,-0.0006546367076225579 +illusion_1.5L,ppo,370,148.0,force,lower_fx,0.0026425153482705355 +illusion_1.5L,ppo,370,148.0,force,lower_fy,-0.0015719542279839516 +illusion_1.5L,ppo,371,148.4,force,front_fx,0.001895739114843309 +illusion_1.5L,ppo,371,148.4,force,front_fy,-0.0014936174266040325 +illusion_1.5L,ppo,371,148.4,force,upper_fx,0.002685355255380273 +illusion_1.5L,ppo,371,148.4,force,upper_fy,-0.0006817179382778704 +illusion_1.5L,ppo,371,148.4,force,lower_fx,0.002635809825733304 +illusion_1.5L,ppo,371,148.4,force,lower_fy,-0.0017813023878261447 +illusion_1.5L,ppo,372,148.8,force,front_fx,0.001882182084955275 +illusion_1.5L,ppo,372,148.8,force,front_fy,-0.0011648412328213453 +illusion_1.5L,ppo,372,148.8,force,upper_fx,0.0025504068471491337 +illusion_1.5L,ppo,372,148.8,force,upper_fy,-0.0006541617913171649 +illusion_1.5L,ppo,372,148.8,force,lower_fx,0.00257590739056468 +illusion_1.5L,ppo,372,148.8,force,lower_fy,-0.0019138359930366278 +illusion_1.5L,ppo,373,149.2,force,front_fx,0.0019039848120883107 +illusion_1.5L,ppo,373,149.2,force,front_fy,-0.0008631692035123706 +illusion_1.5L,ppo,373,149.2,force,upper_fx,0.0024443920701742172 +illusion_1.5L,ppo,373,149.2,force,upper_fy,-0.000579817860852927 +illusion_1.5L,ppo,373,149.2,force,lower_fx,0.002466743579134345 +illusion_1.5L,ppo,373,149.2,force,lower_fy,-0.0019735118839889765 +illusion_1.5L,ppo,374,149.6,force,front_fx,0.0019119535572826862 +illusion_1.5L,ppo,374,149.6,force,front_fy,-0.0007549097645096481 +illusion_1.5L,ppo,374,149.6,force,upper_fx,0.0023639460559934378 +illusion_1.5L,ppo,374,149.6,force,upper_fy,-0.00045275624142959714 +illusion_1.5L,ppo,374,149.6,force,lower_fx,0.002360295271500945 +illusion_1.5L,ppo,374,149.6,force,lower_fy,-0.0018921166192740202 +illusion_1.5L,ppo,375,150.0,force,front_fx,0.001905975746922195 +illusion_1.5L,ppo,375,150.0,force,front_fy,-0.0007395728025585413 +illusion_1.5L,ppo,375,150.0,force,upper_fx,0.002306740963831544 +illusion_1.5L,ppo,375,150.0,force,upper_fy,-0.00033159597660414875 +illusion_1.5L,ppo,375,150.0,force,lower_fx,0.002325796289369464 +illusion_1.5L,ppo,375,150.0,force,lower_fy,-0.0016675767255946994 +illusion_1.5L,ppo,376,150.4,force,front_fx,0.0019363019382581115 +illusion_1.5L,ppo,376,150.4,force,front_fy,-0.000558889121748507 +illusion_1.5L,ppo,376,150.4,force,upper_fx,0.002280561253428459 +illusion_1.5L,ppo,376,150.4,force,upper_fy,-0.00019787136989179999 +illusion_1.5L,ppo,376,150.4,force,lower_fx,0.0024054055102169514 +illusion_1.5L,ppo,376,150.4,force,lower_fy,-0.0012945219641551375 +illusion_1.5L,ppo,377,150.8,force,front_fx,0.001995938364416361 +illusion_1.5L,ppo,377,150.8,force,front_fy,-0.0002259184402646497 +illusion_1.5L,ppo,377,150.8,force,upper_fx,0.0022697527892887592 +illusion_1.5L,ppo,377,150.8,force,upper_fy,3.4021981264231727e-05 +illusion_1.5L,ppo,377,150.8,force,lower_fx,0.002543960465118289 +illusion_1.5L,ppo,377,150.8,force,lower_fy,-0.0007660600822418928 +illusion_1.5L,ppo,378,151.2,force,front_fx,0.0020301155745983124 +illusion_1.5L,ppo,378,151.2,force,front_fy,9.47689259191975e-05 +illusion_1.5L,ppo,378,151.2,force,upper_fx,0.002289602067321539 +illusion_1.5L,ppo,378,151.2,force,upper_fy,0.00032659395947121084 +illusion_1.5L,ppo,378,151.2,force,lower_fx,0.00260551949031651 +illusion_1.5L,ppo,378,151.2,force,lower_fy,-0.00026519273524172604 +illusion_1.5L,ppo,379,151.6,force,front_fx,0.0020284068305045366 +illusion_1.5L,ppo,379,151.6,force,front_fy,0.00033377244835719466 +illusion_1.5L,ppo,379,151.6,force,upper_fx,0.002359825884923339 +illusion_1.5L,ppo,379,151.6,force,upper_fy,0.0005820966907776892 +illusion_1.5L,ppo,379,151.6,force,lower_fx,0.002564250258728862 +illusion_1.5L,ppo,379,151.6,force,lower_fy,5.7497614761814475e-05 +illusion_1.5L,ppo,380,152.0,force,front_fx,0.0020029719453305006 +illusion_1.5L,ppo,380,152.0,force,front_fy,0.0005121792200952768 +illusion_1.5L,ppo,380,152.0,force,upper_fx,0.002428592648357153 +illusion_1.5L,ppo,380,152.0,force,upper_fy,0.0008191679953597486 +illusion_1.5L,ppo,380,152.0,force,lower_fx,0.0025215791538357735 +illusion_1.5L,ppo,380,152.0,force,lower_fy,0.0002717391471378505 +illusion_1.5L,ppo,381,152.4,force,front_fx,0.0019619690719991922 +illusion_1.5L,ppo,381,152.4,force,front_fy,0.0006848417106084526 +illusion_1.5L,ppo,381,152.4,force,upper_fx,0.00246150023303926 +illusion_1.5L,ppo,381,152.4,force,upper_fy,0.0011174273677170277 +illusion_1.5L,ppo,381,152.4,force,lower_fx,0.002575540216639638 +illusion_1.5L,ppo,381,152.4,force,lower_fy,0.0004752865352202207 +illusion_1.5L,ppo,382,152.8,force,front_fx,0.0019185669953003526 +illusion_1.5L,ppo,382,152.8,force,front_fy,0.0008582931477576494 +illusion_1.5L,ppo,382,152.8,force,upper_fx,0.0024658532347530127 +illusion_1.5L,ppo,382,152.8,force,upper_fy,0.001447166781872511 +illusion_1.5L,ppo,382,152.8,force,lower_fx,0.0026755693834275007 +illusion_1.5L,ppo,382,152.8,force,lower_fy,0.0006333754863590002 +illusion_1.5L,ppo,383,153.2,force,front_fx,0.0018760014791041613 +illusion_1.5L,ppo,383,153.2,force,front_fy,0.0008866775315254927 +illusion_1.5L,ppo,383,153.2,force,upper_fx,0.0024506656918674707 +illusion_1.5L,ppo,383,153.2,force,upper_fy,0.0017400835640728474 +illusion_1.5L,ppo,383,153.2,force,lower_fx,0.002708947751671076 +illusion_1.5L,ppo,383,153.2,force,lower_fy,0.0007124238181859255 +illusion_1.5L,ppo,384,153.6,force,front_fx,0.0018696646438911557 +illusion_1.5L,ppo,384,153.6,force,front_fy,0.0006802254938520491 +illusion_1.5L,ppo,384,153.6,force,upper_fx,0.0024155674036592245 +illusion_1.5L,ppo,384,153.6,force,upper_fy,0.001973477890715003 +illusion_1.5L,ppo,384,153.6,force,lower_fx,0.0026700624730437994 +illusion_1.5L,ppo,384,153.6,force,lower_fy,0.0007509163115173578 +illusion_1.5L,ppo,385,154.0,force,front_fx,0.0019352217204868793 +illusion_1.5L,ppo,385,154.0,force,front_fy,0.0003943660412915051 +illusion_1.5L,ppo,385,154.0,force,upper_fx,0.00233581499196589 +illusion_1.5L,ppo,385,154.0,force,upper_fy,0.0021385427098721266 +illusion_1.5L,ppo,385,154.0,force,lower_fx,0.0026195752434432507 +illusion_1.5L,ppo,385,154.0,force,lower_fy,0.0007741816225461662 +illusion_1.5L,ppo,386,154.4,force,front_fx,0.0020178065169602633 +illusion_1.5L,ppo,386,154.4,force,front_fy,0.00024343476979993284 +illusion_1.5L,ppo,386,154.4,force,upper_fx,0.0022121688816696405 +illusion_1.5L,ppo,386,154.4,force,upper_fy,0.002153244102373719 +illusion_1.5L,ppo,386,154.4,force,lower_fx,0.002561830682680011 +illusion_1.5L,ppo,386,154.4,force,lower_fy,0.0007748677744530141 +illusion_1.5L,ppo,387,154.8,force,front_fx,0.002062366111204028 +illusion_1.5L,ppo,387,154.8,force,front_fy,0.00024226054665632546 +illusion_1.5L,ppo,387,154.8,force,upper_fx,0.0021347550209611654 +illusion_1.5L,ppo,387,154.8,force,upper_fy,0.001987272873520851 +illusion_1.5L,ppo,387,154.8,force,lower_fx,0.002494504675269127 +illusion_1.5L,ppo,387,154.8,force,lower_fy,0.0007992845494300127 +illusion_1.5L,ppo,388,155.2,force,front_fx,0.0020888857543468475 +illusion_1.5L,ppo,388,155.2,force,front_fy,0.00013777388085145503 +illusion_1.5L,ppo,388,155.2,force,upper_fx,0.0021769246086478233 +illusion_1.5L,ppo,388,155.2,force,upper_fy,0.001687368843704462 +illusion_1.5L,ppo,388,155.2,force,lower_fx,0.002441614167764783 +illusion_1.5L,ppo,388,155.2,force,lower_fy,0.0008352653821930289 +illusion_1.5L,ppo,389,155.6,force,front_fx,0.0021458365954458714 +illusion_1.5L,ppo,389,155.6,force,front_fy,-0.00015442975563928485 +illusion_1.5L,ppo,389,155.6,force,upper_fx,0.002333530690521002 +illusion_1.5L,ppo,389,155.6,force,upper_fy,0.0012150408001616597 +illusion_1.5L,ppo,389,155.6,force,lower_fx,0.0024035172536969185 +illusion_1.5L,ppo,389,155.6,force,lower_fy,0.0007670028717257082 +illusion_1.5L,ppo,390,156.0,force,front_fx,0.0022213312331587076 +illusion_1.5L,ppo,390,156.0,force,front_fy,-0.0004892464494332671 +illusion_1.5L,ppo,390,156.0,force,upper_fx,0.0024751864839345217 +illusion_1.5L,ppo,390,156.0,force,upper_fy,0.0006661790539510548 +illusion_1.5L,ppo,390,156.0,force,lower_fx,0.0023902037646621466 +illusion_1.5L,ppo,390,156.0,force,lower_fy,0.0005890653119422495 +illusion_1.5L,ppo,391,156.4,force,front_fx,0.0022559678182005882 +illusion_1.5L,ppo,391,156.4,force,front_fy,-0.0007770872907713056 +illusion_1.5L,ppo,391,156.4,force,upper_fx,0.002473583212122321 +illusion_1.5L,ppo,391,156.4,force,upper_fy,0.0002617672726046294 +illusion_1.5L,ppo,391,156.4,force,lower_fx,0.0024063740856945515 +illusion_1.5L,ppo,391,156.4,force,lower_fy,0.0003795066149905324 +illusion_1.5L,ppo,392,156.8,force,front_fx,0.0022520602215081453 +illusion_1.5L,ppo,392,156.8,force,front_fy,-0.001013251137919724 +illusion_1.5L,ppo,392,156.8,force,upper_fx,0.0024160610046237707 +illusion_1.5L,ppo,392,156.8,force,upper_fy,2.8561282761074835e-07 +illusion_1.5L,ppo,392,156.8,force,lower_fx,0.0024426050949841738 +illusion_1.5L,ppo,392,156.8,force,lower_fy,0.00014421736705116928 +illusion_1.5L,ppo,393,157.2,force,front_fx,0.002203152282163501 +illusion_1.5L,ppo,393,157.2,force,front_fy,-0.0012215649476274848 +illusion_1.5L,ppo,393,157.2,force,upper_fx,0.0024638595059514046 +illusion_1.5L,ppo,393,157.2,force,upper_fy,-0.0002466643927618861 +illusion_1.5L,ppo,393,157.2,force,lower_fx,0.002496402245014906 +illusion_1.5L,ppo,393,157.2,force,lower_fy,-0.00017582251166459173 +illusion_1.5L,ppo,394,157.6,force,front_fx,0.0021147779189050198 +illusion_1.5L,ppo,394,157.6,force,front_fy,-0.0014272982953116298 +illusion_1.5L,ppo,394,157.6,force,upper_fx,0.0026264169719070196 +illusion_1.5L,ppo,394,157.6,force,upper_fy,-0.0004846666124649346 +illusion_1.5L,ppo,394,157.6,force,lower_fx,0.0025603261310607195 +illusion_1.5L,ppo,394,157.6,force,lower_fy,-0.0006068329676054418 +illusion_1.5L,ppo,395,158.0,force,front_fx,0.0020084420684725046 +illusion_1.5L,ppo,395,158.0,force,front_fy,-0.0015740182716399431 +illusion_1.5L,ppo,395,158.0,force,upper_fx,0.0027667393442243338 +illusion_1.5L,ppo,395,158.0,force,upper_fy,-0.0006219844799488783 +illusion_1.5L,ppo,395,158.0,force,lower_fx,0.002609698800370097 +illusion_1.5L,ppo,395,158.0,force,lower_fy,-0.0011008502915501595 +illusion_1.5L,ppo,396,158.4,force,front_fx,0.0019078877521678805 +illusion_1.5L,ppo,396,158.4,force,front_fy,-0.0015688893618062139 +illusion_1.5L,ppo,396,158.4,force,upper_fx,0.002760251984000206 +illusion_1.5L,ppo,396,158.4,force,upper_fy,-0.0006397401448339224 +illusion_1.5L,ppo,396,158.4,force,lower_fx,0.0026169847697019577 +illusion_1.5L,ppo,396,158.4,force,lower_fy,-0.001555424532853067 +illusion_1.5L,ppo,397,158.8,force,front_fx,0.0018383294809609652 +illusion_1.5L,ppo,397,158.8,force,front_fy,-0.0013952910667285323 +illusion_1.5L,ppo,397,158.8,force,upper_fx,0.002617894671857357 +illusion_1.5L,ppo,397,158.8,force,upper_fy,-0.0005829971050843596 +illusion_1.5L,ppo,397,158.8,force,lower_fx,0.0025718447286635637 +illusion_1.5L,ppo,397,158.8,force,lower_fy,-0.0018963897600769997 +illusion_1.5L,ppo,398,159.2,force,front_fx,0.0018235406605526805 +illusion_1.5L,ppo,398,159.2,force,front_fy,-0.0011530442861840129 +illusion_1.5L,ppo,398,159.2,force,upper_fx,0.0024472950026392937 +illusion_1.5L,ppo,398,159.2,force,upper_fy,-0.0004936902550980449 +illusion_1.5L,ppo,398,159.2,force,lower_fx,0.002485436387360096 +illusion_1.5L,ppo,398,159.2,force,lower_fy,-0.0020873351022601128 +illusion_1.5L,ppo,399,159.6,force,front_fx,0.0018611601553857327 +illusion_1.5L,ppo,399,159.6,force,front_fy,-0.0008812607266008854 +illusion_1.5L,ppo,399,159.6,force,upper_fx,0.002336914651095867 +illusion_1.5L,ppo,399,159.6,force,upper_fy,-0.00042866161675192416 +illusion_1.5L,ppo,399,159.6,force,lower_fx,0.0023763622157275677 +illusion_1.5L,ppo,399,159.6,force,lower_fy,-0.002130745444446802 +illusion_1.5L,ppo,0,0.0,alpha,front,1.941986322402954 +illusion_1.5L,ppo,0,0.0,alpha,upper,3.209744453430176 +illusion_1.5L,ppo,0,0.0,alpha,lower,1.732092022895813 +illusion_1.5L,ppo,1,0.4,alpha,front,0.6020504236221313 +illusion_1.5L,ppo,1,0.4,alpha,upper,0.8156056404113771 +illusion_1.5L,ppo,1,0.4,alpha,lower,-0.3386270999908447 +illusion_1.5L,ppo,2,0.8,alpha,front,-0.9304244518280029 +illusion_1.5L,ppo,2,0.8,alpha,upper,-1.0189091563224792 +illusion_1.5L,ppo,2,0.8,alpha,lower,-1.8308806419372559 +illusion_1.5L,ppo,3,1.2,alpha,front,-2.13261079788208 +illusion_1.5L,ppo,3,1.2,alpha,upper,-1.1459285020828247 +illusion_1.5L,ppo,3,1.2,alpha,lower,-1.616842269897461 +illusion_1.5L,ppo,4,1.6,alpha,front,-1.442936897277832 +illusion_1.5L,ppo,4,1.6,alpha,upper,-0.37339115142822266 +illusion_1.5L,ppo,4,1.6,alpha,lower,-0.5187168121337891 +illusion_1.5L,ppo,5,2.0,alpha,front,0.6232544183731079 +illusion_1.5L,ppo,5,2.0,alpha,upper,-0.21235203742980957 +illusion_1.5L,ppo,5,2.0,alpha,lower,-0.0905001163482666 +illusion_1.5L,ppo,6,2.4,alpha,front,1.217389464378357 +illusion_1.5L,ppo,6,2.4,alpha,upper,-1.122499167919159 +illusion_1.5L,ppo,6,2.4,alpha,lower,-0.7400574684143066 +illusion_1.5L,ppo,7,2.8,alpha,front,-0.005511164665222168 +illusion_1.5L,ppo,7,2.8,alpha,upper,-1.5269116759300232 +illusion_1.5L,ppo,7,2.8,alpha,lower,-1.2153043746948242 +illusion_1.5L,ppo,8,3.2,alpha,front,-1.0442770719528198 +illusion_1.5L,ppo,8,3.2,alpha,upper,-0.7272988557815552 +illusion_1.5L,ppo,8,3.2,alpha,lower,-0.9612452983856201 +illusion_1.5L,ppo,9,3.6,alpha,front,-0.35374557971954346 +illusion_1.5L,ppo,9,3.6,alpha,upper,-0.009137868881225586 +illusion_1.5L,ppo,9,3.6,alpha,lower,-0.7331018447875977 +illusion_1.5L,ppo,10,4.0,alpha,front,0.6083433628082275 +illusion_1.5L,ppo,10,4.0,alpha,upper,0.5716071128845215 +illusion_1.5L,ppo,10,4.0,alpha,lower,-0.4134855270385742 +illusion_1.5L,ppo,11,4.4,alpha,front,0.9737371802330016 +illusion_1.5L,ppo,11,4.4,alpha,upper,0.7751290798187256 +illusion_1.5L,ppo,11,4.4,alpha,lower,-0.19543170928955078 +illusion_1.5L,ppo,12,4.8,alpha,front,0.9049892425537109 +illusion_1.5L,ppo,12,4.8,alpha,upper,0.2489438056945801 +illusion_1.5L,ppo,12,4.8,alpha,lower,-0.3887920379638672 +illusion_1.5L,ppo,13,5.2,alpha,front,0.16814374923706055 +illusion_1.5L,ppo,13,5.2,alpha,upper,0.2875683307647705 +illusion_1.5L,ppo,13,5.2,alpha,lower,-0.04742622375488281 +illusion_1.5L,ppo,14,5.6,alpha,front,-0.159498929977417 +illusion_1.5L,ppo,14,5.6,alpha,upper,0.8691983222961426 +illusion_1.5L,ppo,14,5.6,alpha,lower,0.7783864736557007 +illusion_1.5L,ppo,15,6.0,alpha,front,0.4042631983757019 +illusion_1.5L,ppo,15,6.0,alpha,upper,0.9887299537658693 +illusion_1.5L,ppo,15,6.0,alpha,lower,1.1575267910957336 +illusion_1.5L,ppo,16,6.4,alpha,front,0.7472513914108276 +illusion_1.5L,ppo,16,6.4,alpha,upper,0.8443994522094727 +illusion_1.5L,ppo,16,6.4,alpha,lower,1.047013521194458 +illusion_1.5L,ppo,17,6.8,alpha,front,0.5905010104179382 +illusion_1.5L,ppo,17,6.8,alpha,upper,0.6867978572845459 +illusion_1.5L,ppo,17,6.8,alpha,lower,0.704238772392273 +illusion_1.5L,ppo,18,7.2,alpha,front,0.48103994131088257 +illusion_1.5L,ppo,18,7.2,alpha,upper,0.7402939796447754 +illusion_1.5L,ppo,18,7.2,alpha,lower,0.5391690731048584 +illusion_1.5L,ppo,19,7.6,alpha,front,0.32072964310646057 +illusion_1.5L,ppo,19,7.6,alpha,upper,1.102686882019043 +illusion_1.5L,ppo,19,7.6,alpha,lower,0.7694337368011475 +illusion_1.5L,ppo,20,8.0,alpha,front,0.22530981898307803 +illusion_1.5L,ppo,20,8.0,alpha,upper,1.019214153289795 +illusion_1.5L,ppo,20,8.0,alpha,lower,0.702878475189209 +illusion_1.5L,ppo,21,8.4,alpha,front,0.19970089197158813 +illusion_1.5L,ppo,21,8.4,alpha,upper,0.5268838405609131 +illusion_1.5L,ppo,21,8.4,alpha,lower,0.290202260017395 +illusion_1.5L,ppo,22,8.8,alpha,front,-0.22320044040679932 +illusion_1.5L,ppo,22,8.8,alpha,upper,0.1842207908630371 +illusion_1.5L,ppo,22,8.8,alpha,lower,0.05541038513183594 +illusion_1.5L,ppo,23,9.2,alpha,front,-0.46672129631042475 +illusion_1.5L,ppo,23,9.2,alpha,upper,-0.13337361812591553 +illusion_1.5L,ppo,23,9.2,alpha,lower,-0.027025461196899414 +illusion_1.5L,ppo,24,9.6,alpha,front,-0.15261539816856384 +illusion_1.5L,ppo,24,9.6,alpha,upper,-0.6171000003814697 +illusion_1.5L,ppo,24,9.6,alpha,lower,-0.12443661689758301 +illusion_1.5L,ppo,25,10.0,alpha,front,0.3555757701396942 +illusion_1.5L,ppo,25,10.0,alpha,upper,-1.000697672367096 +illusion_1.5L,ppo,25,10.0,alpha,lower,-0.1775341033935547 +illusion_1.5L,ppo,26,10.4,alpha,front,0.30059805512428284 +illusion_1.5L,ppo,26,10.4,alpha,upper,-1.1594375371932983 +illusion_1.5L,ppo,26,10.4,alpha,lower,-0.3201777935028076 +illusion_1.5L,ppo,27,10.8,alpha,front,-0.042012423276901245 +illusion_1.5L,ppo,27,10.8,alpha,upper,-1.0255146026611328 +illusion_1.5L,ppo,27,10.8,alpha,lower,-0.5324833393096924 +illusion_1.5L,ppo,28,11.2,alpha,front,-0.14440876245498657 +illusion_1.5L,ppo,28,11.2,alpha,upper,-0.6572694778442383 +illusion_1.5L,ppo,28,11.2,alpha,lower,-0.687464714050293 +illusion_1.5L,ppo,29,11.6,alpha,front,0.022486642003059387 +illusion_1.5L,ppo,29,11.6,alpha,upper,-0.16310715675354004 +illusion_1.5L,ppo,29,11.6,alpha,lower,-0.6611287593841553 +illusion_1.5L,ppo,30,12.0,alpha,front,0.25659361481666565 +illusion_1.5L,ppo,30,12.0,alpha,upper,0.2536201477050781 +illusion_1.5L,ppo,30,12.0,alpha,lower,-0.49306249618530273 +illusion_1.5L,ppo,31,12.4,alpha,front,0.3852786421775818 +illusion_1.5L,ppo,31,12.4,alpha,upper,0.16167211532592773 +illusion_1.5L,ppo,31,12.4,alpha,lower,-0.49695324897766113 +illusion_1.5L,ppo,32,12.8,alpha,front,0.14701271057128906 +illusion_1.5L,ppo,32,12.8,alpha,upper,-0.14827346801757812 +illusion_1.5L,ppo,32,12.8,alpha,lower,-0.47076940536499023 +illusion_1.5L,ppo,33,13.2,alpha,front,-0.507101833820343 +illusion_1.5L,ppo,33,13.2,alpha,upper,-0.24944353103637695 +illusion_1.5L,ppo,33,13.2,alpha,lower,-0.1646881103515625 +illusion_1.5L,ppo,34,13.6,alpha,front,-0.5119451284408569 +illusion_1.5L,ppo,34,13.6,alpha,upper,-0.3928096294403076 +illusion_1.5L,ppo,34,13.6,alpha,lower,0.14213240146636963 +illusion_1.5L,ppo,35,14.0,alpha,front,-0.12575605511665344 +illusion_1.5L,ppo,35,14.0,alpha,upper,-0.5574060678482056 +illusion_1.5L,ppo,35,14.0,alpha,lower,0.28154873847961426 +illusion_1.5L,ppo,36,14.4,alpha,front,-0.20696255564689636 +illusion_1.5L,ppo,36,14.4,alpha,upper,-0.4350249767303467 +illusion_1.5L,ppo,36,14.4,alpha,lower,0.3048539161682129 +illusion_1.5L,ppo,37,14.8,alpha,front,-0.36938709020614624 +illusion_1.5L,ppo,37,14.8,alpha,upper,-0.400567889213562 +illusion_1.5L,ppo,37,14.8,alpha,lower,0.040247440338134766 +illusion_1.5L,ppo,38,15.2,alpha,front,-0.176839679479599 +illusion_1.5L,ppo,38,15.2,alpha,upper,-0.29205799102783203 +illusion_1.5L,ppo,38,15.2,alpha,lower,-0.1970508098602295 +illusion_1.5L,ppo,39,15.6,alpha,front,-0.039579540491104126 +illusion_1.5L,ppo,39,15.6,alpha,upper,-0.03808021545410156 +illusion_1.5L,ppo,39,15.6,alpha,lower,-0.18136858940124512 +illusion_1.5L,ppo,40,16.0,alpha,front,0.10464975237846373 +illusion_1.5L,ppo,40,16.0,alpha,upper,-0.044719696044921875 +illusion_1.5L,ppo,40,16.0,alpha,lower,-0.11406850814819336 +illusion_1.5L,ppo,41,16.4,alpha,front,0.2959255278110504 +illusion_1.5L,ppo,41,16.4,alpha,upper,-0.11687469482421875 +illusion_1.5L,ppo,41,16.4,alpha,lower,0.12229251861572264 +illusion_1.5L,ppo,42,16.8,alpha,front,0.48176878690719604 +illusion_1.5L,ppo,42,16.8,alpha,upper,-0.03550577163696289 +illusion_1.5L,ppo,42,16.8,alpha,lower,0.5874285697937012 +illusion_1.5L,ppo,43,17.2,alpha,front,0.7268116474151611 +illusion_1.5L,ppo,43,17.2,alpha,upper,0.05350804328918457 +illusion_1.5L,ppo,43,17.2,alpha,lower,1.0019391179084778 +illusion_1.5L,ppo,44,17.6,alpha,front,0.8276234269142152 +illusion_1.5L,ppo,44,17.6,alpha,upper,0.0823984146118164 +illusion_1.5L,ppo,44,17.6,alpha,lower,1.183782696723938 +illusion_1.5L,ppo,45,18.0,alpha,front,0.7552164793014526 +illusion_1.5L,ppo,45,18.0,alpha,upper,0.08570504188537598 +illusion_1.5L,ppo,45,18.0,alpha,lower,1.1460378170013428 +illusion_1.5L,ppo,46,18.4,alpha,front,0.6658228635787964 +illusion_1.5L,ppo,46,18.4,alpha,upper,0.10638618469238281 +illusion_1.5L,ppo,46,18.4,alpha,lower,0.9754748344421386 +illusion_1.5L,ppo,47,18.8,alpha,front,0.6558326482772827 +illusion_1.5L,ppo,47,18.8,alpha,upper,0.17340755462646484 +illusion_1.5L,ppo,47,18.8,alpha,lower,0.7688038349151611 +illusion_1.5L,ppo,48,19.2,alpha,front,0.5964444875717163 +illusion_1.5L,ppo,48,19.2,alpha,upper,0.21192073822021484 +illusion_1.5L,ppo,48,19.2,alpha,lower,0.5549124479293823 +illusion_1.5L,ppo,49,19.6,alpha,front,0.22594848275184629 +illusion_1.5L,ppo,49,19.6,alpha,upper,0.24780368804931638 +illusion_1.5L,ppo,49,19.6,alpha,lower,0.41242182254791254 +illusion_1.5L,ppo,50,20.0,alpha,front,-0.2741820216178894 +illusion_1.5L,ppo,50,20.0,alpha,upper,0.17306900024414062 +illusion_1.5L,ppo,50,20.0,alpha,lower,0.2342665195465088 +illusion_1.5L,ppo,51,20.4,alpha,front,-0.5391049385070801 +illusion_1.5L,ppo,51,20.4,alpha,upper,-0.09195268154144287 +illusion_1.5L,ppo,51,20.4,alpha,lower,-0.08966279029846191 +illusion_1.5L,ppo,52,20.8,alpha,front,-0.5021133422851562 +illusion_1.5L,ppo,52,20.8,alpha,upper,-0.29876530170440674 +illusion_1.5L,ppo,52,20.8,alpha,lower,-0.34248781204223633 +illusion_1.5L,ppo,53,21.2,alpha,front,-0.3706050515174866 +illusion_1.5L,ppo,53,21.2,alpha,upper,-0.5343754291534424 +illusion_1.5L,ppo,53,21.2,alpha,lower,-0.5437803268432617 +illusion_1.5L,ppo,54,21.6,alpha,front,-0.2824721336364746 +illusion_1.5L,ppo,54,21.6,alpha,upper,-0.7906763553619385 +illusion_1.5L,ppo,54,21.6,alpha,lower,-0.723233699798584 +illusion_1.5L,ppo,55,22.0,alpha,front,-0.5043542385101318 +illusion_1.5L,ppo,55,22.0,alpha,upper,-0.800063729286194 +illusion_1.5L,ppo,55,22.0,alpha,lower,-0.7663683891296387 +illusion_1.5L,ppo,56,22.4,alpha,front,-0.5823725461959839 +illusion_1.5L,ppo,56,22.4,alpha,upper,-0.6365240812301636 +illusion_1.5L,ppo,56,22.4,alpha,lower,-0.7250423431396484 +illusion_1.5L,ppo,57,22.8,alpha,front,-0.33703821897506714 +illusion_1.5L,ppo,57,22.8,alpha,upper,-0.4484481811523437 +illusion_1.5L,ppo,57,22.8,alpha,lower,-0.7016458511352539 +illusion_1.5L,ppo,58,23.2,alpha,front,0.03986561298370361 +illusion_1.5L,ppo,58,23.2,alpha,upper,-0.19069314002990723 +illusion_1.5L,ppo,58,23.2,alpha,lower,-0.6307487487792969 +illusion_1.5L,ppo,59,23.6,alpha,front,0.5258165597915649 +illusion_1.5L,ppo,59,23.6,alpha,upper,-0.34295356273651123 +illusion_1.5L,ppo,59,23.6,alpha,lower,-0.7614390850067139 +illusion_1.5L,ppo,60,24.0,alpha,front,0.44931474328041077 +illusion_1.5L,ppo,60,24.0,alpha,upper,-0.4724375009536743 +illusion_1.5L,ppo,60,24.0,alpha,lower,-0.7298002243041992 +illusion_1.5L,ppo,61,24.4,alpha,front,-0.18562635779380798 +illusion_1.5L,ppo,61,24.4,alpha,upper,-0.07502365112304688 +illusion_1.5L,ppo,61,24.4,alpha,lower,-0.29645371437072754 +illusion_1.5L,ppo,62,24.8,alpha,front,-0.029419928789138794 +illusion_1.5L,ppo,62,24.8,alpha,upper,0.09509515762329102 +illusion_1.5L,ppo,62,24.8,alpha,lower,-0.07160377502441406 +illusion_1.5L,ppo,63,25.2,alpha,front,0.5795633792877197 +illusion_1.5L,ppo,63,25.2,alpha,upper,0.21522903442382812 +illusion_1.5L,ppo,63,25.2,alpha,lower,0.12328565120697021 +illusion_1.5L,ppo,64,25.6,alpha,front,0.5788458585739136 +illusion_1.5L,ppo,64,25.6,alpha,upper,0.440751314163208 +illusion_1.5L,ppo,64,25.6,alpha,lower,0.33841240406036377 +illusion_1.5L,ppo,65,26.0,alpha,front,0.5109463334083557 +illusion_1.5L,ppo,65,26.0,alpha,upper,0.27875232696533203 +illusion_1.5L,ppo,65,26.0,alpha,lower,0.15983641147613525 +illusion_1.5L,ppo,66,26.4,alpha,front,0.509608268737793 +illusion_1.5L,ppo,66,26.4,alpha,upper,0.2851996421813965 +illusion_1.5L,ppo,66,26.4,alpha,lower,0.0626993179321289 +illusion_1.5L,ppo,67,26.8,alpha,front,0.3742165267467499 +illusion_1.5L,ppo,67,26.8,alpha,upper,0.7744770050048828 +illusion_1.5L,ppo,67,26.8,alpha,lower,0.40785098075866705 +illusion_1.5L,ppo,68,27.2,alpha,front,0.4588925242424011 +illusion_1.5L,ppo,68,27.2,alpha,upper,0.9517910480499268 +illusion_1.5L,ppo,68,27.2,alpha,lower,0.619543194770813 +illusion_1.5L,ppo,69,27.6,alpha,front,0.6281877756118774 +illusion_1.5L,ppo,69,27.6,alpha,upper,0.7583551406860352 +illusion_1.5L,ppo,69,27.6,alpha,lower,0.5810058116912842 +illusion_1.5L,ppo,70,28.0,alpha,front,0.5310468673706055 +illusion_1.5L,ppo,70,28.0,alpha,upper,0.5545449256896973 +illusion_1.5L,ppo,70,28.0,alpha,lower,0.4768824577331543 +illusion_1.5L,ppo,71,28.4,alpha,front,0.3948054313659668 +illusion_1.5L,ppo,71,28.4,alpha,upper,0.45972299575805664 +illusion_1.5L,ppo,71,28.4,alpha,lower,0.40511536598205566 +illusion_1.5L,ppo,72,28.8,alpha,front,0.3016664683818817 +illusion_1.5L,ppo,72,28.8,alpha,upper,0.4773387908935547 +illusion_1.5L,ppo,72,28.8,alpha,lower,0.4289195537567138 +illusion_1.5L,ppo,73,29.2,alpha,front,0.2441001981496811 +illusion_1.5L,ppo,73,29.2,alpha,upper,0.42159080505371094 +illusion_1.5L,ppo,73,29.2,alpha,lower,0.4008697271347046 +illusion_1.5L,ppo,74,29.6,alpha,front,0.09642753005027771 +illusion_1.5L,ppo,74,29.6,alpha,upper,0.32308435440063477 +illusion_1.5L,ppo,74,29.6,alpha,lower,0.3279235363006592 +illusion_1.5L,ppo,75,30.0,alpha,front,-0.13267359137535095 +illusion_1.5L,ppo,75,30.0,alpha,upper,0.12844038009643555 +illusion_1.5L,ppo,75,30.0,alpha,lower,0.16603434085845947 +illusion_1.5L,ppo,76,30.4,alpha,front,-0.3035193085670471 +illusion_1.5L,ppo,76,30.4,alpha,upper,-0.1640312671661377 +illusion_1.5L,ppo,76,30.4,alpha,lower,-0.06554794311523438 +illusion_1.5L,ppo,77,30.8,alpha,front,-0.4097734093666077 +illusion_1.5L,ppo,77,30.8,alpha,upper,-0.3484048843383789 +illusion_1.5L,ppo,77,30.8,alpha,lower,-0.20122432708740237 +illusion_1.5L,ppo,78,31.2,alpha,front,-0.3871344327926636 +illusion_1.5L,ppo,78,31.2,alpha,upper,-0.4783506393432617 +illusion_1.5L,ppo,78,31.2,alpha,lower,-0.31908702850341797 +illusion_1.5L,ppo,79,31.6,alpha,front,-0.30846160650253296 +illusion_1.5L,ppo,79,31.6,alpha,upper,-0.5997393131256104 +illusion_1.5L,ppo,79,31.6,alpha,lower,-0.4716677665710449 +illusion_1.5L,ppo,80,32.0,alpha,front,-0.44613730907440186 +illusion_1.5L,ppo,80,32.0,alpha,upper,-0.5692024230957031 +illusion_1.5L,ppo,80,32.0,alpha,lower,-0.5208282470703125 +illusion_1.5L,ppo,81,32.4,alpha,front,-0.5550704598426819 +illusion_1.5L,ppo,81,32.4,alpha,upper,-0.5627427101135254 +illusion_1.5L,ppo,81,32.4,alpha,lower,-0.5513262748718262 +illusion_1.5L,ppo,82,32.8,alpha,front,-0.5299487113952637 +illusion_1.5L,ppo,82,32.8,alpha,upper,-0.5882861614227295 +illusion_1.5L,ppo,82,32.8,alpha,lower,-0.5578370094299316 +illusion_1.5L,ppo,83,33.2,alpha,front,-0.3774806261062622 +illusion_1.5L,ppo,83,33.2,alpha,upper,-0.49068498611450195 +illusion_1.5L,ppo,83,33.2,alpha,lower,-0.45653533935546875 +illusion_1.5L,ppo,84,33.6,alpha,front,-0.15761038661003113 +illusion_1.5L,ppo,84,33.6,alpha,upper,-0.5425136089324951 +illusion_1.5L,ppo,84,33.6,alpha,lower,-0.44765567779541016 +illusion_1.5L,ppo,85,34.0,alpha,front,0.0960216224193573 +illusion_1.5L,ppo,85,34.0,alpha,upper,-0.6585156917572021 +illusion_1.5L,ppo,85,34.0,alpha,lower,-0.4223597049713135 +illusion_1.5L,ppo,86,34.4,alpha,front,0.24537774920463562 +illusion_1.5L,ppo,86,34.4,alpha,upper,-0.6727379560470581 +illusion_1.5L,ppo,86,34.4,alpha,lower,-0.2784099578857422 +illusion_1.5L,ppo,87,34.8,alpha,front,0.3269885182380676 +illusion_1.5L,ppo,87,34.8,alpha,upper,-0.6032489538192749 +illusion_1.5L,ppo,87,34.8,alpha,lower,-0.07158994674682617 +illusion_1.5L,ppo,88,35.2,alpha,front,0.29640984535217285 +illusion_1.5L,ppo,88,35.2,alpha,upper,-0.38654661178588867 +illusion_1.5L,ppo,88,35.2,alpha,lower,0.17549395561218262 +illusion_1.5L,ppo,89,35.6,alpha,front,0.27667707204818726 +illusion_1.5L,ppo,89,35.6,alpha,upper,-0.08317148685455322 +illusion_1.5L,ppo,89,35.6,alpha,lower,0.35111379623413086 +illusion_1.5L,ppo,90,36.0,alpha,front,0.3929006457328797 +illusion_1.5L,ppo,90,36.0,alpha,upper,0.12947463989257812 +illusion_1.5L,ppo,90,36.0,alpha,lower,0.3518906831741333 +illusion_1.5L,ppo,91,36.4,alpha,front,0.5805317163467407 +illusion_1.5L,ppo,91,36.4,alpha,upper,0.30022430419921875 +illusion_1.5L,ppo,91,36.4,alpha,lower,0.391232967376709 +illusion_1.5L,ppo,92,36.8,alpha,front,0.7490320205688477 +illusion_1.5L,ppo,92,36.8,alpha,upper,0.37375354766845703 +illusion_1.5L,ppo,92,36.8,alpha,lower,0.44106578826904297 +illusion_1.5L,ppo,93,37.2,alpha,front,0.8190717101097106 +illusion_1.5L,ppo,93,37.2,alpha,upper,0.3784041404724121 +illusion_1.5L,ppo,93,37.2,alpha,lower,0.43974995613098145 +illusion_1.5L,ppo,94,37.6,alpha,front,0.7726075649261475 +illusion_1.5L,ppo,94,37.6,alpha,upper,0.5376229286193848 +illusion_1.5L,ppo,94,37.6,alpha,lower,0.5313003063201904 +illusion_1.5L,ppo,95,38.0,alpha,front,0.7351816892623901 +illusion_1.5L,ppo,95,38.0,alpha,upper,0.6772255897521973 +illusion_1.5L,ppo,95,38.0,alpha,lower,0.5614299774169922 +illusion_1.5L,ppo,96,38.4,alpha,front,0.5329715013504028 +illusion_1.5L,ppo,96,38.4,alpha,upper,0.8462245464324952 +illusion_1.5L,ppo,96,38.4,alpha,lower,0.5879565477371216 +illusion_1.5L,ppo,97,38.8,alpha,front,0.04482303559780121 +illusion_1.5L,ppo,97,38.8,alpha,upper,0.9426617622375488 +illusion_1.5L,ppo,97,38.8,alpha,lower,0.593506932258606 +illusion_1.5L,ppo,98,39.2,alpha,front,-0.25553566217422485 +illusion_1.5L,ppo,98,39.2,alpha,upper,0.7063870429992676 +illusion_1.5L,ppo,98,39.2,alpha,lower,0.4212859869003296 +illusion_1.5L,ppo,99,39.6,alpha,front,-0.07039481401443481 +illusion_1.5L,ppo,99,39.6,alpha,upper,0.34106969833374023 +illusion_1.5L,ppo,99,39.6,alpha,lower,0.22627806663513186 +illusion_1.5L,ppo,100,40.0,alpha,front,0.2613828778266907 +illusion_1.5L,ppo,100,40.0,alpha,upper,0.08504581451416016 +illusion_1.5L,ppo,100,40.0,alpha,lower,0.09466552734375 +illusion_1.5L,ppo,101,40.4,alpha,front,0.16930946707725525 +illusion_1.5L,ppo,101,40.4,alpha,upper,-0.10202836990356445 +illusion_1.5L,ppo,101,40.4,alpha,lower,-0.06347322463989258 +illusion_1.5L,ppo,102,40.8,alpha,front,-0.24202993512153625 +illusion_1.5L,ppo,102,40.8,alpha,upper,-0.24400293827056885 +illusion_1.5L,ppo,102,40.8,alpha,lower,-0.2213120460510254 +illusion_1.5L,ppo,103,41.2,alpha,front,-0.3825426697731018 +illusion_1.5L,ppo,103,41.2,alpha,upper,-0.3707880973815918 +illusion_1.5L,ppo,103,41.2,alpha,lower,-0.3561573028564453 +illusion_1.5L,ppo,104,41.6,alpha,front,-0.34452617168426514 +illusion_1.5L,ppo,104,41.6,alpha,upper,-0.396820068359375 +illusion_1.5L,ppo,104,41.6,alpha,lower,-0.40658569335937494 +illusion_1.5L,ppo,105,42.0,alpha,front,-0.3748897910118103 +illusion_1.5L,ppo,105,42.0,alpha,upper,-0.34461426734924316 +illusion_1.5L,ppo,105,42.0,alpha,lower,-0.4428558349609375 +illusion_1.5L,ppo,106,42.4,alpha,front,-0.3842843770980835 +illusion_1.5L,ppo,106,42.4,alpha,upper,-0.5114034414291382 +illusion_1.5L,ppo,106,42.4,alpha,lower,-0.7096214294433594 +illusion_1.5L,ppo,107,42.8,alpha,front,-0.43002647161483765 +illusion_1.5L,ppo,107,42.8,alpha,upper,-0.606102466583252 +illusion_1.5L,ppo,107,42.8,alpha,lower,-0.9155197143554688 +illusion_1.5L,ppo,108,43.2,alpha,front,-0.495972216129303 +illusion_1.5L,ppo,108,43.2,alpha,upper,-0.4178647994995117 +illusion_1.5L,ppo,108,43.2,alpha,lower,-0.8497025966644287 +illusion_1.5L,ppo,109,43.6,alpha,front,-0.2989122271537781 +illusion_1.5L,ppo,109,43.6,alpha,upper,-0.359851598739624 +illusion_1.5L,ppo,109,43.6,alpha,lower,-0.7879695892333985 +illusion_1.5L,ppo,110,44.0,alpha,front,0.11555960774421692 +illusion_1.5L,ppo,110,44.0,alpha,upper,-0.5046737194061279 +illusion_1.5L,ppo,110,44.0,alpha,lower,-0.7732689380645752 +illusion_1.5L,ppo,111,44.4,alpha,front,0.4351784586906433 +illusion_1.5L,ppo,111,44.4,alpha,upper,-0.6600298881530762 +illusion_1.5L,ppo,111,44.4,alpha,lower,-0.7536778450012207 +illusion_1.5L,ppo,112,44.8,alpha,front,0.34915632009506226 +illusion_1.5L,ppo,112,44.8,alpha,upper,-0.5036499500274658 +illusion_1.5L,ppo,112,44.8,alpha,lower,-0.5722010135650635 +illusion_1.5L,ppo,113,45.2,alpha,front,-0.024765163660049435 +illusion_1.5L,ppo,113,45.2,alpha,upper,0.00749659538269043 +illusion_1.5L,ppo,113,45.2,alpha,lower,-0.1753697395324707 +illusion_1.5L,ppo,114,45.6,alpha,front,0.1120564341545105 +illusion_1.5L,ppo,114,45.6,alpha,upper,0.25406837463378906 +illusion_1.5L,ppo,114,45.6,alpha,lower,0.05282783508300782 +illusion_1.5L,ppo,115,46.0,alpha,front,0.5695957541465759 +illusion_1.5L,ppo,115,46.0,alpha,upper,0.21968889236450195 +illusion_1.5L,ppo,115,46.0,alpha,lower,0.12732577323913574 +illusion_1.5L,ppo,116,46.4,alpha,front,0.6295186281204224 +illusion_1.5L,ppo,116,46.4,alpha,upper,0.3640403747558594 +illusion_1.5L,ppo,116,46.4,alpha,lower,0.35658538341522217 +illusion_1.5L,ppo,117,46.8,alpha,front,0.5738028287887573 +illusion_1.5L,ppo,117,46.8,alpha,upper,0.34271907806396484 +illusion_1.5L,ppo,117,46.8,alpha,lower,0.40876460075378424 +illusion_1.5L,ppo,118,47.2,alpha,front,0.7053308486938477 +illusion_1.5L,ppo,118,47.2,alpha,upper,0.3263545036315918 +illusion_1.5L,ppo,118,47.2,alpha,lower,0.4000281095504761 +illusion_1.5L,ppo,119,47.6,alpha,front,0.7529107332229614 +illusion_1.5L,ppo,119,47.6,alpha,upper,0.667858362197876 +illusion_1.5L,ppo,119,47.6,alpha,lower,0.62017822265625 +illusion_1.5L,ppo,120,48.0,alpha,front,0.8403149843215941 +illusion_1.5L,ppo,120,48.0,alpha,upper,0.8457603454589844 +illusion_1.5L,ppo,120,48.0,alpha,lower,0.6696357727050781 +illusion_1.5L,ppo,121,48.4,alpha,front,0.8133808970451356 +illusion_1.5L,ppo,121,48.4,alpha,upper,0.7781431674957275 +illusion_1.5L,ppo,121,48.4,alpha,lower,0.5271791219711304 +illusion_1.5L,ppo,122,48.8,alpha,front,0.30769819021224976 +illusion_1.5L,ppo,122,48.8,alpha,upper,0.8244540691375732 +illusion_1.5L,ppo,122,48.8,alpha,lower,0.58082115650177 +illusion_1.5L,ppo,123,49.2,alpha,front,-0.07454654574394226 +illusion_1.5L,ppo,123,49.2,alpha,upper,0.6907510757446289 +illusion_1.5L,ppo,123,49.2,alpha,lower,0.6214900016784668 +illusion_1.5L,ppo,124,49.6,alpha,front,-0.24704864621162415 +illusion_1.5L,ppo,124,49.6,alpha,upper,0.4172215461730957 +illusion_1.5L,ppo,124,49.6,alpha,lower,0.563933253288269 +illusion_1.5L,ppo,125,50.0,alpha,front,-0.21898970007896423 +illusion_1.5L,ppo,125,50.0,alpha,upper,0.16466236114501953 +illusion_1.5L,ppo,125,50.0,alpha,lower,0.3978079557418823 +illusion_1.5L,ppo,126,50.4,alpha,front,0.23907341063022614 +illusion_1.5L,ppo,126,50.4,alpha,upper,-0.2260134220123291 +illusion_1.5L,ppo,126,50.4,alpha,lower,-0.016198158264160156 +illusion_1.5L,ppo,127,50.8,alpha,front,0.27476954460144043 +illusion_1.5L,ppo,127,50.8,alpha,upper,-0.3239554166793823 +illusion_1.5L,ppo,127,50.8,alpha,lower,-0.2193644046783447 +illusion_1.5L,ppo,128,51.2,alpha,front,-0.30019330978393555 +illusion_1.5L,ppo,128,51.2,alpha,upper,-0.2026190757751465 +illusion_1.5L,ppo,128,51.2,alpha,lower,-0.22182226181030273 +illusion_1.5L,ppo,129,51.6,alpha,front,-0.4401177763938903 +illusion_1.5L,ppo,129,51.6,alpha,upper,-0.3367297649383545 +illusion_1.5L,ppo,129,51.6,alpha,lower,-0.384906530380249 +illusion_1.5L,ppo,130,52.0,alpha,front,-0.31345057487487793 +illusion_1.5L,ppo,130,52.0,alpha,upper,-0.2904486656188965 +illusion_1.5L,ppo,130,52.0,alpha,lower,-0.3621995449066162 +illusion_1.5L,ppo,131,52.4,alpha,front,-0.3597254157066345 +illusion_1.5L,ppo,131,52.4,alpha,upper,-0.18701386451721191 +illusion_1.5L,ppo,131,52.4,alpha,lower,-0.3131978511810303 +illusion_1.5L,ppo,132,52.8,alpha,front,-0.39797002077102667 +illusion_1.5L,ppo,132,52.8,alpha,upper,-0.45264256000518804 +illusion_1.5L,ppo,132,52.8,alpha,lower,-0.5570034980773926 +illusion_1.5L,ppo,133,53.2,alpha,front,-0.5024641156196594 +illusion_1.5L,ppo,133,53.2,alpha,upper,-0.6091446876525879 +illusion_1.5L,ppo,133,53.2,alpha,lower,-0.6687488555908203 +illusion_1.5L,ppo,134,53.6,alpha,front,-0.4405951499938965 +illusion_1.5L,ppo,134,53.6,alpha,upper,-0.4964286088943482 +illusion_1.5L,ppo,134,53.6,alpha,lower,-0.5447325706481934 +illusion_1.5L,ppo,135,54.0,alpha,front,0.002093389630317688 +illusion_1.5L,ppo,135,54.0,alpha,upper,-0.45953464508056635 +illusion_1.5L,ppo,135,54.0,alpha,lower,-0.4375536441802979 +illusion_1.5L,ppo,136,54.4,alpha,front,0.3529255986213684 +illusion_1.5L,ppo,136,54.4,alpha,upper,-0.4269049167633056 +illusion_1.5L,ppo,136,54.4,alpha,lower,-0.294095516204834 +illusion_1.5L,ppo,137,54.8,alpha,front,0.590357780456543 +illusion_1.5L,ppo,137,54.8,alpha,upper,-0.5545960664749146 +illusion_1.5L,ppo,137,54.8,alpha,lower,-0.23256254196166995 +illusion_1.5L,ppo,138,55.2,alpha,front,0.42903953790664673 +illusion_1.5L,ppo,138,55.2,alpha,upper,-0.4140275716781616 +illusion_1.5L,ppo,138,55.2,alpha,lower,-0.04008841514587402 +illusion_1.5L,ppo,139,55.6,alpha,front,-0.06610128283500671 +illusion_1.5L,ppo,139,55.6,alpha,upper,0.14504241943359375 +illusion_1.5L,ppo,139,55.6,alpha,lower,0.3065558671951294 +illusion_1.5L,ppo,140,56.0,alpha,front,0.15120914578437805 +illusion_1.5L,ppo,140,56.0,alpha,upper,0.3360295295715332 +illusion_1.5L,ppo,140,56.0,alpha,lower,0.3719627857208252 +illusion_1.5L,ppo,141,56.4,alpha,front,0.6718391180038452 +illusion_1.5L,ppo,141,56.4,alpha,upper,0.35720205307006836 +illusion_1.5L,ppo,141,56.4,alpha,lower,0.3916761875152588 +illusion_1.5L,ppo,142,56.8,alpha,front,0.6494758129119873 +illusion_1.5L,ppo,142,56.8,alpha,upper,0.41426014900207525 +illusion_1.5L,ppo,142,56.8,alpha,lower,0.4337832927703857 +illusion_1.5L,ppo,143,57.2,alpha,front,0.5511044859886169 +illusion_1.5L,ppo,143,57.2,alpha,upper,0.20145273208618167 +illusion_1.5L,ppo,143,57.2,alpha,lower,0.22509312629699707 +illusion_1.5L,ppo,144,57.6,alpha,front,0.527989387512207 +illusion_1.5L,ppo,144,57.6,alpha,upper,0.1864914894104004 +illusion_1.5L,ppo,144,57.6,alpha,lower,0.16095566749572754 +illusion_1.5L,ppo,145,58.0,alpha,front,0.5344871282577515 +illusion_1.5L,ppo,145,58.0,alpha,upper,0.5336933135986328 +illusion_1.5L,ppo,145,58.0,alpha,lower,0.3982203006744385 +illusion_1.5L,ppo,146,58.4,alpha,front,0.6421376466751099 +illusion_1.5L,ppo,146,58.4,alpha,upper,0.6638035774230957 +illusion_1.5L,ppo,146,58.4,alpha,lower,0.45273661613464355 +illusion_1.5L,ppo,147,58.8,alpha,front,0.5218862891197205 +illusion_1.5L,ppo,147,58.8,alpha,upper,0.5218031406402588 +illusion_1.5L,ppo,147,58.8,alpha,lower,0.30303192138671875 +illusion_1.5L,ppo,148,59.2,alpha,front,0.004356518387794495 +illusion_1.5L,ppo,148,59.2,alpha,upper,0.2860836982727051 +illusion_1.5L,ppo,148,59.2,alpha,lower,0.16797256469726562 +illusion_1.5L,ppo,149,59.6,alpha,front,-0.4331056475639344 +illusion_1.5L,ppo,149,59.6,alpha,upper,0.02451348304748535 +illusion_1.5L,ppo,149,59.6,alpha,lower,0.13867509365081787 +illusion_1.5L,ppo,150,60.0,alpha,front,-0.6259446740150452 +illusion_1.5L,ppo,150,60.0,alpha,upper,-0.2151612043380737 +illusion_1.5L,ppo,150,60.0,alpha,lower,0.1406165361404419 +illusion_1.5L,ppo,151,60.4,alpha,front,-0.3733225464820862 +illusion_1.5L,ppo,151,60.4,alpha,upper,-0.4935187101364136 +illusion_1.5L,ppo,151,60.4,alpha,lower,-0.06645727157592773 +illusion_1.5L,ppo,152,60.8,alpha,front,0.090442955493927 +illusion_1.5L,ppo,152,60.8,alpha,upper,-0.6841336488723755 +illusion_1.5L,ppo,152,60.8,alpha,lower,-0.4237594604492188 +illusion_1.5L,ppo,153,61.2,alpha,front,-0.05922523140907287 +illusion_1.5L,ppo,153,61.2,alpha,upper,-0.6404846906661987 +illusion_1.5L,ppo,153,61.2,alpha,lower,-0.6522645950317383 +illusion_1.5L,ppo,154,61.6,alpha,front,-0.5333813428878784 +illusion_1.5L,ppo,154,61.6,alpha,upper,-0.5418010950088501 +illusion_1.5L,ppo,154,61.6,alpha,lower,-0.7723398208618164 +illusion_1.5L,ppo,155,62.0,alpha,front,-0.610252857208252 +illusion_1.5L,ppo,155,62.0,alpha,upper,-0.396592378616333 +illusion_1.5L,ppo,155,62.0,alpha,lower,-0.7580170631408691 +illusion_1.5L,ppo,156,62.4,alpha,front,-0.40677332878112793 +illusion_1.5L,ppo,156,62.4,alpha,upper,-0.14885997772216797 +illusion_1.5L,ppo,156,62.4,alpha,lower,-0.5879001617431641 +illusion_1.5L,ppo,157,62.8,alpha,front,-0.23550471663475037 +illusion_1.5L,ppo,157,62.8,alpha,upper,-0.09097552299499512 +illusion_1.5L,ppo,157,62.8,alpha,lower,-0.5114362239837646 +illusion_1.5L,ppo,158,63.2,alpha,front,-0.21492812037467957 +illusion_1.5L,ppo,158,63.2,alpha,upper,-0.28167641162872314 +illusion_1.5L,ppo,158,63.2,alpha,lower,-0.5662481784820557 +illusion_1.5L,ppo,159,63.6,alpha,front,-0.24283480644226071 +illusion_1.5L,ppo,159,63.6,alpha,upper,-0.4314994812011719 +illusion_1.5L,ppo,159,63.6,alpha,lower,-0.5396790504455566 +illusion_1.5L,ppo,160,64.0,alpha,front,0.051162958145141595 +illusion_1.5L,ppo,160,64.0,alpha,upper,-0.38457298278808594 +illusion_1.5L,ppo,160,64.0,alpha,lower,-0.3071880340576172 +illusion_1.5L,ppo,161,64.4,alpha,front,0.5206423997879028 +illusion_1.5L,ppo,161,64.4,alpha,upper,-0.2183835506439209 +illusion_1.5L,ppo,161,64.4,alpha,lower,0.04259169101715088 +illusion_1.5L,ppo,162,64.8,alpha,front,0.7775037884712219 +illusion_1.5L,ppo,162,64.8,alpha,upper,-0.15418648719787598 +illusion_1.5L,ppo,162,64.8,alpha,lower,0.3076817989349365 +illusion_1.5L,ppo,163,65.2,alpha,front,0.5658113956451416 +illusion_1.5L,ppo,163,65.2,alpha,upper,0.02744150161743164 +illusion_1.5L,ppo,163,65.2,alpha,lower,0.5341410636901855 +illusion_1.5L,ppo,164,65.6,alpha,front,0.2924451231956482 +illusion_1.5L,ppo,164,65.6,alpha,upper,0.3191041946411133 +illusion_1.5L,ppo,164,65.6,alpha,lower,0.6642625331878662 +illusion_1.5L,ppo,165,66.0,alpha,front,0.5502903461456299 +illusion_1.5L,ppo,165,66.0,alpha,upper,0.45333528518676763 +illusion_1.5L,ppo,165,66.0,alpha,lower,0.6691427230834961 +illusion_1.5L,ppo,166,66.4,alpha,front,0.8257681727409363 +illusion_1.5L,ppo,166,66.4,alpha,upper,0.6522965431213379 +illusion_1.5L,ppo,166,66.4,alpha,lower,0.7597708702087402 +illusion_1.5L,ppo,167,66.8,alpha,front,0.8971048593521118 +illusion_1.5L,ppo,167,66.8,alpha,upper,0.7403702735900879 +illusion_1.5L,ppo,167,66.8,alpha,lower,0.7249062061309814 +illusion_1.5L,ppo,168,67.2,alpha,front,0.9172288775444031 +illusion_1.5L,ppo,168,67.2,alpha,upper,0.6029744148254395 +illusion_1.5L,ppo,168,67.2,alpha,lower,0.46418964862823486 +illusion_1.5L,ppo,169,67.6,alpha,front,0.7285356521606445 +illusion_1.5L,ppo,169,67.6,alpha,upper,0.6836614608764648 +illusion_1.5L,ppo,169,67.6,alpha,lower,0.4032920598983765 +illusion_1.5L,ppo,170,68.0,alpha,front,0.47199100255966187 +illusion_1.5L,ppo,170,68.0,alpha,upper,0.830693483352661 +illusion_1.5L,ppo,170,68.0,alpha,lower,0.4695414304733276 +illusion_1.5L,ppo,171,68.4,alpha,front,0.3582858443260193 +illusion_1.5L,ppo,171,68.4,alpha,upper,0.7568554878234863 +illusion_1.5L,ppo,171,68.4,alpha,lower,0.42982769012451166 +illusion_1.5L,ppo,172,68.8,alpha,front,-0.05641785264015197 +illusion_1.5L,ppo,172,68.8,alpha,upper,0.6140584945678711 +illusion_1.5L,ppo,172,68.8,alpha,lower,0.44453227519989014 +illusion_1.5L,ppo,173,69.2,alpha,front,-0.5334343910217285 +illusion_1.5L,ppo,173,69.2,alpha,upper,0.2763667106628418 +illusion_1.5L,ppo,173,69.2,alpha,lower,0.3496500253677368 +illusion_1.5L,ppo,174,69.6,alpha,front,-0.3852025270462036 +illusion_1.5L,ppo,174,69.6,alpha,upper,-0.2152373790740967 +illusion_1.5L,ppo,174,69.6,alpha,lower,0.03442049026489258 +illusion_1.5L,ppo,175,70.0,alpha,front,0.02359236776828766 +illusion_1.5L,ppo,175,70.0,alpha,upper,-0.5356398820877075 +illusion_1.5L,ppo,175,70.0,alpha,lower,-0.26194262504577637 +illusion_1.5L,ppo,176,70.4,alpha,front,-0.09280821681022644 +illusion_1.5L,ppo,176,70.4,alpha,upper,-0.5720516443252563 +illusion_1.5L,ppo,176,70.4,alpha,lower,-0.4085671901702881 +illusion_1.5L,ppo,177,70.8,alpha,front,-0.5012145042419434 +illusion_1.5L,ppo,177,70.8,alpha,upper,-0.5919535160064697 +illusion_1.5L,ppo,177,70.8,alpha,lower,-0.5678048133850098 +illusion_1.5L,ppo,178,71.2,alpha,front,-0.6158143281936646 +illusion_1.5L,ppo,178,71.2,alpha,upper,-0.6144797801971436 +illusion_1.5L,ppo,178,71.2,alpha,lower,-0.6947684288024902 +illusion_1.5L,ppo,179,71.6,alpha,front,-0.6061066389083862 +illusion_1.5L,ppo,179,71.6,alpha,upper,-0.4213683605194092 +illusion_1.5L,ppo,179,71.6,alpha,lower,-0.6160430908203125 +illusion_1.5L,ppo,180,72.0,alpha,front,-0.5444675087928772 +illusion_1.5L,ppo,180,72.0,alpha,upper,-0.2682669162750244 +illusion_1.5L,ppo,180,72.0,alpha,lower,-0.5585815906524658 +illusion_1.5L,ppo,181,72.4,alpha,front,-0.37872183322906494 +illusion_1.5L,ppo,181,72.4,alpha,upper,-0.47728538513183594 +illusion_1.5L,ppo,181,72.4,alpha,lower,-0.7522904872894287 +illusion_1.5L,ppo,182,72.8,alpha,front,-0.24328696727752686 +illusion_1.5L,ppo,182,72.8,alpha,upper,-0.653274416923523 +illusion_1.5L,ppo,182,72.8,alpha,lower,-0.8678727149963379 +illusion_1.5L,ppo,183,73.2,alpha,front,-0.08994758129119873 +illusion_1.5L,ppo,183,73.2,alpha,upper,-0.5177091360092163 +illusion_1.5L,ppo,183,73.2,alpha,lower,-0.7097249031066895 +illusion_1.5L,ppo,184,73.6,alpha,front,0.39926058053970337 +illusion_1.5L,ppo,184,73.6,alpha,upper,-0.49806666374206543 +illusion_1.5L,ppo,184,73.6,alpha,lower,-0.621248722076416 +illusion_1.5L,ppo,185,74.0,alpha,front,0.47314298152923584 +illusion_1.5L,ppo,185,74.0,alpha,upper,-0.31803977489471436 +illusion_1.5L,ppo,185,74.0,alpha,lower,-0.4224832057952881 +illusion_1.5L,ppo,186,74.4,alpha,front,0.034772202372550964 +illusion_1.5L,ppo,186,74.4,alpha,upper,0.03203725814819336 +illusion_1.5L,ppo,186,74.4,alpha,lower,-0.11438608169555664 +illusion_1.5L,ppo,187,74.8,alpha,front,0.08651268482208252 +illusion_1.5L,ppo,187,74.8,alpha,upper,0.02940225601196289 +illusion_1.5L,ppo,187,74.8,alpha,lower,-0.048126220703125 +illusion_1.5L,ppo,188,75.2,alpha,front,0.4474874138832093 +illusion_1.5L,ppo,188,75.2,alpha,upper,0.12048053741455077 +illusion_1.5L,ppo,188,75.2,alpha,lower,0.13511812686920166 +illusion_1.5L,ppo,189,75.6,alpha,front,0.5495847463607788 +illusion_1.5L,ppo,189,75.6,alpha,upper,0.4013371467590332 +illusion_1.5L,ppo,189,75.6,alpha,lower,0.4525173902511597 +illusion_1.5L,ppo,190,76.0,alpha,front,0.644020676612854 +illusion_1.5L,ppo,190,76.0,alpha,upper,0.32102012634277344 +illusion_1.5L,ppo,190,76.0,alpha,lower,0.42659687995910645 +illusion_1.5L,ppo,191,76.4,alpha,front,0.7211050987243652 +illusion_1.5L,ppo,191,76.4,alpha,upper,0.29255008697509766 +illusion_1.5L,ppo,191,76.4,alpha,lower,0.38819408416748047 +illusion_1.5L,ppo,192,76.8,alpha,front,0.7003135681152344 +illusion_1.5L,ppo,192,76.8,alpha,upper,0.5608820915222168 +illusion_1.5L,ppo,192,76.8,alpha,lower,0.5556836128234863 +illusion_1.5L,ppo,193,77.2,alpha,front,0.8220662474632264 +illusion_1.5L,ppo,193,77.2,alpha,upper,0.7130565643310547 +illusion_1.5L,ppo,193,77.2,alpha,lower,0.5988154411315918 +illusion_1.5L,ppo,194,77.6,alpha,front,0.8813800811767578 +illusion_1.5L,ppo,194,77.6,alpha,upper,0.7623522281646729 +illusion_1.5L,ppo,194,77.6,alpha,lower,0.5455498695373535 +illusion_1.5L,ppo,195,78.0,alpha,front,0.5424689054489136 +illusion_1.5L,ppo,195,78.0,alpha,upper,0.7758960723876953 +illusion_1.5L,ppo,195,78.0,alpha,lower,0.4964416027069092 +illusion_1.5L,ppo,196,78.4,alpha,front,-0.05591771006584167 +illusion_1.5L,ppo,196,78.4,alpha,upper,0.7309656143188477 +illusion_1.5L,ppo,196,78.4,alpha,lower,0.5046049356460571 +illusion_1.5L,ppo,197,78.8,alpha,front,-0.40067797899246216 +illusion_1.5L,ppo,197,78.8,alpha,upper,0.48148584365844727 +illusion_1.5L,ppo,197,78.8,alpha,lower,0.4758538007736206 +illusion_1.5L,ppo,198,79.2,alpha,front,-0.2912231683731079 +illusion_1.5L,ppo,198,79.2,alpha,upper,0.040650367736816406 +illusion_1.5L,ppo,198,79.2,alpha,lower,0.29601502418518066 +illusion_1.5L,ppo,199,79.6,alpha,front,0.19549459218978882 +illusion_1.5L,ppo,199,79.6,alpha,upper,-0.30635595321655273 +illusion_1.5L,ppo,199,79.6,alpha,lower,-0.008536815643310547 +illusion_1.5L,ppo,200,80.0,alpha,front,0.19653746485710144 +illusion_1.5L,ppo,200,80.0,alpha,upper,-0.30629992485046387 +illusion_1.5L,ppo,200,80.0,alpha,lower,-0.17561769485473633 +illusion_1.5L,ppo,201,80.4,alpha,front,-0.26302236318588257 +illusion_1.5L,ppo,201,80.4,alpha,upper,-0.31938815116882324 +illusion_1.5L,ppo,201,80.4,alpha,lower,-0.33417224884033203 +illusion_1.5L,ppo,202,80.8,alpha,front,-0.4711184501647949 +illusion_1.5L,ppo,202,80.8,alpha,upper,-0.3959686756134033 +illusion_1.5L,ppo,202,80.8,alpha,lower,-0.4766273498535156 +illusion_1.5L,ppo,203,81.2,alpha,front,-0.4193136096000672 +illusion_1.5L,ppo,203,81.2,alpha,upper,-0.2974666357040405 +illusion_1.5L,ppo,203,81.2,alpha,lower,-0.4184670448303222 +illusion_1.5L,ppo,204,81.6,alpha,front,-0.38064706325531006 +illusion_1.5L,ppo,204,81.6,alpha,upper,-0.26517367362976074 +illusion_1.5L,ppo,204,81.6,alpha,lower,-0.4079163074493408 +illusion_1.5L,ppo,205,82.0,alpha,front,-0.4211268424987793 +illusion_1.5L,ppo,205,82.0,alpha,upper,-0.43567049503326416 +illusion_1.5L,ppo,205,82.0,alpha,lower,-0.5652904510498047 +illusion_1.5L,ppo,206,82.4,alpha,front,-0.498403012752533 +illusion_1.5L,ppo,206,82.4,alpha,upper,-0.5951869487762451 +illusion_1.5L,ppo,206,82.4,alpha,lower,-0.7110533714294434 +illusion_1.5L,ppo,207,82.8,alpha,front,-0.40794074535369873 +illusion_1.5L,ppo,207,82.8,alpha,upper,-0.5627063512802124 +illusion_1.5L,ppo,207,82.8,alpha,lower,-0.6694984436035156 +illusion_1.5L,ppo,208,83.2,alpha,front,0.0759427547454834 +illusion_1.5L,ppo,208,83.2,alpha,upper,-0.5653985738754272 +illusion_1.5L,ppo,208,83.2,alpha,lower,-0.5721206665039062 +illusion_1.5L,ppo,209,83.6,alpha,front,0.5450265407562256 +illusion_1.5L,ppo,209,83.6,alpha,upper,-0.6713688373565674 +illusion_1.5L,ppo,209,83.6,alpha,lower,-0.5128226280212402 +illusion_1.5L,ppo,210,84.0,alpha,front,0.2515771687030792 +illusion_1.5L,ppo,210,84.0,alpha,upper,-0.4590737819671631 +illusion_1.5L,ppo,210,84.0,alpha,lower,-0.3290705680847168 +illusion_1.5L,ppo,211,84.4,alpha,front,-0.18740859627723694 +illusion_1.5L,ppo,211,84.4,alpha,upper,-0.11842942237854004 +illusion_1.5L,ppo,211,84.4,alpha,lower,-0.17292118072509766 +illusion_1.5L,ppo,212,84.8,alpha,front,0.0996425598859787 +illusion_1.5L,ppo,212,84.8,alpha,upper,-0.0391080379486084 +illusion_1.5L,ppo,212,84.8,alpha,lower,-0.15716314315795898 +illusion_1.5L,ppo,213,85.2,alpha,front,0.45432871580123907 +illusion_1.5L,ppo,213,85.2,alpha,upper,0.2371721267700195 +illusion_1.5L,ppo,213,85.2,alpha,lower,0.11232638359069826 +illusion_1.5L,ppo,214,85.6,alpha,front,0.5313880443572998 +illusion_1.5L,ppo,214,85.6,alpha,upper,0.4160828590393066 +illusion_1.5L,ppo,214,85.6,alpha,lower,0.32664334774017334 +illusion_1.5L,ppo,215,86.0,alpha,front,0.6203394532203674 +illusion_1.5L,ppo,215,86.0,alpha,upper,0.1369771957397461 +illusion_1.5L,ppo,215,86.0,alpha,lower,0.14585137367248535 +illusion_1.5L,ppo,216,86.4,alpha,front,0.5581793785095215 +illusion_1.5L,ppo,216,86.4,alpha,upper,0.21223545074462893 +illusion_1.5L,ppo,216,86.4,alpha,lower,0.19975006580352783 +illusion_1.5L,ppo,217,86.8,alpha,front,0.5149763822555542 +illusion_1.5L,ppo,217,86.8,alpha,upper,0.6444694995880127 +illusion_1.5L,ppo,217,86.8,alpha,lower,0.4893680810928344 +illusion_1.5L,ppo,218,87.2,alpha,front,0.7430788278579712 +illusion_1.5L,ppo,218,87.2,alpha,upper,0.8524637222290038 +illusion_1.5L,ppo,218,87.2,alpha,lower,0.5732190608978271 +illusion_1.5L,ppo,219,87.6,alpha,front,0.7613867521286011 +illusion_1.5L,ppo,219,87.6,alpha,upper,0.8973259925842285 +illusion_1.5L,ppo,219,87.6,alpha,lower,0.5869474411010742 +illusion_1.5L,ppo,220,88.0,alpha,front,0.426206111907959 +illusion_1.5L,ppo,220,88.0,alpha,upper,0.7555127143859863 +illusion_1.5L,ppo,220,88.0,alpha,lower,0.5666590929031372 +illusion_1.5L,ppo,221,88.4,alpha,front,-0.043631404638290405 +illusion_1.5L,ppo,221,88.4,alpha,upper,0.5284085273742676 +illusion_1.5L,ppo,221,88.4,alpha,lower,0.545351505279541 +illusion_1.5L,ppo,222,88.8,alpha,front,-0.24943822622299194 +illusion_1.5L,ppo,222,88.8,alpha,upper,0.3939299583435058 +illusion_1.5L,ppo,222,88.8,alpha,lower,0.5549486875534058 +illusion_1.5L,ppo,223,89.2,alpha,front,-0.21215930581092834 +illusion_1.5L,ppo,223,89.2,alpha,upper,0.2907981872558594 +illusion_1.5L,ppo,223,89.2,alpha,lower,0.48869049549102783 +illusion_1.5L,ppo,224,89.6,alpha,front,0.23622001707553864 +illusion_1.5L,ppo,224,89.6,alpha,upper,0.0024404525756835938 +illusion_1.5L,ppo,224,89.6,alpha,lower,0.19103288650512695 +illusion_1.5L,ppo,225,90.0,alpha,front,0.38165807723999023 +illusion_1.5L,ppo,225,90.0,alpha,upper,-0.15162229537963867 +illusion_1.5L,ppo,225,90.0,alpha,lower,-0.05199861526489258 +illusion_1.5L,ppo,226,90.4,alpha,front,-0.1293221414089203 +illusion_1.5L,ppo,226,90.4,alpha,upper,-0.1549438238143921 +illusion_1.5L,ppo,226,90.4,alpha,lower,-0.16643524169921875 +illusion_1.5L,ppo,227,90.8,alpha,front,-0.4127517938613891 +illusion_1.5L,ppo,227,90.8,alpha,upper,-0.2416430711746216 +illusion_1.5L,ppo,227,90.8,alpha,lower,-0.29650402069091797 +illusion_1.5L,ppo,228,91.2,alpha,front,-0.32197123765945435 +illusion_1.5L,ppo,228,91.2,alpha,upper,-0.24349188804626468 +illusion_1.5L,ppo,228,91.2,alpha,lower,-0.30702877044677734 +illusion_1.5L,ppo,229,91.6,alpha,front,-0.2570437788963318 +illusion_1.5L,ppo,229,91.6,alpha,upper,-0.15976715087890625 +illusion_1.5L,ppo,229,91.6,alpha,lower,-0.2627251148223877 +illusion_1.5L,ppo,230,92.0,alpha,front,-0.28590166568756104 +illusion_1.5L,ppo,230,92.0,alpha,upper,-0.2969639301300049 +illusion_1.5L,ppo,230,92.0,alpha,lower,-0.443608283996582 +illusion_1.5L,ppo,231,92.4,alpha,front,-0.3660236597061157 +illusion_1.5L,ppo,231,92.4,alpha,upper,-0.5720744132995605 +illusion_1.5L,ppo,231,92.4,alpha,lower,-0.7242207527160645 +illusion_1.5L,ppo,232,92.8,alpha,front,-0.4208977818489075 +illusion_1.5L,ppo,232,92.8,alpha,upper,-0.6080409288406372 +illusion_1.5L,ppo,232,92.8,alpha,lower,-0.7370874881744385 +illusion_1.5L,ppo,233,93.2,alpha,front,-0.07061994075775146 +illusion_1.5L,ppo,233,93.2,alpha,upper,-0.5897254943847656 +illusion_1.5L,ppo,233,93.2,alpha,lower,-0.6012182235717773 +illusion_1.5L,ppo,234,93.6,alpha,front,0.393081396818161 +illusion_1.5L,ppo,234,93.6,alpha,upper,-0.6854281425476074 +illusion_1.5L,ppo,234,93.6,alpha,lower,-0.5700459480285645 +illusion_1.5L,ppo,235,94.0,alpha,front,0.4350166320800782 +illusion_1.5L,ppo,235,94.0,alpha,upper,-0.6692852973937988 +illusion_1.5L,ppo,235,94.0,alpha,lower,-0.5484316349029541 +illusion_1.5L,ppo,236,94.4,alpha,front,-0.004740387201309204 +illusion_1.5L,ppo,236,94.4,alpha,upper,-0.3197357654571533 +illusion_1.5L,ppo,236,94.4,alpha,lower,-0.3674147129058838 +illusion_1.5L,ppo,237,94.8,alpha,front,-0.19450649619102478 +illusion_1.5L,ppo,237,94.8,alpha,upper,-0.049191594123840325 +illusion_1.5L,ppo,237,94.8,alpha,lower,-0.26035594940185547 +illusion_1.5L,ppo,238,95.2,alpha,front,0.2247903048992157 +illusion_1.5L,ppo,238,95.2,alpha,upper,0.05259132385253906 +illusion_1.5L,ppo,238,95.2,alpha,lower,-0.18090152740478516 +illusion_1.5L,ppo,239,95.6,alpha,front,0.5190973281860352 +illusion_1.5L,ppo,239,95.6,alpha,upper,0.2562851905822754 +illusion_1.5L,ppo,239,95.6,alpha,lower,0.0348658561706543 +illusion_1.5L,ppo,240,96.0,alpha,front,0.5424928069114685 +illusion_1.5L,ppo,240,96.0,alpha,upper,0.2581901550292969 +illusion_1.5L,ppo,240,96.0,alpha,lower,0.08278524875640869 +illusion_1.5L,ppo,241,96.4,alpha,front,0.5345518589019775 +illusion_1.5L,ppo,241,96.4,alpha,upper,0.18506264686584473 +illusion_1.5L,ppo,241,96.4,alpha,lower,0.03463470935821533 +illusion_1.5L,ppo,242,96.8,alpha,front,0.5271670818328857 +illusion_1.5L,ppo,242,96.8,alpha,upper,0.41328358650207514 +illusion_1.5L,ppo,242,96.8,alpha,lower,0.18398702144622803 +illusion_1.5L,ppo,243,97.2,alpha,front,0.6098405122756958 +illusion_1.5L,ppo,243,97.2,alpha,upper,0.7600514888763428 +illusion_1.5L,ppo,243,97.2,alpha,lower,0.4236574172973633 +illusion_1.5L,ppo,244,97.6,alpha,front,0.6948131918907166 +illusion_1.5L,ppo,244,97.6,alpha,upper,0.9385025501251221 +illusion_1.5L,ppo,244,97.6,alpha,lower,0.5991761684417725 +illusion_1.5L,ppo,245,98.0,alpha,front,0.6346956491470337 +illusion_1.5L,ppo,245,98.0,alpha,upper,0.8145413398742677 +illusion_1.5L,ppo,245,98.0,alpha,lower,0.633415937423706 +illusion_1.5L,ppo,246,98.4,alpha,front,0.2994007170200348 +illusion_1.5L,ppo,246,98.4,alpha,upper,0.5923001766204834 +illusion_1.5L,ppo,246,98.4,alpha,lower,0.6272050142288208 +illusion_1.5L,ppo,247,98.8,alpha,front,-0.032154202461242676 +illusion_1.5L,ppo,247,98.8,alpha,upper,0.4270448684692383 +illusion_1.5L,ppo,247,98.8,alpha,lower,0.6229526996612549 +illusion_1.5L,ppo,248,99.2,alpha,front,-0.11328831315040588 +illusion_1.5L,ppo,248,99.2,alpha,upper,0.31739330291748047 +illusion_1.5L,ppo,248,99.2,alpha,lower,0.5349994897842407 +illusion_1.5L,ppo,249,99.6,alpha,front,-0.207712322473526 +illusion_1.5L,ppo,249,99.6,alpha,upper,0.28069615364074707 +illusion_1.5L,ppo,249,99.6,alpha,lower,0.4337712526321411 +illusion_1.5L,ppo,250,100.0,alpha,front,-0.009332209825515747 +illusion_1.5L,ppo,250,100.0,alpha,upper,0.03268265724182129 +illusion_1.5L,ppo,250,100.0,alpha,lower,0.16572856903076172 +illusion_1.5L,ppo,251,100.4,alpha,front,0.3432551324367523 +illusion_1.5L,ppo,251,100.4,alpha,upper,-0.2868788242340088 +illusion_1.5L,ppo,251,100.4,alpha,lower,-0.187089204788208 +illusion_1.5L,ppo,252,100.8,alpha,front,-0.0159778892993927 +illusion_1.5L,ppo,252,100.8,alpha,upper,-0.19138312339782715 +illusion_1.5L,ppo,252,100.8,alpha,lower,-0.21195077896118164 +illusion_1.5L,ppo,253,101.2,alpha,front,-0.4273987412452698 +illusion_1.5L,ppo,253,101.2,alpha,upper,-0.21105122566223147 +illusion_1.5L,ppo,253,101.2,alpha,lower,-0.30677199363708496 +illusion_1.5L,ppo,254,101.6,alpha,front,-0.33963698148727417 +illusion_1.5L,ppo,254,101.6,alpha,upper,-0.44954514503479004 +illusion_1.5L,ppo,254,101.6,alpha,lower,-0.536278247833252 +illusion_1.5L,ppo,255,102.0,alpha,front,-0.375585675239563 +illusion_1.5L,ppo,255,102.0,alpha,upper,-0.3318740129470825 +illusion_1.5L,ppo,255,102.0,alpha,lower,-0.4706387519836426 +illusion_1.5L,ppo,256,102.4,alpha,front,-0.46717584133148193 +illusion_1.5L,ppo,256,102.4,alpha,upper,-0.3232545852661133 +illusion_1.5L,ppo,256,102.4,alpha,lower,-0.5076713562011719 +illusion_1.5L,ppo,257,102.8,alpha,front,-0.42255449295043945 +illusion_1.5L,ppo,257,102.8,alpha,upper,-0.6112796068191528 +illusion_1.5L,ppo,257,102.8,alpha,lower,-0.7322325706481934 +illusion_1.5L,ppo,258,103.2,alpha,front,-0.45180004835128784 +illusion_1.5L,ppo,258,103.2,alpha,upper,-0.6413793563842773 +illusion_1.5L,ppo,258,103.2,alpha,lower,-0.6755928993225098 +illusion_1.5L,ppo,259,103.6,alpha,front,-0.24556350708007812 +illusion_1.5L,ppo,259,103.6,alpha,upper,-0.6706846952438354 +illusion_1.5L,ppo,259,103.6,alpha,lower,-0.5747218132019043 +illusion_1.5L,ppo,260,104.0,alpha,front,0.12491847574710845 +illusion_1.5L,ppo,260,104.0,alpha,upper,-0.7626785039901733 +illusion_1.5L,ppo,260,104.0,alpha,lower,-0.55914306640625 +illusion_1.5L,ppo,261,104.4,alpha,front,0.33186182379722595 +illusion_1.5L,ppo,261,104.4,alpha,upper,-0.710112452507019 +illusion_1.5L,ppo,261,104.4,alpha,lower,-0.520291805267334 +illusion_1.5L,ppo,262,104.8,alpha,front,0.4417091310024261 +illusion_1.5L,ppo,262,104.8,alpha,upper,-0.6166636943817139 +illusion_1.5L,ppo,262,104.8,alpha,lower,-0.49680876731872564 +illusion_1.5L,ppo,263,105.2,alpha,front,0.14908185601234436 +illusion_1.5L,ppo,263,105.2,alpha,upper,-0.14396464824676514 +illusion_1.5L,ppo,263,105.2,alpha,lower,-0.20236301422119138 +illusion_1.5L,ppo,264,105.6,alpha,front,-0.0305558443069458 +illusion_1.5L,ppo,264,105.6,alpha,upper,0.3077738285064697 +illusion_1.5L,ppo,264,105.6,alpha,lower,0.10639321804046631 +illusion_1.5L,ppo,265,106.0,alpha,front,0.45804762840270996 +illusion_1.5L,ppo,265,106.0,alpha,upper,0.2554202079772949 +illusion_1.5L,ppo,265,106.0,alpha,lower,0.12779533863067627 +illusion_1.5L,ppo,266,106.4,alpha,front,0.7131701707839966 +illusion_1.5L,ppo,266,106.4,alpha,upper,0.33417367935180664 +illusion_1.5L,ppo,266,106.4,alpha,lower,0.2962765693664551 +illusion_1.5L,ppo,267,106.8,alpha,front,0.5969294309616089 +illusion_1.5L,ppo,267,106.8,alpha,upper,0.43567371368408203 +illusion_1.5L,ppo,267,106.8,alpha,lower,0.44832050800323486 +illusion_1.5L,ppo,268,107.2,alpha,front,0.6857279539108276 +illusion_1.5L,ppo,268,107.2,alpha,upper,0.33716535568237305 +illusion_1.5L,ppo,268,107.2,alpha,lower,0.370347261428833 +illusion_1.5L,ppo,269,107.6,alpha,front,0.7761920094490051 +illusion_1.5L,ppo,269,107.6,alpha,upper,0.5761804580688477 +illusion_1.5L,ppo,269,107.6,alpha,lower,0.4998269081115723 +illusion_1.5L,ppo,270,108.0,alpha,front,0.8143571615219115 +illusion_1.5L,ppo,270,108.0,alpha,upper,0.880573272705078 +illusion_1.5L,ppo,270,108.0,alpha,lower,0.6527942419052124 +illusion_1.5L,ppo,271,108.4,alpha,front,0.7756946086883545 +illusion_1.5L,ppo,271,108.4,alpha,upper,0.8918139934539795 +illusion_1.5L,ppo,271,108.4,alpha,lower,0.5946838855743408 +illusion_1.5L,ppo,272,108.8,alpha,front,0.29951193928718567 +illusion_1.5L,ppo,272,108.8,alpha,upper,0.8630492687225343 +illusion_1.5L,ppo,272,108.8,alpha,lower,0.6326990127563477 +illusion_1.5L,ppo,273,109.2,alpha,front,-0.06976175308227539 +illusion_1.5L,ppo,273,109.2,alpha,upper,0.6509699821472168 +illusion_1.5L,ppo,273,109.2,alpha,lower,0.64925217628479 +illusion_1.5L,ppo,274,109.6,alpha,front,-0.13728725910186768 +illusion_1.5L,ppo,274,109.6,alpha,upper,0.3136861324310303 +illusion_1.5L,ppo,274,109.6,alpha,lower,0.566563606262207 +illusion_1.5L,ppo,275,110.0,alpha,front,-0.23345953226089478 +illusion_1.5L,ppo,275,110.0,alpha,upper,0.09262347221374512 +illusion_1.5L,ppo,275,110.0,alpha,lower,0.43763041496276855 +illusion_1.5L,ppo,276,110.4,alpha,front,0.03588256239891052 +illusion_1.5L,ppo,276,110.4,alpha,upper,-0.18659019470214844 +illusion_1.5L,ppo,276,110.4,alpha,lower,0.08362102508544922 +illusion_1.5L,ppo,277,110.8,alpha,front,0.3642299473285675 +illusion_1.5L,ppo,277,110.8,alpha,upper,-0.3925516605377197 +illusion_1.5L,ppo,277,110.8,alpha,lower,-0.2523982524871826 +illusion_1.5L,ppo,278,111.2,alpha,front,-0.07691660523414612 +illusion_1.5L,ppo,278,111.2,alpha,upper,-0.2180954217910767 +illusion_1.5L,ppo,278,111.2,alpha,lower,-0.24569559097290036 +illusion_1.5L,ppo,279,111.6,alpha,front,-0.46609628200531 +illusion_1.5L,ppo,279,111.6,alpha,upper,-0.2058160305023193 +illusion_1.5L,ppo,279,111.6,alpha,lower,-0.32314300537109375 +illusion_1.5L,ppo,280,112.0,alpha,front,-0.3233989477157593 +illusion_1.5L,ppo,280,112.0,alpha,upper,-0.3015556335449219 +illusion_1.5L,ppo,280,112.0,alpha,lower,-0.43461155891418457 +illusion_1.5L,ppo,281,112.4,alpha,front,-0.28208106756210327 +illusion_1.5L,ppo,281,112.4,alpha,upper,-0.20982527732849124 +illusion_1.5L,ppo,281,112.4,alpha,lower,-0.38858699798583984 +illusion_1.5L,ppo,282,112.8,alpha,front,-0.39149707555770874 +illusion_1.5L,ppo,282,112.8,alpha,upper,-0.3048064708709717 +illusion_1.5L,ppo,282,112.8,alpha,lower,-0.5023510456085205 +illusion_1.5L,ppo,283,113.2,alpha,front,-0.4504371881484986 +illusion_1.5L,ppo,283,113.2,alpha,upper,-0.5454741716384888 +illusion_1.5L,ppo,283,113.2,alpha,lower,-0.678062915802002 +illusion_1.5L,ppo,284,113.6,alpha,front,-0.4506905674934387 +illusion_1.5L,ppo,284,113.6,alpha,upper,-0.5517871379852295 +illusion_1.5L,ppo,284,113.6,alpha,lower,-0.5945944786071777 +illusion_1.5L,ppo,285,114.0,alpha,front,-0.09988090395927429 +illusion_1.5L,ppo,285,114.0,alpha,upper,-0.4723500013351441 +illusion_1.5L,ppo,285,114.0,alpha,lower,-0.3980705738067627 +illusion_1.5L,ppo,286,114.4,alpha,front,0.3591274321079254 +illusion_1.5L,ppo,286,114.4,alpha,upper,-0.49271559715271 +illusion_1.5L,ppo,286,114.4,alpha,lower,-0.27699995040893555 +illusion_1.5L,ppo,287,114.8,alpha,front,0.6149418354034424 +illusion_1.5L,ppo,287,114.8,alpha,upper,-0.5980979204177856 +illusion_1.5L,ppo,287,114.8,alpha,lower,-0.21439552307128906 +illusion_1.5L,ppo,288,115.2,alpha,front,0.33164340257644653 +illusion_1.5L,ppo,288,115.2,alpha,upper,-0.3685014247894287 +illusion_1.5L,ppo,288,115.2,alpha,lower,0.014434337615966795 +illusion_1.5L,ppo,289,115.6,alpha,front,-0.01776176691055298 +illusion_1.5L,ppo,289,115.6,alpha,upper,0.08166027069091797 +illusion_1.5L,ppo,289,115.6,alpha,lower,0.25884926319122314 +illusion_1.5L,ppo,290,116.0,alpha,front,0.26535218954086304 +illusion_1.5L,ppo,290,116.0,alpha,upper,0.25598692893981934 +illusion_1.5L,ppo,290,116.0,alpha,lower,0.31006455421447754 +illusion_1.5L,ppo,291,116.4,alpha,front,0.630729079246521 +illusion_1.5L,ppo,291,116.4,alpha,upper,0.4168431758880616 +illusion_1.5L,ppo,291,116.4,alpha,lower,0.44238436222076416 +illusion_1.5L,ppo,292,116.8,alpha,front,0.6424282789230347 +illusion_1.5L,ppo,292,116.8,alpha,upper,0.44317531585693354 +illusion_1.5L,ppo,292,116.8,alpha,lower,0.47136270999908453 +illusion_1.5L,ppo,293,117.2,alpha,front,0.6070680022239685 +illusion_1.5L,ppo,293,117.2,alpha,upper,0.17836713790893555 +illusion_1.5L,ppo,293,117.2,alpha,lower,0.2298063039779663 +illusion_1.5L,ppo,294,117.6,alpha,front,0.5042439699172974 +illusion_1.5L,ppo,294,117.6,alpha,upper,0.23889827728271487 +illusion_1.5L,ppo,294,117.6,alpha,lower,0.22606563568115237 +illusion_1.5L,ppo,295,118.0,alpha,front,0.5300931930541992 +illusion_1.5L,ppo,295,118.0,alpha,upper,0.5333585739135742 +illusion_1.5L,ppo,295,118.0,alpha,lower,0.4009486436843872 +illusion_1.5L,ppo,296,118.4,alpha,front,0.6513127088546753 +illusion_1.5L,ppo,296,118.4,alpha,upper,0.6374735832214355 +illusion_1.5L,ppo,296,118.4,alpha,lower,0.4028582572937011 +illusion_1.5L,ppo,297,118.8,alpha,front,0.41223010420799255 +illusion_1.5L,ppo,297,118.8,alpha,upper,0.5571112632751465 +illusion_1.5L,ppo,297,118.8,alpha,lower,0.29622936248779297 +illusion_1.5L,ppo,298,119.2,alpha,front,-0.1452922523021698 +illusion_1.5L,ppo,298,119.2,alpha,upper,0.318218469619751 +illusion_1.5L,ppo,298,119.2,alpha,lower,0.18848419189453125 +illusion_1.5L,ppo,299,119.6,alpha,front,-0.5068690776824951 +illusion_1.5L,ppo,299,119.6,alpha,upper,-0.0016096830368041992 +illusion_1.5L,ppo,299,119.6,alpha,lower,0.12760436534881592 +illusion_1.5L,ppo,300,120.0,alpha,front,-0.5975887775421143 +illusion_1.5L,ppo,300,120.0,alpha,upper,-0.2347569465637207 +illusion_1.5L,ppo,300,120.0,alpha,lower,0.098940372467041 +illusion_1.5L,ppo,301,120.4,alpha,front,-0.16785350441932678 +illusion_1.5L,ppo,301,120.4,alpha,upper,-0.5152460336685181 +illusion_1.5L,ppo,301,120.4,alpha,lower,-0.17126917839050293 +illusion_1.5L,ppo,302,120.8,alpha,front,0.1866794228553772 +illusion_1.5L,ppo,302,120.8,alpha,upper,-0.6670166254043579 +illusion_1.5L,ppo,302,120.8,alpha,lower,-0.4975252151489258 +illusion_1.5L,ppo,303,121.2,alpha,front,-0.2730514407157898 +illusion_1.5L,ppo,303,121.2,alpha,upper,-0.5429093837738037 +illusion_1.5L,ppo,303,121.2,alpha,lower,-0.6183211803436279 +illusion_1.5L,ppo,304,121.6,alpha,front,-0.6313946843147278 +illusion_1.5L,ppo,304,121.6,alpha,upper,-0.5279884338378906 +illusion_1.5L,ppo,304,121.6,alpha,lower,-0.7635231018066406 +illusion_1.5L,ppo,305,122.0,alpha,front,-0.5088241696357727 +illusion_1.5L,ppo,305,122.0,alpha,upper,-0.38939177989959717 +illusion_1.5L,ppo,305,122.0,alpha,lower,-0.7336359024047852 +illusion_1.5L,ppo,306,122.4,alpha,front,-0.36975914239883423 +illusion_1.5L,ppo,306,122.4,alpha,upper,-0.08893227577209473 +illusion_1.5L,ppo,306,122.4,alpha,lower,-0.5425763130187988 +illusion_1.5L,ppo,307,122.8,alpha,front,-0.2032076120376587 +illusion_1.5L,ppo,307,122.8,alpha,upper,-0.1468818187713623 +illusion_1.5L,ppo,307,122.8,alpha,lower,-0.6006989479064941 +illusion_1.5L,ppo,308,123.2,alpha,front,-0.14247968792915344 +illusion_1.5L,ppo,308,123.2,alpha,upper,-0.35026347637176514 +illusion_1.5L,ppo,308,123.2,alpha,lower,-0.7160677909851074 +illusion_1.5L,ppo,309,123.6,alpha,front,-0.23771873116493225 +illusion_1.5L,ppo,309,123.6,alpha,upper,-0.2836723327636719 +illusion_1.5L,ppo,309,123.6,alpha,lower,-0.5705409049987793 +illusion_1.5L,ppo,310,124.0,alpha,front,0.13035008311271667 +illusion_1.5L,ppo,310,124.0,alpha,upper,-0.22608017921447754 +illusion_1.5L,ppo,310,124.0,alpha,lower,-0.3164668083190918 +illusion_1.5L,ppo,311,124.4,alpha,front,0.7473726868629456 +illusion_1.5L,ppo,311,124.4,alpha,upper,-0.2576427459716797 +illusion_1.5L,ppo,311,124.4,alpha,lower,-0.05801820755004883 +illusion_1.5L,ppo,312,124.8,alpha,front,0.7690414786338806 +illusion_1.5L,ppo,312,124.8,alpha,upper,-0.14427685737609863 +illusion_1.5L,ppo,312,124.8,alpha,lower,0.23837661743164062 +illusion_1.5L,ppo,313,125.2,alpha,front,0.3619178831577301 +illusion_1.5L,ppo,313,125.2,alpha,upper,0.1629023551940918 +illusion_1.5L,ppo,313,125.2,alpha,lower,0.53957200050354 +illusion_1.5L,ppo,314,125.6,alpha,front,0.2697850465774536 +illusion_1.5L,ppo,314,125.6,alpha,upper,0.40786314010620117 +illusion_1.5L,ppo,314,125.6,alpha,lower,0.6726815700531006 +illusion_1.5L,ppo,315,126.0,alpha,front,0.657258927822113 +illusion_1.5L,ppo,315,126.0,alpha,upper,0.5033016204833984 +illusion_1.5L,ppo,315,126.0,alpha,lower,0.6895595788955688 +illusion_1.5L,ppo,316,126.4,alpha,front,0.8643451333045961 +illusion_1.5L,ppo,316,126.4,alpha,upper,0.6820416450500488 +illusion_1.5L,ppo,316,126.4,alpha,lower,0.755753755569458 +illusion_1.5L,ppo,317,126.8,alpha,front,0.8703035712242125 +illusion_1.5L,ppo,317,126.8,alpha,upper,0.6662542819976807 +illusion_1.5L,ppo,317,126.8,alpha,lower,0.614220380783081 +illusion_1.5L,ppo,318,127.2,alpha,front,0.8658362627029419 +illusion_1.5L,ppo,318,127.2,alpha,upper,0.5501136779785156 +illusion_1.5L,ppo,318,127.2,alpha,lower,0.3740086555480957 +illusion_1.5L,ppo,319,127.6,alpha,front,0.680719792842865 +illusion_1.5L,ppo,319,127.6,alpha,upper,0.739870548248291 +illusion_1.5L,ppo,319,127.6,alpha,lower,0.43535494804382324 +illusion_1.5L,ppo,320,128.0,alpha,front,0.5246120691299438 +illusion_1.5L,ppo,320,128.0,alpha,upper,0.8654069900512695 +illusion_1.5L,ppo,320,128.0,alpha,lower,0.5102264881134033 +illusion_1.5L,ppo,321,128.4,alpha,front,0.3622410297393799 +illusion_1.5L,ppo,321,128.4,alpha,upper,0.7393333911895752 +illusion_1.5L,ppo,321,128.4,alpha,lower,0.4354169368743896 +illusion_1.5L,ppo,322,128.8,alpha,front,-0.18279436230659485 +illusion_1.5L,ppo,322,128.8,alpha,upper,0.5783658027648926 +illusion_1.5L,ppo,322,128.8,alpha,lower,0.44754016399383545 +illusion_1.5L,ppo,323,129.2,alpha,front,-0.5711618065834045 +illusion_1.5L,ppo,323,129.2,alpha,upper,0.2047257423400879 +illusion_1.5L,ppo,323,129.2,alpha,lower,0.33238542079925537 +illusion_1.5L,ppo,324,129.6,alpha,front,-0.29037946462631226 +illusion_1.5L,ppo,324,129.6,alpha,upper,-0.270719051361084 +illusion_1.5L,ppo,324,129.6,alpha,lower,0.023485541343688965 +illusion_1.5L,ppo,325,130.0,alpha,front,0.10143885016441347 +illusion_1.5L,ppo,325,130.0,alpha,upper,-0.5080089569091797 +illusion_1.5L,ppo,325,130.0,alpha,lower,-0.23043656349182132 +illusion_1.5L,ppo,326,130.4,alpha,front,-0.08933553099632263 +illusion_1.5L,ppo,326,130.4,alpha,upper,-0.547905445098877 +illusion_1.5L,ppo,326,130.4,alpha,lower,-0.40566730499267584 +illusion_1.5L,ppo,327,130.8,alpha,front,-0.511663556098938 +illusion_1.5L,ppo,327,130.8,alpha,upper,-0.5932081937789917 +illusion_1.5L,ppo,327,130.8,alpha,lower,-0.5944204330444336 +illusion_1.5L,ppo,328,131.2,alpha,front,-0.6248717308044434 +illusion_1.5L,ppo,328,131.2,alpha,upper,-0.5765507221221924 +illusion_1.5L,ppo,328,131.2,alpha,lower,-0.684523344039917 +illusion_1.5L,ppo,329,131.6,alpha,front,-0.5867999196052551 +illusion_1.5L,ppo,329,131.6,alpha,upper,-0.3627433776855469 +illusion_1.5L,ppo,329,131.6,alpha,lower,-0.5804002285003662 +illusion_1.5L,ppo,330,132.0,alpha,front,-0.5043418407440186 +illusion_1.5L,ppo,330,132.0,alpha,upper,-0.2674226760864258 +illusion_1.5L,ppo,330,132.0,alpha,lower,-0.5607049465179443 +illusion_1.5L,ppo,331,132.4,alpha,front,-0.3369256258010864 +illusion_1.5L,ppo,331,132.4,alpha,upper,-0.5231709480285645 +illusion_1.5L,ppo,331,132.4,alpha,lower,-0.7825822830200194 +illusion_1.5L,ppo,332,132.8,alpha,front,-0.31630939245224 +illusion_1.5L,ppo,332,132.8,alpha,upper,-0.6460864543914795 +illusion_1.5L,ppo,332,132.8,alpha,lower,-0.8585777282714844 +illusion_1.5L,ppo,333,133.2,alpha,front,-0.14773640036582947 +illusion_1.5L,ppo,333,133.2,alpha,upper,-0.5155949592590332 +illusion_1.5L,ppo,333,133.2,alpha,lower,-0.6924998760223389 +illusion_1.5L,ppo,334,133.6,alpha,front,0.4367019236087799 +illusion_1.5L,ppo,334,133.6,alpha,upper,-0.5343097448348999 +illusion_1.5L,ppo,334,133.6,alpha,lower,-0.598200798034668 +illusion_1.5L,ppo,335,134.0,alpha,front,0.5167065858840942 +illusion_1.5L,ppo,335,134.0,alpha,upper,-0.3581421375274658 +illusion_1.5L,ppo,335,134.0,alpha,lower,-0.37257933616638184 +illusion_1.5L,ppo,336,134.4,alpha,front,0.044985488057136536 +illusion_1.5L,ppo,336,134.4,alpha,upper,-0.01152026653289795 +illusion_1.5L,ppo,336,134.4,alpha,lower,-0.07444643974304199 +illusion_1.5L,ppo,337,134.8,alpha,front,0.04341334104537964 +illusion_1.5L,ppo,337,134.8,alpha,upper,-6.4373016357421875e-06 +illusion_1.5L,ppo,337,134.8,alpha,lower,-0.03518366813659668 +illusion_1.5L,ppo,338,135.2,alpha,front,0.41111612319946284 +illusion_1.5L,ppo,338,135.2,alpha,upper,0.12497425079345703 +illusion_1.5L,ppo,338,135.2,alpha,lower,0.14441406726837158 +illusion_1.5L,ppo,339,135.6,alpha,front,0.5643935799598694 +illusion_1.5L,ppo,339,135.6,alpha,upper,0.4246234893798828 +illusion_1.5L,ppo,339,135.6,alpha,lower,0.462704062461853 +illusion_1.5L,ppo,340,136.0,alpha,front,0.6788209676742554 +illusion_1.5L,ppo,340,136.0,alpha,upper,0.3376145362854004 +illusion_1.5L,ppo,340,136.0,alpha,lower,0.4264150857925415 +illusion_1.5L,ppo,341,136.4,alpha,front,0.7183170318603516 +illusion_1.5L,ppo,341,136.4,alpha,upper,0.2839484214782715 +illusion_1.5L,ppo,341,136.4,alpha,lower,0.36883544921875 +illusion_1.5L,ppo,342,136.8,alpha,front,0.6739851832389832 +illusion_1.5L,ppo,342,136.8,alpha,upper,0.5395569801330566 +illusion_1.5L,ppo,342,136.8,alpha,lower,0.5290035009384155 +illusion_1.5L,ppo,343,137.2,alpha,front,0.8138754963874817 +illusion_1.5L,ppo,343,137.2,alpha,upper,0.7088031768798828 +illusion_1.5L,ppo,343,137.2,alpha,lower,0.5936431884765625 +illusion_1.5L,ppo,344,137.6,alpha,front,0.8670107722282409 +illusion_1.5L,ppo,344,137.6,alpha,upper,0.7796669006347656 +illusion_1.5L,ppo,344,137.6,alpha,lower,0.561663031578064 +illusion_1.5L,ppo,345,138.0,alpha,front,0.5006347894668579 +illusion_1.5L,ppo,345,138.0,alpha,upper,0.792431116104126 +illusion_1.5L,ppo,345,138.0,alpha,lower,0.5174896717071533 +illusion_1.5L,ppo,346,138.4,alpha,front,-0.12455570697784424 +illusion_1.5L,ppo,346,138.4,alpha,upper,0.7188630104064941 +illusion_1.5L,ppo,346,138.4,alpha,lower,0.513827919960022 +illusion_1.5L,ppo,347,138.8,alpha,front,-0.4508982300758362 +illusion_1.5L,ppo,347,138.8,alpha,upper,0.45531320571899414 +illusion_1.5L,ppo,347,138.8,alpha,lower,0.4829851388931275 +illusion_1.5L,ppo,348,139.2,alpha,front,-0.18432873487472534 +illusion_1.5L,ppo,348,139.2,alpha,upper,-0.0041544437408447266 +illusion_1.5L,ppo,348,139.2,alpha,lower,0.25493526458740234 +illusion_1.5L,ppo,349,139.6,alpha,front,0.29688823223114014 +illusion_1.5L,ppo,349,139.6,alpha,upper,-0.28394174575805664 +illusion_1.5L,ppo,349,139.6,alpha,lower,-0.03384518623352051 +illusion_1.5L,ppo,350,140.0,alpha,front,0.13902647793293 +illusion_1.5L,ppo,350,140.0,alpha,upper,-0.24360144138336182 +illusion_1.5L,ppo,350,140.0,alpha,lower,-0.1627635955810547 +illusion_1.5L,ppo,351,140.4,alpha,front,-0.32803797721862793 +illusion_1.5L,ppo,351,140.4,alpha,upper,-0.3218402862548828 +illusion_1.5L,ppo,351,140.4,alpha,lower,-0.3557562828063965 +illusion_1.5L,ppo,352,140.8,alpha,front,-0.4536768198013305 +illusion_1.5L,ppo,352,140.8,alpha,upper,-0.39750099182128906 +illusion_1.5L,ppo,352,140.8,alpha,lower,-0.47771120071411133 +illusion_1.5L,ppo,353,141.2,alpha,front,-0.3939249515533447 +illusion_1.5L,ppo,353,141.2,alpha,upper,-0.247918963432312 +illusion_1.5L,ppo,353,141.2,alpha,lower,-0.3705902099609375 +illusion_1.5L,ppo,354,141.6,alpha,front,-0.3564556837081909 +illusion_1.5L,ppo,354,141.6,alpha,upper,-0.26623082160949707 +illusion_1.5L,ppo,354,141.6,alpha,lower,-0.4095962047576904 +illusion_1.5L,ppo,355,142.0,alpha,front,-0.3963428735733032 +illusion_1.5L,ppo,355,142.0,alpha,upper,-0.49705100059509283 +illusion_1.5L,ppo,355,142.0,alpha,lower,-0.6289467811584473 +illusion_1.5L,ppo,356,142.4,alpha,front,-0.530899703502655 +illusion_1.5L,ppo,356,142.4,alpha,upper,-0.5866354703903198 +illusion_1.5L,ppo,356,142.4,alpha,lower,-0.7305850982666016 +illusion_1.5L,ppo,357,142.8,alpha,front,-0.39575970172882086 +illusion_1.5L,ppo,357,142.8,alpha,upper,-0.526272177696228 +illusion_1.5L,ppo,357,142.8,alpha,lower,-0.6703829765319824 +illusion_1.5L,ppo,358,143.2,alpha,front,0.16006016731262207 +illusion_1.5L,ppo,358,143.2,alpha,upper,-0.5550175905227661 +illusion_1.5L,ppo,358,143.2,alpha,lower,-0.5863409042358398 +illusion_1.5L,ppo,359,143.6,alpha,front,0.5604903697967529 +illusion_1.5L,ppo,359,143.6,alpha,upper,-0.6551252603530884 +illusion_1.5L,ppo,359,143.6,alpha,lower,-0.5218350887298584 +illusion_1.5L,ppo,360,144.0,alpha,front,0.22963157296180728 +illusion_1.5L,ppo,360,144.0,alpha,upper,-0.46265077590942383 +illusion_1.5L,ppo,360,144.0,alpha,lower,-0.34816503524780273 +illusion_1.5L,ppo,361,144.4,alpha,front,-0.21059057116508484 +illusion_1.5L,ppo,361,144.4,alpha,upper,-0.11718106269836426 +illusion_1.5L,ppo,361,144.4,alpha,lower,-0.18025779724121094 +illusion_1.5L,ppo,362,144.8,alpha,front,0.09025199711322784 +illusion_1.5L,ppo,362,144.8,alpha,upper,0.00044894218444824224 +illusion_1.5L,ppo,362,144.8,alpha,lower,-0.12820720672607422 +illusion_1.5L,ppo,363,145.2,alpha,front,0.4875909090042115 +illusion_1.5L,ppo,363,145.2,alpha,upper,0.2554497718811035 +illusion_1.5L,ppo,363,145.2,alpha,lower,0.12551379203796387 +illusion_1.5L,ppo,364,145.6,alpha,front,0.5580323934555054 +illusion_1.5L,ppo,364,145.6,alpha,upper,0.39579200744628906 +illusion_1.5L,ppo,364,145.6,alpha,lower,0.30565834045410156 +illusion_1.5L,ppo,365,146.0,alpha,front,0.6011860370635986 +illusion_1.5L,ppo,365,146.0,alpha,upper,0.12201309204101562 +illusion_1.5L,ppo,365,146.0,alpha,lower,0.12541329860687256 +illusion_1.5L,ppo,366,146.4,alpha,front,0.5335994362831116 +illusion_1.5L,ppo,366,146.4,alpha,upper,0.21399784088134763 +illusion_1.5L,ppo,366,146.4,alpha,lower,0.1858912706375122 +illusion_1.5L,ppo,367,146.8,alpha,front,0.5301249027252197 +illusion_1.5L,ppo,367,146.8,alpha,upper,0.6609492301940918 +illusion_1.5L,ppo,367,146.8,alpha,lower,0.4851990938186646 +illusion_1.5L,ppo,368,147.2,alpha,front,0.7530813813209534 +illusion_1.5L,ppo,368,147.2,alpha,upper,0.8781166076660155 +illusion_1.5L,ppo,368,147.2,alpha,lower,0.5801377296447754 +illusion_1.5L,ppo,369,147.6,alpha,front,0.7312402129173279 +illusion_1.5L,ppo,369,147.6,alpha,upper,0.9080252647399903 +illusion_1.5L,ppo,369,147.6,alpha,lower,0.5945295095443726 +illusion_1.5L,ppo,370,148.0,alpha,front,0.4083138704299927 +illusion_1.5L,ppo,370,148.0,alpha,upper,0.7248983383178711 +illusion_1.5L,ppo,370,148.0,alpha,lower,0.5568023920059204 +illusion_1.5L,ppo,371,148.4,alpha,front,-0.05624812841415406 +illusion_1.5L,ppo,371,148.4,alpha,upper,0.5056872367858887 +illusion_1.5L,ppo,371,148.4,alpha,lower,0.544556736946106 +illusion_1.5L,ppo,372,148.8,alpha,front,-0.30364835262298584 +illusion_1.5L,ppo,372,148.8,alpha,upper,0.4190695285797119 +illusion_1.5L,ppo,372,148.8,alpha,lower,0.5796304941177368 +illusion_1.5L,ppo,373,149.2,alpha,front,-0.16441354155540466 +illusion_1.5L,ppo,373,149.2,alpha,upper,0.26724791526794434 +illusion_1.5L,ppo,373,149.2,alpha,lower,0.46471714973449707 +illusion_1.5L,ppo,374,149.6,alpha,front,0.31448888778686523 +illusion_1.5L,ppo,374,149.6,alpha,upper,-0.018841981887817383 +illusion_1.5L,ppo,374,149.6,alpha,lower,0.16261494159698486 +illusion_1.5L,ppo,375,150.0,alpha,front,0.34761691093444824 +illusion_1.5L,ppo,375,150.0,alpha,upper,-0.11107635498046875 +illusion_1.5L,ppo,375,150.0,alpha,lower,-0.031129837036132812 +illusion_1.5L,ppo,376,150.4,alpha,front,-0.1605166792869568 +illusion_1.5L,ppo,376,150.4,alpha,upper,-0.15176713466644287 +illusion_1.5L,ppo,376,150.4,alpha,lower,-0.17232942581176758 +illusion_1.5L,ppo,377,150.8,alpha,front,-0.39390820264816284 +illusion_1.5L,ppo,377,150.8,alpha,upper,-0.2598433494567871 +illusion_1.5L,ppo,377,150.8,alpha,lower,-0.31445884704589844 +illusion_1.5L,ppo,378,151.2,alpha,front,-0.31751108169555664 +illusion_1.5L,ppo,378,151.2,alpha,upper,-0.2042553424835205 +illusion_1.5L,ppo,378,151.2,alpha,lower,-0.27495336532592773 +illusion_1.5L,ppo,379,151.6,alpha,front,-0.24532678723335263 +illusion_1.5L,ppo,379,151.6,alpha,upper,-0.1487560272216797 +illusion_1.5L,ppo,379,151.6,alpha,lower,-0.2571396827697754 +illusion_1.5L,ppo,380,152.0,alpha,front,-0.2648075222969055 +illusion_1.5L,ppo,380,152.0,alpha,upper,-0.328454852104187 +illusion_1.5L,ppo,380,152.0,alpha,lower,-0.4750239849090576 +illusion_1.5L,ppo,381,152.4,alpha,front,-0.3901711106300354 +illusion_1.5L,ppo,381,152.4,alpha,upper,-0.5724642276763916 +illusion_1.5L,ppo,381,152.4,alpha,lower,-0.7303752899169922 +illusion_1.5L,ppo,382,152.8,alpha,front,-0.4417744278907776 +illusion_1.5L,ppo,382,152.8,alpha,upper,-0.5963923931121826 +illusion_1.5L,ppo,382,152.8,alpha,lower,-0.7224078178405762 +illusion_1.5L,ppo,383,153.2,alpha,front,-0.06259578466415405 +illusion_1.5L,ppo,383,153.2,alpha,upper,-0.5944095849990845 +illusion_1.5L,ppo,383,153.2,alpha,lower,-0.5891797542572021 +illusion_1.5L,ppo,384,153.6,alpha,front,0.39595109224319464 +illusion_1.5L,ppo,384,153.6,alpha,upper,-0.6881347894668579 +illusion_1.5L,ppo,384,153.6,alpha,lower,-0.558861255645752 +illusion_1.5L,ppo,385,154.0,alpha,front,0.4375619292259217 +illusion_1.5L,ppo,385,154.0,alpha,upper,-0.6810344457626343 +illusion_1.5L,ppo,385,154.0,alpha,lower,-0.5528964996337891 +illusion_1.5L,ppo,386,154.4,alpha,front,0.03861615061759949 +illusion_1.5L,ppo,386,154.4,alpha,upper,-0.3571512699127197 +illusion_1.5L,ppo,386,154.4,alpha,lower,-0.3908383846282959 +illusion_1.5L,ppo,387,154.8,alpha,front,-0.20969843864440915 +illusion_1.5L,ppo,387,154.8,alpha,upper,-0.033804893493652344 +illusion_1.5L,ppo,387,154.8,alpha,lower,-0.2471473217010498 +illusion_1.5L,ppo,388,155.2,alpha,front,0.19587601721286776 +illusion_1.5L,ppo,388,155.2,alpha,upper,0.08117485046386719 +illusion_1.5L,ppo,388,155.2,alpha,lower,-0.1641688346862793 +illusion_1.5L,ppo,389,155.6,alpha,front,0.5405718088150024 +illusion_1.5L,ppo,389,155.6,alpha,upper,0.25188255310058594 +illusion_1.5L,ppo,389,155.6,alpha,lower,0.02503204345703125 +illusion_1.5L,ppo,390,156.0,alpha,front,0.546578049659729 +illusion_1.5L,ppo,390,156.0,alpha,upper,0.2706007957458496 +illusion_1.5L,ppo,390,156.0,alpha,lower,0.08815526962280273 +illusion_1.5L,ppo,391,156.4,alpha,front,0.5248256921768188 +illusion_1.5L,ppo,391,156.4,alpha,upper,0.19159984588623047 +illusion_1.5L,ppo,391,156.4,alpha,lower,0.04047822952270508 +illusion_1.5L,ppo,392,156.8,alpha,front,0.5422926545143127 +illusion_1.5L,ppo,392,156.8,alpha,upper,0.3836541175842285 +illusion_1.5L,ppo,392,156.8,alpha,lower,0.16565799713134766 +illusion_1.5L,ppo,393,157.2,alpha,front,0.6106175184249878 +illusion_1.5L,ppo,393,157.2,alpha,upper,0.7479233741760254 +illusion_1.5L,ppo,393,157.2,alpha,lower,0.42443275451660156 +illusion_1.5L,ppo,394,157.6,alpha,front,0.6996902227401733 +illusion_1.5L,ppo,394,157.6,alpha,upper,0.9419593811035156 +illusion_1.5L,ppo,394,157.6,alpha,lower,0.6110656261444092 +illusion_1.5L,ppo,395,158.0,alpha,front,0.6252295970916748 +illusion_1.5L,ppo,395,158.0,alpha,upper,0.8212900161743164 +illusion_1.5L,ppo,395,158.0,alpha,lower,0.6429388523101807 +illusion_1.5L,ppo,396,158.4,alpha,front,0.301371306180954 +illusion_1.5L,ppo,396,158.4,alpha,upper,0.5931081771850586 +illusion_1.5L,ppo,396,158.4,alpha,lower,0.6303421258926392 +illusion_1.5L,ppo,397,158.8,alpha,front,-0.018628031015396118 +illusion_1.5L,ppo,397,158.8,alpha,upper,0.4195549488067627 +illusion_1.5L,ppo,397,158.8,alpha,lower,0.6212292909622192 +illusion_1.5L,ppo,398,159.2,alpha,front,-0.10874199867248535 +illusion_1.5L,ppo,398,159.2,alpha,upper,0.30309534072875977 +illusion_1.5L,ppo,398,159.2,alpha,lower,0.5349942445755005 +illusion_1.5L,ppo,399,159.6,alpha,front,-0.21626055240631104 +illusion_1.5L,ppo,399,159.6,alpha,upper,0.27895689010620117 +illusion_1.5L,ppo,399,159.6,alpha,lower,0.43910396099090576 +illusion_1.5L,ppo,0,0.0,omega,front,0.01941986322402954 +illusion_1.5L,ppo,0,0.0,omega,upper,0.03209744453430176 +illusion_1.5L,ppo,0,0.0,omega,lower,0.01732092022895813 +illusion_1.5L,ppo,1,0.4,omega,front,0.006020504236221314 +illusion_1.5L,ppo,1,0.4,omega,upper,0.00815605640411377 +illusion_1.5L,ppo,1,0.4,omega,lower,-0.0033862709999084475 +illusion_1.5L,ppo,2,0.8,omega,front,-0.00930424451828003 +illusion_1.5L,ppo,2,0.8,omega,upper,-0.010189091563224792 +illusion_1.5L,ppo,2,0.8,omega,lower,-0.018308806419372558 +illusion_1.5L,ppo,3,1.2,omega,front,-0.021326107978820803 +illusion_1.5L,ppo,3,1.2,omega,upper,-0.011459285020828247 +illusion_1.5L,ppo,3,1.2,omega,lower,-0.01616842269897461 +illusion_1.5L,ppo,4,1.6,omega,front,-0.014429368972778321 +illusion_1.5L,ppo,4,1.6,omega,upper,-0.0037339115142822265 +illusion_1.5L,ppo,4,1.6,omega,lower,-0.005187168121337891 +illusion_1.5L,ppo,5,2.0,omega,front,0.006232544183731079 +illusion_1.5L,ppo,5,2.0,omega,upper,-0.002123520374298096 +illusion_1.5L,ppo,5,2.0,omega,lower,-0.000905001163482666 +illusion_1.5L,ppo,6,2.4,omega,front,0.01217389464378357 +illusion_1.5L,ppo,6,2.4,omega,upper,-0.01122499167919159 +illusion_1.5L,ppo,6,2.4,omega,lower,-0.007400574684143067 +illusion_1.5L,ppo,7,2.8,omega,front,-5.511164665222168e-05 +illusion_1.5L,ppo,7,2.8,omega,upper,-0.015269116759300233 +illusion_1.5L,ppo,7,2.8,omega,lower,-0.012153043746948242 +illusion_1.5L,ppo,8,3.2,omega,front,-0.010442770719528198 +illusion_1.5L,ppo,8,3.2,omega,upper,-0.007272988557815552 +illusion_1.5L,ppo,8,3.2,omega,lower,-0.009612452983856202 +illusion_1.5L,ppo,9,3.6,omega,front,-0.0035374557971954348 +illusion_1.5L,ppo,9,3.6,omega,upper,-9.137868881225586e-05 +illusion_1.5L,ppo,9,3.6,omega,lower,-0.007331018447875977 +illusion_1.5L,ppo,10,4.0,omega,front,0.0060834336280822755 +illusion_1.5L,ppo,10,4.0,omega,upper,0.0057160711288452145 +illusion_1.5L,ppo,10,4.0,omega,lower,-0.004134855270385742 +illusion_1.5L,ppo,11,4.4,omega,front,0.009737371802330017 +illusion_1.5L,ppo,11,4.4,omega,upper,0.007751290798187256 +illusion_1.5L,ppo,11,4.4,omega,lower,-0.001954317092895508 +illusion_1.5L,ppo,12,4.8,omega,front,0.00904989242553711 +illusion_1.5L,ppo,12,4.8,omega,upper,0.002489438056945801 +illusion_1.5L,ppo,12,4.8,omega,lower,-0.003887920379638672 +illusion_1.5L,ppo,13,5.2,omega,front,0.0016814374923706055 +illusion_1.5L,ppo,13,5.2,omega,upper,0.002875683307647705 +illusion_1.5L,ppo,13,5.2,omega,lower,-0.00047426223754882814 +illusion_1.5L,ppo,14,5.6,omega,front,-0.00159498929977417 +illusion_1.5L,ppo,14,5.6,omega,upper,0.008691983222961426 +illusion_1.5L,ppo,14,5.6,omega,lower,0.007783864736557007 +illusion_1.5L,ppo,15,6.0,omega,front,0.004042631983757019 +illusion_1.5L,ppo,15,6.0,omega,upper,0.009887299537658692 +illusion_1.5L,ppo,15,6.0,omega,lower,0.011575267910957336 +illusion_1.5L,ppo,16,6.4,omega,front,0.007472513914108276 +illusion_1.5L,ppo,16,6.4,omega,upper,0.008443994522094727 +illusion_1.5L,ppo,16,6.4,omega,lower,0.01047013521194458 +illusion_1.5L,ppo,17,6.8,omega,front,0.005905010104179383 +illusion_1.5L,ppo,17,6.8,omega,upper,0.006867978572845459 +illusion_1.5L,ppo,17,6.8,omega,lower,0.00704238772392273 +illusion_1.5L,ppo,18,7.2,omega,front,0.004810399413108826 +illusion_1.5L,ppo,18,7.2,omega,upper,0.007402939796447754 +illusion_1.5L,ppo,18,7.2,omega,lower,0.005391690731048584 +illusion_1.5L,ppo,19,7.6,omega,front,0.003207296431064606 +illusion_1.5L,ppo,19,7.6,omega,upper,0.01102686882019043 +illusion_1.5L,ppo,19,7.6,omega,lower,0.0076943373680114745 +illusion_1.5L,ppo,20,8.0,omega,front,0.0022530981898307803 +illusion_1.5L,ppo,20,8.0,omega,upper,0.01019214153289795 +illusion_1.5L,ppo,20,8.0,omega,lower,0.00702878475189209 +illusion_1.5L,ppo,21,8.4,omega,front,0.0019970089197158813 +illusion_1.5L,ppo,21,8.4,omega,upper,0.005268838405609131 +illusion_1.5L,ppo,21,8.4,omega,lower,0.0029020226001739502 +illusion_1.5L,ppo,22,8.8,omega,front,-0.002232004404067993 +illusion_1.5L,ppo,22,8.8,omega,upper,0.001842207908630371 +illusion_1.5L,ppo,22,8.8,omega,lower,0.0005541038513183594 +illusion_1.5L,ppo,23,9.2,omega,front,-0.004667212963104248 +illusion_1.5L,ppo,23,9.2,omega,upper,-0.0013337361812591553 +illusion_1.5L,ppo,23,9.2,omega,lower,-0.00027025461196899413 +illusion_1.5L,ppo,24,9.6,omega,front,-0.0015261539816856385 +illusion_1.5L,ppo,24,9.6,omega,upper,-0.006171000003814697 +illusion_1.5L,ppo,24,9.6,omega,lower,-0.00124436616897583 +illusion_1.5L,ppo,25,10.0,omega,front,0.0035557577013969424 +illusion_1.5L,ppo,25,10.0,omega,upper,-0.010006976723670959 +illusion_1.5L,ppo,25,10.0,omega,lower,-0.0017753410339355468 +illusion_1.5L,ppo,26,10.4,omega,front,0.0030059805512428284 +illusion_1.5L,ppo,26,10.4,omega,upper,-0.011594375371932983 +illusion_1.5L,ppo,26,10.4,omega,lower,-0.003201777935028076 +illusion_1.5L,ppo,27,10.8,omega,front,-0.00042012423276901247 +illusion_1.5L,ppo,27,10.8,omega,upper,-0.01025514602661133 +illusion_1.5L,ppo,27,10.8,omega,lower,-0.005324833393096924 +illusion_1.5L,ppo,28,11.2,omega,front,-0.0014440876245498657 +illusion_1.5L,ppo,28,11.2,omega,upper,-0.006572694778442383 +illusion_1.5L,ppo,28,11.2,omega,lower,-0.00687464714050293 +illusion_1.5L,ppo,29,11.6,omega,front,0.00022486642003059388 +illusion_1.5L,ppo,29,11.6,omega,upper,-0.0016310715675354004 +illusion_1.5L,ppo,29,11.6,omega,lower,-0.006611287593841553 +illusion_1.5L,ppo,30,12.0,omega,front,0.0025659361481666565 +illusion_1.5L,ppo,30,12.0,omega,upper,0.0025362014770507813 +illusion_1.5L,ppo,30,12.0,omega,lower,-0.0049306249618530276 +illusion_1.5L,ppo,31,12.4,omega,front,0.003852786421775818 +illusion_1.5L,ppo,31,12.4,omega,upper,0.0016167211532592774 +illusion_1.5L,ppo,31,12.4,omega,lower,-0.004969532489776611 +illusion_1.5L,ppo,32,12.8,omega,front,0.0014701271057128906 +illusion_1.5L,ppo,32,12.8,omega,upper,-0.0014827346801757812 +illusion_1.5L,ppo,32,12.8,omega,lower,-0.004707694053649902 +illusion_1.5L,ppo,33,13.2,omega,front,-0.005071018338203431 +illusion_1.5L,ppo,33,13.2,omega,upper,-0.0024944353103637695 +illusion_1.5L,ppo,33,13.2,omega,lower,-0.001646881103515625 +illusion_1.5L,ppo,34,13.6,omega,front,-0.005119451284408569 +illusion_1.5L,ppo,34,13.6,omega,upper,-0.003928096294403076 +illusion_1.5L,ppo,34,13.6,omega,lower,0.0014213240146636963 +illusion_1.5L,ppo,35,14.0,omega,front,-0.0012575605511665345 +illusion_1.5L,ppo,35,14.0,omega,upper,-0.005574060678482056 +illusion_1.5L,ppo,35,14.0,omega,lower,0.0028154873847961426 +illusion_1.5L,ppo,36,14.4,omega,front,-0.0020696255564689636 +illusion_1.5L,ppo,36,14.4,omega,upper,-0.004350249767303467 +illusion_1.5L,ppo,36,14.4,omega,lower,0.003048539161682129 +illusion_1.5L,ppo,37,14.8,omega,front,-0.0036938709020614626 +illusion_1.5L,ppo,37,14.8,omega,upper,-0.00400567889213562 +illusion_1.5L,ppo,37,14.8,omega,lower,0.0004024744033813477 +illusion_1.5L,ppo,38,15.2,omega,front,-0.00176839679479599 +illusion_1.5L,ppo,38,15.2,omega,upper,-0.0029205799102783206 +illusion_1.5L,ppo,38,15.2,omega,lower,-0.001970508098602295 +illusion_1.5L,ppo,39,15.6,omega,front,-0.0003957954049110413 +illusion_1.5L,ppo,39,15.6,omega,upper,-0.00038080215454101564 +illusion_1.5L,ppo,39,15.6,omega,lower,-0.0018136858940124513 +illusion_1.5L,ppo,40,16.0,omega,front,0.0010464975237846374 +illusion_1.5L,ppo,40,16.0,omega,upper,-0.00044719696044921877 +illusion_1.5L,ppo,40,16.0,omega,lower,-0.0011406850814819336 +illusion_1.5L,ppo,41,16.4,omega,front,0.0029592552781105043 +illusion_1.5L,ppo,41,16.4,omega,upper,-0.0011687469482421875 +illusion_1.5L,ppo,41,16.4,omega,lower,0.0012229251861572265 +illusion_1.5L,ppo,42,16.8,omega,front,0.00481768786907196 +illusion_1.5L,ppo,42,16.8,omega,upper,-0.0003550577163696289 +illusion_1.5L,ppo,42,16.8,omega,lower,0.005874285697937012 +illusion_1.5L,ppo,43,17.2,omega,front,0.007268116474151612 +illusion_1.5L,ppo,43,17.2,omega,upper,0.0005350804328918457 +illusion_1.5L,ppo,43,17.2,omega,lower,0.010019391179084777 +illusion_1.5L,ppo,44,17.6,omega,front,0.008276234269142152 +illusion_1.5L,ppo,44,17.6,omega,upper,0.000823984146118164 +illusion_1.5L,ppo,44,17.6,omega,lower,0.01183782696723938 +illusion_1.5L,ppo,45,18.0,omega,front,0.0075521647930145265 +illusion_1.5L,ppo,45,18.0,omega,upper,0.0008570504188537598 +illusion_1.5L,ppo,45,18.0,omega,lower,0.011460378170013427 +illusion_1.5L,ppo,46,18.4,omega,front,0.006658228635787964 +illusion_1.5L,ppo,46,18.4,omega,upper,0.001063861846923828 +illusion_1.5L,ppo,46,18.4,omega,lower,0.009754748344421386 +illusion_1.5L,ppo,47,18.8,omega,front,0.0065583264827728275 +illusion_1.5L,ppo,47,18.8,omega,upper,0.0017340755462646484 +illusion_1.5L,ppo,47,18.8,omega,lower,0.007688038349151612 +illusion_1.5L,ppo,48,19.2,omega,front,0.005964444875717163 +illusion_1.5L,ppo,48,19.2,omega,upper,0.0021192073822021485 +illusion_1.5L,ppo,48,19.2,omega,lower,0.005549124479293823 +illusion_1.5L,ppo,49,19.6,omega,front,0.002259484827518463 +illusion_1.5L,ppo,49,19.6,omega,upper,0.002478036880493164 +illusion_1.5L,ppo,49,19.6,omega,lower,0.004124218225479126 +illusion_1.5L,ppo,50,20.0,omega,front,-0.002741820216178894 +illusion_1.5L,ppo,50,20.0,omega,upper,0.0017306900024414062 +illusion_1.5L,ppo,50,20.0,omega,lower,0.002342665195465088 +illusion_1.5L,ppo,51,20.4,omega,front,-0.005391049385070801 +illusion_1.5L,ppo,51,20.4,omega,upper,-0.0009195268154144287 +illusion_1.5L,ppo,51,20.4,omega,lower,-0.0008966279029846191 +illusion_1.5L,ppo,52,20.8,omega,front,-0.0050211334228515625 +illusion_1.5L,ppo,52,20.8,omega,upper,-0.0029876530170440674 +illusion_1.5L,ppo,52,20.8,omega,lower,-0.003424878120422363 +illusion_1.5L,ppo,53,21.2,omega,front,-0.0037060505151748657 +illusion_1.5L,ppo,53,21.2,omega,upper,-0.005343754291534424 +illusion_1.5L,ppo,53,21.2,omega,lower,-0.005437803268432617 +illusion_1.5L,ppo,54,21.6,omega,front,-0.002824721336364746 +illusion_1.5L,ppo,54,21.6,omega,upper,-0.007906763553619385 +illusion_1.5L,ppo,54,21.6,omega,lower,-0.00723233699798584 +illusion_1.5L,ppo,55,22.0,omega,front,-0.005043542385101319 +illusion_1.5L,ppo,55,22.0,omega,upper,-0.00800063729286194 +illusion_1.5L,ppo,55,22.0,omega,lower,-0.007663683891296387 +illusion_1.5L,ppo,56,22.4,omega,front,-0.005823725461959839 +illusion_1.5L,ppo,56,22.4,omega,upper,-0.006365240812301636 +illusion_1.5L,ppo,56,22.4,omega,lower,-0.007250423431396484 +illusion_1.5L,ppo,57,22.8,omega,front,-0.0033703821897506717 +illusion_1.5L,ppo,57,22.8,omega,upper,-0.004484481811523437 +illusion_1.5L,ppo,57,22.8,omega,lower,-0.007016458511352539 +illusion_1.5L,ppo,58,23.2,omega,front,0.00039865612983703614 +illusion_1.5L,ppo,58,23.2,omega,upper,-0.0019069314002990723 +illusion_1.5L,ppo,58,23.2,omega,lower,-0.006307487487792969 +illusion_1.5L,ppo,59,23.6,omega,front,0.00525816559791565 +illusion_1.5L,ppo,59,23.6,omega,upper,-0.003429535627365112 +illusion_1.5L,ppo,59,23.6,omega,lower,-0.007614390850067139 +illusion_1.5L,ppo,60,24.0,omega,front,0.004493147432804108 +illusion_1.5L,ppo,60,24.0,omega,upper,-0.004724375009536743 +illusion_1.5L,ppo,60,24.0,omega,lower,-0.007298002243041992 +illusion_1.5L,ppo,61,24.4,omega,front,-0.00185626357793808 +illusion_1.5L,ppo,61,24.4,omega,upper,-0.0007502365112304688 +illusion_1.5L,ppo,61,24.4,omega,lower,-0.0029645371437072754 +illusion_1.5L,ppo,62,24.8,omega,front,-0.00029419928789138795 +illusion_1.5L,ppo,62,24.8,omega,upper,0.0009509515762329101 +illusion_1.5L,ppo,62,24.8,omega,lower,-0.0007160377502441407 +illusion_1.5L,ppo,63,25.2,omega,front,0.005795633792877198 +illusion_1.5L,ppo,63,25.2,omega,upper,0.0021522903442382814 +illusion_1.5L,ppo,63,25.2,omega,lower,0.0012328565120697022 +illusion_1.5L,ppo,64,25.6,omega,front,0.005788458585739136 +illusion_1.5L,ppo,64,25.6,omega,upper,0.00440751314163208 +illusion_1.5L,ppo,64,25.6,omega,lower,0.0033841240406036377 +illusion_1.5L,ppo,65,26.0,omega,front,0.0051094633340835575 +illusion_1.5L,ppo,65,26.0,omega,upper,0.00278752326965332 +illusion_1.5L,ppo,65,26.0,omega,lower,0.0015983641147613527 +illusion_1.5L,ppo,66,26.4,omega,front,0.00509608268737793 +illusion_1.5L,ppo,66,26.4,omega,upper,0.0028519964218139647 +illusion_1.5L,ppo,66,26.4,omega,lower,0.0006269931793212891 +illusion_1.5L,ppo,67,26.8,omega,front,0.0037421652674674987 +illusion_1.5L,ppo,67,26.8,omega,upper,0.007744770050048829 +illusion_1.5L,ppo,67,26.8,omega,lower,0.00407850980758667 +illusion_1.5L,ppo,68,27.2,omega,front,0.004588925242424011 +illusion_1.5L,ppo,68,27.2,omega,upper,0.009517910480499268 +illusion_1.5L,ppo,68,27.2,omega,lower,0.00619543194770813 +illusion_1.5L,ppo,69,27.6,omega,front,0.006281877756118774 +illusion_1.5L,ppo,69,27.6,omega,upper,0.007583551406860352 +illusion_1.5L,ppo,69,27.6,omega,lower,0.005810058116912842 +illusion_1.5L,ppo,70,28.0,omega,front,0.005310468673706055 +illusion_1.5L,ppo,70,28.0,omega,upper,0.0055454492568969725 +illusion_1.5L,ppo,70,28.0,omega,lower,0.004768824577331543 +illusion_1.5L,ppo,71,28.4,omega,front,0.003948054313659668 +illusion_1.5L,ppo,71,28.4,omega,upper,0.0045972299575805665 +illusion_1.5L,ppo,71,28.4,omega,lower,0.004051153659820557 +illusion_1.5L,ppo,72,28.8,omega,front,0.003016664683818817 +illusion_1.5L,ppo,72,28.8,omega,upper,0.004773387908935547 +illusion_1.5L,ppo,72,28.8,omega,lower,0.004289195537567138 +illusion_1.5L,ppo,73,29.2,omega,front,0.002441001981496811 +illusion_1.5L,ppo,73,29.2,omega,upper,0.004215908050537109 +illusion_1.5L,ppo,73,29.2,omega,lower,0.004008697271347046 +illusion_1.5L,ppo,74,29.6,omega,front,0.0009642753005027771 +illusion_1.5L,ppo,74,29.6,omega,upper,0.0032308435440063475 +illusion_1.5L,ppo,74,29.6,omega,lower,0.003279235363006592 +illusion_1.5L,ppo,75,30.0,omega,front,-0.0013267359137535096 +illusion_1.5L,ppo,75,30.0,omega,upper,0.0012844038009643555 +illusion_1.5L,ppo,75,30.0,omega,lower,0.0016603434085845949 +illusion_1.5L,ppo,76,30.4,omega,front,-0.0030351930856704714 +illusion_1.5L,ppo,76,30.4,omega,upper,-0.001640312671661377 +illusion_1.5L,ppo,76,30.4,omega,lower,-0.0006554794311523438 +illusion_1.5L,ppo,77,30.8,omega,front,-0.004097734093666077 +illusion_1.5L,ppo,77,30.8,omega,upper,-0.003484048843383789 +illusion_1.5L,ppo,77,30.8,omega,lower,-0.0020122432708740237 +illusion_1.5L,ppo,78,31.2,omega,front,-0.003871344327926636 +illusion_1.5L,ppo,78,31.2,omega,upper,-0.004783506393432617 +illusion_1.5L,ppo,78,31.2,omega,lower,-0.0031908702850341796 +illusion_1.5L,ppo,79,31.6,omega,front,-0.00308461606502533 +illusion_1.5L,ppo,79,31.6,omega,upper,-0.005997393131256103 +illusion_1.5L,ppo,79,31.6,omega,lower,-0.004716677665710449 +illusion_1.5L,ppo,80,32.0,omega,front,-0.0044613730907440185 +illusion_1.5L,ppo,80,32.0,omega,upper,-0.005692024230957032 +illusion_1.5L,ppo,80,32.0,omega,lower,-0.005208282470703125 +illusion_1.5L,ppo,81,32.4,omega,front,-0.005550704598426819 +illusion_1.5L,ppo,81,32.4,omega,upper,-0.005627427101135254 +illusion_1.5L,ppo,81,32.4,omega,lower,-0.0055132627487182615 +illusion_1.5L,ppo,82,32.8,omega,front,-0.005299487113952637 +illusion_1.5L,ppo,82,32.8,omega,upper,-0.005882861614227295 +illusion_1.5L,ppo,82,32.8,omega,lower,-0.005578370094299317 +illusion_1.5L,ppo,83,33.2,omega,front,-0.003774806261062622 +illusion_1.5L,ppo,83,33.2,omega,upper,-0.0049068498611450195 +illusion_1.5L,ppo,83,33.2,omega,lower,-0.004565353393554687 +illusion_1.5L,ppo,84,33.6,omega,front,-0.0015761038661003114 +illusion_1.5L,ppo,84,33.6,omega,upper,-0.005425136089324952 +illusion_1.5L,ppo,84,33.6,omega,lower,-0.004476556777954102 +illusion_1.5L,ppo,85,34.0,omega,front,0.0009602162241935731 +illusion_1.5L,ppo,85,34.0,omega,upper,-0.006585156917572022 +illusion_1.5L,ppo,85,34.0,omega,lower,-0.004223597049713135 +illusion_1.5L,ppo,86,34.4,omega,front,0.0024537774920463562 +illusion_1.5L,ppo,86,34.4,omega,upper,-0.006727379560470581 +illusion_1.5L,ppo,86,34.4,omega,lower,-0.002784099578857422 +illusion_1.5L,ppo,87,34.8,omega,front,0.0032698851823806763 +illusion_1.5L,ppo,87,34.8,omega,upper,-0.006032489538192749 +illusion_1.5L,ppo,87,34.8,omega,lower,-0.0007158994674682618 +illusion_1.5L,ppo,88,35.2,omega,front,0.0029640984535217285 +illusion_1.5L,ppo,88,35.2,omega,upper,-0.003865466117858887 +illusion_1.5L,ppo,88,35.2,omega,lower,0.0017549395561218262 +illusion_1.5L,ppo,89,35.6,omega,front,0.0027667707204818725 +illusion_1.5L,ppo,89,35.6,omega,upper,-0.0008317148685455323 +illusion_1.5L,ppo,89,35.6,omega,lower,0.0035111379623413087 +illusion_1.5L,ppo,90,36.0,omega,front,0.003929006457328797 +illusion_1.5L,ppo,90,36.0,omega,upper,0.0012947463989257813 +illusion_1.5L,ppo,90,36.0,omega,lower,0.003518906831741333 +illusion_1.5L,ppo,91,36.4,omega,front,0.005805317163467407 +illusion_1.5L,ppo,91,36.4,omega,upper,0.0030022430419921874 +illusion_1.5L,ppo,91,36.4,omega,lower,0.00391232967376709 +illusion_1.5L,ppo,92,36.8,omega,front,0.007490320205688477 +illusion_1.5L,ppo,92,36.8,omega,upper,0.0037375354766845705 +illusion_1.5L,ppo,92,36.8,omega,lower,0.0044106578826904295 +illusion_1.5L,ppo,93,37.2,omega,front,0.008190717101097107 +illusion_1.5L,ppo,93,37.2,omega,upper,0.003784041404724121 +illusion_1.5L,ppo,93,37.2,omega,lower,0.004397499561309815 +illusion_1.5L,ppo,94,37.6,omega,front,0.007726075649261475 +illusion_1.5L,ppo,94,37.6,omega,upper,0.005376229286193848 +illusion_1.5L,ppo,94,37.6,omega,lower,0.005313003063201905 +illusion_1.5L,ppo,95,38.0,omega,front,0.007351816892623902 +illusion_1.5L,ppo,95,38.0,omega,upper,0.006772255897521973 +illusion_1.5L,ppo,95,38.0,omega,lower,0.005614299774169922 +illusion_1.5L,ppo,96,38.4,omega,front,0.005329715013504028 +illusion_1.5L,ppo,96,38.4,omega,upper,0.008462245464324952 +illusion_1.5L,ppo,96,38.4,omega,lower,0.005879565477371216 +illusion_1.5L,ppo,97,38.8,omega,front,0.0004482303559780121 +illusion_1.5L,ppo,97,38.8,omega,upper,0.009426617622375488 +illusion_1.5L,ppo,97,38.8,omega,lower,0.00593506932258606 +illusion_1.5L,ppo,98,39.2,omega,front,-0.0025553566217422488 +illusion_1.5L,ppo,98,39.2,omega,upper,0.007063870429992676 +illusion_1.5L,ppo,98,39.2,omega,lower,0.004212859869003296 +illusion_1.5L,ppo,99,39.6,omega,front,-0.0007039481401443482 +illusion_1.5L,ppo,99,39.6,omega,upper,0.0034106969833374023 +illusion_1.5L,ppo,99,39.6,omega,lower,0.0022627806663513186 +illusion_1.5L,ppo,100,40.0,omega,front,0.002613828778266907 +illusion_1.5L,ppo,100,40.0,omega,upper,0.0008504581451416015 +illusion_1.5L,ppo,100,40.0,omega,lower,0.0009466552734375 +illusion_1.5L,ppo,101,40.4,omega,front,0.0016930946707725525 +illusion_1.5L,ppo,101,40.4,omega,upper,-0.0010202836990356446 +illusion_1.5L,ppo,101,40.4,omega,lower,-0.0006347322463989258 +illusion_1.5L,ppo,102,40.8,omega,front,-0.0024202993512153627 +illusion_1.5L,ppo,102,40.8,omega,upper,-0.0024400293827056886 +illusion_1.5L,ppo,102,40.8,omega,lower,-0.002213120460510254 +illusion_1.5L,ppo,103,41.2,omega,front,-0.003825426697731018 +illusion_1.5L,ppo,103,41.2,omega,upper,-0.003707880973815918 +illusion_1.5L,ppo,103,41.2,omega,lower,-0.003561573028564453 +illusion_1.5L,ppo,104,41.6,omega,front,-0.0034452617168426515 +illusion_1.5L,ppo,104,41.6,omega,upper,-0.00396820068359375 +illusion_1.5L,ppo,104,41.6,omega,lower,-0.00406585693359375 +illusion_1.5L,ppo,105,42.0,omega,front,-0.003748897910118103 +illusion_1.5L,ppo,105,42.0,omega,upper,-0.0034461426734924317 +illusion_1.5L,ppo,105,42.0,omega,lower,-0.004428558349609375 +illusion_1.5L,ppo,106,42.4,omega,front,-0.003842843770980835 +illusion_1.5L,ppo,106,42.4,omega,upper,-0.0051140344142913815 +illusion_1.5L,ppo,106,42.4,omega,lower,-0.007096214294433594 +illusion_1.5L,ppo,107,42.8,omega,front,-0.0043002647161483765 +illusion_1.5L,ppo,107,42.8,omega,upper,-0.006061024665832519 +illusion_1.5L,ppo,107,42.8,omega,lower,-0.009155197143554688 +illusion_1.5L,ppo,108,43.2,omega,front,-0.00495972216129303 +illusion_1.5L,ppo,108,43.2,omega,upper,-0.004178647994995117 +illusion_1.5L,ppo,108,43.2,omega,lower,-0.008497025966644287 +illusion_1.5L,ppo,109,43.6,omega,front,-0.002989122271537781 +illusion_1.5L,ppo,109,43.6,omega,upper,-0.0035985159873962403 +illusion_1.5L,ppo,109,43.6,omega,lower,-0.007879695892333985 +illusion_1.5L,ppo,110,44.0,omega,front,0.0011555960774421693 +illusion_1.5L,ppo,110,44.0,omega,upper,-0.005046737194061279 +illusion_1.5L,ppo,110,44.0,omega,lower,-0.007732689380645752 +illusion_1.5L,ppo,111,44.4,omega,front,0.004351784586906433 +illusion_1.5L,ppo,111,44.4,omega,upper,-0.006600298881530762 +illusion_1.5L,ppo,111,44.4,omega,lower,-0.007536778450012207 +illusion_1.5L,ppo,112,44.8,omega,front,0.0034915632009506225 +illusion_1.5L,ppo,112,44.8,omega,upper,-0.005036499500274658 +illusion_1.5L,ppo,112,44.8,omega,lower,-0.005722010135650635 +illusion_1.5L,ppo,113,45.2,omega,front,-0.00024765163660049437 +illusion_1.5L,ppo,113,45.2,omega,upper,7.49659538269043e-05 +illusion_1.5L,ppo,113,45.2,omega,lower,-0.001753697395324707 +illusion_1.5L,ppo,114,45.6,omega,front,0.001120564341545105 +illusion_1.5L,ppo,114,45.6,omega,upper,0.0025406837463378905 +illusion_1.5L,ppo,114,45.6,omega,lower,0.0005282783508300782 +illusion_1.5L,ppo,115,46.0,omega,front,0.005695957541465759 +illusion_1.5L,ppo,115,46.0,omega,upper,0.0021968889236450195 +illusion_1.5L,ppo,115,46.0,omega,lower,0.0012732577323913575 +illusion_1.5L,ppo,116,46.4,omega,front,0.0062951862812042235 +illusion_1.5L,ppo,116,46.4,omega,upper,0.003640403747558594 +illusion_1.5L,ppo,116,46.4,omega,lower,0.0035658538341522216 +illusion_1.5L,ppo,117,46.8,omega,front,0.005738028287887573 +illusion_1.5L,ppo,117,46.8,omega,upper,0.0034271907806396485 +illusion_1.5L,ppo,117,46.8,omega,lower,0.004087646007537842 +illusion_1.5L,ppo,118,47.2,omega,front,0.007053308486938477 +illusion_1.5L,ppo,118,47.2,omega,upper,0.0032635450363159182 +illusion_1.5L,ppo,118,47.2,omega,lower,0.004000281095504761 +illusion_1.5L,ppo,119,47.6,omega,front,0.007529107332229615 +illusion_1.5L,ppo,119,47.6,omega,upper,0.00667858362197876 +illusion_1.5L,ppo,119,47.6,omega,lower,0.0062017822265625 +illusion_1.5L,ppo,120,48.0,omega,front,0.008403149843215942 +illusion_1.5L,ppo,120,48.0,omega,upper,0.008457603454589844 +illusion_1.5L,ppo,120,48.0,omega,lower,0.0066963577270507816 +illusion_1.5L,ppo,121,48.4,omega,front,0.008133808970451356 +illusion_1.5L,ppo,121,48.4,omega,upper,0.007781431674957276 +illusion_1.5L,ppo,121,48.4,omega,lower,0.0052717912197113035 +illusion_1.5L,ppo,122,48.8,omega,front,0.0030769819021224977 +illusion_1.5L,ppo,122,48.8,omega,upper,0.008244540691375733 +illusion_1.5L,ppo,122,48.8,omega,lower,0.0058082115650177 +illusion_1.5L,ppo,123,49.2,omega,front,-0.0007454654574394227 +illusion_1.5L,ppo,123,49.2,omega,upper,0.006907510757446289 +illusion_1.5L,ppo,123,49.2,omega,lower,0.006214900016784668 +illusion_1.5L,ppo,124,49.6,omega,front,-0.0024704864621162416 +illusion_1.5L,ppo,124,49.6,omega,upper,0.004172215461730957 +illusion_1.5L,ppo,124,49.6,omega,lower,0.005639332532882691 +illusion_1.5L,ppo,125,50.0,omega,front,-0.0021898970007896423 +illusion_1.5L,ppo,125,50.0,omega,upper,0.0016466236114501954 +illusion_1.5L,ppo,125,50.0,omega,lower,0.003978079557418824 +illusion_1.5L,ppo,126,50.4,omega,front,0.0023907341063022615 +illusion_1.5L,ppo,126,50.4,omega,upper,-0.002260134220123291 +illusion_1.5L,ppo,126,50.4,omega,lower,-0.00016198158264160156 +illusion_1.5L,ppo,127,50.8,omega,front,0.0027476954460144043 +illusion_1.5L,ppo,127,50.8,omega,upper,-0.0032395541667938235 +illusion_1.5L,ppo,127,50.8,omega,lower,-0.002193644046783447 +illusion_1.5L,ppo,128,51.2,omega,front,-0.0030019330978393556 +illusion_1.5L,ppo,128,51.2,omega,upper,-0.002026190757751465 +illusion_1.5L,ppo,128,51.2,omega,lower,-0.0022182226181030273 +illusion_1.5L,ppo,129,51.6,omega,front,-0.0044011777639389035 +illusion_1.5L,ppo,129,51.6,omega,upper,-0.003367297649383545 +illusion_1.5L,ppo,129,51.6,omega,lower,-0.00384906530380249 +illusion_1.5L,ppo,130,52.0,omega,front,-0.0031345057487487792 +illusion_1.5L,ppo,130,52.0,omega,upper,-0.002904486656188965 +illusion_1.5L,ppo,130,52.0,omega,lower,-0.003621995449066162 +illusion_1.5L,ppo,131,52.4,omega,front,-0.0035972541570663454 +illusion_1.5L,ppo,131,52.4,omega,upper,-0.0018701386451721192 +illusion_1.5L,ppo,131,52.4,omega,lower,-0.003131978511810303 +illusion_1.5L,ppo,132,52.8,omega,front,-0.003979700207710267 +illusion_1.5L,ppo,132,52.8,omega,upper,-0.00452642560005188 +illusion_1.5L,ppo,132,52.8,omega,lower,-0.005570034980773926 +illusion_1.5L,ppo,133,53.2,omega,front,-0.0050246411561965946 +illusion_1.5L,ppo,133,53.2,omega,upper,-0.006091446876525879 +illusion_1.5L,ppo,133,53.2,omega,lower,-0.006687488555908203 +illusion_1.5L,ppo,134,53.6,omega,front,-0.004405951499938965 +illusion_1.5L,ppo,134,53.6,omega,upper,-0.004964286088943482 +illusion_1.5L,ppo,134,53.6,omega,lower,-0.005447325706481934 +illusion_1.5L,ppo,135,54.0,omega,front,2.0933896303176882e-05 +illusion_1.5L,ppo,135,54.0,omega,upper,-0.004595346450805664 +illusion_1.5L,ppo,135,54.0,omega,lower,-0.004375536441802979 +illusion_1.5L,ppo,136,54.4,omega,front,0.0035292559862136843 +illusion_1.5L,ppo,136,54.4,omega,upper,-0.004269049167633056 +illusion_1.5L,ppo,136,54.4,omega,lower,-0.00294095516204834 +illusion_1.5L,ppo,137,54.8,omega,front,0.00590357780456543 +illusion_1.5L,ppo,137,54.8,omega,upper,-0.0055459606647491454 +illusion_1.5L,ppo,137,54.8,omega,lower,-0.0023256254196166995 +illusion_1.5L,ppo,138,55.2,omega,front,0.004290395379066467 +illusion_1.5L,ppo,138,55.2,omega,upper,-0.004140275716781616 +illusion_1.5L,ppo,138,55.2,omega,lower,-0.00040088415145874025 +illusion_1.5L,ppo,139,55.6,omega,front,-0.0006610128283500671 +illusion_1.5L,ppo,139,55.6,omega,upper,0.0014504241943359376 +illusion_1.5L,ppo,139,55.6,omega,lower,0.003065558671951294 +illusion_1.5L,ppo,140,56.0,omega,front,0.0015120914578437806 +illusion_1.5L,ppo,140,56.0,omega,upper,0.003360295295715332 +illusion_1.5L,ppo,140,56.0,omega,lower,0.003719627857208252 +illusion_1.5L,ppo,141,56.4,omega,front,0.006718391180038453 +illusion_1.5L,ppo,141,56.4,omega,upper,0.0035720205307006835 +illusion_1.5L,ppo,141,56.4,omega,lower,0.003916761875152588 +illusion_1.5L,ppo,142,56.8,omega,front,0.006494758129119873 +illusion_1.5L,ppo,142,56.8,omega,upper,0.004142601490020752 +illusion_1.5L,ppo,142,56.8,omega,lower,0.004337832927703857 +illusion_1.5L,ppo,143,57.2,omega,front,0.00551104485988617 +illusion_1.5L,ppo,143,57.2,omega,upper,0.0020145273208618166 +illusion_1.5L,ppo,143,57.2,omega,lower,0.0022509312629699707 +illusion_1.5L,ppo,144,57.6,omega,front,0.00527989387512207 +illusion_1.5L,ppo,144,57.6,omega,upper,0.001864914894104004 +illusion_1.5L,ppo,144,57.6,omega,lower,0.0016095566749572755 +illusion_1.5L,ppo,145,58.0,omega,front,0.0053448712825775145 +illusion_1.5L,ppo,145,58.0,omega,upper,0.005336933135986328 +illusion_1.5L,ppo,145,58.0,omega,lower,0.003982203006744385 +illusion_1.5L,ppo,146,58.4,omega,front,0.006421376466751099 +illusion_1.5L,ppo,146,58.4,omega,upper,0.006638035774230958 +illusion_1.5L,ppo,146,58.4,omega,lower,0.004527366161346436 +illusion_1.5L,ppo,147,58.8,omega,front,0.005218862891197205 +illusion_1.5L,ppo,147,58.8,omega,upper,0.005218031406402588 +illusion_1.5L,ppo,147,58.8,omega,lower,0.0030303192138671875 +illusion_1.5L,ppo,148,59.2,omega,front,4.356518387794495e-05 +illusion_1.5L,ppo,148,59.2,omega,upper,0.0028608369827270506 +illusion_1.5L,ppo,148,59.2,omega,lower,0.0016797256469726562 +illusion_1.5L,ppo,149,59.6,omega,front,-0.004331056475639344 +illusion_1.5L,ppo,149,59.6,omega,upper,0.00024513483047485353 +illusion_1.5L,ppo,149,59.6,omega,lower,0.0013867509365081787 +illusion_1.5L,ppo,150,60.0,omega,front,-0.0062594467401504515 +illusion_1.5L,ppo,150,60.0,omega,upper,-0.002151612043380737 +illusion_1.5L,ppo,150,60.0,omega,lower,0.001406165361404419 +illusion_1.5L,ppo,151,60.4,omega,front,-0.003733225464820862 +illusion_1.5L,ppo,151,60.4,omega,upper,-0.004935187101364136 +illusion_1.5L,ppo,151,60.4,omega,lower,-0.0006645727157592774 +illusion_1.5L,ppo,152,60.8,omega,front,0.00090442955493927 +illusion_1.5L,ppo,152,60.8,omega,upper,-0.006841336488723755 +illusion_1.5L,ppo,152,60.8,omega,lower,-0.004237594604492188 +illusion_1.5L,ppo,153,61.2,omega,front,-0.0005922523140907287 +illusion_1.5L,ppo,153,61.2,omega,upper,-0.006404846906661987 +illusion_1.5L,ppo,153,61.2,omega,lower,-0.006522645950317383 +illusion_1.5L,ppo,154,61.6,omega,front,-0.005333813428878785 +illusion_1.5L,ppo,154,61.6,omega,upper,-0.005418010950088501 +illusion_1.5L,ppo,154,61.6,omega,lower,-0.007723398208618165 +illusion_1.5L,ppo,155,62.0,omega,front,-0.00610252857208252 +illusion_1.5L,ppo,155,62.0,omega,upper,-0.00396592378616333 +illusion_1.5L,ppo,155,62.0,omega,lower,-0.007580170631408692 +illusion_1.5L,ppo,156,62.4,omega,front,-0.00406773328781128 +illusion_1.5L,ppo,156,62.4,omega,upper,-0.0014885997772216798 +illusion_1.5L,ppo,156,62.4,omega,lower,-0.0058790016174316406 +illusion_1.5L,ppo,157,62.8,omega,front,-0.002355047166347504 +illusion_1.5L,ppo,157,62.8,omega,upper,-0.0009097552299499512 +illusion_1.5L,ppo,157,62.8,omega,lower,-0.005114362239837646 +illusion_1.5L,ppo,158,63.2,omega,front,-0.0021492812037467958 +illusion_1.5L,ppo,158,63.2,omega,upper,-0.0028167641162872314 +illusion_1.5L,ppo,158,63.2,omega,lower,-0.005662481784820557 +illusion_1.5L,ppo,159,63.6,omega,front,-0.0024283480644226073 +illusion_1.5L,ppo,159,63.6,omega,upper,-0.004314994812011719 +illusion_1.5L,ppo,159,63.6,omega,lower,-0.005396790504455566 +illusion_1.5L,ppo,160,64.0,omega,front,0.000511629581451416 +illusion_1.5L,ppo,160,64.0,omega,upper,-0.0038457298278808593 +illusion_1.5L,ppo,160,64.0,omega,lower,-0.003071880340576172 +illusion_1.5L,ppo,161,64.4,omega,front,0.0052064239978790285 +illusion_1.5L,ppo,161,64.4,omega,upper,-0.002183835506439209 +illusion_1.5L,ppo,161,64.4,omega,lower,0.0004259169101715088 +illusion_1.5L,ppo,162,64.8,omega,front,0.0077750378847122196 +illusion_1.5L,ppo,162,64.8,omega,upper,-0.0015418648719787598 +illusion_1.5L,ppo,162,64.8,omega,lower,0.0030768179893493654 +illusion_1.5L,ppo,163,65.2,omega,front,0.0056581139564514165 +illusion_1.5L,ppo,163,65.2,omega,upper,0.0002744150161743164 +illusion_1.5L,ppo,163,65.2,omega,lower,0.0053414106369018555 +illusion_1.5L,ppo,164,65.6,omega,front,0.002924451231956482 +illusion_1.5L,ppo,164,65.6,omega,upper,0.003191041946411133 +illusion_1.5L,ppo,164,65.6,omega,lower,0.006642625331878663 +illusion_1.5L,ppo,165,66.0,omega,front,0.005502903461456299 +illusion_1.5L,ppo,165,66.0,omega,upper,0.004533352851867676 +illusion_1.5L,ppo,165,66.0,omega,lower,0.006691427230834961 +illusion_1.5L,ppo,166,66.4,omega,front,0.008257681727409363 +illusion_1.5L,ppo,166,66.4,omega,upper,0.006522965431213379 +illusion_1.5L,ppo,166,66.4,omega,lower,0.007597708702087403 +illusion_1.5L,ppo,167,66.8,omega,front,0.008971048593521118 +illusion_1.5L,ppo,167,66.8,omega,upper,0.007403702735900879 +illusion_1.5L,ppo,167,66.8,omega,lower,0.0072490620613098146 +illusion_1.5L,ppo,168,67.2,omega,front,0.00917228877544403 +illusion_1.5L,ppo,168,67.2,omega,upper,0.006029744148254395 +illusion_1.5L,ppo,168,67.2,omega,lower,0.004641896486282349 +illusion_1.5L,ppo,169,67.6,omega,front,0.007285356521606445 +illusion_1.5L,ppo,169,67.6,omega,upper,0.0068366146087646485 +illusion_1.5L,ppo,169,67.6,omega,lower,0.004032920598983765 +illusion_1.5L,ppo,170,68.0,omega,front,0.0047199100255966185 +illusion_1.5L,ppo,170,68.0,omega,upper,0.00830693483352661 +illusion_1.5L,ppo,170,68.0,omega,lower,0.004695414304733276 +illusion_1.5L,ppo,171,68.4,omega,front,0.003582858443260193 +illusion_1.5L,ppo,171,68.4,omega,upper,0.007568554878234863 +illusion_1.5L,ppo,171,68.4,omega,lower,0.004298276901245117 +illusion_1.5L,ppo,172,68.8,omega,front,-0.0005641785264015197 +illusion_1.5L,ppo,172,68.8,omega,upper,0.006140584945678711 +illusion_1.5L,ppo,172,68.8,omega,lower,0.004445322751998901 +illusion_1.5L,ppo,173,69.2,omega,front,-0.005334343910217285 +illusion_1.5L,ppo,173,69.2,omega,upper,0.002763667106628418 +illusion_1.5L,ppo,173,69.2,omega,lower,0.003496500253677368 +illusion_1.5L,ppo,174,69.6,omega,front,-0.0038520252704620363 +illusion_1.5L,ppo,174,69.6,omega,upper,-0.002152373790740967 +illusion_1.5L,ppo,174,69.6,omega,lower,0.0003442049026489258 +illusion_1.5L,ppo,175,70.0,omega,front,0.00023592367768287658 +illusion_1.5L,ppo,175,70.0,omega,upper,-0.005356398820877076 +illusion_1.5L,ppo,175,70.0,omega,lower,-0.0026194262504577637 +illusion_1.5L,ppo,176,70.4,omega,front,-0.0009280821681022644 +illusion_1.5L,ppo,176,70.4,omega,upper,-0.005720516443252563 +illusion_1.5L,ppo,176,70.4,omega,lower,-0.004085671901702881 +illusion_1.5L,ppo,177,70.8,omega,front,-0.005012145042419433 +illusion_1.5L,ppo,177,70.8,omega,upper,-0.005919535160064698 +illusion_1.5L,ppo,177,70.8,omega,lower,-0.0056780481338500974 +illusion_1.5L,ppo,178,71.2,omega,front,-0.0061581432819366455 +illusion_1.5L,ppo,178,71.2,omega,upper,-0.006144797801971436 +illusion_1.5L,ppo,178,71.2,omega,lower,-0.0069476842880249025 +illusion_1.5L,ppo,179,71.6,omega,front,-0.006061066389083863 +illusion_1.5L,ppo,179,71.6,omega,upper,-0.004213683605194092 +illusion_1.5L,ppo,179,71.6,omega,lower,-0.006160430908203125 +illusion_1.5L,ppo,180,72.0,omega,front,-0.005444675087928772 +illusion_1.5L,ppo,180,72.0,omega,upper,-0.002682669162750244 +illusion_1.5L,ppo,180,72.0,omega,lower,-0.005585815906524658 +illusion_1.5L,ppo,181,72.4,omega,front,-0.0037872183322906496 +illusion_1.5L,ppo,181,72.4,omega,upper,-0.004772853851318359 +illusion_1.5L,ppo,181,72.4,omega,lower,-0.007522904872894288 +illusion_1.5L,ppo,182,72.8,omega,front,-0.0024328696727752685 +illusion_1.5L,ppo,182,72.8,omega,upper,-0.00653274416923523 +illusion_1.5L,ppo,182,72.8,omega,lower,-0.00867872714996338 +illusion_1.5L,ppo,183,73.2,omega,front,-0.0008994758129119873 +illusion_1.5L,ppo,183,73.2,omega,upper,-0.0051770913600921635 +illusion_1.5L,ppo,183,73.2,omega,lower,-0.007097249031066895 +illusion_1.5L,ppo,184,73.6,omega,front,0.0039926058053970336 +illusion_1.5L,ppo,184,73.6,omega,upper,-0.004980666637420654 +illusion_1.5L,ppo,184,73.6,omega,lower,-0.0062124872207641605 +illusion_1.5L,ppo,185,74.0,omega,front,0.0047314298152923585 +illusion_1.5L,ppo,185,74.0,omega,upper,-0.0031803977489471436 +illusion_1.5L,ppo,185,74.0,omega,lower,-0.004224832057952881 +illusion_1.5L,ppo,186,74.4,omega,front,0.00034772202372550964 +illusion_1.5L,ppo,186,74.4,omega,upper,0.0003203725814819336 +illusion_1.5L,ppo,186,74.4,omega,lower,-0.0011438608169555664 +illusion_1.5L,ppo,187,74.8,omega,front,0.0008651268482208252 +illusion_1.5L,ppo,187,74.8,omega,upper,0.0002940225601196289 +illusion_1.5L,ppo,187,74.8,omega,lower,-0.00048126220703125 +illusion_1.5L,ppo,188,75.2,omega,front,0.004474874138832093 +illusion_1.5L,ppo,188,75.2,omega,upper,0.0012048053741455077 +illusion_1.5L,ppo,188,75.2,omega,lower,0.0013511812686920167 +illusion_1.5L,ppo,189,75.6,omega,front,0.005495847463607788 +illusion_1.5L,ppo,189,75.6,omega,upper,0.004013371467590332 +illusion_1.5L,ppo,189,75.6,omega,lower,0.004525173902511597 +illusion_1.5L,ppo,190,76.0,omega,front,0.00644020676612854 +illusion_1.5L,ppo,190,76.0,omega,upper,0.0032102012634277343 +illusion_1.5L,ppo,190,76.0,omega,lower,0.0042659687995910646 +illusion_1.5L,ppo,191,76.4,omega,front,0.007211050987243652 +illusion_1.5L,ppo,191,76.4,omega,upper,0.0029255008697509767 +illusion_1.5L,ppo,191,76.4,omega,lower,0.003881940841674805 +illusion_1.5L,ppo,192,76.8,omega,front,0.0070031356811523435 +illusion_1.5L,ppo,192,76.8,omega,upper,0.0056088209152221685 +illusion_1.5L,ppo,192,76.8,omega,lower,0.005556836128234864 +illusion_1.5L,ppo,193,77.2,omega,front,0.008220662474632264 +illusion_1.5L,ppo,193,77.2,omega,upper,0.007130565643310547 +illusion_1.5L,ppo,193,77.2,omega,lower,0.005988154411315918 +illusion_1.5L,ppo,194,77.6,omega,front,0.008813800811767579 +illusion_1.5L,ppo,194,77.6,omega,upper,0.007623522281646728 +illusion_1.5L,ppo,194,77.6,omega,lower,0.005455498695373535 +illusion_1.5L,ppo,195,78.0,omega,front,0.005424689054489136 +illusion_1.5L,ppo,195,78.0,omega,upper,0.007758960723876954 +illusion_1.5L,ppo,195,78.0,omega,lower,0.004964416027069092 +illusion_1.5L,ppo,196,78.4,omega,front,-0.0005591771006584167 +illusion_1.5L,ppo,196,78.4,omega,upper,0.007309656143188477 +illusion_1.5L,ppo,196,78.4,omega,lower,0.0050460493564605715 +illusion_1.5L,ppo,197,78.8,omega,front,-0.004006779789924622 +illusion_1.5L,ppo,197,78.8,omega,upper,0.0048148584365844726 +illusion_1.5L,ppo,197,78.8,omega,lower,0.004758538007736206 +illusion_1.5L,ppo,198,79.2,omega,front,-0.002912231683731079 +illusion_1.5L,ppo,198,79.2,omega,upper,0.00040650367736816406 +illusion_1.5L,ppo,198,79.2,omega,lower,0.0029601502418518067 +illusion_1.5L,ppo,199,79.6,omega,front,0.0019549459218978884 +illusion_1.5L,ppo,199,79.6,omega,upper,-0.0030635595321655273 +illusion_1.5L,ppo,199,79.6,omega,lower,-8.536815643310547e-05 +illusion_1.5L,ppo,200,80.0,omega,front,0.0019653746485710144 +illusion_1.5L,ppo,200,80.0,omega,upper,-0.0030629992485046386 +illusion_1.5L,ppo,200,80.0,omega,lower,-0.0017561769485473634 +illusion_1.5L,ppo,201,80.4,omega,front,-0.002630223631858826 +illusion_1.5L,ppo,201,80.4,omega,upper,-0.0031938815116882326 +illusion_1.5L,ppo,201,80.4,omega,lower,-0.0033417224884033205 +illusion_1.5L,ppo,202,80.8,omega,front,-0.004711184501647949 +illusion_1.5L,ppo,202,80.8,omega,upper,-0.0039596867561340334 +illusion_1.5L,ppo,202,80.8,omega,lower,-0.004766273498535156 +illusion_1.5L,ppo,203,81.2,omega,front,-0.004193136096000672 +illusion_1.5L,ppo,203,81.2,omega,upper,-0.0029746663570404054 +illusion_1.5L,ppo,203,81.2,omega,lower,-0.004184670448303222 +illusion_1.5L,ppo,204,81.6,omega,front,-0.0038064706325531008 +illusion_1.5L,ppo,204,81.6,omega,upper,-0.0026517367362976075 +illusion_1.5L,ppo,204,81.6,omega,lower,-0.004079163074493408 +illusion_1.5L,ppo,205,82.0,omega,front,-0.004211268424987793 +illusion_1.5L,ppo,205,82.0,omega,upper,-0.004356704950332642 +illusion_1.5L,ppo,205,82.0,omega,lower,-0.005652904510498047 +illusion_1.5L,ppo,206,82.4,omega,front,-0.00498403012752533 +illusion_1.5L,ppo,206,82.4,omega,upper,-0.005951869487762451 +illusion_1.5L,ppo,206,82.4,omega,lower,-0.007110533714294434 +illusion_1.5L,ppo,207,82.8,omega,front,-0.004079407453536988 +illusion_1.5L,ppo,207,82.8,omega,upper,-0.005627063512802124 +illusion_1.5L,ppo,207,82.8,omega,lower,-0.006694984436035156 +illusion_1.5L,ppo,208,83.2,omega,front,0.000759427547454834 +illusion_1.5L,ppo,208,83.2,omega,upper,-0.005653985738754272 +illusion_1.5L,ppo,208,83.2,omega,lower,-0.005721206665039062 +illusion_1.5L,ppo,209,83.6,omega,front,0.005450265407562256 +illusion_1.5L,ppo,209,83.6,omega,upper,-0.006713688373565674 +illusion_1.5L,ppo,209,83.6,omega,lower,-0.005128226280212402 +illusion_1.5L,ppo,210,84.0,omega,front,0.0025157716870307925 +illusion_1.5L,ppo,210,84.0,omega,upper,-0.004590737819671631 +illusion_1.5L,ppo,210,84.0,omega,lower,-0.0032907056808471682 +illusion_1.5L,ppo,211,84.4,omega,front,-0.0018740859627723694 +illusion_1.5L,ppo,211,84.4,omega,upper,-0.0011842942237854004 +illusion_1.5L,ppo,211,84.4,omega,lower,-0.0017292118072509766 +illusion_1.5L,ppo,212,84.8,omega,front,0.000996425598859787 +illusion_1.5L,ppo,212,84.8,omega,upper,-0.00039108037948608397 +illusion_1.5L,ppo,212,84.8,omega,lower,-0.00157163143157959 +illusion_1.5L,ppo,213,85.2,omega,front,0.0045432871580123905 +illusion_1.5L,ppo,213,85.2,omega,upper,0.002371721267700195 +illusion_1.5L,ppo,213,85.2,omega,lower,0.0011232638359069825 +illusion_1.5L,ppo,214,85.6,omega,front,0.005313880443572998 +illusion_1.5L,ppo,214,85.6,omega,upper,0.004160828590393066 +illusion_1.5L,ppo,214,85.6,omega,lower,0.0032664334774017336 +illusion_1.5L,ppo,215,86.0,omega,front,0.0062033945322036745 +illusion_1.5L,ppo,215,86.0,omega,upper,0.0013697719573974609 +illusion_1.5L,ppo,215,86.0,omega,lower,0.0014585137367248535 +illusion_1.5L,ppo,216,86.4,omega,front,0.005581793785095215 +illusion_1.5L,ppo,216,86.4,omega,upper,0.0021223545074462893 +illusion_1.5L,ppo,216,86.4,omega,lower,0.0019975006580352783 +illusion_1.5L,ppo,217,86.8,omega,front,0.005149763822555542 +illusion_1.5L,ppo,217,86.8,omega,upper,0.0064446949958801274 +illusion_1.5L,ppo,217,86.8,omega,lower,0.0048936808109283445 +illusion_1.5L,ppo,218,87.2,omega,front,0.007430788278579712 +illusion_1.5L,ppo,218,87.2,omega,upper,0.008524637222290039 +illusion_1.5L,ppo,218,87.2,omega,lower,0.005732190608978271 +illusion_1.5L,ppo,219,87.6,omega,front,0.007613867521286011 +illusion_1.5L,ppo,219,87.6,omega,upper,0.008973259925842286 +illusion_1.5L,ppo,219,87.6,omega,lower,0.005869474411010742 +illusion_1.5L,ppo,220,88.0,omega,front,0.00426206111907959 +illusion_1.5L,ppo,220,88.0,omega,upper,0.007555127143859863 +illusion_1.5L,ppo,220,88.0,omega,lower,0.005666590929031372 +illusion_1.5L,ppo,221,88.4,omega,front,-0.00043631404638290407 +illusion_1.5L,ppo,221,88.4,omega,upper,0.005284085273742676 +illusion_1.5L,ppo,221,88.4,omega,lower,0.00545351505279541 +illusion_1.5L,ppo,222,88.8,omega,front,-0.0024943822622299195 +illusion_1.5L,ppo,222,88.8,omega,upper,0.003939299583435058 +illusion_1.5L,ppo,222,88.8,omega,lower,0.005549486875534058 +illusion_1.5L,ppo,223,89.2,omega,front,-0.0021215930581092836 +illusion_1.5L,ppo,223,89.2,omega,upper,0.002907981872558594 +illusion_1.5L,ppo,223,89.2,omega,lower,0.0048869049549102785 +illusion_1.5L,ppo,224,89.6,omega,front,0.0023622001707553865 +illusion_1.5L,ppo,224,89.6,omega,upper,2.4404525756835937e-05 +illusion_1.5L,ppo,224,89.6,omega,lower,0.0019103288650512695 +illusion_1.5L,ppo,225,90.0,omega,front,0.0038165807723999023 +illusion_1.5L,ppo,225,90.0,omega,upper,-0.0015162229537963867 +illusion_1.5L,ppo,225,90.0,omega,lower,-0.0005199861526489258 +illusion_1.5L,ppo,226,90.4,omega,front,-0.0012932214140892028 +illusion_1.5L,ppo,226,90.4,omega,upper,-0.001549438238143921 +illusion_1.5L,ppo,226,90.4,omega,lower,-0.0016643524169921875 +illusion_1.5L,ppo,227,90.8,omega,front,-0.004127517938613891 +illusion_1.5L,ppo,227,90.8,omega,upper,-0.002416430711746216 +illusion_1.5L,ppo,227,90.8,omega,lower,-0.00296504020690918 +illusion_1.5L,ppo,228,91.2,omega,front,-0.0032197123765945433 +illusion_1.5L,ppo,228,91.2,omega,upper,-0.0024349188804626467 +illusion_1.5L,ppo,228,91.2,omega,lower,-0.0030702877044677737 +illusion_1.5L,ppo,229,91.6,omega,front,-0.002570437788963318 +illusion_1.5L,ppo,229,91.6,omega,upper,-0.0015976715087890625 +illusion_1.5L,ppo,229,91.6,omega,lower,-0.002627251148223877 +illusion_1.5L,ppo,230,92.0,omega,front,-0.0028590166568756106 +illusion_1.5L,ppo,230,92.0,omega,upper,-0.0029696393013000488 +illusion_1.5L,ppo,230,92.0,omega,lower,-0.00443608283996582 +illusion_1.5L,ppo,231,92.4,omega,front,-0.0036602365970611573 +illusion_1.5L,ppo,231,92.4,omega,upper,-0.005720744132995606 +illusion_1.5L,ppo,231,92.4,omega,lower,-0.007242207527160645 +illusion_1.5L,ppo,232,92.8,omega,front,-0.004208977818489075 +illusion_1.5L,ppo,232,92.8,omega,upper,-0.006080409288406372 +illusion_1.5L,ppo,232,92.8,omega,lower,-0.007370874881744385 +illusion_1.5L,ppo,233,93.2,omega,front,-0.0007061994075775146 +illusion_1.5L,ppo,233,93.2,omega,upper,-0.0058972549438476565 +illusion_1.5L,ppo,233,93.2,omega,lower,-0.006012182235717774 +illusion_1.5L,ppo,234,93.6,omega,front,0.00393081396818161 +illusion_1.5L,ppo,234,93.6,omega,upper,-0.006854281425476075 +illusion_1.5L,ppo,234,93.6,omega,lower,-0.005700459480285644 +illusion_1.5L,ppo,235,94.0,omega,front,0.004350166320800782 +illusion_1.5L,ppo,235,94.0,omega,upper,-0.006692852973937988 +illusion_1.5L,ppo,235,94.0,omega,lower,-0.005484316349029541 +illusion_1.5L,ppo,236,94.4,omega,front,-4.7403872013092045e-05 +illusion_1.5L,ppo,236,94.4,omega,upper,-0.0031973576545715333 +illusion_1.5L,ppo,236,94.4,omega,lower,-0.003674147129058838 +illusion_1.5L,ppo,237,94.8,omega,front,-0.0019450649619102479 +illusion_1.5L,ppo,237,94.8,omega,upper,-0.0004919159412384033 +illusion_1.5L,ppo,237,94.8,omega,lower,-0.002603559494018555 +illusion_1.5L,ppo,238,95.2,omega,front,0.002247903048992157 +illusion_1.5L,ppo,238,95.2,omega,upper,0.0005259132385253907 +illusion_1.5L,ppo,238,95.2,omega,lower,-0.0018090152740478517 +illusion_1.5L,ppo,239,95.6,omega,front,0.005190973281860352 +illusion_1.5L,ppo,239,95.6,omega,upper,0.002562851905822754 +illusion_1.5L,ppo,239,95.6,omega,lower,0.000348658561706543 +illusion_1.5L,ppo,240,96.0,omega,front,0.005424928069114685 +illusion_1.5L,ppo,240,96.0,omega,upper,0.002581901550292969 +illusion_1.5L,ppo,240,96.0,omega,lower,0.0008278524875640869 +illusion_1.5L,ppo,241,96.4,omega,front,0.005345518589019775 +illusion_1.5L,ppo,241,96.4,omega,upper,0.0018506264686584473 +illusion_1.5L,ppo,241,96.4,omega,lower,0.0003463470935821533 +illusion_1.5L,ppo,242,96.8,omega,front,0.005271670818328858 +illusion_1.5L,ppo,242,96.8,omega,upper,0.004132835865020752 +illusion_1.5L,ppo,242,96.8,omega,lower,0.0018398702144622804 +illusion_1.5L,ppo,243,97.2,omega,front,0.0060984051227569586 +illusion_1.5L,ppo,243,97.2,omega,upper,0.0076005148887634275 +illusion_1.5L,ppo,243,97.2,omega,lower,0.004236574172973633 +illusion_1.5L,ppo,244,97.6,omega,front,0.006948131918907165 +illusion_1.5L,ppo,244,97.6,omega,upper,0.009385025501251221 +illusion_1.5L,ppo,244,97.6,omega,lower,0.005991761684417725 +illusion_1.5L,ppo,245,98.0,omega,front,0.0063469564914703375 +illusion_1.5L,ppo,245,98.0,omega,upper,0.008145413398742677 +illusion_1.5L,ppo,245,98.0,omega,lower,0.00633415937423706 +illusion_1.5L,ppo,246,98.4,omega,front,0.002994007170200348 +illusion_1.5L,ppo,246,98.4,omega,upper,0.005923001766204834 +illusion_1.5L,ppo,246,98.4,omega,lower,0.0062720501422882085 +illusion_1.5L,ppo,247,98.8,omega,front,-0.00032154202461242675 +illusion_1.5L,ppo,247,98.8,omega,upper,0.004270448684692383 +illusion_1.5L,ppo,247,98.8,omega,lower,0.0062295269966125486 +illusion_1.5L,ppo,248,99.2,omega,front,-0.0011328831315040588 +illusion_1.5L,ppo,248,99.2,omega,upper,0.003173933029174805 +illusion_1.5L,ppo,248,99.2,omega,lower,0.0053499948978424075 +illusion_1.5L,ppo,249,99.6,omega,front,-0.00207712322473526 +illusion_1.5L,ppo,249,99.6,omega,upper,0.0028069615364074707 +illusion_1.5L,ppo,249,99.6,omega,lower,0.0043377125263214114 +illusion_1.5L,ppo,250,100.0,omega,front,-9.332209825515747e-05 +illusion_1.5L,ppo,250,100.0,omega,upper,0.0003268265724182129 +illusion_1.5L,ppo,250,100.0,omega,lower,0.0016572856903076172 +illusion_1.5L,ppo,251,100.4,omega,front,0.003432551324367523 +illusion_1.5L,ppo,251,100.4,omega,upper,-0.002868788242340088 +illusion_1.5L,ppo,251,100.4,omega,lower,-0.0018708920478820801 +illusion_1.5L,ppo,252,100.8,omega,front,-0.000159778892993927 +illusion_1.5L,ppo,252,100.8,omega,upper,-0.0019138312339782716 +illusion_1.5L,ppo,252,100.8,omega,lower,-0.0021195077896118165 +illusion_1.5L,ppo,253,101.2,omega,front,-0.004273987412452698 +illusion_1.5L,ppo,253,101.2,omega,upper,-0.0021105122566223147 +illusion_1.5L,ppo,253,101.2,omega,lower,-0.0030677199363708498 +illusion_1.5L,ppo,254,101.6,omega,front,-0.003396369814872742 +illusion_1.5L,ppo,254,101.6,omega,upper,-0.004495451450347901 +illusion_1.5L,ppo,254,101.6,omega,lower,-0.005362782478332519 +illusion_1.5L,ppo,255,102.0,omega,front,-0.00375585675239563 +illusion_1.5L,ppo,255,102.0,omega,upper,-0.0033187401294708253 +illusion_1.5L,ppo,255,102.0,omega,lower,-0.004706387519836426 +illusion_1.5L,ppo,256,102.4,omega,front,-0.00467175841331482 +illusion_1.5L,ppo,256,102.4,omega,upper,-0.003232545852661133 +illusion_1.5L,ppo,256,102.4,omega,lower,-0.0050767135620117185 +illusion_1.5L,ppo,257,102.8,omega,front,-0.004225544929504395 +illusion_1.5L,ppo,257,102.8,omega,upper,-0.006112796068191528 +illusion_1.5L,ppo,257,102.8,omega,lower,-0.007322325706481934 +illusion_1.5L,ppo,258,103.2,omega,front,-0.0045180004835128785 +illusion_1.5L,ppo,258,103.2,omega,upper,-0.006413793563842774 +illusion_1.5L,ppo,258,103.2,omega,lower,-0.006755928993225098 +illusion_1.5L,ppo,259,103.6,omega,front,-0.0024556350708007813 +illusion_1.5L,ppo,259,103.6,omega,upper,-0.0067068469524383546 +illusion_1.5L,ppo,259,103.6,omega,lower,-0.005747218132019043 +illusion_1.5L,ppo,260,104.0,omega,front,0.0012491847574710845 +illusion_1.5L,ppo,260,104.0,omega,upper,-0.0076267850399017335 +illusion_1.5L,ppo,260,104.0,omega,lower,-0.0055914306640625 +illusion_1.5L,ppo,261,104.4,omega,front,0.0033186182379722597 +illusion_1.5L,ppo,261,104.4,omega,upper,-0.007101124525070191 +illusion_1.5L,ppo,261,104.4,omega,lower,-0.00520291805267334 +illusion_1.5L,ppo,262,104.8,omega,front,0.004417091310024261 +illusion_1.5L,ppo,262,104.8,omega,upper,-0.006166636943817139 +illusion_1.5L,ppo,262,104.8,omega,lower,-0.004968087673187256 +illusion_1.5L,ppo,263,105.2,omega,front,0.0014908185601234436 +illusion_1.5L,ppo,263,105.2,omega,upper,-0.0014396464824676515 +illusion_1.5L,ppo,263,105.2,omega,lower,-0.002023630142211914 +illusion_1.5L,ppo,264,105.6,omega,front,-0.000305558443069458 +illusion_1.5L,ppo,264,105.6,omega,upper,0.0030777382850646975 +illusion_1.5L,ppo,264,105.6,omega,lower,0.001063932180404663 +illusion_1.5L,ppo,265,106.0,omega,front,0.0045804762840271 +illusion_1.5L,ppo,265,106.0,omega,upper,0.0025542020797729493 +illusion_1.5L,ppo,265,106.0,omega,lower,0.0012779533863067627 +illusion_1.5L,ppo,266,106.4,omega,front,0.007131701707839966 +illusion_1.5L,ppo,266,106.4,omega,upper,0.0033417367935180665 +illusion_1.5L,ppo,266,106.4,omega,lower,0.0029627656936645507 +illusion_1.5L,ppo,267,106.8,omega,front,0.005969294309616089 +illusion_1.5L,ppo,267,106.8,omega,upper,0.00435673713684082 +illusion_1.5L,ppo,267,106.8,omega,lower,0.0044832050800323485 +illusion_1.5L,ppo,268,107.2,omega,front,0.006857279539108276 +illusion_1.5L,ppo,268,107.2,omega,upper,0.0033716535568237304 +illusion_1.5L,ppo,268,107.2,omega,lower,0.00370347261428833 +illusion_1.5L,ppo,269,107.6,omega,front,0.0077619200944900515 +illusion_1.5L,ppo,269,107.6,omega,upper,0.005761804580688477 +illusion_1.5L,ppo,269,107.6,omega,lower,0.004998269081115723 +illusion_1.5L,ppo,270,108.0,omega,front,0.008143571615219116 +illusion_1.5L,ppo,270,108.0,omega,upper,0.00880573272705078 +illusion_1.5L,ppo,270,108.0,omega,lower,0.006527942419052124 +illusion_1.5L,ppo,271,108.4,omega,front,0.007756946086883545 +illusion_1.5L,ppo,271,108.4,omega,upper,0.008918139934539795 +illusion_1.5L,ppo,271,108.4,omega,lower,0.005946838855743409 +illusion_1.5L,ppo,272,108.8,omega,front,0.0029951193928718567 +illusion_1.5L,ppo,272,108.8,omega,upper,0.008630492687225343 +illusion_1.5L,ppo,272,108.8,omega,lower,0.0063269901275634765 +illusion_1.5L,ppo,273,109.2,omega,front,-0.0006976175308227539 +illusion_1.5L,ppo,273,109.2,omega,upper,0.006509699821472168 +illusion_1.5L,ppo,273,109.2,omega,lower,0.0064925217628479005 +illusion_1.5L,ppo,274,109.6,omega,front,-0.0013728725910186767 +illusion_1.5L,ppo,274,109.6,omega,upper,0.003136861324310303 +illusion_1.5L,ppo,274,109.6,omega,lower,0.005665636062622071 +illusion_1.5L,ppo,275,110.0,omega,front,-0.002334595322608948 +illusion_1.5L,ppo,275,110.0,omega,upper,0.0009262347221374511 +illusion_1.5L,ppo,275,110.0,omega,lower,0.004376304149627685 +illusion_1.5L,ppo,276,110.4,omega,front,0.00035882562398910524 +illusion_1.5L,ppo,276,110.4,omega,upper,-0.0018659019470214843 +illusion_1.5L,ppo,276,110.4,omega,lower,0.0008362102508544922 +illusion_1.5L,ppo,277,110.8,omega,front,0.0036422994732856753 +illusion_1.5L,ppo,277,110.8,omega,upper,-0.003925516605377198 +illusion_1.5L,ppo,277,110.8,omega,lower,-0.0025239825248718263 +illusion_1.5L,ppo,278,111.2,omega,front,-0.0007691660523414612 +illusion_1.5L,ppo,278,111.2,omega,upper,-0.002180954217910767 +illusion_1.5L,ppo,278,111.2,omega,lower,-0.0024569559097290038 +illusion_1.5L,ppo,279,111.6,omega,front,-0.0046609628200531 +illusion_1.5L,ppo,279,111.6,omega,upper,-0.002058160305023193 +illusion_1.5L,ppo,279,111.6,omega,lower,-0.0032314300537109376 +illusion_1.5L,ppo,280,112.0,omega,front,-0.003233989477157593 +illusion_1.5L,ppo,280,112.0,omega,upper,-0.0030155563354492187 +illusion_1.5L,ppo,280,112.0,omega,lower,-0.004346115589141846 +illusion_1.5L,ppo,281,112.4,omega,front,-0.0028208106756210326 +illusion_1.5L,ppo,281,112.4,omega,upper,-0.0020982527732849123 +illusion_1.5L,ppo,281,112.4,omega,lower,-0.0038858699798583985 +illusion_1.5L,ppo,282,112.8,omega,front,-0.003914970755577087 +illusion_1.5L,ppo,282,112.8,omega,upper,-0.003048064708709717 +illusion_1.5L,ppo,282,112.8,omega,lower,-0.005023510456085205 +illusion_1.5L,ppo,283,113.2,omega,front,-0.004504371881484986 +illusion_1.5L,ppo,283,113.2,omega,upper,-0.005454741716384888 +illusion_1.5L,ppo,283,113.2,omega,lower,-0.00678062915802002 +illusion_1.5L,ppo,284,113.6,omega,front,-0.004506905674934387 +illusion_1.5L,ppo,284,113.6,omega,upper,-0.005517871379852295 +illusion_1.5L,ppo,284,113.6,omega,lower,-0.005945944786071778 +illusion_1.5L,ppo,285,114.0,omega,front,-0.000998809039592743 +illusion_1.5L,ppo,285,114.0,omega,upper,-0.004723500013351441 +illusion_1.5L,ppo,285,114.0,omega,lower,-0.003980705738067627 +illusion_1.5L,ppo,286,114.4,omega,front,0.003591274321079254 +illusion_1.5L,ppo,286,114.4,omega,upper,-0.0049271559715271 +illusion_1.5L,ppo,286,114.4,omega,lower,-0.0027699995040893553 +illusion_1.5L,ppo,287,114.8,omega,front,0.0061494183540344236 +illusion_1.5L,ppo,287,114.8,omega,upper,-0.005980979204177857 +illusion_1.5L,ppo,287,114.8,omega,lower,-0.0021439552307128905 +illusion_1.5L,ppo,288,115.2,omega,front,0.0033164340257644653 +illusion_1.5L,ppo,288,115.2,omega,upper,-0.003685014247894287 +illusion_1.5L,ppo,288,115.2,omega,lower,0.00014434337615966796 +illusion_1.5L,ppo,289,115.6,omega,front,-0.00017761766910552978 +illusion_1.5L,ppo,289,115.6,omega,upper,0.0008166027069091797 +illusion_1.5L,ppo,289,115.6,omega,lower,0.0025884926319122317 +illusion_1.5L,ppo,290,116.0,omega,front,0.0026535218954086303 +illusion_1.5L,ppo,290,116.0,omega,upper,0.0025598692893981936 +illusion_1.5L,ppo,290,116.0,omega,lower,0.0031006455421447757 +illusion_1.5L,ppo,291,116.4,omega,front,0.00630729079246521 +illusion_1.5L,ppo,291,116.4,omega,upper,0.004168431758880616 +illusion_1.5L,ppo,291,116.4,omega,lower,0.0044238436222076415 +illusion_1.5L,ppo,292,116.8,omega,front,0.006424282789230347 +illusion_1.5L,ppo,292,116.8,omega,upper,0.004431753158569336 +illusion_1.5L,ppo,292,116.8,omega,lower,0.004713627099990845 +illusion_1.5L,ppo,293,117.2,omega,front,0.006070680022239685 +illusion_1.5L,ppo,293,117.2,omega,upper,0.0017836713790893555 +illusion_1.5L,ppo,293,117.2,omega,lower,0.002298063039779663 +illusion_1.5L,ppo,294,117.6,omega,front,0.005042439699172974 +illusion_1.5L,ppo,294,117.6,omega,upper,0.0023889827728271486 +illusion_1.5L,ppo,294,117.6,omega,lower,0.0022606563568115237 +illusion_1.5L,ppo,295,118.0,omega,front,0.0053009319305419925 +illusion_1.5L,ppo,295,118.0,omega,upper,0.005333585739135742 +illusion_1.5L,ppo,295,118.0,omega,lower,0.004009486436843872 +illusion_1.5L,ppo,296,118.4,omega,front,0.006513127088546753 +illusion_1.5L,ppo,296,118.4,omega,upper,0.006374735832214356 +illusion_1.5L,ppo,296,118.4,omega,lower,0.004028582572937011 +illusion_1.5L,ppo,297,118.8,omega,front,0.004122301042079926 +illusion_1.5L,ppo,297,118.8,omega,upper,0.0055711126327514645 +illusion_1.5L,ppo,297,118.8,omega,lower,0.0029622936248779297 +illusion_1.5L,ppo,298,119.2,omega,front,-0.001452922523021698 +illusion_1.5L,ppo,298,119.2,omega,upper,0.00318218469619751 +illusion_1.5L,ppo,298,119.2,omega,lower,0.0018848419189453126 +illusion_1.5L,ppo,299,119.6,omega,front,-0.005068690776824951 +illusion_1.5L,ppo,299,119.6,omega,upper,-1.6096830368041992e-05 +illusion_1.5L,ppo,299,119.6,omega,lower,0.0012760436534881591 +illusion_1.5L,ppo,300,120.0,omega,front,-0.005975887775421143 +illusion_1.5L,ppo,300,120.0,omega,upper,-0.002347569465637207 +illusion_1.5L,ppo,300,120.0,omega,lower,0.00098940372467041 +illusion_1.5L,ppo,301,120.4,omega,front,-0.0016785350441932678 +illusion_1.5L,ppo,301,120.4,omega,upper,-0.005152460336685181 +illusion_1.5L,ppo,301,120.4,omega,lower,-0.0017126917839050293 +illusion_1.5L,ppo,302,120.8,omega,front,0.001866794228553772 +illusion_1.5L,ppo,302,120.8,omega,upper,-0.0066701662540435795 +illusion_1.5L,ppo,302,120.8,omega,lower,-0.004975252151489258 +illusion_1.5L,ppo,303,121.2,omega,front,-0.002730514407157898 +illusion_1.5L,ppo,303,121.2,omega,upper,-0.005429093837738037 +illusion_1.5L,ppo,303,121.2,omega,lower,-0.006183211803436279 +illusion_1.5L,ppo,304,121.6,omega,front,-0.006313946843147278 +illusion_1.5L,ppo,304,121.6,omega,upper,-0.005279884338378906 +illusion_1.5L,ppo,304,121.6,omega,lower,-0.007635231018066406 +illusion_1.5L,ppo,305,122.0,omega,front,-0.005088241696357727 +illusion_1.5L,ppo,305,122.0,omega,upper,-0.0038939177989959716 +illusion_1.5L,ppo,305,122.0,omega,lower,-0.007336359024047852 +illusion_1.5L,ppo,306,122.4,omega,front,-0.0036975914239883423 +illusion_1.5L,ppo,306,122.4,omega,upper,-0.0008893227577209473 +illusion_1.5L,ppo,306,122.4,omega,lower,-0.005425763130187988 +illusion_1.5L,ppo,307,122.8,omega,front,-0.002032076120376587 +illusion_1.5L,ppo,307,122.8,omega,upper,-0.001468818187713623 +illusion_1.5L,ppo,307,122.8,omega,lower,-0.006006989479064941 +illusion_1.5L,ppo,308,123.2,omega,front,-0.0014247968792915344 +illusion_1.5L,ppo,308,123.2,omega,upper,-0.0035026347637176513 +illusion_1.5L,ppo,308,123.2,omega,lower,-0.0071606779098510745 +illusion_1.5L,ppo,309,123.6,omega,front,-0.0023771873116493225 +illusion_1.5L,ppo,309,123.6,omega,upper,-0.0028367233276367187 +illusion_1.5L,ppo,309,123.6,omega,lower,-0.005705409049987793 +illusion_1.5L,ppo,310,124.0,omega,front,0.0013035008311271668 +illusion_1.5L,ppo,310,124.0,omega,upper,-0.0022608017921447753 +illusion_1.5L,ppo,310,124.0,omega,lower,-0.003164668083190918 +illusion_1.5L,ppo,311,124.4,omega,front,0.007473726868629456 +illusion_1.5L,ppo,311,124.4,omega,upper,-0.002576427459716797 +illusion_1.5L,ppo,311,124.4,omega,lower,-0.0005801820755004883 +illusion_1.5L,ppo,312,124.8,omega,front,0.007690414786338806 +illusion_1.5L,ppo,312,124.8,omega,upper,-0.0014427685737609863 +illusion_1.5L,ppo,312,124.8,omega,lower,0.002383766174316406 +illusion_1.5L,ppo,313,125.2,omega,front,0.003619178831577301 +illusion_1.5L,ppo,313,125.2,omega,upper,0.001629023551940918 +illusion_1.5L,ppo,313,125.2,omega,lower,0.005395720005035401 +illusion_1.5L,ppo,314,125.6,omega,front,0.002697850465774536 +illusion_1.5L,ppo,314,125.6,omega,upper,0.004078631401062012 +illusion_1.5L,ppo,314,125.6,omega,lower,0.006726815700531006 +illusion_1.5L,ppo,315,126.0,omega,front,0.00657258927822113 +illusion_1.5L,ppo,315,126.0,omega,upper,0.005033016204833984 +illusion_1.5L,ppo,315,126.0,omega,lower,0.006895595788955689 +illusion_1.5L,ppo,316,126.4,omega,front,0.00864345133304596 +illusion_1.5L,ppo,316,126.4,omega,upper,0.006820416450500489 +illusion_1.5L,ppo,316,126.4,omega,lower,0.00755753755569458 +illusion_1.5L,ppo,317,126.8,omega,front,0.008703035712242126 +illusion_1.5L,ppo,317,126.8,omega,upper,0.0066625428199768065 +illusion_1.5L,ppo,317,126.8,omega,lower,0.006142203807830811 +illusion_1.5L,ppo,318,127.2,omega,front,0.008658362627029419 +illusion_1.5L,ppo,318,127.2,omega,upper,0.005501136779785156 +illusion_1.5L,ppo,318,127.2,omega,lower,0.003740086555480957 +illusion_1.5L,ppo,319,127.6,omega,front,0.00680719792842865 +illusion_1.5L,ppo,319,127.6,omega,upper,0.007398705482482911 +illusion_1.5L,ppo,319,127.6,omega,lower,0.0043535494804382326 +illusion_1.5L,ppo,320,128.0,omega,front,0.005246120691299439 +illusion_1.5L,ppo,320,128.0,omega,upper,0.008654069900512696 +illusion_1.5L,ppo,320,128.0,omega,lower,0.005102264881134033 +illusion_1.5L,ppo,321,128.4,omega,front,0.0036224102973937988 +illusion_1.5L,ppo,321,128.4,omega,upper,0.007393333911895752 +illusion_1.5L,ppo,321,128.4,omega,lower,0.004354169368743896 +illusion_1.5L,ppo,322,128.8,omega,front,-0.0018279436230659485 +illusion_1.5L,ppo,322,128.8,omega,upper,0.005783658027648926 +illusion_1.5L,ppo,322,128.8,omega,lower,0.004475401639938354 +illusion_1.5L,ppo,323,129.2,omega,front,-0.005711618065834046 +illusion_1.5L,ppo,323,129.2,omega,upper,0.002047257423400879 +illusion_1.5L,ppo,323,129.2,omega,lower,0.003323854207992554 +illusion_1.5L,ppo,324,129.6,omega,front,-0.002903794646263123 +illusion_1.5L,ppo,324,129.6,omega,upper,-0.00270719051361084 +illusion_1.5L,ppo,324,129.6,omega,lower,0.00023485541343688966 +illusion_1.5L,ppo,325,130.0,omega,front,0.0010143885016441346 +illusion_1.5L,ppo,325,130.0,omega,upper,-0.0050800895690917966 +illusion_1.5L,ppo,325,130.0,omega,lower,-0.002304365634918213 +illusion_1.5L,ppo,326,130.4,omega,front,-0.0008933553099632263 +illusion_1.5L,ppo,326,130.4,omega,upper,-0.0054790544509887695 +illusion_1.5L,ppo,326,130.4,omega,lower,-0.004056673049926758 +illusion_1.5L,ppo,327,130.8,omega,front,-0.00511663556098938 +illusion_1.5L,ppo,327,130.8,omega,upper,-0.005932081937789917 +illusion_1.5L,ppo,327,130.8,omega,lower,-0.005944204330444336 +illusion_1.5L,ppo,328,131.2,omega,front,-0.006248717308044434 +illusion_1.5L,ppo,328,131.2,omega,upper,-0.005765507221221924 +illusion_1.5L,ppo,328,131.2,omega,lower,-0.00684523344039917 +illusion_1.5L,ppo,329,131.6,omega,front,-0.005867999196052551 +illusion_1.5L,ppo,329,131.6,omega,upper,-0.0036274337768554686 +illusion_1.5L,ppo,329,131.6,omega,lower,-0.005804002285003662 +illusion_1.5L,ppo,330,132.0,omega,front,-0.005043418407440186 +illusion_1.5L,ppo,330,132.0,omega,upper,-0.002674226760864258 +illusion_1.5L,ppo,330,132.0,omega,lower,-0.005607049465179444 +illusion_1.5L,ppo,331,132.4,omega,front,-0.003369256258010864 +illusion_1.5L,ppo,331,132.4,omega,upper,-0.005231709480285645 +illusion_1.5L,ppo,331,132.4,omega,lower,-0.007825822830200195 +illusion_1.5L,ppo,332,132.8,omega,front,-0.0031630939245224 +illusion_1.5L,ppo,332,132.8,omega,upper,-0.006460864543914795 +illusion_1.5L,ppo,332,132.8,omega,lower,-0.008585777282714844 +illusion_1.5L,ppo,333,133.2,omega,front,-0.0014773640036582947 +illusion_1.5L,ppo,333,133.2,omega,upper,-0.005155949592590332 +illusion_1.5L,ppo,333,133.2,omega,lower,-0.0069249987602233885 +illusion_1.5L,ppo,334,133.6,omega,front,0.004367019236087799 +illusion_1.5L,ppo,334,133.6,omega,upper,-0.005343097448348999 +illusion_1.5L,ppo,334,133.6,omega,lower,-0.00598200798034668 +illusion_1.5L,ppo,335,134.0,omega,front,0.005167065858840942 +illusion_1.5L,ppo,335,134.0,omega,upper,-0.003581421375274658 +illusion_1.5L,ppo,335,134.0,omega,lower,-0.0037257933616638185 +illusion_1.5L,ppo,336,134.4,omega,front,0.00044985488057136536 +illusion_1.5L,ppo,336,134.4,omega,upper,-0.00011520266532897949 +illusion_1.5L,ppo,336,134.4,omega,lower,-0.00074446439743042 +illusion_1.5L,ppo,337,134.8,omega,front,0.0004341334104537964 +illusion_1.5L,ppo,337,134.8,omega,upper,-6.437301635742188e-08 +illusion_1.5L,ppo,337,134.8,omega,lower,-0.0003518366813659668 +illusion_1.5L,ppo,338,135.2,omega,front,0.004111161231994629 +illusion_1.5L,ppo,338,135.2,omega,upper,0.0012497425079345704 +illusion_1.5L,ppo,338,135.2,omega,lower,0.0014441406726837158 +illusion_1.5L,ppo,339,135.6,omega,front,0.005643935799598694 +illusion_1.5L,ppo,339,135.6,omega,upper,0.004246234893798828 +illusion_1.5L,ppo,339,135.6,omega,lower,0.00462704062461853 +illusion_1.5L,ppo,340,136.0,omega,front,0.006788209676742554 +illusion_1.5L,ppo,340,136.0,omega,upper,0.003376145362854004 +illusion_1.5L,ppo,340,136.0,omega,lower,0.004264150857925415 +illusion_1.5L,ppo,341,136.4,omega,front,0.007183170318603516 +illusion_1.5L,ppo,341,136.4,omega,upper,0.002839484214782715 +illusion_1.5L,ppo,341,136.4,omega,lower,0.0036883544921875 +illusion_1.5L,ppo,342,136.8,omega,front,0.006739851832389831 +illusion_1.5L,ppo,342,136.8,omega,upper,0.005395569801330566 +illusion_1.5L,ppo,342,136.8,omega,lower,0.005290035009384155 +illusion_1.5L,ppo,343,137.2,omega,front,0.008138754963874817 +illusion_1.5L,ppo,343,137.2,omega,upper,0.007088031768798828 +illusion_1.5L,ppo,343,137.2,omega,lower,0.005936431884765625 +illusion_1.5L,ppo,344,137.6,omega,front,0.008670107722282409 +illusion_1.5L,ppo,344,137.6,omega,upper,0.007796669006347657 +illusion_1.5L,ppo,344,137.6,omega,lower,0.0056166303157806395 +illusion_1.5L,ppo,345,138.0,omega,front,0.005006347894668579 +illusion_1.5L,ppo,345,138.0,omega,upper,0.00792431116104126 +illusion_1.5L,ppo,345,138.0,omega,lower,0.005174896717071533 +illusion_1.5L,ppo,346,138.4,omega,front,-0.0012455570697784424 +illusion_1.5L,ppo,346,138.4,omega,upper,0.007188630104064941 +illusion_1.5L,ppo,346,138.4,omega,lower,0.00513827919960022 +illusion_1.5L,ppo,347,138.8,omega,front,-0.004508982300758362 +illusion_1.5L,ppo,347,138.8,omega,upper,0.004553132057189942 +illusion_1.5L,ppo,347,138.8,omega,lower,0.004829851388931275 +illusion_1.5L,ppo,348,139.2,omega,front,-0.0018432873487472534 +illusion_1.5L,ppo,348,139.2,omega,upper,-4.1544437408447266e-05 +illusion_1.5L,ppo,348,139.2,omega,lower,0.0025493526458740235 +illusion_1.5L,ppo,349,139.6,omega,front,0.0029688823223114015 +illusion_1.5L,ppo,349,139.6,omega,upper,-0.0028394174575805666 +illusion_1.5L,ppo,349,139.6,omega,lower,-0.00033845186233520506 +illusion_1.5L,ppo,350,140.0,omega,front,0.0013902647793292999 +illusion_1.5L,ppo,350,140.0,omega,upper,-0.002436014413833618 +illusion_1.5L,ppo,350,140.0,omega,lower,-0.001627635955810547 +illusion_1.5L,ppo,351,140.4,omega,front,-0.0032803797721862793 +illusion_1.5L,ppo,351,140.4,omega,upper,-0.0032184028625488284 +illusion_1.5L,ppo,351,140.4,omega,lower,-0.003557562828063965 +illusion_1.5L,ppo,352,140.8,omega,front,-0.0045367681980133055 +illusion_1.5L,ppo,352,140.8,omega,upper,-0.003975009918212891 +illusion_1.5L,ppo,352,140.8,omega,lower,-0.004777112007141113 +illusion_1.5L,ppo,353,141.2,omega,front,-0.003939249515533447 +illusion_1.5L,ppo,353,141.2,omega,upper,-0.00247918963432312 +illusion_1.5L,ppo,353,141.2,omega,lower,-0.003705902099609375 +illusion_1.5L,ppo,354,141.6,omega,front,-0.0035645568370819094 +illusion_1.5L,ppo,354,141.6,omega,upper,-0.002662308216094971 +illusion_1.5L,ppo,354,141.6,omega,lower,-0.004095962047576904 +illusion_1.5L,ppo,355,142.0,omega,front,-0.003963428735733032 +illusion_1.5L,ppo,355,142.0,omega,upper,-0.004970510005950928 +illusion_1.5L,ppo,355,142.0,omega,lower,-0.006289467811584473 +illusion_1.5L,ppo,356,142.4,omega,front,-0.00530899703502655 +illusion_1.5L,ppo,356,142.4,omega,upper,-0.005866354703903199 +illusion_1.5L,ppo,356,142.4,omega,lower,-0.007305850982666015 +illusion_1.5L,ppo,357,142.8,omega,front,-0.003957597017288208 +illusion_1.5L,ppo,357,142.8,omega,upper,-0.005262721776962281 +illusion_1.5L,ppo,357,142.8,omega,lower,-0.0067038297653198246 +illusion_1.5L,ppo,358,143.2,omega,front,0.0016006016731262207 +illusion_1.5L,ppo,358,143.2,omega,upper,-0.005550175905227661 +illusion_1.5L,ppo,358,143.2,omega,lower,-0.005863409042358399 +illusion_1.5L,ppo,359,143.6,omega,front,0.00560490369796753 +illusion_1.5L,ppo,359,143.6,omega,upper,-0.006551252603530884 +illusion_1.5L,ppo,359,143.6,omega,lower,-0.0052183508872985845 +illusion_1.5L,ppo,360,144.0,omega,front,0.0022963157296180727 +illusion_1.5L,ppo,360,144.0,omega,upper,-0.004626507759094238 +illusion_1.5L,ppo,360,144.0,omega,lower,-0.0034816503524780274 +illusion_1.5L,ppo,361,144.4,omega,front,-0.0021059057116508484 +illusion_1.5L,ppo,361,144.4,omega,upper,-0.0011718106269836426 +illusion_1.5L,ppo,361,144.4,omega,lower,-0.0018025779724121095 +illusion_1.5L,ppo,362,144.8,omega,front,0.0009025199711322785 +illusion_1.5L,ppo,362,144.8,omega,upper,4.489421844482422e-06 +illusion_1.5L,ppo,362,144.8,omega,lower,-0.0012820720672607423 +illusion_1.5L,ppo,363,145.2,omega,front,0.004875909090042115 +illusion_1.5L,ppo,363,145.2,omega,upper,0.002554497718811035 +illusion_1.5L,ppo,363,145.2,omega,lower,0.0012551379203796387 +illusion_1.5L,ppo,364,145.6,omega,front,0.005580323934555054 +illusion_1.5L,ppo,364,145.6,omega,upper,0.003957920074462891 +illusion_1.5L,ppo,364,145.6,omega,lower,0.0030565834045410156 +illusion_1.5L,ppo,365,146.0,omega,front,0.006011860370635986 +illusion_1.5L,ppo,365,146.0,omega,upper,0.0012201309204101563 +illusion_1.5L,ppo,365,146.0,omega,lower,0.0012541329860687256 +illusion_1.5L,ppo,366,146.4,omega,front,0.005335994362831116 +illusion_1.5L,ppo,366,146.4,omega,upper,0.0021399784088134764 +illusion_1.5L,ppo,366,146.4,omega,lower,0.0018589127063751221 +illusion_1.5L,ppo,367,146.8,omega,front,0.005301249027252197 +illusion_1.5L,ppo,367,146.8,omega,upper,0.006609492301940918 +illusion_1.5L,ppo,367,146.8,omega,lower,0.004851990938186646 +illusion_1.5L,ppo,368,147.2,omega,front,0.0075308138132095335 +illusion_1.5L,ppo,368,147.2,omega,upper,0.008781166076660156 +illusion_1.5L,ppo,368,147.2,omega,lower,0.005801377296447754 +illusion_1.5L,ppo,369,147.6,omega,front,0.007312402129173279 +illusion_1.5L,ppo,369,147.6,omega,upper,0.009080252647399903 +illusion_1.5L,ppo,369,147.6,omega,lower,0.005945295095443726 +illusion_1.5L,ppo,370,148.0,omega,front,0.004083138704299927 +illusion_1.5L,ppo,370,148.0,omega,upper,0.0072489833831787115 +illusion_1.5L,ppo,370,148.0,omega,lower,0.005568023920059204 +illusion_1.5L,ppo,371,148.4,omega,front,-0.0005624812841415406 +illusion_1.5L,ppo,371,148.4,omega,upper,0.005056872367858887 +illusion_1.5L,ppo,371,148.4,omega,lower,0.00544556736946106 +illusion_1.5L,ppo,372,148.8,omega,front,-0.0030364835262298583 +illusion_1.5L,ppo,372,148.8,omega,upper,0.004190695285797119 +illusion_1.5L,ppo,372,148.8,omega,lower,0.005796304941177368 +illusion_1.5L,ppo,373,149.2,omega,front,-0.0016441354155540466 +illusion_1.5L,ppo,373,149.2,omega,upper,0.0026724791526794435 +illusion_1.5L,ppo,373,149.2,omega,lower,0.004647171497344971 +illusion_1.5L,ppo,374,149.6,omega,front,0.0031448888778686525 +illusion_1.5L,ppo,374,149.6,omega,upper,-0.00018841981887817382 +illusion_1.5L,ppo,374,149.6,omega,lower,0.0016261494159698488 +illusion_1.5L,ppo,375,150.0,omega,front,0.0034761691093444826 +illusion_1.5L,ppo,375,150.0,omega,upper,-0.0011107635498046875 +illusion_1.5L,ppo,375,150.0,omega,lower,-0.00031129837036132814 +illusion_1.5L,ppo,376,150.4,omega,front,-0.0016051667928695678 +illusion_1.5L,ppo,376,150.4,omega,upper,-0.0015176713466644287 +illusion_1.5L,ppo,376,150.4,omega,lower,-0.0017232942581176759 +illusion_1.5L,ppo,377,150.8,omega,front,-0.0039390820264816285 +illusion_1.5L,ppo,377,150.8,omega,upper,-0.0025984334945678713 +illusion_1.5L,ppo,377,150.8,omega,lower,-0.0031445884704589845 +illusion_1.5L,ppo,378,151.2,omega,front,-0.0031751108169555666 +illusion_1.5L,ppo,378,151.2,omega,upper,-0.002042553424835205 +illusion_1.5L,ppo,378,151.2,omega,lower,-0.0027495336532592776 +illusion_1.5L,ppo,379,151.6,omega,front,-0.0024532678723335265 +illusion_1.5L,ppo,379,151.6,omega,upper,-0.0014875602722167968 +illusion_1.5L,ppo,379,151.6,omega,lower,-0.0025713968276977538 +illusion_1.5L,ppo,380,152.0,omega,front,-0.0026480752229690553 +illusion_1.5L,ppo,380,152.0,omega,upper,-0.0032845485210418702 +illusion_1.5L,ppo,380,152.0,omega,lower,-0.004750239849090576 +illusion_1.5L,ppo,381,152.4,omega,front,-0.003901711106300354 +illusion_1.5L,ppo,381,152.4,omega,upper,-0.005724642276763916 +illusion_1.5L,ppo,381,152.4,omega,lower,-0.007303752899169922 +illusion_1.5L,ppo,382,152.8,omega,front,-0.004417744278907776 +illusion_1.5L,ppo,382,152.8,omega,upper,-0.005963923931121827 +illusion_1.5L,ppo,382,152.8,omega,lower,-0.007224078178405762 +illusion_1.5L,ppo,383,153.2,omega,front,-0.0006259578466415405 +illusion_1.5L,ppo,383,153.2,omega,upper,-0.005944095849990845 +illusion_1.5L,ppo,383,153.2,omega,lower,-0.005891797542572022 +illusion_1.5L,ppo,384,153.6,omega,front,0.003959510922431946 +illusion_1.5L,ppo,384,153.6,omega,upper,-0.006881347894668579 +illusion_1.5L,ppo,384,153.6,omega,lower,-0.0055886125564575196 +illusion_1.5L,ppo,385,154.0,omega,front,0.004375619292259217 +illusion_1.5L,ppo,385,154.0,omega,upper,-0.0068103444576263425 +illusion_1.5L,ppo,385,154.0,omega,lower,-0.005528964996337891 +illusion_1.5L,ppo,386,154.4,omega,front,0.0003861615061759949 +illusion_1.5L,ppo,386,154.4,omega,upper,-0.0035715126991271973 +illusion_1.5L,ppo,386,154.4,omega,lower,-0.003908383846282959 +illusion_1.5L,ppo,387,154.8,omega,front,-0.0020969843864440917 +illusion_1.5L,ppo,387,154.8,omega,upper,-0.00033804893493652346 +illusion_1.5L,ppo,387,154.8,omega,lower,-0.002471473217010498 +illusion_1.5L,ppo,388,155.2,omega,front,0.0019587601721286776 +illusion_1.5L,ppo,388,155.2,omega,upper,0.0008117485046386719 +illusion_1.5L,ppo,388,155.2,omega,lower,-0.001641688346862793 +illusion_1.5L,ppo,389,155.6,omega,front,0.005405718088150025 +illusion_1.5L,ppo,389,155.6,omega,upper,0.0025188255310058592 +illusion_1.5L,ppo,389,155.6,omega,lower,0.0002503204345703125 +illusion_1.5L,ppo,390,156.0,omega,front,0.00546578049659729 +illusion_1.5L,ppo,390,156.0,omega,upper,0.002706007957458496 +illusion_1.5L,ppo,390,156.0,omega,lower,0.0008815526962280273 +illusion_1.5L,ppo,391,156.4,omega,front,0.0052482569217681884 +illusion_1.5L,ppo,391,156.4,omega,upper,0.0019159984588623046 +illusion_1.5L,ppo,391,156.4,omega,lower,0.0004047822952270508 +illusion_1.5L,ppo,392,156.8,omega,front,0.0054229265451431275 +illusion_1.5L,ppo,392,156.8,omega,upper,0.0038365411758422853 +illusion_1.5L,ppo,392,156.8,omega,lower,0.0016565799713134765 +illusion_1.5L,ppo,393,157.2,omega,front,0.006106175184249878 +illusion_1.5L,ppo,393,157.2,omega,upper,0.007479233741760254 +illusion_1.5L,ppo,393,157.2,omega,lower,0.004244327545166016 +illusion_1.5L,ppo,394,157.6,omega,front,0.006996902227401734 +illusion_1.5L,ppo,394,157.6,omega,upper,0.009419593811035156 +illusion_1.5L,ppo,394,157.6,omega,lower,0.006110656261444092 +illusion_1.5L,ppo,395,158.0,omega,front,0.006252295970916748 +illusion_1.5L,ppo,395,158.0,omega,upper,0.008212900161743164 +illusion_1.5L,ppo,395,158.0,omega,lower,0.006429388523101807 +illusion_1.5L,ppo,396,158.4,omega,front,0.00301371306180954 +illusion_1.5L,ppo,396,158.4,omega,upper,0.005931081771850586 +illusion_1.5L,ppo,396,158.4,omega,lower,0.006303421258926392 +illusion_1.5L,ppo,397,158.8,omega,front,-0.00018628031015396117 +illusion_1.5L,ppo,397,158.8,omega,upper,0.004195549488067627 +illusion_1.5L,ppo,397,158.8,omega,lower,0.006212292909622192 +illusion_1.5L,ppo,398,159.2,omega,front,-0.0010874199867248536 +illusion_1.5L,ppo,398,159.2,omega,upper,0.0030309534072875976 +illusion_1.5L,ppo,398,159.2,omega,lower,0.005349942445755005 +illusion_1.5L,ppo,399,159.6,omega,front,-0.0021626055240631104 +illusion_1.5L,ppo,399,159.6,omega,upper,0.002789568901062012 +illusion_1.5L,ppo,399,159.6,omega,lower,0.0043910396099090575 +illusion_1.5L,ppo,0,0.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,ppo,0,0.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,ppo,1,0.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,ppo,1,0.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,ppo,2,0.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,ppo,2,0.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,ppo,3,1.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,ppo,3,1.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,ppo,4,1.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,ppo,4,1.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,ppo,5,2.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,ppo,5,2.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,ppo,6,2.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,ppo,6,2.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,ppo,7,2.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,ppo,7,2.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,ppo,8,3.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,ppo,8,3.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,ppo,9,3.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,ppo,9,3.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,ppo,10,4.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,ppo,10,4.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,ppo,11,4.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,ppo,11,4.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,ppo,12,4.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,ppo,12,4.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,ppo,13,5.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,ppo,13,5.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,ppo,14,5.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,ppo,14,5.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,ppo,15,6.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,ppo,15,6.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,ppo,16,6.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,ppo,16,6.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,ppo,17,6.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,ppo,17,6.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,ppo,18,7.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,ppo,18,7.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,ppo,19,7.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,ppo,19,7.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,ppo,20,8.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,ppo,20,8.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,ppo,21,8.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,ppo,21,8.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,ppo,22,8.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,ppo,22,8.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,ppo,23,9.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,ppo,23,9.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,ppo,24,9.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,ppo,24,9.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,ppo,25,10.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,ppo,25,10.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,ppo,26,10.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,ppo,26,10.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,ppo,27,10.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,ppo,27,10.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,ppo,28,11.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,ppo,28,11.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,ppo,29,11.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,ppo,29,11.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,ppo,30,12.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,ppo,30,12.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,ppo,31,12.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,ppo,31,12.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,ppo,32,12.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,ppo,32,12.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,ppo,33,13.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,ppo,33,13.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,ppo,34,13.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,ppo,34,13.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,ppo,35,14.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,ppo,35,14.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,ppo,36,14.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,ppo,36,14.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,ppo,37,14.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,ppo,37,14.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,ppo,38,15.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,ppo,38,15.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,ppo,39,15.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,ppo,39,15.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,ppo,40,16.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,ppo,40,16.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,ppo,41,16.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,ppo,41,16.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,ppo,42,16.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,ppo,42,16.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,ppo,43,17.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,ppo,43,17.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,ppo,44,17.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,ppo,44,17.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,ppo,45,18.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,ppo,45,18.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,ppo,46,18.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,ppo,46,18.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,ppo,47,18.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,ppo,47,18.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,ppo,48,19.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,ppo,48,19.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,ppo,49,19.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,ppo,49,19.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,ppo,50,20.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,ppo,50,20.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,ppo,51,20.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,ppo,51,20.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,ppo,52,20.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,ppo,52,20.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,ppo,53,21.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,ppo,53,21.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,ppo,54,21.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,ppo,54,21.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,ppo,55,22.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,ppo,55,22.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,ppo,56,22.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,ppo,56,22.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,ppo,57,22.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,ppo,57,22.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,ppo,58,23.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,ppo,58,23.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,ppo,59,23.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,ppo,59,23.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,ppo,60,24.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,ppo,60,24.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,ppo,61,24.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,ppo,61,24.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,ppo,62,24.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,ppo,62,24.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,ppo,63,25.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,ppo,63,25.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,ppo,64,25.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,ppo,64,25.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,ppo,65,26.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,ppo,65,26.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,ppo,66,26.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,ppo,66,26.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,ppo,67,26.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,ppo,67,26.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,ppo,68,27.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,ppo,68,27.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,ppo,69,27.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,ppo,69,27.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,ppo,70,28.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,ppo,70,28.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,ppo,71,28.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,ppo,71,28.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,ppo,72,28.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,ppo,72,28.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,ppo,73,29.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,ppo,73,29.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,ppo,74,29.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,ppo,74,29.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,ppo,75,30.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,ppo,75,30.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,ppo,76,30.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,ppo,76,30.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,ppo,77,30.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,ppo,77,30.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,ppo,78,31.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,ppo,78,31.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,ppo,79,31.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,ppo,79,31.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,ppo,80,32.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,ppo,80,32.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,ppo,81,32.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,ppo,81,32.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,ppo,82,32.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,ppo,82,32.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,ppo,83,33.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,ppo,83,33.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,ppo,84,33.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,ppo,84,33.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,ppo,85,34.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,ppo,85,34.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,ppo,86,34.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,ppo,86,34.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,ppo,87,34.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,ppo,87,34.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,ppo,88,35.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,ppo,88,35.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,ppo,89,35.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,ppo,89,35.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,ppo,90,36.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,ppo,90,36.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,ppo,91,36.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,ppo,91,36.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,ppo,92,36.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,ppo,92,36.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,ppo,93,37.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,ppo,93,37.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,ppo,94,37.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,ppo,94,37.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,ppo,95,38.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,ppo,95,38.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,ppo,96,38.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,ppo,96,38.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,ppo,97,38.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,ppo,97,38.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,ppo,98,39.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,ppo,98,39.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,ppo,99,39.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,ppo,99,39.6,target_force,target_cl,-0.004395345691591501 +illusion_1.5L,ppo,100,40.0,target_force,target_cd,0.008717188611626625 +illusion_1.5L,ppo,100,40.0,target_force,target_cl,-0.004146318417042494 +illusion_1.5L,ppo,101,40.4,target_force,target_cd,0.008651788346469402 +illusion_1.5L,ppo,101,40.4,target_force,target_cl,-0.0036302267108112574 +illusion_1.5L,ppo,102,40.8,target_force,target_cd,0.008710197173058987 +illusion_1.5L,ppo,102,40.8,target_force,target_cl,-0.0028752374928444624 +illusion_1.5L,ppo,103,41.2,target_force,target_cd,0.008641681633889675 +illusion_1.5L,ppo,103,41.2,target_force,target_cl,-0.0019245173316448927 +illusion_1.5L,ppo,104,41.6,target_force,target_cd,0.008270466700196266 +illusion_1.5L,ppo,104,41.6,target_force,target_cl,-0.0008338304469361901 +illusion_1.5L,ppo,105,42.0,target_force,target_cd,0.0080949105322361 +illusion_1.5L,ppo,105,42.0,target_force,target_cl,0.0003316924849059433 +illusion_1.5L,ppo,106,42.4,target_force,target_cd,0.008030417375266552 +illusion_1.5L,ppo,106,42.4,target_force,target_cl,0.0015014351811259985 +illusion_1.5L,ppo,107,42.8,target_force,target_cd,0.008088373579084873 +illusion_1.5L,ppo,107,42.8,target_force,target_cl,0.002603593748062849 +illusion_1.5L,ppo,108,43.2,target_force,target_cd,0.00838998332619667 +illusion_1.5L,ppo,108,43.2,target_force,target_cl,0.003569631138816476 +illusion_1.5L,ppo,109,43.6,target_force,target_cd,0.008452391251921654 +illusion_1.5L,ppo,109,43.6,target_force,target_cl,0.004338605795055628 +illusion_1.5L,ppo,110,44.0,target_force,target_cd,0.008437939919531345 +illusion_1.5L,ppo,110,44.0,target_force,target_cl,0.004861098248511553 +illusion_1.5L,ppo,111,44.4,target_force,target_cd,0.008596007712185383 +illusion_1.5L,ppo,111,44.4,target_force,target_cl,0.005102469120174646 +illusion_1.5L,ppo,112,44.8,target_force,target_cd,0.008660073392093182 +illusion_1.5L,ppo,112,44.8,target_force,target_cl,0.005045230966061354 +illusion_1.5L,ppo,113,45.2,target_force,target_cd,0.008821661584079266 +illusion_1.5L,ppo,113,45.2,target_force,target_cl,0.004690361209213734 +illusion_1.5L,ppo,114,45.6,target_force,target_cd,0.008882550522685051 +illusion_1.5L,ppo,114,45.6,target_force,target_cl,0.0040574450977146626 +illusion_1.5L,ppo,115,46.0,target_force,target_cd,0.008558989502489567 +illusion_1.5L,ppo,115,46.0,target_force,target_cl,0.003183630993589759 +illusion_1.5L,ppo,116,46.4,target_force,target_cd,0.008332237601280212 +illusion_1.5L,ppo,116,46.4,target_force,target_cl,0.0021214294247329235 +illusion_1.5L,ppo,117,46.8,target_force,target_cd,0.008196236565709114 +illusion_1.5L,ppo,117,46.8,target_force,target_cl,0.000935496820602566 +illusion_1.5L,ppo,118,47.2,target_force,target_cd,0.00811728835105896 +illusion_1.5L,ppo,118,47.2,target_force,target_cl,-0.00030141021125018597 +illusion_1.5L,ppo,119,47.6,target_force,target_cd,0.00829890463501215 +illusion_1.5L,ppo,119,47.6,target_force,target_cl,-0.0015130521496757865 +illusion_1.5L,ppo,120,48.0,target_force,target_cd,0.008303137496113777 +illusion_1.5L,ppo,120,48.0,target_force,target_cl,-0.002624597167596221 +illusion_1.5L,ppo,121,48.4,target_force,target_cd,0.008214408531785011 +illusion_1.5L,ppo,121,48.4,target_force,target_cl,-0.0035674641840159893 +illusion_1.5L,ppo,122,48.8,target_force,target_cd,0.0083629060536623 +illusion_1.5L,ppo,122,48.8,target_force,target_cl,-0.004283796530216932 +illusion_1.5L,ppo,123,49.2,target_force,target_cd,0.00848082173615694 +illusion_1.5L,ppo,123,49.2,target_force,target_cl,-0.00473026093095541 +illusion_1.5L,ppo,124,49.6,target_force,target_cd,0.008707493543624878 +illusion_1.5L,ppo,124,49.6,target_force,target_cl,-0.004880912136286497 +illusion_1.5L,ppo,125,50.0,target_force,target_cd,0.008908077143132687 +illusion_1.5L,ppo,125,50.0,target_force,target_cl,-0.004728920757770538 +illusion_1.5L,ppo,126,50.4,target_force,target_cd,0.00870131142437458 +illusion_1.5L,ppo,126,50.4,target_force,target_cl,-0.004287036135792732 +illusion_1.5L,ppo,127,50.8,target_force,target_cd,0.008512722328305244 +illusion_1.5L,ppo,127,50.8,target_force,target_cl,-0.003586746985092759 +illusion_1.5L,ppo,128,51.2,target_force,target_cd,0.008403330110013485 +illusion_1.5L,ppo,128,51.2,target_force,target_cl,-0.002676178002730012 +illusion_1.5L,ppo,129,51.6,target_force,target_cd,0.008277405984699726 +illusion_1.5L,ppo,129,51.6,target_force,target_cl,-0.001616867259144783 +illusion_1.5L,ppo,130,52.0,target_force,target_cd,0.008384994231164455 +illusion_1.5L,ppo,130,52.0,target_force,target_cl,-0.0004796259745489806 +illusion_1.5L,ppo,131,52.4,target_force,target_cd,0.008344382978975773 +illusion_1.5L,ppo,131,52.4,target_force,target_cl,0.0006602332578040659 +illusion_1.5L,ppo,132,52.8,target_force,target_cd,0.008156534284353256 +illusion_1.5L,ppo,132,52.8,target_force,target_cl,0.0017279828898608685 +illusion_1.5L,ppo,133,53.2,target_force,target_cd,0.008226209320127964 +illusion_1.5L,ppo,133,53.2,target_force,target_cl,0.002654529409483075 +illusion_1.5L,ppo,134,53.6,target_force,target_cd,0.008320114575326443 +illusion_1.5L,ppo,134,53.6,target_force,target_cl,0.003381080459803343 +illusion_1.5L,ppo,135,54.0,target_force,target_cd,0.00853065587580204 +illusion_1.5L,ppo,135,54.0,target_force,target_cl,0.0038631048519164324 +illusion_1.5L,ppo,136,54.4,target_force,target_cd,0.008803099393844604 +illusion_1.5L,ppo,136,54.4,target_force,target_cl,0.004073311109095812 +illusion_1.5L,ppo,137,54.8,target_force,target_cd,0.008690337650477886 +illusion_1.5L,ppo,137,54.8,target_force,target_cl,0.004003433044999838 +illusion_1.5L,ppo,138,55.2,target_force,target_cd,0.008544675074517727 +illusion_1.5L,ppo,138,55.2,target_force,target_cl,0.003664699150249362 +illusion_1.5L,ppo,139,55.6,target_force,target_cd,0.008495600894093513 +illusion_1.5L,ppo,139,55.6,target_force,target_cl,0.0030869469046592712 +illusion_1.5L,ppo,140,56.0,target_force,target_cd,0.008385095745325089 +illusion_1.5L,ppo,140,56.0,target_force,target_cl,0.0023164439480751753 +illusion_1.5L,ppo,141,56.4,target_force,target_cd,0.00847627129405737 +illusion_1.5L,ppo,141,56.4,target_force,target_cl,0.001412564772181213 +illusion_1.5L,ppo,142,56.8,target_force,target_cd,0.008447900414466858 +illusion_1.5L,ppo,142,56.8,target_force,target_cl,0.0004435561131685972 +illusion_1.5L,ppo,143,57.2,target_force,target_cd,0.008206440135836601 +illusion_1.5L,ppo,143,57.2,target_force,target_cl,-0.0005183155299164355 +illusion_1.5L,ppo,144,57.6,target_force,target_cd,0.00820583663880825 +illusion_1.5L,ppo,144,57.6,target_force,target_cl,-0.0014018918154761195 +illusion_1.5L,ppo,145,58.0,target_force,target_cd,0.008266313932836056 +illusion_1.5L,ppo,145,58.0,target_force,target_cl,-0.0021421664860099554 +illusion_1.5L,ppo,146,58.4,target_force,target_cd,0.008429205976426601 +illusion_1.5L,ppo,146,58.4,target_force,target_cl,-0.0026848914567381144 +illusion_1.5L,ppo,147,58.8,target_force,target_cd,0.008723028935492039 +illusion_1.5L,ppo,147,58.8,target_force,target_cl,-0.0029904174152761698 +illusion_1.5L,ppo,148,59.2,target_force,target_cd,0.008667167276144028 +illusion_1.5L,ppo,148,59.2,target_force,target_cl,-0.0030365013517439365 +illusion_1.5L,ppo,149,59.6,target_force,target_cd,0.008530458435416222 +illusion_1.5L,ppo,149,59.6,target_force,target_cl,-0.002819881308823824 +illusion_1.5L,ppo,150,60.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,ppo,150,60.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,ppo,151,60.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,ppo,151,60.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,ppo,152,60.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,ppo,152,60.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,ppo,153,61.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,ppo,153,61.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,ppo,154,61.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,ppo,154,61.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,ppo,155,62.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,ppo,155,62.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,ppo,156,62.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,ppo,156,62.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,ppo,157,62.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,ppo,157,62.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,ppo,158,63.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,ppo,158,63.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,ppo,159,63.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,ppo,159,63.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,ppo,160,64.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,ppo,160,64.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,ppo,161,64.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,ppo,161,64.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,ppo,162,64.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,ppo,162,64.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,ppo,163,65.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,ppo,163,65.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,ppo,164,65.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,ppo,164,65.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,ppo,165,66.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,ppo,165,66.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,ppo,166,66.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,ppo,166,66.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,ppo,167,66.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,ppo,167,66.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,ppo,168,67.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,ppo,168,67.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,ppo,169,67.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,ppo,169,67.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,ppo,170,68.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,ppo,170,68.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,ppo,171,68.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,ppo,171,68.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,ppo,172,68.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,ppo,172,68.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,ppo,173,69.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,ppo,173,69.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,ppo,174,69.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,ppo,174,69.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,ppo,175,70.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,ppo,175,70.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,ppo,176,70.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,ppo,176,70.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,ppo,177,70.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,ppo,177,70.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,ppo,178,71.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,ppo,178,71.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,ppo,179,71.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,ppo,179,71.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,ppo,180,72.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,ppo,180,72.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,ppo,181,72.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,ppo,181,72.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,ppo,182,72.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,ppo,182,72.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,ppo,183,73.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,ppo,183,73.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,ppo,184,73.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,ppo,184,73.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,ppo,185,74.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,ppo,185,74.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,ppo,186,74.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,ppo,186,74.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,ppo,187,74.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,ppo,187,74.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,ppo,188,75.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,ppo,188,75.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,ppo,189,75.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,ppo,189,75.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,ppo,190,76.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,ppo,190,76.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,ppo,191,76.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,ppo,191,76.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,ppo,192,76.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,ppo,192,76.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,ppo,193,77.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,ppo,193,77.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,ppo,194,77.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,ppo,194,77.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,ppo,195,78.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,ppo,195,78.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,ppo,196,78.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,ppo,196,78.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,ppo,197,78.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,ppo,197,78.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,ppo,198,79.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,ppo,198,79.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,ppo,199,79.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,ppo,199,79.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,ppo,200,80.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,ppo,200,80.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,ppo,201,80.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,ppo,201,80.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,ppo,202,80.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,ppo,202,80.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,ppo,203,81.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,ppo,203,81.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,ppo,204,81.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,ppo,204,81.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,ppo,205,82.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,ppo,205,82.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,ppo,206,82.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,ppo,206,82.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,ppo,207,82.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,ppo,207,82.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,ppo,208,83.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,ppo,208,83.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,ppo,209,83.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,ppo,209,83.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,ppo,210,84.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,ppo,210,84.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,ppo,211,84.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,ppo,211,84.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,ppo,212,84.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,ppo,212,84.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,ppo,213,85.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,ppo,213,85.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,ppo,214,85.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,ppo,214,85.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,ppo,215,86.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,ppo,215,86.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,ppo,216,86.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,ppo,216,86.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,ppo,217,86.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,ppo,217,86.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,ppo,218,87.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,ppo,218,87.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,ppo,219,87.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,ppo,219,87.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,ppo,220,88.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,ppo,220,88.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,ppo,221,88.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,ppo,221,88.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,ppo,222,88.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,ppo,222,88.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,ppo,223,89.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,ppo,223,89.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,ppo,224,89.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,ppo,224,89.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,ppo,225,90.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,ppo,225,90.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,ppo,226,90.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,ppo,226,90.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,ppo,227,90.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,ppo,227,90.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,ppo,228,91.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,ppo,228,91.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,ppo,229,91.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,ppo,229,91.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,ppo,230,92.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,ppo,230,92.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,ppo,231,92.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,ppo,231,92.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,ppo,232,92.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,ppo,232,92.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,ppo,233,93.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,ppo,233,93.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,ppo,234,93.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,ppo,234,93.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,ppo,235,94.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,ppo,235,94.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,ppo,236,94.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,ppo,236,94.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,ppo,237,94.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,ppo,237,94.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,ppo,238,95.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,ppo,238,95.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,ppo,239,95.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,ppo,239,95.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,ppo,240,96.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,ppo,240,96.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,ppo,241,96.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,ppo,241,96.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,ppo,242,96.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,ppo,242,96.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,ppo,243,97.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,ppo,243,97.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,ppo,244,97.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,ppo,244,97.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,ppo,245,98.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,ppo,245,98.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,ppo,246,98.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,ppo,246,98.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,ppo,247,98.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,ppo,247,98.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,ppo,248,99.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,ppo,248,99.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,ppo,249,99.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,ppo,249,99.6,target_force,target_cl,-0.004395345691591501 +illusion_1.5L,ppo,250,100.0,target_force,target_cd,0.008717188611626625 +illusion_1.5L,ppo,250,100.0,target_force,target_cl,-0.004146318417042494 +illusion_1.5L,ppo,251,100.4,target_force,target_cd,0.008651788346469402 +illusion_1.5L,ppo,251,100.4,target_force,target_cl,-0.0036302267108112574 +illusion_1.5L,ppo,252,100.8,target_force,target_cd,0.008710197173058987 +illusion_1.5L,ppo,252,100.8,target_force,target_cl,-0.0028752374928444624 +illusion_1.5L,ppo,253,101.2,target_force,target_cd,0.008641681633889675 +illusion_1.5L,ppo,253,101.2,target_force,target_cl,-0.0019245173316448927 +illusion_1.5L,ppo,254,101.6,target_force,target_cd,0.008270466700196266 +illusion_1.5L,ppo,254,101.6,target_force,target_cl,-0.0008338304469361901 +illusion_1.5L,ppo,255,102.0,target_force,target_cd,0.0080949105322361 +illusion_1.5L,ppo,255,102.0,target_force,target_cl,0.0003316924849059433 +illusion_1.5L,ppo,256,102.4,target_force,target_cd,0.008030417375266552 +illusion_1.5L,ppo,256,102.4,target_force,target_cl,0.0015014351811259985 +illusion_1.5L,ppo,257,102.8,target_force,target_cd,0.008088373579084873 +illusion_1.5L,ppo,257,102.8,target_force,target_cl,0.002603593748062849 +illusion_1.5L,ppo,258,103.2,target_force,target_cd,0.00838998332619667 +illusion_1.5L,ppo,258,103.2,target_force,target_cl,0.003569631138816476 +illusion_1.5L,ppo,259,103.6,target_force,target_cd,0.008452391251921654 +illusion_1.5L,ppo,259,103.6,target_force,target_cl,0.004338605795055628 +illusion_1.5L,ppo,260,104.0,target_force,target_cd,0.008437939919531345 +illusion_1.5L,ppo,260,104.0,target_force,target_cl,0.004861098248511553 +illusion_1.5L,ppo,261,104.4,target_force,target_cd,0.008596007712185383 +illusion_1.5L,ppo,261,104.4,target_force,target_cl,0.005102469120174646 +illusion_1.5L,ppo,262,104.8,target_force,target_cd,0.008660073392093182 +illusion_1.5L,ppo,262,104.8,target_force,target_cl,0.005045230966061354 +illusion_1.5L,ppo,263,105.2,target_force,target_cd,0.008821661584079266 +illusion_1.5L,ppo,263,105.2,target_force,target_cl,0.004690361209213734 +illusion_1.5L,ppo,264,105.6,target_force,target_cd,0.008882550522685051 +illusion_1.5L,ppo,264,105.6,target_force,target_cl,0.0040574450977146626 +illusion_1.5L,ppo,265,106.0,target_force,target_cd,0.008558989502489567 +illusion_1.5L,ppo,265,106.0,target_force,target_cl,0.003183630993589759 +illusion_1.5L,ppo,266,106.4,target_force,target_cd,0.008332237601280212 +illusion_1.5L,ppo,266,106.4,target_force,target_cl,0.0021214294247329235 +illusion_1.5L,ppo,267,106.8,target_force,target_cd,0.008196236565709114 +illusion_1.5L,ppo,267,106.8,target_force,target_cl,0.000935496820602566 +illusion_1.5L,ppo,268,107.2,target_force,target_cd,0.00811728835105896 +illusion_1.5L,ppo,268,107.2,target_force,target_cl,-0.00030141021125018597 +illusion_1.5L,ppo,269,107.6,target_force,target_cd,0.00829890463501215 +illusion_1.5L,ppo,269,107.6,target_force,target_cl,-0.0015130521496757865 +illusion_1.5L,ppo,270,108.0,target_force,target_cd,0.008303137496113777 +illusion_1.5L,ppo,270,108.0,target_force,target_cl,-0.002624597167596221 +illusion_1.5L,ppo,271,108.4,target_force,target_cd,0.008214408531785011 +illusion_1.5L,ppo,271,108.4,target_force,target_cl,-0.0035674641840159893 +illusion_1.5L,ppo,272,108.8,target_force,target_cd,0.0083629060536623 +illusion_1.5L,ppo,272,108.8,target_force,target_cl,-0.004283796530216932 +illusion_1.5L,ppo,273,109.2,target_force,target_cd,0.00848082173615694 +illusion_1.5L,ppo,273,109.2,target_force,target_cl,-0.00473026093095541 +illusion_1.5L,ppo,274,109.6,target_force,target_cd,0.008707493543624878 +illusion_1.5L,ppo,274,109.6,target_force,target_cl,-0.004880912136286497 +illusion_1.5L,ppo,275,110.0,target_force,target_cd,0.008908077143132687 +illusion_1.5L,ppo,275,110.0,target_force,target_cl,-0.004728920757770538 +illusion_1.5L,ppo,276,110.4,target_force,target_cd,0.00870131142437458 +illusion_1.5L,ppo,276,110.4,target_force,target_cl,-0.004287036135792732 +illusion_1.5L,ppo,277,110.8,target_force,target_cd,0.008512722328305244 +illusion_1.5L,ppo,277,110.8,target_force,target_cl,-0.003586746985092759 +illusion_1.5L,ppo,278,111.2,target_force,target_cd,0.008403330110013485 +illusion_1.5L,ppo,278,111.2,target_force,target_cl,-0.002676178002730012 +illusion_1.5L,ppo,279,111.6,target_force,target_cd,0.008277405984699726 +illusion_1.5L,ppo,279,111.6,target_force,target_cl,-0.001616867259144783 +illusion_1.5L,ppo,280,112.0,target_force,target_cd,0.008384994231164455 +illusion_1.5L,ppo,280,112.0,target_force,target_cl,-0.0004796259745489806 +illusion_1.5L,ppo,281,112.4,target_force,target_cd,0.008344382978975773 +illusion_1.5L,ppo,281,112.4,target_force,target_cl,0.0006602332578040659 +illusion_1.5L,ppo,282,112.8,target_force,target_cd,0.008156534284353256 +illusion_1.5L,ppo,282,112.8,target_force,target_cl,0.0017279828898608685 +illusion_1.5L,ppo,283,113.2,target_force,target_cd,0.008226209320127964 +illusion_1.5L,ppo,283,113.2,target_force,target_cl,0.002654529409483075 +illusion_1.5L,ppo,284,113.6,target_force,target_cd,0.008320114575326443 +illusion_1.5L,ppo,284,113.6,target_force,target_cl,0.003381080459803343 +illusion_1.5L,ppo,285,114.0,target_force,target_cd,0.00853065587580204 +illusion_1.5L,ppo,285,114.0,target_force,target_cl,0.0038631048519164324 +illusion_1.5L,ppo,286,114.4,target_force,target_cd,0.008803099393844604 +illusion_1.5L,ppo,286,114.4,target_force,target_cl,0.004073311109095812 +illusion_1.5L,ppo,287,114.8,target_force,target_cd,0.008690337650477886 +illusion_1.5L,ppo,287,114.8,target_force,target_cl,0.004003433044999838 +illusion_1.5L,ppo,288,115.2,target_force,target_cd,0.008544675074517727 +illusion_1.5L,ppo,288,115.2,target_force,target_cl,0.003664699150249362 +illusion_1.5L,ppo,289,115.6,target_force,target_cd,0.008495600894093513 +illusion_1.5L,ppo,289,115.6,target_force,target_cl,0.0030869469046592712 +illusion_1.5L,ppo,290,116.0,target_force,target_cd,0.008385095745325089 +illusion_1.5L,ppo,290,116.0,target_force,target_cl,0.0023164439480751753 +illusion_1.5L,ppo,291,116.4,target_force,target_cd,0.00847627129405737 +illusion_1.5L,ppo,291,116.4,target_force,target_cl,0.001412564772181213 +illusion_1.5L,ppo,292,116.8,target_force,target_cd,0.008447900414466858 +illusion_1.5L,ppo,292,116.8,target_force,target_cl,0.0004435561131685972 +illusion_1.5L,ppo,293,117.2,target_force,target_cd,0.008206440135836601 +illusion_1.5L,ppo,293,117.2,target_force,target_cl,-0.0005183155299164355 +illusion_1.5L,ppo,294,117.6,target_force,target_cd,0.00820583663880825 +illusion_1.5L,ppo,294,117.6,target_force,target_cl,-0.0014018918154761195 +illusion_1.5L,ppo,295,118.0,target_force,target_cd,0.008266313932836056 +illusion_1.5L,ppo,295,118.0,target_force,target_cl,-0.0021421664860099554 +illusion_1.5L,ppo,296,118.4,target_force,target_cd,0.008429205976426601 +illusion_1.5L,ppo,296,118.4,target_force,target_cl,-0.0026848914567381144 +illusion_1.5L,ppo,297,118.8,target_force,target_cd,0.008723028935492039 +illusion_1.5L,ppo,297,118.8,target_force,target_cl,-0.0029904174152761698 +illusion_1.5L,ppo,298,119.2,target_force,target_cd,0.008667167276144028 +illusion_1.5L,ppo,298,119.2,target_force,target_cl,-0.0030365013517439365 +illusion_1.5L,ppo,299,119.6,target_force,target_cd,0.008530458435416222 +illusion_1.5L,ppo,299,119.6,target_force,target_cl,-0.002819881308823824 +illusion_1.5L,ppo,300,120.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,ppo,300,120.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,ppo,301,120.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,ppo,301,120.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,ppo,302,120.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,ppo,302,120.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,ppo,303,121.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,ppo,303,121.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,ppo,304,121.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,ppo,304,121.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,ppo,305,122.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,ppo,305,122.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,ppo,306,122.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,ppo,306,122.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,ppo,307,122.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,ppo,307,122.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,ppo,308,123.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,ppo,308,123.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,ppo,309,123.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,ppo,309,123.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,ppo,310,124.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,ppo,310,124.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,ppo,311,124.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,ppo,311,124.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,ppo,312,124.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,ppo,312,124.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,ppo,313,125.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,ppo,313,125.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,ppo,314,125.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,ppo,314,125.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,ppo,315,126.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,ppo,315,126.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,ppo,316,126.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,ppo,316,126.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,ppo,317,126.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,ppo,317,126.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,ppo,318,127.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,ppo,318,127.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,ppo,319,127.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,ppo,319,127.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,ppo,320,128.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,ppo,320,128.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,ppo,321,128.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,ppo,321,128.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,ppo,322,128.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,ppo,322,128.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,ppo,323,129.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,ppo,323,129.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,ppo,324,129.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,ppo,324,129.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,ppo,325,130.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,ppo,325,130.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,ppo,326,130.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,ppo,326,130.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,ppo,327,130.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,ppo,327,130.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,ppo,328,131.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,ppo,328,131.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,ppo,329,131.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,ppo,329,131.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,ppo,330,132.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,ppo,330,132.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,ppo,331,132.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,ppo,331,132.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,ppo,332,132.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,ppo,332,132.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,ppo,333,133.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,ppo,333,133.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,ppo,334,133.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,ppo,334,133.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,ppo,335,134.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,ppo,335,134.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,ppo,336,134.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,ppo,336,134.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,ppo,337,134.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,ppo,337,134.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,ppo,338,135.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,ppo,338,135.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,ppo,339,135.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,ppo,339,135.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,ppo,340,136.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,ppo,340,136.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,ppo,341,136.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,ppo,341,136.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,ppo,342,136.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,ppo,342,136.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,ppo,343,137.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,ppo,343,137.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,ppo,344,137.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,ppo,344,137.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,ppo,345,138.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,ppo,345,138.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,ppo,346,138.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,ppo,346,138.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,ppo,347,138.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,ppo,347,138.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,ppo,348,139.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,ppo,348,139.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,ppo,349,139.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,ppo,349,139.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,ppo,350,140.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,ppo,350,140.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,ppo,351,140.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,ppo,351,140.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,ppo,352,140.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,ppo,352,140.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,ppo,353,141.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,ppo,353,141.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,ppo,354,141.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,ppo,354,141.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,ppo,355,142.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,ppo,355,142.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,ppo,356,142.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,ppo,356,142.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,ppo,357,142.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,ppo,357,142.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,ppo,358,143.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,ppo,358,143.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,ppo,359,143.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,ppo,359,143.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,ppo,360,144.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,ppo,360,144.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,ppo,361,144.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,ppo,361,144.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,ppo,362,144.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,ppo,362,144.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,ppo,363,145.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,ppo,363,145.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,ppo,364,145.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,ppo,364,145.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,ppo,365,146.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,ppo,365,146.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,ppo,366,146.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,ppo,366,146.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,ppo,367,146.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,ppo,367,146.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,ppo,368,147.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,ppo,368,147.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,ppo,369,147.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,ppo,369,147.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,ppo,370,148.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,ppo,370,148.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,ppo,371,148.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,ppo,371,148.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,ppo,372,148.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,ppo,372,148.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,ppo,373,149.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,ppo,373,149.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,ppo,374,149.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,ppo,374,149.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,ppo,375,150.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,ppo,375,150.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,ppo,376,150.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,ppo,376,150.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,ppo,377,150.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,ppo,377,150.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,ppo,378,151.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,ppo,378,151.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,ppo,379,151.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,ppo,379,151.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,ppo,380,152.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,ppo,380,152.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,ppo,381,152.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,ppo,381,152.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,ppo,382,152.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,ppo,382,152.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,ppo,383,153.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,ppo,383,153.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,ppo,384,153.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,ppo,384,153.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,ppo,385,154.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,ppo,385,154.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,ppo,386,154.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,ppo,386,154.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,ppo,387,154.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,ppo,387,154.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,ppo,388,155.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,ppo,388,155.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,ppo,389,155.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,ppo,389,155.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,ppo,390,156.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,ppo,390,156.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,ppo,391,156.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,ppo,391,156.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,ppo,392,156.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,ppo,392,156.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,ppo,393,157.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,ppo,393,157.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,ppo,394,157.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,ppo,394,157.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,ppo,395,158.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,ppo,395,158.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,ppo,396,158.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,ppo,396,158.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,ppo,397,158.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,ppo,397,158.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,ppo,398,159.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,ppo,398,159.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,ppo,399,159.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,ppo,399,159.6,target_force,target_cl,-0.004395345691591501 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_manifest.json new file mode 100644 index 0000000..c874406 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1.5L", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_1p5L__ppo__f-ppo__si-800.npz", + "sample_interval": 800, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_wide.csv new file mode 100644 index 0000000..d41cde4 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1.5L,ppo,0,0.0,1.099976897239685,-0.31849512457847595,0.9535225033760071,-0.5483039617538452,0.851777970790863,-0.2916666865348816,0.0019668666645884514,-0.0004738658608403057,0.00243289303034544,0.0021826792508363724,0.0013182003749534488,-0.002933492651209235,1.941986322402954,3.209744453430176,1.732092022895813,0.01941986322402954,0.03209744453430176,0.01732092022895813,0.008516530506312847,-0.00235650478862226,0 +illusion_1.5L,ppo,1,0.4,1.1750082969665527,-0.3366432189941406,0.9536588191986084,-0.5511385798454285,0.7902666330337524,-0.213478684425354,0.0020375216845422983,-0.0009040882578119636,0.0034563448280096054,0.0012386930175125599,0.0017636005068197846,-0.0027858633548021317,0.6020504236221313,0.8156056404113771,-0.3386270999908447,0.006020504236221314,0.00815605640411377,-0.0033862709999084475,0.008421123959124088,-0.0016804002225399017,1 +illusion_1.5L,ppo,2,0.8,1.2608689069747925,-0.34059470891952515,0.9155110716819763,-0.4565860629081726,0.7467697858810425,-0.10630388557910919,0.002056336961686611,-0.0006817670655436814,0.003010205226019025,0.0007200751570053399,0.002676321193575859,-0.0017837202176451683,-0.9304244518280029,-1.0189091563224792,-1.8308806419372559,-0.00930424451828003,-0.010189091563224792,-0.018308806419372558,0.008498861454427242,-0.0008412639726884663,2 +illusion_1.5L,ppo,3,1.2,1.3496137857437134,-0.30973508954048157,0.8421260118484497,-0.202263742685318,0.7471931576728821,0.005089789163321257,0.002329855225980282,0.00021416485833469778,0.0021366747096180916,0.0008633002871647477,0.0035515197087079287,-0.0005146919284015894,-2.13261079788208,-1.1459285020828247,-1.616842269897461,-0.021326107978820803,-0.011459285020828247,-0.01616842269897461,0.008499415591359138,9.906048217089847e-05,3 +illusion_1.5L,ppo,4,1.6,1.3892676830291748,-0.18605190515518188,0.7779160141944885,0.1588158756494522,0.7928940057754517,0.09305249154567719,0.0023361053317785263,0.0011140548158437014,0.0019600477535277605,0.0012143157655373216,0.003920885734260082,0.00025738493422977626,-1.442936897277832,-0.37339115142822266,-0.5187168121337891,-0.014429368972778321,-0.0037339115142822265,-0.005187168121337891,0.008235407061874866,0.0010709670605137944,4 +illusion_1.5L,ppo,5,2.0,1.2945294380187988,0.0607953704893589,0.7734797596931458,0.44464847445487976,0.8526725769042969,0.1638992428779602,0.002098418539389968,0.0010784853948280215,0.0021978511940687895,0.0011046540457755327,0.0035692248493433,0.00045197553117759526,0.6232544183731079,-0.21235203742980957,-0.0905001163482666,0.006232544183731079,-0.002123520374298096,-0.000905001163482666,0.008183185011148453,0.0020020240917801857,5 +illusion_1.5L,ppo,6,2.4,1.115586519241333,0.2839464247226715,0.8312569260597229,0.5227129459381104,0.9138904809951782,0.2230985015630722,0.0020110001787543297,0.0004244740994181484,0.0023927995935082436,0.00106708740349859,0.003120736451819539,0.0004338914586696774,1.217389464378357,-1.122499167919159,-0.7400574684143066,0.01217389464378357,-0.01122499167919159,-0.007400574684143067,0.008230230771005154,0.002822116483002901,6 +illusion_1.5L,ppo,7,2.8,0.9778898358345032,0.3554610013961792,0.8913658261299133,0.5183441638946533,0.9757066369056702,0.2691124379634857,0.0018753623589873314,9.880999277811497e-05,0.0025073415599763393,0.0016279136762022972,0.003278779797255993,0.0003506780485622585,-0.005511164665222168,-1.5269116759300232,-1.2153043746948242,-5.511164665222168e-05,-0.015269116759300233,-0.012153043746948242,0.008360556326806545,0.0034684324637055397,7 +illusion_1.5L,ppo,8,3.2,0.8975840210914612,0.3320774435997009,0.9298224449157715,0.531841516494751,1.0398427248001099,0.30405139923095703,0.001807454857043922,0.0004211741324979812,0.0023341053165495396,0.002377405995503068,0.0036741902586072683,0.00019149002037011087,-1.0442770719528198,-0.7272988557815552,-0.9612452983856201,-0.010442770719528198,-0.007272988557815552,-0.009612452983856202,0.008675433695316315,0.003889942541718483,8 +illusion_1.5L,ppo,9,3.6,0.8314389586448669,0.27858152985572815,0.9491778016090393,0.5579574108123779,1.1070752143859863,0.3305412232875824,0.0018156878650188446,0.0006849018973298371,0.00212554051540792,0.002743133343756199,0.003699439810588956,0.00025993981398642063,-0.35374557971954346,-0.009137868881225586,-0.7331018447875977,-0.0035374557971954348,-9.137868881225586e-05,-0.007331018447875977,0.008685079403221607,0.004051059018820524,9 +illusion_1.5L,ppo,10,4.0,0.7680780291557312,0.19757263362407684,0.9447603821754456,0.5575675368309021,1.1825809478759766,0.3473564386367798,0.0019084307132288814,0.0004955362528562546,0.0023872412275522947,0.0024378723464906216,0.0033684258814901114,0.0005149596254341304,0.6083433628082275,0.5716071128845215,-0.4134855270385742,0.0060834336280822755,0.0057160711288452145,-0.004134855270385742,0.00856055412441492,0.003934219013899565,10 +illusion_1.5L,ppo,11,4.4,0.7240200042724609,0.08899645507335663,0.9017706513404846,0.45619770884513855,1.2688137292861938,0.3486625552177429,0.002133866073563695,1.7466869394411333e-05,0.0028800100553780794,0.0015754177002236247,0.002899663057178259,0.0007085696561262012,0.9737371802330016,0.7751290798187256,-0.19543170928955078,0.009737371802330017,0.007751290798187256,-0.001954317092895508,0.008574451319873333,0.0035412150900810957,11 +illusion_1.5L,ppo,12,4.8,0.724001407623291,-0.023139851167798042,0.8268073201179504,0.2009703516960144,1.3586664199829102,0.3129992187023163,0.002345702610909939,-0.0005059323739260435,0.0031041025649756193,0.00085010303882882,0.002603387925773859,0.0008830121369101107,0.9049892425537109,0.2489438056945801,-0.3887920379638672,0.00904989242553711,0.002489438056945801,-0.003887920379638672,0.008493040688335896,0.0028931754641234875,12 +illusion_1.5L,ppo,13,5.2,0.7659614086151123,-0.11488711088895798,0.7617775201797485,-0.1499500572681427,1.4012036323547363,0.1890067607164383,0.0024029419291764498,-0.0007037937175482512,0.0030067432671785355,0.00048323397641070187,0.002455337904393673,0.0010318680433556437,0.16814374923706055,0.2875683307647705,-0.04742622375488281,0.0016814374923706055,0.002875683307647705,-0.00047426223754882814,0.008542587049305439,0.0020292061381042004,13 +illusion_1.5L,ppo,14,5.6,0.8213576674461365,-0.19133859872817993,0.7492608428001404,-0.4299377501010895,1.317550539970398,-0.03887706622481346,0.002282294910401106,-0.0005765570094808936,0.003004373051226139,0.00019137786875944585,0.0023795815650373697,0.0008951686322689056,-0.159498929977417,0.8691983222961426,0.7783864736557007,-0.00159498929977417,0.008691983222961426,0.007783864736557007,0.008553043939173222,0.0010037844767794013,14 +illusion_1.5L,ppo,15,6.0,0.8792874217033386,-0.25742486119270325,0.7909626960754395,-0.5134557485580444,1.1540719270706177,-0.23336191475391388,0.002077824668958783,-0.0005699695320799947,0.003388606710359454,-7.828106754459441e-05,0.0024717850610613823,0.00034924090141430497,0.4042631983757019,0.9887299537658693,1.1575267910957336,0.004042631983757019,0.009887299537658692,0.011575267910957336,0.008254999294877052,-0.00011690740939229727,15 +illusion_1.5L,ppo,16,6.4,0.9395577907562256,-0.31149178743362427,0.8338911533355713,-0.49962109327316284,1.0231969356536865,-0.29116812348365784,0.0019342750310897827,-0.0008078078390099108,0.0038859283085912466,-0.00020879207295365632,0.0025872329715639353,-0.0005217210855334997,0.7472513914108276,0.8443994522094727,1.047013521194458,0.007472513914108276,0.008443994522094727,0.01047013521194458,0.008126122877001762,-0.0012594565050676465,16 +illusion_1.5L,ppo,17,6.8,1.00351881980896,-0.355611652135849,0.8467668890953064,-0.5040479898452759,0.9471198916435242,-0.26476725935935974,0.0018495197873562574,-0.0010143584804609418,0.004040016792714596,-0.00014051736798137426,0.002560150809586048,-0.0013759044231846929,0.5905010104179382,0.6867978572845459,0.704238772392273,0.005905010104179383,0.006867978572845459,0.00704238772392273,0.008139083161950111,-0.0023481876123696566,17 +illusion_1.5L,ppo,18,7.2,1.0703043937683105,-0.38950398564338684,0.8351020216941833,-0.5282728672027588,0.8948360681533813,-0.21481652557849884,0.0018308691214770079,-0.0011114950757473707,0.003792951814830303,-1.9305469322716817e-05,0.0025159006472676992,-0.0019402519101276994,0.48103994131088257,0.7402939796447754,0.5391690731048584,0.004810399413108826,0.007402939796447754,0.005391690731048584,0.008225912228226662,-0.0033102850429713726,18 +illusion_1.5L,ppo,19,7.6,1.141778826713562,-0.4151398837566376,0.8122506141662598,-0.5302664041519165,0.8508548140525818,-0.15672357380390167,0.0017989850603044033,-0.0011421865783631802,0.0034932359121739864,-8.807646372588351e-05,0.0025137565098702908,-0.0023487780708819628,0.32072964310646057,1.102686882019043,0.7694337368011475,0.003207296431064606,0.01102686882019043,0.0076943373680114745,0.008550929836928844,-0.004080713726580143,19 +illusion_1.5L,ppo,20,8.0,1.220288872718811,-0.43308502435684204,0.7655134797096252,-0.47963306307792664,0.8149528503417969,-0.08886748552322388,0.0017754960572347045,-0.0011311304988339543,0.003359655849635601,-0.00024577154545113444,0.0025795719120651484,-0.002695355797186494,0.22530981898307803,1.019214153289795,0.702878475189209,0.0022530981898307803,0.01019214153289795,0.00702878475189209,0.008641579188406467,-0.004606609698385,20 +illusion_1.5L,ppo,21,8.4,1.30967378616333,-0.43481722474098206,0.6804035902023315,-0.3505691587924957,0.7944460511207581,-0.010062533430755138,0.0018113680416718125,-0.001138280495069921,0.0031487694941461086,-0.0003933779080398381,0.002698427764698863,-0.0028423937037587166,0.19970089197158813,0.5268838405609131,0.290202260017395,0.0019970089197158813,0.005268838405609131,0.0029020226001739502,0.008560840971767902,-0.004850836470723152,21 +illusion_1.5L,ppo,22,8.8,1.394059658050537,-0.38873377442359924,0.5723876357078552,-0.11555219441652298,0.7904538512229919,0.07878325134515762,0.0018889139173552394,-0.0009996367152780294,0.002762733493000269,-0.0005549568450078368,0.002872403245419264,-0.0026857461780309677,-0.22320044040679932,0.1842207908630371,0.05541038513183594,-0.002232004404067993,0.001842207908630371,0.0005541038513183594,0.008636081591248512,-0.004794478416442871,22 +illusion_1.5L,ppo,23,9.2,1.4193514585494995,-0.23836754262447357,0.48859652876853943,0.1892208456993103,0.8032591938972473,0.17207546532154083,0.002037863479927182,-0.0007097612251527607,0.0023762464988976717,-0.0007094857865013182,0.003103145631030202,-0.0023063726257532835,-0.46672129631042475,-0.13337361812591553,-0.027025461196899414,-0.004667212963104248,-0.0013337361812591553,-0.00027025461196899413,0.008616222999989986,-0.004438104573637247,23 +illusion_1.5L,ppo,24,9.6,1.3371915817260742,0.015562420710921288,0.47659289836883545,0.44867661595344543,0.8323528170585632,0.262000173330307,0.002130432752892375,-0.00045498524559661746,0.0021287789568305016,-0.0006929181981831789,0.003306954400613904,-0.001797018456272781,-0.15261539816856384,-0.6171000003814697,-0.12443661689758301,-0.0015261539816856385,-0.006171000003814697,-0.00124436616897583,0.008672966621816158,-0.0038017285987734795,24 +illusion_1.5L,ppo,25,10.0,1.1804760694503784,0.25812041759490967,0.5315051078796387,0.5805907249450684,0.874815821647644,0.34436145424842834,0.002068562898784876,-0.0004476408357731998,0.0021663710940629244,-0.0004227882600389421,0.003461112966760993,-0.0013693912187591195,0.3555757701396942,-1.000697672367096,-0.1775341033935547,0.0035557577013969424,-0.010006976723670959,-0.0017753410339355468,0.008711673319339752,-0.002923475345596671,25 +illusion_1.5L,ppo,26,10.4,1.0186278820037842,0.3829788863658905,0.5947105288505554,0.6283680200576782,0.9268435835838318,0.41796737909317017,0.0019275732338428497,-0.0005053814966231585,0.0024678693152964115,0.00015373916539829224,0.0036476573441177607,-0.00112443370744586,0.30059805512428284,-1.1594375371932983,-0.3201777935028076,0.0030059805512428284,-0.011594375371932983,-0.003201777935028076,0.008389359340071678,-0.001857058727182448,26 +illusion_1.5L,ppo,27,10.8,0.8950983285903931,0.38720816373825073,0.629852294921875,0.6498619318008423,0.9848471879959106,0.48620450496673584,0.0018325126729905605,-0.0004047501424793154,0.002766137709841132,0.0009871753863990307,0.0038520386442542076,-0.0009928684448823333,-0.042012423276901245,-1.0255146026611328,-0.5324833393096924,-0.00042012423276901247,-0.01025514602661133,-0.005324833393096924,0.008158615790307522,-0.0006682443199679255,27 +illusion_1.5L,ppo,28,11.2,0.810971736907959,0.3254161477088928,0.6379437446594238,0.6370641589164734,1.0486609935760498,0.5525408983230591,0.0018378188833594322,-0.00018644398369360715,0.002866487018764019,0.0018441213760524988,0.0038734241388738155,-0.0007763219764456153,-0.14440876245498657,-0.6572694778442383,-0.687464714050293,-0.0014440876245498657,-0.006572694778442383,-0.00687464714050293,0.00808980967849493,0.0005694532301276922,28 +illusion_1.5L,ppo,29,11.6,0.750528872013092,0.23475311696529388,0.6138889193534851,0.5728189945220947,1.1149168014526367,0.610637903213501,0.0019209064776077867,8.06856041890569e-06,0.002921310719102621,0.002420522505417466,0.0036790287122130394,-0.00034368145861662924,0.022486642003059387,-0.16310715675354004,-0.6611287593841553,0.00022486642003059388,-0.0016310715675354004,-0.006611287593841553,0.00807673204690218,0.0017795475432649255,29 +illusion_1.5L,ppo,30,12.0,0.7131666541099548,0.12680096924304962,0.5583255290985107,0.4430258274078369,1.1721255779266357,0.639543354511261,0.002030559116974473,7.610595639562234e-05,0.003133135149255395,0.002523529576137662,0.0033549435902386904,0.00020964774012099952,0.25659361481666565,0.2536201477050781,-0.49306249618530273,0.0025659361481666565,0.0025362014770507813,-0.0049306249618530276,0.008341887965798378,0.002887511160224676,30 +illusion_1.5L,ppo,31,12.4,0.7028138041496277,0.011957637965679169,0.48347485065460205,0.24289733171463013,1.1958175897598267,0.5905409455299377,0.0021648735273629427,2.28978278755676e-05,0.0034536970779299736,0.0023106371518224478,0.0030387479346245527,0.0008126982138492167,0.3852786421775818,0.16167211532592773,-0.49695324897766113,0.003852786421775818,0.0016167211532592774,-0.004969532489776611,0.008465869352221489,0.003825533203780651,31 +illusion_1.5L,ppo,32,12.8,0.7161672115325928,-0.10343599319458008,0.4112061560153961,-0.0129037294536829,1.162133812904358,0.3812655210494995,0.0023073919583112,-3.60698250005953e-05,0.003662785980850458,0.0020289577078074217,0.0028139203786849976,0.0013900792691856623,0.14701271057128906,-0.14827346801757812,-0.47076940536499023,0.0014701271057128906,-0.0014827346801757812,-0.004707694053649902,0.008411048911511898,0.0045367949642241,32 +illusion_1.5L,ppo,33,13.2,0.7413732409477234,-0.21944302320480347,0.36001697182655334,-0.2883681356906891,1.077007532119751,0.04678625613451004,0.0023544731084257364,0.00018472253577783704,0.0036665506195276976,0.0018149222014471889,0.0026569736655801535,0.0017980136908590794,-0.507101833820343,-0.24944353103637695,-0.1646881103515625,-0.005071018338203431,-0.0024944353103637695,-0.001646881103515625,0.008551978506147861,0.0049789901822805405,33 +illusion_1.5L,ppo,34,13.6,0.7767755389213562,-0.33396244049072266,0.34541264176368713,-0.5284796357154846,0.9724568724632263,-0.2894784212112427,0.002285995287820697,0.0005187997012399137,0.003600683296099305,0.0017410560976713896,0.0026259685400873423,0.0018198234029114246,-0.5119451284408569,-0.3928096294403076,0.14213240146636963,-0.005119451284408569,-0.003928096294403076,0.0014213240146636963,0.008640555664896965,0.005126874428242445,34 +illusion_1.5L,ppo,35,14.0,0.8218798041343689,-0.44716203212738037,0.3737741708755493,-0.6763774752616882,0.8758971691131592,-0.5442480444908142,0.0021412039641290903,0.0006417168187908828,0.003575108014047146,0.0018781578401103616,0.0026778646279126406,0.0013740829890593886,-0.12575605511665344,-0.5574060678482056,0.28154873847961426,-0.0012575605511665345,-0.005574060678482056,0.0028154873847961426,0.00877284724265337,0.004973690956830978,35 +illusion_1.5L,ppo,36,14.4,0.875479519367218,-0.5633947253227234,0.41511040925979614,-0.7418858408927917,0.7991033792495728,-0.6828866004943848,0.0020196493715047836,0.0006189687992446125,0.003505745902657509,0.002049168571829796,0.002671747701242566,0.0005950338090769947,-0.20696255564689636,-0.4350249767303467,0.3048539161682129,-0.0020696255564689636,-0.004350249767303467,0.003048539161682129,0.008914750069379807,0.004531398881226778,36 +illusion_1.5L,ppo,37,14.8,0.9359966516494751,-0.6767194271087646,0.42861220240592957,-0.7733412384986877,0.7457057237625122,-0.6899577379226685,0.0019639567472040653,0.0006324019050225616,0.0032558059319853783,0.0021704481914639473,0.0026130550540983677,-0.00014452128380071372,-0.36938709020614624,-0.400567889213562,0.040247440338134766,-0.0036938709020614626,-0.00400567889213562,0.0004024744033813477,0.008651209995150566,0.0038297150749713182,37 +illusion_1.5L,ppo,38,15.2,0.9955703616142273,-0.7419323921203613,0.4076624810695648,-0.7664675712585449,0.7100991010665894,-0.6059398055076599,0.001979653723537922,0.0005794635508209467,0.002950141439214349,0.0020889488514512777,0.002621515654027462,-0.0006492872489616275,-0.176839679479599,-0.29205799102783203,-0.1970508098602295,-0.00176839679479599,-0.0029205799102783206,-0.001970508098602295,0.008369920775294304,0.002914042677730322,38 +illusion_1.5L,ppo,39,15.6,1.0469869375228882,-0.6989283561706543,0.3706223964691162,-0.6784529685974121,0.6816736459732056,-0.4869650602340698,0.002017481718212366,0.0004383031919132918,0.002783955307677388,0.0016587181016802788,0.0027400804683566093,-0.000954208429902792,-0.039579540491104126,-0.03808021545410156,-0.18136858940124512,-0.0003957954049110413,-0.00038080215454101564,-0.0018136858940124513,0.00823057908564806,0.0018424494192004204,39 +illusion_1.5L,ppo,40,16.0,1.082192063331604,-0.4982312321662903,0.33581674098968506,-0.4869539737701416,0.656953752040863,-0.34518811106681824,0.00207667239010334,0.00023574088118039072,0.0027441363781690598,0.001063551870174706,0.002949225716292858,-0.001113216276280582,0.10464975237846373,-0.044719696044921875,-0.11406850814819336,0.0010464975237846374,-0.00044719696044921877,-0.0011406850814819336,0.008093336597084999,0.0006818966940045357,40 +illusion_1.5L,ppo,41,16.4,1.095755934715271,-0.15138211846351624,0.3198545277118683,-0.21071763336658478,0.6427490711212158,-0.17648690938949585,0.002103676786646247,-2.7786451028077863e-05,0.0026759218890219927,0.0005543051520362496,0.0031047039665281773,-0.0012095760321244597,0.2959255278110504,-0.11687469482421875,0.12229251861572264,0.0029592552781105043,-0.0011687469482421875,0.0012229251861572265,0.008223836310207844,-0.0004960204241797328,41 +illusion_1.5L,ppo,42,16.8,1.086368203163147,0.211649090051651,0.33243119716644287,0.10523422062397003,0.6477837562561035,0.007681591901928186,0.002102526370435953,-0.0003346287121530622,0.0025957124307751656,0.00020236516138538718,0.00311102787964046,-0.0014056410873308778,0.48176878690719604,-0.03550577163696289,0.5874285697937012,0.00481768786907196,-0.0003550577163696289,0.005874285697937012,0.008288096636533737,-0.0016195487696677446,42 +illusion_1.5L,ppo,43,17.2,1.0563209056854248,0.5111325979232788,0.371785968542099,0.4071047902107239,0.6876928806304932,0.16898681223392487,0.0020910287275910378,-0.0006984780193306506,0.0025430393870919943,1.9335426259203814e-05,0.0030228025279939175,-0.0018240660429000854,0.7268116474151611,0.05350804328918457,1.0019391179084778,0.007268116474151612,0.0005350804328918457,0.010019391179084777,0.008168513886630535,-0.0026211808435618877,43 +illusion_1.5L,ppo,44,17.6,1.0104703903198242,0.7293464541435242,0.4258027970790863,0.6530249714851379,0.7589697241783142,0.2890162169933319,0.002046343870460987,-0.0010541094234213233,0.0024690183345228434,2.7136251446790993e-05,0.0029320926405489445,-0.0023856107145547867,0.8276234269142152,0.0823984146118164,1.183782696723938,0.008276234269142152,0.000823984146118164,0.01183782696723938,0.008290053345263004,-0.003441715380176902,44 +illusion_1.5L,ppo,45,18.0,0.9517003893852234,0.8474674224853516,0.4867962896823883,0.8060177564620972,0.8444178700447083,0.39119842648506165,0.0020011011511087418,-0.001320396549999714,0.0023719987366348505,0.00016364891780540347,0.0028930306434631348,-0.0029024160467088223,0.7552164793014526,0.08570504188537598,1.1460378170013428,0.0075521647930145265,0.0008570504188537598,0.011460378170013427,0.008446116000413895,-0.004033731762319803,45 +illusion_1.5L,ppo,46,18.4,0.8843719959259033,0.857451856136322,0.5411293506622314,0.8641359806060791,0.9388858079910278,0.49092522263526917,0.001970922574400902,-0.0014749962138012052,0.0022448941599577665,0.00034274981589987874,0.0028432756662368774,-0.0032117057126015425,0.6658228635787964,0.10638618469238281,0.9754748344421386,0.006658228635787964,0.001063861846923828,0.009754748344421386,0.00865935068577528,-0.004364273976534605,46 +illusion_1.5L,ppo,47,18.8,0.819495439529419,0.7942003607749939,0.567695677280426,0.8686093688011169,1.041948676109314,0.5652312636375427,0.001957878703251481,-0.0015658963238820434,0.0021290897857397795,0.0004845511575695127,0.0027506863698363304,-0.0032381745986640453,0.6558326482772827,0.17340755462646484,0.7688038349151611,0.0065583264827728275,0.0017340755462646484,0.007688038349151612,0.00895126722753048,-0.004416606388986111,47 +illusion_1.5L,ppo,48,19.2,0.7629286050796509,0.6807845234870911,0.5726907253265381,0.7726595997810364,1.1371899843215942,0.4910166263580322,0.0019656165968626738,-0.001609500148333609,0.002101306105032563,0.0005568282213062048,0.002669937675818801,-0.0029924451373517513,0.5964444875717163,0.21192073822021484,0.5549124479293823,0.005964444875717163,0.0021192073822021485,0.005549124479293823,0.008846367709338665,-0.004190945997834206,48 +illusion_1.5L,ppo,49,19.6,0.7192699909210205,0.49363258481025696,0.5917133092880249,0.49673137068748474,1.205459713935852,0.19806617498397827,0.001998492982238531,-0.0015081942547112703,0.002169713145121932,0.0005603000754490495,0.002638115780428052,-0.002542588161304593,0.22594848275184629,0.24780368804931638,0.41242182254791254,0.002259484827518463,0.002478036880493164,0.004124218225479126,0.0086283003911376,-0.0037041637115180492,49 +illusion_1.5L,ppo,50,20.0,0.6987769603729248,0.22286565601825714,0.6504058241844177,0.07740198820829391,1.2301051616668701,-0.20497846603393555,0.0020301274489611387,-0.0011979149421676993,0.002250364050269127,0.0005331556312739849,0.002616328652948141,-0.00196074228733778,-0.2741820216178894,0.17306900024414062,0.2342665195465088,-0.002741820216178894,0.0017306900024414062,0.002342665195465088,0.00852078478783369,-0.002988493302837014,50 +illusion_1.5L,ppo,51,20.4,0.7151654958724976,-0.07150044292211533,0.7377921342849731,-0.356918066740036,1.2090246677398682,-0.5354105234146118,0.0020951570477336645,-0.0007304231985472143,0.0023115752264857292,0.0005618307623080909,0.002641254337504506,-0.0012756326468661427,-0.5391049385070801,-0.09195268154144287,-0.08966279029846191,-0.005391049385070801,-0.0009195268154144287,-0.0008966279029846191,0.008339837193489075,-0.0020893490873277187,51 +illusion_1.5L,ppo,52,20.8,0.7831017374992371,-0.26577767729759216,0.8272097110748291,-0.6710523962974548,1.149972915649414,-0.6993334293365479,0.0021433064248412848,-0.00025814087712205946,0.0023636939004063606,0.0006217684131115675,0.00269687594845891,-0.000601787818595767,-0.5021133422851562,-0.29876530170440674,-0.34248781204223633,-0.0050211334228515625,-0.0029876530170440674,-0.003424878120422363,0.008356091566383839,-0.001062412979081273,52 +illusion_1.5L,ppo,53,21.2,0.8825851678848267,-0.3331773281097412,0.9024699926376343,-0.7733837366104126,1.0782121419906616,-0.7373679876327515,0.0021392740309238434,0.0001353169500362128,0.0024342869874089956,0.0007214710349217057,0.0027683512307703495,-2.9437802368192933e-05,-0.3706050515174866,-0.5343754291534424,-0.5437803268432617,-0.0037060505151748657,-0.005343754291534424,-0.005437803268432617,0.00832816120237112,2.9825627279933542e-05,53 +illusion_1.5L,ppo,54,21.6,0.9855718016624451,-0.3578403890132904,0.9663002490997314,-0.7773270606994629,1.0115643739700317,-0.7292929887771606,0.0021024232264608145,0.0004058100748807192,0.002527473261579871,0.0009326755534857512,0.0028741878923028708,0.00039600615855306387,-0.2824721336364746,-0.7906763553619385,-0.723233699798584,-0.002824721336364746,-0.007906763553619385,-0.00723233699798584,0.008069791831076145,0.0011218518484383821,54 +illusion_1.5L,ppo,55,22.0,1.0889722108840942,-0.37044429779052734,1.0194348096847534,-0.779551088809967,0.939218282699585,-0.6670967936515808,0.0020397803746163845,0.0006826111930422485,0.002594855148345232,0.0012925757328048348,0.0029660470318049192,0.0006806435994803905,-0.5043542385101318,-0.800063729286194,-0.7663683891296387,-0.005043542385101319,-0.00800063729286194,-0.007663683891296387,0.008051803335547447,0.002149005187675357,55 +illusion_1.5L,ppo,56,22.4,1.1989871263504028,-0.3664117455482483,1.0480806827545166,-0.6838091015815735,0.8578633666038513,-0.47958827018737793,0.001982659101486206,0.0009615399758331478,0.00262752384878695,0.0016760453581809998,0.0030113914981484413,0.0008408281137235463,-0.5823725461959839,-0.6365240812301636,-0.7250423431396484,-0.005823725461959839,-0.006365240812301636,-0.007250423431396484,0.008151903748512268,0.0030512260273098946,56 +illusion_1.5L,ppo,57,22.8,1.2966642379760742,-0.3065105676651001,1.0414707660675049,-0.31296873092651367,0.7950806617736816,-0.15653662383556366,0.0019465450895950198,0.00111811060924083,0.0026407709810882807,0.001929801655933261,0.0029873973689973354,0.0009510097443126142,-0.33703821897506714,-0.4484481811523437,-0.7016458511352539,-0.0033703821897506717,-0.004484481811523437,-0.007016458511352539,0.00834288913756609,0.0037764590233564377,57 +illusion_1.5L,ppo,58,23.2,1.2861404418945312,-0.09608037024736404,1.0343995094299316,0.16764138638973236,0.7881581783294678,0.17157062888145447,0.0019387495703995228,0.0010591534664854407,0.0026438215281814337,0.0019017703598365188,0.0028756081592291594,0.0010239100083708763,0.03986561298370361,-0.19069314002990723,-0.6307487487792969,0.00039865612983703614,-0.0019069314002990723,-0.006307487487792969,0.008715752512216568,0.004283526912331581,58 +illusion_1.5L,ppo,59,23.6,1.1528568267822266,0.17725244164466858,1.0407267808914185,0.42767345905303955,0.840610682964325,0.33106529712677,0.0019958633929491043,0.0007384234922938049,0.0026382775977253914,0.001732658944092691,0.002794176572933793,0.0011273487471044064,0.5258165597915649,-0.34295356273651123,-0.7614390850067139,0.00525816559791565,-0.003429535627365112,-0.007614390850067139,0.00877283327281475,0.004544325638562441,59 +illusion_1.5L,ppo,60,24.0,1.0409190654754639,0.32070982456207275,1.0541568994522095,0.4634145498275757,0.9123886227607727,0.3475705683231354,0.0020941130351275206,0.00036746065597981215,0.0025730810593813658,0.0016334387473762035,0.0027969295624643564,0.0012278836220502853,0.44931474328041077,-0.4724375009536743,-0.7298002243041992,0.004493147432804108,-0.004724375009536743,-0.007298002243041992,0.008680131286382675,0.004545234143733978,60 +illusion_1.5L,ppo,61,24.4,0.9835498929023743,0.36383056640625,1.073474407196045,0.44879475235939026,0.9743152856826782,0.33646517992019653,0.002133956179022789,0.00024528204812668264,0.0024436519015580416,0.0014941885601729155,0.002742114709690213,0.001205687876790762,-0.18562635779380798,-0.07502365112304688,-0.29645371437072754,-0.00185626357793808,-0.0007502365112304688,-0.0029645371437072754,0.00870765931904316,0.00428768340498209,61 +illusion_1.5L,ppo,62,24.8,0.9429938793182373,0.37067630887031555,1.0977572202682495,0.4401603043079376,1.025015115737915,0.3265489935874939,0.00214145565405488,0.00020806373504456133,0.00236418005079031,0.0012846236350014806,0.002641654573380947,0.0011385052930563688,-0.029419928789138794,0.09509515762329102,-0.07160377502441406,-0.00029419928789138795,0.0009509515762329101,-0.0007160377502441407,0.008620945736765862,0.0037878667935729027,62 +illusion_1.5L,ppo,63,25.2,0.8976266384124756,0.34323322772979736,1.127497673034668,0.43763506412506104,1.0687520503997803,0.31785109639167786,0.0021581652108579874,-7.02727775205858e-05,0.002409236738458276,0.0009880688739940524,0.0025386689230799675,0.0009682889794930816,0.5795633792877197,0.21522903442382812,0.12328565120697021,0.005795633792877198,0.0021522903442382814,0.0012328565120697022,0.008646907284855843,0.0030756364576518536,63 +illusion_1.5L,ppo,64,25.6,0.8379431366920471,0.26543474197387695,1.1607290506362915,0.43597888946533203,1.106876254081726,0.3092799484729767,0.0021995685528963804,-0.0004342611937317997,0.002555309794843197,0.0005402531241998076,0.0024547644425183535,0.0006365462904796004,0.5788458585739136,0.440751314163208,0.33841240406036377,0.005788458585739136,0.00440751314163208,0.0033841240406036377,0.008617529645562172,0.0021926581393927336,64 +illusion_1.5L,ppo,65,26.0,0.7752000689506531,0.1355070024728775,1.1922717094421387,0.42289677262306213,1.1418776512145996,0.29962852597236633,0.0022233035415410995,-0.0007360663148574531,0.002612513955682516,0.0001568636071169749,0.002428819425404072,0.00028393001412041485,0.5109463334083557,0.27875232696533203,0.15983641147613525,0.0051094633340835575,0.00278752326965332,0.0015983641147613527,0.008267231285572052,0.0011899459641426802,65 +illusion_1.5L,ppo,66,26.4,0.7429367899894714,-0.004566439893096685,1.1999671459197998,0.3705298602581024,1.1737697124481201,0.28781211376190186,0.0022186983842402697,-0.0009743344271555543,0.0025153832975775003,-4.3900683522224426e-05,0.002441754098981619,7.940465366118588e-06,0.509608268737793,0.2851996421813965,0.0626993179321289,0.00509608268737793,0.0028519964218139647,0.0006269931793212891,0.008079802617430687,0.00012491656525526196,66 +illusion_1.5L,ppo,67,26.8,0.7646917700767517,-0.09304232895374298,1.1463264226913452,0.24266275763511658,1.2028679847717285,0.2733694911003113,0.002160776173695922,-0.0011080156546086073,0.002505288692191243,-0.0002621732419356704,0.0024985652416944504,-0.00032340074540115893,0.3742165267467499,0.7744770050048828,0.40785098075866705,0.0037421652674674987,0.007744770050048829,0.00407850980758667,0.008036432787775993,-0.0009418626432307065,67 +illusion_1.5L,ppo,68,27.2,0.8111904859542847,-0.13286644220352173,1.0197956562042236,0.05054020881652832,1.2269484996795654,0.25624606013298035,0.002049884293228388,-0.0012056813575327396,0.002660834463313222,-0.0004853743012063205,0.0025818259455263615,-0.0007719298591837287,0.4588925242424011,0.9517910480499268,0.619543194770813,0.004588925242424011,0.009517910480499268,0.00619543194770813,0.008079362101852894,-0.0019500593189150095,68 +illusion_1.5L,ppo,69,27.6,0.8511306047439575,-0.16087649762630463,0.8881992101669312,-0.11420798301696777,1.2445069551467896,0.237682044506073,0.0019408230436965823,-0.0013551617739722133,0.002781718270853162,-0.0005993118975311518,0.0026126024313271046,-0.0012713901232928038,0.6281877756118774,0.7583551406860352,0.5810058116912842,0.006281877756118774,0.007583551406860352,0.005810058116912842,0.008383121341466904,-0.002842910820618272,69 +illusion_1.5L,ppo,70,28.0,0.8809802532196045,-0.18730506300926208,0.8193607330322266,-0.1951335370540619,1.251967430114746,0.21824100613594055,0.001872947090305388,-0.0014671820681542158,0.0027598405722528696,-0.0006394256488420069,0.0025927277747541666,-0.0016678556567057967,0.5310468673706055,0.5545449256896973,0.4768824577331543,0.005310468673706055,0.0055454492568969725,0.004768824577331543,0.008482938632369041,-0.0035703328903764486,70 +illusion_1.5L,ppo,71,28.4,0.9051089286804199,-0.2126237452030182,0.8024730682373047,-0.2279716283082962,1.243848443031311,0.19626930356025696,0.001857276656664908,-0.0014937337255105376,0.0026491323951631784,-0.0006736685172654688,0.0025873156264424324,-0.0018558428855612874,0.3948054313659668,0.45972299575805664,0.40511536598205566,0.003948054313659668,0.0045972299575805665,0.004051153659820557,0.008444554172456264,-0.00409164372831583,71 +illusion_1.5L,ppo,72,28.8,0.925932765007019,-0.23899506032466888,0.8035471439361572,-0.2516547739505768,1.209060549736023,0.1641014665365219,0.0018482821760699153,-0.0014437256613746285,0.002515251748263836,-0.0007180568063631654,0.002568952040746808,-0.001879007206298411,0.3016664683818817,0.4773387908935547,0.4289195537567138,0.003016664683818817,0.004773387908935547,0.004289195537567138,0.00859114434570074,-0.004377763718366623,72 +illusion_1.5L,ppo,73,29.2,0.9451865553855896,-0.2680106461048126,0.8065648674964905,-0.2778964936733246,1.1332191228866577,0.10985821485519409,0.0018589704995974898,-0.0013475283049046993,0.0024326154962182045,-0.0007289525237865746,0.0025454473216086626,-0.0018031015060842037,0.2441001981496811,0.42159080505371094,0.4008697271347046,0.002441001981496811,0.004215908050537109,0.004008697271347046,0.008660022169351578,-0.0044127777218818665,73 +illusion_1.5L,ppo,74,29.6,0.965023398399353,-0.3007993996143341,0.8058174848556519,-0.3123299479484558,1.0086098909378052,0.024913733825087547,0.001882627489976585,-0.0011939562391489744,0.0023861557710915804,-0.0006967674707993865,0.002516227774322033,-0.0016639665700495243,0.09642753005027771,0.32308435440063477,0.3279235363006592,0.0009642753005027771,0.0032308435440063475,0.003279235363006592,0.008805335499346256,-0.00419478677213192,74 +illusion_1.5L,ppo,75,30.0,0.9863589406013489,-0.3379884660243988,0.8001362681388855,-0.3571639955043793,0.8459160327911377,-0.08470166474580765,0.001922554918564856,-0.0009440702269785106,0.0023365274537354708,-0.0005948839825578034,0.002491249702870846,-0.0014393841847777367,-0.13267359137535095,0.12844038009643555,0.16603434085845947,-0.0013267359137535096,0.0012844038009643555,0.0016603434085845949,0.00891233142465353,-0.003736004466190934,75 +illusion_1.5L,ppo,76,30.4,1.0120810270309448,-0.3797437250614166,0.7922377586364746,-0.41095519065856934,0.6863534450531006,-0.19325213134288788,0.00198741490021348,-0.000614860444329679,0.00229258113540709,-0.0003894500550813973,0.002513335319235921,-0.0011181175941601396,-0.3035193085670471,-0.1640312671661377,-0.06554794311523438,-0.0030351930856704714,-0.001640312671661377,-0.0006554794311523438,0.008620023727416992,-0.0030620943289250135,76 +illusion_1.5L,ppo,77,30.8,1.0441478490829468,-0.42638617753982544,0.7809557914733887,-0.47304004430770874,0.5774635672569275,-0.26963889598846436,0.002041331958025694,-0.0002485599252395332,0.002269037766382098,-9.083995246328413e-05,0.002553356811404228,-0.0007699948037043214,-0.4097734093666077,-0.3484048843383789,-0.20122432708740237,-0.004097734093666077,-0.003484048843383789,-0.0020122432708740237,0.008369951508939266,-0.0022107805125415325,77 +illusion_1.5L,ppo,78,31.2,1.0865219831466675,-0.477324515581131,0.7632995843887329,-0.5438546538352966,0.530575156211853,-0.3026893734931946,0.002057785866782069,9.678120113676414e-05,0.002292345045134425,0.00028265744913369417,0.0025863004848361015,-0.0004590636817738414,-0.3871344327926636,-0.4783506393432617,-0.31908702850341797,-0.003871344327926636,-0.004783506393432617,-0.0031908702850341796,0.008232075721025467,-0.001229805056937039,78 +illusion_1.5L,ppo,79,31.6,1.1421773433685303,-0.5310309529304504,0.7318371534347534,-0.6224479079246521,0.5132930278778076,-0.30358195304870605,0.0020389698911458254,0.0003603696823120117,0.0023668098729103804,0.0007144231931306422,0.002626721514388919,-0.00019650941248983145,-0.30846160650253296,-0.5997393131256104,-0.4716677665710449,-0.00308461606502533,-0.005997393131256103,-0.004716677665710449,0.00811179168522358,-0.00017433101311326027,79 +illusion_1.5L,ppo,80,32.0,1.2142642736434937,-0.581100344657898,0.6819811463356018,-0.6859026551246643,0.49506840109825134,-0.28126904368400574,0.001994503429159522,0.0006149017717689276,0.00243879621848464,0.0011587354820221663,0.0026495016645640135,1.0854386346181855e-05,-0.44613730907440186,-0.5692024230957031,-0.5208282470703125,-0.0044613730907440185,-0.005692024230957032,-0.005208282470703125,0.008253613486886024,0.0008960727136582136,80 +illusion_1.5L,ppo,81,32.4,1.294029712677002,-0.61179518699646,0.6245611310005188,-0.6649124622344971,0.46720024943351746,-0.2345280647277832,0.0019545420072972775,0.0008699208265170455,0.0024972204118967056,0.0015658523188903928,0.0026576402597129345,0.00017905440472532064,-0.5550704598426819,-0.5627427101135254,-0.5513262748718262,-0.005550704598426819,-0.005627427101135254,-0.0055132627487182615,0.008266055956482887,0.0019207126460969448,81 +illusion_1.5L,ppo,82,32.8,1.3563286066055298,-0.6000205278396606,0.5783030390739441,-0.5189934372901917,0.4386715292930603,-0.15861812233924866,0.0019344533793628216,0.0010914369486272335,0.0025531724095344543,0.0019177166977897286,0.002663067542016506,0.00034058079472742975,-0.5299487113952637,-0.5882861614227295,-0.5578370094299316,-0.005299487113952637,-0.005882861614227295,-0.005578370094299317,0.008138866163790226,0.002841145033016801,82 +illusion_1.5L,ppo,83,33.2,1.3758708238601685,-0.5249543190002441,0.5310752987861633,-0.29263466596603394,0.42456111311912537,-0.05581438168883324,0.0019083534134551883,0.0012016291730105877,0.002584566129371524,0.002112218178808689,0.0026032673195004463,0.00044714976684190333,-0.3774806261062622,-0.49068498611450195,-0.45653533935546875,-0.003774806261062622,-0.0049068498611450195,-0.004565353393554687,0.008266528137028217,0.0036044649314135313,83 +illusion_1.5L,ppo,84,33.6,1.3379015922546387,-0.34895676374435425,0.47887498140335083,-0.01192475762218237,0.4430367648601532,0.05692942440509796,0.0019023132044821978,0.0011832013260573149,0.002602607011795044,0.0021669205743819475,0.0025263065472245216,0.000526272866409272,-0.15761038661003113,-0.5425136089324951,-0.44765567779541016,-0.0015761038661003114,-0.005425136089324952,-0.004476556777954102,0.008407868444919586,0.004166331607848406,84 +illusion_1.5L,ppo,85,34.0,1.2341192960739136,-0.03080557845532894,0.444710373878479,0.3040339946746826,0.511502742767334,0.14479714632034302,0.0019071444403380156,0.0010143902618438005,0.0025749769993126392,0.002178840572014451,0.0024779473897069693,0.000560595013666898,0.0960216224193573,-0.6585156917572021,-0.4223597049713135,0.0009602162241935731,-0.006585156917572022,-0.004223597049713135,0.008650233037769794,0.004493560642004013,85 +illusion_1.5L,ppo,86,34.4,1.10527765750885,0.37430208921432495,0.45568421483039856,0.5946930646896362,0.6193978786468506,0.18887504935264587,0.0019290060736238956,0.0007543997489847243,0.0024840300902724266,0.002203259849920869,0.002439550356939435,0.0005170722142793238,0.24537774920463562,-0.6727379560470581,-0.2784099578857422,0.0024537774920463562,-0.006727379560470581,-0.002784099578857422,0.008936306461691856,0.0045661311596632,86 +illusion_1.5L,ppo,87,34.8,1.0069332122802734,0.7196546196937561,0.5260210633277893,0.7696099877357483,0.7203459143638611,0.23075146973133087,0.001981503563001752,0.00045659937313757837,0.0023642960004508495,0.002212407998740673,0.002403144259005785,0.0003827879554592073,0.3269885182380676,-0.6032489538192749,-0.07158994674682617,0.0032698851823806763,-0.006032489538192749,-0.0007158994674682618,0.008818242698907852,0.004378491081297398,87 +illusion_1.5L,ppo,88,35.2,0.9507982730865479,0.8487563133239746,0.6366716623306274,0.7805724143981934,0.7993360757827759,0.2922442853450775,0.002047742484137416,0.0001847302046371624,0.0022471905685961246,0.002145743928849697,0.0023532987106591463,0.00017309022950939834,0.29640984535217285,-0.38654661178588867,0.17549395561218262,0.0029640984535217285,-0.003865466117858887,0.0017549395561218262,0.00864899531006813,0.003940064925700426,88 +illusion_1.5L,ppo,89,35.6,0.9163208603858948,0.7754753828048706,0.739818811416626,0.7405063509941101,0.8739389777183533,0.3509887456893921,0.002096907701343298,-4.85345626657363e-05,0.0021779080852866173,0.0019286689348518848,0.002296960446983576,-7.935902249300852e-05,0.27667707204818726,-0.08317148685455322,0.35111379623413086,0.0027667707204818725,-0.0008317148685455323,0.0035111379623413087,0.00856008566915989,0.003274921327829361,89 +illusion_1.5L,ppo,90,36.0,0.874031126499176,0.6918003559112549,0.8132102489471436,0.7477223873138428,0.949540913105011,0.3988945484161377,0.002137968083843589,-0.00030445028096437454,0.002204097108915448,0.0015784396091476083,0.0022841384634375572,-0.0003169547126162797,0.3929006457328797,0.12947463989257812,0.3518906831741333,0.003929006457328797,0.0012947463989257813,0.003518906831741333,0.008397326804697514,0.002420595847070217,90 +illusion_1.5L,ppo,91,36.4,0.8150842189788818,0.6547086834907532,0.8707943558692932,0.7830780148506165,1.0283201932907104,0.43770813941955566,0.0021658989135175943,-0.0006129450048319995,0.002292623743414879,0.001146784983575344,0.002316881436854601,-0.0005578434793278575,0.5805317163467407,0.30022430419921875,0.391232967376709,0.005805317163467407,0.0030022430419921874,0.00391232967376709,0.008429951965808868,0.0014261198230087757,91 +illusion_1.5L,ppo,92,36.8,0.7397424578666687,0.6246526837348938,0.9183803796768188,0.827552855014801,1.1117717027664185,0.4681480824947357,0.002179862931370735,-0.000964331382419914,0.0023879590444266796,0.0006989012472331524,0.0023824789095669985,-0.0008309451513923705,0.7490320205688477,0.37375354766845703,0.44106578826904297,0.007490320205688477,0.0037375354766845705,0.0044106578826904295,0.008345250971615314,0.00034934014547616243,92 +illusion_1.5L,ppo,93,37.2,0.6528175473213196,0.5557043552398682,0.9501407146453857,0.8225094676017761,1.2040826082229614,0.48889225721359253,0.002197820693254471,-0.00130930554587394,0.00244240858592093,0.0003241988306399435,0.002475810470059514,-0.001091129146516323,0.8190717101097106,0.3784041404724121,0.43974995613098145,0.008190717101097107,0.003784041404724121,0.004397499561309815,0.008059890009462833,-0.0007463268702849746,93 +illusion_1.5L,ppo,94,37.6,0.5715795755386353,0.4046432077884674,0.9525783658027649,0.6679494380950928,1.3048181533813477,0.4901784658432007,0.002176705515012145,-0.0015802475390955806,0.002451515756547451,1.622085619601421e-05,0.0025500888004899025,-0.0013275125529617071,0.7726075649261475,0.5376229286193848,0.5313003063201904,0.007726075649261475,0.005376229286193848,0.005313003063201905,0.00803802814334631,-0.0017955382354557514,94 +illusion_1.5L,ppo,95,38.0,0.5229552984237671,0.16988800466060638,0.9324564933776855,0.3679526448249817,1.3857378959655762,0.42876407504081726,0.002136870287358761,-0.0017713485285639763,0.002474059583619237,-0.0002242985210614279,0.00261376122944057,-0.0015102432807907462,0.7351816892623901,0.6772255897521973,0.5614299774169922,0.007351816892623902,0.006772255897521973,0.005614299774169922,0.00810767337679863,-0.0027348583098500967,95 +illusion_1.5L,ppo,96,38.4,0.5266097784042358,-0.09335511922836304,0.9097535014152527,-0.03959715738892555,1.3738044500350952,0.2299507111310959,0.002065342850983143,-0.001851909444667399,0.0025375925470143557,-0.00043431107769720256,0.0026654358953237534,-0.0016498413169756532,0.5329715013504028,0.8462245464324952,0.5879565477371216,0.005329715013504028,0.008462245464324952,0.005879565477371216,0.008312919177114964,-0.0035065629053860903,96 +illusion_1.5L,ppo,97,38.8,0.587975800037384,-0.29794207215309143,0.9107053875923157,-0.4443337917327881,1.2460025548934937,-0.08209051191806793,0.001980964560061693,-0.0017130498308688402,0.002626280300319195,-0.0006225758697837591,0.0026887226849794388,-0.001751194940879941,0.04482303559780121,0.9426617622375488,0.593506932258606,0.0004482303559780121,0.009426617622375488,0.00593506932258606,0.008678091689944267,-0.004062185063958168,97 +illusion_1.5L,ppo,98,39.2,0.6918935179710388,-0.3776188790798187,0.9331933856010437,-0.6375234723091125,1.0859909057617188,-0.33379051089286804,0.001944053336046636,-0.0013931496068835258,0.002670423360541463,-0.0007368738879449666,0.0026887813583016396,-0.001768750138580799,-0.25553566217422485,0.7063870429992676,0.4212859869003296,-0.0025553566217422488,0.007063870429992676,0.004212859869003296,0.008710966445505619,-0.004365585744380951,98 +illusion_1.5L,ppo,99,39.6,0.7962306141853333,-0.38644886016845703,0.9558098316192627,-0.6210560202598572,1.0003615617752075,-0.403423547744751,0.001962200039997697,-0.0010974743636325002,0.0026224986650049686,-0.0007673604995943606,0.0026625157333910465,-0.0016686269082129002,-0.07039481401443481,0.34106969833374023,0.22627806663513186,-0.0007039481401443482,0.0034106969833374023,0.0022627806663513186,0.00866282731294632,-0.004395345691591501,99 +illusion_1.5L,ppo,100,40.0,0.8809834122657776,-0.3942176103591919,0.9742011427879333,-0.5796787142753601,0.9705625772476196,-0.3898157477378845,0.001962515991181135,-0.0009456782136112452,0.002536046551540494,-0.0007404485368169844,0.002610541880130768,-0.0014902716502547264,0.2613828778266907,0.08504581451416016,0.09466552734375,0.002613828778266907,0.0008504581451416015,0.0009466552734375,0.008717188611626625,-0.004146318417042494,100 +illusion_1.5L,ppo,101,40.4,0.9516541361808777,-0.4034346640110016,0.9911618232727051,-0.5701016187667847,0.9389685988426208,-0.38262298703193665,0.001968927448615432,-0.0008336625178344548,0.002473305445164442,-0.0006475684931501746,0.0025874043349176645,-0.0012487841304391623,0.16930946707725525,-0.10202836990356445,-0.06347322463989258,0.0016930946707725525,-0.0010202836990356446,-0.0006347322463989258,0.008651788346469402,-0.0036302267108112574,101 +illusion_1.5L,ppo,102,40.8,1.014854907989502,-0.41161468625068665,1.0109264850616455,-0.581458568572998,0.8921666145324707,-0.3854638934135437,0.001998374704271555,-0.0005708960234187543,0.0024111371021717787,-0.00044140670797787607,0.0026268106885254383,-0.0008939377730712295,-0.24202993512153625,-0.24400293827056885,-0.2213120460510254,-0.0024202993512153627,-0.0024400293827056886,-0.002213120460510254,0.008710197173058987,-0.0028752374928444624,102 +illusion_1.5L,ppo,103,41.2,1.0735175609588623,-0.4191115200519562,1.0348559617996216,-0.6073289513587952,0.829305112361908,-0.3827878534793854,0.002033275319263339,-0.0002090247580781579,0.0023611439391970634,-9.89655964076519e-05,0.002701767021790147,-0.000445606536231935,-0.3825426697731018,-0.3707880973815918,-0.3561573028564453,-0.003825426697731018,-0.003707880973815918,-0.003561573028564453,0.008641681633889675,-0.0019245173316448927,103 +illusion_1.5L,ppo,104,41.6,1.13177490234375,-0.42572417855262756,1.0624558925628662,-0.6378490924835205,0.7519271373748779,-0.35352063179016113,0.0020479594822973013,0.00012780781253241003,0.0023740308824926615,0.00033195686410181224,0.0027536984998732805,-3.910029772669077e-05,-0.34452617168426514,-0.396820068359375,-0.40658569335937494,-0.0034452617168426515,-0.00396820068359375,-0.00406585693359375,0.008270466700196266,-0.0008338304469361901,104 +illusion_1.5L,ppo,105,42.0,1.1924415826797485,-0.430814653635025,1.081141471862793,-0.6451373100280762,0.6675841808319092,-0.273112028837204,0.0020242538303136826,0.0004135787603445351,0.0024220338091254234,0.0007383113843388855,0.002733750967308879,0.00022509480186272413,-0.3748897910118103,-0.34461426734924316,-0.4428558349609375,-0.003748897910118103,-0.0034461426734924317,-0.004428558349609375,0.0080949105322361,0.0003316924849059433,105 +illusion_1.5L,ppo,106,42.4,1.2587270736694336,-0.4326605200767517,1.0636942386627197,-0.5692756175994873,0.5961382389068604,-0.1322784125804901,0.0019886577501893044,0.0006486860802397132,0.002482344163581729,0.001131087657995522,0.0027373165357857943,0.000446521386038512,-0.3842843770980835,-0.5114034414291382,-0.7096214294433594,-0.003842843770980835,-0.0051140344142913815,-0.007096214294433594,0.008030417375266552,0.0015014351811259985,106 +illusion_1.5L,ppo,107,42.8,1.3310543298721313,-0.42515525221824646,0.9902618527412415,-0.3478080630302429,0.5657598376274109,0.040130652487277985,0.0019434608984738588,0.0008517783717252314,0.002535278908908367,0.0015248724957928061,0.0028272676281630993,0.0006701045203953981,-0.43002647161483765,-0.606102466583252,-0.9155197143554688,-0.0043002647161483765,-0.006061024665832519,-0.009155197143554688,0.008088373579084873,0.002603593748062849,107 +illusion_1.5L,ppo,108,43.2,1.3920392990112305,-0.38362860679626465,0.8810315728187561,0.013162913732230663,0.6008505821228027,0.17602641880512238,0.0019072761060670018,0.0010425399523228407,0.002561040222644806,0.0018059279536828399,0.0028998872730880976,0.0008402193197980523,-0.495972216129303,-0.4178647994995117,-0.8497025966644287,-0.00495972216129303,-0.004178647994995117,-0.008497025966644287,0.00838998332619667,0.003569631138816476,108 +illusion_1.5L,ppo,109,43.6,1.372069239616394,-0.2420457899570465,0.7977316975593567,0.37970227003097534,0.6867912411689758,0.2364875078201294,0.0018876111134886742,0.0011394625762477517,0.0025834194384515285,0.001919963164255023,0.0029077150393277407,0.0009904238395392895,-0.2989122271537781,-0.359851598739624,-0.7879695892333985,-0.002989122271537781,-0.0035985159873962403,-0.007879695892333985,0.008452391251921654,0.004338605795055628,109 +illusion_1.5L,ppo,110,44.0,1.201683521270752,0.028607433661818504,0.7938627600669861,0.544167160987854,0.7711875438690186,0.2691147029399872,0.0018994910642504692,0.0010274512460455298,0.0025992372538894415,0.0019464573124423623,0.0028921596240252256,0.0011360812932252884,0.11555960774421692,-0.5046737194061279,-0.7732689380645752,0.0011555960774421693,-0.005046737194061279,-0.007732689380645752,0.008437939919531345,0.004861098248511553,110 +illusion_1.5L,ppo,111,44.4,0.9712841510772705,0.2904033362865448,0.8401756882667542,0.5247878432273865,0.8377321362495422,0.3052283525466919,0.00194765895139426,0.0007303744787350297,0.0025438263546675444,0.001995763275772333,0.00285726273432374,0.0012417654506862164,0.4351784586906433,-0.6600298881530762,-0.7536778450012207,0.004351784586906433,-0.006600298881530762,-0.007536778450012207,0.008596007712185383,0.005102469120174646,111 +illusion_1.5L,ppo,112,44.8,0.8446347713470459,0.39677032828330994,0.878967821598053,0.49726802110671997,0.8940873742103577,0.33826687932014465,0.0020518137607723475,0.00041860059718601406,0.0024363829288631678,0.00201680907048285,0.0028007335495203733,0.0012555357534438372,0.34915632009506226,-0.5036499500274658,-0.5722010135650635,0.0034915632009506225,-0.005036499500274658,-0.005722010135650635,0.008660073392093182,0.005045230966061354,112 +illusion_1.5L,ppo,113,45.2,0.8279588222503662,0.3935920298099518,0.9036274552345276,0.49648478627204895,0.9450550079345703,0.3678295910358429,0.002134440466761589,0.00026570074260234833,0.0023428257554769516,0.001839983742684126,0.0026767835952341557,0.0011728079989552498,-0.024765163660049435,0.00749659538269043,-0.1753697395324707,-0.00024765163660049437,7.49659538269043e-05,-0.001753697395324707,0.008821661584079266,0.004690361209213734,113 +illusion_1.5L,ppo,114,45.6,0.8300948143005371,0.37539196014404297,0.9188137650489807,0.5092066526412964,0.9922013282775879,0.39655235409736633,0.0021627910900861025,0.00012830138439312577,0.0023515864741057158,0.0014694157289341092,0.0025337766855955124,0.0010517569025978446,0.1120564341545105,0.25406837463378906,0.05282783508300782,0.001120564341545105,0.0025406837463378905,0.0005282783508300782,0.008882550522685051,0.0040574450977146626,114 +illusion_1.5L,ppo,115,46.0,0.8155907988548279,0.36196935176849365,0.9263808727264404,0.5334023833274841,1.0392858982086182,0.4265890419483185,0.002210909267887473,-0.00017937082157004625,0.0024585798382759094,0.001042156363837421,0.0024623966310173273,0.0008807714912109077,0.5695957541465759,0.21968889236450195,0.12732577323913574,0.005695957541465759,0.0021968889236450195,0.0012732577323913575,0.008558989502489567,0.003183630993589759,115 +illusion_1.5L,ppo,116,46.4,0.7842562198638916,0.3432849943637848,0.9248327612876892,0.5703884363174438,1.0897334814071655,0.4593430459499359,0.0022563422098755836,-0.0005620535812340677,0.002581222914159298,0.0005590076907537878,0.002446082653477788,0.0005338944611139596,0.6295186281204224,0.3640403747558594,0.35658538341522217,0.0062951862812042235,0.003640403747558594,0.0035658538341522216,0.008332237601280212,0.0021214294247329235,116 +illusion_1.5L,ppo,117,46.8,0.7384548187255859,0.3078059256076813,0.9103565812110901,0.6194362640380859,1.1487218141555786,0.4949200451374054,0.002254416234791279,-0.0008806888945400715,0.002624512417241931,0.00016747813788242638,0.0024745615664869547,7.173849735409021e-05,0.5738028287887573,0.34271907806396484,0.40876460075378424,0.005738028287887573,0.0034271907806396485,0.004087646007537842,0.008196236565709114,0.000935496820602566,117 +illusion_1.5L,ppo,118,47.2,0.6800316572189331,0.24437971413135529,0.8731492757797241,0.6616327166557312,1.2219775915145874,0.5313818454742432,0.0022235147189348936,-0.0011740027694031596,0.0025620090309530497,-3.1018920708447695e-05,0.002527316566556692,-0.00040707149310037494,0.7053308486938477,0.3263545036315918,0.4000281095504761,0.007053308486938477,0.0032635450363159182,0.004000281095504761,0.00811728835105896,-0.00030141021125018597,118 +illusion_1.5L,ppo,119,47.6,0.6177970767021179,0.14501261711120605,0.8054841756820679,0.6226232051849365,1.3131458759307861,0.5580915212631226,0.0021610332187265158,-0.0014341919450089335,0.0025258141104131937,-0.00018127083603758365,0.0025785232428461313,-0.0009167887037619948,0.7529107332229614,0.667858362197876,0.62017822265625,0.007529107332229615,0.00667858362197876,0.0062017822265625,0.00829890463501215,-0.0015130521496757865,119 +illusion_1.5L,ppo,120,48.0,0.5732563138008118,0.018066121265292168,0.723799467086792,0.41875582933425903,1.4014482498168945,0.5364360809326172,0.002078418852761388,-0.001666800701059401,0.0025877607986330986,-0.0003300812386441976,0.0026323036290705204,-0.0014179428108036518,0.8403149843215941,0.8457603454589844,0.6696357727050781,0.008403149843215942,0.008457603454589844,0.0066963577270507816,0.008303137496113777,-0.002624597167596221,120 +illusion_1.5L,ppo,121,48.4,0.5770089030265808,-0.10092516988515854,0.6503533124923706,0.08458604663610458,1.4284051656723022,0.40921521186828613,0.0020217876881361008,-0.0018681332003325224,0.002648124936968088,-0.00043491172255016863,0.0026786017697304487,-0.0017924623098224401,0.8133808970451356,0.7781431674957275,0.5271791219711304,0.008133808970451356,0.007781431674957276,0.0052717912197113035,0.008214408531785011,-0.0035674641840159893,121 +illusion_1.5L,ppo,122,48.8,0.6365079283714294,-0.1763710379600525,0.6026279330253601,-0.2909294664859772,1.3684699535369873,0.17224422097206116,0.0019525097450241446,-0.001855975715443492,0.002657679608091712,-0.0005514894146472216,0.0026975313667207956,-0.0020126409363001585,0.30769819021224976,0.8244540691375732,0.58082115650177,0.0030769819021224977,0.008244540691375733,0.0058082115650177,0.0083629060536623,-0.004283796530216932,122 +illusion_1.5L,ppo,123,49.2,0.7131805419921875,-0.22611171007156372,0.6163720488548279,-0.5910624265670776,1.2124406099319458,-0.1813463568687439,0.001895669149234891,-0.00162907422054559,0.0026314021088182926,-0.0006467144703492522,0.0026922591496258974,-0.00212874892167747,-0.07454654574394226,0.6907510757446289,0.6214900016784668,-0.0007454654574394227,0.006907510757446289,0.006214900016784668,0.00848082173615694,-0.00473026093095541,123 +illusion_1.5L,ppo,124,49.6,0.7797197699546814,-0.2787036895751953,0.6992747783660889,-0.6809425354003906,1.0197744369506836,-0.5300958752632141,0.0018901515286415815,-0.0012930274242535233,0.0025483903009444475,-0.0006544062634930015,0.0026274817064404488,-0.0021664078813046217,-0.24704864621162415,0.4172215461730957,0.563933253288269,-0.0024704864621162416,0.004172215461730957,0.005639332532882691,0.008707493543624878,-0.004880912136286497,124 +illusion_1.5L,ppo,125,50.0,0.8388724327087402,-0.32921236753463745,0.7914592623710632,-0.6306037306785583,0.9315635561943054,-0.6281405091285706,0.0019256524974480271,-0.0009610293200239539,0.00243936013430357,-0.000594757148064673,0.0025112279690802097,-0.0021072591189295053,-0.21898970007896423,0.16466236114501953,0.3978079557418823,-0.0021898970007896423,0.0016466236114501954,0.003978079557418824,0.008908077143132687,-0.004728920757770538,125 +illusion_1.5L,ppo,126,50.4,0.8955637216567993,-0.3727034628391266,0.8500270843505859,-0.5994491577148438,0.9350045919418335,-0.5502339601516724,0.0019527471158653498,-0.0007917554466985166,0.002345978282392025,-0.0004581209213938564,0.0024540522135794163,-0.0018450323259457946,0.23907341063022614,-0.2260134220123291,-0.016198158264160156,0.0023907341063022615,-0.002260134220123291,-0.00016198158264160156,0.00870131142437458,-0.004287036135792732,126 +illusion_1.5L,ppo,127,50.8,0.9504989385604858,-0.4116615056991577,0.8837838172912598,-0.5953683257102966,0.9308086633682251,-0.484641432762146,0.0019566284026950598,-0.0007136024651117623,0.002299775369465351,-0.0002934648364316672,0.0025030774995684624,-0.0014290795661509037,0.27476954460144043,-0.3239554166793823,-0.2193644046783447,0.0027476954460144043,-0.0032395541667938235,-0.002193644046783447,0.008512722328305244,-0.003586746985092759,127 +illusion_1.5L,ppo,128,51.2,1.006050705909729,-0.44969671964645386,0.9013627767562866,-0.6070024967193604,0.9009218811988831,-0.44692492485046387,0.0019905606750398874,-0.0004522305098362267,0.002304350957274437,-0.00012024682655464858,0.002604063367471099,-0.0009638852789066732,-0.30019330978393555,-0.2026190757751465,-0.22182226181030273,-0.0030019330978393556,-0.002026190757751465,-0.0022182226181030273,0.008403330110013485,-0.002676178002730012,128 +illusion_1.5L,ppo,129,51.6,1.0653210878372192,-0.48918917775154114,0.9032688140869141,-0.6347479820251465,0.8547990322113037,-0.41240009665489197,0.002045770175755024,-6.929474329808727e-05,0.0023394436575472355,0.0001824208884499967,0.002725091762840748,-0.00043018319411203265,-0.4401177763938903,-0.3367297649383545,-0.384906530380249,-0.0044011777639389035,-0.003367297649383545,-0.00384906530380249,0.008277405984699726,-0.001616867259144783,129 +illusion_1.5L,ppo,130,52.0,1.1340428590774536,-0.5312589406967163,0.8863430023193359,-0.6797813177108765,0.7955611944198608,-0.36626172065734863,0.002052292926236987,0.00025201853713952005,0.002389254281297326,0.0005737292231060565,0.0027656499296426773,1.674572195042856e-05,-0.31345057487487793,-0.2904486656188965,-0.3621995449066162,-0.0031345057487487792,-0.002904486656188965,-0.003621995449066162,0.008384994231164455,-0.0004796259745489806,130 +illusion_1.5L,ppo,131,52.4,1.2196502685546875,-0.5729905962944031,0.8423058986663818,-0.7240841388702393,0.72382652759552,-0.29576700925827026,0.0020250165835022926,0.0005107168690301478,0.0024608587846159935,0.0009003752493299544,0.002689270069822669,0.00025072359130717814,-0.3597254157066345,-0.18701386451721191,-0.3131978511810303,-0.0035972541570663454,-0.0018701386451721192,-0.003131978511810303,0.008344382978975773,0.0006602332578040659,131 +illusion_1.5L,ppo,132,52.8,1.3237212896347046,-0.596028208732605,0.7707681059837341,-0.6804932355880737,0.646187424659729,-0.190191388130188,0.0019998489879071712,0.0007215015357360244,0.0025359096471220255,0.001207937253639102,0.0026388494297862053,0.0003989003598690033,-0.39797002077102667,-0.45264256000518804,-0.5570034980773926,-0.003979700207710267,-0.00452642560005188,-0.005570034980773926,0.008156534284353256,0.0017279828898608685,132 +illusion_1.5L,ppo,133,53.2,1.4089831113815308,-0.5401401519775391,0.7006658315658569,-0.45409896969795227,0.5815165042877197,-0.050947174429893494,0.0019511571153998375,0.0009191095014102757,0.0025592383462935686,0.001549845444969833,0.00265731243416667,0.0005236493307165802,-0.5024641156196594,-0.6091446876525879,-0.6687488555908203,-0.0050246411561965946,-0.006091446876525879,-0.006687488555908203,0.008226209320127964,0.002654529409483075,133 +illusion_1.5L,ppo,134,53.6,1.4244784116744995,-0.3702727258205414,0.6443628072738647,-0.1002812311053276,0.562003493309021,0.09041357785463333,0.0019183685071766376,0.0010696046520024538,0.0025593305472284555,0.0018040317809209228,0.0026671672239899635,0.0005851425812579691,-0.4405951499938965,-0.4964286088943482,-0.5447325706481934,-0.004405951499938965,-0.004964286088943482,-0.005447325706481934,0.008320114575326443,0.003381080459803343,134 +illusion_1.5L,ppo,135,54.0,1.3713674545288086,-0.1027410626411438,0.6108880043029785,0.2921239137649536,0.6105225086212158,0.18282705545425415,0.001901785028167069,0.0010332834208384156,0.0025583363603800535,0.001910862629301846,0.002616672310978174,0.0006151621928438544,0.002093389630317688,-0.45953464508056635,-0.4375536441802979,2.0933896303176882e-05,-0.004595346450805664,-0.004375536441802979,0.00853065587580204,0.0038631048519164324,135 +illusion_1.5L,ppo,136,54.4,1.2217270135879517,0.29117390513420105,0.6376780867576599,0.6078283190727234,0.6945696473121643,0.22782489657402039,0.001921608578413725,0.0007896742317825556,0.0025374460965394974,0.0018778800731524825,0.0025130927097052336,0.0006000873981975019,0.3529255986213684,-0.4269049167633056,-0.294095516204834,0.0035292559862136843,-0.004269049167633056,-0.00294095516204834,0.008803099393844604,0.004073311109095812,136 +illusion_1.5L,ppo,137,54.8,1.060048222541809,0.6106154322624207,0.7270990014076233,0.702735424041748,0.7694494128227234,0.2712102234363556,0.0019941662903875113,0.0004143440746702254,0.002470159437507391,0.0018332223407924175,0.0024376690853387117,0.0005471438053064048,0.590357780456543,-0.5545960664749146,-0.23256254196166995,0.00590357780456543,-0.0055459606647491454,-0.0023256254196166995,0.008690337650477886,0.004003433044999838,137 +illusion_1.5L,ppo,138,55.2,1.0047932863235474,0.6293416023254395,0.8213205933570862,0.6308467984199524,0.8320982456207275,0.3182808458805084,0.0020847716368734837,7.706733595114201e-05,0.0023450208827853203,0.00179539795499295,0.002393984002992511,0.00044086723937653005,0.42903953790664673,-0.4140275716781616,-0.04008841514587402,0.004290395379066467,-0.004140275716781616,-0.00040088415145874025,0.008544675074517727,0.003664699150249362,138 +illusion_1.5L,ppo,139,55.6,1.0100802183151245,0.5208701491355896,0.8782654404640198,0.5792480707168579,0.8902748227119446,0.35965225100517273,0.00212508300319314,-4.6754252252867445e-05,0.002266997005790472,0.0015784968854859471,0.0023407682310789824,0.000265456095803529,-0.06610128283500671,0.14504241943359375,0.3065558671951294,-0.0006610128283500671,0.0014504241943359376,0.003065558671951294,0.008495600894093513,0.0030869469046592712,139 +illusion_1.5L,ppo,140,56.0,0.9984250664710999,0.4488210380077362,0.9069993495941162,0.562938928604126,0.9452563524246216,0.39688652753829956,0.002116820542141795,-0.00015436726971529424,0.002327198628336191,0.0012365976581349969,0.0023245741613209248,7.895785529399291e-05,0.15120914578437805,0.3360295295715332,0.3719627857208252,0.0015120914578437806,0.003360295295715332,0.003719627857208252,0.008385095745325089,0.0023164439480751753,140 +illusion_1.5L,ppo,141,56.4,0.9644699692726135,0.3981708288192749,0.9169797301292419,0.5650777220726013,0.9993496537208557,0.433557391166687,0.002118012635037303,-0.00046455030678771436,0.0024744998663663864,0.0008564054733142257,0.0023528598248958588,-0.00018361571710556746,0.6718391180038452,0.35720205307006836,0.3916761875152588,0.006718391180038453,0.0035720205307006835,0.003916761875152588,0.00847627129405737,0.001412564772181213,141 +illusion_1.5L,ppo,142,56.8,0.9134246706962585,0.34694549441337585,0.9091758131980896,0.5851967334747314,1.0559388399124146,0.4724588096141815,0.0021277708001434803,-0.0008155444520525634,0.002613548655062914,0.0004322775930631906,0.0024053119122982025,-0.0005579173448495567,0.6494758129119873,0.41426014900207525,0.4337832927703857,0.006494758129119873,0.004142601490020752,0.004337832927703857,0.008447900414466858,0.0004435561131685972,142 +illusion_1.5L,ppo,143,57.2,0.8464797139167786,0.28582194447517395,0.8811725378036499,0.6240112781524658,1.1210665702819824,0.5145048499107361,0.0021313303150236607,-0.0010870419209823012,0.002602220978587866,0.0001288532221224159,0.002483896678313613,-0.0008925433503463864,0.5511044859886169,0.20145273208618167,0.22509312629699707,0.00551104485988617,0.0020145273208618166,0.0022509312629699707,0.008206440135836601,-0.0005183155299164355,143 +illusion_1.5L,ppo,144,57.6,0.766828179359436,0.20856726169586182,0.8263416290283203,0.6650369167327881,1.2020758390426636,0.557365894317627,0.0021206557285040617,-0.0012748119188472629,0.002440676325932145,-1.0873446854020585e-06,0.0025548075791448355,-0.0010750822257250547,0.527989387512207,0.1864914894104004,0.16095566749572754,0.00527989387512207,0.001864914894104004,0.0016095566749572755,0.00820583663880825,-0.0014018918154761195,144 +illusion_1.5L,ppo,145,58.0,0.6865572929382324,0.11225346475839615,0.7451912760734558,0.6305930614471436,1.2993903160095215,0.5845839977264404,0.0020899316295981407,-0.001405722345225513,0.0023581432178616524,-0.00012985592184122652,0.0026081756222993135,-0.0012133511481806636,0.5344871282577515,0.5336933135986328,0.3982203006744385,0.0053448712825775145,0.005336933135986328,0.003982203006744385,0.008266313932836056,-0.0021421664860099554,145 +illusion_1.5L,ppo,146,58.4,0.6324041485786438,0.005979978479444981,0.6619094610214233,0.43691182136535645,1.3814232349395752,0.5448066592216492,0.0020486791618168354,-0.0015301614766940475,0.0024111769162118435,-0.00027907275944016874,0.002636497374624014,-0.0013373229885473847,0.6421376466751099,0.6638035774230957,0.45273661613464355,0.006421376466751099,0.006638035774230958,0.004527366161346436,0.008429205976426601,-0.0026848914567381144,146 +illusion_1.5L,ppo,147,58.8,0.6329512000083923,-0.08443700522184372,0.5875611305236816,0.11890294402837753,1.4056586027145386,0.40219733119010925,0.0020152051001787186,-0.0016091872239485383,0.002466602250933647,-0.0003862485755234957,0.0026464739348739386,-0.0013704827288165689,0.5218862891197205,0.5218031406402588,0.30303192138671875,0.005218862891197205,0.005218031406402588,0.0030303192138671875,0.008723028935492039,-0.0029904174152761698,147 +illusion_1.5L,ppo,148,59.2,0.6858092546463013,-0.14319252967834473,0.5394123792648315,-0.25012797117233276,1.3613214492797852,0.14444032311439514,0.0020101519767194986,-0.0014719241298735142,0.0024477066472172737,-0.0004228426259942353,0.0026736592408269644,-0.0012476756237447262,0.004356518387794495,0.2860836982727051,0.16797256469726562,4.356518387794495e-05,0.0028608369827270506,0.0016797256469726562,0.008667167276144028,-0.0030365013517439365,148 +illusion_1.5L,ppo,149,59.6,0.7508542537689209,-0.19254396855831146,0.5601252913475037,-0.5567200779914856,1.2230793237686157,-0.2578584849834442,0.0020323724020272493,-0.0010883432114496827,0.0023600782733410597,-0.0003569484397303313,0.0027013528160750866,-0.001033748034387827,-0.4331056475639344,0.02451348304748535,0.13867509365081787,-0.004331056475639344,0.00024513483047485353,0.0013867509365081787,0.008530458435416222,-0.002819881308823824,149 +illusion_1.5L,ppo,150,60.0,0.808149516582489,-0.2499244064092636,0.655874490737915,-0.6720749735832214,1.0708532333374023,-0.6059650182723999,0.002059917664155364,-0.0005840655649080873,0.0022710443008691072,-0.00015896308468654752,0.002679284894838929,-0.0008551047649234533,-0.6259446740150452,-0.2151612043380737,0.1406165361404419,-0.0062594467401504515,-0.002151612043380737,0.001406165361404419,0.008516530506312847,-0.00235650478862226,150 +illusion_1.5L,ppo,151,60.4,0.863139808177948,-0.3044869899749756,0.7686091661453247,-0.6304290890693665,0.9971597790718079,-0.6701464056968689,0.002062650164589286,-0.00017808815755415708,0.002247166819870472,0.00015188944234978408,0.002626249799504876,-0.0007105488330125809,-0.3733225464820862,-0.4935187101364136,-0.06645727157592773,-0.003733225464820862,-0.004935187101364136,-0.0006645727157592774,0.008421123959124088,-0.0016804002225399017,151 +illusion_1.5L,ppo,152,60.8,0.9187591075897217,-0.3507932722568512,0.8428417444229126,-0.6003854274749756,0.9788886308670044,-0.5668004751205444,0.002018520375713706,-2.263249371026177e-05,0.002286962466314435,0.0005046685691922903,0.0026086270809173584,-0.0005126760806888342,0.090442955493927,-0.6841336488723755,-0.4237594604492188,0.00090442955493927,-0.006841336488723755,-0.004237594604492188,0.008498861454427242,-0.0008412639726884663,152 +illusion_1.5L,ppo,153,61.2,0.9739788770675659,-0.3913901150226593,0.8864333629608154,-0.6012750864028931,0.9493836164474487,-0.49257975816726685,0.0019672440830618143,8.653313125250861e-05,0.0023636745754629374,0.0008575929678045213,0.0026892530731856823,-0.0002633238327689469,-0.05922523140907287,-0.6404846906661987,-0.6522645950317383,-0.0005922523140907287,-0.006404846906661987,-0.006522645950317383,0.008499415591359138,9.906048217089847e-05,153 +illusion_1.5L,ppo,154,61.6,1.0302964448928833,-0.43010765314102173,0.9119501709938049,-0.6171937584877014,0.8989251852035522,-0.44889548420906067,0.001960102701559663,0.00036089957575313747,0.0024480316787958145,0.0012410198105499148,0.002872991608455777,3.818292316282168e-05,-0.5333813428878784,-0.5418010950088501,-0.7723398208618164,-0.005333813428878785,-0.005418010950088501,-0.007723398208618165,0.008235407061874866,0.0010709670605137944,154 +illusion_1.5L,ppo,155,62.0,1.0910011529922485,-0.47050830721855164,0.9209052324295044,-0.6447969079017639,0.8342335224151611,-0.40097784996032715,0.001959514105692506,0.0007093617459759116,0.002500284230336547,0.0016259102849289775,0.003021956654265523,0.00038539234083145857,-0.610252857208252,-0.396592378616333,-0.7580170631408691,-0.00610252857208252,-0.00396592378616333,-0.007580170631408692,0.008183185011148453,0.0020020240917801857,155 +illusion_1.5L,ppo,156,62.4,1.1618106365203857,-0.5154054164886475,0.9065178632736206,-0.6718671321868896,0.7589218020439148,-0.32562708854675293,0.001954675419256091,0.0009553027921356261,0.00257522938773036,0.0018233680166304111,0.003013439243659377,0.0006794849177822471,-0.40677332878112793,-0.14885997772216797,-0.5879001617431641,-0.00406773328781128,-0.0014885997772216798,-0.0058790016174316406,0.008230230771005154,0.002822116483002901,156 +illusion_1.5L,ppo,157,62.8,1.250657320022583,-0.5619996786117554,0.8552299737930298,-0.6468499898910522,0.6815144419670105,-0.20824794471263885,0.001965803559869528,0.0010449547553434968,0.002692142967134714,0.001754071214236319,0.0028800410218536854,0.0008806585683487356,-0.23550471663475037,-0.09097552299499512,-0.5114362239837646,-0.002355047166347504,-0.0009097552299499512,-0.005114362239837646,0.008360556326806545,0.0034684324637055397,157 +illusion_1.5L,ppo,158,63.2,1.3446673154830933,-0.5629189610481262,0.7697663307189941,-0.4736923575401306,0.6214205026626587,-0.05437997728586197,0.001969124423339963,0.0010411788243800402,0.002752837259322405,0.001593652181327343,0.002747000427916646,0.0010087535483762622,-0.21492812037467957,-0.28167641162872314,-0.5662481784820557,-0.0021492812037467958,-0.0028167641162872314,-0.005662481784820557,0.008675433695316315,0.003889942541718483,158 +illusion_1.5L,ppo,159,63.6,1.3715671300888062,-0.39940643310546875,0.6890060305595398,-0.13527415692806244,0.6101993322372437,0.09487294405698776,0.0019603250548243523,0.00101258244831115,0.0027209999971091747,0.0015069026267156005,0.002688676817342639,0.001061845920048654,-0.24283480644226071,-0.4314994812011719,-0.5396790504455566,-0.0024283480644226073,-0.004314994812011719,-0.005396790504455566,0.008685079403221607,0.004051059018820524,159 +illusion_1.5L,ppo,160,64.0,1.2990906238555908,-0.0700191929936409,0.646304726600647,0.26852184534072876,0.6609256863594055,0.19103483855724335,0.0019699865952134132,0.0008793933666311204,0.0026509463787078857,0.0014689458766952157,0.00265426654368639,0.000995862064883113,0.051162958145141595,-0.38457298278808594,-0.3071880340576172,0.000511629581451416,-0.0038457298278808593,-0.003071880340576172,0.00856055412441492,0.003934219013899565,160 +illusion_1.5L,ppo,161,64.4,1.161020040512085,0.3401302397251129,0.6651787757873535,0.585918664932251,0.7382717728614807,0.24852651357650757,0.002016573678702116,0.0005370991420932114,0.002595774829387665,0.0013651145854964852,0.002562334295362234,0.0007708284538239241,0.5206423997879028,-0.2183835506439209,0.04259169101715088,0.0052064239978790285,-0.002183835506439209,0.0004259169101715088,0.008574451319873333,0.0035412150900810957,161 +illusion_1.5L,ppo,162,64.8,1.045242190361023,0.5934848189353943,0.74174964427948,0.6771160960197449,0.8105738162994385,0.30170097947120667,0.0021129492670297623,5.523802246898413e-05,0.0025524022057652473,0.0012055305996909738,0.0024487278424203396,0.00041756738210096955,0.7775037884712219,-0.15418648719787598,0.3076817989349365,0.0077750378847122196,-0.0015418648719787598,0.0030768179893493654,0.008493040688335896,0.0028931754641234875,162 +illusion_1.5L,ppo,163,65.2,0.9964197278022766,0.5903931856155396,0.8213951587677002,0.6513831615447998,0.8789122700691223,0.34870558977127075,0.0021821334958076477,-0.000350587913999334,0.0024823539424687624,0.001020207186229527,0.002377845346927643,-2.38969787460519e-05,0.5658113956451416,0.02744150161743164,0.5341410636901855,0.0056581139564514165,0.0002744150161743164,0.0053414106369018555,0.008542587049305439,0.0020292061381042004,163 +illusion_1.5L,ppo,164,65.6,0.9627229571342468,0.5269545316696167,0.8756019473075867,0.6446710228919983,0.9454103112220764,0.38654178380966187,0.002171469619497657,-0.000578319828491658,0.0024124146439135075,0.0008047017618082464,0.002377635333687067,-0.00047330104280263186,0.2924451231956482,0.3191041946411133,0.6642625331878662,0.002924451231956482,0.003191041946411133,0.006642625331878663,0.008553043939173222,0.0010037844767794013,164 +illusion_1.5L,ppo,165,66.0,0.9136232733726501,0.48862114548683167,0.9144842624664307,0.6623420715332031,1.0115251541137695,0.41710129380226135,0.0021376963704824448,-0.0008116110693663359,0.0024185492657124996,0.0005993022350594401,0.002449238207191229,-0.000912969175260514,0.5502903461456299,0.45333528518676763,0.6691427230834961,0.005502903461456299,0.004533352851867676,0.006691427230834961,0.008254999294877052,-0.00011690740939229727,165 +illusion_1.5L,ppo,166,66.4,0.8482638001441956,0.4553919732570648,0.9462328553199768,0.6971350312232971,1.0787665843963623,0.44195184111595154,0.002099907025694847,-0.0011277933372184634,0.002526543801650405,0.0003623479569796473,0.0025386172346770763,-0.0014103885041549802,0.8257681727409363,0.6522965431213379,0.7597708702087402,0.008257681727409363,0.006522965431213379,0.007597708702087403,0.008126122877001762,-0.0012594565050676465,166 +illusion_1.5L,ppo,167,66.8,0.7675382494926453,0.3997575044631958,0.9706149101257324,0.7280732989311218,1.1490081548690796,0.46193888783454895,0.0020680443849414587,-0.0014558290131390095,0.0026722783222794533,7.275809912243858e-05,0.0026245741173624992,-0.001918239169754088,0.8971048593521118,0.7403702735900879,0.7249062061309814,0.008971048593521118,0.007403702735900879,0.0072490620613098146,0.008139083161950111,-0.0023481876123696566,167 +illusion_1.5L,ppo,168,67.2,0.6808556914329529,0.2940419614315033,0.9719192385673523,0.6939641833305359,1.224379301071167,0.4767867922782898,0.0020524233113974333,-0.001751988078467548,0.002698322758078575,-0.00017539919645059854,0.002705568680539727,-0.0022302751895040274,0.9172288775444031,0.6029744148254395,0.46418964862823486,0.00917228877544403,0.006029744148254395,0.004641896486282349,0.008225912228226662,-0.0033102850429713726,168 +illusion_1.5L,ppo,169,67.6,0.611284613609314,0.13004352152347565,0.9301079511642456,0.5231685638427734,1.3046406507492065,0.48168861865997314,0.0020411070436239243,-0.001947343465872109,0.0026244083419442177,-0.000402995414333418,0.0027745994739234447,-0.0022729102056473494,0.7285356521606445,0.6836614608764648,0.4032920598983765,0.007285356521606445,0.0068366146087646485,0.004032920598983765,0.008550929836928844,-0.004080713726580143,169 +illusion_1.5L,ppo,170,68.0,0.5877518653869629,-0.05791940167546272,0.8515706658363342,0.1996878832578659,1.3696991205215454,0.44508877396583557,0.002011342905461788,-0.0019762967713177204,0.0025867046788334846,-0.0006249643629416823,0.002825579373165965,-0.002150417771190405,0.47199100255966187,0.830693483352661,0.4695414304733276,0.0047199100255966185,0.00830693483352661,0.004695414304733276,0.008641579188406467,-0.004606609698385,170 +illusion_1.5L,ppo,171,68.4,0.6283725500106812,-0.202134907245636,0.775575578212738,-0.21711784601211548,1.345916748046875,0.2776309847831726,0.001986290793865919,-0.0018982668407261372,0.0025941759813576937,-0.0007844961946830153,0.0028508962132036686,-0.001950145815499127,0.3582858443260193,0.7568554878234863,0.42982769012451166,0.003582858443260193,0.007568554878234863,0.004298276901245117,0.008560840971767902,-0.004850836470723152,171 +illusion_1.5L,ppo,172,68.8,0.7123477458953857,-0.2775692641735077,0.7537382245063782,-0.5471093058586121,1.1848031282424927,-0.054685283452272415,0.0019770616199821234,-0.0016488595865666866,0.0026016125921159983,-0.0008724667713977396,0.0028276622761040926,-0.001755216741003096,-0.05641785264015197,0.6140584945678711,0.44453227519989014,-0.0005641785264015197,0.006140584945678711,0.004445322751998901,0.008636081591248512,-0.004794478416442871,172 +illusion_1.5L,ppo,173,69.2,0.796713650226593,-0.32783111929893494,0.7909377813339233,-0.6470092535018921,0.9853065013885498,-0.37466925382614136,0.002025358146056533,-0.0011725119547918439,0.0025678733363747597,-0.0008410275913774967,0.0027754129841923714,-0.0015681381337344646,-0.5334343910217285,0.2763667106628418,0.3496500253677368,-0.005334343910217285,0.002763667106628418,0.003496500253677368,0.008616222999989986,-0.004438104573637247,173 +illusion_1.5L,ppo,174,69.6,0.872529923915863,-0.3719237148761749,0.841593861579895,-0.6323440074920654,0.8835542798042297,-0.4971134662628174,0.0020936911460012197,-0.000696678995154798,0.0024624797515571117,-0.0006415197276510298,0.002720552496612072,-0.0012999284081161022,-0.3852025270462036,-0.2152373790740967,0.03442049026489258,-0.0038520252704620363,-0.002152373790740967,0.0003442049026489258,0.008672966621816158,-0.0038017285987734795,174 +illusion_1.5L,ppo,175,70.0,0.9437310695648193,-0.40863585472106934,0.8787556290626526,-0.6354256272315979,0.8574223518371582,-0.4913085103034973,0.0020878156647086143,-0.00041562714613974094,0.002377657685428858,-0.00030987581703811884,0.0026943644043058157,-0.0009436130640096962,0.02359236776828766,-0.5356398820877075,-0.26194262504577637,0.00023592367768287658,-0.005356398820877076,-0.0026194262504577637,0.008711673319339752,-0.002923475345596671,175 +illusion_1.5L,ppo,176,70.4,1.0140196084976196,-0.4394066333770752,0.9074754118919373,-0.6651714444160461,0.8277189135551453,-0.4778444170951843,0.0020579856354743242,-0.0002004259149543941,0.0023989074397832155,6.593015132239088e-05,0.00273154117166996,-0.0006015950348228216,-0.09280821681022644,-0.5720516443252563,-0.4085671901702881,-0.0009280821681022644,-0.005720516443252563,-0.004085671901702881,0.008389359340071678,-0.001857058727182448,176 +illusion_1.5L,ppo,177,70.8,1.0865635871887207,-0.4651579260826111,0.9334375262260437,-0.7165768146514893,0.775102972984314,-0.47356030344963074,0.0020455040503293276,0.00013900044723413885,0.002464375924319029,0.0005188141367398202,0.0028380155563354492,-0.0002552657388150692,-0.5012145042419434,-0.5919535160064697,-0.5678048133850098,-0.005012145042419433,-0.005919535160064698,-0.0056780481338500974,0.008158615790307522,-0.0006682443199679255,177 +illusion_1.5L,ppo,178,71.2,1.1648586988449097,-0.48514899611473083,0.9580633044242859,-0.776994526386261,0.7025083303451538,-0.45971381664276123,0.0020329460967332125,0.0005365707911550999,0.002531099831685424,0.0010739894350990653,0.0029733297415077686,0.00011928897583857179,-0.6158143281936646,-0.6144797801971436,-0.6947684288024902,-0.0061581432819366455,-0.006144797801971436,-0.0069476842880249025,0.00808980967849493,0.0005694532301276922,178 +illusion_1.5L,ppo,179,71.6,1.252316951751709,-0.49682989716529846,0.9710728526115417,-0.7883241772651672,0.615237832069397,-0.4097844660282135,0.002009210642427206,0.0008916484657675028,0.002597732935100794,0.0015746542485430837,0.0030098080169409513,0.00041142452391795814,-0.6061066389083862,-0.4213683605194092,-0.6160430908203125,-0.006061066389083863,-0.004213683605194092,-0.006160430908203125,0.00807673204690218,0.0017795475432649255,179 +illusion_1.5L,ppo,180,72.0,1.3501476049423218,-0.4919775426387787,0.9549384117126465,-0.6656020879745483,0.5312365889549255,-0.29595956206321716,0.0019825620111078024,0.0011469300370663404,0.002662000246345997,0.0018504580948501825,0.0028988271951675415,0.0005881121614947915,-0.5444675087928772,-0.2682669162750244,-0.5585815906524658,-0.005444675087928772,-0.002682669162750244,-0.005585815906524658,0.008341887965798378,0.002887511160224676,180 +illusion_1.5L,ppo,181,72.4,1.4404308795928955,-0.4396277666091919,0.9105449914932251,-0.3916574716567993,0.47930967807769775,-0.11700582504272461,0.0019516863394528627,0.0012804212747141719,0.002715237205848098,0.0019873271230608225,0.0027918964624404907,0.0007526833796873689,-0.37872183322906494,-0.47728538513183594,-0.7522904872894287,-0.0037872183322906496,-0.004772853851318359,-0.007522904872894288,0.008465869352221489,0.003825533203780651,181 +illusion_1.5L,ppo,182,72.8,1.4533315896987915,-0.2680068612098694,0.8645622134208679,0.018938129767775536,0.4810318052768707,0.08785189688205719,0.0019201826071366668,0.0012886413605883718,0.002733677625656128,0.002112046116963029,0.0027882116846740246,0.0009176947642117739,-0.24328696727752686,-0.653274416923523,-0.8678727149963379,-0.0024328696727752685,-0.00653274416923523,-0.00867872714996338,0.008411048911511898,0.0045367949642241,182 +illusion_1.5L,ppo,183,73.2,1.3337599039077759,0.031106431037187576,0.8552826046943665,0.4364808201789856,0.5419347882270813,0.25448843836784363,0.001911487546749413,0.0012006532633677125,0.0027072057127952576,0.002165495650842786,0.0027925262693315744,0.0010110868606716394,-0.08994758129119873,-0.5177091360092163,-0.7097249031066895,-0.0008994758129119873,-0.0051770913600921635,-0.007097249031066895,0.008551978506147861,0.0049789901822805405,183 +illusion_1.5L,ppo,184,73.6,1.1564933061599731,0.29275843501091003,0.880908191204071,0.6659802794456482,0.6478990912437439,0.33040255308151245,0.001967852935194969,0.0009193026926368475,0.0026605830062180758,0.0021226208191365004,0.0027714704629033804,0.001080574351362884,0.39926058053970337,-0.49806666374206543,-0.621248722076416,0.0039926058053970336,-0.004980666637420654,-0.0062124872207641605,0.008640555664896965,0.005126874428242445,184 +illusion_1.5L,ppo,185,74.0,1.0400415658950806,0.37981730699539185,0.9125570058822632,0.6625697612762451,0.7564702033996582,0.35226088762283325,0.002091268077492714,0.0005351501167751849,0.0026077167131006718,0.0019504236988723278,0.0027147457003593445,0.0011177477426826954,0.47314298152923584,-0.31803977489471436,-0.4224832057952881,0.0047314298152923585,-0.0031803977489471436,-0.004224832057952881,0.00877284724265337,0.004973690956830978,185 +illusion_1.5L,ppo,186,74.4,0.9924215078353882,0.3634769916534424,0.932668149471283,0.5918205380439758,0.8413383364677429,0.37717047333717346,0.002179689472541213,0.00029157998505979776,0.0025646984577178955,0.0015986368525773287,0.0026175675448030233,0.0010761073790490627,0.034772202372550964,0.03203725814819336,-0.11438608169555664,0.00034772202372550964,0.0003203725814819336,-0.0011438608169555664,0.008914750069379807,0.004531398881226778,186 +illusion_1.5L,ppo,187,74.8,0.9602249264717102,0.3453940153121948,0.9422553777694702,0.5623142719268799,0.9105714559555054,0.4037210941314697,0.002214323729276657,0.00012274054461158812,0.002528567099943757,0.0012402069987729192,0.002557652536779642,0.000997719238512218,0.08651268482208252,0.02940225601196289,-0.048126220703125,0.0008651268482208252,0.0002940225601196289,-0.00048126220703125,0.008651209995150566,0.0038297150749713182,187 +illusion_1.5L,ppo,188,75.2,0.9188969135284424,0.3435644805431366,0.9457932114601135,0.5637401342391968,0.9715570211410522,0.4294188618659973,0.002233937382698059,-0.0001522059756098315,0.002526648575440049,0.0009245446999557316,0.002541810506954789,0.0007975377957336605,0.4474874138832093,0.12048053741455077,0.13511812686920166,0.004474874138832093,0.0012048053741455077,0.0013511812686920167,0.008369920775294304,0.002914042677730322,188 +illusion_1.5L,ppo,189,75.6,0.8681809306144714,0.3473459482192993,0.945250928401947,0.5857946872711182,1.0292725563049316,0.4566308259963989,0.0022436620201915503,-0.0004937781486660242,0.0026226965710520744,0.0005285387742333114,0.0025483372155576944,0.00037277990486472845,0.5495847463607788,0.4013371467590332,0.4525173902511597,0.005495847463607788,0.004013371467590332,0.004525173902511597,0.00823057908564806,0.0018424494192004204,189 +illusion_1.5L,ppo,190,76.0,0.8087942600250244,0.34654149413108826,0.9396481513977051,0.6258922219276428,1.0880316495895386,0.48700374364852905,0.0022310076747089624,-0.0008363388478755951,0.0026903548277914524,0.00019749358762055635,0.00257676187902689,-0.00015065261686686426,0.644020676612854,0.32102012634277344,0.42659687995910645,0.00644020676612854,0.0032102012634277343,0.0042659687995910646,0.008093336597084999,0.0006818966940045357,190 +illusion_1.5L,ppo,191,76.4,0.7401161789894104,0.3295546770095825,0.9247679114341736,0.6788800954818726,1.152826189994812,0.5217790603637695,0.002209835685789585,-0.001158004510216415,0.00262798136100173,2.945801315945573e-05,0.0026087455917149782,-0.000645985477603972,0.7211050987243652,0.29255008697509766,0.38819408416748047,0.007211050987243652,0.0029255008697509767,0.003881940841674805,0.008223836310207844,-0.0004960204241797328,191 +illusion_1.5L,ppo,192,76.8,0.6646217107772827,0.28074780106544495,0.89014732837677,0.7126117944717407,1.230005145072937,0.5607175230979919,0.002162796212360263,-0.0014134414959698915,0.0025565503165125847,-0.00011087562597822398,0.002642775420099497,-0.0011020272504538298,0.7003135681152344,0.5608820915222168,0.5556836128234863,0.0070031356811523435,0.0056088209152221685,0.005556836128234864,0.008288096636533737,-0.0016195487696677446,192 +illusion_1.5L,ppo,193,77.2,0.5926496386528015,0.18670165538787842,0.8263320922851562,0.6386873126029968,1.3228949308395386,0.5933601260185242,0.0021142957266420126,-0.001643693307414651,0.0025685399305075407,-0.0002567692718002945,0.0026924735866487026,-0.0014868895523250103,0.8220662474632264,0.7130565643310547,0.5988154411315918,0.008220662474632264,0.007130565643310547,0.005988154411315918,0.008168513886630535,-0.0026211808435618877,193 +illusion_1.5L,ppo,194,77.6,0.5443329215049744,0.05003690719604492,0.7483336925506592,0.39518916606903076,1.3989976644515991,0.5505886673927307,0.002070124726742506,-0.001870320294983685,0.0026107195299118757,-0.00039608965744264424,0.0027276352047920227,-0.0017572781071066856,0.8813800811767578,0.7623522281646729,0.5455498695373535,0.008813800811767579,0.007623522281646728,0.005455498695373535,0.008290053345263004,-0.003441715380176902,194 +illusion_1.5L,ppo,195,78.0,0.5440934896469116,-0.09633591771125793,0.6805678606033325,0.03319701552391052,1.3897885084152222,0.32600685954093933,0.002029385417699814,-0.0019519365159794688,0.00265208026394248,-0.0005371581646613777,0.0027563951443880796,-0.0018713861936703324,0.5424689054489136,0.7758960723876953,0.4964416027069092,0.005424689054489136,0.007758960723876954,0.004964416027069092,0.008446116000413895,-0.004033731762319803,195 +illusion_1.5L,ppo,196,78.4,0.6059436202049255,-0.19970369338989258,0.6508486270904541,-0.36403822898864746,1.2976431846618652,-0.0695953294634819,0.0019877227023243904,-0.001751621370203793,0.0026670803781598806,-0.0006675567710772157,0.0027764919213950634,-0.0018562510376796126,-0.05591771006584167,0.7309656143188477,0.5046049356460571,-0.0005591771006584167,0.007309656143188477,0.0050460493564605715,0.00865935068577528,-0.004364273976534605,196 +illusion_1.5L,ppo,197,78.8,0.6993520259857178,-0.2552531957626343,0.682582676410675,-0.6562491059303284,1.1719290018081665,-0.48220595717430115,0.0019770837388932705,-0.001343120471574366,0.0026129684410989285,-0.0007048392435535789,0.0027463193982839584,-0.00178437156137079,-0.40067797899246216,0.48148584365844727,0.4758538007736206,-0.004006779789924622,0.0048148584365844726,0.004758538007736206,0.00895126722753048,-0.004416606388986111,197 +illusion_1.5L,ppo,198,79.2,0.7833070158958435,-0.30597788095474243,0.760416567325592,-0.7192897796630859,1.0898141860961914,-0.6339950561523438,0.0020001879893243313,-0.0009307495784014463,0.0025062612257897854,-0.0005878567462787032,0.002667567227035761,-0.0016761883161962032,-0.2912231683731079,0.040650367736816406,0.29601502418518066,-0.002912231683731079,0.00040650367736816406,0.0029601502418518067,0.008846367709338665,-0.004190945997834206,198 +illusion_1.5L,ppo,199,79.6,0.8563407063484192,-0.356424480676651,0.8337088227272034,-0.667727530002594,1.0464141368865967,-0.5746743083000183,0.0019973786547780037,-0.0007249334594234824,0.0024062125012278557,-0.0003665024705696851,0.0025893612764775753,-0.0014713610289618373,0.19549459218978882,-0.30635595321655273,-0.008536815643310547,0.0019549459218978884,-0.0030635595321655273,-8.536815643310547e-05,0.0086283003911376,-0.0037041637115180492,199 +illusion_1.5L,ppo,200,80.0,0.925886332988739,-0.39953678846359253,0.8798643350601196,-0.6458398699760437,1.0037016868591309,-0.5129336714744568,0.0019863247871398926,-0.000613293144851923,0.0023657395504415035,-0.000163078133482486,0.0025659846141934395,-0.001183117157779634,0.19653746485710144,-0.30629992485046387,-0.17561769485473633,0.0019653746485710144,-0.0030629992485046386,-0.0017561769485473634,0.00852078478783369,-0.002988493302837014,200 +illusion_1.5L,ppo,201,80.4,0.994681715965271,-0.4374676048755646,0.9069910645484924,-0.6552162766456604,0.9519568085670471,-0.4827731251716614,0.0020076262298971415,-0.000362582242814824,0.0023698131553828716,6.204639794304967e-05,0.0026361257769167423,-0.0008044727146625519,-0.26302236318588257,-0.31938815116882324,-0.33417224884033203,-0.002630223631858826,-0.0031938815116882326,-0.0033417224884033205,0.008339837193489075,-0.0020893490873277187,201 +illusion_1.5L,ppo,202,80.8,1.066185474395752,-0.47258031368255615,0.9211663603782654,-0.6884252429008484,0.8917043209075928,-0.45964157581329346,0.0020429950673133135,1.3759658941125963e-05,0.002385754371061921,0.00040357577381655574,0.0027604345232248306,-0.00031765352468937635,-0.4711184501647949,-0.3959686756134033,-0.4766273498535156,-0.004711184501647949,-0.0039596867561340334,-0.004766273498535156,0.008356091566383839,-0.001062412979081273,202 +illusion_1.5L,ppo,203,81.2,1.1451300382614136,-0.5057485103607178,0.9230047464370728,-0.740047812461853,0.8196051716804504,-0.42613667249679565,0.0020454046316444874,0.0003651792067103088,0.00242129759863019,0.0007805001805536449,0.0028079645708203316,0.00010971911979140714,-0.4193136096000672,-0.2974666357040405,-0.4184670448303222,-0.004193136096000672,-0.0029746663570404054,-0.004184670448303222,0.00832816120237112,2.9825627279933542e-05,203 +illusion_1.5L,ppo,204,81.6,1.2378123998641968,-0.5349968075752258,0.9062342047691345,-0.7648873329162598,0.7354896664619446,-0.36148208379745483,0.0020283213816583157,0.000632364593911916,0.0024967254139482975,0.001083491719327867,0.002758490853011608,0.000377414224203676,-0.38064706325531006,-0.26517367362976074,-0.4079163074493408,-0.0038064706325531008,-0.0026517367362976075,-0.004079163074493408,0.008069791831076145,0.0011218518484383821,204 +illusion_1.5L,ppo,205,82.0,1.346103310585022,-0.5460923910140991,0.8645471334457397,-0.6521254777908325,0.6515522003173828,-0.24467147886753082,0.001992378383874893,0.0008381123770959675,0.0025573503226041794,0.0013348598731681705,0.002698548138141632,0.0005435996572487056,-0.4211268424987793,-0.43567049503326416,-0.5652904510498047,-0.004211268424987793,-0.004356704950332642,-0.005652904510498047,0.008051803335547447,0.002149005187675357,205 +illusion_1.5L,ppo,206,82.4,1.4346829652786255,-0.4768100380897522,0.8071348071098328,-0.35987380146980286,0.5922869443893433,-0.07623365521430969,0.0019500473281368613,0.0010167215950787067,0.0025744992308318615,0.0015980784082785249,0.0027046778704971075,0.0006744282436557114,-0.498403012752533,-0.5951869487762451,-0.7110533714294434,-0.00498403012752533,-0.005951869487762451,-0.007110533714294434,0.008151903748512268,0.0030512260273098946,206 +illusion_1.5L,ppo,207,82.8,1.4309180974960327,-0.23499809205532074,0.7589973211288452,0.05339813232421875,0.5855125188827515,0.10183117538690567,0.0019127653213217854,0.0011357618495821953,0.0025660833343863487,0.001821361598558724,0.002735365414991975,0.0007531896117143333,-0.40794074535369873,-0.5627063512802124,-0.6694984436035156,-0.004079407453536988,-0.005627063512802124,-0.006694984436035156,0.00834288913756609,0.0037764590233564377,207 +illusion_1.5L,ppo,208,83.2,1.3080224990844727,0.16658784449100494,0.7602960467338562,0.4610763192176819,0.6421663761138916,0.223875030875206,0.0018863833975046873,0.001052690320648253,0.002536892658099532,0.0019592363387346268,0.0027153664268553257,0.0007828243542462587,0.0759427547454834,-0.5653985738754272,-0.5721206665039062,0.000759427547454834,-0.005653985738754272,-0.005721206665039062,0.008715752512216568,0.004283526912331581,208 +illusion_1.5L,ppo,209,83.6,1.1638950109481812,0.46557533740997314,0.8167341351509094,0.6654494404792786,0.7305362224578857,0.2833443582057953,0.0019181326497346163,0.0007209245231933892,0.0024815713986754417,0.0020492346957325935,0.002661209786310792,0.0007801548927091062,0.5450265407562256,-0.6713688373565674,-0.5128226280212402,0.005450265407562256,-0.006713688373565674,-0.005128226280212402,0.00877283327281475,0.004544325638562441,209 +illusion_1.5L,ppo,210,84.0,1.0914055109024048,0.5071880221366882,0.8856645226478577,0.6493608951568604,0.8123183250427246,0.3236963152885437,0.0019987940322607756,0.0004243719158694148,0.0023890750017017126,0.0020422080997377634,0.0025900749024003744,0.0007277491968125105,0.2515771687030792,-0.4590737819671631,-0.3290705680847168,0.0025157716870307925,-0.004590737819671631,-0.0032907056808471682,0.008680131286382675,0.004545234143733978,210 +illusion_1.5L,ppo,211,84.4,1.0560386180877686,0.46460407972335815,0.9363166689872742,0.5963414311408997,0.8829692006111145,0.35585445165634155,0.0020500256214290857,0.00033420335967093706,0.0022852155379951,0.0018781023100018501,0.0025148075073957443,0.000668841996230185,-0.18740859627723694,-0.11842942237854004,-0.17292118072509766,-0.0018740859627723694,-0.0011842942237854004,-0.0017292118072509766,0.00870765931904316,0.00428768340498209,211 +illusion_1.5L,ppo,212,84.8,1.0193063020706177,0.4353974461555481,0.9701003432273865,0.5702136158943176,0.9451467990875244,0.3806692063808441,0.0020802589133381844,0.00022697907115798444,0.0022372137755155563,0.0016495375894010067,0.0024727291893213987,0.0006631794385612011,0.0996425598859787,-0.0391080379486084,-0.15716314315795898,0.000996425598859787,-0.00039108037948608397,-0.00157163143157959,0.008620945736765862,0.0037878667935729027,212 +illusion_1.5L,ppo,213,85.2,0.9744230508804321,0.4107905924320221,0.9939468502998352,0.5625631213188171,1.0012317895889282,0.40189480781555176,0.002125830389559269,-3.9201462641358376e-05,0.0023260030429810286,0.00128292350564152,0.0024432537611573935,0.0005696768057532609,0.45432871580123907,0.2371721267700195,0.11232638359069826,0.0045432871580123905,0.002371721267700195,0.0011232638359069825,0.008646907284855843,0.0030756364576518536,213 +illusion_1.5L,ppo,214,85.6,0.9173464775085449,0.37338152527809143,1.0104011297225952,0.5684381127357483,1.0537608861923218,0.42245227098464966,0.002172115258872509,-0.00037718817475251853,0.002495039952918887,0.0007476729806512594,0.002415415132418275,0.0003141813795082271,0.5313880443572998,0.4160828590393066,0.32664334774017334,0.005313880443572998,0.004160828590393066,0.0032664334774017336,0.008617529645562172,0.0021926581393927336,214 +illusion_1.5L,ppo,215,86.0,0.8449598550796509,0.30680763721466064,1.0183995962142944,0.5833562612533569,1.1063621044158936,0.4446335732936859,0.0022107562981545925,-0.0007203453569673002,0.0025353922974318266,0.00034152567968703806,0.0024308909196406603,3.821281643467955e-05,0.6203394532203674,0.1369771957397461,0.14585137367248535,0.0062033945322036745,0.0013697719573974609,0.0014585137367248535,0.008267231285572052,0.0011899459641426802,215 +illusion_1.5L,ppo,216,86.4,0.7629475593566895,0.20009134709835052,1.0098069906234741,0.593754768371582,1.1640583276748657,0.4701445400714874,0.0022187770809978247,-0.0010012224083766341,0.002440443728119135,0.000112237932626158,0.002471414627507329,-0.00022701898706145585,0.5581793785095215,0.21223545074462893,0.19975006580352783,0.005581793785095215,0.0021223545074462893,0.0019975006580352783,0.008079802617430687,0.00012491656525526196,216 +illusion_1.5L,ppo,217,86.8,0.694235622882843,0.06419453024864197,0.9649973511695862,0.5568467974662781,1.2330623865127563,0.4988463521003723,0.0021746570710092783,-0.0011917274678125978,0.0024139159359037876,-0.00011042767437174916,0.0025187244173139334,-0.0005430472665466368,0.5149763822555542,0.6444694995880127,0.4893680810928344,0.005149763822555542,0.0064446949958801274,0.0048936808109283445,0.008036432787775993,-0.0009418626432307065,217 +illusion_1.5L,ppo,218,87.2,0.6738479137420654,-0.0589439831674099,0.8691257238388062,0.3963354825973511,1.3167866468429565,0.5187318921089172,0.0021106975618749857,-0.0014046123251318932,0.002522045746445656,-0.0003369332989677787,0.0025746482424438,-0.0008971851784735918,0.7430788278579712,0.8524637222290038,0.5732190608978271,0.007430788278579712,0.008524637222290039,0.005732190608978271,0.008079362101852894,-0.0019500593189150095,218 +illusion_1.5L,ppo,219,87.6,0.7076277136802673,-0.13741779327392578,0.7459574937820435,0.0805540680885315,1.3820010423660278,0.4668777883052826,0.002038004342466593,-0.001618830836378038,0.0026714049745351076,-0.0005270313122309744,0.0026172567158937454,-0.0012639749329537153,0.7613867521286011,0.8973259925842285,0.5869474411010742,0.007613867521286011,0.008973259925842286,0.005869474411010742,0.008383121341466904,-0.002842910820618272,219 +illusion_1.5L,ppo,220,88.0,0.7610827088356018,-0.19043996930122375,0.6553574204444885,-0.296567440032959,1.3471373319625854,0.2543807327747345,0.0019587911665439606,-0.0016903415089473128,0.002750230021774769,-0.0006503699696622789,0.002643744694069028,-0.001578176044858992,0.426206111907959,0.7555127143859863,0.5666590929031372,0.00426206111907959,0.007555127143859863,0.005666590929031372,0.008482938632369041,-0.0035703328903764486,220 +illusion_1.5L,ppo,221,88.4,0.8117125630378723,-0.24152614176273346,0.6639491319656372,-0.5342966914176941,1.187099575996399,-0.08883032202720642,0.0019015019061043859,-0.0015121742617338896,0.002694617724046111,-0.0006876105326227844,0.0026446410920470953,-0.0017843851819634438,-0.043631404638290405,0.5284085273742676,0.545351505279541,-0.00043631404638290407,0.005284085273742676,0.00545351505279541,0.008444554172456264,-0.00409164372831583,221 +illusion_1.5L,ppo,222,88.8,0.8611577749252319,-0.28901833295822144,0.7524822950363159,-0.5656256675720215,0.9684107899665833,-0.4331796169281006,0.0018845717422664165,-0.0012001862050965428,0.002557753585278988,-0.0006548494566231966,0.0025903102941811085,-0.0019044301006942987,-0.24943822622299194,0.3939299583435058,0.5549486875534058,-0.0024943822622299195,0.003939299583435058,0.005549486875534058,0.00859114434570074,-0.004377763718366623,222 +illusion_1.5L,ppo,223,89.2,0.9108035564422607,-0.3295154273509979,0.8312771320343018,-0.554259717464447,0.8522741198539734,-0.5668503642082214,0.0019062012434005737,-0.0008865267736837268,0.0024498619604855776,-0.0005850653978995979,0.002483137184754014,-0.001964082010090351,-0.21215930581092834,0.2907981872558594,0.48869049549102783,-0.0021215930581092836,0.002907981872558594,0.0048869049549102785,0.008660022169351578,-0.0044127777218818665,223 +illusion_1.5L,ppo,224,89.6,0.9602193236351013,-0.36394089460372925,0.8851580023765564,-0.5596955418586731,0.8530229330062866,-0.5283229947090149,0.0019196852808818221,-0.000742665957659483,0.002372595714405179,-0.00046212191227823496,0.0023748273961246014,-0.0018941642483696342,0.23622001707553864,0.0024404525756835938,0.19103288650512695,0.0023622001707553865,2.4404525756835937e-05,0.0019103288650512695,0.008805335499346256,-0.00419478677213192,224 +illusion_1.5L,ppo,225,90.0,1.0090324878692627,-0.3943905532360077,0.9250816106796265,-0.5743862986564636,0.8553395867347717,-0.4826388955116272,0.001909945160150528,-0.0007265982567332685,0.00230859755538404,-0.00032418567570857704,0.002334197983145714,-0.0016663788119331002,0.38165807723999023,-0.15162229537963867,-0.05199861526489258,0.0038165807723999023,-0.0015162229537963867,-0.0005199861526489258,0.00891233142465353,-0.003736004466190934,225 +illusion_1.5L,ppo,226,90.4,1.0583916902542114,-0.4230787754058838,0.955765962600708,-0.5968198776245117,0.828481137752533,-0.45054158568382263,0.0019363666651770473,-0.0005605908809229732,0.0022827298380434513,-0.00018395345250610262,0.00240694941021502,-0.0012986789224669337,-0.1293221414089203,-0.1549438238143921,-0.16643524169921875,-0.0012932214140892028,-0.001549438238143921,-0.0016643524169921875,0.008620023727416992,-0.0030620943289250135,226 +illusion_1.5L,ppo,227,90.8,1.1107431650161743,-0.4521212875843048,0.9777158498764038,-0.6252636313438416,0.7798871397972107,-0.4070742726325989,0.001996584003791213,-0.00022682153212372214,0.0022760056890547276,3.588708204915747e-05,0.0025387872010469437,-0.0007909435662440956,-0.4127517938613891,-0.2416430711746216,-0.29650402069091797,-0.004127517938613891,-0.002416430711746216,-0.00296504020690918,0.008369951508939266,-0.0022107805125415325,227 +illusion_1.5L,ppo,228,91.2,1.1700241565704346,-0.48339948058128357,0.9842414855957031,-0.6503040790557861,0.715187668800354,-0.3295608460903168,0.002031688578426838,9.909026994137093e-05,0.002294637495651841,0.00033645780058577657,0.0026102918200194836,-0.00028085120720788836,-0.32197123765945435,-0.24349188804626468,-0.30702877044677734,-0.0032197123765945433,-0.0024349188804626467,-0.0030702877044677737,0.008232075721025467,-0.001229805056937039,228 +illusion_1.5L,ppo,229,91.6,1.2432228326797485,-0.516928493976593,0.9581887125968933,-0.6368498802185059,0.6446377635002136,-0.203395277261734,0.0020287143997848034,0.0003433960664551705,0.0023622000589966774,0.0006035828846506774,0.0025791004300117493,5.563497688854113e-05,-0.2570437788963318,-0.15976715087890625,-0.2627251148223877,-0.002570437788963318,-0.0015976715087890625,-0.002627251148223877,0.00811179168522358,-0.00017433101311326027,229 +illusion_1.5L,ppo,230,92.0,1.335879921913147,-0.5413060188293457,0.8830844759941101,-0.5068053603172302,0.5898509621620178,-0.03819708526134491,0.0020059668458998203,0.0005315258167684078,0.0024310462176799774,0.0008330619311891496,0.0025269484613090754,0.0002678502642083913,-0.28590166568756104,-0.2969639301300049,-0.443608283996582,-0.0028590166568756106,-0.0029696393013000488,-0.00443608283996582,0.008253613486886024,0.0008960727136582136,230 +illusion_1.5L,ppo,231,92.4,1.4190412759780884,-0.4933192729949951,0.7797590494155884,-0.2066885530948639,0.5846520066261292,0.1160363033413887,0.001963180024176836,0.0006975252763368189,0.0024639954790472984,0.0011218893341720104,0.002568290801718831,0.00047049287240952253,-0.3660236597061157,-0.5720744132995605,-0.7242207527160645,-0.0036602365970611573,-0.005720744132995606,-0.007242207527160645,0.008266055956482887,0.0019207126460969448,231 +illusion_1.5L,ppo,232,92.8,1.4046324491500854,-0.2811512351036072,0.6962424516677856,0.19798502326011658,0.642641007900238,0.20358452200889587,0.0019223977578803897,0.0008585136383771896,0.0024722290690988302,0.0014482642291113734,0.0026711728423833847,0.0006343346904031932,-0.4208977818489075,-0.6080409288406372,-0.7370874881744385,-0.004208977818489075,-0.006080409288406372,-0.007370874881744385,0.008138866163790226,0.002841145033016801,232 +illusion_1.5L,ppo,233,93.2,1.2666940689086914,0.05261596292257309,0.6802343130111694,0.5391529202461243,0.7241197228431702,0.24602411687374115,0.0018792185001075268,0.0008835472399368882,0.0024569223169237375,0.0017381268553435802,0.00271138409152627,0.0007165414281189442,-0.07061994075775146,-0.5897254943847656,-0.6012182235717773,-0.0007061994075775146,-0.0058972549438476565,-0.006012182235717774,0.008266528137028217,0.0036044649314135313,233 +illusion_1.5L,ppo,234,93.6,1.0546903610229492,0.3974395990371704,0.7505517601966858,0.6390880346298218,0.7948812246322632,0.2867477536201477,0.0018726561684161425,0.000680384982842952,0.0024199895560741425,0.0019719551783055067,0.002679642057046294,0.0007587854634039104,0.393081396818161,-0.6854281425476074,-0.5700459480285645,0.00393081396818161,-0.006854281425476075,-0.005700459480285644,0.008407868444919586,0.004166331607848406,234 +illusion_1.5L,ppo,235,94.0,0.9090120196342468,0.5595601797103882,0.8394530415534973,0.6031233668327332,0.856834888458252,0.3242667019367218,0.001939285546541214,0.000394938891986385,0.0023407861590385437,0.002136166440322995,0.0026314237620681524,0.0007848797249607742,0.4350166320800782,-0.6692852973937988,-0.5484316349029541,0.004350166320800782,-0.006692852973937988,-0.005484316349029541,0.008650233037769794,0.004493560642004013,235 +illusion_1.5L,ppo,236,94.4,0.8848266005516052,0.5340337157249451,0.903123140335083,0.5783854126930237,0.9131975769996643,0.35376304388046265,0.0020157911349087954,0.0002584733592811972,0.0022195212077349424,0.0021342195104807615,0.0025641866959631443,0.0007816128199920058,-0.004740387201309204,-0.3197357654571533,-0.3674147129058838,-4.7403872013092045e-05,-0.0031973576545715333,-0.003674147129058838,0.008936306461691856,0.0045661311596632,236 +illusion_1.5L,ppo,237,94.8,0.8829271197319031,0.4833676815032959,0.9494304656982422,0.5678470134735107,0.9646196961402893,0.37725770473480225,0.002059394959360361,0.0002555868122726679,0.0021448188927024603,0.0019626475404947996,0.002496023429557681,0.0008102420251816511,-0.19450649619102478,-0.049191594123840325,-0.26035594940185547,-0.0019450649619102479,-0.0004919159412384033,-0.002603559494018555,0.008818242698907852,0.004378491081297398,237 +illusion_1.5L,ppo,238,95.2,0.8604831099510193,0.43944981694221497,0.9852169752120972,0.5639761686325073,1.0119527578353882,0.39774081110954285,0.002089013811200857,0.0001368330849800259,0.0021820992697030306,0.0016727850306779146,0.002448058221489191,0.0008476224029436707,0.2247903048992157,0.05259132385253906,-0.18090152740478516,0.002247903048992157,0.0005259132385253907,-0.0018090152740478517,0.00864899531006813,0.003940064925700426,238 +illusion_1.5L,ppo,239,95.6,0.8174923658370972,0.3807048797607422,1.0120161771774292,0.564538300037384,1.056512713432312,0.4178088307380676,0.002148256404325366,-0.00015199073823168874,0.002335031982511282,0.0012029141653329134,0.002410499844700098,0.0007699530106037855,0.5190973281860352,0.2562851905822754,0.0348658561706543,0.005190973281860352,0.002562851905822754,0.000348658561706543,0.00856008566915989,0.003274921327829361,239 +illusion_1.5L,ppo,240,96.0,0.7565117478370667,0.2893136441707611,1.0276250839233398,0.5668522715568542,1.1004881858825684,0.4399366080760956,0.002218937035650015,-0.0004821176698897034,0.0024697568733245134,0.0006630649440921843,0.002394995419308543,0.000587905989959836,0.5424928069114685,0.2581901550292969,0.08278524875640869,0.005424928069114685,0.002581901550292969,0.0008278524875640869,0.008397326804697514,0.002420595847070217,240 +illusion_1.5L,ppo,241,96.4,0.6858060956001282,0.1596480906009674,1.0240520238876343,0.564165472984314,1.1473853588104248,0.4664340615272522,0.0022561296354979277,-0.0007744081085547805,0.0024625156074762344,0.0002718942705541849,0.002408417174592614,0.0003808094479609281,0.5345518589019775,0.18506264686584473,0.03463470935821533,0.005345518589019775,0.0018506264686584473,0.0003463470935821533,0.008429951965808868,0.0014261198230087757,241 +illusion_1.5L,ppo,242,96.8,0.6303237676620483,0.012524431571364403,0.9855095148086548,0.5366876721382141,1.2035657167434692,0.4988079071044922,0.002248513512313366,-0.0010067899711430073,0.0024110297672450542,5.701033387595089e-06,0.002440971788018942,0.00014192545495461673,0.5271670818328857,0.41328358650207514,0.18398702144622803,0.005271670818328858,0.004132835865020752,0.0018398702144622804,0.008345250971615314,0.00034934014547616243,242 +illusion_1.5L,ppo,243,97.2,0.6272948384284973,-0.10132819414138794,0.8938694000244141,0.43851444125175476,1.2768988609313965,0.5324008464813232,0.0022015292197465897,-0.0012153887655586004,0.002471266547217965,-0.0002505221636965871,0.0024973235558718443,-0.00017783287330530584,0.6098405122756958,0.7600514888763428,0.4236574172973633,0.0060984051227569586,0.0076005148887634275,0.004236574172973633,0.008059890009462833,-0.0007463268702849746,243 +illusion_1.5L,ppo,244,97.6,0.6824809908866882,-0.15154224634170532,0.756408154964447,0.2181374430656433,1.3594653606414795,0.5302927494049072,0.002114243572577834,-0.0014173701638355851,0.0026362077333033085,-0.000491560494992882,0.002562226029112935,-0.0006039142026565969,0.6948131918907166,0.9385025501251221,0.5991761684417725,0.006948131918907165,0.009385025501251221,0.005991761684417725,0.00803802814334631,-0.0017955382354557514,244 +illusion_1.5L,ppo,245,98.0,0.7512531876564026,-0.17233404517173767,0.61814284324646,-0.11052321642637253,1.3901933431625366,0.4071272313594818,0.002009093761444092,-0.0015716487541794777,0.002772946609184146,-0.0006310423486866057,0.002610991010442376,-0.0010932674631476402,0.6346956491470337,0.8145413398742677,0.633415937423706,0.0063469564914703375,0.008145413398742677,0.00633415937423706,0.00810767337679863,-0.0027348583098500967,245 +illusion_1.5L,ppo,246,98.4,0.8031427264213562,-0.20282132923603058,0.5440477728843689,-0.4337354600429535,1.3187439441680908,0.15892744064331055,0.0019101710058748722,-0.0015691658481955528,0.002764895325526595,-0.0006518722511827946,0.002618873957544565,-0.0015439183916896582,0.2994007170200348,0.5923001766204834,0.6272050142288208,0.002994007170200348,0.005923001766204834,0.0062720501422882085,0.008312919177114964,-0.0035065629053860903,246 +illusion_1.5L,ppo,247,98.8,0.8433409929275513,-0.24413317441940308,0.6036420464515686,-0.5728685259819031,1.1498935222625732,-0.14542868733406067,0.0018381993286311626,-0.0013906549429520965,0.002620523562654853,-0.0005968065233901143,0.0025718279648572206,-0.0018846063176169991,-0.032154202461242676,0.4270448684692383,0.6229526996612549,-0.00032154202461242675,0.004270448684692383,0.0062295269966125486,0.008678091689944267,-0.004062185063958168,247 +illusion_1.5L,ppo,248,99.2,0.8822433948516846,-0.28558599948883057,0.7337531447410583,-0.5475004315376282,0.9111382365226746,-0.4501551687717438,0.0018241495126858354,-0.0011451838072389364,0.0024518368300050497,-0.0005091262864880264,0.002485602628439665,-0.0020761266350746155,-0.11328831315040588,0.31739330291748047,0.5349994897842407,-0.0011328831315040588,0.003173933029174805,0.0053499948978424075,0.008710966445505619,-0.004365585744380951,248 +illusion_1.5L,ppo,249,99.6,0.9223451018333435,-0.32289835810661316,0.8250043988227844,-0.5260246396064758,0.7437026500701904,-0.5991511940956116,0.001862222095951438,-0.0008762783836573362,0.0023436369374394417,-0.00044193226494826376,0.0023776853922754526,-0.0021211591083556414,-0.207712322473526,0.28069615364074707,0.4337712526321411,-0.00207712322473526,0.0028069615364074707,0.0043377125263214114,0.00866282731294632,-0.004395345691591501,249 +illusion_1.5L,ppo,250,100.0,0.963030993938446,-0.35656723380088806,0.8799736499786377,-0.5290279388427734,0.739168643951416,-0.5532381534576416,0.0019086201209574938,-0.0006693461327813566,0.0022732564248144627,-0.00036514271050691605,0.002293386496603489,-0.001992787467315793,-0.009332209825515747,0.03268265724182129,0.16572856903076172,-9.332209825515747e-05,0.0003268265724182129,0.0016572856903076172,0.008717188611626625,-0.004146318417042494,250 +illusion_1.5L,ppo,251,100.4,1.0039376020431519,-0.38841524720191956,0.9171106815338135,-0.5378686189651489,0.7795284390449524,-0.4712104797363281,0.0019224748248234391,-0.0006104084313847125,0.0022199677769094706,-0.00022440262546297163,0.002314907032996416,-0.001653270679526031,0.3432551324367523,-0.2868788242340088,-0.187089204788208,0.003432551324367523,-0.002868788242340088,-0.0018708920478820801,0.008651788346469402,-0.0036302267108112574,251 +illusion_1.5L,ppo,252,100.8,1.0457653999328613,-0.4208137094974518,0.940066933631897,-0.5505838990211487,0.7831653356552124,-0.4078758656978607,0.0019383687758818269,-0.000487516779685393,0.0022097115870565176,-9.024432074511424e-05,0.002409851411357522,-0.0012169660767540336,-0.0159778892993927,-0.19138312339782715,-0.21195077896118164,-0.000159778892993927,-0.0019138312339782716,-0.0021195077896118165,0.008710197173058987,-0.0028752374928444624,252 +illusion_1.5L,ppo,253,101.2,1.0911239385604858,-0.4560214579105377,0.9473962187767029,-0.5684888362884521,0.7530955672264099,-0.3399427831172943,0.0019828067161142826,-0.00017690304957795888,0.0022331762593239546,8.835563494358212e-05,0.00252535636536777,-0.000717331247869879,-0.4273987412452698,-0.21105122566223147,-0.30677199363708496,-0.004273987412452698,-0.0021105122566223147,-0.0030677199363708498,0.008641681633889675,-0.0019245173316448927,253 +illusion_1.5L,ppo,254,101.6,1.144809365272522,-0.4955223500728607,0.932919442653656,-0.5903662443161011,0.7012391090393066,-0.24937480688095093,0.002014986239373684,0.0001427659735782072,0.0022855037823319435,0.0004243842849973589,0.0026613902300596237,-0.00015977039583958685,-0.33963698148727417,-0.44954514503479004,-0.536278247833252,-0.003396369814872742,-0.004495451450347901,-0.005362782478332519,0.008270466700196266,-0.0008338304469361901,254 +illusion_1.5L,ppo,255,102.0,1.214975118637085,-0.5378987789154053,0.8846904039382935,-0.6000072956085205,0.639894962310791,-0.13181622326374054,0.002008814364671707,0.0004217065579723567,0.002360491082072258,0.0007911306456662714,0.00271689984947443,0.00025406834902241826,-0.375585675239563,-0.3318740129470825,-0.4706387519836426,-0.00375585675239563,-0.0033187401294708253,-0.004706387519836426,0.0080949105322361,0.0003316924849059433,255 +illusion_1.5L,ppo,256,102.4,1.3069871664047241,-0.5692746043205261,0.7920523881912231,-0.538834273815155,0.5923119783401489,-0.0027138807345181704,0.001987421652302146,0.0006832421640865505,0.0024429934564977884,0.0010873194551095366,0.0026874784380197525,0.0004886253154836595,-0.46717584133148193,-0.3232545852661133,-0.5076713562011719,-0.00467175841331482,-0.003232545852661133,-0.0050767135620117185,0.008030417375266552,0.0015014351811259985,256 +illusion_1.5L,ppo,257,102.8,1.3966175317764282,-0.5384208559989929,0.6757344603538513,-0.3305545449256897,0.5924749970436096,0.10000159591436386,0.0019471821142360568,0.0008832369931042194,0.002502526855096221,0.0014175819233059883,0.002692370442673564,0.0006663823733106256,-0.42255449295043945,-0.6112796068191528,-0.7322325706481934,-0.004225544929504395,-0.006112796068191528,-0.007322325706481934,0.008088373579084873,0.002603593748062849,257 +illusion_1.5L,ppo,258,103.2,1.420271396636963,-0.39083099365234375,0.5814938545227051,0.00516277551651001,0.6469710469245911,0.15276014804840088,0.0018901713192462921,0.0010331611847504973,0.002517909975722432,0.0017596030374988914,0.002707987790927291,0.0007556805503554642,-0.45180004835128784,-0.6413793563842773,-0.6755928993225098,-0.0045180004835128785,-0.006413793563842774,-0.006755928993225098,0.00838998332619667,0.003569631138816476,258 +illusion_1.5L,ppo,259,103.6,1.3550726175308228,-0.15056638419628143,0.5395378470420837,0.3623102605342865,0.717052161693573,0.18516547977924347,0.0018457348924130201,0.0010839164024218917,0.002500884933397174,0.0020455089397728443,0.002677355660125613,0.0007635110523551702,-0.24556350708007812,-0.6706846952438354,-0.5747218132019043,-0.0024556350708007813,-0.0067068469524383546,-0.005747218132019043,0.008452391251921654,0.004338605795055628,259 +illusion_1.5L,ppo,260,104.0,1.1921206712722778,0.16943153738975525,0.5752491354942322,0.6064109206199646,0.7744012475013733,0.2292335480451584,0.0018340636743232608,0.000953438866417855,0.002454432426020503,0.002274121856316924,0.0026202979497611523,0.0007559272926300764,0.12491847574710845,-0.7626785039901733,-0.55914306640625,0.0012491847574710845,-0.0076267850399017335,-0.0055914306640625,0.008437939919531345,0.004861098248511553,260 +illusion_1.5L,ppo,261,104.4,0.9680593013763428,0.49610885977745056,0.688071072101593,0.6363360285758972,0.8244093060493469,0.27865418791770935,0.001881972886621952,0.0006985898944549263,0.002372693968936801,0.0024072001688182354,0.0025601976085454226,0.0007435532170347869,0.33186182379722595,-0.710112452507019,-0.520291805267334,0.0033186182379722597,-0.007101124525070191,-0.00520291805267334,0.008596007712185383,0.005102469120174646,261 +illusion_1.5L,ppo,262,104.8,0.8298947215080261,0.6316072940826416,0.7933763861656189,0.5938190817832947,0.8734361529350281,0.3227841258049011,0.001995568163692951,0.00039475999074056745,0.0022584812249988317,0.002430973807349801,0.002525139134377241,0.0007460549240931869,0.4417091310024261,-0.6166636943817139,-0.49680876731872564,0.004417091310024261,-0.006166636943817139,-0.004968087673187256,0.008660073392093182,0.005045230966061354,262 +illusion_1.5L,ppo,263,105.2,0.8200985789299011,0.5797091126441956,0.8591369390487671,0.5778805613517761,0.9214349985122681,0.3610261082649231,0.0021121217869222164,0.0001835254079196602,0.0021731536835432053,0.0022435972932726145,0.0024753124453127384,0.0007236861274577677,0.14908185601234436,-0.14396464824676514,-0.20236301422119138,0.0014908185601234436,-0.0014396464824676515,-0.002023630142211914,0.008821661584079266,0.004690361209213734,263 +illusion_1.5L,ppo,264,105.6,0.8309921026229858,0.5107730627059937,0.9003944993019104,0.5751988887786865,0.9679906964302063,0.3962678015232086,0.0021563356276601553,7.478342740796506e-05,0.0022197263315320015,0.0018021324649453163,0.0023992005735635757,0.0006646325346082449,-0.0305558443069458,0.3077738285064697,0.10639321804046631,-0.000305558443069458,0.0030777382850646975,0.001063932180404663,0.008882550522685051,0.0040574450977146626,264 +illusion_1.5L,ppo,265,106.0,0.8178690075874329,0.4582483768463135,0.9234534502029419,0.5806796550750732,1.0139906406402588,0.43180039525032043,0.0021855079103261232,-0.0001686702307779342,0.0023621118161827326,0.001293773646466434,0.0023700660094618797,0.0005814000032842159,0.45804762840270996,0.2554202079772949,0.12779533863067627,0.0045804762840271,0.0025542020797729493,0.0012779533863067627,0.008558989502489567,0.003183630993589759,265 +illusion_1.5L,ppo,266,106.4,0.7844829559326172,0.400858998298645,0.9290268421173096,0.5960525274276733,1.062474250793457,0.4706716537475586,0.002236058935523033,-0.0005555039388127625,0.0025143923703581095,0.0007644694414921105,0.002389350440353155,0.00035643577575683594,0.7131701707839966,0.33417367935180664,0.2962765693664551,0.007131701707839966,0.0033417367935180665,0.0029627656936645507,0.008332237601280212,0.0021214294247329235,266 +illusion_1.5L,ppo,267,106.8,0.7329673767089844,0.32417938113212585,0.9133948683738708,0.6224744319915771,1.1178913116455078,0.515326976776123,0.002252211794257164,-0.0008964914595708251,0.002620695624500513,0.00025834343978203833,0.0024390548933297396,-3.302757613710128e-05,0.5969294309616089,0.43567371368408203,0.44832050800323486,0.005969294309616089,0.00435673713684082,0.0044832050800323485,0.008196236565709114,0.000935496820602566,267 +illusion_1.5L,ppo,268,107.2,0.665363073348999,0.21972183883190155,0.8677446842193604,0.6513393521308899,1.1881310939788818,0.5665315389633179,0.00222757481969893,-0.0011888695880770683,0.00259867450222373,-4.435142545844428e-05,0.002505409996956587,-0.00044802442425861955,0.6857279539108276,0.33716535568237305,0.370347261428833,0.006857279539108276,0.0033716535568237304,0.00370347261428833,0.00811728835105896,-0.00030141021125018597,268 +illusion_1.5L,ppo,269,107.6,0.5910658836364746,0.08717634528875351,0.7803677320480347,0.6349753141403198,1.280684232711792,0.6149272322654724,0.002183333272114396,-0.00145963195245713,0.0025373816024512053,-0.0002195203851442784,0.0025643762201070786,-0.0008607679628767073,0.7761920094490051,0.5761804580688477,0.4998269081115723,0.0077619200944900515,0.005761804580688477,0.004998269081115723,0.00829890463501215,-0.0015130521496757865,269 +illusion_1.5L,ppo,270,108.0,0.5385100245475769,-0.053859610110521317,0.6651742458343506,0.4783395826816559,1.374220609664917,0.5993655920028687,0.002106007421389222,-0.0016891780542209744,0.002581095090135932,-0.00039048600592650473,0.0026238574646413326,-0.0012886531185358763,0.8143571615219115,0.880573272705078,0.6527942419052124,0.008143571615219116,0.00880573272705078,0.006527942419052124,0.008303137496113777,-0.002624597167596221,270 +illusion_1.5L,ppo,271,108.4,0.548936128616333,-0.15709306299686432,0.5680890083312988,0.1593477874994278,1.3982653617858887,0.42888393998146057,0.002032608725130558,-0.0018623017240315676,0.002672947244718671,-0.0005241776234470308,0.0026760129258036613,-0.0016576042398810387,0.7756946086883545,0.8918139934539795,0.5946838855743408,0.007756946086883545,0.008918139934539795,0.005946838855743409,0.008214408531785011,-0.0035674641840159893,271 +illusion_1.5L,ppo,272,108.8,0.6283383965492249,-0.19320575892925262,0.5200421810150146,-0.2229689061641693,1.3481067419052124,0.15898358821868896,0.0019484938820824027,-0.001840003882534802,0.002721467986702919,-0.0006304785492829978,0.0027008922770619392,-0.0019282494904473424,0.29951193928718567,0.8630492687225343,0.6326990127563477,0.0029951193928718567,0.008630492687225343,0.0063269901275634765,0.0083629060536623,-0.004283796530216932,272 +illusion_1.5L,ppo,273,109.2,0.7208951711654663,-0.20461933314800262,0.5333857536315918,-0.5566344261169434,1.2290904521942139,-0.17790795862674713,0.0018818086246028543,-0.0016067087417468429,0.0026891324669122696,-0.0006810908089391887,0.0026892265304923058,-0.0021076572593301535,-0.06976175308227539,0.6509699821472168,0.64925217628479,-0.0006976175308227539,0.006509699821472168,0.0064925217628479005,0.00848082173615694,-0.00473026093095541,273 +illusion_1.5L,ppo,274,109.6,0.7878785133361816,-0.23967665433883667,0.619924008846283,-0.7104660868644714,1.0551481246948242,-0.5425741672515869,0.0018707906128838658,-0.0013042544014751911,0.0025698752142488956,-0.0006351210176944733,0.0026175968814641237,-0.0021934164687991142,-0.13728725910186768,0.3136861324310303,0.566563606262207,-0.0013728725910186767,0.003136861324310303,0.005665636062622071,0.008707493543624878,-0.004880912136286497,274 +illusion_1.5L,ppo,275,110.0,0.8408205509185791,-0.2879136800765991,0.749603271484375,-0.6438419222831726,0.9346592426300049,-0.7205761075019836,0.0019049090333282948,-0.0009793792851269245,0.0024302799720317125,-0.0005262037157081068,0.002493765205144882,-0.00217052991501987,-0.23345953226089478,0.09262347221374512,0.43763041496276855,-0.002334595322608948,0.0009262347221374511,0.004376304149627685,0.008908077143132687,-0.004728920757770538,275 +illusion_1.5L,ppo,276,110.4,0.8913697600364685,-0.33216819167137146,0.8385277390480042,-0.5780102014541626,0.9313246011734009,-0.6321504712104797,0.0019506794633343816,-0.0007447475800290704,0.0023224910255521536,-0.00037616692134179175,0.0024136919528245926,-0.0019561341032385826,0.03588256239891052,-0.18659019470214844,0.08362102508544922,0.00035882562398910524,-0.0018659019470214843,0.0008362102508544922,0.00870131142437458,-0.004287036135792732,276 +illusion_1.5L,ppo,277,110.8,0.9411400556564331,-0.37139949202537537,0.8869900703430176,-0.5637447237968445,0.9498490691184998,-0.5186812877655029,0.0019554251339286566,-0.000664259132463485,0.002266940427944064,-0.00017737160669639707,0.0024552089162170887,-0.001531829359009862,0.3642299473285675,-0.3925516605377197,-0.2523982524871826,0.0036422994732856753,-0.003925516605377198,-0.0025239825248718263,0.008512722328305244,-0.003586746985092759,277 +illusion_1.5L,ppo,278,111.2,0.9904877543449402,-0.40902984142303467,0.9145649671554565,-0.5658133029937744,0.9325798749923706,-0.4610527455806732,0.0019710157066583633,-0.0004924224922433496,0.0022755598183721304,7.071248091961024e-06,0.0025581386871635914,-0.0010477451141923666,-0.07691660523414612,-0.2180954217910767,-0.24569559097290036,-0.0007691660523414612,-0.002180954217910767,-0.0024569559097290038,0.008403330110013485,-0.002676178002730012,278 +illusion_1.5L,ppo,279,111.6,1.0420070886611938,-0.44857919216156006,0.9250888228416443,-0.5792564153671265,0.892229437828064,-0.4159127175807953,0.0020226275082677603,-0.00013407107326202095,0.0023236004635691643,0.00023909317678771913,0.002667094115167856,-0.0005299823824316263,-0.46609628200531,-0.2058160305023193,-0.32314300537109375,-0.0046609628200531,-0.002058160305023193,-0.0032314300537109376,0.008277405984699726,-0.001616867259144783,279 +illusion_1.5L,ppo,280,112.0,1.0999270677566528,-0.4928828179836273,0.9155706167221069,-0.6049809455871582,0.8366620540618896,-0.3582417368888855,0.0020457673817873,0.00020302963093854487,0.002381238155066967,0.0005812403396703303,0.0027403361164033413,-1.8562457626103424e-05,-0.3233989477157593,-0.3015556335449219,-0.43461155891418457,-0.003233989477157593,-0.0030155563354492187,-0.004346115589141846,0.008384994231164455,-0.0004796259745489806,280 +illusion_1.5L,ppo,281,112.4,1.172072172164917,-0.5429344773292542,0.8777884840965271,-0.6366843581199646,0.7678588628768921,-0.27507495880126953,0.0020283462945371866,0.00044750527013093233,0.002458747709169984,0.0008996535907499492,0.0027200186159461737,0.00032051309244707227,-0.28208106756210327,-0.20982527732849124,-0.38858699798583984,-0.0028208106756210326,-0.0020982527732849123,-0.0038858699798583985,0.008344382978975773,0.0006602332578040659,281 +illusion_1.5L,ppo,282,112.8,1.2662259340286255,-0.5897979140281677,0.80029296875,-0.6294395327568054,0.6925534605979919,-0.16042573750019073,0.00200548954308033,0.0006607771501876414,0.0025414431001991034,0.0011415828485041857,0.0026664321776479483,0.0005129548371769488,-0.39149707555770874,-0.3048064708709717,-0.5023510456085205,-0.003914970755577087,-0.003048064708709717,-0.005023510456085205,0.008156534284353256,0.0017279828898608685,282 +illusion_1.5L,ppo,283,113.2,1.3633017539978027,-0.5790181756019592,0.6965342164039612,-0.48132288455963135,0.6325672268867493,-0.025586893782019615,0.00196943455375731,0.0008513978100381792,0.0025781586300581694,0.0014042252441868186,0.0026714978739619255,0.0006633821758441627,-0.4504371881484986,-0.5454741716384888,-0.678062915802002,-0.004504371881484986,-0.005454741716384888,-0.00678062915802002,0.008226209320127964,0.002654529409483075,283 +illusion_1.5L,ppo,284,113.6,1.3973406553268433,-0.4283267855644226,0.6119127869606018,-0.1620316058397293,0.6207614541053772,0.09239785373210907,0.001929083140566945,0.0010096527403220534,0.0025753993541002274,0.0016586300916969776,0.002696148818358779,0.0007464493974111974,-0.4506905674934387,-0.5517871379852295,-0.5945944786071777,-0.004506905674934387,-0.005517871379852295,-0.005945944786071778,0.008320114575326443,0.003381080459803343,284 +illusion_1.5L,ppo,285,114.0,1.340267300605774,-0.13644807040691376,0.5788604021072388,0.22215405106544495,0.6655665040016174,0.16420882940292358,0.0019045369699597359,0.0010115507757291198,0.0025630679447203875,0.001802732003852725,0.002654189709573984,0.0007352360407821834,-0.09988090395927429,-0.4723500013351441,-0.3980705738067627,-0.000998809039592743,-0.004723500013351441,-0.003980705738067627,0.00853065587580204,0.0038631048519164324,285 +illusion_1.5L,ppo,286,114.4,1.1970068216323853,0.2768639624118805,0.6112460494041443,0.5338181257247925,0.7308118939399719,0.212867870926857,0.001915444154292345,0.000785134150646627,0.002531476318836212,0.0018371858168393373,0.0025443793274462223,0.0006649092538282275,0.3591274321079254,-0.49271559715271,-0.27699995040893555,0.003591274321079254,-0.0049271559715271,-0.0027699995040893553,0.008803099393844604,0.004073311109095812,286 +illusion_1.5L,ppo,287,114.8,1.0605671405792236,0.5940660238265991,0.7006677985191345,0.6475026607513428,0.7906987071037292,0.26408082246780396,0.001983500085771084,0.0003975355648435652,0.0024566464126110077,0.001854436006397009,0.002448973013088107,0.0005557424738071859,0.6149418354034424,-0.5980979204177856,-0.21439552307128906,0.0061494183540344236,-0.005980979204177857,-0.0021439552307128905,0.008690337650477886,0.004003433044999838,287 +illusion_1.5L,ppo,288,115.2,1.008365273475647,0.6274977326393127,0.7971837520599365,0.6145460605621338,0.8469843864440918,0.31239232420921326,0.002065099775791168,9.053616668097675e-05,0.002334168180823326,0.0018221749924123287,0.0023810090497136116,0.0003861219447571784,0.33164340257644653,-0.3685014247894287,0.014434337615966795,0.0033164340257644653,-0.003685014247894287,0.00014434337615966796,0.008544675074517727,0.003664699150249362,288 +illusion_1.5L,ppo,289,115.6,0.9951707720756531,0.5479964017868042,0.8614760637283325,0.5852060914039612,0.9016684889793396,0.35374194383621216,0.0021039776038378477,-3.3000273106154054e-05,0.0022432547993957996,0.0016252652276307344,0.002322703367099166,0.00019213328778278083,-0.01776176691055298,0.08166027069091797,0.25884926319122314,-0.00017761766910552978,0.0008166027069091797,0.0025884926319122317,0.008495600894093513,0.0030869469046592712,289 +illusion_1.5L,ppo,290,116.0,0.9730340838432312,0.49362099170684814,0.9002768993377686,0.5764716267585754,0.9550039768218994,0.3907889425754547,0.002111652633175254,-0.0001859159383457154,0.0022739802952855825,0.001324398908764124,0.0023068867158144712,1.9115954273729585e-05,0.26535218954086304,0.25598692893981934,0.31006455421447754,0.0026535218954086303,0.0025598692893981936,0.0031006455421447757,0.008385095745325089,0.0023164439480751753,290 +illusion_1.5L,ppo,291,116.4,0.9387561678886414,0.4536503255367279,0.9205199480056763,0.5815297365188599,1.0081062316894531,0.4270803928375244,0.0021252064034342766,-0.0004933216259814799,0.0024284946266561747,0.0009304654086008668,0.002335507655516267,-0.00024008229956962168,0.630729079246521,0.4168431758880616,0.44238436222076416,0.00630729079246521,0.004168431758880616,0.0044238436222076415,0.00847627129405737,0.001412564772181213,291 +illusion_1.5L,ppo,292,116.8,0.8927110433578491,0.40769073367118835,0.9233211278915405,0.6009775400161743,1.0643633604049683,0.4654313027858734,0.002133409958332777,-0.0008307323441840708,0.002587695140391588,0.00048029719619080424,0.002392043126747012,-0.0006066591595299542,0.6424282789230347,0.44317531585693354,0.47136270999908453,0.006424282789230347,0.004431753158569336,0.004713627099990845,0.008447900414466858,0.0004435561131685972,292 +illusion_1.5L,ppo,293,117.2,0.8317232728004456,0.34151485562324524,0.9048347473144531,0.634760320186615,1.1291255950927734,0.5075546503067017,0.002134657697752118,-0.0011179528664797544,0.002570569748058915,0.00017937627853825688,0.002467455342411995,-0.0009153828141279519,0.6070680022239685,0.17836713790893555,0.2298063039779663,0.006070680022239685,0.0017836713790893555,0.002298063039779663,0.008206440135836601,-0.0005183155299164355,293 +illusion_1.5L,ppo,294,117.6,0.7560928463935852,0.24331718683242798,0.8556854724884033,0.6637887358665466,1.2105131149291992,0.5518987774848938,0.002124242717400193,-0.0013008745154365897,0.0024261707440018654,1.9264178263256326e-05,0.0025379073340445757,-0.0010988159338012338,0.5042439699172974,0.23889827728271487,0.22606563568115237,0.005042439699172974,0.0023889827728271486,0.0022606563568115237,0.00820583663880825,-0.0014018918154761195,294 +illusion_1.5L,ppo,295,118.0,0.6775875091552734,0.11125391721725464,0.7707895040512085,0.6066448092460632,1.3102240562438965,0.5805405974388123,0.0020865860860794783,-0.0014233451802283525,0.002357984660193324,-0.00012837647227570415,0.002590550109744072,-0.0012327504809945822,0.5300931930541992,0.5333585739135742,0.4009486436843872,0.0053009319305419925,0.005333585739135742,0.004009486436843872,0.008266313932836056,-0.0021421664860099554,295 +illusion_1.5L,ppo,296,118.4,0.6287220120429993,-0.03014102391898632,0.67719566822052,0.37012627720832825,1.3890867233276367,0.5242825150489807,0.002047313842922449,-0.001552601926960051,0.0024038010742515326,-0.00027745531406253576,0.0026225263718515635,-0.001330588129349053,0.6513127088546753,0.6374735832214355,0.4028582572937011,0.006513127088546753,0.006374735832214356,0.004028582572937011,0.008429205976426601,-0.0026848914567381144,296 +illusion_1.5L,ppo,297,118.8,0.6428588628768921,-0.13412164151668549,0.6078468561172485,-0.0018834179500117898,1.3885122537612915,0.3303329050540924,0.0020160735584795475,-0.0015922607854008675,0.002463400596752763,-0.000395289360312745,0.0026393968146294355,-0.0013410948449745774,0.41223010420799255,0.5571112632751465,0.29622936248779297,0.004122301042079926,0.0055711126327514645,0.0029622936248779297,0.008723028935492039,-0.0029904174152761698,297 +illusion_1.5L,ppo,298,119.2,0.7049640417098999,-0.1917220503091812,0.5883124470710754,-0.3860417604446411,1.3004454374313354,0.011011677794158459,0.0020080311223864555,-0.0013863163767382503,0.002455694368109107,-0.0004440256452653557,0.002664846833795309,-0.001223600935190916,-0.1452922523021698,0.318218469619751,0.18848419189453125,-0.001452922523021698,0.00318218469619751,0.0018848419189453126,0.008667167276144028,-0.0030365013517439365,298 +illusion_1.5L,ppo,299,119.6,0.771640419960022,-0.24100050330162048,0.6411032676696777,-0.6355172395706177,1.1333786249160767,-0.4017202854156494,0.002030550502240658,-0.0009622025536373258,0.002365834079682827,-0.0003677133936434984,0.00267944042570889,-0.0010261096758767962,-0.5068690776824951,-0.0016096830368041992,0.12760436534881592,-0.005068690776824951,-1.6096830368041992e-05,0.0012760436534881591,0.008530458435416222,-0.002819881308823824,299 +illusion_1.5L,ppo,300,120.0,0.8324225544929504,-0.29224327206611633,0.7452224493026733,-0.6626677513122559,1.003739356994629,-0.6448037028312683,0.0020615439862012863,-0.0004703792801592499,0.0022784657776355743,-0.000168523212778382,0.002648573834449053,-0.0008559469715692103,-0.5975887775421143,-0.2347569465637207,0.098940372467041,-0.005975887775421143,-0.002347569465637207,0.00098940372467041,0.008516530506312847,-0.00235650478862226,300 +illusion_1.5L,ppo,301,120.4,0.8921180963516235,-0.3359955847263336,0.8341279029846191,-0.6235132813453674,0.9705522656440735,-0.6129600405693054,0.0020524030551314354,-0.00015254042227752507,0.0022594595793634653,0.00012213770241942257,0.0026015029288828373,-0.000683776568621397,-0.16785350441932678,-0.5152460336685181,-0.17126917839050293,-0.0016785350441932678,-0.005152460336685181,-0.0017126917839050293,0.008421123959124088,-0.0016804002225399017,301 +illusion_1.5L,ppo,302,120.8,0.9507591724395752,-0.37139785289764404,0.8925517201423645,-0.6149465441703796,0.9544425010681152,-0.5336079597473145,0.0020023752003908157,-6.509535160148516e-05,0.0023072916083037853,0.0004527664859779179,0.002614838071167469,-0.000452891894383356,0.1866794228553772,-0.6670166254043579,-0.4975252151489258,0.001866794228553772,-0.0066701662540435795,-0.004975252151489258,0.008498861454427242,-0.0008412639726884663,302 +illusion_1.5L,ppo,303,121.2,1.00825834274292,-0.4013206958770752,0.9351834654808044,-0.6241363286972046,0.9136728048324585,-0.4907574951648712,0.0019691286142915487,0.00010107820708071813,0.0023800060153007507,0.00078842684160918,0.0027171573601663113,-0.000198435052880086,-0.2730514407157898,-0.5429093837738037,-0.6183211803436279,-0.002730514407157898,-0.005429093837738037,-0.006183211803436279,0.008499415591359138,9.906048217089847e-05,303 +illusion_1.5L,ppo,304,121.6,1.065601110458374,-0.42857691645622253,0.9681363701820374,-0.64459228515625,0.8530703186988831,-0.4527052342891693,0.001968874828889966,0.00044382066698744893,0.0024433741346001625,0.0011912655318155885,0.0028936981689184904,0.0001272657245863229,-0.6313946843147278,-0.5279884338378906,-0.7635231018066406,-0.006313946843147278,-0.005279884338378906,-0.007635231018066406,0.008235407061874866,0.0010709670605137944,304 +illusion_1.5L,ppo,305,122.0,1.1255574226379395,-0.45589762926101685,0.9904882907867432,-0.6676245331764221,0.7775045037269592,-0.3890972137451172,0.001962982350960374,0.0007641812553629279,0.0024940406437963247,0.0015906139742583036,0.003017134964466095,0.00047661864664405584,-0.5088241696357727,-0.38939177989959717,-0.7336359024047852,-0.005088241696357727,-0.0038939177989959716,-0.007336359024047852,0.008183185011148453,0.0020020240917801857,305 +illusion_1.5L,ppo,306,122.4,1.1922250986099243,-0.4857000410556793,0.9894029498100281,-0.663597583770752,0.6947492361068726,-0.2762468457221985,0.0019546765834093094,0.000966372259426862,0.002579214982688427,0.0017486936412751675,0.0029640239663422108,0.0007244825828820467,-0.36975914239883423,-0.08893227577209473,-0.5425763130187988,-0.0036975914239883423,-0.0008893227577209473,-0.005425763130187988,0.008230230771005154,0.002822116483002901,306 +illusion_1.5L,ppo,307,122.8,1.2713580131530762,-0.5166144371032715,0.9434055089950562,-0.5639296770095825,0.6238150596618652,-0.11110785603523254,0.001965372124686837,0.0010312719969078898,0.002686883555725217,0.0016700157430022955,0.002833867445588112,0.0009081027819775045,-0.2032076120376587,-0.1468818187713623,-0.6006989479064941,-0.002032076120376587,-0.001468818187713623,-0.006006989479064941,0.008360556326806545,0.0034684324637055397,307 +illusion_1.5L,ppo,308,123.2,1.3516916036605835,-0.5130075216293335,0.8525630235671997,-0.30243706703186035,0.5945634245872498,0.06880918145179749,0.0019667153246700764,0.000998582225292921,0.0027273690793663263,0.001565341604873538,0.002762496704235673,0.0010642939014360309,-0.14247968792915344,-0.35026347637176514,-0.7160677909851074,-0.0014247968792915344,-0.0035026347637176513,-0.0071606779098510745,0.008675433695316315,0.003889942541718483,308 +illusion_1.5L,ppo,309,123.6,1.3562358617782593,-0.34889012575149536,0.755907416343689,0.09257832169532776,0.6318492293357849,0.19484806060791016,0.001970757730305195,0.0009655795292928815,0.0027062639128416777,0.0014662123285233974,0.0027395004872232676,0.0011367033002898097,-0.23771873116493225,-0.2836723327636719,-0.5705409049987793,-0.0023771873116493225,-0.0028367233276367187,-0.005705409049987793,0.008685079403221607,0.004051059018820524,309 +illusion_1.5L,ppo,310,124.0,1.231503963470459,0.006344431545585394,0.7092829942703247,0.4689934551715851,0.7121860980987549,0.2531934976577759,0.0019927623216062784,0.0008143955492414534,0.002669745124876499,0.0013451623963192105,0.002699235687032342,0.0011003076797351241,0.13035008311271667,-0.22608017921447754,-0.3164668083190918,0.0013035008311271668,-0.0022608017921447753,-0.003164668083190918,0.00856055412441492,0.003934219013899565,310 +illusion_1.5L,ppo,311,124.4,1.0492033958435059,0.3772211968898773,0.7459932565689087,0.6246130466461182,0.7895300388336182,0.2967865467071533,0.0020656336564570665,0.00038933809264563024,0.002626607660204172,0.0012212184956297278,0.0026114366482943296,0.0009382606949657202,0.7473726868629456,-0.2576427459716797,-0.05801820755004883,0.007473726868629456,-0.002576427459716797,-0.0005801820755004883,0.008574451319873333,0.0035412150900810957,311 +illusion_1.5L,ppo,312,124.8,0.9320959448814392,0.5504003167152405,0.8163478374481201,0.6103194355964661,0.8570440411567688,0.3400965631008148,0.002179377479478717,-0.00011368156265234575,0.002566674957051873,0.0010770916705951095,0.0024968483485281467,0.0006273627514019608,0.7690414786338806,-0.14427685737609863,0.23837661743164062,0.007690414786338806,-0.0014427685737609863,0.002383766174316406,0.008493040688335896,0.0028931754641234875,312 +illusion_1.5L,ppo,313,125.2,0.9124120473861694,0.524702787399292,0.8682319521903992,0.5973952412605286,0.9203768372535706,0.3771999478340149,0.002229803940281272,-0.000431180844316259,0.0024884967133402824,0.0008791752625256777,0.0024198945611715317,0.00020228321955073625,0.3619178831577301,0.1629023551940918,0.53957200050354,0.003619178831577301,0.001629023551940918,0.005395720005035401,0.008542587049305439,0.0020292061381042004,313 +illusion_1.5L,ppo,314,125.6,0.9014720320701599,0.4758540093898773,0.9031630158424377,0.6090372204780579,0.9818156361579895,0.4087584614753723,0.0021911230869591236,-0.0006037908606231213,0.002437866060063243,0.0006702161626890302,0.002422950929030776,-0.00025302308495156467,0.2697850465774536,0.40786314010620117,0.6726815700531006,0.002697850465774536,0.004078631401062012,0.006726815700531006,0.008553043939173222,0.0010037844767794013,314 +illusion_1.5L,ppo,315,126.0,0.8652346730232239,0.44580376148223877,0.928730845451355,0.6382114291191101,1.043092966079712,0.43650972843170166,0.002136011142283678,-0.0008541095303371549,0.002484045224264264,0.0004873374127782881,0.0024924397002905607,-0.0007516039186157286,0.657258927822113,0.5033016204833984,0.6895595788955688,0.00657258927822113,0.005033016204833984,0.006895595788955689,0.008254999294877052,-0.00011690740939229727,315 +illusion_1.5L,ppo,316,126.4,0.8079016208648682,0.41305312514305115,0.948538064956665,0.6809427738189697,1.1067713499069214,0.4613446891307831,0.0020967237651348114,-0.0011936663649976254,0.0026244204491376877,0.0002478254318702966,0.0025781886652112007,-0.001332953223027289,0.8643451333045961,0.6820416450500488,0.755753755569458,0.00864345133304596,0.006820416450500489,0.00755753755569458,0.008126122877001762,-0.0012594565050676465,316 +illusion_1.5L,ppo,317,126.8,0.7337232232093811,0.3540046811103821,0.9584535360336304,0.7139241099357605,1.1752070188522339,0.4835798740386963,0.002065467182546854,-0.001513230032287538,0.002726559294387698,-1.5713516404503025e-05,0.002652494702488184,-0.0018609320977702737,0.8703035712242125,0.6662542819976807,0.614220380783081,0.008703035712242126,0.0066625428199768065,0.006142203807830811,0.008139083161950111,-0.0023481876123696566,317 +illusion_1.5L,ppo,318,127.2,0.6543556451797485,0.24681253731250763,0.9421703219413757,0.6709651350975037,1.251318097114563,0.5023323893547058,0.002054925076663494,-0.0017817859770730138,0.002677914220839739,-0.00022445911599788815,0.002721491502597928,-0.0021365294232964516,0.8658362627029419,0.5501136779785156,0.3740086555480957,0.008658362627029419,0.005501136779785156,0.003740086555480957,0.008225912228226662,-0.0033102850429713726,318 +illusion_1.5L,ppo,319,127.6,0.5926757454872131,0.0888013169169426,0.8858826160430908,0.4818718731403351,1.3331842422485352,0.508752167224884,0.0020396574400365353,-0.0019399981247261167,0.002590667689219117,-0.0004366383654996753,0.0027811492327600718,-0.0021779879461973906,0.680719792842865,0.739870548248291,0.43535494804382324,0.00680719792842865,0.007398705482482911,0.0043535494804382326,0.008550929836928844,-0.004080713726580143,319 +illusion_1.5L,ppo,320,128.0,0.5771224498748779,-0.08409503102302551,0.802284300327301,0.14681711792945862,1.3877142667770386,0.45262327790260315,0.001996678300201893,-0.0019763584714382887,0.002581749577075243,-0.0006435831892304122,0.002820000285282731,-0.002108704298734665,0.5246120691299438,0.8654069900512695,0.5102264881134033,0.005246120691299439,0.008654069900512696,0.005102264881134033,0.008641579188406467,-0.004606609698385,320 +illusion_1.5L,ppo,321,128.4,0.6253345012664795,-0.20923736691474915,0.730631411075592,-0.26483476161956787,1.334791660308838,0.23168498277664185,0.00196466944180429,-0.001906003337353468,0.00260296743363142,-0.0007820872706361115,0.0028298040851950645,-0.001965933945029974,0.3622410297393799,0.7393333911895752,0.4354169368743896,0.0036224102973937988,0.007393333911895752,0.004354169368743896,0.008560840971767902,-0.004850836470723152,321 +illusion_1.5L,ppo,322,128.8,0.7111037373542786,-0.2749147415161133,0.7193791270256042,-0.5820849537849426,1.16457200050354,-0.1386798471212387,0.0019668140448629856,-0.0016136356862261891,0.002605907851830125,-0.0008549003978259861,0.0028052018024027348,-0.0017958208918571472,-0.18279436230659485,0.5783658027648926,0.44754016399383545,-0.0018279436230659485,0.005783658027648926,0.004475401639938354,0.008636081591248512,-0.004794478416442871,322 +illusion_1.5L,ppo,323,129.2,0.793525218963623,-0.3255923390388489,0.7696208357810974,-0.6700347065925598,0.9837743639945984,-0.4544966518878937,0.0020269956439733505,-0.0011082253186032176,0.0025474911089986563,-0.0008069827454164624,0.0027518686838448048,-0.0016004975186660886,-0.5711618065834045,0.2047257423400879,0.33238542079925537,-0.005711618065834046,0.002047257423400879,0.003323854207992554,0.008616222999989986,-0.004438104573637247,323 +illusion_1.5L,ppo,324,129.6,0.8674682378768921,-0.3719812035560608,0.8294533491134644,-0.646594226360321,0.9050646424293518,-0.5430793166160583,0.0020882945973426104,-0.0006626656395383179,0.002432896289974451,-0.0005901409895159304,0.0026927588041871786,-0.0013152662431821227,-0.29037946462631226,-0.270719051361084,0.023485541343688965,-0.002903794646263123,-0.00270719051361084,0.00023485541343688966,0.008672966621816158,-0.0038017285987734795,324 +illusion_1.5L,ppo,325,130.0,0.9379076957702637,-0.4107452630996704,0.8713048696517944,-0.6449191570281982,0.8880094885826111,-0.5110026597976685,0.002075216732919216,-0.00042849124292843044,0.0023682722821831703,-0.0002712704590521753,0.0026594840455800295,-0.000972225796431303,0.10143885016441347,-0.5080089569091797,-0.23043656349182132,0.0010143885016441346,-0.0050800895690917966,-0.002304365634918213,0.008711673319339752,-0.002923475345596671,325 +illusion_1.5L,ppo,326,130.4,1.0073684453964233,-0.44331416487693787,0.901467502117157,-0.6705334186553955,0.8578612804412842,-0.4849531948566437,0.0020434847101569176,-0.0002273597929161042,0.0023979535326361656,8.876359788700938e-05,0.0026959350798279047,-0.0006356381345540285,-0.08933553099632263,-0.547905445098877,-0.40566730499267584,-0.0008933553099632263,-0.0054790544509887695,-0.004056673049926758,0.008389359340071678,-0.001857058727182448,326 +illusion_1.5L,ppo,327,130.8,1.0788943767547607,-0.4709051847457886,0.9268357753753662,-0.7174482941627502,0.80381178855896,-0.4720184803009033,0.002037876518443227,0.00011737451859517023,0.002463460434228182,0.0005405850824899971,0.002827538875862956,-0.0002623609034344554,-0.511663556098938,-0.5932081937789917,-0.5944204330444336,-0.00511663556098938,-0.005932081937789917,-0.005944204330444336,0.008158615790307522,-0.0006682443199679255,327 +illusion_1.5L,ppo,328,131.2,1.1554245948791504,-0.49337294697761536,0.9489797949790955,-0.77396559715271,0.7299804091453552,-0.45116034150123596,0.0020301705226302147,0.0005250500398688018,0.002526715397834778,0.0010891619604080915,0.0029743283521384,0.00013991260493639857,-0.6248717308044434,-0.5765507221221924,-0.684523344039917,-0.006248717308044434,-0.005765507221221924,-0.00684523344039917,0.00808980967849493,0.0005694532301276922,328 +illusion_1.5L,ppo,329,131.6,1.240602970123291,-0.5090605020523071,0.9587655067443848,-0.7873126268386841,0.6420625448226929,-0.3963184654712677,0.002011760836467147,0.0008762740180827677,0.002594385063275695,0.00155680684838444,0.002995563205331564,0.00043831029324792325,-0.5867999196052551,-0.3627433776855469,-0.5804002285003662,-0.005867999196052551,-0.0036274337768554686,-0.005804002285003662,0.00807673204690218,0.0017795475432649255,329 +illusion_1.5L,ppo,330,132.0,1.3360460996627808,-0.5114039778709412,0.9389618635177612,-0.6738354563713074,0.5573924779891968,-0.28145697712898254,0.001990729942917824,0.0011259432649239898,0.002666841959580779,0.0018036890542134643,0.0028783446177840233,0.0006217074114829302,-0.5043418407440186,-0.2674226760864258,-0.5607049465179443,-0.005043418407440186,-0.002674226760864258,-0.005607049465179444,0.008341887965798378,0.002887511160224676,330 +illusion_1.5L,ppo,331,132.4,1.4252864122390747,-0.4700450897216797,0.8886439800262451,-0.4092177450656891,0.5035464763641357,-0.10601910948753357,0.00195669406093657,0.0012373044155538082,0.0027215806767344475,0.0019451266853138804,0.002788817510008812,0.0007934051100164652,-0.3369256258010864,-0.5231709480285645,-0.7825822830200194,-0.003369256258010864,-0.005231709480285645,-0.007825822830200195,0.008465869352221489,0.003825533203780651,331 +illusion_1.5L,ppo,332,132.8,1.4402759075164795,-0.305021196603775,0.8319844007492065,-0.005345595069229603,0.5020200610160828,0.09171546995639801,0.001920257112942636,0.001262980978935957,0.002731419401243329,0.002082382095977664,0.002794483210891485,0.0009472985402680933,-0.31630939245224,-0.6460864543914795,-0.8585777282714844,-0.0031630939245224,-0.006460864543914795,-0.008585777282714844,0.008411048911511898,0.0045367949642241,332 +illusion_1.5L,ppo,333,133.2,1.3266024589538574,0.011108368635177612,0.8128738403320312,0.421782910823822,0.5600444674491882,0.24779599905014038,0.0019100536592304707,0.0012109157396480441,0.0027028692420572042,0.0021470212377607822,0.0028040576726198196,0.0010277745313942432,-0.14773640036582947,-0.5155949592590332,-0.6924998760223389,-0.0014773640036582947,-0.005155949592590332,-0.0069249987602233885,0.008551978506147861,0.0049789901822805405,333 +illusion_1.5L,ppo,334,133.6,1.1490423679351807,0.32086580991744995,0.8411828875541687,0.6677489280700684,0.6629959344863892,0.31654688715934753,0.0019604628905653954,0.0009254318429157138,0.0026560912374407053,0.0021254050079733133,0.0027804591227322817,0.0010813215048983693,0.4367019236087799,-0.5343097448348999,-0.598200798034668,0.004367019236087799,-0.005343097448348999,-0.00598200798034668,0.008640555664896965,0.005126874428242445,334 +illusion_1.5L,ppo,335,134.0,1.0323125123977661,0.43904364109039307,0.885680615901947,0.6722990274429321,0.7653195858001709,0.3437498211860657,0.0020840754732489586,0.0005206771311350167,0.0025994142051786184,0.0019768255297094584,0.002708219224587083,0.001083885319530964,0.5167065858840942,-0.3581421375274658,-0.37257933616638184,0.005167065858840942,-0.003581421375274658,-0.0037257933616638185,0.00877284724265337,0.004973690956830978,335 +illusion_1.5L,ppo,336,134.4,0.9949187636375427,0.41630569100379944,0.9182860851287842,0.6036921143531799,0.846587061882019,0.3742770254611969,0.0021732694003731012,0.000268301839241758,0.002543335547670722,0.0016493407310917974,0.002599934581667185,0.0009999613976106048,0.044985488057136536,-0.01152026653289795,-0.07444643974304199,0.00044985488057136536,-0.00011520266532897949,-0.00074446439743042,0.008914750069379807,0.004531398881226778,336 +illusion_1.5L,ppo,337,134.8,0.9716069102287292,0.38567307591438293,0.9357187747955322,0.5753973722457886,0.9147550463676453,0.40372955799102783,0.002202065195888281,0.00011436757631599903,0.00248429155908525,0.0013208338059484959,0.002534965518862009,0.0008997871773317456,0.04341334104537964,-6.4373016357421875e-06,-0.03518366813659668,0.0004341334104537964,-6.437301635742188e-08,-0.0003518366813659668,0.008651209995150566,0.0038297150749713182,337 +illusion_1.5L,ppo,338,135.2,0.9342924356460571,0.3751784563064575,0.9444006085395813,0.5772092342376709,0.9761584401130676,0.43139126896858215,0.0022153069730848074,-0.00013951094297226518,0.0024752672761678696,0.001019965740852058,0.002520125126466155,0.000699553289450705,0.41111612319946284,0.12497425079345703,0.14441406726837158,0.004111161231994629,0.0012497425079345704,0.0014441406726837158,0.008369920775294304,0.002914042677730322,338 +illusion_1.5L,ppo,339,135.6,0.8846806883811951,0.3712700605392456,0.9469345808029175,0.5994846224784851,1.0348819494247437,0.45981353521347046,0.002222997136414051,-0.00047793734120205045,0.0025886371731758118,0.0006090502138249576,0.002528861863538623,0.00028824424953199923,0.5643935799598694,0.4246234893798828,0.462704062461853,0.005643935799598694,0.004246234893798828,0.00462704062461853,0.00823057908564806,0.0018424494192004204,339 +illusion_1.5L,ppo,340,136.0,0.824719250202179,0.36242538690567017,0.9432842135429382,0.640134871006012,1.0954229831695557,0.4907985329627991,0.002221839502453804,-0.0008383451495319605,0.0026799356564879417,0.00023866085393819958,0.002559739165008068,-0.00021604813809972256,0.6788209676742554,0.3376145362854004,0.4264150857925415,0.006788209676742554,0.003376145362854004,0.004264150857925415,0.008093336597084999,0.0006818966940045357,340 +illusion_1.5L,ppo,341,136.4,0.7538223266601562,0.33603206276893616,0.9292019605636597,0.6921252608299255,1.1626660823822021,0.5255037546157837,0.0022065206430852413,-0.0011697130976244807,0.0026272202376276255,3.409918645047583e-05,0.002596911508589983,-0.0006828270270489156,0.7183170318603516,0.2839484214782715,0.36883544921875,0.007183170318603516,0.002839484214782715,0.0036883544921875,0.008223836310207844,-0.0004960204241797328,341 +illusion_1.5L,ppo,342,136.8,0.6754637956619263,0.27560585737228394,0.8935204148292542,0.7153856754302979,1.2431036233901978,0.5635350942611694,0.0021686505060642958,-0.0014159763231873512,0.0025492971763014793,-0.00012282772513572127,0.0026374291628599167,-0.0011005866108462214,0.6739851832389832,0.5395569801330566,0.5290035009384155,0.006739851832389831,0.005395569801330566,0.005290035009384155,0.008288096636533737,-0.0016195487696677446,342 +illusion_1.5L,ppo,343,137.2,0.6022560596466064,0.16846174001693726,0.8276228904724121,0.6149269342422485,1.3384345769882202,0.5909072756767273,0.0021135418210178614,-0.0016399109736084938,0.0025491779670119286,-0.00027427866007201374,0.0026846081018447876,-0.0014578162226825953,0.8138754963874817,0.7088031768798828,0.5936431884765625,0.008138754963874817,0.007088031768798828,0.005936431884765625,0.008168513886630535,-0.0026211808435618877,343 +illusion_1.5L,ppo,344,137.6,0.5565841794013977,0.0219986941665411,0.748538613319397,0.34318313002586365,1.407851219177246,0.5263080596923828,0.002068217610940337,-0.001857270603068173,0.0025992586743086576,-0.0004153712361585349,0.0027195634320378304,-0.0017220871523022652,0.8670107722282409,0.7796669006347656,0.561663031578064,0.008670107722282409,0.007796669006347657,0.0056166303157806395,0.008290053345263004,-0.003441715380176902,344 +illusion_1.5L,ppo,345,138.0,0.5641681551933289,-0.12327402830123901,0.6835447549819946,-0.04122684895992279,1.384384274482727,0.2683791220188141,0.0020210815127938986,-0.0019231000915169716,0.0026545159053057432,-0.0005553431692533195,0.002746423240751028,-0.0018523308681324124,0.5006347894668579,0.792431116104126,0.5174896717071533,0.005006347894668579,0.00792431116104126,0.005174896717071533,0.008446116000413895,-0.004033731762319803,345 +illusion_1.5L,ppo,346,138.4,0.6324859857559204,-0.21653275191783905,0.66535484790802,-0.4386812150478363,1.2769062519073486,-0.1495712697505951,0.001981607172638178,-0.0017011156305670738,0.0026709965895861387,-0.0006737175863236189,0.002762802178040147,-0.0018562963232398033,-0.12455570697784424,0.7188630104064941,0.513827919960022,-0.0012455570697784424,0.007188630104064941,0.00513827919960022,0.00865935068577528,-0.004364273976534605,346 +illusion_1.5L,ppo,347,138.8,0.7234839797019958,-0.2685208022594452,0.7121870517730713,-0.6840088367462158,1.1489894390106201,-0.5247640013694763,0.0019752581138163805,-0.001269868458621204,0.0026113372296094894,-0.0006982150953263044,0.0027296552434563637,-0.0018037748523056507,-0.4508982300758362,0.45531320571899414,0.4829851388931275,-0.004508982300758362,0.004553132057189942,0.004829851388931275,0.00895126722753048,-0.004416606388986111,347 +illusion_1.5L,ppo,348,139.2,0.8031710982322693,-0.3182288110256195,0.7936552166938782,-0.6992443203926086,1.0762684345245361,-0.6144476532936096,0.001995042897760868,-0.000894614146091044,0.002494746120646596,-0.0005679451860487461,0.002646323526278138,-0.0016916757449507713,-0.18432873487472534,-0.0041544437408447266,0.25493526458740234,-0.0018432873487472534,-4.1544437408447266e-05,0.0025493526458740235,0.008846367709338665,-0.004190945997834206,348 +illusion_1.5L,ppo,349,139.6,0.8742499351501465,-0.3643542528152466,0.8599767088890076,-0.649088978767395,1.0384747982025146,-0.5462508201599121,0.0019845359493047,-0.0007423576898872852,0.0023984627332538366,-0.0003603023651521653,0.0025703259743750095,-0.0014745817752555013,0.29688823223114014,-0.28394174575805664,-0.03384518623352051,0.0029688823223114015,-0.0028394174575805666,-0.00033845186233520506,0.0086283003911376,-0.0037041637115180492,349 +illusion_1.5L,ppo,350,140.0,0.9417346715927124,-0.40322789549827576,0.9008582234382629,-0.6344732046127319,0.9962359070777893,-0.4969148337841034,0.0019784041214734316,-0.0006315010250546038,0.0023665453772991896,-0.00018791395996231586,0.002555448329076171,-0.0011857501231133938,0.13902647793293,-0.24360144138336182,-0.1627635955810547,0.0013902647793292999,-0.002436014413833618,-0.001627635955810547,0.00852078478783369,-0.002988493302837014,350 +illusion_1.5L,ppo,351,140.4,1.0084261894226074,-0.4376484751701355,0.926079273223877,-0.6461873054504395,0.9447688460350037,-0.4725116789340973,0.002010572934523225,-0.00035023409873247147,0.0023688646033406258,3.614033630583435e-05,0.0026425712276250124,-0.0007811456453055143,-0.32803797721862793,-0.3218402862548828,-0.3557562828063965,-0.0032803797721862793,-0.0032184028625488284,-0.003557562828063965,0.008339837193489075,-0.0020893490873277187,351 +illusion_1.5L,ppo,352,140.8,1.077573537826538,-0.4699171781539917,0.9401648044586182,-0.6797890663146973,0.8841516971588135,-0.45017239451408386,0.002049329923465848,3.197284968337044e-05,0.002381624188274145,0.0003896135895047337,0.0027720979414880276,-0.0002699563337955624,-0.4536768198013305,-0.39750099182128906,-0.47771120071411133,-0.0045367681980133055,-0.003975009918212891,-0.004777112007141113,0.008356091566383839,-0.001062412979081273,352 +illusion_1.5L,ppo,353,141.2,1.1540488004684448,-0.5008699893951416,0.9427366852760315,-0.7284362316131592,0.8109763860702515,-0.41230490803718567,0.002050008624792099,0.0003699805529322475,0.0024227953981608152,0.0007524568354710937,0.0027996301651000977,0.0001386801595799625,-0.3939249515533447,-0.247918963432312,-0.3705902099609375,-0.003939249515533447,-0.00247918963432312,-0.003705902099609375,0.00832816120237112,2.9825627279933542e-05,353 +illusion_1.5L,ppo,354,141.6,1.2440552711486816,-0.5288188457489014,0.9246494770050049,-0.7446883916854858,0.7263101935386658,-0.33694931864738464,0.0020274699199944735,0.0006223004893399775,0.002497427398338914,0.001037740265019238,0.0027310329023748636,0.00038331892574205995,-0.3564556837081909,-0.26623082160949707,-0.4095962047576904,-0.0035645568370819094,-0.002662308216094971,-0.004095962047576904,0.008069791831076145,0.0011218518484383821,354 +illusion_1.5L,ppo,355,142.0,1.3496562242507935,-0.5396162271499634,0.8767746090888977,-0.6183429956436157,0.644517719745636,-0.20601260662078857,0.001990017481148243,0.0008121172431856394,0.0025529933627694845,0.0013085290556773543,0.002690279157832265,0.0005562560982070863,-0.3963428735733032,-0.49705100059509283,-0.6289467811584473,-0.003963428735733032,-0.004970510005950928,-0.006289467811584473,0.008051803335547447,0.002149005187675357,355 +illusion_1.5L,ppo,356,142.4,1.4336072206497192,-0.4677678346633911,0.8124058246612549,-0.30784550309181213,0.5923376679420471,-0.029373491182923317,0.001945236581377685,0.0010015226434916258,0.0025666060391813517,0.0015896379482001066,0.002720411168411374,0.0006892289384268224,-0.530899703502655,-0.5866354703903198,-0.7305850982666016,-0.00530899703502655,-0.005866354703903199,-0.007305850982666015,0.008151903748512268,0.0030512260273098946,356 +illusion_1.5L,ppo,357,142.8,1.4162850379943848,-0.21826177835464478,0.761945366859436,0.11642252653837204,0.5985603332519531,0.13910798728466034,0.001912396401166916,0.001127201016061008,0.0025593701284378767,0.0018103820038959384,0.002755889669060707,0.0007704129093326628,-0.39575970172882086,-0.526272177696228,-0.6703829765319824,-0.003957597017288208,-0.005262721776962281,-0.0067038297653198246,0.00834288913756609,0.0037764590233564377,357 +illusion_1.5L,ppo,358,143.2,1.278372049331665,0.18057644367218018,0.7653326392173767,0.5050899982452393,0.6663573980331421,0.2399905025959015,0.0018906518816947937,0.0010162191465497017,0.002537895692512393,0.001937676570378244,0.0027358343359082937,0.0008115917444229126,0.16006016731262207,-0.5550175905227661,-0.5863409042358398,0.0016006016731262207,-0.005550175905227661,-0.005863409042358399,0.008715752512216568,0.004283526912331581,358 +illusion_1.5L,ppo,359,143.6,1.1262636184692383,0.4710720181465149,0.8238785266876221,0.6642628312110901,0.753642201423645,0.29062825441360474,0.0019298637052997947,0.0006731926696375012,0.002486206591129303,0.002017070073634386,0.002678906312212348,0.0008182435412891209,0.5604903697967529,-0.6551252603530884,-0.5218350887298584,0.00560490369796753,-0.006551252603530884,-0.0052183508872985845,0.00877283327281475,0.004544325638562441,359 +illusion_1.5L,ppo,360,144.0,1.0588923692703247,0.5075016617774963,0.8915581703186035,0.6305902600288391,0.8308878540992737,0.32943809032440186,0.002010456519201398,0.0003870182845275849,0.0023854554165154696,0.002013834659010172,0.0026066068094223738,0.0007700493442825973,0.22963157296180728,-0.46265077590942383,-0.34816503524780273,0.0022963157296180727,-0.004626507759094238,-0.0034816503524780274,0.008680131286382675,0.004545234143733978,360 +illusion_1.5L,ppo,361,144.4,1.030755877494812,0.46568936109542847,0.9398855566978455,0.5856821537017822,0.8979854583740234,0.3599788248538971,0.0020571397617459297,0.00031290194601751864,0.002271581906825304,0.001869087340310216,0.002531555248424411,0.0007132711471058428,-0.21059057116508484,-0.11718106269836426,-0.18025779724121094,-0.0021059057116508484,-0.0011718106269836426,-0.0018025779724121095,0.00870765931904316,0.00428768340498209,361 +illusion_1.5L,ppo,362,144.8,0.9982460141181946,0.4379533529281616,0.973050057888031,0.5657021999359131,0.9576793909072876,0.38391029834747314,0.002081045415252447,0.00021790392929688096,0.0022294779773801565,0.001642449526116252,0.002481074770912528,0.0006969284149818122,0.09025199711322784,0.00044894218444824224,-0.12820720672607422,0.0009025199711322785,4.489421844482422e-06,-0.0012820720672607423,0.008620945736765862,0.0037878667935729027,362 +illusion_1.5L,ppo,363,145.2,0.955373227596283,0.41332051157951355,0.9970266222953796,0.5615999102592468,1.0119564533233643,0.40483760833740234,0.002125863917171955,-5.590907676378265e-05,0.002334822667762637,0.001262536970898509,0.0024438113905489445,0.0005892131594009697,0.4875909090042115,0.2554497718811035,0.12551379203796387,0.004875909090042115,0.002554497718811035,0.0012551379203796387,0.008646907284855843,0.0030756364576518536,363 +illusion_1.5L,ppo,364,145.6,0.8992940783500671,0.37342819571495056,1.013907790184021,0.5694962739944458,1.0635565519332886,0.4255787134170532,0.002180995885282755,-0.00040660463855601847,0.002507054014131427,0.000724141311366111,0.0024167208466678858,0.0003293185727670789,0.5580323934555054,0.39579200744628906,0.30565834045410156,0.005580323934555054,0.003957920074462891,0.0030565834045410156,0.008617529645562172,0.0021926581393927336,364 +illusion_1.5L,ppo,365,146.0,0.8274362683296204,0.3010959029197693,1.0215392112731934,0.5846583247184753,1.1158876419067383,0.44830799102783203,0.002214741427451372,-0.0007460229098796844,0.002531281439587474,0.00032439405913464725,0.0024297109339386225,5.379092544899322e-05,0.6011860370635986,0.12201309204101562,0.12541329860687256,0.006011860370635986,0.0012201309204101563,0.0012541329860687256,0.008267231285572052,0.0011899459641426802,365 +illusion_1.5L,ppo,366,146.4,0.7467092871665955,0.18647731840610504,1.0102145671844482,0.5918391942977905,1.1741324663162231,0.47472548484802246,0.002221419708803296,-0.001009079278446734,0.00242496095597744,0.0001041531577357091,0.0024700546637177467,-0.00020401411165948957,0.5335994362831116,0.21399784088134763,0.1858912706375122,0.005335994362831116,0.0021399784088134764,0.0018589127063751221,0.008079802617430687,0.00012491656525526196,366 +illusion_1.5L,ppo,367,146.8,0.6823375821113586,0.04499746486544609,0.9592615365982056,0.5443924069404602,1.2450944185256958,0.5041419863700867,0.002176567679271102,-0.001196203287690878,0.0024009887129068375,-0.0001151372489403002,0.0025173360481858253,-0.0005158872809261084,0.5301249027252197,0.6609492301940918,0.4851990938186646,0.005301249027252197,0.006609492301940918,0.004851990938186646,0.008036432787775993,-0.0009418626432307065,367 +illusion_1.5L,ppo,368,147.2,0.6695711016654968,-0.07660384476184845,0.8566031455993652,0.3655279874801636,1.3306907415390015,0.5204752087593079,0.0021095143165439367,-0.0014168028719723225,0.002524166600778699,-0.000346248532878235,0.0025722552090883255,-0.0008751373970881104,0.7530813813209534,0.8781166076660155,0.5801377296447754,0.0075308138132095335,0.008781166076660156,0.005801377296447754,0.008079362101852894,-0.0019500593189150095,368 +illusion_1.5L,ppo,369,147.6,0.7097473740577698,-0.1497010588645935,0.7325170636177063,0.03464861214160919,1.3900609016418457,0.4512375593185425,0.002036068355664611,-0.0016162532847374678,0.002687657717615366,-0.0005406440468505025,0.0026168266776949167,-0.0012525151250883937,0.7312402129173279,0.9080252647399903,0.5945295095443726,0.007312402129173279,0.009080252647399903,0.005945295095443726,0.008383121341466904,-0.002842910820618272,369 +illusion_1.5L,ppo,370,148.0,0.7651622295379639,-0.19987761974334717,0.6499532461166382,-0.3383104205131531,1.3410526514053345,0.21774473786354065,0.0019541133660823107,-0.001668809331022203,0.0027589439414441586,-0.0006546367076225579,0.0026425153482705355,-0.0015719542279839516,0.4083138704299927,0.7248983383178711,0.5568023920059204,0.004083138704299927,0.0072489833831787115,0.005568023920059204,0.008482938632369041,-0.0035703328903764486,370 +illusion_1.5L,ppo,371,148.4,0.8163567185401917,-0.2494521588087082,0.6724757552146912,-0.5482873320579529,1.1686465740203857,-0.13325682282447815,0.001895739114843309,-0.0014936174266040325,0.002685355255380273,-0.0006817179382778704,0.002635809825733304,-0.0017813023878261447,-0.05624812841415406,0.5056872367858887,0.544556736946106,-0.0005624812841415406,0.005056872367858887,0.00544556736946106,0.008444554172456264,-0.00409164372831583,371 +illusion_1.5L,ppo,372,148.8,0.8658570051193237,-0.29525721073150635,0.7645979523658752,-0.5644384622573853,0.9503961205482483,-0.4615055024623871,0.001882182084955275,-0.0011648412328213453,0.0025504068471491337,-0.0006541617913171649,0.00257590739056468,-0.0019138359930366278,-0.30364835262298584,0.4190695285797119,0.5796304941177368,-0.0030364835262298583,0.004190695285797119,0.005796304941177368,0.00859114434570074,-0.004377763718366623,372 +illusion_1.5L,ppo,373,149.2,0.9153980016708374,-0.334107369184494,0.8405749797821045,-0.5533769726753235,0.8486804962158203,-0.566299557685852,0.0019039848120883107,-0.0008631692035123706,0.0024443920701742172,-0.000579817860852927,0.002466743579134345,-0.0019735118839889765,-0.16441354155540466,0.26724791526794434,0.46471714973449707,-0.0016441354155540466,0.0026724791526794435,0.004647171497344971,0.008660022169351578,-0.0044127777218818665,373 +illusion_1.5L,ppo,374,149.6,0.9643003344535828,-0.3671523928642273,0.8925304412841797,-0.5586263537406921,0.8542125225067139,-0.520062267780304,0.0019119535572826862,-0.0007549097645096481,0.0023639460559934378,-0.00045275624142959714,0.002360295271500945,-0.0018921166192740202,0.31448888778686523,-0.018841981887817383,0.16261494159698486,0.0031448888778686525,-0.00018841981887817382,0.0016261494159698488,0.008805335499346256,-0.00419478677213192,374 +illusion_1.5L,ppo,375,150.0,1.01259183883667,-0.3964862823486328,0.9314379096031189,-0.5722813010215759,0.85504150390625,-0.4744679629802704,0.001905975746922195,-0.0007395728025585413,0.002306740963831544,-0.00033159597660414875,0.002325796289369464,-0.0016675767255946994,0.34761691093444824,-0.11107635498046875,-0.031129837036132812,0.0034761691093444826,-0.0011107635498046875,-0.00031129837036132814,0.00891233142465353,-0.003736004466190934,375 +illusion_1.5L,ppo,376,150.4,1.0611516237258911,-0.42441490292549133,0.9611973762512207,-0.5931321382522583,0.8267121911048889,-0.43980804085731506,0.0019363019382581115,-0.000558889121748507,0.002280561253428459,-0.00019787136989179999,0.0024054055102169514,-0.0012945219641551375,-0.1605166792869568,-0.15176713466644287,-0.17232942581176758,-0.0016051667928695678,-0.0015176713466644287,-0.0017232942581176759,0.008620023727416992,-0.0030620943289250135,376 +illusion_1.5L,ppo,377,150.8,1.1124458312988281,-0.45311829447746277,0.9817718267440796,-0.619083821773529,0.7766016125679016,-0.39122024178504944,0.001995938364416361,-0.0002259184402646497,0.0022697527892887592,3.4021981264231727e-05,0.002543960465118289,-0.0007660600822418928,-0.39390820264816284,-0.2598433494567871,-0.31445884704589844,-0.0039390820264816285,-0.0025984334945678713,-0.0031445884704589845,0.008369951508939266,-0.0022107805125415325,377 +illusion_1.5L,ppo,378,151.2,1.1705876588821411,-0.4845691919326782,0.9858232736587524,-0.640550434589386,0.710767388343811,-0.30727487802505493,0.0020301155745983124,9.47689259191975e-05,0.002289602067321539,0.00032659395947121084,0.00260551949031651,-0.00026519273524172604,-0.31751108169555664,-0.2042553424835205,-0.27495336532592773,-0.0031751108169555666,-0.002042553424835205,-0.0027495336532592776,0.008232075721025467,-0.001229805056937039,378 +illusion_1.5L,ppo,379,151.6,1.2428702116012573,-0.5188289880752563,0.9557930827140808,-0.6234232187271118,0.6406893730163574,-0.17647743225097656,0.0020284068305045366,0.00033377244835719466,0.002359825884923339,0.0005820966907776892,0.002564250258728862,5.7497614761814475e-05,-0.24532678723335263,-0.1487560272216797,-0.2571396827697754,-0.0024532678723335265,-0.0014875602722167968,-0.0025713968276977538,0.00811179168522358,-0.00017433101311326027,379 +illusion_1.5L,ppo,380,152.0,1.3352470397949219,-0.5437031388282776,0.8759713172912598,-0.4924266040325165,0.5903695821762085,-0.013905704952776432,0.0020029719453305006,0.0005121792200952768,0.002428592648357153,0.0008191679953597486,0.0025215791538357735,0.0002717391471378505,-0.2648075222969055,-0.328454852104187,-0.4750239849090576,-0.0026480752229690553,-0.0032845485210418702,-0.004750239849090576,0.008253613486886024,0.0008960727136582136,380 +illusion_1.5L,ppo,381,152.4,1.4177709817886353,-0.49432432651519775,0.7678635120391846,-0.19530098140239716,0.5939272046089172,0.12669320404529572,0.0019619690719991922,0.0006848417106084526,0.00246150023303926,0.0011174273677170277,0.002575540216639638,0.0004752865352202207,-0.3901711106300354,-0.5724642276763916,-0.7303752899169922,-0.003901711106300354,-0.005724642276763916,-0.007303752899169922,0.008266055956482887,0.0019207126460969448,381 +illusion_1.5L,ppo,382,152.8,1.4040348529815674,-0.28330108523368835,0.6806882619857788,0.20451143383979797,0.6571249961853027,0.20078645646572113,0.0019185669953003526,0.0008582931477576494,0.0024658532347530127,0.001447166781872511,0.0026755693834275007,0.0006333754863590002,-0.4417744278907776,-0.5963923931121826,-0.7224078178405762,-0.004417744278907776,-0.005963923931121827,-0.007224078178405762,0.008138866163790226,0.002841145033016801,382 +illusion_1.5L,ppo,383,153.2,1.2689837217330933,0.04316575825214386,0.6636505126953125,0.5395846366882324,0.7353625297546387,0.24114903807640076,0.0018760014791041613,0.0008866775315254927,0.0024506656918674707,0.0017400835640728474,0.002708947751671076,0.0007124238181859255,-0.06259578466415405,-0.5944095849990845,-0.5891797542572021,-0.0006259578466415405,-0.005944095849990845,-0.005891797542572022,0.008266528137028217,0.0036044649314135313,383 +illusion_1.5L,ppo,384,153.6,1.054326057434082,0.38842257857322693,0.7381939888000488,0.6343973278999329,0.8019351363182068,0.28318625688552856,0.0018696646438911557,0.0006802254938520491,0.0024155674036592245,0.001973477890715003,0.0026700624730437994,0.0007509163115173578,0.39595109224319464,-0.6881347894668579,-0.558861255645752,0.003959510922431946,-0.006881347894668579,-0.0055886125564575196,0.008407868444919586,0.004166331607848406,384 +illusion_1.5L,ppo,385,154.0,0.896689772605896,0.5644779801368713,0.8312696814537048,0.5983373522758484,0.8610265851020813,0.32139939069747925,0.0019352217204868793,0.0003943660412915051,0.00233581499196589,0.0021385427098721266,0.0026195752434432507,0.0007741816225461662,0.4375619292259217,-0.6810344457626343,-0.5528964996337891,0.004375619292259217,-0.0068103444576263425,-0.005528964996337891,0.008650233037769794,0.004493560642004013,385 +illusion_1.5L,ppo,386,154.4,0.8691784739494324,0.5419960021972656,0.8970558047294617,0.5749961137771606,0.9156330823898315,0.3517225682735443,0.0020178065169602633,0.00024343476979993284,0.0022121688816696405,0.002153244102373719,0.002561830682680011,0.0007748677744530141,0.03861615061759949,-0.3571512699127197,-0.3908383846282959,0.0003861615061759949,-0.0035715126991271973,-0.003908383846282959,0.008936306461691856,0.0045661311596632,386 +illusion_1.5L,ppo,387,154.8,0.871571958065033,0.4861967861652374,0.9441164135932922,0.5652969479560852,0.9657596349716187,0.37626948952674866,0.002062366111204028,0.00024226054665632546,0.0021347550209611654,0.001987272873520851,0.002494504675269127,0.0007992845494300127,-0.20969843864440915,-0.033804893493652344,-0.2471473217010498,-0.0020969843864440917,-0.00033804893493652346,-0.002471473217010498,0.008818242698907852,0.004378491081297398,387 +illusion_1.5L,ppo,388,155.2,0.852547287940979,0.4383418560028076,0.9796151518821716,0.5617799162864685,1.012143850326538,0.3980180621147156,0.0020888857543468475,0.00013777388085145503,0.0021769246086478233,0.001687368843704462,0.002441614167764783,0.0008352653821930289,0.19587601721286776,0.08117485046386719,-0.1641688346862793,0.0019587601721286776,0.0008117485046386719,-0.001641688346862793,0.00864899531006813,0.003940064925700426,388 +illusion_1.5L,ppo,389,155.6,0.8115845322608948,0.3774341940879822,1.0049782991409302,0.5626590847969055,1.0559906959533691,0.4196246862411499,0.0021458365954458714,-0.00015442975563928485,0.002333530690521002,0.0012150408001616597,0.0024035172536969185,0.0007670028717257082,0.5405718088150024,0.25188255310058594,0.02503204345703125,0.005405718088150025,0.0025188255310058592,0.0002503204345703125,0.00856008566915989,0.003274921327829361,389 +illusion_1.5L,ppo,390,156.0,0.7521045207977295,0.2859651744365692,1.0181068181991577,0.5657992362976074,1.0996828079223633,0.4436401426792145,0.0022213312331587076,-0.0004892464494332671,0.0024751864839345217,0.0006661790539510548,0.0023902037646621466,0.0005890653119422495,0.546578049659729,0.2706007957458496,0.08815526962280273,0.00546578049659729,0.002706007957458496,0.0008815526962280273,0.008397326804697514,0.002420595847070217,390 +illusion_1.5L,ppo,391,156.4,0.6824214458465576,0.15869100391864777,1.011366844177246,0.5653632283210754,1.1471790075302124,0.4724213778972626,0.0022559678182005882,-0.0007770872907713056,0.002473583212122321,0.0002617672726046294,0.0024063740856945515,0.0003795066149905324,0.5248256921768188,0.19159984588623047,0.04047822952270508,0.0052482569217681884,0.0019159984588623046,0.0004047822952270508,0.008429951965808868,0.0014261198230087757,391 +illusion_1.5L,ppo,392,156.8,0.6263821125030518,0.014960824511945248,0.9692986011505127,0.5425560474395752,1.205142617225647,0.5072226524353027,0.0022520602215081453,-0.001013251137919724,0.0024160610046237707,2.8561282761074835e-07,0.0024426050949841738,0.00014421736705116928,0.5422926545143127,0.3836541175842285,0.16565799713134766,0.0054229265451431275,0.0038365411758422853,0.0016565799713134765,0.008345250971615314,0.00034934014547616243,392 +illusion_1.5L,ppo,393,157.2,0.6210426092147827,-0.09750772267580032,0.8751188516616821,0.45061084628105164,1.28177809715271,0.5420126914978027,0.002203152282163501,-0.0012215649476274848,0.0024638595059514046,-0.0002466643927618861,0.002496402245014906,-0.00017582251166459173,0.6106175184249878,0.7479233741760254,0.42443275451660156,0.006106175184249878,0.007479233741760254,0.004244327545166016,0.008059890009462833,-0.0007463268702849746,393 +illusion_1.5L,ppo,394,157.6,0.6743927597999573,-0.14820173382759094,0.7381142973899841,0.2345561981201172,1.3661117553710938,0.5350459814071655,0.0021147779189050198,-0.0014272982953116298,0.0026264169719070196,-0.0004846666124649346,0.0025603261310607195,-0.0006068329676054418,0.6996902227401733,0.9419593811035156,0.6110656261444092,0.006996902227401734,0.009419593811035156,0.006110656261444092,0.00803802814334631,-0.0017955382354557514,394 +illusion_1.5L,ppo,395,158.0,0.7443360090255737,-0.16800785064697266,0.6048433780670166,-0.09296530485153198,1.3946092128753662,0.40266552567481995,0.0020084420684725046,-0.0015740182716399431,0.0027667393442243338,-0.0006219844799488783,0.002609698800370097,-0.0011008502915501595,0.6252295970916748,0.8212900161743164,0.6429388523101807,0.006252295970916748,0.008212900161743164,0.006429388523101807,0.00810767337679863,-0.0027348583098500967,395 +illusion_1.5L,ppo,396,158.4,0.7976194620132446,-0.19713890552520752,0.5318897366523743,-0.4250850975513458,1.3241984844207764,0.15525323152542114,0.0019078877521678805,-0.0015688893618062139,0.002760251984000206,-0.0006397401448339224,0.0026169847697019577,-0.001555424532853067,0.301371306180954,0.5931081771850586,0.6303421258926392,0.00301371306180954,0.005931081771850586,0.006303421258926392,0.008312919177114964,-0.0035065629053860903,396 +illusion_1.5L,ppo,397,158.8,0.8382210731506348,-0.23873521387577057,0.5863116383552551,-0.5841213464736938,1.160260558128357,-0.14500299096107483,0.0018383294809609652,-0.0013952910667285323,0.002617894671857357,-0.0005829971050843596,0.0025718447286635637,-0.0018963897600769997,-0.018628031015396118,0.4195549488067627,0.6212292909622192,-0.00018628031015396117,0.004195549488067627,0.006212292909622192,0.008678091689944267,-0.004062185063958168,397 +illusion_1.5L,ppo,398,159.2,0.8770571947097778,-0.28133925795555115,0.7210835814476013,-0.5596544742584229,0.9230506420135498,-0.4526556134223938,0.0018235406605526805,-0.0011530442861840129,0.0024472950026392937,-0.0004936902550980449,0.002485436387360096,-0.0020873351022601128,-0.10874199867248535,0.30309534072875977,0.5349942445755005,-0.0010874199867248536,0.0030309534072875976,0.005349942445755005,0.008710966445505619,-0.004365585744380951,398 +illusion_1.5L,ppo,399,159.6,0.9172481298446655,-0.31972751021385193,0.8190263509750366,-0.5307742953300476,0.7507978677749634,-0.6089279055595398,0.0018611601553857327,-0.0008812607266008854,0.002336914651095867,-0.00042866161675192416,0.0023763622157275677,-0.002130745444446802,-0.21626055240631104,0.27895689010620117,0.43910396099090576,-0.0021626055240631104,0.002789568901062012,0.0043910396099090575,0.00866282731294632,-0.004395345691591501,399 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_long.csv new file mode 100644 index 0000000..d1b378d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,target,0,0.0,velocity,upper_ux,0.9475906491279602 +illusion_1.5L,target,0,0.0,velocity,upper_uy,0.5402640700340271 +illusion_1.5L,target,0,0.0,velocity,center_ux,0.9212831258773804 +illusion_1.5L,target,0,0.0,velocity,center_uy,0.7155839800834656 +illusion_1.5L,target,0,0.0,velocity,lower_ux,0.9072030782699585 +illusion_1.5L,target,0,0.0,velocity,lower_uy,0.5097668170928955 +illusion_1.5L,target,1,0.4,velocity,upper_ux,0.9007688164710999 +illusion_1.5L,target,1,0.4,velocity,upper_uy,0.5399243235588074 +illusion_1.5L,target,1,0.4,velocity,center_ux,0.9486919641494751 +illusion_1.5L,target,1,0.4,velocity,center_uy,0.7230756878852844 +illusion_1.5L,target,1,0.4,velocity,lower_ux,0.9793373346328735 +illusion_1.5L,target,1,0.4,velocity,lower_uy,0.5306901335716248 +illusion_1.5L,target,2,0.8,velocity,upper_ux,0.8489206433296204 +illusion_1.5L,target,2,0.8,velocity,upper_uy,0.5468649864196777 +illusion_1.5L,target,2,0.8,velocity,center_ux,0.9747264981269836 +illusion_1.5L,target,2,0.8,velocity,center_uy,0.7489402294158936 +illusion_1.5L,target,2,0.8,velocity,lower_ux,1.0510083436965942 +illusion_1.5L,target,2,0.8,velocity,lower_uy,0.5503425002098083 +illusion_1.5L,target,3,1.2,velocity,upper_ux,0.7858652472496033 +illusion_1.5L,target,3,1.2,velocity,upper_uy,0.5491753220558167 +illusion_1.5L,target,3,1.2,velocity,center_ux,0.9996874928474426 +illusion_1.5L,target,3,1.2,velocity,center_uy,0.7911074757575989 +illusion_1.5L,target,3,1.2,velocity,lower_ux,1.1239981651306152 +illusion_1.5L,target,3,1.2,velocity,lower_uy,0.5694438219070435 +illusion_1.5L,target,4,1.6,velocity,upper_ux,0.7064404487609863 +illusion_1.5L,target,4,1.6,velocity,upper_uy,0.5248503684997559 +illusion_1.5L,target,4,1.6,velocity,center_ux,1.0191329717636108 +illusion_1.5L,target,4,1.6,velocity,center_uy,0.8347819447517395 +illusion_1.5L,target,4,1.6,velocity,lower_ux,1.2000771760940552 +illusion_1.5L,target,4,1.6,velocity,lower_uy,0.5876644253730774 +illusion_1.5L,target,5,2.0,velocity,upper_ux,0.6159781813621521 +illusion_1.5L,target,5,2.0,velocity,upper_uy,0.4422197639942169 +illusion_1.5L,target,5,2.0,velocity,center_ux,1.0183806419372559 +illusion_1.5L,target,5,2.0,velocity,center_uy,0.823106050491333 +illusion_1.5L,target,5,2.0,velocity,lower_ux,1.2833515405654907 +illusion_1.5L,target,5,2.0,velocity,lower_uy,0.6034879088401794 +illusion_1.5L,target,6,2.4,velocity,upper_ux,0.5338099002838135 +illusion_1.5L,target,6,2.4,velocity,upper_uy,0.2808876931667328 +illusion_1.5L,target,6,2.4,velocity,center_ux,0.9797701239585876 +illusion_1.5L,target,6,2.4,velocity,center_uy,0.6732420921325684 +illusion_1.5L,target,6,2.4,velocity,lower_ux,1.377121925354004 +illusion_1.5L,target,6,2.4,velocity,lower_uy,0.6102598905563354 +illusion_1.5L,target,7,2.8,velocity,upper_ux,0.48431697487831116 +illusion_1.5L,target,7,2.8,velocity,upper_uy,0.056272607296705246 +illusion_1.5L,target,7,2.8,velocity,center_ux,0.9110705852508545 +illusion_1.5L,target,7,2.8,velocity,center_uy,0.37739360332489014 +illusion_1.5L,target,7,2.8,velocity,lower_ux,1.4636286497116089 +illusion_1.5L,target,7,2.8,velocity,lower_uy,0.5739843845367432 +illusion_1.5L,target,8,3.2,velocity,upper_ux,0.48619675636291504 +illusion_1.5L,target,8,3.2,velocity,upper_uy,-0.17976412177085876 +illusion_1.5L,target,8,3.2,velocity,center_ux,0.841907262802124 +illusion_1.5L,target,8,3.2,velocity,center_uy,-0.012879306450486183 +illusion_1.5L,target,8,3.2,velocity,lower_ux,1.4722530841827393 +illusion_1.5L,target,8,3.2,velocity,lower_uy,0.4022950828075409 +illusion_1.5L,target,9,3.6,velocity,upper_ux,0.5477094054222107 +illusion_1.5L,target,9,3.6,velocity,upper_uy,-0.3528819680213928 +illusion_1.5L,target,9,3.6,velocity,center_ux,0.8014639019966125 +illusion_1.5L,target,9,3.6,velocity,center_uy,-0.42072081565856934 +illusion_1.5L,target,9,3.6,velocity,lower_ux,1.345029592514038 +illusion_1.5L,target,9,3.6,velocity,lower_uy,0.03976432979106903 +illusion_1.5L,target,10,4.0,velocity,upper_ux,0.6497469544410706 +illusion_1.5L,target,10,4.0,velocity,upper_uy,-0.428165465593338 +illusion_1.5L,target,10,4.0,velocity,center_ux,0.8067768812179565 +illusion_1.5L,target,10,4.0,velocity,center_uy,-0.695829451084137 +illusion_1.5L,target,10,4.0,velocity,lower_ux,1.1646794080734253 +illusion_1.5L,target,10,4.0,velocity,lower_uy,-0.3448689579963684 +illusion_1.5L,target,11,4.4,velocity,upper_ux,0.7507853507995605 +illusion_1.5L,target,11,4.4,velocity,upper_uy,-0.46122458577156067 +illusion_1.5L,target,11,4.4,velocity,center_ux,0.8469595909118652 +illusion_1.5L,target,11,4.4,velocity,center_uy,-0.7521911859512329 +illusion_1.5L,target,11,4.4,velocity,lower_ux,1.0435870885849 +illusion_1.5L,target,11,4.4,velocity,lower_uy,-0.5308622121810913 +illusion_1.5L,target,12,4.8,velocity,upper_ux,0.8379006385803223 +illusion_1.5L,target,12,4.8,velocity,upper_uy,-0.48885056376457214 +illusion_1.5L,target,12,4.8,velocity,center_ux,0.8902129530906677 +illusion_1.5L,target,12,4.8,velocity,center_uy,-0.7258268594741821 +illusion_1.5L,target,12,4.8,velocity,lower_ux,0.9843586683273315 +illusion_1.5L,target,12,4.8,velocity,lower_uy,-0.5497801899909973 +illusion_1.5L,target,13,5.2,velocity,upper_ux,0.9170989990234375 +illusion_1.5L,target,13,5.2,velocity,upper_uy,-0.5122867226600647 +illusion_1.5L,target,13,5.2,velocity,center_ux,0.9254587292671204 +illusion_1.5L,target,13,5.2,velocity,center_uy,-0.7151480317115784 +illusion_1.5L,target,13,5.2,velocity,lower_ux,0.9425078630447388 +illusion_1.5L,target,13,5.2,velocity,lower_uy,-0.5390183925628662 +illusion_1.5L,target,14,5.6,velocity,upper_ux,0.99114990234375 +illusion_1.5L,target,14,5.6,velocity,upper_uy,-0.5330615043640137 +illusion_1.5L,target,14,5.6,velocity,center_ux,0.9545519351959229 +illusion_1.5L,target,14,5.6,velocity,center_uy,-0.7251338958740234 +illusion_1.5L,target,14,5.6,velocity,lower_ux,0.8971582651138306 +illusion_1.5L,target,14,5.6,velocity,lower_uy,-0.5400736331939697 +illusion_1.5L,target,15,6.0,velocity,upper_ux,1.0615860223770142 +illusion_1.5L,target,15,6.0,velocity,upper_uy,-0.5526685118675232 +illusion_1.5L,target,15,6.0,velocity,center_ux,0.9791213870048523 +illusion_1.5L,target,15,6.0,velocity,center_uy,-0.7534866333007812 +illusion_1.5L,target,15,6.0,velocity,lower_ux,0.8426166772842407 +illusion_1.5L,target,15,6.0,velocity,lower_uy,-0.5472763180732727 +illusion_1.5L,target,16,6.4,velocity,upper_ux,1.1317631006240845 +illusion_1.5L,target,16,6.4,velocity,upper_uy,-0.5716078281402588 +illusion_1.5L,target,16,6.4,velocity,center_ux,1.001004695892334 +illusion_1.5L,target,16,6.4,velocity,center_uy,-0.7971920967102051 +illusion_1.5L,target,16,6.4,velocity,lower_ux,0.7746053338050842 +illusion_1.5L,target,16,6.4,velocity,lower_uy,-0.5478169322013855 +illusion_1.5L,target,17,6.8,velocity,upper_ux,1.2070664167404175 +illusion_1.5L,target,17,6.8,velocity,upper_uy,-0.5896115899085999 +illusion_1.5L,target,17,6.8,velocity,center_ux,1.0182057619094849 +illusion_1.5L,target,17,6.8,velocity,center_uy,-0.8379658460617065 +illusion_1.5L,target,17,6.8,velocity,lower_ux,0.6922463774681091 +illusion_1.5L,target,17,6.8,velocity,lower_uy,-0.5183518528938293 +illusion_1.5L,target,18,7.2,velocity,upper_ux,1.2928857803344727 +illusion_1.5L,target,18,7.2,velocity,upper_uy,-0.6049972772598267 +illusion_1.5L,target,18,7.2,velocity,center_ux,1.0154434442520142 +illusion_1.5L,target,18,7.2,velocity,center_uy,-0.8133578300476074 +illusion_1.5L,target,18,7.2,velocity,lower_ux,0.6033719778060913 +illusion_1.5L,target,18,7.2,velocity,lower_uy,-0.42711350321769714 +illusion_1.5L,target,19,7.6,velocity,upper_ux,1.3902724981307983 +illusion_1.5L,target,19,7.6,velocity,upper_uy,-0.6096755266189575 +illusion_1.5L,target,19,7.6,velocity,center_ux,0.974860668182373 +illusion_1.5L,target,19,7.6,velocity,center_uy,-0.6447056531906128 +illusion_1.5L,target,19,7.6,velocity,lower_ux,0.5267806053161621 +illusion_1.5L,target,19,7.6,velocity,lower_uy,-0.25651493668556213 +illusion_1.5L,target,20,8.0,velocity,upper_ux,1.473005771636963 +illusion_1.5L,target,20,8.0,velocity,upper_uy,-0.5631957650184631 +illusion_1.5L,target,20,8.0,velocity,center_ux,0.9045681953430176 +illusion_1.5L,target,20,8.0,velocity,center_uy,-0.33418041467666626 +illusion_1.5L,target,20,8.0,velocity,lower_ux,0.4834102690219879 +illusion_1.5L,target,20,8.0,velocity,lower_uy,-0.026585441082715988 +illusion_1.5L,target,21,8.4,velocity,upper_ux,1.463403582572937 +illusion_1.5L,target,21,8.4,velocity,upper_uy,-0.3676842153072357 +illusion_1.5L,target,21,8.4,velocity,center_ux,0.8346037864685059 +illusion_1.5L,target,21,8.4,velocity,center_uy,0.06398262083530426 +illusion_1.5L,target,21,8.4,velocity,lower_ux,0.4900961220264435 +illusion_1.5L,target,21,8.4,velocity,lower_uy,0.20603738725185394 +illusion_1.5L,target,22,8.8,velocity,upper_ux,1.3201202154159546 +illusion_1.5L,target,22,8.8,velocity,upper_uy,0.011344281025230885 +illusion_1.5L,target,22,8.8,velocity,center_ux,0.796722412109375 +illusion_1.5L,target,22,8.8,velocity,center_uy,0.4646151661872864 +illusion_1.5L,target,22,8.8,velocity,lower_ux,0.556069016456604 +illusion_1.5L,target,22,8.8,velocity,lower_uy,0.3667159974575043 +illusion_1.5L,target,23,9.2,velocity,upper_ux,1.1435916423797607 +illusion_1.5L,target,23,9.2,velocity,upper_uy,0.3799968361854553 +illusion_1.5L,target,23,9.2,velocity,center_ux,0.8076882362365723 +illusion_1.5L,target,23,9.2,velocity,center_uy,0.7131810784339905 +illusion_1.5L,target,23,9.2,velocity,lower_ux,0.6599571108818054 +illusion_1.5L,target,23,9.2,velocity,lower_uy,0.4329162836074829 +illusion_1.5L,target,24,9.6,velocity,upper_ux,1.0344568490982056 +illusion_1.5L,target,24,9.6,velocity,upper_uy,0.5396550297737122 +illusion_1.5L,target,24,9.6,velocity,center_ux,0.8523247241973877 +illusion_1.5L,target,24,9.6,velocity,center_uy,0.7504955530166626 +illusion_1.5L,target,24,9.6,velocity,lower_ux,0.7617446780204773 +illusion_1.5L,target,24,9.6,velocity,lower_uy,0.4646230936050415 +illusion_1.5L,target,25,10.0,velocity,upper_ux,0.9817270040512085 +illusion_1.5L,target,25,10.0,velocity,upper_uy,0.5492340326309204 +illusion_1.5L,target,25,10.0,velocity,center_ux,0.8971750140190125 +illusion_1.5L,target,25,10.0,velocity,center_uy,0.7238523364067078 +illusion_1.5L,target,25,10.0,velocity,lower_ux,0.8501238226890564 +illusion_1.5L,target,25,10.0,velocity,lower_uy,0.4918624758720398 +illusion_1.5L,target,26,10.4,velocity,upper_ux,0.938950777053833 +illusion_1.5L,target,26,10.4,velocity,upper_uy,0.5394235849380493 +illusion_1.5L,target,26,10.4,velocity,center_ux,0.93085777759552 +illusion_1.5L,target,26,10.4,velocity,center_uy,0.7159061431884766 +illusion_1.5L,target,26,10.4,velocity,lower_ux,0.9279513359069824 +illusion_1.5L,target,26,10.4,velocity,lower_uy,0.514965295791626 +illusion_1.5L,target,27,10.8,velocity,upper_ux,0.8898125290870667 +illusion_1.5L,target,27,10.8,velocity,upper_uy,0.5417192578315735 +illusion_1.5L,target,27,10.8,velocity,center_ux,0.9566134810447693 +illusion_1.5L,target,27,10.8,velocity,center_uy,0.7281327247619629 +illusion_1.5L,target,27,10.8,velocity,lower_ux,0.9986114501953125 +illusion_1.5L,target,27,10.8,velocity,lower_uy,0.5355318784713745 +illusion_1.5L,target,28,11.2,velocity,upper_ux,0.8325610160827637 +illusion_1.5L,target,28,11.2,velocity,upper_uy,0.5489922165870667 +illusion_1.5L,target,28,11.2,velocity,center_ux,0.979474663734436 +illusion_1.5L,target,28,11.2,velocity,center_uy,0.7583755254745483 +illusion_1.5L,target,28,11.2,velocity,lower_ux,1.0672268867492676 +illusion_1.5L,target,28,11.2,velocity,lower_uy,0.5550435781478882 +illusion_1.5L,target,29,11.6,velocity,upper_ux,0.7642737627029419 +illusion_1.5L,target,29,11.6,velocity,upper_uy,0.5475195050239563 +illusion_1.5L,target,29,11.6,velocity,center_ux,1.0023908615112305 +illusion_1.5L,target,29,11.6,velocity,center_uy,0.8029678463935852 +illusion_1.5L,target,29,11.6,velocity,lower_ux,1.138866901397705 +illusion_1.5L,target,29,11.6,velocity,lower_uy,0.5739660263061523 +illusion_1.5L,target,30,12.0,velocity,upper_ux,0.6833800673484802 +illusion_1.5L,target,30,12.0,velocity,upper_uy,0.5122531652450562 +illusion_1.5L,target,30,12.0,velocity,center_ux,1.020928144454956 +illusion_1.5L,target,30,12.0,velocity,center_uy,0.8402812480926514 +illusion_1.5L,target,30,12.0,velocity,lower_ux,1.2179776430130005 +illusion_1.5L,target,30,12.0,velocity,lower_uy,0.5919339656829834 +illusion_1.5L,target,31,12.4,velocity,upper_ux,0.5959196090698242 +illusion_1.5L,target,31,12.4,velocity,upper_uy,0.4112209379673004 +illusion_1.5L,target,31,12.4,velocity,center_ux,1.0151383876800537 +illusion_1.5L,target,31,12.4,velocity,center_uy,0.8019236922264099 +illusion_1.5L,target,31,12.4,velocity,lower_ux,1.3068994283676147 +illusion_1.5L,target,31,12.4,velocity,lower_uy,0.6069427728652954 +illusion_1.5L,target,32,12.8,velocity,upper_ux,0.5201049447059631 +illusion_1.5L,target,32,12.8,velocity,upper_uy,0.2307601422071457 +illusion_1.5L,target,32,12.8,velocity,center_ux,0.9674450159072876 +illusion_1.5L,target,32,12.8,velocity,center_uy,0.6134088635444641 +illusion_1.5L,target,32,12.8,velocity,lower_ux,1.4031357765197754 +illusion_1.5L,target,32,12.8,velocity,lower_uy,0.6086499094963074 +illusion_1.5L,target,33,13.2,velocity,upper_ux,0.47953343391418457 +illusion_1.5L,target,33,13.2,velocity,upper_uy,-0.003257312113419175 +illusion_1.5L,target,33,13.2,velocity,center_ux,0.8930118680000305 +illusion_1.5L,target,33,13.2,velocity,center_uy,0.2887425422668457 +illusion_1.5L,target,33,13.2,velocity,lower_ux,1.476855754852295 +illusion_1.5L,target,33,13.2,velocity,lower_uy,0.5493875741958618 +illusion_1.5L,target,34,13.6,velocity,upper_ux,0.492875874042511 +illusion_1.5L,target,34,13.6,velocity,upper_uy,-0.23079532384872437 +illusion_1.5L,target,34,13.6,velocity,center_ux,0.8256579637527466 +illusion_1.5L,target,34,13.6,velocity,center_uy,-0.11487092822790146 +illusion_1.5L,target,34,13.6,velocity,lower_ux,1.450141191482544 +illusion_1.5L,target,34,13.6,velocity,lower_uy,0.32907867431640625 +illusion_1.5L,target,35,14.0,velocity,upper_ux,0.5673524737358093 +illusion_1.5L,target,35,14.0,velocity,upper_uy,-0.3792111277580261 +illusion_1.5L,target,35,14.0,velocity,center_ux,0.7957836985588074 +illusion_1.5L,target,35,14.0,velocity,center_uy,-0.5058666467666626 +illusion_1.5L,target,35,14.0,velocity,lower_ux,1.2975780963897705 +illusion_1.5L,target,35,14.0,velocity,lower_uy,-0.06319037824869156 +illusion_1.5L,target,36,14.4,velocity,upper_ux,0.6753677129745483 +illusion_1.5L,target,36,14.4,velocity,upper_uy,-0.4377714991569519 +illusion_1.5L,target,36,14.4,velocity,center_ux,0.8149802684783936 +illusion_1.5L,target,36,14.4,velocity,center_uy,-0.7272518277168274 +illusion_1.5L,target,36,14.4,velocity,lower_ux,1.1288150548934937 +illusion_1.5L,target,36,14.4,velocity,lower_uy,-0.41254082322120667 +illusion_1.5L,target,37,14.8,velocity,upper_ux,0.7754557132720947 +illusion_1.5L,target,37,14.8,velocity,upper_uy,-0.4684988856315613 +illusion_1.5L,target,37,14.8,velocity,center_ux,0.8609129190444946 +illusion_1.5L,target,37,14.8,velocity,center_uy,-0.7475019097328186 +illusion_1.5L,target,37,14.8,velocity,lower_ux,1.0285451412200928 +illusion_1.5L,target,37,14.8,velocity,lower_uy,-0.5456440448760986 +illusion_1.5L,target,38,15.2,velocity,upper_ux,0.8597215414047241 +illusion_1.5L,target,38,15.2,velocity,upper_uy,-0.49512699246406555 +illusion_1.5L,target,38,15.2,velocity,center_ux,0.9017172455787659 +illusion_1.5L,target,38,15.2,velocity,center_uy,-0.7215561866760254 +illusion_1.5L,target,38,15.2,velocity,lower_ux,0.9763480424880981 +illusion_1.5L,target,38,15.2,velocity,lower_uy,-0.5473499298095703 +illusion_1.5L,target,39,15.6,velocity,upper_ux,0.9345970749855042 +illusion_1.5L,target,39,15.6,velocity,upper_uy,-0.5177022814750671 +illusion_1.5L,target,39,15.6,velocity,center_ux,0.9323455095291138 +illusion_1.5L,target,39,15.6,velocity,center_uy,-0.7162445783615112 +illusion_1.5L,target,39,15.6,velocity,lower_ux,0.9314063787460327 +illusion_1.5L,target,39,15.6,velocity,lower_uy,-0.538894534111023 +illusion_1.5L,target,40,16.0,velocity,upper_ux,1.005465030670166 +illusion_1.5L,target,40,16.0,velocity,upper_uy,-0.5380243062973022 +illusion_1.5L,target,40,16.0,velocity,center_ux,0.9582350254058838 +illusion_1.5L,target,40,16.0,velocity,center_uy,-0.7306398153305054 +illusion_1.5L,target,40,16.0,velocity,lower_ux,0.8823801279067993 +illusion_1.5L,target,40,16.0,velocity,lower_uy,-0.5423387885093689 +illusion_1.5L,target,41,16.4,velocity,upper_ux,1.0768024921417236 +illusion_1.5L,target,41,16.4,velocity,upper_uy,-0.5574330687522888 +illusion_1.5L,target,41,16.4,velocity,center_ux,0.9834210872650146 +illusion_1.5L,target,41,16.4,velocity,center_uy,-0.7628953456878662 +illusion_1.5L,target,41,16.4,velocity,lower_ux,0.8266457915306091 +illusion_1.5L,target,41,16.4,velocity,lower_uy,-0.5493676662445068 +illusion_1.5L,target,42,16.8,velocity,upper_ux,1.1509522199630737 +illusion_1.5L,target,42,16.8,velocity,upper_uy,-0.576310396194458 +illusion_1.5L,target,42,16.8,velocity,center_ux,1.007667064666748 +illusion_1.5L,target,42,16.8,velocity,center_uy,-0.8087262511253357 +illusion_1.5L,target,42,16.8,velocity,lower_ux,0.7582746148109436 +illusion_1.5L,target,42,16.8,velocity,lower_uy,-0.5452004075050354 +illusion_1.5L,target,43,17.2,velocity,upper_ux,1.2298023700714111 +illusion_1.5L,target,43,17.2,velocity,upper_uy,-0.5939924120903015 +illusion_1.5L,target,43,17.2,velocity,center_ux,1.0227603912353516 +illusion_1.5L,target,43,17.2,velocity,center_uy,-0.8417052626609802 +illusion_1.5L,target,43,17.2,velocity,lower_ux,0.6741213202476501 +illusion_1.5L,target,43,17.2,velocity,lower_uy,-0.5032243728637695 +illusion_1.5L,target,44,17.6,velocity,upper_ux,1.3174042701721191 +illusion_1.5L,target,44,17.6,velocity,upper_uy,-0.6079704761505127 +illusion_1.5L,target,44,17.6,velocity,center_ux,1.009636640548706 +illusion_1.5L,target,44,17.6,velocity,center_uy,-0.7870549559593201 +illusion_1.5L,target,44,17.6,velocity,lower_ux,0.5842511653900146 +illusion_1.5L,target,44,17.6,velocity,lower_uy,-0.3923669457435608 +illusion_1.5L,target,45,18.0,velocity,upper_ux,1.412659764289856 +illusion_1.5L,target,45,18.0,velocity,upper_uy,-0.6057018041610718 +illusion_1.5L,target,45,18.0,velocity,center_ux,0.9568491578102112 +illusion_1.5L,target,45,18.0,velocity,center_uy,-0.579005241394043 +illusion_1.5L,target,45,18.0,velocity,lower_ux,0.510979175567627 +illusion_1.5L,target,45,18.0,velocity,lower_uy,-0.20360209047794342 +illusion_1.5L,target,46,18.4,velocity,upper_ux,1.4804986715316772 +illusion_1.5L,target,46,18.4,velocity,upper_uy,-0.5325530767440796 +illusion_1.5L,target,46,18.4,velocity,center_ux,0.8834516406059265 +illusion_1.5L,target,46,18.4,velocity,center_uy,-0.24179726839065552 +illusion_1.5L,target,46,18.4,velocity,lower_ux,0.4779048264026642 +illusion_1.5L,target,46,18.4,velocity,lower_uy,0.03293078392744064 +illusion_1.5L,target,47,18.8,velocity,upper_ux,1.4395009279251099 +illusion_1.5L,target,47,18.8,velocity,upper_uy,-0.2876335084438324 +illusion_1.5L,target,47,18.8,velocity,center_ux,0.8217641711235046 +illusion_1.5L,target,47,18.8,velocity,center_uy,0.1670091301202774 +illusion_1.5L,target,47,18.8,velocity,lower_ux,0.5012686252593994 +illusion_1.5L,target,47,18.8,velocity,lower_uy,0.25459328293800354 +illusion_1.5L,target,48,19.2,velocity,upper_ux,1.2769837379455566 +illusion_1.5L,target,48,19.2,velocity,upper_uy,0.11460140347480774 +illusion_1.5L,target,48,19.2,velocity,center_ux,0.7979685068130493 +illusion_1.5L,target,48,19.2,velocity,center_uy,0.5464436411857605 +illusion_1.5L,target,48,19.2,velocity,lower_ux,0.5826830267906189 +illusion_1.5L,target,48,19.2,velocity,lower_uy,0.3903181552886963 +illusion_1.5L,target,49,19.6,velocity,upper_ux,1.111589789390564 +illusion_1.5L,target,49,19.6,velocity,upper_uy,0.4409884214401245 +illusion_1.5L,target,49,19.6,velocity,center_ux,0.8199787735939026 +illusion_1.5L,target,49,19.6,velocity,center_uy,0.7381381988525391 +illusion_1.5L,target,49,19.6,velocity,lower_ux,0.6890710592269897 +illusion_1.5L,target,49,19.6,velocity,lower_uy,0.44192788004875183 +illusion_1.5L,target,50,20.0,velocity,upper_ux,1.0178967714309692 +illusion_1.5L,target,50,20.0,velocity,upper_uy,0.5487697720527649 +illusion_1.5L,target,50,20.0,velocity,center_ux,0.8645244836807251 +illusion_1.5L,target,50,20.0,velocity,center_uy,0.743438184261322 +illusion_1.5L,target,50,20.0,velocity,lower_ux,0.7847892045974731 +illusion_1.5L,target,50,20.0,velocity,lower_uy,0.4719291031360626 +illusion_1.5L,target,51,20.4,velocity,upper_ux,0.9688913226127625 +illusion_1.5L,target,51,20.4,velocity,upper_uy,0.5449510812759399 +illusion_1.5L,target,51,20.4,velocity,center_ux,0.9042159914970398 +illusion_1.5L,target,51,20.4,velocity,center_uy,0.7192390561103821 +illusion_1.5L,target,51,20.4,velocity,lower_ux,0.8677900433540344 +illusion_1.5L,target,51,20.4,velocity,lower_uy,0.4980001151561737 +illusion_1.5L,target,52,20.8,velocity,upper_ux,0.9260607361793518 +illusion_1.5L,target,52,20.8,velocity,upper_uy,0.538098156452179 +illusion_1.5L,target,52,20.8,velocity,center_ux,0.9362263679504395 +illusion_1.5L,target,52,20.8,velocity,center_uy,0.7166121006011963 +illusion_1.5L,target,52,20.8,velocity,lower_ux,0.9441984295845032 +illusion_1.5L,target,52,20.8,velocity,lower_uy,0.5201835036277771 +illusion_1.5L,target,53,21.2,velocity,upper_ux,0.8781452775001526 +illusion_1.5L,target,53,21.2,velocity,upper_uy,0.5425342321395874 +illusion_1.5L,target,53,21.2,velocity,center_ux,0.9636584520339966 +illusion_1.5L,target,53,21.2,velocity,center_uy,0.7334415912628174 +illusion_1.5L,target,53,21.2,velocity,lower_ux,1.0168699026107788 +illusion_1.5L,target,53,21.2,velocity,lower_uy,0.5403870940208435 +illusion_1.5L,target,54,21.6,velocity,upper_ux,0.8197861313819885 +illusion_1.5L,target,54,21.6,velocity,upper_uy,0.5491921901702881 +illusion_1.5L,target,54,21.6,velocity,center_ux,0.9876927733421326 +illusion_1.5L,target,54,21.6,velocity,center_uy,0.7680895924568176 +illusion_1.5L,target,54,21.6,velocity,lower_ux,1.0873961448669434 +illusion_1.5L,target,54,21.6,velocity,lower_uy,0.5597425699234009 +illusion_1.5L,target,55,22.0,velocity,upper_ux,0.7467067241668701 +illusion_1.5L,target,55,22.0,velocity,upper_uy,0.542060375213623 +illusion_1.5L,target,55,22.0,velocity,center_ux,1.0090118646621704 +illusion_1.5L,target,55,22.0,velocity,center_uy,0.814622163772583 +illusion_1.5L,target,55,22.0,velocity,lower_ux,1.1593097448349 +illusion_1.5L,target,55,22.0,velocity,lower_uy,0.5784196257591248 +illusion_1.5L,target,56,22.4,velocity,upper_ux,0.6600496172904968 +illusion_1.5L,target,56,22.4,velocity,upper_uy,0.4933733642101288 +illusion_1.5L,target,56,22.4,velocity,center_ux,1.0210555791854858 +illusion_1.5L,target,56,22.4,velocity,center_uy,0.8414571285247803 +illusion_1.5L,target,56,22.4,velocity,lower_ux,1.2377057075500488 +illusion_1.5L,target,56,22.4,velocity,lower_uy,0.5957621932029724 +illusion_1.5L,target,57,22.8,velocity,upper_ux,0.5724154114723206 +illusion_1.5L,target,57,22.8,velocity,upper_uy,0.37319478392601013 +illusion_1.5L,target,57,22.8,velocity,center_ux,1.004788875579834 +illusion_1.5L,target,57,22.8,velocity,center_uy,0.7700369954109192 +illusion_1.5L,target,57,22.8,velocity,lower_ux,1.3276687860488892 +illusion_1.5L,target,57,22.8,velocity,lower_uy,0.6088915467262268 +illusion_1.5L,target,58,23.2,velocity,upper_ux,0.5054018497467041 +illusion_1.5L,target,58,23.2,velocity,upper_uy,0.17634853720664978 +illusion_1.5L,target,58,23.2,velocity,center_ux,0.9503387212753296 +illusion_1.5L,target,58,23.2,velocity,center_uy,0.543982744216919 +illusion_1.5L,target,58,23.2,velocity,lower_ux,1.4249643087387085 +illusion_1.5L,target,58,23.2,velocity,lower_uy,0.6025226712226868 +illusion_1.5L,target,59,23.6,velocity,upper_ux,0.47926032543182373 +illusion_1.5L,target,59,23.6,velocity,upper_uy,-0.0626223087310791 +illusion_1.5L,target,59,23.6,velocity,center_ux,0.8768499493598938 +illusion_1.5L,target,59,23.6,velocity,center_uy,0.19441263377666473 +illusion_1.5L,target,59,23.6,velocity,lower_ux,1.4849220514297485 +illusion_1.5L,target,59,23.6,velocity,lower_uy,0.5140275359153748 +illusion_1.5L,target,60,24.0,velocity,upper_ux,0.5082723498344421 +illusion_1.5L,target,60,24.0,velocity,upper_uy,-0.27708548307418823 +illusion_1.5L,target,60,24.0,velocity,center_ux,0.81614089012146 +illusion_1.5L,target,60,24.0,velocity,center_uy,-0.21841125190258026 +illusion_1.5L,target,60,24.0,velocity,lower_ux,1.4242900609970093 +illusion_1.5L,target,60,24.0,velocity,lower_uy,0.24397073686122894 +illusion_1.5L,target,61,24.4,velocity,upper_ux,0.5931241512298584 +illusion_1.5L,target,61,24.4,velocity,upper_uy,-0.3996849060058594 +illusion_1.5L,target,61,24.4,velocity,center_ux,0.7957891821861267 +illusion_1.5L,target,61,24.4,velocity,center_uy,-0.5826437473297119 +illusion_1.5L,target,61,24.4,velocity,lower_ux,1.2518316507339478 +illusion_1.5L,target,61,24.4,velocity,lower_uy,-0.163608118891716 +illusion_1.5L,target,62,24.8,velocity,upper_ux,0.6993356943130493 +illusion_1.5L,target,62,24.8,velocity,upper_uy,-0.44565361738204956 +illusion_1.5L,target,62,24.8,velocity,center_ux,0.8224256038665771 +illusion_1.5L,target,62,24.8,velocity,center_uy,-0.7457897663116455 +illusion_1.5L,target,62,24.8,velocity,lower_ux,1.0941063165664673 +illusion_1.5L,target,62,24.8,velocity,lower_uy,-0.4654170274734497 +illusion_1.5L,target,63,25.2,velocity,upper_ux,0.7952536940574646 +illusion_1.5L,target,63,25.2,velocity,upper_uy,-0.47514426708221436 +illusion_1.5L,target,63,25.2,velocity,center_ux,0.8695392608642578 +illusion_1.5L,target,63,25.2,velocity,center_uy,-0.7401918768882751 +illusion_1.5L,target,63,25.2,velocity,lower_ux,1.0106287002563477 +illusion_1.5L,target,63,25.2,velocity,lower_uy,-0.5516266226768494 +illusion_1.5L,target,64,25.6,velocity,upper_ux,0.8794004917144775 +illusion_1.5L,target,64,25.6,velocity,upper_uy,-0.5007862448692322 +illusion_1.5L,target,64,25.6,velocity,center_ux,0.9103267788887024 +illusion_1.5L,target,64,25.6,velocity,center_uy,-0.7181411981582642 +illusion_1.5L,target,64,25.6,velocity,lower_ux,0.9657957553863525 +illusion_1.5L,target,64,25.6,velocity,lower_uy,-0.5441257357597351 +illusion_1.5L,target,65,26.0,velocity,upper_ux,0.9547391533851624 +illusion_1.5L,target,65,26.0,velocity,upper_uy,-0.5227265954017639 +illusion_1.5L,target,65,26.0,velocity,center_ux,0.9411354064941406 +illusion_1.5L,target,65,26.0,velocity,center_uy,-0.7181082963943481 +illusion_1.5L,target,65,26.0,velocity,lower_ux,0.9218281507492065 +illusion_1.5L,target,65,26.0,velocity,lower_uy,-0.5388433337211609 +illusion_1.5L,target,66,26.4,velocity,upper_ux,1.0245521068572998 +illusion_1.5L,target,66,26.4,velocity,upper_uy,-0.5427899956703186 +illusion_1.5L,target,66,26.4,velocity,center_ux,0.9657592177391052 +illusion_1.5L,target,66,26.4,velocity,center_uy,-0.737175703048706 +illusion_1.5L,target,66,26.4,velocity,lower_ux,0.8703811764717102 +illusion_1.5L,target,66,26.4,velocity,lower_uy,-0.5441482663154602 +illusion_1.5L,target,67,26.8,velocity,upper_ux,1.0935639142990112 +illusion_1.5L,target,67,26.8,velocity,upper_uy,-0.5620682239532471 +illusion_1.5L,target,67,26.8,velocity,center_ux,0.9883158802986145 +illusion_1.5L,target,67,26.8,velocity,center_uy,-0.7735995650291443 +illusion_1.5L,target,67,26.8,velocity,lower_ux,0.8092079162597656 +illusion_1.5L,target,67,26.8,velocity,lower_uy,-0.5502637624740601 +illusion_1.5L,target,68,27.2,velocity,upper_ux,1.166893482208252 +illusion_1.5L,target,68,27.2,velocity,upper_uy,-0.5807151198387146 +illusion_1.5L,target,68,27.2,velocity,center_ux,1.0102602243423462 +illusion_1.5L,target,68,27.2,velocity,center_uy,-0.8200219869613647 +illusion_1.5L,target,68,27.2,velocity,lower_ux,0.7355180382728577 +illusion_1.5L,target,68,27.2,velocity,lower_uy,-0.5399388670921326 +illusion_1.5L,target,69,27.6,velocity,upper_ux,1.248854160308838 +illusion_1.5L,target,69,27.6,velocity,upper_uy,-0.5979472994804382 +illusion_1.5L,target,69,27.6,velocity,center_ux,1.0223711729049683 +illusion_1.5L,target,69,27.6,velocity,center_uy,-0.8399795293807983 +illusion_1.5L,target,69,27.6,velocity,lower_ux,0.6503230929374695 +illusion_1.5L,target,69,27.6,velocity,lower_uy,-0.4839577078819275 +illusion_1.5L,target,70,28.0,velocity,upper_ux,1.3417021036148071 +illusion_1.5L,target,70,28.0,velocity,upper_uy,-0.6102693676948547 +illusion_1.5L,target,70,28.0,velocity,center_ux,1.00223708152771 +illusion_1.5L,target,70,28.0,velocity,center_uy,-0.7512637972831726 +illusion_1.5L,target,70,28.0,velocity,lower_ux,0.5649585127830505 +illusion_1.5L,target,70,28.0,velocity,lower_uy,-0.3534752130508423 +illusion_1.5L,target,71,28.4,velocity,upper_ux,1.4365822076797485 +illusion_1.5L,target,71,28.4,velocity,upper_uy,-0.5985901355743408 +illusion_1.5L,target,71,28.4,velocity,center_ux,0.9419405460357666 +illusion_1.5L,target,71,28.4,velocity,center_uy,-0.5068003535270691 +illusion_1.5L,target,71,28.4,velocity,lower_ux,0.5001624822616577 +illusion_1.5L,target,71,28.4,velocity,lower_uy,-0.14822913706302643 +illusion_1.5L,target,72,28.8,velocity,upper_ux,1.4835267066955566 +illusion_1.5L,target,72,28.8,velocity,upper_uy,-0.49208787083625793 +illusion_1.5L,target,72,28.8,velocity,center_ux,0.8661352396011353 +illusion_1.5L,target,72,28.8,velocity,center_uy,-0.1458837240934372 +illusion_1.5L,target,72,28.8,velocity,lower_ux,0.47788888216018677 +illusion_1.5L,target,72,28.8,velocity,lower_uy,0.09185446798801422 +illusion_1.5L,target,73,29.2,velocity,upper_ux,1.4050450325012207 +illusion_1.5L,target,73,29.2,velocity,upper_uy,-0.19737735390663147 +illusion_1.5L,target,73,29.2,velocity,center_ux,0.809216320514679 +illusion_1.5L,target,73,29.2,velocity,center_uy,0.26806604862213135 +illusion_1.5L,target,73,29.2,velocity,lower_ux,0.5138460397720337 +illusion_1.5L,target,73,29.2,velocity,lower_uy,0.29773184657096863 +illusion_1.5L,target,74,29.6,velocity,upper_ux,1.2295342683792114 +illusion_1.5L,target,74,29.6,velocity,upper_uy,0.21137262880802155 +illusion_1.5L,target,74,29.6,velocity,center_ux,0.7968820929527283 +illusion_1.5L,target,74,29.6,velocity,center_uy,0.6148794293403625 +illusion_1.5L,target,74,29.6,velocity,lower_ux,0.6053812503814697 +illusion_1.5L,target,74,29.6,velocity,lower_uy,0.40814781188964844 +illusion_1.5L,target,75,30.0,velocity,upper_ux,1.0826473236083984 +illusion_1.5L,target,75,30.0,velocity,upper_uy,0.48685821890830994 +illusion_1.5L,target,75,30.0,velocity,center_ux,0.8301392197608948 +illusion_1.5L,target,75,30.0,velocity,center_uy,0.750800371170044 +illusion_1.5L,target,75,30.0,velocity,lower_ux,0.7136093974113464 +illusion_1.5L,target,75,30.0,velocity,lower_uy,0.4497324824333191 +illusion_1.5L,target,76,30.4,velocity,upper_ux,1.0064208507537842 +illusion_1.5L,target,76,30.4,velocity,upper_uy,0.5528944134712219 +illusion_1.5L,target,76,30.4,velocity,center_ux,0.8772282600402832 +illusion_1.5L,target,76,30.4,velocity,center_uy,0.7367259860038757 +illusion_1.5L,target,76,30.4,velocity,lower_ux,0.8079172372817993 +illusion_1.5L,target,76,30.4,velocity,lower_uy,0.47875991463661194 +illusion_1.5L,target,77,30.8,velocity,upper_ux,0.9605563879013062 +illusion_1.5L,target,77,30.8,velocity,upper_uy,0.542896568775177 +illusion_1.5L,target,77,30.8,velocity,center_ux,0.9143598079681396 +illusion_1.5L,target,77,30.8,velocity,center_uy,0.7171399593353271 +illusion_1.5L,target,77,30.8,velocity,lower_ux,0.8885895013809204 +illusion_1.5L,target,77,30.8,velocity,lower_uy,0.5038037300109863 +illusion_1.5L,target,78,31.2,velocity,upper_ux,0.9142929911613464 +illusion_1.5L,target,78,31.2,velocity,upper_uy,0.5392348766326904 +illusion_1.5L,target,78,31.2,velocity,center_ux,0.9425844550132751 +illusion_1.5L,target,78,31.2,velocity,center_uy,0.7194859981536865 +illusion_1.5L,target,78,31.2,velocity,lower_ux,0.961373507976532 +illusion_1.5L,target,78,31.2,velocity,lower_uy,0.5253452062606812 +illusion_1.5L,target,79,31.6,velocity,upper_ux,0.8626840710639954 +illusion_1.5L,target,79,31.6,velocity,upper_uy,0.5452439188957214 +illusion_1.5L,target,79,31.6,velocity,center_ux,0.9673944711685181 +illusion_1.5L,target,79,31.6,velocity,center_uy,0.7406268119812012 +illusion_1.5L,target,79,31.6,velocity,lower_ux,1.0314438343048096 +illusion_1.5L,target,79,31.6,velocity,lower_uy,0.5452442765235901 +illusion_1.5L,target,80,32.0,velocity,upper_ux,0.8024754524230957 +illusion_1.5L,target,80,32.0,velocity,upper_uy,0.5504403710365295 +illusion_1.5L,target,80,32.0,velocity,center_ux,0.9920092225074768 +illusion_1.5L,target,80,32.0,velocity,center_uy,0.7788465023040771 +illusion_1.5L,target,80,32.0,velocity,lower_ux,1.1029906272888184 +illusion_1.5L,target,80,32.0,velocity,lower_uy,0.5644548535346985 +illusion_1.5L,target,81,32.4,velocity,upper_ux,0.7285049557685852 +illusion_1.5L,target,81,32.4,velocity,upper_uy,0.5361304879188538 +illusion_1.5L,target,81,32.4,velocity,center_ux,1.0147786140441895 +illusion_1.5L,target,81,32.4,velocity,center_uy,0.8251998424530029 +illusion_1.5L,target,81,32.4,velocity,lower_ux,1.1787978410720825 +illusion_1.5L,target,81,32.4,velocity,lower_uy,0.5830413699150085 +illusion_1.5L,target,82,32.8,velocity,upper_ux,0.6409216523170471 +illusion_1.5L,target,82,32.8,velocity,upper_uy,0.4719284176826477 +illusion_1.5L,target,82,32.8,velocity,center_ux,1.0227134227752686 +illusion_1.5L,target,82,32.8,velocity,center_uy,0.836880087852478 +illusion_1.5L,target,82,32.8,velocity,lower_ux,1.2609984874725342 +illusion_1.5L,target,82,32.8,velocity,lower_uy,0.5999061465263367 +illusion_1.5L,target,83,33.2,velocity,upper_ux,0.5545250177383423 +illusion_1.5L,target,83,33.2,velocity,upper_uy,0.33130982518196106 +illusion_1.5L,target,83,33.2,velocity,center_ux,0.9950144290924072 +illusion_1.5L,target,83,33.2,velocity,center_uy,0.7288910150527954 +illusion_1.5L,target,83,33.2,velocity,lower_ux,1.3527963161468506 +illusion_1.5L,target,83,33.2,velocity,lower_uy,0.6106618046760559 +illusion_1.5L,target,84,33.6,velocity,upper_ux,0.4933084547519684 +illusion_1.5L,target,84,33.6,velocity,upper_uy,0.11928267776966095 +illusion_1.5L,target,84,33.6,velocity,center_ux,0.9307363629341125 +illusion_1.5L,target,84,33.6,velocity,center_uy,0.46693289279937744 +illusion_1.5L,target,84,33.6,velocity,lower_ux,1.4449647665023804 +illusion_1.5L,target,84,33.6,velocity,lower_uy,0.5922567844390869 +illusion_1.5L,target,85,34.0,velocity,upper_ux,0.4789189100265503 +illusion_1.5L,target,85,34.0,velocity,upper_uy,-0.12046382576227188 +illusion_1.5L,target,85,34.0,velocity,center_ux,0.8572542071342468 +illusion_1.5L,target,85,34.0,velocity,center_uy,0.095970518887043 +illusion_1.5L,target,85,34.0,velocity,lower_ux,1.4815722703933716 +illusion_1.5L,target,85,34.0,velocity,lower_uy,0.46661412715911865 +illusion_1.5L,target,86,34.4,velocity,upper_ux,0.5246908068656921 +illusion_1.5L,target,86,34.4,velocity,upper_uy,-0.3170589506626129 +illusion_1.5L,target,86,34.4,velocity,center_ux,0.8070001006126404 +illusion_1.5L,target,86,34.4,velocity,center_uy,-0.31825578212738037 +illusion_1.5L,target,86,34.4,velocity,lower_ux,1.3884148597717285 +illusion_1.5L,target,86,34.4,velocity,lower_uy,0.14848490059375763 +illusion_1.5L,target,87,34.8,velocity,upper_ux,0.6213386058807373 +illusion_1.5L,target,87,34.8,velocity,upper_uy,-0.41556793451309204 +illusion_1.5L,target,87,34.8,velocity,center_ux,0.8012370467185974 +illusion_1.5L,target,87,34.8,velocity,center_uy,-0.6450596451759338 +illusion_1.5L,target,87,34.8,velocity,lower_ux,1.2096656560897827 +illusion_1.5L,target,87,34.8,velocity,lower_uy,-0.2573982775211334 +illusion_1.5L,target,88,35.2,velocity,upper_ux,0.7266084551811218 +illusion_1.5L,target,88,35.2,velocity,upper_uy,-0.45355120301246643 +illusion_1.5L,target,88,35.2,velocity,center_ux,0.8362485766410828 +illusion_1.5L,target,88,35.2,velocity,center_uy,-0.7530875205993652 +illusion_1.5L,target,88,35.2,velocity,lower_ux,1.0693951845169067 +illusion_1.5L,target,88,35.2,velocity,lower_uy,-0.5042548179626465 +illusion_1.5L,target,89,35.6,velocity,upper_ux,0.8169419765472412 +illusion_1.5L,target,89,35.6,velocity,upper_uy,-0.48210784792900085 +illusion_1.5L,target,89,35.6,velocity,center_ux,0.8808408379554749 +illusion_1.5L,target,89,35.6,velocity,center_uy,-0.7326245307922363 +illusion_1.5L,target,89,35.6,velocity,lower_ux,0.9980136156082153 +illusion_1.5L,target,89,35.6,velocity,lower_uy,-0.5520555973052979 +illusion_1.5L,target,90,36.0,velocity,upper_ux,0.8965298533439636 +illusion_1.5L,target,90,36.0,velocity,upper_uy,-0.5065721273422241 +illusion_1.5L,target,90,36.0,velocity,center_ux,0.9167895317077637 +illusion_1.5L,target,90,36.0,velocity,center_uy,-0.7158876061439514 +illusion_1.5L,target,90,36.0,velocity,lower_ux,0.9535009264945984 +illusion_1.5L,target,90,36.0,velocity,lower_uy,-0.5409404039382935 +illusion_1.5L,target,91,36.4,velocity,upper_ux,0.9706947803497314 +illusion_1.5L,target,91,36.4,velocity,upper_uy,-0.5278003215789795 +illusion_1.5L,target,91,36.4,velocity,center_ux,0.946244478225708 +illusion_1.5L,target,91,36.4,velocity,center_uy,-0.7207011580467224 +illusion_1.5L,target,91,36.4,velocity,lower_ux,0.9087527990341187 +illusion_1.5L,target,91,36.4,velocity,lower_uy,-0.538913369178772 +illusion_1.5L,target,92,36.8,velocity,upper_ux,1.0424745082855225 +illusion_1.5L,target,92,36.8,velocity,upper_uy,-0.5476027727127075 +illusion_1.5L,target,92,36.8,velocity,center_ux,0.9724575281143188 +illusion_1.5L,target,92,36.8,velocity,center_uy,-0.7442154884338379 +illusion_1.5L,target,92,36.8,velocity,lower_ux,0.8578646779060364 +illusion_1.5L,target,92,36.8,velocity,lower_uy,-0.5454540252685547 +illusion_1.5L,target,93,37.2,velocity,upper_ux,1.1136168241500854 +illusion_1.5L,target,93,37.2,velocity,upper_uy,-0.5667444467544556 +illusion_1.5L,target,93,37.2,velocity,center_ux,0.9961463809013367 +illusion_1.5L,target,93,37.2,velocity,center_uy,-0.7845703959465027 +illusion_1.5L,target,93,37.2,velocity,lower_ux,0.7950760126113892 +illusion_1.5L,target,93,37.2,velocity,lower_uy,-0.5494732856750488 +illusion_1.5L,target,94,37.6,velocity,upper_ux,1.1877278089523315 +illusion_1.5L,target,94,37.6,velocity,upper_uy,-0.5850796699523926 +illusion_1.5L,target,94,37.6,velocity,center_ux,1.015867829322815 +illusion_1.5L,target,94,37.6,velocity,center_uy,-0.8300572037696838 +illusion_1.5L,target,94,37.6,velocity,lower_ux,0.7167409658432007 +illusion_1.5L,target,94,37.6,velocity,lower_uy,-0.5307903289794922 +illusion_1.5L,target,95,38.0,velocity,upper_ux,1.2697988748550415 +illusion_1.5L,target,95,38.0,velocity,upper_uy,-0.6014372110366821 +illusion_1.5L,target,95,38.0,velocity,center_ux,1.0197409391403198 +illusion_1.5L,target,95,38.0,velocity,center_uy,-0.8314660787582397 +illusion_1.5L,target,95,38.0,velocity,lower_ux,0.627342164516449 +illusion_1.5L,target,95,38.0,velocity,lower_uy,-0.45845329761505127 +illusion_1.5L,target,96,38.4,velocity,upper_ux,1.3635917901992798 +illusion_1.5L,target,96,38.4,velocity,upper_uy,-0.6105985045433044 +illusion_1.5L,target,96,38.4,velocity,center_ux,0.9883038401603699 +illusion_1.5L,target,96,38.4,velocity,center_uy,-0.7043710350990295 +illusion_1.5L,target,96,38.4,velocity,lower_ux,0.5439924001693726 +illusion_1.5L,target,96,38.4,velocity,lower_uy,-0.3084578216075897 +illusion_1.5L,target,97,38.8,velocity,upper_ux,1.4552937746047974 +illusion_1.5L,target,97,38.8,velocity,upper_uy,-0.5849010348320007 +illusion_1.5L,target,97,38.8,velocity,center_ux,0.9231963157653809 +illusion_1.5L,target,97,38.8,velocity,center_uy,-0.42641228437423706 +illusion_1.5L,target,97,38.8,velocity,lower_ux,0.48967617750167847 +illusion_1.5L,target,97,38.8,velocity,lower_uy,-0.09017950296401978 +illusion_1.5L,target,98,39.2,velocity,upper_ux,1.4797238111495972 +illusion_1.5L,target,98,39.2,velocity,upper_uy,-0.43875378370285034 +illusion_1.5L,target,98,39.2,velocity,center_ux,0.8511733412742615 +illusion_1.5L,target,98,39.2,velocity,center_uy,-0.04550577327609062 +illusion_1.5L,target,98,39.2,velocity,lower_ux,0.4828914701938629 +illusion_1.5L,target,98,39.2,velocity,lower_uy,0.14871449768543243 +illusion_1.5L,target,99,39.6,velocity,upper_ux,1.3683297634124756 +illusion_1.5L,target,99,39.6,velocity,upper_uy,-0.09857747703790665 +illusion_1.5L,target,99,39.6,velocity,center_ux,0.8034577369689941 +illusion_1.5L,target,99,39.6,velocity,center_uy,0.36725175380706787 +illusion_1.5L,target,99,39.6,velocity,lower_ux,0.5346273183822632 +illusion_1.5L,target,99,39.6,velocity,lower_uy,0.3347446322441101 +illusion_1.5L,target,100,40.0,velocity,upper_ux,1.1864742040634155 +illusion_1.5L,target,100,40.0,velocity,upper_uy,0.29967114329338074 +illusion_1.5L,target,100,40.0,velocity,center_ux,0.8015901446342468 +illusion_1.5L,target,100,40.0,velocity,center_uy,0.6709107160568237 +illusion_1.5L,target,100,40.0,velocity,lower_ux,0.6329469084739685 +illusion_1.5L,target,100,40.0,velocity,lower_uy,0.4216840863227844 +illusion_1.5L,target,101,40.4,velocity,upper_ux,1.0555145740509033 +illusion_1.5L,target,101,40.4,velocity,upper_uy,0.5184288024902344 +illusion_1.5L,target,101,40.4,velocity,center_ux,0.8396698236465454 +illusion_1.5L,target,101,40.4,velocity,center_uy,0.753715455532074 +illusion_1.5L,target,101,40.4,velocity,lower_ux,0.7366286516189575 +illusion_1.5L,target,101,40.4,velocity,lower_uy,0.45696812868118286 +illusion_1.5L,target,102,40.8,velocity,upper_ux,0.9918606281280518 +illusion_1.5L,target,102,40.8,velocity,upper_uy,0.5516778826713562 +illusion_1.5L,target,102,40.8,velocity,center_ux,0.8854438662528992 +illusion_1.5L,target,102,40.8,velocity,center_uy,0.7295294404029846 +illusion_1.5L,target,102,40.8,velocity,lower_ux,0.8270249962806702 +illusion_1.5L,target,102,40.8,velocity,lower_uy,0.4851491153240204 +illusion_1.5L,target,103,41.2,velocity,upper_ux,0.9498416185379028 +illusion_1.5L,target,103,41.2,velocity,upper_uy,0.5403301119804382 +illusion_1.5L,target,103,41.2,velocity,center_ux,0.922249972820282 +illusion_1.5L,target,103,41.2,velocity,center_uy,0.715603232383728 +illusion_1.5L,target,103,41.2,velocity,lower_ux,0.9076317548751831 +illusion_1.5L,target,103,41.2,velocity,lower_uy,0.5092005133628845 +illusion_1.5L,target,104,41.6,velocity,upper_ux,0.9039493799209595 +illusion_1.5L,target,104,41.6,velocity,upper_uy,0.539799690246582 +illusion_1.5L,target,104,41.6,velocity,center_ux,0.950813353061676 +illusion_1.5L,target,104,41.6,velocity,center_uy,0.7228965163230896 +illusion_1.5L,target,104,41.6,velocity,lower_ux,0.9810139536857605 +illusion_1.5L,target,104,41.6,velocity,lower_uy,0.5302579998970032 +illusion_1.5L,target,105,42.0,velocity,upper_ux,0.849673330783844 +illusion_1.5L,target,105,42.0,velocity,upper_uy,0.5467753410339355 +illusion_1.5L,target,105,42.0,velocity,center_ux,0.9746530652046204 +illusion_1.5L,target,105,42.0,velocity,center_uy,0.7486423254013062 +illusion_1.5L,target,105,42.0,velocity,lower_ux,1.0504109859466553 +illusion_1.5L,target,105,42.0,velocity,lower_uy,0.5499594211578369 +illusion_1.5L,target,106,42.4,velocity,upper_ux,0.7839706540107727 +illusion_1.5L,target,106,42.4,velocity,upper_uy,0.5494434237480164 +illusion_1.5L,target,106,42.4,velocity,center_ux,0.9970095157623291 +illusion_1.5L,target,106,42.4,velocity,center_uy,0.7904850840568542 +illusion_1.5L,target,106,42.4,velocity,lower_ux,1.120347023010254 +illusion_1.5L,target,106,42.4,velocity,lower_uy,0.5690191388130188 +illusion_1.5L,target,107,42.8,velocity,upper_ux,0.7048583030700684 +illusion_1.5L,target,107,42.8,velocity,upper_uy,0.5261677503585815 +illusion_1.5L,target,107,42.8,velocity,center_ux,1.0167229175567627 +illusion_1.5L,target,107,42.8,velocity,center_uy,0.834102988243103 +illusion_1.5L,target,107,42.8,velocity,lower_ux,1.1958560943603516 +illusion_1.5L,target,107,42.8,velocity,lower_uy,0.587278425693512 +illusion_1.5L,target,108,43.2,velocity,upper_ux,0.6172134876251221 +illusion_1.5L,target,108,43.2,velocity,upper_uy,0.44523173570632935 +illusion_1.5L,target,108,43.2,velocity,center_ux,1.0192923545837402 +illusion_1.5L,target,108,43.2,velocity,center_uy,0.8244888782501221 +illusion_1.5L,target,108,43.2,velocity,lower_ux,1.2812888622283936 +illusion_1.5L,target,108,43.2,velocity,lower_uy,0.6033732891082764 +illusion_1.5L,target,109,43.6,velocity,upper_ux,0.5370931029319763 +illusion_1.5L,target,109,43.6,velocity,upper_uy,0.2851465940475464 +illusion_1.5L,target,109,43.6,velocity,center_ux,0.9837175011634827 +illusion_1.5L,target,109,43.6,velocity,center_uy,0.6782711744308472 +illusion_1.5L,target,109,43.6,velocity,lower_ux,1.3774513006210327 +illusion_1.5L,target,109,43.6,velocity,lower_uy,0.6108660101890564 +illusion_1.5L,target,110,44.0,velocity,upper_ux,0.4862760305404663 +illusion_1.5L,target,110,44.0,velocity,upper_uy,0.06061235070228577 +illusion_1.5L,target,110,44.0,velocity,center_ux,0.9143591523170471 +illusion_1.5L,target,110,44.0,velocity,center_uy,0.38433483242988586 +illusion_1.5L,target,110,44.0,velocity,lower_ux,1.464298963546753 +illusion_1.5L,target,110,44.0,velocity,lower_uy,0.5762237310409546 +illusion_1.5L,target,111,44.4,velocity,upper_ux,0.4843064546585083 +illusion_1.5L,target,111,44.4,velocity,upper_uy,-0.17597320675849915 +illusion_1.5L,target,111,44.4,velocity,center_ux,0.8417845964431763 +illusion_1.5L,target,111,44.4,velocity,center_uy,-0.005039234645664692 +illusion_1.5L,target,111,44.4,velocity,lower_ux,1.4719260931015015 +illusion_1.5L,target,111,44.4,velocity,lower_uy,0.4073667824268341 +illusion_1.5L,target,112,44.8,velocity,upper_ux,0.5427534580230713 +illusion_1.5L,target,112,44.8,velocity,upper_uy,-0.3505435883998871 +illusion_1.5L,target,112,44.8,velocity,center_ux,0.7987766861915588 +illusion_1.5L,target,112,44.8,velocity,center_uy,-0.41310423612594604 +illusion_1.5L,target,112,44.8,velocity,lower_ux,1.3450959920883179 +illusion_1.5L,target,112,44.8,velocity,lower_uy,0.047519683837890625 +illusion_1.5L,target,113,45.2,velocity,upper_ux,0.6454399228096008 +illusion_1.5L,target,113,45.2,velocity,upper_uy,-0.42739295959472656 +illusion_1.5L,target,113,45.2,velocity,center_ux,0.8044707775115967 +illusion_1.5L,target,113,45.2,velocity,center_uy,-0.6924501657485962 +illusion_1.5L,target,113,45.2,velocity,lower_ux,1.166479229927063 +illusion_1.5L,target,113,45.2,velocity,lower_uy,-0.3391508460044861 +illusion_1.5L,target,114,45.6,velocity,upper_ux,0.7497733235359192 +illusion_1.5L,target,114,45.6,velocity,upper_uy,-0.46071329712867737 +illusion_1.5L,target,114,45.6,velocity,center_ux,0.8472018241882324 +illusion_1.5L,target,114,45.6,velocity,center_uy,-0.7530598640441895 +illusion_1.5L,target,114,45.6,velocity,lower_ux,1.0470603704452515 +illusion_1.5L,target,114,45.6,velocity,lower_uy,-0.5301460027694702 +illusion_1.5L,target,115,46.0,velocity,upper_ux,0.8388549089431763 +illusion_1.5L,target,115,46.0,velocity,upper_uy,-0.4884633719921112 +illusion_1.5L,target,115,46.0,velocity,center_ux,0.8921920657157898 +illusion_1.5L,target,115,46.0,velocity,center_uy,-0.7268800139427185 +illusion_1.5L,target,115,46.0,velocity,lower_ux,0.9883612990379333 +illusion_1.5L,target,115,46.0,velocity,lower_uy,-0.5509389638900757 +illusion_1.5L,target,116,46.4,velocity,upper_ux,0.9165101051330566 +illusion_1.5L,target,116,46.4,velocity,upper_uy,-0.5120115280151367 +illusion_1.5L,target,116,46.4,velocity,center_ux,0.9258707165718079 +illusion_1.5L,target,116,46.4,velocity,center_uy,-0.7157036662101746 +illusion_1.5L,target,116,46.4,velocity,lower_ux,0.9444299936294556 +illusion_1.5L,target,116,46.4,velocity,lower_uy,-0.5399847626686096 +illusion_1.5L,target,117,46.8,velocity,upper_ux,0.9877113103866577 +illusion_1.5L,target,117,46.8,velocity,upper_uy,-0.5327833294868469 +illusion_1.5L,target,117,46.8,velocity,center_ux,0.9522699117660522 +illusion_1.5L,target,117,46.8,velocity,center_uy,-0.7252213358879089 +illusion_1.5L,target,117,46.8,velocity,lower_ux,0.8962962627410889 +illusion_1.5L,target,117,46.8,velocity,lower_uy,-0.5408338308334351 +illusion_1.5L,target,118,47.2,velocity,upper_ux,1.0574150085449219 +illusion_1.5L,target,118,47.2,velocity,upper_uy,-0.5523785352706909 +illusion_1.5L,target,118,47.2,velocity,center_ux,0.9763330221176147 +illusion_1.5L,target,118,47.2,velocity,center_uy,-0.7529569864273071 +illusion_1.5L,target,118,47.2,velocity,lower_ux,0.8415449261665344 +illusion_1.5L,target,118,47.2,velocity,lower_uy,-0.5480433106422424 +illusion_1.5L,target,119,47.6,velocity,upper_ux,1.129745602607727 +illusion_1.5L,target,119,47.6,velocity,upper_uy,-0.5713919401168823 +illusion_1.5L,target,119,47.6,velocity,center_ux,1.000438928604126 +illusion_1.5L,target,119,47.6,velocity,center_uy,-0.7961685061454773 +illusion_1.5L,target,119,47.6,velocity,lower_ux,0.7763200998306274 +illusion_1.5L,target,119,47.6,velocity,lower_uy,-0.5489306449890137 +illusion_1.5L,target,120,48.0,velocity,upper_ux,1.207716941833496 +illusion_1.5L,target,120,48.0,velocity,upper_uy,-0.589561402797699 +illusion_1.5L,target,120,48.0,velocity,center_ux,1.0202438831329346 +illusion_1.5L,target,120,48.0,velocity,center_uy,-0.8375729918479919 +illusion_1.5L,target,120,48.0,velocity,lower_ux,0.6968982219696045 +illusion_1.5L,target,120,48.0,velocity,lower_uy,-0.520210325717926 +illusion_1.5L,target,121,48.4,velocity,upper_ux,1.2937835454940796 +illusion_1.5L,target,121,48.4,velocity,upper_uy,-0.6051347851753235 +illusion_1.5L,target,121,48.4,velocity,center_ux,1.0177922248840332 +illusion_1.5L,target,121,48.4,velocity,center_uy,-0.8152722716331482 +illusion_1.5L,target,121,48.4,velocity,lower_ux,0.60789555311203 +illusion_1.5L,target,121,48.4,velocity,lower_uy,-0.42981913685798645 +illusion_1.5L,target,122,48.8,velocity,upper_ux,1.3887388706207275 +illusion_1.5L,target,122,48.8,velocity,upper_uy,-0.6100167036056519 +illusion_1.5L,target,122,48.8,velocity,center_ux,0.9750379920005798 +illusion_1.5L,target,122,48.8,velocity,center_uy,-0.648806631565094 +illusion_1.5L,target,122,48.8,velocity,lower_ux,0.528141438961029 +illusion_1.5L,target,122,48.8,velocity,lower_uy,-0.26000726222991943 +illusion_1.5L,target,123,49.2,velocity,upper_ux,1.4699379205703735 +illusion_1.5L,target,123,49.2,velocity,upper_uy,-0.564612627029419 +illusion_1.5L,target,123,49.2,velocity,center_ux,0.9031141400337219 +illusion_1.5L,target,123,49.2,velocity,center_uy,-0.34004202485084534 +illusion_1.5L,target,123,49.2,velocity,lower_ux,0.4818097949028015 +illusion_1.5L,target,123,49.2,velocity,lower_uy,-0.030811011791229248 +illusion_1.5L,target,124,49.6,velocity,upper_ux,1.4633177518844604 +illusion_1.5L,target,124,49.6,velocity,upper_uy,-0.37230515480041504 +illusion_1.5L,target,124,49.6,velocity,center_ux,0.8341568112373352 +illusion_1.5L,target,124,49.6,velocity,center_uy,0.05647028982639313 +illusion_1.5L,target,124,49.6,velocity,lower_ux,0.48806193470954895 +illusion_1.5L,target,124,49.6,velocity,lower_uy,0.202156201004982 +illusion_1.5L,target,125,50.0,velocity,upper_ux,1.324691891670227 +illusion_1.5L,target,125,50.0,velocity,upper_uy,0.004661120939999819 +illusion_1.5L,target,125,50.0,velocity,center_ux,0.7985627055168152 +illusion_1.5L,target,125,50.0,velocity,center_uy,0.4581884741783142 +illusion_1.5L,target,125,50.0,velocity,lower_ux,0.5555517673492432 +illusion_1.5L,target,125,50.0,velocity,lower_uy,0.3649335205554962 +illusion_1.5L,target,126,50.4,velocity,upper_ux,1.1492338180541992 +illusion_1.5L,target,126,50.4,velocity,upper_uy,0.37580350041389465 +illusion_1.5L,target,126,50.4,velocity,center_ux,0.8106011748313904 +illusion_1.5L,target,126,50.4,velocity,center_uy,0.7109838724136353 +illusion_1.5L,target,126,50.4,velocity,lower_ux,0.6610906720161438 +illusion_1.5L,target,126,50.4,velocity,lower_uy,0.43260452151298523 +illusion_1.5L,target,127,50.8,velocity,upper_ux,1.0373567342758179 +illusion_1.5L,target,127,50.8,velocity,upper_uy,0.5383691191673279 +illusion_1.5L,target,127,50.8,velocity,center_ux,0.853609025478363 +illusion_1.5L,target,127,50.8,velocity,center_uy,0.7505747079849243 +illusion_1.5L,target,127,50.8,velocity,lower_ux,0.7619278430938721 +illusion_1.5L,target,127,50.8,velocity,lower_uy,0.4644617438316345 +illusion_1.5L,target,128,51.2,velocity,upper_ux,0.9812580347061157 +illusion_1.5L,target,128,51.2,velocity,upper_uy,0.5487300753593445 +illusion_1.5L,target,128,51.2,velocity,center_ux,0.8956010937690735 +illusion_1.5L,target,128,51.2,velocity,center_uy,0.7238240242004395 +illusion_1.5L,target,128,51.2,velocity,lower_ux,0.8475788831710815 +illusion_1.5L,target,128,51.2,velocity,lower_uy,0.4916519820690155 +illusion_1.5L,target,129,51.6,velocity,upper_ux,0.9375547170639038 +illusion_1.5L,target,129,51.6,velocity,upper_uy,0.5388185381889343 +illusion_1.5L,target,129,51.6,velocity,center_ux,0.928213357925415 +illusion_1.5L,target,129,51.6,velocity,center_uy,0.7154781818389893 +illusion_1.5L,target,129,51.6,velocity,lower_ux,0.9242971539497375 +illusion_1.5L,target,129,51.6,velocity,lower_uy,0.5146849155426025 +illusion_1.5L,target,130,52.0,velocity,upper_ux,0.890529990196228 +illusion_1.5L,target,130,52.0,velocity,upper_uy,0.5409653186798096 +illusion_1.5L,target,130,52.0,velocity,center_ux,0.955739438533783 +illusion_1.5L,target,130,52.0,velocity,center_uy,0.7273186445236206 +illusion_1.5L,target,130,52.0,velocity,lower_ux,0.9967858791351318 +illusion_1.5L,target,130,52.0,velocity,lower_uy,0.5352175235748291 +illusion_1.5L,target,131,52.4,velocity,upper_ux,0.8361025452613831 +illusion_1.5L,target,131,52.4,velocity,upper_uy,0.548176109790802 +illusion_1.5L,target,131,52.4,velocity,center_ux,0.9810829162597656 +illusion_1.5L,target,131,52.4,velocity,center_uy,0.7573381662368774 +illusion_1.5L,target,131,52.4,velocity,lower_ux,1.0681397914886475 +illusion_1.5L,target,131,52.4,velocity,lower_uy,0.5547337532043457 +illusion_1.5L,target,132,52.8,velocity,upper_ux,0.7683408260345459 +illusion_1.5L,target,132,52.8,velocity,upper_uy,0.546868085861206 +illusion_1.5L,target,132,52.8,velocity,center_ux,1.0043530464172363 +illusion_1.5L,target,132,52.8,velocity,center_uy,0.8021354079246521 +illusion_1.5L,target,132,52.8,velocity,lower_ux,1.1404365301132202 +illusion_1.5L,target,132,52.8,velocity,lower_uy,0.5736580491065979 +illusion_1.5L,target,133,53.2,velocity,upper_ux,0.6850714683532715 +illusion_1.5L,target,133,53.2,velocity,upper_uy,0.5122268199920654 +illusion_1.5L,target,133,53.2,velocity,center_ux,1.0206853151321411 +illusion_1.5L,target,133,53.2,velocity,center_uy,0.8401275873184204 +illusion_1.5L,target,133,53.2,velocity,lower_ux,1.2172337770462036 +illusion_1.5L,target,133,53.2,velocity,lower_uy,0.5915102362632751 +illusion_1.5L,target,134,53.6,velocity,upper_ux,0.5951572060585022 +illusion_1.5L,target,134,53.6,velocity,upper_uy,0.41262561082839966 +illusion_1.5L,target,134,53.6,velocity,center_ux,1.0131666660308838 +illusion_1.5L,target,134,53.6,velocity,center_uy,0.8032084107398987 +illusion_1.5L,target,134,53.6,velocity,lower_ux,1.3034400939941406 +illusion_1.5L,target,134,53.6,velocity,lower_uy,0.6063138842582703 +illusion_1.5L,target,135,54.0,velocity,upper_ux,0.5193384289741516 +illusion_1.5L,target,135,54.0,velocity,upper_uy,0.23408451676368713 +illusion_1.5L,target,135,54.0,velocity,center_ux,0.9667732119560242 +illusion_1.5L,target,135,54.0,velocity,center_uy,0.6173370480537415 +illusion_1.5L,target,135,54.0,velocity,lower_ux,1.3996104001998901 +illusion_1.5L,target,135,54.0,velocity,lower_uy,0.6082541942596436 +illusion_1.5L,target,136,54.4,velocity,upper_ux,0.4804629981517792 +illusion_1.5L,target,136,54.4,velocity,upper_uy,0.000993182766251266 +illusion_1.5L,target,136,54.4,velocity,center_ux,0.8951608538627625 +illusion_1.5L,target,136,54.4,velocity,center_uy,0.29493287205696106 +illusion_1.5L,target,136,54.4,velocity,lower_ux,1.476752519607544 +illusion_1.5L,target,136,54.4,velocity,lower_uy,0.5511099100112915 +illusion_1.5L,target,137,54.8,velocity,upper_ux,0.494841068983078 +illusion_1.5L,target,137,54.8,velocity,upper_uy,-0.22752279043197632 +illusion_1.5L,target,137,54.8,velocity,center_ux,0.8291670083999634 +illusion_1.5L,target,137,54.8,velocity,center_uy,-0.1084921658039093 +illusion_1.5L,target,137,54.8,velocity,lower_ux,1.4545996189117432 +illusion_1.5L,target,137,54.8,velocity,lower_uy,0.334635853767395 +illusion_1.5L,target,138,55.2,velocity,upper_ux,0.5678473711013794 +illusion_1.5L,target,138,55.2,velocity,upper_uy,-0.3776262402534485 +illusion_1.5L,target,138,55.2,velocity,center_ux,0.7973979711532593 +illusion_1.5L,target,138,55.2,velocity,center_uy,-0.5014255046844482 +illusion_1.5L,target,138,55.2,velocity,lower_ux,1.302126169204712 +illusion_1.5L,target,138,55.2,velocity,lower_uy,-0.056294430047273636 +illusion_1.5L,target,139,55.6,velocity,upper_ux,0.6730040907859802 +illusion_1.5L,target,139,55.6,velocity,upper_uy,-0.43695303797721863 +illusion_1.5L,target,139,55.6,velocity,center_ux,0.8131296038627625 +illusion_1.5L,target,139,55.6,velocity,center_uy,-0.725691556930542 +illusion_1.5L,target,139,55.6,velocity,lower_ux,1.1293801069259644 +illusion_1.5L,target,139,55.6,velocity,lower_uy,-0.4081665873527527 +illusion_1.5L,target,140,56.0,velocity,upper_ux,0.7716243863105774 +illusion_1.5L,target,140,56.0,velocity,upper_uy,-0.4678061604499817 +illusion_1.5L,target,140,56.0,velocity,center_ux,0.8574432134628296 +illusion_1.5L,target,140,56.0,velocity,center_uy,-0.7475703358650208 +illusion_1.5L,target,140,56.0,velocity,lower_ux,1.0265623331069946 +illusion_1.5L,target,140,56.0,velocity,lower_uy,-0.5444106459617615 +illusion_1.5L,target,141,56.4,velocity,upper_ux,0.8573466539382935 +illusion_1.5L,target,141,56.4,velocity,upper_uy,-0.494528204202652 +illusion_1.5L,target,141,56.4,velocity,center_ux,0.899817943572998 +illusion_1.5L,target,141,56.4,velocity,center_uy,-0.7215512990951538 +illusion_1.5L,target,141,56.4,velocity,lower_ux,0.9755966663360596 +illusion_1.5L,target,141,56.4,velocity,lower_uy,-0.5471544861793518 +illusion_1.5L,target,142,56.8,velocity,upper_ux,0.9349760413169861 +illusion_1.5L,target,142,56.8,velocity,upper_uy,-0.5172114372253418 +illusion_1.5L,target,142,56.8,velocity,center_ux,0.9331793189048767 +illusion_1.5L,target,142,56.8,velocity,center_uy,-0.7159496545791626 +illusion_1.5L,target,142,56.8,velocity,lower_ux,0.9333653450012207 +illusion_1.5L,target,142,56.8,velocity,lower_uy,-0.5385423898696899 +illusion_1.5L,target,143,57.2,velocity,upper_ux,1.006939172744751 +illusion_1.5L,target,143,57.2,velocity,upper_uy,-0.5376238822937012 +illusion_1.5L,target,143,57.2,velocity,center_ux,0.9600570201873779 +illusion_1.5L,target,143,57.2,velocity,center_uy,-0.7302140593528748 +illusion_1.5L,target,143,57.2,velocity,lower_ux,0.8852067589759827 +illusion_1.5L,target,143,57.2,velocity,lower_uy,-0.5418539047241211 +illusion_1.5L,target,144,57.6,velocity,upper_ux,1.07636296749115 +illusion_1.5L,target,144,57.6,velocity,upper_uy,-0.5570532083511353 +illusion_1.5L,target,144,57.6,velocity,center_ux,0.9833979606628418 +illusion_1.5L,target,144,57.6,velocity,center_uy,-0.7624170184135437 +illusion_1.5L,target,144,57.6,velocity,lower_ux,0.8274661898612976 +illusion_1.5L,target,144,57.6,velocity,lower_uy,-0.5489621162414551 +illusion_1.5L,target,145,58.0,velocity,upper_ux,1.1477452516555786 +illusion_1.5L,target,145,58.0,velocity,upper_uy,-0.5758711099624634 +illusion_1.5L,target,145,58.0,velocity,center_ux,1.0053333044052124 +illusion_1.5L,target,145,58.0,velocity,center_uy,-0.8080668449401855 +illusion_1.5L,target,145,58.0,velocity,lower_ux,0.7567259073257446 +illusion_1.5L,target,145,58.0,velocity,lower_uy,-0.54525226354599 +illusion_1.5L,target,146,58.4,velocity,upper_ux,1.2259737253189087 +illusion_1.5L,target,146,58.4,velocity,upper_uy,-0.5935664176940918 +illusion_1.5L,target,146,58.4,velocity,center_ux,1.0207704305648804 +illusion_1.5L,target,146,58.4,velocity,center_uy,-0.8414337635040283 +illusion_1.5L,target,146,58.4,velocity,lower_ux,0.6727541089057922 +illusion_1.5L,target,146,58.4,velocity,lower_uy,-0.5044964551925659 +illusion_1.5L,target,147,58.8,velocity,upper_ux,1.3153126239776611 +illusion_1.5L,target,147,58.8,velocity,upper_uy,-0.6078177094459534 +illusion_1.5L,target,147,58.8,velocity,center_ux,1.0106934309005737 +illusion_1.5L,target,147,58.8,velocity,center_uy,-0.7893824577331543 +illusion_1.5L,target,147,58.8,velocity,lower_ux,0.5851415395736694 +illusion_1.5L,target,147,58.8,velocity,lower_uy,-0.39540308713912964 +illusion_1.5L,target,148,59.2,velocity,upper_ux,1.4127938747406006 +illusion_1.5L,target,148,59.2,velocity,upper_uy,-0.6064789891242981 +illusion_1.5L,target,148,59.2,velocity,center_ux,0.9605550169944763 +illusion_1.5L,target,148,59.2,velocity,center_uy,-0.5845776796340942 +illusion_1.5L,target,148,59.2,velocity,lower_ux,0.5135458111763 +illusion_1.5L,target,148,59.2,velocity,lower_uy,-0.2077399641275406 +illusion_1.5L,target,149,59.6,velocity,upper_ux,1.4815151691436768 +illusion_1.5L,target,149,59.6,velocity,upper_uy,-0.5355732440948486 +illusion_1.5L,target,149,59.6,velocity,center_ux,0.886430025100708 +illusion_1.5L,target,149,59.6,velocity,center_uy,-0.24880251288414001 +illusion_1.5L,target,149,59.6,velocity,lower_ux,0.47928550839424133 +illusion_1.5L,target,149,59.6,velocity,lower_uy,0.028904428705573082 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_wide.csv new file mode 100644 index 0000000..e02f021 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1.5L,target,0,0.0,0.9475906491279602,0.5402640700340271,0.9212831258773804,0.7155839800834656,0.9072030782699585,0.5097668170928955 +illusion_1.5L,target,1,0.4,0.9007688164710999,0.5399243235588074,0.9486919641494751,0.7230756878852844,0.9793373346328735,0.5306901335716248 +illusion_1.5L,target,2,0.8,0.8489206433296204,0.5468649864196777,0.9747264981269836,0.7489402294158936,1.0510083436965942,0.5503425002098083 +illusion_1.5L,target,3,1.2,0.7858652472496033,0.5491753220558167,0.9996874928474426,0.7911074757575989,1.1239981651306152,0.5694438219070435 +illusion_1.5L,target,4,1.6,0.7064404487609863,0.5248503684997559,1.0191329717636108,0.8347819447517395,1.2000771760940552,0.5876644253730774 +illusion_1.5L,target,5,2.0,0.6159781813621521,0.4422197639942169,1.0183806419372559,0.823106050491333,1.2833515405654907,0.6034879088401794 +illusion_1.5L,target,6,2.4,0.5338099002838135,0.2808876931667328,0.9797701239585876,0.6732420921325684,1.377121925354004,0.6102598905563354 +illusion_1.5L,target,7,2.8,0.48431697487831116,0.056272607296705246,0.9110705852508545,0.37739360332489014,1.4636286497116089,0.5739843845367432 +illusion_1.5L,target,8,3.2,0.48619675636291504,-0.17976412177085876,0.841907262802124,-0.012879306450486183,1.4722530841827393,0.4022950828075409 +illusion_1.5L,target,9,3.6,0.5477094054222107,-0.3528819680213928,0.8014639019966125,-0.42072081565856934,1.345029592514038,0.03976432979106903 +illusion_1.5L,target,10,4.0,0.6497469544410706,-0.428165465593338,0.8067768812179565,-0.695829451084137,1.1646794080734253,-0.3448689579963684 +illusion_1.5L,target,11,4.4,0.7507853507995605,-0.46122458577156067,0.8469595909118652,-0.7521911859512329,1.0435870885849,-0.5308622121810913 +illusion_1.5L,target,12,4.8,0.8379006385803223,-0.48885056376457214,0.8902129530906677,-0.7258268594741821,0.9843586683273315,-0.5497801899909973 +illusion_1.5L,target,13,5.2,0.9170989990234375,-0.5122867226600647,0.9254587292671204,-0.7151480317115784,0.9425078630447388,-0.5390183925628662 +illusion_1.5L,target,14,5.6,0.99114990234375,-0.5330615043640137,0.9545519351959229,-0.7251338958740234,0.8971582651138306,-0.5400736331939697 +illusion_1.5L,target,15,6.0,1.0615860223770142,-0.5526685118675232,0.9791213870048523,-0.7534866333007812,0.8426166772842407,-0.5472763180732727 +illusion_1.5L,target,16,6.4,1.1317631006240845,-0.5716078281402588,1.001004695892334,-0.7971920967102051,0.7746053338050842,-0.5478169322013855 +illusion_1.5L,target,17,6.8,1.2070664167404175,-0.5896115899085999,1.0182057619094849,-0.8379658460617065,0.6922463774681091,-0.5183518528938293 +illusion_1.5L,target,18,7.2,1.2928857803344727,-0.6049972772598267,1.0154434442520142,-0.8133578300476074,0.6033719778060913,-0.42711350321769714 +illusion_1.5L,target,19,7.6,1.3902724981307983,-0.6096755266189575,0.974860668182373,-0.6447056531906128,0.5267806053161621,-0.25651493668556213 +illusion_1.5L,target,20,8.0,1.473005771636963,-0.5631957650184631,0.9045681953430176,-0.33418041467666626,0.4834102690219879,-0.026585441082715988 +illusion_1.5L,target,21,8.4,1.463403582572937,-0.3676842153072357,0.8346037864685059,0.06398262083530426,0.4900961220264435,0.20603738725185394 +illusion_1.5L,target,22,8.8,1.3201202154159546,0.011344281025230885,0.796722412109375,0.4646151661872864,0.556069016456604,0.3667159974575043 +illusion_1.5L,target,23,9.2,1.1435916423797607,0.3799968361854553,0.8076882362365723,0.7131810784339905,0.6599571108818054,0.4329162836074829 +illusion_1.5L,target,24,9.6,1.0344568490982056,0.5396550297737122,0.8523247241973877,0.7504955530166626,0.7617446780204773,0.4646230936050415 +illusion_1.5L,target,25,10.0,0.9817270040512085,0.5492340326309204,0.8971750140190125,0.7238523364067078,0.8501238226890564,0.4918624758720398 +illusion_1.5L,target,26,10.4,0.938950777053833,0.5394235849380493,0.93085777759552,0.7159061431884766,0.9279513359069824,0.514965295791626 +illusion_1.5L,target,27,10.8,0.8898125290870667,0.5417192578315735,0.9566134810447693,0.7281327247619629,0.9986114501953125,0.5355318784713745 +illusion_1.5L,target,28,11.2,0.8325610160827637,0.5489922165870667,0.979474663734436,0.7583755254745483,1.0672268867492676,0.5550435781478882 +illusion_1.5L,target,29,11.6,0.7642737627029419,0.5475195050239563,1.0023908615112305,0.8029678463935852,1.138866901397705,0.5739660263061523 +illusion_1.5L,target,30,12.0,0.6833800673484802,0.5122531652450562,1.020928144454956,0.8402812480926514,1.2179776430130005,0.5919339656829834 +illusion_1.5L,target,31,12.4,0.5959196090698242,0.4112209379673004,1.0151383876800537,0.8019236922264099,1.3068994283676147,0.6069427728652954 +illusion_1.5L,target,32,12.8,0.5201049447059631,0.2307601422071457,0.9674450159072876,0.6134088635444641,1.4031357765197754,0.6086499094963074 +illusion_1.5L,target,33,13.2,0.47953343391418457,-0.003257312113419175,0.8930118680000305,0.2887425422668457,1.476855754852295,0.5493875741958618 +illusion_1.5L,target,34,13.6,0.492875874042511,-0.23079532384872437,0.8256579637527466,-0.11487092822790146,1.450141191482544,0.32907867431640625 +illusion_1.5L,target,35,14.0,0.5673524737358093,-0.3792111277580261,0.7957836985588074,-0.5058666467666626,1.2975780963897705,-0.06319037824869156 +illusion_1.5L,target,36,14.4,0.6753677129745483,-0.4377714991569519,0.8149802684783936,-0.7272518277168274,1.1288150548934937,-0.41254082322120667 +illusion_1.5L,target,37,14.8,0.7754557132720947,-0.4684988856315613,0.8609129190444946,-0.7475019097328186,1.0285451412200928,-0.5456440448760986 +illusion_1.5L,target,38,15.2,0.8597215414047241,-0.49512699246406555,0.9017172455787659,-0.7215561866760254,0.9763480424880981,-0.5473499298095703 +illusion_1.5L,target,39,15.6,0.9345970749855042,-0.5177022814750671,0.9323455095291138,-0.7162445783615112,0.9314063787460327,-0.538894534111023 +illusion_1.5L,target,40,16.0,1.005465030670166,-0.5380243062973022,0.9582350254058838,-0.7306398153305054,0.8823801279067993,-0.5423387885093689 +illusion_1.5L,target,41,16.4,1.0768024921417236,-0.5574330687522888,0.9834210872650146,-0.7628953456878662,0.8266457915306091,-0.5493676662445068 +illusion_1.5L,target,42,16.8,1.1509522199630737,-0.576310396194458,1.007667064666748,-0.8087262511253357,0.7582746148109436,-0.5452004075050354 +illusion_1.5L,target,43,17.2,1.2298023700714111,-0.5939924120903015,1.0227603912353516,-0.8417052626609802,0.6741213202476501,-0.5032243728637695 +illusion_1.5L,target,44,17.6,1.3174042701721191,-0.6079704761505127,1.009636640548706,-0.7870549559593201,0.5842511653900146,-0.3923669457435608 +illusion_1.5L,target,45,18.0,1.412659764289856,-0.6057018041610718,0.9568491578102112,-0.579005241394043,0.510979175567627,-0.20360209047794342 +illusion_1.5L,target,46,18.4,1.4804986715316772,-0.5325530767440796,0.8834516406059265,-0.24179726839065552,0.4779048264026642,0.03293078392744064 +illusion_1.5L,target,47,18.8,1.4395009279251099,-0.2876335084438324,0.8217641711235046,0.1670091301202774,0.5012686252593994,0.25459328293800354 +illusion_1.5L,target,48,19.2,1.2769837379455566,0.11460140347480774,0.7979685068130493,0.5464436411857605,0.5826830267906189,0.3903181552886963 +illusion_1.5L,target,49,19.6,1.111589789390564,0.4409884214401245,0.8199787735939026,0.7381381988525391,0.6890710592269897,0.44192788004875183 +illusion_1.5L,target,50,20.0,1.0178967714309692,0.5487697720527649,0.8645244836807251,0.743438184261322,0.7847892045974731,0.4719291031360626 +illusion_1.5L,target,51,20.4,0.9688913226127625,0.5449510812759399,0.9042159914970398,0.7192390561103821,0.8677900433540344,0.4980001151561737 +illusion_1.5L,target,52,20.8,0.9260607361793518,0.538098156452179,0.9362263679504395,0.7166121006011963,0.9441984295845032,0.5201835036277771 +illusion_1.5L,target,53,21.2,0.8781452775001526,0.5425342321395874,0.9636584520339966,0.7334415912628174,1.0168699026107788,0.5403870940208435 +illusion_1.5L,target,54,21.6,0.8197861313819885,0.5491921901702881,0.9876927733421326,0.7680895924568176,1.0873961448669434,0.5597425699234009 +illusion_1.5L,target,55,22.0,0.7467067241668701,0.542060375213623,1.0090118646621704,0.814622163772583,1.1593097448349,0.5784196257591248 +illusion_1.5L,target,56,22.4,0.6600496172904968,0.4933733642101288,1.0210555791854858,0.8414571285247803,1.2377057075500488,0.5957621932029724 +illusion_1.5L,target,57,22.8,0.5724154114723206,0.37319478392601013,1.004788875579834,0.7700369954109192,1.3276687860488892,0.6088915467262268 +illusion_1.5L,target,58,23.2,0.5054018497467041,0.17634853720664978,0.9503387212753296,0.543982744216919,1.4249643087387085,0.6025226712226868 +illusion_1.5L,target,59,23.6,0.47926032543182373,-0.0626223087310791,0.8768499493598938,0.19441263377666473,1.4849220514297485,0.5140275359153748 +illusion_1.5L,target,60,24.0,0.5082723498344421,-0.27708548307418823,0.81614089012146,-0.21841125190258026,1.4242900609970093,0.24397073686122894 +illusion_1.5L,target,61,24.4,0.5931241512298584,-0.3996849060058594,0.7957891821861267,-0.5826437473297119,1.2518316507339478,-0.163608118891716 +illusion_1.5L,target,62,24.8,0.6993356943130493,-0.44565361738204956,0.8224256038665771,-0.7457897663116455,1.0941063165664673,-0.4654170274734497 +illusion_1.5L,target,63,25.2,0.7952536940574646,-0.47514426708221436,0.8695392608642578,-0.7401918768882751,1.0106287002563477,-0.5516266226768494 +illusion_1.5L,target,64,25.6,0.8794004917144775,-0.5007862448692322,0.9103267788887024,-0.7181411981582642,0.9657957553863525,-0.5441257357597351 +illusion_1.5L,target,65,26.0,0.9547391533851624,-0.5227265954017639,0.9411354064941406,-0.7181082963943481,0.9218281507492065,-0.5388433337211609 +illusion_1.5L,target,66,26.4,1.0245521068572998,-0.5427899956703186,0.9657592177391052,-0.737175703048706,0.8703811764717102,-0.5441482663154602 +illusion_1.5L,target,67,26.8,1.0935639142990112,-0.5620682239532471,0.9883158802986145,-0.7735995650291443,0.8092079162597656,-0.5502637624740601 +illusion_1.5L,target,68,27.2,1.166893482208252,-0.5807151198387146,1.0102602243423462,-0.8200219869613647,0.7355180382728577,-0.5399388670921326 +illusion_1.5L,target,69,27.6,1.248854160308838,-0.5979472994804382,1.0223711729049683,-0.8399795293807983,0.6503230929374695,-0.4839577078819275 +illusion_1.5L,target,70,28.0,1.3417021036148071,-0.6102693676948547,1.00223708152771,-0.7512637972831726,0.5649585127830505,-0.3534752130508423 +illusion_1.5L,target,71,28.4,1.4365822076797485,-0.5985901355743408,0.9419405460357666,-0.5068003535270691,0.5001624822616577,-0.14822913706302643 +illusion_1.5L,target,72,28.8,1.4835267066955566,-0.49208787083625793,0.8661352396011353,-0.1458837240934372,0.47788888216018677,0.09185446798801422 +illusion_1.5L,target,73,29.2,1.4050450325012207,-0.19737735390663147,0.809216320514679,0.26806604862213135,0.5138460397720337,0.29773184657096863 +illusion_1.5L,target,74,29.6,1.2295342683792114,0.21137262880802155,0.7968820929527283,0.6148794293403625,0.6053812503814697,0.40814781188964844 +illusion_1.5L,target,75,30.0,1.0826473236083984,0.48685821890830994,0.8301392197608948,0.750800371170044,0.7136093974113464,0.4497324824333191 +illusion_1.5L,target,76,30.4,1.0064208507537842,0.5528944134712219,0.8772282600402832,0.7367259860038757,0.8079172372817993,0.47875991463661194 +illusion_1.5L,target,77,30.8,0.9605563879013062,0.542896568775177,0.9143598079681396,0.7171399593353271,0.8885895013809204,0.5038037300109863 +illusion_1.5L,target,78,31.2,0.9142929911613464,0.5392348766326904,0.9425844550132751,0.7194859981536865,0.961373507976532,0.5253452062606812 +illusion_1.5L,target,79,31.6,0.8626840710639954,0.5452439188957214,0.9673944711685181,0.7406268119812012,1.0314438343048096,0.5452442765235901 +illusion_1.5L,target,80,32.0,0.8024754524230957,0.5504403710365295,0.9920092225074768,0.7788465023040771,1.1029906272888184,0.5644548535346985 +illusion_1.5L,target,81,32.4,0.7285049557685852,0.5361304879188538,1.0147786140441895,0.8251998424530029,1.1787978410720825,0.5830413699150085 +illusion_1.5L,target,82,32.8,0.6409216523170471,0.4719284176826477,1.0227134227752686,0.836880087852478,1.2609984874725342,0.5999061465263367 +illusion_1.5L,target,83,33.2,0.5545250177383423,0.33130982518196106,0.9950144290924072,0.7288910150527954,1.3527963161468506,0.6106618046760559 +illusion_1.5L,target,84,33.6,0.4933084547519684,0.11928267776966095,0.9307363629341125,0.46693289279937744,1.4449647665023804,0.5922567844390869 +illusion_1.5L,target,85,34.0,0.4789189100265503,-0.12046382576227188,0.8572542071342468,0.095970518887043,1.4815722703933716,0.46661412715911865 +illusion_1.5L,target,86,34.4,0.5246908068656921,-0.3170589506626129,0.8070001006126404,-0.31825578212738037,1.3884148597717285,0.14848490059375763 +illusion_1.5L,target,87,34.8,0.6213386058807373,-0.41556793451309204,0.8012370467185974,-0.6450596451759338,1.2096656560897827,-0.2573982775211334 +illusion_1.5L,target,88,35.2,0.7266084551811218,-0.45355120301246643,0.8362485766410828,-0.7530875205993652,1.0693951845169067,-0.5042548179626465 +illusion_1.5L,target,89,35.6,0.8169419765472412,-0.48210784792900085,0.8808408379554749,-0.7326245307922363,0.9980136156082153,-0.5520555973052979 +illusion_1.5L,target,90,36.0,0.8965298533439636,-0.5065721273422241,0.9167895317077637,-0.7158876061439514,0.9535009264945984,-0.5409404039382935 +illusion_1.5L,target,91,36.4,0.9706947803497314,-0.5278003215789795,0.946244478225708,-0.7207011580467224,0.9087527990341187,-0.538913369178772 +illusion_1.5L,target,92,36.8,1.0424745082855225,-0.5476027727127075,0.9724575281143188,-0.7442154884338379,0.8578646779060364,-0.5454540252685547 +illusion_1.5L,target,93,37.2,1.1136168241500854,-0.5667444467544556,0.9961463809013367,-0.7845703959465027,0.7950760126113892,-0.5494732856750488 +illusion_1.5L,target,94,37.6,1.1877278089523315,-0.5850796699523926,1.015867829322815,-0.8300572037696838,0.7167409658432007,-0.5307903289794922 +illusion_1.5L,target,95,38.0,1.2697988748550415,-0.6014372110366821,1.0197409391403198,-0.8314660787582397,0.627342164516449,-0.45845329761505127 +illusion_1.5L,target,96,38.4,1.3635917901992798,-0.6105985045433044,0.9883038401603699,-0.7043710350990295,0.5439924001693726,-0.3084578216075897 +illusion_1.5L,target,97,38.8,1.4552937746047974,-0.5849010348320007,0.9231963157653809,-0.42641228437423706,0.48967617750167847,-0.09017950296401978 +illusion_1.5L,target,98,39.2,1.4797238111495972,-0.43875378370285034,0.8511733412742615,-0.04550577327609062,0.4828914701938629,0.14871449768543243 +illusion_1.5L,target,99,39.6,1.3683297634124756,-0.09857747703790665,0.8034577369689941,0.36725175380706787,0.5346273183822632,0.3347446322441101 +illusion_1.5L,target,100,40.0,1.1864742040634155,0.29967114329338074,0.8015901446342468,0.6709107160568237,0.6329469084739685,0.4216840863227844 +illusion_1.5L,target,101,40.4,1.0555145740509033,0.5184288024902344,0.8396698236465454,0.753715455532074,0.7366286516189575,0.45696812868118286 +illusion_1.5L,target,102,40.8,0.9918606281280518,0.5516778826713562,0.8854438662528992,0.7295294404029846,0.8270249962806702,0.4851491153240204 +illusion_1.5L,target,103,41.2,0.9498416185379028,0.5403301119804382,0.922249972820282,0.715603232383728,0.9076317548751831,0.5092005133628845 +illusion_1.5L,target,104,41.6,0.9039493799209595,0.539799690246582,0.950813353061676,0.7228965163230896,0.9810139536857605,0.5302579998970032 +illusion_1.5L,target,105,42.0,0.849673330783844,0.5467753410339355,0.9746530652046204,0.7486423254013062,1.0504109859466553,0.5499594211578369 +illusion_1.5L,target,106,42.4,0.7839706540107727,0.5494434237480164,0.9970095157623291,0.7904850840568542,1.120347023010254,0.5690191388130188 +illusion_1.5L,target,107,42.8,0.7048583030700684,0.5261677503585815,1.0167229175567627,0.834102988243103,1.1958560943603516,0.587278425693512 +illusion_1.5L,target,108,43.2,0.6172134876251221,0.44523173570632935,1.0192923545837402,0.8244888782501221,1.2812888622283936,0.6033732891082764 +illusion_1.5L,target,109,43.6,0.5370931029319763,0.2851465940475464,0.9837175011634827,0.6782711744308472,1.3774513006210327,0.6108660101890564 +illusion_1.5L,target,110,44.0,0.4862760305404663,0.06061235070228577,0.9143591523170471,0.38433483242988586,1.464298963546753,0.5762237310409546 +illusion_1.5L,target,111,44.4,0.4843064546585083,-0.17597320675849915,0.8417845964431763,-0.005039234645664692,1.4719260931015015,0.4073667824268341 +illusion_1.5L,target,112,44.8,0.5427534580230713,-0.3505435883998871,0.7987766861915588,-0.41310423612594604,1.3450959920883179,0.047519683837890625 +illusion_1.5L,target,113,45.2,0.6454399228096008,-0.42739295959472656,0.8044707775115967,-0.6924501657485962,1.166479229927063,-0.3391508460044861 +illusion_1.5L,target,114,45.6,0.7497733235359192,-0.46071329712867737,0.8472018241882324,-0.7530598640441895,1.0470603704452515,-0.5301460027694702 +illusion_1.5L,target,115,46.0,0.8388549089431763,-0.4884633719921112,0.8921920657157898,-0.7268800139427185,0.9883612990379333,-0.5509389638900757 +illusion_1.5L,target,116,46.4,0.9165101051330566,-0.5120115280151367,0.9258707165718079,-0.7157036662101746,0.9444299936294556,-0.5399847626686096 +illusion_1.5L,target,117,46.8,0.9877113103866577,-0.5327833294868469,0.9522699117660522,-0.7252213358879089,0.8962962627410889,-0.5408338308334351 +illusion_1.5L,target,118,47.2,1.0574150085449219,-0.5523785352706909,0.9763330221176147,-0.7529569864273071,0.8415449261665344,-0.5480433106422424 +illusion_1.5L,target,119,47.6,1.129745602607727,-0.5713919401168823,1.000438928604126,-0.7961685061454773,0.7763200998306274,-0.5489306449890137 +illusion_1.5L,target,120,48.0,1.207716941833496,-0.589561402797699,1.0202438831329346,-0.8375729918479919,0.6968982219696045,-0.520210325717926 +illusion_1.5L,target,121,48.4,1.2937835454940796,-0.6051347851753235,1.0177922248840332,-0.8152722716331482,0.60789555311203,-0.42981913685798645 +illusion_1.5L,target,122,48.8,1.3887388706207275,-0.6100167036056519,0.9750379920005798,-0.648806631565094,0.528141438961029,-0.26000726222991943 +illusion_1.5L,target,123,49.2,1.4699379205703735,-0.564612627029419,0.9031141400337219,-0.34004202485084534,0.4818097949028015,-0.030811011791229248 +illusion_1.5L,target,124,49.6,1.4633177518844604,-0.37230515480041504,0.8341568112373352,0.05647028982639313,0.48806193470954895,0.202156201004982 +illusion_1.5L,target,125,50.0,1.324691891670227,0.004661120939999819,0.7985627055168152,0.4581884741783142,0.5555517673492432,0.3649335205554962 +illusion_1.5L,target,126,50.4,1.1492338180541992,0.37580350041389465,0.8106011748313904,0.7109838724136353,0.6610906720161438,0.43260452151298523 +illusion_1.5L,target,127,50.8,1.0373567342758179,0.5383691191673279,0.853609025478363,0.7505747079849243,0.7619278430938721,0.4644617438316345 +illusion_1.5L,target,128,51.2,0.9812580347061157,0.5487300753593445,0.8956010937690735,0.7238240242004395,0.8475788831710815,0.4916519820690155 +illusion_1.5L,target,129,51.6,0.9375547170639038,0.5388185381889343,0.928213357925415,0.7154781818389893,0.9242971539497375,0.5146849155426025 +illusion_1.5L,target,130,52.0,0.890529990196228,0.5409653186798096,0.955739438533783,0.7273186445236206,0.9967858791351318,0.5352175235748291 +illusion_1.5L,target,131,52.4,0.8361025452613831,0.548176109790802,0.9810829162597656,0.7573381662368774,1.0681397914886475,0.5547337532043457 +illusion_1.5L,target,132,52.8,0.7683408260345459,0.546868085861206,1.0043530464172363,0.8021354079246521,1.1404365301132202,0.5736580491065979 +illusion_1.5L,target,133,53.2,0.6850714683532715,0.5122268199920654,1.0206853151321411,0.8401275873184204,1.2172337770462036,0.5915102362632751 +illusion_1.5L,target,134,53.6,0.5951572060585022,0.41262561082839966,1.0131666660308838,0.8032084107398987,1.3034400939941406,0.6063138842582703 +illusion_1.5L,target,135,54.0,0.5193384289741516,0.23408451676368713,0.9667732119560242,0.6173370480537415,1.3996104001998901,0.6082541942596436 +illusion_1.5L,target,136,54.4,0.4804629981517792,0.000993182766251266,0.8951608538627625,0.29493287205696106,1.476752519607544,0.5511099100112915 +illusion_1.5L,target,137,54.8,0.494841068983078,-0.22752279043197632,0.8291670083999634,-0.1084921658039093,1.4545996189117432,0.334635853767395 +illusion_1.5L,target,138,55.2,0.5678473711013794,-0.3776262402534485,0.7973979711532593,-0.5014255046844482,1.302126169204712,-0.056294430047273636 +illusion_1.5L,target,139,55.6,0.6730040907859802,-0.43695303797721863,0.8131296038627625,-0.725691556930542,1.1293801069259644,-0.4081665873527527 +illusion_1.5L,target,140,56.0,0.7716243863105774,-0.4678061604499817,0.8574432134628296,-0.7475703358650208,1.0265623331069946,-0.5444106459617615 +illusion_1.5L,target,141,56.4,0.8573466539382935,-0.494528204202652,0.899817943572998,-0.7215512990951538,0.9755966663360596,-0.5471544861793518 +illusion_1.5L,target,142,56.8,0.9349760413169861,-0.5172114372253418,0.9331793189048767,-0.7159496545791626,0.9333653450012207,-0.5385423898696899 +illusion_1.5L,target,143,57.2,1.006939172744751,-0.5376238822937012,0.9600570201873779,-0.7302140593528748,0.8852067589759827,-0.5418539047241211 +illusion_1.5L,target,144,57.6,1.07636296749115,-0.5570532083511353,0.9833979606628418,-0.7624170184135437,0.8274661898612976,-0.5489621162414551 +illusion_1.5L,target,145,58.0,1.1477452516555786,-0.5758711099624634,1.0053333044052124,-0.8080668449401855,0.7567259073257446,-0.54525226354599 +illusion_1.5L,target,146,58.4,1.2259737253189087,-0.5935664176940918,1.0207704305648804,-0.8414337635040283,0.6727541089057922,-0.5044964551925659 +illusion_1.5L,target,147,58.8,1.3153126239776611,-0.6078177094459534,1.0106934309005737,-0.7893824577331543,0.5851415395736694,-0.39540308713912964 +illusion_1.5L,target,148,59.2,1.4127938747406006,-0.6064789891242981,0.9605550169944763,-0.5845776796340942,0.5135458111763,-0.2077399641275406 +illusion_1.5L,target,149,59.6,1.4815151691436768,-0.5355732440948486,0.886430025100708,-0.24880251288414001,0.47928550839424133,0.028904428705573082 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..24ff870 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_dtw_convergence.csv @@ -0,0 +1,12 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1L,ppo,72,21.6,36,0.9652726071395187,6,0.9751172330644395,0.9717680356827461,0.9334414998690287,0.978533130481891,0.9775220801432928,0.9552536635957141 +illusion_1L,ppo,108,32.4,36,0.9718427856806321,-5,0.987282888756858,0.9673414832343243,0.9677907228469849,0.9628430711519387,0.9767367061641481,0.9690618419295384 +illusion_1L,ppo,144,43.2,36,0.973057827281688,6,0.9809218413299985,0.96313437496105,0.9740628865030077,0.9624243572858783,0.9826527304119534,0.9751507731982403 +illusion_1L,ppo,180,54.0,36,0.9793920185701507,-6,0.9843052244848676,0.9677086987325715,0.9815176741944419,0.9710651747623665,0.987148372663392,0.9846069665832652 +illusion_1L,ppo,216,64.8,36,0.978190806141356,5,0.9834392865498861,0.9732478440273553,0.9797496944665909,0.9678438746357441,0.9794987291097641,0.9853654080587957 +illusion_1L,ppo,252,75.6,36,0.9705708762178095,-8,0.9852346049414741,0.9647985725896433,0.9849247849649854,0.9466742121924957,0.9739442865053812,0.9678487961128768 +illusion_1L,ppo,288,86.4,36,0.9714743209769948,2,0.980304060710801,0.9697470231395628,0.9844968401723437,0.950279811086754,0.9745887931850221,0.9694293975674858 +illusion_1L,ppo,324,97.2,36,0.9830946972921354,-11,0.9800161404742135,0.969443301204592,0.9814377990033891,0.9845814754565557,0.9914246251185735,0.9916648424954878 +illusion_1L,ppo,360,108.0,36,0.9801334898479076,0,0.9799064613050885,0.9767420129177885,0.9846257136927711,0.9744430731257631,0.9870607174105115,0.978022960635523 +illusion_1L,ppo,396,118.8,36,0.9702720501108733,10,0.9833777712451087,0.9618855751016073,0.9842795100477006,0.9461969660090593,0.9751102063390944,0.9707822719226695 +illusion_1L,ppo,400,120.0,36,0.9757284936753826,-10,0.9822900113132265,0.9632354462777989,0.9845577693647809,0.9636691509642534,0.9809905737638474,0.9796280103683885 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_long.csv new file mode 100644 index 0000000..193700e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_long.csv @@ -0,0 +1,8001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,ppo,0,0.0,velocity,upper_ux,1.0375226736068726 +illusion_1L,ppo,0,0.0,velocity,upper_uy,0.3374488055706024 +illusion_1L,ppo,0,0.0,velocity,center_ux,0.8509731292724609 +illusion_1L,ppo,0,0.0,velocity,center_uy,0.5160437226295471 +illusion_1L,ppo,0,0.0,velocity,lower_ux,0.9453536868095398 +illusion_1L,ppo,0,0.0,velocity,lower_uy,0.24021266400814056 +illusion_1L,ppo,1,0.3,velocity,upper_ux,0.9471867084503174 +illusion_1L,ppo,1,0.3,velocity,upper_uy,0.3607480227947235 +illusion_1L,ppo,1,0.3,velocity,center_ux,0.8933017253875732 +illusion_1L,ppo,1,0.3,velocity,center_uy,0.5149787664413452 +illusion_1L,ppo,1,0.3,velocity,lower_ux,0.9919725656509399 +illusion_1L,ppo,1,0.3,velocity,lower_uy,0.2709277868270874 +illusion_1L,ppo,2,0.6,velocity,upper_ux,0.8894060254096985 +illusion_1L,ppo,2,0.6,velocity,upper_uy,0.33720260858535767 +illusion_1L,ppo,2,0.6,velocity,center_ux,0.9221140742301941 +illusion_1L,ppo,2,0.6,velocity,center_uy,0.5271353721618652 +illusion_1L,ppo,2,0.6,velocity,lower_ux,1.0398662090301514 +illusion_1L,ppo,2,0.6,velocity,lower_uy,0.2958115339279175 +illusion_1L,ppo,3,0.9,velocity,upper_ux,0.8429216742515564 +illusion_1L,ppo,3,0.9,velocity,upper_uy,0.29541274905204773 +illusion_1L,ppo,3,0.9,velocity,center_ux,0.9400175213813782 +illusion_1L,ppo,3,0.9,velocity,center_uy,0.5452601909637451 +illusion_1L,ppo,3,0.9,velocity,lower_ux,1.0900286436080933 +illusion_1L,ppo,3,0.9,velocity,lower_uy,0.31569427251815796 +illusion_1L,ppo,4,1.2,velocity,upper_ux,0.7984023690223694 +illusion_1L,ppo,4,1.2,velocity,upper_uy,0.239760160446167 +illusion_1L,ppo,4,1.2,velocity,center_ux,0.945169985294342 +illusion_1L,ppo,4,1.2,velocity,center_uy,0.5544612407684326 +illusion_1L,ppo,4,1.2,velocity,lower_ux,1.1441168785095215 +illusion_1L,ppo,4,1.2,velocity,lower_uy,0.330527126789093 +illusion_1L,ppo,5,1.5,velocity,upper_ux,0.7597245573997498 +illusion_1L,ppo,5,1.5,velocity,upper_uy,0.16805389523506165 +illusion_1L,ppo,5,1.5,velocity,center_ux,0.9316152930259705 +illusion_1L,ppo,5,1.5,velocity,center_uy,0.5258549451828003 +illusion_1L,ppo,5,1.5,velocity,lower_ux,1.2039133310317993 +illusion_1L,ppo,5,1.5,velocity,lower_uy,0.3390762507915497 +illusion_1L,ppo,6,1.8,velocity,upper_ux,0.7380070090293884 +illusion_1L,ppo,6,1.8,velocity,upper_uy,0.08513016253709793 +illusion_1L,ppo,6,1.8,velocity,center_ux,0.8945594429969788 +illusion_1L,ppo,6,1.8,velocity,center_uy,0.4238448441028595 +illusion_1L,ppo,6,1.8,velocity,lower_ux,1.2699387073516846 +illusion_1L,ppo,6,1.8,velocity,lower_uy,0.33746102452278137 +illusion_1L,ppo,7,2.1,velocity,upper_ux,0.7436611652374268 +illusion_1L,ppo,7,2.1,velocity,upper_uy,0.004811604507267475 +illusion_1L,ppo,7,2.1,velocity,center_ux,0.8393206000328064 +illusion_1L,ppo,7,2.1,velocity,center_uy,0.23143361508846283 +illusion_1L,ppo,7,2.1,velocity,lower_ux,1.3373268842697144 +illusion_1L,ppo,7,2.1,velocity,lower_uy,0.31526613235473633 +illusion_1L,ppo,8,2.4,velocity,upper_ux,0.775005042552948 +illusion_1L,ppo,8,2.4,velocity,upper_uy,-0.06162697449326515 +illusion_1L,ppo,8,2.4,velocity,center_ux,0.7841556668281555 +illusion_1L,ppo,8,2.4,velocity,center_uy,-0.028940575197339058 +illusion_1L,ppo,8,2.4,velocity,lower_ux,1.3855599164962769 +illusion_1L,ppo,8,2.4,velocity,lower_uy,0.24944575130939484 +illusion_1L,ppo,9,2.7,velocity,upper_ux,0.8178912997245789 +illusion_1L,ppo,9,2.7,velocity,upper_uy,-0.11677128076553345 +illusion_1L,ppo,9,2.7,velocity,center_ux,0.7534258961677551 +illusion_1L,ppo,9,2.7,velocity,center_uy,-0.2918355464935303 +illusion_1L,ppo,9,2.7,velocity,lower_ux,1.3743029832839966 +illusion_1L,ppo,9,2.7,velocity,lower_uy,0.11204474419355392 +illusion_1L,ppo,10,3.0,velocity,upper_ux,0.86175936460495 +illusion_1L,ppo,10,3.0,velocity,upper_uy,-0.16677244007587433 +illusion_1L,ppo,10,3.0,velocity,center_ux,0.7647352814674377 +illusion_1L,ppo,10,3.0,velocity,center_uy,-0.46738287806510925 +illusion_1L,ppo,10,3.0,velocity,lower_ux,1.2796297073364258 +illusion_1L,ppo,10,3.0,velocity,lower_uy,-0.08300847560167313 +illusion_1L,ppo,11,3.3,velocity,upper_ux,0.9059373736381531 +illusion_1L,ppo,11,3.3,velocity,upper_uy,-0.21066954731941223 +illusion_1L,ppo,11,3.3,velocity,center_ux,0.8115107417106628 +illusion_1L,ppo,11,3.3,velocity,center_uy,-0.5185759663581848 +illusion_1L,ppo,11,3.3,velocity,lower_ux,1.1398735046386719 +illusion_1L,ppo,11,3.3,velocity,lower_uy,-0.2567155659198761 +illusion_1L,ppo,12,3.6,velocity,upper_ux,0.9516206979751587 +illusion_1L,ppo,12,3.6,velocity,upper_uy,-0.24683567881584167 +illusion_1L,ppo,12,3.6,velocity,center_ux,0.8632249236106873 +illusion_1L,ppo,12,3.6,velocity,center_uy,-0.5137898921966553 +illusion_1L,ppo,12,3.6,velocity,lower_ux,1.0177967548370361 +illusion_1L,ppo,12,3.6,velocity,lower_uy,-0.34355849027633667 +illusion_1L,ppo,13,3.9,velocity,upper_ux,0.9988129734992981 +illusion_1L,ppo,13,3.9,velocity,upper_uy,-0.27612173557281494 +illusion_1L,ppo,13,3.9,velocity,center_ux,0.9019057154655457 +illusion_1L,ppo,13,3.9,velocity,center_uy,-0.5148921012878418 +illusion_1L,ppo,13,3.9,velocity,lower_ux,0.9375264644622803 +illusion_1L,ppo,13,3.9,velocity,lower_uy,-0.35208848118782043 +illusion_1L,ppo,14,4.2,velocity,upper_ux,1.0476579666137695 +illusion_1L,ppo,14,4.2,velocity,upper_uy,-0.2997717559337616 +illusion_1L,ppo,14,4.2,velocity,center_ux,0.9283431172370911 +illusion_1L,ppo,14,4.2,velocity,center_uy,-0.5284948945045471 +illusion_1L,ppo,14,4.2,velocity,lower_ux,0.8841447830200195 +illusion_1L,ppo,14,4.2,velocity,lower_uy,-0.32353726029396057 +illusion_1L,ppo,15,4.5,velocity,upper_ux,1.0988266468048096 +illusion_1L,ppo,15,4.5,velocity,upper_uy,-0.31846433877944946 +illusion_1L,ppo,15,4.5,velocity,center_ux,0.9438820481300354 +illusion_1L,ppo,15,4.5,velocity,center_uy,-0.5466546416282654 +illusion_1L,ppo,15,4.5,velocity,lower_ux,0.837950587272644 +illusion_1L,ppo,15,4.5,velocity,lower_uy,-0.27958229184150696 +illusion_1L,ppo,16,4.8,velocity,upper_ux,1.1536310911178589 +illusion_1L,ppo,16,4.8,velocity,upper_uy,-0.33195120096206665 +illusion_1L,ppo,16,4.8,velocity,center_ux,0.9453018307685852 +illusion_1L,ppo,16,4.8,velocity,center_uy,-0.5528649091720581 +illusion_1L,ppo,16,4.8,velocity,lower_ux,0.7928276658058167 +illusion_1L,ppo,16,4.8,velocity,lower_uy,-0.22112755477428436 +illusion_1L,ppo,17,5.1,velocity,upper_ux,1.213645577430725 +illusion_1L,ppo,17,5.1,velocity,upper_uy,-0.3385801911354065 +illusion_1L,ppo,17,5.1,velocity,center_ux,0.9260690212249756 +illusion_1L,ppo,17,5.1,velocity,center_uy,-0.5164026618003845 +illusion_1L,ppo,17,5.1,velocity,lower_ux,0.7545931935310364 +illusion_1L,ppo,17,5.1,velocity,lower_uy,-0.14647622406482697 +illusion_1L,ppo,18,5.4,velocity,upper_ux,1.2793337106704712 +illusion_1L,ppo,18,5.4,velocity,upper_uy,-0.33398693799972534 +illusion_1L,ppo,18,5.4,velocity,center_ux,0.8826761841773987 +illusion_1L,ppo,18,5.4,velocity,center_uy,-0.40313929319381714 +illusion_1L,ppo,18,5.4,velocity,lower_ux,0.7351318597793579 +illusion_1L,ppo,18,5.4,velocity,lower_uy,-0.062183283269405365 +illusion_1L,ppo,19,5.7,velocity,upper_ux,1.3454267978668213 +illusion_1L,ppo,19,5.7,velocity,upper_uy,-0.3072746694087982 +illusion_1L,ppo,19,5.7,velocity,center_ux,0.8228712677955627 +illusion_1L,ppo,19,5.7,velocity,center_uy,-0.20163826644420624 +illusion_1L,ppo,19,5.7,velocity,lower_ux,0.7436441779136658 +illusion_1L,ppo,19,5.7,velocity,lower_uy,0.017930893227458 +illusion_1L,ppo,20,6.0,velocity,upper_ux,1.3902209997177124 +illusion_1L,ppo,20,6.0,velocity,upper_uy,-0.2353525310754776 +illusion_1L,ppo,20,6.0,velocity,center_ux,0.765914261341095 +illusion_1L,ppo,20,6.0,velocity,center_uy,0.059900976717472076 +illusion_1L,ppo,20,6.0,velocity,lower_ux,0.7759884595870972 +illusion_1L,ppo,20,6.0,velocity,lower_uy,0.08552289009094238 +illusion_1L,ppo,21,6.3,velocity,upper_ux,1.3737343549728394 +illusion_1L,ppo,21,6.3,velocity,upper_uy,-0.09463801234960556 +illusion_1L,ppo,21,6.3,velocity,center_ux,0.7339732646942139 +illusion_1L,ppo,21,6.3,velocity,center_uy,0.3150845766067505 +illusion_1L,ppo,21,6.3,velocity,lower_ux,0.8179504871368408 +illusion_1L,ppo,21,6.3,velocity,lower_uy,0.14470845460891724 +illusion_1L,ppo,22,6.6,velocity,upper_ux,1.278484582901001 +illusion_1L,ppo,22,6.6,velocity,upper_uy,0.0913107618689537 +illusion_1L,ppo,22,6.6,velocity,center_ux,0.7413313984870911 +illusion_1L,ppo,22,6.6,velocity,center_uy,0.48133793473243713 +illusion_1L,ppo,22,6.6,velocity,lower_ux,0.8612738251686096 +illusion_1L,ppo,22,6.6,velocity,lower_uy,0.19969044625759125 +illusion_1L,ppo,23,6.9,velocity,upper_ux,1.1459413766860962 +illusion_1L,ppo,23,6.9,velocity,upper_uy,0.24514219164848328 +illusion_1L,ppo,23,6.9,velocity,center_ux,0.7798910140991211 +illusion_1L,ppo,23,6.9,velocity,center_uy,0.5305380821228027 +illusion_1L,ppo,23,6.9,velocity,lower_ux,0.9058322310447693 +illusion_1L,ppo,23,6.9,velocity,lower_uy,0.24876365065574646 +illusion_1L,ppo,24,7.2,velocity,upper_ux,1.030990719795227 +illusion_1L,ppo,24,7.2,velocity,upper_uy,0.3158578872680664 +illusion_1L,ppo,24,7.2,velocity,center_ux,0.8195937871932983 +illusion_1L,ppo,24,7.2,velocity,center_uy,0.5288978219032288 +illusion_1L,ppo,24,7.2,velocity,lower_ux,0.9523329734802246 +illusion_1L,ppo,24,7.2,velocity,lower_uy,0.2909671366214752 +illusion_1L,ppo,25,7.5,velocity,upper_ux,0.9526459574699402 +illusion_1L,ppo,25,7.5,velocity,upper_uy,0.31734880805015564 +illusion_1L,ppo,25,7.5,velocity,center_ux,0.8424643278121948 +illusion_1L,ppo,25,7.5,velocity,center_uy,0.5347093939781189 +illusion_1L,ppo,25,7.5,velocity,lower_ux,1.0009387731552124 +illusion_1L,ppo,25,7.5,velocity,lower_uy,0.3273037374019623 +illusion_1L,ppo,26,7.8,velocity,upper_ux,0.8998454809188843 +illusion_1L,ppo,26,7.8,velocity,upper_uy,0.2869081497192383 +illusion_1L,ppo,26,7.8,velocity,center_ux,0.8497701287269592 +illusion_1L,ppo,26,7.8,velocity,center_uy,0.5533736348152161 +illusion_1L,ppo,26,7.8,velocity,lower_ux,1.0523467063903809 +illusion_1L,ppo,26,7.8,velocity,lower_uy,0.3589429259300232 +illusion_1L,ppo,27,8.1,velocity,upper_ux,0.8572351932525635 +illusion_1L,ppo,27,8.1,velocity,upper_uy,0.2453612983226776 +illusion_1L,ppo,27,8.1,velocity,center_ux,0.8447631597518921 +illusion_1L,ppo,27,8.1,velocity,center_uy,0.5696261525154114 +illusion_1L,ppo,27,8.1,velocity,lower_ux,1.10765540599823 +illusion_1L,ppo,27,8.1,velocity,lower_uy,0.3867383599281311 +illusion_1L,ppo,28,8.4,velocity,upper_ux,0.8189427256584167 +illusion_1L,ppo,28,8.4,velocity,upper_uy,0.1958024799823761 +illusion_1L,ppo,28,8.4,velocity,center_ux,0.8265174627304077 +illusion_1L,ppo,28,8.4,velocity,center_uy,0.5586892366409302 +illusion_1L,ppo,28,8.4,velocity,lower_ux,1.1680272817611694 +illusion_1L,ppo,28,8.4,velocity,lower_uy,0.41102686524391174 +illusion_1L,ppo,29,8.7,velocity,upper_ux,0.7886267304420471 +illusion_1L,ppo,29,8.7,velocity,upper_uy,0.13682913780212402 +illusion_1L,ppo,29,8.7,velocity,center_ux,0.7910802364349365 +illusion_1L,ppo,29,8.7,velocity,center_uy,0.49635064601898193 +illusion_1L,ppo,29,8.7,velocity,lower_ux,1.2341549396514893 +illusion_1L,ppo,29,8.7,velocity,lower_uy,0.4300763010978699 +illusion_1L,ppo,30,9.0,velocity,upper_ux,0.7743210196495056 +illusion_1L,ppo,30,9.0,velocity,upper_uy,0.07099664211273193 +illusion_1L,ppo,30,9.0,velocity,center_ux,0.7375630736351013 +illusion_1L,ppo,30,9.0,velocity,center_uy,0.36688876152038574 +illusion_1L,ppo,30,9.0,velocity,lower_ux,1.302443027496338 +illusion_1L,ppo,30,9.0,velocity,lower_uy,0.4336860775947571 +illusion_1L,ppo,31,9.3,velocity,upper_ux,0.7810186147689819 +illusion_1L,ppo,31,9.3,velocity,upper_uy,0.004670928232371807 +illusion_1L,ppo,31,9.3,velocity,center_ux,0.6757546663284302 +illusion_1L,ppo,31,9.3,velocity,center_uy,0.16629484295845032 +illusion_1L,ppo,31,9.3,velocity,lower_ux,1.3549103736877441 +illusion_1L,ppo,31,9.3,velocity,lower_uy,0.389077365398407 +illusion_1L,ppo,32,9.6,velocity,upper_ux,0.8044622540473938 +illusion_1L,ppo,32,9.6,velocity,upper_uy,-0.05877789855003357 +illusion_1L,ppo,32,9.6,velocity,center_ux,0.6257057785987854 +illusion_1L,ppo,32,9.6,velocity,center_uy,-0.08567027747631073 +illusion_1L,ppo,32,9.6,velocity,lower_ux,1.3554188013076782 +illusion_1L,ppo,32,9.6,velocity,lower_uy,0.24251265823841095 +illusion_1L,ppo,33,9.9,velocity,upper_ux,0.8359327912330627 +illusion_1L,ppo,33,9.9,velocity,upper_uy,-0.1208823025226593 +illusion_1L,ppo,33,9.9,velocity,center_ux,0.6085816025733948 +illusion_1L,ppo,33,9.9,velocity,center_uy,-0.3365563452243805 +illusion_1L,ppo,33,9.9,velocity,lower_ux,1.2873367071151733 +illusion_1L,ppo,33,9.9,velocity,lower_uy,-0.010480893775820732 +illusion_1L,ppo,34,10.2,velocity,upper_ux,0.8721189498901367 +illusion_1L,ppo,34,10.2,velocity,upper_uy,-0.18073798716068268 +illusion_1L,ppo,34,10.2,velocity,center_ux,0.6366637945175171 +illusion_1L,ppo,34,10.2,velocity,center_uy,-0.5157557725906372 +illusion_1L,ppo,34,10.2,velocity,lower_ux,1.180586338043213 +illusion_1L,ppo,34,10.2,velocity,lower_uy,-0.28075888752937317 +illusion_1L,ppo,35,10.5,velocity,upper_ux,0.9136397242546082 +illusion_1L,ppo,35,10.5,velocity,upper_uy,-0.2345990538597107 +illusion_1L,ppo,35,10.5,velocity,center_ux,0.7005003094673157 +illusion_1L,ppo,35,10.5,velocity,center_uy,-0.5897688865661621 +illusion_1L,ppo,35,10.5,velocity,lower_ux,1.0719939470291138 +illusion_1L,ppo,35,10.5,velocity,lower_uy,-0.46903035044670105 +illusion_1L,ppo,36,10.8,velocity,upper_ux,0.9601930975914001 +illusion_1L,ppo,36,10.8,velocity,upper_uy,-0.28122374415397644 +illusion_1L,ppo,36,10.8,velocity,center_ux,0.7685874700546265 +illusion_1L,ppo,36,10.8,velocity,center_uy,-0.6073232293128967 +illusion_1L,ppo,36,10.8,velocity,lower_ux,0.9842718243598938 +illusion_1L,ppo,36,10.8,velocity,lower_uy,-0.5376080870628357 +illusion_1L,ppo,37,11.1,velocity,upper_ux,1.0110523700714111 +illusion_1L,ppo,37,11.1,velocity,upper_uy,-0.3215325176715851 +illusion_1L,ppo,37,11.1,velocity,center_ux,0.8198941349983215 +illusion_1L,ppo,37,11.1,velocity,center_uy,-0.6242270469665527 +illusion_1L,ppo,37,11.1,velocity,lower_ux,0.9205188751220703 +illusion_1L,ppo,37,11.1,velocity,lower_uy,-0.5236228704452515 +illusion_1L,ppo,38,11.4,velocity,upper_ux,1.0664502382278442 +illusion_1L,ppo,38,11.4,velocity,upper_uy,-0.3566347062587738 +illusion_1L,ppo,38,11.4,velocity,center_ux,0.8535960912704468 +illusion_1L,ppo,38,11.4,velocity,center_uy,-0.6498956680297852 +illusion_1L,ppo,38,11.4,velocity,lower_ux,0.8675900101661682 +illusion_1L,ppo,38,11.4,velocity,lower_uy,-0.4819049537181854 +illusion_1L,ppo,39,11.7,velocity,upper_ux,1.1278988122940063 +illusion_1L,ppo,39,11.7,velocity,upper_uy,-0.3870536983013153 +illusion_1L,ppo,39,11.7,velocity,center_ux,0.8709807395935059 +illusion_1L,ppo,39,11.7,velocity,center_uy,-0.6733755469322205 +illusion_1L,ppo,39,11.7,velocity,lower_ux,0.8142240643501282 +illusion_1L,ppo,39,11.7,velocity,lower_uy,-0.43067875504493713 +illusion_1L,ppo,40,12.0,velocity,upper_ux,1.1976598501205444 +illusion_1L,ppo,40,12.0,velocity,upper_uy,-0.4115005433559418 +illusion_1L,ppo,40,12.0,velocity,center_ux,0.8694872260093689 +illusion_1L,ppo,40,12.0,velocity,center_uy,-0.6660751104354858 +illusion_1L,ppo,40,12.0,velocity,lower_ux,0.7589534521102905 +illusion_1L,ppo,40,12.0,velocity,lower_uy,-0.36129143834114075 +illusion_1L,ppo,41,12.3,velocity,upper_ux,1.2756567001342773 +illusion_1L,ppo,41,12.3,velocity,upper_uy,-0.4217108190059662 +illusion_1L,ppo,41,12.3,velocity,center_ux,0.847594141960144 +illusion_1L,ppo,41,12.3,velocity,center_uy,-0.5840165019035339 +illusion_1L,ppo,41,12.3,velocity,lower_ux,0.707697868347168 +illusion_1L,ppo,41,12.3,velocity,lower_uy,-0.2629846930503845 +illusion_1L,ppo,42,12.6,velocity,upper_ux,1.3469818830490112 +illusion_1L,ppo,42,12.6,velocity,upper_uy,-0.38743317127227783 +illusion_1L,ppo,42,12.6,velocity,center_ux,0.8129525780677795 +illusion_1L,ppo,42,12.6,velocity,center_uy,-0.39850369095802307 +illusion_1L,ppo,42,12.6,velocity,lower_ux,0.6706627607345581 +illusion_1L,ppo,42,12.6,velocity,lower_uy,-0.1360902339220047 +illusion_1L,ppo,43,12.9,velocity,upper_ux,1.3718081712722778 +illusion_1L,ppo,43,12.9,velocity,upper_uy,-0.25576385855674744 +illusion_1L,ppo,43,12.9,velocity,center_ux,0.7821868062019348 +illusion_1L,ppo,43,12.9,velocity,center_uy,-0.12427196651697159 +illusion_1L,ppo,43,12.9,velocity,lower_ux,0.6600123047828674 +illusion_1L,ppo,43,12.9,velocity,lower_uy,0.0021291538141667843 +illusion_1L,ppo,44,13.2,velocity,upper_ux,1.3278337717056274 +illusion_1L,ppo,44,13.2,velocity,upper_uy,-0.029321517795324326 +illusion_1L,ppo,44,13.2,velocity,center_ux,0.7695428133010864 +illusion_1L,ppo,44,13.2,velocity,center_uy,0.18347957730293274 +illusion_1L,ppo,44,13.2,velocity,lower_ux,0.6850913763046265 +illusion_1L,ppo,44,13.2,velocity,lower_uy,0.12090272456407547 +illusion_1L,ppo,45,13.5,velocity,upper_ux,1.24546480178833 +illusion_1L,ppo,45,13.5,velocity,upper_uy,0.19661475718021393 +illusion_1L,ppo,45,13.5,velocity,center_ux,0.7788084149360657 +illusion_1L,ppo,45,13.5,velocity,center_uy,0.44954293966293335 +illusion_1L,ppo,45,13.5,velocity,lower_ux,0.7404366731643677 +illusion_1L,ppo,45,13.5,velocity,lower_uy,0.20089729130268097 +illusion_1L,ppo,46,13.8,velocity,upper_ux,1.156857967376709 +illusion_1L,ppo,46,13.8,velocity,upper_uy,0.3422374129295349 +illusion_1L,ppo,46,13.8,velocity,center_ux,0.8060730695724487 +illusion_1L,ppo,46,13.8,velocity,center_uy,0.6025360226631165 +illusion_1L,ppo,46,13.8,velocity,lower_ux,0.8059236407279968 +illusion_1L,ppo,46,13.8,velocity,lower_uy,0.2547140419483185 +illusion_1L,ppo,47,14.1,velocity,upper_ux,1.0770716667175293 +illusion_1L,ppo,47,14.1,velocity,upper_uy,0.3976116180419922 +illusion_1L,ppo,47,14.1,velocity,center_ux,0.8412583470344543 +illusion_1L,ppo,47,14.1,velocity,center_uy,0.6365861296653748 +illusion_1L,ppo,47,14.1,velocity,lower_ux,0.868950605392456 +illusion_1L,ppo,47,14.1,velocity,lower_uy,0.2994357943534851 +illusion_1L,ppo,48,14.4,velocity,upper_ux,1.010169506072998 +illusion_1L,ppo,48,14.4,velocity,upper_uy,0.3998449146747589 +illusion_1L,ppo,48,14.4,velocity,center_ux,0.8710364699363708 +illusion_1L,ppo,48,14.4,velocity,center_uy,0.6280050873756409 +illusion_1L,ppo,48,14.4,velocity,lower_ux,0.9293155670166016 +illusion_1L,ppo,48,14.4,velocity,lower_uy,0.3387066721916199 +illusion_1L,ppo,49,14.7,velocity,upper_ux,0.9510342478752136 +illusion_1L,ppo,49,14.7,velocity,upper_uy,0.38570863008499146 +illusion_1L,ppo,49,14.7,velocity,center_ux,0.8895092010498047 +illusion_1L,ppo,49,14.7,velocity,center_uy,0.6297786831855774 +illusion_1L,ppo,49,14.7,velocity,lower_ux,0.9893692135810852 +illusion_1L,ppo,49,14.7,velocity,lower_uy,0.37363874912261963 +illusion_1L,ppo,50,15.0,velocity,upper_ux,0.8932880759239197 +illusion_1L,ppo,50,15.0,velocity,upper_uy,0.367637038230896 +illusion_1L,ppo,50,15.0,velocity,center_ux,0.8969422578811646 +illusion_1L,ppo,50,15.0,velocity,center_uy,0.6472489833831787 +illusion_1L,ppo,50,15.0,velocity,lower_ux,1.0514429807662964 +illusion_1L,ppo,50,15.0,velocity,lower_uy,0.40606552362442017 +illusion_1L,ppo,51,15.3,velocity,upper_ux,0.834106981754303 +illusion_1L,ppo,51,15.3,velocity,upper_uy,0.341299444437027 +illusion_1L,ppo,51,15.3,velocity,center_ux,0.8919541239738464 +illusion_1L,ppo,51,15.3,velocity,center_uy,0.6706472039222717 +illusion_1L,ppo,51,15.3,velocity,lower_ux,1.1186230182647705 +illusion_1L,ppo,51,15.3,velocity,lower_uy,0.4372713267803192 +illusion_1L,ppo,52,15.6,velocity,upper_ux,0.7746744751930237 +illusion_1L,ppo,52,15.6,velocity,upper_uy,0.29684990644454956 +illusion_1L,ppo,52,15.6,velocity,center_ux,0.8695799708366394 +illusion_1L,ppo,52,15.6,velocity,center_uy,0.6741779446601868 +illusion_1L,ppo,52,15.6,velocity,lower_ux,1.1949329376220703 +illusion_1L,ppo,52,15.6,velocity,lower_uy,0.46659794449806213 +illusion_1L,ppo,53,15.9,velocity,upper_ux,0.7205812931060791 +illusion_1L,ppo,53,15.9,velocity,upper_uy,0.22602678835391998 +illusion_1L,ppo,53,15.9,velocity,center_ux,0.8265357613563538 +illusion_1L,ppo,53,15.9,velocity,center_uy,0.6131119728088379 +illusion_1L,ppo,53,15.9,velocity,lower_ux,1.2818204164505005 +illusion_1L,ppo,53,15.9,velocity,lower_uy,0.48326584696769714 +illusion_1L,ppo,54,16.2,velocity,upper_ux,0.6813037395477295 +illusion_1L,ppo,54,16.2,velocity,upper_uy,0.12846603989601135 +illusion_1L,ppo,54,16.2,velocity,center_ux,0.7711107134819031 +illusion_1L,ppo,54,16.2,velocity,center_uy,0.448738694190979 +illusion_1L,ppo,54,16.2,velocity,lower_ux,1.3618847131729126 +illusion_1L,ppo,54,16.2,velocity,lower_uy,0.44038212299346924 +illusion_1L,ppo,55,16.5,velocity,upper_ux,0.6682659983634949 +illusion_1L,ppo,55,16.5,velocity,upper_uy,0.0166300218552351 +illusion_1L,ppo,55,16.5,velocity,center_ux,0.7250003814697266 +illusion_1L,ppo,55,16.5,velocity,center_uy,0.18269890546798706 +illusion_1L,ppo,55,16.5,velocity,lower_ux,1.39510977268219 +illusion_1L,ppo,55,16.5,velocity,lower_uy,0.268337219953537 +illusion_1L,ppo,56,16.8,velocity,upper_ux,0.6903764605522156 +illusion_1L,ppo,56,16.8,velocity,upper_uy,-0.08569347113370895 +illusion_1L,ppo,56,16.8,velocity,center_ux,0.7084858417510986 +illusion_1L,ppo,56,16.8,velocity,center_uy,-0.13256318867206573 +illusion_1L,ppo,56,16.8,velocity,lower_ux,1.3720608949661255 +illusion_1L,ppo,56,16.8,velocity,lower_uy,-0.0027887679170817137 +illusion_1L,ppo,57,17.1,velocity,upper_ux,0.7438055872917175 +illusion_1L,ppo,57,17.1,velocity,upper_uy,-0.16043274104595184 +illusion_1L,ppo,57,17.1,velocity,center_ux,0.7251307368278503 +illusion_1L,ppo,57,17.1,velocity,center_uy,-0.42123541235923767 +illusion_1L,ppo,57,17.1,velocity,lower_ux,1.3120654821395874 +illusion_1L,ppo,57,17.1,velocity,lower_uy,-0.2597823739051819 +illusion_1L,ppo,58,17.4,velocity,upper_ux,0.8096762895584106 +illusion_1L,ppo,58,17.4,velocity,upper_uy,-0.2144918292760849 +illusion_1L,ppo,58,17.4,velocity,center_ux,0.7669749855995178 +illusion_1L,ppo,58,17.4,velocity,center_uy,-0.6112399697303772 +illusion_1L,ppo,58,17.4,velocity,lower_ux,1.2298774719238281 +illusion_1L,ppo,58,17.4,velocity,lower_uy,-0.42355918884277344 +illusion_1L,ppo,59,17.7,velocity,upper_ux,0.8740595579147339 +illusion_1L,ppo,59,17.7,velocity,upper_uy,-0.26166296005249023 +illusion_1L,ppo,59,17.7,velocity,center_ux,0.8218312859535217 +illusion_1L,ppo,59,17.7,velocity,center_uy,-0.6697343587875366 +illusion_1L,ppo,59,17.7,velocity,lower_ux,1.143078088760376 +illusion_1L,ppo,59,17.7,velocity,lower_uy,-0.482025146484375 +illusion_1L,ppo,60,18.0,velocity,upper_ux,0.9362803101539612 +illusion_1L,ppo,60,18.0,velocity,upper_uy,-0.3031461238861084 +illusion_1L,ppo,60,18.0,velocity,center_ux,0.8724143505096436 +illusion_1L,ppo,60,18.0,velocity,center_uy,-0.659972608089447 +illusion_1L,ppo,60,18.0,velocity,lower_ux,1.0647858381271362 +illusion_1L,ppo,60,18.0,velocity,lower_uy,-0.47922423481941223 +illusion_1L,ppo,61,18.3,velocity,upper_ux,0.9987241625785828 +illusion_1L,ppo,61,18.3,velocity,upper_uy,-0.3380153775215149 +illusion_1L,ppo,61,18.3,velocity,center_ux,0.9084998369216919 +illusion_1L,ppo,61,18.3,velocity,center_uy,-0.6556689739227295 +illusion_1L,ppo,61,18.3,velocity,lower_ux,0.9955412745475769 +illusion_1L,ppo,61,18.3,velocity,lower_uy,-0.459921270608902 +illusion_1L,ppo,62,18.6,velocity,upper_ux,1.0636496543884277 +illusion_1L,ppo,62,18.6,velocity,upper_uy,-0.36732015013694763 +illusion_1L,ppo,62,18.6,velocity,center_ux,0.9306758642196655 +illusion_1L,ppo,62,18.6,velocity,center_uy,-0.6701703667640686 +illusion_1L,ppo,62,18.6,velocity,lower_ux,0.9295425415039062 +illusion_1L,ppo,62,18.6,velocity,lower_uy,-0.43670958280563354 +illusion_1L,ppo,63,18.9,velocity,upper_ux,1.1343082189559937 +illusion_1L,ppo,63,18.9,velocity,upper_uy,-0.39143845438957214 +illusion_1L,ppo,63,18.9,velocity,center_ux,0.9391856789588928 +illusion_1L,ppo,63,18.9,velocity,center_uy,-0.6919623017311096 +illusion_1L,ppo,63,18.9,velocity,lower_ux,0.8628941774368286 +illusion_1L,ppo,63,18.9,velocity,lower_uy,-0.40067383646965027 +illusion_1L,ppo,64,19.2,velocity,upper_ux,1.214428424835205 +illusion_1L,ppo,64,19.2,velocity,upper_uy,-0.4076748788356781 +illusion_1L,ppo,64,19.2,velocity,center_ux,0.9296053051948547 +illusion_1L,ppo,64,19.2,velocity,center_uy,-0.6855095028877258 +illusion_1L,ppo,64,19.2,velocity,lower_ux,0.7963733673095703 +illusion_1L,ppo,64,19.2,velocity,lower_uy,-0.33700186014175415 +illusion_1L,ppo,65,19.5,velocity,upper_ux,1.3021705150604248 +illusion_1L,ppo,65,19.5,velocity,upper_uy,-0.4014565348625183 +illusion_1L,ppo,65,19.5,velocity,center_ux,0.9008322954177856 +illusion_1L,ppo,65,19.5,velocity,center_uy,-0.5850756168365479 +illusion_1L,ppo,65,19.5,velocity,lower_ux,0.7365506291389465 +illusion_1L,ppo,65,19.5,velocity,lower_uy,-0.23543037474155426 +illusion_1L,ppo,66,19.8,velocity,upper_ux,1.3698853254318237 +illusion_1L,ppo,66,19.8,velocity,upper_uy,-0.3265778422355652 +illusion_1L,ppo,66,19.8,velocity,center_ux,0.8672681450843811 +illusion_1L,ppo,66,19.8,velocity,center_uy,-0.3498671352863312 +illusion_1L,ppo,66,19.8,velocity,lower_ux,0.6952426433563232 +illusion_1L,ppo,66,19.8,velocity,lower_uy,-0.10003434866666794 +illusion_1L,ppo,67,20.1,velocity,upper_ux,1.3700799942016602 +illusion_1L,ppo,67,20.1,velocity,upper_uy,-0.14360128343105316 +illusion_1L,ppo,67,20.1,velocity,center_ux,0.8486930131912231 +illusion_1L,ppo,67,20.1,velocity,center_uy,-0.022344086319208145 +illusion_1L,ppo,67,20.1,velocity,lower_ux,0.6860862970352173 +illusion_1L,ppo,67,20.1,velocity,lower_uy,0.04491943120956421 +illusion_1L,ppo,68,20.4,velocity,upper_ux,1.3083117008209229 +illusion_1L,ppo,68,20.4,velocity,upper_uy,0.0793919712305069 +illusion_1L,ppo,68,20.4,velocity,center_ux,0.8520793914794922 +illusion_1L,ppo,68,20.4,velocity,center_uy,0.3024657368659973 +illusion_1L,ppo,68,20.4,velocity,lower_ux,0.7166262269020081 +illusion_1L,ppo,68,20.4,velocity,lower_uy,0.163059264421463 +illusion_1L,ppo,69,20.7,velocity,upper_ux,1.225109338760376 +illusion_1L,ppo,69,20.7,velocity,upper_uy,0.24555166065692902 +illusion_1L,ppo,69,20.7,velocity,center_ux,0.8715150952339172 +illusion_1L,ppo,69,20.7,velocity,center_uy,0.5312384366989136 +illusion_1L,ppo,69,20.7,velocity,lower_ux,0.7761416435241699 +illusion_1L,ppo,69,20.7,velocity,lower_uy,0.23772229254245758 +illusion_1L,ppo,70,21.0,velocity,upper_ux,1.1428475379943848 +illusion_1L,ppo,70,21.0,velocity,upper_uy,0.3292003273963928 +illusion_1L,ppo,70,21.0,velocity,center_ux,0.897553026676178 +illusion_1L,ppo,70,21.0,velocity,center_uy,0.6175345182418823 +illusion_1L,ppo,70,21.0,velocity,lower_ux,0.8429237604141235 +illusion_1L,ppo,70,21.0,velocity,lower_uy,0.28570857644081116 +illusion_1L,ppo,71,21.3,velocity,upper_ux,1.0711747407913208 +illusion_1L,ppo,71,21.3,velocity,upper_uy,0.3557681143283844 +illusion_1L,ppo,71,21.3,velocity,center_ux,0.9215877056121826 +illusion_1L,ppo,71,21.3,velocity,center_uy,0.613920271396637 +illusion_1L,ppo,71,21.3,velocity,lower_ux,0.9065346121788025 +illusion_1L,ppo,71,21.3,velocity,lower_uy,0.3238718807697296 +illusion_1L,ppo,72,21.6,velocity,upper_ux,1.0095266103744507 +illusion_1L,ppo,72,21.6,velocity,upper_uy,0.3585663139820099 +illusion_1L,ppo,72,21.6,velocity,center_ux,0.9377228021621704 +illusion_1L,ppo,72,21.6,velocity,center_uy,0.6013849377632141 +illusion_1L,ppo,72,21.6,velocity,lower_ux,0.9670974612236023 +illusion_1L,ppo,72,21.6,velocity,lower_uy,0.3568820655345917 +illusion_1L,ppo,73,21.9,velocity,upper_ux,0.9525524973869324 +illusion_1L,ppo,73,21.9,velocity,upper_uy,0.35351377725601196 +illusion_1L,ppo,73,21.9,velocity,center_ux,0.9447548389434814 +illusion_1L,ppo,73,21.9,velocity,center_uy,0.6061394214630127 +illusion_1L,ppo,73,21.9,velocity,lower_ux,1.0267740488052368 +illusion_1L,ppo,73,21.9,velocity,lower_uy,0.38703683018684387 +illusion_1L,ppo,74,22.2,velocity,upper_ux,0.8957732915878296 +illusion_1L,ppo,74,22.2,velocity,upper_uy,0.340707004070282 +illusion_1L,ppo,74,22.2,velocity,center_ux,0.9422146677970886 +illusion_1L,ppo,74,22.2,velocity,center_uy,0.6262850761413574 +illusion_1L,ppo,74,22.2,velocity,lower_ux,1.0883232355117798 +illusion_1L,ppo,74,22.2,velocity,lower_uy,0.41634222865104675 +illusion_1L,ppo,75,22.5,velocity,upper_ux,0.8374233841896057 +illusion_1L,ppo,75,22.5,velocity,upper_uy,0.3127579092979431 +illusion_1L,ppo,75,22.5,velocity,center_ux,0.9267184734344482 +illusion_1L,ppo,75,22.5,velocity,center_uy,0.650292694568634 +illusion_1L,ppo,75,22.5,velocity,lower_ux,1.15577232837677 +illusion_1L,ppo,75,22.5,velocity,lower_uy,0.4459109902381897 +illusion_1L,ppo,76,22.8,velocity,upper_ux,0.7795230150222778 +illusion_1L,ppo,76,22.8,velocity,upper_uy,0.2602718770503998 +illusion_1L,ppo,76,22.8,velocity,center_ux,0.8918140530586243 +illusion_1L,ppo,76,22.8,velocity,center_uy,0.6455234289169312 +illusion_1L,ppo,76,22.8,velocity,lower_ux,1.2344083786010742 +illusion_1L,ppo,76,22.8,velocity,lower_uy,0.474083811044693 +illusion_1L,ppo,77,23.1,velocity,upper_ux,0.729034960269928 +illusion_1L,ppo,77,23.1,velocity,upper_uy,0.17748281359672546 +illusion_1L,ppo,77,23.1,velocity,center_ux,0.8362038135528564 +illusion_1L,ppo,77,23.1,velocity,center_uy,0.5556111931800842 +illusion_1L,ppo,77,23.1,velocity,lower_ux,1.323722243309021 +illusion_1L,ppo,77,23.1,velocity,lower_uy,0.48193633556365967 +illusion_1L,ppo,78,23.4,velocity,upper_ux,0.6976228952407837 +illusion_1L,ppo,78,23.4,velocity,upper_uy,0.06947970390319824 +illusion_1L,ppo,78,23.4,velocity,center_ux,0.7769291400909424 +illusion_1L,ppo,78,23.4,velocity,center_uy,0.34149834513664246 +illusion_1L,ppo,78,23.4,velocity,lower_ux,1.392464280128479 +illusion_1L,ppo,78,23.4,velocity,lower_uy,0.3966153860092163 +illusion_1L,ppo,79,23.7,velocity,upper_ux,0.6980652213096619 +illusion_1L,ppo,79,23.7,velocity,upper_uy,-0.04349303990602493 +illusion_1L,ppo,79,23.7,velocity,center_ux,0.7412261962890625 +illusion_1L,ppo,79,23.7,velocity,center_uy,0.032969389110803604 +illusion_1L,ppo,79,23.7,velocity,lower_ux,1.3947871923446655 +illusion_1L,ppo,79,23.7,velocity,lower_uy,0.15792882442474365 +illusion_1L,ppo,80,24.0,velocity,upper_ux,0.7347306609153748 +illusion_1L,ppo,80,24.0,velocity,upper_uy,-0.13559812307357788 +illusion_1L,ppo,80,24.0,velocity,center_ux,0.7414088845252991 +illusion_1L,ppo,80,24.0,velocity,center_uy,-0.28805938363075256 +illusion_1L,ppo,80,24.0,velocity,lower_ux,1.3429549932479858 +illusion_1L,ppo,80,24.0,velocity,lower_uy,-0.1355571746826172 +illusion_1L,ppo,81,24.3,velocity,upper_ux,0.7941040396690369 +illusion_1L,ppo,81,24.3,velocity,upper_uy,-0.20031794905662537 +illusion_1L,ppo,81,24.3,velocity,center_ux,0.7721191644668579 +illusion_1L,ppo,81,24.3,velocity,center_uy,-0.5375063419342041 +illusion_1L,ppo,81,24.3,velocity,lower_ux,1.2649012804031372 +illusion_1L,ppo,81,24.3,velocity,lower_uy,-0.35915103554725647 +illusion_1L,ppo,82,24.6,velocity,upper_ux,0.8576700091362 +illusion_1L,ppo,82,24.6,velocity,upper_uy,-0.25062504410743713 +illusion_1L,ppo,82,24.6,velocity,center_ux,0.8221167922019958 +illusion_1L,ppo,82,24.6,velocity,center_uy,-0.6543638706207275 +illusion_1L,ppo,82,24.6,velocity,lower_ux,1.1776025295257568 +illusion_1L,ppo,82,24.6,velocity,lower_uy,-0.46896111965179443 +illusion_1L,ppo,83,24.9,velocity,upper_ux,0.9195776581764221 +illusion_1L,ppo,83,24.9,velocity,upper_uy,-0.2933003604412079 +illusion_1L,ppo,83,24.9,velocity,center_ux,0.8753576874732971 +illusion_1L,ppo,83,24.9,velocity,center_uy,-0.6652374267578125 +illusion_1L,ppo,83,24.9,velocity,lower_ux,1.0963870286941528 +illusion_1L,ppo,83,24.9,velocity,lower_uy,-0.4935239255428314 +illusion_1L,ppo,84,25.2,velocity,upper_ux,0.9810289740562439 +illusion_1L,ppo,84,25.2,velocity,upper_uy,-0.32870733737945557 +illusion_1L,ppo,84,25.2,velocity,center_ux,0.9179188013076782 +illusion_1L,ppo,84,25.2,velocity,center_uy,-0.6570708751678467 +illusion_1L,ppo,84,25.2,velocity,lower_ux,1.0258082151412964 +illusion_1L,ppo,84,25.2,velocity,lower_uy,-0.485750287771225 +illusion_1L,ppo,85,25.5,velocity,upper_ux,1.0440222024917603 +illusion_1L,ppo,85,25.5,velocity,upper_uy,-0.3579547107219696 +illusion_1L,ppo,85,25.5,velocity,center_ux,0.947850227355957 +illusion_1L,ppo,85,25.5,velocity,center_uy,-0.665766716003418 +illusion_1L,ppo,85,25.5,velocity,lower_ux,0.9610389471054077 +illusion_1L,ppo,85,25.5,velocity,lower_uy,-0.4717075526714325 +illusion_1L,ppo,86,25.8,velocity,upper_ux,1.111229419708252 +illusion_1L,ppo,86,25.8,velocity,upper_uy,-0.38190311193466187 +illusion_1L,ppo,86,25.8,velocity,center_ux,0.9669027924537659 +illusion_1L,ppo,86,25.8,velocity,center_uy,-0.6895856857299805 +illusion_1L,ppo,86,25.8,velocity,lower_ux,0.8963527679443359 +illusion_1L,ppo,86,25.8,velocity,lower_uy,-0.44924473762512207 +illusion_1L,ppo,87,26.1,velocity,upper_ux,1.1859989166259766 +illusion_1L,ppo,87,26.1,velocity,upper_uy,-0.3996048867702484 +illusion_1L,ppo,87,26.1,velocity,center_ux,0.9722771048545837 +illusion_1L,ppo,87,26.1,velocity,center_uy,-0.7086288332939148 +illusion_1L,ppo,87,26.1,velocity,lower_ux,0.8292421102523804 +illusion_1L,ppo,87,26.1,velocity,lower_uy,-0.4038565754890442 +illusion_1L,ppo,88,26.4,velocity,upper_ux,1.2706854343414307 +illusion_1L,ppo,88,26.4,velocity,upper_uy,-0.40486863255500793 +illusion_1L,ppo,88,26.4,velocity,center_ux,0.9580541253089905 +illusion_1L,ppo,88,26.4,velocity,center_uy,-0.6645485162734985 +illusion_1L,ppo,88,26.4,velocity,lower_ux,0.7629619240760803 +illusion_1L,ppo,88,26.4,velocity,lower_uy,-0.31936705112457275 +illusion_1L,ppo,89,26.7,velocity,upper_ux,1.3543806076049805 +illusion_1L,ppo,89,26.7,velocity,upper_uy,-0.37151259183883667 +illusion_1L,ppo,89,26.7,velocity,center_ux,0.929830014705658 +illusion_1L,ppo,89,26.7,velocity,center_uy,-0.48398321866989136 +illusion_1L,ppo,89,26.7,velocity,lower_ux,0.7076213359832764 +illusion_1L,ppo,89,26.7,velocity,lower_uy,-0.18953509628772736 +illusion_1L,ppo,90,27.0,velocity,upper_ux,1.3906675577163696 +illusion_1L,ppo,90,27.0,velocity,upper_uy,-0.2434457391500473 +illusion_1L,ppo,90,27.0,velocity,center_ux,0.9086160063743591 +illusion_1L,ppo,90,27.0,velocity,center_uy,-0.1726670265197754 +illusion_1L,ppo,90,27.0,velocity,lower_ux,0.6778086423873901 +illusion_1L,ppo,90,27.0,velocity,lower_uy,-0.028948692604899406 +illusion_1L,ppo,91,27.3,velocity,upper_ux,1.3449437618255615 +illusion_1L,ppo,91,27.3,velocity,upper_uy,-0.025972019881010056 +illusion_1L,ppo,91,27.3,velocity,center_ux,0.906836748123169 +illusion_1L,ppo,91,27.3,velocity,center_uy,0.17604953050613403 +illusion_1L,ppo,91,27.3,velocity,lower_ux,0.6870531439781189 +illusion_1L,ppo,91,27.3,velocity,lower_uy,0.12457679957151413 +illusion_1L,ppo,92,27.6,velocity,upper_ux,1.2578412294387817 +illusion_1L,ppo,92,27.6,velocity,upper_uy,0.17204956710338593 +illusion_1L,ppo,92,27.6,velocity,center_ux,0.9201927781105042 +illusion_1L,ppo,92,27.6,velocity,center_uy,0.4569350779056549 +illusion_1L,ppo,92,27.6,velocity,lower_ux,0.7369540929794312 +illusion_1L,ppo,92,27.6,velocity,lower_uy,0.23039235174655914 +illusion_1L,ppo,93,27.9,velocity,upper_ux,1.1718026399612427 +illusion_1L,ppo,93,27.9,velocity,upper_uy,0.2864777147769928 +illusion_1L,ppo,93,27.9,velocity,center_ux,0.9388272166252136 +illusion_1L,ppo,93,27.9,velocity,center_uy,0.5964599251747131 +illusion_1L,ppo,93,27.9,velocity,lower_ux,0.8079590201377869 +illusion_1L,ppo,93,27.9,velocity,lower_uy,0.2869710922241211 +illusion_1L,ppo,94,28.2,velocity,upper_ux,1.0990900993347168 +illusion_1L,ppo,94,28.2,velocity,upper_uy,0.3317072093486786 +illusion_1L,ppo,94,28.2,velocity,center_ux,0.956342339515686 +illusion_1L,ppo,94,28.2,velocity,center_uy,0.6126325726509094 +illusion_1L,ppo,94,28.2,velocity,lower_ux,0.8784793019294739 +illusion_1L,ppo,94,28.2,velocity,lower_uy,0.3225547671318054 +illusion_1L,ppo,95,28.5,velocity,upper_ux,1.0382575988769531 +illusion_1L,ppo,95,28.5,velocity,upper_uy,0.3445386588573456 +illusion_1L,ppo,95,28.5,velocity,center_ux,0.9694120287895203 +illusion_1L,ppo,95,28.5,velocity,center_uy,0.5952369570732117 +illusion_1L,ppo,95,28.5,velocity,lower_ux,0.9430661797523499 +illusion_1L,ppo,95,28.5,velocity,lower_uy,0.35172730684280396 +illusion_1L,ppo,96,28.8,velocity,upper_ux,0.9829822778701782 +illusion_1L,ppo,96,28.8,velocity,upper_uy,0.3473912179470062 +illusion_1L,ppo,96,28.8,velocity,center_ux,0.9765351414680481 +illusion_1L,ppo,96,28.8,velocity,center_uy,0.5919677019119263 +illusion_1L,ppo,96,28.8,velocity,lower_ux,1.0037227869033813 +illusion_1L,ppo,96,28.8,velocity,lower_uy,0.3775533437728882 +illusion_1L,ppo,97,29.1,velocity,upper_ux,0.928011953830719 +illusion_1L,ppo,97,29.1,velocity,upper_uy,0.3445841073989868 +illusion_1L,ppo,97,29.1,velocity,center_ux,0.9775084257125854 +illusion_1L,ppo,97,29.1,velocity,center_uy,0.6068363785743713 +illusion_1L,ppo,97,29.1,velocity,lower_ux,1.0633511543273926 +illusion_1L,ppo,97,29.1,velocity,lower_uy,0.4019067883491516 +illusion_1L,ppo,98,29.4,velocity,upper_ux,0.8705219626426697 +illusion_1L,ppo,98,29.4,velocity,upper_uy,0.3309189975261688 +illusion_1L,ppo,98,29.4,velocity,center_ux,0.9707536101341248 +illusion_1L,ppo,98,29.4,velocity,center_uy,0.6344444751739502 +illusion_1L,ppo,98,29.4,velocity,lower_ux,1.125589370727539 +illusion_1L,ppo,98,29.4,velocity,lower_uy,0.42601609230041504 +illusion_1L,ppo,99,29.7,velocity,upper_ux,0.8104807138442993 +illusion_1L,ppo,99,29.7,velocity,upper_uy,0.29702118039131165 +illusion_1L,ppo,99,29.7,velocity,center_ux,0.950883150100708 +illusion_1L,ppo,99,29.7,velocity,center_uy,0.6575545072555542 +illusion_1L,ppo,99,29.7,velocity,lower_ux,1.1952182054519653 +illusion_1L,ppo,99,29.7,velocity,lower_uy,0.4499432444572449 +illusion_1L,ppo,100,30.0,velocity,upper_ux,0.7523688077926636 +illusion_1L,ppo,100,30.0,velocity,upper_uy,0.23339545726776123 +illusion_1L,ppo,100,30.0,velocity,center_ux,0.9103105664253235 +illusion_1L,ppo,100,30.0,velocity,center_uy,0.6311859488487244 +illusion_1L,ppo,100,30.0,velocity,lower_ux,1.277519702911377 +illusion_1L,ppo,100,30.0,velocity,lower_uy,0.4694467782974243 +illusion_1L,ppo,101,30.3,velocity,upper_ux,0.7059066295623779 +illusion_1L,ppo,101,30.3,velocity,upper_uy,0.13717608153820038 +illusion_1L,ppo,101,30.3,velocity,center_ux,0.852002739906311 +illusion_1L,ppo,101,30.3,velocity,center_uy,0.4931606650352478 +illusion_1L,ppo,101,30.3,velocity,lower_ux,1.3665962219238281 +illusion_1L,ppo,101,30.3,velocity,lower_uy,0.45611047744750977 +illusion_1L,ppo,102,30.6,velocity,upper_ux,0.6844112873077393 +illusion_1L,ppo,102,30.6,velocity,upper_uy,0.019757186993956566 +illusion_1L,ppo,102,30.6,velocity,center_ux,0.7996364831924438 +illusion_1L,ppo,102,30.6,velocity,center_uy,0.22598975896835327 +illusion_1L,ppo,102,30.6,velocity,lower_ux,1.4171700477600098 +illusion_1L,ppo,102,30.6,velocity,lower_uy,0.3269971013069153 +illusion_1L,ppo,103,30.9,velocity,upper_ux,0.6994820237159729 +illusion_1L,ppo,103,30.9,velocity,upper_uy,-0.09213695675134659 +illusion_1L,ppo,103,30.9,velocity,center_ux,0.7774444222450256 +illusion_1L,ppo,103,30.9,velocity,center_uy,-0.10741401463747025 +illusion_1L,ppo,103,30.9,velocity,lower_ux,1.3887832164764404 +illusion_1L,ppo,103,30.9,velocity,lower_uy,0.058274365961551666 +illusion_1L,ppo,104,31.2,velocity,upper_ux,0.7491663098335266 +illusion_1L,ppo,104,31.2,velocity,upper_uy,-0.17449349164962769 +illusion_1L,ppo,104,31.2,velocity,center_ux,0.7891399264335632 +illusion_1L,ppo,104,31.2,velocity,center_uy,-0.4128890335559845 +illusion_1L,ppo,104,31.2,velocity,lower_ux,1.3143047094345093 +illusion_1L,ppo,104,31.2,velocity,lower_uy,-0.21528171002864838 +illusion_1L,ppo,105,31.5,velocity,upper_ux,0.8141036033630371 +illusion_1L,ppo,105,31.5,velocity,upper_uy,-0.23056137561798096 +illusion_1L,ppo,105,31.5,velocity,center_ux,0.8257647156715393 +illusion_1L,ppo,105,31.5,velocity,center_uy,-0.6065934896469116 +illusion_1L,ppo,105,31.5,velocity,lower_ux,1.226549506187439 +illusion_1L,ppo,105,31.5,velocity,lower_uy,-0.3885897696018219 +illusion_1L,ppo,106,31.8,velocity,upper_ux,0.8783547878265381 +illusion_1L,ppo,106,31.8,velocity,upper_uy,-0.2753821015357971 +illusion_1L,ppo,106,31.8,velocity,center_ux,0.8738800883293152 +illusion_1L,ppo,106,31.8,velocity,center_uy,-0.6597409248352051 +illusion_1L,ppo,106,31.8,velocity,lower_ux,1.1419258117675781 +illusion_1L,ppo,106,31.8,velocity,lower_uy,-0.4544667601585388 +illusion_1L,ppo,107,32.1,velocity,upper_ux,0.939876914024353 +illusion_1L,ppo,107,32.1,velocity,upper_uy,-0.313020795583725 +illusion_1L,ppo,107,32.1,velocity,center_ux,0.9180872440338135 +illusion_1L,ppo,107,32.1,velocity,center_uy,-0.6469898223876953 +illusion_1L,ppo,107,32.1,velocity,lower_ux,1.0690715312957764 +illusion_1L,ppo,107,32.1,velocity,lower_uy,-0.4623880982398987 +illusion_1L,ppo,108,32.4,velocity,upper_ux,1.0006787776947021 +illusion_1L,ppo,108,32.4,velocity,upper_uy,-0.3440275490283966 +illusion_1L,ppo,108,32.4,velocity,center_ux,0.9513044953346252 +illusion_1L,ppo,108,32.4,velocity,center_uy,-0.6406519412994385 +illusion_1L,ppo,108,32.4,velocity,lower_ux,1.005427598953247 +illusion_1L,ppo,108,32.4,velocity,lower_uy,-0.45569688081741333 +illusion_1L,ppo,109,32.7,velocity,upper_ux,1.062760591506958 +illusion_1L,ppo,109,32.7,velocity,upper_uy,-0.3698713183403015 +illusion_1L,ppo,109,32.7,velocity,center_ux,0.9749253392219543 +illusion_1L,ppo,109,32.7,velocity,center_uy,-0.6533782482147217 +illusion_1L,ppo,109,32.7,velocity,lower_ux,0.944473385810852 +illusion_1L,ppo,109,32.7,velocity,lower_uy,-0.4456411302089691 +illusion_1L,ppo,110,33.0,velocity,upper_ux,1.128629207611084 +illusion_1L,ppo,110,33.0,velocity,upper_uy,-0.39131787419319153 +illusion_1L,ppo,110,33.0,velocity,center_ux,0.9896690845489502 +illusion_1L,ppo,110,33.0,velocity,center_uy,-0.6795378923416138 +illusion_1L,ppo,110,33.0,velocity,lower_ux,0.8812791109085083 +illusion_1L,ppo,110,33.0,velocity,lower_uy,-0.4245242774486542 +illusion_1L,ppo,111,33.3,velocity,upper_ux,1.2014739513397217 +illusion_1L,ppo,111,33.3,velocity,upper_uy,-0.40729811787605286 +illusion_1L,ppo,111,33.3,velocity,center_ux,0.9910660982131958 +illusion_1L,ppo,111,33.3,velocity,center_uy,-0.6969991326332092 +illusion_1L,ppo,111,33.3,velocity,lower_ux,0.814490556716919 +illusion_1L,ppo,111,33.3,velocity,lower_uy,-0.37730374932289124 +illusion_1L,ppo,112,33.6,velocity,upper_ux,1.283720850944519 +illusion_1L,ppo,112,33.6,velocity,upper_uy,-0.41174066066741943 +illusion_1L,ppo,112,33.6,velocity,center_ux,0.972006618976593 +illusion_1L,ppo,112,33.6,velocity,center_uy,-0.6449854969978333 +illusion_1L,ppo,112,33.6,velocity,lower_ux,0.7488803863525391 +illusion_1L,ppo,112,33.6,velocity,lower_uy,-0.2893064618110657 +illusion_1L,ppo,113,33.9,velocity,upper_ux,1.364923357963562 +illusion_1L,ppo,113,33.9,velocity,upper_uy,-0.3789885640144348 +illusion_1L,ppo,113,33.9,velocity,center_ux,0.9383096098899841 +illusion_1L,ppo,113,33.9,velocity,center_uy,-0.45409560203552246 +illusion_1L,ppo,113,33.9,velocity,lower_ux,0.6960248947143555 +illusion_1L,ppo,113,33.9,velocity,lower_uy,-0.15732131898403168 +illusion_1L,ppo,114,34.2,velocity,upper_ux,1.3979382514953613 +illusion_1L,ppo,114,34.2,velocity,upper_uy,-0.25105851888656616 +illusion_1L,ppo,114,34.2,velocity,center_ux,0.9120202660560608 +illusion_1L,ppo,114,34.2,velocity,center_uy,-0.13807141780853271 +illusion_1L,ppo,114,34.2,velocity,lower_ux,0.6712217926979065 +illusion_1L,ppo,114,34.2,velocity,lower_uy,0.0005244536441750824 +illusion_1L,ppo,115,34.5,velocity,upper_ux,1.3450026512145996 +illusion_1L,ppo,115,34.5,velocity,upper_uy,-0.027253586798906326 +illusion_1L,ppo,115,34.5,velocity,center_ux,0.9065045118331909 +illusion_1L,ppo,115,34.5,velocity,center_uy,0.20767219364643097 +illusion_1L,ppo,115,34.5,velocity,lower_ux,0.6875160932540894 +illusion_1L,ppo,115,34.5,velocity,lower_uy,0.14452414214611053 +illusion_1L,ppo,116,34.8,velocity,upper_ux,1.2499278783798218 +illusion_1L,ppo,116,34.8,velocity,upper_uy,0.17925651371479034 +illusion_1L,ppo,116,34.8,velocity,center_ux,0.9180982708930969 +illusion_1L,ppo,116,34.8,velocity,center_uy,0.47800159454345703 +illusion_1L,ppo,116,34.8,velocity,lower_ux,0.7432913184165955 +illusion_1L,ppo,116,34.8,velocity,lower_uy,0.23844535648822784 +illusion_1L,ppo,117,35.1,velocity,upper_ux,1.160879135131836 +illusion_1L,ppo,117,35.1,velocity,upper_uy,0.2964862287044525 +illusion_1L,ppo,117,35.1,velocity,center_ux,0.937070906162262 +illusion_1L,ppo,117,35.1,velocity,center_uy,0.6021345257759094 +illusion_1L,ppo,117,35.1,velocity,lower_ux,0.8158890008926392 +illusion_1L,ppo,117,35.1,velocity,lower_uy,0.28856247663497925 +illusion_1L,ppo,118,35.4,velocity,upper_ux,1.0892292261123657 +illusion_1L,ppo,118,35.4,velocity,upper_uy,0.340286523103714 +illusion_1L,ppo,118,35.4,velocity,center_ux,0.955944836139679 +illusion_1L,ppo,118,35.4,velocity,center_uy,0.609386146068573 +illusion_1L,ppo,118,35.4,velocity,lower_ux,0.8852493166923523 +illusion_1L,ppo,118,35.4,velocity,lower_uy,0.32266607880592346 +illusion_1L,ppo,119,35.7,velocity,upper_ux,1.0304336547851562 +illusion_1L,ppo,119,35.7,velocity,upper_uy,0.35159143805503845 +illusion_1L,ppo,119,35.7,velocity,center_ux,0.9701231718063354 +illusion_1L,ppo,119,35.7,velocity,center_uy,0.5917284488677979 +illusion_1L,ppo,119,35.7,velocity,lower_ux,0.9480370879173279 +illusion_1L,ppo,119,35.7,velocity,lower_uy,0.35148152709007263 +illusion_1L,ppo,120,36.0,velocity,upper_ux,0.9766367673873901 +illusion_1L,ppo,120,36.0,velocity,upper_uy,0.35444965958595276 +illusion_1L,ppo,120,36.0,velocity,center_ux,0.9782969355583191 +illusion_1L,ppo,120,36.0,velocity,center_uy,0.5903350710868835 +illusion_1L,ppo,120,36.0,velocity,lower_ux,1.0068684816360474 +illusion_1L,ppo,120,36.0,velocity,lower_uy,0.3770090937614441 +illusion_1L,ppo,121,36.3,velocity,upper_ux,0.9224923849105835 +illusion_1L,ppo,121,36.3,velocity,upper_uy,0.3530227243900299 +illusion_1L,ppo,121,36.3,velocity,center_ux,0.980838418006897 +illusion_1L,ppo,121,36.3,velocity,center_uy,0.6067314743995667 +illusion_1L,ppo,121,36.3,velocity,lower_ux,1.0647846460342407 +illusion_1L,ppo,121,36.3,velocity,lower_uy,0.4009636342525482 +illusion_1L,ppo,122,36.6,velocity,upper_ux,0.8654761910438538 +illusion_1L,ppo,122,36.6,velocity,upper_uy,0.34182009100914 +illusion_1L,ppo,122,36.6,velocity,center_ux,0.976682722568512 +illusion_1L,ppo,122,36.6,velocity,center_uy,0.63600093126297 +illusion_1L,ppo,122,36.6,velocity,lower_ux,1.1254581212997437 +illusion_1L,ppo,122,36.6,velocity,lower_uy,0.42446717619895935 +illusion_1L,ppo,123,36.9,velocity,upper_ux,0.8055825233459473 +illusion_1L,ppo,123,36.9,velocity,upper_uy,0.31113359332084656 +illusion_1L,ppo,123,36.9,velocity,center_ux,0.9608387351036072 +illusion_1L,ppo,123,36.9,velocity,center_uy,0.6631891131401062 +illusion_1L,ppo,123,36.9,velocity,lower_ux,1.193510890007019 +illusion_1L,ppo,123,36.9,velocity,lower_uy,0.4475761353969574 +illusion_1L,ppo,124,37.2,velocity,upper_ux,0.7467646598815918 +illusion_1L,ppo,124,37.2,velocity,upper_uy,0.25057005882263184 +illusion_1L,ppo,124,37.2,velocity,center_ux,0.925029993057251 +illusion_1L,ppo,124,37.2,velocity,center_uy,0.6459147930145264 +illusion_1L,ppo,124,37.2,velocity,lower_ux,1.273956060409546 +illusion_1L,ppo,124,37.2,velocity,lower_uy,0.4668343663215637 +illusion_1L,ppo,125,37.5,velocity,upper_ux,0.6980747580528259 +illusion_1L,ppo,125,37.5,velocity,upper_uy,0.15561698377132416 +illusion_1L,ppo,125,37.5,velocity,center_ux,0.8699775338172913 +illusion_1L,ppo,125,37.5,velocity,center_uy,0.5195714831352234 +illusion_1L,ppo,125,37.5,velocity,lower_ux,1.36288321018219 +illusion_1L,ppo,125,37.5,velocity,lower_uy,0.45897817611694336 +illusion_1L,ppo,126,37.8,velocity,upper_ux,0.6724015474319458 +illusion_1L,ppo,126,37.8,velocity,upper_uy,0.03562403842806816 +illusion_1L,ppo,126,37.8,velocity,center_ux,0.8175393342971802 +illusion_1L,ppo,126,37.8,velocity,center_uy,0.2595430612564087 +illusion_1L,ppo,126,37.8,velocity,lower_ux,1.4187687635421753 +illusion_1L,ppo,126,37.8,velocity,lower_uy,0.34750691056251526 +illusion_1L,ppo,127,38.1,velocity,upper_ux,0.682316243648529 +illusion_1L,ppo,127,38.1,velocity,upper_uy,-0.08336097747087479 +illusion_1L,ppo,127,38.1,velocity,center_ux,0.7926790118217468 +illusion_1L,ppo,127,38.1,velocity,center_uy,-0.07535340636968613 +illusion_1L,ppo,127,38.1,velocity,lower_ux,1.3940640687942505 +illusion_1L,ppo,127,38.1,velocity,lower_uy,0.0918954387307167 +illusion_1L,ppo,128,38.4,velocity,upper_ux,0.7294843196868896 +illusion_1L,ppo,128,38.4,velocity,upper_uy,-0.17288632690906525 +illusion_1L,ppo,128,38.4,velocity,center_ux,0.8006733059883118 +illusion_1L,ppo,128,38.4,velocity,center_uy,-0.3900950253009796 +illusion_1L,ppo,128,38.4,velocity,lower_ux,1.318857192993164 +illusion_1L,ppo,128,38.4,velocity,lower_uy,-0.18366879224777222 +illusion_1L,ppo,129,38.7,velocity,upper_ux,0.796348512172699 +illusion_1L,ppo,129,38.7,velocity,upper_uy,-0.23102068901062012 +illusion_1L,ppo,129,38.7,velocity,center_ux,0.8330998420715332 +illusion_1L,ppo,129,38.7,velocity,center_uy,-0.5986163020133972 +illusion_1L,ppo,129,38.7,velocity,lower_ux,1.2313249111175537 +illusion_1L,ppo,129,38.7,velocity,lower_uy,-0.36473166942596436 +illusion_1L,ppo,130,39.0,velocity,upper_ux,0.8637836575508118 +illusion_1L,ppo,130,39.0,velocity,upper_uy,-0.2755197584629059 +illusion_1L,ppo,130,39.0,velocity,center_ux,0.8775282502174377 +illusion_1L,ppo,130,39.0,velocity,center_uy,-0.6630028486251831 +illusion_1L,ppo,130,39.0,velocity,lower_ux,1.1473805904388428 +illusion_1L,ppo,130,39.0,velocity,lower_uy,-0.4382295608520508 +illusion_1L,ppo,131,39.3,velocity,upper_ux,0.9275858402252197 +illusion_1L,ppo,131,39.3,velocity,upper_uy,-0.3133770525455475 +illusion_1L,ppo,131,39.3,velocity,center_ux,0.9197962284088135 +illusion_1L,ppo,131,39.3,velocity,center_uy,-0.6504749059677124 +illusion_1L,ppo,131,39.3,velocity,lower_ux,1.0750740766525269 +illusion_1L,ppo,131,39.3,velocity,lower_uy,-0.45060068368911743 +illusion_1L,ppo,132,39.6,velocity,upper_ux,0.9896772503852844 +illusion_1L,ppo,132,39.6,velocity,upper_uy,-0.34477952122688293 +illusion_1L,ppo,132,39.6,velocity,center_ux,0.9521236419677734 +illusion_1L,ppo,132,39.6,velocity,center_uy,-0.6407597064971924 +illusion_1L,ppo,132,39.6,velocity,lower_ux,1.0118969678878784 +illusion_1L,ppo,132,39.6,velocity,lower_uy,-0.4465024769306183 +illusion_1L,ppo,133,39.9,velocity,upper_ux,1.0519766807556152 +illusion_1L,ppo,133,39.9,velocity,upper_uy,-0.37097036838531494 +illusion_1L,ppo,133,39.9,velocity,center_ux,0.9751232862472534 +illusion_1L,ppo,133,39.9,velocity,center_uy,-0.6511356830596924 +illusion_1L,ppo,133,39.9,velocity,lower_ux,0.9512667059898376 +illusion_1L,ppo,133,39.9,velocity,lower_uy,-0.4398286044597626 +illusion_1L,ppo,134,40.2,velocity,upper_ux,1.1169365644454956 +illusion_1L,ppo,134,40.2,velocity,upper_uy,-0.39285895228385925 +illusion_1L,ppo,134,40.2,velocity,center_ux,0.9899123311042786 +illusion_1L,ppo,134,40.2,velocity,center_uy,-0.677071750164032 +illusion_1L,ppo,134,40.2,velocity,lower_ux,0.888217031955719 +illusion_1L,ppo,134,40.2,velocity,lower_uy,-0.42489397525787354 +illusion_1L,ppo,135,40.5,velocity,upper_ux,1.1879329681396484 +illusion_1L,ppo,135,40.5,velocity,upper_uy,-0.40975716710090637 +illusion_1L,ppo,135,40.5,velocity,center_ux,0.9932949542999268 +illusion_1L,ppo,135,40.5,velocity,center_uy,-0.7016438841819763 +illusion_1L,ppo,135,40.5,velocity,lower_ux,0.8211218118667603 +illusion_1L,ppo,135,40.5,velocity,lower_uy,-0.38791602849960327 +illusion_1L,ppo,136,40.8,velocity,upper_ux,1.2682222127914429 +illusion_1L,ppo,136,40.8,velocity,upper_uy,-0.41715624928474426 +illusion_1L,ppo,136,40.8,velocity,center_ux,0.9781052470207214 +illusion_1L,ppo,136,40.8,velocity,center_uy,-0.6724998950958252 +illusion_1L,ppo,136,40.8,velocity,lower_ux,0.7537897825241089 +illusion_1L,ppo,136,40.8,velocity,lower_uy,-0.3134693503379822 +illusion_1L,ppo,137,41.1,velocity,upper_ux,1.3521219491958618 +illusion_1L,ppo,137,41.1,velocity,upper_uy,-0.3953261077404022 +illusion_1L,ppo,137,41.1,velocity,center_ux,0.9464737176895142 +illusion_1L,ppo,137,41.1,velocity,center_uy,-0.5148550271987915 +illusion_1L,ppo,137,41.1,velocity,lower_ux,0.6967973113059998 +illusion_1L,ppo,137,41.1,velocity,lower_uy,-0.19435642659664154 +illusion_1L,ppo,138,41.4,velocity,upper_ux,1.400169849395752 +illusion_1L,ppo,138,41.4,velocity,upper_uy,-0.2902211546897888 +illusion_1L,ppo,138,41.4,velocity,center_ux,0.918233335018158 +illusion_1L,ppo,138,41.4,velocity,center_uy,-0.2201516032218933 +illusion_1L,ppo,138,41.4,velocity,lower_ux,0.6648312211036682 +illusion_1L,ppo,138,41.4,velocity,lower_uy,-0.04213172569870949 +illusion_1L,ppo,139,41.7,velocity,upper_ux,1.3642895221710205 +illusion_1L,ppo,139,41.7,velocity,upper_uy,-0.07832611352205276 +illusion_1L,ppo,139,41.7,velocity,center_ux,0.9092580080032349 +illusion_1L,ppo,139,41.7,velocity,center_uy,0.12943704426288605 +illusion_1L,ppo,139,41.7,velocity,lower_ux,0.6714356541633606 +illusion_1L,ppo,139,41.7,velocity,lower_uy,0.10935147851705551 +illusion_1L,ppo,140,42.0,velocity,upper_ux,1.2741979360580444 +illusion_1L,ppo,140,42.0,velocity,upper_uy,0.14159457385540009 +illusion_1L,ppo,140,42.0,velocity,center_ux,0.9185501933097839 +illusion_1L,ppo,140,42.0,velocity,center_uy,0.42854776978492737 +illusion_1L,ppo,140,42.0,velocity,lower_ux,0.7198755741119385 +illusion_1L,ppo,140,42.0,velocity,lower_uy,0.21881887316703796 +illusion_1L,ppo,141,42.3,velocity,upper_ux,1.1829864978790283 +illusion_1L,ppo,141,42.3,velocity,upper_uy,0.27945712208747864 +illusion_1L,ppo,141,42.3,velocity,center_ux,0.9366003274917603 +illusion_1L,ppo,141,42.3,velocity,center_uy,0.5926768779754639 +illusion_1L,ppo,141,42.3,velocity,lower_ux,0.7922722101211548 +illusion_1L,ppo,141,42.3,velocity,lower_uy,0.2780219316482544 +illusion_1L,ppo,142,42.6,velocity,upper_ux,1.1074455976486206 +illusion_1L,ppo,142,42.6,velocity,upper_uy,0.33691877126693726 +illusion_1L,ppo,142,42.6,velocity,center_ux,0.9554362893104553 +illusion_1L,ppo,142,42.6,velocity,center_uy,0.620470404624939 +illusion_1L,ppo,142,42.6,velocity,lower_ux,0.8647043704986572 +illusion_1L,ppo,142,42.6,velocity,lower_uy,0.31416332721710205 +illusion_1L,ppo,143,42.9,velocity,upper_ux,1.0458141565322876 +illusion_1L,ppo,143,42.9,velocity,upper_uy,0.35384219884872437 +illusion_1L,ppo,143,42.9,velocity,center_ux,0.9707029461860657 +illusion_1L,ppo,143,42.9,velocity,center_uy,0.600911557674408 +illusion_1L,ppo,143,42.9,velocity,lower_ux,0.9298662543296814 +illusion_1L,ppo,143,42.9,velocity,lower_uy,0.34379416704177856 +illusion_1L,ppo,144,43.2,velocity,upper_ux,0.990931510925293 +illusion_1L,ppo,144,43.2,velocity,upper_uy,0.3591386377811432 +illusion_1L,ppo,144,43.2,velocity,center_ux,0.9807572364807129 +illusion_1L,ppo,144,43.2,velocity,center_uy,0.5933434963226318 +illusion_1L,ppo,144,43.2,velocity,lower_ux,0.9902074337005615 +illusion_1L,ppo,144,43.2,velocity,lower_uy,0.369567334651947 +illusion_1L,ppo,145,43.5,velocity,upper_ux,0.9370347857475281 +illusion_1L,ppo,145,43.5,velocity,upper_uy,0.36044350266456604 +illusion_1L,ppo,145,43.5,velocity,center_ux,0.9860050678253174 +illusion_1L,ppo,145,43.5,velocity,center_uy,0.6047418117523193 +illusion_1L,ppo,145,43.5,velocity,lower_ux,1.0490210056304932 +illusion_1L,ppo,145,43.5,velocity,lower_uy,0.3930850327014923 +illusion_1L,ppo,146,43.8,velocity,upper_ux,0.8808078765869141 +illusion_1L,ppo,146,43.8,velocity,upper_uy,0.3536783456802368 +illusion_1L,ppo,146,43.8,velocity,center_ux,0.9858282208442688 +illusion_1L,ppo,146,43.8,velocity,center_uy,0.6310636401176453 +illusion_1L,ppo,146,43.8,velocity,lower_ux,1.1096923351287842 +illusion_1L,ppo,146,43.8,velocity,lower_uy,0.41566047072410583 +illusion_1L,ppo,147,44.1,velocity,upper_ux,0.8210766315460205 +illusion_1L,ppo,147,44.1,velocity,upper_uy,0.32959526777267456 +illusion_1L,ppo,147,44.1,velocity,center_ux,0.9760513305664062 +illusion_1L,ppo,147,44.1,velocity,center_uy,0.6618780493736267 +illusion_1L,ppo,147,44.1,velocity,lower_ux,1.176232099533081 +illusion_1L,ppo,147,44.1,velocity,lower_uy,0.43762633204460144 +illusion_1L,ppo,148,44.4,velocity,upper_ux,0.7602943181991577 +illusion_1L,ppo,148,44.4,velocity,upper_uy,0.27697497606277466 +illusion_1L,ppo,148,44.4,velocity,center_ux,0.9481117725372314 +illusion_1L,ppo,148,44.4,velocity,center_uy,0.6631430387496948 +illusion_1L,ppo,148,44.4,velocity,lower_ux,1.2534631490707397 +illusion_1L,ppo,148,44.4,velocity,lower_uy,0.4569161534309387 +illusion_1L,ppo,149,44.7,velocity,upper_ux,0.7063542008399963 +illusion_1L,ppo,149,44.7,velocity,upper_uy,0.18859976530075073 +illusion_1L,ppo,149,44.7,velocity,center_ux,0.8983383178710938 +illusion_1L,ppo,149,44.7,velocity,center_uy,0.5695223212242126 +illusion_1L,ppo,149,44.7,velocity,lower_ux,1.3420428037643433 +illusion_1L,ppo,149,44.7,velocity,lower_uy,0.45909383893013 +illusion_1L,ppo,150,45.0,velocity,upper_ux,0.6718862056732178 +illusion_1L,ppo,150,45.0,velocity,upper_uy,0.06970607489347458 +illusion_1L,ppo,150,45.0,velocity,center_ux,0.844086229801178 +illusion_1L,ppo,150,45.0,velocity,center_uy,0.3366863429546356 +illusion_1L,ppo,150,45.0,velocity,lower_ux,1.412737488746643 +illusion_1L,ppo,150,45.0,velocity,lower_uy,0.38398364186286926 +illusion_1L,ppo,151,45.3,velocity,upper_ux,0.6707409620285034 +illusion_1L,ppo,151,45.3,velocity,upper_uy,-0.05679312348365784 +illusion_1L,ppo,151,45.3,velocity,center_ux,0.8129016160964966 +illusion_1L,ppo,151,45.3,velocity,center_uy,0.006813402287662029 +illusion_1L,ppo,151,45.3,velocity,lower_ux,1.4074558019638062 +illusion_1L,ppo,151,45.3,velocity,lower_uy,0.16255852580070496 +illusion_1L,ppo,152,45.6,velocity,upper_ux,0.709498405456543 +illusion_1L,ppo,152,45.6,velocity,upper_uy,-0.15854094922542572 +illusion_1L,ppo,152,45.6,velocity,center_ux,0.814858078956604 +illusion_1L,ppo,152,45.6,velocity,center_uy,-0.32368409633636475 +illusion_1L,ppo,152,45.6,velocity,lower_ux,1.3368033170700073 +illusion_1L,ppo,152,45.6,velocity,lower_uy,-0.11806073784828186 +illusion_1L,ppo,153,45.9,velocity,upper_ux,0.7753589153289795 +illusion_1L,ppo,153,45.9,velocity,upper_uy,-0.22332143783569336 +illusion_1L,ppo,153,45.9,velocity,center_ux,0.8426464796066284 +illusion_1L,ppo,153,45.9,velocity,center_uy,-0.5627891421318054 +illusion_1L,ppo,153,45.9,velocity,lower_ux,1.2492127418518066 +illusion_1L,ppo,153,45.9,velocity,lower_uy,-0.32193315029144287 +illusion_1L,ppo,154,46.2,velocity,upper_ux,0.8457337021827698 +illusion_1L,ppo,154,46.2,velocity,upper_uy,-0.26819178462028503 +illusion_1L,ppo,154,46.2,velocity,center_ux,0.8839061260223389 +illusion_1L,ppo,154,46.2,velocity,center_uy,-0.6552857756614685 +illusion_1L,ppo,154,46.2,velocity,lower_ux,1.1646690368652344 +illusion_1L,ppo,154,46.2,velocity,lower_uy,-0.41565799713134766 +illusion_1L,ppo,155,46.5,velocity,upper_ux,0.9114939570426941 +illusion_1L,ppo,155,46.5,velocity,upper_uy,-0.30567023158073425 +illusion_1L,ppo,155,46.5,velocity,center_ux,0.9252263307571411 +illusion_1L,ppo,155,46.5,velocity,center_uy,-0.6486779451370239 +illusion_1L,ppo,155,46.5,velocity,lower_ux,1.0916318893432617 +illusion_1L,ppo,155,46.5,velocity,lower_uy,-0.43825215101242065 +illusion_1L,ppo,156,46.8,velocity,upper_ux,0.9738426804542542 +illusion_1L,ppo,156,46.8,velocity,upper_uy,-0.33671197295188904 +illusion_1L,ppo,156,46.8,velocity,center_ux,0.9578952789306641 +illusion_1L,ppo,156,46.8,velocity,center_uy,-0.633184552192688 +illusion_1L,ppo,156,46.8,velocity,lower_ux,1.028457760810852 +illusion_1L,ppo,156,46.8,velocity,lower_uy,-0.4380701780319214 +illusion_1L,ppo,157,47.1,velocity,upper_ux,1.035016655921936 +illusion_1L,ppo,157,47.1,velocity,upper_uy,-0.3622564673423767 +illusion_1L,ppo,157,47.1,velocity,center_ux,0.9817606806755066 +illusion_1L,ppo,157,47.1,velocity,center_uy,-0.637525200843811 +illusion_1L,ppo,157,47.1,velocity,lower_ux,0.9687396287918091 +illusion_1L,ppo,157,47.1,velocity,lower_uy,-0.43464896082878113 +illusion_1L,ppo,158,47.4,velocity,upper_ux,1.0975157022476196 +illusion_1L,ppo,158,47.4,velocity,upper_uy,-0.38350164890289307 +illusion_1L,ppo,158,47.4,velocity,center_ux,0.9987232685089111 +illusion_1L,ppo,158,47.4,velocity,center_uy,-0.659248948097229 +illusion_1L,ppo,158,47.4,velocity,lower_ux,0.9072766304016113 +illusion_1L,ppo,158,47.4,velocity,lower_uy,-0.4253641664981842 +illusion_1L,ppo,159,47.7,velocity,upper_ux,1.164629340171814 +illusion_1L,ppo,159,47.7,velocity,upper_uy,-0.40035775303840637 +illusion_1L,ppo,159,47.7,velocity,center_ux,1.007386326789856 +illusion_1L,ppo,159,47.7,velocity,center_uy,-0.6877559423446655 +illusion_1L,ppo,159,47.7,velocity,lower_ux,0.8416793346405029 +illusion_1L,ppo,159,47.7,velocity,lower_uy,-0.3980737328529358 +illusion_1L,ppo,160,48.0,velocity,upper_ux,1.2400141954421997 +illusion_1L,ppo,160,48.0,velocity,upper_uy,-0.4103262722492218 +illusion_1L,ppo,160,48.0,velocity,center_ux,1.0008325576782227 +illusion_1L,ppo,160,48.0,velocity,center_uy,-0.6857194900512695 +illusion_1L,ppo,160,48.0,velocity,lower_ux,0.7740539908409119 +illusion_1L,ppo,160,48.0,velocity,lower_uy,-0.3371012508869171 +illusion_1L,ppo,161,48.3,velocity,upper_ux,1.323671579360962 +illusion_1L,ppo,161,48.3,velocity,upper_uy,-0.4028952121734619 +illusion_1L,ppo,161,48.3,velocity,center_ux,0.9743549823760986 +illusion_1L,ppo,161,48.3,velocity,center_uy,-0.5788799524307251 +illusion_1L,ppo,161,48.3,velocity,lower_ux,0.7129180431365967 +illusion_1L,ppo,161,48.3,velocity,lower_uy,-0.23164130747318268 +illusion_1L,ppo,162,48.6,velocity,upper_ux,1.3929550647735596 +illusion_1L,ppo,162,48.6,velocity,upper_uy,-0.3405289649963379 +illusion_1L,ppo,162,48.6,velocity,center_ux,0.9416898488998413 +illusion_1L,ppo,162,48.6,velocity,center_uy,-0.32471415400505066 +illusion_1L,ppo,162,48.6,velocity,lower_ux,0.6721250414848328 +illusion_1L,ppo,162,48.6,velocity,lower_uy,-0.08705583959817886 +illusion_1L,ppo,163,48.9,velocity,upper_ux,1.391174554824829 +illusion_1L,ppo,163,48.9,velocity,upper_uy,-0.17082911729812622 +illusion_1L,ppo,163,48.9,velocity,center_ux,0.9236711859703064 +illusion_1L,ppo,163,48.9,velocity,center_uy,0.01872648112475872 +illusion_1L,ppo,163,48.9,velocity,lower_ux,0.6663581728935242 +illusion_1L,ppo,163,48.9,velocity,lower_uy,0.06844501942396164 +illusion_1L,ppo,164,49.2,velocity,upper_ux,1.3088369369506836 +illusion_1L,ppo,164,49.2,velocity,upper_uy,0.059472937136888504 +illusion_1L,ppo,164,49.2,velocity,center_ux,0.9256585836410522 +illusion_1L,ppo,164,49.2,velocity,center_uy,0.34353411197662354 +illusion_1L,ppo,164,49.2,velocity,lower_ux,0.7034322619438171 +illusion_1L,ppo,164,49.2,velocity,lower_uy,0.1917012333869934 +illusion_1L,ppo,165,49.5,velocity,upper_ux,1.2076148986816406 +illusion_1L,ppo,165,49.5,velocity,upper_uy,0.23406000435352325 +illusion_1L,ppo,165,49.5,velocity,center_ux,0.9402239918708801 +illusion_1L,ppo,165,49.5,velocity,center_uy,0.5510977506637573 +illusion_1L,ppo,165,49.5,velocity,lower_ux,0.771498441696167 +illusion_1L,ppo,165,49.5,velocity,lower_uy,0.261274516582489 +illusion_1L,ppo,166,49.8,velocity,upper_ux,1.1239796876907349 +illusion_1L,ppo,166,49.8,velocity,upper_uy,0.31841373443603516 +illusion_1L,ppo,166,49.8,velocity,center_ux,0.9586020708084106 +illusion_1L,ppo,166,49.8,velocity,center_uy,0.6089667677879333 +illusion_1L,ppo,166,49.8,velocity,lower_ux,0.845018744468689 +illusion_1L,ppo,166,49.8,velocity,lower_uy,0.2991493344306946 +illusion_1L,ppo,167,50.1,velocity,upper_ux,1.0598798990249634 +illusion_1L,ppo,167,50.1,velocity,upper_uy,0.34658902883529663 +illusion_1L,ppo,167,50.1,velocity,center_ux,0.9757116436958313 +illusion_1L,ppo,167,50.1,velocity,center_uy,0.5925242900848389 +illusion_1L,ppo,167,50.1,velocity,lower_ux,0.9116352200508118 +illusion_1L,ppo,167,50.1,velocity,lower_uy,0.3279569745063782 +illusion_1L,ppo,168,50.4,velocity,upper_ux,1.0063862800598145 +illusion_1L,ppo,168,50.4,velocity,upper_uy,0.3557473123073578 +illusion_1L,ppo,168,50.4,velocity,center_ux,0.9890960454940796 +illusion_1L,ppo,168,50.4,velocity,center_uy,0.5787189602851868 +illusion_1L,ppo,168,50.4,velocity,lower_ux,0.9723630547523499 +illusion_1L,ppo,168,50.4,velocity,lower_uy,0.3523772954940796 +illusion_1L,ppo,169,50.7,velocity,upper_ux,0.9553123712539673 +illusion_1L,ppo,169,50.7,velocity,upper_uy,0.36048638820648193 +illusion_1L,ppo,169,50.7,velocity,center_ux,0.9986963868141174 +illusion_1L,ppo,169,50.7,velocity,center_uy,0.5837621688842773 +illusion_1L,ppo,169,50.7,velocity,lower_ux,1.0300859212875366 +illusion_1L,ppo,169,50.7,velocity,lower_uy,0.373794823884964 +illusion_1L,ppo,170,51.0,velocity,upper_ux,0.9019520878791809 +illusion_1L,ppo,170,51.0,velocity,upper_uy,0.35951605439186096 +illusion_1L,ppo,170,51.0,velocity,center_ux,1.0045230388641357 +illusion_1L,ppo,170,51.0,velocity,center_uy,0.6047218441963196 +illusion_1L,ppo,170,51.0,velocity,lower_ux,1.0874971151351929 +illusion_1L,ppo,170,51.0,velocity,lower_uy,0.3936077356338501 +illusion_1L,ppo,171,51.3,velocity,upper_ux,0.8440971970558167 +illusion_1L,ppo,171,51.3,velocity,upper_uy,0.34469538927078247 +illusion_1L,ppo,171,51.3,velocity,center_ux,1.0043673515319824 +illusion_1L,ppo,171,51.3,velocity,center_uy,0.6358709335327148 +illusion_1L,ppo,171,51.3,velocity,lower_ux,1.1477808952331543 +illusion_1L,ppo,171,51.3,velocity,lower_uy,0.41242480278015137 +illusion_1L,ppo,172,51.6,velocity,upper_ux,0.7826979160308838 +illusion_1L,ppo,172,51.6,velocity,upper_uy,0.30460867285728455 +illusion_1L,ppo,172,51.6,velocity,center_ux,0.9915564060211182 +illusion_1L,ppo,172,51.6,velocity,center_uy,0.657724916934967 +illusion_1L,ppo,172,51.6,velocity,lower_ux,1.2150343656539917 +illusion_1L,ppo,172,51.6,velocity,lower_uy,0.4295710623264313 +illusion_1L,ppo,173,51.9,velocity,upper_ux,0.7237726449966431 +illusion_1L,ppo,173,51.9,velocity,upper_uy,0.22927060723304749 +illusion_1L,ppo,173,51.9,velocity,center_ux,0.9568645358085632 +illusion_1L,ppo,173,51.9,velocity,center_uy,0.6190747618675232 +illusion_1L,ppo,173,51.9,velocity,lower_ux,1.2935073375701904 +illusion_1L,ppo,173,51.9,velocity,lower_uy,0.44057905673980713 +illusion_1L,ppo,174,52.2,velocity,upper_ux,0.6789097189903259 +illusion_1L,ppo,174,52.2,velocity,upper_uy,0.11835847049951553 +illusion_1L,ppo,174,52.2,velocity,center_ux,0.9037999510765076 +illusion_1L,ppo,174,52.2,velocity,center_uy,0.4548235535621643 +illusion_1L,ppo,174,52.2,velocity,lower_ux,1.3775770664215088 +illusion_1L,ppo,174,52.2,velocity,lower_uy,0.4224158823490143 +illusion_1L,ppo,175,52.5,velocity,upper_ux,0.662757158279419 +illusion_1L,ppo,175,52.5,velocity,upper_uy,-0.011258729733526707 +illusion_1L,ppo,175,52.5,velocity,center_ux,0.8574013113975525 +illusion_1L,ppo,175,52.5,velocity,center_uy,0.16159284114837646 +illusion_1L,ppo,175,52.5,velocity,lower_ux,1.4223626852035522 +illusion_1L,ppo,175,52.5,velocity,lower_uy,0.30549857020378113 +illusion_1L,ppo,176,52.8,velocity,upper_ux,0.6866317987442017 +illusion_1L,ppo,176,52.8,velocity,upper_uy,-0.1268581748008728 +illusion_1L,ppo,176,52.8,velocity,center_ux,0.8397195935249329 +illusion_1L,ppo,176,52.8,velocity,center_uy,-0.179573193192482 +illusion_1L,ppo,176,52.8,velocity,lower_ux,1.3764190673828125 +illusion_1L,ppo,176,52.8,velocity,lower_uy,0.05636003613471985 +illusion_1L,ppo,177,53.1,velocity,upper_ux,0.7454268336296082 +illusion_1L,ppo,177,53.1,velocity,upper_uy,-0.20370660722255707 +illusion_1L,ppo,177,53.1,velocity,center_ux,0.8518283367156982 +illusion_1L,ppo,177,53.1,velocity,center_uy,-0.4654817581176758 +illusion_1L,ppo,177,53.1,velocity,lower_ux,1.2785793542861938 +illusion_1L,ppo,177,53.1,velocity,lower_uy,-0.20041853189468384 +illusion_1L,ppo,178,53.4,velocity,upper_ux,0.8159925937652588 +illusion_1L,ppo,178,53.4,velocity,upper_uy,-0.25134530663490295 +illusion_1L,ppo,178,53.4,velocity,center_ux,0.8834007978439331 +illusion_1L,ppo,178,53.4,velocity,center_uy,-0.6140448451042175 +illusion_1L,ppo,178,53.4,velocity,lower_ux,1.1836695671081543 +illusion_1L,ppo,178,53.4,velocity,lower_uy,-0.3537583649158478 +illusion_1L,ppo,179,53.7,velocity,upper_ux,0.8821718096733093 +illusion_1L,ppo,179,53.7,velocity,upper_uy,-0.28890493512153625 +illusion_1L,ppo,179,53.7,velocity,center_ux,0.9211822748184204 +illusion_1L,ppo,179,53.7,velocity,center_uy,-0.6307821869850159 +illusion_1L,ppo,179,53.7,velocity,lower_ux,1.1067988872528076 +illusion_1L,ppo,179,53.7,velocity,lower_uy,-0.40768173336982727 +illusion_1L,ppo,180,54.0,velocity,upper_ux,0.9430112838745117 +illusion_1L,ppo,180,54.0,velocity,upper_uy,-0.32048508524894714 +illusion_1L,ppo,180,54.0,velocity,center_ux,0.9538464546203613 +illusion_1L,ppo,180,54.0,velocity,center_uy,-0.6096707582473755 +illusion_1L,ppo,180,54.0,velocity,lower_ux,1.045371174812317 +illusion_1L,ppo,180,54.0,velocity,lower_uy,-0.41575369238853455 +illusion_1L,ppo,181,54.3,velocity,upper_ux,1.001042127609253 +illusion_1L,ppo,181,54.3,velocity,upper_uy,-0.3465178310871124 +illusion_1L,ppo,181,54.3,velocity,center_ux,0.9785175323486328 +illusion_1L,ppo,181,54.3,velocity,center_uy,-0.6037673950195312 +illusion_1L,ppo,181,54.3,velocity,lower_ux,0.990691602230072 +illusion_1L,ppo,181,54.3,velocity,lower_uy,-0.4147928059101105 +illusion_1L,ppo,182,54.6,velocity,upper_ux,1.0585763454437256 +illusion_1L,ppo,182,54.6,velocity,upper_uy,-0.3685176372528076 +illusion_1L,ppo,182,54.6,velocity,center_ux,0.9973104000091553 +illusion_1L,ppo,182,54.6,velocity,center_uy,-0.6160361170768738 +illusion_1L,ppo,182,54.6,velocity,lower_ux,0.9360721707344055 +illusion_1L,ppo,182,54.6,velocity,lower_uy,-0.4117967486381531 +illusion_1L,ppo,183,54.9,velocity,upper_ux,1.1181634664535522 +illusion_1L,ppo,183,54.9,velocity,upper_uy,-0.3874000608921051 +illusion_1L,ppo,183,54.9,velocity,center_ux,1.0109994411468506 +illusion_1L,ppo,183,54.9,velocity,center_uy,-0.6417026519775391 +illusion_1L,ppo,183,54.9,velocity,lower_ux,0.8777966499328613 +illusion_1L,ppo,183,54.9,velocity,lower_uy,-0.3993724286556244 +illusion_1L,ppo,184,55.2,velocity,upper_ux,1.1827534437179565 +illusion_1L,ppo,184,55.2,velocity,upper_uy,-0.4028834402561188 +illusion_1L,ppo,184,55.2,velocity,center_ux,1.016053557395935 +illusion_1L,ppo,184,55.2,velocity,center_uy,-0.667526364326477 +illusion_1L,ppo,184,55.2,velocity,lower_ux,0.8148297667503357 +illusion_1L,ppo,184,55.2,velocity,lower_uy,-0.3644561171531677 +illusion_1L,ppo,185,55.5,velocity,upper_ux,1.2554360628128052 +illusion_1L,ppo,185,55.5,velocity,upper_uy,-0.4123741686344147 +illusion_1L,ppo,185,55.5,velocity,center_ux,1.003563642501831 +illusion_1L,ppo,185,55.5,velocity,center_uy,-0.6515726447105408 +illusion_1L,ppo,185,55.5,velocity,lower_ux,0.7508141994476318 +illusion_1L,ppo,185,55.5,velocity,lower_uy,-0.2931145429611206 +illusion_1L,ppo,186,55.8,velocity,upper_ux,1.3353583812713623 +illusion_1L,ppo,186,55.8,velocity,upper_uy,-0.4047871530056 +illusion_1L,ppo,186,55.8,velocity,center_ux,0.9693064093589783 +illusion_1L,ppo,186,55.8,velocity,center_uy,-0.5240388512611389 +illusion_1L,ppo,186,55.8,velocity,lower_ux,0.6957631707191467 +illusion_1L,ppo,186,55.8,velocity,lower_uy,-0.17927882075309753 +illusion_1L,ppo,187,56.1,velocity,upper_ux,1.3981709480285645 +illusion_1L,ppo,187,56.1,velocity,upper_uy,-0.34080082178115845 +illusion_1L,ppo,187,56.1,velocity,center_ux,0.9289026856422424 +illusion_1L,ppo,187,56.1,velocity,center_uy,-0.2582845687866211 +illusion_1L,ppo,187,56.1,velocity,lower_ux,0.6643018126487732 +illusion_1L,ppo,187,56.1,velocity,lower_uy,-0.034785475581884384 +illusion_1L,ppo,188,56.4,velocity,upper_ux,1.3861712217330933 +illusion_1L,ppo,188,56.4,velocity,upper_uy,-0.16517235338687897 +illusion_1L,ppo,188,56.4,velocity,center_ux,0.9044190645217896 +illusion_1L,ppo,188,56.4,velocity,center_uy,0.08099137246608734 +illusion_1L,ppo,188,56.4,velocity,lower_ux,0.6708303093910217 +illusion_1L,ppo,188,56.4,velocity,lower_uy,0.10694871097803116 +illusion_1L,ppo,189,56.7,velocity,upper_ux,1.2921171188354492 +illusion_1L,ppo,189,56.7,velocity,upper_uy,0.07570160925388336 +illusion_1L,ppo,189,56.7,velocity,center_ux,0.9029129147529602 +illusion_1L,ppo,189,56.7,velocity,center_uy,0.3878731429576874 +illusion_1L,ppo,189,56.7,velocity,lower_ux,0.7189406752586365 +illusion_1L,ppo,189,56.7,velocity,lower_uy,0.20707601308822632 +illusion_1L,ppo,190,57.0,velocity,upper_ux,1.1834741830825806 +illusion_1L,ppo,190,57.0,velocity,upper_uy,0.25773683190345764 +illusion_1L,ppo,190,57.0,velocity,center_ux,0.9186162352561951 +illusion_1L,ppo,190,57.0,velocity,center_uy,0.566907525062561 +illusion_1L,ppo,190,57.0,velocity,lower_ux,0.7899994254112244 +illusion_1L,ppo,190,57.0,velocity,lower_uy,0.2609277665615082 +illusion_1L,ppo,191,57.3,velocity,upper_ux,1.099481225013733 +illusion_1L,ppo,191,57.3,velocity,upper_uy,0.34146344661712646 +illusion_1L,ppo,191,57.3,velocity,center_ux,0.9419137835502625 +illusion_1L,ppo,191,57.3,velocity,center_uy,0.6032683253288269 +illusion_1L,ppo,191,57.3,velocity,lower_ux,0.8603526949882507 +illusion_1L,ppo,191,57.3,velocity,lower_uy,0.29534009099006653 +illusion_1L,ppo,192,57.6,velocity,upper_ux,1.038905382156372 +illusion_1L,ppo,192,57.6,velocity,upper_uy,0.36511334776878357 +illusion_1L,ppo,192,57.6,velocity,center_ux,0.9640593528747559 +illusion_1L,ppo,192,57.6,velocity,center_uy,0.5841819643974304 +illusion_1L,ppo,192,57.6,velocity,lower_ux,0.9233879446983337 +illusion_1L,ppo,192,57.6,velocity,lower_uy,0.32419607043266296 +illusion_1L,ppo,193,57.9,velocity,upper_ux,0.9888049364089966 +illusion_1L,ppo,193,57.9,velocity,upper_uy,0.3705323338508606 +illusion_1L,ppo,193,57.9,velocity,center_ux,0.9810418486595154 +illusion_1L,ppo,193,57.9,velocity,center_uy,0.5747389197349548 +illusion_1L,ppo,193,57.9,velocity,lower_ux,0.9812924265861511 +illusion_1L,ppo,193,57.9,velocity,lower_uy,0.3487774729728699 +illusion_1L,ppo,194,58.2,velocity,upper_ux,0.9395676851272583 +illusion_1L,ppo,194,58.2,velocity,upper_uy,0.3730534613132477 +illusion_1L,ppo,194,58.2,velocity,center_ux,0.9933480024337769 +illusion_1L,ppo,194,58.2,velocity,center_uy,0.583268404006958 +illusion_1L,ppo,194,58.2,velocity,lower_ux,1.0366264581680298 +illusion_1L,ppo,194,58.2,velocity,lower_uy,0.37035059928894043 +illusion_1L,ppo,195,58.5,velocity,upper_ux,0.8869057297706604 +illusion_1L,ppo,195,58.5,velocity,upper_uy,0.3704081177711487 +illusion_1L,ppo,195,58.5,velocity,center_ux,1.0015426874160767 +illusion_1L,ppo,195,58.5,velocity,center_uy,0.6062777638435364 +illusion_1L,ppo,195,58.5,velocity,lower_ux,1.0920344591140747 +illusion_1L,ppo,195,58.5,velocity,lower_uy,0.390220582485199 +illusion_1L,ppo,196,58.8,velocity,upper_ux,0.8294327855110168 +illusion_1L,ppo,196,58.8,velocity,upper_uy,0.3534659743309021 +illusion_1L,ppo,196,58.8,velocity,center_ux,1.0037686824798584 +illusion_1L,ppo,196,58.8,velocity,center_uy,0.6379569172859192 +illusion_1L,ppo,196,58.8,velocity,lower_ux,1.1507760286331177 +illusion_1L,ppo,196,58.8,velocity,lower_uy,0.4088975489139557 +illusion_1L,ppo,197,59.1,velocity,upper_ux,0.7687394022941589 +illusion_1L,ppo,197,59.1,velocity,upper_uy,0.3101816177368164 +illusion_1L,ppo,197,59.1,velocity,center_ux,0.9934121966362 +illusion_1L,ppo,197,59.1,velocity,center_uy,0.6578643321990967 +illusion_1L,ppo,197,59.1,velocity,lower_ux,1.2168169021606445 +illusion_1L,ppo,197,59.1,velocity,lower_uy,0.4256547689437866 +illusion_1L,ppo,198,59.4,velocity,upper_ux,0.7111837267875671 +illusion_1L,ppo,198,59.4,velocity,upper_uy,0.230560302734375 +illusion_1L,ppo,198,59.4,velocity,center_ux,0.9612946510314941 +illusion_1L,ppo,198,59.4,velocity,center_uy,0.6137403249740601 +illusion_1L,ppo,198,59.4,velocity,lower_ux,1.2939178943634033 +illusion_1L,ppo,198,59.4,velocity,lower_uy,0.4360714852809906 +illusion_1L,ppo,199,59.7,velocity,upper_ux,0.6681976914405823 +illusion_1L,ppo,199,59.7,velocity,upper_uy,0.11495736241340637 +illusion_1L,ppo,199,59.7,velocity,center_ux,0.9108794927597046 +illusion_1L,ppo,199,59.7,velocity,center_uy,0.44290873408317566 +illusion_1L,ppo,199,59.7,velocity,lower_ux,1.3756976127624512 +illusion_1L,ppo,199,59.7,velocity,lower_uy,0.41794833540916443 +illusion_1L,ppo,200,60.0,velocity,upper_ux,0.6540173888206482 +illusion_1L,ppo,200,60.0,velocity,upper_uy,-0.018583469092845917 +illusion_1L,ppo,200,60.0,velocity,center_ux,0.8660951852798462 +illusion_1L,ppo,200,60.0,velocity,center_uy,0.14677953720092773 +illusion_1L,ppo,200,60.0,velocity,lower_ux,1.4175307750701904 +illusion_1L,ppo,200,60.0,velocity,lower_uy,0.30460113286972046 +illusion_1L,ppo,201,60.3,velocity,upper_ux,0.679723858833313 +illusion_1L,ppo,201,60.3,velocity,upper_uy,-0.13593418896198273 +illusion_1L,ppo,201,60.3,velocity,center_ux,0.8478975296020508 +illusion_1L,ppo,201,60.3,velocity,center_uy,-0.19305092096328735 +illusion_1L,ppo,201,60.3,velocity,lower_ux,1.367379069328308 +illusion_1L,ppo,201,60.3,velocity,lower_uy,0.06049778684973717 +illusion_1L,ppo,202,60.6,velocity,upper_ux,0.7401667237281799 +illusion_1L,ppo,202,60.6,velocity,upper_uy,-0.21178056299686432 +illusion_1L,ppo,202,60.6,velocity,center_ux,0.8577988743782043 +illusion_1L,ppo,202,60.6,velocity,center_uy,-0.473884642124176 +illusion_1L,ppo,202,60.6,velocity,lower_ux,1.2642642259597778 +illusion_1L,ppo,202,60.6,velocity,lower_uy,-0.1953090876340866 +illusion_1L,ppo,203,60.9,velocity,upper_ux,0.8119665384292603 +illusion_1L,ppo,203,60.9,velocity,upper_uy,-0.2572694718837738 +illusion_1L,ppo,203,60.9,velocity,center_ux,0.8863666653633118 +illusion_1L,ppo,203,60.9,velocity,center_uy,-0.615081250667572 +illusion_1L,ppo,203,60.9,velocity,lower_ux,1.167768955230713 +illusion_1L,ppo,203,60.9,velocity,lower_uy,-0.3487568199634552 +illusion_1L,ppo,204,61.2,velocity,upper_ux,0.8788956999778748 +illusion_1L,ppo,204,61.2,velocity,upper_uy,-0.29336050152778625 +illusion_1L,ppo,204,61.2,velocity,center_ux,0.9211671948432922 +illusion_1L,ppo,204,61.2,velocity,center_uy,-0.6278074383735657 +illusion_1L,ppo,204,61.2,velocity,lower_ux,1.0930012464523315 +illusion_1L,ppo,204,61.2,velocity,lower_uy,-0.4022207260131836 +illusion_1L,ppo,205,61.5,velocity,upper_ux,0.9403565526008606 +illusion_1L,ppo,205,61.5,velocity,upper_uy,-0.324295312166214 +illusion_1L,ppo,205,61.5,velocity,center_ux,0.9515792727470398 +illusion_1L,ppo,205,61.5,velocity,center_uy,-0.6067860126495361 +illusion_1L,ppo,205,61.5,velocity,lower_ux,1.03470778465271 +illusion_1L,ppo,205,61.5,velocity,lower_uy,-0.40959426760673523 +illusion_1L,ppo,206,61.8,velocity,upper_ux,0.9989707469940186 +illusion_1L,ppo,206,61.8,velocity,upper_uy,-0.3501826524734497 +illusion_1L,ppo,206,61.8,velocity,center_ux,0.9746828079223633 +illusion_1L,ppo,206,61.8,velocity,center_uy,-0.60198575258255 +illusion_1L,ppo,206,61.8,velocity,lower_ux,0.9825829863548279 +illusion_1L,ppo,206,61.8,velocity,lower_uy,-0.40816599130630493 +illusion_1L,ppo,207,62.1,velocity,upper_ux,1.056807041168213 +illusion_1L,ppo,207,62.1,velocity,upper_uy,-0.3723849356174469 +illusion_1L,ppo,207,62.1,velocity,center_ux,0.9919986128807068 +illusion_1L,ppo,207,62.1,velocity,center_uy,-0.6153101325035095 +illusion_1L,ppo,207,62.1,velocity,lower_ux,0.9295046925544739 +illusion_1L,ppo,207,62.1,velocity,lower_uy,-0.40525686740875244 +illusion_1L,ppo,208,62.4,velocity,upper_ux,1.1162960529327393 +illusion_1L,ppo,208,62.4,velocity,upper_uy,-0.3918003737926483 +illusion_1L,ppo,208,62.4,velocity,center_ux,1.00388765335083 +illusion_1L,ppo,208,62.4,velocity,center_uy,-0.642005205154419 +illusion_1L,ppo,208,62.4,velocity,lower_ux,0.8719844818115234 +illusion_1L,ppo,208,62.4,velocity,lower_uy,-0.39389392733573914 +illusion_1L,ppo,209,62.7,velocity,upper_ux,1.1805336475372314 +illusion_1L,ppo,209,62.7,velocity,upper_uy,-0.40818825364112854 +illusion_1L,ppo,209,62.7,velocity,center_ux,1.0068658590316772 +illusion_1L,ppo,209,62.7,velocity,center_uy,-0.6693054437637329 +illusion_1L,ppo,209,62.7,velocity,lower_ux,0.8093811273574829 +illusion_1L,ppo,209,62.7,velocity,lower_uy,-0.36163753271102905 +illusion_1L,ppo,210,63.0,velocity,upper_ux,1.2529934644699097 +illusion_1L,ppo,210,63.0,velocity,upper_uy,-0.4189579486846924 +illusion_1L,ppo,210,63.0,velocity,center_ux,0.9926695823669434 +illusion_1L,ppo,210,63.0,velocity,center_uy,-0.6566340327262878 +illusion_1L,ppo,210,63.0,velocity,lower_ux,0.7455980181694031 +illusion_1L,ppo,210,63.0,velocity,lower_uy,-0.29488593339920044 +illusion_1L,ppo,211,63.3,velocity,upper_ux,1.3331071138381958 +illusion_1L,ppo,211,63.3,velocity,upper_uy,-0.41270560026168823 +illusion_1L,ppo,211,63.3,velocity,center_ux,0.9577826857566833 +illusion_1L,ppo,211,63.3,velocity,center_uy,-0.5358843803405762 +illusion_1L,ppo,211,63.3,velocity,lower_ux,0.6905308365821838 +illusion_1L,ppo,211,63.3,velocity,lower_uy,-0.18690840899944305 +illusion_1L,ppo,212,63.6,velocity,upper_ux,1.396268367767334 +illusion_1L,ppo,212,63.6,velocity,upper_uy,-0.3485189378261566 +illusion_1L,ppo,212,63.6,velocity,center_ux,0.9173693060874939 +illusion_1L,ppo,212,63.6,velocity,center_uy,-0.2786080539226532 +illusion_1L,ppo,212,63.6,velocity,lower_ux,0.6582834720611572 +illusion_1L,ppo,212,63.6,velocity,lower_uy,-0.04732507839798927 +illusion_1L,ppo,213,63.9,velocity,upper_ux,1.3855735063552856 +illusion_1L,ppo,213,63.9,velocity,upper_uy,-0.1700415313243866 +illusion_1L,ppo,213,63.9,velocity,center_ux,0.8926181197166443 +illusion_1L,ppo,213,63.9,velocity,center_uy,0.05725981295108795 +illusion_1L,ppo,213,63.9,velocity,lower_ux,0.6627398729324341 +illusion_1L,ppo,213,63.9,velocity,lower_uy,0.09375370293855667 +illusion_1L,ppo,214,64.2,velocity,upper_ux,1.2959914207458496 +illusion_1L,ppo,214,64.2,velocity,upper_uy,0.07417984306812286 +illusion_1L,ppo,214,64.2,velocity,center_ux,0.8908675312995911 +illusion_1L,ppo,214,64.2,velocity,center_uy,0.3712553083896637 +illusion_1L,ppo,214,64.2,velocity,lower_ux,0.7085770964622498 +illusion_1L,ppo,214,64.2,velocity,lower_uy,0.1979118287563324 +illusion_1L,ppo,215,64.5,velocity,upper_ux,1.1915885210037231 +illusion_1L,ppo,215,64.5,velocity,upper_uy,0.26007381081581116 +illusion_1L,ppo,215,64.5,velocity,center_ux,0.9068449139595032 +illusion_1L,ppo,215,64.5,velocity,center_uy,0.5668756365776062 +illusion_1L,ppo,215,64.5,velocity,lower_ux,0.7794350981712341 +illusion_1L,ppo,215,64.5,velocity,lower_uy,0.25565147399902344 +illusion_1L,ppo,216,64.8,velocity,upper_ux,1.1077779531478882 +illusion_1L,ppo,216,64.8,velocity,upper_uy,0.3473100960254669 +illusion_1L,ppo,216,64.8,velocity,center_ux,0.9308648705482483 +illusion_1L,ppo,216,64.8,velocity,center_uy,0.6160939335823059 +illusion_1L,ppo,216,64.8,velocity,lower_ux,0.8509326577186584 +illusion_1L,ppo,216,64.8,velocity,lower_uy,0.29210564494132996 +illusion_1L,ppo,217,65.1,velocity,upper_ux,1.0449999570846558 +illusion_1L,ppo,217,65.1,velocity,upper_uy,0.3719785511493683 +illusion_1L,ppo,217,65.1,velocity,center_ux,0.9539318680763245 +illusion_1L,ppo,217,65.1,velocity,center_uy,0.5981887578964233 +illusion_1L,ppo,217,65.1,velocity,lower_ux,0.9149778485298157 +illusion_1L,ppo,217,65.1,velocity,lower_uy,0.3228837847709656 +illusion_1L,ppo,218,65.4,velocity,upper_ux,0.9927494525909424 +illusion_1L,ppo,218,65.4,velocity,upper_uy,0.3766234219074249 +illusion_1L,ppo,218,65.4,velocity,center_ux,0.9715577363967896 +illusion_1L,ppo,218,65.4,velocity,center_uy,0.5864729881286621 +illusion_1L,ppo,218,65.4,velocity,lower_ux,0.9739525318145752 +illusion_1L,ppo,218,65.4,velocity,lower_uy,0.3493213355541229 +illusion_1L,ppo,219,65.7,velocity,upper_ux,0.9421859979629517 +illusion_1L,ppo,219,65.7,velocity,upper_uy,0.37810999155044556 +illusion_1L,ppo,219,65.7,velocity,center_ux,0.9840960502624512 +illusion_1L,ppo,219,65.7,velocity,center_uy,0.5936237573623657 +illusion_1L,ppo,219,65.7,velocity,lower_ux,1.0307722091674805 +illusion_1L,ppo,219,65.7,velocity,lower_uy,0.37252452969551086 +illusion_1L,ppo,220,66.0,velocity,upper_ux,0.8889657855033875 +illusion_1L,ppo,220,66.0,velocity,upper_uy,0.3748621344566345 +illusion_1L,ppo,220,66.0,velocity,center_ux,0.9921556711196899 +illusion_1L,ppo,220,66.0,velocity,center_uy,0.6161131262779236 +illusion_1L,ppo,220,66.0,velocity,lower_ux,1.08820378780365 +illusion_1L,ppo,220,66.0,velocity,lower_uy,0.3938908278942108 +illusion_1L,ppo,221,66.3,velocity,upper_ux,0.8313211798667908 +illusion_1L,ppo,221,66.3,velocity,upper_uy,0.3579449951648712 +illusion_1L,ppo,221,66.3,velocity,center_ux,0.9935755133628845 +illusion_1L,ppo,221,66.3,velocity,center_uy,0.6478288769721985 +illusion_1L,ppo,221,66.3,velocity,lower_ux,1.1494014263153076 +illusion_1L,ppo,221,66.3,velocity,lower_uy,0.4140043258666992 +illusion_1L,ppo,222,66.6,velocity,upper_ux,0.770389199256897 +illusion_1L,ppo,222,66.6,velocity,upper_uy,0.3152945637702942 +illusion_1L,ppo,222,66.6,velocity,center_ux,0.9814189672470093 +illusion_1L,ppo,222,66.6,velocity,center_uy,0.6672711372375488 +illusion_1L,ppo,222,66.6,velocity,lower_ux,1.2182258367538452 +illusion_1L,ppo,222,66.6,velocity,lower_uy,0.43207311630249023 +illusion_1L,ppo,223,66.9,velocity,upper_ux,0.7122853398323059 +illusion_1L,ppo,223,66.9,velocity,upper_uy,0.23660728335380554 +illusion_1L,ppo,223,66.9,velocity,center_ux,0.9472671747207642 +illusion_1L,ppo,223,66.9,velocity,center_uy,0.6198989748954773 +illusion_1L,ppo,223,66.9,velocity,lower_ux,1.2982429265975952 +illusion_1L,ppo,223,66.9,velocity,lower_uy,0.4426800608634949 +illusion_1L,ppo,224,67.2,velocity,upper_ux,0.6683763265609741 +illusion_1L,ppo,224,67.2,velocity,upper_uy,0.12161378562450409 +illusion_1L,ppo,224,67.2,velocity,center_ux,0.8968939185142517 +illusion_1L,ppo,224,67.2,velocity,center_uy,0.44304922223091125 +illusion_1L,ppo,224,67.2,velocity,lower_ux,1.380234718322754 +illusion_1L,ppo,224,67.2,velocity,lower_uy,0.4181143045425415 +illusion_1L,ppo,225,67.5,velocity,upper_ux,0.6528819799423218 +illusion_1L,ppo,225,67.5,velocity,upper_uy,-0.012565933167934418 +illusion_1L,ppo,225,67.5,velocity,center_ux,0.8553038239479065 +illusion_1L,ppo,225,67.5,velocity,center_uy,0.14216870069503784 +illusion_1L,ppo,225,67.5,velocity,lower_ux,1.4145407676696777 +illusion_1L,ppo,225,67.5,velocity,lower_uy,0.2850850820541382 +illusion_1L,ppo,226,67.8,velocity,upper_ux,0.677127480506897 +illusion_1L,ppo,226,67.8,velocity,upper_uy,-0.1324453502893448 +illusion_1L,ppo,226,67.8,velocity,center_ux,0.841713547706604 +illusion_1L,ppo,226,67.8,velocity,center_uy,-0.19922970235347748 +illusion_1L,ppo,226,67.8,velocity,lower_ux,1.3599766492843628 +illusion_1L,ppo,226,67.8,velocity,lower_uy,0.028336768969893456 +illusion_1L,ppo,227,68.1,velocity,upper_ux,0.7371883392333984 +illusion_1L,ppo,227,68.1,velocity,upper_uy,-0.21123595535755157 +illusion_1L,ppo,227,68.1,velocity,center_ux,0.8556669354438782 +illusion_1L,ppo,227,68.1,velocity,center_uy,-0.48067790269851685 +illusion_1L,ppo,227,68.1,velocity,lower_ux,1.264150857925415 +illusion_1L,ppo,227,68.1,velocity,lower_uy,-0.21838292479515076 +illusion_1L,ppo,228,68.4,velocity,upper_ux,0.8103129267692566 +illusion_1L,ppo,228,68.4,velocity,upper_uy,-0.25803467631340027 +illusion_1L,ppo,228,68.4,velocity,center_ux,0.8867210149765015 +illusion_1L,ppo,228,68.4,velocity,center_uy,-0.6237688660621643 +illusion_1L,ppo,228,68.4,velocity,lower_ux,1.1741130352020264 +illusion_1L,ppo,228,68.4,velocity,lower_uy,-0.35939645767211914 +illusion_1L,ppo,229,68.7,velocity,upper_ux,0.8790696263313293 +illusion_1L,ppo,229,68.7,velocity,upper_uy,-0.2944498062133789 +illusion_1L,ppo,229,68.7,velocity,center_ux,0.9225634932518005 +illusion_1L,ppo,229,68.7,velocity,center_uy,-0.6378812193870544 +illusion_1L,ppo,229,68.7,velocity,lower_ux,1.1004908084869385 +illusion_1L,ppo,229,68.7,velocity,lower_uy,-0.40686529874801636 +illusion_1L,ppo,230,69.0,velocity,upper_ux,0.9420337677001953 +illusion_1L,ppo,230,69.0,velocity,upper_uy,-0.32555970549583435 +illusion_1L,ppo,230,69.0,velocity,center_ux,0.9532928466796875 +illusion_1L,ppo,230,69.0,velocity,center_uy,-0.6168742179870605 +illusion_1L,ppo,230,69.0,velocity,lower_ux,1.0401346683502197 +illusion_1L,ppo,230,69.0,velocity,lower_uy,-0.41322699189186096 +illusion_1L,ppo,231,69.3,velocity,upper_ux,1.0018737316131592 +illusion_1L,ppo,231,69.3,velocity,upper_uy,-0.3514218330383301 +illusion_1L,ppo,231,69.3,velocity,center_ux,0.9763344526290894 +illusion_1L,ppo,231,69.3,velocity,center_uy,-0.6122303009033203 +illusion_1L,ppo,231,69.3,velocity,lower_ux,0.9849217534065247 +illusion_1L,ppo,231,69.3,velocity,lower_uy,-0.41201531887054443 +illusion_1L,ppo,232,69.6,velocity,upper_ux,1.0610278844833374 +illusion_1L,ppo,232,69.6,velocity,upper_uy,-0.3733077049255371 +illusion_1L,ppo,232,69.6,velocity,center_ux,0.993453860282898 +illusion_1L,ppo,232,69.6,velocity,center_uy,-0.6263366341590881 +illusion_1L,ppo,232,69.6,velocity,lower_ux,0.9287372827529907 +illusion_1L,ppo,232,69.6,velocity,lower_uy,-0.40872299671173096 +illusion_1L,ppo,233,69.9,velocity,upper_ux,1.1223644018173218 +illusion_1L,ppo,233,69.9,velocity,upper_uy,-0.39198416471481323 +illusion_1L,ppo,233,69.9,velocity,center_ux,1.0051099061965942 +illusion_1L,ppo,233,69.9,velocity,center_uy,-0.6537685394287109 +illusion_1L,ppo,233,69.9,velocity,lower_ux,0.868472695350647 +illusion_1L,ppo,233,69.9,velocity,lower_uy,-0.3956123888492584 +illusion_1L,ppo,234,70.2,velocity,upper_ux,1.1892880201339722 +illusion_1L,ppo,234,70.2,velocity,upper_uy,-0.4068531394004822 +illusion_1L,ppo,234,70.2,velocity,center_ux,1.0073307752609253 +illusion_1L,ppo,234,70.2,velocity,center_uy,-0.6784812808036804 +illusion_1L,ppo,234,70.2,velocity,lower_ux,0.8039376735687256 +illusion_1L,ppo,234,70.2,velocity,lower_uy,-0.3595131039619446 +illusion_1L,ppo,235,70.5,velocity,upper_ux,1.265045166015625 +illusion_1L,ppo,235,70.5,velocity,upper_uy,-0.4143806993961334 +illusion_1L,ppo,235,70.5,velocity,center_ux,0.9916025996208191 +illusion_1L,ppo,235,70.5,velocity,center_uy,-0.6527248620986938 +illusion_1L,ppo,235,70.5,velocity,lower_ux,0.7397843599319458 +illusion_1L,ppo,235,70.5,velocity,lower_uy,-0.28675535321235657 +illusion_1L,ppo,236,70.8,velocity,upper_ux,1.3463975191116333 +illusion_1L,ppo,236,70.8,velocity,upper_uy,-0.39975157380104065 +illusion_1L,ppo,236,70.8,velocity,center_ux,0.9568566679954529 +illusion_1L,ppo,236,70.8,velocity,center_uy,-0.5065885782241821 +illusion_1L,ppo,236,70.8,velocity,lower_ux,0.6865585446357727 +illusion_1L,ppo,236,70.8,velocity,lower_uy,-0.1720997542142868 +illusion_1L,ppo,237,71.1,velocity,upper_ux,1.401206374168396 +illusion_1L,ppo,237,71.1,velocity,upper_uy,-0.31650424003601074 +illusion_1L,ppo,237,71.1,velocity,center_ux,0.9209042191505432 +illusion_1L,ppo,237,71.1,velocity,center_uy,-0.22568054497241974 +illusion_1L,ppo,237,71.1,velocity,lower_ux,0.6585451364517212 +illusion_1L,ppo,237,71.1,velocity,lower_uy,-0.02818065695464611 +illusion_1L,ppo,238,71.4,velocity,upper_ux,1.3741495609283447 +illusion_1L,ppo,238,71.4,velocity,upper_uy,-0.12175725400447845 +illusion_1L,ppo,238,71.4,velocity,center_ux,0.9026260375976562 +illusion_1L,ppo,238,71.4,velocity,center_uy,0.11696024239063263 +illusion_1L,ppo,238,71.4,velocity,lower_ux,0.6688483953475952 +illusion_1L,ppo,238,71.4,velocity,lower_uy,0.11182510107755661 +illusion_1L,ppo,239,71.7,velocity,upper_ux,1.2780563831329346 +illusion_1L,ppo,239,71.7,velocity,upper_uy,0.11082009971141815 +illusion_1L,ppo,239,71.7,velocity,center_ux,0.9055309295654297 +illusion_1L,ppo,239,71.7,velocity,center_uy,0.4159928858280182 +illusion_1L,ppo,239,71.7,velocity,lower_ux,0.7194802761077881 +illusion_1L,ppo,239,71.7,velocity,lower_uy,0.21049945056438446 +illusion_1L,ppo,240,72.0,velocity,upper_ux,1.1769136190414429 +illusion_1L,ppo,240,72.0,velocity,upper_uy,0.27098214626312256 +illusion_1L,ppo,240,72.0,velocity,center_ux,0.9225309491157532 +illusion_1L,ppo,240,72.0,velocity,center_uy,0.5820636749267578 +illusion_1L,ppo,240,72.0,velocity,lower_ux,0.791556715965271 +illusion_1L,ppo,240,72.0,velocity,lower_uy,0.26409921050071716 +illusion_1L,ppo,241,72.3,velocity,upper_ux,1.097546935081482 +illusion_1L,ppo,241,72.3,velocity,upper_uy,0.3412013053894043 +illusion_1L,ppo,241,72.3,velocity,center_ux,0.9446418285369873 +illusion_1L,ppo,241,72.3,velocity,center_uy,0.6103458404541016 +illusion_1L,ppo,241,72.3,velocity,lower_ux,0.8623502850532532 +illusion_1L,ppo,241,72.3,velocity,lower_uy,0.29889410734176636 +illusion_1L,ppo,242,72.6,velocity,upper_ux,1.0373899936676025 +illusion_1L,ppo,242,72.6,velocity,upper_uy,0.3614100515842438 +illusion_1L,ppo,242,72.6,velocity,center_ux,0.9648852348327637 +illusion_1L,ppo,242,72.6,velocity,center_uy,0.5897293090820312 +illusion_1L,ppo,242,72.6,velocity,lower_ux,0.9260203838348389 +illusion_1L,ppo,242,72.6,velocity,lower_uy,0.3281494677066803 +illusion_1L,ppo,243,72.9,velocity,upper_ux,0.9859901070594788 +illusion_1L,ppo,243,72.9,velocity,upper_uy,0.36705636978149414 +illusion_1L,ppo,243,72.9,velocity,center_ux,0.9802283644676208 +illusion_1L,ppo,243,72.9,velocity,center_uy,0.5808736085891724 +illusion_1L,ppo,243,72.9,velocity,lower_ux,0.9850101470947266 +illusion_1L,ppo,243,72.9,velocity,lower_uy,0.35318121314048767 +illusion_1L,ppo,244,73.2,velocity,upper_ux,0.9353302121162415 +illusion_1L,ppo,244,73.2,velocity,upper_uy,0.3694742023944855 +illusion_1L,ppo,244,73.2,velocity,center_ux,0.990973711013794 +illusion_1L,ppo,244,73.2,velocity,center_uy,0.5905470848083496 +illusion_1L,ppo,244,73.2,velocity,lower_ux,1.0418680906295776 +illusion_1L,ppo,244,73.2,velocity,lower_uy,0.37537339329719543 +illusion_1L,ppo,245,73.5,velocity,upper_ux,0.8814046382904053 +illusion_1L,ppo,245,73.5,velocity,upper_uy,0.36535993218421936 +illusion_1L,ppo,245,73.5,velocity,center_ux,0.9971048831939697 +illusion_1L,ppo,245,73.5,velocity,center_uy,0.614943265914917 +illusion_1L,ppo,245,73.5,velocity,lower_ux,1.0992724895477295 +illusion_1L,ppo,245,73.5,velocity,lower_uy,0.39602839946746826 +illusion_1L,ppo,246,73.8,velocity,upper_ux,0.8228171467781067 +illusion_1L,ppo,246,73.8,velocity,upper_uy,0.34536564350128174 +illusion_1L,ppo,246,73.8,velocity,center_ux,0.9957823753356934 +illusion_1L,ppo,246,73.8,velocity,center_uy,0.6466424465179443 +illusion_1L,ppo,246,73.8,velocity,lower_ux,1.1605665683746338 +illusion_1L,ppo,246,73.8,velocity,lower_uy,0.41557884216308594 +illusion_1L,ppo,247,74.1,velocity,upper_ux,0.7616629600524902 +illusion_1L,ppo,247,74.1,velocity,upper_uy,0.29763561487197876 +illusion_1L,ppo,247,74.1,velocity,center_ux,0.9794601202011108 +illusion_1L,ppo,247,74.1,velocity,center_uy,0.6599414944648743 +illusion_1L,ppo,247,74.1,velocity,lower_ux,1.2300176620483398 +illusion_1L,ppo,247,74.1,velocity,lower_uy,0.43292078375816345 +illusion_1L,ppo,248,74.4,velocity,upper_ux,0.7052547335624695 +illusion_1L,ppo,248,74.4,velocity,upper_uy,0.2133084535598755 +illusion_1L,ppo,248,74.4,velocity,center_ux,0.9406702518463135 +illusion_1L,ppo,248,74.4,velocity,center_uy,0.596173882484436 +illusion_1L,ppo,248,74.4,velocity,lower_ux,1.310975193977356 +illusion_1L,ppo,248,74.4,velocity,lower_uy,0.44122177362442017 +illusion_1L,ppo,249,74.7,velocity,upper_ux,0.6658119559288025 +illusion_1L,ppo,249,74.7,velocity,upper_uy,0.09497980773448944 +illusion_1L,ppo,249,74.7,velocity,center_ux,0.8885329365730286 +illusion_1L,ppo,249,74.7,velocity,center_uy,0.3985501229763031 +illusion_1L,ppo,249,74.7,velocity,lower_ux,1.3904567956924438 +illusion_1L,ppo,249,74.7,velocity,lower_uy,0.40724775195121765 +illusion_1L,ppo,250,75.0,velocity,upper_ux,0.6575894951820374 +illusion_1L,ppo,250,75.0,velocity,upper_uy,-0.036816686391830444 +illusion_1L,ppo,250,75.0,velocity,center_ux,0.8493562936782837 +illusion_1L,ppo,250,75.0,velocity,center_uy,0.08628851175308228 +illusion_1L,ppo,250,75.0,velocity,lower_ux,1.4136589765548706 +illusion_1L,ppo,250,75.0,velocity,lower_uy,0.25495612621307373 +illusion_1L,ppo,251,75.3,velocity,upper_ux,0.6898177862167358 +illusion_1L,ppo,251,75.3,velocity,upper_uy,-0.1478024572134018 +illusion_1L,ppo,251,75.3,velocity,center_ux,0.8396936058998108 +illusion_1L,ppo,251,75.3,velocity,center_uy,-0.2506413757801056 +illusion_1L,ppo,251,75.3,velocity,lower_ux,1.3486629724502563 +illusion_1L,ppo,251,75.3,velocity,lower_uy,-0.010653779841959476 +illusion_1L,ppo,252,75.6,velocity,upper_ux,0.753726601600647 +illusion_1L,ppo,252,75.6,velocity,upper_uy,-0.2177734673023224 +illusion_1L,ppo,252,75.6,velocity,center_ux,0.8568223118782043 +illusion_1L,ppo,252,75.6,velocity,center_uy,-0.5125449299812317 +illusion_1L,ppo,252,75.6,velocity,lower_ux,1.2502593994140625 +illusion_1L,ppo,252,75.6,velocity,lower_uy,-0.24699963629245758 +illusion_1L,ppo,253,75.9,velocity,upper_ux,0.8253234624862671 +illusion_1L,ppo,253,75.9,velocity,upper_uy,-0.26172855496406555 +illusion_1L,ppo,253,75.9,velocity,center_ux,0.8897536396980286 +illusion_1L,ppo,253,75.9,velocity,center_uy,-0.6293202638626099 +illusion_1L,ppo,253,75.9,velocity,lower_ux,1.1609433889389038 +illusion_1L,ppo,253,75.9,velocity,lower_uy,-0.3729071021080017 +illusion_1L,ppo,254,76.2,velocity,upper_ux,0.8912948369979858 +illusion_1L,ppo,254,76.2,velocity,upper_uy,-0.2976865768432617 +illusion_1L,ppo,254,76.2,velocity,center_ux,0.9258529543876648 +illusion_1L,ppo,254,76.2,velocity,center_uy,-0.6305617094039917 +illusion_1L,ppo,254,76.2,velocity,lower_ux,1.089083194732666 +illusion_1L,ppo,254,76.2,velocity,lower_uy,-0.4110265076160431 +illusion_1L,ppo,255,76.5,velocity,upper_ux,0.9522939920425415 +illusion_1L,ppo,255,76.5,velocity,upper_uy,-0.3281138241291046 +illusion_1L,ppo,255,76.5,velocity,center_ux,0.955828845500946 +illusion_1L,ppo,255,76.5,velocity,center_uy,-0.6108824610710144 +illusion_1L,ppo,255,76.5,velocity,lower_ux,1.0301437377929688 +illusion_1L,ppo,255,76.5,velocity,lower_uy,-0.41461122035980225 +illusion_1L,ppo,256,76.8,velocity,upper_ux,1.011015772819519 +illusion_1L,ppo,256,76.8,velocity,upper_uy,-0.3534475564956665 +illusion_1L,ppo,256,76.8,velocity,center_ux,0.978354811668396 +illusion_1L,ppo,256,76.8,velocity,center_uy,-0.6094571352005005 +illusion_1L,ppo,256,76.8,velocity,lower_ux,0.9757952094078064 +illusion_1L,ppo,256,76.8,velocity,lower_uy,-0.41292232275009155 +illusion_1L,ppo,257,77.1,velocity,upper_ux,1.0698215961456299 +illusion_1L,ppo,257,77.1,velocity,upper_uy,-0.375104159116745 +illusion_1L,ppo,257,77.1,velocity,center_ux,0.9953587055206299 +illusion_1L,ppo,257,77.1,velocity,center_uy,-0.6257360577583313 +illusion_1L,ppo,257,77.1,velocity,lower_ux,0.9202728271484375 +illusion_1L,ppo,257,77.1,velocity,lower_uy,-0.4086093604564667 +illusion_1L,ppo,258,77.4,velocity,upper_ux,1.1313420534133911 +illusion_1L,ppo,258,77.4,velocity,upper_uy,-0.39373424649238586 +illusion_1L,ppo,258,77.4,velocity,center_ux,1.0066243410110474 +illusion_1L,ppo,258,77.4,velocity,center_uy,-0.653965175151825 +illusion_1L,ppo,258,77.4,velocity,lower_ux,0.860503613948822 +illusion_1L,ppo,258,77.4,velocity,lower_uy,-0.39278626441955566 +illusion_1L,ppo,259,77.7,velocity,upper_ux,1.1986733675003052 +illusion_1L,ppo,259,77.7,velocity,upper_uy,-0.4085923433303833 +illusion_1L,ppo,259,77.7,velocity,center_ux,1.0071709156036377 +illusion_1L,ppo,259,77.7,velocity,center_uy,-0.6756175756454468 +illusion_1L,ppo,259,77.7,velocity,lower_ux,0.7964182496070862 +illusion_1L,ppo,259,77.7,velocity,lower_uy,-0.3518511950969696 +illusion_1L,ppo,260,78.0,velocity,upper_ux,1.274748682975769 +illusion_1L,ppo,260,78.0,velocity,upper_uy,-0.4156321585178375 +illusion_1L,ppo,260,78.0,velocity,center_ux,0.988245964050293 +illusion_1L,ppo,260,78.0,velocity,center_uy,-0.6387203335762024 +illusion_1L,ppo,260,78.0,velocity,lower_ux,0.7332356572151184 +illusion_1L,ppo,260,78.0,velocity,lower_uy,-0.2727464437484741 +illusion_1L,ppo,261,78.3,velocity,upper_ux,1.3546677827835083 +illusion_1L,ppo,261,78.3,velocity,upper_uy,-0.3975411057472229 +illusion_1L,ppo,261,78.3,velocity,center_ux,0.9508324265480042 +illusion_1L,ppo,261,78.3,velocity,center_uy,-0.47561442852020264 +illusion_1L,ppo,261,78.3,velocity,lower_ux,0.6822525262832642 +illusion_1L,ppo,261,78.3,velocity,lower_uy,-0.1522923856973648 +illusion_1L,ppo,262,78.6,velocity,upper_ux,1.4019547700881958 +illusion_1L,ppo,262,78.6,velocity,upper_uy,-0.30333182215690613 +illusion_1L,ppo,262,78.6,velocity,center_ux,0.9146595001220703 +illusion_1L,ppo,262,78.6,velocity,center_uy,-0.1832510530948639 +illusion_1L,ppo,262,78.6,velocity,lower_ux,0.6582688689231873 +illusion_1L,ppo,262,78.6,velocity,lower_uy,-0.006246430799365044 +illusion_1L,ppo,263,78.9,velocity,upper_ux,1.3635867834091187 +illusion_1L,ppo,263,78.9,velocity,upper_uy,-0.09639327973127365 +illusion_1L,ppo,263,78.9,velocity,center_ux,0.8978245854377747 +illusion_1L,ppo,263,78.9,velocity,center_uy,0.15854845941066742 +illusion_1L,ppo,263,78.9,velocity,lower_ux,0.6740767955780029 +illusion_1L,ppo,263,78.9,velocity,lower_uy,0.12968234717845917 +illusion_1L,ppo,264,79.2,velocity,upper_ux,1.2628860473632812 +illusion_1L,ppo,264,79.2,velocity,upper_uy,0.13621516525745392 +illusion_1L,ppo,264,79.2,velocity,center_ux,0.9025616645812988 +illusion_1L,ppo,264,79.2,velocity,center_uy,0.44467681646347046 +illusion_1L,ppo,264,79.2,velocity,lower_ux,0.7292254567146301 +illusion_1L,ppo,264,79.2,velocity,lower_uy,0.22058822214603424 +illusion_1L,ppo,265,79.5,velocity,upper_ux,1.1633967161178589 +illusion_1L,ppo,265,79.5,velocity,upper_uy,0.2880089581012726 +illusion_1L,ppo,265,79.5,velocity,center_ux,0.921227216720581 +illusion_1L,ppo,265,79.5,velocity,center_uy,0.59139484167099 +illusion_1L,ppo,265,79.5,velocity,lower_ux,0.8022190928459167 +illusion_1L,ppo,265,79.5,velocity,lower_uy,0.26961982250213623 +illusion_1L,ppo,266,79.8,velocity,upper_ux,1.087122917175293 +illusion_1L,ppo,266,79.8,velocity,upper_uy,0.35040944814682007 +illusion_1L,ppo,266,79.8,velocity,center_ux,0.9443889260292053 +illusion_1L,ppo,266,79.8,velocity,center_uy,0.6083695888519287 +illusion_1L,ppo,266,79.8,velocity,lower_ux,0.8719022870063782 +illusion_1L,ppo,266,79.8,velocity,lower_uy,0.30342817306518555 +illusion_1L,ppo,267,80.1,velocity,upper_ux,1.0290333032608032 +illusion_1L,ppo,267,80.1,velocity,upper_uy,0.36670157313346863 +illusion_1L,ppo,267,80.1,velocity,center_ux,0.9646657109260559 +illusion_1L,ppo,267,80.1,velocity,center_uy,0.5881244540214539 +illusion_1L,ppo,267,80.1,velocity,lower_ux,0.9344028830528259 +illusion_1L,ppo,267,80.1,velocity,lower_uy,0.33229491114616394 +illusion_1L,ppo,268,80.4,velocity,upper_ux,0.9781574606895447 +illusion_1L,ppo,268,80.4,velocity,upper_uy,0.3709288537502289 +illusion_1L,ppo,268,80.4,velocity,center_ux,0.9794250726699829 +illusion_1L,ppo,268,80.4,velocity,center_uy,0.5823230147361755 +illusion_1L,ppo,268,80.4,velocity,lower_ux,0.9923903346061707 +illusion_1L,ppo,268,80.4,velocity,lower_uy,0.35713252425193787 +illusion_1L,ppo,269,80.7,velocity,upper_ux,0.9271420240402222 +illusion_1L,ppo,269,80.7,velocity,upper_uy,0.37234818935394287 +illusion_1L,ppo,269,80.7,velocity,center_ux,0.9893827438354492 +illusion_1L,ppo,269,80.7,velocity,center_uy,0.5944194793701172 +illusion_1L,ppo,269,80.7,velocity,lower_ux,1.0485721826553345 +illusion_1L,ppo,269,80.7,velocity,lower_uy,0.3793942332267761 +illusion_1L,ppo,270,81.0,velocity,upper_ux,0.8726803660392761 +illusion_1L,ppo,270,81.0,velocity,upper_uy,0.3666072487831116 +illusion_1L,ppo,270,81.0,velocity,center_ux,0.9945729374885559 +illusion_1L,ppo,270,81.0,velocity,center_uy,0.6205491423606873 +illusion_1L,ppo,270,81.0,velocity,lower_ux,1.1059457063674927 +illusion_1L,ppo,270,81.0,velocity,lower_uy,0.4003085196018219 +illusion_1L,ppo,271,81.3,velocity,upper_ux,0.813893735408783 +illusion_1L,ppo,271,81.3,velocity,upper_uy,0.34382107853889465 +illusion_1L,ppo,271,81.3,velocity,center_ux,0.9918136596679688 +illusion_1L,ppo,271,81.3,velocity,center_uy,0.6521802544593811 +illusion_1L,ppo,271,81.3,velocity,lower_ux,1.168117880821228 +illusion_1L,ppo,271,81.3,velocity,lower_uy,0.4201815724372864 +illusion_1L,ppo,272,81.6,velocity,upper_ux,0.7533400654792786 +illusion_1L,ppo,272,81.6,velocity,upper_uy,0.29202696681022644 +illusion_1L,ppo,272,81.6,velocity,center_ux,0.9730755686759949 +illusion_1L,ppo,272,81.6,velocity,center_uy,0.65992671251297 +illusion_1L,ppo,272,81.6,velocity,lower_ux,1.239432692527771 +illusion_1L,ppo,272,81.6,velocity,lower_uy,0.4375944435596466 +illusion_1L,ppo,273,81.9,velocity,upper_ux,0.6986280083656311 +illusion_1L,ppo,273,81.9,velocity,upper_uy,0.20308753848075867 +illusion_1L,ppo,273,81.9,velocity,center_ux,0.9318991303443909 +illusion_1L,ppo,273,81.9,velocity,center_uy,0.5817019939422607 +illusion_1L,ppo,273,81.9,velocity,lower_ux,1.322178602218628 +illusion_1L,ppo,273,81.9,velocity,lower_uy,0.44386163353919983 +illusion_1L,ppo,274,82.2,velocity,upper_ux,0.6620880365371704 +illusion_1L,ppo,274,82.2,velocity,upper_uy,0.0812259241938591 +illusion_1L,ppo,274,82.2,velocity,center_ux,0.8801891803741455 +illusion_1L,ppo,274,82.2,velocity,center_uy,0.36665481328964233 +illusion_1L,ppo,274,82.2,velocity,lower_ux,1.3980103731155396 +illusion_1L,ppo,274,82.2,velocity,lower_uy,0.39847487211227417 +illusion_1L,ppo,275,82.5,velocity,upper_ux,0.6577871441841125 +illusion_1L,ppo,275,82.5,velocity,upper_uy,-0.051015522330999374 +illusion_1L,ppo,275,82.5,velocity,center_ux,0.8443418145179749 +illusion_1L,ppo,275,82.5,velocity,center_uy,0.04556829109787941 +illusion_1L,ppo,275,82.5,velocity,lower_ux,1.408178687095642 +illusion_1L,ppo,275,82.5,velocity,lower_uy,0.22428098320960999 +illusion_1L,ppo,276,82.8,velocity,upper_ux,0.6939003467559814 +illusion_1L,ppo,276,82.8,velocity,upper_uy,-0.15885797142982483 +illusion_1L,ppo,276,82.8,velocity,center_ux,0.8382157683372498 +illusion_1L,ppo,276,82.8,velocity,center_uy,-0.2880462110042572 +illusion_1L,ppo,276,82.8,velocity,lower_ux,1.3349007368087769 +illusion_1L,ppo,276,82.8,velocity,lower_uy,-0.04840570315718651 +illusion_1L,ppo,277,83.1,velocity,upper_ux,0.7597835063934326 +illusion_1L,ppo,277,83.1,velocity,upper_uy,-0.22531339526176453 +illusion_1L,ppo,277,83.1,velocity,center_ux,0.8576459884643555 +illusion_1L,ppo,277,83.1,velocity,center_uy,-0.5366606116294861 +illusion_1L,ppo,277,83.1,velocity,lower_ux,1.2377190589904785 +illusion_1L,ppo,277,83.1,velocity,lower_uy,-0.2726994454860687 +illusion_1L,ppo,278,83.4,velocity,upper_ux,0.831540048122406 +illusion_1L,ppo,278,83.4,velocity,upper_uy,-0.26796624064445496 +illusion_1L,ppo,278,83.4,velocity,center_ux,0.8915340900421143 +illusion_1L,ppo,278,83.4,velocity,center_uy,-0.6378147602081299 +illusion_1L,ppo,278,83.4,velocity,lower_ux,1.1513822078704834 +illusion_1L,ppo,278,83.4,velocity,lower_uy,-0.3848034143447876 +illusion_1L,ppo,279,83.7,velocity,upper_ux,0.8977079391479492 +illusion_1L,ppo,279,83.7,velocity,upper_uy,-0.30347520112991333 +illusion_1L,ppo,279,83.7,velocity,center_ux,0.9275210499763489 +illusion_1L,ppo,279,83.7,velocity,center_uy,-0.6331623196601868 +illusion_1L,ppo,279,83.7,velocity,lower_ux,1.0817264318466187 +illusion_1L,ppo,279,83.7,velocity,lower_uy,-0.4157118797302246 +illusion_1L,ppo,280,84.0,velocity,upper_ux,0.9594219923019409 +illusion_1L,ppo,280,84.0,velocity,upper_uy,-0.3335157632827759 +illusion_1L,ppo,280,84.0,velocity,center_ux,0.9569818377494812 +illusion_1L,ppo,280,84.0,velocity,center_uy,-0.6153268218040466 +illusion_1L,ppo,280,84.0,velocity,lower_ux,1.0236011743545532 +illusion_1L,ppo,280,84.0,velocity,lower_uy,-0.41748660802841187 +illusion_1L,ppo,281,84.3,velocity,upper_ux,1.0190842151641846 +illusion_1L,ppo,281,84.3,velocity,upper_uy,-0.3586121201515198 +illusion_1L,ppo,281,84.3,velocity,center_ux,0.9789519309997559 +illusion_1L,ppo,281,84.3,velocity,center_uy,-0.6167783737182617 +illusion_1L,ppo,281,84.3,velocity,lower_ux,0.9688562154769897 +illusion_1L,ppo,281,84.3,velocity,lower_uy,-0.41541165113449097 +illusion_1L,ppo,282,84.6,velocity,upper_ux,1.0789673328399658 +illusion_1L,ppo,282,84.6,velocity,upper_uy,-0.38006046414375305 +illusion_1L,ppo,282,84.6,velocity,center_ux,0.9950819611549377 +illusion_1L,ppo,282,84.6,velocity,center_uy,-0.6357225775718689 +illusion_1L,ppo,282,84.6,velocity,lower_ux,0.9120362401008606 +illusion_1L,ppo,282,84.6,velocity,lower_uy,-0.4100724756717682 +illusion_1L,ppo,283,84.9,velocity,upper_ux,1.1418955326080322 +illusion_1L,ppo,283,84.9,velocity,upper_uy,-0.39827924966812134 +illusion_1L,ppo,283,84.9,velocity,center_ux,1.0046714544296265 +illusion_1L,ppo,283,84.9,velocity,center_uy,-0.665359377861023 +illusion_1L,ppo,283,84.9,velocity,lower_ux,0.8504886627197266 +illusion_1L,ppo,283,84.9,velocity,lower_uy,-0.3917401432991028 +illusion_1L,ppo,284,85.2,velocity,upper_ux,1.2113358974456787 +illusion_1L,ppo,284,85.2,velocity,upper_uy,-0.4120824933052063 +illusion_1L,ppo,284,85.2,velocity,center_ux,1.0021287202835083 +illusion_1L,ppo,284,85.2,velocity,center_uy,-0.6823298931121826 +illusion_1L,ppo,284,85.2,velocity,lower_ux,0.7850704193115234 +illusion_1L,ppo,284,85.2,velocity,lower_uy,-0.34636756777763367 +illusion_1L,ppo,285,85.5,velocity,upper_ux,1.2899633646011353 +illusion_1L,ppo,285,85.5,velocity,upper_uy,-0.41590070724487305 +illusion_1L,ppo,285,85.5,velocity,center_ux,0.9796310663223267 +illusion_1L,ppo,285,85.5,velocity,center_uy,-0.6274240016937256 +illusion_1L,ppo,285,85.5,velocity,lower_ux,0.7222545742988586 +illusion_1L,ppo,285,85.5,velocity,lower_uy,-0.2614162266254425 +illusion_1L,ppo,286,85.8,velocity,upper_ux,1.3686957359313965 +illusion_1L,ppo,286,85.8,velocity,upper_uy,-0.3866872787475586 +illusion_1L,ppo,286,85.8,velocity,center_ux,0.942287802696228 +illusion_1L,ppo,286,85.8,velocity,center_uy,-0.4377707540988922 +illusion_1L,ppo,286,85.8,velocity,lower_ux,0.6742416024208069 +illusion_1L,ppo,286,85.8,velocity,lower_uy,-0.13567321002483368 +illusion_1L,ppo,287,86.1,velocity,upper_ux,1.402709722518921 +illusion_1L,ppo,287,86.1,velocity,upper_uy,-0.2680196762084961 +illusion_1L,ppo,287,86.1,velocity,center_ux,0.9112215042114258 +illusion_1L,ppo,287,86.1,velocity,center_uy,-0.12794099748134613 +illusion_1L,ppo,287,86.1,velocity,lower_ux,0.6556878685951233 +illusion_1L,ppo,287,86.1,velocity,lower_uy,0.01241361629217863 +illusion_1L,ppo,288,86.4,velocity,upper_ux,1.348616123199463 +illusion_1L,ppo,288,86.4,velocity,upper_uy,-0.04583262279629707 +illusion_1L,ppo,288,86.4,velocity,center_ux,0.9007181525230408 +illusion_1L,ppo,288,86.4,velocity,center_uy,0.21338984370231628 +illusion_1L,ppo,288,86.4,velocity,lower_ux,0.6778438091278076 +illusion_1L,ppo,288,86.4,velocity,lower_uy,0.14554420113563538 +illusion_1L,ppo,289,86.7,velocity,upper_ux,1.246912956237793 +illusion_1L,ppo,289,86.7,velocity,upper_uy,0.17293865978717804 +illusion_1L,ppo,289,86.7,velocity,center_ux,0.9096047878265381 +illusion_1L,ppo,289,86.7,velocity,center_uy,0.48206883668899536 +illusion_1L,ppo,289,86.7,velocity,lower_ux,0.737405002117157 +illusion_1L,ppo,289,86.7,velocity,lower_uy,0.23129138350486755 +illusion_1L,ppo,290,87.0,velocity,upper_ux,1.1529451608657837 +illusion_1L,ppo,290,87.0,velocity,upper_uy,0.30263131856918335 +illusion_1L,ppo,290,87.0,velocity,center_ux,0.9291557669639587 +illusion_1L,ppo,290,87.0,velocity,center_uy,0.6047801971435547 +illusion_1L,ppo,290,87.0,velocity,lower_ux,0.8113648295402527 +illusion_1L,ppo,290,87.0,velocity,lower_uy,0.27745598554611206 +illusion_1L,ppo,291,87.3,velocity,upper_ux,1.0804349184036255 +illusion_1L,ppo,291,87.3,velocity,upper_uy,0.35209327936172485 +illusion_1L,ppo,291,87.3,velocity,center_ux,0.950843095779419 +illusion_1L,ppo,291,87.3,velocity,center_uy,0.6095107793807983 +illusion_1L,ppo,291,87.3,velocity,lower_ux,0.8805325031280518 +illusion_1L,ppo,291,87.3,velocity,lower_uy,0.3103916347026825 +illusion_1L,ppo,292,87.6,velocity,upper_ux,1.0232939720153809 +illusion_1L,ppo,292,87.6,velocity,upper_uy,0.36492919921875 +illusion_1L,ppo,292,87.6,velocity,center_ux,0.9689639210700989 +illusion_1L,ppo,292,87.6,velocity,center_uy,0.58942711353302 +illusion_1L,ppo,292,87.6,velocity,lower_ux,0.9427724480628967 +illusion_1L,ppo,292,87.6,velocity,lower_uy,0.3386070132255554 +illusion_1L,ppo,293,87.9,velocity,upper_ux,0.9718700051307678 +illusion_1L,ppo,293,87.9,velocity,upper_uy,0.36910566687583923 +illusion_1L,ppo,293,87.9,velocity,center_ux,0.9820120334625244 +illusion_1L,ppo,293,87.9,velocity,center_uy,0.5862900018692017 +illusion_1L,ppo,293,87.9,velocity,lower_ux,1.0011199712753296 +illusion_1L,ppo,293,87.9,velocity,lower_uy,0.36297643184661865 +illusion_1L,ppo,294,88.2,velocity,upper_ux,0.9199761152267456 +illusion_1L,ppo,294,88.2,velocity,upper_uy,0.3700871169567108 +illusion_1L,ppo,294,88.2,velocity,center_ux,0.9907105565071106 +illusion_1L,ppo,294,88.2,velocity,center_uy,0.6008961200714111 +illusion_1L,ppo,294,88.2,velocity,lower_ux,1.058411717414856 +illusion_1L,ppo,294,88.2,velocity,lower_uy,0.3850114047527313 +illusion_1L,ppo,295,88.5,velocity,upper_ux,0.8645347356796265 +illusion_1L,ppo,295,88.5,velocity,upper_uy,0.3622512221336365 +illusion_1L,ppo,295,88.5,velocity,center_ux,0.994366466999054 +illusion_1L,ppo,295,88.5,velocity,center_uy,0.6290199160575867 +illusion_1L,ppo,295,88.5,velocity,lower_ux,1.1176313161849976 +illusion_1L,ppo,295,88.5,velocity,lower_uy,0.40580233931541443 +illusion_1L,ppo,296,88.8,velocity,upper_ux,0.8048274517059326 +illusion_1L,ppo,296,88.8,velocity,upper_uy,0.3351781368255615 +illusion_1L,ppo,296,88.8,velocity,center_ux,0.9885648488998413 +illusion_1L,ppo,296,88.8,velocity,center_uy,0.6594341993331909 +illusion_1L,ppo,296,88.8,velocity,lower_ux,1.182381510734558 +illusion_1L,ppo,296,88.8,velocity,lower_uy,0.42538487911224365 +illusion_1L,ppo,297,89.1,velocity,upper_ux,0.7441691756248474 +illusion_1L,ppo,297,89.1,velocity,upper_uy,0.2771425247192383 +illusion_1L,ppo,297,89.1,velocity,center_ux,0.964508593082428 +illusion_1L,ppo,297,89.1,velocity,center_uy,0.6557360291481018 +illusion_1L,ppo,297,89.1,velocity,lower_ux,1.257056474685669 +illusion_1L,ppo,297,89.1,velocity,lower_uy,0.4415340721607208 +illusion_1L,ppo,298,89.4,velocity,upper_ux,0.6913278698921204 +illusion_1L,ppo,298,89.4,velocity,upper_uy,0.1817139983177185 +illusion_1L,ppo,298,89.4,velocity,center_ux,0.9185429811477661 +illusion_1L,ppo,298,89.4,velocity,center_uy,0.5515280365943909 +illusion_1L,ppo,298,89.4,velocity,lower_ux,1.3420931100845337 +illusion_1L,ppo,298,89.4,velocity,lower_uy,0.4412979781627655 +illusion_1L,ppo,299,89.7,velocity,upper_ux,0.6595385074615479 +illusion_1L,ppo,299,89.7,velocity,upper_uy,0.05628638714551926 +illusion_1L,ppo,299,89.7,velocity,center_ux,0.8678982257843018 +illusion_1L,ppo,299,89.7,velocity,center_uy,0.30831652879714966 +illusion_1L,ppo,299,89.7,velocity,lower_ux,1.4100093841552734 +illusion_1L,ppo,299,89.7,velocity,lower_uy,0.37185317277908325 +illusion_1L,ppo,300,90.0,velocity,upper_ux,0.6626884937286377 +illusion_1L,ppo,300,90.0,velocity,upper_uy,-0.07332446426153183 +illusion_1L,ppo,300,90.0,velocity,center_ux,0.8388131856918335 +illusion_1L,ppo,300,90.0,velocity,center_uy,-0.024651657789945602 +illusion_1L,ppo,300,90.0,velocity,lower_ux,1.4005193710327148 +illusion_1L,ppo,300,90.0,velocity,lower_uy,0.16445304453372955 +illusion_1L,ppo,301,90.3,velocity,upper_ux,0.7062525153160095 +illusion_1L,ppo,301,90.3,velocity,upper_uy,-0.17308835685253143 +illusion_1L,ppo,301,90.3,velocity,center_ux,0.8404609560966492 +illusion_1L,ppo,301,90.3,velocity,center_uy,-0.34882500767707825 +illusion_1L,ppo,301,90.3,velocity,lower_ux,1.3188802003860474 +illusion_1L,ppo,301,90.3,velocity,lower_uy,-0.10857835412025452 +illusion_1L,ppo,302,90.6,velocity,upper_ux,0.7753773331642151 +illusion_1L,ppo,302,90.6,velocity,upper_uy,-0.23309387266635895 +illusion_1L,ppo,302,90.6,velocity,center_ux,0.8656641840934753 +illusion_1L,ppo,302,90.6,velocity,center_uy,-0.5703384280204773 +illusion_1L,ppo,302,90.6,velocity,lower_ux,1.2243623733520508 +illusion_1L,ppo,302,90.6,velocity,lower_uy,-0.3073185384273529 +illusion_1L,ppo,303,90.9,velocity,upper_ux,0.846656084060669 +illusion_1L,ppo,303,90.9,velocity,upper_uy,-0.2737695574760437 +illusion_1L,ppo,303,90.9,velocity,center_ux,0.9022670388221741 +illusion_1L,ppo,303,90.9,velocity,center_uy,-0.6427575349807739 +illusion_1L,ppo,303,90.9,velocity,lower_ux,1.1416112184524536 +illusion_1L,ppo,303,90.9,velocity,lower_uy,-0.3961986005306244 +illusion_1L,ppo,304,91.2,velocity,upper_ux,0.9118078351020813 +illusion_1L,ppo,304,91.2,velocity,upper_uy,-0.3080903887748718 +illusion_1L,ppo,304,91.2,velocity,center_ux,0.938079833984375 +illusion_1L,ppo,304,91.2,velocity,center_uy,-0.6286540627479553 +illusion_1L,ppo,304,91.2,velocity,lower_ux,1.074148178100586 +illusion_1L,ppo,304,91.2,velocity,lower_uy,-0.4170379638671875 +illusion_1L,ppo,305,91.5,velocity,upper_ux,0.9727184176445007 +illusion_1L,ppo,305,91.5,velocity,upper_uy,-0.3366859555244446 +illusion_1L,ppo,305,91.5,velocity,center_ux,0.966317355632782 +illusion_1L,ppo,305,91.5,velocity,center_uy,-0.6134659051895142 +illusion_1L,ppo,305,91.5,velocity,lower_ux,1.0161725282669067 +illusion_1L,ppo,305,91.5,velocity,lower_uy,-0.41758283972740173 +illusion_1L,ppo,306,91.8,velocity,upper_ux,1.03184175491333 +illusion_1L,ppo,306,91.8,velocity,upper_uy,-0.3604065477848053 +illusion_1L,ppo,306,91.8,velocity,center_ux,0.9874973297119141 +illusion_1L,ppo,306,91.8,velocity,center_uy,-0.6181643009185791 +illusion_1L,ppo,306,91.8,velocity,lower_ux,0.9602962136268616 +illusion_1L,ppo,306,91.8,velocity,lower_uy,-0.4158408045768738 +illusion_1L,ppo,307,92.1,velocity,upper_ux,1.0917224884033203 +illusion_1L,ppo,307,92.1,velocity,upper_uy,-0.3804740309715271 +illusion_1L,ppo,307,92.1,velocity,center_ux,1.003383994102478 +illusion_1L,ppo,307,92.1,velocity,center_uy,-0.6392471194267273 +illusion_1L,ppo,307,92.1,velocity,lower_ux,0.90189129114151 +illusion_1L,ppo,307,92.1,velocity,lower_uy,-0.4088914692401886 +illusion_1L,ppo,308,92.4,velocity,upper_ux,1.1553924083709717 +illusion_1L,ppo,308,92.4,velocity,upper_uy,-0.3970581591129303 +illusion_1L,ppo,308,92.4,velocity,center_ux,1.012594223022461 +illusion_1L,ppo,308,92.4,velocity,center_uy,-0.6681284308433533 +illusion_1L,ppo,308,92.4,velocity,lower_ux,0.8389592170715332 +illusion_1L,ppo,308,92.4,velocity,lower_uy,-0.385384202003479 +illusion_1L,ppo,309,92.7,velocity,upper_ux,1.2262650728225708 +illusion_1L,ppo,309,92.7,velocity,upper_uy,-0.4084838330745697 +illusion_1L,ppo,309,92.7,velocity,center_ux,1.0082567930221558 +illusion_1L,ppo,309,92.7,velocity,center_uy,-0.6751700043678284 +illusion_1L,ppo,309,92.7,velocity,lower_ux,0.7733654379844666 +illusion_1L,ppo,309,92.7,velocity,lower_uy,-0.33068832755088806 +illusion_1L,ppo,310,93.0,velocity,upper_ux,1.3059306144714355 +illusion_1L,ppo,310,93.0,velocity,upper_uy,-0.40772494673728943 +illusion_1L,ppo,310,93.0,velocity,center_ux,0.9828588962554932 +illusion_1L,ppo,310,93.0,velocity,center_uy,-0.5948429107666016 +illusion_1L,ppo,310,93.0,velocity,lower_ux,0.7128111720085144 +illusion_1L,ppo,310,93.0,velocity,lower_uy,-0.2340521216392517 +illusion_1L,ppo,311,93.3,velocity,upper_ux,1.3807307481765747 +illusion_1L,ppo,311,93.3,velocity,upper_uy,-0.36736464500427246 +illusion_1L,ppo,311,93.3,velocity,center_ux,0.9449576735496521 +illusion_1L,ppo,311,93.3,velocity,center_uy,-0.37367603182792664 +illusion_1L,ppo,311,93.3,velocity,lower_ux,0.6704415082931519 +illusion_1L,ppo,311,93.3,velocity,lower_uy,-0.09891243278980255 +illusion_1L,ppo,312,93.6,velocity,upper_ux,1.4001103639602661 +illusion_1L,ppo,312,93.6,velocity,upper_uy,-0.2306903898715973 +illusion_1L,ppo,312,93.6,velocity,center_ux,0.916762113571167 +illusion_1L,ppo,312,93.6,velocity,center_uy,-0.04669615253806114 +illusion_1L,ppo,312,93.6,velocity,lower_ux,0.6610854268074036 +illusion_1L,ppo,312,93.6,velocity,lower_uy,0.05002564564347267 +illusion_1L,ppo,313,93.9,velocity,upper_ux,1.3298994302749634 +illusion_1L,ppo,313,93.9,velocity,upper_uy,-0.0026898919604718685 +illusion_1L,ppo,313,93.9,velocity,center_ux,0.909939706325531 +illusion_1L,ppo,313,93.9,velocity,center_uy,0.28636297583580017 +illusion_1L,ppo,313,93.9,velocity,lower_ux,0.6938853859901428 +illusion_1L,ppo,313,93.9,velocity,lower_uy,0.17228549718856812 +illusion_1L,ppo,314,94.2,velocity,upper_ux,1.2222644090652466 +illusion_1L,ppo,314,94.2,velocity,upper_uy,0.20175676047801971 +illusion_1L,ppo,314,94.2,velocity,center_ux,0.9211703538894653 +illusion_1L,ppo,314,94.2,velocity,center_uy,0.5207730531692505 +illusion_1L,ppo,314,94.2,velocity,lower_ux,0.7595321536064148 +illusion_1L,ppo,314,94.2,velocity,lower_uy,0.24401643872261047 +illusion_1L,ppo,315,94.5,velocity,upper_ux,1.1300969123840332 +illusion_1L,ppo,315,94.5,velocity,upper_uy,0.3131906986236572 +illusion_1L,ppo,315,94.5,velocity,center_ux,0.9415378570556641 +illusion_1L,ppo,315,94.5,velocity,center_uy,0.603301465511322 +illusion_1L,ppo,315,94.5,velocity,lower_ux,0.8328785300254822 +illusion_1L,ppo,315,94.5,velocity,lower_uy,0.2834518253803253 +illusion_1L,ppo,316,94.8,velocity,upper_ux,1.0621602535247803 +illusion_1L,ppo,316,94.8,velocity,upper_uy,0.352596253156662 +illusion_1L,ppo,316,94.8,velocity,center_ux,0.9631242752075195 +illusion_1L,ppo,316,94.8,velocity,center_uy,0.5928782224655151 +illusion_1L,ppo,316,94.8,velocity,lower_ux,0.8997134566307068 +illusion_1L,ppo,316,94.8,velocity,lower_uy,0.31352633237838745 +illusion_1L,ppo,317,95.1,velocity,upper_ux,1.0086897611618042 +illusion_1L,ppo,317,95.1,velocity,upper_uy,0.3634434640407562 +illusion_1L,ppo,317,95.1,velocity,center_ux,0.9810802936553955 +illusion_1L,ppo,317,95.1,velocity,center_uy,0.5762308239936829 +illusion_1L,ppo,317,95.1,velocity,lower_ux,0.9603244066238403 +illusion_1L,ppo,317,95.1,velocity,lower_uy,0.33894288539886475 +illusion_1L,ppo,318,95.4,velocity,upper_ux,0.9590163230895996 +illusion_1L,ppo,318,95.4,velocity,upper_uy,0.3683520257472992 +illusion_1L,ppo,318,95.4,velocity,center_ux,0.9947591423988342 +illusion_1L,ppo,318,95.4,velocity,center_uy,0.5780162811279297 +illusion_1L,ppo,318,95.4,velocity,lower_ux,1.0173993110656738 +illusion_1L,ppo,318,95.4,velocity,lower_uy,0.36065995693206787 +illusion_1L,ppo,319,95.7,velocity,upper_ux,0.907256543636322 +illusion_1L,ppo,319,95.7,velocity,upper_uy,0.36920464038848877 +illusion_1L,ppo,319,95.7,velocity,center_ux,1.004851222038269 +illusion_1L,ppo,319,95.7,velocity,center_uy,0.5959574580192566 +illusion_1L,ppo,319,95.7,velocity,lower_ux,1.073447346687317 +illusion_1L,ppo,319,95.7,velocity,lower_uy,0.3800979256629944 +illusion_1L,ppo,320,96.0,velocity,upper_ux,0.850845217704773 +illusion_1L,ppo,320,96.0,velocity,upper_uy,0.35862115025520325 +illusion_1L,ppo,320,96.0,velocity,center_ux,1.0103182792663574 +illusion_1L,ppo,320,96.0,velocity,center_uy,0.6254748106002808 +illusion_1L,ppo,320,96.0,velocity,lower_ux,1.1313648223876953 +illusion_1L,ppo,320,96.0,velocity,lower_uy,0.3980306088924408 +illusion_1L,ppo,321,96.3,velocity,upper_ux,0.7900862693786621 +illusion_1L,ppo,321,96.3,velocity,upper_uy,0.32512152194976807 +illusion_1L,ppo,321,96.3,velocity,center_ux,1.006064772605896 +illusion_1L,ppo,321,96.3,velocity,center_uy,0.6526938676834106 +illusion_1L,ppo,321,96.3,velocity,lower_ux,1.1947494745254517 +illusion_1L,ppo,321,96.3,velocity,lower_uy,0.4141365885734558 +illusion_1L,ppo,322,96.6,velocity,upper_ux,0.7298646569252014 +illusion_1L,ppo,322,96.6,velocity,upper_uy,0.2573474943637848 +illusion_1L,ppo,322,96.6,velocity,center_ux,0.982461154460907 +illusion_1L,ppo,322,96.6,velocity,center_uy,0.6362853050231934 +illusion_1L,ppo,322,96.6,velocity,lower_ux,1.2677682638168335 +illusion_1L,ppo,322,96.6,velocity,lower_uy,0.425751656293869 +illusion_1L,ppo,323,96.9,velocity,upper_ux,0.6805317401885986 +illusion_1L,ppo,323,96.9,velocity,upper_uy,0.151788592338562 +illusion_1L,ppo,323,96.9,velocity,center_ux,0.9364907741546631 +illusion_1L,ppo,323,96.9,velocity,center_uy,0.509678304195404 +illusion_1L,ppo,323,96.9,velocity,lower_ux,1.3502349853515625 +illusion_1L,ppo,323,96.9,velocity,lower_uy,0.4202308654785156 +illusion_1L,ppo,324,97.2,velocity,upper_ux,0.6562356352806091 +illusion_1L,ppo,324,97.2,velocity,upper_uy,0.02106945402920246 +illusion_1L,ppo,324,97.2,velocity,center_ux,0.8870567083358765 +illusion_1L,ppo,324,97.2,velocity,center_uy,0.2460797131061554 +illusion_1L,ppo,324,97.2,velocity,lower_ux,1.4144269227981567 +illusion_1L,ppo,324,97.2,velocity,lower_uy,0.3496240973472595 +illusion_1L,ppo,325,97.5,velocity,upper_ux,0.6700659394264221 +illusion_1L,ppo,325,97.5,velocity,upper_uy,-0.10391825437545776 +illusion_1L,ppo,325,97.5,velocity,center_ux,0.8598714470863342 +illusion_1L,ppo,325,97.5,velocity,center_uy,-0.09158124029636383 +illusion_1L,ppo,325,97.5,velocity,lower_ux,1.3979593515396118 +illusion_1L,ppo,325,97.5,velocity,lower_uy,0.15030834078788757 +illusion_1L,ppo,326,97.8,velocity,upper_ux,0.7226029634475708 +illusion_1L,ppo,326,97.8,velocity,upper_uy,-0.19148306548595428 +illusion_1L,ppo,326,97.8,velocity,center_ux,0.8622742891311646 +illusion_1L,ppo,326,97.8,velocity,center_uy,-0.3987039029598236 +illusion_1L,ppo,326,97.8,velocity,lower_ux,1.3023055791854858 +illusion_1L,ppo,326,97.8,velocity,lower_uy,-0.11282796412706375 +illusion_1L,ppo,327,98.1,velocity,upper_ux,0.7934918403625488 +illusion_1L,ppo,327,98.1,velocity,upper_uy,-0.24241551756858826 +illusion_1L,ppo,327,98.1,velocity,center_ux,0.8864414691925049 +illusion_1L,ppo,327,98.1,velocity,center_uy,-0.5820062160491943 +illusion_1L,ppo,327,98.1,velocity,lower_ux,1.1968321800231934 +illusion_1L,ppo,327,98.1,velocity,lower_uy,-0.3012687861919403 +illusion_1L,ppo,328,98.4,velocity,upper_ux,0.861774206161499 +illusion_1L,ppo,328,98.4,velocity,upper_uy,-0.2793501019477844 +illusion_1L,ppo,328,98.4,velocity,center_ux,0.9201050996780396 +illusion_1L,ppo,328,98.4,velocity,center_uy,-0.6204437613487244 +illusion_1L,ppo,328,98.4,velocity,lower_ux,1.113712191581726 +illusion_1L,ppo,328,98.4,velocity,lower_uy,-0.3812151551246643 +illusion_1L,ppo,329,98.7,velocity,upper_ux,0.9234960675239563 +illusion_1L,ppo,329,98.7,velocity,upper_uy,-0.31078216433525085 +illusion_1L,ppo,329,98.7,velocity,center_ux,0.9516448974609375 +illusion_1L,ppo,329,98.7,velocity,center_uy,-0.5991242527961731 +illusion_1L,ppo,329,98.7,velocity,lower_ux,1.051670789718628 +illusion_1L,ppo,329,98.7,velocity,lower_uy,-0.39875173568725586 +illusion_1L,ppo,330,99.0,velocity,upper_ux,0.9812707304954529 +illusion_1L,ppo,330,99.0,velocity,upper_uy,-0.33681178092956543 +illusion_1L,ppo,330,99.0,velocity,center_ux,0.9762855172157288 +illusion_1L,ppo,330,99.0,velocity,center_uy,-0.5873236060142517 +illusion_1L,ppo,330,99.0,velocity,lower_ux,0.9996030926704407 +illusion_1L,ppo,330,99.0,velocity,lower_uy,-0.3996638357639313 +illusion_1L,ppo,331,99.3,velocity,upper_ux,1.037372350692749 +illusion_1L,ppo,331,99.3,velocity,upper_uy,-0.35873040556907654 +illusion_1L,ppo,331,99.3,velocity,center_ux,0.9953633546829224 +illusion_1L,ppo,331,99.3,velocity,center_uy,-0.5941091775894165 +illusion_1L,ppo,331,99.3,velocity,lower_ux,0.9486557245254517 +illusion_1L,ppo,331,99.3,velocity,lower_uy,-0.3987305760383606 +illusion_1L,ppo,332,99.6,velocity,upper_ux,1.0940202474594116 +illusion_1L,ppo,332,99.6,velocity,upper_uy,-0.377790629863739 +illusion_1L,ppo,332,99.6,velocity,center_ux,1.0101264715194702 +illusion_1L,ppo,332,99.6,velocity,center_uy,-0.6153648495674133 +illusion_1L,ppo,332,99.6,velocity,lower_ux,0.8943268060684204 +illusion_1L,ppo,332,99.6,velocity,lower_uy,-0.39187026023864746 +illusion_1L,ppo,333,99.9,velocity,upper_ux,1.1537972688674927 +illusion_1L,ppo,333,99.9,velocity,upper_uy,-0.39429551362991333 +illusion_1L,ppo,333,99.9,velocity,center_ux,1.018744707107544 +illusion_1L,ppo,333,99.9,velocity,center_uy,-0.6436241865158081 +illusion_1L,ppo,333,99.9,velocity,lower_ux,0.8347872495651245 +illusion_1L,ppo,333,99.9,velocity,lower_uy,-0.3680327832698822 +illusion_1L,ppo,334,100.2,velocity,upper_ux,1.2198137044906616 +illusion_1L,ppo,334,100.2,velocity,upper_uy,-0.4071286916732788 +illusion_1L,ppo,334,100.2,velocity,center_ux,1.014229416847229 +illusion_1L,ppo,334,100.2,velocity,center_uy,-0.6535749435424805 +illusion_1L,ppo,334,100.2,velocity,lower_ux,0.7718865275382996 +illusion_1L,ppo,334,100.2,velocity,lower_uy,-0.31372490525245667 +illusion_1L,ppo,335,100.5,velocity,upper_ux,1.2944872379302979 +illusion_1L,ppo,335,100.5,velocity,upper_uy,-0.41127681732177734 +illusion_1L,ppo,335,100.5,velocity,center_ux,0.9876141548156738 +illusion_1L,ppo,335,100.5,velocity,center_uy,-0.587272047996521 +illusion_1L,ppo,335,100.5,velocity,lower_ux,0.7131498456001282 +illusion_1L,ppo,335,100.5,velocity,lower_uy,-0.21945597231388092 +illusion_1L,ppo,336,100.8,velocity,upper_ux,1.369826316833496 +illusion_1L,ppo,336,100.8,velocity,upper_uy,-0.3860549032688141 +illusion_1L,ppo,336,100.8,velocity,center_ux,0.9437060356140137 +illusion_1L,ppo,336,100.8,velocity,center_uy,-0.3892483115196228 +illusion_1L,ppo,336,100.8,velocity,lower_ux,0.671653687953949 +illusion_1L,ppo,336,100.8,velocity,lower_uy,-0.08927606791257858 +illusion_1L,ppo,337,101.1,velocity,upper_ux,1.4034733772277832 +illusion_1L,ppo,337,101.1,velocity,upper_uy,-0.2768625319004059 +illusion_1L,ppo,337,101.1,velocity,center_ux,0.904863178730011 +illusion_1L,ppo,337,101.1,velocity,center_uy,-0.07949146628379822 +illusion_1L,ppo,337,101.1,velocity,lower_ux,0.6627339720726013 +illusion_1L,ppo,337,101.1,velocity,lower_uy,0.05224285274744034 +illusion_1L,ppo,338,101.4,velocity,upper_ux,1.3458927869796753 +illusion_1L,ppo,338,101.4,velocity,upper_uy,-0.056520454585552216 +illusion_1L,ppo,338,101.4,velocity,center_ux,0.8882808685302734 +illusion_1L,ppo,338,101.4,velocity,center_uy,0.2519259750843048 +illusion_1L,ppo,338,101.4,velocity,lower_ux,0.6959508061408997 +illusion_1L,ppo,338,101.4,velocity,lower_uy,0.16617709398269653 +illusion_1L,ppo,339,101.7,velocity,upper_ux,1.2324213981628418 +illusion_1L,ppo,339,101.7,velocity,upper_uy,0.17538829147815704 +illusion_1L,ppo,339,101.7,velocity,center_ux,0.8953913450241089 +illusion_1L,ppo,339,101.7,velocity,center_uy,0.4983929991722107 +illusion_1L,ppo,339,101.7,velocity,lower_ux,0.7609022259712219 +illusion_1L,ppo,339,101.7,velocity,lower_uy,0.23271913826465607 +illusion_1L,ppo,340,102.0,velocity,upper_ux,1.1300950050354004 +illusion_1L,ppo,340,102.0,velocity,upper_uy,0.31584063172340393 +illusion_1L,ppo,340,102.0,velocity,center_ux,0.9180931448936462 +illusion_1L,ppo,340,102.0,velocity,center_uy,0.5943604111671448 +illusion_1L,ppo,340,102.0,velocity,lower_ux,0.8320367336273193 +illusion_1L,ppo,340,102.0,velocity,lower_uy,0.27166107296943665 +illusion_1L,ppo,341,102.3,velocity,upper_ux,1.0577939748764038 +illusion_1L,ppo,341,102.3,velocity,upper_uy,0.3665775656700134 +illusion_1L,ppo,341,102.3,velocity,center_ux,0.9449520111083984 +illusion_1L,ppo,341,102.3,velocity,center_uy,0.5887147784233093 +illusion_1L,ppo,341,102.3,velocity,lower_ux,0.8963305950164795 +illusion_1L,ppo,341,102.3,velocity,lower_uy,0.30312860012054443 +illusion_1L,ppo,342,102.6,velocity,upper_ux,1.0048824548721313 +illusion_1L,ppo,342,102.6,velocity,upper_uy,0.3769161105155945 +illusion_1L,ppo,342,102.6,velocity,center_ux,0.9675800800323486 +illusion_1L,ppo,342,102.6,velocity,center_uy,0.5720444917678833 +illusion_1L,ppo,342,102.6,velocity,lower_ux,0.9546172022819519 +illusion_1L,ppo,342,102.6,velocity,lower_uy,0.3299463391304016 +illusion_1L,ppo,343,102.9,velocity,upper_ux,0.9573561549186707 +illusion_1L,ppo,343,102.9,velocity,upper_uy,0.37927156686782837 +illusion_1L,ppo,343,102.9,velocity,center_ux,0.9847903251647949 +illusion_1L,ppo,343,102.9,velocity,center_uy,0.5728625655174255 +illusion_1L,ppo,343,102.9,velocity,lower_ux,1.0095282793045044 +illusion_1L,ppo,343,102.9,velocity,lower_uy,0.35274842381477356 +illusion_1L,ppo,344,103.2,velocity,upper_ux,0.9078753590583801 +illusion_1L,ppo,344,103.2,velocity,upper_uy,0.37930554151535034 +illusion_1L,ppo,344,103.2,velocity,center_ux,0.9979816675186157 +illusion_1L,ppo,344,103.2,velocity,center_uy,0.5891546607017517 +illusion_1L,ppo,344,103.2,velocity,lower_ux,1.0634472370147705 +illusion_1L,ppo,344,103.2,velocity,lower_uy,0.3730243444442749 +illusion_1L,ppo,345,103.5,velocity,upper_ux,0.8537809252738953 +illusion_1L,ppo,345,103.5,velocity,upper_uy,0.37016892433166504 +illusion_1L,ppo,345,103.5,velocity,center_ux,1.006965160369873 +illusion_1L,ppo,345,103.5,velocity,center_uy,0.6170525550842285 +illusion_1L,ppo,345,103.5,velocity,lower_ux,1.1190390586853027 +illusion_1L,ppo,345,103.5,velocity,lower_uy,0.3917083442211151 +illusion_1L,ppo,346,103.8,velocity,upper_ux,0.7950084209442139 +illusion_1L,ppo,346,103.8,velocity,upper_uy,0.3403497636318207 +illusion_1L,ppo,346,103.8,velocity,center_ux,1.0078153610229492 +illusion_1L,ppo,346,103.8,velocity,center_uy,0.6462202072143555 +illusion_1L,ppo,346,103.8,velocity,lower_ux,1.1794581413269043 +illusion_1L,ppo,346,103.8,velocity,lower_uy,0.40880823135375977 +illusion_1L,ppo,347,104.1,velocity,upper_ux,0.7352758049964905 +illusion_1L,ppo,347,104.1,velocity,upper_uy,0.2777751386165619 +illusion_1L,ppo,347,104.1,velocity,center_ux,0.9914005398750305 +illusion_1L,ppo,347,104.1,velocity,center_uy,0.6431881785392761 +illusion_1L,ppo,347,104.1,velocity,lower_ux,1.2483642101287842 +illusion_1L,ppo,347,104.1,velocity,lower_uy,0.4226580858230591 +illusion_1L,ppo,348,104.4,velocity,upper_ux,0.6835887432098389 +illusion_1L,ppo,348,104.4,velocity,upper_uy,0.17678292095661163 +illusion_1L,ppo,348,104.4,velocity,center_ux,0.9511757493019104 +illusion_1L,ppo,348,104.4,velocity,center_uy,0.5450313091278076 +illusion_1L,ppo,348,104.4,velocity,lower_ux,1.3272736072540283 +illusion_1L,ppo,348,104.4,velocity,lower_uy,0.42500290274620056 +illusion_1L,ppo,349,104.7,velocity,upper_ux,0.6534136533737183 +illusion_1L,ppo,349,104.7,velocity,upper_uy,0.046631526201963425 +illusion_1L,ppo,349,104.7,velocity,center_ux,0.90004962682724 +illusion_1L,ppo,349,104.7,velocity,center_uy,0.31085145473480225 +illusion_1L,ppo,349,104.7,velocity,lower_ux,1.3985272645950317 +illusion_1L,ppo,349,104.7,velocity,lower_uy,0.38039129972457886 +illusion_1L,ppo,350,105.0,velocity,upper_ux,0.6588350534439087 +illusion_1L,ppo,350,105.0,velocity,upper_uy,-0.08436019718647003 +illusion_1L,ppo,350,105.0,velocity,center_ux,0.8642759323120117 +illusion_1L,ppo,350,105.0,velocity,center_uy,-0.01641797460615635 +illusion_1L,ppo,350,105.0,velocity,lower_ux,1.404038429260254 +illusion_1L,ppo,350,105.0,velocity,lower_uy,0.21839159727096558 +illusion_1L,ppo,351,105.3,velocity,upper_ux,0.7046600580215454 +illusion_1L,ppo,351,105.3,velocity,upper_uy,-0.18124771118164062 +illusion_1L,ppo,351,105.3,velocity,center_ux,0.8571793437004089 +illusion_1L,ppo,351,105.3,velocity,center_uy,-0.3380354344844818 +illusion_1L,ppo,351,105.3,velocity,lower_ux,1.3184638023376465 +illusion_1L,ppo,351,105.3,velocity,lower_uy,-0.043937813490629196 +illusion_1L,ppo,352,105.6,velocity,upper_ux,0.7744357585906982 +illusion_1L,ppo,352,105.6,velocity,upper_uy,-0.23702369630336761 +illusion_1L,ppo,352,105.6,velocity,center_ux,0.8748583793640137 +illusion_1L,ppo,352,105.6,velocity,center_uy,-0.5541903972625732 +illusion_1L,ppo,352,105.6,velocity,lower_ux,1.2070330381393433 +illusion_1L,ppo,352,105.6,velocity,lower_uy,-0.2649076282978058 +illusion_1L,ppo,353,105.9,velocity,upper_ux,0.8446531891822815 +illusion_1L,ppo,353,105.9,velocity,upper_uy,-0.27476873993873596 +illusion_1L,ppo,353,105.9,velocity,center_ux,0.906204104423523 +illusion_1L,ppo,353,105.9,velocity,center_uy,-0.6201126575469971 +illusion_1L,ppo,353,105.9,velocity,lower_ux,1.1178854703903198 +illusion_1L,ppo,353,105.9,velocity,lower_uy,-0.3727826774120331 +illusion_1L,ppo,354,106.2,velocity,upper_ux,0.9080278277397156 +illusion_1L,ppo,354,106.2,velocity,upper_uy,-0.3072807490825653 +illusion_1L,ppo,354,106.2,velocity,center_ux,0.938467800617218 +illusion_1L,ppo,354,106.2,velocity,center_uy,-0.6043912172317505 +illusion_1L,ppo,354,106.2,velocity,lower_ux,1.0540119409561157 +illusion_1L,ppo,354,106.2,velocity,lower_uy,-0.40043339133262634 +illusion_1L,ppo,355,106.5,velocity,upper_ux,0.9667648077011108 +illusion_1L,ppo,355,106.5,velocity,upper_uy,-0.3347834646701813 +illusion_1L,ppo,355,106.5,velocity,center_ux,0.9641895294189453 +illusion_1L,ppo,355,106.5,velocity,center_uy,-0.5897524952888489 +illusion_1L,ppo,355,106.5,velocity,lower_ux,1.003015160560608 +illusion_1L,ppo,355,106.5,velocity,lower_uy,-0.4013236463069916 +illusion_1L,ppo,356,106.8,velocity,upper_ux,1.0231826305389404 +illusion_1L,ppo,356,106.8,velocity,upper_uy,-0.358092725276947 +illusion_1L,ppo,356,106.8,velocity,center_ux,0.9835115671157837 +illusion_1L,ppo,356,106.8,velocity,center_uy,-0.5941357016563416 +illusion_1L,ppo,356,106.8,velocity,lower_ux,0.9538395404815674 +illusion_1L,ppo,356,106.8,velocity,lower_uy,-0.3994310796260834 +illusion_1L,ppo,357,107.1,velocity,upper_ux,1.0795220136642456 +illusion_1L,ppo,357,107.1,velocity,upper_uy,-0.3785386085510254 +illusion_1L,ppo,357,107.1,velocity,center_ux,0.9979852437973022 +illusion_1L,ppo,357,107.1,velocity,center_uy,-0.6139635443687439 +illusion_1L,ppo,357,107.1,velocity,lower_ux,0.9011987447738647 +illusion_1L,ppo,357,107.1,velocity,lower_uy,-0.3943951725959778 +illusion_1L,ppo,358,107.4,velocity,upper_ux,1.1385151147842407 +illusion_1L,ppo,358,107.4,velocity,upper_uy,-0.3966468274593353 +illusion_1L,ppo,358,107.4,velocity,center_ux,1.0067914724349976 +illusion_1L,ppo,358,107.4,velocity,center_uy,-0.643363356590271 +illusion_1L,ppo,358,107.4,velocity,lower_ux,0.8431867957115173 +illusion_1L,ppo,358,107.4,velocity,lower_uy,-0.37666770815849304 +illusion_1L,ppo,359,107.7,velocity,upper_ux,1.2034873962402344 +illusion_1L,ppo,359,107.7,velocity,upper_uy,-0.4116734564304352 +illusion_1L,ppo,359,107.7,velocity,center_ux,1.0045310258865356 +illusion_1L,ppo,359,107.7,velocity,center_uy,-0.6628267765045166 +illusion_1L,ppo,359,107.7,velocity,lower_ux,0.780985951423645 +illusion_1L,ppo,359,107.7,velocity,lower_uy,-0.33316102623939514 +illusion_1L,ppo,360,108.0,velocity,upper_ux,1.2775052785873413 +illusion_1L,ppo,360,108.0,velocity,upper_uy,-0.41972458362579346 +illusion_1L,ppo,360,108.0,velocity,center_ux,0.9824472069740295 +illusion_1L,ppo,360,108.0,velocity,center_uy,-0.62147456407547 +illusion_1L,ppo,360,108.0,velocity,lower_ux,0.7207105159759521 +illusion_1L,ppo,360,108.0,velocity,lower_uy,-0.25233474373817444 +illusion_1L,ppo,361,108.3,velocity,upper_ux,1.3557811975479126 +illusion_1L,ppo,361,108.3,velocity,upper_uy,-0.40378108620643616 +illusion_1L,ppo,361,108.3,velocity,center_ux,0.9417078495025635 +illusion_1L,ppo,361,108.3,velocity,center_uy,-0.4572632908821106 +illusion_1L,ppo,361,108.3,velocity,lower_ux,0.6738701462745667 +illusion_1L,ppo,361,108.3,velocity,lower_uy,-0.13291549682617188 +illusion_1L,ppo,362,108.6,velocity,upper_ux,1.4023211002349854 +illusion_1L,ppo,362,108.6,velocity,upper_uy,-0.31242847442626953 +illusion_1L,ppo,362,108.6,velocity,center_ux,0.9016091823577881 +illusion_1L,ppo,362,108.6,velocity,center_uy,-0.16926483809947968 +illusion_1L,ppo,362,108.6,velocity,lower_ux,0.6548306345939636 +illusion_1L,ppo,362,108.6,velocity,lower_uy,0.008025476709008217 +illusion_1L,ppo,363,108.9,velocity,upper_ux,1.363155484199524 +illusion_1L,ppo,363,108.9,velocity,upper_uy,-0.10381507873535156 +illusion_1L,ppo,363,108.9,velocity,center_ux,0.880894660949707 +illusion_1L,ppo,363,108.9,velocity,center_uy,0.16747374832630157 +illusion_1L,ppo,363,108.9,velocity,lower_ux,0.6754602193832397 +illusion_1L,ppo,363,108.9,velocity,lower_uy,0.13512307405471802 +illusion_1L,ppo,364,109.2,velocity,upper_ux,1.2593754529953003 +illusion_1L,ppo,364,109.2,velocity,upper_uy,0.13883744180202484 +illusion_1L,ppo,364,109.2,velocity,center_ux,0.8838079571723938 +illusion_1L,ppo,364,109.2,velocity,center_uy,0.450084388256073 +illusion_1L,ppo,364,109.2,velocity,lower_ux,0.7332775592803955 +illusion_1L,ppo,364,109.2,velocity,lower_uy,0.21760760247707367 +illusion_1L,ppo,365,109.5,velocity,upper_ux,1.156592607498169 +illusion_1L,ppo,365,109.5,velocity,upper_uy,0.30074918270111084 +illusion_1L,ppo,365,109.5,velocity,center_ux,0.9039037823677063 +illusion_1L,ppo,365,109.5,velocity,center_uy,0.5939609408378601 +illusion_1L,ppo,365,109.5,velocity,lower_ux,0.8056126832962036 +illusion_1L,ppo,365,109.5,velocity,lower_uy,0.26336032152175903 +illusion_1L,ppo,366,109.8,velocity,upper_ux,1.079198956489563 +illusion_1L,ppo,366,109.8,velocity,upper_uy,0.36641037464141846 +illusion_1L,ppo,366,109.8,velocity,center_ux,0.9306584596633911 +illusion_1L,ppo,366,109.8,velocity,center_uy,0.6093913316726685 +illusion_1L,ppo,366,109.8,velocity,lower_ux,0.873395562171936 +illusion_1L,ppo,366,109.8,velocity,lower_uy,0.29743996262550354 +illusion_1L,ppo,367,110.1,velocity,upper_ux,1.021911382675171 +illusion_1L,ppo,367,110.1,velocity,upper_uy,0.3810495436191559 +illusion_1L,ppo,367,110.1,velocity,center_ux,0.954698920249939 +illusion_1L,ppo,367,110.1,velocity,center_uy,0.5894943475723267 +illusion_1L,ppo,367,110.1,velocity,lower_ux,0.9346181154251099 +illusion_1L,ppo,367,110.1,velocity,lower_uy,0.32703322172164917 +illusion_1L,ppo,368,110.4,velocity,upper_ux,0.9723843336105347 +illusion_1L,ppo,368,110.4,velocity,upper_uy,0.3829738199710846 +illusion_1L,ppo,368,110.4,velocity,center_ux,0.9728812575340271 +illusion_1L,ppo,368,110.4,velocity,center_uy,0.5846425890922546 +illusion_1L,ppo,368,110.4,velocity,lower_ux,0.9921661615371704 +illusion_1L,ppo,368,110.4,velocity,lower_uy,0.3523246943950653 +illusion_1L,ppo,369,110.7,velocity,upper_ux,0.9224168062210083 +illusion_1L,ppo,369,110.7,velocity,upper_uy,0.38289251923561096 +illusion_1L,ppo,369,110.7,velocity,center_ux,0.986129879951477 +illusion_1L,ppo,369,110.7,velocity,center_uy,0.597388505935669 +illusion_1L,ppo,369,110.7,velocity,lower_ux,1.0484511852264404 +illusion_1L,ppo,369,110.7,velocity,lower_uy,0.3746999502182007 +illusion_1L,ppo,370,111.0,velocity,upper_ux,0.8684386014938354 +illusion_1L,ppo,370,111.0,velocity,upper_uy,0.3760698735713959 +illusion_1L,ppo,370,111.0,velocity,center_ux,0.994473397731781 +illusion_1L,ppo,370,111.0,velocity,center_uy,0.6237586736679077 +illusion_1L,ppo,370,111.0,velocity,lower_ux,1.1060140132904053 +illusion_1L,ppo,370,111.0,velocity,lower_uy,0.3953095078468323 +illusion_1L,ppo,371,111.3,velocity,upper_ux,0.809576690196991 +illusion_1L,ppo,371,111.3,velocity,upper_uy,0.35196080803871155 +illusion_1L,ppo,371,111.3,velocity,center_ux,0.9946661591529846 +illusion_1L,ppo,371,111.3,velocity,center_uy,0.6550363302230835 +illusion_1L,ppo,371,111.3,velocity,lower_ux,1.168038010597229 +illusion_1L,ppo,371,111.3,velocity,lower_uy,0.4143829941749573 +illusion_1L,ppo,372,111.6,velocity,upper_ux,0.7485784292221069 +illusion_1L,ppo,372,111.6,velocity,upper_uy,0.29813945293426514 +illusion_1L,ppo,372,111.6,velocity,center_ux,0.9786529541015625 +illusion_1L,ppo,372,111.6,velocity,center_uy,0.6612415909767151 +illusion_1L,ppo,372,111.6,velocity,lower_ux,1.2385445833206177 +illusion_1L,ppo,372,111.6,velocity,lower_uy,0.4304269552230835 +illusion_1L,ppo,373,111.9,velocity,upper_ux,0.6934740543365479 +illusion_1L,ppo,373,111.9,velocity,upper_uy,0.20643016695976257 +illusion_1L,ppo,373,111.9,velocity,center_ux,0.9400313496589661 +illusion_1L,ppo,373,111.9,velocity,center_uy,0.5801351070404053 +illusion_1L,ppo,373,111.9,velocity,lower_ux,1.3197897672653198 +illusion_1L,ppo,373,111.9,velocity,lower_uy,0.4351891577243805 +illusion_1L,ppo,374,112.2,velocity,upper_ux,0.6569889783859253 +illusion_1L,ppo,374,112.2,velocity,upper_uy,0.0815112516283989 +illusion_1L,ppo,374,112.2,velocity,center_ux,0.8905405402183533 +illusion_1L,ppo,374,112.2,velocity,center_uy,0.3624653220176697 +illusion_1L,ppo,374,112.2,velocity,lower_ux,1.3948222398757935 +illusion_1L,ppo,374,112.2,velocity,lower_uy,0.3916328251361847 +illusion_1L,ppo,375,112.5,velocity,upper_ux,0.6532660126686096 +illusion_1L,ppo,375,112.5,velocity,upper_uy,-0.053358133882284164 +illusion_1L,ppo,375,112.5,velocity,center_ux,0.8560506105422974 +illusion_1L,ppo,375,112.5,velocity,center_uy,0.04035669192671776 +illusion_1L,ppo,375,112.5,velocity,lower_ux,1.4063403606414795 +illusion_1L,ppo,375,112.5,velocity,lower_uy,0.22662986814975739 +illusion_1L,ppo,376,112.8,velocity,upper_ux,0.6904113292694092 +illusion_1L,ppo,376,112.8,velocity,upper_uy,-0.16253167390823364 +illusion_1L,ppo,376,112.8,velocity,center_ux,0.8503173589706421 +illusion_1L,ppo,376,112.8,velocity,center_uy,-0.2921378016471863 +illusion_1L,ppo,376,112.8,velocity,lower_ux,1.3316380977630615 +illusion_1L,ppo,376,112.8,velocity,lower_uy,-0.03824931010603905 +illusion_1L,ppo,377,113.1,velocity,upper_ux,0.7575893402099609 +illusion_1L,ppo,377,113.1,velocity,upper_uy,-0.2284056395292282 +illusion_1L,ppo,377,113.1,velocity,center_ux,0.8691108226776123 +illusion_1L,ppo,377,113.1,velocity,center_uy,-0.5360931754112244 +illusion_1L,ppo,377,113.1,velocity,lower_ux,1.2308157682418823 +illusion_1L,ppo,377,113.1,velocity,lower_uy,-0.26064223051071167 +illusion_1L,ppo,378,113.4,velocity,upper_ux,0.8302808403968811 +illusion_1L,ppo,378,113.4,velocity,upper_uy,-0.2693890929222107 +illusion_1L,ppo,378,113.4,velocity,center_ux,0.9011477828025818 +illusion_1L,ppo,378,113.4,velocity,center_uy,-0.6309896111488342 +illusion_1L,ppo,378,113.4,velocity,lower_ux,1.143869400024414 +illusion_1L,ppo,378,113.4,velocity,lower_uy,-0.37241801619529724 +illusion_1L,ppo,379,113.7,velocity,upper_ux,0.8964835405349731 +illusion_1L,ppo,379,113.7,velocity,upper_uy,-0.30335551500320435 +illusion_1L,ppo,379,113.7,velocity,center_ux,0.9345585107803345 +illusion_1L,ppo,379,113.7,velocity,center_uy,-0.6232641339302063 +illusion_1L,ppo,379,113.7,velocity,lower_ux,1.0759162902832031 +illusion_1L,ppo,379,113.7,velocity,lower_uy,-0.4035327136516571 +illusion_1L,ppo,380,114.0,velocity,upper_ux,0.9574307203292847 +illusion_1L,ppo,380,114.0,velocity,upper_uy,-0.3321639895439148 +illusion_1L,ppo,380,114.0,velocity,center_ux,0.9616702198982239 +illusion_1L,ppo,380,114.0,velocity,center_uy,-0.6048204302787781 +illusion_1L,ppo,380,114.0,velocity,lower_ux,1.0197639465332031 +illusion_1L,ppo,380,114.0,velocity,lower_uy,-0.4058014154434204 +illusion_1L,ppo,381,114.3,velocity,upper_ux,1.0158854722976685 +illusion_1L,ppo,381,114.3,velocity,upper_uy,-0.35625120997428894 +illusion_1L,ppo,381,114.3,velocity,center_ux,0.9820598363876343 +illusion_1L,ppo,381,114.3,velocity,center_uy,-0.6057546734809875 +illusion_1L,ppo,381,114.3,velocity,lower_ux,0.966611921787262 +illusion_1L,ppo,381,114.3,velocity,lower_uy,-0.40435299277305603 +illusion_1L,ppo,382,114.6,velocity,upper_ux,1.0743461847305298 +illusion_1L,ppo,382,114.6,velocity,upper_uy,-0.376936137676239 +illusion_1L,ppo,382,114.6,velocity,center_ux,0.997523307800293 +illusion_1L,ppo,382,114.6,velocity,center_uy,-0.6237291097640991 +illusion_1L,ppo,382,114.6,velocity,lower_ux,0.9112383127212524 +illusion_1L,ppo,382,114.6,velocity,lower_uy,-0.39981111884117126 +illusion_1L,ppo,383,114.9,velocity,upper_ux,1.1356135606765747 +illusion_1L,ppo,383,114.9,velocity,upper_uy,-0.39473769068717957 +illusion_1L,ppo,383,114.9,velocity,center_ux,1.0074712038040161 +illusion_1L,ppo,383,114.9,velocity,center_uy,-0.6524782776832581 +illusion_1L,ppo,383,114.9,velocity,lower_ux,0.8512684106826782 +illusion_1L,ppo,383,114.9,velocity,lower_uy,-0.38275793194770813 +illusion_1L,ppo,384,115.2,velocity,upper_ux,1.2029006481170654 +illusion_1L,ppo,384,115.2,velocity,upper_uy,-0.4087909460067749 +illusion_1L,ppo,384,115.2,velocity,center_ux,1.0064184665679932 +illusion_1L,ppo,384,115.2,velocity,center_uy,-0.6717924475669861 +illusion_1L,ppo,384,115.2,velocity,lower_ux,0.7873929738998413 +illusion_1L,ppo,384,115.2,velocity,lower_uy,-0.33973950147628784 +illusion_1L,ppo,385,115.5,velocity,upper_ux,1.2789726257324219 +illusion_1L,ppo,385,115.5,velocity,upper_uy,-0.41473305225372314 +illusion_1L,ppo,385,115.5,velocity,center_ux,0.9855340719223022 +illusion_1L,ppo,385,115.5,velocity,center_uy,-0.6283172965049744 +illusion_1L,ppo,385,115.5,velocity,lower_ux,0.725466787815094 +illusion_1L,ppo,385,115.5,velocity,lower_uy,-0.25861161947250366 +illusion_1L,ppo,386,115.8,velocity,upper_ux,1.3579953908920288 +illusion_1L,ppo,386,115.8,velocity,upper_uy,-0.39431294798851013 +illusion_1L,ppo,386,115.8,velocity,center_ux,0.9467262625694275 +illusion_1L,ppo,386,115.8,velocity,center_uy,-0.4577181041240692 +illusion_1L,ppo,386,115.8,velocity,lower_ux,0.6771115064620972 +illusion_1L,ppo,386,115.8,velocity,lower_uy,-0.13775329291820526 +illusion_1L,ppo,387,116.1,velocity,upper_ux,1.4019815921783447 +illusion_1L,ppo,387,116.1,velocity,upper_uy,-0.29601502418518066 +illusion_1L,ppo,387,116.1,velocity,center_ux,0.9099787473678589 +illusion_1L,ppo,387,116.1,velocity,center_uy,-0.16206170618534088 +illusion_1L,ppo,387,116.1,velocity,lower_ux,0.6569499969482422 +illusion_1L,ppo,387,116.1,velocity,lower_uy,0.005563643760979176 +illusion_1L,ppo,388,116.4,velocity,upper_ux,1.3595519065856934 +illusion_1L,ppo,388,116.4,velocity,upper_uy,-0.08687126636505127 +illusion_1L,ppo,388,116.4,velocity,center_ux,0.8929120898246765 +illusion_1L,ppo,388,116.4,velocity,center_uy,0.17786628007888794 +illusion_1L,ppo,388,116.4,velocity,lower_ux,0.6768821477890015 +illusion_1L,ppo,388,116.4,velocity,lower_uy,0.13549470901489258 +illusion_1L,ppo,389,116.7,velocity,upper_ux,1.2570031881332397 +illusion_1L,ppo,389,116.7,velocity,upper_uy,0.14375688135623932 +illusion_1L,ppo,389,116.7,velocity,center_ux,0.8978673219680786 +illusion_1L,ppo,389,116.7,velocity,center_uy,0.4568791091442108 +illusion_1L,ppo,389,116.7,velocity,lower_ux,0.7344873547554016 +illusion_1L,ppo,389,116.7,velocity,lower_uy,0.2203620970249176 +illusion_1L,ppo,390,117.0,velocity,upper_ux,1.157204270362854 +illusion_1L,ppo,390,117.0,velocity,upper_uy,0.29252299666404724 +illusion_1L,ppo,390,117.0,velocity,center_ux,0.9173988699913025 +illusion_1L,ppo,390,117.0,velocity,center_uy,0.5939673781394958 +illusion_1L,ppo,390,117.0,velocity,lower_ux,0.8073068857192993 +illusion_1L,ppo,390,117.0,velocity,lower_uy,0.2669767439365387 +illusion_1L,ppo,391,117.3,velocity,upper_ux,1.081335425376892 +illusion_1L,ppo,391,117.3,velocity,upper_uy,0.3528752028942108 +illusion_1L,ppo,391,117.3,velocity,center_ux,0.9417976140975952 +illusion_1L,ppo,391,117.3,velocity,center_uy,0.6056975722312927 +illusion_1L,ppo,391,117.3,velocity,lower_ux,0.8759288787841797 +illusion_1L,ppo,391,117.3,velocity,lower_uy,0.3006467819213867 +illusion_1L,ppo,392,117.6,velocity,upper_ux,1.023892879486084 +illusion_1L,ppo,392,117.6,velocity,upper_uy,0.3682597875595093 +illusion_1L,ppo,392,117.6,velocity,center_ux,0.9632154107093811 +illusion_1L,ppo,392,117.6,velocity,center_uy,0.5853341221809387 +illusion_1L,ppo,392,117.6,velocity,lower_ux,0.9377334713935852 +illusion_1L,ppo,392,117.6,velocity,lower_uy,0.32950159907341003 +illusion_1L,ppo,393,117.9,velocity,upper_ux,0.9735281467437744 +illusion_1L,ppo,393,117.9,velocity,upper_uy,0.37216004729270935 +illusion_1L,ppo,393,117.9,velocity,center_ux,0.9790748357772827 +illusion_1L,ppo,393,117.9,velocity,center_uy,0.5805667042732239 +illusion_1L,ppo,393,117.9,velocity,lower_ux,0.9953762888908386 +illusion_1L,ppo,393,117.9,velocity,lower_uy,0.35416606068611145 +illusion_1L,ppo,394,118.2,velocity,upper_ux,0.9227214455604553 +illusion_1L,ppo,394,118.2,velocity,upper_uy,0.37328657507896423 +illusion_1L,ppo,394,118.2,velocity,center_ux,0.9902017116546631 +illusion_1L,ppo,394,118.2,velocity,center_uy,0.5934742093086243 +illusion_1L,ppo,394,118.2,velocity,lower_ux,1.0513839721679688 +illusion_1L,ppo,394,118.2,velocity,lower_uy,0.3761236369609833 +illusion_1L,ppo,395,118.5,velocity,upper_ux,0.868116557598114 +illusion_1L,ppo,395,118.5,velocity,upper_uy,0.36684930324554443 +illusion_1L,ppo,395,118.5,velocity,center_ux,0.9965579509735107 +illusion_1L,ppo,395,118.5,velocity,center_uy,0.6199995279312134 +illusion_1L,ppo,395,118.5,velocity,lower_ux,1.1085702180862427 +illusion_1L,ppo,395,118.5,velocity,lower_uy,0.3965457081794739 +illusion_1L,ppo,396,118.8,velocity,upper_ux,0.8090189099311829 +illusion_1L,ppo,396,118.8,velocity,upper_uy,0.34260237216949463 +illusion_1L,ppo,396,118.8,velocity,center_ux,0.9948104023933411 +illusion_1L,ppo,396,118.8,velocity,center_uy,0.6510217189788818 +illusion_1L,ppo,396,118.8,velocity,lower_ux,1.1704262495040894 +illusion_1L,ppo,396,118.8,velocity,lower_uy,0.4156643748283386 +illusion_1L,ppo,397,119.1,velocity,upper_ux,0.7483853101730347 +illusion_1L,ppo,397,119.1,velocity,upper_uy,0.28852957487106323 +illusion_1L,ppo,397,119.1,velocity,center_ux,0.9767453074455261 +illusion_1L,ppo,397,119.1,velocity,center_uy,0.6560121774673462 +illusion_1L,ppo,397,119.1,velocity,lower_ux,1.2412009239196777 +illusion_1L,ppo,397,119.1,velocity,lower_uy,0.4319571554660797 +illusion_1L,ppo,398,119.4,velocity,upper_ux,0.6943252682685852 +illusion_1L,ppo,398,119.4,velocity,upper_uy,0.1970583200454712 +illusion_1L,ppo,398,119.4,velocity,center_ux,0.9360541701316833 +illusion_1L,ppo,398,119.4,velocity,center_uy,0.5727280974388123 +illusion_1L,ppo,398,119.4,velocity,lower_ux,1.3230873346328735 +illusion_1L,ppo,398,119.4,velocity,lower_uy,0.43679922819137573 +illusion_1L,ppo,399,119.7,velocity,upper_ux,0.6594624519348145 +illusion_1L,ppo,399,119.7,velocity,upper_uy,0.07357368618249893 +illusion_1L,ppo,399,119.7,velocity,center_ux,0.8849913477897644 +illusion_1L,ppo,399,119.7,velocity,center_uy,0.35284554958343506 +illusion_1L,ppo,399,119.7,velocity,lower_ux,1.3979995250701904 +illusion_1L,ppo,399,119.7,velocity,lower_uy,0.3912758231163025 +illusion_1L,ppo,0,0.0,force,front_fx,0.0018354944186285138 +illusion_1L,ppo,0,0.0,force,front_fy,-0.00014163956802804023 +illusion_1L,ppo,0,0.0,force,upper_fx,0.0012975177960470319 +illusion_1L,ppo,0,0.0,force,upper_fy,0.0026755118742585182 +illusion_1L,ppo,0,0.0,force,lower_fx,0.00149956822860986 +illusion_1L,ppo,0,0.0,force,lower_fy,-0.0030051087960600853 +illusion_1L,ppo,1,0.3,force,front_fx,0.001849331078119576 +illusion_1L,ppo,1,0.3,force,front_fy,-0.0002483846037648618 +illusion_1L,ppo,1,0.3,force,upper_fx,0.0013760090805590153 +illusion_1L,ppo,1,0.3,force,upper_fy,0.0025020097382366657 +illusion_1L,ppo,1,0.3,force,lower_fx,0.0017225123010575771 +illusion_1L,ppo,1,0.3,force,lower_fy,-0.002692776033654809 +illusion_1L,ppo,2,0.6,force,front_fx,0.0018572324188426137 +illusion_1L,ppo,2,0.6,force,front_fy,-0.00029840978095307946 +illusion_1L,ppo,2,0.6,force,upper_fx,0.0013768336502835155 +illusion_1L,ppo,2,0.6,force,upper_fy,0.0024749129079282284 +illusion_1L,ppo,2,0.6,force,lower_fx,0.0019250366603955626 +illusion_1L,ppo,2,0.6,force,lower_fy,-0.002384850289672613 +illusion_1L,ppo,3,0.9,force,front_fx,0.0018657654291018844 +illusion_1L,ppo,3,0.9,force,front_fy,-0.0003141553606837988 +illusion_1L,ppo,3,0.9,force,upper_fx,0.0013411134714260697 +illusion_1L,ppo,3,0.9,force,upper_fy,0.0025724833831191063 +illusion_1L,ppo,3,0.9,force,lower_fx,0.0020628501661121845 +illusion_1L,ppo,3,0.9,force,lower_fy,-0.0021157735027372837 +illusion_1L,ppo,4,1.2,force,front_fx,0.0018692567246034741 +illusion_1L,ppo,4,1.2,force,front_fy,-0.00029028559220023453 +illusion_1L,ppo,4,1.2,force,upper_fx,0.0013219329994171858 +illusion_1L,ppo,4,1.2,force,upper_fy,0.002760856645181775 +illusion_1L,ppo,4,1.2,force,lower_fx,0.0021234790328890085 +illusion_1L,ppo,4,1.2,force,lower_fy,-0.001914801774546504 +illusion_1L,ppo,5,1.5,force,front_fx,0.0018663473892956972 +illusion_1L,ppo,5,1.5,force,front_fy,-0.0002418103103991598 +illusion_1L,ppo,5,1.5,force,upper_fx,0.0013382340548560023 +illusion_1L,ppo,5,1.5,force,upper_fy,0.0029739385936409235 +illusion_1L,ppo,5,1.5,force,lower_fx,0.0021034732926636934 +illusion_1L,ppo,5,1.5,force,lower_fy,-0.0018145388457924128 +illusion_1L,ppo,6,1.8,force,front_fx,0.001851552166044712 +illusion_1L,ppo,6,1.8,force,front_fy,-0.00018074331455864012 +illusion_1L,ppo,6,1.8,force,upper_fx,0.0013657016679644585 +illusion_1L,ppo,6,1.8,force,upper_fy,0.0031478283926844597 +illusion_1L,ppo,6,1.8,force,lower_fx,0.0020181720610708 +illusion_1L,ppo,6,1.8,force,lower_fy,-0.0018144123023375869 +illusion_1L,ppo,7,2.1,force,front_fx,0.001838819938711822 +illusion_1L,ppo,7,2.1,force,front_fy,-0.00011837229249067605 +illusion_1L,ppo,7,2.1,force,upper_fx,0.0013951754663139582 +illusion_1L,ppo,7,2.1,force,upper_fy,0.003252993570640683 +illusion_1L,ppo,7,2.1,force,lower_fx,0.0019125028047710657 +illusion_1L,ppo,7,2.1,force,lower_fy,-0.0018594292923808098 +illusion_1L,ppo,8,2.4,force,front_fx,0.001832657027989626 +illusion_1L,ppo,8,2.4,force,front_fy,-6.566700176335871e-05 +illusion_1L,ppo,8,2.4,force,upper_fx,0.0014267594087868929 +illusion_1L,ppo,8,2.4,force,upper_fy,0.0032959298696368933 +illusion_1L,ppo,8,2.4,force,lower_fx,0.0018211058340966702 +illusion_1L,ppo,8,2.4,force,lower_fy,-0.0018989572999998927 +illusion_1L,ppo,9,2.7,force,front_fx,0.0018319326918572187 +illusion_1L,ppo,9,2.7,force,front_fy,-4.4799671741202474e-05 +illusion_1L,ppo,9,2.7,force,upper_fx,0.001454434241168201 +illusion_1L,ppo,9,2.7,force,upper_fy,0.003288513282313943 +illusion_1L,ppo,9,2.7,force,lower_fx,0.0017518647946417332 +illusion_1L,ppo,9,2.7,force,lower_fy,-0.0019116586772724986 +illusion_1L,ppo,10,3.0,force,front_fx,0.001840498996898532 +illusion_1L,ppo,10,3.0,force,front_fy,-6.866566400276497e-05 +illusion_1L,ppo,10,3.0,force,upper_fx,0.0014722064370289445 +illusion_1L,ppo,10,3.0,force,upper_fy,0.0032489350996911526 +illusion_1L,ppo,10,3.0,force,lower_fx,0.0017073994968086481 +illusion_1L,ppo,10,3.0,force,lower_fy,-0.0019022257765755057 +illusion_1L,ppo,11,3.3,force,front_fx,0.0018675329629331827 +illusion_1L,ppo,11,3.3,force,front_fy,-0.00013953585585113615 +illusion_1L,ppo,11,3.3,force,upper_fx,0.001476583885960281 +illusion_1L,ppo,11,3.3,force,upper_fy,0.003198356134817004 +illusion_1L,ppo,11,3.3,force,lower_fx,0.0016883232165127993 +illusion_1L,ppo,11,3.3,force,lower_fy,-0.0018980391323566437 +illusion_1L,ppo,12,3.6,force,front_fx,0.0019122249213978648 +illusion_1L,ppo,12,3.6,force,front_fy,-0.0002450167085044086 +illusion_1L,ppo,12,3.6,force,upper_fx,0.0014640645822510123 +illusion_1L,ppo,12,3.6,force,upper_fy,0.0031483606435358524 +illusion_1L,ppo,12,3.6,force,lower_fx,0.0016883831704035401 +illusion_1L,ppo,12,3.6,force,lower_fy,-0.0019365723710507154 +illusion_1L,ppo,13,3.9,force,front_fx,0.001954535720869899 +illusion_1L,ppo,13,3.9,force,front_fy,-0.00036185263888910413 +illusion_1L,ppo,13,3.9,force,upper_fx,0.0014215548289939761 +illusion_1L,ppo,13,3.9,force,upper_fy,0.0031080455519258976 +illusion_1L,ppo,13,3.9,force,lower_fx,0.0016967407427728176 +illusion_1L,ppo,13,3.9,force,lower_fy,-0.002041535684838891 +illusion_1L,ppo,14,4.2,force,front_fx,0.0019926028326153755 +illusion_1L,ppo,14,4.2,force,front_fy,-0.00045446588774211705 +illusion_1L,ppo,14,4.2,force,upper_fx,0.0013450123369693756 +illusion_1L,ppo,14,4.2,force,upper_fy,0.0030762276146560907 +illusion_1L,ppo,14,4.2,force,lower_fx,0.001717992010526359 +illusion_1L,ppo,14,4.2,force,lower_fy,-0.002208963967859745 +illusion_1L,ppo,15,4.5,force,front_fx,0.002026102039963007 +illusion_1L,ppo,15,4.5,force,front_fy,-0.0005330572603270411 +illusion_1L,ppo,15,4.5,force,upper_fx,0.0012463885359466076 +illusion_1L,ppo,15,4.5,force,upper_fy,0.003048120066523552 +illusion_1L,ppo,15,4.5,force,lower_fx,0.0017608978087082505 +illusion_1L,ppo,15,4.5,force,lower_fy,-0.002419262658804655 +illusion_1L,ppo,16,4.8,force,front_fx,0.002051789779216051 +illusion_1L,ppo,16,4.8,force,front_fy,-0.0006058579310774803 +illusion_1L,ppo,16,4.8,force,upper_fx,0.0011336987372487783 +illusion_1L,ppo,16,4.8,force,upper_fy,0.0030211191624403 +illusion_1L,ppo,16,4.8,force,lower_fx,0.0018222961807623506 +illusion_1L,ppo,16,4.8,force,lower_fy,-0.0026544840075075626 +illusion_1L,ppo,17,5.1,force,front_fx,0.0020661004818975925 +illusion_1L,ppo,17,5.1,force,front_fy,-0.0006697657518088818 +illusion_1L,ppo,17,5.1,force,upper_fx,0.001009455299936235 +illusion_1L,ppo,17,5.1,force,upper_fy,0.0029884115792810917 +illusion_1L,ppo,17,5.1,force,lower_fx,0.0018866838654503226 +illusion_1L,ppo,17,5.1,force,lower_fy,-0.002906504785642028 +illusion_1L,ppo,18,5.4,force,front_fx,0.002070168498903513 +illusion_1L,ppo,18,5.4,force,front_fy,-0.0007266292814165354 +illusion_1L,ppo,18,5.4,force,upper_fx,0.0008874382474459708 +illusion_1L,ppo,18,5.4,force,upper_fy,0.0029365092050284147 +illusion_1L,ppo,18,5.4,force,lower_fx,0.0019524150993674994 +illusion_1L,ppo,18,5.4,force,lower_fy,-0.0031600322108715773 +illusion_1L,ppo,19,5.7,force,front_fx,0.002065118169412017 +illusion_1L,ppo,19,5.7,force,front_fy,-0.0007707190816290677 +illusion_1L,ppo,19,5.7,force,upper_fx,0.0007893874426372349 +illusion_1L,ppo,19,5.7,force,upper_fy,0.002849266165867448 +illusion_1L,ppo,19,5.7,force,lower_fx,0.0020201511215418577 +illusion_1L,ppo,19,5.7,force,lower_fy,-0.0033878718968480825 +illusion_1L,ppo,20,6.0,force,front_fx,0.0020379729103296995 +illusion_1L,ppo,20,6.0,force,front_fy,-0.0007889300468377769 +illusion_1L,ppo,20,6.0,force,upper_fx,0.0007362977485172451 +illusion_1L,ppo,20,6.0,force,upper_fy,0.002715555252507329 +illusion_1L,ppo,20,6.0,force,lower_fx,0.002082756720483303 +illusion_1L,ppo,20,6.0,force,lower_fy,-0.0035580412950366735 +illusion_1L,ppo,21,6.3,force,front_fx,0.001990692224353552 +illusion_1L,ppo,21,6.3,force,front_fy,-0.0007781032472848892 +illusion_1L,ppo,21,6.3,force,upper_fx,0.0007425039657391608 +illusion_1L,ppo,21,6.3,force,upper_fy,0.0025419238954782486 +illusion_1L,ppo,21,6.3,force,lower_fx,0.0021374451462179422 +illusion_1L,ppo,21,6.3,force,lower_fy,-0.003630115883424878 +illusion_1L,ppo,22,6.6,force,front_fx,0.0019393723923712969 +illusion_1L,ppo,22,6.6,force,front_fy,-0.0007432555430568755 +illusion_1L,ppo,22,6.6,force,upper_fx,0.0008075692458078265 +illusion_1L,ppo,22,6.6,force,upper_fy,0.002357003977522254 +illusion_1L,ppo,22,6.6,force,lower_fx,0.0021935920231044292 +illusion_1L,ppo,22,6.6,force,lower_fy,-0.0035756949800997972 +illusion_1L,ppo,23,6.9,force,front_fx,0.001902565942145884 +illusion_1L,ppo,23,6.9,force,front_fy,-0.0007007956737652421 +illusion_1L,ppo,23,6.9,force,upper_fx,0.0009068516083061695 +illusion_1L,ppo,23,6.9,force,upper_fy,0.002204200252890587 +illusion_1L,ppo,23,6.9,force,lower_fx,0.0022592295426875353 +illusion_1L,ppo,23,6.9,force,lower_fy,-0.0033975529950112104 +illusion_1L,ppo,24,7.2,force,front_fx,0.0018773935735225677 +illusion_1L,ppo,24,7.2,force,front_fy,-0.0006593016441911459 +illusion_1L,ppo,24,7.2,force,upper_fx,0.0010140889789909124 +illusion_1L,ppo,24,7.2,force,upper_fy,0.002121844096109271 +illusion_1L,ppo,24,7.2,force,lower_fx,0.0023241632152348757 +illusion_1L,ppo,24,7.2,force,lower_fy,-0.00313766417093575 +illusion_1L,ppo,25,7.5,force,front_fx,0.0018600221956148744 +illusion_1L,ppo,25,7.5,force,front_fy,-0.000614882679656148 +illusion_1L,ppo,25,7.5,force,upper_fx,0.0011316367890685797 +illusion_1L,ppo,25,7.5,force,upper_fy,0.0021299077197909355 +illusion_1L,ppo,25,7.5,force,lower_fx,0.002367034088820219 +illusion_1L,ppo,25,7.5,force,lower_fy,-0.002866912866011262 +illusion_1L,ppo,26,7.8,force,front_fx,0.0018491157097741961 +illusion_1L,ppo,26,7.8,force,front_fy,-0.0005553464288823307 +illusion_1L,ppo,26,7.8,force,upper_fx,0.0012683807872235775 +illusion_1L,ppo,26,7.8,force,upper_fy,0.0022336922120302916 +illusion_1L,ppo,26,7.8,force,lower_fx,0.0023761142510920763 +illusion_1L,ppo,26,7.8,force,lower_fy,-0.002649314235895872 +illusion_1L,ppo,27,8.1,force,front_fx,0.0018407665193080902 +illusion_1L,ppo,27,8.1,force,front_fy,-0.000472003361210227 +illusion_1L,ppo,27,8.1,force,upper_fx,0.0014082746347412467 +illusion_1L,ppo,27,8.1,force,upper_fy,0.0024321512319147587 +illusion_1L,ppo,27,8.1,force,lower_fx,0.00235207611694932 +illusion_1L,ppo,27,8.1,force,lower_fy,-0.002508736914023757 +illusion_1L,ppo,28,8.4,force,front_fx,0.0018252438167110085 +illusion_1L,ppo,28,8.4,force,front_fy,-0.00036454235669225454 +illusion_1L,ppo,28,8.4,force,upper_fx,0.001524752238765359 +illusion_1L,ppo,28,8.4,force,upper_fy,0.0027105503249913454 +illusion_1L,ppo,28,8.4,force,lower_fx,0.0022948652040213346 +illusion_1L,ppo,28,8.4,force,lower_fy,-0.002427548635751009 +illusion_1L,ppo,29,8.7,force,front_fx,0.0018062295857816935 +illusion_1L,ppo,29,8.7,force,front_fy,-0.0002396561176283285 +illusion_1L,ppo,29,8.7,force,upper_fx,0.0016094936290755868 +illusion_1L,ppo,29,8.7,force,upper_fy,0.0030325823463499546 +illusion_1L,ppo,29,8.7,force,lower_fx,0.002204617252573371 +illusion_1L,ppo,29,8.7,force,lower_fy,-0.0023704178165644407 +illusion_1L,ppo,30,9.0,force,front_fx,0.0017944804858416319 +illusion_1L,ppo,30,9.0,force,front_fy,-0.00011360472853993997 +illusion_1L,ppo,30,9.0,force,upper_fx,0.0016741862054914236 +illusion_1L,ppo,30,9.0,force,upper_fy,0.0033475307282060385 +illusion_1L,ppo,30,9.0,force,lower_fx,0.0020826486870646477 +illusion_1L,ppo,30,9.0,force,lower_fy,-0.0023109563626348972 +illusion_1L,ppo,31,9.3,force,front_fx,0.0017919292440637946 +illusion_1L,ppo,31,9.3,force,front_fy,-3.0097892249614233e-06 +illusion_1L,ppo,31,9.3,force,upper_fx,0.0017313946736976504 +illusion_1L,ppo,31,9.3,force,upper_fy,0.0036039110273122787 +illusion_1L,ppo,31,9.3,force,lower_fx,0.0019346607150509953 +illusion_1L,ppo,31,9.3,force,lower_fy,-0.0022357692942023277 +illusion_1L,ppo,32,9.6,force,front_fx,0.0017998319817706943 +illusion_1L,ppo,32,9.6,force,front_fy,7.842032209737226e-05 +illusion_1L,ppo,32,9.6,force,upper_fx,0.0017892835894599557 +illusion_1L,ppo,32,9.6,force,upper_fy,0.0037694196216762066 +illusion_1L,ppo,32,9.6,force,lower_fx,0.0017815063474699855 +illusion_1L,ppo,32,9.6,force,lower_fy,-0.00213986705057323 +illusion_1L,ppo,33,9.9,force,front_fx,0.0018229599809274077 +illusion_1L,ppo,33,9.9,force,front_fy,0.00011000534141203389 +illusion_1L,ppo,33,9.9,force,upper_fx,0.0018500000005587935 +illusion_1L,ppo,33,9.9,force,upper_fy,0.0038384192157536745 +illusion_1L,ppo,33,9.9,force,lower_fx,0.0016561673255637288 +illusion_1L,ppo,33,9.9,force,lower_fy,-0.0020296729635447264 +illusion_1L,ppo,34,10.2,force,front_fx,0.0018650750862434506 +illusion_1L,ppo,34,10.2,force,front_fy,7.833944982849061e-05 +illusion_1L,ppo,34,10.2,force,upper_fx,0.0019032814307138324 +illusion_1L,ppo,34,10.2,force,upper_fy,0.0038300922606140375 +illusion_1L,ppo,34,10.2,force,lower_fx,0.0015827142633497715 +illusion_1L,ppo,34,10.2,force,lower_fy,-0.001920624403283 +illusion_1L,ppo,35,10.5,force,front_fx,0.0019181984243914485 +illusion_1L,ppo,35,10.5,force,front_fy,-9.125295036938041e-06 +illusion_1L,ppo,35,10.5,force,upper_fx,0.001927076024003327 +illusion_1L,ppo,35,10.5,force,upper_fy,0.0037636025808751583 +illusion_1L,ppo,35,10.5,force,lower_fx,0.0015578308375552297 +illusion_1L,ppo,35,10.5,force,lower_fy,-0.0018420590786263347 +illusion_1L,ppo,36,10.8,force,front_fx,0.001977571751922369 +illusion_1L,ppo,36,10.8,force,front_fy,-0.00012434422387741506 +illusion_1L,ppo,36,10.8,force,upper_fx,0.0019109062850475311 +illusion_1L,ppo,36,10.8,force,upper_fy,0.003653407096862793 +illusion_1L,ppo,36,10.8,force,lower_fx,0.0015759865054860711 +illusion_1L,ppo,36,10.8,force,lower_fy,-0.0018280623480677605 +illusion_1L,ppo,37,11.1,force,front_fx,0.0020355493761599064 +illusion_1L,ppo,37,11.1,force,front_fy,-0.00025192403700202703 +illusion_1L,ppo,37,11.1,force,upper_fx,0.0018512204987928271 +illusion_1L,ppo,37,11.1,force,upper_fy,0.003532897215336561 +illusion_1L,ppo,37,11.1,force,lower_fx,0.0016412663972005248 +illusion_1L,ppo,37,11.1,force,lower_fy,-0.001903125667013228 +illusion_1L,ppo,38,11.4,force,front_fx,0.002084693405777216 +illusion_1L,ppo,38,11.4,force,front_fy,-0.00036091209040023386 +illusion_1L,ppo,38,11.4,force,upper_fx,0.0017450058367103338 +illusion_1L,ppo,38,11.4,force,upper_fy,0.0034427389036864042 +illusion_1L,ppo,38,11.4,force,lower_fx,0.0017520152032375336 +illusion_1L,ppo,38,11.4,force,lower_fy,-0.002075017662718892 +illusion_1L,ppo,39,11.7,force,front_fx,0.0021221889182925224 +illusion_1L,ppo,39,11.7,force,front_fy,-0.00045889889588579535 +illusion_1L,ppo,39,11.7,force,upper_fx,0.0015941980527713895 +illusion_1L,ppo,39,11.7,force,upper_fy,0.0033969637006521225 +illusion_1L,ppo,39,11.7,force,lower_fx,0.0018875618698075414 +illusion_1L,ppo,39,11.7,force,lower_fy,-0.002341371728107333 +illusion_1L,ppo,40,12.0,force,front_fx,0.0021422267891466618 +illusion_1L,ppo,40,12.0,force,front_fy,-0.0005536182434298098 +illusion_1L,ppo,40,12.0,force,upper_fx,0.001413932186551392 +illusion_1L,ppo,40,12.0,force,upper_fy,0.0033806448336690664 +illusion_1L,ppo,40,12.0,force,lower_fx,0.002031371695920825 +illusion_1L,ppo,40,12.0,force,lower_fy,-0.0026807303074747324 +illusion_1L,ppo,41,12.3,force,front_fx,0.0021544285118579865 +illusion_1L,ppo,41,12.3,force,front_fy,-0.0006372001953423023 +illusion_1L,ppo,41,12.3,force,upper_fx,0.001219587167724967 +illusion_1L,ppo,41,12.3,force,upper_fy,0.003359125927090645 +illusion_1L,ppo,41,12.3,force,lower_fx,0.002166847698390484 +illusion_1L,ppo,41,12.3,force,lower_fy,-0.0030664289370179176 +illusion_1L,ppo,42,12.6,force,front_fx,0.00215985719114542 +illusion_1L,ppo,42,12.6,force,front_fy,-0.0007187439478002489 +illusion_1L,ppo,42,12.6,force,upper_fx,0.0010238062823191285 +illusion_1L,ppo,42,12.6,force,upper_fy,0.0032934851478785276 +illusion_1L,ppo,42,12.6,force,lower_fx,0.002287490526214242 +illusion_1L,ppo,42,12.6,force,lower_fy,-0.0034453251864761114 +illusion_1L,ppo,43,12.9,force,front_fx,0.002143407939001918 +illusion_1L,ppo,43,12.9,force,front_fy,-0.0007811688119545579 +illusion_1L,ppo,43,12.9,force,upper_fx,0.0008434663177467883 +illusion_1L,ppo,43,12.9,force,upper_fy,0.0031618489883840084 +illusion_1L,ppo,43,12.9,force,lower_fx,0.002384023740887642 +illusion_1L,ppo,43,12.9,force,lower_fy,-0.0037584786769002676 +illusion_1L,ppo,44,13.2,force,front_fx,0.0021033401135355234 +illusion_1L,ppo,44,13.2,force,front_fy,-0.0008404384134337306 +illusion_1L,ppo,44,13.2,force,upper_fx,0.0007117681670933962 +illusion_1L,ppo,44,13.2,force,upper_fy,0.002969105262309313 +illusion_1L,ppo,44,13.2,force,lower_fx,0.0024695582687854767 +illusion_1L,ppo,44,13.2,force,lower_fy,-0.003940446302294731 +illusion_1L,ppo,45,13.5,force,front_fx,0.0020620892755687237 +illusion_1L,ppo,45,13.5,force,front_fy,-0.0008777371840551496 +illusion_1L,ppo,45,13.5,force,upper_fx,0.0006646558176726103 +illusion_1L,ppo,45,13.5,force,upper_fy,0.0027422651182860136 +illusion_1L,ppo,45,13.5,force,lower_fx,0.0025612276513129473 +illusion_1L,ppo,45,13.5,force,lower_fy,-0.003948666620999575 +illusion_1L,ppo,46,13.8,force,front_fx,0.00202039978466928 +illusion_1L,ppo,46,13.8,force,front_fy,-0.0008868232253007591 +illusion_1L,ppo,46,13.8,force,upper_fx,0.0007127111312001944 +illusion_1L,ppo,46,13.8,force,upper_fy,0.002516645472496748 +illusion_1L,ppo,46,13.8,force,lower_fx,0.002657011616975069 +illusion_1L,ppo,46,13.8,force,lower_fy,-0.0037924449425190687 +illusion_1L,ppo,47,14.1,force,front_fx,0.001982646295800805 +illusion_1L,ppo,47,14.1,force,front_fy,-0.0008614532416686416 +illusion_1L,ppo,47,14.1,force,upper_fx,0.0008328088442794979 +illusion_1L,ppo,47,14.1,force,upper_fy,0.0023319562897086143 +illusion_1L,ppo,47,14.1,force,lower_fx,0.0027331095188856125 +illusion_1L,ppo,47,14.1,force,lower_fy,-0.0035363149363547564 +illusion_1L,ppo,48,14.4,force,front_fx,0.0019513292936608195 +illusion_1L,ppo,48,14.4,force,front_fy,-0.0008101955754682422 +illusion_1L,ppo,48,14.4,force,upper_fx,0.0009905101032927632 +illusion_1L,ppo,48,14.4,force,upper_fy,0.002236142987385392 +illusion_1L,ppo,48,14.4,force,lower_fx,0.002763247350230813 +illusion_1L,ppo,48,14.4,force,lower_fy,-0.0032670809887349606 +illusion_1L,ppo,49,14.7,force,front_fx,0.0019247891614213586 +illusion_1L,ppo,49,14.7,force,front_fy,-0.0007371483952738345 +illusion_1L,ppo,49,14.7,force,upper_fx,0.0011667192447930574 +illusion_1L,ppo,49,14.7,force,upper_fy,0.0022603890392929316 +illusion_1L,ppo,49,14.7,force,lower_fx,0.002739804098382592 +illusion_1L,ppo,49,14.7,force,lower_fy,-0.0030523992609232664 +illusion_1L,ppo,50,15.0,force,front_fx,0.0018951072124764323 +illusion_1L,ppo,50,15.0,force,front_fy,-0.000644011830445379 +illusion_1L,ppo,50,15.0,force,upper_fx,0.001341716619208455 +illusion_1L,ppo,50,15.0,force,upper_fy,0.002401165198534727 +illusion_1L,ppo,50,15.0,force,lower_fx,0.0026710135862231255 +illusion_1L,ppo,50,15.0,force,lower_fy,-0.0029156613163650036 +illusion_1L,ppo,51,15.3,force,front_fx,0.0018630919512361288 +illusion_1L,ppo,51,15.3,force,front_fy,-0.0005281020421534777 +illusion_1L,ppo,51,15.3,force,upper_fx,0.0014949168544262648 +illusion_1L,ppo,51,15.3,force,upper_fy,0.002635284559801221 +illusion_1L,ppo,51,15.3,force,lower_fx,0.0025742575526237488 +illusion_1L,ppo,51,15.3,force,lower_fy,-0.002828612457960844 +illusion_1L,ppo,52,15.6,force,front_fx,0.0018383747665211558 +illusion_1L,ppo,52,15.6,force,front_fy,-0.0003879139549098909 +illusion_1L,ppo,52,15.6,force,upper_fx,0.0016178363002836704 +illusion_1L,ppo,52,15.6,force,upper_fy,0.002926739864051342 +illusion_1L,ppo,52,15.6,force,lower_fx,0.0024581581819802523 +illusion_1L,ppo,52,15.6,force,lower_fy,-0.002744050696492195 +illusion_1L,ppo,53,15.9,force,front_fx,0.0018253858434036374 +illusion_1L,ppo,53,15.9,force,front_fy,-0.00022774410899728537 +illusion_1L,ppo,53,15.9,force,upper_fx,0.0017164872260764241 +illusion_1L,ppo,53,15.9,force,upper_fy,0.0032271926756948233 +illusion_1L,ppo,53,15.9,force,lower_fx,0.002316804835572839 +illusion_1L,ppo,53,15.9,force,lower_fy,-0.002632611198350787 +illusion_1L,ppo,54,16.2,force,front_fx,0.001822541351430118 +illusion_1L,ppo,54,16.2,force,front_fy,-6.406634929589927e-05 +illusion_1L,ppo,54,16.2,force,upper_fx,0.0018046244513243437 +illusion_1L,ppo,54,16.2,force,upper_fy,0.003487733891233802 +illusion_1L,ppo,54,16.2,force,lower_fx,0.0021435583475977182 +illusion_1L,ppo,54,16.2,force,lower_fy,-0.002490832470357418 +illusion_1L,ppo,55,16.5,force,front_fx,0.0018312790198251605 +illusion_1L,ppo,55,16.5,force,front_fy,8.24288435978815e-05 +illusion_1L,ppo,55,16.5,force,upper_fx,0.0019010913092643023 +illusion_1L,ppo,55,16.5,force,upper_fy,0.0036734133027493954 +illusion_1L,ppo,55,16.5,force,lower_fx,0.001955582993105054 +illusion_1L,ppo,55,16.5,force,lower_fy,-0.0023271136451512575 +illusion_1L,ppo,56,16.8,force,front_fx,0.001853265566751361 +illusion_1L,ppo,56,16.8,force,front_fy,0.00018227769760414958 +illusion_1L,ppo,56,16.8,force,upper_fx,0.002012107288464904 +illusion_1L,ppo,56,16.8,force,upper_fy,0.0037689851596951485 +illusion_1L,ppo,56,16.8,force,lower_fx,0.001787116751074791 +illusion_1L,ppo,56,16.8,force,lower_fy,-0.002150406828150153 +illusion_1L,ppo,57,17.1,force,front_fx,0.0018828435568138957 +illusion_1L,ppo,57,17.1,force,front_fy,0.00021209265105426311 +illusion_1L,ppo,57,17.1,force,upper_fx,0.002117692958563566 +illusion_1L,ppo,57,17.1,force,upper_fy,0.0037809356581419706 +illusion_1L,ppo,57,17.1,force,lower_fx,0.0016642442205920815 +illusion_1L,ppo,57,17.1,force,lower_fy,-0.0019702622666954994 +illusion_1L,ppo,58,17.4,force,front_fx,0.0019156752387061715 +illusion_1L,ppo,58,17.4,force,front_fy,0.00016359252913389355 +illusion_1L,ppo,58,17.4,force,upper_fx,0.002183217089623213 +illusion_1L,ppo,58,17.4,force,upper_fy,0.0037358212284743786 +illusion_1L,ppo,58,17.4,force,lower_fx,0.001594427158124745 +illusion_1L,ppo,58,17.4,force,lower_fy,-0.0018110963283106685 +illusion_1L,ppo,59,17.7,force,front_fx,0.0019554360769689083 +illusion_1L,ppo,59,17.7,force,front_fy,5.1571711082942784e-05 +illusion_1L,ppo,59,17.7,force,upper_fx,0.0021866902243345976 +illusion_1L,ppo,59,17.7,force,upper_fy,0.0036750161089003086 +illusion_1L,ppo,59,17.7,force,lower_fx,0.0015783612616360188 +illusion_1L,ppo,59,17.7,force,lower_fy,-0.001709634903818369 +illusion_1L,ppo,60,18.0,force,front_fx,0.0020046625286340714 +illusion_1L,ppo,60,18.0,force,front_fy,-8.596435509389266e-05 +illusion_1L,ppo,60,18.0,force,upper_fx,0.002131305867806077 +illusion_1L,ppo,60,18.0,force,upper_fy,0.003624006872996688 +illusion_1L,ppo,60,18.0,force,lower_fx,0.0016135139157995582 +illusion_1L,ppo,60,18.0,force,lower_fy,-0.001701121567748487 +illusion_1L,ppo,61,18.3,force,front_fx,0.0020544028375297785 +illusion_1L,ppo,61,18.3,force,front_fy,-0.0002181231538997963 +illusion_1L,ppo,61,18.3,force,upper_fx,0.0020287760999053717 +illusion_1L,ppo,61,18.3,force,upper_fy,0.0035864778328686953 +illusion_1L,ppo,61,18.3,force,lower_fx,0.0016957701882347465 +illusion_1L,ppo,61,18.3,force,lower_fy,-0.0018016238464042544 +illusion_1L,ppo,62,18.6,force,front_fx,0.0020941770635545254 +illusion_1L,ppo,62,18.6,force,front_fy,-0.0003319313982501626 +illusion_1L,ppo,62,18.6,force,upper_fx,0.0018885531462728977 +illusion_1L,ppo,62,18.6,force,upper_fy,0.0035653256345540285 +illusion_1L,ppo,62,18.6,force,lower_fx,0.0018188455142080784 +illusion_1L,ppo,62,18.6,force,lower_fy,-0.0020053833723068237 +illusion_1L,ppo,63,18.9,force,front_fx,0.0021301584783941507 +illusion_1L,ppo,63,18.9,force,front_fy,-0.00043828124762512743 +illusion_1L,ppo,63,18.9,force,upper_fx,0.0017186204204335809 +illusion_1L,ppo,63,18.9,force,upper_fy,0.0035604205913841724 +illusion_1L,ppo,63,18.9,force,lower_fx,0.0019674289505928755 +illusion_1L,ppo,63,18.9,force,lower_fy,-0.0022982351947575808 +illusion_1L,ppo,64,19.2,force,front_fx,0.0021612541750073433 +illusion_1L,ppo,64,19.2,force,front_fy,-0.0005369035643525422 +illusion_1L,ppo,64,19.2,force,upper_fx,0.001523590530268848 +illusion_1L,ppo,64,19.2,force,upper_fy,0.003554125316441059 +illusion_1L,ppo,64,19.2,force,lower_fx,0.0021177446469664574 +illusion_1L,ppo,64,19.2,force,lower_fy,-0.002660550642758608 +illusion_1L,ppo,65,19.5,force,front_fx,0.0021789763122797012 +illusion_1L,ppo,65,19.5,force,front_fy,-0.0006402891594916582 +illusion_1L,ppo,65,19.5,force,upper_fx,0.0013036809395998716 +illusion_1L,ppo,65,19.5,force,upper_fy,0.0035136230289936066 +illusion_1L,ppo,65,19.5,force,lower_fx,0.0022491132840514183 +illusion_1L,ppo,65,19.5,force,lower_fy,-0.0030561918392777443 +illusion_1L,ppo,66,19.8,force,front_fx,0.0021827775053679943 +illusion_1L,ppo,66,19.8,force,front_fy,-0.0007407597149722278 +illusion_1L,ppo,66,19.8,force,upper_fx,0.0010795914568006992 +illusion_1L,ppo,66,19.8,force,upper_fy,0.0034033500123769045 +illusion_1L,ppo,66,19.8,force,lower_fx,0.0023605956230312586 +illusion_1L,ppo,66,19.8,force,lower_fy,-0.003429834498092532 +illusion_1L,ppo,67,20.1,force,front_fx,0.0021690628491342068 +illusion_1L,ppo,67,20.1,force,front_fy,-0.0008188437204807997 +illusion_1L,ppo,67,20.1,force,upper_fx,0.0008912404300644994 +illusion_1L,ppo,67,20.1,force,upper_fy,0.003209018148481846 +illusion_1L,ppo,67,20.1,force,lower_fx,0.002459428971633315 +illusion_1L,ppo,67,20.1,force,lower_fy,-0.0037228616420179605 +illusion_1L,ppo,68,20.4,force,front_fx,0.0021346015855669975 +illusion_1L,ppo,68,20.4,force,front_fy,-0.000878210470546037 +illusion_1L,ppo,68,20.4,force,upper_fx,0.0007718221168033779 +illusion_1L,ppo,68,20.4,force,upper_fy,0.0029541535768657923 +illusion_1L,ppo,68,20.4,force,lower_fx,0.00255809654481709 +illusion_1L,ppo,68,20.4,force,lower_fy,-0.0038734765257686377 +illusion_1L,ppo,69,20.7,force,front_fx,0.002087743254378438 +illusion_1L,ppo,69,20.7,force,front_fy,-0.0009112809202633798 +illusion_1L,ppo,69,20.7,force,upper_fx,0.0007431491976603866 +illusion_1L,ppo,69,20.7,force,upper_fy,0.0026801174972206354 +illusion_1L,ppo,69,20.7,force,lower_fx,0.002655969699844718 +illusion_1L,ppo,69,20.7,force,lower_fy,-0.0038609886541962624 +illusion_1L,ppo,70,21.0,force,front_fx,0.0020403515081852674 +illusion_1L,ppo,70,21.0,force,front_fy,-0.000905704393517226 +illusion_1L,ppo,70,21.0,force,upper_fx,0.0008090611081570387 +illusion_1L,ppo,70,21.0,force,upper_fy,0.0024297882337123156 +illusion_1L,ppo,70,21.0,force,lower_fx,0.002740532625466585 +illusion_1L,ppo,70,21.0,force,lower_fy,-0.003720361040905118 +illusion_1L,ppo,71,21.3,force,front_fx,0.002001049229875207 +illusion_1L,ppo,71,21.3,force,front_fy,-0.0008677312871441245 +illusion_1L,ppo,71,21.3,force,upper_fx,0.0009407114121131599 +illusion_1L,ppo,71,21.3,force,upper_fy,0.0022462881170213223 +illusion_1L,ppo,71,21.3,force,lower_fx,0.0027883874718099833 +illusion_1L,ppo,71,21.3,force,lower_fy,-0.003522059880197048 +illusion_1L,ppo,72,21.6,force,front_fx,0.001965427538380027 +illusion_1L,ppo,72,21.6,force,front_fy,-0.0008063091081567109 +illusion_1L,ppo,72,21.6,force,upper_fx,0.001098312553949654 +illusion_1L,ppo,72,21.6,force,upper_fy,0.002166947117075324 +illusion_1L,ppo,72,21.6,force,lower_fx,0.002777987392619252 +illusion_1L,ppo,72,21.6,force,lower_fy,-0.00333505985327065 +illusion_1L,ppo,73,21.9,force,front_fx,0.0019286058377474546 +illusion_1L,ppo,73,21.9,force,front_fy,-0.0007238528924062848 +illusion_1L,ppo,73,21.9,force,upper_fx,0.0012613363796845078 +illusion_1L,ppo,73,21.9,force,upper_fy,0.002203947864472866 +illusion_1L,ppo,73,21.9,force,lower_fx,0.0027138234581798315 +illusion_1L,ppo,73,21.9,force,lower_fy,-0.0031966145616024733 +illusion_1L,ppo,74,22.2,force,front_fx,0.0018945698393508792 +illusion_1L,ppo,74,22.2,force,front_fy,-0.0006219740025699139 +illusion_1L,ppo,74,22.2,force,upper_fx,0.0014188692439347506 +illusion_1L,ppo,74,22.2,force,upper_fy,0.0023454627953469753 +illusion_1L,ppo,74,22.2,force,lower_fx,0.0026205091271549463 +illusion_1L,ppo,74,22.2,force,lower_fy,-0.0031013081315904856 +illusion_1L,ppo,75,22.5,force,front_fx,0.0018676575273275375 +illusion_1L,ppo,75,22.5,force,front_fy,-0.0004970358568243682 +illusion_1L,ppo,75,22.5,force,upper_fx,0.0015590802067890763 +illusion_1L,ppo,75,22.5,force,upper_fy,0.002568257739767432 +illusion_1L,ppo,75,22.5,force,lower_fx,0.0025154633913189173 +illusion_1L,ppo,75,22.5,force,lower_fy,-0.003013801760971546 +illusion_1L,ppo,76,22.8,force,front_fx,0.0018488517962396145 +illusion_1L,ppo,76,22.8,force,front_fy,-0.0003469360526651144 +illusion_1L,ppo,76,22.8,force,upper_fx,0.0016729943454265594 +illusion_1L,ppo,76,22.8,force,upper_fy,0.0028397405985742807 +illusion_1L,ppo,76,22.8,force,lower_fx,0.00239369529299438 +illusion_1L,ppo,76,22.8,force,lower_fy,-0.0029016942717134953 +illusion_1L,ppo,77,23.1,force,front_fx,0.0018409405602142215 +illusion_1L,ppo,77,23.1,force,front_fy,-0.00018065611948259175 +illusion_1L,ppo,77,23.1,force,upper_fx,0.0017708259401842952 +illusion_1L,ppo,77,23.1,force,upper_fy,0.003116228152066469 +illusion_1L,ppo,77,23.1,force,lower_fx,0.0022468960378319025 +illusion_1L,ppo,77,23.1,force,lower_fy,-0.002758945804089308 +illusion_1L,ppo,78,23.4,force,front_fx,0.0018486400367692113 +illusion_1L,ppo,78,23.4,force,front_fy,-1.36000353450072e-05 +illusion_1L,ppo,78,23.4,force,upper_fx,0.0018708322895690799 +illusion_1L,ppo,78,23.4,force,upper_fy,0.003358996706083417 +illusion_1L,ppo,78,23.4,force,lower_fx,0.002078795339912176 +illusion_1L,ppo,78,23.4,force,lower_fy,-0.0025927964597940445 +illusion_1L,ppo,79,23.7,force,front_fx,0.001863414654508233 +illusion_1L,ppo,79,23.7,force,front_fy,0.0001262388250324875 +illusion_1L,ppo,79,23.7,force,upper_fx,0.0019780322909355164 +illusion_1L,ppo,79,23.7,force,upper_fy,0.0035430050920695066 +illusion_1L,ppo,79,23.7,force,lower_fx,0.0019088268745690584 +illusion_1L,ppo,79,23.7,force,lower_fy,-0.002406192012131214 +illusion_1L,ppo,80,24.0,force,front_fx,0.0018802434206008911 +illusion_1L,ppo,80,24.0,force,front_fy,0.00020500879327300936 +illusion_1L,ppo,80,24.0,force,upper_fx,0.0020790935959666967 +illusion_1L,ppo,80,24.0,force,upper_fy,0.003656237618997693 +illusion_1L,ppo,80,24.0,force,lower_fx,0.0017639752477407455 +illusion_1L,ppo,80,24.0,force,lower_fy,-0.0021976360585540533 +illusion_1L,ppo,81,24.3,force,front_fx,0.0018976054852828383 +illusion_1L,ppo,81,24.3,force,front_fy,0.00019931951828766614 +illusion_1L,ppo,81,24.3,force,upper_fx,0.0021558261942118406 +illusion_1L,ppo,81,24.3,force,upper_fy,0.003705367213115096 +illusion_1L,ppo,81,24.3,force,lower_fx,0.0016679721884429455 +illusion_1L,ppo,81,24.3,force,lower_fy,-0.0019779151771217585 +illusion_1L,ppo,82,24.6,force,front_fx,0.0019287733593955636 +illusion_1L,ppo,82,24.6,force,front_fy,0.00011634476686595008 +illusion_1L,ppo,82,24.6,force,upper_fx,0.002188231563195586 +illusion_1L,ppo,82,24.6,force,upper_fy,0.0037147952243685722 +illusion_1L,ppo,82,24.6,force,lower_fx,0.001626845682039857 +illusion_1L,ppo,82,24.6,force,lower_fy,-0.0017810905119404197 +illusion_1L,ppo,83,24.9,force,front_fx,0.0019762860611081123 +illusion_1L,ppo,83,24.9,force,front_fy,-1.361545037070755e-05 +illusion_1L,ppo,83,24.9,force,upper_fx,0.00216319365426898 +illusion_1L,ppo,83,24.9,force,upper_fy,0.0037076338194310665 +illusion_1L,ppo,83,24.9,force,lower_fx,0.0016296238172799349 +illusion_1L,ppo,83,24.9,force,lower_fy,-0.0016514314338564873 +illusion_1L,ppo,84,25.2,force,front_fx,0.0020319351460784674 +illusion_1L,ppo,84,25.2,force,front_fy,-0.00014992545766290277 +illusion_1L,ppo,84,25.2,force,upper_fx,0.002086276188492775 +illusion_1L,ppo,84,25.2,force,upper_fy,0.0036940653808414936 +illusion_1L,ppo,84,25.2,force,lower_fx,0.0016719696577638388 +illusion_1L,ppo,84,25.2,force,lower_fy,-0.0016173236072063446 +illusion_1L,ppo,85,25.5,force,front_fx,0.0020930804312229156 +illusion_1L,ppo,85,25.5,force,front_fy,-0.00028021138859912753 +illusion_1L,ppo,85,25.5,force,upper_fx,0.0019720103591680527 +illusion_1L,ppo,85,25.5,force,upper_fy,0.003681577043607831 +illusion_1L,ppo,85,25.5,force,lower_fx,0.0017595213139429688 +illusion_1L,ppo,85,25.5,force,lower_fy,-0.0016867183148860931 +illusion_1L,ppo,86,25.8,force,front_fx,0.0021583870984613895 +illusion_1L,ppo,86,25.8,force,front_fy,-0.0003941117611248046 +illusion_1L,ppo,86,25.8,force,upper_fx,0.001830134424380958 +illusion_1L,ppo,86,25.8,force,upper_fy,0.0036766978446394205 +illusion_1L,ppo,86,25.8,force,lower_fx,0.0018846130697056651 +illusion_1L,ppo,86,25.8,force,lower_fy,-0.0018599272007122636 +illusion_1L,ppo,87,26.1,force,front_fx,0.0022115851752460003 +illusion_1L,ppo,87,26.1,force,front_fy,-0.000499193964060396 +illusion_1L,ppo,87,26.1,force,upper_fx,0.0016585453413426876 +illusion_1L,ppo,87,26.1,force,upper_fy,0.003677576780319214 +illusion_1L,ppo,87,26.1,force,lower_fx,0.002022684318944812 +illusion_1L,ppo,87,26.1,force,lower_fy,-0.0021323112305253744 +illusion_1L,ppo,88,26.4,force,front_fx,0.002237639157101512 +illusion_1L,ppo,88,26.4,force,front_fy,-0.0006085522472858429 +illusion_1L,ppo,88,26.4,force,upper_fx,0.001457660342566669 +illusion_1L,ppo,88,26.4,force,upper_fy,0.0036640584003180265 +illusion_1L,ppo,88,26.4,force,lower_fx,0.0021575128193944693 +illusion_1L,ppo,88,26.4,force,lower_fy,-0.0024827513843774796 +illusion_1L,ppo,89,26.7,force,front_fx,0.0022570546716451645 +illusion_1L,ppo,89,26.7,force,front_fy,-0.0007044816156849265 +illusion_1L,ppo,89,26.7,force,upper_fx,0.0012399464612826705 +illusion_1L,ppo,89,26.7,force,upper_fy,0.0036022865679115057 +illusion_1L,ppo,89,26.7,force,lower_fx,0.0022769682109355927 +illusion_1L,ppo,89,26.7,force,lower_fy,-0.0028771793004125357 +illusion_1L,ppo,90,27.0,force,front_fx,0.002256396459415555 +illusion_1L,ppo,90,27.0,force,front_fy,-0.0007887491374276578 +illusion_1L,ppo,90,27.0,force,upper_fx,0.0010336556006222963 +illusion_1L,ppo,90,27.0,force,upper_fy,0.003458548802882433 +illusion_1L,ppo,90,27.0,force,lower_fx,0.0023858181666582823 +illusion_1L,ppo,90,27.0,force,lower_fy,-0.003254018258303404 +illusion_1L,ppo,91,27.3,force,front_fx,0.0022248737514019012 +illusion_1L,ppo,91,27.3,force,front_fy,-0.0008460287353955209 +illusion_1L,ppo,91,27.3,force,upper_fx,0.0008701623301021755 +illusion_1L,ppo,91,27.3,force,upper_fy,0.003229993861168623 +illusion_1L,ppo,91,27.3,force,lower_fx,0.00248138140887022 +illusion_1L,ppo,91,27.3,force,lower_fy,-0.003557068994268775 +illusion_1L,ppo,92,27.6,force,front_fx,0.0021695613395422697 +illusion_1L,ppo,92,27.6,force,front_fy,-0.0008885962888598442 +illusion_1L,ppo,92,27.6,force,upper_fx,0.0007775718695484102 +illusion_1L,ppo,92,27.6,force,upper_fy,0.0029533905908465385 +illusion_1L,ppo,92,27.6,force,lower_fx,0.0025734109804034233 +illusion_1L,ppo,92,27.6,force,lower_fy,-0.003731972072273493 +illusion_1L,ppo,93,27.9,force,front_fx,0.002105297055095434 +illusion_1L,ppo,93,27.9,force,front_fy,-0.0009051686502061784 +illusion_1L,ppo,93,27.9,force,upper_fx,0.0007792468531988561 +illusion_1L,ppo,93,27.9,force,upper_fy,0.0026702063623815775 +illusion_1L,ppo,93,27.9,force,lower_fx,0.002663838444277644 +illusion_1L,ppo,93,27.9,force,lower_fy,-0.003763629589229822 +illusion_1L,ppo,94,28.2,force,front_fx,0.002045999513939023 +illusion_1L,ppo,94,28.2,force,front_fy,-0.000893295684363693 +illusion_1L,ppo,94,28.2,force,upper_fx,0.0008632375975139439 +illusion_1L,ppo,94,28.2,force,upper_fy,0.002414593705907464 +illusion_1L,ppo,94,28.2,force,lower_fx,0.002733650617301464 +illusion_1L,ppo,94,28.2,force,lower_fy,-0.0036848599556833506 +illusion_1L,ppo,95,28.5,force,front_fx,0.001994185382500291 +illusion_1L,ppo,95,28.5,force,front_fy,-0.0008559403941035271 +illusion_1L,ppo,95,28.5,force,upper_fx,0.000987586216069758 +illusion_1L,ppo,95,28.5,force,upper_fy,0.0022223039995878935 +illusion_1L,ppo,95,28.5,force,lower_fx,0.002755289664492011 +illusion_1L,ppo,95,28.5,force,lower_fy,-0.0035500042140483856 +illusion_1L,ppo,96,28.8,force,front_fx,0.0019527949625626206 +illusion_1L,ppo,96,28.8,force,front_fy,-0.000792264356277883 +illusion_1L,ppo,96,28.8,force,upper_fx,0.0011287748347967863 +illusion_1L,ppo,96,28.8,force,upper_fy,0.002120492048561573 +illusion_1L,ppo,96,28.8,force,lower_fx,0.0027205089572817087 +illusion_1L,ppo,96,28.8,force,lower_fy,-0.003412508172914386 +illusion_1L,ppo,97,29.1,force,front_fx,0.0019220116082578897 +illusion_1L,ppo,97,29.1,force,front_fy,-0.0007067761034704745 +illusion_1L,ppo,97,29.1,force,upper_fx,0.001280838274396956 +illusion_1L,ppo,97,29.1,force,upper_fy,0.0021183008793741465 +illusion_1L,ppo,97,29.1,force,lower_fx,0.002645669737830758 +illusion_1L,ppo,97,29.1,force,lower_fy,-0.0033008160535246134 +illusion_1L,ppo,98,29.4,force,front_fx,0.001895659719593823 +illusion_1L,ppo,98,29.4,force,front_fy,-0.0005990315694361925 +illusion_1L,ppo,98,29.4,force,upper_fx,0.0014304675860330462 +illusion_1L,ppo,98,29.4,force,upper_fy,0.0022147493436932564 +illusion_1L,ppo,98,29.4,force,lower_fx,0.002552430145442486 +illusion_1L,ppo,98,29.4,force,lower_fy,-0.003207339206710458 +illusion_1L,ppo,99,29.7,force,front_fx,0.001875365967862308 +illusion_1L,ppo,99,29.7,force,front_fy,-0.00046580994967371225 +illusion_1L,ppo,99,29.7,force,upper_fx,0.0015666777035221457 +illusion_1L,ppo,99,29.7,force,upper_fy,0.0023984352592378855 +illusion_1L,ppo,99,29.7,force,lower_fx,0.0024501208681613207 +illusion_1L,ppo,99,29.7,force,lower_fy,-0.0031104637309908867 +illusion_1L,ppo,100,30.0,force,front_fx,0.001864951802417636 +illusion_1L,ppo,100,30.0,force,front_fy,-0.00030969982617534697 +illusion_1L,ppo,100,30.0,force,upper_fx,0.0016897908644750714 +illusion_1L,ppo,100,30.0,force,upper_fy,0.0026423002127557993 +illusion_1L,ppo,100,30.0,force,lower_fx,0.0023375863675028086 +illusion_1L,ppo,100,30.0,force,lower_fy,-0.0029932239558547735 +illusion_1L,ppo,101,30.3,force,front_fx,0.0018682513618841767 +illusion_1L,ppo,101,30.3,force,front_fy,-0.0001399771572323516 +illusion_1L,ppo,101,30.3,force,upper_fx,0.0018032598309218884 +illusion_1L,ppo,101,30.3,force,upper_fy,0.002909522270783782 +illusion_1L,ppo,101,30.3,force,lower_fx,0.002203205833211541 +illusion_1L,ppo,101,30.3,force,lower_fy,-0.0028543423395603895 +illusion_1L,ppo,102,30.6,force,front_fx,0.0018743757391348481 +illusion_1L,ppo,102,30.6,force,front_fy,2.5349059797008522e-05 +illusion_1L,ppo,102,30.6,force,upper_fx,0.0019063816871494055 +illusion_1L,ppo,102,30.6,force,upper_fy,0.0031653009355068207 +illusion_1L,ppo,102,30.6,force,lower_fx,0.0020428248681128025 +illusion_1L,ppo,102,30.6,force,lower_fy,-0.00269343052059412 +illusion_1L,ppo,103,30.9,force,front_fx,0.0018785794964060187 +illusion_1L,ppo,103,30.9,force,front_fy,0.0001514893228886649 +illusion_1L,ppo,103,30.9,force,upper_fx,0.0020008832216262817 +illusion_1L,ppo,103,30.9,force,upper_fy,0.003384067676961422 +illusion_1L,ppo,103,30.9,force,lower_fx,0.0018812203779816628 +illusion_1L,ppo,103,30.9,force,lower_fy,-0.0025000497698783875 +illusion_1L,ppo,104,31.2,force,front_fx,0.0018828767351806164 +illusion_1L,ppo,104,31.2,force,front_fy,0.00020290841348469257 +illusion_1L,ppo,104,31.2,force,upper_fx,0.0020849111024290323 +illusion_1L,ppo,104,31.2,force,upper_fy,0.0035529346205294132 +illusion_1L,ppo,104,31.2,force,lower_fx,0.0017558566760271788 +illusion_1L,ppo,104,31.2,force,lower_fy,-0.002267546718940139 +illusion_1L,ppo,105,31.5,force,front_fx,0.0018924713367596269 +illusion_1L,ppo,105,31.5,force,front_fy,0.00016837232396937907 +illusion_1L,ppo,105,31.5,force,upper_fx,0.002144378377124667 +illusion_1L,ppo,105,31.5,force,upper_fy,0.0036717704497277737 +illusion_1L,ppo,105,31.5,force,lower_fx,0.0016825520433485508 +illusion_1L,ppo,105,31.5,force,lower_fy,-0.0020181522704660892 +illusion_1L,ppo,106,31.8,force,front_fx,0.0019196313805878162 +illusion_1L,ppo,106,31.8,force,front_fy,6.777724047424272e-05 +illusion_1L,ppo,106,31.8,force,upper_fx,0.0021599726751446724 +illusion_1L,ppo,106,31.8,force,upper_fy,0.003748259972780943 +illusion_1L,ppo,106,31.8,force,lower_fx,0.0016525242244824767 +illusion_1L,ppo,106,31.8,force,lower_fy,-0.0017963622231036425 +illusion_1L,ppo,107,32.1,force,front_fx,0.001974717481061816 +illusion_1L,ppo,107,32.1,force,front_fy,-6.438530544983223e-05 +illusion_1L,ppo,107,32.1,force,upper_fx,0.0021284848917275667 +illusion_1L,ppo,107,32.1,force,upper_fy,0.003785650711506605 +illusion_1L,ppo,107,32.1,force,lower_fx,0.0016579828225076199 +illusion_1L,ppo,107,32.1,force,lower_fy,-0.0016431149560958147 +illusion_1L,ppo,108,32.4,force,front_fx,0.0020502775441855192 +illusion_1L,ppo,108,32.4,force,front_fy,-0.00019495202286634594 +illusion_1L,ppo,108,32.4,force,upper_fx,0.002057230332866311 +illusion_1L,ppo,108,32.4,force,upper_fy,0.0037900502793490887 +illusion_1L,ppo,108,32.4,force,lower_fx,0.0017034687334671617 +illusion_1L,ppo,108,32.4,force,lower_fy,-0.0015782216796651483 +illusion_1L,ppo,109,32.7,force,front_fx,0.002127759624272585 +illusion_1L,ppo,109,32.7,force,front_fy,-0.00030947066261433065 +illusion_1L,ppo,109,32.7,force,upper_fx,0.0019467365927994251 +illusion_1L,ppo,109,32.7,force,upper_fy,0.003778114216402173 +illusion_1L,ppo,109,32.7,force,lower_fx,0.001787411398254335 +illusion_1L,ppo,109,32.7,force,lower_fy,-0.0016118679195642471 +illusion_1L,ppo,110,33.0,force,front_fx,0.0021948700305074453 +illusion_1L,ppo,110,33.0,force,front_fy,-0.0004173615016043186 +illusion_1L,ppo,110,33.0,force,upper_fx,0.0018002076540142298 +illusion_1L,ppo,110,33.0,force,upper_fy,0.003766483860090375 +illusion_1L,ppo,110,33.0,force,lower_fx,0.001899618306197226 +illusion_1L,ppo,110,33.0,force,lower_fy,-0.0017544664442539215 +illusion_1L,ppo,111,33.3,force,front_fx,0.0022409530356526375 +illusion_1L,ppo,111,33.3,force,front_fy,-0.0005211434909142554 +illusion_1L,ppo,111,33.3,force,upper_fx,0.0016283238073810935 +illusion_1L,ppo,111,33.3,force,upper_fy,0.003757844679057598 +illusion_1L,ppo,111,33.3,force,lower_fx,0.0020299283787608147 +illusion_1L,ppo,111,33.3,force,lower_fy,-0.0020082658156752586 +illusion_1L,ppo,112,33.6,force,front_fx,0.0022845377679914236 +illusion_1L,ppo,112,33.6,force,front_fy,-0.0006277624052017927 +illusion_1L,ppo,112,33.6,force,upper_fx,0.0014346512034535408 +illusion_1L,ppo,112,33.6,force,upper_fy,0.003735801437869668 +illusion_1L,ppo,112,33.6,force,lower_fx,0.002166916150599718 +illusion_1L,ppo,112,33.6,force,lower_fy,-0.0023537189699709415 +illusion_1L,ppo,113,33.9,force,front_fx,0.0023008997086435556 +illusion_1L,ppo,113,33.9,force,front_fy,-0.0007181293913163245 +illusion_1L,ppo,113,33.9,force,upper_fx,0.001221496146172285 +illusion_1L,ppo,113,33.9,force,upper_fy,0.003671011421829462 +illusion_1L,ppo,113,33.9,force,lower_fx,0.0022954270243644714 +illusion_1L,ppo,113,33.9,force,lower_fy,-0.002752886852249503 +illusion_1L,ppo,114,34.2,force,front_fx,0.002296455902978778 +illusion_1L,ppo,114,34.2,force,front_fy,-0.0007940570940263569 +illusion_1L,ppo,114,34.2,force,upper_fx,0.0010138520738109946 +illusion_1L,ppo,114,34.2,force,upper_fy,0.0035310774110257626 +illusion_1L,ppo,114,34.2,force,lower_fx,0.002410123124718666 +illusion_1L,ppo,114,34.2,force,lower_fy,-0.0031493031419813633 +illusion_1L,ppo,115,34.5,force,front_fx,0.002260639565065503 +illusion_1L,ppo,115,34.5,force,front_fy,-0.0008399414946325123 +illusion_1L,ppo,115,34.5,force,upper_fx,0.0008532403153367341 +illusion_1L,ppo,115,34.5,force,upper_fy,0.003309131832793355 +illusion_1L,ppo,115,34.5,force,lower_fx,0.002514986088499427 +illusion_1L,ppo,115,34.5,force,lower_fy,-0.003481064224615693 +illusion_1L,ppo,116,34.8,force,front_fx,0.0021988418884575367 +illusion_1L,ppo,116,34.8,force,front_fy,-0.0008775538299232721 +illusion_1L,ppo,116,34.8,force,upper_fx,0.0007688580080866814 +illusion_1L,ppo,116,34.8,force,upper_fy,0.003035259433090687 +illusion_1L,ppo,116,34.8,force,lower_fx,0.0026128184981644154 +illusion_1L,ppo,116,34.8,force,lower_fy,-0.0036916451063007116 +illusion_1L,ppo,117,35.1,force,front_fx,0.002122866455465555 +illusion_1L,ppo,117,35.1,force,front_fy,-0.0008949888870120049 +illusion_1L,ppo,117,35.1,force,upper_fx,0.0007733581587672234 +illusion_1L,ppo,117,35.1,force,upper_fy,0.0027459149714559317 +illusion_1L,ppo,117,35.1,force,lower_fx,0.0026983339339494705 +illusion_1L,ppo,117,35.1,force,lower_fy,-0.0037570837885141373 +illusion_1L,ppo,118,35.4,force,front_fx,0.00204879860393703 +illusion_1L,ppo,118,35.4,force,front_fy,-0.000889087503310293 +illusion_1L,ppo,118,35.4,force,upper_fx,0.0008539454429410398 +illusion_1L,ppo,118,35.4,force,upper_fy,0.0024722565431147814 +illusion_1L,ppo,118,35.4,force,lower_fx,0.002759793773293495 +illusion_1L,ppo,118,35.4,force,lower_fy,-0.0037025236524641514 +illusion_1L,ppo,119,35.7,force,front_fx,0.001993288053199649 +illusion_1L,ppo,119,35.7,force,front_fy,-0.0008551875944249332 +illusion_1L,ppo,119,35.7,force,upper_fx,0.0009767833398655057 +illusion_1L,ppo,119,35.7,force,upper_fy,0.002251472556963563 +illusion_1L,ppo,119,35.7,force,lower_fx,0.0027777852956205606 +illusion_1L,ppo,119,35.7,force,lower_fy,-0.003583772573620081 +illusion_1L,ppo,120,36.0,force,front_fx,0.0019523932132869959 +illusion_1L,ppo,120,36.0,force,front_fy,-0.0007969368016347289 +illusion_1L,ppo,120,36.0,force,upper_fx,0.0011165171163156629 +illusion_1L,ppo,120,36.0,force,upper_fy,0.0021147935185581446 +illusion_1L,ppo,120,36.0,force,lower_fx,0.0027403973508626223 +illusion_1L,ppo,120,36.0,force,lower_fy,-0.0034574910532683134 +illusion_1L,ppo,121,36.3,force,front_fx,0.0019219893729314208 +illusion_1L,ppo,121,36.3,force,front_fy,-0.000716276525054127 +illusion_1L,ppo,121,36.3,force,upper_fx,0.0012653156882151961 +illusion_1L,ppo,121,36.3,force,upper_fy,0.002076575066894293 +illusion_1L,ppo,121,36.3,force,lower_fx,0.0026598796248435974 +illusion_1L,ppo,121,36.3,force,lower_fy,-0.003357804147526622 +illusion_1L,ppo,122,36.6,force,front_fx,0.00190062599722296 +illusion_1L,ppo,122,36.6,force,front_fy,-0.000612292846199125 +illusion_1L,ppo,122,36.6,force,upper_fx,0.0014174237148836255 +illusion_1L,ppo,122,36.6,force,upper_fy,0.00214196415618062 +illusion_1L,ppo,122,36.6,force,lower_fx,0.0025639894884079695 +illusion_1L,ppo,122,36.6,force,lower_fy,-0.0032802284695208073 +illusion_1L,ppo,123,36.9,force,front_fx,0.0018878660630434752 +illusion_1L,ppo,123,36.9,force,front_fy,-0.00048187162610702217 +illusion_1L,ppo,123,36.9,force,upper_fx,0.0015634120209142566 +illusion_1L,ppo,123,36.9,force,upper_fy,0.0023051872849464417 +illusion_1L,ppo,123,36.9,force,lower_fx,0.002465964062139392 +illusion_1L,ppo,123,36.9,force,lower_fy,-0.0032006711699068546 +illusion_1L,ppo,124,37.2,force,front_fx,0.0018796863732859492 +illusion_1L,ppo,124,37.2,force,front_fy,-0.0003272315952926874 +illusion_1L,ppo,124,37.2,force,upper_fx,0.0016913714352995157 +illusion_1L,ppo,124,37.2,force,upper_fy,0.002538799773901701 +illusion_1L,ppo,124,37.2,force,lower_fx,0.0023513673804700375 +illusion_1L,ppo,124,37.2,force,lower_fy,-0.0031042553018778563 +illusion_1L,ppo,125,37.5,force,front_fx,0.0018759300000965595 +illusion_1L,ppo,125,37.5,force,front_fy,-0.00015548701048828661 +illusion_1L,ppo,125,37.5,force,upper_fx,0.0018001195276156068 +illusion_1L,ppo,125,37.5,force,upper_fy,0.0028017342556267977 +illusion_1L,ppo,125,37.5,force,lower_fx,0.0022054046858102083 +illusion_1L,ppo,125,37.5,force,lower_fy,-0.0029838967602699995 +illusion_1L,ppo,126,37.8,force,front_fx,0.0018793185008689761 +illusion_1L,ppo,126,37.8,force,front_fy,1.1812165212177206e-05 +illusion_1L,ppo,126,37.8,force,upper_fx,0.0018991715041920543 +illusion_1L,ppo,126,37.8,force,upper_fy,0.0030566861387342215 +illusion_1L,ppo,126,37.8,force,lower_fx,0.002035680692642927 +illusion_1L,ppo,126,37.8,force,lower_fy,-0.0028325412422418594 +illusion_1L,ppo,127,38.1,force,front_fx,0.0018838024698197842 +illusion_1L,ppo,127,38.1,force,front_fy,0.00014148777700029314 +illusion_1L,ppo,127,38.1,force,upper_fx,0.0019951460417360067 +illusion_1L,ppo,127,38.1,force,upper_fy,0.0032794468570500612 +illusion_1L,ppo,127,38.1,force,lower_fx,0.0018703977111727 +illusion_1L,ppo,127,38.1,force,lower_fy,-0.0026405146345496178 +illusion_1L,ppo,128,38.4,force,front_fx,0.0018851107452064753 +illusion_1L,ppo,128,38.4,force,front_fy,0.00020173950179014355 +illusion_1L,ppo,128,38.4,force,upper_fx,0.002081411425024271 +illusion_1L,ppo,128,38.4,force,upper_fy,0.003461479442194104 +illusion_1L,ppo,128,38.4,force,lower_fx,0.0017423995304852724 +illusion_1L,ppo,128,38.4,force,lower_fy,-0.002402084181085229 +illusion_1L,ppo,129,38.7,force,front_fx,0.0018893199739977717 +illusion_1L,ppo,129,38.7,force,front_fy,0.0001771321549313143 +illusion_1L,ppo,129,38.7,force,upper_fx,0.002145336242392659 +illusion_1L,ppo,129,38.7,force,upper_fy,0.0036042635329067707 +illusion_1L,ppo,129,38.7,force,lower_fx,0.0016709346091374755 +illusion_1L,ppo,129,38.7,force,lower_fy,-0.002137427218258381 +illusion_1L,ppo,130,39.0,force,front_fx,0.0019132093293592334 +illusion_1L,ppo,130,39.0,force,front_fy,8.058696403168142e-05 +illusion_1L,ppo,130,39.0,force,upper_fx,0.0021735390182584524 +illusion_1L,ppo,130,39.0,force,upper_fy,0.0037120997440069914 +illusion_1L,ppo,130,39.0,force,lower_fx,0.0016510785790160298 +illusion_1L,ppo,130,39.0,force,lower_fy,-0.0018919366411864758 +illusion_1L,ppo,131,39.3,force,front_fx,0.0019650114700198174 +illusion_1L,ppo,131,39.3,force,front_fy,-4.5653421693714336e-05 +illusion_1L,ppo,131,39.3,force,upper_fx,0.002154203364625573 +illusion_1L,ppo,131,39.3,force,upper_fy,0.0037853915710002184 +illusion_1L,ppo,131,39.3,force,lower_fx,0.001663830829784274 +illusion_1L,ppo,131,39.3,force,lower_fy,-0.0017067231237888336 +illusion_1L,ppo,132,39.6,force,front_fx,0.0020347286481410265 +illusion_1L,ppo,132,39.6,force,front_fy,-0.00017142064461950213 +illusion_1L,ppo,132,39.6,force,upper_fx,0.0020833034068346024 +illusion_1L,ppo,132,39.6,force,upper_fy,0.003821837017312646 +illusion_1L,ppo,132,39.6,force,lower_fx,0.0017015808261930943 +illusion_1L,ppo,132,39.6,force,lower_fy,-0.0016027319943532348 +illusion_1L,ppo,133,39.9,force,front_fx,0.0021125422790646553 +illusion_1L,ppo,133,39.9,force,front_fy,-0.0002880689862649888 +illusion_1L,ppo,133,39.9,force,upper_fx,0.0019675667863339186 +illusion_1L,ppo,133,39.9,force,upper_fy,0.0038316850550472736 +illusion_1L,ppo,133,39.9,force,lower_fx,0.0017698063747957349 +illusion_1L,ppo,133,39.9,force,lower_fy,-0.0015873350203037262 +illusion_1L,ppo,134,40.2,force,front_fx,0.0021840305998921394 +illusion_1L,ppo,134,40.2,force,front_fy,-0.0003977234591729939 +illusion_1L,ppo,134,40.2,force,upper_fx,0.0018198802135884762 +illusion_1L,ppo,134,40.2,force,upper_fy,0.0038330249954015017 +illusion_1L,ppo,134,40.2,force,lower_fx,0.0018687889678403735 +illusion_1L,ppo,134,40.2,force,lower_fy,-0.0016713158693164587 +illusion_1L,ppo,135,40.5,force,front_fx,0.0022441588807851076 +illusion_1L,ppo,135,40.5,force,front_fy,-0.000512869912199676 +illusion_1L,ppo,135,40.5,force,upper_fx,0.0016486006788909435 +illusion_1L,ppo,135,40.5,force,upper_fy,0.0038322806358337402 +illusion_1L,ppo,135,40.5,force,lower_fx,0.001988131320104003 +illusion_1L,ppo,135,40.5,force,lower_fy,-0.0018640706548467278 +illusion_1L,ppo,136,40.8,force,front_fx,0.00229238742031157 +illusion_1L,ppo,136,40.8,force,front_fy,-0.0006130553083494306 +illusion_1L,ppo,136,40.8,force,upper_fx,0.0014573935186490417 +illusion_1L,ppo,136,40.8,force,upper_fy,0.003818886587396264 +illusion_1L,ppo,136,40.8,force,lower_fx,0.0021172186825424433 +illusion_1L,ppo,136,40.8,force,lower_fy,-0.0021542126778513193 +illusion_1L,ppo,137,41.1,force,front_fx,0.0023280386812984943 +illusion_1L,ppo,137,41.1,force,front_fy,-0.0007124260300770402 +illusion_1L,ppo,137,41.1,force,upper_fx,0.0012510172091424465 +illusion_1L,ppo,137,41.1,force,upper_fy,0.0037718010134994984 +illusion_1L,ppo,137,41.1,force,lower_fx,0.002248231088742614 +illusion_1L,ppo,137,41.1,force,lower_fy,-0.0025084444787353277 +illusion_1L,ppo,138,41.4,force,front_fx,0.0023426362313330173 +illusion_1L,ppo,138,41.4,force,front_fy,-0.0007942486554384232 +illusion_1L,ppo,138,41.4,force,upper_fx,0.0010482686338946223 +illusion_1L,ppo,138,41.4,force,upper_fy,0.0036605484783649445 +illusion_1L,ppo,138,41.4,force,lower_fx,0.0023723270278424025 +illusion_1L,ppo,138,41.4,force,lower_fy,-0.002880988409742713 +illusion_1L,ppo,139,41.7,force,front_fx,0.0023177561815828085 +illusion_1L,ppo,139,41.7,force,front_fy,-0.0008541496354155242 +illusion_1L,ppo,139,41.7,force,upper_fx,0.0008776652975939214 +illusion_1L,ppo,139,41.7,force,upper_fy,0.0034675495699048042 +illusion_1L,ppo,139,41.7,force,lower_fx,0.002479047980159521 +illusion_1L,ppo,139,41.7,force,lower_fy,-0.0032195127569139004 +illusion_1L,ppo,140,42.0,force,front_fx,0.002255544299259782 +illusion_1L,ppo,140,42.0,force,front_fy,-0.0008917786763049662 +illusion_1L,ppo,140,42.0,force,upper_fx,0.0007696315296925604 +illusion_1L,ppo,140,42.0,force,upper_fy,0.0032095008064061403 +illusion_1L,ppo,140,42.0,force,lower_fx,0.0025700314436107874 +illusion_1L,ppo,140,42.0,force,lower_fy,-0.003462625667452812 +illusion_1L,ppo,141,42.3,force,front_fx,0.0021720603108406067 +illusion_1L,ppo,141,42.3,force,front_fy,-0.0009032243397086859 +illusion_1L,ppo,141,42.3,force,upper_fx,0.0007520427461713552 +illusion_1L,ppo,141,42.3,force,upper_fy,0.002918118378147483 +illusion_1L,ppo,141,42.3,force,lower_fx,0.002651298651471734 +illusion_1L,ppo,141,42.3,force,lower_fy,-0.0035781702026724815 +illusion_1L,ppo,142,42.6,force,front_fx,0.002086662920191884 +illusion_1L,ppo,142,42.6,force,front_fy,-0.0008955298690125346 +illusion_1L,ppo,142,42.6,force,upper_fx,0.0008221773896366358 +illusion_1L,ppo,142,42.6,force,upper_fy,0.0026253375690430403 +illusion_1L,ppo,142,42.6,force,lower_fx,0.0027146402280777693 +illusion_1L,ppo,142,42.6,force,lower_fy,-0.003580948105081916 +illusion_1L,ppo,143,42.9,force,front_fx,0.002015607664361596 +illusion_1L,ppo,143,42.9,force,front_fy,-0.0008698037127032876 +illusion_1L,ppo,143,42.9,force,upper_fx,0.0009413238149136305 +illusion_1L,ppo,143,42.9,force,upper_fy,0.00236812187358737 +illusion_1L,ppo,143,42.9,force,lower_fx,0.0027390450704842806 +illusion_1L,ppo,143,42.9,force,lower_fy,-0.003517440054565668 +illusion_1L,ppo,144,43.2,force,front_fx,0.0019665218424052 +illusion_1L,ppo,144,43.2,force,front_fy,-0.0008193883113563061 +illusion_1L,ppo,144,43.2,force,upper_fx,0.0010790067026391625 +illusion_1L,ppo,144,43.2,force,upper_fy,0.002179833361878991 +illusion_1L,ppo,144,43.2,force,lower_fx,0.0027125049382448196 +illusion_1L,ppo,144,43.2,force,lower_fy,-0.0034400387667119503 +illusion_1L,ppo,145,43.5,force,front_fx,0.00193637830670923 +illusion_1L,ppo,145,43.5,force,front_fy,-0.0007457658066414297 +illusion_1L,ppo,145,43.5,force,upper_fx,0.0012267451966181397 +illusion_1L,ppo,145,43.5,force,upper_fy,0.002080796053633094 +illusion_1L,ppo,145,43.5,force,lower_fx,0.0026432923041284084 +illusion_1L,ppo,145,43.5,force,lower_fy,-0.003386423224583268 +illusion_1L,ppo,146,43.8,force,front_fx,0.0019153277389705181 +illusion_1L,ppo,146,43.8,force,front_fy,-0.000649717403575778 +illusion_1L,ppo,146,43.8,force,upper_fx,0.0013716707471758127 +illusion_1L,ppo,146,43.8,force,upper_fy,0.002080619800835848 +illusion_1L,ppo,146,43.8,force,lower_fx,0.002546998905017972 +illusion_1L,ppo,146,43.8,force,lower_fy,-0.003358588321134448 +illusion_1L,ppo,147,44.1,force,front_fx,0.0018975858110934496 +illusion_1L,ppo,147,44.1,force,front_fy,-0.0005283364444039762 +illusion_1L,ppo,147,44.1,force,upper_fx,0.0015027184272184968 +illusion_1L,ppo,147,44.1,force,upper_fy,0.002175412140786648 +illusion_1L,ppo,147,44.1,force,lower_fx,0.0024351077154278755 +illusion_1L,ppo,147,44.1,force,lower_fy,-0.0033294144086539745 +illusion_1L,ppo,148,44.4,force,front_fx,0.00188637082464993 +illusion_1L,ppo,148,44.4,force,front_fy,-0.00038244042661972344 +illusion_1L,ppo,148,44.4,force,upper_fx,0.0016181585378944874 +illusion_1L,ppo,148,44.4,force,upper_fy,0.002338930033147335 +illusion_1L,ppo,148,44.4,force,lower_fx,0.0023102390114217997 +illusion_1L,ppo,148,44.4,force,lower_fy,-0.0032741869799792767 +illusion_1L,ppo,149,44.7,force,front_fx,0.0018837550887838006 +illusion_1L,ppo,149,44.7,force,front_fy,-0.0002177029091399163 +illusion_1L,ppo,149,44.7,force,upper_fx,0.001723927678540349 +illusion_1L,ppo,149,44.7,force,upper_fy,0.0025381017476320267 +illusion_1L,ppo,149,44.7,force,lower_fx,0.0021667559631168842 +illusion_1L,ppo,149,44.7,force,lower_fy,-0.0031849138904362917 +illusion_1L,ppo,150,45.0,force,front_fx,0.0018889731727540493 +illusion_1L,ppo,150,45.0,force,front_fy,-4.854817962041125e-05 +illusion_1L,ppo,150,45.0,force,upper_fx,0.0018232152797281742 +illusion_1L,ppo,150,45.0,force,upper_fy,0.002745541511103511 +illusion_1L,ppo,150,45.0,force,lower_fx,0.0020043381955474615 +illusion_1L,ppo,150,45.0,force,lower_fy,-0.003059586975723505 +illusion_1L,ppo,151,45.3,force,front_fx,0.0018960845191031694 +illusion_1L,ppo,151,45.3,force,front_fy,9.462878369959071e-05 +illusion_1L,ppo,151,45.3,force,upper_fx,0.0019205689895898104 +illusion_1L,ppo,151,45.3,force,upper_fy,0.0029442596714943647 +illusion_1L,ppo,151,45.3,force,lower_fx,0.001845537219196558 +illusion_1L,ppo,151,45.3,force,lower_fy,-0.0028895135037600994 +illusion_1L,ppo,152,45.6,force,front_fx,0.001902219490148127 +illusion_1L,ppo,152,45.6,force,front_fy,0.00017401071090716869 +illusion_1L,ppo,152,45.6,force,upper_fx,0.0020143496803939342 +illusion_1L,ppo,152,45.6,force,upper_fy,0.0031300971750169992 +illusion_1L,ppo,152,45.6,force,lower_fx,0.001726582064293325 +illusion_1L,ppo,152,45.6,force,lower_fy,-0.002664896659553051 +illusion_1L,ppo,153,45.9,force,front_fx,0.0019005048088729382 +illusion_1L,ppo,153,45.9,force,front_fy,0.00017266074428334832 +illusion_1L,ppo,153,45.9,force,upper_fx,0.0020893835462629795 +illusion_1L,ppo,153,45.9,force,upper_fy,0.003309163497760892 +illusion_1L,ppo,153,45.9,force,lower_fx,0.0016651443438604474 +illusion_1L,ppo,153,45.9,force,lower_fy,-0.002399713732302189 +illusion_1L,ppo,154,46.2,force,front_fx,0.001900062314234674 +illusion_1L,ppo,154,46.2,force,front_fy,9.593606955604628e-05 +illusion_1L,ppo,154,46.2,force,upper_fx,0.002123591722920537 +illusion_1L,ppo,154,46.2,force,upper_fy,0.003479589242488146 +illusion_1L,ppo,154,46.2,force,lower_fx,0.0016488080145791173 +illusion_1L,ppo,154,46.2,force,lower_fy,-0.002133490750566125 +illusion_1L,ppo,155,46.5,force,front_fx,0.0019248937023803592 +illusion_1L,ppo,155,46.5,force,front_fy,-2.2268784960033372e-05 +illusion_1L,ppo,155,46.5,force,upper_fx,0.002109491964802146 +illusion_1L,ppo,155,46.5,force,upper_fy,0.0036249514669179916 +illusion_1L,ppo,155,46.5,force,lower_fx,0.0016599748050794005 +illusion_1L,ppo,155,46.5,force,lower_fy,-0.0019032064592465758 +illusion_1L,ppo,156,46.8,force,front_fx,0.0019739330746233463 +illusion_1L,ppo,156,46.8,force,front_fy,-0.00014186190674081445 +illusion_1L,ppo,156,46.8,force,upper_fx,0.0020511725451797247 +illusion_1L,ppo,156,46.8,force,upper_fy,0.003728026058524847 +illusion_1L,ppo,156,46.8,force,lower_fx,0.0016926644602790475 +illusion_1L,ppo,156,46.8,force,lower_fy,-0.0017270819516852498 +illusion_1L,ppo,157,47.1,force,front_fx,0.0020495986100286245 +illusion_1L,ppo,157,47.1,force,front_fy,-0.0002557480474933982 +illusion_1L,ppo,157,47.1,force,upper_fx,0.0019506114767864347 +illusion_1L,ppo,157,47.1,force,upper_fy,0.0037902863696217537 +illusion_1L,ppo,157,47.1,force,lower_fx,0.0017459511291235685 +illusion_1L,ppo,157,47.1,force,lower_fy,-0.0016148386057466269 +illusion_1L,ppo,158,47.4,force,front_fx,0.0021344716660678387 +illusion_1L,ppo,158,47.4,force,front_fy,-0.00036266024108044803 +illusion_1L,ppo,158,47.4,force,upper_fx,0.0018155700527131557 +illusion_1L,ppo,158,47.4,force,upper_fy,0.003828815184533596 +illusion_1L,ppo,158,47.4,force,lower_fx,0.0018171260599046946 +illusion_1L,ppo,158,47.4,force,lower_fy,-0.001582452212460339 +illusion_1L,ppo,159,47.7,force,front_fx,0.0022073588334023952 +illusion_1L,ppo,159,47.7,force,front_fy,-0.00047247574548237026 +illusion_1L,ppo,159,47.7,force,upper_fx,0.0016617130022495985 +illusion_1L,ppo,159,47.7,force,upper_fy,0.003853426780551672 +illusion_1L,ppo,159,47.7,force,lower_fx,0.0019077113829553127 +illusion_1L,ppo,159,47.7,force,lower_fy,-0.0016487379325553775 +illusion_1L,ppo,160,48.0,force,front_fx,0.002284497721120715 +illusion_1L,ppo,160,48.0,force,front_fy,-0.0005856482894159853 +illusion_1L,ppo,160,48.0,force,upper_fx,0.0014965314185246825 +illusion_1L,ppo,160,48.0,force,upper_fy,0.003863874590024352 +illusion_1L,ppo,160,48.0,force,lower_fx,0.002017438877373934 +illusion_1L,ppo,160,48.0,force,lower_fy,-0.0018203856889158487 +illusion_1L,ppo,161,48.3,force,front_fx,0.0023450839798897505 +illusion_1L,ppo,161,48.3,force,front_fy,-0.0007008357206359506 +illusion_1L,ppo,161,48.3,force,upper_fx,0.001312343287281692 +illusion_1L,ppo,161,48.3,force,upper_fy,0.003853756934404373 +illusion_1L,ppo,161,48.3,force,lower_fx,0.0021344644483178854 +illusion_1L,ppo,161,48.3,force,lower_fy,-0.0020834740716964006 +illusion_1L,ppo,162,48.6,force,front_fx,0.002386474283412099 +illusion_1L,ppo,162,48.6,force,front_fy,-0.0007850825786590576 +illusion_1L,ppo,162,48.6,force,upper_fx,0.0011146271135658026 +illusion_1L,ppo,162,48.6,force,upper_fy,0.003794342279434204 +illusion_1L,ppo,162,48.6,force,lower_fx,0.00224728649482131 +illusion_1L,ppo,162,48.6,force,lower_fy,-0.0024021633435040712 +illusion_1L,ppo,163,48.9,force,front_fx,0.0023794351145625114 +illusion_1L,ppo,163,48.9,force,front_fy,-0.0008337732288055122 +illusion_1L,ppo,163,48.9,force,upper_fx,0.0009366172598674893 +illusion_1L,ppo,163,48.9,force,upper_fy,0.0036522476002573967 +illusion_1L,ppo,163,48.9,force,lower_fx,0.0023461985401809216 +illusion_1L,ppo,163,48.9,force,lower_fy,-0.002737678587436676 +illusion_1L,ppo,164,49.2,force,front_fx,0.0023309888783842325 +illusion_1L,ppo,164,49.2,force,front_fy,-0.0008692194824106991 +illusion_1L,ppo,164,49.2,force,upper_fx,0.0008119624690152705 +illusion_1L,ppo,164,49.2,force,upper_fy,0.0034291669726371765 +illusion_1L,ppo,164,49.2,force,lower_fx,0.002434668131172657 +illusion_1L,ppo,164,49.2,force,lower_fy,-0.003031125059351325 +illusion_1L,ppo,165,49.5,force,front_fx,0.0022429446689784527 +illusion_1L,ppo,165,49.5,force,front_fy,-0.0008749289554543793 +illusion_1L,ppo,165,49.5,force,upper_fx,0.0007641486590728164 +illusion_1L,ppo,165,49.5,force,upper_fy,0.0031563173979520798 +illusion_1L,ppo,165,49.5,force,lower_fx,0.0025111837312579155 +illusion_1L,ppo,165,49.5,force,lower_fy,-0.0032424358651041985 +illusion_1L,ppo,166,49.8,force,front_fx,0.0021405701991170645 +illusion_1L,ppo,166,49.8,force,front_fy,-0.0008711463306099176 +illusion_1L,ppo,166,49.8,force,upper_fx,0.0008043595007620752 +illusion_1L,ppo,166,49.8,force,upper_fy,0.0028599530924111605 +illusion_1L,ppo,166,49.8,force,lower_fx,0.002577301347628236 +illusion_1L,ppo,166,49.8,force,lower_fy,-0.0033574611879885197 +illusion_1L,ppo,167,50.1,force,front_fx,0.0020539250690490007 +illusion_1L,ppo,167,50.1,force,front_fy,-0.0008568390039727092 +illusion_1L,ppo,167,50.1,force,upper_fx,0.0009083689074032009 +illusion_1L,ppo,167,50.1,force,upper_fy,0.0025723467115312815 +illusion_1L,ppo,167,50.1,force,lower_fx,0.002626468427479267 +illusion_1L,ppo,167,50.1,force,lower_fy,-0.003391822101548314 +illusion_1L,ppo,168,50.4,force,front_fx,0.0019906405359506607 +illusion_1L,ppo,168,50.4,force,front_fy,-0.0008256331202574074 +illusion_1L,ppo,168,50.4,force,upper_fx,0.0010335200931876898 +illusion_1L,ppo,168,50.4,force,upper_fy,0.0023283411283046007 +illusion_1L,ppo,168,50.4,force,lower_fx,0.0026376498863101006 +illusion_1L,ppo,168,50.4,force,lower_fy,-0.0033842059783637524 +illusion_1L,ppo,169,50.7,force,front_fx,0.001948146615177393 +illusion_1L,ppo,169,50.7,force,front_fy,-0.0007720337598584592 +illusion_1L,ppo,169,50.7,force,upper_fx,0.001157470396719873 +illusion_1L,ppo,169,50.7,force,upper_fy,0.0021488338243216276 +illusion_1L,ppo,169,50.7,force,lower_fx,0.002595414873212576 +illusion_1L,ppo,169,50.7,force,lower_fy,-0.0033730959985405207 +illusion_1L,ppo,170,51.0,force,front_fx,0.001920055947266519 +illusion_1L,ppo,170,51.0,force,front_fy,-0.0006958539597690105 +illusion_1L,ppo,170,51.0,force,upper_fx,0.001277959905564785 +illusion_1L,ppo,170,51.0,force,upper_fy,0.002046318957582116 +illusion_1L,ppo,170,51.0,force,lower_fx,0.002512621460482478 +illusion_1L,ppo,170,51.0,force,lower_fy,-0.0033702929504215717 +illusion_1L,ppo,171,51.3,force,front_fx,0.001901924260891974 +illusion_1L,ppo,171,51.3,force,front_fy,-0.0005957258981652558 +illusion_1L,ppo,171,51.3,force,upper_fx,0.0013955013127997518 +illusion_1L,ppo,171,51.3,force,upper_fy,0.0020302876364439726 +illusion_1L,ppo,171,51.3,force,lower_fx,0.002412168076261878 +illusion_1L,ppo,171,51.3,force,lower_fy,-0.0033648808021098375 +illusion_1L,ppo,172,51.6,force,front_fx,0.001890698098577559 +illusion_1L,ppo,172,51.6,force,front_fy,-0.00047247743350453675 +illusion_1L,ppo,172,51.6,force,upper_fx,0.0015074275434017181 +illusion_1L,ppo,172,51.6,force,upper_fy,0.00209757499396801 +illusion_1L,ppo,172,51.6,force,lower_fx,0.002301890170201659 +illusion_1L,ppo,172,51.6,force,lower_fy,-0.0033422743435949087 +illusion_1L,ppo,173,51.9,force,front_fx,0.0018867321778088808 +illusion_1L,ppo,173,51.9,force,front_fy,-0.00032737330184318125 +illusion_1L,ppo,173,51.9,force,upper_fx,0.0016141424421221018 +illusion_1L,ppo,173,51.9,force,upper_fy,0.0022275845985859632 +illusion_1L,ppo,173,51.9,force,lower_fx,0.0021799872629344463 +illusion_1L,ppo,173,51.9,force,lower_fy,-0.0032917007338255644 +illusion_1L,ppo,174,52.2,force,front_fx,0.001895122928544879 +illusion_1L,ppo,174,52.2,force,front_fy,-0.0001660199777688831 +illusion_1L,ppo,174,52.2,force,upper_fx,0.0017198397545143962 +illusion_1L,ppo,174,52.2,force,upper_fy,0.0023965290747582912 +illusion_1L,ppo,174,52.2,force,lower_fx,0.002047728281468153 +illusion_1L,ppo,174,52.2,force,lower_fy,-0.0032081056851893663 +illusion_1L,ppo,175,52.5,force,front_fx,0.001908144331537187 +illusion_1L,ppo,175,52.5,force,front_fy,-1.1372451808711048e-05 +illusion_1L,ppo,175,52.5,force,upper_fx,0.0018238442717120051 +illusion_1L,ppo,175,52.5,force,upper_fy,0.002591714495792985 +illusion_1L,ppo,175,52.5,force,lower_fx,0.0019114313181489706 +illusion_1L,ppo,175,52.5,force,lower_fy,-0.003088243305683136 +illusion_1L,ppo,176,52.8,force,front_fx,0.0019135590409860015 +illusion_1L,ppo,176,52.8,force,front_fy,0.00010323970491299406 +illusion_1L,ppo,176,52.8,force,upper_fx,0.0019166215788573027 +illusion_1L,ppo,176,52.8,force,upper_fy,0.002808330347761512 +illusion_1L,ppo,176,52.8,force,lower_fx,0.0017862255917862058 +illusion_1L,ppo,176,52.8,force,lower_fy,-0.002918608020991087 +illusion_1L,ppo,177,53.1,force,front_fx,0.0019026882946491241 +illusion_1L,ppo,177,53.1,force,front_fy,0.0001435102749383077 +illusion_1L,ppo,177,53.1,force,upper_fx,0.0019892954733222723 +illusion_1L,ppo,177,53.1,force,upper_fy,0.003039912087842822 +illusion_1L,ppo,177,53.1,force,lower_fx,0.0016988720744848251 +illusion_1L,ppo,177,53.1,force,lower_fy,-0.002687603933736682 +illusion_1L,ppo,178,53.4,force,front_fx,0.001884662895463407 +illusion_1L,ppo,178,53.4,force,front_fy,9.880018478725106e-05 +illusion_1L,ppo,178,53.4,force,upper_fx,0.0020354995504021645 +illusion_1L,ppo,178,53.4,force,upper_fy,0.003275699680671096 +illusion_1L,ppo,178,53.4,force,lower_fx,0.0016642679693177342 +illusion_1L,ppo,178,53.4,force,lower_fy,-0.0024155774153769016 +illusion_1L,ppo,179,53.7,force,front_fx,0.0018809986067935824 +illusion_1L,ppo,179,53.7,force,front_fy,8.983062116385554e-07 +illusion_1L,ppo,179,53.7,force,upper_fx,0.0020473687909543514 +illusion_1L,ppo,179,53.7,force,upper_fy,0.0034944533836096525 +illusion_1L,ppo,179,53.7,force,lower_fx,0.0016675805673003197 +illusion_1L,ppo,179,53.7,force,lower_fy,-0.0021484470926225185 +illusion_1L,ppo,180,54.0,force,front_fx,0.0019107689149677753 +illusion_1L,ppo,180,54.0,force,front_fy,-0.00011182481102878228 +illusion_1L,ppo,180,54.0,force,upper_fx,0.002018911298364401 +illusion_1L,ppo,180,54.0,force,upper_fy,0.003665054216980934 +illusion_1L,ppo,180,54.0,force,lower_fx,0.001689055934548378 +illusion_1L,ppo,180,54.0,force,lower_fy,-0.0019177324138581753 +illusion_1L,ppo,181,54.3,force,front_fx,0.0019770232029259205 +illusion_1L,ppo,181,54.3,force,front_fy,-0.0002164981997339055 +illusion_1L,ppo,181,54.3,force,upper_fx,0.0019504439551383257 +illusion_1L,ppo,181,54.3,force,upper_fy,0.0037704959977418184 +illusion_1L,ppo,181,54.3,force,lower_fx,0.001727175316773355 +illusion_1L,ppo,181,54.3,force,lower_fy,-0.0017305586952716112 +illusion_1L,ppo,182,54.6,force,front_fx,0.0020652597304433584 +illusion_1L,ppo,182,54.6,force,front_fy,-0.00030507019255310297 +illusion_1L,ppo,182,54.6,force,upper_fx,0.0018530308734625578 +illusion_1L,ppo,182,54.6,force,upper_fy,0.0038317223079502583 +illusion_1L,ppo,182,54.6,force,lower_fx,0.0017834485042840242 +illusion_1L,ppo,182,54.6,force,lower_fy,-0.0015993611887097359 +illusion_1L,ppo,183,54.9,force,front_fx,0.002159565221518278 +illusion_1L,ppo,183,54.9,force,front_fy,-0.00040612404700368643 +illusion_1L,ppo,183,54.9,force,upper_fx,0.0017270660027861595 +illusion_1L,ppo,183,54.9,force,upper_fy,0.0038669828791171312 +illusion_1L,ppo,183,54.9,force,lower_fx,0.0018517982680350542 +illusion_1L,ppo,183,54.9,force,lower_fy,-0.0015572917181998491 +illusion_1L,ppo,184,55.2,force,front_fx,0.002242031041532755 +illusion_1L,ppo,184,55.2,force,front_fy,-0.0005157050909474492 +illusion_1L,ppo,184,55.2,force,upper_fx,0.001582035911269486 +illusion_1L,ppo,184,55.2,force,upper_fy,0.003882965538650751 +illusion_1L,ppo,184,55.2,force,lower_fx,0.0019322315929457545 +illusion_1L,ppo,184,55.2,force,lower_fy,-0.0016290853964164853 +illusion_1L,ppo,185,55.5,force,front_fx,0.0023148697800934315 +illusion_1L,ppo,185,55.5,force,front_fy,-0.0006248251302167773 +illusion_1L,ppo,185,55.5,force,upper_fx,0.001420290325768292 +illusion_1L,ppo,185,55.5,force,upper_fy,0.003876627655699849 +illusion_1L,ppo,185,55.5,force,lower_fx,0.002029895083978772 +illusion_1L,ppo,185,55.5,force,lower_fy,-0.0018106319475919008 +illusion_1L,ppo,186,55.8,force,front_fx,0.002369615714997053 +illusion_1L,ppo,186,55.8,force,front_fy,-0.000722357421182096 +illusion_1L,ppo,186,55.8,force,upper_fx,0.001238259021192789 +illusion_1L,ppo,186,55.8,force,upper_fy,0.0038462411612272263 +illusion_1L,ppo,186,55.8,force,lower_fx,0.002141089178621769 +illusion_1L,ppo,186,55.8,force,lower_fy,-0.0020807271357625723 +illusion_1L,ppo,187,56.1,force,front_fx,0.002396891824901104 +illusion_1L,ppo,187,56.1,force,front_fy,-0.0007954374304972589 +illusion_1L,ppo,187,56.1,force,upper_fx,0.001044873846694827 +illusion_1L,ppo,187,56.1,force,upper_fy,0.0037732983473688364 +illusion_1L,ppo,187,56.1,force,lower_fx,0.0022522977087646723 +illusion_1L,ppo,187,56.1,force,lower_fy,-0.0024093971587717533 +illusion_1L,ppo,188,56.4,force,front_fx,0.002381620928645134 +illusion_1L,ppo,188,56.4,force,front_fy,-0.0008341872598975897 +illusion_1L,ppo,188,56.4,force,upper_fx,0.000877990503795445 +illusion_1L,ppo,188,56.4,force,upper_fy,0.003625422017648816 +illusion_1L,ppo,188,56.4,force,lower_fx,0.0023523445706814528 +illusion_1L,ppo,188,56.4,force,lower_fy,-0.002754353219643235 +illusion_1L,ppo,189,56.7,force,front_fx,0.0023212553933262825 +illusion_1L,ppo,189,56.7,force,front_fy,-0.0008464130805805326 +illusion_1L,ppo,189,56.7,force,upper_fx,0.0007784257177263498 +illusion_1L,ppo,189,56.7,force,upper_fy,0.003398349741473794 +illusion_1L,ppo,189,56.7,force,lower_fx,0.002442149445414543 +illusion_1L,ppo,189,56.7,force,lower_fy,-0.003059899900108576 +illusion_1L,ppo,190,57.0,force,front_fx,0.0022291485220193863 +illusion_1L,ppo,190,57.0,force,front_fy,-0.0008505776640959084 +illusion_1L,ppo,190,57.0,force,upper_fx,0.0007642579730600119 +illusion_1L,ppo,190,57.0,force,upper_fy,0.0031215716153383255 +illusion_1L,ppo,190,57.0,force,lower_fx,0.0025223586708307266 +illusion_1L,ppo,190,57.0,force,lower_fy,-0.003282124176621437 +illusion_1L,ppo,191,57.3,force,front_fx,0.002122770296409726 +illusion_1L,ppo,191,57.3,force,front_fy,-0.000848064199090004 +illusion_1L,ppo,191,57.3,force,upper_fx,0.0008252629195339978 +illusion_1L,ppo,191,57.3,force,upper_fy,0.0028279200196266174 +illusion_1L,ppo,191,57.3,force,lower_fx,0.0025876362342387438 +illusion_1L,ppo,191,57.3,force,lower_fy,-0.003404774237424135 +illusion_1L,ppo,192,57.6,force,front_fx,0.0020344960503280163 +illusion_1L,ppo,192,57.6,force,front_fy,-0.0008378145867027342 +illusion_1L,ppo,192,57.6,force,upper_fx,0.0009287216234952211 +illusion_1L,ppo,192,57.6,force,upper_fy,0.0025461080949753523 +illusion_1L,ppo,192,57.6,force,lower_fx,0.002628160174936056 +illusion_1L,ppo,192,57.6,force,lower_fy,-0.00343989091925323 +illusion_1L,ppo,193,57.9,force,front_fx,0.0019713921938091516 +illusion_1L,ppo,193,57.9,force,front_fy,-0.0008116092067211866 +illusion_1L,ppo,193,57.9,force,upper_fx,0.001045741606503725 +illusion_1L,ppo,193,57.9,force,upper_fy,0.0023026703856885433 +illusion_1L,ppo,193,57.9,force,lower_fx,0.0026290034875273705 +illusion_1L,ppo,193,57.9,force,lower_fy,-0.0034245983697474003 +illusion_1L,ppo,194,58.2,force,front_fx,0.0019324950408190489 +illusion_1L,ppo,194,58.2,force,front_fy,-0.0007603695266880095 +illusion_1L,ppo,194,58.2,force,upper_fx,0.00116374169010669 +illusion_1L,ppo,194,58.2,force,upper_fy,0.002121599158272147 +illusion_1L,ppo,194,58.2,force,lower_fx,0.0025815130211412907 +illusion_1L,ppo,194,58.2,force,lower_fy,-0.0033999911975115538 +illusion_1L,ppo,195,58.5,force,front_fx,0.0019096999894827604 +illusion_1L,ppo,195,58.5,force,front_fy,-0.0006843743030913174 +illusion_1L,ppo,195,58.5,force,upper_fx,0.0012802466517314315 +illusion_1L,ppo,195,58.5,force,upper_fy,0.002022820757701993 +illusion_1L,ppo,195,58.5,force,lower_fx,0.0024982397444546223 +illusion_1L,ppo,195,58.5,force,lower_fy,-0.0033811707980930805 +illusion_1L,ppo,196,58.8,force,front_fx,0.0018977379659190774 +illusion_1L,ppo,196,58.8,force,front_fy,-0.0005855713970959187 +illusion_1L,ppo,196,58.8,force,upper_fx,0.0013992823660373688 +illusion_1L,ppo,196,58.8,force,upper_fy,0.00201523513533175 +illusion_1L,ppo,196,58.8,force,lower_fx,0.0024039102718234062 +illusion_1L,ppo,196,58.8,force,lower_fy,-0.0033559338189661503 +illusion_1L,ppo,197,59.1,force,front_fx,0.0018940436420962214 +illusion_1L,ppo,197,59.1,force,front_fy,-0.0004623244167305529 +illusion_1L,ppo,197,59.1,force,upper_fx,0.0015216260217130184 +illusion_1L,ppo,197,59.1,force,upper_fy,0.002095589879900217 +illusion_1L,ppo,197,59.1,force,lower_fx,0.0023084785789251328 +illusion_1L,ppo,197,59.1,force,lower_fy,-0.0033126664347946644 +illusion_1L,ppo,198,59.4,force,front_fx,0.0018943333998322487 +illusion_1L,ppo,198,59.4,force,front_fy,-0.00031649222364649177 +illusion_1L,ppo,198,59.4,force,upper_fx,0.0016384903574362397 +illusion_1L,ppo,198,59.4,force,upper_fy,0.0022470911499112844 +illusion_1L,ppo,198,59.4,force,lower_fx,0.0021997932344675064 +illusion_1L,ppo,198,59.4,force,lower_fy,-0.0032497704960405827 +illusion_1L,ppo,199,59.7,force,front_fx,0.0018986862851306796 +illusion_1L,ppo,199,59.7,force,front_fy,-0.0001575217756908387 +illusion_1L,ppo,199,59.7,force,upper_fx,0.001744134584441781 +illusion_1L,ppo,199,59.7,force,upper_fy,0.0024436169769614935 +illusion_1L,ppo,199,59.7,force,lower_fx,0.0020687254145741463 +illusion_1L,ppo,199,59.7,force,lower_fy,-0.003162927459925413 +illusion_1L,ppo,200,60.0,force,front_fx,0.0019020908512175083 +illusion_1L,ppo,200,60.0,force,front_fy,-6.4890064095379785e-06 +illusion_1L,ppo,200,60.0,force,upper_fx,0.0018405801383778453 +illusion_1L,ppo,200,60.0,force,upper_fy,0.0026644293684512377 +illusion_1L,ppo,200,60.0,force,lower_fx,0.0019260350381955504 +illusion_1L,ppo,200,60.0,force,lower_fy,-0.0030399456154555082 +illusion_1L,ppo,201,60.3,force,front_fx,0.0019013704732060432 +illusion_1L,ppo,201,60.3,force,front_fy,0.00010563350951997563 +illusion_1L,ppo,201,60.3,force,upper_fx,0.0019265387672930956 +illusion_1L,ppo,201,60.3,force,upper_fy,0.002900118473917246 +illusion_1L,ppo,201,60.3,force,lower_fx,0.0017960035474970937 +illusion_1L,ppo,201,60.3,force,lower_fy,-0.002866108436137438 +illusion_1L,ppo,202,60.6,force,front_fx,0.0018882183358073235 +illusion_1L,ppo,202,60.6,force,front_fy,0.00013652512279804796 +illusion_1L,ppo,202,60.6,force,upper_fx,0.001994503429159522 +illusion_1L,ppo,202,60.6,force,upper_fy,0.003147660056129098 +illusion_1L,ppo,202,60.6,force,lower_fx,0.0017049025045707822 +illusion_1L,ppo,202,60.6,force,lower_fy,-0.002635273151099682 +illusion_1L,ppo,203,60.9,force,front_fx,0.0018736100755631924 +illusion_1L,ppo,203,60.9,force,front_fy,8.680669270688668e-05 +illusion_1L,ppo,203,60.9,force,upper_fx,0.0020377819892019033 +illusion_1L,ppo,203,60.9,force,upper_fy,0.0033931604120880365 +illusion_1L,ppo,203,60.9,force,lower_fx,0.0016666364390403032 +illusion_1L,ppo,203,60.9,force,lower_fy,-0.0023666415363550186 +illusion_1L,ppo,204,61.2,force,front_fx,0.0018821139819920063 +illusion_1L,ppo,204,61.2,force,front_fy,-1.2280449482204858e-05 +illusion_1L,ppo,204,61.2,force,upper_fx,0.002052807714790106 +illusion_1L,ppo,204,61.2,force,upper_fy,0.0036070251371711493 +illusion_1L,ppo,204,61.2,force,lower_fx,0.001671278034336865 +illusion_1L,ppo,204,61.2,force,lower_fy,-0.0021028986666351557 +illusion_1L,ppo,205,61.5,force,front_fx,0.0019257329404354095 +illusion_1L,ppo,205,61.5,force,front_fy,-0.00011944080324610695 +illusion_1L,ppo,205,61.5,force,upper_fx,0.0020314313005656004 +illusion_1L,ppo,205,61.5,force,upper_fy,0.003760728519409895 +illusion_1L,ppo,205,61.5,force,lower_fx,0.0016969296848401427 +illusion_1L,ppo,205,61.5,force,lower_fy,-0.0018795605283230543 +illusion_1L,ppo,206,61.8,force,front_fx,0.0019998475909233093 +illusion_1L,ppo,206,61.8,force,front_fy,-0.00021938778809271753 +illusion_1L,ppo,206,61.8,force,upper_fx,0.0019650887697935104 +illusion_1L,ppo,206,61.8,force,upper_fy,0.0038485033437609673 +illusion_1L,ppo,206,61.8,force,lower_fx,0.001733967219479382 +illusion_1L,ppo,206,61.8,force,lower_fy,-0.0017072439659386873 +illusion_1L,ppo,207,62.1,force,front_fx,0.0020880913361907005 +illusion_1L,ppo,207,62.1,force,front_fy,-0.0003152827266603708 +illusion_1L,ppo,207,62.1,force,upper_fx,0.001858430914580822 +illusion_1L,ppo,207,62.1,force,upper_fy,0.003886645659804344 +illusion_1L,ppo,207,62.1,force,lower_fx,0.0017844138201326132 +illusion_1L,ppo,207,62.1,force,lower_fy,-0.0015964906197041273 +illusion_1L,ppo,208,62.4,force,front_fx,0.0021744247060269117 +illusion_1L,ppo,208,62.4,force,front_fy,-0.00041315428097732365 +illusion_1L,ppo,208,62.4,force,upper_fx,0.0017262115143239498 +illusion_1L,ppo,208,62.4,force,upper_fy,0.00389649230055511 +illusion_1L,ppo,208,62.4,force,lower_fx,0.0018522640457376838 +illusion_1L,ppo,208,62.4,force,lower_fy,-0.0015777944354340434 +illusion_1L,ppo,209,62.7,force,front_fx,0.0022481298074126244 +illusion_1L,ppo,209,62.7,force,front_fy,-0.0005197693244554102 +illusion_1L,ppo,209,62.7,force,upper_fx,0.001577344723045826 +illusion_1L,ppo,209,62.7,force,upper_fy,0.003891285276040435 +illusion_1L,ppo,209,62.7,force,lower_fx,0.0019413623958826065 +illusion_1L,ppo,209,62.7,force,lower_fy,-0.0016747901681810617 +illusion_1L,ppo,210,63.0,force,front_fx,0.0023149503394961357 +illusion_1L,ppo,210,63.0,force,front_fy,-0.0006272255559451878 +illusion_1L,ppo,210,63.0,force,upper_fx,0.0014110637130215764 +illusion_1L,ppo,210,63.0,force,upper_fy,0.003873885376378894 +illusion_1L,ppo,210,63.0,force,lower_fx,0.0020491972099989653 +illusion_1L,ppo,210,63.0,force,lower_fy,-0.0018843656871467829 +illusion_1L,ppo,211,63.3,force,front_fx,0.0023696995340287685 +illusion_1L,ppo,211,63.3,force,front_fy,-0.0007263215375132859 +illusion_1L,ppo,211,63.3,force,upper_fx,0.001226549269631505 +illusion_1L,ppo,211,63.3,force,upper_fy,0.0038368680980056524 +illusion_1L,ppo,211,63.3,force,lower_fx,0.0021714521571993828 +illusion_1L,ppo,211,63.3,force,lower_fy,-0.0021767867729067802 +illusion_1L,ppo,212,63.6,force,front_fx,0.0023941569961607456 +illusion_1L,ppo,212,63.6,force,front_fy,-0.0007999094668775797 +illusion_1L,ppo,212,63.6,force,upper_fx,0.0010361297754570842 +illusion_1L,ppo,212,63.6,force,upper_fy,0.0037595948670059443 +illusion_1L,ppo,212,63.6,force,lower_fx,0.0022935480810701847 +illusion_1L,ppo,212,63.6,force,lower_fy,-0.002521590096876025 +illusion_1L,ppo,213,63.9,force,front_fx,0.0023774837609380484 +illusion_1L,ppo,213,63.9,force,front_fy,-0.000841596513055265 +illusion_1L,ppo,213,63.9,force,upper_fx,0.0008680256432853639 +illusion_1L,ppo,213,63.9,force,upper_fy,0.0036132060922682285 +illusion_1L,ppo,213,63.9,force,lower_fx,0.0023994266521185637 +illusion_1L,ppo,213,63.9,force,lower_fy,-0.0028742190916091204 +illusion_1L,ppo,214,64.2,force,front_fx,0.002314623910933733 +illusion_1L,ppo,214,64.2,force,front_fy,-0.0008627563947811723 +illusion_1L,ppo,214,64.2,force,upper_fx,0.0007591627654619515 +illusion_1L,ppo,214,64.2,force,upper_fy,0.0033892421051859856 +illusion_1L,ppo,214,64.2,force,lower_fx,0.0024854561779648066 +illusion_1L,ppo,214,64.2,force,lower_fy,-0.0031746388413012028 +illusion_1L,ppo,215,64.5,force,front_fx,0.00221797963604331 +illusion_1L,ppo,215,64.5,force,front_fy,-0.0008702611085027456 +illusion_1L,ppo,215,64.5,force,upper_fx,0.0007378429872915149 +illusion_1L,ppo,215,64.5,force,upper_fy,0.003109120298177004 +illusion_1L,ppo,215,64.5,force,lower_fx,0.00255936780013144 +illusion_1L,ppo,215,64.5,force,lower_fy,-0.0033733074087649584 +illusion_1L,ppo,216,64.8,force,front_fx,0.002116669900715351 +illusion_1L,ppo,216,64.8,force,front_fy,-0.000871452793944627 +illusion_1L,ppo,216,64.8,force,upper_fx,0.0008019570959731936 +illusion_1L,ppo,216,64.8,force,upper_fy,0.0028068190440535545 +illusion_1L,ppo,216,64.8,force,lower_fx,0.002622478175908327 +illusion_1L,ppo,216,64.8,force,lower_fy,-0.00346172577701509 +illusion_1L,ppo,217,65.1,force,front_fx,0.0020314203575253487 +illusion_1L,ppo,217,65.1,force,front_fy,-0.000854139041621238 +illusion_1L,ppo,217,65.1,force,upper_fx,0.0009132815175689757 +illusion_1L,ppo,217,65.1,force,upper_fy,0.0025190284941345453 +illusion_1L,ppo,217,65.1,force,lower_fx,0.0026601909194141626 +illusion_1L,ppo,217,65.1,force,lower_fy,-0.003467282047495246 +illusion_1L,ppo,218,65.4,force,front_fx,0.0019717554096132517 +illusion_1L,ppo,218,65.4,force,front_fy,-0.0008211329695768654 +illusion_1L,ppo,218,65.4,force,upper_fx,0.0010389212984591722 +illusion_1L,ppo,218,65.4,force,upper_fy,0.002278942381963134 +illusion_1L,ppo,218,65.4,force,lower_fx,0.0026567147579044104 +illusion_1L,ppo,218,65.4,force,lower_fy,-0.0034313544165343046 +illusion_1L,ppo,219,65.7,force,front_fx,0.0019376641139388084 +illusion_1L,ppo,219,65.7,force,front_fy,-0.0007656347588635981 +illusion_1L,ppo,219,65.7,force,upper_fx,0.0011688761878758669 +illusion_1L,ppo,219,65.7,force,upper_fy,0.0021109352819621563 +illusion_1L,ppo,219,65.7,force,lower_fx,0.002607873175293207 +illusion_1L,ppo,219,65.7,force,lower_fy,-0.003396563231945038 +illusion_1L,ppo,220,66.0,force,front_fx,0.0019175062188878655 +illusion_1L,ppo,220,66.0,force,front_fy,-0.0006861824076622725 +illusion_1L,ppo,220,66.0,force,upper_fx,0.0013009407557547092 +illusion_1L,ppo,220,66.0,force,upper_fy,0.002032850868999958 +illusion_1L,ppo,220,66.0,force,lower_fx,0.002526386408135295 +illusion_1L,ppo,220,66.0,force,lower_fy,-0.003377881133928895 +illusion_1L,ppo,221,66.3,force,front_fx,0.0019026289228349924 +illusion_1L,ppo,221,66.3,force,front_fy,-0.0005825644475407898 +illusion_1L,ppo,221,66.3,force,upper_fx,0.0014244257472455502 +illusion_1L,ppo,221,66.3,force,upper_fy,0.0020510752219706774 +illusion_1L,ppo,221,66.3,force,lower_fx,0.002425410784780979 +illusion_1L,ppo,221,66.3,force,lower_fy,-0.0033620428293943405 +illusion_1L,ppo,222,66.6,force,front_fx,0.0018927884520962834 +illusion_1L,ppo,222,66.6,force,front_fy,-0.0004542467067949474 +illusion_1L,ppo,222,66.6,force,upper_fx,0.0015406067250296474 +illusion_1L,ppo,222,66.6,force,upper_fy,0.0021520787850022316 +illusion_1L,ppo,222,66.6,force,lower_fx,0.002317187376320362 +illusion_1L,ppo,222,66.6,force,lower_fy,-0.0033222706988453865 +illusion_1L,ppo,223,66.9,force,front_fx,0.0018886808538809419 +illusion_1L,ppo,223,66.9,force,front_fy,-0.0003031973901670426 +illusion_1L,ppo,223,66.9,force,upper_fx,0.0016506462125107646 +illusion_1L,ppo,223,66.9,force,upper_fy,0.0023115777876228094 +illusion_1L,ppo,223,66.9,force,lower_fx,0.002196765039116144 +illusion_1L,ppo,223,66.9,force,lower_fy,-0.003252878086641431 +illusion_1L,ppo,224,67.2,force,front_fx,0.0018917645793408155 +illusion_1L,ppo,224,67.2,force,front_fy,-0.00014056172221899033 +illusion_1L,ppo,224,67.2,force,upper_fx,0.001752818818204105 +illusion_1L,ppo,224,67.2,force,upper_fy,0.002506846096366644 +illusion_1L,ppo,224,67.2,force,lower_fx,0.0020561469718813896 +illusion_1L,ppo,224,67.2,force,lower_fy,-0.003155715996399522 +illusion_1L,ppo,225,67.5,force,front_fx,0.0018982308683916926 +illusion_1L,ppo,225,67.5,force,front_fy,1.0833806300070137e-05 +illusion_1L,ppo,225,67.5,force,upper_fx,0.0018489068606868386 +illusion_1L,ppo,225,67.5,force,upper_fy,0.0027191988192498684 +illusion_1L,ppo,225,67.5,force,lower_fx,0.0019063696963712573 +illusion_1L,ppo,225,67.5,force,lower_fy,-0.003022723365575075 +illusion_1L,ppo,226,67.8,force,front_fx,0.0019023297354578972 +illusion_1L,ppo,226,67.8,force,front_fy,0.00011952523345826194 +illusion_1L,ppo,226,67.8,force,upper_fx,0.0019399585435166955 +illusion_1L,ppo,226,67.8,force,upper_fy,0.002938783960416913 +illusion_1L,ppo,226,67.8,force,lower_fx,0.001778018893674016 +illusion_1L,ppo,226,67.8,force,lower_fy,-0.0028378618881106377 +illusion_1L,ppo,227,68.1,force,front_fx,0.0018952232785522938 +illusion_1L,ppo,227,68.1,force,front_fy,0.00014774795272387564 +illusion_1L,ppo,227,68.1,force,upper_fx,0.0020162404980510473 +illusion_1L,ppo,227,68.1,force,upper_fy,0.0031674508936703205 +illusion_1L,ppo,227,68.1,force,lower_fx,0.001697442145086825 +illusion_1L,ppo,227,68.1,force,lower_fy,-0.0025989168789237738 +illusion_1L,ppo,228,68.4,force,front_fx,0.0018841646378859878 +illusion_1L,ppo,228,68.4,force,front_fy,9.544974454911426e-05 +illusion_1L,ppo,228,68.4,force,upper_fx,0.0020613661035895348 +illusion_1L,ppo,228,68.4,force,upper_fy,0.003397853346541524 +illusion_1L,ppo,228,68.4,force,lower_fx,0.0016654484206810594 +illusion_1L,ppo,228,68.4,force,lower_fy,-0.0023313446436077356 +illusion_1L,ppo,229,68.7,force,front_fx,0.0018904057797044516 +illusion_1L,ppo,229,68.7,force,front_fy,-7.71435043134261e-06 +illusion_1L,ppo,229,68.7,force,upper_fx,0.0020678394939750433 +illusion_1L,ppo,229,68.7,force,upper_fy,0.0036001205444335938 +illusion_1L,ppo,229,68.7,force,lower_fx,0.0016668143216520548 +illusion_1L,ppo,229,68.7,force,lower_fy,-0.0020739627070724964 +illusion_1L,ppo,230,69.0,force,front_fx,0.0019322906155139208 +illusion_1L,ppo,230,69.0,force,front_fy,-0.00011618927237577736 +illusion_1L,ppo,230,69.0,force,upper_fx,0.002035279758274555 +illusion_1L,ppo,230,69.0,force,upper_fy,0.0037423837929964066 +illusion_1L,ppo,230,69.0,force,lower_fx,0.0016886513913050294 +illusion_1L,ppo,230,69.0,force,lower_fy,-0.001855267328210175 +illusion_1L,ppo,231,69.3,force,front_fx,0.00200320384465158 +illusion_1L,ppo,231,69.3,force,front_fy,-0.00021984786144457757 +illusion_1L,ppo,231,69.3,force,upper_fx,0.0019611723255366087 +illusion_1L,ppo,231,69.3,force,upper_fy,0.0038232849910855293 +illusion_1L,ppo,231,69.3,force,lower_fx,0.001726688933558762 +illusion_1L,ppo,231,69.3,force,lower_fy,-0.0016891300911083817 +illusion_1L,ppo,232,69.6,force,front_fx,0.0020890526939183474 +illusion_1L,ppo,232,69.6,force,front_fy,-0.000321738887578249 +illusion_1L,ppo,232,69.6,force,upper_fx,0.0018481772858649492 +illusion_1L,ppo,232,69.6,force,upper_fy,0.003863898804411292 +illusion_1L,ppo,232,69.6,force,lower_fx,0.0017802170477807522 +illusion_1L,ppo,232,69.6,force,lower_fy,-0.001590157044120133 +illusion_1L,ppo,233,69.9,force,front_fx,0.002175242407247424 +illusion_1L,ppo,233,69.9,force,front_fy,-0.0004200463881716132 +illusion_1L,ppo,233,69.9,force,upper_fx,0.0017123011639341712 +illusion_1L,ppo,233,69.9,force,upper_fy,0.003880833275616169 +illusion_1L,ppo,233,69.9,force,lower_fx,0.0018539903685450554 +illusion_1L,ppo,233,69.9,force,lower_fy,-0.001583427656441927 +illusion_1L,ppo,234,70.2,force,front_fx,0.0022578260395675898 +illusion_1L,ppo,234,70.2,force,front_fy,-0.0005287542007863522 +illusion_1L,ppo,234,70.2,force,upper_fx,0.0015653190203011036 +illusion_1L,ppo,234,70.2,force,upper_fy,0.0038828719407320023 +illusion_1L,ppo,234,70.2,force,lower_fx,0.0019513737643137574 +illusion_1L,ppo,234,70.2,force,lower_fy,-0.0016898679314181209 +illusion_1L,ppo,235,70.5,force,front_fx,0.0023263331968337297 +illusion_1L,ppo,235,70.5,force,front_fy,-0.0006391365895979106 +illusion_1L,ppo,235,70.5,force,upper_fx,0.0014000037917867303 +illusion_1L,ppo,235,70.5,force,upper_fy,0.0038737389259040356 +illusion_1L,ppo,235,70.5,force,lower_fx,0.0020662390161305666 +illusion_1L,ppo,235,70.5,force,lower_fy,-0.0019057145109400153 +illusion_1L,ppo,236,70.8,force,front_fx,0.002376386197283864 +illusion_1L,ppo,236,70.8,force,front_fy,-0.0007355387788265944 +illusion_1L,ppo,236,70.8,force,upper_fx,0.0012106546200811863 +illusion_1L,ppo,236,70.8,force,upper_fy,0.0038413393776863813 +illusion_1L,ppo,236,70.8,force,lower_fx,0.0021848403848707676 +illusion_1L,ppo,236,70.8,force,lower_fy,-0.002204188844189048 +illusion_1L,ppo,237,71.1,force,front_fx,0.0023957050871104 +illusion_1L,ppo,237,71.1,force,front_fy,-0.0008104837615974247 +illusion_1L,ppo,237,71.1,force,upper_fx,0.0010166078573092818 +illusion_1L,ppo,237,71.1,force,upper_fy,0.003754149656742811 +illusion_1L,ppo,237,71.1,force,lower_fx,0.0022964514791965485 +illusion_1L,ppo,237,71.1,force,lower_fy,-0.002545308554545045 +illusion_1L,ppo,238,71.4,force,front_fx,0.002372138435021043 +illusion_1L,ppo,238,71.4,force,front_fy,-0.0008483035489916801 +illusion_1L,ppo,238,71.4,force,upper_fx,0.0008550438215024769 +illusion_1L,ppo,238,71.4,force,upper_fy,0.0035856962203979492 +illusion_1L,ppo,238,71.4,force,lower_fx,0.0023951102048158646 +illusion_1L,ppo,238,71.4,force,lower_fy,-0.0028847872745245695 +illusion_1L,ppo,239,71.7,force,front_fx,0.00230405037291348 +illusion_1L,ppo,239,71.7,force,front_fy,-0.0008655947167426348 +illusion_1L,ppo,239,71.7,force,upper_fx,0.0007572866743430495 +illusion_1L,ppo,239,71.7,force,upper_fy,0.0033444103319197893 +illusion_1L,ppo,239,71.7,force,lower_fx,0.002478211186826229 +illusion_1L,ppo,239,71.7,force,lower_fy,-0.003170232055708766 +illusion_1L,ppo,240,72.0,force,front_fx,0.0022020540200173855 +illusion_1L,ppo,240,72.0,force,front_fy,-0.0008710075635462999 +illusion_1L,ppo,240,72.0,force,upper_fx,0.0007469698321074247 +illusion_1L,ppo,240,72.0,force,upper_fy,0.0030581257306039333 +illusion_1L,ppo,240,72.0,force,lower_fx,0.002550847828388214 +illusion_1L,ppo,240,72.0,force,lower_fy,-0.0033588421065360308 +illusion_1L,ppo,241,72.3,force,front_fx,0.002106187166646123 +illusion_1L,ppo,241,72.3,force,front_fy,-0.0008684301283210516 +illusion_1L,ppo,241,72.3,force,upper_fx,0.0008221311727538705 +illusion_1L,ppo,241,72.3,force,upper_fy,0.002756701083853841 +illusion_1L,ppo,241,72.3,force,lower_fx,0.0026152394711971283 +illusion_1L,ppo,241,72.3,force,lower_fy,-0.0034439475275576115 +illusion_1L,ppo,242,72.6,force,front_fx,0.002025868045166135 +illusion_1L,ppo,242,72.6,force,front_fy,-0.0008508224273100495 +illusion_1L,ppo,242,72.6,force,upper_fx,0.0009410423808731139 +illusion_1L,ppo,242,72.6,force,upper_fy,0.002477133646607399 +illusion_1L,ppo,242,72.6,force,lower_fx,0.0026547859888523817 +illusion_1L,ppo,242,72.6,force,lower_fy,-0.003454477759078145 +illusion_1L,ppo,243,72.9,force,front_fx,0.0019700543489307165 +illusion_1L,ppo,243,72.9,force,front_fy,-0.0008132617804221809 +illusion_1L,ppo,243,72.9,force,upper_fx,0.0010658539831638336 +illusion_1L,ppo,243,72.9,force,upper_fy,0.0022509312257170677 +illusion_1L,ppo,243,72.9,force,lower_fx,0.002646669512614608 +illusion_1L,ppo,243,72.9,force,lower_fy,-0.003429628675803542 +illusion_1L,ppo,244,73.2,force,front_fx,0.0019340376602485776 +illusion_1L,ppo,244,73.2,force,front_fy,-0.0007531580049544573 +illusion_1L,ppo,244,73.2,force,upper_fx,0.0011898804223164916 +illusion_1L,ppo,244,73.2,force,upper_fy,0.0020953556522727013 +illusion_1L,ppo,244,73.2,force,lower_fx,0.0025892704725265503 +illusion_1L,ppo,244,73.2,force,lower_fy,-0.003401616122573614 +illusion_1L,ppo,245,73.5,force,front_fx,0.001911713508889079 +illusion_1L,ppo,245,73.5,force,front_fy,-0.0006702937535010278 +illusion_1L,ppo,245,73.5,force,upper_fx,0.001313853426836431 +illusion_1L,ppo,245,73.5,force,upper_fy,0.0020245902705937624 +illusion_1L,ppo,245,73.5,force,lower_fx,0.002501184120774269 +illusion_1L,ppo,245,73.5,force,lower_fy,-0.003379778005182743 +illusion_1L,ppo,246,73.8,force,front_fx,0.0018965722993016243 +illusion_1L,ppo,246,73.8,force,front_fy,-0.0005634872359223664 +illusion_1L,ppo,246,73.8,force,upper_fx,0.0014340614434331656 +illusion_1L,ppo,246,73.8,force,upper_fy,0.002048187656328082 +illusion_1L,ppo,246,73.8,force,lower_fx,0.002399624092504382 +illusion_1L,ppo,246,73.8,force,lower_fy,-0.003353334730491042 +illusion_1L,ppo,247,74.1,force,front_fx,0.0018870305502787232 +illusion_1L,ppo,247,74.1,force,front_fy,-0.0004332544340286404 +illusion_1L,ppo,247,74.1,force,upper_fx,0.001549293752759695 +illusion_1L,ppo,247,74.1,force,upper_fy,0.0021551705431193113 +illusion_1L,ppo,247,74.1,force,lower_fx,0.002290579257532954 +illusion_1L,ppo,247,74.1,force,lower_fy,-0.0033073609229177237 +illusion_1L,ppo,248,74.4,force,front_fx,0.0018878199625760317 +illusion_1L,ppo,248,74.4,force,front_fy,-0.0002815857878886163 +illusion_1L,ppo,248,74.4,force,upper_fx,0.001661091111600399 +illusion_1L,ppo,248,74.4,force,upper_fy,0.0023203743621706963 +illusion_1L,ppo,248,74.4,force,lower_fx,0.0021715108305215836 +illusion_1L,ppo,248,74.4,force,lower_fy,-0.0032335601281374693 +illusion_1L,ppo,249,74.7,force,front_fx,0.001896458095870912 +illusion_1L,ppo,249,74.7,force,front_fy,-0.00011998874106211588 +illusion_1L,ppo,249,74.7,force,upper_fx,0.0017694024136289954 +illusion_1L,ppo,249,74.7,force,upper_fy,0.0025218718219548464 +illusion_1L,ppo,249,74.7,force,lower_fx,0.002040090272203088 +illusion_1L,ppo,249,74.7,force,lower_fy,-0.0031301737762987614 +illusion_1L,ppo,250,75.0,force,front_fx,0.001904632430523634 +illusion_1L,ppo,250,75.0,force,front_fy,2.9218019335530698e-05 +illusion_1L,ppo,250,75.0,force,upper_fx,0.0018690715078264475 +illusion_1L,ppo,250,75.0,force,upper_fy,0.0027453508228063583 +illusion_1L,ppo,250,75.0,force,lower_fx,0.0019009745446965098 +illusion_1L,ppo,250,75.0,force,lower_fy,-0.0029910386074334383 +illusion_1L,ppo,251,75.3,force,front_fx,0.0019039860926568508 +illusion_1L,ppo,251,75.3,force,front_fy,0.00012819575204048306 +illusion_1L,ppo,251,75.3,force,upper_fx,0.0019552374724298716 +illusion_1L,ppo,251,75.3,force,upper_fy,0.002979572396725416 +illusion_1L,ppo,251,75.3,force,lower_fx,0.0017782649956643581 +illusion_1L,ppo,251,75.3,force,lower_fy,-0.0027978394646197557 +illusion_1L,ppo,252,75.6,force,front_fx,0.001891339081339538 +illusion_1L,ppo,252,75.6,force,front_fy,0.00014759611804038286 +illusion_1L,ppo,252,75.6,force,upper_fx,0.0020224025938659906 +illusion_1L,ppo,252,75.6,force,upper_fy,0.0032172517385333776 +illusion_1L,ppo,252,75.6,force,lower_fx,0.0017008418217301369 +illusion_1L,ppo,252,75.6,force,lower_fy,-0.0025475001893937588 +illusion_1L,ppo,253,75.9,force,front_fx,0.0018790614558383822 +illusion_1L,ppo,253,75.9,force,front_fy,8.369283750653267e-05 +illusion_1L,ppo,253,75.9,force,upper_fx,0.002060798928141594 +illusion_1L,ppo,253,75.9,force,upper_fy,0.0034479110036045313 +illusion_1L,ppo,253,75.9,force,lower_fx,0.0016723601147532463 +illusion_1L,ppo,253,75.9,force,lower_fy,-0.002272927202284336 +illusion_1L,ppo,254,76.2,force,front_fx,0.0018901372095569968 +illusion_1L,ppo,254,76.2,force,front_fy,-2.2627407815889455e-05 +illusion_1L,ppo,254,76.2,force,upper_fx,0.0020616415422409773 +illusion_1L,ppo,254,76.2,force,upper_fy,0.003645377466455102 +illusion_1L,ppo,254,76.2,force,lower_fx,0.0016738066915422678 +illusion_1L,ppo,254,76.2,force,lower_fy,-0.0020187003538012505 +illusion_1L,ppo,255,76.5,force,front_fx,0.0019389031222090125 +illusion_1L,ppo,255,76.5,force,front_fy,-0.00013624195707961917 +illusion_1L,ppo,255,76.5,force,upper_fx,0.00202389108017087 +illusion_1L,ppo,255,76.5,force,upper_fy,0.0037794625386595726 +illusion_1L,ppo,255,76.5,force,lower_fx,0.0016945296665653586 +illusion_1L,ppo,255,76.5,force,lower_fy,-0.001809410867281258 +illusion_1L,ppo,256,76.8,force,front_fx,0.0020183222368359566 +illusion_1L,ppo,256,76.8,force,front_fy,-0.00023380389029625803 +illusion_1L,ppo,256,76.8,force,upper_fx,0.0019495781743898988 +illusion_1L,ppo,256,76.8,force,upper_fy,0.003848826978355646 +illusion_1L,ppo,256,76.8,force,lower_fx,0.0017371118301525712 +illusion_1L,ppo,256,76.8,force,lower_fy,-0.0016538541531190276 +illusion_1L,ppo,257,77.1,force,front_fx,0.0021122826728969812 +illusion_1L,ppo,257,77.1,force,front_fy,-0.00034028649679385126 +illusion_1L,ppo,257,77.1,force,upper_fx,0.0018396422965452075 +illusion_1L,ppo,257,77.1,force,upper_fy,0.003879542462527752 +illusion_1L,ppo,257,77.1,force,lower_fx,0.0017987716710194945 +illusion_1L,ppo,257,77.1,force,lower_fy,-0.0015702116070315242 +illusion_1L,ppo,258,77.4,force,front_fx,0.00219725095666945 +illusion_1L,ppo,258,77.4,force,front_fy,-0.00043413409730419517 +illusion_1L,ppo,258,77.4,force,upper_fx,0.0017033930635079741 +illusion_1L,ppo,258,77.4,force,upper_fy,0.003890144871547818 +illusion_1L,ppo,258,77.4,force,lower_fx,0.00187582871876657 +illusion_1L,ppo,258,77.4,force,lower_fy,-0.0015881978906691074 +illusion_1L,ppo,259,77.7,force,front_fx,0.002270790748298168 +illusion_1L,ppo,259,77.7,force,front_fy,-0.0005424270639196038 +illusion_1L,ppo,259,77.7,force,upper_fx,0.0015512772370129824 +illusion_1L,ppo,259,77.7,force,upper_fy,0.0038831138517707586 +illusion_1L,ppo,259,77.7,force,lower_fx,0.0019721826538443565 +illusion_1L,ppo,259,77.7,force,lower_fy,-0.0017217773711308837 +illusion_1L,ppo,260,78.0,force,front_fx,0.0023364422377198935 +illusion_1L,ppo,260,78.0,force,front_fy,-0.0006500870804302394 +illusion_1L,ppo,260,78.0,force,upper_fx,0.0013816390419378877 +illusion_1L,ppo,260,78.0,force,upper_fy,0.0038594715297222137 +illusion_1L,ppo,260,78.0,force,lower_fx,0.002086623338982463 +illusion_1L,ppo,260,78.0,force,lower_fy,-0.00196127244271338 +illusion_1L,ppo,261,78.3,force,front_fx,0.0023742334451526403 +illusion_1L,ppo,261,78.3,force,front_fy,-0.0007441725465469062 +illusion_1L,ppo,261,78.3,force,upper_fx,0.001189074944704771 +illusion_1L,ppo,261,78.3,force,upper_fy,0.0038134753704071045 +illusion_1L,ppo,261,78.3,force,lower_fx,0.002207254059612751 +illusion_1L,ppo,261,78.3,force,lower_fy,-0.0022816418204456568 +illusion_1L,ppo,262,78.6,force,front_fx,0.002386318752542138 +illusion_1L,ppo,262,78.6,force,front_fy,-0.0008086711168289185 +illusion_1L,ppo,262,78.6,force,upper_fx,0.0009938349248841405 +illusion_1L,ppo,262,78.6,force,upper_fy,0.003715347032994032 +illusion_1L,ppo,262,78.6,force,lower_fx,0.0023208335041999817 +illusion_1L,ppo,262,78.6,force,lower_fy,-0.002642489969730377 +illusion_1L,ppo,263,78.9,force,front_fx,0.002358346479013562 +illusion_1L,ppo,263,78.9,force,front_fy,-0.0008452891488559544 +illusion_1L,ppo,263,78.9,force,upper_fx,0.0008380024810321629 +illusion_1L,ppo,263,78.9,force,upper_fy,0.0035364890936762094 +illusion_1L,ppo,263,78.9,force,lower_fx,0.0024225094821304083 +illusion_1L,ppo,263,78.9,force,lower_fy,-0.0029925983399152756 +illusion_1L,ppo,264,79.2,force,front_fx,0.0022867487277835608 +illusion_1L,ppo,264,79.2,force,front_fy,-0.0008578820852562785 +illusion_1L,ppo,264,79.2,force,upper_fx,0.0007535341428592801 +illusion_1L,ppo,264,79.2,force,upper_fy,0.0032893395982682705 +illusion_1L,ppo,264,79.2,force,lower_fx,0.0025114763993769884 +illusion_1L,ppo,264,79.2,force,lower_fy,-0.0032758049201220274 +illusion_1L,ppo,265,79.5,force,front_fx,0.002188205486163497 +illusion_1L,ppo,265,79.5,force,front_fy,-0.0008689108653925359 +illusion_1L,ppo,265,79.5,force,upper_fx,0.0007550633163191378 +illusion_1L,ppo,265,79.5,force,upper_fy,0.0030023742001503706 +illusion_1L,ppo,265,79.5,force,lower_fx,0.0025875563733279705 +illusion_1L,ppo,265,79.5,force,lower_fy,-0.003452020464465022 +illusion_1L,ppo,266,79.8,force,front_fx,0.00208976399153471 +illusion_1L,ppo,266,79.8,force,front_fy,-0.0008650427334941924 +illusion_1L,ppo,266,79.8,force,upper_fx,0.0008332828874699771 +illusion_1L,ppo,266,79.8,force,upper_fy,0.0027041826397180557 +illusion_1L,ppo,266,79.8,force,lower_fx,0.0026475449558347464 +illusion_1L,ppo,266,79.8,force,lower_fy,-0.0035164535511285067 +illusion_1L,ppo,267,80.1,force,front_fx,0.002012023003771901 +illusion_1L,ppo,267,80.1,force,front_fy,-0.0008466024301014841 +illusion_1L,ppo,267,80.1,force,upper_fx,0.0009503853507339954 +illusion_1L,ppo,267,80.1,force,upper_fy,0.00242942338809371 +illusion_1L,ppo,267,80.1,force,lower_fx,0.002679157070815563 +illusion_1L,ppo,267,80.1,force,lower_fy,-0.003499159123748541 +illusion_1L,ppo,268,80.4,force,front_fx,0.0019596160855144262 +illusion_1L,ppo,268,80.4,force,front_fy,-0.0008079379913397133 +illusion_1L,ppo,268,80.4,force,upper_fx,0.0010762966703623533 +illusion_1L,ppo,268,80.4,force,upper_fy,0.0022104885429143906 +illusion_1L,ppo,268,80.4,force,lower_fx,0.0026618780102580786 +illusion_1L,ppo,268,80.4,force,lower_fy,-0.0034494984429329634 +illusion_1L,ppo,269,80.7,force,front_fx,0.0019272591453045607 +illusion_1L,ppo,269,80.7,force,front_fy,-0.0007454301230609417 +illusion_1L,ppo,269,80.7,force,upper_fx,0.0012030042707920074 +illusion_1L,ppo,269,80.7,force,upper_fy,0.002069783164188266 +illusion_1L,ppo,269,80.7,force,lower_fx,0.002596289850771427 +illusion_1L,ppo,269,80.7,force,lower_fy,-0.003406795207411051 +illusion_1L,ppo,270,81.0,force,front_fx,0.001907773781567812 +illusion_1L,ppo,270,81.0,force,front_fy,-0.0006589056574739516 +illusion_1L,ppo,270,81.0,force,upper_fx,0.0013314804527908564 +illusion_1L,ppo,270,81.0,force,upper_fy,0.0020214503165334463 +illusion_1L,ppo,270,81.0,force,lower_fx,0.0025042109191417694 +illusion_1L,ppo,270,81.0,force,lower_fy,-0.003376644104719162 +illusion_1L,ppo,271,81.3,force,front_fx,0.0018977688159793615 +illusion_1L,ppo,271,81.3,force,front_fy,-0.0005482328124344349 +illusion_1L,ppo,271,81.3,force,upper_fx,0.0014601442962884903 +illusion_1L,ppo,271,81.3,force,upper_fy,0.002069771522656083 +illusion_1L,ppo,271,81.3,force,lower_fx,0.0024064788594841957 +illusion_1L,ppo,271,81.3,force,lower_fy,-0.0033423197455704212 +illusion_1L,ppo,272,81.6,force,front_fx,0.0018916811095550656 +illusion_1L,ppo,272,81.6,force,front_fy,-0.0004131584719289094 +illusion_1L,ppo,272,81.6,force,upper_fx,0.0015826491871848702 +illusion_1L,ppo,272,81.6,force,upper_fy,0.0022024798672646284 +illusion_1L,ppo,272,81.6,force,lower_fx,0.002301852684468031 +illusion_1L,ppo,272,81.6,force,lower_fy,-0.003288678824901581 +illusion_1L,ppo,273,81.9,force,front_fx,0.0018904856406152248 +illusion_1L,ppo,273,81.9,force,front_fy,-0.00025660492246970534 +illusion_1L,ppo,273,81.9,force,upper_fx,0.0016940382774919271 +illusion_1L,ppo,273,81.9,force,upper_fy,0.002391157438978553 +illusion_1L,ppo,273,81.9,force,lower_fx,0.0021786128636449575 +illusion_1L,ppo,273,81.9,force,lower_fy,-0.0032086241990327835 +illusion_1L,ppo,274,82.2,force,front_fx,0.0018949792720377445 +illusion_1L,ppo,274,82.2,force,front_fy,-9.290745219914243e-05 +illusion_1L,ppo,274,82.2,force,upper_fx,0.0017960791010409594 +illusion_1L,ppo,274,82.2,force,upper_fy,0.0026067907456308603 +illusion_1L,ppo,274,82.2,force,lower_fx,0.00203512841835618 +illusion_1L,ppo,274,82.2,force,lower_fy,-0.003097816836088896 +illusion_1L,ppo,275,82.5,force,front_fx,0.0019016701262444258 +illusion_1L,ppo,275,82.5,force,front_fy,5.343083830666728e-05 +illusion_1L,ppo,275,82.5,force,upper_fx,0.0018912579398602247 +illusion_1L,ppo,275,82.5,force,upper_fy,0.002833252539858222 +illusion_1L,ppo,275,82.5,force,lower_fx,0.001886253710836172 +illusion_1L,ppo,275,82.5,force,lower_fy,-0.0029477241914719343 +illusion_1L,ppo,276,82.8,force,front_fx,0.0018950894009321928 +illusion_1L,ppo,276,82.8,force,front_fy,0.00014296924928203225 +illusion_1L,ppo,276,82.8,force,upper_fx,0.001975057180970907 +illusion_1L,ppo,276,82.8,force,upper_fy,0.0030636645387858152 +illusion_1L,ppo,276,82.8,force,lower_fx,0.0017594635719433427 +illusion_1L,ppo,276,82.8,force,lower_fy,-0.0027465028688311577 +illusion_1L,ppo,277,83.1,force,front_fx,0.0018848556792363524 +illusion_1L,ppo,277,83.1,force,front_fy,0.0001458155020372942 +illusion_1L,ppo,277,83.1,force,upper_fx,0.0020394441671669483 +illusion_1L,ppo,277,83.1,force,upper_fy,0.003292898880317807 +illusion_1L,ppo,277,83.1,force,lower_fx,0.0016814382979646325 +illusion_1L,ppo,277,83.1,force,lower_fy,-0.0024957614950835705 +illusion_1L,ppo,278,83.4,force,front_fx,0.0018810508772730827 +illusion_1L,ppo,278,83.4,force,front_fy,7.407175144180655e-05 +illusion_1L,ppo,278,83.4,force,upper_fx,0.0020768684335052967 +illusion_1L,ppo,278,83.4,force,upper_fy,0.0035082101821899414 +illusion_1L,ppo,278,83.4,force,lower_fx,0.001656733569689095 +illusion_1L,ppo,278,83.4,force,lower_fy,-0.002227195305749774 +illusion_1L,ppo,279,83.7,force,front_fx,0.0019027461530640721 +illusion_1L,ppo,279,83.7,force,front_fy,-3.636106339399703e-05 +illusion_1L,ppo,279,83.7,force,upper_fx,0.0020778945181518793 +illusion_1L,ppo,279,83.7,force,upper_fy,0.0036829160526394844 +illusion_1L,ppo,279,83.7,force,lower_fx,0.0016664147842675447 +illusion_1L,ppo,279,83.7,force,lower_fy,-0.0019830437377095222 +illusion_1L,ppo,280,84.0,force,front_fx,0.001958700129762292 +illusion_1L,ppo,280,84.0,force,front_fy,-0.00014455786731559783 +illusion_1L,ppo,280,84.0,force,upper_fx,0.002036250662058592 +illusion_1L,ppo,280,84.0,force,upper_fy,0.0037957692984491587 +illusion_1L,ppo,280,84.0,force,lower_fx,0.0016945651732385159 +illusion_1L,ppo,280,84.0,force,lower_fy,-0.0017862721579149365 +illusion_1L,ppo,281,84.3,force,front_fx,0.0020393759477883577 +illusion_1L,ppo,281,84.3,force,front_fy,-0.0002446941507514566 +illusion_1L,ppo,281,84.3,force,upper_fx,0.0019512083381414413 +illusion_1L,ppo,281,84.3,force,upper_fy,0.0038504377007484436 +illusion_1L,ppo,281,84.3,force,lower_fx,0.0017404784448444843 +illusion_1L,ppo,281,84.3,force,lower_fy,-0.0016442523337900639 +illusion_1L,ppo,282,84.6,force,front_fx,0.002124476246535778 +illusion_1L,ppo,282,84.6,force,front_fy,-0.0003468813665676862 +illusion_1L,ppo,282,84.6,force,upper_fx,0.0018308800645172596 +illusion_1L,ppo,282,84.6,force,upper_fy,0.003871361492201686 +illusion_1L,ppo,282,84.6,force,lower_fx,0.00180504797026515 +illusion_1L,ppo,282,84.6,force,lower_fy,-0.00157697475515306 +illusion_1L,ppo,283,84.9,force,front_fx,0.0022051960695534945 +illusion_1L,ppo,283,84.9,force,front_fy,-0.00045544272870756686 +illusion_1L,ppo,283,84.9,force,upper_fx,0.0016870725667104125 +illusion_1L,ppo,283,84.9,force,upper_fy,0.0038786891382187605 +illusion_1L,ppo,283,84.9,force,lower_fx,0.0018878082046285272 +illusion_1L,ppo,283,84.9,force,lower_fy,-0.0016136447666212916 +illusion_1L,ppo,284,85.2,force,front_fx,0.0022762552835047245 +illusion_1L,ppo,284,85.2,force,front_fy,-0.0005545694148167968 +illusion_1L,ppo,284,85.2,force,upper_fx,0.0015267633134499192 +illusion_1L,ppo,284,85.2,force,upper_fy,0.0038771717809140682 +illusion_1L,ppo,284,85.2,force,lower_fx,0.0019896849989891052 +illusion_1L,ppo,284,85.2,force,lower_fy,-0.0017660206649452448 +illusion_1L,ppo,285,85.5,force,front_fx,0.0023357104510068893 +illusion_1L,ppo,285,85.5,force,front_fy,-0.0006697185453958809 +illusion_1L,ppo,285,85.5,force,upper_fx,0.001348000019788742 +illusion_1L,ppo,285,85.5,force,upper_fy,0.003863075515255332 +illusion_1L,ppo,285,85.5,force,lower_fx,0.0021077299024909735 +illusion_1L,ppo,285,85.5,force,lower_fy,-0.0020173415541648865 +illusion_1L,ppo,286,85.8,force,front_fx,0.0023855273611843586 +illusion_1L,ppo,286,85.8,force,front_fy,-0.0007645589648745954 +illusion_1L,ppo,286,85.8,force,upper_fx,0.0011529542971402407 +illusion_1L,ppo,286,85.8,force,upper_fy,0.0038209848571568727 +illusion_1L,ppo,286,85.8,force,lower_fx,0.002230351325124502 +illusion_1L,ppo,286,85.8,force,lower_fy,-0.0023362217471003532 +illusion_1L,ppo,287,86.1,force,front_fx,0.00238978723064065 +illusion_1L,ppo,287,86.1,force,front_fy,-0.0008268403471447527 +illusion_1L,ppo,287,86.1,force,upper_fx,0.0009627668769098818 +illusion_1L,ppo,287,86.1,force,upper_fy,0.003717283485457301 +illusion_1L,ppo,287,86.1,force,lower_fx,0.0023426618427038193 +illusion_1L,ppo,287,86.1,force,lower_fy,-0.00268374290317297 +illusion_1L,ppo,288,86.4,force,front_fx,0.002356590935960412 +illusion_1L,ppo,288,86.4,force,front_fy,-0.0008647392387501895 +illusion_1L,ppo,288,86.4,force,upper_fx,0.0008133142837323248 +illusion_1L,ppo,288,86.4,force,upper_fy,0.003530023852363229 +illusion_1L,ppo,288,86.4,force,lower_fx,0.0024371654726564884 +illusion_1L,ppo,288,86.4,force,lower_fy,-0.0030039523262530565 +illusion_1L,ppo,289,86.7,force,front_fx,0.0022795097902417183 +illusion_1L,ppo,289,86.7,force,front_fy,-0.0008782072691246867 +illusion_1L,ppo,289,86.7,force,upper_fx,0.0007381789619103074 +illusion_1L,ppo,289,86.7,force,upper_fy,0.0032752761617302895 +illusion_1L,ppo,289,86.7,force,lower_fx,0.0025187302380800247 +illusion_1L,ppo,289,86.7,force,lower_fy,-0.0032436985056847334 +illusion_1L,ppo,290,87.0,force,front_fx,0.002180432202294469 +illusion_1L,ppo,290,87.0,force,front_fy,-0.0008781956858001649 +illusion_1L,ppo,290,87.0,force,upper_fx,0.0007555230404250324 +illusion_1L,ppo,290,87.0,force,upper_fy,0.002982513513416052 +illusion_1L,ppo,290,87.0,force,lower_fx,0.0025909484829753637 +illusion_1L,ppo,290,87.0,force,lower_fy,-0.0033767723944038153 +illusion_1L,ppo,291,87.3,force,front_fx,0.0020822077058255672 +illusion_1L,ppo,291,87.3,force,front_fy,-0.0008735638693906367 +illusion_1L,ppo,291,87.3,force,upper_fx,0.0008470853208564222 +illusion_1L,ppo,291,87.3,force,upper_fy,0.0026843331288546324 +illusion_1L,ppo,291,87.3,force,lower_fx,0.002646306762471795 +illusion_1L,ppo,291,87.3,force,lower_fy,-0.0034149419516324997 +illusion_1L,ppo,292,87.6,force,front_fx,0.0020077726803719997 +illusion_1L,ppo,292,87.6,force,front_fy,-0.0008474678033962846 +illusion_1L,ppo,292,87.6,force,upper_fx,0.0009707718854770064 +illusion_1L,ppo,292,87.6,force,upper_fy,0.002417837968096137 +illusion_1L,ppo,292,87.6,force,lower_fx,0.0026675211265683174 +illusion_1L,ppo,292,87.6,force,lower_fy,-0.003397007007151842 +illusion_1L,ppo,293,87.9,force,front_fx,0.0019599355291575193 +illusion_1L,ppo,293,87.9,force,front_fy,-0.0008018995868042111 +illusion_1L,ppo,293,87.9,force,upper_fx,0.001101905945688486 +illusion_1L,ppo,293,87.9,force,upper_fy,0.00221214909106493 +illusion_1L,ppo,293,87.9,force,lower_fx,0.0026408920530229807 +illusion_1L,ppo,293,87.9,force,lower_fy,-0.003369241487234831 +illusion_1L,ppo,294,88.2,force,front_fx,0.00192977802362293 +illusion_1L,ppo,294,88.2,force,front_fy,-0.000732882646843791 +illusion_1L,ppo,294,88.2,force,upper_fx,0.0012329748133197427 +illusion_1L,ppo,294,88.2,force,upper_fy,0.0020865683909505606 +illusion_1L,ppo,294,88.2,force,lower_fx,0.002570049837231636 +illusion_1L,ppo,294,88.2,force,lower_fy,-0.003359176218509674 +illusion_1L,ppo,295,88.5,force,front_fx,0.0019095230381935835 +illusion_1L,ppo,295,88.5,force,front_fy,-0.0006400478887371719 +illusion_1L,ppo,295,88.5,force,upper_fx,0.0013580531813204288 +illusion_1L,ppo,295,88.5,force,upper_fy,0.0020505995489656925 +illusion_1L,ppo,295,88.5,force,lower_fx,0.002471824875101447 +illusion_1L,ppo,295,88.5,force,lower_fy,-0.0033624295610934496 +illusion_1L,ppo,296,88.8,force,front_fx,0.0018951864913105965 +illusion_1L,ppo,296,88.8,force,front_fy,-0.0005242343759164214 +illusion_1L,ppo,296,88.8,force,upper_fx,0.001475296332500875 +illusion_1L,ppo,296,88.8,force,upper_fy,0.002100453246384859 +illusion_1L,ppo,296,88.8,force,lower_fx,0.002361292950809002 +illusion_1L,ppo,296,88.8,force,lower_fy,-0.0033559887669980526 +illusion_1L,ppo,297,89.1,force,front_fx,0.0018881928408518434 +illusion_1L,ppo,297,89.1,force,front_fy,-0.00038386444794014096 +illusion_1L,ppo,297,89.1,force,upper_fx,0.0015858510741963983 +illusion_1L,ppo,297,89.1,force,upper_fy,0.0022179295774549246 +illusion_1L,ppo,297,89.1,force,lower_fx,0.0022405851632356644 +illusion_1L,ppo,297,89.1,force,lower_fy,-0.0033223843201994896 +illusion_1L,ppo,298,89.4,force,front_fx,0.0018913777312263846 +illusion_1L,ppo,298,89.4,force,front_fy,-0.00022531626746058464 +illusion_1L,ppo,298,89.4,force,upper_fx,0.0016886981902644038 +illusion_1L,ppo,298,89.4,force,upper_fy,0.002376735210418701 +illusion_1L,ppo,298,89.4,force,lower_fx,0.002102467929944396 +illusion_1L,ppo,298,89.4,force,lower_fy,-0.0032589167822152376 +illusion_1L,ppo,299,89.7,force,front_fx,0.0018980083987116814 +illusion_1L,ppo,299,89.7,force,front_fy,-6.60150617477484e-05 +illusion_1L,ppo,299,89.7,force,upper_fx,0.0017873636679723859 +illusion_1L,ppo,299,89.7,force,upper_fy,0.002556602004915476 +illusion_1L,ppo,299,89.7,force,lower_fx,0.0019489816622808576 +illusion_1L,ppo,299,89.7,force,lower_fy,-0.0031635956838726997 +illusion_1L,ppo,300,90.0,force,front_fx,0.0019074245356023312 +illusion_1L,ppo,300,90.0,force,front_fy,7.127341814339161e-05 +illusion_1L,ppo,300,90.0,force,upper_fx,0.0018826076993718743 +illusion_1L,ppo,300,90.0,force,upper_fy,0.0027485531754791737 +illusion_1L,ppo,300,90.0,force,lower_fx,0.001802452839910984 +illusion_1L,ppo,300,90.0,force,lower_fy,-0.0030227405950427055 +illusion_1L,ppo,301,90.3,force,front_fx,0.0019083728548139334 +illusion_1L,ppo,301,90.3,force,front_fy,0.0001412117126164958 +illusion_1L,ppo,301,90.3,force,upper_fx,0.001967916265130043 +illusion_1L,ppo,301,90.3,force,upper_fy,0.002950146095827222 +illusion_1L,ppo,301,90.3,force,lower_fx,0.0016927587566897273 +illusion_1L,ppo,301,90.3,force,lower_fy,-0.002822590060532093 +illusion_1L,ppo,302,90.6,force,front_fx,0.001896349829621613 +illusion_1L,ppo,302,90.6,force,front_fy,0.000130292828544043 +illusion_1L,ppo,302,90.6,force,upper_fx,0.002029638970270753 +illusion_1L,ppo,302,90.6,force,upper_fy,0.0031605693511664867 +illusion_1L,ppo,302,90.6,force,lower_fx,0.0016368888318538666 +illusion_1L,ppo,302,90.6,force,lower_fy,-0.0025699299294501543 +illusion_1L,ppo,303,90.9,force,front_fx,0.001884903060272336 +illusion_1L,ppo,303,90.9,force,front_fy,5.096204040455632e-05 +illusion_1L,ppo,303,90.9,force,upper_fx,0.0020563818980008364 +illusion_1L,ppo,303,90.9,force,upper_fy,0.0033673718571662903 +illusion_1L,ppo,303,90.9,force,lower_fx,0.0016293303342536092 +illusion_1L,ppo,303,90.9,force,lower_fy,-0.002299719024449587 +illusion_1L,ppo,304,91.2,force,front_fx,0.0018982370384037495 +illusion_1L,ppo,304,91.2,force,front_fy,-5.812802555738017e-05 +illusion_1L,ppo,304,91.2,force,upper_fx,0.0020447138231247663 +illusion_1L,ppo,304,91.2,force,upper_fy,0.0035430537536740303 +illusion_1L,ppo,304,91.2,force,lower_fx,0.0016519551863893867 +illusion_1L,ppo,304,91.2,force,lower_fy,-0.0020511888433247805 +illusion_1L,ppo,305,91.5,force,front_fx,0.001946025062352419 +illusion_1L,ppo,305,91.5,force,front_fy,-0.0001650086633162573 +illusion_1L,ppo,305,91.5,force,upper_fx,0.0019932889845222235 +illusion_1L,ppo,305,91.5,force,upper_fy,0.0036692197900265455 +illusion_1L,ppo,305,91.5,force,lower_fx,0.0016928135883063078 +illusion_1L,ppo,305,91.5,force,lower_fy,-0.0018422988941892982 +illusion_1L,ppo,306,91.8,force,front_fx,0.0020197746343910694 +illusion_1L,ppo,306,91.8,force,front_fy,-0.0002622910251375288 +illusion_1L,ppo,306,91.8,force,upper_fx,0.0019012981792911887 +illusion_1L,ppo,306,91.8,force,upper_fy,0.00375274452380836 +illusion_1L,ppo,306,91.8,force,lower_fx,0.0017469272715970874 +illusion_1L,ppo,306,91.8,force,lower_fy,-0.0016828443622216582 +illusion_1L,ppo,307,92.1,force,front_fx,0.002105743158608675 +illusion_1L,ppo,307,92.1,force,front_fy,-0.0003663889074232429 +illusion_1L,ppo,307,92.1,force,upper_fx,0.0017768122488632798 +illusion_1L,ppo,307,92.1,force,upper_fy,0.0038118131924420595 +illusion_1L,ppo,307,92.1,force,lower_fx,0.001811679219827056 +illusion_1L,ppo,307,92.1,force,lower_fy,-0.0015963793266564608 +illusion_1L,ppo,308,92.4,force,front_fx,0.0021960227750241756 +illusion_1L,ppo,308,92.4,force,front_fy,-0.0004725097678601742 +illusion_1L,ppo,308,92.4,force,upper_fx,0.0016336576081812382 +illusion_1L,ppo,308,92.4,force,upper_fy,0.003856031456962228 +illusion_1L,ppo,308,92.4,force,lower_fx,0.0018892103107646108 +illusion_1L,ppo,308,92.4,force,lower_fy,-0.0016086105024442077 +illusion_1L,ppo,309,92.7,force,front_fx,0.0022753572557121515 +illusion_1L,ppo,309,92.7,force,front_fy,-0.0005834190524183214 +illusion_1L,ppo,309,92.7,force,upper_fx,0.0014759314944967628 +illusion_1L,ppo,309,92.7,force,upper_fy,0.003883063793182373 +illusion_1L,ppo,309,92.7,force,lower_fx,0.0019810490775853395 +illusion_1L,ppo,309,92.7,force,lower_fy,-0.0017269877716898918 +illusion_1L,ppo,310,93.0,force,front_fx,0.002343080472201109 +illusion_1L,ppo,310,93.0,force,front_fy,-0.0006950302631594241 +illusion_1L,ppo,310,93.0,force,upper_fx,0.0012980799656361341 +illusion_1L,ppo,310,93.0,force,upper_fy,0.0038859613705426455 +illusion_1L,ppo,310,93.0,force,lower_fx,0.002082389546558261 +illusion_1L,ppo,310,93.0,force,lower_fy,-0.0019352894742041826 +illusion_1L,ppo,311,93.3,force,front_fx,0.0023896945640444756 +illusion_1L,ppo,311,93.3,force,front_fy,-0.0007853265851736069 +illusion_1L,ppo,311,93.3,force,upper_fx,0.001105907023884356 +illusion_1L,ppo,311,93.3,force,upper_fy,0.003848341293632984 +illusion_1L,ppo,311,93.3,force,lower_fx,0.0021853481885045767 +illusion_1L,ppo,311,93.3,force,lower_fy,-0.0022051893174648285 +illusion_1L,ppo,312,93.6,force,front_fx,0.002402491867542267 +illusion_1L,ppo,312,93.6,force,front_fy,-0.0008395848562940955 +illusion_1L,ppo,312,93.6,force,upper_fx,0.0009294087649323046 +illusion_1L,ppo,312,93.6,force,upper_fy,0.0037376407999545336 +illusion_1L,ppo,312,93.6,force,lower_fx,0.002281974069774151 +illusion_1L,ppo,312,93.6,force,lower_fy,-0.0025043925270438194 +illusion_1L,ppo,313,93.9,force,front_fx,0.0023636389523744583 +illusion_1L,ppo,313,93.9,force,front_fy,-0.0008667684742249548 +illusion_1L,ppo,313,93.9,force,upper_fx,0.0008044359274208546 +illusion_1L,ppo,313,93.9,force,upper_fy,0.0035420486237853765 +illusion_1L,ppo,313,93.9,force,lower_fx,0.00236728903837502 +illusion_1L,ppo,313,93.9,force,lower_fy,-0.0027898347470909357 +illusion_1L,ppo,314,94.2,force,front_fx,0.002285138238221407 +illusion_1L,ppo,314,94.2,force,front_fy,-0.0008649163646623492 +illusion_1L,ppo,314,94.2,force,upper_fx,0.0007558500510640442 +illusion_1L,ppo,314,94.2,force,upper_fy,0.0032859237398952246 +illusion_1L,ppo,314,94.2,force,lower_fx,0.00244284700602293 +illusion_1L,ppo,314,94.2,force,lower_fy,-0.0030178145971149206 +illusion_1L,ppo,315,94.5,force,front_fx,0.0021777774672955275 +illusion_1L,ppo,315,94.5,force,front_fy,-0.0008587615448050201 +illusion_1L,ppo,315,94.5,force,upper_fx,0.0007931736763566732 +illusion_1L,ppo,315,94.5,force,upper_fy,0.002999334130436182 +illusion_1L,ppo,315,94.5,force,lower_fx,0.0025105667300522327 +illusion_1L,ppo,315,94.5,force,lower_fy,-0.003168500028550625 +illusion_1L,ppo,316,94.8,force,front_fx,0.0020800211932510138 +illusion_1L,ppo,316,94.8,force,front_fy,-0.0008467812440358102 +illusion_1L,ppo,316,94.8,force,upper_fx,0.0008916985243558884 +illusion_1L,ppo,316,94.8,force,upper_fy,0.0027116083074361086 +illusion_1L,ppo,316,94.8,force,lower_fx,0.002562327077612281 +illusion_1L,ppo,316,94.8,force,lower_fy,-0.003247208893299103 +illusion_1L,ppo,317,95.1,force,front_fx,0.00200315797701478 +illusion_1L,ppo,317,95.1,force,front_fy,-0.0008205781341530383 +illusion_1L,ppo,317,95.1,force,upper_fx,0.0010095230536535382 +illusion_1L,ppo,317,95.1,force,upper_fy,0.0024521478917449713 +illusion_1L,ppo,317,95.1,force,lower_fx,0.002579699968919158 +illusion_1L,ppo,317,95.1,force,lower_fy,-0.0032792275305837393 +illusion_1L,ppo,318,95.4,force,front_fx,0.0019502155482769012 +illusion_1L,ppo,318,95.4,force,front_fy,-0.000777112552896142 +illusion_1L,ppo,318,95.4,force,upper_fx,0.0011258355807512999 +illusion_1L,ppo,318,95.4,force,upper_fy,0.002239916240796447 +illusion_1L,ppo,318,95.4,force,lower_fx,0.0025497733149677515 +illusion_1L,ppo,318,95.4,force,lower_fy,-0.0032966393046081066 +illusion_1L,ppo,319,95.7,force,front_fx,0.001919125090353191 +illusion_1L,ppo,319,95.7,force,front_fy,-0.0007110425503924489 +illusion_1L,ppo,319,95.7,force,upper_fx,0.0012381941778585315 +illusion_1L,ppo,319,95.7,force,upper_fy,0.0020919612143188715 +illusion_1L,ppo,319,95.7,force,lower_fx,0.0024793457705527544 +illusion_1L,ppo,319,95.7,force,lower_fy,-0.0033170327078551054 +illusion_1L,ppo,320,96.0,force,front_fx,0.001900243922136724 +illusion_1L,ppo,320,96.0,force,front_fy,-0.0006216944311745465 +illusion_1L,ppo,320,96.0,force,upper_fx,0.001346601522527635 +illusion_1L,ppo,320,96.0,force,upper_fy,0.002022380009293556 +illusion_1L,ppo,320,96.0,force,lower_fx,0.0023860910441726446 +illusion_1L,ppo,320,96.0,force,lower_fy,-0.0033360417000949383 +illusion_1L,ppo,321,96.3,force,front_fx,0.001889802166260779 +illusion_1L,ppo,321,96.3,force,front_fy,-0.0005102650611661375 +illusion_1L,ppo,321,96.3,force,upper_fx,0.001452143071219325 +illusion_1L,ppo,321,96.3,force,upper_fy,0.0020329998806118965 +illusion_1L,ppo,321,96.3,force,lower_fx,0.002281664637848735 +illusion_1L,ppo,321,96.3,force,lower_fy,-0.00334177422337234 +illusion_1L,ppo,322,96.6,force,front_fx,0.0018878458067774773 +illusion_1L,ppo,322,96.6,force,front_fy,-0.0003766608133446425 +illusion_1L,ppo,322,96.6,force,upper_fx,0.001557347015477717 +illusion_1L,ppo,322,96.6,force,upper_fy,0.0021129294764250517 +illusion_1L,ppo,322,96.6,force,lower_fx,0.002168821869418025 +illusion_1L,ppo,322,96.6,force,lower_fy,-0.0033252083230763674 +illusion_1L,ppo,323,96.9,force,front_fx,0.001895575551316142 +illusion_1L,ppo,323,96.9,force,front_fy,-0.0002266411465825513 +illusion_1L,ppo,323,96.9,force,upper_fx,0.0016614282503724098 +illusion_1L,ppo,323,96.9,force,upper_fy,0.0022424596827477217 +illusion_1L,ppo,323,96.9,force,lower_fx,0.002044565975666046 +illusion_1L,ppo,323,96.9,force,lower_fy,-0.0032823362853378057 +illusion_1L,ppo,324,97.2,force,front_fx,0.0019077698234468699 +illusion_1L,ppo,324,97.2,force,front_fy,-7.445090886903927e-05 +illusion_1L,ppo,324,97.2,force,upper_fx,0.0017601510044187307 +illusion_1L,ppo,324,97.2,force,upper_fy,0.002407023450359702 +illusion_1L,ppo,324,97.2,force,lower_fx,0.0019107927801087499 +illusion_1L,ppo,324,97.2,force,lower_fy,-0.003204141976311803 +illusion_1L,ppo,325,97.5,force,front_fx,0.0019135395996272564 +illusion_1L,ppo,325,97.5,force,front_fy,5.0287799240322784e-05 +illusion_1L,ppo,325,97.5,force,upper_fx,0.0018484427127987146 +illusion_1L,ppo,325,97.5,force,upper_fy,0.002601164160296321 +illusion_1L,ppo,325,97.5,force,lower_fx,0.0017828081035986543 +illusion_1L,ppo,325,97.5,force,lower_fy,-0.0030733367893844843 +illusion_1L,ppo,326,97.8,force,front_fx,0.0019052058923989534 +illusion_1L,ppo,326,97.8,force,front_fy,0.00011541316780494526 +illusion_1L,ppo,326,97.8,force,upper_fx,0.0019210368627682328 +illusion_1L,ppo,326,97.8,force,upper_fy,0.002821562113240361 +illusion_1L,ppo,326,97.8,force,lower_fx,0.0016876216977834702 +illusion_1L,ppo,326,97.8,force,lower_fy,-0.0028746332973241806 +illusion_1L,ppo,327,98.1,force,front_fx,0.0018852625507861376 +illusion_1L,ppo,327,98.1,force,front_fy,8.827610872685909e-05 +illusion_1L,ppo,327,98.1,force,upper_fx,0.001972070662304759 +illusion_1L,ppo,327,98.1,force,upper_fy,0.003065073164179921 +illusion_1L,ppo,327,98.1,force,lower_fx,0.0016457089222967625 +illusion_1L,ppo,327,98.1,force,lower_fy,-0.0026172318030148745 +illusion_1L,ppo,328,98.4,force,front_fx,0.0018680643988773227 +illusion_1L,ppo,328,98.4,force,front_fy,2.364822876188555e-06 +illusion_1L,ppo,328,98.4,force,upper_fx,0.001994136953726411 +illusion_1L,ppo,328,98.4,force,upper_fy,0.0033111218363046646 +illusion_1L,ppo,328,98.4,force,lower_fx,0.0016490323469042778 +illusion_1L,ppo,328,98.4,force,lower_fy,-0.0023424671962857246 +illusion_1L,ppo,329,98.7,force,front_fx,0.001881178468465805 +illusion_1L,ppo,329,98.7,force,front_fy,-0.00010255357483401895 +illusion_1L,ppo,329,98.7,force,upper_fx,0.001982496352866292 +illusion_1L,ppo,329,98.7,force,upper_fy,0.0035231378860771656 +illusion_1L,ppo,329,98.7,force,lower_fx,0.0016761855222284794 +illusion_1L,ppo,329,98.7,force,lower_fy,-0.0020913684275001287 +illusion_1L,ppo,330,99.0,force,front_fx,0.0019311950309202075 +illusion_1L,ppo,330,99.0,force,front_fy,-0.00019731553038582206 +illusion_1L,ppo,330,99.0,force,upper_fx,0.001934156403876841 +illusion_1L,ppo,330,99.0,force,upper_fy,0.003678704146295786 +illusion_1L,ppo,330,99.0,force,lower_fx,0.001717670587822795 +illusion_1L,ppo,330,99.0,force,lower_fy,-0.0018759099766612053 +illusion_1L,ppo,331,99.3,force,front_fx,0.002013907767832279 +illusion_1L,ppo,331,99.3,force,front_fy,-0.00028449302772060037 +illusion_1L,ppo,331,99.3,force,upper_fx,0.001847773208282888 +illusion_1L,ppo,331,99.3,force,upper_fy,0.0037814942188560963 +illusion_1L,ppo,331,99.3,force,lower_fx,0.0017686213832348585 +illusion_1L,ppo,331,99.3,force,lower_fy,-0.0017006121343001723 +illusion_1L,ppo,332,99.6,force,front_fx,0.002103735227137804 +illusion_1L,ppo,332,99.6,force,front_fy,-0.000375503848772496 +illusion_1L,ppo,332,99.6,force,upper_fx,0.0017305713845416903 +illusion_1L,ppo,332,99.6,force,upper_fy,0.0038454486057162285 +illusion_1L,ppo,332,99.6,force,lower_fx,0.001822464051656425 +illusion_1L,ppo,332,99.6,force,lower_fy,-0.0015925863990560174 +illusion_1L,ppo,333,99.9,force,front_fx,0.002192581072449684 +illusion_1L,ppo,333,99.9,force,front_fy,-0.00047601619735360146 +illusion_1L,ppo,333,99.9,force,upper_fx,0.0015947408974170685 +illusion_1L,ppo,333,99.9,force,upper_fy,0.003879253752529621 +illusion_1L,ppo,333,99.9,force,lower_fx,0.0018835748778656125 +illusion_1L,ppo,333,99.9,force,lower_fy,-0.0015826174058020115 +illusion_1L,ppo,334,100.2,force,front_fx,0.002272722776979208 +illusion_1L,ppo,334,100.2,force,front_fy,-0.0005841600359417498 +illusion_1L,ppo,334,100.2,force,upper_fx,0.001446371665224433 +illusion_1L,ppo,334,100.2,force,upper_fy,0.0038852349389344454 +illusion_1L,ppo,334,100.2,force,lower_fx,0.001962223555892706 +illusion_1L,ppo,334,100.2,force,lower_fy,-0.0016809179214760661 +illusion_1L,ppo,335,100.5,force,front_fx,0.0023446499835699797 +illusion_1L,ppo,335,100.5,force,front_fy,-0.0006930653471499681 +illusion_1L,ppo,335,100.5,force,upper_fx,0.0012800728436559439 +illusion_1L,ppo,335,100.5,force,upper_fy,0.003868329571560025 +illusion_1L,ppo,335,100.5,force,lower_fx,0.002059342572465539 +illusion_1L,ppo,335,100.5,force,lower_fy,-0.0018744865665212274 +illusion_1L,ppo,336,100.8,force,front_fx,0.0023930328898131847 +illusion_1L,ppo,336,100.8,force,front_fy,-0.000779489055275917 +illusion_1L,ppo,336,100.8,force,upper_fx,0.001096739317290485 +illusion_1L,ppo,336,100.8,force,upper_fy,0.0038250212091952562 +illusion_1L,ppo,336,100.8,force,lower_fx,0.002165354322642088 +illusion_1L,ppo,336,100.8,force,lower_fy,-0.002143505960702896 +illusion_1L,ppo,337,101.1,force,front_fx,0.0024072788655757904 +illusion_1L,ppo,337,101.1,force,front_fy,-0.0008260589092969894 +illusion_1L,ppo,337,101.1,force,upper_fx,0.00092418392887339 +illusion_1L,ppo,337,101.1,force,upper_fy,0.003727251198142767 +illusion_1L,ppo,337,101.1,force,lower_fx,0.0022691849153488874 +illusion_1L,ppo,337,101.1,force,lower_fy,-0.002461462514474988 +illusion_1L,ppo,338,101.4,force,front_fx,0.0023758886381983757 +illusion_1L,ppo,338,101.4,force,front_fy,-0.0008422493119724095 +illusion_1L,ppo,338,101.4,force,upper_fx,0.000802112917881459 +illusion_1L,ppo,338,101.4,force,upper_fy,0.003550896653905511 +illusion_1L,ppo,338,101.4,force,lower_fx,0.0023620263673365116 +illusion_1L,ppo,338,101.4,force,lower_fy,-0.0027820272371172905 +illusion_1L,ppo,339,101.7,force,front_fx,0.0022884963545948267 +illusion_1L,ppo,339,101.7,force,front_fy,-0.0008370000286959112 +illusion_1L,ppo,339,101.7,force,upper_fx,0.0007564277620986104 +illusion_1L,ppo,339,101.7,force,upper_fy,0.0033050470519810915 +illusion_1L,ppo,339,101.7,force,lower_fx,0.002440209500491619 +illusion_1L,ppo,339,101.7,force,lower_fy,-0.0030517952982336283 +illusion_1L,ppo,340,102.0,force,front_fx,0.0021798438392579556 +illusion_1L,ppo,340,102.0,force,front_fy,-0.0008336249738931656 +illusion_1L,ppo,340,102.0,force,upper_fx,0.0007910748245194554 +illusion_1L,ppo,340,102.0,force,upper_fy,0.0030194094870239496 +illusion_1L,ppo,340,102.0,force,lower_fx,0.0025051585398614407 +illusion_1L,ppo,340,102.0,force,lower_fy,-0.0032347626984119415 +illusion_1L,ppo,341,102.3,force,front_fx,0.0020736446604132652 +illusion_1L,ppo,341,102.3,force,front_fy,-0.0008258789894171059 +illusion_1L,ppo,341,102.3,force,upper_fx,0.0008816863992251456 +illusion_1L,ppo,341,102.3,force,upper_fy,0.0027280854992568493 +illusion_1L,ppo,341,102.3,force,lower_fx,0.002555285347625613 +illusion_1L,ppo,341,102.3,force,lower_fy,-0.0033271603751927614 +illusion_1L,ppo,342,102.6,force,front_fx,0.0019945672247558832 +illusion_1L,ppo,342,102.6,force,front_fy,-0.0008096448145806789 +illusion_1L,ppo,342,102.6,force,upper_fx,0.0009932317771017551 +illusion_1L,ppo,342,102.6,force,upper_fy,0.0024588012602180243 +illusion_1L,ppo,342,102.6,force,lower_fx,0.002577833365648985 +illusion_1L,ppo,342,102.6,force,lower_fy,-0.0033534483518451452 +illusion_1L,ppo,343,102.9,force,front_fx,0.0019442461198195815 +illusion_1L,ppo,343,102.9,force,front_fy,-0.0007773978286422789 +illusion_1L,ppo,343,102.9,force,upper_fx,0.0011072246124967933 +illusion_1L,ppo,343,102.9,force,upper_fy,0.002233394654467702 +illusion_1L,ppo,343,102.9,force,lower_fx,0.00255739688873291 +illusion_1L,ppo,343,102.9,force,lower_fy,-0.003352539613842964 +illusion_1L,ppo,344,103.2,force,front_fx,0.0019156027119606733 +illusion_1L,ppo,344,103.2,force,front_fy,-0.0007190353935584426 +illusion_1L,ppo,344,103.2,force,upper_fx,0.0012189877452328801 +illusion_1L,ppo,344,103.2,force,upper_fy,0.0020756497979164124 +illusion_1L,ppo,344,103.2,force,lower_fx,0.0024960096925497055 +illusion_1L,ppo,344,103.2,force,lower_fy,-0.0033519244752824306 +illusion_1L,ppo,345,103.5,force,front_fx,0.0019020005129277706 +illusion_1L,ppo,345,103.5,force,front_fy,-0.0006373630603775382 +illusion_1L,ppo,345,103.5,force,upper_fx,0.0013302305014804006 +illusion_1L,ppo,345,103.5,force,upper_fy,0.0020033828914165497 +illusion_1L,ppo,345,103.5,force,lower_fx,0.0024117787834256887 +illusion_1L,ppo,345,103.5,force,lower_fy,-0.003353756619617343 +illusion_1L,ppo,346,103.8,force,front_fx,0.0018952838145196438 +illusion_1L,ppo,346,103.8,force,front_fy,-0.0005321343196555972 +illusion_1L,ppo,346,103.8,force,upper_fx,0.0014421142404899001 +illusion_1L,ppo,346,103.8,force,upper_fy,0.0020196184050291777 +illusion_1L,ppo,346,103.8,force,lower_fx,0.002318786922842264 +illusion_1L,ppo,346,103.8,force,lower_fy,-0.003341987496241927 +illusion_1L,ppo,347,104.1,force,front_fx,0.001892188796773553 +illusion_1L,ppo,347,104.1,force,front_fy,-0.0004018883628305048 +illusion_1L,ppo,347,104.1,force,upper_fx,0.0015519766602665186 +illusion_1L,ppo,347,104.1,force,upper_fy,0.0021129364613443613 +illusion_1L,ppo,347,104.1,force,lower_fx,0.0022170026786625385 +illusion_1L,ppo,347,104.1,force,lower_fy,-0.0033054195810109377 +illusion_1L,ppo,348,104.4,force,front_fx,0.0018914156826213002 +illusion_1L,ppo,348,104.4,force,front_fy,-0.00025351071963086724 +illusion_1L,ppo,348,104.4,force,upper_fx,0.0016569331055507064 +illusion_1L,ppo,348,104.4,force,upper_fy,0.002261609537526965 +illusion_1L,ppo,348,104.4,force,lower_fx,0.002099494216963649 +illusion_1L,ppo,348,104.4,force,lower_fy,-0.003244664752855897 +illusion_1L,ppo,349,104.7,force,front_fx,0.0018987107323482633 +illusion_1L,ppo,349,104.7,force,front_fy,-0.00010072044096887112 +illusion_1L,ppo,349,104.7,force,upper_fx,0.0017557962564751506 +illusion_1L,ppo,349,104.7,force,upper_fy,0.0024482703302055597 +illusion_1L,ppo,349,104.7,force,lower_fx,0.0019673749338835478 +illusion_1L,ppo,349,104.7,force,lower_fy,-0.003154491074383259 +illusion_1L,ppo,350,105.0,force,front_fx,0.0019007875816896558 +illusion_1L,ppo,350,105.0,force,front_fy,3.285361162852496e-05 +illusion_1L,ppo,350,105.0,force,upper_fx,0.001846002764068544 +illusion_1L,ppo,350,105.0,force,upper_fy,0.00266357627697289 +illusion_1L,ppo,350,105.0,force,lower_fx,0.0018351427279412746 +illusion_1L,ppo,350,105.0,force,lower_fy,-0.0030216635204851627 +illusion_1L,ppo,351,105.3,force,front_fx,0.0018961491296067834 +illusion_1L,ppo,351,105.3,force,front_fy,0.00010919917258433998 +illusion_1L,ppo,351,105.3,force,upper_fx,0.0019234665669500828 +illusion_1L,ppo,351,105.3,force,upper_fy,0.0029021732043474913 +illusion_1L,ppo,351,105.3,force,lower_fx,0.0017282248008996248 +illusion_1L,ppo,351,105.3,force,lower_fy,-0.002833812963217497 +illusion_1L,ppo,352,105.6,force,front_fx,0.0018806078005582094 +illusion_1L,ppo,352,105.6,force,front_fy,9.943018085323274e-05 +illusion_1L,ppo,352,105.6,force,upper_fx,0.0019816195126622915 +illusion_1L,ppo,352,105.6,force,upper_fy,0.0031618636567145586 +illusion_1L,ppo,352,105.6,force,lower_fx,0.0016708989860489964 +illusion_1L,ppo,352,105.6,force,lower_fy,-0.0025915021542459726 +illusion_1L,ppo,353,105.9,force,front_fx,0.0018706107512116432 +illusion_1L,ppo,353,105.9,force,front_fy,2.2224214262678288e-05 +illusion_1L,ppo,353,105.9,force,upper_fx,0.0020126148592680693 +illusion_1L,ppo,353,105.9,force,upper_fy,0.003420443506911397 +illusion_1L,ppo,353,105.9,force,lower_fx,0.00166279636323452 +illusion_1L,ppo,353,105.9,force,lower_fy,-0.002324474975466728 +illusion_1L,ppo,354,106.2,force,front_fx,0.0018863044679164886 +illusion_1L,ppo,354,106.2,force,front_fy,-8.359891944564879e-05 +illusion_1L,ppo,354,106.2,force,upper_fx,0.0020097128581255674 +illusion_1L,ppo,354,106.2,force,upper_fy,0.0036339720245450735 +illusion_1L,ppo,354,106.2,force,lower_fx,0.0016813586698845029 +illusion_1L,ppo,354,106.2,force,lower_fy,-0.002074714982882142 +illusion_1L,ppo,355,106.5,force,front_fx,0.0019362173043191433 +illusion_1L,ppo,355,106.5,force,front_fy,-0.00018323749827686697 +illusion_1L,ppo,355,106.5,force,upper_fx,0.0019669958855956793 +illusion_1L,ppo,355,106.5,force,upper_fy,0.0037755421362817287 +illusion_1L,ppo,355,106.5,force,lower_fx,0.0017120438860729337 +illusion_1L,ppo,355,106.5,force,lower_fy,-0.001861504279077053 +illusion_1L,ppo,356,106.8,force,front_fx,0.0020169971976429224 +illusion_1L,ppo,356,106.8,force,front_fy,-0.00026801557396538556 +illusion_1L,ppo,356,106.8,force,upper_fx,0.0018836981616914272 +illusion_1L,ppo,356,106.8,force,upper_fy,0.003851616755127907 +illusion_1L,ppo,356,106.8,force,lower_fx,0.001754003926180303 +illusion_1L,ppo,356,106.8,force,lower_fy,-0.001691688084974885 +illusion_1L,ppo,357,107.1,force,front_fx,0.002108842134475708 +illusion_1L,ppo,357,107.1,force,front_fy,-0.0003640436625573784 +illusion_1L,ppo,357,107.1,force,upper_fx,0.0017688623629510403 +illusion_1L,ppo,357,107.1,force,upper_fy,0.003884328296408057 +illusion_1L,ppo,357,107.1,force,lower_fx,0.00180615799035877 +illusion_1L,ppo,357,107.1,force,lower_fy,-0.0015885501634329557 +illusion_1L,ppo,358,107.4,force,front_fx,0.002193264663219452 +illusion_1L,ppo,358,107.4,force,front_fy,-0.000459074683021754 +illusion_1L,ppo,358,107.4,force,upper_fx,0.0016358972061425447 +illusion_1L,ppo,358,107.4,force,upper_fy,0.0038927169516682625 +illusion_1L,ppo,358,107.4,force,lower_fx,0.001874143141321838 +illusion_1L,ppo,358,107.4,force,lower_fy,-0.0015864416491240263 +illusion_1L,ppo,359,107.7,force,front_fx,0.0022715297527611256 +illusion_1L,ppo,359,107.7,force,front_fy,-0.0005582625744864345 +illusion_1L,ppo,359,107.7,force,upper_fx,0.0014901146059855819 +illusion_1L,ppo,359,107.7,force,upper_fy,0.003885700600221753 +illusion_1L,ppo,359,107.7,force,lower_fx,0.001964051276445389 +illusion_1L,ppo,359,107.7,force,lower_fy,-0.0017023923574015498 +illusion_1L,ppo,360,108.0,force,front_fx,0.0023403943050652742 +illusion_1L,ppo,360,108.0,force,front_fy,-0.0006708932342007756 +illusion_1L,ppo,360,108.0,force,upper_fx,0.0013260624837130308 +illusion_1L,ppo,360,108.0,force,upper_fy,0.003867262974381447 +illusion_1L,ppo,360,108.0,force,lower_fx,0.0020748183596879244 +illusion_1L,ppo,360,108.0,force,lower_fy,-0.0019229254685342312 +illusion_1L,ppo,361,108.3,force,front_fx,0.0023902799002826214 +illusion_1L,ppo,361,108.3,force,front_fy,-0.000761862494982779 +illusion_1L,ppo,361,108.3,force,upper_fx,0.0011415242915973067 +illusion_1L,ppo,361,108.3,force,upper_fy,0.003828850109130144 +illusion_1L,ppo,361,108.3,force,lower_fx,0.0021930255461484194 +illusion_1L,ppo,361,108.3,force,lower_fy,-0.0022194182965904474 +illusion_1L,ppo,362,108.6,force,front_fx,0.0023979467805474997 +illusion_1L,ppo,362,108.6,force,front_fy,-0.0008208766230382025 +illusion_1L,ppo,362,108.6,force,upper_fx,0.0009561559418216348 +illusion_1L,ppo,362,108.6,force,upper_fy,0.0037397118285298347 +illusion_1L,ppo,362,108.6,force,lower_fx,0.0023024440743029118 +illusion_1L,ppo,362,108.6,force,lower_fy,-0.002559131011366844 +illusion_1L,ppo,363,108.9,force,front_fx,0.0023684923071414232 +illusion_1L,ppo,363,108.9,force,front_fy,-0.0008477172232232988 +illusion_1L,ppo,363,108.9,force,upper_fx,0.0008078273967839777 +illusion_1L,ppo,363,108.9,force,upper_fy,0.003571269800886512 +illusion_1L,ppo,363,108.9,force,lower_fx,0.0023956550285220146 +illusion_1L,ppo,363,108.9,force,lower_fy,-0.0028917554300278425 +illusion_1L,ppo,364,109.2,force,front_fx,0.0022899345494806767 +illusion_1L,ppo,364,109.2,force,front_fy,-0.0008530010818503797 +illusion_1L,ppo,364,109.2,force,upper_fx,0.0007334651309065521 +illusion_1L,ppo,364,109.2,force,upper_fy,0.0033292234875261784 +illusion_1L,ppo,364,109.2,force,lower_fx,0.0024738959036767483 +illusion_1L,ppo,364,109.2,force,lower_fy,-0.0031619309447705746 +illusion_1L,ppo,365,109.5,force,front_fx,0.002187587320804596 +illusion_1L,ppo,365,109.5,force,front_fy,-0.0008606896735727787 +illusion_1L,ppo,365,109.5,force,upper_fx,0.0007497553597204387 +illusion_1L,ppo,365,109.5,force,upper_fy,0.0030395863577723503 +illusion_1L,ppo,365,109.5,force,lower_fx,0.002542259404435754 +illusion_1L,ppo,365,109.5,force,lower_fy,-0.0033327413257211447 +illusion_1L,ppo,366,109.8,force,front_fx,0.0020864226389676332 +illusion_1L,ppo,366,109.8,force,front_fy,-0.0008534350199624896 +illusion_1L,ppo,366,109.8,force,upper_fx,0.0008395726326853037 +illusion_1L,ppo,366,109.8,force,upper_fy,0.0027382366824895144 +illusion_1L,ppo,366,109.8,force,lower_fx,0.002599370898678899 +illusion_1L,ppo,366,109.8,force,lower_fy,-0.003405757714062929 +illusion_1L,ppo,367,110.1,force,front_fx,0.0020089305471628904 +illusion_1L,ppo,367,110.1,force,front_fy,-0.0008355252211913466 +illusion_1L,ppo,367,110.1,force,upper_fx,0.0009599358891136944 +illusion_1L,ppo,367,110.1,force,upper_fy,0.0024623528588563204 +illusion_1L,ppo,367,110.1,force,lower_fx,0.0026296889409422874 +illusion_1L,ppo,367,110.1,force,lower_fy,-0.0034121056087315083 +illusion_1L,ppo,368,110.4,force,front_fx,0.0019589457660913467 +illusion_1L,ppo,368,110.4,force,front_fy,-0.0008005385170690715 +illusion_1L,ppo,368,110.4,force,upper_fx,0.0010848791571334004 +illusion_1L,ppo,368,110.4,force,upper_fy,0.0022398079745471478 +illusion_1L,ppo,368,110.4,force,lower_fx,0.0026151540223509073 +illusion_1L,ppo,368,110.4,force,lower_fy,-0.0033924956806004047 +illusion_1L,ppo,369,110.7,force,front_fx,0.0019286187598481774 +illusion_1L,ppo,369,110.7,force,front_fy,-0.0007398329908028245 +illusion_1L,ppo,369,110.7,force,upper_fx,0.001207485212944448 +illusion_1L,ppo,369,110.7,force,upper_fy,0.002090105088427663 +illusion_1L,ppo,369,110.7,force,lower_fx,0.002554085338488221 +illusion_1L,ppo,369,110.7,force,lower_fy,-0.0033769505098462105 +illusion_1L,ppo,370,111.0,force,front_fx,0.0019078977638855577 +illusion_1L,ppo,370,111.0,force,front_fy,-0.0006551936385221779 +illusion_1L,ppo,370,111.0,force,upper_fx,0.0013259246479719877 +illusion_1L,ppo,370,111.0,force,upper_fy,0.0020262335892766714 +illusion_1L,ppo,370,111.0,force,lower_fx,0.0024635340087115765 +illusion_1L,ppo,370,111.0,force,lower_fy,-0.0033694268204271793 +illusion_1L,ppo,371,111.3,force,front_fx,0.0018952275859192014 +illusion_1L,ppo,371,111.3,force,front_fy,-0.0005472757620736957 +illusion_1L,ppo,371,111.3,force,upper_fx,0.001441411324776709 +illusion_1L,ppo,371,111.3,force,upper_fy,0.002051194664090872 +illusion_1L,ppo,371,111.3,force,lower_fx,0.002362288534641266 +illusion_1L,ppo,371,111.3,force,lower_fy,-0.0033511642832309008 +illusion_1L,ppo,372,111.6,force,front_fx,0.0018893061205744743 +illusion_1L,ppo,372,111.6,force,front_fy,-0.00041443962254561484 +illusion_1L,ppo,372,111.6,force,upper_fx,0.0015537581639364362 +illusion_1L,ppo,372,111.6,force,upper_fy,0.0021521311718970537 +illusion_1L,ppo,372,111.6,force,lower_fx,0.002254631370306015 +illusion_1L,ppo,372,111.6,force,lower_fy,-0.0033066989853978157 +illusion_1L,ppo,373,111.9,force,front_fx,0.001887903199531138 +illusion_1L,ppo,373,111.9,force,front_fy,-0.000262676301645115 +illusion_1L,ppo,373,111.9,force,upper_fx,0.0016616337234154344 +illusion_1L,ppo,373,111.9,force,upper_fy,0.0023066753055900335 +illusion_1L,ppo,373,111.9,force,lower_fx,0.002132902853190899 +illusion_1L,ppo,373,111.9,force,lower_fy,-0.0032372933346778154 +illusion_1L,ppo,374,112.2,force,front_fx,0.001895248075015843 +illusion_1L,ppo,374,112.2,force,front_fy,-0.00010325288167223334 +illusion_1L,ppo,374,112.2,force,upper_fx,0.0017645853804424405 +illusion_1L,ppo,374,112.2,force,upper_fy,0.0024973531253635883 +illusion_1L,ppo,374,112.2,force,lower_fx,0.0019955954048782587 +illusion_1L,ppo,374,112.2,force,lower_fy,-0.0031429415103048086 +illusion_1L,ppo,375,112.5,force,front_fx,0.0019038186874240637 +illusion_1L,ppo,375,112.5,force,front_fy,3.453939643804915e-05 +illusion_1L,ppo,375,112.5,force,upper_fx,0.0018609694670885801 +illusion_1L,ppo,375,112.5,force,upper_fy,0.002711385255679488 +illusion_1L,ppo,375,112.5,force,lower_fx,0.0018568539526313543 +illusion_1L,ppo,375,112.5,force,lower_fy,-0.0030109265353530645 +illusion_1L,ppo,376,112.8,force,front_fx,0.001903204363770783 +illusion_1L,ppo,376,112.8,force,front_fy,0.0001229499321198091 +illusion_1L,ppo,376,112.8,force,upper_fx,0.0019450719701126218 +illusion_1L,ppo,376,112.8,force,upper_fy,0.002939630998298526 +illusion_1L,ppo,376,112.8,force,lower_fx,0.001742860651575029 +illusion_1L,ppo,376,112.8,force,lower_fy,-0.002823066897690296 +illusion_1L,ppo,377,113.1,force,front_fx,0.0018886574544012547 +illusion_1L,ppo,377,113.1,force,front_fy,0.000125376129290089 +illusion_1L,ppo,377,113.1,force,upper_fx,0.002006493741646409 +illusion_1L,ppo,377,113.1,force,upper_fy,0.003180303145200014 +illusion_1L,ppo,377,113.1,force,lower_fx,0.0016757497796788812 +illusion_1L,ppo,377,113.1,force,lower_fy,-0.0025787928607314825 +illusion_1L,ppo,378,113.4,force,front_fx,0.001876187277957797 +illusion_1L,ppo,378,113.4,force,front_fy,5.6119908549590036e-05 +illusion_1L,ppo,378,113.4,force,upper_fx,0.0020373740699142218 +illusion_1L,ppo,378,113.4,force,upper_fy,0.003417480504140258 +illusion_1L,ppo,378,113.4,force,lower_fx,0.0016569058643653989 +illusion_1L,ppo,378,113.4,force,lower_fy,-0.002308553084731102 +illusion_1L,ppo,379,113.7,force,front_fx,0.0018886997131630778 +illusion_1L,ppo,379,113.7,force,front_fy,-4.951260416419245e-05 +illusion_1L,ppo,379,113.7,force,upper_fx,0.002034309320151806 +illusion_1L,ppo,379,113.7,force,upper_fy,0.003615550696849823 +illusion_1L,ppo,379,113.7,force,lower_fx,0.0016688760370016098 +illusion_1L,ppo,379,113.7,force,lower_fy,-0.002053829375654459 +illusion_1L,ppo,380,114.0,force,front_fx,0.0019369963556528091 +illusion_1L,ppo,380,114.0,force,front_fy,-0.00015286123380064964 +illusion_1L,ppo,380,114.0,force,upper_fx,0.0019936489406973124 +illusion_1L,ppo,380,114.0,force,upper_fy,0.0037492041010409594 +illusion_1L,ppo,380,114.0,force,lower_fx,0.0016980343498289585 +illusion_1L,ppo,380,114.0,force,lower_fy,-0.00183846615254879 +illusion_1L,ppo,381,114.3,force,front_fx,0.0020145755261182785 +illusion_1L,ppo,381,114.3,force,front_fy,-0.00025134996394626796 +illusion_1L,ppo,381,114.3,force,upper_fx,0.001913206186145544 +illusion_1L,ppo,381,114.3,force,upper_fy,0.0038250121288001537 +illusion_1L,ppo,381,114.3,force,lower_fx,0.0017421676311641932 +illusion_1L,ppo,381,114.3,force,lower_fy,-0.0016755058895796537 +illusion_1L,ppo,382,114.6,force,front_fx,0.0021021035499870777 +illusion_1L,ppo,382,114.6,force,front_fy,-0.0003485267225187272 +illusion_1L,ppo,382,114.6,force,upper_fx,0.0017991437343880534 +illusion_1L,ppo,382,114.6,force,upper_fy,0.003866907674819231 +illusion_1L,ppo,382,114.6,force,lower_fx,0.0018019102280959487 +illusion_1L,ppo,382,114.6,force,lower_fy,-0.0015834614168852568 +illusion_1L,ppo,383,114.9,force,front_fx,0.002194829983636737 +illusion_1L,ppo,383,114.9,force,front_fy,-0.0004501093062572181 +illusion_1L,ppo,383,114.9,force,upper_fx,0.001663295435719192 +illusion_1L,ppo,383,114.9,force,upper_fy,0.0038890314754098654 +illusion_1L,ppo,383,114.9,force,lower_fx,0.0018757221987470984 +illusion_1L,ppo,383,114.9,force,lower_fy,-0.001592337037436664 +illusion_1L,ppo,384,115.2,force,front_fx,0.0022718606051057577 +illusion_1L,ppo,384,115.2,force,front_fy,-0.0005650863167829812 +illusion_1L,ppo,384,115.2,force,upper_fx,0.0015125770587474108 +illusion_1L,ppo,384,115.2,force,upper_fy,0.003891834756359458 +illusion_1L,ppo,384,115.2,force,lower_fx,0.0019685958977788687 +illusion_1L,ppo,384,115.2,force,lower_fy,-0.00171396613586694 +illusion_1L,ppo,385,115.5,force,front_fx,0.0023361516650766134 +illusion_1L,ppo,385,115.5,force,front_fy,-0.0006648499984294176 +illusion_1L,ppo,385,115.5,force,upper_fx,0.0013422832125797868 +illusion_1L,ppo,385,115.5,force,upper_fy,0.003876744071021676 +illusion_1L,ppo,385,115.5,force,lower_fx,0.0020770470146089792 +illusion_1L,ppo,385,115.5,force,lower_fy,-0.0019365167245268822 +illusion_1L,ppo,386,115.8,force,front_fx,0.0023823643568903208 +illusion_1L,ppo,386,115.8,force,front_fy,-0.0007622495177201927 +illusion_1L,ppo,386,115.8,force,upper_fx,0.0011521526612341404 +illusion_1L,ppo,386,115.8,force,upper_fy,0.0038345286156982183 +illusion_1L,ppo,386,115.8,force,lower_fx,0.002191716805100441 +illusion_1L,ppo,386,115.8,force,lower_fy,-0.0022315194364637136 +illusion_1L,ppo,387,116.1,force,front_fx,0.0023956301156431437 +illusion_1L,ppo,387,116.1,force,front_fy,-0.0008200508891604841 +illusion_1L,ppo,387,116.1,force,upper_fx,0.0009662457159720361 +illusion_1L,ppo,387,116.1,force,upper_fy,0.0037338566035032272 +illusion_1L,ppo,387,116.1,force,lower_fx,0.0022997395135462284 +illusion_1L,ppo,387,116.1,force,lower_fy,-0.0025653305929154158 +illusion_1L,ppo,388,116.4,force,front_fx,0.002362672006711364 +illusion_1L,ppo,388,116.4,force,front_fy,-0.000850235519465059 +illusion_1L,ppo,388,116.4,force,upper_fx,0.000821032386738807 +illusion_1L,ppo,388,116.4,force,upper_fy,0.00355463195592165 +illusion_1L,ppo,388,116.4,force,lower_fx,0.00239467341452837 +illusion_1L,ppo,388,116.4,force,lower_fy,-0.002893818076699972 +illusion_1L,ppo,389,116.7,force,front_fx,0.0022887757513672113 +illusion_1L,ppo,389,116.7,force,front_fy,-0.0008678722660988569 +illusion_1L,ppo,389,116.7,force,upper_fx,0.0007474704761989415 +illusion_1L,ppo,389,116.7,force,upper_fy,0.003307718550786376 +illusion_1L,ppo,389,116.7,force,lower_fx,0.0024776307400316 +illusion_1L,ppo,389,116.7,force,lower_fy,-0.0031646855641156435 +illusion_1L,ppo,390,117.0,force,front_fx,0.0021898464765399694 +illusion_1L,ppo,390,117.0,force,front_fy,-0.0008632960962131619 +illusion_1L,ppo,390,117.0,force,upper_fx,0.0007622894481755793 +illusion_1L,ppo,390,117.0,force,upper_fy,0.003020151983946562 +illusion_1L,ppo,390,117.0,force,lower_fx,0.0025502811186015606 +illusion_1L,ppo,390,117.0,force,lower_fy,-0.0033428433816879988 +illusion_1L,ppo,391,117.3,force,front_fx,0.0020897022914141417 +illusion_1L,ppo,391,117.3,force,front_fy,-0.0008557524415664375 +illusion_1L,ppo,391,117.3,force,upper_fx,0.0008485879516229033 +illusion_1L,ppo,391,117.3,force,upper_fy,0.0027238286565989256 +illusion_1L,ppo,391,117.3,force,lower_fx,0.002608578186482191 +illusion_1L,ppo,391,117.3,force,lower_fy,-0.0034222581889480352 +illusion_1L,ppo,392,117.6,force,front_fx,0.0020101270638406277 +illusion_1L,ppo,392,117.6,force,front_fy,-0.0008360882638953626 +illusion_1L,ppo,392,117.6,force,upper_fx,0.0009646722464822233 +illusion_1L,ppo,392,117.6,force,upper_fy,0.002451895736157894 +illusion_1L,ppo,392,117.6,force,lower_fx,0.002636550460010767 +illusion_1L,ppo,392,117.6,force,lower_fy,-0.0034296198282390833 +illusion_1L,ppo,393,117.9,force,front_fx,0.00195684633217752 +illusion_1L,ppo,393,117.9,force,front_fy,-0.0007988098077476025 +illusion_1L,ppo,393,117.9,force,upper_fx,0.0010861404007300735 +illusion_1L,ppo,393,117.9,force,upper_fy,0.002231447258964181 +illusion_1L,ppo,393,117.9,force,lower_fx,0.002617733785882592 +illusion_1L,ppo,393,117.9,force,lower_fy,-0.003407315816730261 +illusion_1L,ppo,394,118.2,force,front_fx,0.0019255268853157759 +illusion_1L,ppo,394,118.2,force,front_fy,-0.00073662941576913 +illusion_1L,ppo,394,118.2,force,upper_fx,0.0012084239860996604 +illusion_1L,ppo,394,118.2,force,upper_fy,0.002081468002870679 +illusion_1L,ppo,394,118.2,force,lower_fx,0.002554868347942829 +illusion_1L,ppo,394,118.2,force,lower_fy,-0.003383818781003356 +illusion_1L,ppo,395,118.5,force,front_fx,0.001905883545987308 +illusion_1L,ppo,395,118.5,force,front_fy,-0.0006512079271487892 +illusion_1L,ppo,395,118.5,force,upper_fx,0.0013293849769979715 +illusion_1L,ppo,395,118.5,force,upper_fy,0.0020174880046397448 +illusion_1L,ppo,395,118.5,force,lower_fx,0.0024652723222970963 +illusion_1L,ppo,395,118.5,force,lower_fy,-0.0033675185404717922 +illusion_1L,ppo,396,118.8,force,front_fx,0.00189413211774081 +illusion_1L,ppo,396,118.8,force,front_fy,-0.0005428951699286699 +illusion_1L,ppo,396,118.8,force,upper_fx,0.0014480779645964503 +illusion_1L,ppo,396,118.8,force,upper_fy,0.0020477031357586384 +illusion_1L,ppo,396,118.8,force,lower_fx,0.0023657293058931828 +illusion_1L,ppo,396,118.8,force,lower_fy,-0.003345487406477332 +illusion_1L,ppo,397,119.1,force,front_fx,0.0018901656148955226 +illusion_1L,ppo,397,119.1,force,front_fy,-0.00041044410318136215 +illusion_1L,ppo,397,119.1,force,upper_fx,0.001564025180414319 +illusion_1L,ppo,397,119.1,force,upper_fy,0.0021604441571980715 +illusion_1L,ppo,397,119.1,force,lower_fx,0.002260165521875024 +illusion_1L,ppo,397,119.1,force,lower_fy,-0.0033030190970748663 +illusion_1L,ppo,398,119.4,force,front_fx,0.001892433618195355 +illusion_1L,ppo,398,119.4,force,front_fy,-0.0002590635558590293 +illusion_1L,ppo,398,119.4,force,upper_fx,0.0016744796885177493 +illusion_1L,ppo,398,119.4,force,upper_fy,0.0023282726760953665 +illusion_1L,ppo,398,119.4,force,lower_fx,0.002141020493581891 +illusion_1L,ppo,398,119.4,force,lower_fy,-0.003234290052205324 +illusion_1L,ppo,399,119.7,force,front_fx,0.0018965097842738032 +illusion_1L,ppo,399,119.7,force,front_fy,-9.591403068043292e-05 +illusion_1L,ppo,399,119.7,force,upper_fx,0.001776382327079773 +illusion_1L,ppo,399,119.7,force,upper_fy,0.0025293519720435143 +illusion_1L,ppo,399,119.7,force,lower_fx,0.002005132380872965 +illusion_1L,ppo,399,119.7,force,lower_fy,-0.0031332573853433132 +illusion_1L,ppo,0,0.0,alpha,front,0.4128711223602295 +illusion_1L,ppo,0,0.0,alpha,upper,-0.5174829959869385 +illusion_1L,ppo,0,0.0,alpha,lower,0.25394558906555176 +illusion_1L,ppo,1,0.3,alpha,front,0.3294954001903534 +illusion_1L,ppo,1,0.3,alpha,upper,-0.8282539844512938 +illusion_1L,ppo,1,0.3,alpha,lower,0.09794557094573975 +illusion_1L,ppo,2,0.6,alpha,front,0.25689882040023804 +illusion_1L,ppo,2,0.6,alpha,upper,-1.125978410243988 +illusion_1L,ppo,2,0.6,alpha,lower,0.15486669540405273 +illusion_1L,ppo,3,0.9,alpha,front,0.21210810542106628 +illusion_1L,ppo,3,0.9,alpha,upper,-1.2509388327598572 +illusion_1L,ppo,3,0.9,alpha,lower,0.27338624000549316 +illusion_1L,ppo,4,1.2,alpha,front,0.16988377273082733 +illusion_1L,ppo,4,1.2,alpha,upper,-1.2296182513237 +illusion_1L,ppo,4,1.2,alpha,lower,0.41963624954223633 +illusion_1L,ppo,5,1.5,alpha,front,0.12533028423786163 +illusion_1L,ppo,5,1.5,alpha,upper,-1.1155720949172974 +illusion_1L,ppo,5,1.5,alpha,lower,0.5676670074462891 +illusion_1L,ppo,6,1.8,alpha,front,0.07037842273712158 +illusion_1L,ppo,6,1.8,alpha,upper,-0.9775072336196899 +illusion_1L,ppo,6,1.8,alpha,lower,0.6702197790145874 +illusion_1L,ppo,7,2.1,alpha,front,0.027003467082977295 +illusion_1L,ppo,7,2.1,alpha,upper,-0.8692138195037842 +illusion_1L,ppo,7,2.1,alpha,lower,0.6889753341674805 +illusion_1L,ppo,8,2.4,alpha,front,0.028988629579544064 +illusion_1L,ppo,8,2.4,alpha,upper,-0.8136594295501709 +illusion_1L,ppo,8,2.4,alpha,lower,0.6564958095550537 +illusion_1L,ppo,9,2.7,alpha,front,0.10217778384685516 +illusion_1L,ppo,9,2.7,alpha,upper,-0.806736946105957 +illusion_1L,ppo,9,2.7,alpha,lower,0.6199855804443359 +illusion_1L,ppo,10,3.0,alpha,front,0.24496163427829742 +illusion_1L,ppo,10,3.0,alpha,upper,-0.8428184986114502 +illusion_1L,ppo,10,3.0,alpha,lower,0.6158219575881958 +illusion_1L,ppo,11,3.3,alpha,front,0.4218283593654633 +illusion_1L,ppo,11,3.3,alpha,upper,-0.8964096307754518 +illusion_1L,ppo,11,3.3,alpha,lower,0.6734869480133057 +illusion_1L,ppo,12,3.6,alpha,front,0.5642961859703064 +illusion_1L,ppo,12,3.6,alpha,upper,-0.9224710464477538 +illusion_1L,ppo,12,3.6,alpha,lower,0.8058922290802002 +illusion_1L,ppo,13,3.9,alpha,front,0.6448768377304077 +illusion_1L,ppo,13,3.9,alpha,upper,-0.9251049757003785 +illusion_1L,ppo,13,3.9,alpha,lower,0.9836367368698121 +illusion_1L,ppo,14,4.2,alpha,front,0.6821967959403992 +illusion_1L,ppo,14,4.2,alpha,upper,-0.9096033573150635 +illusion_1L,ppo,14,4.2,alpha,lower,1.1476061344146729 +illusion_1L,ppo,15,4.5,alpha,front,0.7162553668022156 +illusion_1L,ppo,15,4.5,alpha,upper,-0.8849141597747802 +illusion_1L,ppo,15,4.5,alpha,lower,1.2559635639190674 +illusion_1L,ppo,16,4.8,alpha,front,0.7546033263206482 +illusion_1L,ppo,16,4.8,alpha,upper,-0.8746609687805176 +illusion_1L,ppo,16,4.8,alpha,lower,1.3067713975906372 +illusion_1L,ppo,17,5.1,alpha,front,0.7883597612380981 +illusion_1L,ppo,17,5.1,alpha,upper,-0.8874204158782959 +illusion_1L,ppo,17,5.1,alpha,lower,1.3118666410446167 +illusion_1L,ppo,18,5.4,alpha,front,0.7865432500839233 +illusion_1L,ppo,18,5.4,alpha,upper,-0.896153450012207 +illusion_1L,ppo,18,5.4,alpha,lower,1.2702380418777466 +illusion_1L,ppo,19,5.7,alpha,front,0.7011071443557739 +illusion_1L,ppo,19,5.7,alpha,upper,-0.8554322719573975 +illusion_1L,ppo,19,5.7,alpha,lower,1.1829330325126648 +illusion_1L,ppo,20,6.0,alpha,front,0.5177245736122131 +illusion_1L,ppo,20,6.0,alpha,upper,-0.7463244199752808 +illusion_1L,ppo,20,6.0,alpha,lower,1.0522297620773315 +illusion_1L,ppo,21,6.3,alpha,front,0.2901367247104645 +illusion_1L,ppo,21,6.3,alpha,upper,-0.6257458925247192 +illusion_1L,ppo,21,6.3,alpha,lower,0.8750878572463989 +illusion_1L,ppo,22,6.6,alpha,front,0.10820713639259338 +illusion_1L,ppo,22,6.6,alpha,upper,-0.6038949489593506 +illusion_1L,ppo,22,6.6,alpha,lower,0.6715447902679443 +illusion_1L,ppo,23,6.9,alpha,front,0.036512404680252075 +illusion_1L,ppo,23,6.9,alpha,upper,-0.7488143444061279 +illusion_1L,ppo,23,6.9,alpha,lower,0.48416590690612793 +illusion_1L,ppo,24,7.2,alpha,front,0.056582450866699226 +illusion_1L,ppo,24,7.2,alpha,upper,-1.0047824382781982 +illusion_1L,ppo,24,7.2,alpha,lower,0.3746471405029297 +illusion_1L,ppo,25,7.5,alpha,front,0.08633923530578613 +illusion_1L,ppo,25,7.5,alpha,upper,-1.239278793334961 +illusion_1L,ppo,25,7.5,alpha,lower,0.3721601963043213 +illusion_1L,ppo,26,7.8,alpha,front,0.07249036431312561 +illusion_1L,ppo,26,7.8,alpha,upper,-1.3751775026321411 +illusion_1L,ppo,26,7.8,alpha,lower,0.42871713638305664 +illusion_1L,ppo,27,8.1,alpha,front,0.020029067993164062 +illusion_1L,ppo,27,8.1,alpha,upper,-1.41354900598526 +illusion_1L,ppo,27,8.1,alpha,lower,0.47215747833251953 +illusion_1L,ppo,28,8.4,alpha,front,-0.04301455616950989 +illusion_1L,ppo,28,8.4,alpha,upper,-1.3756024837493896 +illusion_1L,ppo,28,8.4,alpha,lower,0.4811979532241821 +illusion_1L,ppo,29,8.7,alpha,front,-0.08725950121879578 +illusion_1L,ppo,29,8.7,alpha,upper,-1.2797636985778809 +illusion_1L,ppo,29,8.7,alpha,lower,0.47511100769042974 +illusion_1L,ppo,30,9.0,alpha,front,-0.09906691312789918 +illusion_1L,ppo,30,9.0,alpha,upper,-1.1430634260177612 +illusion_1L,ppo,30,9.0,alpha,lower,0.4806540012359619 +illusion_1L,ppo,31,9.3,alpha,front,-0.07682400941848755 +illusion_1L,ppo,31,9.3,alpha,upper,-0.9922661781311036 +illusion_1L,ppo,31,9.3,alpha,lower,0.5115625858306885 +illusion_1L,ppo,32,9.6,alpha,front,-0.004255503416061401 +illusion_1L,ppo,32,9.6,alpha,upper,-0.869076132774353 +illusion_1L,ppo,32,9.6,alpha,lower,0.5610411167144775 +illusion_1L,ppo,33,9.9,alpha,front,0.14060327410697937 +illusion_1L,ppo,33,9.9,alpha,upper,-0.8076941967010498 +illusion_1L,ppo,33,9.9,alpha,lower,0.6139907836914062 +illusion_1L,ppo,34,10.2,alpha,front,0.3322700560092926 +illusion_1L,ppo,34,10.2,alpha,upper,-0.8008813858032227 +illusion_1L,ppo,34,10.2,alpha,lower,0.6754286289215088 +illusion_1L,ppo,35,10.5,alpha,front,0.5017005205154419 +illusion_1L,ppo,35,10.5,alpha,upper,-0.8011865615844725 +illusion_1L,ppo,35,10.5,alpha,lower,0.7847187519073485 +illusion_1L,ppo,36,10.8,alpha,front,0.6075886487960815 +illusion_1L,ppo,36,10.8,alpha,upper,-0.7913377285003662 +illusion_1L,ppo,36,10.8,alpha,lower,0.9542202949523926 +illusion_1L,ppo,37,11.1,alpha,front,0.6666239500045776 +illusion_1L,ppo,37,11.1,alpha,upper,-0.8080600500106812 +illusion_1L,ppo,37,11.1,alpha,lower,1.1466363668441772 +illusion_1L,ppo,38,11.4,alpha,front,0.7013704180717468 +illusion_1L,ppo,38,11.4,alpha,upper,-0.8496019840240479 +illusion_1L,ppo,38,11.4,alpha,lower,1.3080418109893799 +illusion_1L,ppo,39,11.7,alpha,front,0.7466434836387634 +illusion_1L,ppo,39,11.7,alpha,upper,-0.8896112442016602 +illusion_1L,ppo,39,11.7,alpha,lower,1.403750240802765 +illusion_1L,ppo,40,12.0,alpha,front,0.7991185784339905 +illusion_1L,ppo,40,12.0,alpha,upper,-0.9207205772399902 +illusion_1L,ppo,40,12.0,alpha,lower,1.424617350101471 +illusion_1L,ppo,41,12.3,alpha,front,0.831497848033905 +illusion_1L,ppo,41,12.3,alpha,upper,-0.939168691635132 +illusion_1L,ppo,41,12.3,alpha,lower,1.3741275072097778 +illusion_1L,ppo,42,12.6,alpha,front,0.807990550994873 +illusion_1L,ppo,42,12.6,alpha,upper,-0.9302222728729248 +illusion_1L,ppo,42,12.6,alpha,lower,1.2542980313301086 +illusion_1L,ppo,43,12.9,alpha,front,0.7075952887535095 +illusion_1L,ppo,43,12.9,alpha,upper,-0.8936201333999635 +illusion_1L,ppo,43,12.9,alpha,lower,1.0860568284988403 +illusion_1L,ppo,44,13.2,alpha,front,0.5649409890174866 +illusion_1L,ppo,44,13.2,alpha,upper,-0.8536139726638794 +illusion_1L,ppo,44,13.2,alpha,lower,0.8652915954589844 +illusion_1L,ppo,45,13.5,alpha,front,0.3918724060058594 +illusion_1L,ppo,45,13.5,alpha,upper,-0.8205642700195312 +illusion_1L,ppo,45,13.5,alpha,lower,0.6348626613616943 +illusion_1L,ppo,46,13.8,alpha,front,0.22457003593444824 +illusion_1L,ppo,46,13.8,alpha,upper,-0.8146734237670897 +illusion_1L,ppo,46,13.8,alpha,lower,0.4811018705368042 +illusion_1L,ppo,47,14.1,alpha,front,0.12063720822334288 +illusion_1L,ppo,47,14.1,alpha,upper,-0.9067639112472533 +illusion_1L,ppo,47,14.1,alpha,lower,0.4490048885345459 +illusion_1L,ppo,48,14.4,alpha,front,0.09370073676109314 +illusion_1L,ppo,48,14.4,alpha,upper,-1.0961398482322693 +illusion_1L,ppo,48,14.4,alpha,lower,0.4979405403137207 +illusion_1L,ppo,49,14.7,alpha,front,0.07773202657699585 +illusion_1L,ppo,49,14.7,alpha,upper,-1.2668810486793518 +illusion_1L,ppo,49,14.7,alpha,lower,0.5542806386947632 +illusion_1L,ppo,50,15.0,alpha,front,0.03498592972755432 +illusion_1L,ppo,50,15.0,alpha,upper,-1.351611316204071 +illusion_1L,ppo,50,15.0,alpha,lower,0.5678526163101196 +illusion_1L,ppo,51,15.3,alpha,front,-0.030452609062194824 +illusion_1L,ppo,51,15.3,alpha,upper,-1.350946307182312 +illusion_1L,ppo,51,15.3,alpha,lower,0.5284032821655273 +illusion_1L,ppo,52,15.6,alpha,front,-0.10577055811882019 +illusion_1L,ppo,52,15.6,alpha,upper,-1.2696788907051086 +illusion_1L,ppo,52,15.6,alpha,lower,0.46946597099304205 +illusion_1L,ppo,53,15.9,alpha,front,-0.17569047212600708 +illusion_1L,ppo,53,15.9,alpha,upper,-1.1239449977874756 +illusion_1L,ppo,53,15.9,alpha,lower,0.44073009490966797 +illusion_1L,ppo,54,16.2,alpha,front,-0.2144383192062378 +illusion_1L,ppo,54,16.2,alpha,upper,-0.9617156982421875 +illusion_1L,ppo,54,16.2,alpha,lower,0.4691596031188965 +illusion_1L,ppo,55,16.5,alpha,front,-0.19116562604904175 +illusion_1L,ppo,55,16.5,alpha,upper,-0.8303751945495605 +illusion_1L,ppo,55,16.5,alpha,lower,0.5305538177490234 +illusion_1L,ppo,56,16.8,alpha,front,-0.07633191347122192 +illusion_1L,ppo,56,16.8,alpha,upper,-0.7545206546783447 +illusion_1L,ppo,56,16.8,alpha,lower,0.5716449022293091 +illusion_1L,ppo,57,17.1,alpha,front,0.1142217367887497 +illusion_1L,ppo,57,17.1,alpha,upper,-0.739802360534668 +illusion_1L,ppo,57,17.1,alpha,lower,0.5899703502655029 +illusion_1L,ppo,58,17.4,alpha,front,0.3340049386024475 +illusion_1L,ppo,58,17.4,alpha,upper,-0.7897028923034668 +illusion_1L,ppo,58,17.4,alpha,lower,0.6399770975112915 +illusion_1L,ppo,59,17.7,alpha,front,0.5194125771522522 +illusion_1L,ppo,59,17.7,alpha,upper,-0.8740603923797607 +illusion_1L,ppo,59,17.7,alpha,lower,0.764283299446106 +illusion_1L,ppo,60,18.0,alpha,front,0.6140161156654358 +illusion_1L,ppo,60,18.0,alpha,upper,-0.915480375289917 +illusion_1L,ppo,60,18.0,alpha,lower,0.9547725915908813 +illusion_1L,ppo,61,18.3,alpha,front,0.6466363072395325 +illusion_1L,ppo,61,18.3,alpha,upper,-0.9051017761230469 +illusion_1L,ppo,61,18.3,alpha,lower,1.1486387252807617 +illusion_1L,ppo,62,18.6,alpha,front,0.6777927875518799 +illusion_1L,ppo,62,18.6,alpha,upper,-0.8896549940109253 +illusion_1L,ppo,62,18.6,alpha,lower,1.2894996404647827 +illusion_1L,ppo,63,18.9,alpha,front,0.7304840087890625 +illusion_1L,ppo,63,18.9,alpha,upper,-0.8867664337158203 +illusion_1L,ppo,63,18.9,alpha,lower,1.3548786640167236 +illusion_1L,ppo,64,19.2,alpha,front,0.7897686958312988 +illusion_1L,ppo,64,19.2,alpha,upper,-0.8953583240509033 +illusion_1L,ppo,64,19.2,alpha,lower,1.3457780480384827 +illusion_1L,ppo,65,19.5,alpha,front,0.832369327545166 +illusion_1L,ppo,65,19.5,alpha,upper,-0.9115774631500244 +illusion_1L,ppo,65,19.5,alpha,lower,1.2727717757225037 +illusion_1L,ppo,66,19.8,alpha,front,0.8042361140251159 +illusion_1L,ppo,66,19.8,alpha,upper,-0.8994908332824706 +illusion_1L,ppo,66,19.8,alpha,lower,1.1545217037200928 +illusion_1L,ppo,67,20.1,alpha,front,0.6861271858215332 +illusion_1L,ppo,67,20.1,alpha,upper,-0.8426651954650879 +illusion_1L,ppo,67,20.1,alpha,lower,0.9914451837539673 +illusion_1L,ppo,68,20.4,alpha,front,0.5181270837783813 +illusion_1L,ppo,68,20.4,alpha,upper,-0.7865550518035889 +illusion_1L,ppo,68,20.4,alpha,lower,0.785930871963501 +illusion_1L,ppo,69,20.7,alpha,front,0.3320852518081665 +illusion_1L,ppo,69,20.7,alpha,upper,-0.7563097476959229 +illusion_1L,ppo,69,20.7,alpha,lower,0.6207139492034912 +illusion_1L,ppo,70,21.0,alpha,front,0.17433319985866547 +illusion_1L,ppo,70,21.0,alpha,upper,-0.7829117774963378 +illusion_1L,ppo,70,21.0,alpha,lower,0.5591609477996826 +illusion_1L,ppo,71,21.3,alpha,front,0.09734523296356201 +illusion_1L,ppo,71,21.3,alpha,upper,-0.914900541305542 +illusion_1L,ppo,71,21.3,alpha,lower,0.5813659429550171 +illusion_1L,ppo,72,21.6,alpha,front,0.07371097803115845 +illusion_1L,ppo,72,21.6,alpha,upper,-1.0974834561347961 +illusion_1L,ppo,72,21.6,alpha,lower,0.631658673286438 +illusion_1L,ppo,73,21.9,alpha,front,0.047216206789016724 +illusion_1L,ppo,73,21.9,alpha,upper,-1.2330639958381653 +illusion_1L,ppo,73,21.9,alpha,lower,0.6594483852386475 +illusion_1L,ppo,74,22.2,alpha,front,-0.0015162527561187744 +illusion_1L,ppo,74,22.2,alpha,upper,-1.286026120185852 +illusion_1L,ppo,74,22.2,alpha,lower,0.6330937147140503 +illusion_1L,ppo,75,22.5,alpha,front,-0.07326167821884155 +illusion_1L,ppo,75,22.5,alpha,upper,-1.2560788989067078 +illusion_1L,ppo,75,22.5,alpha,lower,0.5632666349411011 +illusion_1L,ppo,76,22.8,alpha,front,-0.15300801396369934 +illusion_1L,ppo,76,22.8,alpha,upper,-1.1588584184646606 +illusion_1L,ppo,76,22.8,alpha,lower,0.5027236938476562 +illusion_1L,ppo,77,23.1,alpha,front,-0.2181180119514465 +illusion_1L,ppo,77,23.1,alpha,upper,-1.0239768028259277 +illusion_1L,ppo,77,23.1,alpha,lower,0.49491024017333984 +illusion_1L,ppo,78,23.4,alpha,front,-0.2452036738395691 +illusion_1L,ppo,78,23.4,alpha,upper,-0.8956518173217773 +illusion_1L,ppo,78,23.4,alpha,lower,0.5272719860076904 +illusion_1L,ppo,79,23.7,alpha,front,-0.19024205207824707 +illusion_1L,ppo,79,23.7,alpha,upper,-0.8119020462036133 +illusion_1L,ppo,79,23.7,alpha,lower,0.5464820861816406 +illusion_1L,ppo,80,24.0,alpha,front,-0.01969665288925171 +illusion_1L,ppo,80,24.0,alpha,upper,-0.791494607925415 +illusion_1L,ppo,80,24.0,alpha,lower,0.5222616195678711 +illusion_1L,ppo,81,24.3,alpha,front,0.220614492893219 +illusion_1L,ppo,81,24.3,alpha,upper,-0.8291096687316893 +illusion_1L,ppo,81,24.3,alpha,lower,0.5024724006652832 +illusion_1L,ppo,82,24.6,alpha,front,0.44765841960906977 +illusion_1L,ppo,82,24.6,alpha,upper,-0.9031004905700684 +illusion_1L,ppo,82,24.6,alpha,lower,0.5509976148605347 +illusion_1L,ppo,83,24.9,alpha,front,0.5911442041397095 +illusion_1L,ppo,83,24.9,alpha,upper,-0.959122657775879 +illusion_1L,ppo,83,24.9,alpha,lower,0.6961361169815063 +illusion_1L,ppo,84,25.2,alpha,front,0.6486685276031494 +illusion_1L,ppo,84,25.2,alpha,upper,-0.9641983509063722 +illusion_1L,ppo,84,25.2,alpha,lower,0.8974945545196533 +illusion_1L,ppo,85,25.5,alpha,front,0.6825525164604187 +illusion_1L,ppo,85,25.5,alpha,upper,-0.946758508682251 +illusion_1L,ppo,85,25.5,alpha,lower,1.082136631011963 +illusion_1L,ppo,86,25.8,alpha,front,0.7211489677429199 +illusion_1L,ppo,86,25.8,alpha,upper,-0.9268546104431152 +illusion_1L,ppo,86,25.8,alpha,lower,1.2141979336738586 +illusion_1L,ppo,87,26.1,alpha,front,0.7789082527160645 +illusion_1L,ppo,87,26.1,alpha,upper,-0.9212490320205688 +illusion_1L,ppo,87,26.1,alpha,lower,1.286047875881195 +illusion_1L,ppo,88,26.4,alpha,front,0.8447380065917968 +illusion_1L,ppo,88,26.4,alpha,upper,-0.9343767166137695 +illusion_1L,ppo,88,26.4,alpha,lower,1.2960020303726196 +illusion_1L,ppo,89,26.7,alpha,front,0.8650745153427125 +illusion_1L,ppo,89,26.7,alpha,upper,-0.9316978454589843 +illusion_1L,ppo,89,26.7,alpha,lower,1.2486572265625 +illusion_1L,ppo,90,27.0,alpha,front,0.7916586399078369 +illusion_1L,ppo,90,27.0,alpha,upper,-0.8648266792297363 +illusion_1L,ppo,90,27.0,alpha,lower,1.145860195159912 +illusion_1L,ppo,91,27.3,alpha,front,0.6392413377761841 +illusion_1L,ppo,91,27.3,alpha,upper,-0.7726664543151855 +illusion_1L,ppo,91,27.3,alpha,lower,0.9903204441070557 +illusion_1L,ppo,92,27.6,alpha,front,0.46351271867752075 +illusion_1L,ppo,92,27.6,alpha,upper,-0.7193975448608398 +illusion_1L,ppo,92,27.6,alpha,lower,0.8023736476898192 +illusion_1L,ppo,93,27.9,alpha,front,0.2781928479671478 +illusion_1L,ppo,93,27.9,alpha,upper,-0.6957178115844727 +illusion_1L,ppo,93,27.9,alpha,lower,0.6652060747146606 +illusion_1L,ppo,94,28.2,alpha,front,0.14341941475868225 +illusion_1L,ppo,94,28.2,alpha,upper,-0.7486162185668945 +illusion_1L,ppo,94,28.2,alpha,lower,0.6187222003936768 +illusion_1L,ppo,95,28.5,alpha,front,0.08570148050785065 +illusion_1L,ppo,95,28.5,alpha,upper,-0.9028753042221069 +illusion_1L,ppo,95,28.5,alpha,lower,0.6450692415237427 +illusion_1L,ppo,96,28.8,alpha,front,0.05542859435081482 +illusion_1L,ppo,96,28.8,alpha,upper,-1.066268801689148 +illusion_1L,ppo,96,28.8,alpha,lower,0.692778468132019 +illusion_1L,ppo,97,29.1,alpha,front,0.012858182191848753 +illusion_1L,ppo,97,29.1,alpha,upper,-1.1690797805786133 +illusion_1L,ppo,97,29.1,alpha,lower,0.7055610418319702 +illusion_1L,ppo,98,29.4,alpha,front,-0.05198782682418823 +illusion_1L,ppo,98,29.4,alpha,upper,-1.2049866318702698 +illusion_1L,ppo,98,29.4,alpha,lower,0.6668484210968018 +illusion_1L,ppo,99,29.7,alpha,front,-0.1294422149658203 +illusion_1L,ppo,99,29.7,alpha,upper,-1.1807619333267212 +illusion_1L,ppo,99,29.7,alpha,lower,0.605562686920166 +illusion_1L,ppo,100,30.0,alpha,front,-0.2087677717208862 +illusion_1L,ppo,100,30.0,alpha,upper,-1.1013973951339722 +illusion_1L,ppo,100,30.0,alpha,lower,0.5584113597869873 +illusion_1L,ppo,101,30.3,alpha,front,-0.2728402614593506 +illusion_1L,ppo,101,30.3,alpha,upper,-0.993920087814331 +illusion_1L,ppo,101,30.3,alpha,lower,0.543602466583252 +illusion_1L,ppo,102,30.6,alpha,front,-0.28158068656921387 +illusion_1L,ppo,102,30.6,alpha,upper,-0.906485080718994 +illusion_1L,ppo,102,30.6,alpha,lower,0.5443675518035889 +illusion_1L,ppo,103,30.9,alpha,front,-0.175246000289917 +illusion_1L,ppo,103,30.9,alpha,upper,-0.8703538179397584 +illusion_1L,ppo,103,30.9,alpha,lower,0.5114607810974121 +illusion_1L,ppo,104,31.2,alpha,front,0.05244475603103638 +illusion_1L,ppo,104,31.2,alpha,upper,-0.8848663568496704 +illusion_1L,ppo,104,31.2,alpha,lower,0.43989288806915283 +illusion_1L,ppo,105,31.5,alpha,front,0.3173108398914337 +illusion_1L,ppo,105,31.5,alpha,upper,-0.9302657842636108 +illusion_1L,ppo,105,31.5,alpha,lower,0.408612608909607 +illusion_1L,ppo,106,31.8,alpha,front,0.5272874236106873 +illusion_1L,ppo,106,31.8,alpha,upper,-0.980194926261902 +illusion_1L,ppo,106,31.8,alpha,lower,0.4868009090423584 +illusion_1L,ppo,107,32.1,alpha,front,0.632325291633606 +illusion_1L,ppo,107,32.1,alpha,upper,-0.9888274669647217 +illusion_1L,ppo,107,32.1,alpha,lower,0.6691107749938965 +illusion_1L,ppo,108,32.4,alpha,front,0.665900707244873 +illusion_1L,ppo,108,32.4,alpha,upper,-0.9618560075759888 +illusion_1L,ppo,108,32.4,alpha,lower,0.8827221393585205 +illusion_1L,ppo,109,32.7,alpha,front,0.6921288967132568 +illusion_1L,ppo,109,32.7,alpha,upper,-0.9381377696990967 +illusion_1L,ppo,109,32.7,alpha,lower,1.0709887742996216 +illusion_1L,ppo,110,33.0,alpha,front,0.7413539886474609 +illusion_1L,ppo,110,33.0,alpha,upper,-0.9312642812728882 +illusion_1L,ppo,110,33.0,alpha,lower,1.2129233479499817 +illusion_1L,ppo,111,33.3,alpha,front,0.8084418177604675 +illusion_1L,ppo,111,33.3,alpha,upper,-0.9413789510726928 +illusion_1L,ppo,111,33.3,alpha,lower,1.294039249420166 +illusion_1L,ppo,112,33.6,alpha,front,0.8737611770629884 +illusion_1L,ppo,112,33.6,alpha,upper,-0.9640285968780518 +illusion_1L,ppo,112,33.6,alpha,lower,1.301871657371521 +illusion_1L,ppo,113,33.9,alpha,front,0.8811653256416321 +illusion_1L,ppo,113,33.9,alpha,upper,-0.9619255065917969 +illusion_1L,ppo,113,33.9,alpha,lower,1.258780598640442 +illusion_1L,ppo,114,34.2,alpha,front,0.79872727394104 +illusion_1L,ppo,114,34.2,alpha,upper,-0.8908076286315918 +illusion_1L,ppo,114,34.2,alpha,lower,1.1635475158691406 +illusion_1L,ppo,115,34.5,alpha,front,0.6381788849830627 +illusion_1L,ppo,115,34.5,alpha,upper,-0.7805912494659424 +illusion_1L,ppo,115,34.5,alpha,lower,1.0080278515815735 +illusion_1L,ppo,116,34.8,alpha,front,0.45692184567451477 +illusion_1L,ppo,116,34.8,alpha,upper,-0.7023489475250244 +illusion_1L,ppo,116,34.8,alpha,lower,0.8087254762649536 +illusion_1L,ppo,117,35.1,alpha,front,0.2694724500179291 +illusion_1L,ppo,117,35.1,alpha,upper,-0.6647837162017822 +illusion_1L,ppo,117,35.1,alpha,lower,0.6600246429443359 +illusion_1L,ppo,118,35.4,alpha,front,0.14290519058704376 +illusion_1L,ppo,118,35.4,alpha,upper,-0.7213306427001953 +illusion_1L,ppo,118,35.4,alpha,lower,0.6125223636627197 +illusion_1L,ppo,119,35.7,alpha,front,0.08995945751667023 +illusion_1L,ppo,119,35.7,alpha,upper,-0.8773316144943237 +illusion_1L,ppo,119,35.7,alpha,lower,0.6448245048522949 +illusion_1L,ppo,120,36.0,alpha,front,0.05754849314689636 +illusion_1L,ppo,120,36.0,alpha,upper,-1.036913275718689 +illusion_1L,ppo,120,36.0,alpha,lower,0.7031381130218506 +illusion_1L,ppo,121,36.3,alpha,front,0.01211559772491455 +illusion_1L,ppo,121,36.3,alpha,upper,-1.1418288946151733 +illusion_1L,ppo,121,36.3,alpha,lower,0.7331953048706055 +illusion_1L,ppo,122,36.6,alpha,front,-0.05268087983131409 +illusion_1L,ppo,122,36.6,alpha,upper,-1.1855669021606445 +illusion_1L,ppo,122,36.6,alpha,lower,0.7099301815032959 +illusion_1L,ppo,123,36.9,alpha,front,-0.13278749585151672 +illusion_1L,ppo,123,36.9,alpha,upper,-1.1678045988082886 +illusion_1L,ppo,123,36.9,alpha,lower,0.6549818515777588 +illusion_1L,ppo,124,37.2,alpha,front,-0.21639108657836914 +illusion_1L,ppo,124,37.2,alpha,upper,-1.0930461883544922 +illusion_1L,ppo,124,37.2,alpha,lower,0.6111772060394287 +illusion_1L,ppo,125,37.5,alpha,front,-0.2844569683074951 +illusion_1L,ppo,125,37.5,alpha,upper,-0.9872171878814697 +illusion_1L,ppo,125,37.5,alpha,lower,0.5939042568206787 +illusion_1L,ppo,126,37.8,alpha,front,-0.2982397675514221 +illusion_1L,ppo,126,37.8,alpha,upper,-0.8968610763549805 +illusion_1L,ppo,126,37.8,alpha,lower,0.582787036895752 +illusion_1L,ppo,127,38.1,alpha,front,-0.20541054010391233 +illusion_1L,ppo,127,38.1,alpha,upper,-0.8584461212158204 +illusion_1L,ppo,127,38.1,alpha,lower,0.5374820232391357 +illusion_1L,ppo,128,38.4,alpha,front,0.012610107660293579 +illusion_1L,ppo,128,38.4,alpha,upper,-0.8817195892333984 +illusion_1L,ppo,128,38.4,alpha,lower,0.4518909454345703 +illusion_1L,ppo,129,38.7,alpha,front,0.282920777797699 +illusion_1L,ppo,129,38.7,alpha,upper,-0.9408292770385741 +illusion_1L,ppo,129,38.7,alpha,lower,0.3995554447174072 +illusion_1L,ppo,130,39.0,alpha,front,0.5058770775794983 +illusion_1L,ppo,130,39.0,alpha,upper,-0.9996932744979858 +illusion_1L,ppo,130,39.0,alpha,lower,0.45104348659515386 +illusion_1L,ppo,131,39.3,alpha,front,0.6183253526687622 +illusion_1L,ppo,131,39.3,alpha,upper,-1.0154801607131958 +illusion_1L,ppo,131,39.3,alpha,lower,0.6110596656799316 +illusion_1L,ppo,132,39.6,alpha,front,0.6576936841011047 +illusion_1L,ppo,132,39.6,alpha,upper,-0.9933927059173585 +illusion_1L,ppo,132,39.6,alpha,lower,0.8132700920104982 +illusion_1L,ppo,133,39.9,alpha,front,0.6899363994598389 +illusion_1L,ppo,133,39.9,alpha,upper,-0.9721332788467407 +illusion_1L,ppo,133,39.9,alpha,lower,0.9918160438537598 +illusion_1L,ppo,134,40.2,alpha,front,0.7383757829666138 +illusion_1L,ppo,134,40.2,alpha,upper,-0.964287519454956 +illusion_1L,ppo,134,40.2,alpha,lower,1.1260159015655518 +illusion_1L,ppo,135,40.5,alpha,front,0.8042643070220947 +illusion_1L,ppo,135,40.5,alpha,upper,-0.9739056825637817 +illusion_1L,ppo,135,40.5,alpha,lower,1.205222249031067 +illusion_1L,ppo,136,40.8,alpha,front,0.8661375045776367 +illusion_1L,ppo,136,40.8,alpha,upper,-0.9986793994903564 +illusion_1L,ppo,136,40.8,alpha,lower,1.2230919003486633 +illusion_1L,ppo,137,41.1,alpha,front,0.8983004093170167 +illusion_1L,ppo,137,41.1,alpha,upper,-1.0120781064033508 +illusion_1L,ppo,137,41.1,alpha,lower,1.186629295349121 +illusion_1L,ppo,138,41.4,alpha,front,0.8341176509857178 +illusion_1L,ppo,138,41.4,alpha,upper,-0.954254984855652 +illusion_1L,ppo,138,41.4,alpha,lower,1.1193856000900269 +illusion_1L,ppo,139,41.7,alpha,front,0.6870402097702026 +illusion_1L,ppo,139,41.7,alpha,upper,-0.8394714593887329 +illusion_1L,ppo,139,41.7,alpha,lower,1.0058660507202148 +illusion_1L,ppo,140,42.0,alpha,front,0.5066896677017212 +illusion_1L,ppo,140,42.0,alpha,upper,-0.7397112846374512 +illusion_1L,ppo,140,42.0,alpha,lower,0.840200662612915 +illusion_1L,ppo,141,42.3,alpha,front,0.32001927495002747 +illusion_1L,ppo,141,42.3,alpha,upper,-0.6695919036865234 +illusion_1L,ppo,141,42.3,alpha,lower,0.6991519927978516 +illusion_1L,ppo,142,42.6,alpha,front,0.1783670336008072 +illusion_1L,ppo,142,42.6,alpha,upper,-0.6741461753845215 +illusion_1L,ppo,142,42.6,alpha,lower,0.6454565525054932 +illusion_1L,ppo,143,42.9,alpha,front,0.11064012348651886 +illusion_1L,ppo,143,42.9,alpha,upper,-0.7923810482025146 +illusion_1L,ppo,143,42.9,alpha,lower,0.6754374504089355 +illusion_1L,ppo,144,43.2,alpha,front,0.0722513496875763 +illusion_1L,ppo,144,43.2,alpha,upper,-0.9422814846038818 +illusion_1L,ppo,144,43.2,alpha,lower,0.7442654371261597 +illusion_1L,ppo,145,43.5,alpha,front,0.0260469913482666 +illusion_1L,ppo,145,43.5,alpha,upper,-1.0497357845306396 +illusion_1L,ppo,145,43.5,alpha,lower,0.7988348007202147 +illusion_1L,ppo,146,43.8,alpha,front,-0.03835597634315491 +illusion_1L,ppo,146,43.8,alpha,upper,-1.1014200448989868 +illusion_1L,ppo,146,43.8,alpha,lower,0.805626630783081 +illusion_1L,ppo,147,44.1,alpha,front,-0.11879751086235046 +illusion_1L,ppo,147,44.1,alpha,upper,-1.092219591140747 +illusion_1L,ppo,147,44.1,alpha,lower,0.7684934139251709 +illusion_1L,ppo,148,44.4,alpha,front,-0.2061712145805359 +illusion_1L,ppo,148,44.4,alpha,upper,-1.0229982137680054 +illusion_1L,ppo,148,44.4,alpha,lower,0.723088264465332 +illusion_1L,ppo,149,44.7,alpha,front,-0.2866970896720886 +illusion_1L,ppo,149,44.7,alpha,upper,-0.9230009317398072 +illusion_1L,ppo,149,44.7,alpha,lower,0.6967335939407349 +illusion_1L,ppo,150,45.0,alpha,front,-0.32748496532440186 +illusion_1L,ppo,150,45.0,alpha,upper,-0.8424186706542969 +illusion_1L,ppo,150,45.0,alpha,lower,0.6781008243560791 +illusion_1L,ppo,151,45.3,alpha,front,-0.2726770043373108 +illusion_1L,ppo,151,45.3,alpha,upper,-0.8185527324676515 +illusion_1L,ppo,151,45.3,alpha,lower,0.6231832504272461 +illusion_1L,ppo,152,45.6,alpha,front,-0.08266288042068481 +illusion_1L,ppo,152,45.6,alpha,upper,-0.8647055625915526 +illusion_1L,ppo,152,45.6,alpha,lower,0.5124448537826538 +illusion_1L,ppo,153,45.9,alpha,front,0.1873244196176529 +illusion_1L,ppo,153,45.9,alpha,upper,-0.9557293653488159 +illusion_1L,ppo,153,45.9,alpha,lower,0.4123342037200928 +illusion_1L,ppo,154,46.2,alpha,front,0.4347601532936097 +illusion_1L,ppo,154,46.2,alpha,upper,-1.0407288074493408 +illusion_1L,ppo,154,46.2,alpha,lower,0.3991515636444092 +illusion_1L,ppo,155,46.5,alpha,front,0.5797209739685059 +illusion_1L,ppo,155,46.5,alpha,upper,-1.0685893297195435 +illusion_1L,ppo,155,46.5,alpha,lower,0.4920076131820679 +illusion_1L,ppo,156,46.8,alpha,front,0.6343727707862854 +illusion_1L,ppo,156,46.8,alpha,upper,-1.0440654754638672 +illusion_1L,ppo,156,46.8,alpha,lower,0.648343563079834 +illusion_1L,ppo,157,47.1,alpha,front,0.6742504239082336 +illusion_1L,ppo,157,47.1,alpha,upper,-1.0207226276397705 +illusion_1L,ppo,157,47.1,alpha,lower,0.8051958084106445 +illusion_1L,ppo,158,47.4,alpha,front,0.7240217328071594 +illusion_1L,ppo,158,47.4,alpha,upper,-1.0101059675216675 +illusion_1L,ppo,158,47.4,alpha,lower,0.938636302947998 +illusion_1L,ppo,159,47.7,alpha,front,0.7894800901412964 +illusion_1L,ppo,159,47.7,alpha,upper,-1.011321783065796 +illusion_1L,ppo,159,47.7,alpha,lower,1.0357565879821777 +illusion_1L,ppo,160,48.0,alpha,front,0.8617255091667176 +illusion_1L,ppo,160,48.0,alpha,upper,-1.035987138748169 +illusion_1L,ppo,160,48.0,alpha,lower,1.0892974138259888 +illusion_1L,ppo,161,48.3,alpha,front,0.9083073139190673 +illusion_1L,ppo,161,48.3,alpha,upper,-1.0672229528427124 +illusion_1L,ppo,161,48.3,alpha,lower,1.110581874847412 +illusion_1L,ppo,162,48.6,alpha,front,0.8724387288093566 +illusion_1L,ppo,162,48.6,alpha,upper,-1.0337850451469421 +illusion_1L,ppo,162,48.6,alpha,lower,1.1054190397262573 +illusion_1L,ppo,163,48.9,alpha,front,0.7497145533561707 +illusion_1L,ppo,163,48.9,alpha,upper,-0.9089868068695067 +illusion_1L,ppo,163,48.9,alpha,lower,1.063984990119934 +illusion_1L,ppo,164,49.2,alpha,front,0.5847925543785095 +illusion_1L,ppo,164,49.2,alpha,upper,-0.7714060544967651 +illusion_1L,ppo,164,49.2,alpha,lower,0.9495195150375366 +illusion_1L,ppo,165,49.5,alpha,front,0.39807912707328796 +illusion_1L,ppo,165,49.5,alpha,upper,-0.6666313409805298 +illusion_1L,ppo,165,49.5,alpha,lower,0.8112100362777709 +illusion_1L,ppo,166,49.8,alpha,front,0.2404842972755432 +illusion_1L,ppo,166,49.8,alpha,upper,-0.6155312061309814 +illusion_1L,ppo,166,49.8,alpha,lower,0.7088911533355713 +illusion_1L,ppo,167,50.1,alpha,front,0.14821550250053406 +illusion_1L,ppo,167,50.1,alpha,upper,-0.6788963079452515 +illusion_1L,ppo,167,50.1,alpha,lower,0.6848101615905762 +illusion_1L,ppo,168,50.4,alpha,front,0.10114143788814543 +illusion_1L,ppo,168,50.4,alpha,upper,-0.816448450088501 +illusion_1L,ppo,168,50.4,alpha,lower,0.7347501516342163 +illusion_1L,ppo,169,50.7,alpha,front,0.054628342390060425 +illusion_1L,ppo,169,50.7,alpha,upper,-0.933975338935852 +illusion_1L,ppo,169,50.7,alpha,lower,0.8051984310150146 +illusion_1L,ppo,170,51.0,alpha,front,-0.004835367202758789 +illusion_1L,ppo,170,51.0,alpha,upper,-0.9999959468841553 +illusion_1L,ppo,170,51.0,alpha,lower,0.841116189956665 +illusion_1L,ppo,171,51.3,alpha,front,-0.0763130784034729 +illusion_1L,ppo,171,51.3,alpha,upper,-1.0204681158065796 +illusion_1L,ppo,171,51.3,alpha,lower,0.8353879451751709 +illusion_1L,ppo,172,51.6,alpha,front,-0.15732640027999878 +illusion_1L,ppo,172,51.6,alpha,upper,-0.9969793558120728 +illusion_1L,ppo,172,51.6,alpha,lower,0.8087716102600099 +illusion_1L,ppo,173,51.9,alpha,front,-0.24635088443756104 +illusion_1L,ppo,173,51.9,alpha,upper,-0.9316163063049316 +illusion_1L,ppo,173,51.9,alpha,lower,0.7764379978179932 +illusion_1L,ppo,174,52.2,alpha,front,-0.3195686936378479 +illusion_1L,ppo,174,52.2,alpha,upper,-0.8628809452056885 +illusion_1L,ppo,174,52.2,alpha,lower,0.7442770004272461 +illusion_1L,ppo,175,52.5,alpha,front,-0.3252655267715454 +illusion_1L,ppo,175,52.5,alpha,upper,-0.8460428714752197 +illusion_1L,ppo,175,52.5,alpha,lower,0.699765682220459 +illusion_1L,ppo,176,52.8,alpha,front,-0.21077179908752441 +illusion_1L,ppo,176,52.8,alpha,upper,-0.8947885036468506 +illusion_1L,ppo,176,52.8,alpha,lower,0.6038565635681152 +illusion_1L,ppo,177,53.1,alpha,front,0.03672471642494202 +illusion_1L,ppo,177,53.1,alpha,upper,-0.9884910583496094 +illusion_1L,ppo,177,53.1,alpha,lower,0.45760273933410645 +illusion_1L,ppo,178,53.4,alpha,front,0.32274773716926575 +illusion_1L,ppo,178,53.4,alpha,upper,-1.0797874927520752 +illusion_1L,ppo,178,53.4,alpha,lower,0.35547125339508057 +illusion_1L,ppo,179,53.7,alpha,front,0.5225508809089661 +illusion_1L,ppo,179,53.7,alpha,upper,-1.1151173114776611 +illusion_1L,ppo,179,53.7,alpha,lower,0.3808012008666992 +illusion_1L,ppo,180,54.0,alpha,front,0.6072808504104614 +illusion_1L,ppo,180,54.0,alpha,upper,-1.0812585353851318 +illusion_1L,ppo,180,54.0,alpha,lower,0.5060832500457764 +illusion_1L,ppo,181,54.3,alpha,front,0.6418238878250122 +illusion_1L,ppo,181,54.3,alpha,upper,-1.0285696387290955 +illusion_1L,ppo,181,54.3,alpha,lower,0.6551814079284668 +illusion_1L,ppo,182,54.6,alpha,front,0.6842563152313232 +illusion_1L,ppo,182,54.6,alpha,upper,-1.0020203590393066 +illusion_1L,ppo,182,54.6,alpha,lower,0.80110764503479 +illusion_1L,ppo,183,54.9,alpha,front,0.7520004510879517 +illusion_1L,ppo,183,54.9,alpha,upper,-1.0015997886657715 +illusion_1L,ppo,183,54.9,alpha,lower,0.942112922668457 +illusion_1L,ppo,184,55.2,alpha,front,0.8196448683738708 +illusion_1L,ppo,184,55.2,alpha,upper,-1.0134963393211365 +illusion_1L,ppo,184,55.2,alpha,lower,1.051730453968048 +illusion_1L,ppo,185,55.5,alpha,front,0.8812916278839111 +illusion_1L,ppo,185,55.5,alpha,upper,-1.044420838356018 +illusion_1L,ppo,185,55.5,alpha,lower,1.1091114282608032 +illusion_1L,ppo,186,55.8,alpha,front,0.9135408997535706 +illusion_1L,ppo,186,55.8,alpha,upper,-1.0788970589637756 +illusion_1L,ppo,186,55.8,alpha,lower,1.1340717673301697 +illusion_1L,ppo,187,56.1,alpha,front,0.8673306703567505 +illusion_1L,ppo,187,56.1,alpha,upper,-1.0439203977584839 +illusion_1L,ppo,187,56.1,alpha,lower,1.14044588804245 +illusion_1L,ppo,188,56.4,alpha,front,0.7269822955131531 +illusion_1L,ppo,188,56.4,alpha,upper,-0.9024858474731445 +illusion_1L,ppo,188,56.4,alpha,lower,1.0993690490722656 +illusion_1L,ppo,189,56.7,alpha,front,0.5444282293319702 +illusion_1L,ppo,189,56.7,alpha,upper,-0.737323522567749 +illusion_1L,ppo,189,56.7,alpha,lower,0.9756287336349487 +illusion_1L,ppo,190,57.0,alpha,front,0.3628001809120178 +illusion_1L,ppo,190,57.0,alpha,upper,-0.6249384880065918 +illusion_1L,ppo,190,57.0,alpha,lower,0.8168401718139648 +illusion_1L,ppo,191,57.3,alpha,front,0.21674552559852597 +illusion_1L,ppo,191,57.3,alpha,upper,-0.6014547348022461 +illusion_1L,ppo,191,57.3,alpha,lower,0.7047543525695801 +illusion_1L,ppo,192,57.6,alpha,front,0.14065703749656677 +illusion_1L,ppo,192,57.6,alpha,upper,-0.6918306350708008 +illusion_1L,ppo,192,57.6,alpha,lower,0.6722193956375122 +illusion_1L,ppo,193,57.9,alpha,front,0.09717275202274323 +illusion_1L,ppo,193,57.9,alpha,upper,-0.8299529552459717 +illusion_1L,ppo,193,57.9,alpha,lower,0.717322587966919 +illusion_1L,ppo,194,58.2,alpha,front,0.051397472620010376 +illusion_1L,ppo,194,58.2,alpha,upper,-0.9488155841827393 +illusion_1L,ppo,194,58.2,alpha,lower,0.7886056900024415 +illusion_1L,ppo,195,58.5,alpha,front,-0.006256073713302612 +illusion_1L,ppo,195,58.5,alpha,upper,-1.021470069885254 +illusion_1L,ppo,195,58.5,alpha,lower,0.8227353096008302 +illusion_1L,ppo,196,58.8,alpha,front,-0.07860380411148071 +illusion_1L,ppo,196,58.8,alpha,upper,-1.040733516216278 +illusion_1L,ppo,196,58.8,alpha,lower,0.8058376312255859 +illusion_1L,ppo,197,59.1,alpha,front,-0.16057193279266357 +illusion_1L,ppo,197,59.1,alpha,upper,-1.0176490545272827 +illusion_1L,ppo,197,59.1,alpha,lower,0.773745059967041 +illusion_1L,ppo,198,59.4,alpha,front,-0.24435782432556152 +illusion_1L,ppo,198,59.4,alpha,upper,-0.9648854732513429 +illusion_1L,ppo,198,59.4,alpha,lower,0.7502398490905762 +illusion_1L,ppo,199,59.7,alpha,front,-0.309848427772522 +illusion_1L,ppo,199,59.7,alpha,upper,-0.9055113792419434 +illusion_1L,ppo,199,59.7,alpha,lower,0.722765326499939 +illusion_1L,ppo,200,60.0,alpha,front,-0.3097296953201294 +illusion_1L,ppo,200,60.0,alpha,upper,-0.8843719959259033 +illusion_1L,ppo,200,60.0,alpha,lower,0.6716611385345459 +illusion_1L,ppo,201,60.3,alpha,front,-0.18724191188812256 +illusion_1L,ppo,201,60.3,alpha,upper,-0.9282619953155516 +illusion_1L,ppo,201,60.3,alpha,lower,0.5779423713684082 +illusion_1L,ppo,202,60.6,alpha,front,0.07024693489074707 +illusion_1L,ppo,202,60.6,alpha,upper,-1.022898554801941 +illusion_1L,ppo,202,60.6,alpha,lower,0.44634222984313965 +illusion_1L,ppo,203,60.9,alpha,front,0.35340508818626404 +illusion_1L,ppo,203,60.9,alpha,upper,-1.1007604598999023 +illusion_1L,ppo,203,60.9,alpha,lower,0.35474395751953125 +illusion_1L,ppo,204,61.2,alpha,front,0.5419930219650269 +illusion_1L,ppo,204,61.2,alpha,upper,-1.108412504196167 +illusion_1L,ppo,204,61.2,alpha,lower,0.3875693082809448 +illusion_1L,ppo,205,61.5,alpha,front,0.6175737977027893 +illusion_1L,ppo,205,61.5,alpha,upper,-1.0608521699905396 +illusion_1L,ppo,205,61.5,alpha,lower,0.5324996709823608 +illusion_1L,ppo,206,61.8,alpha,front,0.651134729385376 +illusion_1L,ppo,206,61.8,alpha,upper,-1.0111383199691772 +illusion_1L,ppo,206,61.8,alpha,lower,0.7024184465408325 +illusion_1L,ppo,207,62.1,alpha,front,0.6910766959190369 +illusion_1L,ppo,207,62.1,alpha,upper,-0.9819747209548949 +illusion_1L,ppo,207,62.1,alpha,lower,0.8564255237579347 +illusion_1L,ppo,208,62.4,alpha,front,0.7496422529220581 +illusion_1L,ppo,208,62.4,alpha,upper,-0.9785867929458618 +illusion_1L,ppo,208,62.4,alpha,lower,0.9963223934173584 +illusion_1L,ppo,209,62.7,alpha,front,0.8209451436996459 +illusion_1L,ppo,209,62.7,alpha,upper,-1.0036524534225464 +illusion_1L,ppo,209,62.7,alpha,lower,1.1027106046676636 +illusion_1L,ppo,210,63.0,alpha,front,0.8847293853759765 +illusion_1L,ppo,210,63.0,alpha,upper,-1.0469112396240234 +illusion_1L,ppo,210,63.0,alpha,lower,1.1500577330589294 +illusion_1L,ppo,211,63.3,alpha,front,0.9126620292663574 +illusion_1L,ppo,211,63.3,alpha,upper,-1.0781771540641785 +illusion_1L,ppo,211,63.3,alpha,lower,1.1495273113250732 +illusion_1L,ppo,212,63.6,alpha,front,0.8630069494247437 +illusion_1L,ppo,212,63.6,alpha,upper,-1.0423246622085571 +illusion_1L,ppo,212,63.6,alpha,lower,1.1341890096664429 +illusion_1L,ppo,213,63.9,alpha,front,0.7281230688095093 +illusion_1L,ppo,213,63.9,alpha,upper,-0.9153567552566528 +illusion_1L,ppo,213,63.9,alpha,lower,1.078676700592041 +illusion_1L,ppo,214,64.2,alpha,front,0.5501695871353149 +illusion_1L,ppo,214,64.2,alpha,upper,-0.759451150894165 +illusion_1L,ppo,214,64.2,alpha,lower,0.9437178373336793 +illusion_1L,ppo,215,64.5,alpha,front,0.3638243079185486 +illusion_1L,ppo,215,64.5,alpha,upper,-0.6394429206848145 +illusion_1L,ppo,215,64.5,alpha,lower,0.7788527011871338 +illusion_1L,ppo,216,64.8,alpha,front,0.21401274204254148 +illusion_1L,ppo,216,64.8,alpha,upper,-0.608086347579956 +illusion_1L,ppo,216,64.8,alpha,lower,0.6787278652191162 +illusion_1L,ppo,217,65.1,alpha,front,0.13390208780765533 +illusion_1L,ppo,217,65.1,alpha,upper,-0.7034022808074951 +illusion_1L,ppo,217,65.1,alpha,lower,0.6723952293395996 +illusion_1L,ppo,218,65.4,alpha,front,0.09462504088878632 +illusion_1L,ppo,218,65.4,alpha,upper,-0.8508825302124023 +illusion_1L,ppo,218,65.4,alpha,lower,0.7245535850524902 +illusion_1L,ppo,219,65.7,alpha,front,0.04948773980140687 +illusion_1L,ppo,219,65.7,alpha,upper,-0.9703810214996339 +illusion_1L,ppo,219,65.7,alpha,lower,0.7922639846801758 +illusion_1L,ppo,220,66.0,alpha,front,-0.008766412734985352 +illusion_1L,ppo,220,66.0,alpha,upper,-1.0444586277008057 +illusion_1L,ppo,220,66.0,alpha,lower,0.8279374837875367 +illusion_1L,ppo,221,66.3,alpha,front,-0.08290350437164307 +illusion_1L,ppo,221,66.3,alpha,upper,-1.0634365677833557 +illusion_1L,ppo,221,66.3,alpha,lower,0.8120584487915038 +illusion_1L,ppo,222,66.6,alpha,front,-0.1690402626991272 +illusion_1L,ppo,222,66.6,alpha,upper,-1.0230193734169006 +illusion_1L,ppo,222,66.6,alpha,lower,0.7661062479019165 +illusion_1L,ppo,223,66.9,alpha,front,-0.25295311212539673 +illusion_1L,ppo,223,66.9,alpha,upper,-0.9508684873580933 +illusion_1L,ppo,223,66.9,alpha,lower,0.7353323698043823 +illusion_1L,ppo,224,67.2,alpha,front,-0.311398983001709 +illusion_1L,ppo,224,67.2,alpha,upper,-0.8864719867706299 +illusion_1L,ppo,224,67.2,alpha,lower,0.7166457176208496 +illusion_1L,ppo,225,67.5,alpha,front,-0.3038838505744934 +illusion_1L,ppo,225,67.5,alpha,upper,-0.8618481159210205 +illusion_1L,ppo,225,67.5,alpha,lower,0.6708700656890869 +illusion_1L,ppo,226,67.8,alpha,front,-0.1761874556541443 +illusion_1L,ppo,226,67.8,alpha,upper,-0.8986301422119141 +illusion_1L,ppo,226,67.8,alpha,lower,0.5698544979095459 +illusion_1L,ppo,227,68.1,alpha,front,0.08086740970611572 +illusion_1L,ppo,227,68.1,alpha,upper,-0.9954296350479126 +illusion_1L,ppo,227,68.1,alpha,lower,0.44222474098205566 +illusion_1L,ppo,228,68.4,alpha,front,0.35771211981773376 +illusion_1L,ppo,228,68.4,alpha,upper,-1.0843530893325806 +illusion_1L,ppo,228,68.4,alpha,lower,0.3697011470794678 +illusion_1L,ppo,229,68.7,alpha,front,0.5413022637367249 +illusion_1L,ppo,229,68.7,alpha,upper,-1.1002777218818665 +illusion_1L,ppo,229,68.7,alpha,lower,0.40838789939880366 +illusion_1L,ppo,230,69.0,alpha,front,0.614902913570404 +illusion_1L,ppo,230,69.0,alpha,upper,-1.0549958944320679 +illusion_1L,ppo,230,69.0,alpha,lower,0.5456550121307373 +illusion_1L,ppo,231,69.3,alpha,front,0.6548930406570435 +illusion_1L,ppo,231,69.3,alpha,upper,-1.0157946348190308 +illusion_1L,ppo,231,69.3,alpha,lower,0.7149289846420288 +illusion_1L,ppo,232,69.6,alpha,front,0.701122522354126 +illusion_1L,ppo,232,69.6,alpha,upper,-0.9995073080062866 +illusion_1L,ppo,232,69.6,alpha,lower,0.8696335554122926 +illusion_1L,ppo,233,69.9,alpha,front,0.7580797076225281 +illusion_1L,ppo,233,69.9,alpha,upper,-0.9939718246459962 +illusion_1L,ppo,233,69.9,alpha,lower,0.9966821670532225 +illusion_1L,ppo,234,70.2,alpha,front,0.8299431204795837 +illusion_1L,ppo,234,70.2,alpha,upper,-1.0129934549331665 +illusion_1L,ppo,234,70.2,alpha,lower,1.0875185132026672 +illusion_1L,ppo,235,70.5,alpha,front,0.8930290937423707 +illusion_1L,ppo,235,70.5,alpha,upper,-1.0567894577980042 +illusion_1L,ppo,235,70.5,alpha,lower,1.1356902122497559 +illusion_1L,ppo,236,70.8,alpha,front,0.9136507511138916 +illusion_1L,ppo,236,70.8,alpha,upper,-1.0786163806915283 +illusion_1L,ppo,236,70.8,alpha,lower,1.1409251689910889 +illusion_1L,ppo,237,71.1,alpha,front,0.8495907187461854 +illusion_1L,ppo,237,71.1,alpha,upper,-1.0140256881713867 +illusion_1L,ppo,237,71.1,alpha,lower,1.1188185811042786 +illusion_1L,ppo,238,71.4,alpha,front,0.7021257877349854 +illusion_1L,ppo,238,71.4,alpha,upper,-0.8713889122009278 +illusion_1L,ppo,238,71.4,alpha,lower,1.0589947700500488 +illusion_1L,ppo,239,71.7,alpha,front,0.5262929201126099 +illusion_1L,ppo,239,71.7,alpha,upper,-0.7321028709411621 +illusion_1L,ppo,239,71.7,alpha,lower,0.9304128885269165 +illusion_1L,ppo,240,72.0,alpha,front,0.3427327275276184 +illusion_1L,ppo,240,72.0,alpha,upper,-0.6287739276885986 +illusion_1L,ppo,240,72.0,alpha,lower,0.7786920070648193 +illusion_1L,ppo,241,72.3,alpha,front,0.1989406943321228 +illusion_1L,ppo,241,72.3,alpha,upper,-0.6113623380661011 +illusion_1L,ppo,241,72.3,alpha,lower,0.6854276657104492 +illusion_1L,ppo,242,72.6,alpha,front,0.1258818507194519 +illusion_1L,ppo,242,72.6,alpha,upper,-0.720942497253418 +illusion_1L,ppo,242,72.6,alpha,lower,0.6867313385009766 +illusion_1L,ppo,243,72.9,alpha,front,0.08448463678359985 +illusion_1L,ppo,243,72.9,alpha,upper,-0.8700186014175415 +illusion_1L,ppo,243,72.9,alpha,lower,0.7423760890960693 +illusion_1L,ppo,244,73.2,alpha,front,0.03573012351989746 +illusion_1L,ppo,244,73.2,alpha,upper,-0.9766921997070312 +illusion_1L,ppo,244,73.2,alpha,lower,0.7974085807800292 +illusion_1L,ppo,245,73.5,alpha,front,-0.02410873770713806 +illusion_1L,ppo,245,73.5,alpha,upper,-1.037770390510559 +illusion_1L,ppo,245,73.5,alpha,lower,0.8181798458099364 +illusion_1L,ppo,246,73.8,alpha,front,-0.0946677029132843 +illusion_1L,ppo,246,73.8,alpha,upper,-1.0562672019004822 +illusion_1L,ppo,246,73.8,alpha,lower,0.8029571771621705 +illusion_1L,ppo,247,74.1,alpha,front,-0.17674696445465088 +illusion_1L,ppo,247,74.1,alpha,upper,-1.0216680765151978 +illusion_1L,ppo,247,74.1,alpha,lower,0.7662593126296997 +illusion_1L,ppo,248,74.4,alpha,front,-0.26244038343429565 +illusion_1L,ppo,248,74.4,alpha,upper,-0.9494863748550415 +illusion_1L,ppo,248,74.4,alpha,lower,0.7291970252990723 +illusion_1L,ppo,249,74.7,alpha,front,-0.31924885511398315 +illusion_1L,ppo,249,74.7,alpha,upper,-0.8903383016586304 +illusion_1L,ppo,249,74.7,alpha,lower,0.6997087001800537 +illusion_1L,ppo,250,75.0,alpha,front,-0.2975679039955139 +illusion_1L,ppo,250,75.0,alpha,upper,-0.8831052780151367 +illusion_1L,ppo,250,75.0,alpha,lower,0.6491225957870483 +illusion_1L,ppo,251,75.3,alpha,front,-0.1472107470035553 +illusion_1L,ppo,251,75.3,alpha,upper,-0.9303942918777466 +illusion_1L,ppo,251,75.3,alpha,lower,0.5388715267181396 +illusion_1L,ppo,252,75.6,alpha,front,0.12213045358657837 +illusion_1L,ppo,252,75.6,alpha,upper,-1.018359661102295 +illusion_1L,ppo,252,75.6,alpha,lower,0.4057760238647461 +illusion_1L,ppo,253,75.9,alpha,front,0.3985362648963929 +illusion_1L,ppo,253,75.9,alpha,upper,-1.0951946377754211 +illusion_1L,ppo,253,75.9,alpha,lower,0.35027384757995605 +illusion_1L,ppo,254,76.2,alpha,front,0.5674847364425659 +illusion_1L,ppo,254,76.2,alpha,upper,-1.1038726568222046 +illusion_1L,ppo,254,76.2,alpha,lower,0.421062707901001 +illusion_1L,ppo,255,76.5,alpha,front,0.6297457814216614 +illusion_1L,ppo,255,76.5,alpha,upper,-1.0506832599639893 +illusion_1L,ppo,255,76.5,alpha,lower,0.5724771022796631 +illusion_1L,ppo,256,76.8,alpha,front,0.6599636077880859 +illusion_1L,ppo,256,76.8,alpha,upper,-1.0019071102142334 +illusion_1L,ppo,256,76.8,alpha,lower,0.7405507564544678 +illusion_1L,ppo,257,77.1,alpha,front,0.7088832855224609 +illusion_1L,ppo,257,77.1,alpha,upper,-0.9860593080520631 +illusion_1L,ppo,257,77.1,alpha,lower,0.8987252712249757 +illusion_1L,ppo,258,77.4,alpha,front,0.762001633644104 +illusion_1L,ppo,258,77.4,alpha,upper,-0.9831987619400024 +illusion_1L,ppo,258,77.4,alpha,lower,1.0367882251739502 +illusion_1L,ppo,259,77.7,alpha,front,0.8348150849342346 +illusion_1L,ppo,259,77.7,alpha,upper,-0.999767541885376 +illusion_1L,ppo,259,77.7,alpha,lower,1.1235181093215942 +illusion_1L,ppo,260,78.0,alpha,front,0.8947724103927612 +illusion_1L,ppo,260,78.0,alpha,upper,-1.0411921739578247 +illusion_1L,ppo,260,78.0,alpha,lower,1.164521038532257 +illusion_1L,ppo,261,78.3,alpha,front,0.9104814529418945 +illusion_1L,ppo,261,78.3,alpha,upper,-1.0670896768569946 +illusion_1L,ppo,261,78.3,alpha,lower,1.173956573009491 +illusion_1L,ppo,262,78.6,alpha,front,0.83689284324646 +illusion_1L,ppo,262,78.6,alpha,upper,-1.0012589693069458 +illusion_1L,ppo,262,78.6,alpha,lower,1.1485110521316528 +illusion_1L,ppo,263,78.9,alpha,front,0.6839276552200317 +illusion_1L,ppo,263,78.9,alpha,upper,-0.8529150485992432 +illusion_1L,ppo,263,78.9,alpha,lower,1.0660890340805054 +illusion_1L,ppo,264,79.2,alpha,front,0.500304639339447 +illusion_1L,ppo,264,79.2,alpha,upper,-0.7144742012023926 +illusion_1L,ppo,264,79.2,alpha,lower,0.9151105880737306 +illusion_1L,ppo,265,79.5,alpha,front,0.32042765617370605 +illusion_1L,ppo,265,79.5,alpha,upper,-0.6231820583343506 +illusion_1L,ppo,265,79.5,alpha,lower,0.755876898765564 +illusion_1L,ppo,266,79.8,alpha,front,0.18026390671730042 +illusion_1L,ppo,266,79.8,alpha,upper,-0.6223925352096558 +illusion_1L,ppo,266,79.8,alpha,lower,0.6659245491027832 +illusion_1L,ppo,267,80.1,alpha,front,0.11567597091197968 +illusion_1L,ppo,267,80.1,alpha,upper,-0.7413492202758789 +illusion_1L,ppo,267,80.1,alpha,lower,0.6676734685897827 +illusion_1L,ppo,268,80.4,alpha,front,0.07853040099143982 +illusion_1L,ppo,268,80.4,alpha,upper,-0.8942570686340332 +illusion_1L,ppo,268,80.4,alpha,lower,0.7337216138839722 +illusion_1L,ppo,269,80.7,alpha,front,0.03253781795501709 +illusion_1L,ppo,269,80.7,alpha,upper,-1.0077391266822815 +illusion_1L,ppo,269,80.7,alpha,lower,0.7973934412002565 +illusion_1L,ppo,270,81.0,alpha,front,-0.02927443385124207 +illusion_1L,ppo,270,81.0,alpha,upper,-1.0668623447418213 +illusion_1L,ppo,270,81.0,alpha,lower,0.811237931251526 +illusion_1L,ppo,271,81.3,alpha,front,-0.10477840900421143 +illusion_1L,ppo,271,81.3,alpha,upper,-1.0746049880981445 +illusion_1L,ppo,271,81.3,alpha,lower,0.7821042537689209 +illusion_1L,ppo,272,81.6,alpha,front,-0.1895405650138855 +illusion_1L,ppo,272,81.6,alpha,upper,-1.0335065126419067 +illusion_1L,ppo,272,81.6,alpha,lower,0.7430787086486816 +illusion_1L,ppo,273,81.9,alpha,front,-0.2725985646247864 +illusion_1L,ppo,273,81.9,alpha,upper,-0.9568154811859131 +illusion_1L,ppo,273,81.9,alpha,lower,0.7117336988449097 +illusion_1L,ppo,274,82.2,alpha,front,-0.32049548625946045 +illusion_1L,ppo,274,82.2,alpha,upper,-0.8895168304443359 +illusion_1L,ppo,274,82.2,alpha,lower,0.6833887100219727 +illusion_1L,ppo,275,82.5,alpha,front,-0.2812132239341736 +illusion_1L,ppo,275,82.5,alpha,upper,-0.8774776458740234 +illusion_1L,ppo,275,82.5,alpha,lower,0.6325615644454956 +illusion_1L,ppo,276,82.8,alpha,front,-0.10706537961959839 +illusion_1L,ppo,276,82.8,alpha,upper,-0.9303641319274902 +illusion_1L,ppo,276,82.8,alpha,lower,0.5317084789276123 +illusion_1L,ppo,277,83.1,alpha,front,0.17118827998638153 +illusion_1L,ppo,277,83.1,alpha,upper,-1.0189526081085205 +illusion_1L,ppo,277,83.1,alpha,lower,0.41272974014282227 +illusion_1L,ppo,278,83.4,alpha,front,0.4289991557598114 +illusion_1L,ppo,278,83.4,alpha,upper,-1.0809203386306763 +illusion_1L,ppo,278,83.4,alpha,lower,0.3729853630065918 +illusion_1L,ppo,279,83.7,alpha,front,0.5777109265327454 +illusion_1L,ppo,279,83.7,alpha,upper,-1.0786662101745605 +illusion_1L,ppo,279,83.7,alpha,lower,0.45621716976165777 +illusion_1L,ppo,280,84.0,alpha,front,0.6290284991264343 +illusion_1L,ppo,280,84.0,alpha,upper,-1.0305613279342651 +illusion_1L,ppo,280,84.0,alpha,lower,0.6138819456100464 +illusion_1L,ppo,281,84.3,alpha,front,0.6623372435569763 +illusion_1L,ppo,281,84.3,alpha,upper,-0.9920556545257568 +illusion_1L,ppo,281,84.3,alpha,lower,0.7765107154846191 +illusion_1L,ppo,282,84.6,alpha,front,0.7115744352340698 +illusion_1L,ppo,282,84.6,alpha,upper,-0.9815478324890137 +illusion_1L,ppo,282,84.6,alpha,lower,0.924343466758728 +illusion_1L,ppo,283,84.9,alpha,front,0.7747716903686523 +illusion_1L,ppo,283,84.9,alpha,upper,-0.9931485652923583 +illusion_1L,ppo,283,84.9,alpha,lower,1.0462143421173096 +illusion_1L,ppo,284,85.2,alpha,front,0.8427238464355469 +illusion_1L,ppo,284,85.2,alpha,upper,-1.0251381397247314 +illusion_1L,ppo,284,85.2,alpha,lower,1.1209619641304016 +illusion_1L,ppo,285,85.5,alpha,front,0.9079741835594177 +illusion_1L,ppo,285,85.5,alpha,upper,-1.0721327066421509 +illusion_1L,ppo,285,85.5,alpha,lower,1.1377819776535034 +illusion_1L,ppo,286,85.8,alpha,front,0.9039036631584167 +illusion_1L,ppo,286,85.8,alpha,upper,-1.079651951789856 +illusion_1L,ppo,286,85.8,alpha,lower,1.1248619556427002 +illusion_1L,ppo,287,86.1,alpha,front,0.8086819052696228 +illusion_1L,ppo,287,86.1,alpha,upper,-0.9917244911193848 +illusion_1L,ppo,287,86.1,alpha,lower,1.087680459022522 +illusion_1L,ppo,288,86.4,alpha,front,0.6490216851234436 +illusion_1L,ppo,288,86.4,alpha,upper,-0.842350959777832 +illusion_1L,ppo,288,86.4,alpha,lower,0.985891103744507 +illusion_1L,ppo,289,86.7,alpha,front,0.4638986885547638 +illusion_1L,ppo,289,86.7,alpha,upper,-0.7098543643951416 +illusion_1L,ppo,289,86.7,alpha,lower,0.8338570594787598 +illusion_1L,ppo,290,87.0,alpha,front,0.28945744037628174 +illusion_1L,ppo,290,87.0,alpha,upper,-0.6269173622131348 +illusion_1L,ppo,290,87.0,alpha,lower,0.7036633491516113 +illusion_1L,ppo,291,87.3,alpha,front,0.17148357629776 +illusion_1L,ppo,291,87.3,alpha,upper,-0.6492879390716553 +illusion_1L,ppo,291,87.3,alpha,lower,0.6577502489089966 +illusion_1L,ppo,292,87.6,alpha,front,0.11468957364559172 +illusion_1L,ppo,292,87.6,alpha,upper,-0.7784556150436401 +illusion_1L,ppo,292,87.6,alpha,lower,0.6960387229919434 +illusion_1L,ppo,293,87.9,alpha,front,0.07710909843444824 +illusion_1L,ppo,293,87.9,alpha,upper,-0.9169212579727174 +illusion_1L,ppo,293,87.9,alpha,lower,0.7735768556594849 +illusion_1L,ppo,294,88.2,alpha,front,0.02465984225273132 +illusion_1L,ppo,294,88.2,alpha,upper,-1.0066089630126953 +illusion_1L,ppo,294,88.2,alpha,lower,0.8339519500732423 +illusion_1L,ppo,295,88.5,alpha,front,-0.043219685554504395 +illusion_1L,ppo,295,88.5,alpha,upper,-1.0411885380744934 +illusion_1L,ppo,295,88.5,alpha,lower,0.8459181785583495 +illusion_1L,ppo,296,88.8,alpha,front,-0.12323552370071413 +illusion_1L,ppo,296,88.8,alpha,upper,-1.0214401483535767 +illusion_1L,ppo,296,88.8,alpha,lower,0.8206963539123535 +illusion_1L,ppo,297,89.1,alpha,front,-0.21132987737655642 +illusion_1L,ppo,297,89.1,alpha,upper,-0.9548909664154053 +illusion_1L,ppo,297,89.1,alpha,lower,0.7901653051376342 +illusion_1L,ppo,298,89.4,alpha,front,-0.29169410467147827 +illusion_1L,ppo,298,89.4,alpha,upper,-0.8707592487335205 +illusion_1L,ppo,298,89.4,alpha,lower,0.7726764678955078 +illusion_1L,ppo,299,89.7,alpha,front,-0.32905739545822144 +illusion_1L,ppo,299,89.7,alpha,upper,-0.817450761795044 +illusion_1L,ppo,299,89.7,alpha,lower,0.7516095638275146 +illusion_1L,ppo,300,90.0,alpha,front,-0.271780788898468 +illusion_1L,ppo,300,90.0,alpha,upper,-0.8273468017578125 +illusion_1L,ppo,300,90.0,alpha,lower,0.6855103969573975 +illusion_1L,ppo,301,90.3,alpha,front,-0.0767008364200592 +illusion_1L,ppo,301,90.3,alpha,upper,-0.9023716449737549 +illusion_1L,ppo,301,90.3,alpha,lower,0.5576283931732178 +illusion_1L,ppo,302,90.6,alpha,front,0.1978933960199356 +illusion_1L,ppo,302,90.6,alpha,upper,-1.0061032176017761 +illusion_1L,ppo,302,90.6,alpha,lower,0.4294035434722901 +illusion_1L,ppo,303,90.9,alpha,front,0.4377729296684265 +illusion_1L,ppo,303,90.9,alpha,upper,-1.0772244930267334 +illusion_1L,ppo,303,90.9,alpha,lower,0.389837384223938 +illusion_1L,ppo,304,91.2,alpha,front,0.5674096941947937 +illusion_1L,ppo,304,91.2,alpha,upper,-1.08003431558609 +illusion_1L,ppo,304,91.2,alpha,lower,0.4647945165634155 +illusion_1L,ppo,305,91.5,alpha,front,0.6175261735916138 +illusion_1L,ppo,305,91.5,alpha,upper,-1.0458139777183533 +illusion_1L,ppo,305,91.5,alpha,lower,0.59913170337677 +illusion_1L,ppo,306,91.8,alpha,front,0.6607452630996704 +illusion_1L,ppo,306,91.8,alpha,upper,-1.027466595172882 +illusion_1L,ppo,306,91.8,alpha,lower,0.7387353181838989 +illusion_1L,ppo,307,92.1,alpha,front,0.7224804162979126 +illusion_1L,ppo,307,92.1,alpha,upper,-1.0296645164489746 +illusion_1L,ppo,307,92.1,alpha,lower,0.866379976272583 +illusion_1L,ppo,308,92.4,alpha,front,0.7894552946090698 +illusion_1L,ppo,308,92.4,alpha,upper,-1.0410191416740417 +illusion_1L,ppo,308,92.4,alpha,lower,0.9672755002975464 +illusion_1L,ppo,309,92.7,alpha,front,0.8589927554130554 +illusion_1L,ppo,309,92.7,alpha,upper,-1.0682120323181152 +illusion_1L,ppo,309,92.7,alpha,lower,1.025349736213684 +illusion_1L,ppo,310,93.0,alpha,front,0.9095016717910767 +illusion_1L,ppo,310,93.0,alpha,upper,-1.1047397255897522 +illusion_1L,ppo,310,93.0,alpha,lower,1.044467806816101 +illusion_1L,ppo,311,93.3,alpha,front,0.8916726112365723 +illusion_1L,ppo,311,93.3,alpha,upper,-1.091952919960022 +illusion_1L,ppo,311,93.3,alpha,lower,1.0487209558486938 +illusion_1L,ppo,312,93.6,alpha,front,0.7797644734382629 +illusion_1L,ppo,312,93.6,alpha,upper,-0.9771552085876465 +illusion_1L,ppo,312,93.6,alpha,lower,1.0346418619155884 +illusion_1L,ppo,313,93.9,alpha,front,0.610617995262146 +illusion_1L,ppo,313,93.9,alpha,upper,-0.8150161504745482 +illusion_1L,ppo,313,93.9,alpha,lower,0.9639374017715455 +illusion_1L,ppo,314,94.2,alpha,front,0.4272613525390625 +illusion_1L,ppo,314,94.2,alpha,upper,-0.6844367980957031 +illusion_1L,ppo,314,94.2,alpha,lower,0.8418982028961183 +illusion_1L,ppo,315,94.5,alpha,front,0.2696925103664398 +illusion_1L,ppo,315,94.5,alpha,upper,-0.6139291524887085 +illusion_1L,ppo,315,94.5,alpha,lower,0.7365987300872803 +illusion_1L,ppo,316,94.8,alpha,front,0.17077656090259552 +illusion_1L,ppo,316,94.8,alpha,upper,-0.65114426612854 +illusion_1L,ppo,316,94.8,alpha,lower,0.69486403465271 +illusion_1L,ppo,317,95.1,alpha,front,0.12001422047615053 +illusion_1L,ppo,317,95.1,alpha,upper,-0.7684037685394287 +illusion_1L,ppo,317,95.1,alpha,lower,0.726442813873291 +illusion_1L,ppo,318,95.4,alpha,front,0.0756935179233551 +illusion_1L,ppo,318,95.4,alpha,upper,-0.87813401222229 +illusion_1L,ppo,318,95.4,alpha,lower,0.7957859039306641 +illusion_1L,ppo,319,95.7,alpha,front,0.018675237894058228 +illusion_1L,ppo,319,95.7,alpha,upper,-0.9454480409622193 +illusion_1L,ppo,319,95.7,alpha,lower,0.8499207496643066 +illusion_1L,ppo,320,96.0,alpha,front,-0.05069622397422791 +illusion_1L,ppo,320,96.0,alpha,upper,-0.9692077636718751 +illusion_1L,ppo,320,96.0,alpha,lower,0.865576982498169 +illusion_1L,ppo,321,96.3,alpha,front,-0.12885114550590515 +illusion_1L,ppo,321,96.3,alpha,upper,-0.953855037689209 +illusion_1L,ppo,321,96.3,alpha,lower,0.8566303253173828 +illusion_1L,ppo,322,96.6,alpha,front,-0.2151439189910889 +illusion_1L,ppo,322,96.6,alpha,upper,-0.905205488204956 +illusion_1L,ppo,322,96.6,alpha,lower,0.8408743143081666 +illusion_1L,ppo,323,96.9,alpha,front,-0.29639315605163574 +illusion_1L,ppo,323,96.9,alpha,upper,-0.8460116386413574 +illusion_1L,ppo,323,96.9,alpha,lower,0.8192064762115479 +illusion_1L,ppo,324,97.2,alpha,front,-0.33214765787124634 +illusion_1L,ppo,324,97.2,alpha,upper,-0.8233219385147095 +illusion_1L,ppo,324,97.2,alpha,lower,0.7753353118896484 +illusion_1L,ppo,325,97.5,alpha,front,-0.26438379287719727 +illusion_1L,ppo,325,97.5,alpha,upper,-0.8650598526000975 +illusion_1L,ppo,325,97.5,alpha,lower,0.684321403503418 +illusion_1L,ppo,326,97.8,alpha,front,-0.05550855398178101 +illusion_1L,ppo,326,97.8,alpha,upper,-0.9646627902984619 +illusion_1L,ppo,326,97.8,alpha,lower,0.5358583927154541 +illusion_1L,ppo,327,98.1,alpha,front,0.23852059245109555 +illusion_1L,ppo,327,98.1,alpha,upper,-1.0811737775802612 +illusion_1L,ppo,327,98.1,alpha,lower,0.3910372257232666 +illusion_1L,ppo,328,98.4,alpha,front,0.46684271097183233 +illusion_1L,ppo,328,98.4,alpha,upper,-1.138226866722107 +illusion_1L,ppo,328,98.4,alpha,lower,0.3572903871536255 +illusion_1L,ppo,329,98.7,alpha,front,0.5764458775520325 +illusion_1L,ppo,329,98.7,alpha,upper,-1.1157004833221436 +illusion_1L,ppo,329,98.7,alpha,lower,0.4458386898040772 +illusion_1L,ppo,330,99.0,alpha,front,0.6193240880966187 +illusion_1L,ppo,330,99.0,alpha,upper,-1.063820481300354 +illusion_1L,ppo,330,99.0,alpha,lower,0.5803048610687256 +illusion_1L,ppo,331,99.3,alpha,front,0.6624386310577393 +illusion_1L,ppo,331,99.3,alpha,upper,-1.0274879932403564 +illusion_1L,ppo,331,99.3,alpha,lower,0.7101948261260986 +illusion_1L,ppo,332,99.6,alpha,front,0.7221088409423828 +illusion_1L,ppo,332,99.6,alpha,upper,-1.012094259262085 +illusion_1L,ppo,332,99.6,alpha,lower,0.8398871421813964 +illusion_1L,ppo,333,99.9,alpha,front,0.7927605509757996 +illusion_1L,ppo,333,99.9,alpha,upper,-1.0172152519226074 +illusion_1L,ppo,333,99.9,alpha,lower,0.9535534381866455 +illusion_1L,ppo,334,100.2,alpha,front,0.8611567616462708 +illusion_1L,ppo,334,100.2,alpha,upper,-1.0454519987106323 +illusion_1L,ppo,334,100.2,alpha,lower,1.0279958248138428 +illusion_1L,ppo,335,100.5,alpha,front,0.9096913933753968 +illusion_1L,ppo,335,100.5,alpha,upper,-1.0913214087486267 +illusion_1L,ppo,335,100.5,alpha,lower,1.0647652745246887 +illusion_1L,ppo,336,100.8,alpha,front,0.8987786173820496 +illusion_1L,ppo,336,100.8,alpha,upper,-1.1022719144821167 +illusion_1L,ppo,336,100.8,alpha,lower,1.0944653749465942 +illusion_1L,ppo,337,101.1,alpha,front,0.7979428768157959 +illusion_1L,ppo,337,101.1,alpha,upper,-1.0094313621520996 +illusion_1L,ppo,337,101.1,alpha,lower,1.1079575419425964 +illusion_1L,ppo,338,101.4,alpha,front,0.6279292106628418 +illusion_1L,ppo,338,101.4,alpha,upper,-0.8335039615631104 +illusion_1L,ppo,338,101.4,alpha,lower,1.0505273342132568 +illusion_1L,ppo,339,101.7,alpha,front,0.43665462732315063 +illusion_1L,ppo,339,101.7,alpha,upper,-0.6685537099838257 +illusion_1L,ppo,339,101.7,alpha,lower,0.911684513092041 +illusion_1L,ppo,340,102.0,alpha,front,0.2751631438732147 +illusion_1L,ppo,340,102.0,alpha,upper,-0.5844540596008301 +illusion_1L,ppo,340,102.0,alpha,lower,0.7624001502990723 +illusion_1L,ppo,341,102.3,alpha,front,0.17544439435005188 +illusion_1L,ppo,341,102.3,alpha,upper,-0.6235013008117676 +illusion_1L,ppo,341,102.3,alpha,lower,0.6846790313720703 +illusion_1L,ppo,342,102.6,alpha,front,0.12845994532108307 +illusion_1L,ppo,342,102.6,alpha,upper,-0.7462825775146484 +illusion_1L,ppo,342,102.6,alpha,lower,0.6921241283416748 +illusion_1L,ppo,343,102.9,alpha,front,0.08530673384666443 +illusion_1L,ppo,343,102.9,alpha,upper,-0.8684730529785156 +illusion_1L,ppo,343,102.9,alpha,lower,0.7582716941833496 +illusion_1L,ppo,344,103.2,alpha,front,0.03178456425666809 +illusion_1L,ppo,344,103.2,alpha,upper,-0.9598501920700074 +illusion_1L,ppo,344,103.2,alpha,lower,0.8241529464721681 +illusion_1L,ppo,345,103.5,alpha,front,-0.03220382332801819 +illusion_1L,ppo,345,103.5,alpha,upper,-1.0064420700073242 +illusion_1L,ppo,345,103.5,alpha,lower,0.844475507736206 +illusion_1L,ppo,346,103.8,alpha,front,-0.11078205704689026 +illusion_1L,ppo,346,103.8,alpha,upper,-1.002650260925293 +illusion_1L,ppo,346,103.8,alpha,lower,0.8236997127532959 +illusion_1L,ppo,347,104.1,alpha,front,-0.19636070728302002 +illusion_1L,ppo,347,104.1,alpha,upper,-0.9611881971359253 +illusion_1L,ppo,347,104.1,alpha,lower,0.7958478927612305 +illusion_1L,ppo,348,104.4,alpha,front,-0.2740967869758606 +illusion_1L,ppo,348,104.4,alpha,upper,-0.9051508903503418 +illusion_1L,ppo,348,104.4,alpha,lower,0.7747104167938232 +illusion_1L,ppo,349,104.7,alpha,front,-0.31538301706314087 +illusion_1L,ppo,349,104.7,alpha,upper,-0.8724505901336671 +illusion_1L,ppo,349,104.7,alpha,lower,0.7383208274841309 +illusion_1L,ppo,350,105.0,alpha,front,-0.2706484794616699 +illusion_1L,ppo,350,105.0,alpha,upper,-0.8946273326873779 +illusion_1L,ppo,350,105.0,alpha,lower,0.6666191816329956 +illusion_1L,ppo,351,105.3,alpha,front,-0.08861508965492249 +illusion_1L,ppo,351,105.3,alpha,upper,-0.9784990549087524 +illusion_1L,ppo,351,105.3,alpha,lower,0.545223593711853 +illusion_1L,ppo,352,105.6,alpha,front,0.1996229290962219 +illusion_1L,ppo,352,105.6,alpha,upper,-1.0915411710739136 +illusion_1L,ppo,352,105.6,alpha,lower,0.4088095426559448 +illusion_1L,ppo,353,105.9,alpha,front,0.4515174627304077 +illusion_1L,ppo,353,105.9,alpha,upper,-1.147397756576538 +illusion_1L,ppo,353,105.9,alpha,lower,0.3534613847732544 +illusion_1L,ppo,354,106.2,alpha,front,0.5785320997238159 +illusion_1L,ppo,354,106.2,alpha,upper,-1.1118016242980957 +illusion_1L,ppo,354,106.2,alpha,lower,0.4290088415145874 +illusion_1L,ppo,355,106.5,alpha,front,0.621906578540802 +illusion_1L,ppo,355,106.5,alpha,upper,-1.0447332859039307 +illusion_1L,ppo,355,106.5,alpha,lower,0.5776534080505371 +illusion_1L,ppo,356,106.8,alpha,front,0.6576375961303711 +illusion_1L,ppo,356,106.8,alpha,upper,-1.0005760788917542 +illusion_1L,ppo,356,106.8,alpha,lower,0.7295622825622559 +illusion_1L,ppo,357,107.1,alpha,front,0.7128760814666748 +illusion_1L,ppo,357,107.1,alpha,upper,-0.9834294319152833 +illusion_1L,ppo,357,107.1,alpha,lower,0.8702297210693359 +illusion_1L,ppo,358,107.4,alpha,front,0.7747560143470764 +illusion_1L,ppo,358,107.4,alpha,upper,-0.9913191795349121 +illusion_1L,ppo,358,107.4,alpha,lower,0.9995245933532715 +illusion_1L,ppo,359,107.7,alpha,front,0.8489362001419068 +illusion_1L,ppo,359,107.7,alpha,upper,-1.0308772921562195 +illusion_1L,ppo,359,107.7,alpha,lower,1.0892219543457031 +illusion_1L,ppo,360,108.0,alpha,front,0.9088389277458191 +illusion_1L,ppo,360,108.0,alpha,upper,-1.0842664241790771 +illusion_1L,ppo,360,108.0,alpha,lower,1.1244136095046997 +illusion_1L,ppo,361,108.3,alpha,front,0.9065898060798645 +illusion_1L,ppo,361,108.3,alpha,upper,-1.1008001565933228 +illusion_1L,ppo,361,108.3,alpha,lower,1.128748893737793 +illusion_1L,ppo,362,108.6,alpha,front,0.8237186670303345 +illusion_1L,ppo,362,108.6,alpha,upper,-1.0261342525482178 +illusion_1L,ppo,362,108.6,alpha,lower,1.1160211563110352 +illusion_1L,ppo,363,108.9,alpha,front,0.668937623500824 +illusion_1L,ppo,363,108.9,alpha,upper,-0.8699197769165039 +illusion_1L,ppo,363,108.9,alpha,lower,1.0466418266296387 +illusion_1L,ppo,364,109.2,alpha,front,0.4850664436817169 +illusion_1L,ppo,364,109.2,alpha,upper,-0.7097814083099365 +illusion_1L,ppo,364,109.2,alpha,lower,0.9023668766021729 +illusion_1L,ppo,365,109.5,alpha,front,0.31026357412338257 +illusion_1L,ppo,365,109.5,alpha,upper,-0.6046628952026367 +illusion_1L,ppo,365,109.5,alpha,lower,0.7480514049530029 +illusion_1L,ppo,366,109.8,alpha,front,0.1825411319732666 +illusion_1L,ppo,366,109.8,alpha,upper,-0.6144061088562012 +illusion_1L,ppo,366,109.8,alpha,lower,0.6751339435577393 +illusion_1L,ppo,367,110.1,alpha,front,0.12825246155261993 +illusion_1L,ppo,367,110.1,alpha,upper,-0.7422698736190796 +illusion_1L,ppo,367,110.1,alpha,lower,0.6898401975631714 +illusion_1L,ppo,368,110.4,alpha,front,0.08750711381435394 +illusion_1L,ppo,368,110.4,alpha,upper,-0.88226318359375 +illusion_1L,ppo,368,110.4,alpha,lower,0.7531883716583252 +illusion_1L,ppo,369,110.7,alpha,front,0.034030765295028687 +illusion_1L,ppo,369,110.7,alpha,upper,-0.979804277420044 +illusion_1L,ppo,369,110.7,alpha,lower,0.8143033981323242 +illusion_1L,ppo,370,111.0,alpha,front,-0.02880933880805969 +illusion_1L,ppo,370,111.0,alpha,upper,-1.0310763120651245 +illusion_1L,ppo,370,111.0,alpha,lower,0.835723876953125 +illusion_1L,ppo,371,111.3,alpha,front,-0.1048021912574768 +illusion_1L,ppo,371,111.3,alpha,upper,-1.0295496582984924 +illusion_1L,ppo,371,111.3,alpha,lower,0.811421275138855 +illusion_1L,ppo,372,111.6,alpha,front,-0.19106930494308472 +illusion_1L,ppo,372,111.6,alpha,upper,-0.980076789855957 +illusion_1L,ppo,372,111.6,alpha,lower,0.7743241786956787 +illusion_1L,ppo,373,111.9,alpha,front,-0.2705168128013611 +illusion_1L,ppo,373,111.9,alpha,upper,-0.9132107496261597 +illusion_1L,ppo,373,111.9,alpha,lower,0.7535586357116699 +illusion_1L,ppo,374,112.2,alpha,front,-0.31507885456085205 +illusion_1L,ppo,374,112.2,alpha,upper,-0.8703070878982545 +illusion_1L,ppo,374,112.2,alpha,lower,0.7321763038635254 +illusion_1L,ppo,375,112.5,alpha,front,-0.27971363067626953 +illusion_1L,ppo,375,112.5,alpha,upper,-0.8754620552062988 +illusion_1L,ppo,375,112.5,alpha,lower,0.6707034111022949 +illusion_1L,ppo,376,112.8,alpha,front,-0.11787623167037965 +illusion_1L,ppo,376,112.8,alpha,upper,-0.9375236034393312 +illusion_1L,ppo,376,112.8,alpha,lower,0.5506913661956787 +illusion_1L,ppo,377,113.1,alpha,front,0.15929999947547913 +illusion_1L,ppo,377,113.1,alpha,upper,-1.0421512126922607 +illusion_1L,ppo,377,113.1,alpha,lower,0.4166669845581054 +illusion_1L,ppo,378,113.4,alpha,front,0.4200819134712219 +illusion_1L,ppo,378,113.4,alpha,upper,-1.1118948459625244 +illusion_1L,ppo,378,113.4,alpha,lower,0.36076831817626953 +illusion_1L,ppo,379,113.7,alpha,front,0.5683377981185913 +illusion_1L,ppo,379,113.7,alpha,upper,-1.0993269681930542 +illusion_1L,ppo,379,113.7,alpha,lower,0.42530012130737305 +illusion_1L,ppo,380,114.0,alpha,front,0.6223156452178955 +illusion_1L,ppo,380,114.0,alpha,upper,-1.0448532104492188 +illusion_1L,ppo,380,114.0,alpha,lower,0.571963906288147 +illusion_1L,ppo,381,114.3,alpha,front,0.663296639919281 +illusion_1L,ppo,381,114.3,alpha,upper,-1.0129899978637695 +illusion_1L,ppo,381,114.3,alpha,lower,0.7362411022186279 +illusion_1L,ppo,382,114.6,alpha,front,0.7145768404006958 +illusion_1L,ppo,382,114.6,alpha,upper,-1.0043071508407593 +illusion_1L,ppo,382,114.6,alpha,lower,0.8854782581329346 +illusion_1L,ppo,383,114.9,alpha,front,0.776786744594574 +illusion_1L,ppo,383,114.9,alpha,upper,-1.005840539932251 +illusion_1L,ppo,383,114.9,alpha,lower,1.0060818791389465 +illusion_1L,ppo,384,115.2,alpha,front,0.8435878753662109 +illusion_1L,ppo,384,115.2,alpha,upper,-1.0272613167762756 +illusion_1L,ppo,384,115.2,alpha,lower,1.0875396728515625 +illusion_1L,ppo,385,115.5,alpha,front,0.8955169916152954 +illusion_1L,ppo,385,115.5,alpha,upper,-1.0697873830795288 +illusion_1L,ppo,385,115.5,alpha,lower,1.1229315996170044 +illusion_1L,ppo,386,115.8,alpha,front,0.9076418280601501 +illusion_1L,ppo,386,115.8,alpha,upper,-1.0833086967468262 +illusion_1L,ppo,386,115.8,alpha,lower,1.1210374236106873 +illusion_1L,ppo,387,116.1,alpha,front,0.8204344511032104 +illusion_1L,ppo,387,116.1,alpha,upper,-1.0011333227157593 +illusion_1L,ppo,387,116.1,alpha,lower,1.103510320186615 +illusion_1L,ppo,388,116.4,alpha,front,0.6685922741889954 +illusion_1L,ppo,388,116.4,alpha,upper,-0.8524909019470214 +illusion_1L,ppo,388,116.4,alpha,lower,1.038756012916565 +illusion_1L,ppo,389,116.7,alpha,front,0.48851591348648066 +illusion_1L,ppo,389,116.7,alpha,upper,-0.7124004364013672 +illusion_1L,ppo,389,116.7,alpha,lower,0.907102108001709 +illusion_1L,ppo,390,117.0,alpha,front,0.30413174629211426 +illusion_1L,ppo,390,117.0,alpha,upper,-0.6152892112731934 +illusion_1L,ppo,390,117.0,alpha,lower,0.7651094198226929 +illusion_1L,ppo,391,117.3,alpha,front,0.17979975044727325 +illusion_1L,ppo,391,117.3,alpha,upper,-0.6225523948669434 +illusion_1L,ppo,391,117.3,alpha,lower,0.6831520795822144 +illusion_1L,ppo,392,117.6,alpha,front,0.12149657309055328 +illusion_1L,ppo,392,117.6,alpha,upper,-0.7439823150634766 +illusion_1L,ppo,392,117.6,alpha,lower,0.6912026405334473 +illusion_1L,ppo,393,117.9,alpha,front,0.08183224499225616 +illusion_1L,ppo,393,117.9,alpha,upper,-0.8819171190261842 +illusion_1L,ppo,393,117.9,alpha,lower,0.7520751953125 +illusion_1L,ppo,394,118.2,alpha,front,0.029049396514892578 +illusion_1L,ppo,394,118.2,alpha,upper,-0.9766054153442383 +illusion_1L,ppo,394,118.2,alpha,lower,0.8066592216491698 +illusion_1L,ppo,395,118.5,alpha,front,-0.03305360674858093 +illusion_1L,ppo,395,118.5,alpha,upper,-1.0300164222717285 +illusion_1L,ppo,395,118.5,alpha,lower,0.8264695405960084 +illusion_1L,ppo,396,118.8,alpha,front,-0.1050545871257782 +illusion_1L,ppo,396,118.8,alpha,upper,-1.0416890382766724 +illusion_1L,ppo,396,118.8,alpha,lower,0.8100357055664062 +illusion_1L,ppo,397,119.1,alpha,front,-0.1890527606010437 +illusion_1L,ppo,397,119.1,alpha,upper,-1.0026475191116333 +illusion_1L,ppo,397,119.1,alpha,lower,0.7755213975906372 +illusion_1L,ppo,398,119.4,alpha,front,-0.27337753772735596 +illusion_1L,ppo,398,119.4,alpha,upper,-0.9318374395370483 +illusion_1L,ppo,398,119.4,alpha,lower,0.7421603202819824 +illusion_1L,ppo,399,119.7,alpha,front,-0.3229745626449585 +illusion_1L,ppo,399,119.7,alpha,upper,-0.8809621334075929 +illusion_1L,ppo,399,119.7,alpha,lower,0.7075634002685547 +illusion_1L,ppo,0,0.0,omega,front,0.004128711223602295 +illusion_1L,ppo,0,0.0,omega,upper,-0.005174829959869385 +illusion_1L,ppo,0,0.0,omega,lower,0.0025394558906555176 +illusion_1L,ppo,1,0.3,omega,front,0.003294954001903534 +illusion_1L,ppo,1,0.3,omega,upper,-0.008282539844512939 +illusion_1L,ppo,1,0.3,omega,lower,0.0009794557094573975 +illusion_1L,ppo,2,0.6,omega,front,0.0025689882040023804 +illusion_1L,ppo,2,0.6,omega,upper,-0.011259784102439881 +illusion_1L,ppo,2,0.6,omega,lower,0.0015486669540405273 +illusion_1L,ppo,3,0.9,omega,front,0.002121081054210663 +illusion_1L,ppo,3,0.9,omega,upper,-0.012509388327598571 +illusion_1L,ppo,3,0.9,omega,lower,0.0027338624000549316 +illusion_1L,ppo,4,1.2,omega,front,0.0016988377273082734 +illusion_1L,ppo,4,1.2,omega,upper,-0.012296182513236999 +illusion_1L,ppo,4,1.2,omega,lower,0.004196362495422363 +illusion_1L,ppo,5,1.5,omega,front,0.0012533028423786163 +illusion_1L,ppo,5,1.5,omega,upper,-0.011155720949172974 +illusion_1L,ppo,5,1.5,omega,lower,0.005676670074462891 +illusion_1L,ppo,6,1.8,omega,front,0.0007037842273712159 +illusion_1L,ppo,6,1.8,omega,upper,-0.0097750723361969 +illusion_1L,ppo,6,1.8,omega,lower,0.006702197790145874 +illusion_1L,ppo,7,2.1,omega,front,0.00027003467082977297 +illusion_1L,ppo,7,2.1,omega,upper,-0.008692138195037842 +illusion_1L,ppo,7,2.1,omega,lower,0.006889753341674805 +illusion_1L,ppo,8,2.4,omega,front,0.00028988629579544065 +illusion_1L,ppo,8,2.4,omega,upper,-0.008136594295501709 +illusion_1L,ppo,8,2.4,omega,lower,0.006564958095550537 +illusion_1L,ppo,9,2.7,omega,front,0.0010217778384685517 +illusion_1L,ppo,9,2.7,omega,upper,-0.00806736946105957 +illusion_1L,ppo,9,2.7,omega,lower,0.00619985580444336 +illusion_1L,ppo,10,3.0,omega,front,0.0024496163427829743 +illusion_1L,ppo,10,3.0,omega,upper,-0.008428184986114503 +illusion_1L,ppo,10,3.0,omega,lower,0.006158219575881958 +illusion_1L,ppo,11,3.3,omega,front,0.004218283593654633 +illusion_1L,ppo,11,3.3,omega,upper,-0.008964096307754518 +illusion_1L,ppo,11,3.3,omega,lower,0.006734869480133057 +illusion_1L,ppo,12,3.6,omega,front,0.005642961859703064 +illusion_1L,ppo,12,3.6,omega,upper,-0.009224710464477539 +illusion_1L,ppo,12,3.6,omega,lower,0.008058922290802002 +illusion_1L,ppo,13,3.9,omega,front,0.006448768377304077 +illusion_1L,ppo,13,3.9,omega,upper,-0.009251049757003785 +illusion_1L,ppo,13,3.9,omega,lower,0.009836367368698121 +illusion_1L,ppo,14,4.2,omega,front,0.006821967959403992 +illusion_1L,ppo,14,4.2,omega,upper,-0.009096033573150634 +illusion_1L,ppo,14,4.2,omega,lower,0.01147606134414673 +illusion_1L,ppo,15,4.5,omega,front,0.007162553668022156 +illusion_1L,ppo,15,4.5,omega,upper,-0.008849141597747802 +illusion_1L,ppo,15,4.5,omega,lower,0.012559635639190674 +illusion_1L,ppo,16,4.8,omega,front,0.007546033263206482 +illusion_1L,ppo,16,4.8,omega,upper,-0.008746609687805176 +illusion_1L,ppo,16,4.8,omega,lower,0.013067713975906373 +illusion_1L,ppo,17,5.1,omega,front,0.007883597612380982 +illusion_1L,ppo,17,5.1,omega,upper,-0.008874204158782959 +illusion_1L,ppo,17,5.1,omega,lower,0.013118666410446168 +illusion_1L,ppo,18,5.4,omega,front,0.007865432500839233 +illusion_1L,ppo,18,5.4,omega,upper,-0.00896153450012207 +illusion_1L,ppo,18,5.4,omega,lower,0.012702380418777467 +illusion_1L,ppo,19,5.7,omega,front,0.00701107144355774 +illusion_1L,ppo,19,5.7,omega,upper,-0.008554322719573975 +illusion_1L,ppo,19,5.7,omega,lower,0.011829330325126649 +illusion_1L,ppo,20,6.0,omega,front,0.005177245736122132 +illusion_1L,ppo,20,6.0,omega,upper,-0.007463244199752808 +illusion_1L,ppo,20,6.0,omega,lower,0.010522297620773316 +illusion_1L,ppo,21,6.3,omega,front,0.0029013672471046447 +illusion_1L,ppo,21,6.3,omega,upper,-0.006257458925247193 +illusion_1L,ppo,21,6.3,omega,lower,0.00875087857246399 +illusion_1L,ppo,22,6.6,omega,front,0.0010820713639259339 +illusion_1L,ppo,22,6.6,omega,upper,-0.006038949489593506 +illusion_1L,ppo,22,6.6,omega,lower,0.006715447902679444 +illusion_1L,ppo,23,6.9,omega,front,0.00036512404680252077 +illusion_1L,ppo,23,6.9,omega,upper,-0.007488143444061279 +illusion_1L,ppo,23,6.9,omega,lower,0.004841659069061279 +illusion_1L,ppo,24,7.2,omega,front,0.0005658245086669922 +illusion_1L,ppo,24,7.2,omega,upper,-0.010047824382781982 +illusion_1L,ppo,24,7.2,omega,lower,0.003746471405029297 +illusion_1L,ppo,25,7.5,omega,front,0.0008633923530578613 +illusion_1L,ppo,25,7.5,omega,upper,-0.01239278793334961 +illusion_1L,ppo,25,7.5,omega,lower,0.003721601963043213 +illusion_1L,ppo,26,7.8,omega,front,0.0007249036431312561 +illusion_1L,ppo,26,7.8,omega,upper,-0.013751775026321411 +illusion_1L,ppo,26,7.8,omega,lower,0.004287171363830567 +illusion_1L,ppo,27,8.1,omega,front,0.00020029067993164063 +illusion_1L,ppo,27,8.1,omega,upper,-0.0141354900598526 +illusion_1L,ppo,27,8.1,omega,lower,0.004721574783325196 +illusion_1L,ppo,28,8.4,omega,front,-0.0004301455616950989 +illusion_1L,ppo,28,8.4,omega,upper,-0.013756024837493898 +illusion_1L,ppo,28,8.4,omega,lower,0.004811979532241821 +illusion_1L,ppo,29,8.7,omega,front,-0.0008725950121879578 +illusion_1L,ppo,29,8.7,omega,upper,-0.012797636985778809 +illusion_1L,ppo,29,8.7,omega,lower,0.004751110076904297 +illusion_1L,ppo,30,9.0,omega,front,-0.0009906691312789918 +illusion_1L,ppo,30,9.0,omega,upper,-0.011430634260177612 +illusion_1L,ppo,30,9.0,omega,lower,0.004806540012359619 +illusion_1L,ppo,31,9.3,omega,front,-0.0007682400941848755 +illusion_1L,ppo,31,9.3,omega,upper,-0.009922661781311036 +illusion_1L,ppo,31,9.3,omega,lower,0.005115625858306885 +illusion_1L,ppo,32,9.6,omega,front,-4.2555034160614016e-05 +illusion_1L,ppo,32,9.6,omega,upper,-0.00869076132774353 +illusion_1L,ppo,32,9.6,omega,lower,0.0056104111671447755 +illusion_1L,ppo,33,9.9,omega,front,0.0014060327410697936 +illusion_1L,ppo,33,9.9,omega,upper,-0.008076941967010498 +illusion_1L,ppo,33,9.9,omega,lower,0.006139907836914062 +illusion_1L,ppo,34,10.2,omega,front,0.003322700560092926 +illusion_1L,ppo,34,10.2,omega,upper,-0.008008813858032227 +illusion_1L,ppo,34,10.2,omega,lower,0.006754286289215088 +illusion_1L,ppo,35,10.5,omega,front,0.005017005205154419 +illusion_1L,ppo,35,10.5,omega,upper,-0.008011865615844726 +illusion_1L,ppo,35,10.5,omega,lower,0.007847187519073486 +illusion_1L,ppo,36,10.8,omega,front,0.006075886487960816 +illusion_1L,ppo,36,10.8,omega,upper,-0.007913377285003662 +illusion_1L,ppo,36,10.8,omega,lower,0.009542202949523926 +illusion_1L,ppo,37,11.1,omega,front,0.0066662395000457765 +illusion_1L,ppo,37,11.1,omega,upper,-0.008080600500106812 +illusion_1L,ppo,37,11.1,omega,lower,0.011466363668441773 +illusion_1L,ppo,38,11.4,omega,front,0.007013704180717469 +illusion_1L,ppo,38,11.4,omega,upper,-0.008496019840240478 +illusion_1L,ppo,38,11.4,omega,lower,0.013080418109893799 +illusion_1L,ppo,39,11.7,omega,front,0.007466434836387635 +illusion_1L,ppo,39,11.7,omega,upper,-0.008896112442016602 +illusion_1L,ppo,39,11.7,omega,lower,0.014037502408027648 +illusion_1L,ppo,40,12.0,omega,front,0.007991185784339905 +illusion_1L,ppo,40,12.0,omega,upper,-0.009207205772399902 +illusion_1L,ppo,40,12.0,omega,lower,0.01424617350101471 +illusion_1L,ppo,41,12.3,omega,front,0.00831497848033905 +illusion_1L,ppo,41,12.3,omega,upper,-0.00939168691635132 +illusion_1L,ppo,41,12.3,omega,lower,0.013741275072097778 +illusion_1L,ppo,42,12.6,omega,front,0.008079905509948731 +illusion_1L,ppo,42,12.6,omega,upper,-0.009302222728729248 +illusion_1L,ppo,42,12.6,omega,lower,0.012542980313301087 +illusion_1L,ppo,43,12.9,omega,front,0.007075952887535096 +illusion_1L,ppo,43,12.9,omega,upper,-0.008936201333999635 +illusion_1L,ppo,43,12.9,omega,lower,0.010860568284988404 +illusion_1L,ppo,44,13.2,omega,front,0.0056494098901748654 +illusion_1L,ppo,44,13.2,omega,upper,-0.008536139726638794 +illusion_1L,ppo,44,13.2,omega,lower,0.008652915954589844 +illusion_1L,ppo,45,13.5,omega,front,0.003918724060058594 +illusion_1L,ppo,45,13.5,omega,upper,-0.008205642700195312 +illusion_1L,ppo,45,13.5,omega,lower,0.006348626613616943 +illusion_1L,ppo,46,13.8,omega,front,0.0022457003593444823 +illusion_1L,ppo,46,13.8,omega,upper,-0.008146734237670898 +illusion_1L,ppo,46,13.8,omega,lower,0.004811018705368042 +illusion_1L,ppo,47,14.1,omega,front,0.0012063720822334289 +illusion_1L,ppo,47,14.1,omega,upper,-0.009067639112472534 +illusion_1L,ppo,47,14.1,omega,lower,0.004490048885345459 +illusion_1L,ppo,48,14.4,omega,front,0.0009370073676109314 +illusion_1L,ppo,48,14.4,omega,upper,-0.010961398482322693 +illusion_1L,ppo,48,14.4,omega,lower,0.004979405403137207 +illusion_1L,ppo,49,14.7,omega,front,0.0007773202657699585 +illusion_1L,ppo,49,14.7,omega,upper,-0.012668810486793518 +illusion_1L,ppo,49,14.7,omega,lower,0.005542806386947632 +illusion_1L,ppo,50,15.0,omega,front,0.0003498592972755432 +illusion_1L,ppo,50,15.0,omega,upper,-0.01351611316204071 +illusion_1L,ppo,50,15.0,omega,lower,0.005678526163101196 +illusion_1L,ppo,51,15.3,omega,front,-0.00030452609062194826 +illusion_1L,ppo,51,15.3,omega,upper,-0.01350946307182312 +illusion_1L,ppo,51,15.3,omega,lower,0.0052840328216552735 +illusion_1L,ppo,52,15.6,omega,front,-0.0010577055811882019 +illusion_1L,ppo,52,15.6,omega,upper,-0.012696788907051088 +illusion_1L,ppo,52,15.6,omega,lower,0.00469465970993042 +illusion_1L,ppo,53,15.9,omega,front,-0.0017569047212600709 +illusion_1L,ppo,53,15.9,omega,upper,-0.011239449977874755 +illusion_1L,ppo,53,15.9,omega,lower,0.00440730094909668 +illusion_1L,ppo,54,16.2,omega,front,-0.002144383192062378 +illusion_1L,ppo,54,16.2,omega,upper,-0.009617156982421875 +illusion_1L,ppo,54,16.2,omega,lower,0.004691596031188965 +illusion_1L,ppo,55,16.5,omega,front,-0.0019116562604904175 +illusion_1L,ppo,55,16.5,omega,upper,-0.008303751945495605 +illusion_1L,ppo,55,16.5,omega,lower,0.005305538177490235 +illusion_1L,ppo,56,16.8,omega,front,-0.0007633191347122193 +illusion_1L,ppo,56,16.8,omega,upper,-0.007545206546783447 +illusion_1L,ppo,56,16.8,omega,lower,0.005716449022293091 +illusion_1L,ppo,57,17.1,omega,front,0.001142217367887497 +illusion_1L,ppo,57,17.1,omega,upper,-0.00739802360534668 +illusion_1L,ppo,57,17.1,omega,lower,0.00589970350265503 +illusion_1L,ppo,58,17.4,omega,front,0.0033400493860244753 +illusion_1L,ppo,58,17.4,omega,upper,-0.007897028923034668 +illusion_1L,ppo,58,17.4,omega,lower,0.006399770975112915 +illusion_1L,ppo,59,17.7,omega,front,0.005194125771522522 +illusion_1L,ppo,59,17.7,omega,upper,-0.008740603923797607 +illusion_1L,ppo,59,17.7,omega,lower,0.00764283299446106 +illusion_1L,ppo,60,18.0,omega,front,0.006140161156654358 +illusion_1L,ppo,60,18.0,omega,upper,-0.00915480375289917 +illusion_1L,ppo,60,18.0,omega,lower,0.009547725915908814 +illusion_1L,ppo,61,18.3,omega,front,0.006466363072395325 +illusion_1L,ppo,61,18.3,omega,upper,-0.009051017761230469 +illusion_1L,ppo,61,18.3,omega,lower,0.011486387252807618 +illusion_1L,ppo,62,18.6,omega,front,0.006777927875518799 +illusion_1L,ppo,62,18.6,omega,upper,-0.008896549940109253 +illusion_1L,ppo,62,18.6,omega,lower,0.012894996404647828 +illusion_1L,ppo,63,18.9,omega,front,0.007304840087890625 +illusion_1L,ppo,63,18.9,omega,upper,-0.008867664337158203 +illusion_1L,ppo,63,18.9,omega,lower,0.013548786640167237 +illusion_1L,ppo,64,19.2,omega,front,0.007897686958312989 +illusion_1L,ppo,64,19.2,omega,upper,-0.008953583240509034 +illusion_1L,ppo,64,19.2,omega,lower,0.013457780480384826 +illusion_1L,ppo,65,19.5,omega,front,0.00832369327545166 +illusion_1L,ppo,65,19.5,omega,upper,-0.009115774631500245 +illusion_1L,ppo,65,19.5,omega,lower,0.012727717757225037 +illusion_1L,ppo,66,19.8,omega,front,0.00804236114025116 +illusion_1L,ppo,66,19.8,omega,upper,-0.008994908332824706 +illusion_1L,ppo,66,19.8,omega,lower,0.011545217037200928 +illusion_1L,ppo,67,20.1,omega,front,0.0068612718582153325 +illusion_1L,ppo,67,20.1,omega,upper,-0.00842665195465088 +illusion_1L,ppo,67,20.1,omega,lower,0.009914451837539673 +illusion_1L,ppo,68,20.4,omega,front,0.005181270837783814 +illusion_1L,ppo,68,20.4,omega,upper,-0.00786555051803589 +illusion_1L,ppo,68,20.4,omega,lower,0.00785930871963501 +illusion_1L,ppo,69,20.7,omega,front,0.0033208525180816652 +illusion_1L,ppo,69,20.7,omega,upper,-0.007563097476959229 +illusion_1L,ppo,69,20.7,omega,lower,0.006207139492034912 +illusion_1L,ppo,70,21.0,omega,front,0.0017433319985866546 +illusion_1L,ppo,70,21.0,omega,upper,-0.007829117774963378 +illusion_1L,ppo,70,21.0,omega,lower,0.005591609477996826 +illusion_1L,ppo,71,21.3,omega,front,0.0009734523296356201 +illusion_1L,ppo,71,21.3,omega,upper,-0.00914900541305542 +illusion_1L,ppo,71,21.3,omega,lower,0.005813659429550171 +illusion_1L,ppo,72,21.6,omega,front,0.0007371097803115845 +illusion_1L,ppo,72,21.6,omega,upper,-0.010974834561347962 +illusion_1L,ppo,72,21.6,omega,lower,0.00631658673286438 +illusion_1L,ppo,73,21.9,omega,front,0.00047216206789016727 +illusion_1L,ppo,73,21.9,omega,upper,-0.012330639958381653 +illusion_1L,ppo,73,21.9,omega,lower,0.006594483852386475 +illusion_1L,ppo,74,22.2,omega,front,-1.5162527561187745e-05 +illusion_1L,ppo,74,22.2,omega,upper,-0.01286026120185852 +illusion_1L,ppo,74,22.2,omega,lower,0.006330937147140503 +illusion_1L,ppo,75,22.5,omega,front,-0.0007326167821884156 +illusion_1L,ppo,75,22.5,omega,upper,-0.012560788989067078 +illusion_1L,ppo,75,22.5,omega,lower,0.005632666349411011 +illusion_1L,ppo,76,22.8,omega,front,-0.0015300801396369934 +illusion_1L,ppo,76,22.8,omega,upper,-0.011588584184646606 +illusion_1L,ppo,76,22.8,omega,lower,0.005027236938476563 +illusion_1L,ppo,77,23.1,omega,front,-0.002181180119514465 +illusion_1L,ppo,77,23.1,omega,upper,-0.010239768028259278 +illusion_1L,ppo,77,23.1,omega,lower,0.004949102401733399 +illusion_1L,ppo,78,23.4,omega,front,-0.002452036738395691 +illusion_1L,ppo,78,23.4,omega,upper,-0.008956518173217774 +illusion_1L,ppo,78,23.4,omega,lower,0.005272719860076904 +illusion_1L,ppo,79,23.7,omega,front,-0.0019024205207824707 +illusion_1L,ppo,79,23.7,omega,upper,-0.008119020462036133 +illusion_1L,ppo,79,23.7,omega,lower,0.005464820861816406 +illusion_1L,ppo,80,24.0,omega,front,-0.0001969665288925171 +illusion_1L,ppo,80,24.0,omega,upper,-0.007914946079254151 +illusion_1L,ppo,80,24.0,omega,lower,0.005222616195678711 +illusion_1L,ppo,81,24.3,omega,front,0.00220614492893219 +illusion_1L,ppo,81,24.3,omega,upper,-0.008291096687316894 +illusion_1L,ppo,81,24.3,omega,lower,0.005024724006652832 +illusion_1L,ppo,82,24.6,omega,front,0.004476584196090698 +illusion_1L,ppo,82,24.6,omega,upper,-0.009031004905700683 +illusion_1L,ppo,82,24.6,omega,lower,0.0055099761486053465 +illusion_1L,ppo,83,24.9,omega,front,0.005911442041397095 +illusion_1L,ppo,83,24.9,omega,upper,-0.00959122657775879 +illusion_1L,ppo,83,24.9,omega,lower,0.006961361169815064 +illusion_1L,ppo,84,25.2,omega,front,0.006486685276031494 +illusion_1L,ppo,84,25.2,omega,upper,-0.009641983509063722 +illusion_1L,ppo,84,25.2,omega,lower,0.008974945545196534 +illusion_1L,ppo,85,25.5,omega,front,0.006825525164604187 +illusion_1L,ppo,85,25.5,omega,upper,-0.00946758508682251 +illusion_1L,ppo,85,25.5,omega,lower,0.010821366310119629 +illusion_1L,ppo,86,25.8,omega,front,0.007211489677429199 +illusion_1L,ppo,86,25.8,omega,upper,-0.009268546104431152 +illusion_1L,ppo,86,25.8,omega,lower,0.012141979336738587 +illusion_1L,ppo,87,26.1,omega,front,0.007789082527160645 +illusion_1L,ppo,87,26.1,omega,upper,-0.009212490320205689 +illusion_1L,ppo,87,26.1,omega,lower,0.01286047875881195 +illusion_1L,ppo,88,26.4,omega,front,0.008447380065917968 +illusion_1L,ppo,88,26.4,omega,upper,-0.009343767166137695 +illusion_1L,ppo,88,26.4,omega,lower,0.012960020303726196 +illusion_1L,ppo,89,26.7,omega,front,0.008650745153427125 +illusion_1L,ppo,89,26.7,omega,upper,-0.009316978454589843 +illusion_1L,ppo,89,26.7,omega,lower,0.012486572265625 +illusion_1L,ppo,90,27.0,omega,front,0.007916586399078369 +illusion_1L,ppo,90,27.0,omega,upper,-0.008648266792297363 +illusion_1L,ppo,90,27.0,omega,lower,0.011458601951599121 +illusion_1L,ppo,91,27.3,omega,front,0.006392413377761841 +illusion_1L,ppo,91,27.3,omega,upper,-0.007726664543151855 +illusion_1L,ppo,91,27.3,omega,lower,0.009903204441070557 +illusion_1L,ppo,92,27.6,omega,front,0.0046351271867752075 +illusion_1L,ppo,92,27.6,omega,upper,-0.007193975448608399 +illusion_1L,ppo,92,27.6,omega,lower,0.008023736476898193 +illusion_1L,ppo,93,27.9,omega,front,0.0027819284796714782 +illusion_1L,ppo,93,27.9,omega,upper,-0.006957178115844727 +illusion_1L,ppo,93,27.9,omega,lower,0.006652060747146606 +illusion_1L,ppo,94,28.2,omega,front,0.0014341941475868225 +illusion_1L,ppo,94,28.2,omega,upper,-0.007486162185668946 +illusion_1L,ppo,94,28.2,omega,lower,0.006187222003936768 +illusion_1L,ppo,95,28.5,omega,front,0.0008570148050785065 +illusion_1L,ppo,95,28.5,omega,upper,-0.009028753042221069 +illusion_1L,ppo,95,28.5,omega,lower,0.006450692415237427 +illusion_1L,ppo,96,28.8,omega,front,0.0005542859435081482 +illusion_1L,ppo,96,28.8,omega,upper,-0.01066268801689148 +illusion_1L,ppo,96,28.8,omega,lower,0.006927784681320191 +illusion_1L,ppo,97,29.1,omega,front,0.00012858182191848754 +illusion_1L,ppo,97,29.1,omega,upper,-0.011690797805786133 +illusion_1L,ppo,97,29.1,omega,lower,0.007055610418319702 +illusion_1L,ppo,98,29.4,omega,front,-0.0005198782682418824 +illusion_1L,ppo,98,29.4,omega,upper,-0.012049866318702697 +illusion_1L,ppo,98,29.4,omega,lower,0.006668484210968018 +illusion_1L,ppo,99,29.7,omega,front,-0.001294422149658203 +illusion_1L,ppo,99,29.7,omega,upper,-0.011807619333267213 +illusion_1L,ppo,99,29.7,omega,lower,0.00605562686920166 +illusion_1L,ppo,100,30.0,omega,front,-0.002087677717208862 +illusion_1L,ppo,100,30.0,omega,upper,-0.011013973951339722 +illusion_1L,ppo,100,30.0,omega,lower,0.005584113597869873 +illusion_1L,ppo,101,30.3,omega,front,-0.002728402614593506 +illusion_1L,ppo,101,30.3,omega,upper,-0.00993920087814331 +illusion_1L,ppo,101,30.3,omega,lower,0.0054360246658325196 +illusion_1L,ppo,102,30.6,omega,front,-0.0028158068656921388 +illusion_1L,ppo,102,30.6,omega,upper,-0.009064850807189941 +illusion_1L,ppo,102,30.6,omega,lower,0.005443675518035889 +illusion_1L,ppo,103,30.9,omega,front,-0.00175246000289917 +illusion_1L,ppo,103,30.9,omega,upper,-0.008703538179397584 +illusion_1L,ppo,103,30.9,omega,lower,0.005114607810974121 +illusion_1L,ppo,104,31.2,omega,front,0.0005244475603103638 +illusion_1L,ppo,104,31.2,omega,upper,-0.008848663568496704 +illusion_1L,ppo,104,31.2,omega,lower,0.004398928880691528 +illusion_1L,ppo,105,31.5,omega,front,0.0031731083989143373 +illusion_1L,ppo,105,31.5,omega,upper,-0.009302657842636109 +illusion_1L,ppo,105,31.5,omega,lower,0.00408612608909607 +illusion_1L,ppo,106,31.8,omega,front,0.005272874236106873 +illusion_1L,ppo,106,31.8,omega,upper,-0.00980194926261902 +illusion_1L,ppo,106,31.8,omega,lower,0.004868009090423584 +illusion_1L,ppo,107,32.1,omega,front,0.00632325291633606 +illusion_1L,ppo,107,32.1,omega,upper,-0.009888274669647217 +illusion_1L,ppo,107,32.1,omega,lower,0.006691107749938965 +illusion_1L,ppo,108,32.4,omega,front,0.006659007072448731 +illusion_1L,ppo,108,32.4,omega,upper,-0.009618560075759888 +illusion_1L,ppo,108,32.4,omega,lower,0.008827221393585206 +illusion_1L,ppo,109,32.7,omega,front,0.006921288967132569 +illusion_1L,ppo,109,32.7,omega,upper,-0.009381377696990966 +illusion_1L,ppo,109,32.7,omega,lower,0.010709887742996216 +illusion_1L,ppo,110,33.0,omega,front,0.007413539886474609 +illusion_1L,ppo,110,33.0,omega,upper,-0.009312642812728882 +illusion_1L,ppo,110,33.0,omega,lower,0.012129233479499818 +illusion_1L,ppo,111,33.3,omega,front,0.008084418177604675 +illusion_1L,ppo,111,33.3,omega,upper,-0.009413789510726928 +illusion_1L,ppo,111,33.3,omega,lower,0.01294039249420166 +illusion_1L,ppo,112,33.6,omega,front,0.008737611770629884 +illusion_1L,ppo,112,33.6,omega,upper,-0.009640285968780518 +illusion_1L,ppo,112,33.6,omega,lower,0.01301871657371521 +illusion_1L,ppo,113,33.9,omega,front,0.008811653256416321 +illusion_1L,ppo,113,33.9,omega,upper,-0.00961925506591797 +illusion_1L,ppo,113,33.9,omega,lower,0.012587805986404419 +illusion_1L,ppo,114,34.2,omega,front,0.007987272739410401 +illusion_1L,ppo,114,34.2,omega,upper,-0.008908076286315918 +illusion_1L,ppo,114,34.2,omega,lower,0.011635475158691407 +illusion_1L,ppo,115,34.5,omega,front,0.006381788849830628 +illusion_1L,ppo,115,34.5,omega,upper,-0.007805912494659424 +illusion_1L,ppo,115,34.5,omega,lower,0.010080278515815735 +illusion_1L,ppo,116,34.8,omega,front,0.004569218456745148 +illusion_1L,ppo,116,34.8,omega,upper,-0.0070234894752502445 +illusion_1L,ppo,116,34.8,omega,lower,0.008087254762649536 +illusion_1L,ppo,117,35.1,omega,front,0.0026947245001792907 +illusion_1L,ppo,117,35.1,omega,upper,-0.006647837162017822 +illusion_1L,ppo,117,35.1,omega,lower,0.00660024642944336 +illusion_1L,ppo,118,35.4,omega,front,0.0014290519058704377 +illusion_1L,ppo,118,35.4,omega,upper,-0.007213306427001953 +illusion_1L,ppo,118,35.4,omega,lower,0.006125223636627197 +illusion_1L,ppo,119,35.7,omega,front,0.0008995945751667023 +illusion_1L,ppo,119,35.7,omega,upper,-0.008773316144943238 +illusion_1L,ppo,119,35.7,omega,lower,0.0064482450485229496 +illusion_1L,ppo,120,36.0,omega,front,0.0005754849314689636 +illusion_1L,ppo,120,36.0,omega,upper,-0.01036913275718689 +illusion_1L,ppo,120,36.0,omega,lower,0.007031381130218506 +illusion_1L,ppo,121,36.3,omega,front,0.00012115597724914551 +illusion_1L,ppo,121,36.3,omega,upper,-0.011418288946151734 +illusion_1L,ppo,121,36.3,omega,lower,0.007331953048706055 +illusion_1L,ppo,122,36.6,omega,front,-0.0005268087983131409 +illusion_1L,ppo,122,36.6,omega,upper,-0.011855669021606445 +illusion_1L,ppo,122,36.6,omega,lower,0.007099301815032959 +illusion_1L,ppo,123,36.9,omega,front,-0.0013278749585151673 +illusion_1L,ppo,123,36.9,omega,upper,-0.011678045988082886 +illusion_1L,ppo,123,36.9,omega,lower,0.006549818515777588 +illusion_1L,ppo,124,37.2,omega,front,-0.0021639108657836915 +illusion_1L,ppo,124,37.2,omega,upper,-0.010930461883544922 +illusion_1L,ppo,124,37.2,omega,lower,0.006111772060394287 +illusion_1L,ppo,125,37.5,omega,front,-0.002844569683074951 +illusion_1L,ppo,125,37.5,omega,upper,-0.009872171878814697 +illusion_1L,ppo,125,37.5,omega,lower,0.0059390425682067875 +illusion_1L,ppo,126,37.8,omega,front,-0.0029823976755142213 +illusion_1L,ppo,126,37.8,omega,upper,-0.008968610763549805 +illusion_1L,ppo,126,37.8,omega,lower,0.00582787036895752 +illusion_1L,ppo,127,38.1,omega,front,-0.0020541054010391234 +illusion_1L,ppo,127,38.1,omega,upper,-0.008584461212158204 +illusion_1L,ppo,127,38.1,omega,lower,0.005374820232391358 +illusion_1L,ppo,128,38.4,omega,front,0.0001261010766029358 +illusion_1L,ppo,128,38.4,omega,upper,-0.008817195892333984 +illusion_1L,ppo,128,38.4,omega,lower,0.004518909454345703 +illusion_1L,ppo,129,38.7,omega,front,0.00282920777797699 +illusion_1L,ppo,129,38.7,omega,upper,-0.009408292770385742 +illusion_1L,ppo,129,38.7,omega,lower,0.003995554447174072 +illusion_1L,ppo,130,39.0,omega,front,0.005058770775794983 +illusion_1L,ppo,130,39.0,omega,upper,-0.009996932744979859 +illusion_1L,ppo,130,39.0,omega,lower,0.004510434865951539 +illusion_1L,ppo,131,39.3,omega,front,0.006183253526687622 +illusion_1L,ppo,131,39.3,omega,upper,-0.010154801607131959 +illusion_1L,ppo,131,39.3,omega,lower,0.006110596656799317 +illusion_1L,ppo,132,39.6,omega,front,0.0065769368410110475 +illusion_1L,ppo,132,39.6,omega,upper,-0.009933927059173585 +illusion_1L,ppo,132,39.6,omega,lower,0.008132700920104981 +illusion_1L,ppo,133,39.9,omega,front,0.006899363994598388 +illusion_1L,ppo,133,39.9,omega,upper,-0.009721332788467407 +illusion_1L,ppo,133,39.9,omega,lower,0.009918160438537597 +illusion_1L,ppo,134,40.2,omega,front,0.007383757829666138 +illusion_1L,ppo,134,40.2,omega,upper,-0.009642875194549561 +illusion_1L,ppo,134,40.2,omega,lower,0.011260159015655517 +illusion_1L,ppo,135,40.5,omega,front,0.008042643070220947 +illusion_1L,ppo,135,40.5,omega,upper,-0.009739056825637818 +illusion_1L,ppo,135,40.5,omega,lower,0.012052222490310668 +illusion_1L,ppo,136,40.8,omega,front,0.008661375045776368 +illusion_1L,ppo,136,40.8,omega,upper,-0.009986793994903565 +illusion_1L,ppo,136,40.8,omega,lower,0.012230919003486634 +illusion_1L,ppo,137,41.1,omega,front,0.008983004093170167 +illusion_1L,ppo,137,41.1,omega,upper,-0.010120781064033508 +illusion_1L,ppo,137,41.1,omega,lower,0.011866292953491212 +illusion_1L,ppo,138,41.4,omega,front,0.008341176509857178 +illusion_1L,ppo,138,41.4,omega,upper,-0.00954254984855652 +illusion_1L,ppo,138,41.4,omega,lower,0.011193856000900268 +illusion_1L,ppo,139,41.7,omega,front,0.0068704020977020264 +illusion_1L,ppo,139,41.7,omega,upper,-0.00839471459388733 +illusion_1L,ppo,139,41.7,omega,lower,0.010058660507202149 +illusion_1L,ppo,140,42.0,omega,front,0.005066896677017212 +illusion_1L,ppo,140,42.0,omega,upper,-0.007397112846374512 +illusion_1L,ppo,140,42.0,omega,lower,0.00840200662612915 +illusion_1L,ppo,141,42.3,omega,front,0.003200192749500275 +illusion_1L,ppo,141,42.3,omega,upper,-0.006695919036865235 +illusion_1L,ppo,141,42.3,omega,lower,0.006991519927978516 +illusion_1L,ppo,142,42.6,omega,front,0.0017836703360080718 +illusion_1L,ppo,142,42.6,omega,upper,-0.006741461753845215 +illusion_1L,ppo,142,42.6,omega,lower,0.006454565525054932 +illusion_1L,ppo,143,42.9,omega,front,0.0011064012348651886 +illusion_1L,ppo,143,42.9,omega,upper,-0.007923810482025147 +illusion_1L,ppo,143,42.9,omega,lower,0.006754374504089356 +illusion_1L,ppo,144,43.2,omega,front,0.0007225134968757629 +illusion_1L,ppo,144,43.2,omega,upper,-0.009422814846038819 +illusion_1L,ppo,144,43.2,omega,lower,0.007442654371261597 +illusion_1L,ppo,145,43.5,omega,front,0.000260469913482666 +illusion_1L,ppo,145,43.5,omega,upper,-0.010497357845306397 +illusion_1L,ppo,145,43.5,omega,lower,0.007988348007202148 +illusion_1L,ppo,146,43.8,omega,front,-0.0003835597634315491 +illusion_1L,ppo,146,43.8,omega,upper,-0.011014200448989868 +illusion_1L,ppo,146,43.8,omega,lower,0.00805626630783081 +illusion_1L,ppo,147,44.1,omega,front,-0.0011879751086235047 +illusion_1L,ppo,147,44.1,omega,upper,-0.010922195911407471 +illusion_1L,ppo,147,44.1,omega,lower,0.007684934139251709 +illusion_1L,ppo,148,44.4,omega,front,-0.002061712145805359 +illusion_1L,ppo,148,44.4,omega,upper,-0.010229982137680053 +illusion_1L,ppo,148,44.4,omega,lower,0.00723088264465332 +illusion_1L,ppo,149,44.7,omega,front,-0.0028669708967208863 +illusion_1L,ppo,149,44.7,omega,upper,-0.009230009317398072 +illusion_1L,ppo,149,44.7,omega,lower,0.006967335939407349 +illusion_1L,ppo,150,45.0,omega,front,-0.0032748496532440186 +illusion_1L,ppo,150,45.0,omega,upper,-0.008424186706542968 +illusion_1L,ppo,150,45.0,omega,lower,0.006781008243560791 +illusion_1L,ppo,151,45.3,omega,front,-0.002726770043373108 +illusion_1L,ppo,151,45.3,omega,upper,-0.008185527324676515 +illusion_1L,ppo,151,45.3,omega,lower,0.006231832504272461 +illusion_1L,ppo,152,45.6,omega,front,-0.0008266288042068482 +illusion_1L,ppo,152,45.6,omega,upper,-0.008647055625915527 +illusion_1L,ppo,152,45.6,omega,lower,0.005124448537826538 +illusion_1L,ppo,153,45.9,omega,front,0.001873244196176529 +illusion_1L,ppo,153,45.9,omega,upper,-0.009557293653488159 +illusion_1L,ppo,153,45.9,omega,lower,0.0041233420372009276 +illusion_1L,ppo,154,46.2,omega,front,0.004347601532936097 +illusion_1L,ppo,154,46.2,omega,upper,-0.010407288074493409 +illusion_1L,ppo,154,46.2,omega,lower,0.003991515636444092 +illusion_1L,ppo,155,46.5,omega,front,0.005797209739685059 +illusion_1L,ppo,155,46.5,omega,upper,-0.010685893297195435 +illusion_1L,ppo,155,46.5,omega,lower,0.004920076131820679 +illusion_1L,ppo,156,46.8,omega,front,0.006343727707862854 +illusion_1L,ppo,156,46.8,omega,upper,-0.010440654754638672 +illusion_1L,ppo,156,46.8,omega,lower,0.00648343563079834 +illusion_1L,ppo,157,47.1,omega,front,0.006742504239082336 +illusion_1L,ppo,157,47.1,omega,upper,-0.010207226276397705 +illusion_1L,ppo,157,47.1,omega,lower,0.008051958084106445 +illusion_1L,ppo,158,47.4,omega,front,0.007240217328071594 +illusion_1L,ppo,158,47.4,omega,upper,-0.010101059675216675 +illusion_1L,ppo,158,47.4,omega,lower,0.009386363029479981 +illusion_1L,ppo,159,47.7,omega,front,0.007894800901412964 +illusion_1L,ppo,159,47.7,omega,upper,-0.01011321783065796 +illusion_1L,ppo,159,47.7,omega,lower,0.010357565879821777 +illusion_1L,ppo,160,48.0,omega,front,0.008617255091667176 +illusion_1L,ppo,160,48.0,omega,upper,-0.01035987138748169 +illusion_1L,ppo,160,48.0,omega,lower,0.010892974138259888 +illusion_1L,ppo,161,48.3,omega,front,0.009083073139190673 +illusion_1L,ppo,161,48.3,omega,upper,-0.010672229528427125 +illusion_1L,ppo,161,48.3,omega,lower,0.011105818748474121 +illusion_1L,ppo,162,48.6,omega,front,0.008724387288093566 +illusion_1L,ppo,162,48.6,omega,upper,-0.010337850451469422 +illusion_1L,ppo,162,48.6,omega,lower,0.011054190397262574 +illusion_1L,ppo,163,48.9,omega,front,0.007497145533561706 +illusion_1L,ppo,163,48.9,omega,upper,-0.009089868068695068 +illusion_1L,ppo,163,48.9,omega,lower,0.01063984990119934 +illusion_1L,ppo,164,49.2,omega,front,0.005847925543785095 +illusion_1L,ppo,164,49.2,omega,upper,-0.007714060544967652 +illusion_1L,ppo,164,49.2,omega,lower,0.009495195150375366 +illusion_1L,ppo,165,49.5,omega,front,0.00398079127073288 +illusion_1L,ppo,165,49.5,omega,upper,-0.006666313409805298 +illusion_1L,ppo,165,49.5,omega,lower,0.00811210036277771 +illusion_1L,ppo,166,49.8,omega,front,0.002404842972755432 +illusion_1L,ppo,166,49.8,omega,upper,-0.0061553120613098145 +illusion_1L,ppo,166,49.8,omega,lower,0.007088911533355713 +illusion_1L,ppo,167,50.1,omega,front,0.0014821550250053407 +illusion_1L,ppo,167,50.1,omega,upper,-0.006788963079452515 +illusion_1L,ppo,167,50.1,omega,lower,0.006848101615905762 +illusion_1L,ppo,168,50.4,omega,front,0.0010114143788814544 +illusion_1L,ppo,168,50.4,omega,upper,-0.00816448450088501 +illusion_1L,ppo,168,50.4,omega,lower,0.007347501516342163 +illusion_1L,ppo,169,50.7,omega,front,0.0005462834239006042 +illusion_1L,ppo,169,50.7,omega,upper,-0.00933975338935852 +illusion_1L,ppo,169,50.7,omega,lower,0.008051984310150147 +illusion_1L,ppo,170,51.0,omega,front,-4.835367202758789e-05 +illusion_1L,ppo,170,51.0,omega,upper,-0.009999959468841553 +illusion_1L,ppo,170,51.0,omega,lower,0.00841116189956665 +illusion_1L,ppo,171,51.3,omega,front,-0.0007631307840347291 +illusion_1L,ppo,171,51.3,omega,upper,-0.010204681158065797 +illusion_1L,ppo,171,51.3,omega,lower,0.008353879451751709 +illusion_1L,ppo,172,51.6,omega,front,-0.0015732640027999879 +illusion_1L,ppo,172,51.6,omega,upper,-0.009969793558120728 +illusion_1L,ppo,172,51.6,omega,lower,0.008087716102600099 +illusion_1L,ppo,173,51.9,omega,front,-0.0024635088443756103 +illusion_1L,ppo,173,51.9,omega,upper,-0.009316163063049316 +illusion_1L,ppo,173,51.9,omega,lower,0.007764379978179932 +illusion_1L,ppo,174,52.2,omega,front,-0.003195686936378479 +illusion_1L,ppo,174,52.2,omega,upper,-0.008628809452056884 +illusion_1L,ppo,174,52.2,omega,lower,0.007442770004272461 +illusion_1L,ppo,175,52.5,omega,front,-0.003252655267715454 +illusion_1L,ppo,175,52.5,omega,upper,-0.008460428714752197 +illusion_1L,ppo,175,52.5,omega,lower,0.00699765682220459 +illusion_1L,ppo,176,52.8,omega,front,-0.002107717990875244 +illusion_1L,ppo,176,52.8,omega,upper,-0.008947885036468506 +illusion_1L,ppo,176,52.8,omega,lower,0.006038565635681153 +illusion_1L,ppo,177,53.1,omega,front,0.0003672471642494202 +illusion_1L,ppo,177,53.1,omega,upper,-0.009884910583496094 +illusion_1L,ppo,177,53.1,omega,lower,0.0045760273933410645 +illusion_1L,ppo,178,53.4,omega,front,0.0032274773716926574 +illusion_1L,ppo,178,53.4,omega,upper,-0.010797874927520752 +illusion_1L,ppo,178,53.4,omega,lower,0.0035547125339508057 +illusion_1L,ppo,179,53.7,omega,front,0.005225508809089661 +illusion_1L,ppo,179,53.7,omega,upper,-0.011151173114776612 +illusion_1L,ppo,179,53.7,omega,lower,0.0038080120086669924 +illusion_1L,ppo,180,54.0,omega,front,0.006072808504104615 +illusion_1L,ppo,180,54.0,omega,upper,-0.01081258535385132 +illusion_1L,ppo,180,54.0,omega,lower,0.005060832500457764 +illusion_1L,ppo,181,54.3,omega,front,0.0064182388782501225 +illusion_1L,ppo,181,54.3,omega,upper,-0.010285696387290955 +illusion_1L,ppo,181,54.3,omega,lower,0.006551814079284668 +illusion_1L,ppo,182,54.6,omega,front,0.006842563152313233 +illusion_1L,ppo,182,54.6,omega,upper,-0.010020203590393066 +illusion_1L,ppo,182,54.6,omega,lower,0.0080110764503479 +illusion_1L,ppo,183,54.9,omega,front,0.007520004510879517 +illusion_1L,ppo,183,54.9,omega,upper,-0.010015997886657715 +illusion_1L,ppo,183,54.9,omega,lower,0.00942112922668457 +illusion_1L,ppo,184,55.2,omega,front,0.008196448683738708 +illusion_1L,ppo,184,55.2,omega,upper,-0.010134963393211365 +illusion_1L,ppo,184,55.2,omega,lower,0.01051730453968048 +illusion_1L,ppo,185,55.5,omega,front,0.008812916278839112 +illusion_1L,ppo,185,55.5,omega,upper,-0.01044420838356018 +illusion_1L,ppo,185,55.5,omega,lower,0.011091114282608032 +illusion_1L,ppo,186,55.8,omega,front,0.009135408997535706 +illusion_1L,ppo,186,55.8,omega,upper,-0.010788970589637757 +illusion_1L,ppo,186,55.8,omega,lower,0.011340717673301698 +illusion_1L,ppo,187,56.1,omega,front,0.008673306703567505 +illusion_1L,ppo,187,56.1,omega,upper,-0.010439203977584839 +illusion_1L,ppo,187,56.1,omega,lower,0.0114044588804245 +illusion_1L,ppo,188,56.4,omega,front,0.007269822955131531 +illusion_1L,ppo,188,56.4,omega,upper,-0.009024858474731445 +illusion_1L,ppo,188,56.4,omega,lower,0.010993690490722656 +illusion_1L,ppo,189,56.7,omega,front,0.005444282293319703 +illusion_1L,ppo,189,56.7,omega,upper,-0.00737323522567749 +illusion_1L,ppo,189,56.7,omega,lower,0.009756287336349487 +illusion_1L,ppo,190,57.0,omega,front,0.0036280018091201785 +illusion_1L,ppo,190,57.0,omega,upper,-0.006249384880065918 +illusion_1L,ppo,190,57.0,omega,lower,0.008168401718139649 +illusion_1L,ppo,191,57.3,omega,front,0.00216745525598526 +illusion_1L,ppo,191,57.3,omega,upper,-0.006014547348022461 +illusion_1L,ppo,191,57.3,omega,lower,0.007047543525695801 +illusion_1L,ppo,192,57.6,omega,front,0.0014065703749656677 +illusion_1L,ppo,192,57.6,omega,upper,-0.006918306350708008 +illusion_1L,ppo,192,57.6,omega,lower,0.006722193956375122 +illusion_1L,ppo,193,57.9,omega,front,0.0009717275202274322 +illusion_1L,ppo,193,57.9,omega,upper,-0.008299529552459717 +illusion_1L,ppo,193,57.9,omega,lower,0.00717322587966919 +illusion_1L,ppo,194,58.2,omega,front,0.0005139747262001038 +illusion_1L,ppo,194,58.2,omega,upper,-0.009488155841827392 +illusion_1L,ppo,194,58.2,omega,lower,0.007886056900024415 +illusion_1L,ppo,195,58.5,omega,front,-6.256073713302612e-05 +illusion_1L,ppo,195,58.5,omega,upper,-0.010214700698852539 +illusion_1L,ppo,195,58.5,omega,lower,0.008227353096008302 +illusion_1L,ppo,196,58.8,omega,front,-0.0007860380411148072 +illusion_1L,ppo,196,58.8,omega,upper,-0.010407335162162782 +illusion_1L,ppo,196,58.8,omega,lower,0.008058376312255859 +illusion_1L,ppo,197,59.1,omega,front,-0.0016057193279266357 +illusion_1L,ppo,197,59.1,omega,upper,-0.010176490545272827 +illusion_1L,ppo,197,59.1,omega,lower,0.0077374505996704104 +illusion_1L,ppo,198,59.4,omega,front,-0.0024435782432556154 +illusion_1L,ppo,198,59.4,omega,upper,-0.009648854732513428 +illusion_1L,ppo,198,59.4,omega,lower,0.007502398490905762 +illusion_1L,ppo,199,59.7,omega,front,-0.00309848427772522 +illusion_1L,ppo,199,59.7,omega,upper,-0.009055113792419434 +illusion_1L,ppo,199,59.7,omega,lower,0.00722765326499939 +illusion_1L,ppo,200,60.0,omega,front,-0.003097296953201294 +illusion_1L,ppo,200,60.0,omega,upper,-0.008843719959259033 +illusion_1L,ppo,200,60.0,omega,lower,0.0067166113853454595 +illusion_1L,ppo,201,60.3,omega,front,-0.0018724191188812256 +illusion_1L,ppo,201,60.3,omega,upper,-0.009282619953155517 +illusion_1L,ppo,201,60.3,omega,lower,0.005779423713684082 +illusion_1L,ppo,202,60.6,omega,front,0.0007024693489074707 +illusion_1L,ppo,202,60.6,omega,upper,-0.010228985548019409 +illusion_1L,ppo,202,60.6,omega,lower,0.004463422298431397 +illusion_1L,ppo,203,60.9,omega,front,0.0035340508818626406 +illusion_1L,ppo,203,60.9,omega,upper,-0.011007604598999023 +illusion_1L,ppo,203,60.9,omega,lower,0.0035474395751953127 +illusion_1L,ppo,204,61.2,omega,front,0.005419930219650268 +illusion_1L,ppo,204,61.2,omega,upper,-0.01108412504196167 +illusion_1L,ppo,204,61.2,omega,lower,0.0038756930828094485 +illusion_1L,ppo,205,61.5,omega,front,0.006175737977027893 +illusion_1L,ppo,205,61.5,omega,upper,-0.010608521699905395 +illusion_1L,ppo,205,61.5,omega,lower,0.005324996709823608 +illusion_1L,ppo,206,61.8,omega,front,0.00651134729385376 +illusion_1L,ppo,206,61.8,omega,upper,-0.010111383199691773 +illusion_1L,ppo,206,61.8,omega,lower,0.007024184465408326 +illusion_1L,ppo,207,62.1,omega,front,0.006910766959190369 +illusion_1L,ppo,207,62.1,omega,upper,-0.00981974720954895 +illusion_1L,ppo,207,62.1,omega,lower,0.008564255237579347 +illusion_1L,ppo,208,62.4,omega,front,0.007496422529220581 +illusion_1L,ppo,208,62.4,omega,upper,-0.009785867929458618 +illusion_1L,ppo,208,62.4,omega,lower,0.009963223934173584 +illusion_1L,ppo,209,62.7,omega,front,0.00820945143699646 +illusion_1L,ppo,209,62.7,omega,upper,-0.010036524534225464 +illusion_1L,ppo,209,62.7,omega,lower,0.011027106046676637 +illusion_1L,ppo,210,63.0,omega,front,0.008847293853759765 +illusion_1L,ppo,210,63.0,omega,upper,-0.010469112396240234 +illusion_1L,ppo,210,63.0,omega,lower,0.011500577330589295 +illusion_1L,ppo,211,63.3,omega,front,0.009126620292663574 +illusion_1L,ppo,211,63.3,omega,upper,-0.010781771540641786 +illusion_1L,ppo,211,63.3,omega,lower,0.011495273113250732 +illusion_1L,ppo,212,63.6,omega,front,0.008630069494247437 +illusion_1L,ppo,212,63.6,omega,upper,-0.010423246622085571 +illusion_1L,ppo,212,63.6,omega,lower,0.011341890096664429 +illusion_1L,ppo,213,63.9,omega,front,0.007281230688095093 +illusion_1L,ppo,213,63.9,omega,upper,-0.009153567552566529 +illusion_1L,ppo,213,63.9,omega,lower,0.010786767005920411 +illusion_1L,ppo,214,64.2,omega,front,0.005501695871353149 +illusion_1L,ppo,214,64.2,omega,upper,-0.007594511508941651 +illusion_1L,ppo,214,64.2,omega,lower,0.009437178373336793 +illusion_1L,ppo,215,64.5,omega,front,0.003638243079185486 +illusion_1L,ppo,215,64.5,omega,upper,-0.006394429206848145 +illusion_1L,ppo,215,64.5,omega,lower,0.007788527011871338 +illusion_1L,ppo,216,64.8,omega,front,0.002140127420425415 +illusion_1L,ppo,216,64.8,omega,upper,-0.006080863475799561 +illusion_1L,ppo,216,64.8,omega,lower,0.006787278652191162 +illusion_1L,ppo,217,65.1,omega,front,0.0013390208780765533 +illusion_1L,ppo,217,65.1,omega,upper,-0.007034022808074952 +illusion_1L,ppo,217,65.1,omega,lower,0.006723952293395996 +illusion_1L,ppo,218,65.4,omega,front,0.0009462504088878632 +illusion_1L,ppo,218,65.4,omega,upper,-0.008508825302124023 +illusion_1L,ppo,218,65.4,omega,lower,0.007245535850524902 +illusion_1L,ppo,219,65.7,omega,front,0.0004948773980140687 +illusion_1L,ppo,219,65.7,omega,upper,-0.009703810214996339 +illusion_1L,ppo,219,65.7,omega,lower,0.007922639846801758 +illusion_1L,ppo,220,66.0,omega,front,-8.766412734985352e-05 +illusion_1L,ppo,220,66.0,omega,upper,-0.010444586277008058 +illusion_1L,ppo,220,66.0,omega,lower,0.008279374837875367 +illusion_1L,ppo,221,66.3,omega,front,-0.0008290350437164306 +illusion_1L,ppo,221,66.3,omega,upper,-0.010634365677833558 +illusion_1L,ppo,221,66.3,omega,lower,0.008120584487915038 +illusion_1L,ppo,222,66.6,omega,front,-0.001690402626991272 +illusion_1L,ppo,222,66.6,omega,upper,-0.010230193734169007 +illusion_1L,ppo,222,66.6,omega,lower,0.007661062479019165 +illusion_1L,ppo,223,66.9,omega,front,-0.002529531121253967 +illusion_1L,ppo,223,66.9,omega,upper,-0.009508684873580933 +illusion_1L,ppo,223,66.9,omega,lower,0.007353323698043823 +illusion_1L,ppo,224,67.2,omega,front,-0.00311398983001709 +illusion_1L,ppo,224,67.2,omega,upper,-0.0088647198677063 +illusion_1L,ppo,224,67.2,omega,lower,0.007166457176208496 +illusion_1L,ppo,225,67.5,omega,front,-0.003038838505744934 +illusion_1L,ppo,225,67.5,omega,upper,-0.008618481159210205 +illusion_1L,ppo,225,67.5,omega,lower,0.0067087006568908696 +illusion_1L,ppo,226,67.8,omega,front,-0.001761874556541443 +illusion_1L,ppo,226,67.8,omega,upper,-0.00898630142211914 +illusion_1L,ppo,226,67.8,omega,lower,0.005698544979095459 +illusion_1L,ppo,227,68.1,omega,front,0.0008086740970611573 +illusion_1L,ppo,227,68.1,omega,upper,-0.009954296350479126 +illusion_1L,ppo,227,68.1,omega,lower,0.004422247409820557 +illusion_1L,ppo,228,68.4,omega,front,0.0035771211981773378 +illusion_1L,ppo,228,68.4,omega,upper,-0.010843530893325806 +illusion_1L,ppo,228,68.4,omega,lower,0.0036970114707946776 +illusion_1L,ppo,229,68.7,omega,front,0.005413022637367248 +illusion_1L,ppo,229,68.7,omega,upper,-0.011002777218818665 +illusion_1L,ppo,229,68.7,omega,lower,0.004083878993988037 +illusion_1L,ppo,230,69.0,omega,front,0.00614902913570404 +illusion_1L,ppo,230,69.0,omega,upper,-0.010549958944320679 +illusion_1L,ppo,230,69.0,omega,lower,0.005456550121307373 +illusion_1L,ppo,231,69.3,omega,front,0.006548930406570435 +illusion_1L,ppo,231,69.3,omega,upper,-0.010157946348190307 +illusion_1L,ppo,231,69.3,omega,lower,0.0071492898464202885 +illusion_1L,ppo,232,69.6,omega,front,0.0070112252235412596 +illusion_1L,ppo,232,69.6,omega,upper,-0.009995073080062866 +illusion_1L,ppo,232,69.6,omega,lower,0.008696335554122926 +illusion_1L,ppo,233,69.9,omega,front,0.007580797076225281 +illusion_1L,ppo,233,69.9,omega,upper,-0.009939718246459962 +illusion_1L,ppo,233,69.9,omega,lower,0.009966821670532226 +illusion_1L,ppo,234,70.2,omega,front,0.008299431204795838 +illusion_1L,ppo,234,70.2,omega,upper,-0.010129934549331665 +illusion_1L,ppo,234,70.2,omega,lower,0.010875185132026673 +illusion_1L,ppo,235,70.5,omega,front,0.008930290937423707 +illusion_1L,ppo,235,70.5,omega,upper,-0.010567894577980042 +illusion_1L,ppo,235,70.5,omega,lower,0.01135690212249756 +illusion_1L,ppo,236,70.8,omega,front,0.009136507511138916 +illusion_1L,ppo,236,70.8,omega,upper,-0.010786163806915284 +illusion_1L,ppo,236,70.8,omega,lower,0.01140925168991089 +illusion_1L,ppo,237,71.1,omega,front,0.008495907187461854 +illusion_1L,ppo,237,71.1,omega,upper,-0.010140256881713867 +illusion_1L,ppo,237,71.1,omega,lower,0.011188185811042787 +illusion_1L,ppo,238,71.4,omega,front,0.007021257877349854 +illusion_1L,ppo,238,71.4,omega,upper,-0.008713889122009278 +illusion_1L,ppo,238,71.4,omega,lower,0.010589947700500488 +illusion_1L,ppo,239,71.7,omega,front,0.005262929201126099 +illusion_1L,ppo,239,71.7,omega,upper,-0.007321028709411621 +illusion_1L,ppo,239,71.7,omega,lower,0.009304128885269165 +illusion_1L,ppo,240,72.0,omega,front,0.003427327275276184 +illusion_1L,ppo,240,72.0,omega,upper,-0.006287739276885987 +illusion_1L,ppo,240,72.0,omega,lower,0.007786920070648193 +illusion_1L,ppo,241,72.3,omega,front,0.001989406943321228 +illusion_1L,ppo,241,72.3,omega,upper,-0.006113623380661011 +illusion_1L,ppo,241,72.3,omega,lower,0.006854276657104493 +illusion_1L,ppo,242,72.6,omega,front,0.0012588185071945191 +illusion_1L,ppo,242,72.6,omega,upper,-0.00720942497253418 +illusion_1L,ppo,242,72.6,omega,lower,0.006867313385009766 +illusion_1L,ppo,243,72.9,omega,front,0.0008448463678359985 +illusion_1L,ppo,243,72.9,omega,upper,-0.008700186014175415 +illusion_1L,ppo,243,72.9,omega,lower,0.007423760890960694 +illusion_1L,ppo,244,73.2,omega,front,0.00035730123519897464 +illusion_1L,ppo,244,73.2,omega,upper,-0.009766921997070313 +illusion_1L,ppo,244,73.2,omega,lower,0.007974085807800292 +illusion_1L,ppo,245,73.5,omega,front,-0.00024108737707138062 +illusion_1L,ppo,245,73.5,omega,upper,-0.010377703905105591 +illusion_1L,ppo,245,73.5,omega,lower,0.008181798458099365 +illusion_1L,ppo,246,73.8,omega,front,-0.000946677029132843 +illusion_1L,ppo,246,73.8,omega,upper,-0.010562672019004822 +illusion_1L,ppo,246,73.8,omega,lower,0.008029571771621705 +illusion_1L,ppo,247,74.1,omega,front,-0.0017674696445465089 +illusion_1L,ppo,247,74.1,omega,upper,-0.010216680765151977 +illusion_1L,ppo,247,74.1,omega,lower,0.007662593126296997 +illusion_1L,ppo,248,74.4,omega,front,-0.0026244038343429567 +illusion_1L,ppo,248,74.4,omega,upper,-0.009494863748550415 +illusion_1L,ppo,248,74.4,omega,lower,0.007291970252990723 +illusion_1L,ppo,249,74.7,omega,front,-0.0031924885511398315 +illusion_1L,ppo,249,74.7,omega,upper,-0.008903383016586304 +illusion_1L,ppo,249,74.7,omega,lower,0.006997087001800537 +illusion_1L,ppo,250,75.0,omega,front,-0.002975679039955139 +illusion_1L,ppo,250,75.0,omega,upper,-0.008831052780151368 +illusion_1L,ppo,250,75.0,omega,lower,0.006491225957870483 +illusion_1L,ppo,251,75.3,omega,front,-0.001472107470035553 +illusion_1L,ppo,251,75.3,omega,upper,-0.009303942918777466 +illusion_1L,ppo,251,75.3,omega,lower,0.0053887152671813964 +illusion_1L,ppo,252,75.6,omega,front,0.0012213045358657837 +illusion_1L,ppo,252,75.6,omega,upper,-0.010183596611022949 +illusion_1L,ppo,252,75.6,omega,lower,0.004057760238647461 +illusion_1L,ppo,253,75.9,omega,front,0.003985362648963929 +illusion_1L,ppo,253,75.9,omega,upper,-0.010951946377754212 +illusion_1L,ppo,253,75.9,omega,lower,0.003502738475799561 +illusion_1L,ppo,254,76.2,omega,front,0.005674847364425659 +illusion_1L,ppo,254,76.2,omega,upper,-0.011038726568222046 +illusion_1L,ppo,254,76.2,omega,lower,0.00421062707901001 +illusion_1L,ppo,255,76.5,omega,front,0.006297457814216614 +illusion_1L,ppo,255,76.5,omega,upper,-0.010506832599639892 +illusion_1L,ppo,255,76.5,omega,lower,0.005724771022796631 +illusion_1L,ppo,256,76.8,omega,front,0.00659963607788086 +illusion_1L,ppo,256,76.8,omega,upper,-0.010019071102142334 +illusion_1L,ppo,256,76.8,omega,lower,0.007405507564544678 +illusion_1L,ppo,257,77.1,omega,front,0.00708883285522461 +illusion_1L,ppo,257,77.1,omega,upper,-0.009860593080520631 +illusion_1L,ppo,257,77.1,omega,lower,0.008987252712249757 +illusion_1L,ppo,258,77.4,omega,front,0.00762001633644104 +illusion_1L,ppo,258,77.4,omega,upper,-0.009831987619400025 +illusion_1L,ppo,258,77.4,omega,lower,0.010367882251739503 +illusion_1L,ppo,259,77.7,omega,front,0.008348150849342347 +illusion_1L,ppo,259,77.7,omega,upper,-0.00999767541885376 +illusion_1L,ppo,259,77.7,omega,lower,0.011235181093215942 +illusion_1L,ppo,260,78.0,omega,front,0.008947724103927612 +illusion_1L,ppo,260,78.0,omega,upper,-0.010411921739578247 +illusion_1L,ppo,260,78.0,omega,lower,0.01164521038532257 +illusion_1L,ppo,261,78.3,omega,front,0.009104814529418945 +illusion_1L,ppo,261,78.3,omega,upper,-0.010670896768569946 +illusion_1L,ppo,261,78.3,omega,lower,0.01173956573009491 +illusion_1L,ppo,262,78.6,omega,front,0.0083689284324646 +illusion_1L,ppo,262,78.6,omega,upper,-0.010012589693069458 +illusion_1L,ppo,262,78.6,omega,lower,0.011485110521316528 +illusion_1L,ppo,263,78.9,omega,front,0.006839276552200318 +illusion_1L,ppo,263,78.9,omega,upper,-0.008529150485992431 +illusion_1L,ppo,263,78.9,omega,lower,0.010660890340805054 +illusion_1L,ppo,264,79.2,omega,front,0.00500304639339447 +illusion_1L,ppo,264,79.2,omega,upper,-0.007144742012023926 +illusion_1L,ppo,264,79.2,omega,lower,0.009151105880737306 +illusion_1L,ppo,265,79.5,omega,front,0.0032042765617370608 +illusion_1L,ppo,265,79.5,omega,upper,-0.006231820583343506 +illusion_1L,ppo,265,79.5,omega,lower,0.00755876898765564 +illusion_1L,ppo,266,79.8,omega,front,0.0018026390671730041 +illusion_1L,ppo,266,79.8,omega,upper,-0.006223925352096558 +illusion_1L,ppo,266,79.8,omega,lower,0.006659245491027832 +illusion_1L,ppo,267,80.1,omega,front,0.0011567597091197968 +illusion_1L,ppo,267,80.1,omega,upper,-0.00741349220275879 +illusion_1L,ppo,267,80.1,omega,lower,0.006676734685897827 +illusion_1L,ppo,268,80.4,omega,front,0.0007853040099143982 +illusion_1L,ppo,268,80.4,omega,upper,-0.008942570686340332 +illusion_1L,ppo,268,80.4,omega,lower,0.0073372161388397215 +illusion_1L,ppo,269,80.7,omega,front,0.00032537817955017093 +illusion_1L,ppo,269,80.7,omega,upper,-0.010077391266822815 +illusion_1L,ppo,269,80.7,omega,lower,0.007973934412002564 +illusion_1L,ppo,270,81.0,omega,front,-0.0002927443385124207 +illusion_1L,ppo,270,81.0,omega,upper,-0.010668623447418214 +illusion_1L,ppo,270,81.0,omega,lower,0.00811237931251526 +illusion_1L,ppo,271,81.3,omega,front,-0.0010477840900421143 +illusion_1L,ppo,271,81.3,omega,upper,-0.010746049880981446 +illusion_1L,ppo,271,81.3,omega,lower,0.00782104253768921 +illusion_1L,ppo,272,81.6,omega,front,-0.001895405650138855 +illusion_1L,ppo,272,81.6,omega,upper,-0.010335065126419067 +illusion_1L,ppo,272,81.6,omega,lower,0.007430787086486816 +illusion_1L,ppo,273,81.9,omega,front,-0.002725985646247864 +illusion_1L,ppo,273,81.9,omega,upper,-0.00956815481185913 +illusion_1L,ppo,273,81.9,omega,lower,0.007117336988449097 +illusion_1L,ppo,274,82.2,omega,front,-0.0032049548625946046 +illusion_1L,ppo,274,82.2,omega,upper,-0.00889516830444336 +illusion_1L,ppo,274,82.2,omega,lower,0.006833887100219727 +illusion_1L,ppo,275,82.5,omega,front,-0.002812132239341736 +illusion_1L,ppo,275,82.5,omega,upper,-0.008774776458740235 +illusion_1L,ppo,275,82.5,omega,lower,0.006325615644454956 +illusion_1L,ppo,276,82.8,omega,front,-0.001070653796195984 +illusion_1L,ppo,276,82.8,omega,upper,-0.009303641319274903 +illusion_1L,ppo,276,82.8,omega,lower,0.005317084789276123 +illusion_1L,ppo,277,83.1,omega,front,0.0017118827998638154 +illusion_1L,ppo,277,83.1,omega,upper,-0.010189526081085205 +illusion_1L,ppo,277,83.1,omega,lower,0.0041272974014282225 +illusion_1L,ppo,278,83.4,omega,front,0.004289991557598114 +illusion_1L,ppo,278,83.4,omega,upper,-0.010809203386306762 +illusion_1L,ppo,278,83.4,omega,lower,0.003729853630065918 +illusion_1L,ppo,279,83.7,omega,front,0.0057771092653274535 +illusion_1L,ppo,279,83.7,omega,upper,-0.010786662101745606 +illusion_1L,ppo,279,83.7,omega,lower,0.004562171697616578 +illusion_1L,ppo,280,84.0,omega,front,0.006290284991264343 +illusion_1L,ppo,280,84.0,omega,upper,-0.010305613279342651 +illusion_1L,ppo,280,84.0,omega,lower,0.006138819456100464 +illusion_1L,ppo,281,84.3,omega,front,0.006623372435569763 +illusion_1L,ppo,281,84.3,omega,upper,-0.009920556545257569 +illusion_1L,ppo,281,84.3,omega,lower,0.007765107154846192 +illusion_1L,ppo,282,84.6,omega,front,0.0071157443523406985 +illusion_1L,ppo,282,84.6,omega,upper,-0.009815478324890136 +illusion_1L,ppo,282,84.6,omega,lower,0.00924343466758728 +illusion_1L,ppo,283,84.9,omega,front,0.007747716903686524 +illusion_1L,ppo,283,84.9,omega,upper,-0.009931485652923584 +illusion_1L,ppo,283,84.9,omega,lower,0.010462143421173097 +illusion_1L,ppo,284,85.2,omega,front,0.008427238464355469 +illusion_1L,ppo,284,85.2,omega,upper,-0.010251381397247315 +illusion_1L,ppo,284,85.2,omega,lower,0.011209619641304016 +illusion_1L,ppo,285,85.5,omega,front,0.009079741835594178 +illusion_1L,ppo,285,85.5,omega,upper,-0.010721327066421508 +illusion_1L,ppo,285,85.5,omega,lower,0.011377819776535035 +illusion_1L,ppo,286,85.8,omega,front,0.009039036631584167 +illusion_1L,ppo,286,85.8,omega,upper,-0.01079651951789856 +illusion_1L,ppo,286,85.8,omega,lower,0.011248619556427001 +illusion_1L,ppo,287,86.1,omega,front,0.008086819052696228 +illusion_1L,ppo,287,86.1,omega,upper,-0.009917244911193848 +illusion_1L,ppo,287,86.1,omega,lower,0.01087680459022522 +illusion_1L,ppo,288,86.4,omega,front,0.006490216851234436 +illusion_1L,ppo,288,86.4,omega,upper,-0.00842350959777832 +illusion_1L,ppo,288,86.4,omega,lower,0.00985891103744507 +illusion_1L,ppo,289,86.7,omega,front,0.004638986885547638 +illusion_1L,ppo,289,86.7,omega,upper,-0.007098543643951416 +illusion_1L,ppo,289,86.7,omega,lower,0.008338570594787598 +illusion_1L,ppo,290,87.0,omega,front,0.0028945744037628175 +illusion_1L,ppo,290,87.0,omega,upper,-0.006269173622131348 +illusion_1L,ppo,290,87.0,omega,lower,0.007036633491516113 +illusion_1L,ppo,291,87.3,omega,front,0.0017148357629776002 +illusion_1L,ppo,291,87.3,omega,upper,-0.006492879390716553 +illusion_1L,ppo,291,87.3,omega,lower,0.006577502489089966 +illusion_1L,ppo,292,87.6,omega,front,0.0011468957364559173 +illusion_1L,ppo,292,87.6,omega,upper,-0.007784556150436402 +illusion_1L,ppo,292,87.6,omega,lower,0.0069603872299194335 +illusion_1L,ppo,293,87.9,omega,front,0.0007710909843444824 +illusion_1L,ppo,293,87.9,omega,upper,-0.009169212579727174 +illusion_1L,ppo,293,87.9,omega,lower,0.007735768556594849 +illusion_1L,ppo,294,88.2,omega,front,0.0002465984225273132 +illusion_1L,ppo,294,88.2,omega,upper,-0.010066089630126953 +illusion_1L,ppo,294,88.2,omega,lower,0.008339519500732423 +illusion_1L,ppo,295,88.5,omega,front,-0.00043219685554504397 +illusion_1L,ppo,295,88.5,omega,upper,-0.010411885380744935 +illusion_1L,ppo,295,88.5,omega,lower,0.008459181785583495 +illusion_1L,ppo,296,88.8,omega,front,-0.0012323552370071412 +illusion_1L,ppo,296,88.8,omega,upper,-0.010214401483535767 +illusion_1L,ppo,296,88.8,omega,lower,0.008206963539123535 +illusion_1L,ppo,297,89.1,omega,front,-0.002113298773765564 +illusion_1L,ppo,297,89.1,omega,upper,-0.009548909664154052 +illusion_1L,ppo,297,89.1,omega,lower,0.007901653051376342 +illusion_1L,ppo,298,89.4,omega,front,-0.002916941046714783 +illusion_1L,ppo,298,89.4,omega,upper,-0.008707592487335205 +illusion_1L,ppo,298,89.4,omega,lower,0.0077267646789550785 +illusion_1L,ppo,299,89.7,omega,front,-0.0032905739545822143 +illusion_1L,ppo,299,89.7,omega,upper,-0.00817450761795044 +illusion_1L,ppo,299,89.7,omega,lower,0.007516095638275147 +illusion_1L,ppo,300,90.0,omega,front,-0.00271780788898468 +illusion_1L,ppo,300,90.0,omega,upper,-0.008273468017578126 +illusion_1L,ppo,300,90.0,omega,lower,0.0068551039695739745 +illusion_1L,ppo,301,90.3,omega,front,-0.000767008364200592 +illusion_1L,ppo,301,90.3,omega,upper,-0.009023716449737549 +illusion_1L,ppo,301,90.3,omega,lower,0.005576283931732178 +illusion_1L,ppo,302,90.6,omega,front,0.0019789339601993562 +illusion_1L,ppo,302,90.6,omega,upper,-0.010061032176017762 +illusion_1L,ppo,302,90.6,omega,lower,0.004294035434722901 +illusion_1L,ppo,303,90.9,omega,front,0.004377729296684265 +illusion_1L,ppo,303,90.9,omega,upper,-0.010772244930267334 +illusion_1L,ppo,303,90.9,omega,lower,0.00389837384223938 +illusion_1L,ppo,304,91.2,omega,front,0.005674096941947937 +illusion_1L,ppo,304,91.2,omega,upper,-0.010800343155860901 +illusion_1L,ppo,304,91.2,omega,lower,0.004647945165634155 +illusion_1L,ppo,305,91.5,omega,front,0.0061752617359161375 +illusion_1L,ppo,305,91.5,omega,upper,-0.010458139777183533 +illusion_1L,ppo,305,91.5,omega,lower,0.0059913170337677 +illusion_1L,ppo,306,91.8,omega,front,0.006607452630996704 +illusion_1L,ppo,306,91.8,omega,upper,-0.010274665951728821 +illusion_1L,ppo,306,91.8,omega,lower,0.007387353181838989 +illusion_1L,ppo,307,92.1,omega,front,0.007224804162979126 +illusion_1L,ppo,307,92.1,omega,upper,-0.010296645164489747 +illusion_1L,ppo,307,92.1,omega,lower,0.00866379976272583 +illusion_1L,ppo,308,92.4,omega,front,0.007894552946090698 +illusion_1L,ppo,308,92.4,omega,upper,-0.010410191416740417 +illusion_1L,ppo,308,92.4,omega,lower,0.009672755002975464 +illusion_1L,ppo,309,92.7,omega,front,0.008589927554130555 +illusion_1L,ppo,309,92.7,omega,upper,-0.010682120323181152 +illusion_1L,ppo,309,92.7,omega,lower,0.010253497362136842 +illusion_1L,ppo,310,93.0,omega,front,0.009095016717910766 +illusion_1L,ppo,310,93.0,omega,upper,-0.011047397255897522 +illusion_1L,ppo,310,93.0,omega,lower,0.01044467806816101 +illusion_1L,ppo,311,93.3,omega,front,0.008916726112365722 +illusion_1L,ppo,311,93.3,omega,upper,-0.01091952919960022 +illusion_1L,ppo,311,93.3,omega,lower,0.010487209558486938 +illusion_1L,ppo,312,93.6,omega,front,0.00779764473438263 +illusion_1L,ppo,312,93.6,omega,upper,-0.009771552085876465 +illusion_1L,ppo,312,93.6,omega,lower,0.010346418619155884 +illusion_1L,ppo,313,93.9,omega,front,0.00610617995262146 +illusion_1L,ppo,313,93.9,omega,upper,-0.008150161504745483 +illusion_1L,ppo,313,93.9,omega,lower,0.009639374017715455 +illusion_1L,ppo,314,94.2,omega,front,0.004272613525390625 +illusion_1L,ppo,314,94.2,omega,upper,-0.006844367980957031 +illusion_1L,ppo,314,94.2,omega,lower,0.008418982028961183 +illusion_1L,ppo,315,94.5,omega,front,0.0026969251036643984 +illusion_1L,ppo,315,94.5,omega,upper,-0.006139291524887085 +illusion_1L,ppo,315,94.5,omega,lower,0.007365987300872803 +illusion_1L,ppo,316,94.8,omega,front,0.0017077656090259553 +illusion_1L,ppo,316,94.8,omega,upper,-0.006511442661285401 +illusion_1L,ppo,316,94.8,omega,lower,0.006948640346527099 +illusion_1L,ppo,317,95.1,omega,front,0.0012001422047615052 +illusion_1L,ppo,317,95.1,omega,upper,-0.007684037685394288 +illusion_1L,ppo,317,95.1,omega,lower,0.0072644281387329104 +illusion_1L,ppo,318,95.4,omega,front,0.000756935179233551 +illusion_1L,ppo,318,95.4,omega,upper,-0.0087813401222229 +illusion_1L,ppo,318,95.4,omega,lower,0.00795785903930664 +illusion_1L,ppo,319,95.7,omega,front,0.00018675237894058227 +illusion_1L,ppo,319,95.7,omega,upper,-0.009454480409622193 +illusion_1L,ppo,319,95.7,omega,lower,0.008499207496643067 +illusion_1L,ppo,320,96.0,omega,front,-0.0005069622397422791 +illusion_1L,ppo,320,96.0,omega,upper,-0.009692077636718751 +illusion_1L,ppo,320,96.0,omega,lower,0.00865576982498169 +illusion_1L,ppo,321,96.3,omega,front,-0.0012885114550590516 +illusion_1L,ppo,321,96.3,omega,upper,-0.00953855037689209 +illusion_1L,ppo,321,96.3,omega,lower,0.008566303253173828 +illusion_1L,ppo,322,96.6,omega,front,-0.002151439189910889 +illusion_1L,ppo,322,96.6,omega,upper,-0.00905205488204956 +illusion_1L,ppo,322,96.6,omega,lower,0.008408743143081666 +illusion_1L,ppo,323,96.9,omega,front,-0.0029639315605163577 +illusion_1L,ppo,323,96.9,omega,upper,-0.008460116386413575 +illusion_1L,ppo,323,96.9,omega,lower,0.008192064762115479 +illusion_1L,ppo,324,97.2,omega,front,-0.0033214765787124637 +illusion_1L,ppo,324,97.2,omega,upper,-0.008233219385147095 +illusion_1L,ppo,324,97.2,omega,lower,0.007753353118896485 +illusion_1L,ppo,325,97.5,omega,front,-0.0026438379287719725 +illusion_1L,ppo,325,97.5,omega,upper,-0.008650598526000976 +illusion_1L,ppo,325,97.5,omega,lower,0.00684321403503418 +illusion_1L,ppo,326,97.8,omega,front,-0.0005550855398178101 +illusion_1L,ppo,326,97.8,omega,upper,-0.009646627902984619 +illusion_1L,ppo,326,97.8,omega,lower,0.005358583927154541 +illusion_1L,ppo,327,98.1,omega,front,0.0023852059245109557 +illusion_1L,ppo,327,98.1,omega,upper,-0.010811737775802613 +illusion_1L,ppo,327,98.1,omega,lower,0.003910372257232666 +illusion_1L,ppo,328,98.4,omega,front,0.004668427109718323 +illusion_1L,ppo,328,98.4,omega,upper,-0.01138226866722107 +illusion_1L,ppo,328,98.4,omega,lower,0.003572903871536255 +illusion_1L,ppo,329,98.7,omega,front,0.005764458775520325 +illusion_1L,ppo,329,98.7,omega,upper,-0.011157004833221436 +illusion_1L,ppo,329,98.7,omega,lower,0.004458386898040772 +illusion_1L,ppo,330,99.0,omega,front,0.006193240880966186 +illusion_1L,ppo,330,99.0,omega,upper,-0.01063820481300354 +illusion_1L,ppo,330,99.0,omega,lower,0.005803048610687256 +illusion_1L,ppo,331,99.3,omega,front,0.006624386310577393 +illusion_1L,ppo,331,99.3,omega,upper,-0.010274879932403565 +illusion_1L,ppo,331,99.3,omega,lower,0.007101948261260986 +illusion_1L,ppo,332,99.6,omega,front,0.007221088409423829 +illusion_1L,ppo,332,99.6,omega,upper,-0.010120942592620849 +illusion_1L,ppo,332,99.6,omega,lower,0.008398871421813964 +illusion_1L,ppo,333,99.9,omega,front,0.007927605509757995 +illusion_1L,ppo,333,99.9,omega,upper,-0.010172152519226074 +illusion_1L,ppo,333,99.9,omega,lower,0.009535534381866455 +illusion_1L,ppo,334,100.2,omega,front,0.008611567616462708 +illusion_1L,ppo,334,100.2,omega,upper,-0.010454519987106323 +illusion_1L,ppo,334,100.2,omega,lower,0.010279958248138429 +illusion_1L,ppo,335,100.5,omega,front,0.009096913933753968 +illusion_1L,ppo,335,100.5,omega,upper,-0.010913214087486267 +illusion_1L,ppo,335,100.5,omega,lower,0.010647652745246887 +illusion_1L,ppo,336,100.8,omega,front,0.008987786173820496 +illusion_1L,ppo,336,100.8,omega,upper,-0.011022719144821167 +illusion_1L,ppo,336,100.8,omega,lower,0.010944653749465943 +illusion_1L,ppo,337,101.1,omega,front,0.00797942876815796 +illusion_1L,ppo,337,101.1,omega,upper,-0.010094313621520997 +illusion_1L,ppo,337,101.1,omega,lower,0.011079575419425964 +illusion_1L,ppo,338,101.4,omega,front,0.0062792921066284185 +illusion_1L,ppo,338,101.4,omega,upper,-0.008335039615631104 +illusion_1L,ppo,338,101.4,omega,lower,0.010505273342132568 +illusion_1L,ppo,339,101.7,omega,front,0.004366546273231507 +illusion_1L,ppo,339,101.7,omega,upper,-0.006685537099838257 +illusion_1L,ppo,339,101.7,omega,lower,0.00911684513092041 +illusion_1L,ppo,340,102.0,omega,front,0.0027516314387321474 +illusion_1L,ppo,340,102.0,omega,upper,-0.0058445405960083005 +illusion_1L,ppo,340,102.0,omega,lower,0.007624001502990723 +illusion_1L,ppo,341,102.3,omega,front,0.0017544439435005189 +illusion_1L,ppo,341,102.3,omega,upper,-0.006235013008117676 +illusion_1L,ppo,341,102.3,omega,lower,0.006846790313720703 +illusion_1L,ppo,342,102.6,omega,front,0.0012845994532108306 +illusion_1L,ppo,342,102.6,omega,upper,-0.0074628257751464845 +illusion_1L,ppo,342,102.6,omega,lower,0.006921241283416748 +illusion_1L,ppo,343,102.9,omega,front,0.0008530673384666444 +illusion_1L,ppo,343,102.9,omega,upper,-0.008684730529785157 +illusion_1L,ppo,343,102.9,omega,lower,0.007582716941833496 +illusion_1L,ppo,344,103.2,omega,front,0.00031784564256668094 +illusion_1L,ppo,344,103.2,omega,upper,-0.009598501920700074 +illusion_1L,ppo,344,103.2,omega,lower,0.00824152946472168 +illusion_1L,ppo,345,103.5,omega,front,-0.00032203823328018187 +illusion_1L,ppo,345,103.5,omega,upper,-0.010064420700073242 +illusion_1L,ppo,345,103.5,omega,lower,0.008444755077362061 +illusion_1L,ppo,346,103.8,omega,front,-0.0011078205704689026 +illusion_1L,ppo,346,103.8,omega,upper,-0.01002650260925293 +illusion_1L,ppo,346,103.8,omega,lower,0.00823699712753296 +illusion_1L,ppo,347,104.1,omega,front,-0.0019636070728302002 +illusion_1L,ppo,347,104.1,omega,upper,-0.009611881971359253 +illusion_1L,ppo,347,104.1,omega,lower,0.007958478927612304 +illusion_1L,ppo,348,104.4,omega,front,-0.002740967869758606 +illusion_1L,ppo,348,104.4,omega,upper,-0.009051508903503418 +illusion_1L,ppo,348,104.4,omega,lower,0.007747104167938232 +illusion_1L,ppo,349,104.7,omega,front,-0.0031538301706314086 +illusion_1L,ppo,349,104.7,omega,upper,-0.00872450590133667 +illusion_1L,ppo,349,104.7,omega,lower,0.007383208274841309 +illusion_1L,ppo,350,105.0,omega,front,-0.002706484794616699 +illusion_1L,ppo,350,105.0,omega,upper,-0.00894627332687378 +illusion_1L,ppo,350,105.0,omega,lower,0.006666191816329956 +illusion_1L,ppo,351,105.3,omega,front,-0.0008861508965492249 +illusion_1L,ppo,351,105.3,omega,upper,-0.009784990549087524 +illusion_1L,ppo,351,105.3,omega,lower,0.00545223593711853 +illusion_1L,ppo,352,105.6,omega,front,0.001996229290962219 +illusion_1L,ppo,352,105.6,omega,upper,-0.010915411710739136 +illusion_1L,ppo,352,105.6,omega,lower,0.004088095426559448 +illusion_1L,ppo,353,105.9,omega,front,0.004515174627304077 +illusion_1L,ppo,353,105.9,omega,upper,-0.01147397756576538 +illusion_1L,ppo,353,105.9,omega,lower,0.003534613847732544 +illusion_1L,ppo,354,106.2,omega,front,0.005785320997238159 +illusion_1L,ppo,354,106.2,omega,upper,-0.011118016242980958 +illusion_1L,ppo,354,106.2,omega,lower,0.004290088415145874 +illusion_1L,ppo,355,106.5,omega,front,0.00621906578540802 +illusion_1L,ppo,355,106.5,omega,upper,-0.010447332859039307 +illusion_1L,ppo,355,106.5,omega,lower,0.005776534080505371 +illusion_1L,ppo,356,106.8,omega,front,0.006576375961303711 +illusion_1L,ppo,356,106.8,omega,upper,-0.010005760788917541 +illusion_1L,ppo,356,106.8,omega,lower,0.007295622825622559 +illusion_1L,ppo,357,107.1,omega,front,0.007128760814666749 +illusion_1L,ppo,357,107.1,omega,upper,-0.009834294319152833 +illusion_1L,ppo,357,107.1,omega,lower,0.00870229721069336 +illusion_1L,ppo,358,107.4,omega,front,0.0077475601434707645 +illusion_1L,ppo,358,107.4,omega,upper,-0.009913191795349122 +illusion_1L,ppo,358,107.4,omega,lower,0.009995245933532714 +illusion_1L,ppo,359,107.7,omega,front,0.008489362001419068 +illusion_1L,ppo,359,107.7,omega,upper,-0.010308772921562195 +illusion_1L,ppo,359,107.7,omega,lower,0.010892219543457031 +illusion_1L,ppo,360,108.0,omega,front,0.00908838927745819 +illusion_1L,ppo,360,108.0,omega,upper,-0.010842664241790772 +illusion_1L,ppo,360,108.0,omega,lower,0.011244136095046998 +illusion_1L,ppo,361,108.3,omega,front,0.009065898060798645 +illusion_1L,ppo,361,108.3,omega,upper,-0.011008001565933227 +illusion_1L,ppo,361,108.3,omega,lower,0.01128748893737793 +illusion_1L,ppo,362,108.6,omega,front,0.008237186670303345 +illusion_1L,ppo,362,108.6,omega,upper,-0.010261342525482178 +illusion_1L,ppo,362,108.6,omega,lower,0.011160211563110351 +illusion_1L,ppo,363,108.9,omega,front,0.00668937623500824 +illusion_1L,ppo,363,108.9,omega,upper,-0.00869919776916504 +illusion_1L,ppo,363,108.9,omega,lower,0.010466418266296388 +illusion_1L,ppo,364,109.2,omega,front,0.004850664436817169 +illusion_1L,ppo,364,109.2,omega,upper,-0.007097814083099365 +illusion_1L,ppo,364,109.2,omega,lower,0.009023668766021729 +illusion_1L,ppo,365,109.5,omega,front,0.003102635741233826 +illusion_1L,ppo,365,109.5,omega,upper,-0.0060466289520263675 +illusion_1L,ppo,365,109.5,omega,lower,0.007480514049530029 +illusion_1L,ppo,366,109.8,omega,front,0.001825411319732666 +illusion_1L,ppo,366,109.8,omega,upper,-0.006144061088562012 +illusion_1L,ppo,366,109.8,omega,lower,0.006751339435577393 +illusion_1L,ppo,367,110.1,omega,front,0.0012825246155261994 +illusion_1L,ppo,367,110.1,omega,upper,-0.007422698736190796 +illusion_1L,ppo,367,110.1,omega,lower,0.006898401975631714 +illusion_1L,ppo,368,110.4,omega,front,0.0008750711381435394 +illusion_1L,ppo,368,110.4,omega,upper,-0.0088226318359375 +illusion_1L,ppo,368,110.4,omega,lower,0.0075318837165832524 +illusion_1L,ppo,369,110.7,omega,front,0.00034030765295028686 +illusion_1L,ppo,369,110.7,omega,upper,-0.00979804277420044 +illusion_1L,ppo,369,110.7,omega,lower,0.008143033981323242 +illusion_1L,ppo,370,111.0,omega,front,-0.0002880933880805969 +illusion_1L,ppo,370,111.0,omega,upper,-0.010310763120651245 +illusion_1L,ppo,370,111.0,omega,lower,0.00835723876953125 +illusion_1L,ppo,371,111.3,omega,front,-0.001048021912574768 +illusion_1L,ppo,371,111.3,omega,upper,-0.010295496582984924 +illusion_1L,ppo,371,111.3,omega,lower,0.00811421275138855 +illusion_1L,ppo,372,111.6,omega,front,-0.0019106930494308472 +illusion_1L,ppo,372,111.6,omega,upper,-0.00980076789855957 +illusion_1L,ppo,372,111.6,omega,lower,0.007743241786956788 +illusion_1L,ppo,373,111.9,omega,front,-0.002705168128013611 +illusion_1L,ppo,373,111.9,omega,upper,-0.009132107496261596 +illusion_1L,ppo,373,111.9,omega,lower,0.007535586357116699 +illusion_1L,ppo,374,112.2,omega,front,-0.0031507885456085205 +illusion_1L,ppo,374,112.2,omega,upper,-0.008703070878982545 +illusion_1L,ppo,374,112.2,omega,lower,0.007321763038635254 +illusion_1L,ppo,375,112.5,omega,front,-0.0027971363067626955 +illusion_1L,ppo,375,112.5,omega,upper,-0.008754620552062988 +illusion_1L,ppo,375,112.5,omega,lower,0.006707034111022949 +illusion_1L,ppo,376,112.8,omega,front,-0.0011787623167037965 +illusion_1L,ppo,376,112.8,omega,upper,-0.009375236034393311 +illusion_1L,ppo,376,112.8,omega,lower,0.0055069136619567876 +illusion_1L,ppo,377,113.1,omega,front,0.0015929999947547912 +illusion_1L,ppo,377,113.1,omega,upper,-0.010421512126922607 +illusion_1L,ppo,377,113.1,omega,lower,0.004166669845581054 +illusion_1L,ppo,378,113.4,omega,front,0.004200819134712219 +illusion_1L,ppo,378,113.4,omega,upper,-0.011118948459625244 +illusion_1L,ppo,378,113.4,omega,lower,0.0036076831817626956 +illusion_1L,ppo,379,113.7,omega,front,0.005683377981185913 +illusion_1L,ppo,379,113.7,omega,upper,-0.010993269681930542 +illusion_1L,ppo,379,113.7,omega,lower,0.004253001213073731 +illusion_1L,ppo,380,114.0,omega,front,0.006223156452178955 +illusion_1L,ppo,380,114.0,omega,upper,-0.010448532104492187 +illusion_1L,ppo,380,114.0,omega,lower,0.0057196390628814694 +illusion_1L,ppo,381,114.3,omega,front,0.0066329663991928104 +illusion_1L,ppo,381,114.3,omega,upper,-0.010129899978637695 +illusion_1L,ppo,381,114.3,omega,lower,0.00736241102218628 +illusion_1L,ppo,382,114.6,omega,front,0.007145768404006958 +illusion_1L,ppo,382,114.6,omega,upper,-0.010043071508407593 +illusion_1L,ppo,382,114.6,omega,lower,0.008854782581329346 +illusion_1L,ppo,383,114.9,omega,front,0.00776786744594574 +illusion_1L,ppo,383,114.9,omega,upper,-0.01005840539932251 +illusion_1L,ppo,383,114.9,omega,lower,0.010060818791389465 +illusion_1L,ppo,384,115.2,omega,front,0.00843587875366211 +illusion_1L,ppo,384,115.2,omega,upper,-0.010272613167762757 +illusion_1L,ppo,384,115.2,omega,lower,0.010875396728515625 +illusion_1L,ppo,385,115.5,omega,front,0.008955169916152955 +illusion_1L,ppo,385,115.5,omega,upper,-0.010697873830795289 +illusion_1L,ppo,385,115.5,omega,lower,0.011229315996170044 +illusion_1L,ppo,386,115.8,omega,front,0.009076418280601501 +illusion_1L,ppo,386,115.8,omega,upper,-0.010833086967468262 +illusion_1L,ppo,386,115.8,omega,lower,0.011210374236106872 +illusion_1L,ppo,387,116.1,omega,front,0.008204344511032104 +illusion_1L,ppo,387,116.1,omega,upper,-0.010011333227157594 +illusion_1L,ppo,387,116.1,omega,lower,0.01103510320186615 +illusion_1L,ppo,388,116.4,omega,front,0.0066859227418899535 +illusion_1L,ppo,388,116.4,omega,upper,-0.008524909019470214 +illusion_1L,ppo,388,116.4,omega,lower,0.01038756012916565 +illusion_1L,ppo,389,116.7,omega,front,0.004885159134864807 +illusion_1L,ppo,389,116.7,omega,upper,-0.007124004364013672 +illusion_1L,ppo,389,116.7,omega,lower,0.00907102108001709 +illusion_1L,ppo,390,117.0,omega,front,0.003041317462921143 +illusion_1L,ppo,390,117.0,omega,upper,-0.006152892112731934 +illusion_1L,ppo,390,117.0,omega,lower,0.007651094198226929 +illusion_1L,ppo,391,117.3,omega,front,0.0017979975044727326 +illusion_1L,ppo,391,117.3,omega,upper,-0.006225523948669434 +illusion_1L,ppo,391,117.3,omega,lower,0.006831520795822144 +illusion_1L,ppo,392,117.6,omega,front,0.0012149657309055329 +illusion_1L,ppo,392,117.6,omega,upper,-0.007439823150634766 +illusion_1L,ppo,392,117.6,omega,lower,0.0069120264053344725 +illusion_1L,ppo,393,117.9,omega,front,0.0008183224499225617 +illusion_1L,ppo,393,117.9,omega,upper,-0.008819171190261842 +illusion_1L,ppo,393,117.9,omega,lower,0.007520751953125 +illusion_1L,ppo,394,118.2,omega,front,0.0002904939651489258 +illusion_1L,ppo,394,118.2,omega,upper,-0.009766054153442384 +illusion_1L,ppo,394,118.2,omega,lower,0.008066592216491699 +illusion_1L,ppo,395,118.5,omega,front,-0.00033053606748580935 +illusion_1L,ppo,395,118.5,omega,upper,-0.010300164222717286 +illusion_1L,ppo,395,118.5,omega,lower,0.008264695405960084 +illusion_1L,ppo,396,118.8,omega,front,-0.001050545871257782 +illusion_1L,ppo,396,118.8,omega,upper,-0.010416890382766724 +illusion_1L,ppo,396,118.8,omega,lower,0.008100357055664063 +illusion_1L,ppo,397,119.1,omega,front,-0.001890527606010437 +illusion_1L,ppo,397,119.1,omega,upper,-0.010026475191116333 +illusion_1L,ppo,397,119.1,omega,lower,0.007755213975906373 +illusion_1L,ppo,398,119.4,omega,front,-0.0027337753772735595 +illusion_1L,ppo,398,119.4,omega,upper,-0.009318374395370484 +illusion_1L,ppo,398,119.4,omega,lower,0.007421603202819824 +illusion_1L,ppo,399,119.7,omega,front,-0.003229745626449585 +illusion_1L,ppo,399,119.7,omega,upper,-0.008809621334075928 +illusion_1L,ppo,399,119.7,omega,lower,0.007075634002685547 +illusion_1L,ppo,0,0.0,target_force,target_cd,0.005671756807714701 +illusion_1L,ppo,0,0.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,ppo,1,0.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,ppo,1,0.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,ppo,2,0.6,target_force,target_cd,0.005563950631767511 +illusion_1L,ppo,2,0.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,ppo,3,0.9,target_force,target_cd,0.005538197699934244 +illusion_1L,ppo,3,0.9,target_force,target_cl,0.000727235630620271 +illusion_1L,ppo,4,1.2,target_force,target_cd,0.005544575862586498 +illusion_1L,ppo,4,1.2,target_force,target_cl,0.001170451520010829 +illusion_1L,ppo,5,1.5,target_force,target_cd,0.005573783535510302 +illusion_1L,ppo,5,1.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,ppo,6,1.8,target_force,target_cd,0.005636546760797501 +illusion_1L,ppo,6,1.8,target_force,target_cl,0.001829120796173811 +illusion_1L,ppo,7,2.1,target_force,target_cd,0.005716180428862572 +illusion_1L,ppo,7,2.1,target_force,target_cl,0.00200505624525249 +illusion_1L,ppo,8,2.4,target_force,target_cd,0.005756895989179611 +illusion_1L,ppo,8,2.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,ppo,9,2.7,target_force,target_cd,0.005743067711591721 +illusion_1L,ppo,9,2.7,target_force,target_cl,0.001995726488530636 +illusion_1L,ppo,10,3.0,target_force,target_cd,0.005714329890906811 +illusion_1L,ppo,10,3.0,target_force,target_cl,0.001809444511309266 +illusion_1L,ppo,11,3.3,target_force,target_cd,0.005683825351297855 +illusion_1L,ppo,11,3.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,ppo,12,3.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,ppo,12,3.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,ppo,13,3.9,target_force,target_cd,0.005594110582023859 +illusion_1L,ppo,13,3.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,ppo,14,4.2,target_force,target_cd,0.005593768786638975 +illusion_1L,ppo,14,4.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,ppo,15,4.5,target_force,target_cd,0.005601159762591124 +illusion_1L,ppo,15,4.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,ppo,16,4.8,target_force,target_cd,0.005579833872616291 +illusion_1L,ppo,16,4.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,ppo,17,5.1,target_force,target_cd,0.005568155087530613 +illusion_1L,ppo,17,5.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,ppo,18,5.4,target_force,target_cd,0.005600422155112028 +illusion_1L,ppo,18,5.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,ppo,19,5.7,target_force,target_cd,0.005640667863190174 +illusion_1L,ppo,19,5.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,ppo,20,6.0,target_force,target_cd,0.005670505575835705 +illusion_1L,ppo,20,6.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,ppo,21,6.3,target_force,target_cd,0.005723041016608477 +illusion_1L,ppo,21,6.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,ppo,22,6.6,target_force,target_cd,0.005777770187705755 +illusion_1L,ppo,22,6.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,ppo,23,6.9,target_force,target_cd,0.005763606168329716 +illusion_1L,ppo,23,6.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,ppo,24,7.2,target_force,target_cd,0.005690249614417553 +illusion_1L,ppo,24,7.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,ppo,25,7.5,target_force,target_cd,0.005629390478134155 +illusion_1L,ppo,25,7.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,ppo,26,7.8,target_force,target_cd,0.005584970116615295 +illusion_1L,ppo,26,7.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,ppo,27,8.1,target_force,target_cd,0.005531984381377697 +illusion_1L,ppo,27,8.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,ppo,28,8.4,target_force,target_cd,0.005518179386854172 +illusion_1L,ppo,28,8.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,ppo,29,8.7,target_force,target_cd,0.005577066447585821 +illusion_1L,ppo,29,8.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,ppo,30,9.0,target_force,target_cd,0.005638485308736563 +illusion_1L,ppo,30,9.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,ppo,31,9.3,target_force,target_cd,0.005652999971061945 +illusion_1L,ppo,31,9.3,target_force,target_cl,0.001821481972001493 +illusion_1L,ppo,32,9.6,target_force,target_cd,0.005672627128660679 +illusion_1L,ppo,32,9.6,target_force,target_cl,0.002030503237619996 +illusion_1L,ppo,33,9.9,target_force,target_cd,0.005716722924262285 +illusion_1L,ppo,33,9.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,ppo,34,10.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,ppo,34,10.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,ppo,35,10.5,target_force,target_cd,0.005700415000319481 +illusion_1L,ppo,35,10.5,target_force,target_cl,0.001855533104389906 +illusion_1L,ppo,36,10.8,target_force,target_cd,0.00570518197491765 +illusion_1L,ppo,36,10.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,ppo,37,11.1,target_force,target_cd,0.005713063757866621 +illusion_1L,ppo,37,11.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,ppo,38,11.4,target_force,target_cd,0.00565308379009366 +illusion_1L,ppo,38,11.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,ppo,39,11.7,target_force,target_cd,0.005567865911871195 +illusion_1L,ppo,39,11.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,ppo,40,12.0,target_force,target_cd,0.005537909455597401 +illusion_1L,ppo,40,12.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,ppo,41,12.3,target_force,target_cd,0.005537074990570545 +illusion_1L,ppo,41,12.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,ppo,42,12.6,target_force,target_cd,0.005531030707061291 +illusion_1L,ppo,42,12.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,ppo,43,12.9,target_force,target_cd,0.00557838287204504 +illusion_1L,ppo,43,12.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,ppo,44,13.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,ppo,44,13.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,ppo,45,13.5,target_force,target_cd,0.005760743748396635 +illusion_1L,ppo,45,13.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,ppo,46,13.8,target_force,target_cd,0.005753485951572657 +illusion_1L,ppo,46,13.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,ppo,47,14.1,target_force,target_cd,0.005740967579185963 +illusion_1L,ppo,47,14.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,ppo,48,14.4,target_force,target_cd,0.005731895100325346 +illusion_1L,ppo,48,14.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,ppo,49,14.7,target_force,target_cd,0.00566871277987957 +illusion_1L,ppo,49,14.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,ppo,50,15.0,target_force,target_cd,0.005592959467321634 +illusion_1L,ppo,50,15.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,ppo,51,15.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,ppo,51,15.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,ppo,52,15.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,ppo,52,15.6,target_force,target_cl,0.000263598543824628 +illusion_1L,ppo,53,15.9,target_force,target_cd,0.005566527601331472 +illusion_1L,ppo,53,15.9,target_force,target_cl,0.000782874645665288 +illusion_1L,ppo,54,16.2,target_force,target_cd,0.005543616600334644 +illusion_1L,ppo,54,16.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,ppo,55,16.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,ppo,55,16.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,ppo,56,16.8,target_force,target_cd,0.005633705295622349 +illusion_1L,ppo,56,16.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,ppo,57,17.1,target_force,target_cd,0.005650329869240522 +illusion_1L,ppo,57,17.1,target_force,target_cl,0.002072976902127266 +illusion_1L,ppo,58,17.4,target_force,target_cd,0.005705440882593393 +illusion_1L,ppo,58,17.4,target_force,target_cl,0.002096022479236126 +illusion_1L,ppo,59,17.7,target_force,target_cd,0.005788230337202549 +illusion_1L,ppo,59,17.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,ppo,60,18.0,target_force,target_cd,0.00579201802611351 +illusion_1L,ppo,60,18.0,target_force,target_cl,0.001746693509630859 +illusion_1L,ppo,61,18.3,target_force,target_cd,0.005716915708035231 +illusion_1L,ppo,61,18.3,target_force,target_cl,0.001397387241013348 +illusion_1L,ppo,62,18.6,target_force,target_cd,0.00565684586763382 +illusion_1L,ppo,62,18.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,ppo,63,18.9,target_force,target_cd,0.005609786603599787 +illusion_1L,ppo,63,18.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,ppo,64,19.2,target_force,target_cd,0.005531110800802708 +illusion_1L,ppo,64,19.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,ppo,65,19.5,target_force,target_cd,0.005488442722707987 +illusion_1L,ppo,65,19.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,ppo,66,19.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,ppo,66,19.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,ppo,67,20.1,target_force,target_cd,0.005618898663669825 +illusion_1L,ppo,67,20.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,ppo,68,20.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,ppo,68,20.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,ppo,69,20.7,target_force,target_cd,0.005669464357197285 +illusion_1L,ppo,69,20.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,ppo,70,21.0,target_force,target_cd,0.005728682037442923 +illusion_1L,ppo,70,21.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,ppo,71,21.3,target_force,target_cd,0.005740906111896038 +illusion_1L,ppo,71,21.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,ppo,72,21.6,target_force,target_cd,0.00570477731525898 +illusion_1L,ppo,72,21.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,ppo,73,21.9,target_force,target_cd,0.005704289767891169 +illusion_1L,ppo,73,21.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,ppo,74,22.2,target_force,target_cd,0.005719874519854784 +illusion_1L,ppo,74,22.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,ppo,75,22.5,target_force,target_cd,0.005665991455316544 +illusion_1L,ppo,75,22.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,ppo,76,22.8,target_force,target_cd,0.005579077173024416 +illusion_1L,ppo,76,22.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,ppo,77,23.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,ppo,77,23.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,ppo,78,23.4,target_force,target_cd,0.005538465455174446 +illusion_1L,ppo,78,23.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,ppo,79,23.7,target_force,target_cd,0.005518500693142414 +illusion_1L,ppo,79,23.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,ppo,80,24.0,target_force,target_cd,0.005552514921873808 +illusion_1L,ppo,80,24.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,ppo,81,24.3,target_force,target_cd,0.005664129741489887 +illusion_1L,ppo,81,24.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,ppo,82,24.6,target_force,target_cd,0.005749957635998726 +illusion_1L,ppo,82,24.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,ppo,83,24.9,target_force,target_cd,0.005759336985647678 +illusion_1L,ppo,83,24.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,ppo,84,25.2,target_force,target_cd,0.005756254307925701 +illusion_1L,ppo,84,25.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,ppo,85,25.5,target_force,target_cd,0.005749706644564867 +illusion_1L,ppo,85,25.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,ppo,86,25.8,target_force,target_cd,0.005683912429958582 +illusion_1L,ppo,86,25.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,ppo,87,26.1,target_force,target_cd,0.005598609335720539 +illusion_1L,ppo,87,26.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,ppo,88,26.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,ppo,88,26.4,target_force,target_cl,0.000428010243922472 +illusion_1L,ppo,89,26.7,target_force,target_cd,0.005592026747763157 +illusion_1L,ppo,89,26.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,ppo,90,27.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,ppo,90,27.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,ppo,91,27.3,target_force,target_cd,0.005552446935325861 +illusion_1L,ppo,91,27.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,ppo,92,27.6,target_force,target_cd,0.005589765962213278 +illusion_1L,ppo,92,27.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,ppo,93,27.9,target_force,target_cd,0.00562874274328351 +illusion_1L,ppo,93,27.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,ppo,94,28.2,target_force,target_cd,0.005641409661620855 +illusion_1L,ppo,94,28.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,ppo,95,28.5,target_force,target_cd,0.005687114782631397 +illusion_1L,ppo,95,28.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,ppo,96,28.8,target_force,target_cd,0.005764052737504244 +illusion_1L,ppo,96,28.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,ppo,97,29.1,target_force,target_cd,0.005783763248473406 +illusion_1L,ppo,97,29.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,ppo,98,29.4,target_force,target_cd,0.005733401048928499 +illusion_1L,ppo,98,29.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,ppo,99,29.7,target_force,target_cd,0.005679980851709843 +illusion_1L,ppo,99,29.7,target_force,target_cl,-0.001109990873374045 +illusion_1L,ppo,100,30.0,target_force,target_cd,0.005627625621855259 +illusion_1L,ppo,100,30.0,target_force,target_cl,-0.0006181322387419641 +illusion_1L,ppo,101,30.3,target_force,target_cd,0.005549031309783459 +illusion_1L,ppo,101,30.3,target_force,target_cl,-8.59768915688619e-05 +illusion_1L,ppo,102,30.6,target_force,target_cd,0.005499288439750671 +illusion_1L,ppo,102,30.6,target_force,target_cl,0.0004518234054557979 +illusion_1L,ppo,103,30.9,target_force,target_cd,0.00553347822278738 +illusion_1L,ppo,103,30.9,target_force,target_cl,0.000960158125963062 +illusion_1L,ppo,104,31.2,target_force,target_cd,0.0055986023508012295 +illusion_1L,ppo,104,31.2,target_force,target_cl,0.0014057770604267716 +illusion_1L,ppo,105,31.5,target_force,target_cd,0.005635641980916262 +illusion_1L,ppo,105,31.5,target_force,target_cl,0.0017594960518181324 +illusion_1L,ppo,106,31.8,target_force,target_cd,0.005671056918799877 +illusion_1L,ppo,106,31.8,target_force,target_cl,0.0019981369841843843 +illusion_1L,ppo,107,32.1,target_force,target_cd,0.005717759020626545 +illusion_1L,ppo,107,32.1,target_force,target_cl,0.002106070751324296 +illusion_1L,ppo,108,32.4,target_force,target_cd,0.005728086922317743 +illusion_1L,ppo,108,32.4,target_force,target_cl,0.002076256787404418 +illusion_1L,ppo,109,32.7,target_force,target_cd,0.005702213384211063 +illusion_1L,ppo,109,32.7,target_force,target_cl,0.0019107060506939888 +illusion_1L,ppo,110,33.0,target_force,target_cd,0.005696525331586599 +illusion_1L,ppo,110,33.0,target_force,target_cl,0.0016203367849811912 +illusion_1L,ppo,111,33.3,target_force,target_cd,0.005705347750335932 +illusion_1L,ppo,111,33.3,target_force,target_cl,0.0012242335360497236 +illusion_1L,ppo,112,33.6,target_force,target_cd,0.0056749628856778145 +illusion_1L,ppo,112,33.6,target_force,target_cl,0.0007483611116185784 +illusion_1L,ppo,113,33.9,target_force,target_cd,0.005616396199911833 +illusion_1L,ppo,113,33.9,target_force,target_cl,0.00022382187307812274 +illusion_1L,ppo,114,34.2,target_force,target_cd,0.005577105097472668 +illusion_1L,ppo,114,34.2,target_force,target_cl,-0.00031522029894404113 +illusion_1L,ppo,115,34.5,target_force,target_cd,0.005551840178668499 +illusion_1L,ppo,115,34.5,target_force,target_cl,-0.0008338077459484339 +illusion_1L,ppo,116,34.8,target_force,target_cd,0.0055290330201387405 +illusion_1L,ppo,116,34.8,target_force,target_cl,-0.0012984927743673325 +illusion_1L,ppo,117,35.1,target_force,target_cd,0.005548518151044846 +illusion_1L,ppo,117,35.1,target_force,target_cl,-0.0016795200062915683 +illusion_1L,ppo,118,35.4,target_force,target_cd,0.00562577648088336 +illusion_1L,ppo,118,35.4,target_force,target_cl,-0.001952742924913764 +illusion_1L,ppo,119,35.7,target_force,target_cd,0.005705163814127445 +illusion_1L,ppo,119,35.7,target_force,target_cl,-0.0021011470817029476 +illusion_1L,ppo,120,36.0,target_force,target_cd,0.005744705442339182 +illusion_1L,ppo,120,36.0,target_force,target_cl,-0.0021158847957849503 +illusion_1L,ppo,121,36.3,target_force,target_cd,0.005756988190114498 +illusion_1L,ppo,121,36.3,target_force,target_cl,-0.0019967579282820225 +illusion_1L,ppo,122,36.6,target_force,target_cd,0.005744813941419125 +illusion_1L,ppo,122,36.6,target_force,target_cl,-0.0017521297559142113 +illusion_1L,ppo,123,36.9,target_force,target_cd,0.005693688523024321 +illusion_1L,ppo,123,36.9,target_force,target_cl,-0.001398277236148715 +illusion_1L,ppo,124,37.2,target_force,target_cd,0.005629749968647957 +illusion_1L,ppo,124,37.2,target_force,target_cl,-0.0009582436759956181 +illusion_1L,ppo,125,37.5,target_force,target_cd,0.005596959963440895 +illusion_1L,ppo,125,37.5,target_force,target_cl,-0.00046027303324081004 +illusion_1L,ppo,126,37.8,target_force,target_cd,0.005591437220573425 +illusion_1L,ppo,126,37.8,target_force,target_cl,6.405806198017672e-05 +illusion_1L,ppo,127,38.1,target_force,target_cd,0.005585479084402323 +illusion_1L,ppo,127,38.1,target_force,target_cl,0.0005818844656459987 +illusion_1L,ppo,128,38.4,target_force,target_cd,0.005581559147685766 +illusion_1L,ppo,128,38.4,target_force,target_cl,0.0010611350880935788 +illusion_1L,ppo,129,38.7,target_force,target_cd,0.005591227672994137 +illusion_1L,ppo,129,38.7,target_force,target_cl,0.0014725204091519117 +illusion_1L,ppo,130,39.0,target_force,target_cd,0.0056059095077216625 +illusion_1L,ppo,130,39.0,target_force,target_cl,0.0017913009505718946 +illusion_1L,ppo,131,39.3,target_force,target_cd,0.005624179262667894 +illusion_1L,ppo,131,39.3,target_force,target_cl,0.0019987314008176327 +illusion_1L,ppo,132,39.6,target_force,target_cd,0.005661684088408947 +illusion_1L,ppo,132,39.6,target_force,target_cl,0.0020831020083278418 +illusion_1L,ppo,133,39.9,target_force,target_cd,0.005714363418519497 +illusion_1L,ppo,133,39.9,target_force,target_cl,0.0020403247326612473 +illusion_1L,ppo,134,40.2,target_force,target_cd,0.005751916207373142 +illusion_1L,ppo,134,40.2,target_force,target_cl,0.001874040812253952 +illusion_1L,ppo,135,40.5,target_force,target_cd,0.005752751603722572 +illusion_1L,ppo,135,40.5,target_force,target_cl,0.0015952644171193242 +illusion_1L,ppo,136,40.8,target_force,target_cd,0.005716994404792786 +illusion_1L,ppo,136,40.8,target_force,target_cl,0.0012215939350426197 +illusion_1L,ppo,137,41.1,target_force,target_cd,0.005655428394675255 +illusion_1L,ppo,137,41.1,target_force,target_cl,0.0007760541047900915 +illusion_1L,ppo,138,41.4,target_force,target_cd,0.005588269792497158 +illusion_1L,ppo,138,41.4,target_force,target_cl,0.000285650254227221 +illusion_1L,ppo,139,41.7,target_force,target_cd,0.005542092490941286 +illusion_1L,ppo,139,41.7,target_force,target_cl,-0.00022027546947356313 +illusion_1L,ppo,140,42.0,target_force,target_cd,0.005534210707992315 +illusion_1L,ppo,140,42.0,target_force,target_cl,-0.0007117835339158773 +illusion_1L,ppo,141,42.3,target_force,target_cd,0.005564122460782528 +illusion_1L,ppo,141,42.3,target_force,target_cl,-0.0011600726284086704 +illusion_1L,ppo,142,42.6,target_force,target_cd,0.005614774767309427 +illusion_1L,ppo,142,42.6,target_force,target_cl,-0.0015391155611723661 +illusion_1L,ppo,143,42.9,target_force,target_cd,0.005659830756485462 +illusion_1L,ppo,143,42.9,target_force,target_cl,-0.0018271084409207106 +illusion_1L,ppo,144,43.2,target_force,target_cd,0.005684380419552326 +illusion_1L,ppo,144,43.2,target_force,target_cl,-0.002007660223171115 +illusion_1L,ppo,145,43.5,target_force,target_cd,0.005696034524589777 +illusion_1L,ppo,145,43.5,target_force,target_cl,-0.0020706653594970703 +illusion_1L,ppo,146,43.8,target_force,target_cd,0.005703396163880825 +illusion_1L,ppo,146,43.8,target_force,target_cl,-0.0020128197502344847 +illusion_1L,ppo,147,44.1,target_force,target_cd,0.005702631548047066 +illusion_1L,ppo,147,44.1,target_force,target_cl,-0.0018377614906057715 +illusion_1L,ppo,148,44.4,target_force,target_cd,0.00569628830999136 +illusion_1L,ppo,148,44.4,target_force,target_cl,-0.001555830822326243 +illusion_1L,ppo,149,44.7,target_force,target_cd,0.005691180936992168 +illusion_1L,ppo,149,44.7,target_force,target_cl,-0.0011834697797894478 +illusion_1L,ppo,150,45.0,target_force,target_cd,0.005671756807714701 +illusion_1L,ppo,150,45.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,ppo,151,45.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,ppo,151,45.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,ppo,152,45.6,target_force,target_cd,0.005563950631767511 +illusion_1L,ppo,152,45.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,ppo,153,45.9,target_force,target_cd,0.005538197699934244 +illusion_1L,ppo,153,45.9,target_force,target_cl,0.000727235630620271 +illusion_1L,ppo,154,46.2,target_force,target_cd,0.005544575862586498 +illusion_1L,ppo,154,46.2,target_force,target_cl,0.001170451520010829 +illusion_1L,ppo,155,46.5,target_force,target_cd,0.005573783535510302 +illusion_1L,ppo,155,46.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,ppo,156,46.8,target_force,target_cd,0.005636546760797501 +illusion_1L,ppo,156,46.8,target_force,target_cl,0.001829120796173811 +illusion_1L,ppo,157,47.1,target_force,target_cd,0.005716180428862572 +illusion_1L,ppo,157,47.1,target_force,target_cl,0.00200505624525249 +illusion_1L,ppo,158,47.4,target_force,target_cd,0.005756895989179611 +illusion_1L,ppo,158,47.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,ppo,159,47.7,target_force,target_cd,0.005743067711591721 +illusion_1L,ppo,159,47.7,target_force,target_cl,0.001995726488530636 +illusion_1L,ppo,160,48.0,target_force,target_cd,0.005714329890906811 +illusion_1L,ppo,160,48.0,target_force,target_cl,0.001809444511309266 +illusion_1L,ppo,161,48.3,target_force,target_cd,0.005683825351297855 +illusion_1L,ppo,161,48.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,ppo,162,48.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,ppo,162,48.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,ppo,163,48.9,target_force,target_cd,0.005594110582023859 +illusion_1L,ppo,163,48.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,ppo,164,49.2,target_force,target_cd,0.005593768786638975 +illusion_1L,ppo,164,49.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,ppo,165,49.5,target_force,target_cd,0.005601159762591124 +illusion_1L,ppo,165,49.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,ppo,166,49.8,target_force,target_cd,0.005579833872616291 +illusion_1L,ppo,166,49.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,ppo,167,50.1,target_force,target_cd,0.005568155087530613 +illusion_1L,ppo,167,50.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,ppo,168,50.4,target_force,target_cd,0.005600422155112028 +illusion_1L,ppo,168,50.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,ppo,169,50.7,target_force,target_cd,0.005640667863190174 +illusion_1L,ppo,169,50.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,ppo,170,51.0,target_force,target_cd,0.005670505575835705 +illusion_1L,ppo,170,51.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,ppo,171,51.3,target_force,target_cd,0.005723041016608477 +illusion_1L,ppo,171,51.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,ppo,172,51.6,target_force,target_cd,0.005777770187705755 +illusion_1L,ppo,172,51.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,ppo,173,51.9,target_force,target_cd,0.005763606168329716 +illusion_1L,ppo,173,51.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,ppo,174,52.2,target_force,target_cd,0.005690249614417553 +illusion_1L,ppo,174,52.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,ppo,175,52.5,target_force,target_cd,0.005629390478134155 +illusion_1L,ppo,175,52.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,ppo,176,52.8,target_force,target_cd,0.005584970116615295 +illusion_1L,ppo,176,52.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,ppo,177,53.1,target_force,target_cd,0.005531984381377697 +illusion_1L,ppo,177,53.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,ppo,178,53.4,target_force,target_cd,0.005518179386854172 +illusion_1L,ppo,178,53.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,ppo,179,53.7,target_force,target_cd,0.005577066447585821 +illusion_1L,ppo,179,53.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,ppo,180,54.0,target_force,target_cd,0.005638485308736563 +illusion_1L,ppo,180,54.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,ppo,181,54.3,target_force,target_cd,0.005652999971061945 +illusion_1L,ppo,181,54.3,target_force,target_cl,0.001821481972001493 +illusion_1L,ppo,182,54.6,target_force,target_cd,0.005672627128660679 +illusion_1L,ppo,182,54.6,target_force,target_cl,0.002030503237619996 +illusion_1L,ppo,183,54.9,target_force,target_cd,0.005716722924262285 +illusion_1L,ppo,183,54.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,ppo,184,55.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,ppo,184,55.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,ppo,185,55.5,target_force,target_cd,0.005700415000319481 +illusion_1L,ppo,185,55.5,target_force,target_cl,0.001855533104389906 +illusion_1L,ppo,186,55.8,target_force,target_cd,0.00570518197491765 +illusion_1L,ppo,186,55.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,ppo,187,56.1,target_force,target_cd,0.005713063757866621 +illusion_1L,ppo,187,56.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,ppo,188,56.4,target_force,target_cd,0.00565308379009366 +illusion_1L,ppo,188,56.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,ppo,189,56.7,target_force,target_cd,0.005567865911871195 +illusion_1L,ppo,189,56.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,ppo,190,57.0,target_force,target_cd,0.005537909455597401 +illusion_1L,ppo,190,57.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,ppo,191,57.3,target_force,target_cd,0.005537074990570545 +illusion_1L,ppo,191,57.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,ppo,192,57.6,target_force,target_cd,0.005531030707061291 +illusion_1L,ppo,192,57.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,ppo,193,57.9,target_force,target_cd,0.00557838287204504 +illusion_1L,ppo,193,57.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,ppo,194,58.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,ppo,194,58.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,ppo,195,58.5,target_force,target_cd,0.005760743748396635 +illusion_1L,ppo,195,58.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,ppo,196,58.8,target_force,target_cd,0.005753485951572657 +illusion_1L,ppo,196,58.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,ppo,197,59.1,target_force,target_cd,0.005740967579185963 +illusion_1L,ppo,197,59.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,ppo,198,59.4,target_force,target_cd,0.005731895100325346 +illusion_1L,ppo,198,59.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,ppo,199,59.7,target_force,target_cd,0.00566871277987957 +illusion_1L,ppo,199,59.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,ppo,200,60.0,target_force,target_cd,0.005592959467321634 +illusion_1L,ppo,200,60.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,ppo,201,60.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,ppo,201,60.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,ppo,202,60.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,ppo,202,60.6,target_force,target_cl,0.000263598543824628 +illusion_1L,ppo,203,60.9,target_force,target_cd,0.005566527601331472 +illusion_1L,ppo,203,60.9,target_force,target_cl,0.000782874645665288 +illusion_1L,ppo,204,61.2,target_force,target_cd,0.005543616600334644 +illusion_1L,ppo,204,61.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,ppo,205,61.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,ppo,205,61.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,ppo,206,61.8,target_force,target_cd,0.005633705295622349 +illusion_1L,ppo,206,61.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,ppo,207,62.1,target_force,target_cd,0.005650329869240522 +illusion_1L,ppo,207,62.1,target_force,target_cl,0.002072976902127266 +illusion_1L,ppo,208,62.4,target_force,target_cd,0.005705440882593393 +illusion_1L,ppo,208,62.4,target_force,target_cl,0.002096022479236126 +illusion_1L,ppo,209,62.7,target_force,target_cd,0.005788230337202549 +illusion_1L,ppo,209,62.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,ppo,210,63.0,target_force,target_cd,0.00579201802611351 +illusion_1L,ppo,210,63.0,target_force,target_cl,0.001746693509630859 +illusion_1L,ppo,211,63.3,target_force,target_cd,0.005716915708035231 +illusion_1L,ppo,211,63.3,target_force,target_cl,0.001397387241013348 +illusion_1L,ppo,212,63.6,target_force,target_cd,0.00565684586763382 +illusion_1L,ppo,212,63.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,ppo,213,63.9,target_force,target_cd,0.005609786603599787 +illusion_1L,ppo,213,63.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,ppo,214,64.2,target_force,target_cd,0.005531110800802708 +illusion_1L,ppo,214,64.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,ppo,215,64.5,target_force,target_cd,0.005488442722707987 +illusion_1L,ppo,215,64.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,ppo,216,64.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,ppo,216,64.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,ppo,217,65.1,target_force,target_cd,0.005618898663669825 +illusion_1L,ppo,217,65.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,ppo,218,65.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,ppo,218,65.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,ppo,219,65.7,target_force,target_cd,0.005669464357197285 +illusion_1L,ppo,219,65.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,ppo,220,66.0,target_force,target_cd,0.005728682037442923 +illusion_1L,ppo,220,66.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,ppo,221,66.3,target_force,target_cd,0.005740906111896038 +illusion_1L,ppo,221,66.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,ppo,222,66.6,target_force,target_cd,0.00570477731525898 +illusion_1L,ppo,222,66.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,ppo,223,66.9,target_force,target_cd,0.005704289767891169 +illusion_1L,ppo,223,66.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,ppo,224,67.2,target_force,target_cd,0.005719874519854784 +illusion_1L,ppo,224,67.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,ppo,225,67.5,target_force,target_cd,0.005665991455316544 +illusion_1L,ppo,225,67.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,ppo,226,67.8,target_force,target_cd,0.005579077173024416 +illusion_1L,ppo,226,67.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,ppo,227,68.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,ppo,227,68.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,ppo,228,68.4,target_force,target_cd,0.005538465455174446 +illusion_1L,ppo,228,68.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,ppo,229,68.7,target_force,target_cd,0.005518500693142414 +illusion_1L,ppo,229,68.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,ppo,230,69.0,target_force,target_cd,0.005552514921873808 +illusion_1L,ppo,230,69.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,ppo,231,69.3,target_force,target_cd,0.005664129741489887 +illusion_1L,ppo,231,69.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,ppo,232,69.6,target_force,target_cd,0.005749957635998726 +illusion_1L,ppo,232,69.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,ppo,233,69.9,target_force,target_cd,0.005759336985647678 +illusion_1L,ppo,233,69.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,ppo,234,70.2,target_force,target_cd,0.005756254307925701 +illusion_1L,ppo,234,70.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,ppo,235,70.5,target_force,target_cd,0.005749706644564867 +illusion_1L,ppo,235,70.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,ppo,236,70.8,target_force,target_cd,0.005683912429958582 +illusion_1L,ppo,236,70.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,ppo,237,71.1,target_force,target_cd,0.005598609335720539 +illusion_1L,ppo,237,71.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,ppo,238,71.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,ppo,238,71.4,target_force,target_cl,0.000428010243922472 +illusion_1L,ppo,239,71.7,target_force,target_cd,0.005592026747763157 +illusion_1L,ppo,239,71.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,ppo,240,72.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,ppo,240,72.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,ppo,241,72.3,target_force,target_cd,0.005552446935325861 +illusion_1L,ppo,241,72.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,ppo,242,72.6,target_force,target_cd,0.005589765962213278 +illusion_1L,ppo,242,72.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,ppo,243,72.9,target_force,target_cd,0.00562874274328351 +illusion_1L,ppo,243,72.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,ppo,244,73.2,target_force,target_cd,0.005641409661620855 +illusion_1L,ppo,244,73.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,ppo,245,73.5,target_force,target_cd,0.005687114782631397 +illusion_1L,ppo,245,73.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,ppo,246,73.8,target_force,target_cd,0.005764052737504244 +illusion_1L,ppo,246,73.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,ppo,247,74.1,target_force,target_cd,0.005783763248473406 +illusion_1L,ppo,247,74.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,ppo,248,74.4,target_force,target_cd,0.005733401048928499 +illusion_1L,ppo,248,74.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,ppo,249,74.7,target_force,target_cd,0.005679980851709843 +illusion_1L,ppo,249,74.7,target_force,target_cl,-0.001109990873374045 +illusion_1L,ppo,250,75.0,target_force,target_cd,0.005627625621855259 +illusion_1L,ppo,250,75.0,target_force,target_cl,-0.0006181322387419641 +illusion_1L,ppo,251,75.3,target_force,target_cd,0.005549031309783459 +illusion_1L,ppo,251,75.3,target_force,target_cl,-8.59768915688619e-05 +illusion_1L,ppo,252,75.6,target_force,target_cd,0.005499288439750671 +illusion_1L,ppo,252,75.6,target_force,target_cl,0.0004518234054557979 +illusion_1L,ppo,253,75.9,target_force,target_cd,0.00553347822278738 +illusion_1L,ppo,253,75.9,target_force,target_cl,0.000960158125963062 +illusion_1L,ppo,254,76.2,target_force,target_cd,0.0055986023508012295 +illusion_1L,ppo,254,76.2,target_force,target_cl,0.0014057770604267716 +illusion_1L,ppo,255,76.5,target_force,target_cd,0.005635641980916262 +illusion_1L,ppo,255,76.5,target_force,target_cl,0.0017594960518181324 +illusion_1L,ppo,256,76.8,target_force,target_cd,0.005671056918799877 +illusion_1L,ppo,256,76.8,target_force,target_cl,0.0019981369841843843 +illusion_1L,ppo,257,77.1,target_force,target_cd,0.005717759020626545 +illusion_1L,ppo,257,77.1,target_force,target_cl,0.002106070751324296 +illusion_1L,ppo,258,77.4,target_force,target_cd,0.005728086922317743 +illusion_1L,ppo,258,77.4,target_force,target_cl,0.002076256787404418 +illusion_1L,ppo,259,77.7,target_force,target_cd,0.005702213384211063 +illusion_1L,ppo,259,77.7,target_force,target_cl,0.0019107060506939888 +illusion_1L,ppo,260,78.0,target_force,target_cd,0.005696525331586599 +illusion_1L,ppo,260,78.0,target_force,target_cl,0.0016203367849811912 +illusion_1L,ppo,261,78.3,target_force,target_cd,0.005705347750335932 +illusion_1L,ppo,261,78.3,target_force,target_cl,0.0012242335360497236 +illusion_1L,ppo,262,78.6,target_force,target_cd,0.0056749628856778145 +illusion_1L,ppo,262,78.6,target_force,target_cl,0.0007483611116185784 +illusion_1L,ppo,263,78.9,target_force,target_cd,0.005616396199911833 +illusion_1L,ppo,263,78.9,target_force,target_cl,0.00022382187307812274 +illusion_1L,ppo,264,79.2,target_force,target_cd,0.005577105097472668 +illusion_1L,ppo,264,79.2,target_force,target_cl,-0.00031522029894404113 +illusion_1L,ppo,265,79.5,target_force,target_cd,0.005551840178668499 +illusion_1L,ppo,265,79.5,target_force,target_cl,-0.0008338077459484339 +illusion_1L,ppo,266,79.8,target_force,target_cd,0.0055290330201387405 +illusion_1L,ppo,266,79.8,target_force,target_cl,-0.0012984927743673325 +illusion_1L,ppo,267,80.1,target_force,target_cd,0.005548518151044846 +illusion_1L,ppo,267,80.1,target_force,target_cl,-0.0016795200062915683 +illusion_1L,ppo,268,80.4,target_force,target_cd,0.00562577648088336 +illusion_1L,ppo,268,80.4,target_force,target_cl,-0.001952742924913764 +illusion_1L,ppo,269,80.7,target_force,target_cd,0.005705163814127445 +illusion_1L,ppo,269,80.7,target_force,target_cl,-0.0021011470817029476 +illusion_1L,ppo,270,81.0,target_force,target_cd,0.005744705442339182 +illusion_1L,ppo,270,81.0,target_force,target_cl,-0.0021158847957849503 +illusion_1L,ppo,271,81.3,target_force,target_cd,0.005756988190114498 +illusion_1L,ppo,271,81.3,target_force,target_cl,-0.0019967579282820225 +illusion_1L,ppo,272,81.6,target_force,target_cd,0.005744813941419125 +illusion_1L,ppo,272,81.6,target_force,target_cl,-0.0017521297559142113 +illusion_1L,ppo,273,81.9,target_force,target_cd,0.005693688523024321 +illusion_1L,ppo,273,81.9,target_force,target_cl,-0.001398277236148715 +illusion_1L,ppo,274,82.2,target_force,target_cd,0.005629749968647957 +illusion_1L,ppo,274,82.2,target_force,target_cl,-0.0009582436759956181 +illusion_1L,ppo,275,82.5,target_force,target_cd,0.005596959963440895 +illusion_1L,ppo,275,82.5,target_force,target_cl,-0.00046027303324081004 +illusion_1L,ppo,276,82.8,target_force,target_cd,0.005591437220573425 +illusion_1L,ppo,276,82.8,target_force,target_cl,6.405806198017672e-05 +illusion_1L,ppo,277,83.1,target_force,target_cd,0.005585479084402323 +illusion_1L,ppo,277,83.1,target_force,target_cl,0.0005818844656459987 +illusion_1L,ppo,278,83.4,target_force,target_cd,0.005581559147685766 +illusion_1L,ppo,278,83.4,target_force,target_cl,0.0010611350880935788 +illusion_1L,ppo,279,83.7,target_force,target_cd,0.005591227672994137 +illusion_1L,ppo,279,83.7,target_force,target_cl,0.0014725204091519117 +illusion_1L,ppo,280,84.0,target_force,target_cd,0.0056059095077216625 +illusion_1L,ppo,280,84.0,target_force,target_cl,0.0017913009505718946 +illusion_1L,ppo,281,84.3,target_force,target_cd,0.005624179262667894 +illusion_1L,ppo,281,84.3,target_force,target_cl,0.0019987314008176327 +illusion_1L,ppo,282,84.6,target_force,target_cd,0.005661684088408947 +illusion_1L,ppo,282,84.6,target_force,target_cl,0.0020831020083278418 +illusion_1L,ppo,283,84.9,target_force,target_cd,0.005714363418519497 +illusion_1L,ppo,283,84.9,target_force,target_cl,0.0020403247326612473 +illusion_1L,ppo,284,85.2,target_force,target_cd,0.005751916207373142 +illusion_1L,ppo,284,85.2,target_force,target_cl,0.001874040812253952 +illusion_1L,ppo,285,85.5,target_force,target_cd,0.005752751603722572 +illusion_1L,ppo,285,85.5,target_force,target_cl,0.0015952644171193242 +illusion_1L,ppo,286,85.8,target_force,target_cd,0.005716994404792786 +illusion_1L,ppo,286,85.8,target_force,target_cl,0.0012215939350426197 +illusion_1L,ppo,287,86.1,target_force,target_cd,0.005655428394675255 +illusion_1L,ppo,287,86.1,target_force,target_cl,0.0007760541047900915 +illusion_1L,ppo,288,86.4,target_force,target_cd,0.005588269792497158 +illusion_1L,ppo,288,86.4,target_force,target_cl,0.000285650254227221 +illusion_1L,ppo,289,86.7,target_force,target_cd,0.005542092490941286 +illusion_1L,ppo,289,86.7,target_force,target_cl,-0.00022027546947356313 +illusion_1L,ppo,290,87.0,target_force,target_cd,0.005534210707992315 +illusion_1L,ppo,290,87.0,target_force,target_cl,-0.0007117835339158773 +illusion_1L,ppo,291,87.3,target_force,target_cd,0.005564122460782528 +illusion_1L,ppo,291,87.3,target_force,target_cl,-0.0011600726284086704 +illusion_1L,ppo,292,87.6,target_force,target_cd,0.005614774767309427 +illusion_1L,ppo,292,87.6,target_force,target_cl,-0.0015391155611723661 +illusion_1L,ppo,293,87.9,target_force,target_cd,0.005659830756485462 +illusion_1L,ppo,293,87.9,target_force,target_cl,-0.0018271084409207106 +illusion_1L,ppo,294,88.2,target_force,target_cd,0.005684380419552326 +illusion_1L,ppo,294,88.2,target_force,target_cl,-0.002007660223171115 +illusion_1L,ppo,295,88.5,target_force,target_cd,0.005696034524589777 +illusion_1L,ppo,295,88.5,target_force,target_cl,-0.0020706653594970703 +illusion_1L,ppo,296,88.8,target_force,target_cd,0.005703396163880825 +illusion_1L,ppo,296,88.8,target_force,target_cl,-0.0020128197502344847 +illusion_1L,ppo,297,89.1,target_force,target_cd,0.005702631548047066 +illusion_1L,ppo,297,89.1,target_force,target_cl,-0.0018377614906057715 +illusion_1L,ppo,298,89.4,target_force,target_cd,0.00569628830999136 +illusion_1L,ppo,298,89.4,target_force,target_cl,-0.001555830822326243 +illusion_1L,ppo,299,89.7,target_force,target_cd,0.005691180936992168 +illusion_1L,ppo,299,89.7,target_force,target_cl,-0.0011834697797894478 +illusion_1L,ppo,300,90.0,target_force,target_cd,0.005671756807714701 +illusion_1L,ppo,300,90.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,ppo,301,90.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,ppo,301,90.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,ppo,302,90.6,target_force,target_cd,0.005563950631767511 +illusion_1L,ppo,302,90.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,ppo,303,90.9,target_force,target_cd,0.005538197699934244 +illusion_1L,ppo,303,90.9,target_force,target_cl,0.000727235630620271 +illusion_1L,ppo,304,91.2,target_force,target_cd,0.005544575862586498 +illusion_1L,ppo,304,91.2,target_force,target_cl,0.001170451520010829 +illusion_1L,ppo,305,91.5,target_force,target_cd,0.005573783535510302 +illusion_1L,ppo,305,91.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,ppo,306,91.8,target_force,target_cd,0.005636546760797501 +illusion_1L,ppo,306,91.8,target_force,target_cl,0.001829120796173811 +illusion_1L,ppo,307,92.1,target_force,target_cd,0.005716180428862572 +illusion_1L,ppo,307,92.1,target_force,target_cl,0.00200505624525249 +illusion_1L,ppo,308,92.4,target_force,target_cd,0.005756895989179611 +illusion_1L,ppo,308,92.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,ppo,309,92.7,target_force,target_cd,0.005743067711591721 +illusion_1L,ppo,309,92.7,target_force,target_cl,0.001995726488530636 +illusion_1L,ppo,310,93.0,target_force,target_cd,0.005714329890906811 +illusion_1L,ppo,310,93.0,target_force,target_cl,0.001809444511309266 +illusion_1L,ppo,311,93.3,target_force,target_cd,0.005683825351297855 +illusion_1L,ppo,311,93.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,ppo,312,93.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,ppo,312,93.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,ppo,313,93.9,target_force,target_cd,0.005594110582023859 +illusion_1L,ppo,313,93.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,ppo,314,94.2,target_force,target_cd,0.005593768786638975 +illusion_1L,ppo,314,94.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,ppo,315,94.5,target_force,target_cd,0.005601159762591124 +illusion_1L,ppo,315,94.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,ppo,316,94.8,target_force,target_cd,0.005579833872616291 +illusion_1L,ppo,316,94.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,ppo,317,95.1,target_force,target_cd,0.005568155087530613 +illusion_1L,ppo,317,95.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,ppo,318,95.4,target_force,target_cd,0.005600422155112028 +illusion_1L,ppo,318,95.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,ppo,319,95.7,target_force,target_cd,0.005640667863190174 +illusion_1L,ppo,319,95.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,ppo,320,96.0,target_force,target_cd,0.005670505575835705 +illusion_1L,ppo,320,96.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,ppo,321,96.3,target_force,target_cd,0.005723041016608477 +illusion_1L,ppo,321,96.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,ppo,322,96.6,target_force,target_cd,0.005777770187705755 +illusion_1L,ppo,322,96.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,ppo,323,96.9,target_force,target_cd,0.005763606168329716 +illusion_1L,ppo,323,96.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,ppo,324,97.2,target_force,target_cd,0.005690249614417553 +illusion_1L,ppo,324,97.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,ppo,325,97.5,target_force,target_cd,0.005629390478134155 +illusion_1L,ppo,325,97.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,ppo,326,97.8,target_force,target_cd,0.005584970116615295 +illusion_1L,ppo,326,97.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,ppo,327,98.1,target_force,target_cd,0.005531984381377697 +illusion_1L,ppo,327,98.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,ppo,328,98.4,target_force,target_cd,0.005518179386854172 +illusion_1L,ppo,328,98.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,ppo,329,98.7,target_force,target_cd,0.005577066447585821 +illusion_1L,ppo,329,98.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,ppo,330,99.0,target_force,target_cd,0.005638485308736563 +illusion_1L,ppo,330,99.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,ppo,331,99.3,target_force,target_cd,0.005652999971061945 +illusion_1L,ppo,331,99.3,target_force,target_cl,0.001821481972001493 +illusion_1L,ppo,332,99.6,target_force,target_cd,0.005672627128660679 +illusion_1L,ppo,332,99.6,target_force,target_cl,0.002030503237619996 +illusion_1L,ppo,333,99.9,target_force,target_cd,0.005716722924262285 +illusion_1L,ppo,333,99.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,ppo,334,100.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,ppo,334,100.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,ppo,335,100.5,target_force,target_cd,0.005700415000319481 +illusion_1L,ppo,335,100.5,target_force,target_cl,0.001855533104389906 +illusion_1L,ppo,336,100.8,target_force,target_cd,0.00570518197491765 +illusion_1L,ppo,336,100.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,ppo,337,101.1,target_force,target_cd,0.005713063757866621 +illusion_1L,ppo,337,101.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,ppo,338,101.4,target_force,target_cd,0.00565308379009366 +illusion_1L,ppo,338,101.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,ppo,339,101.7,target_force,target_cd,0.005567865911871195 +illusion_1L,ppo,339,101.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,ppo,340,102.0,target_force,target_cd,0.005537909455597401 +illusion_1L,ppo,340,102.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,ppo,341,102.3,target_force,target_cd,0.005537074990570545 +illusion_1L,ppo,341,102.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,ppo,342,102.6,target_force,target_cd,0.005531030707061291 +illusion_1L,ppo,342,102.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,ppo,343,102.9,target_force,target_cd,0.00557838287204504 +illusion_1L,ppo,343,102.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,ppo,344,103.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,ppo,344,103.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,ppo,345,103.5,target_force,target_cd,0.005760743748396635 +illusion_1L,ppo,345,103.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,ppo,346,103.8,target_force,target_cd,0.005753485951572657 +illusion_1L,ppo,346,103.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,ppo,347,104.1,target_force,target_cd,0.005740967579185963 +illusion_1L,ppo,347,104.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,ppo,348,104.4,target_force,target_cd,0.005731895100325346 +illusion_1L,ppo,348,104.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,ppo,349,104.7,target_force,target_cd,0.00566871277987957 +illusion_1L,ppo,349,104.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,ppo,350,105.0,target_force,target_cd,0.005592959467321634 +illusion_1L,ppo,350,105.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,ppo,351,105.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,ppo,351,105.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,ppo,352,105.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,ppo,352,105.6,target_force,target_cl,0.000263598543824628 +illusion_1L,ppo,353,105.9,target_force,target_cd,0.005566527601331472 +illusion_1L,ppo,353,105.9,target_force,target_cl,0.000782874645665288 +illusion_1L,ppo,354,106.2,target_force,target_cd,0.005543616600334644 +illusion_1L,ppo,354,106.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,ppo,355,106.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,ppo,355,106.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,ppo,356,106.8,target_force,target_cd,0.005633705295622349 +illusion_1L,ppo,356,106.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,ppo,357,107.1,target_force,target_cd,0.005650329869240522 +illusion_1L,ppo,357,107.1,target_force,target_cl,0.002072976902127266 +illusion_1L,ppo,358,107.4,target_force,target_cd,0.005705440882593393 +illusion_1L,ppo,358,107.4,target_force,target_cl,0.002096022479236126 +illusion_1L,ppo,359,107.7,target_force,target_cd,0.005788230337202549 +illusion_1L,ppo,359,107.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,ppo,360,108.0,target_force,target_cd,0.00579201802611351 +illusion_1L,ppo,360,108.0,target_force,target_cl,0.001746693509630859 +illusion_1L,ppo,361,108.3,target_force,target_cd,0.005716915708035231 +illusion_1L,ppo,361,108.3,target_force,target_cl,0.001397387241013348 +illusion_1L,ppo,362,108.6,target_force,target_cd,0.00565684586763382 +illusion_1L,ppo,362,108.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,ppo,363,108.9,target_force,target_cd,0.005609786603599787 +illusion_1L,ppo,363,108.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,ppo,364,109.2,target_force,target_cd,0.005531110800802708 +illusion_1L,ppo,364,109.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,ppo,365,109.5,target_force,target_cd,0.005488442722707987 +illusion_1L,ppo,365,109.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,ppo,366,109.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,ppo,366,109.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,ppo,367,110.1,target_force,target_cd,0.005618898663669825 +illusion_1L,ppo,367,110.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,ppo,368,110.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,ppo,368,110.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,ppo,369,110.7,target_force,target_cd,0.005669464357197285 +illusion_1L,ppo,369,110.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,ppo,370,111.0,target_force,target_cd,0.005728682037442923 +illusion_1L,ppo,370,111.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,ppo,371,111.3,target_force,target_cd,0.005740906111896038 +illusion_1L,ppo,371,111.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,ppo,372,111.6,target_force,target_cd,0.00570477731525898 +illusion_1L,ppo,372,111.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,ppo,373,111.9,target_force,target_cd,0.005704289767891169 +illusion_1L,ppo,373,111.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,ppo,374,112.2,target_force,target_cd,0.005719874519854784 +illusion_1L,ppo,374,112.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,ppo,375,112.5,target_force,target_cd,0.005665991455316544 +illusion_1L,ppo,375,112.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,ppo,376,112.8,target_force,target_cd,0.005579077173024416 +illusion_1L,ppo,376,112.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,ppo,377,113.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,ppo,377,113.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,ppo,378,113.4,target_force,target_cd,0.005538465455174446 +illusion_1L,ppo,378,113.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,ppo,379,113.7,target_force,target_cd,0.005518500693142414 +illusion_1L,ppo,379,113.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,ppo,380,114.0,target_force,target_cd,0.005552514921873808 +illusion_1L,ppo,380,114.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,ppo,381,114.3,target_force,target_cd,0.005664129741489887 +illusion_1L,ppo,381,114.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,ppo,382,114.6,target_force,target_cd,0.005749957635998726 +illusion_1L,ppo,382,114.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,ppo,383,114.9,target_force,target_cd,0.005759336985647678 +illusion_1L,ppo,383,114.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,ppo,384,115.2,target_force,target_cd,0.005756254307925701 +illusion_1L,ppo,384,115.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,ppo,385,115.5,target_force,target_cd,0.005749706644564867 +illusion_1L,ppo,385,115.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,ppo,386,115.8,target_force,target_cd,0.005683912429958582 +illusion_1L,ppo,386,115.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,ppo,387,116.1,target_force,target_cd,0.005598609335720539 +illusion_1L,ppo,387,116.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,ppo,388,116.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,ppo,388,116.4,target_force,target_cl,0.000428010243922472 +illusion_1L,ppo,389,116.7,target_force,target_cd,0.005592026747763157 +illusion_1L,ppo,389,116.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,ppo,390,117.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,ppo,390,117.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,ppo,391,117.3,target_force,target_cd,0.005552446935325861 +illusion_1L,ppo,391,117.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,ppo,392,117.6,target_force,target_cd,0.005589765962213278 +illusion_1L,ppo,392,117.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,ppo,393,117.9,target_force,target_cd,0.00562874274328351 +illusion_1L,ppo,393,117.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,ppo,394,118.2,target_force,target_cd,0.005641409661620855 +illusion_1L,ppo,394,118.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,ppo,395,118.5,target_force,target_cd,0.005687114782631397 +illusion_1L,ppo,395,118.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,ppo,396,118.8,target_force,target_cd,0.005764052737504244 +illusion_1L,ppo,396,118.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,ppo,397,119.1,target_force,target_cd,0.005783763248473406 +illusion_1L,ppo,397,119.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,ppo,398,119.4,target_force,target_cd,0.005733401048928499 +illusion_1L,ppo,398,119.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,ppo,399,119.7,target_force,target_cd,0.005679980851709843 +illusion_1L,ppo,399,119.7,target_force,target_cl,-0.001109990873374045 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_manifest.json new file mode 100644 index 0000000..5ce70e9 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1L", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/illusion_1L__ppo__f-ppo__si-600.npz", + "sample_interval": 600, + "conv_len": 36, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150, + "target_forces": 400, + "target_phase": 400 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_wide.csv new file mode 100644 index 0000000..3f57bda --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1L,ppo,0,0.0,1.0375226736068726,0.3374488055706024,0.8509731292724609,0.5160437226295471,0.9453536868095398,0.24021266400814056,0.0018354944186285138,-0.00014163956802804023,0.0012975177960470319,0.0026755118742585182,0.00149956822860986,-0.0030051087960600853,0.4128711223602295,-0.5174829959869385,0.25394558906555176,0.004128711223602295,-0.005174829959869385,0.0025394558906555176,0.005671756807714701,-0.0007422934286296368,0 +illusion_1L,ppo,1,0.3,0.9471867084503174,0.3607480227947235,0.8933017253875732,0.5149787664413452,0.9919725656509399,0.2709277868270874,0.001849331078119576,-0.0002483846037648618,0.0013760090805590153,0.0025020097382366657,0.0017225123010575771,-0.002692776033654809,0.3294954001903534,-0.8282539844512938,0.09794557094573975,0.003294954001903534,-0.008282539844512939,0.0009794557094573975,0.0056210970506072044,-0.0002578797866590321,1 +illusion_1L,ppo,2,0.6,0.8894060254096985,0.33720260858535767,0.9221140742301941,0.5271353721618652,1.0398662090301514,0.2958115339279175,0.0018572324188426137,-0.00029840978095307946,0.0013768336502835155,0.0024749129079282284,0.0019250366603955626,-0.002384850289672613,0.25689882040023804,-1.125978410243988,0.15486669540405273,0.0025689882040023804,-0.011259784102439881,0.0015486669540405273,0.005563950631767511,0.00024165630748029798,2 +illusion_1L,ppo,3,0.9,0.8429216742515564,0.29541274905204773,0.9400175213813782,0.5452601909637451,1.0900286436080933,0.31569427251815796,0.0018657654291018844,-0.0003141553606837988,0.0013411134714260697,0.0025724833831191063,0.0020628501661121845,-0.0021157735027372837,0.21210810542106628,-1.2509388327598572,0.27338624000549316,0.002121081054210663,-0.012509388327598571,0.0027338624000549316,0.005538197699934244,0.000727235630620271,3 +illusion_1L,ppo,4,1.2,0.7984023690223694,0.239760160446167,0.945169985294342,0.5544612407684326,1.1441168785095215,0.330527126789093,0.0018692567246034741,-0.00029028559220023453,0.0013219329994171858,0.002760856645181775,0.0021234790328890085,-0.001914801774546504,0.16988377273082733,-1.2296182513237,0.41963624954223633,0.0016988377273082734,-0.012296182513236999,0.004196362495422363,0.005544575862586498,0.001170451520010829,4 +illusion_1L,ppo,5,1.5,0.7597245573997498,0.16805389523506165,0.9316152930259705,0.5258549451828003,1.2039133310317993,0.3390762507915497,0.0018663473892956972,-0.0002418103103991598,0.0013382340548560023,0.0029739385936409235,0.0021034732926636934,-0.0018145388457924128,0.12533028423786163,-1.1155720949172974,0.5676670074462891,0.0012533028423786163,-0.011155720949172974,0.005676670074462891,0.005573783535510302,0.0015451861545443535,5 +illusion_1L,ppo,6,1.8,0.7380070090293884,0.08513016253709793,0.8945594429969788,0.4238448441028595,1.2699387073516846,0.33746102452278137,0.001851552166044712,-0.00018074331455864012,0.0013657016679644585,0.0031478283926844597,0.0020181720610708,-0.0018144123023375869,0.07037842273712158,-0.9775072336196899,0.6702197790145874,0.0007037842273712159,-0.0097750723361969,0.006702197790145874,0.005636546760797501,0.001829120796173811,6 +illusion_1L,ppo,7,2.1,0.7436611652374268,0.004811604507267475,0.8393206000328064,0.23143361508846283,1.3373268842697144,0.31526613235473633,0.001838819938711822,-0.00011837229249067605,0.0013951754663139582,0.003252993570640683,0.0019125028047710657,-0.0018594292923808098,0.027003467082977295,-0.8692138195037842,0.6889753341674805,0.00027003467082977297,-0.008692138195037842,0.006889753341674805,0.005716180428862572,0.00200505624525249,7 +illusion_1L,ppo,8,2.4,0.775005042552948,-0.06162697449326515,0.7841556668281555,-0.028940575197339058,1.3855599164962769,0.24944575130939484,0.001832657027989626,-6.566700176335871e-05,0.0014267594087868929,0.0032959298696368933,0.0018211058340966702,-0.0018989572999998927,0.028988629579544064,-0.8136594295501709,0.6564958095550537,0.00028988629579544065,-0.008136594295501709,0.006564958095550537,0.005756895989179611,0.0020619675051420927,8 +illusion_1L,ppo,9,2.7,0.8178912997245789,-0.11677128076553345,0.7534258961677551,-0.2918355464935303,1.3743029832839966,0.11204474419355392,0.0018319326918572187,-4.4799671741202474e-05,0.001454434241168201,0.003288513282313943,0.0017518647946417332,-0.0019116586772724986,0.10217778384685516,-0.806736946105957,0.6199855804443359,0.0010217778384685517,-0.00806736946105957,0.00619985580444336,0.005743067711591721,0.001995726488530636,9 +illusion_1L,ppo,10,3.0,0.86175936460495,-0.16677244007587433,0.7647352814674377,-0.46738287806510925,1.2796297073364258,-0.08300847560167313,0.001840498996898532,-6.866566400276497e-05,0.0014722064370289445,0.0032489350996911526,0.0017073994968086481,-0.0019022257765755057,0.24496163427829742,-0.8428184986114502,0.6158219575881958,0.0024496163427829743,-0.008428184986114503,0.006158219575881958,0.005714329890906811,0.001809444511309266,10 +illusion_1L,ppo,11,3.3,0.9059373736381531,-0.21066954731941223,0.8115107417106628,-0.5185759663581848,1.1398735046386719,-0.2567155659198761,0.0018675329629331827,-0.00013953585585113615,0.001476583885960281,0.003198356134817004,0.0016883232165127993,-0.0018980391323566437,0.4218283593654633,-0.8964096307754518,0.6734869480133057,0.004218283593654633,-0.008964096307754518,0.006734869480133057,0.005683825351297855,0.0015134024433791637,11 +illusion_1L,ppo,12,3.6,0.9516206979751587,-0.24683567881584167,0.8632249236106873,-0.5137898921966553,1.0177967548370361,-0.34355849027633667,0.0019122249213978648,-0.0002450167085044086,0.0014640645822510123,0.0031483606435358524,0.0016883831704035401,-0.0019365723710507154,0.5642961859703064,-0.9224710464477538,0.8058922290802002,0.005642961859703064,-0.009224710464477539,0.008058922290802002,0.0056352922692894936,0.0011245590867474675,12 +illusion_1L,ppo,13,3.9,0.9988129734992981,-0.27612173557281494,0.9019057154655457,-0.5148921012878418,0.9375264644622803,-0.35208848118782043,0.001954535720869899,-0.00036185263888910413,0.0014215548289939761,0.0031080455519258976,0.0016967407427728176,-0.002041535684838891,0.6448768377304077,-0.9251049757003785,0.9836367368698121,0.006448768377304077,-0.009251049757003785,0.009836367368698121,0.005594110582023859,0.0006656530895270407,13 +illusion_1L,ppo,14,4.2,1.0476579666137695,-0.2997717559337616,0.9283431172370911,-0.5284948945045471,0.8841447830200195,-0.32353726029396057,0.0019926028326153755,-0.00045446588774211705,0.0013450123369693756,0.0030762276146560907,0.001717992010526359,-0.002208963967859745,0.6821967959403992,-0.9096033573150635,1.1476061344146729,0.006821967959403992,-0.009096033573150634,0.01147606134414673,0.005593768786638975,0.00016393783153034747,14 +illusion_1L,ppo,15,4.5,1.0988266468048096,-0.31846433877944946,0.9438820481300354,-0.5466546416282654,0.837950587272644,-0.27958229184150696,0.002026102039963007,-0.0005330572603270411,0.0012463885359466076,0.003048120066523552,0.0017608978087082505,-0.002419262658804655,0.7162553668022156,-0.8849141597747802,1.2559635639190674,0.007162553668022156,-0.008849141597747802,0.012559635639190674,0.005601159762591124,-0.0003503881162032485,15 +illusion_1L,ppo,16,4.8,1.1536310911178589,-0.33195120096206665,0.9453018307685852,-0.5528649091720581,0.7928276658058167,-0.22112755477428436,0.002051789779216051,-0.0006058579310774803,0.0011336987372487783,0.0030211191624403,0.0018222961807623506,-0.0026544840075075626,0.7546033263206482,-0.8746609687805176,1.3067713975906372,0.007546033263206482,-0.008746609687805176,0.013067713975906373,0.005579833872616291,-0.0008459693053737283,16 +illusion_1L,ppo,17,5.1,1.213645577430725,-0.3385801911354065,0.9260690212249756,-0.5164026618003845,0.7545931935310364,-0.14647622406482697,0.0020661004818975925,-0.0006697657518088818,0.001009455299936235,0.0029884115792810917,0.0018866838654503226,-0.002906504785642028,0.7883597612380981,-0.8874204158782959,1.3118666410446167,0.007883597612380982,-0.008874204158782959,0.013118666410446168,0.005568155087530613,-0.001292198314331472,17 +illusion_1L,ppo,18,5.4,1.2793337106704712,-0.33398693799972534,0.8826761841773987,-0.40313929319381714,0.7351318597793579,-0.062183283269405365,0.002070168498903513,-0.0007266292814165354,0.0008874382474459708,0.0029365092050284147,0.0019524150993674994,-0.0031600322108715773,0.7865432500839233,-0.896153450012207,1.2702380418777466,0.007865432500839233,-0.00896153450012207,0.012702380418777467,0.005600422155112028,-0.001661122078076005,18 +illusion_1L,ppo,19,5.7,1.3454267978668213,-0.3072746694087982,0.8228712677955627,-0.20163826644420624,0.7436441779136658,0.017930893227458,0.002065118169412017,-0.0007707190816290677,0.0007893874426372349,0.002849266165867448,0.0020201511215418577,-0.0033878718968480825,0.7011071443557739,-0.8554322719573975,1.1829330325126648,0.00701107144355774,-0.008554322719573975,0.011829330325126649,0.005640667863190174,-0.001929230522364378,19 +illusion_1L,ppo,20,6.0,1.3902209997177124,-0.2353525310754776,0.765914261341095,0.059900976717472076,0.7759884595870972,0.08552289009094238,0.0020379729103296995,-0.0007889300468377769,0.0007362977485172451,0.002715555252507329,0.002082756720483303,-0.0035580412950366735,0.5177245736122131,-0.7463244199752808,1.0522297620773315,0.005177245736122132,-0.007463244199752808,0.010522297620773316,0.005670505575835705,-0.0020790090784430504,20 +illusion_1L,ppo,21,6.3,1.3737343549728394,-0.09463801234960556,0.7339732646942139,0.3150845766067505,0.8179504871368408,0.14470845460891724,0.001990692224353552,-0.0007781032472848892,0.0007425039657391608,0.0025419238954782486,0.0021374451462179422,-0.003630115883424878,0.2901367247104645,-0.6257458925247192,0.8750878572463989,0.0029013672471046447,-0.006257458925247193,0.00875087857246399,0.005723041016608477,-0.002100147772580385,21 +illusion_1L,ppo,22,6.6,1.278484582901001,0.0913107618689537,0.7413313984870911,0.48133793473243713,0.8612738251686096,0.19969044625759125,0.0019393723923712969,-0.0007432555430568755,0.0008075692458078265,0.002357003977522254,0.0021935920231044292,-0.0035756949800997972,0.10820713639259338,-0.6038949489593506,0.6715447902679443,0.0010820713639259339,-0.006038949489593506,0.006715447902679444,0.005777770187705755,-0.0019903185311704874,22 +illusion_1L,ppo,23,6.9,1.1459413766860962,0.24514219164848328,0.7798910140991211,0.5305380821228027,0.9058322310447693,0.24876365065574646,0.001902565942145884,-0.0007007956737652421,0.0009068516083061695,0.002204200252890587,0.0022592295426875353,-0.0033975529950112104,0.036512404680252075,-0.7488143444061279,0.48416590690612793,0.00036512404680252077,-0.007488143444061279,0.004841659069061279,0.005763606168329716,-0.0017554573714733124,23 +illusion_1L,ppo,24,7.2,1.030990719795227,0.3158578872680664,0.8195937871932983,0.5288978219032288,0.9523329734802246,0.2909671366214752,0.0018773935735225677,-0.0006593016441911459,0.0010140889789909124,0.002121844096109271,0.0023241632152348757,-0.00313766417093575,0.056582450866699226,-1.0047824382781982,0.3746471405029297,0.0005658245086669922,-0.010047824382781982,0.003746471405029297,0.005690249614417553,-0.0014095163205638528,24 +illusion_1L,ppo,25,7.5,0.9526459574699402,0.31734880805015564,0.8424643278121948,0.5347093939781189,1.0009387731552124,0.3273037374019623,0.0018600221956148744,-0.000614882679656148,0.0011316367890685797,0.0021299077197909355,0.002367034088820219,-0.002866912866011262,0.08633923530578613,-1.239278793334961,0.3721601963043213,0.0008633923530578613,-0.01239278793334961,0.003721601963043213,0.005629390478134155,-0.0009736909996718168,25 +illusion_1L,ppo,26,7.8,0.8998454809188843,0.2869081497192383,0.8497701287269592,0.5533736348152161,1.0523467063903809,0.3589429259300232,0.0018491157097741961,-0.0005553464288823307,0.0012683807872235775,0.0022336922120302916,0.0023761142510920763,-0.002649314235895872,0.07249036431312561,-1.3751775026321411,0.42871713638305664,0.0007249036431312561,-0.013751775026321411,0.004287171363830567,0.005584970116615295,-0.00047515766345895827,26 +illusion_1L,ppo,27,8.1,0.8572351932525635,0.2453612983226776,0.8447631597518921,0.5696261525154114,1.10765540599823,0.3867383599281311,0.0018407665193080902,-0.000472003361210227,0.0014082746347412467,0.0024321512319147587,0.00235207611694932,-0.002508736914023757,0.020029067993164062,-1.41354900598526,0.47215747833251953,0.00020029067993164063,-0.0141354900598526,0.004721574783325196,0.005531984381377697,5.460584725369699e-05,27 +illusion_1L,ppo,28,8.4,0.8189427256584167,0.1958024799823761,0.8265174627304077,0.5586892366409302,1.1680272817611694,0.41102686524391174,0.0018252438167110085,-0.00036454235669225454,0.001524752238765359,0.0027105503249913454,0.0022948652040213346,-0.002427548635751009,-0.04301455616950989,-1.3756024837493896,0.4811979532241821,-0.0004301455616950989,-0.013756024837493898,0.004811979532241821,0.005518179386854172,0.0005818125791847706,28 +illusion_1L,ppo,29,8.7,0.7886267304420471,0.13682913780212402,0.7910802364349365,0.49635064601898193,1.2341549396514893,0.4300763010978699,0.0018062295857816935,-0.0002396561176283285,0.0016094936290755868,0.0030325823463499546,0.002204617252573371,-0.0023704178165644407,-0.08725950121879578,-1.2797636985778809,0.47511100769042974,-0.0008725950121879578,-0.012797636985778809,0.004751110076904297,0.005577066447585821,0.0010725450702011585,29 +illusion_1L,ppo,30,9.0,0.7743210196495056,0.07099664211273193,0.7375630736351013,0.36688876152038574,1.302443027496338,0.4336860775947571,0.0017944804858416319,-0.00011360472853993997,0.0016741862054914236,0.0033475307282060385,0.0020826486870646477,-0.0023109563626348972,-0.09906691312789918,-1.1430634260177612,0.4806540012359619,-0.0009906691312789918,-0.011430634260177612,0.004806540012359619,0.005638485308736563,0.0014949759934097528,30 +illusion_1L,ppo,31,9.3,0.7810186147689819,0.004670928232371807,0.6757546663284302,0.16629484295845032,1.3549103736877441,0.389077365398407,0.0017919292440637946,-3.0097892249614233e-06,0.0017313946736976504,0.0036039110273122787,0.0019346607150509953,-0.0022357692942023277,-0.07682400941848755,-0.9922661781311036,0.5115625858306885,-0.0007682400941848755,-0.009922661781311036,0.005115625858306885,0.005652999971061945,0.001821481972001493,31 +illusion_1L,ppo,32,9.6,0.8044622540473938,-0.05877789855003357,0.6257057785987854,-0.08567027747631073,1.3554188013076782,0.24251265823841095,0.0017998319817706943,7.842032209737226e-05,0.0017892835894599557,0.0037694196216762066,0.0017815063474699855,-0.00213986705057323,-0.004255503416061401,-0.869076132774353,0.5610411167144775,-4.2555034160614016e-05,-0.00869076132774353,0.0056104111671447755,0.005672627128660679,0.002030503237619996,32 +illusion_1L,ppo,33,9.9,0.8359327912330627,-0.1208823025226593,0.6085816025733948,-0.3365563452243805,1.2873367071151733,-0.010480893775820732,0.0018229599809274077,0.00011000534141203389,0.0018500000005587935,0.0038384192157536745,0.0016561673255637288,-0.0020296729635447264,0.14060327410697937,-0.8076941967010498,0.6139907836914062,0.0014060327410697936,-0.008076941967010498,0.006139907836914062,0.005716722924262285,0.0021080211736261845,33 +illusion_1L,ppo,34,10.2,0.8721189498901367,-0.18073798716068268,0.6366637945175171,-0.5157557725906372,1.180586338043213,-0.28075888752937317,0.0018650750862434506,7.833944982849061e-05,0.0019032814307138324,0.0038300922606140375,0.0015827142633497715,-0.001920624403283,0.3322700560092926,-0.8008813858032227,0.6754286289215088,0.003322700560092926,-0.008008813858032227,0.006754286289215088,0.0057253409177064896,0.0020485445857048035,34 +illusion_1L,ppo,35,10.5,0.9136397242546082,-0.2345990538597107,0.7005003094673157,-0.5897688865661621,1.0719939470291138,-0.46903035044670105,0.0019181984243914485,-9.125295036938041e-06,0.001927076024003327,0.0037636025808751583,0.0015578308375552297,-0.0018420590786263347,0.5017005205154419,-0.8011865615844725,0.7847187519073485,0.005017005205154419,-0.008011865615844726,0.007847187519073486,0.005700415000319481,0.001855533104389906,35 +illusion_1L,ppo,36,10.8,0.9601930975914001,-0.28122374415397644,0.7685874700546265,-0.6073232293128967,0.9842718243598938,-0.5376080870628357,0.001977571751922369,-0.00012434422387741506,0.0019109062850475311,0.003653407096862793,0.0015759865054860711,-0.0018280623480677605,0.6075886487960815,-0.7913377285003662,0.9542202949523926,0.006075886487960816,-0.007913377285003662,0.009542202949523926,0.00570518197491765,0.0015412241918966174,36 +illusion_1L,ppo,37,11.1,1.0110523700714111,-0.3215325176715851,0.8198941349983215,-0.6242270469665527,0.9205188751220703,-0.5236228704452515,0.0020355493761599064,-0.00025192403700202703,0.0018512204987928271,0.003532897215336561,0.0016412663972005248,-0.001903125667013228,0.6666239500045776,-0.8080600500106812,1.1466363668441772,0.0066662395000457765,-0.008080600500106812,0.011466363668441773,0.005713063757866621,0.0011258659651502967,37 +illusion_1L,ppo,38,11.4,1.0664502382278442,-0.3566347062587738,0.8535960912704468,-0.6498956680297852,0.8675900101661682,-0.4819049537181854,0.002084693405777216,-0.00036091209040023386,0.0017450058367103338,0.0034427389036864042,0.0017520152032375336,-0.002075017662718892,0.7013704180717468,-0.8496019840240479,1.3080418109893799,0.007013704180717469,-0.008496019840240478,0.013080418109893799,0.00565308379009366,0.0006364086293615401,38 +illusion_1L,ppo,39,11.7,1.1278988122940063,-0.3870536983013153,0.8709807395935059,-0.6733755469322205,0.8142240643501282,-0.43067875504493713,0.0021221889182925224,-0.00045889889588579535,0.0015941980527713895,0.0033969637006521225,0.0018875618698075414,-0.002341371728107333,0.7466434836387634,-0.8896112442016602,1.403750240802765,0.007466434836387635,-0.008896112442016602,0.014037502408027648,0.005567865911871195,0.00010473776637809351,39 +illusion_1L,ppo,40,12.0,1.1976598501205444,-0.4115005433559418,0.8694872260093689,-0.6660751104354858,0.7589534521102905,-0.36129143834114075,0.0021422267891466618,-0.0005536182434298098,0.001413932186551392,0.0033806448336690664,0.002031371695920825,-0.0026807303074747324,0.7991185784339905,-0.9207205772399902,1.424617350101471,0.007991185784339905,-0.009207205772399902,0.01424617350101471,0.005537909455597401,-0.0004344300541561097,40 +illusion_1L,ppo,41,12.3,1.2756567001342773,-0.4217108190059662,0.847594141960144,-0.5840165019035339,0.707697868347168,-0.2629846930503845,0.0021544285118579865,-0.0006372001953423023,0.001219587167724967,0.003359125927090645,0.002166847698390484,-0.0030664289370179176,0.831497848033905,-0.939168691635132,1.3741275072097778,0.00831497848033905,-0.00939168691635132,0.013741275072097778,0.005537074990570545,-0.000945847132243216,41 +illusion_1L,ppo,42,12.6,1.3469818830490112,-0.38743317127227783,0.8129525780677795,-0.39850369095802307,0.6706627607345581,-0.1360902339220047,0.00215985719114542,-0.0007187439478002489,0.0010238062823191285,0.0032934851478785276,0.002287490526214242,-0.0034453251864761114,0.807990550994873,-0.9302222728729248,1.2542980313301086,0.008079905509948731,-0.009302222728729248,0.012542980313301087,0.005531030707061291,-0.0013960730284452438,42 +illusion_1L,ppo,43,12.9,1.3718081712722778,-0.25576385855674744,0.7821868062019348,-0.12427196651697159,0.6600123047828674,0.0021291538141667843,0.002143407939001918,-0.0007811688119545579,0.0008434663177467883,0.0031618489883840084,0.002384023740887642,-0.0037584786769002676,0.7075952887535095,-0.8936201333999635,1.0860568284988403,0.007075952887535096,-0.008936201333999635,0.010860568284988404,0.00557838287204504,-0.0017556919483467937,43 +illusion_1L,ppo,44,13.2,1.3278337717056274,-0.029321517795324326,0.7695428133010864,0.18347957730293274,0.6850913763046265,0.12090272456407547,0.0021033401135355234,-0.0008404384134337306,0.0007117681670933962,0.002969105262309313,0.0024695582687854767,-0.003940446302294731,0.5649409890174866,-0.8536139726638794,0.8652915954589844,0.0056494098901748654,-0.008536139726638794,0.008652915954589844,0.0056895059533417225,-0.0020012580789625645,44 +illusion_1L,ppo,45,13.5,1.24546480178833,0.19661475718021393,0.7788084149360657,0.44954293966293335,0.7404366731643677,0.20089729130268097,0.0020620892755687237,-0.0008777371840551496,0.0006646558176726103,0.0027422651182860136,0.0025612276513129473,-0.003948666620999575,0.3918724060058594,-0.8205642700195312,0.6348626613616943,0.003918724060058594,-0.008205642700195312,0.006348626613616943,0.005760743748396635,-0.002116837538778782,45 +illusion_1L,ppo,46,13.8,1.156857967376709,0.3422374129295349,0.8060730695724487,0.6025360226631165,0.8059236407279968,0.2547140419483185,0.00202039978466928,-0.0008868232253007591,0.0007127111312001944,0.002516645472496748,0.002657011616975069,-0.0037924449425190687,0.22457003593444824,-0.8146734237670897,0.4811018705368042,0.0022457003593444823,-0.008146734237670898,0.004811018705368042,0.005753485951572657,-0.0020950448233634233,46 +illusion_1L,ppo,47,14.1,1.0770716667175293,0.3976116180419922,0.8412583470344543,0.6365861296653748,0.868950605392456,0.2994357943534851,0.001982646295800805,-0.0008614532416686416,0.0008328088442794979,0.0023319562897086143,0.0027331095188856125,-0.0035363149363547564,0.12063720822334288,-0.9067639112472533,0.4490048885345459,0.0012063720822334289,-0.009067639112472534,0.004490048885345459,0.005740967579185963,-0.0019375038100406528,47 +illusion_1L,ppo,48,14.4,1.010169506072998,0.3998449146747589,0.8710364699363708,0.6280050873756409,0.9293155670166016,0.3387066721916199,0.0019513292936608195,-0.0008101955754682422,0.0009905101032927632,0.002236142987385392,0.002763247350230813,-0.0032670809887349606,0.09370073676109314,-1.0961398482322693,0.4979405403137207,0.0009370073676109314,-0.010961398482322693,0.004979405403137207,0.005731895100325346,-0.0016547086415812373,48 +illusion_1L,ppo,49,14.7,0.9510342478752136,0.38570863008499146,0.8895092010498047,0.6297786831855774,0.9893692135810852,0.37363874912261963,0.0019247891614213586,-0.0007371483952738345,0.0011667192447930574,0.0022603890392929316,0.002739804098382592,-0.0030523992609232664,0.07773202657699585,-1.2668810486793518,0.5542806386947632,0.0007773202657699585,-0.012668810486793518,0.005542806386947632,0.00566871277987957,-0.0012652967125177383,49 +illusion_1L,ppo,50,15.0,0.8932880759239197,0.367637038230896,0.8969422578811646,0.6472489833831787,1.0514429807662964,0.40606552362442017,0.0018951072124764323,-0.000644011830445379,0.001341716619208455,0.002401165198534727,0.0026710135862231255,-0.0029156613163650036,0.03498592972755432,-1.351611316204071,0.5678526163101196,0.0003498592972755432,-0.01351611316204071,0.005678526163101196,0.005592959467321634,-0.0007947873091325164,50 +illusion_1L,ppo,51,15.3,0.834106981754303,0.341299444437027,0.8919541239738464,0.6706472039222717,1.1186230182647705,0.4372713267803192,0.0018630919512361288,-0.0005281020421534777,0.0014949168544262648,0.002635284559801221,0.0025742575526237488,-0.002828612457960844,-0.030452609062194824,-1.350946307182312,0.5284032821655273,-0.00030452609062194826,-0.01350946307182312,0.0052840328216552735,0.0055853561498224735,-0.000273875892162323,51 +illusion_1L,ppo,52,15.6,0.7746744751930237,0.29684990644454956,0.8695799708366394,0.6741779446601868,1.1949329376220703,0.46659794449806213,0.0018383747665211558,-0.0003879139549098909,0.0016178363002836704,0.002926739864051342,0.0024581581819802523,-0.002744050696492195,-0.10577055811882019,-1.2696788907051086,0.46946597099304205,-0.0010577055811882019,-0.012696788907051088,0.00469465970993042,0.0055999187752604485,0.000263598543824628,52 +illusion_1L,ppo,53,15.9,0.7205812931060791,0.22602678835391998,0.8265357613563538,0.6131119728088379,1.2818204164505005,0.48326584696769714,0.0018253858434036374,-0.00022774410899728537,0.0017164872260764241,0.0032271926756948233,0.002316804835572839,-0.002632611198350787,-0.17569047212600708,-1.1239449977874756,0.44073009490966797,-0.0017569047212600709,-0.011239449977874755,0.00440730094909668,0.005566527601331472,0.000782874645665288,53 +illusion_1L,ppo,54,16.2,0.6813037395477295,0.12846603989601135,0.7711107134819031,0.448738694190979,1.3618847131729126,0.44038212299346924,0.001822541351430118,-6.406634929589927e-05,0.0018046244513243437,0.003487733891233802,0.0021435583475977182,-0.002490832470357418,-0.2144383192062378,-0.9617156982421875,0.4691596031188965,-0.002144383192062378,-0.009617156982421875,0.004691596031188965,0.005543616600334644,0.0012505297781899571,54 +illusion_1L,ppo,55,16.5,0.6682659983634949,0.0166300218552351,0.7250003814697266,0.18269890546798706,1.39510977268219,0.268337219953537,0.0018312790198251605,8.24288435978815e-05,0.0019010913092643023,0.0036734133027493954,0.001955582993105054,-0.0023271136451512575,-0.19116562604904175,-0.8303751945495605,0.5305538177490234,-0.0019116562604904175,-0.008303751945495605,0.005305538177490235,0.0055874851532280445,0.0016366330673918128,55 +illusion_1L,ppo,56,16.8,0.6903764605522156,-0.08569347113370895,0.7084858417510986,-0.13256318867206573,1.3720608949661255,-0.0027887679170817137,0.001853265566751361,0.00018227769760414958,0.002012107288464904,0.0037689851596951485,0.001787116751074791,-0.002150406828150153,-0.07633191347122192,-0.7545206546783447,0.5716449022293091,-0.0007633191347122193,-0.007545206546783447,0.005716449022293091,0.005633705295622349,0.0019166492857038975,56 +illusion_1L,ppo,57,17.1,0.7438055872917175,-0.16043274104595184,0.7251307368278503,-0.42123541235923767,1.3120654821395874,-0.2597823739051819,0.0018828435568138957,0.00021209265105426311,0.002117692958563566,0.0037809356581419706,0.0016642442205920815,-0.0019702622666954994,0.1142217367887497,-0.739802360534668,0.5899703502655029,0.001142217367887497,-0.00739802360534668,0.00589970350265503,0.005650329869240522,0.002072976902127266,57 +illusion_1L,ppo,58,17.4,0.8096762895584106,-0.2144918292760849,0.7669749855995178,-0.6112399697303772,1.2298774719238281,-0.42355918884277344,0.0019156752387061715,0.00016359252913389355,0.002183217089623213,0.0037358212284743786,0.001594427158124745,-0.0018110963283106685,0.3340049386024475,-0.7897028923034668,0.6399770975112915,0.0033400493860244753,-0.007897028923034668,0.006399770975112915,0.005705440882593393,0.002096022479236126,58 +illusion_1L,ppo,59,17.7,0.8740595579147339,-0.26166296005249023,0.8218312859535217,-0.6697343587875366,1.143078088760376,-0.482025146484375,0.0019554360769689083,5.1571711082942784e-05,0.0021866902243345976,0.0036750161089003086,0.0015783612616360188,-0.001709634903818369,0.5194125771522522,-0.8740603923797607,0.764283299446106,0.005194125771522522,-0.008740603923797607,0.00764283299446106,0.005788230337202549,0.0019847527146339417,59 +illusion_1L,ppo,60,18.0,0.9362803101539612,-0.3031461238861084,0.8724143505096436,-0.659972608089447,1.0647858381271362,-0.47922423481941223,0.0020046625286340714,-8.596435509389266e-05,0.002131305867806077,0.003624006872996688,0.0016135139157995582,-0.001701121567748487,0.6140161156654358,-0.915480375289917,0.9547725915908813,0.006140161156654358,-0.00915480375289917,0.009547725915908814,0.00579201802611351,0.001746693509630859,60 +illusion_1L,ppo,61,18.3,0.9987241625785828,-0.3380153775215149,0.9084998369216919,-0.6556689739227295,0.9955412745475769,-0.459921270608902,0.0020544028375297785,-0.0002181231538997963,0.0020287760999053717,0.0035864778328686953,0.0016957701882347465,-0.0018016238464042544,0.6466363072395325,-0.9051017761230469,1.1486387252807617,0.006466363072395325,-0.009051017761230469,0.011486387252807618,0.005716915708035231,0.001397387241013348,61 +illusion_1L,ppo,62,18.6,1.0636496543884277,-0.36732015013694763,0.9306758642196655,-0.6701703667640686,0.9295425415039062,-0.43670958280563354,0.0020941770635545254,-0.0003319313982501626,0.0018885531462728977,0.0035653256345540285,0.0018188455142080784,-0.0020053833723068237,0.6777927875518799,-0.8896549940109253,1.2894996404647827,0.006777927875518799,-0.008896549940109253,0.012894996404647828,0.00565684586763382,0.0009593489812687039,62 +illusion_1L,ppo,63,18.9,1.1343082189559937,-0.39143845438957214,0.9391856789588928,-0.6919623017311096,0.8628941774368286,-0.40067383646965027,0.0021301584783941507,-0.00043828124762512743,0.0017186204204335809,0.0035604205913841724,0.0019674289505928755,-0.0022982351947575808,0.7304840087890625,-0.8867664337158203,1.3548786640167236,0.007304840087890625,-0.008867664337158203,0.013548786640167237,0.005609786603599787,0.0004605941940099001,63 +illusion_1L,ppo,64,19.2,1.214428424835205,-0.4076748788356781,0.9296053051948547,-0.6855095028877258,0.7963733673095703,-0.33700186014175415,0.0021612541750073433,-0.0005369035643525422,0.001523590530268848,0.003554125316441059,0.0021177446469664574,-0.002660550642758608,0.7897686958312988,-0.8953583240509033,1.3457780480384827,0.007897686958312989,-0.008953583240509034,0.013457780480384826,0.005531110800802708,-6.716222560498863e-05,64 +illusion_1L,ppo,65,19.5,1.3021705150604248,-0.4014565348625183,0.9008322954177856,-0.5850756168365479,0.7365506291389465,-0.23543037474155426,0.0021789763122797012,-0.0006402891594916582,0.0013036809395998716,0.0035136230289936066,0.0022491132840514183,-0.0030561918392777443,0.832369327545166,-0.9115774631500244,1.2727717757225037,0.00832369327545166,-0.009115774631500245,0.012727717757225037,0.005488442722707987,-0.0005905209691263735,65 +illusion_1L,ppo,66,19.8,1.3698853254318237,-0.3265778422355652,0.8672681450843811,-0.3498671352863312,0.6952426433563232,-0.10003434866666794,0.0021827775053679943,-0.0007407597149722278,0.0010795914568006992,0.0034033500123769045,0.0023605956230312586,-0.003429834498092532,0.8042361140251159,-0.8994908332824706,1.1545217037200928,0.00804236114025116,-0.008994908332824706,0.011545217037200928,0.0055447774939239025,-0.0010764988837763667,66 +illusion_1L,ppo,67,20.1,1.3700799942016602,-0.14360128343105316,0.8486930131912231,-0.022344086319208145,0.6860862970352173,0.04491943120956421,0.0021690628491342068,-0.0008188437204807997,0.0008912404300644994,0.003209018148481846,0.002459428971633315,-0.0037228616420179605,0.6861271858215332,-0.8426651954650879,0.9914451837539673,0.0068612718582153325,-0.00842665195465088,0.009914451837539673,0.005618898663669825,-0.0014945860020816326,67 +illusion_1L,ppo,68,20.4,1.3083117008209229,0.0793919712305069,0.8520793914794922,0.3024657368659973,0.7166262269020081,0.163059264421463,0.0021346015855669975,-0.000878210470546037,0.0007718221168033779,0.0029541535768657923,0.00255809654481709,-0.0038734765257686377,0.5181270837783813,-0.7865550518035889,0.785930871963501,0.005181270837783814,-0.00786555051803589,0.00785930871963501,0.0056407577358186245,-0.0018186323577538133,68 +illusion_1L,ppo,69,20.7,1.225109338760376,0.24555166065692902,0.8715150952339172,0.5312384366989136,0.7761416435241699,0.23772229254245758,0.002087743254378438,-0.0009112809202633798,0.0007431491976603866,0.0026801174972206354,0.002655969699844718,-0.0038609886541962624,0.3320852518081665,-0.7563097476959229,0.6207139492034912,0.0033208525180816652,-0.007563097476959229,0.006207139492034912,0.005669464357197285,-0.00202845293097198,69 +illusion_1L,ppo,70,21.0,1.1428475379943848,0.3292003273963928,0.897553026676178,0.6175345182418823,0.8429237604141235,0.28570857644081116,0.0020403515081852674,-0.000905704393517226,0.0008090611081570387,0.0024297882337123156,0.002740532625466585,-0.003720361040905118,0.17433319985866547,-0.7829117774963378,0.5591609477996826,0.0017433319985866546,-0.007829117774963378,0.005591609477996826,0.005728682037442923,-0.002111055189743638,70 +illusion_1L,ppo,71,21.3,1.0711747407913208,0.3557681143283844,0.9215877056121826,0.613920271396637,0.9065346121788025,0.3238718807697296,0.002001049229875207,-0.0008677312871441245,0.0009407114121131599,0.0022462881170213223,0.0027883874718099833,-0.003522059880197048,0.09734523296356201,-0.914900541305542,0.5813659429550171,0.0009734523296356201,-0.00914900541305542,0.005813659429550171,0.005740906111896038,-0.0020614201202988625,71 +illusion_1L,ppo,72,21.6,1.0095266103744507,0.3585663139820099,0.9377228021621704,0.6013849377632141,0.9670974612236023,0.3568820655345917,0.001965427538380027,-0.0008063091081567109,0.001098312553949654,0.002166947117075324,0.002777987392619252,-0.00333505985327065,0.07371097803115845,-1.0974834561347961,0.631658673286438,0.0007371097803115845,-0.010974834561347962,0.00631658673286438,0.00570477731525898,-0.0018827876774594188,72 +illusion_1L,ppo,73,21.9,0.9525524973869324,0.35351377725601196,0.9447548389434814,0.6061394214630127,1.0267740488052368,0.38703683018684387,0.0019286058377474546,-0.0007238528924062848,0.0012613363796845078,0.002203947864472866,0.0027138234581798315,-0.0031966145616024733,0.047216206789016724,-1.2330639958381653,0.6594483852386475,0.00047216206789016727,-0.012330639958381653,0.006594483852386475,0.005704289767891169,-0.0015864415327087045,73 +illusion_1L,ppo,74,22.2,0.8957732915878296,0.340707004070282,0.9422146677970886,0.6262850761413574,1.0883232355117798,0.41634222865104675,0.0018945698393508792,-0.0006219740025699139,0.0014188692439347506,0.0023454627953469753,0.0026205091271549463,-0.0031013081315904856,-0.0015162527561187744,-1.286026120185852,0.6330937147140503,-1.5162527561187745e-05,-0.01286026120185852,0.006330937147140503,0.005719874519854784,-0.0011909975437447429,74 +illusion_1L,ppo,75,22.5,0.8374233841896057,0.3127579092979431,0.9267184734344482,0.650292694568634,1.15577232837677,0.4459109902381897,0.0018676575273275375,-0.0004970358568243682,0.0015590802067890763,0.002568257739767432,0.0025154633913189173,-0.003013801760971546,-0.07326167821884155,-1.2560788989067078,0.5632666349411011,-0.0007326167821884156,-0.012560788989067078,0.005632666349411011,0.005665991455316544,-0.0007212489726953208,75 +illusion_1L,ppo,76,22.8,0.7795230150222778,0.2602718770503998,0.8918140530586243,0.6455234289169312,1.2344083786010742,0.474083811044693,0.0018488517962396145,-0.0003469360526651144,0.0016729943454265594,0.0028397405985742807,0.00239369529299438,-0.0029016942717134953,-0.15300801396369934,-1.1588584184646606,0.5027236938476562,-0.0015300801396369934,-0.011588584184646606,0.005027236938476563,0.005579077173024416,-0.00020663297618739307,76 +illusion_1L,ppo,77,23.1,0.729034960269928,0.17748281359672546,0.8362038135528564,0.5556111931800842,1.323722243309021,0.48193633556365967,0.0018409405602142215,-0.00018065611948259175,0.0017708259401842952,0.003116228152066469,0.0022468960378319025,-0.002758945804089308,-0.2181180119514465,-1.0239768028259277,0.49491024017333984,-0.002181180119514465,-0.010239768028259278,0.004949102401733399,0.0055456943809986115,0.00032058797660283744,77 +illusion_1L,ppo,78,23.4,0.6976228952407837,0.06947970390319824,0.7769291400909424,0.34149834513664246,1.392464280128479,0.3966153860092163,0.0018486400367692113,-1.36000353450072e-05,0.0018708322895690799,0.003358996706083417,0.002078795339912176,-0.0025927964597940445,-0.2452036738395691,-0.8956518173217773,0.5272719860076904,-0.002452036738395691,-0.008956518173217774,0.005272719860076904,0.005538465455174446,0.0008273206767626107,78 +illusion_1L,ppo,79,23.7,0.6980652213096619,-0.04349303990602493,0.7412261962890625,0.032969389110803604,1.3947871923446655,0.15792882442474365,0.001863414654508233,0.0001262388250324875,0.0019780322909355164,0.0035430050920695066,0.0019088268745690584,-0.002406192012131214,-0.19024205207824707,-0.8119020462036133,0.5464820861816406,-0.0019024205207824707,-0.008119020462036133,0.005464820861816406,0.005518500693142414,0.0012816928792744875,79 +illusion_1L,ppo,80,24.0,0.7347306609153748,-0.13559812307357788,0.7414088845252991,-0.28805938363075256,1.3429549932479858,-0.1355571746826172,0.0018802434206008911,0.00020500879327300936,0.0020790935959666967,0.003656237618997693,0.0017639752477407455,-0.0021976360585540533,-0.01969665288925171,-0.791494607925415,0.5222616195678711,-0.0001969665288925171,-0.007914946079254151,0.005222616195678711,0.005552514921873808,0.0016550382133573294,80 +illusion_1L,ppo,81,24.3,0.7941040396690369,-0.20031794905662537,0.7721191644668579,-0.5375063419342041,1.2649012804031372,-0.35915103554725647,0.0018976054852828383,0.00019931951828766614,0.0021558261942118406,0.003705367213115096,0.0016679721884429455,-0.0019779151771217585,0.220614492893219,-0.8291096687316893,0.5024724006652832,0.00220614492893219,-0.008291096687316894,0.005024724006652832,0.005664129741489887,0.0019236936932429671,81 +illusion_1L,ppo,82,24.6,0.8576700091362,-0.25062504410743713,0.8221167922019958,-0.6543638706207275,1.1776025295257568,-0.46896111965179443,0.0019287733593955636,0.00011634476686595008,0.002188231563195586,0.0037147952243685722,0.001626845682039857,-0.0017810905119404197,0.44765841960906977,-0.9031004905700684,0.5509976148605347,0.004476584196090698,-0.009031004905700683,0.0055099761486053465,0.005749957635998726,0.0020704984199255705,82 +illusion_1L,ppo,83,24.9,0.9195776581764221,-0.2933003604412079,0.8753576874732971,-0.6652374267578125,1.0963870286941528,-0.4935239255428314,0.0019762860611081123,-1.361545037070755e-05,0.00216319365426898,0.0037076338194310665,0.0016296238172799349,-0.0016514314338564873,0.5911442041397095,-0.959122657775879,0.6961361169815063,0.005911442041397095,-0.00959122657775879,0.006961361169815064,0.005759336985647678,0.0020859010983258486,83 +illusion_1L,ppo,84,25.2,0.9810289740562439,-0.32870733737945557,0.9179188013076782,-0.6570708751678467,1.0258082151412964,-0.485750287771225,0.0020319351460784674,-0.00014992545766290277,0.002086276188492775,0.0036940653808414936,0.0016719696577638388,-0.0016173236072063446,0.6486685276031494,-0.9641983509063722,0.8974945545196533,0.006486685276031494,-0.009641983509063722,0.008974945545196534,0.005756254307925701,0.0019686000887304544,84 +illusion_1L,ppo,85,25.5,1.0440222024917603,-0.3579547107219696,0.947850227355957,-0.665766716003418,0.9610389471054077,-0.4717075526714325,0.0020930804312229156,-0.00028021138859912753,0.0019720103591680527,0.003681577043607831,0.0017595213139429688,-0.0016867183148860931,0.6825525164604187,-0.946758508682251,1.082136631011963,0.006825525164604187,-0.00946758508682251,0.010821366310119629,0.005749706644564867,0.0017256771679967642,85 +illusion_1L,ppo,86,25.8,1.111229419708252,-0.38190311193466187,0.9669027924537659,-0.6895856857299805,0.8963527679443359,-0.44924473762512207,0.0021583870984613895,-0.0003941117611248046,0.001830134424380958,0.0036766978446394205,0.0018846130697056651,-0.0018599272007122636,0.7211489677429199,-0.9268546104431152,1.2141979336738586,0.007211489677429199,-0.009268546104431152,0.012141979336738587,0.005683912429958582,0.0013722052099183202,86 +illusion_1L,ppo,87,26.1,1.1859989166259766,-0.3996048867702484,0.9722771048545837,-0.7086288332939148,0.8292421102523804,-0.4038565754890442,0.0022115851752460003,-0.000499193964060396,0.0016585453413426876,0.003677576780319214,0.002022684318944812,-0.0021323112305253744,0.7789082527160645,-0.9212490320205688,1.286047875881195,0.007789082527160645,-0.009212490320205689,0.01286047875881195,0.005598609335720539,0.0009303490514867008,87 +illusion_1L,ppo,88,26.4,1.2706854343414307,-0.40486863255500793,0.9580541253089905,-0.6645485162734985,0.7629619240760803,-0.31936705112457275,0.002237639157101512,-0.0006085522472858429,0.001457660342566669,0.0036640584003180265,0.0021575128193944693,-0.0024827513843774796,0.8447380065917968,-0.9343767166137695,1.2960020303726196,0.008447380065917968,-0.009343767166137695,0.012960020303726196,0.0055789402686059475,0.000428010243922472,88 +illusion_1L,ppo,89,26.7,1.3543806076049805,-0.37151259183883667,0.929830014705658,-0.48398321866989136,0.7076213359832764,-0.18953509628772736,0.0022570546716451645,-0.0007044816156849265,0.0012399464612826705,0.0036022865679115057,0.0022769682109355927,-0.0028771793004125357,0.8650745153427125,-0.9316978454589843,1.2486572265625,0.008650745153427125,-0.009316978454589843,0.012486572265625,0.005592026747763157,-0.00010290697537129745,89 +illusion_1L,ppo,90,27.0,1.3906675577163696,-0.2434457391500473,0.9086160063743591,-0.1726670265197754,0.6778086423873901,-0.028948692604899406,0.002256396459415555,-0.0007887491374276578,0.0010336556006222963,0.003458548802882433,0.0023858181666582823,-0.003254018258303404,0.7916586399078369,-0.8648266792297363,1.145860195159912,0.007916586399078369,-0.008648266792297363,0.011458601951599121,0.0055693225003778934,-0.0006285032723098993,90 +illusion_1L,ppo,91,27.3,1.3449437618255615,-0.025972019881010056,0.906836748123169,0.17604953050613403,0.6870531439781189,0.12457679957151413,0.0022248737514019012,-0.0008460287353955209,0.0008701623301021755,0.003229993861168623,0.00248138140887022,-0.003557068994268775,0.6392413377761841,-0.7726664543151855,0.9903204441070557,0.006392413377761841,-0.007726664543151855,0.009903204441070557,0.005552446935325861,-0.001115041202865541,91 +illusion_1L,ppo,92,27.6,1.2578412294387817,0.17204956710338593,0.9201927781105042,0.4569350779056549,0.7369540929794312,0.23039235174655914,0.0021695613395422697,-0.0008885962888598442,0.0007775718695484102,0.0029533905908465385,0.0025734109804034233,-0.003731972072273493,0.46351271867752075,-0.7193975448608398,0.8023736476898192,0.0046351271867752075,-0.007193975448608399,0.008023736476898193,0.005589765962213278,-0.0015311157330870628,92 +illusion_1L,ppo,93,27.9,1.1718026399612427,0.2864777147769928,0.9388272166252136,0.5964599251747131,0.8079590201377869,0.2869710922241211,0.002105297055095434,-0.0009051686502061784,0.0007792468531988561,0.0026702063623815775,0.002663838444277644,-0.003763629589229822,0.2781928479671478,-0.6957178115844727,0.6652060747146606,0.0027819284796714782,-0.006957178115844727,0.006652060747146606,0.00562874274328351,-0.0018496968550607562,93 +illusion_1L,ppo,94,28.2,1.0990900993347168,0.3317072093486786,0.956342339515686,0.6126325726509094,0.8784793019294739,0.3225547671318054,0.002045999513939023,-0.000893295684363693,0.0008632375975139439,0.002414593705907464,0.002733650617301464,-0.0036848599556833506,0.14341941475868225,-0.7486162185668945,0.6187222003936768,0.0014341941475868225,-0.007486162185668946,0.006187222003936768,0.005641409661620855,-0.0020499122329056263,94 +illusion_1L,ppo,95,28.5,1.0382575988769531,0.3445386588573456,0.9694120287895203,0.5952369570732117,0.9430661797523499,0.35172730684280396,0.001994185382500291,-0.0008559403941035271,0.000987586216069758,0.0022223039995878935,0.002755289664492011,-0.0035500042140483856,0.08570148050785065,-0.9028753042221069,0.6450692415237427,0.0008570148050785065,-0.009028753042221069,0.006450692415237427,0.005687114782631397,-0.0021184461656957865,95 +illusion_1L,ppo,96,28.8,0.9829822778701782,0.3473912179470062,0.9765351414680481,0.5919677019119263,1.0037227869033813,0.3775533437728882,0.0019527949625626206,-0.000792264356277883,0.0011287748347967863,0.002120492048561573,0.0027205089572817087,-0.003412508172914386,0.05542859435081482,-1.066268801689148,0.692778468132019,0.0005542859435081482,-0.01066268801689148,0.006927784681320191,0.005764052737504244,-0.0020504610147327185,96 +illusion_1L,ppo,97,29.1,0.928011953830719,0.3445841073989868,0.9775084257125854,0.6068363785743713,1.0633511543273926,0.4019067883491516,0.0019220116082578897,-0.0007067761034704745,0.001280838274396956,0.0021183008793741465,0.002645669737830758,-0.0033008160535246134,0.012858182191848753,-1.1690797805786133,0.7055610418319702,0.00012858182191848754,-0.011690797805786133,0.007055610418319702,0.005783763248473406,-0.001849970780313015,97 +illusion_1L,ppo,98,29.4,0.8705219626426697,0.3309189975261688,0.9707536101341248,0.6344444751739502,1.125589370727539,0.42601609230041504,0.001895659719593823,-0.0005990315694361925,0.0014304675860330462,0.0022147493436932564,0.002552430145442486,-0.003207339206710458,-0.05198782682418823,-1.2049866318702698,0.6668484210968018,-0.0005198782682418824,-0.012049866318702697,0.006668484210968018,0.005733401048928499,-0.0015296366764232516,98 +illusion_1L,ppo,99,29.7,0.8104807138442993,0.29702118039131165,0.950883150100708,0.6575545072555542,1.1952182054519653,0.4499432444572449,0.001875365967862308,-0.00046580994967371225,0.0015666777035221457,0.0023984352592378855,0.0024501208681613207,-0.0031104637309908867,-0.1294422149658203,-1.1807619333267212,0.605562686920166,-0.001294422149658203,-0.011807619333267213,0.00605562686920166,0.005679980851709843,-0.001109990873374045,99 +illusion_1L,ppo,100,30.0,0.7523688077926636,0.23339545726776123,0.9103105664253235,0.6311859488487244,1.277519702911377,0.4694467782974243,0.001864951802417636,-0.00030969982617534697,0.0016897908644750714,0.0026423002127557993,0.0023375863675028086,-0.0029932239558547735,-0.2087677717208862,-1.1013973951339722,0.5584113597869873,-0.002087677717208862,-0.011013973951339722,0.005584113597869873,0.005627625621855259,-0.0006181322387419641,100 +illusion_1L,ppo,101,30.3,0.7059066295623779,0.13717608153820038,0.852002739906311,0.4931606650352478,1.3665962219238281,0.45611047744750977,0.0018682513618841767,-0.0001399771572323516,0.0018032598309218884,0.002909522270783782,0.002203205833211541,-0.0028543423395603895,-0.2728402614593506,-0.993920087814331,0.543602466583252,-0.002728402614593506,-0.00993920087814331,0.0054360246658325196,0.005549031309783459,-8.59768915688619e-05,101 +illusion_1L,ppo,102,30.6,0.6844112873077393,0.019757186993956566,0.7996364831924438,0.22598975896835327,1.4171700477600098,0.3269971013069153,0.0018743757391348481,2.5349059797008522e-05,0.0019063816871494055,0.0031653009355068207,0.0020428248681128025,-0.00269343052059412,-0.28158068656921387,-0.906485080718994,0.5443675518035889,-0.0028158068656921388,-0.009064850807189941,0.005443675518035889,0.005499288439750671,0.0004518234054557979,102 +illusion_1L,ppo,103,30.9,0.6994820237159729,-0.09213695675134659,0.7774444222450256,-0.10741401463747025,1.3887832164764404,0.058274365961551666,0.0018785794964060187,0.0001514893228886649,0.0020008832216262817,0.003384067676961422,0.0018812203779816628,-0.0025000497698783875,-0.175246000289917,-0.8703538179397584,0.5114607810974121,-0.00175246000289917,-0.008703538179397584,0.005114607810974121,0.00553347822278738,0.000960158125963062,103 +illusion_1L,ppo,104,31.2,0.7491663098335266,-0.17449349164962769,0.7891399264335632,-0.4128890335559845,1.3143047094345093,-0.21528171002864838,0.0018828767351806164,0.00020290841348469257,0.0020849111024290323,0.0035529346205294132,0.0017558566760271788,-0.002267546718940139,0.05244475603103638,-0.8848663568496704,0.43989288806915283,0.0005244475603103638,-0.008848663568496704,0.004398928880691528,0.0055986023508012295,0.0014057770604267716,104 +illusion_1L,ppo,105,31.5,0.8141036033630371,-0.23056137561798096,0.8257647156715393,-0.6065934896469116,1.226549506187439,-0.3885897696018219,0.0018924713367596269,0.00016837232396937907,0.002144378377124667,0.0036717704497277737,0.0016825520433485508,-0.0020181522704660892,0.3173108398914337,-0.9302657842636108,0.408612608909607,0.0031731083989143373,-0.009302657842636109,0.00408612608909607,0.005635641980916262,0.0017594960518181324,105 +illusion_1L,ppo,106,31.8,0.8783547878265381,-0.2753821015357971,0.8738800883293152,-0.6597409248352051,1.1419258117675781,-0.4544667601585388,0.0019196313805878162,6.777724047424272e-05,0.0021599726751446724,0.003748259972780943,0.0016525242244824767,-0.0017963622231036425,0.5272874236106873,-0.980194926261902,0.4868009090423584,0.005272874236106873,-0.00980194926261902,0.004868009090423584,0.005671056918799877,0.0019981369841843843,106 +illusion_1L,ppo,107,32.1,0.939876914024353,-0.313020795583725,0.9180872440338135,-0.6469898223876953,1.0690715312957764,-0.4623880982398987,0.001974717481061816,-6.438530544983223e-05,0.0021284848917275667,0.003785650711506605,0.0016579828225076199,-0.0016431149560958147,0.632325291633606,-0.9888274669647217,0.6691107749938965,0.00632325291633606,-0.009888274669647217,0.006691107749938965,0.005717759020626545,0.002106070751324296,107 +illusion_1L,ppo,108,32.4,1.0006787776947021,-0.3440275490283966,0.9513044953346252,-0.6406519412994385,1.005427598953247,-0.45569688081741333,0.0020502775441855192,-0.00019495202286634594,0.002057230332866311,0.0037900502793490887,0.0017034687334671617,-0.0015782216796651483,0.665900707244873,-0.9618560075759888,0.8827221393585205,0.006659007072448731,-0.009618560075759888,0.008827221393585206,0.005728086922317743,0.002076256787404418,108 +illusion_1L,ppo,109,32.7,1.062760591506958,-0.3698713183403015,0.9749253392219543,-0.6533782482147217,0.944473385810852,-0.4456411302089691,0.002127759624272585,-0.00030947066261433065,0.0019467365927994251,0.003778114216402173,0.001787411398254335,-0.0016118679195642471,0.6921288967132568,-0.9381377696990967,1.0709887742996216,0.006921288967132569,-0.009381377696990966,0.010709887742996216,0.005702213384211063,0.0019107060506939888,109 +illusion_1L,ppo,110,33.0,1.128629207611084,-0.39131787419319153,0.9896690845489502,-0.6795378923416138,0.8812791109085083,-0.4245242774486542,0.0021948700305074453,-0.0004173615016043186,0.0018002076540142298,0.003766483860090375,0.001899618306197226,-0.0017544664442539215,0.7413539886474609,-0.9312642812728882,1.2129233479499817,0.007413539886474609,-0.009312642812728882,0.012129233479499818,0.005696525331586599,0.0016203367849811912,110 +illusion_1L,ppo,111,33.3,1.2014739513397217,-0.40729811787605286,0.9910660982131958,-0.6969991326332092,0.814490556716919,-0.37730374932289124,0.0022409530356526375,-0.0005211434909142554,0.0016283238073810935,0.003757844679057598,0.0020299283787608147,-0.0020082658156752586,0.8084418177604675,-0.9413789510726928,1.294039249420166,0.008084418177604675,-0.009413789510726928,0.01294039249420166,0.005705347750335932,0.0012242335360497236,111 +illusion_1L,ppo,112,33.6,1.283720850944519,-0.41174066066741943,0.972006618976593,-0.6449854969978333,0.7488803863525391,-0.2893064618110657,0.0022845377679914236,-0.0006277624052017927,0.0014346512034535408,0.003735801437869668,0.002166916150599718,-0.0023537189699709415,0.8737611770629884,-0.9640285968780518,1.301871657371521,0.008737611770629884,-0.009640285968780518,0.01301871657371521,0.0056749628856778145,0.0007483611116185784,112 +illusion_1L,ppo,113,33.9,1.364923357963562,-0.3789885640144348,0.9383096098899841,-0.45409560203552246,0.6960248947143555,-0.15732131898403168,0.0023008997086435556,-0.0007181293913163245,0.001221496146172285,0.003671011421829462,0.0022954270243644714,-0.002752886852249503,0.8811653256416321,-0.9619255065917969,1.258780598640442,0.008811653256416321,-0.00961925506591797,0.012587805986404419,0.005616396199911833,0.00022382187307812274,113 +illusion_1L,ppo,114,34.2,1.3979382514953613,-0.25105851888656616,0.9120202660560608,-0.13807141780853271,0.6712217926979065,0.0005244536441750824,0.002296455902978778,-0.0007940570940263569,0.0010138520738109946,0.0035310774110257626,0.002410123124718666,-0.0031493031419813633,0.79872727394104,-0.8908076286315918,1.1635475158691406,0.007987272739410401,-0.008908076286315918,0.011635475158691407,0.005577105097472668,-0.00031522029894404113,114 +illusion_1L,ppo,115,34.5,1.3450026512145996,-0.027253586798906326,0.9065045118331909,0.20767219364643097,0.6875160932540894,0.14452414214611053,0.002260639565065503,-0.0008399414946325123,0.0008532403153367341,0.003309131832793355,0.002514986088499427,-0.003481064224615693,0.6381788849830627,-0.7805912494659424,1.0080278515815735,0.006381788849830628,-0.007805912494659424,0.010080278515815735,0.005551840178668499,-0.0008338077459484339,115 +illusion_1L,ppo,116,34.8,1.2499278783798218,0.17925651371479034,0.9180982708930969,0.47800159454345703,0.7432913184165955,0.23844535648822784,0.0021988418884575367,-0.0008775538299232721,0.0007688580080866814,0.003035259433090687,0.0026128184981644154,-0.0036916451063007116,0.45692184567451477,-0.7023489475250244,0.8087254762649536,0.004569218456745148,-0.0070234894752502445,0.008087254762649536,0.0055290330201387405,-0.0012984927743673325,116 +illusion_1L,ppo,117,35.1,1.160879135131836,0.2964862287044525,0.937070906162262,0.6021345257759094,0.8158890008926392,0.28856247663497925,0.002122866455465555,-0.0008949888870120049,0.0007733581587672234,0.0027459149714559317,0.0026983339339494705,-0.0037570837885141373,0.2694724500179291,-0.6647837162017822,0.6600246429443359,0.0026947245001792907,-0.006647837162017822,0.00660024642944336,0.005548518151044846,-0.0016795200062915683,117 +illusion_1L,ppo,118,35.4,1.0892292261123657,0.340286523103714,0.955944836139679,0.609386146068573,0.8852493166923523,0.32266607880592346,0.00204879860393703,-0.000889087503310293,0.0008539454429410398,0.0024722565431147814,0.002759793773293495,-0.0037025236524641514,0.14290519058704376,-0.7213306427001953,0.6125223636627197,0.0014290519058704377,-0.007213306427001953,0.006125223636627197,0.00562577648088336,-0.001952742924913764,118 +illusion_1L,ppo,119,35.7,1.0304336547851562,0.35159143805503845,0.9701231718063354,0.5917284488677979,0.9480370879173279,0.35148152709007263,0.001993288053199649,-0.0008551875944249332,0.0009767833398655057,0.002251472556963563,0.0027777852956205606,-0.003583772573620081,0.08995945751667023,-0.8773316144943237,0.6448245048522949,0.0008995945751667023,-0.008773316144943238,0.0064482450485229496,0.005705163814127445,-0.0021011470817029476,119 +illusion_1L,ppo,120,36.0,0.9766367673873901,0.35444965958595276,0.9782969355583191,0.5903350710868835,1.0068684816360474,0.3770090937614441,0.0019523932132869959,-0.0007969368016347289,0.0011165171163156629,0.0021147935185581446,0.0027403973508626223,-0.0034574910532683134,0.05754849314689636,-1.036913275718689,0.7031381130218506,0.0005754849314689636,-0.01036913275718689,0.007031381130218506,0.005744705442339182,-0.0021158847957849503,120 +illusion_1L,ppo,121,36.3,0.9224923849105835,0.3530227243900299,0.980838418006897,0.6067314743995667,1.0647846460342407,0.4009636342525482,0.0019219893729314208,-0.000716276525054127,0.0012653156882151961,0.002076575066894293,0.0026598796248435974,-0.003357804147526622,0.01211559772491455,-1.1418288946151733,0.7331953048706055,0.00012115597724914551,-0.011418288946151734,0.007331953048706055,0.005756988190114498,-0.0019967579282820225,121 +illusion_1L,ppo,122,36.6,0.8654761910438538,0.34182009100914,0.976682722568512,0.63600093126297,1.1254581212997437,0.42446717619895935,0.00190062599722296,-0.000612292846199125,0.0014174237148836255,0.00214196415618062,0.0025639894884079695,-0.0032802284695208073,-0.05268087983131409,-1.1855669021606445,0.7099301815032959,-0.0005268087983131409,-0.011855669021606445,0.007099301815032959,0.005744813941419125,-0.0017521297559142113,122 +illusion_1L,ppo,123,36.9,0.8055825233459473,0.31113359332084656,0.9608387351036072,0.6631891131401062,1.193510890007019,0.4475761353969574,0.0018878660630434752,-0.00048187162610702217,0.0015634120209142566,0.0023051872849464417,0.002465964062139392,-0.0032006711699068546,-0.13278749585151672,-1.1678045988082886,0.6549818515777588,-0.0013278749585151673,-0.011678045988082886,0.006549818515777588,0.005693688523024321,-0.001398277236148715,123 +illusion_1L,ppo,124,37.2,0.7467646598815918,0.25057005882263184,0.925029993057251,0.6459147930145264,1.273956060409546,0.4668343663215637,0.0018796863732859492,-0.0003272315952926874,0.0016913714352995157,0.002538799773901701,0.0023513673804700375,-0.0031042553018778563,-0.21639108657836914,-1.0930461883544922,0.6111772060394287,-0.0021639108657836915,-0.010930461883544922,0.006111772060394287,0.005629749968647957,-0.0009582436759956181,124 +illusion_1L,ppo,125,37.5,0.6980747580528259,0.15561698377132416,0.8699775338172913,0.5195714831352234,1.36288321018219,0.45897817611694336,0.0018759300000965595,-0.00015548701048828661,0.0018001195276156068,0.0028017342556267977,0.0022054046858102083,-0.0029838967602699995,-0.2844569683074951,-0.9872171878814697,0.5939042568206787,-0.002844569683074951,-0.009872171878814697,0.0059390425682067875,0.005596959963440895,-0.00046027303324081004,125 +illusion_1L,ppo,126,37.8,0.6724015474319458,0.03562403842806816,0.8175393342971802,0.2595430612564087,1.4187687635421753,0.34750691056251526,0.0018793185008689761,1.1812165212177206e-05,0.0018991715041920543,0.0030566861387342215,0.002035680692642927,-0.0028325412422418594,-0.2982397675514221,-0.8968610763549805,0.582787036895752,-0.0029823976755142213,-0.008968610763549805,0.00582787036895752,0.005591437220573425,6.405806198017672e-05,126 +illusion_1L,ppo,127,38.1,0.682316243648529,-0.08336097747087479,0.7926790118217468,-0.07535340636968613,1.3940640687942505,0.0918954387307167,0.0018838024698197842,0.00014148777700029314,0.0019951460417360067,0.0032794468570500612,0.0018703977111727,-0.0026405146345496178,-0.20541054010391233,-0.8584461212158204,0.5374820232391357,-0.0020541054010391234,-0.008584461212158204,0.005374820232391358,0.005585479084402323,0.0005818844656459987,127 +illusion_1L,ppo,128,38.4,0.7294843196868896,-0.17288632690906525,0.8006733059883118,-0.3900950253009796,1.318857192993164,-0.18366879224777222,0.0018851107452064753,0.00020173950179014355,0.002081411425024271,0.003461479442194104,0.0017423995304852724,-0.002402084181085229,0.012610107660293579,-0.8817195892333984,0.4518909454345703,0.0001261010766029358,-0.008817195892333984,0.004518909454345703,0.005581559147685766,0.0010611350880935788,128 +illusion_1L,ppo,129,38.7,0.796348512172699,-0.23102068901062012,0.8330998420715332,-0.5986163020133972,1.2313249111175537,-0.36473166942596436,0.0018893199739977717,0.0001771321549313143,0.002145336242392659,0.0036042635329067707,0.0016709346091374755,-0.002137427218258381,0.282920777797699,-0.9408292770385741,0.3995554447174072,0.00282920777797699,-0.009408292770385742,0.003995554447174072,0.005591227672994137,0.0014725204091519117,129 +illusion_1L,ppo,130,39.0,0.8637836575508118,-0.2755197584629059,0.8775282502174377,-0.6630028486251831,1.1473805904388428,-0.4382295608520508,0.0019132093293592334,8.058696403168142e-05,0.0021735390182584524,0.0037120997440069914,0.0016510785790160298,-0.0018919366411864758,0.5058770775794983,-0.9996932744979858,0.45104348659515386,0.005058770775794983,-0.009996932744979859,0.004510434865951539,0.0056059095077216625,0.0017913009505718946,130 +illusion_1L,ppo,131,39.3,0.9275858402252197,-0.3133770525455475,0.9197962284088135,-0.6504749059677124,1.0750740766525269,-0.45060068368911743,0.0019650114700198174,-4.5653421693714336e-05,0.002154203364625573,0.0037853915710002184,0.001663830829784274,-0.0017067231237888336,0.6183253526687622,-1.0154801607131958,0.6110596656799316,0.006183253526687622,-0.010154801607131959,0.006110596656799317,0.005624179262667894,0.0019987314008176327,131 +illusion_1L,ppo,132,39.6,0.9896772503852844,-0.34477952122688293,0.9521236419677734,-0.6407597064971924,1.0118969678878784,-0.4465024769306183,0.0020347286481410265,-0.00017142064461950213,0.0020833034068346024,0.003821837017312646,0.0017015808261930943,-0.0016027319943532348,0.6576936841011047,-0.9933927059173585,0.8132700920104982,0.0065769368410110475,-0.009933927059173585,0.008132700920104981,0.005661684088408947,0.0020831020083278418,132 +illusion_1L,ppo,133,39.9,1.0519766807556152,-0.37097036838531494,0.9751232862472534,-0.6511356830596924,0.9512667059898376,-0.4398286044597626,0.0021125422790646553,-0.0002880689862649888,0.0019675667863339186,0.0038316850550472736,0.0017698063747957349,-0.0015873350203037262,0.6899363994598389,-0.9721332788467407,0.9918160438537598,0.006899363994598388,-0.009721332788467407,0.009918160438537597,0.005714363418519497,0.0020403247326612473,133 +illusion_1L,ppo,134,40.2,1.1169365644454956,-0.39285895228385925,0.9899123311042786,-0.677071750164032,0.888217031955719,-0.42489397525787354,0.0021840305998921394,-0.0003977234591729939,0.0018198802135884762,0.0038330249954015017,0.0018687889678403735,-0.0016713158693164587,0.7383757829666138,-0.964287519454956,1.1260159015655518,0.007383757829666138,-0.009642875194549561,0.011260159015655517,0.005751916207373142,0.001874040812253952,134 +illusion_1L,ppo,135,40.5,1.1879329681396484,-0.40975716710090637,0.9932949542999268,-0.7016438841819763,0.8211218118667603,-0.38791602849960327,0.0022441588807851076,-0.000512869912199676,0.0016486006788909435,0.0038322806358337402,0.001988131320104003,-0.0018640706548467278,0.8042643070220947,-0.9739056825637817,1.205222249031067,0.008042643070220947,-0.009739056825637818,0.012052222490310668,0.005752751603722572,0.0015952644171193242,135 +illusion_1L,ppo,136,40.8,1.2682222127914429,-0.41715624928474426,0.9781052470207214,-0.6724998950958252,0.7537897825241089,-0.3134693503379822,0.00229238742031157,-0.0006130553083494306,0.0014573935186490417,0.003818886587396264,0.0021172186825424433,-0.0021542126778513193,0.8661375045776367,-0.9986793994903564,1.2230919003486633,0.008661375045776368,-0.009986793994903565,0.012230919003486634,0.005716994404792786,0.0012215939350426197,136 +illusion_1L,ppo,137,41.1,1.3521219491958618,-0.3953261077404022,0.9464737176895142,-0.5148550271987915,0.6967973113059998,-0.19435642659664154,0.0023280386812984943,-0.0007124260300770402,0.0012510172091424465,0.0037718010134994984,0.002248231088742614,-0.0025084444787353277,0.8983004093170167,-1.0120781064033508,1.186629295349121,0.008983004093170167,-0.010120781064033508,0.011866292953491212,0.005655428394675255,0.0007760541047900915,137 +illusion_1L,ppo,138,41.4,1.400169849395752,-0.2902211546897888,0.918233335018158,-0.2201516032218933,0.6648312211036682,-0.04213172569870949,0.0023426362313330173,-0.0007942486554384232,0.0010482686338946223,0.0036605484783649445,0.0023723270278424025,-0.002880988409742713,0.8341176509857178,-0.954254984855652,1.1193856000900269,0.008341176509857178,-0.00954254984855652,0.011193856000900268,0.005588269792497158,0.000285650254227221,138 +illusion_1L,ppo,139,41.7,1.3642895221710205,-0.07832611352205276,0.9092580080032349,0.12943704426288605,0.6714356541633606,0.10935147851705551,0.0023177561815828085,-0.0008541496354155242,0.0008776652975939214,0.0034675495699048042,0.002479047980159521,-0.0032195127569139004,0.6870402097702026,-0.8394714593887329,1.0058660507202148,0.0068704020977020264,-0.00839471459388733,0.010058660507202149,0.005542092490941286,-0.00022027546947356313,139 +illusion_1L,ppo,140,42.0,1.2741979360580444,0.14159457385540009,0.9185501933097839,0.42854776978492737,0.7198755741119385,0.21881887316703796,0.002255544299259782,-0.0008917786763049662,0.0007696315296925604,0.0032095008064061403,0.0025700314436107874,-0.003462625667452812,0.5066896677017212,-0.7397112846374512,0.840200662612915,0.005066896677017212,-0.007397112846374512,0.00840200662612915,0.005534210707992315,-0.0007117835339158773,140 +illusion_1L,ppo,141,42.3,1.1829864978790283,0.27945712208747864,0.9366003274917603,0.5926768779754639,0.7922722101211548,0.2780219316482544,0.0021720603108406067,-0.0009032243397086859,0.0007520427461713552,0.002918118378147483,0.002651298651471734,-0.0035781702026724815,0.32001927495002747,-0.6695919036865234,0.6991519927978516,0.003200192749500275,-0.006695919036865235,0.006991519927978516,0.005564122460782528,-0.0011600726284086704,141 +illusion_1L,ppo,142,42.6,1.1074455976486206,0.33691877126693726,0.9554362893104553,0.620470404624939,0.8647043704986572,0.31416332721710205,0.002086662920191884,-0.0008955298690125346,0.0008221773896366358,0.0026253375690430403,0.0027146402280777693,-0.003580948105081916,0.1783670336008072,-0.6741461753845215,0.6454565525054932,0.0017836703360080718,-0.006741461753845215,0.006454565525054932,0.005614774767309427,-0.0015391155611723661,142 +illusion_1L,ppo,143,42.9,1.0458141565322876,0.35384219884872437,0.9707029461860657,0.600911557674408,0.9298662543296814,0.34379416704177856,0.002015607664361596,-0.0008698037127032876,0.0009413238149136305,0.00236812187358737,0.0027390450704842806,-0.003517440054565668,0.11064012348651886,-0.7923810482025146,0.6754374504089355,0.0011064012348651886,-0.007923810482025147,0.006754374504089356,0.005659830756485462,-0.0018271084409207106,143 +illusion_1L,ppo,144,43.2,0.990931510925293,0.3591386377811432,0.9807572364807129,0.5933434963226318,0.9902074337005615,0.369567334651947,0.0019665218424052,-0.0008193883113563061,0.0010790067026391625,0.002179833361878991,0.0027125049382448196,-0.0034400387667119503,0.0722513496875763,-0.9422814846038818,0.7442654371261597,0.0007225134968757629,-0.009422814846038819,0.007442654371261597,0.005684380419552326,-0.002007660223171115,144 +illusion_1L,ppo,145,43.5,0.9370347857475281,0.36044350266456604,0.9860050678253174,0.6047418117523193,1.0490210056304932,0.3930850327014923,0.00193637830670923,-0.0007457658066414297,0.0012267451966181397,0.002080796053633094,0.0026432923041284084,-0.003386423224583268,0.0260469913482666,-1.0497357845306396,0.7988348007202147,0.000260469913482666,-0.010497357845306397,0.007988348007202148,0.005696034524589777,-0.0020706653594970703,145 +illusion_1L,ppo,146,43.8,0.8808078765869141,0.3536783456802368,0.9858282208442688,0.6310636401176453,1.1096923351287842,0.41566047072410583,0.0019153277389705181,-0.000649717403575778,0.0013716707471758127,0.002080619800835848,0.002546998905017972,-0.003358588321134448,-0.03835597634315491,-1.1014200448989868,0.805626630783081,-0.0003835597634315491,-0.011014200448989868,0.00805626630783081,0.005703396163880825,-0.0020128197502344847,146 +illusion_1L,ppo,147,44.1,0.8210766315460205,0.32959526777267456,0.9760513305664062,0.6618780493736267,1.176232099533081,0.43762633204460144,0.0018975858110934496,-0.0005283364444039762,0.0015027184272184968,0.002175412140786648,0.0024351077154278755,-0.0033294144086539745,-0.11879751086235046,-1.092219591140747,0.7684934139251709,-0.0011879751086235047,-0.010922195911407471,0.007684934139251709,0.005702631548047066,-0.0018377614906057715,147 +illusion_1L,ppo,148,44.4,0.7602943181991577,0.27697497606277466,0.9481117725372314,0.6631430387496948,1.2534631490707397,0.4569161534309387,0.00188637082464993,-0.00038244042661972344,0.0016181585378944874,0.002338930033147335,0.0023102390114217997,-0.0032741869799792767,-0.2061712145805359,-1.0229982137680054,0.723088264465332,-0.002061712145805359,-0.010229982137680053,0.00723088264465332,0.00569628830999136,-0.001555830822326243,148 +illusion_1L,ppo,149,44.7,0.7063542008399963,0.18859976530075073,0.8983383178710938,0.5695223212242126,1.3420428037643433,0.45909383893013,0.0018837550887838006,-0.0002177029091399163,0.001723927678540349,0.0025381017476320267,0.0021667559631168842,-0.0031849138904362917,-0.2866970896720886,-0.9230009317398072,0.6967335939407349,-0.0028669708967208863,-0.009230009317398072,0.006967335939407349,0.005691180936992168,-0.0011834697797894478,149 +illusion_1L,ppo,150,45.0,0.6718862056732178,0.06970607489347458,0.844086229801178,0.3366863429546356,1.412737488746643,0.38398364186286926,0.0018889731727540493,-4.854817962041125e-05,0.0018232152797281742,0.002745541511103511,0.0020043381955474615,-0.003059586975723505,-0.32748496532440186,-0.8424186706542969,0.6781008243560791,-0.0032748496532440186,-0.008424186706542968,0.006781008243560791,0.005671756807714701,-0.0007422934286296368,150 +illusion_1L,ppo,151,45.3,0.6707409620285034,-0.05679312348365784,0.8129016160964966,0.006813402287662029,1.4074558019638062,0.16255852580070496,0.0018960845191031694,9.462878369959071e-05,0.0019205689895898104,0.0029442596714943647,0.001845537219196558,-0.0028895135037600994,-0.2726770043373108,-0.8185527324676515,0.6231832504272461,-0.002726770043373108,-0.008185527324676515,0.006231832504272461,0.0056210970506072044,-0.0002578797866590321,151 +illusion_1L,ppo,152,45.6,0.709498405456543,-0.15854094922542572,0.814858078956604,-0.32368409633636475,1.3368033170700073,-0.11806073784828186,0.001902219490148127,0.00017401071090716869,0.0020143496803939342,0.0031300971750169992,0.001726582064293325,-0.002664896659553051,-0.08266288042068481,-0.8647055625915526,0.5124448537826538,-0.0008266288042068482,-0.008647055625915527,0.005124448537826538,0.005563950631767511,0.00024165630748029798,152 +illusion_1L,ppo,153,45.9,0.7753589153289795,-0.22332143783569336,0.8426464796066284,-0.5627891421318054,1.2492127418518066,-0.32193315029144287,0.0019005048088729382,0.00017266074428334832,0.0020893835462629795,0.003309163497760892,0.0016651443438604474,-0.002399713732302189,0.1873244196176529,-0.9557293653488159,0.4123342037200928,0.001873244196176529,-0.009557293653488159,0.0041233420372009276,0.005538197699934244,0.000727235630620271,153 +illusion_1L,ppo,154,46.2,0.8457337021827698,-0.26819178462028503,0.8839061260223389,-0.6552857756614685,1.1646690368652344,-0.41565799713134766,0.001900062314234674,9.593606955604628e-05,0.002123591722920537,0.003479589242488146,0.0016488080145791173,-0.002133490750566125,0.4347601532936097,-1.0407288074493408,0.3991515636444092,0.004347601532936097,-0.010407288074493409,0.003991515636444092,0.005544575862586498,0.001170451520010829,154 +illusion_1L,ppo,155,46.5,0.9114939570426941,-0.30567023158073425,0.9252263307571411,-0.6486779451370239,1.0916318893432617,-0.43825215101242065,0.0019248937023803592,-2.2268784960033372e-05,0.002109491964802146,0.0036249514669179916,0.0016599748050794005,-0.0019032064592465758,0.5797209739685059,-1.0685893297195435,0.4920076131820679,0.005797209739685059,-0.010685893297195435,0.004920076131820679,0.005573783535510302,0.0015451861545443535,155 +illusion_1L,ppo,156,46.8,0.9738426804542542,-0.33671197295188904,0.9578952789306641,-0.633184552192688,1.028457760810852,-0.4380701780319214,0.0019739330746233463,-0.00014186190674081445,0.0020511725451797247,0.003728026058524847,0.0016926644602790475,-0.0017270819516852498,0.6343727707862854,-1.0440654754638672,0.648343563079834,0.006343727707862854,-0.010440654754638672,0.00648343563079834,0.005636546760797501,0.001829120796173811,156 +illusion_1L,ppo,157,47.1,1.035016655921936,-0.3622564673423767,0.9817606806755066,-0.637525200843811,0.9687396287918091,-0.43464896082878113,0.0020495986100286245,-0.0002557480474933982,0.0019506114767864347,0.0037902863696217537,0.0017459511291235685,-0.0016148386057466269,0.6742504239082336,-1.0207226276397705,0.8051958084106445,0.006742504239082336,-0.010207226276397705,0.008051958084106445,0.005716180428862572,0.00200505624525249,157 +illusion_1L,ppo,158,47.4,1.0975157022476196,-0.38350164890289307,0.9987232685089111,-0.659248948097229,0.9072766304016113,-0.4253641664981842,0.0021344716660678387,-0.00036266024108044803,0.0018155700527131557,0.003828815184533596,0.0018171260599046946,-0.001582452212460339,0.7240217328071594,-1.0101059675216675,0.938636302947998,0.007240217328071594,-0.010101059675216675,0.009386363029479981,0.005756895989179611,0.0020619675051420927,158 +illusion_1L,ppo,159,47.7,1.164629340171814,-0.40035775303840637,1.007386326789856,-0.6877559423446655,0.8416793346405029,-0.3980737328529358,0.0022073588334023952,-0.00047247574548237026,0.0016617130022495985,0.003853426780551672,0.0019077113829553127,-0.0016487379325553775,0.7894800901412964,-1.011321783065796,1.0357565879821777,0.007894800901412964,-0.01011321783065796,0.010357565879821777,0.005743067711591721,0.001995726488530636,159 +illusion_1L,ppo,160,48.0,1.2400141954421997,-0.4103262722492218,1.0008325576782227,-0.6857194900512695,0.7740539908409119,-0.3371012508869171,0.002284497721120715,-0.0005856482894159853,0.0014965314185246825,0.003863874590024352,0.002017438877373934,-0.0018203856889158487,0.8617255091667176,-1.035987138748169,1.0892974138259888,0.008617255091667176,-0.01035987138748169,0.010892974138259888,0.005714329890906811,0.001809444511309266,160 +illusion_1L,ppo,161,48.3,1.323671579360962,-0.4028952121734619,0.9743549823760986,-0.5788799524307251,0.7129180431365967,-0.23164130747318268,0.0023450839798897505,-0.0007008357206359506,0.001312343287281692,0.003853756934404373,0.0021344644483178854,-0.0020834740716964006,0.9083073139190673,-1.0672229528427124,1.110581874847412,0.009083073139190673,-0.010672229528427125,0.011105818748474121,0.005683825351297855,0.0015134024433791637,161 +illusion_1L,ppo,162,48.6,1.3929550647735596,-0.3405289649963379,0.9416898488998413,-0.32471415400505066,0.6721250414848328,-0.08705583959817886,0.002386474283412099,-0.0007850825786590576,0.0011146271135658026,0.003794342279434204,0.00224728649482131,-0.0024021633435040712,0.8724387288093566,-1.0337850451469421,1.1054190397262573,0.008724387288093566,-0.010337850451469422,0.011054190397262574,0.0056352922692894936,0.0011245590867474675,162 +illusion_1L,ppo,163,48.9,1.391174554824829,-0.17082911729812622,0.9236711859703064,0.01872648112475872,0.6663581728935242,0.06844501942396164,0.0023794351145625114,-0.0008337732288055122,0.0009366172598674893,0.0036522476002573967,0.0023461985401809216,-0.002737678587436676,0.7497145533561707,-0.9089868068695067,1.063984990119934,0.007497145533561706,-0.009089868068695068,0.01063984990119934,0.005594110582023859,0.0006656530895270407,163 +illusion_1L,ppo,164,49.2,1.3088369369506836,0.059472937136888504,0.9256585836410522,0.34353411197662354,0.7034322619438171,0.1917012333869934,0.0023309888783842325,-0.0008692194824106991,0.0008119624690152705,0.0034291669726371765,0.002434668131172657,-0.003031125059351325,0.5847925543785095,-0.7714060544967651,0.9495195150375366,0.005847925543785095,-0.007714060544967652,0.009495195150375366,0.005593768786638975,0.00016393783153034747,164 +illusion_1L,ppo,165,49.5,1.2076148986816406,0.23406000435352325,0.9402239918708801,0.5510977506637573,0.771498441696167,0.261274516582489,0.0022429446689784527,-0.0008749289554543793,0.0007641486590728164,0.0031563173979520798,0.0025111837312579155,-0.0032424358651041985,0.39807912707328796,-0.6666313409805298,0.8112100362777709,0.00398079127073288,-0.006666313409805298,0.00811210036277771,0.005601159762591124,-0.0003503881162032485,165 +illusion_1L,ppo,166,49.8,1.1239796876907349,0.31841373443603516,0.9586020708084106,0.6089667677879333,0.845018744468689,0.2991493344306946,0.0021405701991170645,-0.0008711463306099176,0.0008043595007620752,0.0028599530924111605,0.002577301347628236,-0.0033574611879885197,0.2404842972755432,-0.6155312061309814,0.7088911533355713,0.002404842972755432,-0.0061553120613098145,0.007088911533355713,0.005579833872616291,-0.0008459693053737283,166 +illusion_1L,ppo,167,50.1,1.0598798990249634,0.34658902883529663,0.9757116436958313,0.5925242900848389,0.9116352200508118,0.3279569745063782,0.0020539250690490007,-0.0008568390039727092,0.0009083689074032009,0.0025723467115312815,0.002626468427479267,-0.003391822101548314,0.14821550250053406,-0.6788963079452515,0.6848101615905762,0.0014821550250053407,-0.006788963079452515,0.006848101615905762,0.005568155087530613,-0.001292198314331472,167 +illusion_1L,ppo,168,50.4,1.0063862800598145,0.3557473123073578,0.9890960454940796,0.5787189602851868,0.9723630547523499,0.3523772954940796,0.0019906405359506607,-0.0008256331202574074,0.0010335200931876898,0.0023283411283046007,0.0026376498863101006,-0.0033842059783637524,0.10114143788814543,-0.816448450088501,0.7347501516342163,0.0010114143788814544,-0.00816448450088501,0.007347501516342163,0.005600422155112028,-0.001661122078076005,168 +illusion_1L,ppo,169,50.7,0.9553123712539673,0.36048638820648193,0.9986963868141174,0.5837621688842773,1.0300859212875366,0.373794823884964,0.001948146615177393,-0.0007720337598584592,0.001157470396719873,0.0021488338243216276,0.002595414873212576,-0.0033730959985405207,0.054628342390060425,-0.933975338935852,0.8051984310150146,0.0005462834239006042,-0.00933975338935852,0.008051984310150147,0.005640667863190174,-0.001929230522364378,169 +illusion_1L,ppo,170,51.0,0.9019520878791809,0.35951605439186096,1.0045230388641357,0.6047218441963196,1.0874971151351929,0.3936077356338501,0.001920055947266519,-0.0006958539597690105,0.001277959905564785,0.002046318957582116,0.002512621460482478,-0.0033702929504215717,-0.004835367202758789,-0.9999959468841553,0.841116189956665,-4.835367202758789e-05,-0.009999959468841553,0.00841116189956665,0.005670505575835705,-0.0020790090784430504,170 +illusion_1L,ppo,171,51.3,0.8440971970558167,0.34469538927078247,1.0043673515319824,0.6358709335327148,1.1477808952331543,0.41242480278015137,0.001901924260891974,-0.0005957258981652558,0.0013955013127997518,0.0020302876364439726,0.002412168076261878,-0.0033648808021098375,-0.0763130784034729,-1.0204681158065796,0.8353879451751709,-0.0007631307840347291,-0.010204681158065797,0.008353879451751709,0.005723041016608477,-0.002100147772580385,171 +illusion_1L,ppo,172,51.6,0.7826979160308838,0.30460867285728455,0.9915564060211182,0.657724916934967,1.2150343656539917,0.4295710623264313,0.001890698098577559,-0.00047247743350453675,0.0015074275434017181,0.00209757499396801,0.002301890170201659,-0.0033422743435949087,-0.15732640027999878,-0.9969793558120728,0.8087716102600099,-0.0015732640027999879,-0.009969793558120728,0.008087716102600099,0.005777770187705755,-0.0019903185311704874,172 +illusion_1L,ppo,173,51.9,0.7237726449966431,0.22927060723304749,0.9568645358085632,0.6190747618675232,1.2935073375701904,0.44057905673980713,0.0018867321778088808,-0.00032737330184318125,0.0016141424421221018,0.0022275845985859632,0.0021799872629344463,-0.0032917007338255644,-0.24635088443756104,-0.9316163063049316,0.7764379978179932,-0.0024635088443756103,-0.009316163063049316,0.007764379978179932,0.005763606168329716,-0.0017554573714733124,173 +illusion_1L,ppo,174,52.2,0.6789097189903259,0.11835847049951553,0.9037999510765076,0.4548235535621643,1.3775770664215088,0.4224158823490143,0.001895122928544879,-0.0001660199777688831,0.0017198397545143962,0.0023965290747582912,0.002047728281468153,-0.0032081056851893663,-0.3195686936378479,-0.8628809452056885,0.7442770004272461,-0.003195686936378479,-0.008628809452056884,0.007442770004272461,0.005690249614417553,-0.0014095163205638528,174 +illusion_1L,ppo,175,52.5,0.662757158279419,-0.011258729733526707,0.8574013113975525,0.16159284114837646,1.4223626852035522,0.30549857020378113,0.001908144331537187,-1.1372451808711048e-05,0.0018238442717120051,0.002591714495792985,0.0019114313181489706,-0.003088243305683136,-0.3252655267715454,-0.8460428714752197,0.699765682220459,-0.003252655267715454,-0.008460428714752197,0.00699765682220459,0.005629390478134155,-0.0009736909996718168,175 +illusion_1L,ppo,176,52.8,0.6866317987442017,-0.1268581748008728,0.8397195935249329,-0.179573193192482,1.3764190673828125,0.05636003613471985,0.0019135590409860015,0.00010323970491299406,0.0019166215788573027,0.002808330347761512,0.0017862255917862058,-0.002918608020991087,-0.21077179908752441,-0.8947885036468506,0.6038565635681152,-0.002107717990875244,-0.008947885036468506,0.006038565635681153,0.005584970116615295,-0.00047515766345895827,176 +illusion_1L,ppo,177,53.1,0.7454268336296082,-0.20370660722255707,0.8518283367156982,-0.4654817581176758,1.2785793542861938,-0.20041853189468384,0.0019026882946491241,0.0001435102749383077,0.0019892954733222723,0.003039912087842822,0.0016988720744848251,-0.002687603933736682,0.03672471642494202,-0.9884910583496094,0.45760273933410645,0.0003672471642494202,-0.009884910583496094,0.0045760273933410645,0.005531984381377697,5.460584725369699e-05,177 +illusion_1L,ppo,178,53.4,0.8159925937652588,-0.25134530663490295,0.8834007978439331,-0.6140448451042175,1.1836695671081543,-0.3537583649158478,0.001884662895463407,9.880018478725106e-05,0.0020354995504021645,0.003275699680671096,0.0016642679693177342,-0.0024155774153769016,0.32274773716926575,-1.0797874927520752,0.35547125339508057,0.0032274773716926574,-0.010797874927520752,0.0035547125339508057,0.005518179386854172,0.0005818125791847706,178 +illusion_1L,ppo,179,53.7,0.8821718096733093,-0.28890493512153625,0.9211822748184204,-0.6307821869850159,1.1067988872528076,-0.40768173336982727,0.0018809986067935824,8.983062116385554e-07,0.0020473687909543514,0.0034944533836096525,0.0016675805673003197,-0.0021484470926225185,0.5225508809089661,-1.1151173114776611,0.3808012008666992,0.005225508809089661,-0.011151173114776612,0.0038080120086669924,0.005577066447585821,0.0010725450702011585,179 +illusion_1L,ppo,180,54.0,0.9430112838745117,-0.32048508524894714,0.9538464546203613,-0.6096707582473755,1.045371174812317,-0.41575369238853455,0.0019107689149677753,-0.00011182481102878228,0.002018911298364401,0.003665054216980934,0.001689055934548378,-0.0019177324138581753,0.6072808504104614,-1.0812585353851318,0.5060832500457764,0.006072808504104615,-0.01081258535385132,0.005060832500457764,0.005638485308736563,0.0014949759934097528,180 +illusion_1L,ppo,181,54.3,1.001042127609253,-0.3465178310871124,0.9785175323486328,-0.6037673950195312,0.990691602230072,-0.4147928059101105,0.0019770232029259205,-0.0002164981997339055,0.0019504439551383257,0.0037704959977418184,0.001727175316773355,-0.0017305586952716112,0.6418238878250122,-1.0285696387290955,0.6551814079284668,0.0064182388782501225,-0.010285696387290955,0.006551814079284668,0.005652999971061945,0.001821481972001493,181 +illusion_1L,ppo,182,54.6,1.0585763454437256,-0.3685176372528076,0.9973104000091553,-0.6160361170768738,0.9360721707344055,-0.4117967486381531,0.0020652597304433584,-0.00030507019255310297,0.0018530308734625578,0.0038317223079502583,0.0017834485042840242,-0.0015993611887097359,0.6842563152313232,-1.0020203590393066,0.80110764503479,0.006842563152313233,-0.010020203590393066,0.0080110764503479,0.005672627128660679,0.002030503237619996,182 +illusion_1L,ppo,183,54.9,1.1181634664535522,-0.3874000608921051,1.0109994411468506,-0.6417026519775391,0.8777966499328613,-0.3993724286556244,0.002159565221518278,-0.00040612404700368643,0.0017270660027861595,0.0038669828791171312,0.0018517982680350542,-0.0015572917181998491,0.7520004510879517,-1.0015997886657715,0.942112922668457,0.007520004510879517,-0.010015997886657715,0.00942112922668457,0.005716722924262285,0.0021080211736261845,183 +illusion_1L,ppo,184,55.2,1.1827534437179565,-0.4028834402561188,1.016053557395935,-0.667526364326477,0.8148297667503357,-0.3644561171531677,0.002242031041532755,-0.0005157050909474492,0.001582035911269486,0.003882965538650751,0.0019322315929457545,-0.0016290853964164853,0.8196448683738708,-1.0134963393211365,1.051730453968048,0.008196448683738708,-0.010134963393211365,0.01051730453968048,0.0057253409177064896,0.0020485445857048035,184 +illusion_1L,ppo,185,55.5,1.2554360628128052,-0.4123741686344147,1.003563642501831,-0.6515726447105408,0.7508141994476318,-0.2931145429611206,0.0023148697800934315,-0.0006248251302167773,0.001420290325768292,0.003876627655699849,0.002029895083978772,-0.0018106319475919008,0.8812916278839111,-1.044420838356018,1.1091114282608032,0.008812916278839112,-0.01044420838356018,0.011091114282608032,0.005700415000319481,0.001855533104389906,185 +illusion_1L,ppo,186,55.8,1.3353583812713623,-0.4047871530056,0.9693064093589783,-0.5240388512611389,0.6957631707191467,-0.17927882075309753,0.002369615714997053,-0.000722357421182096,0.001238259021192789,0.0038462411612272263,0.002141089178621769,-0.0020807271357625723,0.9135408997535706,-1.0788970589637756,1.1340717673301697,0.009135408997535706,-0.010788970589637757,0.011340717673301698,0.00570518197491765,0.0015412241918966174,186 +illusion_1L,ppo,187,56.1,1.3981709480285645,-0.34080082178115845,0.9289026856422424,-0.2582845687866211,0.6643018126487732,-0.034785475581884384,0.002396891824901104,-0.0007954374304972589,0.001044873846694827,0.0037732983473688364,0.0022522977087646723,-0.0024093971587717533,0.8673306703567505,-1.0439203977584839,1.14044588804245,0.008673306703567505,-0.010439203977584839,0.0114044588804245,0.005713063757866621,0.0011258659651502967,187 +illusion_1L,ppo,188,56.4,1.3861712217330933,-0.16517235338687897,0.9044190645217896,0.08099137246608734,0.6708303093910217,0.10694871097803116,0.002381620928645134,-0.0008341872598975897,0.000877990503795445,0.003625422017648816,0.0023523445706814528,-0.002754353219643235,0.7269822955131531,-0.9024858474731445,1.0993690490722656,0.007269822955131531,-0.009024858474731445,0.010993690490722656,0.00565308379009366,0.0006364086293615401,188 +illusion_1L,ppo,189,56.7,1.2921171188354492,0.07570160925388336,0.9029129147529602,0.3878731429576874,0.7189406752586365,0.20707601308822632,0.0023212553933262825,-0.0008464130805805326,0.0007784257177263498,0.003398349741473794,0.002442149445414543,-0.003059899900108576,0.5444282293319702,-0.737323522567749,0.9756287336349487,0.005444282293319703,-0.00737323522567749,0.009756287336349487,0.005567865911871195,0.00010473776637809351,189 +illusion_1L,ppo,190,57.0,1.1834741830825806,0.25773683190345764,0.9186162352561951,0.566907525062561,0.7899994254112244,0.2609277665615082,0.0022291485220193863,-0.0008505776640959084,0.0007642579730600119,0.0031215716153383255,0.0025223586708307266,-0.003282124176621437,0.3628001809120178,-0.6249384880065918,0.8168401718139648,0.0036280018091201785,-0.006249384880065918,0.008168401718139649,0.005537909455597401,-0.0004344300541561097,190 +illusion_1L,ppo,191,57.3,1.099481225013733,0.34146344661712646,0.9419137835502625,0.6032683253288269,0.8603526949882507,0.29534009099006653,0.002122770296409726,-0.000848064199090004,0.0008252629195339978,0.0028279200196266174,0.0025876362342387438,-0.003404774237424135,0.21674552559852597,-0.6014547348022461,0.7047543525695801,0.00216745525598526,-0.006014547348022461,0.007047543525695801,0.005537074990570545,-0.000945847132243216,191 +illusion_1L,ppo,192,57.6,1.038905382156372,0.36511334776878357,0.9640593528747559,0.5841819643974304,0.9233879446983337,0.32419607043266296,0.0020344960503280163,-0.0008378145867027342,0.0009287216234952211,0.0025461080949753523,0.002628160174936056,-0.00343989091925323,0.14065703749656677,-0.6918306350708008,0.6722193956375122,0.0014065703749656677,-0.006918306350708008,0.006722193956375122,0.005531030707061291,-0.0013960730284452438,192 +illusion_1L,ppo,193,57.9,0.9888049364089966,0.3705323338508606,0.9810418486595154,0.5747389197349548,0.9812924265861511,0.3487774729728699,0.0019713921938091516,-0.0008116092067211866,0.001045741606503725,0.0023026703856885433,0.0026290034875273705,-0.0034245983697474003,0.09717275202274323,-0.8299529552459717,0.717322587966919,0.0009717275202274322,-0.008299529552459717,0.00717322587966919,0.00557838287204504,-0.0017556919483467937,193 +illusion_1L,ppo,194,58.2,0.9395676851272583,0.3730534613132477,0.9933480024337769,0.583268404006958,1.0366264581680298,0.37035059928894043,0.0019324950408190489,-0.0007603695266880095,0.00116374169010669,0.002121599158272147,0.0025815130211412907,-0.0033999911975115538,0.051397472620010376,-0.9488155841827393,0.7886056900024415,0.0005139747262001038,-0.009488155841827392,0.007886056900024415,0.0056895059533417225,-0.0020012580789625645,194 +illusion_1L,ppo,195,58.5,0.8869057297706604,0.3704081177711487,1.0015426874160767,0.6062777638435364,1.0920344591140747,0.390220582485199,0.0019096999894827604,-0.0006843743030913174,0.0012802466517314315,0.002022820757701993,0.0024982397444546223,-0.0033811707980930805,-0.006256073713302612,-1.021470069885254,0.8227353096008302,-6.256073713302612e-05,-0.010214700698852539,0.008227353096008302,0.005760743748396635,-0.002116837538778782,195 +illusion_1L,ppo,196,58.8,0.8294327855110168,0.3534659743309021,1.0037686824798584,0.6379569172859192,1.1507760286331177,0.4088975489139557,0.0018977379659190774,-0.0005855713970959187,0.0013992823660373688,0.00201523513533175,0.0024039102718234062,-0.0033559338189661503,-0.07860380411148071,-1.040733516216278,0.8058376312255859,-0.0007860380411148072,-0.010407335162162782,0.008058376312255859,0.005753485951572657,-0.0020950448233634233,196 +illusion_1L,ppo,197,59.1,0.7687394022941589,0.3101816177368164,0.9934121966362,0.6578643321990967,1.2168169021606445,0.4256547689437866,0.0018940436420962214,-0.0004623244167305529,0.0015216260217130184,0.002095589879900217,0.0023084785789251328,-0.0033126664347946644,-0.16057193279266357,-1.0176490545272827,0.773745059967041,-0.0016057193279266357,-0.010176490545272827,0.0077374505996704104,0.005740967579185963,-0.0019375038100406528,197 +illusion_1L,ppo,198,59.4,0.7111837267875671,0.230560302734375,0.9612946510314941,0.6137403249740601,1.2939178943634033,0.4360714852809906,0.0018943333998322487,-0.00031649222364649177,0.0016384903574362397,0.0022470911499112844,0.0021997932344675064,-0.0032497704960405827,-0.24435782432556152,-0.9648854732513429,0.7502398490905762,-0.0024435782432556154,-0.009648854732513428,0.007502398490905762,0.005731895100325346,-0.0016547086415812373,198 +illusion_1L,ppo,199,59.7,0.6681976914405823,0.11495736241340637,0.9108794927597046,0.44290873408317566,1.3756976127624512,0.41794833540916443,0.0018986862851306796,-0.0001575217756908387,0.001744134584441781,0.0024436169769614935,0.0020687254145741463,-0.003162927459925413,-0.309848427772522,-0.9055113792419434,0.722765326499939,-0.00309848427772522,-0.009055113792419434,0.00722765326499939,0.00566871277987957,-0.0012652967125177383,199 +illusion_1L,ppo,200,60.0,0.6540173888206482,-0.018583469092845917,0.8660951852798462,0.14677953720092773,1.4175307750701904,0.30460113286972046,0.0019020908512175083,-6.4890064095379785e-06,0.0018405801383778453,0.0026644293684512377,0.0019260350381955504,-0.0030399456154555082,-0.3097296953201294,-0.8843719959259033,0.6716611385345459,-0.003097296953201294,-0.008843719959259033,0.0067166113853454595,0.005592959467321634,-0.0007947873091325164,200 +illusion_1L,ppo,201,60.3,0.679723858833313,-0.13593418896198273,0.8478975296020508,-0.19305092096328735,1.367379069328308,0.06049778684973717,0.0019013704732060432,0.00010563350951997563,0.0019265387672930956,0.002900118473917246,0.0017960035474970937,-0.002866108436137438,-0.18724191188812256,-0.9282619953155516,0.5779423713684082,-0.0018724191188812256,-0.009282619953155517,0.005779423713684082,0.0055853561498224735,-0.000273875892162323,201 +illusion_1L,ppo,202,60.6,0.7401667237281799,-0.21178056299686432,0.8577988743782043,-0.473884642124176,1.2642642259597778,-0.1953090876340866,0.0018882183358073235,0.00013652512279804796,0.001994503429159522,0.003147660056129098,0.0017049025045707822,-0.002635273151099682,0.07024693489074707,-1.022898554801941,0.44634222984313965,0.0007024693489074707,-0.010228985548019409,0.004463422298431397,0.0055999187752604485,0.000263598543824628,202 +illusion_1L,ppo,203,60.9,0.8119665384292603,-0.2572694718837738,0.8863666653633118,-0.615081250667572,1.167768955230713,-0.3487568199634552,0.0018736100755631924,8.680669270688668e-05,0.0020377819892019033,0.0033931604120880365,0.0016666364390403032,-0.0023666415363550186,0.35340508818626404,-1.1007604598999023,0.35474395751953125,0.0035340508818626406,-0.011007604598999023,0.0035474395751953127,0.005566527601331472,0.000782874645665288,203 +illusion_1L,ppo,204,61.2,0.8788956999778748,-0.29336050152778625,0.9211671948432922,-0.6278074383735657,1.0930012464523315,-0.4022207260131836,0.0018821139819920063,-1.2280449482204858e-05,0.002052807714790106,0.0036070251371711493,0.001671278034336865,-0.0021028986666351557,0.5419930219650269,-1.108412504196167,0.3875693082809448,0.005419930219650268,-0.01108412504196167,0.0038756930828094485,0.005543616600334644,0.0012505297781899571,204 +illusion_1L,ppo,205,61.5,0.9403565526008606,-0.324295312166214,0.9515792727470398,-0.6067860126495361,1.03470778465271,-0.40959426760673523,0.0019257329404354095,-0.00011944080324610695,0.0020314313005656004,0.003760728519409895,0.0016969296848401427,-0.0018795605283230543,0.6175737977027893,-1.0608521699905396,0.5324996709823608,0.006175737977027893,-0.010608521699905395,0.005324996709823608,0.0055874851532280445,0.0016366330673918128,205 +illusion_1L,ppo,206,61.8,0.9989707469940186,-0.3501826524734497,0.9746828079223633,-0.60198575258255,0.9825829863548279,-0.40816599130630493,0.0019998475909233093,-0.00021938778809271753,0.0019650887697935104,0.0038485033437609673,0.001733967219479382,-0.0017072439659386873,0.651134729385376,-1.0111383199691772,0.7024184465408325,0.00651134729385376,-0.010111383199691773,0.007024184465408326,0.005633705295622349,0.0019166492857038975,206 +illusion_1L,ppo,207,62.1,1.056807041168213,-0.3723849356174469,0.9919986128807068,-0.6153101325035095,0.9295046925544739,-0.40525686740875244,0.0020880913361907005,-0.0003152827266603708,0.001858430914580822,0.003886645659804344,0.0017844138201326132,-0.0015964906197041273,0.6910766959190369,-0.9819747209548949,0.8564255237579347,0.006910766959190369,-0.00981974720954895,0.008564255237579347,0.005650329869240522,0.002072976902127266,207 +illusion_1L,ppo,208,62.4,1.1162960529327393,-0.3918003737926483,1.00388765335083,-0.642005205154419,0.8719844818115234,-0.39389392733573914,0.0021744247060269117,-0.00041315428097732365,0.0017262115143239498,0.00389649230055511,0.0018522640457376838,-0.0015777944354340434,0.7496422529220581,-0.9785867929458618,0.9963223934173584,0.007496422529220581,-0.009785867929458618,0.009963223934173584,0.005705440882593393,0.002096022479236126,208 +illusion_1L,ppo,209,62.7,1.1805336475372314,-0.40818825364112854,1.0068658590316772,-0.6693054437637329,0.8093811273574829,-0.36163753271102905,0.0022481298074126244,-0.0005197693244554102,0.001577344723045826,0.003891285276040435,0.0019413623958826065,-0.0016747901681810617,0.8209451436996459,-1.0036524534225464,1.1027106046676636,0.00820945143699646,-0.010036524534225464,0.011027106046676637,0.005788230337202549,0.0019847527146339417,209 +illusion_1L,ppo,210,63.0,1.2529934644699097,-0.4189579486846924,0.9926695823669434,-0.6566340327262878,0.7455980181694031,-0.29488593339920044,0.0023149503394961357,-0.0006272255559451878,0.0014110637130215764,0.003873885376378894,0.0020491972099989653,-0.0018843656871467829,0.8847293853759765,-1.0469112396240234,1.1500577330589294,0.008847293853759765,-0.010469112396240234,0.011500577330589295,0.00579201802611351,0.001746693509630859,210 +illusion_1L,ppo,211,63.3,1.3331071138381958,-0.41270560026168823,0.9577826857566833,-0.5358843803405762,0.6905308365821838,-0.18690840899944305,0.0023696995340287685,-0.0007263215375132859,0.001226549269631505,0.0038368680980056524,0.0021714521571993828,-0.0021767867729067802,0.9126620292663574,-1.0781771540641785,1.1495273113250732,0.009126620292663574,-0.010781771540641786,0.011495273113250732,0.005716915708035231,0.001397387241013348,211 +illusion_1L,ppo,212,63.6,1.396268367767334,-0.3485189378261566,0.9173693060874939,-0.2786080539226532,0.6582834720611572,-0.04732507839798927,0.0023941569961607456,-0.0007999094668775797,0.0010361297754570842,0.0037595948670059443,0.0022935480810701847,-0.002521590096876025,0.8630069494247437,-1.0423246622085571,1.1341890096664429,0.008630069494247437,-0.010423246622085571,0.011341890096664429,0.00565684586763382,0.0009593489812687039,212 +illusion_1L,ppo,213,63.9,1.3855735063552856,-0.1700415313243866,0.8926181197166443,0.05725981295108795,0.6627398729324341,0.09375370293855667,0.0023774837609380484,-0.000841596513055265,0.0008680256432853639,0.0036132060922682285,0.0023994266521185637,-0.0028742190916091204,0.7281230688095093,-0.9153567552566528,1.078676700592041,0.007281230688095093,-0.009153567552566529,0.010786767005920411,0.005609786603599787,0.0004605941940099001,213 +illusion_1L,ppo,214,64.2,1.2959914207458496,0.07417984306812286,0.8908675312995911,0.3712553083896637,0.7085770964622498,0.1979118287563324,0.002314623910933733,-0.0008627563947811723,0.0007591627654619515,0.0033892421051859856,0.0024854561779648066,-0.0031746388413012028,0.5501695871353149,-0.759451150894165,0.9437178373336793,0.005501695871353149,-0.007594511508941651,0.009437178373336793,0.005531110800802708,-6.716222560498863e-05,214 +illusion_1L,ppo,215,64.5,1.1915885210037231,0.26007381081581116,0.9068449139595032,0.5668756365776062,0.7794350981712341,0.25565147399902344,0.00221797963604331,-0.0008702611085027456,0.0007378429872915149,0.003109120298177004,0.00255936780013144,-0.0033733074087649584,0.3638243079185486,-0.6394429206848145,0.7788527011871338,0.003638243079185486,-0.006394429206848145,0.007788527011871338,0.005488442722707987,-0.0005905209691263735,215 +illusion_1L,ppo,216,64.8,1.1077779531478882,0.3473100960254669,0.9308648705482483,0.6160939335823059,0.8509326577186584,0.29210564494132996,0.002116669900715351,-0.000871452793944627,0.0008019570959731936,0.0028068190440535545,0.002622478175908327,-0.00346172577701509,0.21401274204254148,-0.608086347579956,0.6787278652191162,0.002140127420425415,-0.006080863475799561,0.006787278652191162,0.0055447774939239025,-0.0010764988837763667,216 +illusion_1L,ppo,217,65.1,1.0449999570846558,0.3719785511493683,0.9539318680763245,0.5981887578964233,0.9149778485298157,0.3228837847709656,0.0020314203575253487,-0.000854139041621238,0.0009132815175689757,0.0025190284941345453,0.0026601909194141626,-0.003467282047495246,0.13390208780765533,-0.7034022808074951,0.6723952293395996,0.0013390208780765533,-0.007034022808074952,0.006723952293395996,0.005618898663669825,-0.0014945860020816326,217 +illusion_1L,ppo,218,65.4,0.9927494525909424,0.3766234219074249,0.9715577363967896,0.5864729881286621,0.9739525318145752,0.3493213355541229,0.0019717554096132517,-0.0008211329695768654,0.0010389212984591722,0.002278942381963134,0.0026567147579044104,-0.0034313544165343046,0.09462504088878632,-0.8508825302124023,0.7245535850524902,0.0009462504088878632,-0.008508825302124023,0.007245535850524902,0.0056407577358186245,-0.0018186323577538133,218 +illusion_1L,ppo,219,65.7,0.9421859979629517,0.37810999155044556,0.9840960502624512,0.5936237573623657,1.0307722091674805,0.37252452969551086,0.0019376641139388084,-0.0007656347588635981,0.0011688761878758669,0.0021109352819621563,0.002607873175293207,-0.003396563231945038,0.04948773980140687,-0.9703810214996339,0.7922639846801758,0.0004948773980140687,-0.009703810214996339,0.007922639846801758,0.005669464357197285,-0.00202845293097198,219 +illusion_1L,ppo,220,66.0,0.8889657855033875,0.3748621344566345,0.9921556711196899,0.6161131262779236,1.08820378780365,0.3938908278942108,0.0019175062188878655,-0.0006861824076622725,0.0013009407557547092,0.002032850868999958,0.002526386408135295,-0.003377881133928895,-0.008766412734985352,-1.0444586277008057,0.8279374837875367,-8.766412734985352e-05,-0.010444586277008058,0.008279374837875367,0.005728682037442923,-0.002111055189743638,220 +illusion_1L,ppo,221,66.3,0.8313211798667908,0.3579449951648712,0.9935755133628845,0.6478288769721985,1.1494014263153076,0.4140043258666992,0.0019026289228349924,-0.0005825644475407898,0.0014244257472455502,0.0020510752219706774,0.002425410784780979,-0.0033620428293943405,-0.08290350437164307,-1.0634365677833557,0.8120584487915038,-0.0008290350437164306,-0.010634365677833558,0.008120584487915038,0.005740906111896038,-0.0020614201202988625,221 +illusion_1L,ppo,222,66.6,0.770389199256897,0.3152945637702942,0.9814189672470093,0.6672711372375488,1.2182258367538452,0.43207311630249023,0.0018927884520962834,-0.0004542467067949474,0.0015406067250296474,0.0021520787850022316,0.002317187376320362,-0.0033222706988453865,-0.1690402626991272,-1.0230193734169006,0.7661062479019165,-0.001690402626991272,-0.010230193734169007,0.007661062479019165,0.00570477731525898,-0.0018827876774594188,222 +illusion_1L,ppo,223,66.9,0.7122853398323059,0.23660728335380554,0.9472671747207642,0.6198989748954773,1.2982429265975952,0.4426800608634949,0.0018886808538809419,-0.0003031973901670426,0.0016506462125107646,0.0023115777876228094,0.002196765039116144,-0.003252878086641431,-0.25295311212539673,-0.9508684873580933,0.7353323698043823,-0.002529531121253967,-0.009508684873580933,0.007353323698043823,0.005704289767891169,-0.0015864415327087045,223 +illusion_1L,ppo,224,67.2,0.6683763265609741,0.12161378562450409,0.8968939185142517,0.44304922223091125,1.380234718322754,0.4181143045425415,0.0018917645793408155,-0.00014056172221899033,0.001752818818204105,0.002506846096366644,0.0020561469718813896,-0.003155715996399522,-0.311398983001709,-0.8864719867706299,0.7166457176208496,-0.00311398983001709,-0.0088647198677063,0.007166457176208496,0.005719874519854784,-0.0011909975437447429,224 +illusion_1L,ppo,225,67.5,0.6528819799423218,-0.012565933167934418,0.8553038239479065,0.14216870069503784,1.4145407676696777,0.2850850820541382,0.0018982308683916926,1.0833806300070137e-05,0.0018489068606868386,0.0027191988192498684,0.0019063696963712573,-0.003022723365575075,-0.3038838505744934,-0.8618481159210205,0.6708700656890869,-0.003038838505744934,-0.008618481159210205,0.0067087006568908696,0.005665991455316544,-0.0007212489726953208,225 +illusion_1L,ppo,226,67.8,0.677127480506897,-0.1324453502893448,0.841713547706604,-0.19922970235347748,1.3599766492843628,0.028336768969893456,0.0019023297354578972,0.00011952523345826194,0.0019399585435166955,0.002938783960416913,0.001778018893674016,-0.0028378618881106377,-0.1761874556541443,-0.8986301422119141,0.5698544979095459,-0.001761874556541443,-0.00898630142211914,0.005698544979095459,0.005579077173024416,-0.00020663297618739307,226 +illusion_1L,ppo,227,68.1,0.7371883392333984,-0.21123595535755157,0.8556669354438782,-0.48067790269851685,1.264150857925415,-0.21838292479515076,0.0018952232785522938,0.00014774795272387564,0.0020162404980510473,0.0031674508936703205,0.001697442145086825,-0.0025989168789237738,0.08086740970611572,-0.9954296350479126,0.44222474098205566,0.0008086740970611573,-0.009954296350479126,0.004422247409820557,0.0055456943809986115,0.00032058797660283744,227 +illusion_1L,ppo,228,68.4,0.8103129267692566,-0.25803467631340027,0.8867210149765015,-0.6237688660621643,1.1741130352020264,-0.35939645767211914,0.0018841646378859878,9.544974454911426e-05,0.0020613661035895348,0.003397853346541524,0.0016654484206810594,-0.0023313446436077356,0.35771211981773376,-1.0843530893325806,0.3697011470794678,0.0035771211981773378,-0.010843530893325806,0.0036970114707946776,0.005538465455174446,0.0008273206767626107,228 +illusion_1L,ppo,229,68.7,0.8790696263313293,-0.2944498062133789,0.9225634932518005,-0.6378812193870544,1.1004908084869385,-0.40686529874801636,0.0018904057797044516,-7.71435043134261e-06,0.0020678394939750433,0.0036001205444335938,0.0016668143216520548,-0.0020739627070724964,0.5413022637367249,-1.1002777218818665,0.40838789939880366,0.005413022637367248,-0.011002777218818665,0.004083878993988037,0.005518500693142414,0.0012816928792744875,229 +illusion_1L,ppo,230,69.0,0.9420337677001953,-0.32555970549583435,0.9532928466796875,-0.6168742179870605,1.0401346683502197,-0.41322699189186096,0.0019322906155139208,-0.00011618927237577736,0.002035279758274555,0.0037423837929964066,0.0016886513913050294,-0.001855267328210175,0.614902913570404,-1.0549958944320679,0.5456550121307373,0.00614902913570404,-0.010549958944320679,0.005456550121307373,0.005552514921873808,0.0016550382133573294,230 +illusion_1L,ppo,231,69.3,1.0018737316131592,-0.3514218330383301,0.9763344526290894,-0.6122303009033203,0.9849217534065247,-0.41201531887054443,0.00200320384465158,-0.00021984786144457757,0.0019611723255366087,0.0038232849910855293,0.001726688933558762,-0.0016891300911083817,0.6548930406570435,-1.0157946348190308,0.7149289846420288,0.006548930406570435,-0.010157946348190307,0.0071492898464202885,0.005664129741489887,0.0019236936932429671,231 +illusion_1L,ppo,232,69.6,1.0610278844833374,-0.3733077049255371,0.993453860282898,-0.6263366341590881,0.9287372827529907,-0.40872299671173096,0.0020890526939183474,-0.000321738887578249,0.0018481772858649492,0.003863898804411292,0.0017802170477807522,-0.001590157044120133,0.701122522354126,-0.9995073080062866,0.8696335554122926,0.0070112252235412596,-0.009995073080062866,0.008696335554122926,0.005749957635998726,0.0020704984199255705,232 +illusion_1L,ppo,233,69.9,1.1223644018173218,-0.39198416471481323,1.0051099061965942,-0.6537685394287109,0.868472695350647,-0.3956123888492584,0.002175242407247424,-0.0004200463881716132,0.0017123011639341712,0.003880833275616169,0.0018539903685450554,-0.001583427656441927,0.7580797076225281,-0.9939718246459962,0.9966821670532225,0.007580797076225281,-0.009939718246459962,0.009966821670532226,0.005759336985647678,0.0020859010983258486,233 +illusion_1L,ppo,234,70.2,1.1892880201339722,-0.4068531394004822,1.0073307752609253,-0.6784812808036804,0.8039376735687256,-0.3595131039619446,0.0022578260395675898,-0.0005287542007863522,0.0015653190203011036,0.0038828719407320023,0.0019513737643137574,-0.0016898679314181209,0.8299431204795837,-1.0129934549331665,1.0875185132026672,0.008299431204795838,-0.010129934549331665,0.010875185132026673,0.005756254307925701,0.0019686000887304544,234 +illusion_1L,ppo,235,70.5,1.265045166015625,-0.4143806993961334,0.9916025996208191,-0.6527248620986938,0.7397843599319458,-0.28675535321235657,0.0023263331968337297,-0.0006391365895979106,0.0014000037917867303,0.0038737389259040356,0.0020662390161305666,-0.0019057145109400153,0.8930290937423707,-1.0567894577980042,1.1356902122497559,0.008930290937423707,-0.010567894577980042,0.01135690212249756,0.005749706644564867,0.0017256771679967642,235 +illusion_1L,ppo,236,70.8,1.3463975191116333,-0.39975157380104065,0.9568566679954529,-0.5065885782241821,0.6865585446357727,-0.1720997542142868,0.002376386197283864,-0.0007355387788265944,0.0012106546200811863,0.0038413393776863813,0.0021848403848707676,-0.002204188844189048,0.9136507511138916,-1.0786163806915283,1.1409251689910889,0.009136507511138916,-0.010786163806915284,0.01140925168991089,0.005683912429958582,0.0013722052099183202,236 +illusion_1L,ppo,237,71.1,1.401206374168396,-0.31650424003601074,0.9209042191505432,-0.22568054497241974,0.6585451364517212,-0.02818065695464611,0.0023957050871104,-0.0008104837615974247,0.0010166078573092818,0.003754149656742811,0.0022964514791965485,-0.002545308554545045,0.8495907187461854,-1.0140256881713867,1.1188185811042786,0.008495907187461854,-0.010140256881713867,0.011188185811042787,0.005598609335720539,0.0009303490514867008,237 +illusion_1L,ppo,238,71.4,1.3741495609283447,-0.12175725400447845,0.9026260375976562,0.11696024239063263,0.6688483953475952,0.11182510107755661,0.002372138435021043,-0.0008483035489916801,0.0008550438215024769,0.0035856962203979492,0.0023951102048158646,-0.0028847872745245695,0.7021257877349854,-0.8713889122009278,1.0589947700500488,0.007021257877349854,-0.008713889122009278,0.010589947700500488,0.0055789402686059475,0.000428010243922472,238 +illusion_1L,ppo,239,71.7,1.2780563831329346,0.11082009971141815,0.9055309295654297,0.4159928858280182,0.7194802761077881,0.21049945056438446,0.00230405037291348,-0.0008655947167426348,0.0007572866743430495,0.0033444103319197893,0.002478211186826229,-0.003170232055708766,0.5262929201126099,-0.7321028709411621,0.9304128885269165,0.005262929201126099,-0.007321028709411621,0.009304128885269165,0.005592026747763157,-0.00010290697537129745,239 +illusion_1L,ppo,240,72.0,1.1769136190414429,0.27098214626312256,0.9225309491157532,0.5820636749267578,0.791556715965271,0.26409921050071716,0.0022020540200173855,-0.0008710075635462999,0.0007469698321074247,0.0030581257306039333,0.002550847828388214,-0.0033588421065360308,0.3427327275276184,-0.6287739276885986,0.7786920070648193,0.003427327275276184,-0.006287739276885987,0.007786920070648193,0.0055693225003778934,-0.0006285032723098993,240 +illusion_1L,ppo,241,72.3,1.097546935081482,0.3412013053894043,0.9446418285369873,0.6103458404541016,0.8623502850532532,0.29889410734176636,0.002106187166646123,-0.0008684301283210516,0.0008221311727538705,0.002756701083853841,0.0026152394711971283,-0.0034439475275576115,0.1989406943321228,-0.6113623380661011,0.6854276657104492,0.001989406943321228,-0.006113623380661011,0.006854276657104493,0.005552446935325861,-0.001115041202865541,241 +illusion_1L,ppo,242,72.6,1.0373899936676025,0.3614100515842438,0.9648852348327637,0.5897293090820312,0.9260203838348389,0.3281494677066803,0.002025868045166135,-0.0008508224273100495,0.0009410423808731139,0.002477133646607399,0.0026547859888523817,-0.003454477759078145,0.1258818507194519,-0.720942497253418,0.6867313385009766,0.0012588185071945191,-0.00720942497253418,0.006867313385009766,0.005589765962213278,-0.0015311157330870628,242 +illusion_1L,ppo,243,72.9,0.9859901070594788,0.36705636978149414,0.9802283644676208,0.5808736085891724,0.9850101470947266,0.35318121314048767,0.0019700543489307165,-0.0008132617804221809,0.0010658539831638336,0.0022509312257170677,0.002646669512614608,-0.003429628675803542,0.08448463678359985,-0.8700186014175415,0.7423760890960693,0.0008448463678359985,-0.008700186014175415,0.007423760890960694,0.00562874274328351,-0.0018496968550607562,243 +illusion_1L,ppo,244,73.2,0.9353302121162415,0.3694742023944855,0.990973711013794,0.5905470848083496,1.0418680906295776,0.37537339329719543,0.0019340376602485776,-0.0007531580049544573,0.0011898804223164916,0.0020953556522727013,0.0025892704725265503,-0.003401616122573614,0.03573012351989746,-0.9766921997070312,0.7974085807800292,0.00035730123519897464,-0.009766921997070313,0.007974085807800292,0.005641409661620855,-0.0020499122329056263,244 +illusion_1L,ppo,245,73.5,0.8814046382904053,0.36535993218421936,0.9971048831939697,0.614943265914917,1.0992724895477295,0.39602839946746826,0.001911713508889079,-0.0006702937535010278,0.001313853426836431,0.0020245902705937624,0.002501184120774269,-0.003379778005182743,-0.02410873770713806,-1.037770390510559,0.8181798458099364,-0.00024108737707138062,-0.010377703905105591,0.008181798458099365,0.005687114782631397,-0.0021184461656957865,245 +illusion_1L,ppo,246,73.8,0.8228171467781067,0.34536564350128174,0.9957823753356934,0.6466424465179443,1.1605665683746338,0.41557884216308594,0.0018965722993016243,-0.0005634872359223664,0.0014340614434331656,0.002048187656328082,0.002399624092504382,-0.003353334730491042,-0.0946677029132843,-1.0562672019004822,0.8029571771621705,-0.000946677029132843,-0.010562672019004822,0.008029571771621705,0.005764052737504244,-0.0020504610147327185,246 +illusion_1L,ppo,247,74.1,0.7616629600524902,0.29763561487197876,0.9794601202011108,0.6599414944648743,1.2300176620483398,0.43292078375816345,0.0018870305502787232,-0.0004332544340286404,0.001549293752759695,0.0021551705431193113,0.002290579257532954,-0.0033073609229177237,-0.17674696445465088,-1.0216680765151978,0.7662593126296997,-0.0017674696445465089,-0.010216680765151977,0.007662593126296997,0.005783763248473406,-0.001849970780313015,247 +illusion_1L,ppo,248,74.4,0.7052547335624695,0.2133084535598755,0.9406702518463135,0.596173882484436,1.310975193977356,0.44122177362442017,0.0018878199625760317,-0.0002815857878886163,0.001661091111600399,0.0023203743621706963,0.0021715108305215836,-0.0032335601281374693,-0.26244038343429565,-0.9494863748550415,0.7291970252990723,-0.0026244038343429567,-0.009494863748550415,0.007291970252990723,0.005733401048928499,-0.0015296366764232516,248 +illusion_1L,ppo,249,74.7,0.6658119559288025,0.09497980773448944,0.8885329365730286,0.3985501229763031,1.3904567956924438,0.40724775195121765,0.001896458095870912,-0.00011998874106211588,0.0017694024136289954,0.0025218718219548464,0.002040090272203088,-0.0031301737762987614,-0.31924885511398315,-0.8903383016586304,0.6997087001800537,-0.0031924885511398315,-0.008903383016586304,0.006997087001800537,0.005679980851709843,-0.001109990873374045,249 +illusion_1L,ppo,250,75.0,0.6575894951820374,-0.036816686391830444,0.8493562936782837,0.08628851175308228,1.4136589765548706,0.25495612621307373,0.001904632430523634,2.9218019335530698e-05,0.0018690715078264475,0.0027453508228063583,0.0019009745446965098,-0.0029910386074334383,-0.2975679039955139,-0.8831052780151367,0.6491225957870483,-0.002975679039955139,-0.008831052780151368,0.006491225957870483,0.005627625621855259,-0.0006181322387419641,250 +illusion_1L,ppo,251,75.3,0.6898177862167358,-0.1478024572134018,0.8396936058998108,-0.2506413757801056,1.3486629724502563,-0.010653779841959476,0.0019039860926568508,0.00012819575204048306,0.0019552374724298716,0.002979572396725416,0.0017782649956643581,-0.0027978394646197557,-0.1472107470035553,-0.9303942918777466,0.5388715267181396,-0.001472107470035553,-0.009303942918777466,0.0053887152671813964,0.005549031309783459,-8.59768915688619e-05,251 +illusion_1L,ppo,252,75.6,0.753726601600647,-0.2177734673023224,0.8568223118782043,-0.5125449299812317,1.2502593994140625,-0.24699963629245758,0.001891339081339538,0.00014759611804038286,0.0020224025938659906,0.0032172517385333776,0.0017008418217301369,-0.0025475001893937588,0.12213045358657837,-1.018359661102295,0.4057760238647461,0.0012213045358657837,-0.010183596611022949,0.004057760238647461,0.005499288439750671,0.0004518234054557979,252 +illusion_1L,ppo,253,75.9,0.8253234624862671,-0.26172855496406555,0.8897536396980286,-0.6293202638626099,1.1609433889389038,-0.3729071021080017,0.0018790614558383822,8.369283750653267e-05,0.002060798928141594,0.0034479110036045313,0.0016723601147532463,-0.002272927202284336,0.3985362648963929,-1.0951946377754211,0.35027384757995605,0.003985362648963929,-0.010951946377754212,0.003502738475799561,0.00553347822278738,0.000960158125963062,253 +illusion_1L,ppo,254,76.2,0.8912948369979858,-0.2976865768432617,0.9258529543876648,-0.6305617094039917,1.089083194732666,-0.4110265076160431,0.0018901372095569968,-2.2627407815889455e-05,0.0020616415422409773,0.003645377466455102,0.0016738066915422678,-0.0020187003538012505,0.5674847364425659,-1.1038726568222046,0.421062707901001,0.005674847364425659,-0.011038726568222046,0.00421062707901001,0.0055986023508012295,0.0014057770604267716,254 +illusion_1L,ppo,255,76.5,0.9522939920425415,-0.3281138241291046,0.955828845500946,-0.6108824610710144,1.0301437377929688,-0.41461122035980225,0.0019389031222090125,-0.00013624195707961917,0.00202389108017087,0.0037794625386595726,0.0016945296665653586,-0.001809410867281258,0.6297457814216614,-1.0506832599639893,0.5724771022796631,0.006297457814216614,-0.010506832599639892,0.005724771022796631,0.005635641980916262,0.0017594960518181324,255 +illusion_1L,ppo,256,76.8,1.011015772819519,-0.3534475564956665,0.978354811668396,-0.6094571352005005,0.9757952094078064,-0.41292232275009155,0.0020183222368359566,-0.00023380389029625803,0.0019495781743898988,0.003848826978355646,0.0017371118301525712,-0.0016538541531190276,0.6599636077880859,-1.0019071102142334,0.7405507564544678,0.00659963607788086,-0.010019071102142334,0.007405507564544678,0.005671056918799877,0.0019981369841843843,256 +illusion_1L,ppo,257,77.1,1.0698215961456299,-0.375104159116745,0.9953587055206299,-0.6257360577583313,0.9202728271484375,-0.4086093604564667,0.0021122826728969812,-0.00034028649679385126,0.0018396422965452075,0.003879542462527752,0.0017987716710194945,-0.0015702116070315242,0.7088832855224609,-0.9860593080520631,0.8987252712249757,0.00708883285522461,-0.009860593080520631,0.008987252712249757,0.005717759020626545,0.002106070751324296,257 +illusion_1L,ppo,258,77.4,1.1313420534133911,-0.39373424649238586,1.0066243410110474,-0.653965175151825,0.860503613948822,-0.39278626441955566,0.00219725095666945,-0.00043413409730419517,0.0017033930635079741,0.003890144871547818,0.00187582871876657,-0.0015881978906691074,0.762001633644104,-0.9831987619400024,1.0367882251739502,0.00762001633644104,-0.009831987619400025,0.010367882251739503,0.005728086922317743,0.002076256787404418,258 +illusion_1L,ppo,259,77.7,1.1986733675003052,-0.4085923433303833,1.0071709156036377,-0.6756175756454468,0.7964182496070862,-0.3518511950969696,0.002270790748298168,-0.0005424270639196038,0.0015512772370129824,0.0038831138517707586,0.0019721826538443565,-0.0017217773711308837,0.8348150849342346,-0.999767541885376,1.1235181093215942,0.008348150849342347,-0.00999767541885376,0.011235181093215942,0.005702213384211063,0.0019107060506939888,259 +illusion_1L,ppo,260,78.0,1.274748682975769,-0.4156321585178375,0.988245964050293,-0.6387203335762024,0.7332356572151184,-0.2727464437484741,0.0023364422377198935,-0.0006500870804302394,0.0013816390419378877,0.0038594715297222137,0.002086623338982463,-0.00196127244271338,0.8947724103927612,-1.0411921739578247,1.164521038532257,0.008947724103927612,-0.010411921739578247,0.01164521038532257,0.005696525331586599,0.0016203367849811912,260 +illusion_1L,ppo,261,78.3,1.3546677827835083,-0.3975411057472229,0.9508324265480042,-0.47561442852020264,0.6822525262832642,-0.1522923856973648,0.0023742334451526403,-0.0007441725465469062,0.001189074944704771,0.0038134753704071045,0.002207254059612751,-0.0022816418204456568,0.9104814529418945,-1.0670896768569946,1.173956573009491,0.009104814529418945,-0.010670896768569946,0.01173956573009491,0.005705347750335932,0.0012242335360497236,261 +illusion_1L,ppo,262,78.6,1.4019547700881958,-0.30333182215690613,0.9146595001220703,-0.1832510530948639,0.6582688689231873,-0.006246430799365044,0.002386318752542138,-0.0008086711168289185,0.0009938349248841405,0.003715347032994032,0.0023208335041999817,-0.002642489969730377,0.83689284324646,-1.0012589693069458,1.1485110521316528,0.0083689284324646,-0.010012589693069458,0.011485110521316528,0.0056749628856778145,0.0007483611116185784,262 +illusion_1L,ppo,263,78.9,1.3635867834091187,-0.09639327973127365,0.8978245854377747,0.15854845941066742,0.6740767955780029,0.12968234717845917,0.002358346479013562,-0.0008452891488559544,0.0008380024810321629,0.0035364890936762094,0.0024225094821304083,-0.0029925983399152756,0.6839276552200317,-0.8529150485992432,1.0660890340805054,0.006839276552200318,-0.008529150485992431,0.010660890340805054,0.005616396199911833,0.00022382187307812274,263 +illusion_1L,ppo,264,79.2,1.2628860473632812,0.13621516525745392,0.9025616645812988,0.44467681646347046,0.7292254567146301,0.22058822214603424,0.0022867487277835608,-0.0008578820852562785,0.0007535341428592801,0.0032893395982682705,0.0025114763993769884,-0.0032758049201220274,0.500304639339447,-0.7144742012023926,0.9151105880737306,0.00500304639339447,-0.007144742012023926,0.009151105880737306,0.005577105097472668,-0.00031522029894404113,264 +illusion_1L,ppo,265,79.5,1.1633967161178589,0.2880089581012726,0.921227216720581,0.59139484167099,0.8022190928459167,0.26961982250213623,0.002188205486163497,-0.0008689108653925359,0.0007550633163191378,0.0030023742001503706,0.0025875563733279705,-0.003452020464465022,0.32042765617370605,-0.6231820583343506,0.755876898765564,0.0032042765617370608,-0.006231820583343506,0.00755876898765564,0.005551840178668499,-0.0008338077459484339,265 +illusion_1L,ppo,266,79.8,1.087122917175293,0.35040944814682007,0.9443889260292053,0.6083695888519287,0.8719022870063782,0.30342817306518555,0.00208976399153471,-0.0008650427334941924,0.0008332828874699771,0.0027041826397180557,0.0026475449558347464,-0.0035164535511285067,0.18026390671730042,-0.6223925352096558,0.6659245491027832,0.0018026390671730041,-0.006223925352096558,0.006659245491027832,0.0055290330201387405,-0.0012984927743673325,266 +illusion_1L,ppo,267,80.1,1.0290333032608032,0.36670157313346863,0.9646657109260559,0.5881244540214539,0.9344028830528259,0.33229491114616394,0.002012023003771901,-0.0008466024301014841,0.0009503853507339954,0.00242942338809371,0.002679157070815563,-0.003499159123748541,0.11567597091197968,-0.7413492202758789,0.6676734685897827,0.0011567597091197968,-0.00741349220275879,0.006676734685897827,0.005548518151044846,-0.0016795200062915683,267 +illusion_1L,ppo,268,80.4,0.9781574606895447,0.3709288537502289,0.9794250726699829,0.5823230147361755,0.9923903346061707,0.35713252425193787,0.0019596160855144262,-0.0008079379913397133,0.0010762966703623533,0.0022104885429143906,0.0026618780102580786,-0.0034494984429329634,0.07853040099143982,-0.8942570686340332,0.7337216138839722,0.0007853040099143982,-0.008942570686340332,0.0073372161388397215,0.00562577648088336,-0.001952742924913764,268 +illusion_1L,ppo,269,80.7,0.9271420240402222,0.37234818935394287,0.9893827438354492,0.5944194793701172,1.0485721826553345,0.3793942332267761,0.0019272591453045607,-0.0007454301230609417,0.0012030042707920074,0.002069783164188266,0.002596289850771427,-0.003406795207411051,0.03253781795501709,-1.0077391266822815,0.7973934412002565,0.00032537817955017093,-0.010077391266822815,0.007973934412002564,0.005705163814127445,-0.0021011470817029476,269 +illusion_1L,ppo,270,81.0,0.8726803660392761,0.3666072487831116,0.9945729374885559,0.6205491423606873,1.1059457063674927,0.4003085196018219,0.001907773781567812,-0.0006589056574739516,0.0013314804527908564,0.0020214503165334463,0.0025042109191417694,-0.003376644104719162,-0.02927443385124207,-1.0668623447418213,0.811237931251526,-0.0002927443385124207,-0.010668623447418214,0.00811237931251526,0.005744705442339182,-0.0021158847957849503,270 +illusion_1L,ppo,271,81.3,0.813893735408783,0.34382107853889465,0.9918136596679688,0.6521802544593811,1.168117880821228,0.4201815724372864,0.0018977688159793615,-0.0005482328124344349,0.0014601442962884903,0.002069771522656083,0.0024064788594841957,-0.0033423197455704212,-0.10477840900421143,-1.0746049880981445,0.7821042537689209,-0.0010477840900421143,-0.010746049880981446,0.00782104253768921,0.005756988190114498,-0.0019967579282820225,271 +illusion_1L,ppo,272,81.6,0.7533400654792786,0.29202696681022644,0.9730755686759949,0.65992671251297,1.239432692527771,0.4375944435596466,0.0018916811095550656,-0.0004131584719289094,0.0015826491871848702,0.0022024798672646284,0.002301852684468031,-0.003288678824901581,-0.1895405650138855,-1.0335065126419067,0.7430787086486816,-0.001895405650138855,-0.010335065126419067,0.007430787086486816,0.005744813941419125,-0.0017521297559142113,272 +illusion_1L,ppo,273,81.9,0.6986280083656311,0.20308753848075867,0.9318991303443909,0.5817019939422607,1.322178602218628,0.44386163353919983,0.0018904856406152248,-0.00025660492246970534,0.0016940382774919271,0.002391157438978553,0.0021786128636449575,-0.0032086241990327835,-0.2725985646247864,-0.9568154811859131,0.7117336988449097,-0.002725985646247864,-0.00956815481185913,0.007117336988449097,0.005693688523024321,-0.001398277236148715,273 +illusion_1L,ppo,274,82.2,0.6620880365371704,0.0812259241938591,0.8801891803741455,0.36665481328964233,1.3980103731155396,0.39847487211227417,0.0018949792720377445,-9.290745219914243e-05,0.0017960791010409594,0.0026067907456308603,0.00203512841835618,-0.003097816836088896,-0.32049548625946045,-0.8895168304443359,0.6833887100219727,-0.0032049548625946046,-0.00889516830444336,0.006833887100219727,0.005629749968647957,-0.0009582436759956181,274 +illusion_1L,ppo,275,82.5,0.6577871441841125,-0.051015522330999374,0.8443418145179749,0.04556829109787941,1.408178687095642,0.22428098320960999,0.0019016701262444258,5.343083830666728e-05,0.0018912579398602247,0.002833252539858222,0.001886253710836172,-0.0029477241914719343,-0.2812132239341736,-0.8774776458740234,0.6325615644454956,-0.002812132239341736,-0.008774776458740235,0.006325615644454956,0.005596959963440895,-0.00046027303324081004,275 +illusion_1L,ppo,276,82.8,0.6939003467559814,-0.15885797142982483,0.8382157683372498,-0.2880462110042572,1.3349007368087769,-0.04840570315718651,0.0018950894009321928,0.00014296924928203225,0.001975057180970907,0.0030636645387858152,0.0017594635719433427,-0.0027465028688311577,-0.10706537961959839,-0.9303641319274902,0.5317084789276123,-0.001070653796195984,-0.009303641319274903,0.005317084789276123,0.005591437220573425,6.405806198017672e-05,276 +illusion_1L,ppo,277,83.1,0.7597835063934326,-0.22531339526176453,0.8576459884643555,-0.5366606116294861,1.2377190589904785,-0.2726994454860687,0.0018848556792363524,0.0001458155020372942,0.0020394441671669483,0.003292898880317807,0.0016814382979646325,-0.0024957614950835705,0.17118827998638153,-1.0189526081085205,0.41272974014282227,0.0017118827998638154,-0.010189526081085205,0.0041272974014282225,0.005585479084402323,0.0005818844656459987,277 +illusion_1L,ppo,278,83.4,0.831540048122406,-0.26796624064445496,0.8915340900421143,-0.6378147602081299,1.1513822078704834,-0.3848034143447876,0.0018810508772730827,7.407175144180655e-05,0.0020768684335052967,0.0035082101821899414,0.001656733569689095,-0.002227195305749774,0.4289991557598114,-1.0809203386306763,0.3729853630065918,0.004289991557598114,-0.010809203386306762,0.003729853630065918,0.005581559147685766,0.0010611350880935788,278 +illusion_1L,ppo,279,83.7,0.8977079391479492,-0.30347520112991333,0.9275210499763489,-0.6331623196601868,1.0817264318466187,-0.4157118797302246,0.0019027461530640721,-3.636106339399703e-05,0.0020778945181518793,0.0036829160526394844,0.0016664147842675447,-0.0019830437377095222,0.5777109265327454,-1.0786662101745605,0.45621716976165777,0.0057771092653274535,-0.010786662101745606,0.004562171697616578,0.005591227672994137,0.0014725204091519117,279 +illusion_1L,ppo,280,84.0,0.9594219923019409,-0.3335157632827759,0.9569818377494812,-0.6153268218040466,1.0236011743545532,-0.41748660802841187,0.001958700129762292,-0.00014455786731559783,0.002036250662058592,0.0037957692984491587,0.0016945651732385159,-0.0017862721579149365,0.6290284991264343,-1.0305613279342651,0.6138819456100464,0.006290284991264343,-0.010305613279342651,0.006138819456100464,0.0056059095077216625,0.0017913009505718946,280 +illusion_1L,ppo,281,84.3,1.0190842151641846,-0.3586121201515198,0.9789519309997559,-0.6167783737182617,0.9688562154769897,-0.41541165113449097,0.0020393759477883577,-0.0002446941507514566,0.0019512083381414413,0.0038504377007484436,0.0017404784448444843,-0.0016442523337900639,0.6623372435569763,-0.9920556545257568,0.7765107154846191,0.006623372435569763,-0.009920556545257569,0.007765107154846192,0.005624179262667894,0.0019987314008176327,281 +illusion_1L,ppo,282,84.6,1.0789673328399658,-0.38006046414375305,0.9950819611549377,-0.6357225775718689,0.9120362401008606,-0.4100724756717682,0.002124476246535778,-0.0003468813665676862,0.0018308800645172596,0.003871361492201686,0.00180504797026515,-0.00157697475515306,0.7115744352340698,-0.9815478324890137,0.924343466758728,0.0071157443523406985,-0.009815478324890136,0.00924343466758728,0.005661684088408947,0.0020831020083278418,282 +illusion_1L,ppo,283,84.9,1.1418955326080322,-0.39827924966812134,1.0046714544296265,-0.665359377861023,0.8504886627197266,-0.3917401432991028,0.0022051960695534945,-0.00045544272870756686,0.0016870725667104125,0.0038786891382187605,0.0018878082046285272,-0.0016136447666212916,0.7747716903686523,-0.9931485652923583,1.0462143421173096,0.007747716903686524,-0.009931485652923584,0.010462143421173097,0.005714363418519497,0.0020403247326612473,283 +illusion_1L,ppo,284,85.2,1.2113358974456787,-0.4120824933052063,1.0021287202835083,-0.6823298931121826,0.7850704193115234,-0.34636756777763367,0.0022762552835047245,-0.0005545694148167968,0.0015267633134499192,0.0038771717809140682,0.0019896849989891052,-0.0017660206649452448,0.8427238464355469,-1.0251381397247314,1.1209619641304016,0.008427238464355469,-0.010251381397247315,0.011209619641304016,0.005751916207373142,0.001874040812253952,284 +illusion_1L,ppo,285,85.5,1.2899633646011353,-0.41590070724487305,0.9796310663223267,-0.6274240016937256,0.7222545742988586,-0.2614162266254425,0.0023357104510068893,-0.0006697185453958809,0.001348000019788742,0.003863075515255332,0.0021077299024909735,-0.0020173415541648865,0.9079741835594177,-1.0721327066421509,1.1377819776535034,0.009079741835594178,-0.010721327066421508,0.011377819776535035,0.005752751603722572,0.0015952644171193242,285 +illusion_1L,ppo,286,85.8,1.3686957359313965,-0.3866872787475586,0.942287802696228,-0.4377707540988922,0.6742416024208069,-0.13567321002483368,0.0023855273611843586,-0.0007645589648745954,0.0011529542971402407,0.0038209848571568727,0.002230351325124502,-0.0023362217471003532,0.9039036631584167,-1.079651951789856,1.1248619556427002,0.009039036631584167,-0.01079651951789856,0.011248619556427001,0.005716994404792786,0.0012215939350426197,286 +illusion_1L,ppo,287,86.1,1.402709722518921,-0.2680196762084961,0.9112215042114258,-0.12794099748134613,0.6556878685951233,0.01241361629217863,0.00238978723064065,-0.0008268403471447527,0.0009627668769098818,0.003717283485457301,0.0023426618427038193,-0.00268374290317297,0.8086819052696228,-0.9917244911193848,1.087680459022522,0.008086819052696228,-0.009917244911193848,0.01087680459022522,0.005655428394675255,0.0007760541047900915,287 +illusion_1L,ppo,288,86.4,1.348616123199463,-0.04583262279629707,0.9007181525230408,0.21338984370231628,0.6778438091278076,0.14554420113563538,0.002356590935960412,-0.0008647392387501895,0.0008133142837323248,0.003530023852363229,0.0024371654726564884,-0.0030039523262530565,0.6490216851234436,-0.842350959777832,0.985891103744507,0.006490216851234436,-0.00842350959777832,0.00985891103744507,0.005588269792497158,0.000285650254227221,288 +illusion_1L,ppo,289,86.7,1.246912956237793,0.17293865978717804,0.9096047878265381,0.48206883668899536,0.737405002117157,0.23129138350486755,0.0022795097902417183,-0.0008782072691246867,0.0007381789619103074,0.0032752761617302895,0.0025187302380800247,-0.0032436985056847334,0.4638986885547638,-0.7098543643951416,0.8338570594787598,0.004638986885547638,-0.007098543643951416,0.008338570594787598,0.005542092490941286,-0.00022027546947356313,289 +illusion_1L,ppo,290,87.0,1.1529451608657837,0.30263131856918335,0.9291557669639587,0.6047801971435547,0.8113648295402527,0.27745598554611206,0.002180432202294469,-0.0008781956858001649,0.0007555230404250324,0.002982513513416052,0.0025909484829753637,-0.0033767723944038153,0.28945744037628174,-0.6269173622131348,0.7036633491516113,0.0028945744037628175,-0.006269173622131348,0.007036633491516113,0.005534210707992315,-0.0007117835339158773,290 +illusion_1L,ppo,291,87.3,1.0804349184036255,0.35209327936172485,0.950843095779419,0.6095107793807983,0.8805325031280518,0.3103916347026825,0.0020822077058255672,-0.0008735638693906367,0.0008470853208564222,0.0026843331288546324,0.002646306762471795,-0.0034149419516324997,0.17148357629776,-0.6492879390716553,0.6577502489089966,0.0017148357629776002,-0.006492879390716553,0.006577502489089966,0.005564122460782528,-0.0011600726284086704,291 +illusion_1L,ppo,292,87.6,1.0232939720153809,0.36492919921875,0.9689639210700989,0.58942711353302,0.9427724480628967,0.3386070132255554,0.0020077726803719997,-0.0008474678033962846,0.0009707718854770064,0.002417837968096137,0.0026675211265683174,-0.003397007007151842,0.11468957364559172,-0.7784556150436401,0.6960387229919434,0.0011468957364559173,-0.007784556150436402,0.0069603872299194335,0.005614774767309427,-0.0015391155611723661,292 +illusion_1L,ppo,293,87.9,0.9718700051307678,0.36910566687583923,0.9820120334625244,0.5862900018692017,1.0011199712753296,0.36297643184661865,0.0019599355291575193,-0.0008018995868042111,0.001101905945688486,0.00221214909106493,0.0026408920530229807,-0.003369241487234831,0.07710909843444824,-0.9169212579727174,0.7735768556594849,0.0007710909843444824,-0.009169212579727174,0.007735768556594849,0.005659830756485462,-0.0018271084409207106,293 +illusion_1L,ppo,294,88.2,0.9199761152267456,0.3700871169567108,0.9907105565071106,0.6008961200714111,1.058411717414856,0.3850114047527313,0.00192977802362293,-0.000732882646843791,0.0012329748133197427,0.0020865683909505606,0.002570049837231636,-0.003359176218509674,0.02465984225273132,-1.0066089630126953,0.8339519500732423,0.0002465984225273132,-0.010066089630126953,0.008339519500732423,0.005684380419552326,-0.002007660223171115,294 +illusion_1L,ppo,295,88.5,0.8645347356796265,0.3622512221336365,0.994366466999054,0.6290199160575867,1.1176313161849976,0.40580233931541443,0.0019095230381935835,-0.0006400478887371719,0.0013580531813204288,0.0020505995489656925,0.002471824875101447,-0.0033624295610934496,-0.043219685554504395,-1.0411885380744934,0.8459181785583495,-0.00043219685554504397,-0.010411885380744935,0.008459181785583495,0.005696034524589777,-0.0020706653594970703,295 +illusion_1L,ppo,296,88.8,0.8048274517059326,0.3351781368255615,0.9885648488998413,0.6594341993331909,1.182381510734558,0.42538487911224365,0.0018951864913105965,-0.0005242343759164214,0.001475296332500875,0.002100453246384859,0.002361292950809002,-0.0033559887669980526,-0.12323552370071413,-1.0214401483535767,0.8206963539123535,-0.0012323552370071412,-0.010214401483535767,0.008206963539123535,0.005703396163880825,-0.0020128197502344847,296 +illusion_1L,ppo,297,89.1,0.7441691756248474,0.2771425247192383,0.964508593082428,0.6557360291481018,1.257056474685669,0.4415340721607208,0.0018881928408518434,-0.00038386444794014096,0.0015858510741963983,0.0022179295774549246,0.0022405851632356644,-0.0033223843201994896,-0.21132987737655642,-0.9548909664154053,0.7901653051376342,-0.002113298773765564,-0.009548909664154052,0.007901653051376342,0.005702631548047066,-0.0018377614906057715,297 +illusion_1L,ppo,298,89.4,0.6913278698921204,0.1817139983177185,0.9185429811477661,0.5515280365943909,1.3420931100845337,0.4412979781627655,0.0018913777312263846,-0.00022531626746058464,0.0016886981902644038,0.002376735210418701,0.002102467929944396,-0.0032589167822152376,-0.29169410467147827,-0.8707592487335205,0.7726764678955078,-0.002916941046714783,-0.008707592487335205,0.0077267646789550785,0.00569628830999136,-0.001555830822326243,298 +illusion_1L,ppo,299,89.7,0.6595385074615479,0.05628638714551926,0.8678982257843018,0.30831652879714966,1.4100093841552734,0.37185317277908325,0.0018980083987116814,-6.60150617477484e-05,0.0017873636679723859,0.002556602004915476,0.0019489816622808576,-0.0031635956838726997,-0.32905739545822144,-0.817450761795044,0.7516095638275146,-0.0032905739545822143,-0.00817450761795044,0.007516095638275147,0.005691180936992168,-0.0011834697797894478,299 +illusion_1L,ppo,300,90.0,0.6626884937286377,-0.07332446426153183,0.8388131856918335,-0.024651657789945602,1.4005193710327148,0.16445304453372955,0.0019074245356023312,7.127341814339161e-05,0.0018826076993718743,0.0027485531754791737,0.001802452839910984,-0.0030227405950427055,-0.271780788898468,-0.8273468017578125,0.6855103969573975,-0.00271780788898468,-0.008273468017578126,0.0068551039695739745,0.005671756807714701,-0.0007422934286296368,300 +illusion_1L,ppo,301,90.3,0.7062525153160095,-0.17308835685253143,0.8404609560966492,-0.34882500767707825,1.3188802003860474,-0.10857835412025452,0.0019083728548139334,0.0001412117126164958,0.001967916265130043,0.002950146095827222,0.0016927587566897273,-0.002822590060532093,-0.0767008364200592,-0.9023716449737549,0.5576283931732178,-0.000767008364200592,-0.009023716449737549,0.005576283931732178,0.0056210970506072044,-0.0002578797866590321,301 +illusion_1L,ppo,302,90.6,0.7753773331642151,-0.23309387266635895,0.8656641840934753,-0.5703384280204773,1.2243623733520508,-0.3073185384273529,0.001896349829621613,0.000130292828544043,0.002029638970270753,0.0031605693511664867,0.0016368888318538666,-0.0025699299294501543,0.1978933960199356,-1.0061032176017761,0.4294035434722901,0.0019789339601993562,-0.010061032176017762,0.004294035434722901,0.005563950631767511,0.00024165630748029798,302 +illusion_1L,ppo,303,90.9,0.846656084060669,-0.2737695574760437,0.9022670388221741,-0.6427575349807739,1.1416112184524536,-0.3961986005306244,0.001884903060272336,5.096204040455632e-05,0.0020563818980008364,0.0033673718571662903,0.0016293303342536092,-0.002299719024449587,0.4377729296684265,-1.0772244930267334,0.389837384223938,0.004377729296684265,-0.010772244930267334,0.00389837384223938,0.005538197699934244,0.000727235630620271,303 +illusion_1L,ppo,304,91.2,0.9118078351020813,-0.3080903887748718,0.938079833984375,-0.6286540627479553,1.074148178100586,-0.4170379638671875,0.0018982370384037495,-5.812802555738017e-05,0.0020447138231247663,0.0035430537536740303,0.0016519551863893867,-0.0020511888433247805,0.5674096941947937,-1.08003431558609,0.4647945165634155,0.005674096941947937,-0.010800343155860901,0.004647945165634155,0.005544575862586498,0.001170451520010829,304 +illusion_1L,ppo,305,91.5,0.9727184176445007,-0.3366859555244446,0.966317355632782,-0.6134659051895142,1.0161725282669067,-0.41758283972740173,0.001946025062352419,-0.0001650086633162573,0.0019932889845222235,0.0036692197900265455,0.0016928135883063078,-0.0018422988941892982,0.6175261735916138,-1.0458139777183533,0.59913170337677,0.0061752617359161375,-0.010458139777183533,0.0059913170337677,0.005573783535510302,0.0015451861545443535,305 +illusion_1L,ppo,306,91.8,1.03184175491333,-0.3604065477848053,0.9874973297119141,-0.6181643009185791,0.9602962136268616,-0.4158408045768738,0.0020197746343910694,-0.0002622910251375288,0.0019012981792911887,0.00375274452380836,0.0017469272715970874,-0.0016828443622216582,0.6607452630996704,-1.027466595172882,0.7387353181838989,0.006607452630996704,-0.010274665951728821,0.007387353181838989,0.005636546760797501,0.001829120796173811,306 +illusion_1L,ppo,307,92.1,1.0917224884033203,-0.3804740309715271,1.003383994102478,-0.6392471194267273,0.90189129114151,-0.4088914692401886,0.002105743158608675,-0.0003663889074232429,0.0017768122488632798,0.0038118131924420595,0.001811679219827056,-0.0015963793266564608,0.7224804162979126,-1.0296645164489746,0.866379976272583,0.007224804162979126,-0.010296645164489747,0.00866379976272583,0.005716180428862572,0.00200505624525249,307 +illusion_1L,ppo,308,92.4,1.1553924083709717,-0.3970581591129303,1.012594223022461,-0.6681284308433533,0.8389592170715332,-0.385384202003479,0.0021960227750241756,-0.0004725097678601742,0.0016336576081812382,0.003856031456962228,0.0018892103107646108,-0.0016086105024442077,0.7894552946090698,-1.0410191416740417,0.9672755002975464,0.007894552946090698,-0.010410191416740417,0.009672755002975464,0.005756895989179611,0.0020619675051420927,308 +illusion_1L,ppo,309,92.7,1.2262650728225708,-0.4084838330745697,1.0082567930221558,-0.6751700043678284,0.7733654379844666,-0.33068832755088806,0.0022753572557121515,-0.0005834190524183214,0.0014759314944967628,0.003883063793182373,0.0019810490775853395,-0.0017269877716898918,0.8589927554130554,-1.0682120323181152,1.025349736213684,0.008589927554130555,-0.010682120323181152,0.010253497362136842,0.005743067711591721,0.001995726488530636,309 +illusion_1L,ppo,310,93.0,1.3059306144714355,-0.40772494673728943,0.9828588962554932,-0.5948429107666016,0.7128111720085144,-0.2340521216392517,0.002343080472201109,-0.0006950302631594241,0.0012980799656361341,0.0038859613705426455,0.002082389546558261,-0.0019352894742041826,0.9095016717910767,-1.1047397255897522,1.044467806816101,0.009095016717910766,-0.011047397255897522,0.01044467806816101,0.005714329890906811,0.001809444511309266,310 +illusion_1L,ppo,311,93.3,1.3807307481765747,-0.36736464500427246,0.9449576735496521,-0.37367603182792664,0.6704415082931519,-0.09891243278980255,0.0023896945640444756,-0.0007853265851736069,0.001105907023884356,0.003848341293632984,0.0021853481885045767,-0.0022051893174648285,0.8916726112365723,-1.091952919960022,1.0487209558486938,0.008916726112365722,-0.01091952919960022,0.010487209558486938,0.005683825351297855,0.0015134024433791637,311 +illusion_1L,ppo,312,93.6,1.4001103639602661,-0.2306903898715973,0.916762113571167,-0.04669615253806114,0.6610854268074036,0.05002564564347267,0.002402491867542267,-0.0008395848562940955,0.0009294087649323046,0.0037376407999545336,0.002281974069774151,-0.0025043925270438194,0.7797644734382629,-0.9771552085876465,1.0346418619155884,0.00779764473438263,-0.009771552085876465,0.010346418619155884,0.0056352922692894936,0.0011245590867474675,312 +illusion_1L,ppo,313,93.9,1.3298994302749634,-0.0026898919604718685,0.909939706325531,0.28636297583580017,0.6938853859901428,0.17228549718856812,0.0023636389523744583,-0.0008667684742249548,0.0008044359274208546,0.0035420486237853765,0.00236728903837502,-0.0027898347470909357,0.610617995262146,-0.8150161504745482,0.9639374017715455,0.00610617995262146,-0.008150161504745483,0.009639374017715455,0.005594110582023859,0.0006656530895270407,313 +illusion_1L,ppo,314,94.2,1.2222644090652466,0.20175676047801971,0.9211703538894653,0.5207730531692505,0.7595321536064148,0.24401643872261047,0.002285138238221407,-0.0008649163646623492,0.0007558500510640442,0.0032859237398952246,0.00244284700602293,-0.0030178145971149206,0.4272613525390625,-0.6844367980957031,0.8418982028961183,0.004272613525390625,-0.006844367980957031,0.008418982028961183,0.005593768786638975,0.00016393783153034747,314 +illusion_1L,ppo,315,94.5,1.1300969123840332,0.3131906986236572,0.9415378570556641,0.603301465511322,0.8328785300254822,0.2834518253803253,0.0021777774672955275,-0.0008587615448050201,0.0007931736763566732,0.002999334130436182,0.0025105667300522327,-0.003168500028550625,0.2696925103664398,-0.6139291524887085,0.7365987300872803,0.0026969251036643984,-0.006139291524887085,0.007365987300872803,0.005601159762591124,-0.0003503881162032485,315 +illusion_1L,ppo,316,94.8,1.0621602535247803,0.352596253156662,0.9631242752075195,0.5928782224655151,0.8997134566307068,0.31352633237838745,0.0020800211932510138,-0.0008467812440358102,0.0008916985243558884,0.0027116083074361086,0.002562327077612281,-0.003247208893299103,0.17077656090259552,-0.65114426612854,0.69486403465271,0.0017077656090259553,-0.006511442661285401,0.006948640346527099,0.005579833872616291,-0.0008459693053737283,316 +illusion_1L,ppo,317,95.1,1.0086897611618042,0.3634434640407562,0.9810802936553955,0.5762308239936829,0.9603244066238403,0.33894288539886475,0.00200315797701478,-0.0008205781341530383,0.0010095230536535382,0.0024521478917449713,0.002579699968919158,-0.0032792275305837393,0.12001422047615053,-0.7684037685394287,0.726442813873291,0.0012001422047615052,-0.007684037685394288,0.0072644281387329104,0.005568155087530613,-0.001292198314331472,317 +illusion_1L,ppo,318,95.4,0.9590163230895996,0.3683520257472992,0.9947591423988342,0.5780162811279297,1.0173993110656738,0.36065995693206787,0.0019502155482769012,-0.000777112552896142,0.0011258355807512999,0.002239916240796447,0.0025497733149677515,-0.0032966393046081066,0.0756935179233551,-0.87813401222229,0.7957859039306641,0.000756935179233551,-0.0087813401222229,0.00795785903930664,0.005600422155112028,-0.001661122078076005,318 +illusion_1L,ppo,319,95.7,0.907256543636322,0.36920464038848877,1.004851222038269,0.5959574580192566,1.073447346687317,0.3800979256629944,0.001919125090353191,-0.0007110425503924489,0.0012381941778585315,0.0020919612143188715,0.0024793457705527544,-0.0033170327078551054,0.018675237894058228,-0.9454480409622193,0.8499207496643066,0.00018675237894058227,-0.009454480409622193,0.008499207496643067,0.005640667863190174,-0.001929230522364378,319 +illusion_1L,ppo,320,96.0,0.850845217704773,0.35862115025520325,1.0103182792663574,0.6254748106002808,1.1313648223876953,0.3980306088924408,0.001900243922136724,-0.0006216944311745465,0.001346601522527635,0.002022380009293556,0.0023860910441726446,-0.0033360417000949383,-0.05069622397422791,-0.9692077636718751,0.865576982498169,-0.0005069622397422791,-0.009692077636718751,0.00865576982498169,0.005670505575835705,-0.0020790090784430504,320 +illusion_1L,ppo,321,96.3,0.7900862693786621,0.32512152194976807,1.006064772605896,0.6526938676834106,1.1947494745254517,0.4141365885734558,0.001889802166260779,-0.0005102650611661375,0.001452143071219325,0.0020329998806118965,0.002281664637848735,-0.00334177422337234,-0.12885114550590515,-0.953855037689209,0.8566303253173828,-0.0012885114550590516,-0.00953855037689209,0.008566303253173828,0.005723041016608477,-0.002100147772580385,321 +illusion_1L,ppo,322,96.6,0.7298646569252014,0.2573474943637848,0.982461154460907,0.6362853050231934,1.2677682638168335,0.425751656293869,0.0018878458067774773,-0.0003766608133446425,0.001557347015477717,0.0021129294764250517,0.002168821869418025,-0.0033252083230763674,-0.2151439189910889,-0.905205488204956,0.8408743143081666,-0.002151439189910889,-0.00905205488204956,0.008408743143081666,0.005777770187705755,-0.0019903185311704874,322 +illusion_1L,ppo,323,96.9,0.6805317401885986,0.151788592338562,0.9364907741546631,0.509678304195404,1.3502349853515625,0.4202308654785156,0.001895575551316142,-0.0002266411465825513,0.0016614282503724098,0.0022424596827477217,0.002044565975666046,-0.0032823362853378057,-0.29639315605163574,-0.8460116386413574,0.8192064762115479,-0.0029639315605163577,-0.008460116386413575,0.008192064762115479,0.005763606168329716,-0.0017554573714733124,323 +illusion_1L,ppo,324,97.2,0.6562356352806091,0.02106945402920246,0.8870567083358765,0.2460797131061554,1.4144269227981567,0.3496240973472595,0.0019077698234468699,-7.445090886903927e-05,0.0017601510044187307,0.002407023450359702,0.0019107927801087499,-0.003204141976311803,-0.33214765787124634,-0.8233219385147095,0.7753353118896484,-0.0033214765787124637,-0.008233219385147095,0.007753353118896485,0.005690249614417553,-0.0014095163205638528,324 +illusion_1L,ppo,325,97.5,0.6700659394264221,-0.10391825437545776,0.8598714470863342,-0.09158124029636383,1.3979593515396118,0.15030834078788757,0.0019135395996272564,5.0287799240322784e-05,0.0018484427127987146,0.002601164160296321,0.0017828081035986543,-0.0030733367893844843,-0.26438379287719727,-0.8650598526000975,0.684321403503418,-0.0026438379287719725,-0.008650598526000976,0.00684321403503418,0.005629390478134155,-0.0009736909996718168,325 +illusion_1L,ppo,326,97.8,0.7226029634475708,-0.19148306548595428,0.8622742891311646,-0.3987039029598236,1.3023055791854858,-0.11282796412706375,0.0019052058923989534,0.00011541316780494526,0.0019210368627682328,0.002821562113240361,0.0016876216977834702,-0.0028746332973241806,-0.05550855398178101,-0.9646627902984619,0.5358583927154541,-0.0005550855398178101,-0.009646627902984619,0.005358583927154541,0.005584970116615295,-0.00047515766345895827,326 +illusion_1L,ppo,327,98.1,0.7934918403625488,-0.24241551756858826,0.8864414691925049,-0.5820062160491943,1.1968321800231934,-0.3012687861919403,0.0018852625507861376,8.827610872685909e-05,0.001972070662304759,0.003065073164179921,0.0016457089222967625,-0.0026172318030148745,0.23852059245109555,-1.0811737775802612,0.3910372257232666,0.0023852059245109557,-0.010811737775802613,0.003910372257232666,0.005531984381377697,5.460584725369699e-05,327 +illusion_1L,ppo,328,98.4,0.861774206161499,-0.2793501019477844,0.9201050996780396,-0.6204437613487244,1.113712191581726,-0.3812151551246643,0.0018680643988773227,2.364822876188555e-06,0.001994136953726411,0.0033111218363046646,0.0016490323469042778,-0.0023424671962857246,0.46684271097183233,-1.138226866722107,0.3572903871536255,0.004668427109718323,-0.01138226866722107,0.003572903871536255,0.005518179386854172,0.0005818125791847706,328 +illusion_1L,ppo,329,98.7,0.9234960675239563,-0.31078216433525085,0.9516448974609375,-0.5991242527961731,1.051670789718628,-0.39875173568725586,0.001881178468465805,-0.00010255357483401895,0.001982496352866292,0.0035231378860771656,0.0016761855222284794,-0.0020913684275001287,0.5764458775520325,-1.1157004833221436,0.4458386898040772,0.005764458775520325,-0.011157004833221436,0.004458386898040772,0.005577066447585821,0.0010725450702011585,329 +illusion_1L,ppo,330,99.0,0.9812707304954529,-0.33681178092956543,0.9762855172157288,-0.5873236060142517,0.9996030926704407,-0.3996638357639313,0.0019311950309202075,-0.00019731553038582206,0.001934156403876841,0.003678704146295786,0.001717670587822795,-0.0018759099766612053,0.6193240880966187,-1.063820481300354,0.5803048610687256,0.006193240880966186,-0.01063820481300354,0.005803048610687256,0.005638485308736563,0.0014949759934097528,330 +illusion_1L,ppo,331,99.3,1.037372350692749,-0.35873040556907654,0.9953633546829224,-0.5941091775894165,0.9486557245254517,-0.3987305760383606,0.002013907767832279,-0.00028449302772060037,0.001847773208282888,0.0037814942188560963,0.0017686213832348585,-0.0017006121343001723,0.6624386310577393,-1.0274879932403564,0.7101948261260986,0.006624386310577393,-0.010274879932403565,0.007101948261260986,0.005652999971061945,0.001821481972001493,331 +illusion_1L,ppo,332,99.6,1.0940202474594116,-0.377790629863739,1.0101264715194702,-0.6153648495674133,0.8943268060684204,-0.39187026023864746,0.002103735227137804,-0.000375503848772496,0.0017305713845416903,0.0038454486057162285,0.001822464051656425,-0.0015925863990560174,0.7221088409423828,-1.012094259262085,0.8398871421813964,0.007221088409423829,-0.010120942592620849,0.008398871421813964,0.005672627128660679,0.002030503237619996,332 +illusion_1L,ppo,333,99.9,1.1537972688674927,-0.39429551362991333,1.018744707107544,-0.6436241865158081,0.8347872495651245,-0.3680327832698822,0.002192581072449684,-0.00047601619735360146,0.0015947408974170685,0.003879253752529621,0.0018835748778656125,-0.0015826174058020115,0.7927605509757996,-1.0172152519226074,0.9535534381866455,0.007927605509757995,-0.010172152519226074,0.009535534381866455,0.005716722924262285,0.0021080211736261845,333 +illusion_1L,ppo,334,100.2,1.2198137044906616,-0.4071286916732788,1.014229416847229,-0.6535749435424805,0.7718865275382996,-0.31372490525245667,0.002272722776979208,-0.0005841600359417498,0.001446371665224433,0.0038852349389344454,0.001962223555892706,-0.0016809179214760661,0.8611567616462708,-1.0454519987106323,1.0279958248138428,0.008611567616462708,-0.010454519987106323,0.010279958248138429,0.0057253409177064896,0.0020485445857048035,334 +illusion_1L,ppo,335,100.5,1.2944872379302979,-0.41127681732177734,0.9876141548156738,-0.587272047996521,0.7131498456001282,-0.21945597231388092,0.0023446499835699797,-0.0006930653471499681,0.0012800728436559439,0.003868329571560025,0.002059342572465539,-0.0018744865665212274,0.9096913933753968,-1.0913214087486267,1.0647652745246887,0.009096913933753968,-0.010913214087486267,0.010647652745246887,0.005700415000319481,0.001855533104389906,335 +illusion_1L,ppo,336,100.8,1.369826316833496,-0.3860549032688141,0.9437060356140137,-0.3892483115196228,0.671653687953949,-0.08927606791257858,0.0023930328898131847,-0.000779489055275917,0.001096739317290485,0.0038250212091952562,0.002165354322642088,-0.002143505960702896,0.8987786173820496,-1.1022719144821167,1.0944653749465942,0.008987786173820496,-0.011022719144821167,0.010944653749465943,0.00570518197491765,0.0015412241918966174,336 +illusion_1L,ppo,337,101.1,1.4034733772277832,-0.2768625319004059,0.904863178730011,-0.07949146628379822,0.6627339720726013,0.05224285274744034,0.0024072788655757904,-0.0008260589092969894,0.00092418392887339,0.003727251198142767,0.0022691849153488874,-0.002461462514474988,0.7979428768157959,-1.0094313621520996,1.1079575419425964,0.00797942876815796,-0.010094313621520997,0.011079575419425964,0.005713063757866621,0.0011258659651502967,337 +illusion_1L,ppo,338,101.4,1.3458927869796753,-0.056520454585552216,0.8882808685302734,0.2519259750843048,0.6959508061408997,0.16617709398269653,0.0023758886381983757,-0.0008422493119724095,0.000802112917881459,0.003550896653905511,0.0023620263673365116,-0.0027820272371172905,0.6279292106628418,-0.8335039615631104,1.0505273342132568,0.0062792921066284185,-0.008335039615631104,0.010505273342132568,0.00565308379009366,0.0006364086293615401,338 +illusion_1L,ppo,339,101.7,1.2324213981628418,0.17538829147815704,0.8953913450241089,0.4983929991722107,0.7609022259712219,0.23271913826465607,0.0022884963545948267,-0.0008370000286959112,0.0007564277620986104,0.0033050470519810915,0.002440209500491619,-0.0030517952982336283,0.43665462732315063,-0.6685537099838257,0.911684513092041,0.004366546273231507,-0.006685537099838257,0.00911684513092041,0.005567865911871195,0.00010473776637809351,339 +illusion_1L,ppo,340,102.0,1.1300950050354004,0.31584063172340393,0.9180931448936462,0.5943604111671448,0.8320367336273193,0.27166107296943665,0.0021798438392579556,-0.0008336249738931656,0.0007910748245194554,0.0030194094870239496,0.0025051585398614407,-0.0032347626984119415,0.2751631438732147,-0.5844540596008301,0.7624001502990723,0.0027516314387321474,-0.0058445405960083005,0.007624001502990723,0.005537909455597401,-0.0004344300541561097,340 +illusion_1L,ppo,341,102.3,1.0577939748764038,0.3665775656700134,0.9449520111083984,0.5887147784233093,0.8963305950164795,0.30312860012054443,0.0020736446604132652,-0.0008258789894171059,0.0008816863992251456,0.0027280854992568493,0.002555285347625613,-0.0033271603751927614,0.17544439435005188,-0.6235013008117676,0.6846790313720703,0.0017544439435005189,-0.006235013008117676,0.006846790313720703,0.005537074990570545,-0.000945847132243216,341 +illusion_1L,ppo,342,102.6,1.0048824548721313,0.3769161105155945,0.9675800800323486,0.5720444917678833,0.9546172022819519,0.3299463391304016,0.0019945672247558832,-0.0008096448145806789,0.0009932317771017551,0.0024588012602180243,0.002577833365648985,-0.0033534483518451452,0.12845994532108307,-0.7462825775146484,0.6921241283416748,0.0012845994532108306,-0.0074628257751464845,0.006921241283416748,0.005531030707061291,-0.0013960730284452438,342 +illusion_1L,ppo,343,102.9,0.9573561549186707,0.37927156686782837,0.9847903251647949,0.5728625655174255,1.0095282793045044,0.35274842381477356,0.0019442461198195815,-0.0007773978286422789,0.0011072246124967933,0.002233394654467702,0.00255739688873291,-0.003352539613842964,0.08530673384666443,-0.8684730529785156,0.7582716941833496,0.0008530673384666444,-0.008684730529785157,0.007582716941833496,0.00557838287204504,-0.0017556919483467937,343 +illusion_1L,ppo,344,103.2,0.9078753590583801,0.37930554151535034,0.9979816675186157,0.5891546607017517,1.0634472370147705,0.3730243444442749,0.0019156027119606733,-0.0007190353935584426,0.0012189877452328801,0.0020756497979164124,0.0024960096925497055,-0.0033519244752824306,0.03178456425666809,-0.9598501920700074,0.8241529464721681,0.00031784564256668094,-0.009598501920700074,0.00824152946472168,0.0056895059533417225,-0.0020012580789625645,344 +illusion_1L,ppo,345,103.5,0.8537809252738953,0.37016892433166504,1.006965160369873,0.6170525550842285,1.1190390586853027,0.3917083442211151,0.0019020005129277706,-0.0006373630603775382,0.0013302305014804006,0.0020033828914165497,0.0024117787834256887,-0.003353756619617343,-0.03220382332801819,-1.0064420700073242,0.844475507736206,-0.00032203823328018187,-0.010064420700073242,0.008444755077362061,0.005760743748396635,-0.002116837538778782,345 +illusion_1L,ppo,346,103.8,0.7950084209442139,0.3403497636318207,1.0078153610229492,0.6462202072143555,1.1794581413269043,0.40880823135375977,0.0018952838145196438,-0.0005321343196555972,0.0014421142404899001,0.0020196184050291777,0.002318786922842264,-0.003341987496241927,-0.11078205704689026,-1.002650260925293,0.8236997127532959,-0.0011078205704689026,-0.01002650260925293,0.00823699712753296,0.005753485951572657,-0.0020950448233634233,346 +illusion_1L,ppo,347,104.1,0.7352758049964905,0.2777751386165619,0.9914005398750305,0.6431881785392761,1.2483642101287842,0.4226580858230591,0.001892188796773553,-0.0004018883628305048,0.0015519766602665186,0.0021129364613443613,0.0022170026786625385,-0.0033054195810109377,-0.19636070728302002,-0.9611881971359253,0.7958478927612305,-0.0019636070728302002,-0.009611881971359253,0.007958478927612304,0.005740967579185963,-0.0019375038100406528,347 +illusion_1L,ppo,348,104.4,0.6835887432098389,0.17678292095661163,0.9511757493019104,0.5450313091278076,1.3272736072540283,0.42500290274620056,0.0018914156826213002,-0.00025351071963086724,0.0016569331055507064,0.002261609537526965,0.002099494216963649,-0.003244664752855897,-0.2740967869758606,-0.9051508903503418,0.7747104167938232,-0.002740967869758606,-0.009051508903503418,0.007747104167938232,0.005731895100325346,-0.0016547086415812373,348 +illusion_1L,ppo,349,104.7,0.6534136533737183,0.046631526201963425,0.90004962682724,0.31085145473480225,1.3985272645950317,0.38039129972457886,0.0018987107323482633,-0.00010072044096887112,0.0017557962564751506,0.0024482703302055597,0.0019673749338835478,-0.003154491074383259,-0.31538301706314087,-0.8724505901336671,0.7383208274841309,-0.0031538301706314086,-0.00872450590133667,0.007383208274841309,0.00566871277987957,-0.0012652967125177383,349 +illusion_1L,ppo,350,105.0,0.6588350534439087,-0.08436019718647003,0.8642759323120117,-0.01641797460615635,1.404038429260254,0.21839159727096558,0.0019007875816896558,3.285361162852496e-05,0.001846002764068544,0.00266357627697289,0.0018351427279412746,-0.0030216635204851627,-0.2706484794616699,-0.8946273326873779,0.6666191816329956,-0.002706484794616699,-0.00894627332687378,0.006666191816329956,0.005592959467321634,-0.0007947873091325164,350 +illusion_1L,ppo,351,105.3,0.7046600580215454,-0.18124771118164062,0.8571793437004089,-0.3380354344844818,1.3184638023376465,-0.043937813490629196,0.0018961491296067834,0.00010919917258433998,0.0019234665669500828,0.0029021732043474913,0.0017282248008996248,-0.002833812963217497,-0.08861508965492249,-0.9784990549087524,0.545223593711853,-0.0008861508965492249,-0.009784990549087524,0.00545223593711853,0.0055853561498224735,-0.000273875892162323,351 +illusion_1L,ppo,352,105.6,0.7744357585906982,-0.23702369630336761,0.8748583793640137,-0.5541903972625732,1.2070330381393433,-0.2649076282978058,0.0018806078005582094,9.943018085323274e-05,0.0019816195126622915,0.0031618636567145586,0.0016708989860489964,-0.0025915021542459726,0.1996229290962219,-1.0915411710739136,0.4088095426559448,0.001996229290962219,-0.010915411710739136,0.004088095426559448,0.0055999187752604485,0.000263598543824628,352 +illusion_1L,ppo,353,105.9,0.8446531891822815,-0.27476873993873596,0.906204104423523,-0.6201126575469971,1.1178854703903198,-0.3727826774120331,0.0018706107512116432,2.2224214262678288e-05,0.0020126148592680693,0.003420443506911397,0.00166279636323452,-0.002324474975466728,0.4515174627304077,-1.147397756576538,0.3534613847732544,0.004515174627304077,-0.01147397756576538,0.003534613847732544,0.005566527601331472,0.000782874645665288,353 +illusion_1L,ppo,354,106.2,0.9080278277397156,-0.3072807490825653,0.938467800617218,-0.6043912172317505,1.0540119409561157,-0.40043339133262634,0.0018863044679164886,-8.359891944564879e-05,0.0020097128581255674,0.0036339720245450735,0.0016813586698845029,-0.002074714982882142,0.5785320997238159,-1.1118016242980957,0.4290088415145874,0.005785320997238159,-0.011118016242980958,0.004290088415145874,0.005543616600334644,0.0012505297781899571,354 +illusion_1L,ppo,355,106.5,0.9667648077011108,-0.3347834646701813,0.9641895294189453,-0.5897524952888489,1.003015160560608,-0.4013236463069916,0.0019362173043191433,-0.00018323749827686697,0.0019669958855956793,0.0037755421362817287,0.0017120438860729337,-0.001861504279077053,0.621906578540802,-1.0447332859039307,0.5776534080505371,0.00621906578540802,-0.010447332859039307,0.005776534080505371,0.0055874851532280445,0.0016366330673918128,355 +illusion_1L,ppo,356,106.8,1.0231826305389404,-0.358092725276947,0.9835115671157837,-0.5941357016563416,0.9538395404815674,-0.3994310796260834,0.0020169971976429224,-0.00026801557396538556,0.0018836981616914272,0.003851616755127907,0.001754003926180303,-0.001691688084974885,0.6576375961303711,-1.0005760788917542,0.7295622825622559,0.006576375961303711,-0.010005760788917541,0.007295622825622559,0.005633705295622349,0.0019166492857038975,356 +illusion_1L,ppo,357,107.1,1.0795220136642456,-0.3785386085510254,0.9979852437973022,-0.6139635443687439,0.9011987447738647,-0.3943951725959778,0.002108842134475708,-0.0003640436625573784,0.0017688623629510403,0.003884328296408057,0.00180615799035877,-0.0015885501634329557,0.7128760814666748,-0.9834294319152833,0.8702297210693359,0.007128760814666749,-0.009834294319152833,0.00870229721069336,0.005650329869240522,0.002072976902127266,357 +illusion_1L,ppo,358,107.4,1.1385151147842407,-0.3966468274593353,1.0067914724349976,-0.643363356590271,0.8431867957115173,-0.37666770815849304,0.002193264663219452,-0.000459074683021754,0.0016358972061425447,0.0038927169516682625,0.001874143141321838,-0.0015864416491240263,0.7747560143470764,-0.9913191795349121,0.9995245933532715,0.0077475601434707645,-0.009913191795349122,0.009995245933532714,0.005705440882593393,0.002096022479236126,358 +illusion_1L,ppo,359,107.7,1.2034873962402344,-0.4116734564304352,1.0045310258865356,-0.6628267765045166,0.780985951423645,-0.33316102623939514,0.0022715297527611256,-0.0005582625744864345,0.0014901146059855819,0.003885700600221753,0.001964051276445389,-0.0017023923574015498,0.8489362001419068,-1.0308772921562195,1.0892219543457031,0.008489362001419068,-0.010308772921562195,0.010892219543457031,0.005788230337202549,0.0019847527146339417,359 +illusion_1L,ppo,360,108.0,1.2775052785873413,-0.41972458362579346,0.9824472069740295,-0.62147456407547,0.7207105159759521,-0.25233474373817444,0.0023403943050652742,-0.0006708932342007756,0.0013260624837130308,0.003867262974381447,0.0020748183596879244,-0.0019229254685342312,0.9088389277458191,-1.0842664241790771,1.1244136095046997,0.00908838927745819,-0.010842664241790772,0.011244136095046998,0.00579201802611351,0.001746693509630859,360 +illusion_1L,ppo,361,108.3,1.3557811975479126,-0.40378108620643616,0.9417078495025635,-0.4572632908821106,0.6738701462745667,-0.13291549682617188,0.0023902799002826214,-0.000761862494982779,0.0011415242915973067,0.003828850109130144,0.0021930255461484194,-0.0022194182965904474,0.9065898060798645,-1.1008001565933228,1.128748893737793,0.009065898060798645,-0.011008001565933227,0.01128748893737793,0.005716915708035231,0.001397387241013348,361 +illusion_1L,ppo,362,108.6,1.4023211002349854,-0.31242847442626953,0.9016091823577881,-0.16926483809947968,0.6548306345939636,0.008025476709008217,0.0023979467805474997,-0.0008208766230382025,0.0009561559418216348,0.0037397118285298347,0.0023024440743029118,-0.002559131011366844,0.8237186670303345,-1.0261342525482178,1.1160211563110352,0.008237186670303345,-0.010261342525482178,0.011160211563110351,0.00565684586763382,0.0009593489812687039,362 +illusion_1L,ppo,363,108.9,1.363155484199524,-0.10381507873535156,0.880894660949707,0.16747374832630157,0.6754602193832397,0.13512307405471802,0.0023684923071414232,-0.0008477172232232988,0.0008078273967839777,0.003571269800886512,0.0023956550285220146,-0.0028917554300278425,0.668937623500824,-0.8699197769165039,1.0466418266296387,0.00668937623500824,-0.00869919776916504,0.010466418266296388,0.005609786603599787,0.0004605941940099001,363 +illusion_1L,ppo,364,109.2,1.2593754529953003,0.13883744180202484,0.8838079571723938,0.450084388256073,0.7332775592803955,0.21760760247707367,0.0022899345494806767,-0.0008530010818503797,0.0007334651309065521,0.0033292234875261784,0.0024738959036767483,-0.0031619309447705746,0.4850664436817169,-0.7097814083099365,0.9023668766021729,0.004850664436817169,-0.007097814083099365,0.009023668766021729,0.005531110800802708,-6.716222560498863e-05,364 +illusion_1L,ppo,365,109.5,1.156592607498169,0.30074918270111084,0.9039037823677063,0.5939609408378601,0.8056126832962036,0.26336032152175903,0.002187587320804596,-0.0008606896735727787,0.0007497553597204387,0.0030395863577723503,0.002542259404435754,-0.0033327413257211447,0.31026357412338257,-0.6046628952026367,0.7480514049530029,0.003102635741233826,-0.0060466289520263675,0.007480514049530029,0.005488442722707987,-0.0005905209691263735,365 +illusion_1L,ppo,366,109.8,1.079198956489563,0.36641037464141846,0.9306584596633911,0.6093913316726685,0.873395562171936,0.29743996262550354,0.0020864226389676332,-0.0008534350199624896,0.0008395726326853037,0.0027382366824895144,0.002599370898678899,-0.003405757714062929,0.1825411319732666,-0.6144061088562012,0.6751339435577393,0.001825411319732666,-0.006144061088562012,0.006751339435577393,0.0055447774939239025,-0.0010764988837763667,366 +illusion_1L,ppo,367,110.1,1.021911382675171,0.3810495436191559,0.954698920249939,0.5894943475723267,0.9346181154251099,0.32703322172164917,0.0020089305471628904,-0.0008355252211913466,0.0009599358891136944,0.0024623528588563204,0.0026296889409422874,-0.0034121056087315083,0.12825246155261993,-0.7422698736190796,0.6898401975631714,0.0012825246155261994,-0.007422698736190796,0.006898401975631714,0.005618898663669825,-0.0014945860020816326,367 +illusion_1L,ppo,368,110.4,0.9723843336105347,0.3829738199710846,0.9728812575340271,0.5846425890922546,0.9921661615371704,0.3523246943950653,0.0019589457660913467,-0.0008005385170690715,0.0010848791571334004,0.0022398079745471478,0.0026151540223509073,-0.0033924956806004047,0.08750711381435394,-0.88226318359375,0.7531883716583252,0.0008750711381435394,-0.0088226318359375,0.0075318837165832524,0.0056407577358186245,-0.0018186323577538133,368 +illusion_1L,ppo,369,110.7,0.9224168062210083,0.38289251923561096,0.986129879951477,0.597388505935669,1.0484511852264404,0.3746999502182007,0.0019286187598481774,-0.0007398329908028245,0.001207485212944448,0.002090105088427663,0.002554085338488221,-0.0033769505098462105,0.034030765295028687,-0.979804277420044,0.8143033981323242,0.00034030765295028686,-0.00979804277420044,0.008143033981323242,0.005669464357197285,-0.00202845293097198,369 +illusion_1L,ppo,370,111.0,0.8684386014938354,0.3760698735713959,0.994473397731781,0.6237586736679077,1.1060140132904053,0.3953095078468323,0.0019078977638855577,-0.0006551936385221779,0.0013259246479719877,0.0020262335892766714,0.0024635340087115765,-0.0033694268204271793,-0.02880933880805969,-1.0310763120651245,0.835723876953125,-0.0002880933880805969,-0.010310763120651245,0.00835723876953125,0.005728682037442923,-0.002111055189743638,370 +illusion_1L,ppo,371,111.3,0.809576690196991,0.35196080803871155,0.9946661591529846,0.6550363302230835,1.168038010597229,0.4143829941749573,0.0018952275859192014,-0.0005472757620736957,0.001441411324776709,0.002051194664090872,0.002362288534641266,-0.0033511642832309008,-0.1048021912574768,-1.0295496582984924,0.811421275138855,-0.001048021912574768,-0.010295496582984924,0.00811421275138855,0.005740906111896038,-0.0020614201202988625,371 +illusion_1L,ppo,372,111.6,0.7485784292221069,0.29813945293426514,0.9786529541015625,0.6612415909767151,1.2385445833206177,0.4304269552230835,0.0018893061205744743,-0.00041443962254561484,0.0015537581639364362,0.0021521311718970537,0.002254631370306015,-0.0033066989853978157,-0.19106930494308472,-0.980076789855957,0.7743241786956787,-0.0019106930494308472,-0.00980076789855957,0.007743241786956788,0.00570477731525898,-0.0018827876774594188,372 +illusion_1L,ppo,373,111.9,0.6934740543365479,0.20643016695976257,0.9400313496589661,0.5801351070404053,1.3197897672653198,0.4351891577243805,0.001887903199531138,-0.000262676301645115,0.0016616337234154344,0.0023066753055900335,0.002132902853190899,-0.0032372933346778154,-0.2705168128013611,-0.9132107496261597,0.7535586357116699,-0.002705168128013611,-0.009132107496261596,0.007535586357116699,0.005704289767891169,-0.0015864415327087045,373 +illusion_1L,ppo,374,112.2,0.6569889783859253,0.0815112516283989,0.8905405402183533,0.3624653220176697,1.3948222398757935,0.3916328251361847,0.001895248075015843,-0.00010325288167223334,0.0017645853804424405,0.0024973531253635883,0.0019955954048782587,-0.0031429415103048086,-0.31507885456085205,-0.8703070878982545,0.7321763038635254,-0.0031507885456085205,-0.008703070878982545,0.007321763038635254,0.005719874519854784,-0.0011909975437447429,374 +illusion_1L,ppo,375,112.5,0.6532660126686096,-0.053358133882284164,0.8560506105422974,0.04035669192671776,1.4063403606414795,0.22662986814975739,0.0019038186874240637,3.453939643804915e-05,0.0018609694670885801,0.002711385255679488,0.0018568539526313543,-0.0030109265353530645,-0.27971363067626953,-0.8754620552062988,0.6707034111022949,-0.0027971363067626955,-0.008754620552062988,0.006707034111022949,0.005665991455316544,-0.0007212489726953208,375 +illusion_1L,ppo,376,112.8,0.6904113292694092,-0.16253167390823364,0.8503173589706421,-0.2921378016471863,1.3316380977630615,-0.03824931010603905,0.001903204363770783,0.0001229499321198091,0.0019450719701126218,0.002939630998298526,0.001742860651575029,-0.002823066897690296,-0.11787623167037965,-0.9375236034393312,0.5506913661956787,-0.0011787623167037965,-0.009375236034393311,0.0055069136619567876,0.005579077173024416,-0.00020663297618739307,376 +illusion_1L,ppo,377,113.1,0.7575893402099609,-0.2284056395292282,0.8691108226776123,-0.5360931754112244,1.2308157682418823,-0.26064223051071167,0.0018886574544012547,0.000125376129290089,0.002006493741646409,0.003180303145200014,0.0016757497796788812,-0.0025787928607314825,0.15929999947547913,-1.0421512126922607,0.4166669845581054,0.0015929999947547912,-0.010421512126922607,0.004166669845581054,0.0055456943809986115,0.00032058797660283744,377 +illusion_1L,ppo,378,113.4,0.8302808403968811,-0.2693890929222107,0.9011477828025818,-0.6309896111488342,1.143869400024414,-0.37241801619529724,0.001876187277957797,5.6119908549590036e-05,0.0020373740699142218,0.003417480504140258,0.0016569058643653989,-0.002308553084731102,0.4200819134712219,-1.1118948459625244,0.36076831817626953,0.004200819134712219,-0.011118948459625244,0.0036076831817626956,0.005538465455174446,0.0008273206767626107,378 +illusion_1L,ppo,379,113.7,0.8964835405349731,-0.30335551500320435,0.9345585107803345,-0.6232641339302063,1.0759162902832031,-0.4035327136516571,0.0018886997131630778,-4.951260416419245e-05,0.002034309320151806,0.003615550696849823,0.0016688760370016098,-0.002053829375654459,0.5683377981185913,-1.0993269681930542,0.42530012130737305,0.005683377981185913,-0.010993269681930542,0.004253001213073731,0.005518500693142414,0.0012816928792744875,379 +illusion_1L,ppo,380,114.0,0.9574307203292847,-0.3321639895439148,0.9616702198982239,-0.6048204302787781,1.0197639465332031,-0.4058014154434204,0.0019369963556528091,-0.00015286123380064964,0.0019936489406973124,0.0037492041010409594,0.0016980343498289585,-0.00183846615254879,0.6223156452178955,-1.0448532104492188,0.571963906288147,0.006223156452178955,-0.010448532104492187,0.0057196390628814694,0.005552514921873808,0.0016550382133573294,380 +illusion_1L,ppo,381,114.3,1.0158854722976685,-0.35625120997428894,0.9820598363876343,-0.6057546734809875,0.966611921787262,-0.40435299277305603,0.0020145755261182785,-0.00025134996394626796,0.001913206186145544,0.0038250121288001537,0.0017421676311641932,-0.0016755058895796537,0.663296639919281,-1.0129899978637695,0.7362411022186279,0.0066329663991928104,-0.010129899978637695,0.00736241102218628,0.005664129741489887,0.0019236936932429671,381 +illusion_1L,ppo,382,114.6,1.0743461847305298,-0.376936137676239,0.997523307800293,-0.6237291097640991,0.9112383127212524,-0.39981111884117126,0.0021021035499870777,-0.0003485267225187272,0.0017991437343880534,0.003866907674819231,0.0018019102280959487,-0.0015834614168852568,0.7145768404006958,-1.0043071508407593,0.8854782581329346,0.007145768404006958,-0.010043071508407593,0.008854782581329346,0.005749957635998726,0.0020704984199255705,382 +illusion_1L,ppo,383,114.9,1.1356135606765747,-0.39473769068717957,1.0074712038040161,-0.6524782776832581,0.8512684106826782,-0.38275793194770813,0.002194829983636737,-0.0004501093062572181,0.001663295435719192,0.0038890314754098654,0.0018757221987470984,-0.001592337037436664,0.776786744594574,-1.005840539932251,1.0060818791389465,0.00776786744594574,-0.01005840539932251,0.010060818791389465,0.005759336985647678,0.0020859010983258486,383 +illusion_1L,ppo,384,115.2,1.2029006481170654,-0.4087909460067749,1.0064184665679932,-0.6717924475669861,0.7873929738998413,-0.33973950147628784,0.0022718606051057577,-0.0005650863167829812,0.0015125770587474108,0.003891834756359458,0.0019685958977788687,-0.00171396613586694,0.8435878753662109,-1.0272613167762756,1.0875396728515625,0.00843587875366211,-0.010272613167762757,0.010875396728515625,0.005756254307925701,0.0019686000887304544,384 +illusion_1L,ppo,385,115.5,1.2789726257324219,-0.41473305225372314,0.9855340719223022,-0.6283172965049744,0.725466787815094,-0.25861161947250366,0.0023361516650766134,-0.0006648499984294176,0.0013422832125797868,0.003876744071021676,0.0020770470146089792,-0.0019365167245268822,0.8955169916152954,-1.0697873830795288,1.1229315996170044,0.008955169916152955,-0.010697873830795289,0.011229315996170044,0.005749706644564867,0.0017256771679967642,385 +illusion_1L,ppo,386,115.8,1.3579953908920288,-0.39431294798851013,0.9467262625694275,-0.4577181041240692,0.6771115064620972,-0.13775329291820526,0.0023823643568903208,-0.0007622495177201927,0.0011521526612341404,0.0038345286156982183,0.002191716805100441,-0.0022315194364637136,0.9076418280601501,-1.0833086967468262,1.1210374236106873,0.009076418280601501,-0.010833086967468262,0.011210374236106872,0.005683912429958582,0.0013722052099183202,386 +illusion_1L,ppo,387,116.1,1.4019815921783447,-0.29601502418518066,0.9099787473678589,-0.16206170618534088,0.6569499969482422,0.005563643760979176,0.0023956301156431437,-0.0008200508891604841,0.0009662457159720361,0.0037338566035032272,0.0022997395135462284,-0.0025653305929154158,0.8204344511032104,-1.0011333227157593,1.103510320186615,0.008204344511032104,-0.010011333227157594,0.01103510320186615,0.005598609335720539,0.0009303490514867008,387 +illusion_1L,ppo,388,116.4,1.3595519065856934,-0.08687126636505127,0.8929120898246765,0.17786628007888794,0.6768821477890015,0.13549470901489258,0.002362672006711364,-0.000850235519465059,0.000821032386738807,0.00355463195592165,0.00239467341452837,-0.002893818076699972,0.6685922741889954,-0.8524909019470214,1.038756012916565,0.0066859227418899535,-0.008524909019470214,0.01038756012916565,0.0055789402686059475,0.000428010243922472,388 +illusion_1L,ppo,389,116.7,1.2570031881332397,0.14375688135623932,0.8978673219680786,0.4568791091442108,0.7344873547554016,0.2203620970249176,0.0022887757513672113,-0.0008678722660988569,0.0007474704761989415,0.003307718550786376,0.0024776307400316,-0.0031646855641156435,0.48851591348648066,-0.7124004364013672,0.907102108001709,0.004885159134864807,-0.007124004364013672,0.00907102108001709,0.005592026747763157,-0.00010290697537129745,389 +illusion_1L,ppo,390,117.0,1.157204270362854,0.29252299666404724,0.9173988699913025,0.5939673781394958,0.8073068857192993,0.2669767439365387,0.0021898464765399694,-0.0008632960962131619,0.0007622894481755793,0.003020151983946562,0.0025502811186015606,-0.0033428433816879988,0.30413174629211426,-0.6152892112731934,0.7651094198226929,0.003041317462921143,-0.006152892112731934,0.007651094198226929,0.0055693225003778934,-0.0006285032723098993,390 +illusion_1L,ppo,391,117.3,1.081335425376892,0.3528752028942108,0.9417976140975952,0.6056975722312927,0.8759288787841797,0.3006467819213867,0.0020897022914141417,-0.0008557524415664375,0.0008485879516229033,0.0027238286565989256,0.002608578186482191,-0.0034222581889480352,0.17979975044727325,-0.6225523948669434,0.6831520795822144,0.0017979975044727326,-0.006225523948669434,0.006831520795822144,0.005552446935325861,-0.001115041202865541,391 +illusion_1L,ppo,392,117.6,1.023892879486084,0.3682597875595093,0.9632154107093811,0.5853341221809387,0.9377334713935852,0.32950159907341003,0.0020101270638406277,-0.0008360882638953626,0.0009646722464822233,0.002451895736157894,0.002636550460010767,-0.0034296198282390833,0.12149657309055328,-0.7439823150634766,0.6912026405334473,0.0012149657309055329,-0.007439823150634766,0.0069120264053344725,0.005589765962213278,-0.0015311157330870628,392 +illusion_1L,ppo,393,117.9,0.9735281467437744,0.37216004729270935,0.9790748357772827,0.5805667042732239,0.9953762888908386,0.35416606068611145,0.00195684633217752,-0.0007988098077476025,0.0010861404007300735,0.002231447258964181,0.002617733785882592,-0.003407315816730261,0.08183224499225616,-0.8819171190261842,0.7520751953125,0.0008183224499225617,-0.008819171190261842,0.007520751953125,0.00562874274328351,-0.0018496968550607562,393 +illusion_1L,ppo,394,118.2,0.9227214455604553,0.37328657507896423,0.9902017116546631,0.5934742093086243,1.0513839721679688,0.3761236369609833,0.0019255268853157759,-0.00073662941576913,0.0012084239860996604,0.002081468002870679,0.002554868347942829,-0.003383818781003356,0.029049396514892578,-0.9766054153442383,0.8066592216491698,0.0002904939651489258,-0.009766054153442384,0.008066592216491699,0.005641409661620855,-0.0020499122329056263,394 +illusion_1L,ppo,395,118.5,0.868116557598114,0.36684930324554443,0.9965579509735107,0.6199995279312134,1.1085702180862427,0.3965457081794739,0.001905883545987308,-0.0006512079271487892,0.0013293849769979715,0.0020174880046397448,0.0024652723222970963,-0.0033675185404717922,-0.03305360674858093,-1.0300164222717285,0.8264695405960084,-0.00033053606748580935,-0.010300164222717286,0.008264695405960084,0.005687114782631397,-0.0021184461656957865,395 +illusion_1L,ppo,396,118.8,0.8090189099311829,0.34260237216949463,0.9948104023933411,0.6510217189788818,1.1704262495040894,0.4156643748283386,0.00189413211774081,-0.0005428951699286699,0.0014480779645964503,0.0020477031357586384,0.0023657293058931828,-0.003345487406477332,-0.1050545871257782,-1.0416890382766724,0.8100357055664062,-0.001050545871257782,-0.010416890382766724,0.008100357055664063,0.005764052737504244,-0.0020504610147327185,396 +illusion_1L,ppo,397,119.1,0.7483853101730347,0.28852957487106323,0.9767453074455261,0.6560121774673462,1.2412009239196777,0.4319571554660797,0.0018901656148955226,-0.00041044410318136215,0.001564025180414319,0.0021604441571980715,0.002260165521875024,-0.0033030190970748663,-0.1890527606010437,-1.0026475191116333,0.7755213975906372,-0.001890527606010437,-0.010026475191116333,0.007755213975906373,0.005783763248473406,-0.001849970780313015,397 +illusion_1L,ppo,398,119.4,0.6943252682685852,0.1970583200454712,0.9360541701316833,0.5727280974388123,1.3230873346328735,0.43679922819137573,0.001892433618195355,-0.0002590635558590293,0.0016744796885177493,0.0023282726760953665,0.002141020493581891,-0.003234290052205324,-0.27337753772735596,-0.9318374395370483,0.7421603202819824,-0.0027337753772735595,-0.009318374395370484,0.007421603202819824,0.005733401048928499,-0.0015296366764232516,398 +illusion_1L,ppo,399,119.7,0.6594624519348145,0.07357368618249893,0.8849913477897644,0.35284554958343506,1.3979995250701904,0.3912758231163025,0.0018965097842738032,-9.591403068043292e-05,0.001776382327079773,0.0025293519720435143,0.002005132380872965,-0.0031332573853433132,-0.3229745626449585,-0.8809621334075929,0.7075634002685547,-0.003229745626449585,-0.008809621334075928,0.007075634002685547,0.005679980851709843,-0.001109990873374045,399 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_long.csv new file mode 100644 index 0000000..0d51f8e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,target,0,0.0,velocity,upper_ux,1.4017817974090576 +illusion_1L,target,0,0.0,velocity,upper_uy,-0.12637902796268463 +illusion_1L,target,0,0.0,velocity,center_ux,0.83173006772995 +illusion_1L,target,0,0.0,velocity,center_uy,0.1325012892484665 +illusion_1L,target,0,0.0,velocity,lower_ux,0.6920990943908691 +illusion_1L,target,0,0.0,velocity,lower_uy,0.12523174285888672 +illusion_1L,target,1,0.3,velocity,upper_ux,1.300629734992981 +illusion_1L,target,1,0.3,velocity,upper_uy,0.15660397708415985 +illusion_1L,target,1,0.3,velocity,center_ux,0.837816059589386 +illusion_1L,target,1,0.3,velocity,center_uy,0.43536636233329773 +illusion_1L,target,1,0.3,velocity,lower_ux,0.7446015477180481 +illusion_1L,target,1,0.3,velocity,lower_uy,0.20810090005397797 +illusion_1L,target,2,0.6,velocity,upper_ux,1.1965855360031128 +illusion_1L,target,2,0.6,velocity,upper_uy,0.3451172411441803 +illusion_1L,target,2,0.6,velocity,center_ux,0.8682307004928589 +illusion_1L,target,2,0.6,velocity,center_uy,0.602594792842865 +illusion_1L,target,2,0.6,velocity,lower_ux,0.811106264591217 +illusion_1L,target,2,0.6,velocity,lower_uy,0.25997626781463623 +illusion_1L,target,3,0.9,velocity,upper_ux,1.1159828901290894 +illusion_1L,target,3,0.9,velocity,upper_uy,0.4154026210308075 +illusion_1L,target,3,0.9,velocity,center_ux,0.907487154006958 +illusion_1L,target,3,0.9,velocity,center_uy,0.6312589645385742 +illusion_1L,target,3,0.9,velocity,lower_ux,0.8753458857536316 +illusion_1L,target,3,0.9,velocity,lower_uy,0.2992246448993683 +illusion_1L,target,4,1.2,velocity,upper_ux,1.0550034046173096 +illusion_1L,target,4,1.2,velocity,upper_uy,0.4237404763698578 +illusion_1L,target,4,1.2,velocity,center_ux,0.941254198551178 +illusion_1L,target,4,1.2,velocity,center_uy,0.6131124496459961 +illusion_1L,target,4,1.2,velocity,lower_ux,0.9351983666419983 +illusion_1L,target,4,1.2,velocity,lower_uy,0.331483393907547 +illusion_1L,target,5,1.5,velocity,upper_ux,1.002323865890503 +illusion_1L,target,5,1.5,velocity,upper_uy,0.41716405749320984 +illusion_1L,target,5,1.5,velocity,center_ux,0.965175449848175 +illusion_1L,target,5,1.5,velocity,center_uy,0.6057186126708984 +illusion_1L,target,5,1.5,velocity,lower_ux,0.9923029541969299 +illusion_1L,target,5,1.5,velocity,lower_uy,0.35839155316352844 +illusion_1L,target,6,1.8,velocity,upper_ux,0.950446367263794 +illusion_1L,target,6,1.8,velocity,upper_uy,0.40791985392570496 +illusion_1L,target,6,1.8,velocity,center_ux,0.9814972877502441 +illusion_1L,target,6,1.8,velocity,center_uy,0.6154214143753052 +illusion_1L,target,6,1.8,velocity,lower_ux,1.0490846633911133 +illusion_1L,target,6,1.8,velocity,lower_uy,0.38181576132774353 +illusion_1L,target,7,2.1,velocity,upper_ux,0.8957096338272095 +illusion_1L,target,7,2.1,velocity,upper_uy,0.3907774090766907 +illusion_1L,target,7,2.1,velocity,center_ux,0.9914872050285339 +illusion_1L,target,7,2.1,velocity,center_uy,0.6389568448066711 +illusion_1L,target,7,2.1,velocity,lower_ux,1.1084092855453491 +illusion_1L,target,7,2.1,velocity,lower_uy,0.4030567705631256 +illusion_1L,target,8,2.4,velocity,upper_ux,0.8363664746284485 +illusion_1L,target,8,2.4,velocity,upper_uy,0.35479846596717834 +illusion_1L,target,8,2.4,velocity,center_ux,0.9920609593391418 +illusion_1L,target,8,2.4,velocity,center_uy,0.6664754748344421 +illusion_1L,target,8,2.4,velocity,lower_ux,1.1731737852096558 +illusion_1L,target,8,2.4,velocity,lower_uy,0.42244312167167664 +illusion_1L,target,9,2.7,velocity,upper_ux,0.7745794653892517 +illusion_1L,target,9,2.7,velocity,upper_uy,0.28789979219436646 +illusion_1L,target,9,2.7,velocity,center_ux,0.9747945070266724 +illusion_1L,target,9,2.7,velocity,center_uy,0.6651585102081299 +illusion_1L,target,9,2.7,velocity,lower_ux,1.2469714879989624 +illusion_1L,target,9,2.7,velocity,lower_uy,0.4386219382286072 +illusion_1L,target,10,3.0,velocity,upper_ux,0.7184450030326843 +illusion_1L,target,10,3.0,velocity,upper_uy,0.183789923787117 +illusion_1L,target,10,3.0,velocity,center_ux,0.9327130317687988 +illusion_1L,target,10,3.0,velocity,center_uy,0.5710898041725159 +illusion_1L,target,10,3.0,velocity,lower_ux,1.3318159580230713 +illusion_1L,target,10,3.0,velocity,lower_uy,0.44378775358200073 +illusion_1L,target,11,3.3,velocity,upper_ux,0.6821087002754211 +illusion_1L,target,11,3.3,velocity,upper_uy,0.05126365274190903 +illusion_1L,target,11,3.3,velocity,center_ux,0.8781954050064087 +illusion_1L,target,11,3.3,velocity,center_uy,0.3378305733203888 +illusion_1L,target,11,3.3,velocity,lower_ux,1.4114587306976318 +illusion_1L,target,11,3.3,velocity,lower_uy,0.40142959356307983 +illusion_1L,target,12,3.6,velocity,upper_ux,0.6809124946594238 +illusion_1L,target,12,3.6,velocity,upper_uy,-0.08123264461755753 +illusion_1L,target,12,3.6,velocity,center_ux,0.8390485644340515 +illusion_1L,target,12,3.6,velocity,center_uy,0.004335259087383747 +illusion_1L,target,12,3.6,velocity,lower_ux,1.4250158071517944 +illusion_1L,target,12,3.6,velocity,lower_uy,0.2320040911436081 +illusion_1L,target,13,3.9,velocity,upper_ux,0.7198139429092407 +illusion_1L,target,13,3.9,velocity,upper_uy,-0.18057182431221008 +illusion_1L,target,13,3.9,velocity,center_ux,0.8312843441963196 +illusion_1L,target,13,3.9,velocity,center_uy,-0.32843151688575745 +illusion_1L,target,13,3.9,velocity,lower_ux,1.343051791191101 +illusion_1L,target,13,3.9,velocity,lower_uy,-0.04993141442537308 +illusion_1L,target,14,4.2,velocity,upper_ux,0.7829349040985107 +illusion_1L,target,14,4.2,velocity,upper_uy,-0.24197982251644135 +illusion_1L,target,14,4.2,velocity,center_ux,0.8529092669487 +illusion_1L,target,14,4.2,velocity,center_uy,-0.5561008453369141 +illusion_1L,target,14,4.2,velocity,lower_ux,1.2333505153656006 +illusion_1L,target,14,4.2,velocity,lower_uy,-0.2860354483127594 +illusion_1L,target,15,4.5,velocity,upper_ux,0.849284827709198 +illusion_1L,target,15,4.5,velocity,upper_uy,-0.28481563925743103 +illusion_1L,target,15,4.5,velocity,center_ux,0.8910027146339417 +illusion_1L,target,15,4.5,velocity,center_uy,-0.6311573386192322 +illusion_1L,target,15,4.5,velocity,lower_ux,1.1435424089431763 +illusion_1L,target,15,4.5,velocity,lower_uy,-0.3983403146266937 +illusion_1L,target,16,4.8,velocity,upper_ux,0.9118502736091614 +illusion_1L,target,16,4.8,velocity,upper_uy,-0.3196221888065338 +illusion_1L,target,16,4.8,velocity,center_ux,0.9290928244590759 +illusion_1L,target,16,4.8,velocity,center_uy,-0.6204702854156494 +illusion_1L,target,16,4.8,velocity,lower_ux,1.0772966146469116 +illusion_1L,target,16,4.8,velocity,lower_uy,-0.42375707626342773 +illusion_1L,target,17,5.1,velocity,upper_ux,0.9709639549255371 +illusion_1L,target,17,5.1,velocity,upper_uy,-0.348427951335907 +illusion_1L,target,17,5.1,velocity,center_ux,0.9578115940093994 +illusion_1L,target,17,5.1,velocity,center_uy,-0.6065137982368469 +illusion_1L,target,17,5.1,velocity,lower_ux,1.023662805557251 +illusion_1L,target,17,5.1,velocity,lower_uy,-0.42000243067741394 +illusion_1L,target,18,5.4,velocity,upper_ux,1.0281466245651245 +illusion_1L,target,18,5.4,velocity,upper_uy,-0.37305352091789246 +illusion_1L,target,18,5.4,velocity,center_ux,0.9772552251815796 +illusion_1L,target,18,5.4,velocity,center_uy,-0.6098133325576782 +illusion_1L,target,18,5.4,velocity,lower_ux,0.9725055694580078 +illusion_1L,target,18,5.4,velocity,lower_uy,-0.41189393401145935 +illusion_1L,target,19,5.7,velocity,upper_ux,1.085694670677185 +illusion_1L,target,19,5.7,velocity,upper_uy,-0.39507946372032166 +illusion_1L,target,19,5.7,velocity,center_ux,0.9892039895057678 +illusion_1L,target,19,5.7,velocity,center_uy,-0.6286082863807678 +illusion_1L,target,19,5.7,velocity,lower_ux,0.9186187982559204 +illusion_1L,target,19,5.7,velocity,lower_uy,-0.39898571372032166 +illusion_1L,target,20,6.0,velocity,upper_ux,1.146657109260559 +illusion_1L,target,20,6.0,velocity,upper_uy,-0.41521817445755005 +illusion_1L,target,20,6.0,velocity,center_ux,0.9927952289581299 +illusion_1L,target,20,6.0,velocity,center_uy,-0.6568659543991089 +illusion_1L,target,20,6.0,velocity,lower_ux,0.8597558736801147 +illusion_1L,target,20,6.0,velocity,lower_uy,-0.3719709813594818 +illusion_1L,target,21,6.3,velocity,upper_ux,1.2153871059417725 +illusion_1L,target,21,6.3,velocity,upper_uy,-0.43295446038246155 +illusion_1L,target,21,6.3,velocity,center_ux,0.9827219843864441 +illusion_1L,target,21,6.3,velocity,center_uy,-0.6730846166610718 +illusion_1L,target,21,6.3,velocity,lower_ux,0.797349214553833 +illusion_1L,target,21,6.3,velocity,lower_uy,-0.31870701909065247 +illusion_1L,target,22,6.6,velocity,upper_ux,1.2960641384124756 +illusion_1L,target,22,6.6,velocity,upper_uy,-0.4443196654319763 +illusion_1L,target,22,6.6,velocity,center_ux,0.9504253268241882 +illusion_1L,target,22,6.6,velocity,center_uy,-0.6240516901016235 +illusion_1L,target,22,6.6,velocity,lower_ux,0.7376922369003296 +illusion_1L,target,22,6.6,velocity,lower_uy,-0.2295932024717331 +illusion_1L,target,23,6.9,velocity,upper_ux,1.3833630084991455 +illusion_1L,target,23,6.9,velocity,upper_uy,-0.42848753929138184 +illusion_1L,target,23,6.9,velocity,center_ux,0.8987941741943359 +illusion_1L,target,23,6.9,velocity,center_uy,-0.446693480014801 +illusion_1L,target,23,6.9,velocity,lower_ux,0.6925143599510193 +illusion_1L,target,23,6.9,velocity,lower_uy,-0.10624267160892487 +illusion_1L,target,24,7.2,velocity,upper_ux,1.433010220527649 +illusion_1L,target,24,7.2,velocity,upper_uy,-0.317575603723526 +illusion_1L,target,24,7.2,velocity,center_ux,0.851797342300415 +illusion_1L,target,24,7.2,velocity,center_uy,-0.1425340324640274 +illusion_1L,target,24,7.2,velocity,lower_ux,0.6769288182258606 +illusion_1L,target,24,7.2,velocity,lower_uy,0.03068072907626629 +illusion_1L,target,25,7.5,velocity,upper_ux,1.3851652145385742 +illusion_1L,target,25,7.5,velocity,upper_uy,-0.06461761146783829 +illusion_1L,target,25,7.5,velocity,center_ux,0.8319538831710815 +illusion_1L,target,25,7.5,velocity,center_uy,0.20415396988391876 +illusion_1L,target,25,7.5,velocity,lower_ux,0.7014005184173584 +illusion_1L,target,25,7.5,velocity,lower_uy,0.14619070291519165 +illusion_1L,target,26,7.8,velocity,upper_ux,1.2770987749099731 +illusion_1L,target,26,7.8,velocity,upper_uy,0.20728030800819397 +illusion_1L,target,26,7.8,velocity,center_ux,0.8430824875831604 +illusion_1L,target,26,7.8,velocity,center_uy,0.48450756072998047 +illusion_1L,target,26,7.8,velocity,lower_ux,0.7578033804893494 +illusion_1L,target,26,7.8,velocity,lower_uy,0.22101250290870667 +illusion_1L,target,27,8.1,velocity,upper_ux,1.17635178565979 +illusion_1L,target,27,8.1,velocity,upper_uy,0.36800897121429443 +illusion_1L,target,27,8.1,velocity,center_ux,0.8756264448165894 +illusion_1L,target,27,8.1,velocity,center_uy,0.6179229617118835 +illusion_1L,target,27,8.1,velocity,lower_ux,0.8235322833061218 +illusion_1L,target,27,8.1,velocity,lower_uy,0.26909345388412476 +illusion_1L,target,28,8.4,velocity,upper_ux,1.1004793643951416 +illusion_1L,target,28,8.4,velocity,upper_uy,0.4196484088897705 +illusion_1L,target,28,8.4,velocity,center_ux,0.9141327738761902 +illusion_1L,target,28,8.4,velocity,center_uy,0.6282909512519836 +illusion_1L,target,28,8.4,velocity,lower_ux,0.8863929510116577 +illusion_1L,target,28,8.4,velocity,lower_uy,0.3066446781158447 +illusion_1L,target,29,8.7,velocity,upper_ux,1.0429612398147583 +illusion_1L,target,29,8.7,velocity,upper_uy,0.422292023897171 +illusion_1L,target,29,8.7,velocity,center_ux,0.9463942646980286 +illusion_1L,target,29,8.7,velocity,center_uy,0.6100441217422485 +illusion_1L,target,29,8.7,velocity,lower_ux,0.9462043046951294 +illusion_1L,target,29,8.7,velocity,lower_uy,0.33758512139320374 +illusion_1L,target,30,9.0,velocity,upper_ux,0.992314338684082 +illusion_1L,target,30,9.0,velocity,upper_uy,0.4151016175746918 +illusion_1L,target,30,9.0,velocity,center_ux,0.9697572588920593 +illusion_1L,target,30,9.0,velocity,center_uy,0.6062741875648499 +illusion_1L,target,30,9.0,velocity,lower_ux,1.0044291019439697 +illusion_1L,target,30,9.0,velocity,lower_uy,0.3636186122894287 +illusion_1L,target,31,9.3,velocity,upper_ux,0.9410709738731384 +illusion_1L,target,31,9.3,velocity,upper_uy,0.4049535095691681 +illusion_1L,target,31,9.3,velocity,center_ux,0.9856618046760559 +illusion_1L,target,31,9.3,velocity,center_uy,0.6191940307617188 +illusion_1L,target,31,9.3,velocity,lower_ux,1.0626139640808105 +illusion_1L,target,31,9.3,velocity,lower_uy,0.38654693961143494 +illusion_1L,target,32,9.6,velocity,upper_ux,0.8852120041847229 +illusion_1L,target,32,9.6,velocity,upper_uy,0.38487672805786133 +illusion_1L,target,32,9.6,velocity,center_ux,0.9938230514526367 +illusion_1L,target,32,9.6,velocity,center_uy,0.6448986530303955 +illusion_1L,target,32,9.6,velocity,lower_ux,1.1227772235870361 +illusion_1L,target,32,9.6,velocity,lower_uy,0.4074522852897644 +illusion_1L,target,33,9.9,velocity,upper_ux,0.8239948749542236 +illusion_1L,target,33,9.9,velocity,upper_uy,0.34334635734558105 +illusion_1L,target,33,9.9,velocity,center_ux,0.9903852343559265 +illusion_1L,target,33,9.9,velocity,center_uy,0.6702861189842224 +illusion_1L,target,33,9.9,velocity,lower_ux,1.1882270574569702 +illusion_1L,target,33,9.9,velocity,lower_uy,0.4263843894004822 +illusion_1L,target,34,10.2,velocity,upper_ux,0.7613443732261658 +illusion_1L,target,34,10.2,velocity,upper_uy,0.2688966393470764 +illusion_1L,target,34,10.2,velocity,center_ux,0.9668092131614685 +illusion_1L,target,34,10.2,velocity,center_uy,0.655458927154541 +illusion_1L,target,34,10.2,velocity,lower_ux,1.2632019519805908 +illusion_1L,target,34,10.2,velocity,lower_uy,0.4413418471813202 +illusion_1L,target,35,10.5,velocity,upper_ux,0.7073913216590881 +illusion_1L,target,35,10.5,velocity,upper_uy,0.1577395796775818 +illusion_1L,target,35,10.5,velocity,center_ux,0.9195272922515869 +illusion_1L,target,35,10.5,velocity,center_uy,0.5340616703033447 +illusion_1L,target,35,10.5,velocity,lower_ux,1.348832130432129 +illusion_1L,target,35,10.5,velocity,lower_uy,0.4412797689437866 +illusion_1L,target,36,10.8,velocity,upper_ux,0.6774927377700806 +illusion_1L,target,36,10.8,velocity,upper_uy,0.022644182667136192 +illusion_1L,target,36,10.8,velocity,center_ux,0.866283655166626 +illusion_1L,target,36,10.8,velocity,center_uy,0.27409976720809937 +illusion_1L,target,36,10.8,velocity,lower_ux,1.4211302995681763 +illusion_1L,target,36,10.8,velocity,lower_uy,0.3792189061641693 +illusion_1L,target,37,11.1,velocity,upper_ux,0.6859498620033264 +illusion_1L,target,37,11.1,velocity,upper_uy,-0.1050507128238678 +illusion_1L,target,37,11.1,velocity,center_ux,0.8342692852020264 +illusion_1L,target,37,11.1,velocity,center_uy,-0.0679776668548584 +illusion_1L,target,37,11.1,velocity,lower_ux,1.414618968963623 +illusion_1L,target,37,11.1,velocity,lower_uy,0.17822694778442383 +illusion_1L,target,38,11.4,velocity,upper_ux,0.7330411672592163 +illusion_1L,target,38,11.4,velocity,upper_uy,-0.1956576555967331 +illusion_1L,target,38,11.4,velocity,center_ux,0.83456951379776 +illusion_1L,target,38,11.4,velocity,center_uy,-0.38708439469337463 +illusion_1L,target,38,11.4,velocity,lower_ux,1.321498155593872 +illusion_1L,target,38,11.4,velocity,lower_uy,-0.1079639419913292 +illusion_1L,target,39,11.7,velocity,upper_ux,0.7985661029815674 +illusion_1L,target,39,11.7,velocity,upper_uy,-0.25164565443992615 +illusion_1L,target,39,11.7,velocity,center_ux,0.8613695502281189 +illusion_1L,target,39,11.7,velocity,center_uy,-0.5837313532829285 +illusion_1L,target,39,11.7,velocity,lower_ux,1.2143468856811523 +illusion_1L,target,39,11.7,velocity,lower_uy,-0.31993719935417175 +illusion_1L,target,40,12.0,velocity,upper_ux,0.8636087775230408 +illusion_1L,target,40,12.0,velocity,upper_uy,-0.2924898862838745 +illusion_1L,target,40,12.0,velocity,center_ux,0.900190532207489 +illusion_1L,target,40,12.0,velocity,center_uy,-0.632465124130249 +illusion_1L,target,40,12.0,velocity,lower_ux,1.1291290521621704 +illusion_1L,target,40,12.0,velocity,lower_uy,-0.40892431139945984 +illusion_1L,target,41,12.3,velocity,upper_ux,0.9241688847541809 +illusion_1L,target,41,12.3,velocity,upper_uy,-0.3259327709674835 +illusion_1L,target,41,12.3,velocity,center_ux,0.9356316924095154 +illusion_1L,target,41,12.3,velocity,center_uy,-0.6163725256919861 +illusion_1L,target,41,12.3,velocity,lower_ux,1.065340280532837 +illusion_1L,target,41,12.3,velocity,lower_uy,-0.4241585433483124 +illusion_1L,target,42,12.6,velocity,upper_ux,0.9816728830337524 +illusion_1L,target,42,12.6,velocity,upper_uy,-0.3536902070045471 +illusion_1L,target,42,12.6,velocity,center_ux,0.9613267779350281 +illusion_1L,target,42,12.6,velocity,center_uy,-0.6057220101356506 +illusion_1L,target,42,12.6,velocity,lower_ux,1.0119060277938843 +illusion_1L,target,42,12.6,velocity,lower_uy,-0.4185737371444702 +illusion_1L,target,43,12.9,velocity,upper_ux,1.0384329557418823 +illusion_1L,target,43,12.9,velocity,upper_uy,-0.37764179706573486 +illusion_1L,target,43,12.9,velocity,center_ux,0.9790012836456299 +illusion_1L,target,43,12.9,velocity,center_uy,-0.6124146580696106 +illusion_1L,target,43,12.9,velocity,lower_ux,0.9603572487831116 +illusion_1L,target,43,12.9,velocity,lower_uy,-0.4099481403827667 +illusion_1L,target,44,13.2,velocity,upper_ux,1.0971328020095825 +illusion_1L,target,44,13.2,velocity,upper_uy,-0.399236261844635 +illusion_1L,target,44,13.2,velocity,center_ux,0.9902948141098022 +illusion_1L,target,44,13.2,velocity,center_uy,-0.633758544921875 +illusion_1L,target,44,13.2,velocity,lower_ux,0.9064056277275085 +illusion_1L,target,44,13.2,velocity,lower_uy,-0.39500731229782104 +illusion_1L,target,45,13.5,velocity,upper_ux,1.1606162786483765 +illusion_1L,target,45,13.5,velocity,upper_uy,-0.419004887342453 +illusion_1L,target,45,13.5,velocity,center_ux,0.9930775165557861 +illusion_1L,target,45,13.5,velocity,center_uy,-0.662056565284729 +illusion_1L,target,45,13.5,velocity,lower_ux,0.8478816747665405 +illusion_1L,target,45,13.5,velocity,lower_uy,-0.36349165439605713 +illusion_1L,target,46,13.8,velocity,upper_ux,1.2323590517044067 +illusion_1L,target,46,13.8,velocity,upper_uy,-0.4360402822494507 +illusion_1L,target,46,13.8,velocity,center_ux,0.9798294901847839 +illusion_1L,target,46,13.8,velocity,center_uy,-0.6702452898025513 +illusion_1L,target,46,13.8,velocity,lower_ux,0.7860392332077026 +illusion_1L,target,46,13.8,velocity,lower_uy,-0.3031349182128906 +illusion_1L,target,47,14.1,velocity,upper_ux,1.315277099609375 +illusion_1L,target,47,14.1,velocity,upper_uy,-0.44464772939682007 +illusion_1L,target,47,14.1,velocity,center_ux,0.9421167969703674 +illusion_1L,target,47,14.1,velocity,center_uy,-0.5987269878387451 +illusion_1L,target,47,14.1,velocity,lower_ux,0.7278348207473755 +illusion_1L,target,47,14.1,velocity,lower_uy,-0.20588290691375732 +illusion_1L,target,48,14.4,velocity,upper_ux,1.3991681337356567 +illusion_1L,target,48,14.4,velocity,upper_uy,-0.41650184988975525 +illusion_1L,target,48,14.4,velocity,center_ux,0.8878851532936096 +illusion_1L,target,48,14.4,velocity,center_uy,-0.3914259970188141 +illusion_1L,target,48,14.4,velocity,lower_ux,0.6865550875663757 +illusion_1L,target,48,14.4,velocity,lower_uy,-0.07708196341991425 +illusion_1L,target,49,14.7,velocity,upper_ux,1.4304146766662598 +illusion_1L,target,49,14.7,velocity,upper_uy,-0.2755644619464874 +illusion_1L,target,49,14.7,velocity,center_ux,0.8440396189689636 +illusion_1L,target,49,14.7,velocity,center_uy,-0.06991805881261826 +illusion_1L,target,49,14.7,velocity,lower_ux,0.6778964996337891 +illusion_1L,target,49,14.7,velocity,lower_uy,0.05820910632610321 +illusion_1L,target,50,15.0,velocity,upper_ux,1.3629796504974365 +illusion_1L,target,50,15.0,velocity,upper_uy,-0.004104883875697851 +illusion_1L,target,50,15.0,velocity,center_ux,0.8302402496337891 +illusion_1L,target,50,15.0,velocity,center_uy,0.2713524401187897 +illusion_1L,target,50,15.0,velocity,lower_ux,0.7100151181221008 +illusion_1L,target,50,15.0,velocity,lower_uy,0.16528178751468658 +illusion_1L,target,51,15.3,velocity,upper_ux,1.2530438899993896 +illusion_1L,target,51,15.3,velocity,upper_uy,0.2511053681373596 +illusion_1L,target,51,15.3,velocity,center_ux,0.8472134470939636 +illusion_1L,target,51,15.3,velocity,center_uy,0.5252465009689331 +illusion_1L,target,51,15.3,velocity,lower_ux,0.7705617547035217 +illusion_1L,target,51,15.3,velocity,lower_uy,0.23249535262584686 +illusion_1L,target,52,15.6,velocity,upper_ux,1.1584454774856567 +illusion_1L,target,52,15.6,velocity,upper_uy,0.385951966047287 +illusion_1L,target,52,15.6,velocity,center_ux,0.8835194110870361 +illusion_1L,target,52,15.6,velocity,center_uy,0.6268894076347351 +illusion_1L,target,52,15.6,velocity,lower_ux,0.837276816368103 +illusion_1L,target,52,15.6,velocity,lower_uy,0.27752748131752014 +illusion_1L,target,53,15.9,velocity,upper_ux,1.0883795022964478 +illusion_1L,target,53,15.9,velocity,upper_uy,0.42263755202293396 +illusion_1L,target,53,15.9,velocity,center_ux,0.9226201176643372 +illusion_1L,target,53,15.9,velocity,center_uy,0.6242638826370239 +illusion_1L,target,53,15.9,velocity,lower_ux,0.9005321264266968 +illusion_1L,target,53,15.9,velocity,lower_uy,0.3136146664619446 +illusion_1L,target,54,16.2,velocity,upper_ux,1.033204197883606 +illusion_1L,target,54,16.2,velocity,upper_uy,0.4213188886642456 +illusion_1L,target,54,16.2,velocity,center_ux,0.9531647562980652 +illusion_1L,target,54,16.2,velocity,center_uy,0.6078526377677917 +illusion_1L,target,54,16.2,velocity,lower_ux,0.9600818157196045 +illusion_1L,target,54,16.2,velocity,lower_uy,0.343414306640625 +illusion_1L,target,55,16.5,velocity,upper_ux,0.9820587038993835 +illusion_1L,target,55,16.5,velocity,upper_uy,0.41359543800354004 +illusion_1L,target,55,16.5,velocity,center_ux,0.9741277098655701 +illusion_1L,target,55,16.5,velocity,center_uy,0.6079225540161133 +illusion_1L,target,55,16.5,velocity,lower_ux,1.0174221992492676 +illusion_1L,target,55,16.5,velocity,lower_uy,0.3686782717704773 +illusion_1L,target,56,16.8,velocity,upper_ux,0.9289294481277466 +illusion_1L,target,56,16.8,velocity,upper_uy,0.4021422863006592 +illusion_1L,target,56,16.8,velocity,center_ux,0.9874393939971924 +illusion_1L,target,56,16.8,velocity,center_uy,0.6240881085395813 +illusion_1L,target,56,16.8,velocity,lower_ux,1.0746873617172241 +illusion_1L,target,56,16.8,velocity,lower_uy,0.3911042809486389 +illusion_1L,target,57,17.1,velocity,upper_ux,0.871088981628418 +illusion_1L,target,57,17.1,velocity,upper_uy,0.37864843010902405 +illusion_1L,target,57,17.1,velocity,center_ux,0.992903470993042 +illusion_1L,target,57,17.1,velocity,center_uy,0.6514756083488464 +illusion_1L,target,57,17.1,velocity,lower_ux,1.1347780227661133 +illusion_1L,target,57,17.1,velocity,lower_uy,0.41158822178840637 +illusion_1L,target,58,17.4,velocity,upper_ux,0.8091447949409485 +illusion_1L,target,58,17.4,velocity,upper_uy,0.3311847448348999 +illusion_1L,target,58,17.4,velocity,center_ux,0.9861685037612915 +illusion_1L,target,58,17.4,velocity,center_uy,0.6729226112365723 +illusion_1L,target,58,17.4,velocity,lower_ux,1.2018109560012817 +illusion_1L,target,58,17.4,velocity,lower_uy,0.42990443110466003 +illusion_1L,target,59,17.7,velocity,upper_ux,0.7482658624649048 +illusion_1L,target,59,17.7,velocity,upper_uy,0.24908778071403503 +illusion_1L,target,59,17.7,velocity,center_ux,0.9584679007530212 +illusion_1L,target,59,17.7,velocity,center_uy,0.6414328217506409 +illusion_1L,target,59,17.7,velocity,lower_ux,1.2801390886306763 +illusion_1L,target,59,17.7,velocity,lower_uy,0.44317626953125 +illusion_1L,target,60,18.0,velocity,upper_ux,0.6992453932762146 +illusion_1L,target,60,18.0,velocity,upper_uy,0.13116441667079926 +illusion_1L,target,60,18.0,velocity,center_ux,0.9090848565101624 +illusion_1L,target,60,18.0,velocity,center_uy,0.4908103346824646 +illusion_1L,target,60,18.0,velocity,lower_ux,1.3678885698318481 +illusion_1L,target,60,18.0,velocity,lower_uy,0.43586480617523193 +illusion_1L,target,61,18.3,velocity,upper_ux,0.6769275665283203 +illusion_1L,target,61,18.3,velocity,upper_uy,-0.0057190642692148685 +illusion_1L,target,61,18.3,velocity,center_ux,0.8589316010475159 +illusion_1L,target,61,18.3,velocity,center_uy,0.20571167767047882 +illusion_1L,target,61,18.3,velocity,lower_ux,1.4301127195358276 +illusion_1L,target,61,18.3,velocity,lower_uy,0.34961000084877014 +illusion_1L,target,62,18.6,velocity,upper_ux,0.693760097026825 +illusion_1L,target,62,18.6,velocity,upper_uy,-0.12767986953258514 +illusion_1L,target,62,18.6,velocity,center_ux,0.8330990672111511 +illusion_1L,target,62,18.6,velocity,center_uy,-0.14127908647060394 +illusion_1L,target,62,18.6,velocity,lower_ux,1.4011250734329224 +illusion_1L,target,62,18.6,velocity,lower_uy,0.11893101036548615 +illusion_1L,target,63,18.9,velocity,upper_ux,0.7458177804946899 +illusion_1L,target,63,18.9,velocity,upper_uy,-0.2097853273153305 +illusion_1L,target,63,18.9,velocity,center_ux,0.8388641476631165 +illusion_1L,target,63,18.9,velocity,center_uy,-0.441842645406723 +illusion_1L,target,63,18.9,velocity,lower_ux,1.2978700399398804 +illusion_1L,target,63,18.9,velocity,lower_uy,-0.16292162239551544 +illusion_1L,target,64,19.2,velocity,upper_ux,0.8112872838973999 +illusion_1L,target,64,19.2,velocity,upper_uy,-0.26119086146354675 +illusion_1L,target,64,19.2,velocity,center_ux,0.8685163259506226 +illusion_1L,target,64,19.2,velocity,center_uy,-0.6048721671104431 +illusion_1L,target,64,19.2,velocity,lower_ux,1.1932027339935303 +illusion_1L,target,64,19.2,velocity,lower_uy,-0.3477531373500824 +illusion_1L,target,65,19.5,velocity,upper_ux,0.8749903440475464 +illusion_1L,target,65,19.5,velocity,upper_uy,-0.30018267035484314 +illusion_1L,target,65,19.5,velocity,center_ux,0.9072065353393555 +illusion_1L,target,65,19.5,velocity,center_uy,-0.6310688853263855 +illusion_1L,target,65,19.5,velocity,lower_ux,1.1129162311553955 +illusion_1L,target,65,19.5,velocity,lower_uy,-0.41554778814315796 +illusion_1L,target,66,19.8,velocity,upper_ux,0.9353247284889221 +illusion_1L,target,66,19.8,velocity,upper_uy,-0.33224955201148987 +illusion_1L,target,66,19.8,velocity,center_ux,0.9411740303039551 +illusion_1L,target,66,19.8,velocity,center_uy,-0.6127307415008545 +illusion_1L,target,66,19.8,velocity,lower_ux,1.0529524087905884 +illusion_1L,target,66,19.8,velocity,lower_uy,-0.4231916666030884 +illusion_1L,target,67,20.1,velocity,upper_ux,0.9937400221824646 +illusion_1L,target,67,20.1,velocity,upper_uy,-0.35905230045318604 +illusion_1L,target,67,20.1,velocity,center_ux,0.9660927057266235 +illusion_1L,target,67,20.1,velocity,center_uy,-0.6056424975395203 +illusion_1L,target,67,20.1,velocity,lower_ux,1.0017255544662476 +illusion_1L,target,67,20.1,velocity,lower_uy,-0.4166037440299988 +illusion_1L,target,68,20.4,velocity,upper_ux,1.0517325401306152 +illusion_1L,target,68,20.4,velocity,upper_uy,-0.38245072960853577 +illusion_1L,target,68,20.4,velocity,center_ux,0.9832543134689331 +illusion_1L,target,68,20.4,velocity,center_uy,-0.61567622423172 +illusion_1L,target,68,20.4,velocity,lower_ux,0.9508982300758362 +illusion_1L,target,68,20.4,velocity,lower_uy,-0.4073154926300049 +illusion_1L,target,69,20.7,velocity,upper_ux,1.111219048500061 +illusion_1L,target,69,20.7,velocity,upper_uy,-0.40369176864624023 +illusion_1L,target,69,20.7,velocity,center_ux,0.9929153323173523 +illusion_1L,target,69,20.7,velocity,center_uy,-0.6395220160484314 +illusion_1L,target,69,20.7,velocity,lower_ux,0.8959720134735107 +illusion_1L,target,69,20.7,velocity,lower_uy,-0.389885276556015 +illusion_1L,target,70,21.0,velocity,upper_ux,1.1753461360931396 +illusion_1L,target,70,21.0,velocity,upper_uy,-0.42304638028144836 +illusion_1L,target,70,21.0,velocity,center_ux,0.9921558499336243 +illusion_1L,target,70,21.0,velocity,center_uy,-0.6669410467147827 +illusion_1L,target,70,21.0,velocity,lower_ux,0.8355997800827026 +illusion_1L,target,70,21.0,velocity,lower_uy,-0.35331737995147705 +illusion_1L,target,71,21.3,velocity,upper_ux,1.2482291460037231 +illusion_1L,target,71,21.3,velocity,upper_uy,-0.43910208344459534 +illusion_1L,target,71,21.3,velocity,center_ux,0.9730257391929626 +illusion_1L,target,71,21.3,velocity,center_uy,-0.6642878651618958 +illusion_1L,target,71,21.3,velocity,lower_ux,0.7726497650146484 +illusion_1L,target,71,21.3,velocity,lower_uy,-0.28567177057266235 +illusion_1L,target,72,21.6,velocity,upper_ux,1.3324930667877197 +illusion_1L,target,72,21.6,velocity,upper_uy,-0.44376876950263977 +illusion_1L,target,72,21.6,velocity,center_ux,0.9296477437019348 +illusion_1L,target,72,21.6,velocity,center_uy,-0.567443311214447 +illusion_1L,target,72,21.6,velocity,lower_ux,0.7161068916320801 +illusion_1L,target,72,21.6,velocity,lower_uy,-0.18100863695144653 +illusion_1L,target,73,21.9,velocity,upper_ux,1.4116005897521973 +illusion_1L,target,73,21.9,velocity,upper_uy,-0.39950594305992126 +illusion_1L,target,73,21.9,velocity,center_ux,0.8754078149795532 +illusion_1L,target,73,21.9,velocity,center_uy,-0.33162859082221985 +illusion_1L,target,73,21.9,velocity,lower_ux,0.6805705428123474 +illusion_1L,target,73,21.9,velocity,lower_uy,-0.048456862568855286 +illusion_1L,target,74,22.2,velocity,upper_ux,1.4241113662719727 +illusion_1L,target,74,22.2,velocity,upper_uy,-0.22670257091522217 +illusion_1L,target,74,22.2,velocity,center_ux,0.837972104549408 +illusion_1L,target,74,22.2,velocity,center_uy,0.002622931031510234 +illusion_1L,target,74,22.2,velocity,lower_ux,0.6812208294868469 +illusion_1L,target,74,22.2,velocity,lower_uy,0.0834532082080841 +illusion_1L,target,75,22.5,velocity,upper_ux,1.3421028852462769 +illusion_1L,target,75,22.5,velocity,upper_uy,0.05627112090587616 +illusion_1L,target,75,22.5,velocity,center_ux,0.8322798609733582 +illusion_1L,target,75,22.5,velocity,center_uy,0.3343461751937866 +illusion_1L,target,75,22.5,velocity,lower_ux,0.722130298614502 +illusion_1L,target,75,22.5,velocity,lower_uy,0.1819513440132141 +illusion_1L,target,76,22.8,velocity,upper_ux,1.2329812049865723 +illusion_1L,target,76,22.8,velocity,upper_uy,0.2902088761329651 +illusion_1L,target,76,22.8,velocity,center_ux,0.8549561500549316 +illusion_1L,target,76,22.8,velocity,center_uy,0.5593068599700928 +illusion_1L,target,76,22.8,velocity,lower_ux,0.7859822511672974 +illusion_1L,target,76,22.8,velocity,lower_uy,0.24284392595291138 +illusion_1L,target,77,23.1,velocity,upper_ux,1.1430580615997314 +illusion_1L,target,77,23.1,velocity,upper_uy,0.3999052941799164 +illusion_1L,target,77,23.1,velocity,center_ux,0.8927623629570007 +illusion_1L,target,77,23.1,velocity,center_uy,0.6315246820449829 +illusion_1L,target,77,23.1,velocity,lower_ux,0.8517258763313293 +illusion_1L,target,77,23.1,velocity,lower_uy,0.28551003336906433 +illusion_1L,target,78,23.4,velocity,upper_ux,1.0760201215744019 +illusion_1L,target,78,23.4,velocity,upper_uy,0.42397603392601013 +illusion_1L,target,78,23.4,velocity,center_ux,0.9296502470970154 +illusion_1L,target,78,23.4,velocity,center_uy,0.6200217008590698 +illusion_1L,target,78,23.4,velocity,lower_ux,0.913038969039917 +illusion_1L,target,78,23.4,velocity,lower_uy,0.32018354535102844 +illusion_1L,target,79,23.7,velocity,upper_ux,1.0215160846710205 +illusion_1L,target,79,23.7,velocity,upper_uy,0.4199327230453491 +illusion_1L,target,79,23.7,velocity,center_ux,0.9571846723556519 +illusion_1L,target,79,23.7,velocity,center_uy,0.6063519716262817 +illusion_1L,target,79,23.7,velocity,lower_ux,0.9710012078285217 +illusion_1L,target,79,23.7,velocity,lower_uy,0.3488592207431793 +illusion_1L,target,80,24.0,velocity,upper_ux,0.9701417088508606 +illusion_1L,target,80,24.0,velocity,upper_uy,0.4117737412452698 +illusion_1L,target,80,24.0,velocity,center_ux,0.9762616157531738 +illusion_1L,target,80,24.0,velocity,center_uy,0.609931468963623 +illusion_1L,target,80,24.0,velocity,lower_ux,1.0278185606002808 +illusion_1L,target,80,24.0,velocity,lower_uy,0.37338775396347046 +illusion_1L,target,81,24.3,velocity,upper_ux,0.9169163107872009 +illusion_1L,target,81,24.3,velocity,upper_uy,0.39866864681243896 +illusion_1L,target,81,24.3,velocity,center_ux,0.9888120293617249 +illusion_1L,target,81,24.3,velocity,center_uy,0.6288569569587708 +illusion_1L,target,81,24.3,velocity,lower_ux,1.0860099792480469 +illusion_1L,target,81,24.3,velocity,lower_uy,0.3953549563884735 +illusion_1L,target,82,24.6,velocity,upper_ux,0.8592705130577087 +illusion_1L,target,82,24.6,velocity,upper_uy,0.37117376923561096 +illusion_1L,target,82,24.6,velocity,center_ux,0.9935591816902161 +illusion_1L,target,82,24.6,velocity,center_uy,0.657052755355835 +illusion_1L,target,82,24.6,velocity,lower_ux,1.1483547687530518 +illusion_1L,target,82,24.6,velocity,lower_uy,0.41548070311546326 +illusion_1L,target,83,24.9,velocity,upper_ux,0.7976276278495789 +illusion_1L,target,83,24.9,velocity,upper_uy,0.31705084443092346 +illusion_1L,target,83,24.9,velocity,center_ux,0.9839925169944763 +illusion_1L,target,83,24.9,velocity,center_uy,0.6725803017616272 +illusion_1L,target,83,24.9,velocity,lower_ux,1.2181854248046875 +illusion_1L,target,83,24.9,velocity,lower_uy,0.4332144558429718 +illusion_1L,target,84,25.2,velocity,upper_ux,0.737821102142334 +illusion_1L,target,84,25.2,velocity,upper_uy,0.22681589424610138 +illusion_1L,target,84,25.2,velocity,center_ux,0.9508959054946899 +illusion_1L,target,84,25.2,velocity,center_uy,0.6213705539703369 +illusion_1L,target,84,25.2,velocity,lower_ux,1.2989436388015747 +illusion_1L,target,84,25.2,velocity,lower_uy,0.44440993666648865 +illusion_1L,target,85,25.5,velocity,upper_ux,0.6921598315238953 +illusion_1L,target,85,25.5,velocity,upper_uy,0.10262808948755264 +illusion_1L,target,85,25.5,velocity,center_ux,0.8979777097702026 +illusion_1L,target,85,25.5,velocity,center_uy,0.4407975673675537 +illusion_1L,target,85,25.5,velocity,lower_ux,1.3851090669631958 +illusion_1L,target,85,25.5,velocity,lower_uy,0.42754581570625305 +illusion_1L,target,86,25.8,velocity,upper_ux,0.6763625741004944 +illusion_1L,target,86,25.8,velocity,upper_uy,-0.03413241729140282 +illusion_1L,target,86,25.8,velocity,center_ux,0.8501339554786682 +illusion_1L,target,86,25.8,velocity,center_uy,0.13477617502212524 +illusion_1L,target,86,25.8,velocity,lower_ux,1.4319173097610474 +illusion_1L,target,86,25.8,velocity,lower_uy,0.31385061144828796 +illusion_1L,target,87,26.1,velocity,upper_ux,0.7012099623680115 +illusion_1L,target,87,26.1,velocity,upper_uy,-0.14849558472633362 +illusion_1L,target,87,26.1,velocity,center_ux,0.8302741646766663 +illusion_1L,target,87,26.1,velocity,center_uy,-0.21115253865718842 +illusion_1L,target,87,26.1,velocity,lower_ux,1.3814668655395508 +illusion_1L,target,87,26.1,velocity,lower_uy,0.058968380093574524 +illusion_1L,target,88,26.4,velocity,upper_ux,0.7583255171775818 +illusion_1L,target,88,26.4,velocity,upper_uy,-0.22227373719215393 +illusion_1L,target,88,26.4,velocity,center_ux,0.842189610004425 +illusion_1L,target,88,26.4,velocity,center_uy,-0.4886764585971832 +illusion_1L,target,88,26.4,velocity,lower_ux,1.2734019756317139 +illusion_1L,target,88,26.4,velocity,lower_uy,-0.21156886219978333 +illusion_1L,target,89,26.7,velocity,upper_ux,0.8251216411590576 +illusion_1L,target,89,26.7,velocity,upper_uy,-0.2699606716632843 +illusion_1L,target,89,26.7,velocity,center_ux,0.8761184811592102 +illusion_1L,target,89,26.7,velocity,center_uy,-0.6188498139381409 +illusion_1L,target,89,26.7,velocity,lower_ux,1.1742550134658813 +illusion_1L,target,89,26.7,velocity,lower_uy,-0.3700447082519531 +illusion_1L,target,90,27.0,velocity,upper_ux,0.8891024589538574 +illusion_1L,target,90,27.0,velocity,upper_uy,-0.3073868453502655 +illusion_1L,target,90,27.0,velocity,center_ux,0.9158329367637634 +illusion_1L,target,90,27.0,velocity,center_uy,-0.627833366394043 +illusion_1L,target,90,27.0,velocity,lower_ux,1.1000041961669922 +illusion_1L,target,90,27.0,velocity,lower_uy,-0.42030563950538635 +illusion_1L,target,91,27.3,velocity,upper_ux,0.9491471648216248 +illusion_1L,target,91,27.3,velocity,upper_uy,-0.3382449448108673 +illusion_1L,target,91,27.3,velocity,center_ux,0.9482017159461975 +illusion_1L,target,91,27.3,velocity,center_uy,-0.6098293662071228 +illusion_1L,target,91,27.3,velocity,lower_ux,1.042896032333374 +illusion_1L,target,91,27.3,velocity,lower_uy,-0.4224933087825775 +illusion_1L,target,92,27.6,velocity,upper_ux,1.0067089796066284 +illusion_1L,target,92,27.6,velocity,upper_uy,-0.3642079532146454 +illusion_1L,target,92,27.6,velocity,center_ux,0.9707520604133606 +illusion_1L,target,92,27.6,velocity,center_uy,-0.6065951585769653 +illusion_1L,target,92,27.6,velocity,lower_ux,0.9915505051612854 +illusion_1L,target,92,27.6,velocity,lower_uy,-0.4151886999607086 +illusion_1L,target,93,27.9,velocity,upper_ux,1.063778042793274 +illusion_1L,target,93,27.9,velocity,upper_uy,-0.3870663344860077 +illusion_1L,target,93,27.9,velocity,center_ux,0.9854114055633545 +illusion_1L,target,93,27.9,velocity,center_uy,-0.6199917793273926 +illusion_1L,target,93,27.9,velocity,lower_ux,0.9390693306922913 +illusion_1L,target,93,27.9,velocity,lower_uy,-0.404886931180954 +illusion_1L,target,94,28.2,velocity,upper_ux,1.1231186389923096 +illusion_1L,target,94,28.2,velocity,upper_uy,-0.407889723777771 +illusion_1L,target,94,28.2,velocity,center_ux,0.992580235004425 +illusion_1L,target,94,28.2,velocity,center_uy,-0.6459713578224182 +illusion_1L,target,94,28.2,velocity,lower_ux,0.8822454810142517 +illusion_1L,target,94,28.2,velocity,lower_uy,-0.3844868540763855 +illusion_1L,target,95,28.5,velocity,upper_ux,1.188610315322876 +illusion_1L,target,95,28.5,velocity,upper_uy,-0.4267037510871887 +illusion_1L,target,95,28.5,velocity,center_ux,0.9888322949409485 +illusion_1L,target,95,28.5,velocity,center_uy,-0.6710018515586853 +illusion_1L,target,95,28.5,velocity,lower_ux,0.8209360837936401 +illusion_1L,target,95,28.5,velocity,lower_uy,-0.34243062138557434 +illusion_1L,target,96,28.8,velocity,upper_ux,1.2646218538284302 +illusion_1L,target,96,28.8,velocity,upper_uy,-0.44143977761268616 +illusion_1L,target,96,28.8,velocity,center_ux,0.9656661152839661 +illusion_1L,target,96,28.8,velocity,center_uy,-0.654508113861084 +illusion_1L,target,96,28.8,velocity,lower_ux,0.7592381238937378 +illusion_1L,target,96,28.8,velocity,lower_uy,-0.26728734374046326 +illusion_1L,target,97,29.1,velocity,upper_ux,1.351710557937622 +illusion_1L,target,97,29.1,velocity,upper_uy,-0.44063353538513184 +illusion_1L,target,97,29.1,velocity,center_ux,0.9193463921546936 +illusion_1L,target,97,29.1,velocity,center_uy,-0.5299479961395264 +illusion_1L,target,97,29.1,velocity,lower_ux,0.7069236636161804 +illusion_1L,target,97,29.1,velocity,lower_uy,-0.1553739458322525 +illusion_1L,target,98,29.4,velocity,upper_ux,1.4237420558929443 +illusion_1L,target,98,29.4,velocity,upper_uy,-0.3759799301624298 +illusion_1L,target,98,29.4,velocity,center_ux,0.8670024871826172 +illusion_1L,target,98,29.4,velocity,center_uy,-0.2666587233543396 +illusion_1L,target,98,29.4,velocity,lower_ux,0.6783632040023804 +illusion_1L,target,98,29.4,velocity,lower_uy,-0.01978212594985962 +illusion_1L,target,99,29.7,velocity,upper_ux,1.4143251180648804 +illusion_1L,target,99,29.7,velocity,upper_uy,-0.17128168046474457 +illusion_1L,target,99,29.7,velocity,center_ux,0.835402250289917 +illusion_1L,target,99,29.7,velocity,center_uy,0.07676240056753159 +illusion_1L,target,99,29.7,velocity,lower_ux,0.6874324083328247 +illusion_1L,target,99,29.7,velocity,lower_uy,0.10765779763460159 +illusion_1L,target,100,30.0,velocity,upper_ux,1.3188142776489258 +illusion_1L,target,100,30.0,velocity,upper_uy,0.11469211429357529 +illusion_1L,target,100,30.0,velocity,center_ux,0.8355048894882202 +illusion_1L,target,100,30.0,velocity,center_uy,0.39411526918411255 +illusion_1L,target,100,30.0,velocity,lower_ux,0.7342774271965027 +illusion_1L,target,100,30.0,velocity,lower_uy,0.19747120141983032 +illusion_1L,target,101,30.3,velocity,upper_ux,1.2109638452529907 +illusion_1L,target,101,30.3,velocity,upper_uy,0.3231959640979767 +illusion_1L,target,101,30.3,velocity,center_ux,0.8617080450057983 +illusion_1L,target,101,30.3,velocity,center_uy,0.5866956114768982 +illusion_1L,target,101,30.3,velocity,lower_ux,0.7989259958267212 +illusion_1L,target,101,30.3,velocity,lower_uy,0.25290846824645996 +illusion_1L,target,102,30.6,velocity,upper_ux,1.1260517835617065 +illusion_1L,target,102,30.6,velocity,upper_uy,0.40941113233566284 +illusion_1L,target,102,30.6,velocity,center_ux,0.900046706199646 +illusion_1L,target,102,30.6,velocity,center_uy,0.6324891448020935 +illusion_1L,target,102,30.6,velocity,lower_ux,0.8634361028671265 +illusion_1L,target,102,30.6,velocity,lower_uy,0.29348093271255493 +illusion_1L,target,103,30.9,velocity,upper_ux,1.0632189512252808 +illusion_1L,target,103,30.9,velocity,upper_uy,0.42370831966400146 +illusion_1L,target,103,30.9,velocity,center_ux,0.935604453086853 +illusion_1L,target,103,30.9,velocity,center_uy,0.6159509420394897 +illusion_1L,target,103,30.9,velocity,lower_ux,0.9243598580360413 +illusion_1L,target,103,30.9,velocity,lower_uy,0.3267260491847992 +illusion_1L,target,104,31.2,velocity,upper_ux,1.0111464262008667 +illusion_1L,target,104,31.2,velocity,upper_uy,0.4180543124675751 +illusion_1L,target,104,31.2,velocity,center_ux,0.9621652364730835 +illusion_1L,target,104,31.2,velocity,center_uy,0.6056084036827087 +illusion_1L,target,104,31.2,velocity,lower_ux,0.9830363988876343 +illusion_1L,target,104,31.2,velocity,lower_uy,0.3543664216995239 +illusion_1L,target,105,31.5,velocity,upper_ux,0.9606002569198608 +illusion_1L,target,105,31.5,velocity,upper_uy,0.40940821170806885 +illusion_1L,target,105,31.5,velocity,center_ux,0.9806159734725952 +illusion_1L,target,105,31.5,velocity,center_uy,0.6126468777656555 +illusion_1L,target,105,31.5,velocity,lower_ux,1.0409184694290161 +illusion_1L,target,105,31.5,velocity,lower_uy,0.3782801628112793 +illusion_1L,target,106,31.8,velocity,upper_ux,0.9065535664558411 +illusion_1L,target,106,31.8,velocity,upper_uy,0.394231379032135 +illusion_1L,target,106,31.8,velocity,center_ux,0.9916858673095703 +illusion_1L,target,106,31.8,velocity,center_uy,0.6343296766281128 +illusion_1L,target,106,31.8,velocity,lower_ux,1.0998395681381226 +illusion_1L,target,106,31.8,velocity,lower_uy,0.39986804127693176 +illusion_1L,target,107,32.1,velocity,upper_ux,0.84710693359375 +illusion_1L,target,107,32.1,velocity,upper_uy,0.36218756437301636 +illusion_1L,target,107,32.1,velocity,center_ux,0.993299663066864 +illusion_1L,target,107,32.1,velocity,center_uy,0.6626570820808411 +illusion_1L,target,107,32.1,velocity,lower_ux,1.1627780199050903 +illusion_1L,target,107,32.1,velocity,lower_uy,0.4196067750453949 +illusion_1L,target,108,32.4,velocity,upper_ux,0.7841566801071167 +illusion_1L,target,108,32.4,velocity,upper_uy,0.3011074960231781 +illusion_1L,target,108,32.4,velocity,center_ux,0.9783316254615784 +illusion_1L,target,108,32.4,velocity,center_uy,0.6697986125946045 +illusion_1L,target,108,32.4,velocity,lower_ux,1.2336872816085815 +illusion_1L,target,108,32.4,velocity,lower_uy,0.4365381896495819 +illusion_1L,target,109,32.7,velocity,upper_ux,0.7255228161811829 +illusion_1L,target,109,32.7,velocity,upper_uy,0.203239306807518 +illusion_1L,target,109,32.7,velocity,center_ux,0.939307451248169 +illusion_1L,target,109,32.7,velocity,center_uy,0.5956915020942688 +illusion_1L,target,109,32.7,velocity,lower_ux,1.316117525100708 +illusion_1L,target,109,32.7,velocity,lower_uy,0.44475865364074707 +illusion_1L,target,110,33.0,velocity,upper_ux,0.6849138736724854 +illusion_1L,target,110,33.0,velocity,upper_uy,0.07426812499761581 +illusion_1L,target,110,33.0,velocity,center_ux,0.8851410746574402 +illusion_1L,target,110,33.0,velocity,center_uy,0.3855680227279663 +illusion_1L,target,110,33.0,velocity,lower_ux,1.399658203125 +illusion_1L,target,110,33.0,velocity,lower_uy,0.4150502383708954 +illusion_1L,target,111,33.3,velocity,upper_ux,0.677965521812439 +illusion_1L,target,111,33.3,velocity,upper_uy,-0.06058667600154877 +illusion_1L,target,111,33.3,velocity,center_ux,0.842826783657074 +illusion_1L,target,111,33.3,velocity,center_uy,0.06283705681562424 +illusion_1L,target,111,33.3,velocity,lower_ux,1.4298957586288452 +illusion_1L,target,111,33.3,velocity,lower_uy,0.27075472474098206 +illusion_1L,target,112,33.6,velocity,upper_ux,0.7120440602302551 +illusion_1L,target,112,33.6,velocity,upper_uy,-0.1668485701084137 +illusion_1L,target,112,33.6,velocity,center_ux,0.8310117125511169 +illusion_1L,target,112,33.6,velocity,center_uy,-0.27775758504867554 +illusion_1L,target,112,33.6,velocity,lower_ux,1.3619452714920044 +illusion_1L,target,112,33.6,velocity,lower_uy,-0.0024672681465744972 +illusion_1L,target,113,33.9,velocity,upper_ux,0.7734308838844299 +illusion_1L,target,113,33.9,velocity,upper_uy,-0.23345942795276642 +illusion_1L,target,113,33.9,velocity,center_ux,0.8491030335426331 +illusion_1L,target,113,33.9,velocity,center_uy,-0.529142439365387 +illusion_1L,target,113,33.9,velocity,lower_ux,1.2524183988571167 +illusion_1L,target,113,33.9,velocity,lower_uy,-0.2558291256427765 +illusion_1L,target,114,34.2,velocity,upper_ux,0.8396872878074646 +illusion_1L,target,114,34.2,velocity,upper_uy,-0.2782743573188782 +illusion_1L,target,114,34.2,velocity,center_ux,0.8852900266647339 +illusion_1L,target,114,34.2,velocity,center_uy,-0.6276748180389404 +illusion_1L,target,114,34.2,velocity,lower_ux,1.1578289270401 +illusion_1L,target,114,34.2,velocity,lower_uy,-0.3878839612007141 +illusion_1L,target,115,34.5,velocity,upper_ux,0.9017960429191589 +illusion_1L,target,115,34.5,velocity,upper_uy,-0.3142235577106476 +illusion_1L,target,115,34.5,velocity,center_ux,0.9233182668685913 +illusion_1L,target,115,34.5,velocity,center_uy,-0.6238307952880859 +illusion_1L,target,115,34.5,velocity,lower_ux,1.087128758430481 +illusion_1L,target,115,34.5,velocity,lower_uy,-0.422940731048584 +illusion_1L,target,116,34.8,velocity,upper_ux,0.9602718949317932 +illusion_1L,target,116,34.8,velocity,upper_uy,-0.34388646483421326 +illusion_1L,target,116,34.8,velocity,center_ux,0.952732264995575 +illusion_1L,target,116,34.8,velocity,center_uy,-0.6076205372810364 +illusion_1L,target,116,34.8,velocity,lower_ux,1.0312000513076782 +illusion_1L,target,116,34.8,velocity,lower_uy,-0.4212164580821991 +illusion_1L,target,117,35.1,velocity,upper_ux,1.0172209739685059 +illusion_1L,target,117,35.1,velocity,upper_uy,-0.3690481185913086 +illusion_1L,target,117,35.1,velocity,center_ux,0.9732756614685059 +illusion_1L,target,117,35.1,velocity,center_uy,-0.6079908013343811 +illusion_1L,target,117,35.1,velocity,lower_ux,0.979823887348175 +illusion_1L,target,117,35.1,velocity,lower_uy,-0.41344812512397766 +illusion_1L,target,118,35.4,velocity,upper_ux,1.0750144720077515 +illusion_1L,target,118,35.4,velocity,upper_uy,-0.3914114534854889 +illusion_1L,target,118,35.4,velocity,center_ux,0.9870622754096985 +illusion_1L,target,118,35.4,velocity,center_uy,-0.6243215203285217 +illusion_1L,target,118,35.4,velocity,lower_ux,0.9272505640983582 +illusion_1L,target,118,35.4,velocity,lower_uy,-0.4018406271934509 +illusion_1L,target,119,35.7,velocity,upper_ux,1.136354923248291 +illusion_1L,target,119,35.7,velocity,upper_uy,-0.41187766194343567 +illusion_1L,target,119,35.7,velocity,center_ux,0.9935665726661682 +illusion_1L,target,119,35.7,velocity,center_uy,-0.6517153978347778 +illusion_1L,target,119,35.7,velocity,lower_ux,0.8705096244812012 +illusion_1L,target,119,35.7,velocity,lower_uy,-0.3779275715351105 +illusion_1L,target,120,36.0,velocity,upper_ux,1.2044296264648438 +illusion_1L,target,120,36.0,velocity,upper_uy,-0.43019434809684753 +illusion_1L,target,120,36.0,velocity,center_ux,0.9873270392417908 +illusion_1L,target,120,36.0,velocity,center_uy,-0.672655463218689 +illusion_1L,target,120,36.0,velocity,lower_ux,0.8092805743217468 +illusion_1L,target,120,36.0,velocity,lower_uy,-0.32968074083328247 +illusion_1L,target,121,36.3,velocity,upper_ux,1.2829346656799316 +illusion_1L,target,121,36.3,velocity,upper_uy,-0.44334936141967773 +illusion_1L,target,121,36.3,velocity,center_ux,0.958928108215332 +illusion_1L,target,121,36.3,velocity,center_uy,-0.6392924189567566 +illusion_1L,target,121,36.3,velocity,lower_ux,0.748304009437561 +illusion_1L,target,121,36.3,velocity,lower_uy,-0.24650858342647552 +illusion_1L,target,122,36.6,velocity,upper_ux,1.3698155879974365 +illusion_1L,target,122,36.6,velocity,upper_uy,-0.43525344133377075 +illusion_1L,target,122,36.6,velocity,center_ux,0.908271074295044 +illusion_1L,target,122,36.6,velocity,center_uy,-0.48551589250564575 +illusion_1L,target,122,36.6,velocity,lower_ux,0.6988215446472168 +illusion_1L,target,122,36.6,velocity,lower_uy,-0.12768125534057617 +illusion_1L,target,123,36.9,velocity,upper_ux,1.4296053647994995 +illusion_1L,target,123,36.9,velocity,upper_uy,-0.3464879095554352 +illusion_1L,target,123,36.9,velocity,center_ux,0.8572661280632019 +illusion_1L,target,123,36.9,velocity,center_uy,-0.19818539917469025 +illusion_1L,target,123,36.9,velocity,lower_ux,0.676300585269928 +illusion_1L,target,123,36.9,velocity,lower_uy,0.009229983203113079 +illusion_1L,target,124,37.2,velocity,upper_ux,1.3978705406188965 +illusion_1L,target,124,37.2,velocity,upper_uy,-0.11335567384958267 +illusion_1L,target,124,37.2,velocity,center_ux,0.8314278721809387 +illusion_1L,target,124,37.2,velocity,center_uy,0.14852923154830933 +illusion_1L,target,124,37.2,velocity,lower_ux,0.6935549974441528 +illusion_1L,target,124,37.2,velocity,lower_uy,0.13017399609088898 +illusion_1L,target,125,37.5,velocity,upper_ux,1.2942328453063965 +illusion_1L,target,125,37.5,velocity,upper_uy,0.1676703691482544 +illusion_1L,target,125,37.5,velocity,center_ux,0.8379359841346741 +illusion_1L,target,125,37.5,velocity,center_uy,0.44662144780158997 +illusion_1L,target,125,37.5,velocity,lower_ux,0.7463586926460266 +illusion_1L,target,125,37.5,velocity,lower_uy,0.21115726232528687 +illusion_1L,target,126,37.8,velocity,upper_ux,1.190985083580017 +illusion_1L,target,126,37.8,velocity,upper_uy,0.3502121865749359 +illusion_1L,target,126,37.8,velocity,center_ux,0.8689111471176147 +illusion_1L,target,126,37.8,velocity,center_uy,0.6063328981399536 +illusion_1L,target,126,37.8,velocity,lower_ux,0.8128305673599243 +illusion_1L,target,126,37.8,velocity,lower_uy,0.2620805501937866 +illusion_1L,target,127,38.1,velocity,upper_ux,1.1122528314590454 +illusion_1L,target,127,38.1,velocity,upper_uy,0.4163934886455536 +illusion_1L,target,127,38.1,velocity,center_ux,0.9087718725204468 +illusion_1L,target,127,38.1,velocity,center_uy,0.6307086944580078 +illusion_1L,target,127,38.1,velocity,lower_ux,0.8775498270988464 +illusion_1L,target,127,38.1,velocity,lower_uy,0.3009300231933594 +illusion_1L,target,128,38.4,velocity,upper_ux,1.0527938604354858 +illusion_1L,target,128,38.4,velocity,upper_uy,0.42343252897262573 +illusion_1L,target,128,38.4,velocity,center_ux,0.9429094195365906 +illusion_1L,target,128,38.4,velocity,center_uy,0.6124186515808105 +illusion_1L,target,128,38.4,velocity,lower_ux,0.9381455779075623 +illusion_1L,target,128,38.4,velocity,lower_uy,0.3329068124294281 +illusion_1L,target,129,38.7,velocity,upper_ux,1.0010061264038086 +illusion_1L,target,129,38.7,velocity,upper_uy,0.4167042672634125 +illusion_1L,target,129,38.7,velocity,center_ux,0.967120349407196 +illusion_1L,target,129,38.7,velocity,center_uy,0.6058483123779297 +illusion_1L,target,129,38.7,velocity,lower_ux,0.9959906935691833 +illusion_1L,target,129,38.7,velocity,lower_uy,0.359634131193161 +illusion_1L,target,130,39.0,velocity,upper_ux,0.9490520358085632 +illusion_1L,target,130,39.0,velocity,upper_uy,0.407286673784256 +illusion_1L,target,130,39.0,velocity,center_ux,0.9831319451332092 +illusion_1L,target,130,39.0,velocity,center_uy,0.6163565516471863 +illusion_1L,target,130,39.0,velocity,lower_ux,1.0529497861862183 +illusion_1L,target,130,39.0,velocity,lower_uy,0.3829624056816101 +illusion_1L,target,131,39.3,velocity,upper_ux,0.8932129740715027 +illusion_1L,target,131,39.3,velocity,upper_uy,0.3895694613456726 +illusion_1L,target,131,39.3,velocity,center_ux,0.9918696880340576 +illusion_1L,target,131,39.3,velocity,center_uy,0.6405161619186401 +illusion_1L,target,131,39.3,velocity,lower_ux,1.1116538047790527 +illusion_1L,target,131,39.3,velocity,lower_uy,0.4041268527507782 +illusion_1L,target,132,39.6,velocity,upper_ux,0.8326722979545593 +illusion_1L,target,132,39.6,velocity,upper_uy,0.3525030314922333 +illusion_1L,target,132,39.6,velocity,center_ux,0.990780770778656 +illusion_1L,target,132,39.6,velocity,center_uy,0.667737603187561 +illusion_1L,target,132,39.6,velocity,lower_ux,1.1757534742355347 +illusion_1L,target,132,39.6,velocity,lower_uy,0.42337948083877563 +illusion_1L,target,133,39.9,velocity,upper_ux,0.7705161571502686 +illusion_1L,target,133,39.9,velocity,upper_uy,0.2841631770133972 +illusion_1L,target,133,39.9,velocity,center_ux,0.9719707369804382 +illusion_1L,target,133,39.9,velocity,center_uy,0.6637200713157654 +illusion_1L,target,133,39.9,velocity,lower_ux,1.2495447397232056 +illusion_1L,target,133,39.9,velocity,lower_uy,0.43925797939300537 +illusion_1L,target,134,40.2,velocity,upper_ux,0.7154383659362793 +illusion_1L,target,134,40.2,velocity,upper_uy,0.17870523035526276 +illusion_1L,target,134,40.2,velocity,center_ux,0.9293712377548218 +illusion_1L,target,134,40.2,velocity,center_uy,0.5639503002166748 +illusion_1L,target,134,40.2,velocity,lower_ux,1.335206151008606 +illusion_1L,target,134,40.2,velocity,lower_uy,0.44336599111557007 +illusion_1L,target,135,40.5,velocity,upper_ux,0.6811674237251282 +illusion_1L,target,135,40.5,velocity,upper_uy,0.045565005391836166 +illusion_1L,target,135,40.5,velocity,center_ux,0.8758789896965027 +illusion_1L,target,135,40.5,velocity,center_uy,0.32469436526298523 +illusion_1L,target,135,40.5,velocity,lower_ux,1.4143551588058472 +illusion_1L,target,135,40.5,velocity,lower_uy,0.39698678255081177 +illusion_1L,target,136,40.8,velocity,upper_ux,0.6825087070465088 +illusion_1L,target,136,40.8,velocity,upper_uy,-0.08620943874120712 +illusion_1L,target,136,40.8,velocity,center_ux,0.8388721942901611 +illusion_1L,target,136,40.8,velocity,center_uy,-0.011327746324241161 +illusion_1L,target,136,40.8,velocity,lower_ux,1.4242228269577026 +illusion_1L,target,136,40.8,velocity,lower_uy,0.2203911393880844 +illusion_1L,target,137,41.1,velocity,upper_ux,0.72335284948349 +illusion_1L,target,137,41.1,velocity,upper_uy,-0.18391042947769165 +illusion_1L,target,137,41.1,velocity,center_ux,0.8330850601196289 +illusion_1L,target,137,41.1,velocity,center_uy,-0.3418426513671875 +illusion_1L,target,137,41.1,velocity,lower_ux,1.3395473957061768 +illusion_1L,target,137,41.1,velocity,lower_uy,-0.06328630447387695 +illusion_1L,target,138,41.4,velocity,upper_ux,0.7864990830421448 +illusion_1L,target,138,41.4,velocity,upper_uy,-0.2441634088754654 +illusion_1L,target,138,41.4,velocity,center_ux,0.8553180694580078 +illusion_1L,target,138,41.4,velocity,center_uy,-0.5629898309707642 +illusion_1L,target,138,41.4,velocity,lower_ux,1.2296035289764404 +illusion_1L,target,138,41.4,velocity,lower_uy,-0.29409658908843994 +illusion_1L,target,139,41.7,velocity,upper_ux,0.8517223000526428 +illusion_1L,target,139,41.7,velocity,upper_uy,-0.28653231263160706 +illusion_1L,target,139,41.7,velocity,center_ux,0.8927322626113892 +illusion_1L,target,139,41.7,velocity,center_uy,-0.6318548321723938 +illusion_1L,target,139,41.7,velocity,lower_ux,1.139961838722229 +illusion_1L,target,139,41.7,velocity,lower_uy,-0.400789350271225 +illusion_1L,target,140,42.0,velocity,upper_ux,0.9132984280586243 +illusion_1L,target,140,42.0,velocity,upper_uy,-0.3210028409957886 +illusion_1L,target,140,42.0,velocity,center_ux,0.9296832084655762 +illusion_1L,target,140,42.0,velocity,center_uy,-0.6195732951164246 +illusion_1L,target,140,42.0,velocity,lower_ux,1.073835015296936 +illusion_1L,target,140,42.0,velocity,lower_uy,-0.42365261912345886 +illusion_1L,target,141,42.3,velocity,upper_ux,0.9723023772239685 +illusion_1L,target,141,42.3,velocity,upper_uy,-0.349550724029541 +illusion_1L,target,141,42.3,velocity,center_ux,0.957962155342102 +illusion_1L,target,141,42.3,velocity,center_uy,-0.6061895489692688 +illusion_1L,target,141,42.3,velocity,lower_ux,1.0206146240234375 +illusion_1L,target,141,42.3,velocity,lower_uy,-0.4194563925266266 +illusion_1L,target,142,42.6,velocity,upper_ux,1.030155897140503 +illusion_1L,target,142,42.6,velocity,upper_uy,-0.3740302622318268 +illusion_1L,target,142,42.6,velocity,center_ux,0.9777498245239258 +illusion_1L,target,142,42.6,velocity,center_uy,-0.6101316213607788 +illusion_1L,target,142,42.6,velocity,lower_ux,0.9701976776123047 +illusion_1L,target,142,42.6,velocity,lower_uy,-0.41129112243652344 +illusion_1L,target,143,42.9,velocity,upper_ux,1.0886138677597046 +illusion_1L,target,143,42.9,velocity,upper_uy,-0.39598333835601807 +illusion_1L,target,143,42.9,velocity,center_ux,0.9901635646820068 +illusion_1L,target,143,42.9,velocity,center_uy,-0.6294168829917908 +illusion_1L,target,143,42.9,velocity,lower_ux,0.9169593453407288 +illusion_1L,target,143,42.9,velocity,lower_uy,-0.3979972302913666 +illusion_1L,target,144,43.2,velocity,upper_ux,1.1504945755004883 +illusion_1L,target,144,43.2,velocity,upper_uy,-0.4160788357257843 +illusion_1L,target,144,43.2,velocity,center_ux,0.9938875436782837 +illusion_1L,target,144,43.2,velocity,center_uy,-0.6577434539794922 +illusion_1L,target,144,43.2,velocity,lower_ux,0.8584879636764526 +illusion_1L,target,144,43.2,velocity,lower_uy,-0.37003299593925476 +illusion_1L,target,145,43.5,velocity,upper_ux,1.2195689678192139 +illusion_1L,target,145,43.5,velocity,upper_uy,-0.43372318148612976 +illusion_1L,target,145,43.5,velocity,center_ux,0.9827477931976318 +illusion_1L,target,145,43.5,velocity,center_uy,-0.6724892258644104 +illusion_1L,target,145,43.5,velocity,lower_ux,0.7957956194877625 +illusion_1L,target,145,43.5,velocity,lower_uy,-0.3152170777320862 +illusion_1L,target,146,43.8,velocity,upper_ux,1.2999043464660645 +illusion_1L,target,146,43.8,velocity,upper_uy,-0.444616436958313 +illusion_1L,target,146,43.8,velocity,center_ux,0.9483470916748047 +illusion_1L,target,146,43.8,velocity,center_uy,-0.6189368963241577 +illusion_1L,target,146,43.8,velocity,lower_ux,0.7355372905731201 +illusion_1L,target,146,43.8,velocity,lower_uy,-0.22431963682174683 +illusion_1L,target,147,44.1,velocity,upper_ux,1.3858742713928223 +illusion_1L,target,147,44.1,velocity,upper_uy,-0.4265024960041046 +illusion_1L,target,147,44.1,velocity,center_ux,0.8953016400337219 +illusion_1L,target,147,44.1,velocity,center_uy,-0.43537306785583496 +illusion_1L,target,147,44.1,velocity,lower_ux,0.6904292106628418 +illusion_1L,target,147,44.1,velocity,lower_uy,-0.0998329296708107 +illusion_1L,target,148,44.4,velocity,upper_ux,1.4318047761917114 +illusion_1L,target,148,44.4,velocity,upper_uy,-0.3096255362033844 +illusion_1L,target,148,44.4,velocity,center_ux,0.8487953543663025 +illusion_1L,target,148,44.4,velocity,center_uy,-0.12767425179481506 +illusion_1L,target,148,44.4,velocity,lower_ux,0.6762075424194336 +illusion_1L,target,148,44.4,velocity,lower_uy,0.03664494678378105 +illusion_1L,target,149,44.7,velocity,upper_ux,1.3804429769515991 +illusion_1L,target,149,44.7,velocity,upper_uy,-0.05231216549873352 +illusion_1L,target,149,44.7,velocity,center_ux,0.8308228850364685 +illusion_1L,target,149,44.7,velocity,center_uy,0.21797722578048706 +illusion_1L,target,149,44.7,velocity,lower_ux,0.7029556035995483 +illusion_1L,target,149,44.7,velocity,lower_uy,0.1502559632062912 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_wide.csv new file mode 100644 index 0000000..1e69ae8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1L,target,0,0.0,1.4017817974090576,-0.12637902796268463,0.83173006772995,0.1325012892484665,0.6920990943908691,0.12523174285888672 +illusion_1L,target,1,0.3,1.300629734992981,0.15660397708415985,0.837816059589386,0.43536636233329773,0.7446015477180481,0.20810090005397797 +illusion_1L,target,2,0.6,1.1965855360031128,0.3451172411441803,0.8682307004928589,0.602594792842865,0.811106264591217,0.25997626781463623 +illusion_1L,target,3,0.9,1.1159828901290894,0.4154026210308075,0.907487154006958,0.6312589645385742,0.8753458857536316,0.2992246448993683 +illusion_1L,target,4,1.2,1.0550034046173096,0.4237404763698578,0.941254198551178,0.6131124496459961,0.9351983666419983,0.331483393907547 +illusion_1L,target,5,1.5,1.002323865890503,0.41716405749320984,0.965175449848175,0.6057186126708984,0.9923029541969299,0.35839155316352844 +illusion_1L,target,6,1.8,0.950446367263794,0.40791985392570496,0.9814972877502441,0.6154214143753052,1.0490846633911133,0.38181576132774353 +illusion_1L,target,7,2.1,0.8957096338272095,0.3907774090766907,0.9914872050285339,0.6389568448066711,1.1084092855453491,0.4030567705631256 +illusion_1L,target,8,2.4,0.8363664746284485,0.35479846596717834,0.9920609593391418,0.6664754748344421,1.1731737852096558,0.42244312167167664 +illusion_1L,target,9,2.7,0.7745794653892517,0.28789979219436646,0.9747945070266724,0.6651585102081299,1.2469714879989624,0.4386219382286072 +illusion_1L,target,10,3.0,0.7184450030326843,0.183789923787117,0.9327130317687988,0.5710898041725159,1.3318159580230713,0.44378775358200073 +illusion_1L,target,11,3.3,0.6821087002754211,0.05126365274190903,0.8781954050064087,0.3378305733203888,1.4114587306976318,0.40142959356307983 +illusion_1L,target,12,3.6,0.6809124946594238,-0.08123264461755753,0.8390485644340515,0.004335259087383747,1.4250158071517944,0.2320040911436081 +illusion_1L,target,13,3.9,0.7198139429092407,-0.18057182431221008,0.8312843441963196,-0.32843151688575745,1.343051791191101,-0.04993141442537308 +illusion_1L,target,14,4.2,0.7829349040985107,-0.24197982251644135,0.8529092669487,-0.5561008453369141,1.2333505153656006,-0.2860354483127594 +illusion_1L,target,15,4.5,0.849284827709198,-0.28481563925743103,0.8910027146339417,-0.6311573386192322,1.1435424089431763,-0.3983403146266937 +illusion_1L,target,16,4.8,0.9118502736091614,-0.3196221888065338,0.9290928244590759,-0.6204702854156494,1.0772966146469116,-0.42375707626342773 +illusion_1L,target,17,5.1,0.9709639549255371,-0.348427951335907,0.9578115940093994,-0.6065137982368469,1.023662805557251,-0.42000243067741394 +illusion_1L,target,18,5.4,1.0281466245651245,-0.37305352091789246,0.9772552251815796,-0.6098133325576782,0.9725055694580078,-0.41189393401145935 +illusion_1L,target,19,5.7,1.085694670677185,-0.39507946372032166,0.9892039895057678,-0.6286082863807678,0.9186187982559204,-0.39898571372032166 +illusion_1L,target,20,6.0,1.146657109260559,-0.41521817445755005,0.9927952289581299,-0.6568659543991089,0.8597558736801147,-0.3719709813594818 +illusion_1L,target,21,6.3,1.2153871059417725,-0.43295446038246155,0.9827219843864441,-0.6730846166610718,0.797349214553833,-0.31870701909065247 +illusion_1L,target,22,6.6,1.2960641384124756,-0.4443196654319763,0.9504253268241882,-0.6240516901016235,0.7376922369003296,-0.2295932024717331 +illusion_1L,target,23,6.9,1.3833630084991455,-0.42848753929138184,0.8987941741943359,-0.446693480014801,0.6925143599510193,-0.10624267160892487 +illusion_1L,target,24,7.2,1.433010220527649,-0.317575603723526,0.851797342300415,-0.1425340324640274,0.6769288182258606,0.03068072907626629 +illusion_1L,target,25,7.5,1.3851652145385742,-0.06461761146783829,0.8319538831710815,0.20415396988391876,0.7014005184173584,0.14619070291519165 +illusion_1L,target,26,7.8,1.2770987749099731,0.20728030800819397,0.8430824875831604,0.48450756072998047,0.7578033804893494,0.22101250290870667 +illusion_1L,target,27,8.1,1.17635178565979,0.36800897121429443,0.8756264448165894,0.6179229617118835,0.8235322833061218,0.26909345388412476 +illusion_1L,target,28,8.4,1.1004793643951416,0.4196484088897705,0.9141327738761902,0.6282909512519836,0.8863929510116577,0.3066446781158447 +illusion_1L,target,29,8.7,1.0429612398147583,0.422292023897171,0.9463942646980286,0.6100441217422485,0.9462043046951294,0.33758512139320374 +illusion_1L,target,30,9.0,0.992314338684082,0.4151016175746918,0.9697572588920593,0.6062741875648499,1.0044291019439697,0.3636186122894287 +illusion_1L,target,31,9.3,0.9410709738731384,0.4049535095691681,0.9856618046760559,0.6191940307617188,1.0626139640808105,0.38654693961143494 +illusion_1L,target,32,9.6,0.8852120041847229,0.38487672805786133,0.9938230514526367,0.6448986530303955,1.1227772235870361,0.4074522852897644 +illusion_1L,target,33,9.9,0.8239948749542236,0.34334635734558105,0.9903852343559265,0.6702861189842224,1.1882270574569702,0.4263843894004822 +illusion_1L,target,34,10.2,0.7613443732261658,0.2688966393470764,0.9668092131614685,0.655458927154541,1.2632019519805908,0.4413418471813202 +illusion_1L,target,35,10.5,0.7073913216590881,0.1577395796775818,0.9195272922515869,0.5340616703033447,1.348832130432129,0.4412797689437866 +illusion_1L,target,36,10.8,0.6774927377700806,0.022644182667136192,0.866283655166626,0.27409976720809937,1.4211302995681763,0.3792189061641693 +illusion_1L,target,37,11.1,0.6859498620033264,-0.1050507128238678,0.8342692852020264,-0.0679776668548584,1.414618968963623,0.17822694778442383 +illusion_1L,target,38,11.4,0.7330411672592163,-0.1956576555967331,0.83456951379776,-0.38708439469337463,1.321498155593872,-0.1079639419913292 +illusion_1L,target,39,11.7,0.7985661029815674,-0.25164565443992615,0.8613695502281189,-0.5837313532829285,1.2143468856811523,-0.31993719935417175 +illusion_1L,target,40,12.0,0.8636087775230408,-0.2924898862838745,0.900190532207489,-0.632465124130249,1.1291290521621704,-0.40892431139945984 +illusion_1L,target,41,12.3,0.9241688847541809,-0.3259327709674835,0.9356316924095154,-0.6163725256919861,1.065340280532837,-0.4241585433483124 +illusion_1L,target,42,12.6,0.9816728830337524,-0.3536902070045471,0.9613267779350281,-0.6057220101356506,1.0119060277938843,-0.4185737371444702 +illusion_1L,target,43,12.9,1.0384329557418823,-0.37764179706573486,0.9790012836456299,-0.6124146580696106,0.9603572487831116,-0.4099481403827667 +illusion_1L,target,44,13.2,1.0971328020095825,-0.399236261844635,0.9902948141098022,-0.633758544921875,0.9064056277275085,-0.39500731229782104 +illusion_1L,target,45,13.5,1.1606162786483765,-0.419004887342453,0.9930775165557861,-0.662056565284729,0.8478816747665405,-0.36349165439605713 +illusion_1L,target,46,13.8,1.2323590517044067,-0.4360402822494507,0.9798294901847839,-0.6702452898025513,0.7860392332077026,-0.3031349182128906 +illusion_1L,target,47,14.1,1.315277099609375,-0.44464772939682007,0.9421167969703674,-0.5987269878387451,0.7278348207473755,-0.20588290691375732 +illusion_1L,target,48,14.4,1.3991681337356567,-0.41650184988975525,0.8878851532936096,-0.3914259970188141,0.6865550875663757,-0.07708196341991425 +illusion_1L,target,49,14.7,1.4304146766662598,-0.2755644619464874,0.8440396189689636,-0.06991805881261826,0.6778964996337891,0.05820910632610321 +illusion_1L,target,50,15.0,1.3629796504974365,-0.004104883875697851,0.8302402496337891,0.2713524401187897,0.7100151181221008,0.16528178751468658 +illusion_1L,target,51,15.3,1.2530438899993896,0.2511053681373596,0.8472134470939636,0.5252465009689331,0.7705617547035217,0.23249535262584686 +illusion_1L,target,52,15.6,1.1584454774856567,0.385951966047287,0.8835194110870361,0.6268894076347351,0.837276816368103,0.27752748131752014 +illusion_1L,target,53,15.9,1.0883795022964478,0.42263755202293396,0.9226201176643372,0.6242638826370239,0.9005321264266968,0.3136146664619446 +illusion_1L,target,54,16.2,1.033204197883606,0.4213188886642456,0.9531647562980652,0.6078526377677917,0.9600818157196045,0.343414306640625 +illusion_1L,target,55,16.5,0.9820587038993835,0.41359543800354004,0.9741277098655701,0.6079225540161133,1.0174221992492676,0.3686782717704773 +illusion_1L,target,56,16.8,0.9289294481277466,0.4021422863006592,0.9874393939971924,0.6240881085395813,1.0746873617172241,0.3911042809486389 +illusion_1L,target,57,17.1,0.871088981628418,0.37864843010902405,0.992903470993042,0.6514756083488464,1.1347780227661133,0.41158822178840637 +illusion_1L,target,58,17.4,0.8091447949409485,0.3311847448348999,0.9861685037612915,0.6729226112365723,1.2018109560012817,0.42990443110466003 +illusion_1L,target,59,17.7,0.7482658624649048,0.24908778071403503,0.9584679007530212,0.6414328217506409,1.2801390886306763,0.44317626953125 +illusion_1L,target,60,18.0,0.6992453932762146,0.13116441667079926,0.9090848565101624,0.4908103346824646,1.3678885698318481,0.43586480617523193 +illusion_1L,target,61,18.3,0.6769275665283203,-0.0057190642692148685,0.8589316010475159,0.20571167767047882,1.4301127195358276,0.34961000084877014 +illusion_1L,target,62,18.6,0.693760097026825,-0.12767986953258514,0.8330990672111511,-0.14127908647060394,1.4011250734329224,0.11893101036548615 +illusion_1L,target,63,18.9,0.7458177804946899,-0.2097853273153305,0.8388641476631165,-0.441842645406723,1.2978700399398804,-0.16292162239551544 +illusion_1L,target,64,19.2,0.8112872838973999,-0.26119086146354675,0.8685163259506226,-0.6048721671104431,1.1932027339935303,-0.3477531373500824 +illusion_1L,target,65,19.5,0.8749903440475464,-0.30018267035484314,0.9072065353393555,-0.6310688853263855,1.1129162311553955,-0.41554778814315796 +illusion_1L,target,66,19.8,0.9353247284889221,-0.33224955201148987,0.9411740303039551,-0.6127307415008545,1.0529524087905884,-0.4231916666030884 +illusion_1L,target,67,20.1,0.9937400221824646,-0.35905230045318604,0.9660927057266235,-0.6056424975395203,1.0017255544662476,-0.4166037440299988 +illusion_1L,target,68,20.4,1.0517325401306152,-0.38245072960853577,0.9832543134689331,-0.61567622423172,0.9508982300758362,-0.4073154926300049 +illusion_1L,target,69,20.7,1.111219048500061,-0.40369176864624023,0.9929153323173523,-0.6395220160484314,0.8959720134735107,-0.389885276556015 +illusion_1L,target,70,21.0,1.1753461360931396,-0.42304638028144836,0.9921558499336243,-0.6669410467147827,0.8355997800827026,-0.35331737995147705 +illusion_1L,target,71,21.3,1.2482291460037231,-0.43910208344459534,0.9730257391929626,-0.6642878651618958,0.7726497650146484,-0.28567177057266235 +illusion_1L,target,72,21.6,1.3324930667877197,-0.44376876950263977,0.9296477437019348,-0.567443311214447,0.7161068916320801,-0.18100863695144653 +illusion_1L,target,73,21.9,1.4116005897521973,-0.39950594305992126,0.8754078149795532,-0.33162859082221985,0.6805705428123474,-0.048456862568855286 +illusion_1L,target,74,22.2,1.4241113662719727,-0.22670257091522217,0.837972104549408,0.002622931031510234,0.6812208294868469,0.0834532082080841 +illusion_1L,target,75,22.5,1.3421028852462769,0.05627112090587616,0.8322798609733582,0.3343461751937866,0.722130298614502,0.1819513440132141 +illusion_1L,target,76,22.8,1.2329812049865723,0.2902088761329651,0.8549561500549316,0.5593068599700928,0.7859822511672974,0.24284392595291138 +illusion_1L,target,77,23.1,1.1430580615997314,0.3999052941799164,0.8927623629570007,0.6315246820449829,0.8517258763313293,0.28551003336906433 +illusion_1L,target,78,23.4,1.0760201215744019,0.42397603392601013,0.9296502470970154,0.6200217008590698,0.913038969039917,0.32018354535102844 +illusion_1L,target,79,23.7,1.0215160846710205,0.4199327230453491,0.9571846723556519,0.6063519716262817,0.9710012078285217,0.3488592207431793 +illusion_1L,target,80,24.0,0.9701417088508606,0.4117737412452698,0.9762616157531738,0.609931468963623,1.0278185606002808,0.37338775396347046 +illusion_1L,target,81,24.3,0.9169163107872009,0.39866864681243896,0.9888120293617249,0.6288569569587708,1.0860099792480469,0.3953549563884735 +illusion_1L,target,82,24.6,0.8592705130577087,0.37117376923561096,0.9935591816902161,0.657052755355835,1.1483547687530518,0.41548070311546326 +illusion_1L,target,83,24.9,0.7976276278495789,0.31705084443092346,0.9839925169944763,0.6725803017616272,1.2181854248046875,0.4332144558429718 +illusion_1L,target,84,25.2,0.737821102142334,0.22681589424610138,0.9508959054946899,0.6213705539703369,1.2989436388015747,0.44440993666648865 +illusion_1L,target,85,25.5,0.6921598315238953,0.10262808948755264,0.8979777097702026,0.4407975673675537,1.3851090669631958,0.42754581570625305 +illusion_1L,target,86,25.8,0.6763625741004944,-0.03413241729140282,0.8501339554786682,0.13477617502212524,1.4319173097610474,0.31385061144828796 +illusion_1L,target,87,26.1,0.7012099623680115,-0.14849558472633362,0.8302741646766663,-0.21115253865718842,1.3814668655395508,0.058968380093574524 +illusion_1L,target,88,26.4,0.7583255171775818,-0.22227373719215393,0.842189610004425,-0.4886764585971832,1.2734019756317139,-0.21156886219978333 +illusion_1L,target,89,26.7,0.8251216411590576,-0.2699606716632843,0.8761184811592102,-0.6188498139381409,1.1742550134658813,-0.3700447082519531 +illusion_1L,target,90,27.0,0.8891024589538574,-0.3073868453502655,0.9158329367637634,-0.627833366394043,1.1000041961669922,-0.42030563950538635 +illusion_1L,target,91,27.3,0.9491471648216248,-0.3382449448108673,0.9482017159461975,-0.6098293662071228,1.042896032333374,-0.4224933087825775 +illusion_1L,target,92,27.6,1.0067089796066284,-0.3642079532146454,0.9707520604133606,-0.6065951585769653,0.9915505051612854,-0.4151886999607086 +illusion_1L,target,93,27.9,1.063778042793274,-0.3870663344860077,0.9854114055633545,-0.6199917793273926,0.9390693306922913,-0.404886931180954 +illusion_1L,target,94,28.2,1.1231186389923096,-0.407889723777771,0.992580235004425,-0.6459713578224182,0.8822454810142517,-0.3844868540763855 +illusion_1L,target,95,28.5,1.188610315322876,-0.4267037510871887,0.9888322949409485,-0.6710018515586853,0.8209360837936401,-0.34243062138557434 +illusion_1L,target,96,28.8,1.2646218538284302,-0.44143977761268616,0.9656661152839661,-0.654508113861084,0.7592381238937378,-0.26728734374046326 +illusion_1L,target,97,29.1,1.351710557937622,-0.44063353538513184,0.9193463921546936,-0.5299479961395264,0.7069236636161804,-0.1553739458322525 +illusion_1L,target,98,29.4,1.4237420558929443,-0.3759799301624298,0.8670024871826172,-0.2666587233543396,0.6783632040023804,-0.01978212594985962 +illusion_1L,target,99,29.7,1.4143251180648804,-0.17128168046474457,0.835402250289917,0.07676240056753159,0.6874324083328247,0.10765779763460159 +illusion_1L,target,100,30.0,1.3188142776489258,0.11469211429357529,0.8355048894882202,0.39411526918411255,0.7342774271965027,0.19747120141983032 +illusion_1L,target,101,30.3,1.2109638452529907,0.3231959640979767,0.8617080450057983,0.5866956114768982,0.7989259958267212,0.25290846824645996 +illusion_1L,target,102,30.6,1.1260517835617065,0.40941113233566284,0.900046706199646,0.6324891448020935,0.8634361028671265,0.29348093271255493 +illusion_1L,target,103,30.9,1.0632189512252808,0.42370831966400146,0.935604453086853,0.6159509420394897,0.9243598580360413,0.3267260491847992 +illusion_1L,target,104,31.2,1.0111464262008667,0.4180543124675751,0.9621652364730835,0.6056084036827087,0.9830363988876343,0.3543664216995239 +illusion_1L,target,105,31.5,0.9606002569198608,0.40940821170806885,0.9806159734725952,0.6126468777656555,1.0409184694290161,0.3782801628112793 +illusion_1L,target,106,31.8,0.9065535664558411,0.394231379032135,0.9916858673095703,0.6343296766281128,1.0998395681381226,0.39986804127693176 +illusion_1L,target,107,32.1,0.84710693359375,0.36218756437301636,0.993299663066864,0.6626570820808411,1.1627780199050903,0.4196067750453949 +illusion_1L,target,108,32.4,0.7841566801071167,0.3011074960231781,0.9783316254615784,0.6697986125946045,1.2336872816085815,0.4365381896495819 +illusion_1L,target,109,32.7,0.7255228161811829,0.203239306807518,0.939307451248169,0.5956915020942688,1.316117525100708,0.44475865364074707 +illusion_1L,target,110,33.0,0.6849138736724854,0.07426812499761581,0.8851410746574402,0.3855680227279663,1.399658203125,0.4150502383708954 +illusion_1L,target,111,33.3,0.677965521812439,-0.06058667600154877,0.842826783657074,0.06283705681562424,1.4298957586288452,0.27075472474098206 +illusion_1L,target,112,33.6,0.7120440602302551,-0.1668485701084137,0.8310117125511169,-0.27775758504867554,1.3619452714920044,-0.0024672681465744972 +illusion_1L,target,113,33.9,0.7734308838844299,-0.23345942795276642,0.8491030335426331,-0.529142439365387,1.2524183988571167,-0.2558291256427765 +illusion_1L,target,114,34.2,0.8396872878074646,-0.2782743573188782,0.8852900266647339,-0.6276748180389404,1.1578289270401,-0.3878839612007141 +illusion_1L,target,115,34.5,0.9017960429191589,-0.3142235577106476,0.9233182668685913,-0.6238307952880859,1.087128758430481,-0.422940731048584 +illusion_1L,target,116,34.8,0.9602718949317932,-0.34388646483421326,0.952732264995575,-0.6076205372810364,1.0312000513076782,-0.4212164580821991 +illusion_1L,target,117,35.1,1.0172209739685059,-0.3690481185913086,0.9732756614685059,-0.6079908013343811,0.979823887348175,-0.41344812512397766 +illusion_1L,target,118,35.4,1.0750144720077515,-0.3914114534854889,0.9870622754096985,-0.6243215203285217,0.9272505640983582,-0.4018406271934509 +illusion_1L,target,119,35.7,1.136354923248291,-0.41187766194343567,0.9935665726661682,-0.6517153978347778,0.8705096244812012,-0.3779275715351105 +illusion_1L,target,120,36.0,1.2044296264648438,-0.43019434809684753,0.9873270392417908,-0.672655463218689,0.8092805743217468,-0.32968074083328247 +illusion_1L,target,121,36.3,1.2829346656799316,-0.44334936141967773,0.958928108215332,-0.6392924189567566,0.748304009437561,-0.24650858342647552 +illusion_1L,target,122,36.6,1.3698155879974365,-0.43525344133377075,0.908271074295044,-0.48551589250564575,0.6988215446472168,-0.12768125534057617 +illusion_1L,target,123,36.9,1.4296053647994995,-0.3464879095554352,0.8572661280632019,-0.19818539917469025,0.676300585269928,0.009229983203113079 +illusion_1L,target,124,37.2,1.3978705406188965,-0.11335567384958267,0.8314278721809387,0.14852923154830933,0.6935549974441528,0.13017399609088898 +illusion_1L,target,125,37.5,1.2942328453063965,0.1676703691482544,0.8379359841346741,0.44662144780158997,0.7463586926460266,0.21115726232528687 +illusion_1L,target,126,37.8,1.190985083580017,0.3502121865749359,0.8689111471176147,0.6063328981399536,0.8128305673599243,0.2620805501937866 +illusion_1L,target,127,38.1,1.1122528314590454,0.4163934886455536,0.9087718725204468,0.6307086944580078,0.8775498270988464,0.3009300231933594 +illusion_1L,target,128,38.4,1.0527938604354858,0.42343252897262573,0.9429094195365906,0.6124186515808105,0.9381455779075623,0.3329068124294281 +illusion_1L,target,129,38.7,1.0010061264038086,0.4167042672634125,0.967120349407196,0.6058483123779297,0.9959906935691833,0.359634131193161 +illusion_1L,target,130,39.0,0.9490520358085632,0.407286673784256,0.9831319451332092,0.6163565516471863,1.0529497861862183,0.3829624056816101 +illusion_1L,target,131,39.3,0.8932129740715027,0.3895694613456726,0.9918696880340576,0.6405161619186401,1.1116538047790527,0.4041268527507782 +illusion_1L,target,132,39.6,0.8326722979545593,0.3525030314922333,0.990780770778656,0.667737603187561,1.1757534742355347,0.42337948083877563 +illusion_1L,target,133,39.9,0.7705161571502686,0.2841631770133972,0.9719707369804382,0.6637200713157654,1.2495447397232056,0.43925797939300537 +illusion_1L,target,134,40.2,0.7154383659362793,0.17870523035526276,0.9293712377548218,0.5639503002166748,1.335206151008606,0.44336599111557007 +illusion_1L,target,135,40.5,0.6811674237251282,0.045565005391836166,0.8758789896965027,0.32469436526298523,1.4143551588058472,0.39698678255081177 +illusion_1L,target,136,40.8,0.6825087070465088,-0.08620943874120712,0.8388721942901611,-0.011327746324241161,1.4242228269577026,0.2203911393880844 +illusion_1L,target,137,41.1,0.72335284948349,-0.18391042947769165,0.8330850601196289,-0.3418426513671875,1.3395473957061768,-0.06328630447387695 +illusion_1L,target,138,41.4,0.7864990830421448,-0.2441634088754654,0.8553180694580078,-0.5629898309707642,1.2296035289764404,-0.29409658908843994 +illusion_1L,target,139,41.7,0.8517223000526428,-0.28653231263160706,0.8927322626113892,-0.6318548321723938,1.139961838722229,-0.400789350271225 +illusion_1L,target,140,42.0,0.9132984280586243,-0.3210028409957886,0.9296832084655762,-0.6195732951164246,1.073835015296936,-0.42365261912345886 +illusion_1L,target,141,42.3,0.9723023772239685,-0.349550724029541,0.957962155342102,-0.6061895489692688,1.0206146240234375,-0.4194563925266266 +illusion_1L,target,142,42.6,1.030155897140503,-0.3740302622318268,0.9777498245239258,-0.6101316213607788,0.9701976776123047,-0.41129112243652344 +illusion_1L,target,143,42.9,1.0886138677597046,-0.39598333835601807,0.9901635646820068,-0.6294168829917908,0.9169593453407288,-0.3979972302913666 +illusion_1L,target,144,43.2,1.1504945755004883,-0.4160788357257843,0.9938875436782837,-0.6577434539794922,0.8584879636764526,-0.37003299593925476 +illusion_1L,target,145,43.5,1.2195689678192139,-0.43372318148612976,0.9827477931976318,-0.6724892258644104,0.7957956194877625,-0.3152170777320862 +illusion_1L,target,146,43.8,1.2999043464660645,-0.444616436958313,0.9483470916748047,-0.6189368963241577,0.7355372905731201,-0.22431963682174683 +illusion_1L,target,147,44.1,1.3858742713928223,-0.4265024960041046,0.8953016400337219,-0.43537306785583496,0.6904292106628418,-0.0998329296708107 +illusion_1L,target,148,44.4,1.4318047761917114,-0.3096255362033844,0.8487953543663025,-0.12767425179481506,0.6762075424194336,0.03664494678378105 +illusion_1L,target,149,44.7,1.3804429769515991,-0.05231216549873352,0.8308228850364685,0.21797722578048706,0.7029556035995483,0.1502559632062912 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_dtw_convergence.csv new file mode 100644 index 0000000..3838b6c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re100,ppo,60,24.0,30,0.9533606716586897,-2,0.9732892274856567,0.9712298114784061,0.8700293699900309,0.9594844505190849,0.9801887472470602,0.9659424232318997 +karman_re100,ppo,90,36.0,30,0.9503395599933961,-8,0.9707283139228821,0.9643168192977707,0.8779334783554077,0.9492076108853023,0.9799966871738434,0.9598544503251711 +karman_re100,ppo,120,48.0,30,0.9489126753010267,3,0.9755542854468028,0.9566944117347399,0.8815760274728139,0.9375528439568976,0.9786483546098074,0.9634501285851002 +karman_re100,ppo,150,60.0,30,0.9491035993230373,-2,0.9767768959204356,0.9604118217093249,0.8800973316033681,0.9383799659864356,0.9770958026250204,0.9618597780936398 +karman_re100,ppo,180,72.0,30,0.9527087628323999,-8,0.974417249361674,0.9649388860290249,0.8813832382361094,0.9503106519579887,0.9721105655034383,0.9730919859061639 +karman_re100,ppo,210,84.0,30,0.9548910247575905,3,0.9768962959448496,0.9654375397910674,0.8811004102230072,0.9578769966959954,0.9756015042463938,0.9724334016442299 +karman_re100,ppo,240,96.0,30,0.9549135749383519,-2,0.9744676192601521,0.9701022441809376,0.8798486649990082,0.9656020944317182,0.9746480921904246,0.9648127345678706 +karman_re100,ppo,270,108.0,30,0.9586718517911827,9,0.9748928586641947,0.9700618173927069,0.8826284786065419,0.9743628782530626,0.9758667488892873,0.974218328941303 +karman_re100,ppo,300,120.0,30,0.955193253337509,2,0.9742550055185953,0.9647910538439949,0.8822645008563995,0.9646554504831631,0.9807711879412333,0.9644223213816683 +karman_re100,ppo,330,132.0,30,0.954545590483273,-3,0.9745549778143565,0.9691698699258268,0.8782632370789846,0.9610394368569056,0.9848111550013224,0.9594348662222425 +karman_re100,ppo,360,144.0,30,0.9521438197336264,8,0.9711218039194743,0.9647448487579823,0.883095262447993,0.9503587478150924,0.9791686753431956,0.9643735801180203 +karman_re100,ppo,390,156.0,30,0.9494657277459434,2,0.9770237783590953,0.9561932019268473,0.8824943602085114,0.9370781629229896,0.978048195441564,0.965956667616653 +karman_re100,ppo,400,160.0,30,0.9469726328628086,-5,0.9739215950171153,0.9618603806011379,0.8764793833096822,0.9318430633788618,0.9766342361768087,0.9610971386932458 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_long.csv new file mode 100644 index 0000000..9c5561a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,ppo,0,0.0,velocity,upper_ux,1.1221808195114136 +karman_re100,ppo,0,0.0,velocity,upper_uy,-0.2775668501853943 +karman_re100,ppo,0,0.0,velocity,center_ux,0.968325138092041 +karman_re100,ppo,0,0.0,velocity,center_uy,-0.3421003222465515 +karman_re100,ppo,0,0.0,velocity,lower_ux,0.9555230736732483 +karman_re100,ppo,0,0.0,velocity,lower_uy,-0.25958603620529175 +karman_re100,ppo,1,0.4,velocity,upper_ux,1.1609275341033936 +karman_re100,ppo,1,0.4,velocity,upper_uy,-0.24108582735061646 +karman_re100,ppo,1,0.4,velocity,center_ux,0.9626631140708923 +karman_re100,ppo,1,0.4,velocity,center_uy,-0.26212456822395325 +karman_re100,ppo,1,0.4,velocity,lower_ux,0.9334735870361328 +karman_re100,ppo,1,0.4,velocity,lower_uy,-0.20085260272026062 +karman_re100,ppo,2,0.8,velocity,upper_ux,1.1884028911590576 +karman_re100,ppo,2,0.8,velocity,upper_uy,-0.1757454127073288 +karman_re100,ppo,2,0.8,velocity,center_ux,0.9505091309547424 +karman_re100,ppo,2,0.8,velocity,center_uy,-0.13433174788951874 +karman_re100,ppo,2,0.8,velocity,lower_ux,0.9224147200584412 +karman_re100,ppo,2,0.8,velocity,lower_uy,-0.11043497174978256 +karman_re100,ppo,3,1.2,velocity,upper_ux,1.1859668493270874 +karman_re100,ppo,3,1.2,velocity,upper_uy,-0.06433267891407013 +karman_re100,ppo,3,1.2,velocity,center_ux,0.946820855140686 +karman_re100,ppo,3,1.2,velocity,center_uy,0.01486993208527565 +karman_re100,ppo,3,1.2,velocity,lower_ux,0.9188573360443115 +karman_re100,ppo,3,1.2,velocity,lower_uy,0.00939389131963253 +karman_re100,ppo,4,1.6,velocity,upper_ux,1.1489367485046387 +karman_re100,ppo,4,1.6,velocity,upper_uy,0.06938014924526215 +karman_re100,ppo,4,1.6,velocity,center_ux,0.9506331086158752 +karman_re100,ppo,4,1.6,velocity,center_uy,0.1493581384420395 +karman_re100,ppo,4,1.6,velocity,lower_ux,0.9265084862709045 +karman_re100,ppo,4,1.6,velocity,lower_uy,0.12841880321502686 +karman_re100,ppo,5,2.0,velocity,upper_ux,1.109039068222046 +karman_re100,ppo,5,2.0,velocity,upper_uy,0.17078302800655365 +karman_re100,ppo,5,2.0,velocity,center_ux,0.9509088397026062 +karman_re100,ppo,5,2.0,velocity,center_uy,0.2662227749824524 +karman_re100,ppo,5,2.0,velocity,lower_ux,0.9540919661521912 +karman_re100,ppo,5,2.0,velocity,lower_uy,0.20802131295204163 +karman_re100,ppo,6,2.4,velocity,upper_ux,1.0750293731689453 +karman_re100,ppo,6,2.4,velocity,upper_uy,0.2354692667722702 +karman_re100,ppo,6,2.4,velocity,center_ux,0.9537332057952881 +karman_re100,ppo,6,2.4,velocity,center_uy,0.3441384434700012 +karman_re100,ppo,6,2.4,velocity,lower_ux,0.994773268699646 +karman_re100,ppo,6,2.4,velocity,lower_uy,0.25924092531204224 +karman_re100,ppo,7,2.8,velocity,upper_ux,1.0345432758331299 +karman_re100,ppo,7,2.8,velocity,upper_uy,0.27524346113204956 +karman_re100,ppo,7,2.8,velocity,center_ux,0.9600772261619568 +karman_re100,ppo,7,2.8,velocity,center_uy,0.3805633783340454 +karman_re100,ppo,7,2.8,velocity,lower_ux,1.0384167432785034 +karman_re100,ppo,7,2.8,velocity,lower_uy,0.293244868516922 +karman_re100,ppo,8,3.2,velocity,upper_ux,0.9935752153396606 +karman_re100,ppo,8,3.2,velocity,upper_uy,0.2844935357570648 +karman_re100,ppo,8,3.2,velocity,center_ux,0.9668765068054199 +karman_re100,ppo,8,3.2,velocity,center_uy,0.3803204596042633 +karman_re100,ppo,8,3.2,velocity,lower_ux,1.0812270641326904 +karman_re100,ppo,8,3.2,velocity,lower_uy,0.2973848283290863 +karman_re100,ppo,9,3.6,velocity,upper_ux,0.9600321054458618 +karman_re100,ppo,9,3.6,velocity,upper_uy,0.2600315809249878 +karman_re100,ppo,9,3.6,velocity,center_ux,0.9708088040351868 +karman_re100,ppo,9,3.6,velocity,center_uy,0.34135615825653076 +karman_re100,ppo,9,3.6,velocity,lower_ux,1.1218003034591675 +karman_re100,ppo,9,3.6,velocity,lower_uy,0.27625277638435364 +karman_re100,ppo,10,4.0,velocity,upper_ux,0.9369014501571655 +karman_re100,ppo,10,4.0,velocity,upper_uy,0.201909139752388 +karman_re100,ppo,10,4.0,velocity,center_ux,0.9642369747161865 +karman_re100,ppo,10,4.0,velocity,center_uy,0.2618521749973297 +karman_re100,ppo,10,4.0,velocity,lower_ux,1.1592795848846436 +karman_re100,ppo,10,4.0,velocity,lower_uy,0.24003353714942932 +karman_re100,ppo,11,4.4,velocity,upper_ux,0.9253370761871338 +karman_re100,ppo,11,4.4,velocity,upper_uy,0.1127798855304718 +karman_re100,ppo,11,4.4,velocity,center_ux,0.9515500068664551 +karman_re100,ppo,11,4.4,velocity,center_uy,0.13563261926174164 +karman_re100,ppo,11,4.4,velocity,lower_ux,1.1867728233337402 +karman_re100,ppo,11,4.4,velocity,lower_uy,0.17667239904403687 +karman_re100,ppo,12,4.8,velocity,upper_ux,0.9210066795349121 +karman_re100,ppo,12,4.8,velocity,upper_uy,-0.006155074108392 +karman_re100,ppo,12,4.8,velocity,center_ux,0.946747362613678 +karman_re100,ppo,12,4.8,velocity,center_uy,-0.012435534037649632 +karman_re100,ppo,12,4.8,velocity,lower_ux,1.1847747564315796 +karman_re100,ppo,12,4.8,velocity,lower_uy,0.06757558137178421 +karman_re100,ppo,13,5.2,velocity,upper_ux,0.9293668866157532 +karman_re100,ppo,13,5.2,velocity,upper_uy,-0.12488702684640884 +karman_re100,ppo,13,5.2,velocity,center_ux,0.950701117515564 +karman_re100,ppo,13,5.2,velocity,center_uy,-0.14694924652576447 +karman_re100,ppo,13,5.2,velocity,lower_ux,1.1493622064590454 +karman_re100,ppo,13,5.2,velocity,lower_uy,-0.06492132693529129 +karman_re100,ppo,14,5.6,velocity,upper_ux,0.9593513607978821 +karman_re100,ppo,14,5.6,velocity,upper_uy,-0.20445556938648224 +karman_re100,ppo,14,5.6,velocity,center_ux,0.952504575252533 +karman_re100,ppo,14,5.6,velocity,center_uy,-0.2645595073699951 +karman_re100,ppo,14,5.6,velocity,lower_ux,1.1113508939743042 +karman_re100,ppo,14,5.6,velocity,lower_uy,-0.16576999425888062 +karman_re100,ppo,15,6.0,velocity,upper_ux,1.0001647472381592 +karman_re100,ppo,15,6.0,velocity,upper_uy,-0.25564083456993103 +karman_re100,ppo,15,6.0,velocity,center_ux,0.9543347358703613 +karman_re100,ppo,15,6.0,velocity,center_uy,-0.34297576546669006 +karman_re100,ppo,15,6.0,velocity,lower_ux,1.0756381750106812 +karman_re100,ppo,15,6.0,velocity,lower_uy,-0.22929729521274567 +karman_re100,ppo,16,6.4,velocity,upper_ux,1.0430105924606323 +karman_re100,ppo,16,6.4,velocity,upper_uy,-0.2880675792694092 +karman_re100,ppo,16,6.4,velocity,center_ux,0.9582381248474121 +karman_re100,ppo,16,6.4,velocity,center_uy,-0.3787113130092621 +karman_re100,ppo,16,6.4,velocity,lower_ux,1.0317362546920776 +karman_re100,ppo,16,6.4,velocity,lower_uy,-0.2662351727485657 +karman_re100,ppo,17,6.8,velocity,upper_ux,1.0857540369033813 +karman_re100,ppo,17,6.8,velocity,upper_uy,-0.2899497151374817 +karman_re100,ppo,17,6.8,velocity,center_ux,0.962511420249939 +karman_re100,ppo,17,6.8,velocity,center_uy,-0.376791387796402 +karman_re100,ppo,17,6.8,velocity,lower_ux,0.9876169562339783 +karman_re100,ppo,17,6.8,velocity,lower_uy,-0.2719804048538208 +karman_re100,ppo,18,7.2,velocity,upper_ux,1.126776933670044 +karman_re100,ppo,18,7.2,velocity,upper_uy,-0.26548483967781067 +karman_re100,ppo,18,7.2,velocity,center_ux,0.9629527926445007 +karman_re100,ppo,18,7.2,velocity,center_uy,-0.3336813747882843 +karman_re100,ppo,18,7.2,velocity,lower_ux,0.9514338970184326 +karman_re100,ppo,18,7.2,velocity,lower_uy,-0.24201582372188568 +karman_re100,ppo,19,7.6,velocity,upper_ux,1.1665267944335938 +karman_re100,ppo,19,7.6,velocity,upper_uy,-0.22288309037685394 +karman_re100,ppo,19,7.6,velocity,center_ux,0.9546088576316833 +karman_re100,ppo,19,7.6,velocity,center_uy,-0.24709734320640564 +karman_re100,ppo,19,7.6,velocity,lower_ux,0.9293226003646851 +karman_re100,ppo,19,7.6,velocity,lower_uy,-0.17772863805294037 +karman_re100,ppo,20,8.0,velocity,upper_ux,1.1930928230285645 +karman_re100,ppo,20,8.0,velocity,upper_uy,-0.14409328997135162 +karman_re100,ppo,20,8.0,velocity,center_ux,0.9406798481941223 +karman_re100,ppo,20,8.0,velocity,center_uy,-0.11285874247550964 +karman_re100,ppo,20,8.0,velocity,lower_ux,0.9222328662872314 +karman_re100,ppo,20,8.0,velocity,lower_uy,-0.08354070782661438 +karman_re100,ppo,21,8.4,velocity,upper_ux,1.1911088228225708 +karman_re100,ppo,21,8.4,velocity,upper_uy,-0.024988293647766113 +karman_re100,ppo,21,8.4,velocity,center_ux,0.9278610348701477 +karman_re100,ppo,21,8.4,velocity,center_uy,0.04482884332537651 +karman_re100,ppo,21,8.4,velocity,lower_ux,0.9231095910072327 +karman_re100,ppo,21,8.4,velocity,lower_uy,0.03493823483586311 +karman_re100,ppo,22,8.8,velocity,upper_ux,1.173897624015808 +karman_re100,ppo,22,8.8,velocity,upper_uy,0.09331277012825012 +karman_re100,ppo,22,8.8,velocity,center_ux,0.921914279460907 +karman_re100,ppo,22,8.8,velocity,center_uy,0.1991565078496933 +karman_re100,ppo,22,8.8,velocity,lower_ux,0.9362664818763733 +karman_re100,ppo,22,8.8,velocity,lower_uy,0.1502203792333603 +karman_re100,ppo,23,9.2,velocity,upper_ux,1.1338610649108887 +karman_re100,ppo,23,9.2,velocity,upper_uy,0.20310483872890472 +karman_re100,ppo,23,9.2,velocity,center_ux,0.9261234998703003 +karman_re100,ppo,23,9.2,velocity,center_uy,0.3245168626308441 +karman_re100,ppo,23,9.2,velocity,lower_ux,0.9700968861579895 +karman_re100,ppo,23,9.2,velocity,lower_uy,0.229380801320076 +karman_re100,ppo,24,9.6,velocity,upper_ux,1.0694440603256226 +karman_re100,ppo,24,9.6,velocity,upper_uy,0.28450337052345276 +karman_re100,ppo,24,9.6,velocity,center_ux,0.9366271495819092 +karman_re100,ppo,24,9.6,velocity,center_uy,0.39898747205734253 +karman_re100,ppo,24,9.6,velocity,lower_ux,1.015733003616333 +karman_re100,ppo,24,9.6,velocity,lower_uy,0.2832278907299042 +karman_re100,ppo,25,10.0,velocity,upper_ux,1.006507396697998 +karman_re100,ppo,25,10.0,velocity,upper_uy,0.3133609890937805 +karman_re100,ppo,25,10.0,velocity,center_ux,0.9466990828514099 +karman_re100,ppo,25,10.0,velocity,center_uy,0.4301280975341797 +karman_re100,ppo,25,10.0,velocity,lower_ux,1.0656003952026367 +karman_re100,ppo,25,10.0,velocity,lower_uy,0.31589367985725403 +karman_re100,ppo,26,10.4,velocity,upper_ux,0.9513523578643799 +karman_re100,ppo,26,10.4,velocity,upper_uy,0.29489004611968994 +karman_re100,ppo,26,10.4,velocity,center_ux,0.9500963687896729 +karman_re100,ppo,26,10.4,velocity,center_uy,0.418335497379303 +karman_re100,ppo,26,10.4,velocity,lower_ux,1.1139287948608398 +karman_re100,ppo,26,10.4,velocity,lower_uy,0.31431707739830017 +karman_re100,ppo,27,10.8,velocity,upper_ux,0.9050264954566956 +karman_re100,ppo,27,10.8,velocity,upper_uy,0.23368823528289795 +karman_re100,ppo,27,10.8,velocity,center_ux,0.9418703317642212 +karman_re100,ppo,27,10.8,velocity,center_uy,0.3598025441169739 +karman_re100,ppo,27,10.8,velocity,lower_ux,1.1605435609817505 +karman_re100,ppo,27,10.8,velocity,lower_uy,0.28689083456993103 +karman_re100,ppo,28,11.2,velocity,upper_ux,0.8743091821670532 +karman_re100,ppo,28,11.2,velocity,upper_uy,0.1320253312587738 +karman_re100,ppo,28,11.2,velocity,center_ux,0.9196933507919312 +karman_re100,ppo,28,11.2,velocity,center_uy,0.2413150817155838 +karman_re100,ppo,28,11.2,velocity,lower_ux,1.201950192451477 +karman_re100,ppo,28,11.2,velocity,lower_uy,0.2270205318927765 +karman_re100,ppo,29,11.6,velocity,upper_ux,0.8660768866539001 +karman_re100,ppo,29,11.6,velocity,upper_uy,0.0038117978256195784 +karman_re100,ppo,29,11.6,velocity,center_ux,0.8902841210365295 +karman_re100,ppo,29,11.6,velocity,center_uy,0.043336182832717896 +karman_re100,ppo,29,11.6,velocity,lower_ux,1.2206029891967773 +karman_re100,ppo,29,11.6,velocity,lower_uy,0.10708996653556824 +karman_re100,ppo,30,12.0,velocity,upper_ux,0.883115291595459 +karman_re100,ppo,30,12.0,velocity,upper_uy,-0.1290997415781021 +karman_re100,ppo,30,12.0,velocity,center_ux,0.8773394227027893 +karman_re100,ppo,30,12.0,velocity,center_uy,-0.19922761619091034 +karman_re100,ppo,30,12.0,velocity,lower_ux,1.2009952068328857 +karman_re100,ppo,30,12.0,velocity,lower_uy,-0.06690509617328644 +karman_re100,ppo,31,12.4,velocity,upper_ux,0.9242303371429443 +karman_re100,ppo,31,12.4,velocity,upper_uy,-0.23588992655277252 +karman_re100,ppo,31,12.4,velocity,center_ux,0.8911238312721252 +karman_re100,ppo,31,12.4,velocity,center_uy,-0.3889042139053345 +karman_re100,ppo,31,12.4,velocity,lower_ux,1.1352405548095703 +karman_re100,ppo,31,12.4,velocity,lower_uy,-0.24161647260189056 +karman_re100,ppo,32,12.8,velocity,upper_ux,0.9818537831306458 +karman_re100,ppo,32,12.8,velocity,upper_uy,-0.3035837411880493 +karman_re100,ppo,32,12.8,velocity,center_ux,0.9149232506752014 +karman_re100,ppo,32,12.8,velocity,center_uy,-0.497252881526947 +karman_re100,ppo,32,12.8,velocity,lower_ux,1.0490529537200928 +karman_re100,ppo,32,12.8,velocity,lower_uy,-0.35819581151008606 +karman_re100,ppo,33,13.2,velocity,upper_ux,1.0462123155593872 +karman_re100,ppo,33,13.2,velocity,upper_uy,-0.3501460552215576 +karman_re100,ppo,33,13.2,velocity,center_ux,0.9390270709991455 +karman_re100,ppo,33,13.2,velocity,center_uy,-0.5534403324127197 +karman_re100,ppo,33,13.2,velocity,lower_ux,0.9652568101882935 +karman_re100,ppo,33,13.2,velocity,lower_uy,-0.4126656651496887 +karman_re100,ppo,34,13.6,velocity,upper_ux,1.11305570602417 +karman_re100,ppo,34,13.6,velocity,upper_uy,-0.36675217747688293 +karman_re100,ppo,34,13.6,velocity,center_ux,0.9612487554550171 +karman_re100,ppo,34,13.6,velocity,center_uy,-0.5765823125839233 +karman_re100,ppo,34,13.6,velocity,lower_ux,0.8881095051765442 +karman_re100,ppo,34,13.6,velocity,lower_uy,-0.41972291469573975 +karman_re100,ppo,35,14.0,velocity,upper_ux,1.1778541803359985 +karman_re100,ppo,35,14.0,velocity,upper_uy,-0.34105685353279114 +karman_re100,ppo,35,14.0,velocity,center_ux,0.9810420274734497 +karman_re100,ppo,35,14.0,velocity,center_uy,-0.5596259832382202 +karman_re100,ppo,35,14.0,velocity,lower_ux,0.8160797357559204 +karman_re100,ppo,35,14.0,velocity,lower_uy,-0.3814888298511505 +karman_re100,ppo,36,14.4,velocity,upper_ux,1.2335973978042603 +karman_re100,ppo,36,14.4,velocity,upper_uy,-0.2718859016895294 +karman_re100,ppo,36,14.4,velocity,center_ux,1.001196265220642 +karman_re100,ppo,36,14.4,velocity,center_uy,-0.48079434037208557 +karman_re100,ppo,36,14.4,velocity,lower_ux,0.7550086975097656 +karman_re100,ppo,36,14.4,velocity,lower_uy,-0.28922155499458313 +karman_re100,ppo,37,14.8,velocity,upper_ux,1.2538164854049683 +karman_re100,ppo,37,14.8,velocity,upper_uy,-0.14114782214164734 +karman_re100,ppo,37,14.8,velocity,center_ux,1.0259193181991577 +karman_re100,ppo,37,14.8,velocity,center_uy,-0.2481120079755783 +karman_re100,ppo,37,14.8,velocity,lower_ux,0.7161664366722107 +karman_re100,ppo,37,14.8,velocity,lower_uy,-0.14279982447624207 +karman_re100,ppo,38,15.2,velocity,upper_ux,1.2367461919784546 +karman_re100,ppo,38,15.2,velocity,upper_uy,0.015264247544109821 +karman_re100,ppo,38,15.2,velocity,center_ux,1.0407156944274902 +karman_re100,ppo,38,15.2,velocity,center_uy,0.11305659264326096 +karman_re100,ppo,38,15.2,velocity,lower_ux,0.7181071639060974 +karman_re100,ppo,38,15.2,velocity,lower_uy,0.03368387371301651 +karman_re100,ppo,39,15.6,velocity,upper_ux,1.2028169631958008 +karman_re100,ppo,39,15.6,velocity,upper_uy,0.14530932903289795 +karman_re100,ppo,39,15.6,velocity,center_ux,1.031173586845398 +karman_re100,ppo,39,15.6,velocity,center_uy,0.39072510600090027 +karman_re100,ppo,39,15.6,velocity,lower_ux,0.7713582515716553 +karman_re100,ppo,39,15.6,velocity,lower_uy,0.18366460502147675 +karman_re100,ppo,40,16.0,velocity,upper_ux,1.1488944292068481 +karman_re100,ppo,40,16.0,velocity,upper_uy,0.2536301910877228 +karman_re100,ppo,40,16.0,velocity,center_ux,1.0132536888122559 +karman_re100,ppo,40,16.0,velocity,center_uy,0.507432758808136 +karman_re100,ppo,40,16.0,velocity,lower_ux,0.8528342247009277 +karman_re100,ppo,40,16.0,velocity,lower_uy,0.28105172514915466 +karman_re100,ppo,41,16.4,velocity,upper_ux,1.0822992324829102 +karman_re100,ppo,41,16.4,velocity,upper_uy,0.33365780115127563 +karman_re100,ppo,41,16.4,velocity,center_ux,1.0049941539764404 +karman_re100,ppo,41,16.4,velocity,center_uy,0.5490180850028992 +karman_re100,ppo,41,16.4,velocity,lower_ux,0.9370275735855103 +karman_re100,ppo,41,16.4,velocity,lower_uy,0.3441171944141388 +karman_re100,ppo,42,16.8,velocity,upper_ux,1.0131572484970093 +karman_re100,ppo,42,16.8,velocity,upper_uy,0.37671589851379395 +karman_re100,ppo,42,16.8,velocity,center_ux,1.005192518234253 +karman_re100,ppo,42,16.8,velocity,center_uy,0.5766050219535828 +karman_re100,ppo,42,16.8,velocity,lower_ux,1.0191329717636108 +karman_re100,ppo,42,16.8,velocity,lower_uy,0.3852568566799164 +karman_re100,ppo,43,17.2,velocity,upper_ux,0.9411180019378662 +karman_re100,ppo,43,17.2,velocity,upper_uy,0.3843032419681549 +karman_re100,ppo,43,17.2,velocity,center_ux,1.005686640739441 +karman_re100,ppo,43,17.2,velocity,center_uy,0.5914084315299988 +karman_re100,ppo,43,17.2,velocity,lower_ux,1.096934199333191 +karman_re100,ppo,43,17.2,velocity,lower_uy,0.4044395387172699 +karman_re100,ppo,44,17.6,velocity,upper_ux,0.8697652220726013 +karman_re100,ppo,44,17.6,velocity,upper_uy,0.34978431463241577 +karman_re100,ppo,44,17.6,velocity,center_ux,1.002375841140747 +karman_re100,ppo,44,17.6,velocity,center_uy,0.5762168169021606 +karman_re100,ppo,44,17.6,velocity,lower_ux,1.1709868907928467 +karman_re100,ppo,44,17.6,velocity,lower_uy,0.38408637046813965 +karman_re100,ppo,45,18.0,velocity,upper_ux,0.8082303404808044 +karman_re100,ppo,45,18.0,velocity,upper_uy,0.265331506729126 +karman_re100,ppo,45,18.0,velocity,center_ux,0.9898779988288879 +karman_re100,ppo,45,18.0,velocity,center_uy,0.5096932053565979 +karman_re100,ppo,45,18.0,velocity,lower_ux,1.2417027950286865 +karman_re100,ppo,45,18.0,velocity,lower_uy,0.3217019736766815 +karman_re100,ppo,46,18.4,velocity,upper_ux,0.7676892280578613 +karman_re100,ppo,46,18.4,velocity,upper_uy,0.13223639130592346 +karman_re100,ppo,46,18.4,velocity,center_ux,0.9687197804450989 +karman_re100,ppo,46,18.4,velocity,center_uy,0.30648544430732727 +karman_re100,ppo,46,18.4,velocity,lower_ux,1.2892156839370728 +karman_re100,ppo,46,18.4,velocity,lower_uy,0.19819135963916779 +karman_re100,ppo,47,18.8,velocity,upper_ux,0.7641894817352295 +karman_re100,ppo,47,18.8,velocity,upper_uy,-0.026676878333091736 +karman_re100,ppo,47,18.8,velocity,center_ux,0.9624176621437073 +karman_re100,ppo,47,18.8,velocity,center_uy,-0.05472162365913391 +karman_re100,ppo,47,18.8,velocity,lower_ux,1.2969125509262085 +karman_re100,ppo,47,18.8,velocity,lower_uy,0.03120959922671318 +karman_re100,ppo,48,19.2,velocity,upper_ux,0.8048893213272095 +karman_re100,ppo,48,19.2,velocity,upper_uy,-0.1664014309644699 +karman_re100,ppo,48,19.2,velocity,center_ux,0.9729026556015015 +karman_re100,ppo,48,19.2,velocity,center_uy,-0.3580882251262665 +karman_re100,ppo,48,19.2,velocity,lower_ux,1.260298728942871 +karman_re100,ppo,48,19.2,velocity,lower_uy,-0.12625551223754883 +karman_re100,ppo,49,19.6,velocity,upper_ux,0.872072160243988 +karman_re100,ppo,49,19.6,velocity,upper_uy,-0.2671990990638733 +karman_re100,ppo,49,19.6,velocity,center_ux,0.9848314523696899 +karman_re100,ppo,49,19.6,velocity,center_uy,-0.4957282245159149 +karman_re100,ppo,49,19.6,velocity,lower_ux,1.1895641088485718 +karman_re100,ppo,49,19.6,velocity,lower_uy,-0.25064754486083984 +karman_re100,ppo,50,20.0,velocity,upper_ux,0.948062539100647 +karman_re100,ppo,50,20.0,velocity,upper_uy,-0.3349560797214508 +karman_re100,ppo,50,20.0,velocity,center_ux,0.9964417219161987 +karman_re100,ppo,50,20.0,velocity,center_uy,-0.5481659770011902 +karman_re100,ppo,50,20.0,velocity,lower_ux,1.1078318357467651 +karman_re100,ppo,50,20.0,velocity,lower_uy,-0.33565041422843933 +karman_re100,ppo,51,20.4,velocity,upper_ux,1.0266607999801636 +karman_re100,ppo,51,20.4,velocity,upper_uy,-0.3762904405593872 +karman_re100,ppo,51,20.4,velocity,center_ux,1.0083997249603271 +karman_re100,ppo,51,20.4,velocity,center_uy,-0.5786155462265015 +karman_re100,ppo,51,20.4,velocity,lower_ux,1.0261306762695312 +karman_re100,ppo,51,20.4,velocity,lower_uy,-0.38094425201416016 +karman_re100,ppo,52,20.8,velocity,upper_ux,1.1041003465652466 +karman_re100,ppo,52,20.8,velocity,upper_uy,-0.39308348298072815 +karman_re100,ppo,52,20.8,velocity,center_ux,1.0198664665222168 +karman_re100,ppo,52,20.8,velocity,center_uy,-0.591772735118866 +karman_re100,ppo,52,20.8,velocity,lower_ux,0.9459500312805176 +karman_re100,ppo,52,20.8,velocity,lower_uy,-0.38903573155403137 +karman_re100,ppo,53,21.2,velocity,upper_ux,1.1777390241622925 +karman_re100,ppo,53,21.2,velocity,upper_uy,-0.36892935633659363 +karman_re100,ppo,53,21.2,velocity,center_ux,1.0291857719421387 +karman_re100,ppo,53,21.2,velocity,center_uy,-0.5738896727561951 +karman_re100,ppo,53,21.2,velocity,lower_ux,0.8692434430122375 +karman_re100,ppo,53,21.2,velocity,lower_uy,-0.35390332341194153 +karman_re100,ppo,54,21.6,velocity,upper_ux,1.24271559715271 +karman_re100,ppo,54,21.6,velocity,upper_uy,-0.30152449011802673 +karman_re100,ppo,54,21.6,velocity,center_ux,1.0330531597137451 +karman_re100,ppo,54,21.6,velocity,center_uy,-0.5016672611236572 +karman_re100,ppo,54,21.6,velocity,lower_ux,0.8013703227043152 +karman_re100,ppo,54,21.6,velocity,lower_uy,-0.2660706639289856 +karman_re100,ppo,55,22.0,velocity,upper_ux,1.2775894403457642 +karman_re100,ppo,55,22.0,velocity,upper_uy,-0.1745155304670334 +karman_re100,ppo,55,22.0,velocity,center_ux,1.037319540977478 +karman_re100,ppo,55,22.0,velocity,center_uy,-0.28171485662460327 +karman_re100,ppo,55,22.0,velocity,lower_ux,0.7565983533859253 +karman_re100,ppo,55,22.0,velocity,lower_uy,-0.12750335037708282 +karman_re100,ppo,56,22.4,velocity,upper_ux,1.2683777809143066 +karman_re100,ppo,56,22.4,velocity,upper_uy,-0.008167557418346405 +karman_re100,ppo,56,22.4,velocity,center_ux,1.046846628189087 +karman_re100,ppo,56,22.4,velocity,center_uy,0.0889732614159584 +karman_re100,ppo,56,22.4,velocity,lower_ux,0.7564776539802551 +karman_re100,ppo,56,22.4,velocity,lower_uy,0.03493637964129448 +karman_re100,ppo,57,22.8,velocity,upper_ux,1.2338802814483643 +karman_re100,ppo,57,22.8,velocity,upper_uy,0.13103912770748138 +karman_re100,ppo,57,22.8,velocity,center_ux,1.047311544418335 +karman_re100,ppo,57,22.8,velocity,center_uy,0.3662455379962921 +karman_re100,ppo,57,22.8,velocity,lower_ux,0.8071048855781555 +karman_re100,ppo,57,22.8,velocity,lower_uy,0.16760478913784027 +karman_re100,ppo,58,23.2,velocity,upper_ux,1.1841233968734741 +karman_re100,ppo,58,23.2,velocity,upper_uy,0.23447193205356598 +karman_re100,ppo,58,23.2,velocity,center_ux,1.0403141975402832 +karman_re100,ppo,58,23.2,velocity,center_uy,0.4667644798755646 +karman_re100,ppo,58,23.2,velocity,lower_ux,0.880841076374054 +karman_re100,ppo,58,23.2,velocity,lower_uy,0.26038452982902527 +karman_re100,ppo,59,23.6,velocity,upper_ux,1.1225125789642334 +karman_re100,ppo,59,23.6,velocity,upper_uy,0.3076114356517792 +karman_re100,ppo,59,23.6,velocity,center_ux,1.0376768112182617 +karman_re100,ppo,59,23.6,velocity,center_uy,0.5018594264984131 +karman_re100,ppo,59,23.6,velocity,lower_ux,0.955666720867157 +karman_re100,ppo,59,23.6,velocity,lower_uy,0.3239964544773102 +karman_re100,ppo,60,24.0,velocity,upper_ux,1.0555734634399414 +karman_re100,ppo,60,24.0,velocity,upper_uy,0.3459978401660919 +karman_re100,ppo,60,24.0,velocity,center_ux,1.0382670164108276 +karman_re100,ppo,60,24.0,velocity,center_uy,0.5248425006866455 +karman_re100,ppo,60,24.0,velocity,lower_ux,1.0281027555465698 +karman_re100,ppo,60,24.0,velocity,lower_uy,0.36232659220695496 +karman_re100,ppo,61,24.4,velocity,upper_ux,0.9874475598335266 +karman_re100,ppo,61,24.4,velocity,upper_uy,0.3496406674385071 +karman_re100,ppo,61,24.4,velocity,center_ux,1.0396255254745483 +karman_re100,ppo,61,24.4,velocity,center_uy,0.5311311483383179 +karman_re100,ppo,61,24.4,velocity,lower_ux,1.09757399559021 +karman_re100,ppo,61,24.4,velocity,lower_uy,0.38093703985214233 +karman_re100,ppo,62,24.8,velocity,upper_ux,0.921435534954071 +karman_re100,ppo,62,24.8,velocity,upper_uy,0.31206297874450684 +karman_re100,ppo,62,24.8,velocity,center_ux,1.0377395153045654 +karman_re100,ppo,62,24.8,velocity,center_uy,0.5036758184432983 +karman_re100,ppo,62,24.8,velocity,lower_ux,1.1626545190811157 +karman_re100,ppo,62,24.8,velocity,lower_uy,0.3642210066318512 +karman_re100,ppo,63,25.2,velocity,upper_ux,0.864016056060791 +karman_re100,ppo,63,25.2,velocity,upper_uy,0.22760938107967377 +karman_re100,ppo,63,25.2,velocity,center_ux,1.025525450706482 +karman_re100,ppo,63,25.2,velocity,center_uy,0.4291253387928009 +karman_re100,ppo,63,25.2,velocity,lower_ux,1.224159598350525 +karman_re100,ppo,63,25.2,velocity,lower_uy,0.31344103813171387 +karman_re100,ppo,64,25.6,velocity,upper_ux,0.8255468606948853 +karman_re100,ppo,64,25.6,velocity,upper_uy,0.10044200718402863 +karman_re100,ppo,64,25.6,velocity,center_ux,0.9995993971824646 +karman_re100,ppo,64,25.6,velocity,center_uy,0.2628540098667145 +karman_re100,ppo,64,25.6,velocity,lower_ux,1.2712751626968384 +karman_re100,ppo,64,25.6,velocity,lower_uy,0.21515914797782898 +karman_re100,ppo,65,26.0,velocity,upper_ux,0.8204312920570374 +karman_re100,ppo,65,26.0,velocity,upper_uy,-0.04121094197034836 +karman_re100,ppo,65,26.0,velocity,center_ux,0.9754090309143066 +karman_re100,ppo,65,26.0,velocity,center_uy,-0.024624209851026535 +karman_re100,ppo,65,26.0,velocity,lower_ux,1.2809240818023682 +karman_re100,ppo,65,26.0,velocity,lower_uy,0.060023244470357895 +karman_re100,ppo,66,26.4,velocity,upper_ux,0.8529202938079834 +karman_re100,ppo,66,26.4,velocity,upper_uy,-0.16331438720226288 +karman_re100,ppo,66,26.4,velocity,center_ux,0.973304271697998 +karman_re100,ppo,66,26.4,velocity,center_uy,-0.2888476550579071 +karman_re100,ppo,66,26.4,velocity,lower_ux,1.2488644123077393 +karman_re100,ppo,66,26.4,velocity,lower_uy,-0.10353024303913116 +karman_re100,ppo,67,26.8,velocity,upper_ux,0.9068898558616638 +karman_re100,ppo,67,26.8,velocity,upper_uy,-0.26014140248298645 +karman_re100,ppo,67,26.8,velocity,center_ux,0.9836973547935486 +karman_re100,ppo,67,26.8,velocity,center_uy,-0.4264436960220337 +karman_re100,ppo,67,26.8,velocity,lower_ux,1.185302495956421 +karman_re100,ppo,67,26.8,velocity,lower_uy,-0.23249921202659607 +karman_re100,ppo,68,27.2,velocity,upper_ux,0.9720167517662048 +karman_re100,ppo,68,27.2,velocity,upper_uy,-0.32263481616973877 +karman_re100,ppo,68,27.2,velocity,center_ux,0.9952122569084167 +karman_re100,ppo,68,27.2,velocity,center_uy,-0.4939011335372925 +karman_re100,ppo,68,27.2,velocity,lower_ux,1.1102465391159058 +karman_re100,ppo,68,27.2,velocity,lower_uy,-0.31625840067863464 +karman_re100,ppo,69,27.6,velocity,upper_ux,1.0416005849838257 +karman_re100,ppo,69,27.6,velocity,upper_uy,-0.36254775524139404 +karman_re100,ppo,69,27.6,velocity,center_ux,1.0059387683868408 +karman_re100,ppo,69,27.6,velocity,center_uy,-0.5309474468231201 +karman_re100,ppo,69,27.6,velocity,lower_ux,1.0355812311172485 +karman_re100,ppo,69,27.6,velocity,lower_uy,-0.3573630154132843 +karman_re100,ppo,70,28.0,velocity,upper_ux,1.11104416847229 +karman_re100,ppo,70,28.0,velocity,upper_uy,-0.38161835074424744 +karman_re100,ppo,70,28.0,velocity,center_ux,1.0139557123184204 +karman_re100,ppo,70,28.0,velocity,center_uy,-0.5463153719902039 +karman_re100,ppo,70,28.0,velocity,lower_ux,0.9624186158180237 +karman_re100,ppo,70,28.0,velocity,lower_uy,-0.3619811236858368 +karman_re100,ppo,71,28.4,velocity,upper_ux,1.1765236854553223 +karman_re100,ppo,71,28.4,velocity,upper_uy,-0.36303672194480896 +karman_re100,ppo,71,28.4,velocity,center_ux,1.0154091119766235 +karman_re100,ppo,71,28.4,velocity,center_uy,-0.5281372666358948 +karman_re100,ppo,71,28.4,velocity,lower_ux,0.8905600905418396 +karman_re100,ppo,71,28.4,velocity,lower_uy,-0.327269047498703 +karman_re100,ppo,72,28.8,velocity,upper_ux,1.2387287616729736 +karman_re100,ppo,72,28.8,velocity,upper_uy,-0.3061211109161377 +karman_re100,ppo,72,28.8,velocity,center_ux,1.0066702365875244 +karman_re100,ppo,72,28.8,velocity,center_uy,-0.4612179696559906 +karman_re100,ppo,72,28.8,velocity,lower_ux,0.8284819722175598 +karman_re100,ppo,72,28.8,velocity,lower_uy,-0.24546188116073608 +karman_re100,ppo,73,29.2,velocity,upper_ux,1.280838131904602 +karman_re100,ppo,73,29.2,velocity,upper_uy,-0.1920640915632248 +karman_re100,ppo,73,29.2,velocity,center_ux,0.9894024133682251 +karman_re100,ppo,73,29.2,velocity,center_uy,-0.2829233705997467 +karman_re100,ppo,73,29.2,velocity,lower_ux,0.7887971997261047 +karman_re100,ppo,73,29.2,velocity,lower_uy,-0.11957153677940369 +karman_re100,ppo,74,29.6,velocity,upper_ux,1.2816048860549927 +karman_re100,ppo,74,29.6,velocity,upper_uy,-0.02573566511273384 +karman_re100,ppo,74,29.6,velocity,center_ux,0.9824178814888 +karman_re100,ppo,74,29.6,velocity,center_uy,0.04520867019891739 +karman_re100,ppo,74,29.6,velocity,lower_ux,0.7873403429985046 +karman_re100,ppo,74,29.6,velocity,lower_uy,0.025916116312146187 +karman_re100,ppo,75,30.0,velocity,upper_ux,1.2474417686462402 +karman_re100,ppo,75,30.0,velocity,upper_uy,0.12804843485355377 +karman_re100,ppo,75,30.0,velocity,center_ux,0.9916158318519592 +karman_re100,ppo,75,30.0,velocity,center_uy,0.32969117164611816 +karman_re100,ppo,75,30.0,velocity,lower_ux,0.8291870951652527 +karman_re100,ppo,75,30.0,velocity,lower_uy,0.15030920505523682 +karman_re100,ppo,76,30.4,velocity,upper_ux,1.1898314952850342 +karman_re100,ppo,76,30.4,velocity,upper_uy,0.24189653992652893 +karman_re100,ppo,76,30.4,velocity,center_ux,1.0018091201782227 +karman_re100,ppo,76,30.4,velocity,center_uy,0.4524269998073578 +karman_re100,ppo,76,30.4,velocity,lower_ux,0.8907508254051208 +karman_re100,ppo,76,30.4,velocity,lower_uy,0.24706296622753143 +karman_re100,ppo,77,30.8,velocity,upper_ux,1.1214220523834229 +karman_re100,ppo,77,30.8,velocity,upper_uy,0.3185102045536041 +karman_re100,ppo,77,30.8,velocity,center_ux,1.0105640888214111 +karman_re100,ppo,77,30.8,velocity,center_uy,0.49997782707214355 +karman_re100,ppo,77,30.8,velocity,lower_ux,0.9581775069236755 +karman_re100,ppo,77,30.8,velocity,lower_uy,0.313668817281723 +karman_re100,ppo,78,31.2,velocity,upper_ux,1.0518877506256104 +karman_re100,ppo,78,31.2,velocity,upper_uy,0.3578413724899292 +karman_re100,ppo,78,31.2,velocity,center_ux,1.0192621946334839 +karman_re100,ppo,78,31.2,velocity,center_uy,0.5280618667602539 +karman_re100,ppo,78,31.2,velocity,lower_ux,1.0286667346954346 +karman_re100,ppo,78,31.2,velocity,lower_uy,0.35508209466934204 +karman_re100,ppo,79,31.6,velocity,upper_ux,0.9823290109634399 +karman_re100,ppo,79,31.6,velocity,upper_uy,0.3622380495071411 +karman_re100,ppo,79,31.6,velocity,center_ux,1.0261024236679077 +karman_re100,ppo,79,31.6,velocity,center_uy,0.538366973400116 +karman_re100,ppo,79,31.6,velocity,lower_ux,1.097887396812439 +karman_re100,ppo,79,31.6,velocity,lower_uy,0.37673327326774597 +karman_re100,ppo,80,32.0,velocity,upper_ux,0.9149692058563232 +karman_re100,ppo,80,32.0,velocity,upper_uy,0.32595157623291016 +karman_re100,ppo,80,32.0,velocity,center_ux,1.0287131071090698 +karman_re100,ppo,80,32.0,velocity,center_uy,0.5147768259048462 +karman_re100,ppo,80,32.0,velocity,lower_ux,1.1635421514511108 +karman_re100,ppo,80,32.0,velocity,lower_uy,0.36211085319519043 +karman_re100,ppo,81,32.4,velocity,upper_ux,0.8560594320297241 +karman_re100,ppo,81,32.4,velocity,upper_uy,0.24187619984149933 +karman_re100,ppo,81,32.4,velocity,center_ux,1.0210856199264526 +karman_re100,ppo,81,32.4,velocity,center_uy,0.44384992122650146 +karman_re100,ppo,81,32.4,velocity,lower_ux,1.2254691123962402 +karman_re100,ppo,81,32.4,velocity,lower_uy,0.3119667172431946 +karman_re100,ppo,82,32.8,velocity,upper_ux,0.8144610524177551 +karman_re100,ppo,82,32.8,velocity,upper_uy,0.11245878040790558 +karman_re100,ppo,82,32.8,velocity,center_ux,0.9986781477928162 +karman_re100,ppo,82,32.8,velocity,center_uy,0.2772793471813202 +karman_re100,ppo,82,32.8,velocity,lower_ux,1.2698454856872559 +karman_re100,ppo,82,32.8,velocity,lower_uy,0.2132868766784668 +karman_re100,ppo,83,33.2,velocity,upper_ux,0.8072845339775085 +karman_re100,ppo,83,33.2,velocity,upper_uy,-0.036022789776325226 +karman_re100,ppo,83,33.2,velocity,center_ux,0.9781791567802429 +karman_re100,ppo,83,33.2,velocity,center_uy,-0.02163029834628105 +karman_re100,ppo,83,33.2,velocity,lower_ux,1.276672124862671 +karman_re100,ppo,83,33.2,velocity,lower_uy,0.05939444527029991 +karman_re100,ppo,84,33.6,velocity,upper_ux,0.841550886631012 +karman_re100,ppo,84,33.6,velocity,upper_uy,-0.16418831050395966 +karman_re100,ppo,84,33.6,velocity,center_ux,0.9762567281723022 +karman_re100,ppo,84,33.6,velocity,center_uy,-0.29788798093795776 +karman_re100,ppo,84,33.6,velocity,lower_ux,1.245250940322876 +karman_re100,ppo,84,33.6,velocity,lower_uy,-0.10067190229892731 +karman_re100,ppo,85,34.0,velocity,upper_ux,0.8990736603736877 +karman_re100,ppo,85,34.0,velocity,upper_uy,-0.2624623775482178 +karman_re100,ppo,85,34.0,velocity,center_ux,0.9836412072181702 +karman_re100,ppo,85,34.0,velocity,center_uy,-0.43978169560432434 +karman_re100,ppo,85,34.0,velocity,lower_ux,1.1817011833190918 +karman_re100,ppo,85,34.0,velocity,lower_uy,-0.22989524900913239 +karman_re100,ppo,86,34.4,velocity,upper_ux,0.9678401350975037 +karman_re100,ppo,86,34.4,velocity,upper_uy,-0.32616284489631653 +karman_re100,ppo,86,34.4,velocity,center_ux,0.9939792156219482 +karman_re100,ppo,86,34.4,velocity,center_uy,-0.5069012641906738 +karman_re100,ppo,86,34.4,velocity,lower_ux,1.1051079034805298 +karman_re100,ppo,86,34.4,velocity,lower_uy,-0.3173103630542755 +karman_re100,ppo,87,34.8,velocity,upper_ux,1.0397213697433472 +karman_re100,ppo,87,34.8,velocity,upper_uy,-0.36649376153945923 +karman_re100,ppo,87,34.8,velocity,center_ux,1.0039725303649902 +karman_re100,ppo,87,34.8,velocity,center_uy,-0.544675350189209 +karman_re100,ppo,87,34.8,velocity,lower_ux,1.0271517038345337 +karman_re100,ppo,87,34.8,velocity,lower_uy,-0.36212679743766785 +karman_re100,ppo,88,35.2,velocity,upper_ux,1.1104165315628052 +karman_re100,ppo,88,35.2,velocity,upper_uy,-0.3858201503753662 +karman_re100,ppo,88,35.2,velocity,center_ux,1.0113943815231323 +karman_re100,ppo,88,35.2,velocity,center_uy,-0.562567949295044 +karman_re100,ppo,88,35.2,velocity,lower_ux,0.9497511982917786 +karman_re100,ppo,88,35.2,velocity,lower_uy,-0.369939386844635 +karman_re100,ppo,89,35.6,velocity,upper_ux,1.1787269115447998 +karman_re100,ppo,89,35.6,velocity,upper_uy,-0.3664895296096802 +karman_re100,ppo,89,35.6,velocity,center_ux,1.0152995586395264 +karman_re100,ppo,89,35.6,velocity,center_uy,-0.5482302308082581 +karman_re100,ppo,89,35.6,velocity,lower_ux,0.8754162788391113 +karman_re100,ppo,89,35.6,velocity,lower_uy,-0.3377072513103485 +karman_re100,ppo,90,36.0,velocity,upper_ux,1.2427595853805542 +karman_re100,ppo,90,36.0,velocity,upper_uy,-0.30678030848503113 +karman_re100,ppo,90,36.0,velocity,center_ux,1.011570930480957 +karman_re100,ppo,90,36.0,velocity,center_uy,-0.4849572777748108 +karman_re100,ppo,90,36.0,velocity,lower_ux,0.8109076023101807 +karman_re100,ppo,90,36.0,velocity,lower_uy,-0.25684094429016113 +karman_re100,ppo,91,36.4,velocity,upper_ux,1.2831616401672363 +karman_re100,ppo,91,36.4,velocity,upper_uy,-0.188477024435997 +karman_re100,ppo,91,36.4,velocity,center_ux,1.0034360885620117 +karman_re100,ppo,91,36.4,velocity,center_uy,-0.29644691944122314 +karman_re100,ppo,91,36.4,velocity,lower_ux,0.7690694332122803 +karman_re100,ppo,91,36.4,velocity,lower_uy,-0.12886732816696167 +karman_re100,ppo,92,36.8,velocity,upper_ux,1.2796785831451416 +karman_re100,ppo,92,36.8,velocity,upper_uy,-0.021385712549090385 +karman_re100,ppo,92,36.8,velocity,center_ux,1.0050420761108398 +karman_re100,ppo,92,36.8,velocity,center_uy,0.053120627999305725 +karman_re100,ppo,92,36.8,velocity,lower_ux,0.7674500346183777 +karman_re100,ppo,92,36.8,velocity,lower_uy,0.02254124917089939 +karman_re100,ppo,93,37.2,velocity,upper_ux,1.2435866594314575 +karman_re100,ppo,93,37.2,velocity,upper_uy,0.12677618861198425 +karman_re100,ppo,93,37.2,velocity,center_ux,1.0112613439559937 +karman_re100,ppo,93,37.2,velocity,center_uy,0.345859169960022 +karman_re100,ppo,93,37.2,velocity,lower_ux,0.8116027116775513 +karman_re100,ppo,93,37.2,velocity,lower_uy,0.1512327939271927 +karman_re100,ppo,94,37.6,velocity,upper_ux,1.1884976625442505 +karman_re100,ppo,94,37.6,velocity,upper_uy,0.2363641858100891 +karman_re100,ppo,94,37.6,velocity,center_ux,1.0139086246490479 +karman_re100,ppo,94,37.6,velocity,center_uy,0.46414679288864136 +karman_re100,ppo,94,37.6,velocity,lower_ux,0.8785920739173889 +karman_re100,ppo,94,37.6,velocity,lower_uy,0.24678392708301544 +karman_re100,ppo,95,38.0,velocity,upper_ux,1.1229933500289917 +karman_re100,ppo,95,38.0,velocity,upper_uy,0.31329047679901123 +karman_re100,ppo,95,38.0,velocity,center_ux,1.0184212923049927 +karman_re100,ppo,95,38.0,velocity,center_uy,0.5052695274353027 +karman_re100,ppo,95,38.0,velocity,lower_ux,0.9505631923675537 +karman_re100,ppo,95,38.0,velocity,lower_uy,0.31425750255584717 +karman_re100,ppo,96,38.4,velocity,upper_ux,1.0543131828308105 +karman_re100,ppo,96,38.4,velocity,upper_uy,0.354771226644516 +karman_re100,ppo,96,38.4,velocity,center_ux,1.0247182846069336 +karman_re100,ppo,96,38.4,velocity,center_uy,0.5314995050430298 +karman_re100,ppo,96,38.4,velocity,lower_ux,1.0236698389053345 +karman_re100,ppo,96,38.4,velocity,lower_uy,0.3561161160469055 +karman_re100,ppo,97,38.8,velocity,upper_ux,0.9850994944572449 +karman_re100,ppo,97,38.8,velocity,upper_uy,0.36163973808288574 +karman_re100,ppo,97,38.8,velocity,center_ux,1.0307624340057373 +karman_re100,ppo,97,38.8,velocity,center_uy,0.5425782799720764 +karman_re100,ppo,97,38.8,velocity,lower_ux,1.0953046083450317 +karman_re100,ppo,97,38.8,velocity,lower_uy,0.37870553135871887 +karman_re100,ppo,98,39.2,velocity,upper_ux,0.9166499972343445 +karman_re100,ppo,98,39.2,velocity,upper_uy,0.3280523419380188 +karman_re100,ppo,98,39.2,velocity,center_ux,1.0325376987457275 +karman_re100,ppo,98,39.2,velocity,center_uy,0.5213028192520142 +karman_re100,ppo,98,39.2,velocity,lower_ux,1.1622473001480103 +karman_re100,ppo,98,39.2,velocity,lower_uy,0.3657480478286743 +karman_re100,ppo,99,39.6,velocity,upper_ux,0.8550847768783569 +karman_re100,ppo,99,39.6,velocity,upper_uy,0.24661250412464142 +karman_re100,ppo,99,39.6,velocity,center_ux,1.0236424207687378 +karman_re100,ppo,99,39.6,velocity,center_uy,0.45394080877304077 +karman_re100,ppo,99,39.6,velocity,lower_ux,1.2240203619003296 +karman_re100,ppo,99,39.6,velocity,lower_uy,0.3166182339191437 +karman_re100,ppo,100,40.0,velocity,upper_ux,0.8119402527809143 +karman_re100,ppo,100,40.0,velocity,upper_uy,0.11907727271318436 +karman_re100,ppo,100,40.0,velocity,center_ux,1.001855492591858 +karman_re100,ppo,100,40.0,velocity,center_uy,0.2916162312030792 +karman_re100,ppo,100,40.0,velocity,lower_ux,1.2704116106033325 +karman_re100,ppo,100,40.0,velocity,lower_uy,0.21981659531593323 +karman_re100,ppo,101,40.4,velocity,upper_ux,0.8032203912734985 +karman_re100,ppo,101,40.4,velocity,upper_uy,-0.02977384254336357 +karman_re100,ppo,101,40.4,velocity,center_ux,0.9821760654449463 +karman_re100,ppo,101,40.4,velocity,center_uy,-0.008098271675407887 +karman_re100,ppo,101,40.4,velocity,lower_ux,1.2796458005905151 +karman_re100,ppo,101,40.4,velocity,lower_uy,0.06716904789209366 +karman_re100,ppo,102,40.8,velocity,upper_ux,0.8367658257484436 +karman_re100,ppo,102,40.8,velocity,upper_uy,-0.15885046124458313 +karman_re100,ppo,102,40.8,velocity,center_ux,0.9803518056869507 +karman_re100,ppo,102,40.8,velocity,center_uy,-0.2905227541923523 +karman_re100,ppo,102,40.8,velocity,lower_ux,1.2499924898147583 +karman_re100,ppo,102,40.8,velocity,lower_uy,-0.09278728812932968 +karman_re100,ppo,103,41.2,velocity,upper_ux,0.8948420882225037 +karman_re100,ppo,103,41.2,velocity,upper_uy,-0.25808194279670715 +karman_re100,ppo,103,41.2,velocity,center_ux,0.9874913096427917 +karman_re100,ppo,103,41.2,velocity,center_uy,-0.4355992078781128 +karman_re100,ppo,103,41.2,velocity,lower_ux,1.1883944272994995 +karman_re100,ppo,103,41.2,velocity,lower_uy,-0.22252143919467926 +karman_re100,ppo,104,41.6,velocity,upper_ux,0.9624831676483154 +karman_re100,ppo,104,41.6,velocity,upper_uy,-0.32371994853019714 +karman_re100,ppo,104,41.6,velocity,center_ux,0.9959595203399658 +karman_re100,ppo,104,41.6,velocity,center_uy,-0.503376841545105 +karman_re100,ppo,104,41.6,velocity,lower_ux,1.1114754676818848 +karman_re100,ppo,104,41.6,velocity,lower_uy,-0.3116881251335144 +karman_re100,ppo,105,42.0,velocity,upper_ux,1.033631443977356 +karman_re100,ppo,105,42.0,velocity,upper_uy,-0.36484789848327637 +karman_re100,ppo,105,42.0,velocity,center_ux,1.0045830011367798 +karman_re100,ppo,105,42.0,velocity,center_uy,-0.5416752696037292 +karman_re100,ppo,105,42.0,velocity,lower_ux,1.0330866575241089 +karman_re100,ppo,105,42.0,velocity,lower_uy,-0.35870134830474854 +karman_re100,ppo,106,42.4,velocity,upper_ux,1.1052594184875488 +karman_re100,ppo,106,42.4,velocity,upper_uy,-0.3863050043582916 +karman_re100,ppo,106,42.4,velocity,center_ux,1.0124107599258423 +karman_re100,ppo,106,42.4,velocity,center_uy,-0.5610021352767944 +karman_re100,ppo,106,42.4,velocity,lower_ux,0.9567188024520874 +karman_re100,ppo,106,42.4,velocity,lower_uy,-0.3689505457878113 +karman_re100,ppo,107,42.8,velocity,upper_ux,1.1741501092910767 +karman_re100,ppo,107,42.8,velocity,upper_uy,-0.3703283667564392 +karman_re100,ppo,107,42.8,velocity,center_ux,1.0163668394088745 +karman_re100,ppo,107,42.8,velocity,center_uy,-0.5492897629737854 +karman_re100,ppo,107,42.8,velocity,lower_ux,0.8825494647026062 +karman_re100,ppo,107,42.8,velocity,lower_uy,-0.34010612964630127 +karman_re100,ppo,108,43.2,velocity,upper_ux,1.2396305799484253 +karman_re100,ppo,108,43.2,velocity,upper_uy,-0.31437036395072937 +karman_re100,ppo,108,43.2,velocity,center_ux,1.0127516984939575 +karman_re100,ppo,108,43.2,velocity,center_uy,-0.49130547046661377 +karman_re100,ppo,108,43.2,velocity,lower_ux,0.8176670670509338 +karman_re100,ppo,108,43.2,velocity,lower_uy,-0.26334917545318604 +karman_re100,ppo,109,43.6,velocity,upper_ux,1.2835404872894287 +karman_re100,ppo,109,43.6,velocity,upper_uy,-0.20142251253128052 +karman_re100,ppo,109,43.6,velocity,center_ux,1.0029473304748535 +karman_re100,ppo,109,43.6,velocity,center_uy,-0.3178935945034027 +karman_re100,ppo,109,43.6,velocity,lower_ux,0.7735916972160339 +karman_re100,ppo,109,43.6,velocity,lower_uy,-0.13912765681743622 +karman_re100,ppo,110,44.0,velocity,upper_ux,1.2822078466415405 +karman_re100,ppo,110,44.0,velocity,upper_uy,-0.03493160754442215 +karman_re100,ppo,110,44.0,velocity,center_ux,1.001388430595398 +karman_re100,ppo,110,44.0,velocity,center_uy,0.022744564339518547 +karman_re100,ppo,110,44.0,velocity,lower_ux,0.7669399976730347 +karman_re100,ppo,110,44.0,velocity,lower_uy,0.011034514755010605 +karman_re100,ppo,111,44.4,velocity,upper_ux,1.2479605674743652 +karman_re100,ppo,111,44.4,velocity,upper_uy,0.11679001897573471 +karman_re100,ppo,111,44.4,velocity,center_ux,1.0087202787399292 +karman_re100,ppo,111,44.4,velocity,center_uy,0.32742103934288025 +karman_re100,ppo,111,44.4,velocity,lower_ux,0.8077346682548523 +karman_re100,ppo,111,44.4,velocity,lower_uy,0.1415087729692459 +karman_re100,ppo,112,44.8,velocity,upper_ux,1.1949352025985718 +karman_re100,ppo,112,44.8,velocity,upper_uy,0.22853383421897888 +karman_re100,ppo,112,44.8,velocity,center_ux,1.0135371685028076 +karman_re100,ppo,112,44.8,velocity,center_uy,0.45707452297210693 +karman_re100,ppo,112,44.8,velocity,lower_ux,0.8741176128387451 +karman_re100,ppo,112,44.8,velocity,lower_uy,0.23873350024223328 +karman_re100,ppo,113,45.2,velocity,upper_ux,1.1305606365203857 +karman_re100,ppo,113,45.2,velocity,upper_uy,0.30757513642311096 +karman_re100,ppo,113,45.2,velocity,center_ux,1.0188543796539307 +karman_re100,ppo,113,45.2,velocity,center_uy,0.5003917217254639 +karman_re100,ppo,113,45.2,velocity,lower_ux,0.9456230998039246 +karman_re100,ppo,113,45.2,velocity,lower_uy,0.3086036145687103 +karman_re100,ppo,114,45.6,velocity,upper_ux,1.0627974271774292 +karman_re100,ppo,114,45.6,velocity,upper_uy,0.35149338841438293 +karman_re100,ppo,114,45.6,velocity,center_ux,1.025968074798584 +karman_re100,ppo,114,45.6,velocity,center_uy,0.5271864533424377 +karman_re100,ppo,114,45.6,velocity,lower_ux,1.0189013481140137 +karman_re100,ppo,114,45.6,velocity,lower_uy,0.3518511950969696 +karman_re100,ppo,115,46.0,velocity,upper_ux,0.9930532574653625 +karman_re100,ppo,115,46.0,velocity,upper_uy,0.3609122931957245 +karman_re100,ppo,115,46.0,velocity,center_ux,1.0314934253692627 +karman_re100,ppo,115,46.0,velocity,center_uy,0.5396860241889954 +karman_re100,ppo,115,46.0,velocity,lower_ux,1.0895441770553589 +karman_re100,ppo,115,46.0,velocity,lower_uy,0.37641867995262146 +karman_re100,ppo,116,46.4,velocity,upper_ux,0.9238253831863403 +karman_re100,ppo,116,46.4,velocity,upper_uy,0.33062854409217834 +karman_re100,ppo,116,46.4,velocity,center_ux,1.0329989194869995 +karman_re100,ppo,116,46.4,velocity,center_uy,0.5207660794258118 +karman_re100,ppo,116,46.4,velocity,lower_ux,1.155461072921753 +karman_re100,ppo,116,46.4,velocity,lower_uy,0.3666132986545563 +karman_re100,ppo,117,46.8,velocity,upper_ux,0.8623799681663513 +karman_re100,ppo,117,46.8,velocity,upper_uy,0.25305962562561035 +karman_re100,ppo,117,46.8,velocity,center_ux,1.0258467197418213 +karman_re100,ppo,117,46.8,velocity,center_uy,0.4575686752796173 +karman_re100,ppo,117,46.8,velocity,lower_ux,1.2177917957305908 +karman_re100,ppo,117,46.8,velocity,lower_uy,0.32063353061676025 +karman_re100,ppo,118,47.2,velocity,upper_ux,0.8179280161857605 +karman_re100,ppo,118,47.2,velocity,upper_uy,0.128983736038208 +karman_re100,ppo,118,47.2,velocity,center_ux,1.0051127672195435 +karman_re100,ppo,118,47.2,velocity,center_uy,0.3068532645702362 +karman_re100,ppo,118,47.2,velocity,lower_ux,1.2666560411453247 +karman_re100,ppo,118,47.2,velocity,lower_uy,0.22976957261562347 +karman_re100,ppo,119,47.6,velocity,upper_ux,0.8066163659095764 +karman_re100,ppo,119,47.6,velocity,upper_uy,-0.01884125918149948 +karman_re100,ppo,119,47.6,velocity,center_ux,0.9839736223220825 +karman_re100,ppo,119,47.6,velocity,center_uy,0.018517185002565384 +karman_re100,ppo,119,47.6,velocity,lower_ux,1.279959797859192 +karman_re100,ppo,119,47.6,velocity,lower_uy,0.08123977482318878 +karman_re100,ppo,120,48.0,velocity,upper_ux,0.8371604681015015 +karman_re100,ppo,120,48.0,velocity,upper_uy,-0.1496419906616211 +karman_re100,ppo,120,48.0,velocity,center_ux,0.9804331064224243 +karman_re100,ppo,120,48.0,velocity,center_uy,-0.2703391909599304 +karman_re100,ppo,120,48.0,velocity,lower_ux,1.2537165880203247 +karman_re100,ppo,120,48.0,velocity,lower_uy,-0.08036915957927704 +karman_re100,ppo,121,48.4,velocity,upper_ux,0.8919243812561035 +karman_re100,ppo,121,48.4,velocity,upper_uy,-0.2515295147895813 +karman_re100,ppo,121,48.4,velocity,center_ux,0.986005425453186 +karman_re100,ppo,121,48.4,velocity,center_uy,-0.4250635504722595 +karman_re100,ppo,121,48.4,velocity,lower_ux,1.1929612159729004 +karman_re100,ppo,121,48.4,velocity,lower_uy,-0.21345028281211853 +karman_re100,ppo,122,48.8,velocity,upper_ux,0.9581644535064697 +karman_re100,ppo,122,48.8,velocity,upper_uy,-0.3195998966693878 +karman_re100,ppo,122,48.8,velocity,center_ux,0.9943632483482361 +karman_re100,ppo,122,48.8,velocity,center_uy,-0.4972549080848694 +karman_re100,ppo,122,48.8,velocity,lower_ux,1.1165916919708252 +karman_re100,ppo,122,48.8,velocity,lower_uy,-0.30568137764930725 +karman_re100,ppo,123,49.2,velocity,upper_ux,1.0293831825256348 +karman_re100,ppo,123,49.2,velocity,upper_uy,-0.36191681027412415 +karman_re100,ppo,123,49.2,velocity,center_ux,1.0036669969558716 +karman_re100,ppo,123,49.2,velocity,center_uy,-0.5373121500015259 +karman_re100,ppo,123,49.2,velocity,lower_ux,1.0390137434005737 +karman_re100,ppo,123,49.2,velocity,lower_uy,-0.35530635714530945 +karman_re100,ppo,124,49.6,velocity,upper_ux,1.10090970993042 +karman_re100,ppo,124,49.6,velocity,upper_uy,-0.38541626930236816 +karman_re100,ppo,124,49.6,velocity,center_ux,1.0116946697235107 +karman_re100,ppo,124,49.6,velocity,center_uy,-0.5582696795463562 +karman_re100,ppo,124,49.6,velocity,lower_ux,0.9630582332611084 +karman_re100,ppo,124,49.6,velocity,lower_uy,-0.3678089380264282 +karman_re100,ppo,125,50.0,velocity,upper_ux,1.1702558994293213 +karman_re100,ppo,125,50.0,velocity,upper_uy,-0.37250396609306335 +karman_re100,ppo,125,50.0,velocity,center_ux,1.0162256956100464 +karman_re100,ppo,125,50.0,velocity,center_uy,-0.5488137006759644 +karman_re100,ppo,125,50.0,velocity,lower_ux,0.8894106149673462 +karman_re100,ppo,125,50.0,velocity,lower_uy,-0.3418245315551758 +karman_re100,ppo,126,50.4,velocity,upper_ux,1.2354559898376465 +karman_re100,ppo,126,50.4,velocity,upper_uy,-0.31993401050567627 +karman_re100,ppo,126,50.4,velocity,center_ux,1.0118544101715088 +karman_re100,ppo,126,50.4,velocity,center_uy,-0.4950346052646637 +karman_re100,ppo,126,50.4,velocity,lower_ux,0.8232231736183167 +karman_re100,ppo,126,50.4,velocity,lower_uy,-0.2686164975166321 +karman_re100,ppo,127,50.8,velocity,upper_ux,1.2811230421066284 +karman_re100,ppo,127,50.8,velocity,upper_uy,-0.21231119334697723 +karman_re100,ppo,127,50.8,velocity,center_ux,0.9997037649154663 +karman_re100,ppo,127,50.8,velocity,center_uy,-0.3349425494670868 +karman_re100,ppo,127,50.8,velocity,lower_ux,0.7765108346939087 +karman_re100,ppo,127,50.8,velocity,lower_uy,-0.14785142242908478 +karman_re100,ppo,128,51.2,velocity,upper_ux,1.2839012145996094 +karman_re100,ppo,128,51.2,velocity,upper_uy,-0.04768452048301697 +karman_re100,ppo,128,51.2,velocity,center_ux,0.9962416291236877 +karman_re100,ppo,128,51.2,velocity,center_uy,-0.004837700631469488 +karman_re100,ppo,128,51.2,velocity,lower_ux,0.7671965956687927 +karman_re100,ppo,128,51.2,velocity,lower_uy,0.0008357510669156909 +karman_re100,ppo,129,51.6,velocity,upper_ux,1.2518173456192017 +karman_re100,ppo,129,51.6,velocity,upper_uy,0.10764279216527939 +karman_re100,ppo,129,51.6,velocity,center_ux,1.0040620565414429 +karman_re100,ppo,129,51.6,velocity,center_uy,0.30995532870292664 +karman_re100,ppo,129,51.6,velocity,lower_ux,0.8050408363342285 +karman_re100,ppo,129,51.6,velocity,lower_uy,0.13312159478664398 +karman_re100,ppo,130,52.0,velocity,upper_ux,1.1996921300888062 +karman_re100,ppo,130,52.0,velocity,upper_uy,0.22269439697265625 +karman_re100,ppo,130,52.0,velocity,center_ux,1.010703682899475 +karman_re100,ppo,130,52.0,velocity,center_uy,0.4517520070075989 +karman_re100,ppo,130,52.0,velocity,lower_ux,0.8704127669334412 +karman_re100,ppo,130,52.0,velocity,lower_uy,0.23222757875919342 +karman_re100,ppo,131,52.4,velocity,upper_ux,1.13556706905365 +karman_re100,ppo,131,52.4,velocity,upper_uy,0.3044792413711548 +karman_re100,ppo,131,52.4,velocity,center_ux,1.0171524286270142 +karman_re100,ppo,131,52.4,velocity,center_uy,0.4984399378299713 +karman_re100,ppo,131,52.4,velocity,lower_ux,0.941672146320343 +karman_re100,ppo,131,52.4,velocity,lower_uy,0.3043265640735626 +karman_re100,ppo,132,52.8,velocity,upper_ux,1.066465973854065 +karman_re100,ppo,132,52.8,velocity,upper_uy,0.35095444321632385 +karman_re100,ppo,132,52.8,velocity,center_ux,1.02369225025177 +karman_re100,ppo,132,52.8,velocity,center_uy,0.5262892246246338 +karman_re100,ppo,132,52.8,velocity,lower_ux,1.013689398765564 +karman_re100,ppo,132,52.8,velocity,lower_uy,0.34903714060783386 +karman_re100,ppo,133,53.2,velocity,upper_ux,0.9963778853416443 +karman_re100,ppo,133,53.2,velocity,upper_uy,0.3628736138343811 +karman_re100,ppo,133,53.2,velocity,center_ux,1.0295039415359497 +karman_re100,ppo,133,53.2,velocity,center_uy,0.5405324101448059 +karman_re100,ppo,133,53.2,velocity,lower_ux,1.0841697454452515 +karman_re100,ppo,133,53.2,velocity,lower_uy,0.3753821849822998 +karman_re100,ppo,134,53.6,velocity,upper_ux,0.9274958968162537 +karman_re100,ppo,134,53.6,velocity,upper_uy,0.3357311189174652 +karman_re100,ppo,134,53.6,velocity,center_ux,1.032483696937561 +karman_re100,ppo,134,53.6,velocity,center_uy,0.5244206786155701 +karman_re100,ppo,134,53.6,velocity,lower_ux,1.1510882377624512 +karman_re100,ppo,134,53.6,velocity,lower_uy,0.36834487318992615 +karman_re100,ppo,135,54.0,velocity,upper_ux,0.8654057383537292 +karman_re100,ppo,135,54.0,velocity,upper_uy,0.2615068256855011 +karman_re100,ppo,135,54.0,velocity,center_ux,1.0269098281860352 +karman_re100,ppo,135,54.0,velocity,center_uy,0.4652003049850464 +karman_re100,ppo,135,54.0,velocity,lower_ux,1.2139711380004883 +karman_re100,ppo,135,54.0,velocity,lower_uy,0.32461920380592346 +karman_re100,ppo,136,54.4,velocity,upper_ux,0.8198007345199585 +karman_re100,ppo,136,54.4,velocity,upper_uy,0.13994833827018738 +karman_re100,ppo,136,54.4,velocity,center_ux,1.0082316398620605 +karman_re100,ppo,136,54.4,velocity,center_uy,0.3226723372936249 +karman_re100,ppo,136,54.4,velocity,lower_ux,1.2649496793746948 +karman_re100,ppo,136,54.4,velocity,lower_uy,0.23748159408569336 +karman_re100,ppo,137,54.8,velocity,upper_ux,0.8052265048027039 +karman_re100,ppo,137,54.8,velocity,upper_uy,-0.008421092294156551 +karman_re100,ppo,137,54.8,velocity,center_ux,0.9865920543670654 +karman_re100,ppo,137,54.8,velocity,center_uy,0.040386658161878586 +karman_re100,ppo,137,54.8,velocity,lower_ux,1.280220627784729 +karman_re100,ppo,137,54.8,velocity,lower_uy,0.09186305850744247 +karman_re100,ppo,138,55.2,velocity,upper_ux,0.8323031067848206 +karman_re100,ppo,138,55.2,velocity,upper_uy,-0.14190083742141724 +karman_re100,ppo,138,55.2,velocity,center_ux,0.9809759259223938 +karman_re100,ppo,138,55.2,velocity,center_uy,-0.25567805767059326 +karman_re100,ppo,138,55.2,velocity,lower_ux,1.2554388046264648 +karman_re100,ppo,138,55.2,velocity,lower_uy,-0.07000920921564102 +karman_re100,ppo,139,55.6,velocity,upper_ux,0.8866375684738159 +karman_re100,ppo,139,55.6,velocity,upper_uy,-0.24589073657989502 +karman_re100,ppo,139,55.6,velocity,center_ux,0.9860238432884216 +karman_re100,ppo,139,55.6,velocity,center_uy,-0.4189298152923584 +karman_re100,ppo,139,55.6,velocity,lower_ux,1.197073221206665 +karman_re100,ppo,139,55.6,velocity,lower_uy,-0.20503875613212585 +karman_re100,ppo,140,56.0,velocity,upper_ux,0.9529996514320374 +karman_re100,ppo,140,56.0,velocity,upper_uy,-0.3164050281047821 +karman_re100,ppo,140,56.0,velocity,center_ux,0.9942327737808228 +karman_re100,ppo,140,56.0,velocity,center_uy,-0.4942866861820221 +karman_re100,ppo,140,56.0,velocity,lower_ux,1.1216669082641602 +karman_re100,ppo,140,56.0,velocity,lower_uy,-0.3001851737499237 +karman_re100,ppo,141,56.4,velocity,upper_ux,1.024675726890564 +karman_re100,ppo,141,56.4,velocity,upper_uy,-0.35987380146980286 +karman_re100,ppo,141,56.4,velocity,center_ux,1.0036343336105347 +karman_re100,ppo,141,56.4,velocity,center_uy,-0.5357319116592407 +karman_re100,ppo,141,56.4,velocity,lower_ux,1.0442739725112915 +karman_re100,ppo,141,56.4,velocity,lower_uy,-0.3527209758758545 +karman_re100,ppo,142,56.8,velocity,upper_ux,1.096877098083496 +karman_re100,ppo,142,56.8,velocity,upper_uy,-0.3851594626903534 +karman_re100,ppo,142,56.8,velocity,center_ux,1.0120311975479126 +karman_re100,ppo,142,56.8,velocity,center_uy,-0.558360755443573 +karman_re100,ppo,142,56.8,velocity,lower_ux,0.9684253931045532 +karman_re100,ppo,142,56.8,velocity,lower_uy,-0.36783233284950256 +karman_re100,ppo,143,57.2,velocity,upper_ux,1.1655994653701782 +karman_re100,ppo,143,57.2,velocity,upper_uy,-0.37496256828308105 +karman_re100,ppo,143,57.2,velocity,center_ux,1.0158343315124512 +karman_re100,ppo,143,57.2,velocity,center_uy,-0.5514943599700928 +karman_re100,ppo,143,57.2,velocity,lower_ux,0.8933262825012207 +karman_re100,ppo,143,57.2,velocity,lower_uy,-0.34487301111221313 +karman_re100,ppo,144,57.6,velocity,upper_ux,1.230869174003601 +karman_re100,ppo,144,57.6,velocity,upper_uy,-0.3250613808631897 +karman_re100,ppo,144,57.6,velocity,center_ux,1.0116711854934692 +karman_re100,ppo,144,57.6,velocity,center_uy,-0.502079427242279 +karman_re100,ppo,144,57.6,velocity,lower_ux,0.8257356882095337 +karman_re100,ppo,144,57.6,velocity,lower_uy,-0.27523931860923767 +karman_re100,ppo,145,58.0,velocity,upper_ux,1.2794617414474487 +karman_re100,ppo,145,58.0,velocity,upper_uy,-0.22184018790721893 +karman_re100,ppo,145,58.0,velocity,center_ux,1.0003931522369385 +karman_re100,ppo,145,58.0,velocity,center_uy,-0.3526246249675751 +karman_re100,ppo,145,58.0,velocity,lower_ux,0.7776998281478882 +karman_re100,ppo,145,58.0,velocity,lower_uy,-0.15754516422748566 +karman_re100,ppo,146,58.4,velocity,upper_ux,1.2854373455047607 +karman_re100,ppo,146,58.4,velocity,upper_uy,-0.05921216309070587 +karman_re100,ppo,146,58.4,velocity,center_ux,0.9962970614433289 +karman_re100,ppo,146,58.4,velocity,center_uy,-0.029942965134978294 +karman_re100,ppo,146,58.4,velocity,lower_ux,0.7655209898948669 +karman_re100,ppo,146,58.4,velocity,lower_uy,-0.009549321606755257 +karman_re100,ppo,147,58.8,velocity,upper_ux,1.2557055950164795 +karman_re100,ppo,147,58.8,velocity,upper_uy,0.09859582036733627 +karman_re100,ppo,147,58.8,velocity,center_ux,1.0044306516647339 +karman_re100,ppo,147,58.8,velocity,center_uy,0.2946995794773102 +karman_re100,ppo,147,58.8,velocity,lower_ux,0.8011160492897034 +karman_re100,ppo,147,58.8,velocity,lower_uy,0.12512238323688507 +karman_re100,ppo,148,59.2,velocity,upper_ux,1.2044177055358887 +karman_re100,ppo,148,59.2,velocity,upper_uy,0.21622584760189056 +karman_re100,ppo,148,59.2,velocity,center_ux,1.0110267400741577 +karman_re100,ppo,148,59.2,velocity,center_uy,0.4475783407688141 +karman_re100,ppo,148,59.2,velocity,lower_ux,0.8656744360923767 +karman_re100,ppo,148,59.2,velocity,lower_uy,0.22606146335601807 +karman_re100,ppo,149,59.6,velocity,upper_ux,1.1398087739944458 +karman_re100,ppo,149,59.6,velocity,upper_uy,0.30029818415641785 +karman_re100,ppo,149,59.6,velocity,center_ux,1.0163443088531494 +karman_re100,ppo,149,59.6,velocity,center_uy,0.4966607391834259 +karman_re100,ppo,149,59.6,velocity,lower_ux,0.9358198046684265 +karman_re100,ppo,149,59.6,velocity,lower_uy,0.30029457807540894 +karman_re100,ppo,150,60.0,velocity,upper_ux,1.0710769891738892 +karman_re100,ppo,150,60.0,velocity,upper_uy,0.3491672873497009 +karman_re100,ppo,150,60.0,velocity,center_ux,1.0230953693389893 +karman_re100,ppo,150,60.0,velocity,center_uy,0.524994432926178 +karman_re100,ppo,150,60.0,velocity,lower_ux,1.0080912113189697 +karman_re100,ppo,150,60.0,velocity,lower_uy,0.34644070267677307 +karman_re100,ppo,151,60.4,velocity,upper_ux,1.0014797449111938 +karman_re100,ppo,151,60.4,velocity,upper_uy,0.3634691536426544 +karman_re100,ppo,151,60.4,velocity,center_ux,1.0294991731643677 +karman_re100,ppo,151,60.4,velocity,center_uy,0.5404890179634094 +karman_re100,ppo,151,60.4,velocity,lower_ux,1.0792316198349 +karman_re100,ppo,151,60.4,velocity,lower_uy,0.37435445189476013 +karman_re100,ppo,152,60.8,velocity,upper_ux,0.9326908588409424 +karman_re100,ppo,152,60.8,velocity,upper_uy,0.3392663598060608 +karman_re100,ppo,152,60.8,velocity,center_ux,1.0331953763961792 +karman_re100,ppo,152,60.8,velocity,center_uy,0.5268223285675049 +karman_re100,ppo,152,60.8,velocity,lower_ux,1.1468173265457153 +karman_re100,ppo,152,60.8,velocity,lower_uy,0.3700934946537018 +karman_re100,ppo,153,61.2,velocity,upper_ux,0.8702419996261597 +karman_re100,ppo,153,61.2,velocity,upper_uy,0.26826950907707214 +karman_re100,ppo,153,61.2,velocity,center_ux,1.0289292335510254 +karman_re100,ppo,153,61.2,velocity,center_uy,0.47111839056015015 +karman_re100,ppo,153,61.2,velocity,lower_ux,1.210459589958191 +karman_re100,ppo,153,61.2,velocity,lower_uy,0.32876330614089966 +karman_re100,ppo,154,61.6,velocity,upper_ux,0.8221607208251953 +karman_re100,ppo,154,61.6,velocity,upper_uy,0.149409681558609 +karman_re100,ppo,154,61.6,velocity,center_ux,1.0103650093078613 +karman_re100,ppo,154,61.6,velocity,center_uy,0.3365952670574188 +karman_re100,ppo,154,61.6,velocity,lower_ux,1.2621744871139526 +karman_re100,ppo,154,61.6,velocity,lower_uy,0.24555635452270508 +karman_re100,ppo,155,62.0,velocity,upper_ux,0.8042269349098206 +karman_re100,ppo,155,62.0,velocity,upper_uy,0.001470210961997509 +karman_re100,ppo,155,62.0,velocity,center_ux,0.9875531196594238 +karman_re100,ppo,155,62.0,velocity,center_uy,0.062893807888031 +karman_re100,ppo,155,62.0,velocity,lower_ux,1.2796722650527954 +karman_re100,ppo,155,62.0,velocity,lower_uy,0.10344041883945465 +karman_re100,ppo,156,62.4,velocity,upper_ux,0.8291148543357849 +karman_re100,ppo,156,62.4,velocity,upper_uy,-0.1339123398065567 +karman_re100,ppo,156,62.4,velocity,center_ux,0.9812114834785461 +karman_re100,ppo,156,62.4,velocity,center_uy,-0.2386947125196457 +karman_re100,ppo,156,62.4,velocity,lower_ux,1.2580454349517822 +karman_re100,ppo,156,62.4,velocity,lower_uy,-0.058959346264600754 +karman_re100,ppo,157,62.8,velocity,upper_ux,0.8824499249458313 +karman_re100,ppo,157,62.8,velocity,upper_uy,-0.23978029191493988 +karman_re100,ppo,157,62.8,velocity,center_ux,0.9858954548835754 +karman_re100,ppo,157,62.8,velocity,center_uy,-0.41090384125709534 +karman_re100,ppo,157,62.8,velocity,lower_ux,1.2018744945526123 +karman_re100,ppo,157,62.8,velocity,lower_uy,-0.19642816483974457 +karman_re100,ppo,158,63.2,velocity,upper_ux,0.9486810564994812 +karman_re100,ppo,158,63.2,velocity,upper_uy,-0.31265997886657715 +karman_re100,ppo,158,63.2,velocity,center_ux,0.9943296909332275 +karman_re100,ppo,158,63.2,velocity,center_uy,-0.48996588587760925 +karman_re100,ppo,158,63.2,velocity,lower_ux,1.1276077032089233 +karman_re100,ppo,158,63.2,velocity,lower_uy,-0.29458603262901306 +karman_re100,ppo,159,63.6,velocity,upper_ux,1.0201479196548462 +karman_re100,ppo,159,63.6,velocity,upper_uy,-0.3573610186576843 +karman_re100,ppo,159,63.6,velocity,center_ux,1.003583550453186 +karman_re100,ppo,159,63.6,velocity,center_uy,-0.5330782532691956 +karman_re100,ppo,159,63.6,velocity,lower_ux,1.0501092672348022 +karman_re100,ppo,159,63.6,velocity,lower_uy,-0.35009291768074036 +karman_re100,ppo,160,64.0,velocity,upper_ux,1.0913403034210205 +karman_re100,ppo,160,64.0,velocity,upper_uy,-0.3843335211277008 +karman_re100,ppo,160,64.0,velocity,center_ux,1.0110703706741333 +karman_re100,ppo,160,64.0,velocity,center_uy,-0.5572693943977356 +karman_re100,ppo,160,64.0,velocity,lower_ux,0.9732309579849243 +karman_re100,ppo,160,64.0,velocity,lower_uy,-0.36774906516075134 +karman_re100,ppo,161,64.4,velocity,upper_ux,1.1602674722671509 +karman_re100,ppo,161,64.4,velocity,upper_uy,-0.37705010175704956 +karman_re100,ppo,161,64.4,velocity,center_ux,1.0153083801269531 +karman_re100,ppo,161,64.4,velocity,center_uy,-0.5528854131698608 +karman_re100,ppo,161,64.4,velocity,lower_ux,0.8980662822723389 +karman_re100,ppo,161,64.4,velocity,lower_uy,-0.3478582799434662 +karman_re100,ppo,162,64.8,velocity,upper_ux,1.2262645959854126 +karman_re100,ppo,162,64.8,velocity,upper_uy,-0.33000606298446655 +karman_re100,ppo,162,64.8,velocity,center_ux,1.0122648477554321 +karman_re100,ppo,162,64.8,velocity,center_uy,-0.5074561238288879 +karman_re100,ppo,162,64.8,velocity,lower_ux,0.8301210999488831 +karman_re100,ppo,162,64.8,velocity,lower_uy,-0.281852126121521 +karman_re100,ppo,163,65.2,velocity,upper_ux,1.2773606777191162 +karman_re100,ppo,163,65.2,velocity,upper_uy,-0.23163241147994995 +karman_re100,ppo,163,65.2,velocity,center_ux,1.0014981031417847 +karman_re100,ppo,163,65.2,velocity,center_uy,-0.3690485656261444 +karman_re100,ppo,163,65.2,velocity,lower_ux,0.7805197238922119 +karman_re100,ppo,163,65.2,velocity,lower_uy,-0.16742223501205444 +karman_re100,ppo,164,65.6,velocity,upper_ux,1.2870001792907715 +karman_re100,ppo,164,65.6,velocity,upper_uy,-0.07155625522136688 +karman_re100,ppo,164,65.6,velocity,center_ux,0.996823251247406 +karman_re100,ppo,164,65.6,velocity,center_uy,-0.05649743974208832 +karman_re100,ppo,164,65.6,velocity,lower_ux,0.765692949295044 +karman_re100,ppo,164,65.6,velocity,lower_uy,-0.02040097676217556 +karman_re100,ppo,165,66.0,velocity,upper_ux,1.2585424184799194 +karman_re100,ppo,165,66.0,velocity,upper_uy,0.08876962959766388 +karman_re100,ppo,165,66.0,velocity,center_ux,1.0039000511169434 +karman_re100,ppo,165,66.0,velocity,center_uy,0.27659541368484497 +karman_re100,ppo,165,66.0,velocity,lower_ux,0.7974429130554199 +karman_re100,ppo,165,66.0,velocity,lower_uy,0.11658453941345215 +karman_re100,ppo,166,66.4,velocity,upper_ux,1.2079269886016846 +karman_re100,ppo,166,66.4,velocity,upper_uy,0.20891337096691132 +karman_re100,ppo,166,66.4,velocity,center_ux,1.010079264640808 +karman_re100,ppo,166,66.4,velocity,center_uy,0.44142305850982666 +karman_re100,ppo,166,66.4,velocity,lower_ux,0.860264003276825 +karman_re100,ppo,166,66.4,velocity,lower_uy,0.21945376694202423 +karman_re100,ppo,167,66.8,velocity,upper_ux,1.1444979906082153 +karman_re100,ppo,167,66.8,velocity,upper_uy,0.2952023446559906 +karman_re100,ppo,167,66.8,velocity,center_ux,1.015753149986267 +karman_re100,ppo,167,66.8,velocity,center_uy,0.4938977360725403 +karman_re100,ppo,167,66.8,velocity,lower_ux,0.9305679202079773 +karman_re100,ppo,167,66.8,velocity,lower_uy,0.2958322763442993 +karman_re100,ppo,168,67.2,velocity,upper_ux,1.076168417930603 +karman_re100,ppo,168,67.2,velocity,upper_uy,0.34649452567100525 +karman_re100,ppo,168,67.2,velocity,center_ux,1.0226645469665527 +karman_re100,ppo,168,67.2,velocity,center_uy,0.5229616165161133 +karman_re100,ppo,168,67.2,velocity,lower_ux,1.0029938220977783 +karman_re100,ppo,168,67.2,velocity,lower_uy,0.3435366451740265 +karman_re100,ppo,169,67.6,velocity,upper_ux,1.0070842504501343 +karman_re100,ppo,169,67.6,velocity,upper_uy,0.36320894956588745 +karman_re100,ppo,169,67.6,velocity,center_ux,1.0295875072479248 +karman_re100,ppo,169,67.6,velocity,center_uy,0.5397791862487793 +karman_re100,ppo,169,67.6,velocity,lower_ux,1.0747395753860474 +karman_re100,ppo,169,67.6,velocity,lower_uy,0.37298744916915894 +karman_re100,ppo,170,68.0,velocity,upper_ux,0.9381916522979736 +karman_re100,ppo,170,68.0,velocity,upper_uy,0.34194767475128174 +karman_re100,ppo,170,68.0,velocity,center_ux,1.0336542129516602 +karman_re100,ppo,170,68.0,velocity,center_uy,0.5286219120025635 +karman_re100,ppo,170,68.0,velocity,lower_ux,1.142751932144165 +karman_re100,ppo,170,68.0,velocity,lower_uy,0.3714985251426697 +karman_re100,ppo,171,68.4,velocity,upper_ux,0.8741006255149841 +karman_re100,ppo,171,68.4,velocity,upper_uy,0.2743793725967407 +karman_re100,ppo,171,68.4,velocity,center_ux,1.0291343927383423 +karman_re100,ppo,171,68.4,velocity,center_uy,0.47648072242736816 +karman_re100,ppo,171,68.4,velocity,lower_ux,1.2056927680969238 +karman_re100,ppo,171,68.4,velocity,lower_uy,0.33259764313697815 +karman_re100,ppo,172,68.8,velocity,upper_ux,0.8245253562927246 +karman_re100,ppo,172,68.8,velocity,upper_uy,0.15875206887722015 +karman_re100,ppo,172,68.8,velocity,center_ux,1.011303186416626 +karman_re100,ppo,172,68.8,velocity,center_uy,0.3500240445137024 +karman_re100,ppo,172,68.8,velocity,lower_ux,1.2588375806808472 +karman_re100,ppo,172,68.8,velocity,lower_uy,0.25332602858543396 +karman_re100,ppo,173,69.2,velocity,upper_ux,0.8043463826179504 +karman_re100,ppo,173,69.2,velocity,upper_uy,0.0118006756529212 +karman_re100,ppo,173,69.2,velocity,center_ux,0.988176703453064 +karman_re100,ppo,173,69.2,velocity,center_uy,0.08565326035022736 +karman_re100,ppo,173,69.2,velocity,lower_ux,1.2797569036483765 +karman_re100,ppo,173,69.2,velocity,lower_uy,0.11494054645299911 +karman_re100,ppo,174,69.6,velocity,upper_ux,0.8266105055809021 +karman_re100,ppo,174,69.6,velocity,upper_uy,-0.12532508373260498 +karman_re100,ppo,174,69.6,velocity,center_ux,0.9807437062263489 +karman_re100,ppo,174,69.6,velocity,center_uy,-0.22096624970436096 +karman_re100,ppo,174,69.6,velocity,lower_ux,1.2611072063446045 +karman_re100,ppo,174,69.6,velocity,lower_uy,-0.04799183830618858 +karman_re100,ppo,175,70.0,velocity,upper_ux,0.8790719509124756 +karman_re100,ppo,175,70.0,velocity,upper_uy,-0.23332317173480988 +karman_re100,ppo,175,70.0,velocity,center_ux,0.985606849193573 +karman_re100,ppo,175,70.0,velocity,center_uy,-0.4029136896133423 +karman_re100,ppo,175,70.0,velocity,lower_ux,1.207309365272522 +karman_re100,ppo,175,70.0,velocity,lower_uy,-0.18824739754199982 +karman_re100,ppo,176,70.4,velocity,upper_ux,0.9440944194793701 +karman_re100,ppo,176,70.4,velocity,upper_uy,-0.3087753653526306 +karman_re100,ppo,176,70.4,velocity,center_ux,0.993537425994873 +karman_re100,ppo,176,70.4,velocity,center_uy,-0.4861060380935669 +karman_re100,ppo,176,70.4,velocity,lower_ux,1.1330156326293945 +karman_re100,ppo,176,70.4,velocity,lower_uy,-0.28952208161354065 +karman_re100,ppo,177,70.8,velocity,upper_ux,1.0146212577819824 +karman_re100,ppo,177,70.8,velocity,upper_uy,-0.3548351228237152 +karman_re100,ppo,177,70.8,velocity,center_ux,1.0021538734436035 +karman_re100,ppo,177,70.8,velocity,center_uy,-0.530942440032959 +karman_re100,ppo,177,70.8,velocity,lower_ux,1.0546917915344238 +karman_re100,ppo,177,70.8,velocity,lower_uy,-0.34792494773864746 +karman_re100,ppo,178,71.2,velocity,upper_ux,1.086175799369812 +karman_re100,ppo,178,71.2,velocity,upper_uy,-0.3834139108657837 +karman_re100,ppo,178,71.2,velocity,center_ux,1.0102142095565796 +karman_re100,ppo,178,71.2,velocity,center_uy,-0.5565402507781982 +karman_re100,ppo,178,71.2,velocity,lower_ux,0.9780845046043396 +karman_re100,ppo,178,71.2,velocity,lower_uy,-0.368019700050354 +karman_re100,ppo,179,71.6,velocity,upper_ux,1.1555356979370117 +karman_re100,ppo,179,71.6,velocity,upper_uy,-0.3789947032928467 +karman_re100,ppo,179,71.6,velocity,center_ux,1.0150885581970215 +karman_re100,ppo,179,71.6,velocity,center_uy,-0.5544776916503906 +karman_re100,ppo,179,71.6,velocity,lower_ux,0.9029342532157898 +karman_re100,ppo,179,71.6,velocity,lower_uy,-0.3509508967399597 +karman_re100,ppo,180,72.0,velocity,upper_ux,1.222208857536316 +karman_re100,ppo,180,72.0,velocity,upper_uy,-0.33471062779426575 +karman_re100,ppo,180,72.0,velocity,center_ux,1.013147234916687 +karman_re100,ppo,180,72.0,velocity,center_uy,-0.5125871300697327 +karman_re100,ppo,180,72.0,velocity,lower_ux,0.8345651030540466 +karman_re100,ppo,180,72.0,velocity,lower_uy,-0.28829020261764526 +karman_re100,ppo,181,72.4,velocity,upper_ux,1.2754613161087036 +karman_re100,ppo,181,72.4,velocity,upper_uy,-0.24075350165367126 +karman_re100,ppo,181,72.4,velocity,center_ux,1.0030003786087036 +karman_re100,ppo,181,72.4,velocity,center_uy,-0.3838352859020233 +karman_re100,ppo,181,72.4,velocity,lower_ux,0.7833920121192932 +karman_re100,ppo,181,72.4,velocity,lower_uy,-0.17676463723182678 +karman_re100,ppo,182,72.8,velocity,upper_ux,1.2871497869491577 +karman_re100,ppo,182,72.8,velocity,upper_uy,-0.08343678712844849 +karman_re100,ppo,182,72.8,velocity,center_ux,0.9965991973876953 +karman_re100,ppo,182,72.8,velocity,center_uy,-0.08167124539613724 +karman_re100,ppo,182,72.8,velocity,lower_ux,0.7646645903587341 +karman_re100,ppo,182,72.8,velocity,lower_uy,-0.030647756531834602 +karman_re100,ppo,183,73.2,velocity,upper_ux,1.2603298425674438 +karman_re100,ppo,183,73.2,velocity,upper_uy,0.07899618148803711 +karman_re100,ppo,183,73.2,velocity,center_ux,1.0030412673950195 +karman_re100,ppo,183,73.2,velocity,center_uy,0.2584035098552704 +karman_re100,ppo,183,73.2,velocity,lower_ux,0.7930259108543396 +karman_re100,ppo,183,73.2,velocity,lower_uy,0.10861019045114517 +karman_re100,ppo,184,73.6,velocity,upper_ux,1.2113629579544067 +karman_re100,ppo,184,73.6,velocity,upper_uy,0.20163168013095856 +karman_re100,ppo,184,73.6,velocity,center_ux,1.0096994638442993 +karman_re100,ppo,184,73.6,velocity,center_uy,0.4353336691856384 +karman_re100,ppo,184,73.6,velocity,lower_ux,0.8551643490791321 +karman_re100,ppo,184,73.6,velocity,lower_uy,0.21344339847564697 +karman_re100,ppo,185,74.0,velocity,upper_ux,1.1488322019577026 +karman_re100,ppo,185,74.0,velocity,upper_uy,0.29020798206329346 +karman_re100,ppo,185,74.0,velocity,center_ux,1.0153108835220337 +karman_re100,ppo,185,74.0,velocity,center_uy,0.491623193025589 +karman_re100,ppo,185,74.0,velocity,lower_ux,0.9255275726318359 +karman_re100,ppo,185,74.0,velocity,lower_uy,0.29173365235328674 +karman_re100,ppo,186,74.4,velocity,upper_ux,1.081129550933838 +karman_re100,ppo,186,74.4,velocity,upper_uy,0.3441074788570404 +karman_re100,ppo,186,74.4,velocity,center_ux,1.0225852727890015 +karman_re100,ppo,186,74.4,velocity,center_uy,0.5215240716934204 +karman_re100,ppo,186,74.4,velocity,lower_ux,0.9985010027885437 +karman_re100,ppo,186,74.4,velocity,lower_uy,0.34101375937461853 +karman_re100,ppo,187,74.8,velocity,upper_ux,1.0116946697235107 +karman_re100,ppo,187,74.8,velocity,upper_uy,0.36334869265556335 +karman_re100,ppo,187,74.8,velocity,center_ux,1.0292227268218994 +karman_re100,ppo,187,74.8,velocity,center_uy,0.5396876335144043 +karman_re100,ppo,187,74.8,velocity,lower_ux,1.0701448917388916 +karman_re100,ppo,187,74.8,velocity,lower_uy,0.37186869978904724 +karman_re100,ppo,188,75.2,velocity,upper_ux,0.9418745636940002 +karman_re100,ppo,188,75.2,velocity,upper_uy,0.3451635241508484 +karman_re100,ppo,188,75.2,velocity,center_ux,1.0328527688980103 +karman_re100,ppo,188,75.2,velocity,center_uy,0.5311794281005859 +karman_re100,ppo,188,75.2,velocity,lower_ux,1.1377867460250854 +karman_re100,ppo,188,75.2,velocity,lower_uy,0.37305736541748047 +karman_re100,ppo,189,75.6,velocity,upper_ux,0.8773972392082214 +karman_re100,ppo,189,75.6,velocity,upper_uy,0.2811698913574219 +karman_re100,ppo,189,75.6,velocity,center_ux,1.0294281244277954 +karman_re100,ppo,189,75.6,velocity,center_uy,0.4826641380786896 +karman_re100,ppo,189,75.6,velocity,lower_ux,1.201321005821228 +karman_re100,ppo,189,75.6,velocity,lower_uy,0.3364691436290741 +karman_re100,ppo,190,76.0,velocity,upper_ux,0.8266516923904419 +karman_re100,ppo,190,76.0,velocity,upper_uy,0.16879767179489136 +karman_re100,ppo,190,76.0,velocity,center_ux,1.0129047632217407 +karman_re100,ppo,190,76.0,velocity,center_uy,0.3637629747390747 +karman_re100,ppo,190,76.0,velocity,lower_ux,1.2561089992523193 +karman_re100,ppo,190,76.0,velocity,lower_uy,0.26063498854637146 +karman_re100,ppo,191,76.4,velocity,upper_ux,0.8041878342628479 +karman_re100,ppo,191,76.4,velocity,upper_uy,0.022784965112805367 +karman_re100,ppo,191,76.4,velocity,center_ux,0.9899134039878845 +karman_re100,ppo,191,76.4,velocity,center_uy,0.10825163871049881 +karman_re100,ppo,191,76.4,velocity,lower_ux,1.280174970626831 +karman_re100,ppo,191,76.4,velocity,lower_uy,0.12581664323806763 +karman_re100,ppo,192,76.8,velocity,upper_ux,0.8239192962646484 +karman_re100,ppo,192,76.8,velocity,upper_uy,-0.11648177355527878 +karman_re100,ppo,192,76.8,velocity,center_ux,0.9817142486572266 +karman_re100,ppo,192,76.8,velocity,center_uy,-0.20332588255405426 +karman_re100,ppo,192,76.8,velocity,lower_ux,1.2644826173782349 +karman_re100,ppo,192,76.8,velocity,lower_uy,-0.03734467923641205 +karman_re100,ppo,193,77.2,velocity,upper_ux,0.8743618726730347 +karman_re100,ppo,193,77.2,velocity,upper_uy,-0.2266787886619568 +karman_re100,ppo,193,77.2,velocity,center_ux,0.9853227734565735 +karman_re100,ppo,193,77.2,velocity,center_uy,-0.3951602578163147 +karman_re100,ppo,193,77.2,velocity,lower_ux,1.212018609046936 +karman_re100,ppo,193,77.2,velocity,lower_uy,-0.1798282414674759 +karman_re100,ppo,194,77.6,velocity,upper_ux,0.9385005831718445 +karman_re100,ppo,194,77.6,velocity,upper_uy,-0.30476102232933044 +karman_re100,ppo,194,77.6,velocity,center_ux,0.9927608370780945 +karman_re100,ppo,194,77.6,velocity,center_uy,-0.48238226771354675 +karman_re100,ppo,194,77.6,velocity,lower_ux,1.1382203102111816 +karman_re100,ppo,194,77.6,velocity,lower_uy,-0.28387895226478577 +karman_re100,ppo,195,78.0,velocity,upper_ux,1.009294867515564 +karman_re100,ppo,195,78.0,velocity,upper_uy,-0.35228291153907776 +karman_re100,ppo,195,78.0,velocity,center_ux,1.0016835927963257 +karman_re100,ppo,195,78.0,velocity,center_uy,-0.5288141369819641 +karman_re100,ppo,195,78.0,velocity,lower_ux,1.0602556467056274 +karman_re100,ppo,195,78.0,velocity,lower_uy,-0.3451198935508728 +karman_re100,ppo,196,78.4,velocity,upper_ux,1.0811251401901245 +karman_re100,ppo,196,78.4,velocity,upper_uy,-0.38236287236213684 +karman_re100,ppo,196,78.4,velocity,center_ux,1.0099910497665405 +karman_re100,ppo,196,78.4,velocity,center_uy,-0.5556803345680237 +karman_re100,ppo,196,78.4,velocity,lower_ux,0.9836810827255249 +karman_re100,ppo,196,78.4,velocity,lower_uy,-0.3676852285861969 +karman_re100,ppo,197,78.8,velocity,upper_ux,1.1512595415115356 +karman_re100,ppo,197,78.8,velocity,upper_uy,-0.3808055818080902 +karman_re100,ppo,197,78.8,velocity,center_ux,1.0156079530715942 +karman_re100,ppo,197,78.8,velocity,center_uy,-0.5559195876121521 +karman_re100,ppo,197,78.8,velocity,lower_ux,0.9087507128715515 +karman_re100,ppo,197,78.8,velocity,lower_uy,-0.35341235995292664 +karman_re100,ppo,198,79.2,velocity,upper_ux,1.2180715799331665 +karman_re100,ppo,198,79.2,velocity,upper_uy,-0.3392331600189209 +karman_re100,ppo,198,79.2,velocity,center_ux,1.0140165090560913 +karman_re100,ppo,198,79.2,velocity,center_uy,-0.5174384117126465 +karman_re100,ppo,198,79.2,velocity,lower_ux,0.8393537402153015 +karman_re100,ppo,198,79.2,velocity,lower_uy,-0.29409369826316833 +karman_re100,ppo,199,79.6,velocity,upper_ux,1.272459626197815 +karman_re100,ppo,199,79.6,velocity,upper_uy,-0.2497076541185379 +karman_re100,ppo,199,79.6,velocity,center_ux,1.0033437013626099 +karman_re100,ppo,199,79.6,velocity,center_uy,-0.3980185389518738 +karman_re100,ppo,199,79.6,velocity,lower_ux,0.7857096195220947 +karman_re100,ppo,199,79.6,velocity,lower_uy,-0.1857573539018631 +karman_re100,ppo,200,80.0,velocity,upper_ux,1.2875787019729614 +karman_re100,ppo,200,80.0,velocity,upper_uy,-0.09571263194084167 +karman_re100,ppo,200,80.0,velocity,center_ux,0.9960576891899109 +karman_re100,ppo,200,80.0,velocity,center_uy,-0.10734409093856812 +karman_re100,ppo,200,80.0,velocity,lower_ux,0.7642031908035278 +karman_re100,ppo,200,80.0,velocity,lower_uy,-0.0410572849214077 +karman_re100,ppo,201,80.4,velocity,upper_ux,1.2631146907806396 +karman_re100,ppo,201,80.4,velocity,upper_uy,0.06871212273836136 +karman_re100,ppo,201,80.4,velocity,center_ux,1.002199411392212 +karman_re100,ppo,201,80.4,velocity,center_uy,0.2388206124305725 +karman_re100,ppo,201,80.4,velocity,lower_ux,0.7894997596740723 +karman_re100,ppo,201,80.4,velocity,lower_uy,0.10013492405414581 +karman_re100,ppo,202,80.8,velocity,upper_ux,1.2156046628952026 +karman_re100,ppo,202,80.8,velocity,upper_uy,0.19420012831687927 +karman_re100,ppo,202,80.8,velocity,center_ux,1.009442925453186 +karman_re100,ppo,202,80.8,velocity,center_uy,0.42843902111053467 +karman_re100,ppo,202,80.8,velocity,lower_ux,0.8505890369415283 +karman_re100,ppo,202,80.8,velocity,lower_uy,0.2070341557264328 +karman_re100,ppo,203,81.2,velocity,upper_ux,1.1540610790252686 +karman_re100,ppo,203,81.2,velocity,upper_uy,0.2851642370223999 +karman_re100,ppo,203,81.2,velocity,center_ux,1.0153954029083252 +karman_re100,ppo,203,81.2,velocity,center_uy,0.4890683889389038 +karman_re100,ppo,203,81.2,velocity,lower_ux,0.9210790395736694 +karman_re100,ppo,203,81.2,velocity,lower_uy,0.2873018682003021 +karman_re100,ppo,204,81.6,velocity,upper_ux,1.0858160257339478 +karman_re100,ppo,204,81.6,velocity,upper_uy,0.3416438698768616 +karman_re100,ppo,204,81.6,velocity,center_ux,1.0219721794128418 +karman_re100,ppo,204,81.6,velocity,center_uy,0.5197847485542297 +karman_re100,ppo,204,81.6,velocity,lower_ux,0.9933199882507324 +karman_re100,ppo,204,81.6,velocity,lower_uy,0.3382543623447418 +karman_re100,ppo,205,82.0,velocity,upper_ux,1.016086459159851 +karman_re100,ppo,205,82.0,velocity,upper_uy,0.3633546531200409 +karman_re100,ppo,205,82.0,velocity,center_ux,1.028347373008728 +karman_re100,ppo,205,82.0,velocity,center_uy,0.5390926003456116 +karman_re100,ppo,205,82.0,velocity,lower_ux,1.0646806955337524 +karman_re100,ppo,205,82.0,velocity,lower_uy,0.3704298436641693 +karman_re100,ppo,206,82.4,velocity,upper_ux,0.946541428565979 +karman_re100,ppo,206,82.4,velocity,upper_uy,0.34814193844795227 +karman_re100,ppo,206,82.4,velocity,center_ux,1.0326842069625854 +karman_re100,ppo,206,82.4,velocity,center_uy,0.5330195426940918 +karman_re100,ppo,206,82.4,velocity,lower_ux,1.1329684257507324 +karman_re100,ppo,206,82.4,velocity,lower_uy,0.37430912256240845 +karman_re100,ppo,207,82.8,velocity,upper_ux,0.8816217184066772 +karman_re100,ppo,207,82.8,velocity,upper_uy,0.28764304518699646 +karman_re100,ppo,207,82.8,velocity,center_ux,1.0302352905273438 +karman_re100,ppo,207,82.8,velocity,center_uy,0.4878076910972595 +karman_re100,ppo,207,82.8,velocity,lower_ux,1.1969019174575806 +karman_re100,ppo,207,82.8,velocity,lower_uy,0.34018561244010925 +karman_re100,ppo,208,83.2,velocity,upper_ux,0.8299579620361328 +karman_re100,ppo,208,83.2,velocity,upper_uy,0.1784846931695938 +karman_re100,ppo,208,83.2,velocity,center_ux,1.0152701139450073 +karman_re100,ppo,208,83.2,velocity,center_uy,0.37606608867645264 +karman_re100,ppo,208,83.2,velocity,lower_ux,1.2533526420593262 +karman_re100,ppo,208,83.2,velocity,lower_uy,0.2678627669811249 +karman_re100,ppo,209,83.6,velocity,upper_ux,0.8048240542411804 +karman_re100,ppo,209,83.6,velocity,upper_uy,0.033564504235982895 +karman_re100,ppo,209,83.6,velocity,center_ux,0.9920695424079895 +karman_re100,ppo,209,83.6,velocity,center_uy,0.1306973099708557 +karman_re100,ppo,209,83.6,velocity,lower_ux,1.2801165580749512 +karman_re100,ppo,209,83.6,velocity,lower_uy,0.13697552680969238 +karman_re100,ppo,210,84.0,velocity,upper_ux,0.8207891583442688 +karman_re100,ppo,210,84.0,velocity,upper_uy,-0.1075688898563385 +karman_re100,ppo,210,84.0,velocity,center_ux,0.9818519353866577 +karman_re100,ppo,210,84.0,velocity,center_uy,-0.18394334614276886 +karman_re100,ppo,210,84.0,velocity,lower_ux,1.2663350105285645 +karman_re100,ppo,210,84.0,velocity,lower_uy,-0.026090305298566818 +karman_re100,ppo,211,84.4,velocity,upper_ux,0.8698123097419739 +karman_re100,ppo,211,84.4,velocity,upper_uy,-0.21978376805782318 +karman_re100,ppo,211,84.4,velocity,center_ux,0.9849066734313965 +karman_re100,ppo,211,84.4,velocity,center_uy,-0.3857911229133606 +karman_re100,ppo,211,84.4,velocity,lower_ux,1.2162953615188599 +karman_re100,ppo,211,84.4,velocity,lower_uy,-0.17066922783851624 +karman_re100,ppo,212,84.8,velocity,upper_ux,0.9334992170333862 +karman_re100,ppo,212,84.8,velocity,upper_uy,-0.3003843426704407 +karman_re100,ppo,212,84.8,velocity,center_ux,0.9923223853111267 +karman_re100,ppo,212,84.8,velocity,center_uy,-0.47761479020118713 +karman_re100,ppo,212,84.8,velocity,lower_ux,1.1437755823135376 +karman_re100,ppo,212,84.8,velocity,lower_uy,-0.277506947517395 +karman_re100,ppo,213,85.2,velocity,upper_ux,1.0042986869812012 +karman_re100,ppo,213,85.2,velocity,upper_uy,-0.34946078062057495 +karman_re100,ppo,213,85.2,velocity,center_ux,1.0013396739959717 +karman_re100,ppo,213,85.2,velocity,center_uy,-0.5259274840354919 +karman_re100,ppo,213,85.2,velocity,lower_ux,1.0661430358886719 +karman_re100,ppo,213,85.2,velocity,lower_uy,-0.3417089879512787 +karman_re100,ppo,214,85.6,velocity,upper_ux,1.076566219329834 +karman_re100,ppo,214,85.6,velocity,upper_uy,-0.38097140192985535 +karman_re100,ppo,214,85.6,velocity,center_ux,1.0100769996643066 +karman_re100,ppo,214,85.6,velocity,center_uy,-0.554125964641571 +karman_re100,ppo,214,85.6,velocity,lower_ux,0.9899103045463562 +karman_re100,ppo,214,85.6,velocity,lower_uy,-0.36681511998176575 +karman_re100,ppo,215,86.0,velocity,upper_ux,1.1463791131973267 +karman_re100,ppo,215,86.0,velocity,upper_uy,-0.38228362798690796 +karman_re100,ppo,215,86.0,velocity,center_ux,1.015343189239502 +karman_re100,ppo,215,86.0,velocity,center_uy,-0.5567300319671631 +karman_re100,ppo,215,86.0,velocity,lower_ux,0.9142848253250122 +karman_re100,ppo,215,86.0,velocity,lower_uy,-0.355387806892395 +karman_re100,ppo,216,86.4,velocity,upper_ux,1.212956190109253 +karman_re100,ppo,216,86.4,velocity,upper_uy,-0.3435089886188507 +karman_re100,ppo,216,86.4,velocity,center_ux,1.0137711763381958 +karman_re100,ppo,216,86.4,velocity,center_uy,-0.5216901898384094 +karman_re100,ppo,216,86.4,velocity,lower_ux,0.843783974647522 +karman_re100,ppo,216,86.4,velocity,lower_uy,-0.29962873458862305 +karman_re100,ppo,217,86.8,velocity,upper_ux,1.2694740295410156 +karman_re100,ppo,217,86.8,velocity,upper_uy,-0.25848016142845154 +karman_re100,ppo,217,86.8,velocity,center_ux,1.0035781860351562 +karman_re100,ppo,217,86.8,velocity,center_uy,-0.4115237891674042 +karman_re100,ppo,217,86.8,velocity,lower_ux,0.7888901233673096 +karman_re100,ppo,217,86.8,velocity,lower_uy,-0.19484513998031616 +karman_re100,ppo,218,87.2,velocity,upper_ux,1.2883130311965942 +karman_re100,ppo,218,87.2,velocity,upper_uy,-0.10828287154436111 +karman_re100,ppo,218,87.2,velocity,center_ux,0.9952021241188049 +karman_re100,ppo,218,87.2,velocity,center_uy,-0.1337418407201767 +karman_re100,ppo,218,87.2,velocity,lower_ux,0.7646480798721313 +karman_re100,ppo,218,87.2,velocity,lower_uy,-0.05203647539019585 +karman_re100,ppo,219,87.6,velocity,upper_ux,1.2667324542999268 +karman_re100,ppo,219,87.6,velocity,upper_uy,0.05799000337719917 +karman_re100,ppo,219,87.6,velocity,center_ux,1.0010610818862915 +karman_re100,ppo,219,87.6,velocity,center_uy,0.21732117235660553 +karman_re100,ppo,219,87.6,velocity,lower_ux,0.786884069442749 +karman_re100,ppo,219,87.6,velocity,lower_uy,0.09077377617359161 +karman_re100,ppo,220,88.0,velocity,upper_ux,1.2205002307891846 +karman_re100,ppo,220,88.0,velocity,upper_uy,0.18668599426746368 +karman_re100,ppo,220,88.0,velocity,center_ux,1.0088990926742554 +karman_re100,ppo,220,88.0,velocity,center_uy,0.4204804301261902 +karman_re100,ppo,220,88.0,velocity,lower_ux,0.8464110493659973 +karman_re100,ppo,220,88.0,velocity,lower_uy,0.1999548375606537 +karman_re100,ppo,221,88.4,velocity,upper_ux,1.1588369607925415 +karman_re100,ppo,221,88.4,velocity,upper_uy,0.2800590395927429 +karman_re100,ppo,221,88.4,velocity,center_ux,1.0143741369247437 +karman_re100,ppo,221,88.4,velocity,center_uy,0.4862658977508545 +karman_re100,ppo,221,88.4,velocity,lower_ux,0.9157609343528748 +karman_re100,ppo,221,88.4,velocity,lower_uy,0.28232505917549133 +karman_re100,ppo,222,88.8,velocity,upper_ux,1.090721607208252 +karman_re100,ppo,222,88.8,velocity,upper_uy,0.33900001645088196 +karman_re100,ppo,222,88.8,velocity,center_ux,1.0210367441177368 +karman_re100,ppo,222,88.8,velocity,center_uy,0.5178501009941101 +karman_re100,ppo,222,88.8,velocity,lower_ux,0.9877769351005554 +karman_re100,ppo,222,88.8,velocity,lower_uy,0.3351367115974426 +karman_re100,ppo,223,89.2,velocity,upper_ux,1.0213216543197632 +karman_re100,ppo,223,89.2,velocity,upper_uy,0.3630475103855133 +karman_re100,ppo,223,89.2,velocity,center_ux,1.0278496742248535 +karman_re100,ppo,223,89.2,velocity,center_uy,0.5381162762641907 +karman_re100,ppo,223,89.2,velocity,lower_ux,1.0594685077667236 +karman_re100,ppo,223,89.2,velocity,lower_uy,0.3686215579509735 +karman_re100,ppo,224,89.6,velocity,upper_ux,0.9519050717353821 +karman_re100,ppo,224,89.6,velocity,upper_uy,0.3506355583667755 +karman_re100,ppo,224,89.6,velocity,center_ux,1.0327080488204956 +karman_re100,ppo,224,89.6,velocity,center_uy,0.5343368649482727 +karman_re100,ppo,224,89.6,velocity,lower_ux,1.128226399421692 +karman_re100,ppo,224,89.6,velocity,lower_uy,0.3752061128616333 +karman_re100,ppo,225,90.0,velocity,upper_ux,0.8868430852890015 +karman_re100,ppo,225,90.0,velocity,upper_uy,0.2934581935405731 +karman_re100,ppo,225,90.0,velocity,center_ux,1.0313969850540161 +karman_re100,ppo,225,90.0,velocity,center_uy,0.49219080805778503 +karman_re100,ppo,225,90.0,velocity,lower_ux,1.1928213834762573 +karman_re100,ppo,225,90.0,velocity,lower_uy,0.3436565101146698 +karman_re100,ppo,226,90.4,velocity,upper_ux,0.8334459662437439 +karman_re100,ppo,226,90.4,velocity,upper_uy,0.18747548758983612 +karman_re100,ppo,226,90.4,velocity,center_ux,1.0169780254364014 +karman_re100,ppo,226,90.4,velocity,center_uy,0.3870713710784912 +karman_re100,ppo,226,90.4,velocity,lower_ux,1.2499388456344604 +karman_re100,ppo,226,90.4,velocity,lower_uy,0.27482983469963074 +karman_re100,ppo,227,90.8,velocity,upper_ux,0.8052761554718018 +karman_re100,ppo,227,90.8,velocity,upper_uy,0.044017091393470764 +karman_re100,ppo,227,90.8,velocity,center_ux,0.9930453300476074 +karman_re100,ppo,227,90.8,velocity,center_uy,0.15267834067344666 +karman_re100,ppo,227,90.8,velocity,lower_ux,1.2789802551269531 +karman_re100,ppo,227,90.8,velocity,lower_uy,0.1483014076948166 +karman_re100,ppo,228,91.2,velocity,upper_ux,0.8183872103691101 +karman_re100,ppo,228,91.2,velocity,upper_uy,-0.09861979633569717 +karman_re100,ppo,228,91.2,velocity,center_ux,0.981630802154541 +karman_re100,ppo,228,91.2,velocity,center_uy,-0.16341842710971832 +karman_re100,ppo,228,91.2,velocity,lower_ux,1.268225908279419 +karman_re100,ppo,228,91.2,velocity,lower_uy,-0.014386271126568317 +karman_re100,ppo,229,91.6,velocity,upper_ux,0.8658688068389893 +karman_re100,ppo,229,91.6,velocity,upper_uy,-0.21279853582382202 +karman_re100,ppo,229,91.6,velocity,center_ux,0.9842140078544617 +karman_re100,ppo,229,91.6,velocity,center_uy,-0.3755703270435333 +karman_re100,ppo,229,91.6,velocity,lower_ux,1.2206196784973145 +karman_re100,ppo,229,91.6,velocity,lower_uy,-0.161346897482872 +karman_re100,ppo,230,92.0,velocity,upper_ux,0.9291066527366638 +karman_re100,ppo,230,92.0,velocity,upper_uy,-0.2958466410636902 +karman_re100,ppo,230,92.0,velocity,center_ux,0.9918396472930908 +karman_re100,ppo,230,92.0,velocity,center_uy,-0.4726090133190155 +karman_re100,ppo,230,92.0,velocity,lower_ux,1.1493984460830688 +karman_re100,ppo,230,92.0,velocity,lower_uy,-0.2712089419364929 +karman_re100,ppo,231,92.4,velocity,upper_ux,0.9997711777687073 +karman_re100,ppo,231,92.4,velocity,upper_uy,-0.34656062722206116 +karman_re100,ppo,231,92.4,velocity,center_ux,1.0009829998016357 +karman_re100,ppo,231,92.4,velocity,center_uy,-0.5230631232261658 +karman_re100,ppo,231,92.4,velocity,lower_ux,1.0719232559204102 +karman_re100,ppo,231,92.4,velocity,lower_uy,-0.3385101556777954 +karman_re100,ppo,232,92.8,velocity,upper_ux,1.0713286399841309 +karman_re100,ppo,232,92.8,velocity,upper_uy,-0.3794049024581909 +karman_re100,ppo,232,92.8,velocity,center_ux,1.0091732740402222 +karman_re100,ppo,232,92.8,velocity,center_uy,-0.5526182651519775 +karman_re100,ppo,232,92.8,velocity,lower_ux,0.9949265122413635 +karman_re100,ppo,232,92.8,velocity,lower_uy,-0.3662053644657135 +karman_re100,ppo,233,93.2,velocity,upper_ux,1.1411672830581665 +karman_re100,ppo,233,93.2,velocity,upper_uy,-0.38348808884620667 +karman_re100,ppo,233,93.2,velocity,center_ux,1.0146297216415405 +karman_re100,ppo,233,93.2,velocity,center_uy,-0.5575405359268188 +karman_re100,ppo,233,93.2,velocity,lower_ux,0.9190954566001892 +karman_re100,ppo,233,93.2,velocity,lower_uy,-0.3575775623321533 +karman_re100,ppo,234,93.6,velocity,upper_ux,1.2081583738327026 +karman_re100,ppo,234,93.6,velocity,upper_uy,-0.34744688868522644 +karman_re100,ppo,234,93.6,velocity,center_ux,1.01396906375885 +karman_re100,ppo,234,93.6,velocity,center_uy,-0.5257189869880676 +karman_re100,ppo,234,93.6,velocity,lower_ux,0.848239541053772 +karman_re100,ppo,234,93.6,velocity,lower_uy,-0.30529358983039856 +karman_re100,ppo,235,94.0,velocity,upper_ux,1.266350269317627 +karman_re100,ppo,235,94.0,velocity,upper_uy,-0.26662418246269226 +karman_re100,ppo,235,94.0,velocity,center_ux,1.0044950246810913 +karman_re100,ppo,235,94.0,velocity,center_uy,-0.42389771342277527 +karman_re100,ppo,235,94.0,velocity,lower_ux,0.7920120358467102 +karman_re100,ppo,235,94.0,velocity,lower_uy,-0.20392541587352753 +karman_re100,ppo,236,94.4,velocity,upper_ux,1.288877010345459 +karman_re100,ppo,236,94.4,velocity,upper_uy,-0.12037313729524612 +karman_re100,ppo,236,94.4,velocity,center_ux,0.9958163499832153 +karman_re100,ppo,236,94.4,velocity,center_uy,-0.15887503325939178 +karman_re100,ppo,236,94.4,velocity,lower_ux,0.765432596206665 +karman_re100,ppo,236,94.4,velocity,lower_uy,-0.06289729475975037 +karman_re100,ppo,237,94.8,velocity,upper_ux,1.2692973613739014 +karman_re100,ppo,237,94.8,velocity,upper_uy,0.04734925180673599 +karman_re100,ppo,237,94.8,velocity,center_ux,1.0006476640701294 +karman_re100,ppo,237,94.8,velocity,center_uy,0.1957879215478897 +karman_re100,ppo,237,94.8,velocity,lower_ux,0.7839707136154175 +karman_re100,ppo,237,94.8,velocity,lower_uy,0.08160550892353058 +karman_re100,ppo,238,95.2,velocity,upper_ux,1.2238876819610596 +karman_re100,ppo,238,95.2,velocity,upper_uy,0.17892199754714966 +karman_re100,ppo,238,95.2,velocity,center_ux,1.0081063508987427 +karman_re100,ppo,238,95.2,velocity,center_uy,0.41209766268730164 +karman_re100,ppo,238,95.2,velocity,lower_ux,0.8412835001945496 +karman_re100,ppo,238,95.2,velocity,lower_uy,0.1931253969669342 +karman_re100,ppo,239,95.6,velocity,upper_ux,1.1632404327392578 +karman_re100,ppo,239,95.6,velocity,upper_uy,0.27451708912849426 +karman_re100,ppo,239,95.6,velocity,center_ux,1.0137096643447876 +karman_re100,ppo,239,95.6,velocity,center_uy,0.4834696650505066 +karman_re100,ppo,239,95.6,velocity,lower_ux,0.9105228185653687 +karman_re100,ppo,239,95.6,velocity,lower_uy,0.2774074077606201 +karman_re100,ppo,240,96.0,velocity,upper_ux,1.095483422279358 +karman_re100,ppo,240,96.0,velocity,upper_uy,0.33594754338264465 +karman_re100,ppo,240,96.0,velocity,center_ux,1.0204278230667114 +karman_re100,ppo,240,96.0,velocity,center_uy,0.5160081386566162 +karman_re100,ppo,240,96.0,velocity,lower_ux,0.9825805425643921 +karman_re100,ppo,240,96.0,velocity,lower_uy,0.3321366608142853 +karman_re100,ppo,241,96.4,velocity,upper_ux,1.026444435119629 +karman_re100,ppo,241,96.4,velocity,upper_uy,0.3623696267604828 +karman_re100,ppo,241,96.4,velocity,center_ux,1.027605652809143 +karman_re100,ppo,241,96.4,velocity,center_uy,0.5372405052185059 +karman_re100,ppo,241,96.4,velocity,lower_ux,1.0547308921813965 +karman_re100,ppo,241,96.4,velocity,lower_uy,0.36685463786125183 +karman_re100,ppo,242,96.8,velocity,upper_ux,0.9571364521980286 +karman_re100,ppo,242,96.8,velocity,upper_uy,0.35273638367652893 +karman_re100,ppo,242,96.8,velocity,center_ux,1.0329093933105469 +karman_re100,ppo,242,96.8,velocity,center_uy,0.5357800722122192 +karman_re100,ppo,242,96.8,velocity,lower_ux,1.1240724325180054 +karman_re100,ppo,242,96.8,velocity,lower_uy,0.3760013282299042 +karman_re100,ppo,243,97.2,velocity,upper_ux,0.8909081220626831 +karman_re100,ppo,243,97.2,velocity,upper_uy,0.2988894581794739 +karman_re100,ppo,243,97.2,velocity,center_ux,1.0315968990325928 +karman_re100,ppo,243,97.2,velocity,center_uy,0.49671775102615356 +karman_re100,ppo,243,97.2,velocity,lower_ux,1.188361406326294 +karman_re100,ppo,243,97.2,velocity,lower_uy,0.34693658351898193 +karman_re100,ppo,244,97.6,velocity,upper_ux,0.8361095190048218 +karman_re100,ppo,244,97.6,velocity,upper_uy,0.19624941051006317 +karman_re100,ppo,244,97.6,velocity,center_ux,1.0178921222686768 +karman_re100,ppo,244,97.6,velocity,center_uy,0.3978534936904907 +karman_re100,ppo,244,97.6,velocity,lower_ux,1.246254324913025 +karman_re100,ppo,244,97.6,velocity,lower_uy,0.28127428889274597 +karman_re100,ppo,245,98.0,velocity,upper_ux,0.8058244585990906 +karman_re100,ppo,245,98.0,velocity,upper_uy,0.054511409252882004 +karman_re100,ppo,245,98.0,velocity,center_ux,0.9941537380218506 +karman_re100,ppo,245,98.0,velocity,center_uy,0.17381449043750763 +karman_re100,ppo,245,98.0,velocity,lower_ux,1.2782493829727173 +karman_re100,ppo,245,98.0,velocity,lower_uy,0.15895548462867737 +karman_re100,ppo,246,98.4,velocity,upper_ux,0.8160344958305359 +karman_re100,ppo,246,98.4,velocity,upper_uy,-0.08953186869621277 +karman_re100,ppo,246,98.4,velocity,center_ux,0.9815813302993774 +karman_re100,ppo,246,98.4,velocity,center_uy,-0.14325791597366333 +karman_re100,ppo,246,98.4,velocity,lower_ux,1.2704005241394043 +karman_re100,ppo,246,98.4,velocity,lower_uy,-0.003129011718556285 +karman_re100,ppo,247,98.8,velocity,upper_ux,0.8622753620147705 +karman_re100,ppo,247,98.8,velocity,upper_uy,-0.20575934648513794 +karman_re100,ppo,247,98.8,velocity,center_ux,0.9840320348739624 +karman_re100,ppo,247,98.8,velocity,center_uy,-0.36569535732269287 +karman_re100,ppo,247,98.8,velocity,lower_ux,1.225470781326294 +karman_re100,ppo,247,98.8,velocity,lower_uy,-0.15235163271427155 +karman_re100,ppo,248,99.2,velocity,upper_ux,0.9246035218238831 +karman_re100,ppo,248,99.2,velocity,upper_uy,-0.2913236618041992 +karman_re100,ppo,248,99.2,velocity,center_ux,0.9913713335990906 +karman_re100,ppo,248,99.2,velocity,center_uy,-0.468120813369751 +karman_re100,ppo,248,99.2,velocity,lower_ux,1.1549696922302246 +karman_re100,ppo,248,99.2,velocity,lower_uy,-0.2651974856853485 +karman_re100,ppo,249,99.6,velocity,upper_ux,0.9944092035293579 +karman_re100,ppo,249,99.6,velocity,upper_uy,-0.3437724709510803 +karman_re100,ppo,249,99.6,velocity,center_ux,0.9999315738677979 +karman_re100,ppo,249,99.6,velocity,center_uy,-0.5206483006477356 +karman_re100,ppo,249,99.6,velocity,lower_ux,1.0769157409667969 +karman_re100,ppo,249,99.6,velocity,lower_uy,-0.3354867100715637 +karman_re100,ppo,250,100.0,velocity,upper_ux,1.06608247756958 +karman_re100,ppo,250,100.0,velocity,upper_uy,-0.3778597116470337 +karman_re100,ppo,250,100.0,velocity,center_ux,1.0083850622177124 +karman_re100,ppo,250,100.0,velocity,center_uy,-0.5514134764671326 +karman_re100,ppo,250,100.0,velocity,lower_ux,0.9999198913574219 +karman_re100,ppo,250,100.0,velocity,lower_uy,-0.36571258306503296 +karman_re100,ppo,251,100.4,velocity,upper_ux,1.136276364326477 +karman_re100,ppo,251,100.4,velocity,upper_uy,-0.3846273720264435 +karman_re100,ppo,251,100.4,velocity,center_ux,1.0142940282821655 +karman_re100,ppo,251,100.4,velocity,center_uy,-0.5585086345672607 +karman_re100,ppo,251,100.4,velocity,lower_ux,0.9240942597389221 +karman_re100,ppo,251,100.4,velocity,lower_uy,-0.3597453236579895 +karman_re100,ppo,252,100.8,velocity,upper_ux,1.2037441730499268 +karman_re100,ppo,252,100.8,velocity,upper_uy,-0.35129478573799133 +karman_re100,ppo,252,100.8,velocity,center_ux,1.0145450830459595 +karman_re100,ppo,252,100.8,velocity,center_uy,-0.5296716094017029 +karman_re100,ppo,252,100.8,velocity,lower_ux,0.8528861999511719 +karman_re100,ppo,252,100.8,velocity,lower_uy,-0.3107559382915497 +karman_re100,ppo,253,101.2,velocity,upper_ux,1.2635687589645386 +karman_re100,ppo,253,101.2,velocity,upper_uy,-0.2743683159351349 +karman_re100,ppo,253,101.2,velocity,center_ux,1.0059740543365479 +karman_re100,ppo,253,101.2,velocity,center_uy,-0.43524083495140076 +karman_re100,ppo,253,101.2,velocity,lower_ux,0.795463502407074 +karman_re100,ppo,253,101.2,velocity,lower_uy,-0.21259990334510803 +karman_re100,ppo,254,101.6,velocity,upper_ux,1.288639783859253 +karman_re100,ppo,254,101.6,velocity,upper_uy,-0.13214744627475739 +karman_re100,ppo,254,101.6,velocity,center_ux,0.9962246417999268 +karman_re100,ppo,254,101.6,velocity,center_uy,-0.1827607899904251 +karman_re100,ppo,254,101.6,velocity,lower_ux,0.7656749486923218 +karman_re100,ppo,254,101.6,velocity,lower_uy,-0.07332105189561844 +karman_re100,ppo,255,102.0,velocity,upper_ux,1.2709928750991821 +karman_re100,ppo,255,102.0,velocity,upper_uy,0.036612965166568756 +karman_re100,ppo,255,102.0,velocity,center_ux,1.0000336170196533 +karman_re100,ppo,255,102.0,velocity,center_uy,0.1740042269229889 +karman_re100,ppo,255,102.0,velocity,lower_ux,0.7805321216583252 +karman_re100,ppo,255,102.0,velocity,lower_uy,0.07268200814723969 +karman_re100,ppo,256,102.4,velocity,upper_ux,1.227154016494751 +karman_re100,ppo,256,102.4,velocity,upper_uy,0.17096975445747375 +karman_re100,ppo,256,102.4,velocity,center_ux,1.0077859163284302 +karman_re100,ppo,256,102.4,velocity,center_uy,0.40321388840675354 +karman_re100,ppo,256,102.4,velocity,lower_ux,0.8363123536109924 +karman_re100,ppo,256,102.4,velocity,lower_uy,0.18657025694847107 +karman_re100,ppo,257,102.8,velocity,upper_ux,1.1675111055374146 +karman_re100,ppo,257,102.8,velocity,upper_uy,0.26875045895576477 +karman_re100,ppo,257,102.8,velocity,center_ux,1.013333797454834 +karman_re100,ppo,257,102.8,velocity,center_uy,0.4806341230869293 +karman_re100,ppo,257,102.8,velocity,lower_ux,0.9054281711578369 +karman_re100,ppo,257,102.8,velocity,lower_uy,0.2725871801376343 +karman_re100,ppo,258,103.2,velocity,upper_ux,1.1004194021224976 +karman_re100,ppo,258,103.2,velocity,upper_uy,0.33274444937705994 +karman_re100,ppo,258,103.2,velocity,center_ux,1.0202858448028564 +karman_re100,ppo,258,103.2,velocity,center_uy,0.514204204082489 +karman_re100,ppo,258,103.2,velocity,lower_ux,0.9778343439102173 +karman_re100,ppo,258,103.2,velocity,lower_uy,0.32923004031181335 +karman_re100,ppo,259,103.6,velocity,upper_ux,1.0313522815704346 +karman_re100,ppo,259,103.6,velocity,upper_uy,0.3616359233856201 +karman_re100,ppo,259,103.6,velocity,center_ux,1.027400016784668 +karman_re100,ppo,259,103.6,velocity,center_uy,0.5363947153091431 +karman_re100,ppo,259,103.6,velocity,lower_ux,1.0500859022140503 +karman_re100,ppo,259,103.6,velocity,lower_uy,0.3651200234889984 +karman_re100,ppo,260,104.0,velocity,upper_ux,0.9614006280899048 +karman_re100,ppo,260,104.0,velocity,upper_uy,0.3548336327075958 +karman_re100,ppo,260,104.0,velocity,center_ux,1.0323281288146973 +karman_re100,ppo,260,104.0,velocity,center_uy,0.5372442007064819 +karman_re100,ppo,260,104.0,velocity,lower_ux,1.1191750764846802 +karman_re100,ppo,260,104.0,velocity,lower_uy,0.3767090141773224 +karman_re100,ppo,261,104.4,velocity,upper_ux,0.894741415977478 +karman_re100,ppo,261,104.4,velocity,upper_uy,0.30442288517951965 +karman_re100,ppo,261,104.4,velocity,center_ux,1.0316985845565796 +karman_re100,ppo,261,104.4,velocity,center_uy,0.5012701749801636 +karman_re100,ppo,261,104.4,velocity,lower_ux,1.1838135719299316 +karman_re100,ppo,261,104.4,velocity,lower_uy,0.35014358162879944 +karman_re100,ppo,262,104.8,velocity,upper_ux,0.838947057723999 +karman_re100,ppo,262,104.8,velocity,upper_uy,0.2052084356546402 +karman_re100,ppo,262,104.8,velocity,center_ux,1.019152045249939 +karman_re100,ppo,262,104.8,velocity,center_uy,0.4083663821220398 +karman_re100,ppo,262,104.8,velocity,lower_ux,1.2427287101745605 +karman_re100,ppo,262,104.8,velocity,lower_uy,0.2874238193035126 +karman_re100,ppo,263,105.2,velocity,upper_ux,0.8066226840019226 +karman_re100,ppo,263,105.2,velocity,upper_uy,0.06533842533826828 +karman_re100,ppo,263,105.2,velocity,center_ux,0.9958629608154297 +karman_re100,ppo,263,105.2,velocity,center_uy,0.1946280300617218 +karman_re100,ppo,263,105.2,velocity,lower_ux,1.277560830116272 +karman_re100,ppo,263,105.2,velocity,lower_uy,0.16929924488067627 +karman_re100,ppo,264,105.6,velocity,upper_ux,0.814128577709198 +karman_re100,ppo,264,105.6,velocity,upper_uy,-0.0801316648721695 +karman_re100,ppo,264,105.6,velocity,center_ux,0.9824640154838562 +karman_re100,ppo,264,105.6,velocity,center_uy,-0.12264765053987503 +karman_re100,ppo,264,105.6,velocity,lower_ux,1.2727651596069336 +karman_re100,ppo,264,105.6,velocity,lower_uy,0.008065279573202133 +karman_re100,ppo,265,106.0,velocity,upper_ux,0.8582251071929932 +karman_re100,ppo,265,106.0,velocity,upper_uy,-0.19852817058563232 +karman_re100,ppo,265,106.0,velocity,center_ux,0.9838575720787048 +karman_re100,ppo,265,106.0,velocity,center_uy,-0.3553815186023712 +karman_re100,ppo,265,106.0,velocity,lower_ux,1.2297724485397339 +karman_re100,ppo,265,106.0,velocity,lower_uy,-0.14313918352127075 +karman_re100,ppo,266,106.4,velocity,upper_ux,0.9194754958152771 +karman_re100,ppo,266,106.4,velocity,upper_uy,-0.286563903093338 +karman_re100,ppo,266,106.4,velocity,center_ux,0.9906485676765442 +karman_re100,ppo,266,106.4,velocity,center_uy,-0.46344253420829773 +karman_re100,ppo,266,106.4,velocity,lower_ux,1.1600643396377563 +karman_re100,ppo,266,106.4,velocity,lower_uy,-0.258719801902771 +karman_re100,ppo,267,106.8,velocity,upper_ux,0.9891889095306396 +karman_re100,ppo,267,106.8,velocity,upper_uy,-0.3408809006214142 +karman_re100,ppo,267,106.8,velocity,center_ux,0.9993206858634949 +karman_re100,ppo,267,106.8,velocity,center_uy,-0.5180864334106445 +karman_re100,ppo,267,106.8,velocity,lower_ux,1.0822858810424805 +karman_re100,ppo,267,106.8,velocity,lower_uy,-0.3319723606109619 +karman_re100,ppo,268,107.2,velocity,upper_ux,1.0609809160232544 +karman_re100,ppo,268,107.2,velocity,upper_uy,-0.37613266706466675 +karman_re100,ppo,268,107.2,velocity,center_ux,1.00795316696167 +karman_re100,ppo,268,107.2,velocity,center_uy,-0.550009548664093 +karman_re100,ppo,268,107.2,velocity,lower_ux,1.0052438974380493 +karman_re100,ppo,268,107.2,velocity,lower_uy,-0.3647744357585907 +karman_re100,ppo,269,107.6,velocity,upper_ux,1.1317870616912842 +karman_re100,ppo,269,107.6,velocity,upper_uy,-0.38549312949180603 +karman_re100,ppo,269,107.6,velocity,center_ux,1.014500617980957 +karman_re100,ppo,269,107.6,velocity,center_uy,-0.5592193007469177 +karman_re100,ppo,269,107.6,velocity,lower_ux,0.9296290874481201 +karman_re100,ppo,269,107.6,velocity,lower_uy,-0.36145737767219543 +karman_re100,ppo,270,108.0,velocity,upper_ux,1.1995055675506592 +karman_re100,ppo,270,108.0,velocity,upper_uy,-0.3548445403575897 +karman_re100,ppo,270,108.0,velocity,center_ux,1.015367865562439 +karman_re100,ppo,270,108.0,velocity,center_uy,-0.533252477645874 +karman_re100,ppo,270,108.0,velocity,lower_ux,0.8578231334686279 +karman_re100,ppo,270,108.0,velocity,lower_uy,-0.31572985649108887 +karman_re100,ppo,271,108.4,velocity,upper_ux,1.2599562406539917 +karman_re100,ppo,271,108.4,velocity,upper_uy,-0.2816632390022278 +karman_re100,ppo,271,108.4,velocity,center_ux,1.006864070892334 +karman_re100,ppo,271,108.4,velocity,center_uy,-0.44574692845344543 +karman_re100,ppo,271,108.4,velocity,lower_ux,0.798438549041748 +karman_re100,ppo,271,108.4,velocity,lower_uy,-0.22090217471122742 +karman_re100,ppo,272,108.8,velocity,upper_ux,1.288111925125122 +karman_re100,ppo,272,108.8,velocity,upper_uy,-0.14385336637496948 +karman_re100,ppo,272,108.8,velocity,center_ux,0.9966062307357788 +karman_re100,ppo,272,108.8,velocity,center_uy,-0.20621195435523987 +karman_re100,ppo,272,108.8,velocity,lower_ux,0.7660656571388245 +karman_re100,ppo,272,108.8,velocity,lower_uy,-0.08371767401695251 +karman_re100,ppo,273,109.2,velocity,upper_ux,1.273033857345581 +karman_re100,ppo,273,109.2,velocity,upper_uy,0.025525813922286034 +karman_re100,ppo,273,109.2,velocity,center_ux,0.999703049659729 +karman_re100,ppo,273,109.2,velocity,center_uy,0.15131287276744843 +karman_re100,ppo,273,109.2,velocity,lower_ux,0.7776577472686768 +karman_re100,ppo,273,109.2,velocity,lower_uy,0.0634656697511673 +karman_re100,ppo,274,109.6,velocity,upper_ux,1.2308015823364258 +karman_re100,ppo,274,109.6,velocity,upper_uy,0.1627645641565323 +karman_re100,ppo,274,109.6,velocity,center_ux,1.007695198059082 +karman_re100,ppo,274,109.6,velocity,center_uy,0.39337173104286194 +karman_re100,ppo,274,109.6,velocity,lower_ux,0.8316800594329834 +karman_re100,ppo,274,109.6,velocity,lower_uy,0.17977191507816315 +karman_re100,ppo,275,110.0,velocity,upper_ux,1.1723995208740234 +karman_re100,ppo,275,110.0,velocity,upper_uy,0.2628231942653656 +karman_re100,ppo,275,110.0,velocity,center_ux,1.0134934186935425 +karman_re100,ppo,275,110.0,velocity,center_uy,0.47747802734375 +karman_re100,ppo,275,110.0,velocity,lower_ux,0.9008543491363525 +karman_re100,ppo,275,110.0,velocity,lower_uy,0.26754680275917053 +karman_re100,ppo,276,110.4,velocity,upper_ux,1.1052439212799072 +karman_re100,ppo,276,110.4,velocity,upper_uy,0.3293662369251251 +karman_re100,ppo,276,110.4,velocity,center_ux,1.0199470520019531 +karman_re100,ppo,276,110.4,velocity,center_uy,0.5121759176254272 +karman_re100,ppo,276,110.4,velocity,lower_ux,0.9728091359138489 +karman_re100,ppo,276,110.4,velocity,lower_uy,0.32617640495300293 +karman_re100,ppo,277,110.8,velocity,upper_ux,1.035892367362976 +karman_re100,ppo,277,110.8,velocity,upper_uy,0.36069315671920776 +karman_re100,ppo,277,110.8,velocity,center_ux,1.0266828536987305 +karman_re100,ppo,277,110.8,velocity,center_uy,0.5352171063423157 +karman_re100,ppo,277,110.8,velocity,lower_ux,1.0447555780410767 +karman_re100,ppo,277,110.8,velocity,lower_uy,0.363190621137619 +karman_re100,ppo,278,111.2,velocity,upper_ux,0.9661091566085815 +karman_re100,ppo,278,111.2,velocity,upper_uy,0.35666680335998535 +karman_re100,ppo,278,111.2,velocity,center_ux,1.031968593597412 +karman_re100,ppo,278,111.2,velocity,center_uy,0.5382391810417175 +karman_re100,ppo,278,111.2,velocity,lower_ux,1.1142613887786865 +karman_re100,ppo,278,111.2,velocity,lower_uy,0.37716448307037354 +karman_re100,ppo,279,111.6,velocity,upper_ux,0.8991124629974365 +karman_re100,ppo,279,111.6,velocity,upper_uy,0.3096543550491333 +karman_re100,ppo,279,111.6,velocity,center_ux,1.0320230722427368 +karman_re100,ppo,279,111.6,velocity,center_uy,0.505196213722229 +karman_re100,ppo,279,111.6,velocity,lower_ux,1.179244875907898 +karman_re100,ppo,279,111.6,velocity,lower_uy,0.35320720076560974 +karman_re100,ppo,280,112.0,velocity,upper_ux,0.8425679206848145 +karman_re100,ppo,280,112.0,velocity,upper_uy,0.21390752494335175 +karman_re100,ppo,280,112.0,velocity,center_ux,1.0208125114440918 +karman_re100,ppo,280,112.0,velocity,center_uy,0.41790521144866943 +karman_re100,ppo,280,112.0,velocity,lower_ux,1.2392406463623047 +karman_re100,ppo,280,112.0,velocity,lower_uy,0.29343104362487793 +karman_re100,ppo,281,112.4,velocity,upper_ux,0.8081363439559937 +karman_re100,ppo,281,112.4,velocity,upper_uy,0.07606866955757141 +karman_re100,ppo,281,112.4,velocity,center_ux,0.9979261755943298 +karman_re100,ppo,281,112.4,velocity,center_uy,0.214868426322937 +karman_re100,ppo,281,112.4,velocity,lower_ux,1.2767199277877808 +karman_re100,ppo,281,112.4,velocity,lower_uy,0.17967502772808075 +karman_re100,ppo,282,112.8,velocity,upper_ux,0.8120078444480896 +karman_re100,ppo,282,112.8,velocity,upper_uy,-0.07053374499082565 +karman_re100,ppo,282,112.8,velocity,center_ux,0.9827624559402466 +karman_re100,ppo,282,112.8,velocity,center_uy,-0.10082897543907166 +karman_re100,ppo,282,112.8,velocity,lower_ux,1.2741678953170776 +karman_re100,ppo,282,112.8,velocity,lower_uy,0.01966337114572525 +karman_re100,ppo,283,113.2,velocity,upper_ux,0.8540832996368408 +karman_re100,ppo,283,113.2,velocity,upper_uy,-0.19100823998451233 +karman_re100,ppo,283,113.2,velocity,center_ux,0.983349621295929 +karman_re100,ppo,283,113.2,velocity,center_uy,-0.3436276316642761 +karman_re100,ppo,283,113.2,velocity,lower_ux,1.2336345911026 +karman_re100,ppo,283,113.2,velocity,lower_uy,-0.1333649456501007 +karman_re100,ppo,284,113.6,velocity,upper_ux,0.9146234393119812 +karman_re100,ppo,284,113.6,velocity,upper_uy,-0.28144264221191406 +karman_re100,ppo,284,113.6,velocity,center_ux,0.9900287389755249 +karman_re100,ppo,284,113.6,velocity,center_uy,-0.45794177055358887 +karman_re100,ppo,284,113.6,velocity,lower_ux,1.1654123067855835 +karman_re100,ppo,284,113.6,velocity,lower_uy,-0.2516525983810425 +karman_re100,ppo,285,114.0,velocity,upper_ux,0.9840989708900452 +karman_re100,ppo,285,114.0,velocity,upper_uy,-0.3377579152584076 +karman_re100,ppo,285,114.0,velocity,center_ux,0.9987162947654724 +karman_re100,ppo,285,114.0,velocity,center_uy,-0.514950156211853 +karman_re100,ppo,285,114.0,velocity,lower_ux,1.0879801511764526 +karman_re100,ppo,285,114.0,velocity,lower_uy,-0.32790976762771606 +karman_re100,ppo,286,114.4,velocity,upper_ux,1.0562351942062378 +karman_re100,ppo,286,114.4,velocity,upper_uy,-0.37419262528419495 +karman_re100,ppo,286,114.4,velocity,center_ux,1.0077325105667114 +karman_re100,ppo,286,114.4,velocity,center_uy,-0.5481169819831848 +karman_re100,ppo,286,114.4,velocity,lower_ux,1.0112109184265137 +karman_re100,ppo,286,114.4,velocity,lower_uy,-0.36335209012031555 +karman_re100,ppo,287,114.8,velocity,upper_ux,1.1269956827163696 +karman_re100,ppo,287,114.8,velocity,upper_uy,-0.38613128662109375 +karman_re100,ppo,287,114.8,velocity,center_ux,1.0141968727111816 +karman_re100,ppo,287,114.8,velocity,center_uy,-0.5594542026519775 +karman_re100,ppo,287,114.8,velocity,lower_ux,0.9352542757987976 +karman_re100,ppo,287,114.8,velocity,lower_uy,-0.3626742660999298 +karman_re100,ppo,288,115.2,velocity,upper_ux,1.194503903388977 +karman_re100,ppo,288,115.2,velocity,upper_uy,-0.35830843448638916 +karman_re100,ppo,288,115.2,velocity,center_ux,1.0150978565216064 +karman_re100,ppo,288,115.2,velocity,center_uy,-0.5364124774932861 +karman_re100,ppo,288,115.2,velocity,lower_ux,0.8625513315200806 +karman_re100,ppo,288,115.2,velocity,lower_uy,-0.3203190565109253 +karman_re100,ppo,289,115.6,velocity,upper_ux,1.256205677986145 +karman_re100,ppo,289,115.6,velocity,upper_uy,-0.2888704538345337 +karman_re100,ppo,289,115.6,velocity,center_ux,1.0071310997009277 +karman_re100,ppo,289,115.6,velocity,center_uy,-0.4556722640991211 +karman_re100,ppo,289,115.6,velocity,lower_ux,0.8020155429840088 +karman_re100,ppo,289,115.6,velocity,lower_uy,-0.22909043729305267 +karman_re100,ppo,290,116.0,velocity,upper_ux,1.287777066230774 +karman_re100,ppo,290,116.0,velocity,upper_uy,-0.1557491421699524 +karman_re100,ppo,290,116.0,velocity,center_ux,0.9961768388748169 +karman_re100,ppo,290,116.0,velocity,center_uy,-0.22989189624786377 +karman_re100,ppo,290,116.0,velocity,lower_ux,0.767231285572052 +karman_re100,ppo,290,116.0,velocity,lower_uy,-0.09442707151174545 +karman_re100,ppo,291,116.4,velocity,upper_ux,1.2758185863494873 +karman_re100,ppo,291,116.4,velocity,upper_uy,0.014023268595337868 +karman_re100,ppo,291,116.4,velocity,center_ux,0.9985004663467407 +karman_re100,ppo,291,116.4,velocity,center_uy,0.12687045335769653 +karman_re100,ppo,291,116.4,velocity,lower_ux,0.7756080031394958 +karman_re100,ppo,291,116.4,velocity,lower_uy,0.05348709598183632 +karman_re100,ppo,292,116.8,velocity,upper_ux,1.235224723815918 +karman_re100,ppo,292,116.8,velocity,upper_uy,0.15454497933387756 +karman_re100,ppo,292,116.8,velocity,center_ux,1.0070054531097412 +karman_re100,ppo,292,116.8,velocity,center_uy,0.3823631703853607 +karman_re100,ppo,292,116.8,velocity,lower_ux,0.8275612592697144 +karman_re100,ppo,292,116.8,velocity,lower_uy,0.1723344624042511 +karman_re100,ppo,293,117.2,velocity,upper_ux,1.1771351099014282 +karman_re100,ppo,293,117.2,velocity,upper_uy,0.2570628821849823 +karman_re100,ppo,293,117.2,velocity,center_ux,1.012651801109314 +karman_re100,ppo,293,117.2,velocity,center_uy,0.4742341935634613 +karman_re100,ppo,293,117.2,velocity,lower_ux,0.8957833647727966 +karman_re100,ppo,293,117.2,velocity,lower_uy,0.2620055079460144 +karman_re100,ppo,294,117.6,velocity,upper_ux,1.1100873947143555 +karman_re100,ppo,294,117.6,velocity,upper_uy,0.32609790563583374 +karman_re100,ppo,294,117.6,velocity,center_ux,1.0190529823303223 +karman_re100,ppo,294,117.6,velocity,center_uy,0.5102363228797913 +karman_re100,ppo,294,117.6,velocity,lower_ux,0.9673802256584167 +karman_re100,ppo,294,117.6,velocity,lower_uy,0.3228033185005188 +karman_re100,ppo,295,118.0,velocity,upper_ux,1.0409232378005981 +karman_re100,ppo,295,118.0,velocity,upper_uy,0.35978230834007263 +karman_re100,ppo,295,118.0,velocity,center_ux,1.0260553359985352 +karman_re100,ppo,295,118.0,velocity,center_uy,0.5340215563774109 +karman_re100,ppo,295,118.0,velocity,lower_ux,1.0395182371139526 +karman_re100,ppo,295,118.0,velocity,lower_uy,0.36100441217422485 +karman_re100,ppo,296,118.4,velocity,upper_ux,0.9712299108505249 +karman_re100,ppo,296,118.4,velocity,upper_uy,0.35839614272117615 +karman_re100,ppo,296,118.4,velocity,center_ux,1.03169584274292 +karman_re100,ppo,296,118.4,velocity,center_uy,0.5390713214874268 +karman_re100,ppo,296,118.4,velocity,lower_ux,1.109384536743164 +karman_re100,ppo,296,118.4,velocity,lower_uy,0.3773133456707001 +karman_re100,ppo,297,118.8,velocity,upper_ux,0.904176652431488 +karman_re100,ppo,297,118.8,velocity,upper_uy,0.3146241009235382 +karman_re100,ppo,297,118.8,velocity,center_ux,1.032698631286621 +karman_re100,ppo,297,118.8,velocity,center_uy,0.5088326930999756 +karman_re100,ppo,297,118.8,velocity,lower_ux,1.1750215291976929 +karman_re100,ppo,297,118.8,velocity,lower_uy,0.3560505211353302 +karman_re100,ppo,298,119.2,velocity,upper_ux,0.8464153409004211 +karman_re100,ppo,298,119.2,velocity,upper_uy,0.2222151905298233 +karman_re100,ppo,298,119.2,velocity,center_ux,1.022308588027954 +karman_re100,ppo,298,119.2,velocity,center_uy,0.4266798496246338 +karman_re100,ppo,298,119.2,velocity,lower_ux,1.2355252504348755 +karman_re100,ppo,298,119.2,velocity,lower_uy,0.2991243302822113 +karman_re100,ppo,299,119.6,velocity,upper_ux,0.809414803981781 +karman_re100,ppo,299,119.6,velocity,upper_uy,0.08654887229204178 +karman_re100,ppo,299,119.6,velocity,center_ux,0.9993729591369629 +karman_re100,ppo,299,119.6,velocity,center_uy,0.23424361646175385 +karman_re100,ppo,299,119.6,velocity,lower_ux,1.2750191688537598 +karman_re100,ppo,299,119.6,velocity,lower_uy,0.18987619876861572 +karman_re100,ppo,300,120.0,velocity,upper_ux,0.8102176785469055 +karman_re100,ppo,300,120.0,velocity,upper_uy,-0.06094738841056824 +karman_re100,ppo,300,120.0,velocity,center_ux,0.9830091595649719 +karman_re100,ppo,300,120.0,velocity,center_uy,-0.07846856862306595 +karman_re100,ppo,300,120.0,velocity,lower_ux,1.2753703594207764 +karman_re100,ppo,300,120.0,velocity,lower_uy,0.03148695081472397 +karman_re100,ppo,301,120.4,velocity,upper_ux,0.8502693772315979 +karman_re100,ppo,301,120.4,velocity,upper_uy,-0.18347930908203125 +karman_re100,ppo,301,120.4,velocity,center_ux,0.982868492603302 +karman_re100,ppo,301,120.4,velocity,center_uy,-0.3310542702674866 +karman_re100,ppo,301,120.4,velocity,lower_ux,1.2374539375305176 +karman_re100,ppo,301,120.4,velocity,lower_uy,-0.12336886674165726 +karman_re100,ppo,302,120.8,velocity,upper_ux,0.9101526737213135 +karman_re100,ppo,302,120.8,velocity,upper_uy,-0.2761930227279663 +karman_re100,ppo,302,120.8,velocity,center_ux,0.9895589351654053 +karman_re100,ppo,302,120.8,velocity,center_uy,-0.452164888381958 +karman_re100,ppo,302,120.8,velocity,lower_ux,1.1708203554153442 +karman_re100,ppo,302,120.8,velocity,lower_uy,-0.24450145661830902 +karman_re100,ppo,303,121.2,velocity,upper_ux,0.9794467091560364 +karman_re100,ppo,303,121.2,velocity,upper_uy,-0.33455890417099 +karman_re100,ppo,303,121.2,velocity,center_ux,0.9984014630317688 +karman_re100,ppo,303,121.2,velocity,center_uy,-0.5117514729499817 +karman_re100,ppo,303,121.2,velocity,lower_ux,1.0937904119491577 +karman_re100,ppo,303,121.2,velocity,lower_uy,-0.3238787353038788 +karman_re100,ppo,304,121.6,velocity,upper_ux,1.0511199235916138 +karman_re100,ppo,304,121.6,velocity,upper_uy,-0.3721046447753906 +karman_re100,ppo,304,121.6,velocity,center_ux,1.0070892572402954 +karman_re100,ppo,304,121.6,velocity,center_uy,-0.5461910963058472 +karman_re100,ppo,304,121.6,velocity,lower_ux,1.0164984464645386 +karman_re100,ppo,304,121.6,velocity,lower_uy,-0.3620327115058899 +karman_re100,ppo,305,122.0,velocity,upper_ux,1.1218209266662598 +karman_re100,ppo,305,122.0,velocity,upper_uy,-0.3864823877811432 +karman_re100,ppo,305,122.0,velocity,center_ux,1.0136092901229858 +karman_re100,ppo,305,122.0,velocity,center_uy,-0.5595731139183044 +karman_re100,ppo,305,122.0,velocity,lower_ux,0.9403018951416016 +karman_re100,ppo,305,122.0,velocity,lower_uy,-0.36398860812187195 +karman_re100,ppo,306,122.4,velocity,upper_ux,1.18960702419281 +karman_re100,ppo,306,122.4,velocity,upper_uy,-0.3614629805088043 +karman_re100,ppo,306,122.4,velocity,center_ux,1.0152111053466797 +karman_re100,ppo,306,122.4,velocity,center_uy,-0.5393023490905762 +karman_re100,ppo,306,122.4,velocity,lower_ux,0.8672935366630554 +karman_re100,ppo,306,122.4,velocity,lower_uy,-0.32494527101516724 +karman_re100,ppo,307,122.8,velocity,upper_ux,1.2522821426391602 +karman_re100,ppo,307,122.8,velocity,upper_uy,-0.2955697476863861 +karman_re100,ppo,307,122.8,velocity,center_ux,1.008015513420105 +karman_re100,ppo,307,122.8,velocity,center_uy,-0.46469348669052124 +karman_re100,ppo,307,122.8,velocity,lower_ux,0.8056171536445618 +karman_re100,ppo,307,122.8,velocity,lower_uy,-0.23724433779716492 +karman_re100,ppo,308,123.2,velocity,upper_ux,1.2872614860534668 +karman_re100,ppo,308,123.2,velocity,upper_uy,-0.1672491431236267 +karman_re100,ppo,308,123.2,velocity,center_ux,0.9971095323562622 +karman_re100,ppo,308,123.2,velocity,center_uy,-0.2522493600845337 +karman_re100,ppo,308,123.2,velocity,lower_ux,0.7687846422195435 +karman_re100,ppo,308,123.2,velocity,lower_uy,-0.10504023730754852 +karman_re100,ppo,309,123.6,velocity,upper_ux,1.2778996229171753 +karman_re100,ppo,309,123.6,velocity,upper_uy,0.0024966467171907425 +karman_re100,ppo,309,123.6,velocity,center_ux,0.9983834624290466 +karman_re100,ppo,309,123.6,velocity,center_uy,0.10239607840776443 +karman_re100,ppo,309,123.6,velocity,lower_ux,0.7736608982086182 +karman_re100,ppo,309,123.6,velocity,lower_uy,0.04359479248523712 +karman_re100,ppo,310,124.0,velocity,upper_ux,1.238437294960022 +karman_re100,ppo,310,124.0,velocity,upper_uy,0.14600034058094025 +karman_re100,ppo,310,124.0,velocity,center_ux,1.0064796209335327 +karman_re100,ppo,310,124.0,velocity,center_uy,0.3705238103866577 +karman_re100,ppo,310,124.0,velocity,lower_ux,0.8228735327720642 +karman_re100,ppo,310,124.0,velocity,lower_uy,0.1650363802909851 +karman_re100,ppo,311,124.4,velocity,upper_ux,1.181400179862976 +karman_re100,ppo,311,124.4,velocity,upper_uy,0.25078442692756653 +karman_re100,ppo,311,124.4,velocity,center_ux,1.0121638774871826 +karman_re100,ppo,311,124.4,velocity,center_uy,0.4706064462661743 +karman_re100,ppo,311,124.4,velocity,lower_ux,0.8906806707382202 +karman_re100,ppo,311,124.4,velocity,lower_uy,0.25646793842315674 +karman_re100,ppo,312,124.8,velocity,upper_ux,1.1148015260696411 +karman_re100,ppo,312,124.8,velocity,upper_uy,0.3222670257091522 +karman_re100,ppo,312,124.8,velocity,center_ux,1.0184978246688843 +karman_re100,ppo,312,124.8,velocity,center_uy,0.5080810189247131 +karman_re100,ppo,312,124.8,velocity,lower_ux,0.9621755480766296 +karman_re100,ppo,312,124.8,velocity,lower_uy,0.3194136619567871 +karman_re100,ppo,313,125.2,velocity,upper_ux,1.0459221601486206 +karman_re100,ppo,313,125.2,velocity,upper_uy,0.3583511412143707 +karman_re100,ppo,313,125.2,velocity,center_ux,1.0256847143173218 +karman_re100,ppo,313,125.2,velocity,center_uy,0.5326366424560547 +karman_re100,ppo,313,125.2,velocity,lower_ux,1.0345882177352905 +karman_re100,ppo,313,125.2,velocity,lower_uy,0.35878559947013855 +karman_re100,ppo,314,125.6,velocity,upper_ux,0.9764775037765503 +karman_re100,ppo,314,125.6,velocity,upper_uy,0.3595776855945587 +karman_re100,ppo,314,125.6,velocity,center_ux,1.0317310094833374 +karman_re100,ppo,314,125.6,velocity,center_uy,0.5396590232849121 +karman_re100,ppo,314,125.6,velocity,lower_ux,1.1049911975860596 +karman_re100,ppo,314,125.6,velocity,lower_uy,0.37727147340774536 +karman_re100,ppo,315,126.0,velocity,upper_ux,0.9086971879005432 +karman_re100,ppo,315,126.0,velocity,upper_uy,0.31903231143951416 +karman_re100,ppo,315,126.0,velocity,center_ux,1.0328664779663086 +karman_re100,ppo,315,126.0,velocity,center_uy,0.5122138857841492 +karman_re100,ppo,315,126.0,velocity,lower_ux,1.1706016063690186 +karman_re100,ppo,315,126.0,velocity,lower_uy,0.35867851972579956 +karman_re100,ppo,316,126.4,velocity,upper_ux,0.8497384786605835 +karman_re100,ppo,316,126.4,velocity,upper_uy,0.23007293045520782 +karman_re100,ppo,316,126.4,velocity,center_ux,1.0231287479400635 +karman_re100,ppo,316,126.4,velocity,center_uy,0.43497899174690247 +karman_re100,ppo,316,126.4,velocity,lower_ux,1.2314326763153076 +karman_re100,ppo,316,126.4,velocity,lower_uy,0.30443909764289856 +karman_re100,ppo,317,126.8,velocity,upper_ux,0.8108679056167603 +karman_re100,ppo,317,126.8,velocity,upper_uy,0.09684127569198608 +karman_re100,ppo,317,126.8,velocity,center_ux,1.0007233619689941 +karman_re100,ppo,317,126.8,velocity,center_uy,0.25270751118659973 +karman_re100,ppo,317,126.8,velocity,lower_ux,1.273364543914795 +karman_re100,ppo,317,126.8,velocity,lower_uy,0.19958093762397766 +karman_re100,ppo,318,127.2,velocity,upper_ux,0.808674156665802 +karman_re100,ppo,318,127.2,velocity,upper_uy,-0.05124557018280029 +karman_re100,ppo,318,127.2,velocity,center_ux,0.983193576335907 +karman_re100,ppo,318,127.2,velocity,center_uy,-0.05625160038471222 +karman_re100,ppo,318,127.2,velocity,lower_ux,1.2766169309616089 +karman_re100,ppo,318,127.2,velocity,lower_uy,0.04306715354323387 +karman_re100,ppo,319,127.6,velocity,upper_ux,0.846891462802887 +karman_re100,ppo,319,127.6,velocity,upper_uy,-0.17585201561450958 +karman_re100,ppo,319,127.6,velocity,center_ux,0.9825724959373474 +karman_re100,ppo,319,127.6,velocity,center_uy,-0.3182823657989502 +karman_re100,ppo,319,127.6,velocity,lower_ux,1.2415447235107422 +karman_re100,ppo,319,127.6,velocity,lower_uy,-0.11352619528770447 +karman_re100,ppo,320,128.0,velocity,upper_ux,0.9058759808540344 +karman_re100,ppo,320,128.0,velocity,upper_uy,-0.2708665728569031 +karman_re100,ppo,320,128.0,velocity,center_ux,0.9890933036804199 +karman_re100,ppo,320,128.0,velocity,center_uy,-0.4465499520301819 +karman_re100,ppo,320,128.0,velocity,lower_ux,1.1762524843215942 +karman_re100,ppo,320,128.0,velocity,lower_uy,-0.23751409351825714 +karman_re100,ppo,321,128.4,velocity,upper_ux,0.9743229746818542 +karman_re100,ppo,321,128.4,velocity,upper_uy,-0.33139359951019287 +karman_re100,ppo,321,128.4,velocity,center_ux,0.9974909424781799 +karman_re100,ppo,321,128.4,velocity,center_uy,-0.5087932348251343 +karman_re100,ppo,321,128.4,velocity,lower_ux,1.0989880561828613 +karman_re100,ppo,321,128.4,velocity,lower_uy,-0.31995537877082825 +karman_re100,ppo,322,128.8,velocity,upper_ux,1.0459240674972534 +karman_re100,ppo,322,128.8,velocity,upper_uy,-0.3700350224971771 +karman_re100,ppo,322,128.8,velocity,center_ux,1.0062663555145264 +karman_re100,ppo,322,128.8,velocity,center_uy,-0.5444808006286621 +karman_re100,ppo,322,128.8,velocity,lower_ux,1.0215613842010498 +karman_re100,ppo,322,128.8,velocity,lower_uy,-0.3607879877090454 +karman_re100,ppo,323,129.2,velocity,upper_ux,1.1168516874313354 +karman_re100,ppo,323,129.2,velocity,upper_uy,-0.3867327868938446 +karman_re100,ppo,323,129.2,velocity,center_ux,1.0131109952926636 +karman_re100,ppo,323,129.2,velocity,center_uy,-0.5597900748252869 +karman_re100,ppo,323,129.2,velocity,lower_ux,0.9453519582748413 +karman_re100,ppo,323,129.2,velocity,lower_uy,-0.36528992652893066 +karman_re100,ppo,324,129.6,velocity,upper_ux,1.184993028640747 +karman_re100,ppo,324,129.6,velocity,upper_uy,-0.36452412605285645 +karman_re100,ppo,324,129.6,velocity,center_ux,1.0154181718826294 +karman_re100,ppo,324,129.6,velocity,center_uy,-0.54218590259552 +karman_re100,ppo,324,129.6,velocity,lower_ux,0.8720706105232239 +karman_re100,ppo,324,129.6,velocity,lower_uy,-0.32943275570869446 +karman_re100,ppo,325,130.0,velocity,upper_ux,1.2487467527389526 +karman_re100,ppo,325,130.0,velocity,upper_uy,-0.3019222915172577 +karman_re100,ppo,325,130.0,velocity,center_ux,1.009217619895935 +karman_re100,ppo,325,130.0,velocity,center_uy,-0.4730786979198456 +karman_re100,ppo,325,130.0,velocity,lower_ux,0.8094897270202637 +karman_re100,ppo,325,130.0,velocity,lower_uy,-0.24512235820293427 +karman_re100,ppo,326,130.4,velocity,upper_ux,1.2863212823867798 +karman_re100,ppo,326,130.4,velocity,upper_uy,-0.178308367729187 +karman_re100,ppo,326,130.4,velocity,center_ux,0.9978938102722168 +karman_re100,ppo,326,130.4,velocity,center_uy,-0.2733457088470459 +karman_re100,ppo,326,130.4,velocity,lower_ux,0.770073413848877 +karman_re100,ppo,326,130.4,velocity,lower_uy,-0.11535599082708359 +karman_re100,ppo,327,130.8,velocity,upper_ux,1.2793179750442505 +karman_re100,ppo,327,130.8,velocity,upper_uy,-0.00900146272033453 +karman_re100,ppo,327,130.8,velocity,center_ux,0.997957706451416 +karman_re100,ppo,327,130.8,velocity,center_uy,0.07788705825805664 +karman_re100,ppo,327,130.8,velocity,lower_ux,0.771288275718689 +karman_re100,ppo,327,130.8,velocity,lower_uy,0.033800553530454636 +karman_re100,ppo,328,131.2,velocity,upper_ux,1.241504430770874 +karman_re100,ppo,328,131.2,velocity,upper_uy,0.1373399794101715 +karman_re100,ppo,328,131.2,velocity,center_ux,1.006117343902588 +karman_re100,ppo,328,131.2,velocity,center_uy,0.3580752909183502 +karman_re100,ppo,328,131.2,velocity,lower_ux,0.818152666091919 +karman_re100,ppo,328,131.2,velocity,lower_uy,0.15786996483802795 +karman_re100,ppo,329,131.6,velocity,upper_ux,1.185567021369934 +karman_re100,ppo,329,131.6,velocity,upper_uy,0.24437032639980316 +karman_re100,ppo,329,131.6,velocity,center_ux,1.0118129253387451 +karman_re100,ppo,329,131.6,velocity,center_uy,0.46690890192985535 +karman_re100,ppo,329,131.6,velocity,lower_ux,0.885558009147644 +karman_re100,ppo,329,131.6,velocity,lower_uy,0.2509888708591461 +karman_re100,ppo,330,132.0,velocity,upper_ux,1.1196846961975098 +karman_re100,ppo,330,132.0,velocity,upper_uy,0.3183203935623169 +karman_re100,ppo,330,132.0,velocity,center_ux,1.018244981765747 +karman_re100,ppo,330,132.0,velocity,center_uy,0.5060142874717712 +karman_re100,ppo,330,132.0,velocity,lower_ux,0.9572190046310425 +karman_re100,ppo,330,132.0,velocity,lower_uy,0.3160526752471924 +karman_re100,ppo,331,132.4,velocity,upper_ux,1.0509498119354248 +karman_re100,ppo,331,132.4,velocity,upper_uy,0.3568798303604126 +karman_re100,ppo,331,132.4,velocity,center_ux,1.0254592895507812 +karman_re100,ppo,331,132.4,velocity,center_uy,0.5313374996185303 +karman_re100,ppo,331,132.4,velocity,lower_ux,1.0298120975494385 +karman_re100,ppo,331,132.4,velocity,lower_uy,0.356609582901001 +karman_re100,ppo,332,132.8,velocity,upper_ux,0.9811215400695801 +karman_re100,ppo,332,132.8,velocity,upper_uy,0.3607485592365265 +karman_re100,ppo,332,132.8,velocity,center_ux,1.0312445163726807 +karman_re100,ppo,332,132.8,velocity,center_uy,0.540291965007782 +karman_re100,ppo,332,132.8,velocity,lower_ux,1.100094199180603 +karman_re100,ppo,332,132.8,velocity,lower_uy,0.37715280055999756 +karman_re100,ppo,333,133.2,velocity,upper_ux,0.912962794303894 +karman_re100,ppo,333,133.2,velocity,upper_uy,0.32348963618278503 +karman_re100,ppo,333,133.2,velocity,center_ux,1.0328056812286377 +karman_re100,ppo,333,133.2,velocity,center_uy,0.515671968460083 +karman_re100,ppo,333,133.2,velocity,lower_ux,1.165981411933899 +karman_re100,ppo,333,133.2,velocity,lower_uy,0.361253559589386 +karman_re100,ppo,334,133.6,velocity,upper_ux,0.8531617522239685 +karman_re100,ppo,334,133.6,velocity,upper_uy,0.23806849122047424 +karman_re100,ppo,334,133.6,velocity,center_ux,1.0240823030471802 +karman_re100,ppo,334,133.6,velocity,center_uy,0.4431886672973633 +karman_re100,ppo,334,133.6,velocity,lower_ux,1.227412462234497 +karman_re100,ppo,334,133.6,velocity,lower_uy,0.3095732033252716 +karman_re100,ppo,335,134.0,velocity,upper_ux,0.8124994039535522 +karman_re100,ppo,335,134.0,velocity,upper_uy,0.10743526369333267 +karman_re100,ppo,335,134.0,velocity,center_ux,1.002395510673523 +karman_re100,ppo,335,134.0,velocity,center_uy,0.270847886800766 +karman_re100,ppo,335,134.0,velocity,lower_ux,1.2716904878616333 +karman_re100,ppo,335,134.0,velocity,lower_uy,0.20900431275367737 +karman_re100,ppo,336,134.4,velocity,upper_ux,0.8075599074363708 +karman_re100,ppo,336,134.4,velocity,upper_uy,-0.041137486696243286 +karman_re100,ppo,336,134.4,velocity,center_ux,0.984093189239502 +karman_re100,ppo,336,134.4,velocity,center_uy,-0.03359304741024971 +karman_re100,ppo,336,134.4,velocity,lower_ux,1.2781004905700684 +karman_re100,ppo,336,134.4,velocity,lower_uy,0.054611701518297195 +karman_re100,ppo,337,134.8,velocity,upper_ux,0.8433181047439575 +karman_re100,ppo,337,134.8,velocity,upper_uy,-0.16795691847801208 +karman_re100,ppo,337,134.8,velocity,center_ux,0.9824398159980774 +karman_re100,ppo,337,134.8,velocity,center_uy,-0.304830938577652 +karman_re100,ppo,337,134.8,velocity,lower_ux,1.2454304695129395 +karman_re100,ppo,337,134.8,velocity,lower_uy,-0.10349233448505402 +karman_re100,ppo,338,135.2,velocity,upper_ux,0.9010682702064514 +karman_re100,ppo,338,135.2,velocity,upper_uy,-0.265255868434906 +karman_re100,ppo,338,135.2,velocity,center_ux,0.9884256720542908 +karman_re100,ppo,338,135.2,velocity,center_uy,-0.4406532049179077 +karman_re100,ppo,338,135.2,velocity,lower_ux,1.1813865900039673 +karman_re100,ppo,338,135.2,velocity,lower_uy,-0.2301320880651474 +karman_re100,ppo,339,135.6,velocity,upper_ux,0.9691236615180969 +karman_re100,ppo,339,135.6,velocity,upper_uy,-0.3280862867832184 +karman_re100,ppo,339,135.6,velocity,center_ux,0.9968084096908569 +karman_re100,ppo,339,135.6,velocity,center_uy,-0.5056410431861877 +karman_re100,ppo,339,135.6,velocity,lower_ux,1.1044912338256836 +karman_re100,ppo,339,135.6,velocity,lower_uy,-0.31556159257888794 +karman_re100,ppo,340,136.0,velocity,upper_ux,1.0407081842422485 +karman_re100,ppo,340,136.0,velocity,upper_uy,-0.36783793568611145 +karman_re100,ppo,340,136.0,velocity,center_ux,1.0056525468826294 +karman_re100,ppo,340,136.0,velocity,center_uy,-0.5425682663917542 +karman_re100,ppo,340,136.0,velocity,lower_ux,1.0269832611083984 +karman_re100,ppo,340,136.0,velocity,lower_uy,-0.35909950733184814 +karman_re100,ppo,341,136.4,velocity,upper_ux,1.1120530366897583 +karman_re100,ppo,341,136.4,velocity,upper_uy,-0.3867688477039337 +karman_re100,ppo,341,136.4,velocity,center_ux,1.0129399299621582 +karman_re100,ppo,341,136.4,velocity,center_uy,-0.5597066879272461 +karman_re100,ppo,341,136.4,velocity,lower_ux,0.9509408473968506 +karman_re100,ppo,341,136.4,velocity,lower_uy,-0.3661263585090637 +karman_re100,ppo,342,136.8,velocity,upper_ux,1.1805574893951416 +karman_re100,ppo,342,136.8,velocity,upper_uy,-0.36742621660232544 +karman_re100,ppo,342,136.8,velocity,center_ux,1.0158191919326782 +karman_re100,ppo,342,136.8,velocity,center_uy,-0.5447067022323608 +karman_re100,ppo,342,136.8,velocity,lower_ux,0.877371072769165 +karman_re100,ppo,342,136.8,velocity,lower_uy,-0.3334079384803772 +karman_re100,ppo,343,137.2,velocity,upper_ux,1.244664192199707 +karman_re100,ppo,343,137.2,velocity,upper_uy,-0.3080461621284485 +karman_re100,ppo,343,137.2,velocity,center_ux,1.0098485946655273 +karman_re100,ppo,343,137.2,velocity,center_uy,-0.48077452182769775 +karman_re100,ppo,343,137.2,velocity,lower_ux,0.8133106231689453 +karman_re100,ppo,343,137.2,velocity,lower_uy,-0.2525615394115448 +karman_re100,ppo,344,137.6,velocity,upper_ux,1.285020112991333 +karman_re100,ppo,344,137.6,velocity,upper_uy,-0.1893424242734909 +karman_re100,ppo,344,137.6,velocity,center_ux,0.9981752038002014 +karman_re100,ppo,344,137.6,velocity,center_uy,-0.29383385181427 +karman_re100,ppo,344,137.6,velocity,lower_ux,0.7715941667556763 +karman_re100,ppo,344,137.6,velocity,lower_uy,-0.1255246102809906 +karman_re100,ppo,345,138.0,velocity,upper_ux,1.2809977531433105 +karman_re100,ppo,345,138.0,velocity,upper_uy,-0.020913774147629738 +karman_re100,ppo,345,138.0,velocity,center_ux,0.9971686005592346 +karman_re100,ppo,345,138.0,velocity,center_uy,0.05242146551609039 +karman_re100,ppo,345,138.0,velocity,lower_ux,0.7695012092590332 +karman_re100,ppo,345,138.0,velocity,lower_uy,0.02373582310974598 +karman_re100,ppo,346,138.4,velocity,upper_ux,1.2449026107788086 +karman_re100,ppo,346,138.4,velocity,upper_uy,0.12840242683887482 +karman_re100,ppo,346,138.4,velocity,center_ux,1.0054007768630981 +karman_re100,ppo,346,138.4,velocity,center_uy,0.3443889319896698 +karman_re100,ppo,346,138.4,velocity,lower_ux,0.8137878179550171 +karman_re100,ppo,346,138.4,velocity,lower_uy,0.15036490559577942 +karman_re100,ppo,347,138.8,velocity,upper_ux,1.1902403831481934 +karman_re100,ppo,347,138.8,velocity,upper_uy,0.2378978282213211 +karman_re100,ppo,347,138.8,velocity,center_ux,1.0115787982940674 +karman_re100,ppo,347,138.8,velocity,center_uy,0.46285414695739746 +karman_re100,ppo,347,138.8,velocity,lower_ux,0.8808900713920593 +karman_re100,ppo,347,138.8,velocity,lower_uy,0.24525383114814758 +karman_re100,ppo,348,139.2,velocity,upper_ux,1.1246099472045898 +karman_re100,ppo,348,139.2,velocity,upper_uy,0.3143470585346222 +karman_re100,ppo,348,139.2,velocity,center_ux,1.0178141593933105 +karman_re100,ppo,348,139.2,velocity,center_uy,0.5038888454437256 +karman_re100,ppo,348,139.2,velocity,lower_ux,0.9522415995597839 +karman_re100,ppo,348,139.2,velocity,lower_uy,0.3125082552433014 +karman_re100,ppo,349,139.6,velocity,upper_ux,1.0556379556655884 +karman_re100,ppo,349,139.6,velocity,upper_uy,0.35537955164909363 +karman_re100,ppo,349,139.6,velocity,center_ux,1.024733543395996 +karman_re100,ppo,349,139.6,velocity,center_uy,0.5299532413482666 +karman_re100,ppo,349,139.6,velocity,lower_ux,1.024560570716858 +karman_re100,ppo,349,139.6,velocity,lower_uy,0.35429665446281433 +karman_re100,ppo,350,140.0,velocity,upper_ux,0.9858916401863098 +karman_re100,ppo,350,140.0,velocity,upper_uy,0.361842542886734 +karman_re100,ppo,350,140.0,velocity,center_ux,1.0307351350784302 +karman_re100,ppo,350,140.0,velocity,center_uy,0.5407023429870605 +karman_re100,ppo,350,140.0,velocity,lower_ux,1.0951054096221924 +karman_re100,ppo,350,140.0,velocity,lower_uy,0.3768030107021332 +karman_re100,ppo,351,140.4,velocity,upper_ux,0.9174746870994568 +karman_re100,ppo,351,140.4,velocity,upper_uy,0.32782232761383057 +karman_re100,ppo,351,140.4,velocity,center_ux,1.032812476158142 +karman_re100,ppo,351,140.4,velocity,center_uy,0.5188245177268982 +karman_re100,ppo,351,140.4,velocity,lower_ux,1.161340594291687 +karman_re100,ppo,351,140.4,velocity,lower_uy,0.3636701703071594 +karman_re100,ppo,352,140.8,velocity,upper_ux,0.8570178747177124 +karman_re100,ppo,352,140.8,velocity,upper_uy,0.24592067301273346 +karman_re100,ppo,352,140.8,velocity,center_ux,1.0252721309661865 +karman_re100,ppo,352,140.8,velocity,center_uy,0.45079725980758667 +karman_re100,ppo,352,140.8,velocity,lower_ux,1.223436713218689 +karman_re100,ppo,352,140.8,velocity,lower_uy,0.3145332932472229 +karman_re100,ppo,353,141.2,velocity,upper_ux,0.8146762847900391 +karman_re100,ppo,353,141.2,velocity,upper_uy,0.11794471740722656 +karman_re100,ppo,353,141.2,velocity,center_ux,1.00448477268219 +karman_re100,ppo,353,141.2,velocity,center_uy,0.28815117478370667 +karman_re100,ppo,353,141.2,velocity,lower_ux,1.269976258277893 +karman_re100,ppo,353,141.2,velocity,lower_uy,0.21823522448539734 +karman_re100,ppo,354,141.6,velocity,upper_ux,0.8063826560974121 +karman_re100,ppo,354,141.6,velocity,upper_uy,-0.03091886080801487 +karman_re100,ppo,354,141.6,velocity,center_ux,0.9848605394363403 +karman_re100,ppo,354,141.6,velocity,center_uy,-0.010488010942935944 +karman_re100,ppo,354,141.6,velocity,lower_ux,1.2789170742034912 +karman_re100,ppo,354,141.6,velocity,lower_uy,0.06628977507352829 +karman_re100,ppo,355,142.0,velocity,upper_ux,0.8395819067955017 +karman_re100,ppo,355,142.0,velocity,upper_uy,-0.15991434454917908 +karman_re100,ppo,355,142.0,velocity,center_ux,0.9821295142173767 +karman_re100,ppo,355,142.0,velocity,center_uy,-0.29025423526763916 +karman_re100,ppo,355,142.0,velocity,lower_ux,1.2487791776657104 +karman_re100,ppo,355,142.0,velocity,lower_uy,-0.09309633076190948 +karman_re100,ppo,356,142.4,velocity,upper_ux,0.8963961005210876 +karman_re100,ppo,356,142.4,velocity,upper_uy,-0.2594040036201477 +karman_re100,ppo,356,142.4,velocity,center_ux,0.9878736138343811 +karman_re100,ppo,356,142.4,velocity,center_uy,-0.434175580739975 +karman_re100,ppo,356,142.4,velocity,lower_ux,1.1865140199661255 +karman_re100,ppo,356,142.4,velocity,lower_uy,-0.22233504056930542 +karman_re100,ppo,357,142.8,velocity,upper_ux,0.9640045762062073 +karman_re100,ppo,357,142.8,velocity,upper_uy,-0.3245968222618103 +karman_re100,ppo,357,142.8,velocity,center_ux,0.9961907267570496 +karman_re100,ppo,357,142.8,velocity,center_uy,-0.5021575093269348 +karman_re100,ppo,357,142.8,velocity,lower_ux,1.1100795269012451 +karman_re100,ppo,357,142.8,velocity,lower_uy,-0.3107827603816986 +karman_re100,ppo,358,143.2,velocity,upper_ux,1.0358145236968994 +karman_re100,ppo,358,143.2,velocity,upper_uy,-0.3654772639274597 +karman_re100,ppo,358,143.2,velocity,center_ux,1.0053355693817139 +karman_re100,ppo,358,143.2,velocity,center_uy,-0.5404285192489624 +karman_re100,ppo,358,143.2,velocity,lower_ux,1.0327632427215576 +karman_re100,ppo,358,143.2,velocity,lower_uy,-0.3571082651615143 +karman_re100,ppo,359,143.6,velocity,upper_ux,1.1072443723678589 +karman_re100,ppo,359,143.6,velocity,upper_uy,-0.3865278661251068 +karman_re100,ppo,359,143.6,velocity,center_ux,1.012728214263916 +karman_re100,ppo,359,143.6,velocity,center_uy,-0.5593613982200623 +karman_re100,ppo,359,143.6,velocity,lower_ux,0.9565693140029907 +karman_re100,ppo,359,143.6,velocity,lower_uy,-0.36667895317077637 +karman_re100,ppo,360,144.0,velocity,upper_ux,1.1756473779678345 +karman_re100,ppo,360,144.0,velocity,upper_uy,-0.3700692355632782 +karman_re100,ppo,360,144.0,velocity,center_ux,1.0157253742218018 +karman_re100,ppo,360,144.0,velocity,center_uy,-0.5469691753387451 +karman_re100,ppo,360,144.0,velocity,lower_ux,0.8823370337486267 +karman_re100,ppo,360,144.0,velocity,lower_uy,-0.3371102809906006 +karman_re100,ppo,361,144.4,velocity,upper_ux,1.2403626441955566 +karman_re100,ppo,361,144.4,velocity,upper_uy,-0.31380966305732727 +karman_re100,ppo,361,144.4,velocity,center_ux,1.010406494140625 +karman_re100,ppo,361,144.4,velocity,center_uy,-0.4879629909992218 +karman_re100,ppo,361,144.4,velocity,lower_ux,0.8172591924667358 +karman_re100,ppo,361,144.4,velocity,lower_uy,-0.259834885597229 +karman_re100,ppo,362,144.8,velocity,upper_ux,1.2835277318954468 +karman_re100,ppo,362,144.8,velocity,upper_uy,-0.20008441805839539 +karman_re100,ppo,362,144.8,velocity,center_ux,0.9986367225646973 +karman_re100,ppo,362,144.8,velocity,center_uy,-0.31353726983070374 +karman_re100,ppo,362,144.8,velocity,lower_ux,0.77345871925354 +karman_re100,ppo,362,144.8,velocity,lower_uy,-0.13571594655513763 +karman_re100,ppo,363,145.2,velocity,upper_ux,1.2827637195587158 +karman_re100,ppo,363,145.2,velocity,upper_uy,-0.03301353380084038 +karman_re100,ppo,363,145.2,velocity,center_ux,0.9966405630111694 +karman_re100,ppo,363,145.2,velocity,center_uy,0.026410356163978577 +karman_re100,ppo,363,145.2,velocity,lower_ux,0.7682201266288757 +karman_re100,ppo,363,145.2,velocity,lower_uy,0.013324011117219925 +karman_re100,ppo,364,145.6,velocity,upper_ux,1.248642921447754 +karman_re100,ppo,364,145.6,velocity,upper_uy,0.11924951523542404 +karman_re100,ppo,364,145.6,velocity,center_ux,1.004988670349121 +karman_re100,ppo,364,145.6,velocity,center_uy,0.32964134216308594 +karman_re100,ppo,364,145.6,velocity,lower_ux,0.8099242448806763 +karman_re100,ppo,364,145.6,velocity,lower_uy,0.14249615371227264 +karman_re100,ppo,365,146.0,velocity,upper_ux,1.1947251558303833 +karman_re100,ppo,365,146.0,velocity,upper_uy,0.23131120204925537 +karman_re100,ppo,365,146.0,velocity,center_ux,1.011141061782837 +karman_re100,ppo,365,146.0,velocity,center_uy,0.45840534567832947 +karman_re100,ppo,365,146.0,velocity,lower_ux,0.8760517239570618 +karman_re100,ppo,365,146.0,velocity,lower_uy,0.23922842741012573 +karman_re100,ppo,366,146.4,velocity,upper_ux,1.1293675899505615 +karman_re100,ppo,366,146.4,velocity,upper_uy,0.31018492579460144 +karman_re100,ppo,366,146.4,velocity,center_ux,1.0171853303909302 +karman_re100,ppo,366,146.4,velocity,center_uy,0.5016264915466309 +karman_re100,ppo,366,146.4,velocity,lower_ux,0.9470009803771973 +karman_re100,ppo,366,146.4,velocity,lower_uy,0.30869853496551514 +karman_re100,ppo,367,146.8,velocity,upper_ux,1.0605411529541016 +karman_re100,ppo,367,146.8,velocity,upper_uy,0.35364922881126404 +karman_re100,ppo,367,146.8,velocity,center_ux,1.0241994857788086 +karman_re100,ppo,367,146.8,velocity,center_uy,0.5283830165863037 +karman_re100,ppo,367,146.8,velocity,lower_ux,1.0193825960159302 +karman_re100,ppo,367,146.8,velocity,lower_uy,0.3517763912677765 +karman_re100,ppo,368,147.2,velocity,upper_ux,0.9908692836761475 +karman_re100,ppo,368,147.2,velocity,upper_uy,0.3626059591770172 +karman_re100,ppo,368,147.2,velocity,center_ux,1.0304120779037476 +karman_re100,ppo,368,147.2,velocity,center_uy,0.5407403111457825 +karman_re100,ppo,368,147.2,velocity,lower_ux,1.0901455879211426 +karman_re100,ppo,368,147.2,velocity,lower_uy,0.37611594796180725 +karman_re100,ppo,369,147.6,velocity,upper_ux,0.9224640727043152 +karman_re100,ppo,369,147.6,velocity,upper_uy,0.3316943645477295 +karman_re100,ppo,369,147.6,velocity,center_ux,1.0332313776016235 +karman_re100,ppo,369,147.6,velocity,center_uy,0.5214660167694092 +karman_re100,ppo,369,147.6,velocity,lower_ux,1.1569569110870361 +karman_re100,ppo,369,147.6,velocity,lower_uy,0.3657681941986084 +karman_re100,ppo,370,148.0,velocity,upper_ux,0.861168384552002 +karman_re100,ppo,370,148.0,velocity,upper_uy,0.2531862258911133 +karman_re100,ppo,370,148.0,velocity,center_ux,1.0266304016113281 +karman_re100,ppo,370,148.0,velocity,center_uy,0.45749959349632263 +karman_re100,ppo,370,148.0,velocity,lower_ux,1.2194041013717651 +karman_re100,ppo,370,148.0,velocity,lower_uy,0.31912216544151306 +karman_re100,ppo,371,148.4,velocity,upper_ux,0.8167664408683777 +karman_re100,ppo,371,148.4,velocity,upper_uy,0.12792888283729553 +karman_re100,ppo,371,148.4,velocity,center_ux,1.0063505172729492 +karman_re100,ppo,371,148.4,velocity,center_uy,0.3041180670261383 +karman_re100,ppo,371,148.4,velocity,lower_ux,1.2675247192382812 +karman_re100,ppo,371,148.4,velocity,lower_uy,0.22710180282592773 +karman_re100,ppo,372,148.8,velocity,upper_ux,0.8055133819580078 +karman_re100,ppo,372,148.8,velocity,upper_uy,-0.02091376483440399 +karman_re100,ppo,372,148.8,velocity,center_ux,0.9857525825500488 +karman_re100,ppo,372,148.8,velocity,center_uy,0.012469625100493431 +karman_re100,ppo,372,148.8,velocity,lower_ux,1.2792530059814453 +karman_re100,ppo,372,148.8,velocity,lower_uy,0.07801400870084763 +karman_re100,ppo,373,149.2,velocity,upper_ux,0.8362233638763428 +karman_re100,ppo,373,149.2,velocity,upper_uy,-0.15194366872310638 +karman_re100,ppo,373,149.2,velocity,center_ux,0.98193359375 +karman_re100,ppo,373,149.2,velocity,center_uy,-0.27487361431121826 +karman_re100,ppo,373,149.2,velocity,lower_ux,1.251770257949829 +karman_re100,ppo,373,149.2,velocity,lower_uy,-0.08249998092651367 +karman_re100,ppo,374,149.6,velocity,upper_ux,0.8920964598655701 +karman_re100,ppo,374,149.6,velocity,upper_uy,-0.2534731328487396 +karman_re100,ppo,374,149.6,velocity,center_ux,0.9874212741851807 +karman_re100,ppo,374,149.6,velocity,center_uy,-0.4271801710128784 +karman_re100,ppo,374,149.6,velocity,lower_ux,1.1914236545562744 +karman_re100,ppo,374,149.6,velocity,lower_uy,-0.2143608033657074 +karman_re100,ppo,375,150.0,velocity,upper_ux,0.9593844413757324 +karman_re100,ppo,375,150.0,velocity,upper_uy,-0.32101988792419434 +karman_re100,ppo,375,150.0,velocity,center_ux,0.9958275556564331 +karman_re100,ppo,375,150.0,velocity,center_uy,-0.49840521812438965 +karman_re100,ppo,375,150.0,velocity,lower_ux,1.1156808137893677 +karman_re100,ppo,375,150.0,velocity,lower_uy,-0.30587780475616455 +karman_re100,ppo,376,150.4,velocity,upper_ux,1.0308613777160645 +karman_re100,ppo,376,150.4,velocity,upper_uy,-0.3630315661430359 +karman_re100,ppo,376,150.4,velocity,center_ux,1.0047625303268433 +karman_re100,ppo,376,150.4,velocity,center_uy,-0.5381251573562622 +karman_re100,ppo,376,150.4,velocity,lower_ux,1.0380781888961792 +karman_re100,ppo,376,150.4,velocity,lower_uy,-0.3550461232662201 +karman_re100,ppo,377,150.8,velocity,upper_ux,1.102174997329712 +karman_re100,ppo,377,150.8,velocity,upper_uy,-0.3860514760017395 +karman_re100,ppo,377,150.8,velocity,center_ux,1.0121512413024902 +karman_re100,ppo,377,150.8,velocity,center_uy,-0.5587837100028992 +karman_re100,ppo,377,150.8,velocity,lower_ux,0.9616639018058777 +karman_re100,ppo,377,150.8,velocity,lower_uy,-0.3671513497829437 +karman_re100,ppo,378,151.2,velocity,upper_ux,1.170799970626831 +karman_re100,ppo,378,151.2,velocity,upper_uy,-0.37246638536453247 +karman_re100,ppo,378,151.2,velocity,center_ux,1.0156515836715698 +karman_re100,ppo,378,151.2,velocity,center_uy,-0.548917293548584 +karman_re100,ppo,378,151.2,velocity,lower_ux,0.8872097134590149 +karman_re100,ppo,378,151.2,velocity,lower_uy,-0.3406771719455719 +karman_re100,ppo,379,151.6,velocity,upper_ux,1.235979676246643 +karman_re100,ppo,379,151.6,velocity,upper_uy,-0.319200336933136 +karman_re100,ppo,379,151.6,velocity,center_ux,1.0110684633255005 +karman_re100,ppo,379,151.6,velocity,center_uy,-0.49443745613098145 +karman_re100,ppo,379,151.6,velocity,lower_ux,0.8211963176727295 +karman_re100,ppo,379,151.6,velocity,lower_uy,-0.26694023609161377 +karman_re100,ppo,380,152.0,velocity,upper_ux,1.2819335460662842 +karman_re100,ppo,380,152.0,velocity,upper_uy,-0.21039743721485138 +karman_re100,ppo,380,152.0,velocity,center_ux,0.9996703267097473 +karman_re100,ppo,380,152.0,velocity,center_uy,-0.3319353759288788 +karman_re100,ppo,380,152.0,velocity,lower_ux,0.7756404280662537 +karman_re100,ppo,380,152.0,velocity,lower_uy,-0.14575842022895813 +karman_re100,ppo,381,152.4,velocity,upper_ux,1.2842086553573608 +karman_re100,ppo,381,152.4,velocity,upper_uy,-0.0450466051697731 +karman_re100,ppo,381,152.4,velocity,center_ux,0.9966752529144287 +karman_re100,ppo,381,152.4,velocity,center_uy,0.0005654121050611138 +karman_re100,ppo,381,152.4,velocity,lower_ux,0.7672187685966492 +karman_re100,ppo,381,152.4,velocity,lower_uy,0.0029345338698476553 +karman_re100,ppo,382,152.8,velocity,upper_ux,1.2515778541564941 +karman_re100,ppo,382,152.8,velocity,upper_uy,0.10992175340652466 +karman_re100,ppo,382,152.8,velocity,center_ux,1.0044933557510376 +karman_re100,ppo,382,152.8,velocity,center_uy,0.314048707485199 +karman_re100,ppo,382,152.8,velocity,lower_ux,0.8057457804679871 +karman_re100,ppo,382,152.8,velocity,lower_uy,0.13462047278881073 +karman_re100,ppo,383,153.2,velocity,upper_ux,1.198775053024292 +karman_re100,ppo,383,153.2,velocity,upper_uy,0.22443179786205292 +karman_re100,ppo,383,153.2,velocity,center_ux,1.0107043981552124 +karman_re100,ppo,383,153.2,velocity,center_uy,0.4535105228424072 +karman_re100,ppo,383,153.2,velocity,lower_ux,0.871055543422699 +karman_re100,ppo,383,153.2,velocity,lower_uy,0.233175128698349 +karman_re100,ppo,384,153.6,velocity,upper_ux,1.134002685546875 +karman_re100,ppo,384,153.6,velocity,upper_uy,0.30565938353538513 +karman_re100,ppo,384,153.6,velocity,center_ux,1.0166237354278564 +karman_re100,ppo,384,153.6,velocity,center_uy,0.4992328882217407 +karman_re100,ppo,384,153.6,velocity,lower_ux,0.9418149590492249 +karman_re100,ppo,384,153.6,velocity,lower_uy,0.3048173785209656 +karman_re100,ppo,385,154.0,velocity,upper_ux,1.065406322479248 +karman_re100,ppo,385,154.0,velocity,upper_uy,0.35158154368400574 +karman_re100,ppo,385,154.0,velocity,center_ux,1.0236825942993164 +karman_re100,ppo,385,154.0,velocity,center_uy,0.5267266631126404 +karman_re100,ppo,385,154.0,velocity,lower_ux,1.0143028497695923 +karman_re100,ppo,385,154.0,velocity,lower_uy,0.3492540419101715 +karman_re100,ppo,386,154.4,velocity,upper_ux,0.9960256814956665 +karman_re100,ppo,386,154.4,velocity,upper_uy,0.36301925778388977 +karman_re100,ppo,386,154.4,velocity,center_ux,1.0302338600158691 +karman_re100,ppo,386,154.4,velocity,center_uy,0.540646493434906 +karman_re100,ppo,386,154.4,velocity,lower_ux,1.0855122804641724 +karman_re100,ppo,386,154.4,velocity,lower_uy,0.37532511353492737 +karman_re100,ppo,387,154.8,velocity,upper_ux,0.9272220730781555 +karman_re100,ppo,387,154.8,velocity,upper_uy,0.33519989252090454 +karman_re100,ppo,387,154.8,velocity,center_ux,1.0332564115524292 +karman_re100,ppo,387,154.8,velocity,center_uy,0.5240130424499512 +karman_re100,ppo,387,154.8,velocity,lower_ux,1.1524991989135742 +karman_re100,ppo,387,154.8,velocity,lower_uy,0.3677641749382019 +karman_re100,ppo,388,155.2,velocity,upper_ux,0.8649491667747498 +karman_re100,ppo,388,155.2,velocity,upper_uy,0.26017728447914124 +karman_re100,ppo,388,155.2,velocity,center_ux,1.0272724628448486 +karman_re100,ppo,388,155.2,velocity,center_uy,0.46403563022613525 +karman_re100,ppo,388,155.2,velocity,lower_ux,1.2150814533233643 +karman_re100,ppo,388,155.2,velocity,lower_uy,0.32356858253479004 +karman_re100,ppo,389,155.6,velocity,upper_ux,0.8189451098442078 +karman_re100,ppo,389,155.6,velocity,upper_uy,0.13787482678890228 +karman_re100,ppo,389,155.6,velocity,center_ux,1.0077909231185913 +karman_re100,ppo,389,155.6,velocity,center_uy,0.3195894956588745 +karman_re100,ppo,389,155.6,velocity,lower_ux,1.2650526762008667 +karman_re100,ppo,389,155.6,velocity,lower_uy,0.23566554486751556 +karman_re100,ppo,390,156.0,velocity,upper_ux,0.8048166632652283 +karman_re100,ppo,390,156.0,velocity,upper_uy,-0.010618864558637142 +karman_re100,ppo,390,156.0,velocity,center_ux,0.9862744212150574 +karman_re100,ppo,390,156.0,velocity,center_uy,0.035586051642894745 +karman_re100,ppo,390,156.0,velocity,lower_ux,1.2797069549560547 +karman_re100,ppo,390,156.0,velocity,lower_uy,0.08965566009283066 +karman_re100,ppo,391,156.4,velocity,upper_ux,0.8331103324890137 +karman_re100,ppo,391,156.4,velocity,upper_uy,-0.14368167519569397 +karman_re100,ppo,391,156.4,velocity,center_ux,0.9815704226493835 +karman_re100,ppo,391,156.4,velocity,center_uy,-0.25891217589378357 +karman_re100,ppo,391,156.4,velocity,lower_ux,1.2551172971725464 +karman_re100,ppo,391,156.4,velocity,lower_uy,-0.07187049090862274 +karman_re100,ppo,392,156.8,velocity,upper_ux,0.8879462480545044 +karman_re100,ppo,392,156.8,velocity,upper_uy,-0.24733951687812805 +karman_re100,ppo,392,156.8,velocity,center_ux,0.9868749976158142 +karman_re100,ppo,392,156.8,velocity,center_uy,-0.42019978165626526 +karman_re100,ppo,392,156.8,velocity,lower_ux,1.1966235637664795 +karman_re100,ppo,392,156.8,velocity,lower_uy,-0.2064402997493744 +karman_re100,ppo,393,157.2,velocity,upper_ux,0.9543890357017517 +karman_re100,ppo,393,157.2,velocity,upper_uy,-0.3173763155937195 +karman_re100,ppo,393,157.2,velocity,center_ux,0.9949667453765869 +karman_re100,ppo,393,157.2,velocity,center_uy,-0.4948927164077759 +karman_re100,ppo,393,157.2,velocity,lower_ux,1.1210322380065918 +karman_re100,ppo,393,157.2,velocity,lower_uy,-0.3010376989841461 +karman_re100,ppo,394,157.6,velocity,upper_ux,1.0256826877593994 +karman_re100,ppo,394,157.6,velocity,upper_uy,-0.3606018126010895 +karman_re100,ppo,394,157.6,velocity,center_ux,1.003889799118042 +karman_re100,ppo,394,157.6,velocity,center_uy,-0.5361143946647644 +karman_re100,ppo,394,157.6,velocity,lower_ux,1.0432325601577759 +karman_re100,ppo,394,157.6,velocity,lower_uy,-0.3530651926994324 +karman_re100,ppo,395,158.0,velocity,upper_ux,1.0971301794052124 +karman_re100,ppo,395,158.0,velocity,upper_uy,-0.38549232482910156 +karman_re100,ppo,395,158.0,velocity,center_ux,1.0115201473236084 +karman_re100,ppo,395,158.0,velocity,center_uy,-0.558396577835083 +karman_re100,ppo,395,158.0,velocity,lower_ux,0.9667481184005737 +karman_re100,ppo,395,158.0,velocity,lower_uy,-0.36767396330833435 +karman_re100,ppo,396,158.4,velocity,upper_ux,1.1660616397857666 +karman_re100,ppo,396,158.4,velocity,upper_uy,-0.3747937083244324 +karman_re100,ppo,396,158.4,velocity,center_ux,1.0155320167541504 +karman_re100,ppo,396,158.4,velocity,center_uy,-0.5510284304618835 +karman_re100,ppo,396,158.4,velocity,lower_ux,0.8920667767524719 +karman_re100,ppo,396,158.4,velocity,lower_uy,-0.3442062735557556 +karman_re100,ppo,397,158.8,velocity,upper_ux,1.2319204807281494 +karman_re100,ppo,397,158.8,velocity,upper_uy,-0.3243831396102905 +karman_re100,ppo,397,158.8,velocity,center_ux,1.0119117498397827 +karman_re100,ppo,397,158.8,velocity,center_uy,-0.5007392764091492 +karman_re100,ppo,397,158.8,velocity,lower_ux,0.8253471255302429 +karman_re100,ppo,397,158.8,velocity,lower_uy,-0.27391648292541504 +karman_re100,ppo,398,159.2,velocity,upper_ux,1.2801322937011719 +karman_re100,ppo,398,159.2,velocity,upper_uy,-0.2202736735343933 +karman_re100,ppo,398,159.2,velocity,center_ux,1.0006468296051025 +karman_re100,ppo,398,159.2,velocity,center_uy,-0.34932941198349 +karman_re100,ppo,398,159.2,velocity,lower_ux,0.7777237892150879 +karman_re100,ppo,398,159.2,velocity,lower_uy,-0.15563097596168518 +karman_re100,ppo,399,159.6,velocity,upper_ux,1.285162091255188 +karman_re100,ppo,399,159.6,velocity,upper_uy,-0.05697043240070343 +karman_re100,ppo,399,159.6,velocity,center_ux,0.9964890480041504 +karman_re100,ppo,399,159.6,velocity,center_uy,-0.02511231228709221 +karman_re100,ppo,399,159.6,velocity,lower_ux,0.7659004926681519 +karman_re100,ppo,399,159.6,velocity,lower_uy,-0.007440864574164152 +karman_re100,ppo,0,0.0,force,front_fx,0.0010133897885680199 +karman_re100,ppo,0,0.0,force,front_fy,-0.0025333818048238754 +karman_re100,ppo,0,0.0,force,upper_fx,0.004949456080794334 +karman_re100,ppo,0,0.0,force,upper_fy,0.003977640997618437 +karman_re100,ppo,0,0.0,force,lower_fx,-0.006362652871757746 +karman_re100,ppo,0,0.0,force,lower_fy,-0.0020049542654305696 +karman_re100,ppo,1,0.4,force,front_fx,0.0024022359866648912 +karman_re100,ppo,1,0.4,force,front_fy,-0.0010043149814009666 +karman_re100,ppo,1,0.4,force,upper_fx,0.003823057049885392 +karman_re100,ppo,1,0.4,force,upper_fy,0.004193997010588646 +karman_re100,ppo,1,0.4,force,lower_fx,-0.006294926628470421 +karman_re100,ppo,1,0.4,force,lower_fy,-0.0014125179732218385 +karman_re100,ppo,2,0.8,force,front_fx,0.0022598751820623875 +karman_re100,ppo,2,0.8,force,front_fy,0.0001487864792579785 +karman_re100,ppo,2,0.8,force,upper_fx,0.00307091255672276 +karman_re100,ppo,2,0.8,force,upper_fy,0.0043860082514584064 +karman_re100,ppo,2,0.8,force,lower_fx,-0.006512066349387169 +karman_re100,ppo,2,0.8,force,lower_fy,-0.0012044737813994288 +karman_re100,ppo,3,1.2,force,front_fx,0.0011313463328406215 +karman_re100,ppo,3,1.2,force,front_fy,0.0015001952415332198 +karman_re100,ppo,3,1.2,force,upper_fx,0.0021215947344899178 +karman_re100,ppo,3,1.2,force,upper_fy,0.004337790887802839 +karman_re100,ppo,3,1.2,force,lower_fx,-0.005689417943358421 +karman_re100,ppo,3,1.2,force,lower_fy,-0.002711063250899315 +karman_re100,ppo,4,1.6,force,front_fx,-0.0001098912616726011 +karman_re100,ppo,4,1.6,force,front_fy,0.0024437331594526768 +karman_re100,ppo,4,1.6,force,upper_fx,0.0009915833361446857 +karman_re100,ppo,4,1.6,force,upper_fy,0.004259872250258923 +karman_re100,ppo,4,1.6,force,lower_fx,-0.003169682575389743 +karman_re100,ppo,4,1.6,force,lower_fy,-0.0044403476640582085 +karman_re100,ppo,5,2.0,force,front_fx,-0.0010892808204516768 +karman_re100,ppo,5,2.0,force,front_fy,0.002865960355848074 +karman_re100,ppo,5,2.0,force,upper_fx,-0.0002356884942855686 +karman_re100,ppo,5,2.0,force,upper_fy,0.003908189944922924 +karman_re100,ppo,5,2.0,force,lower_fx,-2.3474794943467714e-06 +karman_re100,ppo,5,2.0,force,lower_fy,-0.004939316306263208 +karman_re100,ppo,6,2.4,force,front_fx,-0.00144680414814502 +karman_re100,ppo,6,2.4,force,front_fy,0.0032710095401853323 +karman_re100,ppo,6,2.4,force,upper_fx,-0.0017771839629858732 +karman_re100,ppo,6,2.4,force,upper_fy,0.0030481729190796614 +karman_re100,ppo,6,2.4,force,lower_fx,0.0025425245985388756 +karman_re100,ppo,6,2.4,force,lower_fy,-0.004522297065705061 +karman_re100,ppo,7,2.8,force,front_fx,-0.001028590020723641 +karman_re100,ppo,7,2.8,force,front_fy,0.003490404225885868 +karman_re100,ppo,7,2.8,force,upper_fx,-0.0038090709131211042 +karman_re100,ppo,7,2.8,force,upper_fy,0.0020857094787061214 +karman_re100,ppo,7,2.8,force,lower_fx,0.003955814056098461 +karman_re100,ppo,7,2.8,force,lower_fy,-0.004090648144483566 +karman_re100,ppo,8,3.2,force,front_fx,0.00027407563175074756 +karman_re100,ppo,8,3.2,force,front_fy,0.0032818967010825872 +karman_re100,ppo,8,3.2,force,upper_fx,-0.0059622349217534065 +karman_re100,ppo,8,3.2,force,upper_fy,0.0017279136227443814 +karman_re100,ppo,8,3.2,force,lower_fx,0.004245304968208075 +karman_re100,ppo,8,3.2,force,lower_fy,-0.004051719326525927 +karman_re100,ppo,9,3.6,force,front_fx,0.002029640367254615 +karman_re100,ppo,9,3.6,force,front_fy,0.00258745439350605 +karman_re100,ppo,9,3.6,force,upper_fx,-0.007520162966102362 +karman_re100,ppo,9,3.6,force,upper_fy,0.0021698640193790197 +karman_re100,ppo,9,3.6,force,lower_fx,0.0036726633552461863 +karman_re100,ppo,9,3.6,force,lower_fy,-0.004237978253513575 +karman_re100,ppo,10,4.0,force,front_fx,0.00303793977946043 +karman_re100,ppo,10,4.0,force,front_fy,0.0014502066187560558 +karman_re100,ppo,10,4.0,force,upper_fx,-0.007615750655531883 +karman_re100,ppo,10,4.0,force,upper_fy,0.003443238092586398 +karman_re100,ppo,10,4.0,force,lower_fx,0.002650768728926778 +karman_re100,ppo,10,4.0,force,lower_fy,-0.004274038597941399 +karman_re100,ppo,11,4.4,force,front_fx,0.0025532469153404236 +karman_re100,ppo,11,4.4,force,front_fy,6.138847675174475e-05 +karman_re100,ppo,11,4.4,force,upper_fx,-0.005730738863348961 +karman_re100,ppo,11,4.4,force,upper_fy,0.0051795970648527145 +karman_re100,ppo,11,4.4,force,lower_fx,0.0016330694779753685 +karman_re100,ppo,11,4.4,force,lower_fy,-0.0042001125402748585 +karman_re100,ppo,12,4.8,force,front_fx,0.0011848404537886381 +karman_re100,ppo,12,4.8,force,front_fy,-0.0010909660486504436 +karman_re100,ppo,12,4.8,force,upper_fx,-0.002543708775192499 +karman_re100,ppo,12,4.8,force,upper_fy,0.006370403338223696 +karman_re100,ppo,12,4.8,force,lower_fx,0.000650915433652699 +karman_re100,ppo,12,4.8,force,lower_fy,-0.004226988647133112 +karman_re100,ppo,13,5.2,force,front_fx,-3.107589509454556e-05 +karman_re100,ppo,13,5.2,force,front_fy,-0.0018285191617906094 +karman_re100,ppo,13,5.2,force,upper_fx,0.0005044298013672233 +karman_re100,ppo,13,5.2,force,upper_fy,0.006534333806484938 +karman_re100,ppo,13,5.2,force,lower_fx,-0.0006081148749217391 +karman_re100,ppo,13,5.2,force,lower_fy,-0.0042866989970207214 +karman_re100,ppo,14,5.6,force,front_fx,-0.00047015768359415233 +karman_re100,ppo,14,5.6,force,front_fy,-0.002649088157340884 +karman_re100,ppo,14,5.6,force,upper_fx,0.00260331341996789 +karman_re100,ppo,14,5.6,force,upper_fy,0.006303089205175638 +karman_re100,ppo,14,5.6,force,lower_fx,-0.002119458047673106 +karman_re100,ppo,14,5.6,force,lower_fy,-0.003946977201849222 +karman_re100,ppo,15,6.0,force,front_fx,-7.600076787639409e-05 +karman_re100,ppo,15,6.0,force,front_fy,-0.0034496327862143517 +karman_re100,ppo,15,6.0,force,upper_fx,0.003845531726256013 +karman_re100,ppo,15,6.0,force,upper_fy,0.00610390305519104 +karman_re100,ppo,15,6.0,force,lower_fx,-0.003962547052651644 +karman_re100,ppo,15,6.0,force,lower_fy,-0.0028995168395340443 +karman_re100,ppo,16,6.4,force,front_fx,0.0011958172544836998 +karman_re100,ppo,16,6.4,force,front_fy,-0.003868305357173085 +karman_re100,ppo,16,6.4,force,upper_fx,0.004275231156498194 +karman_re100,ppo,16,6.4,force,upper_fy,0.0058373697102069855 +karman_re100,ppo,16,6.4,force,lower_fx,-0.0059884218499064445 +karman_re100,ppo,16,6.4,force,lower_fy,-0.0021453259978443384 +karman_re100,ppo,17,6.8,force,front_fx,0.0030564030166715384 +karman_re100,ppo,17,6.8,force,front_fy,-0.0037475889548659325 +karman_re100,ppo,17,6.8,force,upper_fx,0.003922788426280022 +karman_re100,ppo,17,6.8,force,upper_fy,0.005422336049377918 +karman_re100,ppo,17,6.8,force,lower_fx,-0.007363568525761366 +karman_re100,ppo,17,6.8,force,lower_fy,-0.002179528120905161 +karman_re100,ppo,18,7.2,force,front_fx,0.00429278751835227 +karman_re100,ppo,18,7.2,force,front_fy,-0.0030314167961478233 +karman_re100,ppo,18,7.2,force,upper_fx,0.0031508794054389 +karman_re100,ppo,18,7.2,force,upper_fy,0.004765014164149761 +karman_re100,ppo,18,7.2,force,lower_fx,-0.007349784951657057 +karman_re100,ppo,18,7.2,force,lower_fy,-0.002892629476264119 +karman_re100,ppo,19,7.6,force,front_fx,0.003908547572791576 +karman_re100,ppo,19,7.6,force,front_fy,-0.0018154929857701063 +karman_re100,ppo,19,7.6,force,upper_fx,0.0022756827529519796 +karman_re100,ppo,19,7.6,force,upper_fy,0.004323364235460758 +karman_re100,ppo,19,7.6,force,lower_fx,-0.005671925377100706 +karman_re100,ppo,19,7.6,force,lower_fy,-0.004144230391830206 +karman_re100,ppo,20,8.0,force,front_fx,0.002408671425655484 +karman_re100,ppo,20,8.0,force,front_fy,-0.00048371878801845014 +karman_re100,ppo,20,8.0,force,upper_fx,0.0012745145941153169 +karman_re100,ppo,20,8.0,force,upper_fy,0.00427749939262867 +karman_re100,ppo,20,8.0,force,lower_fx,-0.0027241716161370277 +karman_re100,ppo,20,8.0,force,lower_fy,-0.00536924647167325 +karman_re100,ppo,21,8.4,force,front_fx,0.0008001627866178751 +karman_re100,ppo,21,8.4,force,front_fy,0.000807383970823139 +karman_re100,ppo,21,8.4,force,upper_fx,-2.3584940208820626e-05 +karman_re100,ppo,21,8.4,force,upper_fy,0.0042679402977228165 +karman_re100,ppo,21,8.4,force,lower_fx,0.0006045641493983567 +karman_re100,ppo,21,8.4,force,lower_fy,-0.005895534530282021 +karman_re100,ppo,22,8.8,force,front_fx,-0.00026623933808878064 +karman_re100,ppo,22,8.8,force,front_fy,0.001949033117853105 +karman_re100,ppo,22,8.8,force,upper_fx,-0.0015656626783311367 +karman_re100,ppo,22,8.8,force,upper_fy,0.003950083162635565 +karman_re100,ppo,22,8.8,force,lower_fx,0.0032572010532021523 +karman_re100,ppo,22,8.8,force,lower_fy,-0.005583733320236206 +karman_re100,ppo,23,9.2,force,front_fx,-0.0006519561866298318 +karman_re100,ppo,23,9.2,force,front_fy,0.002871612086892128 +karman_re100,ppo,23,9.2,force,upper_fx,-0.003207440720871091 +karman_re100,ppo,23,9.2,force,upper_fy,0.003158208215609193 +karman_re100,ppo,23,9.2,force,lower_fx,0.004771627485752106 +karman_re100,ppo,23,9.2,force,lower_fy,-0.005166750401258469 +karman_re100,ppo,24,9.6,force,front_fx,-0.0003107328084297478 +karman_re100,ppo,24,9.6,force,front_fy,0.0035177883692085743 +karman_re100,ppo,24,9.6,force,upper_fx,-0.005050818435847759 +karman_re100,ppo,24,9.6,force,upper_fy,0.0021955224219709635 +karman_re100,ppo,24,9.6,force,lower_fx,0.005412994418293238 +karman_re100,ppo,24,9.6,force,lower_fy,-0.005158370826393366 +karman_re100,ppo,25,10.0,force,front_fx,0.000994822126813233 +karman_re100,ppo,25,10.0,force,front_fy,0.003869455773383379 +karman_re100,ppo,25,10.0,force,upper_fx,-0.007058820221573114 +karman_re100,ppo,25,10.0,force,upper_fy,0.001680500339716673 +karman_re100,ppo,25,10.0,force,lower_fx,0.005398719105869532 +karman_re100,ppo,25,10.0,force,lower_fy,-0.00546739436686039 +karman_re100,ppo,26,10.4,force,front_fx,0.0030476409010589123 +karman_re100,ppo,26,10.4,force,front_fy,0.003937191795557737 +karman_re100,ppo,26,10.4,force,upper_fx,-0.00861393567174673 +karman_re100,ppo,26,10.4,force,upper_fy,0.0017876976635307074 +karman_re100,ppo,26,10.4,force,lower_fx,0.0048687644302845 +karman_re100,ppo,26,10.4,force,lower_fy,-0.0055874246172606945 +karman_re100,ppo,27,10.8,force,front_fx,0.004570291377604008 +karman_re100,ppo,27,10.8,force,front_fy,0.0033630086109042168 +karman_re100,ppo,27,10.8,force,upper_fx,-0.00875032041221857 +karman_re100,ppo,27,10.8,force,upper_fy,0.002266900148242712 +karman_re100,ppo,27,10.8,force,lower_fx,0.003970659803599119 +karman_re100,ppo,27,10.8,force,lower_fy,-0.005165433511137962 +karman_re100,ppo,28,11.2,force,front_fx,0.004663440398871899 +karman_re100,ppo,28,11.2,force,front_fy,0.0019325684988871217 +karman_re100,ppo,28,11.2,force,upper_fx,-0.007267479319125414 +karman_re100,ppo,28,11.2,force,upper_fy,0.0029594784136861563 +karman_re100,ppo,28,11.2,force,lower_fx,0.0027848619502037764 +karman_re100,ppo,28,11.2,force,lower_fy,-0.004617496859282255 +karman_re100,ppo,29,11.6,force,front_fx,0.0033620893955230713 +karman_re100,ppo,29,11.6,force,front_fy,0.00024873108486644924 +karman_re100,ppo,29,11.6,force,upper_fx,-0.00487414700910449 +karman_re100,ppo,29,11.6,force,upper_fy,0.00422619329765439 +karman_re100,ppo,29,11.6,force,lower_fx,0.0016145231202244759 +karman_re100,ppo,29,11.6,force,lower_fy,-0.0043399883434176445 +karman_re100,ppo,30,12.0,force,front_fx,0.0014532773056998849 +karman_re100,ppo,30,12.0,force,front_fy,-0.001009108149446547 +karman_re100,ppo,30,12.0,force,upper_fx,-0.0017934984061866999 +karman_re100,ppo,30,12.0,force,upper_fy,0.005848441738635302 +karman_re100,ppo,30,12.0,force,lower_fx,0.0005528244655579329 +karman_re100,ppo,30,12.0,force,lower_fy,-0.004359093960374594 +karman_re100,ppo,31,12.4,force,front_fx,7.972162165970076e-06 +karman_re100,ppo,31,12.4,force,front_fy,-0.0017236667918041348 +karman_re100,ppo,31,12.4,force,upper_fx,0.0013944499660283327 +karman_re100,ppo,31,12.4,force,upper_fy,0.006564710754901171 +karman_re100,ppo,31,12.4,force,lower_fx,-0.0008597738924436271 +karman_re100,ppo,31,12.4,force,lower_fy,-0.004464005120098591 +karman_re100,ppo,32,12.8,force,front_fx,-0.000513977138325572 +karman_re100,ppo,32,12.8,force,front_fy,-0.002542438916862011 +karman_re100,ppo,32,12.8,force,upper_fx,0.0036781427916139364 +karman_re100,ppo,32,12.8,force,upper_fy,0.006435711868107319 +karman_re100,ppo,32,12.8,force,lower_fx,-0.002485262230038643 +karman_re100,ppo,32,12.8,force,lower_fy,-0.0042841387912631035 +karman_re100,ppo,33,13.2,force,front_fx,-5.512747520697303e-05 +karman_re100,ppo,33,13.2,force,front_fy,-0.003414283972233534 +karman_re100,ppo,33,13.2,force,upper_fx,0.004955568816512823 +karman_re100,ppo,33,13.2,force,upper_fy,0.006295223254710436 +karman_re100,ppo,33,13.2,force,lower_fx,-0.004243132658302784 +karman_re100,ppo,33,13.2,force,lower_fy,-0.003062938805669546 +karman_re100,ppo,34,13.6,force,front_fx,0.0016128417337313294 +karman_re100,ppo,34,13.6,force,front_fy,-0.003977463115006685 +karman_re100,ppo,34,13.6,force,upper_fx,0.005382786970585585 +karman_re100,ppo,34,13.6,force,upper_fy,0.006117746699601412 +karman_re100,ppo,34,13.6,force,lower_fx,-0.006525028496980667 +karman_re100,ppo,34,13.6,force,lower_fy,-0.0018241340294480324 +karman_re100,ppo,35,14.0,force,front_fx,0.004110340960323811 +karman_re100,ppo,35,14.0,force,front_fy,-0.003956282045692205 +karman_re100,ppo,35,14.0,force,upper_fx,0.0048790788277983665 +karman_re100,ppo,35,14.0,force,upper_fy,0.0057102469727396965 +karman_re100,ppo,35,14.0,force,lower_fx,-0.008521911688148975 +karman_re100,ppo,35,14.0,force,lower_fy,-0.0013762717135250568 +karman_re100,ppo,36,14.4,force,front_fx,0.005943977739661932 +karman_re100,ppo,36,14.4,force,front_fy,-0.003149129683151841 +karman_re100,ppo,36,14.4,force,upper_fx,0.0038591264747083187 +karman_re100,ppo,36,14.4,force,upper_fy,0.004820762202143669 +karman_re100,ppo,36,14.4,force,lower_fx,-0.009203961119055748 +karman_re100,ppo,36,14.4,force,lower_fy,-0.0017051652539521456 +karman_re100,ppo,37,14.8,force,front_fx,0.005790635943412781 +karman_re100,ppo,37,14.8,force,front_fy,-0.0017047454603016376 +karman_re100,ppo,37,14.8,force,upper_fx,0.002876407466828823 +karman_re100,ppo,37,14.8,force,upper_fy,0.004052563104778528 +karman_re100,ppo,37,14.8,force,lower_fx,-0.008017209358513355 +karman_re100,ppo,37,14.8,force,lower_fy,-0.00263848970644176 +karman_re100,ppo,38,15.2,force,front_fx,0.004014151636511087 +karman_re100,ppo,38,15.2,force,front_fy,-0.00027568385121412575 +karman_re100,ppo,38,15.2,force,upper_fx,0.0019967341795563698 +karman_re100,ppo,38,15.2,force,upper_fy,0.00396003620699048 +karman_re100,ppo,38,15.2,force,lower_fx,-0.005586224142462015 +karman_re100,ppo,38,15.2,force,lower_fy,-0.003836645744740963 +karman_re100,ppo,39,15.6,force,front_fx,0.0018340173410251737 +karman_re100,ppo,39,15.6,force,front_fy,0.0009093701955862343 +karman_re100,ppo,39,15.6,force,upper_fx,0.0009762675035744905 +karman_re100,ppo,39,15.6,force,upper_fy,0.004278278443962336 +karman_re100,ppo,39,15.6,force,lower_fx,-0.0025369441136717796 +karman_re100,ppo,39,15.6,force,lower_fy,-0.005023854319006205 +karman_re100,ppo,40,16.0,force,front_fx,0.00016412112745456398 +karman_re100,ppo,40,16.0,force,front_fy,0.0019440269097685814 +karman_re100,ppo,40,16.0,force,upper_fx,-0.00028323772130534053 +karman_re100,ppo,40,16.0,force,upper_fy,0.004563883412629366 +karman_re100,ppo,40,16.0,force,lower_fx,0.0005109527264721692 +karman_re100,ppo,40,16.0,force,lower_fy,-0.005620881449431181 +karman_re100,ppo,41,16.4,force,front_fx,-0.0007941636722534895 +karman_re100,ppo,41,16.4,force,front_fy,0.002682201564311981 +karman_re100,ppo,41,16.4,force,upper_fx,-0.0015227156691253185 +karman_re100,ppo,41,16.4,force,upper_fy,0.004495787434279919 +karman_re100,ppo,41,16.4,force,lower_fx,0.0027010475751012564 +karman_re100,ppo,41,16.4,force,lower_fy,-0.005572073627263308 +karman_re100,ppo,42,16.8,force,front_fx,-0.0010360073065385222 +karman_re100,ppo,42,16.8,force,front_fy,0.0032487891148775816 +karman_re100,ppo,42,16.8,force,upper_fx,-0.002739548683166504 +karman_re100,ppo,42,16.8,force,upper_fy,0.0038924217224121094 +karman_re100,ppo,42,16.8,force,lower_fx,0.003908165730535984 +karman_re100,ppo,42,16.8,force,lower_fy,-0.0054683927446603775 +karman_re100,ppo,43,17.2,force,front_fx,-0.0004209012840874493 +karman_re100,ppo,43,17.2,force,front_fy,0.0035942986141890287 +karman_re100,ppo,43,17.2,force,upper_fx,-0.004128028638660908 +karman_re100,ppo,43,17.2,force,upper_fy,0.002993814880028367 +karman_re100,ppo,43,17.2,force,lower_fx,0.004455531481653452 +karman_re100,ppo,43,17.2,force,lower_fy,-0.005488330498337746 +karman_re100,ppo,44,17.6,force,front_fx,0.0009665463585406542 +karman_re100,ppo,44,17.6,force,front_fy,0.0035500051453709602 +karman_re100,ppo,44,17.6,force,upper_fx,-0.005567287094891071 +karman_re100,ppo,44,17.6,force,upper_fy,0.00232193642295897 +karman_re100,ppo,44,17.6,force,lower_fx,0.00443189637735486 +karman_re100,ppo,44,17.6,force,lower_fy,-0.005508968140929937 +karman_re100,ppo,45,18.0,force,front_fx,0.0025872744154185057 +karman_re100,ppo,45,18.0,force,front_fy,0.002930235816165805 +karman_re100,ppo,45,18.0,force,upper_fx,-0.006515589542686939 +karman_re100,ppo,45,18.0,force,upper_fy,0.002207009820267558 +karman_re100,ppo,45,18.0,force,lower_fx,0.0038627246394753456 +karman_re100,ppo,45,18.0,force,lower_fy,-0.005342117510735989 +karman_re100,ppo,46,18.4,force,front_fx,0.003410891629755497 +karman_re100,ppo,46,18.4,force,front_fy,0.0017186745535582304 +karman_re100,ppo,46,18.4,force,upper_fx,-0.006319355219602585 +karman_re100,ppo,46,18.4,force,upper_fy,0.002742199692875147 +karman_re100,ppo,46,18.4,force,lower_fx,0.0028904909268021584 +karman_re100,ppo,46,18.4,force,lower_fy,-0.005002658348530531 +karman_re100,ppo,47,18.8,force,front_fx,0.002894897712394595 +karman_re100,ppo,47,18.8,force,front_fy,0.00017025030683726072 +karman_re100,ppo,47,18.8,force,upper_fx,-0.00483441399410367 +karman_re100,ppo,47,18.8,force,upper_fy,0.003883757395669818 +karman_re100,ppo,47,18.8,force,lower_fx,0.0017828223062679172 +karman_re100,ppo,47,18.8,force,lower_fy,-0.0047049568966031075 +karman_re100,ppo,48,19.2,force,front_fx,0.0015066537307575345 +karman_re100,ppo,48,19.2,force,front_fy,-0.0011365560349076986 +karman_re100,ppo,48,19.2,force,upper_fx,-0.002383028157055378 +karman_re100,ppo,48,19.2,force,upper_fy,0.005144153721630573 +karman_re100,ppo,48,19.2,force,lower_fx,0.0007123654359020293 +karman_re100,ppo,48,19.2,force,lower_fy,-0.004591512959450483 +karman_re100,ppo,49,19.6,force,front_fx,7.872794958529994e-05 +karman_re100,ppo,49,19.6,force,front_fy,-0.001857591443695128 +karman_re100,ppo,49,19.6,force,upper_fx,0.00032805168302729726 +karman_re100,ppo,49,19.6,force,upper_fy,0.0056955390609800816 +karman_re100,ppo,49,19.6,force,lower_fx,-0.00046036363346502185 +karman_re100,ppo,49,19.6,force,lower_fy,-0.004564186558127403 +karman_re100,ppo,50,20.0,force,front_fx,-0.0007738599670119584 +karman_re100,ppo,50,20.0,force,front_fy,-0.002462325617671013 +karman_re100,ppo,50,20.0,force,upper_fx,0.0024932108353823423 +karman_re100,ppo,50,20.0,force,upper_fy,0.005618997849524021 +karman_re100,ppo,50,20.0,force,lower_fx,-0.0017098392127081752 +karman_re100,ppo,50,20.0,force,lower_fy,-0.004323113244026899 +karman_re100,ppo,51,20.4,force,front_fx,-0.0007754848920740187 +karman_re100,ppo,51,20.4,force,front_fy,-0.0031607893761247396 +karman_re100,ppo,51,20.4,force,upper_fx,0.003947736695408821 +karman_re100,ppo,51,20.4,force,upper_fy,0.005621655378490686 +karman_re100,ppo,51,20.4,force,lower_fx,-0.0031152023002505302 +karman_re100,ppo,51,20.4,force,lower_fy,-0.0032150137703865767 +karman_re100,ppo,52,20.8,force,front_fx,0.00034748821053653955 +karman_re100,ppo,52,20.8,force,front_fy,-0.0036692405119538307 +karman_re100,ppo,52,20.8,force,upper_fx,0.004779857583343983 +karman_re100,ppo,52,20.8,force,upper_fy,0.0056747873313724995 +karman_re100,ppo,52,20.8,force,lower_fx,-0.005144697614014149 +karman_re100,ppo,52,20.8,force,lower_fy,-0.0018916986882686615 +karman_re100,ppo,53,21.2,force,front_fx,0.0025267780292779207 +karman_re100,ppo,53,21.2,force,front_fy,-0.0037238565273582935 +karman_re100,ppo,53,21.2,force,upper_fx,0.004729671869426966 +karman_re100,ppo,53,21.2,force,upper_fy,0.005617286544293165 +karman_re100,ppo,53,21.2,force,lower_fx,-0.00736398808658123 +karman_re100,ppo,53,21.2,force,lower_fy,-0.0012149913236498833 +karman_re100,ppo,54,21.6,force,front_fx,0.004817886743694544 +karman_re100,ppo,54,21.6,force,front_fy,-0.0031004988122731447 +karman_re100,ppo,54,21.6,force,upper_fx,0.003868323750793934 +karman_re100,ppo,54,21.6,force,upper_fy,0.005107432138174772 +karman_re100,ppo,54,21.6,force,lower_fx,-0.00881042331457138 +karman_re100,ppo,54,21.6,force,lower_fy,-0.0013327423948794603 +karman_re100,ppo,55,22.0,force,front_fx,0.005410811398178339 +karman_re100,ppo,55,22.0,force,front_fy,-0.0018323739059269428 +karman_re100,ppo,55,22.0,force,upper_fx,0.0028674008790403605 +karman_re100,ppo,55,22.0,force,upper_fy,0.004375690594315529 +karman_re100,ppo,55,22.0,force,lower_fx,-0.00847309734672308 +karman_re100,ppo,55,22.0,force,lower_fy,-0.0023362278006970882 +karman_re100,ppo,56,22.4,force,front_fx,0.004145120270550251 +karman_re100,ppo,56,22.4,force,front_fy,-0.00034384880564175546 +karman_re100,ppo,56,22.4,force,upper_fx,0.0020040839444845915 +karman_re100,ppo,56,22.4,force,upper_fy,0.00409740349277854 +karman_re100,ppo,56,22.4,force,lower_fx,-0.006355678662657738 +karman_re100,ppo,56,22.4,force,lower_fy,-0.003795002121478319 +karman_re100,ppo,57,22.8,force,front_fx,0.0020824612583965063 +karman_re100,ppo,57,22.8,force,front_fy,0.0008711585542187095 +karman_re100,ppo,57,22.8,force,upper_fx,0.0010747631313279271 +karman_re100,ppo,57,22.8,force,upper_fy,0.004284563474357128 +karman_re100,ppo,57,22.8,force,lower_fx,-0.0032815851736813784 +karman_re100,ppo,57,22.8,force,lower_fy,-0.005141482222825289 +karman_re100,ppo,58,23.2,force,front_fx,0.0002956851676572114 +karman_re100,ppo,58,23.2,force,front_fy,0.001827615313231945 +karman_re100,ppo,58,23.2,force,upper_fx,-0.00010627129813656211 +karman_re100,ppo,58,23.2,force,upper_fy,0.004538156557828188 +karman_re100,ppo,58,23.2,force,lower_fx,-8.728066313778982e-05 +karman_re100,ppo,58,23.2,force,lower_fy,-0.005781279876828194 +karman_re100,ppo,59,23.6,force,front_fx,-0.0007648290484212339 +karman_re100,ppo,59,23.6,force,front_fy,0.002550206845626235 +karman_re100,ppo,59,23.6,force,upper_fx,-0.0013361546443775296 +karman_re100,ppo,59,23.6,force,upper_fy,0.004444776568561792 +karman_re100,ppo,59,23.6,force,lower_fx,0.0022968791890889406 +karman_re100,ppo,59,23.6,force,lower_fy,-0.005695686209946871 +karman_re100,ppo,60,24.0,force,front_fx,-0.001066585653461516 +karman_re100,ppo,60,24.0,force,front_fy,0.0031447529327124357 +karman_re100,ppo,60,24.0,force,upper_fx,-0.002607682952657342 +karman_re100,ppo,60,24.0,force,upper_fy,0.0037733656354248524 +karman_re100,ppo,60,24.0,force,lower_fx,0.0036889342591166496 +karman_re100,ppo,60,24.0,force,lower_fy,-0.005505337845534086 +karman_re100,ppo,61,24.4,force,front_fx,-0.0005111634382046759 +karman_re100,ppo,61,24.4,force,front_fy,0.003528909059241414 +karman_re100,ppo,61,24.4,force,upper_fx,-0.004075921606272459 +karman_re100,ppo,61,24.4,force,upper_fy,0.00288683595135808 +karman_re100,ppo,61,24.4,force,lower_fx,0.004364700987935066 +karman_re100,ppo,61,24.4,force,lower_fy,-0.0054668253287673 +karman_re100,ppo,62,24.8,force,front_fx,0.0008520449628122151 +karman_re100,ppo,62,24.8,force,front_fy,0.003521793521940708 +karman_re100,ppo,62,24.8,force,upper_fx,-0.005548269022256136 +karman_re100,ppo,62,24.8,force,upper_fy,0.0023536451626569033 +karman_re100,ppo,62,24.8,force,lower_fx,0.004396524280309677 +karman_re100,ppo,62,24.8,force,lower_fy,-0.005498547572642565 +karman_re100,ppo,63,25.2,force,front_fx,0.00247263815253973 +karman_re100,ppo,63,25.2,force,front_fy,0.0029576080851256847 +karman_re100,ppo,63,25.2,force,upper_fx,-0.006487849168479443 +karman_re100,ppo,63,25.2,force,upper_fy,0.002401112113147974 +karman_re100,ppo,63,25.2,force,lower_fx,0.0038212588988244534 +karman_re100,ppo,63,25.2,force,lower_fy,-0.005367059260606766 +karman_re100,ppo,64,25.6,force,front_fx,0.0032929929438978434 +karman_re100,ppo,64,25.6,force,front_fy,0.0018026663456112146 +karman_re100,ppo,64,25.6,force,upper_fx,-0.0062276641838252544 +karman_re100,ppo,64,25.6,force,upper_fy,0.003055629786103964 +karman_re100,ppo,64,25.6,force,lower_fx,0.0028256638906896114 +karman_re100,ppo,64,25.6,force,lower_fy,-0.005016281735152006 +karman_re100,ppo,65,26.0,force,front_fx,0.0027803468983620405 +karman_re100,ppo,65,26.0,force,front_fy,0.0002953729999717325 +karman_re100,ppo,65,26.0,force,upper_fx,-0.004595217760652304 +karman_re100,ppo,65,26.0,force,upper_fy,0.004219572991132736 +karman_re100,ppo,65,26.0,force,lower_fx,0.0017177666304633021 +karman_re100,ppo,65,26.0,force,lower_fy,-0.004700347315520048 +karman_re100,ppo,66,26.4,force,front_fx,0.0014067760203033686 +karman_re100,ppo,66,26.4,force,front_fy,-0.0009814986260607839 +karman_re100,ppo,66,26.4,force,upper_fx,-0.001980183180421591 +karman_re100,ppo,66,26.4,force,upper_fy,0.005397980101406574 +karman_re100,ppo,66,26.4,force,lower_fx,0.000633150280918926 +karman_re100,ppo,66,26.4,force,lower_fy,-0.004567981231957674 +karman_re100,ppo,67,26.8,force,front_fx,5.220609818934463e-05 +karman_re100,ppo,67,26.8,force,front_fy,-0.0017602649750187993 +karman_re100,ppo,67,26.8,force,upper_fx,0.000812204263638705 +karman_re100,ppo,67,26.8,force,upper_fy,0.005862784571945667 +karman_re100,ppo,67,26.8,force,lower_fx,-0.0006164841470308602 +karman_re100,ppo,67,26.8,force,lower_fy,-0.0045114136300981045 +karman_re100,ppo,68,27.2,force,front_fx,-0.0006662864470854402 +karman_re100,ppo,68,27.2,force,front_fy,-0.0024905421305447817 +karman_re100,ppo,68,27.2,force,upper_fx,0.0029792794957756996 +karman_re100,ppo,68,27.2,force,upper_fy,0.0057939570397138596 +karman_re100,ppo,68,27.2,force,lower_fx,-0.0020067242439836264 +karman_re100,ppo,68,27.2,force,lower_fy,-0.004183612298220396 +karman_re100,ppo,69,27.6,force,front_fx,-0.0005179366562515497 +karman_re100,ppo,69,27.6,force,front_fy,-0.003270409069955349 +karman_re100,ppo,69,27.6,force,upper_fx,0.004382661078125238 +karman_re100,ppo,69,27.6,force,upper_fy,0.005781626794487238 +karman_re100,ppo,69,27.6,force,lower_fx,-0.003637459594756365 +karman_re100,ppo,69,27.6,force,lower_fy,-0.0029901163652539253 +karman_re100,ppo,70,28.0,force,front_fx,0.0007899004849605262 +karman_re100,ppo,70,28.0,force,front_fy,-0.003813275136053562 +karman_re100,ppo,70,28.0,force,upper_fx,0.005066366400569677 +karman_re100,ppo,70,28.0,force,upper_fy,0.0057881115935742855 +karman_re100,ppo,70,28.0,force,lower_fx,-0.005883784964680672 +karman_re100,ppo,70,28.0,force,lower_fy,-0.0017056182259693742 +karman_re100,ppo,71,28.4,force,front_fx,0.003182177199050784 +karman_re100,ppo,71,28.4,force,front_fy,-0.003882079618051648 +karman_re100,ppo,71,28.4,force,upper_fx,0.004819680005311966 +karman_re100,ppo,71,28.4,force,upper_fy,0.005648959893733263 +karman_re100,ppo,71,28.4,force,lower_fx,-0.008166863583028316 +karman_re100,ppo,71,28.4,force,lower_fy,-0.0011365325190126896 +karman_re100,ppo,72,28.8,force,front_fx,0.005459802225232124 +karman_re100,ppo,72,28.8,force,front_fy,-0.0032670735381543636 +karman_re100,ppo,72,28.8,force,upper_fx,0.0038784826174378395 +karman_re100,ppo,72,28.8,force,upper_fy,0.004960922058671713 +karman_re100,ppo,72,28.8,force,lower_fx,-0.009413009509444237 +karman_re100,ppo,72,28.8,force,lower_fy,-0.0014063096605241299 +karman_re100,ppo,73,29.2,force,front_fx,0.00583868520334363 +karman_re100,ppo,73,29.2,force,front_fy,-0.001928816083818674 +karman_re100,ppo,73,29.2,force,upper_fx,0.002906986977905035 +karman_re100,ppo,73,29.2,force,upper_fy,0.0041549489833414555 +karman_re100,ppo,73,29.2,force,lower_fx,-0.008667281828820705 +karman_re100,ppo,73,29.2,force,lower_fy,-0.0025181814562529325 +karman_re100,ppo,74,29.6,force,front_fx,0.004361415281891823 +karman_re100,ppo,74,29.6,force,front_fy,-0.00046345547889359295 +karman_re100,ppo,74,29.6,force,upper_fx,0.0020696523133665323 +karman_re100,ppo,74,29.6,force,upper_fy,0.003930498380213976 +karman_re100,ppo,74,29.6,force,lower_fx,-0.006286239251494408 +karman_re100,ppo,74,29.6,force,lower_fy,-0.003926694858819246 +karman_re100,ppo,75,30.0,force,front_fx,0.002165311947464943 +karman_re100,ppo,75,30.0,force,front_fy,0.0007178663508966565 +karman_re100,ppo,75,30.0,force,upper_fx,0.0011135729728266597 +karman_re100,ppo,75,30.0,force,upper_fy,0.004203171003609896 +karman_re100,ppo,75,30.0,force,lower_fx,-0.0031371023505926132 +karman_re100,ppo,75,30.0,force,lower_fy,-0.005178551189601421 +karman_re100,ppo,76,30.4,force,front_fx,0.00035606746678240597 +karman_re100,ppo,76,30.4,force,front_fy,0.0017509886529296637 +karman_re100,ppo,76,30.4,force,upper_fx,-0.0001257604017155245 +karman_re100,ppo,76,30.4,force,upper_fy,0.004490736871957779 +karman_re100,ppo,76,30.4,force,lower_fx,3.521594044286758e-05 +karman_re100,ppo,76,30.4,force,lower_fy,-0.005762691609561443 +karman_re100,ppo,77,30.8,force,front_fx,-0.0007023720536381006 +karman_re100,ppo,77,30.8,force,front_fy,0.0025357005652040243 +karman_re100,ppo,77,30.8,force,upper_fx,-0.0013921171193942428 +karman_re100,ppo,77,30.8,force,upper_fy,0.0044104536063969135 +karman_re100,ppo,77,30.8,force,lower_fx,0.0023716981522738934 +karman_re100,ppo,77,30.8,force,lower_fy,-0.005673845298588276 +karman_re100,ppo,78,31.2,force,front_fx,-0.000993927358649671 +karman_re100,ppo,78,31.2,force,front_fy,0.0031634538900107145 +karman_re100,ppo,78,31.2,force,upper_fx,-0.002649664180353284 +karman_re100,ppo,78,31.2,force,upper_fy,0.0038040729705244303 +karman_re100,ppo,78,31.2,force,lower_fx,0.0037373716477304697 +karman_re100,ppo,78,31.2,force,lower_fy,-0.005512996111065149 +karman_re100,ppo,79,31.6,force,front_fx,-0.0004434665897861123 +karman_re100,ppo,79,31.6,force,front_fy,0.003574351780116558 +karman_re100,ppo,79,31.6,force,upper_fx,-0.004067170433700085 +karman_re100,ppo,79,31.6,force,upper_fy,0.0029917696956545115 +karman_re100,ppo,79,31.6,force,lower_fx,0.0043937149457633495 +karman_re100,ppo,79,31.6,force,lower_fy,-0.005532015115022659 +karman_re100,ppo,80,32.0,force,front_fx,0.0008958691614679992 +karman_re100,ppo,80,32.0,force,front_fy,0.0036139448639005423 +karman_re100,ppo,80,32.0,force,upper_fx,-0.0055023254826664925 +karman_re100,ppo,80,32.0,force,upper_fy,0.002453475259244442 +karman_re100,ppo,80,32.0,force,lower_fx,0.004423199221491814 +karman_re100,ppo,80,32.0,force,lower_fy,-0.00558815523982048 +karman_re100,ppo,81,32.4,force,front_fx,0.0024988995864987373 +karman_re100,ppo,81,32.4,force,front_fy,0.0030812411569058895 +karman_re100,ppo,81,32.4,force,upper_fx,-0.006453279405832291 +karman_re100,ppo,81,32.4,force,upper_fy,0.0023958254605531693 +karman_re100,ppo,81,32.4,force,lower_fx,0.003856193507090211 +karman_re100,ppo,81,32.4,force,lower_fy,-0.005432146601378918 +karman_re100,ppo,82,32.8,force,front_fx,0.0033577485010027885 +karman_re100,ppo,82,32.8,force,front_fy,0.0019364701583981514 +karman_re100,ppo,82,32.8,force,upper_fx,-0.0062628542073071 +karman_re100,ppo,82,32.8,force,upper_fy,0.0029165553860366344 +karman_re100,ppo,82,32.8,force,lower_fx,0.002874137135222554 +karman_re100,ppo,82,32.8,force,lower_fy,-0.005037314724177122 +karman_re100,ppo,83,33.2,force,front_fx,0.002904813503846526 +karman_re100,ppo,83,33.2,force,front_fy,0.0004110913723707199 +karman_re100,ppo,83,33.2,force,upper_fx,-0.004736335948109627 +karman_re100,ppo,83,33.2,force,upper_fy,0.0040171281434595585 +karman_re100,ppo,83,33.2,force,lower_fx,0.0017706176731735468 +karman_re100,ppo,83,33.2,force,lower_fy,-0.0046871681697666645 +karman_re100,ppo,84,33.6,force,front_fx,0.0015587046509608626 +karman_re100,ppo,84,33.6,force,front_fy,-0.0009103200864046812 +karman_re100,ppo,84,33.6,force,upper_fx,-0.0021910888608545065 +karman_re100,ppo,84,33.6,force,upper_fy,0.00528165465220809 +karman_re100,ppo,84,33.6,force,lower_fx,0.0007155354833230376 +karman_re100,ppo,84,33.6,force,lower_fy,-0.004552815109491348 +karman_re100,ppo,85,34.0,force,front_fx,0.00015923786850180477 +karman_re100,ppo,85,34.0,force,front_fy,-0.0017054341733455658 +karman_re100,ppo,85,34.0,force,upper_fx,0.0006197377806529403 +karman_re100,ppo,85,34.0,force,upper_fy,0.005881077144294977 +karman_re100,ppo,85,34.0,force,lower_fx,-0.0004986592102795839 +karman_re100,ppo,85,34.0,force,lower_fy,-0.004525467287749052 +karman_re100,ppo,86,34.4,force,front_fx,-0.0006467620260082185 +karman_re100,ppo,86,34.4,force,front_fy,-0.0024077906273305416 +karman_re100,ppo,86,34.4,force,upper_fx,0.002834850922226906 +karman_re100,ppo,86,34.4,force,upper_fy,0.005839454010128975 +karman_re100,ppo,86,34.4,force,lower_fx,-0.001877238042652607 +karman_re100,ppo,86,34.4,force,lower_fy,-0.004269174300134182 +karman_re100,ppo,87,34.8,force,front_fx,-0.0005783573724329472 +karman_re100,ppo,87,34.8,force,front_fy,-0.0031831946689635515 +karman_re100,ppo,87,34.8,force,upper_fx,0.004273623693734407 +karman_re100,ppo,87,34.8,force,upper_fy,0.005807152483612299 +karman_re100,ppo,87,34.8,force,lower_fx,-0.0034591779112815857 +karman_re100,ppo,87,34.8,force,lower_fy,-0.0030987514182925224 +karman_re100,ppo,88,35.2,force,front_fx,0.0006490500527434051 +karman_re100,ppo,88,35.2,force,front_fy,-0.0037639301735907793 +karman_re100,ppo,88,35.2,force,upper_fx,0.0050306678749620914 +karman_re100,ppo,88,35.2,force,upper_fy,0.005795502569526434 +karman_re100,ppo,88,35.2,force,lower_fx,-0.0056818765588104725 +karman_re100,ppo,88,35.2,force,lower_fy,-0.0017282330663874745 +karman_re100,ppo,89,35.6,force,front_fx,0.0030061090365052223 +karman_re100,ppo,89,35.6,force,front_fy,-0.0038815850857645273 +karman_re100,ppo,89,35.6,force,upper_fx,0.004879094194620848 +karman_re100,ppo,89,35.6,force,upper_fy,0.005676883272826672 +karman_re100,ppo,89,35.6,force,lower_fx,-0.007990393787622452 +karman_re100,ppo,89,35.6,force,lower_fy,-0.0010717754485085607 +karman_re100,ppo,90,36.0,force,front_fx,0.0054001878015697 +karman_re100,ppo,90,36.0,force,front_fy,-0.0033249000553041697 +karman_re100,ppo,90,36.0,force,upper_fx,0.003979315981268883 +karman_re100,ppo,90,36.0,force,upper_fy,0.005035721696913242 +karman_re100,ppo,90,36.0,force,lower_fx,-0.00937286950647831 +karman_re100,ppo,90,36.0,force,lower_fy,-0.001317199319601059 +karman_re100,ppo,91,36.4,force,front_fx,0.005932576488703489 +karman_re100,ppo,91,36.4,force,front_fy,-0.0020292364060878754 +karman_re100,ppo,91,36.4,force,upper_fx,0.0029968013986945152 +karman_re100,ppo,91,36.4,force,upper_fy,0.004203911405056715 +karman_re100,ppo,91,36.4,force,lower_fx,-0.008787764236330986 +karman_re100,ppo,91,36.4,force,lower_fy,-0.0023771265987306833 +karman_re100,ppo,92,36.8,force,front_fx,0.004544512834399939 +karman_re100,ppo,92,36.8,force,front_fy,-0.0005445150309242308 +karman_re100,ppo,92,36.8,force,upper_fx,0.0021399199031293392 +karman_re100,ppo,92,36.8,force,upper_fy,0.003921573981642723 +karman_re100,ppo,92,36.8,force,lower_fx,-0.00653386814519763 +karman_re100,ppo,92,36.8,force,lower_fy,-0.003726750612258911 +karman_re100,ppo,93,37.2,force,front_fx,0.002352566923946142 +karman_re100,ppo,93,37.2,force,front_fy,0.0006695257616229355 +karman_re100,ppo,93,37.2,force,upper_fx,0.0012035160325467587 +karman_re100,ppo,93,37.2,force,upper_fy,0.004158251453191042 +karman_re100,ppo,93,37.2,force,lower_fx,-0.003483508713543415 +karman_re100,ppo,93,37.2,force,lower_fy,-0.004965178668498993 +karman_re100,ppo,94,37.6,force,front_fx,0.00048194077680818737 +karman_re100,ppo,94,37.6,force,front_fy,0.0016985214315354824 +karman_re100,ppo,94,37.6,force,upper_fx,1.2623662541955127e-06 +karman_re100,ppo,94,37.6,force,upper_fy,0.004455359652638435 +karman_re100,ppo,94,37.6,force,lower_fx,-0.0003222083323635161 +karman_re100,ppo,94,37.6,force,lower_fy,-0.005633766762912273 +karman_re100,ppo,95,38.0,force,front_fx,-0.000641426129732281 +karman_re100,ppo,95,38.0,force,front_fy,0.002481951378285885 +karman_re100,ppo,95,38.0,force,upper_fx,-0.0012298548826947808 +karman_re100,ppo,95,38.0,force,upper_fy,0.0044429246336221695 +karman_re100,ppo,95,38.0,force,lower_fx,0.002121108118444681 +karman_re100,ppo,95,38.0,force,lower_fy,-0.005638778675347567 +karman_re100,ppo,96,38.4,force,front_fx,-0.0010124839609488845 +karman_re100,ppo,96,38.4,force,front_fy,0.0031184174586087465 +karman_re100,ppo,96,38.4,force,upper_fx,-0.0024516647681593895 +karman_re100,ppo,96,38.4,force,upper_fy,0.003914599306881428 +karman_re100,ppo,96,38.4,force,lower_fx,0.0035892752930521965 +karman_re100,ppo,96,38.4,force,lower_fy,-0.0055216108448803425 +karman_re100,ppo,97,38.8,force,front_fx,-0.0005590482032857835 +karman_re100,ppo,97,38.8,force,front_fy,0.0035498719662427902 +karman_re100,ppo,97,38.8,force,upper_fx,-0.00384800904430449 +karman_re100,ppo,97,38.8,force,upper_fy,0.0031027239747345448 +karman_re100,ppo,97,38.8,force,lower_fx,0.004319006111472845 +karman_re100,ppo,97,38.8,force,lower_fy,-0.005539834965020418 +karman_re100,ppo,98,39.2,force,front_fx,0.0007033087313175201 +karman_re100,ppo,98,39.2,force,front_fy,0.0036140468437224627 +karman_re100,ppo,98,39.2,force,upper_fx,-0.005317992065101862 +karman_re100,ppo,98,39.2,force,upper_fy,0.002481656614691019 +karman_re100,ppo,98,39.2,force,lower_fx,0.0044089616276323795 +karman_re100,ppo,98,39.2,force,lower_fy,-0.0055773621425032616 +karman_re100,ppo,99,39.6,force,front_fx,0.0023152739740908146 +karman_re100,ppo,99,39.6,force,front_fy,0.003119440982118249 +karman_re100,ppo,99,39.6,force,upper_fx,-0.006370474584400654 +karman_re100,ppo,99,39.6,force,upper_fy,0.002342849737033248 +karman_re100,ppo,99,39.6,force,lower_fx,0.0038999917451292276 +karman_re100,ppo,99,39.6,force,lower_fy,-0.005427367519587278 +karman_re100,ppo,100,40.0,force,front_fx,0.0032969347666949034 +karman_re100,ppo,100,40.0,force,front_fy,0.002016423735767603 +karman_re100,ppo,100,40.0,force,upper_fx,-0.006327613722532988 +karman_re100,ppo,100,40.0,force,upper_fy,0.0028155327308923006 +karman_re100,ppo,100,40.0,force,lower_fx,0.002961645135655999 +karman_re100,ppo,100,40.0,force,lower_fy,-0.005054921377450228 +karman_re100,ppo,101,40.4,force,front_fx,0.0029814960435032845 +karman_re100,ppo,101,40.4,force,front_fy,0.0005082178395241499 +karman_re100,ppo,101,40.4,force,upper_fx,-0.00492189871147275 +karman_re100,ppo,101,40.4,force,upper_fy,0.003922400064766407 +karman_re100,ppo,101,40.4,force,lower_fx,0.0018811054760590196 +karman_re100,ppo,101,40.4,force,lower_fy,-0.004718025680631399 +karman_re100,ppo,102,40.8,force,front_fx,0.0016848882660269737 +karman_re100,ppo,102,40.8,force,front_fy,-0.0008476889343000948 +karman_re100,ppo,102,40.8,force,upper_fx,-0.002444016980007291 +karman_re100,ppo,102,40.8,force,upper_fy,0.0052252234891057014 +karman_re100,ppo,102,40.8,force,lower_fx,0.0008277531014755368 +karman_re100,ppo,102,40.8,force,lower_fy,-0.004586332477629185 +karman_re100,ppo,103,41.2,force,front_fx,0.0002490999468136579 +karman_re100,ppo,103,41.2,force,front_fy,-0.0016701210988685489 +karman_re100,ppo,103,41.2,force,upper_fx,0.00035246030893176794 +karman_re100,ppo,103,41.2,force,upper_fy,0.005863981321454048 +karman_re100,ppo,103,41.2,force,lower_fx,-0.0003746446454897523 +karman_re100,ppo,103,41.2,force,lower_fy,-0.004563877824693918 +karman_re100,ppo,104,41.6,force,front_fx,-0.0006272624596022069 +karman_re100,ppo,104,41.6,force,front_fy,-0.0023484218399971724 +karman_re100,ppo,104,41.6,force,upper_fx,0.002608346752822399 +karman_re100,ppo,104,41.6,force,upper_fy,0.005815105512738228 +karman_re100,ppo,104,41.6,force,lower_fx,-0.0017390497960150242 +karman_re100,ppo,104,41.6,force,lower_fy,-0.004331177566200495 +karman_re100,ppo,105,42.0,force,front_fx,-0.0006464242469519377 +karman_re100,ppo,105,42.0,force,front_fy,-0.0031248675659298897 +karman_re100,ppo,105,42.0,force,upper_fx,0.00410617608577013 +karman_re100,ppo,105,42.0,force,upper_fy,0.005763132590800524 +karman_re100,ppo,105,42.0,force,lower_fx,-0.003271635388955474 +karman_re100,ppo,105,42.0,force,lower_fy,-0.00320942560210824 +karman_re100,ppo,106,42.4,force,front_fx,0.00047754679690115154 +karman_re100,ppo,106,42.4,force,front_fy,-0.0037186145782470703 +karman_re100,ppo,106,42.4,force,upper_fx,0.004955805838108063 +karman_re100,ppo,106,42.4,force,upper_fy,0.00576451700180769 +karman_re100,ppo,106,42.4,force,lower_fx,-0.005422019399702549 +karman_re100,ppo,106,42.4,force,lower_fy,-0.0018239677883684635 +karman_re100,ppo,107,42.8,force,front_fx,0.0027415433432906866 +karman_re100,ppo,107,42.8,force,front_fy,-0.0038802444469183683 +karman_re100,ppo,107,42.8,force,upper_fx,0.004906260408461094 +karman_re100,ppo,107,42.8,force,upper_fy,0.005697082728147507 +karman_re100,ppo,107,42.8,force,lower_fx,-0.007743635680526495 +karman_re100,ppo,107,42.8,force,lower_fy,-0.0011498418170958757 +karman_re100,ppo,108,43.2,force,front_fx,0.005185655318200588 +karman_re100,ppo,108,43.2,force,front_fy,-0.0033835843205451965 +karman_re100,ppo,108,43.2,force,upper_fx,0.004047537222504616 +karman_re100,ppo,108,43.2,force,upper_fy,0.005125826690346003 +karman_re100,ppo,108,43.2,force,lower_fx,-0.00923844426870346 +karman_re100,ppo,108,43.2,force,lower_fy,-0.0013103425735607743 +karman_re100,ppo,109,43.6,force,front_fx,0.0058998544700443745 +karman_re100,ppo,109,43.6,force,front_fy,-0.0021475341636687517 +karman_re100,ppo,109,43.6,force,upper_fx,0.0030429342295974493 +karman_re100,ppo,109,43.6,force,upper_fy,0.004278643522411585 +karman_re100,ppo,109,43.6,force,lower_fx,-0.008860037662088871 +karman_re100,ppo,109,43.6,force,lower_fy,-0.0022813871037214994 +karman_re100,ppo,110,44.0,force,front_fx,0.004646468907594681 +karman_re100,ppo,110,44.0,force,front_fy,-0.0006522246985696256 +karman_re100,ppo,110,44.0,force,upper_fx,0.0021716649644076824 +karman_re100,ppo,110,44.0,force,upper_fy,0.003929769620299339 +karman_re100,ppo,110,44.0,force,lower_fx,-0.006738199386745691 +karman_re100,ppo,110,44.0,force,lower_fy,-0.003610165324062109 +karman_re100,ppo,111,44.4,force,front_fx,0.002496114233508706 +karman_re100,ppo,111,44.4,force,front_fy,0.0005770231364294887 +karman_re100,ppo,111,44.4,force,upper_fx,0.0012620873749256134 +karman_re100,ppo,111,44.4,force,upper_fy,0.004126532468944788 +karman_re100,ppo,111,44.4,force,lower_fx,-0.003725090529769659 +karman_re100,ppo,111,44.4,force,lower_fy,-0.004871659446507692 +karman_re100,ppo,112,44.8,force,front_fx,0.0005980078713037074 +karman_re100,ppo,112,44.8,force,front_fy,0.0016277388203889132 +karman_re100,ppo,112,44.8,force,upper_fx,9.573170973453671e-05 +karman_re100,ppo,112,44.8,force,upper_fy,0.004432636313140392 +karman_re100,ppo,112,44.8,force,lower_fx,-0.000521722948178649 +karman_re100,ppo,112,44.8,force,lower_fy,-0.005624350160360336 +karman_re100,ppo,113,45.2,force,front_fx,-0.000582352455239743 +karman_re100,ppo,113,45.2,force,front_fy,0.0024323537945747375 +karman_re100,ppo,113,45.2,force,upper_fx,-0.001141417771577835 +karman_re100,ppo,113,45.2,force,upper_fy,0.004468717612326145 +karman_re100,ppo,113,45.2,force,lower_fx,0.0020049631129950285 +karman_re100,ppo,113,45.2,force,lower_fy,-0.005678286775946617 +karman_re100,ppo,114,45.6,force,front_fx,-0.001015271758660674 +karman_re100,ppo,114,45.6,force,front_fy,0.0030745854601264 +karman_re100,ppo,114,45.6,force,upper_fx,-0.0023725598584860563 +karman_re100,ppo,114,45.6,force,upper_fy,0.003967832773923874 +karman_re100,ppo,114,45.6,force,lower_fx,0.003522180952131748 +karman_re100,ppo,114,45.6,force,lower_fy,-0.005547006614506245 +karman_re100,ppo,115,46.0,force,front_fx,-0.0006249019643291831 +karman_re100,ppo,115,46.0,force,front_fy,0.003522674087435007 +karman_re100,ppo,115,46.0,force,upper_fx,-0.003774602198973298 +karman_re100,ppo,115,46.0,force,upper_fy,0.0031296643428504467 +karman_re100,ppo,115,46.0,force,lower_fx,0.004287068732082844 +karman_re100,ppo,115,46.0,force,lower_fy,-0.005531227216124535 +karman_re100,ppo,116,46.4,force,front_fx,0.0005937599344179034 +karman_re100,ppo,116,46.4,force,front_fy,0.003617173060774803 +karman_re100,ppo,116,46.4,force,upper_fx,-0.005261242855340242 +karman_re100,ppo,116,46.4,force,upper_fy,0.0024702518712729216 +karman_re100,ppo,116,46.4,force,lower_fx,0.0044188122265040874 +karman_re100,ppo,116,46.4,force,lower_fy,-0.00555810471996665 +karman_re100,ppo,117,46.8,force,front_fx,0.002224687719717622 +karman_re100,ppo,117,46.8,force,front_fy,0.003167002694681287 +karman_re100,ppo,117,46.8,force,upper_fx,-0.006352829281240702 +karman_re100,ppo,117,46.8,force,upper_fy,0.002322566695511341 +karman_re100,ppo,117,46.8,force,lower_fx,0.003958567511290312 +karman_re100,ppo,117,46.8,force,lower_fy,-0.00543496198952198 +karman_re100,ppo,118,47.2,force,front_fx,0.0032885672990232706 +karman_re100,ppo,118,47.2,force,front_fy,0.002110590459778905 +karman_re100,ppo,118,47.2,force,upper_fx,-0.00637406948953867 +karman_re100,ppo,118,47.2,force,upper_fy,0.0028046993538737297 +karman_re100,ppo,118,47.2,force,lower_fx,0.0030461365822702646 +karman_re100,ppo,118,47.2,force,lower_fy,-0.005090390332043171 +karman_re100,ppo,119,47.6,force,front_fx,0.0030417528469115496 +karman_re100,ppo,119,47.6,force,front_fy,0.0006171552813611925 +karman_re100,ppo,119,47.6,force,upper_fx,-0.005031179171055555 +karman_re100,ppo,119,47.6,force,upper_fy,0.0038879690691828728 +karman_re100,ppo,119,47.6,force,lower_fx,0.001960126217454672 +karman_re100,ppo,119,47.6,force,lower_fy,-0.004752492066472769 +karman_re100,ppo,120,48.0,force,front_fx,0.0017740444745868444 +karman_re100,ppo,120,48.0,force,front_fy,-0.0007684172596782446 +karman_re100,ppo,120,48.0,force,upper_fx,-0.0025977776385843754 +karman_re100,ppo,120,48.0,force,upper_fy,0.005176000762730837 +karman_re100,ppo,120,48.0,force,lower_fx,0.0008886263240128756 +karman_re100,ppo,120,48.0,force,lower_fy,-0.004597890190780163 +karman_re100,ppo,121,48.4,force,front_fx,0.00031893138657324016 +karman_re100,ppo,121,48.4,force,front_fy,-0.00161867740098387 +karman_re100,ppo,121,48.4,force,upper_fx,0.00020382567890919745 +karman_re100,ppo,121,48.4,force,upper_fy,0.005836635362356901 +karman_re100,ppo,121,48.4,force,lower_fx,-0.00031107640825212 +karman_re100,ppo,121,48.4,force,lower_fy,-0.004555732477456331 +karman_re100,ppo,122,48.8,force,front_fx,-0.0005932013154961169 +karman_re100,ppo,122,48.8,force,front_fy,-0.0022981292568147182 +karman_re100,ppo,122,48.8,force,upper_fx,0.0025140182115137577 +karman_re100,ppo,122,48.8,force,upper_fy,0.005800426006317139 +karman_re100,ppo,122,48.8,force,lower_fx,-0.0016762369778007269 +karman_re100,ppo,122,48.8,force,lower_fy,-0.004338956903666258 +karman_re100,ppo,123,49.2,force,front_fx,-0.0006588234682567418 +karman_re100,ppo,123,49.2,force,front_fy,-0.0030864623840898275 +karman_re100,ppo,123,49.2,force,upper_fx,0.0040702903643250465 +karman_re100,ppo,123,49.2,force,upper_fy,0.005759477615356445 +karman_re100,ppo,123,49.2,force,lower_fx,-0.0031769059132784605 +karman_re100,ppo,123,49.2,force,lower_fy,-0.0032921675592660904 +karman_re100,ppo,124,49.6,force,front_fx,0.0003905138000845909 +karman_re100,ppo,124,49.6,force,front_fy,-0.0037037201691418886 +karman_re100,ppo,124,49.6,force,upper_fx,0.004962389823049307 +karman_re100,ppo,124,49.6,force,upper_fy,0.005783502012491226 +karman_re100,ppo,124,49.6,force,lower_fx,-0.005290365777909756 +karman_re100,ppo,124,49.6,force,lower_fy,-0.0019139087526127696 +karman_re100,ppo,125,50.0,force,front_fx,0.0025933249853551388 +karman_re100,ppo,125,50.0,force,front_fy,-0.0039016585797071457 +karman_re100,ppo,125,50.0,force,upper_fx,0.0049534388817846775 +karman_re100,ppo,125,50.0,force,upper_fy,0.005730094853788614 +karman_re100,ppo,125,50.0,force,lower_fx,-0.007639323361217976 +karman_re100,ppo,125,50.0,force,lower_fy,-0.0011817127233371139 +karman_re100,ppo,126,50.4,force,front_fx,0.005090220365673304 +karman_re100,ppo,126,50.4,force,front_fy,-0.0034535364247858524 +karman_re100,ppo,126,50.4,force,upper_fx,0.004110599867999554 +karman_re100,ppo,126,50.4,force,upper_fy,0.005175890866667032 +karman_re100,ppo,126,50.4,force,lower_fx,-0.009238854981958866 +karman_re100,ppo,126,50.4,force,lower_fy,-0.001256174291484058 +karman_re100,ppo,127,50.8,force,front_fx,0.005948199424892664 +karman_re100,ppo,127,50.8,force,front_fy,-0.0022530900314450264 +karman_re100,ppo,127,50.8,force,upper_fx,0.0030976906418800354 +karman_re100,ppo,127,50.8,force,upper_fy,0.004303182940930128 +karman_re100,ppo,127,50.8,force,lower_fx,-0.008993152529001236 +karman_re100,ppo,127,50.8,force,lower_fy,-0.002167829778045416 +karman_re100,ppo,128,51.2,force,front_fx,0.004802310839295387 +karman_re100,ppo,128,51.2,force,front_fy,-0.0007473898003809154 +karman_re100,ppo,128,51.2,force,upper_fx,0.0022349462378770113 +karman_re100,ppo,128,51.2,force,upper_fy,0.003909324295818806 +karman_re100,ppo,128,51.2,force,lower_fx,-0.006944821681827307 +karman_re100,ppo,128,51.2,force,lower_fy,-0.0034978038165718317 +karman_re100,ppo,129,51.6,force,front_fx,0.0026664831675589085 +karman_re100,ppo,129,51.6,force,front_fy,0.0005014061462134123 +karman_re100,ppo,129,51.6,force,upper_fx,0.0013510577846318483 +karman_re100,ppo,129,51.6,force,upper_fy,0.0040999469347298145 +karman_re100,ppo,129,51.6,force,lower_fx,-0.003951951861381531 +karman_re100,ppo,129,51.6,force,lower_fy,-0.004812587518244982 +karman_re100,ppo,130,52.0,force,front_fx,0.0007170976605266333 +karman_re100,ppo,130,52.0,force,front_fy,0.0015629514819011092 +karman_re100,ppo,130,52.0,force,upper_fx,0.00019565672846511006 +karman_re100,ppo,130,52.0,force,upper_fy,0.004431802313774824 +karman_re100,ppo,130,52.0,force,lower_fx,-0.0007293703383766115 +karman_re100,ppo,130,52.0,force,lower_fy,-0.005636168643832207 +karman_re100,ppo,131,52.4,force,front_fx,-0.0005264971987344325 +karman_re100,ppo,131,52.4,force,front_fy,0.0023846165277063847 +karman_re100,ppo,131,52.4,force,upper_fx,-0.0010595867643132806 +karman_re100,ppo,131,52.4,force,upper_fy,0.004497162997722626 +karman_re100,ppo,131,52.4,force,lower_fx,0.0018561987672001123 +karman_re100,ppo,131,52.4,force,lower_fy,-0.005711942911148071 +karman_re100,ppo,132,52.8,force,front_fx,-0.0010127285495400429 +karman_re100,ppo,132,52.8,force,front_fy,0.003035018453374505 +karman_re100,ppo,132,52.8,force,upper_fx,-0.002290798583999276 +karman_re100,ppo,132,52.8,force,upper_fy,0.004014527890831232 +karman_re100,ppo,132,52.8,force,lower_fx,0.0034267271403223276 +karman_re100,ppo,132,52.8,force,lower_fy,-0.005552539601922035 +karman_re100,ppo,133,53.2,force,front_fx,-0.0006801297422498465 +karman_re100,ppo,133,53.2,force,front_fy,0.00349836191162467 +karman_re100,ppo,133,53.2,force,upper_fx,-0.003672434715554118 +karman_re100,ppo,133,53.2,force,upper_fy,0.003176363417878747 +karman_re100,ppo,133,53.2,force,lower_fx,0.00424318527802825 +karman_re100,ppo,133,53.2,force,lower_fy,-0.005515790078788996 +karman_re100,ppo,134,53.6,force,front_fx,0.0004983347025699914 +karman_re100,ppo,134,53.6,force,front_fy,0.003626517951488495 +karman_re100,ppo,134,53.6,force,upper_fx,-0.005144387483596802 +karman_re100,ppo,134,53.6,force,upper_fy,0.002513428684324026 +karman_re100,ppo,134,53.6,force,lower_fx,0.004432962276041508 +karman_re100,ppo,134,53.6,force,lower_fy,-0.0055554877035319805 +karman_re100,ppo,135,54.0,force,front_fx,0.002123427577316761 +karman_re100,ppo,135,54.0,force,front_fy,0.003222423605620861 +karman_re100,ppo,135,54.0,force,upper_fx,-0.0062734768725931644 +karman_re100,ppo,135,54.0,force,upper_fy,0.002349741058424115 +karman_re100,ppo,135,54.0,force,lower_fx,0.004014511127024889 +karman_re100,ppo,135,54.0,force,lower_fy,-0.005468806717544794 +karman_re100,ppo,136,54.4,force,front_fx,0.0032484412658959627 +karman_re100,ppo,136,54.4,force,front_fy,0.00220805243588984 +karman_re100,ppo,136,54.4,force,upper_fx,-0.006381544284522533 +karman_re100,ppo,136,54.4,force,upper_fy,0.002774708904325962 +karman_re100,ppo,136,54.4,force,lower_fx,0.0031186100095510483 +karman_re100,ppo,136,54.4,force,lower_fy,-0.005134390667080879 +karman_re100,ppo,137,54.8,force,front_fx,0.0030849867034703493 +karman_re100,ppo,137,54.8,force,front_fy,0.0007297313422895968 +karman_re100,ppo,137,54.8,force,upper_fx,-0.005145667586475611 +karman_re100,ppo,137,54.8,force,upper_fy,0.003786407643929124 +karman_re100,ppo,137,54.8,force,lower_fx,0.002023666864261031 +karman_re100,ppo,137,54.8,force,lower_fy,-0.0047723473981022835 +karman_re100,ppo,138,55.2,force,front_fx,0.0018651558784767985 +karman_re100,ppo,138,55.2,force,front_fy,-0.00067813292844221 +karman_re100,ppo,138,55.2,force,upper_fx,-0.0027963134925812483 +karman_re100,ppo,138,55.2,force,upper_fy,0.005056591238826513 +karman_re100,ppo,138,55.2,force,lower_fx,0.0009509499650448561 +karman_re100,ppo,138,55.2,force,lower_fy,-0.004591038450598717 +karman_re100,ppo,139,55.6,force,front_fx,0.00040891850949265063 +karman_re100,ppo,139,55.6,force,front_fy,-0.0015714189503341913 +karman_re100,ppo,139,55.6,force,upper_fx,8.371651347260922e-06 +karman_re100,ppo,139,55.6,force,upper_fy,0.005789821967482567 +karman_re100,ppo,139,55.6,force,lower_fx,-0.00021887998445890844 +karman_re100,ppo,139,55.6,force,lower_fy,-0.00454059150069952 +karman_re100,ppo,140,56.0,force,front_fx,-0.0005467544542625546 +karman_re100,ppo,140,56.0,force,front_fy,-0.0022467183880507946 +karman_re100,ppo,140,56.0,force,upper_fx,0.002384934341534972 +karman_re100,ppo,140,56.0,force,upper_fy,0.0058084772899746895 +karman_re100,ppo,140,56.0,force,lower_fx,-0.0015656119212508202 +karman_re100,ppo,140,56.0,force,lower_fy,-0.004372942727059126 +karman_re100,ppo,141,56.4,force,front_fx,-0.0006880569271743298 +karman_re100,ppo,141,56.4,force,front_fy,-0.003032142762094736 +karman_re100,ppo,141,56.4,force,upper_fx,0.003987488802522421 +karman_re100,ppo,141,56.4,force,upper_fy,0.005776997189968824 +karman_re100,ppo,141,56.4,force,lower_fx,-0.003038157010450959 +karman_re100,ppo,141,56.4,force,lower_fy,-0.0034102732315659523 +karman_re100,ppo,142,56.8,force,front_fx,0.0002668023225851357 +karman_re100,ppo,142,56.8,force,front_fy,-0.0036650514230132103 +karman_re100,ppo,142,56.8,force,upper_fx,0.004920754116028547 +karman_re100,ppo,142,56.8,force,upper_fy,0.00579486321657896 +karman_re100,ppo,142,56.8,force,lower_fx,-0.005120099987834692 +karman_re100,ppo,142,56.8,force,lower_fy,-0.001996139995753765 +karman_re100,ppo,143,57.2,force,front_fx,0.002399817807599902 +karman_re100,ppo,143,57.2,force,front_fy,-0.003904363140463829 +karman_re100,ppo,143,57.2,force,upper_fx,0.0049781412817537785 +karman_re100,ppo,143,57.2,force,upper_fy,0.005738211330026388 +karman_re100,ppo,143,57.2,force,lower_fx,-0.007499771658331156 +karman_re100,ppo,143,57.2,force,lower_fy,-0.0011765972012653947 +karman_re100,ppo,144,57.6,force,front_fx,0.0049532270058989525 +karman_re100,ppo,144,57.6,force,front_fy,-0.0035032806918025017 +karman_re100,ppo,144,57.6,force,upper_fx,0.004178536590188742 +karman_re100,ppo,144,57.6,force,upper_fy,0.005222033709287643 +karman_re100,ppo,144,57.6,force,lower_fx,-0.009202800691127777 +karman_re100,ppo,144,57.6,force,lower_fy,-0.001184398657642305 +karman_re100,ppo,145,58.0,force,front_fx,0.005979237612336874 +karman_re100,ppo,145,58.0,force,front_fy,-0.0023521720431745052 +karman_re100,ppo,145,58.0,force,upper_fx,0.003173566423356533 +karman_re100,ppo,145,58.0,force,upper_fy,0.004345374181866646 +karman_re100,ppo,145,58.0,force,lower_fx,-0.009097954258322716 +karman_re100,ppo,145,58.0,force,lower_fy,-0.002065274165943265 +karman_re100,ppo,146,58.4,force,front_fx,0.004948755726218224 +karman_re100,ppo,146,58.4,force,front_fy,-0.0008382773958146572 +karman_re100,ppo,146,58.4,force,upper_fx,0.0023083388805389404 +karman_re100,ppo,146,58.4,force,upper_fy,0.0039164344780147076 +karman_re100,ppo,146,58.4,force,lower_fx,-0.0071365712210536 +karman_re100,ppo,146,58.4,force,lower_fy,-0.0034150707069784403 +karman_re100,ppo,147,58.8,force,front_fx,0.002829392207786441 +karman_re100,ppo,147,58.8,force,front_fy,0.00043772716890089214 +karman_re100,ppo,147,58.8,force,upper_fx,0.0014283163473010063 +karman_re100,ppo,147,58.8,force,upper_fy,0.004083206411451101 +karman_re100,ppo,147,58.8,force,lower_fx,-0.004185553640127182 +karman_re100,ppo,147,58.8,force,lower_fy,-0.004746747203171253 +karman_re100,ppo,148,59.2,force,front_fx,0.0008299134788103402 +karman_re100,ppo,148,59.2,force,front_fy,0.0014963917201384902 +karman_re100,ppo,148,59.2,force,upper_fx,0.00028179914806969464 +karman_re100,ppo,148,59.2,force,upper_fy,0.004416418261826038 +karman_re100,ppo,148,59.2,force,lower_fx,-0.000964511011261493 +karman_re100,ppo,148,59.2,force,lower_fy,-0.005597442854195833 +karman_re100,ppo,149,59.6,force,front_fx,-0.0004721273435279727 +karman_re100,ppo,149,59.6,force,front_fy,0.0023336452431976795 +karman_re100,ppo,149,59.6,force,upper_fx,-0.0009766703005880117 +karman_re100,ppo,149,59.6,force,upper_fy,0.004498304333537817 +karman_re100,ppo,149,59.6,force,lower_fx,0.0016834128182381392 +karman_re100,ppo,149,59.6,force,lower_fy,-0.005696431268006563 +karman_re100,ppo,150,60.0,force,front_fx,-0.0010064217494800687 +karman_re100,ppo,150,60.0,force,front_fy,0.002993045374751091 +karman_re100,ppo,150,60.0,force,upper_fx,-0.002195479581132531 +karman_re100,ppo,150,60.0,force,upper_fy,0.004050251562148333 +karman_re100,ppo,150,60.0,force,lower_fx,0.0033304947428405285 +karman_re100,ppo,150,60.0,force,lower_fy,-0.005534989759325981 +karman_re100,ppo,151,60.4,force,front_fx,-0.0007280114805325866 +karman_re100,ppo,151,60.4,force,front_fy,0.003478471888229251 +karman_re100,ppo,151,60.4,force,upper_fx,-0.0035484745167195797 +karman_re100,ppo,151,60.4,force,upper_fy,0.003246055217459798 +karman_re100,ppo,151,60.4,force,lower_fx,0.004208202473819256 +karman_re100,ppo,151,60.4,force,lower_fy,-0.00550800608471036 +karman_re100,ppo,152,60.8,force,front_fx,0.0003907540813088417 +karman_re100,ppo,152,60.8,force,front_fy,0.003637064015492797 +karman_re100,ppo,152,60.8,force,upper_fx,-0.005019245203584433 +karman_re100,ppo,152,60.8,force,upper_fy,0.002573577221482992 +karman_re100,ppo,152,60.8,force,lower_fx,0.004442304838448763 +karman_re100,ppo,152,60.8,force,lower_fy,-0.005566616076976061 +karman_re100,ppo,153,61.2,force,front_fx,0.00199886504560709 +karman_re100,ppo,153,61.2,force,front_fy,0.0032762878108769655 +karman_re100,ppo,153,61.2,force,upper_fx,-0.006199362687766552 +karman_re100,ppo,153,61.2,force,upper_fy,0.0023593760561197996 +karman_re100,ppo,153,61.2,force,lower_fx,0.004056698642671108 +karman_re100,ppo,153,61.2,force,lower_fy,-0.00549333868548274 +karman_re100,ppo,154,61.6,force,front_fx,0.0031879672314971685 +karman_re100,ppo,154,61.6,force,front_fy,0.0022985991090536118 +karman_re100,ppo,154,61.6,force,upper_fx,-0.0064195930026471615 +karman_re100,ppo,154,61.6,force,upper_fy,0.0027111810632050037 +karman_re100,ppo,154,61.6,force,lower_fx,0.0031793294474482536 +karman_re100,ppo,154,61.6,force,lower_fy,-0.005158848129212856 +karman_re100,ppo,155,62.0,force,front_fx,0.0031289071775972843 +karman_re100,ppo,155,62.0,force,front_fy,0.0008387269335798919 +karman_re100,ppo,155,62.0,force,upper_fx,-0.0052892486564815044 +karman_re100,ppo,155,62.0,force,upper_fy,0.003675740910694003 +karman_re100,ppo,155,62.0,force,lower_fx,0.002092137932777405 +karman_re100,ppo,155,62.0,force,lower_fy,-0.004782024770975113 +karman_re100,ppo,156,62.4,force,front_fx,0.0019747691694647074 +karman_re100,ppo,156,62.4,force,front_fy,-0.0005966823664493859 +karman_re100,ppo,156,62.4,force,upper_fx,-0.0029964405111968517 +karman_re100,ppo,156,62.4,force,upper_fy,0.004970419220626354 +karman_re100,ppo,156,62.4,force,lower_fx,0.001031594816595316 +karman_re100,ppo,156,62.4,force,lower_fy,-0.0045906901359558105 +karman_re100,ppo,157,62.8,force,front_fx,0.0005123812006786466 +karman_re100,ppo,157,62.8,force,front_fy,-0.0015271077863872051 +karman_re100,ppo,157,62.8,force,upper_fx,-0.00018191046547144651 +karman_re100,ppo,157,62.8,force,upper_fy,0.005792616400867701 +karman_re100,ppo,157,62.8,force,lower_fx,-0.0001145134519902058 +karman_re100,ppo,157,62.8,force,lower_fy,-0.004552725702524185 +karman_re100,ppo,158,63.2,force,front_fx,-0.0005002783145755529 +karman_re100,ppo,158,63.2,force,front_fy,-0.002193412510678172 +karman_re100,ppo,158,63.2,force,upper_fx,0.0022437728475779295 +karman_re100,ppo,158,63.2,force,upper_fy,0.005848756991326809 +karman_re100,ppo,158,63.2,force,lower_fx,-0.0014611005317419767 +karman_re100,ppo,158,63.2,force,lower_fy,-0.004422080237418413 +karman_re100,ppo,159,63.6,force,front_fx,-0.0007132121827453375 +karman_re100,ppo,159,63.6,force,front_fy,-0.002975115552544594 +karman_re100,ppo,159,63.6,force,upper_fx,0.0038842186331748962 +karman_re100,ppo,159,63.6,force,upper_fy,0.005792633164674044 +karman_re100,ppo,159,63.6,force,lower_fx,-0.002920354250818491 +karman_re100,ppo,159,63.6,force,lower_fy,-0.003518919926136732 +karman_re100,ppo,160,64.0,force,front_fx,0.0001579994277562946 +karman_re100,ppo,160,64.0,force,front_fy,-0.003626731224358082 +karman_re100,ppo,160,64.0,force,upper_fx,0.004864357877522707 +karman_re100,ppo,160,64.0,force,upper_fy,0.005790036171674728 +karman_re100,ppo,160,64.0,force,lower_fx,-0.004964607767760754 +karman_re100,ppo,160,64.0,force,lower_fy,-0.0020749273244291544 +karman_re100,ppo,161,64.4,force,front_fx,0.002220975235104561 +karman_re100,ppo,161,64.4,force,front_fy,-0.003903559409081936 +karman_re100,ppo,161,64.4,force,upper_fx,0.004998258780688047 +karman_re100,ppo,161,64.4,force,upper_fy,0.005738713778555393 +karman_re100,ppo,161,64.4,force,lower_fx,-0.007346297614276409 +karman_re100,ppo,161,64.4,force,lower_fy,-0.001197218312881887 +karman_re100,ppo,162,64.8,force,front_fx,0.004807451739907265 +karman_re100,ppo,162,64.8,force,front_fy,-0.0035564759746193886 +karman_re100,ppo,162,64.8,force,upper_fx,0.0042542507871985435 +karman_re100,ppo,162,64.8,force,upper_fy,0.005276574287563562 +karman_re100,ppo,162,64.8,force,lower_fx,-0.009115299209952354 +karman_re100,ppo,162,64.8,force,lower_fy,-0.0011660613818094134 +karman_re100,ppo,163,65.2,force,front_fx,0.0059784273616969585 +karman_re100,ppo,163,65.2,force,front_fy,-0.0024521443992853165 +karman_re100,ppo,163,65.2,force,upper_fx,0.0032462053932249546 +karman_re100,ppo,163,65.2,force,upper_fy,0.004406793043017387 +karman_re100,ppo,163,65.2,force,lower_fx,-0.009144417941570282 +karman_re100,ppo,163,65.2,force,lower_fy,-0.00201777764596045 +karman_re100,ppo,164,65.6,force,front_fx,0.005055345129221678 +karman_re100,ppo,164,65.6,force,front_fy,-0.0009444359457120299 +karman_re100,ppo,164,65.6,force,upper_fx,0.002361385151743889 +karman_re100,ppo,164,65.6,force,upper_fy,0.003932558465749025 +karman_re100,ppo,164,65.6,force,lower_fx,-0.00728463102132082 +karman_re100,ppo,164,65.6,force,lower_fy,-0.003345071105286479 +karman_re100,ppo,165,66.0,force,front_fx,0.0029615252278745174 +karman_re100,ppo,165,66.0,force,front_fy,0.000335827557137236 +karman_re100,ppo,165,66.0,force,upper_fx,0.0014828178100287914 +karman_re100,ppo,165,66.0,force,upper_fy,0.004061876330524683 +karman_re100,ppo,165,66.0,force,lower_fx,-0.0043852985836565495 +karman_re100,ppo,165,66.0,force,lower_fy,-0.004660556558519602 +karman_re100,ppo,166,66.4,force,front_fx,0.0009370216866955161 +karman_re100,ppo,166,66.4,force,front_fy,0.001422690344043076 +karman_re100,ppo,166,66.4,force,upper_fx,0.0003514729323796928 +karman_re100,ppo,166,66.4,force,upper_fy,0.0043808757327497005 +karman_re100,ppo,166,66.4,force,lower_fx,-0.001164738554507494 +karman_re100,ppo,166,66.4,force,lower_fy,-0.005539334379136562 +karman_re100,ppo,167,66.8,force,front_fx,-0.0004031158168800175 +karman_re100,ppo,167,66.8,force,front_fy,0.002281913999468088 +karman_re100,ppo,167,66.8,force,upper_fx,-0.0008993002120405436 +karman_re100,ppo,167,66.8,force,upper_fy,0.00448898458853364 +karman_re100,ppo,167,66.8,force,lower_fx,0.0015534007688984275 +karman_re100,ppo,167,66.8,force,lower_fy,-0.005682575516402721 +karman_re100,ppo,168,67.2,force,front_fx,-0.0009851640788838267 +karman_re100,ppo,168,67.2,force,front_fy,0.0029519996605813503 +karman_re100,ppo,168,67.2,force,upper_fx,-0.0021091836970299482 +karman_re100,ppo,168,67.2,force,upper_fy,0.00409578625112772 +karman_re100,ppo,168,67.2,force,lower_fx,0.0032667669001966715 +karman_re100,ppo,168,67.2,force,lower_fy,-0.005540735088288784 +karman_re100,ppo,169,67.6,force,front_fx,-0.0007714173407293856 +karman_re100,ppo,169,67.6,force,front_fy,0.0034567085094749928 +karman_re100,ppo,169,67.6,force,upper_fx,-0.0034541625063866377 +karman_re100,ppo,169,67.6,force,upper_fy,0.00331094884313643 +karman_re100,ppo,169,67.6,force,lower_fx,0.004182735923677683 +karman_re100,ppo,169,67.6,force,lower_fy,-0.005519012920558453 +karman_re100,ppo,170,68.0,force,front_fx,0.0002922810090240091 +karman_re100,ppo,170,68.0,force,front_fy,0.003644931595772505 +karman_re100,ppo,170,68.0,force,upper_fx,-0.004940937273204327 +karman_re100,ppo,170,68.0,force,upper_fy,0.0026003150269389153 +karman_re100,ppo,170,68.0,force,lower_fx,0.004448002204298973 +karman_re100,ppo,170,68.0,force,lower_fy,-0.005572088994085789 +karman_re100,ppo,171,68.4,force,front_fx,0.001891543623059988 +karman_re100,ppo,171,68.4,force,front_fy,0.003322664415463805 +karman_re100,ppo,171,68.4,force,upper_fx,-0.006173108704388142 +karman_re100,ppo,171,68.4,force,upper_fy,0.0023304910864681005 +karman_re100,ppo,171,68.4,force,lower_fx,0.004097477998584509 +karman_re100,ppo,171,68.4,force,lower_fy,-0.0055003403685987 +karman_re100,ppo,172,68.8,force,front_fx,0.0031533977016806602 +karman_re100,ppo,172,68.8,force,front_fy,0.0023868915159255266 +karman_re100,ppo,172,68.8,force,upper_fx,-0.0064805434085428715 +karman_re100,ppo,172,68.8,force,upper_fy,0.0026399302296340466 +karman_re100,ppo,172,68.8,force,lower_fx,0.00324994046241045 +karman_re100,ppo,172,68.8,force,lower_fy,-0.00517413392663002 +karman_re100,ppo,173,69.2,force,front_fx,0.0031973281875252724 +karman_re100,ppo,173,69.2,force,front_fy,0.0009472672827541828 +karman_re100,ppo,173,69.2,force,upper_fx,-0.0054269228130578995 +karman_re100,ppo,173,69.2,force,upper_fy,0.0035921738017350435 +karman_re100,ppo,173,69.2,force,lower_fx,0.002179586561396718 +karman_re100,ppo,173,69.2,force,lower_fy,-0.004800284281373024 +karman_re100,ppo,174,69.6,force,front_fx,0.0020916839130222797 +karman_re100,ppo,174,69.6,force,front_fy,-0.0005107581382617354 +karman_re100,ppo,174,69.6,force,upper_fx,-0.003183787688612938 +karman_re100,ppo,174,69.6,force,upper_fy,0.004914413206279278 +karman_re100,ppo,174,69.6,force,lower_fx,0.0011180111905559897 +karman_re100,ppo,174,69.6,force,lower_fy,-0.004606624133884907 +karman_re100,ppo,175,70.0,force,front_fx,0.000609277980402112 +karman_re100,ppo,175,70.0,force,front_fy,-0.0014761070488020778 +karman_re100,ppo,175,70.0,force,upper_fx,-0.00037082680501043797 +karman_re100,ppo,175,70.0,force,upper_fy,0.005792204290628433 +karman_re100,ppo,175,70.0,force,lower_fx,-2.330195638933219e-05 +karman_re100,ppo,175,70.0,force,lower_fy,-0.004569022450596094 +karman_re100,ppo,176,70.4,force,front_fx,-0.00045761323417536914 +karman_re100,ppo,176,70.4,force,front_fy,-0.002139866119250655 +karman_re100,ppo,176,70.4,force,upper_fx,0.0020936913788318634 +karman_re100,ppo,176,70.4,force,upper_fy,0.005861850921064615 +karman_re100,ppo,176,70.4,force,lower_fx,-0.0013742097653448582 +karman_re100,ppo,176,70.4,force,lower_fy,-0.004456005059182644 +karman_re100,ppo,177,70.8,force,front_fx,-0.0007319179130718112 +karman_re100,ppo,177,70.8,force,front_fy,-0.0029208408668637276 +karman_re100,ppo,177,70.8,force,upper_fx,0.0037877243012189865 +karman_re100,ppo,177,70.8,force,upper_fy,0.0057836114428937435 +karman_re100,ppo,177,70.8,force,lower_fx,-0.0028162833768874407 +karman_re100,ppo,177,70.8,force,lower_fy,-0.0036038586404174566 +karman_re100,ppo,178,71.2,force,front_fx,6.304679118329659e-05 +karman_re100,ppo,178,71.2,force,front_fy,-0.0035917016211897135 +karman_re100,ppo,178,71.2,force,upper_fx,0.004824234638363123 +karman_re100,ppo,178,71.2,force,upper_fy,0.005779251456260681 +karman_re100,ppo,178,71.2,force,lower_fx,-0.004806194454431534 +karman_re100,ppo,178,71.2,force,lower_fy,-0.002154674381017685 +karman_re100,ppo,179,71.6,force,front_fx,0.002053784905001521 +karman_re100,ppo,179,71.6,force,front_fy,-0.00390424276702106 +karman_re100,ppo,179,71.6,force,upper_fx,0.005031266715377569 +karman_re100,ppo,179,71.6,force,upper_fy,0.005754488054662943 +karman_re100,ppo,179,71.6,force,lower_fx,-0.007177369669079781 +karman_re100,ppo,179,71.6,force,lower_fy,-0.0012498267460614443 +karman_re100,ppo,180,72.0,force,front_fx,0.004650847055017948 +karman_re100,ppo,180,72.0,force,front_fy,-0.0036042239516973495 +karman_re100,ppo,180,72.0,force,upper_fx,0.004329785704612732 +karman_re100,ppo,180,72.0,force,upper_fy,0.0053425985388457775 +karman_re100,ppo,180,72.0,force,lower_fx,-0.00901870522648096 +karman_re100,ppo,180,72.0,force,lower_fy,-0.0011730463011190295 +karman_re100,ppo,181,72.4,force,front_fx,0.005958286114037037 +karman_re100,ppo,181,72.4,force,front_fy,-0.0025619962252676487 +karman_re100,ppo,181,72.4,force,upper_fx,0.0033108340576291084 +karman_re100,ppo,181,72.4,force,upper_fy,0.004470711573958397 +karman_re100,ppo,181,72.4,force,lower_fx,-0.009197837673127651 +karman_re100,ppo,181,72.4,force,lower_fy,-0.0019455133005976677 +karman_re100,ppo,182,72.8,force,front_fx,0.00515377800911665 +karman_re100,ppo,182,72.8,force,front_fy,-0.0010480720084160566 +karman_re100,ppo,182,72.8,force,upper_fx,0.0024092886596918106 +karman_re100,ppo,182,72.8,force,upper_fy,0.003942897543311119 +karman_re100,ppo,182,72.8,force,lower_fx,-0.007457338739186525 +karman_re100,ppo,182,72.8,force,lower_fy,-0.003233550814911723 +karman_re100,ppo,183,73.2,force,front_fx,0.0031156425829976797 +karman_re100,ppo,183,73.2,force,front_fy,0.0002514829393476248 +karman_re100,ppo,183,73.2,force,upper_fx,0.0015412537613883615 +karman_re100,ppo,183,73.2,force,upper_fy,0.0040301368571817875 +karman_re100,ppo,183,73.2,force,lower_fx,-0.004612044896930456 +karman_re100,ppo,183,73.2,force,lower_fy,-0.004550501238554716 +karman_re100,ppo,184,73.6,force,front_fx,0.0010681160492822528 +karman_re100,ppo,184,73.6,force,front_fy,0.0013501569628715515 +karman_re100,ppo,184,73.6,force,upper_fx,0.0004445738741196692 +karman_re100,ppo,184,73.6,force,upper_fy,0.0043558236211538315 +karman_re100,ppo,184,73.6,force,lower_fx,-0.0013820853782817721 +karman_re100,ppo,184,73.6,force,lower_fy,-0.0054933177307248116 +karman_re100,ppo,185,74.0,force,front_fx,-0.0003288904554210603 +karman_re100,ppo,185,74.0,force,front_fy,0.002231825841590762 +karman_re100,ppo,185,74.0,force,upper_fx,-0.0008057213854044676 +karman_re100,ppo,185,74.0,force,upper_fy,0.00450353417545557 +karman_re100,ppo,185,74.0,force,lower_fx,0.0014048232696950436 +karman_re100,ppo,185,74.0,force,lower_fy,-0.005704078823328018 +karman_re100,ppo,186,74.4,force,front_fx,-0.0009707468561828136 +karman_re100,ppo,186,74.4,force,front_fy,0.0029085176065564156 +karman_re100,ppo,186,74.4,force,upper_fx,-0.002021058928221464 +karman_re100,ppo,186,74.4,force,upper_fy,0.00415434455499053 +karman_re100,ppo,186,74.4,force,lower_fx,0.003180163912475109 +karman_re100,ppo,186,74.4,force,lower_fy,-0.0055677699856460094 +karman_re100,ppo,187,74.8,force,front_fx,-0.0008186112390831113 +karman_re100,ppo,187,74.8,force,front_fy,0.0034285716246813536 +karman_re100,ppo,187,74.8,force,upper_fx,-0.0033617548178881407 +karman_re100,ppo,187,74.8,force,upper_fy,0.0033683297224342823 +karman_re100,ppo,187,74.8,force,lower_fx,0.004135736729949713 +karman_re100,ppo,187,74.8,force,lower_fy,-0.0055222525261342525 +karman_re100,ppo,188,75.2,force,front_fx,0.00019009703828487545 +karman_re100,ppo,188,75.2,force,front_fy,0.003642706200480461 +karman_re100,ppo,188,75.2,force,upper_fx,-0.00485278619453311 +karman_re100,ppo,188,75.2,force,upper_fy,0.0026184848975390196 +karman_re100,ppo,188,75.2,force,lower_fx,0.0044445982202887535 +karman_re100,ppo,188,75.2,force,lower_fy,-0.005559991579502821 +karman_re100,ppo,189,75.6,force,front_fx,0.0017810415010899305 +karman_re100,ppo,189,75.6,force,front_fy,0.0033619822934269905 +karman_re100,ppo,189,75.6,force,upper_fx,-0.006119931116700172 +karman_re100,ppo,189,75.6,force,upper_fy,0.002314516343176365 +karman_re100,ppo,189,75.6,force,lower_fx,0.004143386147916317 +karman_re100,ppo,189,75.6,force,lower_fy,-0.00550279812887311 +karman_re100,ppo,190,76.0,force,front_fx,0.00311170588247478 +karman_re100,ppo,190,76.0,force,front_fy,0.0024732807651162148 +karman_re100,ppo,190,76.0,force,upper_fx,-0.006501799449324608 +karman_re100,ppo,190,76.0,force,upper_fy,0.0026034340262413025 +karman_re100,ppo,190,76.0,force,lower_fx,0.0033319357316941023 +karman_re100,ppo,190,76.0,force,lower_fy,-0.005204705521464348 +karman_re100,ppo,191,76.4,force,front_fx,0.0032499541994184256 +karman_re100,ppo,191,76.4,force,front_fy,0.0010618377709761262 +karman_re100,ppo,191,76.4,force,upper_fx,-0.005537030752748251 +karman_re100,ppo,191,76.4,force,upper_fy,0.0035267581697553396 +karman_re100,ppo,191,76.4,force,lower_fx,0.002265625400468707 +karman_re100,ppo,191,76.4,force,lower_fy,-0.004832620266824961 +karman_re100,ppo,192,76.8,force,front_fx,0.0021914539393037558 +karman_re100,ppo,192,76.8,force,front_fy,-0.00041727139614522457 +karman_re100,ppo,192,76.8,force,upper_fx,-0.003367246361449361 +karman_re100,ppo,192,76.8,force,upper_fy,0.004829114302992821 +karman_re100,ppo,192,76.8,force,lower_fx,0.0011912271147593856 +karman_re100,ppo,192,76.8,force,lower_fy,-0.004620896186679602 +karman_re100,ppo,193,77.2,force,front_fx,0.0007026363164186478 +karman_re100,ppo,193,77.2,force,front_fy,-0.001422635279595852 +karman_re100,ppo,193,77.2,force,upper_fx,-0.0005759239429607987 +karman_re100,ppo,193,77.2,force,upper_fy,0.005742108449339867 +karman_re100,ppo,193,77.2,force,lower_fx,5.7473145716357976e-05 +karman_re100,ppo,193,77.2,force,lower_fy,-0.004565557464957237 +karman_re100,ppo,194,77.6,force,front_fx,-0.00041128427255898714 +karman_re100,ppo,194,77.6,force,front_fy,-0.002089123474434018 +karman_re100,ppo,194,77.6,force,upper_fx,0.0019380967132747173 +karman_re100,ppo,194,77.6,force,upper_fy,0.0058422512374818325 +karman_re100,ppo,194,77.6,force,lower_fx,-0.001281829085201025 +karman_re100,ppo,194,77.6,force,lower_fy,-0.004462200216948986 +karman_re100,ppo,195,78.0,force,front_fx,-0.0007424062350764871 +karman_re100,ppo,195,78.0,force,front_fy,-0.002864645794034004 +karman_re100,ppo,195,78.0,force,upper_fx,0.0036924765445291996 +karman_re100,ppo,195,78.0,force,upper_fy,0.005765893496572971 +karman_re100,ppo,195,78.0,force,lower_fx,-0.0026955818757414818 +karman_re100,ppo,195,78.0,force,lower_fy,-0.003688810160383582 +karman_re100,ppo,196,78.4,force,front_fx,-3.571494380594231e-05 +karman_re100,ppo,196,78.4,force,front_fy,-0.0035539581440389156 +karman_re100,ppo,196,78.4,force,upper_fx,0.004782486706972122 +karman_re100,ppo,196,78.4,force,upper_fy,0.005780692212283611 +karman_re100,ppo,196,78.4,force,lower_fx,-0.004626289941370487 +karman_re100,ppo,196,78.4,force,lower_fy,-0.002262172754853964 +karman_re100,ppo,197,78.8,force,front_fx,0.001866926671937108 +karman_re100,ppo,197,78.8,force,front_fy,-0.0039013035129755735 +karman_re100,ppo,197,78.8,force,upper_fx,0.005054668989032507 +karman_re100,ppo,197,78.8,force,upper_fy,0.005771339405328035 +karman_re100,ppo,197,78.8,force,lower_fx,-0.006997183430939913 +karman_re100,ppo,197,78.8,force,lower_fy,-0.0012990086106583476 +karman_re100,ppo,198,79.2,force,front_fx,0.004471024964004755 +karman_re100,ppo,198,79.2,force,front_fy,-0.003648207988590002 +karman_re100,ppo,198,79.2,force,upper_fx,0.0043968199752271175 +karman_re100,ppo,198,79.2,force,upper_fy,0.0053987097926437855 +karman_re100,ppo,198,79.2,force,lower_fx,-0.008931132964789867 +karman_re100,ppo,198,79.2,force,lower_fy,-0.0011403118260204792 +karman_re100,ppo,199,79.6,force,front_fx,0.005920222960412502 +karman_re100,ppo,199,79.6,force,front_fy,-0.0026587331667542458 +karman_re100,ppo,199,79.6,force,upper_fx,0.0033743467647582293 +karman_re100,ppo,199,79.6,force,upper_fy,0.004527662880718708 +karman_re100,ppo,199,79.6,force,lower_fx,-0.009275516495108604 +karman_re100,ppo,199,79.6,force,lower_fy,-0.0018373169004917145 +karman_re100,ppo,200,80.0,force,front_fx,0.005282176658511162 +karman_re100,ppo,200,80.0,force,front_fy,-0.0011533470824360847 +karman_re100,ppo,200,80.0,force,upper_fx,0.002468711230903864 +karman_re100,ppo,200,80.0,force,upper_fy,0.003952619154006243 +karman_re100,ppo,200,80.0,force,lower_fx,-0.007654265966266394 +karman_re100,ppo,200,80.0,force,lower_fy,-0.003109896555542946 +karman_re100,ppo,201,80.4,force,front_fx,0.0032949340529739857 +karman_re100,ppo,201,80.4,force,front_fy,0.00017635499534662813 +karman_re100,ppo,201,80.4,force,upper_fx,0.0016223625279963017 +karman_re100,ppo,201,80.4,force,upper_fy,0.00401104474440217 +karman_re100,ppo,201,80.4,force,lower_fx,-0.0048543717712163925 +karman_re100,ppo,201,80.4,force,lower_fy,-0.004459276329725981 +karman_re100,ppo,202,80.8,force,front_fx,0.0012033529346808791 +karman_re100,ppo,202,80.8,force,front_fy,0.0012837195536121726 +karman_re100,ppo,202,80.8,force,upper_fx,0.0005458567757159472 +karman_re100,ppo,202,80.8,force,upper_fy,0.004345828667283058 +karman_re100,ppo,202,80.8,force,lower_fx,-0.0016238007228821516 +karman_re100,ppo,202,80.8,force,lower_fy,-0.005469810217618942 +karman_re100,ppo,203,81.2,force,front_fx,-0.00025535255554132164 +karman_re100,ppo,203,81.2,force,front_fy,0.0021803854033350945 +karman_re100,ppo,203,81.2,force,upper_fx,-0.0007113784668035805 +karman_re100,ppo,203,81.2,force,upper_fy,0.004522158298641443 +karman_re100,ppo,203,81.2,force,lower_fx,0.0012234399328008294 +karman_re100,ppo,203,81.2,force,lower_fy,-0.005732127930969 +karman_re100,ppo,204,81.6,force,front_fx,-0.0009538453887216747 +karman_re100,ppo,204,81.6,force,front_fy,0.0028631058521568775 +karman_re100,ppo,204,81.6,force,upper_fx,-0.0019321792060509324 +karman_re100,ppo,204,81.6,force,upper_fy,0.004200944676995277 +karman_re100,ppo,204,81.6,force,lower_fx,0.0030674112495034933 +karman_re100,ppo,204,81.6,force,lower_fy,-0.005581698380410671 +karman_re100,ppo,205,82.0,force,front_fx,-0.0008638190338388085 +karman_re100,ppo,205,82.0,force,front_fy,0.003396241459995508 +karman_re100,ppo,205,82.0,force,upper_fx,-0.003258139593526721 +karman_re100,ppo,205,82.0,force,upper_fy,0.003420739434659481 +karman_re100,ppo,205,82.0,force,lower_fx,0.004078362137079239 +karman_re100,ppo,205,82.0,force,lower_fy,-0.005511896684765816 +karman_re100,ppo,206,82.4,force,front_fx,9.376872912980616e-05 +karman_re100,ppo,206,82.4,force,front_fy,0.00363719929009676 +karman_re100,ppo,206,82.4,force,upper_fx,-0.004736603703349829 +karman_re100,ppo,206,82.4,force,upper_fy,0.0026584819424897432 +karman_re100,ppo,206,82.4,force,lower_fx,0.004442596808075905 +karman_re100,ppo,206,82.4,force,lower_fy,-0.00554847763851285 +karman_re100,ppo,207,82.8,force,front_fx,0.001664601149968803 +karman_re100,ppo,207,82.8,force,front_fy,0.003400075249373913 +karman_re100,ppo,207,82.8,force,upper_fx,-0.006029194686561823 +karman_re100,ppo,207,82.8,force,upper_fy,0.0023384117521345615 +karman_re100,ppo,207,82.8,force,lower_fx,0.004191388841718435 +karman_re100,ppo,207,82.8,force,lower_fy,-0.005518390331417322 +karman_re100,ppo,208,83.2,force,front_fx,0.003043121425434947 +karman_re100,ppo,208,83.2,force,front_fy,0.0025536383036524057 +karman_re100,ppo,208,83.2,force,upper_fx,-0.006493661552667618 +karman_re100,ppo,208,83.2,force,upper_fy,0.0025829009246081114 +karman_re100,ppo,208,83.2,force,lower_fx,0.003404061309993267 +karman_re100,ppo,208,83.2,force,lower_fy,-0.005243357270956039 +karman_re100,ppo,209,83.6,force,front_fx,0.0032675135880708694 +karman_re100,ppo,209,83.6,force,front_fy,0.0011705108918249607 +karman_re100,ppo,209,83.6,force,upper_fx,-0.005636274814605713 +karman_re100,ppo,209,83.6,force,upper_fy,0.0034452034160494804 +karman_re100,ppo,209,83.6,force,lower_fx,0.0023383265361189842 +karman_re100,ppo,209,83.6,force,lower_fy,-0.004860420245677233 +karman_re100,ppo,210,84.0,force,front_fx,0.0022819535806775093 +karman_re100,ppo,210,84.0,force,front_fy,-0.0003252855967730284 +karman_re100,ppo,210,84.0,force,upper_fx,-0.003552462672814727 +karman_re100,ppo,210,84.0,force,upper_fy,0.004716128576546907 +karman_re100,ppo,210,84.0,force,lower_fx,0.0012554797576740384 +karman_re100,ppo,210,84.0,force,lower_fy,-0.0046248952858150005 +karman_re100,ppo,211,84.4,force,front_fx,0.0008004594128578901 +karman_re100,ppo,211,84.4,force,front_fy,-0.0013696711976081133 +karman_re100,ppo,211,84.4,force,upper_fx,-0.0007817885489203036 +karman_re100,ppo,211,84.4,force,upper_fy,0.005682525224983692 +karman_re100,ppo,211,84.4,force,lower_fx,0.00014087039744481444 +karman_re100,ppo,211,84.4,force,lower_fy,-0.004555686842650175 +karman_re100,ppo,212,84.8,force,front_fx,-0.000351594208041206 +karman_re100,ppo,212,84.8,force,front_fy,-0.0020417599007487297 +karman_re100,ppo,212,84.8,force,upper_fx,0.0017867950955405831 +karman_re100,ppo,212,84.8,force,upper_fy,0.005844199098646641 +karman_re100,ppo,212,84.8,force,lower_fx,-0.001176854595541954 +karman_re100,ppo,212,84.8,force,lower_fy,-0.004475260153412819 +karman_re100,ppo,213,85.2,force,front_fx,-0.0007477995241060853 +karman_re100,ppo,213,85.2,force,front_fy,-0.002810810226947069 +karman_re100,ppo,213,85.2,force,upper_fx,0.003595303976908326 +karman_re100,ppo,213,85.2,force,upper_fy,0.005776047706604004 +karman_re100,ppo,213,85.2,force,lower_fx,-0.002576361410319805 +karman_re100,ppo,213,85.2,force,lower_fy,-0.0037860944867134094 +karman_re100,ppo,214,85.6,force,front_fx,-0.000129657841171138 +karman_re100,ppo,214,85.6,force,front_fy,-0.003512811614200473 +karman_re100,ppo,214,85.6,force,upper_fx,0.004726969171315432 +karman_re100,ppo,214,85.6,force,upper_fy,0.005789865739643574 +karman_re100,ppo,214,85.6,force,lower_fx,-0.00446225143969059 +karman_re100,ppo,214,85.6,force,lower_fy,-0.002368254354223609 +karman_re100,ppo,215,86.0,force,front_fx,0.0016903135692700744 +karman_re100,ppo,215,86.0,force,front_fy,-0.0038926939014345407 +karman_re100,ppo,215,86.0,force,upper_fx,0.005060647148638964 +karman_re100,ppo,215,86.0,force,upper_fy,0.005776288453489542 +karman_re100,ppo,215,86.0,force,lower_fx,-0.006837938446551561 +karman_re100,ppo,215,86.0,force,lower_fy,-0.0013310201466083527 +karman_re100,ppo,216,86.4,force,front_fx,0.0042940108105540276 +karman_re100,ppo,216,86.4,force,front_fy,-0.0036870946642011404 +karman_re100,ppo,216,86.4,force,upper_fx,0.004458938259631395 +karman_re100,ppo,216,86.4,force,upper_fy,0.005437931977212429 +karman_re100,ppo,216,86.4,force,lower_fx,-0.008847851306200027 +karman_re100,ppo,216,86.4,force,lower_fy,-0.0011024607811123133 +karman_re100,ppo,217,86.8,force,front_fx,0.005901114549487829 +karman_re100,ppo,217,86.8,force,front_fy,-0.002749501494690776 +karman_re100,ppo,217,86.8,force,upper_fx,0.0034463009797036648 +karman_re100,ppo,217,86.8,force,upper_fy,0.004581095185130835 +karman_re100,ppo,217,86.8,force,lower_fx,-0.00933290459215641 +karman_re100,ppo,217,86.8,force,lower_fy,-0.001748064300045371 +karman_re100,ppo,218,87.2,force,front_fx,0.005395463667809963 +karman_re100,ppo,218,87.2,force,front_fy,-0.0012585058575496078 +karman_re100,ppo,218,87.2,force,upper_fx,0.0025371694937348366 +karman_re100,ppo,218,87.2,force,upper_fy,0.003971424885094166 +karman_re100,ppo,218,87.2,force,lower_fx,-0.007819166406989098 +karman_re100,ppo,218,87.2,force,lower_fy,-0.0030238216277211905 +karman_re100,ppo,219,87.6,force,front_fx,0.003452862147241831 +karman_re100,ppo,219,87.6,force,front_fy,9.308502194471657e-05 +karman_re100,ppo,219,87.6,force,upper_fx,0.0016932805301621556 +karman_re100,ppo,219,87.6,force,upper_fy,0.003998439759016037 +karman_re100,ppo,219,87.6,force,lower_fx,-0.005071377381682396 +karman_re100,ppo,219,87.6,force,lower_fy,-0.004389248788356781 +karman_re100,ppo,220,88.0,force,front_fx,0.0013338109711185098 +karman_re100,ppo,220,88.0,force,front_fy,0.0012098331935703754 +karman_re100,ppo,220,88.0,force,upper_fx,0.0006286210846155882 +karman_re100,ppo,220,88.0,force,upper_fy,0.004328473471105099 +karman_re100,ppo,220,88.0,force,lower_fx,-0.0018514670664444566 +karman_re100,ppo,220,88.0,force,lower_fy,-0.005431986879557371 +karman_re100,ppo,221,88.4,force,front_fx,-0.00018270566943101585 +karman_re100,ppo,221,88.4,force,front_fy,0.0021246974356472492 +karman_re100,ppo,221,88.4,force,upper_fx,-0.0006311532342806458 +karman_re100,ppo,221,88.4,force,upper_fy,0.004516969434916973 +karman_re100,ppo,221,88.4,force,lower_fx,0.0010467356769368052 +karman_re100,ppo,221,88.4,force,lower_fy,-0.005724746733903885 +karman_re100,ppo,222,88.8,force,front_fx,-0.0009294247138313949 +karman_re100,ppo,222,88.8,force,front_fy,0.002821137895807624 +karman_re100,ppo,222,88.8,force,upper_fx,-0.0018485498148947954 +karman_re100,ppo,222,88.8,force,upper_fy,0.004229911137372255 +karman_re100,ppo,222,88.8,force,lower_fx,0.0029632749501615763 +karman_re100,ppo,222,88.8,force,lower_fy,-0.005574225913733244 +karman_re100,ppo,223,89.2,force,front_fx,-0.0008957672398537397 +karman_re100,ppo,223,89.2,force,front_fy,0.0033698612824082375 +karman_re100,ppo,223,89.2,force,upper_fx,-0.0031516922172158957 +karman_re100,ppo,223,89.2,force,upper_fy,0.0034804351162165403 +karman_re100,ppo,223,89.2,force,lower_fx,0.004031819757074118 +karman_re100,ppo,223,89.2,force,lower_fy,-0.005504544824361801 +karman_re100,ppo,224,89.6,force,front_fx,3.0910696295904927e-06 +karman_re100,ppo,224,89.6,force,front_fy,0.003636591136455536 +karman_re100,ppo,224,89.6,force,upper_fx,-0.004620843101292849 +karman_re100,ppo,224,89.6,force,upper_fy,0.002717321738600731 +karman_re100,ppo,224,89.6,force,lower_fx,0.004441407043486834 +karman_re100,ppo,224,89.6,force,lower_fy,-0.005553392227739096 +karman_re100,ppo,225,90.0,force,front_fx,0.001544472179375589 +karman_re100,ppo,225,90.0,force,front_fy,0.0034414632245898247 +karman_re100,ppo,225,90.0,force,upper_fx,-0.005947599187493324 +karman_re100,ppo,225,90.0,force,upper_fy,0.0023584794253110886 +karman_re100,ppo,225,90.0,force,lower_fx,0.00422578165307641 +karman_re100,ppo,225,90.0,force,lower_fy,-0.005539553239941597 +karman_re100,ppo,226,90.4,force,front_fx,0.0029658046551048756 +karman_re100,ppo,226,90.4,force,front_fy,0.0026366664096713066 +karman_re100,ppo,226,90.4,force,upper_fx,-0.0065006990917027 +karman_re100,ppo,226,90.4,force,upper_fy,0.0025446906220167875 +karman_re100,ppo,226,90.4,force,lower_fx,0.003463647561147809 +karman_re100,ppo,226,90.4,force,lower_fy,-0.005269928369671106 +karman_re100,ppo,227,90.8,force,front_fx,0.0032904294785112143 +karman_re100,ppo,227,90.8,force,front_fy,0.0012771369656547904 +karman_re100,ppo,227,90.8,force,upper_fx,-0.005746910348534584 +karman_re100,ppo,227,90.8,force,upper_fy,0.0033516972325742245 +karman_re100,ppo,227,90.8,force,lower_fx,0.0024071226362138987 +karman_re100,ppo,227,90.8,force,lower_fy,-0.004876845981925726 +karman_re100,ppo,228,91.2,force,front_fx,0.0023769100662320852 +karman_re100,ppo,228,91.2,force,front_fy,-0.00022925039229448885 +karman_re100,ppo,228,91.2,force,upper_fx,-0.0037341671995818615 +karman_re100,ppo,228,91.2,force,upper_fy,0.004619447980076075 +karman_re100,ppo,228,91.2,force,lower_fx,0.0013295181561261415 +karman_re100,ppo,228,91.2,force,lower_fy,-0.004626067820936441 +karman_re100,ppo,229,91.6,force,front_fx,0.000906113360542804 +karman_re100,ppo,229,91.6,force,front_fy,-0.0013160358648747206 +karman_re100,ppo,229,91.6,force,upper_fx,-0.0009737703367136419 +karman_re100,ppo,229,91.6,force,upper_fy,0.005656289868056774 +karman_re100,ppo,229,91.6,force,lower_fx,0.00023649854119867086 +karman_re100,ppo,229,91.6,force,lower_fy,-0.00455807289108634 +karman_re100,ppo,230,92.0,force,front_fx,-0.00028998914058320224 +karman_re100,ppo,230,92.0,force,front_fy,-0.0019941290374845266 +karman_re100,ppo,230,92.0,force,upper_fx,0.0016376733547076583 +karman_re100,ppo,230,92.0,force,upper_fy,0.005873612128198147 +karman_re100,ppo,230,92.0,force,lower_fx,-0.0010731784859672189 +karman_re100,ppo,230,92.0,force,lower_fy,-0.004498801194131374 +karman_re100,ppo,231,92.4,force,front_fx,-0.0007491111755371094 +karman_re100,ppo,231,92.4,force,front_fy,-0.002753217238932848 +karman_re100,ppo,231,92.4,force,upper_fx,0.003494472708553076 +karman_re100,ppo,231,92.4,force,upper_fy,0.005794653203338385 +karman_re100,ppo,231,92.4,force,lower_fx,-0.0024722525849938393 +karman_re100,ppo,231,92.4,force,lower_fy,-0.003879253752529621 +karman_re100,ppo,232,92.8,force,front_fx,-0.0002115160459652543 +karman_re100,ppo,232,92.8,force,front_fy,-0.00346999429166317 +karman_re100,ppo,232,92.8,force,upper_fx,0.004662854131311178 +karman_re100,ppo,232,92.8,force,upper_fy,0.005789561662822962 +karman_re100,ppo,232,92.8,force,lower_fx,-0.004318386781960726 +karman_re100,ppo,232,92.8,force,lower_fy,-0.002458872739225626 +karman_re100,ppo,233,93.2,force,front_fx,0.0015312257455661893 +karman_re100,ppo,233,93.2,force,front_fy,-0.0038809797260910273 +karman_re100,ppo,233,93.2,force,upper_fx,0.005063729360699654 +karman_re100,ppo,233,93.2,force,upper_fy,0.005773736163973808 +karman_re100,ppo,233,93.2,force,lower_fx,-0.006698980461806059 +karman_re100,ppo,233,93.2,force,lower_fy,-0.0013753152452409267 +karman_re100,ppo,234,93.6,force,front_fx,0.004129811655730009 +karman_re100,ppo,234,93.6,force,front_fy,-0.0037232660688459873 +karman_re100,ppo,234,93.6,force,upper_fx,0.0045265015214681625 +karman_re100,ppo,234,93.6,force,upper_fy,0.0054777697660028934 +karman_re100,ppo,234,93.6,force,lower_fx,-0.00874241627752781 +karman_re100,ppo,234,93.6,force,lower_fy,-0.0010905804811045527 +karman_re100,ppo,235,94.0,force,front_fx,0.0058723087422549725 +karman_re100,ppo,235,94.0,force,front_fy,-0.002838298911228776 +karman_re100,ppo,235,94.0,force,upper_fx,0.003522631246596575 +karman_re100,ppo,235,94.0,force,upper_fy,0.004645312204957008 +karman_re100,ppo,235,94.0,force,lower_fx,-0.00935413222759962 +karman_re100,ppo,235,94.0,force,lower_fy,-0.0016939431661739945 +karman_re100,ppo,236,94.4,force,front_fx,0.005486977286636829 +karman_re100,ppo,236,94.4,force,front_fy,-0.0013630330795422196 +karman_re100,ppo,236,94.4,force,upper_fx,0.002596785081550479 +karman_re100,ppo,236,94.4,force,upper_fy,0.003997371532022953 +karman_re100,ppo,236,94.4,force,lower_fx,-0.007958752103149891 +karman_re100,ppo,236,94.4,force,lower_fy,-0.0029469772707670927 +karman_re100,ppo,237,94.8,force,front_fx,0.0035989517346024513 +karman_re100,ppo,237,94.8,force,front_fy,-5.482853339344729e-06 +karman_re100,ppo,237,94.8,force,upper_fx,0.0017488080775365233 +karman_re100,ppo,237,94.8,force,upper_fy,0.003981684800237417 +karman_re100,ppo,237,94.8,force,lower_fx,-0.005273514427244663 +karman_re100,ppo,237,94.8,force,lower_fy,-0.004303778056055307 +karman_re100,ppo,238,95.2,force,front_fx,0.001457519712857902 +karman_re100,ppo,238,95.2,force,front_fy,0.0011338851181790233 +karman_re100,ppo,238,95.2,force,upper_fx,0.0007015818846412003 +karman_re100,ppo,238,95.2,force,upper_fy,0.004297521896660328 +karman_re100,ppo,238,95.2,force,lower_fx,-0.0020680271554738283 +karman_re100,ppo,238,95.2,force,lower_fy,-0.005366732366383076 +karman_re100,ppo,239,95.6,force,front_fx,-0.00010239082621410489 +karman_re100,ppo,239,95.6,force,front_fy,0.002066779648885131 +karman_re100,ppo,239,95.6,force,upper_fx,-0.0005490868352353573 +karman_re100,ppo,239,95.6,force,upper_fy,0.004504142329096794 +karman_re100,ppo,239,95.6,force,lower_fx,0.0008813539752736688 +karman_re100,ppo,239,95.6,force,lower_fy,-0.005708881188184023 +karman_re100,ppo,240,96.0,force,front_fx,-0.0008963915170170367 +karman_re100,ppo,240,96.0,force,front_fy,0.0027799243107438087 +karman_re100,ppo,240,96.0,force,upper_fx,-0.001768309623003006 +karman_re100,ppo,240,96.0,force,upper_fy,0.004258320201188326 +karman_re100,ppo,240,96.0,force,lower_fx,0.0028736211825162172 +karman_re100,ppo,240,96.0,force,lower_fy,-0.005579841323196888 +karman_re100,ppo,241,96.4,force,front_fx,-0.0009204650414176285 +karman_re100,ppo,241,96.4,force,front_fy,0.0033379143569618464 +karman_re100,ppo,241,96.4,force,upper_fx,-0.0030537450220435858 +karman_re100,ppo,241,96.4,force,upper_fy,0.003547593019902706 +karman_re100,ppo,241,96.4,force,lower_fx,0.003988645039498806 +karman_re100,ppo,241,96.4,force,lower_fy,-0.005511032417416573 +karman_re100,ppo,242,96.8,force,front_fx,-8.354428427992389e-05 +karman_re100,ppo,242,96.8,force,front_fy,0.003633642103523016 +karman_re100,ppo,242,96.8,force,upper_fx,-0.004523364827036858 +karman_re100,ppo,242,96.8,force,upper_fy,0.002764756791293621 +karman_re100,ppo,242,96.8,force,lower_fx,0.004434237256646156 +karman_re100,ppo,242,96.8,force,lower_fy,-0.005557636730372906 +karman_re100,ppo,243,97.2,force,front_fx,0.001427654642611742 +karman_re100,ppo,243,97.2,force,front_fy,0.0034762106370180845 +karman_re100,ppo,243,97.2,force,upper_fx,-0.005887852516025305 +karman_re100,ppo,243,97.2,force,upper_fy,0.002355511300265789 +karman_re100,ppo,243,97.2,force,lower_fx,0.0042555793188512325 +karman_re100,ppo,243,97.2,force,lower_fy,-0.005545778665691614 +karman_re100,ppo,244,97.6,force,front_fx,0.0028982495423406363 +karman_re100,ppo,244,97.6,force,front_fy,0.0027128509245812893 +karman_re100,ppo,244,97.6,force,upper_fx,-0.0065186540596187115 +karman_re100,ppo,244,97.6,force,upper_fy,0.0024940960574895144 +karman_re100,ppo,244,97.6,force,lower_fx,0.003526964457705617 +karman_re100,ppo,244,97.6,force,lower_fy,-0.005287681240588427 +karman_re100,ppo,245,98.0,force,front_fx,0.003325578523799777 +karman_re100,ppo,245,98.0,force,front_fy,0.0013873917050659657 +karman_re100,ppo,245,98.0,force,upper_fx,-0.005853097420185804 +karman_re100,ppo,245,98.0,force,upper_fy,0.003269495675340295 +karman_re100,ppo,245,98.0,force,lower_fx,0.002488575177267194 +karman_re100,ppo,245,98.0,force,lower_fy,-0.00489649036899209 +karman_re100,ppo,246,98.4,force,front_fx,0.002479001646861434 +karman_re100,ppo,246,98.4,force,front_fy,-0.00013519893400371075 +karman_re100,ppo,246,98.4,force,upper_fx,-0.003907197620719671 +karman_re100,ppo,246,98.4,force,upper_fy,0.004541503731161356 +karman_re100,ppo,246,98.4,force,lower_fx,0.00141136406455189 +karman_re100,ppo,246,98.4,force,lower_fy,-0.004640490282326937 +karman_re100,ppo,247,98.8,force,front_fx,0.0010187475709244609 +karman_re100,ppo,247,98.8,force,front_fy,-0.0012578957248479128 +karman_re100,ppo,247,98.8,force,upper_fx,-0.0011693426640704274 +karman_re100,ppo,247,98.8,force,upper_fy,0.005628526210784912 +karman_re100,ppo,247,98.8,force,lower_fx,0.0003215789911337197 +karman_re100,ppo,247,98.8,force,lower_fy,-0.004571717232465744 +karman_re100,ppo,248,99.2,force,front_fx,-0.00022893596906214952 +karman_re100,ppo,248,99.2,force,front_fy,-0.0019456008449196815 +karman_re100,ppo,248,99.2,force,upper_fx,0.0014756000600755215 +karman_re100,ppo,248,99.2,force,upper_fy,0.005885007791221142 +karman_re100,ppo,248,99.2,force,lower_fx,-0.000984571292065084 +karman_re100,ppo,248,99.2,force,lower_fy,-0.004521903116255999 +karman_re100,ppo,249,99.6,force,front_fx,-0.0007479513296857476 +karman_re100,ppo,249,99.6,force,front_fy,-0.002697117393836379 +karman_re100,ppo,249,99.6,force,upper_fx,0.003383259754627943 +karman_re100,ppo,249,99.6,force,upper_fy,0.005790314171463251 +karman_re100,ppo,249,99.6,force,lower_fx,-0.002375431824475527 +karman_re100,ppo,249,99.6,force,lower_fy,-0.0039517940022051334 +karman_re100,ppo,250,100.0,force,front_fx,-0.0002866485738195479 +karman_re100,ppo,250,100.0,force,front_fy,-0.003427402349188924 +karman_re100,ppo,250,100.0,force,upper_fx,0.004601773805916309 +karman_re100,ppo,250,100.0,force,upper_fy,0.005779431667178869 +karman_re100,ppo,250,100.0,force,lower_fx,-0.004170174710452557 +karman_re100,ppo,250,100.0,force,lower_fy,-0.0025506368838250637 +karman_re100,ppo,251,100.4,force,front_fx,0.001376133761368692 +karman_re100,ppo,251,100.4,force,front_fy,-0.0038679870776832104 +karman_re100,ppo,251,100.4,force,upper_fx,0.005073005333542824 +karman_re100,ppo,251,100.4,force,upper_fy,0.005777422338724136 +karman_re100,ppo,251,100.4,force,lower_fx,-0.006510906387120485 +karman_re100,ppo,251,100.4,force,lower_fy,-0.0014189217472448945 +karman_re100,ppo,252,100.8,force,front_fx,0.003950107842683792 +karman_re100,ppo,252,100.8,force,front_fy,-0.0037589548155665398 +karman_re100,ppo,252,100.8,force,upper_fx,0.004593231249600649 +karman_re100,ppo,252,100.8,force,upper_fy,0.005526758264750242 +karman_re100,ppo,252,100.8,force,lower_fx,-0.008619873784482479 +karman_re100,ppo,252,100.8,force,lower_fy,-0.0011016922071576118 +karman_re100,ppo,253,101.2,force,front_fx,0.005811271723359823 +karman_re100,ppo,253,101.2,force,front_fy,-0.002931492403149605 +karman_re100,ppo,253,101.2,force,upper_fx,0.0035922133829444647 +karman_re100,ppo,253,101.2,force,upper_fy,0.004714672453701496 +karman_re100,ppo,253,101.2,force,lower_fx,-0.009368778206408024 +karman_re100,ppo,253,101.2,force,lower_fy,-0.001641018781810999 +karman_re100,ppo,254,101.6,force,front_fx,0.005560559686273336 +karman_re100,ppo,254,101.6,force,front_fy,-0.0014725754735991359 +karman_re100,ppo,254,101.6,force,upper_fx,0.0026495468337088823 +karman_re100,ppo,254,101.6,force,upper_fy,0.00402358453720808 +karman_re100,ppo,254,101.6,force,lower_fx,-0.008103766478598118 +karman_re100,ppo,254,101.6,force,lower_fy,-0.0028495865408331156 +karman_re100,ppo,255,102.0,force,front_fx,0.0037522423081099987 +karman_re100,ppo,255,102.0,force,front_fy,-7.179470412665978e-05 +karman_re100,ppo,255,102.0,force,upper_fx,0.0018044160678982735 +karman_re100,ppo,255,102.0,force,upper_fy,0.003961025271564722 +karman_re100,ppo,255,102.0,force,lower_fx,-0.005484755616635084 +karman_re100,ppo,255,102.0,force,lower_fy,-0.004197315778583288 +karman_re100,ppo,256,102.4,force,front_fx,0.0015954483533278108 +karman_re100,ppo,256,102.4,force,front_fy,0.0010548470309004188 +karman_re100,ppo,256,102.4,force,upper_fx,0.0007836755830794573 +karman_re100,ppo,256,102.4,force,upper_fy,0.004269602242857218 +karman_re100,ppo,256,102.4,force,lower_fx,-0.002290785312652588 +karman_re100,ppo,256,102.4,force,lower_fy,-0.0052999467588961124 +karman_re100,ppo,257,102.8,force,front_fx,-1.4413426470127888e-05 +karman_re100,ppo,257,102.8,force,front_fy,0.002011599252000451 +karman_re100,ppo,257,102.8,force,upper_fx,-0.0004557570209726691 +karman_re100,ppo,257,102.8,force,upper_fy,0.004502160474658012 +karman_re100,ppo,257,102.8,force,lower_fx,0.0007107963901944458 +karman_re100,ppo,257,102.8,force,lower_fy,-0.00571038294583559 +karman_re100,ppo,258,103.2,force,front_fx,-0.0008650329546071589 +karman_re100,ppo,258,103.2,force,front_fy,0.002728743012994528 +karman_re100,ppo,258,103.2,force,upper_fx,-0.0016742002917453647 +karman_re100,ppo,258,103.2,force,upper_fy,0.004309710580855608 +karman_re100,ppo,258,103.2,force,lower_fx,0.0027726388070732355 +karman_re100,ppo,258,103.2,force,lower_fy,-0.0056016757152974606 +karman_re100,ppo,259,103.6,force,front_fx,-0.0009492914541624486 +karman_re100,ppo,259,103.6,force,front_fy,0.003307022387161851 +karman_re100,ppo,259,103.6,force,upper_fx,-0.002961966209113598 +karman_re100,ppo,259,103.6,force,upper_fy,0.003607527120038867 +karman_re100,ppo,259,103.6,force,lower_fx,0.003933740314096212 +karman_re100,ppo,259,103.6,force,lower_fy,-0.005518339108675718 +karman_re100,ppo,260,104.0,force,front_fx,-0.00017239278531633317 +karman_re100,ppo,260,104.0,force,front_fy,0.003623619908466935 +karman_re100,ppo,260,104.0,force,upper_fx,-0.004429428372532129 +karman_re100,ppo,260,104.0,force,upper_fy,0.0027969300281256437 +karman_re100,ppo,260,104.0,force,lower_fx,0.00442093750461936 +karman_re100,ppo,260,104.0,force,lower_fy,-0.005547585431486368 +karman_re100,ppo,261,104.4,force,front_fx,0.001311415689997375 +karman_re100,ppo,261,104.4,force,front_fy,0.0035026127006858587 +karman_re100,ppo,261,104.4,force,upper_fx,-0.005817814264446497 +karman_re100,ppo,261,104.4,force,upper_fy,0.0023497280199080706 +karman_re100,ppo,261,104.4,force,lower_fx,0.004288434516638517 +karman_re100,ppo,261,104.4,force,lower_fy,-0.00554327666759491 +karman_re100,ppo,262,104.8,force,front_fx,0.0028294348157942295 +karman_re100,ppo,262,104.8,force,front_fy,0.0027858251705765724 +karman_re100,ppo,262,104.8,force,upper_fx,-0.006519634742289782 +karman_re100,ppo,262,104.8,force,upper_fy,0.0024597335141152143 +karman_re100,ppo,262,104.8,force,lower_fx,0.0035987067967653275 +karman_re100,ppo,262,104.8,force,lower_fy,-0.005311114713549614 +karman_re100,ppo,263,105.2,force,front_fx,0.0033490026835352182 +karman_re100,ppo,263,105.2,force,front_fy,0.001492114388383925 +karman_re100,ppo,263,105.2,force,upper_fx,-0.0059484075754880905 +karman_re100,ppo,263,105.2,force,upper_fy,0.003206985304132104 +karman_re100,ppo,263,105.2,force,lower_fx,0.002574147656559944 +karman_re100,ppo,263,105.2,force,lower_fy,-0.004927815869450569 +karman_re100,ppo,264,105.6,force,front_fx,0.002574192825704813 +karman_re100,ppo,264,105.6,force,front_fy,-3.414816819713451e-05 +karman_re100,ppo,264,105.6,force,upper_fx,-0.00407920079305768 +karman_re100,ppo,264,105.6,force,upper_fy,0.00445608189329505 +karman_re100,ppo,264,105.6,force,lower_fx,0.0014881251845508814 +karman_re100,ppo,264,105.6,force,lower_fy,-0.004656900651752949 +karman_re100,ppo,265,106.0,force,front_fx,0.0011158816050738096 +karman_re100,ppo,265,106.0,force,front_fy,-0.0011960117844864726 +karman_re100,ppo,265,106.0,force,upper_fx,-0.0013771426165476441 +karman_re100,ppo,265,106.0,force,upper_fy,0.005569915287196636 +karman_re100,ppo,265,106.0,force,lower_fx,0.00040036349673755467 +karman_re100,ppo,265,106.0,force,lower_fy,-0.004573106300085783 +karman_re100,ppo,266,106.4,force,front_fx,-0.0001664034789428115 +karman_re100,ppo,266,106.4,force,front_fy,-0.001898253452964127 +karman_re100,ppo,266,106.4,force,upper_fx,0.0013006206136196852 +karman_re100,ppo,266,106.4,force,upper_fy,0.005870311986654997 +karman_re100,ppo,266,106.4,force,lower_fx,-0.000891420932020992 +karman_re100,ppo,266,106.4,force,lower_fy,-0.0045233056880533695 +karman_re100,ppo,267,106.8,force,front_fx,-0.0007400746690109372 +karman_re100,ppo,267,106.8,force,front_fy,-0.0026404315140098333 +karman_re100,ppo,267,106.8,force,upper_fx,0.0032708081416785717 +karman_re100,ppo,267,106.8,force,upper_fy,0.005778204649686813 +karman_re100,ppo,267,106.8,force,lower_fx,-0.0022689758334308863 +karman_re100,ppo,267,106.8,force,lower_fy,-0.004017344675958157 +karman_re100,ppo,268,107.2,force,front_fx,-0.00035743432817980647 +karman_re100,ppo,268,107.2,force,front_fy,-0.0033829649910330772 +karman_re100,ppo,268,107.2,force,upper_fx,0.004540557973086834 +karman_re100,ppo,268,107.2,force,upper_fy,0.0057769883424043655 +karman_re100,ppo,268,107.2,force,lower_fx,-0.004008196759968996 +karman_re100,ppo,268,107.2,force,lower_fy,-0.002660426776856184 +karman_re100,ppo,269,107.6,force,front_fx,0.001214418327435851 +karman_re100,ppo,269,107.6,force,front_fy,-0.0038535534404218197 +karman_re100,ppo,269,107.6,force,upper_fx,0.005073979496955872 +karman_re100,ppo,269,107.6,force,upper_fy,0.005786578170955181 +karman_re100,ppo,269,107.6,force,lower_fx,-0.00632843840867281 +karman_re100,ppo,269,107.6,force,lower_fy,-0.001486164634115994 +karman_re100,ppo,270,108.0,force,front_fx,0.0037538104224950075 +karman_re100,ppo,270,108.0,force,front_fy,-0.0037877571303397417 +karman_re100,ppo,270,108.0,force,upper_fx,0.004653013311326504 +karman_re100,ppo,270,108.0,force,upper_fy,0.005568764638155699 +karman_re100,ppo,270,108.0,force,lower_fx,-0.008494677022099495 +karman_re100,ppo,270,108.0,force,lower_fy,-0.001099025714211166 +karman_re100,ppo,271,108.4,force,front_fx,0.005740892142057419 +karman_re100,ppo,271,108.4,force,front_fy,-0.003019576659426093 +karman_re100,ppo,271,108.4,force,upper_fx,0.0036597680300474167 +karman_re100,ppo,271,108.4,force,upper_fy,0.0047791507095098495 +karman_re100,ppo,271,108.4,force,lower_fx,-0.009390558116137981 +karman_re100,ppo,271,108.4,force,lower_fy,-0.0015579111641272902 +karman_re100,ppo,272,108.8,force,front_fx,0.005644919350743294 +karman_re100,ppo,272,108.8,force,front_fy,-0.0015840925043448806 +karman_re100,ppo,272,108.8,force,upper_fx,0.0027085146866738796 +karman_re100,ppo,272,108.8,force,upper_fy,0.004049118608236313 +karman_re100,ppo,272,108.8,force,lower_fx,-0.008261165581643581 +karman_re100,ppo,272,108.8,force,lower_fy,-0.0027341016102582216 +karman_re100,ppo,273,109.2,force,front_fx,0.003916814457625151 +karman_re100,ppo,273,109.2,force,front_fy,-0.00016721714928280562 +karman_re100,ppo,273,109.2,force,upper_fx,0.0018719738582149148 +karman_re100,ppo,273,109.2,force,upper_fy,0.0039451573975384235 +karman_re100,ppo,273,109.2,force,lower_fx,-0.005711766425520182 +karman_re100,ppo,273,109.2,force,lower_fy,-0.004097675438970327 +karman_re100,ppo,274,109.6,force,front_fx,0.0017443293472751975 +karman_re100,ppo,274,109.6,force,front_fy,0.0009837814141064882 +karman_re100,ppo,274,109.6,force,upper_fx,0.0008772665751166642 +karman_re100,ppo,274,109.6,force,upper_fy,0.004251130856573582 +karman_re100,ppo,274,109.6,force,lower_fx,-0.002531397622078657 +karman_re100,ppo,274,109.6,force,lower_fy,-0.005256077740341425 +karman_re100,ppo,275,110.0,force,front_fx,7.408628152916208e-05 +karman_re100,ppo,275,110.0,force,front_fy,0.0019557075574994087 +karman_re100,ppo,275,110.0,force,upper_fx,-0.0003619173658080399 +karman_re100,ppo,275,110.0,force,upper_fy,0.0045061721466481686 +karman_re100,ppo,275,110.0,force,lower_fx,0.000518853950779885 +karman_re100,ppo,275,110.0,force,lower_fy,-0.005721105728298426 +karman_re100,ppo,276,110.4,force,front_fx,-0.0008298839093185961 +karman_re100,ppo,276,110.4,force,front_fy,0.002682008547708392 +karman_re100,ppo,276,110.4,force,upper_fx,-0.0015893817180767655 +karman_re100,ppo,276,110.4,force,upper_fy,0.00434652017429471 +karman_re100,ppo,276,110.4,force,lower_fx,0.002649388276040554 +karman_re100,ppo,276,110.4,force,lower_fy,-0.00562289310619235 +karman_re100,ppo,277,110.8,force,front_fx,-0.000974853930529207 +karman_re100,ppo,277,110.8,force,front_fy,0.003270016983151436 +karman_re100,ppo,277,110.8,force,upper_fx,-0.002864567330107093 +karman_re100,ppo,277,110.8,force,upper_fy,0.003661682363599539 +karman_re100,ppo,277,110.8,force,lower_fx,0.0038663737941533327 +karman_re100,ppo,277,110.8,force,lower_fy,-0.005516222212463617 +karman_re100,ppo,278,111.2,force,front_fx,-0.0002558767737355083 +karman_re100,ppo,278,111.2,force,front_fy,0.0036100363358855247 +karman_re100,ppo,278,111.2,force,upper_fx,-0.0043190219439566135 +karman_re100,ppo,278,111.2,force,upper_fy,0.0028427061624825 +karman_re100,ppo,278,111.2,force,lower_fx,0.004404437728226185 +karman_re100,ppo,278,111.2,force,lower_fy,-0.0055385068990290165 +karman_re100,ppo,279,111.6,force,front_fx,0.0011959167895838618 +karman_re100,ppo,279,111.6,force,front_fy,0.003528130706399679 +karman_re100,ppo,279,111.6,force,upper_fx,-0.005720877088606358 +karman_re100,ppo,279,111.6,force,upper_fy,0.002374304225668311 +karman_re100,ppo,279,111.6,force,lower_fx,0.004321581218391657 +karman_re100,ppo,279,111.6,force,lower_fy,-0.005551404319703579 +karman_re100,ppo,280,112.0,force,front_fx,0.0027418138924986124 +karman_re100,ppo,280,112.0,force,front_fy,0.0028561963699758053 +karman_re100,ppo,280,112.0,force,upper_fx,-0.006490472704172134 +karman_re100,ppo,280,112.0,force,upper_fy,0.0024497597478330135 +karman_re100,ppo,280,112.0,force,lower_fx,0.0036651035770773888 +karman_re100,ppo,280,112.0,force,lower_fy,-0.005344079341739416 +karman_re100,ppo,281,112.4,force,front_fx,0.003349442733451724 +karman_re100,ppo,281,112.4,force,front_fy,0.0015989968087524176 +karman_re100,ppo,281,112.4,force,upper_fx,-0.0060201045125722885 +karman_re100,ppo,281,112.4,force,upper_fy,0.003140828339383006 +karman_re100,ppo,281,112.4,force,lower_fx,0.0026493477635085583 +karman_re100,ppo,281,112.4,force,lower_fy,-0.004959871061146259 +karman_re100,ppo,282,112.8,force,front_fx,0.0026512101758271456 +karman_re100,ppo,282,112.8,force,front_fy,6.979180761845782e-05 +karman_re100,ppo,282,112.8,force,upper_fx,-0.004242255352437496 +karman_re100,ppo,282,112.8,force,upper_fy,0.004350089933723211 +karman_re100,ppo,282,112.8,force,lower_fx,0.0015559993917122483 +karman_re100,ppo,282,112.8,force,lower_fy,-0.0046680523082613945 +karman_re100,ppo,283,113.2,force,front_fx,0.0012174739968031645 +karman_re100,ppo,283,113.2,force,front_fy,-0.0011327306274324656 +karman_re100,ppo,283,113.2,force,upper_fx,-0.001580023905262351 +karman_re100,ppo,283,113.2,force,upper_fy,0.005497245118021965 +karman_re100,ppo,283,113.2,force,lower_fx,0.0004776854475494474 +karman_re100,ppo,283,113.2,force,lower_fy,-0.004568199627101421 +karman_re100,ppo,284,113.6,force,front_fx,-9.452179801883176e-05 +karman_re100,ppo,284,113.6,force,front_fy,-0.0018536885036155581 +karman_re100,ppo,284,113.6,force,upper_fx,0.0011328777763992548 +karman_re100,ppo,284,113.6,force,upper_fy,0.0058633023872971535 +karman_re100,ppo,284,113.6,force,lower_fx,-0.0007924684323370457 +karman_re100,ppo,284,113.6,force,lower_fy,-0.0045253499411046505 +karman_re100,ppo,285,114.0,force,front_fx,-0.0007234149379655719 +karman_re100,ppo,285,114.0,force,front_fy,-0.0025846490170806646 +karman_re100,ppo,285,114.0,force,upper_fx,0.0031633677426725626 +karman_re100,ppo,285,114.0,force,upper_fy,0.005786027293652296 +karman_re100,ppo,285,114.0,force,lower_fx,-0.0021626257803291082 +karman_re100,ppo,285,114.0,force,lower_fy,-0.004084484651684761 +karman_re100,ppo,286,114.4,force,front_fx,-0.00042424732237122953 +karman_re100,ppo,286,114.4,force,front_fy,-0.003337217029184103 +karman_re100,ppo,286,114.4,force,upper_fx,0.004473957233130932 +karman_re100,ppo,286,114.4,force,upper_fy,0.005783154163509607 +karman_re100,ppo,286,114.4,force,lower_fx,-0.003859969787299633 +karman_re100,ppo,286,114.4,force,lower_fy,-0.0027732010930776596 +karman_re100,ppo,287,114.8,force,front_fx,0.0010622022673487663 +karman_re100,ppo,287,114.8,force,front_fy,-0.0038354801945388317 +karman_re100,ppo,287,114.8,force,upper_fx,0.0050643570721149445 +karman_re100,ppo,287,114.8,force,upper_fy,0.005790199618786573 +karman_re100,ppo,287,114.8,force,lower_fx,-0.0061628264375030994 +karman_re100,ppo,287,114.8,force,lower_fy,-0.0015412718057632446 +karman_re100,ppo,288,115.2,force,front_fx,0.0035631514620035887 +karman_re100,ppo,288,115.2,force,front_fy,-0.0038141957484185696 +karman_re100,ppo,288,115.2,force,upper_fx,0.00470653735101223 +karman_re100,ppo,288,115.2,force,upper_fy,0.00559705775231123 +karman_re100,ppo,288,115.2,force,lower_fx,-0.008381427265703678 +karman_re100,ppo,288,115.2,force,lower_fy,-0.0010838914895430207 +karman_re100,ppo,289,115.6,force,front_fx,0.005668554455041885 +karman_re100,ppo,289,115.6,force,front_fy,-0.003092818195000291 +karman_re100,ppo,289,115.6,force,upper_fx,0.003732171840965748 +karman_re100,ppo,289,115.6,force,upper_fy,0.004837685730308294 +karman_re100,ppo,289,115.6,force,lower_fx,-0.009406073950231075 +karman_re100,ppo,289,115.6,force,lower_fy,-0.0014835171168670058 +karman_re100,ppo,290,116.0,force,front_fx,0.00573113514110446 +karman_re100,ppo,290,116.0,force,front_fy,-0.0016876454465091228 +karman_re100,ppo,290,116.0,force,upper_fx,0.0027765759732574224 +karman_re100,ppo,290,116.0,force,upper_fy,0.00407958310097456 +karman_re100,ppo,290,116.0,force,lower_fx,-0.008408037014305592 +karman_re100,ppo,290,116.0,force,lower_fy,-0.0026422112714499235 +karman_re100,ppo,291,116.4,force,front_fx,0.0040732440538704395 +karman_re100,ppo,291,116.4,force,front_fy,-0.0002542783331591636 +karman_re100,ppo,291,116.4,force,upper_fx,0.0019394515547901392 +karman_re100,ppo,291,116.4,force,upper_fy,0.003936953842639923 +karman_re100,ppo,291,116.4,force,lower_fx,-0.005919877905398607 +karman_re100,ppo,291,116.4,force,lower_fy,-0.004015326965600252 +karman_re100,ppo,292,116.8,force,front_fx,0.0018842682475224137 +karman_re100,ppo,292,116.8,force,front_fy,0.000907811161596328 +karman_re100,ppo,292,116.8,force,upper_fx,0.0009591119596734643 +karman_re100,ppo,292,116.8,force,upper_fy,0.004231696482747793 +karman_re100,ppo,292,116.8,force,lower_fx,-0.0027632140554487705 +karman_re100,ppo,292,116.8,force,lower_fy,-0.005199769511818886 +karman_re100,ppo,293,117.2,force,front_fx,0.0001642618008190766 +karman_re100,ppo,293,117.2,force,front_fy,0.0018968437798321247 +karman_re100,ppo,293,117.2,force,upper_fx,-0.00027644698275253177 +karman_re100,ppo,293,117.2,force,upper_fy,0.004496995359659195 +karman_re100,ppo,293,117.2,force,lower_fx,0.00031815990223549306 +karman_re100,ppo,293,117.2,force,lower_fy,-0.005712682381272316 +karman_re100,ppo,294,117.6,force,front_fx,-0.0007929602870717645 +karman_re100,ppo,294,117.6,force,front_fy,0.0026342568453401327 +karman_re100,ppo,294,117.6,force,upper_fx,-0.0015063454629853368 +karman_re100,ppo,294,117.6,force,upper_fy,0.0043690879829227924 +karman_re100,ppo,294,117.6,force,lower_fx,0.0025260094553232193 +karman_re100,ppo,294,117.6,force,lower_fy,-0.0056215510703623295 +karman_re100,ppo,295,118.0,force,front_fx,-0.000990994623862207 +karman_re100,ppo,295,118.0,force,front_fy,0.0032378702890127897 +karman_re100,ppo,295,118.0,force,upper_fx,-0.002764620818197727 +karman_re100,ppo,295,118.0,force,upper_fy,0.0037156459875404835 +karman_re100,ppo,295,118.0,force,lower_fx,0.003802569815889001 +karman_re100,ppo,295,118.0,force,lower_fy,-0.005509338341653347 +karman_re100,ppo,296,118.4,force,front_fx,-0.00033216754673048854 +karman_re100,ppo,296,118.4,force,front_fy,0.003598579438403249 +karman_re100,ppo,296,118.4,force,upper_fx,-0.004201987758278847 +karman_re100,ppo,296,118.4,force,upper_fy,0.0029027422424405813 +karman_re100,ppo,296,118.4,force,lower_fx,0.0043887728825211525 +karman_re100,ppo,296,118.4,force,lower_fy,-0.005536012817174196 +karman_re100,ppo,297,118.8,force,front_fx,0.0010770229855552316 +karman_re100,ppo,297,118.8,force,front_fy,0.0035554489586502314 +karman_re100,ppo,297,118.8,force,upper_fx,-0.005624610930681229 +karman_re100,ppo,297,118.8,force,upper_fy,0.0024052467197179794 +karman_re100,ppo,297,118.8,force,lower_fx,0.00434639398008585 +karman_re100,ppo,297,118.8,force,lower_fy,-0.0055627659894526005 +karman_re100,ppo,298,119.2,force,front_fx,0.0026447379495948553 +karman_re100,ppo,298,119.2,force,front_fy,0.0029212164226919413 +karman_re100,ppo,298,119.2,force,upper_fx,-0.006463712081313133 +karman_re100,ppo,298,119.2,force,upper_fy,0.0024238137993961573 +karman_re100,ppo,298,119.2,force,lower_fx,0.0037216024938970804 +karman_re100,ppo,298,119.2,force,lower_fy,-0.00536947650834918 +karman_re100,ppo,299,119.6,force,front_fx,0.003342404728755355 +karman_re100,ppo,299,119.6,force,front_fy,0.001704408205114305 +karman_re100,ppo,299,119.6,force,upper_fx,-0.006100750993937254 +karman_re100,ppo,299,119.6,force,upper_fy,0.003063088282942772 +karman_re100,ppo,299,119.6,force,lower_fx,0.002719347830861807 +karman_re100,ppo,299,119.6,force,lower_fy,-0.004981982056051493 +karman_re100,ppo,300,120.0,force,front_fx,0.0027321777306497097 +karman_re100,ppo,300,120.0,force,front_fy,0.00017011864110827446 +karman_re100,ppo,300,120.0,force,upper_fx,-0.004407206084579229 +karman_re100,ppo,300,120.0,force,upper_fy,0.004248717799782753 +karman_re100,ppo,300,120.0,force,lower_fx,0.0016281966818496585 +karman_re100,ppo,300,120.0,force,lower_fy,-0.0046753231436014175 +karman_re100,ppo,301,120.4,force,front_fx,0.0013269478222355247 +karman_re100,ppo,301,120.4,force,front_fy,-0.0010677964892238379 +karman_re100,ppo,301,120.4,force,upper_fx,-0.0017782722134143114 +karman_re100,ppo,301,120.4,force,upper_fy,0.005442352499812841 +karman_re100,ppo,301,120.4,force,lower_fx,0.0005617170827463269 +karman_re100,ppo,301,120.4,force,lower_fy,-0.0045699793845415115 +karman_re100,ppo,302,120.8,force,front_fx,-1.853952562669292e-05 +karman_re100,ppo,302,120.8,force,front_fy,-0.0018101622117683291 +karman_re100,ppo,302,120.8,force,upper_fx,0.0009650715510360897 +karman_re100,ppo,302,120.8,force,upper_fy,0.005877323914319277 +karman_re100,ppo,302,120.8,force,lower_fx,-0.0006925386260263622 +karman_re100,ppo,302,120.8,force,lower_fy,-0.0045381770469248295 +karman_re100,ppo,303,121.2,force,front_fx,-0.0007061974611133337 +karman_re100,ppo,303,121.2,force,front_fy,-0.0025277924723923206 +karman_re100,ppo,303,121.2,force,upper_fx,0.0030453652143478394 +karman_re100,ppo,303,121.2,force,upper_fy,0.005802224390208721 +karman_re100,ppo,303,121.2,force,lower_fx,-0.002063141670078039 +karman_re100,ppo,303,121.2,force,lower_fy,-0.004158348776400089 +karman_re100,ppo,304,121.6,force,front_fx,-0.00048318656627088785 +karman_re100,ppo,304,121.6,force,front_fy,-0.00328969769179821 +karman_re100,ppo,304,121.6,force,upper_fx,0.004397597163915634 +karman_re100,ppo,304,121.6,force,upper_fy,0.005786316003650427 +karman_re100,ppo,304,121.6,force,lower_fx,-0.0037238565273582935 +karman_re100,ppo,304,121.6,force,lower_fy,-0.002875828417018056 +karman_re100,ppo,305,122.0,force,front_fx,0.0009188003023155034 +karman_re100,ppo,305,122.0,force,front_fy,-0.0038097447250038385 +karman_re100,ppo,305,122.0,force,upper_fx,0.005047455430030823 +karman_re100,ppo,305,122.0,force,upper_fy,0.005786633584648371 +karman_re100,ppo,305,122.0,force,lower_fx,-0.006001655478030443 +karman_re100,ppo,305,122.0,force,lower_fy,-0.001593019929714501 +karman_re100,ppo,306,122.4,force,front_fx,0.003379517002031207 +karman_re100,ppo,306,122.4,force,front_fy,-0.003837451571598649 +karman_re100,ppo,306,122.4,force,upper_fx,0.004761016461998224 +karman_re100,ppo,306,122.4,force,upper_fy,0.005623515695333481 +karman_re100,ppo,306,122.4,force,lower_fx,-0.008254129439592361 +karman_re100,ppo,306,122.4,force,lower_fy,-0.0010888346005231142 +karman_re100,ppo,307,122.8,force,front_fx,0.005585463717579842 +karman_re100,ppo,307,122.8,force,front_fy,-0.003167876275256276 +karman_re100,ppo,307,122.8,force,upper_fx,0.0038084788247942924 +karman_re100,ppo,307,122.8,force,upper_fy,0.004903248976916075 +karman_re100,ppo,307,122.8,force,lower_fx,-0.009389678947627544 +karman_re100,ppo,307,122.8,force,lower_fy,-0.0014359666965901852 +karman_re100,ppo,308,123.2,force,front_fx,0.0057925935834646225 +karman_re100,ppo,308,123.2,force,front_fy,-0.0017966446466743946 +karman_re100,ppo,308,123.2,force,upper_fx,0.0028403957840055227 +karman_re100,ppo,308,123.2,force,upper_fy,0.004118808079510927 +karman_re100,ppo,308,123.2,force,lower_fx,-0.00852443277835846 +karman_re100,ppo,308,123.2,force,lower_fy,-0.002563783898949623 +karman_re100,ppo,309,123.6,force,front_fx,0.004215172957628965 +karman_re100,ppo,309,123.6,force,front_fy,-0.0003483374894130975 +karman_re100,ppo,309,123.6,force,upper_fx,0.0019950219430029392 +karman_re100,ppo,309,123.6,force,upper_fy,0.003929569385945797 +karman_re100,ppo,309,123.6,force,lower_fx,-0.0061118281446397305 +karman_re100,ppo,309,123.6,force,lower_fy,-0.003926537930965424 +karman_re100,ppo,310,124.0,force,front_fx,0.0020241495221853256 +karman_re100,ppo,310,124.0,force,front_fy,0.0008282349444925785 +karman_re100,ppo,310,124.0,force,upper_fx,0.0010295381071045995 +karman_re100,ppo,310,124.0,force,upper_fy,0.004203579854220152 +karman_re100,ppo,310,124.0,force,lower_fx,-0.0029844564851373434 +karman_re100,ppo,310,124.0,force,lower_fy,-0.005126438103616238 +karman_re100,ppo,311,124.4,force,front_fx,0.00025984173407778144 +karman_re100,ppo,311,124.4,force,front_fy,0.0018335358472540975 +karman_re100,ppo,311,124.4,force,upper_fx,-0.00019132840679958463 +karman_re100,ppo,311,124.4,force,upper_fy,0.004478301852941513 +karman_re100,ppo,311,124.4,force,lower_fx,0.00013064168160781264 +karman_re100,ppo,311,124.4,force,lower_fy,-0.005690210033208132 +karman_re100,ppo,312,124.8,force,front_fx,-0.0007493064622394741 +karman_re100,ppo,312,124.8,force,front_fy,0.0025868171360343695 +karman_re100,ppo,312,124.8,force,upper_fx,-0.0014228550717234612 +karman_re100,ppo,312,124.8,force,upper_fy,0.004391052760183811 +karman_re100,ppo,312,124.8,force,lower_fx,0.0024142134934663773 +karman_re100,ppo,312,124.8,force,lower_fy,-0.0056271119974553585 +karman_re100,ppo,313,125.2,force,front_fx,-0.0010003746720030904 +karman_re100,ppo,313,125.2,force,front_fy,0.003200987819582224 +karman_re100,ppo,313,125.2,force,upper_fx,-0.002670353977009654 +karman_re100,ppo,313,125.2,force,upper_fy,0.003778209676966071 +karman_re100,ppo,313,125.2,force,lower_fx,0.0037457135040313005 +karman_re100,ppo,313,125.2,force,lower_fy,-0.00551550043746829 +karman_re100,ppo,314,125.6,force,front_fx,-0.00040569613338448107 +karman_re100,ppo,314,125.6,force,front_fy,0.0035866752732545137 +karman_re100,ppo,314,125.6,force,upper_fx,-0.004102034494280815 +karman_re100,ppo,314,125.6,force,upper_fy,0.0029591964557766914 +karman_re100,ppo,314,125.6,force,lower_fx,0.004372683819383383 +karman_re100,ppo,314,125.6,force,lower_fy,-0.0055379001423716545 +karman_re100,ppo,315,126.0,force,front_fx,0.0009620924247428775 +karman_re100,ppo,315,126.0,force,front_fy,0.0035781324841082096 +karman_re100,ppo,315,126.0,force,upper_fx,-0.005545224994421005 +karman_re100,ppo,315,126.0,force,upper_fy,0.0024163126945495605 +karman_re100,ppo,315,126.0,force,lower_fx,0.004368903115391731 +karman_re100,ppo,315,126.0,force,lower_fy,-0.005566002801060677 +karman_re100,ppo,316,126.4,force,front_fx,0.0025532543659210205 +karman_re100,ppo,316,126.4,force,front_fy,0.0029911950696259737 +karman_re100,ppo,316,126.4,force,upper_fx,-0.006455415394157171 +karman_re100,ppo,316,126.4,force,upper_fy,0.002393197501078248 +karman_re100,ppo,316,126.4,force,lower_fx,0.0037796031683683395 +karman_re100,ppo,316,126.4,force,lower_fy,-0.005386571399867535 +karman_re100,ppo,317,126.8,force,front_fx,0.0033453241921961308 +karman_re100,ppo,317,126.8,force,front_fy,0.0018045185133814812 +karman_re100,ppo,317,126.8,force,upper_fx,-0.006185088772326708 +karman_re100,ppo,317,126.8,force,upper_fy,0.0029876327607780695 +karman_re100,ppo,317,126.8,force,lower_fx,0.002797265537083149 +karman_re100,ppo,317,126.8,force,lower_fy,-0.005005261395126581 +karman_re100,ppo,318,127.2,force,front_fx,0.0028196112252771854 +karman_re100,ppo,318,127.2,force,front_fy,0.00027528530335985124 +karman_re100,ppo,318,127.2,force,upper_fx,-0.004569529555737972 +karman_re100,ppo,318,127.2,force,upper_fy,0.004159982316195965 +karman_re100,ppo,318,127.2,force,lower_fx,0.0017098593525588512 +karman_re100,ppo,318,127.2,force,lower_fy,-0.004691216628998518 +karman_re100,ppo,319,127.6,force,front_fx,0.0014372048899531364 +karman_re100,ppo,319,127.6,force,front_fy,-0.0010000418405979872 +karman_re100,ppo,319,127.6,force,upper_fx,-0.0019795384723693132 +karman_re100,ppo,319,127.6,force,upper_fy,0.005391549319028854 +karman_re100,ppo,319,127.6,force,lower_fx,0.0006455472903326154 +karman_re100,ppo,319,127.6,force,lower_fy,-0.00457894429564476 +karman_re100,ppo,320,128.0,force,front_fx,5.9875739680137485e-05 +karman_re100,ppo,320,128.0,force,front_fy,-0.001763909007422626 +karman_re100,ppo,320,128.0,force,upper_fx,0.0007859613979235291 +karman_re100,ppo,320,128.0,force,upper_fy,0.0058818720281124115 +karman_re100,ppo,320,128.0,force,lower_fx,-0.0005972961080260575 +karman_re100,ppo,320,128.0,force,lower_fy,-0.004549684002995491 +karman_re100,ppo,321,128.4,force,front_fx,-0.0006853964296169579 +karman_re100,ppo,321,128.4,force,front_fy,-0.00246998923830688 +karman_re100,ppo,321,128.4,force,upper_fx,0.002922053448855877 +karman_re100,ppo,321,128.4,force,upper_fy,0.005805972032248974 +karman_re100,ppo,321,128.4,force,lower_fx,-0.001968482043594122 +karman_re100,ppo,321,128.4,force,lower_fy,-0.004215879365801811 +karman_re100,ppo,322,128.8,force,front_fx,-0.0005361566436477005 +karman_re100,ppo,322,128.8,force,front_fy,-0.0032411282882094383 +karman_re100,ppo,322,128.8,force,upper_fx,0.004319776780903339 +karman_re100,ppo,322,128.8,force,upper_fy,0.00577944703400135 +karman_re100,ppo,322,128.8,force,lower_fx,-0.003585230326279998 +karman_re100,ppo,322,128.8,force,lower_fy,-0.0029748333618044853 +karman_re100,ppo,323,129.2,force,front_fx,0.0007839507889002562 +karman_re100,ppo,323,129.2,force,front_fy,-0.003786505199968815 +karman_re100,ppo,323,129.2,force,upper_fx,0.005033386405557394 +karman_re100,ppo,323,129.2,force,upper_fy,0.005785087123513222 +karman_re100,ppo,323,129.2,force,lower_fx,-0.005827656481415033 +karman_re100,ppo,323,129.2,force,lower_fy,-0.0016622798284515738 +karman_re100,ppo,324,129.6,force,front_fx,0.0031914792489260435 +karman_re100,ppo,324,129.6,force,front_fy,-0.003854879178106785 +karman_re100,ppo,324,129.6,force,upper_fx,0.004814407788217068 +karman_re100,ppo,324,129.6,force,upper_fy,0.005655261222273111 +karman_re100,ppo,324,129.6,force,lower_fx,-0.008106643334031105 +karman_re100,ppo,324,129.6,force,lower_fy,-0.0011077069211751223 +karman_re100,ppo,325,130.0,force,front_fx,0.005478495266288519 +karman_re100,ppo,325,130.0,force,front_fy,-0.003243817947804928 +karman_re100,ppo,325,130.0,force,upper_fx,0.0038823974318802357 +karman_re100,ppo,325,130.0,force,upper_fy,0.004973509348928928 +karman_re100,ppo,325,130.0,force,lower_fx,-0.009361743927001953 +karman_re100,ppo,325,130.0,force,lower_fy,-0.0013951020082458854 +karman_re100,ppo,326,130.4,force,front_fx,0.00583956204354763 +karman_re100,ppo,326,130.4,force,front_fy,-0.0019095033640041947 +karman_re100,ppo,326,130.4,force,upper_fx,0.0028999915812164545 +karman_re100,ppo,326,130.4,force,upper_fy,0.004160773009061813 +karman_re100,ppo,326,130.4,force,lower_fx,-0.008642500266432762 +karman_re100,ppo,326,130.4,force,lower_fy,-0.002472279127687216 +karman_re100,ppo,327,130.8,force,front_fx,0.004353728611022234 +karman_re100,ppo,327,130.8,force,front_fy,-0.0004436492163222283 +karman_re100,ppo,327,130.8,force,upper_fx,0.0020491473842412233 +karman_re100,ppo,327,130.8,force,upper_fy,0.0039205909706652164 +karman_re100,ppo,327,130.8,force,lower_fx,-0.006313762161880732 +karman_re100,ppo,327,130.8,force,lower_fy,-0.0038207557518035173 +karman_re100,ppo,328,131.2,force,front_fx,0.0021706114057451487 +karman_re100,ppo,328,131.2,force,front_fy,0.0007396265282295644 +karman_re100,ppo,328,131.2,force,upper_fx,0.0011058291420340538 +karman_re100,ppo,328,131.2,force,upper_fy,0.004175666719675064 +karman_re100,ppo,328,131.2,force,lower_fx,-0.003216680372133851 +karman_re100,ppo,328,131.2,force,lower_fy,-0.005046863574534655 +karman_re100,ppo,329,131.6,force,front_fx,0.00036369028384797275 +karman_re100,ppo,329,131.6,force,front_fy,0.001771973562426865 +karman_re100,ppo,329,131.6,force,upper_fx,-0.00010046360694104806 +karman_re100,ppo,329,131.6,force,upper_fy,0.0044658370316028595 +karman_re100,ppo,329,131.6,force,lower_fx,-6.626455433433875e-05 +karman_re100,ppo,329,131.6,force,lower_fy,-0.005677231587469578 +karman_re100,ppo,330,132.0,force,front_fx,-0.0006990276742726564 +karman_re100,ppo,330,132.0,force,front_fy,0.002539009088650346 +karman_re100,ppo,330,132.0,force,upper_fx,-0.0013360647717490792 +karman_re100,ppo,330,132.0,force,upper_fy,0.004420934710651636 +karman_re100,ppo,330,132.0,force,lower_fx,0.002293242607265711 +karman_re100,ppo,330,132.0,force,lower_fy,-0.0056491210125386715 +karman_re100,ppo,331,132.4,force,front_fx,-0.0010113678872585297 +karman_re100,ppo,331,132.4,force,front_fy,0.0031621933449059725 +karman_re100,ppo,331,132.4,force,upper_fx,-0.002576911123469472 +karman_re100,ppo,331,132.4,force,upper_fy,0.003840894903987646 +karman_re100,ppo,331,132.4,force,lower_fx,0.0036781150847673416 +karman_re100,ppo,331,132.4,force,lower_fy,-0.0055259596556425095 +karman_re100,ppo,332,132.8,force,front_fx,-0.0004777767462655902 +karman_re100,ppo,332,132.8,force,front_fy,0.0035689023789018393 +karman_re100,ppo,332,132.8,force,upper_fx,-0.00400272523984313 +karman_re100,ppo,332,132.8,force,upper_fy,0.003005411708727479 +karman_re100,ppo,332,132.8,force,lower_fx,0.004347167909145355 +karman_re100,ppo,332,132.8,force,lower_fy,-0.0055345152504742146 +karman_re100,ppo,333,133.2,force,front_fx,0.000847553601488471 +karman_re100,ppo,333,133.2,force,front_fy,0.003592932829633355 +karman_re100,ppo,333,133.2,force,upper_fx,-0.005460696294903755 +karman_re100,ppo,333,133.2,force,upper_fy,0.002426659455522895 +karman_re100,ppo,333,133.2,force,lower_fx,0.004389043897390366 +karman_re100,ppo,333,133.2,force,lower_fy,-0.005563506856560707 +karman_re100,ppo,334,133.6,force,front_fx,0.0024599807802587748 +karman_re100,ppo,334,133.6,force,front_fy,0.0030505266040563583 +karman_re100,ppo,334,133.6,force,upper_fx,-0.006429208908230066 +karman_re100,ppo,334,133.6,force,upper_fy,0.0023701393511146307 +karman_re100,ppo,334,133.6,force,lower_fx,0.0038410257548093796 +karman_re100,ppo,334,133.6,force,lower_fy,-0.005413000471889973 +karman_re100,ppo,335,134.0,force,front_fx,0.003340005176141858 +karman_re100,ppo,335,134.0,force,front_fy,0.001904409728012979 +karman_re100,ppo,335,134.0,force,upper_fx,-0.006249843165278435 +karman_re100,ppo,335,134.0,force,upper_fy,0.0029315820429474115 +karman_re100,ppo,335,134.0,force,lower_fx,0.0028793131932616234 +karman_re100,ppo,335,134.0,force,lower_fy,-0.005035677924752235 +karman_re100,ppo,336,134.4,force,front_fx,0.002895846962928772 +karman_re100,ppo,336,134.4,force,front_fy,0.00038504888652823865 +karman_re100,ppo,336,134.4,force,upper_fx,-0.0047232406213879585 +karman_re100,ppo,336,134.4,force,upper_fy,0.004069683142006397 +karman_re100,ppo,336,134.4,force,lower_fx,0.0017880487721413374 +karman_re100,ppo,336,134.4,force,lower_fy,-0.004711595829576254 +karman_re100,ppo,337,134.8,force,front_fx,0.0015432850923389196 +karman_re100,ppo,337,134.8,force,front_fy,-0.0009281359380111098 +karman_re100,ppo,337,134.8,force,upper_fx,-0.0021808193996548653 +karman_re100,ppo,337,134.8,force,upper_fy,0.005321063566952944 +karman_re100,ppo,337,134.8,force,lower_fx,0.0007217870443128049 +karman_re100,ppo,337,134.8,force,lower_fy,-0.004584008362144232 +karman_re100,ppo,338,135.2,force,front_fx,0.00013801206659991294 +karman_re100,ppo,338,135.2,force,front_fy,-0.0017192671075463295 +karman_re100,ppo,338,135.2,force,upper_fx,0.0006001843721605837 +karman_re100,ppo,338,135.2,force,upper_fy,0.005864779464900494 +karman_re100,ppo,338,135.2,force,lower_fx,-0.000506350421346724 +karman_re100,ppo,338,135.2,force,lower_fy,-0.004549404606223106 +karman_re100,ppo,339,135.6,force,front_fx,-0.0006595580489374697 +karman_re100,ppo,339,135.6,force,front_fy,-0.0024142770562320948 +karman_re100,ppo,339,135.6,force,upper_fx,0.002796376356855035 +karman_re100,ppo,339,135.6,force,upper_fy,0.005800805054605007 +karman_re100,ppo,339,135.6,force,lower_fx,-0.0018711606971919537 +karman_re100,ppo,339,135.6,force,lower_fy,-0.004261280409991741 +karman_re100,ppo,340,136.0,force,front_fx,-0.0005822871462441981 +karman_re100,ppo,340,136.0,force,front_fy,-0.0031919321045279503 +karman_re100,ppo,340,136.0,force,upper_fx,0.004244579467922449 +karman_re100,ppo,340,136.0,force,upper_fy,0.005775805097073317 +karman_re100,ppo,340,136.0,force,lower_fx,-0.0034451433457434177 +karman_re100,ppo,340,136.0,force,lower_fy,-0.0030825340654700994 +karman_re100,ppo,341,136.4,force,front_fx,0.0006488901562988758 +karman_re100,ppo,341,136.4,force,front_fy,-0.003761175088584423 +karman_re100,ppo,341,136.4,force,upper_fx,0.005016245413571596 +karman_re100,ppo,341,136.4,force,upper_fy,0.005790212191641331 +karman_re100,ppo,341,136.4,force,lower_fx,-0.00565033545717597 +karman_re100,ppo,341,136.4,force,lower_fy,-0.001738499733619392 +karman_re100,ppo,342,136.8,force,front_fx,0.0029957564547657967 +karman_re100,ppo,342,136.8,force,front_fy,-0.0038734145928174257 +karman_re100,ppo,342,136.8,force,upper_fx,0.004863619338721037 +karman_re100,ppo,342,136.8,force,upper_fy,0.005683232564479113 +karman_re100,ppo,342,136.8,force,lower_fx,-0.007961246185004711 +karman_re100,ppo,342,136.8,force,lower_fy,-0.0011231594253331423 +karman_re100,ppo,343,137.2,force,front_fx,0.005363002885133028 +karman_re100,ppo,343,137.2,force,front_fy,-0.003311252687126398 +karman_re100,ppo,343,137.2,force,upper_fx,0.003951903432607651 +karman_re100,ppo,343,137.2,force,upper_fy,0.005036904942244291 +karman_re100,ppo,343,137.2,force,lower_fx,-0.00933126825839281 +karman_re100,ppo,343,137.2,force,lower_fy,-0.0013342660386115313 +karman_re100,ppo,344,137.6,force,front_fx,0.005886513739824295 +karman_re100,ppo,344,137.6,force,front_fy,-0.0020176293328404427 +karman_re100,ppo,344,137.6,force,upper_fx,0.002961950609460473 +karman_re100,ppo,344,137.6,force,upper_fy,0.004200337920337915 +karman_re100,ppo,344,137.6,force,lower_fx,-0.008767477236688137 +karman_re100,ppo,344,137.6,force,lower_fy,-0.0023660920560359955 +karman_re100,ppo,345,138.0,force,front_fx,0.004505714401602745 +karman_re100,ppo,345,138.0,force,front_fy,-0.000534587714355439 +karman_re100,ppo,345,138.0,force,upper_fx,0.002111319685354829 +karman_re100,ppo,345,138.0,force,upper_fy,0.003914393950253725 +karman_re100,ppo,345,138.0,force,lower_fx,-0.006522083654999733 +karman_re100,ppo,345,138.0,force,lower_fy,-0.0037184201646596193 +karman_re100,ppo,346,138.4,force,front_fx,0.0023292633704841137 +karman_re100,ppo,346,138.4,force,front_fy,0.0006738550146110356 +karman_re100,ppo,346,138.4,force,upper_fx,0.0011888565495610237 +karman_re100,ppo,346,138.4,force,upper_fy,0.00415380671620369 +karman_re100,ppo,346,138.4,force,lower_fx,-0.0034515189472585917 +karman_re100,ppo,346,138.4,force,lower_fy,-0.004981418140232563 +karman_re100,ppo,347,138.8,force,front_fx,0.0004728070634882897 +karman_re100,ppo,347,138.8,force,front_fy,0.0017084227874875069 +karman_re100,ppo,347,138.8,force,upper_fx,-6.085292170610046e-06 +karman_re100,ppo,347,138.8,force,upper_fy,0.004460178781300783 +karman_re100,ppo,347,138.8,force,lower_fx,-0.0002757610927801579 +karman_re100,ppo,347,138.8,force,lower_fy,-0.005669862497597933 +karman_re100,ppo,348,139.2,force,front_fx,-0.0006500158342532814 +karman_re100,ppo,348,139.2,force,front_fy,0.002492050174623728 +karman_re100,ppo,348,139.2,force,upper_fx,-0.0012465764302760363 +karman_re100,ppo,348,139.2,force,upper_fy,0.004448539577424526 +karman_re100,ppo,348,139.2,force,lower_fx,0.002155306749045849 +karman_re100,ppo,348,139.2,force,lower_fy,-0.005667401943355799 +karman_re100,ppo,349,139.6,force,front_fx,-0.0010172398760914803 +karman_re100,ppo,349,139.6,force,front_fy,0.003122277557849884 +karman_re100,ppo,349,139.6,force,upper_fx,-0.002490206155925989 +karman_re100,ppo,349,139.6,force,upper_fy,0.0038887769915163517 +karman_re100,ppo,349,139.6,force,lower_fx,0.0035981673281639814 +karman_re100,ppo,349,139.6,force,lower_fy,-0.005528737790882587 +karman_re100,ppo,350,140.0,force,front_fx,-0.0005456529324874282 +karman_re100,ppo,350,140.0,force,front_fy,0.0035490086302161217 +karman_re100,ppo,350,140.0,force,upper_fx,-0.003895087167620659 +karman_re100,ppo,350,140.0,force,upper_fy,0.003057992085814476 +karman_re100,ppo,350,140.0,force,lower_fx,0.0043174996972084045 +karman_re100,ppo,350,140.0,force,lower_fy,-0.005523865111172199 +karman_re100,ppo,351,140.4,force,front_fx,0.000736906542442739 +karman_re100,ppo,351,140.4,force,front_fy,0.003606552490964532 +karman_re100,ppo,351,140.4,force,upper_fx,-0.005358472000807524 +karman_re100,ppo,351,140.4,force,upper_fy,0.0024566680658608675 +karman_re100,ppo,351,140.4,force,lower_fx,0.004405852872878313 +karman_re100,ppo,351,140.4,force,lower_fy,-0.005562946666032076 +karman_re100,ppo,352,140.8,force,front_fx,0.002356375800445676 +karman_re100,ppo,352,140.8,force,front_fy,0.0031096437014639378 +karman_re100,ppo,352,140.8,force,upper_fx,-0.00638073543086648 +karman_re100,ppo,352,140.8,force,upper_fy,0.002367425011470914 +karman_re100,ppo,352,140.8,force,lower_fx,0.0038981419056653976 +karman_re100,ppo,352,140.8,force,lower_fy,-0.0054299961775541306 +karman_re100,ppo,353,141.2,force,front_fx,0.0033154913689941168 +karman_re100,ppo,353,141.2,force,front_fy,0.0020033791661262512 +karman_re100,ppo,353,141.2,force,upper_fx,-0.0062964679673314095 +karman_re100,ppo,353,141.2,force,upper_fy,0.0028806300833821297 +karman_re100,ppo,353,141.2,force,lower_fx,0.0029540020041167736 +karman_re100,ppo,353,141.2,force,lower_fy,-0.005067803896963596 +karman_re100,ppo,354,141.6,force,front_fx,0.002956962678581476 +karman_re100,ppo,354,141.6,force,front_fy,0.0004950923030264676 +karman_re100,ppo,354,141.6,force,upper_fx,-0.004859658889472485 +karman_re100,ppo,354,141.6,force,upper_fy,0.00397852249443531 +karman_re100,ppo,354,141.6,force,lower_fx,0.001859406940639019 +karman_re100,ppo,354,141.6,force,lower_fy,-0.004728408996015787 +karman_re100,ppo,355,142.0,force,front_fx,0.0016439099563285708 +karman_re100,ppo,355,142.0,force,front_fy,-0.000851630640681833 +karman_re100,ppo,355,142.0,force,upper_fx,-0.0023770432453602552 +karman_re100,ppo,355,142.0,force,upper_fy,0.00523688830435276 +karman_re100,ppo,355,142.0,force,lower_fx,0.0007956288172863424 +karman_re100,ppo,355,142.0,force,lower_fy,-0.004581654444336891 +karman_re100,ppo,356,142.4,force,front_fx,0.0002220737951574847 +karman_re100,ppo,356,142.4,force,front_fy,-0.0016789421206340194 +karman_re100,ppo,356,142.4,force,upper_fx,0.0004175476497039199 +karman_re100,ppo,356,142.4,force,upper_fy,0.005844659637659788 +karman_re100,ppo,356,142.4,force,lower_fx,-0.0004121157107874751 +karman_re100,ppo,356,142.4,force,lower_fy,-0.004548314493149519 +karman_re100,ppo,357,142.8,force,front_fx,-0.0006277476786635816 +karman_re100,ppo,357,142.8,force,front_fy,-0.0023637614212930202 +karman_re100,ppo,357,142.8,force,upper_fx,0.0026715632993727922 +karman_re100,ppo,357,142.8,force,upper_fy,0.0058053769171237946 +karman_re100,ppo,357,142.8,force,lower_fx,-0.0017708688974380493 +karman_re100,ppo,357,142.8,force,lower_fy,-0.004302580840885639 +karman_re100,ppo,358,143.2,force,front_fx,-0.0006212886655703187 +karman_re100,ppo,358,143.2,force,front_fy,-0.0031414092518389225 +karman_re100,ppo,358,143.2,force,upper_fx,0.004163914825767279 +karman_re100,ppo,358,143.2,force,upper_fy,0.005778215359896421 +karman_re100,ppo,358,143.2,force,lower_fx,-0.0033118396531790495 +karman_re100,ppo,358,143.2,force,lower_fy,-0.003191835479810834 +karman_re100,ppo,359,143.6,force,front_fx,0.0005200165323913097 +karman_re100,ppo,359,143.6,force,front_fy,-0.0037320361007004976 +karman_re100,ppo,359,143.6,force,upper_fx,0.004985322244465351 +karman_re100,ppo,359,143.6,force,upper_fy,0.005789995659142733 +karman_re100,ppo,359,143.6,force,lower_fx,-0.005481249652802944 +karman_re100,ppo,359,143.6,force,lower_fy,-0.0018184445798397064 +karman_re100,ppo,360,144.0,force,front_fx,0.0028015319257974625 +karman_re100,ppo,360,144.0,force,front_fy,-0.003885593730956316 +karman_re100,ppo,360,144.0,force,upper_fx,0.00490088015794754 +karman_re100,ppo,360,144.0,force,upper_fy,0.0057009863667190075 +karman_re100,ppo,360,144.0,force,lower_fx,-0.007819872349500656 +karman_re100,ppo,360,144.0,force,lower_fy,-0.001133463461883366 +karman_re100,ppo,361,144.4,force,front_fx,0.005244088359177113 +karman_re100,ppo,361,144.4,force,front_fy,-0.003376042004674673 +karman_re100,ppo,361,144.4,force,upper_fx,0.0040245940908789635 +karman_re100,ppo,361,144.4,force,upper_fy,0.005096288863569498 +karman_re100,ppo,361,144.4,force,lower_fx,-0.009302593767642975 +karman_re100,ppo,361,144.4,force,lower_fy,-0.0012816586531698704 +karman_re100,ppo,362,144.8,force,front_fx,0.0059240274131298065 +karman_re100,ppo,362,144.8,force,front_fy,-0.0021244112867861986 +karman_re100,ppo,362,144.8,force,upper_fx,0.003028689417988062 +karman_re100,ppo,362,144.8,force,upper_fy,0.004243860021233559 +karman_re100,ppo,362,144.8,force,lower_fx,-0.008877523243427277 +karman_re100,ppo,362,144.8,force,lower_fy,-0.0022737036924809217 +karman_re100,ppo,363,145.2,force,front_fx,0.004649757407605648 +karman_re100,ppo,363,145.2,force,front_fy,-0.0006159613258205354 +karman_re100,ppo,363,145.2,force,upper_fx,0.0021735148038715124 +karman_re100,ppo,363,145.2,force,upper_fy,0.003913818392902613 +karman_re100,ppo,363,145.2,force,lower_fx,-0.006715781055390835 +karman_re100,ppo,363,145.2,force,lower_fy,-0.0036293459124863148 +karman_re100,ppo,364,145.6,force,front_fx,0.002482627984136343 +karman_re100,ppo,364,145.6,force,front_fy,0.0005950730410404503 +karman_re100,ppo,364,145.6,force,upper_fx,0.001264517311938107 +karman_re100,ppo,364,145.6,force,upper_fy,0.004132697358727455 +karman_re100,ppo,364,145.6,force,lower_fx,-0.0036803875118494034 +karman_re100,ppo,364,145.6,force,lower_fy,-0.004911745432764292 +karman_re100,ppo,365,146.0,force,front_fx,0.0005734296864829957 +karman_re100,ppo,365,146.0,force,front_fy,0.0016426506917923689 +karman_re100,ppo,365,146.0,force,upper_fx,8.183836325770244e-05 +karman_re100,ppo,365,146.0,force,upper_fy,0.004445556551218033 +karman_re100,ppo,365,146.0,force,lower_fx,-0.000487556797452271 +karman_re100,ppo,365,146.0,force,lower_fy,-0.005647472571581602 +karman_re100,ppo,366,146.4,force,front_fx,-0.0005988538614474237 +karman_re100,ppo,366,146.4,force,front_fy,0.002443180652335286 +karman_re100,ppo,366,146.4,force,upper_fx,-0.0011662498582154512 +karman_re100,ppo,366,146.4,force,upper_fy,0.004461692646145821 +karman_re100,ppo,366,146.4,force,lower_fx,0.0020139492116868496 +karman_re100,ppo,366,146.4,force,lower_fy,-0.005671300459653139 +karman_re100,ppo,367,146.8,force,front_fx,-0.0010182867990806699 +karman_re100,ppo,367,146.8,force,front_fy,0.0030832223128527403 +karman_re100,ppo,367,146.8,force,upper_fx,-0.002394591923803091 +karman_re100,ppo,367,146.8,force,upper_fy,0.003940613474696875 +karman_re100,ppo,367,146.8,force,lower_fx,0.003520855214446783 +karman_re100,ppo,367,146.8,force,lower_fy,-0.005525744985789061 +karman_re100,ppo,368,147.2,force,front_fx,-0.0006059459410607815 +karman_re100,ppo,368,147.2,force,front_fy,0.00352909741923213 +karman_re100,ppo,368,147.2,force,upper_fx,-0.003785545937716961 +karman_re100,ppo,368,147.2,force,upper_fy,0.003116704523563385 +karman_re100,ppo,368,147.2,force,lower_fx,0.004289406817406416 +karman_re100,ppo,368,147.2,force,lower_fy,-0.005519893020391464 +karman_re100,ppo,369,147.6,force,front_fx,0.0006257382920011878 +karman_re100,ppo,369,147.6,force,front_fy,0.0036213514395058155 +karman_re100,ppo,369,147.6,force,upper_fx,-0.005255022086203098 +karman_re100,ppo,369,147.6,force,upper_fy,0.002492566592991352 +karman_re100,ppo,369,147.6,force,lower_fx,0.00442159129306674 +karman_re100,ppo,369,147.6,force,lower_fy,-0.005568013992160559 +karman_re100,ppo,370,148.0,force,front_fx,0.0022473903372883797 +karman_re100,ppo,370,148.0,force,front_fy,0.003166406648233533 +karman_re100,ppo,370,148.0,force,upper_fx,-0.006333418656140566 +karman_re100,ppo,370,148.0,force,upper_fy,0.00236003240570426 +karman_re100,ppo,370,148.0,force,lower_fx,0.003949346486479044 +karman_re100,ppo,370,148.0,force,lower_fy,-0.005450873170047998 +karman_re100,ppo,371,148.4,force,front_fx,0.003285289043560624 +karman_re100,ppo,371,148.4,force,front_fy,0.002100878395140171 +karman_re100,ppo,371,148.4,force,upper_fx,-0.006349542643874884 +karman_re100,ppo,371,148.4,force,upper_fy,0.0028174472972750664 +karman_re100,ppo,371,148.4,force,lower_fx,0.0030239673797041178 +karman_re100,ppo,371,148.4,force,lower_fy,-0.005095324479043484 +karman_re100,ppo,372,148.8,force,front_fx,0.0030202269554138184 +karman_re100,ppo,372,148.8,force,front_fy,0.0006014686659909785 +karman_re100,ppo,372,148.8,force,upper_fx,-0.005006956867873669 +karman_re100,ppo,372,148.8,force,upper_fy,0.003878542687743902 +karman_re100,ppo,372,148.8,force,lower_fx,0.0019329595379531384 +karman_re100,ppo,372,148.8,force,lower_fy,-0.004741685464978218 +karman_re100,ppo,373,149.2,force,front_fx,0.0017541198758408427 +karman_re100,ppo,373,149.2,force,front_fy,-0.000775433552917093 +karman_re100,ppo,373,149.2,force,upper_fx,-0.0025768086779862642 +karman_re100,ppo,373,149.2,force,upper_fy,0.0051613179966807365 +karman_re100,ppo,373,149.2,force,lower_fx,0.0008702767081558704 +karman_re100,ppo,373,149.2,force,lower_fy,-0.004585984628647566 +karman_re100,ppo,374,149.6,force,front_fx,0.0003117379965260625 +karman_re100,ppo,374,149.6,force,front_fy,-0.0016277950489893556 +karman_re100,ppo,374,149.6,force,upper_fx,0.00023256210261024535 +karman_re100,ppo,374,149.6,force,upper_fy,0.005840855184942484 +karman_re100,ppo,374,149.6,force,lower_fx,-0.0003149135736748576 +karman_re100,ppo,374,149.6,force,lower_fy,-0.004552360624074936 +karman_re100,ppo,375,150.0,force,front_fx,-0.0005920651601627469 +karman_re100,ppo,375,150.0,force,front_fy,-0.002306476002559066 +karman_re100,ppo,375,150.0,force,upper_fx,0.00254074833355844 +karman_re100,ppo,375,150.0,force,upper_fy,0.005824750289320946 +karman_re100,ppo,375,150.0,force,lower_fx,-0.0016738362610340118 +karman_re100,ppo,375,150.0,force,lower_fy,-0.004349428229033947 +karman_re100,ppo,376,150.4,force,front_fx,-0.0006577857420779765 +karman_re100,ppo,376,150.4,force,front_fy,-0.003089454723522067 +karman_re100,ppo,376,150.4,force,upper_fx,0.004078064579516649 +karman_re100,ppo,376,150.4,force,upper_fy,0.005784568376839161 +karman_re100,ppo,376,150.4,force,lower_fx,-0.0031853457912802696 +karman_re100,ppo,376,150.4,force,lower_fy,-0.0032932618632912636 +karman_re100,ppo,377,150.8,force,front_fx,0.00040072633419185877 +karman_re100,ppo,377,150.8,force,front_fy,-0.0037006917409598827 +karman_re100,ppo,377,150.8,force,upper_fx,0.004951589275151491 +karman_re100,ppo,377,150.8,force,upper_fy,0.005789360962808132 +karman_re100,ppo,377,150.8,force,lower_fx,-0.005319492891430855 +karman_re100,ppo,377,150.8,force,lower_fy,-0.0018916785484179854 +karman_re100,ppo,378,151.2,force,front_fx,0.002619645558297634 +karman_re100,ppo,378,151.2,force,front_fy,-0.003894628956913948 +karman_re100,ppo,378,151.2,force,upper_fx,0.004937275778502226 +karman_re100,ppo,378,151.2,force,upper_fy,0.00571533152833581 +karman_re100,ppo,378,151.2,force,lower_fx,-0.007674252614378929 +karman_re100,ppo,378,151.2,force,lower_fy,-0.0011504548601806164 +karman_re100,ppo,379,151.6,force,front_fx,0.005120810121297836 +karman_re100,ppo,379,151.6,force,front_fy,-0.0034357986878603697 +karman_re100,ppo,379,151.6,force,upper_fx,0.004098918754607439 +karman_re100,ppo,379,151.6,force,upper_fy,0.00515664741396904 +karman_re100,ppo,379,151.6,force,lower_fx,-0.009239270351827145 +karman_re100,ppo,379,151.6,force,lower_fy,-0.0012384917354211211 +karman_re100,ppo,380,152.0,force,front_fx,0.005948793143033981 +karman_re100,ppo,380,152.0,force,front_fy,-0.0022291888017207384 +karman_re100,ppo,380,152.0,force,upper_fx,0.003095841035246849 +karman_re100,ppo,380,152.0,force,upper_fy,0.0042932843789458275 +karman_re100,ppo,380,152.0,force,lower_fx,-0.008966604247689247 +karman_re100,ppo,380,152.0,force,lower_fy,-0.002197888446971774 +karman_re100,ppo,381,152.4,force,front_fx,0.004777574446052313 +karman_re100,ppo,381,152.4,force,front_fy,-0.0007254638476297259 +karman_re100,ppo,381,152.4,force,upper_fx,0.0022298754192888737 +karman_re100,ppo,381,152.4,force,upper_fy,0.0039166780188679695 +karman_re100,ppo,381,152.4,force,lower_fx,-0.006894742138683796 +karman_re100,ppo,381,152.4,force,lower_fy,-0.003543766215443611 +karman_re100,ppo,382,152.8,force,front_fx,0.00263024028390646 +karman_re100,ppo,382,152.8,force,front_fy,0.0005135686951689422 +karman_re100,ppo,382,152.8,force,upper_fx,0.0013301967410370708 +karman_re100,ppo,382,152.8,force,upper_fy,0.004106693435460329 +karman_re100,ppo,382,152.8,force,lower_fx,-0.0038976320065557957 +karman_re100,ppo,382,152.8,force,lower_fy,-0.004836117848753929 +karman_re100,ppo,383,153.2,force,front_fx,0.000686833169311285 +karman_re100,ppo,383,153.2,force,front_fy,0.001574203372001648 +karman_re100,ppo,383,153.2,force,upper_fx,0.00016497232718393207 +karman_re100,ppo,383,153.2,force,upper_fy,0.004422864411026239 +karman_re100,ppo,383,153.2,force,lower_fx,-0.0006900356966070831 +karman_re100,ppo,383,153.2,force,lower_fy,-0.0056126355193555355 +karman_re100,ppo,384,153.6,force,front_fx,-0.000540536770131439 +karman_re100,ppo,384,153.6,force,front_fy,0.002392676891759038 +karman_re100,ppo,384,153.6,force,upper_fx,-0.001083280541934073 +karman_re100,ppo,384,153.6,force,upper_fy,0.004471573978662491 +karman_re100,ppo,384,153.6,force,lower_fx,0.0018783446867018938 +karman_re100,ppo,384,153.6,force,lower_fy,-0.00567468861117959 +karman_re100,ppo,385,154.0,force,front_fx,-0.0010113957105204463 +karman_re100,ppo,385,154.0,force,front_fy,0.0030433929059654474 +karman_re100,ppo,385,154.0,force,upper_fx,-0.0023047802969813347 +karman_re100,ppo,385,154.0,force,upper_fy,0.003992919344455004 +karman_re100,ppo,385,154.0,force,lower_fx,0.003448775503784418 +karman_re100,ppo,385,154.0,force,lower_fy,-0.005532704759389162 +karman_re100,ppo,386,154.4,force,front_fx,-0.0006625388632528484 +karman_re100,ppo,386,154.4,force,front_fy,0.0035087810829281807 +karman_re100,ppo,386,154.4,force,upper_fx,-0.003684516530483961 +karman_re100,ppo,386,154.4,force,upper_fy,0.0031770681962370872 +karman_re100,ppo,386,154.4,force,lower_fx,0.004260047804564238 +karman_re100,ppo,386,154.4,force,lower_fy,-0.005522045306861401 +karman_re100,ppo,387,154.8,force,front_fx,0.0005188711220398545 +karman_re100,ppo,387,154.8,force,front_fy,0.003632101695984602 +karman_re100,ppo,387,154.8,force,upper_fx,-0.005161534994840622 +karman_re100,ppo,387,154.8,force,upper_fy,0.002519844565540552 +karman_re100,ppo,387,154.8,force,lower_fx,0.00443253805860877 +karman_re100,ppo,387,154.8,force,lower_fy,-0.005568921100348234 +karman_re100,ppo,388,155.2,force,front_fx,0.002139454474672675 +karman_re100,ppo,388,155.2,force,front_fy,0.0032204349990934134 +karman_re100,ppo,388,155.2,force,upper_fx,-0.006294937804341316 +karman_re100,ppo,388,155.2,force,upper_fy,0.0023414117749780416 +karman_re100,ppo,388,155.2,force,lower_fx,0.00399739108979702 +karman_re100,ppo,388,155.2,force,lower_fy,-0.005466389004141092 +karman_re100,ppo,389,155.6,force,front_fx,0.0032577160745859146 +karman_re100,ppo,389,155.6,force,front_fy,0.0021934465039521456 +karman_re100,ppo,389,155.6,force,upper_fx,-0.0064009688794612885 +karman_re100,ppo,389,155.6,force,upper_fy,0.002756855683401227 +karman_re100,ppo,389,155.6,force,lower_fx,0.0030977679416537285 +karman_re100,ppo,389,155.6,force,lower_fy,-0.0051187314093112946 +karman_re100,ppo,390,156.0,force,front_fx,0.0030862600542604923 +karman_re100,ppo,390,156.0,force,front_fy,0.0007099065114744008 +karman_re100,ppo,390,156.0,force,upper_fx,-0.00514415604993701 +karman_re100,ppo,390,156.0,force,upper_fy,0.0037908938247710466 +karman_re100,ppo,390,156.0,force,lower_fx,0.0020127284806221724 +karman_re100,ppo,390,156.0,force,lower_fy,-0.0047606066800653934 +karman_re100,ppo,391,156.4,force,front_fx,0.001860917080193758 +karman_re100,ppo,391,156.4,force,front_fy,-0.00069493951741606 +karman_re100,ppo,391,156.4,force,upper_fx,-0.0027680578641593456 +karman_re100,ppo,391,156.4,force,upper_fy,0.005090481601655483 +karman_re100,ppo,391,156.4,force,lower_fx,0.0009513181285001338 +karman_re100,ppo,391,156.4,force,lower_fy,-0.004593992605805397 +karman_re100,ppo,392,156.8,force,front_fx,0.0004031727439723909 +karman_re100,ppo,392,156.8,force,front_fy,-0.0015800505643710494 +karman_re100,ppo,392,156.8,force,upper_fx,4.529038051259704e-05 +karman_re100,ppo,392,156.8,force,upper_fy,0.005830149631947279 +karman_re100,ppo,392,156.8,force,lower_fx,-0.00022441966575570405 +karman_re100,ppo,392,156.8,force,lower_fy,-0.004560595843940973 +karman_re100,ppo,393,157.2,force,front_fx,-0.0005542351282201707 +karman_re100,ppo,393,157.2,force,front_fy,-0.002252215053886175 +karman_re100,ppo,393,157.2,force,upper_fx,0.0024043237790465355 +karman_re100,ppo,393,157.2,force,upper_fy,0.005832520313560963 +karman_re100,ppo,393,157.2,force,lower_fx,-0.0015826195012778044 +karman_re100,ppo,393,157.2,force,lower_fy,-0.004387345165014267 +karman_re100,ppo,394,157.6,force,front_fx,-0.0006875665276311338 +karman_re100,ppo,394,157.6,force,front_fy,-0.003037418471649289 +karman_re100,ppo,394,157.6,force,upper_fx,0.003990600351244211 +karman_re100,ppo,394,157.6,force,upper_fy,0.005780109670013189 +karman_re100,ppo,394,157.6,force,lower_fx,-0.0030665406957268715 +karman_re100,ppo,394,157.6,force,lower_fy,-0.0033903145231306553 +karman_re100,ppo,395,158.0,force,front_fx,0.0002885732101276517 +karman_re100,ppo,395,158.0,force,front_fy,-0.0036679271142929792 +karman_re100,ppo,395,158.0,force,upper_fx,0.0049192579463124275 +karman_re100,ppo,395,158.0,force,upper_fy,0.005785773508250713 +karman_re100,ppo,395,158.0,force,lower_fx,-0.005154421553015709 +karman_re100,ppo,395,158.0,force,lower_fy,-0.001971927471458912 +karman_re100,ppo,396,158.4,force,front_fx,0.0024377659428864717 +karman_re100,ppo,396,158.4,force,front_fy,-0.0039021915290504694 +karman_re100,ppo,396,158.4,force,upper_fx,0.004974965937435627 +karman_re100,ppo,396,158.4,force,upper_fy,0.005732621066272259 +karman_re100,ppo,396,158.4,force,lower_fx,-0.007518197409808636 +karman_re100,ppo,396,158.4,force,lower_fy,-0.0011804884998127818 +karman_re100,ppo,397,158.8,force,front_fx,0.0049804807640612125 +karman_re100,ppo,397,158.8,force,front_fy,-0.003494749777019024 +karman_re100,ppo,397,158.8,force,upper_fx,0.0041733598336577415 +karman_re100,ppo,397,158.8,force,upper_fy,0.005219761282205582 +karman_re100,ppo,397,158.8,force,lower_fx,-0.009187608025968075 +karman_re100,ppo,397,158.8,force,lower_fy,-0.0012207881081849337 +karman_re100,ppo,398,159.2,force,front_fx,0.005963480565696955 +karman_re100,ppo,398,159.2,force,front_fy,-0.002337441546842456 +karman_re100,ppo,398,159.2,force,upper_fx,0.0031621339730918407 +karman_re100,ppo,398,159.2,force,upper_fy,0.004346890840679407 +karman_re100,ppo,398,159.2,force,lower_fx,-0.009052530862390995 +karman_re100,ppo,398,159.2,force,lower_fy,-0.0021106242202222347 +karman_re100,ppo,399,159.6,force,front_fx,0.004911850206553936 +karman_re100,ppo,399,159.6,force,front_fy,-0.0008256323053501546 +karman_re100,ppo,399,159.6,force,upper_fx,0.0022854965645819902 +karman_re100,ppo,399,159.6,force,upper_fy,0.003919991664588451 +karman_re100,ppo,399,159.6,force,lower_fx,-0.007082960102707148 +karman_re100,ppo,399,159.6,force,lower_fy,-0.003435722319409251 +karman_re100,ppo,0,0.0,alpha,front,-1.8737868070602417 +karman_re100,ppo,0,0.0,alpha,upper,-2.482828140258789 +karman_re100,ppo,0,0.0,alpha,lower,6.098980903625488 +karman_re100,ppo,1,0.4,alpha,front,-1.729433298110962 +karman_re100,ppo,1,0.4,alpha,upper,-2.868237614631653 +karman_re100,ppo,1,0.4,alpha,lower,5.6139174699783325 +karman_re100,ppo,2,0.8,alpha,front,-1.5619988441467285 +karman_re100,ppo,2,0.8,alpha,upper,-2.7799142599105835 +karman_re100,ppo,2,0.8,alpha,lower,5.391022086143494 +karman_re100,ppo,3,1.2,alpha,front,-1.5578820705413818 +karman_re100,ppo,3,1.2,alpha,upper,-2.9932525157928467 +karman_re100,ppo,3,1.2,alpha,lower,5.252384781837463 +karman_re100,ppo,4,1.6,alpha,front,-1.2230440378189087 +karman_re100,ppo,4,1.6,alpha,upper,-4.264320880174637 +karman_re100,ppo,4,1.6,alpha,lower,4.990058481693268 +karman_re100,ppo,5,2.0,alpha,front,-0.8218497037887573 +karman_re100,ppo,5,2.0,alpha,upper,-5.733013868331909 +karman_re100,ppo,5,2.0,alpha,lower,4.1597971469163895 +karman_re100,ppo,6,2.4,alpha,front,-0.4452444016933441 +karman_re100,ppo,6,2.4,alpha,upper,-6.630976676940918 +karman_re100,ppo,6,2.4,alpha,lower,3.3651957511901855 +karman_re100,ppo,7,2.8,alpha,front,0.06206728518009186 +karman_re100,ppo,7,2.8,alpha,upper,-7.081318378448486 +karman_re100,ppo,7,2.8,alpha,lower,2.761962890625 +karman_re100,ppo,8,3.2,alpha,front,0.7052189111709595 +karman_re100,ppo,8,3.2,alpha,upper,-7.09079384803772 +karman_re100,ppo,8,3.2,alpha,lower,2.279664993286133 +karman_re100,ppo,9,3.6,alpha,front,1.2782608270645142 +karman_re100,ppo,9,3.6,alpha,upper,-6.508885145187378 +karman_re100,ppo,9,3.6,alpha,lower,1.9596397876739502 +karman_re100,ppo,10,4.0,alpha,front,1.514381766319275 +karman_re100,ppo,10,4.0,alpha,upper,-5.440666913986206 +karman_re100,ppo,10,4.0,alpha,lower,1.7252912521362307 +karman_re100,ppo,11,4.4,alpha,front,1.2995918989181519 +karman_re100,ppo,11,4.4,alpha,upper,-4.134982258081436 +karman_re100,ppo,11,4.4,alpha,lower,1.9775087833404539 +karman_re100,ppo,12,4.8,alpha,front,0.9222028255462645 +karman_re100,ppo,12,4.8,alpha,upper,-3.0017454028129578 +karman_re100,ppo,12,4.8,alpha,lower,3.5535081923007965 +karman_re100,ppo,13,5.2,alpha,front,0.5472910404205322 +karman_re100,ppo,13,5.2,alpha,upper,-2.529425621032715 +karman_re100,ppo,13,5.2,alpha,lower,5.8025078773498535 +karman_re100,ppo,14,5.6,alpha,front,0.05241382122039795 +karman_re100,ppo,14,5.6,alpha,upper,-2.654444456100464 +karman_re100,ppo,14,5.6,alpha,lower,7.085418939590454 +karman_re100,ppo,15,6.0,alpha,front,-0.47870194911956787 +karman_re100,ppo,15,6.0,alpha,upper,-2.5747876167297363 +karman_re100,ppo,15,6.0,alpha,lower,7.441648721694946 +karman_re100,ppo,16,6.4,alpha,front,-1.1269543170928955 +karman_re100,ppo,16,6.4,alpha,upper,-2.003141164779663 +karman_re100,ppo,16,6.4,alpha,lower,7.114698171615601 +karman_re100,ppo,17,6.8,alpha,front,-1.7158442735671997 +karman_re100,ppo,17,6.8,alpha,upper,-1.4490973949432373 +karman_re100,ppo,17,6.8,alpha,lower,6.201802968978882 +karman_re100,ppo,18,7.2,alpha,front,-1.85599160194397 +karman_re100,ppo,18,7.2,alpha,upper,-1.2551119327545166 +karman_re100,ppo,18,7.2,alpha,lower,5.408451557159424 +karman_re100,ppo,19,7.6,alpha,front,-1.5358020067214966 +karman_re100,ppo,19,7.6,alpha,upper,-1.746196985244751 +karman_re100,ppo,19,7.6,alpha,lower,5.054245710372925 +karman_re100,ppo,20,8.0,alpha,front,-1.1045764684677124 +karman_re100,ppo,20,8.0,alpha,upper,-2.9682997465133667 +karman_re100,ppo,20,8.0,alpha,lower,4.871420681476593 +karman_re100,ppo,21,8.4,alpha,front,-0.7955374717712402 +karman_re100,ppo,21,8.4,alpha,upper,-4.476156324148178 +karman_re100,ppo,21,8.4,alpha,lower,4.386308193206787 +karman_re100,ppo,22,8.8,alpha,front,-0.5091004967689514 +karman_re100,ppo,22,8.8,alpha,upper,-5.751453161239624 +karman_re100,ppo,22,8.8,alpha,lower,3.6455404758453374 +karman_re100,ppo,23,9.2,alpha,front,-0.13104954361915588 +karman_re100,ppo,23,9.2,alpha,upper,-6.49574875831604 +karman_re100,ppo,23,9.2,alpha,lower,3.089676558971405 +karman_re100,ppo,24,9.6,alpha,front,0.395626038312912 +karman_re100,ppo,24,9.6,alpha,upper,-6.977542161941528 +karman_re100,ppo,24,9.6,alpha,lower,2.606320023536682 +karman_re100,ppo,25,10.0,alpha,front,1.108095407485962 +karman_re100,ppo,25,10.0,alpha,upper,-7.235546350479126 +karman_re100,ppo,25,10.0,alpha,lower,2.244859457015991 +karman_re100,ppo,26,10.4,alpha,front,1.81552255153656 +karman_re100,ppo,26,10.4,alpha,upper,-7.001033067703246 +karman_re100,ppo,26,10.4,alpha,lower,2.0536751747131348 +karman_re100,ppo,27,10.8,alpha,front,2.2169880867004395 +karman_re100,ppo,27,10.8,alpha,upper,-6.261913537979126 +karman_re100,ppo,27,10.8,alpha,lower,1.8263428211212156 +karman_re100,ppo,28,11.2,alpha,front,2.07375168800354 +karman_re100,ppo,28,11.2,alpha,upper,-5.293291926383972 +karman_re100,ppo,28,11.2,alpha,lower,1.5537383556365967 +karman_re100,ppo,29,11.6,alpha,front,1.512890100479126 +karman_re100,ppo,29,11.6,alpha,upper,-4.35228618979454 +karman_re100,ppo,29,11.6,alpha,lower,1.6472384929656982 +karman_re100,ppo,30,12.0,alpha,front,0.9898822307586669 +karman_re100,ppo,30,12.0,alpha,upper,-3.4329729676246643 +karman_re100,ppo,30,12.0,alpha,lower,3.110366106033325 +karman_re100,ppo,31,12.4,alpha,front,0.6420367956161499 +karman_re100,ppo,31,12.4,alpha,upper,-2.77689528465271 +karman_re100,ppo,31,12.4,alpha,lower,5.814407110214233 +karman_re100,ppo,32,12.8,alpha,front,0.06376978754997253 +karman_re100,ppo,32,12.8,alpha,upper,-2.7880293130874634 +karman_re100,ppo,32,12.8,alpha,lower,7.363111734390258 +karman_re100,ppo,33,13.2,alpha,front,-0.675784707069397 +karman_re100,ppo,33,13.2,alpha,upper,-2.8191449642181396 +karman_re100,ppo,33,13.2,alpha,lower,7.453007459640502 +karman_re100,ppo,34,13.6,alpha,front,-1.5294855833053589 +karman_re100,ppo,34,13.6,alpha,upper,-2.1919909715652466 +karman_re100,ppo,34,13.6,alpha,lower,6.826202392578125 +karman_re100,ppo,35,14.0,alpha,front,-2.3292765617370605 +karman_re100,ppo,35,14.0,alpha,upper,-1.3791027069091797 +karman_re100,ppo,35,14.0,alpha,lower,5.582761883735657 +karman_re100,ppo,36,14.4,alpha,front,-2.6229281425476074 +karman_re100,ppo,36,14.4,alpha,upper,-0.8985059261322021 +karman_re100,ppo,36,14.4,alpha,lower,4.449206560850143 +karman_re100,ppo,37,14.8,alpha,front,-2.303446054458618 +karman_re100,ppo,37,14.8,alpha,upper,-1.2502286434173584 +karman_re100,ppo,37,14.8,alpha,lower,3.9148679226636887 +karman_re100,ppo,38,15.2,alpha,front,-1.7480090856552124 +karman_re100,ppo,38,15.2,alpha,upper,-2.4027565717697144 +karman_re100,ppo,38,15.2,alpha,lower,4.002146620303392 +karman_re100,ppo,39,15.6,alpha,front,-1.4496383666992188 +karman_re100,ppo,39,15.6,alpha,upper,-3.8091014325618744 +karman_re100,ppo,39,15.6,alpha,lower,3.9610465727746487 +karman_re100,ppo,40,16.0,alpha,front,-1.233704924583435 +karman_re100,ppo,40,16.0,alpha,upper,-5.170082211494446 +karman_re100,ppo,40,16.0,alpha,lower,3.528168886899948 +karman_re100,ppo,41,16.4,alpha,front,-0.798954725265503 +karman_re100,ppo,41,16.4,alpha,upper,-6.163370370864868 +karman_re100,ppo,41,16.4,alpha,lower,3.0999133586883545 +karman_re100,ppo,42,16.8,alpha,front,-0.240060493350029 +karman_re100,ppo,42,16.8,alpha,upper,-6.654017686843871 +karman_re100,ppo,42,16.8,alpha,lower,2.9285746812820435 +karman_re100,ppo,43,17.2,alpha,front,0.33202457427978516 +karman_re100,ppo,43,17.2,alpha,upper,-6.988222360610961 +karman_re100,ppo,43,17.2,alpha,lower,2.6599912643432617 +karman_re100,ppo,44,17.6,alpha,front,0.9737390279769899 +karman_re100,ppo,44,17.6,alpha,upper,-7.09850549697876 +karman_re100,ppo,44,17.6,alpha,lower,2.3665415048599243 +karman_re100,ppo,45,18.0,alpha,front,1.554521918296814 +karman_re100,ppo,45,18.0,alpha,upper,-6.727165460586548 +karman_re100,ppo,45,18.0,alpha,lower,2.1673232316970825 +karman_re100,ppo,46,18.4,alpha,front,1.7869012355804446 +karman_re100,ppo,46,18.4,alpha,upper,-5.843007445335388 +karman_re100,ppo,46,18.4,alpha,lower,1.973418712615967 +karman_re100,ppo,47,18.8,alpha,front,1.5961241722106934 +karman_re100,ppo,47,18.8,alpha,upper,-4.732442259788513 +karman_re100,ppo,47,18.8,alpha,lower,1.9890484809875488 +karman_re100,ppo,48,19.2,alpha,front,1.3270032405853271 +karman_re100,ppo,48,19.2,alpha,upper,-3.6654862463474274 +karman_re100,ppo,48,19.2,alpha,lower,3.1162715554237366 +karman_re100,ppo,49,19.6,alpha,front,1.0741807222366333 +karman_re100,ppo,49,19.6,alpha,upper,-2.963979721069336 +karman_re100,ppo,49,19.6,alpha,lower,5.362125039100647 +karman_re100,ppo,50,20.0,alpha,front,0.5302308797836304 +karman_re100,ppo,50,20.0,alpha,upper,-2.94206166267395 +karman_re100,ppo,50,20.0,alpha,lower,6.878617048263549 +karman_re100,ppo,51,20.4,alpha,front,-0.16488179564476013 +karman_re100,ppo,51,20.4,alpha,upper,-3.0554208159446716 +karman_re100,ppo,51,20.4,alpha,lower,7.312196016311645 +karman_re100,ppo,52,20.8,alpha,front,-0.9599256515502931 +karman_re100,ppo,52,20.8,alpha,upper,-2.5897531509399414 +karman_re100,ppo,52,20.8,alpha,lower,7.142655134201049 +karman_re100,ppo,53,21.2,alpha,front,-1.8517696857452393 +karman_re100,ppo,53,21.2,alpha,upper,-1.8464775085449219 +karman_re100,ppo,53,21.2,alpha,lower,6.168962478637695 +karman_re100,ppo,54,21.6,alpha,front,-2.4249255657196045 +karman_re100,ppo,54,21.6,alpha,upper,-1.2434043884277344 +karman_re100,ppo,54,21.6,alpha,lower,4.960286200046539 +karman_re100,ppo,55,22.0,alpha,front,-2.388695240020752 +karman_re100,ppo,55,22.0,alpha,upper,-1.2349350452423096 +karman_re100,ppo,55,22.0,alpha,lower,4.127265840768814 +karman_re100,ppo,56,22.4,alpha,front,-1.9152225255966187 +karman_re100,ppo,56,22.4,alpha,upper,-2.167836546897888 +karman_re100,ppo,56,22.4,alpha,lower,4.030725616961718 +karman_re100,ppo,57,22.8,alpha,front,-1.5347248315811157 +karman_re100,ppo,57,22.8,alpha,upper,-3.6469034552574158 +karman_re100,ppo,57,22.8,alpha,lower,3.97956239618361 +karman_re100,ppo,58,23.2,alpha,front,-1.2786961793899536 +karman_re100,ppo,58,23.2,alpha,upper,-5.129367232322693 +karman_re100,ppo,58,23.2,alpha,lower,3.5062206685543056 +karman_re100,ppo,59,23.6,alpha,front,-0.843608856201172 +karman_re100,ppo,59,23.6,alpha,upper,-6.177529811859131 +karman_re100,ppo,59,23.6,alpha,lower,3.1042051315307617 +karman_re100,ppo,60,24.0,alpha,front,-0.29988259077072144 +karman_re100,ppo,60,24.0,alpha,upper,-6.704545974731444 +karman_re100,ppo,60,24.0,alpha,lower,2.9235048294067383 +karman_re100,ppo,61,24.4,alpha,front,0.26874035596847534 +karman_re100,ppo,61,24.4,alpha,upper,-7.065622329711914 +karman_re100,ppo,61,24.4,alpha,lower,2.609805941581726 +karman_re100,ppo,62,24.8,alpha,front,0.9033962488174437 +karman_re100,ppo,62,24.8,alpha,upper,-7.17762041091919 +karman_re100,ppo,62,24.8,alpha,lower,2.284359335899353 +karman_re100,ppo,63,25.2,alpha,front,1.4574521780014038 +karman_re100,ppo,63,25.2,alpha,upper,-6.785223484039307 +karman_re100,ppo,63,25.2,alpha,lower,2.0667643547058105 +karman_re100,ppo,64,25.6,alpha,front,1.663229465484619 +karman_re100,ppo,64,25.6,alpha,upper,-5.88281512260437 +karman_re100,ppo,64,25.6,alpha,lower,1.8750250339508057 +karman_re100,ppo,65,26.0,alpha,front,1.445901870727539 +karman_re100,ppo,65,26.0,alpha,upper,-4.738739311695099 +karman_re100,ppo,65,26.0,alpha,lower,1.9990589618682861 +karman_re100,ppo,66,26.4,alpha,front,1.147828459739685 +karman_re100,ppo,66,26.4,alpha,upper,-3.6661842465400696 +karman_re100,ppo,66,26.4,alpha,lower,3.29550313949585 +karman_re100,ppo,67,26.8,alpha,front,0.8722956180572511 +karman_re100,ppo,67,26.8,alpha,upper,-3.0228483080863953 +karman_re100,ppo,67,26.8,alpha,lower,5.55590033531189 +karman_re100,ppo,68,27.2,alpha,front,0.32755815982818604 +karman_re100,ppo,68,27.2,alpha,upper,-2.9962356090545654 +karman_re100,ppo,68,27.2,alpha,lower,7.000966787338257 +karman_re100,ppo,69,27.6,alpha,front,-0.36306971311569214 +karman_re100,ppo,69,27.6,alpha,upper,-2.9988856315612793 +karman_re100,ppo,69,27.6,alpha,lower,7.362940549850463 +karman_re100,ppo,70,28.0,alpha,front,-1.1909931898117065 +karman_re100,ppo,70,28.0,alpha,upper,-2.434274196624756 +karman_re100,ppo,70,28.0,alpha,lower,7.025884389877319 +karman_re100,ppo,71,28.4,alpha,front,-2.0771307945251465 +karman_re100,ppo,71,28.4,alpha,upper,-1.6363401412963867 +karman_re100,ppo,71,28.4,alpha,lower,5.911570310592651 +karman_re100,ppo,72,28.8,alpha,front,-2.570580244064331 +karman_re100,ppo,72,28.8,alpha,upper,-1.0121257305145264 +karman_re100,ppo,72,28.8,alpha,lower,4.694035589694977 +karman_re100,ppo,73,29.2,alpha,front,-2.417682647705078 +karman_re100,ppo,73,29.2,alpha,upper,-1.1109380722045898 +karman_re100,ppo,73,29.2,alpha,lower,3.9632727950811386 +karman_re100,ppo,74,29.6,alpha,front,-1.8576222658157349 +karman_re100,ppo,74,29.6,alpha,upper,-2.208949565887451 +karman_re100,ppo,74,29.6,alpha,lower,3.9660102613270283 +karman_re100,ppo,75,30.0,alpha,front,-1.48104727268219 +karman_re100,ppo,75,30.0,alpha,upper,-3.7336935400962825 +karman_re100,ppo,75,30.0,alpha,lower,3.9079642295837402 +karman_re100,ppo,76,30.4,alpha,front,-1.2416366338729858 +karman_re100,ppo,76,30.4,alpha,upper,-5.16487717628479 +karman_re100,ppo,76,30.4,alpha,lower,3.4828510284423833 +karman_re100,ppo,77,30.8,alpha,front,-0.8130918741226195 +karman_re100,ppo,77,30.8,alpha,upper,-6.1845176219940186 +karman_re100,ppo,77,30.8,alpha,lower,3.0866336822509766 +karman_re100,ppo,78,31.2,alpha,front,-0.2702532112598419 +karman_re100,ppo,78,31.2,alpha,upper,-6.702242374420165 +karman_re100,ppo,78,31.2,alpha,lower,2.901647925376892 +karman_re100,ppo,79,31.6,alpha,front,0.29593947529792786 +karman_re100,ppo,79,31.6,alpha,upper,-7.051636219024658 +karman_re100,ppo,79,31.6,alpha,lower,2.615317225456238 +karman_re100,ppo,80,32.0,alpha,front,0.9203410148620605 +karman_re100,ppo,80,32.0,alpha,upper,-7.169696569442749 +karman_re100,ppo,80,32.0,alpha,lower,2.3135682344436646 +karman_re100,ppo,81,32.4,alpha,front,1.475918173789978 +karman_re100,ppo,81,32.4,alpha,upper,-6.814130306243897 +karman_re100,ppo,81,32.4,alpha,lower,2.100485324859619 +karman_re100,ppo,82,32.8,alpha,front,1.6991208791732788 +karman_re100,ppo,82,32.8,alpha,upper,-5.956093430519104 +karman_re100,ppo,82,32.8,alpha,lower,1.8903448581695557 +karman_re100,ppo,83,33.2,alpha,front,1.4970920085906982 +karman_re100,ppo,83,33.2,alpha,upper,-4.835978209972382 +karman_re100,ppo,83,33.2,alpha,lower,1.9392304420471191 +karman_re100,ppo,84,33.6,alpha,front,1.1952872276306152 +karman_re100,ppo,84,33.6,alpha,upper,-3.7481465935707092 +karman_re100,ppo,84,33.6,alpha,lower,3.1127575635910034 +karman_re100,ppo,85,34.0,alpha,front,0.9262397289276122 +karman_re100,ppo,85,34.0,alpha,upper,-3.036674737930298 +karman_re100,ppo,85,34.0,alpha,lower,5.390896797180176 +karman_re100,ppo,86,34.4,alpha,front,0.38496747612953186 +karman_re100,ppo,86,34.4,alpha,upper,-2.968452215194702 +karman_re100,ppo,86,34.4,alpha,lower,6.95046067237854 +karman_re100,ppo,87,34.8,alpha,front,-0.3130359947681427 +karman_re100,ppo,87,34.8,alpha,upper,-3.0195006132125854 +karman_re100,ppo,87,34.8,alpha,lower,7.356409788131714 +karman_re100,ppo,88,35.2,alpha,front,-1.1345593929290771 +karman_re100,ppo,88,35.2,alpha,upper,-2.492833137512207 +karman_re100,ppo,88,35.2,alpha,lower,7.06814455986023 +karman_re100,ppo,89,35.6,alpha,front,-2.0443966388702393 +karman_re100,ppo,89,35.6,alpha,upper,-1.6859304904937744 +karman_re100,ppo,89,35.6,alpha,lower,5.972466349601746 +karman_re100,ppo,90,36.0,alpha,front,-2.584160804748535 +karman_re100,ppo,90,36.0,alpha,upper,-1.034397840499878 +karman_re100,ppo,90,36.0,alpha,lower,4.732918679714203 +karman_re100,ppo,91,36.4,alpha,front,-2.472856044769287 +karman_re100,ppo,91,36.4,alpha,upper,-1.0752816200256348 +karman_re100,ppo,91,36.4,alpha,lower,3.939213879406452 +karman_re100,ppo,92,36.8,alpha,front,-1.9228626489639282 +karman_re100,ppo,92,36.8,alpha,upper,-2.107245087623596 +karman_re100,ppo,92,36.8,alpha,lower,3.9175247922539715 +karman_re100,ppo,93,37.2,alpha,front,-1.5342552661895752 +karman_re100,ppo,93,37.2,alpha,upper,-3.582804173231125 +karman_re100,ppo,93,37.2,alpha,lower,3.911928787827492 +karman_re100,ppo,94,37.6,alpha,front,-1.2942285537719727 +karman_re100,ppo,94,37.6,alpha,upper,-5.00546133518219 +karman_re100,ppo,94,37.6,alpha,lower,3.53566762804985 +karman_re100,ppo,95,38.0,alpha,front,-0.8756018877029419 +karman_re100,ppo,95,38.0,alpha,upper,-6.071287393569946 +karman_re100,ppo,95,38.0,alpha,lower,3.134723544120788 +karman_re100,ppo,96,38.4,alpha,front,-0.3362591564655304 +karman_re100,ppo,96,38.4,alpha,upper,-6.640427350997925 +karman_re100,ppo,96,38.4,alpha,lower,2.940311551094055 +karman_re100,ppo,97,38.8,alpha,front,0.22247448563575745 +karman_re100,ppo,97,38.8,alpha,upper,-7.016477346420288 +karman_re100,ppo,97,38.8,alpha,lower,2.6641873121261597 +karman_re100,ppo,98,39.2,alpha,front,0.8420275449752808 +karman_re100,ppo,98,39.2,alpha,upper,-7.175760269165039 +karman_re100,ppo,98,39.2,alpha,lower,2.3502999544143677 +karman_re100,ppo,99,39.6,alpha,front,1.4199854135513306 +karman_re100,ppo,99,39.6,alpha,upper,-6.868450880050659 +karman_re100,ppo,99,39.6,alpha,lower,2.124135732650757 +karman_re100,ppo,100,40.0,alpha,front,1.6906157732009888 +karman_re100,ppo,100,40.0,alpha,upper,-6.039137601852417 +karman_re100,ppo,100,40.0,alpha,lower,1.9115686416625977 +karman_re100,ppo,101,40.4,alpha,front,1.5314582586288452 +karman_re100,ppo,101,40.4,alpha,upper,-4.920356512069702 +karman_re100,ppo,101,40.4,alpha,lower,1.9165506362915041 +karman_re100,ppo,102,40.8,alpha,front,1.2341364622116089 +karman_re100,ppo,102,40.8,alpha,upper,-3.8096508383750916 +karman_re100,ppo,102,40.8,alpha,lower,2.9795100688934326 +karman_re100,ppo,103,41.2,alpha,front,0.9704909324645997 +karman_re100,ppo,103,41.2,alpha,upper,-3.0528643131256104 +karman_re100,ppo,103,41.2,alpha,lower,5.2277960777282715 +karman_re100,ppo,104,41.6,alpha,front,0.4473134577274322 +karman_re100,ppo,104,41.6,alpha,upper,-2.9569731950759888 +karman_re100,ppo,104,41.6,alpha,lower,6.8627398014068595 +karman_re100,ppo,105,42.0,alpha,front,-0.23947592079639435 +karman_re100,ppo,105,42.0,alpha,upper,-3.039089858531952 +karman_re100,ppo,105,42.0,alpha,lower,7.332756280899049 +karman_re100,ppo,106,42.4,alpha,front,-1.0409163236618042 +karman_re100,ppo,106,42.4,alpha,upper,-2.5566359758377075 +karman_re100,ppo,106,42.4,alpha,lower,7.125956058502197 +karman_re100,ppo,107,42.8,alpha,front,-1.953961491584778 +karman_re100,ppo,107,42.8,alpha,upper,-1.7684755325317383 +karman_re100,ppo,107,42.8,alpha,lower,6.099494457244873 +karman_re100,ppo,108,43.2,alpha,front,-2.541083812713623 +karman_re100,ppo,108,43.2,alpha,upper,-1.1033565998077393 +karman_re100,ppo,108,43.2,alpha,lower,4.858214974403381 +karman_re100,ppo,109,43.6,alpha,front,-2.4910199642181396 +karman_re100,ppo,109,43.6,alpha,upper,-1.0594062805175781 +karman_re100,ppo,109,43.6,alpha,lower,4.0124665424227715 +karman_re100,ppo,110,44.0,alpha,front,-1.9652849435806277 +karman_re100,ppo,110,44.0,alpha,upper,-2.0035189390182495 +karman_re100,ppo,110,44.0,alpha,lower,3.928908057510853 +karman_re100,ppo,111,44.4,alpha,front,-1.5511269569396973 +karman_re100,ppo,111,44.4,alpha,upper,-3.4598098397254944 +karman_re100,ppo,111,44.4,alpha,lower,3.942383863031864 +karman_re100,ppo,112,44.8,alpha,front,-1.3122406005859375 +karman_re100,ppo,112,44.8,alpha,upper,-4.901060879230499 +karman_re100,ppo,112,44.8,alpha,lower,3.5776342749595647 +karman_re100,ppo,113,45.2,alpha,front,-0.9113550186157227 +karman_re100,ppo,113,45.2,alpha,upper,-6.022974252700806 +karman_re100,ppo,113,45.2,alpha,lower,3.149024486541748 +karman_re100,ppo,114,45.6,alpha,front,-0.37528952956199646 +karman_re100,ppo,114,45.6,alpha,upper,-6.622602462768555 +karman_re100,ppo,114,45.6,alpha,lower,2.950361967086792 +karman_re100,ppo,115,46.0,alpha,front,0.1812121719121933 +karman_re100,ppo,115,46.0,alpha,upper,-7.00312638282776 +karman_re100,ppo,115,46.0,alpha,lower,2.683645248413086 +karman_re100,ppo,116,46.4,alpha,front,0.7994030714035035 +karman_re100,ppo,116,46.4,alpha,upper,-7.183072566986084 +karman_re100,ppo,116,46.4,alpha,lower,2.3567352294921875 +karman_re100,ppo,117,46.8,alpha,front,1.3897781372070312 +karman_re100,ppo,117,46.8,alpha,upper,-6.908307313919068 +karman_re100,ppo,117,46.8,alpha,lower,2.1234594583511353 +karman_re100,ppo,118,47.2,alpha,front,1.6861976385116577 +karman_re100,ppo,118,47.2,alpha,upper,-6.105475187301636 +karman_re100,ppo,118,47.2,alpha,lower,1.915564775466919 +karman_re100,ppo,119,47.6,alpha,front,1.5434463024139404 +karman_re100,ppo,119,47.6,alpha,upper,-4.989426016807556 +karman_re100,ppo,119,47.6,alpha,lower,1.8998496532440186 +karman_re100,ppo,120,48.0,alpha,front,1.23696768283844 +karman_re100,ppo,120,48.0,alpha,upper,-3.8743858039379124 +karman_re100,ppo,120,48.0,alpha,lower,2.8779070377349854 +karman_re100,ppo,121,48.4,alpha,front,0.9798771142959595 +karman_re100,ppo,121,48.4,alpha,upper,-3.08901584148407 +karman_re100,ppo,121,48.4,alpha,lower,5.0910574197769165 +karman_re100,ppo,122,48.8,alpha,front,0.47882404923439026 +karman_re100,ppo,122,48.8,alpha,upper,-2.959151268005371 +karman_re100,ppo,122,48.8,alpha,lower,6.794798851013184 +karman_re100,ppo,123,49.2,alpha,front,-0.20162087678909302 +karman_re100,ppo,123,49.2,alpha,upper,-3.049712836742401 +karman_re100,ppo,123,49.2,alpha,lower,7.318925619125366 +karman_re100,ppo,124,49.6,alpha,front,-0.9930170774459839 +karman_re100,ppo,124,49.6,alpha,upper,-2.6017940044403076 +karman_re100,ppo,124,49.6,alpha,lower,7.161433219909669 +karman_re100,ppo,125,50.0,alpha,front,-1.909636616706848 +karman_re100,ppo,125,50.0,alpha,upper,-1.8159348964691162 +karman_re100,ppo,125,50.0,alpha,lower,6.177647113800049 +karman_re100,ppo,126,50.4,alpha,front,-2.530097723007202 +karman_re100,ppo,126,50.4,alpha,upper,-1.125049352645874 +karman_re100,ppo,126,50.4,alpha,lower,4.924708962440491 +karman_re100,ppo,127,50.8,alpha,front,-2.5216832160949707 +karman_re100,ppo,127,50.8,alpha,upper,-1.0142254829406738 +karman_re100,ppo,127,50.8,alpha,lower,4.0301495380699635 +karman_re100,ppo,128,51.2,alpha,front,-2.00627064704895 +karman_re100,ppo,128,51.2,alpha,upper,-1.9019281864166262 +karman_re100,ppo,128,51.2,alpha,lower,3.9071224629879 +karman_re100,ppo,129,51.6,alpha,front,-1.568675637245178 +karman_re100,ppo,129,51.6,alpha,upper,-3.354628145694732 +karman_re100,ppo,129,51.6,alpha,lower,3.94664104655385 +karman_re100,ppo,130,52.0,alpha,front,-1.3323360681533813 +karman_re100,ppo,130,52.0,alpha,upper,-4.820663630962372 +karman_re100,ppo,130,52.0,alpha,lower,3.5982594192028046 +karman_re100,ppo,131,52.4,alpha,front,-0.9475969076156616 +karman_re100,ppo,131,52.4,alpha,upper,-5.975712418556213 +karman_re100,ppo,131,52.4,alpha,lower,3.1615293622016907 +karman_re100,ppo,132,52.8,alpha,front,-0.41340208053588867 +karman_re100,ppo,132,52.8,alpha,upper,-6.596754312515259 +karman_re100,ppo,132,52.8,alpha,lower,2.959770679473877 +karman_re100,ppo,133,53.2,alpha,front,0.14195679128170013 +karman_re100,ppo,133,53.2,alpha,upper,-6.979011297225952 +karman_re100,ppo,133,53.2,alpha,lower,2.702604651451111 +karman_re100,ppo,134,53.6,alpha,front,0.75597083568573 +karman_re100,ppo,134,53.6,alpha,upper,-7.179163694381714 +karman_re100,ppo,134,53.6,alpha,lower,2.374112367630005 +karman_re100,ppo,135,54.0,alpha,front,1.3541476726531982 +karman_re100,ppo,135,54.0,alpha,upper,-6.941689729690552 +karman_re100,ppo,135,54.0,alpha,lower,2.1435790061950684 +karman_re100,ppo,136,54.4,alpha,front,1.6759670972824097 +karman_re100,ppo,136,54.4,alpha,upper,-6.173954248428345 +karman_re100,ppo,136,54.4,alpha,lower,1.9390296936035156 +karman_re100,ppo,137,54.8,alpha,front,1.5598055124282837 +karman_re100,ppo,137,54.8,alpha,upper,-5.077156066894531 +karman_re100,ppo,137,54.8,alpha,lower,1.8891301155090332 +karman_re100,ppo,138,55.2,alpha,front,1.2545255422592163 +karman_re100,ppo,138,55.2,alpha,upper,-3.9579339995980263 +karman_re100,ppo,138,55.2,alpha,lower,2.757956385612488 +karman_re100,ppo,139,55.6,alpha,front,1.0052155256271362 +karman_re100,ppo,139,55.6,alpha,upper,-3.1383184194564815 +karman_re100,ppo,139,55.6,alpha,lower,4.910757124423981 +karman_re100,ppo,140,56.0,alpha,front,0.5262887477874756 +karman_re100,ppo,140,56.0,alpha,upper,-2.9544851779937744 +karman_re100,ppo,140,56.0,alpha,lower,6.708844661712647 +karman_re100,ppo,141,56.4,alpha,front,-0.15034452080726624 +karman_re100,ppo,141,56.4,alpha,upper,-3.05645489692688 +karman_re100,ppo,141,56.4,alpha,lower,7.307700395584106 +karman_re100,ppo,142,56.8,alpha,front,-0.9302170276641845 +karman_re100,ppo,142,56.8,alpha,upper,-2.653560161590576 +karman_re100,ppo,142,56.8,alpha,lower,7.2058024406433105 +karman_re100,ppo,143,57.2,alpha,front,-1.851134538650513 +karman_re100,ppo,143,57.2,alpha,upper,-1.871994733810425 +karman_re100,ppo,143,57.2,alpha,lower,6.265997409820556 +karman_re100,ppo,144,57.6,alpha,front,-2.51116681098938 +karman_re100,ppo,144,57.6,alpha,upper,-1.1546733379364014 +karman_re100,ppo,144,57.6,alpha,lower,4.998019874095917 +karman_re100,ppo,145,58.0,alpha,front,-2.549882173538208 +karman_re100,ppo,145,58.0,alpha,upper,-0.9816198348999023 +karman_re100,ppo,145,58.0,alpha,lower,4.054957147687674 +karman_re100,ppo,146,58.4,alpha,front,-2.0509583950042725 +karman_re100,ppo,146,58.4,alpha,upper,-1.811455011367798 +karman_re100,ppo,146,58.4,alpha,lower,3.887440830469131 +karman_re100,ppo,147,58.8,alpha,front,-1.5918229818344116 +karman_re100,ppo,147,58.8,alpha,upper,-3.2561548948287964 +karman_re100,ppo,147,58.8,alpha,lower,3.9496150985360146 +karman_re100,ppo,148,59.2,alpha,front,-1.3543814420700073 +karman_re100,ppo,148,59.2,alpha,upper,-4.734993577003479 +karman_re100,ppo,148,59.2,alpha,lower,3.6227217316627502 +karman_re100,ppo,149,59.6,alpha,front,-0.9838943481445314 +karman_re100,ppo,149,59.6,alpha,upper,-5.9066009521484375 +karman_re100,ppo,149,59.6,alpha,lower,3.190205574035645 +karman_re100,ppo,150,60.0,alpha,front,-0.4538901448249817 +karman_re100,ppo,150,60.0,alpha,upper,-6.556900501251222 +karman_re100,ppo,150,60.0,alpha,lower,2.9754382371902466 +karman_re100,ppo,151,60.4,alpha,front,0.0996328741312027 +karman_re100,ppo,151,60.4,alpha,upper,-6.951733112335205 +karman_re100,ppo,151,60.4,alpha,lower,2.726415276527405 +karman_re100,ppo,152,60.8,alpha,front,0.7070568799972534 +karman_re100,ppo,152,60.8,alpha,upper,-7.1757144927978525 +karman_re100,ppo,152,60.8,alpha,lower,2.39948046207428 +karman_re100,ppo,153,61.2,alpha,front,1.3113577365875244 +karman_re100,ppo,153,61.2,alpha,upper,-6.9780168533325195 +karman_re100,ppo,153,61.2,alpha,lower,2.1640647649765015 +karman_re100,ppo,154,61.6,alpha,front,1.661271572113037 +karman_re100,ppo,154,61.6,alpha,upper,-6.248705148696899 +karman_re100,ppo,154,61.6,alpha,lower,1.954854965209961 +karman_re100,ppo,155,62.0,alpha,front,1.578134298324585 +karman_re100,ppo,155,62.0,alpha,upper,-5.163963079452515 +karman_re100,ppo,155,62.0,alpha,lower,1.8705215454101562 +karman_re100,ppo,156,62.4,alpha,front,1.2746800184249878 +karman_re100,ppo,156,62.4,alpha,upper,-4.0336442068219185 +karman_re100,ppo,156,62.4,alpha,lower,2.637923002243042 +karman_re100,ppo,157,62.8,alpha,front,1.0279415845870972 +karman_re100,ppo,157,62.8,alpha,upper,-3.172657549381256 +karman_re100,ppo,157,62.8,alpha,lower,4.744721233844757 +karman_re100,ppo,158,63.2,alpha,front,0.5689471960067749 +karman_re100,ppo,158,63.2,alpha,upper,-2.9395374059677124 +karman_re100,ppo,158,63.2,alpha,lower,6.634720563888549 +karman_re100,ppo,159,63.6,alpha,front,-0.10240942239761353 +karman_re100,ppo,159,63.6,alpha,upper,-3.054519772529602 +karman_re100,ppo,159,63.6,alpha,lower,7.299788475036621 +karman_re100,ppo,160,64.0,alpha,front,-0.8695052862167358 +karman_re100,ppo,160,64.0,alpha,upper,-2.697850823402405 +karman_re100,ppo,160,64.0,alpha,lower,7.240336418151856 +karman_re100,ppo,161,64.4,alpha,front,-1.7890095710754395 +karman_re100,ppo,161,64.4,alpha,upper,-1.9241187572479248 +karman_re100,ppo,161,64.4,alpha,lower,6.348312139511108 +karman_re100,ppo,162,64.8,alpha,front,-2.4810633659362793 +karman_re100,ppo,162,64.8,alpha,upper,-1.1933777332305908 +karman_re100,ppo,162,64.8,alpha,lower,5.079684257507324 +karman_re100,ppo,163,65.2,alpha,front,-2.564169406890869 +karman_re100,ppo,163,65.2,alpha,upper,-0.9669749736785889 +karman_re100,ppo,163,65.2,alpha,lower,4.104987353086472 +karman_re100,ppo,164,65.6,alpha,front,-2.0853848457336426 +karman_re100,ppo,164,65.6,alpha,upper,-1.73838472366333 +karman_re100,ppo,164,65.6,alpha,lower,3.888497993350029 +karman_re100,ppo,165,66.0,alpha,front,-1.6090111732482912 +karman_re100,ppo,165,66.0,alpha,upper,-3.1592941284179688 +karman_re100,ppo,165,66.0,alpha,lower,3.9625253565609455 +karman_re100,ppo,166,66.4,alpha,front,-1.3688640594482422 +karman_re100,ppo,166,66.4,alpha,upper,-4.630836188793182 +karman_re100,ppo,166,66.4,alpha,lower,3.6647308170795445 +karman_re100,ppo,167,66.8,alpha,front,-1.0126904249191284 +karman_re100,ppo,167,66.8,alpha,upper,-5.8355712890625 +karman_re100,ppo,167,66.8,alpha,lower,3.2169675827026367 +karman_re100,ppo,168,67.2,alpha,front,-0.48795410990715027 +karman_re100,ppo,168,67.2,alpha,upper,-6.523376941680908 +karman_re100,ppo,168,67.2,alpha,lower,2.985580801963806 +karman_re100,ppo,169,67.6,alpha,front,0.0629548728466034 +karman_re100,ppo,169,67.6,alpha,upper,-6.928362846374513 +karman_re100,ppo,169,67.6,alpha,lower,2.7499064207077026 +karman_re100,ppo,170,68.0,alpha,front,0.6654030084609985 +karman_re100,ppo,170,68.0,alpha,upper,-7.17430329322815 +karman_re100,ppo,170,68.0,alpha,lower,2.420949935913086 +karman_re100,ppo,171,68.4,alpha,front,1.2790229320526123 +karman_re100,ppo,171,68.4,alpha,upper,-7.012842893600464 +karman_re100,ppo,171,68.4,alpha,lower,2.1743252277374268 +karman_re100,ppo,172,68.8,alpha,front,1.6572434902191162 +karman_re100,ppo,172,68.8,alpha,upper,-6.314413070678711 +karman_re100,ppo,172,68.8,alpha,lower,1.96124529838562 +karman_re100,ppo,173,69.2,alpha,front,1.602863788604736 +karman_re100,ppo,173,69.2,alpha,upper,-5.241159915924072 +karman_re100,ppo,173,69.2,alpha,lower,1.8516058921813963 +karman_re100,ppo,174,69.6,alpha,front,1.2968906164169312 +karman_re100,ppo,174,69.6,alpha,upper,-4.101403526961803 +karman_re100,ppo,174,69.6,alpha,lower,2.5322686433792114 +karman_re100,ppo,175,70.0,alpha,front,1.0482068061828613 +karman_re100,ppo,175,70.0,alpha,upper,-3.2051416635513306 +karman_re100,ppo,175,70.0,alpha,lower,4.589549481868744 +karman_re100,ppo,176,70.4,alpha,front,0.6094244718551636 +karman_re100,ppo,176,70.4,alpha,upper,-2.931985378265381 +karman_re100,ppo,176,70.4,alpha,lower,6.554505109786987 +karman_re100,ppo,177,70.8,alpha,front,-0.05452031642198563 +karman_re100,ppo,177,70.8,alpha,upper,-3.055388569831848 +karman_re100,ppo,177,70.8,alpha,lower,7.279466152191162 +karman_re100,ppo,178,71.2,alpha,front,-0.8111729621887206 +karman_re100,ppo,178,71.2,alpha,upper,-2.7404839992523193 +karman_re100,ppo,178,71.2,alpha,lower,7.26473331451416 +karman_re100,ppo,179,71.6,alpha,front,-1.7268521785736086 +karman_re100,ppo,179,71.6,alpha,upper,-1.9800403118133545 +karman_re100,ppo,179,71.6,alpha,lower,6.4295077323913565 +karman_re100,ppo,180,72.0,alpha,front,-2.4479880332946777 +karman_re100,ppo,180,72.0,alpha,upper,-1.2394444942474365 +karman_re100,ppo,180,72.0,alpha,lower,5.168981075286865 +karman_re100,ppo,181,72.4,alpha,front,-2.5767087936401367 +karman_re100,ppo,181,72.4,alpha,upper,-0.9613592624664307 +karman_re100,ppo,181,72.4,alpha,lower,4.160302177071571 +karman_re100,ppo,182,72.8,alpha,front,-2.1266980171203613 +karman_re100,ppo,182,72.8,alpha,upper,-1.654055118560791 +karman_re100,ppo,182,72.8,alpha,lower,3.887233123183251 +karman_re100,ppo,183,73.2,alpha,front,-1.6322339773178098 +karman_re100,ppo,183,73.2,alpha,upper,-3.046919822692871 +karman_re100,ppo,183,73.2,alpha,lower,3.9731637611985207 +karman_re100,ppo,184,73.6,alpha,front,-1.384557843208313 +karman_re100,ppo,184,73.6,alpha,upper,-4.52251124382019 +karman_re100,ppo,184,73.6,alpha,lower,3.6986617445945735 +karman_re100,ppo,185,74.0,alpha,front,-1.0447635650634766 +karman_re100,ppo,185,74.0,alpha,upper,-5.7643303871154785 +karman_re100,ppo,185,74.0,alpha,lower,3.2430384755134587 +karman_re100,ppo,186,74.4,alpha,front,-0.5266741514205933 +karman_re100,ppo,186,74.4,alpha,upper,-6.493624448776244 +karman_re100,ppo,186,74.4,alpha,lower,2.995398998260498 +karman_re100,ppo,187,74.8,alpha,front,0.02323569357395172 +karman_re100,ppo,187,74.8,alpha,upper,-6.905682325363159 +karman_re100,ppo,187,74.8,alpha,lower,2.7731603384017944 +karman_re100,ppo,188,75.2,alpha,front,0.6222351789474487 +karman_re100,ppo,188,75.2,alpha,upper,-7.167855739593507 +karman_re100,ppo,188,75.2,alpha,lower,2.440005898475647 +karman_re100,ppo,189,75.6,alpha,front,1.2440054416656494 +karman_re100,ppo,189,75.6,alpha,upper,-7.040446043014526 +karman_re100,ppo,189,75.6,alpha,lower,2.1850714683532715 +karman_re100,ppo,190,76.0,alpha,front,1.6486814022064211 +karman_re100,ppo,190,76.0,alpha,upper,-6.376839399337769 +karman_re100,ppo,190,76.0,alpha,lower,1.9752154350280764 +karman_re100,ppo,191,76.4,alpha,front,1.622880220413208 +karman_re100,ppo,191,76.4,alpha,upper,-5.319099426269531 +karman_re100,ppo,191,76.4,alpha,lower,1.849571466445923 +karman_re100,ppo,192,76.8,alpha,front,1.3184127807617188 +karman_re100,ppo,192,76.8,alpha,upper,-4.17626616358757 +karman_re100,ppo,192,76.8,alpha,lower,2.442461133003235 +karman_re100,ppo,193,77.2,alpha,front,1.0690462589263916 +karman_re100,ppo,193,77.2,alpha,upper,-3.2552576065063477 +karman_re100,ppo,193,77.2,alpha,lower,4.421839088201523 +karman_re100,ppo,194,77.6,alpha,front,0.6531211137771606 +karman_re100,ppo,194,77.6,alpha,upper,-2.9349172115325928 +karman_re100,ppo,194,77.6,alpha,lower,6.44809365272522 +karman_re100,ppo,195,78.0,alpha,front,-0.0023792609572410583 +karman_re100,ppo,195,78.0,alpha,upper,-3.05685555934906 +karman_re100,ppo,195,78.0,alpha,lower,7.250500440597535 +karman_re100,ppo,196,78.4,alpha,front,-0.7479157447814941 +karman_re100,ppo,196,78.4,alpha,upper,-2.7892428636550903 +karman_re100,ppo,196,78.4,alpha,lower,7.287867307662964 +karman_re100,ppo,197,78.8,alpha,front,-1.6581898927688596 +karman_re100,ppo,197,78.8,alpha,upper,-2.0444629192352295 +karman_re100,ppo,197,78.8,alpha,lower,6.520251035690308 +karman_re100,ppo,198,79.2,alpha,front,-2.411848545074463 +karman_re100,ppo,198,79.2,alpha,upper,-1.2885921001434326 +karman_re100,ppo,198,79.2,alpha,lower,5.264089941978455 +karman_re100,ppo,199,79.6,alpha,front,-2.5931272506713867 +karman_re100,ppo,199,79.6,alpha,upper,-0.949753999710083 +karman_re100,ppo,199,79.6,alpha,lower,4.211762472987175 +karman_re100,ppo,200,80.0,alpha,front,-2.1755118370056152 +karman_re100,ppo,200,80.0,alpha,upper,-1.5650465488433838 +karman_re100,ppo,200,80.0,alpha,lower,3.8762319833040237 +karman_re100,ppo,201,80.4,alpha,front,-1.6606779098510742 +karman_re100,ppo,201,80.4,alpha,upper,-2.9271055459976196 +karman_re100,ppo,201,80.4,alpha,lower,3.9731561653316025 +karman_re100,ppo,202,80.8,alpha,front,-1.4039603471755981 +karman_re100,ppo,202,80.8,alpha,upper,-4.420913964509964 +karman_re100,ppo,202,80.8,alpha,lower,3.7260458767414093 +karman_re100,ppo,203,81.2,alpha,front,-1.079991340637207 +karman_re100,ppo,203,81.2,alpha,upper,-5.696888446807861 +karman_re100,ppo,203,81.2,alpha,lower,3.268242239952088 +karman_re100,ppo,204,81.6,alpha,front,-0.5685595273971558 +karman_re100,ppo,204,81.6,alpha,upper,-6.461647033691406 +karman_re100,ppo,204,81.6,alpha,lower,3.005959212779999 +karman_re100,ppo,205,82.0,alpha,front,-0.018758326768875122 +karman_re100,ppo,205,82.0,alpha,upper,-6.878831386566163 +karman_re100,ppo,205,82.0,alpha,lower,2.7936750650405884 +karman_re100,ppo,206,82.4,alpha,front,0.5757558345794678 +karman_re100,ppo,206,82.4,alpha,upper,-7.157240390777587 +karman_re100,ppo,206,82.4,alpha,lower,2.4604647159576416 +karman_re100,ppo,207,82.8,alpha,front,1.2014415264129639 +karman_re100,ppo,207,82.8,alpha,upper,-7.064778566360473 +karman_re100,ppo,207,82.8,alpha,lower,2.201619267463684 +karman_re100,ppo,208,83.2,alpha,front,1.6286935806274414 +karman_re100,ppo,208,83.2,alpha,upper,-6.438104629516602 +karman_re100,ppo,208,83.2,alpha,lower,1.9969549179077148 +karman_re100,ppo,209,83.6,alpha,front,1.6337321996688845 +karman_re100,ppo,209,83.6,alpha,upper,-5.402191162109375 +karman_re100,ppo,209,83.6,alpha,lower,1.8531994819641116 +karman_re100,ppo,210,84.0,alpha,front,1.336909532546997 +karman_re100,ppo,210,84.0,alpha,upper,-4.2601059675216675 +karman_re100,ppo,210,84.0,alpha,lower,2.3582834005355835 +karman_re100,ppo,211,84.4,alpha,front,1.0868139266967773 +karman_re100,ppo,211,84.4,alpha,upper,-3.311558604240417 +karman_re100,ppo,211,84.4,alpha,lower,4.243656352162361 +karman_re100,ppo,212,84.8,alpha,front,0.694230318069458 +karman_re100,ppo,212,84.8,alpha,upper,-2.9392529726028442 +karman_re100,ppo,212,84.8,alpha,lower,6.333557367324829 +karman_re100,ppo,213,85.2,alpha,front,0.047878995537757874 +karman_re100,ppo,213,85.2,alpha,upper,-3.051949441432953 +karman_re100,ppo,213,85.2,alpha,lower,7.225590229034425 +karman_re100,ppo,214,85.6,alpha,front,-0.6889297962188721 +karman_re100,ppo,214,85.6,alpha,upper,-2.83006489276886 +karman_re100,ppo,214,85.6,alpha,lower,7.311631917953491 +karman_re100,ppo,215,86.0,alpha,front,-1.5921071767807007 +karman_re100,ppo,215,86.0,alpha,upper,-2.103261113166809 +karman_re100,ppo,215,86.0,alpha,lower,6.60422945022583 +karman_re100,ppo,216,86.4,alpha,front,-2.3753561973571777 +karman_re100,ppo,216,86.4,alpha,upper,-1.3315258026123047 +karman_re100,ppo,216,86.4,alpha,lower,5.350340127944946 +karman_re100,ppo,217,86.8,alpha,front,-2.605257749557495 +karman_re100,ppo,217,86.8,alpha,upper,-0.9416012763977051 +karman_re100,ppo,217,86.8,alpha,lower,4.262064516544342 +karman_re100,ppo,218,87.2,alpha,front,-2.2172935009002686 +karman_re100,ppo,218,87.2,alpha,upper,-1.486572504043579 +karman_re100,ppo,218,87.2,alpha,lower,3.8690271079540253 +karman_re100,ppo,219,87.6,alpha,front,-1.6870236396789553 +karman_re100,ppo,219,87.6,alpha,upper,-2.825793147087097 +karman_re100,ppo,219,87.6,alpha,lower,3.9723102003335953 +karman_re100,ppo,220,88.0,alpha,front,-1.4207714796066284 +karman_re100,ppo,220,88.0,alpha,upper,-4.327662855386734 +karman_re100,ppo,220,88.0,alpha,lower,3.7522561848163605 +karman_re100,ppo,221,88.4,alpha,front,-1.1107492446899414 +karman_re100,ppo,221,88.4,alpha,upper,-5.623740077018738 +karman_re100,ppo,221,88.4,alpha,lower,3.296233117580414 +karman_re100,ppo,222,88.8,alpha,front,-0.6068542003631592 +karman_re100,ppo,222,88.8,alpha,upper,-6.42104411125183 +karman_re100,ppo,222,88.8,alpha,lower,3.0182475447654724 +karman_re100,ppo,223,89.2,alpha,front,-0.057812824845314026 +karman_re100,ppo,223,89.2,alpha,upper,-6.851138830184937 +karman_re100,ppo,223,89.2,alpha,lower,2.8129690885543823 +karman_re100,ppo,224,89.6,alpha,front,0.5306264162063599 +karman_re100,ppo,224,89.6,alpha,upper,-7.147153615951539 +karman_re100,ppo,224,89.6,alpha,lower,2.4842857122421265 +karman_re100,ppo,225,90.0,alpha,front,1.1574416160583496 +karman_re100,ppo,225,90.0,alpha,upper,-7.088856935501099 +karman_re100,ppo,225,90.0,alpha,lower,2.220180034637451 +karman_re100,ppo,226,90.4,alpha,front,1.607266902923584 +karman_re100,ppo,226,90.4,alpha,upper,-6.502689838409424 +karman_re100,ppo,226,90.4,alpha,lower,2.012279510498047 +karman_re100,ppo,227,90.8,alpha,front,1.645127773284912 +karman_re100,ppo,227,90.8,alpha,upper,-5.485790848731995 +karman_re100,ppo,227,90.8,alpha,lower,1.8507165908813479 +karman_re100,ppo,228,91.2,alpha,front,1.3574645519256592 +karman_re100,ppo,228,91.2,alpha,upper,-4.338964641094208 +karman_re100,ppo,228,91.2,alpha,lower,2.2742785215377808 +karman_re100,ppo,229,91.6,alpha,front,1.103440523147583 +karman_re100,ppo,229,91.6,alpha,upper,-3.362452208995819 +karman_re100,ppo,229,91.6,alpha,lower,4.077215030789375 +karman_re100,ppo,230,92.0,alpha,front,0.7312579154968262 +karman_re100,ppo,230,92.0,alpha,upper,-2.93766713142395 +karman_re100,ppo,230,92.0,alpha,lower,6.23086142539978 +karman_re100,ppo,231,92.4,alpha,front,0.09428815543651581 +karman_re100,ppo,231,92.4,alpha,upper,-3.0404300689697266 +karman_re100,ppo,231,92.4,alpha,lower,7.206244707107544 +karman_re100,ppo,232,92.8,alpha,front,-0.6347399950027466 +karman_re100,ppo,232,92.8,alpha,upper,-2.8657004833221436 +karman_re100,ppo,232,92.8,alpha,lower,7.329292297363281 +karman_re100,ppo,233,93.2,alpha,front,-1.5290043354034424 +karman_re100,ppo,233,93.2,alpha,upper,-2.1549155712127686 +karman_re100,ppo,233,93.2,alpha,lower,6.676895380020141 +karman_re100,ppo,234,93.6,alpha,front,-2.3382866382598877 +karman_re100,ppo,234,93.6,alpha,upper,-1.3774259090423584 +karman_re100,ppo,234,93.6,alpha,lower,5.42787230014801 +karman_re100,ppo,235,94.0,alpha,front,-2.6096110343933105 +karman_re100,ppo,235,94.0,alpha,upper,-0.9437453746795654 +karman_re100,ppo,235,94.0,alpha,lower,4.320893347263336 +karman_re100,ppo,236,94.4,alpha,front,-2.252678632736206 +karman_re100,ppo,236,94.4,alpha,upper,-1.420837640762329 +karman_re100,ppo,236,94.4,alpha,lower,3.873944237828255 +karman_re100,ppo,237,94.8,alpha,front,-1.7120082378387451 +karman_re100,ppo,237,94.8,alpha,upper,-2.729450821876526 +karman_re100,ppo,237,94.8,alpha,lower,3.973385728895664 +karman_re100,ppo,238,95.2,alpha,front,-1.4346356391906738 +karman_re100,ppo,238,95.2,alpha,upper,-4.223604321479797 +karman_re100,ppo,238,95.2,alpha,lower,3.782691463828087 +karman_re100,ppo,239,95.6,alpha,front,-1.1373612880706787 +karman_re100,ppo,239,95.6,alpha,upper,-5.542818784713745 +karman_re100,ppo,239,95.6,alpha,lower,3.3287298083305363 +karman_re100,ppo,240,96.0,alpha,front,-0.6430068016052246 +karman_re100,ppo,240,96.0,alpha,upper,-6.378908395767212 +karman_re100,ppo,240,96.0,alpha,lower,3.031022012233734 +karman_re100,ppo,241,96.4,alpha,front,-0.09387311339378357 +karman_re100,ppo,241,96.4,alpha,upper,-6.8277928829193115 +karman_re100,ppo,241,96.4,alpha,lower,2.82851243019104 +karman_re100,ppo,242,96.8,alpha,front,0.4878481924533844 +karman_re100,ppo,242,96.8,alpha,upper,-7.133790016174317 +karman_re100,ppo,242,96.8,alpha,lower,2.5094162225723267 +karman_re100,ppo,243,97.2,alpha,front,1.117324948310852 +karman_re100,ppo,243,97.2,alpha,upper,-7.11088752746582 +karman_re100,ppo,243,97.2,alpha,lower,2.2348090410232544 +karman_re100,ppo,244,97.6,alpha,front,1.5904976129531863 +karman_re100,ppo,244,97.6,alpha,upper,-6.560794115066528 +karman_re100,ppo,244,97.6,alpha,lower,2.023212194442749 +karman_re100,ppo,245,98.0,alpha,front,1.6607863903045657 +karman_re100,ppo,245,98.0,alpha,upper,-5.5632113218307495 +karman_re100,ppo,245,98.0,alpha,lower,1.8484480381011963 +karman_re100,ppo,246,98.4,alpha,front,1.3820898532867432 +karman_re100,ppo,246,98.4,alpha,upper,-4.415612429380417 +karman_re100,ppo,246,98.4,alpha,lower,2.2002410888671875 +karman_re100,ppo,247,98.8,alpha,front,1.1208117008209229 +karman_re100,ppo,247,98.8,alpha,upper,-3.4109846353530884 +karman_re100,ppo,247,98.8,alpha,lower,3.9199351966381073 +karman_re100,ppo,248,99.2,alpha,front,0.7675789594650269 +karman_re100,ppo,248,99.2,alpha,upper,-2.941373109817505 +karman_re100,ppo,248,99.2,alpha,lower,6.116973638534546 +karman_re100,ppo,249,99.6,alpha,front,0.14157360792160034 +karman_re100,ppo,249,99.6,alpha,upper,-3.033099353313446 +karman_re100,ppo,249,99.6,alpha,lower,7.173145294189453 +karman_re100,ppo,250,100.0,alpha,front,-0.5793777704238892 +karman_re100,ppo,250,100.0,alpha,upper,-2.898499011993408 +karman_re100,ppo,250,100.0,alpha,lower,7.337913990020751 +karman_re100,ppo,251,100.4,alpha,front,-1.4633177518844604 +karman_re100,ppo,251,100.4,alpha,upper,-2.2109779119491577 +karman_re100,ppo,251,100.4,alpha,lower,6.747976541519165 +karman_re100,ppo,252,100.8,alpha,front,-2.2923552989959717 +karman_re100,ppo,252,100.8,alpha,upper,-1.4261071681976318 +karman_re100,ppo,252,100.8,alpha,lower,5.524386882781982 +karman_re100,ppo,253,101.2,alpha,front,-2.610690116882324 +karman_re100,ppo,253,101.2,alpha,upper,-0.9540369510650635 +karman_re100,ppo,253,101.2,alpha,lower,4.388367176055908 +karman_re100,ppo,254,101.6,alpha,front,-2.290587902069092 +karman_re100,ppo,254,101.6,alpha,upper,-1.3565590381622314 +karman_re100,ppo,254,101.6,alpha,lower,3.8820001631975174 +karman_re100,ppo,255,102.0,alpha,front,-1.7417070865631104 +karman_re100,ppo,255,102.0,alpha,upper,-2.623952031135559 +karman_re100,ppo,255,102.0,alpha,lower,3.973345253616572 +karman_re100,ppo,256,102.4,alpha,front,-1.4481536149978638 +karman_re100,ppo,256,102.4,alpha,upper,-4.123287536203861 +karman_re100,ppo,256,102.4,alpha,lower,3.807025536894798 +karman_re100,ppo,257,102.8,alpha,front,-1.1642574071884155 +karman_re100,ppo,257,102.8,alpha,upper,-5.457608103752136 +karman_re100,ppo,257,102.8,alpha,lower,3.362980544567108 +karman_re100,ppo,258,103.2,alpha,front,-0.6808929443359375 +karman_re100,ppo,258,103.2,alpha,upper,-6.339831590652466 +karman_re100,ppo,258,103.2,alpha,lower,3.0433186888694763 +karman_re100,ppo,259,103.6,alpha,front,-0.13398580253124237 +karman_re100,ppo,259,103.6,alpha,upper,-6.798533916473389 +karman_re100,ppo,259,103.6,alpha,lower,2.8543362617492676 +karman_re100,ppo,260,104.0,alpha,front,0.44565442204475403 +karman_re100,ppo,260,104.0,alpha,upper,-7.12194538116455 +karman_re100,ppo,260,104.0,alpha,lower,2.531252145767212 +karman_re100,ppo,261,104.4,alpha,front,1.0776702165603638 +karman_re100,ppo,261,104.4,alpha,upper,-7.128758907318115 +karman_re100,ppo,261,104.4,alpha,lower,2.247405171394348 +karman_re100,ppo,262,104.8,alpha,front,1.5721299648284912 +karman_re100,ppo,262,104.8,alpha,upper,-6.61577296257019 +karman_re100,ppo,262,104.8,alpha,lower,2.036216139793396 +karman_re100,ppo,263,105.2,alpha,front,1.674329161643982 +karman_re100,ppo,263,105.2,alpha,upper,-5.63956093788147 +karman_re100,ppo,263,105.2,alpha,lower,1.8541181087493896 +karman_re100,ppo,264,105.6,alpha,front,1.4061466455459595 +karman_re100,ppo,264,105.6,alpha,upper,-4.490377277135849 +karman_re100,ppo,264,105.6,alpha,lower,2.140714406967163 +karman_re100,ppo,265,106.0,alpha,front,1.1384433507919312 +karman_re100,ppo,265,106.0,alpha,upper,-3.467704832553863 +karman_re100,ppo,265,106.0,alpha,lower,3.760541692376137 +karman_re100,ppo,266,106.4,alpha,front,0.8041809797286986 +karman_re100,ppo,266,106.4,alpha,upper,-2.9545021057128906 +karman_re100,ppo,266,106.4,alpha,lower,5.98729407787323 +karman_re100,ppo,267,106.8,alpha,front,0.19205166399478912 +karman_re100,ppo,267,106.8,alpha,upper,-3.0256187915802 +karman_re100,ppo,267,106.8,alpha,lower,7.130396842956543 +karman_re100,ppo,268,107.2,alpha,front,-0.5218979120254517 +karman_re100,ppo,268,107.2,alpha,upper,-2.932791590690613 +karman_re100,ppo,268,107.2,alpha,lower,7.343427896499634 +karman_re100,ppo,269,107.6,alpha,front,-1.3938713073730469 +karman_re100,ppo,269,107.6,alpha,upper,-2.272208333015442 +karman_re100,ppo,269,107.6,alpha,lower,6.82276177406311 +karman_re100,ppo,270,108.0,alpha,front,-2.244410991668701 +karman_re100,ppo,270,108.0,alpha,upper,-1.4811820983886719 +karman_re100,ppo,270,108.0,alpha,lower,5.620842099189758 +karman_re100,ppo,271,108.4,alpha,front,-2.610666275024414 +karman_re100,ppo,271,108.4,alpha,upper,-0.967064380645752 +karman_re100,ppo,271,108.4,alpha,lower,4.4569011926651 +karman_re100,ppo,272,108.8,alpha,front,-2.3322741985321045 +karman_re100,ppo,272,108.8,alpha,upper,-1.2858390808105469 +karman_re100,ppo,272,108.8,alpha,lower,3.8863605558872223 +karman_re100,ppo,273,109.2,alpha,front,-1.7762160301208498 +karman_re100,ppo,273,109.2,alpha,upper,-2.5108442306518555 +karman_re100,ppo,273,109.2,alpha,lower,3.966686375439167 +karman_re100,ppo,274,109.6,alpha,front,-1.465678095817566 +karman_re100,ppo,274,109.6,alpha,upper,-4.0122315511107445 +karman_re100,ppo,274,109.6,alpha,lower,3.8321282565593724 +karman_re100,ppo,275,110.0,alpha,front,-1.1937395334243774 +karman_re100,ppo,275,110.0,alpha,upper,-5.379833102226257 +karman_re100,ppo,275,110.0,alpha,lower,3.3903312683105473 +karman_re100,ppo,276,110.4,alpha,front,-0.7206153869628906 +karman_re100,ppo,276,110.4,alpha,upper,-6.299515008926392 +karman_re100,ppo,276,110.4,alpha,lower,3.0565521717071533 +karman_re100,ppo,277,110.8,alpha,front,-0.17413873970508575 +karman_re100,ppo,277,110.8,alpha,upper,-6.771962642669678 +karman_re100,ppo,277,110.8,alpha,lower,2.869796633720398 +karman_re100,ppo,278,111.2,alpha,front,0.4012796878814697 +karman_re100,ppo,278,111.2,alpha,upper,-7.1052165031433105 +karman_re100,ppo,278,111.2,alpha,lower,2.553444743156433 +karman_re100,ppo,279,111.6,alpha,front,1.0330904722213745 +karman_re100,ppo,279,111.6,alpha,upper,-7.142933130264282 +karman_re100,ppo,279,111.6,alpha,lower,2.263522505760193 +karman_re100,ppo,280,112.0,alpha,front,1.5454192161560059 +karman_re100,ppo,280,112.0,alpha,upper,-6.668429613113403 +karman_re100,ppo,280,112.0,alpha,lower,2.0545777082443237 +karman_re100,ppo,281,112.4,alpha,front,1.6785893440246582 +karman_re100,ppo,281,112.4,alpha,upper,-5.718356966972351 +karman_re100,ppo,281,112.4,alpha,lower,1.8661196231842039 +karman_re100,ppo,282,112.8,alpha,front,1.4264801740646362 +karman_re100,ppo,282,112.8,alpha,upper,-4.575447142124176 +karman_re100,ppo,282,112.8,alpha,lower,2.087735414505005 +karman_re100,ppo,283,113.2,alpha,front,1.1535744667053223 +karman_re100,ppo,283,113.2,alpha,upper,-3.5350203812122345 +karman_re100,ppo,283,113.2,alpha,lower,3.59848701953888 +karman_re100,ppo,284,113.6,alpha,front,0.837928295135498 +karman_re100,ppo,284,113.6,alpha,upper,-2.972295880317688 +karman_re100,ppo,284,113.6,alpha,lower,5.847790837287903 +karman_re100,ppo,285,114.0,alpha,front,0.24073684215545654 +karman_re100,ppo,285,114.0,alpha,upper,-3.0156776905059814 +karman_re100,ppo,285,114.0,alpha,lower,7.087914705276489 +karman_re100,ppo,286,114.4,alpha,front,-0.4679737985134125 +karman_re100,ppo,286,114.4,alpha,upper,-2.959581136703491 +karman_re100,ppo,286,114.4,alpha,lower,7.350568771362305 +karman_re100,ppo,287,114.8,alpha,front,-1.3275816440582275 +karman_re100,ppo,287,114.8,alpha,upper,-2.330010175704956 +karman_re100,ppo,287,114.8,alpha,lower,6.891570329666139 +karman_re100,ppo,288,115.2,alpha,front,-2.1971235275268555 +karman_re100,ppo,288,115.2,alpha,upper,-1.5307672023773193 +karman_re100,ppo,288,115.2,alpha,lower,5.710508227348328 +karman_re100,ppo,289,115.6,alpha,front,-2.6092529296875 +karman_re100,ppo,289,115.6,alpha,upper,-0.9782524108886718 +karman_re100,ppo,289,115.6,alpha,lower,4.521123707294464 +karman_re100,ppo,290,116.0,alpha,front,-2.3700242042541504 +karman_re100,ppo,290,116.0,alpha,upper,-1.2271873950958252 +karman_re100,ppo,290,116.0,alpha,lower,3.8927565589547157 +karman_re100,ppo,291,116.4,alpha,front,-1.810025930404663 +karman_re100,ppo,291,116.4,alpha,upper,-2.4109116792678833 +karman_re100,ppo,291,116.4,alpha,lower,3.955734692513943 +karman_re100,ppo,292,116.8,alpha,front,-1.4817854166030884 +karman_re100,ppo,292,116.8,alpha,upper,-3.9132790789008145 +karman_re100,ppo,292,116.8,alpha,lower,3.853167727589607 +karman_re100,ppo,293,117.2,alpha,front,-1.2202073335647583 +karman_re100,ppo,293,117.2,alpha,upper,-5.296931505203247 +karman_re100,ppo,293,117.2,alpha,lower,3.4243988394737244 +karman_re100,ppo,294,117.6,alpha,front,-0.7592527866363525 +karman_re100,ppo,294,117.6,alpha,upper,-6.252708435058593 +karman_re100,ppo,294,117.6,alpha,lower,3.0702227354049683 +karman_re100,ppo,295,118.0,alpha,front,-0.21321859955787661 +karman_re100,ppo,295,118.0,alpha,upper,-6.741410017013549 +karman_re100,ppo,295,118.0,alpha,lower,2.88728666305542 +karman_re100,ppo,296,118.4,alpha,front,0.35774004459381104 +karman_re100,ppo,296,118.4,alpha,upper,-7.08847188949585 +karman_re100,ppo,296,118.4,alpha,lower,2.5773431062698364 +karman_re100,ppo,297,118.8,alpha,front,0.9865756034851075 +karman_re100,ppo,297,118.8,alpha,upper,-7.155157804489136 +karman_re100,ppo,297,118.8,alpha,lower,2.282975673675537 +karman_re100,ppo,298,119.2,alpha,front,1.5157442092895508 +karman_re100,ppo,298,119.2,alpha,upper,-6.72096586227417 +karman_re100,ppo,298,119.2,alpha,lower,2.071184992790222 +karman_re100,ppo,299,119.6,alpha,front,1.681812763214111 +karman_re100,ppo,299,119.6,alpha,upper,-5.798871397972107 +karman_re100,ppo,299,119.6,alpha,lower,1.8737726211547852 +karman_re100,ppo,300,120.0,alpha,front,1.4485952854156494 +karman_re100,ppo,300,120.0,alpha,upper,-4.6586796045303345 +karman_re100,ppo,300,120.0,alpha,lower,2.036114811897278 +karman_re100,ppo,301,120.4,alpha,front,1.1692577600479126 +karman_re100,ppo,301,120.4,alpha,upper,-3.5963988602161407 +karman_re100,ppo,301,120.4,alpha,lower,3.444283604621887 +karman_re100,ppo,302,120.8,alpha,front,0.8691974878311158 +karman_re100,ppo,302,120.8,alpha,upper,-2.9863955974578857 +karman_re100,ppo,302,120.8,alpha,lower,5.712346434593201 +karman_re100,ppo,303,121.2,alpha,front,0.28699761629104614 +karman_re100,ppo,303,121.2,alpha,upper,-3.000676691532135 +karman_re100,ppo,303,121.2,alpha,lower,7.0482728481292725 +karman_re100,ppo,304,121.6,alpha,front,-0.4156668484210968 +karman_re100,ppo,304,121.6,alpha,upper,-2.9839770793914795 +karman_re100,ppo,304,121.6,alpha,lower,7.352978467941284 +karman_re100,ppo,305,122.0,alpha,front,-1.2632464170455933 +karman_re100,ppo,305,122.0,alpha,upper,-2.38167667388916 +karman_re100,ppo,305,122.0,alpha,lower,6.952416181564332 +karman_re100,ppo,306,122.4,alpha,front,-2.147378444671631 +karman_re100,ppo,306,122.4,alpha,upper,-1.5812339782714842 +karman_re100,ppo,306,122.4,alpha,lower,5.797139048576355 +karman_re100,ppo,307,122.8,alpha,front,-2.6013875007629395 +karman_re100,ppo,307,122.8,alpha,upper,-0.9981951713562013 +karman_re100,ppo,307,122.8,alpha,lower,4.591034114360809 +karman_re100,ppo,308,123.2,alpha,front,-2.401808738708496 +karman_re100,ppo,308,123.2,alpha,upper,-1.1779968738555908 +karman_re100,ppo,308,123.2,alpha,lower,3.911627918481827 +karman_re100,ppo,309,123.6,alpha,front,-1.8425699472427368 +karman_re100,ppo,309,123.6,alpha,upper,-2.315713405609131 +karman_re100,ppo,309,123.6,alpha,lower,3.9503825083374977 +karman_re100,ppo,310,124.0,alpha,front,-1.4957798719406128 +karman_re100,ppo,310,124.0,alpha,upper,-3.8100154399871826 +karman_re100,ppo,310,124.0,alpha,lower,3.8763586878776555 +karman_re100,ppo,311,124.4,alpha,front,-1.2425954341888428 +karman_re100,ppo,311,124.4,alpha,upper,-5.207086563110352 +karman_re100,ppo,311,124.4,alpha,lower,3.459139049053192 +karman_re100,ppo,312,124.8,alpha,front,-0.7948789596557617 +karman_re100,ppo,312,124.8,alpha,upper,-6.202123403549194 +karman_re100,ppo,312,124.8,alpha,lower,3.086324095726013 +karman_re100,ppo,313,125.2,alpha,front,-0.2502979636192322 +karman_re100,ppo,313,125.2,alpha,upper,-6.7133424282073975 +karman_re100,ppo,313,125.2,alpha,lower,2.9034684896469116 +karman_re100,ppo,314,125.6,alpha,front,0.3162364661693573 +karman_re100,ppo,314,125.6,alpha,upper,-7.06896185874939 +karman_re100,ppo,314,125.6,alpha,lower,2.6035549640655518 +karman_re100,ppo,315,126.0,alpha,front,0.9437298774719238 +karman_re100,ppo,315,126.0,alpha,upper,-7.1659135818481445 +karman_re100,ppo,315,126.0,alpha,lower,2.3008469343185425 +karman_re100,ppo,316,126.4,alpha,front,1.4902969598770142 +karman_re100,ppo,316,126.4,alpha,upper,-6.770965337753296 +karman_re100,ppo,316,126.4,alpha,lower,2.0836074352264404 +karman_re100,ppo,317,126.8,alpha,front,1.6886534690856931 +karman_re100,ppo,317,126.8,alpha,upper,-5.874108076095581 +karman_re100,ppo,317,126.8,alpha,lower,1.8806078433990479 +karman_re100,ppo,318,127.2,alpha,front,1.4741941690444946 +karman_re100,ppo,318,127.2,alpha,upper,-4.737401366233826 +karman_re100,ppo,318,127.2,alpha,lower,1.990088939666748 +karman_re100,ppo,319,127.6,alpha,front,1.1866393089294434 +karman_re100,ppo,319,127.6,alpha,upper,-3.658097773790359 +karman_re100,ppo,319,127.6,alpha,lower,3.2967059016227718 +karman_re100,ppo,320,128.0,alpha,front,0.8995018005371095 +karman_re100,ppo,320,128.0,alpha,upper,-3.0029279589653015 +karman_re100,ppo,320,128.0,alpha,lower,5.573090553283691 +karman_re100,ppo,321,128.4,alpha,front,0.33402764797210693 +karman_re100,ppo,321,128.4,alpha,upper,-2.987996220588684 +karman_re100,ppo,321,128.4,alpha,lower,6.9987852573394775 +karman_re100,ppo,322,128.8,alpha,front,-0.3635491728782654 +karman_re100,ppo,322,128.8,alpha,upper,-3.0053242444992065 +karman_re100,ppo,322,128.8,alpha,lower,7.34925389289856 +karman_re100,ppo,323,129.2,alpha,front,-1.1971592903137207 +karman_re100,ppo,323,129.2,alpha,upper,-2.4356473684310913 +karman_re100,ppo,323,129.2,alpha,lower,7.009669303894044 +karman_re100,ppo,324,129.6,alpha,front,-2.093135118484497 +karman_re100,ppo,324,129.6,alpha,upper,-1.636565685272217 +karman_re100,ppo,324,129.6,alpha,lower,5.889066100120544 +karman_re100,ppo,325,130.0,alpha,front,-2.5884528160095215 +karman_re100,ppo,325,130.0,alpha,upper,-1.0251350402832031 +karman_re100,ppo,325,130.0,alpha,lower,4.6696537137031555 +karman_re100,ppo,326,130.4,alpha,front,-2.4336447715759277 +karman_re100,ppo,326,130.4,alpha,upper,-1.1334121227264404 +karman_re100,ppo,326,130.4,alpha,lower,3.935832254588604 +karman_re100,ppo,327,130.8,alpha,front,-1.8794764280319214 +karman_re100,ppo,327,130.8,alpha,upper,-2.2146425247192383 +karman_re100,ppo,327,130.8,alpha,lower,3.9432599321007724 +karman_re100,ppo,328,131.2,alpha,front,-1.5119307041168213 +karman_re100,ppo,328,131.2,alpha,upper,-3.6993773877620697 +karman_re100,ppo,328,131.2,alpha,lower,3.899187728762626 +karman_re100,ppo,329,131.6,alpha,front,-1.2657158374786377 +karman_re100,ppo,329,131.6,alpha,upper,-5.109901070594788 +karman_re100,ppo,329,131.6,alpha,lower,3.4975712895393367 +karman_re100,ppo,330,132.0,alpha,front,-0.8318140506744384 +karman_re100,ppo,330,132.0,alpha,upper,-6.151564121246338 +karman_re100,ppo,330,132.0,alpha,lower,3.1014979481697083 +karman_re100,ppo,331,132.4,alpha,front,-0.2888508141040802 +karman_re100,ppo,331,132.4,alpha,upper,-6.686740159988403 +karman_re100,ppo,331,132.4,alpha,lower,2.917482018470764 +karman_re100,ppo,332,132.8,alpha,front,0.27392712235450745 +karman_re100,ppo,332,132.8,alpha,upper,-7.049148321151733 +karman_re100,ppo,332,132.8,alpha,lower,2.629243493080139 +karman_re100,ppo,333,133.2,alpha,front,0.9005568027496339 +karman_re100,ppo,333,133.2,alpha,upper,-7.174445867538452 +karman_re100,ppo,333,133.2,alpha,lower,2.31598961353302 +karman_re100,ppo,334,133.6,alpha,front,1.4627676010131836 +karman_re100,ppo,334,133.6,alpha,upper,-6.8166823387146 +karman_re100,ppo,334,133.6,alpha,lower,2.096510171890259 +karman_re100,ppo,335,134.0,alpha,front,1.6927725076675417 +karman_re100,ppo,335,134.0,alpha,upper,-5.949983477592468 +karman_re100,ppo,335,134.0,alpha,lower,1.8916165828704836 +karman_re100,ppo,336,134.4,alpha,front,1.4976990222930908 +karman_re100,ppo,336,134.4,alpha,upper,-4.816111445426941 +karman_re100,ppo,336,134.4,alpha,lower,1.956934690475464 +karman_re100,ppo,337,134.8,alpha,front,1.2040693759918213 +karman_re100,ppo,337,134.8,alpha,upper,-3.7274062037467957 +karman_re100,ppo,337,134.8,alpha,lower,3.154023349285126 +karman_re100,ppo,338,135.2,alpha,front,0.9285025596618652 +karman_re100,ppo,338,135.2,alpha,upper,-3.028391480445862 +karman_re100,ppo,338,135.2,alpha,lower,5.421334624290466 +karman_re100,ppo,339,135.6,alpha,front,0.3819263279438019 +karman_re100,ppo,339,135.6,alpha,upper,-2.9777581691741943 +karman_re100,ppo,339,135.6,alpha,lower,6.9382240772247314 +karman_re100,ppo,340,136.0,alpha,front,-0.3105100691318512 +karman_re100,ppo,340,136.0,alpha,upper,-3.024701237678528 +karman_re100,ppo,340,136.0,alpha,lower,7.341853380203247 +karman_re100,ppo,341,136.4,alpha,front,-1.1305359601974487 +karman_re100,ppo,341,136.4,alpha,upper,-2.4919408559799194 +karman_re100,ppo,341,136.4,alpha,lower,7.064774036407472 +karman_re100,ppo,342,136.8,alpha,front,-2.037264108657837 +karman_re100,ppo,342,136.8,alpha,upper,-1.6929454803466797 +karman_re100,ppo,342,136.8,alpha,lower,5.983455300331116 +karman_re100,ppo,343,137.2,alpha,front,-2.5748958587646484 +karman_re100,ppo,343,137.2,alpha,upper,-1.0530023574829102 +karman_re100,ppo,343,137.2,alpha,lower,4.748406708240509 +karman_re100,ppo,344,137.6,alpha,front,-2.4648616313934326 +karman_re100,ppo,344,137.6,alpha,upper,-1.0878503322601318 +karman_re100,ppo,344,137.6,alpha,lower,3.9606829658150677 +karman_re100,ppo,345,138.0,alpha,front,-1.9197102785110474 +karman_re100,ppo,345,138.0,alpha,upper,-2.1114529371261597 +karman_re100,ppo,345,138.0,alpha,lower,3.9305584579706188 +karman_re100,ppo,346,138.4,alpha,front,-1.5298832654953003 +karman_re100,ppo,346,138.4,alpha,upper,-3.591029763221741 +karman_re100,ppo,346,138.4,alpha,lower,3.915075190365314 +karman_re100,ppo,347,138.8,alpha,front,-1.2890048027038574 +karman_re100,ppo,347,138.8,alpha,upper,-5.0252074003219604 +karman_re100,ppo,347,138.8,alpha,lower,3.5257275700569157 +karman_re100,ppo,348,139.2,alpha,front,-0.8697750568389893 +karman_re100,ppo,348,139.2,alpha,upper,-6.098288536071777 +karman_re100,ppo,348,139.2,alpha,lower,3.1195756793022156 +karman_re100,ppo,349,139.6,alpha,front,-0.3289913833141327 +karman_re100,ppo,349,139.6,alpha,upper,-6.658605575561524 +karman_re100,ppo,349,139.6,alpha,lower,2.932596802711487 +karman_re100,ppo,350,140.0,alpha,front,0.23252689838409424 +karman_re100,ppo,350,140.0,alpha,upper,-7.028261899948119 +karman_re100,ppo,350,140.0,alpha,lower,2.6493494510650635 +karman_re100,ppo,351,140.4,alpha,front,0.8545858860015869 +karman_re100,ppo,351,140.4,alpha,upper,-7.177736997604369 +karman_re100,ppo,351,140.4,alpha,lower,2.3343636989593506 +karman_re100,ppo,352,140.8,alpha,front,1.4290879964828491 +karman_re100,ppo,352,140.8,alpha,upper,-6.858052968978883 +karman_re100,ppo,352,140.8,alpha,lower,2.1124377250671387 +karman_re100,ppo,353,141.2,alpha,front,1.6883305311203 +karman_re100,ppo,353,141.2,alpha,upper,-6.02089524269104 +karman_re100,ppo,353,141.2,alpha,lower,1.9076571464538574 +karman_re100,ppo,354,141.6,alpha,front,1.5175285339355469 +karman_re100,ppo,354,141.6,alpha,upper,-4.89931184053421 +karman_re100,ppo,354,141.6,alpha,lower,1.9307048320770264 +karman_re100,ppo,355,142.0,alpha,front,1.219268560409546 +karman_re100,ppo,355,142.0,alpha,upper,-3.7995183765888214 +karman_re100,ppo,355,142.0,alpha,lower,3.022441327571869 +karman_re100,ppo,356,142.4,alpha,front,0.9550906419754028 +karman_re100,ppo,356,142.4,alpha,upper,-3.0601351261138916 +karman_re100,ppo,356,142.4,alpha,lower,5.2636648416519165 +karman_re100,ppo,357,142.8,alpha,front,0.428559809923172 +karman_re100,ppo,357,142.8,alpha,upper,-2.9676953554153442 +karman_re100,ppo,357,142.8,alpha,lower,6.87320351600647 +karman_re100,ppo,358,143.2,alpha,front,-0.2592681050300598 +karman_re100,ppo,358,143.2,alpha,upper,-3.036610722541809 +karman_re100,ppo,358,143.2,alpha,lower,7.335878133773805 +karman_re100,ppo,359,143.6,alpha,front,-1.0655593872070312 +karman_re100,ppo,359,143.6,alpha,upper,-2.5453003644943237 +karman_re100,ppo,359,143.6,alpha,lower,7.114706516265868 +karman_re100,ppo,360,144.0,alpha,front,-1.9786969423294067 +karman_re100,ppo,360,144.0,alpha,upper,-1.7499482631683352 +karman_re100,ppo,360,144.0,alpha,lower,6.07400107383728 +karman_re100,ppo,361,144.4,alpha,front,-2.5577492713928223 +karman_re100,ppo,361,144.4,alpha,upper,-1.0820515155792236 +karman_re100,ppo,361,144.4,alpha,lower,4.825358629226685 +karman_re100,ppo,362,144.8,alpha,front,-2.4946656227111816 +karman_re100,ppo,362,144.8,alpha,upper,-1.0485739707946777 +karman_re100,ppo,362,144.8,alpha,lower,3.98546926304698 +karman_re100,ppo,363,145.2,alpha,front,-1.95944344997406 +karman_re100,ppo,363,145.2,alpha,upper,-2.015966296195984 +karman_re100,ppo,363,145.2,alpha,lower,3.918468683958053 +karman_re100,ppo,364,145.6,alpha,front,-1.5470532178878784 +karman_re100,ppo,364,145.6,alpha,upper,-3.4929402470588684 +karman_re100,ppo,364,145.6,alpha,lower,3.926424950361252 +karman_re100,ppo,365,146.0,alpha,front,-1.310340404510498 +karman_re100,ppo,365,146.0,alpha,upper,-4.934137582778931 +karman_re100,ppo,365,146.0,alpha,lower,3.558702409267426 +karman_re100,ppo,366,146.4,alpha,front,-0.9059195518493653 +karman_re100,ppo,366,146.4,alpha,upper,-6.04104208946228 +karman_re100,ppo,366,146.4,alpha,lower,3.1418569684028625 +karman_re100,ppo,367,146.8,alpha,front,-0.3672734498977661 +karman_re100,ppo,367,146.8,alpha,upper,-6.6271796226501465 +karman_re100,ppo,367,146.8,alpha,lower,2.945512056350708 +karman_re100,ppo,368,147.2,alpha,front,0.19051524996757507 +karman_re100,ppo,368,147.2,alpha,upper,-7.004918098449707 +karman_re100,ppo,368,147.2,alpha,lower,2.67522394657135 +karman_re100,ppo,369,147.6,alpha,front,0.8087942600250244 +karman_re100,ppo,369,147.6,alpha,upper,-7.180113554000854 +karman_re100,ppo,369,147.6,alpha,lower,2.354374051094055 +karman_re100,ppo,370,148.0,alpha,front,1.3941391706466675 +karman_re100,ppo,370,148.0,alpha,upper,-6.900094032287597 +karman_re100,ppo,370,148.0,alpha,lower,2.1286416053771973 +karman_re100,ppo,371,148.4,alpha,front,1.682981252670288 +karman_re100,ppo,371,148.4,alpha,upper,-6.094254970550537 +karman_re100,ppo,371,148.4,alpha,lower,1.9207990169525149 +karman_re100,ppo,372,148.8,alpha,front,1.5389885902404785 +karman_re100,ppo,372,148.8,alpha,upper,-4.983532786369324 +karman_re100,ppo,372,148.8,alpha,lower,1.903263330459595 +karman_re100,ppo,373,149.2,alpha,front,1.2368556261062622 +karman_re100,ppo,373,149.2,alpha,upper,-3.869929403066635 +karman_re100,ppo,373,149.2,alpha,lower,2.891158938407898 +karman_re100,ppo,374,149.6,alpha,front,0.9795925617218019 +karman_re100,ppo,374,149.6,alpha,upper,-3.088780403137207 +karman_re100,ppo,374,149.6,alpha,lower,5.1040849685668945 +karman_re100,ppo,375,150.0,alpha,front,0.4733150899410248 +karman_re100,ppo,375,150.0,alpha,upper,-2.9565036296844482 +karman_re100,ppo,375,150.0,alpha,lower,6.80792737007141 +karman_re100,ppo,376,150.4,alpha,front,-0.21013426780700684 +karman_re100,ppo,376,150.4,alpha,upper,-3.0459035634994507 +karman_re100,ppo,376,150.4,alpha,lower,7.327974796295165 +karman_re100,ppo,377,150.8,alpha,front,-1.0037702322006226 +karman_re100,ppo,377,150.8,alpha,upper,-2.5930827856063843 +karman_re100,ppo,377,150.8,alpha,lower,7.159677028656006 +karman_re100,ppo,378,151.2,alpha,front,-1.9213846921920774 +karman_re100,ppo,378,151.2,alpha,upper,-1.8029527664184573 +karman_re100,ppo,378,151.2,alpha,lower,6.160377025604248 +karman_re100,ppo,379,151.6,alpha,front,-2.5368289947509766 +karman_re100,ppo,379,151.6,alpha,upper,-1.1143028736114502 +karman_re100,ppo,379,151.6,alpha,lower,4.903577625751495 +karman_re100,ppo,380,152.0,alpha,front,-2.517047882080078 +karman_re100,ppo,380,152.0,alpha,upper,-1.0165104866027832 +karman_re100,ppo,380,152.0,alpha,lower,4.023544374853373 +karman_re100,ppo,381,152.4,alpha,front,-1.997473120689392 +karman_re100,ppo,381,152.4,alpha,upper,-1.928467035293579 +karman_re100,ppo,381,152.4,alpha,lower,3.909688644111157 +karman_re100,ppo,382,152.8,alpha,front,-1.5648453235626218 +karman_re100,ppo,382,152.8,alpha,upper,-3.3868380188941956 +karman_re100,ppo,382,152.8,alpha,lower,3.9415744058787823 +karman_re100,ppo,383,153.2,alpha,front,-1.3286970853805542 +karman_re100,ppo,383,153.2,alpha,upper,-4.841417610645294 +karman_re100,ppo,383,153.2,alpha,lower,3.590024411678314 +karman_re100,ppo,384,153.6,alpha,front,-0.9390459060668945 +karman_re100,ppo,384,153.6,alpha,upper,-5.978768944740295 +karman_re100,ppo,384,153.6,alpha,lower,3.1629212498664856 +karman_re100,ppo,385,154.0,alpha,front,-0.4045230448246002 +karman_re100,ppo,385,154.0,alpha,upper,-6.595669746398926 +karman_re100,ppo,385,154.0,alpha,lower,2.9581685066223145 +karman_re100,ppo,386,154.4,alpha,front,0.15077577531337738 +karman_re100,ppo,386,154.4,alpha,upper,-6.982421159744264 +karman_re100,ppo,386,154.4,alpha,lower,2.6991342306137085 +karman_re100,ppo,387,154.8,alpha,front,0.7646732330322266 +karman_re100,ppo,387,154.8,alpha,upper,-7.181296586990357 +karman_re100,ppo,387,154.8,alpha,lower,2.374124050140381 +karman_re100,ppo,388,155.2,alpha,front,1.3605848550796509 +karman_re100,ppo,388,155.2,alpha,upper,-6.93867564201355 +karman_re100,ppo,388,155.2,alpha,lower,2.1420395374298096 +karman_re100,ppo,389,155.6,alpha,front,1.679260015487671 +karman_re100,ppo,389,155.6,alpha,upper,-6.16581916809082 +karman_re100,ppo,389,155.6,alpha,lower,1.9314465522766113 +karman_re100,ppo,390,156.0,alpha,front,1.5613526105880737 +karman_re100,ppo,390,156.0,alpha,upper,-5.063130974769592 +karman_re100,ppo,390,156.0,alpha,lower,1.8817169666290285 +karman_re100,ppo,391,156.4,alpha,front,1.2552915811538696 +karman_re100,ppo,391,156.4,alpha,upper,-3.9399230331182475 +karman_re100,ppo,391,156.4,alpha,lower,2.7708109617233276 +karman_re100,ppo,392,156.8,alpha,front,1.0029799938201904 +karman_re100,ppo,392,156.8,alpha,upper,-3.122128188610077 +karman_re100,ppo,392,156.8,alpha,lower,4.946582853794098 +karman_re100,ppo,393,157.2,alpha,front,0.5172897577285767 +karman_re100,ppo,393,157.2,alpha,upper,-2.9481334686279297 +karman_re100,ppo,393,157.2,alpha,lower,6.734065055847169 +karman_re100,ppo,394,157.6,alpha,front,-0.16070929169654846 +karman_re100,ppo,394,157.6,alpha,upper,-3.0533844232559204 +karman_re100,ppo,394,157.6,alpha,lower,7.313746452331543 +karman_re100,ppo,395,158.0,alpha,front,-0.9420560598373413 +karman_re100,ppo,395,158.0,alpha,upper,-2.6417958736419678 +karman_re100,ppo,395,158.0,alpha,lower,7.197072744369506 +karman_re100,ppo,396,158.4,alpha,front,-1.8613635301589964 +karman_re100,ppo,396,158.4,alpha,upper,-1.8597452640533445 +karman_re100,ppo,396,158.4,alpha,lower,6.247219085693359 +karman_re100,ppo,397,158.8,alpha,front,-2.5124857425689697 +karman_re100,ppo,397,158.8,alpha,upper,-1.1516625881195068 +karman_re100,ppo,397,158.8,alpha,lower,4.986751735210419 +karman_re100,ppo,398,159.2,alpha,front,-2.5405406951904297 +karman_re100,ppo,398,159.2,alpha,upper,-0.9947769641876221 +karman_re100,ppo,398,159.2,alpha,lower,4.059355292469263 +karman_re100,ppo,399,159.6,alpha,front,-2.0390336513519287 +karman_re100,ppo,399,159.6,alpha,upper,-1.83597731590271 +karman_re100,ppo,399,159.6,alpha,lower,3.9005443155765533 +karman_re100,ppo,0,0.0,omega,front,-0.018737868070602418 +karman_re100,ppo,0,0.0,omega,upper,-0.02482828140258789 +karman_re100,ppo,0,0.0,omega,lower,0.06098980903625489 +karman_re100,ppo,1,0.4,omega,front,-0.01729433298110962 +karman_re100,ppo,1,0.4,omega,upper,-0.028682376146316527 +karman_re100,ppo,1,0.4,omega,lower,0.05613917469978333 +karman_re100,ppo,2,0.8,omega,front,-0.015619988441467286 +karman_re100,ppo,2,0.8,omega,upper,-0.027799142599105837 +karman_re100,ppo,2,0.8,omega,lower,0.05391022086143494 +karman_re100,ppo,3,1.2,omega,front,-0.01557882070541382 +karman_re100,ppo,3,1.2,omega,upper,-0.029932525157928467 +karman_re100,ppo,3,1.2,omega,lower,0.05252384781837464 +karman_re100,ppo,4,1.6,omega,front,-0.012230440378189086 +karman_re100,ppo,4,1.6,omega,upper,-0.04264320880174637 +karman_re100,ppo,4,1.6,omega,lower,0.04990058481693268 +karman_re100,ppo,5,2.0,omega,front,-0.008218497037887573 +karman_re100,ppo,5,2.0,omega,upper,-0.05733013868331909 +karman_re100,ppo,5,2.0,omega,lower,0.04159797146916389 +karman_re100,ppo,6,2.4,omega,front,-0.0044524440169334415 +karman_re100,ppo,6,2.4,omega,upper,-0.06630976676940918 +karman_re100,ppo,6,2.4,omega,lower,0.03365195751190186 +karman_re100,ppo,7,2.8,omega,front,0.0006206728518009186 +karman_re100,ppo,7,2.8,omega,upper,-0.07081318378448487 +karman_re100,ppo,7,2.8,omega,lower,0.02761962890625 +karman_re100,ppo,8,3.2,omega,front,0.007052189111709595 +karman_re100,ppo,8,3.2,omega,upper,-0.0709079384803772 +karman_re100,ppo,8,3.2,omega,lower,0.02279664993286133 +karman_re100,ppo,9,3.6,omega,front,0.012782608270645143 +karman_re100,ppo,9,3.6,omega,upper,-0.06508885145187378 +karman_re100,ppo,9,3.6,omega,lower,0.019596397876739502 +karman_re100,ppo,10,4.0,omega,front,0.01514381766319275 +karman_re100,ppo,10,4.0,omega,upper,-0.054406669139862064 +karman_re100,ppo,10,4.0,omega,lower,0.017252912521362306 +karman_re100,ppo,11,4.4,omega,front,0.012995918989181518 +karman_re100,ppo,11,4.4,omega,upper,-0.04134982258081436 +karman_re100,ppo,11,4.4,omega,lower,0.01977508783340454 +karman_re100,ppo,12,4.8,omega,front,0.009222028255462646 +karman_re100,ppo,12,4.8,omega,upper,-0.030017454028129577 +karman_re100,ppo,12,4.8,omega,lower,0.035535081923007965 +karman_re100,ppo,13,5.2,omega,front,0.005472910404205322 +karman_re100,ppo,13,5.2,omega,upper,-0.02529425621032715 +karman_re100,ppo,13,5.2,omega,lower,0.05802507877349854 +karman_re100,ppo,14,5.6,omega,front,0.0005241382122039795 +karman_re100,ppo,14,5.6,omega,upper,-0.02654444456100464 +karman_re100,ppo,14,5.6,omega,lower,0.07085418939590454 +karman_re100,ppo,15,6.0,omega,front,-0.004787019491195679 +karman_re100,ppo,15,6.0,omega,upper,-0.025747876167297363 +karman_re100,ppo,15,6.0,omega,lower,0.07441648721694946 +karman_re100,ppo,16,6.4,omega,front,-0.011269543170928955 +karman_re100,ppo,16,6.4,omega,upper,-0.02003141164779663 +karman_re100,ppo,16,6.4,omega,lower,0.07114698171615601 +karman_re100,ppo,17,6.8,omega,front,-0.017158442735672 +karman_re100,ppo,17,6.8,omega,upper,-0.014490973949432374 +karman_re100,ppo,17,6.8,omega,lower,0.06201802968978882 +karman_re100,ppo,18,7.2,omega,front,-0.0185599160194397 +karman_re100,ppo,18,7.2,omega,upper,-0.012551119327545166 +karman_re100,ppo,18,7.2,omega,lower,0.05408451557159424 +karman_re100,ppo,19,7.6,omega,front,-0.015358020067214966 +karman_re100,ppo,19,7.6,omega,upper,-0.01746196985244751 +karman_re100,ppo,19,7.6,omega,lower,0.050542457103729246 +karman_re100,ppo,20,8.0,omega,front,-0.011045764684677124 +karman_re100,ppo,20,8.0,omega,upper,-0.029682997465133667 +karman_re100,ppo,20,8.0,omega,lower,0.04871420681476593 +karman_re100,ppo,21,8.4,omega,front,-0.007955374717712403 +karman_re100,ppo,21,8.4,omega,upper,-0.04476156324148178 +karman_re100,ppo,21,8.4,omega,lower,0.04386308193206787 +karman_re100,ppo,22,8.8,omega,front,-0.005091004967689514 +karman_re100,ppo,22,8.8,omega,upper,-0.05751453161239624 +karman_re100,ppo,22,8.8,omega,lower,0.03645540475845337 +karman_re100,ppo,23,9.2,omega,front,-0.0013104954361915588 +karman_re100,ppo,23,9.2,omega,upper,-0.0649574875831604 +karman_re100,ppo,23,9.2,omega,lower,0.03089676558971405 +karman_re100,ppo,24,9.6,omega,front,0.00395626038312912 +karman_re100,ppo,24,9.6,omega,upper,-0.06977542161941529 +karman_re100,ppo,24,9.6,omega,lower,0.02606320023536682 +karman_re100,ppo,25,10.0,omega,front,0.011080954074859619 +karman_re100,ppo,25,10.0,omega,upper,-0.07235546350479126 +karman_re100,ppo,25,10.0,omega,lower,0.02244859457015991 +karman_re100,ppo,26,10.4,omega,front,0.0181552255153656 +karman_re100,ppo,26,10.4,omega,upper,-0.07001033067703247 +karman_re100,ppo,26,10.4,omega,lower,0.02053675174713135 +karman_re100,ppo,27,10.8,omega,front,0.022169880867004395 +karman_re100,ppo,27,10.8,omega,upper,-0.06261913537979126 +karman_re100,ppo,27,10.8,omega,lower,0.018263428211212157 +karman_re100,ppo,28,11.2,omega,front,0.0207375168800354 +karman_re100,ppo,28,11.2,omega,upper,-0.05293291926383972 +karman_re100,ppo,28,11.2,omega,lower,0.015537383556365967 +karman_re100,ppo,29,11.6,omega,front,0.01512890100479126 +karman_re100,ppo,29,11.6,omega,upper,-0.0435228618979454 +karman_re100,ppo,29,11.6,omega,lower,0.016472384929656983 +karman_re100,ppo,30,12.0,omega,front,0.00989882230758667 +karman_re100,ppo,30,12.0,omega,upper,-0.034329729676246645 +karman_re100,ppo,30,12.0,omega,lower,0.031103661060333253 +karman_re100,ppo,31,12.4,omega,front,0.0064203679561614995 +karman_re100,ppo,31,12.4,omega,upper,-0.0277689528465271 +karman_re100,ppo,31,12.4,omega,lower,0.058144071102142335 +karman_re100,ppo,32,12.8,omega,front,0.0006376978754997253 +karman_re100,ppo,32,12.8,omega,upper,-0.027880293130874634 +karman_re100,ppo,32,12.8,omega,lower,0.07363111734390258 +karman_re100,ppo,33,13.2,omega,front,-0.00675784707069397 +karman_re100,ppo,33,13.2,omega,upper,-0.0281914496421814 +karman_re100,ppo,33,13.2,omega,lower,0.07453007459640502 +karman_re100,ppo,34,13.6,omega,front,-0.01529485583305359 +karman_re100,ppo,34,13.6,omega,upper,-0.021919909715652466 +karman_re100,ppo,34,13.6,omega,lower,0.06826202392578125 +karman_re100,ppo,35,14.0,omega,front,-0.023292765617370606 +karman_re100,ppo,35,14.0,omega,upper,-0.013791027069091797 +karman_re100,ppo,35,14.0,omega,lower,0.05582761883735657 +karman_re100,ppo,36,14.4,omega,front,-0.026229281425476075 +karman_re100,ppo,36,14.4,omega,upper,-0.008985059261322021 +karman_re100,ppo,36,14.4,omega,lower,0.044492065608501434 +karman_re100,ppo,37,14.8,omega,front,-0.02303446054458618 +karman_re100,ppo,37,14.8,omega,upper,-0.012502286434173584 +karman_re100,ppo,37,14.8,omega,lower,0.03914867922663689 +karman_re100,ppo,38,15.2,omega,front,-0.017480090856552125 +karman_re100,ppo,38,15.2,omega,upper,-0.024027565717697145 +karman_re100,ppo,38,15.2,omega,lower,0.04002146620303392 +karman_re100,ppo,39,15.6,omega,front,-0.014496383666992187 +karman_re100,ppo,39,15.6,omega,upper,-0.03809101432561875 +karman_re100,ppo,39,15.6,omega,lower,0.039610465727746486 +karman_re100,ppo,40,16.0,omega,front,-0.01233704924583435 +karman_re100,ppo,40,16.0,omega,upper,-0.05170082211494446 +karman_re100,ppo,40,16.0,omega,lower,0.03528168886899948 +karman_re100,ppo,41,16.4,omega,front,-0.00798954725265503 +karman_re100,ppo,41,16.4,omega,upper,-0.061633703708648686 +karman_re100,ppo,41,16.4,omega,lower,0.030999133586883547 +karman_re100,ppo,42,16.8,omega,front,-0.00240060493350029 +karman_re100,ppo,42,16.8,omega,upper,-0.06654017686843872 +karman_re100,ppo,42,16.8,omega,lower,0.029285746812820434 +karman_re100,ppo,43,17.2,omega,front,0.0033202457427978518 +karman_re100,ppo,43,17.2,omega,upper,-0.06988222360610961 +karman_re100,ppo,43,17.2,omega,lower,0.026599912643432616 +karman_re100,ppo,44,17.6,omega,front,0.009737390279769899 +karman_re100,ppo,44,17.6,omega,upper,-0.0709850549697876 +karman_re100,ppo,44,17.6,omega,lower,0.023665415048599245 +karman_re100,ppo,45,18.0,omega,front,0.01554521918296814 +karman_re100,ppo,45,18.0,omega,upper,-0.06727165460586548 +karman_re100,ppo,45,18.0,omega,lower,0.021673232316970825 +karman_re100,ppo,46,18.4,omega,front,0.017869012355804445 +karman_re100,ppo,46,18.4,omega,upper,-0.05843007445335388 +karman_re100,ppo,46,18.4,omega,lower,0.01973418712615967 +karman_re100,ppo,47,18.8,omega,front,0.015961241722106934 +karman_re100,ppo,47,18.8,omega,upper,-0.047324422597885135 +karman_re100,ppo,47,18.8,omega,lower,0.01989048480987549 +karman_re100,ppo,48,19.2,omega,front,0.013270032405853272 +karman_re100,ppo,48,19.2,omega,upper,-0.036654862463474276 +karman_re100,ppo,48,19.2,omega,lower,0.031162715554237365 +karman_re100,ppo,49,19.6,omega,front,0.010741807222366333 +karman_re100,ppo,49,19.6,omega,upper,-0.02963979721069336 +karman_re100,ppo,49,19.6,omega,lower,0.05362125039100647 +karman_re100,ppo,50,20.0,omega,front,0.0053023087978363035 +karman_re100,ppo,50,20.0,omega,upper,-0.029420616626739504 +karman_re100,ppo,50,20.0,omega,lower,0.0687861704826355 +karman_re100,ppo,51,20.4,omega,front,-0.0016488179564476014 +karman_re100,ppo,51,20.4,omega,upper,-0.030554208159446716 +karman_re100,ppo,51,20.4,omega,lower,0.07312196016311645 +karman_re100,ppo,52,20.8,omega,front,-0.00959925651550293 +karman_re100,ppo,52,20.8,omega,upper,-0.025897531509399413 +karman_re100,ppo,52,20.8,omega,lower,0.0714265513420105 +karman_re100,ppo,53,21.2,omega,front,-0.018517696857452394 +karman_re100,ppo,53,21.2,omega,upper,-0.01846477508544922 +karman_re100,ppo,53,21.2,omega,lower,0.061689624786376955 +karman_re100,ppo,54,21.6,omega,front,-0.024249255657196045 +karman_re100,ppo,54,21.6,omega,upper,-0.012434043884277345 +karman_re100,ppo,54,21.6,omega,lower,0.049602862000465396 +karman_re100,ppo,55,22.0,omega,front,-0.02388695240020752 +karman_re100,ppo,55,22.0,omega,upper,-0.012349350452423096 +karman_re100,ppo,55,22.0,omega,lower,0.041272658407688144 +karman_re100,ppo,56,22.4,omega,front,-0.019152225255966188 +karman_re100,ppo,56,22.4,omega,upper,-0.02167836546897888 +karman_re100,ppo,56,22.4,omega,lower,0.040307256169617174 +karman_re100,ppo,57,22.8,omega,front,-0.015347248315811158 +karman_re100,ppo,57,22.8,omega,upper,-0.03646903455257416 +karman_re100,ppo,57,22.8,omega,lower,0.0397956239618361 +karman_re100,ppo,58,23.2,omega,front,-0.012786961793899536 +karman_re100,ppo,58,23.2,omega,upper,-0.05129367232322693 +karman_re100,ppo,58,23.2,omega,lower,0.03506220668554306 +karman_re100,ppo,59,23.6,omega,front,-0.00843608856201172 +karman_re100,ppo,59,23.6,omega,upper,-0.06177529811859131 +karman_re100,ppo,59,23.6,omega,lower,0.031042051315307618 +karman_re100,ppo,60,24.0,omega,front,-0.0029988259077072146 +karman_re100,ppo,60,24.0,omega,upper,-0.06704545974731445 +karman_re100,ppo,60,24.0,omega,lower,0.029235048294067385 +karman_re100,ppo,61,24.4,omega,front,0.0026874035596847535 +karman_re100,ppo,61,24.4,omega,upper,-0.07065622329711914 +karman_re100,ppo,61,24.4,omega,lower,0.026098059415817262 +karman_re100,ppo,62,24.8,omega,front,0.009033962488174438 +karman_re100,ppo,62,24.8,omega,upper,-0.0717762041091919 +karman_re100,ppo,62,24.8,omega,lower,0.02284359335899353 +karman_re100,ppo,63,25.2,omega,front,0.014574521780014038 +karman_re100,ppo,63,25.2,omega,upper,-0.06785223484039307 +karman_re100,ppo,63,25.2,omega,lower,0.020667643547058107 +karman_re100,ppo,64,25.6,omega,front,0.01663229465484619 +karman_re100,ppo,64,25.6,omega,upper,-0.0588281512260437 +karman_re100,ppo,64,25.6,omega,lower,0.018750250339508057 +karman_re100,ppo,65,26.0,omega,front,0.014459018707275392 +karman_re100,ppo,65,26.0,omega,upper,-0.04738739311695099 +karman_re100,ppo,65,26.0,omega,lower,0.01999058961868286 +karman_re100,ppo,66,26.4,omega,front,0.01147828459739685 +karman_re100,ppo,66,26.4,omega,upper,-0.0366618424654007 +karman_re100,ppo,66,26.4,omega,lower,0.0329550313949585 +karman_re100,ppo,67,26.8,omega,front,0.00872295618057251 +karman_re100,ppo,67,26.8,omega,upper,-0.030228483080863955 +karman_re100,ppo,67,26.8,omega,lower,0.0555590033531189 +karman_re100,ppo,68,27.2,omega,front,0.0032755815982818603 +karman_re100,ppo,68,27.2,omega,upper,-0.029962356090545653 +karman_re100,ppo,68,27.2,omega,lower,0.07000966787338257 +karman_re100,ppo,69,27.6,omega,front,-0.0036306971311569213 +karman_re100,ppo,69,27.6,omega,upper,-0.029988856315612794 +karman_re100,ppo,69,27.6,omega,lower,0.07362940549850464 +karman_re100,ppo,70,28.0,omega,front,-0.011909931898117065 +karman_re100,ppo,70,28.0,omega,upper,-0.02434274196624756 +karman_re100,ppo,70,28.0,omega,lower,0.0702588438987732 +karman_re100,ppo,71,28.4,omega,front,-0.020771307945251467 +karman_re100,ppo,71,28.4,omega,upper,-0.016363401412963868 +karman_re100,ppo,71,28.4,omega,lower,0.059115703105926516 +karman_re100,ppo,72,28.8,omega,front,-0.02570580244064331 +karman_re100,ppo,72,28.8,omega,upper,-0.010121257305145263 +karman_re100,ppo,72,28.8,omega,lower,0.04694035589694977 +karman_re100,ppo,73,29.2,omega,front,-0.024176826477050783 +karman_re100,ppo,73,29.2,omega,upper,-0.011109380722045899 +karman_re100,ppo,73,29.2,omega,lower,0.03963272795081139 +karman_re100,ppo,74,29.6,omega,front,-0.018576222658157348 +karman_re100,ppo,74,29.6,omega,upper,-0.02208949565887451 +karman_re100,ppo,74,29.6,omega,lower,0.039660102613270284 +karman_re100,ppo,75,30.0,omega,front,-0.0148104727268219 +karman_re100,ppo,75,30.0,omega,upper,-0.03733693540096283 +karman_re100,ppo,75,30.0,omega,lower,0.0390796422958374 +karman_re100,ppo,76,30.4,omega,front,-0.012416366338729858 +karman_re100,ppo,76,30.4,omega,upper,-0.0516487717628479 +karman_re100,ppo,76,30.4,omega,lower,0.03482851028442383 +karman_re100,ppo,77,30.8,omega,front,-0.008130918741226196 +karman_re100,ppo,77,30.8,omega,upper,-0.061845176219940186 +karman_re100,ppo,77,30.8,omega,lower,0.030866336822509766 +karman_re100,ppo,78,31.2,omega,front,-0.0027025321125984194 +karman_re100,ppo,78,31.2,omega,upper,-0.06702242374420166 +karman_re100,ppo,78,31.2,omega,lower,0.02901647925376892 +karman_re100,ppo,79,31.6,omega,front,0.0029593947529792785 +karman_re100,ppo,79,31.6,omega,upper,-0.07051636219024658 +karman_re100,ppo,79,31.6,omega,lower,0.026153172254562377 +karman_re100,ppo,80,32.0,omega,front,0.009203410148620606 +karman_re100,ppo,80,32.0,omega,upper,-0.07169696569442749 +karman_re100,ppo,80,32.0,omega,lower,0.023135682344436647 +karman_re100,ppo,81,32.4,omega,front,0.014759181737899781 +karman_re100,ppo,81,32.4,omega,upper,-0.06814130306243897 +karman_re100,ppo,81,32.4,omega,lower,0.021004853248596193 +karman_re100,ppo,82,32.8,omega,front,0.016991208791732788 +karman_re100,ppo,82,32.8,omega,upper,-0.05956093430519104 +karman_re100,ppo,82,32.8,omega,lower,0.018903448581695556 +karman_re100,ppo,83,33.2,omega,front,0.014970920085906983 +karman_re100,ppo,83,33.2,omega,upper,-0.048359782099723816 +karman_re100,ppo,83,33.2,omega,lower,0.01939230442047119 +karman_re100,ppo,84,33.6,omega,front,0.011952872276306153 +karman_re100,ppo,84,33.6,omega,upper,-0.037481465935707094 +karman_re100,ppo,84,33.6,omega,lower,0.031127575635910034 +karman_re100,ppo,85,34.0,omega,front,0.009262397289276122 +karman_re100,ppo,85,34.0,omega,upper,-0.03036674737930298 +karman_re100,ppo,85,34.0,omega,lower,0.05390896797180176 +karman_re100,ppo,86,34.4,omega,front,0.003849674761295319 +karman_re100,ppo,86,34.4,omega,upper,-0.029684522151947022 +karman_re100,ppo,86,34.4,omega,lower,0.0695046067237854 +karman_re100,ppo,87,34.8,omega,front,-0.003130359947681427 +karman_re100,ppo,87,34.8,omega,upper,-0.030195006132125855 +karman_re100,ppo,87,34.8,omega,lower,0.07356409788131714 +karman_re100,ppo,88,35.2,omega,front,-0.011345593929290772 +karman_re100,ppo,88,35.2,omega,upper,-0.02492833137512207 +karman_re100,ppo,88,35.2,omega,lower,0.0706814455986023 +karman_re100,ppo,89,35.6,omega,front,-0.020443966388702394 +karman_re100,ppo,89,35.6,omega,upper,-0.016859304904937745 +karman_re100,ppo,89,35.6,omega,lower,0.05972466349601746 +karman_re100,ppo,90,36.0,omega,front,-0.02584160804748535 +karman_re100,ppo,90,36.0,omega,upper,-0.01034397840499878 +karman_re100,ppo,90,36.0,omega,lower,0.04732918679714203 +karman_re100,ppo,91,36.4,omega,front,-0.024728560447692872 +karman_re100,ppo,91,36.4,omega,upper,-0.010752816200256348 +karman_re100,ppo,91,36.4,omega,lower,0.03939213879406452 +karman_re100,ppo,92,36.8,omega,front,-0.019228626489639283 +karman_re100,ppo,92,36.8,omega,upper,-0.021072450876235962 +karman_re100,ppo,92,36.8,omega,lower,0.039175247922539715 +karman_re100,ppo,93,37.2,omega,front,-0.015342552661895752 +karman_re100,ppo,93,37.2,omega,upper,-0.03582804173231125 +karman_re100,ppo,93,37.2,omega,lower,0.03911928787827492 +karman_re100,ppo,94,37.6,omega,front,-0.012942285537719728 +karman_re100,ppo,94,37.6,omega,upper,-0.0500546133518219 +karman_re100,ppo,94,37.6,omega,lower,0.0353566762804985 +karman_re100,ppo,95,38.0,omega,front,-0.008756018877029419 +karman_re100,ppo,95,38.0,omega,upper,-0.06071287393569946 +karman_re100,ppo,95,38.0,omega,lower,0.031347235441207884 +karman_re100,ppo,96,38.4,omega,front,-0.003362591564655304 +karman_re100,ppo,96,38.4,omega,upper,-0.06640427350997925 +karman_re100,ppo,96,38.4,omega,lower,0.02940311551094055 +karman_re100,ppo,97,38.8,omega,front,0.0022247448563575745 +karman_re100,ppo,97,38.8,omega,upper,-0.07016477346420288 +karman_re100,ppo,97,38.8,omega,lower,0.026641873121261598 +karman_re100,ppo,98,39.2,omega,front,0.008420275449752808 +karman_re100,ppo,98,39.2,omega,upper,-0.0717576026916504 +karman_re100,ppo,98,39.2,omega,lower,0.023502999544143678 +karman_re100,ppo,99,39.6,omega,front,0.014199854135513307 +karman_re100,ppo,99,39.6,omega,upper,-0.0686845088005066 +karman_re100,ppo,99,39.6,omega,lower,0.02124135732650757 +karman_re100,ppo,100,40.0,omega,front,0.016906157732009888 +karman_re100,ppo,100,40.0,omega,upper,-0.06039137601852417 +karman_re100,ppo,100,40.0,omega,lower,0.019115686416625977 +karman_re100,ppo,101,40.4,omega,front,0.015314582586288452 +karman_re100,ppo,101,40.4,omega,upper,-0.04920356512069702 +karman_re100,ppo,101,40.4,omega,lower,0.01916550636291504 +karman_re100,ppo,102,40.8,omega,front,0.012341364622116088 +karman_re100,ppo,102,40.8,omega,upper,-0.038096508383750914 +karman_re100,ppo,102,40.8,omega,lower,0.029795100688934328 +karman_re100,ppo,103,41.2,omega,front,0.009704909324645997 +karman_re100,ppo,103,41.2,omega,upper,-0.030528643131256104 +karman_re100,ppo,103,41.2,omega,lower,0.052277960777282716 +karman_re100,ppo,104,41.6,omega,front,0.004473134577274322 +karman_re100,ppo,104,41.6,omega,upper,-0.02956973195075989 +karman_re100,ppo,104,41.6,omega,lower,0.0686273980140686 +karman_re100,ppo,105,42.0,omega,front,-0.0023947592079639436 +karman_re100,ppo,105,42.0,omega,upper,-0.030390898585319518 +karman_re100,ppo,105,42.0,omega,lower,0.07332756280899048 +karman_re100,ppo,106,42.4,omega,front,-0.010409163236618042 +karman_re100,ppo,106,42.4,omega,upper,-0.025566359758377077 +karman_re100,ppo,106,42.4,omega,lower,0.07125956058502197 +karman_re100,ppo,107,42.8,omega,front,-0.01953961491584778 +karman_re100,ppo,107,42.8,omega,upper,-0.017684755325317384 +karman_re100,ppo,107,42.8,omega,lower,0.06099494457244873 +karman_re100,ppo,108,43.2,omega,front,-0.02541083812713623 +karman_re100,ppo,108,43.2,omega,upper,-0.011033565998077392 +karman_re100,ppo,108,43.2,omega,lower,0.04858214974403381 +karman_re100,ppo,109,43.6,omega,front,-0.024910199642181396 +karman_re100,ppo,109,43.6,omega,upper,-0.010594062805175782 +karman_re100,ppo,109,43.6,omega,lower,0.04012466542422771 +karman_re100,ppo,110,44.0,omega,front,-0.019652849435806276 +karman_re100,ppo,110,44.0,omega,upper,-0.020035189390182496 +karman_re100,ppo,110,44.0,omega,lower,0.03928908057510853 +karman_re100,ppo,111,44.4,omega,front,-0.015511269569396973 +karman_re100,ppo,111,44.4,omega,upper,-0.034598098397254945 +karman_re100,ppo,111,44.4,omega,lower,0.03942383863031864 +karman_re100,ppo,112,44.8,omega,front,-0.013122406005859375 +karman_re100,ppo,112,44.8,omega,upper,-0.049010608792305 +karman_re100,ppo,112,44.8,omega,lower,0.035776342749595645 +karman_re100,ppo,113,45.2,omega,front,-0.009113550186157227 +karman_re100,ppo,113,45.2,omega,upper,-0.06022974252700806 +karman_re100,ppo,113,45.2,omega,lower,0.03149024486541748 +karman_re100,ppo,114,45.6,omega,front,-0.0037528952956199647 +karman_re100,ppo,114,45.6,omega,upper,-0.06622602462768555 +karman_re100,ppo,114,45.6,omega,lower,0.029503619670867922 +karman_re100,ppo,115,46.0,omega,front,0.001812121719121933 +karman_re100,ppo,115,46.0,omega,upper,-0.0700312638282776 +karman_re100,ppo,115,46.0,omega,lower,0.02683645248413086 +karman_re100,ppo,116,46.4,omega,front,0.007994030714035035 +karman_re100,ppo,116,46.4,omega,upper,-0.07183072566986085 +karman_re100,ppo,116,46.4,omega,lower,0.023567352294921875 +karman_re100,ppo,117,46.8,omega,front,0.013897781372070313 +karman_re100,ppo,117,46.8,omega,upper,-0.06908307313919068 +karman_re100,ppo,117,46.8,omega,lower,0.021234594583511353 +karman_re100,ppo,118,47.2,omega,front,0.016861976385116578 +karman_re100,ppo,118,47.2,omega,upper,-0.06105475187301636 +karman_re100,ppo,118,47.2,omega,lower,0.01915564775466919 +karman_re100,ppo,119,47.6,omega,front,0.015434463024139405 +karman_re100,ppo,119,47.6,omega,upper,-0.04989426016807556 +karman_re100,ppo,119,47.6,omega,lower,0.018998496532440186 +karman_re100,ppo,120,48.0,omega,front,0.012369676828384399 +karman_re100,ppo,120,48.0,omega,upper,-0.038743858039379124 +karman_re100,ppo,120,48.0,omega,lower,0.028779070377349853 +karman_re100,ppo,121,48.4,omega,front,0.009798771142959595 +karman_re100,ppo,121,48.4,omega,upper,-0.030890158414840697 +karman_re100,ppo,121,48.4,omega,lower,0.05091057419776917 +karman_re100,ppo,122,48.8,omega,front,0.004788240492343903 +karman_re100,ppo,122,48.8,omega,upper,-0.02959151268005371 +karman_re100,ppo,122,48.8,omega,lower,0.06794798851013184 +karman_re100,ppo,123,49.2,omega,front,-0.0020162087678909303 +karman_re100,ppo,123,49.2,omega,upper,-0.030497128367424013 +karman_re100,ppo,123,49.2,omega,lower,0.07318925619125366 +karman_re100,ppo,124,49.6,omega,front,-0.009930170774459839 +karman_re100,ppo,124,49.6,omega,upper,-0.026017940044403078 +karman_re100,ppo,124,49.6,omega,lower,0.07161433219909669 +karman_re100,ppo,125,50.0,omega,front,-0.01909636616706848 +karman_re100,ppo,125,50.0,omega,upper,-0.018159348964691163 +karman_re100,ppo,125,50.0,omega,lower,0.06177647113800049 +karman_re100,ppo,126,50.4,omega,front,-0.025300977230072023 +karman_re100,ppo,126,50.4,omega,upper,-0.01125049352645874 +karman_re100,ppo,126,50.4,omega,lower,0.04924708962440491 +karman_re100,ppo,127,50.8,omega,front,-0.025216832160949706 +karman_re100,ppo,127,50.8,omega,upper,-0.01014225482940674 +karman_re100,ppo,127,50.8,omega,lower,0.04030149538069964 +karman_re100,ppo,128,51.2,omega,front,-0.0200627064704895 +karman_re100,ppo,128,51.2,omega,upper,-0.019019281864166262 +karman_re100,ppo,128,51.2,omega,lower,0.039071224629879 +karman_re100,ppo,129,51.6,omega,front,-0.01568675637245178 +karman_re100,ppo,129,51.6,omega,upper,-0.033546281456947324 +karman_re100,ppo,129,51.6,omega,lower,0.039466410465538504 +karman_re100,ppo,130,52.0,omega,front,-0.013323360681533813 +karman_re100,ppo,130,52.0,omega,upper,-0.04820663630962372 +karman_re100,ppo,130,52.0,omega,lower,0.035982594192028046 +karman_re100,ppo,131,52.4,omega,front,-0.009475969076156616 +karman_re100,ppo,131,52.4,omega,upper,-0.05975712418556214 +karman_re100,ppo,131,52.4,omega,lower,0.031615293622016906 +karman_re100,ppo,132,52.8,omega,front,-0.004134020805358887 +karman_re100,ppo,132,52.8,omega,upper,-0.06596754312515259 +karman_re100,ppo,132,52.8,omega,lower,0.02959770679473877 +karman_re100,ppo,133,53.2,omega,front,0.0014195679128170013 +karman_re100,ppo,133,53.2,omega,upper,-0.06979011297225952 +karman_re100,ppo,133,53.2,omega,lower,0.02702604651451111 +karman_re100,ppo,134,53.6,omega,front,0.0075597083568573 +karman_re100,ppo,134,53.6,omega,upper,-0.07179163694381714 +karman_re100,ppo,134,53.6,omega,lower,0.02374112367630005 +karman_re100,ppo,135,54.0,omega,front,0.013541476726531982 +karman_re100,ppo,135,54.0,omega,upper,-0.06941689729690552 +karman_re100,ppo,135,54.0,omega,lower,0.021435790061950684 +karman_re100,ppo,136,54.4,omega,front,0.016759670972824096 +karman_re100,ppo,136,54.4,omega,upper,-0.06173954248428345 +karman_re100,ppo,136,54.4,omega,lower,0.019390296936035157 +karman_re100,ppo,137,54.8,omega,front,0.015598055124282837 +karman_re100,ppo,137,54.8,omega,upper,-0.050771560668945316 +karman_re100,ppo,137,54.8,omega,lower,0.018891301155090332 +karman_re100,ppo,138,55.2,omega,front,0.012545255422592163 +karman_re100,ppo,138,55.2,omega,upper,-0.03957933999598026 +karman_re100,ppo,138,55.2,omega,lower,0.027579563856124877 +karman_re100,ppo,139,55.6,omega,front,0.010052155256271362 +karman_re100,ppo,139,55.6,omega,upper,-0.03138318419456482 +karman_re100,ppo,139,55.6,omega,lower,0.04910757124423981 +karman_re100,ppo,140,56.0,omega,front,0.005262887477874756 +karman_re100,ppo,140,56.0,omega,upper,-0.029544851779937743 +karman_re100,ppo,140,56.0,omega,lower,0.06708844661712647 +karman_re100,ppo,141,56.4,omega,front,-0.0015034452080726624 +karman_re100,ppo,141,56.4,omega,upper,-0.0305645489692688 +karman_re100,ppo,141,56.4,omega,lower,0.07307700395584106 +karman_re100,ppo,142,56.8,omega,front,-0.009302170276641845 +karman_re100,ppo,142,56.8,omega,upper,-0.026535601615905763 +karman_re100,ppo,142,56.8,omega,lower,0.07205802440643311 +karman_re100,ppo,143,57.2,omega,front,-0.01851134538650513 +karman_re100,ppo,143,57.2,omega,upper,-0.01871994733810425 +karman_re100,ppo,143,57.2,omega,lower,0.06265997409820556 +karman_re100,ppo,144,57.6,omega,front,-0.0251116681098938 +karman_re100,ppo,144,57.6,omega,upper,-0.011546733379364014 +karman_re100,ppo,144,57.6,omega,lower,0.049980198740959166 +karman_re100,ppo,145,58.0,omega,front,-0.02549882173538208 +karman_re100,ppo,145,58.0,omega,upper,-0.009816198348999024 +karman_re100,ppo,145,58.0,omega,lower,0.04054957147687674 +karman_re100,ppo,146,58.4,omega,front,-0.020509583950042726 +karman_re100,ppo,146,58.4,omega,upper,-0.01811455011367798 +karman_re100,ppo,146,58.4,omega,lower,0.03887440830469131 +karman_re100,ppo,147,58.8,omega,front,-0.015918229818344117 +karman_re100,ppo,147,58.8,omega,upper,-0.032561548948287965 +karman_re100,ppo,147,58.8,omega,lower,0.03949615098536015 +karman_re100,ppo,148,59.2,omega,front,-0.013543814420700073 +karman_re100,ppo,148,59.2,omega,upper,-0.04734993577003479 +karman_re100,ppo,148,59.2,omega,lower,0.0362272173166275 +karman_re100,ppo,149,59.6,omega,front,-0.009838943481445313 +karman_re100,ppo,149,59.6,omega,upper,-0.05906600952148438 +karman_re100,ppo,149,59.6,omega,lower,0.03190205574035645 +karman_re100,ppo,150,60.0,omega,front,-0.004538901448249817 +karman_re100,ppo,150,60.0,omega,upper,-0.06556900501251221 +karman_re100,ppo,150,60.0,omega,lower,0.029754382371902467 +karman_re100,ppo,151,60.4,omega,front,0.000996328741312027 +karman_re100,ppo,151,60.4,omega,upper,-0.06951733112335205 +karman_re100,ppo,151,60.4,omega,lower,0.02726415276527405 +karman_re100,ppo,152,60.8,omega,front,0.0070705687999725346 +karman_re100,ppo,152,60.8,omega,upper,-0.07175714492797852 +karman_re100,ppo,152,60.8,omega,lower,0.0239948046207428 +karman_re100,ppo,153,61.2,omega,front,0.013113577365875245 +karman_re100,ppo,153,61.2,omega,upper,-0.0697801685333252 +karman_re100,ppo,153,61.2,omega,lower,0.021640647649765015 +karman_re100,ppo,154,61.6,omega,front,0.01661271572113037 +karman_re100,ppo,154,61.6,omega,upper,-0.062487051486968995 +karman_re100,ppo,154,61.6,omega,lower,0.01954854965209961 +karman_re100,ppo,155,62.0,omega,front,0.01578134298324585 +karman_re100,ppo,155,62.0,omega,upper,-0.051639630794525146 +karman_re100,ppo,155,62.0,omega,lower,0.018705215454101563 +karman_re100,ppo,156,62.4,omega,front,0.012746800184249878 +karman_re100,ppo,156,62.4,omega,upper,-0.04033644206821919 +karman_re100,ppo,156,62.4,omega,lower,0.026379230022430422 +karman_re100,ppo,157,62.8,omega,front,0.010279415845870972 +karman_re100,ppo,157,62.8,omega,upper,-0.03172657549381256 +karman_re100,ppo,157,62.8,omega,lower,0.04744721233844757 +karman_re100,ppo,158,63.2,omega,front,0.005689471960067749 +karman_re100,ppo,158,63.2,omega,upper,-0.029395374059677126 +karman_re100,ppo,158,63.2,omega,lower,0.06634720563888549 +karman_re100,ppo,159,63.6,omega,front,-0.0010240942239761353 +karman_re100,ppo,159,63.6,omega,upper,-0.03054519772529602 +karman_re100,ppo,159,63.6,omega,lower,0.07299788475036621 +karman_re100,ppo,160,64.0,omega,front,-0.008695052862167358 +karman_re100,ppo,160,64.0,omega,upper,-0.02697850823402405 +karman_re100,ppo,160,64.0,omega,lower,0.07240336418151856 +karman_re100,ppo,161,64.4,omega,front,-0.017890095710754395 +karman_re100,ppo,161,64.4,omega,upper,-0.019241187572479248 +karman_re100,ppo,161,64.4,omega,lower,0.06348312139511109 +karman_re100,ppo,162,64.8,omega,front,-0.024810633659362792 +karman_re100,ppo,162,64.8,omega,upper,-0.011933777332305908 +karman_re100,ppo,162,64.8,omega,lower,0.05079684257507324 +karman_re100,ppo,163,65.2,omega,front,-0.02564169406890869 +karman_re100,ppo,163,65.2,omega,upper,-0.00966974973678589 +karman_re100,ppo,163,65.2,omega,lower,0.041049873530864714 +karman_re100,ppo,164,65.6,omega,front,-0.020853848457336427 +karman_re100,ppo,164,65.6,omega,upper,-0.0173838472366333 +karman_re100,ppo,164,65.6,omega,lower,0.03888497993350029 +karman_re100,ppo,165,66.0,omega,front,-0.016090111732482912 +karman_re100,ppo,165,66.0,omega,upper,-0.031592941284179686 +karman_re100,ppo,165,66.0,omega,lower,0.039625253565609454 +karman_re100,ppo,166,66.4,omega,front,-0.013688640594482422 +karman_re100,ppo,166,66.4,omega,upper,-0.046308361887931825 +karman_re100,ppo,166,66.4,omega,lower,0.036647308170795444 +karman_re100,ppo,167,66.8,omega,front,-0.010126904249191285 +karman_re100,ppo,167,66.8,omega,upper,-0.058355712890625 +karman_re100,ppo,167,66.8,omega,lower,0.032169675827026366 +karman_re100,ppo,168,67.2,omega,front,-0.004879541099071503 +karman_re100,ppo,168,67.2,omega,upper,-0.06523376941680908 +karman_re100,ppo,168,67.2,omega,lower,0.029855808019638063 +karman_re100,ppo,169,67.6,omega,front,0.000629548728466034 +karman_re100,ppo,169,67.6,omega,upper,-0.06928362846374513 +karman_re100,ppo,169,67.6,omega,lower,0.027499064207077026 +karman_re100,ppo,170,68.0,omega,front,0.006654030084609986 +karman_re100,ppo,170,68.0,omega,upper,-0.0717430329322815 +karman_re100,ppo,170,68.0,omega,lower,0.02420949935913086 +karman_re100,ppo,171,68.4,omega,front,0.012790229320526123 +karman_re100,ppo,171,68.4,omega,upper,-0.07012842893600464 +karman_re100,ppo,171,68.4,omega,lower,0.021743252277374267 +karman_re100,ppo,172,68.8,omega,front,0.016572434902191163 +karman_re100,ppo,172,68.8,omega,upper,-0.06314413070678711 +karman_re100,ppo,172,68.8,omega,lower,0.0196124529838562 +karman_re100,ppo,173,69.2,omega,front,0.016028637886047362 +karman_re100,ppo,173,69.2,omega,upper,-0.05241159915924072 +karman_re100,ppo,173,69.2,omega,lower,0.018516058921813964 +karman_re100,ppo,174,69.6,omega,front,0.012968906164169312 +karman_re100,ppo,174,69.6,omega,upper,-0.041014035269618034 +karman_re100,ppo,174,69.6,omega,lower,0.025322686433792114 +karman_re100,ppo,175,70.0,omega,front,0.010482068061828614 +karman_re100,ppo,175,70.0,omega,upper,-0.03205141663551331 +karman_re100,ppo,175,70.0,omega,lower,0.04589549481868744 +karman_re100,ppo,176,70.4,omega,front,0.006094244718551636 +karman_re100,ppo,176,70.4,omega,upper,-0.02931985378265381 +karman_re100,ppo,176,70.4,omega,lower,0.06554505109786987 +karman_re100,ppo,177,70.8,omega,front,-0.0005452031642198563 +karman_re100,ppo,177,70.8,omega,upper,-0.030553885698318482 +karman_re100,ppo,177,70.8,omega,lower,0.07279466152191162 +karman_re100,ppo,178,71.2,omega,front,-0.008111729621887206 +karman_re100,ppo,178,71.2,omega,upper,-0.027404839992523192 +karman_re100,ppo,178,71.2,omega,lower,0.0726473331451416 +karman_re100,ppo,179,71.6,omega,front,-0.017268521785736086 +karman_re100,ppo,179,71.6,omega,upper,-0.019800403118133546 +karman_re100,ppo,179,71.6,omega,lower,0.06429507732391357 +karman_re100,ppo,180,72.0,omega,front,-0.024479880332946777 +karman_re100,ppo,180,72.0,omega,upper,-0.012394444942474365 +karman_re100,ppo,180,72.0,omega,lower,0.05168981075286865 +karman_re100,ppo,181,72.4,omega,front,-0.025767087936401367 +karman_re100,ppo,181,72.4,omega,upper,-0.009613592624664307 +karman_re100,ppo,181,72.4,omega,lower,0.04160302177071572 +karman_re100,ppo,182,72.8,omega,front,-0.021266980171203615 +karman_re100,ppo,182,72.8,omega,upper,-0.01654055118560791 +karman_re100,ppo,182,72.8,omega,lower,0.03887233123183251 +karman_re100,ppo,183,73.2,omega,front,-0.0163223397731781 +karman_re100,ppo,183,73.2,omega,upper,-0.03046919822692871 +karman_re100,ppo,183,73.2,omega,lower,0.039731637611985206 +karman_re100,ppo,184,73.6,omega,front,-0.01384557843208313 +karman_re100,ppo,184,73.6,omega,upper,-0.0452251124382019 +karman_re100,ppo,184,73.6,omega,lower,0.03698661744594574 +karman_re100,ppo,185,74.0,omega,front,-0.010447635650634765 +karman_re100,ppo,185,74.0,omega,upper,-0.05764330387115479 +karman_re100,ppo,185,74.0,omega,lower,0.032430384755134586 +karman_re100,ppo,186,74.4,omega,front,-0.005266741514205932 +karman_re100,ppo,186,74.4,omega,upper,-0.06493624448776245 +karman_re100,ppo,186,74.4,omega,lower,0.02995398998260498 +karman_re100,ppo,187,74.8,omega,front,0.00023235693573951723 +karman_re100,ppo,187,74.8,omega,upper,-0.06905682325363159 +karman_re100,ppo,187,74.8,omega,lower,0.027731603384017946 +karman_re100,ppo,188,75.2,omega,front,0.006222351789474488 +karman_re100,ppo,188,75.2,omega,upper,-0.07167855739593507 +karman_re100,ppo,188,75.2,omega,lower,0.02440005898475647 +karman_re100,ppo,189,75.6,omega,front,0.012440054416656495 +karman_re100,ppo,189,75.6,omega,upper,-0.07040446043014527 +karman_re100,ppo,189,75.6,omega,lower,0.021850714683532717 +karman_re100,ppo,190,76.0,omega,front,0.01648681402206421 +karman_re100,ppo,190,76.0,omega,upper,-0.06376839399337769 +karman_re100,ppo,190,76.0,omega,lower,0.019752154350280764 +karman_re100,ppo,191,76.4,omega,front,0.01622880220413208 +karman_re100,ppo,191,76.4,omega,upper,-0.053190994262695315 +karman_re100,ppo,191,76.4,omega,lower,0.01849571466445923 +karman_re100,ppo,192,76.8,omega,front,0.013184127807617187 +karman_re100,ppo,192,76.8,omega,upper,-0.041762661635875706 +karman_re100,ppo,192,76.8,omega,lower,0.024424611330032348 +karman_re100,ppo,193,77.2,omega,front,0.010690462589263917 +karman_re100,ppo,193,77.2,omega,upper,-0.032552576065063475 +karman_re100,ppo,193,77.2,omega,lower,0.04421839088201523 +karman_re100,ppo,194,77.6,omega,front,0.006531211137771607 +karman_re100,ppo,194,77.6,omega,upper,-0.02934917211532593 +karman_re100,ppo,194,77.6,omega,lower,0.0644809365272522 +karman_re100,ppo,195,78.0,omega,front,-2.3792609572410583e-05 +karman_re100,ppo,195,78.0,omega,upper,-0.0305685555934906 +karman_re100,ppo,195,78.0,omega,lower,0.07250500440597535 +karman_re100,ppo,196,78.4,omega,front,-0.0074791574478149415 +karman_re100,ppo,196,78.4,omega,upper,-0.027892428636550903 +karman_re100,ppo,196,78.4,omega,lower,0.07287867307662964 +karman_re100,ppo,197,78.8,omega,front,-0.016581898927688597 +karman_re100,ppo,197,78.8,omega,upper,-0.020444629192352296 +karman_re100,ppo,197,78.8,omega,lower,0.06520251035690308 +karman_re100,ppo,198,79.2,omega,front,-0.02411848545074463 +karman_re100,ppo,198,79.2,omega,upper,-0.012885921001434326 +karman_re100,ppo,198,79.2,omega,lower,0.052640899419784545 +karman_re100,ppo,199,79.6,omega,front,-0.025931272506713867 +karman_re100,ppo,199,79.6,omega,upper,-0.00949753999710083 +karman_re100,ppo,199,79.6,omega,lower,0.04211762472987175 +karman_re100,ppo,200,80.0,omega,front,-0.021755118370056153 +karman_re100,ppo,200,80.0,omega,upper,-0.015650465488433837 +karman_re100,ppo,200,80.0,omega,lower,0.03876231983304024 +karman_re100,ppo,201,80.4,omega,front,-0.016606779098510743 +karman_re100,ppo,201,80.4,omega,upper,-0.029271055459976197 +karman_re100,ppo,201,80.4,omega,lower,0.039731561653316025 +karman_re100,ppo,202,80.8,omega,front,-0.014039603471755981 +karman_re100,ppo,202,80.8,omega,upper,-0.04420913964509964 +karman_re100,ppo,202,80.8,omega,lower,0.037260458767414094 +karman_re100,ppo,203,81.2,omega,front,-0.010799913406372071 +karman_re100,ppo,203,81.2,omega,upper,-0.056968884468078615 +karman_re100,ppo,203,81.2,omega,lower,0.03268242239952088 +karman_re100,ppo,204,81.6,omega,front,-0.005685595273971558 +karman_re100,ppo,204,81.6,omega,upper,-0.06461647033691406 +karman_re100,ppo,204,81.6,omega,lower,0.03005959212779999 +karman_re100,ppo,205,82.0,omega,front,-0.00018758326768875122 +karman_re100,ppo,205,82.0,omega,upper,-0.06878831386566163 +karman_re100,ppo,205,82.0,omega,lower,0.027936750650405885 +karman_re100,ppo,206,82.4,omega,front,0.005757558345794678 +karman_re100,ppo,206,82.4,omega,upper,-0.07157240390777588 +karman_re100,ppo,206,82.4,omega,lower,0.024604647159576415 +karman_re100,ppo,207,82.8,omega,front,0.012014415264129639 +karman_re100,ppo,207,82.8,omega,upper,-0.07064778566360473 +karman_re100,ppo,207,82.8,omega,lower,0.02201619267463684 +karman_re100,ppo,208,83.2,omega,front,0.016286935806274414 +karman_re100,ppo,208,83.2,omega,upper,-0.06438104629516601 +karman_re100,ppo,208,83.2,omega,lower,0.01996954917907715 +karman_re100,ppo,209,83.6,omega,front,0.016337321996688844 +karman_re100,ppo,209,83.6,omega,upper,-0.05402191162109375 +karman_re100,ppo,209,83.6,omega,lower,0.018531994819641115 +karman_re100,ppo,210,84.0,omega,front,0.013369095325469971 +karman_re100,ppo,210,84.0,omega,upper,-0.04260105967521668 +karman_re100,ppo,210,84.0,omega,lower,0.023582834005355834 +karman_re100,ppo,211,84.4,omega,front,0.010868139266967773 +karman_re100,ppo,211,84.4,omega,upper,-0.03311558604240417 +karman_re100,ppo,211,84.4,omega,lower,0.04243656352162361 +karman_re100,ppo,212,84.8,omega,front,0.00694230318069458 +karman_re100,ppo,212,84.8,omega,upper,-0.029392529726028443 +karman_re100,ppo,212,84.8,omega,lower,0.0633355736732483 +karman_re100,ppo,213,85.2,omega,front,0.0004787899553775787 +karman_re100,ppo,213,85.2,omega,upper,-0.03051949441432953 +karman_re100,ppo,213,85.2,omega,lower,0.07225590229034425 +karman_re100,ppo,214,85.6,omega,front,-0.006889297962188721 +karman_re100,ppo,214,85.6,omega,upper,-0.0283006489276886 +karman_re100,ppo,214,85.6,omega,lower,0.07311631917953491 +karman_re100,ppo,215,86.0,omega,front,-0.015921071767807007 +karman_re100,ppo,215,86.0,omega,upper,-0.021032611131668093 +karman_re100,ppo,215,86.0,omega,lower,0.0660422945022583 +karman_re100,ppo,216,86.4,omega,front,-0.023753561973571778 +karman_re100,ppo,216,86.4,omega,upper,-0.013315258026123046 +karman_re100,ppo,216,86.4,omega,lower,0.05350340127944946 +karman_re100,ppo,217,86.8,omega,front,-0.026052577495574953 +karman_re100,ppo,217,86.8,omega,upper,-0.009416012763977051 +karman_re100,ppo,217,86.8,omega,lower,0.04262064516544342 +karman_re100,ppo,218,87.2,omega,front,-0.022172935009002685 +karman_re100,ppo,218,87.2,omega,upper,-0.014865725040435792 +karman_re100,ppo,218,87.2,omega,lower,0.038690271079540255 +karman_re100,ppo,219,87.6,omega,front,-0.016870236396789553 +karman_re100,ppo,219,87.6,omega,upper,-0.02825793147087097 +karman_re100,ppo,219,87.6,omega,lower,0.03972310200333595 +karman_re100,ppo,220,88.0,omega,front,-0.014207714796066284 +karman_re100,ppo,220,88.0,omega,upper,-0.04327662855386734 +karman_re100,ppo,220,88.0,omega,lower,0.037522561848163605 +karman_re100,ppo,221,88.4,omega,front,-0.011107492446899415 +karman_re100,ppo,221,88.4,omega,upper,-0.05623740077018738 +karman_re100,ppo,221,88.4,omega,lower,0.03296233117580414 +karman_re100,ppo,222,88.8,omega,front,-0.006068542003631592 +karman_re100,ppo,222,88.8,omega,upper,-0.06421044111251831 +karman_re100,ppo,222,88.8,omega,lower,0.030182475447654726 +karman_re100,ppo,223,89.2,omega,front,-0.0005781282484531402 +karman_re100,ppo,223,89.2,omega,upper,-0.06851138830184937 +karman_re100,ppo,223,89.2,omega,lower,0.028129690885543825 +karman_re100,ppo,224,89.6,omega,front,0.005306264162063598 +karman_re100,ppo,224,89.6,omega,upper,-0.07147153615951539 +karman_re100,ppo,224,89.6,omega,lower,0.024842857122421264 +karman_re100,ppo,225,90.0,omega,front,0.011574416160583497 +karman_re100,ppo,225,90.0,omega,upper,-0.07088856935501099 +karman_re100,ppo,225,90.0,omega,lower,0.022201800346374513 +karman_re100,ppo,226,90.4,omega,front,0.01607266902923584 +karman_re100,ppo,226,90.4,omega,upper,-0.06502689838409424 +karman_re100,ppo,226,90.4,omega,lower,0.020122795104980468 +karman_re100,ppo,227,90.8,omega,front,0.016451277732849122 +karman_re100,ppo,227,90.8,omega,upper,-0.054857908487319945 +karman_re100,ppo,227,90.8,omega,lower,0.01850716590881348 +karman_re100,ppo,228,91.2,omega,front,0.013574645519256592 +karman_re100,ppo,228,91.2,omega,upper,-0.043389646410942076 +karman_re100,ppo,228,91.2,omega,lower,0.022742785215377807 +karman_re100,ppo,229,91.6,omega,front,0.01103440523147583 +karman_re100,ppo,229,91.6,omega,upper,-0.03362452208995819 +karman_re100,ppo,229,91.6,omega,lower,0.04077215030789375 +karman_re100,ppo,230,92.0,omega,front,0.007312579154968262 +karman_re100,ppo,230,92.0,omega,upper,-0.029376671314239503 +karman_re100,ppo,230,92.0,omega,lower,0.06230861425399781 +karman_re100,ppo,231,92.4,omega,front,0.0009428815543651581 +karman_re100,ppo,231,92.4,omega,upper,-0.030404300689697267 +karman_re100,ppo,231,92.4,omega,lower,0.07206244707107544 +karman_re100,ppo,232,92.8,omega,front,-0.006347399950027466 +karman_re100,ppo,232,92.8,omega,upper,-0.028657004833221436 +karman_re100,ppo,232,92.8,omega,lower,0.07329292297363281 +karman_re100,ppo,233,93.2,omega,front,-0.015290043354034425 +karman_re100,ppo,233,93.2,omega,upper,-0.021549155712127687 +karman_re100,ppo,233,93.2,omega,lower,0.06676895380020141 +karman_re100,ppo,234,93.6,omega,front,-0.02338286638259888 +karman_re100,ppo,234,93.6,omega,upper,-0.013774259090423584 +karman_re100,ppo,234,93.6,omega,lower,0.0542787230014801 +karman_re100,ppo,235,94.0,omega,front,-0.026096110343933106 +karman_re100,ppo,235,94.0,omega,upper,-0.009437453746795655 +karman_re100,ppo,235,94.0,omega,lower,0.04320893347263336 +karman_re100,ppo,236,94.4,omega,front,-0.02252678632736206 +karman_re100,ppo,236,94.4,omega,upper,-0.014208376407623291 +karman_re100,ppo,236,94.4,omega,lower,0.03873944237828255 +karman_re100,ppo,237,94.8,omega,front,-0.01712008237838745 +karman_re100,ppo,237,94.8,omega,upper,-0.027294508218765258 +karman_re100,ppo,237,94.8,omega,lower,0.03973385728895664 +karman_re100,ppo,238,95.2,omega,front,-0.014346356391906739 +karman_re100,ppo,238,95.2,omega,upper,-0.04223604321479797 +karman_re100,ppo,238,95.2,omega,lower,0.03782691463828087 +karman_re100,ppo,239,95.6,omega,front,-0.011373612880706787 +karman_re100,ppo,239,95.6,omega,upper,-0.055428187847137454 +karman_re100,ppo,239,95.6,omega,lower,0.03328729808330536 +karman_re100,ppo,240,96.0,omega,front,-0.006430068016052246 +karman_re100,ppo,240,96.0,omega,upper,-0.06378908395767212 +karman_re100,ppo,240,96.0,omega,lower,0.03031022012233734 +karman_re100,ppo,241,96.4,omega,front,-0.0009387311339378357 +karman_re100,ppo,241,96.4,omega,upper,-0.06827792882919312 +karman_re100,ppo,241,96.4,omega,lower,0.0282851243019104 +karman_re100,ppo,242,96.8,omega,front,0.004878481924533844 +karman_re100,ppo,242,96.8,omega,upper,-0.07133790016174317 +karman_re100,ppo,242,96.8,omega,lower,0.025094162225723266 +karman_re100,ppo,243,97.2,omega,front,0.01117324948310852 +karman_re100,ppo,243,97.2,omega,upper,-0.0711088752746582 +karman_re100,ppo,243,97.2,omega,lower,0.022348090410232543 +karman_re100,ppo,244,97.6,omega,front,0.015904976129531862 +karman_re100,ppo,244,97.6,omega,upper,-0.06560794115066529 +karman_re100,ppo,244,97.6,omega,lower,0.02023212194442749 +karman_re100,ppo,245,98.0,omega,front,0.016607863903045656 +karman_re100,ppo,245,98.0,omega,upper,-0.055632113218307494 +karman_re100,ppo,245,98.0,omega,lower,0.018484480381011963 +karman_re100,ppo,246,98.4,omega,front,0.013820898532867432 +karman_re100,ppo,246,98.4,omega,upper,-0.044156124293804166 +karman_re100,ppo,246,98.4,omega,lower,0.022002410888671876 +karman_re100,ppo,247,98.8,omega,front,0.011208117008209229 +karman_re100,ppo,247,98.8,omega,upper,-0.034109846353530884 +karman_re100,ppo,247,98.8,omega,lower,0.03919935196638107 +karman_re100,ppo,248,99.2,omega,front,0.007675789594650269 +karman_re100,ppo,248,99.2,omega,upper,-0.02941373109817505 +karman_re100,ppo,248,99.2,omega,lower,0.06116973638534546 +karman_re100,ppo,249,99.6,omega,front,0.0014157360792160035 +karman_re100,ppo,249,99.6,omega,upper,-0.03033099353313446 +karman_re100,ppo,249,99.6,omega,lower,0.07173145294189454 +karman_re100,ppo,250,100.0,omega,front,-0.005793777704238892 +karman_re100,ppo,250,100.0,omega,upper,-0.028984990119934082 +karman_re100,ppo,250,100.0,omega,lower,0.07337913990020752 +karman_re100,ppo,251,100.4,omega,front,-0.014633177518844605 +karman_re100,ppo,251,100.4,omega,upper,-0.022109779119491576 +karman_re100,ppo,251,100.4,omega,lower,0.06747976541519166 +karman_re100,ppo,252,100.8,omega,front,-0.022923552989959718 +karman_re100,ppo,252,100.8,omega,upper,-0.01426107168197632 +karman_re100,ppo,252,100.8,omega,lower,0.05524386882781983 +karman_re100,ppo,253,101.2,omega,front,-0.026106901168823242 +karman_re100,ppo,253,101.2,omega,upper,-0.009540369510650635 +karman_re100,ppo,253,101.2,omega,lower,0.04388367176055908 +karman_re100,ppo,254,101.6,omega,front,-0.022905879020690918 +karman_re100,ppo,254,101.6,omega,upper,-0.013565590381622314 +karman_re100,ppo,254,101.6,omega,lower,0.03882000163197517 +karman_re100,ppo,255,102.0,omega,front,-0.017417070865631105 +karman_re100,ppo,255,102.0,omega,upper,-0.026239520311355593 +karman_re100,ppo,255,102.0,omega,lower,0.03973345253616572 +karman_re100,ppo,256,102.4,omega,front,-0.014481536149978639 +karman_re100,ppo,256,102.4,omega,upper,-0.041232875362038617 +karman_re100,ppo,256,102.4,omega,lower,0.03807025536894798 +karman_re100,ppo,257,102.8,omega,front,-0.011642574071884156 +karman_re100,ppo,257,102.8,omega,upper,-0.054576081037521366 +karman_re100,ppo,257,102.8,omega,lower,0.03362980544567108 +karman_re100,ppo,258,103.2,omega,front,-0.006808929443359375 +karman_re100,ppo,258,103.2,omega,upper,-0.06339831590652466 +karman_re100,ppo,258,103.2,omega,lower,0.030433186888694765 +karman_re100,ppo,259,103.6,omega,front,-0.0013398580253124238 +karman_re100,ppo,259,103.6,omega,upper,-0.06798533916473389 +karman_re100,ppo,259,103.6,omega,lower,0.028543362617492678 +karman_re100,ppo,260,104.0,omega,front,0.00445654422044754 +karman_re100,ppo,260,104.0,omega,upper,-0.0712194538116455 +karman_re100,ppo,260,104.0,omega,lower,0.02531252145767212 +karman_re100,ppo,261,104.4,omega,front,0.010776702165603638 +karman_re100,ppo,261,104.4,omega,upper,-0.07128758907318115 +karman_re100,ppo,261,104.4,omega,lower,0.022474051713943483 +karman_re100,ppo,262,104.8,omega,front,0.015721299648284913 +karman_re100,ppo,262,104.8,omega,upper,-0.0661577296257019 +karman_re100,ppo,262,104.8,omega,lower,0.02036216139793396 +karman_re100,ppo,263,105.2,omega,front,0.01674329161643982 +karman_re100,ppo,263,105.2,omega,upper,-0.0563956093788147 +karman_re100,ppo,263,105.2,omega,lower,0.018541181087493898 +karman_re100,ppo,264,105.6,omega,front,0.014061466455459595 +karman_re100,ppo,264,105.6,omega,upper,-0.04490377277135849 +karman_re100,ppo,264,105.6,omega,lower,0.021407144069671633 +karman_re100,ppo,265,106.0,omega,front,0.011384433507919312 +karman_re100,ppo,265,106.0,omega,upper,-0.03467704832553863 +karman_re100,ppo,265,106.0,omega,lower,0.03760541692376137 +karman_re100,ppo,266,106.4,omega,front,0.008041809797286987 +karman_re100,ppo,266,106.4,omega,upper,-0.029545021057128907 +karman_re100,ppo,266,106.4,omega,lower,0.0598729407787323 +karman_re100,ppo,267,106.8,omega,front,0.0019205166399478913 +karman_re100,ppo,267,106.8,omega,upper,-0.030256187915802004 +karman_re100,ppo,267,106.8,omega,lower,0.07130396842956543 +karman_re100,ppo,268,107.2,omega,front,-0.005218979120254517 +karman_re100,ppo,268,107.2,omega,upper,-0.02932791590690613 +karman_re100,ppo,268,107.2,omega,lower,0.07343427896499634 +karman_re100,ppo,269,107.6,omega,front,-0.01393871307373047 +karman_re100,ppo,269,107.6,omega,upper,-0.022722083330154418 +karman_re100,ppo,269,107.6,omega,lower,0.0682276177406311 +karman_re100,ppo,270,108.0,omega,front,-0.02244410991668701 +karman_re100,ppo,270,108.0,omega,upper,-0.014811820983886718 +karman_re100,ppo,270,108.0,omega,lower,0.05620842099189759 +karman_re100,ppo,271,108.4,omega,front,-0.02610666275024414 +karman_re100,ppo,271,108.4,omega,upper,-0.00967064380645752 +karman_re100,ppo,271,108.4,omega,lower,0.044569011926651005 +karman_re100,ppo,272,108.8,omega,front,-0.023322741985321045 +karman_re100,ppo,272,108.8,omega,upper,-0.012858390808105469 +karman_re100,ppo,272,108.8,omega,lower,0.03886360555887222 +karman_re100,ppo,273,109.2,omega,front,-0.017762160301208498 +karman_re100,ppo,273,109.2,omega,upper,-0.025108442306518555 +karman_re100,ppo,273,109.2,omega,lower,0.03966686375439167 +karman_re100,ppo,274,109.6,omega,front,-0.01465678095817566 +karman_re100,ppo,274,109.6,omega,upper,-0.04012231551110745 +karman_re100,ppo,274,109.6,omega,lower,0.03832128256559372 +karman_re100,ppo,275,110.0,omega,front,-0.011937395334243775 +karman_re100,ppo,275,110.0,omega,upper,-0.05379833102226257 +karman_re100,ppo,275,110.0,omega,lower,0.03390331268310547 +karman_re100,ppo,276,110.4,omega,front,-0.007206153869628906 +karman_re100,ppo,276,110.4,omega,upper,-0.06299515008926392 +karman_re100,ppo,276,110.4,omega,lower,0.030565521717071532 +karman_re100,ppo,277,110.8,omega,front,-0.0017413873970508575 +karman_re100,ppo,277,110.8,omega,upper,-0.06771962642669678 +karman_re100,ppo,277,110.8,omega,lower,0.02869796633720398 +karman_re100,ppo,278,111.2,omega,front,0.004012796878814697 +karman_re100,ppo,278,111.2,omega,upper,-0.0710521650314331 +karman_re100,ppo,278,111.2,omega,lower,0.02553444743156433 +karman_re100,ppo,279,111.6,omega,front,0.010330904722213746 +karman_re100,ppo,279,111.6,omega,upper,-0.07142933130264283 +karman_re100,ppo,279,111.6,omega,lower,0.02263522505760193 +karman_re100,ppo,280,112.0,omega,front,0.015454192161560059 +karman_re100,ppo,280,112.0,omega,upper,-0.06668429613113404 +karman_re100,ppo,280,112.0,omega,lower,0.020545777082443237 +karman_re100,ppo,281,112.4,omega,front,0.016785893440246582 +karman_re100,ppo,281,112.4,omega,upper,-0.05718356966972351 +karman_re100,ppo,281,112.4,omega,lower,0.01866119623184204 +karman_re100,ppo,282,112.8,omega,front,0.014264801740646363 +karman_re100,ppo,282,112.8,omega,upper,-0.04575447142124176 +karman_re100,ppo,282,112.8,omega,lower,0.02087735414505005 +karman_re100,ppo,283,113.2,omega,front,0.011535744667053222 +karman_re100,ppo,283,113.2,omega,upper,-0.035350203812122345 +karman_re100,ppo,283,113.2,omega,lower,0.0359848701953888 +karman_re100,ppo,284,113.6,omega,front,0.008379282951354981 +karman_re100,ppo,284,113.6,omega,upper,-0.02972295880317688 +karman_re100,ppo,284,113.6,omega,lower,0.05847790837287903 +karman_re100,ppo,285,114.0,omega,front,0.0024073684215545656 +karman_re100,ppo,285,114.0,omega,upper,-0.030156776905059815 +karman_re100,ppo,285,114.0,omega,lower,0.0708791470527649 +karman_re100,ppo,286,114.4,omega,front,-0.004679737985134125 +karman_re100,ppo,286,114.4,omega,upper,-0.029595811367034913 +karman_re100,ppo,286,114.4,omega,lower,0.07350568771362305 +karman_re100,ppo,287,114.8,omega,front,-0.013275816440582275 +karman_re100,ppo,287,114.8,omega,upper,-0.023300101757049562 +karman_re100,ppo,287,114.8,omega,lower,0.06891570329666138 +karman_re100,ppo,288,115.2,omega,front,-0.021971235275268557 +karman_re100,ppo,288,115.2,omega,upper,-0.015307672023773193 +karman_re100,ppo,288,115.2,omega,lower,0.05710508227348328 +karman_re100,ppo,289,115.6,omega,front,-0.026092529296875 +karman_re100,ppo,289,115.6,omega,upper,-0.009782524108886718 +karman_re100,ppo,289,115.6,omega,lower,0.045211237072944645 +karman_re100,ppo,290,116.0,omega,front,-0.023700242042541505 +karman_re100,ppo,290,116.0,omega,upper,-0.012271873950958252 +karman_re100,ppo,290,116.0,omega,lower,0.03892756558954716 +karman_re100,ppo,291,116.4,omega,front,-0.018100259304046632 +karman_re100,ppo,291,116.4,omega,upper,-0.024109116792678832 +karman_re100,ppo,291,116.4,omega,lower,0.03955734692513943 +karman_re100,ppo,292,116.8,omega,front,-0.014817854166030884 +karman_re100,ppo,292,116.8,omega,upper,-0.039132790789008144 +karman_re100,ppo,292,116.8,omega,lower,0.03853167727589607 +karman_re100,ppo,293,117.2,omega,front,-0.012202073335647583 +karman_re100,ppo,293,117.2,omega,upper,-0.05296931505203247 +karman_re100,ppo,293,117.2,omega,lower,0.034243988394737246 +karman_re100,ppo,294,117.6,omega,front,-0.007592527866363525 +karman_re100,ppo,294,117.6,omega,upper,-0.06252708435058593 +karman_re100,ppo,294,117.6,omega,lower,0.030702227354049684 +karman_re100,ppo,295,118.0,omega,front,-0.002132185995578766 +karman_re100,ppo,295,118.0,omega,upper,-0.0674141001701355 +karman_re100,ppo,295,118.0,omega,lower,0.0288728666305542 +karman_re100,ppo,296,118.4,omega,front,0.0035774004459381103 +karman_re100,ppo,296,118.4,omega,upper,-0.0708847188949585 +karman_re100,ppo,296,118.4,omega,lower,0.025773431062698363 +karman_re100,ppo,297,118.8,omega,front,0.009865756034851075 +karman_re100,ppo,297,118.8,omega,upper,-0.07155157804489136 +karman_re100,ppo,297,118.8,omega,lower,0.02282975673675537 +karman_re100,ppo,298,119.2,omega,front,0.015157442092895507 +karman_re100,ppo,298,119.2,omega,upper,-0.0672096586227417 +karman_re100,ppo,298,119.2,omega,lower,0.02071184992790222 +karman_re100,ppo,299,119.6,omega,front,0.016818127632141112 +karman_re100,ppo,299,119.6,omega,upper,-0.05798871397972107 +karman_re100,ppo,299,119.6,omega,lower,0.018737726211547852 +karman_re100,ppo,300,120.0,omega,front,0.014485952854156494 +karman_re100,ppo,300,120.0,omega,upper,-0.046586796045303344 +karman_re100,ppo,300,120.0,omega,lower,0.02036114811897278 +karman_re100,ppo,301,120.4,omega,front,0.011692577600479126 +karman_re100,ppo,301,120.4,omega,upper,-0.035963988602161406 +karman_re100,ppo,301,120.4,omega,lower,0.03444283604621887 +karman_re100,ppo,302,120.8,omega,front,0.008691974878311158 +karman_re100,ppo,302,120.8,omega,upper,-0.02986395597457886 +karman_re100,ppo,302,120.8,omega,lower,0.05712346434593201 +karman_re100,ppo,303,121.2,omega,front,0.0028699761629104614 +karman_re100,ppo,303,121.2,omega,upper,-0.03000676691532135 +karman_re100,ppo,303,121.2,omega,lower,0.07048272848129272 +karman_re100,ppo,304,121.6,omega,front,-0.004156668484210968 +karman_re100,ppo,304,121.6,omega,upper,-0.029839770793914797 +karman_re100,ppo,304,121.6,omega,lower,0.07352978467941285 +karman_re100,ppo,305,122.0,omega,front,-0.012632464170455934 +karman_re100,ppo,305,122.0,omega,upper,-0.023816766738891604 +karman_re100,ppo,305,122.0,omega,lower,0.06952416181564332 +karman_re100,ppo,306,122.4,omega,front,-0.02147378444671631 +karman_re100,ppo,306,122.4,omega,upper,-0.015812339782714843 +karman_re100,ppo,306,122.4,omega,lower,0.05797139048576355 +karman_re100,ppo,307,122.8,omega,front,-0.026013875007629396 +karman_re100,ppo,307,122.8,omega,upper,-0.009981951713562013 +karman_re100,ppo,307,122.8,omega,lower,0.04591034114360809 +karman_re100,ppo,308,123.2,omega,front,-0.024018087387084962 +karman_re100,ppo,308,123.2,omega,upper,-0.01177996873855591 +karman_re100,ppo,308,123.2,omega,lower,0.03911627918481827 +karman_re100,ppo,309,123.6,omega,front,-0.01842569947242737 +karman_re100,ppo,309,123.6,omega,upper,-0.023157134056091308 +karman_re100,ppo,309,123.6,omega,lower,0.03950382508337498 +karman_re100,ppo,310,124.0,omega,front,-0.014957798719406128 +karman_re100,ppo,310,124.0,omega,upper,-0.03810015439987183 +karman_re100,ppo,310,124.0,omega,lower,0.038763586878776554 +karman_re100,ppo,311,124.4,omega,front,-0.012425954341888428 +karman_re100,ppo,311,124.4,omega,upper,-0.05207086563110352 +karman_re100,ppo,311,124.4,omega,lower,0.03459139049053192 +karman_re100,ppo,312,124.8,omega,front,-0.007948789596557617 +karman_re100,ppo,312,124.8,omega,upper,-0.062021234035491944 +karman_re100,ppo,312,124.8,omega,lower,0.030863240957260132 +karman_re100,ppo,313,125.2,omega,front,-0.0025029796361923217 +karman_re100,ppo,313,125.2,omega,upper,-0.06713342428207397 +karman_re100,ppo,313,125.2,omega,lower,0.029034684896469116 +karman_re100,ppo,314,125.6,omega,front,0.003162364661693573 +karman_re100,ppo,314,125.6,omega,upper,-0.0706896185874939 +karman_re100,ppo,314,125.6,omega,lower,0.02603554964065552 +karman_re100,ppo,315,126.0,omega,front,0.009437298774719239 +karman_re100,ppo,315,126.0,omega,upper,-0.07165913581848145 +karman_re100,ppo,315,126.0,omega,lower,0.023008469343185425 +karman_re100,ppo,316,126.4,omega,front,0.014902969598770141 +karman_re100,ppo,316,126.4,omega,upper,-0.06770965337753296 +karman_re100,ppo,316,126.4,omega,lower,0.020836074352264405 +karman_re100,ppo,317,126.8,omega,front,0.016886534690856932 +karman_re100,ppo,317,126.8,omega,upper,-0.05874108076095581 +karman_re100,ppo,317,126.8,omega,lower,0.01880607843399048 +karman_re100,ppo,318,127.2,omega,front,0.014741941690444946 +karman_re100,ppo,318,127.2,omega,upper,-0.04737401366233826 +karman_re100,ppo,318,127.2,omega,lower,0.01990088939666748 +karman_re100,ppo,319,127.6,omega,front,0.011866393089294434 +karman_re100,ppo,319,127.6,omega,upper,-0.03658097773790359 +karman_re100,ppo,319,127.6,omega,lower,0.03296705901622772 +karman_re100,ppo,320,128.0,omega,front,0.008995018005371095 +karman_re100,ppo,320,128.0,omega,upper,-0.030029279589653016 +karman_re100,ppo,320,128.0,omega,lower,0.05573090553283692 +karman_re100,ppo,321,128.4,omega,front,0.0033402764797210694 +karman_re100,ppo,321,128.4,omega,upper,-0.029879962205886842 +karman_re100,ppo,321,128.4,omega,lower,0.06998785257339478 +karman_re100,ppo,322,128.8,omega,front,-0.003635491728782654 +karman_re100,ppo,322,128.8,omega,upper,-0.030053242444992065 +karman_re100,ppo,322,128.8,omega,lower,0.07349253892898559 +karman_re100,ppo,323,129.2,omega,front,-0.011971592903137207 +karman_re100,ppo,323,129.2,omega,upper,-0.024356473684310914 +karman_re100,ppo,323,129.2,omega,lower,0.07009669303894044 +karman_re100,ppo,324,129.6,omega,front,-0.02093135118484497 +karman_re100,ppo,324,129.6,omega,upper,-0.01636565685272217 +karman_re100,ppo,324,129.6,omega,lower,0.05889066100120544 +karman_re100,ppo,325,130.0,omega,front,-0.025884528160095215 +karman_re100,ppo,325,130.0,omega,upper,-0.010251350402832031 +karman_re100,ppo,325,130.0,omega,lower,0.046696537137031556 +karman_re100,ppo,326,130.4,omega,front,-0.02433644771575928 +karman_re100,ppo,326,130.4,omega,upper,-0.011334121227264404 +karman_re100,ppo,326,130.4,omega,lower,0.03935832254588604 +karman_re100,ppo,327,130.8,omega,front,-0.018794764280319214 +karman_re100,ppo,327,130.8,omega,upper,-0.022146425247192382 +karman_re100,ppo,327,130.8,omega,lower,0.039432599321007726 +karman_re100,ppo,328,131.2,omega,front,-0.015119307041168213 +karman_re100,ppo,328,131.2,omega,upper,-0.0369937738776207 +karman_re100,ppo,328,131.2,omega,lower,0.038991877287626264 +karman_re100,ppo,329,131.6,omega,front,-0.012657158374786377 +karman_re100,ppo,329,131.6,omega,upper,-0.05109901070594788 +karman_re100,ppo,329,131.6,omega,lower,0.03497571289539337 +karman_re100,ppo,330,132.0,omega,front,-0.008318140506744384 +karman_re100,ppo,330,132.0,omega,upper,-0.06151564121246338 +karman_re100,ppo,330,132.0,omega,lower,0.031014979481697083 +karman_re100,ppo,331,132.4,omega,front,-0.002888508141040802 +karman_re100,ppo,331,132.4,omega,upper,-0.06686740159988404 +karman_re100,ppo,331,132.4,omega,lower,0.029174820184707642 +karman_re100,ppo,332,132.8,omega,front,0.0027392712235450745 +karman_re100,ppo,332,132.8,omega,upper,-0.07049148321151734 +karman_re100,ppo,332,132.8,omega,lower,0.02629243493080139 +karman_re100,ppo,333,133.2,omega,front,0.009005568027496339 +karman_re100,ppo,333,133.2,omega,upper,-0.07174445867538452 +karman_re100,ppo,333,133.2,omega,lower,0.0231598961353302 +karman_re100,ppo,334,133.6,omega,front,0.014627676010131836 +karman_re100,ppo,334,133.6,omega,upper,-0.068166823387146 +karman_re100,ppo,334,133.6,omega,lower,0.020965101718902587 +karman_re100,ppo,335,134.0,omega,front,0.016927725076675417 +karman_re100,ppo,335,134.0,omega,upper,-0.05949983477592469 +karman_re100,ppo,335,134.0,omega,lower,0.018916165828704836 +karman_re100,ppo,336,134.4,omega,front,0.014976990222930909 +karman_re100,ppo,336,134.4,omega,upper,-0.04816111445426941 +karman_re100,ppo,336,134.4,omega,lower,0.01956934690475464 +karman_re100,ppo,337,134.8,omega,front,0.012040693759918213 +karman_re100,ppo,337,134.8,omega,upper,-0.037274062037467956 +karman_re100,ppo,337,134.8,omega,lower,0.03154023349285126 +karman_re100,ppo,338,135.2,omega,front,0.009285025596618653 +karman_re100,ppo,338,135.2,omega,upper,-0.03028391480445862 +karman_re100,ppo,338,135.2,omega,lower,0.054213346242904664 +karman_re100,ppo,339,135.6,omega,front,0.003819263279438019 +karman_re100,ppo,339,135.6,omega,upper,-0.029777581691741942 +karman_re100,ppo,339,135.6,omega,lower,0.06938224077224732 +karman_re100,ppo,340,136.0,omega,front,-0.003105100691318512 +karman_re100,ppo,340,136.0,omega,upper,-0.03024701237678528 +karman_re100,ppo,340,136.0,omega,lower,0.07341853380203248 +karman_re100,ppo,341,136.4,omega,front,-0.011305359601974487 +karman_re100,ppo,341,136.4,omega,upper,-0.024919408559799194 +karman_re100,ppo,341,136.4,omega,lower,0.07064774036407472 +karman_re100,ppo,342,136.8,omega,front,-0.02037264108657837 +karman_re100,ppo,342,136.8,omega,upper,-0.016929454803466797 +karman_re100,ppo,342,136.8,omega,lower,0.059834553003311156 +karman_re100,ppo,343,137.2,omega,front,-0.025748958587646486 +karman_re100,ppo,343,137.2,omega,upper,-0.010530023574829102 +karman_re100,ppo,343,137.2,omega,lower,0.047484067082405094 +karman_re100,ppo,344,137.6,omega,front,-0.024648616313934328 +karman_re100,ppo,344,137.6,omega,upper,-0.010878503322601318 +karman_re100,ppo,344,137.6,omega,lower,0.039606829658150676 +karman_re100,ppo,345,138.0,omega,front,-0.019197102785110474 +karman_re100,ppo,345,138.0,omega,upper,-0.021114529371261598 +karman_re100,ppo,345,138.0,omega,lower,0.03930558457970619 +karman_re100,ppo,346,138.4,omega,front,-0.015298832654953003 +karman_re100,ppo,346,138.4,omega,upper,-0.03591029763221741 +karman_re100,ppo,346,138.4,omega,lower,0.03915075190365314 +karman_re100,ppo,347,138.8,omega,front,-0.012890048027038574 +karman_re100,ppo,347,138.8,omega,upper,-0.050252074003219606 +karman_re100,ppo,347,138.8,omega,lower,0.035257275700569156 +karman_re100,ppo,348,139.2,omega,front,-0.008697750568389893 +karman_re100,ppo,348,139.2,omega,upper,-0.060982885360717776 +karman_re100,ppo,348,139.2,omega,lower,0.031195756793022156 +karman_re100,ppo,349,139.6,omega,front,-0.003289913833141327 +karman_re100,ppo,349,139.6,omega,upper,-0.06658605575561524 +karman_re100,ppo,349,139.6,omega,lower,0.02932596802711487 +karman_re100,ppo,350,140.0,omega,front,0.0023252689838409424 +karman_re100,ppo,350,140.0,omega,upper,-0.0702826189994812 +karman_re100,ppo,350,140.0,omega,lower,0.026493494510650636 +karman_re100,ppo,351,140.4,omega,front,0.00854585886001587 +karman_re100,ppo,351,140.4,omega,upper,-0.0717773699760437 +karman_re100,ppo,351,140.4,omega,lower,0.023343636989593505 +karman_re100,ppo,352,140.8,omega,front,0.01429087996482849 +karman_re100,ppo,352,140.8,omega,upper,-0.06858052968978882 +karman_re100,ppo,352,140.8,omega,lower,0.021124377250671386 +karman_re100,ppo,353,141.2,omega,front,0.016883305311203002 +karman_re100,ppo,353,141.2,omega,upper,-0.0602089524269104 +karman_re100,ppo,353,141.2,omega,lower,0.019076571464538575 +karman_re100,ppo,354,141.6,omega,front,0.01517528533935547 +karman_re100,ppo,354,141.6,omega,upper,-0.0489931184053421 +karman_re100,ppo,354,141.6,omega,lower,0.019307048320770265 +karman_re100,ppo,355,142.0,omega,front,0.01219268560409546 +karman_re100,ppo,355,142.0,omega,upper,-0.037995183765888216 +karman_re100,ppo,355,142.0,omega,lower,0.03022441327571869 +karman_re100,ppo,356,142.4,omega,front,0.009550906419754028 +karman_re100,ppo,356,142.4,omega,upper,-0.03060135126113892 +karman_re100,ppo,356,142.4,omega,lower,0.05263664841651917 +karman_re100,ppo,357,142.8,omega,front,0.00428559809923172 +karman_re100,ppo,357,142.8,omega,upper,-0.029676953554153444 +karman_re100,ppo,357,142.8,omega,lower,0.0687320351600647 +karman_re100,ppo,358,143.2,omega,front,-0.002592681050300598 +karman_re100,ppo,358,143.2,omega,upper,-0.03036610722541809 +karman_re100,ppo,358,143.2,omega,lower,0.07335878133773804 +karman_re100,ppo,359,143.6,omega,front,-0.010655593872070313 +karman_re100,ppo,359,143.6,omega,upper,-0.02545300364494324 +karman_re100,ppo,359,143.6,omega,lower,0.07114706516265869 +karman_re100,ppo,360,144.0,omega,front,-0.019786969423294068 +karman_re100,ppo,360,144.0,omega,upper,-0.01749948263168335 +karman_re100,ppo,360,144.0,omega,lower,0.060740010738372804 +karman_re100,ppo,361,144.4,omega,front,-0.025577492713928222 +karman_re100,ppo,361,144.4,omega,upper,-0.010820515155792236 +karman_re100,ppo,361,144.4,omega,lower,0.048253586292266844 +karman_re100,ppo,362,144.8,omega,front,-0.024946656227111817 +karman_re100,ppo,362,144.8,omega,upper,-0.010485739707946777 +karman_re100,ppo,362,144.8,omega,lower,0.0398546926304698 +karman_re100,ppo,363,145.2,omega,front,-0.0195944344997406 +karman_re100,ppo,363,145.2,omega,upper,-0.02015966296195984 +karman_re100,ppo,363,145.2,omega,lower,0.03918468683958053 +karman_re100,ppo,364,145.6,omega,front,-0.015470532178878784 +karman_re100,ppo,364,145.6,omega,upper,-0.034929402470588684 +karman_re100,ppo,364,145.6,omega,lower,0.03926424950361252 +karman_re100,ppo,365,146.0,omega,front,-0.013103404045104981 +karman_re100,ppo,365,146.0,omega,upper,-0.04934137582778931 +karman_re100,ppo,365,146.0,omega,lower,0.03558702409267426 +karman_re100,ppo,366,146.4,omega,front,-0.009059195518493653 +karman_re100,ppo,366,146.4,omega,upper,-0.060410420894622806 +karman_re100,ppo,366,146.4,omega,lower,0.031418569684028626 +karman_re100,ppo,367,146.8,omega,front,-0.0036727344989776613 +karman_re100,ppo,367,146.8,omega,upper,-0.06627179622650146 +karman_re100,ppo,367,146.8,omega,lower,0.02945512056350708 +karman_re100,ppo,368,147.2,omega,front,0.0019051524996757509 +karman_re100,ppo,368,147.2,omega,upper,-0.07004918098449707 +karman_re100,ppo,368,147.2,omega,lower,0.026752239465713503 +karman_re100,ppo,369,147.6,omega,front,0.008087942600250244 +karman_re100,ppo,369,147.6,omega,upper,-0.07180113554000854 +karman_re100,ppo,369,147.6,omega,lower,0.02354374051094055 +karman_re100,ppo,370,148.0,omega,front,0.013941391706466674 +karman_re100,ppo,370,148.0,omega,upper,-0.06900094032287597 +karman_re100,ppo,370,148.0,omega,lower,0.021286416053771972 +karman_re100,ppo,371,148.4,omega,front,0.016829812526702882 +karman_re100,ppo,371,148.4,omega,upper,-0.060942549705505375 +karman_re100,ppo,371,148.4,omega,lower,0.01920799016952515 +karman_re100,ppo,372,148.8,omega,front,0.015389885902404785 +karman_re100,ppo,372,148.8,omega,upper,-0.04983532786369324 +karman_re100,ppo,372,148.8,omega,lower,0.01903263330459595 +karman_re100,ppo,373,149.2,omega,front,0.012368556261062622 +karman_re100,ppo,373,149.2,omega,upper,-0.038699294030666354 +karman_re100,ppo,373,149.2,omega,lower,0.02891158938407898 +karman_re100,ppo,374,149.6,omega,front,0.009795925617218018 +karman_re100,ppo,374,149.6,omega,upper,-0.03088780403137207 +karman_re100,ppo,374,149.6,omega,lower,0.051040849685668944 +karman_re100,ppo,375,150.0,omega,front,0.004733150899410248 +karman_re100,ppo,375,150.0,omega,upper,-0.029565036296844482 +karman_re100,ppo,375,150.0,omega,lower,0.06807927370071411 +karman_re100,ppo,376,150.4,omega,front,-0.0021013426780700684 +karman_re100,ppo,376,150.4,omega,upper,-0.030459035634994507 +karman_re100,ppo,376,150.4,omega,lower,0.07327974796295166 +karman_re100,ppo,377,150.8,omega,front,-0.010037702322006226 +karman_re100,ppo,377,150.8,omega,upper,-0.025930827856063845 +karman_re100,ppo,377,150.8,omega,lower,0.07159677028656006 +karman_re100,ppo,378,151.2,omega,front,-0.019213846921920776 +karman_re100,ppo,378,151.2,omega,upper,-0.018029527664184572 +karman_re100,ppo,378,151.2,omega,lower,0.06160377025604248 +karman_re100,ppo,379,151.6,omega,front,-0.025368289947509767 +karman_re100,ppo,379,151.6,omega,upper,-0.011143028736114502 +karman_re100,ppo,379,151.6,omega,lower,0.04903577625751496 +karman_re100,ppo,380,152.0,omega,front,-0.02517047882080078 +karman_re100,ppo,380,152.0,omega,upper,-0.010165104866027832 +karman_re100,ppo,380,152.0,omega,lower,0.040235443748533724 +karman_re100,ppo,381,152.4,omega,front,-0.01997473120689392 +karman_re100,ppo,381,152.4,omega,upper,-0.019284670352935792 +karman_re100,ppo,381,152.4,omega,lower,0.03909688644111157 +karman_re100,ppo,382,152.8,omega,front,-0.01564845323562622 +karman_re100,ppo,382,152.8,omega,upper,-0.033868380188941956 +karman_re100,ppo,382,152.8,omega,lower,0.039415744058787824 +karman_re100,ppo,383,153.2,omega,front,-0.013286970853805542 +karman_re100,ppo,383,153.2,omega,upper,-0.04841417610645294 +karman_re100,ppo,383,153.2,omega,lower,0.035900244116783143 +karman_re100,ppo,384,153.6,omega,front,-0.009390459060668946 +karman_re100,ppo,384,153.6,omega,upper,-0.05978768944740295 +karman_re100,ppo,384,153.6,omega,lower,0.031629212498664856 +karman_re100,ppo,385,154.0,omega,front,-0.004045230448246002 +karman_re100,ppo,385,154.0,omega,upper,-0.06595669746398926 +karman_re100,ppo,385,154.0,omega,lower,0.029581685066223145 +karman_re100,ppo,386,154.4,omega,front,0.0015077577531337739 +karman_re100,ppo,386,154.4,omega,upper,-0.06982421159744263 +karman_re100,ppo,386,154.4,omega,lower,0.026991342306137086 +karman_re100,ppo,387,154.8,omega,front,0.007646732330322266 +karman_re100,ppo,387,154.8,omega,upper,-0.07181296586990357 +karman_re100,ppo,387,154.8,omega,lower,0.023741240501403808 +karman_re100,ppo,388,155.2,omega,front,0.01360584855079651 +karman_re100,ppo,388,155.2,omega,upper,-0.0693867564201355 +karman_re100,ppo,388,155.2,omega,lower,0.021420395374298098 +karman_re100,ppo,389,155.6,omega,front,0.01679260015487671 +karman_re100,ppo,389,155.6,omega,upper,-0.061658191680908206 +karman_re100,ppo,389,155.6,omega,lower,0.019314465522766115 +karman_re100,ppo,390,156.0,omega,front,0.015613526105880737 +karman_re100,ppo,390,156.0,omega,upper,-0.050631309747695925 +karman_re100,ppo,390,156.0,omega,lower,0.018817169666290285 +karman_re100,ppo,391,156.4,omega,front,0.012552915811538697 +karman_re100,ppo,391,156.4,omega,upper,-0.03939923033118248 +karman_re100,ppo,391,156.4,omega,lower,0.027708109617233277 +karman_re100,ppo,392,156.8,omega,front,0.010029799938201904 +karman_re100,ppo,392,156.8,omega,upper,-0.03122128188610077 +karman_re100,ppo,392,156.8,omega,lower,0.04946582853794098 +karman_re100,ppo,393,157.2,omega,front,0.005172897577285767 +karman_re100,ppo,393,157.2,omega,upper,-0.0294813346862793 +karman_re100,ppo,393,157.2,omega,lower,0.06734065055847169 +karman_re100,ppo,394,157.6,omega,front,-0.0016070929169654847 +karman_re100,ppo,394,157.6,omega,upper,-0.030533844232559205 +karman_re100,ppo,394,157.6,omega,lower,0.07313746452331543 +karman_re100,ppo,395,158.0,omega,front,-0.009420560598373413 +karman_re100,ppo,395,158.0,omega,upper,-0.026417958736419677 +karman_re100,ppo,395,158.0,omega,lower,0.07197072744369507 +karman_re100,ppo,396,158.4,omega,front,-0.018613635301589965 +karman_re100,ppo,396,158.4,omega,upper,-0.018597452640533446 +karman_re100,ppo,396,158.4,omega,lower,0.0624721908569336 +karman_re100,ppo,397,158.8,omega,front,-0.0251248574256897 +karman_re100,ppo,397,158.8,omega,upper,-0.011516625881195069 +karman_re100,ppo,397,158.8,omega,lower,0.049867517352104186 +karman_re100,ppo,398,159.2,omega,front,-0.025405406951904297 +karman_re100,ppo,398,159.2,omega,upper,-0.009947769641876221 +karman_re100,ppo,398,159.2,omega,lower,0.04059355292469263 +karman_re100,ppo,399,159.6,omega,front,-0.020390336513519288 +karman_re100,ppo,399,159.6,omega,upper,-0.0183597731590271 +karman_re100,ppo,399,159.6,omega,lower,0.03900544315576553 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_manifest.json new file mode 100644 index 0000000..6ab556d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re100", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re100__ppo__f-ppo__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_wide.csv new file mode 100644 index 0000000..8a5e355 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re100,ppo,0,0.0,1.1221808195114136,-0.2775668501853943,0.968325138092041,-0.3421003222465515,0.9555230736732483,-0.25958603620529175,0.0010133897885680199,-0.0025333818048238754,0.004949456080794334,0.003977640997618437,-0.006362652871757746,-0.0020049542654305696,-1.8737868070602417,-2.482828140258789,6.098980903625488,-0.018737868070602418,-0.02482828140258789,0.06098980903625489 +karman_re100,ppo,1,0.4,1.1609275341033936,-0.24108582735061646,0.9626631140708923,-0.26212456822395325,0.9334735870361328,-0.20085260272026062,0.0024022359866648912,-0.0010043149814009666,0.003823057049885392,0.004193997010588646,-0.006294926628470421,-0.0014125179732218385,-1.729433298110962,-2.868237614631653,5.6139174699783325,-0.01729433298110962,-0.028682376146316527,0.05613917469978333 +karman_re100,ppo,2,0.8,1.1884028911590576,-0.1757454127073288,0.9505091309547424,-0.13433174788951874,0.9224147200584412,-0.11043497174978256,0.0022598751820623875,0.0001487864792579785,0.00307091255672276,0.0043860082514584064,-0.006512066349387169,-0.0012044737813994288,-1.5619988441467285,-2.7799142599105835,5.391022086143494,-0.015619988441467286,-0.027799142599105837,0.05391022086143494 +karman_re100,ppo,3,1.2,1.1859668493270874,-0.06433267891407013,0.946820855140686,0.01486993208527565,0.9188573360443115,0.00939389131963253,0.0011313463328406215,0.0015001952415332198,0.0021215947344899178,0.004337790887802839,-0.005689417943358421,-0.002711063250899315,-1.5578820705413818,-2.9932525157928467,5.252384781837463,-0.01557882070541382,-0.029932525157928467,0.05252384781837464 +karman_re100,ppo,4,1.6,1.1489367485046387,0.06938014924526215,0.9506331086158752,0.1493581384420395,0.9265084862709045,0.12841880321502686,-0.0001098912616726011,0.0024437331594526768,0.0009915833361446857,0.004259872250258923,-0.003169682575389743,-0.0044403476640582085,-1.2230440378189087,-4.264320880174637,4.990058481693268,-0.012230440378189086,-0.04264320880174637,0.04990058481693268 +karman_re100,ppo,5,2.0,1.109039068222046,0.17078302800655365,0.9509088397026062,0.2662227749824524,0.9540919661521912,0.20802131295204163,-0.0010892808204516768,0.002865960355848074,-0.0002356884942855686,0.003908189944922924,-2.3474794943467714e-06,-0.004939316306263208,-0.8218497037887573,-5.733013868331909,4.1597971469163895,-0.008218497037887573,-0.05733013868331909,0.04159797146916389 +karman_re100,ppo,6,2.4,1.0750293731689453,0.2354692667722702,0.9537332057952881,0.3441384434700012,0.994773268699646,0.25924092531204224,-0.00144680414814502,0.0032710095401853323,-0.0017771839629858732,0.0030481729190796614,0.0025425245985388756,-0.004522297065705061,-0.4452444016933441,-6.630976676940918,3.3651957511901855,-0.0044524440169334415,-0.06630976676940918,0.03365195751190186 +karman_re100,ppo,7,2.8,1.0345432758331299,0.27524346113204956,0.9600772261619568,0.3805633783340454,1.0384167432785034,0.293244868516922,-0.001028590020723641,0.003490404225885868,-0.0038090709131211042,0.0020857094787061214,0.003955814056098461,-0.004090648144483566,0.06206728518009186,-7.081318378448486,2.761962890625,0.0006206728518009186,-0.07081318378448487,0.02761962890625 +karman_re100,ppo,8,3.2,0.9935752153396606,0.2844935357570648,0.9668765068054199,0.3803204596042633,1.0812270641326904,0.2973848283290863,0.00027407563175074756,0.0032818967010825872,-0.0059622349217534065,0.0017279136227443814,0.004245304968208075,-0.004051719326525927,0.7052189111709595,-7.09079384803772,2.279664993286133,0.007052189111709595,-0.0709079384803772,0.02279664993286133 +karman_re100,ppo,9,3.6,0.9600321054458618,0.2600315809249878,0.9708088040351868,0.34135615825653076,1.1218003034591675,0.27625277638435364,0.002029640367254615,0.00258745439350605,-0.007520162966102362,0.0021698640193790197,0.0036726633552461863,-0.004237978253513575,1.2782608270645142,-6.508885145187378,1.9596397876739502,0.012782608270645143,-0.06508885145187378,0.019596397876739502 +karman_re100,ppo,10,4.0,0.9369014501571655,0.201909139752388,0.9642369747161865,0.2618521749973297,1.1592795848846436,0.24003353714942932,0.00303793977946043,0.0014502066187560558,-0.007615750655531883,0.003443238092586398,0.002650768728926778,-0.004274038597941399,1.514381766319275,-5.440666913986206,1.7252912521362307,0.01514381766319275,-0.054406669139862064,0.017252912521362306 +karman_re100,ppo,11,4.4,0.9253370761871338,0.1127798855304718,0.9515500068664551,0.13563261926174164,1.1867728233337402,0.17667239904403687,0.0025532469153404236,6.138847675174475e-05,-0.005730738863348961,0.0051795970648527145,0.0016330694779753685,-0.0042001125402748585,1.2995918989181519,-4.134982258081436,1.9775087833404539,0.012995918989181518,-0.04134982258081436,0.01977508783340454 +karman_re100,ppo,12,4.8,0.9210066795349121,-0.006155074108392,0.946747362613678,-0.012435534037649632,1.1847747564315796,0.06757558137178421,0.0011848404537886381,-0.0010909660486504436,-0.002543708775192499,0.006370403338223696,0.000650915433652699,-0.004226988647133112,0.9222028255462645,-3.0017454028129578,3.5535081923007965,0.009222028255462646,-0.030017454028129577,0.035535081923007965 +karman_re100,ppo,13,5.2,0.9293668866157532,-0.12488702684640884,0.950701117515564,-0.14694924652576447,1.1493622064590454,-0.06492132693529129,-3.107589509454556e-05,-0.0018285191617906094,0.0005044298013672233,0.006534333806484938,-0.0006081148749217391,-0.0042866989970207214,0.5472910404205322,-2.529425621032715,5.8025078773498535,0.005472910404205322,-0.02529425621032715,0.05802507877349854 +karman_re100,ppo,14,5.6,0.9593513607978821,-0.20445556938648224,0.952504575252533,-0.2645595073699951,1.1113508939743042,-0.16576999425888062,-0.00047015768359415233,-0.002649088157340884,0.00260331341996789,0.006303089205175638,-0.002119458047673106,-0.003946977201849222,0.05241382122039795,-2.654444456100464,7.085418939590454,0.0005241382122039795,-0.02654444456100464,0.07085418939590454 +karman_re100,ppo,15,6.0,1.0001647472381592,-0.25564083456993103,0.9543347358703613,-0.34297576546669006,1.0756381750106812,-0.22929729521274567,-7.600076787639409e-05,-0.0034496327862143517,0.003845531726256013,0.00610390305519104,-0.003962547052651644,-0.0028995168395340443,-0.47870194911956787,-2.5747876167297363,7.441648721694946,-0.004787019491195679,-0.025747876167297363,0.07441648721694946 +karman_re100,ppo,16,6.4,1.0430105924606323,-0.2880675792694092,0.9582381248474121,-0.3787113130092621,1.0317362546920776,-0.2662351727485657,0.0011958172544836998,-0.003868305357173085,0.004275231156498194,0.0058373697102069855,-0.0059884218499064445,-0.0021453259978443384,-1.1269543170928955,-2.003141164779663,7.114698171615601,-0.011269543170928955,-0.02003141164779663,0.07114698171615601 +karman_re100,ppo,17,6.8,1.0857540369033813,-0.2899497151374817,0.962511420249939,-0.376791387796402,0.9876169562339783,-0.2719804048538208,0.0030564030166715384,-0.0037475889548659325,0.003922788426280022,0.005422336049377918,-0.007363568525761366,-0.002179528120905161,-1.7158442735671997,-1.4490973949432373,6.201802968978882,-0.017158442735672,-0.014490973949432374,0.06201802968978882 +karman_re100,ppo,18,7.2,1.126776933670044,-0.26548483967781067,0.9629527926445007,-0.3336813747882843,0.9514338970184326,-0.24201582372188568,0.00429278751835227,-0.0030314167961478233,0.0031508794054389,0.004765014164149761,-0.007349784951657057,-0.002892629476264119,-1.85599160194397,-1.2551119327545166,5.408451557159424,-0.0185599160194397,-0.012551119327545166,0.05408451557159424 +karman_re100,ppo,19,7.6,1.1665267944335938,-0.22288309037685394,0.9546088576316833,-0.24709734320640564,0.9293226003646851,-0.17772863805294037,0.003908547572791576,-0.0018154929857701063,0.0022756827529519796,0.004323364235460758,-0.005671925377100706,-0.004144230391830206,-1.5358020067214966,-1.746196985244751,5.054245710372925,-0.015358020067214966,-0.01746196985244751,0.050542457103729246 +karman_re100,ppo,20,8.0,1.1930928230285645,-0.14409328997135162,0.9406798481941223,-0.11285874247550964,0.9222328662872314,-0.08354070782661438,0.002408671425655484,-0.00048371878801845014,0.0012745145941153169,0.00427749939262867,-0.0027241716161370277,-0.00536924647167325,-1.1045764684677124,-2.9682997465133667,4.871420681476593,-0.011045764684677124,-0.029682997465133667,0.04871420681476593 +karman_re100,ppo,21,8.4,1.1911088228225708,-0.024988293647766113,0.9278610348701477,0.04482884332537651,0.9231095910072327,0.03493823483586311,0.0008001627866178751,0.000807383970823139,-2.3584940208820626e-05,0.0042679402977228165,0.0006045641493983567,-0.005895534530282021,-0.7955374717712402,-4.476156324148178,4.386308193206787,-0.007955374717712403,-0.04476156324148178,0.04386308193206787 +karman_re100,ppo,22,8.8,1.173897624015808,0.09331277012825012,0.921914279460907,0.1991565078496933,0.9362664818763733,0.1502203792333603,-0.00026623933808878064,0.001949033117853105,-0.0015656626783311367,0.003950083162635565,0.0032572010532021523,-0.005583733320236206,-0.5091004967689514,-5.751453161239624,3.6455404758453374,-0.005091004967689514,-0.05751453161239624,0.03645540475845337 +karman_re100,ppo,23,9.2,1.1338610649108887,0.20310483872890472,0.9261234998703003,0.3245168626308441,0.9700968861579895,0.229380801320076,-0.0006519561866298318,0.002871612086892128,-0.003207440720871091,0.003158208215609193,0.004771627485752106,-0.005166750401258469,-0.13104954361915588,-6.49574875831604,3.089676558971405,-0.0013104954361915588,-0.0649574875831604,0.03089676558971405 +karman_re100,ppo,24,9.6,1.0694440603256226,0.28450337052345276,0.9366271495819092,0.39898747205734253,1.015733003616333,0.2832278907299042,-0.0003107328084297478,0.0035177883692085743,-0.005050818435847759,0.0021955224219709635,0.005412994418293238,-0.005158370826393366,0.395626038312912,-6.977542161941528,2.606320023536682,0.00395626038312912,-0.06977542161941529,0.02606320023536682 +karman_re100,ppo,25,10.0,1.006507396697998,0.3133609890937805,0.9466990828514099,0.4301280975341797,1.0656003952026367,0.31589367985725403,0.000994822126813233,0.003869455773383379,-0.007058820221573114,0.001680500339716673,0.005398719105869532,-0.00546739436686039,1.108095407485962,-7.235546350479126,2.244859457015991,0.011080954074859619,-0.07235546350479126,0.02244859457015991 +karman_re100,ppo,26,10.4,0.9513523578643799,0.29489004611968994,0.9500963687896729,0.418335497379303,1.1139287948608398,0.31431707739830017,0.0030476409010589123,0.003937191795557737,-0.00861393567174673,0.0017876976635307074,0.0048687644302845,-0.0055874246172606945,1.81552255153656,-7.001033067703246,2.0536751747131348,0.0181552255153656,-0.07001033067703247,0.02053675174713135 +karman_re100,ppo,27,10.8,0.9050264954566956,0.23368823528289795,0.9418703317642212,0.3598025441169739,1.1605435609817505,0.28689083456993103,0.004570291377604008,0.0033630086109042168,-0.00875032041221857,0.002266900148242712,0.003970659803599119,-0.005165433511137962,2.2169880867004395,-6.261913537979126,1.8263428211212156,0.022169880867004395,-0.06261913537979126,0.018263428211212157 +karman_re100,ppo,28,11.2,0.8743091821670532,0.1320253312587738,0.9196933507919312,0.2413150817155838,1.201950192451477,0.2270205318927765,0.004663440398871899,0.0019325684988871217,-0.007267479319125414,0.0029594784136861563,0.0027848619502037764,-0.004617496859282255,2.07375168800354,-5.293291926383972,1.5537383556365967,0.0207375168800354,-0.05293291926383972,0.015537383556365967 +karman_re100,ppo,29,11.6,0.8660768866539001,0.0038117978256195784,0.8902841210365295,0.043336182832717896,1.2206029891967773,0.10708996653556824,0.0033620893955230713,0.00024873108486644924,-0.00487414700910449,0.00422619329765439,0.0016145231202244759,-0.0043399883434176445,1.512890100479126,-4.35228618979454,1.6472384929656982,0.01512890100479126,-0.0435228618979454,0.016472384929656983 +karman_re100,ppo,30,12.0,0.883115291595459,-0.1290997415781021,0.8773394227027893,-0.19922761619091034,1.2009952068328857,-0.06690509617328644,0.0014532773056998849,-0.001009108149446547,-0.0017934984061866999,0.005848441738635302,0.0005528244655579329,-0.004359093960374594,0.9898822307586669,-3.4329729676246643,3.110366106033325,0.00989882230758667,-0.034329729676246645,0.031103661060333253 +karman_re100,ppo,31,12.4,0.9242303371429443,-0.23588992655277252,0.8911238312721252,-0.3889042139053345,1.1352405548095703,-0.24161647260189056,7.972162165970076e-06,-0.0017236667918041348,0.0013944499660283327,0.006564710754901171,-0.0008597738924436271,-0.004464005120098591,0.6420367956161499,-2.77689528465271,5.814407110214233,0.0064203679561614995,-0.0277689528465271,0.058144071102142335 +karman_re100,ppo,32,12.8,0.9818537831306458,-0.3035837411880493,0.9149232506752014,-0.497252881526947,1.0490529537200928,-0.35819581151008606,-0.000513977138325572,-0.002542438916862011,0.0036781427916139364,0.006435711868107319,-0.002485262230038643,-0.0042841387912631035,0.06376978754997253,-2.7880293130874634,7.363111734390258,0.0006376978754997253,-0.027880293130874634,0.07363111734390258 +karman_re100,ppo,33,13.2,1.0462123155593872,-0.3501460552215576,0.9390270709991455,-0.5534403324127197,0.9652568101882935,-0.4126656651496887,-5.512747520697303e-05,-0.003414283972233534,0.004955568816512823,0.006295223254710436,-0.004243132658302784,-0.003062938805669546,-0.675784707069397,-2.8191449642181396,7.453007459640502,-0.00675784707069397,-0.0281914496421814,0.07453007459640502 +karman_re100,ppo,34,13.6,1.11305570602417,-0.36675217747688293,0.9612487554550171,-0.5765823125839233,0.8881095051765442,-0.41972291469573975,0.0016128417337313294,-0.003977463115006685,0.005382786970585585,0.006117746699601412,-0.006525028496980667,-0.0018241340294480324,-1.5294855833053589,-2.1919909715652466,6.826202392578125,-0.01529485583305359,-0.021919909715652466,0.06826202392578125 +karman_re100,ppo,35,14.0,1.1778541803359985,-0.34105685353279114,0.9810420274734497,-0.5596259832382202,0.8160797357559204,-0.3814888298511505,0.004110340960323811,-0.003956282045692205,0.0048790788277983665,0.0057102469727396965,-0.008521911688148975,-0.0013762717135250568,-2.3292765617370605,-1.3791027069091797,5.582761883735657,-0.023292765617370606,-0.013791027069091797,0.05582761883735657 +karman_re100,ppo,36,14.4,1.2335973978042603,-0.2718859016895294,1.001196265220642,-0.48079434037208557,0.7550086975097656,-0.28922155499458313,0.005943977739661932,-0.003149129683151841,0.0038591264747083187,0.004820762202143669,-0.009203961119055748,-0.0017051652539521456,-2.6229281425476074,-0.8985059261322021,4.449206560850143,-0.026229281425476075,-0.008985059261322021,0.044492065608501434 +karman_re100,ppo,37,14.8,1.2538164854049683,-0.14114782214164734,1.0259193181991577,-0.2481120079755783,0.7161664366722107,-0.14279982447624207,0.005790635943412781,-0.0017047454603016376,0.002876407466828823,0.004052563104778528,-0.008017209358513355,-0.00263848970644176,-2.303446054458618,-1.2502286434173584,3.9148679226636887,-0.02303446054458618,-0.012502286434173584,0.03914867922663689 +karman_re100,ppo,38,15.2,1.2367461919784546,0.015264247544109821,1.0407156944274902,0.11305659264326096,0.7181071639060974,0.03368387371301651,0.004014151636511087,-0.00027568385121412575,0.0019967341795563698,0.00396003620699048,-0.005586224142462015,-0.003836645744740963,-1.7480090856552124,-2.4027565717697144,4.002146620303392,-0.017480090856552125,-0.024027565717697145,0.04002146620303392 +karman_re100,ppo,39,15.6,1.2028169631958008,0.14530932903289795,1.031173586845398,0.39072510600090027,0.7713582515716553,0.18366460502147675,0.0018340173410251737,0.0009093701955862343,0.0009762675035744905,0.004278278443962336,-0.0025369441136717796,-0.005023854319006205,-1.4496383666992188,-3.8091014325618744,3.9610465727746487,-0.014496383666992187,-0.03809101432561875,0.039610465727746486 +karman_re100,ppo,40,16.0,1.1488944292068481,0.2536301910877228,1.0132536888122559,0.507432758808136,0.8528342247009277,0.28105172514915466,0.00016412112745456398,0.0019440269097685814,-0.00028323772130534053,0.004563883412629366,0.0005109527264721692,-0.005620881449431181,-1.233704924583435,-5.170082211494446,3.528168886899948,-0.01233704924583435,-0.05170082211494446,0.03528168886899948 +karman_re100,ppo,41,16.4,1.0822992324829102,0.33365780115127563,1.0049941539764404,0.5490180850028992,0.9370275735855103,0.3441171944141388,-0.0007941636722534895,0.002682201564311981,-0.0015227156691253185,0.004495787434279919,0.0027010475751012564,-0.005572073627263308,-0.798954725265503,-6.163370370864868,3.0999133586883545,-0.00798954725265503,-0.061633703708648686,0.030999133586883547 +karman_re100,ppo,42,16.8,1.0131572484970093,0.37671589851379395,1.005192518234253,0.5766050219535828,1.0191329717636108,0.3852568566799164,-0.0010360073065385222,0.0032487891148775816,-0.002739548683166504,0.0038924217224121094,0.003908165730535984,-0.0054683927446603775,-0.240060493350029,-6.654017686843871,2.9285746812820435,-0.00240060493350029,-0.06654017686843872,0.029285746812820434 +karman_re100,ppo,43,17.2,0.9411180019378662,0.3843032419681549,1.005686640739441,0.5914084315299988,1.096934199333191,0.4044395387172699,-0.0004209012840874493,0.0035942986141890287,-0.004128028638660908,0.002993814880028367,0.004455531481653452,-0.005488330498337746,0.33202457427978516,-6.988222360610961,2.6599912643432617,0.0033202457427978518,-0.06988222360610961,0.026599912643432616 +karman_re100,ppo,44,17.6,0.8697652220726013,0.34978431463241577,1.002375841140747,0.5762168169021606,1.1709868907928467,0.38408637046813965,0.0009665463585406542,0.0035500051453709602,-0.005567287094891071,0.00232193642295897,0.00443189637735486,-0.005508968140929937,0.9737390279769899,-7.09850549697876,2.3665415048599243,0.009737390279769899,-0.0709850549697876,0.023665415048599245 +karman_re100,ppo,45,18.0,0.8082303404808044,0.265331506729126,0.9898779988288879,0.5096932053565979,1.2417027950286865,0.3217019736766815,0.0025872744154185057,0.002930235816165805,-0.006515589542686939,0.002207009820267558,0.0038627246394753456,-0.005342117510735989,1.554521918296814,-6.727165460586548,2.1673232316970825,0.01554521918296814,-0.06727165460586548,0.021673232316970825 +karman_re100,ppo,46,18.4,0.7676892280578613,0.13223639130592346,0.9687197804450989,0.30648544430732727,1.2892156839370728,0.19819135963916779,0.003410891629755497,0.0017186745535582304,-0.006319355219602585,0.002742199692875147,0.0028904909268021584,-0.005002658348530531,1.7869012355804446,-5.843007445335388,1.973418712615967,0.017869012355804445,-0.05843007445335388,0.01973418712615967 +karman_re100,ppo,47,18.8,0.7641894817352295,-0.026676878333091736,0.9624176621437073,-0.05472162365913391,1.2969125509262085,0.03120959922671318,0.002894897712394595,0.00017025030683726072,-0.00483441399410367,0.003883757395669818,0.0017828223062679172,-0.0047049568966031075,1.5961241722106934,-4.732442259788513,1.9890484809875488,0.015961241722106934,-0.047324422597885135,0.01989048480987549 +karman_re100,ppo,48,19.2,0.8048893213272095,-0.1664014309644699,0.9729026556015015,-0.3580882251262665,1.260298728942871,-0.12625551223754883,0.0015066537307575345,-0.0011365560349076986,-0.002383028157055378,0.005144153721630573,0.0007123654359020293,-0.004591512959450483,1.3270032405853271,-3.6654862463474274,3.1162715554237366,0.013270032405853272,-0.036654862463474276,0.031162715554237365 +karman_re100,ppo,49,19.6,0.872072160243988,-0.2671990990638733,0.9848314523696899,-0.4957282245159149,1.1895641088485718,-0.25064754486083984,7.872794958529994e-05,-0.001857591443695128,0.00032805168302729726,0.0056955390609800816,-0.00046036363346502185,-0.004564186558127403,1.0741807222366333,-2.963979721069336,5.362125039100647,0.010741807222366333,-0.02963979721069336,0.05362125039100647 +karman_re100,ppo,50,20.0,0.948062539100647,-0.3349560797214508,0.9964417219161987,-0.5481659770011902,1.1078318357467651,-0.33565041422843933,-0.0007738599670119584,-0.002462325617671013,0.0024932108353823423,0.005618997849524021,-0.0017098392127081752,-0.004323113244026899,0.5302308797836304,-2.94206166267395,6.878617048263549,0.0053023087978363035,-0.029420616626739504,0.0687861704826355 +karman_re100,ppo,51,20.4,1.0266607999801636,-0.3762904405593872,1.0083997249603271,-0.5786155462265015,1.0261306762695312,-0.38094425201416016,-0.0007754848920740187,-0.0031607893761247396,0.003947736695408821,0.005621655378490686,-0.0031152023002505302,-0.0032150137703865767,-0.16488179564476013,-3.0554208159446716,7.312196016311645,-0.0016488179564476014,-0.030554208159446716,0.07312196016311645 +karman_re100,ppo,52,20.8,1.1041003465652466,-0.39308348298072815,1.0198664665222168,-0.591772735118866,0.9459500312805176,-0.38903573155403137,0.00034748821053653955,-0.0036692405119538307,0.004779857583343983,0.0056747873313724995,-0.005144697614014149,-0.0018916986882686615,-0.9599256515502931,-2.5897531509399414,7.142655134201049,-0.00959925651550293,-0.025897531509399413,0.0714265513420105 +karman_re100,ppo,53,21.2,1.1777390241622925,-0.36892935633659363,1.0291857719421387,-0.5738896727561951,0.8692434430122375,-0.35390332341194153,0.0025267780292779207,-0.0037238565273582935,0.004729671869426966,0.005617286544293165,-0.00736398808658123,-0.0012149913236498833,-1.8517696857452393,-1.8464775085449219,6.168962478637695,-0.018517696857452394,-0.01846477508544922,0.061689624786376955 +karman_re100,ppo,54,21.6,1.24271559715271,-0.30152449011802673,1.0330531597137451,-0.5016672611236572,0.8013703227043152,-0.2660706639289856,0.004817886743694544,-0.0031004988122731447,0.003868323750793934,0.005107432138174772,-0.00881042331457138,-0.0013327423948794603,-2.4249255657196045,-1.2434043884277344,4.960286200046539,-0.024249255657196045,-0.012434043884277345,0.049602862000465396 +karman_re100,ppo,55,22.0,1.2775894403457642,-0.1745155304670334,1.037319540977478,-0.28171485662460327,0.7565983533859253,-0.12750335037708282,0.005410811398178339,-0.0018323739059269428,0.0028674008790403605,0.004375690594315529,-0.00847309734672308,-0.0023362278006970882,-2.388695240020752,-1.2349350452423096,4.127265840768814,-0.02388695240020752,-0.012349350452423096,0.041272658407688144 +karman_re100,ppo,56,22.4,1.2683777809143066,-0.008167557418346405,1.046846628189087,0.0889732614159584,0.7564776539802551,0.03493637964129448,0.004145120270550251,-0.00034384880564175546,0.0020040839444845915,0.00409740349277854,-0.006355678662657738,-0.003795002121478319,-1.9152225255966187,-2.167836546897888,4.030725616961718,-0.019152225255966188,-0.02167836546897888,0.040307256169617174 +karman_re100,ppo,57,22.8,1.2338802814483643,0.13103912770748138,1.047311544418335,0.3662455379962921,0.8071048855781555,0.16760478913784027,0.0020824612583965063,0.0008711585542187095,0.0010747631313279271,0.004284563474357128,-0.0032815851736813784,-0.005141482222825289,-1.5347248315811157,-3.6469034552574158,3.97956239618361,-0.015347248315811158,-0.03646903455257416,0.0397956239618361 +karman_re100,ppo,58,23.2,1.1841233968734741,0.23447193205356598,1.0403141975402832,0.4667644798755646,0.880841076374054,0.26038452982902527,0.0002956851676572114,0.001827615313231945,-0.00010627129813656211,0.004538156557828188,-8.728066313778982e-05,-0.005781279876828194,-1.2786961793899536,-5.129367232322693,3.5062206685543056,-0.012786961793899536,-0.05129367232322693,0.03506220668554306 +karman_re100,ppo,59,23.6,1.1225125789642334,0.3076114356517792,1.0376768112182617,0.5018594264984131,0.955666720867157,0.3239964544773102,-0.0007648290484212339,0.002550206845626235,-0.0013361546443775296,0.004444776568561792,0.0022968791890889406,-0.005695686209946871,-0.843608856201172,-6.177529811859131,3.1042051315307617,-0.00843608856201172,-0.06177529811859131,0.031042051315307618 +karman_re100,ppo,60,24.0,1.0555734634399414,0.3459978401660919,1.0382670164108276,0.5248425006866455,1.0281027555465698,0.36232659220695496,-0.001066585653461516,0.0031447529327124357,-0.002607682952657342,0.0037733656354248524,0.0036889342591166496,-0.005505337845534086,-0.29988259077072144,-6.704545974731444,2.9235048294067383,-0.0029988259077072146,-0.06704545974731445,0.029235048294067385 +karman_re100,ppo,61,24.4,0.9874475598335266,0.3496406674385071,1.0396255254745483,0.5311311483383179,1.09757399559021,0.38093703985214233,-0.0005111634382046759,0.003528909059241414,-0.004075921606272459,0.00288683595135808,0.004364700987935066,-0.0054668253287673,0.26874035596847534,-7.065622329711914,2.609805941581726,0.0026874035596847535,-0.07065622329711914,0.026098059415817262 +karman_re100,ppo,62,24.8,0.921435534954071,0.31206297874450684,1.0377395153045654,0.5036758184432983,1.1626545190811157,0.3642210066318512,0.0008520449628122151,0.003521793521940708,-0.005548269022256136,0.0023536451626569033,0.004396524280309677,-0.005498547572642565,0.9033962488174437,-7.17762041091919,2.284359335899353,0.009033962488174438,-0.0717762041091919,0.02284359335899353 +karman_re100,ppo,63,25.2,0.864016056060791,0.22760938107967377,1.025525450706482,0.4291253387928009,1.224159598350525,0.31344103813171387,0.00247263815253973,0.0029576080851256847,-0.006487849168479443,0.002401112113147974,0.0038212588988244534,-0.005367059260606766,1.4574521780014038,-6.785223484039307,2.0667643547058105,0.014574521780014038,-0.06785223484039307,0.020667643547058107 +karman_re100,ppo,64,25.6,0.8255468606948853,0.10044200718402863,0.9995993971824646,0.2628540098667145,1.2712751626968384,0.21515914797782898,0.0032929929438978434,0.0018026663456112146,-0.0062276641838252544,0.003055629786103964,0.0028256638906896114,-0.005016281735152006,1.663229465484619,-5.88281512260437,1.8750250339508057,0.01663229465484619,-0.0588281512260437,0.018750250339508057 +karman_re100,ppo,65,26.0,0.8204312920570374,-0.04121094197034836,0.9754090309143066,-0.024624209851026535,1.2809240818023682,0.060023244470357895,0.0027803468983620405,0.0002953729999717325,-0.004595217760652304,0.004219572991132736,0.0017177666304633021,-0.004700347315520048,1.445901870727539,-4.738739311695099,1.9990589618682861,0.014459018707275392,-0.04738739311695099,0.01999058961868286 +karman_re100,ppo,66,26.4,0.8529202938079834,-0.16331438720226288,0.973304271697998,-0.2888476550579071,1.2488644123077393,-0.10353024303913116,0.0014067760203033686,-0.0009814986260607839,-0.001980183180421591,0.005397980101406574,0.000633150280918926,-0.004567981231957674,1.147828459739685,-3.6661842465400696,3.29550313949585,0.01147828459739685,-0.0366618424654007,0.0329550313949585 +karman_re100,ppo,67,26.8,0.9068898558616638,-0.26014140248298645,0.9836973547935486,-0.4264436960220337,1.185302495956421,-0.23249921202659607,5.220609818934463e-05,-0.0017602649750187993,0.000812204263638705,0.005862784571945667,-0.0006164841470308602,-0.0045114136300981045,0.8722956180572511,-3.0228483080863953,5.55590033531189,0.00872295618057251,-0.030228483080863955,0.0555590033531189 +karman_re100,ppo,68,27.2,0.9720167517662048,-0.32263481616973877,0.9952122569084167,-0.4939011335372925,1.1102465391159058,-0.31625840067863464,-0.0006662864470854402,-0.0024905421305447817,0.0029792794957756996,0.0057939570397138596,-0.0020067242439836264,-0.004183612298220396,0.32755815982818604,-2.9962356090545654,7.000966787338257,0.0032755815982818603,-0.029962356090545653,0.07000966787338257 +karman_re100,ppo,69,27.6,1.0416005849838257,-0.36254775524139404,1.0059387683868408,-0.5309474468231201,1.0355812311172485,-0.3573630154132843,-0.0005179366562515497,-0.003270409069955349,0.004382661078125238,0.005781626794487238,-0.003637459594756365,-0.0029901163652539253,-0.36306971311569214,-2.9988856315612793,7.362940549850463,-0.0036306971311569213,-0.029988856315612794,0.07362940549850464 +karman_re100,ppo,70,28.0,1.11104416847229,-0.38161835074424744,1.0139557123184204,-0.5463153719902039,0.9624186158180237,-0.3619811236858368,0.0007899004849605262,-0.003813275136053562,0.005066366400569677,0.0057881115935742855,-0.005883784964680672,-0.0017056182259693742,-1.1909931898117065,-2.434274196624756,7.025884389877319,-0.011909931898117065,-0.02434274196624756,0.0702588438987732 +karman_re100,ppo,71,28.4,1.1765236854553223,-0.36303672194480896,1.0154091119766235,-0.5281372666358948,0.8905600905418396,-0.327269047498703,0.003182177199050784,-0.003882079618051648,0.004819680005311966,0.005648959893733263,-0.008166863583028316,-0.0011365325190126896,-2.0771307945251465,-1.6363401412963867,5.911570310592651,-0.020771307945251467,-0.016363401412963868,0.059115703105926516 +karman_re100,ppo,72,28.8,1.2387287616729736,-0.3061211109161377,1.0066702365875244,-0.4612179696559906,0.8284819722175598,-0.24546188116073608,0.005459802225232124,-0.0032670735381543636,0.0038784826174378395,0.004960922058671713,-0.009413009509444237,-0.0014063096605241299,-2.570580244064331,-1.0121257305145264,4.694035589694977,-0.02570580244064331,-0.010121257305145263,0.04694035589694977 +karman_re100,ppo,73,29.2,1.280838131904602,-0.1920640915632248,0.9894024133682251,-0.2829233705997467,0.7887971997261047,-0.11957153677940369,0.00583868520334363,-0.001928816083818674,0.002906986977905035,0.0041549489833414555,-0.008667281828820705,-0.0025181814562529325,-2.417682647705078,-1.1109380722045898,3.9632727950811386,-0.024176826477050783,-0.011109380722045899,0.03963272795081139 +karman_re100,ppo,74,29.6,1.2816048860549927,-0.02573566511273384,0.9824178814888,0.04520867019891739,0.7873403429985046,0.025916116312146187,0.004361415281891823,-0.00046345547889359295,0.0020696523133665323,0.003930498380213976,-0.006286239251494408,-0.003926694858819246,-1.8576222658157349,-2.208949565887451,3.9660102613270283,-0.018576222658157348,-0.02208949565887451,0.039660102613270284 +karman_re100,ppo,75,30.0,1.2474417686462402,0.12804843485355377,0.9916158318519592,0.32969117164611816,0.8291870951652527,0.15030920505523682,0.002165311947464943,0.0007178663508966565,0.0011135729728266597,0.004203171003609896,-0.0031371023505926132,-0.005178551189601421,-1.48104727268219,-3.7336935400962825,3.9079642295837402,-0.0148104727268219,-0.03733693540096283,0.0390796422958374 +karman_re100,ppo,76,30.4,1.1898314952850342,0.24189653992652893,1.0018091201782227,0.4524269998073578,0.8907508254051208,0.24706296622753143,0.00035606746678240597,0.0017509886529296637,-0.0001257604017155245,0.004490736871957779,3.521594044286758e-05,-0.005762691609561443,-1.2416366338729858,-5.16487717628479,3.4828510284423833,-0.012416366338729858,-0.0516487717628479,0.03482851028442383 +karman_re100,ppo,77,30.8,1.1214220523834229,0.3185102045536041,1.0105640888214111,0.49997782707214355,0.9581775069236755,0.313668817281723,-0.0007023720536381006,0.0025357005652040243,-0.0013921171193942428,0.0044104536063969135,0.0023716981522738934,-0.005673845298588276,-0.8130918741226195,-6.1845176219940186,3.0866336822509766,-0.008130918741226196,-0.061845176219940186,0.030866336822509766 +karman_re100,ppo,78,31.2,1.0518877506256104,0.3578413724899292,1.0192621946334839,0.5280618667602539,1.0286667346954346,0.35508209466934204,-0.000993927358649671,0.0031634538900107145,-0.002649664180353284,0.0038040729705244303,0.0037373716477304697,-0.005512996111065149,-0.2702532112598419,-6.702242374420165,2.901647925376892,-0.0027025321125984194,-0.06702242374420166,0.02901647925376892 +karman_re100,ppo,79,31.6,0.9823290109634399,0.3622380495071411,1.0261024236679077,0.538366973400116,1.097887396812439,0.37673327326774597,-0.0004434665897861123,0.003574351780116558,-0.004067170433700085,0.0029917696956545115,0.0043937149457633495,-0.005532015115022659,0.29593947529792786,-7.051636219024658,2.615317225456238,0.0029593947529792785,-0.07051636219024658,0.026153172254562377 +karman_re100,ppo,80,32.0,0.9149692058563232,0.32595157623291016,1.0287131071090698,0.5147768259048462,1.1635421514511108,0.36211085319519043,0.0008958691614679992,0.0036139448639005423,-0.0055023254826664925,0.002453475259244442,0.004423199221491814,-0.00558815523982048,0.9203410148620605,-7.169696569442749,2.3135682344436646,0.009203410148620606,-0.07169696569442749,0.023135682344436647 +karman_re100,ppo,81,32.4,0.8560594320297241,0.24187619984149933,1.0210856199264526,0.44384992122650146,1.2254691123962402,0.3119667172431946,0.0024988995864987373,0.0030812411569058895,-0.006453279405832291,0.0023958254605531693,0.003856193507090211,-0.005432146601378918,1.475918173789978,-6.814130306243897,2.100485324859619,0.014759181737899781,-0.06814130306243897,0.021004853248596193 +karman_re100,ppo,82,32.8,0.8144610524177551,0.11245878040790558,0.9986781477928162,0.2772793471813202,1.2698454856872559,0.2132868766784668,0.0033577485010027885,0.0019364701583981514,-0.0062628542073071,0.0029165553860366344,0.002874137135222554,-0.005037314724177122,1.6991208791732788,-5.956093430519104,1.8903448581695557,0.016991208791732788,-0.05956093430519104,0.018903448581695556 +karman_re100,ppo,83,33.2,0.8072845339775085,-0.036022789776325226,0.9781791567802429,-0.02163029834628105,1.276672124862671,0.05939444527029991,0.002904813503846526,0.0004110913723707199,-0.004736335948109627,0.0040171281434595585,0.0017706176731735468,-0.0046871681697666645,1.4970920085906982,-4.835978209972382,1.9392304420471191,0.014970920085906983,-0.048359782099723816,0.01939230442047119 +karman_re100,ppo,84,33.6,0.841550886631012,-0.16418831050395966,0.9762567281723022,-0.29788798093795776,1.245250940322876,-0.10067190229892731,0.0015587046509608626,-0.0009103200864046812,-0.0021910888608545065,0.00528165465220809,0.0007155354833230376,-0.004552815109491348,1.1952872276306152,-3.7481465935707092,3.1127575635910034,0.011952872276306153,-0.037481465935707094,0.031127575635910034 +karman_re100,ppo,85,34.0,0.8990736603736877,-0.2624623775482178,0.9836412072181702,-0.43978169560432434,1.1817011833190918,-0.22989524900913239,0.00015923786850180477,-0.0017054341733455658,0.0006197377806529403,0.005881077144294977,-0.0004986592102795839,-0.004525467287749052,0.9262397289276122,-3.036674737930298,5.390896797180176,0.009262397289276122,-0.03036674737930298,0.05390896797180176 +karman_re100,ppo,86,34.4,0.9678401350975037,-0.32616284489631653,0.9939792156219482,-0.5069012641906738,1.1051079034805298,-0.3173103630542755,-0.0006467620260082185,-0.0024077906273305416,0.002834850922226906,0.005839454010128975,-0.001877238042652607,-0.004269174300134182,0.38496747612953186,-2.968452215194702,6.95046067237854,0.003849674761295319,-0.029684522151947022,0.0695046067237854 +karman_re100,ppo,87,34.8,1.0397213697433472,-0.36649376153945923,1.0039725303649902,-0.544675350189209,1.0271517038345337,-0.36212679743766785,-0.0005783573724329472,-0.0031831946689635515,0.004273623693734407,0.005807152483612299,-0.0034591779112815857,-0.0030987514182925224,-0.3130359947681427,-3.0195006132125854,7.356409788131714,-0.003130359947681427,-0.030195006132125855,0.07356409788131714 +karman_re100,ppo,88,35.2,1.1104165315628052,-0.3858201503753662,1.0113943815231323,-0.562567949295044,0.9497511982917786,-0.369939386844635,0.0006490500527434051,-0.0037639301735907793,0.0050306678749620914,0.005795502569526434,-0.0056818765588104725,-0.0017282330663874745,-1.1345593929290771,-2.492833137512207,7.06814455986023,-0.011345593929290772,-0.02492833137512207,0.0706814455986023 +karman_re100,ppo,89,35.6,1.1787269115447998,-0.3664895296096802,1.0152995586395264,-0.5482302308082581,0.8754162788391113,-0.3377072513103485,0.0030061090365052223,-0.0038815850857645273,0.004879094194620848,0.005676883272826672,-0.007990393787622452,-0.0010717754485085607,-2.0443966388702393,-1.6859304904937744,5.972466349601746,-0.020443966388702394,-0.016859304904937745,0.05972466349601746 +karman_re100,ppo,90,36.0,1.2427595853805542,-0.30678030848503113,1.011570930480957,-0.4849572777748108,0.8109076023101807,-0.25684094429016113,0.0054001878015697,-0.0033249000553041697,0.003979315981268883,0.005035721696913242,-0.00937286950647831,-0.001317199319601059,-2.584160804748535,-1.034397840499878,4.732918679714203,-0.02584160804748535,-0.01034397840499878,0.04732918679714203 +karman_re100,ppo,91,36.4,1.2831616401672363,-0.188477024435997,1.0034360885620117,-0.29644691944122314,0.7690694332122803,-0.12886732816696167,0.005932576488703489,-0.0020292364060878754,0.0029968013986945152,0.004203911405056715,-0.008787764236330986,-0.0023771265987306833,-2.472856044769287,-1.0752816200256348,3.939213879406452,-0.024728560447692872,-0.010752816200256348,0.03939213879406452 +karman_re100,ppo,92,36.8,1.2796785831451416,-0.021385712549090385,1.0050420761108398,0.053120627999305725,0.7674500346183777,0.02254124917089939,0.004544512834399939,-0.0005445150309242308,0.0021399199031293392,0.003921573981642723,-0.00653386814519763,-0.003726750612258911,-1.9228626489639282,-2.107245087623596,3.9175247922539715,-0.019228626489639283,-0.021072450876235962,0.039175247922539715 +karman_re100,ppo,93,37.2,1.2435866594314575,0.12677618861198425,1.0112613439559937,0.345859169960022,0.8116027116775513,0.1512327939271927,0.002352566923946142,0.0006695257616229355,0.0012035160325467587,0.004158251453191042,-0.003483508713543415,-0.004965178668498993,-1.5342552661895752,-3.582804173231125,3.911928787827492,-0.015342552661895752,-0.03582804173231125,0.03911928787827492 +karman_re100,ppo,94,37.6,1.1884976625442505,0.2363641858100891,1.0139086246490479,0.46414679288864136,0.8785920739173889,0.24678392708301544,0.00048194077680818737,0.0016985214315354824,1.2623662541955127e-06,0.004455359652638435,-0.0003222083323635161,-0.005633766762912273,-1.2942285537719727,-5.00546133518219,3.53566762804985,-0.012942285537719728,-0.0500546133518219,0.0353566762804985 +karman_re100,ppo,95,38.0,1.1229933500289917,0.31329047679901123,1.0184212923049927,0.5052695274353027,0.9505631923675537,0.31425750255584717,-0.000641426129732281,0.002481951378285885,-0.0012298548826947808,0.0044429246336221695,0.002121108118444681,-0.005638778675347567,-0.8756018877029419,-6.071287393569946,3.134723544120788,-0.008756018877029419,-0.06071287393569946,0.031347235441207884 +karman_re100,ppo,96,38.4,1.0543131828308105,0.354771226644516,1.0247182846069336,0.5314995050430298,1.0236698389053345,0.3561161160469055,-0.0010124839609488845,0.0031184174586087465,-0.0024516647681593895,0.003914599306881428,0.0035892752930521965,-0.0055216108448803425,-0.3362591564655304,-6.640427350997925,2.940311551094055,-0.003362591564655304,-0.06640427350997925,0.02940311551094055 +karman_re100,ppo,97,38.8,0.9850994944572449,0.36163973808288574,1.0307624340057373,0.5425782799720764,1.0953046083450317,0.37870553135871887,-0.0005590482032857835,0.0035498719662427902,-0.00384800904430449,0.0031027239747345448,0.004319006111472845,-0.005539834965020418,0.22247448563575745,-7.016477346420288,2.6641873121261597,0.0022247448563575745,-0.07016477346420288,0.026641873121261598 +karman_re100,ppo,98,39.2,0.9166499972343445,0.3280523419380188,1.0325376987457275,0.5213028192520142,1.1622473001480103,0.3657480478286743,0.0007033087313175201,0.0036140468437224627,-0.005317992065101862,0.002481656614691019,0.0044089616276323795,-0.0055773621425032616,0.8420275449752808,-7.175760269165039,2.3502999544143677,0.008420275449752808,-0.0717576026916504,0.023502999544143678 +karman_re100,ppo,99,39.6,0.8550847768783569,0.24661250412464142,1.0236424207687378,0.45394080877304077,1.2240203619003296,0.3166182339191437,0.0023152739740908146,0.003119440982118249,-0.006370474584400654,0.002342849737033248,0.0038999917451292276,-0.005427367519587278,1.4199854135513306,-6.868450880050659,2.124135732650757,0.014199854135513307,-0.0686845088005066,0.02124135732650757 +karman_re100,ppo,100,40.0,0.8119402527809143,0.11907727271318436,1.001855492591858,0.2916162312030792,1.2704116106033325,0.21981659531593323,0.0032969347666949034,0.002016423735767603,-0.006327613722532988,0.0028155327308923006,0.002961645135655999,-0.005054921377450228,1.6906157732009888,-6.039137601852417,1.9115686416625977,0.016906157732009888,-0.06039137601852417,0.019115686416625977 +karman_re100,ppo,101,40.4,0.8032203912734985,-0.02977384254336357,0.9821760654449463,-0.008098271675407887,1.2796458005905151,0.06716904789209366,0.0029814960435032845,0.0005082178395241499,-0.00492189871147275,0.003922400064766407,0.0018811054760590196,-0.004718025680631399,1.5314582586288452,-4.920356512069702,1.9165506362915041,0.015314582586288452,-0.04920356512069702,0.01916550636291504 +karman_re100,ppo,102,40.8,0.8367658257484436,-0.15885046124458313,0.9803518056869507,-0.2905227541923523,1.2499924898147583,-0.09278728812932968,0.0016848882660269737,-0.0008476889343000948,-0.002444016980007291,0.0052252234891057014,0.0008277531014755368,-0.004586332477629185,1.2341364622116089,-3.8096508383750916,2.9795100688934326,0.012341364622116088,-0.038096508383750914,0.029795100688934328 +karman_re100,ppo,103,41.2,0.8948420882225037,-0.25808194279670715,0.9874913096427917,-0.4355992078781128,1.1883944272994995,-0.22252143919467926,0.0002490999468136579,-0.0016701210988685489,0.00035246030893176794,0.005863981321454048,-0.0003746446454897523,-0.004563877824693918,0.9704909324645997,-3.0528643131256104,5.2277960777282715,0.009704909324645997,-0.030528643131256104,0.052277960777282716 +karman_re100,ppo,104,41.6,0.9624831676483154,-0.32371994853019714,0.9959595203399658,-0.503376841545105,1.1114754676818848,-0.3116881251335144,-0.0006272624596022069,-0.0023484218399971724,0.002608346752822399,0.005815105512738228,-0.0017390497960150242,-0.004331177566200495,0.4473134577274322,-2.9569731950759888,6.8627398014068595,0.004473134577274322,-0.02956973195075989,0.0686273980140686 +karman_re100,ppo,105,42.0,1.033631443977356,-0.36484789848327637,1.0045830011367798,-0.5416752696037292,1.0330866575241089,-0.35870134830474854,-0.0006464242469519377,-0.0031248675659298897,0.00410617608577013,0.005763132590800524,-0.003271635388955474,-0.00320942560210824,-0.23947592079639435,-3.039089858531952,7.332756280899049,-0.0023947592079639436,-0.030390898585319518,0.07332756280899048 +karman_re100,ppo,106,42.4,1.1052594184875488,-0.3863050043582916,1.0124107599258423,-0.5610021352767944,0.9567188024520874,-0.3689505457878113,0.00047754679690115154,-0.0037186145782470703,0.004955805838108063,0.00576451700180769,-0.005422019399702549,-0.0018239677883684635,-1.0409163236618042,-2.5566359758377075,7.125956058502197,-0.010409163236618042,-0.025566359758377077,0.07125956058502197 +karman_re100,ppo,107,42.8,1.1741501092910767,-0.3703283667564392,1.0163668394088745,-0.5492897629737854,0.8825494647026062,-0.34010612964630127,0.0027415433432906866,-0.0038802444469183683,0.004906260408461094,0.005697082728147507,-0.007743635680526495,-0.0011498418170958757,-1.953961491584778,-1.7684755325317383,6.099494457244873,-0.01953961491584778,-0.017684755325317384,0.06099494457244873 +karman_re100,ppo,108,43.2,1.2396305799484253,-0.31437036395072937,1.0127516984939575,-0.49130547046661377,0.8176670670509338,-0.26334917545318604,0.005185655318200588,-0.0033835843205451965,0.004047537222504616,0.005125826690346003,-0.00923844426870346,-0.0013103425735607743,-2.541083812713623,-1.1033565998077393,4.858214974403381,-0.02541083812713623,-0.011033565998077392,0.04858214974403381 +karman_re100,ppo,109,43.6,1.2835404872894287,-0.20142251253128052,1.0029473304748535,-0.3178935945034027,0.7735916972160339,-0.13912765681743622,0.0058998544700443745,-0.0021475341636687517,0.0030429342295974493,0.004278643522411585,-0.008860037662088871,-0.0022813871037214994,-2.4910199642181396,-1.0594062805175781,4.0124665424227715,-0.024910199642181396,-0.010594062805175782,0.04012466542422771 +karman_re100,ppo,110,44.0,1.2822078466415405,-0.03493160754442215,1.001388430595398,0.022744564339518547,0.7669399976730347,0.011034514755010605,0.004646468907594681,-0.0006522246985696256,0.0021716649644076824,0.003929769620299339,-0.006738199386745691,-0.003610165324062109,-1.9652849435806277,-2.0035189390182495,3.928908057510853,-0.019652849435806276,-0.020035189390182496,0.03928908057510853 +karman_re100,ppo,111,44.4,1.2479605674743652,0.11679001897573471,1.0087202787399292,0.32742103934288025,0.8077346682548523,0.1415087729692459,0.002496114233508706,0.0005770231364294887,0.0012620873749256134,0.004126532468944788,-0.003725090529769659,-0.004871659446507692,-1.5511269569396973,-3.4598098397254944,3.942383863031864,-0.015511269569396973,-0.034598098397254945,0.03942383863031864 +karman_re100,ppo,112,44.8,1.1949352025985718,0.22853383421897888,1.0135371685028076,0.45707452297210693,0.8741176128387451,0.23873350024223328,0.0005980078713037074,0.0016277388203889132,9.573170973453671e-05,0.004432636313140392,-0.000521722948178649,-0.005624350160360336,-1.3122406005859375,-4.901060879230499,3.5776342749595647,-0.013122406005859375,-0.049010608792305,0.035776342749595645 +karman_re100,ppo,113,45.2,1.1305606365203857,0.30757513642311096,1.0188543796539307,0.5003917217254639,0.9456230998039246,0.3086036145687103,-0.000582352455239743,0.0024323537945747375,-0.001141417771577835,0.004468717612326145,0.0020049631129950285,-0.005678286775946617,-0.9113550186157227,-6.022974252700806,3.149024486541748,-0.009113550186157227,-0.06022974252700806,0.03149024486541748 +karman_re100,ppo,114,45.6,1.0627974271774292,0.35149338841438293,1.025968074798584,0.5271864533424377,1.0189013481140137,0.3518511950969696,-0.001015271758660674,0.0030745854601264,-0.0023725598584860563,0.003967832773923874,0.003522180952131748,-0.005547006614506245,-0.37528952956199646,-6.622602462768555,2.950361967086792,-0.0037528952956199647,-0.06622602462768555,0.029503619670867922 +karman_re100,ppo,115,46.0,0.9930532574653625,0.3609122931957245,1.0314934253692627,0.5396860241889954,1.0895441770553589,0.37641867995262146,-0.0006249019643291831,0.003522674087435007,-0.003774602198973298,0.0031296643428504467,0.004287068732082844,-0.005531227216124535,0.1812121719121933,-7.00312638282776,2.683645248413086,0.001812121719121933,-0.0700312638282776,0.02683645248413086 +karman_re100,ppo,116,46.4,0.9238253831863403,0.33062854409217834,1.0329989194869995,0.5207660794258118,1.155461072921753,0.3666132986545563,0.0005937599344179034,0.003617173060774803,-0.005261242855340242,0.0024702518712729216,0.0044188122265040874,-0.00555810471996665,0.7994030714035035,-7.183072566986084,2.3567352294921875,0.007994030714035035,-0.07183072566986085,0.023567352294921875 +karman_re100,ppo,117,46.8,0.8623799681663513,0.25305962562561035,1.0258467197418213,0.4575686752796173,1.2177917957305908,0.32063353061676025,0.002224687719717622,0.003167002694681287,-0.006352829281240702,0.002322566695511341,0.003958567511290312,-0.00543496198952198,1.3897781372070312,-6.908307313919068,2.1234594583511353,0.013897781372070313,-0.06908307313919068,0.021234594583511353 +karman_re100,ppo,118,47.2,0.8179280161857605,0.128983736038208,1.0051127672195435,0.3068532645702362,1.2666560411453247,0.22976957261562347,0.0032885672990232706,0.002110590459778905,-0.00637406948953867,0.0028046993538737297,0.0030461365822702646,-0.005090390332043171,1.6861976385116577,-6.105475187301636,1.915564775466919,0.016861976385116578,-0.06105475187301636,0.01915564775466919 +karman_re100,ppo,119,47.6,0.8066163659095764,-0.01884125918149948,0.9839736223220825,0.018517185002565384,1.279959797859192,0.08123977482318878,0.0030417528469115496,0.0006171552813611925,-0.005031179171055555,0.0038879690691828728,0.001960126217454672,-0.004752492066472769,1.5434463024139404,-4.989426016807556,1.8998496532440186,0.015434463024139405,-0.04989426016807556,0.018998496532440186 +karman_re100,ppo,120,48.0,0.8371604681015015,-0.1496419906616211,0.9804331064224243,-0.2703391909599304,1.2537165880203247,-0.08036915957927704,0.0017740444745868444,-0.0007684172596782446,-0.0025977776385843754,0.005176000762730837,0.0008886263240128756,-0.004597890190780163,1.23696768283844,-3.8743858039379124,2.8779070377349854,0.012369676828384399,-0.038743858039379124,0.028779070377349853 +karman_re100,ppo,121,48.4,0.8919243812561035,-0.2515295147895813,0.986005425453186,-0.4250635504722595,1.1929612159729004,-0.21345028281211853,0.00031893138657324016,-0.00161867740098387,0.00020382567890919745,0.005836635362356901,-0.00031107640825212,-0.004555732477456331,0.9798771142959595,-3.08901584148407,5.0910574197769165,0.009798771142959595,-0.030890158414840697,0.05091057419776917 +karman_re100,ppo,122,48.8,0.9581644535064697,-0.3195998966693878,0.9943632483482361,-0.4972549080848694,1.1165916919708252,-0.30568137764930725,-0.0005932013154961169,-0.0022981292568147182,0.0025140182115137577,0.005800426006317139,-0.0016762369778007269,-0.004338956903666258,0.47882404923439026,-2.959151268005371,6.794798851013184,0.004788240492343903,-0.02959151268005371,0.06794798851013184 +karman_re100,ppo,123,49.2,1.0293831825256348,-0.36191681027412415,1.0036669969558716,-0.5373121500015259,1.0390137434005737,-0.35530635714530945,-0.0006588234682567418,-0.0030864623840898275,0.0040702903643250465,0.005759477615356445,-0.0031769059132784605,-0.0032921675592660904,-0.20162087678909302,-3.049712836742401,7.318925619125366,-0.0020162087678909303,-0.030497128367424013,0.07318925619125366 +karman_re100,ppo,124,49.6,1.10090970993042,-0.38541626930236816,1.0116946697235107,-0.5582696795463562,0.9630582332611084,-0.3678089380264282,0.0003905138000845909,-0.0037037201691418886,0.004962389823049307,0.005783502012491226,-0.005290365777909756,-0.0019139087526127696,-0.9930170774459839,-2.6017940044403076,7.161433219909669,-0.009930170774459839,-0.026017940044403078,0.07161433219909669 +karman_re100,ppo,125,50.0,1.1702558994293213,-0.37250396609306335,1.0162256956100464,-0.5488137006759644,0.8894106149673462,-0.3418245315551758,0.0025933249853551388,-0.0039016585797071457,0.0049534388817846775,0.005730094853788614,-0.007639323361217976,-0.0011817127233371139,-1.909636616706848,-1.8159348964691162,6.177647113800049,-0.01909636616706848,-0.018159348964691163,0.06177647113800049 +karman_re100,ppo,126,50.4,1.2354559898376465,-0.31993401050567627,1.0118544101715088,-0.4950346052646637,0.8232231736183167,-0.2686164975166321,0.005090220365673304,-0.0034535364247858524,0.004110599867999554,0.005175890866667032,-0.009238854981958866,-0.001256174291484058,-2.530097723007202,-1.125049352645874,4.924708962440491,-0.025300977230072023,-0.01125049352645874,0.04924708962440491 +karman_re100,ppo,127,50.8,1.2811230421066284,-0.21231119334697723,0.9997037649154663,-0.3349425494670868,0.7765108346939087,-0.14785142242908478,0.005948199424892664,-0.0022530900314450264,0.0030976906418800354,0.004303182940930128,-0.008993152529001236,-0.002167829778045416,-2.5216832160949707,-1.0142254829406738,4.0301495380699635,-0.025216832160949706,-0.01014225482940674,0.04030149538069964 +karman_re100,ppo,128,51.2,1.2839012145996094,-0.04768452048301697,0.9962416291236877,-0.004837700631469488,0.7671965956687927,0.0008357510669156909,0.004802310839295387,-0.0007473898003809154,0.0022349462378770113,0.003909324295818806,-0.006944821681827307,-0.0034978038165718317,-2.00627064704895,-1.9019281864166262,3.9071224629879,-0.0200627064704895,-0.019019281864166262,0.039071224629879 +karman_re100,ppo,129,51.6,1.2518173456192017,0.10764279216527939,1.0040620565414429,0.30995532870292664,0.8050408363342285,0.13312159478664398,0.0026664831675589085,0.0005014061462134123,0.0013510577846318483,0.0040999469347298145,-0.003951951861381531,-0.004812587518244982,-1.568675637245178,-3.354628145694732,3.94664104655385,-0.01568675637245178,-0.033546281456947324,0.039466410465538504 +karman_re100,ppo,130,52.0,1.1996921300888062,0.22269439697265625,1.010703682899475,0.4517520070075989,0.8704127669334412,0.23222757875919342,0.0007170976605266333,0.0015629514819011092,0.00019565672846511006,0.004431802313774824,-0.0007293703383766115,-0.005636168643832207,-1.3323360681533813,-4.820663630962372,3.5982594192028046,-0.013323360681533813,-0.04820663630962372,0.035982594192028046 +karman_re100,ppo,131,52.4,1.13556706905365,0.3044792413711548,1.0171524286270142,0.4984399378299713,0.941672146320343,0.3043265640735626,-0.0005264971987344325,0.0023846165277063847,-0.0010595867643132806,0.004497162997722626,0.0018561987672001123,-0.005711942911148071,-0.9475969076156616,-5.975712418556213,3.1615293622016907,-0.009475969076156616,-0.05975712418556214,0.031615293622016906 +karman_re100,ppo,132,52.8,1.066465973854065,0.35095444321632385,1.02369225025177,0.5262892246246338,1.013689398765564,0.34903714060783386,-0.0010127285495400429,0.003035018453374505,-0.002290798583999276,0.004014527890831232,0.0034267271403223276,-0.005552539601922035,-0.41340208053588867,-6.596754312515259,2.959770679473877,-0.004134020805358887,-0.06596754312515259,0.02959770679473877 +karman_re100,ppo,133,53.2,0.9963778853416443,0.3628736138343811,1.0295039415359497,0.5405324101448059,1.0841697454452515,0.3753821849822998,-0.0006801297422498465,0.00349836191162467,-0.003672434715554118,0.003176363417878747,0.00424318527802825,-0.005515790078788996,0.14195679128170013,-6.979011297225952,2.702604651451111,0.0014195679128170013,-0.06979011297225952,0.02702604651451111 +karman_re100,ppo,134,53.6,0.9274958968162537,0.3357311189174652,1.032483696937561,0.5244206786155701,1.1510882377624512,0.36834487318992615,0.0004983347025699914,0.003626517951488495,-0.005144387483596802,0.002513428684324026,0.004432962276041508,-0.0055554877035319805,0.75597083568573,-7.179163694381714,2.374112367630005,0.0075597083568573,-0.07179163694381714,0.02374112367630005 +karman_re100,ppo,135,54.0,0.8654057383537292,0.2615068256855011,1.0269098281860352,0.4652003049850464,1.2139711380004883,0.32461920380592346,0.002123427577316761,0.003222423605620861,-0.0062734768725931644,0.002349741058424115,0.004014511127024889,-0.005468806717544794,1.3541476726531982,-6.941689729690552,2.1435790061950684,0.013541476726531982,-0.06941689729690552,0.021435790061950684 +karman_re100,ppo,136,54.4,0.8198007345199585,0.13994833827018738,1.0082316398620605,0.3226723372936249,1.2649496793746948,0.23748159408569336,0.0032484412658959627,0.00220805243588984,-0.006381544284522533,0.002774708904325962,0.0031186100095510483,-0.005134390667080879,1.6759670972824097,-6.173954248428345,1.9390296936035156,0.016759670972824096,-0.06173954248428345,0.019390296936035157 +karman_re100,ppo,137,54.8,0.8052265048027039,-0.008421092294156551,0.9865920543670654,0.040386658161878586,1.280220627784729,0.09186305850744247,0.0030849867034703493,0.0007297313422895968,-0.005145667586475611,0.003786407643929124,0.002023666864261031,-0.0047723473981022835,1.5598055124282837,-5.077156066894531,1.8891301155090332,0.015598055124282837,-0.050771560668945316,0.018891301155090332 +karman_re100,ppo,138,55.2,0.8323031067848206,-0.14190083742141724,0.9809759259223938,-0.25567805767059326,1.2554388046264648,-0.07000920921564102,0.0018651558784767985,-0.00067813292844221,-0.0027963134925812483,0.005056591238826513,0.0009509499650448561,-0.004591038450598717,1.2545255422592163,-3.9579339995980263,2.757956385612488,0.012545255422592163,-0.03957933999598026,0.027579563856124877 +karman_re100,ppo,139,55.6,0.8866375684738159,-0.24589073657989502,0.9860238432884216,-0.4189298152923584,1.197073221206665,-0.20503875613212585,0.00040891850949265063,-0.0015714189503341913,8.371651347260922e-06,0.005789821967482567,-0.00021887998445890844,-0.00454059150069952,1.0052155256271362,-3.1383184194564815,4.910757124423981,0.010052155256271362,-0.03138318419456482,0.04910757124423981 +karman_re100,ppo,140,56.0,0.9529996514320374,-0.3164050281047821,0.9942327737808228,-0.4942866861820221,1.1216669082641602,-0.3001851737499237,-0.0005467544542625546,-0.0022467183880507946,0.002384934341534972,0.0058084772899746895,-0.0015656119212508202,-0.004372942727059126,0.5262887477874756,-2.9544851779937744,6.708844661712647,0.005262887477874756,-0.029544851779937743,0.06708844661712647 +karman_re100,ppo,141,56.4,1.024675726890564,-0.35987380146980286,1.0036343336105347,-0.5357319116592407,1.0442739725112915,-0.3527209758758545,-0.0006880569271743298,-0.003032142762094736,0.003987488802522421,0.005776997189968824,-0.003038157010450959,-0.0034102732315659523,-0.15034452080726624,-3.05645489692688,7.307700395584106,-0.0015034452080726624,-0.0305645489692688,0.07307700395584106 +karman_re100,ppo,142,56.8,1.096877098083496,-0.3851594626903534,1.0120311975479126,-0.558360755443573,0.9684253931045532,-0.36783233284950256,0.0002668023225851357,-0.0036650514230132103,0.004920754116028547,0.00579486321657896,-0.005120099987834692,-0.001996139995753765,-0.9302170276641845,-2.653560161590576,7.2058024406433105,-0.009302170276641845,-0.026535601615905763,0.07205802440643311 +karman_re100,ppo,143,57.2,1.1655994653701782,-0.37496256828308105,1.0158343315124512,-0.5514943599700928,0.8933262825012207,-0.34487301111221313,0.002399817807599902,-0.003904363140463829,0.0049781412817537785,0.005738211330026388,-0.007499771658331156,-0.0011765972012653947,-1.851134538650513,-1.871994733810425,6.265997409820556,-0.01851134538650513,-0.01871994733810425,0.06265997409820556 +karman_re100,ppo,144,57.6,1.230869174003601,-0.3250613808631897,1.0116711854934692,-0.502079427242279,0.8257356882095337,-0.27523931860923767,0.0049532270058989525,-0.0035032806918025017,0.004178536590188742,0.005222033709287643,-0.009202800691127777,-0.001184398657642305,-2.51116681098938,-1.1546733379364014,4.998019874095917,-0.0251116681098938,-0.011546733379364014,0.049980198740959166 +karman_re100,ppo,145,58.0,1.2794617414474487,-0.22184018790721893,1.0003931522369385,-0.3526246249675751,0.7776998281478882,-0.15754516422748566,0.005979237612336874,-0.0023521720431745052,0.003173566423356533,0.004345374181866646,-0.009097954258322716,-0.002065274165943265,-2.549882173538208,-0.9816198348999023,4.054957147687674,-0.02549882173538208,-0.009816198348999024,0.04054957147687674 +karman_re100,ppo,146,58.4,1.2854373455047607,-0.05921216309070587,0.9962970614433289,-0.029942965134978294,0.7655209898948669,-0.009549321606755257,0.004948755726218224,-0.0008382773958146572,0.0023083388805389404,0.0039164344780147076,-0.0071365712210536,-0.0034150707069784403,-2.0509583950042725,-1.811455011367798,3.887440830469131,-0.020509583950042726,-0.01811455011367798,0.03887440830469131 +karman_re100,ppo,147,58.8,1.2557055950164795,0.09859582036733627,1.0044306516647339,0.2946995794773102,0.8011160492897034,0.12512238323688507,0.002829392207786441,0.00043772716890089214,0.0014283163473010063,0.004083206411451101,-0.004185553640127182,-0.004746747203171253,-1.5918229818344116,-3.2561548948287964,3.9496150985360146,-0.015918229818344117,-0.032561548948287965,0.03949615098536015 +karman_re100,ppo,148,59.2,1.2044177055358887,0.21622584760189056,1.0110267400741577,0.4475783407688141,0.8656744360923767,0.22606146335601807,0.0008299134788103402,0.0014963917201384902,0.00028179914806969464,0.004416418261826038,-0.000964511011261493,-0.005597442854195833,-1.3543814420700073,-4.734993577003479,3.6227217316627502,-0.013543814420700073,-0.04734993577003479,0.0362272173166275 +karman_re100,ppo,149,59.6,1.1398087739944458,0.30029818415641785,1.0163443088531494,0.4966607391834259,0.9358198046684265,0.30029457807540894,-0.0004721273435279727,0.0023336452431976795,-0.0009766703005880117,0.004498304333537817,0.0016834128182381392,-0.005696431268006563,-0.9838943481445314,-5.9066009521484375,3.190205574035645,-0.009838943481445313,-0.05906600952148438,0.03190205574035645 +karman_re100,ppo,150,60.0,1.0710769891738892,0.3491672873497009,1.0230953693389893,0.524994432926178,1.0080912113189697,0.34644070267677307,-0.0010064217494800687,0.002993045374751091,-0.002195479581132531,0.004050251562148333,0.0033304947428405285,-0.005534989759325981,-0.4538901448249817,-6.556900501251222,2.9754382371902466,-0.004538901448249817,-0.06556900501251221,0.029754382371902467 +karman_re100,ppo,151,60.4,1.0014797449111938,0.3634691536426544,1.0294991731643677,0.5404890179634094,1.0792316198349,0.37435445189476013,-0.0007280114805325866,0.003478471888229251,-0.0035484745167195797,0.003246055217459798,0.004208202473819256,-0.00550800608471036,0.0996328741312027,-6.951733112335205,2.726415276527405,0.000996328741312027,-0.06951733112335205,0.02726415276527405 +karman_re100,ppo,152,60.8,0.9326908588409424,0.3392663598060608,1.0331953763961792,0.5268223285675049,1.1468173265457153,0.3700934946537018,0.0003907540813088417,0.003637064015492797,-0.005019245203584433,0.002573577221482992,0.004442304838448763,-0.005566616076976061,0.7070568799972534,-7.1757144927978525,2.39948046207428,0.0070705687999725346,-0.07175714492797852,0.0239948046207428 +karman_re100,ppo,153,61.2,0.8702419996261597,0.26826950907707214,1.0289292335510254,0.47111839056015015,1.210459589958191,0.32876330614089966,0.00199886504560709,0.0032762878108769655,-0.006199362687766552,0.0023593760561197996,0.004056698642671108,-0.00549333868548274,1.3113577365875244,-6.9780168533325195,2.1640647649765015,0.013113577365875245,-0.0697801685333252,0.021640647649765015 +karman_re100,ppo,154,61.6,0.8221607208251953,0.149409681558609,1.0103650093078613,0.3365952670574188,1.2621744871139526,0.24555635452270508,0.0031879672314971685,0.0022985991090536118,-0.0064195930026471615,0.0027111810632050037,0.0031793294474482536,-0.005158848129212856,1.661271572113037,-6.248705148696899,1.954854965209961,0.01661271572113037,-0.062487051486968995,0.01954854965209961 +karman_re100,ppo,155,62.0,0.8042269349098206,0.001470210961997509,0.9875531196594238,0.062893807888031,1.2796722650527954,0.10344041883945465,0.0031289071775972843,0.0008387269335798919,-0.0052892486564815044,0.003675740910694003,0.002092137932777405,-0.004782024770975113,1.578134298324585,-5.163963079452515,1.8705215454101562,0.01578134298324585,-0.051639630794525146,0.018705215454101563 +karman_re100,ppo,156,62.4,0.8291148543357849,-0.1339123398065567,0.9812114834785461,-0.2386947125196457,1.2580454349517822,-0.058959346264600754,0.0019747691694647074,-0.0005966823664493859,-0.0029964405111968517,0.004970419220626354,0.001031594816595316,-0.0045906901359558105,1.2746800184249878,-4.0336442068219185,2.637923002243042,0.012746800184249878,-0.04033644206821919,0.026379230022430422 +karman_re100,ppo,157,62.8,0.8824499249458313,-0.23978029191493988,0.9858954548835754,-0.41090384125709534,1.2018744945526123,-0.19642816483974457,0.0005123812006786466,-0.0015271077863872051,-0.00018191046547144651,0.005792616400867701,-0.0001145134519902058,-0.004552725702524185,1.0279415845870972,-3.172657549381256,4.744721233844757,0.010279415845870972,-0.03172657549381256,0.04744721233844757 +karman_re100,ppo,158,63.2,0.9486810564994812,-0.31265997886657715,0.9943296909332275,-0.48996588587760925,1.1276077032089233,-0.29458603262901306,-0.0005002783145755529,-0.002193412510678172,0.0022437728475779295,0.005848756991326809,-0.0014611005317419767,-0.004422080237418413,0.5689471960067749,-2.9395374059677124,6.634720563888549,0.005689471960067749,-0.029395374059677126,0.06634720563888549 +karman_re100,ppo,159,63.6,1.0201479196548462,-0.3573610186576843,1.003583550453186,-0.5330782532691956,1.0501092672348022,-0.35009291768074036,-0.0007132121827453375,-0.002975115552544594,0.0038842186331748962,0.005792633164674044,-0.002920354250818491,-0.003518919926136732,-0.10240942239761353,-3.054519772529602,7.299788475036621,-0.0010240942239761353,-0.03054519772529602,0.07299788475036621 +karman_re100,ppo,160,64.0,1.0913403034210205,-0.3843335211277008,1.0110703706741333,-0.5572693943977356,0.9732309579849243,-0.36774906516075134,0.0001579994277562946,-0.003626731224358082,0.004864357877522707,0.005790036171674728,-0.004964607767760754,-0.0020749273244291544,-0.8695052862167358,-2.697850823402405,7.240336418151856,-0.008695052862167358,-0.02697850823402405,0.07240336418151856 +karman_re100,ppo,161,64.4,1.1602674722671509,-0.37705010175704956,1.0153083801269531,-0.5528854131698608,0.8980662822723389,-0.3478582799434662,0.002220975235104561,-0.003903559409081936,0.004998258780688047,0.005738713778555393,-0.007346297614276409,-0.001197218312881887,-1.7890095710754395,-1.9241187572479248,6.348312139511108,-0.017890095710754395,-0.019241187572479248,0.06348312139511109 +karman_re100,ppo,162,64.8,1.2262645959854126,-0.33000606298446655,1.0122648477554321,-0.5074561238288879,0.8301210999488831,-0.281852126121521,0.004807451739907265,-0.0035564759746193886,0.0042542507871985435,0.005276574287563562,-0.009115299209952354,-0.0011660613818094134,-2.4810633659362793,-1.1933777332305908,5.079684257507324,-0.024810633659362792,-0.011933777332305908,0.05079684257507324 +karman_re100,ppo,163,65.2,1.2773606777191162,-0.23163241147994995,1.0014981031417847,-0.3690485656261444,0.7805197238922119,-0.16742223501205444,0.0059784273616969585,-0.0024521443992853165,0.0032462053932249546,0.004406793043017387,-0.009144417941570282,-0.00201777764596045,-2.564169406890869,-0.9669749736785889,4.104987353086472,-0.02564169406890869,-0.00966974973678589,0.041049873530864714 +karman_re100,ppo,164,65.6,1.2870001792907715,-0.07155625522136688,0.996823251247406,-0.05649743974208832,0.765692949295044,-0.02040097676217556,0.005055345129221678,-0.0009444359457120299,0.002361385151743889,0.003932558465749025,-0.00728463102132082,-0.003345071105286479,-2.0853848457336426,-1.73838472366333,3.888497993350029,-0.020853848457336427,-0.0173838472366333,0.03888497993350029 +karman_re100,ppo,165,66.0,1.2585424184799194,0.08876962959766388,1.0039000511169434,0.27659541368484497,0.7974429130554199,0.11658453941345215,0.0029615252278745174,0.000335827557137236,0.0014828178100287914,0.004061876330524683,-0.0043852985836565495,-0.004660556558519602,-1.6090111732482912,-3.1592941284179688,3.9625253565609455,-0.016090111732482912,-0.031592941284179686,0.039625253565609454 +karman_re100,ppo,166,66.4,1.2079269886016846,0.20891337096691132,1.010079264640808,0.44142305850982666,0.860264003276825,0.21945376694202423,0.0009370216866955161,0.001422690344043076,0.0003514729323796928,0.0043808757327497005,-0.001164738554507494,-0.005539334379136562,-1.3688640594482422,-4.630836188793182,3.6647308170795445,-0.013688640594482422,-0.046308361887931825,0.036647308170795444 +karman_re100,ppo,167,66.8,1.1444979906082153,0.2952023446559906,1.015753149986267,0.4938977360725403,0.9305679202079773,0.2958322763442993,-0.0004031158168800175,0.002281913999468088,-0.0008993002120405436,0.00448898458853364,0.0015534007688984275,-0.005682575516402721,-1.0126904249191284,-5.8355712890625,3.2169675827026367,-0.010126904249191285,-0.058355712890625,0.032169675827026366 +karman_re100,ppo,168,67.2,1.076168417930603,0.34649452567100525,1.0226645469665527,0.5229616165161133,1.0029938220977783,0.3435366451740265,-0.0009851640788838267,0.0029519996605813503,-0.0021091836970299482,0.00409578625112772,0.0032667669001966715,-0.005540735088288784,-0.48795410990715027,-6.523376941680908,2.985580801963806,-0.004879541099071503,-0.06523376941680908,0.029855808019638063 +karman_re100,ppo,169,67.6,1.0070842504501343,0.36320894956588745,1.0295875072479248,0.5397791862487793,1.0747395753860474,0.37298744916915894,-0.0007714173407293856,0.0034567085094749928,-0.0034541625063866377,0.00331094884313643,0.004182735923677683,-0.005519012920558453,0.0629548728466034,-6.928362846374513,2.7499064207077026,0.000629548728466034,-0.06928362846374513,0.027499064207077026 +karman_re100,ppo,170,68.0,0.9381916522979736,0.34194767475128174,1.0336542129516602,0.5286219120025635,1.142751932144165,0.3714985251426697,0.0002922810090240091,0.003644931595772505,-0.004940937273204327,0.0026003150269389153,0.004448002204298973,-0.005572088994085789,0.6654030084609985,-7.17430329322815,2.420949935913086,0.006654030084609986,-0.0717430329322815,0.02420949935913086 +karman_re100,ppo,171,68.4,0.8741006255149841,0.2743793725967407,1.0291343927383423,0.47648072242736816,1.2056927680969238,0.33259764313697815,0.001891543623059988,0.003322664415463805,-0.006173108704388142,0.0023304910864681005,0.004097477998584509,-0.0055003403685987,1.2790229320526123,-7.012842893600464,2.1743252277374268,0.012790229320526123,-0.07012842893600464,0.021743252277374267 +karman_re100,ppo,172,68.8,0.8245253562927246,0.15875206887722015,1.011303186416626,0.3500240445137024,1.2588375806808472,0.25332602858543396,0.0031533977016806602,0.0023868915159255266,-0.0064805434085428715,0.0026399302296340466,0.00324994046241045,-0.00517413392663002,1.6572434902191162,-6.314413070678711,1.96124529838562,0.016572434902191163,-0.06314413070678711,0.0196124529838562 +karman_re100,ppo,173,69.2,0.8043463826179504,0.0118006756529212,0.988176703453064,0.08565326035022736,1.2797569036483765,0.11494054645299911,0.0031973281875252724,0.0009472672827541828,-0.0054269228130578995,0.0035921738017350435,0.002179586561396718,-0.004800284281373024,1.602863788604736,-5.241159915924072,1.8516058921813963,0.016028637886047362,-0.05241159915924072,0.018516058921813964 +karman_re100,ppo,174,69.6,0.8266105055809021,-0.12532508373260498,0.9807437062263489,-0.22096624970436096,1.2611072063446045,-0.04799183830618858,0.0020916839130222797,-0.0005107581382617354,-0.003183787688612938,0.004914413206279278,0.0011180111905559897,-0.004606624133884907,1.2968906164169312,-4.101403526961803,2.5322686433792114,0.012968906164169312,-0.041014035269618034,0.025322686433792114 +karman_re100,ppo,175,70.0,0.8790719509124756,-0.23332317173480988,0.985606849193573,-0.4029136896133423,1.207309365272522,-0.18824739754199982,0.000609277980402112,-0.0014761070488020778,-0.00037082680501043797,0.005792204290628433,-2.330195638933219e-05,-0.004569022450596094,1.0482068061828613,-3.2051416635513306,4.589549481868744,0.010482068061828614,-0.03205141663551331,0.04589549481868744 +karman_re100,ppo,176,70.4,0.9440944194793701,-0.3087753653526306,0.993537425994873,-0.4861060380935669,1.1330156326293945,-0.28952208161354065,-0.00045761323417536914,-0.002139866119250655,0.0020936913788318634,0.005861850921064615,-0.0013742097653448582,-0.004456005059182644,0.6094244718551636,-2.931985378265381,6.554505109786987,0.006094244718551636,-0.02931985378265381,0.06554505109786987 +karman_re100,ppo,177,70.8,1.0146212577819824,-0.3548351228237152,1.0021538734436035,-0.530942440032959,1.0546917915344238,-0.34792494773864746,-0.0007319179130718112,-0.0029208408668637276,0.0037877243012189865,0.0057836114428937435,-0.0028162833768874407,-0.0036038586404174566,-0.05452031642198563,-3.055388569831848,7.279466152191162,-0.0005452031642198563,-0.030553885698318482,0.07279466152191162 +karman_re100,ppo,178,71.2,1.086175799369812,-0.3834139108657837,1.0102142095565796,-0.5565402507781982,0.9780845046043396,-0.368019700050354,6.304679118329659e-05,-0.0035917016211897135,0.004824234638363123,0.005779251456260681,-0.004806194454431534,-0.002154674381017685,-0.8111729621887206,-2.7404839992523193,7.26473331451416,-0.008111729621887206,-0.027404839992523192,0.0726473331451416 +karman_re100,ppo,179,71.6,1.1555356979370117,-0.3789947032928467,1.0150885581970215,-0.5544776916503906,0.9029342532157898,-0.3509508967399597,0.002053784905001521,-0.00390424276702106,0.005031266715377569,0.005754488054662943,-0.007177369669079781,-0.0012498267460614443,-1.7268521785736086,-1.9800403118133545,6.4295077323913565,-0.017268521785736086,-0.019800403118133546,0.06429507732391357 +karman_re100,ppo,180,72.0,1.222208857536316,-0.33471062779426575,1.013147234916687,-0.5125871300697327,0.8345651030540466,-0.28829020261764526,0.004650847055017948,-0.0036042239516973495,0.004329785704612732,0.0053425985388457775,-0.00901870522648096,-0.0011730463011190295,-2.4479880332946777,-1.2394444942474365,5.168981075286865,-0.024479880332946777,-0.012394444942474365,0.05168981075286865 +karman_re100,ppo,181,72.4,1.2754613161087036,-0.24075350165367126,1.0030003786087036,-0.3838352859020233,0.7833920121192932,-0.17676463723182678,0.005958286114037037,-0.0025619962252676487,0.0033108340576291084,0.004470711573958397,-0.009197837673127651,-0.0019455133005976677,-2.5767087936401367,-0.9613592624664307,4.160302177071571,-0.025767087936401367,-0.009613592624664307,0.04160302177071572 +karman_re100,ppo,182,72.8,1.2871497869491577,-0.08343678712844849,0.9965991973876953,-0.08167124539613724,0.7646645903587341,-0.030647756531834602,0.00515377800911665,-0.0010480720084160566,0.0024092886596918106,0.003942897543311119,-0.007457338739186525,-0.003233550814911723,-2.1266980171203613,-1.654055118560791,3.887233123183251,-0.021266980171203615,-0.01654055118560791,0.03887233123183251 +karman_re100,ppo,183,73.2,1.2603298425674438,0.07899618148803711,1.0030412673950195,0.2584035098552704,0.7930259108543396,0.10861019045114517,0.0031156425829976797,0.0002514829393476248,0.0015412537613883615,0.0040301368571817875,-0.004612044896930456,-0.004550501238554716,-1.6322339773178098,-3.046919822692871,3.9731637611985207,-0.0163223397731781,-0.03046919822692871,0.039731637611985206 +karman_re100,ppo,184,73.6,1.2113629579544067,0.20163168013095856,1.0096994638442993,0.4353336691856384,0.8551643490791321,0.21344339847564697,0.0010681160492822528,0.0013501569628715515,0.0004445738741196692,0.0043558236211538315,-0.0013820853782817721,-0.0054933177307248116,-1.384557843208313,-4.52251124382019,3.6986617445945735,-0.01384557843208313,-0.0452251124382019,0.03698661744594574 +karman_re100,ppo,185,74.0,1.1488322019577026,0.29020798206329346,1.0153108835220337,0.491623193025589,0.9255275726318359,0.29173365235328674,-0.0003288904554210603,0.002231825841590762,-0.0008057213854044676,0.00450353417545557,0.0014048232696950436,-0.005704078823328018,-1.0447635650634766,-5.7643303871154785,3.2430384755134587,-0.010447635650634765,-0.05764330387115479,0.032430384755134586 +karman_re100,ppo,186,74.4,1.081129550933838,0.3441074788570404,1.0225852727890015,0.5215240716934204,0.9985010027885437,0.34101375937461853,-0.0009707468561828136,0.0029085176065564156,-0.002021058928221464,0.00415434455499053,0.003180163912475109,-0.0055677699856460094,-0.5266741514205933,-6.493624448776244,2.995398998260498,-0.005266741514205932,-0.06493624448776245,0.02995398998260498 +karman_re100,ppo,187,74.8,1.0116946697235107,0.36334869265556335,1.0292227268218994,0.5396876335144043,1.0701448917388916,0.37186869978904724,-0.0008186112390831113,0.0034285716246813536,-0.0033617548178881407,0.0033683297224342823,0.004135736729949713,-0.0055222525261342525,0.02323569357395172,-6.905682325363159,2.7731603384017944,0.00023235693573951723,-0.06905682325363159,0.027731603384017946 +karman_re100,ppo,188,75.2,0.9418745636940002,0.3451635241508484,1.0328527688980103,0.5311794281005859,1.1377867460250854,0.37305736541748047,0.00019009703828487545,0.003642706200480461,-0.00485278619453311,0.0026184848975390196,0.0044445982202887535,-0.005559991579502821,0.6222351789474487,-7.167855739593507,2.440005898475647,0.006222351789474488,-0.07167855739593507,0.02440005898475647 +karman_re100,ppo,189,75.6,0.8773972392082214,0.2811698913574219,1.0294281244277954,0.4826641380786896,1.201321005821228,0.3364691436290741,0.0017810415010899305,0.0033619822934269905,-0.006119931116700172,0.002314516343176365,0.004143386147916317,-0.00550279812887311,1.2440054416656494,-7.040446043014526,2.1850714683532715,0.012440054416656495,-0.07040446043014527,0.021850714683532717 +karman_re100,ppo,190,76.0,0.8266516923904419,0.16879767179489136,1.0129047632217407,0.3637629747390747,1.2561089992523193,0.26063498854637146,0.00311170588247478,0.0024732807651162148,-0.006501799449324608,0.0026034340262413025,0.0033319357316941023,-0.005204705521464348,1.6486814022064211,-6.376839399337769,1.9752154350280764,0.01648681402206421,-0.06376839399337769,0.019752154350280764 +karman_re100,ppo,191,76.4,0.8041878342628479,0.022784965112805367,0.9899134039878845,0.10825163871049881,1.280174970626831,0.12581664323806763,0.0032499541994184256,0.0010618377709761262,-0.005537030752748251,0.0035267581697553396,0.002265625400468707,-0.004832620266824961,1.622880220413208,-5.319099426269531,1.849571466445923,0.01622880220413208,-0.053190994262695315,0.01849571466445923 +karman_re100,ppo,192,76.8,0.8239192962646484,-0.11648177355527878,0.9817142486572266,-0.20332588255405426,1.2644826173782349,-0.03734467923641205,0.0021914539393037558,-0.00041727139614522457,-0.003367246361449361,0.004829114302992821,0.0011912271147593856,-0.004620896186679602,1.3184127807617188,-4.17626616358757,2.442461133003235,0.013184127807617187,-0.041762661635875706,0.024424611330032348 +karman_re100,ppo,193,77.2,0.8743618726730347,-0.2266787886619568,0.9853227734565735,-0.3951602578163147,1.212018609046936,-0.1798282414674759,0.0007026363164186478,-0.001422635279595852,-0.0005759239429607987,0.005742108449339867,5.7473145716357976e-05,-0.004565557464957237,1.0690462589263916,-3.2552576065063477,4.421839088201523,0.010690462589263917,-0.032552576065063475,0.04421839088201523 +karman_re100,ppo,194,77.6,0.9385005831718445,-0.30476102232933044,0.9927608370780945,-0.48238226771354675,1.1382203102111816,-0.28387895226478577,-0.00041128427255898714,-0.002089123474434018,0.0019380967132747173,0.0058422512374818325,-0.001281829085201025,-0.004462200216948986,0.6531211137771606,-2.9349172115325928,6.44809365272522,0.006531211137771607,-0.02934917211532593,0.0644809365272522 +karman_re100,ppo,195,78.0,1.009294867515564,-0.35228291153907776,1.0016835927963257,-0.5288141369819641,1.0602556467056274,-0.3451198935508728,-0.0007424062350764871,-0.002864645794034004,0.0036924765445291996,0.005765893496572971,-0.0026955818757414818,-0.003688810160383582,-0.0023792609572410583,-3.05685555934906,7.250500440597535,-2.3792609572410583e-05,-0.0305685555934906,0.07250500440597535 +karman_re100,ppo,196,78.4,1.0811251401901245,-0.38236287236213684,1.0099910497665405,-0.5556803345680237,0.9836810827255249,-0.3676852285861969,-3.571494380594231e-05,-0.0035539581440389156,0.004782486706972122,0.005780692212283611,-0.004626289941370487,-0.002262172754853964,-0.7479157447814941,-2.7892428636550903,7.287867307662964,-0.0074791574478149415,-0.027892428636550903,0.07287867307662964 +karman_re100,ppo,197,78.8,1.1512595415115356,-0.3808055818080902,1.0156079530715942,-0.5559195876121521,0.9087507128715515,-0.35341235995292664,0.001866926671937108,-0.0039013035129755735,0.005054668989032507,0.005771339405328035,-0.006997183430939913,-0.0012990086106583476,-1.6581898927688596,-2.0444629192352295,6.520251035690308,-0.016581898927688597,-0.020444629192352296,0.06520251035690308 +karman_re100,ppo,198,79.2,1.2180715799331665,-0.3392331600189209,1.0140165090560913,-0.5174384117126465,0.8393537402153015,-0.29409369826316833,0.004471024964004755,-0.003648207988590002,0.0043968199752271175,0.0053987097926437855,-0.008931132964789867,-0.0011403118260204792,-2.411848545074463,-1.2885921001434326,5.264089941978455,-0.02411848545074463,-0.012885921001434326,0.052640899419784545 +karman_re100,ppo,199,79.6,1.272459626197815,-0.2497076541185379,1.0033437013626099,-0.3980185389518738,0.7857096195220947,-0.1857573539018631,0.005920222960412502,-0.0026587331667542458,0.0033743467647582293,0.004527662880718708,-0.009275516495108604,-0.0018373169004917145,-2.5931272506713867,-0.949753999710083,4.211762472987175,-0.025931272506713867,-0.00949753999710083,0.04211762472987175 +karman_re100,ppo,200,80.0,1.2875787019729614,-0.09571263194084167,0.9960576891899109,-0.10734409093856812,0.7642031908035278,-0.0410572849214077,0.005282176658511162,-0.0011533470824360847,0.002468711230903864,0.003952619154006243,-0.007654265966266394,-0.003109896555542946,-2.1755118370056152,-1.5650465488433838,3.8762319833040237,-0.021755118370056153,-0.015650465488433837,0.03876231983304024 +karman_re100,ppo,201,80.4,1.2631146907806396,0.06871212273836136,1.002199411392212,0.2388206124305725,0.7894997596740723,0.10013492405414581,0.0032949340529739857,0.00017635499534662813,0.0016223625279963017,0.00401104474440217,-0.0048543717712163925,-0.004459276329725981,-1.6606779098510742,-2.9271055459976196,3.9731561653316025,-0.016606779098510743,-0.029271055459976197,0.039731561653316025 +karman_re100,ppo,202,80.8,1.2156046628952026,0.19420012831687927,1.009442925453186,0.42843902111053467,0.8505890369415283,0.2070341557264328,0.0012033529346808791,0.0012837195536121726,0.0005458567757159472,0.004345828667283058,-0.0016238007228821516,-0.005469810217618942,-1.4039603471755981,-4.420913964509964,3.7260458767414093,-0.014039603471755981,-0.04420913964509964,0.037260458767414094 +karman_re100,ppo,203,81.2,1.1540610790252686,0.2851642370223999,1.0153954029083252,0.4890683889389038,0.9210790395736694,0.2873018682003021,-0.00025535255554132164,0.0021803854033350945,-0.0007113784668035805,0.004522158298641443,0.0012234399328008294,-0.005732127930969,-1.079991340637207,-5.696888446807861,3.268242239952088,-0.010799913406372071,-0.056968884468078615,0.03268242239952088 +karman_re100,ppo,204,81.6,1.0858160257339478,0.3416438698768616,1.0219721794128418,0.5197847485542297,0.9933199882507324,0.3382543623447418,-0.0009538453887216747,0.0028631058521568775,-0.0019321792060509324,0.004200944676995277,0.0030674112495034933,-0.005581698380410671,-0.5685595273971558,-6.461647033691406,3.005959212779999,-0.005685595273971558,-0.06461647033691406,0.03005959212779999 +karman_re100,ppo,205,82.0,1.016086459159851,0.3633546531200409,1.028347373008728,0.5390926003456116,1.0646806955337524,0.3704298436641693,-0.0008638190338388085,0.003396241459995508,-0.003258139593526721,0.003420739434659481,0.004078362137079239,-0.005511896684765816,-0.018758326768875122,-6.878831386566163,2.7936750650405884,-0.00018758326768875122,-0.06878831386566163,0.027936750650405885 +karman_re100,ppo,206,82.4,0.946541428565979,0.34814193844795227,1.0326842069625854,0.5330195426940918,1.1329684257507324,0.37430912256240845,9.376872912980616e-05,0.00363719929009676,-0.004736603703349829,0.0026584819424897432,0.004442596808075905,-0.00554847763851285,0.5757558345794678,-7.157240390777587,2.4604647159576416,0.005757558345794678,-0.07157240390777588,0.024604647159576415 +karman_re100,ppo,207,82.8,0.8816217184066772,0.28764304518699646,1.0302352905273438,0.4878076910972595,1.1969019174575806,0.34018561244010925,0.001664601149968803,0.003400075249373913,-0.006029194686561823,0.0023384117521345615,0.004191388841718435,-0.005518390331417322,1.2014415264129639,-7.064778566360473,2.201619267463684,0.012014415264129639,-0.07064778566360473,0.02201619267463684 +karman_re100,ppo,208,83.2,0.8299579620361328,0.1784846931695938,1.0152701139450073,0.37606608867645264,1.2533526420593262,0.2678627669811249,0.003043121425434947,0.0025536383036524057,-0.006493661552667618,0.0025829009246081114,0.003404061309993267,-0.005243357270956039,1.6286935806274414,-6.438104629516602,1.9969549179077148,0.016286935806274414,-0.06438104629516601,0.01996954917907715 +karman_re100,ppo,209,83.6,0.8048240542411804,0.033564504235982895,0.9920695424079895,0.1306973099708557,1.2801165580749512,0.13697552680969238,0.0032675135880708694,0.0011705108918249607,-0.005636274814605713,0.0034452034160494804,0.0023383265361189842,-0.004860420245677233,1.6337321996688845,-5.402191162109375,1.8531994819641116,0.016337321996688844,-0.05402191162109375,0.018531994819641115 +karman_re100,ppo,210,84.0,0.8207891583442688,-0.1075688898563385,0.9818519353866577,-0.18394334614276886,1.2663350105285645,-0.026090305298566818,0.0022819535806775093,-0.0003252855967730284,-0.003552462672814727,0.004716128576546907,0.0012554797576740384,-0.0046248952858150005,1.336909532546997,-4.2601059675216675,2.3582834005355835,0.013369095325469971,-0.04260105967521668,0.023582834005355834 +karman_re100,ppo,211,84.4,0.8698123097419739,-0.21978376805782318,0.9849066734313965,-0.3857911229133606,1.2162953615188599,-0.17066922783851624,0.0008004594128578901,-0.0013696711976081133,-0.0007817885489203036,0.005682525224983692,0.00014087039744481444,-0.004555686842650175,1.0868139266967773,-3.311558604240417,4.243656352162361,0.010868139266967773,-0.03311558604240417,0.04243656352162361 +karman_re100,ppo,212,84.8,0.9334992170333862,-0.3003843426704407,0.9923223853111267,-0.47761479020118713,1.1437755823135376,-0.277506947517395,-0.000351594208041206,-0.0020417599007487297,0.0017867950955405831,0.005844199098646641,-0.001176854595541954,-0.004475260153412819,0.694230318069458,-2.9392529726028442,6.333557367324829,0.00694230318069458,-0.029392529726028443,0.0633355736732483 +karman_re100,ppo,213,85.2,1.0042986869812012,-0.34946078062057495,1.0013396739959717,-0.5259274840354919,1.0661430358886719,-0.3417089879512787,-0.0007477995241060853,-0.002810810226947069,0.003595303976908326,0.005776047706604004,-0.002576361410319805,-0.0037860944867134094,0.047878995537757874,-3.051949441432953,7.225590229034425,0.0004787899553775787,-0.03051949441432953,0.07225590229034425 +karman_re100,ppo,214,85.6,1.076566219329834,-0.38097140192985535,1.0100769996643066,-0.554125964641571,0.9899103045463562,-0.36681511998176575,-0.000129657841171138,-0.003512811614200473,0.004726969171315432,0.005789865739643574,-0.00446225143969059,-0.002368254354223609,-0.6889297962188721,-2.83006489276886,7.311631917953491,-0.006889297962188721,-0.0283006489276886,0.07311631917953491 +karman_re100,ppo,215,86.0,1.1463791131973267,-0.38228362798690796,1.015343189239502,-0.5567300319671631,0.9142848253250122,-0.355387806892395,0.0016903135692700744,-0.0038926939014345407,0.005060647148638964,0.005776288453489542,-0.006837938446551561,-0.0013310201466083527,-1.5921071767807007,-2.103261113166809,6.60422945022583,-0.015921071767807007,-0.021032611131668093,0.0660422945022583 +karman_re100,ppo,216,86.4,1.212956190109253,-0.3435089886188507,1.0137711763381958,-0.5216901898384094,0.843783974647522,-0.29962873458862305,0.0042940108105540276,-0.0036870946642011404,0.004458938259631395,0.005437931977212429,-0.008847851306200027,-0.0011024607811123133,-2.3753561973571777,-1.3315258026123047,5.350340127944946,-0.023753561973571778,-0.013315258026123046,0.05350340127944946 +karman_re100,ppo,217,86.8,1.2694740295410156,-0.25848016142845154,1.0035781860351562,-0.4115237891674042,0.7888901233673096,-0.19484513998031616,0.005901114549487829,-0.002749501494690776,0.0034463009797036648,0.004581095185130835,-0.00933290459215641,-0.001748064300045371,-2.605257749557495,-0.9416012763977051,4.262064516544342,-0.026052577495574953,-0.009416012763977051,0.04262064516544342 +karman_re100,ppo,218,87.2,1.2883130311965942,-0.10828287154436111,0.9952021241188049,-0.1337418407201767,0.7646480798721313,-0.05203647539019585,0.005395463667809963,-0.0012585058575496078,0.0025371694937348366,0.003971424885094166,-0.007819166406989098,-0.0030238216277211905,-2.2172935009002686,-1.486572504043579,3.8690271079540253,-0.022172935009002685,-0.014865725040435792,0.038690271079540255 +karman_re100,ppo,219,87.6,1.2667324542999268,0.05799000337719917,1.0010610818862915,0.21732117235660553,0.786884069442749,0.09077377617359161,0.003452862147241831,9.308502194471657e-05,0.0016932805301621556,0.003998439759016037,-0.005071377381682396,-0.004389248788356781,-1.6870236396789553,-2.825793147087097,3.9723102003335953,-0.016870236396789553,-0.02825793147087097,0.03972310200333595 +karman_re100,ppo,220,88.0,1.2205002307891846,0.18668599426746368,1.0088990926742554,0.4204804301261902,0.8464110493659973,0.1999548375606537,0.0013338109711185098,0.0012098331935703754,0.0006286210846155882,0.004328473471105099,-0.0018514670664444566,-0.005431986879557371,-1.4207714796066284,-4.327662855386734,3.7522561848163605,-0.014207714796066284,-0.04327662855386734,0.037522561848163605 +karman_re100,ppo,221,88.4,1.1588369607925415,0.2800590395927429,1.0143741369247437,0.4862658977508545,0.9157609343528748,0.28232505917549133,-0.00018270566943101585,0.0021246974356472492,-0.0006311532342806458,0.004516969434916973,0.0010467356769368052,-0.005724746733903885,-1.1107492446899414,-5.623740077018738,3.296233117580414,-0.011107492446899415,-0.05623740077018738,0.03296233117580414 +karman_re100,ppo,222,88.8,1.090721607208252,0.33900001645088196,1.0210367441177368,0.5178501009941101,0.9877769351005554,0.3351367115974426,-0.0009294247138313949,0.002821137895807624,-0.0018485498148947954,0.004229911137372255,0.0029632749501615763,-0.005574225913733244,-0.6068542003631592,-6.42104411125183,3.0182475447654724,-0.006068542003631592,-0.06421044111251831,0.030182475447654726 +karman_re100,ppo,223,89.2,1.0213216543197632,0.3630475103855133,1.0278496742248535,0.5381162762641907,1.0594685077667236,0.3686215579509735,-0.0008957672398537397,0.0033698612824082375,-0.0031516922172158957,0.0034804351162165403,0.004031819757074118,-0.005504544824361801,-0.057812824845314026,-6.851138830184937,2.8129690885543823,-0.0005781282484531402,-0.06851138830184937,0.028129690885543825 +karman_re100,ppo,224,89.6,0.9519050717353821,0.3506355583667755,1.0327080488204956,0.5343368649482727,1.128226399421692,0.3752061128616333,3.0910696295904927e-06,0.003636591136455536,-0.004620843101292849,0.002717321738600731,0.004441407043486834,-0.005553392227739096,0.5306264162063599,-7.147153615951539,2.4842857122421265,0.005306264162063598,-0.07147153615951539,0.024842857122421264 +karman_re100,ppo,225,90.0,0.8868430852890015,0.2934581935405731,1.0313969850540161,0.49219080805778503,1.1928213834762573,0.3436565101146698,0.001544472179375589,0.0034414632245898247,-0.005947599187493324,0.0023584794253110886,0.00422578165307641,-0.005539553239941597,1.1574416160583496,-7.088856935501099,2.220180034637451,0.011574416160583497,-0.07088856935501099,0.022201800346374513 +karman_re100,ppo,226,90.4,0.8334459662437439,0.18747548758983612,1.0169780254364014,0.3870713710784912,1.2499388456344604,0.27482983469963074,0.0029658046551048756,0.0026366664096713066,-0.0065006990917027,0.0025446906220167875,0.003463647561147809,-0.005269928369671106,1.607266902923584,-6.502689838409424,2.012279510498047,0.01607266902923584,-0.06502689838409424,0.020122795104980468 +karman_re100,ppo,227,90.8,0.8052761554718018,0.044017091393470764,0.9930453300476074,0.15267834067344666,1.2789802551269531,0.1483014076948166,0.0032904294785112143,0.0012771369656547904,-0.005746910348534584,0.0033516972325742245,0.0024071226362138987,-0.004876845981925726,1.645127773284912,-5.485790848731995,1.8507165908813479,0.016451277732849122,-0.054857908487319945,0.01850716590881348 +karman_re100,ppo,228,91.2,0.8183872103691101,-0.09861979633569717,0.981630802154541,-0.16341842710971832,1.268225908279419,-0.014386271126568317,0.0023769100662320852,-0.00022925039229448885,-0.0037341671995818615,0.004619447980076075,0.0013295181561261415,-0.004626067820936441,1.3574645519256592,-4.338964641094208,2.2742785215377808,0.013574645519256592,-0.043389646410942076,0.022742785215377807 +karman_re100,ppo,229,91.6,0.8658688068389893,-0.21279853582382202,0.9842140078544617,-0.3755703270435333,1.2206196784973145,-0.161346897482872,0.000906113360542804,-0.0013160358648747206,-0.0009737703367136419,0.005656289868056774,0.00023649854119867086,-0.00455807289108634,1.103440523147583,-3.362452208995819,4.077215030789375,0.01103440523147583,-0.03362452208995819,0.04077215030789375 +karman_re100,ppo,230,92.0,0.9291066527366638,-0.2958466410636902,0.9918396472930908,-0.4726090133190155,1.1493984460830688,-0.2712089419364929,-0.00028998914058320224,-0.0019941290374845266,0.0016376733547076583,0.005873612128198147,-0.0010731784859672189,-0.004498801194131374,0.7312579154968262,-2.93766713142395,6.23086142539978,0.007312579154968262,-0.029376671314239503,0.06230861425399781 +karman_re100,ppo,231,92.4,0.9997711777687073,-0.34656062722206116,1.0009829998016357,-0.5230631232261658,1.0719232559204102,-0.3385101556777954,-0.0007491111755371094,-0.002753217238932848,0.003494472708553076,0.005794653203338385,-0.0024722525849938393,-0.003879253752529621,0.09428815543651581,-3.0404300689697266,7.206244707107544,0.0009428815543651581,-0.030404300689697267,0.07206244707107544 +karman_re100,ppo,232,92.8,1.0713286399841309,-0.3794049024581909,1.0091732740402222,-0.5526182651519775,0.9949265122413635,-0.3662053644657135,-0.0002115160459652543,-0.00346999429166317,0.004662854131311178,0.005789561662822962,-0.004318386781960726,-0.002458872739225626,-0.6347399950027466,-2.8657004833221436,7.329292297363281,-0.006347399950027466,-0.028657004833221436,0.07329292297363281 +karman_re100,ppo,233,93.2,1.1411672830581665,-0.38348808884620667,1.0146297216415405,-0.5575405359268188,0.9190954566001892,-0.3575775623321533,0.0015312257455661893,-0.0038809797260910273,0.005063729360699654,0.005773736163973808,-0.006698980461806059,-0.0013753152452409267,-1.5290043354034424,-2.1549155712127686,6.676895380020141,-0.015290043354034425,-0.021549155712127687,0.06676895380020141 +karman_re100,ppo,234,93.6,1.2081583738327026,-0.34744688868522644,1.01396906375885,-0.5257189869880676,0.848239541053772,-0.30529358983039856,0.004129811655730009,-0.0037232660688459873,0.0045265015214681625,0.0054777697660028934,-0.00874241627752781,-0.0010905804811045527,-2.3382866382598877,-1.3774259090423584,5.42787230014801,-0.02338286638259888,-0.013774259090423584,0.0542787230014801 +karman_re100,ppo,235,94.0,1.266350269317627,-0.26662418246269226,1.0044950246810913,-0.42389771342277527,0.7920120358467102,-0.20392541587352753,0.0058723087422549725,-0.002838298911228776,0.003522631246596575,0.004645312204957008,-0.00935413222759962,-0.0016939431661739945,-2.6096110343933105,-0.9437453746795654,4.320893347263336,-0.026096110343933106,-0.009437453746795655,0.04320893347263336 +karman_re100,ppo,236,94.4,1.288877010345459,-0.12037313729524612,0.9958163499832153,-0.15887503325939178,0.765432596206665,-0.06289729475975037,0.005486977286636829,-0.0013630330795422196,0.002596785081550479,0.003997371532022953,-0.007958752103149891,-0.0029469772707670927,-2.252678632736206,-1.420837640762329,3.873944237828255,-0.02252678632736206,-0.014208376407623291,0.03873944237828255 +karman_re100,ppo,237,94.8,1.2692973613739014,0.04734925180673599,1.0006476640701294,0.1957879215478897,0.7839707136154175,0.08160550892353058,0.0035989517346024513,-5.482853339344729e-06,0.0017488080775365233,0.003981684800237417,-0.005273514427244663,-0.004303778056055307,-1.7120082378387451,-2.729450821876526,3.973385728895664,-0.01712008237838745,-0.027294508218765258,0.03973385728895664 +karman_re100,ppo,238,95.2,1.2238876819610596,0.17892199754714966,1.0081063508987427,0.41209766268730164,0.8412835001945496,0.1931253969669342,0.001457519712857902,0.0011338851181790233,0.0007015818846412003,0.004297521896660328,-0.0020680271554738283,-0.005366732366383076,-1.4346356391906738,-4.223604321479797,3.782691463828087,-0.014346356391906739,-0.04223604321479797,0.03782691463828087 +karman_re100,ppo,239,95.6,1.1632404327392578,0.27451708912849426,1.0137096643447876,0.4834696650505066,0.9105228185653687,0.2774074077606201,-0.00010239082621410489,0.002066779648885131,-0.0005490868352353573,0.004504142329096794,0.0008813539752736688,-0.005708881188184023,-1.1373612880706787,-5.542818784713745,3.3287298083305363,-0.011373612880706787,-0.055428187847137454,0.03328729808330536 +karman_re100,ppo,240,96.0,1.095483422279358,0.33594754338264465,1.0204278230667114,0.5160081386566162,0.9825805425643921,0.3321366608142853,-0.0008963915170170367,0.0027799243107438087,-0.001768309623003006,0.004258320201188326,0.0028736211825162172,-0.005579841323196888,-0.6430068016052246,-6.378908395767212,3.031022012233734,-0.006430068016052246,-0.06378908395767212,0.03031022012233734 +karman_re100,ppo,241,96.4,1.026444435119629,0.3623696267604828,1.027605652809143,0.5372405052185059,1.0547308921813965,0.36685463786125183,-0.0009204650414176285,0.0033379143569618464,-0.0030537450220435858,0.003547593019902706,0.003988645039498806,-0.005511032417416573,-0.09387311339378357,-6.8277928829193115,2.82851243019104,-0.0009387311339378357,-0.06827792882919312,0.0282851243019104 +karman_re100,ppo,242,96.8,0.9571364521980286,0.35273638367652893,1.0329093933105469,0.5357800722122192,1.1240724325180054,0.3760013282299042,-8.354428427992389e-05,0.003633642103523016,-0.004523364827036858,0.002764756791293621,0.004434237256646156,-0.005557636730372906,0.4878481924533844,-7.133790016174317,2.5094162225723267,0.004878481924533844,-0.07133790016174317,0.025094162225723266 +karman_re100,ppo,243,97.2,0.8909081220626831,0.2988894581794739,1.0315968990325928,0.49671775102615356,1.188361406326294,0.34693658351898193,0.001427654642611742,0.0034762106370180845,-0.005887852516025305,0.002355511300265789,0.0042555793188512325,-0.005545778665691614,1.117324948310852,-7.11088752746582,2.2348090410232544,0.01117324948310852,-0.0711088752746582,0.022348090410232543 +karman_re100,ppo,244,97.6,0.8361095190048218,0.19624941051006317,1.0178921222686768,0.3978534936904907,1.246254324913025,0.28127428889274597,0.0028982495423406363,0.0027128509245812893,-0.0065186540596187115,0.0024940960574895144,0.003526964457705617,-0.005287681240588427,1.5904976129531863,-6.560794115066528,2.023212194442749,0.015904976129531862,-0.06560794115066529,0.02023212194442749 +karman_re100,ppo,245,98.0,0.8058244585990906,0.054511409252882004,0.9941537380218506,0.17381449043750763,1.2782493829727173,0.15895548462867737,0.003325578523799777,0.0013873917050659657,-0.005853097420185804,0.003269495675340295,0.002488575177267194,-0.00489649036899209,1.6607863903045657,-5.5632113218307495,1.8484480381011963,0.016607863903045656,-0.055632113218307494,0.018484480381011963 +karman_re100,ppo,246,98.4,0.8160344958305359,-0.08953186869621277,0.9815813302993774,-0.14325791597366333,1.2704005241394043,-0.003129011718556285,0.002479001646861434,-0.00013519893400371075,-0.003907197620719671,0.004541503731161356,0.00141136406455189,-0.004640490282326937,1.3820898532867432,-4.415612429380417,2.2002410888671875,0.013820898532867432,-0.044156124293804166,0.022002410888671876 +karman_re100,ppo,247,98.8,0.8622753620147705,-0.20575934648513794,0.9840320348739624,-0.36569535732269287,1.225470781326294,-0.15235163271427155,0.0010187475709244609,-0.0012578957248479128,-0.0011693426640704274,0.005628526210784912,0.0003215789911337197,-0.004571717232465744,1.1208117008209229,-3.4109846353530884,3.9199351966381073,0.011208117008209229,-0.034109846353530884,0.03919935196638107 +karman_re100,ppo,248,99.2,0.9246035218238831,-0.2913236618041992,0.9913713335990906,-0.468120813369751,1.1549696922302246,-0.2651974856853485,-0.00022893596906214952,-0.0019456008449196815,0.0014756000600755215,0.005885007791221142,-0.000984571292065084,-0.004521903116255999,0.7675789594650269,-2.941373109817505,6.116973638534546,0.007675789594650269,-0.02941373109817505,0.06116973638534546 +karman_re100,ppo,249,99.6,0.9944092035293579,-0.3437724709510803,0.9999315738677979,-0.5206483006477356,1.0769157409667969,-0.3354867100715637,-0.0007479513296857476,-0.002697117393836379,0.003383259754627943,0.005790314171463251,-0.002375431824475527,-0.0039517940022051334,0.14157360792160034,-3.033099353313446,7.173145294189453,0.0014157360792160035,-0.03033099353313446,0.07173145294189454 +karman_re100,ppo,250,100.0,1.06608247756958,-0.3778597116470337,1.0083850622177124,-0.5514134764671326,0.9999198913574219,-0.36571258306503296,-0.0002866485738195479,-0.003427402349188924,0.004601773805916309,0.005779431667178869,-0.004170174710452557,-0.0025506368838250637,-0.5793777704238892,-2.898499011993408,7.337913990020751,-0.005793777704238892,-0.028984990119934082,0.07337913990020752 +karman_re100,ppo,251,100.4,1.136276364326477,-0.3846273720264435,1.0142940282821655,-0.5585086345672607,0.9240942597389221,-0.3597453236579895,0.001376133761368692,-0.0038679870776832104,0.005073005333542824,0.005777422338724136,-0.006510906387120485,-0.0014189217472448945,-1.4633177518844604,-2.2109779119491577,6.747976541519165,-0.014633177518844605,-0.022109779119491576,0.06747976541519166 +karman_re100,ppo,252,100.8,1.2037441730499268,-0.35129478573799133,1.0145450830459595,-0.5296716094017029,0.8528861999511719,-0.3107559382915497,0.003950107842683792,-0.0037589548155665398,0.004593231249600649,0.005526758264750242,-0.008619873784482479,-0.0011016922071576118,-2.2923552989959717,-1.4261071681976318,5.524386882781982,-0.022923552989959718,-0.01426107168197632,0.05524386882781983 +karman_re100,ppo,253,101.2,1.2635687589645386,-0.2743683159351349,1.0059740543365479,-0.43524083495140076,0.795463502407074,-0.21259990334510803,0.005811271723359823,-0.002931492403149605,0.0035922133829444647,0.004714672453701496,-0.009368778206408024,-0.001641018781810999,-2.610690116882324,-0.9540369510650635,4.388367176055908,-0.026106901168823242,-0.009540369510650635,0.04388367176055908 +karman_re100,ppo,254,101.6,1.288639783859253,-0.13214744627475739,0.9962246417999268,-0.1827607899904251,0.7656749486923218,-0.07332105189561844,0.005560559686273336,-0.0014725754735991359,0.0026495468337088823,0.00402358453720808,-0.008103766478598118,-0.0028495865408331156,-2.290587902069092,-1.3565590381622314,3.8820001631975174,-0.022905879020690918,-0.013565590381622314,0.03882000163197517 +karman_re100,ppo,255,102.0,1.2709928750991821,0.036612965166568756,1.0000336170196533,0.1740042269229889,0.7805321216583252,0.07268200814723969,0.0037522423081099987,-7.179470412665978e-05,0.0018044160678982735,0.003961025271564722,-0.005484755616635084,-0.004197315778583288,-1.7417070865631104,-2.623952031135559,3.973345253616572,-0.017417070865631105,-0.026239520311355593,0.03973345253616572 +karman_re100,ppo,256,102.4,1.227154016494751,0.17096975445747375,1.0077859163284302,0.40321388840675354,0.8363123536109924,0.18657025694847107,0.0015954483533278108,0.0010548470309004188,0.0007836755830794573,0.004269602242857218,-0.002290785312652588,-0.0052999467588961124,-1.4481536149978638,-4.123287536203861,3.807025536894798,-0.014481536149978639,-0.041232875362038617,0.03807025536894798 +karman_re100,ppo,257,102.8,1.1675111055374146,0.26875045895576477,1.013333797454834,0.4806341230869293,0.9054281711578369,0.2725871801376343,-1.4413426470127888e-05,0.002011599252000451,-0.0004557570209726691,0.004502160474658012,0.0007107963901944458,-0.00571038294583559,-1.1642574071884155,-5.457608103752136,3.362980544567108,-0.011642574071884156,-0.054576081037521366,0.03362980544567108 +karman_re100,ppo,258,103.2,1.1004194021224976,0.33274444937705994,1.0202858448028564,0.514204204082489,0.9778343439102173,0.32923004031181335,-0.0008650329546071589,0.002728743012994528,-0.0016742002917453647,0.004309710580855608,0.0027726388070732355,-0.0056016757152974606,-0.6808929443359375,-6.339831590652466,3.0433186888694763,-0.006808929443359375,-0.06339831590652466,0.030433186888694765 +karman_re100,ppo,259,103.6,1.0313522815704346,0.3616359233856201,1.027400016784668,0.5363947153091431,1.0500859022140503,0.3651200234889984,-0.0009492914541624486,0.003307022387161851,-0.002961966209113598,0.003607527120038867,0.003933740314096212,-0.005518339108675718,-0.13398580253124237,-6.798533916473389,2.8543362617492676,-0.0013398580253124238,-0.06798533916473389,0.028543362617492678 +karman_re100,ppo,260,104.0,0.9614006280899048,0.3548336327075958,1.0323281288146973,0.5372442007064819,1.1191750764846802,0.3767090141773224,-0.00017239278531633317,0.003623619908466935,-0.004429428372532129,0.0027969300281256437,0.00442093750461936,-0.005547585431486368,0.44565442204475403,-7.12194538116455,2.531252145767212,0.00445654422044754,-0.0712194538116455,0.02531252145767212 +karman_re100,ppo,261,104.4,0.894741415977478,0.30442288517951965,1.0316985845565796,0.5012701749801636,1.1838135719299316,0.35014358162879944,0.001311415689997375,0.0035026127006858587,-0.005817814264446497,0.0023497280199080706,0.004288434516638517,-0.00554327666759491,1.0776702165603638,-7.128758907318115,2.247405171394348,0.010776702165603638,-0.07128758907318115,0.022474051713943483 +karman_re100,ppo,262,104.8,0.838947057723999,0.2052084356546402,1.019152045249939,0.4083663821220398,1.2427287101745605,0.2874238193035126,0.0028294348157942295,0.0027858251705765724,-0.006519634742289782,0.0024597335141152143,0.0035987067967653275,-0.005311114713549614,1.5721299648284912,-6.61577296257019,2.036216139793396,0.015721299648284913,-0.0661577296257019,0.02036216139793396 +karman_re100,ppo,263,105.2,0.8066226840019226,0.06533842533826828,0.9958629608154297,0.1946280300617218,1.277560830116272,0.16929924488067627,0.0033490026835352182,0.001492114388383925,-0.0059484075754880905,0.003206985304132104,0.002574147656559944,-0.004927815869450569,1.674329161643982,-5.63956093788147,1.8541181087493896,0.01674329161643982,-0.0563956093788147,0.018541181087493898 +karman_re100,ppo,264,105.6,0.814128577709198,-0.0801316648721695,0.9824640154838562,-0.12264765053987503,1.2727651596069336,0.008065279573202133,0.002574192825704813,-3.414816819713451e-05,-0.00407920079305768,0.00445608189329505,0.0014881251845508814,-0.004656900651752949,1.4061466455459595,-4.490377277135849,2.140714406967163,0.014061466455459595,-0.04490377277135849,0.021407144069671633 +karman_re100,ppo,265,106.0,0.8582251071929932,-0.19852817058563232,0.9838575720787048,-0.3553815186023712,1.2297724485397339,-0.14313918352127075,0.0011158816050738096,-0.0011960117844864726,-0.0013771426165476441,0.005569915287196636,0.00040036349673755467,-0.004573106300085783,1.1384433507919312,-3.467704832553863,3.760541692376137,0.011384433507919312,-0.03467704832553863,0.03760541692376137 +karman_re100,ppo,266,106.4,0.9194754958152771,-0.286563903093338,0.9906485676765442,-0.46344253420829773,1.1600643396377563,-0.258719801902771,-0.0001664034789428115,-0.001898253452964127,0.0013006206136196852,0.005870311986654997,-0.000891420932020992,-0.0045233056880533695,0.8041809797286986,-2.9545021057128906,5.98729407787323,0.008041809797286987,-0.029545021057128907,0.0598729407787323 +karman_re100,ppo,267,106.8,0.9891889095306396,-0.3408809006214142,0.9993206858634949,-0.5180864334106445,1.0822858810424805,-0.3319723606109619,-0.0007400746690109372,-0.0026404315140098333,0.0032708081416785717,0.005778204649686813,-0.0022689758334308863,-0.004017344675958157,0.19205166399478912,-3.0256187915802,7.130396842956543,0.0019205166399478913,-0.030256187915802004,0.07130396842956543 +karman_re100,ppo,268,107.2,1.0609809160232544,-0.37613266706466675,1.00795316696167,-0.550009548664093,1.0052438974380493,-0.3647744357585907,-0.00035743432817980647,-0.0033829649910330772,0.004540557973086834,0.0057769883424043655,-0.004008196759968996,-0.002660426776856184,-0.5218979120254517,-2.932791590690613,7.343427896499634,-0.005218979120254517,-0.02932791590690613,0.07343427896499634 +karman_re100,ppo,269,107.6,1.1317870616912842,-0.38549312949180603,1.014500617980957,-0.5592193007469177,0.9296290874481201,-0.36145737767219543,0.001214418327435851,-0.0038535534404218197,0.005073979496955872,0.005786578170955181,-0.00632843840867281,-0.001486164634115994,-1.3938713073730469,-2.272208333015442,6.82276177406311,-0.01393871307373047,-0.022722083330154418,0.0682276177406311 +karman_re100,ppo,270,108.0,1.1995055675506592,-0.3548445403575897,1.015367865562439,-0.533252477645874,0.8578231334686279,-0.31572985649108887,0.0037538104224950075,-0.0037877571303397417,0.004653013311326504,0.005568764638155699,-0.008494677022099495,-0.001099025714211166,-2.244410991668701,-1.4811820983886719,5.620842099189758,-0.02244410991668701,-0.014811820983886718,0.05620842099189759 +karman_re100,ppo,271,108.4,1.2599562406539917,-0.2816632390022278,1.006864070892334,-0.44574692845344543,0.798438549041748,-0.22090217471122742,0.005740892142057419,-0.003019576659426093,0.0036597680300474167,0.0047791507095098495,-0.009390558116137981,-0.0015579111641272902,-2.610666275024414,-0.967064380645752,4.4569011926651,-0.02610666275024414,-0.00967064380645752,0.044569011926651005 +karman_re100,ppo,272,108.8,1.288111925125122,-0.14385336637496948,0.9966062307357788,-0.20621195435523987,0.7660656571388245,-0.08371767401695251,0.005644919350743294,-0.0015840925043448806,0.0027085146866738796,0.004049118608236313,-0.008261165581643581,-0.0027341016102582216,-2.3322741985321045,-1.2858390808105469,3.8863605558872223,-0.023322741985321045,-0.012858390808105469,0.03886360555887222 +karman_re100,ppo,273,109.2,1.273033857345581,0.025525813922286034,0.999703049659729,0.15131287276744843,0.7776577472686768,0.0634656697511673,0.003916814457625151,-0.00016721714928280562,0.0018719738582149148,0.0039451573975384235,-0.005711766425520182,-0.004097675438970327,-1.7762160301208498,-2.5108442306518555,3.966686375439167,-0.017762160301208498,-0.025108442306518555,0.03966686375439167 +karman_re100,ppo,274,109.6,1.2308015823364258,0.1627645641565323,1.007695198059082,0.39337173104286194,0.8316800594329834,0.17977191507816315,0.0017443293472751975,0.0009837814141064882,0.0008772665751166642,0.004251130856573582,-0.002531397622078657,-0.005256077740341425,-1.465678095817566,-4.0122315511107445,3.8321282565593724,-0.01465678095817566,-0.04012231551110745,0.03832128256559372 +karman_re100,ppo,275,110.0,1.1723995208740234,0.2628231942653656,1.0134934186935425,0.47747802734375,0.9008543491363525,0.26754680275917053,7.408628152916208e-05,0.0019557075574994087,-0.0003619173658080399,0.0045061721466481686,0.000518853950779885,-0.005721105728298426,-1.1937395334243774,-5.379833102226257,3.3903312683105473,-0.011937395334243775,-0.05379833102226257,0.03390331268310547 +karman_re100,ppo,276,110.4,1.1052439212799072,0.3293662369251251,1.0199470520019531,0.5121759176254272,0.9728091359138489,0.32617640495300293,-0.0008298839093185961,0.002682008547708392,-0.0015893817180767655,0.00434652017429471,0.002649388276040554,-0.00562289310619235,-0.7206153869628906,-6.299515008926392,3.0565521717071533,-0.007206153869628906,-0.06299515008926392,0.030565521717071532 +karman_re100,ppo,277,110.8,1.035892367362976,0.36069315671920776,1.0266828536987305,0.5352171063423157,1.0447555780410767,0.363190621137619,-0.000974853930529207,0.003270016983151436,-0.002864567330107093,0.003661682363599539,0.0038663737941533327,-0.005516222212463617,-0.17413873970508575,-6.771962642669678,2.869796633720398,-0.0017413873970508575,-0.06771962642669678,0.02869796633720398 +karman_re100,ppo,278,111.2,0.9661091566085815,0.35666680335998535,1.031968593597412,0.5382391810417175,1.1142613887786865,0.37716448307037354,-0.0002558767737355083,0.0036100363358855247,-0.0043190219439566135,0.0028427061624825,0.004404437728226185,-0.0055385068990290165,0.4012796878814697,-7.1052165031433105,2.553444743156433,0.004012796878814697,-0.0710521650314331,0.02553444743156433 +karman_re100,ppo,279,111.6,0.8991124629974365,0.3096543550491333,1.0320230722427368,0.505196213722229,1.179244875907898,0.35320720076560974,0.0011959167895838618,0.003528130706399679,-0.005720877088606358,0.002374304225668311,0.004321581218391657,-0.005551404319703579,1.0330904722213745,-7.142933130264282,2.263522505760193,0.010330904722213746,-0.07142933130264283,0.02263522505760193 +karman_re100,ppo,280,112.0,0.8425679206848145,0.21390752494335175,1.0208125114440918,0.41790521144866943,1.2392406463623047,0.29343104362487793,0.0027418138924986124,0.0028561963699758053,-0.006490472704172134,0.0024497597478330135,0.0036651035770773888,-0.005344079341739416,1.5454192161560059,-6.668429613113403,2.0545777082443237,0.015454192161560059,-0.06668429613113404,0.020545777082443237 +karman_re100,ppo,281,112.4,0.8081363439559937,0.07606866955757141,0.9979261755943298,0.214868426322937,1.2767199277877808,0.17967502772808075,0.003349442733451724,0.0015989968087524176,-0.0060201045125722885,0.003140828339383006,0.0026493477635085583,-0.004959871061146259,1.6785893440246582,-5.718356966972351,1.8661196231842039,0.016785893440246582,-0.05718356966972351,0.01866119623184204 +karman_re100,ppo,282,112.8,0.8120078444480896,-0.07053374499082565,0.9827624559402466,-0.10082897543907166,1.2741678953170776,0.01966337114572525,0.0026512101758271456,6.979180761845782e-05,-0.004242255352437496,0.004350089933723211,0.0015559993917122483,-0.0046680523082613945,1.4264801740646362,-4.575447142124176,2.087735414505005,0.014264801740646363,-0.04575447142124176,0.02087735414505005 +karman_re100,ppo,283,113.2,0.8540832996368408,-0.19100823998451233,0.983349621295929,-0.3436276316642761,1.2336345911026,-0.1333649456501007,0.0012174739968031645,-0.0011327306274324656,-0.001580023905262351,0.005497245118021965,0.0004776854475494474,-0.004568199627101421,1.1535744667053223,-3.5350203812122345,3.59848701953888,0.011535744667053222,-0.035350203812122345,0.0359848701953888 +karman_re100,ppo,284,113.6,0.9146234393119812,-0.28144264221191406,0.9900287389755249,-0.45794177055358887,1.1654123067855835,-0.2516525983810425,-9.452179801883176e-05,-0.0018536885036155581,0.0011328777763992548,0.0058633023872971535,-0.0007924684323370457,-0.0045253499411046505,0.837928295135498,-2.972295880317688,5.847790837287903,0.008379282951354981,-0.02972295880317688,0.05847790837287903 +karman_re100,ppo,285,114.0,0.9840989708900452,-0.3377579152584076,0.9987162947654724,-0.514950156211853,1.0879801511764526,-0.32790976762771606,-0.0007234149379655719,-0.0025846490170806646,0.0031633677426725626,0.005786027293652296,-0.0021626257803291082,-0.004084484651684761,0.24073684215545654,-3.0156776905059814,7.087914705276489,0.0024073684215545656,-0.030156776905059815,0.0708791470527649 +karman_re100,ppo,286,114.4,1.0562351942062378,-0.37419262528419495,1.0077325105667114,-0.5481169819831848,1.0112109184265137,-0.36335209012031555,-0.00042424732237122953,-0.003337217029184103,0.004473957233130932,0.005783154163509607,-0.003859969787299633,-0.0027732010930776596,-0.4679737985134125,-2.959581136703491,7.350568771362305,-0.004679737985134125,-0.029595811367034913,0.07350568771362305 +karman_re100,ppo,287,114.8,1.1269956827163696,-0.38613128662109375,1.0141968727111816,-0.5594542026519775,0.9352542757987976,-0.3626742660999298,0.0010622022673487663,-0.0038354801945388317,0.0050643570721149445,0.005790199618786573,-0.0061628264375030994,-0.0015412718057632446,-1.3275816440582275,-2.330010175704956,6.891570329666139,-0.013275816440582275,-0.023300101757049562,0.06891570329666138 +karman_re100,ppo,288,115.2,1.194503903388977,-0.35830843448638916,1.0150978565216064,-0.5364124774932861,0.8625513315200806,-0.3203190565109253,0.0035631514620035887,-0.0038141957484185696,0.00470653735101223,0.00559705775231123,-0.008381427265703678,-0.0010838914895430207,-2.1971235275268555,-1.5307672023773193,5.710508227348328,-0.021971235275268557,-0.015307672023773193,0.05710508227348328 +karman_re100,ppo,289,115.6,1.256205677986145,-0.2888704538345337,1.0071310997009277,-0.4556722640991211,0.8020155429840088,-0.22909043729305267,0.005668554455041885,-0.003092818195000291,0.003732171840965748,0.004837685730308294,-0.009406073950231075,-0.0014835171168670058,-2.6092529296875,-0.9782524108886718,4.521123707294464,-0.026092529296875,-0.009782524108886718,0.045211237072944645 +karman_re100,ppo,290,116.0,1.287777066230774,-0.1557491421699524,0.9961768388748169,-0.22989189624786377,0.767231285572052,-0.09442707151174545,0.00573113514110446,-0.0016876454465091228,0.0027765759732574224,0.00407958310097456,-0.008408037014305592,-0.0026422112714499235,-2.3700242042541504,-1.2271873950958252,3.8927565589547157,-0.023700242042541505,-0.012271873950958252,0.03892756558954716 +karman_re100,ppo,291,116.4,1.2758185863494873,0.014023268595337868,0.9985004663467407,0.12687045335769653,0.7756080031394958,0.05348709598183632,0.0040732440538704395,-0.0002542783331591636,0.0019394515547901392,0.003936953842639923,-0.005919877905398607,-0.004015326965600252,-1.810025930404663,-2.4109116792678833,3.955734692513943,-0.018100259304046632,-0.024109116792678832,0.03955734692513943 +karman_re100,ppo,292,116.8,1.235224723815918,0.15454497933387756,1.0070054531097412,0.3823631703853607,0.8275612592697144,0.1723344624042511,0.0018842682475224137,0.000907811161596328,0.0009591119596734643,0.004231696482747793,-0.0027632140554487705,-0.005199769511818886,-1.4817854166030884,-3.9132790789008145,3.853167727589607,-0.014817854166030884,-0.039132790789008144,0.03853167727589607 +karman_re100,ppo,293,117.2,1.1771351099014282,0.2570628821849823,1.012651801109314,0.4742341935634613,0.8957833647727966,0.2620055079460144,0.0001642618008190766,0.0018968437798321247,-0.00027644698275253177,0.004496995359659195,0.00031815990223549306,-0.005712682381272316,-1.2202073335647583,-5.296931505203247,3.4243988394737244,-0.012202073335647583,-0.05296931505203247,0.034243988394737246 +karman_re100,ppo,294,117.6,1.1100873947143555,0.32609790563583374,1.0190529823303223,0.5102363228797913,0.9673802256584167,0.3228033185005188,-0.0007929602870717645,0.0026342568453401327,-0.0015063454629853368,0.0043690879829227924,0.0025260094553232193,-0.0056215510703623295,-0.7592527866363525,-6.252708435058593,3.0702227354049683,-0.007592527866363525,-0.06252708435058593,0.030702227354049684 +karman_re100,ppo,295,118.0,1.0409232378005981,0.35978230834007263,1.0260553359985352,0.5340215563774109,1.0395182371139526,0.36100441217422485,-0.000990994623862207,0.0032378702890127897,-0.002764620818197727,0.0037156459875404835,0.003802569815889001,-0.005509338341653347,-0.21321859955787661,-6.741410017013549,2.88728666305542,-0.002132185995578766,-0.0674141001701355,0.0288728666305542 +karman_re100,ppo,296,118.4,0.9712299108505249,0.35839614272117615,1.03169584274292,0.5390713214874268,1.109384536743164,0.3773133456707001,-0.00033216754673048854,0.003598579438403249,-0.004201987758278847,0.0029027422424405813,0.0043887728825211525,-0.005536012817174196,0.35774004459381104,-7.08847188949585,2.5773431062698364,0.0035774004459381103,-0.0708847188949585,0.025773431062698363 +karman_re100,ppo,297,118.8,0.904176652431488,0.3146241009235382,1.032698631286621,0.5088326930999756,1.1750215291976929,0.3560505211353302,0.0010770229855552316,0.0035554489586502314,-0.005624610930681229,0.0024052467197179794,0.00434639398008585,-0.0055627659894526005,0.9865756034851075,-7.155157804489136,2.282975673675537,0.009865756034851075,-0.07155157804489136,0.02282975673675537 +karman_re100,ppo,298,119.2,0.8464153409004211,0.2222151905298233,1.022308588027954,0.4266798496246338,1.2355252504348755,0.2991243302822113,0.0026447379495948553,0.0029212164226919413,-0.006463712081313133,0.0024238137993961573,0.0037216024938970804,-0.00536947650834918,1.5157442092895508,-6.72096586227417,2.071184992790222,0.015157442092895507,-0.0672096586227417,0.02071184992790222 +karman_re100,ppo,299,119.6,0.809414803981781,0.08654887229204178,0.9993729591369629,0.23424361646175385,1.2750191688537598,0.18987619876861572,0.003342404728755355,0.001704408205114305,-0.006100750993937254,0.003063088282942772,0.002719347830861807,-0.004981982056051493,1.681812763214111,-5.798871397972107,1.8737726211547852,0.016818127632141112,-0.05798871397972107,0.018737726211547852 +karman_re100,ppo,300,120.0,0.8102176785469055,-0.06094738841056824,0.9830091595649719,-0.07846856862306595,1.2753703594207764,0.03148695081472397,0.0027321777306497097,0.00017011864110827446,-0.004407206084579229,0.004248717799782753,0.0016281966818496585,-0.0046753231436014175,1.4485952854156494,-4.6586796045303345,2.036114811897278,0.014485952854156494,-0.046586796045303344,0.02036114811897278 +karman_re100,ppo,301,120.4,0.8502693772315979,-0.18347930908203125,0.982868492603302,-0.3310542702674866,1.2374539375305176,-0.12336886674165726,0.0013269478222355247,-0.0010677964892238379,-0.0017782722134143114,0.005442352499812841,0.0005617170827463269,-0.0045699793845415115,1.1692577600479126,-3.5963988602161407,3.444283604621887,0.011692577600479126,-0.035963988602161406,0.03444283604621887 +karman_re100,ppo,302,120.8,0.9101526737213135,-0.2761930227279663,0.9895589351654053,-0.452164888381958,1.1708203554153442,-0.24450145661830902,-1.853952562669292e-05,-0.0018101622117683291,0.0009650715510360897,0.005877323914319277,-0.0006925386260263622,-0.0045381770469248295,0.8691974878311158,-2.9863955974578857,5.712346434593201,0.008691974878311158,-0.02986395597457886,0.05712346434593201 +karman_re100,ppo,303,121.2,0.9794467091560364,-0.33455890417099,0.9984014630317688,-0.5117514729499817,1.0937904119491577,-0.3238787353038788,-0.0007061974611133337,-0.0025277924723923206,0.0030453652143478394,0.005802224390208721,-0.002063141670078039,-0.004158348776400089,0.28699761629104614,-3.000676691532135,7.0482728481292725,0.0028699761629104614,-0.03000676691532135,0.07048272848129272 +karman_re100,ppo,304,121.6,1.0511199235916138,-0.3721046447753906,1.0070892572402954,-0.5461910963058472,1.0164984464645386,-0.3620327115058899,-0.00048318656627088785,-0.00328969769179821,0.004397597163915634,0.005786316003650427,-0.0037238565273582935,-0.002875828417018056,-0.4156668484210968,-2.9839770793914795,7.352978467941284,-0.004156668484210968,-0.029839770793914797,0.07352978467941285 +karman_re100,ppo,305,122.0,1.1218209266662598,-0.3864823877811432,1.0136092901229858,-0.5595731139183044,0.9403018951416016,-0.36398860812187195,0.0009188003023155034,-0.0038097447250038385,0.005047455430030823,0.005786633584648371,-0.006001655478030443,-0.001593019929714501,-1.2632464170455933,-2.38167667388916,6.952416181564332,-0.012632464170455934,-0.023816766738891604,0.06952416181564332 +karman_re100,ppo,306,122.4,1.18960702419281,-0.3614629805088043,1.0152111053466797,-0.5393023490905762,0.8672935366630554,-0.32494527101516724,0.003379517002031207,-0.003837451571598649,0.004761016461998224,0.005623515695333481,-0.008254129439592361,-0.0010888346005231142,-2.147378444671631,-1.5812339782714842,5.797139048576355,-0.02147378444671631,-0.015812339782714843,0.05797139048576355 +karman_re100,ppo,307,122.8,1.2522821426391602,-0.2955697476863861,1.008015513420105,-0.46469348669052124,0.8056171536445618,-0.23724433779716492,0.005585463717579842,-0.003167876275256276,0.0038084788247942924,0.004903248976916075,-0.009389678947627544,-0.0014359666965901852,-2.6013875007629395,-0.9981951713562013,4.591034114360809,-0.026013875007629396,-0.009981951713562013,0.04591034114360809 +karman_re100,ppo,308,123.2,1.2872614860534668,-0.1672491431236267,0.9971095323562622,-0.2522493600845337,0.7687846422195435,-0.10504023730754852,0.0057925935834646225,-0.0017966446466743946,0.0028403957840055227,0.004118808079510927,-0.00852443277835846,-0.002563783898949623,-2.401808738708496,-1.1779968738555908,3.911627918481827,-0.024018087387084962,-0.01177996873855591,0.03911627918481827 +karman_re100,ppo,309,123.6,1.2778996229171753,0.0024966467171907425,0.9983834624290466,0.10239607840776443,0.7736608982086182,0.04359479248523712,0.004215172957628965,-0.0003483374894130975,0.0019950219430029392,0.003929569385945797,-0.0061118281446397305,-0.003926537930965424,-1.8425699472427368,-2.315713405609131,3.9503825083374977,-0.01842569947242737,-0.023157134056091308,0.03950382508337498 +karman_re100,ppo,310,124.0,1.238437294960022,0.14600034058094025,1.0064796209335327,0.3705238103866577,0.8228735327720642,0.1650363802909851,0.0020241495221853256,0.0008282349444925785,0.0010295381071045995,0.004203579854220152,-0.0029844564851373434,-0.005126438103616238,-1.4957798719406128,-3.8100154399871826,3.8763586878776555,-0.014957798719406128,-0.03810015439987183,0.038763586878776554 +karman_re100,ppo,311,124.4,1.181400179862976,0.25078442692756653,1.0121638774871826,0.4706064462661743,0.8906806707382202,0.25646793842315674,0.00025984173407778144,0.0018335358472540975,-0.00019132840679958463,0.004478301852941513,0.00013064168160781264,-0.005690210033208132,-1.2425954341888428,-5.207086563110352,3.459139049053192,-0.012425954341888428,-0.05207086563110352,0.03459139049053192 +karman_re100,ppo,312,124.8,1.1148015260696411,0.3222670257091522,1.0184978246688843,0.5080810189247131,0.9621755480766296,0.3194136619567871,-0.0007493064622394741,0.0025868171360343695,-0.0014228550717234612,0.004391052760183811,0.0024142134934663773,-0.0056271119974553585,-0.7948789596557617,-6.202123403549194,3.086324095726013,-0.007948789596557617,-0.062021234035491944,0.030863240957260132 +karman_re100,ppo,313,125.2,1.0459221601486206,0.3583511412143707,1.0256847143173218,0.5326366424560547,1.0345882177352905,0.35878559947013855,-0.0010003746720030904,0.003200987819582224,-0.002670353977009654,0.003778209676966071,0.0037457135040313005,-0.00551550043746829,-0.2502979636192322,-6.7133424282073975,2.9034684896469116,-0.0025029796361923217,-0.06713342428207397,0.029034684896469116 +karman_re100,ppo,314,125.6,0.9764775037765503,0.3595776855945587,1.0317310094833374,0.5396590232849121,1.1049911975860596,0.37727147340774536,-0.00040569613338448107,0.0035866752732545137,-0.004102034494280815,0.0029591964557766914,0.004372683819383383,-0.0055379001423716545,0.3162364661693573,-7.06896185874939,2.6035549640655518,0.003162364661693573,-0.0706896185874939,0.02603554964065552 +karman_re100,ppo,315,126.0,0.9086971879005432,0.31903231143951416,1.0328664779663086,0.5122138857841492,1.1706016063690186,0.35867851972579956,0.0009620924247428775,0.0035781324841082096,-0.005545224994421005,0.0024163126945495605,0.004368903115391731,-0.005566002801060677,0.9437298774719238,-7.1659135818481445,2.3008469343185425,0.009437298774719239,-0.07165913581848145,0.023008469343185425 +karman_re100,ppo,316,126.4,0.8497384786605835,0.23007293045520782,1.0231287479400635,0.43497899174690247,1.2314326763153076,0.30443909764289856,0.0025532543659210205,0.0029911950696259737,-0.006455415394157171,0.002393197501078248,0.0037796031683683395,-0.005386571399867535,1.4902969598770142,-6.770965337753296,2.0836074352264404,0.014902969598770141,-0.06770965337753296,0.020836074352264405 +karman_re100,ppo,317,126.8,0.8108679056167603,0.09684127569198608,1.0007233619689941,0.25270751118659973,1.273364543914795,0.19958093762397766,0.0033453241921961308,0.0018045185133814812,-0.006185088772326708,0.0029876327607780695,0.002797265537083149,-0.005005261395126581,1.6886534690856931,-5.874108076095581,1.8806078433990479,0.016886534690856932,-0.05874108076095581,0.01880607843399048 +karman_re100,ppo,318,127.2,0.808674156665802,-0.05124557018280029,0.983193576335907,-0.05625160038471222,1.2766169309616089,0.04306715354323387,0.0028196112252771854,0.00027528530335985124,-0.004569529555737972,0.004159982316195965,0.0017098593525588512,-0.004691216628998518,1.4741941690444946,-4.737401366233826,1.990088939666748,0.014741941690444946,-0.04737401366233826,0.01990088939666748 +karman_re100,ppo,319,127.6,0.846891462802887,-0.17585201561450958,0.9825724959373474,-0.3182823657989502,1.2415447235107422,-0.11352619528770447,0.0014372048899531364,-0.0010000418405979872,-0.0019795384723693132,0.005391549319028854,0.0006455472903326154,-0.00457894429564476,1.1866393089294434,-3.658097773790359,3.2967059016227718,0.011866393089294434,-0.03658097773790359,0.03296705901622772 +karman_re100,ppo,320,128.0,0.9058759808540344,-0.2708665728569031,0.9890933036804199,-0.4465499520301819,1.1762524843215942,-0.23751409351825714,5.9875739680137485e-05,-0.001763909007422626,0.0007859613979235291,0.0058818720281124115,-0.0005972961080260575,-0.004549684002995491,0.8995018005371095,-3.0029279589653015,5.573090553283691,0.008995018005371095,-0.030029279589653016,0.05573090553283692 +karman_re100,ppo,321,128.4,0.9743229746818542,-0.33139359951019287,0.9974909424781799,-0.5087932348251343,1.0989880561828613,-0.31995537877082825,-0.0006853964296169579,-0.00246998923830688,0.002922053448855877,0.005805972032248974,-0.001968482043594122,-0.004215879365801811,0.33402764797210693,-2.987996220588684,6.9987852573394775,0.0033402764797210694,-0.029879962205886842,0.06998785257339478 +karman_re100,ppo,322,128.8,1.0459240674972534,-0.3700350224971771,1.0062663555145264,-0.5444808006286621,1.0215613842010498,-0.3607879877090454,-0.0005361566436477005,-0.0032411282882094383,0.004319776780903339,0.00577944703400135,-0.003585230326279998,-0.0029748333618044853,-0.3635491728782654,-3.0053242444992065,7.34925389289856,-0.003635491728782654,-0.030053242444992065,0.07349253892898559 +karman_re100,ppo,323,129.2,1.1168516874313354,-0.3867327868938446,1.0131109952926636,-0.5597900748252869,0.9453519582748413,-0.36528992652893066,0.0007839507889002562,-0.003786505199968815,0.005033386405557394,0.005785087123513222,-0.005827656481415033,-0.0016622798284515738,-1.1971592903137207,-2.4356473684310913,7.009669303894044,-0.011971592903137207,-0.024356473684310914,0.07009669303894044 +karman_re100,ppo,324,129.6,1.184993028640747,-0.36452412605285645,1.0154181718826294,-0.54218590259552,0.8720706105232239,-0.32943275570869446,0.0031914792489260435,-0.003854879178106785,0.004814407788217068,0.005655261222273111,-0.008106643334031105,-0.0011077069211751223,-2.093135118484497,-1.636565685272217,5.889066100120544,-0.02093135118484497,-0.01636565685272217,0.05889066100120544 +karman_re100,ppo,325,130.0,1.2487467527389526,-0.3019222915172577,1.009217619895935,-0.4730786979198456,0.8094897270202637,-0.24512235820293427,0.005478495266288519,-0.003243817947804928,0.0038823974318802357,0.004973509348928928,-0.009361743927001953,-0.0013951020082458854,-2.5884528160095215,-1.0251350402832031,4.6696537137031555,-0.025884528160095215,-0.010251350402832031,0.046696537137031556 +karman_re100,ppo,326,130.4,1.2863212823867798,-0.178308367729187,0.9978938102722168,-0.2733457088470459,0.770073413848877,-0.11535599082708359,0.00583956204354763,-0.0019095033640041947,0.0028999915812164545,0.004160773009061813,-0.008642500266432762,-0.002472279127687216,-2.4336447715759277,-1.1334121227264404,3.935832254588604,-0.02433644771575928,-0.011334121227264404,0.03935832254588604 +karman_re100,ppo,327,130.8,1.2793179750442505,-0.00900146272033453,0.997957706451416,0.07788705825805664,0.771288275718689,0.033800553530454636,0.004353728611022234,-0.0004436492163222283,0.0020491473842412233,0.0039205909706652164,-0.006313762161880732,-0.0038207557518035173,-1.8794764280319214,-2.2146425247192383,3.9432599321007724,-0.018794764280319214,-0.022146425247192382,0.039432599321007726 +karman_re100,ppo,328,131.2,1.241504430770874,0.1373399794101715,1.006117343902588,0.3580752909183502,0.818152666091919,0.15786996483802795,0.0021706114057451487,0.0007396265282295644,0.0011058291420340538,0.004175666719675064,-0.003216680372133851,-0.005046863574534655,-1.5119307041168213,-3.6993773877620697,3.899187728762626,-0.015119307041168213,-0.0369937738776207,0.038991877287626264 +karman_re100,ppo,329,131.6,1.185567021369934,0.24437032639980316,1.0118129253387451,0.46690890192985535,0.885558009147644,0.2509888708591461,0.00036369028384797275,0.001771973562426865,-0.00010046360694104806,0.0044658370316028595,-6.626455433433875e-05,-0.005677231587469578,-1.2657158374786377,-5.109901070594788,3.4975712895393367,-0.012657158374786377,-0.05109901070594788,0.03497571289539337 +karman_re100,ppo,330,132.0,1.1196846961975098,0.3183203935623169,1.018244981765747,0.5060142874717712,0.9572190046310425,0.3160526752471924,-0.0006990276742726564,0.002539009088650346,-0.0013360647717490792,0.004420934710651636,0.002293242607265711,-0.0056491210125386715,-0.8318140506744384,-6.151564121246338,3.1014979481697083,-0.008318140506744384,-0.06151564121246338,0.031014979481697083 +karman_re100,ppo,331,132.4,1.0509498119354248,0.3568798303604126,1.0254592895507812,0.5313374996185303,1.0298120975494385,0.356609582901001,-0.0010113678872585297,0.0031621933449059725,-0.002576911123469472,0.003840894903987646,0.0036781150847673416,-0.0055259596556425095,-0.2888508141040802,-6.686740159988403,2.917482018470764,-0.002888508141040802,-0.06686740159988404,0.029174820184707642 +karman_re100,ppo,332,132.8,0.9811215400695801,0.3607485592365265,1.0312445163726807,0.540291965007782,1.100094199180603,0.37715280055999756,-0.0004777767462655902,0.0035689023789018393,-0.00400272523984313,0.003005411708727479,0.004347167909145355,-0.0055345152504742146,0.27392712235450745,-7.049148321151733,2.629243493080139,0.0027392712235450745,-0.07049148321151734,0.02629243493080139 +karman_re100,ppo,333,133.2,0.912962794303894,0.32348963618278503,1.0328056812286377,0.515671968460083,1.165981411933899,0.361253559589386,0.000847553601488471,0.003592932829633355,-0.005460696294903755,0.002426659455522895,0.004389043897390366,-0.005563506856560707,0.9005568027496339,-7.174445867538452,2.31598961353302,0.009005568027496339,-0.07174445867538452,0.0231598961353302 +karman_re100,ppo,334,133.6,0.8531617522239685,0.23806849122047424,1.0240823030471802,0.4431886672973633,1.227412462234497,0.3095732033252716,0.0024599807802587748,0.0030505266040563583,-0.006429208908230066,0.0023701393511146307,0.0038410257548093796,-0.005413000471889973,1.4627676010131836,-6.8166823387146,2.096510171890259,0.014627676010131836,-0.068166823387146,0.020965101718902587 +karman_re100,ppo,335,134.0,0.8124994039535522,0.10743526369333267,1.002395510673523,0.270847886800766,1.2716904878616333,0.20900431275367737,0.003340005176141858,0.001904409728012979,-0.006249843165278435,0.0029315820429474115,0.0028793131932616234,-0.005035677924752235,1.6927725076675417,-5.949983477592468,1.8916165828704836,0.016927725076675417,-0.05949983477592469,0.018916165828704836 +karman_re100,ppo,336,134.4,0.8075599074363708,-0.041137486696243286,0.984093189239502,-0.03359304741024971,1.2781004905700684,0.054611701518297195,0.002895846962928772,0.00038504888652823865,-0.0047232406213879585,0.004069683142006397,0.0017880487721413374,-0.004711595829576254,1.4976990222930908,-4.816111445426941,1.956934690475464,0.014976990222930909,-0.04816111445426941,0.01956934690475464 +karman_re100,ppo,337,134.8,0.8433181047439575,-0.16795691847801208,0.9824398159980774,-0.304830938577652,1.2454304695129395,-0.10349233448505402,0.0015432850923389196,-0.0009281359380111098,-0.0021808193996548653,0.005321063566952944,0.0007217870443128049,-0.004584008362144232,1.2040693759918213,-3.7274062037467957,3.154023349285126,0.012040693759918213,-0.037274062037467956,0.03154023349285126 +karman_re100,ppo,338,135.2,0.9010682702064514,-0.265255868434906,0.9884256720542908,-0.4406532049179077,1.1813865900039673,-0.2301320880651474,0.00013801206659991294,-0.0017192671075463295,0.0006001843721605837,0.005864779464900494,-0.000506350421346724,-0.004549404606223106,0.9285025596618652,-3.028391480445862,5.421334624290466,0.009285025596618653,-0.03028391480445862,0.054213346242904664 +karman_re100,ppo,339,135.6,0.9691236615180969,-0.3280862867832184,0.9968084096908569,-0.5056410431861877,1.1044912338256836,-0.31556159257888794,-0.0006595580489374697,-0.0024142770562320948,0.002796376356855035,0.005800805054605007,-0.0018711606971919537,-0.004261280409991741,0.3819263279438019,-2.9777581691741943,6.9382240772247314,0.003819263279438019,-0.029777581691741942,0.06938224077224732 +karman_re100,ppo,340,136.0,1.0407081842422485,-0.36783793568611145,1.0056525468826294,-0.5425682663917542,1.0269832611083984,-0.35909950733184814,-0.0005822871462441981,-0.0031919321045279503,0.004244579467922449,0.005775805097073317,-0.0034451433457434177,-0.0030825340654700994,-0.3105100691318512,-3.024701237678528,7.341853380203247,-0.003105100691318512,-0.03024701237678528,0.07341853380203248 +karman_re100,ppo,341,136.4,1.1120530366897583,-0.3867688477039337,1.0129399299621582,-0.5597066879272461,0.9509408473968506,-0.3661263585090637,0.0006488901562988758,-0.003761175088584423,0.005016245413571596,0.005790212191641331,-0.00565033545717597,-0.001738499733619392,-1.1305359601974487,-2.4919408559799194,7.064774036407472,-0.011305359601974487,-0.024919408559799194,0.07064774036407472 +karman_re100,ppo,342,136.8,1.1805574893951416,-0.36742621660232544,1.0158191919326782,-0.5447067022323608,0.877371072769165,-0.3334079384803772,0.0029957564547657967,-0.0038734145928174257,0.004863619338721037,0.005683232564479113,-0.007961246185004711,-0.0011231594253331423,-2.037264108657837,-1.6929454803466797,5.983455300331116,-0.02037264108657837,-0.016929454803466797,0.059834553003311156 +karman_re100,ppo,343,137.2,1.244664192199707,-0.3080461621284485,1.0098485946655273,-0.48077452182769775,0.8133106231689453,-0.2525615394115448,0.005363002885133028,-0.003311252687126398,0.003951903432607651,0.005036904942244291,-0.00933126825839281,-0.0013342660386115313,-2.5748958587646484,-1.0530023574829102,4.748406708240509,-0.025748958587646486,-0.010530023574829102,0.047484067082405094 +karman_re100,ppo,344,137.6,1.285020112991333,-0.1893424242734909,0.9981752038002014,-0.29383385181427,0.7715941667556763,-0.1255246102809906,0.005886513739824295,-0.0020176293328404427,0.002961950609460473,0.004200337920337915,-0.008767477236688137,-0.0023660920560359955,-2.4648616313934326,-1.0878503322601318,3.9606829658150677,-0.024648616313934328,-0.010878503322601318,0.039606829658150676 +karman_re100,ppo,345,138.0,1.2809977531433105,-0.020913774147629738,0.9971686005592346,0.05242146551609039,0.7695012092590332,0.02373582310974598,0.004505714401602745,-0.000534587714355439,0.002111319685354829,0.003914393950253725,-0.006522083654999733,-0.0037184201646596193,-1.9197102785110474,-2.1114529371261597,3.9305584579706188,-0.019197102785110474,-0.021114529371261598,0.03930558457970619 +karman_re100,ppo,346,138.4,1.2449026107788086,0.12840242683887482,1.0054007768630981,0.3443889319896698,0.8137878179550171,0.15036490559577942,0.0023292633704841137,0.0006738550146110356,0.0011888565495610237,0.00415380671620369,-0.0034515189472585917,-0.004981418140232563,-1.5298832654953003,-3.591029763221741,3.915075190365314,-0.015298832654953003,-0.03591029763221741,0.03915075190365314 +karman_re100,ppo,347,138.8,1.1902403831481934,0.2378978282213211,1.0115787982940674,0.46285414695739746,0.8808900713920593,0.24525383114814758,0.0004728070634882897,0.0017084227874875069,-6.085292170610046e-06,0.004460178781300783,-0.0002757610927801579,-0.005669862497597933,-1.2890048027038574,-5.0252074003219604,3.5257275700569157,-0.012890048027038574,-0.050252074003219606,0.035257275700569156 +karman_re100,ppo,348,139.2,1.1246099472045898,0.3143470585346222,1.0178141593933105,0.5038888454437256,0.9522415995597839,0.3125082552433014,-0.0006500158342532814,0.002492050174623728,-0.0012465764302760363,0.004448539577424526,0.002155306749045849,-0.005667401943355799,-0.8697750568389893,-6.098288536071777,3.1195756793022156,-0.008697750568389893,-0.060982885360717776,0.031195756793022156 +karman_re100,ppo,349,139.6,1.0556379556655884,0.35537955164909363,1.024733543395996,0.5299532413482666,1.024560570716858,0.35429665446281433,-0.0010172398760914803,0.003122277557849884,-0.002490206155925989,0.0038887769915163517,0.0035981673281639814,-0.005528737790882587,-0.3289913833141327,-6.658605575561524,2.932596802711487,-0.003289913833141327,-0.06658605575561524,0.02932596802711487 +karman_re100,ppo,350,140.0,0.9858916401863098,0.361842542886734,1.0307351350784302,0.5407023429870605,1.0951054096221924,0.3768030107021332,-0.0005456529324874282,0.0035490086302161217,-0.003895087167620659,0.003057992085814476,0.0043174996972084045,-0.005523865111172199,0.23252689838409424,-7.028261899948119,2.6493494510650635,0.0023252689838409424,-0.0702826189994812,0.026493494510650636 +karman_re100,ppo,351,140.4,0.9174746870994568,0.32782232761383057,1.032812476158142,0.5188245177268982,1.161340594291687,0.3636701703071594,0.000736906542442739,0.003606552490964532,-0.005358472000807524,0.0024566680658608675,0.004405852872878313,-0.005562946666032076,0.8545858860015869,-7.177736997604369,2.3343636989593506,0.00854585886001587,-0.0717773699760437,0.023343636989593505 +karman_re100,ppo,352,140.8,0.8570178747177124,0.24592067301273346,1.0252721309661865,0.45079725980758667,1.223436713218689,0.3145332932472229,0.002356375800445676,0.0031096437014639378,-0.00638073543086648,0.002367425011470914,0.0038981419056653976,-0.0054299961775541306,1.4290879964828491,-6.858052968978883,2.1124377250671387,0.01429087996482849,-0.06858052968978882,0.021124377250671386 +karman_re100,ppo,353,141.2,0.8146762847900391,0.11794471740722656,1.00448477268219,0.28815117478370667,1.269976258277893,0.21823522448539734,0.0033154913689941168,0.0020033791661262512,-0.0062964679673314095,0.0028806300833821297,0.0029540020041167736,-0.005067803896963596,1.6883305311203,-6.02089524269104,1.9076571464538574,0.016883305311203002,-0.0602089524269104,0.019076571464538575 +karman_re100,ppo,354,141.6,0.8063826560974121,-0.03091886080801487,0.9848605394363403,-0.010488010942935944,1.2789170742034912,0.06628977507352829,0.002956962678581476,0.0004950923030264676,-0.004859658889472485,0.00397852249443531,0.001859406940639019,-0.004728408996015787,1.5175285339355469,-4.89931184053421,1.9307048320770264,0.01517528533935547,-0.0489931184053421,0.019307048320770265 +karman_re100,ppo,355,142.0,0.8395819067955017,-0.15991434454917908,0.9821295142173767,-0.29025423526763916,1.2487791776657104,-0.09309633076190948,0.0016439099563285708,-0.000851630640681833,-0.0023770432453602552,0.00523688830435276,0.0007956288172863424,-0.004581654444336891,1.219268560409546,-3.7995183765888214,3.022441327571869,0.01219268560409546,-0.037995183765888216,0.03022441327571869 +karman_re100,ppo,356,142.4,0.8963961005210876,-0.2594040036201477,0.9878736138343811,-0.434175580739975,1.1865140199661255,-0.22233504056930542,0.0002220737951574847,-0.0016789421206340194,0.0004175476497039199,0.005844659637659788,-0.0004121157107874751,-0.004548314493149519,0.9550906419754028,-3.0601351261138916,5.2636648416519165,0.009550906419754028,-0.03060135126113892,0.05263664841651917 +karman_re100,ppo,357,142.8,0.9640045762062073,-0.3245968222618103,0.9961907267570496,-0.5021575093269348,1.1100795269012451,-0.3107827603816986,-0.0006277476786635816,-0.0023637614212930202,0.0026715632993727922,0.0058053769171237946,-0.0017708688974380493,-0.004302580840885639,0.428559809923172,-2.9676953554153442,6.87320351600647,0.00428559809923172,-0.029676953554153444,0.0687320351600647 +karman_re100,ppo,358,143.2,1.0358145236968994,-0.3654772639274597,1.0053355693817139,-0.5404285192489624,1.0327632427215576,-0.3571082651615143,-0.0006212886655703187,-0.0031414092518389225,0.004163914825767279,0.005778215359896421,-0.0033118396531790495,-0.003191835479810834,-0.2592681050300598,-3.036610722541809,7.335878133773805,-0.002592681050300598,-0.03036610722541809,0.07335878133773804 +karman_re100,ppo,359,143.6,1.1072443723678589,-0.3865278661251068,1.012728214263916,-0.5593613982200623,0.9565693140029907,-0.36667895317077637,0.0005200165323913097,-0.0037320361007004976,0.004985322244465351,0.005789995659142733,-0.005481249652802944,-0.0018184445798397064,-1.0655593872070312,-2.5453003644943237,7.114706516265868,-0.010655593872070313,-0.02545300364494324,0.07114706516265869 +karman_re100,ppo,360,144.0,1.1756473779678345,-0.3700692355632782,1.0157253742218018,-0.5469691753387451,0.8823370337486267,-0.3371102809906006,0.0028015319257974625,-0.003885593730956316,0.00490088015794754,0.0057009863667190075,-0.007819872349500656,-0.001133463461883366,-1.9786969423294067,-1.7499482631683352,6.07400107383728,-0.019786969423294068,-0.01749948263168335,0.060740010738372804 +karman_re100,ppo,361,144.4,1.2403626441955566,-0.31380966305732727,1.010406494140625,-0.4879629909992218,0.8172591924667358,-0.259834885597229,0.005244088359177113,-0.003376042004674673,0.0040245940908789635,0.005096288863569498,-0.009302593767642975,-0.0012816586531698704,-2.5577492713928223,-1.0820515155792236,4.825358629226685,-0.025577492713928222,-0.010820515155792236,0.048253586292266844 +karman_re100,ppo,362,144.8,1.2835277318954468,-0.20008441805839539,0.9986367225646973,-0.31353726983070374,0.77345871925354,-0.13571594655513763,0.0059240274131298065,-0.0021244112867861986,0.003028689417988062,0.004243860021233559,-0.008877523243427277,-0.0022737036924809217,-2.4946656227111816,-1.0485739707946777,3.98546926304698,-0.024946656227111817,-0.010485739707946777,0.0398546926304698 +karman_re100,ppo,363,145.2,1.2827637195587158,-0.03301353380084038,0.9966405630111694,0.026410356163978577,0.7682201266288757,0.013324011117219925,0.004649757407605648,-0.0006159613258205354,0.0021735148038715124,0.003913818392902613,-0.006715781055390835,-0.0036293459124863148,-1.95944344997406,-2.015966296195984,3.918468683958053,-0.0195944344997406,-0.02015966296195984,0.03918468683958053 +karman_re100,ppo,364,145.6,1.248642921447754,0.11924951523542404,1.004988670349121,0.32964134216308594,0.8099242448806763,0.14249615371227264,0.002482627984136343,0.0005950730410404503,0.001264517311938107,0.004132697358727455,-0.0036803875118494034,-0.004911745432764292,-1.5470532178878784,-3.4929402470588684,3.926424950361252,-0.015470532178878784,-0.034929402470588684,0.03926424950361252 +karman_re100,ppo,365,146.0,1.1947251558303833,0.23131120204925537,1.011141061782837,0.45840534567832947,0.8760517239570618,0.23922842741012573,0.0005734296864829957,0.0016426506917923689,8.183836325770244e-05,0.004445556551218033,-0.000487556797452271,-0.005647472571581602,-1.310340404510498,-4.934137582778931,3.558702409267426,-0.013103404045104981,-0.04934137582778931,0.03558702409267426 +karman_re100,ppo,366,146.4,1.1293675899505615,0.31018492579460144,1.0171853303909302,0.5016264915466309,0.9470009803771973,0.30869853496551514,-0.0005988538614474237,0.002443180652335286,-0.0011662498582154512,0.004461692646145821,0.0020139492116868496,-0.005671300459653139,-0.9059195518493653,-6.04104208946228,3.1418569684028625,-0.009059195518493653,-0.060410420894622806,0.031418569684028626 +karman_re100,ppo,367,146.8,1.0605411529541016,0.35364922881126404,1.0241994857788086,0.5283830165863037,1.0193825960159302,0.3517763912677765,-0.0010182867990806699,0.0030832223128527403,-0.002394591923803091,0.003940613474696875,0.003520855214446783,-0.005525744985789061,-0.3672734498977661,-6.6271796226501465,2.945512056350708,-0.0036727344989776613,-0.06627179622650146,0.02945512056350708 +karman_re100,ppo,368,147.2,0.9908692836761475,0.3626059591770172,1.0304120779037476,0.5407403111457825,1.0901455879211426,0.37611594796180725,-0.0006059459410607815,0.00352909741923213,-0.003785545937716961,0.003116704523563385,0.004289406817406416,-0.005519893020391464,0.19051524996757507,-7.004918098449707,2.67522394657135,0.0019051524996757509,-0.07004918098449707,0.026752239465713503 +karman_re100,ppo,369,147.6,0.9224640727043152,0.3316943645477295,1.0332313776016235,0.5214660167694092,1.1569569110870361,0.3657681941986084,0.0006257382920011878,0.0036213514395058155,-0.005255022086203098,0.002492566592991352,0.00442159129306674,-0.005568013992160559,0.8087942600250244,-7.180113554000854,2.354374051094055,0.008087942600250244,-0.07180113554000854,0.02354374051094055 +karman_re100,ppo,370,148.0,0.861168384552002,0.2531862258911133,1.0266304016113281,0.45749959349632263,1.2194041013717651,0.31912216544151306,0.0022473903372883797,0.003166406648233533,-0.006333418656140566,0.00236003240570426,0.003949346486479044,-0.005450873170047998,1.3941391706466675,-6.900094032287597,2.1286416053771973,0.013941391706466674,-0.06900094032287597,0.021286416053771972 +karman_re100,ppo,371,148.4,0.8167664408683777,0.12792888283729553,1.0063505172729492,0.3041180670261383,1.2675247192382812,0.22710180282592773,0.003285289043560624,0.002100878395140171,-0.006349542643874884,0.0028174472972750664,0.0030239673797041178,-0.005095324479043484,1.682981252670288,-6.094254970550537,1.9207990169525149,0.016829812526702882,-0.060942549705505375,0.01920799016952515 +karman_re100,ppo,372,148.8,0.8055133819580078,-0.02091376483440399,0.9857525825500488,0.012469625100493431,1.2792530059814453,0.07801400870084763,0.0030202269554138184,0.0006014686659909785,-0.005006956867873669,0.003878542687743902,0.0019329595379531384,-0.004741685464978218,1.5389885902404785,-4.983532786369324,1.903263330459595,0.015389885902404785,-0.04983532786369324,0.01903263330459595 +karman_re100,ppo,373,149.2,0.8362233638763428,-0.15194366872310638,0.98193359375,-0.27487361431121826,1.251770257949829,-0.08249998092651367,0.0017541198758408427,-0.000775433552917093,-0.0025768086779862642,0.0051613179966807365,0.0008702767081558704,-0.004585984628647566,1.2368556261062622,-3.869929403066635,2.891158938407898,0.012368556261062622,-0.038699294030666354,0.02891158938407898 +karman_re100,ppo,374,149.6,0.8920964598655701,-0.2534731328487396,0.9874212741851807,-0.4271801710128784,1.1914236545562744,-0.2143608033657074,0.0003117379965260625,-0.0016277950489893556,0.00023256210261024535,0.005840855184942484,-0.0003149135736748576,-0.004552360624074936,0.9795925617218019,-3.088780403137207,5.1040849685668945,0.009795925617218018,-0.03088780403137207,0.051040849685668944 +karman_re100,ppo,375,150.0,0.9593844413757324,-0.32101988792419434,0.9958275556564331,-0.49840521812438965,1.1156808137893677,-0.30587780475616455,-0.0005920651601627469,-0.002306476002559066,0.00254074833355844,0.005824750289320946,-0.0016738362610340118,-0.004349428229033947,0.4733150899410248,-2.9565036296844482,6.80792737007141,0.004733150899410248,-0.029565036296844482,0.06807927370071411 +karman_re100,ppo,376,150.4,1.0308613777160645,-0.3630315661430359,1.0047625303268433,-0.5381251573562622,1.0380781888961792,-0.3550461232662201,-0.0006577857420779765,-0.003089454723522067,0.004078064579516649,0.005784568376839161,-0.0031853457912802696,-0.0032932618632912636,-0.21013426780700684,-3.0459035634994507,7.327974796295165,-0.0021013426780700684,-0.030459035634994507,0.07327974796295166 +karman_re100,ppo,377,150.8,1.102174997329712,-0.3860514760017395,1.0121512413024902,-0.5587837100028992,0.9616639018058777,-0.3671513497829437,0.00040072633419185877,-0.0037006917409598827,0.004951589275151491,0.005789360962808132,-0.005319492891430855,-0.0018916785484179854,-1.0037702322006226,-2.5930827856063843,7.159677028656006,-0.010037702322006226,-0.025930827856063845,0.07159677028656006 +karman_re100,ppo,378,151.2,1.170799970626831,-0.37246638536453247,1.0156515836715698,-0.548917293548584,0.8872097134590149,-0.3406771719455719,0.002619645558297634,-0.003894628956913948,0.004937275778502226,0.00571533152833581,-0.007674252614378929,-0.0011504548601806164,-1.9213846921920774,-1.8029527664184573,6.160377025604248,-0.019213846921920776,-0.018029527664184572,0.06160377025604248 +karman_re100,ppo,379,151.6,1.235979676246643,-0.319200336933136,1.0110684633255005,-0.49443745613098145,0.8211963176727295,-0.26694023609161377,0.005120810121297836,-0.0034357986878603697,0.004098918754607439,0.00515664741396904,-0.009239270351827145,-0.0012384917354211211,-2.5368289947509766,-1.1143028736114502,4.903577625751495,-0.025368289947509767,-0.011143028736114502,0.04903577625751496 +karman_re100,ppo,380,152.0,1.2819335460662842,-0.21039743721485138,0.9996703267097473,-0.3319353759288788,0.7756404280662537,-0.14575842022895813,0.005948793143033981,-0.0022291888017207384,0.003095841035246849,0.0042932843789458275,-0.008966604247689247,-0.002197888446971774,-2.517047882080078,-1.0165104866027832,4.023544374853373,-0.02517047882080078,-0.010165104866027832,0.040235443748533724 +karman_re100,ppo,381,152.4,1.2842086553573608,-0.0450466051697731,0.9966752529144287,0.0005654121050611138,0.7672187685966492,0.0029345338698476553,0.004777574446052313,-0.0007254638476297259,0.0022298754192888737,0.0039166780188679695,-0.006894742138683796,-0.003543766215443611,-1.997473120689392,-1.928467035293579,3.909688644111157,-0.01997473120689392,-0.019284670352935792,0.03909688644111157 +karman_re100,ppo,382,152.8,1.2515778541564941,0.10992175340652466,1.0044933557510376,0.314048707485199,0.8057457804679871,0.13462047278881073,0.00263024028390646,0.0005135686951689422,0.0013301967410370708,0.004106693435460329,-0.0038976320065557957,-0.004836117848753929,-1.5648453235626218,-3.3868380188941956,3.9415744058787823,-0.01564845323562622,-0.033868380188941956,0.039415744058787824 +karman_re100,ppo,383,153.2,1.198775053024292,0.22443179786205292,1.0107043981552124,0.4535105228424072,0.871055543422699,0.233175128698349,0.000686833169311285,0.001574203372001648,0.00016497232718393207,0.004422864411026239,-0.0006900356966070831,-0.0056126355193555355,-1.3286970853805542,-4.841417610645294,3.590024411678314,-0.013286970853805542,-0.04841417610645294,0.035900244116783143 +karman_re100,ppo,384,153.6,1.134002685546875,0.30565938353538513,1.0166237354278564,0.4992328882217407,0.9418149590492249,0.3048173785209656,-0.000540536770131439,0.002392676891759038,-0.001083280541934073,0.004471573978662491,0.0018783446867018938,-0.00567468861117959,-0.9390459060668945,-5.978768944740295,3.1629212498664856,-0.009390459060668946,-0.05978768944740295,0.031629212498664856 +karman_re100,ppo,385,154.0,1.065406322479248,0.35158154368400574,1.0236825942993164,0.5267266631126404,1.0143028497695923,0.3492540419101715,-0.0010113957105204463,0.0030433929059654474,-0.0023047802969813347,0.003992919344455004,0.003448775503784418,-0.005532704759389162,-0.4045230448246002,-6.595669746398926,2.9581685066223145,-0.004045230448246002,-0.06595669746398926,0.029581685066223145 +karman_re100,ppo,386,154.4,0.9960256814956665,0.36301925778388977,1.0302338600158691,0.540646493434906,1.0855122804641724,0.37532511353492737,-0.0006625388632528484,0.0035087810829281807,-0.003684516530483961,0.0031770681962370872,0.004260047804564238,-0.005522045306861401,0.15077577531337738,-6.982421159744264,2.6991342306137085,0.0015077577531337739,-0.06982421159744263,0.026991342306137086 +karman_re100,ppo,387,154.8,0.9272220730781555,0.33519989252090454,1.0332564115524292,0.5240130424499512,1.1524991989135742,0.3677641749382019,0.0005188711220398545,0.003632101695984602,-0.005161534994840622,0.002519844565540552,0.00443253805860877,-0.005568921100348234,0.7646732330322266,-7.181296586990357,2.374124050140381,0.007646732330322266,-0.07181296586990357,0.023741240501403808 +karman_re100,ppo,388,155.2,0.8649491667747498,0.26017728447914124,1.0272724628448486,0.46403563022613525,1.2150814533233643,0.32356858253479004,0.002139454474672675,0.0032204349990934134,-0.006294937804341316,0.0023414117749780416,0.00399739108979702,-0.005466389004141092,1.3605848550796509,-6.93867564201355,2.1420395374298096,0.01360584855079651,-0.0693867564201355,0.021420395374298098 +karman_re100,ppo,389,155.6,0.8189451098442078,0.13787482678890228,1.0077909231185913,0.3195894956588745,1.2650526762008667,0.23566554486751556,0.0032577160745859146,0.0021934465039521456,-0.0064009688794612885,0.002756855683401227,0.0030977679416537285,-0.0051187314093112946,1.679260015487671,-6.16581916809082,1.9314465522766113,0.01679260015487671,-0.061658191680908206,0.019314465522766115 +karman_re100,ppo,390,156.0,0.8048166632652283,-0.010618864558637142,0.9862744212150574,0.035586051642894745,1.2797069549560547,0.08965566009283066,0.0030862600542604923,0.0007099065114744008,-0.00514415604993701,0.0037908938247710466,0.0020127284806221724,-0.0047606066800653934,1.5613526105880737,-5.063130974769592,1.8817169666290285,0.015613526105880737,-0.050631309747695925,0.018817169666290285 +karman_re100,ppo,391,156.4,0.8331103324890137,-0.14368167519569397,0.9815704226493835,-0.25891217589378357,1.2551172971725464,-0.07187049090862274,0.001860917080193758,-0.00069493951741606,-0.0027680578641593456,0.005090481601655483,0.0009513181285001338,-0.004593992605805397,1.2552915811538696,-3.9399230331182475,2.7708109617233276,0.012552915811538697,-0.03939923033118248,0.027708109617233277 +karman_re100,ppo,392,156.8,0.8879462480545044,-0.24733951687812805,0.9868749976158142,-0.42019978165626526,1.1966235637664795,-0.2064402997493744,0.0004031727439723909,-0.0015800505643710494,4.529038051259704e-05,0.005830149631947279,-0.00022441966575570405,-0.004560595843940973,1.0029799938201904,-3.122128188610077,4.946582853794098,0.010029799938201904,-0.03122128188610077,0.04946582853794098 +karman_re100,ppo,393,157.2,0.9543890357017517,-0.3173763155937195,0.9949667453765869,-0.4948927164077759,1.1210322380065918,-0.3010376989841461,-0.0005542351282201707,-0.002252215053886175,0.0024043237790465355,0.005832520313560963,-0.0015826195012778044,-0.004387345165014267,0.5172897577285767,-2.9481334686279297,6.734065055847169,0.005172897577285767,-0.0294813346862793,0.06734065055847169 +karman_re100,ppo,394,157.6,1.0256826877593994,-0.3606018126010895,1.003889799118042,-0.5361143946647644,1.0432325601577759,-0.3530651926994324,-0.0006875665276311338,-0.003037418471649289,0.003990600351244211,0.005780109670013189,-0.0030665406957268715,-0.0033903145231306553,-0.16070929169654846,-3.0533844232559204,7.313746452331543,-0.0016070929169654847,-0.030533844232559205,0.07313746452331543 +karman_re100,ppo,395,158.0,1.0971301794052124,-0.38549232482910156,1.0115201473236084,-0.558396577835083,0.9667481184005737,-0.36767396330833435,0.0002885732101276517,-0.0036679271142929792,0.0049192579463124275,0.005785773508250713,-0.005154421553015709,-0.001971927471458912,-0.9420560598373413,-2.6417958736419678,7.197072744369506,-0.009420560598373413,-0.026417958736419677,0.07197072744369507 +karman_re100,ppo,396,158.4,1.1660616397857666,-0.3747937083244324,1.0155320167541504,-0.5510284304618835,0.8920667767524719,-0.3442062735557556,0.0024377659428864717,-0.0039021915290504694,0.004974965937435627,0.005732621066272259,-0.007518197409808636,-0.0011804884998127818,-1.8613635301589964,-1.8597452640533445,6.247219085693359,-0.018613635301589965,-0.018597452640533446,0.0624721908569336 +karman_re100,ppo,397,158.8,1.2319204807281494,-0.3243831396102905,1.0119117498397827,-0.5007392764091492,0.8253471255302429,-0.27391648292541504,0.0049804807640612125,-0.003494749777019024,0.0041733598336577415,0.005219761282205582,-0.009187608025968075,-0.0012207881081849337,-2.5124857425689697,-1.1516625881195068,4.986751735210419,-0.0251248574256897,-0.011516625881195069,0.049867517352104186 +karman_re100,ppo,398,159.2,1.2801322937011719,-0.2202736735343933,1.0006468296051025,-0.34932941198349,0.7777237892150879,-0.15563097596168518,0.005963480565696955,-0.002337441546842456,0.0031621339730918407,0.004346890840679407,-0.009052530862390995,-0.0021106242202222347,-2.5405406951904297,-0.9947769641876221,4.059355292469263,-0.025405406951904297,-0.009947769641876221,0.04059355292469263 +karman_re100,ppo,399,159.6,1.285162091255188,-0.05697043240070343,0.9964890480041504,-0.02511231228709221,0.7659004926681519,-0.007440864574164152,0.004911850206553936,-0.0008256323053501546,0.0022854965645819902,0.003919991664588451,-0.007082960102707148,-0.003435722319409251,-2.0390336513519287,-1.83597731590271,3.9005443155765533,-0.020390336513519288,-0.0183597731590271,0.03900544315576553 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_long.csv new file mode 100644 index 0000000..1e5bb3d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,target,0,0.0,velocity,upper_ux,1.315363883972168 +karman_re100,target,0,0.0,velocity,upper_uy,0.011558161117136478 +karman_re100,target,0,0.0,velocity,center_ux,1.1404500007629395 +karman_re100,target,0,0.0,velocity,center_uy,0.12340617179870605 +karman_re100,target,0,0.0,velocity,lower_ux,0.7724894881248474 +karman_re100,target,0,0.0,velocity,lower_uy,0.08659958094358444 +karman_re100,target,1,0.4,velocity,upper_ux,1.2629832029342651 +karman_re100,target,1,0.4,velocity,upper_uy,0.16529716551303864 +karman_re100,target,1,0.4,velocity,center_ux,1.124122142791748 +karman_re100,target,1,0.4,velocity,center_uy,0.36766842007637024 +karman_re100,target,1,0.4,velocity,lower_ux,0.8258862495422363 +karman_re100,target,1,0.4,velocity,lower_uy,0.24397236108779907 +karman_re100,target,2,0.8,velocity,upper_ux,1.1866782903671265 +karman_re100,target,2,0.8,velocity,upper_uy,0.2817099690437317 +karman_re100,target,2,0.8,velocity,center_ux,1.1082783937454224 +karman_re100,target,2,0.8,velocity,center_uy,0.4998231828212738 +karman_re100,target,2,0.8,velocity,lower_ux,0.9078218340873718 +karman_re100,target,2,0.8,velocity,lower_uy,0.3263973295688629 +karman_re100,target,3,1.2,velocity,upper_ux,1.1055275201797485 +karman_re100,target,3,1.2,velocity,upper_uy,0.3578006625175476 +karman_re100,target,3,1.2,velocity,center_ux,1.1025141477584839 +karman_re100,target,3,1.2,velocity,center_uy,0.5459339022636414 +karman_re100,target,3,1.2,velocity,lower_ux,0.9969545006752014 +karman_re100,target,3,1.2,velocity,lower_uy,0.35300227999687195 +karman_re100,target,4,1.6,velocity,upper_ux,1.0254487991333008 +karman_re100,target,4,1.6,velocity,upper_uy,0.4053035080432892 +karman_re100,target,4,1.6,velocity,center_ux,1.1092784404754639 +karman_re100,target,4,1.6,velocity,center_uy,0.5725685358047485 +karman_re100,target,4,1.6,velocity,lower_ux,1.0821375846862793 +karman_re100,target,4,1.6,velocity,lower_uy,0.3679357171058655 +karman_re100,target,5,2.0,velocity,upper_ux,0.9444869160652161 +karman_re100,target,5,2.0,velocity,upper_uy,0.41994205117225647 +karman_re100,target,5,2.0,velocity,center_ux,1.1228265762329102 +karman_re100,target,5,2.0,velocity,center_uy,0.5836971402168274 +karman_re100,target,5,2.0,velocity,lower_ux,1.1624740362167358 +karman_re100,target,5,2.0,velocity,lower_uy,0.37426021695137024 +karman_re100,target,6,2.4,velocity,upper_ux,0.8660114407539368 +karman_re100,target,6,2.4,velocity,upper_uy,0.38128700852394104 +karman_re100,target,6,2.4,velocity,center_ux,1.1386040449142456 +karman_re100,target,6,2.4,velocity,center_uy,0.5454380512237549 +karman_re100,target,6,2.4,velocity,lower_ux,1.2341564893722534 +karman_re100,target,6,2.4,velocity,lower_uy,0.3433678448200226 +karman_re100,target,7,2.8,velocity,upper_ux,0.7995027303695679 +karman_re100,target,7,2.8,velocity,upper_uy,0.27430403232574463 +karman_re100,target,7,2.8,velocity,center_ux,1.1494618654251099 +karman_re100,target,7,2.8,velocity,center_uy,0.4135065972805023 +karman_re100,target,7,2.8,velocity,lower_ux,1.2929481267929077 +karman_re100,target,7,2.8,velocity,lower_uy,0.26770341396331787 +karman_re100,target,8,3.2,velocity,upper_ux,0.7626122236251831 +karman_re100,target,8,3.2,velocity,upper_uy,0.10469724982976913 +karman_re100,target,8,3.2,velocity,center_ux,1.1496586799621582 +karman_re100,target,8,3.2,velocity,center_uy,0.16902725398540497 +karman_re100,target,8,3.2,velocity,lower_ux,1.3251855373382568 +karman_re100,target,8,3.2,velocity,lower_uy,0.14536717534065247 +karman_re100,target,9,3.6,velocity,upper_ux,0.771914541721344 +karman_re100,target,9,3.6,velocity,upper_uy,-0.0879771038889885 +karman_re100,target,9,3.6,velocity,center_ux,1.140002727508545 +karman_re100,target,9,3.6,velocity,center_uy,-0.12530012428760529 +karman_re100,target,9,3.6,velocity,lower_ux,1.3145852088928223 +karman_re100,target,9,3.6,velocity,lower_uy,-0.012567640282213688 +karman_re100,target,10,4.0,velocity,upper_ux,0.8262538909912109 +karman_re100,target,10,4.0,velocity,upper_uy,-0.24495910108089447 +karman_re100,target,10,4.0,velocity,center_ux,1.1242868900299072 +karman_re100,target,10,4.0,velocity,center_uy,-0.36886969208717346 +karman_re100,target,10,4.0,velocity,lower_ux,1.2627224922180176 +karman_re100,target,10,4.0,velocity,lower_uy,-0.1659899204969406 +karman_re100,target,11,4.4,velocity,upper_ux,0.9091941118240356 +karman_re100,target,11,4.4,velocity,upper_uy,-0.3269399404525757 +karman_re100,target,11,4.4,velocity,center_ux,1.1092246770858765 +karman_re100,target,11,4.4,velocity,center_uy,-0.5003392100334167 +karman_re100,target,11,4.4,velocity,lower_ux,1.1871726512908936 +karman_re100,target,11,4.4,velocity,lower_uy,-0.28209808468818665 +karman_re100,target,12,4.8,velocity,upper_ux,0.9983589053153992 +karman_re100,target,12,4.8,velocity,upper_uy,-0.3533010482788086 +karman_re100,target,12,4.8,velocity,center_ux,1.1033858060836792 +karman_re100,target,12,4.8,velocity,center_uy,-0.5461264848709106 +karman_re100,target,12,4.8,velocity,lower_ux,1.1058942079544067 +karman_re100,target,12,4.8,velocity,lower_uy,-0.35798129439353943 +karman_re100,target,13,5.2,velocity,upper_ux,1.0820858478546143 +karman_re100,target,13,5.2,velocity,upper_uy,-0.3681882619857788 +karman_re100,target,13,5.2,velocity,center_ux,1.1086872816085815 +karman_re100,target,13,5.2,velocity,center_uy,-0.5727218389511108 +karman_re100,target,13,5.2,velocity,lower_ux,1.024349331855774 +karman_re100,target,13,5.2,velocity,lower_uy,-0.40528976917266846 +karman_re100,target,14,5.6,velocity,upper_ux,1.1618715524673462 +karman_re100,target,14,5.6,velocity,upper_uy,-0.37437742948532104 +karman_re100,target,14,5.6,velocity,center_ux,1.1217199563980103 +karman_re100,target,14,5.6,velocity,center_uy,-0.5836590528488159 +karman_re100,target,14,5.6,velocity,lower_ux,0.942992091178894 +karman_re100,target,14,5.6,velocity,lower_uy,-0.4196649491786957 +karman_re100,target,15,6.0,velocity,upper_ux,1.2341585159301758 +karman_re100,target,15,6.0,velocity,upper_uy,-0.3432508111000061 +karman_re100,target,15,6.0,velocity,center_ux,1.138092041015625 +karman_re100,target,15,6.0,velocity,center_uy,-0.545034646987915 +karman_re100,target,15,6.0,velocity,lower_ux,0.8652973175048828 +karman_re100,target,15,6.0,velocity,lower_uy,-0.38071417808532715 +karman_re100,target,16,6.4,velocity,upper_ux,1.2936582565307617 +karman_re100,target,16,6.4,velocity,upper_uy,-0.26732462644577026 +karman_re100,target,16,6.4,velocity,center_ux,1.149598240852356 +karman_re100,target,16,6.4,velocity,center_uy,-0.4124850928783417 +karman_re100,target,16,6.4,velocity,lower_ux,0.7996823787689209 +karman_re100,target,16,6.4,velocity,lower_uy,-0.27341940999031067 +karman_re100,target,17,6.8,velocity,upper_ux,1.3263466358184814 +karman_re100,target,17,6.8,velocity,upper_uy,-0.144548237323761 +karman_re100,target,17,6.8,velocity,center_ux,1.1503167152404785 +karman_re100,target,17,6.8,velocity,center_uy,-0.16729015111923218 +karman_re100,target,17,6.8,velocity,lower_ux,0.763634443283081 +karman_re100,target,17,6.8,velocity,lower_uy,-0.10352127999067307 +karman_re100,target,18,7.2,velocity,upper_ux,1.3145968914031982 +karman_re100,target,18,7.2,velocity,upper_uy,0.013734846375882626 +karman_re100,target,18,7.2,velocity,center_ux,1.1397769451141357 +karman_re100,target,18,7.2,velocity,center_uy,0.12725985050201416 +karman_re100,target,18,7.2,velocity,lower_ux,0.7724266052246094 +karman_re100,target,18,7.2,velocity,lower_uy,0.0891314297914505 +karman_re100,target,19,7.6,velocity,upper_ux,1.2612593173980713 +karman_re100,target,19,7.6,velocity,upper_uy,0.16703270375728607 +karman_re100,target,19,7.6,velocity,center_ux,1.122869849205017 +karman_re100,target,19,7.6,velocity,center_uy,0.3701218366622925 +karman_re100,target,19,7.6,velocity,lower_ux,0.8257599472999573 +karman_re100,target,19,7.6,velocity,lower_uy,0.24552792310714722 +karman_re100,target,20,8.0,velocity,upper_ux,1.185973882675171 +karman_re100,target,20,8.0,velocity,upper_uy,0.28283190727233887 +karman_re100,target,20,8.0,velocity,center_ux,1.1082544326782227 +karman_re100,target,20,8.0,velocity,center_uy,0.500770092010498 +karman_re100,target,20,8.0,velocity,lower_ux,0.9090401530265808 +karman_re100,target,20,8.0,velocity,lower_uy,0.3269261121749878 +karman_re100,target,21,8.4,velocity,upper_ux,1.1054226160049438 +karman_re100,target,21,8.4,velocity,upper_uy,0.3585200011730194 +karman_re100,target,21,8.4,velocity,center_ux,1.1032958030700684 +karman_re100,target,21,8.4,velocity,center_uy,0.5462720990180969 +karman_re100,target,21,8.4,velocity,lower_ux,0.9988629221916199 +karman_re100,target,21,8.4,velocity,lower_uy,0.3531641662120819 +karman_re100,target,22,8.8,velocity,upper_ux,1.024680733680725 +karman_re100,target,22,8.8,velocity,upper_uy,0.4057033061981201 +karman_re100,target,22,8.8,velocity,center_ux,1.1095647811889648 +karman_re100,target,22,8.8,velocity,center_uy,0.5728689432144165 +karman_re100,target,22,8.8,velocity,lower_ux,1.0834095478057861 +karman_re100,target,22,8.8,velocity,lower_uy,0.3681158125400543 +karman_re100,target,23,9.2,velocity,upper_ux,0.9433601498603821 +karman_re100,target,23,9.2,velocity,upper_uy,0.4197944402694702 +karman_re100,target,23,9.2,velocity,center_ux,1.122806191444397 +karman_re100,target,23,9.2,velocity,center_uy,0.5835760235786438 +karman_re100,target,23,9.2,velocity,lower_ux,1.163320541381836 +karman_re100,target,23,9.2,velocity,lower_uy,0.37417343258857727 +karman_re100,target,24,9.6,velocity,upper_ux,0.8643681406974792 +karman_re100,target,24,9.6,velocity,upper_uy,0.3803447484970093 +karman_re100,target,24,9.6,velocity,center_ux,1.1379096508026123 +karman_re100,target,24,9.6,velocity,center_uy,0.5444168448448181 +karman_re100,target,24,9.6,velocity,lower_ux,1.2341954708099365 +karman_re100,target,24,9.6,velocity,lower_uy,0.34270232915878296 +karman_re100,target,25,10.0,velocity,upper_ux,0.7983593940734863 +karman_re100,target,25,10.0,velocity,upper_uy,0.27258816361427307 +karman_re100,target,25,10.0,velocity,center_ux,1.1488112211227417 +karman_re100,target,25,10.0,velocity,center_uy,0.41113850474357605 +karman_re100,target,25,10.0,velocity,lower_ux,1.292905330657959 +karman_re100,target,25,10.0,velocity,lower_uy,0.2665295898914337 +karman_re100,target,26,10.4,velocity,upper_ux,0.7632758617401123 +karman_re100,target,26,10.4,velocity,upper_uy,0.10240340977907181 +karman_re100,target,26,10.4,velocity,center_ux,1.150167465209961 +karman_re100,target,26,10.4,velocity,center_uy,0.16548438370227814 +karman_re100,target,26,10.4,velocity,lower_ux,1.3259860277175903 +karman_re100,target,26,10.4,velocity,lower_uy,0.14356613159179688 +karman_re100,target,27,10.8,velocity,upper_ux,0.7731042504310608 +karman_re100,target,27,10.8,velocity,upper_uy,-0.09029878675937653 +karman_re100,target,27,10.8,velocity,center_ux,1.1403136253356934 +karman_re100,target,27,10.8,velocity,center_uy,-0.12903554737567902 +karman_re100,target,27,10.8,velocity,lower_ux,1.3146802186965942 +karman_re100,target,27,10.8,velocity,lower_uy,-0.014763008803129196 +karman_re100,target,28,11.2,velocity,upper_ux,0.8273792862892151 +karman_re100,target,28,11.2,velocity,upper_uy,-0.2464759647846222 +karman_re100,target,28,11.2,velocity,center_ux,1.1240111589431763 +karman_re100,target,28,11.2,velocity,center_uy,-0.37143218517303467 +karman_re100,target,28,11.2,velocity,lower_ux,1.2617567777633667 +karman_re100,target,28,11.2,velocity,lower_uy,-0.16795267164707184 +karman_re100,target,29,11.6,velocity,upper_ux,0.9101892709732056 +karman_re100,target,29,11.6,velocity,upper_uy,-0.3274332880973816 +karman_re100,target,29,11.6,velocity,center_ux,1.1087270975112915 +karman_re100,target,29,11.6,velocity,center_uy,-0.5013626217842102 +karman_re100,target,29,11.6,velocity,lower_ux,1.1856814622879028 +karman_re100,target,29,11.6,velocity,lower_uy,-0.2835069000720978 +karman_re100,target,30,12.0,velocity,upper_ux,0.9986773729324341 +karman_re100,target,30,12.0,velocity,upper_uy,-0.35341766476631165 +karman_re100,target,30,12.0,velocity,center_ux,1.1025313138961792 +karman_re100,target,30,12.0,velocity,center_uy,-0.5465100407600403 +karman_re100,target,30,12.0,velocity,lower_ux,1.1038641929626465 +karman_re100,target,30,12.0,velocity,lower_uy,-0.3589255213737488 +karman_re100,target,31,12.4,velocity,upper_ux,1.083267092704773 +karman_re100,target,31,12.4,velocity,upper_uy,-0.3682954013347626 +karman_re100,target,31,12.4,velocity,center_ux,1.1089832782745361 +karman_re100,target,31,12.4,velocity,center_uy,-0.5730546712875366 +karman_re100,target,31,12.4,velocity,lower_ux,1.023335576057434 +karman_re100,target,31,12.4,velocity,lower_uy,-0.4058798849582672 +karman_re100,target,32,12.8,velocity,upper_ux,1.1638195514678955 +karman_re100,target,32,12.8,velocity,upper_uy,-0.37415966391563416 +karman_re100,target,32,12.8,velocity,center_ux,1.122937798500061 +karman_re100,target,32,12.8,velocity,center_uy,-0.583539605140686 +karman_re100,target,32,12.8,velocity,lower_ux,0.9427459239959717 +karman_re100,target,32,12.8,velocity,lower_uy,-0.4196752905845642 +karman_re100,target,33,13.2,velocity,upper_ux,1.2354375123977661 +karman_re100,target,33,13.2,velocity,upper_uy,-0.3423765301704407 +karman_re100,target,33,13.2,velocity,center_ux,1.138808012008667 +karman_re100,target,33,13.2,velocity,center_uy,-0.5439515113830566 +karman_re100,target,33,13.2,velocity,lower_ux,0.8645297884941101 +karman_re100,target,33,13.2,velocity,lower_uy,-0.37980756163597107 +karman_re100,target,34,13.6,velocity,upper_ux,1.2943000793457031 +karman_re100,target,34,13.6,velocity,upper_uy,-0.265842080116272 +karman_re100,target,34,13.6,velocity,center_ux,1.1498507261276245 +karman_re100,target,34,13.6,velocity,center_uy,-0.4097585678100586 +karman_re100,target,34,13.6,velocity,lower_ux,0.7987788915634155 +karman_re100,target,34,13.6,velocity,lower_uy,-0.2714671790599823 +karman_re100,target,35,14.0,velocity,upper_ux,1.3259027004241943 +karman_re100,target,35,14.0,velocity,upper_uy,-0.1424957662820816 +karman_re100,target,35,14.0,velocity,center_ux,1.1498807668685913 +karman_re100,target,35,14.0,velocity,center_uy,-0.16332899034023285 +karman_re100,target,35,14.0,velocity,lower_ux,0.7627312541007996 +karman_re100,target,35,14.0,velocity,lower_uy,-0.1008661761879921 +karman_re100,target,36,14.4,velocity,upper_ux,1.3135358095169067 +karman_re100,target,36,14.4,velocity,upper_uy,0.015820568427443504 +karman_re100,target,36,14.4,velocity,center_ux,1.1392004489898682 +karman_re100,target,36,14.4,velocity,center_uy,0.13097268342971802 +karman_re100,target,36,14.4,velocity,lower_ux,0.7721495628356934 +karman_re100,target,36,14.4,velocity,lower_uy,0.09163685142993927 +karman_re100,target,37,14.8,velocity,upper_ux,1.2610507011413574 +karman_re100,target,37,14.8,velocity,upper_uy,0.16869747638702393 +karman_re100,target,37,14.8,velocity,center_ux,1.1234742403030396 +karman_re100,target,37,14.8,velocity,center_uy,0.3725818693637848 +karman_re100,target,37,14.8,velocity,lower_ux,0.8272604942321777 +karman_re100,target,37,14.8,velocity,lower_uy,0.247268408536911 +karman_re100,target,38,15.2,velocity,upper_ux,1.1856075525283813 +karman_re100,target,38,15.2,velocity,upper_uy,0.2839440107345581 +karman_re100,target,38,15.2,velocity,center_ux,1.1088939905166626 +karman_re100,target,38,15.2,velocity,center_uy,0.5018054842948914 +karman_re100,target,38,15.2,velocity,lower_ux,0.9108780026435852 +karman_re100,target,38,15.2,velocity,lower_uy,0.3277369737625122 +karman_re100,target,39,15.6,velocity,upper_ux,1.104404091835022 +karman_re100,target,39,15.6,velocity,upper_uy,0.3591737747192383 +karman_re100,target,39,15.6,velocity,center_ux,1.1034008264541626 +karman_re100,target,39,15.6,velocity,center_uy,0.5466654300689697 +karman_re100,target,39,15.6,velocity,lower_ux,1.0000776052474976 +karman_re100,target,39,15.6,velocity,lower_uy,0.3535371720790863 +karman_re100,target,40,16.0,velocity,upper_ux,1.0233309268951416 +karman_re100,target,40,16.0,velocity,upper_uy,0.4059792459011078 +karman_re100,target,40,16.0,velocity,center_ux,1.1094077825546265 +karman_re100,target,40,16.0,velocity,center_uy,0.5731909871101379 +karman_re100,target,40,16.0,velocity,lower_ux,1.084229826927185 +karman_re100,target,40,16.0,velocity,lower_uy,0.36842915415763855 +karman_re100,target,41,16.4,velocity,upper_ux,0.9414626359939575 +karman_re100,target,41,16.4,velocity,upper_uy,0.4195111095905304 +karman_re100,target,41,16.4,velocity,center_ux,1.1220614910125732 +karman_re100,target,41,16.4,velocity,center_uy,0.5834694504737854 +karman_re100,target,41,16.4,velocity,lower_ux,1.1634433269500732 +karman_re100,target,41,16.4,velocity,lower_uy,0.3741758465766907 +karman_re100,target,42,16.8,velocity,upper_ux,0.8633653521537781 +karman_re100,target,42,16.8,velocity,upper_uy,0.3793206512928009 +karman_re100,target,42,16.8,velocity,center_ux,1.1378668546676636 +karman_re100,target,42,16.8,velocity,center_uy,0.5434779524803162 +karman_re100,target,42,16.8,velocity,lower_ux,1.2349350452423096 +karman_re100,target,42,16.8,velocity,lower_uy,0.3421490788459778 +karman_re100,target,43,17.2,velocity,upper_ux,0.7984965443611145 +karman_re100,target,43,17.2,velocity,upper_uy,0.2706732749938965 +karman_re100,target,43,17.2,velocity,center_ux,1.1495262384414673 +karman_re100,target,43,17.2,velocity,center_uy,0.4086874723434448 +karman_re100,target,43,17.2,velocity,lower_ux,1.2943902015686035 +karman_re100,target,43,17.2,velocity,lower_uy,0.26537612080574036 +karman_re100,target,44,17.6,velocity,upper_ux,0.7634226083755493 +karman_re100,target,44,17.6,velocity,upper_uy,0.0998413935303688 +karman_re100,target,44,17.6,velocity,center_ux,1.1502158641815186 +karman_re100,target,44,17.6,velocity,center_uy,0.1616947054862976 +karman_re100,target,44,17.6,velocity,lower_ux,1.3265280723571777 +karman_re100,target,44,17.6,velocity,lower_uy,0.14168301224708557 +karman_re100,target,45,18.0,velocity,upper_ux,0.7734420895576477 +karman_re100,target,45,18.0,velocity,upper_uy,-0.09269914776086807 +karman_re100,target,45,18.0,velocity,center_ux,1.1397976875305176 +karman_re100,target,45,18.0,velocity,center_uy,-0.13282327353954315 +karman_re100,target,45,18.0,velocity,lower_ux,1.314154028892517 +karman_re100,target,45,18.0,velocity,lower_uy,-0.016953499987721443 +karman_re100,target,46,18.4,velocity,upper_ux,0.8277604579925537 +karman_re100,target,46,18.4,velocity,upper_uy,-0.2479255646467209 +karman_re100,target,46,18.4,velocity,center_ux,1.123034119606018 +karman_re100,target,46,18.4,velocity,center_uy,-0.37390846014022827 +karman_re100,target,46,18.4,velocity,lower_ux,1.2603271007537842 +karman_re100,target,46,18.4,velocity,lower_uy,-0.16981592774391174 +karman_re100,target,47,18.8,velocity,upper_ux,0.9105914235115051 +karman_re100,target,47,18.8,velocity,upper_uy,-0.3278267979621887 +karman_re100,target,47,18.8,velocity,center_ux,1.1077438592910767 +karman_re100,target,47,18.8,velocity,center_uy,-0.5022923946380615 +karman_re100,target,47,18.8,velocity,lower_ux,1.1839848756790161 +karman_re100,target,47,18.8,velocity,lower_uy,-0.28476130962371826 +karman_re100,target,48,19.2,velocity,upper_ux,1.0002440214157104 +karman_re100,target,48,19.2,velocity,upper_uy,-0.35347703099250793 +karman_re100,target,48,19.2,velocity,center_ux,1.1029661893844604 +karman_re100,target,48,19.2,velocity,center_uy,-0.5468485951423645 +karman_re100,target,48,19.2,velocity,lower_ux,1.1033803224563599 +karman_re100,target,48,19.2,velocity,lower_uy,-0.35975974798202515 +karman_re100,target,49,19.6,velocity,upper_ux,1.085038423538208 +karman_re100,target,49,19.6,velocity,upper_uy,-0.3683878779411316 +karman_re100,target,49,19.6,velocity,center_ux,1.1097986698150635 +karman_re100,target,49,19.6,velocity,center_uy,-0.5733532905578613 +karman_re100,target,49,19.6,velocity,lower_ux,1.0230116844177246 +karman_re100,target,49,19.6,velocity,lower_uy,-0.40640372037887573 +karman_re100,target,50,20.0,velocity,upper_ux,1.1649168729782104 +karman_re100,target,50,20.0,velocity,upper_uy,-0.3739676773548126 +karman_re100,target,50,20.0,velocity,center_ux,1.1232304573059082 +karman_re100,target,50,20.0,velocity,center_uy,-0.5833997130393982 +karman_re100,target,50,20.0,velocity,lower_ux,0.9417778253555298 +karman_re100,target,50,20.0,velocity,lower_uy,-0.41963931918144226 +karman_re100,target,51,20.4,velocity,upper_ux,1.2360544204711914 +karman_re100,target,51,20.4,velocity,upper_uy,-0.3415653705596924 +karman_re100,target,51,20.4,velocity,center_ux,1.138801097869873 +karman_re100,target,51,20.4,velocity,center_uy,-0.5428528785705566 +karman_re100,target,51,20.4,velocity,lower_ux,0.8633491396903992 +karman_re100,target,51,20.4,velocity,lower_uy,-0.3789049983024597 +karman_re100,target,52,20.8,velocity,upper_ux,1.2940996885299683 +karman_re100,target,52,20.8,velocity,upper_uy,-0.2644786536693573 +karman_re100,target,52,20.8,velocity,center_ux,1.1492037773132324 +karman_re100,target,52,20.8,velocity,center_uy,-0.40717020630836487 +karman_re100,target,52,20.8,velocity,lower_ux,0.7973666191101074 +karman_re100,target,52,20.8,velocity,lower_uy,-0.26966074109077454 +karman_re100,target,53,21.2,velocity,upper_ux,1.3257750272750854 +karman_re100,target,53,21.2,velocity,upper_uy,-0.14061187207698822 +karman_re100,target,53,21.2,velocity,center_ux,1.1496944427490234 +karman_re100,target,53,21.2,velocity,center_uy,-0.15969914197921753 +karman_re100,target,53,21.2,velocity,lower_ux,0.762448787689209 +karman_re100,target,53,21.2,velocity,lower_uy,-0.09852034598588943 +karman_re100,target,54,21.6,velocity,upper_ux,1.3138078451156616 +karman_re100,target,54,21.6,velocity,upper_uy,0.017960861325263977 +karman_re100,target,54,21.6,velocity,center_ux,1.1399072408676147 +karman_re100,target,54,21.6,velocity,center_uy,0.13465185463428497 +karman_re100,target,54,21.6,velocity,lower_ux,0.7734904289245605 +karman_re100,target,54,21.6,velocity,lower_uy,0.09399451315402985 +karman_re100,target,55,22.0,velocity,upper_ux,1.2604734897613525 +karman_re100,target,55,22.0,velocity,upper_uy,0.17058143019676208 +karman_re100,target,55,22.0,velocity,center_ux,1.1237550973892212 +karman_re100,target,55,22.0,velocity,center_uy,0.3751397728919983 +karman_re100,target,55,22.0,velocity,lower_ux,0.828762948513031 +karman_re100,target,55,22.0,velocity,lower_uy,0.24891987442970276 +karman_re100,target,56,22.4,velocity,upper_ux,1.184362530708313 +karman_re100,target,56,22.4,velocity,upper_uy,0.28525540232658386 +karman_re100,target,56,22.4,velocity,center_ux,1.1087558269500732 +karman_re100,target,56,22.4,velocity,center_uy,0.502841055393219 +karman_re100,target,56,22.4,velocity,lower_ux,0.9121218919754028 +karman_re100,target,56,22.4,velocity,lower_uy,0.32839491963386536 +karman_re100,target,57,22.8,velocity,upper_ux,1.1027748584747314 +karman_re100,target,57,22.8,velocity,upper_uy,0.3600185811519623 +karman_re100,target,57,22.8,velocity,center_ux,1.103029727935791 +karman_re100,target,57,22.8,velocity,center_uy,0.547065794467926 +karman_re100,target,57,22.8,velocity,lower_ux,1.0008647441864014 +karman_re100,target,57,22.8,velocity,lower_uy,0.3537921607494354 +karman_re100,target,58,23.2,velocity,upper_ux,1.0214965343475342 +karman_re100,target,58,23.2,velocity,upper_uy,0.40644142031669617 +karman_re100,target,58,23.2,velocity,center_ux,1.1089142560958862 +karman_re100,target,58,23.2,velocity,center_uy,0.5735238790512085 +karman_re100,target,58,23.2,velocity,lower_ux,1.0846457481384277 +karman_re100,target,58,23.2,velocity,lower_uy,0.3686332404613495 +karman_re100,target,59,23.6,velocity,upper_ux,0.94075608253479 +karman_re100,target,59,23.6,velocity,upper_uy,0.4193968176841736 +karman_re100,target,59,23.6,velocity,center_ux,1.122744083404541 +karman_re100,target,59,23.6,velocity,center_uy,0.5833600163459778 +karman_re100,target,59,23.6,velocity,lower_ux,1.1648765802383423 +karman_re100,target,59,23.6,velocity,lower_uy,0.37404170632362366 +karman_re100,target,60,24.0,velocity,upper_ux,0.8630441427230835 +karman_re100,target,60,24.0,velocity,upper_uy,0.37831780314445496 +karman_re100,target,60,24.0,velocity,center_ux,1.1389199495315552 +karman_re100,target,60,24.0,velocity,center_uy,0.5424197912216187 +karman_re100,target,60,24.0,velocity,lower_ux,1.2366327047348022 +karman_re100,target,60,24.0,velocity,lower_uy,0.3413727879524231 +karman_re100,target,61,24.4,velocity,upper_ux,0.7977944016456604 +karman_re100,target,61,24.4,velocity,upper_uy,0.2686476707458496 +karman_re100,target,61,24.4,velocity,center_ux,1.1498678922653198 +karman_re100,target,61,24.4,velocity,center_uy,0.40598544478416443 +karman_re100,target,61,24.4,velocity,lower_ux,1.295276165008545 +karman_re100,target,61,24.4,velocity,lower_uy,0.26397696137428284 +karman_re100,target,62,24.8,velocity,upper_ux,0.7629215121269226 +karman_re100,target,62,24.8,velocity,upper_uy,0.09713902324438095 +karman_re100,target,62,24.8,velocity,center_ux,1.1500563621520996 +karman_re100,target,62,24.8,velocity,center_uy,0.1577269434928894 +karman_re100,target,62,24.8,velocity,lower_ux,1.3265501260757446 +karman_re100,target,62,24.8,velocity,lower_uy,0.13966135680675507 +karman_re100,target,63,25.2,velocity,upper_ux,0.7730770707130432 +karman_re100,target,63,25.2,velocity,upper_uy,-0.09523800015449524 +karman_re100,target,63,25.2,velocity,center_ux,1.1389869451522827 +karman_re100,target,63,25.2,velocity,center_uy,-0.13661518692970276 +karman_re100,target,63,25.2,velocity,lower_ux,1.313047170639038 +karman_re100,target,63,25.2,velocity,lower_uy,-0.01908918097615242 +karman_re100,target,64,25.6,velocity,upper_ux,0.8282707333564758 +karman_re100,target,64,25.6,velocity,upper_uy,-0.24954263865947723 +karman_re100,target,64,25.6,velocity,center_ux,1.122565507888794 +karman_re100,target,64,25.6,velocity,center_uy,-0.37629738450050354 +karman_re100,target,64,25.6,velocity,lower_ux,1.2592304944992065 +karman_re100,target,64,25.6,velocity,lower_uy,-0.1714654415845871 +karman_re100,target,65,26.0,velocity,upper_ux,0.9123905897140503 +karman_re100,target,65,26.0,velocity,upper_uy,-0.3284870982170105 +karman_re100,target,65,26.0,velocity,center_ux,1.1083462238311768 +karman_re100,target,65,26.0,velocity,center_uy,-0.5032485127449036 +karman_re100,target,65,26.0,velocity,lower_ux,1.1837650537490845 +karman_re100,target,65,26.0,velocity,lower_uy,-0.2858361303806305 +karman_re100,target,66,26.4,velocity,upper_ux,1.0018004179000854 +karman_re100,target,66,26.4,velocity,upper_uy,-0.35375142097473145 +karman_re100,target,66,26.4,velocity,center_ux,1.1034067869186401 +karman_re100,target,66,26.4,velocity,center_uy,-0.5472071170806885 +karman_re100,target,66,26.4,velocity,lower_ux,1.1028335094451904 +karman_re100,target,66,26.4,velocity,lower_uy,-0.3604172170162201 +karman_re100,target,67,26.8,velocity,upper_ux,1.0860180854797363 +karman_re100,target,67,26.8,velocity,upper_uy,-0.3686428964138031 +karman_re100,target,67,26.8,velocity,center_ux,1.1097962856292725 +karman_re100,target,67,26.8,velocity,center_uy,-0.5736598372459412 +karman_re100,target,67,26.8,velocity,lower_ux,1.0219136476516724 +karman_re100,target,67,26.8,velocity,lower_uy,-0.4067092537879944 +karman_re100,target,68,27.2,velocity,upper_ux,1.165460467338562 +karman_re100,target,68,27.2,velocity,upper_uy,-0.3739249110221863 +karman_re100,target,68,27.2,velocity,center_ux,1.1228944063186646 +karman_re100,target,68,27.2,velocity,center_uy,-0.5832673907279968 +karman_re100,target,68,27.2,velocity,lower_ux,0.9403455257415771 +karman_re100,target,68,27.2,velocity,lower_uy,-0.4193851351737976 +karman_re100,target,69,27.6,velocity,upper_ux,1.2361037731170654 +karman_re100,target,69,27.6,velocity,upper_uy,-0.340963751077652 +karman_re100,target,69,27.6,velocity,center_ux,1.1380760669708252 +karman_re100,target,69,27.6,velocity,center_uy,-0.5418485999107361 +karman_re100,target,69,27.6,velocity,lower_ux,0.8617303967475891 +karman_re100,target,69,27.6,velocity,lower_uy,-0.3778955936431885 +karman_re100,target,70,28.0,velocity,upper_ux,1.2949130535125732 +karman_re100,target,70,28.0,velocity,upper_uy,-0.2633374333381653 +karman_re100,target,70,28.0,velocity,center_ux,1.1493117809295654 +karman_re100,target,70,28.0,velocity,center_uy,-0.4047718346118927 +karman_re100,target,70,28.0,velocity,lower_ux,0.7970229387283325 +karman_re100,target,70,28.0,velocity,lower_uy,-0.26785922050476074 +karman_re100,target,71,28.4,velocity,upper_ux,1.3266291618347168 +karman_re100,target,71,28.4,velocity,upper_uy,-0.1387612372636795 +karman_re100,target,71,28.4,velocity,center_ux,1.150133490562439 +karman_re100,target,71,28.4,velocity,center_uy,-0.1560201495885849 +karman_re100,target,71,28.4,velocity,lower_ux,0.7630977034568787 +karman_re100,target,71,28.4,velocity,lower_uy,-0.09609587490558624 +karman_re100,target,72,28.8,velocity,upper_ux,1.313470721244812 +karman_re100,target,72,28.8,velocity,upper_uy,0.020166056230664253 +karman_re100,target,72,28.8,velocity,center_ux,1.1396652460098267 +karman_re100,target,72,28.8,velocity,center_uy,0.1384001225233078 +karman_re100,target,72,28.8,velocity,lower_ux,0.7741897106170654 +karman_re100,target,72,28.8,velocity,lower_uy,0.09632422775030136 +karman_re100,target,73,29.2,velocity,upper_ux,1.2593293190002441 +karman_re100,target,73,29.2,velocity,upper_uy,0.17250394821166992 +karman_re100,target,73,29.2,velocity,center_ux,1.1231759786605835 +karman_re100,target,73,29.2,velocity,center_uy,0.3776152729988098 +karman_re100,target,73,29.2,velocity,lower_ux,0.8296160697937012 +karman_re100,target,73,29.2,velocity,lower_uy,0.2503427565097809 +karman_re100,target,74,29.6,velocity,upper_ux,1.182623267173767 +karman_re100,target,74,29.6,velocity,upper_uy,0.2866072654724121 +karman_re100,target,74,29.6,velocity,center_ux,1.1078765392303467 +karman_re100,target,74,29.6,velocity,center_uy,0.5037888288497925 +karman_re100,target,74,29.6,velocity,lower_ux,0.9127151966094971 +karman_re100,target,74,29.6,velocity,lower_uy,0.3287883400917053 +karman_re100,target,75,30.0,velocity,upper_ux,1.1013209819793701 +karman_re100,target,75,30.0,velocity,upper_uy,0.36092498898506165 +karman_re100,target,75,30.0,velocity,center_ux,1.1026270389556885 +karman_re100,target,75,30.0,velocity,center_uy,0.5474222302436829 +karman_re100,target,75,30.0,velocity,lower_ux,1.00160551071167 +karman_re100,target,75,30.0,velocity,lower_uy,0.3538516163825989 +karman_re100,target,76,30.4,velocity,upper_ux,1.0211032629013062 +karman_re100,target,76,30.4,velocity,upper_uy,0.40701836347579956 +karman_re100,target,76,30.4,velocity,center_ux,1.1097617149353027 +karman_re100,target,76,30.4,velocity,center_uy,0.573836088180542 +karman_re100,target,76,30.4,velocity,lower_ux,1.086402177810669 +karman_re100,target,76,30.4,velocity,lower_uy,0.36871105432510376 +karman_re100,target,77,30.8,velocity,upper_ux,0.9401813745498657 +karman_re100,target,77,30.8,velocity,upper_uy,0.4193879961967468 +karman_re100,target,77,30.8,velocity,center_ux,1.1235721111297607 +karman_re100,target,77,30.8,velocity,center_uy,0.5832063555717468 +karman_re100,target,77,30.8,velocity,lower_ux,1.1664581298828125 +karman_re100,target,77,30.8,velocity,lower_uy,0.37379688024520874 +karman_re100,target,78,31.2,velocity,upper_ux,0.8619924783706665 +karman_re100,target,78,31.2,velocity,upper_uy,0.3774052858352661 +karman_re100,target,78,31.2,velocity,center_ux,1.139237403869629 +karman_re100,target,78,31.2,velocity,center_uy,0.5412849187850952 +karman_re100,target,78,31.2,velocity,lower_ux,1.2375142574310303 +karman_re100,target,78,31.2,velocity,lower_uy,0.3404863476753235 +karman_re100,target,79,31.6,velocity,upper_ux,0.7967284917831421 +karman_re100,target,79,31.6,velocity,upper_uy,0.26673373579978943 +karman_re100,target,79,31.6,velocity,center_ux,1.1498007774353027 +karman_re100,target,79,31.6,velocity,center_uy,0.40324580669403076 +karman_re100,target,79,31.6,velocity,lower_ux,1.2955814599990845 +karman_re100,target,79,31.6,velocity,lower_uy,0.26249945163726807 +karman_re100,target,80,32.0,velocity,upper_ux,0.7620561122894287 +karman_re100,target,80,32.0,velocity,upper_uy,0.09461679309606552 +karman_re100,target,80,32.0,velocity,center_ux,1.1495044231414795 +karman_re100,target,80,32.0,velocity,center_uy,0.15389001369476318 +karman_re100,target,80,32.0,velocity,lower_ux,1.3259602785110474 +karman_re100,target,80,32.0,velocity,lower_uy,0.13766099512577057 +karman_re100,target,81,32.4,velocity,upper_ux,0.773681104183197 +karman_re100,target,81,32.4,velocity,upper_uy,-0.09765362739562988 +karman_re100,target,81,32.4,velocity,center_ux,1.139161229133606 +karman_re100,target,81,32.4,velocity,center_uy,-0.14026565849781036 +karman_re100,target,81,32.4,velocity,lower_ux,1.3127015829086304 +karman_re100,target,81,32.4,velocity,lower_uy,-0.02117886394262314 +karman_re100,target,82,32.8,velocity,upper_ux,0.8300254344940186 +karman_re100,target,82,32.8,velocity,upper_uy,-0.251250296831131 +karman_re100,target,82,32.8,velocity,center_ux,1.1232802867889404 +karman_re100,target,82,32.8,velocity,center_uy,-0.3787800669670105 +karman_re100,target,82,32.8,velocity,lower_ux,1.259057879447937 +karman_re100,target,82,32.8,velocity,lower_uy,-0.17322058975696564 +karman_re100,target,83,33.2,velocity,upper_ux,0.913869321346283 +karman_re100,target,83,33.2,velocity,upper_uy,-0.3292422890663147 +karman_re100,target,83,33.2,velocity,center_ux,1.1085472106933594 +karman_re100,target,83,33.2,velocity,center_uy,-0.5042670369148254 +karman_re100,target,83,33.2,velocity,lower_ux,1.1828702688217163 +karman_re100,target,83,33.2,velocity,lower_uy,-0.28702598810195923 +karman_re100,target,84,33.6,velocity,upper_ux,1.0028456449508667 +karman_re100,target,84,33.6,velocity,upper_uy,-0.3540906012058258 +karman_re100,target,84,33.6,velocity,center_ux,1.1033307313919067 +karman_re100,target,84,33.6,velocity,center_uy,-0.5476049184799194 +karman_re100,target,84,33.6,velocity,lower_ux,1.101540446281433 +karman_re100,target,84,33.6,velocity,lower_uy,-0.3611389398574829 +karman_re100,target,85,34.0,velocity,upper_ux,1.0865763425827026 +karman_re100,target,85,34.0,velocity,upper_uy,-0.3689197599887848 +karman_re100,target,85,34.0,velocity,center_ux,1.1094073057174683 +karman_re100,target,85,34.0,velocity,center_uy,-0.573982834815979 +karman_re100,target,85,34.0,velocity,lower_ux,1.020238995552063 +karman_re100,target,85,34.0,velocity,lower_uy,-0.40704551339149475 +karman_re100,target,86,34.4,velocity,upper_ux,1.1659996509552002 +karman_re100,target,86,34.4,velocity,upper_uy,-0.37386181950569153 +karman_re100,target,86,34.4,velocity,center_ux,1.1226269006729126 +karman_re100,target,86,34.4,velocity,center_uy,-0.5831465721130371 +karman_re100,target,86,34.4,velocity,lower_ux,0.9388149380683899 +karman_re100,target,86,34.4,velocity,lower_uy,-0.4191471338272095 +karman_re100,target,87,34.8,velocity,upper_ux,1.2375669479370117 +karman_re100,target,87,34.8,velocity,upper_uy,-0.3403054475784302 +karman_re100,target,87,34.8,velocity,center_ux,1.1388144493103027 +karman_re100,target,87,34.8,velocity,center_uy,-0.5408310890197754 +karman_re100,target,87,34.8,velocity,lower_ux,0.8613187670707703 +karman_re100,target,87,34.8,velocity,lower_uy,-0.37684565782546997 +karman_re100,target,88,35.2,velocity,upper_ux,1.2961846590042114 +karman_re100,target,88,35.2,velocity,upper_uy,-0.26204800605773926 +karman_re100,target,88,35.2,velocity,center_ux,1.149899959564209 +karman_re100,target,88,35.2,velocity,center_uy,-0.40213853120803833 +karman_re100,target,88,35.2,velocity,lower_ux,0.7968173027038574 +karman_re100,target,88,35.2,velocity,lower_uy,-0.2658356726169586 +karman_re100,target,89,35.6,velocity,upper_ux,1.3268214464187622 +karman_re100,target,89,35.6,velocity,upper_uy,-0.13679952919483185 +karman_re100,target,89,35.6,velocity,center_ux,1.149964451789856 +karman_re100,target,89,35.6,velocity,center_uy,-0.15211857855319977 +karman_re100,target,89,35.6,velocity,lower_ux,0.762833833694458 +karman_re100,target,89,35.6,velocity,lower_uy,-0.0934412032365799 +karman_re100,target,90,36.0,velocity,upper_ux,1.3127360343933105 +karman_re100,target,90,36.0,velocity,upper_uy,0.022329941391944885 +karman_re100,target,90,36.0,velocity,center_ux,1.1390626430511475 +karman_re100,target,90,36.0,velocity,center_uy,0.1421794444322586 +karman_re100,target,90,36.0,velocity,lower_ux,0.7742672562599182 +karman_re100,target,90,36.0,velocity,lower_uy,0.0987866148352623 +karman_re100,target,91,36.4,velocity,upper_ux,1.2578229904174805 +karman_re100,target,91,36.4,velocity,upper_uy,0.17424346506595612 +karman_re100,target,91,36.4,velocity,center_ux,1.1221845149993896 +karman_re100,target,91,36.4,velocity,center_uy,0.3800038993358612 +karman_re100,target,91,36.4,velocity,lower_ux,0.8298092484474182 +karman_re100,target,91,36.4,velocity,lower_uy,0.2518371343612671 +karman_re100,target,92,36.8,velocity,upper_ux,1.1816867589950562 +karman_re100,target,92,36.8,velocity,upper_uy,0.28773942589759827 +karman_re100,target,92,36.8,velocity,center_ux,1.107670545578003 +karman_re100,target,92,36.8,velocity,center_uy,0.5046864748001099 +karman_re100,target,92,36.8,velocity,lower_ux,0.9137828350067139 +karman_re100,target,92,36.8,velocity,lower_uy,0.3292733132839203 +karman_re100,target,93,37.2,velocity,upper_ux,1.101067304611206 +karman_re100,target,93,37.2,velocity,upper_uy,0.3616558313369751 +karman_re100,target,93,37.2,velocity,center_ux,1.1033008098602295 +karman_re100,target,93,37.2,velocity,center_uy,0.5477600693702698 +karman_re100,target,93,37.2,velocity,lower_ux,1.0033981800079346 +karman_re100,target,93,37.2,velocity,lower_uy,0.3540029227733612 +karman_re100,target,94,37.6,velocity,upper_ux,1.0203441381454468 +karman_re100,target,94,37.6,velocity,upper_uy,0.40742194652557373 +karman_re100,target,94,37.6,velocity,center_ux,1.110102891921997 +karman_re100,target,94,37.6,velocity,center_uy,0.5741292238235474 +karman_re100,target,94,37.6,velocity,lower_ux,1.0877161026000977 +karman_re100,target,94,37.6,velocity,lower_uy,0.36887672543525696 +karman_re100,target,95,38.0,velocity,upper_ux,0.9389967918395996 +karman_re100,target,95,38.0,velocity,upper_uy,0.41922757029533386 +karman_re100,target,95,38.0,velocity,center_ux,1.1235393285751343 +karman_re100,target,95,38.0,velocity,center_uy,0.5830516219139099 +karman_re100,target,95,38.0,velocity,lower_ux,1.1672672033309937 +karman_re100,target,95,38.0,velocity,lower_uy,0.3736652731895447 +karman_re100,target,96,38.4,velocity,upper_ux,0.8605852723121643 +karman_re100,target,96,38.4,velocity,upper_uy,0.3764255940914154 +karman_re100,target,96,38.4,velocity,center_ux,1.1388297080993652 +karman_re100,target,96,38.4,velocity,center_uy,0.5401914119720459 +karman_re100,target,96,38.4,velocity,lower_ux,1.2378100156784058 +karman_re100,target,96,38.4,velocity,lower_uy,0.3397645652294159 +karman_re100,target,97,38.8,velocity,upper_ux,0.7956358194351196 +karman_re100,target,97,38.8,velocity,upper_uy,0.2649388015270233 +karman_re100,target,97,38.8,velocity,center_ux,1.1492613554000854 +karman_re100,target,97,38.8,velocity,center_uy,0.4007415473461151 +karman_re100,target,97,38.8,velocity,lower_ux,1.2956092357635498 +karman_re100,target,97,38.8,velocity,lower_uy,0.26124730706214905 +karman_re100,target,98,39.2,velocity,upper_ux,0.7624849677085876 +karman_re100,target,98,39.2,velocity,upper_uy,0.0922698974609375 +karman_re100,target,98,39.2,velocity,center_ux,1.1498216390609741 +karman_re100,target,98,39.2,velocity,center_uy,0.15027020871639252 +karman_re100,target,98,39.2,velocity,lower_ux,1.326499342918396 +karman_re100,target,98,39.2,velocity,lower_uy,0.13580521941184998 +karman_re100,target,99,39.6,velocity,upper_ux,0.7748554944992065 +karman_re100,target,99,39.6,velocity,upper_uy,-0.09997690469026566 +karman_re100,target,99,39.6,velocity,center_ux,1.1394954919815063 +karman_re100,target,99,39.6,velocity,center_uy,-0.14396680891513824 +karman_re100,target,99,39.6,velocity,lower_ux,1.3127539157867432 +karman_re100,target,99,39.6,velocity,lower_uy,-0.023361612111330032 +karman_re100,target,100,40.0,velocity,upper_ux,0.8311404585838318 +karman_re100,target,100,40.0,velocity,upper_uy,-0.25274857878685 +karman_re100,target,100,40.0,velocity,center_ux,1.1230361461639404 +karman_re100,target,100,40.0,velocity,center_uy,-0.3812585771083832 +karman_re100,target,100,40.0,velocity,lower_ux,1.258082628250122 +karman_re100,target,100,40.0,velocity,lower_uy,-0.1751270741224289 +karman_re100,target,101,40.4,velocity,upper_ux,0.9148857593536377 +karman_re100,target,101,40.4,velocity,upper_uy,-0.3297380805015564 +karman_re100,target,101,40.4,velocity,center_ux,1.1081229448318481 +karman_re100,target,101,40.4,velocity,center_uy,-0.5052286386489868 +karman_re100,target,101,40.4,velocity,lower_ux,1.1814383268356323 +karman_re100,target,101,40.4,velocity,lower_uy,-0.2883647680282593 +karman_re100,target,102,40.8,velocity,upper_ux,1.0034217834472656 +karman_re100,target,102,40.8,velocity,upper_uy,-0.35423821210861206 +karman_re100,target,102,40.8,velocity,center_ux,1.102756381034851 +karman_re100,target,102,40.8,velocity,center_uy,-0.5479826331138611 +karman_re100,target,102,40.8,velocity,lower_ux,1.09978449344635 +karman_re100,target,102,40.8,velocity,lower_uy,-0.3620269298553467 +karman_re100,target,103,41.2,velocity,upper_ux,1.0876015424728394 +karman_re100,target,103,41.2,velocity,upper_uy,-0.3690493404865265 +karman_re100,target,103,41.2,velocity,center_ux,1.109541654586792 +karman_re100,target,103,41.2,velocity,center_uy,-0.574302613735199 +karman_re100,target,103,41.2,velocity,lower_ux,1.019067645072937 +karman_re100,target,103,41.2,velocity,lower_uy,-0.407572478055954 +karman_re100,target,104,41.6,velocity,upper_ux,1.1677688360214233 +karman_re100,target,104,41.6,velocity,upper_uy,-0.3736445903778076 +karman_re100,target,104,41.6,velocity,center_ux,1.1236586570739746 +karman_re100,target,104,41.6,velocity,center_uy,-0.5829983353614807 +karman_re100,target,104,41.6,velocity,lower_ux,0.9384216070175171 +karman_re100,target,104,41.6,velocity,lower_uy,-0.4190816879272461 +karman_re100,target,105,42.0,velocity,upper_ux,1.2388455867767334 +karman_re100,target,105,42.0,velocity,upper_uy,-0.33943721652030945 +karman_re100,target,105,42.0,velocity,center_ux,1.1395037174224854 +karman_re100,target,105,42.0,velocity,center_uy,-0.5396903157234192 +karman_re100,target,105,42.0,velocity,lower_ux,0.8605934977531433 +karman_re100,target,105,42.0,velocity,lower_uy,-0.37586331367492676 +karman_re100,target,106,42.4,velocity,upper_ux,1.296758770942688 +karman_re100,target,106,42.4,velocity,upper_uy,-0.26057595014572144 +karman_re100,target,106,42.4,velocity,center_ux,1.1500455141067505 +karman_re100,target,106,42.4,velocity,center_uy,-0.3993629515171051 +karman_re100,target,106,42.4,velocity,lower_ux,0.7959032654762268 +karman_re100,target,106,42.4,velocity,lower_uy,-0.26383712887763977 +karman_re100,target,107,42.8,velocity,upper_ux,1.3265419006347656 +karman_re100,target,107,42.8,velocity,upper_uy,-0.1347561776638031 +karman_re100,target,107,42.8,velocity,center_ux,1.1496518850326538 +karman_re100,target,107,42.8,velocity,center_uy,-0.14816628396511078 +karman_re100,target,107,42.8,velocity,lower_ux,0.7621647715568542 +karman_re100,target,107,42.8,velocity,lower_uy,-0.09079206734895706 +karman_re100,target,108,43.2,velocity,upper_ux,1.3117549419403076 +karman_re100,target,108,43.2,velocity,upper_uy,0.024424586445093155 +karman_re100,target,108,43.2,velocity,center_ux,1.1385234594345093 +karman_re100,target,108,43.2,velocity,center_uy,0.145869642496109 +karman_re100,target,108,43.2,velocity,lower_ux,0.7741348743438721 +karman_re100,target,108,43.2,velocity,lower_uy,0.10126052796840668 +karman_re100,target,109,43.6,velocity,upper_ux,1.2573617696762085 +karman_re100,target,109,43.6,velocity,upper_uy,0.17589789628982544 +karman_re100,target,109,43.6,velocity,center_ux,1.1224942207336426 +karman_re100,target,109,43.6,velocity,center_uy,0.3823779821395874 +karman_re100,target,109,43.6,velocity,lower_ux,0.8310911059379578 +karman_re100,target,109,43.6,velocity,lower_uy,0.2534838616847992 +karman_re100,target,110,44.0,velocity,upper_ux,1.1812806129455566 +karman_re100,target,110,44.0,velocity,upper_uy,0.28883785009384155 +karman_re100,target,110,44.0,velocity,center_ux,1.1082338094711304 +karman_re100,target,110,44.0,velocity,center_uy,0.5056474804878235 +karman_re100,target,110,44.0,velocity,lower_ux,0.9155644178390503 +karman_re100,target,110,44.0,velocity,lower_uy,0.3299909830093384 +karman_re100,target,111,44.4,velocity,upper_ux,1.1000632047653198 +karman_re100,target,111,44.4,velocity,upper_uy,0.3623143136501312 +karman_re100,target,111,44.4,velocity,center_ux,1.1033987998962402 +karman_re100,target,111,44.4,velocity,center_uy,0.5481382608413696 +karman_re100,target,111,44.4,velocity,lower_ux,1.0046019554138184 +karman_re100,target,111,44.4,velocity,lower_uy,0.3543303608894348 +karman_re100,target,112,44.8,velocity,upper_ux,1.0190213918685913 +karman_re100,target,112,44.8,velocity,upper_uy,0.4077055752277374 +karman_re100,target,112,44.8,velocity,center_ux,1.1099576950073242 +karman_re100,target,112,44.8,velocity,center_uy,0.5744379758834839 +karman_re100,target,112,44.8,velocity,lower_ux,1.0885350704193115 +karman_re100,target,112,44.8,velocity,lower_uy,0.36915749311447144 +karman_re100,target,113,45.2,velocity,upper_ux,0.9373674988746643 +karman_re100,target,113,45.2,velocity,upper_uy,0.4189387261867523 +karman_re100,target,113,45.2,velocity,center_ux,1.123064637184143 +karman_re100,target,113,45.2,velocity,center_uy,0.5829097628593445 +karman_re100,target,113,45.2,velocity,lower_ux,1.167647361755371 +karman_re100,target,113,45.2,velocity,lower_uy,0.37361666560173035 +karman_re100,target,114,45.6,velocity,upper_ux,0.8594820499420166 +karman_re100,target,114,45.6,velocity,upper_uy,0.3753714859485626 +karman_re100,target,114,45.6,velocity,center_ux,1.138694167137146 +karman_re100,target,114,45.6,velocity,center_uy,0.5391700267791748 +karman_re100,target,114,45.6,velocity,lower_ux,1.2384368181228638 +karman_re100,target,114,45.6,velocity,lower_uy,0.33915087580680847 +karman_re100,target,115,46.0,velocity,upper_ux,0.7956283688545227 +karman_re100,target,115,46.0,velocity,upper_uy,0.26300838589668274 +karman_re100,target,115,46.0,velocity,center_ux,1.149815320968628 +karman_re100,target,115,46.0,velocity,center_uy,0.3982087969779968 +karman_re100,target,115,46.0,velocity,lower_ux,1.2968852519989014 +karman_re100,target,115,46.0,velocity,lower_uy,0.2600412964820862 +karman_re100,target,116,46.4,velocity,upper_ux,0.7627008557319641 +karman_re100,target,116,46.4,velocity,upper_uy,0.08971770107746124 +karman_re100,target,116,46.4,velocity,center_ux,1.1499148607254028 +karman_re100,target,116,46.4,velocity,center_uy,0.14645643532276154 +karman_re100,target,116,46.4,velocity,lower_ux,1.327012538909912 +karman_re100,target,116,46.4,velocity,lower_uy,0.13388791680335999 +karman_re100,target,117,46.8,velocity,upper_ux,0.7752124071121216 +karman_re100,target,117,46.8,velocity,upper_uy,-0.10233908891677856 +karman_re100,target,117,46.8,velocity,center_ux,1.13898503780365 +karman_re100,target,117,46.8,velocity,center_uy,-0.1477024108171463 +karman_re100,target,117,46.8,velocity,lower_ux,1.312156319618225 +karman_re100,target,117,46.8,velocity,lower_uy,-0.025546453893184662 +karman_re100,target,118,47.2,velocity,upper_ux,0.8317133188247681 +karman_re100,target,118,47.2,velocity,upper_uy,-0.25415265560150146 +karman_re100,target,118,47.2,velocity,center_ux,1.1222540140151978 +karman_re100,target,118,47.2,velocity,center_uy,-0.3836478292942047 +karman_re100,target,118,47.2,velocity,lower_ux,1.2567813396453857 +karman_re100,target,118,47.2,velocity,lower_uy,-0.17696040868759155 +karman_re100,target,119,47.6,velocity,upper_ux,0.9154720306396484 +karman_re100,target,119,47.6,velocity,upper_uy,-0.33012595772743225 +karman_re100,target,119,47.6,velocity,center_ux,1.107324242591858 +karman_re100,target,119,47.6,velocity,center_uy,-0.5061147809028625 +karman_re100,target,119,47.6,velocity,lower_ux,1.17986261844635 +karman_re100,target,119,47.6,velocity,lower_uy,-0.2896052300930023 +karman_re100,target,120,48.0,velocity,upper_ux,1.0047848224639893 +karman_re100,target,120,48.0,velocity,upper_uy,-0.35431790351867676 +karman_re100,target,120,48.0,velocity,center_ux,1.1030006408691406 +karman_re100,target,120,48.0,velocity,center_uy,-0.5483235120773315 +karman_re100,target,120,48.0,velocity,lower_ux,1.099056363105774 +karman_re100,target,120,48.0,velocity,lower_uy,-0.36284926533699036 +karman_re100,target,121,48.4,velocity,upper_ux,1.089312195777893 +karman_re100,target,121,48.4,velocity,upper_uy,-0.369151771068573 +karman_re100,target,121,48.4,velocity,center_ux,1.1103146076202393 +karman_re100,target,121,48.4,velocity,center_uy,-0.5745974779129028 +karman_re100,target,121,48.4,velocity,lower_ux,1.0186651945114136 +karman_re100,target,121,48.4,velocity,lower_uy,-0.40807202458381653 +karman_re100,target,122,48.8,velocity,upper_ux,1.1688867807388306 +karman_re100,target,122,48.8,velocity,upper_uy,-0.3734257221221924 +karman_re100,target,122,48.8,velocity,center_ux,1.1239879131317139 +karman_re100,target,122,48.8,velocity,center_uy,-0.5828230381011963 +karman_re100,target,122,48.8,velocity,lower_ux,0.9374637603759766 +karman_re100,target,122,48.8,velocity,lower_uy,-0.41899749636650085 +karman_re100,target,123,49.2,velocity,upper_ux,1.2394641637802124 +karman_re100,target,123,49.2,velocity,upper_uy,-0.338599294424057 +karman_re100,target,123,49.2,velocity,center_ux,1.1395092010498047 +karman_re100,target,123,49.2,velocity,center_uy,-0.5385305881500244 +karman_re100,target,123,49.2,velocity,lower_ux,0.8594084978103638 +karman_re100,target,123,49.2,velocity,lower_uy,-0.3749062716960907 +karman_re100,target,124,49.6,velocity,upper_ux,1.296804666519165 +karman_re100,target,124,49.6,velocity,upper_uy,-0.2591719329357147 +karman_re100,target,124,49.6,velocity,center_ux,1.1496554613113403 +karman_re100,target,124,49.6,velocity,center_uy,-0.3966774642467499 +karman_re100,target,124,49.6,velocity,lower_ux,0.7947359681129456 +karman_re100,target,124,49.6,velocity,lower_uy,-0.2619607746601105 +karman_re100,target,125,50.0,velocity,upper_ux,1.3263440132141113 +karman_re100,target,125,50.0,velocity,upper_uy,-0.13282270729541779 +karman_re100,target,125,50.0,velocity,center_ux,1.1494134664535522 +karman_re100,target,125,50.0,velocity,center_uy,-0.14444661140441895 +karman_re100,target,125,50.0,velocity,lower_ux,0.7618298530578613 +karman_re100,target,125,50.0,velocity,lower_uy,-0.08837518841028214 +karman_re100,target,126,50.4,velocity,upper_ux,1.3118209838867188 +karman_re100,target,126,50.4,velocity,upper_uy,0.026554049924016 +karman_re100,target,126,50.4,velocity,center_ux,1.139039158821106 +karman_re100,target,126,50.4,velocity,center_uy,0.14951728284358978 +karman_re100,target,126,50.4,velocity,lower_ux,0.7752870917320251 +karman_re100,target,126,50.4,velocity,lower_uy,0.10361423343420029 +karman_re100,target,127,50.8,velocity,upper_ux,1.2567991018295288 +karman_re100,target,127,50.8,velocity,upper_uy,0.17772729694843292 +karman_re100,target,127,50.8,velocity,center_ux,1.122787594795227 +karman_re100,target,127,50.8,velocity,center_uy,0.38483765721321106 +karman_re100,target,127,50.8,velocity,lower_ux,0.832594096660614 +karman_re100,target,127,50.8,velocity,lower_uy,0.255085289478302 +karman_re100,target,128,51.2,velocity,upper_ux,1.1800391674041748 +karman_re100,target,128,51.2,velocity,upper_uy,0.29009130597114563 +karman_re100,target,128,51.2,velocity,center_ux,1.1080806255340576 +karman_re100,target,128,51.2,velocity,center_uy,0.5066156983375549 +karman_re100,target,128,51.2,velocity,lower_ux,0.9167667627334595 +karman_re100,target,128,51.2,velocity,lower_uy,0.330617219209671 +karman_re100,target,129,51.6,velocity,upper_ux,1.0985702276229858 +karman_re100,target,129,51.6,velocity,upper_uy,0.36310988664627075 +karman_re100,target,129,51.6,velocity,center_ux,1.1031384468078613 +karman_re100,target,129,51.6,velocity,center_uy,0.54852694272995 +karman_re100,target,129,51.6,velocity,lower_ux,1.0054755210876465 +karman_re100,target,129,51.6,velocity,lower_uy,0.35458579659461975 +karman_re100,target,130,52.0,velocity,upper_ux,1.0173736810684204 +karman_re100,target,130,52.0,velocity,upper_uy,0.4081207513809204 +karman_re100,target,130,52.0,velocity,center_ux,1.1096265316009521 +karman_re100,target,130,52.0,velocity,center_uy,0.5747548937797546 +karman_re100,target,130,52.0,velocity,lower_ux,1.089117169380188 +karman_re100,target,130,52.0,velocity,lower_uy,0.369364857673645 +karman_re100,target,131,52.4,velocity,upper_ux,0.9364662766456604 +karman_re100,target,131,52.4,velocity,upper_uy,0.41876477003097534 +karman_re100,target,131,52.4,velocity,center_ux,1.1235188245773315 +karman_re100,target,131,52.4,velocity,center_uy,0.5827634334564209 +karman_re100,target,131,52.4,velocity,lower_ux,1.1688599586486816 +karman_re100,target,131,52.4,velocity,lower_uy,0.3734667897224426 +karman_re100,target,132,52.8,velocity,upper_ux,0.8590973615646362 +karman_re100,target,132,52.8,velocity,upper_uy,0.3743163049221039 +karman_re100,target,132,52.8,velocity,center_ux,1.1396130323410034 +karman_re100,target,132,52.8,velocity,center_uy,0.538051187992096 +karman_re100,target,132,52.8,velocity,lower_ux,1.240013599395752 +karman_re100,target,132,52.8,velocity,lower_uy,0.33837029337882996 +karman_re100,target,133,53.2,velocity,upper_ux,0.7949949502944946 +karman_re100,target,133,53.2,velocity,upper_uy,0.26095056533813477 +karman_re100,target,133,53.2,velocity,center_ux,1.1501250267028809 +karman_re100,target,133,53.2,velocity,center_uy,0.395445317029953 +karman_re100,target,133,53.2,velocity,lower_ux,1.2977516651153564 +karman_re100,target,133,53.2,velocity,lower_uy,0.25863608717918396 +karman_re100,target,134,53.6,velocity,upper_ux,0.7622436285018921 +karman_re100,target,134,53.6,velocity,upper_uy,0.08703827112913132 +karman_re100,target,134,53.6,velocity,center_ux,1.1496886014938354 +karman_re100,target,134,53.6,velocity,center_uy,0.14249970018863678 +karman_re100,target,134,53.6,velocity,lower_ux,1.3269761800765991 +karman_re100,target,134,53.6,velocity,lower_uy,0.1318686455488205 +karman_re100,target,135,54.0,velocity,upper_ux,0.7751201391220093 +karman_re100,target,135,54.0,velocity,upper_uy,-0.10481498390436172 +karman_re100,target,135,54.0,velocity,center_ux,1.1383477449417114 +karman_re100,target,135,54.0,velocity,center_uy,-0.1514338254928589 +karman_re100,target,135,54.0,velocity,lower_ux,1.3112308979034424 +karman_re100,target,135,54.0,velocity,lower_uy,-0.027674609795212746 +karman_re100,target,136,54.4,velocity,upper_ux,0.8322612643241882 +karman_re100,target,136,54.4,velocity,upper_uy,-0.2556927800178528 +karman_re100,target,136,54.4,velocity,center_ux,1.1217412948608398 +karman_re100,target,136,54.4,velocity,center_uy,-0.3859707713127136 +karman_re100,target,136,54.4,velocity,lower_ux,1.2556378841400146 +karman_re100,target,136,54.4,velocity,lower_uy,-0.17861802875995636 +karman_re100,target,137,54.8,velocity,upper_ux,0.9170839190483093 +karman_re100,target,137,54.8,velocity,upper_uy,-0.3307112455368042 +karman_re100,target,137,54.8,velocity,center_ux,1.107710599899292 +karman_re100,target,137,54.8,velocity,center_uy,-0.5070093274116516 +karman_re100,target,137,54.8,velocity,lower_ux,1.179421067237854 +karman_re100,target,137,54.8,velocity,lower_uy,-0.29068323969841003 +karman_re100,target,138,55.2,velocity,upper_ux,1.0063397884368896 +karman_re100,target,138,55.2,velocity,upper_uy,-0.3545588254928589 +karman_re100,target,138,55.2,velocity,center_ux,1.1034435033798218 +karman_re100,target,138,55.2,velocity,center_uy,-0.5486741065979004 +karman_re100,target,138,55.2,velocity,lower_ux,1.0985004901885986 +karman_re100,target,138,55.2,velocity,lower_uy,-0.36351895332336426 +karman_re100,target,139,55.6,velocity,upper_ux,1.0902928113937378 +karman_re100,target,139,55.6,velocity,upper_uy,-0.36937934160232544 +karman_re100,target,139,55.6,velocity,center_ux,1.1103241443634033 +karman_re100,target,139,55.6,velocity,center_uy,-0.5748924016952515 +karman_re100,target,139,55.6,velocity,lower_ux,1.0175585746765137 +karman_re100,target,139,55.6,velocity,lower_uy,-0.4083891808986664 +karman_re100,target,140,56.0,velocity,upper_ux,1.169512152671814 +karman_re100,target,140,56.0,velocity,upper_uy,-0.373331218957901 +karman_re100,target,140,56.0,velocity,center_ux,1.1237585544586182 +karman_re100,target,140,56.0,velocity,center_uy,-0.582655668258667 +karman_re100,target,140,56.0,velocity,lower_ux,0.9361108541488647 +karman_re100,target,140,56.0,velocity,lower_uy,-0.4187390208244324 +karman_re100,target,141,56.4,velocity,upper_ux,1.2397181987762451 +karman_re100,target,141,56.4,velocity,upper_uy,-0.3379342257976532 +karman_re100,target,141,56.4,velocity,center_ux,1.139015555381775 +karman_re100,target,141,56.4,velocity,center_uy,-0.5374447703361511 +karman_re100,target,141,56.4,velocity,lower_ux,0.8579809665679932 +karman_re100,target,141,56.4,velocity,lower_uy,-0.3738621473312378 +karman_re100,target,142,56.8,velocity,upper_ux,1.297439455986023 +karman_re100,target,142,56.8,velocity,upper_uy,-0.25795885920524597 +karman_re100,target,142,56.8,velocity,center_ux,1.1496318578720093 +karman_re100,target,142,56.8,velocity,center_uy,-0.3941643238067627 +karman_re100,target,142,56.8,velocity,lower_ux,0.7942273616790771 +karman_re100,target,142,56.8,velocity,lower_uy,-0.26010775566101074 +karman_re100,target,143,57.2,velocity,upper_ux,1.327054738998413 +karman_re100,target,143,57.2,velocity,upper_uy,-0.13093453645706177 +karman_re100,target,143,57.2,velocity,center_ux,1.1497859954833984 +karman_re100,target,143,57.2,velocity,center_uy,-0.14073173701763153 +karman_re100,target,143,57.2,velocity,lower_ux,0.7623907327651978 +karman_re100,target,143,57.2,velocity,lower_uy,-0.08593759685754776 +karman_re100,target,144,57.6,velocity,upper_ux,1.3114794492721558 +karman_re100,target,144,57.6,velocity,upper_uy,0.028747541829943657 +karman_re100,target,144,57.6,velocity,center_ux,1.138871431350708 +karman_re100,target,144,57.6,velocity,center_uy,0.15321974456310272 +karman_re100,target,144,57.6,velocity,lower_ux,0.7760381102561951 +karman_re100,target,144,57.6,velocity,lower_uy,0.10592872649431229 +karman_re100,target,145,58.0,velocity,upper_ux,1.2556324005126953 +karman_re100,target,145,58.0,velocity,upper_uy,0.17959995567798615 +karman_re100,target,145,58.0,velocity,center_ux,1.1222420930862427 +karman_re100,target,145,58.0,velocity,center_uy,0.3872250020503998 +karman_re100,target,145,58.0,velocity,lower_ux,0.833447277545929 +karman_re100,target,145,58.0,velocity,lower_uy,0.2564801275730133 +karman_re100,target,146,58.4,velocity,upper_ux,1.1784917116165161 +karman_re100,target,146,58.4,velocity,upper_uy,0.29139283299446106 +karman_re100,target,146,58.4,velocity,center_ux,1.1074308156967163 +karman_re100,target,146,58.4,velocity,center_uy,0.5075098276138306 +karman_re100,target,146,58.4,velocity,lower_ux,0.9175524711608887 +karman_re100,target,146,58.4,velocity,lower_uy,0.3310146629810333 +karman_re100,target,147,58.8,velocity,upper_ux,1.0971423387527466 +karman_re100,target,147,58.8,velocity,upper_uy,0.3639794886112213 +karman_re100,target,147,58.8,velocity,center_ux,1.102792501449585 +karman_re100,target,147,58.8,velocity,center_uy,0.5488840341567993 +karman_re100,target,147,58.8,velocity,lower_ux,1.0062587261199951 +karman_re100,target,147,58.8,velocity,lower_uy,0.35467728972435 +karman_re100,target,148,59.2,velocity,upper_ux,1.0167639255523682 +karman_re100,target,148,59.2,velocity,upper_uy,0.4086490273475647 +karman_re100,target,148,59.2,velocity,center_ux,1.1102709770202637 +karman_re100,target,148,59.2,velocity,center_uy,0.5750594139099121 +karman_re100,target,148,59.2,velocity,lower_ux,1.0906639099121094 +karman_re100,target,148,59.2,velocity,lower_uy,0.36946192383766174 +karman_re100,target,149,59.6,velocity,upper_ux,0.9358772039413452 +karman_re100,target,149,59.6,velocity,upper_uy,0.41869059205055237 +karman_re100,target,149,59.6,velocity,center_ux,1.1243185997009277 +karman_re100,target,149,59.6,velocity,center_uy,0.5825790762901306 +karman_re100,target,149,59.6,velocity,lower_ux,1.1704086065292358 +karman_re100,target,149,59.6,velocity,lower_uy,0.37321293354034424 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_wide.csv new file mode 100644 index 0000000..de8ca97 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re100,target,0,0.0,1.315363883972168,0.011558161117136478,1.1404500007629395,0.12340617179870605,0.7724894881248474,0.08659958094358444 +karman_re100,target,1,0.4,1.2629832029342651,0.16529716551303864,1.124122142791748,0.36766842007637024,0.8258862495422363,0.24397236108779907 +karman_re100,target,2,0.8,1.1866782903671265,0.2817099690437317,1.1082783937454224,0.4998231828212738,0.9078218340873718,0.3263973295688629 +karman_re100,target,3,1.2,1.1055275201797485,0.3578006625175476,1.1025141477584839,0.5459339022636414,0.9969545006752014,0.35300227999687195 +karman_re100,target,4,1.6,1.0254487991333008,0.4053035080432892,1.1092784404754639,0.5725685358047485,1.0821375846862793,0.3679357171058655 +karman_re100,target,5,2.0,0.9444869160652161,0.41994205117225647,1.1228265762329102,0.5836971402168274,1.1624740362167358,0.37426021695137024 +karman_re100,target,6,2.4,0.8660114407539368,0.38128700852394104,1.1386040449142456,0.5454380512237549,1.2341564893722534,0.3433678448200226 +karman_re100,target,7,2.8,0.7995027303695679,0.27430403232574463,1.1494618654251099,0.4135065972805023,1.2929481267929077,0.26770341396331787 +karman_re100,target,8,3.2,0.7626122236251831,0.10469724982976913,1.1496586799621582,0.16902725398540497,1.3251855373382568,0.14536717534065247 +karman_re100,target,9,3.6,0.771914541721344,-0.0879771038889885,1.140002727508545,-0.12530012428760529,1.3145852088928223,-0.012567640282213688 +karman_re100,target,10,4.0,0.8262538909912109,-0.24495910108089447,1.1242868900299072,-0.36886969208717346,1.2627224922180176,-0.1659899204969406 +karman_re100,target,11,4.4,0.9091941118240356,-0.3269399404525757,1.1092246770858765,-0.5003392100334167,1.1871726512908936,-0.28209808468818665 +karman_re100,target,12,4.8,0.9983589053153992,-0.3533010482788086,1.1033858060836792,-0.5461264848709106,1.1058942079544067,-0.35798129439353943 +karman_re100,target,13,5.2,1.0820858478546143,-0.3681882619857788,1.1086872816085815,-0.5727218389511108,1.024349331855774,-0.40528976917266846 +karman_re100,target,14,5.6,1.1618715524673462,-0.37437742948532104,1.1217199563980103,-0.5836590528488159,0.942992091178894,-0.4196649491786957 +karman_re100,target,15,6.0,1.2341585159301758,-0.3432508111000061,1.138092041015625,-0.545034646987915,0.8652973175048828,-0.38071417808532715 +karman_re100,target,16,6.4,1.2936582565307617,-0.26732462644577026,1.149598240852356,-0.4124850928783417,0.7996823787689209,-0.27341940999031067 +karman_re100,target,17,6.8,1.3263466358184814,-0.144548237323761,1.1503167152404785,-0.16729015111923218,0.763634443283081,-0.10352127999067307 +karman_re100,target,18,7.2,1.3145968914031982,0.013734846375882626,1.1397769451141357,0.12725985050201416,0.7724266052246094,0.0891314297914505 +karman_re100,target,19,7.6,1.2612593173980713,0.16703270375728607,1.122869849205017,0.3701218366622925,0.8257599472999573,0.24552792310714722 +karman_re100,target,20,8.0,1.185973882675171,0.28283190727233887,1.1082544326782227,0.500770092010498,0.9090401530265808,0.3269261121749878 +karman_re100,target,21,8.4,1.1054226160049438,0.3585200011730194,1.1032958030700684,0.5462720990180969,0.9988629221916199,0.3531641662120819 +karman_re100,target,22,8.8,1.024680733680725,0.4057033061981201,1.1095647811889648,0.5728689432144165,1.0834095478057861,0.3681158125400543 +karman_re100,target,23,9.2,0.9433601498603821,0.4197944402694702,1.122806191444397,0.5835760235786438,1.163320541381836,0.37417343258857727 +karman_re100,target,24,9.6,0.8643681406974792,0.3803447484970093,1.1379096508026123,0.5444168448448181,1.2341954708099365,0.34270232915878296 +karman_re100,target,25,10.0,0.7983593940734863,0.27258816361427307,1.1488112211227417,0.41113850474357605,1.292905330657959,0.2665295898914337 +karman_re100,target,26,10.4,0.7632758617401123,0.10240340977907181,1.150167465209961,0.16548438370227814,1.3259860277175903,0.14356613159179688 +karman_re100,target,27,10.8,0.7731042504310608,-0.09029878675937653,1.1403136253356934,-0.12903554737567902,1.3146802186965942,-0.014763008803129196 +karman_re100,target,28,11.2,0.8273792862892151,-0.2464759647846222,1.1240111589431763,-0.37143218517303467,1.2617567777633667,-0.16795267164707184 +karman_re100,target,29,11.6,0.9101892709732056,-0.3274332880973816,1.1087270975112915,-0.5013626217842102,1.1856814622879028,-0.2835069000720978 +karman_re100,target,30,12.0,0.9986773729324341,-0.35341766476631165,1.1025313138961792,-0.5465100407600403,1.1038641929626465,-0.3589255213737488 +karman_re100,target,31,12.4,1.083267092704773,-0.3682954013347626,1.1089832782745361,-0.5730546712875366,1.023335576057434,-0.4058798849582672 +karman_re100,target,32,12.8,1.1638195514678955,-0.37415966391563416,1.122937798500061,-0.583539605140686,0.9427459239959717,-0.4196752905845642 +karman_re100,target,33,13.2,1.2354375123977661,-0.3423765301704407,1.138808012008667,-0.5439515113830566,0.8645297884941101,-0.37980756163597107 +karman_re100,target,34,13.6,1.2943000793457031,-0.265842080116272,1.1498507261276245,-0.4097585678100586,0.7987788915634155,-0.2714671790599823 +karman_re100,target,35,14.0,1.3259027004241943,-0.1424957662820816,1.1498807668685913,-0.16332899034023285,0.7627312541007996,-0.1008661761879921 +karman_re100,target,36,14.4,1.3135358095169067,0.015820568427443504,1.1392004489898682,0.13097268342971802,0.7721495628356934,0.09163685142993927 +karman_re100,target,37,14.8,1.2610507011413574,0.16869747638702393,1.1234742403030396,0.3725818693637848,0.8272604942321777,0.247268408536911 +karman_re100,target,38,15.2,1.1856075525283813,0.2839440107345581,1.1088939905166626,0.5018054842948914,0.9108780026435852,0.3277369737625122 +karman_re100,target,39,15.6,1.104404091835022,0.3591737747192383,1.1034008264541626,0.5466654300689697,1.0000776052474976,0.3535371720790863 +karman_re100,target,40,16.0,1.0233309268951416,0.4059792459011078,1.1094077825546265,0.5731909871101379,1.084229826927185,0.36842915415763855 +karman_re100,target,41,16.4,0.9414626359939575,0.4195111095905304,1.1220614910125732,0.5834694504737854,1.1634433269500732,0.3741758465766907 +karman_re100,target,42,16.8,0.8633653521537781,0.3793206512928009,1.1378668546676636,0.5434779524803162,1.2349350452423096,0.3421490788459778 +karman_re100,target,43,17.2,0.7984965443611145,0.2706732749938965,1.1495262384414673,0.4086874723434448,1.2943902015686035,0.26537612080574036 +karman_re100,target,44,17.6,0.7634226083755493,0.0998413935303688,1.1502158641815186,0.1616947054862976,1.3265280723571777,0.14168301224708557 +karman_re100,target,45,18.0,0.7734420895576477,-0.09269914776086807,1.1397976875305176,-0.13282327353954315,1.314154028892517,-0.016953499987721443 +karman_re100,target,46,18.4,0.8277604579925537,-0.2479255646467209,1.123034119606018,-0.37390846014022827,1.2603271007537842,-0.16981592774391174 +karman_re100,target,47,18.8,0.9105914235115051,-0.3278267979621887,1.1077438592910767,-0.5022923946380615,1.1839848756790161,-0.28476130962371826 +karman_re100,target,48,19.2,1.0002440214157104,-0.35347703099250793,1.1029661893844604,-0.5468485951423645,1.1033803224563599,-0.35975974798202515 +karman_re100,target,49,19.6,1.085038423538208,-0.3683878779411316,1.1097986698150635,-0.5733532905578613,1.0230116844177246,-0.40640372037887573 +karman_re100,target,50,20.0,1.1649168729782104,-0.3739676773548126,1.1232304573059082,-0.5833997130393982,0.9417778253555298,-0.41963931918144226 +karman_re100,target,51,20.4,1.2360544204711914,-0.3415653705596924,1.138801097869873,-0.5428528785705566,0.8633491396903992,-0.3789049983024597 +karman_re100,target,52,20.8,1.2940996885299683,-0.2644786536693573,1.1492037773132324,-0.40717020630836487,0.7973666191101074,-0.26966074109077454 +karman_re100,target,53,21.2,1.3257750272750854,-0.14061187207698822,1.1496944427490234,-0.15969914197921753,0.762448787689209,-0.09852034598588943 +karman_re100,target,54,21.6,1.3138078451156616,0.017960861325263977,1.1399072408676147,0.13465185463428497,0.7734904289245605,0.09399451315402985 +karman_re100,target,55,22.0,1.2604734897613525,0.17058143019676208,1.1237550973892212,0.3751397728919983,0.828762948513031,0.24891987442970276 +karman_re100,target,56,22.4,1.184362530708313,0.28525540232658386,1.1087558269500732,0.502841055393219,0.9121218919754028,0.32839491963386536 +karman_re100,target,57,22.8,1.1027748584747314,0.3600185811519623,1.103029727935791,0.547065794467926,1.0008647441864014,0.3537921607494354 +karman_re100,target,58,23.2,1.0214965343475342,0.40644142031669617,1.1089142560958862,0.5735238790512085,1.0846457481384277,0.3686332404613495 +karman_re100,target,59,23.6,0.94075608253479,0.4193968176841736,1.122744083404541,0.5833600163459778,1.1648765802383423,0.37404170632362366 +karman_re100,target,60,24.0,0.8630441427230835,0.37831780314445496,1.1389199495315552,0.5424197912216187,1.2366327047348022,0.3413727879524231 +karman_re100,target,61,24.4,0.7977944016456604,0.2686476707458496,1.1498678922653198,0.40598544478416443,1.295276165008545,0.26397696137428284 +karman_re100,target,62,24.8,0.7629215121269226,0.09713902324438095,1.1500563621520996,0.1577269434928894,1.3265501260757446,0.13966135680675507 +karman_re100,target,63,25.2,0.7730770707130432,-0.09523800015449524,1.1389869451522827,-0.13661518692970276,1.313047170639038,-0.01908918097615242 +karman_re100,target,64,25.6,0.8282707333564758,-0.24954263865947723,1.122565507888794,-0.37629738450050354,1.2592304944992065,-0.1714654415845871 +karman_re100,target,65,26.0,0.9123905897140503,-0.3284870982170105,1.1083462238311768,-0.5032485127449036,1.1837650537490845,-0.2858361303806305 +karman_re100,target,66,26.4,1.0018004179000854,-0.35375142097473145,1.1034067869186401,-0.5472071170806885,1.1028335094451904,-0.3604172170162201 +karman_re100,target,67,26.8,1.0860180854797363,-0.3686428964138031,1.1097962856292725,-0.5736598372459412,1.0219136476516724,-0.4067092537879944 +karman_re100,target,68,27.2,1.165460467338562,-0.3739249110221863,1.1228944063186646,-0.5832673907279968,0.9403455257415771,-0.4193851351737976 +karman_re100,target,69,27.6,1.2361037731170654,-0.340963751077652,1.1380760669708252,-0.5418485999107361,0.8617303967475891,-0.3778955936431885 +karman_re100,target,70,28.0,1.2949130535125732,-0.2633374333381653,1.1493117809295654,-0.4047718346118927,0.7970229387283325,-0.26785922050476074 +karman_re100,target,71,28.4,1.3266291618347168,-0.1387612372636795,1.150133490562439,-0.1560201495885849,0.7630977034568787,-0.09609587490558624 +karman_re100,target,72,28.8,1.313470721244812,0.020166056230664253,1.1396652460098267,0.1384001225233078,0.7741897106170654,0.09632422775030136 +karman_re100,target,73,29.2,1.2593293190002441,0.17250394821166992,1.1231759786605835,0.3776152729988098,0.8296160697937012,0.2503427565097809 +karman_re100,target,74,29.6,1.182623267173767,0.2866072654724121,1.1078765392303467,0.5037888288497925,0.9127151966094971,0.3287883400917053 +karman_re100,target,75,30.0,1.1013209819793701,0.36092498898506165,1.1026270389556885,0.5474222302436829,1.00160551071167,0.3538516163825989 +karman_re100,target,76,30.4,1.0211032629013062,0.40701836347579956,1.1097617149353027,0.573836088180542,1.086402177810669,0.36871105432510376 +karman_re100,target,77,30.8,0.9401813745498657,0.4193879961967468,1.1235721111297607,0.5832063555717468,1.1664581298828125,0.37379688024520874 +karman_re100,target,78,31.2,0.8619924783706665,0.3774052858352661,1.139237403869629,0.5412849187850952,1.2375142574310303,0.3404863476753235 +karman_re100,target,79,31.6,0.7967284917831421,0.26673373579978943,1.1498007774353027,0.40324580669403076,1.2955814599990845,0.26249945163726807 +karman_re100,target,80,32.0,0.7620561122894287,0.09461679309606552,1.1495044231414795,0.15389001369476318,1.3259602785110474,0.13766099512577057 +karman_re100,target,81,32.4,0.773681104183197,-0.09765362739562988,1.139161229133606,-0.14026565849781036,1.3127015829086304,-0.02117886394262314 +karman_re100,target,82,32.8,0.8300254344940186,-0.251250296831131,1.1232802867889404,-0.3787800669670105,1.259057879447937,-0.17322058975696564 +karman_re100,target,83,33.2,0.913869321346283,-0.3292422890663147,1.1085472106933594,-0.5042670369148254,1.1828702688217163,-0.28702598810195923 +karman_re100,target,84,33.6,1.0028456449508667,-0.3540906012058258,1.1033307313919067,-0.5476049184799194,1.101540446281433,-0.3611389398574829 +karman_re100,target,85,34.0,1.0865763425827026,-0.3689197599887848,1.1094073057174683,-0.573982834815979,1.020238995552063,-0.40704551339149475 +karman_re100,target,86,34.4,1.1659996509552002,-0.37386181950569153,1.1226269006729126,-0.5831465721130371,0.9388149380683899,-0.4191471338272095 +karman_re100,target,87,34.8,1.2375669479370117,-0.3403054475784302,1.1388144493103027,-0.5408310890197754,0.8613187670707703,-0.37684565782546997 +karman_re100,target,88,35.2,1.2961846590042114,-0.26204800605773926,1.149899959564209,-0.40213853120803833,0.7968173027038574,-0.2658356726169586 +karman_re100,target,89,35.6,1.3268214464187622,-0.13679952919483185,1.149964451789856,-0.15211857855319977,0.762833833694458,-0.0934412032365799 +karman_re100,target,90,36.0,1.3127360343933105,0.022329941391944885,1.1390626430511475,0.1421794444322586,0.7742672562599182,0.0987866148352623 +karman_re100,target,91,36.4,1.2578229904174805,0.17424346506595612,1.1221845149993896,0.3800038993358612,0.8298092484474182,0.2518371343612671 +karman_re100,target,92,36.8,1.1816867589950562,0.28773942589759827,1.107670545578003,0.5046864748001099,0.9137828350067139,0.3292733132839203 +karman_re100,target,93,37.2,1.101067304611206,0.3616558313369751,1.1033008098602295,0.5477600693702698,1.0033981800079346,0.3540029227733612 +karman_re100,target,94,37.6,1.0203441381454468,0.40742194652557373,1.110102891921997,0.5741292238235474,1.0877161026000977,0.36887672543525696 +karman_re100,target,95,38.0,0.9389967918395996,0.41922757029533386,1.1235393285751343,0.5830516219139099,1.1672672033309937,0.3736652731895447 +karman_re100,target,96,38.4,0.8605852723121643,0.3764255940914154,1.1388297080993652,0.5401914119720459,1.2378100156784058,0.3397645652294159 +karman_re100,target,97,38.8,0.7956358194351196,0.2649388015270233,1.1492613554000854,0.4007415473461151,1.2956092357635498,0.26124730706214905 +karman_re100,target,98,39.2,0.7624849677085876,0.0922698974609375,1.1498216390609741,0.15027020871639252,1.326499342918396,0.13580521941184998 +karman_re100,target,99,39.6,0.7748554944992065,-0.09997690469026566,1.1394954919815063,-0.14396680891513824,1.3127539157867432,-0.023361612111330032 +karman_re100,target,100,40.0,0.8311404585838318,-0.25274857878685,1.1230361461639404,-0.3812585771083832,1.258082628250122,-0.1751270741224289 +karman_re100,target,101,40.4,0.9148857593536377,-0.3297380805015564,1.1081229448318481,-0.5052286386489868,1.1814383268356323,-0.2883647680282593 +karman_re100,target,102,40.8,1.0034217834472656,-0.35423821210861206,1.102756381034851,-0.5479826331138611,1.09978449344635,-0.3620269298553467 +karman_re100,target,103,41.2,1.0876015424728394,-0.3690493404865265,1.109541654586792,-0.574302613735199,1.019067645072937,-0.407572478055954 +karman_re100,target,104,41.6,1.1677688360214233,-0.3736445903778076,1.1236586570739746,-0.5829983353614807,0.9384216070175171,-0.4190816879272461 +karman_re100,target,105,42.0,1.2388455867767334,-0.33943721652030945,1.1395037174224854,-0.5396903157234192,0.8605934977531433,-0.37586331367492676 +karman_re100,target,106,42.4,1.296758770942688,-0.26057595014572144,1.1500455141067505,-0.3993629515171051,0.7959032654762268,-0.26383712887763977 +karman_re100,target,107,42.8,1.3265419006347656,-0.1347561776638031,1.1496518850326538,-0.14816628396511078,0.7621647715568542,-0.09079206734895706 +karman_re100,target,108,43.2,1.3117549419403076,0.024424586445093155,1.1385234594345093,0.145869642496109,0.7741348743438721,0.10126052796840668 +karman_re100,target,109,43.6,1.2573617696762085,0.17589789628982544,1.1224942207336426,0.3823779821395874,0.8310911059379578,0.2534838616847992 +karman_re100,target,110,44.0,1.1812806129455566,0.28883785009384155,1.1082338094711304,0.5056474804878235,0.9155644178390503,0.3299909830093384 +karman_re100,target,111,44.4,1.1000632047653198,0.3623143136501312,1.1033987998962402,0.5481382608413696,1.0046019554138184,0.3543303608894348 +karman_re100,target,112,44.8,1.0190213918685913,0.4077055752277374,1.1099576950073242,0.5744379758834839,1.0885350704193115,0.36915749311447144 +karman_re100,target,113,45.2,0.9373674988746643,0.4189387261867523,1.123064637184143,0.5829097628593445,1.167647361755371,0.37361666560173035 +karman_re100,target,114,45.6,0.8594820499420166,0.3753714859485626,1.138694167137146,0.5391700267791748,1.2384368181228638,0.33915087580680847 +karman_re100,target,115,46.0,0.7956283688545227,0.26300838589668274,1.149815320968628,0.3982087969779968,1.2968852519989014,0.2600412964820862 +karman_re100,target,116,46.4,0.7627008557319641,0.08971770107746124,1.1499148607254028,0.14645643532276154,1.327012538909912,0.13388791680335999 +karman_re100,target,117,46.8,0.7752124071121216,-0.10233908891677856,1.13898503780365,-0.1477024108171463,1.312156319618225,-0.025546453893184662 +karman_re100,target,118,47.2,0.8317133188247681,-0.25415265560150146,1.1222540140151978,-0.3836478292942047,1.2567813396453857,-0.17696040868759155 +karman_re100,target,119,47.6,0.9154720306396484,-0.33012595772743225,1.107324242591858,-0.5061147809028625,1.17986261844635,-0.2896052300930023 +karman_re100,target,120,48.0,1.0047848224639893,-0.35431790351867676,1.1030006408691406,-0.5483235120773315,1.099056363105774,-0.36284926533699036 +karman_re100,target,121,48.4,1.089312195777893,-0.369151771068573,1.1103146076202393,-0.5745974779129028,1.0186651945114136,-0.40807202458381653 +karman_re100,target,122,48.8,1.1688867807388306,-0.3734257221221924,1.1239879131317139,-0.5828230381011963,0.9374637603759766,-0.41899749636650085 +karman_re100,target,123,49.2,1.2394641637802124,-0.338599294424057,1.1395092010498047,-0.5385305881500244,0.8594084978103638,-0.3749062716960907 +karman_re100,target,124,49.6,1.296804666519165,-0.2591719329357147,1.1496554613113403,-0.3966774642467499,0.7947359681129456,-0.2619607746601105 +karman_re100,target,125,50.0,1.3263440132141113,-0.13282270729541779,1.1494134664535522,-0.14444661140441895,0.7618298530578613,-0.08837518841028214 +karman_re100,target,126,50.4,1.3118209838867188,0.026554049924016,1.139039158821106,0.14951728284358978,0.7752870917320251,0.10361423343420029 +karman_re100,target,127,50.8,1.2567991018295288,0.17772729694843292,1.122787594795227,0.38483765721321106,0.832594096660614,0.255085289478302 +karman_re100,target,128,51.2,1.1800391674041748,0.29009130597114563,1.1080806255340576,0.5066156983375549,0.9167667627334595,0.330617219209671 +karman_re100,target,129,51.6,1.0985702276229858,0.36310988664627075,1.1031384468078613,0.54852694272995,1.0054755210876465,0.35458579659461975 +karman_re100,target,130,52.0,1.0173736810684204,0.4081207513809204,1.1096265316009521,0.5747548937797546,1.089117169380188,0.369364857673645 +karman_re100,target,131,52.4,0.9364662766456604,0.41876477003097534,1.1235188245773315,0.5827634334564209,1.1688599586486816,0.3734667897224426 +karman_re100,target,132,52.8,0.8590973615646362,0.3743163049221039,1.1396130323410034,0.538051187992096,1.240013599395752,0.33837029337882996 +karman_re100,target,133,53.2,0.7949949502944946,0.26095056533813477,1.1501250267028809,0.395445317029953,1.2977516651153564,0.25863608717918396 +karman_re100,target,134,53.6,0.7622436285018921,0.08703827112913132,1.1496886014938354,0.14249970018863678,1.3269761800765991,0.1318686455488205 +karman_re100,target,135,54.0,0.7751201391220093,-0.10481498390436172,1.1383477449417114,-0.1514338254928589,1.3112308979034424,-0.027674609795212746 +karman_re100,target,136,54.4,0.8322612643241882,-0.2556927800178528,1.1217412948608398,-0.3859707713127136,1.2556378841400146,-0.17861802875995636 +karman_re100,target,137,54.8,0.9170839190483093,-0.3307112455368042,1.107710599899292,-0.5070093274116516,1.179421067237854,-0.29068323969841003 +karman_re100,target,138,55.2,1.0063397884368896,-0.3545588254928589,1.1034435033798218,-0.5486741065979004,1.0985004901885986,-0.36351895332336426 +karman_re100,target,139,55.6,1.0902928113937378,-0.36937934160232544,1.1103241443634033,-0.5748924016952515,1.0175585746765137,-0.4083891808986664 +karman_re100,target,140,56.0,1.169512152671814,-0.373331218957901,1.1237585544586182,-0.582655668258667,0.9361108541488647,-0.4187390208244324 +karman_re100,target,141,56.4,1.2397181987762451,-0.3379342257976532,1.139015555381775,-0.5374447703361511,0.8579809665679932,-0.3738621473312378 +karman_re100,target,142,56.8,1.297439455986023,-0.25795885920524597,1.1496318578720093,-0.3941643238067627,0.7942273616790771,-0.26010775566101074 +karman_re100,target,143,57.2,1.327054738998413,-0.13093453645706177,1.1497859954833984,-0.14073173701763153,0.7623907327651978,-0.08593759685754776 +karman_re100,target,144,57.6,1.3114794492721558,0.028747541829943657,1.138871431350708,0.15321974456310272,0.7760381102561951,0.10592872649431229 +karman_re100,target,145,58.0,1.2556324005126953,0.17959995567798615,1.1222420930862427,0.3872250020503998,0.833447277545929,0.2564801275730133 +karman_re100,target,146,58.4,1.1784917116165161,0.29139283299446106,1.1074308156967163,0.5075098276138306,0.9175524711608887,0.3310146629810333 +karman_re100,target,147,58.8,1.0971423387527466,0.3639794886112213,1.102792501449585,0.5488840341567993,1.0062587261199951,0.35467728972435 +karman_re100,target,148,59.2,1.0167639255523682,0.4086490273475647,1.1102709770202637,0.5750594139099121,1.0906639099121094,0.36946192383766174 +karman_re100,target,149,59.6,0.9358772039413452,0.41869059205055237,1.1243185997009277,0.5825790762901306,1.1704086065292358,0.37321293354034424 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_dtw_convergence.csv new file mode 100644 index 0000000..dd745c5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re200,ppo,60,24.0,30,0.8899763880814944,7,0.9489223380883535,0.9621049453193943,0.6932408213615417,0.8832300734085341,0.9249580105145773,0.9274021397965649 +karman_re200,ppo,90,36.0,30,0.8721363218139029,5,0.9403183400630951,0.9363947342460355,0.6043008963267009,0.8960538007318973,0.9084977269172668,0.947252432598422 +karman_re200,ppo,120,48.0,30,0.8984110749326645,4,0.9378938635190328,0.9561517154177029,0.7340240140755971,0.8871047004126013,0.9268107573191324,0.9484813988519212 +karman_re200,ppo,150,60.0,30,0.8996451177220378,3,0.9307569523652395,0.9561059838471313,0.7304447869459788,0.8856264754198492,0.9351080139478047,0.959828493806223 +karman_re200,ppo,180,72.0,30,0.9078620975733632,1,0.9376536428928375,0.9569466180168092,0.7944913446903229,0.8803759722970426,0.9216190059979756,0.9560860015451909 +karman_re200,ppo,210,84.0,30,0.9046867113922619,0,0.9323168357213338,0.9592423052837451,0.7807839254538218,0.8615579767463108,0.9348852137724558,0.9593340113759041 +karman_re200,ppo,240,96.0,30,0.9148479927564038,-1,0.9523464500904083,0.9634445120425273,0.8244878649711609,0.8699554752248029,0.9154958625634512,0.9633577916460733 +karman_re200,ppo,270,108.0,30,0.8982258650920509,-3,0.9207226018110911,0.9555421056846778,0.7424034247795741,0.8759740139978627,0.9439298450946808,0.950783199184419 +karman_re200,ppo,300,120.0,30,0.916577307939426,-5,0.9511315941810607,0.9570168785285205,0.8128083844979604,0.8997608258388936,0.9138352115948996,0.9649109529952208 +karman_re200,ppo,330,132.0,30,0.8915686256976593,-6,0.9280044615268708,0.9505180742591619,0.6811579624811808,0.9010500089265406,0.9348317523797354,0.9538494946124653 +karman_re200,ppo,360,144.0,30,0.8993592545364258,-7,0.9364989181359609,0.957447069666038,0.7316638767719269,0.879192942349861,0.9256114323933919,0.9657412879013767 +karman_re200,ppo,390,156.0,30,0.896512648054502,6,0.9305213769276937,0.9580877020955085,0.7473733882109324,0.8688130742870271,0.9251991311709086,0.9490812156349421 +karman_re200,ppo,400,160.0,30,0.9002797384022011,0,0.923685896396637,0.9450443419317405,0.7783155977725983,0.878074959324052,0.9300873657067616,0.9464702692814171 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_long.csv new file mode 100644 index 0000000..d712dc3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,ppo,0,0.0,velocity,upper_ux,1.2694611549377441 +karman_re200,ppo,0,0.0,velocity,upper_uy,-0.12659457325935364 +karman_re200,ppo,0,0.0,velocity,center_ux,0.9500953555107117 +karman_re200,ppo,0,0.0,velocity,center_uy,-0.12381421029567719 +karman_re200,ppo,0,0.0,velocity,lower_ux,0.895484447479248 +karman_re200,ppo,0,0.0,velocity,lower_uy,-0.08694351464509964 +karman_re200,ppo,1,0.4,velocity,upper_ux,1.266745924949646 +karman_re200,ppo,1,0.4,velocity,upper_uy,0.054073285311460495 +karman_re200,ppo,1,0.4,velocity,center_ux,0.9656949043273926 +karman_re200,ppo,1,0.4,velocity,center_uy,0.13390813767910004 +karman_re200,ppo,1,0.4,velocity,lower_ux,0.8834304809570312 +karman_re200,ppo,1,0.4,velocity,lower_uy,0.1047925278544426 +karman_re200,ppo,2,0.8,velocity,upper_ux,1.2145624160766602 +karman_re200,ppo,2,0.8,velocity,upper_uy,0.21073272824287415 +karman_re200,ppo,2,0.8,velocity,center_ux,0.9844216108322144 +karman_re200,ppo,2,0.8,velocity,center_uy,0.3575950562953949 +karman_re200,ppo,2,0.8,velocity,lower_ux,0.9119714498519897 +karman_re200,ppo,2,0.8,velocity,lower_uy,0.2527352273464203 +karman_re200,ppo,3,1.2,velocity,upper_ux,1.123539924621582 +karman_re200,ppo,3,1.2,velocity,upper_uy,0.3172082006931305 +karman_re200,ppo,3,1.2,velocity,center_ux,0.9987989664077759 +karman_re200,ppo,3,1.2,velocity,center_uy,0.4677792489528656 +karman_re200,ppo,3,1.2,velocity,lower_ux,0.9738178253173828 +karman_re200,ppo,3,1.2,velocity,lower_uy,0.30809664726257324 +karman_re200,ppo,4,1.6,velocity,upper_ux,1.0472655296325684 +karman_re200,ppo,4,1.6,velocity,upper_uy,0.3510354161262512 +karman_re200,ppo,4,1.6,velocity,center_ux,1.0094562768936157 +karman_re200,ppo,4,1.6,velocity,center_uy,0.48795077204704285 +karman_re200,ppo,4,1.6,velocity,lower_ux,1.0384601354599 +karman_re200,ppo,4,1.6,velocity,lower_uy,0.34424513578414917 +karman_re200,ppo,5,2.0,velocity,upper_ux,0.9900689125061035 +karman_re200,ppo,5,2.0,velocity,upper_uy,0.34791192412376404 +karman_re200,ppo,5,2.0,velocity,center_ux,1.012353539466858 +karman_re200,ppo,5,2.0,velocity,center_uy,0.4827211797237396 +karman_re200,ppo,5,2.0,velocity,lower_ux,1.1019504070281982 +karman_re200,ppo,5,2.0,velocity,lower_uy,0.3549129366874695 +karman_re200,ppo,6,2.4,velocity,upper_ux,0.9499054551124573 +karman_re200,ppo,6,2.4,velocity,upper_uy,0.31125232577323914 +karman_re200,ppo,6,2.4,velocity,center_ux,1.0056155920028687 +karman_re200,ppo,6,2.4,velocity,center_uy,0.45023825764656067 +karman_re200,ppo,6,2.4,velocity,lower_ux,1.1704829931259155 +karman_re200,ppo,6,2.4,velocity,lower_uy,0.3321981728076935 +karman_re200,ppo,7,2.8,velocity,upper_ux,0.9197987914085388 +karman_re200,ppo,7,2.8,velocity,upper_uy,0.23087850213050842 +karman_re200,ppo,7,2.8,velocity,center_ux,0.9812777638435364 +karman_re200,ppo,7,2.8,velocity,center_uy,0.34171998500823975 +karman_re200,ppo,7,2.8,velocity,lower_ux,1.2447752952575684 +karman_re200,ppo,7,2.8,velocity,lower_uy,0.2704210579395294 +karman_re200,ppo,8,3.2,velocity,upper_ux,0.8903753161430359 +karman_re200,ppo,8,3.2,velocity,upper_uy,0.08367041498422623 +karman_re200,ppo,8,3.2,velocity,center_ux,0.9688130021095276 +karman_re200,ppo,8,3.2,velocity,center_uy,0.10411889106035233 +karman_re200,ppo,8,3.2,velocity,lower_ux,1.2753187417984009 +karman_re200,ppo,8,3.2,velocity,lower_uy,0.10669167339801788 +karman_re200,ppo,9,3.6,velocity,upper_ux,0.8762778639793396 +karman_re200,ppo,9,3.6,velocity,upper_uy,-0.11385522037744522 +karman_re200,ppo,9,3.6,velocity,center_ux,0.9884109497070312 +karman_re200,ppo,9,3.6,velocity,center_uy,-0.14853084087371826 +karman_re200,ppo,9,3.6,velocity,lower_ux,1.267472267150879 +karman_re200,ppo,9,3.6,velocity,lower_uy,-0.06521596014499664 +karman_re200,ppo,10,4.0,velocity,upper_ux,0.9047701358795166 +karman_re200,ppo,10,4.0,velocity,upper_uy,-0.2546841502189636 +karman_re200,ppo,10,4.0,velocity,center_ux,1.0068303346633911 +karman_re200,ppo,10,4.0,velocity,center_uy,-0.3577911853790283 +karman_re200,ppo,10,4.0,velocity,lower_ux,1.2133822441101074 +karman_re200,ppo,10,4.0,velocity,lower_uy,-0.2063438594341278 +karman_re200,ppo,11,4.4,velocity,upper_ux,0.9642706513404846 +karman_re200,ppo,11,4.4,velocity,upper_uy,-0.2996799051761627 +karman_re200,ppo,11,4.4,velocity,center_ux,1.021540641784668 +karman_re200,ppo,11,4.4,velocity,center_uy,-0.4363361597061157 +karman_re200,ppo,11,4.4,velocity,lower_ux,1.1303391456604004 +karman_re200,ppo,11,4.4,velocity,lower_uy,-0.2901790738105774 +karman_re200,ppo,12,4.8,velocity,upper_ux,1.0258300304412842 +karman_re200,ppo,12,4.8,velocity,upper_uy,-0.32655373215675354 +karman_re200,ppo,12,4.8,velocity,center_ux,1.03341805934906 +karman_re200,ppo,12,4.8,velocity,center_uy,-0.439543753862381 +karman_re200,ppo,12,4.8,velocity,lower_ux,1.0680900812149048 +karman_re200,ppo,12,4.8,velocity,lower_uy,-0.3139539361000061 +karman_re200,ppo,13,5.2,velocity,upper_ux,1.0778839588165283 +karman_re200,ppo,13,5.2,velocity,upper_uy,-0.33377018570899963 +karman_re200,ppo,13,5.2,velocity,center_ux,1.0334274768829346 +karman_re200,ppo,13,5.2,velocity,center_uy,-0.41927945613861084 +karman_re200,ppo,13,5.2,velocity,lower_ux,1.0210143327713013 +karman_re200,ppo,13,5.2,velocity,lower_uy,-0.30663955211639404 +karman_re200,ppo,14,5.6,velocity,upper_ux,1.124544382095337 +karman_re200,ppo,14,5.6,velocity,upper_uy,-0.31529855728149414 +karman_re200,ppo,14,5.6,velocity,center_ux,1.021097183227539 +karman_re200,ppo,14,5.6,velocity,center_uy,-0.3723065257072449 +karman_re200,ppo,14,5.6,velocity,lower_ux,0.9832935929298401 +karman_re200,ppo,14,5.6,velocity,lower_uy,-0.2599796652793884 +karman_re200,ppo,15,6.0,velocity,upper_ux,1.1758487224578857 +karman_re200,ppo,15,6.0,velocity,upper_uy,-0.28454771637916565 +karman_re200,ppo,15,6.0,velocity,center_ux,0.9888675212860107 +karman_re200,ppo,15,6.0,velocity,center_uy,-0.27101588249206543 +karman_re200,ppo,15,6.0,velocity,lower_ux,0.940493643283844 +karman_re200,ppo,15,6.0,velocity,lower_uy,-0.13953350484371185 +karman_re200,ppo,16,6.4,velocity,upper_ux,1.2292027473449707 +karman_re200,ppo,16,6.4,velocity,upper_uy,-0.2250765562057495 +karman_re200,ppo,16,6.4,velocity,center_ux,0.9437695145606995 +karman_re200,ppo,16,6.4,velocity,center_uy,-0.0800311341881752 +karman_re200,ppo,16,6.4,velocity,lower_ux,0.9046342968940735 +karman_re200,ppo,16,6.4,velocity,lower_uy,0.05267031490802765 +karman_re200,ppo,17,6.8,velocity,upper_ux,1.2270199060440063 +karman_re200,ppo,17,6.8,velocity,upper_uy,-0.0597497895359993 +karman_re200,ppo,17,6.8,velocity,center_ux,0.913667619228363 +karman_re200,ppo,17,6.8,velocity,center_uy,0.163780078291893 +karman_re200,ppo,17,6.8,velocity,lower_ux,0.9082980155944824 +karman_re200,ppo,17,6.8,velocity,lower_uy,0.22704237699508667 +karman_re200,ppo,18,7.2,velocity,upper_ux,1.144840121269226 +karman_re200,ppo,18,7.2,velocity,upper_uy,0.1606633961200714 +karman_re200,ppo,18,7.2,velocity,center_ux,0.8958917856216431 +karman_re200,ppo,18,7.2,velocity,center_uy,0.3533334732055664 +karman_re200,ppo,18,7.2,velocity,lower_ux,0.9476925134658813 +karman_re200,ppo,18,7.2,velocity,lower_uy,0.3006104528903961 +karman_re200,ppo,19,7.6,velocity,upper_ux,1.0519739389419556 +karman_re200,ppo,19,7.6,velocity,upper_uy,0.2845340669155121 +karman_re200,ppo,19,7.6,velocity,center_ux,0.8898584842681885 +karman_re200,ppo,19,7.6,velocity,center_uy,0.42347604036331177 +karman_re200,ppo,19,7.6,velocity,lower_ux,0.9906498193740845 +karman_re200,ppo,19,7.6,velocity,lower_uy,0.35540419816970825 +karman_re200,ppo,20,8.0,velocity,upper_ux,0.9861660599708557 +karman_re200,ppo,20,8.0,velocity,upper_uy,0.29434874653816223 +karman_re200,ppo,20,8.0,velocity,center_ux,0.8737149238586426 +karman_re200,ppo,20,8.0,velocity,center_uy,0.4447775185108185 +karman_re200,ppo,20,8.0,velocity,lower_ux,1.0316330194473267 +karman_re200,ppo,20,8.0,velocity,lower_uy,0.4114988446235657 +karman_re200,ppo,21,8.4,velocity,upper_ux,0.939303994178772 +karman_re200,ppo,21,8.4,velocity,upper_uy,0.24995157122612 +karman_re200,ppo,21,8.4,velocity,center_ux,0.8384180665016174 +karman_re200,ppo,21,8.4,velocity,center_uy,0.4337552785873413 +karman_re200,ppo,21,8.4,velocity,lower_ux,1.075836181640625 +karman_re200,ppo,21,8.4,velocity,lower_uy,0.4557126760482788 +karman_re200,ppo,22,8.8,velocity,upper_ux,0.9055684804916382 +karman_re200,ppo,22,8.8,velocity,upper_uy,0.17469769716262817 +karman_re200,ppo,22,8.8,velocity,center_ux,0.7809163928031921 +karman_re200,ppo,22,8.8,velocity,center_uy,0.3837936520576477 +karman_re200,ppo,22,8.8,velocity,lower_ux,1.1389769315719604 +karman_re200,ppo,22,8.8,velocity,lower_uy,0.5065363049507141 +karman_re200,ppo,23,9.2,velocity,upper_ux,0.8902483582496643 +karman_re200,ppo,23,9.2,velocity,upper_uy,0.07479191571474075 +karman_re200,ppo,23,9.2,velocity,center_ux,0.7024653553962708 +karman_re200,ppo,23,9.2,velocity,center_uy,0.2690807282924652 +karman_re200,ppo,23,9.2,velocity,lower_ux,1.2306535243988037 +karman_re200,ppo,23,9.2,velocity,lower_uy,0.4312613308429718 +karman_re200,ppo,24,9.6,velocity,upper_ux,0.8855776190757751 +karman_re200,ppo,24,9.6,velocity,upper_uy,-0.05018417909741402 +karman_re200,ppo,24,9.6,velocity,center_ux,0.6301630735397339 +karman_re200,ppo,24,9.6,velocity,center_uy,0.0590510368347168 +karman_re200,ppo,24,9.6,velocity,lower_ux,1.3176721334457397 +karman_re200,ppo,24,9.6,velocity,lower_uy,0.13818031549453735 +karman_re200,ppo,25,10.0,velocity,upper_ux,0.8882884979248047 +karman_re200,ppo,25,10.0,velocity,upper_uy,-0.18367815017700195 +karman_re200,ppo,25,10.0,velocity,center_ux,0.6076003313064575 +karman_re200,ppo,25,10.0,velocity,center_uy,-0.21075832843780518 +karman_re200,ppo,25,10.0,velocity,lower_ux,1.298121452331543 +karman_re200,ppo,25,10.0,velocity,lower_uy,-0.1703934520483017 +karman_re200,ppo,26,10.4,velocity,upper_ux,0.9283747673034668 +karman_re200,ppo,26,10.4,velocity,upper_uy,-0.2754436135292053 +karman_re200,ppo,26,10.4,velocity,center_ux,0.6343019008636475 +karman_re200,ppo,26,10.4,velocity,center_uy,-0.4561324417591095 +karman_re200,ppo,26,10.4,velocity,lower_ux,1.168276309967041 +karman_re200,ppo,26,10.4,velocity,lower_uy,-0.4820072054862976 +karman_re200,ppo,27,10.8,velocity,upper_ux,0.9902404546737671 +karman_re200,ppo,27,10.8,velocity,upper_uy,-0.353169322013855 +karman_re200,ppo,27,10.8,velocity,center_ux,0.6886736154556274 +karman_re200,ppo,27,10.8,velocity,center_uy,-0.6196818351745605 +karman_re200,ppo,27,10.8,velocity,lower_ux,1.041165828704834 +karman_re200,ppo,27,10.8,velocity,lower_uy,-0.6425014734268188 +karman_re200,ppo,28,11.2,velocity,upper_ux,1.0682469606399536 +karman_re200,ppo,28,11.2,velocity,upper_uy,-0.39924517273902893 +karman_re200,ppo,28,11.2,velocity,center_ux,0.7465304732322693 +karman_re200,ppo,28,11.2,velocity,center_uy,-0.7035945653915405 +karman_re200,ppo,28,11.2,velocity,lower_ux,0.9371737837791443 +karman_re200,ppo,28,11.2,velocity,lower_uy,-0.6583967804908752 +karman_re200,ppo,29,11.6,velocity,upper_ux,1.1602764129638672 +karman_re200,ppo,29,11.6,velocity,upper_uy,-0.402363121509552 +karman_re200,ppo,29,11.6,velocity,center_ux,0.7837806940078735 +karman_re200,ppo,29,11.6,velocity,center_uy,-0.7505699992179871 +karman_re200,ppo,29,11.6,velocity,lower_ux,0.8511400818824768 +karman_re200,ppo,29,11.6,velocity,lower_uy,-0.5917640924453735 +karman_re200,ppo,30,12.0,velocity,upper_ux,1.2553088665008545 +karman_re200,ppo,30,12.0,velocity,upper_uy,-0.3526094853878021 +karman_re200,ppo,30,12.0,velocity,center_ux,0.7949404120445251 +karman_re200,ppo,30,12.0,velocity,center_uy,-0.7456560730934143 +karman_re200,ppo,30,12.0,velocity,lower_ux,0.7745785713195801 +karman_re200,ppo,30,12.0,velocity,lower_uy,-0.4851333498954773 +karman_re200,ppo,31,12.4,velocity,upper_ux,1.3089704513549805 +karman_re200,ppo,31,12.4,velocity,upper_uy,-0.20444905757904053 +karman_re200,ppo,31,12.4,velocity,center_ux,0.7423602938652039 +karman_re200,ppo,31,12.4,velocity,center_uy,-0.6958809494972229 +karman_re200,ppo,31,12.4,velocity,lower_ux,0.7141063213348389 +karman_re200,ppo,31,12.4,velocity,lower_uy,-0.3379236161708832 +karman_re200,ppo,32,12.8,velocity,upper_ux,1.3432607650756836 +karman_re200,ppo,32,12.8,velocity,upper_uy,-0.035701047629117966 +karman_re200,ppo,32,12.8,velocity,center_ux,0.6678261756896973 +karman_re200,ppo,32,12.8,velocity,center_uy,-0.2444368600845337 +karman_re200,ppo,32,12.8,velocity,lower_ux,0.6887365579605103 +karman_re200,ppo,32,12.8,velocity,lower_uy,-0.15043480694293976 +karman_re200,ppo,33,13.2,velocity,upper_ux,1.3189952373504639 +karman_re200,ppo,33,13.2,velocity,upper_uy,0.1627989560365677 +karman_re200,ppo,33,13.2,velocity,center_ux,0.7254077196121216 +karman_re200,ppo,33,13.2,velocity,center_uy,0.4682244062423706 +karman_re200,ppo,33,13.2,velocity,lower_ux,0.7144367098808289 +karman_re200,ppo,33,13.2,velocity,lower_uy,0.0492432676255703 +karman_re200,ppo,34,13.6,velocity,upper_ux,1.2333184480667114 +karman_re200,ppo,34,13.6,velocity,upper_uy,0.345531702041626 +karman_re200,ppo,34,13.6,velocity,center_ux,0.8548852801322937 +karman_re200,ppo,34,13.6,velocity,center_uy,0.7655591368675232 +karman_re200,ppo,34,13.6,velocity,lower_ux,0.7823772430419922 +karman_re200,ppo,34,13.6,velocity,lower_uy,0.22614219784736633 +karman_re200,ppo,35,14.0,velocity,upper_ux,1.1244125366210938 +karman_re200,ppo,35,14.0,velocity,upper_uy,0.46567967534065247 +karman_re200,ppo,35,14.0,velocity,center_ux,0.9452784657478333 +karman_re200,ppo,35,14.0,velocity,center_uy,0.8036163449287415 +karman_re200,ppo,35,14.0,velocity,lower_ux,0.8755525946617126 +karman_re200,ppo,35,14.0,velocity,lower_uy,0.3335355818271637 +karman_re200,ppo,36,14.4,velocity,upper_ux,1.0109003782272339 +karman_re200,ppo,36,14.4,velocity,upper_uy,0.5175252556800842 +karman_re200,ppo,36,14.4,velocity,center_ux,1.004360318183899 +karman_re200,ppo,36,14.4,velocity,center_uy,0.7912512421607971 +karman_re200,ppo,36,14.4,velocity,lower_ux,0.9753954410552979 +karman_re200,ppo,36,14.4,velocity,lower_uy,0.37473389506340027 +karman_re200,ppo,37,14.8,velocity,upper_ux,0.8950186371803284 +karman_re200,ppo,37,14.8,velocity,upper_uy,0.5129330158233643 +karman_re200,ppo,37,14.8,velocity,center_ux,1.067271113395691 +karman_re200,ppo,37,14.8,velocity,center_uy,0.7649686336517334 +karman_re200,ppo,37,14.8,velocity,lower_ux,1.0690902471542358 +karman_re200,ppo,37,14.8,velocity,lower_uy,0.36980724334716797 +karman_re200,ppo,38,15.2,velocity,upper_ux,0.7737971544265747 +karman_re200,ppo,38,15.2,velocity,upper_uy,0.43635478615760803 +karman_re200,ppo,38,15.2,velocity,center_ux,1.1555827856063843 +karman_re200,ppo,38,15.2,velocity,center_uy,0.6557846069335938 +karman_re200,ppo,38,15.2,velocity,lower_ux,1.1540316343307495 +karman_re200,ppo,38,15.2,velocity,lower_uy,0.3129723370075226 +karman_re200,ppo,39,15.6,velocity,upper_ux,0.6704418659210205 +karman_re200,ppo,39,15.6,velocity,upper_uy,0.25381970405578613 +karman_re200,ppo,39,15.6,velocity,center_ux,1.3144192695617676 +karman_re200,ppo,39,15.6,velocity,center_uy,0.4448804557323456 +karman_re200,ppo,39,15.6,velocity,lower_ux,1.223554015159607 +karman_re200,ppo,39,15.6,velocity,lower_uy,0.21807990968227386 +karman_re200,ppo,40,16.0,velocity,upper_ux,0.6414076089859009 +karman_re200,ppo,40,16.0,velocity,upper_uy,-0.016294512897729874 +karman_re200,ppo,40,16.0,velocity,center_ux,1.4236177206039429 +karman_re200,ppo,40,16.0,velocity,center_uy,0.033650048077106476 +karman_re200,ppo,40,16.0,velocity,lower_ux,1.254819631576538 +karman_re200,ppo,40,16.0,velocity,lower_uy,0.09479210525751114 +karman_re200,ppo,41,16.4,velocity,upper_ux,0.7178311347961426 +karman_re200,ppo,41,16.4,velocity,upper_uy,-0.2524116635322571 +karman_re200,ppo,41,16.4,velocity,center_ux,1.3118367195129395 +karman_re200,ppo,41,16.4,velocity,center_uy,-0.38142654299736023 +karman_re200,ppo,41,16.4,velocity,lower_ux,1.2188434600830078 +karman_re200,ppo,41,16.4,velocity,lower_uy,-0.036600902676582336 +karman_re200,ppo,42,16.8,velocity,upper_ux,0.8410552740097046 +karman_re200,ppo,42,16.8,velocity,upper_uy,-0.3689257502555847 +karman_re200,ppo,42,16.8,velocity,center_ux,1.1622493267059326 +karman_re200,ppo,42,16.8,velocity,center_uy,-0.4994591772556305 +karman_re200,ppo,42,16.8,velocity,lower_ux,1.1334452629089355 +karman_re200,ppo,42,16.8,velocity,lower_uy,-0.13273119926452637 +karman_re200,ppo,43,17.2,velocity,upper_ux,0.9508569836616516 +karman_re200,ppo,43,17.2,velocity,upper_uy,-0.4166499078273773 +karman_re200,ppo,43,17.2,velocity,center_ux,1.0747696161270142 +karman_re200,ppo,43,17.2,velocity,center_uy,-0.5160637497901917 +karman_re200,ppo,43,17.2,velocity,lower_ux,1.0382684469223022 +karman_re200,ppo,43,17.2,velocity,lower_uy,-0.20813022553920746 +karman_re200,ppo,44,17.6,velocity,upper_ux,1.045835018157959 +karman_re200,ppo,44,17.6,velocity,upper_uy,-0.4344682991504669 +karman_re200,ppo,44,17.6,velocity,center_ux,1.021101713180542 +karman_re200,ppo,44,17.6,velocity,center_uy,-0.5180290937423706 +karman_re200,ppo,44,17.6,velocity,lower_ux,0.9747176170349121 +karman_re200,ppo,44,17.6,velocity,lower_uy,-0.2460760474205017 +karman_re200,ppo,45,18.0,velocity,upper_ux,1.1364349126815796 +karman_re200,ppo,45,18.0,velocity,upper_uy,-0.4196850657463074 +karman_re200,ppo,45,18.0,velocity,center_ux,0.9730363488197327 +karman_re200,ppo,45,18.0,velocity,center_uy,-0.5091055631637573 +karman_re200,ppo,45,18.0,velocity,lower_ux,0.9339937567710876 +karman_re200,ppo,45,18.0,velocity,lower_uy,-0.2303474247455597 +karman_re200,ppo,46,18.4,velocity,upper_ux,1.2310233116149902 +karman_re200,ppo,46,18.4,velocity,upper_uy,-0.36915892362594604 +karman_re200,ppo,46,18.4,velocity,center_ux,0.9092509746551514 +karman_re200,ppo,46,18.4,velocity,center_uy,-0.4645023047924042 +karman_re200,ppo,46,18.4,velocity,lower_ux,0.9005013108253479 +karman_re200,ppo,46,18.4,velocity,lower_uy,-0.16855865716934204 +karman_re200,ppo,47,18.8,velocity,upper_ux,1.319734811782837 +karman_re200,ppo,47,18.8,velocity,upper_uy,-0.273534893989563 +karman_re200,ppo,47,18.8,velocity,center_ux,0.8282462954521179 +karman_re200,ppo,47,18.8,velocity,center_uy,-0.3128037750720978 +karman_re200,ppo,47,18.8,velocity,lower_ux,0.8764449954032898 +karman_re200,ppo,47,18.8,velocity,lower_uy,-0.07530397176742554 +karman_re200,ppo,48,19.2,velocity,upper_ux,1.4294546842575073 +karman_re200,ppo,48,19.2,velocity,upper_uy,-0.15480592846870422 +karman_re200,ppo,48,19.2,velocity,center_ux,0.7315835356712341 +karman_re200,ppo,48,19.2,velocity,center_uy,-0.041323356330394745 +karman_re200,ppo,48,19.2,velocity,lower_ux,0.8662458658218384 +karman_re200,ppo,48,19.2,velocity,lower_uy,0.044486794620752335 +karman_re200,ppo,49,19.6,velocity,upper_ux,1.4346950054168701 +karman_re200,ppo,49,19.6,velocity,upper_uy,0.08955825120210648 +karman_re200,ppo,49,19.6,velocity,center_ux,0.7071170210838318 +karman_re200,ppo,49,19.6,velocity,center_uy,0.2909090220928192 +karman_re200,ppo,49,19.6,velocity,lower_ux,0.8744621276855469 +karman_re200,ppo,49,19.6,velocity,lower_uy,0.16879631578922272 +karman_re200,ppo,50,20.0,velocity,upper_ux,1.3018848896026611 +karman_re200,ppo,50,20.0,velocity,upper_uy,0.31353795528411865 +karman_re200,ppo,50,20.0,velocity,center_ux,0.763641357421875 +karman_re200,ppo,50,20.0,velocity,center_uy,0.5063968896865845 +karman_re200,ppo,50,20.0,velocity,lower_ux,0.9239261150360107 +karman_re200,ppo,50,20.0,velocity,lower_uy,0.2559577226638794 +karman_re200,ppo,51,20.4,velocity,upper_ux,1.1670511960983276 +karman_re200,ppo,51,20.4,velocity,upper_uy,0.40034565329551697 +karman_re200,ppo,51,20.4,velocity,center_ux,0.8276962041854858 +karman_re200,ppo,51,20.4,velocity,center_uy,0.5864519476890564 +karman_re200,ppo,51,20.4,velocity,lower_ux,0.9944711327552795 +karman_re200,ppo,51,20.4,velocity,lower_uy,0.32601597905158997 +karman_re200,ppo,52,20.8,velocity,upper_ux,1.0621320009231567 +karman_re200,ppo,52,20.8,velocity,upper_uy,0.38551998138427734 +karman_re200,ppo,52,20.8,velocity,center_ux,0.8541871905326843 +karman_re200,ppo,52,20.8,velocity,center_uy,0.610100269317627 +karman_re200,ppo,52,20.8,velocity,lower_ux,1.0704013109207153 +karman_re200,ppo,52,20.8,velocity,lower_uy,0.3594033718109131 +karman_re200,ppo,53,21.2,velocity,upper_ux,0.9788715243339539 +karman_re200,ppo,53,21.2,velocity,upper_uy,0.31136858463287354 +karman_re200,ppo,53,21.2,velocity,center_ux,0.8342756032943726 +karman_re200,ppo,53,21.2,velocity,center_uy,0.6105795502662659 +karman_re200,ppo,53,21.2,velocity,lower_ux,1.1501694917678833 +karman_re200,ppo,53,21.2,velocity,lower_uy,0.3445068299770355 +karman_re200,ppo,54,21.6,velocity,upper_ux,0.9176885485649109 +karman_re200,ppo,54,21.6,velocity,upper_uy,0.19543233513832092 +karman_re200,ppo,54,21.6,velocity,center_ux,0.7552767395973206 +karman_re200,ppo,54,21.6,velocity,center_uy,0.5594809055328369 +karman_re200,ppo,54,21.6,velocity,lower_ux,1.218261480331421 +karman_re200,ppo,54,21.6,velocity,lower_uy,0.25401630997657776 +karman_re200,ppo,55,22.0,velocity,upper_ux,0.8806930780410767 +karman_re200,ppo,55,22.0,velocity,upper_uy,0.05109433829784393 +karman_re200,ppo,55,22.0,velocity,center_ux,0.6095775961875916 +karman_re200,ppo,55,22.0,velocity,center_uy,0.2924481928348541 +karman_re200,ppo,55,22.0,velocity,lower_ux,1.245811104774475 +karman_re200,ppo,55,22.0,velocity,lower_uy,0.06792385876178741 +karman_re200,ppo,56,22.4,velocity,upper_ux,0.8592244982719421 +karman_re200,ppo,56,22.4,velocity,upper_uy,-0.11416755616664886 +karman_re200,ppo,56,22.4,velocity,center_ux,0.6016814708709717 +karman_re200,ppo,56,22.4,velocity,center_uy,-0.27654045820236206 +karman_re200,ppo,56,22.4,velocity,lower_ux,1.2772895097732544 +karman_re200,ppo,56,22.4,velocity,lower_uy,-0.09808625280857086 +karman_re200,ppo,57,22.8,velocity,upper_ux,0.8823629021644592 +karman_re200,ppo,57,22.8,velocity,upper_uy,-0.23647940158843994 +karman_re200,ppo,57,22.8,velocity,center_ux,0.7486320734024048 +karman_re200,ppo,57,22.8,velocity,center_uy,-0.5705949664115906 +karman_re200,ppo,57,22.8,velocity,lower_ux,1.2374210357666016 +karman_re200,ppo,57,22.8,velocity,lower_uy,-0.2433651089668274 +karman_re200,ppo,58,23.2,velocity,upper_ux,0.9365923404693604 +karman_re200,ppo,58,23.2,velocity,upper_uy,-0.31963685154914856 +karman_re200,ppo,58,23.2,velocity,center_ux,0.8439993262290955 +karman_re200,ppo,58,23.2,velocity,center_uy,-0.6048003435134888 +karman_re200,ppo,58,23.2,velocity,lower_ux,1.150038480758667 +karman_re200,ppo,58,23.2,velocity,lower_uy,-0.3293612599372864 +karman_re200,ppo,59,23.6,velocity,upper_ux,0.9972185492515564 +karman_re200,ppo,59,23.6,velocity,upper_uy,-0.39108598232269287 +karman_re200,ppo,59,23.6,velocity,center_ux,0.8708446025848389 +karman_re200,ppo,59,23.6,velocity,center_uy,-0.5947744250297546 +karman_re200,ppo,59,23.6,velocity,lower_ux,1.062501311302185 +karman_re200,ppo,59,23.6,velocity,lower_uy,-0.35190409421920776 +karman_re200,ppo,60,24.0,velocity,upper_ux,1.0670979022979736 +karman_re200,ppo,60,24.0,velocity,upper_uy,-0.42865797877311707 +karman_re200,ppo,60,24.0,velocity,center_ux,0.8618997931480408 +karman_re200,ppo,60,24.0,velocity,center_uy,-0.5733550190925598 +karman_re200,ppo,60,24.0,velocity,lower_ux,0.9903346300125122 +karman_re200,ppo,60,24.0,velocity,lower_uy,-0.3271072506904602 +karman_re200,ppo,61,24.4,velocity,upper_ux,1.1546828746795654 +karman_re200,ppo,61,24.4,velocity,upper_uy,-0.44181519746780396 +karman_re200,ppo,61,24.4,velocity,center_ux,0.8220024704933167 +karman_re200,ppo,61,24.4,velocity,center_uy,-0.5348420143127441 +karman_re200,ppo,61,24.4,velocity,lower_ux,0.935382068157196 +karman_re200,ppo,61,24.4,velocity,lower_uy,-0.26891887187957764 +karman_re200,ppo,62,24.8,velocity,upper_ux,1.2539814710617065 +karman_re200,ppo,62,24.8,velocity,upper_uy,-0.39380142092704773 +karman_re200,ppo,62,24.8,velocity,center_ux,0.7455325126647949 +karman_re200,ppo,62,24.8,velocity,center_uy,-0.4324032664299011 +karman_re200,ppo,62,24.8,velocity,lower_ux,0.9001703858375549 +karman_re200,ppo,62,24.8,velocity,lower_uy,-0.17677003145217896 +karman_re200,ppo,63,25.2,velocity,upper_ux,1.3529592752456665 +karman_re200,ppo,63,25.2,velocity,upper_uy,-0.2425994724035263 +karman_re200,ppo,63,25.2,velocity,center_ux,0.6509886980056763 +karman_re200,ppo,63,25.2,velocity,center_uy,-0.20559099316596985 +karman_re200,ppo,63,25.2,velocity,lower_ux,0.8753308653831482 +karman_re200,ppo,63,25.2,velocity,lower_uy,-0.04273996502161026 +karman_re200,ppo,64,25.6,velocity,upper_ux,1.429948091506958 +karman_re200,ppo,64,25.6,velocity,upper_uy,-0.002673223614692688 +karman_re200,ppo,64,25.6,velocity,center_ux,0.5983560085296631 +karman_re200,ppo,64,25.6,velocity,center_uy,0.13060128688812256 +karman_re200,ppo,64,25.6,velocity,lower_ux,0.8476734757423401 +karman_re200,ppo,64,25.6,velocity,lower_uy,0.13533371686935425 +karman_re200,ppo,65,26.0,velocity,upper_ux,1.3268011808395386 +karman_re200,ppo,65,26.0,velocity,upper_uy,0.32000797986984253 +karman_re200,ppo,65,26.0,velocity,center_ux,0.6422279477119446 +karman_re200,ppo,65,26.0,velocity,center_uy,0.4335569441318512 +karman_re200,ppo,65,26.0,velocity,lower_ux,0.8696182370185852 +karman_re200,ppo,65,26.0,velocity,lower_uy,0.2534008324146271 +karman_re200,ppo,66,26.4,velocity,upper_ux,1.1498831510543823 +karman_re200,ppo,66,26.4,velocity,upper_uy,0.49362078309059143 +karman_re200,ppo,66,26.4,velocity,center_ux,0.7236042618751526 +karman_re200,ppo,66,26.4,velocity,center_uy,0.6115902066230774 +karman_re200,ppo,66,26.4,velocity,lower_ux,0.9341515302658081 +karman_re200,ppo,66,26.4,velocity,lower_uy,0.3206363320350647 +karman_re200,ppo,67,26.8,velocity,upper_ux,1.0084445476531982 +karman_re200,ppo,67,26.8,velocity,upper_uy,0.5360099673271179 +karman_re200,ppo,67,26.8,velocity,center_ux,0.7920381426811218 +karman_re200,ppo,67,26.8,velocity,center_uy,0.6943516731262207 +karman_re200,ppo,67,26.8,velocity,lower_ux,1.0111583471298218 +karman_re200,ppo,67,26.8,velocity,lower_uy,0.3798442482948303 +karman_re200,ppo,68,27.2,velocity,upper_ux,0.8996508121490479 +karman_re200,ppo,68,27.2,velocity,upper_uy,0.5060460567474365 +karman_re200,ppo,68,27.2,velocity,center_ux,0.836997926235199 +karman_re200,ppo,68,27.2,velocity,center_uy,0.7391746044158936 +karman_re200,ppo,68,27.2,velocity,lower_ux,1.0942871570587158 +karman_re200,ppo,68,27.2,velocity,lower_uy,0.40122660994529724 +karman_re200,ppo,69,27.6,velocity,upper_ux,0.8043731451034546 +karman_re200,ppo,69,27.6,velocity,upper_uy,0.4286951720714569 +karman_re200,ppo,69,27.6,velocity,center_ux,0.8613660931587219 +karman_re200,ppo,69,27.6,velocity,center_uy,0.7542654275894165 +karman_re200,ppo,69,27.6,velocity,lower_ux,1.1796271800994873 +karman_re200,ppo,69,27.6,velocity,lower_uy,0.3805677890777588 +karman_re200,ppo,70,28.0,velocity,upper_ux,0.724017858505249 +karman_re200,ppo,70,28.0,velocity,upper_uy,0.3020574450492859 +karman_re200,ppo,70,28.0,velocity,center_ux,0.8680721521377563 +karman_re200,ppo,70,28.0,velocity,center_uy,0.7390783429145813 +karman_re200,ppo,70,28.0,velocity,lower_ux,1.239720106124878 +karman_re200,ppo,70,28.0,velocity,lower_uy,0.2704146206378937 +karman_re200,ppo,71,28.4,velocity,upper_ux,0.6806746125221252 +karman_re200,ppo,71,28.4,velocity,upper_uy,0.13128213584423065 +karman_re200,ppo,71,28.4,velocity,center_ux,0.827975869178772 +karman_re200,ppo,71,28.4,velocity,center_uy,0.48140788078308105 +karman_re200,ppo,71,28.4,velocity,lower_ux,1.2358028888702393 +karman_re200,ppo,71,28.4,velocity,lower_uy,0.04349449649453163 +karman_re200,ppo,72,28.8,velocity,upper_ux,0.7003887891769409 +karman_re200,ppo,72,28.8,velocity,upper_uy,-0.0522252693772316 +karman_re200,ppo,72,28.8,velocity,center_ux,0.8164302110671997 +karman_re200,ppo,72,28.8,velocity,center_uy,-0.2857970595359802 +karman_re200,ppo,72,28.8,velocity,lower_ux,1.2640591859817505 +karman_re200,ppo,72,28.8,velocity,lower_uy,-0.12678124010562897 +karman_re200,ppo,73,29.2,velocity,upper_ux,0.7767751812934875 +karman_re200,ppo,73,29.2,velocity,upper_uy,-0.20049668848514557 +karman_re200,ppo,73,29.2,velocity,center_ux,0.867189884185791 +karman_re200,ppo,73,29.2,velocity,center_uy,-0.7707023620605469 +karman_re200,ppo,73,29.2,velocity,lower_ux,1.2382758855819702 +karman_re200,ppo,73,29.2,velocity,lower_uy,-0.27324753999710083 +karman_re200,ppo,74,29.6,velocity,upper_ux,0.8681661486625671 +karman_re200,ppo,74,29.6,velocity,upper_uy,-0.31421586871147156 +karman_re200,ppo,74,29.6,velocity,center_ux,0.9158266186714172 +karman_re200,ppo,74,29.6,velocity,center_uy,-0.8060662150382996 +karman_re200,ppo,74,29.6,velocity,lower_ux,1.1643335819244385 +karman_re200,ppo,74,29.6,velocity,lower_uy,-0.3692032992839813 +karman_re200,ppo,75,30.0,velocity,upper_ux,0.9644123315811157 +karman_re200,ppo,75,30.0,velocity,upper_uy,-0.38044795393943787 +karman_re200,ppo,75,30.0,velocity,center_ux,0.9303069114685059 +karman_re200,ppo,75,30.0,velocity,center_uy,-0.7613151669502258 +karman_re200,ppo,75,30.0,velocity,lower_ux,1.0753929615020752 +karman_re200,ppo,75,30.0,velocity,lower_uy,-0.3998468816280365 +karman_re200,ppo,76,30.4,velocity,upper_ux,1.0633026361465454 +karman_re200,ppo,76,30.4,velocity,upper_uy,-0.3940248489379883 +karman_re200,ppo,76,30.4,velocity,center_ux,0.9244823455810547 +karman_re200,ppo,76,30.4,velocity,center_uy,-0.7456085085868835 +karman_re200,ppo,76,30.4,velocity,lower_ux,0.9914681911468506 +karman_re200,ppo,76,30.4,velocity,lower_uy,-0.3717900216579437 +karman_re200,ppo,77,30.8,velocity,upper_ux,1.1638771295547485 +karman_re200,ppo,77,30.8,velocity,upper_uy,-0.35359400510787964 +karman_re200,ppo,77,30.8,velocity,center_ux,0.9005100727081299 +karman_re200,ppo,77,30.8,velocity,center_uy,-0.7301358580589294 +karman_re200,ppo,77,30.8,velocity,lower_ux,0.9200891256332397 +karman_re200,ppo,77,30.8,velocity,lower_uy,-0.29090049862861633 +karman_re200,ppo,78,31.2,velocity,upper_ux,1.2319190502166748 +karman_re200,ppo,78,31.2,velocity,upper_uy,-0.23763206601142883 +karman_re200,ppo,78,31.2,velocity,center_ux,0.8325194716453552 +karman_re200,ppo,78,31.2,velocity,center_uy,-0.5981329083442688 +karman_re200,ppo,78,31.2,velocity,lower_ux,0.8671596646308899 +karman_re200,ppo,78,31.2,velocity,lower_uy,-0.1544317752122879 +karman_re200,ppo,79,31.6,velocity,upper_ux,1.2347640991210938 +karman_re200,ppo,79,31.6,velocity,upper_uy,-0.047558773308992386 +karman_re200,ppo,79,31.6,velocity,center_ux,0.7580552697181702 +karman_re200,ppo,79,31.6,velocity,center_uy,-0.017895199358463287 +karman_re200,ppo,79,31.6,velocity,lower_ux,0.8380565643310547 +karman_re200,ppo,79,31.6,velocity,lower_uy,0.02855207957327366 +karman_re200,ppo,80,32.0,velocity,upper_ux,1.2166564464569092 +karman_re200,ppo,80,32.0,velocity,upper_uy,0.11880521476268768 +karman_re200,ppo,80,32.0,velocity,center_ux,0.7990357875823975 +karman_re200,ppo,80,32.0,velocity,center_uy,0.5560221076011658 +karman_re200,ppo,80,32.0,velocity,lower_ux,0.8318448066711426 +karman_re200,ppo,80,32.0,velocity,lower_uy,0.2213735431432724 +karman_re200,ppo,81,32.4,velocity,upper_ux,1.1377630233764648 +karman_re200,ppo,81,32.4,velocity,upper_uy,0.2534303367137909 +karman_re200,ppo,81,32.4,velocity,center_ux,0.8679664134979248 +karman_re200,ppo,81,32.4,velocity,center_uy,0.6822746396064758 +karman_re200,ppo,81,32.4,velocity,lower_ux,0.8835641741752625 +karman_re200,ppo,81,32.4,velocity,lower_uy,0.3277689218521118 +karman_re200,ppo,82,32.8,velocity,upper_ux,1.0368127822875977 +karman_re200,ppo,82,32.8,velocity,upper_uy,0.3241288661956787 +karman_re200,ppo,82,32.8,velocity,center_ux,0.8940459489822388 +karman_re200,ppo,82,32.8,velocity,center_uy,0.691306471824646 +karman_re200,ppo,82,32.8,velocity,lower_ux,0.9643248915672302 +karman_re200,ppo,82,32.8,velocity,lower_uy,0.39401257038116455 +karman_re200,ppo,83,33.2,velocity,upper_ux,0.9448742866516113 +karman_re200,ppo,83,33.2,velocity,upper_uy,0.3329516649246216 +karman_re200,ppo,83,33.2,velocity,center_ux,0.8917080163955688 +karman_re200,ppo,83,33.2,velocity,center_uy,0.696865975856781 +karman_re200,ppo,83,33.2,velocity,lower_ux,1.0518301725387573 +karman_re200,ppo,83,33.2,velocity,lower_uy,0.43724575638771057 +karman_re200,ppo,84,33.6,velocity,upper_ux,0.8646661639213562 +karman_re200,ppo,84,33.6,velocity,upper_uy,0.2968321740627289 +karman_re200,ppo,84,33.6,velocity,center_ux,0.864271879196167 +karman_re200,ppo,84,33.6,velocity,center_uy,0.71142578125 +karman_re200,ppo,84,33.6,velocity,lower_ux,1.1416641473770142 +karman_re200,ppo,84,33.6,velocity,lower_uy,0.4358968436717987 +karman_re200,ppo,85,34.0,velocity,upper_ux,0.7982760071754456 +karman_re200,ppo,85,34.0,velocity,upper_uy,0.21480105817317963 +karman_re200,ppo,85,34.0,velocity,center_ux,0.8002005219459534 +karman_re200,ppo,85,34.0,velocity,center_uy,0.6954256296157837 +karman_re200,ppo,85,34.0,velocity,lower_ux,1.2218132019042969 +karman_re200,ppo,85,34.0,velocity,lower_uy,0.38116565346717834 +karman_re200,ppo,86,34.4,velocity,upper_ux,0.7620008587837219 +karman_re200,ppo,86,34.4,velocity,upper_uy,0.0968095138669014 +karman_re200,ppo,86,34.4,velocity,center_ux,0.650709331035614 +karman_re200,ppo,86,34.4,velocity,center_uy,0.5451018810272217 +karman_re200,ppo,86,34.4,velocity,lower_ux,1.2390156984329224 +karman_re200,ppo,86,34.4,velocity,lower_uy,0.1991654932498932 +karman_re200,ppo,87,34.8,velocity,upper_ux,0.7798740863800049 +karman_re200,ppo,87,34.8,velocity,upper_uy,-0.03223824128508568 +karman_re200,ppo,87,34.8,velocity,center_ux,0.5260461568832397 +karman_re200,ppo,87,34.8,velocity,center_uy,-0.06425914913415909 +karman_re200,ppo,87,34.8,velocity,lower_ux,1.2538089752197266 +karman_re200,ppo,87,34.8,velocity,lower_uy,-0.024490810930728912 +karman_re200,ppo,88,35.2,velocity,upper_ux,0.8190737962722778 +karman_re200,ppo,88,35.2,velocity,upper_uy,-0.18148110806941986 +karman_re200,ppo,88,35.2,velocity,center_ux,0.6043016910552979 +karman_re200,ppo,88,35.2,velocity,center_uy,-0.6447920203208923 +karman_re200,ppo,88,35.2,velocity,lower_ux,1.2559047937393188 +karman_re200,ppo,88,35.2,velocity,lower_uy,-0.2048065960407257 +karman_re200,ppo,89,35.6,velocity,upper_ux,0.8794370293617249 +karman_re200,ppo,89,35.6,velocity,upper_uy,-0.3025491535663605 +karman_re200,ppo,89,35.6,velocity,center_ux,0.7467160224914551 +karman_re200,ppo,89,35.6,velocity,center_uy,-0.7857822179794312 +karman_re200,ppo,89,35.6,velocity,lower_ux,1.1617845296859741 +karman_re200,ppo,89,35.6,velocity,lower_uy,-0.3554069995880127 +karman_re200,ppo,90,36.0,velocity,upper_ux,0.9663236141204834 +karman_re200,ppo,90,36.0,velocity,upper_uy,-0.37674465775489807 +karman_re200,ppo,90,36.0,velocity,center_ux,0.8300750851631165 +karman_re200,ppo,90,36.0,velocity,center_uy,-0.793030858039856 +karman_re200,ppo,90,36.0,velocity,lower_ux,1.0459932088851929 +karman_re200,ppo,90,36.0,velocity,lower_uy,-0.43545058369636536 +karman_re200,ppo,91,36.4,velocity,upper_ux,1.0543029308319092 +karman_re200,ppo,91,36.4,velocity,upper_uy,-0.4089670479297638 +karman_re200,ppo,91,36.4,velocity,center_ux,0.8710642457008362 +karman_re200,ppo,91,36.4,velocity,center_uy,-0.8098682165145874 +karman_re200,ppo,91,36.4,velocity,lower_ux,0.9324942231178284 +karman_re200,ppo,91,36.4,velocity,lower_uy,-0.4486379325389862 +karman_re200,ppo,92,36.8,velocity,upper_ux,1.1406153440475464 +karman_re200,ppo,92,36.8,velocity,upper_uy,-0.3910275995731354 +karman_re200,ppo,92,36.8,velocity,center_ux,0.9060987830162048 +karman_re200,ppo,92,36.8,velocity,center_uy,-0.8267475366592407 +karman_re200,ppo,92,36.8,velocity,lower_ux,0.8279711008071899 +karman_re200,ppo,92,36.8,velocity,lower_uy,-0.40828418731689453 +karman_re200,ppo,93,37.2,velocity,upper_ux,1.2094637155532837 +karman_re200,ppo,93,37.2,velocity,upper_uy,-0.3127596080303192 +karman_re200,ppo,93,37.2,velocity,center_ux,0.9486331343650818 +karman_re200,ppo,93,37.2,velocity,center_uy,-0.850191593170166 +karman_re200,ppo,93,37.2,velocity,lower_ux,0.7420285940170288 +karman_re200,ppo,93,37.2,velocity,lower_uy,-0.30856841802597046 +karman_re200,ppo,94,37.6,velocity,upper_ux,1.235368013381958 +karman_re200,ppo,94,37.6,velocity,upper_uy,-0.1566397249698639 +karman_re200,ppo,94,37.6,velocity,center_ux,0.9891923666000366 +karman_re200,ppo,94,37.6,velocity,center_uy,-0.4796644151210785 +karman_re200,ppo,94,37.6,velocity,lower_ux,0.6955339312553406 +karman_re200,ppo,94,37.6,velocity,lower_uy,-0.15459266304969788 +karman_re200,ppo,95,38.0,velocity,upper_ux,1.251960039138794 +karman_re200,ppo,95,38.0,velocity,upper_uy,0.017717184498906136 +karman_re200,ppo,95,38.0,velocity,center_ux,0.9989349842071533 +karman_re200,ppo,95,38.0,velocity,center_uy,0.3602939248085022 +karman_re200,ppo,95,38.0,velocity,lower_ux,0.7081247568130493 +karman_re200,ppo,95,38.0,velocity,lower_uy,0.0244919341057539 +karman_re200,ppo,96,38.4,velocity,upper_ux,1.1937494277954102 +karman_re200,ppo,96,38.4,velocity,upper_uy,0.22580274939537048 +karman_re200,ppo,96,38.4,velocity,center_ux,0.9753631353378296 +karman_re200,ppo,96,38.4,velocity,center_uy,0.7706984877586365 +karman_re200,ppo,96,38.4,velocity,lower_ux,0.7621355652809143 +karman_re200,ppo,96,38.4,velocity,lower_uy,0.21467433869838715 +karman_re200,ppo,97,38.8,velocity,upper_ux,1.0890289545059204 +karman_re200,ppo,97,38.8,velocity,upper_uy,0.38131752610206604 +karman_re200,ppo,97,38.8,velocity,center_ux,0.9627845883369446 +karman_re200,ppo,97,38.8,velocity,center_uy,0.807715654373169 +karman_re200,ppo,97,38.8,velocity,lower_ux,0.8458071947097778 +karman_re200,ppo,97,38.8,velocity,lower_uy,0.34980785846710205 +karman_re200,ppo,98,39.2,velocity,upper_ux,0.9804567694664001 +karman_re200,ppo,98,39.2,velocity,upper_uy,0.44210776686668396 +karman_re200,ppo,98,39.2,velocity,center_ux,0.9756221175193787 +karman_re200,ppo,98,39.2,velocity,center_uy,0.8262182474136353 +karman_re200,ppo,98,39.2,velocity,lower_ux,0.9531139135360718 +karman_re200,ppo,98,39.2,velocity,lower_uy,0.4023323059082031 +karman_re200,ppo,99,39.6,velocity,upper_ux,0.871329665184021 +karman_re200,ppo,99,39.6,velocity,upper_uy,0.4341243505477905 +karman_re200,ppo,99,39.6,velocity,center_ux,1.0148428678512573 +karman_re200,ppo,99,39.6,velocity,center_uy,0.8500712513923645 +karman_re200,ppo,99,39.6,velocity,lower_ux,1.0527606010437012 +karman_re200,ppo,99,39.6,velocity,lower_uy,0.4113157391548157 +karman_re200,ppo,100,40.0,velocity,upper_ux,0.7617045640945435 +karman_re200,ppo,100,40.0,velocity,upper_uy,0.37014704942703247 +karman_re200,ppo,100,40.0,velocity,center_ux,1.1184486150741577 +karman_re200,ppo,100,40.0,velocity,center_uy,0.8707525730133057 +karman_re200,ppo,100,40.0,velocity,lower_ux,1.1320492029190063 +karman_re200,ppo,100,40.0,velocity,lower_uy,0.3708558976650238 +karman_re200,ppo,101,40.4,velocity,upper_ux,0.671033501625061 +karman_re200,ppo,101,40.4,velocity,upper_uy,0.2287614941596985 +karman_re200,ppo,101,40.4,velocity,center_ux,1.3085815906524658 +karman_re200,ppo,101,40.4,velocity,center_uy,0.7593494653701782 +karman_re200,ppo,101,40.4,velocity,lower_ux,1.1786706447601318 +karman_re200,ppo,101,40.4,velocity,lower_uy,0.2884596884250641 +karman_re200,ppo,102,40.8,velocity,upper_ux,0.6424850225448608 +karman_re200,ppo,102,40.8,velocity,upper_uy,0.028837937861680984 +karman_re200,ppo,102,40.8,velocity,center_ux,1.3811426162719727 +karman_re200,ppo,102,40.8,velocity,center_uy,0.023630967363715172 +karman_re200,ppo,102,40.8,velocity,lower_ux,1.1535253524780273 +karman_re200,ppo,102,40.8,velocity,lower_uy,0.14369530975818634 +karman_re200,ppo,103,41.2,velocity,upper_ux,0.7063491344451904 +karman_re200,ppo,103,41.2,velocity,upper_uy,-0.1640917807817459 +karman_re200,ppo,103,41.2,velocity,center_ux,1.231519341468811 +karman_re200,ppo,103,41.2,velocity,center_uy,-0.6077091097831726 +karman_re200,ppo,103,41.2,velocity,lower_ux,1.064355731010437 +karman_re200,ppo,103,41.2,velocity,lower_uy,-0.05975145474076271 +karman_re200,ppo,104,41.6,velocity,upper_ux,0.8062855005264282 +karman_re200,ppo,104,41.6,velocity,upper_uy,-0.32986685633659363 +karman_re200,ppo,104,41.6,velocity,center_ux,1.0804884433746338 +karman_re200,ppo,104,41.6,velocity,center_uy,-0.6855670809745789 +karman_re200,ppo,104,41.6,velocity,lower_ux,1.0334303379058838 +karman_re200,ppo,104,41.6,velocity,lower_uy,-0.1988576501607895 +karman_re200,ppo,105,42.0,velocity,upper_ux,0.9182113409042358 +karman_re200,ppo,105,42.0,velocity,upper_uy,-0.42286574840545654 +karman_re200,ppo,105,42.0,velocity,center_ux,1.0043833255767822 +karman_re200,ppo,105,42.0,velocity,center_uy,-0.6925716996192932 +karman_re200,ppo,105,42.0,velocity,lower_ux,0.9969708323478699 +karman_re200,ppo,105,42.0,velocity,lower_uy,-0.2818538546562195 +karman_re200,ppo,106,42.4,velocity,upper_ux,1.0341997146606445 +karman_re200,ppo,106,42.4,velocity,upper_uy,-0.45825931429862976 +karman_re200,ppo,106,42.4,velocity,center_ux,0.9591767191886902 +karman_re200,ppo,106,42.4,velocity,center_uy,-0.7234652638435364 +karman_re200,ppo,106,42.4,velocity,lower_ux,0.9247912764549255 +karman_re200,ppo,106,42.4,velocity,lower_uy,-0.32079142332077026 +karman_re200,ppo,107,42.8,velocity,upper_ux,1.1403809785842896 +karman_re200,ppo,107,42.8,velocity,upper_uy,-0.4455666244029999 +karman_re200,ppo,107,42.8,velocity,center_ux,0.92149817943573 +karman_re200,ppo,107,42.8,velocity,center_uy,-0.7689074873924255 +karman_re200,ppo,107,42.8,velocity,lower_ux,0.8472921252250671 +karman_re200,ppo,107,42.8,velocity,lower_uy,-0.3099325895309448 +karman_re200,ppo,108,43.2,velocity,upper_ux,1.2213596105575562 +karman_re200,ppo,108,43.2,velocity,upper_uy,-0.3773719370365143 +karman_re200,ppo,108,43.2,velocity,center_ux,0.8730699419975281 +karman_re200,ppo,108,43.2,velocity,center_uy,-0.8338587284088135 +karman_re200,ppo,108,43.2,velocity,lower_ux,0.7719953060150146 +karman_re200,ppo,108,43.2,velocity,lower_uy,-0.2537095546722412 +karman_re200,ppo,109,43.6,velocity,upper_ux,1.2509874105453491 +karman_re200,ppo,109,43.6,velocity,upper_uy,-0.23881787061691284 +karman_re200,ppo,109,43.6,velocity,center_ux,0.7960232496261597 +karman_re200,ppo,109,43.6,velocity,center_uy,-0.634016215801239 +karman_re200,ppo,109,43.6,velocity,lower_ux,0.7211318016052246 +karman_re200,ppo,109,43.6,velocity,lower_uy,-0.14689409732818604 +karman_re200,ppo,110,44.0,velocity,upper_ux,1.257326602935791 +karman_re200,ppo,110,44.0,velocity,upper_uy,-0.07818109542131424 +karman_re200,ppo,110,44.0,velocity,center_ux,0.7733213901519775 +karman_re200,ppo,110,44.0,velocity,center_uy,0.1634906381368637 +karman_re200,ppo,110,44.0,velocity,lower_ux,0.7161638736724854 +karman_re200,ppo,110,44.0,velocity,lower_uy,-0.012807022780179977 +karman_re200,ppo,111,44.4,velocity,upper_ux,1.2553521394729614 +karman_re200,ppo,111,44.4,velocity,upper_uy,0.07987944781780243 +karman_re200,ppo,111,44.4,velocity,center_ux,0.8265361189842224 +karman_re200,ppo,111,44.4,velocity,center_uy,0.6917306780815125 +karman_re200,ppo,111,44.4,velocity,lower_ux,0.7486473917961121 +karman_re200,ppo,111,44.4,velocity,lower_uy,0.14954163134098053 +karman_re200,ppo,112,44.8,velocity,upper_ux,1.1735166311264038 +karman_re200,ppo,112,44.8,velocity,upper_uy,0.2588326036930084 +karman_re200,ppo,112,44.8,velocity,center_ux,0.8733580112457275 +karman_re200,ppo,112,44.8,velocity,center_uy,0.7269802093505859 +karman_re200,ppo,112,44.8,velocity,lower_ux,0.8070934414863586 +karman_re200,ppo,112,44.8,velocity,lower_uy,0.31422263383865356 +karman_re200,ppo,113,45.2,velocity,upper_ux,1.06587553024292 +karman_re200,ppo,113,45.2,velocity,upper_uy,0.3876081109046936 +karman_re200,ppo,113,45.2,velocity,center_ux,0.8871128559112549 +karman_re200,ppo,113,45.2,velocity,center_uy,0.7506620287895203 +karman_re200,ppo,113,45.2,velocity,lower_ux,0.9031304121017456 +karman_re200,ppo,113,45.2,velocity,lower_uy,0.4025866389274597 +karman_re200,ppo,114,45.6,velocity,upper_ux,0.9630861878395081 +karman_re200,ppo,114,45.6,velocity,upper_uy,0.42575913667678833 +karman_re200,ppo,114,45.6,velocity,center_ux,0.8818338513374329 +karman_re200,ppo,114,45.6,velocity,center_uy,0.7757501006126404 +karman_re200,ppo,114,45.6,velocity,lower_ux,1.0044327974319458 +karman_re200,ppo,114,45.6,velocity,lower_uy,0.4527362585067749 +karman_re200,ppo,115,46.0,velocity,upper_ux,0.8734015822410583 +karman_re200,ppo,115,46.0,velocity,upper_uy,0.40688663721084595 +karman_re200,ppo,115,46.0,velocity,center_ux,0.8622899651527405 +karman_re200,ppo,115,46.0,velocity,center_uy,0.8128988146781921 +karman_re200,ppo,115,46.0,velocity,lower_ux,1.107285976409912 +karman_re200,ppo,115,46.0,velocity,lower_uy,0.4603314995765686 +karman_re200,ppo,116,46.4,velocity,upper_ux,0.7958427667617798 +karman_re200,ppo,116,46.4,velocity,upper_uy,0.33859801292419434 +karman_re200,ppo,116,46.4,velocity,center_ux,0.817527174949646 +karman_re200,ppo,116,46.4,velocity,center_uy,0.8566187024116516 +karman_re200,ppo,116,46.4,velocity,lower_ux,1.201328992843628 +karman_re200,ppo,116,46.4,velocity,lower_uy,0.4094679355621338 +karman_re200,ppo,117,46.8,velocity,upper_ux,0.7423851490020752 +karman_re200,ppo,117,46.8,velocity,upper_uy,0.22141660749912262 +karman_re200,ppo,117,46.8,velocity,center_ux,0.7058743834495544 +karman_re200,ppo,117,46.8,velocity,center_uy,0.7988276481628418 +karman_re200,ppo,117,46.8,velocity,lower_ux,1.247183084487915 +karman_re200,ppo,117,46.8,velocity,lower_uy,0.26995787024497986 +karman_re200,ppo,118,47.2,velocity,upper_ux,0.7338493466377258 +karman_re200,ppo,118,47.2,velocity,upper_uy,0.07269074767827988 +karman_re200,ppo,118,47.2,velocity,center_ux,0.6212301254272461 +karman_re200,ppo,118,47.2,velocity,center_uy,0.08998500555753708 +karman_re200,ppo,118,47.2,velocity,lower_ux,1.2437273263931274 +karman_re200,ppo,118,47.2,velocity,lower_uy,0.051592789590358734 +karman_re200,ppo,119,47.6,velocity,upper_ux,0.7648074626922607 +karman_re200,ppo,119,47.6,velocity,upper_uy,-0.09794174134731293 +karman_re200,ppo,119,47.6,velocity,center_ux,0.7223398089408875 +karman_re200,ppo,119,47.6,velocity,center_uy,-0.6821095943450928 +karman_re200,ppo,119,47.6,velocity,lower_ux,1.2582005262374878 +karman_re200,ppo,119,47.6,velocity,lower_uy,-0.12938320636749268 +karman_re200,ppo,120,48.0,velocity,upper_ux,0.8158400058746338 +karman_re200,ppo,120,48.0,velocity,upper_uy,-0.27431249618530273 +karman_re200,ppo,120,48.0,velocity,center_ux,0.8505567312240601 +karman_re200,ppo,120,48.0,velocity,center_uy,-0.806313157081604 +karman_re200,ppo,120,48.0,velocity,lower_ux,1.1923768520355225 +karman_re200,ppo,120,48.0,velocity,lower_uy,-0.288495808839798 +karman_re200,ppo,121,48.4,velocity,upper_ux,0.9054384827613831 +karman_re200,ppo,121,48.4,velocity,upper_uy,-0.3723677396774292 +karman_re200,ppo,121,48.4,velocity,center_ux,0.9045238494873047 +karman_re200,ppo,121,48.4,velocity,center_uy,-0.8070560693740845 +karman_re200,ppo,121,48.4,velocity,lower_ux,1.0859198570251465 +karman_re200,ppo,121,48.4,velocity,lower_uy,-0.394338458776474 +karman_re200,ppo,122,48.8,velocity,upper_ux,1.008843183517456 +karman_re200,ppo,122,48.8,velocity,upper_uy,-0.4091970920562744 +karman_re200,ppo,122,48.8,velocity,center_ux,0.9295168519020081 +karman_re200,ppo,122,48.8,velocity,center_uy,-0.8259519338607788 +karman_re200,ppo,122,48.8,velocity,lower_ux,0.9763461351394653 +karman_re200,ppo,122,48.8,velocity,lower_uy,-0.4230293333530426 +karman_re200,ppo,123,49.2,velocity,upper_ux,1.1107699871063232 +karman_re200,ppo,123,49.2,velocity,upper_uy,-0.39962464570999146 +karman_re200,ppo,123,49.2,velocity,center_ux,0.9653617143630981 +karman_re200,ppo,123,49.2,velocity,center_uy,-0.8687453269958496 +karman_re200,ppo,123,49.2,velocity,lower_ux,0.8759505748748779 +karman_re200,ppo,123,49.2,velocity,lower_uy,-0.39792391657829285 +karman_re200,ppo,124,49.6,velocity,upper_ux,1.1849254369735718 +karman_re200,ppo,124,49.6,velocity,upper_uy,-0.3299535810947418 +karman_re200,ppo,124,49.6,velocity,center_ux,1.0415794849395752 +karman_re200,ppo,124,49.6,velocity,center_uy,-0.9081287384033203 +karman_re200,ppo,124,49.6,velocity,lower_ux,0.7808458805084229 +karman_re200,ppo,124,49.6,velocity,lower_uy,-0.3111034631729126 +karman_re200,ppo,125,50.0,velocity,upper_ux,1.2015763521194458 +karman_re200,ppo,125,50.0,velocity,upper_uy,-0.20485462248325348 +karman_re200,ppo,125,50.0,velocity,center_ux,1.1314055919647217 +karman_re200,ppo,125,50.0,velocity,center_uy,-0.5478872060775757 +karman_re200,ppo,125,50.0,velocity,lower_ux,0.7138030529022217 +karman_re200,ppo,125,50.0,velocity,lower_uy,-0.16557958722114563 +karman_re200,ppo,126,50.4,velocity,upper_ux,1.1722586154937744 +karman_re200,ppo,126,50.4,velocity,upper_uy,-0.04153800010681152 +karman_re200,ppo,126,50.4,velocity,center_ux,1.1345617771148682 +karman_re200,ppo,126,50.4,velocity,center_uy,0.31289049983024597 +karman_re200,ppo,126,50.4,velocity,lower_ux,0.7112995982170105 +karman_re200,ppo,126,50.4,velocity,lower_uy,0.01351523119956255 +karman_re200,ppo,127,50.8,velocity,upper_ux,1.1586180925369263 +karman_re200,ppo,127,50.8,velocity,upper_uy,0.10647822171449661 +karman_re200,ppo,127,50.8,velocity,center_ux,1.0555717945098877 +karman_re200,ppo,127,50.8,velocity,center_uy,0.6944909691810608 +karman_re200,ppo,127,50.8,velocity,lower_ux,0.7542932033538818 +karman_re200,ppo,127,50.8,velocity,lower_uy,0.21546995639801025 +karman_re200,ppo,128,51.2,velocity,upper_ux,1.1055084466934204 +karman_re200,ppo,128,51.2,velocity,upper_uy,0.2387107014656067 +karman_re200,ppo,128,51.2,velocity,center_ux,0.9990457892417908 +karman_re200,ppo,128,51.2,velocity,center_uy,0.6991948485374451 +karman_re200,ppo,128,51.2,velocity,lower_ux,0.8281785845756531 +karman_re200,ppo,128,51.2,velocity,lower_uy,0.376775324344635 +karman_re200,ppo,129,51.6,velocity,upper_ux,1.0150420665740967 +karman_re200,ppo,129,51.6,velocity,upper_uy,0.3269404172897339 +karman_re200,ppo,129,51.6,velocity,center_ux,0.9706971645355225 +karman_re200,ppo,129,51.6,velocity,center_uy,0.7173230648040771 +karman_re200,ppo,129,51.6,velocity,lower_ux,0.9346304535865784 +karman_re200,ppo,129,51.6,velocity,lower_uy,0.445535808801651 +karman_re200,ppo,130,52.0,velocity,upper_ux,0.9217391014099121 +karman_re200,ppo,130,52.0,velocity,upper_uy,0.3402736186981201 +karman_re200,ppo,130,52.0,velocity,center_ux,0.9400444626808167 +karman_re200,ppo,130,52.0,velocity,center_uy,0.7290458083152771 +karman_re200,ppo,130,52.0,velocity,lower_ux,1.0338778495788574 +karman_re200,ppo,130,52.0,velocity,lower_uy,0.47963669896125793 +karman_re200,ppo,131,52.4,velocity,upper_ux,0.8322194814682007 +karman_re200,ppo,131,52.4,velocity,upper_uy,0.31203484535217285 +karman_re200,ppo,131,52.4,velocity,center_ux,0.8991004228591919 +karman_re200,ppo,131,52.4,velocity,center_uy,0.7620648145675659 +karman_re200,ppo,131,52.4,velocity,lower_ux,1.1268928050994873 +karman_re200,ppo,131,52.4,velocity,lower_uy,0.4763249456882477 +karman_re200,ppo,132,52.8,velocity,upper_ux,0.755583643913269 +karman_re200,ppo,132,52.8,velocity,upper_uy,0.23369793593883514 +karman_re200,ppo,132,52.8,velocity,center_ux,0.8321487903594971 +karman_re200,ppo,132,52.8,velocity,center_uy,0.782758355140686 +karman_re200,ppo,132,52.8,velocity,lower_ux,1.209722876548767 +karman_re200,ppo,132,52.8,velocity,lower_uy,0.4194018542766571 +karman_re200,ppo,133,53.2,velocity,upper_ux,0.7155246734619141 +karman_re200,ppo,133,53.2,velocity,upper_uy,0.12145620584487915 +karman_re200,ppo,133,53.2,velocity,center_ux,0.709614634513855 +karman_re200,ppo,133,53.2,velocity,center_uy,0.654329776763916 +karman_re200,ppo,133,53.2,velocity,lower_ux,1.2423272132873535 +karman_re200,ppo,133,53.2,velocity,lower_uy,0.2878015339374542 +karman_re200,ppo,134,53.6,velocity,upper_ux,0.7411101460456848 +karman_re200,ppo,134,53.6,velocity,upper_uy,-0.008444397710263729 +karman_re200,ppo,134,53.6,velocity,center_ux,0.6025437712669373 +karman_re200,ppo,134,53.6,velocity,center_uy,-0.02655324526131153 +karman_re200,ppo,134,53.6,velocity,lower_ux,1.1911988258361816 +karman_re200,ppo,134,53.6,velocity,lower_uy,0.04501568153500557 +karman_re200,ppo,135,54.0,velocity,upper_ux,0.787574291229248 +karman_re200,ppo,135,54.0,velocity,upper_uy,-0.1648503690958023 +karman_re200,ppo,135,54.0,velocity,center_ux,0.6643535494804382 +karman_re200,ppo,135,54.0,velocity,center_uy,-0.691134512424469 +karman_re200,ppo,135,54.0,velocity,lower_ux,1.176609992980957 +karman_re200,ppo,135,54.0,velocity,lower_uy,-0.15867984294891357 +karman_re200,ppo,136,54.4,velocity,upper_ux,0.8385658264160156 +karman_re200,ppo,136,54.4,velocity,upper_uy,-0.31386685371398926 +karman_re200,ppo,136,54.4,velocity,center_ux,0.7791642546653748 +karman_re200,ppo,136,54.4,velocity,center_uy,-0.817643404006958 +karman_re200,ppo,136,54.4,velocity,lower_ux,1.126928687095642 +karman_re200,ppo,136,54.4,velocity,lower_uy,-0.31527116894721985 +karman_re200,ppo,137,54.8,velocity,upper_ux,0.9289502501487732 +karman_re200,ppo,137,54.8,velocity,upper_uy,-0.3973711133003235 +karman_re200,ppo,137,54.8,velocity,center_ux,0.8363525867462158 +karman_re200,ppo,137,54.8,velocity,center_uy,-0.8117150664329529 +karman_re200,ppo,137,54.8,velocity,lower_ux,1.031915545463562 +karman_re200,ppo,137,54.8,velocity,lower_uy,-0.4214009940624237 +karman_re200,ppo,138,55.2,velocity,upper_ux,1.0293431282043457 +karman_re200,ppo,138,55.2,velocity,upper_uy,-0.43849027156829834 +karman_re200,ppo,138,55.2,velocity,center_ux,0.8561534285545349 +karman_re200,ppo,138,55.2,velocity,center_uy,-0.8300955891609192 +karman_re200,ppo,138,55.2,velocity,lower_ux,0.9350537657737732 +karman_re200,ppo,138,55.2,velocity,lower_uy,-0.4488712549209595 +karman_re200,ppo,139,55.6,velocity,upper_ux,1.1328420639038086 +karman_re200,ppo,139,55.6,velocity,upper_uy,-0.42915818095207214 +karman_re200,ppo,139,55.6,velocity,center_ux,0.8669904470443726 +karman_re200,ppo,139,55.6,velocity,center_uy,-0.8745542168617249 +karman_re200,ppo,139,55.6,velocity,lower_ux,0.8445056080818176 +karman_re200,ppo,139,55.6,velocity,lower_uy,-0.42493340373039246 +karman_re200,ppo,140,56.0,velocity,upper_ux,1.2153550386428833 +karman_re200,ppo,140,56.0,velocity,upper_uy,-0.34926995635032654 +karman_re200,ppo,140,56.0,velocity,center_ux,0.8708340525627136 +karman_re200,ppo,140,56.0,velocity,center_uy,-0.9353137016296387 +karman_re200,ppo,140,56.0,velocity,lower_ux,0.761605441570282 +karman_re200,ppo,140,56.0,velocity,lower_uy,-0.34089165925979614 +karman_re200,ppo,141,56.4,velocity,upper_ux,1.2360877990722656 +karman_re200,ppo,141,56.4,velocity,upper_uy,-0.1951492875814438 +karman_re200,ppo,141,56.4,velocity,center_ux,0.8559007048606873 +karman_re200,ppo,141,56.4,velocity,center_uy,-0.688571572303772 +karman_re200,ppo,141,56.4,velocity,lower_ux,0.6997952461242676 +karman_re200,ppo,141,56.4,velocity,lower_uy,-0.20760054886341095 +karman_re200,ppo,142,56.8,velocity,upper_ux,1.2581632137298584 +karman_re200,ppo,142,56.8,velocity,upper_uy,-0.029773013666272163 +karman_re200,ppo,142,56.8,velocity,center_ux,0.8749449253082275 +karman_re200,ppo,142,56.8,velocity,center_uy,0.20110537111759186 +karman_re200,ppo,142,56.8,velocity,lower_ux,0.6888144016265869 +karman_re200,ppo,142,56.8,velocity,lower_uy,-0.03644408658146858 +karman_re200,ppo,143,57.2,velocity,upper_ux,1.2483271360397339 +karman_re200,ppo,143,57.2,velocity,upper_uy,0.13838917016983032 +karman_re200,ppo,143,57.2,velocity,center_ux,0.9167866706848145 +karman_re200,ppo,143,57.2,velocity,center_uy,0.7574033141136169 +karman_re200,ppo,143,57.2,velocity,lower_ux,0.729337215423584 +karman_re200,ppo,143,57.2,velocity,lower_uy,0.14399176836013794 +karman_re200,ppo,144,57.6,velocity,upper_ux,1.1609433889389038 +karman_re200,ppo,144,57.6,velocity,upper_uy,0.30834996700286865 +karman_re200,ppo,144,57.6,velocity,center_ux,0.9433884620666504 +karman_re200,ppo,144,57.6,velocity,center_uy,0.7898967862129211 +karman_re200,ppo,144,57.6,velocity,lower_ux,0.7950167059898376 +karman_re200,ppo,144,57.6,velocity,lower_uy,0.3250797390937805 +karman_re200,ppo,145,58.0,velocity,upper_ux,1.0586786270141602 +karman_re200,ppo,145,58.0,velocity,upper_uy,0.40162989497184753 +karman_re200,ppo,145,58.0,velocity,center_ux,0.9612979292869568 +karman_re200,ppo,145,58.0,velocity,center_uy,0.796713650226593 +karman_re200,ppo,145,58.0,velocity,lower_ux,0.8973305225372314 +karman_re200,ppo,145,58.0,velocity,lower_uy,0.41344982385635376 +karman_re200,ppo,146,58.4,velocity,upper_ux,0.9494863152503967 +karman_re200,ppo,146,58.4,velocity,upper_uy,0.4174883961677551 +karman_re200,ppo,146,58.4,velocity,center_ux,0.9725235104560852 +karman_re200,ppo,146,58.4,velocity,center_uy,0.8029264211654663 +karman_re200,ppo,146,58.4,velocity,lower_ux,1.000171184539795 +karman_re200,ppo,146,58.4,velocity,lower_uy,0.45001325011253357 +karman_re200,ppo,147,58.8,velocity,upper_ux,0.8373034000396729 +karman_re200,ppo,147,58.8,velocity,upper_uy,0.3866935968399048 +karman_re200,ppo,147,58.8,velocity,center_ux,0.9867358207702637 +karman_re200,ppo,147,58.8,velocity,center_uy,0.8278583288192749 +karman_re200,ppo,147,58.8,velocity,lower_ux,1.0877941846847534 +karman_re200,ppo,147,58.8,velocity,lower_uy,0.44414234161376953 +karman_re200,ppo,148,59.2,velocity,upper_ux,0.7379729747772217 +karman_re200,ppo,148,59.2,velocity,upper_uy,0.2923104465007782 +karman_re200,ppo,148,59.2,velocity,center_ux,1.0368837118148804 +karman_re200,ppo,148,59.2,velocity,center_uy,0.8327099084854126 +karman_re200,ppo,148,59.2,velocity,lower_ux,1.1576611995697021 +karman_re200,ppo,148,59.2,velocity,lower_uy,0.38898083567619324 +karman_re200,ppo,149,59.6,velocity,upper_ux,0.6747370362281799 +karman_re200,ppo,149,59.6,velocity,upper_uy,0.14020855724811554 +karman_re200,ppo,149,59.6,velocity,center_ux,1.1219360828399658 +karman_re200,ppo,149,59.6,velocity,center_uy,0.6174259185791016 +karman_re200,ppo,149,59.6,velocity,lower_ux,1.1827837228775024 +karman_re200,ppo,149,59.6,velocity,lower_uy,0.2861238718032837 +karman_re200,ppo,150,60.0,velocity,upper_ux,0.688004732131958 +karman_re200,ppo,150,60.0,velocity,upper_uy,-0.04703584313392639 +karman_re200,ppo,150,60.0,velocity,center_ux,1.1186974048614502 +karman_re200,ppo,150,60.0,velocity,center_uy,-0.19162367284297943 +karman_re200,ppo,150,60.0,velocity,lower_ux,1.1079572439193726 +karman_re200,ppo,150,60.0,velocity,lower_uy,0.05807843059301376 +karman_re200,ppo,151,60.4,velocity,upper_ux,0.7650595307350159 +karman_re200,ppo,151,60.4,velocity,upper_uy,-0.21804967522621155 +karman_re200,ppo,151,60.4,velocity,center_ux,1.0365272760391235 +karman_re200,ppo,151,60.4,velocity,center_uy,-0.7346829771995544 +karman_re200,ppo,151,60.4,velocity,lower_ux,1.0380911827087402 +karman_re200,ppo,151,60.4,velocity,lower_uy,-0.17963264882564545 +karman_re200,ppo,152,60.8,velocity,upper_ux,0.8524230718612671 +karman_re200,ppo,152,60.8,velocity,upper_uy,-0.3625836968421936 +karman_re200,ppo,152,60.8,velocity,center_ux,0.9783313274383545 +karman_re200,ppo,152,60.8,velocity,center_uy,-0.7781132459640503 +karman_re200,ppo,152,60.8,velocity,lower_ux,1.0348100662231445 +karman_re200,ppo,152,60.8,velocity,lower_uy,-0.3070116341114044 +karman_re200,ppo,153,61.2,velocity,upper_ux,0.9574486017227173 +karman_re200,ppo,153,61.2,velocity,upper_uy,-0.4306601583957672 +karman_re200,ppo,153,61.2,velocity,center_ux,0.9440227746963501 +karman_re200,ppo,153,61.2,velocity,center_uy,-0.7725369930267334 +karman_re200,ppo,153,61.2,velocity,lower_ux,0.9733741283416748 +karman_re200,ppo,153,61.2,velocity,lower_uy,-0.3787291347980499 +karman_re200,ppo,154,61.6,velocity,upper_ux,1.0651369094848633 +karman_re200,ppo,154,61.6,velocity,upper_uy,-0.4539144039154053 +karman_re200,ppo,154,61.6,velocity,center_ux,0.9206156730651855 +karman_re200,ppo,154,61.6,velocity,center_uy,-0.7971317768096924 +karman_re200,ppo,154,61.6,velocity,lower_ux,0.894855260848999 +karman_re200,ppo,154,61.6,velocity,lower_uy,-0.3904966115951538 +karman_re200,ppo,155,62.0,velocity,upper_ux,1.1666557788848877 +karman_re200,ppo,155,62.0,velocity,upper_uy,-0.419998437166214 +karman_re200,ppo,155,62.0,velocity,center_ux,0.9027349948883057 +karman_re200,ppo,155,62.0,velocity,center_uy,-0.8457146286964417 +karman_re200,ppo,155,62.0,velocity,lower_ux,0.8177245259284973 +karman_re200,ppo,155,62.0,velocity,lower_uy,-0.3542647063732147 +karman_re200,ppo,156,62.4,velocity,upper_ux,1.2365965843200684 +karman_re200,ppo,156,62.4,velocity,upper_uy,-0.3168303966522217 +karman_re200,ppo,156,62.4,velocity,center_ux,0.875698983669281 +karman_re200,ppo,156,62.4,velocity,center_uy,-0.8691021800041199 +karman_re200,ppo,156,62.4,velocity,lower_ux,0.7532684206962585 +karman_re200,ppo,156,62.4,velocity,lower_uy,-0.26131153106689453 +karman_re200,ppo,157,62.8,velocity,upper_ux,1.243811011314392 +karman_re200,ppo,157,62.8,velocity,upper_uy,-0.15057072043418884 +karman_re200,ppo,157,62.8,velocity,center_ux,0.8407167792320251 +karman_re200,ppo,157,62.8,velocity,center_uy,-0.36339110136032104 +karman_re200,ppo,157,62.8,velocity,lower_ux,0.7188156247138977 +karman_re200,ppo,157,62.8,velocity,lower_uy,-0.1240229606628418 +karman_re200,ppo,158,63.2,velocity,upper_ux,1.2582900524139404 +karman_re200,ppo,158,63.2,velocity,upper_uy,0.009436852298676968 +karman_re200,ppo,158,63.2,velocity,center_ux,0.8595855236053467 +karman_re200,ppo,158,63.2,velocity,center_uy,0.49366965889930725 +karman_re200,ppo,158,63.2,velocity,lower_ux,0.7313666343688965 +karman_re200,ppo,158,63.2,velocity,lower_uy,0.044916167855262756 +karman_re200,ppo,159,63.6,velocity,upper_ux,1.2253819704055786 +karman_re200,ppo,159,63.6,velocity,upper_uy,0.16866590082645416 +karman_re200,ppo,159,63.6,velocity,center_ux,0.9043674468994141 +karman_re200,ppo,159,63.6,velocity,center_uy,0.7490123510360718 +karman_re200,ppo,159,63.6,velocity,lower_ux,0.7728365063667297 +karman_re200,ppo,159,63.6,velocity,lower_uy,0.23716072738170624 +karman_re200,ppo,160,64.0,velocity,upper_ux,1.1267393827438354 +karman_re200,ppo,160,64.0,velocity,upper_uy,0.3159608542919159 +karman_re200,ppo,160,64.0,velocity,center_ux,0.9254106879234314 +karman_re200,ppo,160,64.0,velocity,center_uy,0.7562076449394226 +karman_re200,ppo,160,64.0,velocity,lower_ux,0.8474781513214111 +karman_re200,ppo,160,64.0,velocity,lower_uy,0.3820838928222656 +karman_re200,ppo,161,64.4,velocity,upper_ux,1.020979881286621 +karman_re200,ppo,161,64.4,velocity,upper_uy,0.37884312868118286 +karman_re200,ppo,161,64.4,velocity,center_ux,0.9342498183250427 +karman_re200,ppo,161,64.4,velocity,center_uy,0.7796609997749329 +karman_re200,ppo,161,64.4,velocity,lower_ux,0.9519280195236206 +karman_re200,ppo,161,64.4,velocity,lower_uy,0.43680649995803833 +karman_re200,ppo,162,64.8,velocity,upper_ux,0.9128650426864624 +karman_re200,ppo,162,64.8,velocity,upper_uy,0.37616488337516785 +karman_re200,ppo,162,64.8,velocity,center_ux,0.9415546655654907 +karman_re200,ppo,162,64.8,velocity,center_uy,0.8061208128929138 +karman_re200,ppo,162,64.8,velocity,lower_ux,1.0536006689071655 +karman_re200,ppo,162,64.8,velocity,lower_uy,0.4631519019603729 +karman_re200,ppo,163,65.2,velocity,upper_ux,0.7987539172172546 +karman_re200,ppo,163,65.2,velocity,upper_uy,0.32433512806892395 +karman_re200,ppo,163,65.2,velocity,center_ux,0.9527180194854736 +karman_re200,ppo,163,65.2,velocity,center_uy,0.8312103748321533 +karman_re200,ppo,163,65.2,velocity,lower_ux,1.138320803642273 +karman_re200,ppo,163,65.2,velocity,lower_uy,0.43855541944503784 +karman_re200,ppo,164,65.6,velocity,upper_ux,0.6990544199943542 +karman_re200,ppo,164,65.6,velocity,upper_uy,0.22310949862003326 +karman_re200,ppo,164,65.6,velocity,center_ux,0.9770192503929138 +karman_re200,ppo,164,65.6,velocity,center_uy,0.8406459093093872 +karman_re200,ppo,164,65.6,velocity,lower_ux,1.1979482173919678 +karman_re200,ppo,164,65.6,velocity,lower_uy,0.3677593469619751 +karman_re200,ppo,165,66.0,velocity,upper_ux,0.657733678817749 +karman_re200,ppo,165,66.0,velocity,upper_uy,0.08314240723848343 +karman_re200,ppo,165,66.0,velocity,center_ux,0.9690060615539551 +karman_re200,ppo,165,66.0,velocity,center_uy,0.5137877464294434 +karman_re200,ppo,165,66.0,velocity,lower_ux,1.1932661533355713 +karman_re200,ppo,165,66.0,velocity,lower_uy,0.1994536966085434 +karman_re200,ppo,166,66.4,velocity,upper_ux,0.7054122686386108 +karman_re200,ppo,166,66.4,velocity,upper_uy,-0.0655980259180069 +karman_re200,ppo,166,66.4,velocity,center_ux,0.9249985218048096 +karman_re200,ppo,166,66.4,velocity,center_uy,-0.37292274832725525 +karman_re200,ppo,166,66.4,velocity,lower_ux,1.1526223421096802 +karman_re200,ppo,166,66.4,velocity,lower_uy,-0.04768485948443413 +karman_re200,ppo,167,66.8,velocity,upper_ux,0.7889007329940796 +karman_re200,ppo,167,66.8,velocity,upper_uy,-0.21231742203235626 +karman_re200,ppo,167,66.8,velocity,center_ux,0.9071251153945923 +karman_re200,ppo,167,66.8,velocity,center_uy,-0.8410213589668274 +karman_re200,ppo,167,66.8,velocity,lower_ux,1.1512207984924316 +karman_re200,ppo,167,66.8,velocity,lower_uy,-0.2222992330789566 +karman_re200,ppo,168,67.2,velocity,upper_ux,0.8769103288650513 +karman_re200,ppo,168,67.2,velocity,upper_uy,-0.3420688211917877 +karman_re200,ppo,168,67.2,velocity,center_ux,0.9157603979110718 +karman_re200,ppo,168,67.2,velocity,center_uy,-0.8557102084159851 +karman_re200,ppo,168,67.2,velocity,lower_ux,1.077986478805542 +karman_re200,ppo,168,67.2,velocity,lower_uy,-0.3655836880207062 +karman_re200,ppo,169,67.6,velocity,upper_ux,0.9777809977531433 +karman_re200,ppo,169,67.6,velocity,upper_uy,-0.3983408212661743 +karman_re200,ppo,169,67.6,velocity,center_ux,0.9288496971130371 +karman_re200,ppo,169,67.6,velocity,center_uy,-0.8447925448417664 +karman_re200,ppo,169,67.6,velocity,lower_ux,0.9714066982269287 +karman_re200,ppo,169,67.6,velocity,lower_uy,-0.4289895296096802 +karman_re200,ppo,170,68.0,velocity,upper_ux,1.077103853225708 +karman_re200,ppo,170,68.0,velocity,upper_uy,-0.4098862111568451 +karman_re200,ppo,170,68.0,velocity,center_ux,0.9617823958396912 +karman_re200,ppo,170,68.0,velocity,center_uy,-0.8741295337677002 +karman_re200,ppo,170,68.0,velocity,lower_ux,0.862581729888916 +karman_re200,ppo,170,68.0,velocity,lower_uy,-0.4313855469226837 +karman_re200,ppo,171,68.4,velocity,upper_ux,1.1616337299346924 +karman_re200,ppo,171,68.4,velocity,upper_uy,-0.36122798919677734 +karman_re200,ppo,171,68.4,velocity,center_ux,1.0455681085586548 +karman_re200,ppo,171,68.4,velocity,center_uy,-0.9303421974182129 +karman_re200,ppo,171,68.4,velocity,lower_ux,0.7569761872291565 +karman_re200,ppo,171,68.4,velocity,lower_uy,-0.36967480182647705 +karman_re200,ppo,172,68.8,velocity,upper_ux,1.2079339027404785 +karman_re200,ppo,172,68.8,velocity,upper_uy,-0.25773200392723083 +karman_re200,ppo,172,68.8,velocity,center_ux,1.1917295455932617 +karman_re200,ppo,172,68.8,velocity,center_uy,-0.7820110321044922 +karman_re200,ppo,172,68.8,velocity,lower_ux,0.6724220514297485 +karman_re200,ppo,172,68.8,velocity,lower_uy,-0.24081102013587952 +karman_re200,ppo,173,69.2,velocity,upper_ux,1.2076419591903687 +karman_re200,ppo,173,69.2,velocity,upper_uy,-0.10466013848781586 +karman_re200,ppo,173,69.2,velocity,center_ux,1.2689746618270874 +karman_re200,ppo,173,69.2,velocity,center_uy,0.005344382021576166 +karman_re200,ppo,173,69.2,velocity,lower_ux,0.6458615660667419 +karman_re200,ppo,173,69.2,velocity,lower_uy,-0.058409109711647034 +karman_re200,ppo,174,69.6,velocity,upper_ux,1.2073532342910767 +karman_re200,ppo,174,69.6,velocity,upper_uy,0.04939774423837662 +karman_re200,ppo,174,69.6,velocity,center_ux,1.1648367643356323 +karman_re200,ppo,174,69.6,velocity,center_uy,0.6212193965911865 +karman_re200,ppo,174,69.6,velocity,lower_ux,0.6890814900398254 +karman_re200,ppo,174,69.6,velocity,lower_uy,0.13513797521591187 +karman_re200,ppo,175,70.0,velocity,upper_ux,1.1487586498260498 +karman_re200,ppo,175,70.0,velocity,upper_uy,0.21333838999271393 +karman_re200,ppo,175,70.0,velocity,center_ux,1.0416769981384277 +karman_re200,ppo,175,70.0,velocity,center_uy,0.7059677839279175 +karman_re200,ppo,175,70.0,velocity,lower_ux,0.7643181085586548 +karman_re200,ppo,175,70.0,velocity,lower_uy,0.3209896385669708 +karman_re200,ppo,176,70.4,velocity,upper_ux,1.0475281476974487 +karman_re200,ppo,176,70.4,velocity,upper_uy,0.34250718355178833 +karman_re200,ppo,176,70.4,velocity,center_ux,0.9875997304916382 +karman_re200,ppo,176,70.4,velocity,center_uy,0.742781400680542 +karman_re200,ppo,176,70.4,velocity,lower_ux,0.8694323897361755 +karman_re200,ppo,176,70.4,velocity,lower_uy,0.4372234642505646 +karman_re200,ppo,177,70.8,velocity,upper_ux,0.955122709274292 +karman_re200,ppo,177,70.8,velocity,upper_uy,0.38038620352745056 +karman_re200,ppo,177,70.8,velocity,center_ux,0.9578666090965271 +karman_re200,ppo,177,70.8,velocity,center_uy,0.7618182897567749 +karman_re200,ppo,177,70.8,velocity,lower_ux,0.9836839437484741 +karman_re200,ppo,177,70.8,velocity,lower_uy,0.4777177572250366 +karman_re200,ppo,178,71.2,velocity,upper_ux,0.8714656233787537 +karman_re200,ppo,178,71.2,velocity,upper_uy,0.3712649941444397 +karman_re200,ppo,178,71.2,velocity,center_ux,0.9312574863433838 +karman_re200,ppo,178,71.2,velocity,center_uy,0.7992633581161499 +karman_re200,ppo,178,71.2,velocity,lower_ux,1.0914692878723145 +karman_re200,ppo,178,71.2,velocity,lower_uy,0.48910772800445557 +karman_re200,ppo,179,71.6,velocity,upper_ux,0.7928046584129333 +karman_re200,ppo,179,71.6,velocity,upper_uy,0.30605125427246094 +karman_re200,ppo,179,71.6,velocity,center_ux,0.8943561315536499 +karman_re200,ppo,179,71.6,velocity,center_uy,0.8393694162368774 +karman_re200,ppo,179,71.6,velocity,lower_ux,1.1823456287384033 +karman_re200,ppo,179,71.6,velocity,lower_uy,0.44153523445129395 +karman_re200,ppo,180,72.0,velocity,upper_ux,0.7292399406433105 +karman_re200,ppo,180,72.0,velocity,upper_uy,0.1937393695116043 +karman_re200,ppo,180,72.0,velocity,center_ux,0.8191863298416138 +karman_re200,ppo,180,72.0,velocity,center_uy,0.8058266639709473 +karman_re200,ppo,180,72.0,velocity,lower_ux,1.2292659282684326 +karman_re200,ppo,180,72.0,velocity,lower_uy,0.33568042516708374 +karman_re200,ppo,181,72.4,velocity,upper_ux,0.7123430371284485 +karman_re200,ppo,181,72.4,velocity,upper_uy,0.044867485761642456 +karman_re200,ppo,181,72.4,velocity,center_ux,0.7350703477859497 +karman_re200,ppo,181,72.4,velocity,center_uy,0.16299214959144592 +karman_re200,ppo,181,72.4,velocity,lower_ux,1.1922258138656616 +karman_re200,ppo,181,72.4,velocity,lower_uy,0.1140357032418251 +karman_re200,ppo,182,72.8,velocity,upper_ux,0.7476986646652222 +karman_re200,ppo,182,72.8,velocity,upper_uy,-0.11927159130573273 +karman_re200,ppo,182,72.8,velocity,center_ux,0.7675575017929077 +karman_re200,ppo,182,72.8,velocity,center_uy,-0.6510204076766968 +karman_re200,ppo,182,72.8,velocity,lower_ux,1.1745755672454834 +karman_re200,ppo,182,72.8,velocity,lower_uy,-0.10581845045089722 +karman_re200,ppo,183,73.2,velocity,upper_ux,0.810039758682251 +karman_re200,ppo,183,73.2,velocity,upper_uy,-0.2821783125400543 +karman_re200,ppo,183,73.2,velocity,center_ux,0.8544793725013733 +karman_re200,ppo,183,73.2,velocity,center_uy,-0.8219770789146423 +karman_re200,ppo,183,73.2,velocity,lower_ux,1.147422432899475 +karman_re200,ppo,183,73.2,velocity,lower_uy,-0.27120280265808105 +karman_re200,ppo,184,73.6,velocity,upper_ux,0.9084850549697876 +karman_re200,ppo,184,73.6,velocity,upper_uy,-0.38084346055984497 +karman_re200,ppo,184,73.6,velocity,center_ux,0.9013497829437256 +karman_re200,ppo,184,73.6,velocity,center_uy,-0.8283351063728333 +karman_re200,ppo,184,73.6,velocity,lower_ux,1.0549952983856201 +karman_re200,ppo,184,73.6,velocity,lower_uy,-0.4043518900871277 +karman_re200,ppo,185,74.0,velocity,upper_ux,1.011812686920166 +karman_re200,ppo,185,74.0,velocity,upper_uy,-0.41907691955566406 +karman_re200,ppo,185,74.0,velocity,center_ux,0.9276590943336487 +karman_re200,ppo,185,74.0,velocity,center_uy,-0.8482109904289246 +karman_re200,ppo,185,74.0,velocity,lower_ux,0.9439654350280762 +karman_re200,ppo,185,74.0,velocity,lower_uy,-0.45092064142227173 +karman_re200,ppo,186,74.4,velocity,upper_ux,1.1088297367095947 +karman_re200,ppo,186,74.4,velocity,upper_uy,-0.41497093439102173 +karman_re200,ppo,186,74.4,velocity,center_ux,0.9686300754547119 +karman_re200,ppo,186,74.4,velocity,center_uy,-0.8831239342689514 +karman_re200,ppo,186,74.4,velocity,lower_ux,0.8314252495765686 +karman_re200,ppo,186,74.4,velocity,lower_uy,-0.43886107206344604 +karman_re200,ppo,187,74.8,velocity,upper_ux,1.187727451324463 +karman_re200,ppo,187,74.8,velocity,upper_uy,-0.3479991555213928 +karman_re200,ppo,187,74.8,velocity,center_ux,1.0582078695297241 +karman_re200,ppo,187,74.8,velocity,center_uy,-0.9474495649337769 +karman_re200,ppo,187,74.8,velocity,lower_ux,0.7253801822662354 +karman_re200,ppo,187,74.8,velocity,lower_uy,-0.35748547315597534 +karman_re200,ppo,188,75.2,velocity,upper_ux,1.21766996383667 +karman_re200,ppo,188,75.2,velocity,upper_uy,-0.22240018844604492 +karman_re200,ppo,188,75.2,velocity,center_ux,1.1971745491027832 +karman_re200,ppo,188,75.2,velocity,center_uy,-0.6715922355651855 +karman_re200,ppo,188,75.2,velocity,lower_ux,0.6485864520072937 +karman_re200,ppo,188,75.2,velocity,lower_uy,-0.21300853788852692 +karman_re200,ppo,189,75.6,velocity,upper_ux,1.2181212902069092 +karman_re200,ppo,189,75.6,velocity,upper_uy,-0.06098981946706772 +karman_re200,ppo,189,75.6,velocity,center_ux,1.2499597072601318 +karman_re200,ppo,189,75.6,velocity,center_uy,0.20246952772140503 +karman_re200,ppo,189,75.6,velocity,lower_ux,0.6413427591323853 +karman_re200,ppo,189,75.6,velocity,lower_uy,-0.02290765941143036 +karman_re200,ppo,190,76.0,velocity,upper_ux,1.2145109176635742 +karman_re200,ppo,190,76.0,velocity,upper_uy,0.09347561001777649 +karman_re200,ppo,190,76.0,velocity,center_ux,1.1449687480926514 +karman_re200,ppo,190,76.0,velocity,center_uy,0.6949062347412109 +karman_re200,ppo,190,76.0,velocity,lower_ux,0.7047587633132935 +karman_re200,ppo,190,76.0,velocity,lower_uy,0.1647253781557083 +karman_re200,ppo,191,76.4,velocity,upper_ux,1.1363388299942017 +karman_re200,ppo,191,76.4,velocity,upper_uy,0.25789448618888855 +karman_re200,ppo,191,76.4,velocity,center_ux,1.0431244373321533 +karman_re200,ppo,191,76.4,velocity,center_uy,0.7289893627166748 +karman_re200,ppo,191,76.4,velocity,lower_ux,0.7854281067848206 +karman_re200,ppo,191,76.4,velocity,lower_uy,0.35068878531455994 +karman_re200,ppo,192,76.8,velocity,upper_ux,1.0352579355239868 +karman_re200,ppo,192,76.8,velocity,upper_uy,0.36144381761550903 +karman_re200,ppo,192,76.8,velocity,center_ux,1.0008612871170044 +karman_re200,ppo,192,76.8,velocity,center_uy,0.7568223476409912 +karman_re200,ppo,192,76.8,velocity,lower_ux,0.8918008208274841 +karman_re200,ppo,192,76.8,velocity,lower_uy,0.44751647114753723 +karman_re200,ppo,193,77.2,velocity,upper_ux,0.9389467835426331 +karman_re200,ppo,193,77.2,velocity,upper_uy,0.38062745332717896 +karman_re200,ppo,193,77.2,velocity,center_ux,0.9773090481758118 +karman_re200,ppo,193,77.2,velocity,center_uy,0.7696014642715454 +karman_re200,ppo,193,77.2,velocity,lower_ux,1.0004578828811646 +karman_re200,ppo,193,77.2,velocity,lower_uy,0.48062846064567566 +karman_re200,ppo,194,77.6,velocity,upper_ux,0.8449117541313171 +karman_re200,ppo,194,77.6,velocity,upper_uy,0.3571150302886963 +karman_re200,ppo,194,77.6,velocity,center_ux,0.9606884121894836 +karman_re200,ppo,194,77.6,velocity,center_uy,0.8034927248954773 +karman_re200,ppo,194,77.6,velocity,lower_ux,1.0989936590194702 +karman_re200,ppo,194,77.6,velocity,lower_uy,0.4821568727493286 +karman_re200,ppo,195,78.0,velocity,upper_ux,0.7588147521018982 +karman_re200,ppo,195,78.0,velocity,upper_uy,0.27470698952674866 +karman_re200,ppo,195,78.0,velocity,center_ux,0.9526289105415344 +karman_re200,ppo,195,78.0,velocity,center_uy,0.8252508640289307 +karman_re200,ppo,195,78.0,velocity,lower_ux,1.1827536821365356 +karman_re200,ppo,195,78.0,velocity,lower_uy,0.43030306696891785 +karman_re200,ppo,196,78.4,velocity,upper_ux,0.6952923536300659 +karman_re200,ppo,196,78.4,velocity,upper_uy,0.14557795226573944 +karman_re200,ppo,196,78.4,velocity,center_ux,0.9303237795829773 +karman_re200,ppo,196,78.4,velocity,center_uy,0.7350705862045288 +karman_re200,ppo,196,78.4,velocity,lower_ux,1.2236348390579224 +karman_re200,ppo,196,78.4,velocity,lower_uy,0.3289065659046173 +karman_re200,ppo,197,78.8,velocity,upper_ux,0.6924348473548889 +karman_re200,ppo,197,78.8,velocity,upper_uy,-0.014489153400063515 +karman_re200,ppo,197,78.8,velocity,center_ux,0.8653651475906372 +karman_re200,ppo,197,78.8,velocity,center_uy,0.038694970309734344 +karman_re200,ppo,197,78.8,velocity,lower_ux,1.170384168624878 +karman_re200,ppo,197,78.8,velocity,lower_uy,0.1004960834980011 +karman_re200,ppo,198,79.2,velocity,upper_ux,0.7499921917915344 +karman_re200,ppo,198,79.2,velocity,upper_uy,-0.17057685554027557 +karman_re200,ppo,198,79.2,velocity,center_ux,0.8457990288734436 +karman_re200,ppo,198,79.2,velocity,center_uy,-0.704712986946106 +karman_re200,ppo,198,79.2,velocity,lower_ux,1.1208244562149048 +karman_re200,ppo,198,79.2,velocity,lower_uy,-0.1395891159772873 +karman_re200,ppo,199,79.6,velocity,upper_ux,0.8236847519874573 +karman_re200,ppo,199,79.6,velocity,upper_uy,-0.3213154971599579 +karman_re200,ppo,199,79.6,velocity,center_ux,0.8759457468986511 +karman_re200,ppo,199,79.6,velocity,center_uy,-0.8435590863227844 +karman_re200,ppo,199,79.6,velocity,lower_ux,1.0918651819229126 +karman_re200,ppo,199,79.6,velocity,lower_uy,-0.3051643669605255 +karman_re200,ppo,200,80.0,velocity,upper_ux,0.9282611608505249 +karman_re200,ppo,200,80.0,velocity,upper_uy,-0.4053441882133484 +karman_re200,ppo,200,80.0,velocity,center_ux,0.8966171145439148 +karman_re200,ppo,200,80.0,velocity,center_uy,-0.8341055512428284 +karman_re200,ppo,200,80.0,velocity,lower_ux,1.012864351272583 +karman_re200,ppo,200,80.0,velocity,lower_uy,-0.4184473752975464 +karman_re200,ppo,201,80.4,velocity,upper_ux,1.0373756885528564 +karman_re200,ppo,201,80.4,velocity,upper_uy,-0.44092777371406555 +karman_re200,ppo,201,80.4,velocity,center_ux,0.9077240228652954 +karman_re200,ppo,201,80.4,velocity,center_uy,-0.8542250990867615 +karman_re200,ppo,201,80.4,velocity,lower_ux,0.9211418032646179 +karman_re200,ppo,201,80.4,velocity,lower_uy,-0.45073309540748596 +karman_re200,ppo,202,80.8,velocity,upper_ux,1.1387276649475098 +karman_re200,ppo,202,80.8,velocity,upper_uy,-0.4232065975666046 +karman_re200,ppo,202,80.8,velocity,center_ux,0.9251682758331299 +karman_re200,ppo,202,80.8,velocity,center_uy,-0.902601420879364 +karman_re200,ppo,202,80.8,velocity,lower_ux,0.8251073956489563 +karman_re200,ppo,202,80.8,velocity,lower_uy,-0.42638641595840454 +karman_re200,ppo,203,81.2,velocity,upper_ux,1.2131636142730713 +karman_re200,ppo,203,81.2,velocity,upper_uy,-0.33821797370910645 +karman_re200,ppo,203,81.2,velocity,center_ux,0.9620999693870544 +karman_re200,ppo,203,81.2,velocity,center_uy,-0.9767035841941833 +karman_re200,ppo,203,81.2,velocity,lower_ux,0.7341228723526001 +karman_re200,ppo,203,81.2,velocity,lower_uy,-0.3376091420650482 +karman_re200,ppo,204,81.6,velocity,upper_ux,1.2286280393600464 +karman_re200,ppo,204,81.6,velocity,upper_uy,-0.18720215559005737 +karman_re200,ppo,204,81.6,velocity,center_ux,1.0193699598312378 +karman_re200,ppo,204,81.6,velocity,center_uy,-0.6063331365585327 +karman_re200,ppo,204,81.6,velocity,lower_ux,0.672940194606781 +karman_re200,ppo,204,81.6,velocity,lower_uy,-0.19346298277378082 +karman_re200,ppo,205,82.0,velocity,upper_ux,1.2415026426315308 +karman_re200,ppo,205,82.0,velocity,upper_uy,-0.026041846722364426 +karman_re200,ppo,205,82.0,velocity,center_ux,1.0555357933044434 +karman_re200,ppo,205,82.0,velocity,center_uy,0.3351263105869293 +karman_re200,ppo,205,82.0,velocity,lower_ux,0.6734952330589294 +karman_re200,ppo,205,82.0,velocity,lower_uy,-0.010840964503586292 +karman_re200,ppo,206,82.4,velocity,upper_ux,1.2329963445663452 +karman_re200,ppo,206,82.4,velocity,upper_uy,0.13080233335494995 +karman_re200,ppo,206,82.4,velocity,center_ux,1.030556559562683 +karman_re200,ppo,206,82.4,velocity,center_uy,0.7656266093254089 +karman_re200,ppo,206,82.4,velocity,lower_ux,0.7313681840896606 +karman_re200,ppo,206,82.4,velocity,lower_uy,0.175680011510849 +karman_re200,ppo,207,82.8,velocity,upper_ux,1.1445043087005615 +karman_re200,ppo,207,82.8,velocity,upper_uy,0.2922394275665283 +karman_re200,ppo,207,82.8,velocity,center_ux,0.9993945956230164 +karman_re200,ppo,207,82.8,velocity,center_uy,0.7705097198486328 +karman_re200,ppo,207,82.8,velocity,lower_ux,0.8069126009941101 +karman_re200,ppo,207,82.8,velocity,lower_uy,0.35976725816726685 +karman_re200,ppo,208,83.2,velocity,upper_ux,1.0371567010879517 +karman_re200,ppo,208,83.2,velocity,upper_uy,0.3765600919723511 +karman_re200,ppo,208,83.2,velocity,center_ux,0.987265408039093 +karman_re200,ppo,208,83.2,velocity,center_uy,0.7867864966392517 +karman_re200,ppo,208,83.2,velocity,lower_ux,0.9109306335449219 +karman_re200,ppo,208,83.2,velocity,lower_uy,0.43803179264068604 +karman_re200,ppo,209,83.6,velocity,upper_ux,0.9262155890464783 +karman_re200,ppo,209,83.6,velocity,upper_uy,0.3879914879798889 +karman_re200,ppo,209,83.6,velocity,center_ux,0.9855025410652161 +karman_re200,ppo,209,83.6,velocity,center_uy,0.801768958568573 +karman_re200,ppo,209,83.6,velocity,lower_ux,1.015188455581665 +karman_re200,ppo,209,83.6,velocity,lower_uy,0.46848469972610474 +karman_re200,ppo,210,84.0,velocity,upper_ux,0.8121060132980347 +karman_re200,ppo,210,84.0,velocity,upper_uy,0.35362473130226135 +karman_re200,ppo,210,84.0,velocity,center_ux,0.9995822906494141 +karman_re200,ppo,210,84.0,velocity,center_uy,0.8304743766784668 +karman_re200,ppo,210,84.0,velocity,lower_ux,1.1048531532287598 +karman_re200,ppo,210,84.0,velocity,lower_uy,0.45589545369148254 +karman_re200,ppo,211,84.4,velocity,upper_ux,0.7090626358985901 +karman_re200,ppo,211,84.4,velocity,upper_uy,0.26136401295661926 +karman_re200,ppo,211,84.4,velocity,center_ux,1.0573856830596924 +karman_re200,ppo,211,84.4,velocity,center_uy,0.8324000835418701 +karman_re200,ppo,211,84.4,velocity,lower_ux,1.1754090785980225 +karman_re200,ppo,211,84.4,velocity,lower_uy,0.39856478571891785 +karman_re200,ppo,212,84.8,velocity,upper_ux,0.6460031270980835 +karman_re200,ppo,212,84.8,velocity,upper_uy,0.11488503217697144 +karman_re200,ppo,212,84.8,velocity,center_ux,1.1312320232391357 +karman_re200,ppo,212,84.8,velocity,center_uy,0.6177434921264648 +karman_re200,ppo,212,84.8,velocity,lower_ux,1.2014232873916626 +karman_re200,ppo,212,84.8,velocity,lower_uy,0.29252588748931885 +karman_re200,ppo,213,85.2,velocity,upper_ux,0.6634053587913513 +karman_re200,ppo,213,85.2,velocity,upper_uy,-0.05937672778964043 +karman_re200,ppo,213,85.2,velocity,center_ux,1.101579189300537 +karman_re200,ppo,213,85.2,velocity,center_uy,-0.1984146535396576 +karman_re200,ppo,213,85.2,velocity,lower_ux,1.130981683731079 +karman_re200,ppo,213,85.2,velocity,lower_uy,0.06609928607940674 +karman_re200,ppo,214,85.6,velocity,upper_ux,0.7475398778915405 +karman_re200,ppo,214,85.6,velocity,upper_uy,-0.21371254324913025 +karman_re200,ppo,214,85.6,velocity,center_ux,1.0063118934631348 +karman_re200,ppo,214,85.6,velocity,center_uy,-0.7595644593238831 +karman_re200,ppo,214,85.6,velocity,lower_ux,1.070686936378479 +karman_re200,ppo,214,85.6,velocity,lower_uy,-0.16374601423740387 +karman_re200,ppo,215,86.0,velocity,upper_ux,0.8393186926841736 +karman_re200,ppo,215,86.0,velocity,upper_uy,-0.3574751615524292 +karman_re200,ppo,215,86.0,velocity,center_ux,0.949674129486084 +karman_re200,ppo,215,86.0,velocity,center_uy,-0.8148308396339417 +karman_re200,ppo,215,86.0,velocity,lower_ux,1.0448253154754639 +karman_re200,ppo,215,86.0,velocity,lower_uy,-0.3144024610519409 +karman_re200,ppo,216,86.4,velocity,upper_ux,0.9493104815483093 +karman_re200,ppo,216,86.4,velocity,upper_uy,-0.428900808095932 +karman_re200,ppo,216,86.4,velocity,center_ux,0.9263512492179871 +karman_re200,ppo,216,86.4,velocity,center_uy,-0.8073921799659729 +karman_re200,ppo,216,86.4,velocity,lower_ux,0.9719119071960449 +karman_re200,ppo,216,86.4,velocity,lower_uy,-0.4003676474094391 +karman_re200,ppo,217,86.8,velocity,upper_ux,1.0618634223937988 +karman_re200,ppo,217,86.8,velocity,upper_uy,-0.4584062695503235 +karman_re200,ppo,217,86.8,velocity,center_ux,0.9183337688446045 +karman_re200,ppo,217,86.8,velocity,center_uy,-0.8361145853996277 +karman_re200,ppo,217,86.8,velocity,lower_ux,0.8890565633773804 +karman_re200,ppo,217,86.8,velocity,lower_uy,-0.41931283473968506 +karman_re200,ppo,218,87.2,velocity,upper_ux,1.163618564605713 +karman_re200,ppo,218,87.2,velocity,upper_uy,-0.42840850353240967 +karman_re200,ppo,218,87.2,velocity,center_ux,0.9201158881187439 +karman_re200,ppo,218,87.2,velocity,center_uy,-0.882213830947876 +karman_re200,ppo,218,87.2,velocity,lower_ux,0.8015598058700562 +karman_re200,ppo,218,87.2,velocity,lower_uy,-0.38292017579078674 +karman_re200,ppo,219,87.6,velocity,upper_ux,1.2324460744857788 +karman_re200,ppo,219,87.6,velocity,upper_uy,-0.33252274990081787 +karman_re200,ppo,219,87.6,velocity,center_ux,0.9243142008781433 +karman_re200,ppo,219,87.6,velocity,center_uy,-0.938277006149292 +karman_re200,ppo,219,87.6,velocity,lower_ux,0.7203631401062012 +karman_re200,ppo,219,87.6,velocity,lower_uy,-0.2894699275493622 +karman_re200,ppo,220,88.0,velocity,upper_ux,1.2477905750274658 +karman_re200,ppo,220,88.0,velocity,upper_uy,-0.16684141755104065 +karman_re200,ppo,220,88.0,velocity,center_ux,0.9302492737770081 +karman_re200,ppo,220,88.0,velocity,center_uy,-0.4814468026161194 +karman_re200,ppo,220,88.0,velocity,lower_ux,0.6731092929840088 +karman_re200,ppo,220,88.0,velocity,lower_uy,-0.14492769539356232 +karman_re200,ppo,221,88.4,velocity,upper_ux,1.2719602584838867 +karman_re200,ppo,221,88.4,velocity,upper_uy,-0.0022349939681589603 +karman_re200,ppo,221,88.4,velocity,center_ux,0.9440760016441345 +karman_re200,ppo,221,88.4,velocity,center_uy,0.4434194564819336 +karman_re200,ppo,221,88.4,velocity,lower_ux,0.683722972869873 +karman_re200,ppo,221,88.4,velocity,lower_uy,0.028561124578118324 +karman_re200,ppo,222,88.8,velocity,upper_ux,1.2346410751342773 +karman_re200,ppo,222,88.8,velocity,upper_uy,0.1787952035665512 +karman_re200,ppo,222,88.8,velocity,center_ux,0.9519835710525513 +karman_re200,ppo,222,88.8,velocity,center_uy,0.8003348708152771 +karman_re200,ppo,222,88.8,velocity,lower_ux,0.7428705096244812 +karman_re200,ppo,222,88.8,velocity,lower_uy,0.20426708459854126 +karman_re200,ppo,223,89.2,velocity,upper_ux,1.135982632637024 +karman_re200,ppo,223,89.2,velocity,upper_uy,0.3451288640499115 +karman_re200,ppo,223,89.2,velocity,center_ux,0.9585034251213074 +karman_re200,ppo,223,89.2,velocity,center_uy,0.8030338287353516 +karman_re200,ppo,223,89.2,velocity,lower_ux,0.8268418908119202 +karman_re200,ppo,223,89.2,velocity,lower_uy,0.364451140165329 +karman_re200,ppo,224,89.6,velocity,upper_ux,1.0204250812530518 +karman_re200,ppo,224,89.6,velocity,upper_uy,0.4180048704147339 +karman_re200,ppo,224,89.6,velocity,center_ux,0.9699482917785645 +karman_re200,ppo,224,89.6,velocity,center_uy,0.8189653158187866 +karman_re200,ppo,224,89.6,velocity,lower_ux,0.9331300258636475 +karman_re200,ppo,224,89.6,velocity,lower_uy,0.4258786737918854 +karman_re200,ppo,225,90.0,velocity,upper_ux,0.897078275680542 +karman_re200,ppo,225,90.0,velocity,upper_uy,0.42345771193504333 +karman_re200,ppo,225,90.0,velocity,center_ux,0.9934232831001282 +karman_re200,ppo,225,90.0,velocity,center_uy,0.8400865197181702 +karman_re200,ppo,225,90.0,velocity,lower_ux,1.0335346460342407 +karman_re200,ppo,225,90.0,velocity,lower_uy,0.4512839913368225 +karman_re200,ppo,226,90.4,velocity,upper_ux,0.7712334394454956 +karman_re200,ppo,226,90.4,velocity,upper_uy,0.3738771677017212 +karman_re200,ppo,226,90.4,velocity,center_ux,1.0517162084579468 +karman_re200,ppo,226,90.4,velocity,center_uy,0.8513185381889343 +karman_re200,ppo,226,90.4,velocity,lower_ux,1.1168391704559326 +karman_re200,ppo,226,90.4,velocity,lower_uy,0.42366936802864075 +karman_re200,ppo,227,90.8,velocity,upper_ux,0.6594134569168091 +karman_re200,ppo,227,90.8,velocity,upper_uy,0.26097628474235535 +karman_re200,ppo,227,90.8,velocity,center_ux,1.1831490993499756 +karman_re200,ppo,227,90.8,velocity,center_uy,0.8254917860031128 +karman_re200,ppo,227,90.8,velocity,lower_ux,1.1750563383102417 +karman_re200,ppo,227,90.8,velocity,lower_uy,0.35935819149017334 +karman_re200,ppo,228,91.2,velocity,upper_ux,0.6050015687942505 +karman_re200,ppo,228,91.2,velocity,upper_uy,0.08217965066432953 +karman_re200,ppo,228,91.2,velocity,center_ux,1.306791067123413 +karman_re200,ppo,228,91.2,velocity,center_uy,0.40094971656799316 +karman_re200,ppo,228,91.2,velocity,lower_ux,1.1793957948684692 +karman_re200,ppo,228,91.2,velocity,lower_uy,0.2297266721725464 +karman_re200,ppo,229,91.6,velocity,upper_ux,0.649889349937439 +karman_re200,ppo,229,91.6,velocity,upper_uy,-0.11057733744382858 +karman_re200,ppo,229,91.6,velocity,center_ux,1.2412952184677124 +karman_re200,ppo,229,91.6,velocity,center_uy,-0.43584969639778137 +karman_re200,ppo,229,91.6,velocity,lower_ux,1.094744086265564 +karman_re200,ppo,229,91.6,velocity,lower_uy,-0.010591750964522362 +karman_re200,ppo,230,92.0,velocity,upper_ux,0.7582734823226929 +karman_re200,ppo,230,92.0,velocity,upper_uy,-0.26472601294517517 +karman_re200,ppo,230,92.0,velocity,center_ux,1.0886222124099731 +karman_re200,ppo,230,92.0,velocity,center_uy,-0.7662359476089478 +karman_re200,ppo,230,92.0,velocity,lower_ux,1.0550326108932495 +karman_re200,ppo,230,92.0,velocity,lower_uy,-0.20407193899154663 +karman_re200,ppo,231,92.4,velocity,upper_ux,0.8672016859054565 +karman_re200,ppo,231,92.4,velocity,upper_uy,-0.3915981352329254 +karman_re200,ppo,231,92.4,velocity,center_ux,1.0020939111709595 +karman_re200,ppo,231,92.4,velocity,center_uy,-0.7746427655220032 +karman_re200,ppo,231,92.4,velocity,lower_ux,1.0210658311843872 +karman_re200,ppo,231,92.4,velocity,lower_uy,-0.3259071707725525 +karman_re200,ppo,232,92.8,velocity,upper_ux,0.9815183877944946 +karman_re200,ppo,232,92.8,velocity,upper_uy,-0.44281813502311707 +karman_re200,ppo,232,92.8,velocity,center_ux,0.9647615551948547 +karman_re200,ppo,232,92.8,velocity,center_uy,-0.7838988304138184 +karman_re200,ppo,232,92.8,velocity,lower_ux,0.9428565502166748 +karman_re200,ppo,232,92.8,velocity,lower_uy,-0.383689284324646 +karman_re200,ppo,233,93.2,velocity,upper_ux,1.0919746160507202 +karman_re200,ppo,233,93.2,velocity,upper_uy,-0.4541354477405548 +karman_re200,ppo,233,93.2,velocity,center_ux,0.9531111121177673 +karman_re200,ppo,233,93.2,velocity,center_uy,-0.8232232928276062 +karman_re200,ppo,233,93.2,velocity,lower_ux,0.8582453727722168 +karman_re200,ppo,233,93.2,velocity,lower_uy,-0.3884667158126831 +karman_re200,ppo,234,93.6,velocity,upper_ux,1.1883418560028076 +karman_re200,ppo,234,93.6,velocity,upper_uy,-0.4043275713920593 +karman_re200,ppo,234,93.6,velocity,center_ux,0.9664888978004456 +karman_re200,ppo,234,93.6,velocity,center_uy,-0.8800479769706726 +karman_re200,ppo,234,93.6,velocity,lower_ux,0.7741467356681824 +karman_re200,ppo,234,93.6,velocity,lower_uy,-0.3368884325027466 +karman_re200,ppo,235,94.0,velocity,upper_ux,1.240705132484436 +karman_re200,ppo,235,94.0,velocity,upper_uy,-0.29369056224823 +karman_re200,ppo,235,94.0,velocity,center_ux,0.9934396147727966 +karman_re200,ppo,235,94.0,velocity,center_uy,-0.8449963927268982 +karman_re200,ppo,235,94.0,velocity,lower_ux,0.7014982104301453 +karman_re200,ppo,235,94.0,velocity,lower_uy,-0.22887523472309113 +karman_re200,ppo,236,94.4,velocity,upper_ux,1.2388230562210083 +karman_re200,ppo,236,94.4,velocity,upper_uy,-0.12176822870969772 +karman_re200,ppo,236,94.4,velocity,center_ux,1.0130695104599 +karman_re200,ppo,236,94.4,velocity,center_uy,-0.14156155288219452 +karman_re200,ppo,236,94.4,velocity,lower_ux,0.6727014780044556 +karman_re200,ppo,236,94.4,velocity,lower_uy,-0.07284240424633026 +karman_re200,ppo,237,94.8,velocity,upper_ux,1.2471543550491333 +karman_re200,ppo,237,94.8,velocity,upper_uy,0.04089297354221344 +karman_re200,ppo,237,94.8,velocity,center_ux,0.9960250854492188 +karman_re200,ppo,237,94.8,velocity,center_uy,0.6262620687484741 +karman_re200,ppo,237,94.8,velocity,lower_ux,0.704906165599823 +karman_re200,ppo,237,94.8,velocity,lower_uy,0.09878754615783691 +karman_re200,ppo,238,95.2,velocity,upper_ux,1.1925511360168457 +karman_re200,ppo,238,95.2,velocity,upper_uy,0.21557991206645966 +karman_re200,ppo,238,95.2,velocity,center_ux,0.9670464992523193 +karman_re200,ppo,238,95.2,velocity,center_uy,0.7636424899101257 +karman_re200,ppo,238,95.2,velocity,lower_ux,0.7692666053771973 +karman_re200,ppo,238,95.2,velocity,lower_uy,0.27752208709716797 +karman_re200,ppo,239,95.6,velocity,upper_ux,1.0920171737670898 +karman_re200,ppo,239,95.6,velocity,upper_uy,0.35958921909332275 +karman_re200,ppo,239,95.6,velocity,center_ux,0.9558202624320984 +karman_re200,ppo,239,95.6,velocity,center_uy,0.7710512280464172 +karman_re200,ppo,239,95.6,velocity,lower_ux,0.8663322925567627 +karman_re200,ppo,239,95.6,velocity,lower_uy,0.40227389335632324 +karman_re200,ppo,240,96.0,velocity,upper_ux,0.9897451996803284 +karman_re200,ppo,240,96.0,velocity,upper_uy,0.40940117835998535 +karman_re200,ppo,240,96.0,velocity,center_ux,0.9498070478439331 +karman_re200,ppo,240,96.0,velocity,center_uy,0.7895124554634094 +karman_re200,ppo,240,96.0,velocity,lower_ux,0.9782376289367676 +karman_re200,ppo,240,96.0,velocity,lower_uy,0.44928309321403503 +karman_re200,ppo,241,96.4,velocity,upper_ux,0.8898397088050842 +karman_re200,ppo,241,96.4,velocity,upper_uy,0.40258193016052246 +karman_re200,ppo,241,96.4,velocity,center_ux,0.941131591796875 +karman_re200,ppo,241,96.4,velocity,center_uy,0.8244945406913757 +karman_re200,ppo,241,96.4,velocity,lower_ux,1.0823291540145874 +karman_re200,ppo,241,96.4,velocity,lower_uy,0.46278172731399536 +karman_re200,ppo,242,96.8,velocity,upper_ux,0.7967711687088013 +karman_re200,ppo,242,96.8,velocity,upper_uy,0.3375316262245178 +karman_re200,ppo,242,96.8,velocity,center_ux,0.9354354739189148 +karman_re200,ppo,242,96.8,velocity,center_uy,0.8668923377990723 +karman_re200,ppo,242,96.8,velocity,lower_ux,1.1711806058883667 +karman_re200,ppo,242,96.8,velocity,lower_uy,0.41487011313438416 +karman_re200,ppo,243,97.2,velocity,upper_ux,0.7248325347900391 +karman_re200,ppo,243,97.2,velocity,upper_uy,0.21909135580062866 +karman_re200,ppo,243,97.2,velocity,center_ux,0.9277317523956299 +karman_re200,ppo,243,97.2,velocity,center_uy,0.8314797878265381 +karman_re200,ppo,243,97.2,velocity,lower_ux,1.2191531658172607 +karman_re200,ppo,243,97.2,velocity,lower_uy,0.30978161096572876 +karman_re200,ppo,244,97.6,velocity,upper_ux,0.7091836333274841 +karman_re200,ppo,244,97.6,velocity,upper_uy,0.05841134488582611 +karman_re200,ppo,244,97.6,velocity,center_ux,0.9064111113548279 +karman_re200,ppo,244,97.6,velocity,center_uy,0.14134187996387482 +karman_re200,ppo,244,97.6,velocity,lower_ux,1.181997299194336 +karman_re200,ppo,244,97.6,velocity,lower_uy,0.09624144434928894 +karman_re200,ppo,245,98.0,velocity,upper_ux,0.7567242383956909 +karman_re200,ppo,245,98.0,velocity,upper_uy,-0.1134013906121254 +karman_re200,ppo,245,98.0,velocity,center_ux,0.9223735332489014 +karman_re200,ppo,245,98.0,velocity,center_uy,-0.669167160987854 +karman_re200,ppo,245,98.0,velocity,lower_ux,1.1598670482635498 +karman_re200,ppo,245,98.0,velocity,lower_uy,-0.110686294734478 +karman_re200,ppo,246,98.4,velocity,upper_ux,0.8193585872650146 +karman_re200,ppo,246,98.4,velocity,upper_uy,-0.2891443371772766 +karman_re200,ppo,246,98.4,velocity,center_ux,0.9491426348686218 +karman_re200,ppo,246,98.4,velocity,center_uy,-0.7951801419258118 +karman_re200,ppo,246,98.4,velocity,lower_ux,1.1441832780838013 +karman_re200,ppo,246,98.4,velocity,lower_uy,-0.24907644093036652 +karman_re200,ppo,247,98.8,velocity,upper_ux,0.9130881428718567 +karman_re200,ppo,247,98.8,velocity,upper_uy,-0.387170672416687 +karman_re200,ppo,247,98.8,velocity,center_ux,0.9555163383483887 +karman_re200,ppo,247,98.8,velocity,center_uy,-0.7841739058494568 +karman_re200,ppo,247,98.8,velocity,lower_ux,1.056999683380127 +karman_re200,ppo,247,98.8,velocity,lower_uy,-0.3554285168647766 +karman_re200,ppo,248,99.2,velocity,upper_ux,1.0170764923095703 +karman_re200,ppo,248,99.2,velocity,upper_uy,-0.4226876497268677 +karman_re200,ppo,248,99.2,velocity,center_ux,0.9575990438461304 +karman_re200,ppo,248,99.2,velocity,center_uy,-0.799721896648407 +karman_re200,ppo,248,99.2,velocity,lower_ux,0.9542971849441528 +karman_re200,ppo,248,99.2,velocity,lower_uy,-0.3918296694755554 +karman_re200,ppo,249,99.6,velocity,upper_ux,1.1164196729660034 +karman_re200,ppo,249,99.6,velocity,upper_uy,-0.4153980314731598 +karman_re200,ppo,249,99.6,velocity,center_ux,0.9765744209289551 +karman_re200,ppo,249,99.6,velocity,center_uy,-0.8413541316986084 +karman_re200,ppo,249,99.6,velocity,lower_ux,0.8543987274169922 +karman_re200,ppo,249,99.6,velocity,lower_uy,-0.37856990098953247 +karman_re200,ppo,250,100.0,velocity,upper_ux,1.1958940029144287 +karman_re200,ppo,250,100.0,velocity,upper_uy,-0.3487950265407562 +karman_re200,ppo,250,100.0,velocity,center_ux,1.0371288061141968 +karman_re200,ppo,250,100.0,velocity,center_uy,-0.9045226573944092 +karman_re200,ppo,250,100.0,velocity,lower_ux,0.7625913023948669 +karman_re200,ppo,250,100.0,velocity,lower_uy,-0.30423030257225037 +karman_re200,ppo,251,100.4,velocity,upper_ux,1.2240800857543945 +karman_re200,ppo,251,100.4,velocity,upper_uy,-0.2280127853155136 +karman_re200,ppo,251,100.4,velocity,center_ux,1.125227928161621 +karman_re200,ppo,251,100.4,velocity,center_uy,-0.6040552258491516 +karman_re200,ppo,251,100.4,velocity,lower_ux,0.6982863545417786 +karman_re200,ppo,251,100.4,velocity,lower_uy,-0.17185550928115845 +karman_re200,ppo,252,100.8,velocity,upper_ux,1.2027692794799805 +karman_re200,ppo,252,100.8,velocity,upper_uy,-0.06503137946128845 +karman_re200,ppo,252,100.8,velocity,center_ux,1.1416175365447998 +karman_re200,ppo,252,100.8,velocity,center_uy,0.25995150208473206 +karman_re200,ppo,252,100.8,velocity,lower_ux,0.6936988234519958 +karman_re200,ppo,252,100.8,velocity,lower_uy,-0.001740730949677527 +karman_re200,ppo,253,101.2,velocity,upper_ux,1.1931957006454468 +karman_re200,ppo,253,101.2,velocity,upper_uy,0.08224012702703476 +karman_re200,ppo,253,101.2,velocity,center_ux,1.0604703426361084 +karman_re200,ppo,253,101.2,velocity,center_uy,0.6773176789283752 +karman_re200,ppo,253,101.2,velocity,lower_ux,0.7387006878852844 +karman_re200,ppo,253,101.2,velocity,lower_uy,0.18617697060108185 +karman_re200,ppo,254,101.6,velocity,upper_ux,1.1333041191101074 +karman_re200,ppo,254,101.6,velocity,upper_uy,0.22967013716697693 +karman_re200,ppo,254,101.6,velocity,center_ux,0.9917490482330322 +karman_re200,ppo,254,101.6,velocity,center_uy,0.6890068650245667 +karman_re200,ppo,254,101.6,velocity,lower_ux,0.8036643862724304 +karman_re200,ppo,254,101.6,velocity,lower_uy,0.366349995136261 +karman_re200,ppo,255,102.0,velocity,upper_ux,1.0371001958847046 +karman_re200,ppo,255,102.0,velocity,upper_uy,0.33515724539756775 +karman_re200,ppo,255,102.0,velocity,center_ux,0.9573882222175598 +karman_re200,ppo,255,102.0,velocity,center_uy,0.7140151858329773 +karman_re200,ppo,255,102.0,velocity,lower_ux,0.9066015481948853 +karman_re200,ppo,255,102.0,velocity,lower_uy,0.4490712285041809 +karman_re200,ppo,256,102.4,velocity,upper_ux,0.9502193331718445 +karman_re200,ppo,256,102.4,velocity,upper_uy,0.3629215955734253 +karman_re200,ppo,256,102.4,velocity,center_ux,0.9262630939483643 +karman_re200,ppo,256,102.4,velocity,center_uy,0.7236706614494324 +karman_re200,ppo,256,102.4,velocity,lower_ux,1.0136750936508179 +karman_re200,ppo,256,102.4,velocity,lower_uy,0.4942370355129242 +karman_re200,ppo,257,102.8,velocity,upper_ux,0.8702308535575867 +karman_re200,ppo,257,102.8,velocity,upper_uy,0.3459303379058838 +karman_re200,ppo,257,102.8,velocity,center_ux,0.8762750029563904 +karman_re200,ppo,257,102.8,velocity,center_uy,0.7467326521873474 +karman_re200,ppo,257,102.8,velocity,lower_ux,1.116004228591919 +karman_re200,ppo,257,102.8,velocity,lower_uy,0.5064433813095093 +karman_re200,ppo,258,103.2,velocity,upper_ux,0.8003883361816406 +karman_re200,ppo,258,103.2,velocity,upper_uy,0.27740830183029175 +karman_re200,ppo,258,103.2,velocity,center_ux,0.7850682735443115 +karman_re200,ppo,258,103.2,velocity,center_uy,0.7551528215408325 +karman_re200,ppo,258,103.2,velocity,lower_ux,1.213485598564148 +karman_re200,ppo,258,103.2,velocity,lower_uy,0.46269309520721436 +karman_re200,ppo,259,103.6,velocity,upper_ux,0.754381537437439 +karman_re200,ppo,259,103.6,velocity,upper_uy,0.16898289322853088 +karman_re200,ppo,259,103.6,velocity,center_ux,0.6168707013130188 +karman_re200,ppo,259,103.6,velocity,center_uy,0.663113534450531 +karman_re200,ppo,259,103.6,velocity,lower_ux,1.2675236463546753 +karman_re200,ppo,259,103.6,velocity,lower_uy,0.32110118865966797 +karman_re200,ppo,260,104.0,velocity,upper_ux,0.753258466720581 +karman_re200,ppo,260,104.0,velocity,upper_uy,0.03202185779809952 +karman_re200,ppo,260,104.0,velocity,center_ux,0.44183292984962463 +karman_re200,ppo,260,104.0,velocity,center_uy,0.13566386699676514 +karman_re200,ppo,260,104.0,velocity,lower_ux,1.2753074169158936 +karman_re200,ppo,260,104.0,velocity,lower_uy,0.06434180587530136 +karman_re200,ppo,261,104.4,velocity,upper_ux,0.7857256531715393 +karman_re200,ppo,261,104.4,velocity,upper_uy,-0.1261826455593109 +karman_re200,ppo,261,104.4,velocity,center_ux,0.5205883979797363 +karman_re200,ppo,261,104.4,velocity,center_uy,-0.5532221794128418 +karman_re200,ppo,261,104.4,velocity,lower_ux,1.304673671722412 +karman_re200,ppo,261,104.4,velocity,lower_uy,-0.15100203454494476 +karman_re200,ppo,262,104.8,velocity,upper_ux,0.8372871279716492 +karman_re200,ppo,262,104.8,velocity,upper_uy,-0.28279292583465576 +karman_re200,ppo,262,104.8,velocity,center_ux,0.7152526378631592 +karman_re200,ppo,262,104.8,velocity,center_uy,-0.7798076868057251 +karman_re200,ppo,262,104.8,velocity,lower_ux,1.2212048768997192 +karman_re200,ppo,262,104.8,velocity,lower_uy,-0.3489534854888916 +karman_re200,ppo,263,105.2,velocity,upper_ux,0.9260773658752441 +karman_re200,ppo,263,105.2,velocity,upper_uy,-0.36476507782936096 +karman_re200,ppo,263,105.2,velocity,center_ux,0.8237456679344177 +karman_re200,ppo,263,105.2,velocity,center_uy,-0.8283639550209045 +karman_re200,ppo,263,105.2,velocity,lower_ux,1.0950008630752563 +karman_re200,ppo,263,105.2,velocity,lower_uy,-0.4680940508842468 +karman_re200,ppo,264,105.6,velocity,upper_ux,1.022500991821289 +karman_re200,ppo,264,105.6,velocity,upper_uy,-0.4028935134410858 +karman_re200,ppo,264,105.6,velocity,center_ux,0.8827987909317017 +karman_re200,ppo,264,105.6,velocity,center_uy,-0.8652641177177429 +karman_re200,ppo,264,105.6,velocity,lower_ux,0.9686447381973267 +karman_re200,ppo,264,105.6,velocity,lower_uy,-0.5015170574188232 +karman_re200,ppo,265,106.0,velocity,upper_ux,1.1155178546905518 +karman_re200,ppo,265,106.0,velocity,upper_uy,-0.388761430978775 +karman_re200,ppo,265,106.0,velocity,center_ux,0.9496565461158752 +karman_re200,ppo,265,106.0,velocity,center_uy,-0.9121882915496826 +karman_re200,ppo,265,106.0,velocity,lower_ux,0.8515955209732056 +karman_re200,ppo,265,106.0,velocity,lower_uy,-0.4721479117870331 +karman_re200,ppo,266,106.4,velocity,upper_ux,1.1872930526733398 +karman_re200,ppo,266,106.4,velocity,upper_uy,-0.3156725764274597 +karman_re200,ppo,266,106.4,velocity,center_ux,1.0735543966293335 +karman_re200,ppo,266,106.4,velocity,center_uy,-0.9647068977355957 +karman_re200,ppo,266,106.4,velocity,lower_ux,0.7464351654052734 +karman_re200,ppo,266,106.4,velocity,lower_uy,-0.376384973526001 +karman_re200,ppo,267,106.8,velocity,upper_ux,1.204089641571045 +karman_re200,ppo,267,106.8,velocity,upper_uy,-0.18398937582969666 +karman_re200,ppo,267,106.8,velocity,center_ux,1.2300279140472412 +karman_re200,ppo,267,106.8,velocity,center_uy,-0.5573810338973999 +karman_re200,ppo,267,106.8,velocity,lower_ux,0.6750983595848083 +karman_re200,ppo,267,106.8,velocity,lower_uy,-0.21493014693260193 +karman_re200,ppo,268,107.2,velocity,upper_ux,1.1905460357666016 +karman_re200,ppo,268,107.2,velocity,upper_uy,-0.023104678839445114 +karman_re200,ppo,268,107.2,velocity,center_ux,1.2531425952911377 +karman_re200,ppo,268,107.2,velocity,center_uy,0.33255383372306824 +karman_re200,ppo,268,107.2,velocity,lower_ux,0.6721817255020142 +karman_re200,ppo,268,107.2,velocity,lower_uy,-0.01091876532882452 +karman_re200,ppo,269,107.6,velocity,upper_ux,1.1807533502578735 +karman_re200,ppo,269,107.6,velocity,upper_uy,0.1210111603140831 +karman_re200,ppo,269,107.6,velocity,center_ux,1.1375750303268433 +karman_re200,ppo,269,107.6,velocity,center_uy,0.6973835825920105 +karman_re200,ppo,269,107.6,velocity,lower_ux,0.7326237559318542 +karman_re200,ppo,269,107.6,velocity,lower_uy,0.1946142315864563 +karman_re200,ppo,270,108.0,velocity,upper_ux,1.1048189401626587 +karman_re200,ppo,270,108.0,velocity,upper_uy,0.26365479826927185 +karman_re200,ppo,270,108.0,velocity,center_ux,1.0559659004211426 +karman_re200,ppo,270,108.0,velocity,center_uy,0.723816990852356 +karman_re200,ppo,270,108.0,velocity,lower_ux,0.8157266974449158 +karman_re200,ppo,270,108.0,velocity,lower_uy,0.38009098172187805 +karman_re200,ppo,271,108.4,velocity,upper_ux,1.003472089767456 +karman_re200,ppo,271,108.4,velocity,upper_uy,0.34025195240974426 +karman_re200,ppo,271,108.4,velocity,center_ux,1.0259361267089844 +karman_re200,ppo,271,108.4,velocity,center_uy,0.7474016547203064 +karman_re200,ppo,271,108.4,velocity,lower_ux,0.925712525844574 +karman_re200,ppo,271,108.4,velocity,lower_uy,0.446623831987381 +karman_re200,ppo,272,108.8,velocity,upper_ux,0.898277759552002 +karman_re200,ppo,272,108.8,velocity,upper_uy,0.3529360890388489 +karman_re200,ppo,272,108.8,velocity,center_ux,1.0179798603057861 +karman_re200,ppo,272,108.8,velocity,center_uy,0.7688779234886169 +karman_re200,ppo,272,108.8,velocity,lower_ux,1.0313855409622192 +karman_re200,ppo,272,108.8,velocity,lower_uy,0.46877750754356384 +karman_re200,ppo,273,109.2,velocity,upper_ux,0.7875488996505737 +karman_re200,ppo,273,109.2,velocity,upper_uy,0.31990891695022583 +karman_re200,ppo,273,109.2,velocity,center_ux,1.0355136394500732 +karman_re200,ppo,273,109.2,velocity,center_uy,0.8034980893135071 +karman_re200,ppo,273,109.2,velocity,lower_ux,1.1182658672332764 +karman_re200,ppo,273,109.2,velocity,lower_uy,0.4480164647102356 +karman_re200,ppo,274,109.6,velocity,upper_ux,0.6851196885108948 +karman_re200,ppo,274,109.6,velocity,upper_uy,0.22865812480449677 +karman_re200,ppo,274,109.6,velocity,center_ux,1.1137092113494873 +karman_re200,ppo,274,109.6,velocity,center_uy,0.7986297607421875 +karman_re200,ppo,274,109.6,velocity,lower_ux,1.1770325899124146 +karman_re200,ppo,274,109.6,velocity,lower_uy,0.38612625002861023 +karman_re200,ppo,275,110.0,velocity,upper_ux,0.6280614137649536 +karman_re200,ppo,275,110.0,velocity,upper_uy,0.08317163586616516 +karman_re200,ppo,275,110.0,velocity,center_ux,1.2153618335723877 +karman_re200,ppo,275,110.0,velocity,center_uy,0.4881708025932312 +karman_re200,ppo,275,110.0,velocity,lower_ux,1.1885203123092651 +karman_re200,ppo,275,110.0,velocity,lower_uy,0.28576111793518066 +karman_re200,ppo,276,110.4,velocity,upper_ux,0.6619613170623779 +karman_re200,ppo,276,110.4,velocity,upper_uy,-0.07967498153448105 +karman_re200,ppo,276,110.4,velocity,center_ux,1.1684887409210205 +karman_re200,ppo,276,110.4,velocity,center_uy,-0.31138789653778076 +karman_re200,ppo,276,110.4,velocity,lower_ux,1.108080506324768 +karman_re200,ppo,276,110.4,velocity,lower_uy,0.08119912445545197 +karman_re200,ppo,277,110.8,velocity,upper_ux,0.7566943168640137 +karman_re200,ppo,277,110.8,velocity,upper_uy,-0.22535774111747742 +karman_re200,ppo,277,110.8,velocity,center_ux,1.0378400087356567 +karman_re200,ppo,277,110.8,velocity,center_uy,-0.7375780344009399 +karman_re200,ppo,277,110.8,velocity,lower_ux,1.0145496129989624 +karman_re200,ppo,277,110.8,velocity,lower_uy,-0.16103723645210266 +karman_re200,ppo,278,111.2,velocity,upper_ux,0.8527612090110779 +karman_re200,ppo,278,111.2,velocity,upper_uy,-0.36082303524017334 +karman_re200,ppo,278,111.2,velocity,center_ux,0.9622281789779663 +karman_re200,ppo,278,111.2,velocity,center_uy,-0.758319616317749 +karman_re200,ppo,278,111.2,velocity,lower_ux,1.0060522556304932 +karman_re200,ppo,278,111.2,velocity,lower_uy,-0.308072954416275 +karman_re200,ppo,279,111.6,velocity,upper_ux,0.9626976251602173 +karman_re200,ppo,279,111.6,velocity,upper_uy,-0.4280296266078949 +karman_re200,ppo,279,111.6,velocity,center_ux,0.9259965419769287 +karman_re200,ppo,279,111.6,velocity,center_uy,-0.7598569393157959 +karman_re200,ppo,279,111.6,velocity,lower_ux,0.9555856585502625 +karman_re200,ppo,279,111.6,velocity,lower_uy,-0.38913437724113464 +karman_re200,ppo,280,112.0,velocity,upper_ux,1.0729955434799194 +karman_re200,ppo,280,112.0,velocity,upper_uy,-0.45457160472869873 +karman_re200,ppo,280,112.0,velocity,center_ux,0.8999559283256531 +karman_re200,ppo,280,112.0,velocity,center_uy,-0.7945107221603394 +karman_re200,ppo,280,112.0,velocity,lower_ux,0.8849244713783264 +karman_re200,ppo,280,112.0,velocity,lower_uy,-0.4071747064590454 +karman_re200,ppo,281,112.4,velocity,upper_ux,1.1752909421920776 +karman_re200,ppo,281,112.4,velocity,upper_uy,-0.41900399327278137 +karman_re200,ppo,281,112.4,velocity,center_ux,0.870785653591156 +karman_re200,ppo,281,112.4,velocity,center_uy,-0.8509066104888916 +karman_re200,ppo,281,112.4,velocity,lower_ux,0.8125985860824585 +karman_re200,ppo,281,112.4,velocity,lower_uy,-0.3715178668498993 +karman_re200,ppo,282,112.8,velocity,upper_ux,1.2432256937026978 +karman_re200,ppo,282,112.8,velocity,upper_uy,-0.312562495470047 +karman_re200,ppo,282,112.8,velocity,center_ux,0.8128628730773926 +karman_re200,ppo,282,112.8,velocity,center_uy,-0.8952982425689697 +karman_re200,ppo,282,112.8,velocity,lower_ux,0.7487547993659973 +karman_re200,ppo,282,112.8,velocity,lower_uy,-0.2827689051628113 +karman_re200,ppo,283,113.2,velocity,upper_ux,1.26125168800354 +karman_re200,ppo,283,113.2,velocity,upper_uy,-0.150525763630867 +karman_re200,ppo,283,113.2,velocity,center_ux,0.7586113810539246 +karman_re200,ppo,283,113.2,velocity,center_uy,-0.40100905299186707 +karman_re200,ppo,283,113.2,velocity,lower_ux,0.7170010209083557 +karman_re200,ppo,283,113.2,velocity,lower_uy,-0.14888446033000946 +karman_re200,ppo,284,113.6,velocity,upper_ux,1.2871736288070679 +karman_re200,ppo,284,113.6,velocity,upper_uy,0.001859129872173071 +karman_re200,ppo,284,113.6,velocity,center_ux,0.8044009208679199 +karman_re200,ppo,284,113.6,velocity,center_uy,0.485812783241272 +karman_re200,ppo,284,113.6,velocity,lower_ux,0.7339938879013062 +karman_re200,ppo,284,113.6,velocity,lower_uy,0.014146124012768269 +karman_re200,ppo,285,114.0,velocity,upper_ux,1.2454237937927246 +karman_re200,ppo,285,114.0,velocity,upper_uy,0.1677798628807068 +karman_re200,ppo,285,114.0,velocity,center_ux,0.8881738185882568 +karman_re200,ppo,285,114.0,velocity,center_uy,0.7671974897384644 +karman_re200,ppo,285,114.0,velocity,lower_ux,0.7766218781471252 +karman_re200,ppo,285,114.0,velocity,lower_uy,0.20622071623802185 +karman_re200,ppo,286,114.4,velocity,upper_ux,1.1387977600097656 +karman_re200,ppo,286,114.4,velocity,upper_uy,0.322291761636734 +karman_re200,ppo,286,114.4,velocity,center_ux,0.9305861592292786 +karman_re200,ppo,286,114.4,velocity,center_uy,0.7643991708755493 +karman_re200,ppo,286,114.4,velocity,lower_ux,0.8442999124526978 +karman_re200,ppo,286,114.4,velocity,lower_uy,0.36731788516044617 +karman_re200,ppo,287,114.8,velocity,upper_ux,1.0222275257110596 +karman_re200,ppo,287,114.8,velocity,upper_uy,0.39261913299560547 +karman_re200,ppo,287,114.8,velocity,center_ux,0.9493293762207031 +karman_re200,ppo,287,114.8,velocity,center_uy,0.7865616679191589 +karman_re200,ppo,287,114.8,velocity,lower_ux,0.9428184032440186 +karman_re200,ppo,287,114.8,velocity,lower_uy,0.4237961173057556 +karman_re200,ppo,288,115.2,velocity,upper_ux,0.9042988419532776 +karman_re200,ppo,288,115.2,velocity,upper_uy,0.3973986506462097 +karman_re200,ppo,288,115.2,velocity,center_ux,0.9694947600364685 +karman_re200,ppo,288,115.2,velocity,center_uy,0.8115986585617065 +karman_re200,ppo,288,115.2,velocity,lower_ux,1.040816307067871 +karman_re200,ppo,288,115.2,velocity,lower_uy,0.4491564631462097 +karman_re200,ppo,289,115.6,velocity,upper_ux,0.7861946225166321 +karman_re200,ppo,289,115.6,velocity,upper_uy,0.35047173500061035 +karman_re200,ppo,289,115.6,velocity,center_ux,1.0114842653274536 +karman_re200,ppo,289,115.6,velocity,center_uy,0.8389678001403809 +karman_re200,ppo,289,115.6,velocity,lower_ux,1.124014973640442 +karman_re200,ppo,289,115.6,velocity,lower_uy,0.42237114906311035 +karman_re200,ppo,290,116.0,velocity,upper_ux,0.6817334890365601 +karman_re200,ppo,290,116.0,velocity,upper_uy,0.2453949749469757 +karman_re200,ppo,290,116.0,velocity,center_ux,1.1138759851455688 +karman_re200,ppo,290,116.0,velocity,center_uy,0.8269776105880737 +karman_re200,ppo,290,116.0,velocity,lower_ux,1.1794021129608154 +karman_re200,ppo,290,116.0,velocity,lower_uy,0.355490505695343 +karman_re200,ppo,291,116.4,velocity,upper_ux,0.630983293056488 +karman_re200,ppo,291,116.4,velocity,upper_uy,0.08515892177820206 +karman_re200,ppo,291,116.4,velocity,center_ux,1.2097026109695435 +karman_re200,ppo,291,116.4,velocity,center_uy,0.42485037446022034 +karman_re200,ppo,291,116.4,velocity,lower_ux,1.1760566234588623 +karman_re200,ppo,291,116.4,velocity,lower_uy,0.22498905658721924 +karman_re200,ppo,292,116.8,velocity,upper_ux,0.6727321743965149 +karman_re200,ppo,292,116.8,velocity,upper_uy,-0.08718449622392654 +karman_re200,ppo,292,116.8,velocity,center_ux,1.1570703983306885 +karman_re200,ppo,292,116.8,velocity,center_uy,-0.4228076934814453 +karman_re200,ppo,292,116.8,velocity,lower_ux,1.0890024900436401 +karman_re200,ppo,292,116.8,velocity,lower_uy,-0.013346211984753609 +karman_re200,ppo,293,117.2,velocity,upper_ux,0.7664062976837158 +karman_re200,ppo,293,117.2,velocity,upper_uy,-0.23854023218154907 +karman_re200,ppo,293,117.2,velocity,center_ux,1.0416656732559204 +karman_re200,ppo,293,117.2,velocity,center_uy,-0.7699835300445557 +karman_re200,ppo,293,117.2,velocity,lower_ux,1.0575683116912842 +karman_re200,ppo,293,117.2,velocity,lower_uy,-0.20338775217533112 +karman_re200,ppo,294,117.6,velocity,upper_ux,0.8664311766624451 +karman_re200,ppo,294,117.6,velocity,upper_uy,-0.3676947355270386 +karman_re200,ppo,294,117.6,velocity,center_ux,0.9791790843009949 +karman_re200,ppo,294,117.6,velocity,center_uy,-0.7668068408966064 +karman_re200,ppo,294,117.6,velocity,lower_ux,1.033766746520996 +karman_re200,ppo,294,117.6,velocity,lower_uy,-0.323640376329422 +karman_re200,ppo,295,118.0,velocity,upper_ux,0.9785900712013245 +karman_re200,ppo,295,118.0,velocity,upper_uy,-0.4242337942123413 +karman_re200,ppo,295,118.0,velocity,center_ux,0.950141966342926 +karman_re200,ppo,295,118.0,velocity,center_uy,-0.7674710750579834 +karman_re200,ppo,295,118.0,velocity,lower_ux,0.9610077142715454 +karman_re200,ppo,295,118.0,velocity,lower_uy,-0.38460949063301086 +karman_re200,ppo,296,118.4,velocity,upper_ux,1.0879871845245361 +karman_re200,ppo,296,118.4,velocity,upper_uy,-0.4383332133293152 +karman_re200,ppo,296,118.4,velocity,center_ux,0.9318584203720093 +karman_re200,ppo,296,118.4,velocity,center_uy,-0.8042058348655701 +karman_re200,ppo,296,118.4,velocity,lower_ux,0.8806447386741638 +karman_re200,ppo,296,118.4,velocity,lower_uy,-0.3903649151325226 +karman_re200,ppo,297,118.8,velocity,upper_ux,1.1832325458526611 +karman_re200,ppo,297,118.8,velocity,upper_uy,-0.38762223720550537 +karman_re200,ppo,297,118.8,velocity,center_ux,0.9192373156547546 +karman_re200,ppo,297,118.8,velocity,center_uy,-0.8644500970840454 +karman_re200,ppo,297,118.8,velocity,lower_ux,0.8017496466636658 +karman_re200,ppo,297,118.8,velocity,lower_uy,-0.3413659632205963 +karman_re200,ppo,298,119.2,velocity,upper_ux,1.2326987981796265 +karman_re200,ppo,298,119.2,velocity,upper_uy,-0.27260473370552063 +karman_re200,ppo,298,119.2,velocity,center_ux,0.9085233211517334 +karman_re200,ppo,298,119.2,velocity,center_uy,-0.8157023787498474 +karman_re200,ppo,298,119.2,velocity,lower_ux,0.7372047901153564 +karman_re200,ppo,298,119.2,velocity,lower_uy,-0.23738954961299896 +karman_re200,ppo,299,119.6,velocity,upper_ux,1.2238514423370361 +karman_re200,ppo,299,119.6,velocity,upper_uy,-0.1074070855975151 +karman_re200,ppo,299,119.6,velocity,center_ux,0.9144306778907776 +karman_re200,ppo,299,119.6,velocity,center_uy,-0.11671659350395203 +karman_re200,ppo,299,119.6,velocity,lower_ux,0.7154541015625 +karman_re200,ppo,299,119.6,velocity,lower_uy,-0.08928759396076202 +karman_re200,ppo,300,120.0,velocity,upper_ux,1.2294672727584839 +karman_re200,ppo,300,120.0,velocity,upper_uy,0.04109557718038559 +karman_re200,ppo,300,120.0,velocity,center_ux,0.9375799298286438 +karman_re200,ppo,300,120.0,velocity,center_uy,0.6137799620628357 +karman_re200,ppo,300,120.0,velocity,lower_ux,0.744895339012146 +karman_re200,ppo,300,120.0,velocity,lower_uy,0.08456093072891235 +karman_re200,ppo,301,120.4,velocity,upper_ux,1.1922663450241089 +karman_re200,ppo,301,120.4,velocity,upper_uy,0.18831132352352142 +karman_re200,ppo,301,120.4,velocity,center_ux,0.9514786005020142 +karman_re200,ppo,301,120.4,velocity,center_uy,0.7217600345611572 +karman_re200,ppo,301,120.4,velocity,lower_ux,0.792873203754425 +karman_re200,ppo,301,120.4,velocity,lower_uy,0.2824855148792267 +karman_re200,ppo,302,120.8,velocity,upper_ux,1.091762661933899 +karman_re200,ppo,302,120.8,velocity,upper_uy,0.3215302526950836 +karman_re200,ppo,302,120.8,velocity,center_ux,0.9515844583511353 +karman_re200,ppo,302,120.8,velocity,center_uy,0.7302494645118713 +karman_re200,ppo,302,120.8,velocity,lower_ux,0.8778496384620667 +karman_re200,ppo,302,120.8,velocity,lower_uy,0.40467727184295654 +karman_re200,ppo,303,121.2,velocity,upper_ux,0.9898903369903564 +karman_re200,ppo,303,121.2,velocity,upper_uy,0.3730238676071167 +karman_re200,ppo,303,121.2,velocity,center_ux,0.9407021403312683 +karman_re200,ppo,303,121.2,velocity,center_uy,0.7452149391174316 +karman_re200,ppo,303,121.2,velocity,lower_ux,0.9805832505226135 +karman_re200,ppo,303,121.2,velocity,lower_uy,0.4517316520214081 +karman_re200,ppo,304,121.6,velocity,upper_ux,0.8976354002952576 +karman_re200,ppo,304,121.6,velocity,upper_uy,0.3697071969509125 +karman_re200,ppo,304,121.6,velocity,center_ux,0.919125497341156 +karman_re200,ppo,304,121.6,velocity,center_uy,0.7735559344291687 +karman_re200,ppo,304,121.6,velocity,lower_ux,1.0814403295516968 +karman_re200,ppo,304,121.6,velocity,lower_uy,0.4695826768875122 +karman_re200,ppo,305,122.0,velocity,upper_ux,0.816371738910675 +karman_re200,ppo,305,122.0,velocity,upper_uy,0.3129626512527466 +karman_re200,ppo,305,122.0,velocity,center_ux,0.8794768452644348 +karman_re200,ppo,305,122.0,velocity,center_uy,0.8123009204864502 +karman_re200,ppo,305,122.0,velocity,lower_ux,1.1743617057800293 +karman_re200,ppo,305,122.0,velocity,lower_uy,0.42806458473205566 +karman_re200,ppo,306,122.4,velocity,upper_ux,0.7553492784500122 +karman_re200,ppo,306,122.4,velocity,upper_uy,0.20770329236984253 +karman_re200,ppo,306,122.4,velocity,center_ux,0.8010559678077698 +karman_re200,ppo,306,122.4,velocity,center_uy,0.7904543876647949 +karman_re200,ppo,306,122.4,velocity,lower_ux,1.230355978012085 +karman_re200,ppo,306,122.4,velocity,lower_uy,0.3247321844100952 +karman_re200,ppo,307,122.8,velocity,upper_ux,0.7415463328361511 +karman_re200,ppo,307,122.8,velocity,upper_uy,0.06755618751049042 +karman_re200,ppo,307,122.8,velocity,center_ux,0.7097514271736145 +karman_re200,ppo,307,122.8,velocity,center_uy,0.22388915717601776 +karman_re200,ppo,307,122.8,velocity,lower_ux,1.1960289478302002 +karman_re200,ppo,307,122.8,velocity,lower_uy,0.11306092888116837 +karman_re200,ppo,308,123.2,velocity,upper_ux,0.7730342149734497 +karman_re200,ppo,308,123.2,velocity,upper_uy,-0.09690570831298828 +karman_re200,ppo,308,123.2,velocity,center_ux,0.7503177523612976 +karman_re200,ppo,308,123.2,velocity,center_uy,-0.5885292291641235 +karman_re200,ppo,308,123.2,velocity,lower_ux,1.168601393699646 +karman_re200,ppo,308,123.2,velocity,lower_uy,-0.09965474158525467 +karman_re200,ppo,309,123.6,velocity,upper_ux,0.8179795742034912 +karman_re200,ppo,309,123.6,velocity,upper_uy,-0.2718210816383362 +karman_re200,ppo,309,123.6,velocity,center_ux,0.854256272315979 +karman_re200,ppo,309,123.6,velocity,center_uy,-0.7742677927017212 +karman_re200,ppo,309,123.6,velocity,lower_ux,1.1582419872283936 +karman_re200,ppo,309,123.6,velocity,lower_uy,-0.24206925928592682 +karman_re200,ppo,310,124.0,velocity,upper_ux,0.904054582118988 +karman_re200,ppo,310,124.0,velocity,upper_uy,-0.37240004539489746 +karman_re200,ppo,310,124.0,velocity,center_ux,0.9017400145530701 +karman_re200,ppo,310,124.0,velocity,center_uy,-0.7691609263420105 +karman_re200,ppo,310,124.0,velocity,lower_ux,1.075324296951294 +karman_re200,ppo,310,124.0,velocity,lower_uy,-0.35742899775505066 +karman_re200,ppo,311,124.4,velocity,upper_ux,1.005478024482727 +karman_re200,ppo,311,124.4,velocity,upper_uy,-0.41787615418434143 +karman_re200,ppo,311,124.4,velocity,center_ux,0.9149596691131592 +karman_re200,ppo,311,124.4,velocity,center_uy,-0.7834494113922119 +karman_re200,ppo,311,124.4,velocity,lower_ux,0.9757112860679626 +karman_re200,ppo,311,124.4,velocity,lower_uy,-0.4019269645214081 +karman_re200,ppo,312,124.8,velocity,upper_ux,1.1068416833877563 +karman_re200,ppo,312,124.8,velocity,upper_uy,-0.4214913845062256 +karman_re200,ppo,312,124.8,velocity,center_ux,0.9221665263175964 +karman_re200,ppo,312,124.8,velocity,center_uy,-0.8220193982124329 +karman_re200,ppo,312,124.8,velocity,lower_ux,0.8800228834152222 +karman_re200,ppo,312,124.8,velocity,lower_uy,-0.3946554660797119 +karman_re200,ppo,313,125.2,velocity,upper_ux,1.192402958869934 +karman_re200,ppo,313,125.2,velocity,upper_uy,-0.3625056743621826 +karman_re200,ppo,313,125.2,velocity,center_ux,0.9358518719673157 +karman_re200,ppo,313,125.2,velocity,center_uy,-0.8828084468841553 +karman_re200,ppo,313,125.2,velocity,lower_ux,0.7911472320556641 +karman_re200,ppo,313,125.2,velocity,lower_uy,-0.33101820945739746 +karman_re200,ppo,314,125.6,velocity,upper_ux,1.2267405986785889 +karman_re200,ppo,314,125.6,velocity,upper_uy,-0.240778848528862 +karman_re200,ppo,314,125.6,velocity,center_ux,0.9562270641326904 +karman_re200,ppo,314,125.6,velocity,center_uy,-0.7442325353622437 +karman_re200,ppo,314,125.6,velocity,lower_ux,0.72406005859375 +karman_re200,ppo,314,125.6,velocity,lower_uy,-0.2130063772201538 +karman_re200,ppo,315,126.0,velocity,upper_ux,1.212249517440796 +karman_re200,ppo,315,126.0,velocity,upper_uy,-0.07389947772026062 +karman_re200,ppo,315,126.0,velocity,center_ux,0.9815717935562134 +karman_re200,ppo,315,126.0,velocity,center_uy,0.06011857092380524 +karman_re200,ppo,315,126.0,velocity,lower_ux,0.7085988521575928 +karman_re200,ppo,315,126.0,velocity,lower_uy,-0.054923709481954575 +karman_re200,ppo,316,126.4,velocity,upper_ux,1.2160338163375854 +karman_re200,ppo,316,126.4,velocity,upper_uy,0.07247485220432281 +karman_re200,ppo,316,126.4,velocity,center_ux,0.9829815030097961 +karman_re200,ppo,316,126.4,velocity,center_uy,0.6667249798774719 +karman_re200,ppo,316,126.4,velocity,lower_ux,0.744354784488678 +karman_re200,ppo,316,126.4,velocity,lower_uy,0.12554283440113068 +karman_re200,ppo,317,126.8,velocity,upper_ux,1.1644279956817627 +karman_re200,ppo,317,126.8,velocity,upper_uy,0.22364072501659393 +karman_re200,ppo,317,126.8,velocity,center_ux,0.9690845012664795 +karman_re200,ppo,317,126.8,velocity,center_uy,0.7158186435699463 +karman_re200,ppo,317,126.8,velocity,lower_ux,0.7977452874183655 +karman_re200,ppo,317,126.8,velocity,lower_uy,0.3190822899341583 +karman_re200,ppo,318,127.2,velocity,upper_ux,1.0671629905700684 +karman_re200,ppo,318,127.2,velocity,upper_uy,0.34088134765625 +karman_re200,ppo,318,127.2,velocity,center_ux,0.9561057090759277 +karman_re200,ppo,318,127.2,velocity,center_uy,0.7253960967063904 +karman_re200,ppo,318,127.2,velocity,lower_ux,0.8901898860931396 +karman_re200,ppo,318,127.2,velocity,lower_uy,0.4200966954231262 +karman_re200,ppo,319,127.6,velocity,upper_ux,0.9756873846054077 +karman_re200,ppo,319,127.6,velocity,upper_uy,0.37665775418281555 +karman_re200,ppo,319,127.6,velocity,center_ux,0.9359890818595886 +karman_re200,ppo,319,127.6,velocity,center_uy,0.7310577630996704 +karman_re200,ppo,319,127.6,velocity,lower_ux,0.9927780628204346 +karman_re200,ppo,319,127.6,velocity,lower_uy,0.46711811423301697 +karman_re200,ppo,320,128.0,velocity,upper_ux,0.8941985964775085 +karman_re200,ppo,320,128.0,velocity,upper_uy,0.36296746134757996 +karman_re200,ppo,320,128.0,velocity,center_ux,0.8997220396995544 +karman_re200,ppo,320,128.0,velocity,center_uy,0.750308632850647 +karman_re200,ppo,320,128.0,velocity,lower_ux,1.0935763120651245 +karman_re200,ppo,320,128.0,velocity,lower_uy,0.48221489787101746 +karman_re200,ppo,321,128.4,velocity,upper_ux,0.8247228264808655 +karman_re200,ppo,321,128.4,velocity,upper_uy,0.2954866290092468 +karman_re200,ppo,321,128.4,velocity,center_ux,0.8282808065414429 +karman_re200,ppo,321,128.4,velocity,center_uy,0.7673764228820801 +karman_re200,ppo,321,128.4,velocity,lower_ux,1.1904473304748535 +karman_re200,ppo,321,128.4,velocity,lower_uy,0.4395081400871277 +karman_re200,ppo,322,128.8,velocity,upper_ux,0.7776377201080322 +karman_re200,ppo,322,128.8,velocity,upper_uy,0.18338613212108612 +karman_re200,ppo,322,128.8,velocity,center_ux,0.6861520409584045 +karman_re200,ppo,322,128.8,velocity,center_uy,0.6962644457817078 +karman_re200,ppo,322,128.8,velocity,lower_ux,1.2489867210388184 +karman_re200,ppo,322,128.8,velocity,lower_uy,0.31793609261512756 +karman_re200,ppo,323,129.2,velocity,upper_ux,0.7731867432594299 +karman_re200,ppo,323,129.2,velocity,upper_uy,0.03867601975798607 +karman_re200,ppo,323,129.2,velocity,center_ux,0.5378984808921814 +karman_re200,ppo,323,129.2,velocity,center_uy,0.14887551963329315 +karman_re200,ppo,323,129.2,velocity,lower_ux,1.2230533361434937 +karman_re200,ppo,323,129.2,velocity,lower_uy,0.07088734954595566 +karman_re200,ppo,324,129.6,velocity,upper_ux,0.7966728210449219 +karman_re200,ppo,324,129.6,velocity,upper_uy,-0.1345670074224472 +karman_re200,ppo,324,129.6,velocity,center_ux,0.6107126474380493 +karman_re200,ppo,324,129.6,velocity,center_uy,-0.5663407444953918 +karman_re200,ppo,324,129.6,velocity,lower_ux,1.2308642864227295 +karman_re200,ppo,324,129.6,velocity,lower_uy,-0.13333438336849213 +karman_re200,ppo,325,130.0,velocity,upper_ux,0.8400529623031616 +karman_re200,ppo,325,130.0,velocity,upper_uy,-0.296045184135437 +karman_re200,ppo,325,130.0,velocity,center_ux,0.7752725481987 +karman_re200,ppo,325,130.0,velocity,center_uy,-0.7604290246963501 +karman_re200,ppo,325,130.0,velocity,lower_ux,1.1862376928329468 +karman_re200,ppo,325,130.0,velocity,lower_uy,-0.2923557162284851 +karman_re200,ppo,326,130.4,velocity,upper_ux,0.9263062477111816 +karman_re200,ppo,326,130.4,velocity,upper_uy,-0.37893885374069214 +karman_re200,ppo,326,130.4,velocity,center_ux,0.8545387387275696 +karman_re200,ppo,326,130.4,velocity,center_uy,-0.7846537232398987 +karman_re200,ppo,326,130.4,velocity,lower_ux,1.080683708190918 +karman_re200,ppo,326,130.4,velocity,lower_uy,-0.4025810658931732 +karman_re200,ppo,327,130.8,velocity,upper_ux,1.0246661901474 +karman_re200,ppo,327,130.8,velocity,upper_uy,-0.4211057424545288 +karman_re200,ppo,327,130.8,velocity,center_ux,0.8839735388755798 +karman_re200,ppo,327,130.8,velocity,center_uy,-0.8080081343650818 +karman_re200,ppo,327,130.8,velocity,lower_ux,0.9732584953308105 +karman_re200,ppo,327,130.8,velocity,lower_uy,-0.4358554184436798 +karman_re200,ppo,328,131.2,velocity,upper_ux,1.1237679719924927 +karman_re200,ppo,328,131.2,velocity,upper_uy,-0.4134443998336792 +karman_re200,ppo,328,131.2,velocity,center_ux,0.9008513689041138 +karman_re200,ppo,328,131.2,velocity,center_uy,-0.8511603474617004 +karman_re200,ppo,328,131.2,velocity,lower_ux,0.8750401139259338 +karman_re200,ppo,328,131.2,velocity,lower_uy,-0.4143361747264862 +karman_re200,ppo,329,131.6,velocity,upper_ux,1.2033523321151733 +karman_re200,ppo,329,131.6,velocity,upper_uy,-0.34214356541633606 +karman_re200,ppo,329,131.6,velocity,center_ux,0.9205586910247803 +karman_re200,ppo,329,131.6,velocity,center_uy,-0.9114491939544678 +karman_re200,ppo,329,131.6,velocity,lower_ux,0.7870117425918579 +karman_re200,ppo,329,131.6,velocity,lower_uy,-0.3349008858203888 +karman_re200,ppo,330,132.0,velocity,upper_ux,1.2225565910339355 +karman_re200,ppo,330,132.0,velocity,upper_uy,-0.20310431718826294 +karman_re200,ppo,330,132.0,velocity,center_ux,0.9427556395530701 +karman_re200,ppo,330,132.0,velocity,center_uy,-0.656443178653717 +karman_re200,ppo,330,132.0,velocity,lower_ux,0.7250572443008423 +karman_re200,ppo,330,132.0,velocity,lower_uy,-0.20196518301963806 +karman_re200,ppo,331,132.4,velocity,upper_ux,1.2125697135925293 +karman_re200,ppo,331,132.4,velocity,upper_uy,-0.035184215754270554 +karman_re200,ppo,331,132.4,velocity,center_ux,0.9697789549827576 +karman_re200,ppo,331,132.4,velocity,center_uy,0.21799464523792267 +karman_re200,ppo,331,132.4,velocity,lower_ux,0.7163699865341187 +karman_re200,ppo,331,132.4,velocity,lower_uy,-0.031108049675822258 +karman_re200,ppo,332,132.8,velocity,upper_ux,1.2160669565200806 +karman_re200,ppo,332,132.8,velocity,upper_uy,0.10822593420743942 +karman_re200,ppo,332,132.8,velocity,center_ux,0.9762749671936035 +karman_re200,ppo,332,132.8,velocity,center_uy,0.7134955525398254 +karman_re200,ppo,332,132.8,velocity,lower_ux,0.7524259686470032 +karman_re200,ppo,332,132.8,velocity,lower_uy,0.16200286149978638 +karman_re200,ppo,333,133.2,velocity,upper_ux,1.1487019062042236 +karman_re200,ppo,333,133.2,velocity,upper_uy,0.2570802867412567 +karman_re200,ppo,333,133.2,velocity,center_ux,0.9691199660301208 +karman_re200,ppo,333,133.2,velocity,center_uy,0.7329275012016296 +karman_re200,ppo,333,133.2,velocity,lower_ux,0.812736451625824 +karman_re200,ppo,333,133.2,velocity,lower_uy,0.3472505807876587 +karman_re200,ppo,334,133.6,velocity,upper_ux,1.0511327981948853 +karman_re200,ppo,334,133.6,velocity,upper_uy,0.34927868843078613 +karman_re200,ppo,334,133.6,velocity,center_ux,0.9607954621315002 +karman_re200,ppo,334,133.6,velocity,center_uy,0.7452331781387329 +karman_re200,ppo,334,133.6,velocity,lower_ux,0.912232518196106 +karman_re200,ppo,334,133.6,velocity,lower_uy,0.42738038301467896 +karman_re200,ppo,335,134.0,velocity,upper_ux,0.9542797207832336 +karman_re200,ppo,335,134.0,velocity,upper_uy,0.36779266595840454 +karman_re200,ppo,335,134.0,velocity,center_ux,0.9463248252868652 +karman_re200,ppo,335,134.0,velocity,center_uy,0.7553960680961609 +karman_re200,ppo,335,134.0,velocity,lower_ux,1.0151410102844238 +karman_re200,ppo,335,134.0,velocity,lower_uy,0.46680882573127747 +karman_re200,ppo,336,134.4,velocity,upper_ux,0.8589969873428345 +karman_re200,ppo,336,134.4,velocity,upper_uy,0.3392813205718994 +karman_re200,ppo,336,134.4,velocity,center_ux,0.9210374355316162 +karman_re200,ppo,336,134.4,velocity,center_uy,0.7840330600738525 +karman_re200,ppo,336,134.4,velocity,lower_ux,1.1104589700698853 +karman_re200,ppo,336,134.4,velocity,lower_uy,0.46450451016426086 +karman_re200,ppo,337,134.8,velocity,upper_ux,0.7746229767799377 +karman_re200,ppo,337,134.8,velocity,upper_uy,0.2593124508857727 +karman_re200,ppo,337,134.8,velocity,center_ux,0.8806387186050415 +karman_re200,ppo,337,134.8,velocity,center_uy,0.8049171566963196 +karman_re200,ppo,337,134.8,velocity,lower_ux,1.1928685903549194 +karman_re200,ppo,337,134.8,velocity,lower_uy,0.4090013802051544 +karman_re200,ppo,338,135.2,velocity,upper_ux,0.7252100110054016 +karman_re200,ppo,338,135.2,velocity,upper_uy,0.13740530610084534 +karman_re200,ppo,338,135.2,velocity,center_ux,0.8047627806663513 +karman_re200,ppo,338,135.2,velocity,center_uy,0.6723896861076355 +karman_re200,ppo,338,135.2,velocity,lower_ux,1.2261790037155151 +karman_re200,ppo,338,135.2,velocity,lower_uy,0.2800610363483429 +karman_re200,ppo,339,135.6,velocity,upper_ux,0.7402096390724182 +karman_re200,ppo,339,135.6,velocity,upper_uy,-0.008526657707989216 +karman_re200,ppo,339,135.6,velocity,center_ux,0.7274682521820068 +karman_re200,ppo,339,135.6,velocity,center_uy,-0.04521850124001503 +karman_re200,ppo,339,135.6,velocity,lower_ux,1.1742016077041626 +karman_re200,ppo,339,135.6,velocity,lower_uy,0.03444850072264671 +karman_re200,ppo,340,136.0,velocity,upper_ux,0.7887387275695801 +karman_re200,ppo,340,136.0,velocity,upper_uy,-0.17110206186771393 +karman_re200,ppo,340,136.0,velocity,center_ux,0.7698522210121155 +karman_re200,ppo,340,136.0,velocity,center_uy,-0.7032446265220642 +karman_re200,ppo,340,136.0,velocity,lower_ux,1.1653618812561035 +karman_re200,ppo,340,136.0,velocity,lower_uy,-0.16120082139968872 +karman_re200,ppo,341,136.4,velocity,upper_ux,0.8502873778343201 +karman_re200,ppo,341,136.4,velocity,upper_uy,-0.3213319480419159 +karman_re200,ppo,341,136.4,velocity,center_ux,0.8483657836914062 +karman_re200,ppo,341,136.4,velocity,center_uy,-0.8074564337730408 +karman_re200,ppo,341,136.4,velocity,lower_ux,1.1246817111968994 +karman_re200,ppo,341,136.4,velocity,lower_uy,-0.30695831775665283 +karman_re200,ppo,342,136.8,velocity,upper_ux,0.9447329044342041 +karman_re200,ppo,342,136.8,velocity,upper_uy,-0.39748990535736084 +karman_re200,ppo,342,136.8,velocity,center_ux,0.8810396790504456 +karman_re200,ppo,342,136.8,velocity,center_uy,-0.8000087141990662 +karman_re200,ppo,342,136.8,velocity,lower_ux,1.0305652618408203 +karman_re200,ppo,342,136.8,velocity,lower_uy,-0.3988710045814514 +karman_re200,ppo,343,137.2,velocity,upper_ux,1.0464451313018799 +karman_re200,ppo,343,137.2,velocity,upper_uy,-0.43246573209762573 +karman_re200,ppo,343,137.2,velocity,center_ux,0.8902048468589783 +karman_re200,ppo,343,137.2,velocity,center_uy,-0.8217860460281372 +karman_re200,ppo,343,137.2,velocity,lower_ux,0.9326955676078796 +karman_re200,ppo,343,137.2,velocity,lower_uy,-0.42116779088974 +karman_re200,ppo,344,137.6,velocity,upper_ux,1.14573073387146 +karman_re200,ppo,344,137.6,velocity,upper_uy,-0.41013312339782715 +karman_re200,ppo,344,137.6,velocity,center_ux,0.8976593613624573 +karman_re200,ppo,344,137.6,velocity,center_uy,-0.8684923648834229 +karman_re200,ppo,344,137.6,velocity,lower_ux,0.8417004346847534 +karman_re200,ppo,344,137.6,velocity,lower_uy,-0.38998305797576904 +karman_re200,ppo,345,138.0,velocity,upper_ux,1.217786192893982 +karman_re200,ppo,345,138.0,velocity,upper_uy,-0.3226161599159241 +karman_re200,ppo,345,138.0,velocity,center_ux,0.9047654867172241 +karman_re200,ppo,345,138.0,velocity,center_uy,-0.9196147918701172 +karman_re200,ppo,345,138.0,velocity,lower_ux,0.7617926597595215 +karman_re200,ppo,345,138.0,velocity,lower_uy,-0.3013020157814026 +karman_re200,ppo,346,138.4,velocity,upper_ux,1.2306407690048218 +karman_re200,ppo,346,138.4,velocity,upper_uy,-0.16986432671546936 +karman_re200,ppo,346,138.4,velocity,center_ux,0.907386839389801 +karman_re200,ppo,346,138.4,velocity,center_uy,-0.5078203082084656 +karman_re200,ppo,346,138.4,velocity,lower_ux,0.7122274041175842 +karman_re200,ppo,346,138.4,velocity,lower_uy,-0.16227878630161285 +karman_re200,ppo,347,138.8,velocity,upper_ux,1.242518424987793 +karman_re200,ppo,347,138.8,velocity,upper_uy,-0.01148827001452446 +karman_re200,ppo,347,138.8,velocity,center_ux,0.9279899001121521 +karman_re200,ppo,347,138.8,velocity,center_uy,0.39346298575401306 +karman_re200,ppo,347,138.8,velocity,lower_ux,0.7155454158782959 +karman_re200,ppo,347,138.8,velocity,lower_uy,0.009694541804492474 +karman_re200,ppo,348,139.2,velocity,upper_ux,1.2240076065063477 +karman_re200,ppo,348,139.2,velocity,upper_uy,0.14546214044094086 +karman_re200,ppo,348,139.2,velocity,center_ux,0.9447674751281738 +karman_re200,ppo,348,139.2,velocity,center_uy,0.7561601996421814 +karman_re200,ppo,348,139.2,velocity,lower_ux,0.7568108439445496 +karman_re200,ppo,348,139.2,velocity,lower_uy,0.20259007811546326 +karman_re200,ppo,349,139.6,velocity,upper_ux,1.132123589515686 +karman_re200,ppo,349,139.6,velocity,upper_uy,0.299678236246109 +karman_re200,ppo,349,139.6,velocity,center_ux,0.9493407607078552 +karman_re200,ppo,349,139.6,velocity,center_uy,0.7605259418487549 +karman_re200,ppo,349,139.6,velocity,lower_ux,0.8277102708816528 +karman_re200,ppo,349,139.6,velocity,lower_uy,0.3677229583263397 +karman_re200,ppo,350,140.0,velocity,upper_ux,1.0260732173919678 +karman_re200,ppo,350,140.0,velocity,upper_uy,0.375237375497818 +karman_re200,ppo,350,140.0,velocity,center_ux,0.9513552188873291 +karman_re200,ppo,350,140.0,velocity,center_uy,0.7798581123352051 +karman_re200,ppo,350,140.0,velocity,lower_ux,0.9318480491638184 +karman_re200,ppo,350,140.0,velocity,lower_uy,0.43181324005126953 +karman_re200,ppo,351,140.4,velocity,upper_ux,0.916403591632843 +karman_re200,ppo,351,140.4,velocity,upper_uy,0.38153624534606934 +karman_re200,ppo,351,140.4,velocity,center_ux,0.953044593334198 +karman_re200,ppo,351,140.4,velocity,center_uy,0.8007470965385437 +karman_re200,ppo,351,140.4,velocity,lower_ux,1.0334101915359497 +karman_re200,ppo,351,140.4,velocity,lower_uy,0.46190401911735535 +karman_re200,ppo,352,140.8,velocity,upper_ux,0.8047385215759277 +karman_re200,ppo,352,140.8,velocity,upper_uy,0.33994778990745544 +karman_re200,ppo,352,140.8,velocity,center_ux,0.9620299339294434 +karman_re200,ppo,352,140.8,velocity,center_uy,0.8341885209083557 +karman_re200,ppo,352,140.8,velocity,lower_ux,1.120926022529602 +karman_re200,ppo,352,140.8,velocity,lower_uy,0.44274434447288513 +karman_re200,ppo,353,141.2,velocity,upper_ux,0.7054073214530945 +karman_re200,ppo,353,141.2,velocity,upper_uy,0.24491934478282928 +karman_re200,ppo,353,141.2,velocity,center_ux,1.0001616477966309 +karman_re200,ppo,353,141.2,velocity,center_uy,0.844230592250824 +karman_re200,ppo,353,141.2,velocity,lower_ux,1.185088872909546 +karman_re200,ppo,353,141.2,velocity,lower_uy,0.37908339500427246 +karman_re200,ppo,354,141.6,velocity,upper_ux,0.6532053351402283 +karman_re200,ppo,354,141.6,velocity,upper_uy,0.10238772630691528 +karman_re200,ppo,354,141.6,velocity,center_ux,1.0272703170776367 +karman_re200,ppo,354,141.6,velocity,center_uy,0.5699324607849121 +karman_re200,ppo,354,141.6,velocity,lower_ux,1.1931270360946655 +karman_re200,ppo,354,141.6,velocity,lower_uy,0.24654832482337952 +karman_re200,ppo,355,142.0,velocity,upper_ux,0.6860632300376892 +karman_re200,ppo,355,142.0,velocity,upper_uy,-0.057245880365371704 +karman_re200,ppo,355,142.0,velocity,center_ux,0.9892272353172302 +karman_re200,ppo,355,142.0,velocity,center_uy,-0.28979557752609253 +karman_re200,ppo,355,142.0,velocity,lower_ux,1.1235485076904297 +karman_re200,ppo,355,142.0,velocity,lower_uy,0.004874566104263067 +karman_re200,ppo,356,142.4,velocity,upper_ux,0.7677381038665771 +karman_re200,ppo,356,142.4,velocity,upper_uy,-0.2099931389093399 +karman_re200,ppo,356,142.4,velocity,center_ux,0.9422459602355957 +karman_re200,ppo,356,142.4,velocity,center_uy,-0.797161340713501 +karman_re200,ppo,356,142.4,velocity,lower_ux,1.1046240329742432 +karman_re200,ppo,356,142.4,velocity,lower_uy,-0.18960191309452057 +karman_re200,ppo,357,142.8,velocity,upper_ux,0.8549998998641968 +karman_re200,ppo,357,142.8,velocity,upper_uy,-0.34952208399772644 +karman_re200,ppo,357,142.8,velocity,center_ux,0.9241204857826233 +karman_re200,ppo,357,142.8,velocity,center_uy,-0.8254641890525818 +karman_re200,ppo,357,142.8,velocity,lower_ux,1.0640281438827515 +karman_re200,ppo,357,142.8,velocity,lower_uy,-0.3315776586532593 +karman_re200,ppo,358,143.2,velocity,upper_ux,0.9607896208763123 +karman_re200,ppo,358,143.2,velocity,upper_uy,-0.4160877466201782 +karman_re200,ppo,358,143.2,velocity,center_ux,0.9163553714752197 +karman_re200,ppo,358,143.2,velocity,center_uy,-0.8170421123504639 +karman_re200,ppo,358,143.2,velocity,lower_ux,0.9773914217948914 +karman_re200,ppo,358,143.2,velocity,lower_uy,-0.409178227186203 +karman_re200,ppo,359,143.6,velocity,upper_ux,1.067012906074524 +karman_re200,ppo,359,143.6,velocity,upper_uy,-0.43720927834510803 +karman_re200,ppo,359,143.6,velocity,center_ux,0.9166020154953003 +karman_re200,ppo,359,143.6,velocity,center_uy,-0.8488341569900513 +karman_re200,ppo,359,143.6,velocity,lower_ux,0.8849836587905884 +karman_re200,ppo,359,143.6,velocity,lower_uy,-0.42114800214767456 +karman_re200,ppo,360,144.0,velocity,upper_ux,1.163081407546997 +karman_re200,ppo,360,144.0,velocity,upper_uy,-0.3973083198070526 +karman_re200,ppo,360,144.0,velocity,center_ux,0.9372710585594177 +karman_re200,ppo,360,144.0,velocity,center_uy,-0.9069785475730896 +karman_re200,ppo,360,144.0,velocity,lower_ux,0.7948983907699585 +karman_re200,ppo,360,144.0,velocity,lower_uy,-0.3770209848880768 +karman_re200,ppo,361,144.4,velocity,upper_ux,1.2221215963363647 +karman_re200,ppo,361,144.4,velocity,upper_uy,-0.294288694858551 +karman_re200,ppo,361,144.4,velocity,center_ux,0.9817137122154236 +karman_re200,ppo,361,144.4,velocity,center_uy,-0.9069384932518005 +karman_re200,ppo,361,144.4,velocity,lower_ux,0.7171214818954468 +karman_re200,ppo,361,144.4,velocity,lower_uy,-0.2731131911277771 +karman_re200,ppo,362,144.8,velocity,upper_ux,1.2287721633911133 +karman_re200,ppo,362,144.8,velocity,upper_uy,-0.1362619251012802 +karman_re200,ppo,362,144.8,velocity,center_ux,1.0263583660125732 +karman_re200,ppo,362,144.8,velocity,center_uy,-0.2735587954521179 +karman_re200,ppo,362,144.8,velocity,lower_ux,0.6781784892082214 +karman_re200,ppo,362,144.8,velocity,lower_uy,-0.11851309984922409 +karman_re200,ppo,363,145.2,velocity,upper_ux,1.2437413930892944 +karman_re200,ppo,363,145.2,velocity,upper_uy,0.017623327672481537 +karman_re200,ppo,363,145.2,velocity,center_ux,1.0248671770095825 +karman_re200,ppo,363,145.2,velocity,center_uy,0.5626402497291565 +karman_re200,ppo,363,145.2,velocity,lower_ux,0.6989305019378662 +karman_re200,ppo,363,145.2,velocity,lower_uy,0.06012571230530739 +karman_re200,ppo,364,145.6,velocity,upper_ux,1.2020093202590942 +karman_re200,ppo,364,145.6,velocity,upper_uy,0.18450655043125153 +karman_re200,ppo,364,145.6,velocity,center_ux,0.9891208410263062 +karman_re200,ppo,364,145.6,velocity,center_uy,0.7559686899185181 +karman_re200,ppo,364,145.6,velocity,lower_ux,0.7565367817878723 +karman_re200,ppo,364,145.6,velocity,lower_uy,0.24896784126758575 +karman_re200,ppo,365,146.0,velocity,upper_ux,1.1001248359680176 +karman_re200,ppo,365,146.0,velocity,upper_uy,0.3327234983444214 +karman_re200,ppo,365,146.0,velocity,center_ux,0.9685333967208862 +karman_re200,ppo,365,146.0,velocity,center_uy,0.7620317935943604 +karman_re200,ppo,365,146.0,velocity,lower_ux,0.8430823683738708 +karman_re200,ppo,365,146.0,velocity,lower_uy,0.3956974446773529 +karman_re200,ppo,366,146.4,velocity,upper_ux,0.9956760406494141 +karman_re200,ppo,366,146.4,velocity,upper_uy,0.39221954345703125 +karman_re200,ppo,366,146.4,velocity,center_ux,0.9608051180839539 +karman_re200,ppo,366,146.4,velocity,center_uy,0.7823837399482727 +karman_re200,ppo,366,146.4,velocity,lower_ux,0.9530092477798462 +karman_re200,ppo,366,146.4,velocity,lower_uy,0.4487855136394501 +karman_re200,ppo,367,146.8,velocity,upper_ux,0.8946874141693115 +karman_re200,ppo,367,146.8,velocity,upper_uy,0.39200443029403687 +karman_re200,ppo,367,146.8,velocity,center_ux,0.955920934677124 +karman_re200,ppo,367,146.8,velocity,center_uy,0.8098791241645813 +karman_re200,ppo,367,146.8,velocity,lower_ux,1.0575722455978394 +karman_re200,ppo,367,146.8,velocity,lower_uy,0.4693908393383026 +karman_re200,ppo,368,147.2,velocity,upper_ux,0.7971028089523315 +karman_re200,ppo,368,147.2,velocity,upper_uy,0.33792632818222046 +karman_re200,ppo,368,147.2,velocity,center_ux,0.9568141102790833 +karman_re200,ppo,368,147.2,velocity,center_uy,0.847655713558197 +karman_re200,ppo,368,147.2,velocity,lower_ux,1.1458967924118042 +karman_re200,ppo,368,147.2,velocity,lower_uy,0.43470269441604614 +karman_re200,ppo,369,147.6,velocity,upper_ux,0.7160710096359253 +karman_re200,ppo,369,147.6,velocity,upper_uy,0.22744974493980408 +karman_re200,ppo,369,147.6,velocity,center_ux,0.9738677144050598 +karman_re200,ppo,369,147.6,velocity,center_uy,0.8485616445541382 +karman_re200,ppo,369,147.6,velocity,lower_ux,1.2027692794799805 +karman_re200,ppo,369,147.6,velocity,lower_uy,0.3531392216682434 +karman_re200,ppo,370,148.0,velocity,upper_ux,0.6856143474578857 +karman_re200,ppo,370,148.0,velocity,upper_uy,0.0718691274523735 +karman_re200,ppo,370,148.0,velocity,center_ux,0.9641820788383484 +karman_re200,ppo,370,148.0,velocity,center_uy,0.3464054465293884 +karman_re200,ppo,370,148.0,velocity,lower_ux,1.1823064088821411 +karman_re200,ppo,370,148.0,velocity,lower_uy,0.17778779566287994 +karman_re200,ppo,371,148.4,velocity,upper_ux,0.7266942858695984 +karman_re200,ppo,371,148.4,velocity,upper_uy,-0.0951145812869072 +karman_re200,ppo,371,148.4,velocity,center_ux,0.9381147027015686 +karman_re200,ppo,371,148.4,velocity,center_uy,-0.545452356338501 +karman_re200,ppo,371,148.4,velocity,lower_ux,1.116346001625061 +karman_re200,ppo,371,148.4,velocity,lower_uy,-0.06469449400901794 +karman_re200,ppo,372,148.8,velocity,upper_ux,0.7948861122131348 +karman_re200,ppo,372,148.8,velocity,upper_uy,-0.26422858238220215 +karman_re200,ppo,372,148.8,velocity,center_ux,0.9357081055641174 +karman_re200,ppo,372,148.8,velocity,center_uy,-0.8126550316810608 +karman_re200,ppo,372,148.8,velocity,lower_ux,1.1102862358093262 +karman_re200,ppo,372,148.8,velocity,lower_uy,-0.22560855746269226 +karman_re200,ppo,373,149.2,velocity,upper_ux,0.8882007598876953 +karman_re200,ppo,373,149.2,velocity,upper_uy,-0.38082072138786316 +karman_re200,ppo,373,149.2,velocity,center_ux,0.9368693828582764 +karman_re200,ppo,373,149.2,velocity,center_uy,-0.7997880578041077 +karman_re200,ppo,373,149.2,velocity,lower_ux,1.048985481262207 +karman_re200,ppo,373,149.2,velocity,lower_uy,-0.35219696164131165 +karman_re200,ppo,374,149.6,velocity,upper_ux,0.994927167892456 +karman_re200,ppo,374,149.6,velocity,upper_uy,-0.4277060329914093 +karman_re200,ppo,374,149.6,velocity,center_ux,0.9341205358505249 +karman_re200,ppo,374,149.6,velocity,center_uy,-0.8108890652656555 +karman_re200,ppo,374,149.6,velocity,lower_ux,0.9553982019424438 +karman_re200,ppo,374,149.6,velocity,lower_uy,-0.4084809124469757 +karman_re200,ppo,375,150.0,velocity,upper_ux,1.0985649824142456 +karman_re200,ppo,375,150.0,velocity,upper_uy,-0.43200987577438354 +karman_re200,ppo,375,150.0,velocity,center_ux,0.9419950246810913 +karman_re200,ppo,375,150.0,velocity,center_uy,-0.849922239780426 +karman_re200,ppo,375,150.0,velocity,lower_ux,0.8591012358665466 +karman_re200,ppo,375,150.0,velocity,lower_uy,-0.40685001015663147 +karman_re200,ppo,376,150.4,velocity,upper_ux,1.1856162548065186 +karman_re200,ppo,376,150.4,velocity,upper_uy,-0.37572816014289856 +karman_re200,ppo,376,150.4,velocity,center_ux,0.9771139621734619 +karman_re200,ppo,376,150.4,velocity,center_uy,-0.9179663062095642 +karman_re200,ppo,376,150.4,velocity,lower_ux,0.7654724717140198 +karman_re200,ppo,376,150.4,velocity,lower_uy,-0.3461975157260895 +karman_re200,ppo,377,150.8,velocity,upper_ux,1.2274096012115479 +karman_re200,ppo,377,150.8,velocity,upper_uy,-0.2586161196231842 +karman_re200,ppo,377,150.8,velocity,center_ux,1.0435056686401367 +karman_re200,ppo,377,150.8,velocity,center_uy,-0.7934954166412354 +karman_re200,ppo,377,150.8,velocity,lower_ux,0.6924684047698975 +karman_re200,ppo,377,150.8,velocity,lower_uy,-0.22587749361991882 +karman_re200,ppo,378,151.2,velocity,upper_ux,1.225809931755066 +karman_re200,ppo,378,151.2,velocity,upper_uy,-0.09681639820337296 +karman_re200,ppo,378,151.2,velocity,center_ux,1.0917918682098389 +karman_re200,ppo,378,151.2,velocity,center_uy,0.014563044533133507 +karman_re200,ppo,378,151.2,velocity,lower_ux,0.6720278859138489 +karman_re200,ppo,378,151.2,velocity,lower_uy,-0.06034425273537636 +karman_re200,ppo,379,151.6,velocity,upper_ux,1.231521725654602 +karman_re200,ppo,379,151.6,velocity,upper_uy,0.05551084131002426 +karman_re200,ppo,379,151.6,velocity,center_ux,1.053106665611267 +karman_re200,ppo,379,151.6,velocity,center_uy,0.663089394569397 +karman_re200,ppo,379,151.6,velocity,lower_ux,0.7119317054748535 +karman_re200,ppo,379,151.6,velocity,lower_uy,0.1192004382610321 +karman_re200,ppo,380,152.0,velocity,upper_ux,1.169449806213379 +karman_re200,ppo,380,152.0,velocity,upper_uy,0.22330708801746368 +karman_re200,ppo,380,152.0,velocity,center_ux,0.9949218034744263 +karman_re200,ppo,380,152.0,velocity,center_uy,0.7306979894638062 +karman_re200,ppo,380,152.0,velocity,lower_ux,0.7758157849311829 +karman_re200,ppo,380,152.0,velocity,lower_uy,0.3094261586666107 +karman_re200,ppo,381,152.4,velocity,upper_ux,1.0680012702941895 +karman_re200,ppo,381,152.4,velocity,upper_uy,0.3521846830844879 +karman_re200,ppo,381,152.4,velocity,center_ux,0.9660805463790894 +karman_re200,ppo,381,152.4,velocity,center_uy,0.7487955689430237 +karman_re200,ppo,381,152.4,velocity,lower_ux,0.8723094463348389 +karman_re200,ppo,381,152.4,velocity,lower_uy,0.4270317852497101 +karman_re200,ppo,382,152.8,velocity,upper_ux,0.9747564792633057 +karman_re200,ppo,382,152.8,velocity,upper_uy,0.3913620710372925 +karman_re200,ppo,382,152.8,velocity,center_ux,0.9445250034332275 +karman_re200,ppo,382,152.8,velocity,center_uy,0.762770414352417 +karman_re200,ppo,382,152.8,velocity,lower_ux,0.9815358519554138 +karman_re200,ppo,382,152.8,velocity,lower_uy,0.4729367792606354 +karman_re200,ppo,383,153.2,velocity,upper_ux,0.8904563784599304 +karman_re200,ppo,383,153.2,velocity,upper_uy,0.380899041891098 +karman_re200,ppo,383,153.2,velocity,center_ux,0.9168354272842407 +karman_re200,ppo,383,153.2,velocity,center_uy,0.791222095489502 +karman_re200,ppo,383,153.2,velocity,lower_ux,1.0868195295333862 +karman_re200,ppo,383,153.2,velocity,lower_uy,0.48790374398231506 +karman_re200,ppo,384,153.6,velocity,upper_ux,0.8141465187072754 +karman_re200,ppo,384,153.6,velocity,upper_uy,0.3158906400203705 +karman_re200,ppo,384,153.6,velocity,center_ux,0.8694355487823486 +karman_re200,ppo,384,153.6,velocity,center_uy,0.8228238821029663 +karman_re200,ppo,384,153.6,velocity,lower_ux,1.1812154054641724 +karman_re200,ppo,384,153.6,velocity,lower_uy,0.44485580921173096 +karman_re200,ppo,385,154.0,velocity,upper_ux,0.7545890212059021 +karman_re200,ppo,385,154.0,velocity,upper_uy,0.20337148010730743 +karman_re200,ppo,385,154.0,velocity,center_ux,0.7692835927009583 +karman_re200,ppo,385,154.0,velocity,center_uy,0.7875560522079468 +karman_re200,ppo,385,154.0,velocity,lower_ux,1.2355552911758423 +karman_re200,ppo,385,154.0,velocity,lower_uy,0.33586081862449646 +karman_re200,ppo,386,154.4,velocity,upper_ux,0.7377593517303467 +karman_re200,ppo,386,154.4,velocity,upper_uy,0.05394429340958595 +karman_re200,ppo,386,154.4,velocity,center_ux,0.6572835445404053 +karman_re200,ppo,386,154.4,velocity,center_uy,0.194542795419693 +karman_re200,ppo,386,154.4,velocity,lower_ux,1.2051284313201904 +karman_re200,ppo,386,154.4,velocity,lower_uy,0.10316842794418335 +karman_re200,ppo,387,154.8,velocity,upper_ux,0.7653211951255798 +karman_re200,ppo,387,154.8,velocity,upper_uy,-0.11722920089960098 +karman_re200,ppo,387,154.8,velocity,center_ux,0.7078027129173279 +karman_re200,ppo,387,154.8,velocity,center_uy,-0.6116369962692261 +karman_re200,ppo,387,154.8,velocity,lower_ux,1.1995482444763184 +karman_re200,ppo,387,154.8,velocity,lower_uy,-0.11406279355287552 +karman_re200,ppo,388,155.2,velocity,upper_ux,0.818379282951355 +karman_re200,ppo,388,155.2,velocity,upper_uy,-0.28636181354522705 +karman_re200,ppo,388,155.2,velocity,center_ux,0.8291500210762024 +karman_re200,ppo,388,155.2,velocity,center_uy,-0.8056553602218628 +karman_re200,ppo,388,155.2,velocity,lower_ux,1.166835069656372 +karman_re200,ppo,388,155.2,velocity,lower_uy,-0.27990782260894775 +karman_re200,ppo,389,155.6,velocity,upper_ux,0.9121677279472351 +karman_re200,ppo,389,155.6,velocity,upper_uy,-0.380088210105896 +karman_re200,ppo,389,155.6,velocity,center_ux,0.89028000831604 +karman_re200,ppo,389,155.6,velocity,center_uy,-0.8194609880447388 +karman_re200,ppo,389,155.6,velocity,lower_ux,1.0698299407958984 +karman_re200,ppo,389,155.6,velocity,lower_uy,-0.4054628610610962 +karman_re200,ppo,390,156.0,velocity,upper_ux,1.0143730640411377 +karman_re200,ppo,390,156.0,velocity,upper_uy,-0.4191277027130127 +karman_re200,ppo,390,156.0,velocity,center_ux,0.9196025729179382 +karman_re200,ppo,390,156.0,velocity,center_uy,-0.8405407071113586 +karman_re200,ppo,390,156.0,velocity,lower_ux,0.9594619274139404 +karman_re200,ppo,390,156.0,velocity,lower_uy,-0.44781771302223206 +karman_re200,ppo,391,156.4,velocity,upper_ux,1.1127140522003174 +karman_re200,ppo,391,156.4,velocity,upper_uy,-0.41256478428840637 +karman_re200,ppo,391,156.4,velocity,center_ux,0.9571579098701477 +karman_re200,ppo,391,156.4,velocity,center_uy,-0.8787254095077515 +karman_re200,ppo,391,156.4,velocity,lower_ux,0.8516102433204651 +karman_re200,ppo,391,156.4,velocity,lower_uy,-0.4319057762622833 +karman_re200,ppo,392,156.8,velocity,upper_ux,1.1911547183990479 +karman_re200,ppo,392,156.8,velocity,upper_uy,-0.34494704008102417 +karman_re200,ppo,392,156.8,velocity,center_ux,1.0334879159927368 +karman_re200,ppo,392,156.8,velocity,center_uy,-0.9434122443199158 +karman_re200,ppo,392,156.8,velocity,lower_ux,0.7506024241447449 +karman_re200,ppo,392,156.8,velocity,lower_uy,-0.3510216772556305 +karman_re200,ppo,393,157.2,velocity,upper_ux,1.2161277532577515 +karman_re200,ppo,393,157.2,velocity,upper_uy,-0.21606069803237915 +karman_re200,ppo,393,157.2,velocity,center_ux,1.1452851295471191 +karman_re200,ppo,393,157.2,velocity,center_uy,-0.6580343842506409 +karman_re200,ppo,393,157.2,velocity,lower_ux,0.6782057285308838 +karman_re200,ppo,393,157.2,velocity,lower_uy,-0.20743896067142487 +karman_re200,ppo,394,157.6,velocity,upper_ux,1.2046022415161133 +karman_re200,ppo,394,157.6,velocity,upper_uy,-0.05023808404803276 +karman_re200,ppo,394,157.6,velocity,center_ux,1.1873234510421753 +karman_re200,ppo,394,157.6,velocity,center_uy,0.2294655442237854 +karman_re200,ppo,394,157.6,velocity,lower_ux,0.6720775365829468 +karman_re200,ppo,394,157.6,velocity,lower_uy,-0.021928148344159126 +karman_re200,ppo,395,158.0,velocity,upper_ux,1.2030926942825317 +karman_re200,ppo,395,158.0,velocity,upper_uy,0.09630027413368225 +karman_re200,ppo,395,158.0,velocity,center_ux,1.1058982610702515 +karman_re200,ppo,395,158.0,velocity,center_uy,0.6996427178382874 +karman_re200,ppo,395,158.0,velocity,lower_ux,0.7277082800865173 +karman_re200,ppo,395,158.0,velocity,lower_uy,0.17163032293319702 +karman_re200,ppo,396,158.4,velocity,upper_ux,1.1353511810302734 +karman_re200,ppo,396,158.4,velocity,upper_uy,0.24648992717266083 +karman_re200,ppo,396,158.4,velocity,center_ux,1.027438998222351 +karman_re200,ppo,396,158.4,velocity,center_uy,0.7207584381103516 +karman_re200,ppo,396,158.4,velocity,lower_ux,0.8006554245948792 +karman_re200,ppo,396,158.4,velocity,lower_uy,0.36177363991737366 +karman_re200,ppo,397,158.8,velocity,upper_ux,1.0379040241241455 +karman_re200,ppo,397,158.8,velocity,upper_uy,0.344092458486557 +karman_re200,ppo,397,158.8,velocity,center_ux,0.9900962114334106 +karman_re200,ppo,397,158.8,velocity,center_uy,0.7404972910881042 +karman_re200,ppo,397,158.8,velocity,lower_ux,0.9055261015892029 +karman_re200,ppo,397,158.8,velocity,lower_uy,0.4488441050052643 +karman_re200,ppo,398,159.2,velocity,upper_ux,0.9452968835830688 +karman_re200,ppo,398,159.2,velocity,upper_uy,0.36430469155311584 +karman_re200,ppo,398,159.2,velocity,center_ux,0.9614661335945129 +karman_re200,ppo,398,159.2,velocity,center_uy,0.7510030269622803 +karman_re200,ppo,398,159.2,velocity,lower_ux,1.0128452777862549 +karman_re200,ppo,398,159.2,velocity,lower_uy,0.4846935570240021 +karman_re200,ppo,399,159.6,velocity,upper_ux,0.8568965196609497 +karman_re200,ppo,399,159.6,velocity,upper_uy,0.33948054909706116 +karman_re200,ppo,399,159.6,velocity,center_ux,0.9277926683425903 +karman_re200,ppo,399,159.6,velocity,center_uy,0.7811403870582581 +karman_re200,ppo,399,159.6,velocity,lower_ux,1.1125777959823608 +karman_re200,ppo,399,159.6,velocity,lower_uy,0.4846740961074829 +karman_re200,ppo,0,0.0,force,front_fx,-0.00010287521581631154 +karman_re200,ppo,0,0.0,force,front_fy,0.004918253514915705 +karman_re200,ppo,0,0.0,force,upper_fx,-0.004674662835896015 +karman_re200,ppo,0,0.0,force,upper_fy,0.0032017179764807224 +karman_re200,ppo,0,0.0,force,lower_fx,0.002675248309969902 +karman_re200,ppo,0,0.0,force,lower_fy,-0.005003458820283413 +karman_re200,ppo,1,0.4,force,front_fx,0.0015578515594825149 +karman_re200,ppo,1,0.4,force,front_fy,0.004006008617579937 +karman_re200,ppo,1,0.4,force,upper_fx,-0.008297774009406567 +karman_re200,ppo,1,0.4,force,upper_fy,0.004585345275700092 +karman_re200,ppo,1,0.4,force,lower_fx,0.0030701556243002415 +karman_re200,ppo,1,0.4,force,lower_fy,-0.004418442957103252 +karman_re200,ppo,2,0.8,force,front_fx,0.005140007007867098 +karman_re200,ppo,2,0.8,force,front_fy,0.004928377456963062 +karman_re200,ppo,2,0.8,force,upper_fx,-0.010753270238637924 +karman_re200,ppo,2,0.8,force,upper_fy,0.006118900142610073 +karman_re200,ppo,2,0.8,force,lower_fx,0.0029317939188331366 +karman_re200,ppo,2,0.8,force,lower_fy,-0.003703394206240773 +karman_re200,ppo,3,1.2,force,front_fx,0.0058205751702189445 +karman_re200,ppo,3,1.2,force,front_fy,0.0050124842673540115 +karman_re200,ppo,3,1.2,force,upper_fx,-0.009391026571393013 +karman_re200,ppo,3,1.2,force,upper_fy,0.007846007123589516 +karman_re200,ppo,3,1.2,force,lower_fx,0.00285820453427732 +karman_re200,ppo,3,1.2,force,lower_fy,-0.0034526383969932795 +karman_re200,ppo,4,1.6,force,front_fx,0.006797805894166231 +karman_re200,ppo,4,1.6,force,front_fy,0.003525563981384039 +karman_re200,ppo,4,1.6,force,upper_fx,-0.005531233735382557 +karman_re200,ppo,4,1.6,force,upper_fy,0.005319235846400261 +karman_re200,ppo,4,1.6,force,lower_fx,0.002294138539582491 +karman_re200,ppo,4,1.6,force,lower_fy,-0.003045553807169199 +karman_re200,ppo,5,2.0,force,front_fx,0.004840408451855183 +karman_re200,ppo,5,2.0,force,front_fy,0.000913094962015748 +karman_re200,ppo,5,2.0,force,upper_fx,-0.0038335237186402082 +karman_re200,ppo,5,2.0,force,upper_fy,0.0023487010039389133 +karman_re200,ppo,5,2.0,force,lower_fx,0.0013395256828516722 +karman_re200,ppo,5,2.0,force,lower_fy,-0.0030044042505323887 +karman_re200,ppo,6,2.4,force,front_fx,0.0023138930555433035 +karman_re200,ppo,6,2.4,force,front_fy,-0.002133723581209779 +karman_re200,ppo,6,2.4,force,upper_fx,-0.00368470698595047 +karman_re200,ppo,6,2.4,force,upper_fy,0.002336840843781829 +karman_re200,ppo,6,2.4,force,lower_fx,0.00042284929077140987 +karman_re200,ppo,6,2.4,force,lower_fy,-0.003274790942668915 +karman_re200,ppo,7,2.8,force,front_fx,0.0005417703650891781 +karman_re200,ppo,7,2.8,force,front_fy,-0.004257409367710352 +karman_re200,ppo,7,2.8,force,upper_fx,-0.0030638284515589476 +karman_re200,ppo,7,2.8,force,upper_fy,0.005259199533611536 +karman_re200,ppo,7,2.8,force,lower_fx,-0.0006383955478668213 +karman_re200,ppo,7,2.8,force,lower_fy,-0.0033126731868833303 +karman_re200,ppo,8,3.2,force,front_fx,-0.001166416215710342 +karman_re200,ppo,8,3.2,force,front_fy,-0.004316028207540512 +karman_re200,ppo,8,3.2,force,upper_fx,-0.0005373882013373077 +karman_re200,ppo,8,3.2,force,upper_fy,0.007747780531644821 +karman_re200,ppo,8,3.2,force,lower_fx,-0.0011386950500309467 +karman_re200,ppo,8,3.2,force,lower_fy,-0.0033330617006868124 +karman_re200,ppo,9,3.6,force,front_fx,-0.0018379900138825178 +karman_re200,ppo,9,3.6,force,front_fy,-0.003946639597415924 +karman_re200,ppo,9,3.6,force,upper_fx,0.002436634385958314 +karman_re200,ppo,9,3.6,force,upper_fy,0.0078098224475979805 +karman_re200,ppo,9,3.6,force,lower_fx,-0.0016704881563782692 +karman_re200,ppo,9,3.6,force,lower_fy,-0.003911423496901989 +karman_re200,ppo,10,4.0,force,front_fx,-0.0008439957164227962 +karman_re200,ppo,10,4.0,force,front_fy,-0.003455512225627899 +karman_re200,ppo,10,4.0,force,upper_fx,0.0040679206140339375 +karman_re200,ppo,10,4.0,force,upper_fy,0.006901162210851908 +karman_re200,ppo,10,4.0,force,lower_fx,-0.0010392448166385293 +karman_re200,ppo,10,4.0,force,lower_fy,-0.0033997215796262026 +karman_re200,ppo,11,4.4,force,front_fx,0.0015980270691215992 +karman_re200,ppo,11,4.4,force,front_fy,-0.0022209682501852512 +karman_re200,ppo,11,4.4,force,upper_fx,0.0045048207975924015 +karman_re200,ppo,11,4.4,force,upper_fy,0.005970410071313381 +karman_re200,ppo,11,4.4,force,lower_fx,-0.0022015266586095095 +karman_re200,ppo,11,4.4,force,lower_fy,-0.001270575332455337 +karman_re200,ppo,12,4.8,force,front_fx,0.003462748834863305 +karman_re200,ppo,12,4.8,force,front_fy,-0.0003445142647251487 +karman_re200,ppo,12,4.8,force,upper_fx,0.0039873127825558186 +karman_re200,ppo,12,4.8,force,upper_fy,0.004639059770852327 +karman_re200,ppo,12,4.8,force,lower_fx,-0.004468676168471575 +karman_re200,ppo,12,4.8,force,lower_fy,-0.0015064156614243984 +karman_re200,ppo,13,5.2,force,front_fx,0.0024590904358774424 +karman_re200,ppo,13,5.2,force,front_fy,0.001275756862014532 +karman_re200,ppo,13,5.2,force,upper_fx,0.00293174060061574 +karman_re200,ppo,13,5.2,force,upper_fy,0.004213869571685791 +karman_re200,ppo,13,5.2,force,lower_fx,-0.003473903052508831 +karman_re200,ppo,13,5.2,force,lower_fy,-0.0043653082102537155 +karman_re200,ppo,14,5.6,force,front_fx,0.000633340678177774 +karman_re200,ppo,14,5.6,force,front_fy,0.0029129686299711466 +karman_re200,ppo,14,5.6,force,upper_fx,0.0009942030301317573 +karman_re200,ppo,14,5.6,force,upper_fy,0.005242671351879835 +karman_re200,ppo,14,5.6,force,lower_fx,0.00013198396482039243 +karman_re200,ppo,14,5.6,force,lower_fy,-0.005879678763449192 +karman_re200,ppo,15,6.0,force,front_fx,-0.0009614799055270851 +karman_re200,ppo,15,6.0,force,front_fy,0.004153737798333168 +karman_re200,ppo,15,6.0,force,upper_fx,-0.0009439834975637496 +karman_re200,ppo,15,6.0,force,upper_fy,0.005709528923034668 +karman_re200,ppo,15,6.0,force,lower_fx,0.0028132388833910227 +karman_re200,ppo,15,6.0,force,lower_fy,-0.005941628944128752 +karman_re200,ppo,16,6.4,force,front_fx,-0.0011792998993769288 +karman_re200,ppo,16,6.4,force,front_fy,0.004619556479156017 +karman_re200,ppo,16,6.4,force,upper_fx,-0.002440163865685463 +karman_re200,ppo,16,6.4,force,upper_fy,0.0052634249441325665 +karman_re200,ppo,16,6.4,force,lower_fx,0.004441728815436363 +karman_re200,ppo,16,6.4,force,lower_fy,-0.0060713030397892 +karman_re200,ppo,17,6.8,force,front_fx,0.00028673090855591 +karman_re200,ppo,17,6.8,force,front_fy,0.004598078317940235 +karman_re200,ppo,17,6.8,force,upper_fx,-0.004289443604648113 +karman_re200,ppo,17,6.8,force,upper_fy,0.003735760459676385 +karman_re200,ppo,17,6.8,force,lower_fx,0.005305081605911255 +karman_re200,ppo,17,6.8,force,lower_fy,-0.006056340876966715 +karman_re200,ppo,18,7.2,force,front_fx,0.003508961293846369 +karman_re200,ppo,18,7.2,force,front_fy,0.0038552326150238514 +karman_re200,ppo,18,7.2,force,upper_fx,-0.007052574306726456 +karman_re200,ppo,18,7.2,force,upper_fy,0.0020155292004346848 +karman_re200,ppo,18,7.2,force,lower_fx,0.005003101192414761 +karman_re200,ppo,18,7.2,force,lower_fy,-0.005514843855053186 +karman_re200,ppo,19,7.6,force,front_fx,0.006539024878293276 +karman_re200,ppo,19,7.6,force,front_fy,0.002662121085450053 +karman_re200,ppo,19,7.6,force,upper_fx,-0.00960883405059576 +karman_re200,ppo,19,7.6,force,upper_fy,0.0020792291034013033 +karman_re200,ppo,19,7.6,force,lower_fx,0.004851834382861853 +karman_re200,ppo,19,7.6,force,lower_fy,-0.003920934163033962 +karman_re200,ppo,20,8.0,force,front_fx,0.0064233154989778996 +karman_re200,ppo,20,8.0,force,front_fy,0.0005983238806948066 +karman_re200,ppo,20,8.0,force,upper_fx,-0.008239149115979671 +karman_re200,ppo,20,8.0,force,upper_fy,0.004482923075556755 +karman_re200,ppo,20,8.0,force,lower_fx,0.004431584849953651 +karman_re200,ppo,20,8.0,force,lower_fy,-0.003012289060279727 +karman_re200,ppo,21,8.4,force,front_fx,0.005066745914518833 +karman_re200,ppo,21,8.4,force,front_fy,-0.001100730849429965 +karman_re200,ppo,21,8.4,force,upper_fx,-0.004070614464581013 +karman_re200,ppo,21,8.4,force,upper_fy,0.004441290162503719 +karman_re200,ppo,21,8.4,force,lower_fx,0.0031443354673683643 +karman_re200,ppo,21,8.4,force,lower_fy,-0.003949927166104317 +karman_re200,ppo,22,8.8,force,front_fx,0.002167286816984415 +karman_re200,ppo,22,8.8,force,front_fy,-0.0030851871706545353 +karman_re200,ppo,22,8.8,force,upper_fx,-0.000970583176240325 +karman_re200,ppo,22,8.8,force,upper_fy,0.0034426325000822544 +karman_re200,ppo,22,8.8,force,lower_fx,0.0013528239214792848 +karman_re200,ppo,22,8.8,force,lower_fy,-0.004968855530023575 +karman_re200,ppo,23,9.2,force,front_fx,-0.0010823338525369763 +karman_re200,ppo,23,9.2,force,front_fy,-0.004271374549716711 +karman_re200,ppo,23,9.2,force,upper_fx,0.0011435366468504071 +karman_re200,ppo,23,9.2,force,upper_fy,0.003577087540179491 +karman_re200,ppo,23,9.2,force,lower_fx,0.00037663764669559896 +karman_re200,ppo,23,9.2,force,lower_fy,-0.005925473757088184 +karman_re200,ppo,24,9.6,force,front_fx,-0.0025711723137646914 +karman_re200,ppo,24,9.6,force,front_fy,-0.005079512484371662 +karman_re200,ppo,24,9.6,force,upper_fx,0.0022874907590448856 +karman_re200,ppo,24,9.6,force,upper_fy,0.004182321950793266 +karman_re200,ppo,24,9.6,force,lower_fx,-0.0007360228337347507 +karman_re200,ppo,24,9.6,force,lower_fy,-0.005740793887525797 +karman_re200,ppo,25,10.0,force,front_fx,-0.0023689523804932833 +karman_re200,ppo,25,10.0,force,front_fy,-0.0050366963259875774 +karman_re200,ppo,25,10.0,force,upper_fx,0.003114652819931507 +karman_re200,ppo,25,10.0,force,upper_fy,0.004911969881504774 +karman_re200,ppo,25,10.0,force,lower_fx,-0.0020147403702139854 +karman_re200,ppo,25,10.0,force,lower_fy,-0.004812947940081358 +karman_re200,ppo,26,10.4,force,front_fx,-0.0006135156727395952 +karman_re200,ppo,26,10.4,force,front_fy,-0.004160204436630011 +karman_re200,ppo,26,10.4,force,upper_fx,0.0037989001721143723 +karman_re200,ppo,26,10.4,force,upper_fy,0.005355197004973888 +karman_re200,ppo,26,10.4,force,lower_fx,-0.0034813701640814543 +karman_re200,ppo,26,10.4,force,lower_fy,-0.003757497761398554 +karman_re200,ppo,27,10.8,force,front_fx,0.002073426963761449 +karman_re200,ppo,27,10.8,force,front_fy,-0.002395587507635355 +karman_re200,ppo,27,10.8,force,upper_fx,0.004029220435768366 +karman_re200,ppo,27,10.8,force,upper_fy,0.005720296874642372 +karman_re200,ppo,27,10.8,force,lower_fx,-0.005139961838722229 +karman_re200,ppo,27,10.8,force,lower_fy,-0.0029803207144141197 +karman_re200,ppo,28,11.2,force,front_fx,0.00416257418692112 +karman_re200,ppo,28,11.2,force,front_fy,-4.738991265185177e-05 +karman_re200,ppo,28,11.2,force,upper_fx,0.0035026618279516697 +karman_re200,ppo,28,11.2,force,upper_fy,0.005261370446532965 +karman_re200,ppo,28,11.2,force,lower_fx,-0.006559376604855061 +karman_re200,ppo,28,11.2,force,lower_fy,-0.0029199167620390654 +karman_re200,ppo,29,11.6,force,front_fx,0.003070289269089699 +karman_re200,ppo,29,11.6,force,front_fy,0.0016106776893138885 +karman_re200,ppo,29,11.6,force,upper_fx,0.002746797166764736 +karman_re200,ppo,29,11.6,force,upper_fy,0.004589482676237822 +karman_re200,ppo,29,11.6,force,lower_fx,-0.00583881139755249 +karman_re200,ppo,29,11.6,force,lower_fy,-0.004724682774394751 +karman_re200,ppo,30,12.0,force,front_fx,0.0010349516524001956 +karman_re200,ppo,30,12.0,force,front_fy,0.0034126376267522573 +karman_re200,ppo,30,12.0,force,upper_fx,0.0011303005740046501 +karman_re200,ppo,30,12.0,force,upper_fy,0.005059482529759407 +karman_re200,ppo,30,12.0,force,lower_fx,-0.0020849527791142464 +karman_re200,ppo,30,12.0,force,lower_fy,-0.005876130424439907 +karman_re200,ppo,31,12.4,force,front_fx,-0.001185088069178164 +karman_re200,ppo,31,12.4,force,front_fy,0.004571879748255014 +karman_re200,ppo,31,12.4,force,upper_fx,-0.0004074433818459511 +karman_re200,ppo,31,12.4,force,upper_fy,0.005533576011657715 +karman_re200,ppo,31,12.4,force,lower_fx,0.0009493807447142899 +karman_re200,ppo,31,12.4,force,lower_fy,-0.005614242050796747 +karman_re200,ppo,32,12.8,force,front_fx,-0.002562201116234064 +karman_re200,ppo,32,12.8,force,front_fy,0.0049754721112549305 +karman_re200,ppo,32,12.8,force,upper_fx,-0.0011996127432212234 +karman_re200,ppo,32,12.8,force,upper_fy,0.005647661164402962 +karman_re200,ppo,32,12.8,force,lower_fx,0.002782497787848115 +karman_re200,ppo,32,12.8,force,lower_fy,-0.00555299362167716 +karman_re200,ppo,33,13.2,force,front_fx,-0.0021864487789571285 +karman_re200,ppo,33,13.2,force,front_fy,0.004803192801773548 +karman_re200,ppo,33,13.2,force,upper_fx,-0.002202299889177084 +karman_re200,ppo,33,13.2,force,upper_fy,0.005033237859606743 +karman_re200,ppo,33,13.2,force,lower_fx,0.0038992685731500387 +karman_re200,ppo,33,13.2,force,lower_fy,-0.005614143796265125 +karman_re200,ppo,34,13.6,force,front_fx,0.0005341240321286023 +karman_re200,ppo,34,13.6,force,front_fy,0.004168068990111351 +karman_re200,ppo,34,13.6,force,upper_fx,-0.004010748118162155 +karman_re200,ppo,34,13.6,force,upper_fy,0.004317252431064844 +karman_re200,ppo,34,13.6,force,lower_fx,0.004480347502976656 +karman_re200,ppo,34,13.6,force,lower_fy,-0.005082224495708942 +karman_re200,ppo,35,14.0,force,front_fx,0.0045377882197499275 +karman_re200,ppo,35,14.0,force,front_fy,0.0019518376793712378 +karman_re200,ppo,35,14.0,force,upper_fx,-0.0064644161611795425 +karman_re200,ppo,35,14.0,force,upper_fy,0.0033384792041033506 +karman_re200,ppo,35,14.0,force,lower_fx,0.004229644779115915 +karman_re200,ppo,35,14.0,force,lower_fy,-0.004972054157406092 +karman_re200,ppo,36,14.4,force,front_fx,0.006094303913414478 +karman_re200,ppo,36,14.4,force,front_fy,-3.2918927900027484e-05 +karman_re200,ppo,36,14.4,force,upper_fx,-0.008569269441068172 +karman_re200,ppo,36,14.4,force,upper_fy,0.004746363963931799 +karman_re200,ppo,36,14.4,force,lower_fx,0.0046493434347212315 +karman_re200,ppo,36,14.4,force,lower_fy,-0.0036624795757234097 +karman_re200,ppo,37,14.8,force,front_fx,0.004402377642691135 +karman_re200,ppo,37,14.8,force,front_fy,-0.0018970721866935492 +karman_re200,ppo,37,14.8,force,upper_fx,-0.005542037542909384 +karman_re200,ppo,37,14.8,force,upper_fy,0.007499778177589178 +karman_re200,ppo,37,14.8,force,lower_fx,0.002643053885549307 +karman_re200,ppo,37,14.8,force,lower_fy,-0.0032715906854718924 +karman_re200,ppo,38,15.2,force,front_fx,0.0026480010710656643 +karman_re200,ppo,38,15.2,force,front_fy,-0.0031450765673071146 +karman_re200,ppo,38,15.2,force,upper_fx,-0.0020315146539360285 +karman_re200,ppo,38,15.2,force,upper_fy,0.006063861306756735 +karman_re200,ppo,38,15.2,force,lower_fx,0.0004501027869991958 +karman_re200,ppo,38,15.2,force,lower_fy,-0.003704635426402092 +karman_re200,ppo,39,15.6,force,front_fx,-0.00029809915577061474 +karman_re200,ppo,39,15.6,force,front_fy,-0.0041997372172772884 +karman_re200,ppo,39,15.6,force,upper_fx,0.00010222834680462256 +karman_re200,ppo,39,15.6,force,upper_fy,0.005395337473601103 +karman_re200,ppo,39,15.6,force,lower_fx,-0.0002801911614369601 +karman_re200,ppo,39,15.6,force,lower_fy,-0.0046741231344640255 +karman_re200,ppo,40,16.0,force,front_fx,-0.0021769264712929726 +karman_re200,ppo,40,16.0,force,front_fy,-0.004255266394466162 +karman_re200,ppo,40,16.0,force,upper_fx,0.0011922059347853065 +karman_re200,ppo,40,16.0,force,upper_fy,0.005229865200817585 +karman_re200,ppo,40,16.0,force,lower_fx,-9.894659160636365e-05 +karman_re200,ppo,40,16.0,force,lower_fy,-0.004843922331929207 +karman_re200,ppo,41,16.4,force,front_fx,-0.0022317192051559687 +karman_re200,ppo,41,16.4,force,front_fy,-0.004212237428873777 +karman_re200,ppo,41,16.4,force,upper_fx,0.0016389243537560105 +karman_re200,ppo,41,16.4,force,upper_fy,0.005180965643376112 +karman_re200,ppo,41,16.4,force,lower_fx,-0.0009209193522110581 +karman_re200,ppo,41,16.4,force,lower_fy,-0.00428693275898695 +karman_re200,ppo,42,16.8,force,front_fx,-0.0006140604382380843 +karman_re200,ppo,42,16.8,force,front_fy,-0.003412611549720168 +karman_re200,ppo,42,16.8,force,upper_fx,0.0020374972373247147 +karman_re200,ppo,42,16.8,force,upper_fy,0.005209481809288263 +karman_re200,ppo,42,16.8,force,lower_fx,-0.0017444482073187828 +karman_re200,ppo,42,16.8,force,lower_fy,-0.003386118682101369 +karman_re200,ppo,43,17.2,force,front_fx,0.0015342853730544448 +karman_re200,ppo,43,17.2,force,front_fy,-0.0017203218303620815 +karman_re200,ppo,43,17.2,force,upper_fx,0.002673142356798053 +karman_re200,ppo,43,17.2,force,upper_fy,0.005409028381109238 +karman_re200,ppo,43,17.2,force,lower_fx,-0.0029449034482240677 +karman_re200,ppo,43,17.2,force,lower_fy,-0.0024817681405693293 +karman_re200,ppo,44,17.6,force,front_fx,0.003094050334766507 +karman_re200,ppo,44,17.6,force,front_fy,0.000636787386611104 +karman_re200,ppo,44,17.6,force,upper_fx,0.002580111613497138 +karman_re200,ppo,44,17.6,force,upper_fy,0.004898345563560724 +karman_re200,ppo,44,17.6,force,lower_fx,-0.004634401760995388 +karman_re200,ppo,44,17.6,force,lower_fy,-0.0030001304112374783 +karman_re200,ppo,45,18.0,force,front_fx,0.0020537038799375296 +karman_re200,ppo,45,18.0,force,front_fy,0.001756676472723484 +karman_re200,ppo,45,18.0,force,upper_fx,0.0015277464408427477 +karman_re200,ppo,45,18.0,force,upper_fy,0.004319627303630114 +karman_re200,ppo,45,18.0,force,lower_fx,-0.004085661377757788 +karman_re200,ppo,45,18.0,force,lower_fy,-0.005845990963280201 +karman_re200,ppo,46,18.4,force,front_fx,9.143973875325173e-05 +karman_re200,ppo,46,18.4,force,front_fy,0.003258674405515194 +karman_re200,ppo,46,18.4,force,upper_fx,-0.00015151564730331302 +karman_re200,ppo,46,18.4,force,upper_fy,0.004814725369215012 +karman_re200,ppo,46,18.4,force,lower_fx,-0.0004783207841683179 +karman_re200,ppo,46,18.4,force,lower_fy,-0.007827125489711761 +karman_re200,ppo,47,18.8,force,front_fx,-0.0011318677570670843 +karman_re200,ppo,47,18.8,force,front_fy,0.004171926528215408 +karman_re200,ppo,47,18.8,force,upper_fx,-0.0017291897675022483 +karman_re200,ppo,47,18.8,force,upper_fy,0.005120918620377779 +karman_re200,ppo,47,18.8,force,lower_fx,0.0024727080017328262 +karman_re200,ppo,47,18.8,force,lower_fy,-0.007519354112446308 +karman_re200,ppo,48,19.2,force,front_fx,-0.0010772491805255413 +karman_re200,ppo,48,19.2,force,front_fy,0.0043672532774508 +karman_re200,ppo,48,19.2,force,upper_fx,-0.0025076689198613167 +karman_re200,ppo,48,19.2,force,upper_fy,0.004417342133820057 +karman_re200,ppo,48,19.2,force,lower_fx,0.003905175719410181 +karman_re200,ppo,48,19.2,force,lower_fy,-0.006665227003395557 +karman_re200,ppo,49,19.6,force,front_fx,0.0005595397087745368 +karman_re200,ppo,49,19.6,force,front_fy,0.004110773093998432 +karman_re200,ppo,49,19.6,force,upper_fx,-0.00375266931951046 +karman_re200,ppo,49,19.6,force,upper_fy,0.002832768950611353 +karman_re200,ppo,49,19.6,force,lower_fx,0.00462386105209589 +karman_re200,ppo,49,19.6,force,lower_fy,-0.005651697516441345 +karman_re200,ppo,50,20.0,force,front_fx,0.003765191650018096 +karman_re200,ppo,50,20.0,force,front_fy,0.0031156649347394705 +karman_re200,ppo,50,20.0,force,upper_fx,-0.005965087562799454 +karman_re200,ppo,50,20.0,force,upper_fy,0.0019772981759160757 +karman_re200,ppo,50,20.0,force,lower_fx,0.00487739872187376 +karman_re200,ppo,50,20.0,force,lower_fy,-0.004157637245953083 +karman_re200,ppo,51,20.4,force,front_fx,0.005852635949850082 +karman_re200,ppo,51,20.4,force,front_fy,0.0016481999773532152 +karman_re200,ppo,51,20.4,force,upper_fx,-0.0070727514103055 +karman_re200,ppo,51,20.4,force,upper_fy,0.003476090030744672 +karman_re200,ppo,51,20.4,force,lower_fx,0.0054254913702607155 +karman_re200,ppo,51,20.4,force,lower_fy,-0.002367917215451598 +karman_re200,ppo,52,20.8,force,front_fx,0.005366862285882235 +karman_re200,ppo,52,20.8,force,front_fy,-0.0003773170756176114 +karman_re200,ppo,52,20.8,force,upper_fx,-0.004459138959646225 +karman_re200,ppo,52,20.8,force,upper_fy,0.0054665906354784966 +karman_re200,ppo,52,20.8,force,lower_fx,0.00435566995292902 +karman_re200,ppo,52,20.8,force,lower_fy,-0.002487870864570141 +karman_re200,ppo,53,21.2,force,front_fx,0.003798259422183037 +karman_re200,ppo,53,21.2,force,front_fy,-0.0019180579110980034 +karman_re200,ppo,53,21.2,force,upper_fx,-0.0016054899897426367 +karman_re200,ppo,53,21.2,force,upper_fy,0.004159380216151476 +karman_re200,ppo,53,21.2,force,lower_fx,0.002152607310563326 +karman_re200,ppo,53,21.2,force,lower_fy,-0.003983079921454191 +karman_re200,ppo,54,21.6,force,front_fx,0.0007632882334291935 +karman_re200,ppo,54,21.6,force,front_fy,-0.0037652018945664167 +karman_re200,ppo,54,21.6,force,upper_fx,-5.6599204981466755e-05 +karman_re200,ppo,54,21.6,force,upper_fy,0.002912781434133649 +karman_re200,ppo,54,21.6,force,lower_fx,0.0001566888822708279 +karman_re200,ppo,54,21.6,force,lower_fy,-0.004551841411739588 +karman_re200,ppo,55,22.0,force,front_fx,-0.0017166642937809229 +karman_re200,ppo,55,22.0,force,front_fy,-0.004880758933722973 +karman_re200,ppo,55,22.0,force,upper_fx,0.0006742427358403802 +karman_re200,ppo,55,22.0,force,upper_fy,0.003441189182922244 +karman_re200,ppo,55,22.0,force,lower_fx,-0.0002747443213593215 +karman_re200,ppo,55,22.0,force,lower_fy,-0.00465686060488224 +karman_re200,ppo,56,22.4,force,front_fx,-0.0023854882456362247 +karman_re200,ppo,56,22.4,force,front_fy,-0.005391979590058327 +karman_re200,ppo,56,22.4,force,upper_fx,0.0012960992753505707 +karman_re200,ppo,56,22.4,force,upper_fy,0.004925066605210304 +karman_re200,ppo,56,22.4,force,lower_fx,-0.0009625948732718825 +karman_re200,ppo,56,22.4,force,lower_fy,-0.00427198875695467 +karman_re200,ppo,57,22.8,force,front_fx,-0.0012154756113886833 +karman_re200,ppo,57,22.8,force,front_fy,-0.004576257895678282 +karman_re200,ppo,57,22.8,force,upper_fx,0.0023534847423434258 +karman_re200,ppo,57,22.8,force,upper_fy,0.005769334267824888 +karman_re200,ppo,57,22.8,force,lower_fx,-0.0019952859729528427 +karman_re200,ppo,57,22.8,force,lower_fy,-0.004136922303587198 +karman_re200,ppo,58,23.2,force,front_fx,0.0010571008315309882 +karman_re200,ppo,58,23.2,force,front_fy,-0.003568977816030383 +karman_re200,ppo,58,23.2,force,upper_fx,0.003680218243971467 +karman_re200,ppo,58,23.2,force,upper_fy,0.005877980496734381 +karman_re200,ppo,58,23.2,force,lower_fx,-0.0023926699068397284 +karman_re200,ppo,58,23.2,force,lower_fy,-0.003937757108360529 +karman_re200,ppo,59,23.6,force,front_fx,0.0038175517693161964 +karman_re200,ppo,59,23.6,force,front_fy,-0.0010824216296896338 +karman_re200,ppo,59,23.6,force,upper_fx,0.0038781941402703524 +karman_re200,ppo,59,23.6,force,upper_fy,0.005194950848817825 +karman_re200,ppo,59,23.6,force,lower_fx,-0.004215513356029987 +karman_re200,ppo,59,23.6,force,lower_fy,-0.0023280433379113674 +karman_re200,ppo,60,24.0,force,front_fx,0.00376973208039999 +karman_re200,ppo,60,24.0,force,front_fy,0.0005131613579578698 +karman_re200,ppo,60,24.0,force,upper_fx,0.0030859243124723434 +karman_re200,ppo,60,24.0,force,upper_fy,0.003864445025101304 +karman_re200,ppo,60,24.0,force,lower_fx,-0.005785979796200991 +karman_re200,ppo,60,24.0,force,lower_fy,-0.004397023469209671 +karman_re200,ppo,61,24.4,force,front_fx,0.001923239673487842 +karman_re200,ppo,61,24.4,force,front_fy,0.0022750571370124817 +karman_re200,ppo,61,24.4,force,upper_fx,0.001425145659595728 +karman_re200,ppo,61,24.4,force,upper_fy,0.004310152493417263 +karman_re200,ppo,61,24.4,force,lower_fx,-0.002264662878587842 +karman_re200,ppo,61,24.4,force,lower_fy,-0.0069493139162659645 +karman_re200,ppo,62,24.8,force,front_fx,-7.46021532904706e-06 +karman_re200,ppo,62,24.8,force,front_fy,0.0036184703931212425 +karman_re200,ppo,62,24.8,force,upper_fx,-9.409543417859823e-05 +karman_re200,ppo,62,24.8,force,upper_fy,0.005041235126554966 +karman_re200,ppo,62,24.8,force,lower_fx,0.0009391431231051683 +karman_re200,ppo,62,24.8,force,lower_fy,-0.006897883955389261 +karman_re200,ppo,63,25.2,force,front_fx,-0.001482064020819962 +karman_re200,ppo,63,25.2,force,front_fy,0.004099177196621895 +karman_re200,ppo,63,25.2,force,upper_fx,-0.0010967737762257457 +karman_re200,ppo,63,25.2,force,upper_fy,0.005434492602944374 +karman_re200,ppo,63,25.2,force,lower_fx,0.002546698786318302 +karman_re200,ppo,63,25.2,force,lower_fy,-0.006798114161938429 +karman_re200,ppo,64,25.6,force,front_fx,-0.0013103288365527987 +karman_re200,ppo,64,25.6,force,front_fy,0.004169051069766283 +karman_re200,ppo,64,25.6,force,upper_fx,-0.002106445375829935 +karman_re200,ppo,64,25.6,force,upper_fy,0.0044383881613612175 +karman_re200,ppo,64,25.6,force,lower_fx,0.003609810257330537 +karman_re200,ppo,64,25.6,force,lower_fy,-0.006331069394946098 +karman_re200,ppo,65,26.0,force,front_fx,0.0005903953569941223 +karman_re200,ppo,65,26.0,force,front_fy,0.003853130852803588 +karman_re200,ppo,65,26.0,force,upper_fx,-0.003922830801457167 +karman_re200,ppo,65,26.0,force,upper_fy,0.002852360252290964 +karman_re200,ppo,65,26.0,force,lower_fx,0.004248309880495071 +karman_re200,ppo,65,26.0,force,lower_fy,-0.00535965571179986 +karman_re200,ppo,66,26.4,force,front_fx,0.0044266642071306705 +karman_re200,ppo,66,26.4,force,front_fy,0.0027109801303595304 +karman_re200,ppo,66,26.4,force,upper_fx,-0.006526060868054628 +karman_re200,ppo,66,26.4,force,upper_fy,0.002157059730961919 +karman_re200,ppo,66,26.4,force,lower_fx,0.004653074312955141 +karman_re200,ppo,66,26.4,force,lower_fy,-0.003836118383333087 +karman_re200,ppo,67,26.8,force,front_fx,0.006107240449637175 +karman_re200,ppo,67,26.8,force,front_fy,0.0014243625337257981 +karman_re200,ppo,67,26.8,force,upper_fx,-0.007598542608320713 +karman_re200,ppo,67,26.8,force,upper_fy,0.004234796389937401 +karman_re200,ppo,67,26.8,force,lower_fx,0.0052149295806884766 +karman_re200,ppo,67,26.8,force,lower_fy,-0.0022046174854040146 +karman_re200,ppo,68,27.2,force,front_fx,0.005532943643629551 +karman_re200,ppo,68,27.2,force,front_fy,-0.0004807672230526805 +karman_re200,ppo,68,27.2,force,upper_fx,-0.004349729511886835 +karman_re200,ppo,68,27.2,force,upper_fy,0.006146359257400036 +karman_re200,ppo,68,27.2,force,lower_fx,0.003564559854567051 +karman_re200,ppo,68,27.2,force,lower_fy,-0.002378223231062293 +karman_re200,ppo,69,27.6,force,front_fx,0.003927549812942743 +karman_re200,ppo,69,27.6,force,front_fy,-0.0020032175816595554 +karman_re200,ppo,69,27.6,force,upper_fx,-0.001527975662611425 +karman_re200,ppo,69,27.6,force,upper_fy,0.004272807855159044 +karman_re200,ppo,69,27.6,force,lower_fx,0.0013351535890251398 +karman_re200,ppo,69,27.6,force,lower_fy,-0.0032654395326972008 +karman_re200,ppo,70,28.0,force,front_fx,0.0007703274022787809 +karman_re200,ppo,70,28.0,force,front_fy,-0.003725438378751278 +karman_re200,ppo,70,28.0,force,upper_fx,-0.0001039364724420011 +karman_re200,ppo,70,28.0,force,upper_fy,0.0031115419697016478 +karman_re200,ppo,70,28.0,force,lower_fx,-0.00016481764032505453 +karman_re200,ppo,70,28.0,force,lower_fy,-0.003760324325412512 +karman_re200,ppo,71,28.4,force,front_fx,-0.0016235734801739454 +karman_re200,ppo,71,28.4,force,front_fy,-0.0049776723608374596 +karman_re200,ppo,71,28.4,force,upper_fx,0.00014106249727774411 +karman_re200,ppo,71,28.4,force,upper_fy,0.003696669125929475 +karman_re200,ppo,71,28.4,force,lower_fx,-0.00033735967008396983 +karman_re200,ppo,71,28.4,force,lower_fy,-0.004016888327896595 +karman_re200,ppo,72,28.8,force,front_fx,-0.0022184590343385935 +karman_re200,ppo,72,28.8,force,front_fy,-0.005632976070046425 +karman_re200,ppo,72,28.8,force,upper_fx,0.0002166745689464733 +karman_re200,ppo,72,28.8,force,upper_fy,0.005485898349434137 +karman_re200,ppo,72,28.8,force,lower_fx,-0.0007319988799281418 +karman_re200,ppo,72,28.8,force,lower_fy,-0.0037804734893143177 +karman_re200,ppo,73,29.2,force,front_fx,-0.0012479012366384268 +karman_re200,ppo,73,29.2,force,front_fy,-0.004430131521075964 +karman_re200,ppo,73,29.2,force,upper_fx,0.0012948475778102875 +karman_re200,ppo,73,29.2,force,upper_fy,0.0065646846778690815 +karman_re200,ppo,73,29.2,force,lower_fx,-0.001258846721611917 +karman_re200,ppo,73,29.2,force,lower_fy,-0.004040807951241732 +karman_re200,ppo,74,29.6,force,front_fx,0.0006905338377691805 +karman_re200,ppo,74,29.6,force,front_fy,-0.003245850093662739 +karman_re200,ppo,74,29.6,force,upper_fx,0.003511941060423851 +karman_re200,ppo,74,29.6,force,upper_fy,0.006646232213824987 +karman_re200,ppo,74,29.6,force,lower_fx,-0.000593246950302273 +karman_re200,ppo,74,29.6,force,lower_fy,-0.004333465825766325 +karman_re200,ppo,75,30.0,force,front_fx,0.0034600314684212208 +karman_re200,ppo,75,30.0,force,front_fy,-0.0005069437902420759 +karman_re200,ppo,75,30.0,force,upper_fx,0.0045821149833500385 +karman_re200,ppo,75,30.0,force,upper_fy,0.005519286263734102 +karman_re200,ppo,75,30.0,force,lower_fx,-0.0025092733558267355 +karman_re200,ppo,75,30.0,force,lower_fy,-0.002526779193431139 +karman_re200,ppo,76,30.4,force,front_fx,0.0034036370925605297 +karman_re200,ppo,76,30.4,force,front_fy,0.0012395448284223676 +karman_re200,ppo,76,30.4,force,upper_fx,0.0036302292719483376 +karman_re200,ppo,76,30.4,force,upper_fy,0.0037897818256169558 +karman_re200,ppo,76,30.4,force,lower_fx,-0.004471953958272934 +karman_re200,ppo,76,30.4,force,lower_fy,-0.005591545719653368 +karman_re200,ppo,77,30.8,force,front_fx,0.00148637848906219 +karman_re200,ppo,77,30.8,force,front_fy,0.002656549448147416 +karman_re200,ppo,77,30.8,force,upper_fx,0.0013241067063063383 +karman_re200,ppo,77,30.8,force,upper_fy,0.004232675302773714 +karman_re200,ppo,77,30.8,force,lower_fx,-0.0007324190228246152 +karman_re200,ppo,77,30.8,force,lower_fy,-0.008381473831832409 +karman_re200,ppo,78,31.2,force,front_fx,-0.0003753216878976673 +karman_re200,ppo,78,31.2,force,front_fy,0.0038265762850642204 +karman_re200,ppo,78,31.2,force,upper_fx,-0.0003224243118893355 +karman_re200,ppo,78,31.2,force,upper_fy,0.00483576999977231 +karman_re200,ppo,78,31.2,force,lower_fx,0.001988636329770088 +karman_re200,ppo,78,31.2,force,lower_fy,-0.007871843874454498 +karman_re200,ppo,79,31.6,force,front_fx,-0.001678519882261753 +karman_re200,ppo,79,31.6,force,front_fy,0.003986284602433443 +karman_re200,ppo,79,31.6,force,upper_fx,-0.0010260571725666523 +karman_re200,ppo,79,31.6,force,upper_fy,0.004725411534309387 +karman_re200,ppo,79,31.6,force,lower_fx,0.00311334733851254 +karman_re200,ppo,79,31.6,force,lower_fy,-0.007652778644114733 +karman_re200,ppo,80,32.0,force,front_fx,-0.0010715117678046227 +karman_re200,ppo,80,32.0,force,front_fy,0.003820364363491535 +karman_re200,ppo,80,32.0,force,upper_fx,-0.0020091859623789787 +karman_re200,ppo,80,32.0,force,upper_fy,0.0032222431618720293 +karman_re200,ppo,80,32.0,force,lower_fx,0.004286864772439003 +karman_re200,ppo,80,32.0,force,lower_fy,-0.006877595093101263 +karman_re200,ppo,81,32.4,force,front_fx,0.002071232767775655 +karman_re200,ppo,81,32.4,force,front_fy,0.003575629321858287 +karman_re200,ppo,81,32.4,force,upper_fx,-0.0045553636737167835 +karman_re200,ppo,81,32.4,force,upper_fy,0.0014637787826359272 +karman_re200,ppo,81,32.4,force,lower_fx,0.0057566966861486435 +karman_re200,ppo,81,32.4,force,lower_fy,-0.005353540647774935 +karman_re200,ppo,82,32.8,force,front_fx,0.006907404866069555 +karman_re200,ppo,82,32.8,force,front_fy,0.002571218879893422 +karman_re200,ppo,82,32.8,force,upper_fx,-0.008444678969681263 +karman_re200,ppo,82,32.8,force,upper_fy,0.0019041093764826655 +karman_re200,ppo,82,32.8,force,lower_fx,0.0074117835611104965 +karman_re200,ppo,82,32.8,force,lower_fy,-0.003968589473515749 +karman_re200,ppo,83,33.2,force,front_fx,0.006946716457605362 +karman_re200,ppo,83,33.2,force,front_fy,0.0008837304194457829 +karman_re200,ppo,83,33.2,force,upper_fx,-0.00739682512357831 +karman_re200,ppo,83,33.2,force,upper_fy,0.006474763620644808 +karman_re200,ppo,83,33.2,force,lower_fx,0.006767370738089085 +karman_re200,ppo,83,33.2,force,lower_fy,-0.00281219813041389 +karman_re200,ppo,84,33.6,force,front_fx,0.006511549465358257 +karman_re200,ppo,84,33.6,force,front_fy,-0.0005610131192952394 +karman_re200,ppo,84,33.6,force,upper_fx,-0.003497379831969738 +karman_re200,ppo,84,33.6,force,upper_fy,0.004956095013767481 +karman_re200,ppo,84,33.6,force,lower_fx,0.002406218321993947 +karman_re200,ppo,84,33.6,force,lower_fy,-0.0029286984354257584 +karman_re200,ppo,85,34.0,force,front_fx,0.0036988910287618637 +karman_re200,ppo,85,34.0,force,front_fy,-0.0025606120470911264 +karman_re200,ppo,85,34.0,force,upper_fx,-0.0017646645428612828 +karman_re200,ppo,85,34.0,force,upper_fy,0.00198955275118351 +karman_re200,ppo,85,34.0,force,lower_fx,0.00022074785374570638 +karman_re200,ppo,85,34.0,force,lower_fy,-0.0032794754952192307 +karman_re200,ppo,86,34.4,force,front_fx,6.643966571573401e-06 +karman_re200,ppo,86,34.4,force,front_fy,-0.004199882037937641 +karman_re200,ppo,86,34.4,force,upper_fx,-0.0017926268046721816 +karman_re200,ppo,86,34.4,force,upper_fy,0.0016512100119143724 +karman_re200,ppo,86,34.4,force,lower_fx,0.00012349331518635154 +karman_re200,ppo,86,34.4,force,lower_fy,-0.003609847743064165 +karman_re200,ppo,87,34.8,force,front_fx,-0.0014472469920292497 +karman_re200,ppo,87,34.8,force,front_fy,-0.005619695410132408 +karman_re200,ppo,87,34.8,force,upper_fx,-0.002146404469385743 +karman_re200,ppo,87,34.8,force,upper_fy,0.004133671056479216 +karman_re200,ppo,87,34.8,force,lower_fx,-0.000565935333725065 +karman_re200,ppo,87,34.8,force,lower_fy,-0.0036584085319191217 +karman_re200,ppo,88,35.2,force,front_fx,-0.001726736780256033 +karman_re200,ppo,88,35.2,force,front_fy,-0.004915968980640173 +karman_re200,ppo,88,35.2,force,upper_fx,-0.0002883397100958973 +karman_re200,ppo,88,35.2,force,upper_fy,0.006639767438173294 +karman_re200,ppo,88,35.2,force,lower_fx,-0.0008869805024005473 +karman_re200,ppo,88,35.2,force,lower_fy,-0.0038670559879392385 +karman_re200,ppo,89,35.6,force,front_fx,-0.0006278209621086717 +karman_re200,ppo,89,35.6,force,front_fy,-0.004352029878646135 +karman_re200,ppo,89,35.6,force,upper_fx,0.003030883613973856 +karman_re200,ppo,89,35.6,force,upper_fy,0.007136300206184387 +karman_re200,ppo,89,35.6,force,lower_fx,-0.00078715814743191 +karman_re200,ppo,89,35.6,force,lower_fy,-0.00522947870194912 +karman_re200,ppo,90,36.0,force,front_fx,0.002827479038387537 +karman_re200,ppo,90,36.0,force,front_fy,-0.0028921973425894976 +karman_re200,ppo,90,36.0,force,upper_fx,0.005141095723956823 +karman_re200,ppo,90,36.0,force,upper_fy,0.006053239572793245 +karman_re200,ppo,90,36.0,force,lower_fx,-0.0015948180807754397 +karman_re200,ppo,90,36.0,force,lower_fy,-0.0032032793387770653 +karman_re200,ppo,91,36.4,force,front_fx,0.005256191361695528 +karman_re200,ppo,91,36.4,force,front_fy,-0.0007787568029016256 +karman_re200,ppo,91,36.4,force,upper_fx,0.00458583002910018 +karman_re200,ppo,91,36.4,force,upper_fy,0.0038562575355172157 +karman_re200,ppo,91,36.4,force,lower_fx,-0.005636461544781923 +karman_re200,ppo,91,36.4,force,lower_fy,-0.003708110423758626 +karman_re200,ppo,92,36.8,force,front_fx,0.003951945807784796 +karman_re200,ppo,92,36.8,force,front_fy,0.0010482993675395846 +karman_re200,ppo,92,36.8,force,upper_fx,0.0026967066805809736 +karman_re200,ppo,92,36.8,force,upper_fy,0.0028581637889146805 +karman_re200,ppo,92,36.8,force,lower_fx,-0.0038100227247923613 +karman_re200,ppo,92,36.8,force,lower_fy,-0.007131827995181084 +karman_re200,ppo,93,37.2,force,front_fx,0.002235582796856761 +karman_re200,ppo,93,37.2,force,front_fy,0.0023862484376877546 +karman_re200,ppo,93,37.2,force,upper_fx,0.0006643084925599396 +karman_re200,ppo,93,37.2,force,upper_fy,0.0036435811780393124 +karman_re200,ppo,93,37.2,force,lower_fx,-0.00039074139203876257 +karman_re200,ppo,93,37.2,force,lower_fy,-0.0065961261279881 +karman_re200,ppo,94,37.6,force,front_fx,-0.0005712243728339672 +karman_re200,ppo,94,37.6,force,front_fy,0.003706833114847541 +karman_re200,ppo,94,37.6,force,upper_fx,-0.00017710104293655604 +karman_re200,ppo,94,37.6,force,upper_fy,0.003846662351861596 +karman_re200,ppo,94,37.6,force,lower_fx,0.000884725886862725 +karman_re200,ppo,94,37.6,force,lower_fy,-0.006488217506557703 +karman_re200,ppo,95,38.0,force,front_fx,-0.001523836050182581 +karman_re200,ppo,95,38.0,force,front_fy,0.0038601651322096586 +karman_re200,ppo,95,38.0,force,upper_fx,-0.0010221890406683087 +karman_re200,ppo,95,38.0,force,upper_fy,0.0032669594511389732 +karman_re200,ppo,95,38.0,force,lower_fx,0.0020526712760329247 +karman_re200,ppo,95,38.0,force,lower_fy,-0.006936177611351013 +karman_re200,ppo,96,38.4,force,front_fx,-0.0006154649308882654 +karman_re200,ppo,96,38.4,force,front_fy,0.0036608430091291666 +karman_re200,ppo,96,38.4,force,upper_fx,-0.0022643343545496464 +karman_re200,ppo,96,38.4,force,upper_fy,0.002620011568069458 +karman_re200,ppo,96,38.4,force,lower_fx,0.004245375283062458 +karman_re200,ppo,96,38.4,force,lower_fy,-0.006565466057509184 +karman_re200,ppo,97,38.8,force,front_fx,0.0030982522293925285 +karman_re200,ppo,97,38.8,force,front_fy,0.0033246392849832773 +karman_re200,ppo,97,38.8,force,upper_fx,-0.0051757884211838245 +karman_re200,ppo,97,38.8,force,upper_fy,0.0013926493702456355 +karman_re200,ppo,97,38.8,force,lower_fx,0.00624257093295455 +karman_re200,ppo,97,38.8,force,lower_fy,-0.006445328705012798 +karman_re200,ppo,98,39.2,force,front_fx,0.007344243582338095 +karman_re200,ppo,98,39.2,force,front_fy,0.0026454078033566475 +karman_re200,ppo,98,39.2,force,upper_fx,-0.008916715160012245 +karman_re200,ppo,98,39.2,force,upper_fy,0.0033431234769523144 +karman_re200,ppo,98,39.2,force,lower_fx,0.007969042286276817 +karman_re200,ppo,98,39.2,force,lower_fy,-0.005380228627473116 +karman_re200,ppo,99,39.6,force,front_fx,0.007512873969972134 +karman_re200,ppo,99,39.6,force,front_fy,0.0004109328147023916 +karman_re200,ppo,99,39.6,force,upper_fx,-0.0059381709434092045 +karman_re200,ppo,99,39.6,force,upper_fy,0.006729112938046455 +karman_re200,ppo,99,39.6,force,lower_fx,0.005631879437714815 +karman_re200,ppo,99,39.6,force,lower_fy,-0.003348506288602948 +karman_re200,ppo,100,40.0,force,front_fx,0.006416720803827047 +karman_re200,ppo,100,40.0,force,front_fy,-0.0008953518699854612 +karman_re200,ppo,100,40.0,force,upper_fx,-0.003092866623774171 +karman_re200,ppo,100,40.0,force,upper_fy,0.0040224394761025906 +karman_re200,ppo,100,40.0,force,lower_fx,0.0016877555754035711 +karman_re200,ppo,100,40.0,force,lower_fy,-0.0025711252819746733 +karman_re200,ppo,101,40.4,force,front_fx,0.003510117530822754 +karman_re200,ppo,101,40.4,force,front_fy,-0.002664614235982299 +karman_re200,ppo,101,40.4,force,upper_fx,-0.002184075303375721 +karman_re200,ppo,101,40.4,force,upper_fy,0.0008632305543869734 +karman_re200,ppo,101,40.4,force,lower_fx,0.0008700743201188743 +karman_re200,ppo,101,40.4,force,lower_fy,-0.002289120340719819 +karman_re200,ppo,102,40.8,force,front_fx,0.0007159944507293403 +karman_re200,ppo,102,40.8,force,front_fy,-0.0046966723166406155 +karman_re200,ppo,102,40.8,force,upper_fx,-0.0035769303794950247 +karman_re200,ppo,102,40.8,force,upper_fy,0.002019416308030486 +karman_re200,ppo,102,40.8,force,lower_fx,-0.00042703241342678666 +karman_re200,ppo,102,40.8,force,lower_fy,-0.002761055249720812 +karman_re200,ppo,103,41.2,force,front_fx,-0.0009504518820904195 +karman_re200,ppo,103,41.2,force,front_fy,-0.0050467317923903465 +karman_re200,ppo,103,41.2,force,upper_fx,-0.0025663869455456734 +karman_re200,ppo,103,41.2,force,upper_fy,0.005663939286023378 +karman_re200,ppo,103,41.2,force,lower_fx,-0.0006169877015054226 +karman_re200,ppo,103,41.2,force,lower_fy,-0.0032708358485251665 +karman_re200,ppo,104,41.6,force,front_fx,-0.00148870050907135 +karman_re200,ppo,104,41.6,force,front_fy,-0.004159442614763975 +karman_re200,ppo,104,41.6,force,upper_fx,0.0009751099860295653 +karman_re200,ppo,104,41.6,force,upper_fy,0.007065592799335718 +karman_re200,ppo,104,41.6,force,lower_fx,-0.0007505806279368699 +karman_re200,ppo,104,41.6,force,lower_fy,-0.004700963851064444 +karman_re200,ppo,105,42.0,force,front_fx,0.0006401909631676972 +karman_re200,ppo,105,42.0,force,front_fy,-0.003859786782413721 +karman_re200,ppo,105,42.0,force,upper_fx,0.004255590960383415 +karman_re200,ppo,105,42.0,force,upper_fy,0.0068238829262554646 +karman_re200,ppo,105,42.0,force,lower_fx,-0.0003555398725438863 +karman_re200,ppo,105,42.0,force,lower_fy,-0.0035365470685064793 +karman_re200,ppo,106,42.4,force,front_fx,0.004898863844573498 +karman_re200,ppo,106,42.4,force,front_fy,-0.0021973715629428625 +karman_re200,ppo,106,42.4,force,upper_fx,0.004943654406815767 +karman_re200,ppo,106,42.4,force,upper_fy,0.0051371692679822445 +karman_re200,ppo,106,42.4,force,lower_fx,-0.004872900899499655 +karman_re200,ppo,106,42.4,force,lower_fy,-0.0021601058542728424 +karman_re200,ppo,107,42.8,force,front_fx,0.005316394381225109 +karman_re200,ppo,107,42.8,force,front_fy,-0.0006168537656776607 +karman_re200,ppo,107,42.8,force,upper_fx,0.0041516427882015705 +karman_re200,ppo,107,42.8,force,upper_fy,0.002741848584264517 +karman_re200,ppo,107,42.8,force,lower_fx,-0.006118235643953085 +karman_re200,ppo,107,42.8,force,lower_fy,-0.005382414907217026 +karman_re200,ppo,108,43.2,force,front_fx,0.0038709519430994987 +karman_re200,ppo,108,43.2,force,front_fy,0.0011671183165162802 +karman_re200,ppo,108,43.2,force,upper_fx,0.002132527530193329 +karman_re200,ppo,108,43.2,force,upper_fy,0.003152608871459961 +karman_re200,ppo,108,43.2,force,lower_fx,-0.002150102984160185 +karman_re200,ppo,108,43.2,force,lower_fy,-0.006547063589096069 +karman_re200,ppo,109,43.6,force,front_fx,0.0015336392680183053 +karman_re200,ppo,109,43.6,force,front_fy,0.0028587249107658863 +karman_re200,ppo,109,43.6,force,upper_fx,0.0005451221950352192 +karman_re200,ppo,109,43.6,force,upper_fy,0.0036594492848962545 +karman_re200,ppo,109,43.6,force,lower_fx,-0.00016648723976686597 +karman_re200,ppo,109,43.6,force,lower_fy,-0.005368645302951336 +karman_re200,ppo,110,44.0,force,front_fx,-0.0010555684566497803 +karman_re200,ppo,110,44.0,force,front_fy,0.003676648950204253 +karman_re200,ppo,110,44.0,force,upper_fx,-0.00032171368366107345 +karman_re200,ppo,110,44.0,force,upper_fy,0.0037624093238264322 +karman_re200,ppo,110,44.0,force,lower_fx,0.0007619285024702549 +karman_re200,ppo,110,44.0,force,lower_fy,-0.006056743673980236 +karman_re200,ppo,111,44.4,force,front_fx,-0.00129421625752002 +karman_re200,ppo,111,44.4,force,front_fy,0.0038332315161824226 +karman_re200,ppo,111,44.4,force,upper_fx,-0.0015403463039547205 +karman_re200,ppo,111,44.4,force,upper_fy,0.0034935870207846165 +karman_re200,ppo,111,44.4,force,lower_fx,0.0027428462635725737 +karman_re200,ppo,111,44.4,force,lower_fy,-0.006275989580899477 +karman_re200,ppo,112,44.8,force,front_fx,0.0008834509644657373 +karman_re200,ppo,112,44.8,force,front_fy,0.004011010751128197 +karman_re200,ppo,112,44.8,force,upper_fx,-0.0033560856245458126 +karman_re200,ppo,112,44.8,force,upper_fy,0.0025323349982500076 +karman_re200,ppo,112,44.8,force,lower_fx,0.005139858927577734 +karman_re200,ppo,112,44.8,force,lower_fy,-0.006090123672038317 +karman_re200,ppo,113,45.2,force,front_fx,0.006342542823404074 +karman_re200,ppo,113,45.2,force,front_fy,0.00326495966874063 +karman_re200,ppo,113,45.2,force,upper_fx,-0.007807047571986914 +karman_re200,ppo,113,45.2,force,upper_fy,0.0016074504237622023 +karman_re200,ppo,113,45.2,force,lower_fx,0.006278689019382 +karman_re200,ppo,113,45.2,force,lower_fy,-0.006083817686885595 +karman_re200,ppo,114,45.6,force,front_fx,0.007718581706285477 +karman_re200,ppo,114,45.6,force,front_fy,0.002312916098162532 +karman_re200,ppo,114,45.6,force,upper_fx,-0.008886964060366154 +karman_re200,ppo,114,45.6,force,upper_fy,0.005978727247565985 +karman_re200,ppo,114,45.6,force,lower_fx,0.006913717370480299 +karman_re200,ppo,114,45.6,force,lower_fy,-0.003977813757956028 +karman_re200,ppo,115,46.0,force,front_fx,0.008160565979778767 +karman_re200,ppo,115,46.0,force,front_fy,0.0005829783040098846 +karman_re200,ppo,115,46.0,force,upper_fx,-0.0049306610599160194 +karman_re200,ppo,115,46.0,force,upper_fy,0.005226543638855219 +karman_re200,ppo,115,46.0,force,lower_fx,0.003061099676415324 +karman_re200,ppo,115,46.0,force,lower_fy,-0.0024162090849131346 +karman_re200,ppo,116,46.4,force,front_fx,0.005739897023886442 +karman_re200,ppo,116,46.4,force,front_fy,-0.0007358652073889971 +karman_re200,ppo,116,46.4,force,upper_fx,-0.0029926637653261423 +karman_re200,ppo,116,46.4,force,upper_fy,0.0014340787893161178 +karman_re200,ppo,116,46.4,force,lower_fx,0.0013950149295851588 +karman_re200,ppo,116,46.4,force,lower_fy,-0.002261711284518242 +karman_re200,ppo,117,46.8,force,front_fx,0.002387276152148843 +karman_re200,ppo,117,46.8,force,front_fy,-0.0033246041275560856 +karman_re200,ppo,117,46.8,force,upper_fx,-0.0038768029771745205 +karman_re200,ppo,117,46.8,force,upper_fy,0.0002463309792801738 +karman_re200,ppo,117,46.8,force,lower_fx,6.766849401174113e-05 +karman_re200,ppo,117,46.8,force,lower_fy,-0.0020176845137029886 +karman_re200,ppo,118,47.2,force,front_fx,0.00045696113375015557 +karman_re200,ppo,118,47.2,force,front_fy,-0.0054544080048799515 +karman_re200,ppo,118,47.2,force,upper_fx,-0.004797123838216066 +karman_re200,ppo,118,47.2,force,upper_fy,0.004464632831513882 +karman_re200,ppo,118,47.2,force,lower_fx,-0.00076304777758196 +karman_re200,ppo,118,47.2,force,lower_fy,-0.002784023992717266 +karman_re200,ppo,119,47.6,force,front_fx,-0.0008642182219773531 +karman_re200,ppo,119,47.6,force,front_fy,-0.0051221661269664764 +karman_re200,ppo,119,47.6,force,upper_fx,-0.001537853735499084 +karman_re200,ppo,119,47.6,force,upper_fy,0.008200316689908504 +karman_re200,ppo,119,47.6,force,lower_fx,-0.0008065053261816502 +karman_re200,ppo,119,47.6,force,lower_fy,-0.0031729592010378838 +karman_re200,ppo,120,48.0,force,front_fx,-0.0013646602164953947 +karman_re200,ppo,120,48.0,force,front_fy,-0.0044523789547383785 +karman_re200,ppo,120,48.0,force,upper_fx,0.0031783231534063816 +karman_re200,ppo,120,48.0,force,upper_fy,0.008271371945738792 +karman_re200,ppo,120,48.0,force,lower_fx,5.151635377842467e-06 +karman_re200,ppo,120,48.0,force,lower_fy,-0.005652537569403648 +karman_re200,ppo,121,48.4,force,front_fx,0.0014540452975779772 +karman_re200,ppo,121,48.4,force,front_fy,-0.003649526508525014 +karman_re200,ppo,121,48.4,force,upper_fx,0.005841557867825031 +karman_re200,ppo,121,48.4,force,upper_fy,0.006932592019438744 +karman_re200,ppo,121,48.4,force,lower_fx,0.00023668314679525793 +karman_re200,ppo,121,48.4,force,lower_fy,-0.0027991163078695536 +karman_re200,ppo,122,48.8,force,front_fx,0.00528914388269186 +karman_re200,ppo,122,48.8,force,front_fy,-0.0020533499773591757 +karman_re200,ppo,122,48.8,force,upper_fx,0.005920090712606907 +karman_re200,ppo,122,48.8,force,upper_fy,0.0048849196173250675 +karman_re200,ppo,122,48.8,force,lower_fx,-0.004532997962087393 +karman_re200,ppo,122,48.8,force,lower_fy,-0.0027252701111137867 +karman_re200,ppo,123,49.2,force,front_fx,0.005523168481886387 +karman_re200,ppo,123,49.2,force,front_fy,-9.766980656422675e-05 +karman_re200,ppo,123,49.2,force,upper_fx,0.00454170536249876 +karman_re200,ppo,123,49.2,force,upper_fy,0.0027806595899164677 +karman_re200,ppo,123,49.2,force,lower_fx,-0.004490952473133802 +karman_re200,ppo,123,49.2,force,lower_fy,-0.005043375305831432 +karman_re200,ppo,124,49.6,force,front_fx,0.003760021645575762 +karman_re200,ppo,124,49.6,force,front_fy,0.0015449412167072296 +karman_re200,ppo,124,49.6,force,upper_fx,0.002282144036144018 +karman_re200,ppo,124,49.6,force,upper_fy,0.0032485011033713818 +karman_re200,ppo,124,49.6,force,lower_fx,-0.0021764077246189117 +karman_re200,ppo,124,49.6,force,lower_fy,-0.005106030032038689 +karman_re200,ppo,125,50.0,force,front_fx,0.001372080179862678 +karman_re200,ppo,125,50.0,force,front_fy,0.003107735887169838 +karman_re200,ppo,125,50.0,force,upper_fx,0.00014027036377228796 +karman_re200,ppo,125,50.0,force,upper_fy,0.0031716576777398586 +karman_re200,ppo,125,50.0,force,lower_fx,-0.0011420046212151647 +karman_re200,ppo,125,50.0,force,lower_fy,-0.004694951232522726 +karman_re200,ppo,126,50.4,force,front_fx,-0.001265292870812118 +karman_re200,ppo,126,50.4,force,front_fy,0.00363870314322412 +karman_re200,ppo,126,50.4,force,upper_fx,-0.0005842505488544703 +karman_re200,ppo,126,50.4,force,upper_fy,0.003255539806559682 +karman_re200,ppo,126,50.4,force,lower_fx,0.0002417643991066143 +karman_re200,ppo,126,50.4,force,lower_fy,-0.006161960307508707 +karman_re200,ppo,127,50.8,force,front_fx,-0.0012018964625895023 +karman_re200,ppo,127,50.8,force,front_fy,0.0037432583048939705 +karman_re200,ppo,127,50.8,force,upper_fx,-0.0018553519621491432 +karman_re200,ppo,127,50.8,force,upper_fy,0.0031315472442656755 +karman_re200,ppo,127,50.8,force,lower_fx,0.003275858471170068 +karman_re200,ppo,127,50.8,force,lower_fy,-0.006689644884318113 +karman_re200,ppo,128,51.2,force,front_fx,0.0014588091289624572 +karman_re200,ppo,128,51.2,force,front_fy,0.00403166888281703 +karman_re200,ppo,128,51.2,force,upper_fx,-0.003785825101658702 +karman_re200,ppo,128,51.2,force,upper_fy,0.002134694717824459 +karman_re200,ppo,128,51.2,force,lower_fx,0.005952758714556694 +karman_re200,ppo,128,51.2,force,lower_fy,-0.006992987357079983 +karman_re200,ppo,129,51.6,force,front_fx,0.007281752303242683 +karman_re200,ppo,129,51.6,force,front_fy,0.003252126509323716 +karman_re200,ppo,129,51.6,force,upper_fx,-0.008692852221429348 +karman_re200,ppo,129,51.6,force,upper_fy,0.0018497772980481386 +karman_re200,ppo,129,51.6,force,lower_fx,0.007084273733198643 +karman_re200,ppo,129,51.6,force,lower_fy,-0.0065571460872888565 +karman_re200,ppo,130,52.0,force,front_fx,0.00797874666750431 +karman_re200,ppo,130,52.0,force,front_fy,0.0016704828012734652 +karman_re200,ppo,130,52.0,force,upper_fx,-0.008388720452785492 +karman_re200,ppo,130,52.0,force,upper_fy,0.006447969004511833 +karman_re200,ppo,130,52.0,force,lower_fx,0.006413206458091736 +karman_re200,ppo,130,52.0,force,lower_fy,-0.0040245442651212215 +karman_re200,ppo,131,52.4,force,front_fx,0.007913302630186081 +karman_re200,ppo,131,52.4,force,front_fy,0.00022319665004033595 +karman_re200,ppo,131,52.4,force,upper_fx,-0.004950250964611769 +karman_re200,ppo,131,52.4,force,upper_fy,0.0045160227455198765 +karman_re200,ppo,131,52.4,force,lower_fx,0.002363680163398385 +karman_re200,ppo,131,52.4,force,lower_fy,-0.002649298869073391 +karman_re200,ppo,132,52.8,force,front_fx,0.0049403016455471516 +karman_re200,ppo,132,52.8,force,front_fy,-0.0012276004999876022 +karman_re200,ppo,132,52.8,force,upper_fx,-0.0030596130527555943 +karman_re200,ppo,132,52.8,force,upper_fy,0.0007199312094599009 +karman_re200,ppo,132,52.8,force,lower_fx,0.001347090001218021 +karman_re200,ppo,132,52.8,force,lower_fy,-0.0023715547285974026 +karman_re200,ppo,133,53.2,force,front_fx,0.0017571678617969155 +karman_re200,ppo,133,53.2,force,front_fy,-0.0039846040308475494 +karman_re200,ppo,133,53.2,force,upper_fx,-0.004138687159866095 +karman_re200,ppo,133,53.2,force,upper_fy,0.000666357867885381 +karman_re200,ppo,133,53.2,force,lower_fx,-0.0003339154354762286 +karman_re200,ppo,133,53.2,force,lower_fy,-0.00243373797275126 +karman_re200,ppo,134,53.6,force,front_fx,-0.00029166831518523395 +karman_re200,ppo,134,53.6,force,front_fy,-0.005762928165495396 +karman_re200,ppo,134,53.6,force,upper_fx,-0.0039937421679496765 +karman_re200,ppo,134,53.6,force,upper_fy,0.00543429097160697 +karman_re200,ppo,134,53.6,force,lower_fx,-0.0006520446622744203 +karman_re200,ppo,134,53.6,force,lower_fy,-0.00326803931966424 +karman_re200,ppo,135,54.0,force,front_fx,-0.0013414244167506695 +karman_re200,ppo,135,54.0,force,front_fy,-0.004891487769782543 +karman_re200,ppo,135,54.0,force,upper_fx,-0.00031063606729730964 +karman_re200,ppo,135,54.0,force,upper_fy,0.008390095084905624 +karman_re200,ppo,135,54.0,force,lower_fx,-0.0009246200206689537 +karman_re200,ppo,135,54.0,force,lower_fy,-0.0038945262786000967 +karman_re200,ppo,136,54.4,force,front_fx,-0.0011063459096476436 +karman_re200,ppo,136,54.4,force,front_fy,-0.00453718937933445 +karman_re200,ppo,136,54.4,force,upper_fx,0.0038735901471227407 +karman_re200,ppo,136,54.4,force,upper_fy,0.007937362417578697 +karman_re200,ppo,136,54.4,force,lower_fx,0.00021266069961711764 +karman_re200,ppo,136,54.4,force,lower_fy,-0.005676436237990856 +karman_re200,ppo,137,54.8,force,front_fx,0.0024917852133512497 +karman_re200,ppo,137,54.8,force,front_fy,-0.003355553839355707 +karman_re200,ppo,137,54.8,force,upper_fx,0.005870765075087547 +karman_re200,ppo,137,54.8,force,upper_fy,0.00665654893964529 +karman_re200,ppo,137,54.8,force,lower_fx,-0.0011802716180682182 +karman_re200,ppo,137,54.8,force,lower_fy,-0.002518606139346957 +karman_re200,ppo,138,55.2,force,front_fx,0.005895062815397978 +karman_re200,ppo,138,55.2,force,front_fy,-0.0017266693757846951 +karman_re200,ppo,138,55.2,force,upper_fx,0.005670864600688219 +karman_re200,ppo,138,55.2,force,upper_fy,0.004374946001917124 +karman_re200,ppo,138,55.2,force,lower_fx,-0.005761817563325167 +karman_re200,ppo,138,55.2,force,lower_fy,-0.003291114466264844 +karman_re200,ppo,139,55.6,force,front_fx,0.005410763435065746 +karman_re200,ppo,139,55.6,force,front_fy,0.0004159333184361458 +karman_re200,ppo,139,55.6,force,upper_fx,0.0038202109280973673 +karman_re200,ppo,139,55.6,force,upper_fy,0.0029234185349196196 +karman_re200,ppo,139,55.6,force,lower_fx,-0.004667585715651512 +karman_re200,ppo,139,55.6,force,lower_fy,-0.005763491615653038 +karman_re200,ppo,140,56.0,force,front_fx,0.0034248761367052794 +karman_re200,ppo,140,56.0,force,front_fy,0.0018192398129031062 +karman_re200,ppo,140,56.0,force,upper_fx,0.0017370299901813269 +karman_re200,ppo,140,56.0,force,upper_fy,0.0035453138407319784 +karman_re200,ppo,140,56.0,force,lower_fx,-0.0019100739154964685 +karman_re200,ppo,140,56.0,force,lower_fy,-0.005278458818793297 +karman_re200,ppo,141,56.4,force,front_fx,0.0008319790940731764 +karman_re200,ppo,141,56.4,force,front_fy,0.003532412927597761 +karman_re200,ppo,141,56.4,force,upper_fx,-0.00027409777976572514 +karman_re200,ppo,141,56.4,force,upper_fy,0.0032587891910225153 +karman_re200,ppo,141,56.4,force,lower_fx,-0.001032288302667439 +karman_re200,ppo,141,56.4,force,lower_fy,-0.004906546324491501 +karman_re200,ppo,142,56.8,force,front_fx,-0.001654095365665853 +karman_re200,ppo,142,56.8,force,front_fy,0.0038499024230986834 +karman_re200,ppo,142,56.8,force,upper_fx,-0.000683224352542311 +karman_re200,ppo,142,56.8,force,upper_fy,0.0034246037248522043 +karman_re200,ppo,142,56.8,force,lower_fx,0.00038687619962729514 +karman_re200,ppo,142,56.8,force,lower_fy,-0.006441459525376558 +karman_re200,ppo,143,57.2,force,front_fx,-0.0014777823816984892 +karman_re200,ppo,143,57.2,force,front_fy,0.0036415765061974525 +karman_re200,ppo,143,57.2,force,upper_fx,-0.0017230510711669922 +karman_re200,ppo,143,57.2,force,upper_fy,0.003063017735257745 +karman_re200,ppo,143,57.2,force,lower_fx,0.0032482550013810396 +karman_re200,ppo,143,57.2,force,lower_fy,-0.006739177741110325 +karman_re200,ppo,144,57.6,force,front_fx,0.0009995745494961739 +karman_re200,ppo,144,57.6,force,front_fy,0.0039329202845692635 +karman_re200,ppo,144,57.6,force,upper_fx,-0.003443474415689707 +karman_re200,ppo,144,57.6,force,upper_fy,0.0024406209122389555 +karman_re200,ppo,144,57.6,force,lower_fx,0.006020580418407917 +karman_re200,ppo,144,57.6,force,lower_fy,-0.006776497233659029 +karman_re200,ppo,145,58.0,force,front_fx,0.006548725534230471 +karman_re200,ppo,145,58.0,force,front_fy,0.0027129820082336664 +karman_re200,ppo,145,58.0,force,upper_fx,-0.00788153801113367 +karman_re200,ppo,145,58.0,force,upper_fy,0.0016990373842418194 +karman_re200,ppo,145,58.0,force,lower_fx,0.00721531268209219 +karman_re200,ppo,145,58.0,force,lower_fy,-0.006906592287123203 +karman_re200,ppo,146,58.4,force,front_fx,0.00723046762868762 +karman_re200,ppo,146,58.4,force,front_fy,0.0013308287598192692 +karman_re200,ppo,146,58.4,force,upper_fx,-0.008390368893742561 +karman_re200,ppo,146,58.4,force,upper_fy,0.006706118118017912 +karman_re200,ppo,146,58.4,force,lower_fx,0.007026315201073885 +karman_re200,ppo,146,58.4,force,lower_fy,-0.004462274722754955 +karman_re200,ppo,147,58.8,force,front_fx,0.007160015869885683 +karman_re200,ppo,147,58.8,force,front_fy,-0.0004863649373874068 +karman_re200,ppo,147,58.8,force,upper_fx,-0.004423488862812519 +karman_re200,ppo,147,58.8,force,upper_fy,0.005496193654835224 +karman_re200,ppo,147,58.8,force,lower_fx,0.002476703142747283 +karman_re200,ppo,147,58.8,force,lower_fy,-0.003132779384031892 +karman_re200,ppo,148,59.2,force,front_fx,0.004557915963232517 +karman_re200,ppo,148,59.2,force,front_fy,-0.001724226283840835 +karman_re200,ppo,148,59.2,force,upper_fx,-0.0022380950395017862 +karman_re200,ppo,148,59.2,force,upper_fy,0.0017670756205916405 +karman_re200,ppo,148,59.2,force,lower_fx,0.00084446877008304 +karman_re200,ppo,148,59.2,force,lower_fy,-0.002600396517664194 +karman_re200,ppo,149,59.6,force,front_fx,0.001374108367599547 +karman_re200,ppo,149,59.6,force,front_fy,-0.004207176622003317 +karman_re200,ppo,149,59.6,force,upper_fx,-0.0030499303247779608 +karman_re200,ppo,149,59.6,force,upper_fy,0.0007380999741144478 +karman_re200,ppo,149,59.6,force,lower_fx,-0.0004303333116695285 +karman_re200,ppo,149,59.6,force,lower_fy,-0.0023609185591340065 +karman_re200,ppo,150,60.0,force,front_fx,-0.0005851757014170289 +karman_re200,ppo,150,60.0,force,front_fy,-0.005807990208268166 +karman_re200,ppo,150,60.0,force,upper_fx,-0.003600053722038865 +karman_re200,ppo,150,60.0,force,upper_fy,0.00480692321434617 +karman_re200,ppo,150,60.0,force,lower_fx,-0.0006065348861739039 +karman_re200,ppo,150,60.0,force,lower_fy,-0.0031640655361115932 +karman_re200,ppo,151,60.4,force,front_fx,-0.0012946802889928222 +karman_re200,ppo,151,60.4,force,front_fy,-0.0049276878125965595 +karman_re200,ppo,151,60.4,force,upper_fx,-0.0006011785590089858 +karman_re200,ppo,151,60.4,force,upper_fy,0.007952578365802765 +karman_re200,ppo,151,60.4,force,lower_fx,-0.0007308829808607697 +karman_re200,ppo,151,60.4,force,lower_fy,-0.003783110762014985 +karman_re200,ppo,152,60.8,force,front_fx,-0.0008975355885922909 +karman_re200,ppo,152,60.8,force,front_fy,-0.004452446475625038 +karman_re200,ppo,152,60.8,force,upper_fx,0.003534061601385474 +karman_re200,ppo,152,60.8,force,upper_fy,0.007877357304096222 +karman_re200,ppo,152,60.8,force,lower_fx,0.00033295038156211376 +karman_re200,ppo,152,60.8,force,lower_fy,-0.005339622497558594 +karman_re200,ppo,153,61.2,force,front_fx,0.0027241320349276066 +karman_re200,ppo,153,61.2,force,front_fy,-0.0028414041735231876 +karman_re200,ppo,153,61.2,force,upper_fx,0.00556989386677742 +karman_re200,ppo,153,61.2,force,upper_fy,0.00664001889526844 +karman_re200,ppo,153,61.2,force,lower_fx,-0.001205375068821013 +karman_re200,ppo,153,61.2,force,lower_fy,-0.0023971362970769405 +karman_re200,ppo,154,61.6,force,front_fx,0.005478233098983765 +karman_re200,ppo,154,61.6,force,front_fy,-0.001045785378664732 +karman_re200,ppo,154,61.6,force,upper_fx,0.005176182370632887 +karman_re200,ppo,154,61.6,force,upper_fy,0.004162461031228304 +karman_re200,ppo,154,61.6,force,lower_fx,-0.005571621470153332 +karman_re200,ppo,154,61.6,force,lower_fy,-0.0035905898548662663 +karman_re200,ppo,155,62.0,force,front_fx,0.004401307553052902 +karman_re200,ppo,155,62.0,force,front_fy,0.0009985285578295588 +karman_re200,ppo,155,62.0,force,upper_fx,0.0033381807152181864 +karman_re200,ppo,155,62.0,force,upper_fy,0.0030462227296084166 +karman_re200,ppo,155,62.0,force,lower_fx,-0.003539564087986946 +karman_re200,ppo,155,62.0,force,lower_fy,-0.006653530523180962 +karman_re200,ppo,156,62.4,force,front_fx,0.0024260985665023327 +karman_re200,ppo,156,62.4,force,front_fy,0.002276743995025754 +karman_re200,ppo,156,62.4,force,upper_fx,0.0012490388471633196 +karman_re200,ppo,156,62.4,force,upper_fy,0.003922947682440281 +karman_re200,ppo,156,62.4,force,lower_fx,-0.0005191208329051733 +karman_re200,ppo,156,62.4,force,lower_fy,-0.006278945133090019 +karman_re200,ppo,157,62.8,force,front_fx,-0.00028465938521549106 +karman_re200,ppo,157,62.8,force,front_fy,0.0038066536653786898 +karman_re200,ppo,157,62.8,force,upper_fx,-0.00021733682660851628 +karman_re200,ppo,157,62.8,force,upper_fy,0.0038113004993647337 +karman_re200,ppo,157,62.8,force,lower_fx,0.0004346749046817422 +karman_re200,ppo,157,62.8,force,lower_fy,-0.006163178011775017 +karman_re200,ppo,158,63.2,force,front_fx,-0.001644022879190743 +karman_re200,ppo,158,63.2,force,front_fy,0.0035834379959851503 +karman_re200,ppo,158,63.2,force,upper_fx,-0.0011389945866540074 +karman_re200,ppo,158,63.2,force,upper_fy,0.003413537750020623 +karman_re200,ppo,158,63.2,force,lower_fx,0.0017429387662559748 +karman_re200,ppo,158,63.2,force,lower_fy,-0.006686666049063206 +karman_re200,ppo,159,63.6,force,front_fx,-0.0008196838316507638 +karman_re200,ppo,159,63.6,force,front_fy,0.003558667842298746 +karman_re200,ppo,159,63.6,force,upper_fx,-0.0023034587502479553 +karman_re200,ppo,159,63.6,force,upper_fy,0.0028687850572168827 +karman_re200,ppo,159,63.6,force,lower_fx,0.004208281636238098 +karman_re200,ppo,159,63.6,force,lower_fy,-0.006632924545556307 +karman_re200,ppo,160,64.0,force,front_fx,0.0032571128103882074 +karman_re200,ppo,160,64.0,force,front_fy,0.003275459399446845 +karman_re200,ppo,160,64.0,force,upper_fx,-0.005516976583749056 +karman_re200,ppo,160,64.0,force,upper_fy,0.001361681497655809 +karman_re200,ppo,160,64.0,force,lower_fx,0.006050004158169031 +karman_re200,ppo,160,64.0,force,lower_fy,-0.006729435175657272 +karman_re200,ppo,161,64.4,force,front_fx,0.00755462609231472 +karman_re200,ppo,161,64.4,force,front_fy,0.002841972978785634 +karman_re200,ppo,161,64.4,force,upper_fx,-0.009367558173835278 +karman_re200,ppo,161,64.4,force,upper_fy,0.003825786057859659 +karman_re200,ppo,161,64.4,force,lower_fx,0.007961918599903584 +karman_re200,ppo,161,64.4,force,lower_fy,-0.005522208753973246 +karman_re200,ppo,162,64.8,force,front_fx,0.007906693033874035 +karman_re200,ppo,162,64.8,force,front_fy,0.0008702738559804857 +karman_re200,ppo,162,64.8,force,upper_fx,-0.005997098051011562 +karman_re200,ppo,162,64.8,force,upper_fy,0.006968818139284849 +karman_re200,ppo,162,64.8,force,lower_fx,0.00507901469245553 +karman_re200,ppo,162,64.8,force,lower_fy,-0.003205239772796631 +karman_re200,ppo,163,65.2,force,front_fx,0.0066435313783586025 +karman_re200,ppo,163,65.2,force,front_fy,-0.000452188600320369 +karman_re200,ppo,163,65.2,force,upper_fx,-0.003330729901790619 +karman_re200,ppo,163,65.2,force,upper_fy,0.0034868421498686075 +karman_re200,ppo,163,65.2,force,lower_fx,0.0013215766521170735 +karman_re200,ppo,163,65.2,force,lower_fy,-0.0023664713371545076 +karman_re200,ppo,164,65.6,force,front_fx,0.0035592697095125914 +karman_re200,ppo,164,65.6,force,front_fy,-0.002307865535840392 +karman_re200,ppo,164,65.6,force,upper_fx,-0.002566581591963768 +karman_re200,ppo,164,65.6,force,upper_fy,0.00023109726316761225 +karman_re200,ppo,164,65.6,force,lower_fx,0.0008556504617445171 +karman_re200,ppo,164,65.6,force,lower_fy,-0.0019590475130826235 +karman_re200,ppo,165,66.0,force,front_fx,0.0010511234868317842 +karman_re200,ppo,165,66.0,force,front_fy,-0.004816649481654167 +karman_re200,ppo,165,66.0,force,upper_fx,-0.00428628409281373 +karman_re200,ppo,165,66.0,force,upper_fy,0.0018339533125981688 +karman_re200,ppo,165,66.0,force,lower_fx,-0.0005710436962544918 +karman_re200,ppo,165,66.0,force,lower_fy,-0.002652219496667385 +karman_re200,ppo,166,66.4,force,front_fx,-0.0005388179561123252 +karman_re200,ppo,166,66.4,force,front_fy,-0.005894976202398539 +karman_re200,ppo,166,66.4,force,upper_fx,-0.0033076470717787743 +karman_re200,ppo,166,66.4,force,upper_fy,0.006855095736682415 +karman_re200,ppo,166,66.4,force,lower_fx,-0.00048196138232015073 +karman_re200,ppo,166,66.4,force,lower_fy,-0.003207577858120203 +karman_re200,ppo,167,66.8,force,front_fx,-0.0013776677660644054 +karman_re200,ppo,167,66.8,force,front_fy,-0.004733414854854345 +karman_re200,ppo,167,66.8,force,upper_fx,0.0007079775095917284 +karman_re200,ppo,167,66.8,force,upper_fy,0.008691299706697464 +karman_re200,ppo,167,66.8,force,lower_fx,-0.001014989335089922 +karman_re200,ppo,167,66.8,force,lower_fy,-0.004903675988316536 +karman_re200,ppo,168,67.2,force,front_fx,-0.00023624602181371301 +karman_re200,ppo,168,67.2,force,front_fy,-0.004187555052340031 +karman_re200,ppo,168,67.2,force,upper_fx,0.004844853188842535 +karman_re200,ppo,168,67.2,force,upper_fy,0.007854718714952469 +karman_re200,ppo,168,67.2,force,lower_fx,0.0012412754585966468 +karman_re200,ppo,168,67.2,force,lower_fy,-0.004727447405457497 +karman_re200,ppo,169,67.6,force,front_fx,0.003995136823505163 +karman_re200,ppo,169,67.6,force,front_fy,-0.0023344187065958977 +karman_re200,ppo,169,67.6,force,upper_fx,0.006036296486854553 +karman_re200,ppo,169,67.6,force,upper_fy,0.006304101552814245 +karman_re200,ppo,169,67.6,force,lower_fx,-0.002915163990110159 +karman_re200,ppo,169,67.6,force,lower_fy,-0.0016629196470603347 +karman_re200,ppo,170,68.0,force,front_fx,0.005757280625402927 +karman_re200,ppo,170,68.0,force,front_fy,-0.0005875774659216404 +karman_re200,ppo,170,68.0,force,upper_fx,0.005625399295240641 +karman_re200,ppo,170,68.0,force,upper_fy,0.0036886141169816256 +karman_re200,ppo,170,68.0,force,lower_fx,-0.006145153660327196 +karman_re200,ppo,170,68.0,force,lower_fy,-0.0046959505416452885 +karman_re200,ppo,171,68.4,force,front_fx,0.004353501368314028 +karman_re200,ppo,171,68.4,force,front_fy,0.0014169920468702912 +karman_re200,ppo,171,68.4,force,upper_fx,0.0032298830337822437 +karman_re200,ppo,171,68.4,force,upper_fy,0.0033221906051039696 +karman_re200,ppo,171,68.4,force,lower_fx,-0.002654477022588253 +karman_re200,ppo,171,68.4,force,lower_fy,-0.006507433019578457 +karman_re200,ppo,172,68.8,force,front_fx,0.0022053446155041456 +karman_re200,ppo,172,68.8,force,front_fy,0.002635466866195202 +karman_re200,ppo,172,68.8,force,upper_fx,0.0009615910239517689 +karman_re200,ppo,172,68.8,force,upper_fy,0.00391748733818531 +karman_re200,ppo,172,68.8,force,lower_fx,-0.0008626148919574916 +karman_re200,ppo,172,68.8,force,lower_fy,-0.005416716914623976 +karman_re200,ppo,173,69.2,force,front_fx,-0.0006585990777239203 +karman_re200,ppo,173,69.2,force,front_fy,0.00394922960549593 +karman_re200,ppo,173,69.2,force,upper_fx,-0.00046824730816297233 +karman_re200,ppo,173,69.2,force,upper_fy,0.003600566415116191 +karman_re200,ppo,173,69.2,force,lower_fx,-1.787090877769515e-05 +karman_re200,ppo,173,69.2,force,lower_fy,-0.006043695379048586 +karman_re200,ppo,174,69.6,force,front_fx,-0.0015688353450968862 +karman_re200,ppo,174,69.6,force,front_fy,0.0033814532216638327 +karman_re200,ppo,174,69.6,force,upper_fx,-0.0014070167671889067 +karman_re200,ppo,174,69.6,force,upper_fy,0.0032871791627258062 +karman_re200,ppo,174,69.6,force,lower_fx,0.0019325827015563846 +karman_re200,ppo,174,69.6,force,lower_fy,-0.006877907086163759 +karman_re200,ppo,175,70.0,force,front_fx,-0.00018547454965300858 +karman_re200,ppo,175,70.0,force,front_fy,0.0038138562813401222 +karman_re200,ppo,175,70.0,force,upper_fx,-0.0027726306580007076 +karman_re200,ppo,175,70.0,force,upper_fy,0.0027926929760724306 +karman_re200,ppo,175,70.0,force,lower_fx,0.004910492803901434 +karman_re200,ppo,175,70.0,force,lower_fy,-0.007152062840759754 +karman_re200,ppo,176,70.4,force,front_fx,0.005431509111076593 +karman_re200,ppo,176,70.4,force,front_fy,0.0030226493254303932 +karman_re200,ppo,176,70.4,force,upper_fx,-0.007189559750258923 +karman_re200,ppo,176,70.4,force,upper_fy,0.0010640202090144157 +karman_re200,ppo,176,70.4,force,lower_fx,0.006404651794582605 +karman_re200,ppo,176,70.4,force,lower_fy,-0.007089883089065552 +karman_re200,ppo,177,70.8,force,front_fx,0.00767621211707592 +karman_re200,ppo,177,70.8,force,front_fy,0.002582537243142724 +karman_re200,ppo,177,70.8,force,upper_fx,-0.009637637995183468 +karman_re200,ppo,177,70.8,force,upper_fy,0.005751850549131632 +karman_re200,ppo,177,70.8,force,lower_fx,0.007925600744783878 +karman_re200,ppo,177,70.8,force,lower_fy,-0.0049230135045945644 +karman_re200,ppo,178,71.2,force,front_fx,0.008224323391914368 +karman_re200,ppo,178,71.2,force,front_fy,0.0006330861360765994 +karman_re200,ppo,178,71.2,force,upper_fx,-0.005155173130333424 +karman_re200,ppo,178,71.2,force,upper_fy,0.0063854726031422615 +karman_re200,ppo,178,71.2,force,lower_fx,0.0035989994648844004 +karman_re200,ppo,178,71.2,force,lower_fy,-0.003134628525003791 +karman_re200,ppo,179,71.6,force,front_fx,0.005873458925634623 +karman_re200,ppo,179,71.6,force,front_fy,-0.0005539096309803426 +karman_re200,ppo,179,71.6,force,upper_fx,-0.0026504299603402615 +karman_re200,ppo,179,71.6,force,upper_fy,0.0020962869748473167 +karman_re200,ppo,179,71.6,force,lower_fx,0.0011672963155433536 +karman_re200,ppo,179,71.6,force,lower_fy,-0.0025564972311258316 +karman_re200,ppo,180,72.0,force,front_fx,0.002530134515836835 +karman_re200,ppo,180,72.0,force,front_fy,-0.003093475941568613 +karman_re200,ppo,180,72.0,force,upper_fx,-0.0034359728451818228 +karman_re200,ppo,180,72.0,force,upper_fy,-0.0003787442692555487 +karman_re200,ppo,180,72.0,force,lower_fx,0.0001974120968952775 +karman_re200,ppo,180,72.0,force,lower_fy,-0.0019813920371234417 +karman_re200,ppo,181,72.4,force,front_fx,0.0006226372206583619 +karman_re200,ppo,181,72.4,force,front_fy,-0.0054676104336977005 +karman_re200,ppo,181,72.4,force,upper_fx,-0.005237535107880831 +karman_re200,ppo,181,72.4,force,upper_fy,0.003430380020290613 +karman_re200,ppo,181,72.4,force,lower_fx,-0.0008949946495704353 +karman_re200,ppo,181,72.4,force,lower_fy,-0.002840309403836727 +karman_re200,ppo,182,72.8,force,front_fx,-0.0006206054822541773 +karman_re200,ppo,182,72.8,force,front_fy,-0.005375813227146864 +karman_re200,ppo,182,72.8,force,upper_fx,-0.0023434918839484453 +karman_re200,ppo,182,72.8,force,upper_fy,0.008377037942409515 +karman_re200,ppo,182,72.8,force,lower_fx,-0.000652893097139895 +karman_re200,ppo,182,72.8,force,lower_fy,-0.0030406671576201916 +karman_re200,ppo,183,73.2,force,front_fx,-0.0013686638558283448 +karman_re200,ppo,183,73.2,force,front_fy,-0.004686100874096155 +karman_re200,ppo,183,73.2,force,upper_fx,0.002939787460491061 +karman_re200,ppo,183,73.2,force,upper_fy,0.008940582163631916 +karman_re200,ppo,183,73.2,force,lower_fx,-0.00043099955655634403 +karman_re200,ppo,183,73.2,force,lower_fy,-0.006136909127235413 +karman_re200,ppo,184,73.6,force,front_fx,0.0011363807134330273 +karman_re200,ppo,184,73.6,force,front_fy,-0.0038458972703665495 +karman_re200,ppo,184,73.6,force,upper_fx,0.006134146358817816 +karman_re200,ppo,184,73.6,force,upper_fy,0.007493959739804268 +karman_re200,ppo,184,73.6,force,lower_fx,0.001124063041061163 +karman_re200,ppo,184,73.6,force,lower_fy,-0.0033306682016700506 +karman_re200,ppo,185,74.0,force,front_fx,0.005269057583063841 +karman_re200,ppo,185,74.0,force,front_fy,-0.002225711476057768 +karman_re200,ppo,185,74.0,force,upper_fx,0.006163655314594507 +karman_re200,ppo,185,74.0,force,upper_fy,0.00513403071090579 +karman_re200,ppo,185,74.0,force,lower_fx,-0.00447496771812439 +karman_re200,ppo,185,74.0,force,lower_fy,-0.002226968528702855 +karman_re200,ppo,186,74.4,force,front_fx,0.005851141642779112 +karman_re200,ppo,186,74.4,force,front_fy,-0.0001463026856072247 +karman_re200,ppo,186,74.4,force,upper_fx,0.004895507823675871 +karman_re200,ppo,186,74.4,force,upper_fy,0.002859046682715416 +karman_re200,ppo,186,74.4,force,lower_fx,-0.005238802637904882 +karman_re200,ppo,186,74.4,force,lower_fy,-0.004841211251914501 +karman_re200,ppo,187,74.8,force,front_fx,0.004108233377337456 +karman_re200,ppo,187,74.8,force,front_fy,0.0014796726172789931 +karman_re200,ppo,187,74.8,force,upper_fx,0.002791241742670536 +karman_re200,ppo,187,74.8,force,upper_fy,0.003211844014003873 +karman_re200,ppo,187,74.8,force,lower_fx,-0.002526613185182214 +karman_re200,ppo,187,74.8,force,lower_fy,-0.005265199113637209 +karman_re200,ppo,188,75.2,force,front_fx,0.0018466043984517455 +karman_re200,ppo,188,75.2,force,front_fy,0.0030216530431061983 +karman_re200,ppo,188,75.2,force,upper_fx,0.000394559494452551 +karman_re200,ppo,188,75.2,force,upper_fy,0.0033649441320449114 +karman_re200,ppo,188,75.2,force,lower_fx,-0.0014104642905294895 +karman_re200,ppo,188,75.2,force,lower_fy,-0.0046998863108456135 +karman_re200,ppo,189,75.6,force,front_fx,-0.0011354971211403608 +karman_re200,ppo,189,75.6,force,front_fy,0.003810759400948882 +karman_re200,ppo,189,75.6,force,upper_fx,-0.0003613042354118079 +karman_re200,ppo,189,75.6,force,upper_fy,0.003492899239063263 +karman_re200,ppo,189,75.6,force,lower_fx,2.487503479642328e-05 +karman_re200,ppo,189,75.6,force,lower_fy,-0.006310753058642149 +karman_re200,ppo,190,76.0,force,front_fx,-0.001407648902386427 +karman_re200,ppo,190,76.0,force,front_fy,0.0036133378744125366 +karman_re200,ppo,190,76.0,force,upper_fx,-0.001668495824560523 +karman_re200,ppo,190,76.0,force,upper_fy,0.003206392517313361 +karman_re200,ppo,190,76.0,force,lower_fx,0.0027504158206284046 +karman_re200,ppo,190,76.0,force,lower_fy,-0.006876751780509949 +karman_re200,ppo,191,76.4,force,front_fx,0.0005349733983166516 +karman_re200,ppo,191,76.4,force,front_fy,0.004042775835841894 +karman_re200,ppo,191,76.4,force,upper_fx,-0.0032599440310150385 +karman_re200,ppo,191,76.4,force,upper_fy,0.0026249438524246216 +karman_re200,ppo,191,76.4,force,lower_fx,0.00573499733582139 +karman_re200,ppo,191,76.4,force,lower_fy,-0.007228105794638395 +karman_re200,ppo,192,76.8,force,front_fx,0.006401351653039455 +karman_re200,ppo,192,76.8,force,front_fy,0.0030246544629335403 +karman_re200,ppo,192,76.8,force,upper_fx,-0.008004206232726574 +karman_re200,ppo,192,76.8,force,upper_fy,0.0013303832383826375 +karman_re200,ppo,192,76.8,force,lower_fx,0.006871499586850405 +karman_re200,ppo,192,76.8,force,lower_fy,-0.007190888747572899 +karman_re200,ppo,193,77.2,force,front_fx,0.007706441450864077 +karman_re200,ppo,193,77.2,force,front_fy,0.002030374715104699 +karman_re200,ppo,193,77.2,force,upper_fx,-0.009246462024748325 +karman_re200,ppo,193,77.2,force,upper_fy,0.006365963723510504 +karman_re200,ppo,193,77.2,force,lower_fx,0.0073340595699846745 +karman_re200,ppo,193,77.2,force,lower_fy,-0.004663363099098206 +karman_re200,ppo,194,77.6,force,front_fx,0.007981455884873867 +karman_re200,ppo,194,77.6,force,front_fy,0.0001003881188808009 +karman_re200,ppo,194,77.6,force,upper_fx,-0.004921030718833208 +karman_re200,ppo,194,77.6,force,upper_fy,0.005751072894781828 +karman_re200,ppo,194,77.6,force,lower_fx,0.002960942918434739 +karman_re200,ppo,194,77.6,force,lower_fy,-0.0031840193551033735 +karman_re200,ppo,195,78.0,force,front_fx,0.005235192831605673 +karman_re200,ppo,195,78.0,force,front_fy,-0.0010139684891328216 +karman_re200,ppo,195,78.0,force,upper_fx,-0.002511515049263835 +karman_re200,ppo,195,78.0,force,upper_fy,0.0016834002453833818 +karman_re200,ppo,195,78.0,force,lower_fx,0.0012422366999089718 +karman_re200,ppo,195,78.0,force,lower_fy,-0.002627004636451602 +karman_re200,ppo,196,78.4,force,front_fx,0.0019481449853628874 +karman_re200,ppo,196,78.4,force,front_fy,-0.0037641122471541166 +karman_re200,ppo,196,78.4,force,upper_fx,-0.0036452841013669968 +karman_re200,ppo,196,78.4,force,upper_fy,0.00014952402852941304 +karman_re200,ppo,196,78.4,force,lower_fx,-0.00024534654221497476 +karman_re200,ppo,196,78.4,force,lower_fy,-0.002266598166897893 +karman_re200,ppo,197,78.8,force,front_fx,-6.979770842008293e-05 +karman_re200,ppo,197,78.8,force,front_fy,-0.005741295870393515 +karman_re200,ppo,197,78.8,force,upper_fx,-0.004639829974621534 +karman_re200,ppo,197,78.8,force,upper_fy,0.004584150854498148 +karman_re200,ppo,197,78.8,force,lower_fx,-0.0007998334476724267 +karman_re200,ppo,197,78.8,force,lower_fy,-0.003129414515569806 +karman_re200,ppo,198,79.2,force,front_fx,-0.0010331269586458802 +karman_re200,ppo,198,79.2,force,front_fy,-0.005114267580211163 +karman_re200,ppo,198,79.2,force,upper_fx,-0.0012917674612253904 +karman_re200,ppo,198,79.2,force,upper_fy,0.008519872091710567 +karman_re200,ppo,198,79.2,force,lower_fx,-0.0007536147022619843 +karman_re200,ppo,198,79.2,force,lower_fy,-0.003353807143867016 +karman_re200,ppo,199,79.6,force,front_fx,-0.0013261628337204456 +karman_re200,ppo,199,79.6,force,front_fy,-0.004590163007378578 +karman_re200,ppo,199,79.6,force,upper_fx,0.0034616596531122923 +karman_re200,ppo,199,79.6,force,upper_fy,0.008458536118268967 +karman_re200,ppo,199,79.6,force,lower_fx,2.908815622504335e-05 +karman_re200,ppo,199,79.6,force,lower_fy,-0.0060370564460754395 +karman_re200,ppo,200,80.0,force,front_fx,0.001750270719639957 +karman_re200,ppo,200,80.0,force,front_fy,-0.003423090325668454 +karman_re200,ppo,200,80.0,force,upper_fx,0.0060912128537893295 +karman_re200,ppo,200,80.0,force,upper_fy,0.007248840294778347 +karman_re200,ppo,200,80.0,force,lower_fx,0.0002894658246077597 +karman_re200,ppo,200,80.0,force,lower_fy,-0.0028188165742903948 +karman_re200,ppo,201,80.4,force,front_fx,0.005507654044777155 +karman_re200,ppo,201,80.4,force,front_fy,-0.001849098363891244 +karman_re200,ppo,201,80.4,force,upper_fx,0.0059824478812515736 +karman_re200,ppo,201,80.4,force,upper_fy,0.004817737266421318 +karman_re200,ppo,201,80.4,force,lower_fx,-0.005005775485187769 +karman_re200,ppo,201,80.4,force,lower_fy,-0.002927472349256277 +karman_re200,ppo,202,80.8,force,front_fx,0.005453095305711031 +karman_re200,ppo,202,80.8,force,front_fy,0.00035684570320881903 +karman_re200,ppo,202,80.8,force,upper_fx,0.0043507893569767475 +karman_re200,ppo,202,80.8,force,upper_fy,0.0029129544273018837 +karman_re200,ppo,202,80.8,force,lower_fx,-0.004582396242767572 +karman_re200,ppo,202,80.8,force,lower_fy,-0.005340974777936935 +karman_re200,ppo,203,81.2,force,front_fx,0.0035340068861842155 +karman_re200,ppo,203,81.2,force,front_fy,0.0017357770120725036 +karman_re200,ppo,203,81.2,force,upper_fx,0.002181385410949588 +karman_re200,ppo,203,81.2,force,upper_fy,0.0033616633154451847 +karman_re200,ppo,203,81.2,force,lower_fx,-0.00205383007414639 +karman_re200,ppo,203,81.2,force,lower_fy,-0.005301379133015871 +karman_re200,ppo,204,81.6,force,front_fx,0.0012563952477648854 +karman_re200,ppo,204,81.6,force,front_fy,0.0034016987774521112 +karman_re200,ppo,204,81.6,force,upper_fx,-7.865071529522538e-05 +karman_re200,ppo,204,81.6,force,upper_fy,0.003230801783502102 +karman_re200,ppo,204,81.6,force,lower_fx,-0.000989345135167241 +karman_re200,ppo,204,81.6,force,lower_fy,-0.0048799277283251286 +karman_re200,ppo,205,82.0,force,front_fx,-0.0014452853938564658 +karman_re200,ppo,205,82.0,force,front_fy,0.0037658808287233114 +karman_re200,ppo,205,82.0,force,upper_fx,-0.0005149655626155436 +karman_re200,ppo,205,82.0,force,upper_fy,0.0034008054062724113 +karman_re200,ppo,205,82.0,force,lower_fx,0.00048629488446749747 +karman_re200,ppo,205,82.0,force,lower_fy,-0.006535322871059179 +karman_re200,ppo,206,82.4,force,front_fx,-0.0012830522609874606 +karman_re200,ppo,206,82.4,force,front_fy,0.00365448952652514 +karman_re200,ppo,206,82.4,force,upper_fx,-0.001750189228914678 +karman_re200,ppo,206,82.4,force,upper_fy,0.0031672278419137 +karman_re200,ppo,206,82.4,force,lower_fx,0.003383179660886526 +karman_re200,ppo,206,82.4,force,lower_fy,-0.00697749387472868 +karman_re200,ppo,207,82.8,force,front_fx,0.0013298792764544487 +karman_re200,ppo,207,82.8,force,front_fy,0.004035409539937973 +karman_re200,ppo,207,82.8,force,upper_fx,-0.0036838212981820107 +karman_re200,ppo,207,82.8,force,upper_fy,0.0022576404735445976 +karman_re200,ppo,207,82.8,force,lower_fx,0.0063025266863405704 +karman_re200,ppo,207,82.8,force,lower_fy,-0.007419242989271879 +karman_re200,ppo,208,83.2,force,front_fx,0.00708335405215621 +karman_re200,ppo,208,83.2,force,front_fy,0.0029566267039626837 +karman_re200,ppo,208,83.2,force,upper_fx,-0.00854068249464035 +karman_re200,ppo,208,83.2,force,upper_fy,0.001768722664564848 +karman_re200,ppo,208,83.2,force,lower_fx,0.007557620294392109 +karman_re200,ppo,208,83.2,force,lower_fy,-0.007105751428753138 +karman_re200,ppo,209,83.6,force,front_fx,0.007814998738467693 +karman_re200,ppo,209,83.6,force,front_fy,0.0013207322917878628 +karman_re200,ppo,209,83.6,force,upper_fx,-0.008413957431912422 +karman_re200,ppo,209,83.6,force,upper_fy,0.0067872838117182255 +karman_re200,ppo,209,83.6,force,lower_fx,0.006865409668534994 +karman_re200,ppo,209,83.6,force,lower_fy,-0.004396435804665089 +karman_re200,ppo,210,84.0,force,front_fx,0.0075442129746079445 +karman_re200,ppo,210,84.0,force,front_fy,-0.0003861900477204472 +karman_re200,ppo,210,84.0,force,upper_fx,-0.004569615703076124 +karman_re200,ppo,210,84.0,force,upper_fy,0.0051796650514006615 +karman_re200,ppo,210,84.0,force,lower_fx,0.002438568975776434 +karman_re200,ppo,210,84.0,force,lower_fy,-0.003198693972080946 +karman_re200,ppo,211,84.4,force,front_fx,0.00463653402402997 +karman_re200,ppo,211,84.4,force,front_fy,-0.001625693403184414 +karman_re200,ppo,211,84.4,force,upper_fx,-0.00252593494951725 +karman_re200,ppo,211,84.4,force,upper_fy,0.0013646784937009215 +karman_re200,ppo,211,84.4,force,lower_fx,0.0011797492625191808 +karman_re200,ppo,211,84.4,force,lower_fy,-0.002578836167231202 +karman_re200,ppo,212,84.8,force,front_fx,0.0014465497806668282 +karman_re200,ppo,212,84.8,force,front_fy,-0.0042998516000807285 +karman_re200,ppo,212,84.8,force,upper_fx,-0.0037385174073278904 +karman_re200,ppo,212,84.8,force,upper_fy,0.0008386764675378799 +karman_re200,ppo,212,84.8,force,lower_fx,-0.000543656584341079 +karman_re200,ppo,212,84.8,force,lower_fy,-0.0025929796975106 +karman_re200,ppo,213,85.2,force,front_fx,-0.0005851979367434978 +karman_re200,ppo,213,85.2,force,front_fy,-0.00579395005479455 +karman_re200,ppo,213,85.2,force,upper_fx,-0.0038242137525230646 +karman_re200,ppo,213,85.2,force,upper_fy,0.00549105042591691 +karman_re200,ppo,213,85.2,force,lower_fx,-0.0006423945887945592 +karman_re200,ppo,213,85.2,force,lower_fy,-0.003270780434831977 +karman_re200,ppo,214,85.6,force,front_fx,-0.0013463825453072786 +karman_re200,ppo,214,85.6,force,front_fy,-0.004782849922776222 +karman_re200,ppo,214,85.6,force,upper_fx,-0.0003439297142904252 +karman_re200,ppo,214,85.6,force,upper_fy,0.00824038591235876 +karman_re200,ppo,214,85.6,force,lower_fx,-0.0009312349720858037 +karman_re200,ppo,214,85.6,force,lower_fy,-0.003968305420130491 +karman_re200,ppo,215,86.0,force,front_fx,-0.001039196620695293 +karman_re200,ppo,215,86.0,force,front_fy,-0.004367739427834749 +karman_re200,ppo,215,86.0,force,upper_fx,0.0038713731337338686 +karman_re200,ppo,215,86.0,force,upper_fy,0.007943490520119667 +karman_re200,ppo,215,86.0,force,lower_fx,0.0004917976912111044 +karman_re200,ppo,215,86.0,force,lower_fy,-0.005381700582802296 +karman_re200,ppo,216,86.4,force,front_fx,0.00267716939561069 +karman_re200,ppo,216,86.4,force,front_fy,-0.0029482031241059303 +karman_re200,ppo,216,86.4,force,upper_fx,0.005798692815005779 +karman_re200,ppo,216,86.4,force,upper_fy,0.00683829840272665 +karman_re200,ppo,216,86.4,force,lower_fx,-0.0013771750964224339 +karman_re200,ppo,216,86.4,force,lower_fy,-0.0024175764992833138 +karman_re200,ppo,217,86.8,force,front_fx,0.0057478914968669415 +karman_re200,ppo,217,86.8,force,front_fy,-0.0013735380489379168 +karman_re200,ppo,217,86.8,force,upper_fx,0.005541149992495775 +karman_re200,ppo,217,86.8,force,upper_fy,0.004289621487259865 +karman_re200,ppo,217,86.8,force,lower_fx,-0.005829912610352039 +karman_re200,ppo,217,86.8,force,lower_fy,-0.003734928322955966 +karman_re200,ppo,218,87.2,force,front_fx,0.004865907598286867 +karman_re200,ppo,218,87.2,force,front_fy,0.0007930187275633216 +karman_re200,ppo,218,87.2,force,upper_fx,0.0035180943086743355 +karman_re200,ppo,218,87.2,force,upper_fy,0.0030264300294220448 +karman_re200,ppo,218,87.2,force,lower_fx,-0.003967536613345146 +karman_re200,ppo,218,87.2,force,lower_fy,-0.006144596263766289 +karman_re200,ppo,219,87.6,force,front_fx,0.002854827558621764 +karman_re200,ppo,219,87.6,force,front_fy,0.0020344089716672897 +karman_re200,ppo,219,87.6,force,upper_fx,0.001404671696946025 +karman_re200,ppo,219,87.6,force,upper_fy,0.003666732693091035 +karman_re200,ppo,219,87.6,force,lower_fx,-0.001320649404078722 +karman_re200,ppo,219,87.6,force,lower_fy,-0.005498116835951805 +karman_re200,ppo,220,88.0,force,front_fx,0.00025957493926398456 +karman_re200,ppo,220,88.0,force,front_fy,0.0037978102918714285 +karman_re200,ppo,220,88.0,force,upper_fx,-0.00040476524736732244 +karman_re200,ppo,220,88.0,force,upper_fy,0.003330567153170705 +karman_re200,ppo,220,88.0,force,lower_fx,-0.00031990488059818745 +karman_re200,ppo,220,88.0,force,lower_fy,-0.005303075537085533 +karman_re200,ppo,221,88.4,force,front_fx,-0.001680603134445846 +karman_re200,ppo,221,88.4,force,front_fy,0.00368087412789464 +karman_re200,ppo,221,88.4,force,upper_fx,-0.0009322408586740494 +karman_re200,ppo,221,88.4,force,upper_fy,0.003337354864925146 +karman_re200,ppo,221,88.4,force,lower_fx,0.0011360381031408906 +karman_re200,ppo,221,88.4,force,lower_fy,-0.00667381938546896 +karman_re200,ppo,222,88.8,force,front_fx,-0.0010524435201659799 +karman_re200,ppo,222,88.8,force,front_fy,0.003689113538712263 +karman_re200,ppo,222,88.8,force,upper_fx,-0.0020357458852231503 +karman_re200,ppo,222,88.8,force,upper_fy,0.0031518114265054464 +karman_re200,ppo,222,88.8,force,lower_fx,0.004051769617944956 +karman_re200,ppo,222,88.8,force,lower_fy,-0.006951804272830486 +karman_re200,ppo,223,89.2,force,front_fx,0.0024880359414964914 +karman_re200,ppo,223,89.2,force,front_fy,0.0036265687085688114 +karman_re200,ppo,223,89.2,force,upper_fx,-0.0046319193206727505 +karman_re200,ppo,223,89.2,force,upper_fy,0.0017587824258953333 +karman_re200,ppo,223,89.2,force,lower_fx,0.006313216872513294 +karman_re200,ppo,223,89.2,force,lower_fy,-0.007202001754194498 +karman_re200,ppo,224,89.6,force,front_fx,0.0075325206853449345 +karman_re200,ppo,224,89.6,force,front_fy,0.0028151071164757013 +karman_re200,ppo,224,89.6,force,upper_fx,-0.009177357889711857 +karman_re200,ppo,224,89.6,force,upper_fy,0.0028742223512381315 +karman_re200,ppo,224,89.6,force,lower_fx,0.007927604019641876 +karman_re200,ppo,224,89.6,force,lower_fy,-0.006387769710272551 +karman_re200,ppo,225,90.0,force,front_fx,0.007913945242762566 +karman_re200,ppo,225,90.0,force,front_fy,0.0007106663542799652 +karman_re200,ppo,225,90.0,force,upper_fx,-0.00710984505712986 +karman_re200,ppo,225,90.0,force,upper_fy,0.007000756449997425 +karman_re200,ppo,225,90.0,force,lower_fx,0.005821029655635357 +karman_re200,ppo,225,90.0,force,lower_fy,-0.0038110760506242514 +karman_re200,ppo,226,90.4,force,front_fx,0.006964418105781078 +karman_re200,ppo,226,90.4,force,front_fy,-0.0006616057362407446 +karman_re200,ppo,226,90.4,force,upper_fx,-0.003960744012147188 +karman_re200,ppo,226,90.4,force,upper_fy,0.004437626805156469 +karman_re200,ppo,226,90.4,force,lower_fx,0.00177844671998173 +karman_re200,ppo,226,90.4,force,lower_fy,-0.00272501353174448 +karman_re200,ppo,227,90.8,force,front_fx,0.003993339836597443 +karman_re200,ppo,227,90.8,force,front_fy,-0.002246447140350938 +karman_re200,ppo,227,90.8,force,upper_fx,-0.002449684077873826 +karman_re200,ppo,227,90.8,force,upper_fy,0.0009976495057344437 +karman_re200,ppo,227,90.8,force,lower_fx,0.0010382026666775346 +karman_re200,ppo,227,90.8,force,lower_fy,-0.002287010895088315 +karman_re200,ppo,228,91.2,force,front_fx,0.0009888638742268085 +karman_re200,ppo,228,91.2,force,front_fy,-0.004666114691644907 +karman_re200,ppo,228,91.2,force,upper_fx,-0.003715988015756011 +karman_re200,ppo,228,91.2,force,upper_fy,0.001590084284543991 +karman_re200,ppo,228,91.2,force,lower_fx,-0.00047639707918278873 +karman_re200,ppo,228,91.2,force,lower_fy,-0.002854777965694666 +karman_re200,ppo,229,91.6,force,front_fx,-0.0008522149291820824 +karman_re200,ppo,229,91.6,force,front_fy,-0.005599698051810265 +karman_re200,ppo,229,91.6,force,upper_fx,-0.003126397728919983 +karman_re200,ppo,229,91.6,force,upper_fy,0.005954315885901451 +karman_re200,ppo,229,91.6,force,lower_fx,-0.0005442274268716574 +karman_re200,ppo,229,91.6,force,lower_fy,-0.0033020896371454 +karman_re200,ppo,230,92.0,force,front_fx,-0.0014931380283087492 +karman_re200,ppo,230,92.0,force,front_fy,-0.004489356651902199 +karman_re200,ppo,230,92.0,force,upper_fx,0.0003643350792117417 +karman_re200,ppo,230,92.0,force,upper_fy,0.0077619547955691814 +karman_re200,ppo,230,92.0,force,lower_fx,-0.0008964429143816233 +karman_re200,ppo,230,92.0,force,lower_fy,-0.004629847593605518 +karman_re200,ppo,231,92.4,force,front_fx,-0.0002947690663859248 +karman_re200,ppo,231,92.4,force,front_fy,-0.004090228583663702 +karman_re200,ppo,231,92.4,force,upper_fx,0.004162492696195841 +karman_re200,ppo,231,92.4,force,upper_fy,0.007456539664417505 +karman_re200,ppo,231,92.4,force,lower_fx,0.0004286214243620634 +karman_re200,ppo,231,92.4,force,lower_fy,-0.004409446381032467 +karman_re200,ppo,232,92.8,force,front_fx,0.00395424198359251 +karman_re200,ppo,232,92.8,force,front_fy,-0.0024374250788241625 +karman_re200,ppo,232,92.8,force,upper_fx,0.005406173877418041 +karman_re200,ppo,232,92.8,force,upper_fy,0.006127665750682354 +karman_re200,ppo,232,92.8,force,lower_fx,-0.003414690727367997 +karman_re200,ppo,232,92.8,force,lower_fy,-0.0021300609223544598 +karman_re200,ppo,233,93.2,force,front_fx,0.005742234643548727 +karman_re200,ppo,233,93.2,force,front_fy,-0.0008360641659237444 +karman_re200,ppo,233,93.2,force,upper_fx,0.004965230822563171 +karman_re200,ppo,233,93.2,force,upper_fy,0.003545917570590973 +karman_re200,ppo,233,93.2,force,lower_fx,-0.00655814353376627 +karman_re200,ppo,233,93.2,force,lower_fy,-0.004808468744158745 +karman_re200,ppo,234,93.6,force,front_fx,0.00428557675331831 +karman_re200,ppo,234,93.6,force,front_fy,0.0011386368423700333 +karman_re200,ppo,234,93.6,force,upper_fx,0.00271469634026289 +karman_re200,ppo,234,93.6,force,upper_fy,0.0032581540290266275 +karman_re200,ppo,234,93.6,force,lower_fx,-0.0029642025474458933 +karman_re200,ppo,234,93.6,force,lower_fy,-0.006914660334587097 +karman_re200,ppo,235,94.0,force,front_fx,0.0021620842162519693 +karman_re200,ppo,235,94.0,force,front_fy,0.0025020157918334007 +karman_re200,ppo,235,94.0,force,upper_fx,0.000747376587241888 +karman_re200,ppo,235,94.0,force,upper_fy,0.003888064995408058 +karman_re200,ppo,235,94.0,force,lower_fx,-0.0006636491161771119 +karman_re200,ppo,235,94.0,force,lower_fy,-0.005605548154562712 +karman_re200,ppo,236,94.4,force,front_fx,-0.0008165352628566325 +karman_re200,ppo,236,94.4,force,front_fy,0.0038812526036053896 +karman_re200,ppo,236,94.4,force,upper_fx,-0.00038759279414080083 +karman_re200,ppo,236,94.4,force,upper_fy,0.0037377483677119017 +karman_re200,ppo,236,94.4,force,lower_fx,0.00023476356000173837 +karman_re200,ppo,236,94.4,force,lower_fy,-0.0059103695675730705 +karman_re200,ppo,237,94.8,force,front_fx,-0.0015409854240715504 +karman_re200,ppo,237,94.8,force,front_fy,0.003610926680266857 +karman_re200,ppo,237,94.8,force,upper_fx,-0.0013412587577477098 +karman_re200,ppo,237,94.8,force,upper_fy,0.0032147658057510853 +karman_re200,ppo,237,94.8,force,lower_fx,0.001932386658154428 +karman_re200,ppo,237,94.8,force,lower_fy,-0.006510296370834112 +karman_re200,ppo,238,95.2,force,front_fx,-0.00024911639047786593 +karman_re200,ppo,238,95.2,force,front_fy,0.0038134416099637747 +karman_re200,ppo,238,95.2,force,upper_fx,-0.0026837587356567383 +karman_re200,ppo,238,95.2,force,upper_fy,0.0028624602127820253 +karman_re200,ppo,238,95.2,force,lower_fx,0.00457856385037303 +karman_re200,ppo,238,95.2,force,lower_fy,-0.006599864456802607 +karman_re200,ppo,239,95.6,force,front_fx,0.004573258105665445 +karman_re200,ppo,239,95.6,force,front_fy,0.0031705584842711687 +karman_re200,ppo,239,95.6,force,upper_fx,-0.006430579349398613 +karman_re200,ppo,239,95.6,force,upper_fy,0.0013218858512118459 +karman_re200,ppo,239,95.6,force,lower_fx,0.006160276010632515 +karman_re200,ppo,239,95.6,force,lower_fy,-0.006956073455512524 +karman_re200,ppo,240,96.0,force,front_fx,0.007643101271241903 +karman_re200,ppo,240,96.0,force,front_fy,0.0027747072745114565 +karman_re200,ppo,240,96.0,force,upper_fx,-0.009499233216047287 +karman_re200,ppo,240,96.0,force,upper_fy,0.005004018545150757 +karman_re200,ppo,240,96.0,force,lower_fx,0.007849808782339096 +karman_re200,ppo,240,96.0,force,lower_fy,-0.005149874836206436 +karman_re200,ppo,241,96.4,force,front_fx,0.008112108334898949 +karman_re200,ppo,241,96.4,force,front_fy,0.0005860509700141847 +karman_re200,ppo,241,96.4,force,upper_fx,-0.005466752219945192 +karman_re200,ppo,241,96.4,force,upper_fy,0.006376160774379969 +karman_re200,ppo,241,96.4,force,lower_fx,0.0040927608497440815 +karman_re200,ppo,241,96.4,force,lower_fy,-0.003096814965829253 +karman_re200,ppo,242,96.8,force,front_fx,0.006147205829620361 +karman_re200,ppo,242,96.8,force,front_fy,-0.0005847944994457066 +karman_re200,ppo,242,96.8,force,upper_fx,-0.0030787254218012094 +karman_re200,ppo,242,96.8,force,upper_fy,0.0025622600223869085 +karman_re200,ppo,242,96.8,force,lower_fx,0.0011877227807417512 +karman_re200,ppo,242,96.8,force,lower_fy,-0.002314058132469654 +karman_re200,ppo,243,97.2,force,front_fx,0.00308344978839159 +karman_re200,ppo,243,97.2,force,front_fy,-0.0028416472487151623 +karman_re200,ppo,243,97.2,force,upper_fx,-0.003253030823543668 +karman_re200,ppo,243,97.2,force,upper_fy,-4.1208957554772496e-05 +karman_re200,ppo,243,97.2,force,lower_fx,0.0004943126114085317 +karman_re200,ppo,243,97.2,force,lower_fy,-0.0017654987750574946 +karman_re200,ppo,244,97.6,force,front_fx,0.0008859549998305738 +karman_re200,ppo,244,97.6,force,front_fy,-0.00518377311527729 +karman_re200,ppo,244,97.6,force,upper_fx,-0.004767454229295254 +karman_re200,ppo,244,97.6,force,upper_fy,0.003148663556203246 +karman_re200,ppo,244,97.6,force,lower_fx,-0.0006656560581177473 +karman_re200,ppo,244,97.6,force,lower_fy,-0.002639628015458584 +karman_re200,ppo,245,98.0,force,front_fx,-0.0005044560530222952 +karman_re200,ppo,245,98.0,force,front_fy,-0.005335143767297268 +karman_re200,ppo,245,98.0,force,upper_fx,-0.0023888961877673864 +karman_re200,ppo,245,98.0,force,upper_fy,0.00773481372743845 +karman_re200,ppo,245,98.0,force,lower_fx,-0.0005973962252028286 +karman_re200,ppo,245,98.0,force,lower_fy,-0.003029203973710537 +karman_re200,ppo,246,98.4,force,front_fx,-0.0013661023695021868 +karman_re200,ppo,246,98.4,force,front_fy,-0.004567336291074753 +karman_re200,ppo,246,98.4,force,upper_fx,0.002267640084028244 +karman_re200,ppo,246,98.4,force,upper_fy,0.00844606477767229 +karman_re200,ppo,246,98.4,force,lower_fx,-0.0005620936863124371 +karman_re200,ppo,246,98.4,force,lower_fy,-0.005760570988059044 +karman_re200,ppo,247,98.8,force,front_fx,0.0009557217126712203 +karman_re200,ppo,247,98.8,force,front_fy,-0.003769750241190195 +karman_re200,ppo,247,98.8,force,upper_fx,0.005447303876280785 +karman_re200,ppo,247,98.8,force,upper_fy,0.007385939825326204 +karman_re200,ppo,247,98.8,force,lower_fx,0.0007062226068228483 +karman_re200,ppo,247,98.8,force,lower_fy,-0.0033046710304915905 +karman_re200,ppo,248,99.2,force,front_fx,0.0052016000263392925 +karman_re200,ppo,248,99.2,force,front_fy,-0.0021762552205473185 +karman_re200,ppo,248,99.2,force,upper_fx,0.005754281301051378 +karman_re200,ppo,248,99.2,force,upper_fy,0.0052369520999491215 +karman_re200,ppo,248,99.2,force,lower_fx,-0.004767863545566797 +karman_re200,ppo,248,99.2,force,lower_fy,-0.002087379340082407 +karman_re200,ppo,249,99.6,force,front_fx,0.005674338433891535 +karman_re200,ppo,249,99.6,force,front_fy,-0.00022420371533371508 +karman_re200,ppo,249,99.6,force,upper_fx,0.004789248574525118 +karman_re200,ppo,249,99.6,force,upper_fy,0.002939485711976886 +karman_re200,ppo,249,99.6,force,lower_fx,-0.005489653907716274 +karman_re200,ppo,249,99.6,force,lower_fy,-0.005189287010580301 +karman_re200,ppo,250,100.0,force,front_fx,0.003976942505687475 +karman_re200,ppo,250,100.0,force,front_fy,0.0014377252664417028 +karman_re200,ppo,250,100.0,force,upper_fx,0.0026694405823946 +karman_re200,ppo,250,100.0,force,upper_fy,0.0033732547890394926 +karman_re200,ppo,250,100.0,force,lower_fx,-0.002105982042849064 +karman_re200,ppo,250,100.0,force,lower_fy,-0.005810394883155823 +karman_re200,ppo,251,100.4,force,front_fx,0.0015790809411555529 +karman_re200,ppo,251,100.4,force,front_fy,0.0030609809327870607 +karman_re200,ppo,251,100.4,force,upper_fx,0.00048654776765033603 +karman_re200,ppo,251,100.4,force,upper_fy,0.003665520576760173 +karman_re200,ppo,251,100.4,force,lower_fx,-0.0009206659160554409 +karman_re200,ppo,251,100.4,force,lower_fy,-0.0049947467632591724 +karman_re200,ppo,252,100.8,force,front_fx,-0.0012320828391239047 +karman_re200,ppo,252,100.8,force,front_fy,0.0036994197871536016 +karman_re200,ppo,252,100.8,force,upper_fx,-0.00045077127288095653 +karman_re200,ppo,252,100.8,force,upper_fy,0.003709946060553193 +karman_re200,ppo,252,100.8,force,lower_fx,0.00025828465004451573 +karman_re200,ppo,252,100.8,force,lower_fy,-0.0062753125093877316 +karman_re200,ppo,253,101.2,force,front_fx,-0.0013658014358952641 +karman_re200,ppo,253,101.2,force,front_fy,0.003636340145021677 +karman_re200,ppo,253,101.2,force,upper_fx,-0.0017517609521746635 +karman_re200,ppo,253,101.2,force,upper_fy,0.003346001263707876 +karman_re200,ppo,253,101.2,force,lower_fx,0.002907080575823784 +karman_re200,ppo,253,101.2,force,lower_fy,-0.006633523851633072 +karman_re200,ppo,254,101.6,force,front_fx,0.0009722497779875994 +karman_re200,ppo,254,101.6,force,front_fy,0.0040003531612455845 +karman_re200,ppo,254,101.6,force,upper_fx,-0.0036595920100808144 +karman_re200,ppo,254,101.6,force,upper_fy,0.0023787841200828552 +karman_re200,ppo,254,101.6,force,lower_fx,0.0055777449160814285 +karman_re200,ppo,254,101.6,force,lower_fy,-0.006697774399071932 +karman_re200,ppo,255,102.0,force,front_fx,0.006918648257851601 +karman_re200,ppo,255,102.0,force,front_fy,0.003163437359035015 +karman_re200,ppo,255,102.0,force,upper_fx,-0.008549257181584835 +karman_re200,ppo,255,102.0,force,upper_fy,0.0016845923382788897 +karman_re200,ppo,255,102.0,force,lower_fx,0.006649532821029425 +karman_re200,ppo,255,102.0,force,lower_fy,-0.006582246627658606 +karman_re200,ppo,256,102.4,force,front_fx,0.007822678424417973 +karman_re200,ppo,256,102.4,force,front_fy,0.002132608788087964 +karman_re200,ppo,256,102.4,force,upper_fx,-0.008858202025294304 +karman_re200,ppo,256,102.4,force,upper_fy,0.006742432247847319 +karman_re200,ppo,256,102.4,force,lower_fx,0.006626986898481846 +karman_re200,ppo,256,102.4,force,lower_fy,-0.003958583809435368 +karman_re200,ppo,257,102.8,force,front_fx,0.008141649886965752 +karman_re200,ppo,257,102.8,force,front_fy,0.0005306892562657595 +karman_re200,ppo,257,102.8,force,upper_fx,-0.004825384821742773 +karman_re200,ppo,257,102.8,force,upper_fy,0.005092701409012079 +karman_re200,ppo,257,102.8,force,lower_fx,0.0025337329134345055 +karman_re200,ppo,257,102.8,force,lower_fy,-0.0026198409032076597 +karman_re200,ppo,258,103.2,force,front_fx,0.005336241330951452 +karman_re200,ppo,258,103.2,force,front_fy,-0.0008061320404522121 +karman_re200,ppo,258,103.2,force,upper_fx,-0.0028605025727301836 +karman_re200,ppo,258,103.2,force,upper_fy,0.0010380324674770236 +karman_re200,ppo,258,103.2,force,lower_fx,0.001199427293613553 +karman_re200,ppo,258,103.2,force,lower_fy,-0.002352106384932995 +karman_re200,ppo,259,103.6,force,front_fx,0.0018611655104905367 +karman_re200,ppo,259,103.6,force,front_fy,-0.003644863609224558 +karman_re200,ppo,259,103.6,force,upper_fx,-0.003946907352656126 +karman_re200,ppo,259,103.6,force,upper_fy,9.247184789273888e-05 +karman_re200,ppo,259,103.6,force,lower_fx,-0.0002615730045363307 +karman_re200,ppo,259,103.6,force,lower_fy,-0.0022282639984041452 +karman_re200,ppo,260,104.0,force,front_fx,-2.082735773001332e-05 +karman_re200,ppo,260,104.0,force,front_fy,-0.005641711875796318 +karman_re200,ppo,260,104.0,force,upper_fx,-0.004552165977656841 +karman_re200,ppo,260,104.0,force,upper_fy,0.004580026026815176 +karman_re200,ppo,260,104.0,force,lower_fx,-0.000883924716617912 +karman_re200,ppo,260,104.0,force,lower_fy,-0.0030470627825707197 +karman_re200,ppo,261,104.4,force,front_fx,-0.00115607597399503 +karman_re200,ppo,261,104.4,force,front_fy,-0.005066788289695978 +karman_re200,ppo,261,104.4,force,upper_fx,-0.0012026290642097592 +karman_re200,ppo,261,104.4,force,upper_fy,0.008386243134737015 +karman_re200,ppo,261,104.4,force,lower_fx,-0.0007513293530791998 +karman_re200,ppo,261,104.4,force,lower_fy,-0.003325158031657338 +karman_re200,ppo,262,104.8,force,front_fx,-0.0012276554480195045 +karman_re200,ppo,262,104.8,force,front_fy,-0.004686035215854645 +karman_re200,ppo,262,104.8,force,upper_fx,0.003516747150570154 +karman_re200,ppo,262,104.8,force,upper_fy,0.008245429024100304 +karman_re200,ppo,262,104.8,force,lower_fx,-0.00021237568580545485 +karman_re200,ppo,262,104.8,force,lower_fy,-0.005682030692696571 +karman_re200,ppo,263,105.2,force,front_fx,0.0019087435211986303 +karman_re200,ppo,263,105.2,force,front_fy,-0.0035281190648674965 +karman_re200,ppo,263,105.2,force,upper_fx,0.0061667137779295444 +karman_re200,ppo,263,105.2,force,upper_fy,0.006733939051628113 +karman_re200,ppo,263,105.2,force,lower_fx,-0.00018870232452172786 +karman_re200,ppo,263,105.2,force,lower_fy,-0.002719560172408819 +karman_re200,ppo,264,105.6,force,front_fx,0.005566384643316269 +karman_re200,ppo,264,105.6,force,front_fy,-0.0018524903571233153 +karman_re200,ppo,264,105.6,force,upper_fx,0.005884460173547268 +karman_re200,ppo,264,105.6,force,upper_fy,0.004490336403250694 +karman_re200,ppo,264,105.6,force,lower_fx,-0.00537913991138339 +karman_re200,ppo,264,105.6,force,lower_fy,-0.0028822796884924173 +karman_re200,ppo,265,106.0,force,front_fx,0.005385413300246 +karman_re200,ppo,265,106.0,force,front_fy,0.0003140432818327099 +karman_re200,ppo,265,106.0,force,upper_fx,0.004299655556678772 +karman_re200,ppo,265,106.0,force,upper_fy,0.002880875254049897 +karman_re200,ppo,265,106.0,force,lower_fx,-0.0047380258329212666 +karman_re200,ppo,265,106.0,force,lower_fy,-0.005692184437066317 +karman_re200,ppo,266,106.4,force,front_fx,0.0036296986509114504 +karman_re200,ppo,266,106.4,force,front_fy,0.0017325959634035826 +karman_re200,ppo,266,106.4,force,upper_fx,0.0021098896395415068 +karman_re200,ppo,266,106.4,force,upper_fy,0.003441947977989912 +karman_re200,ppo,266,106.4,force,lower_fx,-0.0018972301622852683 +karman_re200,ppo,266,106.4,force,lower_fy,-0.005583627615123987 +karman_re200,ppo,267,106.8,force,front_fx,0.0012019085697829723 +karman_re200,ppo,267,106.8,force,front_fy,0.003441403852775693 +karman_re200,ppo,267,106.8,force,upper_fx,1.8403277863399126e-05 +karman_re200,ppo,267,106.8,force,upper_fy,0.0033901017159223557 +karman_re200,ppo,267,106.8,force,lower_fx,-0.0009138945024460554 +karman_re200,ppo,267,106.8,force,lower_fy,-0.004962677136063576 +karman_re200,ppo,268,107.2,force,front_fx,-0.0014155168319121003 +karman_re200,ppo,268,107.2,force,front_fy,0.003661921015009284 +karman_re200,ppo,268,107.2,force,upper_fx,-0.0005444666603580117 +karman_re200,ppo,268,107.2,force,upper_fy,0.003558226628229022 +karman_re200,ppo,268,107.2,force,lower_fx,0.00027982433675788343 +karman_re200,ppo,268,107.2,force,lower_fy,-0.006356910336762667 +karman_re200,ppo,269,107.6,force,front_fx,-0.0013266433961689472 +karman_re200,ppo,269,107.6,force,front_fy,0.003651165869086981 +karman_re200,ppo,269,107.6,force,upper_fx,-0.0017028633737936616 +karman_re200,ppo,269,107.6,force,upper_fy,0.0032969918102025986 +karman_re200,ppo,269,107.6,force,lower_fx,0.0030458534602075815 +karman_re200,ppo,269,107.6,force,lower_fy,-0.006745452992618084 +karman_re200,ppo,270,108.0,force,front_fx,0.0014028024161234498 +karman_re200,ppo,270,108.0,force,front_fy,0.003976692445576191 +karman_re200,ppo,270,108.0,force,upper_fx,-0.0037614903412759304 +karman_re200,ppo,270,108.0,force,upper_fy,0.0021129115484654903 +karman_re200,ppo,270,108.0,force,lower_fx,0.005874515976756811 +karman_re200,ppo,270,108.0,force,lower_fy,-0.00692534726113081 +karman_re200,ppo,271,108.4,force,front_fx,0.007127232383936644 +karman_re200,ppo,271,108.4,force,front_fy,0.003027084982022643 +karman_re200,ppo,271,108.4,force,upper_fx,-0.008603586815297604 +karman_re200,ppo,271,108.4,force,upper_fy,0.0018800561083480716 +karman_re200,ppo,271,108.4,force,lower_fx,0.007178349420428276 +karman_re200,ppo,271,108.4,force,lower_fy,-0.006621335167437792 +karman_re200,ppo,272,108.8,force,front_fx,0.007785254158079624 +karman_re200,ppo,272,108.8,force,front_fy,0.0015315472846850753 +karman_re200,ppo,272,108.8,force,upper_fx,-0.008153500966727734 +karman_re200,ppo,272,108.8,force,upper_fy,0.0069395010359585285 +karman_re200,ppo,272,108.8,force,lower_fx,0.0064928545616567135 +karman_re200,ppo,272,108.8,force,lower_fy,-0.003991086967289448 +karman_re200,ppo,273,109.2,force,front_fx,0.0076444800943136215 +karman_re200,ppo,273,109.2,force,front_fy,-2.2572015950572677e-05 +karman_re200,ppo,273,109.2,force,upper_fx,-0.004364999942481518 +karman_re200,ppo,273,109.2,force,upper_fy,0.00495762936770916 +karman_re200,ppo,273,109.2,force,lower_fx,0.002252141945064068 +karman_re200,ppo,273,109.2,force,lower_fy,-0.0027999526355415583 +karman_re200,ppo,274,109.6,force,front_fx,0.00479359133169055 +karman_re200,ppo,274,109.6,force,front_fy,-0.0014173246454447508 +karman_re200,ppo,274,109.6,force,upper_fx,-0.002653124276548624 +karman_re200,ppo,274,109.6,force,upper_fy,0.001042242394760251 +karman_re200,ppo,274,109.6,force,lower_fx,0.0010940260253846645 +karman_re200,ppo,274,109.6,force,lower_fy,-0.0023648091591894627 +karman_re200,ppo,275,110.0,force,front_fx,0.001570450491271913 +karman_re200,ppo,275,110.0,force,front_fy,-0.004120714962482452 +karman_re200,ppo,275,110.0,force,upper_fx,-0.0039880103431642056 +karman_re200,ppo,275,110.0,force,upper_fy,0.0006217688787728548 +karman_re200,ppo,275,110.0,force,lower_fx,-0.0006077259895391762 +karman_re200,ppo,275,110.0,force,lower_fy,-0.0023530873004347086 +karman_re200,ppo,276,110.4,force,front_fx,-0.0004265221068635583 +karman_re200,ppo,276,110.4,force,front_fy,-0.005588178522884846 +karman_re200,ppo,276,110.4,force,upper_fx,-0.003959030378609896 +karman_re200,ppo,276,110.4,force,upper_fy,0.005206801928579807 +karman_re200,ppo,276,110.4,force,lower_fx,-0.0007494124583899975 +karman_re200,ppo,276,110.4,force,lower_fy,-0.003062530653551221 +karman_re200,ppo,277,110.8,force,front_fx,-0.0013505782699212432 +karman_re200,ppo,277,110.8,force,front_fy,-0.004606332629919052 +karman_re200,ppo,277,110.8,force,upper_fx,-0.00026446362608112395 +karman_re200,ppo,277,110.8,force,upper_fy,0.007966221310198307 +karman_re200,ppo,277,110.8,force,lower_fx,-0.0009263679967261851 +karman_re200,ppo,277,110.8,force,lower_fy,-0.00398088525980711 +karman_re200,ppo,278,111.2,force,front_fx,-0.0008307808893732727 +karman_re200,ppo,278,111.2,force,front_fy,-0.004408008884638548 +karman_re200,ppo,278,111.2,force,upper_fx,0.0039953310042619705 +karman_re200,ppo,278,111.2,force,upper_fy,0.007721046917140484 +karman_re200,ppo,278,111.2,force,lower_fx,0.00040330312913283706 +karman_re200,ppo,278,111.2,force,lower_fy,-0.004945318214595318 +karman_re200,ppo,279,111.6,force,front_fx,0.0031309279147535563 +karman_re200,ppo,279,111.6,force,front_fy,-0.003073211992159486 +karman_re200,ppo,279,111.6,force,upper_fx,0.005657781381160021 +karman_re200,ppo,279,111.6,force,upper_fy,0.00646871468052268 +karman_re200,ppo,279,111.6,force,lower_fx,-0.0022560320794582367 +karman_re200,ppo,279,111.6,force,lower_fy,-0.0022791163064539433 +karman_re200,ppo,280,112.0,force,front_fx,0.005970859434455633 +karman_re200,ppo,280,112.0,force,front_fy,-0.001514931209385395 +karman_re200,ppo,280,112.0,force,upper_fx,0.00521855941042304 +karman_re200,ppo,280,112.0,force,upper_fy,0.003941380884498358 +karman_re200,ppo,280,112.0,force,lower_fx,-0.006348903756588697 +karman_re200,ppo,280,112.0,force,lower_fy,-0.003763139946386218 +karman_re200,ppo,281,112.4,force,front_fx,0.0050026411190629005 +karman_re200,ppo,281,112.4,force,front_fy,0.0006053678807802498 +karman_re200,ppo,281,112.4,force,upper_fx,0.003170666052028537 +karman_re200,ppo,281,112.4,force,upper_fy,0.0029268264770507812 +karman_re200,ppo,281,112.4,force,lower_fx,-0.004201458301395178 +karman_re200,ppo,281,112.4,force,lower_fy,-0.006026029121130705 +karman_re200,ppo,282,112.8,force,front_fx,0.0029937985818833113 +karman_re200,ppo,282,112.8,force,front_fy,0.0019855357240885496 +karman_re200,ppo,282,112.8,force,upper_fx,0.0012968714581802487 +karman_re200,ppo,282,112.8,force,upper_fy,0.0035998940002173185 +karman_re200,ppo,282,112.8,force,lower_fx,-0.0014992095530033112 +karman_re200,ppo,282,112.8,force,lower_fy,-0.005243868101388216 +karman_re200,ppo,283,113.2,force,front_fx,0.00020605955796781927 +karman_re200,ppo,283,113.2,force,front_fy,0.0037538332398980856 +karman_re200,ppo,283,113.2,force,upper_fx,-0.00023802369832992554 +karman_re200,ppo,283,113.2,force,upper_fy,0.0034260270185768604 +karman_re200,ppo,283,113.2,force,lower_fx,-0.00046021476737223566 +karman_re200,ppo,283,113.2,force,lower_fy,-0.005333945620805025 +karman_re200,ppo,284,113.6,force,front_fx,-0.001562856719829142 +karman_re200,ppo,284,113.6,force,front_fy,0.003753757569938898 +karman_re200,ppo,284,113.6,force,upper_fx,-0.000986234052106738 +karman_re200,ppo,284,113.6,force,upper_fy,0.003473970340564847 +karman_re200,ppo,284,113.6,force,lower_fx,0.0011082394048571587 +karman_re200,ppo,284,113.6,force,lower_fy,-0.006586888339370489 +karman_re200,ppo,285,114.0,force,front_fx,-0.00102579640224576 +karman_re200,ppo,285,114.0,force,front_fy,0.0037320025730878115 +karman_re200,ppo,285,114.0,force,upper_fx,-0.0021479404531419277 +karman_re200,ppo,285,114.0,force,upper_fy,0.00341210700571537 +karman_re200,ppo,285,114.0,force,lower_fx,0.003916861955076456 +karman_re200,ppo,285,114.0,force,lower_fy,-0.006727489177137613 +karman_re200,ppo,286,114.4,force,front_fx,0.0025966528337448835 +karman_re200,ppo,286,114.4,force,front_fy,0.003632421838119626 +karman_re200,ppo,286,114.4,force,upper_fx,-0.004802660550922155 +karman_re200,ppo,286,114.4,force,upper_fy,0.001900017959997058 +karman_re200,ppo,286,114.4,force,lower_fx,0.0058659096248447895 +karman_re200,ppo,286,114.4,force,lower_fy,-0.006966299843043089 +karman_re200,ppo,287,114.8,force,front_fx,0.007577111944556236 +karman_re200,ppo,287,114.8,force,front_fy,0.0030058056581765413 +karman_re200,ppo,287,114.8,force,upper_fx,-0.009291451424360275 +karman_re200,ppo,287,114.8,force,upper_fy,0.0031448816880583763 +karman_re200,ppo,287,114.8,force,lower_fx,0.00738435098901391 +karman_re200,ppo,287,114.8,force,lower_fy,-0.006092594936490059 +karman_re200,ppo,288,115.2,force,front_fx,0.008026429452002048 +karman_re200,ppo,288,115.2,force,front_fy,0.0009603562066331506 +karman_re200,ppo,288,115.2,force,upper_fx,-0.006880890112370253 +karman_re200,ppo,288,115.2,force,upper_fy,0.00701355654746294 +karman_re200,ppo,288,115.2,force,lower_fx,0.005386558827012777 +karman_re200,ppo,288,115.2,force,lower_fy,-0.0035107426811009645 +karman_re200,ppo,289,115.6,force,front_fx,0.007087029051035643 +karman_re200,ppo,289,115.6,force,front_fy,-0.00035388398100622 +karman_re200,ppo,289,115.6,force,upper_fx,-0.003913784399628639 +karman_re200,ppo,289,115.6,force,upper_fy,0.004250616766512394 +karman_re200,ppo,289,115.6,force,lower_fx,0.0017044884152710438 +karman_re200,ppo,289,115.6,force,lower_fy,-0.0024616455193609 +karman_re200,ppo,290,116.0,force,front_fx,0.004061977379024029 +karman_re200,ppo,290,116.0,force,front_fy,-0.00205937959253788 +karman_re200,ppo,290,116.0,force,upper_fx,-0.0026391895953565836 +karman_re200,ppo,290,116.0,force,upper_fy,0.0008993757655844092 +karman_re200,ppo,290,116.0,force,lower_fx,0.0010568143334239721 +karman_re200,ppo,290,116.0,force,lower_fy,-0.0021439651027321815 +karman_re200,ppo,291,116.4,force,front_fx,0.0011261504841968417 +karman_re200,ppo,291,116.4,force,front_fy,-0.004496744833886623 +karman_re200,ppo,291,116.4,force,upper_fx,-0.004018422216176987 +karman_re200,ppo,291,116.4,force,upper_fy,0.0016883623320609331 +karman_re200,ppo,291,116.4,force,lower_fx,-0.0005372025771066546 +karman_re200,ppo,291,116.4,force,lower_fy,-0.0026784681249409914 +karman_re200,ppo,292,116.8,force,front_fx,-0.0007161620887927711 +karman_re200,ppo,292,116.8,force,front_fy,-0.0055156368762254715 +karman_re200,ppo,292,116.8,force,upper_fx,-0.0032600879203528166 +karman_re200,ppo,292,116.8,force,upper_fy,0.006044622045010328 +karman_re200,ppo,292,116.8,force,lower_fx,-0.0006504810880869627 +karman_re200,ppo,292,116.8,force,lower_fy,-0.0031633246690034866 +karman_re200,ppo,293,117.2,force,front_fx,-0.0014614049578085542 +karman_re200,ppo,293,117.2,force,front_fy,-0.004423285368829966 +karman_re200,ppo,293,117.2,force,upper_fx,0.00037430677912198007 +karman_re200,ppo,293,117.2,force,upper_fy,0.00782175175845623 +karman_re200,ppo,293,117.2,force,lower_fx,-0.0009587620734237134 +karman_re200,ppo,293,117.2,force,lower_fy,-0.004476538393646479 +karman_re200,ppo,294,117.6,force,front_fx,-0.00039416804793290794 +karman_re200,ppo,294,117.6,force,front_fy,-0.004107130691409111 +karman_re200,ppo,294,117.6,force,upper_fx,0.004271707963198423 +karman_re200,ppo,294,117.6,force,upper_fy,0.007487267255783081 +karman_re200,ppo,294,117.6,force,lower_fx,0.0005018006777390838 +karman_re200,ppo,294,117.6,force,lower_fy,-0.004363002255558968 +karman_re200,ppo,295,118.0,force,front_fx,0.0038556880317628384 +karman_re200,ppo,295,118.0,force,front_fy,-0.0025834611151367426 +karman_re200,ppo,295,118.0,force,upper_fx,0.005519394762814045 +karman_re200,ppo,295,118.0,force,upper_fy,0.006159455049782991 +karman_re200,ppo,295,118.0,force,lower_fx,-0.003329272847622633 +karman_re200,ppo,295,118.0,force,lower_fy,-0.0020462889224290848 +karman_re200,ppo,296,118.4,force,front_fx,0.005799001082777977 +karman_re200,ppo,296,118.4,force,front_fy,-0.0009990922408178449 +karman_re200,ppo,296,118.4,force,upper_fx,0.005052422173321247 +karman_re200,ppo,296,118.4,force,upper_fy,0.0035835006274282932 +karman_re200,ppo,296,118.4,force,lower_fx,-0.0065591000020504 +karman_re200,ppo,296,118.4,force,lower_fy,-0.004506649449467659 +karman_re200,ppo,297,118.8,force,front_fx,0.004448724444955587 +karman_re200,ppo,297,118.8,force,front_fy,0.0010017758468165994 +karman_re200,ppo,297,118.8,force,upper_fx,0.0027643998619168997 +karman_re200,ppo,297,118.8,force,upper_fy,0.003135761246085167 +karman_re200,ppo,297,118.8,force,lower_fx,-0.003308770013973117 +karman_re200,ppo,297,118.8,force,lower_fy,-0.0064575267024338245 +karman_re200,ppo,298,119.2,force,front_fx,0.0023251662496477365 +karman_re200,ppo,298,119.2,force,front_fy,0.0024078506976366043 +karman_re200,ppo,298,119.2,force,upper_fx,0.0008320494089275599 +karman_re200,ppo,298,119.2,force,upper_fy,0.003750435309484601 +karman_re200,ppo,298,119.2,force,lower_fx,-0.0009593003196641803 +karman_re200,ppo,298,119.2,force,lower_fy,-0.005244320258498192 +karman_re200,ppo,299,119.6,force,front_fx,-0.0005894282949157059 +karman_re200,ppo,299,119.6,force,front_fy,0.003884008154273033 +karman_re200,ppo,299,119.6,force,upper_fx,-0.00036269129486754537 +karman_re200,ppo,299,119.6,force,upper_fy,0.003600980853661895 +karman_re200,ppo,299,119.6,force,lower_fx,3.971486512455158e-05 +karman_re200,ppo,299,119.6,force,lower_fy,-0.0056456332094967365 +karman_re200,ppo,300,120.0,force,front_fx,-0.001482215360738337 +karman_re200,ppo,300,120.0,force,front_fy,0.003678526496514678 +karman_re200,ppo,300,120.0,force,upper_fx,-0.0013551031006500125 +karman_re200,ppo,300,120.0,force,upper_fy,0.0033295005559921265 +karman_re200,ppo,300,120.0,force,lower_fx,0.001830371911637485 +karman_re200,ppo,300,120.0,force,lower_fy,-0.006471555680036545 +karman_re200,ppo,301,120.4,force,front_fx,-0.00024305941769853234 +karman_re200,ppo,301,120.4,force,front_fy,0.003932012710720301 +karman_re200,ppo,301,120.4,force,upper_fx,-0.002694646827876568 +karman_re200,ppo,301,120.4,force,upper_fy,0.003096221946179867 +karman_re200,ppo,301,120.4,force,lower_fx,0.00452781654894352 +karman_re200,ppo,301,120.4,force,lower_fy,-0.0066369082778692245 +karman_re200,ppo,302,120.8,force,front_fx,0.004634663928300142 +karman_re200,ppo,302,120.8,force,front_fy,0.0032821858767420053 +karman_re200,ppo,302,120.8,force,upper_fx,-0.0064261602237820625 +karman_re200,ppo,302,120.8,force,upper_fy,0.001354168402031064 +karman_re200,ppo,302,120.8,force,lower_fx,0.005928702186793089 +karman_re200,ppo,302,120.8,force,lower_fy,-0.00688009150326252 +karman_re200,ppo,303,121.2,force,front_fx,0.007795915473252535 +karman_re200,ppo,303,121.2,force,front_fy,0.002847123658284545 +karman_re200,ppo,303,121.2,force,upper_fx,-0.00970530416816473 +karman_re200,ppo,303,121.2,force,upper_fy,0.004798038862645626 +karman_re200,ppo,303,121.2,force,lower_fx,0.0075226835906505585 +karman_re200,ppo,303,121.2,force,lower_fy,-0.005064121913164854 +karman_re200,ppo,304,121.6,force,front_fx,0.00826030783355236 +karman_re200,ppo,304,121.6,force,front_fy,0.0006887121708132327 +karman_re200,ppo,304,121.6,force,upper_fx,-0.005751466378569603 +karman_re200,ppo,304,121.6,force,upper_fy,0.006294148974120617 +karman_re200,ppo,304,121.6,force,lower_fx,0.003998141270130873 +karman_re200,ppo,304,121.6,force,lower_fy,-0.003011530265212059 +karman_re200,ppo,305,122.0,force,front_fx,0.006268079858273268 +karman_re200,ppo,305,122.0,force,front_fy,-0.0004850642289966345 +karman_re200,ppo,305,122.0,force,upper_fx,-0.0033199298195540905 +karman_re200,ppo,305,122.0,force,upper_fy,0.0026892356108874083 +karman_re200,ppo,305,122.0,force,lower_fx,0.0012455882970243692 +karman_re200,ppo,305,122.0,force,lower_fy,-0.00235053151845932 +karman_re200,ppo,306,122.4,force,front_fx,0.0029626258183270693 +karman_re200,ppo,306,122.4,force,front_fy,-0.0027331297751516104 +karman_re200,ppo,306,122.4,force,upper_fx,-0.0032479101791977882 +karman_re200,ppo,306,122.4,force,upper_fy,0.0003013249079231173 +karman_re200,ppo,306,122.4,force,lower_fx,0.0006417303811758757 +karman_re200,ppo,306,122.4,force,lower_fy,-0.002003018045797944 +karman_re200,ppo,307,122.8,force,front_fx,0.0006257714121602476 +karman_re200,ppo,307,122.8,force,front_fy,-0.005012836307287216 +karman_re200,ppo,307,122.8,force,upper_fx,-0.004428432788699865 +karman_re200,ppo,307,122.8,force,upper_fy,0.0032280022278428078 +karman_re200,ppo,307,122.8,force,lower_fx,-0.0005998533451929688 +karman_re200,ppo,307,122.8,force,lower_fy,-0.002799655543640256 +karman_re200,ppo,308,123.2,force,front_fx,-0.0008209345978684723 +karman_re200,ppo,308,123.2,force,front_fy,-0.005235470365732908 +karman_re200,ppo,308,123.2,force,upper_fx,-0.00216227350756526 +karman_re200,ppo,308,123.2,force,upper_fy,0.007356568705290556 +karman_re200,ppo,308,123.2,force,lower_fx,-0.000631681177765131 +karman_re200,ppo,308,123.2,force,lower_fy,-0.0031907602678984404 +karman_re200,ppo,309,123.6,force,front_fx,-0.001443219487555325 +karman_re200,ppo,309,123.6,force,front_fy,-0.004442974925041199 +karman_re200,ppo,309,123.6,force,upper_fx,0.002054826356470585 +karman_re200,ppo,309,123.6,force,upper_fy,0.008020725101232529 +karman_re200,ppo,309,123.6,force,lower_fx,-0.0007893384899944067 +karman_re200,ppo,309,123.6,force,lower_fy,-0.00548422709107399 +karman_re200,ppo,310,124.0,force,front_fx,0.000790491234511137 +karman_re200,ppo,310,124.0,force,front_fy,-0.003867829218506813 +karman_re200,ppo,310,124.0,force,upper_fx,0.005234193988144398 +karman_re200,ppo,310,124.0,force,upper_fy,0.007147884927690029 +karman_re200,ppo,310,124.0,force,lower_fx,0.0002365538093727082 +karman_re200,ppo,310,124.0,force,lower_fy,-0.003615923225879669 +karman_re200,ppo,311,124.4,force,front_fx,0.005118698347359896 +karman_re200,ppo,311,124.4,force,front_fy,-0.002342556370422244 +karman_re200,ppo,311,124.4,force,upper_fx,0.005521465092897415 +karman_re200,ppo,311,124.4,force,upper_fy,0.0052356841042637825 +karman_re200,ppo,311,124.4,force,lower_fx,-0.004843118134886026 +karman_re200,ppo,311,124.4,force,lower_fy,-0.0022261773701757193 +karman_re200,ppo,312,124.8,force,front_fx,0.005743572488427162 +karman_re200,ppo,312,124.8,force,front_fy,-0.000511595921125263 +karman_re200,ppo,312,124.8,force,upper_fx,0.004513941239565611 +karman_re200,ppo,312,124.8,force,upper_fy,0.0029289242811501026 +karman_re200,ppo,312,124.8,force,lower_fx,-0.00594520615413785 +karman_re200,ppo,312,124.8,force,lower_fy,-0.005146749783307314 +karman_re200,ppo,313,125.2,force,front_fx,0.004162008874118328 +karman_re200,ppo,313,125.2,force,front_fy,0.0012519708834588528 +karman_re200,ppo,313,125.2,force,upper_fx,0.002367365173995495 +karman_re200,ppo,313,125.2,force,upper_fy,0.00318978657014668 +karman_re200,ppo,313,125.2,force,lower_fx,-0.0025213209446519613 +karman_re200,ppo,313,125.2,force,lower_fy,-0.005692537873983383 +karman_re200,ppo,314,125.6,force,front_fx,0.0017479418311268091 +karman_re200,ppo,314,125.6,force,front_fy,0.0028725850861519575 +karman_re200,ppo,314,125.6,force,upper_fx,0.0004843272326979786 +karman_re200,ppo,314,125.6,force,upper_fy,0.0034702764824032784 +karman_re200,ppo,314,125.6,force,lower_fx,-0.0011361684883013368 +karman_re200,ppo,314,125.6,force,lower_fy,-0.004761204589158297 +karman_re200,ppo,315,126.0,force,front_fx,-0.001054546912200749 +karman_re200,ppo,315,126.0,force,front_fy,0.003849514527246356 +karman_re200,ppo,315,126.0,force,upper_fx,-0.0004573289770632982 +karman_re200,ppo,315,126.0,force,upper_fy,0.003544822335243225 +karman_re200,ppo,315,126.0,force,lower_fx,5.770136704086326e-05 +karman_re200,ppo,315,126.0,force,lower_fy,-0.00607882859185338 +karman_re200,ppo,316,126.4,force,front_fx,-0.0014522873098030686 +karman_re200,ppo,316,126.4,force,front_fy,0.0037360626738518476 +karman_re200,ppo,316,126.4,force,upper_fx,-0.0016106149414554238 +karman_re200,ppo,316,126.4,force,upper_fy,0.0032830911222845316 +karman_re200,ppo,316,126.4,force,lower_fx,0.002592996461316943 +karman_re200,ppo,316,126.4,force,lower_fy,-0.006700171623378992 +karman_re200,ppo,317,126.8,force,front_fx,0.00042610385571606457 +karman_re200,ppo,317,126.8,force,front_fy,0.004087586887180805 +karman_re200,ppo,317,126.8,force,upper_fx,-0.0031685170251876116 +karman_re200,ppo,317,126.8,force,upper_fy,0.0028549092821776867 +karman_re200,ppo,317,126.8,force,lower_fx,0.005280033219605684 +karman_re200,ppo,317,126.8,force,lower_fy,-0.0065409960225224495 +karman_re200,ppo,318,127.2,force,front_fx,0.005847274791449308 +karman_re200,ppo,318,127.2,force,front_fy,0.00309820007532835 +karman_re200,ppo,318,127.2,force,upper_fx,-0.0073715997859835625 +karman_re200,ppo,318,127.2,force,upper_fy,0.00138185266405344 +karman_re200,ppo,318,127.2,force,lower_fx,0.006286452524363995 +karman_re200,ppo,318,127.2,force,lower_fy,-0.0067252786830067635 +karman_re200,ppo,319,127.6,force,front_fx,0.007645749486982822 +karman_re200,ppo,319,127.6,force,front_fy,0.0023800446651875973 +karman_re200,ppo,319,127.6,force,upper_fx,-0.009344404563307762 +karman_re200,ppo,319,127.6,force,upper_fy,0.0057375491596758366 +karman_re200,ppo,319,127.6,force,lower_fx,0.007145998999476433 +karman_re200,ppo,319,127.6,force,lower_fy,-0.004449954256415367 +karman_re200,ppo,320,128.0,force,front_fx,0.008001653477549553 +karman_re200,ppo,320,128.0,force,front_fy,0.00035231374204158783 +karman_re200,ppo,320,128.0,force,upper_fx,-0.0051663583144545555 +karman_re200,ppo,320,128.0,force,upper_fy,0.005637941882014275 +karman_re200,ppo,320,128.0,force,lower_fx,0.003178704297170043 +karman_re200,ppo,320,128.0,force,lower_fy,-0.0028407571371644735 +karman_re200,ppo,321,128.4,force,front_fx,0.005548128392547369 +karman_re200,ppo,321,128.4,force,front_fy,-0.0008262187475338578 +karman_re200,ppo,321,128.4,force,upper_fx,-0.0028929978143423796 +karman_re200,ppo,321,128.4,force,upper_fy,0.0018974844133481383 +karman_re200,ppo,321,128.4,force,lower_fx,0.0011955434456467628 +karman_re200,ppo,321,128.4,force,lower_fy,-0.0024786097928881645 +karman_re200,ppo,322,128.8,force,front_fx,0.0021006425376981497 +karman_re200,ppo,322,128.8,force,front_fy,-0.003349944017827511 +karman_re200,ppo,322,128.8,force,upper_fx,-0.0033739195205271244 +karman_re200,ppo,322,128.8,force,upper_fy,0.0003253968898206949 +karman_re200,ppo,322,128.8,force,lower_fx,0.00016176409553736448 +karman_re200,ppo,322,128.8,force,lower_fy,-0.002194883767515421 +karman_re200,ppo,323,129.2,force,front_fx,-4.923206233797828e-06 +karman_re200,ppo,323,129.2,force,front_fy,-0.005405012983828783 +karman_re200,ppo,323,129.2,force,upper_fx,-0.00416115066036582 +karman_re200,ppo,323,129.2,force,upper_fy,0.004019716754555702 +karman_re200,ppo,323,129.2,force,lower_fx,-0.0007055987953208387 +karman_re200,ppo,323,129.2,force,lower_fy,-0.0029955252539366484 +karman_re200,ppo,324,129.6,force,front_fx,-0.0011771947611123323 +karman_re200,ppo,324,129.6,force,front_fy,-0.00509019335731864 +karman_re200,ppo,324,129.6,force,upper_fx,-0.0013799348380416632 +karman_re200,ppo,324,129.6,force,upper_fy,0.00776706775650382 +karman_re200,ppo,324,129.6,force,lower_fx,-0.0006786661688238382 +karman_re200,ppo,324,129.6,force,lower_fy,-0.0032838007900863886 +karman_re200,ppo,325,130.0,force,front_fx,-0.0013067317195236683 +karman_re200,ppo,325,130.0,force,front_fy,-0.004548035096377134 +karman_re200,ppo,325,130.0,force,upper_fx,0.0029013596940785646 +karman_re200,ppo,325,130.0,force,upper_fy,0.007920611649751663 +karman_re200,ppo,325,130.0,force,lower_fx,-0.0004964962718077004 +karman_re200,ppo,325,130.0,force,lower_fy,-0.005491436924785376 +karman_re200,ppo,326,130.4,force,front_fx,0.001560182892717421 +karman_re200,ppo,326,130.4,force,front_fy,-0.0036173963453620672 +karman_re200,ppo,326,130.4,force,upper_fx,0.005674868822097778 +karman_re200,ppo,326,130.4,force,upper_fy,0.006771962158381939 +karman_re200,ppo,326,130.4,force,lower_fx,-0.0001798690645955503 +karman_re200,ppo,326,130.4,force,lower_fy,-0.003110692137852311 +karman_re200,ppo,327,130.8,force,front_fx,0.005399410147219896 +karman_re200,ppo,327,130.8,force,front_fy,-0.0019451953703537583 +karman_re200,ppo,327,130.8,force,upper_fx,0.005578737240284681 +karman_re200,ppo,327,130.8,force,upper_fy,0.004662129562348127 +karman_re200,ppo,327,130.8,force,lower_fx,-0.00510558532550931 +karman_re200,ppo,327,130.8,force,lower_fy,-0.0026727986987680197 +karman_re200,ppo,328,131.2,force,front_fx,0.005309363827109337 +karman_re200,ppo,328,131.2,force,front_fy,7.418838504236192e-05 +karman_re200,ppo,328,131.2,force,upper_fx,0.0041455840691924095 +karman_re200,ppo,328,131.2,force,upper_fy,0.0028288536705076694 +karman_re200,ppo,328,131.2,force,lower_fx,-0.005038660950958729 +karman_re200,ppo,328,131.2,force,lower_fy,-0.005619119852781296 +karman_re200,ppo,329,131.6,force,front_fx,0.0035903688985854387 +karman_re200,ppo,329,131.6,force,front_fy,0.0016294914530590177 +karman_re200,ppo,329,131.6,force,upper_fx,0.00199616770260036 +karman_re200,ppo,329,131.6,force,upper_fy,0.0033812657929956913 +karman_re200,ppo,329,131.6,force,lower_fx,-0.0018382363487035036 +karman_re200,ppo,329,131.6,force,lower_fy,-0.005767483729869127 +karman_re200,ppo,330,132.0,force,front_fx,0.0011377402115613222 +karman_re200,ppo,330,132.0,force,front_fy,0.0032951077446341515 +karman_re200,ppo,330,132.0,force,upper_fx,0.0001376316649839282 +karman_re200,ppo,330,132.0,force,upper_fy,0.003421799512580037 +karman_re200,ppo,330,132.0,force,lower_fx,-0.0006978706805966794 +karman_re200,ppo,330,132.0,force,lower_fy,-0.005054241046309471 +karman_re200,ppo,331,132.4,force,front_fx,-0.0013760430738329887 +karman_re200,ppo,331,132.4,force,front_fy,0.0037589252460747957 +karman_re200,ppo,331,132.4,force,upper_fx,-0.0005809069843962789 +karman_re200,ppo,331,132.4,force,upper_fy,0.0035215646494179964 +karman_re200,ppo,331,132.4,force,lower_fx,0.00047576817451044917 +karman_re200,ppo,331,132.4,force,lower_fy,-0.006347330287098885 +karman_re200,ppo,332,132.8,force,front_fx,-0.0013526971451938152 +karman_re200,ppo,332,132.8,force,front_fy,0.003690531477332115 +karman_re200,ppo,332,132.8,force,upper_fx,-0.0017014002660289407 +karman_re200,ppo,332,132.8,force,upper_fy,0.0032335054129362106 +karman_re200,ppo,332,132.8,force,lower_fx,0.0030864442232996225 +karman_re200,ppo,332,132.8,force,lower_fy,-0.006706767715513706 +karman_re200,ppo,333,133.2,force,front_fx,0.0011477058287709951 +karman_re200,ppo,333,133.2,force,front_fy,0.004022067878395319 +karman_re200,ppo,333,133.2,force,upper_fx,-0.0035592257045209408 +karman_re200,ppo,333,133.2,force,upper_fy,0.002379479818046093 +karman_re200,ppo,333,133.2,force,lower_fx,0.005738374777138233 +karman_re200,ppo,333,133.2,force,lower_fy,-0.0065792016685009 +karman_re200,ppo,334,133.6,force,front_fx,0.006727708037942648 +karman_re200,ppo,334,133.6,force,front_fy,0.0030253021977841854 +karman_re200,ppo,334,133.6,force,upper_fx,-0.008014120161533356 +karman_re200,ppo,334,133.6,force,upper_fy,0.0016753770178183913 +karman_re200,ppo,334,133.6,force,lower_fx,0.006961713545024395 +karman_re200,ppo,334,133.6,force,lower_fy,-0.00647035101428628 +karman_re200,ppo,335,134.0,force,front_fx,0.007585301995277405 +karman_re200,ppo,335,134.0,force,front_fy,0.0017313298303633928 +karman_re200,ppo,335,134.0,force,upper_fx,-0.008382688276469707 +karman_re200,ppo,335,134.0,force,upper_fy,0.00644993782043457 +karman_re200,ppo,335,134.0,force,lower_fx,0.006804711185395718 +karman_re200,ppo,335,134.0,force,lower_fy,-0.004033646546304226 +karman_re200,ppo,336,134.4,force,front_fx,0.007635461166501045 +karman_re200,ppo,336,134.4,force,front_fy,-5.945748398517026e-06 +karman_re200,ppo,336,134.4,force,upper_fx,-0.004520540591329336 +karman_re200,ppo,336,134.4,force,upper_fy,0.005039227660745382 +karman_re200,ppo,336,134.4,force,lower_fx,0.002597108483314514 +karman_re200,ppo,336,134.4,force,lower_fy,-0.0027691172435879707 +karman_re200,ppo,337,134.8,force,front_fx,0.004955550655722618 +karman_re200,ppo,337,134.8,force,front_fy,-0.0012894845567643642 +karman_re200,ppo,337,134.8,force,upper_fx,-0.0026561482809484005 +karman_re200,ppo,337,134.8,force,upper_fy,0.0012725619599223137 +karman_re200,ppo,337,134.8,force,lower_fx,0.0011584036983549595 +karman_re200,ppo,337,134.8,force,lower_fy,-0.0024187956005334854 +karman_re200,ppo,338,135.2,force,front_fx,0.0016842386685311794 +karman_re200,ppo,338,135.2,force,front_fy,-0.003953410778194666 +karman_re200,ppo,338,135.2,force,upper_fx,-0.0036661806516349316 +karman_re200,ppo,338,135.2,force,upper_fy,0.0005554076051339507 +karman_re200,ppo,338,135.2,force,lower_fx,-0.0003803549043368548 +karman_re200,ppo,338,135.2,force,lower_fy,-0.002265776274725795 +karman_re200,ppo,339,135.6,force,front_fx,-0.00031471039983443916 +karman_re200,ppo,339,135.6,force,front_fy,-0.005723669659346342 +karman_re200,ppo,339,135.6,force,upper_fx,-0.004028452094644308 +karman_re200,ppo,339,135.6,force,upper_fy,0.004970506299287081 +karman_re200,ppo,339,135.6,force,lower_fx,-0.0007210061885416508 +karman_re200,ppo,339,135.6,force,lower_fy,-0.0030727696139365435 +karman_re200,ppo,340,136.0,force,front_fx,-0.0012211931170895696 +karman_re200,ppo,340,136.0,force,front_fy,-0.004973396193236113 +karman_re200,ppo,340,136.0,force,upper_fx,-0.0007028493564575911 +karman_re200,ppo,340,136.0,force,upper_fy,0.008202270604670048 +karman_re200,ppo,340,136.0,force,lower_fx,-0.000821887981146574 +karman_re200,ppo,340,136.0,force,lower_fy,-0.0035812894348055124 +karman_re200,ppo,341,136.4,force,front_fx,-0.0010999032529070973 +karman_re200,ppo,341,136.4,force,front_fy,-0.004541054368019104 +karman_re200,ppo,341,136.4,force,upper_fx,0.0037096193991601467 +karman_re200,ppo,341,136.4,force,upper_fy,0.008040430024266243 +karman_re200,ppo,341,136.4,force,lower_fx,0.00019622383115347475 +karman_re200,ppo,341,136.4,force,lower_fy,-0.005562077276408672 +karman_re200,ppo,342,136.8,force,front_fx,0.0023962680716067553 +karman_re200,ppo,342,136.8,force,front_fy,-0.003268792061135173 +karman_re200,ppo,342,136.8,force,upper_fx,0.005955075845122337 +karman_re200,ppo,342,136.8,force,upper_fy,0.006750510539859533 +karman_re200,ppo,342,136.8,force,lower_fx,-0.0007663734722882509 +karman_re200,ppo,342,136.8,force,lower_fy,-0.002504291944205761 +karman_re200,ppo,343,137.2,force,front_fx,0.005673923064023256 +karman_re200,ppo,343,137.2,force,front_fy,-0.0015389053151011467 +karman_re200,ppo,343,137.2,force,upper_fx,0.005658994894474745 +karman_re200,ppo,343,137.2,force,upper_fy,0.004386986140161753 +karman_re200,ppo,343,137.2,force,lower_fx,-0.005428277421742678 +karman_re200,ppo,343,137.2,force,lower_fy,-0.0032535074278712273 +karman_re200,ppo,344,137.6,force,front_fx,0.005054795183241367 +karman_re200,ppo,344,137.6,force,front_fy,0.000602014537435025 +karman_re200,ppo,344,137.6,force,upper_fx,0.0038321539759635925 +karman_re200,ppo,344,137.6,force,upper_fy,0.0028954995796084404 +karman_re200,ppo,344,137.6,force,lower_fx,-0.004156171344220638 +karman_re200,ppo,344,137.6,force,lower_fy,-0.005859041120857 +karman_re200,ppo,345,138.0,force,front_fx,0.003109741723164916 +karman_re200,ppo,345,138.0,force,front_fy,0.0019479581387713552 +karman_re200,ppo,345,138.0,force,upper_fx,0.0016790133668109775 +karman_re200,ppo,345,138.0,force,upper_fy,0.0035843297373503447 +karman_re200,ppo,345,138.0,force,lower_fx,-0.001503210631199181 +karman_re200,ppo,345,138.0,force,lower_fy,-0.005587424151599407 +karman_re200,ppo,346,138.4,force,front_fx,0.0005584005266427994 +karman_re200,ppo,346,138.4,force,front_fy,0.003632368054240942 +karman_re200,ppo,346,138.4,force,upper_fx,-0.0002069070760626346 +karman_re200,ppo,346,138.4,force,upper_fy,0.0033601997420191765 +karman_re200,ppo,346,138.4,force,lower_fx,-0.00047279841965064406 +karman_re200,ppo,346,138.4,force,lower_fy,-0.0053922743536531925 +karman_re200,ppo,347,138.8,force,front_fx,-0.00160355179104954 +karman_re200,ppo,347,138.8,force,front_fy,0.00361842755228281 +karman_re200,ppo,347,138.8,force,upper_fx,-0.0007977435016073287 +karman_re200,ppo,347,138.8,force,upper_fy,0.0034253832418471575 +karman_re200,ppo,347,138.8,force,lower_fx,0.0009356384980492294 +karman_re200,ppo,347,138.8,force,lower_fy,-0.006648797541856766 +karman_re200,ppo,348,139.2,force,front_fx,-0.001158046186901629 +karman_re200,ppo,348,139.2,force,front_fy,0.00366101018153131 +karman_re200,ppo,348,139.2,force,upper_fx,-0.0019461922347545624 +karman_re200,ppo,348,139.2,force,upper_fy,0.0031680890824645758 +karman_re200,ppo,348,139.2,force,lower_fx,0.0037829792127013206 +karman_re200,ppo,348,139.2,force,lower_fy,-0.00680131558328867 +karman_re200,ppo,349,139.6,force,front_fx,0.002149557461962104 +karman_re200,ppo,349,139.6,force,front_fy,0.0036883458960801363 +karman_re200,ppo,349,139.6,force,upper_fx,-0.004401864018291235 +karman_re200,ppo,349,139.6,force,upper_fy,0.001785528496839106 +karman_re200,ppo,349,139.6,force,lower_fx,0.006116068456321955 +karman_re200,ppo,349,139.6,force,lower_fy,-0.006906469352543354 +karman_re200,ppo,350,140.0,force,front_fx,0.007443016394972801 +karman_re200,ppo,350,140.0,force,front_fy,0.002981750760227442 +karman_re200,ppo,350,140.0,force,upper_fx,-0.009044705890119076 +karman_re200,ppo,350,140.0,force,upper_fy,0.002615035744383931 +karman_re200,ppo,350,140.0,force,lower_fx,0.007650627288967371 +karman_re200,ppo,350,140.0,force,lower_fy,-0.006249140948057175 +karman_re200,ppo,351,140.4,force,front_fx,0.00787315983325243 +karman_re200,ppo,351,140.4,force,front_fy,0.001077883061952889 +karman_re200,ppo,351,140.4,force,upper_fx,-0.007239053957164288 +karman_re200,ppo,351,140.4,force,upper_fy,0.007020280230790377 +karman_re200,ppo,351,140.4,force,lower_fx,0.0059712654910981655 +karman_re200,ppo,351,140.4,force,lower_fy,-0.0037025182973593473 +karman_re200,ppo,352,140.8,force,front_fx,0.0072377510368824005 +karman_re200,ppo,352,140.8,force,front_fy,-0.0002896971709560603 +karman_re200,ppo,352,140.8,force,upper_fx,-0.004050406627357006 +karman_re200,ppo,352,140.8,force,upper_fy,0.004391224589198828 +karman_re200,ppo,352,140.8,force,lower_fx,0.0018647979013621807 +karman_re200,ppo,352,140.8,force,lower_fy,-0.002590966410934925 +karman_re200,ppo,353,141.2,force,front_fx,0.004292246885597706 +karman_re200,ppo,353,141.2,force,front_fy,-0.0019024539506062865 +karman_re200,ppo,353,141.2,force,upper_fx,-0.0025888392701745033 +karman_re200,ppo,353,141.2,force,upper_fy,0.0007543648825958371 +karman_re200,ppo,353,141.2,force,lower_fx,0.0010466007515788078 +karman_re200,ppo,353,141.2,force,lower_fy,-0.0022271969355642796 +karman_re200,ppo,354,141.6,force,front_fx,0.001311322208493948 +karman_re200,ppo,354,141.6,force,front_fy,-0.004475951660424471 +karman_re200,ppo,354,141.6,force,upper_fx,-0.004022669978439808 +karman_re200,ppo,354,141.6,force,upper_fy,0.0011608467902988195 +karman_re200,ppo,354,141.6,force,lower_fx,-0.0005877881776541471 +karman_re200,ppo,354,141.6,force,lower_fy,-0.00258994079194963 +karman_re200,ppo,355,142.0,force,front_fx,-0.0005039810785092413 +karman_re200,ppo,355,142.0,force,front_fy,-0.005845306906849146 +karman_re200,ppo,355,142.0,force,upper_fx,-0.0036979629658162594 +karman_re200,ppo,355,142.0,force,upper_fy,0.0059547885321080685 +karman_re200,ppo,355,142.0,force,lower_fx,-0.0006252473685890436 +karman_re200,ppo,355,142.0,force,lower_fy,-0.003183546708896756 +karman_re200,ppo,356,142.4,force,front_fx,-0.0013458826579153538 +karman_re200,ppo,356,142.4,force,front_fy,-0.0047697811387479305 +karman_re200,ppo,356,142.4,force,upper_fx,1.6238813259406015e-05 +karman_re200,ppo,356,142.4,force,upper_fy,0.008367610163986683 +karman_re200,ppo,356,142.4,force,lower_fx,-0.0009503128239884973 +karman_re200,ppo,356,142.4,force,lower_fy,-0.004284584894776344 +karman_re200,ppo,357,142.8,force,front_fx,-0.0007196926162578166 +karman_re200,ppo,357,142.8,force,front_fy,-0.004317523445934057 +karman_re200,ppo,357,142.8,force,upper_fx,0.00426563061773777 +karman_re200,ppo,357,142.8,force,upper_fy,0.007945749908685684 +karman_re200,ppo,357,142.8,force,lower_fx,0.0008566709002479911 +karman_re200,ppo,357,142.8,force,lower_fy,-0.005050646606832743 +karman_re200,ppo,358,143.2,force,front_fx,0.0033020242117345333 +karman_re200,ppo,358,143.2,force,front_fy,-0.0027885660529136658 +karman_re200,ppo,358,143.2,force,upper_fx,0.005901865195482969 +karman_re200,ppo,358,143.2,force,upper_fy,0.006580327171832323 +karman_re200,ppo,358,143.2,force,lower_fx,-0.0021494640968739986 +karman_re200,ppo,358,143.2,force,lower_fy,-0.002155536087229848 +karman_re200,ppo,359,143.6,force,front_fx,0.005829417612403631 +karman_re200,ppo,359,143.6,force,front_fy,-0.0010596092324703932 +karman_re200,ppo,359,143.6,force,upper_fx,0.005554898176342249 +karman_re200,ppo,359,143.6,force,upper_fy,0.004038795828819275 +karman_re200,ppo,359,143.6,force,lower_fx,-0.006023551803082228 +karman_re200,ppo,359,143.6,force,lower_fy,-0.004113612696528435 +karman_re200,ppo,360,144.0,force,front_fx,0.004708713386207819 +karman_re200,ppo,360,144.0,force,front_fy,0.001020122435875237 +karman_re200,ppo,360,144.0,force,upper_fx,0.003310765605419874 +karman_re200,ppo,360,144.0,force,upper_fy,0.0031213241163641214 +karman_re200,ppo,360,144.0,force,lower_fx,-0.003536541946232319 +karman_re200,ppo,360,144.0,force,lower_fy,-0.006353693548589945 +karman_re200,ppo,361,144.4,force,front_fx,0.002630957867950201 +karman_re200,ppo,361,144.4,force,front_fy,0.0022700561676174402 +karman_re200,ppo,361,144.4,force,upper_fx,0.0011804024688899517 +karman_re200,ppo,361,144.4,force,upper_fy,0.00377239054068923 +karman_re200,ppo,361,144.4,force,lower_fx,-0.0011567396577447653 +karman_re200,ppo,361,144.4,force,lower_fy,-0.005470927804708481 +karman_re200,ppo,362,144.8,force,front_fx,-0.00011432042083470151 +karman_re200,ppo,362,144.8,force,front_fy,0.003880574367940426 +karman_re200,ppo,362,144.8,force,upper_fx,-0.0004340884042903781 +karman_re200,ppo,362,144.8,force,upper_fy,0.003420974826440215 +karman_re200,ppo,362,144.8,force,lower_fx,-0.00021488050697371364 +karman_re200,ppo,362,144.8,force,lower_fy,-0.0056496853940188885 +karman_re200,ppo,363,145.2,force,front_fx,-0.0016518288757652044 +karman_re200,ppo,363,145.2,force,front_fy,0.0034901928156614304 +karman_re200,ppo,363,145.2,force,upper_fx,-0.0011366740800440311 +karman_re200,ppo,363,145.2,force,upper_fy,0.003315754234790802 +karman_re200,ppo,363,145.2,force,lower_fx,0.00137575704138726 +karman_re200,ppo,363,145.2,force,lower_fy,-0.0067472876980900764 +karman_re200,ppo,364,145.6,force,front_fx,-0.0007530607399530709 +karman_re200,ppo,364,145.6,force,front_fy,0.003735730890184641 +karman_re200,ppo,364,145.6,force,upper_fx,-0.0023341523483395576 +karman_re200,ppo,364,145.6,force,upper_fy,0.0031002378091216087 +karman_re200,ppo,364,145.6,force,lower_fx,0.004371310584247112 +karman_re200,ppo,364,145.6,force,lower_fy,-0.007012880872935057 +karman_re200,ppo,365,146.0,force,front_fx,0.003708544420078397 +karman_re200,ppo,365,146.0,force,front_fy,0.0032786247320473194 +karman_re200,ppo,365,146.0,force,upper_fx,-0.005704190116375685 +karman_re200,ppo,365,146.0,force,upper_fy,0.001269282540306449 +karman_re200,ppo,365,146.0,force,lower_fx,0.00618169317021966 +karman_re200,ppo,365,146.0,force,lower_fy,-0.007240745238959789 +karman_re200,ppo,366,146.4,force,front_fx,0.0077095734886825085 +karman_re200,ppo,366,146.4,force,front_fy,0.0028996700420975685 +karman_re200,ppo,366,146.4,force,upper_fx,-0.009721720591187477 +karman_re200,ppo,366,146.4,force,upper_fy,0.004233621526509523 +karman_re200,ppo,366,146.4,force,lower_fx,0.008014481514692307 +karman_re200,ppo,366,146.4,force,lower_fy,-0.005708624143153429 +karman_re200,ppo,367,146.8,force,front_fx,0.008161990903317928 +karman_re200,ppo,367,146.8,force,front_fy,0.0007423493079841137 +karman_re200,ppo,367,146.8,force,upper_fx,-0.005952088162302971 +karman_re200,ppo,367,146.8,force,upper_fy,0.006823078263550997 +karman_re200,ppo,367,146.8,force,lower_fx,0.004690003581345081 +karman_re200,ppo,367,146.8,force,lower_fy,-0.003356797154992819 +karman_re200,ppo,368,147.2,force,front_fx,0.00655148783698678 +karman_re200,ppo,368,147.2,force,front_fy,-0.00045856976066716015 +karman_re200,ppo,368,147.2,force,upper_fx,-0.0033642789348959923 +karman_re200,ppo,368,147.2,force,upper_fy,0.0032861828804016113 +karman_re200,ppo,368,147.2,force,lower_fx,0.0012802379205822945 +karman_re200,ppo,368,147.2,force,lower_fy,-0.0024155108258128166 +karman_re200,ppo,369,147.6,force,front_fx,0.0034116962924599648 +karman_re200,ppo,369,147.6,force,front_fy,-0.002505591604858637 +karman_re200,ppo,369,147.6,force,upper_fx,-0.00280768726952374 +karman_re200,ppo,369,147.6,force,upper_fy,0.00013269578630570322 +karman_re200,ppo,369,147.6,force,lower_fx,0.0008162007434293628 +karman_re200,ppo,369,147.6,force,lower_fy,-0.0019050645641982555 +karman_re200,ppo,370,148.0,force,front_fx,0.000985841266810894 +karman_re200,ppo,370,148.0,force,front_fy,-0.004935172852128744 +karman_re200,ppo,370,148.0,force,upper_fx,-0.0045427195727825165 +karman_re200,ppo,370,148.0,force,upper_fy,0.002288572723045945 +karman_re200,ppo,370,148.0,force,lower_fx,-0.000569318828638643 +karman_re200,ppo,370,148.0,force,lower_fy,-0.002714314963668585 +karman_re200,ppo,371,148.4,force,front_fx,-0.000550662400200963 +karman_re200,ppo,371,148.4,force,front_fy,-0.005626052618026733 +karman_re200,ppo,371,148.4,force,upper_fx,-0.0030092501547187567 +karman_re200,ppo,371,148.4,force,upper_fy,0.007163320668041706 +karman_re200,ppo,371,148.4,force,lower_fx,-0.0005228507798165083 +karman_re200,ppo,371,148.4,force,lower_fy,-0.003182182088494301 +karman_re200,ppo,372,148.8,force,front_fx,-0.001444642199203372 +karman_re200,ppo,372,148.8,force,front_fy,-0.004542331211268902 +karman_re200,ppo,372,148.8,force,upper_fx,0.0013252923963591456 +karman_re200,ppo,372,148.8,force,upper_fy,0.008490363135933876 +karman_re200,ppo,372,148.8,force,lower_fx,-0.0010048443218693137 +karman_re200,ppo,372,148.8,force,lower_fy,-0.0054204449988901615 +karman_re200,ppo,373,149.2,force,front_fx,0.0001676021929597482 +karman_re200,ppo,373,149.2,force,front_fy,-0.004011145327240229 +karman_re200,ppo,373,149.2,force,upper_fx,0.00506355008110404 +karman_re200,ppo,373,149.2,force,upper_fy,0.007623713463544846 +karman_re200,ppo,373,149.2,force,lower_fx,0.0011090546613559127 +karman_re200,ppo,373,149.2,force,lower_fy,-0.004165833815932274 +karman_re200,ppo,374,149.6,force,front_fx,0.004599074833095074 +karman_re200,ppo,374,149.6,force,front_fy,-0.0023187401238828897 +karman_re200,ppo,374,149.6,force,upper_fx,0.005760254338383675 +karman_re200,ppo,374,149.6,force,upper_fy,0.0058656055480241776 +karman_re200,ppo,374,149.6,force,lower_fx,-0.0039673903957009315 +karman_re200,ppo,374,149.6,force,lower_fy,-0.001657665940001607 +karman_re200,ppo,375,150.0,force,front_fx,0.005845135077834129 +karman_re200,ppo,375,150.0,force,front_fy,-0.000571283686440438 +karman_re200,ppo,375,150.0,force,upper_fx,0.005178172141313553 +karman_re200,ppo,375,150.0,force,upper_fy,0.0032287738285958767 +karman_re200,ppo,375,150.0,force,lower_fx,-0.006269915495067835 +karman_re200,ppo,375,150.0,force,lower_fy,-0.0048399921506643295 +karman_re200,ppo,376,150.4,force,front_fx,0.004364212974905968 +karman_re200,ppo,376,150.4,force,front_fy,0.0013266557361930609 +karman_re200,ppo,376,150.4,force,upper_fx,0.002946257358416915 +karman_re200,ppo,376,150.4,force,upper_fy,0.0032155304215848446 +karman_re200,ppo,376,150.4,force,lower_fx,-0.0026509645394980907 +karman_re200,ppo,376,150.4,force,lower_fy,-0.0061101061291992664 +karman_re200,ppo,377,150.8,force,front_fx,0.0020688604563474655 +karman_re200,ppo,377,150.8,force,front_fy,0.0027326049748808146 +karman_re200,ppo,377,150.8,force,upper_fx,0.0008207658538594842 +karman_re200,ppo,377,150.8,force,upper_fy,0.003751253243535757 +karman_re200,ppo,377,150.8,force,lower_fx,-0.0010374942794442177 +karman_re200,ppo,377,150.8,force,lower_fy,-0.004985467996448278 +karman_re200,ppo,378,151.2,force,front_fx,-0.0008404402178712189 +karman_re200,ppo,378,151.2,force,front_fy,0.0039375461637973785 +karman_re200,ppo,378,151.2,force,upper_fx,-0.0004114485054742545 +karman_re200,ppo,378,151.2,force,upper_fy,0.003608432598412037 +karman_re200,ppo,378,151.2,force,lower_fx,-8.11682766652666e-05 +karman_re200,ppo,378,151.2,force,lower_fy,-0.005959574598819017 +karman_re200,ppo,379,151.6,force,front_fx,-0.001525880885310471 +karman_re200,ppo,379,151.6,force,front_fy,0.003603697754442692 +karman_re200,ppo,379,151.6,force,upper_fx,-0.0015229829587042332 +karman_re200,ppo,379,151.6,force,upper_fy,0.0033094044774770737 +karman_re200,ppo,379,151.6,force,lower_fx,0.002122932579368353 +karman_re200,ppo,379,151.6,force,lower_fy,-0.0067628175020217896 +karman_re200,ppo,380,152.0,force,front_fx,-3.8207821489777416e-05 +karman_re200,ppo,380,152.0,force,front_fy,0.003935254644602537 +karman_re200,ppo,380,152.0,force,upper_fx,-0.0028859013691544533 +karman_re200,ppo,380,152.0,force,upper_fy,0.0029841193463653326 +karman_re200,ppo,380,152.0,force,lower_fx,0.004987178836017847 +karman_re200,ppo,380,152.0,force,lower_fy,-0.00692168902605772 +karman_re200,ppo,381,152.4,force,front_fx,0.005368107929825783 +karman_re200,ppo,381,152.4,force,front_fy,0.0031049465760588646 +karman_re200,ppo,381,152.4,force,upper_fx,-0.007026860490441322 +karman_re200,ppo,381,152.4,force,upper_fy,0.0012647082330659032 +karman_re200,ppo,381,152.4,force,lower_fx,0.0062963650561869144 +karman_re200,ppo,381,152.4,force,lower_fy,-0.007064452860504389 +karman_re200,ppo,382,152.8,force,front_fx,0.007707284297794104 +karman_re200,ppo,382,152.8,force,front_fy,0.002543246140703559 +karman_re200,ppo,382,152.8,force,upper_fx,-0.009590424597263336 +karman_re200,ppo,382,152.8,force,upper_fy,0.00556351849809289 +karman_re200,ppo,382,152.8,force,lower_fx,0.007645135745406151 +karman_re200,ppo,382,152.8,force,lower_fy,-0.004910004325211048 +karman_re200,ppo,383,153.2,force,front_fx,0.008129512891173363 +karman_re200,ppo,383,153.2,force,front_fy,0.00044404511572793126 +karman_re200,ppo,383,153.2,force,upper_fx,-0.005269941873848438 +karman_re200,ppo,383,153.2,force,upper_fy,0.006203684024512768 +karman_re200,ppo,383,153.2,force,lower_fx,0.0035719512961804867 +karman_re200,ppo,383,153.2,force,lower_fy,-0.0030925602186471224 +karman_re200,ppo,384,153.6,force,front_fx,0.005782084073871374 +karman_re200,ppo,384,153.6,force,front_fy,-0.0006853187805972993 +karman_re200,ppo,384,153.6,force,upper_fx,-0.0028380705043673515 +karman_re200,ppo,384,153.6,force,upper_fy,0.002261719899252057 +karman_re200,ppo,384,153.6,force,lower_fx,0.001181218191049993 +karman_re200,ppo,384,153.6,force,lower_fy,-0.0025126272812485695 +karman_re200,ppo,385,154.0,force,front_fx,0.0024539076257497072 +karman_re200,ppo,385,154.0,force,front_fy,-0.003175802528858185 +karman_re200,ppo,385,154.0,force,upper_fx,-0.0033563056495040655 +karman_re200,ppo,385,154.0,force,upper_fy,7.970249862410128e-05 +karman_re200,ppo,385,154.0,force,lower_fx,0.00022502837236970663 +karman_re200,ppo,385,154.0,force,lower_fy,-0.002028379589319229 +karman_re200,ppo,386,154.4,force,front_fx,0.0003816527023445815 +karman_re200,ppo,386,154.4,force,front_fy,-0.005374407395720482 +karman_re200,ppo,386,154.4,force,upper_fx,-0.004693516530096531 +karman_re200,ppo,386,154.4,force,upper_fy,0.0037273550406098366 +karman_re200,ppo,386,154.4,force,lower_fx,-0.0007653463399037719 +karman_re200,ppo,386,154.4,force,lower_fy,-0.0028725892771035433 +karman_re200,ppo,387,154.8,force,front_fx,-0.0008210656233131886 +karman_re200,ppo,387,154.8,force,front_fy,-0.005283660255372524 +karman_re200,ppo,387,154.8,force,upper_fx,-0.001942274160683155 +karman_re200,ppo,387,154.8,force,upper_fy,0.008062535896897316 +karman_re200,ppo,387,154.8,force,lower_fx,-0.0006329325842671096 +karman_re200,ppo,387,154.8,force,lower_fy,-0.0031196833588182926 +karman_re200,ppo,388,155.2,force,front_fx,-0.0013703686418011785 +karman_re200,ppo,388,155.2,force,front_fy,-0.004568969830870628 +karman_re200,ppo,388,155.2,force,upper_fx,0.0027764507103711367 +karman_re200,ppo,388,155.2,force,upper_fy,0.008488579653203487 +karman_re200,ppo,388,155.2,force,lower_fx,-0.0004770213272422552 +karman_re200,ppo,388,155.2,force,lower_fy,-0.005779959727078676 +karman_re200,ppo,389,155.6,force,front_fx,0.0012113575357943773 +karman_re200,ppo,389,155.6,force,front_fy,-0.0037303364370018244 +karman_re200,ppo,389,155.6,force,upper_fx,0.005908019375056028 +karman_re200,ppo,389,155.6,force,upper_fy,0.007266083732247353 +karman_re200,ppo,389,155.6,force,lower_fx,0.0006048846407793462 +karman_re200,ppo,389,155.6,force,lower_fy,-0.003301396733149886 +karman_re200,ppo,390,156.0,force,front_fx,0.005281453020870686 +karman_re200,ppo,390,156.0,force,front_fy,-0.002080268459394574 +karman_re200,ppo,390,156.0,force,upper_fx,0.005985000170767307 +karman_re200,ppo,390,156.0,force,upper_fy,0.005054110661149025 +karman_re200,ppo,390,156.0,force,lower_fx,-0.004717682953923941 +karman_re200,ppo,390,156.0,force,lower_fy,-0.002407682128250599 +karman_re200,ppo,391,156.4,force,front_fx,0.005603952333331108 +karman_re200,ppo,391,156.4,force,front_fy,-4.723038000520319e-05 +karman_re200,ppo,391,156.4,force,upper_fx,0.004656054545193911 +karman_re200,ppo,391,156.4,force,upper_fy,0.002886453876271844 +karman_re200,ppo,391,156.4,force,lower_fx,-0.005171992350369692 +karman_re200,ppo,391,156.4,force,lower_fy,-0.005248404573649168 +karman_re200,ppo,392,156.8,force,front_fx,0.003888424253091216 +karman_re200,ppo,392,156.8,force,front_fy,0.0015508326468989253 +karman_re200,ppo,392,156.8,force,upper_fx,0.0024572168476879597 +karman_re200,ppo,392,156.8,force,upper_fy,0.0032950034365057945 +karman_re200,ppo,392,156.8,force,lower_fx,-0.0021887505427002907 +karman_re200,ppo,392,156.8,force,lower_fy,-0.005520613398402929 +karman_re200,ppo,393,157.2,force,front_fx,0.0015575794968754053 +karman_re200,ppo,393,157.2,force,front_fy,0.0031587297562509775 +karman_re200,ppo,393,157.2,force,upper_fx,0.00027231310377828777 +karman_re200,ppo,393,157.2,force,upper_fy,0.0033928530756384134 +karman_re200,ppo,393,157.2,force,lower_fx,-0.0010663089342415333 +karman_re200,ppo,393,157.2,force,lower_fy,-0.004845968913286924 +karman_re200,ppo,394,157.6,force,front_fx,-0.00125205481890589 +karman_re200,ppo,394,157.6,force,front_fy,0.003763420507311821 +karman_re200,ppo,394,157.6,force,upper_fx,-0.00043804984306916595 +karman_re200,ppo,394,157.6,force,upper_fy,0.003503946354612708 +karman_re200,ppo,394,157.6,force,lower_fx,0.0002043065760517493 +karman_re200,ppo,394,157.6,force,lower_fy,-0.006363045424222946 +karman_re200,ppo,395,158.0,force,front_fx,-0.0013711851788684726 +karman_re200,ppo,395,158.0,force,front_fy,0.0036580271553248167 +karman_re200,ppo,395,158.0,force,upper_fx,-0.001692227553576231 +karman_re200,ppo,395,158.0,force,upper_fy,0.003242430044338107 +karman_re200,ppo,395,158.0,force,lower_fx,0.002948174485936761 +karman_re200,ppo,395,158.0,force,lower_fy,-0.006835592910647392 +karman_re200,ppo,396,158.4,force,front_fx,0.0008470623870380223 +karman_re200,ppo,396,158.4,force,front_fy,0.004034565296024084 +karman_re200,ppo,396,158.4,force,upper_fx,-0.0034059854224324226 +karman_re200,ppo,396,158.4,force,upper_fy,0.0024663747753947973 +karman_re200,ppo,396,158.4,force,lower_fx,0.005805562250316143 +karman_re200,ppo,396,158.4,force,lower_fy,-0.007010766305029392 +karman_re200,ppo,397,158.8,force,front_fx,0.006656506098806858 +karman_re200,ppo,397,158.8,force,front_fy,0.0030388236045837402 +karman_re200,ppo,397,158.8,force,upper_fx,-0.008140712976455688 +karman_re200,ppo,397,158.8,force,upper_fy,0.0014898277586326003 +karman_re200,ppo,397,158.8,force,lower_fx,0.006952954456210136 +karman_re200,ppo,397,158.8,force,lower_fy,-0.006906019989401102 +karman_re200,ppo,398,159.2,force,front_fx,0.007692623883485794 +karman_re200,ppo,398,159.2,force,front_fy,0.0018631522543728352 +karman_re200,ppo,398,159.2,force,upper_fx,-0.008855169638991356 +karman_re200,ppo,398,159.2,force,upper_fy,0.006481865420937538 +karman_re200,ppo,398,159.2,force,lower_fx,0.00705404719337821 +karman_re200,ppo,398,159.2,force,lower_fy,-0.004354257136583328 +karman_re200,ppo,399,159.6,force,front_fx,0.007845095358788967 +karman_re200,ppo,399,159.6,force,front_fy,7.759529398754239e-05 +karman_re200,ppo,399,159.6,force,upper_fx,-0.004737852141261101 +karman_re200,ppo,399,159.6,force,upper_fy,0.005370226688683033 +karman_re200,ppo,399,159.6,force,lower_fx,0.0027333975303918123 +karman_re200,ppo,399,159.6,force,lower_fy,-0.0029926036950200796 +karman_re200,ppo,0,0.0,alpha,front,0.19652204215526578 +karman_re200,ppo,0,0.0,alpha,upper,-5.50852632522583 +karman_re200,ppo,0,0.0,alpha,lower,-0.41892242431640625 +karman_re200,ppo,1,0.4,alpha,front,1.2456252574920654 +karman_re200,ppo,1,0.4,alpha,upper,-5.402215480804443 +karman_re200,ppo,1,0.4,alpha,lower,-0.2745780944824219 +karman_re200,ppo,2,0.8,alpha,front,1.9727596044540405 +karman_re200,ppo,2,0.8,alpha,upper,-4.945573031902313 +karman_re200,ppo,2,0.8,alpha,lower,1.4027810096740723 +karman_re200,ppo,3,1.2,alpha,front,2.2582013607025146 +karman_re200,ppo,3,1.2,alpha,upper,-5.2390851974487305 +karman_re200,ppo,3,1.2,alpha,lower,2.5129618644714355 +karman_re200,ppo,4,1.6,alpha,front,2.2357051372528076 +karman_re200,ppo,4,1.6,alpha,upper,-5.304773807525635 +karman_re200,ppo,4,1.6,alpha,lower,3.287640333175659 +karman_re200,ppo,5,2.0,alpha,front,2.293850898742676 +karman_re200,ppo,5,2.0,alpha,upper,-5.740528345108032 +karman_re200,ppo,5,2.0,alpha,lower,2.03075635433197 +karman_re200,ppo,6,2.4,alpha,front,2.6445908546447754 +karman_re200,ppo,6,2.4,alpha,upper,-5.363493204116821 +karman_re200,ppo,6,2.4,alpha,lower,0.5345487594604492 +karman_re200,ppo,7,2.8,alpha,front,2.521012306213379 +karman_re200,ppo,7,2.8,alpha,upper,-3.776288866996765 +karman_re200,ppo,7,2.8,alpha,lower,1.4951896667480469 +karman_re200,ppo,8,3.2,alpha,front,1.6191495656967165 +karman_re200,ppo,8,3.2,alpha,upper,-1.5692989826202393 +karman_re200,ppo,8,3.2,alpha,lower,4.5236862897872925 +karman_re200,ppo,9,3.6,alpha,front,0.26149630546569824 +karman_re200,ppo,9,3.6,alpha,upper,-0.0439000129699707 +karman_re200,ppo,9,3.6,alpha,lower,6.493999481201172 +karman_re200,ppo,10,4.0,alpha,front,-0.7563360929489136 +karman_re200,ppo,10,4.0,alpha,upper,0.05207490921020507 +karman_re200,ppo,10,4.0,alpha,lower,6.5772719383239755 +karman_re200,ppo,11,4.4,alpha,front,-1.4647358655929565 +karman_re200,ppo,11,4.4,alpha,upper,0.23448944091796875 +karman_re200,ppo,11,4.4,alpha,lower,7.0337586402893075 +karman_re200,ppo,12,4.8,alpha,front,-1.8178857564926147 +karman_re200,ppo,12,4.8,alpha,upper,0.21745586395263672 +karman_re200,ppo,12,4.8,alpha,lower,7.209330081939698 +karman_re200,ppo,13,5.2,alpha,front,-1.5266462564468384 +karman_re200,ppo,13,5.2,alpha,upper,-1.816652774810791 +karman_re200,ppo,13,5.2,alpha,lower,5.160730242729187 +karman_re200,ppo,14,5.6,alpha,front,-0.9121253490447997 +karman_re200,ppo,14,5.6,alpha,upper,-4.121917307376862 +karman_re200,ppo,14,5.6,alpha,lower,2.7115617990493774 +karman_re200,ppo,15,6.0,alpha,front,-0.3841540813446045 +karman_re200,ppo,15,6.0,alpha,upper,-4.799434721469879 +karman_re200,ppo,15,6.0,alpha,lower,2.16081964969635 +karman_re200,ppo,16,6.4,alpha,front,0.1986285299062729 +karman_re200,ppo,16,6.4,alpha,upper,-4.807687222957611 +karman_re200,ppo,16,6.4,alpha,lower,1.582551956176758 +karman_re200,ppo,17,6.8,alpha,front,1.0236108303070068 +karman_re200,ppo,17,6.8,alpha,upper,-5.4252519607543945 +karman_re200,ppo,17,6.8,alpha,lower,0.48557519912719727 +karman_re200,ppo,18,7.2,alpha,front,2.106981039047241 +karman_re200,ppo,18,7.2,alpha,upper,-6.468611001968384 +karman_re200,ppo,18,7.2,alpha,lower,-0.8439326286315918 +karman_re200,ppo,19,7.6,alpha,front,2.7421247959136963 +karman_re200,ppo,19,7.6,alpha,upper,-6.683710336685181 +karman_re200,ppo,19,7.6,alpha,lower,-0.965001106262207 +karman_re200,ppo,20,8.0,alpha,front,2.629279136657715 +karman_re200,ppo,20,8.0,alpha,upper,-5.234029769897461 +karman_re200,ppo,20,8.0,alpha,lower,1.3413963317871094 +karman_re200,ppo,21,8.4,alpha,front,2.3502275943756104 +karman_re200,ppo,21,8.4,alpha,upper,-3.9219593405723567 +karman_re200,ppo,21,8.4,alpha,lower,4.344194769859314 +karman_re200,ppo,22,8.8,alpha,front,2.1766111850738525 +karman_re200,ppo,22,8.8,alpha,upper,-4.267052590847015 +karman_re200,ppo,22,8.8,alpha,lower,3.7834703028202057 +karman_re200,ppo,23,9.2,alpha,front,1.940362334251404 +karman_re200,ppo,23,9.2,alpha,upper,-3.892557382583618 +karman_re200,ppo,23,9.2,alpha,lower,2.3801229000091553 +karman_re200,ppo,24,9.6,alpha,front,1.312134027481079 +karman_re200,ppo,24,9.6,alpha,upper,-2.8733322620391846 +karman_re200,ppo,24,9.6,alpha,lower,1.8510994911193848 +karman_re200,ppo,25,10.0,alpha,front,0.2619737386703491 +karman_re200,ppo,25,10.0,alpha,upper,-1.365713357925415 +karman_re200,ppo,25,10.0,alpha,lower,3.0741958618164062 +karman_re200,ppo,26,10.4,alpha,front,-0.9436365365982056 +karman_re200,ppo,26,10.4,alpha,upper,-0.10767531394958497 +karman_re200,ppo,26,10.4,alpha,lower,5.031158089637756 +karman_re200,ppo,27,10.8,alpha,front,-2.004239320755005 +karman_re200,ppo,27,10.8,alpha,upper,0.28342342376708984 +karman_re200,ppo,27,10.8,alpha,lower,6.642661571502685 +karman_re200,ppo,28,11.2,alpha,front,-2.6141698360443115 +karman_re200,ppo,28,11.2,alpha,upper,-0.3929018974304199 +karman_re200,ppo,28,11.2,alpha,lower,7.331346988677978 +karman_re200,ppo,29,11.6,alpha,front,-2.5903613567352295 +karman_re200,ppo,29,11.6,alpha,upper,-1.987013339996338 +karman_re200,ppo,29,11.6,alpha,lower,6.31176471710205 +karman_re200,ppo,30,12.0,alpha,front,-2.241981029510498 +karman_re200,ppo,30,12.0,alpha,upper,-3.3769304752349854 +karman_re200,ppo,30,12.0,alpha,lower,4.176285922527313 +karman_re200,ppo,31,12.4,alpha,front,-1.8045690059661865 +karman_re200,ppo,31,12.4,alpha,upper,-3.6836574971675873 +karman_re200,ppo,31,12.4,alpha,lower,3.31633323431015 +karman_re200,ppo,32,12.8,alpha,front,-1.435051679611206 +karman_re200,ppo,32,12.8,alpha,upper,-2.846006989479065 +karman_re200,ppo,32,12.8,alpha,lower,3.025139570236206 +karman_re200,ppo,33,13.2,alpha,front,-0.04592525213956833 +karman_re200,ppo,33,13.2,alpha,upper,-3.911960661411285 +karman_re200,ppo,33,13.2,alpha,lower,0.8418326377868653 +karman_re200,ppo,34,13.6,alpha,front,2.2504196166992188 +karman_re200,ppo,34,13.6,alpha,upper,-6.578437328338624 +karman_re200,ppo,34,13.6,alpha,lower,-2.3404793739318848 +karman_re200,ppo,35,14.0,alpha,front,3.2564306259155273 +karman_re200,ppo,35,14.0,alpha,upper,-7.286537647247314 +karman_re200,ppo,35,14.0,alpha,lower,-2.4796805381774902 +karman_re200,ppo,36,14.4,alpha,front,3.2616889476776123 +karman_re200,ppo,36,14.4,alpha,upper,-6.5056660175323495 +karman_re200,ppo,36,14.4,alpha,lower,-0.5937404632568359 +karman_re200,ppo,37,14.8,alpha,front,3.0317599773406982 +karman_re200,ppo,37,14.8,alpha,upper,-4.503211200237274 +karman_re200,ppo,37,14.8,alpha,lower,3.0301566123962402 +karman_re200,ppo,38,15.2,alpha,front,2.690978765487671 +karman_re200,ppo,38,15.2,alpha,upper,-3.641274213790894 +karman_re200,ppo,38,15.2,alpha,lower,5.13649582862854 +karman_re200,ppo,39,15.6,alpha,front,2.437162399291992 +karman_re200,ppo,39,15.6,alpha,upper,-3.7666308283805847 +karman_re200,ppo,39,15.6,alpha,lower,3.762744843959808 +karman_re200,ppo,40,16.0,alpha,front,1.8010140657424927 +karman_re200,ppo,40,16.0,alpha,upper,-3.038994312286377 +karman_re200,ppo,40,16.0,alpha,lower,3.224447906017303 +karman_re200,ppo,41,16.4,alpha,front,0.49393695592880243 +karman_re200,ppo,41,16.4,alpha,upper,-1.3653490543365479 +karman_re200,ppo,41,16.4,alpha,lower,4.301784932613373 +karman_re200,ppo,42,16.8,alpha,front,-0.9040157794952391 +karman_re200,ppo,42,16.8,alpha,upper,0.2725529670715332 +karman_re200,ppo,42,16.8,alpha,lower,6.09684419631958 +karman_re200,ppo,43,17.2,alpha,front,-1.4817372560501099 +karman_re200,ppo,43,17.2,alpha,upper,0.3195481300354004 +karman_re200,ppo,43,17.2,alpha,lower,6.739093780517578 +karman_re200,ppo,44,17.6,alpha,front,-1.7305556535720825 +karman_re200,ppo,44,17.6,alpha,upper,-0.5553064346313477 +karman_re200,ppo,44,17.6,alpha,lower,6.553997993469237 +karman_re200,ppo,45,18.0,alpha,front,-1.5031782388687134 +karman_re200,ppo,45,18.0,alpha,upper,-2.720081329345703 +karman_re200,ppo,45,18.0,alpha,lower,4.621493220329285 +karman_re200,ppo,46,18.4,alpha,front,-0.9673381447792053 +karman_re200,ppo,46,18.4,alpha,upper,-4.697580277919769 +karman_re200,ppo,46,18.4,alpha,lower,2.270795464515686 +karman_re200,ppo,47,18.8,alpha,front,-0.4141373634338379 +karman_re200,ppo,47,18.8,alpha,upper,-5.5400261878967285 +karman_re200,ppo,47,18.8,alpha,lower,1.1522469520568848 +karman_re200,ppo,48,19.2,alpha,front,0.1851188987493515 +karman_re200,ppo,48,19.2,alpha,upper,-5.354915618896484 +karman_re200,ppo,48,19.2,alpha,lower,0.6962175369262695 +karman_re200,ppo,49,19.6,alpha,front,1.0224201679229736 +karman_re200,ppo,49,19.6,alpha,upper,-5.645507574081421 +karman_re200,ppo,49,19.6,alpha,lower,-0.4952301979064941 +karman_re200,ppo,50,20.0,alpha,front,2.1955349445343018 +karman_re200,ppo,50,20.0,alpha,upper,-6.376034498214722 +karman_re200,ppo,50,20.0,alpha,lower,-1.806692123413086 +karman_re200,ppo,51,20.4,alpha,front,2.795144557952881 +karman_re200,ppo,51,20.4,alpha,upper,-6.017129898071289 +karman_re200,ppo,51,20.4,alpha,lower,-0.876868724822998 +karman_re200,ppo,52,20.8,alpha,front,2.684324264526367 +karman_re200,ppo,52,20.8,alpha,upper,-4.403696238994598 +karman_re200,ppo,52,20.8,alpha,lower,2.3480453491210938 +karman_re200,ppo,53,21.2,alpha,front,2.39786958694458 +karman_re200,ppo,53,21.2,alpha,upper,-3.845436751842499 +karman_re200,ppo,53,21.2,alpha,lower,4.161650478839874 +karman_re200,ppo,54,21.6,alpha,front,2.443437337875366 +karman_re200,ppo,54,21.6,alpha,upper,-4.711132824420929 +karman_re200,ppo,54,21.6,alpha,lower,2.2339154481887817 +karman_re200,ppo,55,22.0,alpha,front,2.2093663215637207 +karman_re200,ppo,55,22.0,alpha,upper,-4.088170349597931 +karman_re200,ppo,55,22.0,alpha,lower,0.9822573661804199 +karman_re200,ppo,56,22.4,alpha,front,1.0342304706573486 +karman_re200,ppo,56,22.4,alpha,upper,-1.9384617805480955 +karman_re200,ppo,56,22.4,alpha,lower,2.469296097755432 +karman_re200,ppo,57,22.8,alpha,front,-0.9571715593338012 +karman_re200,ppo,57,22.8,alpha,upper,1.0239653587341309 +karman_re200,ppo,57,22.8,alpha,lower,6.291071414947511 +karman_re200,ppo,58,23.2,alpha,front,-1.9090417623519897 +karman_re200,ppo,58,23.2,alpha,upper,1.2298741340637207 +karman_re200,ppo,58,23.2,alpha,lower,7.71807861328125 +karman_re200,ppo,59,23.6,alpha,front,-2.1757922172546387 +karman_re200,ppo,59,23.6,alpha,upper,0.17655038833618164 +karman_re200,ppo,59,23.6,alpha,lower,7.788578033447266 +karman_re200,ppo,60,24.0,alpha,front,-2.1159892082214355 +karman_re200,ppo,60,24.0,alpha,upper,-1.2650010585784912 +karman_re200,ppo,60,24.0,alpha,lower,6.730040550231933 +karman_re200,ppo,61,24.4,alpha,front,-1.5686522722244263 +karman_re200,ppo,61,24.4,alpha,upper,-3.8008006811141968 +karman_re200,ppo,61,24.4,alpha,lower,3.6128031611442566 +karman_re200,ppo,62,24.8,alpha,front,-0.9719362258911133 +karman_re200,ppo,62,24.8,alpha,upper,-5.26216983795166 +karman_re200,ppo,62,24.8,alpha,lower,2.122422218322754 +karman_re200,ppo,63,25.2,alpha,front,-0.5339296460151672 +karman_re200,ppo,63,25.2,alpha,upper,-4.98578017950058 +karman_re200,ppo,63,25.2,alpha,lower,1.6659317016601562 +karman_re200,ppo,64,25.6,alpha,front,0.1711682826280594 +karman_re200,ppo,64,25.6,alpha,upper,-4.987168848514557 +karman_re200,ppo,64,25.6,alpha,lower,0.6245827674865723 +karman_re200,ppo,65,26.0,alpha,front,1.374618649482727 +karman_re200,ppo,65,26.0,alpha,upper,-5.7181055545806885 +karman_re200,ppo,65,26.0,alpha,lower,-1.1600651741027832 +karman_re200,ppo,66,26.4,alpha,front,2.6108460426330566 +karman_re200,ppo,66,26.4,alpha,upper,-6.360093355178833 +karman_re200,ppo,66,26.4,alpha,lower,-2.1054563522338867 +karman_re200,ppo,67,26.8,alpha,front,3.003852367401123 +karman_re200,ppo,67,26.8,alpha,upper,-5.762303590774536 +karman_re200,ppo,67,26.8,alpha,lower,-0.5021414756774902 +karman_re200,ppo,68,27.2,alpha,front,2.854146718978882 +karman_re200,ppo,68,27.2,alpha,upper,-4.224486231803894 +karman_re200,ppo,68,27.2,alpha,lower,2.836616277694702 +karman_re200,ppo,69,27.6,alpha,front,2.643653392791748 +karman_re200,ppo,69,27.6,alpha,upper,-4.084202766418457 +karman_re200,ppo,69,27.6,alpha,lower,4.148422122001648 +karman_re200,ppo,70,28.0,alpha,front,2.8237521648406982 +karman_re200,ppo,70,28.0,alpha,upper,-4.874615013599396 +karman_re200,ppo,70,28.0,alpha,lower,1.951899528503418 +karman_re200,ppo,71,28.4,alpha,front,2.780534505844116 +karman_re200,ppo,71,28.4,alpha,upper,-4.477503478527069 +karman_re200,ppo,71,28.4,alpha,lower,0.6497244834899902 +karman_re200,ppo,72,28.8,alpha,front,1.753448963165283 +karman_re200,ppo,72,28.8,alpha,upper,-2.54362952709198 +karman_re200,ppo,72,28.8,alpha,lower,2.2770878076553345 +karman_re200,ppo,73,29.2,alpha,front,-0.7866039276123046 +karman_re200,ppo,73,29.2,alpha,upper,1.3655943870544434 +karman_re200,ppo,73,29.2,alpha,lower,7.321387767791748 +karman_re200,ppo,74,29.6,alpha,front,-2.239144802093506 +karman_re200,ppo,74,29.6,alpha,upper,2.0884056091308594 +karman_re200,ppo,74,29.6,alpha,lower,9.390201568603516 +karman_re200,ppo,75,30.0,alpha,front,-2.556910514831543 +karman_re200,ppo,75,30.0,alpha,upper,0.8488688468933105 +karman_re200,ppo,75,30.0,alpha,lower,9.180915355682373 +karman_re200,ppo,76,30.4,alpha,front,-2.4624099731445312 +karman_re200,ppo,76,30.4,alpha,upper,-0.8115053176879883 +karman_re200,ppo,76,30.4,alpha,lower,7.434752941131592 +karman_re200,ppo,77,30.8,alpha,front,-1.774230122566223 +karman_re200,ppo,77,30.8,alpha,upper,-4.043969213962555 +karman_re200,ppo,77,30.8,alpha,lower,3.5200133323669434 +karman_re200,ppo,78,31.2,alpha,front,-1.170863389968872 +karman_re200,ppo,78,31.2,alpha,upper,-5.197195291519165 +karman_re200,ppo,78,31.2,alpha,lower,2.3723114728927612 +karman_re200,ppo,79,31.6,alpha,front,-0.6511660218238831 +karman_re200,ppo,79,31.6,alpha,upper,-4.690055191516876 +karman_re200,ppo,79,31.6,alpha,lower,1.925978422164917 +karman_re200,ppo,80,32.0,alpha,front,1.064527153968811 +karman_re200,ppo,80,32.0,alpha,upper,-6.19611930847168 +karman_re200,ppo,80,32.0,alpha,lower,-0.8913388252258301 +karman_re200,ppo,81,32.4,alpha,front,2.8592066764831543 +karman_re200,ppo,81,32.4,alpha,upper,-7.809646129608154 +karman_re200,ppo,81,32.4,alpha,lower,-3.5521225929260254 +karman_re200,ppo,82,32.8,alpha,front,3.41057014465332 +karman_re200,ppo,82,32.8,alpha,upper,-7.532191753387451 +karman_re200,ppo,82,32.8,alpha,lower,-3.0926513671875 +karman_re200,ppo,83,33.2,alpha,front,3.0322482585906982 +karman_re200,ppo,83,33.2,alpha,upper,-5.7797136306762695 +karman_re200,ppo,83,33.2,alpha,lower,0.5217432975769043 +karman_re200,ppo,84,33.6,alpha,front,2.578888177871704 +karman_re200,ppo,84,33.6,alpha,upper,-4.19686484336853 +karman_re200,ppo,84,33.6,alpha,lower,5.040181636810303 +karman_re200,ppo,85,34.0,alpha,front,2.5982189178466797 +karman_re200,ppo,85,34.0,alpha,upper,-5.136776447296143 +karman_re200,ppo,85,34.0,alpha,lower,3.0948195457458496 +karman_re200,ppo,86,34.4,alpha,front,2.857149839401245 +karman_re200,ppo,86,34.4,alpha,upper,-5.187998056411743 +karman_re200,ppo,86,34.4,alpha,lower,0.6167001724243164 +karman_re200,ppo,87,34.8,alpha,front,2.3259007930755615 +karman_re200,ppo,87,34.8,alpha,upper,-3.437483668327332 +karman_re200,ppo,87,34.8,alpha,lower,1.0128517150878906 +karman_re200,ppo,88,35.2,alpha,front,-0.02542632818222046 +karman_re200,ppo,88,35.2,alpha,upper,0.6329054832458496 +karman_re200,ppo,88,35.2,alpha,lower,6.113124847412109 +karman_re200,ppo,89,35.6,alpha,front,-2.024571180343628 +karman_re200,ppo,89,35.6,alpha,upper,2.527799129486084 +karman_re200,ppo,89,35.6,alpha,lower,9.525574684143066 +karman_re200,ppo,90,36.0,alpha,front,-2.6672065258026123 +karman_re200,ppo,90,36.0,alpha,upper,1.3704419136047363 +karman_re200,ppo,90,36.0,alpha,lower,9.548944473266602 +karman_re200,ppo,91,36.4,alpha,front,-2.9277048110961914 +karman_re200,ppo,91,36.4,alpha,upper,0.5047187805175781 +karman_re200,ppo,91,36.4,alpha,lower,9.171574592590332 +karman_re200,ppo,92,36.8,alpha,front,-2.5591797828674316 +karman_re200,ppo,92,36.8,alpha,upper,-2.2234914302825928 +karman_re200,ppo,92,36.8,alpha,lower,6.108193397521973 +karman_re200,ppo,93,37.2,alpha,front,-1.8075785636901853 +karman_re200,ppo,93,37.2,alpha,upper,-4.645201742649078 +karman_re200,ppo,93,37.2,alpha,lower,3.286620736122131 +karman_re200,ppo,94,37.6,alpha,front,-1.6325799226760864 +karman_re200,ppo,94,37.6,alpha,upper,-3.5800458788871765 +karman_re200,ppo,94,37.6,alpha,lower,3.834457457065582 +karman_re200,ppo,95,38.0,alpha,front,-0.36585408449172974 +karman_re200,ppo,95,38.0,alpha,upper,-4.493417322635651 +karman_re200,ppo,95,38.0,alpha,lower,0.9843168258666991 +karman_re200,ppo,96,38.4,alpha,front,2.161808729171753 +karman_re200,ppo,96,38.4,alpha,upper,-7.564452648162842 +karman_re200,ppo,96,38.4,alpha,lower,-3.3842811584472656 +karman_re200,ppo,97,38.8,alpha,front,3.4219088554382324 +karman_re200,ppo,97,38.8,alpha,upper,-8.350165367126465 +karman_re200,ppo,97,38.8,alpha,lower,-4.0 +karman_re200,ppo,98,39.2,alpha,front,3.6165974140167236 +karman_re200,ppo,98,39.2,alpha,upper,-8.028059005737305 +karman_re200,ppo,98,39.2,alpha,lower,-3.3850512504577637 +karman_re200,ppo,99,39.6,alpha,front,3.059335947036743 +karman_re200,ppo,99,39.6,alpha,upper,-6.145452260971069 +karman_re200,ppo,99,39.6,alpha,lower,0.6655149459838867 +karman_re200,ppo,100,40.0,alpha,front,2.730794906616211 +karman_re200,ppo,100,40.0,alpha,upper,-4.943847358226776 +karman_re200,ppo,100,40.0,alpha,lower,4.302933692932129 +karman_re200,ppo,101,40.4,alpha,front,3.0169758796691895 +karman_re200,ppo,101,40.4,alpha,upper,-5.613609075546265 +karman_re200,ppo,101,40.4,alpha,lower,1.8473963737487793 +karman_re200,ppo,102,40.8,alpha,front,3.1850292682647705 +karman_re200,ppo,102,40.8,alpha,upper,-5.106367349624634 +karman_re200,ppo,102,40.8,alpha,lower,0.2365412712097168 +karman_re200,ppo,103,41.2,alpha,front,1.1002070903778076 +karman_re200,ppo,103,41.2,alpha,upper,-0.9549906253814697 +karman_re200,ppo,103,41.2,alpha,lower,4.669219493865967 +karman_re200,ppo,104,41.6,alpha,front,-1.4202394485473633 +karman_re200,ppo,104,41.6,alpha,upper,2.325864315032959 +karman_re200,ppo,104,41.6,alpha,lower,9.419841766357422 +karman_re200,ppo,105,42.0,alpha,front,-2.086033344268799 +karman_re200,ppo,105,42.0,alpha,upper,1.3810324668884277 +karman_re200,ppo,105,42.0,alpha,lower,9.08924674987793 +karman_re200,ppo,106,42.4,alpha,front,-2.569099187850952 +karman_re200,ppo,106,42.4,alpha,upper,1.1231203079223633 +karman_re200,ppo,106,42.4,alpha,lower,9.37700366973877 +karman_re200,ppo,107,42.8,alpha,front,-2.7182023525238037 +karman_re200,ppo,107,42.8,alpha,upper,-0.5496213436126709 +karman_re200,ppo,107,42.8,alpha,lower,7.977419376373292 +karman_re200,ppo,108,43.2,alpha,front,-2.1217904090881348 +karman_re200,ppo,108,43.2,alpha,upper,-3.6744025945663448 +karman_re200,ppo,108,43.2,alpha,lower,4.230619490146637 +karman_re200,ppo,109,43.6,alpha,front,-1.8714784383773801 +karman_re200,ppo,109,43.6,alpha,upper,-3.787718653678894 +karman_re200,ppo,109,43.6,alpha,lower,4.041532874107361 +karman_re200,ppo,110,44.0,alpha,front,-1.1939138174057007 +karman_re200,ppo,110,44.0,alpha,upper,-3.42021381855011 +karman_re200,ppo,110,44.0,alpha,lower,2.896440267562866 +karman_re200,ppo,111,44.4,alpha,front,1.2484259605407715 +karman_re200,ppo,111,44.4,alpha,upper,-6.457242488861084 +karman_re200,ppo,111,44.4,alpha,lower,-1.9495220184326172 +karman_re200,ppo,112,44.8,alpha,front,2.926436185836792 +karman_re200,ppo,112,44.8,alpha,upper,-8.088238716125488 +karman_re200,ppo,112,44.8,alpha,lower,-4.0 +karman_re200,ppo,113,45.2,alpha,front,3.388373851776123 +karman_re200,ppo,113,45.2,alpha,upper,-8.072397708892822 +karman_re200,ppo,113,45.2,alpha,lower,-3.6493945121765137 +karman_re200,ppo,114,45.6,alpha,front,3.1528387069702153 +karman_re200,ppo,114,45.6,alpha,upper,-7.2054221630096436 +karman_re200,ppo,114,45.6,alpha,lower,-1.6402416229248047 +karman_re200,ppo,115,46.0,alpha,front,2.7063026428222656 +karman_re200,ppo,115,46.0,alpha,upper,-5.078374624252319 +karman_re200,ppo,115,46.0,alpha,lower,3.4252315759658813 +karman_re200,ppo,116,46.4,alpha,front,2.666499137878418 +karman_re200,ppo,116,46.4,alpha,upper,-5.201318264007568 +karman_re200,ppo,116,46.4,alpha,lower,3.12815922498703 +karman_re200,ppo,117,46.8,alpha,front,3.2842743396759033 +karman_re200,ppo,117,46.8,alpha,upper,-5.890711784362793 +karman_re200,ppo,117,46.8,alpha,lower,-0.22251033782958984 +karman_re200,ppo,118,47.2,alpha,front,3.3009486198425293 +karman_re200,ppo,118,47.2,alpha,upper,-4.463171184062958 +karman_re200,ppo,118,47.2,alpha,lower,-0.10186290740966798 +karman_re200,ppo,119,47.6,alpha,front,0.7088814973831177 +karman_re200,ppo,119,47.6,alpha,upper,0.12808561325073242 +karman_re200,ppo,119,47.6,alpha,lower,6.743042945861817 +karman_re200,ppo,120,48.0,alpha,front,-2.112753391265869 +karman_re200,ppo,120,48.0,alpha,upper,3.2481231689453125 +karman_re200,ppo,120,48.0,alpha,lower,11.367090702056885 +karman_re200,ppo,121,48.4,alpha,front,-2.644756555557251 +karman_re200,ppo,121,48.4,alpha,upper,1.6102266311645508 +karman_re200,ppo,121,48.4,alpha,lower,10.182872295379639 +karman_re200,ppo,122,48.8,alpha,front,-3.0174546241760254 +karman_re200,ppo,122,48.8,alpha,upper,1.6308951377868652 +karman_re200,ppo,122,48.8,alpha,lower,10.241271495819092 +karman_re200,ppo,123,49.2,alpha,front,-2.937844753265381 +karman_re200,ppo,123,49.2,alpha,upper,-0.7591438293457031 +karman_re200,ppo,123,49.2,alpha,lower,8.046258449554443 +karman_re200,ppo,124,49.6,alpha,front,-2.2875075340270996 +karman_re200,ppo,124,49.6,alpha,upper,-3.3026459217071533 +karman_re200,ppo,124,49.6,alpha,lower,4.901383280754089 +karman_re200,ppo,125,50.0,alpha,front,-2.0666141510009766 +karman_re200,ppo,125,50.0,alpha,upper,-2.840315580368042 +karman_re200,ppo,125,50.0,alpha,lower,4.682432413101196 +karman_re200,ppo,126,50.4,alpha,front,-0.7467321753501892 +karman_re200,ppo,126,50.4,alpha,upper,-3.791853666305542 +karman_re200,ppo,126,50.4,alpha,lower,1.982335090637207 +karman_re200,ppo,127,50.8,alpha,front,1.894654393196106 +karman_re200,ppo,127,50.8,alpha,upper,-7.270974159240723 +karman_re200,ppo,127,50.8,alpha,lower,-3.0916824340820312 +karman_re200,ppo,128,51.2,alpha,front,3.1693170070648193 +karman_re200,ppo,128,51.2,alpha,upper,-8.331079006195068 +karman_re200,ppo,128,51.2,alpha,lower,-4.0 +karman_re200,ppo,129,51.6,alpha,front,3.4804804325103755 +karman_re200,ppo,129,51.6,alpha,upper,-8.46957778930664 +karman_re200,ppo,129,51.6,alpha,lower,-3.7266945838928223 +karman_re200,ppo,130,52.0,alpha,front,3.002079486846924 +karman_re200,ppo,130,52.0,alpha,upper,-7.093399286270141 +karman_re200,ppo,130,52.0,alpha,lower,-0.9645109176635743 +karman_re200,ppo,131,52.4,alpha,front,2.5720598697662354 +karman_re200,ppo,131,52.4,alpha,upper,-5.002678632736206 +karman_re200,ppo,131,52.4,alpha,lower,4.231488049030304 +karman_re200,ppo,132,52.8,alpha,front,2.698106527328491 +karman_re200,ppo,132,52.8,alpha,upper,-5.3962321281433105 +karman_re200,ppo,132,52.8,alpha,lower,2.754610300064087 +karman_re200,ppo,133,53.2,alpha,front,3.278810501098633 +karman_re200,ppo,133,53.2,alpha,upper,-5.741978406906128 +karman_re200,ppo,133,53.2,alpha,lower,-0.34739160537719727 +karman_re200,ppo,134,53.6,alpha,front,2.9147839546203613 +karman_re200,ppo,134,53.6,alpha,upper,-3.778282642364502 +karman_re200,ppo,134,53.6,alpha,lower,0.8818535804748535 +karman_re200,ppo,135,54.0,alpha,front,0.08426657319068909 +karman_re200,ppo,135,54.0,alpha,upper,0.8051900863647461 +karman_re200,ppo,135,54.0,alpha,lower,7.698507308959961 +karman_re200,ppo,136,54.4,alpha,front,-2.332858085632324 +karman_re200,ppo,136,54.4,alpha,upper,2.848997116088867 +karman_re200,ppo,136,54.4,alpha,lower,11.00554084777832 +karman_re200,ppo,137,54.8,alpha,front,-2.8220512866973877 +karman_re200,ppo,137,54.8,alpha,upper,1.5426959991455078 +karman_re200,ppo,137,54.8,alpha,lower,10.167677402496338 +karman_re200,ppo,138,55.2,alpha,front,-3.1670727729797363 +karman_re200,ppo,138,55.2,alpha,upper,1.2999744415283203 +karman_re200,ppo,138,55.2,alpha,lower,10.09416389465332 +karman_re200,ppo,139,55.6,alpha,front,-2.921724319458008 +karman_re200,ppo,139,55.6,alpha,upper,-1.582124948501587 +karman_re200,ppo,139,55.6,alpha,lower,7.331727504730225 +karman_re200,ppo,140,56.0,alpha,front,-2.278120279312134 +karman_re200,ppo,140,56.0,alpha,upper,-3.845868229866028 +karman_re200,ppo,140,56.0,alpha,lower,4.5715012550354 +karman_re200,ppo,141,56.4,alpha,front,-2.218493938446045 +karman_re200,ppo,141,56.4,alpha,upper,-2.6744725704193115 +karman_re200,ppo,141,56.4,alpha,lower,4.909961700439453 +karman_re200,ppo,142,56.8,alpha,front,-1.15923273563385 +karman_re200,ppo,142,56.8,alpha,upper,-3.2261186242103577 +karman_re200,ppo,142,56.8,alpha,lower,2.3500759601593018 +karman_re200,ppo,143,57.2,alpha,front,1.5207511186599731 +karman_re200,ppo,143,57.2,alpha,upper,-6.835027933120728 +karman_re200,ppo,143,57.2,alpha,lower,-2.800565719604492 +karman_re200,ppo,144,57.6,alpha,front,3.2082993984222417 +karman_re200,ppo,144,57.6,alpha,upper,-8.386019706726074 +karman_re200,ppo,144,57.6,alpha,lower,-4.0 +karman_re200,ppo,145,58.0,alpha,front,3.5780558586120605 +karman_re200,ppo,145,58.0,alpha,upper,-8.410728454589844 +karman_re200,ppo,145,58.0,alpha,lower,-3.9205098152160645 +karman_re200,ppo,146,58.4,alpha,front,3.1962945461273193 +karman_re200,ppo,146,58.4,alpha,upper,-7.288733959197999 +karman_re200,ppo,146,58.4,alpha,lower,-1.4971504211425781 +karman_re200,ppo,147,58.8,alpha,front,2.76971697807312 +karman_re200,ppo,147,58.8,alpha,upper,-5.026740789413452 +karman_re200,ppo,147,58.8,alpha,lower,4.034134745597839 +karman_re200,ppo,148,59.2,alpha,front,2.790766477584839 +karman_re200,ppo,148,59.2,alpha,upper,-5.323847770690918 +karman_re200,ppo,148,59.2,alpha,lower,3.150462925434112 +karman_re200,ppo,149,59.6,alpha,front,3.2705612182617188 +karman_re200,ppo,149,59.6,alpha,upper,-5.720938444137573 +karman_re200,ppo,149,59.6,alpha,lower,0.06961584091186523 +karman_re200,ppo,150,60.0,alpha,front,2.848813533782959 +karman_re200,ppo,150,60.0,alpha,upper,-3.648736357688904 +karman_re200,ppo,150,60.0,alpha,lower,0.9257106781005859 +karman_re200,ppo,151,60.4,alpha,front,-0.0845295637845993 +karman_re200,ppo,151,60.4,alpha,upper,1.1142892837524414 +karman_re200,ppo,151,60.4,alpha,lower,7.707848072052002 +karman_re200,ppo,152,60.8,alpha,front,-2.2402467727661133 +karman_re200,ppo,152,60.8,alpha,upper,2.711398124694824 +karman_re200,ppo,152,60.8,alpha,lower,10.89070749282837 +karman_re200,ppo,153,61.2,alpha,front,-2.650113105773926 +karman_re200,ppo,153,61.2,alpha,upper,1.358682632446289 +karman_re200,ppo,153,61.2,alpha,lower,10.032602310180664 +karman_re200,ppo,154,61.6,alpha,front,-2.9847500324249268 +karman_re200,ppo,154,61.6,alpha,upper,0.8904428482055663 +karman_re200,ppo,154,61.6,alpha,lower,9.673488140106201 +karman_re200,ppo,155,62.0,alpha,front,-2.644972085952759 +karman_re200,ppo,155,62.0,alpha,upper,-2.118575096130371 +karman_re200,ppo,155,62.0,alpha,lower,6.419817447662354 +karman_re200,ppo,156,62.4,alpha,front,-1.9940389394760134 +karman_re200,ppo,156,62.4,alpha,upper,-4.303110420703888 +karman_re200,ppo,156,62.4,alpha,lower,3.78322896361351 +karman_re200,ppo,157,62.8,alpha,front,-1.8644139766693115 +karman_re200,ppo,157,62.8,alpha,upper,-3.181277692317962 +karman_re200,ppo,157,62.8,alpha,lower,4.249913573265076 +karman_re200,ppo,158,63.2,alpha,front,-0.1554379016160965 +karman_re200,ppo,158,63.2,alpha,upper,-4.8533788323402405 +karman_re200,ppo,158,63.2,alpha,lower,0.5169563293457031 +karman_re200,ppo,159,63.6,alpha,front,2.375333786010742 +karman_re200,ppo,159,63.6,alpha,upper,-7.705667495727539 +karman_re200,ppo,159,63.6,alpha,lower,-3.6771473884582515 +karman_re200,ppo,160,64.0,alpha,front,3.3204739093780513 +karman_re200,ppo,160,64.0,alpha,upper,-8.226254940032959 +karman_re200,ppo,160,64.0,alpha,lower,-4.0 +karman_re200,ppo,161,64.4,alpha,front,3.5133991241455083 +karman_re200,ppo,161,64.4,alpha,upper,-8.049636840820312 +karman_re200,ppo,161,64.4,alpha,lower,-3.2578954696655273 +karman_re200,ppo,162,64.8,alpha,front,2.9131312370300293 +karman_re200,ppo,162,64.8,alpha,upper,-6.084614038467407 +karman_re200,ppo,162,64.8,alpha,lower,1.1346168518066406 +karman_re200,ppo,163,65.2,alpha,front,2.576582431793213 +karman_re200,ppo,163,65.2,alpha,upper,-5.0048606395721436 +karman_re200,ppo,163,65.2,alpha,lower,4.4192200899124146 +karman_re200,ppo,164,65.6,alpha,front,3.0004496574401855 +karman_re200,ppo,164,65.6,alpha,upper,-5.705933094024658 +karman_re200,ppo,164,65.6,alpha,lower,1.4110708236694336 +karman_re200,ppo,165,66.0,alpha,front,3.4794681072235107 +karman_re200,ppo,165,66.0,alpha,upper,-5.4064719676971436 +karman_re200,ppo,165,66.0,alpha,lower,-0.6619181632995605 +karman_re200,ppo,166,66.4,alpha,front,2.4866867065429688 +karman_re200,ppo,166,66.4,alpha,upper,-2.8312909603118896 +karman_re200,ppo,166,66.4,alpha,lower,2.544157028198242 +karman_re200,ppo,167,66.8,alpha,front,-0.9375351667404176 +karman_re200,ppo,167,66.8,alpha,upper,2.1675643920898438 +karman_re200,ppo,167,66.8,alpha,lower,9.944273471832275 +karman_re200,ppo,168,67.2,alpha,front,-2.595808267593384 +karman_re200,ppo,168,67.2,alpha,upper,2.471792221069336 +karman_re200,ppo,168,67.2,alpha,lower,11.089709758758545 +karman_re200,ppo,169,67.6,alpha,front,-2.9762353897094727 +karman_re200,ppo,169,67.6,alpha,upper,1.7207894325256348 +karman_re200,ppo,169,67.6,alpha,lower,10.604054927825928 +karman_re200,ppo,170,68.0,alpha,front,-3.2289481163024902 +karman_re200,ppo,170,68.0,alpha,upper,0.8131003379821777 +karman_re200,ppo,170,68.0,alpha,lower,9.65361738204956 +karman_re200,ppo,171,68.4,alpha,front,-2.652202844619751 +karman_re200,ppo,171,68.4,alpha,upper,-2.957813858985901 +karman_re200,ppo,171,68.4,alpha,lower,5.610284686088562 +karman_re200,ppo,172,68.8,alpha,front,-2.141890287399292 +karman_re200,ppo,172,68.8,alpha,upper,-3.8819203972816467 +karman_re200,ppo,172,68.8,alpha,lower,4.373134970664978 +karman_re200,ppo,173,69.2,alpha,front,-1.593865156173706 +karman_re200,ppo,173,69.2,alpha,upper,-3.161192536354065 +karman_re200,ppo,173,69.2,alpha,lower,3.8700684309005737 +karman_re200,ppo,174,69.6,alpha,front,0.960571587085724 +karman_re200,ppo,174,69.6,alpha,upper,-6.342548847198487 +karman_re200,ppo,174,69.6,alpha,lower,-1.5160012245178223 +karman_re200,ppo,175,70.0,alpha,front,2.8072500228881836 +karman_re200,ppo,175,70.0,alpha,upper,-8.136467933654785 +karman_re200,ppo,175,70.0,alpha,lower,-4.0 +karman_re200,ppo,176,70.4,alpha,front,3.390836715698242 +karman_re200,ppo,176,70.4,alpha,upper,-8.432048320770264 +karman_re200,ppo,176,70.4,alpha,lower,-4.0 +karman_re200,ppo,177,70.8,alpha,front,3.3303134441375732 +karman_re200,ppo,177,70.8,alpha,upper,-7.784315109252931 +karman_re200,ppo,177,70.8,alpha,lower,-2.4795117378234863 +karman_re200,ppo,178,71.2,alpha,front,2.758840322494507 +karman_re200,ppo,178,71.2,alpha,upper,-5.39959979057312 +karman_re200,ppo,178,71.2,alpha,lower,3.0696403980255127 +karman_re200,ppo,179,71.6,alpha,front,2.5678138732910156 +karman_re200,ppo,179,71.6,alpha,upper,-5.297728776931763 +karman_re200,ppo,179,71.6,alpha,lower,3.8499945402145386 +karman_re200,ppo,180,72.0,alpha,front,3.2007467746734615 +karman_re200,ppo,180,72.0,alpha,upper,-6.093067646026611 +karman_re200,ppo,180,72.0,alpha,lower,0.010843753814697266 +karman_re200,ppo,181,72.4,alpha,front,3.435678243637085 +karman_re200,ppo,181,72.4,alpha,upper,-4.832886040210724 +karman_re200,ppo,181,72.4,alpha,lower,-0.7516660690307617 +karman_re200,ppo,182,72.8,alpha,front,1.1621344089508057 +karman_re200,ppo,182,72.8,alpha,upper,-0.546126127243042 +karman_re200,ppo,182,72.8,alpha,lower,5.6943055391311646 +karman_re200,ppo,183,73.2,alpha,front,-2.0430948734283447 +karman_re200,ppo,183,73.2,alpha,upper,3.29508113861084 +karman_re200,ppo,183,73.2,alpha,lower,11.749144077301025 +karman_re200,ppo,184,73.6,alpha,front,-2.763394594192505 +karman_re200,ppo,184,73.6,alpha,upper,1.6092753410339353 +karman_re200,ppo,184,73.6,alpha,lower,10.646973133087158 +karman_re200,ppo,185,74.0,alpha,front,-3.138279438018799 +karman_re200,ppo,185,74.0,alpha,upper,1.7230854034423828 +karman_re200,ppo,185,74.0,alpha,lower,10.715773105621338 +karman_re200,ppo,186,74.4,alpha,front,-3.137359857559204 +karman_re200,ppo,186,74.4,alpha,upper,-0.25584983825683594 +karman_re200,ppo,186,74.4,alpha,lower,8.602456092834473 +karman_re200,ppo,187,74.8,alpha,front,-2.449273109436035 +karman_re200,ppo,187,74.8,alpha,upper,-3.2892661094665527 +karman_re200,ppo,187,74.8,alpha,lower,5.05853796005249 +karman_re200,ppo,188,75.2,alpha,front,-2.265841007232666 +karman_re200,ppo,188,75.2,alpha,upper,-2.932934284210205 +karman_re200,ppo,188,75.2,alpha,lower,4.821942567825317 +karman_re200,ppo,189,75.6,alpha,front,-1.2149274349212646 +karman_re200,ppo,189,75.6,alpha,upper,-3.359546482563019 +karman_re200,ppo,189,75.6,alpha,lower,2.850531816482544 +karman_re200,ppo,190,76.0,alpha,front,1.4991000890731812 +karman_re200,ppo,190,76.0,alpha,upper,-7.0154218673706055 +karman_re200,ppo,190,76.0,alpha,lower,-2.624307155609131 +karman_re200,ppo,191,76.4,alpha,front,3.0646581649780273 +karman_re200,ppo,191,76.4,alpha,upper,-8.362545013427734 +karman_re200,ppo,191,76.4,alpha,lower,-4.0 +karman_re200,ppo,192,76.8,alpha,front,3.500589609146118 +karman_re200,ppo,192,76.8,alpha,upper,-8.54646110534668 +karman_re200,ppo,192,76.8,alpha,lower,-3.956813335418701 +karman_re200,ppo,193,77.2,alpha,front,3.2056694030761714 +karman_re200,ppo,193,77.2,alpha,upper,-7.547998905181885 +karman_re200,ppo,193,77.2,alpha,lower,-1.9446101188659668 +karman_re200,ppo,194,77.6,alpha,front,2.7150821685791016 +karman_re200,ppo,194,77.6,alpha,upper,-5.180516958236694 +karman_re200,ppo,194,77.6,alpha,lower,3.738671839237213 +karman_re200,ppo,195,78.0,alpha,front,2.6637237071990967 +karman_re200,ppo,195,78.0,alpha,upper,-5.384335041046143 +karman_re200,ppo,195,78.0,alpha,lower,3.445629417896271 +karman_re200,ppo,196,78.4,alpha,front,3.276355028152466 +karman_re200,ppo,196,78.4,alpha,upper,-6.010766506195068 +karman_re200,ppo,196,78.4,alpha,lower,-0.1346898078918457 +karman_re200,ppo,197,78.8,alpha,front,3.266455888748169 +karman_re200,ppo,197,78.8,alpha,upper,-4.368944585323334 +karman_re200,ppo,197,78.8,alpha,lower,-0.0028867721557617188 +karman_re200,ppo,198,79.2,alpha,front,0.6578947901725769 +karman_re200,ppo,198,79.2,alpha,upper,0.15179681777954102 +karman_re200,ppo,198,79.2,alpha,lower,6.7981014251708975 +karman_re200,ppo,199,79.6,alpha,front,-2.2400810718536377 +karman_re200,ppo,199,79.6,alpha,upper,3.133373737335205 +karman_re200,ppo,199,79.6,alpha,lower,11.566600322723389 +karman_re200,ppo,200,80.0,alpha,front,-2.833597421646118 +karman_re200,ppo,200,80.0,alpha,upper,1.5368151664733887 +karman_re200,ppo,200,80.0,alpha,lower,10.447930335998535 +karman_re200,ppo,201,80.4,alpha,front,-3.2051627635955806 +karman_re200,ppo,201,80.4,alpha,upper,1.5779380798339844 +karman_re200,ppo,201,80.4,alpha,lower,10.542958736419678 +karman_re200,ppo,202,80.8,alpha,front,-3.064803123474121 +karman_re200,ppo,202,80.8,alpha,upper,-0.9789390563964844 +karman_re200,ppo,202,80.8,alpha,lower,7.922443389892577 +karman_re200,ppo,203,81.2,alpha,front,-2.400796413421631 +karman_re200,ppo,203,81.2,alpha,upper,-3.4938370585441585 +karman_re200,ppo,203,81.2,alpha,lower,4.80351984500885 +karman_re200,ppo,204,81.6,alpha,front,-2.280052423477173 +karman_re200,ppo,204,81.6,alpha,upper,-2.6277931928634644 +karman_re200,ppo,204,81.6,alpha,lower,4.892872095108032 +karman_re200,ppo,205,82.0,alpha,front,-0.8810591697692871 +karman_re200,ppo,205,82.0,alpha,upper,-3.69137716293335 +karman_re200,ppo,205,82.0,alpha,lower,2.0953986644744873 +karman_re200,ppo,206,82.4,alpha,front,1.9103112220764158 +karman_re200,ppo,206,82.4,alpha,upper,-7.446452617645263 +karman_re200,ppo,206,82.4,alpha,lower,-3.318843364715576 +karman_re200,ppo,207,82.8,alpha,front,3.268626689910889 +karman_re200,ppo,207,82.8,alpha,upper,-8.55890941619873 +karman_re200,ppo,207,82.8,alpha,lower,-4.0 +karman_re200,ppo,208,83.2,alpha,front,3.594228744506836 +karman_re200,ppo,208,83.2,alpha,upper,-8.698554039001465 +karman_re200,ppo,208,83.2,alpha,lower,-4.0 +karman_re200,ppo,209,83.6,alpha,front,3.1136040687561035 +karman_re200,ppo,209,83.6,alpha,upper,-7.2573347091674805 +karman_re200,ppo,209,83.6,alpha,lower,-1.3235397338867188 +karman_re200,ppo,210,84.0,alpha,front,2.6836397647857666 +karman_re200,ppo,210,84.0,alpha,upper,-5.039653301239014 +karman_re200,ppo,210,84.0,alpha,lower,4.253367304801941 +karman_re200,ppo,211,84.4,alpha,front,2.799726963043213 +karman_re200,ppo,211,84.4,alpha,upper,-5.509545564651489 +karman_re200,ppo,211,84.4,alpha,lower,2.9416282176971436 +karman_re200,ppo,212,84.8,alpha,front,3.3455862998962402 +karman_re200,ppo,212,84.8,alpha,upper,-5.821516275405884 +karman_re200,ppo,212,84.8,alpha,lower,-0.12307500839233398 +karman_re200,ppo,213,85.2,alpha,front,2.9167866706848145 +karman_re200,ppo,213,85.2,alpha,upper,-3.7430260777473454 +karman_re200,ppo,213,85.2,alpha,lower,1.0701651573181152 +karman_re200,ppo,214,85.6,alpha,front,-0.14153604209423065 +karman_re200,ppo,214,85.6,alpha,upper,1.1713004112243652 +karman_re200,ppo,214,85.6,alpha,lower,8.191174983978271 +karman_re200,ppo,215,86.0,alpha,front,-2.296935558319092 +karman_re200,ppo,215,86.0,alpha,upper,2.6518826484680176 +karman_re200,ppo,215,86.0,alpha,lower,10.94566535949707 +karman_re200,ppo,216,86.4,alpha,front,-2.75742244720459 +karman_re200,ppo,216,86.4,alpha,upper,1.4614605903625488 +karman_re200,ppo,216,86.4,alpha,lower,10.149928092956543 +karman_re200,ppo,217,86.8,alpha,front,-3.1348128318786626 +karman_re200,ppo,217,86.8,alpha,upper,1.0674591064453125 +karman_re200,ppo,217,86.8,alpha,lower,9.962105751037598 +karman_re200,ppo,218,87.2,alpha,front,-2.8305163383483887 +karman_re200,ppo,218,87.2,alpha,upper,-1.9894466400146484 +karman_re200,ppo,218,87.2,alpha,lower,6.816705703735351 +karman_re200,ppo,219,87.6,alpha,front,-2.183708429336548 +karman_re200,ppo,219,87.6,alpha,upper,-3.9466030597686768 +karman_re200,ppo,219,87.6,alpha,lower,4.288156509399414 +karman_re200,ppo,220,88.0,alpha,front,-2.1300535202026367 +karman_re200,ppo,220,88.0,alpha,upper,-2.6023073196411133 +karman_re200,ppo,220,88.0,alpha,lower,4.761425018310547 +karman_re200,ppo,221,88.4,alpha,front,-0.46419620513916016 +karman_re200,ppo,221,88.4,alpha,upper,-4.202933192253113 +karman_re200,ppo,221,88.4,alpha,lower,1.0672521591186523 +karman_re200,ppo,222,88.8,alpha,front,2.2346484661102295 +karman_re200,ppo,222,88.8,alpha,upper,-7.657475471496582 +karman_re200,ppo,222,88.8,alpha,lower,-3.7238330841064453 +karman_re200,ppo,223,89.2,alpha,front,3.3908746242523193 +karman_re200,ppo,223,89.2,alpha,upper,-8.549089908599854 +karman_re200,ppo,223,89.2,alpha,lower,-4.0 +karman_re200,ppo,224,89.6,alpha,front,3.615790605545044 +karman_re200,ppo,224,89.6,alpha,upper,-8.466854095458984 +karman_re200,ppo,224,89.6,alpha,lower,-3.798339366912842 +karman_re200,ppo,225,90.0,alpha,front,3.025477170944214 +karman_re200,ppo,225,90.0,alpha,upper,-6.604900121688844 +karman_re200,ppo,225,90.0,alpha,lower,-0.06477117538452148 +karman_re200,ppo,226,90.4,alpha,front,2.6713805198669434 +karman_re200,ppo,226,90.4,alpha,upper,-4.9524577260017395 +karman_re200,ppo,226,90.4,alpha,lower,4.473227024078369 +karman_re200,ppo,227,90.8,alpha,front,2.9420053958892822 +karman_re200,ppo,227,90.8,alpha,upper,-5.5113866329193115 +karman_re200,ppo,227,90.8,alpha,lower,2.313270092010498 +karman_re200,ppo,228,91.2,alpha,front,3.362826824188232 +karman_re200,ppo,228,91.2,alpha,upper,-5.446143627166748 +karman_re200,ppo,228,91.2,alpha,lower,-0.017448902130126953 +karman_re200,ppo,229,91.6,alpha,front,2.2533624172210693 +karman_re200,ppo,229,91.6,alpha,upper,-2.6843924522399902 +karman_re200,ppo,229,91.6,alpha,lower,2.6672319173812866 +karman_re200,ppo,230,92.0,alpha,front,-0.9390276074409485 +karman_re200,ppo,230,92.0,alpha,upper,2.0095043182373047 +karman_re200,ppo,230,92.0,alpha,lower,9.316453456878662 +karman_re200,ppo,231,92.4,alpha,front,-2.290195941925049 +karman_re200,ppo,231,92.4,alpha,upper,2.0398244857788086 +karman_re200,ppo,231,92.4,alpha,lower,10.18937873840332 +karman_re200,ppo,232,92.8,alpha,front,-2.714176893234253 +karman_re200,ppo,232,92.8,alpha,upper,1.4050564765930176 +karman_re200,ppo,232,92.8,alpha,lower,9.946938037872314 +karman_re200,ppo,233,93.2,alpha,front,-2.9980111122131348 +karman_re200,ppo,233,93.2,alpha,upper,0.2980022430419922 +karman_re200,ppo,233,93.2,alpha,lower,9.118805885314941 +karman_re200,ppo,234,93.6,alpha,front,-2.498112916946411 +karman_re200,ppo,234,93.6,alpha,upper,-3.1410396099090576 +karman_re200,ppo,234,93.6,alpha,lower,5.366989254951477 +karman_re200,ppo,235,94.0,alpha,front,-1.9811017513275149 +karman_re200,ppo,235,94.0,alpha,upper,-4.191467344760895 +karman_re200,ppo,235,94.0,alpha,lower,4.056947588920593 +karman_re200,ppo,236,94.4,alpha,front,-1.7291676998138428 +karman_re200,ppo,236,94.4,alpha,upper,-2.909222364425659 +karman_re200,ppo,236,94.4,alpha,lower,4.148182809352875 +karman_re200,ppo,237,94.8,alpha,front,0.5344220399856567 +karman_re200,ppo,237,94.8,alpha,upper,-5.549297332763672 +karman_re200,ppo,237,94.8,alpha,lower,-0.7273378372192383 +karman_re200,ppo,238,95.2,alpha,front,2.793092727661133 +karman_re200,ppo,238,95.2,alpha,upper,-8.081272602081299 +karman_re200,ppo,238,95.2,alpha,lower,-4.0 +karman_re200,ppo,239,95.6,alpha,front,3.4343776702880855 +karman_re200,ppo,239,95.6,alpha,upper,-8.338884830474854 +karman_re200,ppo,239,95.6,alpha,lower,-4.0 +karman_re200,ppo,240,96.0,alpha,front,3.430510997772217 +karman_re200,ppo,240,96.0,alpha,upper,-7.943530559539795 +karman_re200,ppo,240,96.0,alpha,lower,-2.8665971755981445 +karman_re200,ppo,241,96.4,alpha,front,2.845227003097534 +karman_re200,ppo,241,96.4,alpha,upper,-5.704620599746704 +karman_re200,ppo,241,96.4,alpha,lower,2.132489562034607 +karman_re200,ppo,242,96.8,alpha,front,2.6286215782165527 +karman_re200,ppo,242,96.8,alpha,upper,-5.1667022705078125 +karman_re200,ppo,242,96.8,alpha,lower,3.8848733305931087 +karman_re200,ppo,243,97.2,alpha,front,3.1947946548461914 +karman_re200,ppo,243,97.2,alpha,upper,-5.889587640762329 +karman_re200,ppo,243,97.2,alpha,lower,0.4747052192687989 +karman_re200,ppo,244,97.6,alpha,front,3.4692635536193843 +karman_re200,ppo,244,97.6,alpha,upper,-4.966271698474884 +karman_re200,ppo,244,97.6,alpha,lower,-0.5215554237365723 +karman_re200,ppo,245,98.0,alpha,front,1.2350713014602661 +karman_re200,ppo,245,98.0,alpha,upper,-0.7500710487365723 +karman_re200,ppo,245,98.0,alpha,lower,5.448288321495056 +karman_re200,ppo,246,98.4,alpha,front,-1.8961621522903445 +karman_re200,ppo,246,98.4,alpha,upper,3.122565269470215 +karman_re200,ppo,246,98.4,alpha,lower,11.306183338165283 +karman_re200,ppo,247,98.8,alpha,front,-2.53590989112854 +karman_re200,ppo,247,98.8,alpha,upper,1.5603852272033691 +karman_re200,ppo,247,98.8,alpha,lower,10.220361232757568 +karman_re200,ppo,248,99.2,alpha,front,-2.920224905014038 +karman_re200,ppo,248,99.2,alpha,upper,1.5729155540466309 +karman_re200,ppo,248,99.2,alpha,lower,10.318241119384766 +karman_re200,ppo,249,99.6,alpha,front,-2.965869188308716 +karman_re200,ppo,249,99.6,alpha,upper,-0.3421149253845215 +karman_re200,ppo,249,99.6,alpha,lower,8.404096603393555 +karman_re200,ppo,250,100.0,alpha,front,-2.290299654006958 +karman_re200,ppo,250,100.0,alpha,upper,-3.5604248046875 +karman_re200,ppo,250,100.0,alpha,lower,4.693601608276367 +karman_re200,ppo,251,100.4,alpha,front,-2.07517671585083 +karman_re200,ppo,251,100.4,alpha,upper,-3.281221389770508 +karman_re200,ppo,251,100.4,alpha,lower,4.574880123138428 +karman_re200,ppo,252,100.8,alpha,front,-1.0012542009353638 +karman_re200,ppo,252,100.8,alpha,upper,-3.65972426533699 +karman_re200,ppo,252,100.8,alpha,lower,2.567641258239746 +karman_re200,ppo,253,101.2,alpha,front,1.6676458120346067 +karman_re200,ppo,253,101.2,alpha,upper,-7.093443632125855 +karman_re200,ppo,253,101.2,alpha,lower,-2.6474928855895996 +karman_re200,ppo,254,101.6,alpha,front,3.0459821224212646 +karman_re200,ppo,254,101.6,alpha,upper,-8.186750411987305 +karman_re200,ppo,254,101.6,alpha,lower,-4.0 +karman_re200,ppo,255,102.0,alpha,front,3.4338963031768803 +karman_re200,ppo,255,102.0,alpha,upper,-8.261795997619629 +karman_re200,ppo,255,102.0,alpha,lower,-3.6384119987487793 +karman_re200,ppo,256,102.4,alpha,front,3.0530381202697754 +karman_re200,ppo,256,102.4,alpha,upper,-7.166872978210449 +karman_re200,ppo,256,102.4,alpha,lower,-1.2239537239074707 +karman_re200,ppo,257,102.8,alpha,front,2.5709736347198486 +karman_re200,ppo,257,102.8,alpha,upper,-4.915827095508575 +karman_re200,ppo,257,102.8,alpha,lower,4.2730912566185 +karman_re200,ppo,258,103.2,alpha,front,2.5869603157043457 +karman_re200,ppo,258,103.2,alpha,upper,-5.2871809005737305 +karman_re200,ppo,258,103.2,alpha,lower,3.1262195110321045 +karman_re200,ppo,259,103.6,alpha,front,3.165528535842896 +karman_re200,ppo,259,103.6,alpha,upper,-5.726069450378418 +karman_re200,ppo,259,103.6,alpha,lower,-0.23764657974243167 +karman_re200,ppo,260,104.0,alpha,front,2.980952262878418 +karman_re200,ppo,260,104.0,alpha,upper,-3.855261266231537 +karman_re200,ppo,260,104.0,alpha,lower,0.29512453079223633 +karman_re200,ppo,261,104.4,alpha,front,0.6519811749458313 +karman_re200,ppo,261,104.4,alpha,upper,0.12672662734985352 +karman_re200,ppo,261,104.4,alpha,lower,6.515645980834961 +karman_re200,ppo,262,104.8,alpha,front,-1.9844979047775269 +karman_re200,ppo,262,104.8,alpha,upper,2.9026403427124023 +karman_re200,ppo,262,104.8,alpha,lower,10.92133903503418 +karman_re200,ppo,263,105.2,alpha,front,-2.751969575881958 +karman_re200,ppo,263,105.2,alpha,upper,1.5952749252319338 +karman_re200,ppo,263,105.2,alpha,lower,10.225899696350098 +karman_re200,ppo,264,105.6,alpha,front,-3.1718857288360596 +karman_re200,ppo,264,105.6,alpha,upper,1.5428075790405273 +karman_re200,ppo,264,105.6,alpha,lower,10.221398830413818 +karman_re200,ppo,265,106.0,alpha,front,-3.0350794792175293 +karman_re200,ppo,265,106.0,alpha,upper,-1.0191242694854736 +karman_re200,ppo,265,106.0,alpha,lower,7.728356838226319 +karman_re200,ppo,266,106.4,alpha,front,-2.342298746109009 +karman_re200,ppo,266,106.4,alpha,upper,-3.688495218753815 +karman_re200,ppo,266,106.4,alpha,lower,4.673303008079529 +karman_re200,ppo,267,106.8,alpha,front,-2.192939043045044 +karman_re200,ppo,267,106.8,alpha,upper,-2.8842570781707764 +karman_re200,ppo,267,106.8,alpha,lower,4.8848395347595215 +karman_re200,ppo,268,107.2,alpha,front,-0.7642239928245544 +karman_re200,ppo,268,107.2,alpha,upper,-3.957149624824524 +karman_re200,ppo,268,107.2,alpha,lower,1.9455890655517578 +karman_re200,ppo,269,107.6,alpha,front,1.8821315765380862 +karman_re200,ppo,269,107.6,alpha,upper,-7.33243989944458 +karman_re200,ppo,269,107.6,alpha,lower,-3.0651674270629883 +karman_re200,ppo,270,108.0,alpha,front,3.116940498352051 +karman_re200,ppo,270,108.0,alpha,upper,-8.282243728637695 +karman_re200,ppo,270,108.0,alpha,lower,-4.0 +karman_re200,ppo,271,108.4,alpha,front,3.526085138320923 +karman_re200,ppo,271,108.4,alpha,upper,-8.456897735595703 +karman_re200,ppo,271,108.4,alpha,lower,-3.8121767044067383 +karman_re200,ppo,272,108.8,alpha,front,3.0681352615356445 +karman_re200,ppo,272,108.8,alpha,upper,-7.102796316146851 +karman_re200,ppo,272,108.8,alpha,lower,-0.9848518371582031 +karman_re200,ppo,273,109.2,alpha,front,2.626514196395874 +karman_re200,ppo,273,109.2,alpha,upper,-5.000821113586426 +karman_re200,ppo,273,109.2,alpha,lower,4.432263612747192 +karman_re200,ppo,274,109.6,alpha,front,2.7612979412078857 +karman_re200,ppo,274,109.6,alpha,upper,-5.55817174911499 +karman_re200,ppo,274,109.6,alpha,lower,2.8049299716949463 +karman_re200,ppo,275,110.0,alpha,front,3.3028955459594727 +karman_re200,ppo,275,110.0,alpha,upper,-5.833615064620972 +karman_re200,ppo,275,110.0,alpha,lower,-0.17933034896850586 +karman_re200,ppo,276,110.4,alpha,front,2.634140729904175 +karman_re200,ppo,276,110.4,alpha,upper,-3.302884459495545 +karman_re200,ppo,276,110.4,alpha,lower,1.5679321289062498 +karman_re200,ppo,277,110.8,alpha,front,-0.40692126750946045 +karman_re200,ppo,277,110.8,alpha,upper,1.52897310256958 +karman_re200,ppo,277,110.8,alpha,lower,8.485233783721924 +karman_re200,ppo,278,111.2,alpha,front,-2.2495079040527344 +karman_re200,ppo,278,111.2,alpha,upper,2.4545674324035645 +karman_re200,ppo,278,111.2,alpha,lower,10.60470724105835 +karman_re200,ppo,279,111.6,alpha,front,-2.672694206237793 +karman_re200,ppo,279,111.6,alpha,upper,1.4235572814941406 +karman_re200,ppo,279,111.6,alpha,lower,9.960132598876953 +karman_re200,ppo,280,112.0,alpha,front,-3.030282735824585 +karman_re200,ppo,280,112.0,alpha,upper,0.8069534301757812 +karman_re200,ppo,280,112.0,alpha,lower,9.590163230895996 +karman_re200,ppo,281,112.4,alpha,front,-2.6929311752319336 +karman_re200,ppo,281,112.4,alpha,upper,-2.2377010583877563 +karman_re200,ppo,281,112.4,alpha,lower,6.458858966827393 +karman_re200,ppo,282,112.8,alpha,front,-2.127995252609253 +karman_re200,ppo,282,112.8,alpha,upper,-3.9097793102264404 +karman_re200,ppo,282,112.8,alpha,lower,4.288215458393097 +karman_re200,ppo,283,113.2,alpha,front,-2.1004462242126465 +karman_re200,ppo,283,113.2,alpha,upper,-2.55433988571167 +karman_re200,ppo,283,113.2,alpha,lower,4.710995316505432 +karman_re200,ppo,284,113.6,alpha,front,-0.38299673795700073 +karman_re200,ppo,284,113.6,alpha,upper,-4.402406632900238 +karman_re200,ppo,284,113.6,alpha,lower,0.7581095695495605 +karman_re200,ppo,285,114.0,alpha,front,2.2697362899780273 +karman_re200,ppo,285,114.0,alpha,upper,-7.756394386291504 +karman_re200,ppo,285,114.0,alpha,lower,-3.7932028770446773 +karman_re200,ppo,286,114.4,alpha,front,3.2830638885498042 +karman_re200,ppo,286,114.4,alpha,upper,-8.320012092590332 +karman_re200,ppo,286,114.4,alpha,lower,-4.0 +karman_re200,ppo,287,114.8,alpha,front,3.5262792110443115 +karman_re200,ppo,287,114.8,alpha,upper,-8.313589572906494 +karman_re200,ppo,287,114.8,alpha,lower,-3.529661655426025 +karman_re200,ppo,288,115.2,alpha,front,2.949754238128662 +karman_re200,ppo,288,115.2,alpha,upper,-6.526666164398194 +karman_re200,ppo,288,115.2,alpha,lower,0.17579126358032227 +karman_re200,ppo,289,115.6,alpha,front,2.595921277999878 +karman_re200,ppo,289,115.6,alpha,upper,-4.967837870121002 +karman_re200,ppo,289,115.6,alpha,lower,4.478931427001953 +karman_re200,ppo,290,116.0,alpha,front,2.9240291118621826 +karman_re200,ppo,290,116.0,alpha,upper,-5.556101560592651 +karman_re200,ppo,290,116.0,alpha,lower,2.1363998651504517 +karman_re200,ppo,291,116.4,alpha,front,3.3778445720672607 +karman_re200,ppo,291,116.4,alpha,upper,-5.468176603317261 +karman_re200,ppo,291,116.4,alpha,lower,-0.12616586685180664 +karman_re200,ppo,292,116.8,alpha,front,2.3119544982910156 +karman_re200,ppo,292,116.8,alpha,upper,-2.730376958847046 +karman_re200,ppo,292,116.8,alpha,lower,2.646973967552185 +karman_re200,ppo,293,117.2,alpha,front,-0.9163829684257508 +karman_re200,ppo,293,117.2,alpha,upper,2.0254569053649902 +karman_re200,ppo,293,117.2,alpha,lower,9.339211463928223 +karman_re200,ppo,294,117.6,alpha,front,-2.3040359020233154 +karman_re200,ppo,294,117.6,alpha,upper,2.1404476165771484 +karman_re200,ppo,294,117.6,alpha,lower,10.241681098937988 +karman_re200,ppo,295,118.0,alpha,front,-2.690281867980957 +karman_re200,ppo,295,118.0,alpha,upper,1.4622011184692383 +karman_re200,ppo,295,118.0,alpha,lower,9.923223972320557 +karman_re200,ppo,296,118.4,alpha,front,-2.9815540313720703 +karman_re200,ppo,296,118.4,alpha,upper,0.40968513488769526 +karman_re200,ppo,296,118.4,alpha,lower,9.16221284866333 +karman_re200,ppo,297,118.8,alpha,front,-2.5035338401794434 +karman_re200,ppo,297,118.8,alpha,upper,-2.943534255027771 +karman_re200,ppo,297,118.8,alpha,lower,5.531235575675964 +karman_re200,ppo,298,119.2,alpha,front,-2.0045127868652344 +karman_re200,ppo,298,119.2,alpha,upper,-3.9813019037246704 +karman_re200,ppo,298,119.2,alpha,lower,4.140835225582123 +karman_re200,ppo,299,119.6,alpha,front,-1.7145862579345705 +karman_re200,ppo,299,119.6,alpha,upper,-2.821414351463318 +karman_re200,ppo,299,119.6,alpha,lower,4.1164790391922 +karman_re200,ppo,300,120.0,alpha,front,0.5827085971832275 +karman_re200,ppo,300,120.0,alpha,upper,-5.594348669052124 +karman_re200,ppo,300,120.0,alpha,lower,-0.8005876541137695 +karman_re200,ppo,301,120.4,alpha,front,2.761061429977417 +karman_re200,ppo,301,120.4,alpha,upper,-8.075479507446289 +karman_re200,ppo,301,120.4,alpha,lower,-4.0 +karman_re200,ppo,302,120.8,alpha,front,3.338388442993164 +karman_re200,ppo,302,120.8,alpha,upper,-8.28261947631836 +karman_re200,ppo,302,120.8,alpha,lower,-3.923649311065674 +karman_re200,ppo,303,121.2,alpha,front,3.358229398727417 +karman_re200,ppo,303,121.2,alpha,upper,-7.941092014312743 +karman_re200,ppo,303,121.2,alpha,lower,-2.752765655517578 +karman_re200,ppo,304,121.6,alpha,front,2.7713782787323 +karman_re200,ppo,304,121.6,alpha,upper,-5.674699544906616 +karman_re200,ppo,304,121.6,alpha,lower,2.1813734769821167 +karman_re200,ppo,305,122.0,alpha,front,2.5259268283843994 +karman_re200,ppo,305,122.0,alpha,upper,-5.051071882247925 +karman_re200,ppo,305,122.0,alpha,lower,4.101012587547302 +karman_re200,ppo,306,122.4,alpha,front,3.059588670730591 +karman_re200,ppo,306,122.4,alpha,upper,-5.73576283454895 +karman_re200,ppo,306,122.4,alpha,lower,0.8177471160888672 +karman_re200,ppo,307,122.8,alpha,front,3.313466787338257 +karman_re200,ppo,307,122.8,alpha,upper,-4.825107157230377 +karman_re200,ppo,307,122.8,alpha,lower,-0.2559666633605957 +karman_re200,ppo,308,123.2,alpha,front,1.3103892803192139 +karman_re200,ppo,308,123.2,alpha,upper,-0.9972457885742189 +karman_re200,ppo,308,123.2,alpha,lower,4.949568510055542 +karman_re200,ppo,309,123.6,alpha,front,-1.7700570821762085 +karman_re200,ppo,309,123.6,alpha,upper,2.9008493423461914 +karman_re200,ppo,309,123.6,alpha,lower,10.651328086853027 +karman_re200,ppo,310,124.0,alpha,front,-2.481517791748047 +karman_re200,ppo,310,124.0,alpha,upper,1.6090683937072754 +karman_re200,ppo,310,124.0,alpha,lower,9.898599624633789 +karman_re200,ppo,311,124.4,alpha,front,-2.8585169315338135 +karman_re200,ppo,311,124.4,alpha,upper,1.412043571472168 +karman_re200,ppo,311,124.4,alpha,lower,9.980263233184814 +karman_re200,ppo,312,124.8,alpha,front,-2.9335319995880127 +karman_re200,ppo,312,124.8,alpha,upper,-0.3598456382751465 +karman_re200,ppo,312,124.8,alpha,lower,8.415570735931396 +karman_re200,ppo,313,125.2,alpha,front,-2.294571876525879 +karman_re200,ppo,313,125.2,alpha,upper,-3.512995094060898 +karman_re200,ppo,313,125.2,alpha,lower,4.790174603462219 +karman_re200,ppo,314,125.6,alpha,front,-2.0379559993743896 +karman_re200,ppo,314,125.6,alpha,upper,-3.3320858478546143 +karman_re200,ppo,314,125.6,alpha,lower,4.536744952201843 +karman_re200,ppo,315,126.0,alpha,front,-1.4062575101852417 +karman_re200,ppo,315,126.0,alpha,upper,-2.957556962966919 +karman_re200,ppo,315,126.0,alpha,lower,3.292806386947632 +karman_re200,ppo,316,126.4,alpha,front,1.1635017395019531 +karman_re200,ppo,316,126.4,alpha,upper,-6.412250518798829 +karman_re200,ppo,316,126.4,alpha,lower,-1.909501552581787 +karman_re200,ppo,317,126.8,alpha,front,2.9911181926727295 +karman_re200,ppo,317,126.8,alpha,upper,-8.284480571746826 +karman_re200,ppo,317,126.8,alpha,lower,-4.0 +karman_re200,ppo,318,127.2,alpha,front,3.404843330383301 +karman_re200,ppo,318,127.2,alpha,upper,-8.2530837059021 +karman_re200,ppo,318,127.2,alpha,lower,-3.709597110748291 +karman_re200,ppo,319,127.6,alpha,front,3.2163438796997066 +karman_re200,ppo,319,127.6,alpha,upper,-7.555470943450927 +karman_re200,ppo,319,127.6,alpha,lower,-2.020421028137207 +karman_re200,ppo,320,128.0,alpha,front,2.701747179031372 +karman_re200,ppo,320,128.0,alpha,upper,-5.207448244094849 +karman_re200,ppo,320,128.0,alpha,lower,3.289626717567444 +karman_re200,ppo,321,128.4,alpha,front,2.5569684505462646 +karman_re200,ppo,321,128.4,alpha,upper,-5.079813241958618 +karman_re200,ppo,321,128.4,alpha,lower,3.6772326231002808 +karman_re200,ppo,322,128.8,alpha,front,3.0797605514526367 +karman_re200,ppo,322,128.8,alpha,upper,-5.6631200313568115 +karman_re200,ppo,322,128.8,alpha,lower,0.33713626861572266 +karman_re200,ppo,323,129.2,alpha,front,3.0328869819641113 +karman_re200,ppo,323,129.2,alpha,upper,-4.118809223175049 +karman_re200,ppo,323,129.2,alpha,lower,0.17732906341552734 +karman_re200,ppo,324,129.6,alpha,front,0.786616027355194 +karman_re200,ppo,324,129.6,alpha,upper,-0.17083263397216797 +karman_re200,ppo,324,129.6,alpha,lower,5.866034150123596 +karman_re200,ppo,325,130.0,alpha,front,-1.911849856376648 +karman_re200,ppo,325,130.0,alpha,upper,2.86806058883667 +karman_re200,ppo,325,130.0,alpha,lower,10.589025974273682 +karman_re200,ppo,326,130.4,alpha,front,-2.587656021118164 +karman_re200,ppo,326,130.4,alpha,upper,1.5311341285705566 +karman_re200,ppo,326,130.4,alpha,lower,9.861546516418457 +karman_re200,ppo,327,130.8,alpha,front,-2.9835703372955322 +karman_re200,ppo,327,130.8,alpha,upper,1.3401775360107422 +karman_re200,ppo,327,130.8,alpha,lower,9.919824600219727 +karman_re200,ppo,328,131.2,alpha,front,-2.8988378047943115 +karman_re200,ppo,328,131.2,alpha,upper,-0.9325504302978516 +karman_re200,ppo,328,131.2,alpha,lower,7.757498264312744 +karman_re200,ppo,329,131.6,alpha,front,-2.229762554168701 +karman_re200,ppo,329,131.6,alpha,upper,-3.7466725111007686 +karman_re200,ppo,329,131.6,alpha,lower,4.451907753944397 +karman_re200,ppo,330,132.0,alpha,front,-2.0594449043273926 +karman_re200,ppo,330,132.0,alpha,upper,-3.1183598041534424 +karman_re200,ppo,330,132.0,alpha,lower,4.589170694351196 +karman_re200,ppo,331,132.4,alpha,front,-1.046034336090088 +karman_re200,ppo,331,132.4,alpha,upper,-3.4614198803901672 +karman_re200,ppo,331,132.4,alpha,lower,2.4502837657928467 +karman_re200,ppo,332,132.8,alpha,front,1.6250584125518799 +karman_re200,ppo,332,132.8,alpha,upper,-6.951884269714356 +karman_re200,ppo,332,132.8,alpha,lower,-2.6484856605529785 +karman_re200,ppo,333,133.2,alpha,front,3.1401407718658443 +karman_re200,ppo,333,133.2,alpha,upper,-8.335700035095215 +karman_re200,ppo,333,133.2,alpha,lower,-4.0 +karman_re200,ppo,334,133.6,alpha,front,3.490298271179199 +karman_re200,ppo,334,133.6,alpha,upper,-8.310871601104736 +karman_re200,ppo,334,133.6,alpha,lower,-3.732995510101318 +karman_re200,ppo,335,134.0,alpha,front,3.118865728378296 +karman_re200,ppo,335,134.0,alpha,upper,-7.198493242263794 +karman_re200,ppo,335,134.0,alpha,lower,-1.312985897064209 +karman_re200,ppo,336,134.4,alpha,front,2.668314218521118 +karman_re200,ppo,336,134.4,alpha,upper,-5.000329256057739 +karman_re200,ppo,336,134.4,alpha,lower,4.031141936779022 +karman_re200,ppo,337,134.8,alpha,front,2.6970460414886475 +karman_re200,ppo,337,134.8,alpha,upper,-5.326237678527832 +karman_re200,ppo,337,134.8,alpha,lower,3.023903965950012 +karman_re200,ppo,338,135.2,alpha,front,3.2461793422698975 +karman_re200,ppo,338,135.2,alpha,upper,-5.756520509719849 +karman_re200,ppo,338,135.2,alpha,lower,-0.1477832794189453 +karman_re200,ppo,339,135.6,alpha,front,2.9681153297424316 +karman_re200,ppo,339,135.6,alpha,upper,-3.8517348766326904 +karman_re200,ppo,339,135.6,alpha,lower,0.6242833137512207 +karman_re200,ppo,340,136.0,alpha,front,0.16826431453227997 +karman_re200,ppo,340,136.0,alpha,upper,0.7806353569030762 +karman_re200,ppo,340,136.0,alpha,lower,7.400072574615478 +karman_re200,ppo,341,136.4,alpha,front,-2.2657084465026855 +karman_re200,ppo,341,136.4,alpha,upper,2.9811625480651855 +karman_re200,ppo,341,136.4,alpha,lower,11.08859920501709 +karman_re200,ppo,342,136.8,alpha,front,-2.7602546215057373 +karman_re200,ppo,342,136.8,alpha,upper,1.5550880432128906 +karman_re200,ppo,342,136.8,alpha,lower,10.184145450592041 +karman_re200,ppo,343,137.2,alpha,front,-3.104063034057617 +karman_re200,ppo,343,137.2,alpha,upper,1.2879204750061035 +karman_re200,ppo,343,137.2,alpha,lower,10.046777725219727 +karman_re200,ppo,344,137.6,alpha,front,-2.8473923206329346 +karman_re200,ppo,344,137.6,alpha,upper,-1.578517198562622 +karman_re200,ppo,344,137.6,alpha,lower,7.1586713790893555 +karman_re200,ppo,345,138.0,alpha,front,-2.184527635574341 +karman_re200,ppo,345,138.0,alpha,upper,-3.8504202961921687 +karman_re200,ppo,345,138.0,alpha,lower,4.329675316810608 +karman_re200,ppo,346,138.4,alpha,front,-2.0774481296539307 +karman_re200,ppo,346,138.4,alpha,upper,-2.8284735679626465 +karman_re200,ppo,346,138.4,alpha,lower,4.630369782447815 +karman_re200,ppo,347,138.8,alpha,front,-0.5551364421844482 +karman_re200,ppo,347,138.8,alpha,upper,-4.194292783737183 +karman_re200,ppo,347,138.8,alpha,lower,1.3107361793518066 +karman_re200,ppo,348,139.2,alpha,front,2.0961873531341553 +karman_re200,ppo,348,139.2,alpha,upper,-7.519354820251466 +karman_re200,ppo,348,139.2,alpha,lower,-3.4426169395446777 +karman_re200,ppo,349,139.6,alpha,front,3.2818536758422856 +karman_re200,ppo,349,139.6,alpha,upper,-8.391587734222412 +karman_re200,ppo,349,139.6,alpha,lower,-4.0 +karman_re200,ppo,350,140.0,alpha,front,3.5617828369140625 +karman_re200,ppo,350,140.0,alpha,upper,-8.36033821105957 +karman_re200,ppo,350,140.0,alpha,lower,-3.7024397850036626 +karman_re200,ppo,351,140.4,alpha,front,3.003079652786255 +karman_re200,ppo,351,140.4,alpha,upper,-6.69290018081665 +karman_re200,ppo,351,140.4,alpha,lower,-0.2203240394592285 +karman_re200,ppo,352,140.8,alpha,front,2.608440637588501 +karman_re200,ppo,352,140.8,alpha,upper,-4.947242796421051 +karman_re200,ppo,352,140.8,alpha,lower,4.523372769355774 +karman_re200,ppo,353,141.2,alpha,front,2.888082265853882 +karman_re200,ppo,353,141.2,alpha,upper,-5.566745042800903 +karman_re200,ppo,353,141.2,alpha,lower,2.253997325897217 +karman_re200,ppo,354,141.6,alpha,front,3.42514181137085 +karman_re200,ppo,354,141.6,alpha,upper,-5.67223858833313 +karman_re200,ppo,354,141.6,alpha,lower,-0.41400480270385737 +karman_re200,ppo,355,142.0,alpha,front,2.7424073219299316 +karman_re200,ppo,355,142.0,alpha,upper,-3.3797791004180904 +karman_re200,ppo,355,142.0,alpha,lower,1.6359024047851562 +karman_re200,ppo,356,142.4,alpha,front,-0.5088571906089783 +karman_re200,ppo,356,142.4,alpha,upper,1.6562166213989256 +karman_re200,ppo,356,142.4,alpha,lower,8.973596096038818 +karman_re200,ppo,357,142.8,alpha,front,-2.427675485610962 +karman_re200,ppo,357,142.8,alpha,upper,2.6372694969177246 +karman_re200,ppo,357,142.8,alpha,lower,11.02859878540039 +karman_re200,ppo,358,143.2,alpha,front,-2.8457179069519043 +karman_re200,ppo,358,143.2,alpha,upper,1.6181092262268066 +karman_re200,ppo,358,143.2,alpha,lower,10.388054370880127 +karman_re200,ppo,359,143.6,alpha,front,-3.1710381507873535 +karman_re200,ppo,359,143.6,alpha,upper,0.9295306205749513 +karman_re200,ppo,359,143.6,alpha,lower,9.820950984954834 +karman_re200,ppo,360,144.0,alpha,front,-2.7619271278381348 +karman_re200,ppo,360,144.0,alpha,upper,-2.3969273567199707 +karman_re200,ppo,360,144.0,alpha,lower,6.340675830841065 +karman_re200,ppo,361,144.4,alpha,front,-2.1633505821228027 +karman_re200,ppo,361,144.4,alpha,upper,-3.9404554367065425 +karman_re200,ppo,361,144.4,alpha,lower,4.323151707649231 +karman_re200,ppo,362,144.8,alpha,front,-1.94924533367157 +karman_re200,ppo,362,144.8,alpha,upper,-2.7252357006073 +karman_re200,ppo,362,144.8,alpha,lower,4.530624866485596 +karman_re200,ppo,363,145.2,alpha,front,0.18965572118759155 +karman_re200,ppo,363,145.2,alpha,upper,-5.201158285140991 +karman_re200,ppo,363,145.2,alpha,lower,-0.1133723258972168 +karman_re200,ppo,364,145.6,alpha,front,2.5883333683013916 +karman_re200,ppo,364,145.6,alpha,upper,-8.007229328155518 +karman_re200,ppo,364,145.6,alpha,lower,-4.0 +karman_re200,ppo,365,146.0,alpha,front,3.3786888122558594 +karman_re200,ppo,365,146.0,alpha,upper,-8.46915864944458 +karman_re200,ppo,365,146.0,alpha,lower,-4.0 +karman_re200,ppo,366,146.4,alpha,front,3.5021994113922124 +karman_re200,ppo,366,146.4,alpha,upper,-8.239858627319336 +karman_re200,ppo,366,146.4,alpha,lower,-3.3292794227600098 +karman_re200,ppo,367,146.8,alpha,front,2.8740551471710205 +karman_re200,ppo,367,146.8,alpha,upper,-6.027717590332031 +karman_re200,ppo,367,146.8,alpha,lower,1.4144973754882812 +karman_re200,ppo,368,147.2,alpha,front,2.570754289627075 +karman_re200,ppo,368,147.2,alpha,upper,-5.098819255828857 +karman_re200,ppo,368,147.2,alpha,lower,4.295596241950989 +karman_re200,ppo,369,147.6,alpha,front,3.069603443145752 +karman_re200,ppo,369,147.6,alpha,upper,-5.783393144607544 +karman_re200,ppo,369,147.6,alpha,lower,1.1413450241088867 +karman_re200,ppo,370,148.0,alpha,front,3.5061273574829106 +karman_re200,ppo,370,148.0,alpha,upper,-5.276190996170044 +karman_re200,ppo,370,148.0,alpha,lower,-0.6500773429870605 +karman_re200,ppo,371,148.4,alpha,front,1.9882756471633911 +karman_re200,ppo,371,148.4,alpha,upper,-1.9873461723327634 +karman_re200,ppo,371,148.4,alpha,lower,3.691633701324463 +karman_re200,ppo,372,148.8,alpha,front,-1.4629462957382202 +karman_re200,ppo,372,148.8,alpha,upper,2.708292007446289 +karman_re200,ppo,372,148.8,alpha,lower,10.660414695739746 +karman_re200,ppo,373,149.2,alpha,front,-2.5385656356811523 +karman_re200,ppo,373,149.2,alpha,upper,1.885866165161133 +karman_re200,ppo,373,149.2,alpha,lower,10.484411239624023 +karman_re200,ppo,374,149.6,alpha,front,-2.895963668823242 +karman_re200,ppo,374,149.6,alpha,upper,1.5537433624267578 +karman_re200,ppo,374,149.6,alpha,lower,10.35268783569336 +karman_re200,ppo,375,150.0,alpha,front,-3.119342565536499 +karman_re200,ppo,375,150.0,alpha,upper,0.36170387268066406 +karman_re200,ppo,375,150.0,alpha,lower,9.174562931060791 +karman_re200,ppo,376,150.4,alpha,front,-2.5066981315612793 +karman_re200,ppo,376,150.4,alpha,upper,-3.2414082884788518 +karman_re200,ppo,376,150.4,alpha,lower,5.156856179237366 +karman_re200,ppo,377,150.8,alpha,front,-2.1245927810668945 +karman_re200,ppo,377,150.8,alpha,upper,-3.6287392675876617 +karman_re200,ppo,377,150.8,alpha,lower,4.455174565315247 +karman_re200,ppo,378,151.2,alpha,front,-1.6099578142166135 +karman_re200,ppo,378,151.2,alpha,upper,-2.8828186988830566 +karman_re200,ppo,378,151.2,alpha,lower,3.8060297966003414 +karman_re200,ppo,379,151.6,alpha,front,0.982782542705536 +karman_re200,ppo,379,151.6,alpha,upper,-6.266387939453124 +karman_re200,ppo,379,151.6,alpha,lower,-1.6278047561645508 +karman_re200,ppo,380,152.0,alpha,front,2.921163558959961 +karman_re200,ppo,380,152.0,alpha,upper,-8.277219295501709 +karman_re200,ppo,380,152.0,alpha,lower,-4.0 +karman_re200,ppo,381,152.4,alpha,front,3.417450189590454 +karman_re200,ppo,381,152.4,alpha,upper,-8.394009113311768 +karman_re200,ppo,381,152.4,alpha,lower,-3.9339303970336914 +karman_re200,ppo,382,152.8,alpha,front,3.318691730499267 +karman_re200,ppo,382,152.8,alpha,upper,-7.809385776519775 +karman_re200,ppo,382,152.8,alpha,lower,-2.485354423522949 +karman_re200,ppo,383,153.2,alpha,front,2.7598929405212402 +karman_re200,ppo,383,153.2,alpha,upper,-5.422758102416992 +karman_re200,ppo,383,153.2,alpha,lower,2.8930132389068604 +karman_re200,ppo,384,153.6,alpha,front,2.5736873149871826 +karman_re200,ppo,384,153.6,alpha,upper,-5.166706562042236 +karman_re200,ppo,384,153.6,alpha,lower,3.872475028038025 +karman_re200,ppo,385,154.0,alpha,front,3.1528289318084717 +karman_re200,ppo,385,154.0,alpha,upper,-5.865061044692993 +karman_re200,ppo,385,154.0,alpha,lower,0.29842376708984375 +karman_re200,ppo,386,154.4,alpha,front,3.314269065856933 +karman_re200,ppo,386,154.4,alpha,upper,-4.594434320926666 +karman_re200,ppo,386,154.4,alpha,lower,-0.34973669052124023 +karman_re200,ppo,387,154.8,alpha,front,1.1084010601043701 +karman_re200,ppo,387,154.8,alpha,upper,-0.5440378189086914 +karman_re200,ppo,387,154.8,alpha,lower,5.602619528770447 +karman_re200,ppo,388,155.2,alpha,front,-1.9647101163864138 +karman_re200,ppo,388,155.2,alpha,upper,3.1229348182678223 +karman_re200,ppo,388,155.2,alpha,lower,11.251236915588379 +karman_re200,ppo,389,155.6,alpha,front,-2.686728000640869 +karman_re200,ppo,389,155.6,alpha,upper,1.6334953308105467 +karman_re200,ppo,389,155.6,alpha,lower,10.341233730316162 +karman_re200,ppo,390,156.0,alpha,front,-3.082756519317627 +karman_re200,ppo,390,156.0,alpha,upper,1.584442615509033 +karman_re200,ppo,390,156.0,alpha,lower,10.417626857757568 +karman_re200,ppo,391,156.4,alpha,front,-3.0673751831054688 +karman_re200,ppo,391,156.4,alpha,upper,-0.48959994316101074 +karman_re200,ppo,391,156.4,alpha,lower,8.334369659423828 +karman_re200,ppo,392,156.8,alpha,front,-2.3678417205810547 +karman_re200,ppo,392,156.8,alpha,upper,-3.502467393875122 +karman_re200,ppo,392,156.8,alpha,lower,4.80801260471344 +karman_re200,ppo,393,157.2,alpha,front,-2.1815288066864014 +karman_re200,ppo,393,157.2,alpha,upper,-3.0098686814308167 +karman_re200,ppo,393,157.2,alpha,lower,4.757486343383789 +karman_re200,ppo,394,157.6,alpha,front,-1.1095471382141113 +karman_re200,ppo,394,157.6,alpha,upper,-3.4548245668411255 +karman_re200,ppo,394,157.6,alpha,lower,2.6494815349578857 +karman_re200,ppo,395,158.0,alpha,front,1.6107417345046997 +karman_re200,ppo,395,158.0,alpha,upper,-7.084277629852295 +karman_re200,ppo,395,158.0,alpha,lower,-2.7212424278259277 +karman_re200,ppo,396,158.4,alpha,front,3.1006417274475098 +karman_re200,ppo,396,158.4,alpha,upper,-8.366827964782715 +karman_re200,ppo,396,158.4,alpha,lower,-4.0 +karman_re200,ppo,397,158.8,alpha,front,3.491285085678101 +karman_re200,ppo,397,158.8,alpha,upper,-8.46632719039917 +karman_re200,ppo,397,158.8,alpha,lower,-3.8489518165588374 +karman_re200,ppo,398,159.2,alpha,front,3.1450438499450684 +karman_re200,ppo,398,159.2,alpha,upper,-7.372696876525879 +karman_re200,ppo,398,159.2,alpha,lower,-1.5831837654113772 +karman_re200,ppo,399,159.6,alpha,front,2.668640613555908 +karman_re200,ppo,399,159.6,alpha,upper,-5.058308124542236 +karman_re200,ppo,399,159.6,alpha,lower,4.009695470333099 +karman_re200,ppo,0,0.0,omega,front,0.001965220421552658 +karman_re200,ppo,0,0.0,omega,upper,-0.0550852632522583 +karman_re200,ppo,0,0.0,omega,lower,-0.004189224243164063 +karman_re200,ppo,1,0.4,omega,front,0.012456252574920654 +karman_re200,ppo,1,0.4,omega,upper,-0.05402215480804443 +karman_re200,ppo,1,0.4,omega,lower,-0.0027457809448242186 +karman_re200,ppo,2,0.8,omega,front,0.019727596044540406 +karman_re200,ppo,2,0.8,omega,upper,-0.04945573031902313 +karman_re200,ppo,2,0.8,omega,lower,0.014027810096740723 +karman_re200,ppo,3,1.2,omega,front,0.022582013607025147 +karman_re200,ppo,3,1.2,omega,upper,-0.052390851974487306 +karman_re200,ppo,3,1.2,omega,lower,0.025129618644714358 +karman_re200,ppo,4,1.6,omega,front,0.022357051372528077 +karman_re200,ppo,4,1.6,omega,upper,-0.05304773807525635 +karman_re200,ppo,4,1.6,omega,lower,0.03287640333175659 +karman_re200,ppo,5,2.0,omega,front,0.022938508987426758 +karman_re200,ppo,5,2.0,omega,upper,-0.05740528345108032 +karman_re200,ppo,5,2.0,omega,lower,0.020307563543319702 +karman_re200,ppo,6,2.4,omega,front,0.026445908546447756 +karman_re200,ppo,6,2.4,omega,upper,-0.05363493204116821 +karman_re200,ppo,6,2.4,omega,lower,0.005345487594604493 +karman_re200,ppo,7,2.8,omega,front,0.02521012306213379 +karman_re200,ppo,7,2.8,omega,upper,-0.03776288866996765 +karman_re200,ppo,7,2.8,omega,lower,0.01495189666748047 +karman_re200,ppo,8,3.2,omega,front,0.016191495656967165 +karman_re200,ppo,8,3.2,omega,upper,-0.015692989826202392 +karman_re200,ppo,8,3.2,omega,lower,0.045236862897872925 +karman_re200,ppo,9,3.6,omega,front,0.0026149630546569826 +karman_re200,ppo,9,3.6,omega,upper,-0.000439000129699707 +karman_re200,ppo,9,3.6,omega,lower,0.06493999481201172 +karman_re200,ppo,10,4.0,omega,front,-0.007563360929489136 +karman_re200,ppo,10,4.0,omega,upper,0.0005207490921020507 +karman_re200,ppo,10,4.0,omega,lower,0.06577271938323975 +karman_re200,ppo,11,4.4,omega,front,-0.014647358655929565 +karman_re200,ppo,11,4.4,omega,upper,0.0023448944091796877 +karman_re200,ppo,11,4.4,omega,lower,0.07033758640289307 +karman_re200,ppo,12,4.8,omega,front,-0.018178857564926147 +karman_re200,ppo,12,4.8,omega,upper,0.0021745586395263672 +karman_re200,ppo,12,4.8,omega,lower,0.07209330081939698 +karman_re200,ppo,13,5.2,omega,front,-0.015266462564468385 +karman_re200,ppo,13,5.2,omega,upper,-0.01816652774810791 +karman_re200,ppo,13,5.2,omega,lower,0.05160730242729187 +karman_re200,ppo,14,5.6,omega,front,-0.009121253490447997 +karman_re200,ppo,14,5.6,omega,upper,-0.041219173073768614 +karman_re200,ppo,14,5.6,omega,lower,0.027115617990493775 +karman_re200,ppo,15,6.0,omega,front,-0.003841540813446045 +karman_re200,ppo,15,6.0,omega,upper,-0.04799434721469879 +karman_re200,ppo,15,6.0,omega,lower,0.0216081964969635 +karman_re200,ppo,16,6.4,omega,front,0.001986285299062729 +karman_re200,ppo,16,6.4,omega,upper,-0.048076872229576115 +karman_re200,ppo,16,6.4,omega,lower,0.01582551956176758 +karman_re200,ppo,17,6.8,omega,front,0.010236108303070068 +karman_re200,ppo,17,6.8,omega,upper,-0.054252519607543945 +karman_re200,ppo,17,6.8,omega,lower,0.004855751991271973 +karman_re200,ppo,18,7.2,omega,front,0.021069810390472413 +karman_re200,ppo,18,7.2,omega,upper,-0.06468611001968384 +karman_re200,ppo,18,7.2,omega,lower,-0.008439326286315918 +karman_re200,ppo,19,7.6,omega,front,0.027421247959136964 +karman_re200,ppo,19,7.6,omega,upper,-0.06683710336685181 +karman_re200,ppo,19,7.6,omega,lower,-0.00965001106262207 +karman_re200,ppo,20,8.0,omega,front,0.02629279136657715 +karman_re200,ppo,20,8.0,omega,upper,-0.05234029769897461 +karman_re200,ppo,20,8.0,omega,lower,0.013413963317871093 +karman_re200,ppo,21,8.4,omega,front,0.023502275943756104 +karman_re200,ppo,21,8.4,omega,upper,-0.03921959340572357 +karman_re200,ppo,21,8.4,omega,lower,0.04344194769859314 +karman_re200,ppo,22,8.8,omega,front,0.021766111850738526 +karman_re200,ppo,22,8.8,omega,upper,-0.042670525908470154 +karman_re200,ppo,22,8.8,omega,lower,0.037834703028202056 +karman_re200,ppo,23,9.2,omega,front,0.01940362334251404 +karman_re200,ppo,23,9.2,omega,upper,-0.03892557382583618 +karman_re200,ppo,23,9.2,omega,lower,0.023801229000091552 +karman_re200,ppo,24,9.6,omega,front,0.013121340274810791 +karman_re200,ppo,24,9.6,omega,upper,-0.028733322620391848 +karman_re200,ppo,24,9.6,omega,lower,0.01851099491119385 +karman_re200,ppo,25,10.0,omega,front,0.0026197373867034913 +karman_re200,ppo,25,10.0,omega,upper,-0.01365713357925415 +karman_re200,ppo,25,10.0,omega,lower,0.030741958618164065 +karman_re200,ppo,26,10.4,omega,front,-0.009436365365982056 +karman_re200,ppo,26,10.4,omega,upper,-0.0010767531394958497 +karman_re200,ppo,26,10.4,omega,lower,0.050311580896377564 +karman_re200,ppo,27,10.8,omega,front,-0.02004239320755005 +karman_re200,ppo,27,10.8,omega,upper,0.0028342342376708983 +karman_re200,ppo,27,10.8,omega,lower,0.06642661571502685 +karman_re200,ppo,28,11.2,omega,front,-0.026141698360443114 +karman_re200,ppo,28,11.2,omega,upper,-0.003929018974304199 +karman_re200,ppo,28,11.2,omega,lower,0.07331346988677978 +karman_re200,ppo,29,11.6,omega,front,-0.025903613567352296 +karman_re200,ppo,29,11.6,omega,upper,-0.01987013339996338 +karman_re200,ppo,29,11.6,omega,lower,0.0631176471710205 +karman_re200,ppo,30,12.0,omega,front,-0.02241981029510498 +karman_re200,ppo,30,12.0,omega,upper,-0.033769304752349856 +karman_re200,ppo,30,12.0,omega,lower,0.04176285922527313 +karman_re200,ppo,31,12.4,omega,front,-0.018045690059661865 +karman_re200,ppo,31,12.4,omega,upper,-0.036836574971675876 +karman_re200,ppo,31,12.4,omega,lower,0.0331633323431015 +karman_re200,ppo,32,12.8,omega,front,-0.01435051679611206 +karman_re200,ppo,32,12.8,omega,upper,-0.02846006989479065 +karman_re200,ppo,32,12.8,omega,lower,0.03025139570236206 +karman_re200,ppo,33,13.2,omega,front,-0.0004592525213956833 +karman_re200,ppo,33,13.2,omega,upper,-0.03911960661411285 +karman_re200,ppo,33,13.2,omega,lower,0.008418326377868653 +karman_re200,ppo,34,13.6,omega,front,0.022504196166992188 +karman_re200,ppo,34,13.6,omega,upper,-0.06578437328338624 +karman_re200,ppo,34,13.6,omega,lower,-0.02340479373931885 +karman_re200,ppo,35,14.0,omega,front,0.032564306259155275 +karman_re200,ppo,35,14.0,omega,upper,-0.07286537647247314 +karman_re200,ppo,35,14.0,omega,lower,-0.0247968053817749 +karman_re200,ppo,36,14.4,omega,front,0.03261688947677612 +karman_re200,ppo,36,14.4,omega,upper,-0.0650566601753235 +karman_re200,ppo,36,14.4,omega,lower,-0.005937404632568359 +karman_re200,ppo,37,14.8,omega,front,0.03031759977340698 +karman_re200,ppo,37,14.8,omega,upper,-0.04503211200237274 +karman_re200,ppo,37,14.8,omega,lower,0.0303015661239624 +karman_re200,ppo,38,15.2,omega,front,0.02690978765487671 +karman_re200,ppo,38,15.2,omega,upper,-0.03641274213790894 +karman_re200,ppo,38,15.2,omega,lower,0.0513649582862854 +karman_re200,ppo,39,15.6,omega,front,0.024371623992919922 +karman_re200,ppo,39,15.6,omega,upper,-0.03766630828380585 +karman_re200,ppo,39,15.6,omega,lower,0.03762744843959808 +karman_re200,ppo,40,16.0,omega,front,0.018010140657424928 +karman_re200,ppo,40,16.0,omega,upper,-0.03038994312286377 +karman_re200,ppo,40,16.0,omega,lower,0.03224447906017303 +karman_re200,ppo,41,16.4,omega,front,0.004939369559288025 +karman_re200,ppo,41,16.4,omega,upper,-0.013653490543365478 +karman_re200,ppo,41,16.4,omega,lower,0.04301784932613373 +karman_re200,ppo,42,16.8,omega,front,-0.009040157794952392 +karman_re200,ppo,42,16.8,omega,upper,0.002725529670715332 +karman_re200,ppo,42,16.8,omega,lower,0.0609684419631958 +karman_re200,ppo,43,17.2,omega,front,-0.0148173725605011 +karman_re200,ppo,43,17.2,omega,upper,0.003195481300354004 +karman_re200,ppo,43,17.2,omega,lower,0.06739093780517579 +karman_re200,ppo,44,17.6,omega,front,-0.017305556535720825 +karman_re200,ppo,44,17.6,omega,upper,-0.005553064346313477 +karman_re200,ppo,44,17.6,omega,lower,0.06553997993469238 +karman_re200,ppo,45,18.0,omega,front,-0.015031782388687133 +karman_re200,ppo,45,18.0,omega,upper,-0.02720081329345703 +karman_re200,ppo,45,18.0,omega,lower,0.04621493220329285 +karman_re200,ppo,46,18.4,omega,front,-0.009673381447792053 +karman_re200,ppo,46,18.4,omega,upper,-0.046975802779197696 +karman_re200,ppo,46,18.4,omega,lower,0.02270795464515686 +karman_re200,ppo,47,18.8,omega,front,-0.004141373634338379 +karman_re200,ppo,47,18.8,omega,upper,-0.05540026187896729 +karman_re200,ppo,47,18.8,omega,lower,0.011522469520568847 +karman_re200,ppo,48,19.2,omega,front,0.001851188987493515 +karman_re200,ppo,48,19.2,omega,upper,-0.053549156188964844 +karman_re200,ppo,48,19.2,omega,lower,0.006962175369262695 +karman_re200,ppo,49,19.6,omega,front,0.010224201679229737 +karman_re200,ppo,49,19.6,omega,upper,-0.05645507574081421 +karman_re200,ppo,49,19.6,omega,lower,-0.004952301979064941 +karman_re200,ppo,50,20.0,omega,front,0.02195534944534302 +karman_re200,ppo,50,20.0,omega,upper,-0.06376034498214722 +karman_re200,ppo,50,20.0,omega,lower,-0.01806692123413086 +karman_re200,ppo,51,20.4,omega,front,0.02795144557952881 +karman_re200,ppo,51,20.4,omega,upper,-0.06017129898071289 +karman_re200,ppo,51,20.4,omega,lower,-0.00876868724822998 +karman_re200,ppo,52,20.8,omega,front,0.026843242645263672 +karman_re200,ppo,52,20.8,omega,upper,-0.044036962389945984 +karman_re200,ppo,52,20.8,omega,lower,0.02348045349121094 +karman_re200,ppo,53,21.2,omega,front,0.0239786958694458 +karman_re200,ppo,53,21.2,omega,upper,-0.03845436751842499 +karman_re200,ppo,53,21.2,omega,lower,0.04161650478839874 +karman_re200,ppo,54,21.6,omega,front,0.024434373378753663 +karman_re200,ppo,54,21.6,omega,upper,-0.04711132824420929 +karman_re200,ppo,54,21.6,omega,lower,0.022339154481887818 +karman_re200,ppo,55,22.0,omega,front,0.02209366321563721 +karman_re200,ppo,55,22.0,omega,upper,-0.04088170349597931 +karman_re200,ppo,55,22.0,omega,lower,0.0098225736618042 +karman_re200,ppo,56,22.4,omega,front,0.010342304706573487 +karman_re200,ppo,56,22.4,omega,upper,-0.019384617805480956 +karman_re200,ppo,56,22.4,omega,lower,0.024692960977554322 +karman_re200,ppo,57,22.8,omega,front,-0.009571715593338012 +karman_re200,ppo,57,22.8,omega,upper,0.010239653587341309 +karman_re200,ppo,57,22.8,omega,lower,0.0629107141494751 +karman_re200,ppo,58,23.2,omega,front,-0.019090417623519897 +karman_re200,ppo,58,23.2,omega,upper,0.012298741340637208 +karman_re200,ppo,58,23.2,omega,lower,0.0771807861328125 +karman_re200,ppo,59,23.6,omega,front,-0.021757922172546386 +karman_re200,ppo,59,23.6,omega,upper,0.0017655038833618165 +karman_re200,ppo,59,23.6,omega,lower,0.07788578033447266 +karman_re200,ppo,60,24.0,omega,front,-0.021159892082214356 +karman_re200,ppo,60,24.0,omega,upper,-0.012650010585784912 +karman_re200,ppo,60,24.0,omega,lower,0.06730040550231933 +karman_re200,ppo,61,24.4,omega,front,-0.015686522722244262 +karman_re200,ppo,61,24.4,omega,upper,-0.03800800681114197 +karman_re200,ppo,61,24.4,omega,lower,0.03612803161144257 +karman_re200,ppo,62,24.8,omega,front,-0.009719362258911133 +karman_re200,ppo,62,24.8,omega,upper,-0.0526216983795166 +karman_re200,ppo,62,24.8,omega,lower,0.021224222183227538 +karman_re200,ppo,63,25.2,omega,front,-0.005339296460151672 +karman_re200,ppo,63,25.2,omega,upper,-0.0498578017950058 +karman_re200,ppo,63,25.2,omega,lower,0.016659317016601564 +karman_re200,ppo,64,25.6,omega,front,0.0017116828262805938 +karman_re200,ppo,64,25.6,omega,upper,-0.04987168848514557 +karman_re200,ppo,64,25.6,omega,lower,0.006245827674865723 +karman_re200,ppo,65,26.0,omega,front,0.01374618649482727 +karman_re200,ppo,65,26.0,omega,upper,-0.05718105554580689 +karman_re200,ppo,65,26.0,omega,lower,-0.011600651741027833 +karman_re200,ppo,66,26.4,omega,front,0.026108460426330568 +karman_re200,ppo,66,26.4,omega,upper,-0.06360093355178834 +karman_re200,ppo,66,26.4,omega,lower,-0.02105456352233887 +karman_re200,ppo,67,26.8,omega,front,0.03003852367401123 +karman_re200,ppo,67,26.8,omega,upper,-0.05762303590774536 +karman_re200,ppo,67,26.8,omega,lower,-0.005021414756774902 +karman_re200,ppo,68,27.2,omega,front,0.028541467189788818 +karman_re200,ppo,68,27.2,omega,upper,-0.042244862318038943 +karman_re200,ppo,68,27.2,omega,lower,0.02836616277694702 +karman_re200,ppo,69,27.6,omega,front,0.02643653392791748 +karman_re200,ppo,69,27.6,omega,upper,-0.04084202766418457 +karman_re200,ppo,69,27.6,omega,lower,0.04148422122001648 +karman_re200,ppo,70,28.0,omega,front,0.028237521648406982 +karman_re200,ppo,70,28.0,omega,upper,-0.04874615013599396 +karman_re200,ppo,70,28.0,omega,lower,0.01951899528503418 +karman_re200,ppo,71,28.4,omega,front,0.027805345058441164 +karman_re200,ppo,71,28.4,omega,upper,-0.044775034785270694 +karman_re200,ppo,71,28.4,omega,lower,0.006497244834899903 +karman_re200,ppo,72,28.8,omega,front,0.01753448963165283 +karman_re200,ppo,72,28.8,omega,upper,-0.0254362952709198 +karman_re200,ppo,72,28.8,omega,lower,0.022770878076553345 +karman_re200,ppo,73,29.2,omega,front,-0.007866039276123046 +karman_re200,ppo,73,29.2,omega,upper,0.013655943870544434 +karman_re200,ppo,73,29.2,omega,lower,0.07321387767791748 +karman_re200,ppo,74,29.6,omega,front,-0.02239144802093506 +karman_re200,ppo,74,29.6,omega,upper,0.020884056091308594 +karman_re200,ppo,74,29.6,omega,lower,0.09390201568603516 +karman_re200,ppo,75,30.0,omega,front,-0.02556910514831543 +karman_re200,ppo,75,30.0,omega,upper,0.008488688468933105 +karman_re200,ppo,75,30.0,omega,lower,0.09180915355682373 +karman_re200,ppo,76,30.4,omega,front,-0.024624099731445314 +karman_re200,ppo,76,30.4,omega,upper,-0.008115053176879883 +karman_re200,ppo,76,30.4,omega,lower,0.07434752941131592 +karman_re200,ppo,77,30.8,omega,front,-0.01774230122566223 +karman_re200,ppo,77,30.8,omega,upper,-0.040439692139625553 +karman_re200,ppo,77,30.8,omega,lower,0.03520013332366943 +karman_re200,ppo,78,31.2,omega,front,-0.01170863389968872 +karman_re200,ppo,78,31.2,omega,upper,-0.05197195291519165 +karman_re200,ppo,78,31.2,omega,lower,0.023723114728927613 +karman_re200,ppo,79,31.6,omega,front,-0.0065116602182388305 +karman_re200,ppo,79,31.6,omega,upper,-0.046900551915168766 +karman_re200,ppo,79,31.6,omega,lower,0.01925978422164917 +karman_re200,ppo,80,32.0,omega,front,0.01064527153968811 +karman_re200,ppo,80,32.0,omega,upper,-0.0619611930847168 +karman_re200,ppo,80,32.0,omega,lower,-0.0089133882522583 +karman_re200,ppo,81,32.4,omega,front,0.028592066764831545 +karman_re200,ppo,81,32.4,omega,upper,-0.07809646129608154 +karman_re200,ppo,81,32.4,omega,lower,-0.035521225929260256 +karman_re200,ppo,82,32.8,omega,front,0.0341057014465332 +karman_re200,ppo,82,32.8,omega,upper,-0.07532191753387452 +karman_re200,ppo,82,32.8,omega,lower,-0.030926513671875 +karman_re200,ppo,83,33.2,omega,front,0.030322482585906984 +karman_re200,ppo,83,33.2,omega,upper,-0.0577971363067627 +karman_re200,ppo,83,33.2,omega,lower,0.005217432975769043 +karman_re200,ppo,84,33.6,omega,front,0.025788881778717042 +karman_re200,ppo,84,33.6,omega,upper,-0.0419686484336853 +karman_re200,ppo,84,33.6,omega,lower,0.05040181636810303 +karman_re200,ppo,85,34.0,omega,front,0.025982189178466796 +karman_re200,ppo,85,34.0,omega,upper,-0.05136776447296143 +karman_re200,ppo,85,34.0,omega,lower,0.030948195457458496 +karman_re200,ppo,86,34.4,omega,front,0.028571498394012452 +karman_re200,ppo,86,34.4,omega,upper,-0.05187998056411743 +karman_re200,ppo,86,34.4,omega,lower,0.006167001724243164 +karman_re200,ppo,87,34.8,omega,front,0.023259007930755617 +karman_re200,ppo,87,34.8,omega,upper,-0.03437483668327332 +karman_re200,ppo,87,34.8,omega,lower,0.010128517150878907 +karman_re200,ppo,88,35.2,omega,front,-0.0002542632818222046 +karman_re200,ppo,88,35.2,omega,upper,0.006329054832458496 +karman_re200,ppo,88,35.2,omega,lower,0.061131248474121096 +karman_re200,ppo,89,35.6,omega,front,-0.02024571180343628 +karman_re200,ppo,89,35.6,omega,upper,0.02527799129486084 +karman_re200,ppo,89,35.6,omega,lower,0.09525574684143066 +karman_re200,ppo,90,36.0,omega,front,-0.026672065258026123 +karman_re200,ppo,90,36.0,omega,upper,0.013704419136047363 +karman_re200,ppo,90,36.0,omega,lower,0.09548944473266602 +karman_re200,ppo,91,36.4,omega,front,-0.029277048110961913 +karman_re200,ppo,91,36.4,omega,upper,0.005047187805175781 +karman_re200,ppo,91,36.4,omega,lower,0.09171574592590333 +karman_re200,ppo,92,36.8,omega,front,-0.025591797828674316 +karman_re200,ppo,92,36.8,omega,upper,-0.02223491430282593 +karman_re200,ppo,92,36.8,omega,lower,0.06108193397521973 +karman_re200,ppo,93,37.2,omega,front,-0.018075785636901855 +karman_re200,ppo,93,37.2,omega,upper,-0.046452017426490785 +karman_re200,ppo,93,37.2,omega,lower,0.03286620736122131 +karman_re200,ppo,94,37.6,omega,front,-0.016325799226760866 +karman_re200,ppo,94,37.6,omega,upper,-0.03580045878887177 +karman_re200,ppo,94,37.6,omega,lower,0.03834457457065582 +karman_re200,ppo,95,38.0,omega,front,-0.0036585408449172976 +karman_re200,ppo,95,38.0,omega,upper,-0.044934173226356504 +karman_re200,ppo,95,38.0,omega,lower,0.009843168258666992 +karman_re200,ppo,96,38.4,omega,front,0.02161808729171753 +karman_re200,ppo,96,38.4,omega,upper,-0.07564452648162842 +karman_re200,ppo,96,38.4,omega,lower,-0.03384281158447266 +karman_re200,ppo,97,38.8,omega,front,0.034219088554382326 +karman_re200,ppo,97,38.8,omega,upper,-0.08350165367126465 +karman_re200,ppo,97,38.8,omega,lower,-0.04 +karman_re200,ppo,98,39.2,omega,front,0.036165974140167235 +karman_re200,ppo,98,39.2,omega,upper,-0.08028059005737305 +karman_re200,ppo,98,39.2,omega,lower,-0.033850512504577636 +karman_re200,ppo,99,39.6,omega,front,0.030593359470367433 +karman_re200,ppo,99,39.6,omega,upper,-0.061454522609710696 +karman_re200,ppo,99,39.6,omega,lower,0.0066551494598388675 +karman_re200,ppo,100,40.0,omega,front,0.02730794906616211 +karman_re200,ppo,100,40.0,omega,upper,-0.049438473582267765 +karman_re200,ppo,100,40.0,omega,lower,0.04302933692932129 +karman_re200,ppo,101,40.4,omega,front,0.030169758796691894 +karman_re200,ppo,101,40.4,omega,upper,-0.05613609075546265 +karman_re200,ppo,101,40.4,omega,lower,0.018473963737487793 +karman_re200,ppo,102,40.8,omega,front,0.031850292682647705 +karman_re200,ppo,102,40.8,omega,upper,-0.05106367349624634 +karman_re200,ppo,102,40.8,omega,lower,0.002365412712097168 +karman_re200,ppo,103,41.2,omega,front,0.011002070903778076 +karman_re200,ppo,103,41.2,omega,upper,-0.009549906253814697 +karman_re200,ppo,103,41.2,omega,lower,0.04669219493865967 +karman_re200,ppo,104,41.6,omega,front,-0.014202394485473634 +karman_re200,ppo,104,41.6,omega,upper,0.02325864315032959 +karman_re200,ppo,104,41.6,omega,lower,0.09419841766357422 +karman_re200,ppo,105,42.0,omega,front,-0.02086033344268799 +karman_re200,ppo,105,42.0,omega,upper,0.013810324668884278 +karman_re200,ppo,105,42.0,omega,lower,0.0908924674987793 +karman_re200,ppo,106,42.4,omega,front,-0.025690991878509522 +karman_re200,ppo,106,42.4,omega,upper,0.011231203079223633 +karman_re200,ppo,106,42.4,omega,lower,0.0937700366973877 +karman_re200,ppo,107,42.8,omega,front,-0.027182023525238037 +karman_re200,ppo,107,42.8,omega,upper,-0.005496213436126709 +karman_re200,ppo,107,42.8,omega,lower,0.07977419376373292 +karman_re200,ppo,108,43.2,omega,front,-0.021217904090881347 +karman_re200,ppo,108,43.2,omega,upper,-0.03674402594566345 +karman_re200,ppo,108,43.2,omega,lower,0.04230619490146637 +karman_re200,ppo,109,43.6,omega,front,-0.018714784383773803 +karman_re200,ppo,109,43.6,omega,upper,-0.03787718653678894 +karman_re200,ppo,109,43.6,omega,lower,0.04041532874107361 +karman_re200,ppo,110,44.0,omega,front,-0.011939138174057007 +karman_re200,ppo,110,44.0,omega,upper,-0.0342021381855011 +karman_re200,ppo,110,44.0,omega,lower,0.028964402675628664 +karman_re200,ppo,111,44.4,omega,front,0.012484259605407715 +karman_re200,ppo,111,44.4,omega,upper,-0.06457242488861084 +karman_re200,ppo,111,44.4,omega,lower,-0.019495220184326173 +karman_re200,ppo,112,44.8,omega,front,0.02926436185836792 +karman_re200,ppo,112,44.8,omega,upper,-0.08088238716125488 +karman_re200,ppo,112,44.8,omega,lower,-0.04 +karman_re200,ppo,113,45.2,omega,front,0.03388373851776123 +karman_re200,ppo,113,45.2,omega,upper,-0.08072397708892823 +karman_re200,ppo,113,45.2,omega,lower,-0.03649394512176514 +karman_re200,ppo,114,45.6,omega,front,0.03152838706970215 +karman_re200,ppo,114,45.6,omega,upper,-0.07205422163009643 +karman_re200,ppo,114,45.6,omega,lower,-0.016402416229248047 +karman_re200,ppo,115,46.0,omega,front,0.027063026428222656 +karman_re200,ppo,115,46.0,omega,upper,-0.050783746242523194 +karman_re200,ppo,115,46.0,omega,lower,0.034252315759658813 +karman_re200,ppo,116,46.4,omega,front,0.02666499137878418 +karman_re200,ppo,116,46.4,omega,upper,-0.052013182640075685 +karman_re200,ppo,116,46.4,omega,lower,0.0312815922498703 +karman_re200,ppo,117,46.8,omega,front,0.032842743396759036 +karman_re200,ppo,117,46.8,omega,upper,-0.05890711784362793 +karman_re200,ppo,117,46.8,omega,lower,-0.0022251033782958985 +karman_re200,ppo,118,47.2,omega,front,0.033009486198425295 +karman_re200,ppo,118,47.2,omega,upper,-0.04463171184062958 +karman_re200,ppo,118,47.2,omega,lower,-0.0010186290740966798 +karman_re200,ppo,119,47.6,omega,front,0.007088814973831177 +karman_re200,ppo,119,47.6,omega,upper,0.0012808561325073243 +karman_re200,ppo,119,47.6,omega,lower,0.06743042945861817 +karman_re200,ppo,120,48.0,omega,front,-0.021127533912658692 +karman_re200,ppo,120,48.0,omega,upper,0.032481231689453126 +karman_re200,ppo,120,48.0,omega,lower,0.11367090702056885 +karman_re200,ppo,121,48.4,omega,front,-0.02644756555557251 +karman_re200,ppo,121,48.4,omega,upper,0.01610226631164551 +karman_re200,ppo,121,48.4,omega,lower,0.10182872295379639 +karman_re200,ppo,122,48.8,omega,front,-0.030174546241760254 +karman_re200,ppo,122,48.8,omega,upper,0.01630895137786865 +karman_re200,ppo,122,48.8,omega,lower,0.10241271495819092 +karman_re200,ppo,123,49.2,omega,front,-0.02937844753265381 +karman_re200,ppo,123,49.2,omega,upper,-0.007591438293457031 +karman_re200,ppo,123,49.2,omega,lower,0.08046258449554443 +karman_re200,ppo,124,49.6,omega,front,-0.022875075340270997 +karman_re200,ppo,124,49.6,omega,upper,-0.033026459217071535 +karman_re200,ppo,124,49.6,omega,lower,0.049013832807540895 +karman_re200,ppo,125,50.0,omega,front,-0.020666141510009766 +karman_re200,ppo,125,50.0,omega,upper,-0.02840315580368042 +karman_re200,ppo,125,50.0,omega,lower,0.046824324131011966 +karman_re200,ppo,126,50.4,omega,front,-0.007467321753501892 +karman_re200,ppo,126,50.4,omega,upper,-0.03791853666305542 +karman_re200,ppo,126,50.4,omega,lower,0.01982335090637207 +karman_re200,ppo,127,50.8,omega,front,0.01894654393196106 +karman_re200,ppo,127,50.8,omega,upper,-0.07270974159240723 +karman_re200,ppo,127,50.8,omega,lower,-0.030916824340820312 +karman_re200,ppo,128,51.2,omega,front,0.031693170070648195 +karman_re200,ppo,128,51.2,omega,upper,-0.08331079006195069 +karman_re200,ppo,128,51.2,omega,lower,-0.04 +karman_re200,ppo,129,51.6,omega,front,0.03480480432510376 +karman_re200,ppo,129,51.6,omega,upper,-0.08469577789306641 +karman_re200,ppo,129,51.6,omega,lower,-0.03726694583892822 +karman_re200,ppo,130,52.0,omega,front,0.030020794868469237 +karman_re200,ppo,130,52.0,omega,upper,-0.07093399286270141 +karman_re200,ppo,130,52.0,omega,lower,-0.009645109176635743 +karman_re200,ppo,131,52.4,omega,front,0.025720598697662356 +karman_re200,ppo,131,52.4,omega,upper,-0.050026786327362065 +karman_re200,ppo,131,52.4,omega,lower,0.04231488049030304 +karman_re200,ppo,132,52.8,omega,front,0.026981065273284914 +karman_re200,ppo,132,52.8,omega,upper,-0.05396232128143311 +karman_re200,ppo,132,52.8,omega,lower,0.027546103000640868 +karman_re200,ppo,133,53.2,omega,front,0.03278810501098633 +karman_re200,ppo,133,53.2,omega,upper,-0.05741978406906128 +karman_re200,ppo,133,53.2,omega,lower,-0.0034739160537719726 +karman_re200,ppo,134,53.6,omega,front,0.029147839546203615 +karman_re200,ppo,134,53.6,omega,upper,-0.03778282642364502 +karman_re200,ppo,134,53.6,omega,lower,0.008818535804748536 +karman_re200,ppo,135,54.0,omega,front,0.0008426657319068909 +karman_re200,ppo,135,54.0,omega,upper,0.008051900863647462 +karman_re200,ppo,135,54.0,omega,lower,0.0769850730895996 +karman_re200,ppo,136,54.4,omega,front,-0.023328580856323243 +karman_re200,ppo,136,54.4,omega,upper,0.028489971160888673 +karman_re200,ppo,136,54.4,omega,lower,0.11005540847778321 +karman_re200,ppo,137,54.8,omega,front,-0.028220512866973878 +karman_re200,ppo,137,54.8,omega,upper,0.015426959991455078 +karman_re200,ppo,137,54.8,omega,lower,0.10167677402496338 +karman_re200,ppo,138,55.2,omega,front,-0.031670727729797364 +karman_re200,ppo,138,55.2,omega,upper,0.012999744415283204 +karman_re200,ppo,138,55.2,omega,lower,0.1009416389465332 +karman_re200,ppo,139,55.6,omega,front,-0.029217243194580078 +karman_re200,ppo,139,55.6,omega,upper,-0.01582124948501587 +karman_re200,ppo,139,55.6,omega,lower,0.07331727504730225 +karman_re200,ppo,140,56.0,omega,front,-0.02278120279312134 +karman_re200,ppo,140,56.0,omega,upper,-0.03845868229866028 +karman_re200,ppo,140,56.0,omega,lower,0.045715012550354005 +karman_re200,ppo,141,56.4,omega,front,-0.02218493938446045 +karman_re200,ppo,141,56.4,omega,upper,-0.026744725704193117 +karman_re200,ppo,141,56.4,omega,lower,0.04909961700439453 +karman_re200,ppo,142,56.8,omega,front,-0.011592327356338502 +karman_re200,ppo,142,56.8,omega,upper,-0.03226118624210358 +karman_re200,ppo,142,56.8,omega,lower,0.023500759601593018 +karman_re200,ppo,143,57.2,omega,front,0.015207511186599732 +karman_re200,ppo,143,57.2,omega,upper,-0.06835027933120728 +karman_re200,ppo,143,57.2,omega,lower,-0.028005657196044923 +karman_re200,ppo,144,57.6,omega,front,0.032082993984222416 +karman_re200,ppo,144,57.6,omega,upper,-0.08386019706726075 +karman_re200,ppo,144,57.6,omega,lower,-0.04 +karman_re200,ppo,145,58.0,omega,front,0.03578055858612061 +karman_re200,ppo,145,58.0,omega,upper,-0.08410728454589844 +karman_re200,ppo,145,58.0,omega,lower,-0.039205098152160646 +karman_re200,ppo,146,58.4,omega,front,0.03196294546127319 +karman_re200,ppo,146,58.4,omega,upper,-0.07288733959197999 +karman_re200,ppo,146,58.4,omega,lower,-0.014971504211425781 +karman_re200,ppo,147,58.8,omega,front,0.027697169780731203 +karman_re200,ppo,147,58.8,omega,upper,-0.05026740789413452 +karman_re200,ppo,147,58.8,omega,lower,0.040341347455978394 +karman_re200,ppo,148,59.2,omega,front,0.027907664775848388 +karman_re200,ppo,148,59.2,omega,upper,-0.05323847770690918 +karman_re200,ppo,148,59.2,omega,lower,0.031504629254341124 +karman_re200,ppo,149,59.6,omega,front,0.03270561218261719 +karman_re200,ppo,149,59.6,omega,upper,-0.05720938444137574 +karman_re200,ppo,149,59.6,omega,lower,0.0006961584091186524 +karman_re200,ppo,150,60.0,omega,front,0.028488135337829592 +karman_re200,ppo,150,60.0,omega,upper,-0.03648736357688904 +karman_re200,ppo,150,60.0,omega,lower,0.00925710678100586 +karman_re200,ppo,151,60.4,omega,front,-0.0008452956378459931 +karman_re200,ppo,151,60.4,omega,upper,0.011142892837524414 +karman_re200,ppo,151,60.4,omega,lower,0.07707848072052002 +karman_re200,ppo,152,60.8,omega,front,-0.02240246772766113 +karman_re200,ppo,152,60.8,omega,upper,0.027113981246948242 +karman_re200,ppo,152,60.8,omega,lower,0.10890707492828369 +karman_re200,ppo,153,61.2,omega,front,-0.02650113105773926 +karman_re200,ppo,153,61.2,omega,upper,0.01358682632446289 +karman_re200,ppo,153,61.2,omega,lower,0.10032602310180665 +karman_re200,ppo,154,61.6,omega,front,-0.02984750032424927 +karman_re200,ppo,154,61.6,omega,upper,0.008904428482055663 +karman_re200,ppo,154,61.6,omega,lower,0.09673488140106201 +karman_re200,ppo,155,62.0,omega,front,-0.026449720859527587 +karman_re200,ppo,155,62.0,omega,upper,-0.02118575096130371 +karman_re200,ppo,155,62.0,omega,lower,0.06419817447662354 +karman_re200,ppo,156,62.4,omega,front,-0.019940389394760134 +karman_re200,ppo,156,62.4,omega,upper,-0.04303110420703888 +karman_re200,ppo,156,62.4,omega,lower,0.0378322896361351 +karman_re200,ppo,157,62.8,omega,front,-0.018644139766693116 +karman_re200,ppo,157,62.8,omega,upper,-0.031812776923179624 +karman_re200,ppo,157,62.8,omega,lower,0.04249913573265076 +karman_re200,ppo,158,63.2,omega,front,-0.001554379016160965 +karman_re200,ppo,158,63.2,omega,upper,-0.0485337883234024 +karman_re200,ppo,158,63.2,omega,lower,0.0051695632934570315 +karman_re200,ppo,159,63.6,omega,front,0.023753337860107422 +karman_re200,ppo,159,63.6,omega,upper,-0.07705667495727539 +karman_re200,ppo,159,63.6,omega,lower,-0.03677147388458252 +karman_re200,ppo,160,64.0,omega,front,0.033204739093780515 +karman_re200,ppo,160,64.0,omega,upper,-0.0822625494003296 +karman_re200,ppo,160,64.0,omega,lower,-0.04 +karman_re200,ppo,161,64.4,omega,front,0.03513399124145508 +karman_re200,ppo,161,64.4,omega,upper,-0.08049636840820312 +karman_re200,ppo,161,64.4,omega,lower,-0.032578954696655275 +karman_re200,ppo,162,64.8,omega,front,0.029131312370300293 +karman_re200,ppo,162,64.8,omega,upper,-0.06084614038467407 +karman_re200,ppo,162,64.8,omega,lower,0.011346168518066406 +karman_re200,ppo,163,65.2,omega,front,0.025765824317932128 +karman_re200,ppo,163,65.2,omega,upper,-0.05004860639572144 +karman_re200,ppo,163,65.2,omega,lower,0.044192200899124144 +karman_re200,ppo,164,65.6,omega,front,0.030004496574401854 +karman_re200,ppo,164,65.6,omega,upper,-0.05705933094024658 +karman_re200,ppo,164,65.6,omega,lower,0.014110708236694336 +karman_re200,ppo,165,66.0,omega,front,0.03479468107223511 +karman_re200,ppo,165,66.0,omega,upper,-0.054064719676971434 +karman_re200,ppo,165,66.0,omega,lower,-0.006619181632995606 +karman_re200,ppo,166,66.4,omega,front,0.024866867065429687 +karman_re200,ppo,166,66.4,omega,upper,-0.028312909603118896 +karman_re200,ppo,166,66.4,omega,lower,0.025441570281982424 +karman_re200,ppo,167,66.8,omega,front,-0.009375351667404176 +karman_re200,ppo,167,66.8,omega,upper,0.02167564392089844 +karman_re200,ppo,167,66.8,omega,lower,0.09944273471832275 +karman_re200,ppo,168,67.2,omega,front,-0.025958082675933837 +karman_re200,ppo,168,67.2,omega,upper,0.02471792221069336 +karman_re200,ppo,168,67.2,omega,lower,0.11089709758758545 +karman_re200,ppo,169,67.6,omega,front,-0.029762353897094727 +karman_re200,ppo,169,67.6,omega,upper,0.017207894325256348 +karman_re200,ppo,169,67.6,omega,lower,0.10604054927825927 +karman_re200,ppo,170,68.0,omega,front,-0.0322894811630249 +karman_re200,ppo,170,68.0,omega,upper,0.008131003379821778 +karman_re200,ppo,170,68.0,omega,lower,0.0965361738204956 +karman_re200,ppo,171,68.4,omega,front,-0.02652202844619751 +karman_re200,ppo,171,68.4,omega,upper,-0.02957813858985901 +karman_re200,ppo,171,68.4,omega,lower,0.056102846860885625 +karman_re200,ppo,172,68.8,omega,front,-0.02141890287399292 +karman_re200,ppo,172,68.8,omega,upper,-0.03881920397281647 +karman_re200,ppo,172,68.8,omega,lower,0.04373134970664978 +karman_re200,ppo,173,69.2,omega,front,-0.01593865156173706 +karman_re200,ppo,173,69.2,omega,upper,-0.03161192536354065 +karman_re200,ppo,173,69.2,omega,lower,0.03870068430900574 +karman_re200,ppo,174,69.6,omega,front,0.00960571587085724 +karman_re200,ppo,174,69.6,omega,upper,-0.06342548847198487 +karman_re200,ppo,174,69.6,omega,lower,-0.015160012245178224 +karman_re200,ppo,175,70.0,omega,front,0.028072500228881837 +karman_re200,ppo,175,70.0,omega,upper,-0.08136467933654785 +karman_re200,ppo,175,70.0,omega,lower,-0.04 +karman_re200,ppo,176,70.4,omega,front,0.03390836715698242 +karman_re200,ppo,176,70.4,omega,upper,-0.08432048320770263 +karman_re200,ppo,176,70.4,omega,lower,-0.04 +karman_re200,ppo,177,70.8,omega,front,0.03330313444137573 +karman_re200,ppo,177,70.8,omega,upper,-0.0778431510925293 +karman_re200,ppo,177,70.8,omega,lower,-0.024795117378234866 +karman_re200,ppo,178,71.2,omega,front,0.02758840322494507 +karman_re200,ppo,178,71.2,omega,upper,-0.0539959979057312 +karman_re200,ppo,178,71.2,omega,lower,0.030696403980255128 +karman_re200,ppo,179,71.6,omega,front,0.025678138732910156 +karman_re200,ppo,179,71.6,omega,upper,-0.05297728776931763 +karman_re200,ppo,179,71.6,omega,lower,0.03849994540214539 +karman_re200,ppo,180,72.0,omega,front,0.032007467746734616 +karman_re200,ppo,180,72.0,omega,upper,-0.06093067646026611 +karman_re200,ppo,180,72.0,omega,lower,0.00010843753814697265 +karman_re200,ppo,181,72.4,omega,front,0.03435678243637085 +karman_re200,ppo,181,72.4,omega,upper,-0.04832886040210724 +karman_re200,ppo,181,72.4,omega,lower,-0.007516660690307617 +karman_re200,ppo,182,72.8,omega,front,0.011621344089508058 +karman_re200,ppo,182,72.8,omega,upper,-0.00546126127243042 +karman_re200,ppo,182,72.8,omega,lower,0.05694305539131165 +karman_re200,ppo,183,73.2,omega,front,-0.020430948734283447 +karman_re200,ppo,183,73.2,omega,upper,0.0329508113861084 +karman_re200,ppo,183,73.2,omega,lower,0.11749144077301026 +karman_re200,ppo,184,73.6,omega,front,-0.02763394594192505 +karman_re200,ppo,184,73.6,omega,upper,0.016092753410339354 +karman_re200,ppo,184,73.6,omega,lower,0.10646973133087158 +karman_re200,ppo,185,74.0,omega,front,-0.03138279438018799 +karman_re200,ppo,185,74.0,omega,upper,0.01723085403442383 +karman_re200,ppo,185,74.0,omega,lower,0.10715773105621339 +karman_re200,ppo,186,74.4,omega,front,-0.03137359857559204 +karman_re200,ppo,186,74.4,omega,upper,-0.0025584983825683596 +karman_re200,ppo,186,74.4,omega,lower,0.08602456092834473 +karman_re200,ppo,187,74.8,omega,front,-0.024492731094360353 +karman_re200,ppo,187,74.8,omega,upper,-0.03289266109466553 +karman_re200,ppo,187,74.8,omega,lower,0.0505853796005249 +karman_re200,ppo,188,75.2,omega,front,-0.02265841007232666 +karman_re200,ppo,188,75.2,omega,upper,-0.029329342842102053 +karman_re200,ppo,188,75.2,omega,lower,0.04821942567825317 +karman_re200,ppo,189,75.6,omega,front,-0.012149274349212646 +karman_re200,ppo,189,75.6,omega,upper,-0.03359546482563019 +karman_re200,ppo,189,75.6,omega,lower,0.02850531816482544 +karman_re200,ppo,190,76.0,omega,front,0.014991000890731812 +karman_re200,ppo,190,76.0,omega,upper,-0.07015421867370605 +karman_re200,ppo,190,76.0,omega,lower,-0.026243071556091308 +karman_re200,ppo,191,76.4,omega,front,0.030646581649780274 +karman_re200,ppo,191,76.4,omega,upper,-0.08362545013427734 +karman_re200,ppo,191,76.4,omega,lower,-0.04 +karman_re200,ppo,192,76.8,omega,front,0.03500589609146118 +karman_re200,ppo,192,76.8,omega,upper,-0.0854646110534668 +karman_re200,ppo,192,76.8,omega,lower,-0.03956813335418701 +karman_re200,ppo,193,77.2,omega,front,0.032056694030761716 +karman_re200,ppo,193,77.2,omega,upper,-0.07547998905181885 +karman_re200,ppo,193,77.2,omega,lower,-0.019446101188659668 +karman_re200,ppo,194,77.6,omega,front,0.027150821685791016 +karman_re200,ppo,194,77.6,omega,upper,-0.051805169582366944 +karman_re200,ppo,194,77.6,omega,lower,0.037386718392372134 +karman_re200,ppo,195,78.0,omega,front,0.026637237071990966 +karman_re200,ppo,195,78.0,omega,upper,-0.05384335041046143 +karman_re200,ppo,195,78.0,omega,lower,0.03445629417896271 +karman_re200,ppo,196,78.4,omega,front,0.03276355028152466 +karman_re200,ppo,196,78.4,omega,upper,-0.060107665061950685 +karman_re200,ppo,196,78.4,omega,lower,-0.001346898078918457 +karman_re200,ppo,197,78.8,omega,front,0.03266455888748169 +karman_re200,ppo,197,78.8,omega,upper,-0.04368944585323334 +karman_re200,ppo,197,78.8,omega,lower,-2.8867721557617187e-05 +karman_re200,ppo,198,79.2,omega,front,0.0065789479017257695 +karman_re200,ppo,198,79.2,omega,upper,0.00151796817779541 +karman_re200,ppo,198,79.2,omega,lower,0.06798101425170898 +karman_re200,ppo,199,79.6,omega,front,-0.022400810718536376 +karman_re200,ppo,199,79.6,omega,upper,0.03133373737335205 +karman_re200,ppo,199,79.6,omega,lower,0.11566600322723389 +karman_re200,ppo,200,80.0,omega,front,-0.028335974216461182 +karman_re200,ppo,200,80.0,omega,upper,0.015368151664733888 +karman_re200,ppo,200,80.0,omega,lower,0.10447930335998536 +karman_re200,ppo,201,80.4,omega,front,-0.03205162763595581 +karman_re200,ppo,201,80.4,omega,upper,0.015779380798339845 +karman_re200,ppo,201,80.4,omega,lower,0.10542958736419678 +karman_re200,ppo,202,80.8,omega,front,-0.030648031234741212 +karman_re200,ppo,202,80.8,omega,upper,-0.009789390563964844 +karman_re200,ppo,202,80.8,omega,lower,0.07922443389892578 +karman_re200,ppo,203,81.2,omega,front,-0.024007964134216308 +karman_re200,ppo,203,81.2,omega,upper,-0.03493837058544159 +karman_re200,ppo,203,81.2,omega,lower,0.0480351984500885 +karman_re200,ppo,204,81.6,omega,front,-0.02280052423477173 +karman_re200,ppo,204,81.6,omega,upper,-0.026277931928634646 +karman_re200,ppo,204,81.6,omega,lower,0.04892872095108032 +karman_re200,ppo,205,82.0,omega,front,-0.008810591697692872 +karman_re200,ppo,205,82.0,omega,upper,-0.0369137716293335 +karman_re200,ppo,205,82.0,omega,lower,0.020953986644744873 +karman_re200,ppo,206,82.4,omega,front,0.01910311222076416 +karman_re200,ppo,206,82.4,omega,upper,-0.07446452617645263 +karman_re200,ppo,206,82.4,omega,lower,-0.03318843364715576 +karman_re200,ppo,207,82.8,omega,front,0.03268626689910889 +karman_re200,ppo,207,82.8,omega,upper,-0.0855890941619873 +karman_re200,ppo,207,82.8,omega,lower,-0.04 +karman_re200,ppo,208,83.2,omega,front,0.03594228744506836 +karman_re200,ppo,208,83.2,omega,upper,-0.08698554039001465 +karman_re200,ppo,208,83.2,omega,lower,-0.04 +karman_re200,ppo,209,83.6,omega,front,0.031136040687561036 +karman_re200,ppo,209,83.6,omega,upper,-0.0725733470916748 +karman_re200,ppo,209,83.6,omega,lower,-0.013235397338867187 +karman_re200,ppo,210,84.0,omega,front,0.026836397647857668 +karman_re200,ppo,210,84.0,omega,upper,-0.05039653301239014 +karman_re200,ppo,210,84.0,omega,lower,0.04253367304801941 +karman_re200,ppo,211,84.4,omega,front,0.02799726963043213 +karman_re200,ppo,211,84.4,omega,upper,-0.05509545564651489 +karman_re200,ppo,211,84.4,omega,lower,0.029416282176971436 +karman_re200,ppo,212,84.8,omega,front,0.0334558629989624 +karman_re200,ppo,212,84.8,omega,upper,-0.05821516275405884 +karman_re200,ppo,212,84.8,omega,lower,-0.00123075008392334 +karman_re200,ppo,213,85.2,omega,front,0.029167866706848147 +karman_re200,ppo,213,85.2,omega,upper,-0.037430260777473454 +karman_re200,ppo,213,85.2,omega,lower,0.010701651573181153 +karman_re200,ppo,214,85.6,omega,front,-0.0014153604209423065 +karman_re200,ppo,214,85.6,omega,upper,0.011713004112243653 +karman_re200,ppo,214,85.6,omega,lower,0.08191174983978272 +karman_re200,ppo,215,86.0,omega,front,-0.02296935558319092 +karman_re200,ppo,215,86.0,omega,upper,0.026518826484680177 +karman_re200,ppo,215,86.0,omega,lower,0.1094566535949707 +karman_re200,ppo,216,86.4,omega,front,-0.0275742244720459 +karman_re200,ppo,216,86.4,omega,upper,0.014614605903625488 +karman_re200,ppo,216,86.4,omega,lower,0.10149928092956544 +karman_re200,ppo,217,86.8,omega,front,-0.031348128318786625 +karman_re200,ppo,217,86.8,omega,upper,0.010674591064453126 +karman_re200,ppo,217,86.8,omega,lower,0.09962105751037598 +karman_re200,ppo,218,87.2,omega,front,-0.028305163383483888 +karman_re200,ppo,218,87.2,omega,upper,-0.019894466400146485 +karman_re200,ppo,218,87.2,omega,lower,0.06816705703735351 +karman_re200,ppo,219,87.6,omega,front,-0.021837084293365477 +karman_re200,ppo,219,87.6,omega,upper,-0.03946603059768677 +karman_re200,ppo,219,87.6,omega,lower,0.04288156509399414 +karman_re200,ppo,220,88.0,omega,front,-0.021300535202026367 +karman_re200,ppo,220,88.0,omega,upper,-0.026023073196411135 +karman_re200,ppo,220,88.0,omega,lower,0.04761425018310547 +karman_re200,ppo,221,88.4,omega,front,-0.004641962051391601 +karman_re200,ppo,221,88.4,omega,upper,-0.04202933192253113 +karman_re200,ppo,221,88.4,omega,lower,0.010672521591186524 +karman_re200,ppo,222,88.8,omega,front,0.022346484661102294 +karman_re200,ppo,222,88.8,omega,upper,-0.07657475471496582 +karman_re200,ppo,222,88.8,omega,lower,-0.037238330841064454 +karman_re200,ppo,223,89.2,omega,front,0.03390874624252319 +karman_re200,ppo,223,89.2,omega,upper,-0.08549089908599854 +karman_re200,ppo,223,89.2,omega,lower,-0.04 +karman_re200,ppo,224,89.6,omega,front,0.03615790605545044 +karman_re200,ppo,224,89.6,omega,upper,-0.08466854095458985 +karman_re200,ppo,224,89.6,omega,lower,-0.03798339366912842 +karman_re200,ppo,225,90.0,omega,front,0.03025477170944214 +karman_re200,ppo,225,90.0,omega,upper,-0.06604900121688843 +karman_re200,ppo,225,90.0,omega,lower,-0.0006477117538452149 +karman_re200,ppo,226,90.4,omega,front,0.026713805198669435 +karman_re200,ppo,226,90.4,omega,upper,-0.0495245772600174 +karman_re200,ppo,226,90.4,omega,lower,0.04473227024078369 +karman_re200,ppo,227,90.8,omega,front,0.029420053958892824 +karman_re200,ppo,227,90.8,omega,upper,-0.055113866329193115 +karman_re200,ppo,227,90.8,omega,lower,0.02313270092010498 +karman_re200,ppo,228,91.2,omega,front,0.03362826824188232 +karman_re200,ppo,228,91.2,omega,upper,-0.05446143627166748 +karman_re200,ppo,228,91.2,omega,lower,-0.00017448902130126953 +karman_re200,ppo,229,91.6,omega,front,0.022533624172210692 +karman_re200,ppo,229,91.6,omega,upper,-0.026843924522399903 +karman_re200,ppo,229,91.6,omega,lower,0.026672319173812867 +karman_re200,ppo,230,92.0,omega,front,-0.009390276074409485 +karman_re200,ppo,230,92.0,omega,upper,0.020095043182373047 +karman_re200,ppo,230,92.0,omega,lower,0.09316453456878662 +karman_re200,ppo,231,92.4,omega,front,-0.022901959419250488 +karman_re200,ppo,231,92.4,omega,upper,0.020398244857788086 +karman_re200,ppo,231,92.4,omega,lower,0.10189378738403321 +karman_re200,ppo,232,92.8,omega,front,-0.02714176893234253 +karman_re200,ppo,232,92.8,omega,upper,0.014050564765930177 +karman_re200,ppo,232,92.8,omega,lower,0.09946938037872315 +karman_re200,ppo,233,93.2,omega,front,-0.029980111122131347 +karman_re200,ppo,233,93.2,omega,upper,0.002980022430419922 +karman_re200,ppo,233,93.2,omega,lower,0.09118805885314941 +karman_re200,ppo,234,93.6,omega,front,-0.02498112916946411 +karman_re200,ppo,234,93.6,omega,upper,-0.031410396099090576 +karman_re200,ppo,234,93.6,omega,lower,0.05366989254951477 +karman_re200,ppo,235,94.0,omega,front,-0.01981101751327515 +karman_re200,ppo,235,94.0,omega,upper,-0.04191467344760895 +karman_re200,ppo,235,94.0,omega,lower,0.04056947588920593 +karman_re200,ppo,236,94.4,omega,front,-0.01729167699813843 +karman_re200,ppo,236,94.4,omega,upper,-0.029092223644256593 +karman_re200,ppo,236,94.4,omega,lower,0.041481828093528746 +karman_re200,ppo,237,94.8,omega,front,0.005344220399856567 +karman_re200,ppo,237,94.8,omega,upper,-0.05549297332763672 +karman_re200,ppo,237,94.8,omega,lower,-0.007273378372192383 +karman_re200,ppo,238,95.2,omega,front,0.02793092727661133 +karman_re200,ppo,238,95.2,omega,upper,-0.08081272602081299 +karman_re200,ppo,238,95.2,omega,lower,-0.04 +karman_re200,ppo,239,95.6,omega,front,0.03434377670288086 +karman_re200,ppo,239,95.6,omega,upper,-0.08338884830474853 +karman_re200,ppo,239,95.6,omega,lower,-0.04 +karman_re200,ppo,240,96.0,omega,front,0.03430510997772217 +karman_re200,ppo,240,96.0,omega,upper,-0.07943530559539795 +karman_re200,ppo,240,96.0,omega,lower,-0.028665971755981446 +karman_re200,ppo,241,96.4,omega,front,0.028452270030975342 +karman_re200,ppo,241,96.4,omega,upper,-0.05704620599746704 +karman_re200,ppo,241,96.4,omega,lower,0.02132489562034607 +karman_re200,ppo,242,96.8,omega,front,0.02628621578216553 +karman_re200,ppo,242,96.8,omega,upper,-0.05166702270507813 +karman_re200,ppo,242,96.8,omega,lower,0.03884873330593109 +karman_re200,ppo,243,97.2,omega,front,0.03194794654846191 +karman_re200,ppo,243,97.2,omega,upper,-0.05889587640762329 +karman_re200,ppo,243,97.2,omega,lower,0.004747052192687989 +karman_re200,ppo,244,97.6,omega,front,0.034692635536193846 +karman_re200,ppo,244,97.6,omega,upper,-0.04966271698474884 +karman_re200,ppo,244,97.6,omega,lower,-0.005215554237365722 +karman_re200,ppo,245,98.0,omega,front,0.012350713014602662 +karman_re200,ppo,245,98.0,omega,upper,-0.007500710487365723 +karman_re200,ppo,245,98.0,omega,lower,0.05448288321495056 +karman_re200,ppo,246,98.4,omega,front,-0.018961621522903444 +karman_re200,ppo,246,98.4,omega,upper,0.03122565269470215 +karman_re200,ppo,246,98.4,omega,lower,0.11306183338165283 +karman_re200,ppo,247,98.8,omega,front,-0.0253590989112854 +karman_re200,ppo,247,98.8,omega,upper,0.015603852272033692 +karman_re200,ppo,247,98.8,omega,lower,0.10220361232757569 +karman_re200,ppo,248,99.2,omega,front,-0.02920224905014038 +karman_re200,ppo,248,99.2,omega,upper,0.01572915554046631 +karman_re200,ppo,248,99.2,omega,lower,0.10318241119384766 +karman_re200,ppo,249,99.6,omega,front,-0.02965869188308716 +karman_re200,ppo,249,99.6,omega,upper,-0.003421149253845215 +karman_re200,ppo,249,99.6,omega,lower,0.08404096603393554 +karman_re200,ppo,250,100.0,omega,front,-0.02290299654006958 +karman_re200,ppo,250,100.0,omega,upper,-0.035604248046875 +karman_re200,ppo,250,100.0,omega,lower,0.046936016082763675 +karman_re200,ppo,251,100.4,omega,front,-0.0207517671585083 +karman_re200,ppo,251,100.4,omega,upper,-0.03281221389770508 +karman_re200,ppo,251,100.4,omega,lower,0.04574880123138428 +karman_re200,ppo,252,100.8,omega,front,-0.010012542009353639 +karman_re200,ppo,252,100.8,omega,upper,-0.0365972426533699 +karman_re200,ppo,252,100.8,omega,lower,0.025676412582397463 +karman_re200,ppo,253,101.2,omega,front,0.016676458120346068 +karman_re200,ppo,253,101.2,omega,upper,-0.07093443632125855 +karman_re200,ppo,253,101.2,omega,lower,-0.026474928855895998 +karman_re200,ppo,254,101.6,omega,front,0.030459821224212646 +karman_re200,ppo,254,101.6,omega,upper,-0.08186750411987305 +karman_re200,ppo,254,101.6,omega,lower,-0.04 +karman_re200,ppo,255,102.0,omega,front,0.0343389630317688 +karman_re200,ppo,255,102.0,omega,upper,-0.0826179599761963 +karman_re200,ppo,255,102.0,omega,lower,-0.03638411998748779 +karman_re200,ppo,256,102.4,omega,front,0.030530381202697753 +karman_re200,ppo,256,102.4,omega,upper,-0.07166872978210449 +karman_re200,ppo,256,102.4,omega,lower,-0.012239537239074708 +karman_re200,ppo,257,102.8,omega,front,0.025709736347198486 +karman_re200,ppo,257,102.8,omega,upper,-0.04915827095508576 +karman_re200,ppo,257,102.8,omega,lower,0.042730912566185 +karman_re200,ppo,258,103.2,omega,front,0.025869603157043456 +karman_re200,ppo,258,103.2,omega,upper,-0.052871809005737305 +karman_re200,ppo,258,103.2,omega,lower,0.031262195110321044 +karman_re200,ppo,259,103.6,omega,front,0.03165528535842896 +karman_re200,ppo,259,103.6,omega,upper,-0.05726069450378418 +karman_re200,ppo,259,103.6,omega,lower,-0.0023764657974243166 +karman_re200,ppo,260,104.0,omega,front,0.02980952262878418 +karman_re200,ppo,260,104.0,omega,upper,-0.03855261266231537 +karman_re200,ppo,260,104.0,omega,lower,0.0029512453079223633 +karman_re200,ppo,261,104.4,omega,front,0.0065198117494583135 +karman_re200,ppo,261,104.4,omega,upper,0.0012672662734985352 +karman_re200,ppo,261,104.4,omega,lower,0.06515645980834961 +karman_re200,ppo,262,104.8,omega,front,-0.01984497904777527 +karman_re200,ppo,262,104.8,omega,upper,0.029026403427124023 +karman_re200,ppo,262,104.8,omega,lower,0.1092133903503418 +karman_re200,ppo,263,105.2,omega,front,-0.02751969575881958 +karman_re200,ppo,263,105.2,omega,upper,0.015952749252319338 +karman_re200,ppo,263,105.2,omega,lower,0.10225899696350098 +karman_re200,ppo,264,105.6,omega,front,-0.031718857288360595 +karman_re200,ppo,264,105.6,omega,upper,0.015428075790405274 +karman_re200,ppo,264,105.6,omega,lower,0.10221398830413819 +karman_re200,ppo,265,106.0,omega,front,-0.030350794792175294 +karman_re200,ppo,265,106.0,omega,upper,-0.010191242694854736 +karman_re200,ppo,265,106.0,omega,lower,0.07728356838226319 +karman_re200,ppo,266,106.4,omega,front,-0.02342298746109009 +karman_re200,ppo,266,106.4,omega,upper,-0.03688495218753815 +karman_re200,ppo,266,106.4,omega,lower,0.04673303008079529 +karman_re200,ppo,267,106.8,omega,front,-0.02192939043045044 +karman_re200,ppo,267,106.8,omega,upper,-0.028842570781707766 +karman_re200,ppo,267,106.8,omega,lower,0.04884839534759522 +karman_re200,ppo,268,107.2,omega,front,-0.007642239928245545 +karman_re200,ppo,268,107.2,omega,upper,-0.03957149624824524 +karman_re200,ppo,268,107.2,omega,lower,0.019455890655517578 +karman_re200,ppo,269,107.6,omega,front,0.01882131576538086 +karman_re200,ppo,269,107.6,omega,upper,-0.0733243989944458 +karman_re200,ppo,269,107.6,omega,lower,-0.030651674270629883 +karman_re200,ppo,270,108.0,omega,front,0.03116940498352051 +karman_re200,ppo,270,108.0,omega,upper,-0.08282243728637695 +karman_re200,ppo,270,108.0,omega,lower,-0.04 +karman_re200,ppo,271,108.4,omega,front,0.03526085138320923 +karman_re200,ppo,271,108.4,omega,upper,-0.08456897735595703 +karman_re200,ppo,271,108.4,omega,lower,-0.03812176704406738 +karman_re200,ppo,272,108.8,omega,front,0.030681352615356445 +karman_re200,ppo,272,108.8,omega,upper,-0.0710279631614685 +karman_re200,ppo,272,108.8,omega,lower,-0.009848518371582031 +karman_re200,ppo,273,109.2,omega,front,0.02626514196395874 +karman_re200,ppo,273,109.2,omega,upper,-0.05000821113586426 +karman_re200,ppo,273,109.2,omega,lower,0.04432263612747193 +karman_re200,ppo,274,109.6,omega,front,0.027612979412078856 +karman_re200,ppo,274,109.6,omega,upper,-0.0555817174911499 +karman_re200,ppo,274,109.6,omega,lower,0.028049299716949465 +karman_re200,ppo,275,110.0,omega,front,0.03302895545959473 +karman_re200,ppo,275,110.0,omega,upper,-0.05833615064620972 +karman_re200,ppo,275,110.0,omega,lower,-0.0017933034896850586 +karman_re200,ppo,276,110.4,omega,front,0.026341407299041747 +karman_re200,ppo,276,110.4,omega,upper,-0.03302884459495545 +karman_re200,ppo,276,110.4,omega,lower,0.0156793212890625 +karman_re200,ppo,277,110.8,omega,front,-0.004069212675094604 +karman_re200,ppo,277,110.8,omega,upper,0.0152897310256958 +karman_re200,ppo,277,110.8,omega,lower,0.08485233783721924 +karman_re200,ppo,278,111.2,omega,front,-0.022495079040527343 +karman_re200,ppo,278,111.2,omega,upper,0.024545674324035646 +karman_re200,ppo,278,111.2,omega,lower,0.1060470724105835 +karman_re200,ppo,279,111.6,omega,front,-0.02672694206237793 +karman_re200,ppo,279,111.6,omega,upper,0.014235572814941406 +karman_re200,ppo,279,111.6,omega,lower,0.09960132598876953 +karman_re200,ppo,280,112.0,omega,front,-0.03030282735824585 +karman_re200,ppo,280,112.0,omega,upper,0.008069534301757813 +karman_re200,ppo,280,112.0,omega,lower,0.09590163230895997 +karman_re200,ppo,281,112.4,omega,front,-0.026929311752319336 +karman_re200,ppo,281,112.4,omega,upper,-0.022377010583877564 +karman_re200,ppo,281,112.4,omega,lower,0.06458858966827392 +karman_re200,ppo,282,112.8,omega,front,-0.02127995252609253 +karman_re200,ppo,282,112.8,omega,upper,-0.039097793102264404 +karman_re200,ppo,282,112.8,omega,lower,0.04288215458393097 +karman_re200,ppo,283,113.2,omega,front,-0.021004462242126466 +karman_re200,ppo,283,113.2,omega,upper,-0.0255433988571167 +karman_re200,ppo,283,113.2,omega,lower,0.04710995316505432 +karman_re200,ppo,284,113.6,omega,front,-0.0038299673795700075 +karman_re200,ppo,284,113.6,omega,upper,-0.04402406632900238 +karman_re200,ppo,284,113.6,omega,lower,0.007581095695495606 +karman_re200,ppo,285,114.0,omega,front,0.022697362899780273 +karman_re200,ppo,285,114.0,omega,upper,-0.07756394386291504 +karman_re200,ppo,285,114.0,omega,lower,-0.037932028770446775 +karman_re200,ppo,286,114.4,omega,front,0.032830638885498045 +karman_re200,ppo,286,114.4,omega,upper,-0.08320012092590333 +karman_re200,ppo,286,114.4,omega,lower,-0.04 +karman_re200,ppo,287,114.8,omega,front,0.035262792110443114 +karman_re200,ppo,287,114.8,omega,upper,-0.08313589572906495 +karman_re200,ppo,287,114.8,omega,lower,-0.03529661655426025 +karman_re200,ppo,288,115.2,omega,front,0.029497542381286622 +karman_re200,ppo,288,115.2,omega,upper,-0.06526666164398194 +karman_re200,ppo,288,115.2,omega,lower,0.0017579126358032227 +karman_re200,ppo,289,115.6,omega,front,0.02595921277999878 +karman_re200,ppo,289,115.6,omega,upper,-0.04967837870121002 +karman_re200,ppo,289,115.6,omega,lower,0.04478931427001953 +karman_re200,ppo,290,116.0,omega,front,0.029240291118621826 +karman_re200,ppo,290,116.0,omega,upper,-0.055561015605926516 +karman_re200,ppo,290,116.0,omega,lower,0.021363998651504516 +karman_re200,ppo,291,116.4,omega,front,0.03377844572067261 +karman_re200,ppo,291,116.4,omega,upper,-0.05468176603317261 +karman_re200,ppo,291,116.4,omega,lower,-0.0012616586685180663 +karman_re200,ppo,292,116.8,omega,front,0.02311954498291016 +karman_re200,ppo,292,116.8,omega,upper,-0.02730376958847046 +karman_re200,ppo,292,116.8,omega,lower,0.026469739675521853 +karman_re200,ppo,293,117.2,omega,front,-0.009163829684257508 +karman_re200,ppo,293,117.2,omega,upper,0.020254569053649904 +karman_re200,ppo,293,117.2,omega,lower,0.09339211463928222 +karman_re200,ppo,294,117.6,omega,front,-0.023040359020233155 +karman_re200,ppo,294,117.6,omega,upper,0.021404476165771485 +karman_re200,ppo,294,117.6,omega,lower,0.10241681098937988 +karman_re200,ppo,295,118.0,omega,front,-0.02690281867980957 +karman_re200,ppo,295,118.0,omega,upper,0.014622011184692384 +karman_re200,ppo,295,118.0,omega,lower,0.09923223972320556 +karman_re200,ppo,296,118.4,omega,front,-0.029815540313720704 +karman_re200,ppo,296,118.4,omega,upper,0.004096851348876953 +karman_re200,ppo,296,118.4,omega,lower,0.0916221284866333 +karman_re200,ppo,297,118.8,omega,front,-0.025035338401794435 +karman_re200,ppo,297,118.8,omega,upper,-0.029435342550277712 +karman_re200,ppo,297,118.8,omega,lower,0.05531235575675964 +karman_re200,ppo,298,119.2,omega,front,-0.020045127868652344 +karman_re200,ppo,298,119.2,omega,upper,-0.039813019037246704 +karman_re200,ppo,298,119.2,omega,lower,0.04140835225582123 +karman_re200,ppo,299,119.6,omega,front,-0.017145862579345705 +karman_re200,ppo,299,119.6,omega,upper,-0.02821414351463318 +karman_re200,ppo,299,119.6,omega,lower,0.041164790391921995 +karman_re200,ppo,300,120.0,omega,front,0.005827085971832275 +karman_re200,ppo,300,120.0,omega,upper,-0.05594348669052124 +karman_re200,ppo,300,120.0,omega,lower,-0.008005876541137696 +karman_re200,ppo,301,120.4,omega,front,0.02761061429977417 +karman_re200,ppo,301,120.4,omega,upper,-0.0807547950744629 +karman_re200,ppo,301,120.4,omega,lower,-0.04 +karman_re200,ppo,302,120.8,omega,front,0.03338388442993164 +karman_re200,ppo,302,120.8,omega,upper,-0.08282619476318359 +karman_re200,ppo,302,120.8,omega,lower,-0.03923649311065674 +karman_re200,ppo,303,121.2,omega,front,0.03358229398727417 +karman_re200,ppo,303,121.2,omega,upper,-0.07941092014312744 +karman_re200,ppo,303,121.2,omega,lower,-0.02752765655517578 +karman_re200,ppo,304,121.6,omega,front,0.027713782787322998 +karman_re200,ppo,304,121.6,omega,upper,-0.05674699544906616 +karman_re200,ppo,304,121.6,omega,lower,0.021813734769821166 +karman_re200,ppo,305,122.0,omega,front,0.025259268283843995 +karman_re200,ppo,305,122.0,omega,upper,-0.05051071882247925 +karman_re200,ppo,305,122.0,omega,lower,0.04101012587547302 +karman_re200,ppo,306,122.4,omega,front,0.030595886707305908 +karman_re200,ppo,306,122.4,omega,upper,-0.057357628345489506 +karman_re200,ppo,306,122.4,omega,lower,0.008177471160888673 +karman_re200,ppo,307,122.8,omega,front,0.03313466787338257 +karman_re200,ppo,307,122.8,omega,upper,-0.04825107157230377 +karman_re200,ppo,307,122.8,omega,lower,-0.002559666633605957 +karman_re200,ppo,308,123.2,omega,front,0.013103892803192138 +karman_re200,ppo,308,123.2,omega,upper,-0.009972457885742188 +karman_re200,ppo,308,123.2,omega,lower,0.04949568510055542 +karman_re200,ppo,309,123.6,omega,front,-0.017700570821762084 +karman_re200,ppo,309,123.6,omega,upper,0.029008493423461915 +karman_re200,ppo,309,123.6,omega,lower,0.10651328086853028 +karman_re200,ppo,310,124.0,omega,front,-0.02481517791748047 +karman_re200,ppo,310,124.0,omega,upper,0.016090683937072754 +karman_re200,ppo,310,124.0,omega,lower,0.09898599624633789 +karman_re200,ppo,311,124.4,omega,front,-0.028585169315338135 +karman_re200,ppo,311,124.4,omega,upper,0.01412043571472168 +karman_re200,ppo,311,124.4,omega,lower,0.09980263233184815 +karman_re200,ppo,312,124.8,omega,front,-0.029335319995880127 +karman_re200,ppo,312,124.8,omega,upper,-0.003598456382751465 +karman_re200,ppo,312,124.8,omega,lower,0.08415570735931396 +karman_re200,ppo,313,125.2,omega,front,-0.02294571876525879 +karman_re200,ppo,313,125.2,omega,upper,-0.03512995094060898 +karman_re200,ppo,313,125.2,omega,lower,0.047901746034622196 +karman_re200,ppo,314,125.6,omega,front,-0.020379559993743898 +karman_re200,ppo,314,125.6,omega,upper,-0.03332085847854614 +karman_re200,ppo,314,125.6,omega,lower,0.04536744952201843 +karman_re200,ppo,315,126.0,omega,front,-0.014062575101852418 +karman_re200,ppo,315,126.0,omega,upper,-0.02957556962966919 +karman_re200,ppo,315,126.0,omega,lower,0.03292806386947632 +karman_re200,ppo,316,126.4,omega,front,0.011635017395019532 +karman_re200,ppo,316,126.4,omega,upper,-0.06412250518798829 +karman_re200,ppo,316,126.4,omega,lower,-0.019095015525817872 +karman_re200,ppo,317,126.8,omega,front,0.029911181926727294 +karman_re200,ppo,317,126.8,omega,upper,-0.08284480571746826 +karman_re200,ppo,317,126.8,omega,lower,-0.04 +karman_re200,ppo,318,127.2,omega,front,0.03404843330383301 +karman_re200,ppo,318,127.2,omega,upper,-0.08253083705902099 +karman_re200,ppo,318,127.2,omega,lower,-0.03709597110748291 +karman_re200,ppo,319,127.6,omega,front,0.03216343879699707 +karman_re200,ppo,319,127.6,omega,upper,-0.07555470943450927 +karman_re200,ppo,319,127.6,omega,lower,-0.02020421028137207 +karman_re200,ppo,320,128.0,omega,front,0.027017471790313722 +karman_re200,ppo,320,128.0,omega,upper,-0.052074482440948484 +karman_re200,ppo,320,128.0,omega,lower,0.03289626717567444 +karman_re200,ppo,321,128.4,omega,front,0.025569684505462646 +karman_re200,ppo,321,128.4,omega,upper,-0.05079813241958618 +karman_re200,ppo,321,128.4,omega,lower,0.03677232623100281 +karman_re200,ppo,322,128.8,omega,front,0.030797605514526368 +karman_re200,ppo,322,128.8,omega,upper,-0.056631200313568116 +karman_re200,ppo,322,128.8,omega,lower,0.0033713626861572267 +karman_re200,ppo,323,129.2,omega,front,0.030328869819641113 +karman_re200,ppo,323,129.2,omega,upper,-0.04118809223175049 +karman_re200,ppo,323,129.2,omega,lower,0.0017732906341552735 +karman_re200,ppo,324,129.6,omega,front,0.00786616027355194 +karman_re200,ppo,324,129.6,omega,upper,-0.0017083263397216796 +karman_re200,ppo,324,129.6,omega,lower,0.05866034150123596 +karman_re200,ppo,325,130.0,omega,front,-0.01911849856376648 +karman_re200,ppo,325,130.0,omega,upper,0.0286806058883667 +karman_re200,ppo,325,130.0,omega,lower,0.10589025974273682 +karman_re200,ppo,326,130.4,omega,front,-0.02587656021118164 +karman_re200,ppo,326,130.4,omega,upper,0.015311341285705566 +karman_re200,ppo,326,130.4,omega,lower,0.09861546516418457 +karman_re200,ppo,327,130.8,omega,front,-0.029835703372955324 +karman_re200,ppo,327,130.8,omega,upper,0.013401775360107422 +karman_re200,ppo,327,130.8,omega,lower,0.09919824600219727 +karman_re200,ppo,328,131.2,omega,front,-0.028988378047943117 +karman_re200,ppo,328,131.2,omega,upper,-0.009325504302978516 +karman_re200,ppo,328,131.2,omega,lower,0.07757498264312744 +karman_re200,ppo,329,131.6,omega,front,-0.022297625541687013 +karman_re200,ppo,329,131.6,omega,upper,-0.03746672511100769 +karman_re200,ppo,329,131.6,omega,lower,0.04451907753944397 +karman_re200,ppo,330,132.0,omega,front,-0.020594449043273927 +karman_re200,ppo,330,132.0,omega,upper,-0.031183598041534425 +karman_re200,ppo,330,132.0,omega,lower,0.04589170694351196 +karman_re200,ppo,331,132.4,omega,front,-0.010460343360900879 +karman_re200,ppo,331,132.4,omega,upper,-0.03461419880390167 +karman_re200,ppo,331,132.4,omega,lower,0.024502837657928468 +karman_re200,ppo,332,132.8,omega,front,0.0162505841255188 +karman_re200,ppo,332,132.8,omega,upper,-0.06951884269714356 +karman_re200,ppo,332,132.8,omega,lower,-0.026484856605529787 +karman_re200,ppo,333,133.2,omega,front,0.031401407718658444 +karman_re200,ppo,333,133.2,omega,upper,-0.08335700035095216 +karman_re200,ppo,333,133.2,omega,lower,-0.04 +karman_re200,ppo,334,133.6,omega,front,0.03490298271179199 +karman_re200,ppo,334,133.6,omega,upper,-0.08310871601104737 +karman_re200,ppo,334,133.6,omega,lower,-0.03732995510101318 +karman_re200,ppo,335,134.0,omega,front,0.03118865728378296 +karman_re200,ppo,335,134.0,omega,upper,-0.07198493242263794 +karman_re200,ppo,335,134.0,omega,lower,-0.01312985897064209 +karman_re200,ppo,336,134.4,omega,front,0.026683142185211183 +karman_re200,ppo,336,134.4,omega,upper,-0.050003292560577395 +karman_re200,ppo,336,134.4,omega,lower,0.04031141936779022 +karman_re200,ppo,337,134.8,omega,front,0.026970460414886474 +karman_re200,ppo,337,134.8,omega,upper,-0.05326237678527832 +karman_re200,ppo,337,134.8,omega,lower,0.030239039659500123 +karman_re200,ppo,338,135.2,omega,front,0.032461793422698976 +karman_re200,ppo,338,135.2,omega,upper,-0.05756520509719849 +karman_re200,ppo,338,135.2,omega,lower,-0.0014778327941894532 +karman_re200,ppo,339,135.6,omega,front,0.029681153297424316 +karman_re200,ppo,339,135.6,omega,upper,-0.038517348766326905 +karman_re200,ppo,339,135.6,omega,lower,0.006242833137512207 +karman_re200,ppo,340,136.0,omega,front,0.0016826431453227997 +karman_re200,ppo,340,136.0,omega,upper,0.007806353569030762 +karman_re200,ppo,340,136.0,omega,lower,0.07400072574615478 +karman_re200,ppo,341,136.4,omega,front,-0.022657084465026855 +karman_re200,ppo,341,136.4,omega,upper,0.029811625480651856 +karman_re200,ppo,341,136.4,omega,lower,0.1108859920501709 +karman_re200,ppo,342,136.8,omega,front,-0.027602546215057373 +karman_re200,ppo,342,136.8,omega,upper,0.015550880432128907 +karman_re200,ppo,342,136.8,omega,lower,0.10184145450592041 +karman_re200,ppo,343,137.2,omega,front,-0.03104063034057617 +karman_re200,ppo,343,137.2,omega,upper,0.012879204750061036 +karman_re200,ppo,343,137.2,omega,lower,0.10046777725219727 +karman_re200,ppo,344,137.6,omega,front,-0.028473923206329348 +karman_re200,ppo,344,137.6,omega,upper,-0.01578517198562622 +karman_re200,ppo,344,137.6,omega,lower,0.07158671379089356 +karman_re200,ppo,345,138.0,omega,front,-0.021845276355743407 +karman_re200,ppo,345,138.0,omega,upper,-0.03850420296192169 +karman_re200,ppo,345,138.0,omega,lower,0.04329675316810608 +karman_re200,ppo,346,138.4,omega,front,-0.020774481296539308 +karman_re200,ppo,346,138.4,omega,upper,-0.028284735679626465 +karman_re200,ppo,346,138.4,omega,lower,0.04630369782447815 +karman_re200,ppo,347,138.8,omega,front,-0.0055513644218444826 +karman_re200,ppo,347,138.8,omega,upper,-0.04194292783737183 +karman_re200,ppo,347,138.8,omega,lower,0.013107361793518067 +karman_re200,ppo,348,139.2,omega,front,0.020961873531341553 +karman_re200,ppo,348,139.2,omega,upper,-0.07519354820251466 +karman_re200,ppo,348,139.2,omega,lower,-0.03442616939544678 +karman_re200,ppo,349,139.6,omega,front,0.032818536758422855 +karman_re200,ppo,349,139.6,omega,upper,-0.08391587734222412 +karman_re200,ppo,349,139.6,omega,lower,-0.04 +karman_re200,ppo,350,140.0,omega,front,0.035617828369140625 +karman_re200,ppo,350,140.0,omega,upper,-0.0836033821105957 +karman_re200,ppo,350,140.0,omega,lower,-0.037024397850036625 +karman_re200,ppo,351,140.4,omega,front,0.03003079652786255 +karman_re200,ppo,351,140.4,omega,upper,-0.06692900180816651 +karman_re200,ppo,351,140.4,omega,lower,-0.002203240394592285 +karman_re200,ppo,352,140.8,omega,front,0.02608440637588501 +karman_re200,ppo,352,140.8,omega,upper,-0.04947242796421051 +karman_re200,ppo,352,140.8,omega,lower,0.04523372769355774 +karman_re200,ppo,353,141.2,omega,front,0.028880822658538818 +karman_re200,ppo,353,141.2,omega,upper,-0.05566745042800903 +karman_re200,ppo,353,141.2,omega,lower,0.022539973258972168 +karman_re200,ppo,354,141.6,omega,front,0.0342514181137085 +karman_re200,ppo,354,141.6,omega,upper,-0.0567223858833313 +karman_re200,ppo,354,141.6,omega,lower,-0.004140048027038574 +karman_re200,ppo,355,142.0,omega,front,0.02742407321929932 +karman_re200,ppo,355,142.0,omega,upper,-0.033797791004180906 +karman_re200,ppo,355,142.0,omega,lower,0.016359024047851563 +karman_re200,ppo,356,142.4,omega,front,-0.005088571906089783 +karman_re200,ppo,356,142.4,omega,upper,0.016562166213989257 +karman_re200,ppo,356,142.4,omega,lower,0.08973596096038819 +karman_re200,ppo,357,142.8,omega,front,-0.02427675485610962 +karman_re200,ppo,357,142.8,omega,upper,0.026372694969177247 +karman_re200,ppo,357,142.8,omega,lower,0.11028598785400391 +karman_re200,ppo,358,143.2,omega,front,-0.028457179069519042 +karman_re200,ppo,358,143.2,omega,upper,0.016181092262268066 +karman_re200,ppo,358,143.2,omega,lower,0.10388054370880127 +karman_re200,ppo,359,143.6,omega,front,-0.03171038150787354 +karman_re200,ppo,359,143.6,omega,upper,0.009295306205749513 +karman_re200,ppo,359,143.6,omega,lower,0.09820950984954835 +karman_re200,ppo,360,144.0,omega,front,-0.027619271278381347 +karman_re200,ppo,360,144.0,omega,upper,-0.023969273567199707 +karman_re200,ppo,360,144.0,omega,lower,0.06340675830841065 +karman_re200,ppo,361,144.4,omega,front,-0.021633505821228027 +karman_re200,ppo,361,144.4,omega,upper,-0.03940455436706543 +karman_re200,ppo,361,144.4,omega,lower,0.04323151707649231 +karman_re200,ppo,362,144.8,omega,front,-0.0194924533367157 +karman_re200,ppo,362,144.8,omega,upper,-0.027252357006072998 +karman_re200,ppo,362,144.8,omega,lower,0.045306248664855955 +karman_re200,ppo,363,145.2,omega,front,0.0018965572118759156 +karman_re200,ppo,363,145.2,omega,upper,-0.052011582851409915 +karman_re200,ppo,363,145.2,omega,lower,-0.001133723258972168 +karman_re200,ppo,364,145.6,omega,front,0.025883333683013918 +karman_re200,ppo,364,145.6,omega,upper,-0.08007229328155517 +karman_re200,ppo,364,145.6,omega,lower,-0.04 +karman_re200,ppo,365,146.0,omega,front,0.033786888122558596 +karman_re200,ppo,365,146.0,omega,upper,-0.0846915864944458 +karman_re200,ppo,365,146.0,omega,lower,-0.04 +karman_re200,ppo,366,146.4,omega,front,0.03502199411392212 +karman_re200,ppo,366,146.4,omega,upper,-0.08239858627319337 +karman_re200,ppo,366,146.4,omega,lower,-0.0332927942276001 +karman_re200,ppo,367,146.8,omega,front,0.028740551471710205 +karman_re200,ppo,367,146.8,omega,upper,-0.06027717590332032 +karman_re200,ppo,367,146.8,omega,lower,0.014144973754882812 +karman_re200,ppo,368,147.2,omega,front,0.025707542896270752 +karman_re200,ppo,368,147.2,omega,upper,-0.05098819255828858 +karman_re200,ppo,368,147.2,omega,lower,0.042955962419509885 +karman_re200,ppo,369,147.6,omega,front,0.03069603443145752 +karman_re200,ppo,369,147.6,omega,upper,-0.05783393144607544 +karman_re200,ppo,369,147.6,omega,lower,0.011413450241088868 +karman_re200,ppo,370,148.0,omega,front,0.035061273574829105 +karman_re200,ppo,370,148.0,omega,upper,-0.05276190996170044 +karman_re200,ppo,370,148.0,omega,lower,-0.006500773429870606 +karman_re200,ppo,371,148.4,omega,front,0.01988275647163391 +karman_re200,ppo,371,148.4,omega,upper,-0.019873461723327636 +karman_re200,ppo,371,148.4,omega,lower,0.03691633701324463 +karman_re200,ppo,372,148.8,omega,front,-0.014629462957382202 +karman_re200,ppo,372,148.8,omega,upper,0.02708292007446289 +karman_re200,ppo,372,148.8,omega,lower,0.10660414695739746 +karman_re200,ppo,373,149.2,omega,front,-0.025385656356811524 +karman_re200,ppo,373,149.2,omega,upper,0.01885866165161133 +karman_re200,ppo,373,149.2,omega,lower,0.10484411239624024 +karman_re200,ppo,374,149.6,omega,front,-0.028959636688232423 +karman_re200,ppo,374,149.6,omega,upper,0.015537433624267578 +karman_re200,ppo,374,149.6,omega,lower,0.1035268783569336 +karman_re200,ppo,375,150.0,omega,front,-0.031193425655364992 +karman_re200,ppo,375,150.0,omega,upper,0.003617038726806641 +karman_re200,ppo,375,150.0,omega,lower,0.09174562931060791 +karman_re200,ppo,376,150.4,omega,front,-0.025066981315612795 +karman_re200,ppo,376,150.4,omega,upper,-0.03241408288478852 +karman_re200,ppo,376,150.4,omega,lower,0.05156856179237366 +karman_re200,ppo,377,150.8,omega,front,-0.021245927810668946 +karman_re200,ppo,377,150.8,omega,upper,-0.03628739267587662 +karman_re200,ppo,377,150.8,omega,lower,0.044551745653152466 +karman_re200,ppo,378,151.2,omega,front,-0.016099578142166136 +karman_re200,ppo,378,151.2,omega,upper,-0.028828186988830568 +karman_re200,ppo,378,151.2,omega,lower,0.038060297966003416 +karman_re200,ppo,379,151.6,omega,front,0.00982782542705536 +karman_re200,ppo,379,151.6,omega,upper,-0.06266387939453125 +karman_re200,ppo,379,151.6,omega,lower,-0.016278047561645508 +karman_re200,ppo,380,152.0,omega,front,0.02921163558959961 +karman_re200,ppo,380,152.0,omega,upper,-0.08277219295501709 +karman_re200,ppo,380,152.0,omega,lower,-0.04 +karman_re200,ppo,381,152.4,omega,front,0.03417450189590454 +karman_re200,ppo,381,152.4,omega,upper,-0.08394009113311768 +karman_re200,ppo,381,152.4,omega,lower,-0.039339303970336914 +karman_re200,ppo,382,152.8,omega,front,0.03318691730499267 +karman_re200,ppo,382,152.8,omega,upper,-0.07809385776519776 +karman_re200,ppo,382,152.8,omega,lower,-0.024853544235229494 +karman_re200,ppo,383,153.2,omega,front,0.027598929405212403 +karman_re200,ppo,383,153.2,omega,upper,-0.05422758102416992 +karman_re200,ppo,383,153.2,omega,lower,0.028930132389068604 +karman_re200,ppo,384,153.6,omega,front,0.025736873149871827 +karman_re200,ppo,384,153.6,omega,upper,-0.051667065620422364 +karman_re200,ppo,384,153.6,omega,lower,0.03872475028038025 +karman_re200,ppo,385,154.0,omega,front,0.03152828931808472 +karman_re200,ppo,385,154.0,omega,upper,-0.05865061044692993 +karman_re200,ppo,385,154.0,omega,lower,0.0029842376708984378 +karman_re200,ppo,386,154.4,omega,front,0.03314269065856933 +karman_re200,ppo,386,154.4,omega,upper,-0.045944343209266665 +karman_re200,ppo,386,154.4,omega,lower,-0.0034973669052124024 +karman_re200,ppo,387,154.8,omega,front,0.011084010601043701 +karman_re200,ppo,387,154.8,omega,upper,-0.005440378189086915 +karman_re200,ppo,387,154.8,omega,lower,0.05602619528770447 +karman_re200,ppo,388,155.2,omega,front,-0.019647101163864138 +karman_re200,ppo,388,155.2,omega,upper,0.031229348182678224 +karman_re200,ppo,388,155.2,omega,lower,0.11251236915588379 +karman_re200,ppo,389,155.6,omega,front,-0.026867280006408693 +karman_re200,ppo,389,155.6,omega,upper,0.016334953308105468 +karman_re200,ppo,389,155.6,omega,lower,0.10341233730316163 +karman_re200,ppo,390,156.0,omega,front,-0.03082756519317627 +karman_re200,ppo,390,156.0,omega,upper,0.01584442615509033 +karman_re200,ppo,390,156.0,omega,lower,0.10417626857757568 +karman_re200,ppo,391,156.4,omega,front,-0.03067375183105469 +karman_re200,ppo,391,156.4,omega,upper,-0.004895999431610108 +karman_re200,ppo,391,156.4,omega,lower,0.08334369659423828 +karman_re200,ppo,392,156.8,omega,front,-0.023678417205810546 +karman_re200,ppo,392,156.8,omega,upper,-0.03502467393875122 +karman_re200,ppo,392,156.8,omega,lower,0.0480801260471344 +karman_re200,ppo,393,157.2,omega,front,-0.021815288066864013 +karman_re200,ppo,393,157.2,omega,upper,-0.030098686814308166 +karman_re200,ppo,393,157.2,omega,lower,0.04757486343383789 +karman_re200,ppo,394,157.6,omega,front,-0.011095471382141113 +karman_re200,ppo,394,157.6,omega,upper,-0.034548245668411255 +karman_re200,ppo,394,157.6,omega,lower,0.026494815349578857 +karman_re200,ppo,395,158.0,omega,front,0.016107417345046997 +karman_re200,ppo,395,158.0,omega,upper,-0.07084277629852295 +karman_re200,ppo,395,158.0,omega,lower,-0.02721242427825928 +karman_re200,ppo,396,158.4,omega,front,0.031006417274475097 +karman_re200,ppo,396,158.4,omega,upper,-0.08366827964782715 +karman_re200,ppo,396,158.4,omega,lower,-0.04 +karman_re200,ppo,397,158.8,omega,front,0.03491285085678101 +karman_re200,ppo,397,158.8,omega,upper,-0.0846632719039917 +karman_re200,ppo,397,158.8,omega,lower,-0.03848951816558838 +karman_re200,ppo,398,159.2,omega,front,0.031450438499450686 +karman_re200,ppo,398,159.2,omega,upper,-0.07372696876525879 +karman_re200,ppo,398,159.2,omega,lower,-0.01583183765411377 +karman_re200,ppo,399,159.6,omega,front,0.026686406135559084 +karman_re200,ppo,399,159.6,omega,upper,-0.050583081245422365 +karman_re200,ppo,399,159.6,omega,lower,0.040096954703330995 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_manifest.json new file mode 100644 index 0000000..45a1490 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re200", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re200__ppo__f-ppo__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_wide.csv new file mode 100644 index 0000000..f0eb47e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re200,ppo,0,0.0,1.2694611549377441,-0.12659457325935364,0.9500953555107117,-0.12381421029567719,0.895484447479248,-0.08694351464509964,-0.00010287521581631154,0.004918253514915705,-0.004674662835896015,0.0032017179764807224,0.002675248309969902,-0.005003458820283413,0.19652204215526578,-5.50852632522583,-0.41892242431640625,0.001965220421552658,-0.0550852632522583,-0.004189224243164063 +karman_re200,ppo,1,0.4,1.266745924949646,0.054073285311460495,0.9656949043273926,0.13390813767910004,0.8834304809570312,0.1047925278544426,0.0015578515594825149,0.004006008617579937,-0.008297774009406567,0.004585345275700092,0.0030701556243002415,-0.004418442957103252,1.2456252574920654,-5.402215480804443,-0.2745780944824219,0.012456252574920654,-0.05402215480804443,-0.0027457809448242186 +karman_re200,ppo,2,0.8,1.2145624160766602,0.21073272824287415,0.9844216108322144,0.3575950562953949,0.9119714498519897,0.2527352273464203,0.005140007007867098,0.004928377456963062,-0.010753270238637924,0.006118900142610073,0.0029317939188331366,-0.003703394206240773,1.9727596044540405,-4.945573031902313,1.4027810096740723,0.019727596044540406,-0.04945573031902313,0.014027810096740723 +karman_re200,ppo,3,1.2,1.123539924621582,0.3172082006931305,0.9987989664077759,0.4677792489528656,0.9738178253173828,0.30809664726257324,0.0058205751702189445,0.0050124842673540115,-0.009391026571393013,0.007846007123589516,0.00285820453427732,-0.0034526383969932795,2.2582013607025146,-5.2390851974487305,2.5129618644714355,0.022582013607025147,-0.052390851974487306,0.025129618644714358 +karman_re200,ppo,4,1.6,1.0472655296325684,0.3510354161262512,1.0094562768936157,0.48795077204704285,1.0384601354599,0.34424513578414917,0.006797805894166231,0.003525563981384039,-0.005531233735382557,0.005319235846400261,0.002294138539582491,-0.003045553807169199,2.2357051372528076,-5.304773807525635,3.287640333175659,0.022357051372528077,-0.05304773807525635,0.03287640333175659 +karman_re200,ppo,5,2.0,0.9900689125061035,0.34791192412376404,1.012353539466858,0.4827211797237396,1.1019504070281982,0.3549129366874695,0.004840408451855183,0.000913094962015748,-0.0038335237186402082,0.0023487010039389133,0.0013395256828516722,-0.0030044042505323887,2.293850898742676,-5.740528345108032,2.03075635433197,0.022938508987426758,-0.05740528345108032,0.020307563543319702 +karman_re200,ppo,6,2.4,0.9499054551124573,0.31125232577323914,1.0056155920028687,0.45023825764656067,1.1704829931259155,0.3321981728076935,0.0023138930555433035,-0.002133723581209779,-0.00368470698595047,0.002336840843781829,0.00042284929077140987,-0.003274790942668915,2.6445908546447754,-5.363493204116821,0.5345487594604492,0.026445908546447756,-0.05363493204116821,0.005345487594604493 +karman_re200,ppo,7,2.8,0.9197987914085388,0.23087850213050842,0.9812777638435364,0.34171998500823975,1.2447752952575684,0.2704210579395294,0.0005417703650891781,-0.004257409367710352,-0.0030638284515589476,0.005259199533611536,-0.0006383955478668213,-0.0033126731868833303,2.521012306213379,-3.776288866996765,1.4951896667480469,0.02521012306213379,-0.03776288866996765,0.01495189666748047 +karman_re200,ppo,8,3.2,0.8903753161430359,0.08367041498422623,0.9688130021095276,0.10411889106035233,1.2753187417984009,0.10669167339801788,-0.001166416215710342,-0.004316028207540512,-0.0005373882013373077,0.007747780531644821,-0.0011386950500309467,-0.0033330617006868124,1.6191495656967165,-1.5692989826202393,4.5236862897872925,0.016191495656967165,-0.015692989826202392,0.045236862897872925 +karman_re200,ppo,9,3.6,0.8762778639793396,-0.11385522037744522,0.9884109497070312,-0.14853084087371826,1.267472267150879,-0.06521596014499664,-0.0018379900138825178,-0.003946639597415924,0.002436634385958314,0.0078098224475979805,-0.0016704881563782692,-0.003911423496901989,0.26149630546569824,-0.0439000129699707,6.493999481201172,0.0026149630546569826,-0.000439000129699707,0.06493999481201172 +karman_re200,ppo,10,4.0,0.9047701358795166,-0.2546841502189636,1.0068303346633911,-0.3577911853790283,1.2133822441101074,-0.2063438594341278,-0.0008439957164227962,-0.003455512225627899,0.0040679206140339375,0.006901162210851908,-0.0010392448166385293,-0.0033997215796262026,-0.7563360929489136,0.05207490921020507,6.5772719383239755,-0.007563360929489136,0.0005207490921020507,0.06577271938323975 +karman_re200,ppo,11,4.4,0.9642706513404846,-0.2996799051761627,1.021540641784668,-0.4363361597061157,1.1303391456604004,-0.2901790738105774,0.0015980270691215992,-0.0022209682501852512,0.0045048207975924015,0.005970410071313381,-0.0022015266586095095,-0.001270575332455337,-1.4647358655929565,0.23448944091796875,7.0337586402893075,-0.014647358655929565,0.0023448944091796877,0.07033758640289307 +karman_re200,ppo,12,4.8,1.0258300304412842,-0.32655373215675354,1.03341805934906,-0.439543753862381,1.0680900812149048,-0.3139539361000061,0.003462748834863305,-0.0003445142647251487,0.0039873127825558186,0.004639059770852327,-0.004468676168471575,-0.0015064156614243984,-1.8178857564926147,0.21745586395263672,7.209330081939698,-0.018178857564926147,0.0021745586395263672,0.07209330081939698 +karman_re200,ppo,13,5.2,1.0778839588165283,-0.33377018570899963,1.0334274768829346,-0.41927945613861084,1.0210143327713013,-0.30663955211639404,0.0024590904358774424,0.001275756862014532,0.00293174060061574,0.004213869571685791,-0.003473903052508831,-0.0043653082102537155,-1.5266462564468384,-1.816652774810791,5.160730242729187,-0.015266462564468385,-0.01816652774810791,0.05160730242729187 +karman_re200,ppo,14,5.6,1.124544382095337,-0.31529855728149414,1.021097183227539,-0.3723065257072449,0.9832935929298401,-0.2599796652793884,0.000633340678177774,0.0029129686299711466,0.0009942030301317573,0.005242671351879835,0.00013198396482039243,-0.005879678763449192,-0.9121253490447997,-4.121917307376862,2.7115617990493774,-0.009121253490447997,-0.041219173073768614,0.027115617990493775 +karman_re200,ppo,15,6.0,1.1758487224578857,-0.28454771637916565,0.9888675212860107,-0.27101588249206543,0.940493643283844,-0.13953350484371185,-0.0009614799055270851,0.004153737798333168,-0.0009439834975637496,0.005709528923034668,0.0028132388833910227,-0.005941628944128752,-0.3841540813446045,-4.799434721469879,2.16081964969635,-0.003841540813446045,-0.04799434721469879,0.0216081964969635 +karman_re200,ppo,16,6.4,1.2292027473449707,-0.2250765562057495,0.9437695145606995,-0.0800311341881752,0.9046342968940735,0.05267031490802765,-0.0011792998993769288,0.004619556479156017,-0.002440163865685463,0.0052634249441325665,0.004441728815436363,-0.0060713030397892,0.1986285299062729,-4.807687222957611,1.582551956176758,0.001986285299062729,-0.048076872229576115,0.01582551956176758 +karman_re200,ppo,17,6.8,1.2270199060440063,-0.0597497895359993,0.913667619228363,0.163780078291893,0.9082980155944824,0.22704237699508667,0.00028673090855591,0.004598078317940235,-0.004289443604648113,0.003735760459676385,0.005305081605911255,-0.006056340876966715,1.0236108303070068,-5.4252519607543945,0.48557519912719727,0.010236108303070068,-0.054252519607543945,0.004855751991271973 +karman_re200,ppo,18,7.2,1.144840121269226,0.1606633961200714,0.8958917856216431,0.3533334732055664,0.9476925134658813,0.3006104528903961,0.003508961293846369,0.0038552326150238514,-0.007052574306726456,0.0020155292004346848,0.005003101192414761,-0.005514843855053186,2.106981039047241,-6.468611001968384,-0.8439326286315918,0.021069810390472413,-0.06468611001968384,-0.008439326286315918 +karman_re200,ppo,19,7.6,1.0519739389419556,0.2845340669155121,0.8898584842681885,0.42347604036331177,0.9906498193740845,0.35540419816970825,0.006539024878293276,0.002662121085450053,-0.00960883405059576,0.0020792291034013033,0.004851834382861853,-0.003920934163033962,2.7421247959136963,-6.683710336685181,-0.965001106262207,0.027421247959136964,-0.06683710336685181,-0.00965001106262207 +karman_re200,ppo,20,8.0,0.9861660599708557,0.29434874653816223,0.8737149238586426,0.4447775185108185,1.0316330194473267,0.4114988446235657,0.0064233154989778996,0.0005983238806948066,-0.008239149115979671,0.004482923075556755,0.004431584849953651,-0.003012289060279727,2.629279136657715,-5.234029769897461,1.3413963317871094,0.02629279136657715,-0.05234029769897461,0.013413963317871093 +karman_re200,ppo,21,8.4,0.939303994178772,0.24995157122612,0.8384180665016174,0.4337552785873413,1.075836181640625,0.4557126760482788,0.005066745914518833,-0.001100730849429965,-0.004070614464581013,0.004441290162503719,0.0031443354673683643,-0.003949927166104317,2.3502275943756104,-3.9219593405723567,4.344194769859314,0.023502275943756104,-0.03921959340572357,0.04344194769859314 +karman_re200,ppo,22,8.8,0.9055684804916382,0.17469769716262817,0.7809163928031921,0.3837936520576477,1.1389769315719604,0.5065363049507141,0.002167286816984415,-0.0030851871706545353,-0.000970583176240325,0.0034426325000822544,0.0013528239214792848,-0.004968855530023575,2.1766111850738525,-4.267052590847015,3.7834703028202057,0.021766111850738526,-0.042670525908470154,0.037834703028202056 +karman_re200,ppo,23,9.2,0.8902483582496643,0.07479191571474075,0.7024653553962708,0.2690807282924652,1.2306535243988037,0.4312613308429718,-0.0010823338525369763,-0.004271374549716711,0.0011435366468504071,0.003577087540179491,0.00037663764669559896,-0.005925473757088184,1.940362334251404,-3.892557382583618,2.3801229000091553,0.01940362334251404,-0.03892557382583618,0.023801229000091552 +karman_re200,ppo,24,9.6,0.8855776190757751,-0.05018417909741402,0.6301630735397339,0.0590510368347168,1.3176721334457397,0.13818031549453735,-0.0025711723137646914,-0.005079512484371662,0.0022874907590448856,0.004182321950793266,-0.0007360228337347507,-0.005740793887525797,1.312134027481079,-2.8733322620391846,1.8510994911193848,0.013121340274810791,-0.028733322620391848,0.01851099491119385 +karman_re200,ppo,25,10.0,0.8882884979248047,-0.18367815017700195,0.6076003313064575,-0.21075832843780518,1.298121452331543,-0.1703934520483017,-0.0023689523804932833,-0.0050366963259875774,0.003114652819931507,0.004911969881504774,-0.0020147403702139854,-0.004812947940081358,0.2619737386703491,-1.365713357925415,3.0741958618164062,0.0026197373867034913,-0.01365713357925415,0.030741958618164065 +karman_re200,ppo,26,10.4,0.9283747673034668,-0.2754436135292053,0.6343019008636475,-0.4561324417591095,1.168276309967041,-0.4820072054862976,-0.0006135156727395952,-0.004160204436630011,0.0037989001721143723,0.005355197004973888,-0.0034813701640814543,-0.003757497761398554,-0.9436365365982056,-0.10767531394958497,5.031158089637756,-0.009436365365982056,-0.0010767531394958497,0.050311580896377564 +karman_re200,ppo,27,10.8,0.9902404546737671,-0.353169322013855,0.6886736154556274,-0.6196818351745605,1.041165828704834,-0.6425014734268188,0.002073426963761449,-0.002395587507635355,0.004029220435768366,0.005720296874642372,-0.005139961838722229,-0.0029803207144141197,-2.004239320755005,0.28342342376708984,6.642661571502685,-0.02004239320755005,0.0028342342376708983,0.06642661571502685 +karman_re200,ppo,28,11.2,1.0682469606399536,-0.39924517273902893,0.7465304732322693,-0.7035945653915405,0.9371737837791443,-0.6583967804908752,0.00416257418692112,-4.738991265185177e-05,0.0035026618279516697,0.005261370446532965,-0.006559376604855061,-0.0029199167620390654,-2.6141698360443115,-0.3929018974304199,7.331346988677978,-0.026141698360443114,-0.003929018974304199,0.07331346988677978 +karman_re200,ppo,29,11.6,1.1602764129638672,-0.402363121509552,0.7837806940078735,-0.7505699992179871,0.8511400818824768,-0.5917640924453735,0.003070289269089699,0.0016106776893138885,0.002746797166764736,0.004589482676237822,-0.00583881139755249,-0.004724682774394751,-2.5903613567352295,-1.987013339996338,6.31176471710205,-0.025903613567352296,-0.01987013339996338,0.0631176471710205 +karman_re200,ppo,30,12.0,1.2553088665008545,-0.3526094853878021,0.7949404120445251,-0.7456560730934143,0.7745785713195801,-0.4851333498954773,0.0010349516524001956,0.0034126376267522573,0.0011303005740046501,0.005059482529759407,-0.0020849527791142464,-0.005876130424439907,-2.241981029510498,-3.3769304752349854,4.176285922527313,-0.02241981029510498,-0.033769304752349856,0.04176285922527313 +karman_re200,ppo,31,12.4,1.3089704513549805,-0.20444905757904053,0.7423602938652039,-0.6958809494972229,0.7141063213348389,-0.3379236161708832,-0.001185088069178164,0.004571879748255014,-0.0004074433818459511,0.005533576011657715,0.0009493807447142899,-0.005614242050796747,-1.8045690059661865,-3.6836574971675873,3.31633323431015,-0.018045690059661865,-0.036836574971675876,0.0331633323431015 +karman_re200,ppo,32,12.8,1.3432607650756836,-0.035701047629117966,0.6678261756896973,-0.2444368600845337,0.6887365579605103,-0.15043480694293976,-0.002562201116234064,0.0049754721112549305,-0.0011996127432212234,0.005647661164402962,0.002782497787848115,-0.00555299362167716,-1.435051679611206,-2.846006989479065,3.025139570236206,-0.01435051679611206,-0.02846006989479065,0.03025139570236206 +karman_re200,ppo,33,13.2,1.3189952373504639,0.1627989560365677,0.7254077196121216,0.4682244062423706,0.7144367098808289,0.0492432676255703,-0.0021864487789571285,0.004803192801773548,-0.002202299889177084,0.005033237859606743,0.0038992685731500387,-0.005614143796265125,-0.04592525213956833,-3.911960661411285,0.8418326377868653,-0.0004592525213956833,-0.03911960661411285,0.008418326377868653 +karman_re200,ppo,34,13.6,1.2333184480667114,0.345531702041626,0.8548852801322937,0.7655591368675232,0.7823772430419922,0.22614219784736633,0.0005341240321286023,0.004168068990111351,-0.004010748118162155,0.004317252431064844,0.004480347502976656,-0.005082224495708942,2.2504196166992188,-6.578437328338624,-2.3404793739318848,0.022504196166992188,-0.06578437328338624,-0.02340479373931885 +karman_re200,ppo,35,14.0,1.1244125366210938,0.46567967534065247,0.9452784657478333,0.8036163449287415,0.8755525946617126,0.3335355818271637,0.0045377882197499275,0.0019518376793712378,-0.0064644161611795425,0.0033384792041033506,0.004229644779115915,-0.004972054157406092,3.2564306259155273,-7.286537647247314,-2.4796805381774902,0.032564306259155275,-0.07286537647247314,-0.0247968053817749 +karman_re200,ppo,36,14.4,1.0109003782272339,0.5175252556800842,1.004360318183899,0.7912512421607971,0.9753954410552979,0.37473389506340027,0.006094303913414478,-3.2918927900027484e-05,-0.008569269441068172,0.004746363963931799,0.0046493434347212315,-0.0036624795757234097,3.2616889476776123,-6.5056660175323495,-0.5937404632568359,0.03261688947677612,-0.0650566601753235,-0.005937404632568359 +karman_re200,ppo,37,14.8,0.8950186371803284,0.5129330158233643,1.067271113395691,0.7649686336517334,1.0690902471542358,0.36980724334716797,0.004402377642691135,-0.0018970721866935492,-0.005542037542909384,0.007499778177589178,0.002643053885549307,-0.0032715906854718924,3.0317599773406982,-4.503211200237274,3.0301566123962402,0.03031759977340698,-0.04503211200237274,0.0303015661239624 +karman_re200,ppo,38,15.2,0.7737971544265747,0.43635478615760803,1.1555827856063843,0.6557846069335938,1.1540316343307495,0.3129723370075226,0.0026480010710656643,-0.0031450765673071146,-0.0020315146539360285,0.006063861306756735,0.0004501027869991958,-0.003704635426402092,2.690978765487671,-3.641274213790894,5.13649582862854,0.02690978765487671,-0.03641274213790894,0.0513649582862854 +karman_re200,ppo,39,15.6,0.6704418659210205,0.25381970405578613,1.3144192695617676,0.4448804557323456,1.223554015159607,0.21807990968227386,-0.00029809915577061474,-0.0041997372172772884,0.00010222834680462256,0.005395337473601103,-0.0002801911614369601,-0.0046741231344640255,2.437162399291992,-3.7666308283805847,3.762744843959808,0.024371623992919922,-0.03766630828380585,0.03762744843959808 +karman_re200,ppo,40,16.0,0.6414076089859009,-0.016294512897729874,1.4236177206039429,0.033650048077106476,1.254819631576538,0.09479210525751114,-0.0021769264712929726,-0.004255266394466162,0.0011922059347853065,0.005229865200817585,-9.894659160636365e-05,-0.004843922331929207,1.8010140657424927,-3.038994312286377,3.224447906017303,0.018010140657424928,-0.03038994312286377,0.03224447906017303 +karman_re200,ppo,41,16.4,0.7178311347961426,-0.2524116635322571,1.3118367195129395,-0.38142654299736023,1.2188434600830078,-0.036600902676582336,-0.0022317192051559687,-0.004212237428873777,0.0016389243537560105,0.005180965643376112,-0.0009209193522110581,-0.00428693275898695,0.49393695592880243,-1.3653490543365479,4.301784932613373,0.004939369559288025,-0.013653490543365478,0.04301784932613373 +karman_re200,ppo,42,16.8,0.8410552740097046,-0.3689257502555847,1.1622493267059326,-0.4994591772556305,1.1334452629089355,-0.13273119926452637,-0.0006140604382380843,-0.003412611549720168,0.0020374972373247147,0.005209481809288263,-0.0017444482073187828,-0.003386118682101369,-0.9040157794952391,0.2725529670715332,6.09684419631958,-0.009040157794952392,0.002725529670715332,0.0609684419631958 +karman_re200,ppo,43,17.2,0.9508569836616516,-0.4166499078273773,1.0747696161270142,-0.5160637497901917,1.0382684469223022,-0.20813022553920746,0.0015342853730544448,-0.0017203218303620815,0.002673142356798053,0.005409028381109238,-0.0029449034482240677,-0.0024817681405693293,-1.4817372560501099,0.3195481300354004,6.739093780517578,-0.0148173725605011,0.003195481300354004,0.06739093780517579 +karman_re200,ppo,44,17.6,1.045835018157959,-0.4344682991504669,1.021101713180542,-0.5180290937423706,0.9747176170349121,-0.2460760474205017,0.003094050334766507,0.000636787386611104,0.002580111613497138,0.004898345563560724,-0.004634401760995388,-0.0030001304112374783,-1.7305556535720825,-0.5553064346313477,6.553997993469237,-0.017305556535720825,-0.005553064346313477,0.06553997993469238 +karman_re200,ppo,45,18.0,1.1364349126815796,-0.4196850657463074,0.9730363488197327,-0.5091055631637573,0.9339937567710876,-0.2303474247455597,0.0020537038799375296,0.001756676472723484,0.0015277464408427477,0.004319627303630114,-0.004085661377757788,-0.005845990963280201,-1.5031782388687134,-2.720081329345703,4.621493220329285,-0.015031782388687133,-0.02720081329345703,0.04621493220329285 +karman_re200,ppo,46,18.4,1.2310233116149902,-0.36915892362594604,0.9092509746551514,-0.4645023047924042,0.9005013108253479,-0.16855865716934204,9.143973875325173e-05,0.003258674405515194,-0.00015151564730331302,0.004814725369215012,-0.0004783207841683179,-0.007827125489711761,-0.9673381447792053,-4.697580277919769,2.270795464515686,-0.009673381447792053,-0.046975802779197696,0.02270795464515686 +karman_re200,ppo,47,18.8,1.319734811782837,-0.273534893989563,0.8282462954521179,-0.3128037750720978,0.8764449954032898,-0.07530397176742554,-0.0011318677570670843,0.004171926528215408,-0.0017291897675022483,0.005120918620377779,0.0024727080017328262,-0.007519354112446308,-0.4141373634338379,-5.5400261878967285,1.1522469520568848,-0.004141373634338379,-0.05540026187896729,0.011522469520568847 +karman_re200,ppo,48,19.2,1.4294546842575073,-0.15480592846870422,0.7315835356712341,-0.041323356330394745,0.8662458658218384,0.044486794620752335,-0.0010772491805255413,0.0043672532774508,-0.0025076689198613167,0.004417342133820057,0.003905175719410181,-0.006665227003395557,0.1851188987493515,-5.354915618896484,0.6962175369262695,0.001851188987493515,-0.053549156188964844,0.006962175369262695 +karman_re200,ppo,49,19.6,1.4346950054168701,0.08955825120210648,0.7071170210838318,0.2909090220928192,0.8744621276855469,0.16879631578922272,0.0005595397087745368,0.004110773093998432,-0.00375266931951046,0.002832768950611353,0.00462386105209589,-0.005651697516441345,1.0224201679229736,-5.645507574081421,-0.4952301979064941,0.010224201679229737,-0.05645507574081421,-0.004952301979064941 +karman_re200,ppo,50,20.0,1.3018848896026611,0.31353795528411865,0.763641357421875,0.5063968896865845,0.9239261150360107,0.2559577226638794,0.003765191650018096,0.0031156649347394705,-0.005965087562799454,0.0019772981759160757,0.00487739872187376,-0.004157637245953083,2.1955349445343018,-6.376034498214722,-1.806692123413086,0.02195534944534302,-0.06376034498214722,-0.01806692123413086 +karman_re200,ppo,51,20.4,1.1670511960983276,0.40034565329551697,0.8276962041854858,0.5864519476890564,0.9944711327552795,0.32601597905158997,0.005852635949850082,0.0016481999773532152,-0.0070727514103055,0.003476090030744672,0.0054254913702607155,-0.002367917215451598,2.795144557952881,-6.017129898071289,-0.876868724822998,0.02795144557952881,-0.06017129898071289,-0.00876868724822998 +karman_re200,ppo,52,20.8,1.0621320009231567,0.38551998138427734,0.8541871905326843,0.610100269317627,1.0704013109207153,0.3594033718109131,0.005366862285882235,-0.0003773170756176114,-0.004459138959646225,0.0054665906354784966,0.00435566995292902,-0.002487870864570141,2.684324264526367,-4.403696238994598,2.3480453491210938,0.026843242645263672,-0.044036962389945984,0.02348045349121094 +karman_re200,ppo,53,21.2,0.9788715243339539,0.31136858463287354,0.8342756032943726,0.6105795502662659,1.1501694917678833,0.3445068299770355,0.003798259422183037,-0.0019180579110980034,-0.0016054899897426367,0.004159380216151476,0.002152607310563326,-0.003983079921454191,2.39786958694458,-3.845436751842499,4.161650478839874,0.0239786958694458,-0.03845436751842499,0.04161650478839874 +karman_re200,ppo,54,21.6,0.9176885485649109,0.19543233513832092,0.7552767395973206,0.5594809055328369,1.218261480331421,0.25401630997657776,0.0007632882334291935,-0.0037652018945664167,-5.6599204981466755e-05,0.002912781434133649,0.0001566888822708279,-0.004551841411739588,2.443437337875366,-4.711132824420929,2.2339154481887817,0.024434373378753663,-0.04711132824420929,0.022339154481887818 +karman_re200,ppo,55,22.0,0.8806930780410767,0.05109433829784393,0.6095775961875916,0.2924481928348541,1.245811104774475,0.06792385876178741,-0.0017166642937809229,-0.004880758933722973,0.0006742427358403802,0.003441189182922244,-0.0002747443213593215,-0.00465686060488224,2.2093663215637207,-4.088170349597931,0.9822573661804199,0.02209366321563721,-0.04088170349597931,0.0098225736618042 +karman_re200,ppo,56,22.4,0.8592244982719421,-0.11416755616664886,0.6016814708709717,-0.27654045820236206,1.2772895097732544,-0.09808625280857086,-0.0023854882456362247,-0.005391979590058327,0.0012960992753505707,0.004925066605210304,-0.0009625948732718825,-0.00427198875695467,1.0342304706573486,-1.9384617805480955,2.469296097755432,0.010342304706573487,-0.019384617805480956,0.024692960977554322 +karman_re200,ppo,57,22.8,0.8823629021644592,-0.23647940158843994,0.7486320734024048,-0.5705949664115906,1.2374210357666016,-0.2433651089668274,-0.0012154756113886833,-0.004576257895678282,0.0023534847423434258,0.005769334267824888,-0.0019952859729528427,-0.004136922303587198,-0.9571715593338012,1.0239653587341309,6.291071414947511,-0.009571715593338012,0.010239653587341309,0.0629107141494751 +karman_re200,ppo,58,23.2,0.9365923404693604,-0.31963685154914856,0.8439993262290955,-0.6048003435134888,1.150038480758667,-0.3293612599372864,0.0010571008315309882,-0.003568977816030383,0.003680218243971467,0.005877980496734381,-0.0023926699068397284,-0.003937757108360529,-1.9090417623519897,1.2298741340637207,7.71807861328125,-0.019090417623519897,0.012298741340637208,0.0771807861328125 +karman_re200,ppo,59,23.6,0.9972185492515564,-0.39108598232269287,0.8708446025848389,-0.5947744250297546,1.062501311302185,-0.35190409421920776,0.0038175517693161964,-0.0010824216296896338,0.0038781941402703524,0.005194950848817825,-0.004215513356029987,-0.0023280433379113674,-2.1757922172546387,0.17655038833618164,7.788578033447266,-0.021757922172546386,0.0017655038833618165,0.07788578033447266 +karman_re200,ppo,60,24.0,1.0670979022979736,-0.42865797877311707,0.8618997931480408,-0.5733550190925598,0.9903346300125122,-0.3271072506904602,0.00376973208039999,0.0005131613579578698,0.0030859243124723434,0.003864445025101304,-0.005785979796200991,-0.004397023469209671,-2.1159892082214355,-1.2650010585784912,6.730040550231933,-0.021159892082214356,-0.012650010585784912,0.06730040550231933 +karman_re200,ppo,61,24.4,1.1546828746795654,-0.44181519746780396,0.8220024704933167,-0.5348420143127441,0.935382068157196,-0.26891887187957764,0.001923239673487842,0.0022750571370124817,0.001425145659595728,0.004310152493417263,-0.002264662878587842,-0.0069493139162659645,-1.5686522722244263,-3.8008006811141968,3.6128031611442566,-0.015686522722244262,-0.03800800681114197,0.03612803161144257 +karman_re200,ppo,62,24.8,1.2539814710617065,-0.39380142092704773,0.7455325126647949,-0.4324032664299011,0.9001703858375549,-0.17677003145217896,-7.46021532904706e-06,0.0036184703931212425,-9.409543417859823e-05,0.005041235126554966,0.0009391431231051683,-0.006897883955389261,-0.9719362258911133,-5.26216983795166,2.122422218322754,-0.009719362258911133,-0.0526216983795166,0.021224222183227538 +karman_re200,ppo,63,25.2,1.3529592752456665,-0.2425994724035263,0.6509886980056763,-0.20559099316596985,0.8753308653831482,-0.04273996502161026,-0.001482064020819962,0.004099177196621895,-0.0010967737762257457,0.005434492602944374,0.002546698786318302,-0.006798114161938429,-0.5339296460151672,-4.98578017950058,1.6659317016601562,-0.005339296460151672,-0.0498578017950058,0.016659317016601564 +karman_re200,ppo,64,25.6,1.429948091506958,-0.002673223614692688,0.5983560085296631,0.13060128688812256,0.8476734757423401,0.13533371686935425,-0.0013103288365527987,0.004169051069766283,-0.002106445375829935,0.0044383881613612175,0.003609810257330537,-0.006331069394946098,0.1711682826280594,-4.987168848514557,0.6245827674865723,0.0017116828262805938,-0.04987168848514557,0.006245827674865723 +karman_re200,ppo,65,26.0,1.3268011808395386,0.32000797986984253,0.6422279477119446,0.4335569441318512,0.8696182370185852,0.2534008324146271,0.0005903953569941223,0.003853130852803588,-0.003922830801457167,0.002852360252290964,0.004248309880495071,-0.00535965571179986,1.374618649482727,-5.7181055545806885,-1.1600651741027832,0.01374618649482727,-0.05718105554580689,-0.011600651741027833 +karman_re200,ppo,66,26.4,1.1498831510543823,0.49362078309059143,0.7236042618751526,0.6115902066230774,0.9341515302658081,0.3206363320350647,0.0044266642071306705,0.0027109801303595304,-0.006526060868054628,0.002157059730961919,0.004653074312955141,-0.003836118383333087,2.6108460426330566,-6.360093355178833,-2.1054563522338867,0.026108460426330568,-0.06360093355178834,-0.02105456352233887 +karman_re200,ppo,67,26.8,1.0084445476531982,0.5360099673271179,0.7920381426811218,0.6943516731262207,1.0111583471298218,0.3798442482948303,0.006107240449637175,0.0014243625337257981,-0.007598542608320713,0.004234796389937401,0.0052149295806884766,-0.0022046174854040146,3.003852367401123,-5.762303590774536,-0.5021414756774902,0.03003852367401123,-0.05762303590774536,-0.005021414756774902 +karman_re200,ppo,68,27.2,0.8996508121490479,0.5060460567474365,0.836997926235199,0.7391746044158936,1.0942871570587158,0.40122660994529724,0.005532943643629551,-0.0004807672230526805,-0.004349729511886835,0.006146359257400036,0.003564559854567051,-0.002378223231062293,2.854146718978882,-4.224486231803894,2.836616277694702,0.028541467189788818,-0.042244862318038943,0.02836616277694702 +karman_re200,ppo,69,27.6,0.8043731451034546,0.4286951720714569,0.8613660931587219,0.7542654275894165,1.1796271800994873,0.3805677890777588,0.003927549812942743,-0.0020032175816595554,-0.001527975662611425,0.004272807855159044,0.0013351535890251398,-0.0032654395326972008,2.643653392791748,-4.084202766418457,4.148422122001648,0.02643653392791748,-0.04084202766418457,0.04148422122001648 +karman_re200,ppo,70,28.0,0.724017858505249,0.3020574450492859,0.8680721521377563,0.7390783429145813,1.239720106124878,0.2704146206378937,0.0007703274022787809,-0.003725438378751278,-0.0001039364724420011,0.0031115419697016478,-0.00016481764032505453,-0.003760324325412512,2.8237521648406982,-4.874615013599396,1.951899528503418,0.028237521648406982,-0.04874615013599396,0.01951899528503418 +karman_re200,ppo,71,28.4,0.6806746125221252,0.13128213584423065,0.827975869178772,0.48140788078308105,1.2358028888702393,0.04349449649453163,-0.0016235734801739454,-0.0049776723608374596,0.00014106249727774411,0.003696669125929475,-0.00033735967008396983,-0.004016888327896595,2.780534505844116,-4.477503478527069,0.6497244834899902,0.027805345058441164,-0.044775034785270694,0.006497244834899903 +karman_re200,ppo,72,28.8,0.7003887891769409,-0.0522252693772316,0.8164302110671997,-0.2857970595359802,1.2640591859817505,-0.12678124010562897,-0.0022184590343385935,-0.005632976070046425,0.0002166745689464733,0.005485898349434137,-0.0007319988799281418,-0.0037804734893143177,1.753448963165283,-2.54362952709198,2.2770878076553345,0.01753448963165283,-0.0254362952709198,0.022770878076553345 +karman_re200,ppo,73,29.2,0.7767751812934875,-0.20049668848514557,0.867189884185791,-0.7707023620605469,1.2382758855819702,-0.27324753999710083,-0.0012479012366384268,-0.004430131521075964,0.0012948475778102875,0.0065646846778690815,-0.001258846721611917,-0.004040807951241732,-0.7866039276123046,1.3655943870544434,7.321387767791748,-0.007866039276123046,0.013655943870544434,0.07321387767791748 +karman_re200,ppo,74,29.6,0.8681661486625671,-0.31421586871147156,0.9158266186714172,-0.8060662150382996,1.1643335819244385,-0.3692032992839813,0.0006905338377691805,-0.003245850093662739,0.003511941060423851,0.006646232213824987,-0.000593246950302273,-0.004333465825766325,-2.239144802093506,2.0884056091308594,9.390201568603516,-0.02239144802093506,0.020884056091308594,0.09390201568603516 +karman_re200,ppo,75,30.0,0.9644123315811157,-0.38044795393943787,0.9303069114685059,-0.7613151669502258,1.0753929615020752,-0.3998468816280365,0.0034600314684212208,-0.0005069437902420759,0.0045821149833500385,0.005519286263734102,-0.0025092733558267355,-0.002526779193431139,-2.556910514831543,0.8488688468933105,9.180915355682373,-0.02556910514831543,0.008488688468933105,0.09180915355682373 +karman_re200,ppo,76,30.4,1.0633026361465454,-0.3940248489379883,0.9244823455810547,-0.7456085085868835,0.9914681911468506,-0.3717900216579437,0.0034036370925605297,0.0012395448284223676,0.0036302292719483376,0.0037897818256169558,-0.004471953958272934,-0.005591545719653368,-2.4624099731445312,-0.8115053176879883,7.434752941131592,-0.024624099731445314,-0.008115053176879883,0.07434752941131592 +karman_re200,ppo,77,30.8,1.1638771295547485,-0.35359400510787964,0.9005100727081299,-0.7301358580589294,0.9200891256332397,-0.29090049862861633,0.00148637848906219,0.002656549448147416,0.0013241067063063383,0.004232675302773714,-0.0007324190228246152,-0.008381473831832409,-1.774230122566223,-4.043969213962555,3.5200133323669434,-0.01774230122566223,-0.040439692139625553,0.03520013332366943 +karman_re200,ppo,78,31.2,1.2319190502166748,-0.23763206601142883,0.8325194716453552,-0.5981329083442688,0.8671596646308899,-0.1544317752122879,-0.0003753216878976673,0.0038265762850642204,-0.0003224243118893355,0.00483576999977231,0.001988636329770088,-0.007871843874454498,-1.170863389968872,-5.197195291519165,2.3723114728927612,-0.01170863389968872,-0.05197195291519165,0.023723114728927613 +karman_re200,ppo,79,31.6,1.2347640991210938,-0.047558773308992386,0.7580552697181702,-0.017895199358463287,0.8380565643310547,0.02855207957327366,-0.001678519882261753,0.003986284602433443,-0.0010260571725666523,0.004725411534309387,0.00311334733851254,-0.007652778644114733,-0.6511660218238831,-4.690055191516876,1.925978422164917,-0.0065116602182388305,-0.046900551915168766,0.01925978422164917 +karman_re200,ppo,80,32.0,1.2166564464569092,0.11880521476268768,0.7990357875823975,0.5560221076011658,0.8318448066711426,0.2213735431432724,-0.0010715117678046227,0.003820364363491535,-0.0020091859623789787,0.0032222431618720293,0.004286864772439003,-0.006877595093101263,1.064527153968811,-6.19611930847168,-0.8913388252258301,0.01064527153968811,-0.0619611930847168,-0.0089133882522583 +karman_re200,ppo,81,32.4,1.1377630233764648,0.2534303367137909,0.8679664134979248,0.6822746396064758,0.8835641741752625,0.3277689218521118,0.002071232767775655,0.003575629321858287,-0.0045553636737167835,0.0014637787826359272,0.0057566966861486435,-0.005353540647774935,2.8592066764831543,-7.809646129608154,-3.5521225929260254,0.028592066764831545,-0.07809646129608154,-0.035521225929260256 +karman_re200,ppo,82,32.8,1.0368127822875977,0.3241288661956787,0.8940459489822388,0.691306471824646,0.9643248915672302,0.39401257038116455,0.006907404866069555,0.002571218879893422,-0.008444678969681263,0.0019041093764826655,0.0074117835611104965,-0.003968589473515749,3.41057014465332,-7.532191753387451,-3.0926513671875,0.0341057014465332,-0.07532191753387452,-0.030926513671875 +karman_re200,ppo,83,33.2,0.9448742866516113,0.3329516649246216,0.8917080163955688,0.696865975856781,1.0518301725387573,0.43724575638771057,0.006946716457605362,0.0008837304194457829,-0.00739682512357831,0.006474763620644808,0.006767370738089085,-0.00281219813041389,3.0322482585906982,-5.7797136306762695,0.5217432975769043,0.030322482585906984,-0.0577971363067627,0.005217432975769043 +karman_re200,ppo,84,33.6,0.8646661639213562,0.2968321740627289,0.864271879196167,0.71142578125,1.1416641473770142,0.4358968436717987,0.006511549465358257,-0.0005610131192952394,-0.003497379831969738,0.004956095013767481,0.002406218321993947,-0.0029286984354257584,2.578888177871704,-4.19686484336853,5.040181636810303,0.025788881778717042,-0.0419686484336853,0.05040181636810303 +karman_re200,ppo,85,34.0,0.7982760071754456,0.21480105817317963,0.8002005219459534,0.6954256296157837,1.2218132019042969,0.38116565346717834,0.0036988910287618637,-0.0025606120470911264,-0.0017646645428612828,0.00198955275118351,0.00022074785374570638,-0.0032794754952192307,2.5982189178466797,-5.136776447296143,3.0948195457458496,0.025982189178466796,-0.05136776447296143,0.030948195457458496 +karman_re200,ppo,86,34.4,0.7620008587837219,0.0968095138669014,0.650709331035614,0.5451018810272217,1.2390156984329224,0.1991654932498932,6.643966571573401e-06,-0.004199882037937641,-0.0017926268046721816,0.0016512100119143724,0.00012349331518635154,-0.003609847743064165,2.857149839401245,-5.187998056411743,0.6167001724243164,0.028571498394012452,-0.05187998056411743,0.006167001724243164 +karman_re200,ppo,87,34.8,0.7798740863800049,-0.03223824128508568,0.5260461568832397,-0.06425914913415909,1.2538089752197266,-0.024490810930728912,-0.0014472469920292497,-0.005619695410132408,-0.002146404469385743,0.004133671056479216,-0.000565935333725065,-0.0036584085319191217,2.3259007930755615,-3.437483668327332,1.0128517150878906,0.023259007930755617,-0.03437483668327332,0.010128517150878907 +karman_re200,ppo,88,35.2,0.8190737962722778,-0.18148110806941986,0.6043016910552979,-0.6447920203208923,1.2559047937393188,-0.2048065960407257,-0.001726736780256033,-0.004915968980640173,-0.0002883397100958973,0.006639767438173294,-0.0008869805024005473,-0.0038670559879392385,-0.02542632818222046,0.6329054832458496,6.113124847412109,-0.0002542632818222046,0.006329054832458496,0.061131248474121096 +karman_re200,ppo,89,35.6,0.8794370293617249,-0.3025491535663605,0.7467160224914551,-0.7857822179794312,1.1617845296859741,-0.3554069995880127,-0.0006278209621086717,-0.004352029878646135,0.003030883613973856,0.007136300206184387,-0.00078715814743191,-0.00522947870194912,-2.024571180343628,2.527799129486084,9.525574684143066,-0.02024571180343628,0.02527799129486084,0.09525574684143066 +karman_re200,ppo,90,36.0,0.9663236141204834,-0.37674465775489807,0.8300750851631165,-0.793030858039856,1.0459932088851929,-0.43545058369636536,0.002827479038387537,-0.0028921973425894976,0.005141095723956823,0.006053239572793245,-0.0015948180807754397,-0.0032032793387770653,-2.6672065258026123,1.3704419136047363,9.548944473266602,-0.026672065258026123,0.013704419136047363,0.09548944473266602 +karman_re200,ppo,91,36.4,1.0543029308319092,-0.4089670479297638,0.8710642457008362,-0.8098682165145874,0.9324942231178284,-0.4486379325389862,0.005256191361695528,-0.0007787568029016256,0.00458583002910018,0.0038562575355172157,-0.005636461544781923,-0.003708110423758626,-2.9277048110961914,0.5047187805175781,9.171574592590332,-0.029277048110961913,0.005047187805175781,0.09171574592590333 +karman_re200,ppo,92,36.8,1.1406153440475464,-0.3910275995731354,0.9060987830162048,-0.8267475366592407,0.8279711008071899,-0.40828418731689453,0.003951945807784796,0.0010482993675395846,0.0026967066805809736,0.0028581637889146805,-0.0038100227247923613,-0.007131827995181084,-2.5591797828674316,-2.2234914302825928,6.108193397521973,-0.025591797828674316,-0.02223491430282593,0.06108193397521973 +karman_re200,ppo,93,37.2,1.2094637155532837,-0.3127596080303192,0.9486331343650818,-0.850191593170166,0.7420285940170288,-0.30856841802597046,0.002235582796856761,0.0023862484376877546,0.0006643084925599396,0.0036435811780393124,-0.00039074139203876257,-0.0065961261279881,-1.8075785636901853,-4.645201742649078,3.286620736122131,-0.018075785636901855,-0.046452017426490785,0.03286620736122131 +karman_re200,ppo,94,37.6,1.235368013381958,-0.1566397249698639,0.9891923666000366,-0.4796644151210785,0.6955339312553406,-0.15459266304969788,-0.0005712243728339672,0.003706833114847541,-0.00017710104293655604,0.003846662351861596,0.000884725886862725,-0.006488217506557703,-1.6325799226760864,-3.5800458788871765,3.834457457065582,-0.016325799226760866,-0.03580045878887177,0.03834457457065582 +karman_re200,ppo,95,38.0,1.251960039138794,0.017717184498906136,0.9989349842071533,0.3602939248085022,0.7081247568130493,0.0244919341057539,-0.001523836050182581,0.0038601651322096586,-0.0010221890406683087,0.0032669594511389732,0.0020526712760329247,-0.006936177611351013,-0.36585408449172974,-4.493417322635651,0.9843168258666991,-0.0036585408449172976,-0.044934173226356504,0.009843168258666992 +karman_re200,ppo,96,38.4,1.1937494277954102,0.22580274939537048,0.9753631353378296,0.7706984877586365,0.7621355652809143,0.21467433869838715,-0.0006154649308882654,0.0036608430091291666,-0.0022643343545496464,0.002620011568069458,0.004245375283062458,-0.006565466057509184,2.161808729171753,-7.564452648162842,-3.3842811584472656,0.02161808729171753,-0.07564452648162842,-0.03384281158447266 +karman_re200,ppo,97,38.8,1.0890289545059204,0.38131752610206604,0.9627845883369446,0.807715654373169,0.8458071947097778,0.34980785846710205,0.0030982522293925285,0.0033246392849832773,-0.0051757884211838245,0.0013926493702456355,0.00624257093295455,-0.006445328705012798,3.4219088554382324,-8.350165367126465,-4.0,0.034219088554382326,-0.08350165367126465,-0.04 +karman_re200,ppo,98,39.2,0.9804567694664001,0.44210776686668396,0.9756221175193787,0.8262182474136353,0.9531139135360718,0.4023323059082031,0.007344243582338095,0.0026454078033566475,-0.008916715160012245,0.0033431234769523144,0.007969042286276817,-0.005380228627473116,3.6165974140167236,-8.028059005737305,-3.3850512504577637,0.036165974140167235,-0.08028059005737305,-0.033850512504577636 +karman_re200,ppo,99,39.6,0.871329665184021,0.4341243505477905,1.0148428678512573,0.8500712513923645,1.0527606010437012,0.4113157391548157,0.007512873969972134,0.0004109328147023916,-0.0059381709434092045,0.006729112938046455,0.005631879437714815,-0.003348506288602948,3.059335947036743,-6.145452260971069,0.6655149459838867,0.030593359470367433,-0.061454522609710696,0.0066551494598388675 +karman_re200,ppo,100,40.0,0.7617045640945435,0.37014704942703247,1.1184486150741577,0.8707525730133057,1.1320492029190063,0.3708558976650238,0.006416720803827047,-0.0008953518699854612,-0.003092866623774171,0.0040224394761025906,0.0016877555754035711,-0.0025711252819746733,2.730794906616211,-4.943847358226776,4.302933692932129,0.02730794906616211,-0.049438473582267765,0.04302933692932129 +karman_re200,ppo,101,40.4,0.671033501625061,0.2287614941596985,1.3085815906524658,0.7593494653701782,1.1786706447601318,0.2884596884250641,0.003510117530822754,-0.002664614235982299,-0.002184075303375721,0.0008632305543869734,0.0008700743201188743,-0.002289120340719819,3.0169758796691895,-5.613609075546265,1.8473963737487793,0.030169758796691894,-0.05613609075546265,0.018473963737487793 +karman_re200,ppo,102,40.8,0.6424850225448608,0.028837937861680984,1.3811426162719727,0.023630967363715172,1.1535253524780273,0.14369530975818634,0.0007159944507293403,-0.0046966723166406155,-0.0035769303794950247,0.002019416308030486,-0.00042703241342678666,-0.002761055249720812,3.1850292682647705,-5.106367349624634,0.2365412712097168,0.031850292682647705,-0.05106367349624634,0.002365412712097168 +karman_re200,ppo,103,41.2,0.7063491344451904,-0.1640917807817459,1.231519341468811,-0.6077091097831726,1.064355731010437,-0.05975145474076271,-0.0009504518820904195,-0.0050467317923903465,-0.0025663869455456734,0.005663939286023378,-0.0006169877015054226,-0.0032708358485251665,1.1002070903778076,-0.9549906253814697,4.669219493865967,0.011002070903778076,-0.009549906253814697,0.04669219493865967 +karman_re200,ppo,104,41.6,0.8062855005264282,-0.32986685633659363,1.0804884433746338,-0.6855670809745789,1.0334303379058838,-0.1988576501607895,-0.00148870050907135,-0.004159442614763975,0.0009751099860295653,0.007065592799335718,-0.0007505806279368699,-0.004700963851064444,-1.4202394485473633,2.325864315032959,9.419841766357422,-0.014202394485473634,0.02325864315032959,0.09419841766357422 +karman_re200,ppo,105,42.0,0.9182113409042358,-0.42286574840545654,1.0043833255767822,-0.6925716996192932,0.9969708323478699,-0.2818538546562195,0.0006401909631676972,-0.003859786782413721,0.004255590960383415,0.0068238829262554646,-0.0003555398725438863,-0.0035365470685064793,-2.086033344268799,1.3810324668884277,9.08924674987793,-0.02086033344268799,0.013810324668884278,0.0908924674987793 +karman_re200,ppo,106,42.4,1.0341997146606445,-0.45825931429862976,0.9591767191886902,-0.7234652638435364,0.9247912764549255,-0.32079142332077026,0.004898863844573498,-0.0021973715629428625,0.004943654406815767,0.0051371692679822445,-0.004872900899499655,-0.0021601058542728424,-2.569099187850952,1.1231203079223633,9.37700366973877,-0.025690991878509522,0.011231203079223633,0.0937700366973877 +karman_re200,ppo,107,42.8,1.1403809785842896,-0.4455666244029999,0.92149817943573,-0.7689074873924255,0.8472921252250671,-0.3099325895309448,0.005316394381225109,-0.0006168537656776607,0.0041516427882015705,0.002741848584264517,-0.006118235643953085,-0.005382414907217026,-2.7182023525238037,-0.5496213436126709,7.977419376373292,-0.027182023525238037,-0.005496213436126709,0.07977419376373292 +karman_re200,ppo,108,43.2,1.2213596105575562,-0.3773719370365143,0.8730699419975281,-0.8338587284088135,0.7719953060150146,-0.2537095546722412,0.0038709519430994987,0.0011671183165162802,0.002132527530193329,0.003152608871459961,-0.002150102984160185,-0.006547063589096069,-2.1217904090881348,-3.6744025945663448,4.230619490146637,-0.021217904090881347,-0.03674402594566345,0.04230619490146637 +karman_re200,ppo,109,43.6,1.2509874105453491,-0.23881787061691284,0.7960232496261597,-0.634016215801239,0.7211318016052246,-0.14689409732818604,0.0015336392680183053,0.0028587249107658863,0.0005451221950352192,0.0036594492848962545,-0.00016648723976686597,-0.005368645302951336,-1.8714784383773801,-3.787718653678894,4.041532874107361,-0.018714784383773803,-0.03787718653678894,0.04041532874107361 +karman_re200,ppo,110,44.0,1.257326602935791,-0.07818109542131424,0.7733213901519775,0.1634906381368637,0.7161638736724854,-0.012807022780179977,-0.0010555684566497803,0.003676648950204253,-0.00032171368366107345,0.0037624093238264322,0.0007619285024702549,-0.006056743673980236,-1.1939138174057007,-3.42021381855011,2.896440267562866,-0.011939138174057007,-0.0342021381855011,0.028964402675628664 +karman_re200,ppo,111,44.4,1.2553521394729614,0.07987944781780243,0.8265361189842224,0.6917306780815125,0.7486473917961121,0.14954163134098053,-0.00129421625752002,0.0038332315161824226,-0.0015403463039547205,0.0034935870207846165,0.0027428462635725737,-0.006275989580899477,1.2484259605407715,-6.457242488861084,-1.9495220184326172,0.012484259605407715,-0.06457242488861084,-0.019495220184326173 +karman_re200,ppo,112,44.8,1.1735166311264038,0.2588326036930084,0.8733580112457275,0.7269802093505859,0.8070934414863586,0.31422263383865356,0.0008834509644657373,0.004011010751128197,-0.0033560856245458126,0.0025323349982500076,0.005139858927577734,-0.006090123672038317,2.926436185836792,-8.088238716125488,-4.0,0.02926436185836792,-0.08088238716125488,-0.04 +karman_re200,ppo,113,45.2,1.06587553024292,0.3876081109046936,0.8871128559112549,0.7506620287895203,0.9031304121017456,0.4025866389274597,0.006342542823404074,0.00326495966874063,-0.007807047571986914,0.0016074504237622023,0.006278689019382,-0.006083817686885595,3.388373851776123,-8.072397708892822,-3.6493945121765137,0.03388373851776123,-0.08072397708892823,-0.03649394512176514 +karman_re200,ppo,114,45.6,0.9630861878395081,0.42575913667678833,0.8818338513374329,0.7757501006126404,1.0044327974319458,0.4527362585067749,0.007718581706285477,0.002312916098162532,-0.008886964060366154,0.005978727247565985,0.006913717370480299,-0.003977813757956028,3.1528387069702153,-7.2054221630096436,-1.6402416229248047,0.03152838706970215,-0.07205422163009643,-0.016402416229248047 +karman_re200,ppo,115,46.0,0.8734015822410583,0.40688663721084595,0.8622899651527405,0.8128988146781921,1.107285976409912,0.4603314995765686,0.008160565979778767,0.0005829783040098846,-0.0049306610599160194,0.005226543638855219,0.003061099676415324,-0.0024162090849131346,2.7063026428222656,-5.078374624252319,3.4252315759658813,0.027063026428222656,-0.050783746242523194,0.034252315759658813 +karman_re200,ppo,116,46.4,0.7958427667617798,0.33859801292419434,0.817527174949646,0.8566187024116516,1.201328992843628,0.4094679355621338,0.005739897023886442,-0.0007358652073889971,-0.0029926637653261423,0.0014340787893161178,0.0013950149295851588,-0.002261711284518242,2.666499137878418,-5.201318264007568,3.12815922498703,0.02666499137878418,-0.052013182640075685,0.0312815922498703 +karman_re200,ppo,117,46.8,0.7423851490020752,0.22141660749912262,0.7058743834495544,0.7988276481628418,1.247183084487915,0.26995787024497986,0.002387276152148843,-0.0033246041275560856,-0.0038768029771745205,0.0002463309792801738,6.766849401174113e-05,-0.0020176845137029886,3.2842743396759033,-5.890711784362793,-0.22251033782958984,0.032842743396759036,-0.05890711784362793,-0.0022251033782958985 +karman_re200,ppo,118,47.2,0.7338493466377258,0.07269074767827988,0.6212301254272461,0.08998500555753708,1.2437273263931274,0.051592789590358734,0.00045696113375015557,-0.0054544080048799515,-0.004797123838216066,0.004464632831513882,-0.00076304777758196,-0.002784023992717266,3.3009486198425293,-4.463171184062958,-0.10186290740966798,0.033009486198425295,-0.04463171184062958,-0.0010186290740966798 +karman_re200,ppo,119,47.6,0.7648074626922607,-0.09794174134731293,0.7223398089408875,-0.6821095943450928,1.2582005262374878,-0.12938320636749268,-0.0008642182219773531,-0.0051221661269664764,-0.001537853735499084,0.008200316689908504,-0.0008065053261816502,-0.0031729592010378838,0.7088814973831177,0.12808561325073242,6.743042945861817,0.007088814973831177,0.0012808561325073243,0.06743042945861817 +karman_re200,ppo,120,48.0,0.8158400058746338,-0.27431249618530273,0.8505567312240601,-0.806313157081604,1.1923768520355225,-0.288495808839798,-0.0013646602164953947,-0.0044523789547383785,0.0031783231534063816,0.008271371945738792,5.151635377842467e-06,-0.005652537569403648,-2.112753391265869,3.2481231689453125,11.367090702056885,-0.021127533912658692,0.032481231689453126,0.11367090702056885 +karman_re200,ppo,121,48.4,0.9054384827613831,-0.3723677396774292,0.9045238494873047,-0.8070560693740845,1.0859198570251465,-0.394338458776474,0.0014540452975779772,-0.003649526508525014,0.005841557867825031,0.006932592019438744,0.00023668314679525793,-0.0027991163078695536,-2.644756555557251,1.6102266311645508,10.182872295379639,-0.02644756555557251,0.01610226631164551,0.10182872295379639 +karman_re200,ppo,122,48.8,1.008843183517456,-0.4091970920562744,0.9295168519020081,-0.8259519338607788,0.9763461351394653,-0.4230293333530426,0.00528914388269186,-0.0020533499773591757,0.005920090712606907,0.0048849196173250675,-0.004532997962087393,-0.0027252701111137867,-3.0174546241760254,1.6308951377868652,10.241271495819092,-0.030174546241760254,0.01630895137786865,0.10241271495819092 +karman_re200,ppo,123,49.2,1.1107699871063232,-0.39962464570999146,0.9653617143630981,-0.8687453269958496,0.8759505748748779,-0.39792391657829285,0.005523168481886387,-9.766980656422675e-05,0.00454170536249876,0.0027806595899164677,-0.004490952473133802,-0.005043375305831432,-2.937844753265381,-0.7591438293457031,8.046258449554443,-0.02937844753265381,-0.007591438293457031,0.08046258449554443 +karman_re200,ppo,124,49.6,1.1849254369735718,-0.3299535810947418,1.0415794849395752,-0.9081287384033203,0.7808458805084229,-0.3111034631729126,0.003760021645575762,0.0015449412167072296,0.002282144036144018,0.0032485011033713818,-0.0021764077246189117,-0.005106030032038689,-2.2875075340270996,-3.3026459217071533,4.901383280754089,-0.022875075340270997,-0.033026459217071535,0.049013832807540895 +karman_re200,ppo,125,50.0,1.2015763521194458,-0.20485462248325348,1.1314055919647217,-0.5478872060775757,0.7138030529022217,-0.16557958722114563,0.001372080179862678,0.003107735887169838,0.00014027036377228796,0.0031716576777398586,-0.0011420046212151647,-0.004694951232522726,-2.0666141510009766,-2.840315580368042,4.682432413101196,-0.020666141510009766,-0.02840315580368042,0.046824324131011966 +karman_re200,ppo,126,50.4,1.1722586154937744,-0.04153800010681152,1.1345617771148682,0.31289049983024597,0.7112995982170105,0.01351523119956255,-0.001265292870812118,0.00363870314322412,-0.0005842505488544703,0.003255539806559682,0.0002417643991066143,-0.006161960307508707,-0.7467321753501892,-3.791853666305542,1.982335090637207,-0.007467321753501892,-0.03791853666305542,0.01982335090637207 +karman_re200,ppo,127,50.8,1.1586180925369263,0.10647822171449661,1.0555717945098877,0.6944909691810608,0.7542932033538818,0.21546995639801025,-0.0012018964625895023,0.0037432583048939705,-0.0018553519621491432,0.0031315472442656755,0.003275858471170068,-0.006689644884318113,1.894654393196106,-7.270974159240723,-3.0916824340820312,0.01894654393196106,-0.07270974159240723,-0.030916824340820312 +karman_re200,ppo,128,51.2,1.1055084466934204,0.2387107014656067,0.9990457892417908,0.6991948485374451,0.8281785845756531,0.376775324344635,0.0014588091289624572,0.00403166888281703,-0.003785825101658702,0.002134694717824459,0.005952758714556694,-0.006992987357079983,3.1693170070648193,-8.331079006195068,-4.0,0.031693170070648195,-0.08331079006195069,-0.04 +karman_re200,ppo,129,51.6,1.0150420665740967,0.3269404172897339,0.9706971645355225,0.7173230648040771,0.9346304535865784,0.445535808801651,0.007281752303242683,0.003252126509323716,-0.008692852221429348,0.0018497772980481386,0.007084273733198643,-0.0065571460872888565,3.4804804325103755,-8.46957778930664,-3.7266945838928223,0.03480480432510376,-0.08469577789306641,-0.03726694583892822 +karman_re200,ppo,130,52.0,0.9217391014099121,0.3402736186981201,0.9400444626808167,0.7290458083152771,1.0338778495788574,0.47963669896125793,0.00797874666750431,0.0016704828012734652,-0.008388720452785492,0.006447969004511833,0.006413206458091736,-0.0040245442651212215,3.002079486846924,-7.093399286270141,-0.9645109176635743,0.030020794868469237,-0.07093399286270141,-0.009645109176635743 +karman_re200,ppo,131,52.4,0.8322194814682007,0.31203484535217285,0.8991004228591919,0.7620648145675659,1.1268928050994873,0.4763249456882477,0.007913302630186081,0.00022319665004033595,-0.004950250964611769,0.0045160227455198765,0.002363680163398385,-0.002649298869073391,2.5720598697662354,-5.002678632736206,4.231488049030304,0.025720598697662356,-0.050026786327362065,0.04231488049030304 +karman_re200,ppo,132,52.8,0.755583643913269,0.23369793593883514,0.8321487903594971,0.782758355140686,1.209722876548767,0.4194018542766571,0.0049403016455471516,-0.0012276004999876022,-0.0030596130527555943,0.0007199312094599009,0.001347090001218021,-0.0023715547285974026,2.698106527328491,-5.3962321281433105,2.754610300064087,0.026981065273284914,-0.05396232128143311,0.027546103000640868 +karman_re200,ppo,133,53.2,0.7155246734619141,0.12145620584487915,0.709614634513855,0.654329776763916,1.2423272132873535,0.2878015339374542,0.0017571678617969155,-0.0039846040308475494,-0.004138687159866095,0.000666357867885381,-0.0003339154354762286,-0.00243373797275126,3.278810501098633,-5.741978406906128,-0.34739160537719727,0.03278810501098633,-0.05741978406906128,-0.0034739160537719726 +karman_re200,ppo,134,53.6,0.7411101460456848,-0.008444397710263729,0.6025437712669373,-0.02655324526131153,1.1911988258361816,0.04501568153500557,-0.00029166831518523395,-0.005762928165495396,-0.0039937421679496765,0.00543429097160697,-0.0006520446622744203,-0.00326803931966424,2.9147839546203613,-3.778282642364502,0.8818535804748535,0.029147839546203615,-0.03778282642364502,0.008818535804748536 +karman_re200,ppo,135,54.0,0.787574291229248,-0.1648503690958023,0.6643535494804382,-0.691134512424469,1.176609992980957,-0.15867984294891357,-0.0013414244167506695,-0.004891487769782543,-0.00031063606729730964,0.008390095084905624,-0.0009246200206689537,-0.0038945262786000967,0.08426657319068909,0.8051900863647461,7.698507308959961,0.0008426657319068909,0.008051900863647462,0.0769850730895996 +karman_re200,ppo,136,54.4,0.8385658264160156,-0.31386685371398926,0.7791642546653748,-0.817643404006958,1.126928687095642,-0.31527116894721985,-0.0011063459096476436,-0.00453718937933445,0.0038735901471227407,0.007937362417578697,0.00021266069961711764,-0.005676436237990856,-2.332858085632324,2.848997116088867,11.00554084777832,-0.023328580856323243,0.028489971160888673,0.11005540847778321 +karman_re200,ppo,137,54.8,0.9289502501487732,-0.3973711133003235,0.8363525867462158,-0.8117150664329529,1.031915545463562,-0.4214009940624237,0.0024917852133512497,-0.003355553839355707,0.005870765075087547,0.00665654893964529,-0.0011802716180682182,-0.002518606139346957,-2.8220512866973877,1.5426959991455078,10.167677402496338,-0.028220512866973878,0.015426959991455078,0.10167677402496338 +karman_re200,ppo,138,55.2,1.0293431282043457,-0.43849027156829834,0.8561534285545349,-0.8300955891609192,0.9350537657737732,-0.4488712549209595,0.005895062815397978,-0.0017266693757846951,0.005670864600688219,0.004374946001917124,-0.005761817563325167,-0.003291114466264844,-3.1670727729797363,1.2999744415283203,10.09416389465332,-0.031670727729797364,0.012999744415283204,0.1009416389465332 +karman_re200,ppo,139,55.6,1.1328420639038086,-0.42915818095207214,0.8669904470443726,-0.8745542168617249,0.8445056080818176,-0.42493340373039246,0.005410763435065746,0.0004159333184361458,0.0038202109280973673,0.0029234185349196196,-0.004667585715651512,-0.005763491615653038,-2.921724319458008,-1.582124948501587,7.331727504730225,-0.029217243194580078,-0.01582124948501587,0.07331727504730225 +karman_re200,ppo,140,56.0,1.2153550386428833,-0.34926995635032654,0.8708340525627136,-0.9353137016296387,0.761605441570282,-0.34089165925979614,0.0034248761367052794,0.0018192398129031062,0.0017370299901813269,0.0035453138407319784,-0.0019100739154964685,-0.005278458818793297,-2.278120279312134,-3.845868229866028,4.5715012550354,-0.02278120279312134,-0.03845868229866028,0.045715012550354005 +karman_re200,ppo,141,56.4,1.2360877990722656,-0.1951492875814438,0.8559007048606873,-0.688571572303772,0.6997952461242676,-0.20760054886341095,0.0008319790940731764,0.003532412927597761,-0.00027409777976572514,0.0032587891910225153,-0.001032288302667439,-0.004906546324491501,-2.218493938446045,-2.6744725704193115,4.909961700439453,-0.02218493938446045,-0.026744725704193117,0.04909961700439453 +karman_re200,ppo,142,56.8,1.2581632137298584,-0.029773013666272163,0.8749449253082275,0.20110537111759186,0.6888144016265869,-0.03644408658146858,-0.001654095365665853,0.0038499024230986834,-0.000683224352542311,0.0034246037248522043,0.00038687619962729514,-0.006441459525376558,-1.15923273563385,-3.2261186242103577,2.3500759601593018,-0.011592327356338502,-0.03226118624210358,0.023500759601593018 +karman_re200,ppo,143,57.2,1.2483271360397339,0.13838917016983032,0.9167866706848145,0.7574033141136169,0.729337215423584,0.14399176836013794,-0.0014777823816984892,0.0036415765061974525,-0.0017230510711669922,0.003063017735257745,0.0032482550013810396,-0.006739177741110325,1.5207511186599731,-6.835027933120728,-2.800565719604492,0.015207511186599732,-0.06835027933120728,-0.028005657196044923 +karman_re200,ppo,144,57.6,1.1609433889389038,0.30834996700286865,0.9433884620666504,0.7898967862129211,0.7950167059898376,0.3250797390937805,0.0009995745494961739,0.0039329202845692635,-0.003443474415689707,0.0024406209122389555,0.006020580418407917,-0.006776497233659029,3.2082993984222417,-8.386019706726074,-4.0,0.032082993984222416,-0.08386019706726075,-0.04 +karman_re200,ppo,145,58.0,1.0586786270141602,0.40162989497184753,0.9612979292869568,0.796713650226593,0.8973305225372314,0.41344982385635376,0.006548725534230471,0.0027129820082336664,-0.00788153801113367,0.0016990373842418194,0.00721531268209219,-0.006906592287123203,3.5780558586120605,-8.410728454589844,-3.9205098152160645,0.03578055858612061,-0.08410728454589844,-0.039205098152160646 +karman_re200,ppo,146,58.4,0.9494863152503967,0.4174883961677551,0.9725235104560852,0.8029264211654663,1.000171184539795,0.45001325011253357,0.00723046762868762,0.0013308287598192692,-0.008390368893742561,0.006706118118017912,0.007026315201073885,-0.004462274722754955,3.1962945461273193,-7.288733959197999,-1.4971504211425781,0.03196294546127319,-0.07288733959197999,-0.014971504211425781 +karman_re200,ppo,147,58.8,0.8373034000396729,0.3866935968399048,0.9867358207702637,0.8278583288192749,1.0877941846847534,0.44414234161376953,0.007160015869885683,-0.0004863649373874068,-0.004423488862812519,0.005496193654835224,0.002476703142747283,-0.003132779384031892,2.76971697807312,-5.026740789413452,4.034134745597839,0.027697169780731203,-0.05026740789413452,0.040341347455978394 +karman_re200,ppo,148,59.2,0.7379729747772217,0.2923104465007782,1.0368837118148804,0.8327099084854126,1.1576611995697021,0.38898083567619324,0.004557915963232517,-0.001724226283840835,-0.0022380950395017862,0.0017670756205916405,0.00084446877008304,-0.002600396517664194,2.790766477584839,-5.323847770690918,3.150462925434112,0.027907664775848388,-0.05323847770690918,0.031504629254341124 +karman_re200,ppo,149,59.6,0.6747370362281799,0.14020855724811554,1.1219360828399658,0.6174259185791016,1.1827837228775024,0.2861238718032837,0.001374108367599547,-0.004207176622003317,-0.0030499303247779608,0.0007380999741144478,-0.0004303333116695285,-0.0023609185591340065,3.2705612182617188,-5.720938444137573,0.06961584091186523,0.03270561218261719,-0.05720938444137574,0.0006961584091186524 +karman_re200,ppo,150,60.0,0.688004732131958,-0.04703584313392639,1.1186974048614502,-0.19162367284297943,1.1079572439193726,0.05807843059301376,-0.0005851757014170289,-0.005807990208268166,-0.003600053722038865,0.00480692321434617,-0.0006065348861739039,-0.0031640655361115932,2.848813533782959,-3.648736357688904,0.9257106781005859,0.028488135337829592,-0.03648736357688904,0.00925710678100586 +karman_re200,ppo,151,60.4,0.7650595307350159,-0.21804967522621155,1.0365272760391235,-0.7346829771995544,1.0380911827087402,-0.17963264882564545,-0.0012946802889928222,-0.0049276878125965595,-0.0006011785590089858,0.007952578365802765,-0.0007308829808607697,-0.003783110762014985,-0.0845295637845993,1.1142892837524414,7.707848072052002,-0.0008452956378459931,0.011142892837524414,0.07707848072052002 +karman_re200,ppo,152,60.8,0.8524230718612671,-0.3625836968421936,0.9783313274383545,-0.7781132459640503,1.0348100662231445,-0.3070116341114044,-0.0008975355885922909,-0.004452446475625038,0.003534061601385474,0.007877357304096222,0.00033295038156211376,-0.005339622497558594,-2.2402467727661133,2.711398124694824,10.89070749282837,-0.02240246772766113,0.027113981246948242,0.10890707492828369 +karman_re200,ppo,153,61.2,0.9574486017227173,-0.4306601583957672,0.9440227746963501,-0.7725369930267334,0.9733741283416748,-0.3787291347980499,0.0027241320349276066,-0.0028414041735231876,0.00556989386677742,0.00664001889526844,-0.001205375068821013,-0.0023971362970769405,-2.650113105773926,1.358682632446289,10.032602310180664,-0.02650113105773926,0.01358682632446289,0.10032602310180665 +karman_re200,ppo,154,61.6,1.0651369094848633,-0.4539144039154053,0.9206156730651855,-0.7971317768096924,0.894855260848999,-0.3904966115951538,0.005478233098983765,-0.001045785378664732,0.005176182370632887,0.004162461031228304,-0.005571621470153332,-0.0035905898548662663,-2.9847500324249268,0.8904428482055663,9.673488140106201,-0.02984750032424927,0.008904428482055663,0.09673488140106201 +karman_re200,ppo,155,62.0,1.1666557788848877,-0.419998437166214,0.9027349948883057,-0.8457146286964417,0.8177245259284973,-0.3542647063732147,0.004401307553052902,0.0009985285578295588,0.0033381807152181864,0.0030462227296084166,-0.003539564087986946,-0.006653530523180962,-2.644972085952759,-2.118575096130371,6.419817447662354,-0.026449720859527587,-0.02118575096130371,0.06419817447662354 +karman_re200,ppo,156,62.4,1.2365965843200684,-0.3168303966522217,0.875698983669281,-0.8691021800041199,0.7532684206962585,-0.26131153106689453,0.0024260985665023327,0.002276743995025754,0.0012490388471633196,0.003922947682440281,-0.0005191208329051733,-0.006278945133090019,-1.9940389394760134,-4.303110420703888,3.78322896361351,-0.019940389394760134,-0.04303110420703888,0.0378322896361351 +karman_re200,ppo,157,62.8,1.243811011314392,-0.15057072043418884,0.8407167792320251,-0.36339110136032104,0.7188156247138977,-0.1240229606628418,-0.00028465938521549106,0.0038066536653786898,-0.00021733682660851628,0.0038113004993647337,0.0004346749046817422,-0.006163178011775017,-1.8644139766693115,-3.181277692317962,4.249913573265076,-0.018644139766693116,-0.031812776923179624,0.04249913573265076 +karman_re200,ppo,158,63.2,1.2582900524139404,0.009436852298676968,0.8595855236053467,0.49366965889930725,0.7313666343688965,0.044916167855262756,-0.001644022879190743,0.0035834379959851503,-0.0011389945866540074,0.003413537750020623,0.0017429387662559748,-0.006686666049063206,-0.1554379016160965,-4.8533788323402405,0.5169563293457031,-0.001554379016160965,-0.0485337883234024,0.0051695632934570315 +karman_re200,ppo,159,63.6,1.2253819704055786,0.16866590082645416,0.9043674468994141,0.7490123510360718,0.7728365063667297,0.23716072738170624,-0.0008196838316507638,0.003558667842298746,-0.0023034587502479553,0.0028687850572168827,0.004208281636238098,-0.006632924545556307,2.375333786010742,-7.705667495727539,-3.6771473884582515,0.023753337860107422,-0.07705667495727539,-0.03677147388458252 +karman_re200,ppo,160,64.0,1.1267393827438354,0.3159608542919159,0.9254106879234314,0.7562076449394226,0.8474781513214111,0.3820838928222656,0.0032571128103882074,0.003275459399446845,-0.005516976583749056,0.001361681497655809,0.006050004158169031,-0.006729435175657272,3.3204739093780513,-8.226254940032959,-4.0,0.033204739093780515,-0.0822625494003296,-0.04 +karman_re200,ppo,161,64.4,1.020979881286621,0.37884312868118286,0.9342498183250427,0.7796609997749329,0.9519280195236206,0.43680649995803833,0.00755462609231472,0.002841972978785634,-0.009367558173835278,0.003825786057859659,0.007961918599903584,-0.005522208753973246,3.5133991241455083,-8.049636840820312,-3.2578954696655273,0.03513399124145508,-0.08049636840820312,-0.032578954696655275 +karman_re200,ppo,162,64.8,0.9128650426864624,0.37616488337516785,0.9415546655654907,0.8061208128929138,1.0536006689071655,0.4631519019603729,0.007906693033874035,0.0008702738559804857,-0.005997098051011562,0.006968818139284849,0.00507901469245553,-0.003205239772796631,2.9131312370300293,-6.084614038467407,1.1346168518066406,0.029131312370300293,-0.06084614038467407,0.011346168518066406 +karman_re200,ppo,163,65.2,0.7987539172172546,0.32433512806892395,0.9527180194854736,0.8312103748321533,1.138320803642273,0.43855541944503784,0.0066435313783586025,-0.000452188600320369,-0.003330729901790619,0.0034868421498686075,0.0013215766521170735,-0.0023664713371545076,2.576582431793213,-5.0048606395721436,4.4192200899124146,0.025765824317932128,-0.05004860639572144,0.044192200899124144 +karman_re200,ppo,164,65.6,0.6990544199943542,0.22310949862003326,0.9770192503929138,0.8406459093093872,1.1979482173919678,0.3677593469619751,0.0035592697095125914,-0.002307865535840392,-0.002566581591963768,0.00023109726316761225,0.0008556504617445171,-0.0019590475130826235,3.0004496574401855,-5.705933094024658,1.4110708236694336,0.030004496574401854,-0.05705933094024658,0.014110708236694336 +karman_re200,ppo,165,66.0,0.657733678817749,0.08314240723848343,0.9690060615539551,0.5137877464294434,1.1932661533355713,0.1994536966085434,0.0010511234868317842,-0.004816649481654167,-0.00428628409281373,0.0018339533125981688,-0.0005710436962544918,-0.002652219496667385,3.4794681072235107,-5.4064719676971436,-0.6619181632995605,0.03479468107223511,-0.054064719676971434,-0.006619181632995606 +karman_re200,ppo,166,66.4,0.7054122686386108,-0.0655980259180069,0.9249985218048096,-0.37292274832725525,1.1526223421096802,-0.04768485948443413,-0.0005388179561123252,-0.005894976202398539,-0.0033076470717787743,0.006855095736682415,-0.00048196138232015073,-0.003207577858120203,2.4866867065429688,-2.8312909603118896,2.544157028198242,0.024866867065429687,-0.028312909603118896,0.025441570281982424 +karman_re200,ppo,167,66.8,0.7889007329940796,-0.21231742203235626,0.9071251153945923,-0.8410213589668274,1.1512207984924316,-0.2222992330789566,-0.0013776677660644054,-0.004733414854854345,0.0007079775095917284,0.008691299706697464,-0.001014989335089922,-0.004903675988316536,-0.9375351667404176,2.1675643920898438,9.944273471832275,-0.009375351667404176,0.02167564392089844,0.09944273471832275 +karman_re200,ppo,168,67.2,0.8769103288650513,-0.3420688211917877,0.9157603979110718,-0.8557102084159851,1.077986478805542,-0.3655836880207062,-0.00023624602181371301,-0.004187555052340031,0.004844853188842535,0.007854718714952469,0.0012412754585966468,-0.004727447405457497,-2.595808267593384,2.471792221069336,11.089709758758545,-0.025958082675933837,0.02471792221069336,0.11089709758758545 +karman_re200,ppo,169,67.6,0.9777809977531433,-0.3983408212661743,0.9288496971130371,-0.8447925448417664,0.9714066982269287,-0.4289895296096802,0.003995136823505163,-0.0023344187065958977,0.006036296486854553,0.006304101552814245,-0.002915163990110159,-0.0016629196470603347,-2.9762353897094727,1.7207894325256348,10.604054927825928,-0.029762353897094727,0.017207894325256348,0.10604054927825927 +karman_re200,ppo,170,68.0,1.077103853225708,-0.4098862111568451,0.9617823958396912,-0.8741295337677002,0.862581729888916,-0.4313855469226837,0.005757280625402927,-0.0005875774659216404,0.005625399295240641,0.0036886141169816256,-0.006145153660327196,-0.0046959505416452885,-3.2289481163024902,0.8131003379821777,9.65361738204956,-0.0322894811630249,0.008131003379821778,0.0965361738204956 +karman_re200,ppo,171,68.4,1.1616337299346924,-0.36122798919677734,1.0455681085586548,-0.9303421974182129,0.7569761872291565,-0.36967480182647705,0.004353501368314028,0.0014169920468702912,0.0032298830337822437,0.0033221906051039696,-0.002654477022588253,-0.006507433019578457,-2.652202844619751,-2.957813858985901,5.610284686088562,-0.02652202844619751,-0.02957813858985901,0.056102846860885625 +karman_re200,ppo,172,68.8,1.2079339027404785,-0.25773200392723083,1.1917295455932617,-0.7820110321044922,0.6724220514297485,-0.24081102013587952,0.0022053446155041456,0.002635466866195202,0.0009615910239517689,0.00391748733818531,-0.0008626148919574916,-0.005416716914623976,-2.141890287399292,-3.8819203972816467,4.373134970664978,-0.02141890287399292,-0.03881920397281647,0.04373134970664978 +karman_re200,ppo,173,69.2,1.2076419591903687,-0.10466013848781586,1.2689746618270874,0.005344382021576166,0.6458615660667419,-0.058409109711647034,-0.0006585990777239203,0.00394922960549593,-0.00046824730816297233,0.003600566415116191,-1.787090877769515e-05,-0.006043695379048586,-1.593865156173706,-3.161192536354065,3.8700684309005737,-0.01593865156173706,-0.03161192536354065,0.03870068430900574 +karman_re200,ppo,174,69.6,1.2073532342910767,0.04939774423837662,1.1648367643356323,0.6212193965911865,0.6890814900398254,0.13513797521591187,-0.0015688353450968862,0.0033814532216638327,-0.0014070167671889067,0.0032871791627258062,0.0019325827015563846,-0.006877907086163759,0.960571587085724,-6.342548847198487,-1.5160012245178223,0.00960571587085724,-0.06342548847198487,-0.015160012245178224 +karman_re200,ppo,175,70.0,1.1487586498260498,0.21333838999271393,1.0416769981384277,0.7059677839279175,0.7643181085586548,0.3209896385669708,-0.00018547454965300858,0.0038138562813401222,-0.0027726306580007076,0.0027926929760724306,0.004910492803901434,-0.007152062840759754,2.8072500228881836,-8.136467933654785,-4.0,0.028072500228881837,-0.08136467933654785,-0.04 +karman_re200,ppo,176,70.4,1.0475281476974487,0.34250718355178833,0.9875997304916382,0.742781400680542,0.8694323897361755,0.4372234642505646,0.005431509111076593,0.0030226493254303932,-0.007189559750258923,0.0010640202090144157,0.006404651794582605,-0.007089883089065552,3.390836715698242,-8.432048320770264,-4.0,0.03390836715698242,-0.08432048320770263,-0.04 +karman_re200,ppo,177,70.8,0.955122709274292,0.38038620352745056,0.9578666090965271,0.7618182897567749,0.9836839437484741,0.4777177572250366,0.00767621211707592,0.002582537243142724,-0.009637637995183468,0.005751850549131632,0.007925600744783878,-0.0049230135045945644,3.3303134441375732,-7.784315109252931,-2.4795117378234863,0.03330313444137573,-0.0778431510925293,-0.024795117378234866 +karman_re200,ppo,178,71.2,0.8714656233787537,0.3712649941444397,0.9312574863433838,0.7992633581161499,1.0914692878723145,0.48910772800445557,0.008224323391914368,0.0006330861360765994,-0.005155173130333424,0.0063854726031422615,0.0035989994648844004,-0.003134628525003791,2.758840322494507,-5.39959979057312,3.0696403980255127,0.02758840322494507,-0.0539959979057312,0.030696403980255128 +karman_re200,ppo,179,71.6,0.7928046584129333,0.30605125427246094,0.8943561315536499,0.8393694162368774,1.1823456287384033,0.44153523445129395,0.005873458925634623,-0.0005539096309803426,-0.0026504299603402615,0.0020962869748473167,0.0011672963155433536,-0.0025564972311258316,2.5678138732910156,-5.297728776931763,3.8499945402145386,0.025678138732910156,-0.05297728776931763,0.03849994540214539 +karman_re200,ppo,180,72.0,0.7292399406433105,0.1937393695116043,0.8191863298416138,0.8058266639709473,1.2292659282684326,0.33568042516708374,0.002530134515836835,-0.003093475941568613,-0.0034359728451818228,-0.0003787442692555487,0.0001974120968952775,-0.0019813920371234417,3.2007467746734615,-6.093067646026611,0.010843753814697266,0.032007467746734616,-0.06093067646026611,0.00010843753814697265 +karman_re200,ppo,181,72.4,0.7123430371284485,0.044867485761642456,0.7350703477859497,0.16299214959144592,1.1922258138656616,0.1140357032418251,0.0006226372206583619,-0.0054676104336977005,-0.005237535107880831,0.003430380020290613,-0.0008949946495704353,-0.002840309403836727,3.435678243637085,-4.832886040210724,-0.7516660690307617,0.03435678243637085,-0.04832886040210724,-0.007516660690307617 +karman_re200,ppo,182,72.8,0.7476986646652222,-0.11927159130573273,0.7675575017929077,-0.6510204076766968,1.1745755672454834,-0.10581845045089722,-0.0006206054822541773,-0.005375813227146864,-0.0023434918839484453,0.008377037942409515,-0.000652893097139895,-0.0030406671576201916,1.1621344089508057,-0.546126127243042,5.6943055391311646,0.011621344089508058,-0.00546126127243042,0.05694305539131165 +karman_re200,ppo,183,73.2,0.810039758682251,-0.2821783125400543,0.8544793725013733,-0.8219770789146423,1.147422432899475,-0.27120280265808105,-0.0013686638558283448,-0.004686100874096155,0.002939787460491061,0.008940582163631916,-0.00043099955655634403,-0.006136909127235413,-2.0430948734283447,3.29508113861084,11.749144077301025,-0.020430948734283447,0.0329508113861084,0.11749144077301026 +karman_re200,ppo,184,73.6,0.9084850549697876,-0.38084346055984497,0.9013497829437256,-0.8283351063728333,1.0549952983856201,-0.4043518900871277,0.0011363807134330273,-0.0038458972703665495,0.006134146358817816,0.007493959739804268,0.001124063041061163,-0.0033306682016700506,-2.763394594192505,1.6092753410339353,10.646973133087158,-0.02763394594192505,0.016092753410339354,0.10646973133087158 +karman_re200,ppo,185,74.0,1.011812686920166,-0.41907691955566406,0.9276590943336487,-0.8482109904289246,0.9439654350280762,-0.45092064142227173,0.005269057583063841,-0.002225711476057768,0.006163655314594507,0.00513403071090579,-0.00447496771812439,-0.002226968528702855,-3.138279438018799,1.7230854034423828,10.715773105621338,-0.03138279438018799,0.01723085403442383,0.10715773105621339 +karman_re200,ppo,186,74.4,1.1088297367095947,-0.41497093439102173,0.9686300754547119,-0.8831239342689514,0.8314252495765686,-0.43886107206344604,0.005851141642779112,-0.0001463026856072247,0.004895507823675871,0.002859046682715416,-0.005238802637904882,-0.004841211251914501,-3.137359857559204,-0.25584983825683594,8.602456092834473,-0.03137359857559204,-0.0025584983825683596,0.08602456092834473 +karman_re200,ppo,187,74.8,1.187727451324463,-0.3479991555213928,1.0582078695297241,-0.9474495649337769,0.7253801822662354,-0.35748547315597534,0.004108233377337456,0.0014796726172789931,0.002791241742670536,0.003211844014003873,-0.002526613185182214,-0.005265199113637209,-2.449273109436035,-3.2892661094665527,5.05853796005249,-0.024492731094360353,-0.03289266109466553,0.0505853796005249 +karman_re200,ppo,188,75.2,1.21766996383667,-0.22240018844604492,1.1971745491027832,-0.6715922355651855,0.6485864520072937,-0.21300853788852692,0.0018466043984517455,0.0030216530431061983,0.000394559494452551,0.0033649441320449114,-0.0014104642905294895,-0.0046998863108456135,-2.265841007232666,-2.932934284210205,4.821942567825317,-0.02265841007232666,-0.029329342842102053,0.04821942567825317 +karman_re200,ppo,189,75.6,1.2181212902069092,-0.06098981946706772,1.2499597072601318,0.20246952772140503,0.6413427591323853,-0.02290765941143036,-0.0011354971211403608,0.003810759400948882,-0.0003613042354118079,0.003492899239063263,2.487503479642328e-05,-0.006310753058642149,-1.2149274349212646,-3.359546482563019,2.850531816482544,-0.012149274349212646,-0.03359546482563019,0.02850531816482544 +karman_re200,ppo,190,76.0,1.2145109176635742,0.09347561001777649,1.1449687480926514,0.6949062347412109,0.7047587633132935,0.1647253781557083,-0.001407648902386427,0.0036133378744125366,-0.001668495824560523,0.003206392517313361,0.0027504158206284046,-0.006876751780509949,1.4991000890731812,-7.0154218673706055,-2.624307155609131,0.014991000890731812,-0.07015421867370605,-0.026243071556091308 +karman_re200,ppo,191,76.4,1.1363388299942017,0.25789448618888855,1.0431244373321533,0.7289893627166748,0.7854281067848206,0.35068878531455994,0.0005349733983166516,0.004042775835841894,-0.0032599440310150385,0.0026249438524246216,0.00573499733582139,-0.007228105794638395,3.0646581649780273,-8.362545013427734,-4.0,0.030646581649780274,-0.08362545013427734,-0.04 +karman_re200,ppo,192,76.8,1.0352579355239868,0.36144381761550903,1.0008612871170044,0.7568223476409912,0.8918008208274841,0.44751647114753723,0.006401351653039455,0.0030246544629335403,-0.008004206232726574,0.0013303832383826375,0.006871499586850405,-0.007190888747572899,3.500589609146118,-8.54646110534668,-3.956813335418701,0.03500589609146118,-0.0854646110534668,-0.03956813335418701 +karman_re200,ppo,193,77.2,0.9389467835426331,0.38062745332717896,0.9773090481758118,0.7696014642715454,1.0004578828811646,0.48062846064567566,0.007706441450864077,0.002030374715104699,-0.009246462024748325,0.006365963723510504,0.0073340595699846745,-0.004663363099098206,3.2056694030761714,-7.547998905181885,-1.9446101188659668,0.032056694030761716,-0.07547998905181885,-0.019446101188659668 +karman_re200,ppo,194,77.6,0.8449117541313171,0.3571150302886963,0.9606884121894836,0.8034927248954773,1.0989936590194702,0.4821568727493286,0.007981455884873867,0.0001003881188808009,-0.004921030718833208,0.005751072894781828,0.002960942918434739,-0.0031840193551033735,2.7150821685791016,-5.180516958236694,3.738671839237213,0.027150821685791016,-0.051805169582366944,0.037386718392372134 +karman_re200,ppo,195,78.0,0.7588147521018982,0.27470698952674866,0.9526289105415344,0.8252508640289307,1.1827536821365356,0.43030306696891785,0.005235192831605673,-0.0010139684891328216,-0.002511515049263835,0.0016834002453833818,0.0012422366999089718,-0.002627004636451602,2.6637237071990967,-5.384335041046143,3.445629417896271,0.026637237071990966,-0.05384335041046143,0.03445629417896271 +karman_re200,ppo,196,78.4,0.6952923536300659,0.14557795226573944,0.9303237795829773,0.7350705862045288,1.2236348390579224,0.3289065659046173,0.0019481449853628874,-0.0037641122471541166,-0.0036452841013669968,0.00014952402852941304,-0.00024534654221497476,-0.002266598166897893,3.276355028152466,-6.010766506195068,-0.1346898078918457,0.03276355028152466,-0.060107665061950685,-0.001346898078918457 +karman_re200,ppo,197,78.8,0.6924348473548889,-0.014489153400063515,0.8653651475906372,0.038694970309734344,1.170384168624878,0.1004960834980011,-6.979770842008293e-05,-0.005741295870393515,-0.004639829974621534,0.004584150854498148,-0.0007998334476724267,-0.003129414515569806,3.266455888748169,-4.368944585323334,-0.0028867721557617188,0.03266455888748169,-0.04368944585323334,-2.8867721557617187e-05 +karman_re200,ppo,198,79.2,0.7499921917915344,-0.17057685554027557,0.8457990288734436,-0.704712986946106,1.1208244562149048,-0.1395891159772873,-0.0010331269586458802,-0.005114267580211163,-0.0012917674612253904,0.008519872091710567,-0.0007536147022619843,-0.003353807143867016,0.6578947901725769,0.15179681777954102,6.7981014251708975,0.0065789479017257695,0.00151796817779541,0.06798101425170898 +karman_re200,ppo,199,79.6,0.8236847519874573,-0.3213154971599579,0.8759457468986511,-0.8435590863227844,1.0918651819229126,-0.3051643669605255,-0.0013261628337204456,-0.004590163007378578,0.0034616596531122923,0.008458536118268967,2.908815622504335e-05,-0.0060370564460754395,-2.2400810718536377,3.133373737335205,11.566600322723389,-0.022400810718536376,0.03133373737335205,0.11566600322723389 +karman_re200,ppo,200,80.0,0.9282611608505249,-0.4053441882133484,0.8966171145439148,-0.8341055512428284,1.012864351272583,-0.4184473752975464,0.001750270719639957,-0.003423090325668454,0.0060912128537893295,0.007248840294778347,0.0002894658246077597,-0.0028188165742903948,-2.833597421646118,1.5368151664733887,10.447930335998535,-0.028335974216461182,0.015368151664733888,0.10447930335998536 +karman_re200,ppo,201,80.4,1.0373756885528564,-0.44092777371406555,0.9077240228652954,-0.8542250990867615,0.9211418032646179,-0.45073309540748596,0.005507654044777155,-0.001849098363891244,0.0059824478812515736,0.004817737266421318,-0.005005775485187769,-0.002927472349256277,-3.2051627635955806,1.5779380798339844,10.542958736419678,-0.03205162763595581,0.015779380798339845,0.10542958736419678 +karman_re200,ppo,202,80.8,1.1387276649475098,-0.4232065975666046,0.9251682758331299,-0.902601420879364,0.8251073956489563,-0.42638641595840454,0.005453095305711031,0.00035684570320881903,0.0043507893569767475,0.0029129544273018837,-0.004582396242767572,-0.005340974777936935,-3.064803123474121,-0.9789390563964844,7.922443389892577,-0.030648031234741212,-0.009789390563964844,0.07922443389892578 +karman_re200,ppo,203,81.2,1.2131636142730713,-0.33821797370910645,0.9620999693870544,-0.9767035841941833,0.7341228723526001,-0.3376091420650482,0.0035340068861842155,0.0017357770120725036,0.002181385410949588,0.0033616633154451847,-0.00205383007414639,-0.005301379133015871,-2.400796413421631,-3.4938370585441585,4.80351984500885,-0.024007964134216308,-0.03493837058544159,0.0480351984500885 +karman_re200,ppo,204,81.6,1.2286280393600464,-0.18720215559005737,1.0193699598312378,-0.6063331365585327,0.672940194606781,-0.19346298277378082,0.0012563952477648854,0.0034016987774521112,-7.865071529522538e-05,0.003230801783502102,-0.000989345135167241,-0.0048799277283251286,-2.280052423477173,-2.6277931928634644,4.892872095108032,-0.02280052423477173,-0.026277931928634646,0.04892872095108032 +karman_re200,ppo,205,82.0,1.2415026426315308,-0.026041846722364426,1.0555357933044434,0.3351263105869293,0.6734952330589294,-0.010840964503586292,-0.0014452853938564658,0.0037658808287233114,-0.0005149655626155436,0.0034008054062724113,0.00048629488446749747,-0.006535322871059179,-0.8810591697692871,-3.69137716293335,2.0953986644744873,-0.008810591697692872,-0.0369137716293335,0.020953986644744873 +karman_re200,ppo,206,82.4,1.2329963445663452,0.13080233335494995,1.030556559562683,0.7656266093254089,0.7313681840896606,0.175680011510849,-0.0012830522609874606,0.00365448952652514,-0.001750189228914678,0.0031672278419137,0.003383179660886526,-0.00697749387472868,1.9103112220764158,-7.446452617645263,-3.318843364715576,0.01910311222076416,-0.07446452617645263,-0.03318843364715576 +karman_re200,ppo,207,82.8,1.1445043087005615,0.2922394275665283,0.9993945956230164,0.7705097198486328,0.8069126009941101,0.35976725816726685,0.0013298792764544487,0.004035409539937973,-0.0036838212981820107,0.0022576404735445976,0.0063025266863405704,-0.007419242989271879,3.268626689910889,-8.55890941619873,-4.0,0.03268626689910889,-0.0855890941619873,-0.04 +karman_re200,ppo,208,83.2,1.0371567010879517,0.3765600919723511,0.987265408039093,0.7867864966392517,0.9109306335449219,0.43803179264068604,0.00708335405215621,0.0029566267039626837,-0.00854068249464035,0.001768722664564848,0.007557620294392109,-0.007105751428753138,3.594228744506836,-8.698554039001465,-4.0,0.03594228744506836,-0.08698554039001465,-0.04 +karman_re200,ppo,209,83.6,0.9262155890464783,0.3879914879798889,0.9855025410652161,0.801768958568573,1.015188455581665,0.46848469972610474,0.007814998738467693,0.0013207322917878628,-0.008413957431912422,0.0067872838117182255,0.006865409668534994,-0.004396435804665089,3.1136040687561035,-7.2573347091674805,-1.3235397338867188,0.031136040687561036,-0.0725733470916748,-0.013235397338867187 +karman_re200,ppo,210,84.0,0.8121060132980347,0.35362473130226135,0.9995822906494141,0.8304743766784668,1.1048531532287598,0.45589545369148254,0.0075442129746079445,-0.0003861900477204472,-0.004569615703076124,0.0051796650514006615,0.002438568975776434,-0.003198693972080946,2.6836397647857666,-5.039653301239014,4.253367304801941,0.026836397647857668,-0.05039653301239014,0.04253367304801941 +karman_re200,ppo,211,84.4,0.7090626358985901,0.26136401295661926,1.0573856830596924,0.8324000835418701,1.1754090785980225,0.39856478571891785,0.00463653402402997,-0.001625693403184414,-0.00252593494951725,0.0013646784937009215,0.0011797492625191808,-0.002578836167231202,2.799726963043213,-5.509545564651489,2.9416282176971436,0.02799726963043213,-0.05509545564651489,0.029416282176971436 +karman_re200,ppo,212,84.8,0.6460031270980835,0.11488503217697144,1.1312320232391357,0.6177434921264648,1.2014232873916626,0.29252588748931885,0.0014465497806668282,-0.0042998516000807285,-0.0037385174073278904,0.0008386764675378799,-0.000543656584341079,-0.0025929796975106,3.3455862998962402,-5.821516275405884,-0.12307500839233398,0.0334558629989624,-0.05821516275405884,-0.00123075008392334 +karman_re200,ppo,213,85.2,0.6634053587913513,-0.05937672778964043,1.101579189300537,-0.1984146535396576,1.130981683731079,0.06609928607940674,-0.0005851979367434978,-0.00579395005479455,-0.0038242137525230646,0.00549105042591691,-0.0006423945887945592,-0.003270780434831977,2.9167866706848145,-3.7430260777473454,1.0701651573181152,0.029167866706848147,-0.037430260777473454,0.010701651573181153 +karman_re200,ppo,214,85.6,0.7475398778915405,-0.21371254324913025,1.0063118934631348,-0.7595644593238831,1.070686936378479,-0.16374601423740387,-0.0013463825453072786,-0.004782849922776222,-0.0003439297142904252,0.00824038591235876,-0.0009312349720858037,-0.003968305420130491,-0.14153604209423065,1.1713004112243652,8.191174983978271,-0.0014153604209423065,0.011713004112243653,0.08191174983978272 +karman_re200,ppo,215,86.0,0.8393186926841736,-0.3574751615524292,0.949674129486084,-0.8148308396339417,1.0448253154754639,-0.3144024610519409,-0.001039196620695293,-0.004367739427834749,0.0038713731337338686,0.007943490520119667,0.0004917976912111044,-0.005381700582802296,-2.296935558319092,2.6518826484680176,10.94566535949707,-0.02296935558319092,0.026518826484680177,0.1094566535949707 +karman_re200,ppo,216,86.4,0.9493104815483093,-0.428900808095932,0.9263512492179871,-0.8073921799659729,0.9719119071960449,-0.4003676474094391,0.00267716939561069,-0.0029482031241059303,0.005798692815005779,0.00683829840272665,-0.0013771750964224339,-0.0024175764992833138,-2.75742244720459,1.4614605903625488,10.149928092956543,-0.0275742244720459,0.014614605903625488,0.10149928092956544 +karman_re200,ppo,217,86.8,1.0618634223937988,-0.4584062695503235,0.9183337688446045,-0.8361145853996277,0.8890565633773804,-0.41931283473968506,0.0057478914968669415,-0.0013735380489379168,0.005541149992495775,0.004289621487259865,-0.005829912610352039,-0.003734928322955966,-3.1348128318786626,1.0674591064453125,9.962105751037598,-0.031348128318786625,0.010674591064453126,0.09962105751037598 +karman_re200,ppo,218,87.2,1.163618564605713,-0.42840850353240967,0.9201158881187439,-0.882213830947876,0.8015598058700562,-0.38292017579078674,0.004865907598286867,0.0007930187275633216,0.0035180943086743355,0.0030264300294220448,-0.003967536613345146,-0.006144596263766289,-2.8305163383483887,-1.9894466400146484,6.816705703735351,-0.028305163383483888,-0.019894466400146485,0.06816705703735351 +karman_re200,ppo,219,87.6,1.2324460744857788,-0.33252274990081787,0.9243142008781433,-0.938277006149292,0.7203631401062012,-0.2894699275493622,0.002854827558621764,0.0020344089716672897,0.001404671696946025,0.003666732693091035,-0.001320649404078722,-0.005498116835951805,-2.183708429336548,-3.9466030597686768,4.288156509399414,-0.021837084293365477,-0.03946603059768677,0.04288156509399414 +karman_re200,ppo,220,88.0,1.2477905750274658,-0.16684141755104065,0.9302492737770081,-0.4814468026161194,0.6731092929840088,-0.14492769539356232,0.00025957493926398456,0.0037978102918714285,-0.00040476524736732244,0.003330567153170705,-0.00031990488059818745,-0.005303075537085533,-2.1300535202026367,-2.6023073196411133,4.761425018310547,-0.021300535202026367,-0.026023073196411135,0.04761425018310547 +karman_re200,ppo,221,88.4,1.2719602584838867,-0.0022349939681589603,0.9440760016441345,0.4434194564819336,0.683722972869873,0.028561124578118324,-0.001680603134445846,0.00368087412789464,-0.0009322408586740494,0.003337354864925146,0.0011360381031408906,-0.00667381938546896,-0.46419620513916016,-4.202933192253113,1.0672521591186523,-0.004641962051391601,-0.04202933192253113,0.010672521591186524 +karman_re200,ppo,222,88.8,1.2346410751342773,0.1787952035665512,0.9519835710525513,0.8003348708152771,0.7428705096244812,0.20426708459854126,-0.0010524435201659799,0.003689113538712263,-0.0020357458852231503,0.0031518114265054464,0.004051769617944956,-0.006951804272830486,2.2346484661102295,-7.657475471496582,-3.7238330841064453,0.022346484661102294,-0.07657475471496582,-0.037238330841064454 +karman_re200,ppo,223,89.2,1.135982632637024,0.3451288640499115,0.9585034251213074,0.8030338287353516,0.8268418908119202,0.364451140165329,0.0024880359414964914,0.0036265687085688114,-0.0046319193206727505,0.0017587824258953333,0.006313216872513294,-0.007202001754194498,3.3908746242523193,-8.549089908599854,-4.0,0.03390874624252319,-0.08549089908599854,-0.04 +karman_re200,ppo,224,89.6,1.0204250812530518,0.4180048704147339,0.9699482917785645,0.8189653158187866,0.9331300258636475,0.4258786737918854,0.0075325206853449345,0.0028151071164757013,-0.009177357889711857,0.0028742223512381315,0.007927604019641876,-0.006387769710272551,3.615790605545044,-8.466854095458984,-3.798339366912842,0.03615790605545044,-0.08466854095458985,-0.03798339366912842 +karman_re200,ppo,225,90.0,0.897078275680542,0.42345771193504333,0.9934232831001282,0.8400865197181702,1.0335346460342407,0.4512839913368225,0.007913945242762566,0.0007106663542799652,-0.00710984505712986,0.007000756449997425,0.005821029655635357,-0.0038110760506242514,3.025477170944214,-6.604900121688844,-0.06477117538452148,0.03025477170944214,-0.06604900121688843,-0.0006477117538452149 +karman_re200,ppo,226,90.4,0.7712334394454956,0.3738771677017212,1.0517162084579468,0.8513185381889343,1.1168391704559326,0.42366936802864075,0.006964418105781078,-0.0006616057362407446,-0.003960744012147188,0.004437626805156469,0.00177844671998173,-0.00272501353174448,2.6713805198669434,-4.9524577260017395,4.473227024078369,0.026713805198669435,-0.0495245772600174,0.04473227024078369 +karman_re200,ppo,227,90.8,0.6594134569168091,0.26097628474235535,1.1831490993499756,0.8254917860031128,1.1750563383102417,0.35935819149017334,0.003993339836597443,-0.002246447140350938,-0.002449684077873826,0.0009976495057344437,0.0010382026666775346,-0.002287010895088315,2.9420053958892822,-5.5113866329193115,2.313270092010498,0.029420053958892824,-0.055113866329193115,0.02313270092010498 +karman_re200,ppo,228,91.2,0.6050015687942505,0.08217965066432953,1.306791067123413,0.40094971656799316,1.1793957948684692,0.2297266721725464,0.0009888638742268085,-0.004666114691644907,-0.003715988015756011,0.001590084284543991,-0.00047639707918278873,-0.002854777965694666,3.362826824188232,-5.446143627166748,-0.017448902130126953,0.03362826824188232,-0.05446143627166748,-0.00017448902130126953 +karman_re200,ppo,229,91.6,0.649889349937439,-0.11057733744382858,1.2412952184677124,-0.43584969639778137,1.094744086265564,-0.010591750964522362,-0.0008522149291820824,-0.005599698051810265,-0.003126397728919983,0.005954315885901451,-0.0005442274268716574,-0.0033020896371454,2.2533624172210693,-2.6843924522399902,2.6672319173812866,0.022533624172210692,-0.026843924522399903,0.026672319173812867 +karman_re200,ppo,230,92.0,0.7582734823226929,-0.26472601294517517,1.0886222124099731,-0.7662359476089478,1.0550326108932495,-0.20407193899154663,-0.0014931380283087492,-0.004489356651902199,0.0003643350792117417,0.0077619547955691814,-0.0008964429143816233,-0.004629847593605518,-0.9390276074409485,2.0095043182373047,9.316453456878662,-0.009390276074409485,0.020095043182373047,0.09316453456878662 +karman_re200,ppo,231,92.4,0.8672016859054565,-0.3915981352329254,1.0020939111709595,-0.7746427655220032,1.0210658311843872,-0.3259071707725525,-0.0002947690663859248,-0.004090228583663702,0.004162492696195841,0.007456539664417505,0.0004286214243620634,-0.004409446381032467,-2.290195941925049,2.0398244857788086,10.18937873840332,-0.022901959419250488,0.020398244857788086,0.10189378738403321 +karman_re200,ppo,232,92.8,0.9815183877944946,-0.44281813502311707,0.9647615551948547,-0.7838988304138184,0.9428565502166748,-0.383689284324646,0.00395424198359251,-0.0024374250788241625,0.005406173877418041,0.006127665750682354,-0.003414690727367997,-0.0021300609223544598,-2.714176893234253,1.4050564765930176,9.946938037872314,-0.02714176893234253,0.014050564765930177,0.09946938037872315 +karman_re200,ppo,233,93.2,1.0919746160507202,-0.4541354477405548,0.9531111121177673,-0.8232232928276062,0.8582453727722168,-0.3884667158126831,0.005742234643548727,-0.0008360641659237444,0.004965230822563171,0.003545917570590973,-0.00655814353376627,-0.004808468744158745,-2.9980111122131348,0.2980022430419922,9.118805885314941,-0.029980111122131347,0.002980022430419922,0.09118805885314941 +karman_re200,ppo,234,93.6,1.1883418560028076,-0.4043275713920593,0.9664888978004456,-0.8800479769706726,0.7741467356681824,-0.3368884325027466,0.00428557675331831,0.0011386368423700333,0.00271469634026289,0.0032581540290266275,-0.0029642025474458933,-0.006914660334587097,-2.498112916946411,-3.1410396099090576,5.366989254951477,-0.02498112916946411,-0.031410396099090576,0.05366989254951477 +karman_re200,ppo,235,94.0,1.240705132484436,-0.29369056224823,0.9934396147727966,-0.8449963927268982,0.7014982104301453,-0.22887523472309113,0.0021620842162519693,0.0025020157918334007,0.000747376587241888,0.003888064995408058,-0.0006636491161771119,-0.005605548154562712,-1.9811017513275149,-4.191467344760895,4.056947588920593,-0.01981101751327515,-0.04191467344760895,0.04056947588920593 +karman_re200,ppo,236,94.4,1.2388230562210083,-0.12176822870969772,1.0130695104599,-0.14156155288219452,0.6727014780044556,-0.07284240424633026,-0.0008165352628566325,0.0038812526036053896,-0.00038759279414080083,0.0037377483677119017,0.00023476356000173837,-0.0059103695675730705,-1.7291676998138428,-2.909222364425659,4.148182809352875,-0.01729167699813843,-0.029092223644256593,0.041481828093528746 +karman_re200,ppo,237,94.8,1.2471543550491333,0.04089297354221344,0.9960250854492188,0.6262620687484741,0.704906165599823,0.09878754615783691,-0.0015409854240715504,0.003610926680266857,-0.0013412587577477098,0.0032147658057510853,0.001932386658154428,-0.006510296370834112,0.5344220399856567,-5.549297332763672,-0.7273378372192383,0.005344220399856567,-0.05549297332763672,-0.007273378372192383 +karman_re200,ppo,238,95.2,1.1925511360168457,0.21557991206645966,0.9670464992523193,0.7636424899101257,0.7692666053771973,0.27752208709716797,-0.00024911639047786593,0.0038134416099637747,-0.0026837587356567383,0.0028624602127820253,0.00457856385037303,-0.006599864456802607,2.793092727661133,-8.081272602081299,-4.0,0.02793092727661133,-0.08081272602081299,-0.04 +karman_re200,ppo,239,95.6,1.0920171737670898,0.35958921909332275,0.9558202624320984,0.7710512280464172,0.8663322925567627,0.40227389335632324,0.004573258105665445,0.0031705584842711687,-0.006430579349398613,0.0013218858512118459,0.006160276010632515,-0.006956073455512524,3.4343776702880855,-8.338884830474854,-4.0,0.03434377670288086,-0.08338884830474853,-0.04 +karman_re200,ppo,240,96.0,0.9897451996803284,0.40940117835998535,0.9498070478439331,0.7895124554634094,0.9782376289367676,0.44928309321403503,0.007643101271241903,0.0027747072745114565,-0.009499233216047287,0.005004018545150757,0.007849808782339096,-0.005149874836206436,3.430510997772217,-7.943530559539795,-2.8665971755981445,0.03430510997772217,-0.07943530559539795,-0.028665971755981446 +karman_re200,ppo,241,96.4,0.8898397088050842,0.40258193016052246,0.941131591796875,0.8244945406913757,1.0823291540145874,0.46278172731399536,0.008112108334898949,0.0005860509700141847,-0.005466752219945192,0.006376160774379969,0.0040927608497440815,-0.003096814965829253,2.845227003097534,-5.704620599746704,2.132489562034607,0.028452270030975342,-0.05704620599746704,0.02132489562034607 +karman_re200,ppo,242,96.8,0.7967711687088013,0.3375316262245178,0.9354354739189148,0.8668923377990723,1.1711806058883667,0.41487011313438416,0.006147205829620361,-0.0005847944994457066,-0.0030787254218012094,0.0025622600223869085,0.0011877227807417512,-0.002314058132469654,2.6286215782165527,-5.1667022705078125,3.8848733305931087,0.02628621578216553,-0.05166702270507813,0.03884873330593109 +karman_re200,ppo,243,97.2,0.7248325347900391,0.21909135580062866,0.9277317523956299,0.8314797878265381,1.2191531658172607,0.30978161096572876,0.00308344978839159,-0.0028416472487151623,-0.003253030823543668,-4.1208957554772496e-05,0.0004943126114085317,-0.0017654987750574946,3.1947946548461914,-5.889587640762329,0.4747052192687989,0.03194794654846191,-0.05889587640762329,0.004747052192687989 +karman_re200,ppo,244,97.6,0.7091836333274841,0.05841134488582611,0.9064111113548279,0.14134187996387482,1.181997299194336,0.09624144434928894,0.0008859549998305738,-0.00518377311527729,-0.004767454229295254,0.003148663556203246,-0.0006656560581177473,-0.002639628015458584,3.4692635536193843,-4.966271698474884,-0.5215554237365723,0.034692635536193846,-0.04966271698474884,-0.005215554237365722 +karman_re200,ppo,245,98.0,0.7567242383956909,-0.1134013906121254,0.9223735332489014,-0.669167160987854,1.1598670482635498,-0.110686294734478,-0.0005044560530222952,-0.005335143767297268,-0.0023888961877673864,0.00773481372743845,-0.0005973962252028286,-0.003029203973710537,1.2350713014602661,-0.7500710487365723,5.448288321495056,0.012350713014602662,-0.007500710487365723,0.05448288321495056 +karman_re200,ppo,246,98.4,0.8193585872650146,-0.2891443371772766,0.9491426348686218,-0.7951801419258118,1.1441832780838013,-0.24907644093036652,-0.0013661023695021868,-0.004567336291074753,0.002267640084028244,0.00844606477767229,-0.0005620936863124371,-0.005760570988059044,-1.8961621522903445,3.122565269470215,11.306183338165283,-0.018961621522903444,0.03122565269470215,0.11306183338165283 +karman_re200,ppo,247,98.8,0.9130881428718567,-0.387170672416687,0.9555163383483887,-0.7841739058494568,1.056999683380127,-0.3554285168647766,0.0009557217126712203,-0.003769750241190195,0.005447303876280785,0.007385939825326204,0.0007062226068228483,-0.0033046710304915905,-2.53590989112854,1.5603852272033691,10.220361232757568,-0.0253590989112854,0.015603852272033692,0.10220361232757569 +karman_re200,ppo,248,99.2,1.0170764923095703,-0.4226876497268677,0.9575990438461304,-0.799721896648407,0.9542971849441528,-0.3918296694755554,0.0052016000263392925,-0.0021762552205473185,0.005754281301051378,0.0052369520999491215,-0.004767863545566797,-0.002087379340082407,-2.920224905014038,1.5729155540466309,10.318241119384766,-0.02920224905014038,0.01572915554046631,0.10318241119384766 +karman_re200,ppo,249,99.6,1.1164196729660034,-0.4153980314731598,0.9765744209289551,-0.8413541316986084,0.8543987274169922,-0.37856990098953247,0.005674338433891535,-0.00022420371533371508,0.004789248574525118,0.002939485711976886,-0.005489653907716274,-0.005189287010580301,-2.965869188308716,-0.3421149253845215,8.404096603393555,-0.02965869188308716,-0.003421149253845215,0.08404096603393554 +karman_re200,ppo,250,100.0,1.1958940029144287,-0.3487950265407562,1.0371288061141968,-0.9045226573944092,0.7625913023948669,-0.30423030257225037,0.003976942505687475,0.0014377252664417028,0.0026694405823946,0.0033732547890394926,-0.002105982042849064,-0.005810394883155823,-2.290299654006958,-3.5604248046875,4.693601608276367,-0.02290299654006958,-0.035604248046875,0.046936016082763675 +karman_re200,ppo,251,100.4,1.2240800857543945,-0.2280127853155136,1.125227928161621,-0.6040552258491516,0.6982863545417786,-0.17185550928115845,0.0015790809411555529,0.0030609809327870607,0.00048654776765033603,0.003665520576760173,-0.0009206659160554409,-0.0049947467632591724,-2.07517671585083,-3.281221389770508,4.574880123138428,-0.0207517671585083,-0.03281221389770508,0.04574880123138428 +karman_re200,ppo,252,100.8,1.2027692794799805,-0.06503137946128845,1.1416175365447998,0.25995150208473206,0.6936988234519958,-0.001740730949677527,-0.0012320828391239047,0.0036994197871536016,-0.00045077127288095653,0.003709946060553193,0.00025828465004451573,-0.0062753125093877316,-1.0012542009353638,-3.65972426533699,2.567641258239746,-0.010012542009353639,-0.0365972426533699,0.025676412582397463 +karman_re200,ppo,253,101.2,1.1931957006454468,0.08224012702703476,1.0604703426361084,0.6773176789283752,0.7387006878852844,0.18617697060108185,-0.0013658014358952641,0.003636340145021677,-0.0017517609521746635,0.003346001263707876,0.002907080575823784,-0.006633523851633072,1.6676458120346067,-7.093443632125855,-2.6474928855895996,0.016676458120346068,-0.07093443632125855,-0.026474928855895998 +karman_re200,ppo,254,101.6,1.1333041191101074,0.22967013716697693,0.9917490482330322,0.6890068650245667,0.8036643862724304,0.366349995136261,0.0009722497779875994,0.0040003531612455845,-0.0036595920100808144,0.0023787841200828552,0.0055777449160814285,-0.006697774399071932,3.0459821224212646,-8.186750411987305,-4.0,0.030459821224212646,-0.08186750411987305,-0.04 +karman_re200,ppo,255,102.0,1.0371001958847046,0.33515724539756775,0.9573882222175598,0.7140151858329773,0.9066015481948853,0.4490712285041809,0.006918648257851601,0.003163437359035015,-0.008549257181584835,0.0016845923382788897,0.006649532821029425,-0.006582246627658606,3.4338963031768803,-8.261795997619629,-3.6384119987487793,0.0343389630317688,-0.0826179599761963,-0.03638411998748779 +karman_re200,ppo,256,102.4,0.9502193331718445,0.3629215955734253,0.9262630939483643,0.7236706614494324,1.0136750936508179,0.4942370355129242,0.007822678424417973,0.002132608788087964,-0.008858202025294304,0.006742432247847319,0.006626986898481846,-0.003958583809435368,3.0530381202697754,-7.166872978210449,-1.2239537239074707,0.030530381202697753,-0.07166872978210449,-0.012239537239074708 +karman_re200,ppo,257,102.8,0.8702308535575867,0.3459303379058838,0.8762750029563904,0.7467326521873474,1.116004228591919,0.5064433813095093,0.008141649886965752,0.0005306892562657595,-0.004825384821742773,0.005092701409012079,0.0025337329134345055,-0.0026198409032076597,2.5709736347198486,-4.915827095508575,4.2730912566185,0.025709736347198486,-0.04915827095508576,0.042730912566185 +karman_re200,ppo,258,103.2,0.8003883361816406,0.27740830183029175,0.7850682735443115,0.7551528215408325,1.213485598564148,0.46269309520721436,0.005336241330951452,-0.0008061320404522121,-0.0028605025727301836,0.0010380324674770236,0.001199427293613553,-0.002352106384932995,2.5869603157043457,-5.2871809005737305,3.1262195110321045,0.025869603157043456,-0.052871809005737305,0.031262195110321044 +karman_re200,ppo,259,103.6,0.754381537437439,0.16898289322853088,0.6168707013130188,0.663113534450531,1.2675236463546753,0.32110118865966797,0.0018611655104905367,-0.003644863609224558,-0.003946907352656126,9.247184789273888e-05,-0.0002615730045363307,-0.0022282639984041452,3.165528535842896,-5.726069450378418,-0.23764657974243167,0.03165528535842896,-0.05726069450378418,-0.0023764657974243166 +karman_re200,ppo,260,104.0,0.753258466720581,0.03202185779809952,0.44183292984962463,0.13566386699676514,1.2753074169158936,0.06434180587530136,-2.082735773001332e-05,-0.005641711875796318,-0.004552165977656841,0.004580026026815176,-0.000883924716617912,-0.0030470627825707197,2.980952262878418,-3.855261266231537,0.29512453079223633,0.02980952262878418,-0.03855261266231537,0.0029512453079223633 +karman_re200,ppo,261,104.4,0.7857256531715393,-0.1261826455593109,0.5205883979797363,-0.5532221794128418,1.304673671722412,-0.15100203454494476,-0.00115607597399503,-0.005066788289695978,-0.0012026290642097592,0.008386243134737015,-0.0007513293530791998,-0.003325158031657338,0.6519811749458313,0.12672662734985352,6.515645980834961,0.0065198117494583135,0.0012672662734985352,0.06515645980834961 +karman_re200,ppo,262,104.8,0.8372871279716492,-0.28279292583465576,0.7152526378631592,-0.7798076868057251,1.2212048768997192,-0.3489534854888916,-0.0012276554480195045,-0.004686035215854645,0.003516747150570154,0.008245429024100304,-0.00021237568580545485,-0.005682030692696571,-1.9844979047775269,2.9026403427124023,10.92133903503418,-0.01984497904777527,0.029026403427124023,0.1092133903503418 +karman_re200,ppo,263,105.2,0.9260773658752441,-0.36476507782936096,0.8237456679344177,-0.8283639550209045,1.0950008630752563,-0.4680940508842468,0.0019087435211986303,-0.0035281190648674965,0.0061667137779295444,0.006733939051628113,-0.00018870232452172786,-0.002719560172408819,-2.751969575881958,1.5952749252319338,10.225899696350098,-0.02751969575881958,0.015952749252319338,0.10225899696350098 +karman_re200,ppo,264,105.6,1.022500991821289,-0.4028935134410858,0.8827987909317017,-0.8652641177177429,0.9686447381973267,-0.5015170574188232,0.005566384643316269,-0.0018524903571233153,0.005884460173547268,0.004490336403250694,-0.00537913991138339,-0.0028822796884924173,-3.1718857288360596,1.5428075790405273,10.221398830413818,-0.031718857288360595,0.015428075790405274,0.10221398830413819 +karman_re200,ppo,265,106.0,1.1155178546905518,-0.388761430978775,0.9496565461158752,-0.9121882915496826,0.8515955209732056,-0.4721479117870331,0.005385413300246,0.0003140432818327099,0.004299655556678772,0.002880875254049897,-0.0047380258329212666,-0.005692184437066317,-3.0350794792175293,-1.0191242694854736,7.728356838226319,-0.030350794792175294,-0.010191242694854736,0.07728356838226319 +karman_re200,ppo,266,106.4,1.1872930526733398,-0.3156725764274597,1.0735543966293335,-0.9647068977355957,0.7464351654052734,-0.376384973526001,0.0036296986509114504,0.0017325959634035826,0.0021098896395415068,0.003441947977989912,-0.0018972301622852683,-0.005583627615123987,-2.342298746109009,-3.688495218753815,4.673303008079529,-0.02342298746109009,-0.03688495218753815,0.04673303008079529 +karman_re200,ppo,267,106.8,1.204089641571045,-0.18398937582969666,1.2300279140472412,-0.5573810338973999,0.6750983595848083,-0.21493014693260193,0.0012019085697829723,0.003441403852775693,1.8403277863399126e-05,0.0033901017159223557,-0.0009138945024460554,-0.004962677136063576,-2.192939043045044,-2.8842570781707764,4.8848395347595215,-0.02192939043045044,-0.028842570781707766,0.04884839534759522 +karman_re200,ppo,268,107.2,1.1905460357666016,-0.023104678839445114,1.2531425952911377,0.33255383372306824,0.6721817255020142,-0.01091876532882452,-0.0014155168319121003,0.003661921015009284,-0.0005444666603580117,0.003558226628229022,0.00027982433675788343,-0.006356910336762667,-0.7642239928245544,-3.957149624824524,1.9455890655517578,-0.007642239928245545,-0.03957149624824524,0.019455890655517578 +karman_re200,ppo,269,107.6,1.1807533502578735,0.1210111603140831,1.1375750303268433,0.6973835825920105,0.7326237559318542,0.1946142315864563,-0.0013266433961689472,0.003651165869086981,-0.0017028633737936616,0.0032969918102025986,0.0030458534602075815,-0.006745452992618084,1.8821315765380862,-7.33243989944458,-3.0651674270629883,0.01882131576538086,-0.0733243989944458,-0.030651674270629883 +karman_re200,ppo,270,108.0,1.1048189401626587,0.26365479826927185,1.0559659004211426,0.723816990852356,0.8157266974449158,0.38009098172187805,0.0014028024161234498,0.003976692445576191,-0.0037614903412759304,0.0021129115484654903,0.005874515976756811,-0.00692534726113081,3.116940498352051,-8.282243728637695,-4.0,0.03116940498352051,-0.08282243728637695,-0.04 +karman_re200,ppo,271,108.4,1.003472089767456,0.34025195240974426,1.0259361267089844,0.7474016547203064,0.925712525844574,0.446623831987381,0.007127232383936644,0.003027084982022643,-0.008603586815297604,0.0018800561083480716,0.007178349420428276,-0.006621335167437792,3.526085138320923,-8.456897735595703,-3.8121767044067383,0.03526085138320923,-0.08456897735595703,-0.03812176704406738 +karman_re200,ppo,272,108.8,0.898277759552002,0.3529360890388489,1.0179798603057861,0.7688779234886169,1.0313855409622192,0.46877750754356384,0.007785254158079624,0.0015315472846850753,-0.008153500966727734,0.0069395010359585285,0.0064928545616567135,-0.003991086967289448,3.0681352615356445,-7.102796316146851,-0.9848518371582031,0.030681352615356445,-0.0710279631614685,-0.009848518371582031 +karman_re200,ppo,273,109.2,0.7875488996505737,0.31990891695022583,1.0355136394500732,0.8034980893135071,1.1182658672332764,0.4480164647102356,0.0076444800943136215,-2.2572015950572677e-05,-0.004364999942481518,0.00495762936770916,0.002252141945064068,-0.0027999526355415583,2.626514196395874,-5.000821113586426,4.432263612747192,0.02626514196395874,-0.05000821113586426,0.04432263612747193 +karman_re200,ppo,274,109.6,0.6851196885108948,0.22865812480449677,1.1137092113494873,0.7986297607421875,1.1770325899124146,0.38612625002861023,0.00479359133169055,-0.0014173246454447508,-0.002653124276548624,0.001042242394760251,0.0010940260253846645,-0.0023648091591894627,2.7612979412078857,-5.55817174911499,2.8049299716949463,0.027612979412078856,-0.0555817174911499,0.028049299716949465 +karman_re200,ppo,275,110.0,0.6280614137649536,0.08317163586616516,1.2153618335723877,0.4881708025932312,1.1885203123092651,0.28576111793518066,0.001570450491271913,-0.004120714962482452,-0.0039880103431642056,0.0006217688787728548,-0.0006077259895391762,-0.0023530873004347086,3.3028955459594727,-5.833615064620972,-0.17933034896850586,0.03302895545959473,-0.05833615064620972,-0.0017933034896850586 +karman_re200,ppo,276,110.4,0.6619613170623779,-0.07967498153448105,1.1684887409210205,-0.31138789653778076,1.108080506324768,0.08119912445545197,-0.0004265221068635583,-0.005588178522884846,-0.003959030378609896,0.005206801928579807,-0.0007494124583899975,-0.003062530653551221,2.634140729904175,-3.302884459495545,1.5679321289062498,0.026341407299041747,-0.03302884459495545,0.0156793212890625 +karman_re200,ppo,277,110.8,0.7566943168640137,-0.22535774111747742,1.0378400087356567,-0.7375780344009399,1.0145496129989624,-0.16103723645210266,-0.0013505782699212432,-0.004606332629919052,-0.00026446362608112395,0.007966221310198307,-0.0009263679967261851,-0.00398088525980711,-0.40692126750946045,1.52897310256958,8.485233783721924,-0.004069212675094604,0.0152897310256958,0.08485233783721924 +karman_re200,ppo,278,111.2,0.8527612090110779,-0.36082303524017334,0.9622281789779663,-0.758319616317749,1.0060522556304932,-0.308072954416275,-0.0008307808893732727,-0.004408008884638548,0.0039953310042619705,0.007721046917140484,0.00040330312913283706,-0.004945318214595318,-2.2495079040527344,2.4545674324035645,10.60470724105835,-0.022495079040527343,0.024545674324035646,0.1060470724105835 +karman_re200,ppo,279,111.6,0.9626976251602173,-0.4280296266078949,0.9259965419769287,-0.7598569393157959,0.9555856585502625,-0.38913437724113464,0.0031309279147535563,-0.003073211992159486,0.005657781381160021,0.00646871468052268,-0.0022560320794582367,-0.0022791163064539433,-2.672694206237793,1.4235572814941406,9.960132598876953,-0.02672694206237793,0.014235572814941406,0.09960132598876953 +karman_re200,ppo,280,112.0,1.0729955434799194,-0.45457160472869873,0.8999559283256531,-0.7945107221603394,0.8849244713783264,-0.4071747064590454,0.005970859434455633,-0.001514931209385395,0.00521855941042304,0.003941380884498358,-0.006348903756588697,-0.003763139946386218,-3.030282735824585,0.8069534301757812,9.590163230895996,-0.03030282735824585,0.008069534301757813,0.09590163230895997 +karman_re200,ppo,281,112.4,1.1752909421920776,-0.41900399327278137,0.870785653591156,-0.8509066104888916,0.8125985860824585,-0.3715178668498993,0.0050026411190629005,0.0006053678807802498,0.003170666052028537,0.0029268264770507812,-0.004201458301395178,-0.006026029121130705,-2.6929311752319336,-2.2377010583877563,6.458858966827393,-0.026929311752319336,-0.022377010583877564,0.06458858966827392 +karman_re200,ppo,282,112.8,1.2432256937026978,-0.312562495470047,0.8128628730773926,-0.8952982425689697,0.7487547993659973,-0.2827689051628113,0.0029937985818833113,0.0019855357240885496,0.0012968714581802487,0.0035998940002173185,-0.0014992095530033112,-0.005243868101388216,-2.127995252609253,-3.9097793102264404,4.288215458393097,-0.02127995252609253,-0.039097793102264404,0.04288215458393097 +karman_re200,ppo,283,113.2,1.26125168800354,-0.150525763630867,0.7586113810539246,-0.40100905299186707,0.7170010209083557,-0.14888446033000946,0.00020605955796781927,0.0037538332398980856,-0.00023802369832992554,0.0034260270185768604,-0.00046021476737223566,-0.005333945620805025,-2.1004462242126465,-2.55433988571167,4.710995316505432,-0.021004462242126466,-0.0255433988571167,0.04710995316505432 +karman_re200,ppo,284,113.6,1.2871736288070679,0.001859129872173071,0.8044009208679199,0.485812783241272,0.7339938879013062,0.014146124012768269,-0.001562856719829142,0.003753757569938898,-0.000986234052106738,0.003473970340564847,0.0011082394048571587,-0.006586888339370489,-0.38299673795700073,-4.402406632900238,0.7581095695495605,-0.0038299673795700075,-0.04402406632900238,0.007581095695495606 +karman_re200,ppo,285,114.0,1.2454237937927246,0.1677798628807068,0.8881738185882568,0.7671974897384644,0.7766218781471252,0.20622071623802185,-0.00102579640224576,0.0037320025730878115,-0.0021479404531419277,0.00341210700571537,0.003916861955076456,-0.006727489177137613,2.2697362899780273,-7.756394386291504,-3.7932028770446773,0.022697362899780273,-0.07756394386291504,-0.037932028770446775 +karman_re200,ppo,286,114.4,1.1387977600097656,0.322291761636734,0.9305861592292786,0.7643991708755493,0.8442999124526978,0.36731788516044617,0.0025966528337448835,0.003632421838119626,-0.004802660550922155,0.001900017959997058,0.0058659096248447895,-0.006966299843043089,3.2830638885498042,-8.320012092590332,-4.0,0.032830638885498045,-0.08320012092590333,-0.04 +karman_re200,ppo,287,114.8,1.0222275257110596,0.39261913299560547,0.9493293762207031,0.7865616679191589,0.9428184032440186,0.4237961173057556,0.007577111944556236,0.0030058056581765413,-0.009291451424360275,0.0031448816880583763,0.00738435098901391,-0.006092594936490059,3.5262792110443115,-8.313589572906494,-3.529661655426025,0.035262792110443114,-0.08313589572906495,-0.03529661655426025 +karman_re200,ppo,288,115.2,0.9042988419532776,0.3973986506462097,0.9694947600364685,0.8115986585617065,1.040816307067871,0.4491564631462097,0.008026429452002048,0.0009603562066331506,-0.006880890112370253,0.00701355654746294,0.005386558827012777,-0.0035107426811009645,2.949754238128662,-6.526666164398194,0.17579126358032227,0.029497542381286622,-0.06526666164398194,0.0017579126358032227 +karman_re200,ppo,289,115.6,0.7861946225166321,0.35047173500061035,1.0114842653274536,0.8389678001403809,1.124014973640442,0.42237114906311035,0.007087029051035643,-0.00035388398100622,-0.003913784399628639,0.004250616766512394,0.0017044884152710438,-0.0024616455193609,2.595921277999878,-4.967837870121002,4.478931427001953,0.02595921277999878,-0.04967837870121002,0.04478931427001953 +karman_re200,ppo,290,116.0,0.6817334890365601,0.2453949749469757,1.1138759851455688,0.8269776105880737,1.1794021129608154,0.355490505695343,0.004061977379024029,-0.00205937959253788,-0.0026391895953565836,0.0008993757655844092,0.0010568143334239721,-0.0021439651027321815,2.9240291118621826,-5.556101560592651,2.1363998651504517,0.029240291118621826,-0.055561015605926516,0.021363998651504516 +karman_re200,ppo,291,116.4,0.630983293056488,0.08515892177820206,1.2097026109695435,0.42485037446022034,1.1760566234588623,0.22498905658721924,0.0011261504841968417,-0.004496744833886623,-0.004018422216176987,0.0016883623320609331,-0.0005372025771066546,-0.0026784681249409914,3.3778445720672607,-5.468176603317261,-0.12616586685180664,0.03377844572067261,-0.05468176603317261,-0.0012616586685180663 +karman_re200,ppo,292,116.8,0.6727321743965149,-0.08718449622392654,1.1570703983306885,-0.4228076934814453,1.0890024900436401,-0.013346211984753609,-0.0007161620887927711,-0.0055156368762254715,-0.0032600879203528166,0.006044622045010328,-0.0006504810880869627,-0.0031633246690034866,2.3119544982910156,-2.730376958847046,2.646973967552185,0.02311954498291016,-0.02730376958847046,0.026469739675521853 +karman_re200,ppo,293,117.2,0.7664062976837158,-0.23854023218154907,1.0416656732559204,-0.7699835300445557,1.0575683116912842,-0.20338775217533112,-0.0014614049578085542,-0.004423285368829966,0.00037430677912198007,0.00782175175845623,-0.0009587620734237134,-0.004476538393646479,-0.9163829684257508,2.0254569053649902,9.339211463928223,-0.009163829684257508,0.020254569053649904,0.09339211463928222 +karman_re200,ppo,294,117.6,0.8664311766624451,-0.3676947355270386,0.9791790843009949,-0.7668068408966064,1.033766746520996,-0.323640376329422,-0.00039416804793290794,-0.004107130691409111,0.004271707963198423,0.007487267255783081,0.0005018006777390838,-0.004363002255558968,-2.3040359020233154,2.1404476165771484,10.241681098937988,-0.023040359020233155,0.021404476165771485,0.10241681098937988 +karman_re200,ppo,295,118.0,0.9785900712013245,-0.4242337942123413,0.950141966342926,-0.7674710750579834,0.9610077142715454,-0.38460949063301086,0.0038556880317628384,-0.0025834611151367426,0.005519394762814045,0.006159455049782991,-0.003329272847622633,-0.0020462889224290848,-2.690281867980957,1.4622011184692383,9.923223972320557,-0.02690281867980957,0.014622011184692384,0.09923223972320556 +karman_re200,ppo,296,118.4,1.0879871845245361,-0.4383332133293152,0.9318584203720093,-0.8042058348655701,0.8806447386741638,-0.3903649151325226,0.005799001082777977,-0.0009990922408178449,0.005052422173321247,0.0035835006274282932,-0.0065591000020504,-0.004506649449467659,-2.9815540313720703,0.40968513488769526,9.16221284866333,-0.029815540313720704,0.004096851348876953,0.0916221284866333 +karman_re200,ppo,297,118.8,1.1832325458526611,-0.38762223720550537,0.9192373156547546,-0.8644500970840454,0.8017496466636658,-0.3413659632205963,0.004448724444955587,0.0010017758468165994,0.0027643998619168997,0.003135761246085167,-0.003308770013973117,-0.0064575267024338245,-2.5035338401794434,-2.943534255027771,5.531235575675964,-0.025035338401794435,-0.029435342550277712,0.05531235575675964 +karman_re200,ppo,298,119.2,1.2326987981796265,-0.27260473370552063,0.9085233211517334,-0.8157023787498474,0.7372047901153564,-0.23738954961299896,0.0023251662496477365,0.0024078506976366043,0.0008320494089275599,0.003750435309484601,-0.0009593003196641803,-0.005244320258498192,-2.0045127868652344,-3.9813019037246704,4.140835225582123,-0.020045127868652344,-0.039813019037246704,0.04140835225582123 +karman_re200,ppo,299,119.6,1.2238514423370361,-0.1074070855975151,0.9144306778907776,-0.11671659350395203,0.7154541015625,-0.08928759396076202,-0.0005894282949157059,0.003884008154273033,-0.00036269129486754537,0.003600980853661895,3.971486512455158e-05,-0.0056456332094967365,-1.7145862579345705,-2.821414351463318,4.1164790391922,-0.017145862579345705,-0.02821414351463318,0.041164790391921995 +karman_re200,ppo,300,120.0,1.2294672727584839,0.04109557718038559,0.9375799298286438,0.6137799620628357,0.744895339012146,0.08456093072891235,-0.001482215360738337,0.003678526496514678,-0.0013551031006500125,0.0033295005559921265,0.001830371911637485,-0.006471555680036545,0.5827085971832275,-5.594348669052124,-0.8005876541137695,0.005827085971832275,-0.05594348669052124,-0.008005876541137696 +karman_re200,ppo,301,120.4,1.1922663450241089,0.18831132352352142,0.9514786005020142,0.7217600345611572,0.792873203754425,0.2824855148792267,-0.00024305941769853234,0.003932012710720301,-0.002694646827876568,0.003096221946179867,0.00452781654894352,-0.0066369082778692245,2.761061429977417,-8.075479507446289,-4.0,0.02761061429977417,-0.0807547950744629,-0.04 +karman_re200,ppo,302,120.8,1.091762661933899,0.3215302526950836,0.9515844583511353,0.7302494645118713,0.8778496384620667,0.40467727184295654,0.004634663928300142,0.0032821858767420053,-0.0064261602237820625,0.001354168402031064,0.005928702186793089,-0.00688009150326252,3.338388442993164,-8.28261947631836,-3.923649311065674,0.03338388442993164,-0.08282619476318359,-0.03923649311065674 +karman_re200,ppo,303,121.2,0.9898903369903564,0.3730238676071167,0.9407021403312683,0.7452149391174316,0.9805832505226135,0.4517316520214081,0.007795915473252535,0.002847123658284545,-0.00970530416816473,0.004798038862645626,0.0075226835906505585,-0.005064121913164854,3.358229398727417,-7.941092014312743,-2.752765655517578,0.03358229398727417,-0.07941092014312744,-0.02752765655517578 +karman_re200,ppo,304,121.6,0.8976354002952576,0.3697071969509125,0.919125497341156,0.7735559344291687,1.0814403295516968,0.4695826768875122,0.00826030783355236,0.0006887121708132327,-0.005751466378569603,0.006294148974120617,0.003998141270130873,-0.003011530265212059,2.7713782787323,-5.674699544906616,2.1813734769821167,0.027713782787322998,-0.05674699544906616,0.021813734769821166 +karman_re200,ppo,305,122.0,0.816371738910675,0.3129626512527466,0.8794768452644348,0.8123009204864502,1.1743617057800293,0.42806458473205566,0.006268079858273268,-0.0004850642289966345,-0.0033199298195540905,0.0026892356108874083,0.0012455882970243692,-0.00235053151845932,2.5259268283843994,-5.051071882247925,4.101012587547302,0.025259268283843995,-0.05051071882247925,0.04101012587547302 +karman_re200,ppo,306,122.4,0.7553492784500122,0.20770329236984253,0.8010559678077698,0.7904543876647949,1.230355978012085,0.3247321844100952,0.0029626258183270693,-0.0027331297751516104,-0.0032479101791977882,0.0003013249079231173,0.0006417303811758757,-0.002003018045797944,3.059588670730591,-5.73576283454895,0.8177471160888672,0.030595886707305908,-0.057357628345489506,0.008177471160888673 +karman_re200,ppo,307,122.8,0.7415463328361511,0.06755618751049042,0.7097514271736145,0.22388915717601776,1.1960289478302002,0.11306092888116837,0.0006257714121602476,-0.005012836307287216,-0.004428432788699865,0.0032280022278428078,-0.0005998533451929688,-0.002799655543640256,3.313466787338257,-4.825107157230377,-0.2559666633605957,0.03313466787338257,-0.04825107157230377,-0.002559666633605957 +karman_re200,ppo,308,123.2,0.7730342149734497,-0.09690570831298828,0.7503177523612976,-0.5885292291641235,1.168601393699646,-0.09965474158525467,-0.0008209345978684723,-0.005235470365732908,-0.00216227350756526,0.007356568705290556,-0.000631681177765131,-0.0031907602678984404,1.3103892803192139,-0.9972457885742189,4.949568510055542,0.013103892803192138,-0.009972457885742188,0.04949568510055542 +karman_re200,ppo,309,123.6,0.8179795742034912,-0.2718210816383362,0.854256272315979,-0.7742677927017212,1.1582419872283936,-0.24206925928592682,-0.001443219487555325,-0.004442974925041199,0.002054826356470585,0.008020725101232529,-0.0007893384899944067,-0.00548422709107399,-1.7700570821762085,2.9008493423461914,10.651328086853027,-0.017700570821762084,0.029008493423461915,0.10651328086853028 +karman_re200,ppo,310,124.0,0.904054582118988,-0.37240004539489746,0.9017400145530701,-0.7691609263420105,1.075324296951294,-0.35742899775505066,0.000790491234511137,-0.003867829218506813,0.005234193988144398,0.007147884927690029,0.0002365538093727082,-0.003615923225879669,-2.481517791748047,1.6090683937072754,9.898599624633789,-0.02481517791748047,0.016090683937072754,0.09898599624633789 +karman_re200,ppo,311,124.4,1.005478024482727,-0.41787615418434143,0.9149596691131592,-0.7834494113922119,0.9757112860679626,-0.4019269645214081,0.005118698347359896,-0.002342556370422244,0.005521465092897415,0.0052356841042637825,-0.004843118134886026,-0.0022261773701757193,-2.8585169315338135,1.412043571472168,9.980263233184814,-0.028585169315338135,0.01412043571472168,0.09980263233184815 +karman_re200,ppo,312,124.8,1.1068416833877563,-0.4214913845062256,0.9221665263175964,-0.8220193982124329,0.8800228834152222,-0.3946554660797119,0.005743572488427162,-0.000511595921125263,0.004513941239565611,0.0029289242811501026,-0.00594520615413785,-0.005146749783307314,-2.9335319995880127,-0.3598456382751465,8.415570735931396,-0.029335319995880127,-0.003598456382751465,0.08415570735931396 +karman_re200,ppo,313,125.2,1.192402958869934,-0.3625056743621826,0.9358518719673157,-0.8828084468841553,0.7911472320556641,-0.33101820945739746,0.004162008874118328,0.0012519708834588528,0.002367365173995495,0.00318978657014668,-0.0025213209446519613,-0.005692537873983383,-2.294571876525879,-3.512995094060898,4.790174603462219,-0.02294571876525879,-0.03512995094060898,0.047901746034622196 +karman_re200,ppo,314,125.6,1.2267405986785889,-0.240778848528862,0.9562270641326904,-0.7442325353622437,0.72406005859375,-0.2130063772201538,0.0017479418311268091,0.0028725850861519575,0.0004843272326979786,0.0034702764824032784,-0.0011361684883013368,-0.004761204589158297,-2.0379559993743896,-3.3320858478546143,4.536744952201843,-0.020379559993743898,-0.03332085847854614,0.04536744952201843 +karman_re200,ppo,315,126.0,1.212249517440796,-0.07389947772026062,0.9815717935562134,0.06011857092380524,0.7085988521575928,-0.054923709481954575,-0.001054546912200749,0.003849514527246356,-0.0004573289770632982,0.003544822335243225,5.770136704086326e-05,-0.00607882859185338,-1.4062575101852417,-2.957556962966919,3.292806386947632,-0.014062575101852418,-0.02957556962966919,0.03292806386947632 +karman_re200,ppo,316,126.4,1.2160338163375854,0.07247485220432281,0.9829815030097961,0.6667249798774719,0.744354784488678,0.12554283440113068,-0.0014522873098030686,0.0037360626738518476,-0.0016106149414554238,0.0032830911222845316,0.002592996461316943,-0.006700171623378992,1.1635017395019531,-6.412250518798829,-1.909501552581787,0.011635017395019532,-0.06412250518798829,-0.019095015525817872 +karman_re200,ppo,317,126.8,1.1644279956817627,0.22364072501659393,0.9690845012664795,0.7158186435699463,0.7977452874183655,0.3190822899341583,0.00042610385571606457,0.004087586887180805,-0.0031685170251876116,0.0028549092821776867,0.005280033219605684,-0.0065409960225224495,2.9911181926727295,-8.284480571746826,-4.0,0.029911181926727294,-0.08284480571746826,-0.04 +karman_re200,ppo,318,127.2,1.0671629905700684,0.34088134765625,0.9561057090759277,0.7253960967063904,0.8901898860931396,0.4200966954231262,0.005847274791449308,0.00309820007532835,-0.0073715997859835625,0.00138185266405344,0.006286452524363995,-0.0067252786830067635,3.404843330383301,-8.2530837059021,-3.709597110748291,0.03404843330383301,-0.08253083705902099,-0.03709597110748291 +karman_re200,ppo,319,127.6,0.9756873846054077,0.37665775418281555,0.9359890818595886,0.7310577630996704,0.9927780628204346,0.46711811423301697,0.007645749486982822,0.0023800446651875973,-0.009344404563307762,0.0057375491596758366,0.007145998999476433,-0.004449954256415367,3.2163438796997066,-7.555470943450927,-2.020421028137207,0.03216343879699707,-0.07555470943450927,-0.02020421028137207 +karman_re200,ppo,320,128.0,0.8941985964775085,0.36296746134757996,0.8997220396995544,0.750308632850647,1.0935763120651245,0.48221489787101746,0.008001653477549553,0.00035231374204158783,-0.0051663583144545555,0.005637941882014275,0.003178704297170043,-0.0028407571371644735,2.701747179031372,-5.207448244094849,3.289626717567444,0.027017471790313722,-0.052074482440948484,0.03289626717567444 +karman_re200,ppo,321,128.4,0.8247228264808655,0.2954866290092468,0.8282808065414429,0.7673764228820801,1.1904473304748535,0.4395081400871277,0.005548128392547369,-0.0008262187475338578,-0.0028929978143423796,0.0018974844133481383,0.0011955434456467628,-0.0024786097928881645,2.5569684505462646,-5.079813241958618,3.6772326231002808,0.025569684505462646,-0.05079813241958618,0.03677232623100281 +karman_re200,ppo,322,128.8,0.7776377201080322,0.18338613212108612,0.6861520409584045,0.6962644457817078,1.2489867210388184,0.31793609261512756,0.0021006425376981497,-0.003349944017827511,-0.0033739195205271244,0.0003253968898206949,0.00016176409553736448,-0.002194883767515421,3.0797605514526367,-5.6631200313568115,0.33713626861572266,0.030797605514526368,-0.056631200313568116,0.0033713626861572267 +karman_re200,ppo,323,129.2,0.7731867432594299,0.03867601975798607,0.5378984808921814,0.14887551963329315,1.2230533361434937,0.07088734954595566,-4.923206233797828e-06,-0.005405012983828783,-0.00416115066036582,0.004019716754555702,-0.0007055987953208387,-0.0029955252539366484,3.0328869819641113,-4.118809223175049,0.17732906341552734,0.030328869819641113,-0.04118809223175049,0.0017732906341552735 +karman_re200,ppo,324,129.6,0.7966728210449219,-0.1345670074224472,0.6107126474380493,-0.5663407444953918,1.2308642864227295,-0.13333438336849213,-0.0011771947611123323,-0.00509019335731864,-0.0013799348380416632,0.00776706775650382,-0.0006786661688238382,-0.0032838007900863886,0.786616027355194,-0.17083263397216797,5.866034150123596,0.00786616027355194,-0.0017083263397216796,0.05866034150123596 +karman_re200,ppo,325,130.0,0.8400529623031616,-0.296045184135437,0.7752725481987,-0.7604290246963501,1.1862376928329468,-0.2923557162284851,-0.0013067317195236683,-0.004548035096377134,0.0029013596940785646,0.007920611649751663,-0.0004964962718077004,-0.005491436924785376,-1.911849856376648,2.86806058883667,10.589025974273682,-0.01911849856376648,0.0286806058883667,0.10589025974273682 +karman_re200,ppo,326,130.4,0.9263062477111816,-0.37893885374069214,0.8545387387275696,-0.7846537232398987,1.080683708190918,-0.4025810658931732,0.001560182892717421,-0.0036173963453620672,0.005674868822097778,0.006771962158381939,-0.0001798690645955503,-0.003110692137852311,-2.587656021118164,1.5311341285705566,9.861546516418457,-0.02587656021118164,0.015311341285705566,0.09861546516418457 +karman_re200,ppo,327,130.8,1.0246661901474,-0.4211057424545288,0.8839735388755798,-0.8080081343650818,0.9732584953308105,-0.4358554184436798,0.005399410147219896,-0.0019451953703537583,0.005578737240284681,0.004662129562348127,-0.00510558532550931,-0.0026727986987680197,-2.9835703372955322,1.3401775360107422,9.919824600219727,-0.029835703372955324,0.013401775360107422,0.09919824600219727 +karman_re200,ppo,328,131.2,1.1237679719924927,-0.4134443998336792,0.9008513689041138,-0.8511603474617004,0.8750401139259338,-0.4143361747264862,0.005309363827109337,7.418838504236192e-05,0.0041455840691924095,0.0028288536705076694,-0.005038660950958729,-0.005619119852781296,-2.8988378047943115,-0.9325504302978516,7.757498264312744,-0.028988378047943117,-0.009325504302978516,0.07757498264312744 +karman_re200,ppo,329,131.6,1.2033523321151733,-0.34214356541633606,0.9205586910247803,-0.9114491939544678,0.7870117425918579,-0.3349008858203888,0.0035903688985854387,0.0016294914530590177,0.00199616770260036,0.0033812657929956913,-0.0018382363487035036,-0.005767483729869127,-2.229762554168701,-3.7466725111007686,4.451907753944397,-0.022297625541687013,-0.03746672511100769,0.04451907753944397 +karman_re200,ppo,330,132.0,1.2225565910339355,-0.20310431718826294,0.9427556395530701,-0.656443178653717,0.7250572443008423,-0.20196518301963806,0.0011377402115613222,0.0032951077446341515,0.0001376316649839282,0.003421799512580037,-0.0006978706805966794,-0.005054241046309471,-2.0594449043273926,-3.1183598041534424,4.589170694351196,-0.020594449043273927,-0.031183598041534425,0.04589170694351196 +karman_re200,ppo,331,132.4,1.2125697135925293,-0.035184215754270554,0.9697789549827576,0.21799464523792267,0.7163699865341187,-0.031108049675822258,-0.0013760430738329887,0.0037589252460747957,-0.0005809069843962789,0.0035215646494179964,0.00047576817451044917,-0.006347330287098885,-1.046034336090088,-3.4614198803901672,2.4502837657928467,-0.010460343360900879,-0.03461419880390167,0.024502837657928468 +karman_re200,ppo,332,132.8,1.2160669565200806,0.10822593420743942,0.9762749671936035,0.7134955525398254,0.7524259686470032,0.16200286149978638,-0.0013526971451938152,0.003690531477332115,-0.0017014002660289407,0.0032335054129362106,0.0030864442232996225,-0.006706767715513706,1.6250584125518799,-6.951884269714356,-2.6484856605529785,0.0162505841255188,-0.06951884269714356,-0.026484856605529787 +karman_re200,ppo,333,133.2,1.1487019062042236,0.2570802867412567,0.9691199660301208,0.7329275012016296,0.812736451625824,0.3472505807876587,0.0011477058287709951,0.004022067878395319,-0.0035592257045209408,0.002379479818046093,0.005738374777138233,-0.0065792016685009,3.1401407718658443,-8.335700035095215,-4.0,0.031401407718658444,-0.08335700035095216,-0.04 +karman_re200,ppo,334,133.6,1.0511327981948853,0.34927868843078613,0.9607954621315002,0.7452331781387329,0.912232518196106,0.42738038301467896,0.006727708037942648,0.0030253021977841854,-0.008014120161533356,0.0016753770178183913,0.006961713545024395,-0.00647035101428628,3.490298271179199,-8.310871601104736,-3.732995510101318,0.03490298271179199,-0.08310871601104737,-0.03732995510101318 +karman_re200,ppo,335,134.0,0.9542797207832336,0.36779266595840454,0.9463248252868652,0.7553960680961609,1.0151410102844238,0.46680882573127747,0.007585301995277405,0.0017313298303633928,-0.008382688276469707,0.00644993782043457,0.006804711185395718,-0.004033646546304226,3.118865728378296,-7.198493242263794,-1.312985897064209,0.03118865728378296,-0.07198493242263794,-0.01312985897064209 +karman_re200,ppo,336,134.4,0.8589969873428345,0.3392813205718994,0.9210374355316162,0.7840330600738525,1.1104589700698853,0.46450451016426086,0.007635461166501045,-5.945748398517026e-06,-0.004520540591329336,0.005039227660745382,0.002597108483314514,-0.0027691172435879707,2.668314218521118,-5.000329256057739,4.031141936779022,0.026683142185211183,-0.050003292560577395,0.04031141936779022 +karman_re200,ppo,337,134.8,0.7746229767799377,0.2593124508857727,0.8806387186050415,0.8049171566963196,1.1928685903549194,0.4090013802051544,0.004955550655722618,-0.0012894845567643642,-0.0026561482809484005,0.0012725619599223137,0.0011584036983549595,-0.0024187956005334854,2.6970460414886475,-5.326237678527832,3.023903965950012,0.026970460414886474,-0.05326237678527832,0.030239039659500123 +karman_re200,ppo,338,135.2,0.7252100110054016,0.13740530610084534,0.8047627806663513,0.6723896861076355,1.2261790037155151,0.2800610363483429,0.0016842386685311794,-0.003953410778194666,-0.0036661806516349316,0.0005554076051339507,-0.0003803549043368548,-0.002265776274725795,3.2461793422698975,-5.756520509719849,-0.1477832794189453,0.032461793422698976,-0.05756520509719849,-0.0014778327941894532 +karman_re200,ppo,339,135.6,0.7402096390724182,-0.008526657707989216,0.7274682521820068,-0.04521850124001503,1.1742016077041626,0.03444850072264671,-0.00031471039983443916,-0.005723669659346342,-0.004028452094644308,0.004970506299287081,-0.0007210061885416508,-0.0030727696139365435,2.9681153297424316,-3.8517348766326904,0.6242833137512207,0.029681153297424316,-0.038517348766326905,0.006242833137512207 +karman_re200,ppo,340,136.0,0.7887387275695801,-0.17110206186771393,0.7698522210121155,-0.7032446265220642,1.1653618812561035,-0.16120082139968872,-0.0012211931170895696,-0.004973396193236113,-0.0007028493564575911,0.008202270604670048,-0.000821887981146574,-0.0035812894348055124,0.16826431453227997,0.7806353569030762,7.400072574615478,0.0016826431453227997,0.007806353569030762,0.07400072574615478 +karman_re200,ppo,341,136.4,0.8502873778343201,-0.3213319480419159,0.8483657836914062,-0.8074564337730408,1.1246817111968994,-0.30695831775665283,-0.0010999032529070973,-0.004541054368019104,0.0037096193991601467,0.008040430024266243,0.00019622383115347475,-0.005562077276408672,-2.2657084465026855,2.9811625480651855,11.08859920501709,-0.022657084465026855,0.029811625480651856,0.1108859920501709 +karman_re200,ppo,342,136.8,0.9447329044342041,-0.39748990535736084,0.8810396790504456,-0.8000087141990662,1.0305652618408203,-0.3988710045814514,0.0023962680716067553,-0.003268792061135173,0.005955075845122337,0.006750510539859533,-0.0007663734722882509,-0.002504291944205761,-2.7602546215057373,1.5550880432128906,10.184145450592041,-0.027602546215057373,0.015550880432128907,0.10184145450592041 +karman_re200,ppo,343,137.2,1.0464451313018799,-0.43246573209762573,0.8902048468589783,-0.8217860460281372,0.9326955676078796,-0.42116779088974,0.005673923064023256,-0.0015389053151011467,0.005658994894474745,0.004386986140161753,-0.005428277421742678,-0.0032535074278712273,-3.104063034057617,1.2879204750061035,10.046777725219727,-0.03104063034057617,0.012879204750061036,0.10046777725219727 +karman_re200,ppo,344,137.6,1.14573073387146,-0.41013312339782715,0.8976593613624573,-0.8684923648834229,0.8417004346847534,-0.38998305797576904,0.005054795183241367,0.000602014537435025,0.0038321539759635925,0.0028954995796084404,-0.004156171344220638,-0.005859041120857,-2.8473923206329346,-1.578517198562622,7.1586713790893555,-0.028473923206329348,-0.01578517198562622,0.07158671379089356 +karman_re200,ppo,345,138.0,1.217786192893982,-0.3226161599159241,0.9047654867172241,-0.9196147918701172,0.7617926597595215,-0.3013020157814026,0.003109741723164916,0.0019479581387713552,0.0016790133668109775,0.0035843297373503447,-0.001503210631199181,-0.005587424151599407,-2.184527635574341,-3.8504202961921687,4.329675316810608,-0.021845276355743407,-0.03850420296192169,0.04329675316810608 +karman_re200,ppo,346,138.4,1.2306407690048218,-0.16986432671546936,0.907386839389801,-0.5078203082084656,0.7122274041175842,-0.16227878630161285,0.0005584005266427994,0.003632368054240942,-0.0002069070760626346,0.0033601997420191765,-0.00047279841965064406,-0.0053922743536531925,-2.0774481296539307,-2.8284735679626465,4.630369782447815,-0.020774481296539308,-0.028284735679626465,0.04630369782447815 +karman_re200,ppo,347,138.8,1.242518424987793,-0.01148827001452446,0.9279899001121521,0.39346298575401306,0.7155454158782959,0.009694541804492474,-0.00160355179104954,0.00361842755228281,-0.0007977435016073287,0.0034253832418471575,0.0009356384980492294,-0.006648797541856766,-0.5551364421844482,-4.194292783737183,1.3107361793518066,-0.0055513644218444826,-0.04194292783737183,0.013107361793518067 +karman_re200,ppo,348,139.2,1.2240076065063477,0.14546214044094086,0.9447674751281738,0.7561601996421814,0.7568108439445496,0.20259007811546326,-0.001158046186901629,0.00366101018153131,-0.0019461922347545624,0.0031680890824645758,0.0037829792127013206,-0.00680131558328867,2.0961873531341553,-7.519354820251466,-3.4426169395446777,0.020961873531341553,-0.07519354820251466,-0.03442616939544678 +karman_re200,ppo,349,139.6,1.132123589515686,0.299678236246109,0.9493407607078552,0.7605259418487549,0.8277102708816528,0.3677229583263397,0.002149557461962104,0.0036883458960801363,-0.004401864018291235,0.001785528496839106,0.006116068456321955,-0.006906469352543354,3.2818536758422856,-8.391587734222412,-4.0,0.032818536758422855,-0.08391587734222412,-0.04 +karman_re200,ppo,350,140.0,1.0260732173919678,0.375237375497818,0.9513552188873291,0.7798581123352051,0.9318480491638184,0.43181324005126953,0.007443016394972801,0.002981750760227442,-0.009044705890119076,0.002615035744383931,0.007650627288967371,-0.006249140948057175,3.5617828369140625,-8.36033821105957,-3.7024397850036626,0.035617828369140625,-0.0836033821105957,-0.037024397850036625 +karman_re200,ppo,351,140.4,0.916403591632843,0.38153624534606934,0.953044593334198,0.8007470965385437,1.0334101915359497,0.46190401911735535,0.00787315983325243,0.001077883061952889,-0.007239053957164288,0.007020280230790377,0.0059712654910981655,-0.0037025182973593473,3.003079652786255,-6.69290018081665,-0.2203240394592285,0.03003079652786255,-0.06692900180816651,-0.002203240394592285 +karman_re200,ppo,352,140.8,0.8047385215759277,0.33994778990745544,0.9620299339294434,0.8341885209083557,1.120926022529602,0.44274434447288513,0.0072377510368824005,-0.0002896971709560603,-0.004050406627357006,0.004391224589198828,0.0018647979013621807,-0.002590966410934925,2.608440637588501,-4.947242796421051,4.523372769355774,0.02608440637588501,-0.04947242796421051,0.04523372769355774 +karman_re200,ppo,353,141.2,0.7054073214530945,0.24491934478282928,1.0001616477966309,0.844230592250824,1.185088872909546,0.37908339500427246,0.004292246885597706,-0.0019024539506062865,-0.0025888392701745033,0.0007543648825958371,0.0010466007515788078,-0.0022271969355642796,2.888082265853882,-5.566745042800903,2.253997325897217,0.028880822658538818,-0.05566745042800903,0.022539973258972168 +karman_re200,ppo,354,141.6,0.6532053351402283,0.10238772630691528,1.0272703170776367,0.5699324607849121,1.1931270360946655,0.24654832482337952,0.001311322208493948,-0.004475951660424471,-0.004022669978439808,0.0011608467902988195,-0.0005877881776541471,-0.00258994079194963,3.42514181137085,-5.67223858833313,-0.41400480270385737,0.0342514181137085,-0.0567223858833313,-0.004140048027038574 +karman_re200,ppo,355,142.0,0.6860632300376892,-0.057245880365371704,0.9892272353172302,-0.28979557752609253,1.1235485076904297,0.004874566104263067,-0.0005039810785092413,-0.005845306906849146,-0.0036979629658162594,0.0059547885321080685,-0.0006252473685890436,-0.003183546708896756,2.7424073219299316,-3.3797791004180904,1.6359024047851562,0.02742407321929932,-0.033797791004180906,0.016359024047851563 +karman_re200,ppo,356,142.4,0.7677381038665771,-0.2099931389093399,0.9422459602355957,-0.797161340713501,1.1046240329742432,-0.18960191309452057,-0.0013458826579153538,-0.0047697811387479305,1.6238813259406015e-05,0.008367610163986683,-0.0009503128239884973,-0.004284584894776344,-0.5088571906089783,1.6562166213989256,8.973596096038818,-0.005088571906089783,0.016562166213989257,0.08973596096038819 +karman_re200,ppo,357,142.8,0.8549998998641968,-0.34952208399772644,0.9241204857826233,-0.8254641890525818,1.0640281438827515,-0.3315776586532593,-0.0007196926162578166,-0.004317523445934057,0.00426563061773777,0.007945749908685684,0.0008566709002479911,-0.005050646606832743,-2.427675485610962,2.6372694969177246,11.02859878540039,-0.02427675485610962,0.026372694969177247,0.11028598785400391 +karman_re200,ppo,358,143.2,0.9607896208763123,-0.4160877466201782,0.9163553714752197,-0.8170421123504639,0.9773914217948914,-0.409178227186203,0.0033020242117345333,-0.0027885660529136658,0.005901865195482969,0.006580327171832323,-0.0021494640968739986,-0.002155536087229848,-2.8457179069519043,1.6181092262268066,10.388054370880127,-0.028457179069519042,0.016181092262268066,0.10388054370880127 +karman_re200,ppo,359,143.6,1.067012906074524,-0.43720927834510803,0.9166020154953003,-0.8488341569900513,0.8849836587905884,-0.42114800214767456,0.005829417612403631,-0.0010596092324703932,0.005554898176342249,0.004038795828819275,-0.006023551803082228,-0.004113612696528435,-3.1710381507873535,0.9295306205749513,9.820950984954834,-0.03171038150787354,0.009295306205749513,0.09820950984954835 +karman_re200,ppo,360,144.0,1.163081407546997,-0.3973083198070526,0.9372710585594177,-0.9069785475730896,0.7948983907699585,-0.3770209848880768,0.004708713386207819,0.001020122435875237,0.003310765605419874,0.0031213241163641214,-0.003536541946232319,-0.006353693548589945,-2.7619271278381348,-2.3969273567199707,6.340675830841065,-0.027619271278381347,-0.023969273567199707,0.06340675830841065 +karman_re200,ppo,361,144.4,1.2221215963363647,-0.294288694858551,0.9817137122154236,-0.9069384932518005,0.7171214818954468,-0.2731131911277771,0.002630957867950201,0.0022700561676174402,0.0011804024688899517,0.00377239054068923,-0.0011567396577447653,-0.005470927804708481,-2.1633505821228027,-3.9404554367065425,4.323151707649231,-0.021633505821228027,-0.03940455436706543,0.04323151707649231 +karman_re200,ppo,362,144.8,1.2287721633911133,-0.1362619251012802,1.0263583660125732,-0.2735587954521179,0.6781784892082214,-0.11851309984922409,-0.00011432042083470151,0.003880574367940426,-0.0004340884042903781,0.003420974826440215,-0.00021488050697371364,-0.0056496853940188885,-1.94924533367157,-2.7252357006073,4.530624866485596,-0.0194924533367157,-0.027252357006072998,0.045306248664855955 +karman_re200,ppo,363,145.2,1.2437413930892944,0.017623327672481537,1.0248671770095825,0.5626402497291565,0.6989305019378662,0.06012571230530739,-0.0016518288757652044,0.0034901928156614304,-0.0011366740800440311,0.003315754234790802,0.00137575704138726,-0.0067472876980900764,0.18965572118759155,-5.201158285140991,-0.1133723258972168,0.0018965572118759156,-0.052011582851409915,-0.001133723258972168 +karman_re200,ppo,364,145.6,1.2020093202590942,0.18450655043125153,0.9891208410263062,0.7559686899185181,0.7565367817878723,0.24896784126758575,-0.0007530607399530709,0.003735730890184641,-0.0023341523483395576,0.0031002378091216087,0.004371310584247112,-0.007012880872935057,2.5883333683013916,-8.007229328155518,-4.0,0.025883333683013918,-0.08007229328155517,-0.04 +karman_re200,ppo,365,146.0,1.1001248359680176,0.3327234983444214,0.9685333967208862,0.7620317935943604,0.8430823683738708,0.3956974446773529,0.003708544420078397,0.0032786247320473194,-0.005704190116375685,0.001269282540306449,0.00618169317021966,-0.007240745238959789,3.3786888122558594,-8.46915864944458,-4.0,0.033786888122558596,-0.0846915864944458,-0.04 +karman_re200,ppo,366,146.4,0.9956760406494141,0.39221954345703125,0.9608051180839539,0.7823837399482727,0.9530092477798462,0.4487855136394501,0.0077095734886825085,0.0028996700420975685,-0.009721720591187477,0.004233621526509523,0.008014481514692307,-0.005708624143153429,3.5021994113922124,-8.239858627319336,-3.3292794227600098,0.03502199411392212,-0.08239858627319337,-0.0332927942276001 +karman_re200,ppo,367,146.8,0.8946874141693115,0.39200443029403687,0.955920934677124,0.8098791241645813,1.0575722455978394,0.4693908393383026,0.008161990903317928,0.0007423493079841137,-0.005952088162302971,0.006823078263550997,0.004690003581345081,-0.003356797154992819,2.8740551471710205,-6.027717590332031,1.4144973754882812,0.028740551471710205,-0.06027717590332032,0.014144973754882812 +karman_re200,ppo,368,147.2,0.7971028089523315,0.33792632818222046,0.9568141102790833,0.847655713558197,1.1458967924118042,0.43470269441604614,0.00655148783698678,-0.00045856976066716015,-0.0033642789348959923,0.0032861828804016113,0.0012802379205822945,-0.0024155108258128166,2.570754289627075,-5.098819255828857,4.295596241950989,0.025707542896270752,-0.05098819255828858,0.042955962419509885 +karman_re200,ppo,369,147.6,0.7160710096359253,0.22744974493980408,0.9738677144050598,0.8485616445541382,1.2027692794799805,0.3531392216682434,0.0034116962924599648,-0.002505591604858637,-0.00280768726952374,0.00013269578630570322,0.0008162007434293628,-0.0019050645641982555,3.069603443145752,-5.783393144607544,1.1413450241088867,0.03069603443145752,-0.05783393144607544,0.011413450241088868 +karman_re200,ppo,370,148.0,0.6856143474578857,0.0718691274523735,0.9641820788383484,0.3464054465293884,1.1823064088821411,0.17778779566287994,0.000985841266810894,-0.004935172852128744,-0.0045427195727825165,0.002288572723045945,-0.000569318828638643,-0.002714314963668585,3.5061273574829106,-5.276190996170044,-0.6500773429870605,0.035061273574829105,-0.05276190996170044,-0.006500773429870606 +karman_re200,ppo,371,148.4,0.7266942858695984,-0.0951145812869072,0.9381147027015686,-0.545452356338501,1.116346001625061,-0.06469449400901794,-0.000550662400200963,-0.005626052618026733,-0.0030092501547187567,0.007163320668041706,-0.0005228507798165083,-0.003182182088494301,1.9882756471633911,-1.9873461723327634,3.691633701324463,0.01988275647163391,-0.019873461723327636,0.03691633701324463 +karman_re200,ppo,372,148.8,0.7948861122131348,-0.26422858238220215,0.9357081055641174,-0.8126550316810608,1.1102862358093262,-0.22560855746269226,-0.001444642199203372,-0.004542331211268902,0.0013252923963591456,0.008490363135933876,-0.0010048443218693137,-0.0054204449988901615,-1.4629462957382202,2.708292007446289,10.660414695739746,-0.014629462957382202,0.02708292007446289,0.10660414695739746 +karman_re200,ppo,373,149.2,0.8882007598876953,-0.38082072138786316,0.9368693828582764,-0.7997880578041077,1.048985481262207,-0.35219696164131165,0.0001676021929597482,-0.004011145327240229,0.00506355008110404,0.007623713463544846,0.0011090546613559127,-0.004165833815932274,-2.5385656356811523,1.885866165161133,10.484411239624023,-0.025385656356811524,0.01885866165161133,0.10484411239624024 +karman_re200,ppo,374,149.6,0.994927167892456,-0.4277060329914093,0.9341205358505249,-0.8108890652656555,0.9553982019424438,-0.4084809124469757,0.004599074833095074,-0.0023187401238828897,0.005760254338383675,0.0058656055480241776,-0.0039673903957009315,-0.001657665940001607,-2.895963668823242,1.5537433624267578,10.35268783569336,-0.028959636688232423,0.015537433624267578,0.1035268783569336 +karman_re200,ppo,375,150.0,1.0985649824142456,-0.43200987577438354,0.9419950246810913,-0.849922239780426,0.8591012358665466,-0.40685001015663147,0.005845135077834129,-0.000571283686440438,0.005178172141313553,0.0032287738285958767,-0.006269915495067835,-0.0048399921506643295,-3.119342565536499,0.36170387268066406,9.174562931060791,-0.031193425655364992,0.003617038726806641,0.09174562931060791 +karman_re200,ppo,376,150.4,1.1856162548065186,-0.37572816014289856,0.9771139621734619,-0.9179663062095642,0.7654724717140198,-0.3461975157260895,0.004364212974905968,0.0013266557361930609,0.002946257358416915,0.0032155304215848446,-0.0026509645394980907,-0.0061101061291992664,-2.5066981315612793,-3.2414082884788518,5.156856179237366,-0.025066981315612795,-0.03241408288478852,0.05156856179237366 +karman_re200,ppo,377,150.8,1.2274096012115479,-0.2586161196231842,1.0435056686401367,-0.7934954166412354,0.6924684047698975,-0.22587749361991882,0.0020688604563474655,0.0027326049748808146,0.0008207658538594842,0.003751253243535757,-0.0010374942794442177,-0.004985467996448278,-2.1245927810668945,-3.6287392675876617,4.455174565315247,-0.021245927810668946,-0.03628739267587662,0.044551745653152466 +karman_re200,ppo,378,151.2,1.225809931755066,-0.09681639820337296,1.0917918682098389,0.014563044533133507,0.6720278859138489,-0.06034425273537636,-0.0008404402178712189,0.0039375461637973785,-0.0004114485054742545,0.003608432598412037,-8.11682766652666e-05,-0.005959574598819017,-1.6099578142166135,-2.8828186988830566,3.8060297966003414,-0.016099578142166136,-0.028828186988830568,0.038060297966003416 +karman_re200,ppo,379,151.6,1.231521725654602,0.05551084131002426,1.053106665611267,0.663089394569397,0.7119317054748535,0.1192004382610321,-0.001525880885310471,0.003603697754442692,-0.0015229829587042332,0.0033094044774770737,0.002122932579368353,-0.0067628175020217896,0.982782542705536,-6.266387939453124,-1.6278047561645508,0.00982782542705536,-0.06266387939453125,-0.016278047561645508 +karman_re200,ppo,380,152.0,1.169449806213379,0.22330708801746368,0.9949218034744263,0.7306979894638062,0.7758157849311829,0.3094261586666107,-3.8207821489777416e-05,0.003935254644602537,-0.0028859013691544533,0.0029841193463653326,0.004987178836017847,-0.00692168902605772,2.921163558959961,-8.277219295501709,-4.0,0.02921163558959961,-0.08277219295501709,-0.04 +karman_re200,ppo,381,152.4,1.0680012702941895,0.3521846830844879,0.9660805463790894,0.7487955689430237,0.8723094463348389,0.4270317852497101,0.005368107929825783,0.0031049465760588646,-0.007026860490441322,0.0012647082330659032,0.0062963650561869144,-0.007064452860504389,3.417450189590454,-8.394009113311768,-3.9339303970336914,0.03417450189590454,-0.08394009113311768,-0.039339303970336914 +karman_re200,ppo,382,152.8,0.9747564792633057,0.3913620710372925,0.9445250034332275,0.762770414352417,0.9815358519554138,0.4729367792606354,0.007707284297794104,0.002543246140703559,-0.009590424597263336,0.00556351849809289,0.007645135745406151,-0.004910004325211048,3.318691730499267,-7.809385776519775,-2.485354423522949,0.03318691730499267,-0.07809385776519776,-0.024853544235229494 +karman_re200,ppo,383,153.2,0.8904563784599304,0.380899041891098,0.9168354272842407,0.791222095489502,1.0868195295333862,0.48790374398231506,0.008129512891173363,0.00044404511572793126,-0.005269941873848438,0.006203684024512768,0.0035719512961804867,-0.0030925602186471224,2.7598929405212402,-5.422758102416992,2.8930132389068604,0.027598929405212403,-0.05422758102416992,0.028930132389068604 +karman_re200,ppo,384,153.6,0.8141465187072754,0.3158906400203705,0.8694355487823486,0.8228238821029663,1.1812154054641724,0.44485580921173096,0.005782084073871374,-0.0006853187805972993,-0.0028380705043673515,0.002261719899252057,0.001181218191049993,-0.0025126272812485695,2.5736873149871826,-5.166706562042236,3.872475028038025,0.025736873149871827,-0.051667065620422364,0.03872475028038025 +karman_re200,ppo,385,154.0,0.7545890212059021,0.20337148010730743,0.7692835927009583,0.7875560522079468,1.2355552911758423,0.33586081862449646,0.0024539076257497072,-0.003175802528858185,-0.0033563056495040655,7.970249862410128e-05,0.00022502837236970663,-0.002028379589319229,3.1528289318084717,-5.865061044692993,0.29842376708984375,0.03152828931808472,-0.05865061044692993,0.0029842376708984378 +karman_re200,ppo,386,154.4,0.7377593517303467,0.05394429340958595,0.6572835445404053,0.194542795419693,1.2051284313201904,0.10316842794418335,0.0003816527023445815,-0.005374407395720482,-0.004693516530096531,0.0037273550406098366,-0.0007653463399037719,-0.0028725892771035433,3.314269065856933,-4.594434320926666,-0.34973669052124023,0.03314269065856933,-0.045944343209266665,-0.0034973669052124024 +karman_re200,ppo,387,154.8,0.7653211951255798,-0.11722920089960098,0.7078027129173279,-0.6116369962692261,1.1995482444763184,-0.11406279355287552,-0.0008210656233131886,-0.005283660255372524,-0.001942274160683155,0.008062535896897316,-0.0006329325842671096,-0.0031196833588182926,1.1084010601043701,-0.5440378189086914,5.602619528770447,0.011084010601043701,-0.005440378189086915,0.05602619528770447 +karman_re200,ppo,388,155.2,0.818379282951355,-0.28636181354522705,0.8291500210762024,-0.8056553602218628,1.166835069656372,-0.27990782260894775,-0.0013703686418011785,-0.004568969830870628,0.0027764507103711367,0.008488579653203487,-0.0004770213272422552,-0.005779959727078676,-1.9647101163864138,3.1229348182678223,11.251236915588379,-0.019647101163864138,0.031229348182678224,0.11251236915588379 +karman_re200,ppo,389,155.6,0.9121677279472351,-0.380088210105896,0.89028000831604,-0.8194609880447388,1.0698299407958984,-0.4054628610610962,0.0012113575357943773,-0.0037303364370018244,0.005908019375056028,0.007266083732247353,0.0006048846407793462,-0.003301396733149886,-2.686728000640869,1.6334953308105467,10.341233730316162,-0.026867280006408693,0.016334953308105468,0.10341233730316163 +karman_re200,ppo,390,156.0,1.0143730640411377,-0.4191277027130127,0.9196025729179382,-0.8405407071113586,0.9594619274139404,-0.44781771302223206,0.005281453020870686,-0.002080268459394574,0.005985000170767307,0.005054110661149025,-0.004717682953923941,-0.002407682128250599,-3.082756519317627,1.584442615509033,10.417626857757568,-0.03082756519317627,0.01584442615509033,0.10417626857757568 +karman_re200,ppo,391,156.4,1.1127140522003174,-0.41256478428840637,0.9571579098701477,-0.8787254095077515,0.8516102433204651,-0.4319057762622833,0.005603952333331108,-4.723038000520319e-05,0.004656054545193911,0.002886453876271844,-0.005171992350369692,-0.005248404573649168,-3.0673751831054688,-0.48959994316101074,8.334369659423828,-0.03067375183105469,-0.004895999431610108,0.08334369659423828 +karman_re200,ppo,392,156.8,1.1911547183990479,-0.34494704008102417,1.0334879159927368,-0.9434122443199158,0.7506024241447449,-0.3510216772556305,0.003888424253091216,0.0015508326468989253,0.0024572168476879597,0.0032950034365057945,-0.0021887505427002907,-0.005520613398402929,-2.3678417205810547,-3.502467393875122,4.80801260471344,-0.023678417205810546,-0.03502467393875122,0.0480801260471344 +karman_re200,ppo,393,157.2,1.2161277532577515,-0.21606069803237915,1.1452851295471191,-0.6580343842506409,0.6782057285308838,-0.20743896067142487,0.0015575794968754053,0.0031587297562509775,0.00027231310377828777,0.0033928530756384134,-0.0010663089342415333,-0.004845968913286924,-2.1815288066864014,-3.0098686814308167,4.757486343383789,-0.021815288066864013,-0.030098686814308166,0.04757486343383789 +karman_re200,ppo,394,157.6,1.2046022415161133,-0.05023808404803276,1.1873234510421753,0.2294655442237854,0.6720775365829468,-0.021928148344159126,-0.00125205481890589,0.003763420507311821,-0.00043804984306916595,0.003503946354612708,0.0002043065760517493,-0.006363045424222946,-1.1095471382141113,-3.4548245668411255,2.6494815349578857,-0.011095471382141113,-0.034548245668411255,0.026494815349578857 +karman_re200,ppo,395,158.0,1.2030926942825317,0.09630027413368225,1.1058982610702515,0.6996427178382874,0.7277082800865173,0.17163032293319702,-0.0013711851788684726,0.0036580271553248167,-0.001692227553576231,0.003242430044338107,0.002948174485936761,-0.006835592910647392,1.6107417345046997,-7.084277629852295,-2.7212424278259277,0.016107417345046997,-0.07084277629852295,-0.02721242427825928 +karman_re200,ppo,396,158.4,1.1353511810302734,0.24648992717266083,1.027438998222351,0.7207584381103516,0.8006554245948792,0.36177363991737366,0.0008470623870380223,0.004034565296024084,-0.0034059854224324226,0.0024663747753947973,0.005805562250316143,-0.007010766305029392,3.1006417274475098,-8.366827964782715,-4.0,0.031006417274475097,-0.08366827964782715,-0.04 +karman_re200,ppo,397,158.8,1.0379040241241455,0.344092458486557,0.9900962114334106,0.7404972910881042,0.9055261015892029,0.4488441050052643,0.006656506098806858,0.0030388236045837402,-0.008140712976455688,0.0014898277586326003,0.006952954456210136,-0.006906019989401102,3.491285085678101,-8.46632719039917,-3.8489518165588374,0.03491285085678101,-0.0846632719039917,-0.03848951816558838 +karman_re200,ppo,398,159.2,0.9452968835830688,0.36430469155311584,0.9614661335945129,0.7510030269622803,1.0128452777862549,0.4846935570240021,0.007692623883485794,0.0018631522543728352,-0.008855169638991356,0.006481865420937538,0.00705404719337821,-0.004354257136583328,3.1450438499450684,-7.372696876525879,-1.5831837654113772,0.031450438499450686,-0.07372696876525879,-0.01583183765411377 +karman_re200,ppo,399,159.6,0.8568965196609497,0.33948054909706116,0.9277926683425903,0.7811403870582581,1.1125777959823608,0.4846740961074829,0.007845095358788967,7.759529398754239e-05,-0.004737852141261101,0.005370226688683033,0.0027333975303918123,-0.0029926036950200796,2.668640613555908,-5.058308124542236,4.009695470333099,0.026686406135559084,-0.050583081245422365,0.040096954703330995 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_long.csv new file mode 100644 index 0000000..3f69161 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,target,0,0.0,velocity,upper_ux,0.6432554721832275 +karman_re200,target,0,0.0,velocity,upper_uy,-0.06557244807481766 +karman_re200,target,0,0.0,velocity,center_ux,1.2227433919906616 +karman_re200,target,0,0.0,velocity,center_uy,-0.14389048516750336 +karman_re200,target,0,0.0,velocity,lower_ux,1.406646728515625 +karman_re200,target,0,0.0,velocity,lower_uy,-0.02134464681148529 +karman_re200,target,1,0.4,velocity,upper_ux,0.7244659662246704 +karman_re200,target,1,0.4,velocity,upper_uy,-0.27880942821502686 +karman_re200,target,1,0.4,velocity,center_ux,1.1973810195922852 +karman_re200,target,1,0.4,velocity,center_uy,-0.5509853363037109 +karman_re200,target,1,0.4,velocity,lower_ux,1.343299388885498 +karman_re200,target,1,0.4,velocity,lower_uy,-0.2057136595249176 +karman_re200,target,2,0.8,velocity,upper_ux,0.8541536927223206 +karman_re200,target,2,0.8,velocity,upper_uy,-0.39004504680633545 +karman_re200,target,2,0.8,velocity,center_ux,1.1640958786010742 +karman_re200,target,2,0.8,velocity,center_uy,-0.7180821895599365 +karman_re200,target,2,0.8,velocity,lower_ux,1.235082745552063 +karman_re200,target,2,0.8,velocity,lower_uy,-0.3318859338760376 +karman_re200,target,3,1.2,velocity,upper_ux,0.9902082681655884 +karman_re200,target,3,1.2,velocity,upper_uy,-0.4154239296913147 +karman_re200,target,3,1.2,velocity,center_ux,1.1466995477676392 +karman_re200,target,3,1.2,velocity,center_uy,-0.7368992567062378 +karman_re200,target,3,1.2,velocity,lower_ux,1.117485523223877 +karman_re200,target,3,1.2,velocity,lower_uy,-0.4046570658683777 +karman_re200,target,4,1.6,velocity,upper_ux,1.1180092096328735 +karman_re200,target,4,1.6,velocity,upper_uy,-0.41048213839530945 +karman_re200,target,4,1.6,velocity,center_ux,1.1522194147109985 +karman_re200,target,4,1.6,velocity,center_uy,-0.7549645900726318 +karman_re200,target,4,1.6,velocity,lower_ux,0.9955026507377625 +karman_re200,target,4,1.6,velocity,lower_uy,-0.4469093382358551 +karman_re200,target,5,2.0,velocity,upper_ux,1.2349423170089722 +karman_re200,target,5,2.0,velocity,upper_uy,-0.38809099793434143 +karman_re200,target,5,2.0,velocity,center_ux,1.177472710609436 +karman_re200,target,5,2.0,velocity,center_uy,-0.7670754194259644 +karman_re200,target,5,2.0,velocity,lower_ux,0.86241614818573 +karman_re200,target,5,2.0,velocity,lower_uy,-0.4439176619052887 +karman_re200,target,6,2.4,velocity,upper_ux,1.331845760345459 +karman_re200,target,6,2.4,velocity,upper_uy,-0.2963719069957733 +karman_re200,target,6,2.4,velocity,center_ux,1.2142062187194824 +karman_re200,target,6,2.4,velocity,center_uy,-0.6490341424942017 +karman_re200,target,6,2.4,velocity,lower_ux,0.7316389679908752 +karman_re200,target,6,2.4,velocity,lower_uy,-0.35304945707321167 +karman_re200,target,7,2.8,velocity,upper_ux,1.3946174383163452 +karman_re200,target,7,2.8,velocity,upper_uy,-0.1428060382604599 +karman_re200,target,7,2.8,velocity,center_ux,1.2382334470748901 +karman_re200,target,7,2.8,velocity,center_uy,-0.2838085889816284 +karman_re200,target,7,2.8,velocity,lower_ux,0.643751859664917 +karman_re200,target,7,2.8,velocity,lower_uy,-0.15215010941028595 +karman_re200,target,8,3.2,velocity,upper_ux,1.393868088722229 +karman_re200,target,8,3.2,velocity,upper_uy,0.04864209145307541 +karman_re200,target,8,3.2,velocity,center_ux,1.2336465120315552 +karman_re200,target,8,3.2,velocity,center_uy,0.21364329755306244 +karman_re200,target,8,3.2,velocity,lower_ux,0.6467941999435425 +karman_re200,target,8,3.2,velocity,lower_uy,0.1041766107082367 +karman_re200,target,9,3.6,velocity,upper_ux,1.3252159357070923 +karman_re200,target,9,3.6,velocity,upper_uy,0.222551167011261 +karman_re200,target,9,3.6,velocity,center_ux,1.2044613361358643 +karman_re200,target,9,3.6,velocity,center_uy,0.5869130492210388 +karman_re200,target,9,3.6,velocity,lower_ux,0.7416239976882935 +karman_re200,target,9,3.6,velocity,lower_uy,0.3079226613044739 +karman_re200,target,10,4.0,velocity,upper_ux,1.2172800302505493 +karman_re200,target,10,4.0,velocity,upper_uy,0.3379339873790741 +karman_re200,target,10,4.0,velocity,center_ux,1.1690713167190552 +karman_re200,target,10,4.0,velocity,center_uy,0.7219284176826477 +karman_re200,target,10,4.0,velocity,lower_ux,0.8770163059234619 +karman_re200,target,10,4.0,velocity,lower_uy,0.40505996346473694 +karman_re200,target,11,4.4,velocity,upper_ux,1.0994188785552979 +karman_re200,target,11,4.4,velocity,upper_uy,0.4051879644393921 +karman_re200,target,11,4.4,velocity,center_ux,1.149307370185852 +karman_re200,target,11,4.4,velocity,center_uy,0.7343378663063049 +karman_re200,target,11,4.4,velocity,lower_ux,1.0114907026290894 +karman_re200,target,11,4.4,velocity,lower_uy,0.42090997099876404 +karman_re200,target,12,4.8,velocity,upper_ux,0.9757571220397949 +karman_re200,target,12,4.8,velocity,upper_uy,0.44280681014060974 +karman_re200,target,12,4.8,velocity,center_ux,1.152867317199707 +karman_re200,target,12,4.8,velocity,center_uy,0.757748007774353 +karman_re200,target,12,4.8,velocity,lower_ux,1.1367535591125488 +karman_re200,target,12,4.8,velocity,lower_uy,0.4152541756629944 +karman_re200,target,13,5.2,velocity,upper_ux,0.8415068984031677 +karman_re200,target,13,5.2,velocity,upper_uy,0.43018603324890137 +karman_re200,target,13,5.2,velocity,center_ux,1.1752437353134155 +karman_re200,target,13,5.2,velocity,center_uy,0.7622882127761841 +karman_re200,target,13,5.2,velocity,lower_ux,1.2506639957427979 +karman_re200,target,13,5.2,velocity,lower_uy,0.3851519823074341 +karman_re200,target,14,5.6,velocity,upper_ux,0.7158575654029846 +karman_re200,target,14,5.6,velocity,upper_uy,0.32583892345428467 +karman_re200,target,14,5.6,velocity,center_ux,1.208200216293335 +karman_re200,target,14,5.6,velocity,center_uy,0.6152374148368835 +karman_re200,target,14,5.6,velocity,lower_ux,1.3458725214004517 +karman_re200,target,14,5.6,velocity,lower_uy,0.28330159187316895 +karman_re200,target,15,6.0,velocity,upper_ux,0.6413590312004089 +karman_re200,target,15,6.0,velocity,upper_uy,0.11593959480524063 +karman_re200,target,15,6.0,velocity,center_ux,1.228240728378296 +karman_re200,target,15,6.0,velocity,center_uy,0.21909591555595398 +karman_re200,target,15,6.0,velocity,lower_ux,1.4053828716278076 +karman_re200,target,15,6.0,velocity,lower_uy,0.12062008678913116 +karman_re200,target,16,6.4,velocity,upper_ux,0.6583788394927979 +karman_re200,target,16,6.4,velocity,upper_uy,-0.13511396944522858 +karman_re200,target,16,6.4,velocity,center_ux,1.2197703123092651 +karman_re200,target,16,6.4,velocity,center_uy,-0.27840760350227356 +karman_re200,target,16,6.4,velocity,lower_ux,1.3945242166519165 +karman_re200,target,16,6.4,velocity,lower_uy,-0.07610311359167099 +karman_re200,target,17,6.8,velocity,upper_ux,0.7598505616188049 +karman_re200,target,17,6.8,velocity,upper_uy,-0.3223179280757904 +karman_re200,target,17,6.8,velocity,center_ux,1.1895992755889893 +karman_re200,target,17,6.8,velocity,center_uy,-0.6215084195137024 +karman_re200,target,17,6.8,velocity,lower_ux,1.3154792785644531 +karman_re200,target,17,6.8,velocity,lower_uy,-0.2462870180606842 +karman_re200,target,18,7.2,velocity,upper_ux,0.8942430019378662 +karman_re200,target,18,7.2,velocity,upper_uy,-0.40564560890197754 +karman_re200,target,18,7.2,velocity,center_ux,1.1577154397964478 +karman_re200,target,18,7.2,velocity,center_uy,-0.7298039197921753 +karman_re200,target,18,7.2,velocity,lower_ux,1.2020158767700195 +karman_re200,target,18,7.2,velocity,lower_uy,-0.35459277033805847 +karman_re200,target,19,7.6,velocity,upper_ux,1.026527762413025 +karman_re200,target,19,7.6,velocity,upper_uy,-0.41542404890060425 +karman_re200,target,19,7.6,velocity,center_ux,1.1438515186309814 +karman_re200,target,19,7.6,velocity,center_uy,-0.7377326488494873 +karman_re200,target,19,7.6,velocity,lower_ux,1.0822765827178955 +karman_re200,target,19,7.6,velocity,lower_uy,-0.417153000831604 +karman_re200,target,20,8.0,velocity,upper_ux,1.1522146463394165 +karman_re200,target,20,8.0,velocity,upper_uy,-0.4104238748550415 +karman_re200,target,20,8.0,velocity,center_ux,1.1547839641571045 +karman_re200,target,20,8.0,velocity,center_uy,-0.7629572153091431 +karman_re200,target,20,8.0,velocity,lower_ux,0.9584237933158875 +karman_re200,target,20,8.0,velocity,lower_uy,-0.4499009847640991 +karman_re200,target,21,8.4,velocity,upper_ux,1.2656704187393188 +karman_re200,target,21,8.4,velocity,upper_uy,-0.37174710631370544 +karman_re200,target,21,8.4,velocity,center_ux,1.1839876174926758 +karman_re200,target,21,8.4,velocity,center_uy,-0.7550964951515198 +karman_re200,target,21,8.4,velocity,lower_ux,0.8246118426322937 +karman_re200,target,21,8.4,velocity,lower_uy,-0.42694374918937683 +karman_re200,target,22,8.8,velocity,upper_ux,1.3559521436691284 +karman_re200,target,22,8.8,velocity,upper_uy,-0.2604682445526123 +karman_re200,target,22,8.8,velocity,center_ux,1.218299388885498 +karman_re200,target,22,8.8,velocity,center_uy,-0.5735544562339783 +karman_re200,target,22,8.8,velocity,lower_ux,0.7010501623153687 +karman_re200,target,22,8.8,velocity,lower_uy,-0.30618026852607727 +karman_re200,target,23,9.2,velocity,upper_ux,1.4055769443511963 +karman_re200,target,23,9.2,velocity,upper_uy,-0.09160733968019485 +karman_re200,target,23,9.2,velocity,center_ux,1.2354027032852173 +karman_re200,target,23,9.2,velocity,center_uy,-0.14826050400733948 +karman_re200,target,23,9.2,velocity,lower_ux,0.6359063386917114 +karman_re200,target,23,9.2,velocity,lower_uy,-0.08220306038856506 +karman_re200,target,24,9.6,velocity,upper_ux,1.3826426267623901 +karman_re200,target,24,9.6,velocity,upper_uy,0.10332219302654266 +karman_re200,target,24,9.6,velocity,center_ux,1.2219959497451782 +karman_re200,target,24,9.6,velocity,center_uy,0.3406277000904083 +karman_re200,target,24,9.6,velocity,lower_ux,0.6655831336975098 +karman_re200,target,24,9.6,velocity,lower_uy,0.16838259994983673 +karman_re200,target,25,10.0,velocity,upper_ux,1.2979419231414795 +karman_re200,target,25,10.0,velocity,upper_uy,0.26396292448043823 +karman_re200,target,25,10.0,velocity,center_ux,1.189590573310852 +karman_re200,target,25,10.0,velocity,center_uy,0.6482822895050049 +karman_re200,target,25,10.0,velocity,lower_ux,0.776298463344574 +karman_re200,target,25,10.0,velocity,lower_uy,0.34254491329193115 +karman_re200,target,26,10.4,velocity,upper_ux,1.1856331825256348 +karman_re200,target,26,10.4,velocity,upper_uy,0.3637695014476776 +karman_re200,target,26,10.4,velocity,center_ux,1.1599136590957642 +karman_re200,target,26,10.4,velocity,center_uy,0.7320259809494019 +karman_re200,target,26,10.4,velocity,lower_ux,0.9146434664726257 +karman_re200,target,26,10.4,velocity,lower_uy,0.41295182704925537 +karman_re200,target,27,10.8,velocity,upper_ux,1.0665216445922852 +karman_re200,target,27,10.8,velocity,upper_uy,0.42246106266975403 +karman_re200,target,27,10.8,velocity,center_ux,1.1487221717834473 +karman_re200,target,27,10.8,velocity,center_uy,0.7390797138214111 +karman_re200,target,27,10.8,velocity,lower_ux,1.046908974647522 +karman_re200,target,27,10.8,velocity,lower_uy,0.416408509016037 +karman_re200,target,28,11.2,velocity,upper_ux,0.9396861791610718 +karman_re200,target,28,11.2,velocity,upper_uy,0.44987091422080994 +karman_re200,target,28,11.2,velocity,center_ux,1.1605079174041748 +karman_re200,target,28,11.2,velocity,center_uy,0.7658457159996033 +karman_re200,target,28,11.2,velocity,lower_ux,1.1700363159179688 +karman_re200,target,28,11.2,velocity,lower_uy,0.40971192717552185 +karman_re200,target,29,11.6,velocity,upper_ux,0.8041301965713501 +karman_re200,target,29,11.6,velocity,upper_uy,0.41496479511260986 +karman_re200,target,29,11.6,velocity,center_ux,1.1899334192276 +karman_re200,target,29,11.6,velocity,center_uy,0.7425267100334167 +karman_re200,target,29,11.6,velocity,lower_ux,1.2791972160339355 +karman_re200,target,29,11.6,velocity,lower_uy,0.36078524589538574 +karman_re200,target,30,12.0,velocity,upper_ux,0.6854016780853271 +karman_re200,target,30,12.0,velocity,upper_uy,0.2777344882488251 +karman_re200,target,30,12.0,velocity,center_ux,1.2220757007598877 +karman_re200,target,30,12.0,velocity,center_uy,0.5246646404266357 +karman_re200,target,30,12.0,velocity,lower_ux,1.364320993423462 +karman_re200,target,30,12.0,velocity,lower_uy,0.2402329444885254 +karman_re200,target,31,12.4,velocity,upper_ux,0.63457852602005 +karman_re200,target,31,12.4,velocity,upper_uy,0.04346945881843567 +karman_re200,target,31,12.4,velocity,center_ux,1.2360661029815674 +karman_re200,target,31,12.4,velocity,center_uy,0.0750584676861763 +karman_re200,target,31,12.4,velocity,lower_ux,1.406490445137024 +karman_re200,target,31,12.4,velocity,lower_uy,0.06521020084619522 +karman_re200,target,32,12.8,velocity,upper_ux,0.6803280711174011 +karman_re200,target,32,12.8,velocity,upper_uy,-0.20142421126365662 +karman_re200,target,32,12.8,velocity,center_ux,1.2197967767715454 +karman_re200,target,32,12.8,velocity,center_uy,-0.39997726678848267 +karman_re200,target,32,12.8,velocity,lower_ux,1.374925971031189 +karman_re200,target,32,12.8,velocity,lower_uy,-0.12819036841392517 +karman_re200,target,33,13.2,velocity,upper_ux,0.7976840734481812 +karman_re200,target,33,13.2,velocity,upper_uy,-0.3596543073654175 +karman_re200,target,33,13.2,velocity,center_ux,1.1846297979354858 +karman_re200,target,33,13.2,velocity,center_uy,-0.6710125207901001 +karman_re200,target,33,13.2,velocity,lower_ux,1.2831568717956543 +karman_re200,target,33,13.2,velocity,lower_uy,-0.2802155315876007 +karman_re200,target,34,13.6,velocity,upper_ux,0.934621274471283 +karman_re200,target,34,13.6,velocity,upper_uy,-0.41707131266593933 +karman_re200,target,34,13.6,velocity,center_ux,1.154879093170166 +karman_re200,target,34,13.6,velocity,center_uy,-0.7327771186828613 +karman_re200,target,34,13.6,velocity,lower_ux,1.1678249835968018 +karman_re200,target,34,13.6,velocity,lower_uy,-0.372023344039917 +karman_re200,target,35,14.0,velocity,upper_ux,1.0639256238937378 +karman_re200,target,35,14.0,velocity,upper_uy,-0.4166054427623749 +karman_re200,target,35,14.0,velocity,center_ux,1.1449257135391235 +karman_re200,target,35,14.0,velocity,center_uy,-0.7411283850669861 +karman_re200,target,35,14.0,velocity,lower_ux,1.0470654964447021 +karman_re200,target,35,14.0,velocity,lower_uy,-0.4261029064655304 +karman_re200,target,36,14.4,velocity,upper_ux,1.186131238937378 +karman_re200,target,36,14.4,velocity,upper_uy,-0.4088838994503021 +karman_re200,target,36,14.4,velocity,center_ux,1.1586613655090332 +karman_re200,target,36,14.4,velocity,center_uy,-0.7685453295707703 +karman_re200,target,36,14.4,velocity,lower_ux,0.9196659922599792 +karman_re200,target,36,14.4,velocity,lower_uy,-0.44713515043258667 +karman_re200,target,37,14.8,velocity,upper_ux,1.2952494621276855 +karman_re200,target,37,14.8,velocity,upper_uy,-0.34990933537483215 +karman_re200,target,37,14.8,velocity,center_ux,1.190079689025879 +karman_re200,target,37,14.8,velocity,center_uy,-0.7290668487548828 +karman_re200,target,37,14.8,velocity,lower_ux,0.786955714225769 +karman_re200,target,37,14.8,velocity,lower_uy,-0.40068894624710083 +karman_re200,target,38,15.2,velocity,upper_ux,1.3783167600631714 +karman_re200,target,38,15.2,velocity,upper_uy,-0.2202281504869461 +karman_re200,target,38,15.2,velocity,center_ux,1.2200649976730347 +karman_re200,target,38,15.2,velocity,center_uy,-0.4758532643318176 +karman_re200,target,38,15.2,velocity,lower_ux,0.6753562688827515 +karman_re200,target,38,15.2,velocity,lower_uy,-0.24956707656383514 +karman_re200,target,39,15.6,velocity,upper_ux,1.4104249477386475 +karman_re200,target,39,15.6,velocity,upper_uy,-0.03739527612924576 +karman_re200,target,39,15.6,velocity,center_ux,1.2284072637557983 +karman_re200,target,39,15.6,velocity,center_uy,-0.005360466428101063 +karman_re200,target,39,15.6,velocity,lower_ux,0.6355161070823669 +karman_re200,target,39,15.6,velocity,lower_uy,-0.009536323137581348 +karman_re200,target,40,16.0,velocity,upper_ux,1.3670088052749634 +karman_re200,target,40,16.0,velocity,upper_uy,0.15581277012825012 +karman_re200,target,40,16.0,velocity,center_ux,1.2087996006011963 +karman_re200,target,40,16.0,velocity,center_uy,0.4535796344280243 +karman_re200,target,40,16.0,velocity,lower_ux,0.691985547542572 +karman_re200,target,40,16.0,velocity,lower_uy,0.2260318398475647 +karman_re200,target,41,16.4,velocity,upper_ux,1.2684814929962158 +karman_re200,target,41,16.4,velocity,upper_uy,0.30063095688819885 +karman_re200,target,41,16.4,velocity,center_ux,1.1749753952026367 +karman_re200,target,41,16.4,velocity,center_uy,0.691335141658783 +karman_re200,target,41,16.4,velocity,lower_ux,0.8136542439460754 +karman_re200,target,41,16.4,velocity,lower_uy,0.3687804341316223 +karman_re200,target,42,16.8,velocity,upper_ux,1.152733325958252 +karman_re200,target,42,16.8,velocity,upper_uy,0.3862348198890686 +karman_re200,target,42,16.8,velocity,center_ux,1.151533603668213 +karman_re200,target,42,16.8,velocity,center_uy,0.7360584735870361 +karman_re200,target,42,16.8,velocity,lower_ux,0.9515125751495361 +karman_re200,target,42,16.8,velocity,lower_uy,0.41532325744628906 +karman_re200,target,43,17.2,velocity,upper_ux,1.0325849056243896 +karman_re200,target,43,17.2,velocity,upper_uy,0.43698805570602417 +karman_re200,target,43,17.2,velocity,center_ux,1.1494613885879517 +karman_re200,target,43,17.2,velocity,center_uy,0.7461629509925842 +karman_re200,target,43,17.2,velocity,lower_ux,1.0817500352859497 +karman_re200,target,43,17.2,velocity,lower_uy,0.41226017475128174 +karman_re200,target,44,17.6,velocity,upper_ux,0.9022884964942932 +karman_re200,target,44,17.6,velocity,upper_uy,0.4513203501701355 +karman_re200,target,44,17.6,velocity,center_ux,1.1686137914657593 +karman_re200,target,44,17.6,velocity,center_uy,0.7698351144790649 +karman_re200,target,44,17.6,velocity,lower_ux,1.2021279335021973 +karman_re200,target,44,17.6,velocity,lower_uy,0.40098997950553894 +karman_re200,target,45,18.0,velocity,upper_ux,0.7677320837974548 +karman_re200,target,45,18.0,velocity,upper_uy,0.3905928134918213 +karman_re200,target,45,18.0,velocity,center_ux,1.2035346031188965 +karman_re200,target,45,18.0,velocity,center_uy,0.7068682909011841 +karman_re200,target,45,18.0,velocity,lower_ux,1.3057456016540527 +karman_re200,target,45,18.0,velocity,lower_uy,0.33114948868751526 +karman_re200,target,46,18.4,velocity,upper_ux,0.6614390015602112 +karman_re200,target,46,18.4,velocity,upper_uy,0.22068165242671967 +karman_re200,target,46,18.4,velocity,center_ux,1.2332653999328613 +karman_re200,target,46,18.4,velocity,center_uy,0.41515037417411804 +karman_re200,target,46,18.4,velocity,lower_ux,1.3807930946350098 +karman_re200,target,46,18.4,velocity,lower_uy,0.19389763474464417 +karman_re200,target,47,18.8,velocity,upper_ux,0.635716438293457 +karman_re200,target,47,18.8,velocity,upper_uy,-0.029796814545989037 +karman_re200,target,47,18.8,velocity,center_ux,1.2382533550262451 +karman_re200,target,47,18.8,velocity,center_uy,-0.06889773160219193 +karman_re200,target,47,18.8,velocity,lower_ux,1.4022650718688965 +karman_re200,target,47,18.8,velocity,lower_uy,0.009296800941228867 +karman_re200,target,48,19.2,velocity,upper_ux,0.7076326012611389 +karman_re200,target,48,19.2,velocity,upper_uy,-0.25886279344558716 +karman_re200,target,48,19.2,velocity,center_ux,1.2149534225463867 +karman_re200,target,48,19.2,velocity,center_uy,-0.501801073551178 +karman_re200,target,48,19.2,velocity,lower_ux,1.3517454862594604 +karman_re200,target,48,19.2,velocity,lower_uy,-0.17622973024845123 +karman_re200,target,49,19.6,velocity,upper_ux,0.8363876342773438 +karman_re200,target,49,19.6,velocity,upper_uy,-0.3868645429611206 +karman_re200,target,49,19.6,velocity,center_ux,1.178067684173584 +karman_re200,target,49,19.6,velocity,center_uy,-0.7026323080062866 +karman_re200,target,49,19.6,velocity,lower_ux,1.2509368658065796 +karman_re200,target,49,19.6,velocity,lower_uy,-0.3098498284816742 +karman_re200,target,50,20.0,velocity,upper_ux,0.9727989435195923 +karman_re200,target,50,20.0,velocity,upper_uy,-0.42171165347099304 +karman_re200,target,50,20.0,velocity,center_ux,1.1519463062286377 +karman_re200,target,50,20.0,velocity,center_uy,-0.7330369353294373 +karman_re200,target,50,20.0,velocity,lower_ux,1.1341825723648071 +karman_re200,target,50,20.0,velocity,lower_uy,-0.38825786113739014 +karman_re200,target,51,20.4,velocity,upper_ux,1.1003495454788208 +karman_re200,target,51,20.4,velocity,upper_uy,-0.4168320596218109 +karman_re200,target,51,20.4,velocity,center_ux,1.1483274698257446 +karman_re200,target,51,20.4,velocity,center_uy,-0.7482863664627075 +karman_re200,target,51,20.4,velocity,lower_ux,1.0128191709518433 +karman_re200,target,51,20.4,velocity,lower_uy,-0.43467846512794495 +karman_re200,target,52,20.8,velocity,upper_ux,1.2185834646224976 +karman_re200,target,52,20.8,velocity,upper_uy,-0.40124496817588806 +karman_re200,target,52,20.8,velocity,center_ux,1.1654409170150757 +karman_re200,target,52,20.8,velocity,center_uy,-0.769540011882782 +karman_re200,target,52,20.8,velocity,lower_ux,0.8814619183540344 +karman_re200,target,52,20.8,velocity,lower_uy,-0.4411170184612274 +karman_re200,target,53,21.2,velocity,upper_ux,1.3213053941726685 +karman_re200,target,53,21.2,velocity,upper_uy,-0.320942759513855 +karman_re200,target,53,21.2,velocity,center_ux,1.1978055238723755 +karman_re200,target,53,21.2,velocity,center_uy,-0.6847319006919861 +karman_re200,target,53,21.2,velocity,lower_ux,0.7507598996162415 +karman_re200,target,53,21.2,velocity,lower_uy,-0.3679817318916321 +karman_re200,target,54,21.6,velocity,upper_ux,1.394852638244629 +karman_re200,target,54,21.6,velocity,upper_uy,-0.1744035929441452 +karman_re200,target,54,21.6,velocity,center_ux,1.2234634160995483 +karman_re200,target,54,21.6,velocity,center_uy,-0.35876715183258057 +karman_re200,target,54,21.6,velocity,lower_ux,0.6554253101348877 +karman_re200,target,54,21.6,velocity,lower_uy,-0.18707232177257538 +karman_re200,target,55,22.0,velocity,upper_ux,1.40665864944458 +karman_re200,target,55,22.0,velocity,upper_uy,0.018108773976564407 +karman_re200,target,55,22.0,velocity,center_ux,1.2234165668487549 +karman_re200,target,55,22.0,velocity,center_uy,0.13672541081905365 +karman_re200,target,55,22.0,velocity,lower_ux,0.6428121328353882 +karman_re200,target,55,22.0,velocity,lower_uy,0.06238376721739769 +karman_re200,target,56,22.4,velocity,upper_ux,1.3446121215820312 +karman_re200,target,56,22.4,velocity,upper_uy,0.20282338559627533 +karman_re200,target,56,22.4,velocity,center_ux,1.198345422744751 +karman_re200,target,56,22.4,velocity,center_uy,0.5464919805526733 +karman_re200,target,56,22.4,velocity,lower_ux,0.7232455611228943 +karman_re200,target,56,22.4,velocity,lower_uy,0.2768464982509613 +karman_re200,target,57,22.8,velocity,upper_ux,1.2370752096176147 +karman_re200,target,57,22.8,velocity,upper_uy,0.3298610746860504 +karman_re200,target,57,22.8,velocity,center_ux,1.1649653911590576 +karman_re200,target,57,22.8,velocity,center_uy,0.7168077230453491 +karman_re200,target,57,22.8,velocity,lower_ux,0.8529689908027649 +karman_re200,target,57,22.8,velocity,lower_uy,0.38958436250686646 +karman_re200,target,58,23.2,velocity,upper_ux,1.1184711456298828 +karman_re200,target,58,23.2,velocity,upper_uy,0.4030691981315613 +karman_re200,target,58,23.2,velocity,center_ux,1.1458393335342407 +karman_re200,target,58,23.2,velocity,center_uy,0.7365471124649048 +karman_re200,target,58,23.2,velocity,lower_ux,0.987949013710022 +karman_re200,target,58,23.2,velocity,lower_uy,0.4158564805984497 +karman_re200,target,59,23.6,velocity,upper_ux,0.9970067739486694 +karman_re200,target,59,23.6,velocity,upper_uy,0.44563889503479004 +karman_re200,target,59,23.6,velocity,center_ux,1.1508800983428955 +karman_re200,target,59,23.6,velocity,center_uy,0.7543967962265015 +karman_re200,target,59,23.6,velocity,lower_ux,1.116052508354187 +karman_re200,target,59,23.6,velocity,lower_uy,0.4111141562461853 +karman_re200,target,60,24.0,velocity,upper_ux,0.8646318912506104 +karman_re200,target,60,24.0,velocity,upper_uy,0.44364380836486816 +karman_re200,target,60,24.0,velocity,center_ux,1.1757224798202515 +karman_re200,target,60,24.0,velocity,center_uy,0.7676694393157959 +karman_re200,target,60,24.0,velocity,lower_ux,1.233699917793274 +karman_re200,target,60,24.0,velocity,lower_uy,0.38957810401916504 +karman_re200,target,61,24.4,velocity,upper_ux,0.7335224747657776 +karman_re200,target,61,24.4,velocity,upper_uy,0.3547559678554535 +karman_re200,target,61,24.4,velocity,center_ux,1.2115789651870728 +karman_re200,target,61,24.4,velocity,center_uy,0.6532692909240723 +karman_re200,target,61,24.4,velocity,lower_ux,1.3310275077819824 +karman_re200,target,61,24.4,velocity,lower_uy,0.2989650070667267 +karman_re200,target,62,24.8,velocity,upper_ux,0.6453540921211243 +karman_re200,target,62,24.8,velocity,upper_uy,0.15607093274593353 +karman_re200,target,62,24.8,velocity,center_ux,1.2363373041152954 +karman_re200,target,62,24.8,velocity,center_uy,0.29171520471572876 +karman_re200,target,62,24.8,velocity,lower_ux,1.3956068754196167 +karman_re200,target,62,24.8,velocity,lower_uy,0.14589105546474457 +karman_re200,target,63,25.2,velocity,upper_ux,0.6461480855941772 +karman_re200,target,63,25.2,velocity,upper_uy,-0.0995725691318512 +karman_re200,target,63,25.2,velocity,center_ux,1.2318007946014404 +karman_re200,target,63,25.2,velocity,center_uy,-0.20629683136940002 +karman_re200,target,63,25.2,velocity,lower_ux,1.395458698272705 +karman_re200,target,63,25.2,velocity,lower_uy,-0.04613293707370758 +karman_re200,target,64,25.6,velocity,upper_ux,0.7389828562736511 +karman_re200,target,64,25.6,velocity,upper_uy,-0.3043431043624878 +karman_re200,target,64,25.6,velocity,center_ux,1.2028902769088745 +karman_re200,target,64,25.6,velocity,center_uy,-0.5834786295890808 +karman_re200,target,64,25.6,velocity,lower_ux,1.3268367052078247 +karman_re200,target,64,25.6,velocity,lower_uy,-0.2213229238986969 +karman_re200,target,65,26.0,velocity,upper_ux,0.874520480632782 +karman_re200,target,65,26.0,velocity,upper_uy,-0.40312135219573975 +karman_re200,target,65,26.0,velocity,center_ux,1.1687451601028442 +karman_re200,target,65,26.0,velocity,center_uy,-0.7220139503479004 +karman_re200,target,65,26.0,velocity,lower_ux,1.2195037603378296 +karman_re200,target,65,26.0,velocity,lower_uy,-0.33797141909599304 +karman_re200,target,66,26.4,velocity,upper_ux,1.0092506408691406 +karman_re200,target,66,26.4,velocity,upper_uy,-0.41996872425079346 +karman_re200,target,66,26.4,velocity,center_ux,1.1495007276535034 +karman_re200,target,66,26.4,velocity,center_uy,-0.7349109053611755 +karman_re200,target,66,26.4,velocity,lower_ux,1.1015609502792358 +karman_re200,target,66,26.4,velocity,lower_uy,-0.4058745503425598 +karman_re200,target,67,26.8,velocity,upper_ux,1.134774923324585 +karman_re200,target,67,26.8,velocity,upper_uy,-0.4142799377441406 +karman_re200,target,67,26.8,velocity,center_ux,1.1536147594451904 +karman_re200,target,67,26.8,velocity,center_uy,-0.7576487064361572 +karman_re200,target,67,26.8,velocity,lower_ux,0.9779508113861084 +karman_re200,target,67,26.8,velocity,lower_uy,-0.44408318400382996 +karman_re200,target,68,27.2,velocity,upper_ux,1.2492709159851074 +karman_re200,target,68,27.2,velocity,upper_uy,-0.3848746120929718 +karman_re200,target,68,27.2,velocity,center_ux,1.1771130561828613 +karman_re200,target,68,27.2,velocity,center_uy,-0.7626807689666748 +karman_re200,target,68,27.2,velocity,lower_ux,0.8439183831214905 +karman_re200,target,68,27.2,velocity,lower_uy,-0.43235865235328674 +karman_re200,target,69,27.6,velocity,upper_ux,1.3434022665023804 +karman_re200,target,69,27.6,velocity,upper_uy,-0.28398430347442627 +karman_re200,target,69,27.6,velocity,center_ux,1.2099987268447876 +karman_re200,target,69,27.6,velocity,center_uy,-0.6181198954582214 +karman_re200,target,69,27.6,velocity,lower_ux,0.7165889739990234 +karman_re200,target,69,27.6,velocity,lower_uy,-0.328954815864563 +karman_re200,target,70,28.0,velocity,upper_ux,1.4033302068710327 +karman_re200,target,70,28.0,velocity,upper_uy,-0.12252417206764221 +karman_re200,target,70,28.0,velocity,center_ux,1.2310556173324585 +karman_re200,target,70,28.0,velocity,center_uy,-0.22487710416316986 +karman_re200,target,70,28.0,velocity,lower_ux,0.6411141753196716 +karman_re200,target,70,28.0,velocity,lower_uy,-0.11926824599504471 +karman_re200,target,71,28.4,velocity,upper_ux,1.3939344882965088 +karman_re200,target,71,28.4,velocity,upper_uy,0.07318856567144394 +karman_re200,target,71,28.4,velocity,center_ux,1.2232455015182495 +karman_re200,target,71,28.4,velocity,center_uy,0.2725500762462616 +karman_re200,target,71,28.4,velocity,lower_ux,0.6574582457542419 +karman_re200,target,71,28.4,velocity,lower_uy,0.13305921852588654 +karman_re200,target,72,28.8,velocity,upper_ux,1.3156864643096924 +karman_re200,target,72,28.8,velocity,upper_uy,0.24328114092350006 +karman_re200,target,72,28.8,velocity,center_ux,1.192237138748169 +karman_re200,target,72,28.8,velocity,center_uy,0.6181144714355469 +karman_re200,target,72,28.8,velocity,lower_ux,0.7582288384437561 +karman_re200,target,72,28.8,velocity,lower_uy,0.3221103250980377 +karman_re200,target,73,29.2,velocity,upper_ux,1.2034400701522827 +karman_re200,target,73,29.2,velocity,upper_uy,0.352046400308609 +karman_re200,target,73,29.2,velocity,center_ux,1.1598626375198364 +karman_re200,target,73,29.2,velocity,center_uy,0.7286000847816467 +karman_re200,target,73,29.2,velocity,lower_ux,0.893388569355011 +karman_re200,target,73,29.2,velocity,lower_uy,0.4066128134727478 +karman_re200,target,74,29.6,velocity,upper_ux,1.0835808515548706 +karman_re200,target,74,29.6,velocity,upper_uy,0.4149654805660248 +karman_re200,target,74,29.6,velocity,center_ux,1.144446849822998 +karman_re200,target,74,29.6,velocity,center_uy,0.7369455099105835 +karman_re200,target,74,29.6,velocity,lower_ux,1.0255122184753418 +karman_re200,target,74,29.6,velocity,lower_uy,0.41673344373703003 +karman_re200,target,75,30.0,velocity,upper_ux,0.9592962861061096 +karman_re200,target,75,30.0,velocity,upper_uy,0.44816094636917114 +karman_re200,target,75,30.0,velocity,center_ux,1.1534961462020874 +karman_re200,target,75,30.0,velocity,center_uy,0.762338399887085 +karman_re200,target,75,30.0,velocity,lower_ux,1.1504871845245361 +karman_re200,target,75,30.0,velocity,lower_uy,0.41170457005500793 +karman_re200,target,76,30.4,velocity,upper_ux,0.8263115882873535 +karman_re200,target,76,30.4,velocity,upper_uy,0.4262888431549072 +karman_re200,target,76,30.4,velocity,center_ux,1.182093620300293 +karman_re200,target,76,30.4,velocity,center_uy,0.7560983300209045 +karman_re200,target,76,30.4,velocity,lower_ux,1.2647757530212402 +karman_re200,target,76,30.4,velocity,lower_uy,0.37389621138572693 +karman_re200,target,77,30.8,velocity,upper_ux,0.7027651071548462 +karman_re200,target,77,30.8,velocity,upper_uy,0.307496577501297 +karman_re200,target,77,30.8,velocity,center_ux,1.2157526016235352 +karman_re200,target,77,30.8,velocity,center_uy,0.5782379508018494 +karman_re200,target,77,30.8,velocity,lower_ux,1.3559303283691406 +karman_re200,target,77,30.8,velocity,lower_uy,0.2634206712245941 +karman_re200,target,78,31.2,velocity,upper_ux,0.6365786790847778 +karman_re200,target,78,31.2,velocity,upper_uy,0.08556787669658661 +karman_re200,target,78,31.2,velocity,center_ux,1.2326802015304565 +karman_re200,target,78,31.2,velocity,center_uy,0.1555790901184082 +karman_re200,target,78,31.2,velocity,lower_ux,1.4066190719604492 +karman_re200,target,78,31.2,velocity,lower_uy,0.09472870826721191 +karman_re200,target,79,31.6,velocity,upper_ux,0.6653527617454529 +karman_re200,target,79,31.6,velocity,upper_uy,-0.164507195353508 +karman_re200,target,79,31.6,velocity,center_ux,1.2203428745269775 +karman_re200,target,79,31.6,velocity,center_uy,-0.3349043130874634 +karman_re200,target,79,31.6,velocity,lower_ux,1.385197639465332 +karman_re200,target,79,31.6,velocity,lower_uy,-0.10114884376525879 +karman_re200,target,80,32.0,velocity,upper_ux,0.7741094827651978 +karman_re200,target,80,32.0,velocity,upper_uy,-0.3396437168121338 +karman_re200,target,80,32.0,velocity,center_ux,1.187795877456665 +karman_re200,target,80,32.0,velocity,center_uy,-0.6464141607284546 +karman_re200,target,80,32.0,velocity,lower_ux,1.2998344898223877 +karman_re200,target,80,32.0,velocity,lower_uy,-0.26322799921035767 +karman_re200,target,81,32.4,velocity,upper_ux,0.9120847582817078 +karman_re200,target,81,32.4,velocity,upper_uy,-0.41132378578186035 +karman_re200,target,81,32.4,velocity,center_ux,1.1587560176849365 +karman_re200,target,81,32.4,velocity,center_uy,-0.732459545135498 +karman_re200,target,81,32.4,velocity,lower_ux,1.187364101409912 +karman_re200,target,81,32.4,velocity,lower_uy,-0.36400142312049866 +karman_re200,target,82,32.8,velocity,upper_ux,1.0448923110961914 +karman_re200,target,82,32.8,velocity,upper_uy,-0.4154284596443176 +karman_re200,target,82,32.8,velocity,center_ux,1.148444652557373 +karman_re200,target,82,32.8,velocity,center_uy,-0.7392826676368713 +karman_re200,target,82,32.8,velocity,lower_ux,1.0685577392578125 +karman_re200,target,82,32.8,velocity,lower_uy,-0.4230922758579254 +karman_re200,target,83,33.2,velocity,upper_ux,1.1679906845092773 +karman_re200,target,83,33.2,velocity,upper_uy,-0.4089483618736267 +karman_re200,target,83,33.2,velocity,center_ux,1.1604928970336914 +karman_re200,target,83,33.2,velocity,center_uy,-0.7657351493835449 +karman_re200,target,83,33.2,velocity,lower_ux,0.9415751695632935 +karman_re200,target,83,33.2,velocity,lower_uy,-0.4511360228061676 +karman_re200,target,84,33.6,velocity,upper_ux,1.2778379917144775 +karman_re200,target,84,33.6,velocity,upper_uy,-0.36101025342941284 +karman_re200,target,84,33.6,velocity,center_ux,1.1910229921340942 +karman_re200,target,84,33.6,velocity,center_uy,-0.743723452091217 +karman_re200,target,84,33.6,velocity,lower_ux,0.8063547611236572 +karman_re200,target,84,33.6,velocity,lower_uy,-0.41734039783477783 +karman_re200,target,85,34.0,velocity,upper_ux,1.3629930019378662 +karman_re200,target,85,34.0,velocity,upper_uy,-0.24140924215316772 +karman_re200,target,85,34.0,velocity,center_ux,1.2238798141479492 +karman_re200,target,85,34.0,velocity,center_uy,-0.5290366411209106 +karman_re200,target,85,34.0,velocity,lower_ux,0.6866507530212402 +karman_re200,target,85,34.0,velocity,lower_uy,-0.2812125086784363 +karman_re200,target,86,34.4,velocity,upper_ux,1.4049397706985474 +karman_re200,target,86,34.4,velocity,upper_uy,-0.06744836270809174 +karman_re200,target,86,34.4,velocity,center_ux,1.237766981124878 +karman_re200,target,86,34.4,velocity,center_uy,-0.08171763271093369 +karman_re200,target,86,34.4,velocity,lower_ux,0.6336483955383301 +karman_re200,target,86,34.4,velocity,lower_uy,-0.047089699655771255 +karman_re200,target,87,34.8,velocity,upper_ux,1.3749200105667114 +karman_re200,target,87,34.8,velocity,upper_uy,0.1254042387008667 +karman_re200,target,87,34.8,velocity,center_ux,1.2221866846084595 +karman_re200,target,87,34.8,velocity,center_uy,0.394331157207489 +karman_re200,target,87,34.8,velocity,lower_ux,0.6786559820175171 +karman_re200,target,87,34.8,velocity,lower_uy,0.19912414252758026 +karman_re200,target,88,35.2,velocity,upper_ux,1.2842307090759277 +karman_re200,target,88,35.2,velocity,upper_uy,0.27781161665916443 +karman_re200,target,88,35.2,velocity,center_ux,1.1868088245391846 +karman_re200,target,88,35.2,velocity,center_uy,0.6685442924499512 +karman_re200,target,88,35.2,velocity,lower_ux,0.7958654165267944 +karman_re200,target,88,35.2,velocity,lower_uy,0.3592066466808319 +karman_re200,target,89,35.6,velocity,upper_ux,1.1692156791687012 +karman_re200,target,89,35.6,velocity,upper_uy,0.3702027201652527 +karman_re200,target,89,35.6,velocity,center_ux,1.156129240989685 +karman_re200,target,89,35.6,velocity,center_uy,0.732185959815979 +karman_re200,target,89,35.6,velocity,lower_ux,0.9328685998916626 +karman_re200,target,89,35.6,velocity,lower_uy,0.417723685503006 +karman_re200,target,90,36.0,velocity,upper_ux,1.0492522716522217 +karman_re200,target,90,36.0,velocity,upper_uy,0.4247138202190399 +karman_re200,target,90,36.0,velocity,center_ux,1.1459386348724365 +karman_re200,target,90,36.0,velocity,center_uy,0.7404694557189941 +karman_re200,target,90,36.0,velocity,lower_ux,1.0629712343215942 +karman_re200,target,90,36.0,velocity,lower_uy,0.41739413142204285 +karman_re200,target,91,36.4,velocity,upper_ux,0.9212132096290588 +karman_re200,target,91,36.4,velocity,upper_uy,0.4463908076286316 +karman_re200,target,91,36.4,velocity,center_ux,1.1581095457077026 +karman_re200,target,91,36.4,velocity,center_uy,0.7681281566619873 +karman_re200,target,91,36.4,velocity,lower_ux,1.1844614744186401 +karman_re200,target,91,36.4,velocity,lower_uy,0.4097919762134552 +karman_re200,target,92,36.8,velocity,upper_ux,0.7884170413017273 +karman_re200,target,92,36.8,velocity,upper_uy,0.40123608708381653 +karman_re200,target,92,36.8,velocity,center_ux,1.1887091398239136 +karman_re200,target,92,36.8,velocity,center_uy,0.7307322025299072 +karman_re200,target,92,36.8,velocity,lower_ux,1.2936245203018188 +karman_re200,target,92,36.8,velocity,lower_uy,0.3518857955932617 +karman_re200,target,93,37.2,velocity,upper_ux,0.6767986416816711 +karman_re200,target,93,37.2,velocity,upper_uy,0.2519320249557495 +karman_re200,target,93,37.2,velocity,center_ux,1.2189278602600098 +karman_re200,target,93,37.2,velocity,center_uy,0.4815022945404053 +karman_re200,target,93,37.2,velocity,lower_ux,1.3777084350585938 +karman_re200,target,93,37.2,velocity,lower_uy,0.22307921946048737 +karman_re200,target,94,37.6,velocity,upper_ux,0.6356155872344971 +karman_re200,target,94,37.6,velocity,upper_uy,0.013045644387602806 +karman_re200,target,94,37.6,velocity,center_ux,1.227354645729065 +karman_re200,target,94,37.6,velocity,center_uy,0.012907896190881729 +karman_re200,target,94,37.6,velocity,lower_ux,1.4108461141586304 +karman_re200,target,94,37.6,velocity,lower_uy,0.04065427929162979 +karman_re200,target,95,38.0,velocity,upper_ux,0.6911056637763977 +karman_re200,target,95,38.0,velocity,upper_uy,-0.2229473739862442 +karman_re200,target,95,38.0,velocity,center_ux,1.2084569931030273 +karman_re200,target,95,38.0,velocity,center_uy,-0.44817912578582764 +karman_re200,target,95,38.0,velocity,lower_ux,1.368830919265747 +karman_re200,target,95,38.0,velocity,lower_uy,-0.1531122922897339 +karman_re200,target,96,38.4,velocity,upper_ux,0.8121469616889954 +karman_re200,target,96,38.4,velocity,upper_uy,-0.36713963747024536 +karman_re200,target,96,38.4,velocity,center_ux,1.1748355627059937 +karman_re200,target,96,38.4,velocity,center_uy,-0.6897163391113281 +karman_re200,target,96,38.4,velocity,lower_ux,1.270675539970398 +karman_re200,target,96,38.4,velocity,lower_uy,-0.2990820109844208 +karman_re200,target,97,38.8,velocity,upper_ux,0.9489498138427734 +karman_re200,target,97,38.8,velocity,upper_uy,-0.414856493473053 +karman_re200,target,97,38.8,velocity,center_ux,1.1503894329071045 +karman_re200,target,97,38.8,velocity,center_uy,-0.736060619354248 +karman_re200,target,97,38.8,velocity,lower_ux,1.1539769172668457 +karman_re200,target,97,38.8,velocity,lower_uy,-0.38533687591552734 +karman_re200,target,98,39.2,velocity,upper_ux,1.0796141624450684 +karman_re200,target,98,39.2,velocity,upper_uy,-0.41222256422042847 +karman_re200,target,98,39.2,velocity,center_ux,1.1484240293502808 +karman_re200,target,98,39.2,velocity,center_uy,-0.7458163499832153 +karman_re200,target,98,39.2,velocity,lower_ux,1.0342999696731567 +karman_re200,target,98,39.2,velocity,lower_uy,-0.43638455867767334 +karman_re200,target,99,39.6,velocity,upper_ux,1.200491189956665 +karman_re200,target,99,39.6,velocity,upper_uy,-0.4015160799026489 +karman_re200,target,99,39.6,velocity,center_ux,1.1675251722335815 +karman_re200,target,99,39.6,velocity,center_uy,-0.7699165344238281 +karman_re200,target,99,39.6,velocity,lower_ux,0.9045226573944092 +karman_re200,target,99,39.6,velocity,lower_uy,-0.4514789879322052 +karman_re200,target,100,40.0,velocity,upper_ux,1.3044353723526 +karman_re200,target,100,40.0,velocity,upper_uy,-0.332899272441864 +karman_re200,target,100,40.0,velocity,center_ux,1.202061414718628 +karman_re200,target,100,40.0,velocity,center_uy,-0.7096784114837646 +karman_re200,target,100,40.0,velocity,lower_ux,0.7697776556015015 +karman_re200,target,100,40.0,velocity,lower_uy,-0.3923875689506531 +karman_re200,target,101,40.4,velocity,upper_ux,1.3808265924453735 +karman_re200,target,101,40.4,velocity,upper_uy,-0.196457639336586 +karman_re200,target,101,40.4,velocity,center_ux,1.2325818538665771 +karman_re200,target,101,40.4,velocity,center_uy,-0.42201030254364014 +karman_re200,target,101,40.4,velocity,lower_ux,0.6632058024406433 +karman_re200,target,101,40.4,velocity,lower_uy,-0.22440257668495178 +karman_re200,target,102,40.8,velocity,upper_ux,1.4027332067489624 +karman_re200,target,102,40.8,velocity,upper_uy,-0.01203743927180767 +karman_re200,target,102,40.8,velocity,center_ux,1.2374500036239624 +karman_re200,target,102,40.8,velocity,center_uy,0.06097717583179474 +karman_re200,target,102,40.8,velocity,lower_ux,0.6351749300956726 +karman_re200,target,102,40.8,velocity,lower_uy,0.02533131279051304 +karman_re200,target,103,41.2,velocity,upper_ux,1.3528311252593994 +karman_re200,target,103,41.2,velocity,upper_uy,0.17415672540664673 +karman_re200,target,103,41.2,velocity,center_ux,1.2144583463668823 +karman_re200,target,103,41.2,velocity,center_uy,0.4967536926269531 +karman_re200,target,103,41.2,velocity,lower_ux,0.705268919467926 +karman_re200,target,103,41.2,velocity,lower_uy,0.25537508726119995 +karman_re200,target,104,41.6,velocity,upper_ux,1.2529457807540894 +karman_re200,target,104,41.6,velocity,upper_uy,0.30891716480255127 +karman_re200,target,104,41.6,velocity,center_ux,1.1784565448760986 +karman_re200,target,104,41.6,velocity,center_uy,0.7015871405601501 +karman_re200,target,104,41.6,velocity,lower_ux,0.8340179920196533 +karman_re200,target,104,41.6,velocity,lower_uy,0.38515225052833557 +karman_re200,target,105,42.0,velocity,upper_ux,1.136214256286621 +karman_re200,target,105,42.0,velocity,upper_uy,0.38808998465538025 +karman_re200,target,105,42.0,velocity,center_ux,1.1524022817611694 +karman_re200,target,105,42.0,velocity,center_uy,0.733381450176239 +karman_re200,target,105,42.0,velocity,lower_ux,0.9705920219421387 +karman_re200,target,105,42.0,velocity,lower_uy,0.4212205410003662 +karman_re200,target,106,42.4,velocity,upper_ux,1.01509428024292 +karman_re200,target,106,42.4,velocity,upper_uy,0.4350454807281494 +karman_re200,target,106,42.4,velocity,center_ux,1.1490339040756226 +karman_re200,target,106,42.4,velocity,center_uy,0.7480692267417908 +karman_re200,target,106,42.4,velocity,lower_ux,1.0985548496246338 +karman_re200,target,106,42.4,velocity,lower_uy,0.4163944721221924 +karman_re200,target,107,42.8,velocity,upper_ux,0.8838403820991516 +karman_re200,target,107,42.8,velocity,upper_uy,0.4422953724861145 +karman_re200,target,107,42.8,velocity,center_ux,1.1665035486221313 +karman_re200,target,107,42.8,velocity,center_uy,0.7695446014404297 +karman_re200,target,107,42.8,velocity,lower_ux,1.217105746269226 +karman_re200,target,107,42.8,velocity,lower_uy,0.4012185335159302 +karman_re200,target,108,43.2,velocity,upper_ux,0.7518613338470459 +karman_re200,target,108,43.2,velocity,upper_uy,0.37033504247665405 +karman_re200,target,108,43.2,velocity,center_ux,1.1983953714370728 +karman_re200,target,108,43.2,velocity,center_uy,0.686951220035553 +karman_re200,target,108,43.2,velocity,lower_ux,1.318976640701294 +karman_re200,target,108,43.2,velocity,lower_uy,0.3219699561595917 +karman_re200,target,109,43.6,velocity,upper_ux,0.6559072732925415 +karman_re200,target,109,43.6,velocity,upper_uy,0.1903628408908844 +karman_re200,target,109,43.6,velocity,center_ux,1.224992036819458 +karman_re200,target,109,43.6,velocity,center_uy,0.36448559165000916 +karman_re200,target,109,43.6,velocity,lower_ux,1.3930692672729492 +karman_re200,target,109,43.6,velocity,lower_uy,0.1764776110649109 +karman_re200,target,110,44.0,velocity,upper_ux,0.6423743963241577 +karman_re200,target,110,44.0,velocity,upper_uy,-0.05950049310922623 +karman_re200,target,110,44.0,velocity,center_ux,1.225677728652954 +karman_re200,target,110,44.0,velocity,center_uy,-0.13001637160778046 +karman_re200,target,110,44.0,velocity,lower_ux,1.4062288999557495 +karman_re200,target,110,44.0,velocity,lower_uy,-0.015112684108316898 +karman_re200,target,111,44.4,velocity,upper_ux,0.7217737436294556 +karman_re200,target,111,44.4,velocity,upper_uy,-0.2755361795425415 +karman_re200,target,111,44.4,velocity,center_ux,1.200250267982483 +karman_re200,target,111,44.4,velocity,center_uy,-0.5421044230461121 +karman_re200,target,111,44.4,velocity,lower_ux,1.3450907468795776 +karman_re200,target,111,44.4,velocity,lower_uy,-0.19981123507022858 +karman_re200,target,112,44.8,velocity,upper_ux,0.8519049286842346 +karman_re200,target,112,44.8,velocity,upper_uy,-0.3897359073162079 +karman_re200,target,112,44.8,velocity,center_ux,1.1666733026504517 +karman_re200,target,112,44.8,velocity,center_uy,-0.7153037190437317 +karman_re200,target,112,44.8,velocity,lower_ux,1.2386655807495117 +karman_re200,target,112,44.8,velocity,lower_uy,-0.327455073595047 +karman_re200,target,113,45.2,velocity,upper_ux,0.9864875078201294 +karman_re200,target,113,45.2,velocity,upper_uy,-0.4167650640010834 +karman_re200,target,113,45.2,velocity,center_ux,1.1460645198822021 +karman_re200,target,113,45.2,velocity,center_uy,-0.7359924912452698 +karman_re200,target,113,45.2,velocity,lower_ux,1.1197009086608887 +karman_re200,target,113,45.2,velocity,lower_uy,-0.40109962224960327 +karman_re200,target,114,45.6,velocity,upper_ux,1.1141430139541626 +karman_re200,target,114,45.6,velocity,upper_uy,-0.4120756983757019 +karman_re200,target,114,45.6,velocity,center_ux,1.1496491432189941 +karman_re200,target,114,45.6,velocity,center_uy,-0.7537432312965393 +karman_re200,target,114,45.6,velocity,lower_ux,0.9980176687240601 +karman_re200,target,114,45.6,velocity,lower_uy,-0.4440052807331085 +karman_re200,target,115,46.0,velocity,upper_ux,1.2325693368911743 +karman_re200,target,115,46.0,velocity,upper_uy,-0.39124390482902527 +karman_re200,target,115,46.0,velocity,center_ux,1.1740174293518066 +karman_re200,target,115,46.0,velocity,center_uy,-0.768115758895874 +karman_re200,target,115,46.0,velocity,lower_ux,0.866489589214325 +karman_re200,target,115,46.0,velocity,lower_uy,-0.44290027022361755 +karman_re200,target,116,46.4,velocity,upper_ux,1.3306312561035156 +karman_re200,target,116,46.4,velocity,upper_uy,-0.30162638425827026 +karman_re200,target,116,46.4,velocity,center_ux,1.209136962890625 +karman_re200,target,116,46.4,velocity,center_uy,-0.6570490002632141 +karman_re200,target,116,46.4,velocity,lower_ux,0.735444962978363 +karman_re200,target,116,46.4,velocity,lower_uy,-0.3558446764945984 +karman_re200,target,117,46.8,velocity,upper_ux,1.3963274955749512 +karman_re200,target,117,46.8,velocity,upper_uy,-0.14895707368850708 +karman_re200,target,117,46.8,velocity,center_ux,1.2337747812271118 +karman_re200,target,117,46.8,velocity,center_uy,-0.2989790439605713 +karman_re200,target,117,46.8,velocity,lower_ux,0.6465133428573608 +karman_re200,target,117,46.8,velocity,lower_uy,-0.15936428308486938 +karman_re200,target,118,47.2,velocity,upper_ux,1.397567868232727 +karman_re200,target,118,47.2,velocity,upper_uy,0.043684858828783035 +karman_re200,target,118,47.2,velocity,center_ux,1.230000376701355 +karman_re200,target,118,47.2,velocity,center_uy,0.1994621455669403 +karman_re200,target,118,47.2,velocity,lower_ux,0.64606773853302 +karman_re200,target,118,47.2,velocity,lower_uy,0.09534949064254761 +karman_re200,target,119,47.6,velocity,upper_ux,1.3285975456237793 +karman_re200,target,119,47.6,velocity,upper_uy,0.22025558352470398 +karman_re200,target,119,47.6,velocity,center_ux,1.2010562419891357 +karman_re200,target,119,47.6,velocity,center_uy,0.5803675055503845 +karman_re200,target,119,47.6,velocity,lower_ux,0.7367409467697144 +karman_re200,target,119,47.6,velocity,lower_uy,0.300919771194458 +karman_re200,target,120,48.0,velocity,upper_ux,1.2214479446411133 +karman_re200,target,120,48.0,velocity,upper_uy,0.33809468150138855 +karman_re200,target,120,48.0,velocity,center_ux,1.167861819267273 +karman_re200,target,120,48.0,velocity,center_uy,0.7221003770828247 +karman_re200,target,120,48.0,velocity,lower_ux,0.871979296207428 +karman_re200,target,120,48.0,velocity,lower_uy,0.4010962247848511 +karman_re200,target,121,48.4,velocity,upper_ux,1.1036977767944336 +karman_re200,target,121,48.4,velocity,upper_uy,0.4065929651260376 +karman_re200,target,121,48.4,velocity,center_ux,1.14950692653656 +karman_re200,target,121,48.4,velocity,center_uy,0.7354413866996765 +karman_re200,target,121,48.4,velocity,lower_ux,1.007184624671936 +karman_re200,target,121,48.4,velocity,lower_uy,0.4189078211784363 +karman_re200,target,122,48.8,velocity,upper_ux,0.9798921346664429 +karman_re200,target,122,48.8,velocity,upper_uy,0.44534724950790405 +karman_re200,target,122,48.8,velocity,center_ux,1.153965711593628 +karman_re200,target,122,48.8,velocity,center_uy,0.7575238943099976 +karman_re200,target,122,48.8,velocity,lower_ux,1.1327142715454102 +karman_re200,target,122,48.8,velocity,lower_uy,0.413248747587204 +karman_re200,target,123,49.2,velocity,upper_ux,0.8461753129959106 +karman_re200,target,123,49.2,velocity,upper_uy,0.4345444142818451 +karman_re200,target,123,49.2,velocity,center_ux,1.1786075830459595 +karman_re200,target,123,49.2,velocity,center_uy,0.7631057500839233 +karman_re200,target,123,49.2,velocity,lower_ux,1.2477996349334717 +karman_re200,target,123,49.2,velocity,lower_uy,0.38457220792770386 +karman_re200,target,124,49.6,velocity,upper_ux,0.7178316712379456 +karman_re200,target,124,49.6,velocity,upper_uy,0.33213719725608826 +karman_re200,target,124,49.6,velocity,center_ux,1.2121028900146484 +karman_re200,target,124,49.6,velocity,center_uy,0.6210676431655884 +karman_re200,target,124,49.6,velocity,lower_ux,1.341598391532898 +karman_re200,target,124,49.6,velocity,lower_uy,0.2846449613571167 +karman_re200,target,125,50.0,velocity,upper_ux,0.6406057476997375 +karman_re200,target,125,50.0,velocity,upper_uy,0.12271616607904434 +karman_re200,target,125,50.0,velocity,center_ux,1.2334461212158203 +karman_re200,target,125,50.0,velocity,center_uy,0.2306842803955078 +karman_re200,target,125,50.0,velocity,lower_ux,1.4012172222137451 +karman_re200,target,125,50.0,velocity,lower_uy,0.1243431493639946 +karman_re200,target,126,50.4,velocity,upper_ux,0.6562661528587341 +karman_re200,target,126,50.4,velocity,upper_uy,-0.13076452910900116 +karman_re200,target,126,50.4,velocity,center_ux,1.2264307737350464 +karman_re200,target,126,50.4,velocity,center_uy,-0.2665708661079407 +karman_re200,target,126,50.4,velocity,lower_ux,1.3933212757110596 +karman_re200,target,126,50.4,velocity,lower_uy,-0.07035040110349655 +karman_re200,target,127,50.8,velocity,upper_ux,0.7566630840301514 +karman_re200,target,127,50.8,velocity,upper_uy,-0.321723073720932 +karman_re200,target,127,50.8,velocity,center_ux,1.1950409412384033 +karman_re200,target,127,50.8,velocity,center_uy,-0.6147140264511108 +karman_re200,target,127,50.8,velocity,lower_ux,1.3162126541137695 +karman_re200,target,127,50.8,velocity,lower_uy,-0.24040989577770233 +karman_re200,target,128,51.2,velocity,upper_ux,0.8919445276260376 +karman_re200,target,128,51.2,velocity,upper_uy,-0.4074344336986542 +karman_re200,target,128,51.2,velocity,center_ux,1.1616325378417969 +karman_re200,target,128,51.2,velocity,center_uy,-0.7274600863456726 +karman_re200,target,128,51.2,velocity,lower_ux,1.2045637369155884 +karman_re200,target,128,51.2,velocity,lower_uy,-0.349636435508728 +karman_re200,target,129,51.6,velocity,upper_ux,1.0246460437774658 +karman_re200,target,129,51.6,velocity,upper_uy,-0.41794708371162415 +karman_re200,target,129,51.6,velocity,center_ux,1.1454763412475586 +karman_re200,target,129,51.6,velocity,center_uy,-0.7362310290336609 +karman_re200,target,129,51.6,velocity,lower_ux,1.0853352546691895 +karman_re200,target,129,51.6,velocity,lower_uy,-0.4129646420478821 +karman_re200,target,130,52.0,velocity,upper_ux,1.1488877534866333 +karman_re200,target,130,52.0,velocity,upper_uy,-0.4128205478191376 +karman_re200,target,130,52.0,velocity,center_ux,1.1526776552200317 +karman_re200,target,130,52.0,velocity,center_uy,-0.7616804242134094 +karman_re200,target,130,52.0,velocity,lower_ux,0.9604882001876831 +karman_re200,target,130,52.0,velocity,lower_uy,-0.44662079215049744 +karman_re200,target,131,52.4,velocity,upper_ux,1.2634692192077637 +karman_re200,target,131,52.4,velocity,upper_uy,-0.3759050667285919 +karman_re200,target,131,52.4,velocity,center_ux,1.1803197860717773 +karman_re200,target,131,52.4,velocity,center_uy,-0.756989598274231 +karman_re200,target,131,52.4,velocity,lower_ux,0.8278253674507141 +karman_re200,target,131,52.4,velocity,lower_uy,-0.42583563923835754 +karman_re200,target,132,52.8,velocity,upper_ux,1.355635166168213 +karman_re200,target,132,52.8,velocity,upper_uy,-0.2663039267063141 +karman_re200,target,132,52.8,velocity,center_ux,1.2136964797973633 +karman_re200,target,132,52.8,velocity,center_uy,-0.5828499794006348 +karman_re200,target,132,52.8,velocity,lower_ux,0.7045143246650696 +karman_re200,target,132,52.8,velocity,lower_uy,-0.30893653631210327 +karman_re200,target,133,53.2,velocity,upper_ux,1.4072842597961426 +karman_re200,target,133,53.2,velocity,upper_uy,-0.09793893992900848 +karman_re200,target,133,53.2,velocity,center_ux,1.2304173707962036 +karman_re200,target,133,53.2,velocity,center_uy,-0.16296058893203735 +karman_re200,target,133,53.2,velocity,lower_ux,0.6371945738792419 +karman_re200,target,133,53.2,velocity,lower_uy,-0.08887189626693726 +karman_re200,target,134,53.6,velocity,upper_ux,1.3872967958450317 +karman_re200,target,134,53.6,velocity,upper_uy,0.09859559684991837 +karman_re200,target,134,53.6,velocity,center_ux,1.2189010381698608 +karman_re200,target,134,53.6,velocity,center_uy,0.3287924528121948 +karman_re200,target,134,53.6,velocity,lower_ux,0.6648901104927063 +karman_re200,target,134,53.6,velocity,lower_uy,0.16076523065567017 +karman_re200,target,135,54.0,velocity,upper_ux,1.302126407623291 +karman_re200,target,135,54.0,velocity,upper_uy,0.2620323896408081 +karman_re200,target,135,54.0,velocity,center_ux,1.1867619752883911 +karman_re200,target,135,54.0,velocity,center_uy,0.6442092061042786 +karman_re200,target,135,54.0,velocity,lower_ux,0.7724679708480835 +karman_re200,target,135,54.0,velocity,lower_uy,0.3370109796524048 +karman_re200,target,136,54.4,velocity,upper_ux,1.188866376876831 +karman_re200,target,136,54.4,velocity,upper_uy,0.36372295022010803 +karman_re200,target,136,54.4,velocity,center_ux,1.157435417175293 +karman_re200,target,136,54.4,velocity,center_uy,0.7326161861419678 +karman_re200,target,136,54.4,velocity,lower_ux,0.9094144701957703 +karman_re200,target,136,54.4,velocity,lower_uy,0.40996918082237244 +karman_re200,target,137,54.8,velocity,upper_ux,1.0704314708709717 +karman_re200,target,137,54.8,velocity,upper_uy,0.4231930673122406 +karman_re200,target,137,54.8,velocity,center_ux,1.147752285003662 +karman_re200,target,137,54.8,velocity,center_uy,0.7393374443054199 +karman_re200,target,137,54.8,velocity,lower_ux,1.0427013635635376 +karman_re200,target,137,54.8,velocity,lower_uy,0.4147869050502777 +karman_re200,target,138,55.2,velocity,upper_ux,0.9437413215637207 +karman_re200,target,138,55.2,velocity,upper_uy,0.4518183171749115 +karman_re200,target,138,55.2,velocity,center_ux,1.1601115465164185 +karman_re200,target,138,55.2,velocity,center_uy,0.7655473351478577 +karman_re200,target,138,55.2,velocity,lower_ux,1.1661343574523926 +karman_re200,target,138,55.2,velocity,lower_uy,0.40856683254241943 +karman_re200,target,139,55.6,velocity,upper_ux,0.8084142804145813 +karman_re200,target,139,55.6,velocity,upper_uy,0.4193006157875061 +karman_re200,target,139,55.6,velocity,center_ux,1.1908050775527954 +karman_re200,target,139,55.6,velocity,center_uy,0.7451673150062561 +karman_re200,target,139,55.6,velocity,lower_ux,1.276200771331787 +karman_re200,target,139,55.6,velocity,lower_uy,0.36174896359443665 +karman_re200,target,140,56.0,velocity,upper_ux,0.688402533531189 +karman_re200,target,140,56.0,velocity,upper_uy,0.2846880257129669 +karman_re200,target,140,56.0,velocity,center_ux,1.2246158123016357 +karman_re200,target,140,56.0,velocity,center_uy,0.5341458320617676 +karman_re200,target,140,56.0,velocity,lower_ux,1.3621547222137451 +karman_re200,target,140,56.0,velocity,lower_uy,0.24312877655029297 +karman_re200,target,141,56.4,velocity,upper_ux,0.6332380771636963 +karman_re200,target,141,56.4,velocity,upper_uy,0.05117632448673248 +karman_re200,target,141,56.4,velocity,center_ux,1.2384333610534668 +karman_re200,target,141,56.4,velocity,center_uy,0.08915121108293533 +karman_re200,target,141,56.4,velocity,lower_ux,1.404200792312622 +karman_re200,target,141,56.4,velocity,lower_uy,0.06996676325798035 +karman_re200,target,142,56.8,velocity,upper_ux,0.6767095327377319 +karman_re200,target,142,56.8,velocity,upper_uy,-0.19600890576839447 +karman_re200,target,142,56.8,velocity,center_ux,1.22318696975708 +karman_re200,target,142,56.8,velocity,center_uy,-0.3882351219654083 +karman_re200,target,142,56.8,velocity,lower_ux,1.3751808404922485 +karman_re200,target,142,56.8,velocity,lower_uy,-0.12272565066814423 +karman_re200,target,143,57.2,velocity,upper_ux,0.7937718033790588 +karman_re200,target,143,57.2,velocity,upper_uy,-0.3579596281051636 +karman_re200,target,143,57.2,velocity,center_ux,1.188218593597412 +karman_re200,target,143,57.2,velocity,center_uy,-0.6661668419837952 +karman_re200,target,143,57.2,velocity,lower_ux,1.285703182220459 +karman_re200,target,143,57.2,velocity,lower_uy,-0.2758375406265259 +karman_re200,target,144,57.6,velocity,upper_ux,0.9308686852455139 +karman_re200,target,144,57.6,velocity,upper_uy,-0.41777199506759644 +karman_re200,target,144,57.6,velocity,center_ux,1.1570698022842407 +karman_re200,target,144,57.6,velocity,center_uy,-0.7319389581680298 +karman_re200,target,144,57.6,velocity,lower_ux,1.1709305047988892 +karman_re200,target,144,57.6,velocity,lower_uy,-0.36897268891334534 +karman_re200,target,145,58.0,velocity,upper_ux,1.061447024345398 +karman_re200,target,145,58.0,velocity,upper_uy,-0.4177234172821045 +karman_re200,target,145,58.0,velocity,center_ux,1.1466636657714844 +karman_re200,target,145,58.0,velocity,center_uy,-0.74009108543396 +karman_re200,target,145,58.0,velocity,lower_ux,1.0513734817504883 +karman_re200,target,145,58.0,velocity,lower_uy,-0.4239741265773773 +karman_re200,target,146,58.4,velocity,upper_ux,1.1830229759216309 +karman_re200,target,146,58.4,velocity,upper_uy,-0.4102095663547516 +karman_re200,target,146,58.4,velocity,center_ux,1.1583943367004395 +karman_re200,target,146,58.4,velocity,center_uy,-0.7677927613258362 +karman_re200,target,146,58.4,velocity,lower_ux,0.9233756065368652 +karman_re200,target,146,58.4,velocity,lower_uy,-0.4463076889514923 +karman_re200,target,147,58.8,velocity,upper_ux,1.2916184663772583 +karman_re200,target,147,58.8,velocity,upper_uy,-0.3533700704574585 +karman_re200,target,147,58.8,velocity,center_ux,1.1880011558532715 +karman_re200,target,147,58.8,velocity,center_uy,-0.7322458624839783 +karman_re200,target,147,58.8,velocity,lower_ux,0.789781928062439 +karman_re200,target,147,58.8,velocity,lower_uy,-0.4023807942867279 +karman_re200,target,148,59.2,velocity,upper_ux,1.376448392868042 +karman_re200,target,148,59.2,velocity,upper_uy,-0.22549906373023987 +karman_re200,target,148,59.2,velocity,center_ux,1.2187143564224243 +karman_re200,target,148,59.2,velocity,center_uy,-0.4868471622467041 +karman_re200,target,148,59.2,velocity,lower_ux,0.6779658794403076 +karman_re200,target,148,59.2,velocity,lower_uy,-0.2546255588531494 +karman_re200,target,149,59.6,velocity,upper_ux,1.4108374118804932 +karman_re200,target,149,59.6,velocity,upper_uy,-0.043760787695646286 +karman_re200,target,149,59.6,velocity,center_ux,1.2276999950408936 +karman_re200,target,149,59.6,velocity,center_uy,-0.020247695967555046 +karman_re200,target,149,59.6,velocity,lower_ux,0.6357743740081787 +karman_re200,target,149,59.6,velocity,lower_uy,-0.016458934172987938 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_wide.csv new file mode 100644 index 0000000..0b54198 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re200,target,0,0.0,0.6432554721832275,-0.06557244807481766,1.2227433919906616,-0.14389048516750336,1.406646728515625,-0.02134464681148529 +karman_re200,target,1,0.4,0.7244659662246704,-0.27880942821502686,1.1973810195922852,-0.5509853363037109,1.343299388885498,-0.2057136595249176 +karman_re200,target,2,0.8,0.8541536927223206,-0.39004504680633545,1.1640958786010742,-0.7180821895599365,1.235082745552063,-0.3318859338760376 +karman_re200,target,3,1.2,0.9902082681655884,-0.4154239296913147,1.1466995477676392,-0.7368992567062378,1.117485523223877,-0.4046570658683777 +karman_re200,target,4,1.6,1.1180092096328735,-0.41048213839530945,1.1522194147109985,-0.7549645900726318,0.9955026507377625,-0.4469093382358551 +karman_re200,target,5,2.0,1.2349423170089722,-0.38809099793434143,1.177472710609436,-0.7670754194259644,0.86241614818573,-0.4439176619052887 +karman_re200,target,6,2.4,1.331845760345459,-0.2963719069957733,1.2142062187194824,-0.6490341424942017,0.7316389679908752,-0.35304945707321167 +karman_re200,target,7,2.8,1.3946174383163452,-0.1428060382604599,1.2382334470748901,-0.2838085889816284,0.643751859664917,-0.15215010941028595 +karman_re200,target,8,3.2,1.393868088722229,0.04864209145307541,1.2336465120315552,0.21364329755306244,0.6467941999435425,0.1041766107082367 +karman_re200,target,9,3.6,1.3252159357070923,0.222551167011261,1.2044613361358643,0.5869130492210388,0.7416239976882935,0.3079226613044739 +karman_re200,target,10,4.0,1.2172800302505493,0.3379339873790741,1.1690713167190552,0.7219284176826477,0.8770163059234619,0.40505996346473694 +karman_re200,target,11,4.4,1.0994188785552979,0.4051879644393921,1.149307370185852,0.7343378663063049,1.0114907026290894,0.42090997099876404 +karman_re200,target,12,4.8,0.9757571220397949,0.44280681014060974,1.152867317199707,0.757748007774353,1.1367535591125488,0.4152541756629944 +karman_re200,target,13,5.2,0.8415068984031677,0.43018603324890137,1.1752437353134155,0.7622882127761841,1.2506639957427979,0.3851519823074341 +karman_re200,target,14,5.6,0.7158575654029846,0.32583892345428467,1.208200216293335,0.6152374148368835,1.3458725214004517,0.28330159187316895 +karman_re200,target,15,6.0,0.6413590312004089,0.11593959480524063,1.228240728378296,0.21909591555595398,1.4053828716278076,0.12062008678913116 +karman_re200,target,16,6.4,0.6583788394927979,-0.13511396944522858,1.2197703123092651,-0.27840760350227356,1.3945242166519165,-0.07610311359167099 +karman_re200,target,17,6.8,0.7598505616188049,-0.3223179280757904,1.1895992755889893,-0.6215084195137024,1.3154792785644531,-0.2462870180606842 +karman_re200,target,18,7.2,0.8942430019378662,-0.40564560890197754,1.1577154397964478,-0.7298039197921753,1.2020158767700195,-0.35459277033805847 +karman_re200,target,19,7.6,1.026527762413025,-0.41542404890060425,1.1438515186309814,-0.7377326488494873,1.0822765827178955,-0.417153000831604 +karman_re200,target,20,8.0,1.1522146463394165,-0.4104238748550415,1.1547839641571045,-0.7629572153091431,0.9584237933158875,-0.4499009847640991 +karman_re200,target,21,8.4,1.2656704187393188,-0.37174710631370544,1.1839876174926758,-0.7550964951515198,0.8246118426322937,-0.42694374918937683 +karman_re200,target,22,8.8,1.3559521436691284,-0.2604682445526123,1.218299388885498,-0.5735544562339783,0.7010501623153687,-0.30618026852607727 +karman_re200,target,23,9.2,1.4055769443511963,-0.09160733968019485,1.2354027032852173,-0.14826050400733948,0.6359063386917114,-0.08220306038856506 +karman_re200,target,24,9.6,1.3826426267623901,0.10332219302654266,1.2219959497451782,0.3406277000904083,0.6655831336975098,0.16838259994983673 +karman_re200,target,25,10.0,1.2979419231414795,0.26396292448043823,1.189590573310852,0.6482822895050049,0.776298463344574,0.34254491329193115 +karman_re200,target,26,10.4,1.1856331825256348,0.3637695014476776,1.1599136590957642,0.7320259809494019,0.9146434664726257,0.41295182704925537 +karman_re200,target,27,10.8,1.0665216445922852,0.42246106266975403,1.1487221717834473,0.7390797138214111,1.046908974647522,0.416408509016037 +karman_re200,target,28,11.2,0.9396861791610718,0.44987091422080994,1.1605079174041748,0.7658457159996033,1.1700363159179688,0.40971192717552185 +karman_re200,target,29,11.6,0.8041301965713501,0.41496479511260986,1.1899334192276,0.7425267100334167,1.2791972160339355,0.36078524589538574 +karman_re200,target,30,12.0,0.6854016780853271,0.2777344882488251,1.2220757007598877,0.5246646404266357,1.364320993423462,0.2402329444885254 +karman_re200,target,31,12.4,0.63457852602005,0.04346945881843567,1.2360661029815674,0.0750584676861763,1.406490445137024,0.06521020084619522 +karman_re200,target,32,12.8,0.6803280711174011,-0.20142421126365662,1.2197967767715454,-0.39997726678848267,1.374925971031189,-0.12819036841392517 +karman_re200,target,33,13.2,0.7976840734481812,-0.3596543073654175,1.1846297979354858,-0.6710125207901001,1.2831568717956543,-0.2802155315876007 +karman_re200,target,34,13.6,0.934621274471283,-0.41707131266593933,1.154879093170166,-0.7327771186828613,1.1678249835968018,-0.372023344039917 +karman_re200,target,35,14.0,1.0639256238937378,-0.4166054427623749,1.1449257135391235,-0.7411283850669861,1.0470654964447021,-0.4261029064655304 +karman_re200,target,36,14.4,1.186131238937378,-0.4088838994503021,1.1586613655090332,-0.7685453295707703,0.9196659922599792,-0.44713515043258667 +karman_re200,target,37,14.8,1.2952494621276855,-0.34990933537483215,1.190079689025879,-0.7290668487548828,0.786955714225769,-0.40068894624710083 +karman_re200,target,38,15.2,1.3783167600631714,-0.2202281504869461,1.2200649976730347,-0.4758532643318176,0.6753562688827515,-0.24956707656383514 +karman_re200,target,39,15.6,1.4104249477386475,-0.03739527612924576,1.2284072637557983,-0.005360466428101063,0.6355161070823669,-0.009536323137581348 +karman_re200,target,40,16.0,1.3670088052749634,0.15581277012825012,1.2087996006011963,0.4535796344280243,0.691985547542572,0.2260318398475647 +karman_re200,target,41,16.4,1.2684814929962158,0.30063095688819885,1.1749753952026367,0.691335141658783,0.8136542439460754,0.3687804341316223 +karman_re200,target,42,16.8,1.152733325958252,0.3862348198890686,1.151533603668213,0.7360584735870361,0.9515125751495361,0.41532325744628906 +karman_re200,target,43,17.2,1.0325849056243896,0.43698805570602417,1.1494613885879517,0.7461629509925842,1.0817500352859497,0.41226017475128174 +karman_re200,target,44,17.6,0.9022884964942932,0.4513203501701355,1.1686137914657593,0.7698351144790649,1.2021279335021973,0.40098997950553894 +karman_re200,target,45,18.0,0.7677320837974548,0.3905928134918213,1.2035346031188965,0.7068682909011841,1.3057456016540527,0.33114948868751526 +karman_re200,target,46,18.4,0.6614390015602112,0.22068165242671967,1.2332653999328613,0.41515037417411804,1.3807930946350098,0.19389763474464417 +karman_re200,target,47,18.8,0.635716438293457,-0.029796814545989037,1.2382533550262451,-0.06889773160219193,1.4022650718688965,0.009296800941228867 +karman_re200,target,48,19.2,0.7076326012611389,-0.25886279344558716,1.2149534225463867,-0.501801073551178,1.3517454862594604,-0.17622973024845123 +karman_re200,target,49,19.6,0.8363876342773438,-0.3868645429611206,1.178067684173584,-0.7026323080062866,1.2509368658065796,-0.3098498284816742 +karman_re200,target,50,20.0,0.9727989435195923,-0.42171165347099304,1.1519463062286377,-0.7330369353294373,1.1341825723648071,-0.38825786113739014 +karman_re200,target,51,20.4,1.1003495454788208,-0.4168320596218109,1.1483274698257446,-0.7482863664627075,1.0128191709518433,-0.43467846512794495 +karman_re200,target,52,20.8,1.2185834646224976,-0.40124496817588806,1.1654409170150757,-0.769540011882782,0.8814619183540344,-0.4411170184612274 +karman_re200,target,53,21.2,1.3213053941726685,-0.320942759513855,1.1978055238723755,-0.6847319006919861,0.7507598996162415,-0.3679817318916321 +karman_re200,target,54,21.6,1.394852638244629,-0.1744035929441452,1.2234634160995483,-0.35876715183258057,0.6554253101348877,-0.18707232177257538 +karman_re200,target,55,22.0,1.40665864944458,0.018108773976564407,1.2234165668487549,0.13672541081905365,0.6428121328353882,0.06238376721739769 +karman_re200,target,56,22.4,1.3446121215820312,0.20282338559627533,1.198345422744751,0.5464919805526733,0.7232455611228943,0.2768464982509613 +karman_re200,target,57,22.8,1.2370752096176147,0.3298610746860504,1.1649653911590576,0.7168077230453491,0.8529689908027649,0.38958436250686646 +karman_re200,target,58,23.2,1.1184711456298828,0.4030691981315613,1.1458393335342407,0.7365471124649048,0.987949013710022,0.4158564805984497 +karman_re200,target,59,23.6,0.9970067739486694,0.44563889503479004,1.1508800983428955,0.7543967962265015,1.116052508354187,0.4111141562461853 +karman_re200,target,60,24.0,0.8646318912506104,0.44364380836486816,1.1757224798202515,0.7676694393157959,1.233699917793274,0.38957810401916504 +karman_re200,target,61,24.4,0.7335224747657776,0.3547559678554535,1.2115789651870728,0.6532692909240723,1.3310275077819824,0.2989650070667267 +karman_re200,target,62,24.8,0.6453540921211243,0.15607093274593353,1.2363373041152954,0.29171520471572876,1.3956068754196167,0.14589105546474457 +karman_re200,target,63,25.2,0.6461480855941772,-0.0995725691318512,1.2318007946014404,-0.20629683136940002,1.395458698272705,-0.04613293707370758 +karman_re200,target,64,25.6,0.7389828562736511,-0.3043431043624878,1.2028902769088745,-0.5834786295890808,1.3268367052078247,-0.2213229238986969 +karman_re200,target,65,26.0,0.874520480632782,-0.40312135219573975,1.1687451601028442,-0.7220139503479004,1.2195037603378296,-0.33797141909599304 +karman_re200,target,66,26.4,1.0092506408691406,-0.41996872425079346,1.1495007276535034,-0.7349109053611755,1.1015609502792358,-0.4058745503425598 +karman_re200,target,67,26.8,1.134774923324585,-0.4142799377441406,1.1536147594451904,-0.7576487064361572,0.9779508113861084,-0.44408318400382996 +karman_re200,target,68,27.2,1.2492709159851074,-0.3848746120929718,1.1771130561828613,-0.7626807689666748,0.8439183831214905,-0.43235865235328674 +karman_re200,target,69,27.6,1.3434022665023804,-0.28398430347442627,1.2099987268447876,-0.6181198954582214,0.7165889739990234,-0.328954815864563 +karman_re200,target,70,28.0,1.4033302068710327,-0.12252417206764221,1.2310556173324585,-0.22487710416316986,0.6411141753196716,-0.11926824599504471 +karman_re200,target,71,28.4,1.3939344882965088,0.07318856567144394,1.2232455015182495,0.2725500762462616,0.6574582457542419,0.13305921852588654 +karman_re200,target,72,28.8,1.3156864643096924,0.24328114092350006,1.192237138748169,0.6181144714355469,0.7582288384437561,0.3221103250980377 +karman_re200,target,73,29.2,1.2034400701522827,0.352046400308609,1.1598626375198364,0.7286000847816467,0.893388569355011,0.4066128134727478 +karman_re200,target,74,29.6,1.0835808515548706,0.4149654805660248,1.144446849822998,0.7369455099105835,1.0255122184753418,0.41673344373703003 +karman_re200,target,75,30.0,0.9592962861061096,0.44816094636917114,1.1534961462020874,0.762338399887085,1.1504871845245361,0.41170457005500793 +karman_re200,target,76,30.4,0.8263115882873535,0.4262888431549072,1.182093620300293,0.7560983300209045,1.2647757530212402,0.37389621138572693 +karman_re200,target,77,30.8,0.7027651071548462,0.307496577501297,1.2157526016235352,0.5782379508018494,1.3559303283691406,0.2634206712245941 +karman_re200,target,78,31.2,0.6365786790847778,0.08556787669658661,1.2326802015304565,0.1555790901184082,1.4066190719604492,0.09472870826721191 +karman_re200,target,79,31.6,0.6653527617454529,-0.164507195353508,1.2203428745269775,-0.3349043130874634,1.385197639465332,-0.10114884376525879 +karman_re200,target,80,32.0,0.7741094827651978,-0.3396437168121338,1.187795877456665,-0.6464141607284546,1.2998344898223877,-0.26322799921035767 +karman_re200,target,81,32.4,0.9120847582817078,-0.41132378578186035,1.1587560176849365,-0.732459545135498,1.187364101409912,-0.36400142312049866 +karman_re200,target,82,32.8,1.0448923110961914,-0.4154284596443176,1.148444652557373,-0.7392826676368713,1.0685577392578125,-0.4230922758579254 +karman_re200,target,83,33.2,1.1679906845092773,-0.4089483618736267,1.1604928970336914,-0.7657351493835449,0.9415751695632935,-0.4511360228061676 +karman_re200,target,84,33.6,1.2778379917144775,-0.36101025342941284,1.1910229921340942,-0.743723452091217,0.8063547611236572,-0.41734039783477783 +karman_re200,target,85,34.0,1.3629930019378662,-0.24140924215316772,1.2238798141479492,-0.5290366411209106,0.6866507530212402,-0.2812125086784363 +karman_re200,target,86,34.4,1.4049397706985474,-0.06744836270809174,1.237766981124878,-0.08171763271093369,0.6336483955383301,-0.047089699655771255 +karman_re200,target,87,34.8,1.3749200105667114,0.1254042387008667,1.2221866846084595,0.394331157207489,0.6786559820175171,0.19912414252758026 +karman_re200,target,88,35.2,1.2842307090759277,0.27781161665916443,1.1868088245391846,0.6685442924499512,0.7958654165267944,0.3592066466808319 +karman_re200,target,89,35.6,1.1692156791687012,0.3702027201652527,1.156129240989685,0.732185959815979,0.9328685998916626,0.417723685503006 +karman_re200,target,90,36.0,1.0492522716522217,0.4247138202190399,1.1459386348724365,0.7404694557189941,1.0629712343215942,0.41739413142204285 +karman_re200,target,91,36.4,0.9212132096290588,0.4463908076286316,1.1581095457077026,0.7681281566619873,1.1844614744186401,0.4097919762134552 +karman_re200,target,92,36.8,0.7884170413017273,0.40123608708381653,1.1887091398239136,0.7307322025299072,1.2936245203018188,0.3518857955932617 +karman_re200,target,93,37.2,0.6767986416816711,0.2519320249557495,1.2189278602600098,0.4815022945404053,1.3777084350585938,0.22307921946048737 +karman_re200,target,94,37.6,0.6356155872344971,0.013045644387602806,1.227354645729065,0.012907896190881729,1.4108461141586304,0.04065427929162979 +karman_re200,target,95,38.0,0.6911056637763977,-0.2229473739862442,1.2084569931030273,-0.44817912578582764,1.368830919265747,-0.1531122922897339 +karman_re200,target,96,38.4,0.8121469616889954,-0.36713963747024536,1.1748355627059937,-0.6897163391113281,1.270675539970398,-0.2990820109844208 +karman_re200,target,97,38.8,0.9489498138427734,-0.414856493473053,1.1503894329071045,-0.736060619354248,1.1539769172668457,-0.38533687591552734 +karman_re200,target,98,39.2,1.0796141624450684,-0.41222256422042847,1.1484240293502808,-0.7458163499832153,1.0342999696731567,-0.43638455867767334 +karman_re200,target,99,39.6,1.200491189956665,-0.4015160799026489,1.1675251722335815,-0.7699165344238281,0.9045226573944092,-0.4514789879322052 +karman_re200,target,100,40.0,1.3044353723526,-0.332899272441864,1.202061414718628,-0.7096784114837646,0.7697776556015015,-0.3923875689506531 +karman_re200,target,101,40.4,1.3808265924453735,-0.196457639336586,1.2325818538665771,-0.42201030254364014,0.6632058024406433,-0.22440257668495178 +karman_re200,target,102,40.8,1.4027332067489624,-0.01203743927180767,1.2374500036239624,0.06097717583179474,0.6351749300956726,0.02533131279051304 +karman_re200,target,103,41.2,1.3528311252593994,0.17415672540664673,1.2144583463668823,0.4967536926269531,0.705268919467926,0.25537508726119995 +karman_re200,target,104,41.6,1.2529457807540894,0.30891716480255127,1.1784565448760986,0.7015871405601501,0.8340179920196533,0.38515225052833557 +karman_re200,target,105,42.0,1.136214256286621,0.38808998465538025,1.1524022817611694,0.733381450176239,0.9705920219421387,0.4212205410003662 +karman_re200,target,106,42.4,1.01509428024292,0.4350454807281494,1.1490339040756226,0.7480692267417908,1.0985548496246338,0.4163944721221924 +karman_re200,target,107,42.8,0.8838403820991516,0.4422953724861145,1.1665035486221313,0.7695446014404297,1.217105746269226,0.4012185335159302 +karman_re200,target,108,43.2,0.7518613338470459,0.37033504247665405,1.1983953714370728,0.686951220035553,1.318976640701294,0.3219699561595917 +karman_re200,target,109,43.6,0.6559072732925415,0.1903628408908844,1.224992036819458,0.36448559165000916,1.3930692672729492,0.1764776110649109 +karman_re200,target,110,44.0,0.6423743963241577,-0.05950049310922623,1.225677728652954,-0.13001637160778046,1.4062288999557495,-0.015112684108316898 +karman_re200,target,111,44.4,0.7217737436294556,-0.2755361795425415,1.200250267982483,-0.5421044230461121,1.3450907468795776,-0.19981123507022858 +karman_re200,target,112,44.8,0.8519049286842346,-0.3897359073162079,1.1666733026504517,-0.7153037190437317,1.2386655807495117,-0.327455073595047 +karman_re200,target,113,45.2,0.9864875078201294,-0.4167650640010834,1.1460645198822021,-0.7359924912452698,1.1197009086608887,-0.40109962224960327 +karman_re200,target,114,45.6,1.1141430139541626,-0.4120756983757019,1.1496491432189941,-0.7537432312965393,0.9980176687240601,-0.4440052807331085 +karman_re200,target,115,46.0,1.2325693368911743,-0.39124390482902527,1.1740174293518066,-0.768115758895874,0.866489589214325,-0.44290027022361755 +karman_re200,target,116,46.4,1.3306312561035156,-0.30162638425827026,1.209136962890625,-0.6570490002632141,0.735444962978363,-0.3558446764945984 +karman_re200,target,117,46.8,1.3963274955749512,-0.14895707368850708,1.2337747812271118,-0.2989790439605713,0.6465133428573608,-0.15936428308486938 +karman_re200,target,118,47.2,1.397567868232727,0.043684858828783035,1.230000376701355,0.1994621455669403,0.64606773853302,0.09534949064254761 +karman_re200,target,119,47.6,1.3285975456237793,0.22025558352470398,1.2010562419891357,0.5803675055503845,0.7367409467697144,0.300919771194458 +karman_re200,target,120,48.0,1.2214479446411133,0.33809468150138855,1.167861819267273,0.7221003770828247,0.871979296207428,0.4010962247848511 +karman_re200,target,121,48.4,1.1036977767944336,0.4065929651260376,1.14950692653656,0.7354413866996765,1.007184624671936,0.4189078211784363 +karman_re200,target,122,48.8,0.9798921346664429,0.44534724950790405,1.153965711593628,0.7575238943099976,1.1327142715454102,0.413248747587204 +karman_re200,target,123,49.2,0.8461753129959106,0.4345444142818451,1.1786075830459595,0.7631057500839233,1.2477996349334717,0.38457220792770386 +karman_re200,target,124,49.6,0.7178316712379456,0.33213719725608826,1.2121028900146484,0.6210676431655884,1.341598391532898,0.2846449613571167 +karman_re200,target,125,50.0,0.6406057476997375,0.12271616607904434,1.2334461212158203,0.2306842803955078,1.4012172222137451,0.1243431493639946 +karman_re200,target,126,50.4,0.6562661528587341,-0.13076452910900116,1.2264307737350464,-0.2665708661079407,1.3933212757110596,-0.07035040110349655 +karman_re200,target,127,50.8,0.7566630840301514,-0.321723073720932,1.1950409412384033,-0.6147140264511108,1.3162126541137695,-0.24040989577770233 +karman_re200,target,128,51.2,0.8919445276260376,-0.4074344336986542,1.1616325378417969,-0.7274600863456726,1.2045637369155884,-0.349636435508728 +karman_re200,target,129,51.6,1.0246460437774658,-0.41794708371162415,1.1454763412475586,-0.7362310290336609,1.0853352546691895,-0.4129646420478821 +karman_re200,target,130,52.0,1.1488877534866333,-0.4128205478191376,1.1526776552200317,-0.7616804242134094,0.9604882001876831,-0.44662079215049744 +karman_re200,target,131,52.4,1.2634692192077637,-0.3759050667285919,1.1803197860717773,-0.756989598274231,0.8278253674507141,-0.42583563923835754 +karman_re200,target,132,52.8,1.355635166168213,-0.2663039267063141,1.2136964797973633,-0.5828499794006348,0.7045143246650696,-0.30893653631210327 +karman_re200,target,133,53.2,1.4072842597961426,-0.09793893992900848,1.2304173707962036,-0.16296058893203735,0.6371945738792419,-0.08887189626693726 +karman_re200,target,134,53.6,1.3872967958450317,0.09859559684991837,1.2189010381698608,0.3287924528121948,0.6648901104927063,0.16076523065567017 +karman_re200,target,135,54.0,1.302126407623291,0.2620323896408081,1.1867619752883911,0.6442092061042786,0.7724679708480835,0.3370109796524048 +karman_re200,target,136,54.4,1.188866376876831,0.36372295022010803,1.157435417175293,0.7326161861419678,0.9094144701957703,0.40996918082237244 +karman_re200,target,137,54.8,1.0704314708709717,0.4231930673122406,1.147752285003662,0.7393374443054199,1.0427013635635376,0.4147869050502777 +karman_re200,target,138,55.2,0.9437413215637207,0.4518183171749115,1.1601115465164185,0.7655473351478577,1.1661343574523926,0.40856683254241943 +karman_re200,target,139,55.6,0.8084142804145813,0.4193006157875061,1.1908050775527954,0.7451673150062561,1.276200771331787,0.36174896359443665 +karman_re200,target,140,56.0,0.688402533531189,0.2846880257129669,1.2246158123016357,0.5341458320617676,1.3621547222137451,0.24312877655029297 +karman_re200,target,141,56.4,0.6332380771636963,0.05117632448673248,1.2384333610534668,0.08915121108293533,1.404200792312622,0.06996676325798035 +karman_re200,target,142,56.8,0.6767095327377319,-0.19600890576839447,1.22318696975708,-0.3882351219654083,1.3751808404922485,-0.12272565066814423 +karman_re200,target,143,57.2,0.7937718033790588,-0.3579596281051636,1.188218593597412,-0.6661668419837952,1.285703182220459,-0.2758375406265259 +karman_re200,target,144,57.6,0.9308686852455139,-0.41777199506759644,1.1570698022842407,-0.7319389581680298,1.1709305047988892,-0.36897268891334534 +karman_re200,target,145,58.0,1.061447024345398,-0.4177234172821045,1.1466636657714844,-0.74009108543396,1.0513734817504883,-0.4239741265773773 +karman_re200,target,146,58.4,1.1830229759216309,-0.4102095663547516,1.1583943367004395,-0.7677927613258362,0.9233756065368652,-0.4463076889514923 +karman_re200,target,147,58.8,1.2916184663772583,-0.3533700704574585,1.1880011558532715,-0.7322458624839783,0.789781928062439,-0.4023807942867279 +karman_re200,target,148,59.2,1.376448392868042,-0.22549906373023987,1.2187143564224243,-0.4868471622467041,0.6779658794403076,-0.2546255588531494 +karman_re200,target,149,59.6,1.4108374118804932,-0.043760787695646286,1.2276999950408936,-0.020247695967555046,0.6357743740081787,-0.016458934172987938 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_dtw_convergence.csv new file mode 100644 index 0000000..e1da289 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re400,ppo,60,24.0,30,0.8554013714297778,1,0.8993882934252421,0.9251266668861111,0.6953843593597412,0.7686832430462043,0.9039550801118215,0.9398705857495467 +karman_re400,ppo,90,36.0,30,0.8435603003638487,-4,0.9061231970787048,0.9155622874076168,0.710550316174825,0.711283383021752,0.8914291163285574,0.9264135021716356 +karman_re400,ppo,120,48.0,30,0.8420047512071002,6,0.870624695221583,0.9039488870650529,0.7038690725962321,0.7408477207024893,0.9115707675615946,0.9211673640956481 +karman_re400,ppo,150,60.0,30,0.847732746360513,0,0.8965044260025025,0.9240903250096987,0.7042831738789876,0.7416566153367361,0.897710774342219,0.9221511635929346 +karman_re400,ppo,180,72.0,30,0.8456360799570878,-4,0.908297351996104,0.9171760342394313,0.7122819066047669,0.7120686451594035,0.8929673790931701,0.9310251626496514 +karman_re400,ppo,210,84.0,30,0.8443813536057455,5,0.8630966027577718,0.9177524871813754,0.6974899113178253,0.7628279626369476,0.8999912977218628,0.9251298600186905 +karman_re400,ppo,240,96.0,30,0.8473503823573184,0,0.9009980956713358,0.9172203725669533,0.7061897993087769,0.7248115790386995,0.9023867468039195,0.9324957007542253 +karman_re400,ppo,270,108.0,30,0.8393689518251146,-5,0.9102033217748007,0.8957626580571135,0.7150019228458404,0.6831258680671454,0.9077232499917348,0.9243966902140528 +karman_re400,ppo,300,120.0,30,0.8463598159141839,5,0.8623017946879069,0.9148611814404527,0.6969877501328786,0.7725614190101624,0.9007347206274668,0.9307120295862357 +karman_re400,ppo,330,132.0,30,0.8421179923966218,0,0.8996961911519369,0.9147811344591901,0.7079709092775981,0.7103114952643712,0.9041958491007487,0.915752375125885 +karman_re400,ppo,360,144.0,30,0.8425539632431335,-5,0.9083549400170644,0.9039635069047411,0.7134284814198812,0.7003119945526123,0.9058790028095245,0.9233858537549774 +karman_re400,ppo,390,156.0,30,0.8455748141588023,5,0.8635703841845195,0.9209625990440449,0.6968312303225199,0.7627882398664951,0.9017260015010834,0.9275704300341507 +karman_re400,ppo,400,160.0,30,0.8453777189469999,-2,0.8961168130238851,0.9254036091888944,0.7089218576749166,0.7418246450523536,0.8856405993302663,0.9143587894116839 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_long.csv new file mode 100644 index 0000000..5a10fda --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,ppo,0,0.0,velocity,upper_ux,1.0697855949401855 +karman_re400,ppo,0,0.0,velocity,upper_uy,0.23988139629364014 +karman_re400,ppo,0,0.0,velocity,center_ux,0.9539531469345093 +karman_re400,ppo,0,0.0,velocity,center_uy,0.35115817189216614 +karman_re400,ppo,0,0.0,velocity,lower_ux,0.999663770198822 +karman_re400,ppo,0,0.0,velocity,lower_uy,0.26641833782196045 +karman_re400,ppo,1,0.4,velocity,upper_ux,1.0283117294311523 +karman_re400,ppo,1,0.4,velocity,upper_uy,0.2772347331047058 +karman_re400,ppo,1,0.4,velocity,center_ux,0.9600915312767029 +karman_re400,ppo,1,0.4,velocity,center_uy,0.38422682881355286 +karman_re400,ppo,1,0.4,velocity,lower_ux,1.0439112186431885 +karman_re400,ppo,1,0.4,velocity,lower_uy,0.2980579137802124 +karman_re400,ppo,2,0.8,velocity,upper_ux,0.9860080480575562 +karman_re400,ppo,2,0.8,velocity,upper_uy,0.2841883897781372 +karman_re400,ppo,2,0.8,velocity,center_ux,0.9655519127845764 +karman_re400,ppo,2,0.8,velocity,center_uy,0.3812991976737976 +karman_re400,ppo,2,0.8,velocity,lower_ux,1.0865027904510498 +karman_re400,ppo,2,0.8,velocity,lower_uy,0.2998688220977783 +karman_re400,ppo,3,1.2,velocity,upper_ux,0.9506587386131287 +karman_re400,ppo,3,1.2,velocity,upper_uy,0.2590928375720978 +karman_re400,ppo,3,1.2,velocity,center_ux,0.9673001766204834 +karman_re400,ppo,3,1.2,velocity,center_uy,0.3422739505767822 +karman_re400,ppo,3,1.2,velocity,lower_ux,1.127550482749939 +karman_re400,ppo,3,1.2,velocity,lower_uy,0.28045231103897095 +karman_re400,ppo,4,1.6,velocity,upper_ux,0.925518810749054 +karman_re400,ppo,4,1.6,velocity,upper_uy,0.2013799250125885 +karman_re400,ppo,4,1.6,velocity,center_ux,0.9585477709770203 +karman_re400,ppo,4,1.6,velocity,center_uy,0.2632913887500763 +karman_re400,ppo,4,1.6,velocity,lower_ux,1.1658846139907837 +karman_re400,ppo,4,1.6,velocity,lower_uy,0.24667905271053314 +karman_re400,ppo,5,2.0,velocity,upper_ux,0.9112507700920105 +karman_re400,ppo,5,2.0,velocity,upper_uy,0.11316239088773727 +karman_re400,ppo,5,2.0,velocity,center_ux,0.9451350569725037 +karman_re400,ppo,5,2.0,velocity,center_uy,0.13824059069156647 +karman_re400,ppo,5,2.0,velocity,lower_ux,1.1928470134735107 +karman_re400,ppo,5,2.0,velocity,lower_uy,0.18309150636196136 +karman_re400,ppo,6,2.4,velocity,upper_ux,0.9052215814590454 +karman_re400,ppo,6,2.4,velocity,upper_uy,-0.003088129684329033 +karman_re400,ppo,6,2.4,velocity,center_ux,0.9422567486763 +karman_re400,ppo,6,2.4,velocity,center_uy,-0.004773133434355259 +karman_re400,ppo,6,2.4,velocity,lower_ux,1.190119981765747 +karman_re400,ppo,6,2.4,velocity,lower_uy,0.07393243163824081 +karman_re400,ppo,7,2.8,velocity,upper_ux,0.911203920841217 +karman_re400,ppo,7,2.8,velocity,upper_uy,-0.11771843582391739 +karman_re400,ppo,7,2.8,velocity,center_ux,0.9469475746154785 +karman_re400,ppo,7,2.8,velocity,center_uy,-0.13229811191558838 +karman_re400,ppo,7,2.8,velocity,lower_ux,1.1549681425094604 +karman_re400,ppo,7,2.8,velocity,lower_uy,-0.05336739122867584 +karman_re400,ppo,8,3.2,velocity,upper_ux,0.9361105561256409 +karman_re400,ppo,8,3.2,velocity,upper_uy,-0.19423021376132965 +karman_re400,ppo,8,3.2,velocity,center_ux,0.9472204446792603 +karman_re400,ppo,8,3.2,velocity,center_uy,-0.24158990383148193 +karman_re400,ppo,8,3.2,velocity,lower_ux,1.1178326606750488 +karman_re400,ppo,8,3.2,velocity,lower_uy,-0.14621402323246002 +karman_re400,ppo,9,3.6,velocity,upper_ux,0.9716002941131592 +karman_re400,ppo,9,3.6,velocity,upper_uy,-0.24438290297985077 +karman_re400,ppo,9,3.6,velocity,center_ux,0.9471539855003357 +karman_re400,ppo,9,3.6,velocity,center_uy,-0.31341803073883057 +karman_re400,ppo,9,3.6,velocity,lower_ux,1.0855125188827515 +karman_re400,ppo,9,3.6,velocity,lower_uy,-0.2039393186569214 +karman_re400,ppo,10,4.0,velocity,upper_ux,1.0092700719833374 +karman_re400,ppo,10,4.0,velocity,upper_uy,-0.2782403528690338 +karman_re400,ppo,10,4.0,velocity,center_ux,0.9487602114677429 +karman_re400,ppo,10,4.0,velocity,center_uy,-0.34454771876335144 +karman_re400,ppo,10,4.0,velocity,lower_ux,1.0485584735870361 +karman_re400,ppo,10,4.0,velocity,lower_uy,-0.23593451082706451 +karman_re400,ppo,11,4.4,velocity,upper_ux,1.0467971563339233 +karman_re400,ppo,11,4.4,velocity,upper_uy,-0.28618842363357544 +karman_re400,ppo,11,4.4,velocity,center_ux,0.9502102136611938 +karman_re400,ppo,11,4.4,velocity,center_uy,-0.34226033091545105 +karman_re400,ppo,11,4.4,velocity,lower_ux,1.0126793384552002 +karman_re400,ppo,11,4.4,velocity,lower_uy,-0.23885458707809448 +karman_re400,ppo,12,4.8,velocity,upper_ux,1.0820688009262085 +karman_re400,ppo,12,4.8,velocity,upper_uy,-0.26945897936820984 +karman_re400,ppo,12,4.8,velocity,center_ux,0.9484195113182068 +karman_re400,ppo,12,4.8,velocity,center_uy,-0.30369824171066284 +karman_re400,ppo,12,4.8,velocity,lower_ux,0.983634889125824 +karman_re400,ppo,12,4.8,velocity,lower_uy,-0.2081567943096161 +karman_re400,ppo,13,5.2,velocity,upper_ux,1.1141557693481445 +karman_re400,ppo,13,5.2,velocity,upper_uy,-0.24151597917079926 +karman_re400,ppo,13,5.2,velocity,center_ux,0.9348034858703613 +karman_re400,ppo,13,5.2,velocity,center_uy,-0.23187506198883057 +karman_re400,ppo,13,5.2,velocity,lower_ux,0.9612672924995422 +karman_re400,ppo,13,5.2,velocity,lower_uy,-0.1424875408411026 +karman_re400,ppo,14,5.6,velocity,upper_ux,1.141162633895874 +karman_re400,ppo,14,5.6,velocity,upper_uy,-0.2001975178718567 +karman_re400,ppo,14,5.6,velocity,center_ux,0.9075438976287842 +karman_re400,ppo,14,5.6,velocity,center_uy,-0.12461236864328384 +karman_re400,ppo,14,5.6,velocity,lower_ux,0.9414620399475098 +karman_re400,ppo,14,5.6,velocity,lower_uy,-0.03781120106577873 +karman_re400,ppo,15,6.0,velocity,upper_ux,1.1538583040237427 +karman_re400,ppo,15,6.0,velocity,upper_uy,-0.13663311302661896 +karman_re400,ppo,15,6.0,velocity,center_ux,0.8749247193336487 +karman_re400,ppo,15,6.0,velocity,center_uy,0.0073355333879590034 +karman_re400,ppo,15,6.0,velocity,lower_ux,0.9256270527839661 +karman_re400,ppo,15,6.0,velocity,lower_uy,0.08948411792516708 +karman_re400,ppo,16,6.4,velocity,upper_ux,1.1417747735977173 +karman_re400,ppo,16,6.4,velocity,upper_uy,-0.050496891140937805 +karman_re400,ppo,16,6.4,velocity,center_ux,0.844860315322876 +karman_re400,ppo,16,6.4,velocity,center_uy,0.13949455320835114 +karman_re400,ppo,16,6.4,velocity,lower_ux,0.9302399158477783 +karman_re400,ppo,16,6.4,velocity,lower_uy,0.1945352554321289 +karman_re400,ppo,17,6.8,velocity,upper_ux,1.1044647693634033 +karman_re400,ppo,17,6.8,velocity,upper_uy,0.04318239167332649 +karman_re400,ppo,17,6.8,velocity,center_ux,0.8136294484138489 +karman_re400,ppo,17,6.8,velocity,center_uy,0.2575685679912567 +karman_re400,ppo,17,6.8,velocity,lower_ux,0.9553070068359375 +karman_re400,ppo,17,6.8,velocity,lower_uy,0.2742341160774231 +karman_re400,ppo,18,7.2,velocity,upper_ux,1.0549860000610352 +karman_re400,ppo,18,7.2,velocity,upper_uy,0.1197994127869606 +karman_re400,ppo,18,7.2,velocity,center_ux,0.7812243700027466 +karman_re400,ppo,18,7.2,velocity,center_uy,0.34188008308410645 +karman_re400,ppo,18,7.2,velocity,lower_ux,0.9884292483329773 +karman_re400,ppo,18,7.2,velocity,lower_uy,0.34178662300109863 +karman_re400,ppo,19,7.6,velocity,upper_ux,1.0078696012496948 +karman_re400,ppo,19,7.6,velocity,upper_uy,0.1669115424156189 +karman_re400,ppo,19,7.6,velocity,center_ux,0.7477695345878601 +karman_re400,ppo,19,7.6,velocity,center_uy,0.38223111629486084 +karman_re400,ppo,19,7.6,velocity,lower_ux,1.0243253707885742 +karman_re400,ppo,19,7.6,velocity,lower_uy,0.38713452219963074 +karman_re400,ppo,20,8.0,velocity,upper_ux,0.9705017805099487 +karman_re400,ppo,20,8.0,velocity,upper_uy,0.18053117394447327 +karman_re400,ppo,20,8.0,velocity,center_ux,0.7090480923652649 +karman_re400,ppo,20,8.0,velocity,center_uy,0.3724246621131897 +karman_re400,ppo,20,8.0,velocity,lower_ux,1.062427282333374 +karman_re400,ppo,20,8.0,velocity,lower_uy,0.41163918375968933 +karman_re400,ppo,21,8.4,velocity,upper_ux,0.9465820789337158 +karman_re400,ppo,21,8.4,velocity,upper_uy,0.15902936458587646 +karman_re400,ppo,21,8.4,velocity,center_ux,0.6599252223968506 +karman_re400,ppo,21,8.4,velocity,center_uy,0.3089146018028259 +karman_re400,ppo,21,8.4,velocity,lower_ux,1.1054385900497437 +karman_re400,ppo,21,8.4,velocity,lower_uy,0.42610880732536316 +karman_re400,ppo,22,8.8,velocity,upper_ux,0.9327890872955322 +karman_re400,ppo,22,8.8,velocity,upper_uy,0.09718307852745056 +karman_re400,ppo,22,8.8,velocity,center_ux,0.6007691025733948 +karman_re400,ppo,22,8.8,velocity,center_uy,0.18555286526679993 +karman_re400,ppo,22,8.8,velocity,lower_ux,1.1593154668807983 +karman_re400,ppo,22,8.8,velocity,lower_uy,0.39580798149108887 +karman_re400,ppo,23,9.2,velocity,upper_ux,0.9180921316146851 +karman_re400,ppo,23,9.2,velocity,upper_uy,-0.008913089521229267 +karman_re400,ppo,23,9.2,velocity,center_ux,0.5540997385978699 +karman_re400,ppo,23,9.2,velocity,center_uy,-0.007933571003377438 +karman_re400,ppo,23,9.2,velocity,lower_ux,1.1947687864303589 +karman_re400,ppo,23,9.2,velocity,lower_uy,0.19649219512939453 +karman_re400,ppo,24,9.6,velocity,upper_ux,0.9134219288825989 +karman_re400,ppo,24,9.6,velocity,upper_uy,-0.12994346022605896 +karman_re400,ppo,24,9.6,velocity,center_ux,0.5528923869132996 +karman_re400,ppo,24,9.6,velocity,center_uy,-0.23651009798049927 +karman_re400,ppo,24,9.6,velocity,lower_ux,1.1562659740447998 +karman_re400,ppo,24,9.6,velocity,lower_uy,-0.17199823260307312 +karman_re400,ppo,25,10.0,velocity,upper_ux,0.9364515542984009 +karman_re400,ppo,25,10.0,velocity,upper_uy,-0.23026083409786224 +karman_re400,ppo,25,10.0,velocity,center_ux,0.6056062579154968 +karman_re400,ppo,25,10.0,velocity,center_uy,-0.4215051233768463 +karman_re400,ppo,25,10.0,velocity,lower_ux,1.0470728874206543 +karman_re400,ppo,25,10.0,velocity,lower_uy,-0.4949010908603668 +karman_re400,ppo,26,10.4,velocity,upper_ux,0.9797163605690002 +karman_re400,ppo,26,10.4,velocity,upper_uy,-0.3128501772880554 +karman_re400,ppo,26,10.4,velocity,center_ux,0.6750136017799377 +karman_re400,ppo,26,10.4,velocity,center_uy,-0.545356810092926 +karman_re400,ppo,26,10.4,velocity,lower_ux,0.9254534840583801 +karman_re400,ppo,26,10.4,velocity,lower_uy,-0.6337651610374451 +karman_re400,ppo,27,10.8,velocity,upper_ux,1.0360888242721558 +karman_re400,ppo,27,10.8,velocity,upper_uy,-0.3726045489311218 +karman_re400,ppo,27,10.8,velocity,center_ux,0.7304676175117493 +karman_re400,ppo,27,10.8,velocity,center_uy,-0.6331583857536316 +karman_re400,ppo,27,10.8,velocity,lower_ux,0.8280915021896362 +karman_re400,ppo,27,10.8,velocity,lower_uy,-0.6430702805519104 +karman_re400,ppo,28,11.2,velocity,upper_ux,1.1027528047561646 +karman_re400,ppo,28,11.2,velocity,upper_uy,-0.39126670360565186 +karman_re400,ppo,28,11.2,velocity,center_ux,0.7749141454696655 +karman_re400,ppo,28,11.2,velocity,center_uy,-0.6789815425872803 +karman_re400,ppo,28,11.2,velocity,lower_ux,0.7518973350524902 +karman_re400,ppo,28,11.2,velocity,lower_uy,-0.6081429123878479 +karman_re400,ppo,29,11.6,velocity,upper_ux,1.1733202934265137 +karman_re400,ppo,29,11.6,velocity,upper_uy,-0.3689994812011719 +karman_re400,ppo,29,11.6,velocity,center_ux,0.808438777923584 +karman_re400,ppo,29,11.6,velocity,center_uy,-0.6744527220726013 +karman_re400,ppo,29,11.6,velocity,lower_ux,0.6849836707115173 +karman_re400,ppo,29,11.6,velocity,lower_uy,-0.5404576659202576 +karman_re400,ppo,30,12.0,velocity,upper_ux,1.2267706394195557 +karman_re400,ppo,30,12.0,velocity,upper_uy,-0.2832808792591095 +karman_re400,ppo,30,12.0,velocity,center_ux,0.8341386914253235 +karman_re400,ppo,30,12.0,velocity,center_uy,-0.5746832489967346 +karman_re400,ppo,30,12.0,velocity,lower_ux,0.6280498504638672 +karman_re400,ppo,30,12.0,velocity,lower_uy,-0.42102497816085815 +karman_re400,ppo,31,12.4,velocity,upper_ux,1.2288951873779297 +karman_re400,ppo,31,12.4,velocity,upper_uy,-0.11134698987007141 +karman_re400,ppo,31,12.4,velocity,center_ux,0.8663381338119507 +karman_re400,ppo,31,12.4,velocity,center_uy,-0.28179362416267395 +karman_re400,ppo,31,12.4,velocity,lower_ux,0.5929781198501587 +karman_re400,ppo,31,12.4,velocity,lower_uy,-0.24205775558948517 +karman_re400,ppo,32,12.8,velocity,upper_ux,1.1925556659698486 +karman_re400,ppo,32,12.8,velocity,upper_uy,0.07214398682117462 +karman_re400,ppo,32,12.8,velocity,center_ux,0.8987957835197449 +karman_re400,ppo,32,12.8,velocity,center_uy,0.14899086952209473 +karman_re400,ppo,32,12.8,velocity,lower_ux,0.5961896181106567 +karman_re400,ppo,32,12.8,velocity,lower_uy,-0.017976179718971252 +karman_re400,ppo,33,13.2,velocity,upper_ux,1.1471714973449707 +karman_re400,ppo,33,13.2,velocity,upper_uy,0.2030923217535019 +karman_re400,ppo,33,13.2,velocity,center_ux,0.9185618758201599 +karman_re400,ppo,33,13.2,velocity,center_uy,0.5139608383178711 +karman_re400,ppo,33,13.2,velocity,lower_ux,0.650165319442749 +karman_re400,ppo,33,13.2,velocity,lower_uy,0.19673259556293488 +karman_re400,ppo,34,13.6,velocity,upper_ux,1.074751377105713 +karman_re400,ppo,34,13.6,velocity,upper_uy,0.30717194080352783 +karman_re400,ppo,34,13.6,velocity,center_ux,0.9239153265953064 +karman_re400,ppo,34,13.6,velocity,center_uy,0.6979742646217346 +karman_re400,ppo,34,13.6,velocity,lower_ux,0.7502144575119019 +karman_re400,ppo,34,13.6,velocity,lower_uy,0.33087849617004395 +karman_re400,ppo,35,14.0,velocity,upper_ux,0.9807812571525574 +karman_re400,ppo,35,14.0,velocity,upper_uy,0.38974830508232117 +karman_re400,ppo,35,14.0,velocity,center_ux,0.9230201244354248 +karman_re400,ppo,35,14.0,velocity,center_uy,0.7464232444763184 +karman_re400,ppo,35,14.0,velocity,lower_ux,0.8635976910591125 +karman_re400,ppo,35,14.0,velocity,lower_uy,0.3980512320995331 +karman_re400,ppo,36,14.4,velocity,upper_ux,0.8839812278747559 +karman_re400,ppo,36,14.4,velocity,upper_uy,0.43783485889434814 +karman_re400,ppo,36,14.4,velocity,center_ux,0.9244820475578308 +karman_re400,ppo,36,14.4,velocity,center_uy,0.7695698738098145 +karman_re400,ppo,36,14.4,velocity,lower_ux,0.9721357822418213 +karman_re400,ppo,36,14.4,velocity,lower_uy,0.4402565658092499 +karman_re400,ppo,37,14.8,velocity,upper_ux,0.7898731827735901 +karman_re400,ppo,37,14.8,velocity,upper_uy,0.4385194480419159 +karman_re400,ppo,37,14.8,velocity,center_ux,0.9249467253684998 +karman_re400,ppo,37,14.8,velocity,center_uy,0.7882203459739685 +karman_re400,ppo,37,14.8,velocity,lower_ux,1.0756932497024536 +karman_re400,ppo,37,14.8,velocity,lower_uy,0.4473477303981781 +karman_re400,ppo,38,15.2,velocity,upper_ux,0.7026240825653076 +karman_re400,ppo,38,15.2,velocity,upper_uy,0.37783145904541016 +karman_re400,ppo,38,15.2,velocity,center_ux,0.9229143261909485 +karman_re400,ppo,38,15.2,velocity,center_uy,0.7688121795654297 +karman_re400,ppo,38,15.2,velocity,lower_ux,1.1707611083984375 +karman_re400,ppo,38,15.2,velocity,lower_uy,0.3946337103843689 +karman_re400,ppo,39,15.6,velocity,upper_ux,0.6342210173606873 +karman_re400,ppo,39,15.6,velocity,upper_uy,0.24846887588500977 +karman_re400,ppo,39,15.6,velocity,center_ux,0.9314842224121094 +karman_re400,ppo,39,15.6,velocity,center_uy,0.5585386753082275 +karman_re400,ppo,39,15.6,velocity,lower_ux,1.237274408340454 +karman_re400,ppo,39,15.6,velocity,lower_uy,0.26681065559387207 +karman_re400,ppo,40,16.0,velocity,upper_ux,0.6061009764671326 +karman_re400,ppo,40,16.0,velocity,upper_uy,0.05979825556278229 +karman_re400,ppo,40,16.0,velocity,center_ux,0.9613258838653564 +karman_re400,ppo,40,16.0,velocity,center_uy,0.07067795097827911 +karman_re400,ppo,40,16.0,velocity,lower_ux,1.235447645187378 +karman_re400,ppo,40,16.0,velocity,lower_uy,0.06922449171543121 +karman_re400,ppo,41,16.4,velocity,upper_ux,0.6412580013275146 +karman_re400,ppo,41,16.4,velocity,upper_uy,-0.13407522439956665 +karman_re400,ppo,41,16.4,velocity,center_ux,0.9836573600769043 +karman_re400,ppo,41,16.4,velocity,center_uy,-0.4039073586463928 +karman_re400,ppo,41,16.4,velocity,lower_ux,1.1882108449935913 +karman_re400,ppo,41,16.4,velocity,lower_uy,-0.09873168915510178 +karman_re400,ppo,42,16.8,velocity,upper_ux,0.7362985014915466 +karman_re400,ppo,42,16.8,velocity,upper_uy,-0.262495219707489 +karman_re400,ppo,42,16.8,velocity,center_ux,0.983414888381958 +karman_re400,ppo,42,16.8,velocity,center_uy,-0.6314606666564941 +karman_re400,ppo,42,16.8,velocity,lower_ux,1.1262584924697876 +karman_re400,ppo,42,16.8,velocity,lower_uy,-0.2087736874818802 +karman_re400,ppo,43,17.2,velocity,upper_ux,0.8429701924324036 +karman_re400,ppo,43,17.2,velocity,upper_uy,-0.34552061557769775 +karman_re400,ppo,43,17.2,velocity,center_ux,0.9731826186180115 +karman_re400,ppo,43,17.2,velocity,center_uy,-0.6704360842704773 +karman_re400,ppo,43,17.2,velocity,lower_ux,1.040305495262146 +karman_re400,ppo,43,17.2,velocity,lower_uy,-0.3025784492492676 +karman_re400,ppo,44,17.6,velocity,upper_ux,0.9414170980453491 +karman_re400,ppo,44,17.6,velocity,upper_uy,-0.4074585437774658 +karman_re400,ppo,44,17.6,velocity,center_ux,0.9716069102287292 +karman_re400,ppo,44,17.6,velocity,center_uy,-0.6831996440887451 +karman_re400,ppo,44,17.6,velocity,lower_ux,0.9452003240585327 +karman_re400,ppo,44,17.6,velocity,lower_uy,-0.3772248923778534 +karman_re400,ppo,45,18.0,velocity,upper_ux,1.0362814664840698 +karman_re400,ppo,45,18.0,velocity,upper_uy,-0.4417150616645813 +karman_re400,ppo,45,18.0,velocity,center_ux,0.9783148169517517 +karman_re400,ppo,45,18.0,velocity,center_uy,-0.7030138373374939 +karman_re400,ppo,45,18.0,velocity,lower_ux,0.8530290126800537 +karman_re400,ppo,45,18.0,velocity,lower_uy,-0.4143136143684387 +karman_re400,ppo,46,18.4,velocity,upper_ux,1.1236233711242676 +karman_re400,ppo,46,18.4,velocity,upper_uy,-0.4361841678619385 +karman_re400,ppo,46,18.4,velocity,center_ux,0.9881283640861511 +karman_re400,ppo,46,18.4,velocity,center_uy,-0.7034168243408203 +karman_re400,ppo,46,18.4,velocity,lower_ux,0.7626779675483704 +karman_re400,ppo,46,18.4,velocity,lower_uy,-0.4003148674964905 +karman_re400,ppo,47,18.8,velocity,upper_ux,1.1985257863998413 +karman_re400,ppo,47,18.8,velocity,upper_uy,-0.38288214802742004 +karman_re400,ppo,47,18.8,velocity,center_ux,1.0006252527236938 +karman_re400,ppo,47,18.8,velocity,center_uy,-0.6517385840415955 +karman_re400,ppo,47,18.8,velocity,lower_ux,0.6773797869682312 +karman_re400,ppo,47,18.8,velocity,lower_uy,-0.32292354106903076 +karman_re400,ppo,48,19.2,velocity,upper_ux,1.2421218156814575 +karman_re400,ppo,48,19.2,velocity,upper_uy,-0.27341321110725403 +karman_re400,ppo,48,19.2,velocity,center_ux,1.0167243480682373 +karman_re400,ppo,48,19.2,velocity,center_uy,-0.41948139667510986 +karman_re400,ppo,48,19.2,velocity,lower_ux,0.6110506653785706 +karman_re400,ppo,48,19.2,velocity,lower_uy,-0.17526714503765106 +karman_re400,ppo,49,19.6,velocity,upper_ux,1.2171835899353027 +karman_re400,ppo,49,19.6,velocity,upper_uy,-0.09804436564445496 +karman_re400,ppo,49,19.6,velocity,center_ux,1.0268574953079224 +karman_re400,ppo,49,19.6,velocity,center_uy,0.025724615901708603 +karman_re400,ppo,49,19.6,velocity,lower_ux,0.5906767249107361 +karman_re400,ppo,49,19.6,velocity,lower_uy,0.023131556808948517 +karman_re400,ppo,50,20.0,velocity,upper_ux,1.1398468017578125 +karman_re400,ppo,50,20.0,velocity,upper_uy,0.07829371094703674 +karman_re400,ppo,50,20.0,velocity,center_ux,1.0149264335632324 +karman_re400,ppo,50,20.0,velocity,center_uy,0.4282722473144531 +karman_re400,ppo,50,20.0,velocity,lower_ux,0.6392368078231812 +karman_re400,ppo,50,20.0,velocity,lower_uy,0.20631559193134308 +karman_re400,ppo,51,20.4,velocity,upper_ux,1.0697579383850098 +karman_re400,ppo,51,20.4,velocity,upper_uy,0.18972735106945038 +karman_re400,ppo,51,20.4,velocity,center_ux,0.984225332736969 +karman_re400,ppo,51,20.4,velocity,center_uy,0.6088835597038269 +karman_re400,ppo,51,20.4,velocity,lower_ux,0.743660569190979 +karman_re400,ppo,51,20.4,velocity,lower_uy,0.3069702088832855 +karman_re400,ppo,52,20.8,velocity,upper_ux,1.0020592212677002 +karman_re400,ppo,52,20.8,velocity,upper_uy,0.26423633098602295 +karman_re400,ppo,52,20.8,velocity,center_ux,0.9548987746238708 +karman_re400,ppo,52,20.8,velocity,center_uy,0.6373371481895447 +karman_re400,ppo,52,20.8,velocity,lower_ux,0.8538997769355774 +karman_re400,ppo,52,20.8,velocity,lower_uy,0.3635883033275604 +karman_re400,ppo,53,21.2,velocity,upper_ux,0.9170098900794983 +karman_re400,ppo,53,21.2,velocity,upper_uy,0.32821422815322876 +karman_re400,ppo,53,21.2,velocity,center_ux,0.9386727213859558 +karman_re400,ppo,53,21.2,velocity,center_uy,0.6580369472503662 +karman_re400,ppo,53,21.2,velocity,lower_ux,0.952259361743927 +karman_re400,ppo,53,21.2,velocity,lower_uy,0.41389578580856323 +karman_re400,ppo,54,21.6,velocity,upper_ux,0.8236914277076721 +karman_re400,ppo,54,21.6,velocity,upper_uy,0.3691445291042328 +karman_re400,ppo,54,21.6,velocity,center_ux,0.9271118640899658 +karman_re400,ppo,54,21.6,velocity,center_uy,0.6948009729385376 +karman_re400,ppo,54,21.6,velocity,lower_ux,1.0460402965545654 +karman_re400,ppo,54,21.6,velocity,lower_uy,0.4492819309234619 +karman_re400,ppo,55,22.0,velocity,upper_ux,0.7348333597183228 +karman_re400,ppo,55,22.0,velocity,upper_uy,0.36809447407722473 +karman_re400,ppo,55,22.0,velocity,center_ux,0.9140084981918335 +karman_re400,ppo,55,22.0,velocity,center_uy,0.7191826701164246 +karman_re400,ppo,55,22.0,velocity,lower_ux,1.1387104988098145 +karman_re400,ppo,55,22.0,velocity,lower_uy,0.44748324155807495 +karman_re400,ppo,56,22.4,velocity,upper_ux,0.6581509113311768 +karman_re400,ppo,56,22.4,velocity,upper_uy,0.31145337224006653 +karman_re400,ppo,56,22.4,velocity,center_ux,0.8941996693611145 +karman_re400,ppo,56,22.4,velocity,center_uy,0.7033726572990417 +karman_re400,ppo,56,22.4,velocity,lower_ux,1.2271640300750732 +karman_re400,ppo,56,22.4,velocity,lower_uy,0.38872432708740234 +karman_re400,ppo,57,22.8,velocity,upper_ux,0.6024361252784729 +karman_re400,ppo,57,22.8,velocity,upper_uy,0.19577337801456451 +karman_re400,ppo,57,22.8,velocity,center_ux,0.8755455017089844 +karman_re400,ppo,57,22.8,velocity,center_uy,0.5024217367172241 +karman_re400,ppo,57,22.8,velocity,lower_ux,1.2856543064117432 +karman_re400,ppo,57,22.8,velocity,lower_uy,0.25467541813850403 +karman_re400,ppo,58,23.2,velocity,upper_ux,0.5858014822006226 +karman_re400,ppo,58,23.2,velocity,upper_uy,0.03450210019946098 +karman_re400,ppo,58,23.2,velocity,center_ux,0.8818448781967163 +karman_re400,ppo,58,23.2,velocity,center_uy,0.03790593519806862 +karman_re400,ppo,58,23.2,velocity,lower_ux,1.2761462926864624 +karman_re400,ppo,58,23.2,velocity,lower_uy,0.054318927228450775 +karman_re400,ppo,59,23.6,velocity,upper_ux,0.6272939443588257 +karman_re400,ppo,59,23.6,velocity,upper_uy,-0.12641501426696777 +karman_re400,ppo,59,23.6,velocity,center_ux,0.9034505486488342 +karman_re400,ppo,59,23.6,velocity,center_uy,-0.41981181502342224 +karman_re400,ppo,59,23.6,velocity,lower_ux,1.2250539064407349 +karman_re400,ppo,59,23.6,velocity,lower_uy,-0.11104857176542282 +karman_re400,ppo,60,24.0,velocity,upper_ux,0.7222524285316467 +karman_re400,ppo,60,24.0,velocity,upper_uy,-0.23360703885555267 +karman_re400,ppo,60,24.0,velocity,center_ux,0.9210032820701599 +karman_re400,ppo,60,24.0,velocity,center_uy,-0.6453066468238831 +karman_re400,ppo,60,24.0,velocity,lower_ux,1.1572970151901245 +karman_re400,ppo,60,24.0,velocity,lower_uy,-0.219077467918396 +karman_re400,ppo,61,24.4,velocity,upper_ux,0.8274843692779541 +karman_re400,ppo,61,24.4,velocity,upper_uy,-0.3124828636646271 +karman_re400,ppo,61,24.4,velocity,center_ux,0.9314430952072144 +karman_re400,ppo,61,24.4,velocity,center_uy,-0.6802943348884583 +karman_re400,ppo,61,24.4,velocity,lower_ux,1.0682692527770996 +karman_re400,ppo,61,24.4,velocity,lower_uy,-0.3116527795791626 +karman_re400,ppo,62,24.8,velocity,upper_ux,0.9232935309410095 +karman_re400,ppo,62,24.8,velocity,upper_uy,-0.38181522488594055 +karman_re400,ppo,62,24.8,velocity,center_ux,0.9438239932060242 +karman_re400,ppo,62,24.8,velocity,center_uy,-0.6836236715316772 +karman_re400,ppo,62,24.8,velocity,lower_ux,0.9724769592285156 +karman_re400,ppo,62,24.8,velocity,lower_uy,-0.38808658719062805 +karman_re400,ppo,63,25.2,velocity,upper_ux,1.0145801305770874 +karman_re400,ppo,63,25.2,velocity,upper_uy,-0.4250245690345764 +karman_re400,ppo,63,25.2,velocity,center_ux,0.9574452042579651 +karman_re400,ppo,63,25.2,velocity,center_uy,-0.7035523056983948 +karman_re400,ppo,63,25.2,velocity,lower_ux,0.8791075944900513 +karman_re400,ppo,63,25.2,velocity,lower_uy,-0.429676353931427 +karman_re400,ppo,64,25.6,velocity,upper_ux,1.0998455286026 +karman_re400,ppo,64,25.6,velocity,upper_uy,-0.430725634098053 +karman_re400,ppo,64,25.6,velocity,center_ux,0.9718039035797119 +karman_re400,ppo,64,25.6,velocity,center_uy,-0.7090639472007751 +karman_re400,ppo,64,25.6,velocity,lower_ux,0.7880091667175293 +karman_re400,ppo,64,25.6,velocity,lower_uy,-0.4228786826133728 +karman_re400,ppo,65,26.0,velocity,upper_ux,1.1741571426391602 +karman_re400,ppo,65,26.0,velocity,upper_uy,-0.3876643478870392 +karman_re400,ppo,65,26.0,velocity,center_ux,0.9882684946060181 +karman_re400,ppo,65,26.0,velocity,center_uy,-0.6701991558074951 +karman_re400,ppo,65,26.0,velocity,lower_ux,0.7006049156188965 +karman_re400,ppo,65,26.0,velocity,lower_uy,-0.35455837845802307 +karman_re400,ppo,66,26.4,velocity,upper_ux,1.224071741104126 +karman_re400,ppo,66,26.4,velocity,upper_uy,-0.2919536530971527 +karman_re400,ppo,66,26.4,velocity,center_ux,1.0100442171096802 +karman_re400,ppo,66,26.4,velocity,center_uy,-0.47865885496139526 +karman_re400,ppo,66,26.4,velocity,lower_ux,0.6296433210372925 +karman_re400,ppo,66,26.4,velocity,lower_uy,-0.2154204249382019 +karman_re400,ppo,67,26.8,velocity,upper_ux,1.2142213582992554 +karman_re400,ppo,67,26.8,velocity,upper_uy,-0.12896084785461426 +karman_re400,ppo,67,26.8,velocity,center_ux,1.028689980506897 +karman_re400,ppo,67,26.8,velocity,center_uy,-0.056236132979393005 +karman_re400,ppo,67,26.8,velocity,lower_ux,0.601508378982544 +karman_re400,ppo,67,26.8,velocity,lower_uy,-0.016937728971242905 +karman_re400,ppo,68,27.2,velocity,upper_ux,1.1431273221969604 +karman_re400,ppo,68,27.2,velocity,upper_uy,0.052187517285346985 +karman_re400,ppo,68,27.2,velocity,center_ux,1.0215376615524292 +karman_re400,ppo,68,27.2,velocity,center_uy,0.373173326253891 +karman_re400,ppo,68,27.2,velocity,lower_ux,0.6394984126091003 +karman_re400,ppo,68,27.2,velocity,lower_uy,0.1798047423362732 +karman_re400,ppo,69,27.6,velocity,upper_ux,1.0689547061920166 +karman_re400,ppo,69,27.6,velocity,upper_uy,0.17608177661895752 +karman_re400,ppo,69,27.6,velocity,center_ux,0.9897641539573669 +karman_re400,ppo,69,27.6,velocity,center_uy,0.5904733538627625 +karman_re400,ppo,69,27.6,velocity,lower_ux,0.7372401356697083 +karman_re400,ppo,69,27.6,velocity,lower_uy,0.29634809494018555 +karman_re400,ppo,70,28.0,velocity,upper_ux,1.0005784034729004 +karman_re400,ppo,70,28.0,velocity,upper_uy,0.25684067606925964 +karman_re400,ppo,70,28.0,velocity,center_ux,0.9571271538734436 +karman_re400,ppo,70,28.0,velocity,center_uy,0.6343925595283508 +karman_re400,ppo,70,28.0,velocity,lower_ux,0.8468551635742188 +karman_re400,ppo,70,28.0,velocity,lower_uy,0.35912373661994934 +karman_re400,ppo,71,28.4,velocity,upper_ux,0.9169908165931702 +karman_re400,ppo,71,28.4,velocity,upper_uy,0.324285089969635 +karman_re400,ppo,71,28.4,velocity,center_ux,0.9385485649108887 +karman_re400,ppo,71,28.4,velocity,center_uy,0.6562961339950562 +karman_re400,ppo,71,28.4,velocity,lower_ux,0.9450122117996216 +karman_re400,ppo,71,28.4,velocity,lower_uy,0.41232916712760925 +karman_re400,ppo,72,28.8,velocity,upper_ux,0.8262069225311279 +karman_re400,ppo,72,28.8,velocity,upper_uy,0.3698241114616394 +karman_re400,ppo,72,28.8,velocity,center_ux,0.9283903241157532 +karman_re400,ppo,72,28.8,velocity,center_uy,0.6940111517906189 +karman_re400,ppo,72,28.8,velocity,lower_ux,1.0402122735977173 +karman_re400,ppo,72,28.8,velocity,lower_uy,0.45051613450050354 +karman_re400,ppo,73,29.2,velocity,upper_ux,0.7390957474708557 +karman_re400,ppo,73,29.2,velocity,upper_uy,0.3742016553878784 +karman_re400,ppo,73,29.2,velocity,center_ux,0.9184997081756592 +karman_re400,ppo,73,29.2,velocity,center_uy,0.7202895283699036 +karman_re400,ppo,73,29.2,velocity,lower_ux,1.1346712112426758 +karman_re400,ppo,73,29.2,velocity,lower_uy,0.4524393081665039 +karman_re400,ppo,74,29.6,velocity,upper_ux,0.6604616641998291 +karman_re400,ppo,74,29.6,velocity,upper_uy,0.3236132562160492 +karman_re400,ppo,74,29.6,velocity,center_ux,0.9010312557220459 +karman_re400,ppo,74,29.6,velocity,center_uy,0.7110967040061951 +karman_re400,ppo,74,29.6,velocity,lower_ux,1.2229642868041992 +karman_re400,ppo,74,29.6,velocity,lower_uy,0.3989078998565674 +karman_re400,ppo,75,30.0,velocity,upper_ux,0.6007806062698364 +karman_re400,ppo,75,30.0,velocity,upper_uy,0.21293489634990692 +karman_re400,ppo,75,30.0,velocity,center_ux,0.8834779262542725 +karman_re400,ppo,75,30.0,velocity,center_uy,0.5348050594329834 +karman_re400,ppo,75,30.0,velocity,lower_ux,1.2834914922714233 +karman_re400,ppo,75,30.0,velocity,lower_uy,0.27276796102523804 +karman_re400,ppo,76,30.4,velocity,upper_ux,0.5781037211418152 +karman_re400,ppo,76,30.4,velocity,upper_uy,0.053711600601673126 +karman_re400,ppo,76,30.4,velocity,center_ux,0.8883855938911438 +karman_re400,ppo,76,30.4,velocity,center_uy,0.0890146791934967 +karman_re400,ppo,76,30.4,velocity,lower_ux,1.2779417037963867 +karman_re400,ppo,76,30.4,velocity,lower_uy,0.07676318287849426 +karman_re400,ppo,77,30.8,velocity,upper_ux,0.6129432916641235 +karman_re400,ppo,77,30.8,velocity,upper_uy,-0.11247286945581436 +karman_re400,ppo,77,30.8,velocity,center_ux,0.9082363843917847 +karman_re400,ppo,77,30.8,velocity,center_uy,-0.3817331790924072 +karman_re400,ppo,77,30.8,velocity,lower_ux,1.2292410135269165 +karman_re400,ppo,77,30.8,velocity,lower_uy,-0.09362699836492538 +karman_re400,ppo,78,31.2,velocity,upper_ux,0.7064066529273987 +karman_re400,ppo,78,31.2,velocity,upper_uy,-0.22781433165073395 +karman_re400,ppo,78,31.2,velocity,center_ux,0.9262031316757202 +karman_re400,ppo,78,31.2,velocity,center_uy,-0.6334933638572693 +karman_re400,ppo,78,31.2,velocity,lower_ux,1.166278600692749 +karman_re400,ppo,78,31.2,velocity,lower_uy,-0.20635925233364105 +karman_re400,ppo,79,31.6,velocity,upper_ux,0.8157665729522705 +karman_re400,ppo,79,31.6,velocity,upper_uy,-0.3054613471031189 +karman_re400,ppo,79,31.6,velocity,center_ux,0.9358099102973938 +karman_re400,ppo,79,31.6,velocity,center_uy,-0.6826447248458862 +karman_re400,ppo,79,31.6,velocity,lower_ux,1.0797408819198608 +karman_re400,ppo,79,31.6,velocity,lower_uy,-0.30193188786506653 +karman_re400,ppo,80,32.0,velocity,upper_ux,0.9130914807319641 +karman_re400,ppo,80,32.0,velocity,upper_uy,-0.37567073106765747 +karman_re400,ppo,80,32.0,velocity,center_ux,0.9457258582115173 +karman_re400,ppo,80,32.0,velocity,center_uy,-0.684734582901001 +karman_re400,ppo,80,32.0,velocity,lower_ux,0.9824248552322388 +karman_re400,ppo,80,32.0,velocity,lower_uy,-0.3824421167373657 +karman_re400,ppo,81,32.4,velocity,upper_ux,1.004876971244812 +karman_re400,ppo,81,32.4,velocity,upper_uy,-0.42113468050956726 +karman_re400,ppo,81,32.4,velocity,center_ux,0.9580942392349243 +karman_re400,ppo,81,32.4,velocity,center_uy,-0.7044098377227783 +karman_re400,ppo,81,32.4,velocity,lower_ux,0.8874421715736389 +karman_re400,ppo,81,32.4,velocity,lower_uy,-0.42846283316612244 +karman_re400,ppo,82,32.8,velocity,upper_ux,1.090876579284668 +karman_re400,ppo,82,32.8,velocity,upper_uy,-0.430540531873703 +karman_re400,ppo,82,32.8,velocity,center_ux,0.9718685150146484 +karman_re400,ppo,82,32.8,velocity,center_uy,-0.7129156589508057 +karman_re400,ppo,82,32.8,velocity,lower_ux,0.794898509979248 +karman_re400,ppo,82,32.8,velocity,lower_uy,-0.42656978964805603 +karman_re400,ppo,83,33.2,velocity,upper_ux,1.1681195497512817 +karman_re400,ppo,83,33.2,velocity,upper_uy,-0.3901364803314209 +karman_re400,ppo,83,33.2,velocity,center_ux,0.9904354214668274 +karman_re400,ppo,83,33.2,velocity,center_uy,-0.6799082159996033 +karman_re400,ppo,83,33.2,velocity,lower_ux,0.7074181437492371 +karman_re400,ppo,83,33.2,velocity,lower_uy,-0.36331698298454285 +karman_re400,ppo,84,33.6,velocity,upper_ux,1.2233071327209473 +karman_re400,ppo,84,33.6,velocity,upper_uy,-0.2974966764450073 +karman_re400,ppo,84,33.6,velocity,center_ux,1.0161117315292358 +karman_re400,ppo,84,33.6,velocity,center_uy,-0.501885175704956 +karman_re400,ppo,84,33.6,velocity,lower_ux,0.6354665160179138 +karman_re400,ppo,84,33.6,velocity,lower_uy,-0.22863805294036865 +karman_re400,ppo,85,34.0,velocity,upper_ux,1.2184443473815918 +karman_re400,ppo,85,34.0,velocity,upper_uy,-0.13842086493968964 +karman_re400,ppo,85,34.0,velocity,center_ux,1.0377541780471802 +karman_re400,ppo,85,34.0,velocity,center_uy,-0.0850655809044838 +karman_re400,ppo,85,34.0,velocity,lower_ux,0.6024790406227112 +karman_re400,ppo,85,34.0,velocity,lower_uy,-0.03135809302330017 +karman_re400,ppo,86,34.4,velocity,upper_ux,1.1486300230026245 +karman_re400,ppo,86,34.4,velocity,upper_uy,0.042463526129722595 +karman_re400,ppo,86,34.4,velocity,center_ux,1.0314220190048218 +karman_re400,ppo,86,34.4,velocity,center_uy,0.3535716235637665 +karman_re400,ppo,86,34.4,velocity,lower_ux,0.6347659826278687 +karman_re400,ppo,86,34.4,velocity,lower_uy,0.16958937048912048 +karman_re400,ppo,87,34.8,velocity,upper_ux,1.0733518600463867 +karman_re400,ppo,87,34.8,velocity,upper_uy,0.1672767996788025 +karman_re400,ppo,87,34.8,velocity,center_ux,0.9974024295806885 +karman_re400,ppo,87,34.8,velocity,center_uy,0.5822980403900146 +karman_re400,ppo,87,34.8,velocity,lower_ux,0.729393482208252 +karman_re400,ppo,87,34.8,velocity,lower_uy,0.2917686402797699 +karman_re400,ppo,88,35.2,velocity,upper_ux,1.0063815116882324 +karman_re400,ppo,88,35.2,velocity,upper_uy,0.2472824603319168 +karman_re400,ppo,88,35.2,velocity,center_ux,0.9615716338157654 +karman_re400,ppo,88,35.2,velocity,center_uy,0.6298794150352478 +karman_re400,ppo,88,35.2,velocity,lower_ux,0.8396693468093872 +karman_re400,ppo,88,35.2,velocity,lower_uy,0.35557377338409424 +karman_re400,ppo,89,35.6,velocity,upper_ux,0.9258785843849182 +karman_re400,ppo,89,35.6,velocity,upper_uy,0.31451261043548584 +karman_re400,ppo,89,35.6,velocity,center_ux,0.9424970746040344 +karman_re400,ppo,89,35.6,velocity,center_uy,0.6499476432800293 +karman_re400,ppo,89,35.6,velocity,lower_ux,0.940439760684967 +karman_re400,ppo,89,35.6,velocity,lower_uy,0.408964067697525 +karman_re400,ppo,90,36.0,velocity,upper_ux,0.8356194496154785 +karman_re400,ppo,90,36.0,velocity,upper_uy,0.36145371198654175 +karman_re400,ppo,90,36.0,velocity,center_ux,0.931861400604248 +karman_re400,ppo,90,36.0,velocity,center_uy,0.6866852641105652 +karman_re400,ppo,90,36.0,velocity,lower_ux,1.0370585918426514 +karman_re400,ppo,90,36.0,velocity,lower_uy,0.4481121003627777 +karman_re400,ppo,91,36.4,velocity,upper_ux,0.7464391589164734 +karman_re400,ppo,91,36.4,velocity,upper_uy,0.36833131313323975 +karman_re400,ppo,91,36.4,velocity,center_ux,0.9195066094398499 +karman_re400,ppo,91,36.4,velocity,center_uy,0.7136337757110596 +karman_re400,ppo,91,36.4,velocity,lower_ux,1.1309142112731934 +karman_re400,ppo,91,36.4,velocity,lower_uy,0.45334213972091675 +karman_re400,ppo,92,36.8,velocity,upper_ux,0.6655880808830261 +karman_re400,ppo,92,36.8,velocity,upper_uy,0.32149070501327515 +karman_re400,ppo,92,36.8,velocity,center_ux,0.898746132850647 +karman_re400,ppo,92,36.8,velocity,center_uy,0.7086443901062012 +karman_re400,ppo,92,36.8,velocity,lower_ux,1.219280481338501 +karman_re400,ppo,92,36.8,velocity,lower_uy,0.4043605327606201 +karman_re400,ppo,93,37.2,velocity,upper_ux,0.60310959815979 +karman_re400,ppo,93,37.2,velocity,upper_uy,0.2157384306192398 +karman_re400,ppo,93,37.2,velocity,center_ux,0.8742749094963074 +karman_re400,ppo,93,37.2,velocity,center_uy,0.5542274713516235 +karman_re400,ppo,93,37.2,velocity,lower_ux,1.283022403717041 +karman_re400,ppo,93,37.2,velocity,lower_uy,0.28420743346214294 +karman_re400,ppo,94,37.6,velocity,upper_ux,0.5780090093612671 +karman_re400,ppo,94,37.6,velocity,upper_uy,0.06148374453186989 +karman_re400,ppo,94,37.6,velocity,center_ux,0.8732274770736694 +karman_re400,ppo,94,37.6,velocity,center_uy,0.12737609446048737 +karman_re400,ppo,94,37.6,velocity,lower_ux,1.284335732460022 +karman_re400,ppo,94,37.6,velocity,lower_uy,0.08888374269008636 +karman_re400,ppo,95,38.0,velocity,upper_ux,0.6101139187812805 +karman_re400,ppo,95,38.0,velocity,upper_uy,-0.10286886990070343 +karman_re400,ppo,95,38.0,velocity,center_ux,0.8938525319099426 +karman_re400,ppo,95,38.0,velocity,center_uy,-0.35300663113594055 +karman_re400,ppo,95,38.0,velocity,lower_ux,1.2397685050964355 +karman_re400,ppo,95,38.0,velocity,lower_uy,-0.08868107199668884 +karman_re400,ppo,96,38.4,velocity,upper_ux,0.7000335454940796 +karman_re400,ppo,96,38.4,velocity,upper_uy,-0.2197997272014618 +karman_re400,ppo,96,38.4,velocity,center_ux,0.9157949686050415 +karman_re400,ppo,96,38.4,velocity,center_uy,-0.6255979537963867 +karman_re400,ppo,96,38.4,velocity,lower_ux,1.1771512031555176 +karman_re400,ppo,96,38.4,velocity,lower_uy,-0.2053600698709488 +karman_re400,ppo,97,38.8,velocity,upper_ux,0.8081815838813782 +karman_re400,ppo,97,38.8,velocity,upper_uy,-0.296464204788208 +karman_re400,ppo,97,38.8,velocity,center_ux,0.9290265440940857 +karman_re400,ppo,97,38.8,velocity,center_uy,-0.6853663921356201 +karman_re400,ppo,97,38.8,velocity,lower_ux,1.089179277420044 +karman_re400,ppo,97,38.8,velocity,lower_uy,-0.301199734210968 +karman_re400,ppo,98,39.2,velocity,upper_ux,0.9046724438667297 +karman_re400,ppo,98,39.2,velocity,upper_uy,-0.36660027503967285 +karman_re400,ppo,98,39.2,velocity,center_ux,0.9409096240997314 +karman_re400,ppo,98,39.2,velocity,center_uy,-0.6845231652259827 +karman_re400,ppo,98,39.2,velocity,lower_ux,0.9899836778640747 +karman_re400,ppo,98,39.2,velocity,lower_uy,-0.38249367475509644 +karman_re400,ppo,99,39.6,velocity,upper_ux,0.9959723949432373 +karman_re400,ppo,99,39.6,velocity,upper_uy,-0.41383418440818787 +karman_re400,ppo,99,39.6,velocity,center_ux,0.9551304578781128 +karman_re400,ppo,99,39.6,velocity,center_uy,-0.7023378014564514 +karman_re400,ppo,99,39.6,velocity,lower_ux,0.8941270709037781 +karman_re400,ppo,99,39.6,velocity,lower_uy,-0.4310623109340668 +karman_re400,ppo,100,40.0,velocity,upper_ux,1.0840544700622559 +karman_re400,ppo,100,40.0,velocity,upper_uy,-0.42730677127838135 +karman_re400,ppo,100,40.0,velocity,center_ux,0.9726744294166565 +karman_re400,ppo,100,40.0,velocity,center_uy,-0.7127837538719177 +karman_re400,ppo,100,40.0,velocity,lower_ux,0.8030388355255127 +karman_re400,ppo,100,40.0,velocity,lower_uy,-0.4334349036216736 +karman_re400,ppo,101,40.4,velocity,upper_ux,1.1634782552719116 +karman_re400,ppo,101,40.4,velocity,upper_uy,-0.3916056752204895 +karman_re400,ppo,101,40.4,velocity,center_ux,0.9948915839195251 +karman_re400,ppo,101,40.4,velocity,center_uy,-0.6854327321052551 +karman_re400,ppo,101,40.4,velocity,lower_ux,0.7156919240951538 +karman_re400,ppo,101,40.4,velocity,lower_uy,-0.37579116225242615 +karman_re400,ppo,102,40.8,velocity,upper_ux,1.2208701372146606 +karman_re400,ppo,102,40.8,velocity,upper_uy,-0.3051731586456299 +karman_re400,ppo,102,40.8,velocity,center_ux,1.0232369899749756 +karman_re400,ppo,102,40.8,velocity,center_uy,-0.5259509086608887 +karman_re400,ppo,102,40.8,velocity,lower_ux,0.6399959325790405 +karman_re400,ppo,102,40.8,velocity,lower_uy,-0.2467389851808548 +karman_re400,ppo,103,41.2,velocity,upper_ux,1.2215574979782104 +karman_re400,ppo,103,41.2,velocity,upper_uy,-0.15393762290477753 +karman_re400,ppo,103,41.2,velocity,center_ux,1.0484740734100342 +karman_re400,ppo,103,41.2,velocity,center_uy,-0.12455412745475769 +karman_re400,ppo,103,41.2,velocity,lower_ux,0.6006806492805481 +karman_re400,ppo,103,41.2,velocity,lower_uy,-0.05152027681469917 +karman_re400,ppo,104,41.6,velocity,upper_ux,1.1539968252182007 +karman_re400,ppo,104,41.6,velocity,upper_uy,0.026234641671180725 +karman_re400,ppo,104,41.6,velocity,center_ux,1.0437355041503906 +karman_re400,ppo,104,41.6,velocity,center_uy,0.3217720091342926 +karman_re400,ppo,104,41.6,velocity,lower_ux,0.6253809928894043 +karman_re400,ppo,104,41.6,velocity,lower_uy,0.1555309146642685 +karman_re400,ppo,105,42.0,velocity,upper_ux,1.0775054693222046 +karman_re400,ppo,105,42.0,velocity,upper_uy,0.15581844747066498 +karman_re400,ppo,105,42.0,velocity,center_ux,1.0085467100143433 +karman_re400,ppo,105,42.0,velocity,center_uy,0.5686374306678772 +karman_re400,ppo,105,42.0,velocity,lower_ux,0.7165652513504028 +karman_re400,ppo,105,42.0,velocity,lower_uy,0.2878064215183258 +karman_re400,ppo,106,42.4,velocity,upper_ux,1.013830304145813 +karman_re400,ppo,106,42.4,velocity,upper_uy,0.2374386042356491 +karman_re400,ppo,106,42.4,velocity,center_ux,0.9701524972915649 +karman_re400,ppo,106,42.4,velocity,center_uy,0.6250879168510437 +karman_re400,ppo,106,42.4,velocity,lower_ux,0.8300237059593201 +karman_re400,ppo,106,42.4,velocity,lower_uy,0.3531097173690796 +karman_re400,ppo,107,42.8,velocity,upper_ux,0.9361163973808289 +karman_re400,ppo,107,42.8,velocity,upper_uy,0.30592384934425354 +karman_re400,ppo,107,42.8,velocity,center_ux,0.947827935218811 +karman_re400,ppo,107,42.8,velocity,center_uy,0.6447874307632446 +karman_re400,ppo,107,42.8,velocity,lower_ux,0.9323356747627258 +karman_re400,ppo,107,42.8,velocity,lower_uy,0.4067564308643341 +karman_re400,ppo,108,43.2,velocity,upper_ux,0.8454489707946777 +karman_re400,ppo,108,43.2,velocity,upper_uy,0.3560875356197357 +karman_re400,ppo,108,43.2,velocity,center_ux,0.9346340298652649 +karman_re400,ppo,108,43.2,velocity,center_uy,0.681455135345459 +karman_re400,ppo,108,43.2,velocity,lower_ux,1.0281678438186646 +karman_re400,ppo,108,43.2,velocity,lower_uy,0.44728267192840576 +karman_re400,ppo,109,43.6,velocity,upper_ux,0.7549203634262085 +karman_re400,ppo,109,43.6,velocity,upper_uy,0.3677504360675812 +karman_re400,ppo,109,43.6,velocity,center_ux,0.9207951426506042 +karman_re400,ppo,109,43.6,velocity,center_uy,0.7102614641189575 +karman_re400,ppo,109,43.6,velocity,lower_ux,1.1210854053497314 +karman_re400,ppo,109,43.6,velocity,lower_uy,0.4567713141441345 +karman_re400,ppo,110,44.0,velocity,upper_ux,0.6725262999534607 +karman_re400,ppo,110,44.0,velocity,upper_uy,0.32673129439353943 +karman_re400,ppo,110,44.0,velocity,center_ux,0.8994394540786743 +karman_re400,ppo,110,44.0,velocity,center_uy,0.710323691368103 +karman_re400,ppo,110,44.0,velocity,lower_ux,1.20933198928833 +karman_re400,ppo,110,44.0,velocity,lower_uy,0.4135337471961975 +karman_re400,ppo,111,44.4,velocity,upper_ux,0.6093530058860779 +karman_re400,ppo,111,44.4,velocity,upper_uy,0.22681275010108948 +karman_re400,ppo,111,44.4,velocity,center_ux,0.8740196824073792 +karman_re400,ppo,111,44.4,velocity,center_uy,0.5806084871292114 +karman_re400,ppo,111,44.4,velocity,lower_ux,1.2787436246871948 +karman_re400,ppo,111,44.4,velocity,lower_uy,0.3018553853034973 +karman_re400,ppo,112,44.8,velocity,upper_ux,0.5814440250396729 +karman_re400,ppo,112,44.8,velocity,upper_uy,0.07654278725385666 +karman_re400,ppo,112,44.8,velocity,center_ux,0.8699280023574829 +karman_re400,ppo,112,44.8,velocity,center_uy,0.17684686183929443 +karman_re400,ppo,112,44.8,velocity,lower_ux,1.288779616355896 +karman_re400,ppo,112,44.8,velocity,lower_uy,0.11075715720653534 +karman_re400,ppo,113,45.2,velocity,upper_ux,0.6074235439300537 +karman_re400,ppo,113,45.2,velocity,upper_uy,-0.08870324492454529 +karman_re400,ppo,113,45.2,velocity,center_ux,0.8884941935539246 +karman_re400,ppo,113,45.2,velocity,center_uy,-0.3133120536804199 +karman_re400,ppo,113,45.2,velocity,lower_ux,1.2457910776138306 +karman_re400,ppo,113,45.2,velocity,lower_uy,-0.07462171465158463 +karman_re400,ppo,114,45.6,velocity,upper_ux,0.6921802759170532 +karman_re400,ppo,114,45.6,velocity,upper_uy,-0.2103109210729599 +karman_re400,ppo,114,45.6,velocity,center_ux,0.9108846783638 +karman_re400,ppo,114,45.6,velocity,center_uy,-0.6100001335144043 +karman_re400,ppo,114,45.6,velocity,lower_ux,1.1835278272628784 +karman_re400,ppo,114,45.6,velocity,lower_uy,-0.1966378092765808 +karman_re400,ppo,115,46.0,velocity,upper_ux,0.7990012168884277 +karman_re400,ppo,115,46.0,velocity,upper_uy,-0.28849849104881287 +karman_re400,ppo,115,46.0,velocity,center_ux,0.9247746467590332 +karman_re400,ppo,115,46.0,velocity,center_uy,-0.6842594742774963 +karman_re400,ppo,115,46.0,velocity,lower_ux,1.0962985754013062 +karman_re400,ppo,115,46.0,velocity,lower_uy,-0.2933703064918518 +karman_re400,ppo,116,46.4,velocity,upper_ux,0.8959529995918274 +karman_re400,ppo,116,46.4,velocity,upper_uy,-0.36000266671180725 +karman_re400,ppo,116,46.4,velocity,center_ux,0.9373868703842163 +karman_re400,ppo,116,46.4,velocity,center_uy,-0.6829973459243774 +karman_re400,ppo,116,46.4,velocity,lower_ux,0.9975531101226807 +karman_re400,ppo,116,46.4,velocity,lower_uy,-0.3762547969818115 +karman_re400,ppo,117,46.8,velocity,upper_ux,0.9890700578689575 +karman_re400,ppo,117,46.8,velocity,upper_uy,-0.4098314344882965 +karman_re400,ppo,117,46.8,velocity,center_ux,0.9535872936248779 +karman_re400,ppo,117,46.8,velocity,center_uy,-0.6995933651924133 +karman_re400,ppo,117,46.8,velocity,lower_ux,0.9031170606613159 +karman_re400,ppo,117,46.8,velocity,lower_uy,-0.42831963300704956 +karman_re400,ppo,118,47.2,velocity,upper_ux,1.078156590461731 +karman_re400,ppo,118,47.2,velocity,upper_uy,-0.4275437891483307 +karman_re400,ppo,118,47.2,velocity,center_ux,0.9714856147766113 +karman_re400,ppo,118,47.2,velocity,center_uy,-0.7121816873550415 +karman_re400,ppo,118,47.2,velocity,lower_ux,0.8122019171714783 +karman_re400,ppo,118,47.2,velocity,lower_uy,-0.4356768727302551 +karman_re400,ppo,119,47.6,velocity,upper_ux,1.1578696966171265 +karman_re400,ppo,119,47.6,velocity,upper_uy,-0.39661598205566406 +karman_re400,ppo,119,47.6,velocity,center_ux,0.9921678900718689 +karman_re400,ppo,119,47.6,velocity,center_uy,-0.6901999115943909 +karman_re400,ppo,119,47.6,velocity,lower_ux,0.723487377166748 +karman_re400,ppo,119,47.6,velocity,lower_uy,-0.38431546092033386 +karman_re400,ppo,120,48.0,velocity,upper_ux,1.2176477909088135 +karman_re400,ppo,120,48.0,velocity,upper_uy,-0.3157736361026764 +karman_re400,ppo,120,48.0,velocity,center_ux,1.0186216831207275 +karman_re400,ppo,120,48.0,velocity,center_uy,-0.5510291457176208 +karman_re400,ppo,120,48.0,velocity,lower_ux,0.6450338959693909 +karman_re400,ppo,120,48.0,velocity,lower_uy,-0.2625740170478821 +karman_re400,ppo,121,48.4,velocity,upper_ux,1.2245914936065674 +karman_re400,ppo,121,48.4,velocity,upper_uy,-0.17059326171875 +karman_re400,ppo,121,48.4,velocity,center_ux,1.0444316864013672 +karman_re400,ppo,121,48.4,velocity,center_uy,-0.1703672856092453 +karman_re400,ppo,121,48.4,velocity,lower_ux,0.6001882553100586 +karman_re400,ppo,121,48.4,velocity,lower_uy,-0.07272575795650482 +karman_re400,ppo,122,48.8,velocity,upper_ux,1.162686824798584 +karman_re400,ppo,122,48.8,velocity,upper_uy,0.010665126144886017 +karman_re400,ppo,122,48.8,velocity,center_ux,1.0449881553649902 +karman_re400,ppo,122,48.8,velocity,center_uy,0.2839495837688446 +karman_re400,ppo,122,48.8,velocity,lower_ux,0.6188425421714783 +karman_re400,ppo,122,48.8,velocity,lower_uy,0.13685183227062225 +karman_re400,ppo,123,49.2,velocity,upper_ux,1.0861670970916748 +karman_re400,ppo,123,49.2,velocity,upper_uy,0.14643527567386627 +karman_re400,ppo,123,49.2,velocity,center_ux,1.0138994455337524 +karman_re400,ppo,123,49.2,velocity,center_uy,0.5544013381004333 +karman_re400,ppo,123,49.2,velocity,lower_ux,0.7061710953712463 +karman_re400,ppo,123,49.2,velocity,lower_uy,0.27885702252388 +karman_re400,ppo,124,49.6,velocity,upper_ux,1.022404670715332 +karman_re400,ppo,124,49.6,velocity,upper_uy,0.2302757054567337 +karman_re400,ppo,124,49.6,velocity,center_ux,0.9742909073829651 +karman_re400,ppo,124,49.6,velocity,center_uy,0.6229724287986755 +karman_re400,ppo,124,49.6,velocity,lower_ux,0.8196163773536682 +karman_re400,ppo,124,49.6,velocity,lower_uy,0.3472858667373657 +karman_re400,ppo,125,50.0,velocity,upper_ux,0.9456983208656311 +karman_re400,ppo,125,50.0,velocity,upper_uy,0.29959455132484436 +karman_re400,ppo,125,50.0,velocity,center_ux,0.9494922161102295 +karman_re400,ppo,125,50.0,velocity,center_uy,0.6416677236557007 +karman_re400,ppo,125,50.0,velocity,lower_ux,0.9221239686012268 +karman_re400,ppo,125,50.0,velocity,lower_uy,0.4017413258552551 +karman_re400,ppo,126,50.4,velocity,upper_ux,0.8545366525650024 +karman_re400,ppo,126,50.4,velocity,upper_uy,0.3525620996952057 +karman_re400,ppo,126,50.4,velocity,center_ux,0.9348711967468262 +karman_re400,ppo,126,50.4,velocity,center_uy,0.6774424910545349 +karman_re400,ppo,126,50.4,velocity,lower_ux,1.0171524286270142 +karman_re400,ppo,126,50.4,velocity,lower_uy,0.4440566599369049 +karman_re400,ppo,127,50.8,velocity,upper_ux,0.7636146545410156 +karman_re400,ppo,127,50.8,velocity,upper_uy,0.36869698762893677 +karman_re400,ppo,127,50.8,velocity,center_ux,0.9213294386863708 +karman_re400,ppo,127,50.8,velocity,center_uy,0.7080178260803223 +karman_re400,ppo,127,50.8,velocity,lower_ux,1.1100982427597046 +karman_re400,ppo,127,50.8,velocity,lower_uy,0.4579349756240845 +karman_re400,ppo,128,51.2,velocity,upper_ux,0.6817651987075806 +karman_re400,ppo,128,51.2,velocity,upper_uy,0.3333303928375244 +karman_re400,ppo,128,51.2,velocity,center_ux,0.902657151222229 +karman_re400,ppo,128,51.2,velocity,center_uy,0.712679386138916 +karman_re400,ppo,128,51.2,velocity,lower_ux,1.2005836963653564 +karman_re400,ppo,128,51.2,velocity,lower_uy,0.4206444025039673 +karman_re400,ppo,129,51.6,velocity,upper_ux,0.6167451739311218 +karman_re400,ppo,129,51.6,velocity,upper_uy,0.23896408081054688 +karman_re400,ppo,129,51.6,velocity,center_ux,0.8773836493492126 +karman_re400,ppo,129,51.6,velocity,center_uy,0.6052826046943665 +karman_re400,ppo,129,51.6,velocity,lower_ux,1.2742969989776611 +karman_re400,ppo,129,51.6,velocity,lower_uy,0.31715670228004456 +karman_re400,ppo,130,52.0,velocity,upper_ux,0.5836148858070374 +karman_re400,ppo,130,52.0,velocity,upper_uy,0.09250359237194061 +karman_re400,ppo,130,52.0,velocity,center_ux,0.8695749044418335 +karman_re400,ppo,130,52.0,velocity,center_uy,0.22629417479038239 +karman_re400,ppo,130,52.0,velocity,lower_ux,1.2905551195144653 +karman_re400,ppo,130,52.0,velocity,lower_uy,0.13186591863632202 +karman_re400,ppo,131,52.4,velocity,upper_ux,0.6026649475097656 +karman_re400,ppo,131,52.4,velocity,upper_uy,-0.07380985468626022 +karman_re400,ppo,131,52.4,velocity,center_ux,0.8855544328689575 +karman_re400,ppo,131,52.4,velocity,center_uy,-0.2706393003463745 +karman_re400,ppo,131,52.4,velocity,lower_ux,1.2494901418685913 +karman_re400,ppo,131,52.4,velocity,lower_uy,-0.05915744602680206 +karman_re400,ppo,132,52.8,velocity,upper_ux,0.6815503835678101 +karman_re400,ppo,132,52.8,velocity,upper_uy,-0.20115989446640015 +karman_re400,ppo,132,52.8,velocity,center_ux,0.9072211384773254 +karman_re400,ppo,132,52.8,velocity,center_uy,-0.5919390320777893 +karman_re400,ppo,132,52.8,velocity,lower_ux,1.1883374452590942 +karman_re400,ppo,132,52.8,velocity,lower_uy,-0.18617665767669678 +karman_re400,ppo,133,53.2,velocity,upper_ux,0.7889649868011475 +karman_re400,ppo,133,53.2,velocity,upper_uy,-0.2812747061252594 +karman_re400,ppo,133,53.2,velocity,center_ux,0.9226118326187134 +karman_re400,ppo,133,53.2,velocity,center_uy,-0.683026134967804 +karman_re400,ppo,133,53.2,velocity,lower_ux,1.1045554876327515 +karman_re400,ppo,133,53.2,velocity,lower_uy,-0.2838525176048279 +karman_re400,ppo,134,53.6,velocity,upper_ux,0.8883036971092224 +karman_re400,ppo,134,53.6,velocity,upper_uy,-0.3539856970310211 +karman_re400,ppo,134,53.6,velocity,center_ux,0.9364194273948669 +karman_re400,ppo,134,53.6,velocity,center_uy,-0.6824734210968018 +karman_re400,ppo,134,53.6,velocity,lower_ux,1.0075809955596924 +karman_re400,ppo,134,53.6,velocity,lower_uy,-0.3686401844024658 +karman_re400,ppo,135,54.0,velocity,upper_ux,0.9816431999206543 +karman_re400,ppo,135,54.0,velocity,upper_uy,-0.40645793080329895 +karman_re400,ppo,135,54.0,velocity,center_ux,0.9521536827087402 +karman_re400,ppo,135,54.0,velocity,center_uy,-0.6976606845855713 +karman_re400,ppo,135,54.0,velocity,lower_ux,0.9123536944389343 +karman_re400,ppo,135,54.0,velocity,lower_uy,-0.4244966208934784 +karman_re400,ppo,136,54.4,velocity,upper_ux,1.0705851316452026 +karman_re400,ppo,136,54.4,velocity,upper_uy,-0.42821526527404785 +karman_re400,ppo,136,54.4,velocity,center_ux,0.9687813520431519 +karman_re400,ppo,136,54.4,velocity,center_uy,-0.712361216545105 +karman_re400,ppo,136,54.4,velocity,lower_ux,0.8202570080757141 +karman_re400,ppo,136,54.4,velocity,lower_uy,-0.4370186924934387 +karman_re400,ppo,137,54.8,velocity,upper_ux,1.1505953073501587 +karman_re400,ppo,137,54.8,velocity,upper_uy,-0.4021252393722534 +karman_re400,ppo,137,54.8,velocity,center_ux,0.9875581860542297 +karman_re400,ppo,137,54.8,velocity,center_uy,-0.6956092715263367 +karman_re400,ppo,137,54.8,velocity,lower_ux,0.7302368879318237 +karman_re400,ppo,137,54.8,velocity,lower_uy,-0.3923087418079376 +karman_re400,ppo,138,55.2,velocity,upper_ux,1.2132408618927002 +karman_re400,ppo,138,55.2,velocity,upper_uy,-0.3264288008213043 +karman_re400,ppo,138,55.2,velocity,center_ux,1.0122661590576172 +karman_re400,ppo,138,55.2,velocity,center_uy,-0.5761052966117859 +karman_re400,ppo,138,55.2,velocity,lower_ux,0.6499995589256287 +karman_re400,ppo,138,55.2,velocity,lower_uy,-0.27836108207702637 +karman_re400,ppo,139,55.6,velocity,upper_ux,1.2287484407424927 +karman_re400,ppo,139,55.6,velocity,upper_uy,-0.18716377019882202 +karman_re400,ppo,139,55.6,velocity,center_ux,1.0400480031967163 +karman_re400,ppo,139,55.6,velocity,center_uy,-0.21835428476333618 +karman_re400,ppo,139,55.6,velocity,lower_ux,0.6020637154579163 +karman_re400,ppo,139,55.6,velocity,lower_uy,-0.09481726586818695 +karman_re400,ppo,140,56.0,velocity,upper_ux,1.1731505393981934 +karman_re400,ppo,140,56.0,velocity,upper_uy,-0.00504817022010684 +karman_re400,ppo,140,56.0,velocity,center_ux,1.045335292816162 +karman_re400,ppo,140,56.0,velocity,center_uy,0.24344007670879364 +karman_re400,ppo,140,56.0,velocity,lower_ux,0.6143006682395935 +karman_re400,ppo,140,56.0,velocity,lower_uy,0.11644268780946732 +karman_re400,ppo,141,56.4,velocity,upper_ux,1.0953325033187866 +karman_re400,ppo,141,56.4,velocity,upper_uy,0.13706044852733612 +karman_re400,ppo,141,56.4,velocity,center_ux,1.0171682834625244 +karman_re400,ppo,141,56.4,velocity,center_uy,0.5392624139785767 +karman_re400,ppo,141,56.4,velocity,lower_ux,0.69512540102005 +karman_re400,ppo,141,56.4,velocity,lower_uy,0.2683715224266052 +karman_re400,ppo,142,56.8,velocity,upper_ux,1.0304824113845825 +karman_re400,ppo,142,56.8,velocity,upper_uy,0.2239084094762802 +karman_re400,ppo,142,56.8,velocity,center_ux,0.9770259261131287 +karman_re400,ppo,142,56.8,velocity,center_uy,0.6225365400314331 +karman_re400,ppo,142,56.8,velocity,lower_ux,0.8076381087303162 +karman_re400,ppo,142,56.8,velocity,lower_uy,0.34107789397239685 +karman_re400,ppo,143,57.2,velocity,upper_ux,0.9542628526687622 +karman_re400,ppo,143,57.2,velocity,upper_uy,0.2942919135093689 +karman_re400,ppo,143,57.2,velocity,center_ux,0.9501937627792358 +karman_re400,ppo,143,57.2,velocity,center_uy,0.6404154896736145 +karman_re400,ppo,143,57.2,velocity,lower_ux,0.9105042219161987 +karman_re400,ppo,143,57.2,velocity,lower_uy,0.3963770568370819 +karman_re400,ppo,144,57.6,velocity,upper_ux,0.864159107208252 +karman_re400,ppo,144,57.6,velocity,upper_uy,0.34980881214141846 +karman_re400,ppo,144,57.6,velocity,center_ux,0.936015248298645 +karman_re400,ppo,144,57.6,velocity,center_uy,0.674540638923645 +karman_re400,ppo,144,57.6,velocity,lower_ux,1.006507396697998 +karman_re400,ppo,144,57.6,velocity,lower_uy,0.44033393263816833 +karman_re400,ppo,145,58.0,velocity,upper_ux,0.7741541862487793 +karman_re400,ppo,145,58.0,velocity,upper_uy,0.37025490403175354 +karman_re400,ppo,145,58.0,velocity,center_ux,0.9245366454124451 +karman_re400,ppo,145,58.0,velocity,center_uy,0.7066481113433838 +karman_re400,ppo,145,58.0,velocity,lower_ux,1.1012732982635498 +karman_re400,ppo,145,58.0,velocity,lower_uy,0.4583212733268738 +karman_re400,ppo,146,58.4,velocity,upper_ux,0.6910461187362671 +karman_re400,ppo,146,58.4,velocity,upper_uy,0.3400818109512329 +karman_re400,ppo,146,58.4,velocity,center_ux,0.9072785973548889 +karman_re400,ppo,146,58.4,velocity,center_uy,0.7148802876472473 +karman_re400,ppo,146,58.4,velocity,lower_ux,1.1924548149108887 +karman_re400,ppo,146,58.4,velocity,lower_uy,0.4265892803668976 +karman_re400,ppo,147,58.8,velocity,upper_ux,0.6228284239768982 +karman_re400,ppo,147,58.8,velocity,upper_uy,0.251016229391098 +karman_re400,ppo,147,58.8,velocity,center_ux,0.8818999528884888 +karman_re400,ppo,147,58.8,velocity,center_uy,0.6264675855636597 +karman_re400,ppo,147,58.8,velocity,lower_ux,1.268489956855774 +karman_re400,ppo,147,58.8,velocity,lower_uy,0.3308577239513397 +karman_re400,ppo,148,59.2,velocity,upper_ux,0.5845359563827515 +karman_re400,ppo,148,59.2,velocity,upper_uy,0.10821515321731567 +karman_re400,ppo,148,59.2,velocity,center_ux,0.8712674975395203 +karman_re400,ppo,148,59.2,velocity,center_uy,0.2729191184043884 +karman_re400,ppo,148,59.2,velocity,lower_ux,1.2904117107391357 +karman_re400,ppo,148,59.2,velocity,lower_uy,0.15231195092201233 +karman_re400,ppo,149,59.6,velocity,upper_ux,0.5971115231513977 +karman_re400,ppo,149,59.6,velocity,upper_uy,-0.05899140238761902 +karman_re400,ppo,149,59.6,velocity,center_ux,0.8851858377456665 +karman_re400,ppo,149,59.6,velocity,center_uy,-0.2269962728023529 +karman_re400,ppo,149,59.6,velocity,lower_ux,1.2518563270568848 +karman_re400,ppo,149,59.6,velocity,lower_uy,-0.042972031980752945 +karman_re400,ppo,150,60.0,velocity,upper_ux,0.6720240116119385 +karman_re400,ppo,150,60.0,velocity,upper_uy,-0.19243374466896057 +karman_re400,ppo,150,60.0,velocity,center_ux,0.9076852202415466 +karman_re400,ppo,150,60.0,velocity,center_uy,-0.5717464685440063 +karman_re400,ppo,150,60.0,velocity,lower_ux,1.193863034248352 +karman_re400,ppo,150,60.0,velocity,lower_uy,-0.17507462203502655 +karman_re400,ppo,151,60.4,velocity,upper_ux,0.7801117897033691 +karman_re400,ppo,151,60.4,velocity,upper_uy,-0.27493155002593994 +karman_re400,ppo,151,60.4,velocity,center_ux,0.9239310622215271 +karman_re400,ppo,151,60.4,velocity,center_uy,-0.6806280612945557 +karman_re400,ppo,151,60.4,velocity,lower_ux,1.113757610321045 +karman_re400,ppo,151,60.4,velocity,lower_uy,-0.27383148670196533 +karman_re400,ppo,152,60.8,velocity,upper_ux,0.8802003264427185 +karman_re400,ppo,152,60.8,velocity,upper_uy,-0.34822261333465576 +karman_re400,ppo,152,60.8,velocity,center_ux,0.9364931583404541 +karman_re400,ppo,152,60.8,velocity,center_uy,-0.6818698048591614 +karman_re400,ppo,152,60.8,velocity,lower_ux,1.0168131589889526 +karman_re400,ppo,152,60.8,velocity,lower_uy,-0.3604203760623932 +karman_re400,ppo,153,61.2,velocity,upper_ux,0.9731940627098083 +karman_re400,ppo,153,61.2,velocity,upper_uy,-0.4029279351234436 +karman_re400,ppo,153,61.2,velocity,center_ux,0.9509707689285278 +karman_re400,ppo,153,61.2,velocity,center_uy,-0.6955440640449524 +karman_re400,ppo,153,61.2,velocity,lower_ux,0.920279324054718 +karman_re400,ppo,153,61.2,velocity,lower_uy,-0.41999566555023193 +karman_re400,ppo,154,61.6,velocity,upper_ux,1.0617488622665405 +karman_re400,ppo,154,61.6,velocity,upper_uy,-0.42817458510398865 +karman_re400,ppo,154,61.6,velocity,center_ux,0.9663462042808533 +karman_re400,ppo,154,61.6,velocity,center_uy,-0.7119717597961426 +karman_re400,ppo,154,61.6,velocity,lower_ux,0.8270396590232849 +karman_re400,ppo,154,61.6,velocity,lower_uy,-0.43736323714256287 +karman_re400,ppo,155,62.0,velocity,upper_ux,1.1430892944335938 +karman_re400,ppo,155,62.0,velocity,upper_uy,-0.40681344270706177 +karman_re400,ppo,155,62.0,velocity,center_ux,0.9850172996520996 +karman_re400,ppo,155,62.0,velocity,center_uy,-0.6998948454856873 +karman_re400,ppo,155,62.0,velocity,lower_ux,0.7370852828025818 +karman_re400,ppo,155,62.0,velocity,lower_uy,-0.3990076184272766 +karman_re400,ppo,156,62.4,velocity,upper_ux,1.209701418876648 +karman_re400,ppo,156,62.4,velocity,upper_uy,-0.3359483480453491 +karman_re400,ppo,156,62.4,velocity,center_ux,1.0106252431869507 +karman_re400,ppo,156,62.4,velocity,center_uy,-0.5974079370498657 +karman_re400,ppo,156,62.4,velocity,lower_ux,0.6567082405090332 +karman_re400,ppo,156,62.4,velocity,lower_uy,-0.29233139753341675 +karman_re400,ppo,157,62.8,velocity,upper_ux,1.2317724227905273 +karman_re400,ppo,157,62.8,velocity,upper_uy,-0.20302177965641022 +karman_re400,ppo,157,62.8,velocity,center_ux,1.0394197702407837 +karman_re400,ppo,157,62.8,velocity,center_uy,-0.26199570298194885 +karman_re400,ppo,157,62.8,velocity,lower_ux,0.6046628952026367 +karman_re400,ppo,157,62.8,velocity,lower_uy,-0.11470270156860352 +karman_re400,ppo,158,63.2,velocity,upper_ux,1.1813071966171265 +karman_re400,ppo,158,63.2,velocity,upper_uy,-0.021923840045928955 +karman_re400,ppo,158,63.2,velocity,center_ux,1.047166109085083 +karman_re400,ppo,158,63.2,velocity,center_uy,0.20376257598400116 +karman_re400,ppo,158,63.2,velocity,lower_ux,0.6096765995025635 +karman_re400,ppo,158,63.2,velocity,lower_uy,0.0971611812710762 +karman_re400,ppo,159,63.6,velocity,upper_ux,1.1021523475646973 +karman_re400,ppo,159,63.6,velocity,upper_uy,0.1259850412607193 +karman_re400,ppo,159,63.6,velocity,center_ux,1.0205832719802856 +karman_re400,ppo,159,63.6,velocity,center_uy,0.5221355557441711 +karman_re400,ppo,159,63.6,velocity,lower_ux,0.6840231418609619 +karman_re400,ppo,159,63.6,velocity,lower_uy,0.25781485438346863 +karman_re400,ppo,160,64.0,velocity,upper_ux,1.0362869501113892 +karman_re400,ppo,160,64.0,velocity,upper_uy,0.21607819199562073 +karman_re400,ppo,160,64.0,velocity,center_ux,0.9794555902481079 +karman_re400,ppo,160,64.0,velocity,center_uy,0.6203656792640686 +karman_re400,ppo,160,64.0,velocity,lower_ux,0.7954013347625732 +karman_re400,ppo,160,64.0,velocity,lower_uy,0.33513104915618896 +karman_re400,ppo,161,64.4,velocity,upper_ux,0.9629164934158325 +karman_re400,ppo,161,64.4,velocity,upper_uy,0.2873604893684387 +karman_re400,ppo,161,64.4,velocity,center_ux,0.9519625902175903 +karman_re400,ppo,161,64.4,velocity,center_uy,0.6382970213890076 +karman_re400,ppo,161,64.4,velocity,lower_ux,0.900627851486206 +karman_re400,ppo,161,64.4,velocity,lower_uy,0.3912578225135803 +karman_re400,ppo,162,64.8,velocity,upper_ux,0.8744809031486511 +karman_re400,ppo,162,64.8,velocity,upper_uy,0.34519344568252563 +karman_re400,ppo,162,64.8,velocity,center_ux,0.9380049109458923 +karman_re400,ppo,162,64.8,velocity,center_uy,0.6708217859268188 +karman_re400,ppo,162,64.8,velocity,lower_ux,0.9981353282928467 +karman_re400,ppo,162,64.8,velocity,lower_uy,0.4368637800216675 +karman_re400,ppo,163,65.2,velocity,upper_ux,0.7836448550224304 +karman_re400,ppo,163,65.2,velocity,upper_uy,0.36986568570137024 +karman_re400,ppo,163,65.2,velocity,center_ux,0.9261496663093567 +karman_re400,ppo,163,65.2,velocity,center_uy,0.7043944001197815 +karman_re400,ppo,163,65.2,velocity,lower_ux,1.0929094552993774 +karman_re400,ppo,163,65.2,velocity,lower_uy,0.4586701989173889 +karman_re400,ppo,164,65.6,velocity,upper_ux,0.6988047957420349 +karman_re400,ppo,164,65.6,velocity,upper_uy,0.345041424036026 +karman_re400,ppo,164,65.6,velocity,center_ux,0.9087303876876831 +karman_re400,ppo,164,65.6,velocity,center_uy,0.7156927585601807 +karman_re400,ppo,164,65.6,velocity,lower_ux,1.1840418577194214 +karman_re400,ppo,164,65.6,velocity,lower_uy,0.4323495626449585 +karman_re400,ppo,165,66.0,velocity,upper_ux,0.6277572512626648 +karman_re400,ppo,165,66.0,velocity,upper_uy,0.26175665855407715 +karman_re400,ppo,165,66.0,velocity,center_ux,0.8820154666900635 +karman_re400,ppo,165,66.0,velocity,center_uy,0.6444082856178284 +karman_re400,ppo,165,66.0,velocity,lower_ux,1.262073278427124 +karman_re400,ppo,165,66.0,velocity,lower_uy,0.34382885694503784 +karman_re400,ppo,166,66.4,velocity,upper_ux,0.5858656167984009 +karman_re400,ppo,166,66.4,velocity,upper_uy,0.12364989519119263 +karman_re400,ppo,166,66.4,velocity,center_ux,0.8682622313499451 +karman_re400,ppo,166,66.4,velocity,center_uy,0.3186051547527313 +karman_re400,ppo,166,66.4,velocity,lower_ux,1.2911640405654907 +karman_re400,ppo,166,66.4,velocity,lower_uy,0.17221374809741974 +karman_re400,ppo,167,66.8,velocity,upper_ux,0.5941141247749329 +karman_re400,ppo,167,66.8,velocity,upper_uy,-0.043226297944784164 +karman_re400,ppo,167,66.8,velocity,center_ux,0.8816980719566345 +karman_re400,ppo,167,66.8,velocity,center_uy,-0.18130375444889069 +karman_re400,ppo,167,66.8,velocity,lower_ux,1.2581120729446411 +karman_re400,ppo,167,66.8,velocity,lower_uy,-0.02716747485101223 +karman_re400,ppo,168,67.2,velocity,upper_ux,0.6639326214790344 +karman_re400,ppo,168,67.2,velocity,upper_uy,-0.1820898950099945 +karman_re400,ppo,168,67.2,velocity,center_ux,0.9052436351776123 +karman_re400,ppo,168,67.2,velocity,center_uy,-0.5496200919151306 +karman_re400,ppo,168,67.2,velocity,lower_ux,1.2018944025039673 +karman_re400,ppo,168,67.2,velocity,lower_uy,-0.1655280441045761 +karman_re400,ppo,169,67.6,velocity,upper_ux,0.7705524563789368 +karman_re400,ppo,169,67.6,velocity,upper_uy,-0.267450749874115 +karman_re400,ppo,169,67.6,velocity,center_ux,0.9224563837051392 +karman_re400,ppo,169,67.6,velocity,center_uy,-0.6779431700706482 +karman_re400,ppo,169,67.6,velocity,lower_ux,1.1232426166534424 +karman_re400,ppo,169,67.6,velocity,lower_uy,-0.2659358084201813 +karman_re400,ppo,170,68.0,velocity,upper_ux,0.8708553314208984 +karman_re400,ppo,170,68.0,velocity,upper_uy,-0.34136953949928284 +karman_re400,ppo,170,68.0,velocity,center_ux,0.9346966743469238 +karman_re400,ppo,170,68.0,velocity,center_uy,-0.6820891499519348 +karman_re400,ppo,170,68.0,velocity,lower_ux,1.025975227355957 +karman_re400,ppo,170,68.0,velocity,lower_uy,-0.3541048765182495 +karman_re400,ppo,171,68.4,velocity,upper_ux,0.9633439779281616 +karman_re400,ppo,171,68.4,velocity,upper_uy,-0.39833956956863403 +karman_re400,ppo,171,68.4,velocity,center_ux,0.9487294554710388 +karman_re400,ppo,171,68.4,velocity,center_uy,-0.6936494708061218 +karman_re400,ppo,171,68.4,velocity,lower_ux,0.9283896088600159 +karman_re400,ppo,171,68.4,velocity,lower_uy,-0.4169420003890991 +karman_re400,ppo,172,68.8,velocity,upper_ux,1.0531320571899414 +karman_re400,ppo,172,68.8,velocity,upper_uy,-0.42703625559806824 +karman_re400,ppo,172,68.8,velocity,center_ux,0.9652693867683411 +karman_re400,ppo,172,68.8,velocity,center_uy,-0.7112796306610107 +karman_re400,ppo,172,68.8,velocity,lower_ux,0.8358609676361084 +karman_re400,ppo,172,68.8,velocity,lower_uy,-0.4388056993484497 +karman_re400,ppo,173,69.2,velocity,upper_ux,1.1364167928695679 +karman_re400,ppo,173,69.2,velocity,upper_uy,-0.41056540608406067 +karman_re400,ppo,173,69.2,velocity,center_ux,0.9852572679519653 +karman_re400,ppo,173,69.2,velocity,center_uy,-0.7029926180839539 +karman_re400,ppo,173,69.2,velocity,lower_ux,0.7465227246284485 +karman_re400,ppo,173,69.2,velocity,lower_uy,-0.4062573313713074 +karman_re400,ppo,174,69.6,velocity,upper_ux,1.204938530921936 +karman_re400,ppo,174,69.6,velocity,upper_uy,-0.344726026058197 +karman_re400,ppo,174,69.6,velocity,center_ux,1.0110079050064087 +karman_re400,ppo,174,69.6,velocity,center_uy,-0.6149348616600037 +karman_re400,ppo,174,69.6,velocity,lower_ux,0.6642202138900757 +karman_re400,ppo,174,69.6,velocity,lower_uy,-0.30621081590652466 +karman_re400,ppo,175,70.0,velocity,upper_ux,1.2322776317596436 +karman_re400,ppo,175,70.0,velocity,upper_uy,-0.21891433000564575 +karman_re400,ppo,175,70.0,velocity,center_ux,1.0406279563903809 +karman_re400,ppo,175,70.0,velocity,center_uy,-0.3026222288608551 +karman_re400,ppo,175,70.0,velocity,lower_ux,0.6073197722434998 +karman_re400,ppo,175,70.0,velocity,lower_uy,-0.13404794037342072 +karman_re400,ppo,176,70.4,velocity,upper_ux,1.1870417594909668 +karman_re400,ppo,176,70.4,velocity,upper_uy,-0.04022800549864769 +karman_re400,ppo,176,70.4,velocity,center_ux,1.050695776939392 +karman_re400,ppo,176,70.4,velocity,center_uy,0.16296088695526123 +karman_re400,ppo,176,70.4,velocity,lower_ux,0.6050185561180115 +karman_re400,ppo,176,70.4,velocity,lower_uy,0.07834893465042114 +karman_re400,ppo,177,70.8,velocity,upper_ux,1.1071568727493286 +karman_re400,ppo,177,70.8,velocity,upper_uy,0.11343849450349808 +karman_re400,ppo,177,70.8,velocity,center_ux,1.0258387327194214 +karman_re400,ppo,177,70.8,velocity,center_uy,0.5014435648918152 +karman_re400,ppo,177,70.8,velocity,lower_ux,0.6733034253120422 +karman_re400,ppo,177,70.8,velocity,lower_uy,0.24758632481098175 +karman_re400,ppo,178,71.2,velocity,upper_ux,1.0417600870132446 +karman_re400,ppo,178,71.2,velocity,upper_uy,0.2073892205953598 +karman_re400,ppo,178,71.2,velocity,center_ux,0.9847778081893921 +karman_re400,ppo,178,71.2,velocity,center_uy,0.615490198135376 +karman_re400,ppo,178,71.2,velocity,lower_ux,0.7850052714347839 +karman_re400,ppo,178,71.2,velocity,lower_uy,0.3301408886909485 +karman_re400,ppo,179,71.6,velocity,upper_ux,0.9711029529571533 +karman_re400,ppo,179,71.6,velocity,upper_uy,0.2793499827384949 +karman_re400,ppo,179,71.6,velocity,center_ux,0.9552467465400696 +karman_re400,ppo,179,71.6,velocity,center_uy,0.634728729724884 +karman_re400,ppo,179,71.6,velocity,lower_ux,0.8920891284942627 +karman_re400,ppo,179,71.6,velocity,lower_uy,0.38663795590400696 +karman_re400,ppo,180,72.0,velocity,upper_ux,0.8834037780761719 +karman_re400,ppo,180,72.0,velocity,upper_uy,0.3392745554447174 +karman_re400,ppo,180,72.0,velocity,center_ux,0.9395169019699097 +karman_re400,ppo,180,72.0,velocity,center_uy,0.6659718155860901 +karman_re400,ppo,180,72.0,velocity,lower_ux,0.9895440936088562 +karman_re400,ppo,180,72.0,velocity,lower_uy,0.4335722029209137 +karman_re400,ppo,181,72.4,velocity,upper_ux,0.791697084903717 +karman_re400,ppo,181,72.4,velocity,upper_uy,0.3681242763996124 +karman_re400,ppo,181,72.4,velocity,center_ux,0.9266226887702942 +karman_re400,ppo,181,72.4,velocity,center_uy,0.700980544090271 +karman_re400,ppo,181,72.4,velocity,lower_ux,1.0837416648864746 +karman_re400,ppo,181,72.4,velocity,lower_uy,0.4587792456150055 +karman_re400,ppo,182,72.8,velocity,upper_ux,0.7053765058517456 +karman_re400,ppo,182,72.8,velocity,upper_uy,0.3488909602165222 +karman_re400,ppo,182,72.8,velocity,center_ux,0.9087823629379272 +karman_re400,ppo,182,72.8,velocity,center_uy,0.7152420878410339 +karman_re400,ppo,182,72.8,velocity,lower_ux,1.1745096445083618 +karman_re400,ppo,182,72.8,velocity,lower_uy,0.4378615915775299 +karman_re400,ppo,183,73.2,velocity,upper_ux,0.6333306431770325 +karman_re400,ppo,183,73.2,velocity,upper_uy,0.27187004685401917 +karman_re400,ppo,183,73.2,velocity,center_ux,0.8822852373123169 +karman_re400,ppo,183,73.2,velocity,center_uy,0.6599323749542236 +karman_re400,ppo,183,73.2,velocity,lower_ux,1.255649209022522 +karman_re400,ppo,183,73.2,velocity,lower_uy,0.35651084780693054 +karman_re400,ppo,184,73.6,velocity,upper_ux,0.5890547037124634 +karman_re400,ppo,184,73.6,velocity,upper_uy,0.13893041014671326 +karman_re400,ppo,184,73.6,velocity,center_ux,0.866028904914856 +karman_re400,ppo,184,73.6,velocity,center_uy,0.36361929774284363 +karman_re400,ppo,184,73.6,velocity,lower_ux,1.292965292930603 +karman_re400,ppo,184,73.6,velocity,lower_uy,0.19252267479896545 +karman_re400,ppo,185,74.0,velocity,upper_ux,0.5916927456855774 +karman_re400,ppo,185,74.0,velocity,upper_uy,-0.02674458734691143 +karman_re400,ppo,185,74.0,velocity,center_ux,0.8769042491912842 +karman_re400,ppo,185,74.0,velocity,center_uy,-0.13294455409049988 +karman_re400,ppo,185,74.0,velocity,lower_ux,1.2648084163665771 +karman_re400,ppo,185,74.0,velocity,lower_uy,-0.01000678539276123 +karman_re400,ppo,186,74.4,velocity,upper_ux,0.6552308797836304 +karman_re400,ppo,186,74.4,velocity,upper_uy,-0.17045387625694275 +karman_re400,ppo,186,74.4,velocity,center_ux,0.9003344774246216 +karman_re400,ppo,186,74.4,velocity,center_uy,-0.5244331359863281 +karman_re400,ppo,186,74.4,velocity,lower_ux,1.2094943523406982 +karman_re400,ppo,186,74.4,velocity,lower_uy,-0.15532717108726501 +karman_re400,ppo,187,74.8,velocity,upper_ux,0.7595326900482178 +karman_re400,ppo,187,74.8,velocity,upper_uy,-0.2592213451862335 +karman_re400,ppo,187,74.8,velocity,center_ux,0.9185720086097717 +karman_re400,ppo,187,74.8,velocity,center_uy,-0.6741381883621216 +karman_re400,ppo,187,74.8,velocity,lower_ux,1.1321043968200684 +karman_re400,ppo,187,74.8,velocity,lower_uy,-0.2577964663505554 +karman_re400,ppo,188,75.2,velocity,upper_ux,0.8604886531829834 +karman_re400,ppo,188,75.2,velocity,upper_uy,-0.3338277041912079 +karman_re400,ppo,188,75.2,velocity,center_ux,0.931317925453186 +karman_re400,ppo,188,75.2,velocity,center_uy,-0.6827872395515442 +karman_re400,ppo,188,75.2,velocity,lower_ux,1.0352917909622192 +karman_re400,ppo,188,75.2,velocity,lower_uy,-0.3473743200302124 +karman_re400,ppo,189,75.6,velocity,upper_ux,0.9543439745903015 +karman_re400,ppo,189,75.6,velocity,upper_uy,-0.3934045135974884 +karman_re400,ppo,189,75.6,velocity,center_ux,0.9467737674713135 +karman_re400,ppo,189,75.6,velocity,center_uy,-0.6918790936470032 +karman_re400,ppo,189,75.6,velocity,lower_ux,0.9384862780570984 +karman_re400,ppo,189,75.6,velocity,lower_uy,-0.41337671875953674 +karman_re400,ppo,190,76.0,velocity,upper_ux,1.0451821088790894 +karman_re400,ppo,190,76.0,velocity,upper_uy,-0.42566144466400146 +karman_re400,ppo,190,76.0,velocity,center_ux,0.9640408158302307 +karman_re400,ppo,190,76.0,velocity,center_uy,-0.7104026675224304 +karman_re400,ppo,190,76.0,velocity,lower_ux,0.8462214469909668 +karman_re400,ppo,190,76.0,velocity,lower_uy,-0.4397561550140381 +karman_re400,ppo,191,76.4,velocity,upper_ux,1.1290583610534668 +karman_re400,ppo,191,76.4,velocity,upper_uy,-0.41436219215393066 +karman_re400,ppo,191,76.4,velocity,center_ux,0.9834286570549011 +karman_re400,ppo,191,76.4,velocity,center_uy,-0.7057257890701294 +karman_re400,ppo,191,76.4,velocity,lower_ux,0.7561103701591492 +karman_re400,ppo,191,76.4,velocity,lower_uy,-0.4131670892238617 +karman_re400,ppo,192,76.8,velocity,upper_ux,1.1991074085235596 +karman_re400,ppo,192,76.8,velocity,upper_uy,-0.3535933196544647 +karman_re400,ppo,192,76.8,velocity,center_ux,1.0078802108764648 +karman_re400,ppo,192,76.8,velocity,center_uy,-0.631133496761322 +karman_re400,ppo,192,76.8,velocity,lower_ux,0.6718456745147705 +karman_re400,ppo,192,76.8,velocity,lower_uy,-0.3200947046279907 +karman_re400,ppo,193,77.2,velocity,upper_ux,1.2316787242889404 +karman_re400,ppo,193,77.2,velocity,upper_uy,-0.23473455011844635 +karman_re400,ppo,193,77.2,velocity,center_ux,1.0370250940322876 +karman_re400,ppo,193,77.2,velocity,center_uy,-0.3447294235229492 +karman_re400,ppo,193,77.2,velocity,lower_ux,0.6103283762931824 +karman_re400,ppo,193,77.2,velocity,lower_uy,-0.15445764362812042 +karman_re400,ppo,194,77.6,velocity,upper_ux,1.1938267946243286 +karman_re400,ppo,194,77.6,velocity,upper_uy,-0.05854533612728119 +karman_re400,ppo,194,77.6,velocity,center_ux,1.0509248971939087 +karman_re400,ppo,194,77.6,velocity,center_uy,0.11756666004657745 +karman_re400,ppo,194,77.6,velocity,lower_ux,0.6017465591430664 +karman_re400,ppo,194,77.6,velocity,lower_uy,0.057219263166189194 +karman_re400,ppo,195,78.0,velocity,upper_ux,1.1151539087295532 +karman_re400,ppo,195,78.0,velocity,upper_uy,0.10126554220914841 +karman_re400,ppo,195,78.0,velocity,center_ux,1.0305168628692627 +karman_re400,ppo,195,78.0,velocity,center_uy,0.47773876786231995 +karman_re400,ppo,195,78.0,velocity,lower_ux,0.664306104183197 +karman_re400,ppo,195,78.0,velocity,lower_uy,0.23518376052379608 +karman_re400,ppo,196,78.4,velocity,upper_ux,1.0485637187957764 +karman_re400,ppo,196,78.4,velocity,upper_uy,0.19984449446201324 +karman_re400,ppo,196,78.4,velocity,center_ux,0.9897681474685669 +karman_re400,ppo,196,78.4,velocity,center_uy,0.6108773946762085 +karman_re400,ppo,196,78.4,velocity,lower_ux,0.7743623852729797 +karman_re400,ppo,196,78.4,velocity,lower_uy,0.32447096705436707 +karman_re400,ppo,197,78.8,velocity,upper_ux,0.9791731238365173 +karman_re400,ppo,197,78.8,velocity,upper_uy,0.27269068360328674 +karman_re400,ppo,197,78.8,velocity,center_ux,0.9579107761383057 +karman_re400,ppo,197,78.8,velocity,center_uy,0.6326268911361694 +karman_re400,ppo,197,78.8,velocity,lower_ux,0.8823320865631104 +karman_re400,ppo,197,78.8,velocity,lower_uy,0.3815082609653473 +karman_re400,ppo,198,79.2,velocity,upper_ux,0.8919245004653931 +karman_re400,ppo,198,79.2,velocity,upper_uy,0.3344973623752594 +karman_re400,ppo,198,79.2,velocity,center_ux,0.9405288696289062 +karman_re400,ppo,198,79.2,velocity,center_uy,0.6620947122573853 +karman_re400,ppo,198,79.2,velocity,lower_ux,0.97953200340271 +karman_re400,ppo,198,79.2,velocity,lower_uy,0.42962318658828735 +karman_re400,ppo,199,79.6,velocity,upper_ux,0.799731969833374 +karman_re400,ppo,199,79.6,velocity,upper_uy,0.36729639768600464 +karman_re400,ppo,199,79.6,velocity,center_ux,0.9273641109466553 +karman_re400,ppo,199,79.6,velocity,center_uy,0.6981223225593567 +karman_re400,ppo,199,79.6,velocity,lower_ux,1.0734450817108154 +karman_re400,ppo,199,79.6,velocity,lower_uy,0.4578949809074402 +karman_re400,ppo,200,80.0,velocity,upper_ux,0.7136282920837402 +karman_re400,ppo,200,80.0,velocity,upper_uy,0.3533465266227722 +karman_re400,ppo,200,80.0,velocity,center_ux,0.9114529490470886 +karman_re400,ppo,200,80.0,velocity,center_uy,0.7151085734367371 +karman_re400,ppo,200,80.0,velocity,lower_ux,1.165529727935791 +karman_re400,ppo,200,80.0,velocity,lower_uy,0.44228389859199524 +karman_re400,ppo,201,80.4,velocity,upper_ux,0.6404103636741638 +karman_re400,ppo,201,80.4,velocity,upper_uy,0.28215283155441284 +karman_re400,ppo,201,80.4,velocity,center_ux,0.8865604996681213 +karman_re400,ppo,201,80.4,velocity,center_uy,0.6732826232910156 +karman_re400,ppo,201,80.4,velocity,lower_ux,1.2492867708206177 +karman_re400,ppo,201,80.4,velocity,lower_uy,0.3677842319011688 +karman_re400,ppo,202,80.8,velocity,upper_ux,0.5922659635543823 +karman_re400,ppo,202,80.8,velocity,upper_uy,0.15398405492305756 +karman_re400,ppo,202,80.8,velocity,center_ux,0.8680583834648132 +karman_re400,ppo,202,80.8,velocity,center_uy,0.4056561589241028 +karman_re400,ppo,202,80.8,velocity,lower_ux,1.2925866842269897 +karman_re400,ppo,202,80.8,velocity,lower_uy,0.21222537755966187 +karman_re400,ppo,203,81.2,velocity,upper_ux,0.5887896418571472 +karman_re400,ppo,203,81.2,velocity,upper_uy,-0.010555961169302464 +karman_re400,ppo,203,81.2,velocity,center_ux,0.876085102558136 +karman_re400,ppo,203,81.2,velocity,center_uy,-0.08426941931247711 +karman_re400,ppo,203,81.2,velocity,lower_ux,1.2687010765075684 +karman_re400,ppo,203,81.2,velocity,lower_uy,0.008538641035556793 +karman_re400,ppo,204,81.6,velocity,upper_ux,0.645602822303772 +karman_re400,ppo,204,81.6,velocity,upper_uy,-0.1591506153345108 +karman_re400,ppo,204,81.6,velocity,center_ux,0.8980062007904053 +karman_re400,ppo,204,81.6,velocity,center_uy,-0.49680572748184204 +karman_re400,ppo,204,81.6,velocity,lower_ux,1.214155673980713 +karman_re400,ppo,204,81.6,velocity,lower_uy,-0.14325957000255585 +karman_re400,ppo,205,82.0,velocity,upper_ux,0.7482433915138245 +karman_re400,ppo,205,82.0,velocity,upper_uy,-0.2519766092300415 +karman_re400,ppo,205,82.0,velocity,center_ux,0.9168896675109863 +karman_re400,ppo,205,82.0,velocity,center_uy,-0.6683395504951477 +karman_re400,ppo,205,82.0,velocity,lower_ux,1.1398528814315796 +karman_re400,ppo,205,82.0,velocity,lower_uy,-0.24766957759857178 +karman_re400,ppo,206,82.4,velocity,upper_ux,0.8515556454658508 +karman_re400,ppo,206,82.4,velocity,upper_uy,-0.32694733142852783 +karman_re400,ppo,206,82.4,velocity,center_ux,0.9304832220077515 +karman_re400,ppo,206,82.4,velocity,center_uy,-0.683085024356842 +karman_re400,ppo,206,82.4,velocity,lower_ux,1.0453742742538452 +karman_re400,ppo,206,82.4,velocity,lower_uy,-0.33855029940605164 +karman_re400,ppo,207,82.8,velocity,upper_ux,0.9460857510566711 +karman_re400,ppo,207,82.8,velocity,upper_uy,-0.38893428444862366 +karman_re400,ppo,207,82.8,velocity,center_ux,0.945655345916748 +karman_re400,ppo,207,82.8,velocity,center_uy,-0.689913272857666 +karman_re400,ppo,207,82.8,velocity,lower_ux,0.9483045339584351 +karman_re400,ppo,207,82.8,velocity,lower_uy,-0.4077858030796051 +karman_re400,ppo,208,83.2,velocity,upper_ux,1.0369958877563477 +karman_re400,ppo,208,83.2,velocity,upper_uy,-0.4244273900985718 +karman_re400,ppo,208,83.2,velocity,center_ux,0.9620933532714844 +karman_re400,ppo,208,83.2,velocity,center_uy,-0.7092268466949463 +karman_re400,ppo,208,83.2,velocity,lower_ux,0.8552136421203613 +karman_re400,ppo,208,83.2,velocity,lower_uy,-0.4387211501598358 +karman_re400,ppo,209,83.6,velocity,upper_ux,1.121147632598877 +karman_re400,ppo,209,83.6,velocity,upper_uy,-0.4180716574192047 +karman_re400,ppo,209,83.6,velocity,center_ux,0.9800652861595154 +karman_re400,ppo,209,83.6,velocity,center_uy,-0.7081019878387451 +karman_re400,ppo,209,83.6,velocity,lower_ux,0.7641580700874329 +karman_re400,ppo,209,83.6,velocity,lower_uy,-0.41812825202941895 +karman_re400,ppo,210,84.0,velocity,upper_ux,1.192711591720581 +karman_re400,ppo,210,84.0,velocity,upper_uy,-0.3620431125164032 +karman_re400,ppo,210,84.0,velocity,center_ux,1.002697467803955 +karman_re400,ppo,210,84.0,velocity,center_uy,-0.6458066701889038 +karman_re400,ppo,210,84.0,velocity,lower_ux,0.6785067915916443 +karman_re400,ppo,210,84.0,velocity,lower_uy,-0.33233359456062317 +karman_re400,ppo,211,84.4,velocity,upper_ux,1.231736421585083 +karman_re400,ppo,211,84.4,velocity,upper_uy,-0.24948357045650482 +karman_re400,ppo,211,84.4,velocity,center_ux,1.0319428443908691 +karman_re400,ppo,211,84.4,velocity,center_uy,-0.38572239875793457 +karman_re400,ppo,211,84.4,velocity,lower_ux,0.6145382523536682 +karman_re400,ppo,211,84.4,velocity,lower_uy,-0.17398430407047272 +karman_re400,ppo,212,84.8,velocity,upper_ux,1.2019168138504028 +karman_re400,ppo,212,84.8,velocity,upper_uy,-0.07603491097688675 +karman_re400,ppo,212,84.8,velocity,center_ux,1.0493754148483276 +karman_re400,ppo,212,84.8,velocity,center_uy,0.07122369110584259 +karman_re400,ppo,212,84.8,velocity,lower_ux,0.6003340482711792 +karman_re400,ppo,212,84.8,velocity,lower_uy,0.035561587661504745 +karman_re400,ppo,213,85.2,velocity,upper_ux,1.124207854270935 +karman_re400,ppo,213,85.2,velocity,upper_uy,0.08930248022079468 +karman_re400,ppo,213,85.2,velocity,center_ux,1.032713770866394 +karman_re400,ppo,213,85.2,velocity,center_uy,0.4528132379055023 +karman_re400,ppo,213,85.2,velocity,lower_ux,0.6557671427726746 +karman_re400,ppo,213,85.2,velocity,lower_uy,0.22095884382724762 +karman_re400,ppo,214,85.6,velocity,upper_ux,1.0557966232299805 +karman_re400,ppo,214,85.6,velocity,upper_uy,0.19277572631835938 +karman_re400,ppo,214,85.6,velocity,center_ux,0.9929417967796326 +karman_re400,ppo,214,85.6,velocity,center_uy,0.6067838668823242 +karman_re400,ppo,214,85.6,velocity,lower_ux,0.762951672077179 +karman_re400,ppo,214,85.6,velocity,lower_uy,0.31773442029953003 +karman_re400,ppo,215,86.0,velocity,upper_ux,0.9868465662002563 +karman_re400,ppo,215,86.0,velocity,upper_uy,0.2667630612850189 +karman_re400,ppo,215,86.0,velocity,center_ux,0.959204912185669 +karman_re400,ppo,215,86.0,velocity,center_uy,0.6320419907569885 +karman_re400,ppo,215,86.0,velocity,lower_ux,0.8714067935943604 +karman_re400,ppo,215,86.0,velocity,lower_uy,0.375802606344223 +karman_re400,ppo,216,86.4,velocity,upper_ux,0.900729775428772 +karman_re400,ppo,216,86.4,velocity,upper_uy,0.33027127385139465 +karman_re400,ppo,216,86.4,velocity,center_ux,0.9412617683410645 +karman_re400,ppo,216,86.4,velocity,center_uy,0.6592376232147217 +karman_re400,ppo,216,86.4,velocity,lower_ux,0.9692459106445312 +karman_re400,ppo,216,86.4,velocity,lower_uy,0.4252505600452423 +karman_re400,ppo,217,86.8,velocity,upper_ux,0.8093858957290649 +karman_re400,ppo,217,86.8,velocity,upper_uy,0.36672914028167725 +karman_re400,ppo,217,86.8,velocity,center_ux,0.9294090867042542 +karman_re400,ppo,217,86.8,velocity,center_uy,0.6957833766937256 +karman_re400,ppo,217,86.8,velocity,lower_ux,1.0644593238830566 +karman_re400,ppo,217,86.8,velocity,lower_uy,0.45638924837112427 +karman_re400,ppo,218,87.2,velocity,upper_ux,0.7226338386535645 +karman_re400,ppo,218,87.2,velocity,upper_uy,0.3577369451522827 +karman_re400,ppo,218,87.2,velocity,center_ux,0.9147499203681946 +karman_re400,ppo,218,87.2,velocity,center_uy,0.7151605486869812 +karman_re400,ppo,218,87.2,velocity,lower_ux,1.1572767496109009 +karman_re400,ppo,218,87.2,velocity,lower_uy,0.44594699144363403 +karman_re400,ppo,219,87.6,velocity,upper_ux,0.6472413539886475 +karman_re400,ppo,219,87.6,velocity,upper_uy,0.29203593730926514 +karman_re400,ppo,219,87.6,velocity,center_ux,0.8907389044761658 +karman_re400,ppo,219,87.6,velocity,center_uy,0.6842175126075745 +karman_re400,ppo,219,87.6,velocity,lower_ux,1.2423263788223267 +karman_re400,ppo,219,87.6,velocity,lower_uy,0.37786439061164856 +karman_re400,ppo,220,88.0,velocity,upper_ux,0.5950641632080078 +karman_re400,ppo,220,88.0,velocity,upper_uy,0.16856621205806732 +karman_re400,ppo,220,88.0,velocity,center_ux,0.8702324032783508 +karman_re400,ppo,220,88.0,velocity,center_uy,0.4442357122898102 +karman_re400,ppo,220,88.0,velocity,lower_ux,1.2907158136367798 +karman_re400,ppo,220,88.0,velocity,lower_uy,0.23076097667217255 +karman_re400,ppo,221,88.4,velocity,upper_ux,0.5856537222862244 +karman_re400,ppo,221,88.4,velocity,upper_uy,0.005493932869285345 +karman_re400,ppo,221,88.4,velocity,center_ux,0.8756234049797058 +karman_re400,ppo,221,88.4,velocity,center_uy,-0.03569431230425835 +karman_re400,ppo,221,88.4,velocity,lower_ux,1.2713621854782104 +karman_re400,ppo,221,88.4,velocity,lower_uy,0.027156183496117592 +karman_re400,ppo,222,88.8,velocity,upper_ux,0.6370649933815002 +karman_re400,ppo,222,88.8,velocity,upper_uy,-0.14769038558006287 +karman_re400,ppo,222,88.8,velocity,center_ux,0.8974374532699585 +karman_re400,ppo,222,88.8,velocity,center_uy,-0.4671541452407837 +karman_re400,ppo,222,88.8,velocity,lower_ux,1.2189613580703735 +karman_re400,ppo,222,88.8,velocity,lower_uy,-0.1310693323612213 +karman_re400,ppo,223,89.2,velocity,upper_ux,0.7382349967956543 +karman_re400,ppo,223,89.2,velocity,upper_uy,-0.2451636642217636 +karman_re400,ppo,223,89.2,velocity,center_ux,0.9173799157142639 +karman_re400,ppo,223,89.2,velocity,center_uy,-0.6609715819358826 +karman_re400,ppo,223,89.2,velocity,lower_ux,1.148227572441101 +karman_re400,ppo,223,89.2,velocity,lower_uy,-0.23762893676757812 +karman_re400,ppo,224,89.6,velocity,upper_ux,0.8427935838699341 +karman_re400,ppo,224,89.6,velocity,upper_uy,-0.32030612230300903 +karman_re400,ppo,224,89.6,velocity,center_ux,0.9305370450019836 +karman_re400,ppo,224,89.6,velocity,center_uy,-0.6832742094993591 +karman_re400,ppo,224,89.6,velocity,lower_ux,1.0550612211227417 +karman_re400,ppo,224,89.6,velocity,lower_uy,-0.32968589663505554 +karman_re400,ppo,225,90.0,velocity,upper_ux,0.937430202960968 +karman_re400,ppo,225,90.0,velocity,upper_uy,-0.38427621126174927 +karman_re400,ppo,225,90.0,velocity,center_ux,0.9447383284568787 +karman_re400,ppo,225,90.0,velocity,center_uy,-0.6879824995994568 +karman_re400,ppo,225,90.0,velocity,lower_ux,0.9571868181228638 +karman_re400,ppo,225,90.0,velocity,lower_uy,-0.4019349217414856 +karman_re400,ppo,226,90.4,velocity,upper_ux,1.0279935598373413 +karman_re400,ppo,226,90.4,velocity,upper_uy,-0.42260119318962097 +karman_re400,ppo,226,90.4,velocity,center_ux,0.9601545929908752 +karman_re400,ppo,226,90.4,velocity,center_uy,-0.707730770111084 +karman_re400,ppo,226,90.4,velocity,lower_ux,0.8630068898200989 +karman_re400,ppo,226,90.4,velocity,lower_uy,-0.43722835183143616 +karman_re400,ppo,227,90.8,velocity,upper_ux,1.1128263473510742 +karman_re400,ppo,227,90.8,velocity,upper_uy,-0.42094194889068604 +karman_re400,ppo,227,90.8,velocity,center_ux,0.9776818752288818 +karman_re400,ppo,227,90.8,velocity,center_uy,-0.709810197353363 +karman_re400,ppo,227,90.8,velocity,lower_ux,0.771697998046875 +karman_re400,ppo,227,90.8,velocity,lower_uy,-0.42232638597488403 +karman_re400,ppo,228,91.2,velocity,upper_ux,1.186987042427063 +karman_re400,ppo,228,91.2,velocity,upper_uy,-0.3695025146007538 +karman_re400,ppo,228,91.2,velocity,center_ux,1.0007354021072388 +karman_re400,ppo,228,91.2,velocity,center_uy,-0.6579137444496155 +karman_re400,ppo,228,91.2,velocity,lower_ux,0.6861036419868469 +karman_re400,ppo,228,91.2,velocity,lower_uy,-0.3434591591358185 +karman_re400,ppo,229,91.6,velocity,upper_ux,1.2312484979629517 +karman_re400,ppo,229,91.6,velocity,upper_uy,-0.2631721794605255 +karman_re400,ppo,229,91.6,velocity,center_ux,1.0303065776824951 +karman_re400,ppo,229,91.6,velocity,center_uy,-0.422476202249527 +karman_re400,ppo,229,91.6,velocity,lower_ux,0.6193413734436035 +karman_re400,ppo,229,91.6,velocity,lower_uy,-0.19198371469974518 +karman_re400,ppo,230,92.0,velocity,upper_ux,1.2083196640014648 +karman_re400,ppo,230,92.0,velocity,upper_uy,-0.09386101365089417 +karman_re400,ppo,230,92.0,velocity,center_ux,1.0499523878097534 +karman_re400,ppo,230,92.0,velocity,center_uy,0.02636265754699707 +karman_re400,ppo,230,92.0,velocity,lower_ux,0.5989116430282593 +karman_re400,ppo,230,92.0,velocity,lower_uy,0.015039138495922089 +karman_re400,ppo,231,92.4,velocity,upper_ux,1.1316728591918945 +karman_re400,ppo,231,92.4,velocity,upper_uy,0.07581691443920135 +karman_re400,ppo,231,92.4,velocity,center_ux,1.035793423652649 +karman_re400,ppo,231,92.4,velocity,center_uy,0.42620572447776794 +karman_re400,ppo,231,92.4,velocity,lower_ux,0.647135853767395 +karman_re400,ppo,231,92.4,velocity,lower_uy,0.2067331075668335 +karman_re400,ppo,232,92.8,velocity,upper_ux,1.0611655712127686 +karman_re400,ppo,232,92.8,velocity,upper_uy,0.18443897366523743 +karman_re400,ppo,232,92.8,velocity,center_ux,0.9961849451065063 +karman_re400,ppo,232,92.8,velocity,center_uy,0.6006191372871399 +karman_re400,ppo,232,92.8,velocity,lower_ux,0.7509825229644775 +karman_re400,ppo,232,92.8,velocity,lower_uy,0.31116488575935364 +karman_re400,ppo,233,93.2,velocity,upper_ux,0.99408358335495 +karman_re400,ppo,233,93.2,velocity,upper_uy,0.25959646701812744 +karman_re400,ppo,233,93.2,velocity,center_ux,0.9612834453582764 +karman_re400,ppo,233,93.2,velocity,center_uy,0.6305347681045532 +karman_re400,ppo,233,93.2,velocity,lower_ux,0.8610959649085999 +karman_re400,ppo,233,93.2,velocity,lower_uy,0.37032321095466614 +karman_re400,ppo,234,93.6,velocity,upper_ux,0.9102045297622681 +karman_re400,ppo,234,93.6,velocity,upper_uy,0.3246270716190338 +karman_re400,ppo,234,93.6,velocity,center_ux,0.9429901242256165 +karman_re400,ppo,234,93.6,velocity,center_uy,0.6556622385978699 +karman_re400,ppo,234,93.6,velocity,lower_ux,0.9604766964912415 +karman_re400,ppo,234,93.6,velocity,lower_uy,0.42107513546943665 +karman_re400,ppo,235,94.0,velocity,upper_ux,0.8187787532806396 +karman_re400,ppo,235,94.0,velocity,upper_uy,0.36464884877204895 +karman_re400,ppo,235,94.0,velocity,center_ux,0.930915355682373 +karman_re400,ppo,235,94.0,velocity,center_uy,0.6926174163818359 +karman_re400,ppo,235,94.0,velocity,lower_ux,1.0559405088424683 +karman_re400,ppo,235,94.0,velocity,lower_uy,0.4548785090446472 +karman_re400,ppo,236,94.4,velocity,upper_ux,0.730872392654419 +karman_re400,ppo,236,94.4,velocity,upper_uy,0.3606940507888794 +karman_re400,ppo,236,94.4,velocity,center_ux,0.9162930250167847 +karman_re400,ppo,236,94.4,velocity,center_uy,0.714295506477356 +karman_re400,ppo,236,94.4,velocity,lower_ux,1.1487772464752197 +karman_re400,ppo,236,94.4,velocity,lower_uy,0.44951754808425903 +karman_re400,ppo,237,94.8,velocity,upper_ux,0.6532866954803467 +karman_re400,ppo,237,94.8,velocity,upper_uy,0.3008136451244354 +karman_re400,ppo,237,94.8,velocity,center_ux,0.8921476006507874 +karman_re400,ppo,237,94.8,velocity,center_uy,0.6927217245101929 +karman_re400,ppo,237,94.8,velocity,lower_ux,1.2346168756484985 +karman_re400,ppo,237,94.8,velocity,lower_uy,0.38765883445739746 +karman_re400,ppo,238,95.2,velocity,upper_ux,0.5979357361793518 +karman_re400,ppo,238,95.2,velocity,upper_uy,0.18273991346359253 +karman_re400,ppo,238,95.2,velocity,center_ux,0.8691772222518921 +karman_re400,ppo,238,95.2,velocity,center_uy,0.4810158908367157 +karman_re400,ppo,238,95.2,velocity,lower_ux,1.2885099649429321 +karman_re400,ppo,238,95.2,velocity,lower_uy,0.2490254044532776 +karman_re400,ppo,239,95.6,velocity,upper_ux,0.5843254327774048 +karman_re400,ppo,239,95.6,velocity,upper_uy,0.022135067731142044 +karman_re400,ppo,239,95.6,velocity,center_ux,0.8726600408554077 +karman_re400,ppo,239,95.6,velocity,center_uy,0.014780644327402115 +karman_re400,ppo,239,95.6,velocity,lower_ux,1.2761991024017334 +karman_re400,ppo,239,95.6,velocity,lower_uy,0.046194955706596375 +karman_re400,ppo,240,96.0,velocity,upper_ux,0.6300820112228394 +karman_re400,ppo,240,96.0,velocity,upper_uy,-0.1347903609275818 +karman_re400,ppo,240,96.0,velocity,center_ux,0.8945478200912476 +karman_re400,ppo,240,96.0,velocity,center_uy,-0.43461185693740845 +karman_re400,ppo,240,96.0,velocity,lower_ux,1.2259390354156494 +karman_re400,ppo,240,96.0,velocity,lower_uy,-0.1192498579621315 +karman_re400,ppo,241,96.4,velocity,upper_ux,0.7281124591827393 +karman_re400,ppo,241,96.4,velocity,upper_uy,-0.2372886687517166 +karman_re400,ppo,241,96.4,velocity,center_ux,0.9155829548835754 +karman_re400,ppo,241,96.4,velocity,center_uy,-0.6522122025489807 +karman_re400,ppo,241,96.4,velocity,lower_ux,1.157151460647583 +karman_re400,ppo,241,96.4,velocity,lower_uy,-0.22884567081928253 +karman_re400,ppo,242,96.8,velocity,upper_ux,0.8331968784332275 +karman_re400,ppo,242,96.8,velocity,upper_uy,-0.3128316402435303 +karman_re400,ppo,242,96.8,velocity,center_ux,0.9289427995681763 +karman_re400,ppo,242,96.8,velocity,center_uy,-0.6839834451675415 +karman_re400,ppo,242,96.8,velocity,lower_ux,1.0647484064102173 +karman_re400,ppo,242,96.8,velocity,lower_uy,-0.3220493793487549 +karman_re400,ppo,243,97.2,velocity,upper_ux,0.927621603012085 +karman_re400,ppo,243,97.2,velocity,upper_uy,-0.37880516052246094 +karman_re400,ppo,243,97.2,velocity,center_ux,0.9425603747367859 +karman_re400,ppo,243,97.2,velocity,center_uy,-0.6865138411521912 +karman_re400,ppo,243,97.2,velocity,lower_ux,0.9659669995307922 +karman_re400,ppo,243,97.2,velocity,lower_uy,-0.3969888389110565 +karman_re400,ppo,244,97.6,velocity,upper_ux,1.0187736749649048 +karman_re400,ppo,244,97.6,velocity,upper_uy,-0.4199225604534149 +karman_re400,ppo,244,97.6,velocity,center_ux,0.9584446549415588 +karman_re400,ppo,244,97.6,velocity,center_uy,-0.7061249017715454 +karman_re400,ppo,244,97.6,velocity,lower_ux,0.8718358874320984 +karman_re400,ppo,244,97.6,velocity,lower_uy,-0.4363788962364197 +karman_re400,ppo,245,98.0,velocity,upper_ux,1.105188012123108 +karman_re400,ppo,245,98.0,velocity,upper_uy,-0.4230225682258606 +karman_re400,ppo,245,98.0,velocity,center_ux,0.9768657684326172 +karman_re400,ppo,245,98.0,velocity,center_uy,-0.7110124230384827 +karman_re400,ppo,245,98.0,velocity,lower_ux,0.7811336517333984 +karman_re400,ppo,245,98.0,velocity,lower_uy,-0.4269014596939087 +karman_re400,ppo,246,98.4,velocity,upper_ux,1.1808760166168213 +karman_re400,ppo,246,98.4,velocity,upper_uy,-0.3763565421104431 +karman_re400,ppo,246,98.4,velocity,center_ux,0.9998871088027954 +karman_re400,ppo,246,98.4,velocity,center_uy,-0.6678079962730408 +karman_re400,ppo,246,98.4,velocity,lower_ux,0.6946313381195068 +karman_re400,ppo,246,98.4,velocity,lower_uy,-0.3546169400215149 +karman_re400,ppo,247,98.8,velocity,upper_ux,1.2292462587356567 +karman_re400,ppo,247,98.8,velocity,upper_uy,-0.2764759659767151 +karman_re400,ppo,247,98.8,velocity,center_ux,1.029452919960022 +karman_re400,ppo,247,98.8,velocity,center_uy,-0.4563847482204437 +karman_re400,ppo,247,98.8,velocity,lower_ux,0.6244791150093079 +karman_re400,ppo,247,98.8,velocity,lower_uy,-0.20982715487480164 +karman_re400,ppo,248,99.2,velocity,upper_ux,1.212986707687378 +karman_re400,ppo,248,99.2,velocity,upper_uy,-0.1123814508318901 +karman_re400,ppo,248,99.2,velocity,center_ux,1.051048994064331 +karman_re400,ppo,248,99.2,velocity,center_uy,-0.01918208971619606 +karman_re400,ppo,248,99.2,velocity,lower_ux,0.5975451469421387 +karman_re400,ppo,248,99.2,velocity,lower_uy,-0.00557381147518754 +karman_re400,ppo,249,99.6,velocity,upper_ux,1.1381255388259888 +karman_re400,ppo,249,99.6,velocity,upper_uy,0.06098714843392372 +karman_re400,ppo,249,99.6,velocity,center_ux,1.0396071672439575 +karman_re400,ppo,249,99.6,velocity,center_uy,0.3963485062122345 +karman_re400,ppo,249,99.6,velocity,lower_ux,0.638547420501709 +karman_re400,ppo,249,99.6,velocity,lower_uy,0.1920144259929657 +karman_re400,ppo,250,100.0,velocity,upper_ux,1.0665589570999146 +karman_re400,ppo,250,100.0,velocity,upper_uy,0.1753554791212082 +karman_re400,ppo,250,100.0,velocity,center_ux,1.001296043395996 +karman_re400,ppo,250,100.0,velocity,center_uy,0.5918804407119751 +karman_re400,ppo,250,100.0,velocity,lower_ux,0.7398412823677063 +karman_re400,ppo,250,100.0,velocity,lower_uy,0.30484017729759216 +karman_re400,ppo,251,100.4,velocity,upper_ux,1.0013412237167358 +karman_re400,ppo,251,100.4,velocity,upper_uy,0.2518875300884247 +karman_re400,ppo,251,100.4,velocity,center_ux,0.9648469686508179 +karman_re400,ppo,251,100.4,velocity,center_uy,0.6281480193138123 +karman_re400,ppo,251,100.4,velocity,lower_ux,0.8516403436660767 +karman_re400,ppo,251,100.4,velocity,lower_uy,0.3652176558971405 +karman_re400,ppo,252,100.8,velocity,upper_ux,0.9191166758537292 +karman_re400,ppo,252,100.8,velocity,upper_uy,0.318193644285202 +karman_re400,ppo,252,100.8,velocity,center_ux,0.9448071122169495 +karman_re400,ppo,252,100.8,velocity,center_uy,0.6515445113182068 +karman_re400,ppo,252,100.8,velocity,lower_ux,0.9516588449478149 +karman_re400,ppo,252,100.8,velocity,lower_uy,0.4169776439666748 +karman_re400,ppo,253,101.2,velocity,upper_ux,0.8274280428886414 +karman_re400,ppo,253,101.2,velocity,upper_uy,0.3616507053375244 +karman_re400,ppo,253,101.2,velocity,center_ux,0.9318411350250244 +karman_re400,ppo,253,101.2,velocity,center_uy,0.6887857913970947 +karman_re400,ppo,253,101.2,velocity,lower_ux,1.0468597412109375 +karman_re400,ppo,253,101.2,velocity,lower_uy,0.4531141221523285 +karman_re400,ppo,254,101.6,velocity,upper_ux,0.738290548324585 +karman_re400,ppo,254,101.6,velocity,upper_uy,0.36276835203170776 +karman_re400,ppo,254,101.6,velocity,center_ux,0.916831910610199 +karman_re400,ppo,254,101.6,velocity,center_uy,0.7127742171287537 +karman_re400,ppo,254,101.6,velocity,lower_ux,1.1392995119094849 +karman_re400,ppo,254,101.6,velocity,lower_uy,0.45269981026649475 +karman_re400,ppo,255,102.0,velocity,upper_ux,0.659588634967804 +karman_re400,ppo,255,102.0,velocity,upper_uy,0.30892449617385864 +karman_re400,ppo,255,102.0,velocity,center_ux,0.8934485912322998 +karman_re400,ppo,255,102.0,velocity,center_uy,0.6993828415870667 +karman_re400,ppo,255,102.0,velocity,lower_ux,1.2264952659606934 +karman_re400,ppo,255,102.0,velocity,lower_uy,0.3969613015651703 +karman_re400,ppo,256,102.4,velocity,upper_ux,0.6022921204566956 +karman_re400,ppo,256,102.4,velocity,upper_uy,0.19654512405395508 +karman_re400,ppo,256,102.4,velocity,center_ux,0.8691897392272949 +karman_re400,ppo,256,102.4,velocity,center_uy,0.5155287981033325 +karman_re400,ppo,256,102.4,velocity,lower_ux,1.2865970134735107 +karman_re400,ppo,256,102.4,velocity,lower_uy,0.2669299244880676 +karman_re400,ppo,257,102.8,velocity,upper_ux,0.5839489698410034 +karman_re400,ppo,257,102.8,velocity,upper_uy,0.03891655430197716 +karman_re400,ppo,257,102.8,velocity,center_ux,0.8696624040603638 +karman_re400,ppo,257,102.8,velocity,center_uy,0.06608258932828903 +karman_re400,ppo,257,102.8,velocity,lower_ux,1.2811789512634277 +karman_re400,ppo,257,102.8,velocity,lower_uy,0.06609969586133957 +karman_re400,ppo,258,103.2,velocity,upper_ux,0.6233029365539551 +karman_re400,ppo,258,103.2,velocity,upper_uy,-0.12096066772937775 +karman_re400,ppo,258,103.2,velocity,center_ux,0.8905301690101624 +karman_re400,ppo,258,103.2,velocity,center_uy,-0.3991925120353699 +karman_re400,ppo,258,103.2,velocity,lower_ux,1.2326542139053345 +karman_re400,ppo,258,103.2,velocity,lower_uy,-0.106537826359272 +karman_re400,ppo,259,103.6,velocity,upper_ux,0.717238187789917 +karman_re400,ppo,259,103.6,velocity,upper_uy,-0.22883683443069458 +karman_re400,ppo,259,103.6,velocity,center_ux,0.9122355580329895 +karman_re400,ppo,259,103.6,velocity,center_uy,-0.6414942145347595 +karman_re400,ppo,259,103.6,velocity,lower_ux,1.165360689163208 +karman_re400,ppo,259,103.6,velocity,lower_uy,-0.21981550753116608 +karman_re400,ppo,260,104.0,velocity,upper_ux,0.8226926326751709 +karman_re400,ppo,260,104.0,velocity,upper_uy,-0.30501842498779297 +karman_re400,ppo,260,104.0,velocity,center_ux,0.9261224269866943 +karman_re400,ppo,260,104.0,velocity,center_uy,-0.684739887714386 +karman_re400,ppo,260,104.0,velocity,lower_ux,1.0740642547607422 +karman_re400,ppo,260,104.0,velocity,lower_uy,-0.31413203477859497 +karman_re400,ppo,261,104.4,velocity,upper_ux,0.9182627201080322 +karman_re400,ppo,261,104.4,velocity,upper_uy,-0.3730330765247345 +karman_re400,ppo,261,104.4,velocity,center_ux,0.9404904842376709 +karman_re400,ppo,261,104.4,velocity,center_uy,-0.6853669881820679 +karman_re400,ppo,261,104.4,velocity,lower_ux,0.9757758378982544 +karman_re400,ppo,261,104.4,velocity,lower_uy,-0.3915973901748657 +karman_re400,ppo,262,104.8,velocity,upper_ux,1.0103199481964111 +karman_re400,ppo,262,104.8,velocity,upper_uy,-0.4170383810997009 +karman_re400,ppo,262,104.8,velocity,center_ux,0.9570295214653015 +karman_re400,ppo,262,104.8,velocity,center_uy,-0.7044565677642822 +karman_re400,ppo,262,104.8,velocity,lower_ux,0.8818163275718689 +karman_re400,ppo,262,104.8,velocity,lower_uy,-0.4350367784500122 +karman_re400,ppo,263,105.2,velocity,upper_ux,1.0974149703979492 +karman_re400,ppo,263,105.2,velocity,upper_uy,-0.42488422989845276 +karman_re400,ppo,263,105.2,velocity,center_ux,0.9752139449119568 +karman_re400,ppo,263,105.2,velocity,center_uy,-0.7119808793067932 +karman_re400,ppo,263,105.2,velocity,lower_ux,0.7907602190971375 +karman_re400,ppo,263,105.2,velocity,lower_uy,-0.43094107508659363 +karman_re400,ppo,264,105.6,velocity,upper_ux,1.1741877794265747 +karman_re400,ppo,264,105.6,velocity,upper_uy,-0.3831098675727844 +karman_re400,ppo,264,105.6,velocity,center_ux,0.9972755312919617 +karman_re400,ppo,264,105.6,velocity,center_uy,-0.676433265209198 +karman_re400,ppo,264,105.6,velocity,lower_ux,0.7031123638153076 +karman_re400,ppo,264,105.6,velocity,lower_uy,-0.3653263449668884 +karman_re400,ppo,265,106.0,velocity,upper_ux,1.226151943206787 +karman_re400,ppo,265,106.0,velocity,upper_uy,-0.2894056439399719 +karman_re400,ppo,265,106.0,velocity,center_ux,1.025681972503662 +karman_re400,ppo,265,106.0,velocity,center_uy,-0.4890068769454956 +karman_re400,ppo,265,106.0,velocity,lower_ux,0.629669189453125 +karman_re400,ppo,265,106.0,velocity,lower_uy,-0.22767065465450287 +karman_re400,ppo,266,106.4,velocity,upper_ux,1.217517375946045 +karman_re400,ppo,266,106.4,velocity,upper_uy,-0.13072699308395386 +karman_re400,ppo,266,106.4,velocity,center_ux,1.0494740009307861 +karman_re400,ppo,266,106.4,velocity,center_uy,-0.06696100533008575 +karman_re400,ppo,266,106.4,velocity,lower_ux,0.5970740914344788 +karman_re400,ppo,266,106.4,velocity,lower_uy,-0.02728711999952793 +karman_re400,ppo,267,106.8,velocity,upper_ux,1.146449089050293 +karman_re400,ppo,267,106.8,velocity,upper_uy,0.046109236776828766 +karman_re400,ppo,267,106.8,velocity,center_ux,1.0426149368286133 +karman_re400,ppo,267,106.8,velocity,center_uy,0.3633292317390442 +karman_re400,ppo,267,106.8,velocity,lower_ux,0.6315929889678955 +karman_re400,ppo,267,106.8,velocity,lower_uy,0.17548105120658875 +karman_re400,ppo,268,107.2,velocity,upper_ux,1.0732662677764893 +karman_re400,ppo,268,107.2,velocity,upper_uy,0.16675756871700287 +karman_re400,ppo,268,107.2,velocity,center_ux,1.006218671798706 +karman_re400,ppo,268,107.2,velocity,center_uy,0.582034170627594 +karman_re400,ppo,268,107.2,velocity,lower_ux,0.7290340662002563 +karman_re400,ppo,268,107.2,velocity,lower_uy,0.29761940240859985 +karman_re400,ppo,269,107.6,velocity,upper_ux,1.0086939334869385 +karman_re400,ppo,269,107.6,velocity,upper_uy,0.24504171311855316 +karman_re400,ppo,269,107.6,velocity,center_ux,0.9681946635246277 +karman_re400,ppo,269,107.6,velocity,center_uy,0.6266080737113953 +karman_re400,ppo,269,107.6,velocity,lower_ux,0.841559648513794 +karman_re400,ppo,269,107.6,velocity,lower_uy,0.3598000705242157 +karman_re400,ppo,270,108.0,velocity,upper_ux,0.9276684522628784 +karman_re400,ppo,270,108.0,velocity,upper_uy,0.31249791383743286 +karman_re400,ppo,270,108.0,velocity,center_ux,0.946276843547821 +karman_re400,ppo,270,108.0,velocity,center_uy,0.6482440829277039 +karman_re400,ppo,270,108.0,velocity,lower_ux,0.9419312477111816 +karman_re400,ppo,270,108.0,velocity,lower_uy,0.41244223713874817 +karman_re400,ppo,271,108.4,velocity,upper_ux,0.8357849717140198 +karman_re400,ppo,271,108.4,velocity,upper_uy,0.3591350317001343 +karman_re400,ppo,271,108.4,velocity,center_ux,0.9326490759849548 +karman_re400,ppo,271,108.4,velocity,center_uy,0.6852741241455078 +karman_re400,ppo,271,108.4,velocity,lower_ux,1.0368332862854004 +karman_re400,ppo,271,108.4,velocity,lower_uy,0.4506027102470398 +karman_re400,ppo,272,108.8,velocity,upper_ux,0.746601402759552 +karman_re400,ppo,272,108.8,velocity,upper_uy,0.3650980293750763 +karman_re400,ppo,272,108.8,velocity,center_ux,0.9187458157539368 +karman_re400,ppo,272,108.8,velocity,center_uy,0.7114509344100952 +karman_re400,ppo,272,108.8,velocity,lower_ux,1.1300065517425537 +karman_re400,ppo,272,108.8,velocity,lower_uy,0.45493054389953613 +karman_re400,ppo,273,109.2,velocity,upper_ux,0.667141854763031 +karman_re400,ppo,273,109.2,velocity,upper_uy,0.31696251034736633 +karman_re400,ppo,273,109.2,velocity,center_ux,0.8972389101982117 +karman_re400,ppo,273,109.2,velocity,center_uy,0.7047789096832275 +karman_re400,ppo,273,109.2,velocity,lower_ux,1.2187397480010986 +karman_re400,ppo,273,109.2,velocity,lower_uy,0.40507054328918457 +karman_re400,ppo,274,109.6,velocity,upper_ux,0.6070204973220825 +karman_re400,ppo,274,109.6,velocity,upper_uy,0.2100001722574234 +karman_re400,ppo,274,109.6,velocity,center_ux,0.8721864223480225 +karman_re400,ppo,274,109.6,velocity,center_uy,0.546593427658081 +karman_re400,ppo,274,109.6,velocity,lower_ux,1.2834020853042603 +karman_re400,ppo,274,109.6,velocity,lower_uy,0.28364524245262146 +karman_re400,ppo,275,110.0,velocity,upper_ux,0.5835643410682678 +karman_re400,ppo,275,110.0,velocity,upper_uy,0.055324725806713104 +karman_re400,ppo,275,110.0,velocity,center_ux,0.8697893023490906 +karman_re400,ppo,275,110.0,velocity,center_uy,0.11620957404375076 +karman_re400,ppo,275,110.0,velocity,lower_ux,1.284170389175415 +karman_re400,ppo,275,110.0,velocity,lower_uy,0.08650384098291397 +karman_re400,ppo,276,110.4,velocity,upper_ux,0.6161439418792725 +karman_re400,ppo,276,110.4,velocity,upper_uy,-0.10720914602279663 +karman_re400,ppo,276,110.4,velocity,center_ux,0.888725996017456 +karman_re400,ppo,276,110.4,velocity,center_uy,-0.3619075417518616 +karman_re400,ppo,276,110.4,velocity,lower_ux,1.2370271682739258 +karman_re400,ppo,276,110.4,velocity,lower_uy,-0.09244867414236069 +karman_re400,ppo,277,110.8,velocity,upper_ux,0.7060392498970032 +karman_re400,ppo,277,110.8,velocity,upper_uy,-0.2208411991596222 +karman_re400,ppo,277,110.8,velocity,center_ux,0.9105172753334045 +karman_re400,ppo,277,110.8,velocity,center_uy,-0.6284712553024292 +karman_re400,ppo,277,110.8,velocity,lower_ux,1.1720541715621948 +karman_re400,ppo,277,110.8,velocity,lower_uy,-0.20938830077648163 +karman_re400,ppo,278,111.2,velocity,upper_ux,0.8130024075508118 +karman_re400,ppo,278,111.2,velocity,upper_uy,-0.29781845211982727 +karman_re400,ppo,278,111.2,velocity,center_ux,0.925264298915863 +karman_re400,ppo,278,111.2,velocity,center_uy,-0.6846576929092407 +karman_re400,ppo,278,111.2,velocity,lower_ux,1.0836139917373657 +karman_re400,ppo,278,111.2,velocity,lower_uy,-0.30466413497924805 +karman_re400,ppo,279,111.6,velocity,upper_ux,0.9096592664718628 +karman_re400,ppo,279,111.6,velocity,upper_uy,-0.36754366755485535 +karman_re400,ppo,279,111.6,velocity,center_ux,0.9394335150718689 +karman_re400,ppo,279,111.6,velocity,center_uy,-0.6840682029724121 +karman_re400,ppo,279,111.6,velocity,lower_ux,0.9856016635894775 +karman_re400,ppo,279,111.6,velocity,lower_uy,-0.38458365201950073 +karman_re400,ppo,280,112.0,velocity,upper_ux,1.0019376277923584 +karman_re400,ppo,280,112.0,velocity,upper_uy,-0.41425323486328125 +karman_re400,ppo,280,112.0,velocity,center_ux,0.9554615020751953 +karman_re400,ppo,280,112.0,velocity,center_uy,-0.7024792432785034 +karman_re400,ppo,280,112.0,velocity,lower_ux,0.8910033702850342 +karman_re400,ppo,280,112.0,velocity,lower_uy,-0.4320888817310333 +karman_re400,ppo,281,112.4,velocity,upper_ux,1.0893073081970215 +karman_re400,ppo,281,112.4,velocity,upper_uy,-0.4265626072883606 +karman_re400,ppo,281,112.4,velocity,center_ux,0.9726762175559998 +karman_re400,ppo,281,112.4,velocity,center_uy,-0.7125589847564697 +karman_re400,ppo,281,112.4,velocity,lower_ux,0.7992518544197083 +karman_re400,ppo,281,112.4,velocity,lower_uy,-0.4333415627479553 +karman_re400,ppo,282,112.8,velocity,upper_ux,1.1669306755065918 +karman_re400,ppo,282,112.8,velocity,upper_uy,-0.38957294821739197 +karman_re400,ppo,282,112.8,velocity,center_ux,0.9932365417480469 +karman_re400,ppo,282,112.8,velocity,center_uy,-0.6839195489883423 +karman_re400,ppo,282,112.8,velocity,lower_ux,0.7105857133865356 +karman_re400,ppo,282,112.8,velocity,lower_uy,-0.3744973838329315 +karman_re400,ppo,283,113.2,velocity,upper_ux,1.2231452465057373 +karman_re400,ppo,283,113.2,velocity,upper_uy,-0.3015477955341339 +karman_re400,ppo,283,113.2,velocity,center_ux,1.0208317041397095 +karman_re400,ppo,283,113.2,velocity,center_uy,-0.5195891857147217 +karman_re400,ppo,283,113.2,velocity,lower_ux,0.6353451609611511 +karman_re400,ppo,283,113.2,velocity,lower_uy,-0.24438297748565674 +karman_re400,ppo,284,113.6,velocity,upper_ux,1.222631812095642 +karman_re400,ppo,284,113.6,velocity,upper_uy,-0.1482744812965393 +karman_re400,ppo,284,113.6,velocity,center_ux,1.0466203689575195 +karman_re400,ppo,284,113.6,velocity,center_uy,-0.11488866060972214 +karman_re400,ppo,284,113.6,velocity,lower_ux,0.5980837345123291 +karman_re400,ppo,284,113.6,velocity,lower_uy,-0.04885251075029373 +karman_re400,ppo,285,114.0,velocity,upper_ux,1.1555262804031372 +karman_re400,ppo,285,114.0,velocity,upper_uy,0.03125070780515671 +karman_re400,ppo,285,114.0,velocity,center_ux,1.0436776876449585 +karman_re400,ppo,285,114.0,velocity,center_uy,0.32859528064727783 +karman_re400,ppo,285,114.0,velocity,lower_ux,0.625460684299469 +karman_re400,ppo,285,114.0,velocity,lower_uy,0.1576215624809265 +karman_re400,ppo,286,114.4,velocity,upper_ux,1.0805894136428833 +karman_re400,ppo,286,114.4,velocity,upper_uy,0.15821973979473114 +karman_re400,ppo,286,114.4,velocity,center_ux,1.0095844268798828 +karman_re400,ppo,286,114.4,velocity,center_uy,0.5714324712753296 +karman_re400,ppo,286,114.4,velocity,lower_ux,0.7180262207984924 +karman_re400,ppo,286,114.4,velocity,lower_uy,0.28911536931991577 +karman_re400,ppo,287,114.8,velocity,upper_ux,1.0157980918884277 +karman_re400,ppo,287,114.8,velocity,upper_uy,0.23864632844924927 +karman_re400,ppo,287,114.8,velocity,center_ux,0.9703681468963623 +karman_re400,ppo,287,114.8,velocity,center_uy,0.6260432600975037 +karman_re400,ppo,287,114.8,velocity,lower_ux,0.8305345177650452 +karman_re400,ppo,287,114.8,velocity,lower_uy,0.35388949513435364 +karman_re400,ppo,288,115.2,velocity,upper_ux,0.9361411929130554 +karman_re400,ppo,288,115.2,velocity,upper_uy,0.3071623742580414 +karman_re400,ppo,288,115.2,velocity,center_ux,0.9471435546875 +karman_re400,ppo,288,115.2,velocity,center_uy,0.6458712816238403 +karman_re400,ppo,288,115.2,velocity,lower_ux,0.9316532015800476 +karman_re400,ppo,288,115.2,velocity,lower_uy,0.40752938389778137 +karman_re400,ppo,289,115.6,velocity,upper_ux,0.8451682329177856 +karman_re400,ppo,289,115.6,velocity,upper_uy,0.35675129294395447 +karman_re400,ppo,289,115.6,velocity,center_ux,0.934065043926239 +karman_re400,ppo,289,115.6,velocity,center_uy,0.6821929216384888 +karman_re400,ppo,289,115.6,velocity,lower_ux,1.0274834632873535 +karman_re400,ppo,289,115.6,velocity,lower_uy,0.44767189025878906 +karman_re400,ppo,290,116.0,velocity,upper_ux,0.7557114958763123 +karman_re400,ppo,290,116.0,velocity,upper_uy,0.36730679869651794 +karman_re400,ppo,290,116.0,velocity,center_ux,0.9211235046386719 +karman_re400,ppo,290,116.0,velocity,center_uy,0.710328996181488 +karman_re400,ppo,290,116.0,velocity,lower_ux,1.1213486194610596 +karman_re400,ppo,290,116.0,velocity,lower_uy,0.4565506875514984 +karman_re400,ppo,291,116.4,velocity,upper_ux,0.6747939586639404 +karman_re400,ppo,291,116.4,velocity,upper_uy,0.3246585428714752 +karman_re400,ppo,291,116.4,velocity,center_ux,0.9008099436759949 +karman_re400,ppo,291,116.4,velocity,center_uy,0.7090251445770264 +karman_re400,ppo,291,116.4,velocity,lower_ux,1.2108246088027954 +karman_re400,ppo,291,116.4,velocity,lower_uy,0.4124037027359009 +karman_re400,ppo,292,116.8,velocity,upper_ux,0.6116300821304321 +karman_re400,ppo,292,116.8,velocity,upper_uy,0.2230372577905655 +karman_re400,ppo,292,116.8,velocity,center_ux,0.8750097155570984 +karman_re400,ppo,292,116.8,velocity,center_uy,0.5743368268013 +karman_re400,ppo,292,116.8,velocity,lower_ux,1.2791770696640015 +karman_re400,ppo,292,116.8,velocity,lower_uy,0.29923924803733826 +karman_re400,ppo,293,117.2,velocity,upper_ux,0.5830260515213013 +karman_re400,ppo,293,117.2,velocity,upper_uy,0.07160783559083939 +karman_re400,ppo,293,117.2,velocity,center_ux,0.8696616888046265 +karman_re400,ppo,293,117.2,velocity,center_uy,0.16548475623130798 +karman_re400,ppo,293,117.2,velocity,lower_ux,1.2860146760940552 +karman_re400,ppo,293,117.2,velocity,lower_uy,0.10678373277187347 +karman_re400,ppo,294,117.6,velocity,upper_ux,0.6096962094306946 +karman_re400,ppo,294,117.6,velocity,upper_uy,-0.09306100755929947 +karman_re400,ppo,294,117.6,velocity,center_ux,0.8875309824943542 +karman_re400,ppo,294,117.6,velocity,center_uy,-0.322526216506958 +karman_re400,ppo,294,117.6,velocity,lower_ux,1.2414145469665527 +karman_re400,ppo,294,117.6,velocity,lower_uy,-0.07799803465604782 +karman_re400,ppo,295,118.0,velocity,upper_ux,0.695854127407074 +karman_re400,ppo,295,118.0,velocity,upper_uy,-0.21277303993701935 +karman_re400,ppo,295,118.0,velocity,center_ux,0.9100937843322754 +karman_re400,ppo,295,118.0,velocity,center_uy,-0.6134555339813232 +karman_re400,ppo,295,118.0,velocity,lower_ux,1.1792596578598022 +karman_re400,ppo,295,118.0,velocity,lower_uy,-0.19908365607261658 +karman_re400,ppo,296,118.4,velocity,upper_ux,0.8034995794296265 +karman_re400,ppo,296,118.4,velocity,upper_uy,-0.29084986448287964 +karman_re400,ppo,296,118.4,velocity,center_ux,0.9251382946968079 +karman_re400,ppo,296,118.4,velocity,center_uy,-0.6841264963150024 +karman_re400,ppo,296,118.4,velocity,lower_ux,1.0931410789489746 +karman_re400,ppo,296,118.4,velocity,lower_uy,-0.2953312397003174 +karman_re400,ppo,297,118.8,velocity,upper_ux,0.9008840918540955 +karman_re400,ppo,297,118.8,velocity,upper_uy,-0.36189034581184387 +karman_re400,ppo,297,118.8,velocity,center_ux,0.9386225938796997 +karman_re400,ppo,297,118.8,velocity,center_uy,-0.6830779910087585 +karman_re400,ppo,297,118.8,velocity,lower_ux,0.9950166344642639 +karman_re400,ppo,297,118.8,velocity,lower_uy,-0.3775272071361542 +karman_re400,ppo,298,119.2,velocity,upper_ux,0.992950975894928 +karman_re400,ppo,298,119.2,velocity,upper_uy,-0.4110378623008728 +karman_re400,ppo,298,119.2,velocity,center_ux,0.9538293480873108 +karman_re400,ppo,298,119.2,velocity,center_uy,-0.7004425525665283 +karman_re400,ppo,298,119.2,velocity,lower_ux,0.8994022607803345 +karman_re400,ppo,298,119.2,velocity,lower_uy,-0.4289102554321289 +karman_re400,ppo,299,119.6,velocity,upper_ux,1.0806598663330078 +karman_re400,ppo,299,119.6,velocity,upper_uy,-0.4274994134902954 +karman_re400,ppo,299,119.6,velocity,center_ux,0.9704996347427368 +karman_re400,ppo,299,119.6,velocity,center_uy,-0.7127988934516907 +karman_re400,ppo,299,119.6,velocity,lower_ux,0.8071963787078857 +karman_re400,ppo,299,119.6,velocity,lower_uy,-0.4352830946445465 +karman_re400,ppo,300,120.0,velocity,upper_ux,1.1600143909454346 +karman_re400,ppo,300,120.0,velocity,upper_uy,-0.3952396810054779 +karman_re400,ppo,300,120.0,velocity,center_ux,0.9911437034606934 +karman_re400,ppo,300,120.0,velocity,center_uy,-0.6900683641433716 +karman_re400,ppo,300,120.0,velocity,lower_ux,0.7185952663421631 +karman_re400,ppo,300,120.0,velocity,lower_uy,-0.3829280734062195 +karman_re400,ppo,301,120.4,velocity,upper_ux,1.219926118850708 +karman_re400,ppo,301,120.4,velocity,upper_uy,-0.31263861060142517 +karman_re400,ppo,301,120.4,velocity,center_ux,1.0186349153518677 +karman_re400,ppo,301,120.4,velocity,center_uy,-0.5464763045310974 +karman_re400,ppo,301,120.4,velocity,lower_ux,0.6416389346122742 +karman_re400,ppo,301,120.4,velocity,lower_uy,-0.25999829173088074 +karman_re400,ppo,302,120.8,velocity,upper_ux,1.2264212369918823 +karman_re400,ppo,302,120.8,velocity,upper_uy,-0.1654842048883438 +karman_re400,ppo,302,120.8,velocity,center_ux,1.0457851886749268 +karman_re400,ppo,302,120.8,velocity,center_uy,-0.160623699426651 +karman_re400,ppo,302,120.8,velocity,lower_ux,0.5993324518203735 +karman_re400,ppo,302,120.8,velocity,lower_uy,-0.06941109150648117 +karman_re400,ppo,303,121.2,velocity,upper_ux,1.1634396314620972 +karman_re400,ppo,303,121.2,velocity,upper_uy,0.015286284498870373 +karman_re400,ppo,303,121.2,velocity,center_ux,1.0458697080612183 +karman_re400,ppo,303,121.2,velocity,center_uy,0.29276445508003235 +karman_re400,ppo,303,121.2,velocity,lower_ux,0.6195296049118042 +karman_re400,ppo,303,121.2,velocity,lower_uy,0.13986586034297943 +karman_re400,ppo,304,121.6,velocity,upper_ux,1.0865488052368164 +karman_re400,ppo,304,121.6,velocity,upper_uy,0.14846284687519073 +karman_re400,ppo,304,121.6,velocity,center_ux,1.013197660446167 +karman_re400,ppo,304,121.6,velocity,center_uy,0.5585595369338989 +karman_re400,ppo,304,121.6,velocity,lower_ux,0.7066810727119446 +karman_re400,ppo,304,121.6,velocity,lower_uy,0.28046107292175293 +karman_re400,ppo,305,122.0,velocity,upper_ux,1.0221383571624756 +karman_re400,ppo,305,122.0,velocity,upper_uy,0.2313271313905716 +karman_re400,ppo,305,122.0,velocity,center_ux,0.9731229543685913 +karman_re400,ppo,305,122.0,velocity,center_uy,0.6244677305221558 +karman_re400,ppo,305,122.0,velocity,lower_ux,0.8196187615394592 +karman_re400,ppo,305,122.0,velocity,lower_uy,0.3482726812362671 +karman_re400,ppo,306,122.4,velocity,upper_ux,0.9449220299720764 +karman_re400,ppo,306,122.4,velocity,upper_uy,0.30075162649154663 +karman_re400,ppo,306,122.4,velocity,center_ux,0.9489054679870605 +karman_re400,ppo,306,122.4,velocity,center_uy,0.6430198550224304 +karman_re400,ppo,306,122.4,velocity,lower_ux,0.922420859336853 +karman_re400,ppo,306,122.4,velocity,lower_uy,0.4027712941169739 +karman_re400,ppo,307,122.8,velocity,upper_ux,0.8545336723327637 +karman_re400,ppo,307,122.8,velocity,upper_uy,0.3531394898891449 +karman_re400,ppo,307,122.8,velocity,center_ux,0.9354605674743652 +karman_re400,ppo,307,122.8,velocity,center_uy,0.6785286068916321 +karman_re400,ppo,307,122.8,velocity,lower_ux,1.018722414970398 +karman_re400,ppo,307,122.8,velocity,lower_uy,0.44477683305740356 +karman_re400,ppo,308,123.2,velocity,upper_ux,0.7643895149230957 +karman_re400,ppo,308,123.2,velocity,upper_uy,0.3682471513748169 +karman_re400,ppo,308,123.2,velocity,center_ux,0.9225789904594421 +karman_re400,ppo,308,123.2,velocity,center_uy,0.7085555791854858 +karman_re400,ppo,308,123.2,velocity,lower_ux,1.1127392053604126 +karman_re400,ppo,308,123.2,velocity,lower_uy,0.45797598361968994 +karman_re400,ppo,309,123.6,velocity,upper_ux,0.6818156242370605 +karman_re400,ppo,309,123.6,velocity,upper_uy,0.3312169313430786 +karman_re400,ppo,309,123.6,velocity,center_ux,0.9025732278823853 +karman_re400,ppo,309,123.6,velocity,center_uy,0.711752712726593 +karman_re400,ppo,309,123.6,velocity,lower_ux,1.2024844884872437 +karman_re400,ppo,309,123.6,velocity,lower_uy,0.41943132877349854 +karman_re400,ppo,310,124.0,velocity,upper_ux,0.6160147190093994 +karman_re400,ppo,310,124.0,velocity,upper_uy,0.2353549599647522 +karman_re400,ppo,310,124.0,velocity,center_ux,0.875627338886261 +karman_re400,ppo,310,124.0,velocity,center_uy,0.5991662740707397 +karman_re400,ppo,310,124.0,velocity,lower_ux,1.2742981910705566 +karman_re400,ppo,310,124.0,velocity,lower_uy,0.31423190236091614 +karman_re400,ppo,311,124.4,velocity,upper_ux,0.5836206078529358 +karman_re400,ppo,311,124.4,velocity,upper_uy,0.0878821462392807 +karman_re400,ppo,311,124.4,velocity,center_ux,0.8676673769950867 +karman_re400,ppo,311,124.4,velocity,center_uy,0.21460095047950745 +karman_re400,ppo,311,124.4,velocity,lower_ux,1.2887334823608398 +karman_re400,ppo,311,124.4,velocity,lower_uy,0.12712258100509644 +karman_re400,ppo,312,124.8,velocity,upper_ux,0.6047160625457764 +karman_re400,ppo,312,124.8,velocity,upper_uy,-0.07798294723033905 +karman_re400,ppo,312,124.8,velocity,center_ux,0.8845921158790588 +karman_re400,ppo,312,124.8,velocity,center_uy,-0.28066572546958923 +karman_re400,ppo,312,124.8,velocity,lower_ux,1.2475584745407104 +karman_re400,ppo,312,124.8,velocity,lower_uy,-0.063378244638443 +karman_re400,ppo,313,125.2,velocity,upper_ux,0.6860719323158264 +karman_re400,ppo,313,125.2,velocity,upper_uy,-0.2036316692829132 +karman_re400,ppo,313,125.2,velocity,center_ux,0.9078798890113831 +karman_re400,ppo,313,125.2,velocity,center_uy,-0.596331000328064 +karman_re400,ppo,313,125.2,velocity,lower_ux,1.1871623992919922 +karman_re400,ppo,313,125.2,velocity,lower_uy,-0.18953943252563477 +karman_re400,ppo,314,125.6,velocity,upper_ux,0.7935537695884705 +karman_re400,ppo,314,125.6,velocity,upper_uy,-0.2833189070224762 +karman_re400,ppo,314,125.6,velocity,center_ux,0.9237191081047058 +karman_re400,ppo,314,125.6,velocity,center_uy,-0.6833553910255432 +karman_re400,ppo,314,125.6,velocity,lower_ux,1.1027659177780151 +karman_re400,ppo,314,125.6,velocity,lower_uy,-0.28700482845306396 +karman_re400,ppo,315,126.0,velocity,upper_ux,0.8912642598152161 +karman_re400,ppo,315,126.0,velocity,upper_uy,-0.3555505871772766 +karman_re400,ppo,315,126.0,velocity,center_ux,0.9367340803146362 +karman_re400,ppo,315,126.0,velocity,center_uy,-0.682630717754364 +karman_re400,ppo,315,126.0,velocity,lower_ux,1.0042792558670044 +karman_re400,ppo,315,126.0,velocity,lower_uy,-0.37122535705566406 +karman_re400,ppo,316,126.4,velocity,upper_ux,0.9835814833641052 +karman_re400,ppo,316,126.4,velocity,upper_uy,-0.4071618616580963 +karman_re400,ppo,316,126.4,velocity,center_ux,0.9520329833030701 +karman_re400,ppo,316,126.4,velocity,center_uy,-0.6984419822692871 +karman_re400,ppo,316,126.4,velocity,lower_ux,0.9083017110824585 +karman_re400,ppo,316,126.4,velocity,lower_uy,-0.4262373447418213 +karman_re400,ppo,317,126.8,velocity,upper_ux,1.0724166631698608 +karman_re400,ppo,317,126.8,velocity,upper_uy,-0.42767399549484253 +karman_re400,ppo,317,126.8,velocity,center_ux,0.9693267345428467 +karman_re400,ppo,317,126.8,velocity,center_uy,-0.7126817107200623 +karman_re400,ppo,317,126.8,velocity,lower_ux,0.8164797425270081 +karman_re400,ppo,317,126.8,velocity,lower_uy,-0.43750011920928955 +karman_re400,ppo,318,127.2,velocity,upper_ux,1.1530431509017944 +karman_re400,ppo,318,127.2,velocity,upper_uy,-0.4003259539604187 +karman_re400,ppo,318,127.2,velocity,center_ux,0.9900141358375549 +karman_re400,ppo,318,127.2,velocity,center_uy,-0.6949349045753479 +karman_re400,ppo,318,127.2,velocity,lower_ux,0.7275267839431763 +karman_re400,ppo,318,127.2,velocity,lower_uy,-0.3913690447807312 +karman_re400,ppo,319,127.6,velocity,upper_ux,1.2157655954360962 +karman_re400,ppo,319,127.6,velocity,upper_uy,-0.3231884241104126 +karman_re400,ppo,319,127.6,velocity,center_ux,1.0172150135040283 +karman_re400,ppo,319,127.6,velocity,center_uy,-0.5702090263366699 +karman_re400,ppo,319,127.6,velocity,lower_ux,0.6484380960464478 +karman_re400,ppo,319,127.6,velocity,lower_uy,-0.2753910720348358 +karman_re400,ppo,320,128.0,velocity,upper_ux,1.228697657585144 +karman_re400,ppo,320,128.0,velocity,upper_uy,-0.1827688068151474 +karman_re400,ppo,320,128.0,velocity,center_ux,1.0454086065292358 +karman_re400,ppo,320,128.0,velocity,center_uy,-0.20542381703853607 +karman_re400,ppo,320,128.0,velocity,lower_ux,0.6008777022361755 +karman_re400,ppo,320,128.0,velocity,lower_uy,-0.0898628830909729 +karman_re400,ppo,321,128.4,velocity,upper_ux,1.1703438758850098 +karman_re400,ppo,321,128.4,velocity,upper_uy,-0.0017920315731316805 +karman_re400,ppo,321,128.4,velocity,center_ux,1.0484929084777832 +karman_re400,ppo,321,128.4,velocity,center_uy,0.2544776201248169 +karman_re400,ppo,321,128.4,velocity,lower_ux,0.6138031482696533 +karman_re400,ppo,321,128.4,velocity,lower_uy,0.12164489924907684 +karman_re400,ppo,322,128.8,velocity,upper_ux,1.092389702796936 +karman_re400,ppo,322,128.8,velocity,upper_uy,0.13786207139492035 +karman_re400,ppo,322,128.8,velocity,center_ux,1.0180940628051758 +karman_re400,ppo,322,128.8,velocity,center_uy,0.5427664518356323 +karman_re400,ppo,322,128.8,velocity,lower_ux,0.6959531307220459 +karman_re400,ppo,322,128.8,velocity,lower_uy,0.27156171202659607 +karman_re400,ppo,323,129.2,velocity,upper_ux,1.0283852815628052 +karman_re400,ppo,323,129.2,velocity,upper_uy,0.22363263368606567 +karman_re400,ppo,323,129.2,velocity,center_ux,0.9773001670837402 +karman_re400,ppo,323,129.2,velocity,center_uy,0.621666669845581 +karman_re400,ppo,323,129.2,velocity,lower_ux,0.8093470931053162 +karman_re400,ppo,323,129.2,velocity,lower_uy,0.34302762150764465 +karman_re400,ppo,324,129.6,velocity,upper_ux,0.9532959461212158 +karman_re400,ppo,324,129.6,velocity,upper_uy,0.29381921887397766 +karman_re400,ppo,324,129.6,velocity,center_ux,0.951157808303833 +karman_re400,ppo,324,129.6,velocity,center_uy,0.6397382020950317 +karman_re400,ppo,324,129.6,velocity,lower_ux,0.9133535027503967 +karman_re400,ppo,324,129.6,velocity,lower_uy,0.3980885446071625 +karman_re400,ppo,325,130.0,velocity,upper_ux,0.8634229302406311 +karman_re400,ppo,325,130.0,velocity,upper_uy,0.3488024175167084 +karman_re400,ppo,325,130.0,velocity,center_ux,0.9367597699165344 +karman_re400,ppo,325,130.0,velocity,center_uy,0.6743231415748596 +karman_re400,ppo,325,130.0,velocity,lower_ux,1.009742259979248 +karman_re400,ppo,325,130.0,velocity,lower_uy,0.4416852295398712 +karman_re400,ppo,326,130.4,velocity,upper_ux,0.7723898887634277 +karman_re400,ppo,326,130.4,velocity,upper_uy,0.36839333176612854 +karman_re400,ppo,326,130.4,velocity,center_ux,0.9234578609466553 +karman_re400,ppo,326,130.4,velocity,center_uy,0.7061633467674255 +karman_re400,ppo,326,130.4,velocity,lower_ux,1.103421688079834 +karman_re400,ppo,326,130.4,velocity,lower_uy,0.45890143513679504 +karman_re400,ppo,327,130.8,velocity,upper_ux,0.6887651681900024 +karman_re400,ppo,327,130.8,velocity,upper_uy,0.3370516896247864 +karman_re400,ppo,327,130.8,velocity,center_ux,0.9041791558265686 +karman_re400,ppo,327,130.8,velocity,center_uy,0.7133482098579407 +karman_re400,ppo,327,130.8,velocity,lower_ux,1.1936410665512085 +karman_re400,ppo,327,130.8,velocity,lower_uy,0.4259176254272461 +karman_re400,ppo,328,131.2,velocity,upper_ux,0.6213716268539429 +karman_re400,ppo,328,131.2,velocity,upper_uy,0.24712400138378143 +karman_re400,ppo,328,131.2,velocity,center_ux,0.8773054480552673 +karman_re400,ppo,328,131.2,velocity,center_uy,0.6212241649627686 +karman_re400,ppo,328,131.2,velocity,lower_ux,1.2693090438842773 +karman_re400,ppo,328,131.2,velocity,lower_uy,0.3285199999809265 +karman_re400,ppo,329,131.6,velocity,upper_ux,0.5851447582244873 +karman_re400,ppo,329,131.6,velocity,upper_uy,0.10395581275224686 +karman_re400,ppo,329,131.6,velocity,center_ux,0.8664568066596985 +karman_re400,ppo,329,131.6,velocity,center_uy,0.2629108726978302 +karman_re400,ppo,329,131.6,velocity,lower_ux,1.2911747694015503 +karman_re400,ppo,329,131.6,velocity,lower_uy,0.1477898508310318 +karman_re400,ppo,330,132.0,velocity,upper_ux,0.6002780795097351 +karman_re400,ppo,330,132.0,velocity,upper_uy,-0.062379494309425354 +karman_re400,ppo,330,132.0,velocity,center_ux,0.8815385699272156 +karman_re400,ppo,330,132.0,velocity,center_uy,-0.23654577136039734 +karman_re400,ppo,330,132.0,velocity,lower_ux,1.2534089088439941 +karman_re400,ppo,330,132.0,velocity,lower_uy,-0.04763954505324364 +karman_re400,ppo,331,132.4,velocity,upper_ux,0.6761194467544556 +karman_re400,ppo,331,132.4,velocity,upper_uy,-0.19378428161144257 +karman_re400,ppo,331,132.4,velocity,center_ux,0.9048731923103333 +karman_re400,ppo,331,132.4,velocity,center_uy,-0.5767321586608887 +karman_re400,ppo,331,132.4,velocity,lower_ux,1.1943289041519165 +karman_re400,ppo,331,132.4,velocity,lower_uy,-0.1794249415397644 +karman_re400,ppo,332,132.8,velocity,upper_ux,0.7828213572502136 +karman_re400,ppo,332,132.8,velocity,upper_uy,-0.27562376856803894 +karman_re400,ppo,332,132.8,velocity,center_ux,0.9213608503341675 +karman_re400,ppo,332,132.8,velocity,center_uy,-0.6817634701728821 +karman_re400,ppo,332,132.8,velocity,lower_ux,1.1117377281188965 +karman_re400,ppo,332,132.8,velocity,lower_uy,-0.27822428941726685 +karman_re400,ppo,333,133.2,velocity,upper_ux,0.881743311882019 +karman_re400,ppo,333,133.2,velocity,upper_uy,-0.34890830516815186 +karman_re400,ppo,333,133.2,velocity,center_ux,0.9347280859947205 +karman_re400,ppo,333,133.2,velocity,center_uy,-0.6824476718902588 +karman_re400,ppo,333,133.2,velocity,lower_ux,1.013938307762146 +karman_re400,ppo,333,133.2,velocity,lower_uy,-0.36426451802253723 +karman_re400,ppo,334,133.6,velocity,upper_ux,0.9748104214668274 +karman_re400,ppo,334,133.6,velocity,upper_uy,-0.4031015634536743 +karman_re400,ppo,334,133.6,velocity,center_ux,0.9504692554473877 +karman_re400,ppo,334,133.6,velocity,center_uy,-0.6963822245597839 +karman_re400,ppo,334,133.6,velocity,lower_ux,0.9179837107658386 +karman_re400,ppo,334,133.6,velocity,lower_uy,-0.42282867431640625 +karman_re400,ppo,335,134.0,velocity,upper_ux,1.0642653703689575 +karman_re400,ppo,335,134.0,velocity,upper_uy,-0.4275556206703186 +karman_re400,ppo,335,134.0,velocity,center_ux,0.9677037000656128 +karman_re400,ppo,335,134.0,velocity,center_uy,-0.7122939825057983 +karman_re400,ppo,335,134.0,velocity,lower_ux,0.825962245464325 +karman_re400,ppo,335,134.0,velocity,lower_uy,-0.4389365315437317 +karman_re400,ppo,336,134.4,velocity,upper_ux,1.145817756652832 +karman_re400,ppo,336,134.4,velocity,upper_uy,-0.4052102565765381 +karman_re400,ppo,336,134.4,velocity,center_ux,0.9877550005912781 +karman_re400,ppo,336,134.4,velocity,center_uy,-0.6990647912025452 +karman_re400,ppo,336,134.4,velocity,lower_ux,0.7364108562469482 +karman_re400,ppo,336,134.4,velocity,lower_uy,-0.39903029799461365 +karman_re400,ppo,337,134.8,velocity,upper_ux,1.2107964754104614 +karman_re400,ppo,337,134.8,velocity,upper_uy,-0.33334770798683167 +karman_re400,ppo,337,134.8,velocity,center_ux,1.0136510133743286 +karman_re400,ppo,337,134.8,velocity,center_uy,-0.5919735431671143 +karman_re400,ppo,337,134.8,velocity,lower_ux,0.6551700830459595 +karman_re400,ppo,337,134.8,velocity,lower_uy,-0.2902470529079437 +karman_re400,ppo,338,135.2,velocity,upper_ux,1.2303359508514404 +karman_re400,ppo,338,135.2,velocity,upper_uy,-0.19959710538387299 +karman_re400,ppo,338,135.2,velocity,center_ux,1.0424307584762573 +karman_re400,ppo,338,135.2,velocity,center_uy,-0.25071579217910767 +karman_re400,ppo,338,135.2,velocity,lower_ux,0.6029921174049377 +karman_re400,ppo,338,135.2,velocity,lower_uy,-0.11064215749502182 +karman_re400,ppo,339,135.6,velocity,upper_ux,1.17826247215271 +karman_re400,ppo,339,135.6,velocity,upper_uy,-0.018941156566143036 +karman_re400,ppo,339,135.6,velocity,center_ux,1.0495805740356445 +karman_re400,ppo,339,135.6,velocity,center_uy,0.2133072018623352 +karman_re400,ppo,339,135.6,velocity,lower_ux,0.6094341278076172 +karman_re400,ppo,339,135.6,velocity,lower_uy,0.10195344686508179 +karman_re400,ppo,340,136.0,velocity,upper_ux,1.099623203277588 +karman_re400,ppo,340,136.0,velocity,upper_uy,0.12733083963394165 +karman_re400,ppo,340,136.0,velocity,center_ux,1.0223113298416138 +karman_re400,ppo,340,136.0,velocity,center_uy,0.5250125527381897 +karman_re400,ppo,340,136.0,velocity,lower_ux,0.6858799457550049 +karman_re400,ppo,340,136.0,velocity,lower_uy,0.2612234652042389 +karman_re400,ppo,341,136.4,velocity,upper_ux,1.0350792407989502 +karman_re400,ppo,341,136.4,velocity,upper_uy,0.21653734147548676 +karman_re400,ppo,341,136.4,velocity,center_ux,0.9811859130859375 +karman_re400,ppo,341,136.4,velocity,center_uy,0.6191763877868652 +karman_re400,ppo,341,136.4,velocity,lower_ux,0.7987059950828552 +karman_re400,ppo,341,136.4,velocity,lower_uy,0.3373703360557556 +karman_re400,ppo,342,136.8,velocity,upper_ux,0.9615342617034912 +karman_re400,ppo,342,136.8,velocity,upper_uy,0.2875092029571533 +karman_re400,ppo,342,136.8,velocity,center_ux,0.9530784487724304 +karman_re400,ppo,342,136.8,velocity,center_uy,0.6373543739318848 +karman_re400,ppo,342,136.8,velocity,lower_ux,0.9036394357681274 +karman_re400,ppo,342,136.8,velocity,lower_uy,0.3930118680000305 +karman_re400,ppo,343,137.2,velocity,upper_ux,0.8720212578773499 +karman_re400,ppo,343,137.2,velocity,upper_uy,0.34485936164855957 +karman_re400,ppo,343,137.2,velocity,center_ux,0.9376667737960815 +karman_re400,ppo,343,137.2,velocity,center_uy,0.6705665588378906 +karman_re400,ppo,343,137.2,velocity,lower_ux,0.9999256134033203 +karman_re400,ppo,343,137.2,velocity,lower_uy,0.4380928874015808 +karman_re400,ppo,344,137.6,velocity,upper_ux,0.7808634042739868 +karman_re400,ppo,344,137.6,velocity,upper_uy,0.36870524287223816 +karman_re400,ppo,344,137.6,velocity,center_ux,0.9248523712158203 +karman_re400,ppo,344,137.6,velocity,center_uy,0.7039291858673096 +karman_re400,ppo,344,137.6,velocity,lower_ux,1.093961477279663 +karman_re400,ppo,344,137.6,velocity,lower_uy,0.4590373635292053 +karman_re400,ppo,345,138.0,velocity,upper_ux,0.6967024803161621 +karman_re400,ppo,345,138.0,velocity,upper_uy,0.3428232967853546 +karman_re400,ppo,345,138.0,velocity,center_ux,0.9071273803710938 +karman_re400,ppo,345,138.0,velocity,center_uy,0.7145459651947021 +karman_re400,ppo,345,138.0,velocity,lower_ux,1.1851295232772827 +karman_re400,ppo,345,138.0,velocity,lower_uy,0.43153664469718933 +karman_re400,ppo,346,138.4,velocity,upper_ux,0.6272772550582886 +karman_re400,ppo,346,138.4,velocity,upper_uy,0.25860801339149475 +karman_re400,ppo,346,138.4,velocity,center_ux,0.880764901638031 +karman_re400,ppo,346,138.4,velocity,center_uy,0.640361487865448 +karman_re400,ppo,346,138.4,velocity,lower_ux,1.263662338256836 +karman_re400,ppo,346,138.4,velocity,lower_uy,0.3416181206703186 +karman_re400,ppo,347,138.8,velocity,upper_ux,0.5869430303573608 +karman_re400,ppo,347,138.8,velocity,upper_uy,0.11972139030694962 +karman_re400,ppo,347,138.8,velocity,center_ux,0.8674062490463257 +karman_re400,ppo,347,138.8,velocity,center_uy,0.30915772914886475 +karman_re400,ppo,347,138.8,velocity,lower_ux,1.292182207107544 +karman_re400,ppo,347,138.8,velocity,lower_uy,0.1682051122188568 +karman_re400,ppo,348,139.2,velocity,upper_ux,0.5957896709442139 +karman_re400,ppo,348,139.2,velocity,upper_uy,-0.04676073044538498 +karman_re400,ppo,348,139.2,velocity,center_ux,0.8801352977752686 +karman_re400,ppo,348,139.2,velocity,center_uy,-0.19109195470809937 +karman_re400,ppo,348,139.2,velocity,lower_ux,1.2576563358306885 +karman_re400,ppo,348,139.2,velocity,lower_uy,-0.03087201900780201 +karman_re400,ppo,349,139.6,velocity,upper_ux,0.6659351587295532 +karman_re400,ppo,349,139.6,velocity,upper_uy,-0.18389175832271576 +karman_re400,ppo,349,139.6,velocity,center_ux,0.9029802083969116 +karman_re400,ppo,349,139.6,velocity,center_uy,-0.554681122303009 +karman_re400,ppo,349,139.6,velocity,lower_ux,1.200066328048706 +karman_re400,ppo,349,139.6,velocity,lower_uy,-0.16835160553455353 +karman_re400,ppo,350,140.0,velocity,upper_ux,0.7723531126976013 +karman_re400,ppo,350,140.0,velocity,upper_uy,-0.2684401571750641 +karman_re400,ppo,350,140.0,velocity,center_ux,0.9203660488128662 +karman_re400,ppo,350,140.0,velocity,center_uy,-0.678861141204834 +karman_re400,ppo,350,140.0,velocity,lower_ux,1.1205625534057617 +karman_re400,ppo,350,140.0,velocity,lower_uy,-0.26848238706588745 +karman_re400,ppo,351,140.4,velocity,upper_ux,0.8727601766586304 +karman_re400,ppo,351,140.4,velocity,upper_uy,-0.3424448072910309 +karman_re400,ppo,351,140.4,velocity,center_ux,0.9336972832679749 +karman_re400,ppo,351,140.4,velocity,center_uy,-0.682267963886261 +karman_re400,ppo,351,140.4,velocity,lower_ux,1.023758888244629 +karman_re400,ppo,351,140.4,velocity,lower_uy,-0.3562157452106476 +karman_re400,ppo,352,140.8,velocity,upper_ux,0.9661922454833984 +karman_re400,ppo,352,140.8,velocity,upper_uy,-0.39909544587135315 +karman_re400,ppo,352,140.8,velocity,center_ux,0.949083149433136 +karman_re400,ppo,352,140.8,velocity,center_uy,-0.6942105293273926 +karman_re400,ppo,352,140.8,velocity,lower_ux,0.9273297786712646 +karman_re400,ppo,352,140.8,velocity,lower_uy,-0.4182835817337036 +karman_re400,ppo,353,141.2,velocity,upper_ux,1.0559296607971191 +karman_re400,ppo,353,141.2,velocity,upper_uy,-0.427206426858902 +karman_re400,ppo,353,141.2,velocity,center_ux,0.9657137989997864 +karman_re400,ppo,353,141.2,velocity,center_uy,-0.7116087079048157 +karman_re400,ppo,353,141.2,velocity,lower_ux,0.8347574472427368 +karman_re400,ppo,353,141.2,velocity,lower_uy,-0.43919044733047485 +karman_re400,ppo,354,141.6,velocity,upper_ux,1.1380629539489746 +karman_re400,ppo,354,141.6,velocity,upper_uy,-0.4098053276538849 +karman_re400,ppo,354,141.6,velocity,center_ux,0.9846422076225281 +karman_re400,ppo,354,141.6,velocity,center_uy,-0.7025803327560425 +karman_re400,ppo,354,141.6,velocity,lower_ux,0.744454026222229 +karman_re400,ppo,354,141.6,velocity,lower_uy,-0.4054904580116272 +karman_re400,ppo,355,142.0,velocity,upper_ux,1.2056182622909546 +karman_re400,ppo,355,142.0,velocity,upper_uy,-0.3429400324821472 +karman_re400,ppo,355,142.0,velocity,center_ux,1.0095309019088745 +karman_re400,ppo,355,142.0,velocity,center_uy,-0.6115773916244507 +karman_re400,ppo,355,142.0,velocity,lower_ux,0.6619695425033569 +karman_re400,ppo,355,142.0,velocity,lower_uy,-0.3040592074394226 +karman_re400,ppo,356,142.4,velocity,upper_ux,1.2320239543914795 +karman_re400,ppo,356,142.4,velocity,upper_uy,-0.21566379070281982 +karman_re400,ppo,356,142.4,velocity,center_ux,1.0389059782028198 +karman_re400,ppo,356,142.4,velocity,center_uy,-0.2950129210948944 +karman_re400,ppo,356,142.4,velocity,lower_ux,0.6061639785766602 +karman_re400,ppo,356,142.4,velocity,lower_uy,-0.13093431293964386 +karman_re400,ppo,357,142.8,velocity,upper_ux,1.1864542961120605 +karman_re400,ppo,357,142.8,velocity,upper_uy,-0.03611095994710922 +karman_re400,ppo,357,142.8,velocity,center_ux,1.0495100021362305 +karman_re400,ppo,357,142.8,velocity,center_uy,0.17057576775550842 +karman_re400,ppo,357,142.8,velocity,lower_ux,0.605978786945343 +karman_re400,ppo,357,142.8,velocity,lower_uy,0.08155837655067444 +karman_re400,ppo,358,143.2,velocity,upper_ux,1.1074562072753906 +karman_re400,ppo,358,143.2,velocity,upper_uy,0.11643590778112411 +karman_re400,ppo,358,143.2,velocity,center_ux,1.025434970855713 +karman_re400,ppo,358,143.2,velocity,center_uy,0.5054797530174255 +karman_re400,ppo,358,143.2,velocity,lower_ux,0.6760491728782654 +karman_re400,ppo,358,143.2,velocity,lower_uy,0.24955952167510986 +karman_re400,ppo,359,143.6,velocity,upper_ux,1.0416966676712036 +karman_re400,ppo,359,143.6,velocity,upper_uy,0.20952612161636353 +karman_re400,ppo,359,143.6,velocity,center_ux,0.9842588901519775 +karman_re400,ppo,359,143.6,velocity,center_uy,0.6167405843734741 +karman_re400,ppo,359,143.6,velocity,lower_ux,0.7874013781547546 +karman_re400,ppo,359,143.6,velocity,lower_uy,0.33129656314849854 +karman_re400,ppo,360,144.0,velocity,upper_ux,0.9695153832435608 +karman_re400,ppo,360,144.0,velocity,upper_uy,0.2813429534435272 +karman_re400,ppo,360,144.0,velocity,center_ux,0.9544181227684021 +karman_re400,ppo,360,144.0,velocity,center_uy,0.6357625126838684 +karman_re400,ppo,360,144.0,velocity,lower_ux,0.893308162689209 +karman_re400,ppo,360,144.0,velocity,lower_uy,0.38766348361968994 +karman_re400,ppo,361,144.4,velocity,upper_ux,0.8811980485916138 +karman_re400,ppo,361,144.4,velocity,upper_uy,0.3408501148223877 +karman_re400,ppo,361,144.4,velocity,center_ux,0.9387866854667664 +karman_re400,ppo,361,144.4,velocity,center_uy,0.6672174334526062 +karman_re400,ppo,361,144.4,velocity,lower_ux,0.9903820753097534 +karman_re400,ppo,361,144.4,velocity,lower_uy,0.4342593252658844 +karman_re400,ppo,362,144.8,velocity,upper_ux,0.7900240421295166 +karman_re400,ppo,362,144.8,velocity,upper_uy,0.36875876784324646 +karman_re400,ppo,362,144.8,velocity,center_ux,0.9265667200088501 +karman_re400,ppo,362,144.8,velocity,center_uy,0.7018064260482788 +karman_re400,ppo,362,144.8,velocity,lower_ux,1.085005521774292 +karman_re400,ppo,362,144.8,velocity,lower_uy,0.45870155096054077 +karman_re400,ppo,363,145.2,velocity,upper_ux,0.704878568649292 +karman_re400,ppo,363,145.2,velocity,upper_uy,0.34817737340927124 +karman_re400,ppo,363,145.2,velocity,center_ux,0.9098493456840515 +karman_re400,ppo,363,145.2,velocity,center_uy,0.7153810858726501 +karman_re400,ppo,363,145.2,velocity,lower_ux,1.176711082458496 +karman_re400,ppo,363,145.2,velocity,lower_uy,0.43660247325897217 +karman_re400,ppo,364,145.6,velocity,upper_ux,0.6332263946533203 +karman_re400,ppo,364,145.6,velocity,upper_uy,0.2696176767349243 +karman_re400,ppo,364,145.6,velocity,center_ux,0.8838617205619812 +karman_re400,ppo,364,145.6,velocity,center_uy,0.6567205786705017 +karman_re400,ppo,364,145.6,velocity,lower_ux,1.2574654817581177 +karman_re400,ppo,364,145.6,velocity,lower_uy,0.3537646234035492 +karman_re400,ppo,365,146.0,velocity,upper_ux,0.5886756181716919 +karman_re400,ppo,365,146.0,velocity,upper_uy,0.13522949814796448 +karman_re400,ppo,365,146.0,velocity,center_ux,0.8677914142608643 +karman_re400,ppo,365,146.0,velocity,center_uy,0.35342106223106384 +karman_re400,ppo,365,146.0,velocity,lower_ux,1.2921357154846191 +karman_re400,ppo,365,146.0,velocity,lower_uy,0.1880982369184494 +karman_re400,ppo,366,146.4,velocity,upper_ux,0.591819703578949 +karman_re400,ppo,366,146.4,velocity,upper_uy,-0.030815642327070236 +karman_re400,ppo,366,146.4,velocity,center_ux,0.8785743117332458 +karman_re400,ppo,366,146.4,velocity,center_uy,-0.1441289782524109 +karman_re400,ppo,366,146.4,velocity,lower_ux,1.261893630027771 +karman_re400,ppo,366,146.4,velocity,lower_uy,-0.01362177636474371 +karman_re400,ppo,367,146.8,velocity,upper_ux,0.6566666960716248 +karman_re400,ppo,367,146.8,velocity,upper_uy,-0.1734754890203476 +karman_re400,ppo,367,146.8,velocity,center_ux,0.9016017317771912 +karman_re400,ppo,367,146.8,velocity,center_uy,-0.5302709341049194 +karman_re400,ppo,367,146.8,velocity,lower_ux,1.2063146829605103 +karman_re400,ppo,367,146.8,velocity,lower_uy,-0.1572357416152954 +karman_re400,ppo,368,147.2,velocity,upper_ux,0.7621016502380371 +karman_re400,ppo,368,147.2,velocity,upper_uy,-0.261371374130249 +karman_re400,ppo,368,147.2,velocity,center_ux,0.9197973608970642 +karman_re400,ppo,368,147.2,velocity,center_uy,-0.6748864054679871 +karman_re400,ppo,368,147.2,velocity,lower_ux,1.1295639276504517 +karman_re400,ppo,368,147.2,velocity,lower_uy,-0.25899747014045715 +karman_re400,ppo,369,147.6,velocity,upper_ux,0.8637246489524841 +karman_re400,ppo,369,147.6,velocity,upper_uy,-0.33582696318626404 +karman_re400,ppo,369,147.6,velocity,center_ux,0.9328838586807251 +karman_re400,ppo,369,147.6,velocity,center_uy,-0.6824349164962769 +karman_re400,ppo,369,147.6,velocity,lower_ux,1.0335174798965454 +karman_re400,ppo,369,147.6,velocity,lower_uy,-0.3482705354690552 +karman_re400,ppo,370,148.0,velocity,upper_ux,0.9571949243545532 +karman_re400,ppo,370,148.0,velocity,upper_uy,-0.3947753608226776 +karman_re400,ppo,370,148.0,velocity,center_ux,0.9476421475410461 +karman_re400,ppo,370,148.0,velocity,center_uy,-0.6922071576118469 +karman_re400,ppo,370,148.0,velocity,lower_ux,0.9362735748291016 +karman_re400,ppo,370,148.0,velocity,lower_uy,-0.4136630892753601 +karman_re400,ppo,371,148.4,velocity,upper_ux,1.0470607280731201 +karman_re400,ppo,371,148.4,velocity,upper_uy,-0.42622748017311096 +karman_re400,ppo,371,148.4,velocity,center_ux,0.9637669324874878 +karman_re400,ppo,371,148.4,velocity,center_uy,-0.7107263803482056 +karman_re400,ppo,371,148.4,velocity,lower_ux,0.8430995345115662 +karman_re400,ppo,371,148.4,velocity,lower_uy,-0.43916580080986023 +karman_re400,ppo,372,148.8,velocity,upper_ux,1.1303977966308594 +karman_re400,ppo,372,148.8,velocity,upper_uy,-0.4137115180492401 +karman_re400,ppo,372,148.8,velocity,center_ux,0.9826196432113647 +karman_re400,ppo,372,148.8,velocity,center_uy,-0.7054603695869446 +karman_re400,ppo,372,148.8,velocity,lower_ux,0.7527815103530884 +karman_re400,ppo,372,148.8,velocity,lower_uy,-0.4114343225955963 +karman_re400,ppo,373,149.2,velocity,upper_ux,1.2004120349884033 +karman_re400,ppo,373,149.2,velocity,upper_uy,-0.3516627550125122 +karman_re400,ppo,373,149.2,velocity,center_ux,1.0072615146636963 +karman_re400,ppo,373,149.2,velocity,center_uy,-0.6283515691757202 +karman_re400,ppo,373,149.2,velocity,lower_ux,0.6693284511566162 +karman_re400,ppo,373,149.2,velocity,lower_uy,-0.3170534372329712 +karman_re400,ppo,374,149.6,velocity,upper_ux,1.2327179908752441 +karman_re400,ppo,374,149.6,velocity,upper_uy,-0.2309812605381012 +karman_re400,ppo,374,149.6,velocity,center_ux,1.037050485610962 +karman_re400,ppo,374,149.6,velocity,center_uy,-0.33641311526298523 +karman_re400,ppo,374,149.6,velocity,lower_ux,0.6097323298454285 +karman_re400,ppo,374,149.6,velocity,lower_uy,-0.15031978487968445 +karman_re400,ppo,375,150.0,velocity,upper_ux,1.1936336755752563 +karman_re400,ppo,375,150.0,velocity,upper_uy,-0.05380966141819954 +karman_re400,ppo,375,150.0,velocity,center_ux,1.0505375862121582 +karman_re400,ppo,375,150.0,velocity,center_uy,0.12754377722740173 +karman_re400,ppo,375,150.0,velocity,lower_ux,0.6029417514801025 +karman_re400,ppo,375,150.0,velocity,lower_uy,0.06144161522388458 +karman_re400,ppo,376,150.4,velocity,upper_ux,1.114366054534912 +karman_re400,ppo,376,150.4,velocity,upper_uy,0.10443149507045746 +karman_re400,ppo,376,150.4,velocity,center_ux,1.0289126634597778 +karman_re400,ppo,376,150.4,velocity,center_uy,0.4837077856063843 +karman_re400,ppo,376,150.4,velocity,lower_ux,0.666231632232666 +karman_re400,ppo,376,150.4,velocity,lower_uy,0.23750251531600952 +karman_re400,ppo,377,150.8,velocity,upper_ux,1.0475043058395386 +karman_re400,ppo,377,150.8,velocity,upper_uy,0.20179003477096558 +karman_re400,ppo,377,150.8,velocity,center_ux,0.987806499004364 +karman_re400,ppo,377,150.8,velocity,center_uy,0.6128650307655334 +karman_re400,ppo,377,150.8,velocity,lower_ux,0.7759983539581299 +karman_re400,ppo,377,150.8,velocity,lower_uy,0.3254047632217407 +karman_re400,ppo,378,151.2,velocity,upper_ux,0.977439284324646 +karman_re400,ppo,378,151.2,velocity,upper_uy,0.2744784951210022 +karman_re400,ppo,378,151.2,velocity,center_ux,0.9565726518630981 +karman_re400,ppo,378,151.2,velocity,center_uy,0.6337993741035461 +karman_re400,ppo,378,151.2,velocity,lower_ux,0.8836027383804321 +karman_re400,ppo,378,151.2,velocity,lower_uy,0.3824496865272522 +karman_re400,ppo,379,151.6,velocity,upper_ux,0.8903997540473938 +karman_re400,ppo,379,151.6,velocity,upper_uy,0.3359405994415283 +karman_re400,ppo,379,151.6,velocity,center_ux,0.9402258396148682 +karman_re400,ppo,379,151.6,velocity,center_uy,0.6634615063667297 +karman_re400,ppo,379,151.6,velocity,lower_ux,0.9813896417617798 +karman_re400,ppo,379,151.6,velocity,lower_uy,0.4304475486278534 +karman_re400,ppo,380,152.0,velocity,upper_ux,0.7989674210548401 +karman_re400,ppo,380,152.0,velocity,upper_uy,0.3677925169467926 +karman_re400,ppo,380,152.0,velocity,center_ux,0.9279809594154358 +karman_re400,ppo,380,152.0,velocity,center_uy,0.6991154551506042 +karman_re400,ppo,380,152.0,velocity,lower_ux,1.0762251615524292 +karman_re400,ppo,380,152.0,velocity,lower_uy,0.45809388160705566 +karman_re400,ppo,381,152.4,velocity,upper_ux,0.7126410603523254 +karman_re400,ppo,381,152.4,velocity,upper_uy,0.35249897837638855 +karman_re400,ppo,381,152.4,velocity,center_ux,0.9116387367248535 +karman_re400,ppo,381,152.4,velocity,center_uy,0.7153819799423218 +karman_re400,ppo,381,152.4,velocity,lower_ux,1.1680796146392822 +karman_re400,ppo,381,152.4,velocity,lower_uy,0.4412960708141327 +karman_re400,ppo,382,152.8,velocity,upper_ux,0.6388716697692871 +karman_re400,ppo,382,152.8,velocity,upper_uy,0.279780775308609 +karman_re400,ppo,382,152.8,velocity,center_ux,0.885701060295105 +karman_re400,ppo,382,152.8,velocity,center_uy,0.6703196167945862 +karman_re400,ppo,382,152.8,velocity,lower_ux,1.2505837678909302 +karman_re400,ppo,382,152.8,velocity,lower_uy,0.36523985862731934 +karman_re400,ppo,383,153.2,velocity,upper_ux,0.5910781025886536 +karman_re400,ppo,383,153.2,velocity,upper_uy,0.15034382045269012 +karman_re400,ppo,383,153.2,velocity,center_ux,0.8672745227813721 +karman_re400,ppo,383,153.2,velocity,center_uy,0.3958020806312561 +karman_re400,ppo,383,153.2,velocity,lower_ux,1.291969895362854 +karman_re400,ppo,383,153.2,velocity,lower_uy,0.20765282213687897 +karman_re400,ppo,384,153.6,velocity,upper_ux,0.589084267616272 +karman_re400,ppo,384,153.6,velocity,upper_uy,-0.014513591304421425 +karman_re400,ppo,384,153.6,velocity,center_ux,0.8761207461357117 +karman_re400,ppo,384,153.6,velocity,center_uy,-0.09572380036115646 +karman_re400,ppo,384,153.6,velocity,lower_ux,1.2670708894729614 +karman_re400,ppo,384,153.6,velocity,lower_uy,0.004107633605599403 +karman_re400,ppo,385,154.0,velocity,upper_ux,0.6481472253799438 +karman_re400,ppo,385,154.0,velocity,upper_uy,-0.16209577023983002 +karman_re400,ppo,385,154.0,velocity,center_ux,0.8991272449493408 +karman_re400,ppo,385,154.0,velocity,center_uy,-0.5034274458885193 +karman_re400,ppo,385,154.0,velocity,lower_ux,1.2130670547485352 +karman_re400,ppo,385,154.0,velocity,lower_uy,-0.14622220396995544 +karman_re400,ppo,386,154.4,velocity,upper_ux,0.751751184463501 +karman_re400,ppo,386,154.4,velocity,upper_uy,-0.2538866102695465 +karman_re400,ppo,386,154.4,velocity,center_ux,0.9183276891708374 +karman_re400,ppo,386,154.4,velocity,center_uy,-0.6697308421134949 +karman_re400,ppo,386,154.4,velocity,lower_ux,1.138567328453064 +karman_re400,ppo,386,154.4,velocity,lower_uy,-0.2500625550746918 +karman_re400,ppo,387,154.8,velocity,upper_ux,0.854138970375061 +karman_re400,ppo,387,154.8,velocity,upper_uy,-0.3287261128425598 +karman_re400,ppo,387,154.8,velocity,center_ux,0.9312646985054016 +karman_re400,ppo,387,154.8,velocity,center_uy,-0.6829225420951843 +karman_re400,ppo,387,154.8,velocity,lower_ux,1.0430375337600708 +karman_re400,ppo,387,154.8,velocity,lower_uy,-0.3406953513622284 +karman_re400,ppo,388,155.2,velocity,upper_ux,0.9478179812431335 +karman_re400,ppo,388,155.2,velocity,upper_uy,-0.3899554908275604 +karman_re400,ppo,388,155.2,velocity,center_ux,0.9458397626876831 +karman_re400,ppo,388,155.2,velocity,center_uy,-0.690321147441864 +karman_re400,ppo,388,155.2,velocity,lower_ux,0.9453046917915344 +karman_re400,ppo,388,155.2,velocity,lower_uy,-0.4091740846633911 +karman_re400,ppo,389,155.6,velocity,upper_ux,1.0384184122085571 +karman_re400,ppo,389,155.6,velocity,upper_uy,-0.4246068596839905 +karman_re400,ppo,389,155.6,velocity,center_ux,0.9623138904571533 +karman_re400,ppo,389,155.6,velocity,center_uy,-0.7095356583595276 +karman_re400,ppo,389,155.6,velocity,lower_ux,0.8522054553031921 +karman_re400,ppo,389,155.6,velocity,lower_uy,-0.43908295035362244 +karman_re400,ppo,390,156.0,velocity,upper_ux,1.1228388547897339 +karman_re400,ppo,390,156.0,velocity,upper_uy,-0.41701602935791016 +karman_re400,ppo,390,156.0,velocity,center_ux,0.9812171459197998 +karman_re400,ppo,390,156.0,velocity,center_uy,-0.7076283097267151 +karman_re400,ppo,390,156.0,velocity,lower_ux,0.7618051767349243 +karman_re400,ppo,390,156.0,velocity,lower_uy,-0.4170990288257599 +karman_re400,ppo,391,156.4,velocity,upper_ux,1.1947300434112549 +karman_re400,ppo,391,156.4,velocity,upper_uy,-0.35982319712638855 +karman_re400,ppo,391,156.4,velocity,center_ux,1.0054638385772705 +karman_re400,ppo,391,156.4,velocity,center_uy,-0.6425878405570984 +karman_re400,ppo,391,156.4,velocity,lower_ux,0.6771449446678162 +karman_re400,ppo,391,156.4,velocity,lower_uy,-0.3295888900756836 +karman_re400,ppo,392,156.8,velocity,upper_ux,1.2322319746017456 +karman_re400,ppo,392,156.8,velocity,upper_uy,-0.2458598017692566 +karman_re400,ppo,392,156.8,velocity,center_ux,1.0353513956069946 +karman_re400,ppo,392,156.8,velocity,center_uy,-0.37567761540412903 +karman_re400,ppo,392,156.8,velocity,lower_ux,0.6136854290962219 +karman_re400,ppo,392,156.8,velocity,lower_uy,-0.16932253539562225 +karman_re400,ppo,393,157.2,velocity,upper_ux,1.199764609336853 +karman_re400,ppo,393,157.2,velocity,upper_uy,-0.0720878392457962 +karman_re400,ppo,393,157.2,velocity,center_ux,1.0514429807662964 +karman_re400,ppo,393,157.2,velocity,center_uy,0.08315545320510864 +karman_re400,ppo,393,157.2,velocity,lower_ux,0.6002005934715271 +karman_re400,ppo,393,157.2,velocity,lower_uy,0.04104315862059593 +karman_re400,ppo,394,157.6,velocity,upper_ux,1.1212292909622192 +karman_re400,ppo,394,157.6,velocity,upper_uy,0.09151163697242737 +karman_re400,ppo,394,157.6,velocity,center_ux,1.032902717590332 +karman_re400,ppo,394,157.6,velocity,center_uy,0.45910367369651794 +karman_re400,ppo,394,157.6,velocity,lower_ux,0.6569857597351074 +karman_re400,ppo,394,157.6,velocity,lower_uy,0.22469158470630646 +karman_re400,ppo,395,158.0,velocity,upper_ux,1.0533132553100586 +karman_re400,ppo,395,158.0,velocity,upper_uy,0.19369634985923767 +karman_re400,ppo,395,158.0,velocity,center_ux,0.9923233985900879 +karman_re400,ppo,395,158.0,velocity,center_uy,0.6074213981628418 +karman_re400,ppo,395,158.0,velocity,lower_ux,0.7650341987609863 +karman_re400,ppo,395,158.0,velocity,lower_uy,0.3195511996746063 +karman_re400,ppo,396,158.4,velocity,upper_ux,0.9850859045982361 +karman_re400,ppo,396,158.4,velocity,upper_uy,0.26730969548225403 +karman_re400,ppo,396,158.4,velocity,center_ux,0.9592369198799133 +karman_re400,ppo,396,158.4,velocity,center_uy,0.6315664052963257 +karman_re400,ppo,396,158.4,velocity,lower_ux,0.8740565776824951 +karman_re400,ppo,396,158.4,velocity,lower_uy,0.37728187441825867 +karman_re400,ppo,397,158.8,velocity,upper_ux,0.8993437886238098 +karman_re400,ppo,397,158.8,velocity,upper_uy,0.3304919898509979 +karman_re400,ppo,397,158.8,velocity,center_ux,0.9416835308074951 +karman_re400,ppo,397,158.8,velocity,center_uy,0.6594292521476746 +karman_re400,ppo,397,158.8,velocity,lower_ux,0.972334623336792 +karman_re400,ppo,397,158.8,velocity,lower_uy,0.4265178442001343 +karman_re400,ppo,398,159.2,velocity,upper_ux,0.8074672222137451 +karman_re400,ppo,398,159.2,velocity,upper_uy,0.3661508858203888 +karman_re400,ppo,398,159.2,velocity,center_ux,0.9289447069168091 +karman_re400,ppo,398,159.2,velocity,center_uy,0.6959348320960999 +karman_re400,ppo,398,159.2,velocity,lower_ux,1.066969394683838 +karman_re400,ppo,398,159.2,velocity,lower_uy,0.4570545256137848 +karman_re400,ppo,399,159.6,velocity,upper_ux,0.7202199697494507 +karman_re400,ppo,399,159.6,velocity,upper_uy,0.35613343119621277 +karman_re400,ppo,399,159.6,velocity,center_ux,0.9130071401596069 +karman_re400,ppo,399,159.6,velocity,center_uy,0.7147716283798218 +karman_re400,ppo,399,159.6,velocity,lower_ux,1.1589750051498413 +karman_re400,ppo,399,159.6,velocity,lower_uy,0.44550102949142456 +karman_re400,ppo,0,0.0,force,front_fx,0.00037016390706412494 +karman_re400,ppo,0,0.0,force,front_fy,0.004132154397666454 +karman_re400,ppo,0,0.0,force,upper_fx,-0.005233825650066137 +karman_re400,ppo,0,0.0,force,upper_fy,0.003106225747615099 +karman_re400,ppo,0,0.0,force,lower_fx,0.0030637045856565237 +karman_re400,ppo,0,0.0,force,lower_fy,-0.0035607346799224615 +karman_re400,ppo,1,0.4,force,front_fx,0.00322915380820632 +karman_re400,ppo,1,0.4,force,front_fy,0.0030455475207418203 +karman_re400,ppo,1,0.4,force,upper_fx,-0.007930700667202473 +karman_re400,ppo,1,0.4,force,upper_fy,0.0038476374465972185 +karman_re400,ppo,1,0.4,force,lower_fx,0.00224848254583776 +karman_re400,ppo,1,0.4,force,lower_fy,-0.0034564503002911806 +karman_re400,ppo,2,0.8,force,front_fx,0.004912637639790773 +karman_re400,ppo,2,0.8,force,front_fy,0.003568868152797222 +karman_re400,ppo,2,0.8,force,upper_fx,-0.00959412194788456 +karman_re400,ppo,2,0.8,force,upper_fy,0.00651212502270937 +karman_re400,ppo,2,0.8,force,lower_fx,0.002586117945611477 +karman_re400,ppo,2,0.8,force,lower_fy,-0.0024978776928037405 +karman_re400,ppo,3,1.2,force,front_fx,0.0046250587329268456 +karman_re400,ppo,3,1.2,force,front_fy,0.0024215546436607838 +karman_re400,ppo,3,1.2,force,upper_fx,-0.007132744882255793 +karman_re400,ppo,3,1.2,force,upper_fy,0.00962632056325674 +karman_re400,ppo,3,1.2,force,lower_fx,0.00288232765160501 +karman_re400,ppo,3,1.2,force,lower_fy,-0.001377625740133226 +karman_re400,ppo,4,1.6,force,front_fx,0.004558409098535776 +karman_re400,ppo,4,1.6,force,front_fy,0.0011083978461101651 +karman_re400,ppo,4,1.6,force,upper_fx,-0.0033638733439147472 +karman_re400,ppo,4,1.6,force,upper_fy,0.009525759145617485 +karman_re400,ppo,4,1.6,force,lower_fx,0.002492665546014905 +karman_re400,ppo,4,1.6,force,lower_fy,-0.0007792615797370672 +karman_re400,ppo,5,2.0,force,front_fx,0.0032454391475766897 +karman_re400,ppo,5,2.0,force,front_fy,0.0002969767665490508 +karman_re400,ppo,5,2.0,force,upper_fx,-0.0010521870572119951 +karman_re400,ppo,5,2.0,force,upper_fy,0.008472481742501259 +karman_re400,ppo,5,2.0,force,lower_fx,0.001801856211386621 +karman_re400,ppo,5,2.0,force,lower_fy,-0.001243333681486547 +karman_re400,ppo,6,2.4,force,front_fx,0.001752867130562663 +karman_re400,ppo,6,2.4,force,front_fy,-0.0005918442620895803 +karman_re400,ppo,6,2.4,force,upper_fx,0.0005500779370777309 +karman_re400,ppo,6,2.4,force,upper_fy,0.007855398580431938 +karman_re400,ppo,6,2.4,force,lower_fx,0.0009072946850210428 +karman_re400,ppo,6,2.4,force,lower_fy,-0.0021269586868584156 +karman_re400,ppo,7,2.8,force,front_fx,0.0008539148257113993 +karman_re400,ppo,7,2.8,force,front_fy,-0.0016084032831713557 +karman_re400,ppo,7,2.8,force,upper_fx,0.0019479126203805208 +karman_re400,ppo,7,2.8,force,upper_fy,0.007288211956620216 +karman_re400,ppo,7,2.8,force,lower_fx,-4.2965024476870894e-05 +karman_re400,ppo,7,2.8,force,lower_fy,-0.002761632204055786 +karman_re400,ppo,8,3.2,force,front_fx,0.0006586161907762289 +karman_re400,ppo,8,3.2,force,front_fy,-0.002426581457257271 +karman_re400,ppo,8,3.2,force,upper_fx,0.002916064579039812 +karman_re400,ppo,8,3.2,force,upper_fy,0.00627818563953042 +karman_re400,ppo,8,3.2,force,lower_fx,-0.0009903616737574339 +karman_re400,ppo,8,3.2,force,lower_fy,-0.003151599783450365 +karman_re400,ppo,9,3.6,force,front_fx,0.0009245473193004727 +karman_re400,ppo,9,3.6,force,front_fy,-0.002943670377135277 +karman_re400,ppo,9,3.6,force,upper_fx,0.003369612153619528 +karman_re400,ppo,9,3.6,force,upper_fy,0.005090011283755302 +karman_re400,ppo,9,3.6,force,lower_fx,-0.0017326361266896129 +karman_re400,ppo,9,3.6,force,lower_fy,-0.0033760739024728537 +karman_re400,ppo,10,4.0,force,front_fx,0.0013567678397521377 +karman_re400,ppo,10,4.0,force,front_fy,-0.0031432874966412783 +karman_re400,ppo,10,4.0,force,upper_fx,0.0034757256507873535 +karman_re400,ppo,10,4.0,force,upper_fy,0.004112428054213524 +karman_re400,ppo,10,4.0,force,lower_fx,-0.001982270274311304 +karman_re400,ppo,10,4.0,force,lower_fy,-0.0036293112207204103 +karman_re400,ppo,11,4.4,force,front_fx,0.0017347123939543962 +karman_re400,ppo,11,4.4,force,front_fy,-0.002892788965255022 +karman_re400,ppo,11,4.4,force,upper_fx,0.003228541696444154 +karman_re400,ppo,11,4.4,force,upper_fy,0.003526453161612153 +karman_re400,ppo,11,4.4,force,lower_fx,-0.0016654637875035405 +karman_re400,ppo,11,4.4,force,lower_fy,-0.003959733061492443 +karman_re400,ppo,12,4.8,force,front_fx,0.001858658972196281 +karman_re400,ppo,12,4.8,force,front_fy,-0.0021825393196195364 +karman_re400,ppo,12,4.8,force,upper_fx,0.0025551212020218372 +karman_re400,ppo,12,4.8,force,upper_fy,0.0033837815281003714 +karman_re400,ppo,12,4.8,force,lower_fx,-0.0009265941334888339 +karman_re400,ppo,12,4.8,force,lower_fy,-0.004307701718062162 +karman_re400,ppo,13,5.2,force,front_fx,0.0016276284586638212 +karman_re400,ppo,13,5.2,force,front_fy,-0.0011419352376833558 +karman_re400,ppo,13,5.2,force,upper_fx,0.0016020748298615217 +karman_re400,ppo,13,5.2,force,upper_fy,0.003491680370643735 +karman_re400,ppo,13,5.2,force,lower_fx,2.5789413484744728e-06 +karman_re400,ppo,13,5.2,force,lower_fy,-0.00462265545502305 +karman_re400,ppo,14,5.6,force,front_fx,0.0011483117705211043 +karman_re400,ppo,14,5.6,force,front_fy,0.0001233234506798908 +karman_re400,ppo,14,5.6,force,upper_fx,0.0004902434884570539 +karman_re400,ppo,14,5.6,force,upper_fy,0.0035706053022295237 +karman_re400,ppo,14,5.6,force,lower_fx,0.0010389989474788308 +karman_re400,ppo,14,5.6,force,lower_fy,-0.004952920600771904 +karman_re400,ppo,15,6.0,force,front_fx,0.0007169987075030804 +karman_re400,ppo,15,6.0,force,front_fy,0.0013714933302253485 +karman_re400,ppo,15,6.0,force,upper_fx,-0.0007283957093022764 +karman_re400,ppo,15,6.0,force,upper_fy,0.003479121020063758 +karman_re400,ppo,15,6.0,force,lower_fx,0.0021353892516344786 +karman_re400,ppo,15,6.0,force,lower_fy,-0.005319681949913502 +karman_re400,ppo,16,6.4,force,front_fx,0.0006885050097480416 +karman_re400,ppo,16,6.4,force,front_fy,0.0023458406794816256 +karman_re400,ppo,16,6.4,force,upper_fx,-0.0021117778960615396 +karman_re400,ppo,16,6.4,force,upper_fy,0.003327034180983901 +karman_re400,ppo,16,6.4,force,lower_fx,0.003094477578997612 +karman_re400,ppo,16,6.4,force,lower_fy,-0.005545659456402063 +karman_re400,ppo,17,6.8,force,front_fx,0.001371239311993122 +karman_re400,ppo,17,6.8,force,front_fy,0.002956278854981065 +karman_re400,ppo,17,6.8,force,upper_fx,-0.0036601030733436346 +karman_re400,ppo,17,6.8,force,upper_fy,0.003290449967607856 +karman_re400,ppo,17,6.8,force,lower_fx,0.00372114684432745 +karman_re400,ppo,17,6.8,force,lower_fy,-0.005308992695063353 +karman_re400,ppo,18,7.2,force,front_fx,0.002497446723282337 +karman_re400,ppo,18,7.2,force,front_fy,0.003405496245250106 +karman_re400,ppo,18,7.2,force,upper_fx,-0.005023975390940905 +karman_re400,ppo,18,7.2,force,upper_fy,0.0037936398293823004 +karman_re400,ppo,18,7.2,force,lower_fx,0.003967576194554567 +karman_re400,ppo,18,7.2,force,lower_fy,-0.0043329200707376 +karman_re400,ppo,19,7.6,force,front_fx,0.0033493065275251865 +karman_re400,ppo,19,7.6,force,front_fy,0.003598282113671303 +karman_re400,ppo,19,7.6,force,upper_fx,-0.0052276067435741425 +karman_re400,ppo,19,7.6,force,upper_fy,0.005012610461562872 +karman_re400,ppo,19,7.6,force,lower_fx,0.004211382940411568 +karman_re400,ppo,19,7.6,force,lower_fy,-0.0029581852722913027 +karman_re400,ppo,20,8.0,force,front_fx,0.0038577336817979813 +karman_re400,ppo,20,8.0,force,front_fy,0.0032173481304198503 +karman_re400,ppo,20,8.0,force,upper_fx,-0.00391421327367425 +karman_re400,ppo,20,8.0,force,upper_fy,0.006161287892609835 +karman_re400,ppo,20,8.0,force,lower_fx,0.004218542482703924 +karman_re400,ppo,20,8.0,force,lower_fy,-0.0018226269166916609 +karman_re400,ppo,21,8.4,force,front_fx,0.003911163192242384 +karman_re400,ppo,21,8.4,force,front_fy,0.0025317161343991756 +karman_re400,ppo,21,8.4,force,upper_fx,-0.0021627037785947323 +karman_re400,ppo,21,8.4,force,upper_fy,0.00654313899576664 +karman_re400,ppo,21,8.4,force,lower_fx,0.00366131030023098 +karman_re400,ppo,21,8.4,force,lower_fy,-0.0015609817346557975 +karman_re400,ppo,22,8.8,force,front_fx,0.0031038913875818253 +karman_re400,ppo,22,8.8,force,front_fy,0.0016700943233445287 +karman_re400,ppo,22,8.8,force,upper_fx,-0.0007957866182550788 +karman_re400,ppo,22,8.8,force,upper_fy,0.006561700254678726 +karman_re400,ppo,22,8.8,force,lower_fx,0.0026241899468004704 +karman_re400,ppo,22,8.8,force,lower_fy,-0.0021685443352907896 +karman_re400,ppo,23,9.2,force,front_fx,0.001919504371471703 +karman_re400,ppo,23,9.2,force,front_fy,0.0005788017879240215 +karman_re400,ppo,23,9.2,force,upper_fx,0.00040203347452916205 +karman_re400,ppo,23,9.2,force,upper_fy,0.006758562289178371 +karman_re400,ppo,23,9.2,force,lower_fx,0.001462098560295999 +karman_re400,ppo,23,9.2,force,lower_fy,-0.0029298553708940744 +karman_re400,ppo,24,9.6,force,front_fx,0.0010110825533047318 +karman_re400,ppo,24,9.6,force,front_fy,-0.0006844025338068604 +karman_re400,ppo,24,9.6,force,upper_fx,0.0016182363033294678 +karman_re400,ppo,24,9.6,force,upper_fy,0.00698485504835844 +karman_re400,ppo,24,9.6,force,lower_fx,0.00022276215895544738 +karman_re400,ppo,24,9.6,force,lower_fy,-0.003403755370527506 +karman_re400,ppo,25,10.0,force,front_fx,0.0006523933261632919 +karman_re400,ppo,25,10.0,force,front_fy,-0.0018000846030190587 +karman_re400,ppo,25,10.0,force,upper_fx,0.0027110022492706776 +karman_re400,ppo,25,10.0,force,upper_fy,0.006946225184947252 +karman_re400,ppo,25,10.0,force,lower_fx,-0.0011363893281668425 +karman_re400,ppo,25,10.0,force,lower_fy,-0.0035008923150599003 +karman_re400,ppo,26,10.4,force,front_fx,0.000885940040461719 +karman_re400,ppo,26,10.4,force,front_fy,-0.0025883426424115896 +karman_re400,ppo,26,10.4,force,upper_fx,0.0035185953602194786 +karman_re400,ppo,26,10.4,force,upper_fy,0.00634761992841959 +karman_re400,ppo,26,10.4,force,lower_fx,-0.0024519688449800014 +karman_re400,ppo,26,10.4,force,lower_fy,-0.003481159918010235 +karman_re400,ppo,27,10.8,force,front_fx,0.0014881602255627513 +karman_re400,ppo,27,10.8,force,front_fy,-0.003067431040108204 +karman_re400,ppo,27,10.8,force,upper_fx,0.003901195013895631 +karman_re400,ppo,27,10.8,force,upper_fy,0.005240325815975666 +karman_re400,ppo,27,10.8,force,lower_fx,-0.0033856467343866825 +karman_re400,ppo,27,10.8,force,lower_fy,-0.003639898030087352 +karman_re400,ppo,28,11.2,force,front_fx,0.002024926245212555 +karman_re400,ppo,28,11.2,force,front_fy,-0.0033061832655221224 +karman_re400,ppo,28,11.2,force,upper_fx,0.0039969561621546745 +karman_re400,ppo,28,11.2,force,upper_fy,0.004033971577882767 +karman_re400,ppo,28,11.2,force,lower_fx,-0.0034957488533109426 +karman_re400,ppo,28,11.2,force,lower_fy,-0.004239935427904129 +karman_re400,ppo,29,11.6,force,front_fx,0.0022277578245848417 +karman_re400,ppo,29,11.6,force,front_fy,-0.0031376234255731106 +karman_re400,ppo,29,11.6,force,upper_fx,0.0037709339521825314 +karman_re400,ppo,29,11.6,force,upper_fy,0.0032614318188279867 +karman_re400,ppo,29,11.6,force,lower_fx,-0.002583848312497139 +karman_re400,ppo,29,11.6,force,lower_fy,-0.005041654221713543 +karman_re400,ppo,30,12.0,force,front_fx,0.0021343936678022146 +karman_re400,ppo,30,12.0,force,front_fy,-0.0025465888902544975 +karman_re400,ppo,30,12.0,force,upper_fx,0.003013947047293186 +karman_re400,ppo,30,12.0,force,upper_fy,0.003204561537131667 +karman_re400,ppo,30,12.0,force,lower_fx,-0.0011818154016509652 +karman_re400,ppo,30,12.0,force,lower_fy,-0.005438116379082203 +karman_re400,ppo,31,12.4,force,front_fx,0.001692430698312819 +karman_re400,ppo,31,12.4,force,front_fy,-0.0016447327798232436 +karman_re400,ppo,31,12.4,force,upper_fx,0.0019110174616798759 +karman_re400,ppo,31,12.4,force,upper_fy,0.003516842145472765 +karman_re400,ppo,31,12.4,force,lower_fx,4.377839286462404e-05 +karman_re400,ppo,31,12.4,force,lower_fy,-0.005462145432829857 +karman_re400,ppo,32,12.8,force,front_fx,0.0011137520195916295 +karman_re400,ppo,32,12.8,force,front_fy,-0.00035782920895144343 +karman_re400,ppo,32,12.8,force,upper_fx,0.0006991326226852834 +karman_re400,ppo,32,12.8,force,upper_fy,0.003681960515677929 +karman_re400,ppo,32,12.8,force,lower_fx,0.0011572744697332382 +karman_re400,ppo,32,12.8,force,lower_fy,-0.00555829331278801 +karman_re400,ppo,33,13.2,force,front_fx,0.0007023087819106877 +karman_re400,ppo,33,13.2,force,front_fy,0.0010380723979324102 +karman_re400,ppo,33,13.2,force,upper_fx,-0.0006099615129642189 +karman_re400,ppo,33,13.2,force,upper_fy,0.0035374409053474665 +karman_re400,ppo,33,13.2,force,lower_fx,0.0022715891245752573 +karman_re400,ppo,33,13.2,force,lower_fy,-0.005841595120728016 +karman_re400,ppo,34,13.6,force,front_fx,0.0006838610279373825 +karman_re400,ppo,34,13.6,force,front_fy,0.0021456603426486254 +karman_re400,ppo,34,13.6,force,upper_fx,-0.0020738947205245495 +karman_re400,ppo,34,13.6,force,upper_fy,0.0032740733586251736 +karman_re400,ppo,34,13.6,force,lower_fx,0.0032329291570931673 +karman_re400,ppo,34,13.6,force,lower_fy,-0.006019089370965958 +karman_re400,ppo,35,14.0,force,front_fx,0.0012506053317338228 +karman_re400,ppo,35,14.0,force,front_fy,0.0028264406137168407 +karman_re400,ppo,35,14.0,force,upper_fx,-0.0037208301946520805 +karman_re400,ppo,35,14.0,force,upper_fy,0.0031317826360464096 +karman_re400,ppo,35,14.0,force,lower_fx,0.0037925399374216795 +karman_re400,ppo,35,14.0,force,lower_fy,-0.00573782017454505 +karman_re400,ppo,36,14.4,force,front_fx,0.002227206015959382 +karman_re400,ppo,36,14.4,force,front_fy,0.0032857318874448538 +karman_re400,ppo,36,14.4,force,upper_fx,-0.005181257613003254 +karman_re400,ppo,36,14.4,force,upper_fy,0.003578589065000415 +karman_re400,ppo,36,14.4,force,lower_fx,0.003964982461184263 +karman_re400,ppo,36,14.4,force,lower_fy,-0.004746909253299236 +karman_re400,ppo,37,14.8,force,front_fx,0.002965290565043688 +karman_re400,ppo,37,14.8,force,front_fy,0.003560187527909875 +karman_re400,ppo,37,14.8,force,upper_fx,-0.005458580795675516 +karman_re400,ppo,37,14.8,force,upper_fy,0.0049050310626626015 +karman_re400,ppo,37,14.8,force,lower_fx,0.004165024030953646 +karman_re400,ppo,37,14.8,force,lower_fy,-0.003350903745740652 +karman_re400,ppo,38,15.2,force,front_fx,0.0033071665093302727 +karman_re400,ppo,38,15.2,force,front_fy,0.0032727697398513556 +karman_re400,ppo,38,15.2,force,upper_fx,-0.0039831469766795635 +karman_re400,ppo,38,15.2,force,upper_fy,0.006330958101898432 +karman_re400,ppo,38,15.2,force,lower_fx,0.004253641702234745 +karman_re400,ppo,38,15.2,force,lower_fy,-0.002186525845900178 +karman_re400,ppo,39,15.6,force,front_fx,0.0033137532882392406 +karman_re400,ppo,39,15.6,force,front_fy,0.0026440713554620743 +karman_re400,ppo,39,15.6,force,upper_fx,-0.0019288589246571064 +karman_re400,ppo,39,15.6,force,upper_fy,0.006867269054055214 +karman_re400,ppo,39,15.6,force,lower_fx,0.003723632311448455 +karman_re400,ppo,39,15.6,force,lower_fy,-0.0018816202646121383 +karman_re400,ppo,40,16.0,force,front_fx,0.002595908008515835 +karman_re400,ppo,40,16.0,force,front_fy,0.0018384301802143455 +karman_re400,ppo,40,16.0,force,upper_fx,-0.0003980605979450047 +karman_re400,ppo,40,16.0,force,upper_fy,0.006861012428998947 +karman_re400,ppo,40,16.0,force,lower_fx,0.002638925099745393 +karman_re400,ppo,40,16.0,force,lower_fy,-0.0025023671332746744 +karman_re400,ppo,41,16.4,force,front_fx,0.0016020365292206407 +karman_re400,ppo,41,16.4,force,front_fy,0.0007179483654908836 +karman_re400,ppo,41,16.4,force,upper_fx,0.000760988681577146 +karman_re400,ppo,41,16.4,force,upper_fy,0.006934489589184523 +karman_re400,ppo,41,16.4,force,lower_fx,0.001377134001813829 +karman_re400,ppo,41,16.4,force,lower_fy,-0.0032521123066544533 +karman_re400,ppo,42,16.8,force,front_fx,0.000912397401407361 +karman_re400,ppo,42,16.8,force,front_fy,-0.0006571643752977252 +karman_re400,ppo,42,16.8,force,upper_fx,0.001896527362987399 +karman_re400,ppo,42,16.8,force,upper_fy,0.0070375786162912846 +karman_re400,ppo,42,16.8,force,lower_fx,4.6132267016218975e-05 +karman_re400,ppo,42,16.8,force,lower_fy,-0.0036244711373001337 +karman_re400,ppo,43,17.2,force,front_fx,0.0006756067159585655 +karman_re400,ppo,43,17.2,force,front_fy,-0.0018616091692820191 +karman_re400,ppo,43,17.2,force,upper_fx,0.002915887860581279 +karman_re400,ppo,43,17.2,force,upper_fy,0.00691137183457613 +karman_re400,ppo,43,17.2,force,lower_fx,-0.001350883743725717 +karman_re400,ppo,43,17.2,force,lower_fy,-0.0036282518412917852 +karman_re400,ppo,44,17.6,force,front_fx,0.0008919417741708457 +karman_re400,ppo,44,17.6,force,front_fy,-0.0026433118619024754 +karman_re400,ppo,44,17.6,force,upper_fx,0.0036554259713739157 +karman_re400,ppo,44,17.6,force,upper_fy,0.006330253556370735 +karman_re400,ppo,44,17.6,force,lower_fx,-0.0026907576248049736 +karman_re400,ppo,44,17.6,force,lower_fy,-0.003602223936468363 +karman_re400,ppo,45,18.0,force,front_fx,0.0014490284956991673 +karman_re400,ppo,45,18.0,force,front_fy,-0.003104578936472535 +karman_re400,ppo,45,18.0,force,upper_fx,0.003982739057391882 +karman_re400,ppo,45,18.0,force,upper_fy,0.005238409154117107 +karman_re400,ppo,45,18.0,force,lower_fx,-0.003635575994849205 +karman_re400,ppo,45,18.0,force,lower_fy,-0.003859959775581956 +karman_re400,ppo,46,18.4,force,front_fx,0.0019388762302696705 +karman_re400,ppo,46,18.4,force,front_fy,-0.003366147167980671 +karman_re400,ppo,46,18.4,force,upper_fx,0.004022297449409962 +karman_re400,ppo,46,18.4,force,upper_fy,0.004029525443911552 +karman_re400,ppo,46,18.4,force,lower_fx,-0.0037382636219263077 +karman_re400,ppo,46,18.4,force,lower_fy,-0.004555025603622198 +karman_re400,ppo,47,18.8,force,front_fx,0.002115667797625065 +karman_re400,ppo,47,18.8,force,front_fy,-0.0032513043843209743 +karman_re400,ppo,47,18.8,force,upper_fx,0.003802185645326972 +karman_re400,ppo,47,18.8,force,upper_fy,0.003222032217308879 +karman_re400,ppo,47,18.8,force,lower_fx,-0.0027539562433958054 +karman_re400,ppo,47,18.8,force,lower_fy,-0.005351675674319267 +karman_re400,ppo,48,19.2,force,front_fx,0.002045782282948494 +karman_re400,ppo,48,19.2,force,front_fy,-0.0027053249068558216 +karman_re400,ppo,48,19.2,force,upper_fx,0.0030731975566595793 +karman_re400,ppo,48,19.2,force,upper_fy,0.003132353536784649 +karman_re400,ppo,48,19.2,force,lower_fx,-0.0012661012588068843 +karman_re400,ppo,48,19.2,force,lower_fy,-0.005680498667061329 +karman_re400,ppo,49,19.6,force,front_fx,0.001665037008933723 +karman_re400,ppo,49,19.6,force,front_fy,-0.0018147713271901011 +karman_re400,ppo,49,19.6,force,upper_fx,0.0020183136221021414 +karman_re400,ppo,49,19.6,force,upper_fy,0.0034747025929391384 +karman_re400,ppo,49,19.6,force,lower_fx,2.514636071282439e-05 +karman_re400,ppo,49,19.6,force,lower_fy,-0.005655537825077772 +karman_re400,ppo,50,20.0,force,front_fx,0.001138031017035246 +karman_re400,ppo,50,20.0,force,front_fy,-0.0005289429682306945 +karman_re400,ppo,50,20.0,force,upper_fx,0.0008284284849651158 +karman_re400,ppo,50,20.0,force,upper_fy,0.00367533415555954 +karman_re400,ppo,50,20.0,force,lower_fx,0.0011512533528730273 +karman_re400,ppo,50,20.0,force,lower_fy,-0.0057556964457035065 +karman_re400,ppo,51,20.4,force,front_fx,0.000745645840652287 +karman_re400,ppo,51,20.4,force,front_fy,0.0009140250040218234 +karman_re400,ppo,51,20.4,force,upper_fx,-0.0004821671172976494 +karman_re400,ppo,51,20.4,force,upper_fy,0.003569538239389658 +karman_re400,ppo,51,20.4,force,lower_fx,0.0022470708936452866 +karman_re400,ppo,51,20.4,force,lower_fy,-0.006009442266076803 +karman_re400,ppo,52,20.8,force,front_fx,0.0006441764417104423 +karman_re400,ppo,52,20.8,force,front_fy,0.0020554738584905863 +karman_re400,ppo,52,20.8,force,upper_fx,-0.001950695994310081 +karman_re400,ppo,52,20.8,force,upper_fy,0.003292292356491089 +karman_re400,ppo,52,20.8,force,lower_fx,0.0031628787983208895 +karman_re400,ppo,52,20.8,force,lower_fy,-0.0061288271099328995 +karman_re400,ppo,53,21.2,force,front_fx,0.001067619537934661 +karman_re400,ppo,53,21.2,force,front_fy,0.002756110392510891 +karman_re400,ppo,53,21.2,force,upper_fx,-0.0035441038198769093 +karman_re400,ppo,53,21.2,force,upper_fy,0.0031249576713889837 +karman_re400,ppo,53,21.2,force,lower_fx,0.0037304896395653486 +karman_re400,ppo,53,21.2,force,lower_fy,-0.005814006552100182 +karman_re400,ppo,54,21.6,force,front_fx,0.0019622331019490957 +karman_re400,ppo,54,21.6,force,front_fy,0.00321344961412251 +karman_re400,ppo,54,21.6,force,upper_fx,-0.004918340593576431 +karman_re400,ppo,54,21.6,force,upper_fy,0.003503571730107069 +karman_re400,ppo,54,21.6,force,lower_fx,0.00394490035250783 +karman_re400,ppo,54,21.6,force,lower_fy,-0.004855966195464134 +karman_re400,ppo,55,22.0,force,front_fx,0.0027267709374427795 +karman_re400,ppo,55,22.0,force,front_fy,0.00351988198235631 +karman_re400,ppo,55,22.0,force,upper_fx,-0.005227231420576572 +karman_re400,ppo,55,22.0,force,upper_fy,0.004743882920593023 +karman_re400,ppo,55,22.0,force,lower_fx,0.004157213028520346 +karman_re400,ppo,55,22.0,force,lower_fy,-0.0035197637043893337 +karman_re400,ppo,56,22.4,force,front_fx,0.003059468464925885 +karman_re400,ppo,56,22.4,force,front_fy,0.0033334880135953426 +karman_re400,ppo,56,22.4,force,upper_fx,-0.0038683624006807804 +karman_re400,ppo,56,22.4,force,upper_fy,0.006200700532644987 +karman_re400,ppo,56,22.4,force,lower_fx,0.004288224503397942 +karman_re400,ppo,56,22.4,force,lower_fy,-0.0023562174756079912 +karman_re400,ppo,57,22.8,force,front_fx,0.0030892626382410526 +karman_re400,ppo,57,22.8,force,front_fy,0.002722698263823986 +karman_re400,ppo,57,22.8,force,upper_fx,-0.001868091057986021 +karman_re400,ppo,57,22.8,force,upper_fy,0.006803533528000116 +karman_re400,ppo,57,22.8,force,lower_fx,0.0037660193629562855 +karman_re400,ppo,57,22.8,force,lower_fy,-0.002011440694332123 +karman_re400,ppo,58,23.2,force,front_fx,0.0024679861962795258 +karman_re400,ppo,58,23.2,force,front_fy,0.0019453425193205476 +karman_re400,ppo,58,23.2,force,upper_fx,-0.00036578430444933474 +karman_re400,ppo,58,23.2,force,upper_fy,0.006786903366446495 +karman_re400,ppo,58,23.2,force,lower_fx,0.002673080191016197 +karman_re400,ppo,58,23.2,force,lower_fy,-0.0025654532946646214 +karman_re400,ppo,59,23.6,force,front_fx,0.0015507404459640384 +karman_re400,ppo,59,23.6,force,front_fy,0.0008363495580852032 +karman_re400,ppo,59,23.6,force,upper_fx,0.0007641225820407271 +karman_re400,ppo,59,23.6,force,upper_fy,0.0068112947046756744 +karman_re400,ppo,59,23.6,force,lower_fx,0.001402934081852436 +karman_re400,ppo,59,23.6,force,lower_fy,-0.003282375866547227 +karman_re400,ppo,60,24.0,force,front_fx,0.0009256554185412824 +karman_re400,ppo,60,24.0,force,front_fy,-0.0005481037660501897 +karman_re400,ppo,60,24.0,force,upper_fx,0.0019100930076092482 +karman_re400,ppo,60,24.0,force,upper_fy,0.006942687556147575 +karman_re400,ppo,60,24.0,force,lower_fx,9.911016240948811e-05 +karman_re400,ppo,60,24.0,force,lower_fy,-0.0036448731552809477 +karman_re400,ppo,61,24.4,force,front_fx,0.0007149866432882845 +karman_re400,ppo,61,24.4,force,front_fy,-0.0017974739894270897 +karman_re400,ppo,61,24.4,force,upper_fx,0.002944416366517544 +karman_re400,ppo,61,24.4,force,upper_fy,0.006903655361384153 +karman_re400,ppo,61,24.4,force,lower_fx,-0.001305850106291473 +karman_re400,ppo,61,24.4,force,lower_fy,-0.0036616292782127857 +karman_re400,ppo,62,24.8,force,front_fx,0.0009535998688079417 +karman_re400,ppo,62,24.8,force,front_fy,-0.0026254565455019474 +karman_re400,ppo,62,24.8,force,upper_fx,0.0036924919113516808 +karman_re400,ppo,62,24.8,force,upper_fy,0.006410375237464905 +karman_re400,ppo,62,24.8,force,lower_fx,-0.002702524419873953 +karman_re400,ppo,62,24.8,force,lower_fy,-0.003639797680079937 +karman_re400,ppo,63,25.2,force,front_fx,0.0015324638225138187 +karman_re400,ppo,63,25.2,force,front_fy,-0.00311227492056787 +karman_re400,ppo,63,25.2,force,upper_fx,0.0040000369772315025 +karman_re400,ppo,63,25.2,force,upper_fy,0.005335300695151091 +karman_re400,ppo,63,25.2,force,lower_fx,-0.0037734447978436947 +karman_re400,ppo,63,25.2,force,lower_fy,-0.003853729460388422 +karman_re400,ppo,64,25.6,force,front_fx,0.0020763231441378593 +karman_re400,ppo,64,25.6,force,front_fy,-0.003406160743907094 +karman_re400,ppo,64,25.6,force,upper_fx,0.0040445211343467236 +karman_re400,ppo,64,25.6,force,upper_fy,0.0040589687414467335 +karman_re400,ppo,64,25.6,force,lower_fx,-0.003999544773250818 +karman_re400,ppo,64,25.6,force,lower_fy,-0.0045139603316783905 +karman_re400,ppo,65,26.0,force,front_fx,0.002307876944541931 +karman_re400,ppo,65,26.0,force,front_fy,-0.003314411733299494 +karman_re400,ppo,65,26.0,force,upper_fx,0.0038818714674562216 +karman_re400,ppo,65,26.0,force,upper_fy,0.0031751489732414484 +karman_re400,ppo,65,26.0,force,lower_fx,-0.0030484430026263 +karman_re400,ppo,65,26.0,force,lower_fy,-0.005330222193151712 +karman_re400,ppo,66,26.4,force,front_fx,0.002274456899613142 +karman_re400,ppo,66,26.4,force,front_fy,-0.00280710868537426 +karman_re400,ppo,66,26.4,force,upper_fx,0.0032303130719810724 +karman_re400,ppo,66,26.4,force,upper_fy,0.0030348889995366335 +karman_re400,ppo,66,26.4,force,lower_fx,-0.0014999572886154056 +karman_re400,ppo,66,26.4,force,lower_fy,-0.005739273503422737 +karman_re400,ppo,67,26.8,force,front_fx,0.001869514468125999 +karman_re400,ppo,67,26.8,force,front_fy,-0.0019550370052456856 +karman_re400,ppo,67,26.8,force,upper_fx,0.002204104559496045 +karman_re400,ppo,67,26.8,force,upper_fy,0.0034206958953291178 +karman_re400,ppo,67,26.8,force,lower_fx,-0.0001380819594487548 +karman_re400,ppo,67,26.8,force,lower_fy,-0.005737704690545797 +karman_re400,ppo,68,27.2,force,front_fx,0.0012506144121289253 +karman_re400,ppo,68,27.2,force,front_fy,-0.0007020652992650867 +karman_re400,ppo,68,27.2,force,upper_fx,0.0009989278623834252 +karman_re400,ppo,68,27.2,force,upper_fy,0.003697618143633008 +karman_re400,ppo,68,27.2,force,lower_fx,0.0009854822419583797 +karman_re400,ppo,68,27.2,force,lower_fy,-0.005817918572574854 +karman_re400,ppo,69,27.6,force,front_fx,0.000764158321544528 +karman_re400,ppo,69,27.6,force,front_fy,0.0007589124143123627 +karman_re400,ppo,69,27.6,force,upper_fx,-0.0003372651699464768 +karman_re400,ppo,69,27.6,force,upper_fy,0.003614455694332719 +karman_re400,ppo,69,27.6,force,lower_fx,0.0020765094086527824 +karman_re400,ppo,69,27.6,force,lower_fy,-0.006033558398485184 +karman_re400,ppo,70,28.0,force,front_fx,0.0005905330181121826 +karman_re400,ppo,70,28.0,force,front_fy,0.001954727340489626 +karman_re400,ppo,70,28.0,force,upper_fx,-0.0018023719312623143 +karman_re400,ppo,70,28.0,force,upper_fy,0.0033145330380648375 +karman_re400,ppo,70,28.0,force,lower_fx,0.003036252222955227 +karman_re400,ppo,70,28.0,force,lower_fy,-0.006138080731034279 +karman_re400,ppo,71,28.4,force,front_fx,0.0009669074206613004 +karman_re400,ppo,71,28.4,force,front_fy,0.0026857424527406693 +karman_re400,ppo,71,28.4,force,upper_fx,-0.003358381800353527 +karman_re400,ppo,71,28.4,force,upper_fy,0.0031008152291178703 +karman_re400,ppo,71,28.4,force,lower_fx,0.0036947515327483416 +karman_re400,ppo,71,28.4,force,lower_fy,-0.005878348369151354 +karman_re400,ppo,72,28.8,force,front_fx,0.0018396229716017842 +karman_re400,ppo,72,28.8,force,front_fy,0.003157645231112838 +karman_re400,ppo,72,28.8,force,upper_fx,-0.004777648951858282 +karman_re400,ppo,72,28.8,force,upper_fy,0.003428408410400152 +karman_re400,ppo,72,28.8,force,lower_fx,0.003961865324527025 +karman_re400,ppo,72,28.8,force,lower_fy,-0.005008555017411709 +karman_re400,ppo,73,29.2,force,front_fx,0.002648468129336834 +karman_re400,ppo,73,29.2,force,front_fy,0.003494054777547717 +karman_re400,ppo,73,29.2,force,upper_fx,-0.0052423118613660336 +karman_re400,ppo,73,29.2,force,upper_fy,0.004622573032975197 +karman_re400,ppo,73,29.2,force,lower_fx,0.004154381342232227 +karman_re400,ppo,73,29.2,force,lower_fy,-0.003701266832649708 +karman_re400,ppo,74,29.6,force,front_fx,0.0029789365362375975 +karman_re400,ppo,74,29.6,force,front_fy,0.003379311878234148 +karman_re400,ppo,74,29.6,force,upper_fx,-0.0040635294280946255 +karman_re400,ppo,74,29.6,force,upper_fy,0.006114676129072905 +karman_re400,ppo,74,29.6,force,lower_fx,0.004284020513296127 +karman_re400,ppo,74,29.6,force,lower_fy,-0.002481703879311681 +karman_re400,ppo,75,30.0,force,front_fx,0.0030425130389630795 +karman_re400,ppo,75,30.0,force,front_fy,0.0027913975063711405 +karman_re400,ppo,75,30.0,force,upper_fx,-0.002065894426777959 +karman_re400,ppo,75,30.0,force,upper_fy,0.00676792161539197 +karman_re400,ppo,75,30.0,force,lower_fx,0.0038048739079385996 +karman_re400,ppo,75,30.0,force,lower_fy,-0.0020163049921393394 +karman_re400,ppo,76,30.4,force,front_fx,0.00250941957347095 +karman_re400,ppo,76,30.4,force,front_fy,0.0020305467769503593 +karman_re400,ppo,76,30.4,force,upper_fx,-0.0004989184089936316 +karman_re400,ppo,76,30.4,force,upper_fy,0.006738829426467419 +karman_re400,ppo,76,30.4,force,lower_fx,0.0027517620474100113 +karman_re400,ppo,76,30.4,force,lower_fy,-0.0024862748105078936 +karman_re400,ppo,77,30.8,force,front_fx,0.00162972928956151 +karman_re400,ppo,77,30.8,force,front_fy,0.0009593801223672926 +karman_re400,ppo,77,30.8,force,upper_fx,0.0006805540760979056 +karman_re400,ppo,77,30.8,force,upper_fy,0.006765354890376329 +karman_re400,ppo,77,30.8,force,lower_fx,0.001521965372376144 +karman_re400,ppo,77,30.8,force,lower_fy,-0.0032019750215113163 +karman_re400,ppo,78,31.2,force,front_fx,0.0009815943194553256 +karman_re400,ppo,78,31.2,force,front_fy,-0.0004141695098951459 +karman_re400,ppo,78,31.2,force,upper_fx,0.0018424508161842823 +karman_re400,ppo,78,31.2,force,upper_fy,0.006937343627214432 +karman_re400,ppo,78,31.2,force,lower_fx,0.000240124121773988 +karman_re400,ppo,78,31.2,force,lower_fy,-0.003615992609411478 +karman_re400,ppo,79,31.6,force,front_fx,0.0007278036791831255 +karman_re400,ppo,79,31.6,force,front_fy,-0.0016925266245380044 +karman_re400,ppo,79,31.6,force,upper_fx,0.002877084305509925 +karman_re400,ppo,79,31.6,force,upper_fy,0.006949258036911488 +karman_re400,ppo,79,31.6,force,lower_fx,-0.0011662263423204422 +karman_re400,ppo,79,31.6,force,lower_fy,-0.003666408360004425 +karman_re400,ppo,80,32.0,force,front_fx,0.0009067603386938572 +karman_re400,ppo,80,32.0,force,front_fy,-0.002564704976975918 +karman_re400,ppo,80,32.0,force,upper_fx,0.0036267286632210016 +karman_re400,ppo,80,32.0,force,upper_fy,0.0064935279078781605 +karman_re400,ppo,80,32.0,force,lower_fx,-0.0026054636109620333 +karman_re400,ppo,80,32.0,force,lower_fy,-0.0036117825657129288 +karman_re400,ppo,81,32.4,force,front_fx,0.0014688961673527956 +karman_re400,ppo,81,32.4,force,front_fy,-0.0030769663862884045 +karman_re400,ppo,81,32.4,force,upper_fx,0.00396561436355114 +karman_re400,ppo,81,32.4,force,upper_fy,0.005431798752397299 +karman_re400,ppo,81,32.4,force,lower_fx,-0.003734415164217353 +karman_re400,ppo,81,32.4,force,lower_fy,-0.00375761860050261 +karman_re400,ppo,82,32.8,force,front_fx,0.0020585216116160154 +karman_re400,ppo,82,32.8,force,front_fy,-0.0033862944692373276 +karman_re400,ppo,82,32.8,force,upper_fx,0.004054217133671045 +karman_re400,ppo,82,32.8,force,upper_fy,0.0041441526263952255 +karman_re400,ppo,82,32.8,force,lower_fx,-0.0040433332324028015 +karman_re400,ppo,82,32.8,force,lower_fy,-0.004373795818537474 +karman_re400,ppo,83,33.2,force,front_fx,0.0023231753148138523 +karman_re400,ppo,83,33.2,force,front_fy,-0.0033425658475607634 +karman_re400,ppo,83,33.2,force,upper_fx,0.003958091605454683 +karman_re400,ppo,83,33.2,force,upper_fy,0.003215571865439415 +karman_re400,ppo,83,33.2,force,lower_fx,-0.0031537609174847603 +karman_re400,ppo,83,33.2,force,lower_fy,-0.005268248729407787 +karman_re400,ppo,84,33.6,force,front_fx,0.0023180677089840174 +karman_re400,ppo,84,33.6,force,front_fy,-0.0028649093583226204 +karman_re400,ppo,84,33.6,force,upper_fx,0.003362078685313463 +karman_re400,ppo,84,33.6,force,upper_fy,0.0030341416131705046 +karman_re400,ppo,84,33.6,force,lower_fx,-0.00158542615827173 +karman_re400,ppo,84,33.6,force,lower_fy,-0.005772843491286039 +karman_re400,ppo,85,34.0,force,front_fx,0.001929654274135828 +karman_re400,ppo,85,34.0,force,front_fy,-0.002060417551547289 +karman_re400,ppo,85,34.0,force,upper_fx,0.0023214512038975954 +karman_re400,ppo,85,34.0,force,upper_fy,0.0034207715652883053 +karman_re400,ppo,85,34.0,force,lower_fx,-0.00021969174849800766 +karman_re400,ppo,85,34.0,force,lower_fy,-0.005764614790678024 +karman_re400,ppo,86,34.4,force,front_fx,0.0012964211637154222 +karman_re400,ppo,86,34.4,force,front_fy,-0.0008432152098976076 +karman_re400,ppo,86,34.4,force,upper_fx,0.0011010628659278154 +karman_re400,ppo,86,34.4,force,upper_fy,0.0037113833241164684 +karman_re400,ppo,86,34.4,force,lower_fx,0.0008664256893098354 +karman_re400,ppo,86,34.4,force,lower_fy,-0.005762969143688679 +karman_re400,ppo,87,34.8,force,front_fx,0.0007867024978622794 +karman_re400,ppo,87,34.8,force,front_fy,0.0006236770423129201 +karman_re400,ppo,87,34.8,force,upper_fx,-0.00022003441699780524 +karman_re400,ppo,87,34.8,force,upper_fy,0.003631933592259884 +karman_re400,ppo,87,34.8,force,lower_fx,0.0019380877492949367 +karman_re400,ppo,87,34.8,force,lower_fy,-0.00594162056222558 +karman_re400,ppo,88,35.2,force,front_fx,0.0005910174804739654 +karman_re400,ppo,88,35.2,force,front_fy,0.0018560906173661351 +karman_re400,ppo,88,35.2,force,upper_fx,-0.0016349394572898746 +karman_re400,ppo,88,35.2,force,upper_fy,0.003335624700412154 +karman_re400,ppo,88,35.2,force,lower_fx,0.002949162619188428 +karman_re400,ppo,88,35.2,force,lower_fy,-0.00610353471711278 +karman_re400,ppo,89,35.6,force,front_fx,0.0009119963506236672 +karman_re400,ppo,89,35.6,force,front_fy,0.002624884946271777 +karman_re400,ppo,89,35.6,force,upper_fx,-0.003169769886881113 +karman_re400,ppo,89,35.6,force,upper_fy,0.003126345807686448 +karman_re400,ppo,89,35.6,force,lower_fx,0.0036605799105018377 +karman_re400,ppo,89,35.6,force,lower_fy,-0.005936081986874342 +karman_re400,ppo,90,36.0,force,front_fx,0.0017406530678272247 +karman_re400,ppo,90,36.0,force,front_fy,0.003106859978288412 +karman_re400,ppo,90,36.0,force,upper_fx,-0.004635774064809084 +karman_re400,ppo,90,36.0,force,upper_fy,0.0034023828338831663 +karman_re400,ppo,90,36.0,force,lower_fx,0.003954744432121515 +karman_re400,ppo,90,36.0,force,lower_fy,-0.005153692327439785 +karman_re400,ppo,91,36.4,force,front_fx,0.0025592108722776175 +karman_re400,ppo,91,36.4,force,front_fy,0.0034670960158109665 +karman_re400,ppo,91,36.4,force,upper_fx,-0.0052747903391718864 +karman_re400,ppo,91,36.4,force,upper_fy,0.004493324086070061 +karman_re400,ppo,91,36.4,force,lower_fx,0.004101065918803215 +karman_re400,ppo,91,36.4,force,lower_fy,-0.003855421906337142 +karman_re400,ppo,92,36.8,force,front_fx,0.002917531644925475 +karman_re400,ppo,92,36.8,force,front_fy,0.0034081395715475082 +karman_re400,ppo,92,36.8,force,upper_fx,-0.004275953397154808 +karman_re400,ppo,92,36.8,force,upper_fy,0.005963900126516819 +karman_re400,ppo,92,36.8,force,lower_fx,0.004242451395839453 +karman_re400,ppo,92,36.8,force,lower_fy,-0.0025861242320388556 +karman_re400,ppo,93,37.2,force,front_fx,0.0030369844753295183 +karman_re400,ppo,93,37.2,force,front_fy,0.0028445578645914793 +karman_re400,ppo,93,37.2,force,upper_fx,-0.0022875063586980104 +karman_re400,ppo,93,37.2,force,upper_fy,0.006704813800752163 +karman_re400,ppo,93,37.2,force,lower_fx,0.0038493829779326916 +karman_re400,ppo,93,37.2,force,lower_fy,-0.0020057351794093847 +karman_re400,ppo,94,37.6,force,front_fx,0.0025879545137286186 +karman_re400,ppo,94,37.6,force,front_fy,0.0020960152614861727 +karman_re400,ppo,94,37.6,force,upper_fx,-0.0006240036454983056 +karman_re400,ppo,94,37.6,force,upper_fy,0.006757864262908697 +karman_re400,ppo,94,37.6,force,lower_fx,0.002867752220481634 +karman_re400,ppo,94,37.6,force,lower_fy,-0.002392624504864216 +karman_re400,ppo,95,38.0,force,front_fx,0.0017259428277611732 +karman_re400,ppo,95,38.0,force,front_fy,0.0010675679659470916 +karman_re400,ppo,95,38.0,force,upper_fx,0.0005946902092546225 +karman_re400,ppo,95,38.0,force,upper_fy,0.006796685047447681 +karman_re400,ppo,95,38.0,force,lower_fx,0.001657029497437179 +karman_re400,ppo,95,38.0,force,lower_fy,-0.0031264445278793573 +karman_re400,ppo,96,38.4,force,front_fx,0.0010279014240950346 +karman_re400,ppo,96,38.4,force,front_fy,-0.0002750094863586128 +karman_re400,ppo,96,38.4,force,upper_fx,0.0017299831379204988 +karman_re400,ppo,96,38.4,force,upper_fy,0.0069748712703585625 +karman_re400,ppo,96,38.4,force,lower_fx,0.0003648084821179509 +karman_re400,ppo,96,38.4,force,lower_fy,-0.003584983292967081 +karman_re400,ppo,97,38.8,force,front_fx,0.0007236553938128054 +karman_re400,ppo,97,38.8,force,front_fy,-0.0015842602588236332 +karman_re400,ppo,97,38.8,force,upper_fx,0.0027564018964767456 +karman_re400,ppo,97,38.8,force,upper_fy,0.006968352943658829 +karman_re400,ppo,97,38.8,force,lower_fx,-0.001047093071974814 +karman_re400,ppo,97,38.8,force,lower_fy,-0.0036509432829916477 +karman_re400,ppo,98,39.2,force,front_fx,0.0008644891786389053 +karman_re400,ppo,98,39.2,force,front_fy,-0.0024925200268626213 +karman_re400,ppo,98,39.2,force,upper_fx,0.0035348248202353716 +karman_re400,ppo,98,39.2,force,upper_fy,0.006537154782563448 +karman_re400,ppo,98,39.2,force,lower_fx,-0.0024863984435796738 +karman_re400,ppo,98,39.2,force,lower_fy,-0.0035664152819663286 +karman_re400,ppo,99,39.6,force,front_fx,0.001419477048330009 +karman_re400,ppo,99,39.6,force,front_fy,-0.0030357488431036472 +karman_re400,ppo,99,39.6,force,upper_fx,0.003943195100873709 +karman_re400,ppo,99,39.6,force,upper_fy,0.005520449951291084 +karman_re400,ppo,99,39.6,force,lower_fx,-0.00362963043153286 +karman_re400,ppo,99,39.6,force,lower_fy,-0.0036876641679555178 +karman_re400,ppo,100,40.0,force,front_fx,0.002025659428909421 +karman_re400,ppo,100,40.0,force,front_fy,-0.003368157194927335 +karman_re400,ppo,100,40.0,force,upper_fx,0.004064761567860842 +karman_re400,ppo,100,40.0,force,upper_fy,0.004256348125636578 +karman_re400,ppo,100,40.0,force,lower_fx,-0.004016421269625425 +karman_re400,ppo,100,40.0,force,lower_fy,-0.0042998287826776505 +karman_re400,ppo,101,40.4,force,front_fx,0.0023138916585594416 +karman_re400,ppo,101,40.4,force,front_fy,-0.003373698564246297 +karman_re400,ppo,101,40.4,force,upper_fx,0.0040002367459237576 +karman_re400,ppo,101,40.4,force,upper_fy,0.0032961550168693066 +karman_re400,ppo,101,40.4,force,lower_fx,-0.0032253917306661606 +karman_re400,ppo,101,40.4,force,lower_fy,-0.005219671875238419 +karman_re400,ppo,102,40.8,force,front_fx,0.0023194828536361456 +karman_re400,ppo,102,40.8,force,front_fy,-0.0029417616315186024 +karman_re400,ppo,102,40.8,force,upper_fx,0.00342547963373363 +karman_re400,ppo,102,40.8,force,upper_fy,0.0030446425080299377 +karman_re400,ppo,102,40.8,force,lower_fx,-0.0017239621374756098 +karman_re400,ppo,102,40.8,force,lower_fy,-0.005750556476414204 +karman_re400,ppo,103,41.2,force,front_fx,0.001964630326256156 +karman_re400,ppo,103,41.2,force,front_fy,-0.0021607265807688236 +karman_re400,ppo,103,41.2,force,upper_fx,0.002402222715318203 +karman_re400,ppo,103,41.2,force,upper_fy,0.003391014877706766 +karman_re400,ppo,103,41.2,force,lower_fx,-0.0003669086145237088 +karman_re400,ppo,103,41.2,force,lower_fy,-0.005715683102607727 +karman_re400,ppo,104,41.6,force,front_fx,0.0013479404151439667 +karman_re400,ppo,104,41.6,force,front_fy,-0.000980293843895197 +karman_re400,ppo,104,41.6,force,upper_fx,0.0012119072489440441 +karman_re400,ppo,104,41.6,force,upper_fy,0.003684937721118331 +karman_re400,ppo,104,41.6,force,lower_fx,0.0007231603376567364 +karman_re400,ppo,104,41.6,force,lower_fy,-0.005693061742931604 +karman_re400,ppo,105,42.0,force,front_fx,0.000833262805826962 +karman_re400,ppo,105,42.0,force,front_fy,0.0004933144664391875 +karman_re400,ppo,105,42.0,force,upper_fx,-6.809224578319117e-05 +karman_re400,ppo,105,42.0,force,upper_fy,0.003652355168014765 +karman_re400,ppo,105,42.0,force,lower_fx,0.0018306534038856626 +karman_re400,ppo,105,42.0,force,lower_fy,-0.005909843370318413 +karman_re400,ppo,106,42.4,force,front_fx,0.0006051561795175076 +karman_re400,ppo,106,42.4,force,front_fy,0.0017632948001846671 +karman_re400,ppo,106,42.4,force,upper_fx,-0.0014619763242080808 +karman_re400,ppo,106,42.4,force,upper_fy,0.0033903406001627445 +karman_re400,ppo,106,42.4,force,lower_fx,0.0028805399779230356 +karman_re400,ppo,106,42.4,force,lower_fy,-0.00613290723413229 +karman_re400,ppo,107,42.8,force,front_fx,0.0008547596517018974 +karman_re400,ppo,107,42.8,force,front_fy,0.0025751814246177673 +karman_re400,ppo,107,42.8,force,upper_fx,-0.003010865766555071 +karman_re400,ppo,107,42.8,force,upper_fy,0.0031770002096891403 +karman_re400,ppo,107,42.8,force,lower_fx,0.003621355863288045 +karman_re400,ppo,107,42.8,force,lower_fy,-0.0060193222016096115 +karman_re400,ppo,108,43.2,force,front_fx,0.0016272274078801274 +karman_re400,ppo,108,43.2,force,front_fy,0.0030735195614397526 +karman_re400,ppo,108,43.2,force,upper_fx,-0.004537614993751049 +karman_re400,ppo,108,43.2,force,upper_fy,0.003357346635311842 +karman_re400,ppo,108,43.2,force,lower_fx,0.0039298031479120255 +karman_re400,ppo,108,43.2,force,lower_fy,-0.005269093904644251 +karman_re400,ppo,109,43.6,force,front_fx,0.0024846303276717663 +karman_re400,ppo,109,43.6,force,front_fy,0.0034410019870847464 +karman_re400,ppo,109,43.6,force,upper_fx,-0.00530614098533988 +karman_re400,ppo,109,43.6,force,upper_fy,0.00433160038664937 +karman_re400,ppo,109,43.6,force,lower_fx,0.004062329418957233 +karman_re400,ppo,109,43.6,force,lower_fy,-0.003977833315730095 +karman_re400,ppo,110,44.0,force,front_fx,0.0029069809243083 +karman_re400,ppo,110,44.0,force,front_fy,0.0034385016188025475 +karman_re400,ppo,110,44.0,force,upper_fx,-0.004455637186765671 +karman_re400,ppo,110,44.0,force,upper_fy,0.005812929477542639 +karman_re400,ppo,110,44.0,force,lower_fx,0.0042463974095880985 +karman_re400,ppo,110,44.0,force,lower_fy,-0.002671794965863228 +karman_re400,ppo,111,44.4,force,front_fx,0.0030621523037552834 +karman_re400,ppo,111,44.4,force,front_fy,0.002900835359469056 +karman_re400,ppo,111,44.4,force,upper_fx,-0.002470534760504961 +karman_re400,ppo,111,44.4,force,upper_fy,0.006691441405564547 +karman_re400,ppo,111,44.4,force,lower_fx,0.003939040470868349 +karman_re400,ppo,111,44.4,force,lower_fy,-0.002005482790991664 +karman_re400,ppo,112,44.8,force,front_fx,0.002676436211913824 +karman_re400,ppo,112,44.8,force,front_fy,0.0021793844643980265 +karman_re400,ppo,112,44.8,force,upper_fx,-0.0007358110742643476 +karman_re400,ppo,112,44.8,force,upper_fy,0.0068079885095357895 +karman_re400,ppo,112,44.8,force,lower_fx,0.003001214936375618 +karman_re400,ppo,112,44.8,force,lower_fy,-0.002323312219232321 +karman_re400,ppo,113,45.2,force,front_fx,0.0018036342225968838 +karman_re400,ppo,113,45.2,force,front_fy,0.0011869450099766254 +karman_re400,ppo,113,45.2,force,upper_fx,0.0004816246801055968 +karman_re400,ppo,113,45.2,force,upper_fy,0.006809889804571867 +karman_re400,ppo,113,45.2,force,lower_fx,0.0017671047244220972 +karman_re400,ppo,113,45.2,force,lower_fy,-0.0030664035584777594 +karman_re400,ppo,114,45.6,force,front_fx,0.0010641742264851928 +karman_re400,ppo,114,45.6,force,front_fy,-0.00013074850721750408 +karman_re400,ppo,114,45.6,force,upper_fx,0.0015955313574522734 +karman_re400,ppo,114,45.6,force,upper_fy,0.006942853797227144 +karman_re400,ppo,114,45.6,force,lower_fx,0.0004700327990576625 +karman_re400,ppo,114,45.6,force,lower_fy,-0.003547854721546173 +karman_re400,ppo,115,46.0,force,front_fx,0.0007302053854800761 +karman_re400,ppo,115,46.0,force,front_fy,-0.0014641284942626953 +karman_re400,ppo,115,46.0,force,upper_fx,0.002644492778927088 +karman_re400,ppo,115,46.0,force,upper_fy,0.006938362028449774 +karman_re400,ppo,115,46.0,force,lower_fx,-0.0009205765090882778 +karman_re400,ppo,115,46.0,force,lower_fy,-0.0036246145609766245 +karman_re400,ppo,116,46.4,force,front_fx,0.0008403908577747643 +karman_re400,ppo,116,46.4,force,front_fy,-0.002416882896795869 +karman_re400,ppo,116,46.4,force,upper_fx,0.0034778141416609287 +karman_re400,ppo,116,46.4,force,upper_fy,0.0065758912824094296 +karman_re400,ppo,116,46.4,force,lower_fx,-0.0023351924028247595 +karman_re400,ppo,116,46.4,force,lower_fy,-0.0035487129352986813 +karman_re400,ppo,117,46.8,force,front_fx,0.0013655689544975758 +karman_re400,ppo,117,46.8,force,front_fy,-0.0029897999484091997 +karman_re400,ppo,117,46.8,force,upper_fx,0.003934355452656746 +karman_re400,ppo,117,46.8,force,upper_fy,0.005643218755722046 +karman_re400,ppo,117,46.8,force,lower_fx,-0.0035109848249703646 +karman_re400,ppo,117,46.8,force,lower_fy,-0.0036677413154393435 +karman_re400,ppo,118,47.2,force,front_fx,0.001972015481442213 +karman_re400,ppo,118,47.2,force,front_fy,-0.0033484017476439476 +karman_re400,ppo,118,47.2,force,upper_fx,0.004062255844473839 +karman_re400,ppo,118,47.2,force,upper_fy,0.004395877942442894 +karman_re400,ppo,118,47.2,force,lower_fx,-0.0040021841414272785 +karman_re400,ppo,118,47.2,force,lower_fy,-0.004246115684509277 +karman_re400,ppo,119,47.6,force,front_fx,0.002279598033055663 +karman_re400,ppo,119,47.6,force,front_fy,-0.003397624474018812 +karman_re400,ppo,119,47.6,force,upper_fx,0.004000966437160969 +karman_re400,ppo,119,47.6,force,upper_fy,0.0033776320051401854 +karman_re400,ppo,119,47.6,force,lower_fx,-0.0033520834986120462 +karman_re400,ppo,119,47.6,force,lower_fy,-0.005124456249177456 +karman_re400,ppo,120,48.0,force,front_fx,0.0023157033137977123 +karman_re400,ppo,120,48.0,force,front_fy,-0.003002731129527092 +karman_re400,ppo,120,48.0,force,upper_fx,0.0034785449970513582 +karman_re400,ppo,120,48.0,force,upper_fy,0.003032787935808301 +karman_re400,ppo,120,48.0,force,lower_fx,-0.0019077041652053595 +karman_re400,ppo,120,48.0,force,lower_fy,-0.005672891158610582 +karman_re400,ppo,121,48.4,force,front_fx,0.0020153566729277372 +karman_re400,ppo,121,48.4,force,front_fy,-0.002252462087199092 +karman_re400,ppo,121,48.4,force,upper_fx,0.002510716672986746 +karman_re400,ppo,121,48.4,force,upper_fy,0.0033298770431429148 +karman_re400,ppo,121,48.4,force,lower_fx,-0.000506582495290786 +karman_re400,ppo,121,48.4,force,lower_fy,-0.005686656106263399 +karman_re400,ppo,122,48.8,force,front_fx,0.0014188495697453618 +karman_re400,ppo,122,48.8,force,front_fy,-0.0011096688685938716 +karman_re400,ppo,122,48.8,force,upper_fx,0.0013559518847614527 +karman_re400,ppo,122,48.8,force,upper_fy,0.0036638115998357534 +karman_re400,ppo,122,48.8,force,lower_fx,0.0006281106034293771 +karman_re400,ppo,122,48.8,force,lower_fy,-0.005698370281606913 +karman_re400,ppo,123,49.2,force,front_fx,0.0008885826682671905 +karman_re400,ppo,123,49.2,force,front_fy,0.00034987309481948614 +karman_re400,ppo,123,49.2,force,upper_fx,8.804657409200445e-05 +karman_re400,ppo,123,49.2,force,upper_fy,0.003686891868710518 +karman_re400,ppo,123,49.2,force,lower_fx,0.0017496304353699088 +karman_re400,ppo,123,49.2,force,lower_fy,-0.005937440320849419 +karman_re400,ppo,124,49.6,force,front_fx,0.0006071089301258326 +karman_re400,ppo,124,49.6,force,front_fy,0.0016610361635684967 +karman_re400,ppo,124,49.6,force,upper_fx,-0.0013213716447353363 +karman_re400,ppo,124,49.6,force,upper_fy,0.0034474798012524843 +karman_re400,ppo,124,49.6,force,lower_fx,0.002794698579236865 +karman_re400,ppo,124,49.6,force,lower_fy,-0.006164187099784613 +karman_re400,ppo,125,50.0,force,front_fx,0.0007883994840085506 +karman_re400,ppo,125,50.0,force,front_fy,0.0025172806344926357 +karman_re400,ppo,125,50.0,force,upper_fx,-0.00287379021756351 +karman_re400,ppo,125,50.0,force,upper_fy,0.0031930694822221994 +karman_re400,ppo,125,50.0,force,lower_fx,0.003553505754098296 +karman_re400,ppo,125,50.0,force,lower_fy,-0.00606103939935565 +karman_re400,ppo,126,50.4,force,front_fx,0.0015283571556210518 +karman_re400,ppo,126,50.4,force,front_fy,0.003030724124982953 +karman_re400,ppo,126,50.4,force,upper_fx,-0.004414251074194908 +karman_re400,ppo,126,50.4,force,upper_fy,0.0032930425368249416 +karman_re400,ppo,126,50.4,force,lower_fx,0.003903695847839117 +karman_re400,ppo,126,50.4,force,lower_fy,-0.005356463138014078 +karman_re400,ppo,127,50.8,force,front_fx,0.0024301516823470592 +karman_re400,ppo,127,50.8,force,front_fy,0.003409659257158637 +karman_re400,ppo,127,50.8,force,upper_fx,-0.005280899349600077 +karman_re400,ppo,127,50.8,force,upper_fy,0.004186153411865234 +karman_re400,ppo,127,50.8,force,lower_fx,0.004053371027112007 +karman_re400,ppo,127,50.8,force,lower_fy,-0.004104482475668192 +karman_re400,ppo,128,51.2,force,front_fx,0.002894375938922167 +karman_re400,ppo,128,51.2,force,front_fy,0.0034641711972653866 +karman_re400,ppo,128,51.2,force,upper_fx,-0.004584643989801407 +karman_re400,ppo,128,51.2,force,upper_fy,0.0056970431469380856 +karman_re400,ppo,128,51.2,force,lower_fx,0.004263438284397125 +karman_re400,ppo,128,51.2,force,lower_fy,-0.0027870191261172295 +karman_re400,ppo,129,51.6,force,front_fx,0.0030650089029222727 +karman_re400,ppo,129,51.6,force,front_fy,0.002967208856716752 +karman_re400,ppo,129,51.6,force,upper_fx,-0.0026392873842269182 +karman_re400,ppo,129,51.6,force,upper_fy,0.006686954293400049 +karman_re400,ppo,129,51.6,force,lower_fx,0.004014951176941395 +karman_re400,ppo,129,51.6,force,lower_fy,-0.002035773592069745 +karman_re400,ppo,130,52.0,force,front_fx,0.0027280128560960293 +karman_re400,ppo,130,52.0,force,front_fy,0.002263240981847048 +karman_re400,ppo,130,52.0,force,upper_fx,-0.0008778308983892202 +karman_re400,ppo,130,52.0,force,upper_fy,0.00681610032916069 +karman_re400,ppo,130,52.0,force,lower_fx,0.0030955099500715733 +karman_re400,ppo,130,52.0,force,lower_fy,-0.0022744496818631887 +karman_re400,ppo,131,52.4,force,front_fx,0.0018741212552413344 +karman_re400,ppo,131,52.4,force,front_fy,0.001308329519815743 +karman_re400,ppo,131,52.4,force,upper_fx,0.0003503713815007359 +karman_re400,ppo,131,52.4,force,upper_fy,0.006768002640455961 +karman_re400,ppo,131,52.4,force,lower_fx,0.0018666504183784127 +karman_re400,ppo,131,52.4,force,lower_fy,-0.0029975371435284615 +karman_re400,ppo,132,52.8,force,front_fx,0.0011168870842084289 +karman_re400,ppo,132,52.8,force,front_fy,8.426203748967964e-06 +karman_re400,ppo,132,52.8,force,upper_fx,0.001475289580412209 +karman_re400,ppo,132,52.8,force,upper_fy,0.006887688767164946 +karman_re400,ppo,132,52.8,force,lower_fx,0.0005923500866629183 +karman_re400,ppo,132,52.8,force,lower_fy,-0.0035046585835516453 +karman_re400,ppo,133,53.2,force,front_fx,0.000754993874579668 +karman_re400,ppo,133,53.2,force,front_fy,-0.0013461066409945488 +karman_re400,ppo,133,53.2,force,upper_fx,0.0025617966894060373 +karman_re400,ppo,133,53.2,force,upper_fy,0.006934786215424538 +karman_re400,ppo,133,53.2,force,lower_fx,-0.0007643013959750533 +karman_re400,ppo,133,53.2,force,lower_fy,-0.0036227714736014605 +karman_re400,ppo,134,53.6,force,front_fx,0.0008188500069081783 +karman_re400,ppo,134,53.6,force,front_fy,-0.0023416290059685707 +karman_re400,ppo,134,53.6,force,upper_fx,0.0034280086401849985 +karman_re400,ppo,134,53.6,force,upper_fy,0.0066529237665236 +karman_re400,ppo,134,53.6,force,lower_fx,-0.002178662456572056 +karman_re400,ppo,134,53.6,force,lower_fy,-0.0035664858296513557 +karman_re400,ppo,135,54.0,force,front_fx,0.0012964669149369001 +karman_re400,ppo,135,54.0,force,front_fy,-0.0029490431770682335 +karman_re400,ppo,135,54.0,force,upper_fx,0.003907547798007727 +karman_re400,ppo,135,54.0,force,upper_fy,0.005779430270195007 +karman_re400,ppo,135,54.0,force,lower_fx,-0.0034140017814934254 +karman_re400,ppo,135,54.0,force,lower_fy,-0.003658177563920617 +karman_re400,ppo,136,54.4,force,front_fx,0.0019076609751209617 +karman_re400,ppo,136,54.4,force,front_fy,-0.003322025528177619 +karman_re400,ppo,136,54.4,force,upper_fx,0.0040380749851465225 +karman_re400,ppo,136,54.4,force,upper_fy,0.004524532705545425 +karman_re400,ppo,136,54.4,force,lower_fx,-0.004018078558146954 +karman_re400,ppo,136,54.4,force,lower_fy,-0.004150438122451305 +karman_re400,ppo,137,54.8,force,front_fx,0.002256084932014346 +karman_re400,ppo,137,54.8,force,front_fy,-0.0034140797797590494 +karman_re400,ppo,137,54.8,force,upper_fx,0.004005418624728918 +karman_re400,ppo,137,54.8,force,upper_fy,0.003440759377554059 +karman_re400,ppo,137,54.8,force,lower_fx,-0.003498754696920514 +karman_re400,ppo,137,54.8,force,lower_fy,-0.005003404803574085 +karman_re400,ppo,138,55.2,force,front_fx,0.002329462906345725 +karman_re400,ppo,138,55.2,force,front_fy,-0.0030531673692166805 +karman_re400,ppo,138,55.2,force,upper_fx,0.0035651663783937693 +karman_re400,ppo,138,55.2,force,upper_fy,0.003015022026374936 +karman_re400,ppo,138,55.2,force,lower_fx,-0.00207070866599679 +karman_re400,ppo,138,55.2,force,lower_fy,-0.005631147418171167 +karman_re400,ppo,139,55.6,force,front_fx,0.0020743084605783224 +karman_re400,ppo,139,55.6,force,front_fy,-0.0023381593637168407 +karman_re400,ppo,139,55.6,force,upper_fx,0.0026438047643750906 +karman_re400,ppo,139,55.6,force,upper_fy,0.00328255956992507 +karman_re400,ppo,139,55.6,force,lower_fx,-0.0006075795390643179 +karman_re400,ppo,139,55.6,force,lower_fy,-0.005733449477702379 +karman_re400,ppo,140,56.0,force,front_fx,0.0014917609514668584 +karman_re400,ppo,140,56.0,force,front_fy,-0.0012405491434037685 +karman_re400,ppo,140,56.0,force,upper_fx,0.0014938813401386142 +karman_re400,ppo,140,56.0,force,upper_fy,0.003659297712147236 +karman_re400,ppo,140,56.0,force,lower_fx,0.0005557249533012509 +karman_re400,ppo,140,56.0,force,lower_fy,-0.005740018095821142 +karman_re400,ppo,141,56.4,force,front_fx,0.0009247907437384129 +karman_re400,ppo,141,56.4,force,front_fy,0.0002023280248977244 +karman_re400,ppo,141,56.4,force,upper_fx,0.0002065519947791472 +karman_re400,ppo,141,56.4,force,upper_fy,0.0037173202726989985 +karman_re400,ppo,141,56.4,force,lower_fx,0.0016470627160742879 +karman_re400,ppo,141,56.4,force,lower_fy,-0.005927222780883312 +karman_re400,ppo,142,56.8,force,front_fx,0.0006060688756406307 +karman_re400,ppo,142,56.8,force,front_fy,0.001547694788314402 +karman_re400,ppo,142,56.8,force,upper_fx,-0.0011990348575636744 +karman_re400,ppo,142,56.8,force,upper_fy,0.0034713461063802242 +karman_re400,ppo,142,56.8,force,lower_fx,0.002686239080503583 +karman_re400,ppo,142,56.8,force,lower_fy,-0.006130314897745848 +karman_re400,ppo,143,57.2,force,front_fx,0.0007440007757395506 +karman_re400,ppo,143,57.2,force,front_fy,0.002451015403494239 +karman_re400,ppo,143,57.2,force,upper_fx,-0.0027288617566227913 +karman_re400,ppo,143,57.2,force,upper_fy,0.003189501818269491 +karman_re400,ppo,143,57.2,force,lower_fx,0.003486023750156164 +karman_re400,ppo,143,57.2,force,lower_fy,-0.006060609593987465 +karman_re400,ppo,144,57.6,force,front_fx,0.0014550216728821397 +karman_re400,ppo,144,57.6,force,front_fy,0.0029833740554749966 +karman_re400,ppo,144,57.6,force,upper_fx,-0.004268496762961149 +karman_re400,ppo,144,57.6,force,upper_fy,0.0032461315859109163 +karman_re400,ppo,144,57.6,force,lower_fx,0.003895862028002739 +karman_re400,ppo,144,57.6,force,lower_fy,-0.0054434482008218765 +karman_re400,ppo,145,58.0,force,front_fx,0.002375879790633917 +karman_re400,ppo,145,58.0,force,front_fy,0.003380236681550741 +karman_re400,ppo,145,58.0,force,upper_fx,-0.005242564715445042 +karman_re400,ppo,145,58.0,force,upper_fy,0.004085189197212458 +karman_re400,ppo,145,58.0,force,lower_fx,0.004050055053085089 +karman_re400,ppo,145,58.0,force,lower_fy,-0.004244254902005196 +karman_re400,ppo,146,58.4,force,front_fx,0.002868079813197255 +karman_re400,ppo,146,58.4,force,front_fy,0.0034894882701337337 +karman_re400,ppo,146,58.4,force,upper_fx,-0.004720724653452635 +karman_re400,ppo,146,58.4,force,upper_fy,0.005590640939772129 +karman_re400,ppo,146,58.4,force,lower_fx,0.004255343694239855 +karman_re400,ppo,146,58.4,force,lower_fy,-0.0029109877068549395 +karman_re400,ppo,147,58.8,force,front_fx,0.0030516991391777992 +karman_re400,ppo,147,58.8,force,front_fy,0.0030330955050885677 +karman_re400,ppo,147,58.8,force,upper_fx,-0.002855843398720026 +karman_re400,ppo,147,58.8,force,upper_fy,0.006636021193116903 +karman_re400,ppo,147,58.8,force,lower_fx,0.004049982875585556 +karman_re400,ppo,147,58.8,force,lower_fy,-0.0020692073740065098 +karman_re400,ppo,148,59.2,force,front_fx,0.0027840968687087297 +karman_re400,ppo,148,59.2,force,front_fy,0.0023430162109434605 +karman_re400,ppo,148,59.2,force,upper_fx,-0.0010494842426851392 +karman_re400,ppo,148,59.2,force,upper_fy,0.006791103631258011 +karman_re400,ppo,148,59.2,force,lower_fx,0.0031833017710596323 +karman_re400,ppo,148,59.2,force,lower_fy,-0.0022094130981713533 +karman_re400,ppo,149,59.6,force,front_fx,0.0019704862497746944 +karman_re400,ppo,149,59.6,force,front_fy,0.001416304730810225 +karman_re400,ppo,149,59.6,force,upper_fx,0.00022914580767974257 +karman_re400,ppo,149,59.6,force,upper_fy,0.006738586351275444 +karman_re400,ppo,149,59.6,force,lower_fx,0.001990395365282893 +karman_re400,ppo,149,59.6,force,lower_fy,-0.0029149630572646856 +karman_re400,ppo,150,60.0,force,front_fx,0.0011889898451045156 +karman_re400,ppo,150,60.0,force,front_fy,0.0001423996436642483 +karman_re400,ppo,150,60.0,force,upper_fx,0.0013731963699683547 +karman_re400,ppo,150,60.0,force,upper_fy,0.006885180249810219 +karman_re400,ppo,150,60.0,force,lower_fx,0.0007390707032755017 +karman_re400,ppo,150,60.0,force,lower_fy,-0.0034670711029320955 +karman_re400,ppo,151,60.4,force,front_fx,0.0007829631795175374 +karman_re400,ppo,151,60.4,force,front_fy,-0.0012279750080779195 +karman_re400,ppo,151,60.4,force,upper_fx,0.0024757676292210817 +karman_re400,ppo,151,60.4,force,upper_fy,0.006973464507609606 +karman_re400,ppo,151,60.4,force,lower_fx,-0.0006070251693017781 +karman_re400,ppo,151,60.4,force,lower_fy,-0.003635735483840108 +karman_re400,ppo,152,60.8,force,front_fx,0.0007821287144906819 +karman_re400,ppo,152,60.8,force,front_fy,-0.0022646449506282806 +karman_re400,ppo,152,60.8,force,upper_fx,0.0033482671715319157 +karman_re400,ppo,152,60.8,force,upper_fy,0.0067324512638151646 +karman_re400,ppo,152,60.8,force,lower_fx,-0.0020439072977751493 +karman_re400,ppo,152,60.8,force,lower_fy,-0.0035790828987956047 +karman_re400,ppo,153,61.2,force,front_fx,0.001220613601617515 +karman_re400,ppo,153,61.2,force,front_fy,-0.002903158077970147 +karman_re400,ppo,153,61.2,force,upper_fx,0.003863757010549307 +karman_re400,ppo,153,61.2,force,upper_fy,0.005888292100280523 +karman_re400,ppo,153,61.2,force,lower_fx,-0.0033238837495446205 +karman_re400,ppo,153,61.2,force,lower_fy,-0.003619516734033823 +karman_re400,ppo,154,61.6,force,front_fx,0.0018465414177626371 +karman_re400,ppo,154,61.6,force,front_fy,-0.0032906541600823402 +karman_re400,ppo,154,61.6,force,upper_fx,0.004024426452815533 +karman_re400,ppo,154,61.6,force,upper_fy,0.004634091630578041 +karman_re400,ppo,154,61.6,force,lower_fx,-0.004009094089269638 +karman_re400,ppo,154,61.6,force,lower_fy,-0.0040490394458174706 +karman_re400,ppo,155,62.0,force,front_fx,0.0022404755000025034 +karman_re400,ppo,155,62.0,force,front_fy,-0.0034203259274363518 +karman_re400,ppo,155,62.0,force,upper_fx,0.0040368251502513885 +karman_re400,ppo,155,62.0,force,upper_fy,0.0035141450352966785 +karman_re400,ppo,155,62.0,force,lower_fx,-0.0035873809829354286 +karman_re400,ppo,155,62.0,force,lower_fy,-0.004908587783575058 +karman_re400,ppo,156,62.4,force,front_fx,0.0023363130167126656 +karman_re400,ppo,156,62.4,force,front_fy,-0.0031027523800730705 +karman_re400,ppo,156,62.4,force,upper_fx,0.0036574178375303745 +karman_re400,ppo,156,62.4,force,upper_fy,0.003025629324838519 +karman_re400,ppo,156,62.4,force,lower_fx,-0.0021900280844420195 +karman_re400,ppo,156,62.4,force,lower_fy,-0.005626373458653688 +karman_re400,ppo,157,62.8,force,front_fx,0.0021136358845978975 +karman_re400,ppo,157,62.8,force,front_fy,-0.0024229593109339476 +karman_re400,ppo,157,62.8,force,upper_fx,0.0027562053874135017 +karman_re400,ppo,157,62.8,force,upper_fy,0.0032610211055725813 +karman_re400,ppo,157,62.8,force,lower_fx,-0.0007032681023702025 +karman_re400,ppo,157,62.8,force,lower_fy,-0.0057718283496797085 +karman_re400,ppo,158,63.2,force,front_fx,0.0015403388533741236 +karman_re400,ppo,158,63.2,force,front_fy,-0.0013687502359971404 +karman_re400,ppo,158,63.2,force,upper_fx,0.0015936462441459298 +karman_re400,ppo,158,63.2,force,upper_fy,0.003647108329460025 +karman_re400,ppo,158,63.2,force,lower_fx,0.0004480956995394081 +karman_re400,ppo,158,63.2,force,lower_fy,-0.005722086876630783 +karman_re400,ppo,159,63.6,force,front_fx,0.0009587298845872283 +karman_re400,ppo,159,63.6,force,front_fy,5.608539504464716e-05 +karman_re400,ppo,159,63.6,force,upper_fx,0.0003164394584018737 +karman_re400,ppo,159,63.6,force,upper_fy,0.0037210502196103334 +karman_re400,ppo,159,63.6,force,lower_fx,0.0015189028345048428 +karman_re400,ppo,159,63.6,force,lower_fy,-0.005862297490239143 +karman_re400,ppo,160,64.0,force,front_fx,0.0006217918707989156 +karman_re400,ppo,160,64.0,force,front_fy,0.001434013363905251 +karman_re400,ppo,160,64.0,force,upper_fx,-0.0010577909415587783 +karman_re400,ppo,160,64.0,force,upper_fy,0.003484924789518118 +karman_re400,ppo,160,64.0,force,lower_fx,0.00258365785703063 +karman_re400,ppo,160,64.0,force,lower_fy,-0.006076899357140064 +karman_re400,ppo,161,64.4,force,front_fx,0.0007156075444072485 +karman_re400,ppo,161,64.4,force,front_fy,0.002381383441388607 +karman_re400,ppo,161,64.4,force,upper_fx,-0.0025599224027246237 +karman_re400,ppo,161,64.4,force,upper_fy,0.0032069182489067316 +karman_re400,ppo,161,64.4,force,lower_fx,0.0034347164910286665 +karman_re400,ppo,161,64.4,force,lower_fy,-0.006079184357076883 +karman_re400,ppo,162,64.8,force,front_fx,0.001377874636091292 +karman_re400,ppo,162,64.8,force,front_fy,0.00294188829138875 +karman_re400,ppo,162,64.8,force,upper_fx,-0.004115994554013014 +karman_re400,ppo,162,64.8,force,upper_fy,0.0032325582578778267 +karman_re400,ppo,162,64.8,force,lower_fx,0.0038867308758199215 +karman_re400,ppo,162,64.8,force,lower_fy,-0.0055440859869122505 +karman_re400,ppo,163,65.2,force,front_fx,0.0022909995168447495 +karman_re400,ppo,163,65.2,force,front_fy,0.0033493926748633385 +karman_re400,ppo,163,65.2,force,upper_fx,-0.005209241062402725 +karman_re400,ppo,163,65.2,force,upper_fy,0.0039836387149989605 +karman_re400,ppo,163,65.2,force,lower_fx,0.004026793874800205 +karman_re400,ppo,163,65.2,force,lower_fy,-0.004387402907013893 +karman_re400,ppo,164,65.6,force,front_fx,0.0028260769322514534 +karman_re400,ppo,164,65.6,force,front_fy,0.003507373621687293 +karman_re400,ppo,164,65.6,force,upper_fx,-0.004872937686741352 +karman_re400,ppo,164,65.6,force,upper_fy,0.005433047190308571 +karman_re400,ppo,164,65.6,force,lower_fx,0.004222425632178783 +karman_re400,ppo,164,65.6,force,lower_fy,-0.0030271140858531 +karman_re400,ppo,165,66.0,force,front_fx,0.003043008502572775 +karman_re400,ppo,165,66.0,force,front_fy,0.003093403298407793 +karman_re400,ppo,165,66.0,force,upper_fx,-0.003086262382566929 +karman_re400,ppo,165,66.0,force,upper_fy,0.006549290381371975 +karman_re400,ppo,165,66.0,force,lower_fx,0.004083988722413778 +karman_re400,ppo,165,66.0,force,lower_fy,-0.002100752666592598 +karman_re400,ppo,166,66.4,force,front_fx,0.0028534538578242064 +karman_re400,ppo,166,66.4,force,front_fy,0.0024132453836500645 +karman_re400,ppo,166,66.4,force,upper_fx,-0.0012076504062861204 +karman_re400,ppo,166,66.4,force,upper_fy,0.006787340622395277 +karman_re400,ppo,166,66.4,force,lower_fx,0.003296969924122095 +karman_re400,ppo,166,66.4,force,lower_fy,-0.002141970209777355 +karman_re400,ppo,167,66.8,force,front_fx,0.002074106130748987 +karman_re400,ppo,167,66.8,force,front_fy,0.0015182202914729714 +karman_re400,ppo,167,66.8,force,upper_fx,0.00012960206368006766 +karman_re400,ppo,167,66.8,force,upper_fy,0.006760405842214823 +karman_re400,ppo,167,66.8,force,lower_fx,0.002130596898496151 +karman_re400,ppo,167,66.8,force,lower_fy,-0.002835372928529978 +karman_re400,ppo,168,67.2,force,front_fx,0.0012587158707901835 +karman_re400,ppo,168,67.2,force,front_fy,0.00027636913000606 +karman_re400,ppo,168,67.2,force,upper_fx,0.001270874752663076 +karman_re400,ppo,168,67.2,force,upper_fy,0.006904036272317171 +karman_re400,ppo,168,67.2,force,lower_fx,0.0008753601578064263 +karman_re400,ppo,168,67.2,force,lower_fy,-0.0034362783189862967 +karman_re400,ppo,169,67.6,force,front_fx,0.000796285574324429 +karman_re400,ppo,169,67.6,force,front_fy,-0.0011011583264917135 +karman_re400,ppo,169,67.6,force,upper_fx,0.0023632042575627565 +karman_re400,ppo,169,67.6,force,upper_fy,0.00699261762201786 +karman_re400,ppo,169,67.6,force,lower_fx,-0.00048136673285625875 +karman_re400,ppo,169,67.6,force,lower_fy,-0.0036358314100652933 +karman_re400,ppo,170,68.0,force,front_fx,0.0007536897901445627 +karman_re400,ppo,170,68.0,force,front_fy,-0.0021828357130289078 +karman_re400,ppo,170,68.0,force,upper_fx,0.0032588427420705557 +karman_re400,ppo,170,68.0,force,upper_fy,0.006766737904399633 +karman_re400,ppo,170,68.0,force,lower_fx,-0.001920158858411014 +karman_re400,ppo,170,68.0,force,lower_fy,-0.003572035813704133 +karman_re400,ppo,171,68.4,force,front_fx,0.001165378256700933 +karman_re400,ppo,171,68.4,force,front_fy,-0.002851898316293955 +karman_re400,ppo,171,68.4,force,upper_fx,0.0038274559192359447 +karman_re400,ppo,171,68.4,force,upper_fy,0.005975655280053616 +karman_re400,ppo,171,68.4,force,lower_fx,-0.0032183430157601833 +karman_re400,ppo,171,68.4,force,lower_fy,-0.0035821902565658092 +karman_re400,ppo,172,68.8,force,front_fx,0.0017994752852246165 +karman_re400,ppo,172,68.8,force,front_fy,-0.0032599102705717087 +karman_re400,ppo,172,68.8,force,upper_fx,0.0040298704989254475 +karman_re400,ppo,172,68.8,force,upper_fy,0.004753265995532274 +karman_re400,ppo,172,68.8,force,lower_fx,-0.00396503321826458 +karman_re400,ppo,172,68.8,force,lower_fy,-0.003986623603850603 +karman_re400,ppo,173,69.2,force,front_fx,0.002223589224740863 +karman_re400,ppo,173,69.2,force,front_fy,-0.003428239841014147 +karman_re400,ppo,173,69.2,force,upper_fx,0.00406202208250761 +karman_re400,ppo,173,69.2,force,upper_fy,0.00361044192686677 +karman_re400,ppo,173,69.2,force,lower_fx,-0.003652160055935383 +karman_re400,ppo,173,69.2,force,lower_fy,-0.004847688600420952 +karman_re400,ppo,174,69.6,force,front_fx,0.0023323779460042715 +karman_re400,ppo,174,69.6,force,front_fy,-0.0031549320556223392 +karman_re400,ppo,174,69.6,force,upper_fx,0.0037161537911742926 +karman_re400,ppo,174,69.6,force,upper_fy,0.0030551417730748653 +karman_re400,ppo,174,69.6,force,lower_fx,-0.0023275883868336678 +karman_re400,ppo,174,69.6,force,lower_fy,-0.005596593488007784 +karman_re400,ppo,175,70.0,force,front_fx,0.0021432775538414717 +karman_re400,ppo,175,70.0,force,front_fy,-0.00250957440584898 +karman_re400,ppo,175,70.0,force,upper_fx,0.0028391359373927116 +karman_re400,ppo,175,70.0,force,upper_fy,0.003228006884455681 +karman_re400,ppo,175,70.0,force,lower_fx,-0.0008462029509246349 +karman_re400,ppo,175,70.0,force,lower_fy,-0.005746528506278992 +karman_re400,ppo,176,70.4,force,front_fx,0.0015934323891997337 +karman_re400,ppo,176,70.4,force,front_fy,-0.001492123119533062 +karman_re400,ppo,176,70.4,force,upper_fx,0.0016984589165076613 +karman_re400,ppo,176,70.4,force,upper_fy,0.0036138787399977446 +karman_re400,ppo,176,70.4,force,lower_fx,0.00031647610012441874 +karman_re400,ppo,176,70.4,force,lower_fy,-0.005671685561537743 +karman_re400,ppo,177,70.8,force,front_fx,0.0010090844007208943 +karman_re400,ppo,177,70.8,force,front_fy,-8.848738070810214e-05 +karman_re400,ppo,177,70.8,force,upper_fx,0.0004528262361418456 +karman_re400,ppo,177,70.8,force,upper_fy,0.003717282088473439 +karman_re400,ppo,177,70.8,force,lower_fx,0.0014041437534615397 +karman_re400,ppo,177,70.8,force,lower_fy,-0.0058195930905640125 +karman_re400,ppo,178,71.2,force,front_fx,0.0006495093693956733 +karman_re400,ppo,178,71.2,force,front_fy,0.00131937803234905 +karman_re400,ppo,178,71.2,force,upper_fx,-0.0008984036976471543 +karman_re400,ppo,178,71.2,force,upper_fy,0.003520686412230134 +karman_re400,ppo,178,71.2,force,lower_fx,0.0024987258948385715 +karman_re400,ppo,178,71.2,force,lower_fy,-0.00607486953958869 +karman_re400,ppo,179,71.6,force,front_fx,0.0006863930611871183 +karman_re400,ppo,179,71.6,force,front_fy,0.0023117202799767256 +karman_re400,ppo,179,71.6,force,upper_fx,-0.0023940815590322018 +karman_re400,ppo,179,71.6,force,upper_fy,0.0032475334592163563 +karman_re400,ppo,179,71.6,force,lower_fx,0.0033802813850343227 +karman_re400,ppo,179,71.6,force,lower_fy,-0.006127809174358845 +karman_re400,ppo,180,72.0,force,front_fx,0.0012788985623046756 +karman_re400,ppo,180,72.0,force,front_fy,0.002899745013564825 +karman_re400,ppo,180,72.0,force,upper_fx,-0.0039786421693861485 +karman_re400,ppo,180,72.0,force,upper_fy,0.003218021709471941 +karman_re400,ppo,180,72.0,force,lower_fx,0.0038568153977394104 +karman_re400,ppo,180,72.0,force,lower_fy,-0.00564280292019248 +karman_re400,ppo,181,72.4,force,front_fx,0.0021945941261947155 +karman_re400,ppo,181,72.4,force,front_fy,0.0033141952008008957 +karman_re400,ppo,181,72.4,force,upper_fx,-0.005163358524441719 +karman_re400,ppo,181,72.4,force,upper_fy,0.0038567613810300827 +karman_re400,ppo,181,72.4,force,lower_fx,0.004000731278210878 +karman_re400,ppo,181,72.4,force,lower_fy,-0.004515536595135927 +karman_re400,ppo,182,72.8,force,front_fx,0.002793859224766493 +karman_re400,ppo,182,72.8,force,front_fy,0.003512526163831353 +karman_re400,ppo,182,72.8,force,upper_fx,-0.004993509501218796 +karman_re400,ppo,182,72.8,force,upper_fy,0.0052551752887666225 +karman_re400,ppo,182,72.8,force,lower_fx,0.0042014638893306255 +karman_re400,ppo,182,72.8,force,lower_fy,-0.003144960617646575 +karman_re400,ppo,183,73.2,force,front_fx,0.0030402210541069508 +karman_re400,ppo,183,73.2,force,front_fy,0.0031477820593863726 +karman_re400,ppo,183,73.2,force,upper_fx,-0.0032821304630488157 +karman_re400,ppo,183,73.2,force,upper_fy,0.006478580646216869 +karman_re400,ppo,183,73.2,force,lower_fx,0.0041418857872486115 +karman_re400,ppo,183,73.2,force,lower_fy,-0.0021485232282429934 +karman_re400,ppo,184,73.6,force,front_fx,0.002910831244662404 +karman_re400,ppo,184,73.6,force,front_fy,0.002481434727087617 +karman_re400,ppo,184,73.6,force,upper_fx,-0.0013438313035294414 +karman_re400,ppo,184,73.6,force,upper_fy,0.006813100539147854 +karman_re400,ppo,184,73.6,force,lower_fx,0.003417152212932706 +karman_re400,ppo,184,73.6,force,lower_fy,-0.0020990767516195774 +karman_re400,ppo,185,74.0,force,front_fx,0.00216001202352345 +karman_re400,ppo,185,74.0,force,front_fy,0.001621159492060542 +karman_re400,ppo,185,74.0,force,upper_fx,2.7477322873892263e-05 +karman_re400,ppo,185,74.0,force,upper_fy,0.006782946176826954 +karman_re400,ppo,185,74.0,force,lower_fx,0.0022539300844073296 +karman_re400,ppo,185,74.0,force,lower_fy,-0.0027725056279450655 +karman_re400,ppo,186,74.4,force,front_fx,0.0013114111497998238 +karman_re400,ppo,186,74.4,force,front_fy,0.00041270494693890214 +karman_re400,ppo,186,74.4,force,upper_fx,0.001151217264123261 +karman_re400,ppo,186,74.4,force,upper_fy,0.00688232621178031 +karman_re400,ppo,186,74.4,force,lower_fx,0.0009830729104578495 +karman_re400,ppo,186,74.4,force,lower_fy,-0.003400254063308239 +karman_re400,ppo,187,74.8,force,front_fx,0.0008158523123711348 +karman_re400,ppo,187,74.8,force,front_fy,-0.0009709813166409731 +karman_re400,ppo,187,74.8,force,upper_fx,0.0022514238953590393 +karman_re400,ppo,187,74.8,force,upper_fy,0.006967200431972742 +karman_re400,ppo,187,74.8,force,lower_fx,-0.0003600241616368294 +karman_re400,ppo,187,74.8,force,lower_fy,-0.0036237218882888556 +karman_re400,ppo,188,75.2,force,front_fx,0.0007425713702104986 +karman_re400,ppo,188,75.2,force,front_fy,-0.0020950736943632364 +karman_re400,ppo,188,75.2,force,upper_fx,0.0031866601202636957 +karman_re400,ppo,188,75.2,force,upper_fy,0.006785182282328606 +karman_re400,ppo,188,75.2,force,lower_fx,-0.0017824084497988224 +karman_re400,ppo,188,75.2,force,lower_fy,-0.003568508895114064 +karman_re400,ppo,189,75.6,force,front_fx,0.0011218137806281447 +karman_re400,ppo,189,75.6,force,front_fy,-0.0028011947870254517 +karman_re400,ppo,189,75.6,force,upper_fx,0.0038039926439523697 +karman_re400,ppo,189,75.6,force,upper_fy,0.006075001787394285 +karman_re400,ppo,189,75.6,force,lower_fx,-0.0030982843600213528 +karman_re400,ppo,189,75.6,force,lower_fy,-0.00357624888420105 +karman_re400,ppo,190,76.0,force,front_fx,0.0017503610579296947 +karman_re400,ppo,190,76.0,force,front_fy,-0.0032294488046318293 +karman_re400,ppo,190,76.0,force,upper_fx,0.004029016010463238 +karman_re400,ppo,190,76.0,force,upper_fy,0.004889747593551874 +karman_re400,ppo,190,76.0,force,lower_fx,-0.003922177944332361 +karman_re400,ppo,190,76.0,force,lower_fy,-0.003948163241147995 +karman_re400,ppo,191,76.4,force,front_fx,0.002194345463067293 +karman_re400,ppo,191,76.4,force,front_fy,-0.003430187003687024 +karman_re400,ppo,191,76.4,force,upper_fx,0.004058256279677153 +karman_re400,ppo,191,76.4,force,upper_fy,0.0037125262897461653 +karman_re400,ppo,191,76.4,force,lower_fx,-0.0037451533135026693 +karman_re400,ppo,191,76.4,force,lower_fy,-0.004766401369124651 +karman_re400,ppo,192,76.8,force,front_fx,0.0023281099274754524 +karman_re400,ppo,192,76.8,force,front_fy,-0.0032037922646850348 +karman_re400,ppo,192,76.8,force,upper_fx,0.0037556192837655544 +karman_re400,ppo,192,76.8,force,upper_fy,0.003073151223361492 +karman_re400,ppo,192,76.8,force,lower_fx,-0.0025041282642632723 +karman_re400,ppo,192,76.8,force,lower_fy,-0.005524252541363239 +karman_re400,ppo,193,77.2,force,front_fx,0.0021820836700499058 +karman_re400,ppo,193,77.2,force,front_fy,-0.002588331699371338 +karman_re400,ppo,193,77.2,force,upper_fx,0.0029313387349247932 +karman_re400,ppo,193,77.2,force,upper_fy,0.0031751429196447134 +karman_re400,ppo,193,77.2,force,lower_fx,-0.0010065416572615504 +karman_re400,ppo,193,77.2,force,lower_fy,-0.005720046348869801 +karman_re400,ppo,194,77.6,force,front_fx,0.001663812668994069 +karman_re400,ppo,194,77.6,force,front_fy,-0.001609006430953741 +karman_re400,ppo,194,77.6,force,upper_fx,0.0018276689806953073 +karman_re400,ppo,194,77.6,force,upper_fy,0.003571432316675782 +karman_re400,ppo,194,77.6,force,lower_fx,0.00020789977861568332 +karman_re400,ppo,194,77.6,force,lower_fy,-0.005673747044056654 +karman_re400,ppo,195,78.0,force,front_fx,0.0010698548285290599 +karman_re400,ppo,195,78.0,force,front_fy,-0.00023419701028615236 +karman_re400,ppo,195,78.0,force,upper_fx,0.0005976664833724499 +karman_re400,ppo,195,78.0,force,upper_fy,0.0037267343141138554 +karman_re400,ppo,195,78.0,force,lower_fx,0.0013103074161335826 +karman_re400,ppo,195,78.0,force,lower_fy,-0.005830532871186733 +karman_re400,ppo,196,78.4,force,front_fx,0.0006745801074430346 +karman_re400,ppo,196,78.4,force,front_fy,0.0011954791843891144 +karman_re400,ppo,196,78.4,force,upper_fx,-0.0007558284560218453 +karman_re400,ppo,196,78.4,force,upper_fy,0.003562524216249585 +karman_re400,ppo,196,78.4,force,lower_fx,0.00240718643181026 +karman_re400,ppo,196,78.4,force,lower_fy,-0.006091269664466381 +karman_re400,ppo,197,78.8,force,front_fx,0.000648446730338037 +karman_re400,ppo,197,78.8,force,front_fy,0.0022364314645528793 +karman_re400,ppo,197,78.8,force,upper_fx,-0.00225414359010756 +karman_re400,ppo,197,78.8,force,upper_fy,0.0032757052686065435 +karman_re400,ppo,197,78.8,force,lower_fx,0.0033007734455168247 +karman_re400,ppo,197,78.8,force,lower_fy,-0.0061541288159787655 +karman_re400,ppo,198,79.2,force,front_fx,0.0011903404956683517 +karman_re400,ppo,198,79.2,force,front_fy,0.0028530973941087723 +karman_re400,ppo,198,79.2,force,upper_fx,-0.003839261131361127 +karman_re400,ppo,198,79.2,force,upper_fy,0.003185766050592065 +karman_re400,ppo,198,79.2,force,lower_fx,0.00381902395747602 +karman_re400,ppo,198,79.2,force,lower_fy,-0.0057113380171358585 +karman_re400,ppo,199,79.6,force,front_fx,0.0021126391366124153 +karman_re400,ppo,199,79.6,force,front_fy,0.0032750105019658804 +karman_re400,ppo,199,79.6,force,upper_fx,-0.005088025704026222 +karman_re400,ppo,199,79.6,force,upper_fy,0.0037381465081125498 +karman_re400,ppo,199,79.6,force,lower_fx,0.003989667631685734 +karman_re400,ppo,199,79.6,force,lower_fy,-0.004635967314243317 +karman_re400,ppo,200,80.0,force,front_fx,0.002768842037767172 +karman_re400,ppo,200,80.0,force,front_fy,0.003513192292302847 +karman_re400,ppo,200,80.0,force,upper_fx,-0.005070167127996683 +karman_re400,ppo,200,80.0,force,upper_fy,0.005109712947160006 +karman_re400,ppo,200,80.0,force,lower_fx,0.004197360947728157 +karman_re400,ppo,200,80.0,force,lower_fy,-0.0032726326026022434 +karman_re400,ppo,201,80.4,force,front_fx,0.0030301434453576803 +karman_re400,ppo,201,80.4,force,front_fy,0.003203208791092038 +karman_re400,ppo,201,80.4,force,upper_fx,-0.0034596193581819534 +karman_re400,ppo,201,80.4,force,upper_fy,0.0064230673015117645 +karman_re400,ppo,201,80.4,force,lower_fx,0.004191195592284203 +karman_re400,ppo,201,80.4,force,lower_fy,-0.002217464614659548 +karman_re400,ppo,202,80.8,force,front_fx,0.0029443521052598953 +karman_re400,ppo,202,80.8,force,front_fy,0.0025543752126395702 +karman_re400,ppo,202,80.8,force,upper_fx,-0.001498303608968854 +karman_re400,ppo,202,80.8,force,upper_fy,0.006822703871876001 +karman_re400,ppo,202,80.8,force,lower_fx,0.003509730100631714 +karman_re400,ppo,202,80.8,force,lower_fy,-0.002071407390758395 +karman_re400,ppo,203,81.2,force,front_fx,0.0022344309836626053 +karman_re400,ppo,203,81.2,force,front_fy,0.001723701599985361 +karman_re400,ppo,203,81.2,force,upper_fx,-9.812645294005051e-05 +karman_re400,ppo,203,81.2,force,upper_fy,0.006764234974980354 +karman_re400,ppo,203,81.2,force,lower_fx,0.002357641700655222 +karman_re400,ppo,203,81.2,force,lower_fy,-0.0027055260725319386 +karman_re400,ppo,204,81.6,force,front_fx,0.0013751192018389702 +karman_re400,ppo,204,81.6,force,front_fy,0.0005463534616865218 +karman_re400,ppo,204,81.6,force,upper_fx,0.001030116924084723 +karman_re400,ppo,204,81.6,force,upper_fy,0.006836348678916693 +karman_re400,ppo,204,81.6,force,lower_fx,0.0011010554153472185 +karman_re400,ppo,204,81.6,force,lower_fy,-0.003346869954839349 +karman_re400,ppo,205,82.0,force,front_fx,0.0008510923362337053 +karman_re400,ppo,205,82.0,force,front_fy,-0.0008414553594775498 +karman_re400,ppo,205,82.0,force,upper_fx,0.002155096037313342 +karman_re400,ppo,205,82.0,force,upper_fy,0.006949054077267647 +karman_re400,ppo,205,82.0,force,lower_fx,-0.0002174771361751482 +karman_re400,ppo,205,82.0,force,lower_fy,-0.0036129134241491556 +karman_re400,ppo,206,82.4,force,front_fx,0.0007372014806605875 +karman_re400,ppo,206,82.4,force,front_fy,-0.0020060332026332617 +karman_re400,ppo,206,82.4,force,upper_fx,0.0031204568222165108 +karman_re400,ppo,206,82.4,force,upper_fy,0.006827967707067728 +karman_re400,ppo,206,82.4,force,lower_fx,-0.0016291294014081359 +karman_re400,ppo,206,82.4,force,lower_fy,-0.0035843884106725454 +karman_re400,ppo,207,82.8,force,front_fx,0.0010690807830542326 +karman_re400,ppo,207,82.8,force,front_fy,-0.00274793803691864 +karman_re400,ppo,207,82.8,force,upper_fx,0.0037688957527279854 +karman_re400,ppo,207,82.8,force,upper_fy,0.006188900675624609 +karman_re400,ppo,207,82.8,force,lower_fx,-0.00297752907499671 +karman_re400,ppo,207,82.8,force,lower_fy,-0.0035788414534181356 +karman_re400,ppo,208,83.2,force,front_fx,0.0016793523682281375 +karman_re400,ppo,208,83.2,force,front_fy,-0.003198139136657119 +karman_re400,ppo,208,83.2,force,upper_fx,0.0040078070014715195 +karman_re400,ppo,208,83.2,force,upper_fy,0.00502226036041975 +karman_re400,ppo,208,83.2,force,lower_fx,-0.0038905178662389517 +karman_re400,ppo,208,83.2,force,lower_fy,-0.0038900712970644236 +karman_re400,ppo,209,83.6,force,front_fx,0.0021615643054246902 +karman_re400,ppo,209,83.6,force,front_fy,-0.0034298666287213564 +karman_re400,ppo,209,83.6,force,upper_fx,0.004050552379339933 +karman_re400,ppo,209,83.6,force,upper_fy,0.0038060443475842476 +karman_re400,ppo,209,83.6,force,lower_fx,-0.003838849253952503 +karman_re400,ppo,209,83.6,force,lower_fy,-0.004654698073863983 +karman_re400,ppo,210,84.0,force,front_fx,0.0023279094602912664 +karman_re400,ppo,210,84.0,force,front_fy,-0.0032437783665955067 +karman_re400,ppo,210,84.0,force,upper_fx,0.003809679066762328 +karman_re400,ppo,210,84.0,force,upper_fy,0.0030881399288773537 +karman_re400,ppo,210,84.0,force,lower_fx,-0.0026698282454162836 +karman_re400,ppo,210,84.0,force,lower_fy,-0.005458022467792034 +karman_re400,ppo,211,84.4,force,front_fx,0.002222539624199271 +karman_re400,ppo,211,84.4,force,front_fy,-0.002659266348928213 +karman_re400,ppo,211,84.4,force,upper_fx,0.003046660451218486 +karman_re400,ppo,211,84.4,force,upper_fy,0.0031318655237555504 +karman_re400,ppo,211,84.4,force,lower_fx,-0.0011344824451953173 +karman_re400,ppo,211,84.4,force,lower_fy,-0.00574142811819911 +karman_re400,ppo,212,84.8,force,front_fx,0.0017347525572404265 +karman_re400,ppo,212,84.8,force,front_fy,-0.001722831279039383 +karman_re400,ppo,212,84.8,force,upper_fx,0.001958312001079321 +karman_re400,ppo,212,84.8,force,upper_fy,0.0035443613305687904 +karman_re400,ppo,212,84.8,force,lower_fx,0.00012255733599886298 +karman_re400,ppo,212,84.8,force,lower_fy,-0.005711029749363661 +karman_re400,ppo,213,85.2,force,front_fx,0.0011214491678401828 +karman_re400,ppo,213,85.2,force,front_fy,-0.0003821552963927388 +karman_re400,ppo,213,85.2,force,upper_fx,0.0007214631768874824 +karman_re400,ppo,213,85.2,force,upper_fy,0.0037397106643766165 +karman_re400,ppo,213,85.2,force,lower_fx,0.0012104668421670794 +karman_re400,ppo,213,85.2,force,lower_fy,-0.0058310325257480145 +karman_re400,ppo,214,85.6,force,front_fx,0.0006916419370099902 +karman_re400,ppo,214,85.6,force,front_fy,0.0010661386186257005 +karman_re400,ppo,214,85.6,force,upper_fx,-0.0006328496965579689 +karman_re400,ppo,214,85.6,force,upper_fy,0.0035895074252039194 +karman_re400,ppo,214,85.6,force,lower_fx,0.002295340411365032 +karman_re400,ppo,214,85.6,force,lower_fy,-0.006060166750103235 +karman_re400,ppo,215,86.0,force,front_fx,0.0006226963014341891 +karman_re400,ppo,215,86.0,force,front_fy,0.0021527104545384645 +karman_re400,ppo,215,86.0,force,upper_fx,-0.002112311776727438 +karman_re400,ppo,215,86.0,force,upper_fy,0.00328636821359396 +karman_re400,ppo,215,86.0,force,lower_fx,0.0032161541748791933 +karman_re400,ppo,215,86.0,force,lower_fy,-0.006141492165625095 +karman_re400,ppo,216,86.4,force,front_fx,0.0011203439207747579 +karman_re400,ppo,216,86.4,force,front_fy,0.0028022238984704018 +karman_re400,ppo,216,86.4,force,upper_fx,-0.003684115130454302 +karman_re400,ppo,216,86.4,force,upper_fy,0.0031614669132977724 +karman_re400,ppo,216,86.4,force,lower_fx,0.0037895306013524532 +karman_re400,ppo,216,86.4,force,lower_fy,-0.005767949856817722 +karman_re400,ppo,217,86.8,force,front_fx,0.0020355188753455877 +karman_re400,ppo,217,86.8,force,front_fy,0.0032351177651435137 +karman_re400,ppo,217,86.8,force,upper_fx,-0.004994635470211506 +karman_re400,ppo,217,86.8,force,upper_fy,0.003652164712548256 +karman_re400,ppo,217,86.8,force,lower_fx,0.003987131640315056 +karman_re400,ppo,217,86.8,force,lower_fy,-0.004765257705003023 +karman_re400,ppo,218,87.2,force,front_fx,0.0027346620336174965 +karman_re400,ppo,218,87.2,force,front_fy,0.003513008588925004 +karman_re400,ppo,218,87.2,force,upper_fx,-0.005142460577189922 +karman_re400,ppo,218,87.2,force,upper_fy,0.0049795303493738174 +karman_re400,ppo,218,87.2,force,lower_fx,0.004180914256721735 +karman_re400,ppo,218,87.2,force,lower_fy,-0.003409653902053833 +karman_re400,ppo,219,87.6,force,front_fx,0.0030037418473511934 +karman_re400,ppo,219,87.6,force,front_fy,0.003258400596678257 +karman_re400,ppo,219,87.6,force,upper_fx,-0.0036642991472035646 +karman_re400,ppo,219,87.6,force,upper_fy,0.0063414182513952255 +karman_re400,ppo,219,87.6,force,lower_fx,0.004208456724882126 +karman_re400,ppo,219,87.6,force,lower_fy,-0.00229280604980886 +karman_re400,ppo,220,88.0,force,front_fx,0.0029759095050394535 +karman_re400,ppo,220,88.0,force,front_fy,0.0026249978691339493 +karman_re400,ppo,220,88.0,force,upper_fx,-0.0016847221413627267 +karman_re400,ppo,220,88.0,force,upper_fy,0.006798542570322752 +karman_re400,ppo,220,88.0,force,lower_fx,0.0035873488523066044 +karman_re400,ppo,220,88.0,force,lower_fy,-0.002038975479081273 +karman_re400,ppo,221,88.4,force,front_fx,0.002322359476238489 +karman_re400,ppo,221,88.4,force,front_fy,0.0018188648391515017 +karman_re400,ppo,221,88.4,force,upper_fx,-0.00022861994511913508 +karman_re400,ppo,221,88.4,force,upper_fy,0.006746460683643818 +karman_re400,ppo,221,88.4,force,lower_fx,0.00247310777194798 +karman_re400,ppo,221,88.4,force,lower_fy,-0.0026229796931147575 +karman_re400,ppo,222,88.8,force,front_fx,0.0014581732684746385 +karman_re400,ppo,222,88.8,force,front_fy,0.00067351438337937 +karman_re400,ppo,222,88.8,force,upper_fx,0.000924653431866318 +karman_re400,ppo,222,88.8,force,upper_fy,0.006819963920861483 +karman_re400,ppo,222,88.8,force,lower_fx,0.0012341445544734597 +karman_re400,ppo,222,88.8,force,lower_fy,-0.003294976893812418 +karman_re400,ppo,223,89.2,force,front_fx,0.0008933331118896604 +karman_re400,ppo,223,89.2,force,front_fy,-0.0007092900341376662 +karman_re400,ppo,223,89.2,force,upper_fx,0.0020591027569025755 +karman_re400,ppo,223,89.2,force,upper_fy,0.006965288892388344 +karman_re400,ppo,223,89.2,force,lower_fx,-6.886414485052228e-05 +karman_re400,ppo,223,89.2,force,lower_fy,-0.0036091560032218695 +karman_re400,ppo,224,89.6,force,front_fx,0.0007268801564350724 +karman_re400,ppo,224,89.6,force,front_fy,-0.0019135087495669723 +karman_re400,ppo,224,89.6,force,upper_fx,0.0030374431516975164 +karman_re400,ppo,224,89.6,force,upper_fy,0.006880059838294983 +karman_re400,ppo,224,89.6,force,lower_fx,-0.0014843401731923223 +karman_re400,ppo,224,89.6,force,lower_fy,-0.00360085372813046 +karman_re400,ppo,225,90.0,force,front_fx,0.0010068609844893217 +karman_re400,ppo,225,90.0,force,front_fy,-0.0026915837079286575 +karman_re400,ppo,225,90.0,force,upper_fx,0.0037123197689652443 +karman_re400,ppo,225,90.0,force,upper_fy,0.006285108160227537 +karman_re400,ppo,225,90.0,force,lower_fx,-0.002866722410544753 +karman_re400,ppo,225,90.0,force,lower_fy,-0.0035665002651512623 +karman_re400,ppo,226,90.4,force,front_fx,0.0016107677947729826 +karman_re400,ppo,226,90.4,force,front_fy,-0.003161379136145115 +karman_re400,ppo,226,90.4,force,upper_fx,0.003988978452980518 +karman_re400,ppo,226,90.4,force,upper_fy,0.005138607230037451 +karman_re400,ppo,226,90.4,force,lower_fx,-0.003842786652967334 +karman_re400,ppo,226,90.4,force,lower_fy,-0.003819346660748124 +karman_re400,ppo,227,90.8,force,front_fx,0.0021313356701284647 +karman_re400,ppo,227,90.8,force,front_fy,-0.0034191212616860867 +karman_re400,ppo,227,90.8,force,upper_fx,0.0040581971406936646 +karman_re400,ppo,227,90.8,force,upper_fy,0.0039018800016492605 +karman_re400,ppo,227,90.8,force,lower_fx,-0.0038952380418777466 +karman_re400,ppo,227,90.8,force,lower_fy,-0.0045532057993113995 +karman_re400,ppo,228,91.2,force,front_fx,0.0023260852321982384 +karman_re400,ppo,228,91.2,force,front_fy,-0.003279946045950055 +karman_re400,ppo,228,91.2,force,upper_fx,0.0038733489345759153 +karman_re400,ppo,228,91.2,force,upper_fy,0.003124671522527933 +karman_re400,ppo,228,91.2,force,lower_fx,-0.002796357963234186 +karman_re400,ppo,228,91.2,force,lower_fy,-0.005409606732428074 +karman_re400,ppo,229,91.6,force,front_fx,0.0022514122538268566 +karman_re400,ppo,229,91.6,force,front_fy,-0.0027307041455060244 +karman_re400,ppo,229,91.6,force,upper_fx,0.0031518740579485893 +karman_re400,ppo,229,91.6,force,upper_fy,0.003110390854999423 +karman_re400,ppo,229,91.6,force,lower_fx,-0.001251055859029293 +karman_re400,ppo,229,91.6,force,lower_fy,-0.005762671120464802 +karman_re400,ppo,230,92.0,force,front_fx,0.0017870814772322774 +karman_re400,ppo,230,92.0,force,front_fy,-0.0018343101255595684 +karman_re400,ppo,230,92.0,force,upper_fx,0.0020644476171582937 +karman_re400,ppo,230,92.0,force,upper_fy,0.003520601661875844 +karman_re400,ppo,230,92.0,force,lower_fx,1.9073546354775317e-05 +karman_re400,ppo,230,92.0,force,lower_fy,-0.005716642364859581 +karman_re400,ppo,231,92.4,force,front_fx,0.001166899804957211 +karman_re400,ppo,231,92.4,force,front_fy,-0.0005277099553495646 +karman_re400,ppo,231,92.4,force,upper_fx,0.0008327303221449256 +karman_re400,ppo,231,92.4,force,upper_fy,0.0037363246083259583 +karman_re400,ppo,231,92.4,force,lower_fx,0.001092834398150444 +karman_re400,ppo,231,92.4,force,lower_fy,-0.00578314857557416 +karman_re400,ppo,232,92.8,force,front_fx,0.0007175286300480366 +karman_re400,ppo,232,92.8,force,front_fy,0.0009359651012346148 +karman_re400,ppo,232,92.8,force,upper_fx,-0.0005020704702474177 +karman_re400,ppo,232,92.8,force,upper_fy,0.00360435270704329 +karman_re400,ppo,232,92.8,force,lower_fx,0.0021828419994562864 +karman_re400,ppo,232,92.8,force,lower_fy,-0.00600782036781311 +karman_re400,ppo,233,93.2,force,front_fx,0.0006125151994638145 +karman_re400,ppo,233,93.2,force,front_fy,0.0020677726715803146 +karman_re400,ppo,233,93.2,force,upper_fx,-0.0019524152157828212 +karman_re400,ppo,233,93.2,force,upper_fy,0.003307624952867627 +karman_re400,ppo,233,93.2,force,lower_fx,0.0031442702747881413 +karman_re400,ppo,233,93.2,force,lower_fy,-0.006135057657957077 +karman_re400,ppo,234,93.6,force,front_fx,0.0010563881369307637 +karman_re400,ppo,234,93.6,force,front_fy,0.002753805136308074 +karman_re400,ppo,234,93.6,force,upper_fx,-0.0035213762894272804 +karman_re400,ppo,234,93.6,force,upper_fy,0.0031635200139135122 +karman_re400,ppo,234,93.6,force,lower_fx,0.003763057291507721 +karman_re400,ppo,234,93.6,force,lower_fy,-0.005838428623974323 +karman_re400,ppo,235,94.0,force,front_fx,0.001942992676049471 +karman_re400,ppo,235,94.0,force,front_fy,0.0031991491559892893 +karman_re400,ppo,235,94.0,force,upper_fx,-0.00490094069391489 +karman_re400,ppo,235,94.0,force,upper_fy,0.003582105040550232 +karman_re400,ppo,235,94.0,force,lower_fx,0.003976473119109869 +karman_re400,ppo,235,94.0,force,lower_fy,-0.004896383732557297 +karman_re400,ppo,236,94.4,force,front_fx,0.0026790155097842216 +karman_re400,ppo,236,94.4,force,front_fy,0.0035056991036981344 +karman_re400,ppo,236,94.4,force,upper_fx,-0.005219370126724243 +karman_re400,ppo,236,94.4,force,upper_fy,0.0048275841400027275 +karman_re400,ppo,236,94.4,force,lower_fx,0.004145749378949404 +karman_re400,ppo,236,94.4,force,lower_fy,-0.003542391350492835 +karman_re400,ppo,237,94.8,force,front_fx,0.002980939345434308 +karman_re400,ppo,237,94.8,force,front_fy,0.0033088638447225094 +karman_re400,ppo,237,94.8,force,upper_fx,-0.003877761075273156 +karman_re400,ppo,237,94.8,force,upper_fy,0.006221913266927004 +karman_re400,ppo,237,94.8,force,lower_fx,0.004218286368995905 +karman_re400,ppo,237,94.8,force,lower_fy,-0.0023672054521739483 +karman_re400,ppo,238,95.2,force,front_fx,0.0030089763458818197 +karman_re400,ppo,238,95.2,force,front_fy,0.0026930212043225765 +karman_re400,ppo,238,95.2,force,upper_fx,-0.0018723005196079612 +karman_re400,ppo,238,95.2,force,upper_fy,0.006775659509003162 +karman_re400,ppo,238,95.2,force,lower_fx,0.0036759311333298683 +karman_re400,ppo,238,95.2,force,lower_fy,-0.002007528906688094 +karman_re400,ppo,239,95.6,force,front_fx,0.0024183455388993025 +karman_re400,ppo,239,95.6,force,front_fy,0.0019102803198620677 +karman_re400,ppo,239,95.6,force,upper_fx,-0.00034296311787329614 +karman_re400,ppo,239,95.6,force,upper_fy,0.006762971170246601 +karman_re400,ppo,239,95.6,force,lower_fx,0.002605404006317258 +karman_re400,ppo,239,95.6,force,lower_fy,-0.002541736699640751 +karman_re400,ppo,240,96.0,force,front_fx,0.0015426173340529203 +karman_re400,ppo,240,96.0,force,front_fy,0.0007993317558430135 +karman_re400,ppo,240,96.0,force,upper_fx,0.0008238291484303772 +karman_re400,ppo,240,96.0,force,upper_fy,0.006830102298408747 +karman_re400,ppo,240,96.0,force,lower_fx,0.0013680405681952834 +karman_re400,ppo,240,96.0,force,lower_fy,-0.003243295941501856 +karman_re400,ppo,241,96.4,force,front_fx,0.0009273296454921365 +karman_re400,ppo,241,96.4,force,front_fy,-0.0005738015752285719 +karman_re400,ppo,241,96.4,force,upper_fx,0.0019485916709527373 +karman_re400,ppo,241,96.4,force,upper_fy,0.0069754342548549175 +karman_re400,ppo,241,96.4,force,lower_fx,6.056496931705624e-05 +karman_re400,ppo,241,96.4,force,lower_fy,-0.0036009857431054115 +karman_re400,ppo,242,96.8,force,front_fx,0.0007173429476097226 +karman_re400,ppo,242,96.8,force,front_fy,-0.0018134171841666102 +karman_re400,ppo,242,96.8,force,upper_fx,0.002940867329016328 +karman_re400,ppo,242,96.8,force,upper_fy,0.006902148947119713 +karman_re400,ppo,242,96.8,force,lower_fx,-0.001357079716399312 +karman_re400,ppo,242,96.8,force,lower_fy,-0.00360504980199039 +karman_re400,ppo,243,97.2,force,front_fx,0.0009593943250365555 +karman_re400,ppo,243,97.2,force,front_fy,-0.0026311271358281374 +karman_re400,ppo,243,97.2,force,upper_fx,0.0036572632379829884 +karman_re400,ppo,243,97.2,force,upper_fy,0.006357248406857252 +karman_re400,ppo,243,97.2,force,lower_fx,-0.0027475785464048386 +karman_re400,ppo,243,97.2,force,lower_fy,-0.003547848202288151 +karman_re400,ppo,244,97.6,force,front_fx,0.0015547003131359816 +karman_re400,ppo,244,97.6,force,front_fy,-0.0031234240159392357 +karman_re400,ppo,244,97.6,force,upper_fx,0.003982009366154671 +karman_re400,ppo,244,97.6,force,upper_fy,0.005255421623587608 +karman_re400,ppo,244,97.6,force,lower_fx,-0.003770852694287896 +karman_re400,ppo,244,97.6,force,lower_fy,-0.0037678915541619062 +karman_re400,ppo,245,98.0,force,front_fx,0.0021023107692599297 +karman_re400,ppo,245,98.0,force,front_fy,-0.003407552605494857 +karman_re400,ppo,245,98.0,force,upper_fx,0.0040689753368496895 +karman_re400,ppo,245,98.0,force,upper_fy,0.004013935104012489 +karman_re400,ppo,245,98.0,force,lower_fx,-0.003925788216292858 +karman_re400,ppo,245,98.0,force,lower_fy,-0.004480238538235426 +karman_re400,ppo,246,98.4,force,front_fx,0.0023179359268397093 +karman_re400,ppo,246,98.4,force,front_fy,-0.003316066227853298 +karman_re400,ppo,246,98.4,force,upper_fx,0.003917103633284569 +karman_re400,ppo,246,98.4,force,upper_fy,0.003178158076480031 +karman_re400,ppo,246,98.4,force,lower_fx,-0.002923910040408373 +karman_re400,ppo,246,98.4,force,lower_fy,-0.005360905546694994 +karman_re400,ppo,247,98.8,force,front_fx,0.002267594449222088 +karman_re400,ppo,247,98.8,force,front_fy,-0.002801427850499749 +karman_re400,ppo,247,98.8,force,upper_fx,0.0032309265807271004 +karman_re400,ppo,247,98.8,force,upper_fy,0.0030913855880498886 +karman_re400,ppo,247,98.8,force,lower_fx,-0.0013991518644616008 +karman_re400,ppo,247,98.8,force,lower_fy,-0.005745626520365477 +karman_re400,ppo,248,99.2,force,front_fx,0.0018391560297459364 +karman_re400,ppo,248,99.2,force,front_fy,-0.0019411176908761263 +karman_re400,ppo,248,99.2,force,upper_fx,0.0021654763258993626 +karman_re400,ppo,248,99.2,force,upper_fy,0.0034796094987541437 +karman_re400,ppo,248,99.2,force,lower_fx,-0.0001084824834833853 +karman_re400,ppo,248,99.2,force,lower_fy,-0.005689230747520924 +karman_re400,ppo,249,99.6,force,front_fx,0.0012214204762130976 +karman_re400,ppo,249,99.6,force,front_fy,-0.0006683745887130499 +karman_re400,ppo,249,99.6,force,upper_fx,0.0009566763183102012 +karman_re400,ppo,249,99.6,force,upper_fy,0.003722355468198657 +karman_re400,ppo,249,99.6,force,lower_fx,0.0009750305325724185 +karman_re400,ppo,249,99.6,force,lower_fy,-0.005741823930293322 +karman_re400,ppo,250,100.0,force,front_fx,0.0007561489474028349 +karman_re400,ppo,250,100.0,force,front_fy,0.000803012924734503 +karman_re400,ppo,250,100.0,force,upper_fx,-0.00035428203409537673 +karman_re400,ppo,250,100.0,force,upper_fy,0.0036271638236939907 +karman_re400,ppo,250,100.0,force,lower_fx,0.0020839443895965815 +karman_re400,ppo,250,100.0,force,lower_fy,-0.005988363642245531 +karman_re400,ppo,251,100.4,force,front_fx,0.0006069892551749945 +karman_re400,ppo,251,100.4,force,front_fy,0.0019809582736343145 +karman_re400,ppo,251,100.4,force,upper_fx,-0.0017930337926372886 +karman_re400,ppo,251,100.4,force,upper_fy,0.0033470490016043186 +karman_re400,ppo,251,100.4,force,lower_fx,0.003074562642723322 +karman_re400,ppo,251,100.4,force,lower_fy,-0.006153486203402281 +karman_re400,ppo,252,100.8,force,front_fx,0.000982294324785471 +karman_re400,ppo,252,100.8,force,front_fy,0.0027037719264626503 +karman_re400,ppo,252,100.8,force,upper_fx,-0.0033686277456581593 +karman_re400,ppo,252,100.8,force,upper_fy,0.0031734106596559286 +karman_re400,ppo,252,100.8,force,lower_fx,0.0037225987762212753 +karman_re400,ppo,252,100.8,force,lower_fy,-0.0059103588573634624 +karman_re400,ppo,253,101.2,force,front_fx,0.00183916836977005 +karman_re400,ppo,253,101.2,force,front_fy,0.003160635009407997 +karman_re400,ppo,253,101.2,force,upper_fx,-0.004804818890988827 +karman_re400,ppo,253,101.2,force,upper_fy,0.003500323975458741 +karman_re400,ppo,253,101.2,force,lower_fx,0.003957015462219715 +karman_re400,ppo,253,101.2,force,lower_fy,-0.005015108734369278 +karman_re400,ppo,254,101.6,force,front_fx,0.002626283559948206 +karman_re400,ppo,254,101.6,force,front_fy,0.003490222617983818 +karman_re400,ppo,254,101.6,force,upper_fx,-0.005270384717732668 +karman_re400,ppo,254,101.6,force,upper_fy,0.004659829195588827 +karman_re400,ppo,254,101.6,force,lower_fx,0.004118277691304684 +karman_re400,ppo,254,101.6,force,lower_fy,-0.003671327605843544 +karman_re400,ppo,255,102.0,force,front_fx,0.0029654353857040405 +karman_re400,ppo,255,102.0,force,front_fy,0.003350763116031885 +karman_re400,ppo,255,102.0,force,upper_fx,-0.00406417902559042 +karman_re400,ppo,255,102.0,force,upper_fy,0.006106172222644091 +karman_re400,ppo,255,102.0,force,lower_fx,0.004240460228174925 +karman_re400,ppo,255,102.0,force,lower_fy,-0.0024521956220269203 +karman_re400,ppo,256,102.4,force,front_fx,0.003038906492292881 +karman_re400,ppo,256,102.4,force,front_fy,0.0027584529016166925 +karman_re400,ppo,256,102.4,force,upper_fx,-0.0020424809772521257 +karman_re400,ppo,256,102.4,force,upper_fy,0.006772646214812994 +karman_re400,ppo,256,102.4,force,lower_fx,0.003772889729589224 +karman_re400,ppo,256,102.4,force,lower_fy,-0.001995309954509139 +karman_re400,ppo,257,102.8,force,front_fx,0.0025017603766173124 +karman_re400,ppo,257,102.8,force,front_fy,0.0019937565084546804 +karman_re400,ppo,257,102.8,force,upper_fx,-0.00045508681796491146 +karman_re400,ppo,257,102.8,force,upper_fy,0.006788067985326052 +karman_re400,ppo,257,102.8,force,lower_fx,0.0027291702572256327 +karman_re400,ppo,257,102.8,force,lower_fy,-0.002475989516824484 +karman_re400,ppo,258,103.2,force,front_fx,0.0016136985504999757 +karman_re400,ppo,258,103.2,force,front_fy,0.0009259989601559937 +karman_re400,ppo,258,103.2,force,upper_fx,0.0007103724055923522 +karman_re400,ppo,258,103.2,force,upper_fy,0.006819344125688076 +karman_re400,ppo,258,103.2,force,lower_fx,0.0014823945239186287 +karman_re400,ppo,258,103.2,force,lower_fy,-0.003192223608493805 +karman_re400,ppo,259,103.6,force,front_fx,0.0009619928896427155 +karman_re400,ppo,259,103.6,force,front_fy,-0.00043559816549532115 +karman_re400,ppo,259,103.6,force,upper_fx,0.001832568901591003 +karman_re400,ppo,259,103.6,force,upper_fy,0.0069520496763288975 +karman_re400,ppo,259,103.6,force,lower_fx,0.00018095264385920018 +karman_re400,ppo,259,103.6,force,lower_fy,-0.0035821138881146908 +karman_re400,ppo,260,104.0,force,front_fx,0.0007186984876170754 +karman_re400,ppo,260,104.0,force,front_fy,-0.001708748983219266 +karman_re400,ppo,260,104.0,force,upper_fx,0.002852031495422125 +karman_re400,ppo,260,104.0,force,upper_fy,0.006905229762196541 +karman_re400,ppo,260,104.0,force,lower_fx,-0.0012206382816657424 +karman_re400,ppo,260,104.0,force,lower_fy,-0.0036032525822520256 +karman_re400,ppo,261,104.4,force,front_fx,0.0009249358554370701 +karman_re400,ppo,261,104.4,force,front_fy,-0.002567316871136427 +karman_re400,ppo,261,104.4,force,upper_fx,0.0036122105084359646 +karman_re400,ppo,261,104.4,force,upper_fy,0.006430414505302906 +karman_re400,ppo,261,104.4,force,lower_fx,-0.002614564262330532 +karman_re400,ppo,261,104.4,force,lower_fy,-0.003545583225786686 +karman_re400,ppo,262,104.8,force,front_fx,0.0014979392290115356 +karman_re400,ppo,262,104.8,force,front_fy,-0.0030852595809847116 +karman_re400,ppo,262,104.8,force,upper_fx,0.003973407670855522 +karman_re400,ppo,262,104.8,force,upper_fy,0.005384071264415979 +karman_re400,ppo,262,104.8,force,lower_fx,-0.0036927666515111923 +karman_re400,ppo,262,104.8,force,lower_fy,-0.003741869004443288 +karman_re400,ppo,263,105.2,force,front_fx,0.0020625765901058912 +karman_re400,ppo,263,105.2,force,front_fy,-0.003394105238839984 +karman_re400,ppo,263,105.2,force,upper_fx,0.004063124768435955 +karman_re400,ppo,263,105.2,force,upper_fy,0.004134374670684338 +karman_re400,ppo,263,105.2,force,lower_fx,-0.0039633410051465034 +karman_re400,ppo,263,105.2,force,lower_fy,-0.0044060368090868 +karman_re400,ppo,264,105.6,force,front_fx,0.002303958171978593 +karman_re400,ppo,264,105.6,force,front_fy,-0.0033492485526949167 +karman_re400,ppo,264,105.6,force,upper_fx,0.003939012996852398 +karman_re400,ppo,264,105.6,force,upper_fy,0.0032304900232702494 +karman_re400,ppo,264,105.6,force,lower_fx,-0.003074736101552844 +karman_re400,ppo,264,105.6,force,lower_fy,-0.005277189426124096 +karman_re400,ppo,265,106.0,force,front_fx,0.0022867382504045963 +karman_re400,ppo,265,106.0,force,front_fy,-0.002866781083866954 +karman_re400,ppo,265,106.0,force,upper_fx,0.00330928317271173 +karman_re400,ppo,265,106.0,force,upper_fy,0.0030609748791903257 +karman_re400,ppo,265,106.0,force,lower_fx,-0.0015657087787985802 +karman_re400,ppo,265,106.0,force,lower_fy,-0.005712397862225771 +karman_re400,ppo,266,106.4,force,front_fx,0.0018998521845787764 +karman_re400,ppo,266,106.4,force,front_fy,-0.0020429021678864956 +karman_re400,ppo,266,106.4,force,upper_fx,0.0022814031690359116 +karman_re400,ppo,266,106.4,force,upper_fy,0.0034283387940376997 +karman_re400,ppo,266,106.4,force,lower_fx,-0.0002305033995071426 +karman_re400,ppo,266,106.4,force,lower_fy,-0.0056891776621341705 +karman_re400,ppo,267,106.8,force,front_fx,0.0012865421595051885 +karman_re400,ppo,267,106.8,force,front_fy,-0.0008079119143076241 +karman_re400,ppo,267,106.8,force,upper_fx,0.0010922523215413094 +karman_re400,ppo,267,106.8,force,upper_fy,0.003711963538080454 +karman_re400,ppo,267,106.8,force,lower_fx,0.0008771021384745836 +karman_re400,ppo,267,106.8,force,lower_fy,-0.005745179485529661 +karman_re400,ppo,268,107.2,force,front_fx,0.0007956271874718368 +karman_re400,ppo,268,107.2,force,front_fy,0.0006642289226874709 +karman_re400,ppo,268,107.2,force,upper_fx,-0.00021325093985069543 +karman_re400,ppo,268,107.2,force,upper_fy,0.0036576734855771065 +karman_re400,ppo,268,107.2,force,lower_fx,0.0019873850978910923 +karman_re400,ppo,268,107.2,force,lower_fy,-0.005990620236843824 +karman_re400,ppo,269,107.6,force,front_fx,0.0005964364972896874 +karman_re400,ppo,269,107.6,force,front_fy,0.0018867338076233864 +karman_re400,ppo,269,107.6,force,upper_fx,-0.0016516511095687747 +karman_re400,ppo,269,107.6,force,upper_fy,0.0033823333214968443 +karman_re400,ppo,269,107.6,force,lower_fx,0.00298571796156466 +karman_re400,ppo,269,107.6,force,lower_fy,-0.006166635546833277 +karman_re400,ppo,270,108.0,force,front_fx,0.000912416260689497 +karman_re400,ppo,270,108.0,force,front_fy,0.0026493328623473644 +karman_re400,ppo,270,108.0,force,upper_fx,-0.0032219961285591125 +karman_re400,ppo,270,108.0,force,upper_fy,0.003170129843056202 +karman_re400,ppo,270,108.0,force,lower_fx,0.003670152509585023 +karman_re400,ppo,270,108.0,force,lower_fy,-0.0059582083486020565 +karman_re400,ppo,271,108.4,force,front_fx,0.0017451478634029627 +karman_re400,ppo,271,108.4,force,front_fy,0.003119200700893998 +karman_re400,ppo,271,108.4,force,upper_fx,-0.004690801724791527 +karman_re400,ppo,271,108.4,force,upper_fy,0.003420325228944421 +karman_re400,ppo,271,108.4,force,lower_fx,0.00394302885979414 +karman_re400,ppo,271,108.4,force,lower_fy,-0.005121992435306311 +karman_re400,ppo,272,108.8,force,front_fx,0.002579604974016547 +karman_re400,ppo,272,108.8,force,front_fy,0.003472144715487957 +karman_re400,ppo,272,108.8,force,upper_fx,-0.00528616551309824 +karman_re400,ppo,272,108.8,force,upper_fy,0.004511828534305096 +karman_re400,ppo,272,108.8,force,lower_fx,0.004104478284716606 +karman_re400,ppo,272,108.8,force,lower_fy,-0.003804994747042656 +karman_re400,ppo,273,109.2,force,front_fx,0.002947831992059946 +karman_re400,ppo,273,109.2,force,front_fy,0.003389075631275773 +karman_re400,ppo,273,109.2,force,upper_fx,-0.004226781893521547 +karman_re400,ppo,273,109.2,force,upper_fy,0.006003148388117552 +karman_re400,ppo,273,109.2,force,lower_fx,0.0042607467621564865 +karman_re400,ppo,273,109.2,force,lower_fy,-0.0025516459718346596 +karman_re400,ppo,274,109.6,force,front_fx,0.0030499983113259077 +karman_re400,ppo,274,109.6,force,front_fy,0.0028253686614334583 +karman_re400,ppo,274,109.6,force,upper_fx,-0.0022192606702446938 +karman_re400,ppo,274,109.6,force,upper_fy,0.006762432400137186 +karman_re400,ppo,274,109.6,force,lower_fx,0.0038517385255545378 +karman_re400,ppo,274,109.6,force,lower_fy,-0.0019996026530861855 +karman_re400,ppo,275,110.0,force,front_fx,0.002570169512182474 +karman_re400,ppo,275,110.0,force,front_fy,0.0020820205099880695 +karman_re400,ppo,275,110.0,force,upper_fx,-0.000588210707064718 +karman_re400,ppo,275,110.0,force,upper_fy,0.006786780897527933 +karman_re400,ppo,275,110.0,force,lower_fx,0.0028351249638944864 +karman_re400,ppo,275,110.0,force,lower_fy,-0.0024123145267367363 +karman_re400,ppo,276,110.4,force,front_fx,0.0016902441857382655 +karman_re400,ppo,276,110.4,force,front_fy,0.0010489907581359148 +karman_re400,ppo,276,110.4,force,upper_fx,0.0005922750569880009 +karman_re400,ppo,276,110.4,force,upper_fy,0.006786148063838482 +karman_re400,ppo,276,110.4,force,lower_fx,0.0015963843325152993 +karman_re400,ppo,276,110.4,force,lower_fy,-0.003131445264443755 +karman_re400,ppo,277,110.8,force,front_fx,0.0010086946422234178 +karman_re400,ppo,277,110.8,force,front_fy,-0.000299340405035764 +karman_re400,ppo,277,110.8,force,upper_fx,0.0017240907764062285 +karman_re400,ppo,277,110.8,force,upper_fy,0.006926219444721937 +karman_re400,ppo,277,110.8,force,lower_fx,0.00031289138132706285 +karman_re400,ppo,277,110.8,force,lower_fy,-0.0035578173119574785 +karman_re400,ppo,278,111.2,force,front_fx,0.0007301257573999465 +karman_re400,ppo,278,111.2,force,front_fy,-0.0016016418812796474 +karman_re400,ppo,278,111.2,force,upper_fx,0.002771663712337613 +karman_re400,ppo,278,111.2,force,upper_fy,0.006923411972820759 +karman_re400,ppo,278,111.2,force,lower_fx,-0.0010707387700676918 +karman_re400,ppo,278,111.2,force,lower_fy,-0.003612311789765954 +karman_re400,ppo,279,111.6,force,front_fx,0.0008875714265741408 +karman_re400,ppo,279,111.6,force,front_fy,-0.002501873066648841 +karman_re400,ppo,279,111.6,force,upper_fx,0.003560758428648114 +karman_re400,ppo,279,111.6,force,upper_fy,0.006515404675155878 +karman_re400,ppo,279,111.6,force,lower_fx,-0.0024793182965368032 +karman_re400,ppo,279,111.6,force,lower_fy,-0.0035564410500228405 +karman_re400,ppo,280,112.0,force,front_fx,0.0014293183339759707 +karman_re400,ppo,280,112.0,force,front_fy,-0.0030456013046205044 +karman_re400,ppo,280,112.0,force,upper_fx,0.003951107617467642 +karman_re400,ppo,280,112.0,force,upper_fy,0.0055133444257080555 +karman_re400,ppo,280,112.0,force,lower_fx,-0.003619133261963725 +karman_re400,ppo,280,112.0,force,lower_fy,-0.0037094310391694307 +karman_re400,ppo,281,112.4,force,front_fx,0.002014324301853776 +karman_re400,ppo,281,112.4,force,front_fy,-0.003375288564711809 +karman_re400,ppo,281,112.4,force,upper_fx,0.004050088115036488 +karman_re400,ppo,281,112.4,force,upper_fy,0.004248505923897028 +karman_re400,ppo,281,112.4,force,lower_fx,-0.004001724533736706 +karman_re400,ppo,281,112.4,force,lower_fy,-0.004307182040065527 +karman_re400,ppo,282,112.8,force,front_fx,0.0022927478421479464 +karman_re400,ppo,282,112.8,force,front_fy,-0.003373496001586318 +karman_re400,ppo,282,112.8,force,upper_fx,0.003966711927205324 +karman_re400,ppo,282,112.8,force,upper_fy,0.003281625220552087 +karman_re400,ppo,282,112.8,force,lower_fx,-0.003221547231078148 +karman_re400,ppo,282,112.8,force,lower_fy,-0.005188323091715574 +karman_re400,ppo,283,113.2,force,front_fx,0.002307707443833351 +karman_re400,ppo,283,113.2,force,front_fy,-0.0029262336902320385 +karman_re400,ppo,283,113.2,force,upper_fx,0.003403568174690008 +karman_re400,ppo,283,113.2,force,upper_fy,0.003036198206245899 +karman_re400,ppo,283,113.2,force,lower_fx,-0.0017137303948402405 +karman_re400,ppo,283,113.2,force,lower_fy,-0.0056976680643856525 +karman_re400,ppo,284,113.6,force,front_fx,0.0019612261094152927 +karman_re400,ppo,284,113.6,force,front_fy,-0.0021384612191468477 +karman_re400,ppo,284,113.6,force,upper_fx,0.0024041656870394945 +karman_re400,ppo,284,113.6,force,upper_fy,0.0033873342908918858 +karman_re400,ppo,284,113.6,force,lower_fx,-0.0003305938153062016 +karman_re400,ppo,284,113.6,force,lower_fy,-0.005722148809581995 +karman_re400,ppo,285,114.0,force,front_fx,0.0013487035175785422 +karman_re400,ppo,285,114.0,force,front_fy,-0.0009447276825085282 +karman_re400,ppo,285,114.0,force,upper_fx,0.0012171748094260693 +karman_re400,ppo,285,114.0,force,upper_fy,0.003707256866618991 +karman_re400,ppo,285,114.0,force,lower_fx,0.0007830836693756282 +karman_re400,ppo,285,114.0,force,lower_fy,-0.005752258934080601 +karman_re400,ppo,286,114.4,force,front_fx,0.0008279599132947624 +karman_re400,ppo,286,114.4,force,front_fy,0.0005214165430516005 +karman_re400,ppo,286,114.4,force,upper_fx,-8.97428035386838e-05 +karman_re400,ppo,286,114.4,force,upper_fy,0.0036799015942960978 +karman_re400,ppo,286,114.4,force,lower_fx,0.0018764873966574669 +karman_re400,ppo,286,114.4,force,lower_fy,-0.005966078024357557 +karman_re400,ppo,287,114.8,force,front_fx,0.0005922906566411257 +karman_re400,ppo,287,114.8,force,front_fy,0.0017863777466118336 +karman_re400,ppo,287,114.8,force,upper_fx,-0.0015142288757488132 +karman_re400,ppo,287,114.8,force,upper_fy,0.003404399147257209 +karman_re400,ppo,287,114.8,force,lower_fx,0.00288976076990366 +karman_re400,ppo,287,114.8,force,lower_fy,-0.006144822109490633 +karman_re400,ppo,288,115.2,force,front_fx,0.0008569646161049604 +karman_re400,ppo,288,115.2,force,front_fy,0.0025893046986311674 +karman_re400,ppo,288,115.2,force,upper_fx,-0.0030667216051369905 +karman_re400,ppo,288,115.2,force,upper_fy,0.0031670532189309597 +karman_re400,ppo,288,115.2,force,lower_fx,0.0036185183562338352 +karman_re400,ppo,288,115.2,force,lower_fy,-0.0059897406026721 +karman_re400,ppo,289,115.6,force,front_fx,0.001660753507167101 +karman_re400,ppo,289,115.6,force,front_fy,0.0030774676706641912 +karman_re400,ppo,289,115.6,force,upper_fx,-0.0045611923560500145 +karman_re400,ppo,289,115.6,force,upper_fy,0.003362886607646942 +karman_re400,ppo,289,115.6,force,lower_fx,0.003936153370887041 +karman_re400,ppo,289,115.6,force,lower_fy,-0.005228795576840639 +karman_re400,ppo,290,116.0,force,front_fx,0.0025238061789423227 +karman_re400,ppo,290,116.0,force,front_fy,0.0034464760683476925 +karman_re400,ppo,290,116.0,force,upper_fx,-0.005289239808917046 +karman_re400,ppo,290,116.0,force,upper_fy,0.00438489206135273 +karman_re400,ppo,290,116.0,force,lower_fx,0.004087990615516901 +karman_re400,ppo,290,116.0,force,lower_fy,-0.003945613279938698 +karman_re400,ppo,291,116.4,force,front_fx,0.0029198068659752607 +karman_re400,ppo,291,116.4,force,front_fy,0.0034286605659872293 +karman_re400,ppo,291,116.4,force,upper_fx,-0.004397016018629074 +karman_re400,ppo,291,116.4,force,upper_fy,0.005887392908334732 +karman_re400,ppo,291,116.4,force,lower_fx,0.004258700646460056 +karman_re400,ppo,291,116.4,force,lower_fy,-0.002658039564266801 +karman_re400,ppo,292,116.8,force,front_fx,0.0030533766839653254 +karman_re400,ppo,292,116.8,force,front_fy,0.0028922162018716335 +karman_re400,ppo,292,116.8,force,upper_fx,-0.0024230866692960262 +karman_re400,ppo,292,116.8,force,upper_fy,0.006722486112266779 +karman_re400,ppo,292,116.8,force,lower_fx,0.003910382743924856 +karman_re400,ppo,292,116.8,force,lower_fy,-0.002007952192798257 +karman_re400,ppo,293,117.2,force,front_fx,0.002645853441208601 +karman_re400,ppo,293,117.2,force,front_fy,0.002166822785511613 +karman_re400,ppo,293,117.2,force,upper_fx,-0.0007328189094550908 +karman_re400,ppo,293,117.2,force,upper_fy,0.006776956841349602 +karman_re400,ppo,293,117.2,force,lower_fx,0.0029424543026834726 +karman_re400,ppo,293,117.2,force,lower_fy,-0.0023398306220769882 +karman_re400,ppo,294,117.6,force,front_fx,0.0017801480134949088 +karman_re400,ppo,294,117.6,force,front_fy,0.0011658074799925089 +karman_re400,ppo,294,117.6,force,upper_fx,0.0004815496795345098 +karman_re400,ppo,294,117.6,force,upper_fy,0.0067708431743085384 +karman_re400,ppo,294,117.6,force,lower_fx,0.0017241701716557145 +karman_re400,ppo,294,117.6,force,lower_fy,-0.0030615266878157854 +karman_re400,ppo,295,118.0,force,front_fx,0.00106519996188581 +karman_re400,ppo,295,118.0,force,front_fy,-0.00016379315638914704 +karman_re400,ppo,295,118.0,force,upper_fx,0.0016215817304328084 +karman_re400,ppo,295,118.0,force,upper_fy,0.006926283240318298 +karman_re400,ppo,295,118.0,force,lower_fx,0.0004532866587396711 +karman_re400,ppo,295,118.0,force,lower_fy,-0.003535725176334381 +karman_re400,ppo,296,118.4,force,front_fx,0.0007409668178297579 +karman_re400,ppo,296,118.4,force,front_fy,-0.0014899842208251357 +karman_re400,ppo,296,118.4,force,upper_fx,0.002681492827832699 +karman_re400,ppo,296,118.4,force,upper_fy,0.006954529322683811 +karman_re400,ppo,296,118.4,force,lower_fx,-0.0009255234035663307 +karman_re400,ppo,296,118.4,force,lower_fy,-0.003624423174187541 +karman_re400,ppo,297,118.8,force,front_fx,0.0008448072476312518 +karman_re400,ppo,297,118.8,force,front_fy,-0.0024333526380360126 +karman_re400,ppo,297,118.8,force,upper_fx,0.0034924671053886414 +karman_re400,ppo,297,118.8,force,upper_fy,0.006590685341507196 +karman_re400,ppo,297,118.8,force,lower_fx,-0.0023510409519076347 +karman_re400,ppo,297,118.8,force,lower_fy,-0.0035594289656728506 +karman_re400,ppo,298,119.2,force,front_fx,0.0013609032612293959 +karman_re400,ppo,298,119.2,force,front_fy,-0.003002810524776578 +karman_re400,ppo,298,119.2,force,upper_fx,0.003923660609871149 +karman_re400,ppo,298,119.2,force,upper_fy,0.005627710837870836 +karman_re400,ppo,298,119.2,force,lower_fx,-0.0035371053963899612 +karman_re400,ppo,298,119.2,force,lower_fy,-0.0036661329213529825 +karman_re400,ppo,299,119.6,force,front_fx,0.0019670105539262295 +karman_re400,ppo,299,119.6,force,front_fy,-0.0033508946653455496 +karman_re400,ppo,299,119.6,force,upper_fx,0.004045973531901836 +karman_re400,ppo,299,119.6,force,upper_fy,0.004361011553555727 +karman_re400,ppo,299,119.6,force,lower_fx,-0.00401298375800252 +karman_re400,ppo,299,119.6,force,lower_fy,-0.004217823501676321 +karman_re400,ppo,300,120.0,force,front_fx,0.002281885826960206 +karman_re400,ppo,300,120.0,force,front_fy,-0.003392859362065792 +karman_re400,ppo,300,120.0,force,upper_fx,0.004002353176474571 +karman_re400,ppo,300,120.0,force,upper_fy,0.0033467612229287624 +karman_re400,ppo,300,120.0,force,lower_fx,-0.0033332130406051874 +karman_re400,ppo,300,120.0,force,lower_fy,-0.005114393308758736 +karman_re400,ppo,301,120.4,force,front_fx,0.0023202260490506887 +karman_re400,ppo,301,120.4,force,front_fy,-0.002984176855534315 +karman_re400,ppo,301,120.4,force,upper_fx,0.0034920901525765657 +karman_re400,ppo,301,120.4,force,upper_fy,0.0030320214573293924 +karman_re400,ppo,301,120.4,force,lower_fx,-0.0018475055694580078 +karman_re400,ppo,301,120.4,force,lower_fy,-0.005694850813597441 +karman_re400,ppo,302,120.8,force,front_fx,0.002008936833590269 +karman_re400,ppo,302,120.8,force,front_fy,-0.0022331268992275 +karman_re400,ppo,302,120.8,force,upper_fx,0.002511580940335989 +karman_re400,ppo,302,120.8,force,upper_fy,0.003355602268129587 +karman_re400,ppo,302,120.8,force,lower_fx,-0.00044020931818522513 +karman_re400,ppo,302,120.8,force,lower_fy,-0.005736859980970621 +karman_re400,ppo,303,121.2,force,front_fx,0.001402196940034628 +karman_re400,ppo,303,121.2,force,front_fy,-0.001081831636838615 +karman_re400,ppo,303,121.2,force,upper_fx,0.0013275406090542674 +karman_re400,ppo,303,121.2,force,upper_fy,0.0036940223071724176 +karman_re400,ppo,303,121.2,force,lower_fx,0.000671455985866487 +karman_re400,ppo,303,121.2,force,lower_fy,-0.0057229031808674335 +karman_re400,ppo,304,121.6,force,front_fx,0.00086427410133183 +karman_re400,ppo,304,121.6,force,front_fy,0.00037921674083918333 +karman_re400,ppo,304,121.6,force,upper_fx,3.557450691005215e-05 +karman_re400,ppo,304,121.6,force,upper_fy,0.003690381534397602 +karman_re400,ppo,304,121.6,force,lower_fx,0.0017601863946765661 +karman_re400,ppo,304,121.6,force,lower_fy,-0.005918866489082575 +karman_re400,ppo,305,122.0,force,front_fx,0.0005989535711705685 +karman_re400,ppo,305,122.0,force,front_fy,0.0016836975701153278 +karman_re400,ppo,305,122.0,force,upper_fx,-0.0013661120319738984 +karman_re400,ppo,305,122.0,force,upper_fy,0.0034279576502740383 +karman_re400,ppo,305,122.0,force,lower_fx,0.002800889080390334 +karman_re400,ppo,305,122.0,force,lower_fy,-0.006121490150690079 +karman_re400,ppo,306,122.4,force,front_fx,0.0008114523370750248 +karman_re400,ppo,306,122.4,force,front_fy,0.0025286513846367598 +karman_re400,ppo,306,122.4,force,upper_fx,-0.0029025261756032705 +karman_re400,ppo,306,122.4,force,upper_fy,0.0031814626418054104 +karman_re400,ppo,306,122.4,force,lower_fx,0.0035726234782487154 +karman_re400,ppo,306,122.4,force,lower_fy,-0.006030108779668808 +karman_re400,ppo,307,122.8,force,front_fx,0.0015696847112849355 +karman_re400,ppo,307,122.8,force,front_fy,0.003037559101358056 +karman_re400,ppo,307,122.8,force,upper_fx,-0.0044301776215434074 +karman_re400,ppo,307,122.8,force,upper_fy,0.0033223959617316723 +karman_re400,ppo,307,122.8,force,lower_fx,0.003924442455172539 +karman_re400,ppo,307,122.8,force,lower_fy,-0.0053392560221254826 +karman_re400,ppo,308,123.2,force,front_fx,0.002452453598380089 +karman_re400,ppo,308,123.2,force,front_fy,0.0034193634055554867 +karman_re400,ppo,308,123.2,force,upper_fx,-0.005289492197334766 +karman_re400,ppo,308,123.2,force,upper_fy,0.0042528752237558365 +karman_re400,ppo,308,123.2,force,lower_fx,0.00406177481636405 +karman_re400,ppo,308,123.2,force,lower_fy,-0.004084254615008831 +karman_re400,ppo,309,123.6,force,front_fx,0.0028908487875014544 +karman_re400,ppo,309,123.6,force,front_fy,0.003459244268015027 +karman_re400,ppo,309,123.6,force,upper_fx,-0.004568387288600206 +karman_re400,ppo,309,123.6,force,upper_fy,0.005742914509028196 +karman_re400,ppo,309,123.6,force,lower_fx,0.0042468891479074955 +karman_re400,ppo,309,123.6,force,lower_fy,-0.0027641698252409697 +karman_re400,ppo,310,124.0,force,front_fx,0.00305823958478868 +karman_re400,ppo,310,124.0,force,front_fy,0.0029550110921263695 +karman_re400,ppo,310,124.0,force,upper_fx,-0.002631660783663392 +karman_re400,ppo,310,124.0,force,upper_fy,0.006672707851976156 +karman_re400,ppo,310,124.0,force,lower_fx,0.003972022328525782 +karman_re400,ppo,310,124.0,force,lower_fy,-0.00202094204723835 +karman_re400,ppo,311,124.4,force,front_fx,0.0027205869555473328 +karman_re400,ppo,311,124.4,force,front_fy,0.0022417448926717043 +karman_re400,ppo,311,124.4,force,upper_fx,-0.0008694494608789682 +karman_re400,ppo,311,124.4,force,upper_fy,0.0067876847460865974 +karman_re400,ppo,311,124.4,force,lower_fx,0.0030622684862464666 +karman_re400,ppo,311,124.4,force,lower_fy,-0.0022694519720971584 +karman_re400,ppo,312,124.8,force,front_fx,0.0018738305661827326 +karman_re400,ppo,312,124.8,force,front_fy,0.0012788975145667791 +karman_re400,ppo,312,124.8,force,upper_fx,0.0003786901361308992 +karman_re400,ppo,312,124.8,force,upper_fy,0.006777728907763958 +karman_re400,ppo,312,124.8,force,lower_fx,0.0018554682610556483 +karman_re400,ppo,312,124.8,force,lower_fy,-0.002994775539264083 +karman_re400,ppo,313,125.2,force,front_fx,0.0011181703303009272 +karman_re400,ppo,313,125.2,force,front_fy,-2.6179588530794717e-05 +karman_re400,ppo,313,125.2,force,upper_fx,0.0015118520241230726 +karman_re400,ppo,313,125.2,force,upper_fy,0.006927174516022205 +karman_re400,ppo,313,125.2,force,lower_fx,0.000582392793148756 +karman_re400,ppo,313,125.2,force,lower_fy,-0.0035121196415275335 +karman_re400,ppo,314,125.6,force,front_fx,0.000749804952647537 +karman_re400,ppo,314,125.6,force,front_fy,-0.0013725394383072853 +karman_re400,ppo,314,125.6,force,upper_fx,0.0025785828474909067 +karman_re400,ppo,314,125.6,force,upper_fy,0.0069662113673985004 +karman_re400,ppo,314,125.6,force,lower_fx,-0.0007938559865579009 +karman_re400,ppo,314,125.6,force,lower_fy,-0.003626185702160001 +karman_re400,ppo,315,126.0,force,front_fx,0.0008121919818222523 +karman_re400,ppo,315,126.0,force,front_fy,-0.002359748585149646 +karman_re400,ppo,315,126.0,force,upper_fx,0.0034212281461805105 +karman_re400,ppo,315,126.0,force,upper_fy,0.006642633583396673 +karman_re400,ppo,315,126.0,force,lower_fx,-0.002222307026386261 +karman_re400,ppo,315,126.0,force,lower_fy,-0.00355446245521307 +karman_re400,ppo,316,126.4,force,front_fx,0.0013021902414038777 +karman_re400,ppo,316,126.4,force,front_fy,-0.002957843476906419 +karman_re400,ppo,316,126.4,force,upper_fx,0.003900571260601282 +karman_re400,ppo,316,126.4,force,upper_fy,0.005734999198466539 +karman_re400,ppo,316,126.4,force,lower_fx,-0.0034420646261423826 +karman_re400,ppo,316,126.4,force,lower_fy,-0.0036327873822301626 +karman_re400,ppo,317,126.8,force,front_fx,0.0019225123105570674 +karman_re400,ppo,317,126.8,force,front_fy,-0.003326030680909753 +karman_re400,ppo,317,126.8,force,upper_fx,0.004047575406730175 +karman_re400,ppo,317,126.8,force,upper_fy,0.004481939133256674 +karman_re400,ppo,317,126.8,force,lower_fx,-0.004002693109214306 +karman_re400,ppo,317,126.8,force,lower_fy,-0.004147270228713751 +karman_re400,ppo,318,127.2,force,front_fx,0.002266551600769162 +karman_re400,ppo,318,127.2,force,front_fy,-0.003410471137613058 +karman_re400,ppo,318,127.2,force,upper_fx,0.004026337061077356 +karman_re400,ppo,318,127.2,force,upper_fy,0.003425675444304943 +karman_re400,ppo,318,127.2,force,lower_fx,-0.00343256420455873 +karman_re400,ppo,318,127.2,force,lower_fy,-0.005036631133407354 +karman_re400,ppo,319,127.6,force,front_fx,0.0023240046575665474 +karman_re400,ppo,319,127.6,force,front_fy,-0.003042584750801325 +karman_re400,ppo,319,127.6,force,upper_fx,0.00356086902320385 +karman_re400,ppo,319,127.6,force,upper_fy,0.003034426597878337 +karman_re400,ppo,319,127.6,force,lower_fx,-0.0019983327947556973 +karman_re400,ppo,319,127.6,force,lower_fy,-0.005667935125529766 +karman_re400,ppo,320,128.0,force,front_fx,0.0020513543859124184 +karman_re400,ppo,320,128.0,force,front_fy,-0.0023240284062922 +karman_re400,ppo,320,128.0,force,upper_fx,0.002608621958643198 +karman_re400,ppo,320,128.0,force,upper_fy,0.0033132319804280996 +karman_re400,ppo,320,128.0,force,lower_fx,-0.000572693650610745 +karman_re400,ppo,320,128.0,force,lower_fy,-0.005726122297346592 +karman_re400,ppo,321,128.4,force,front_fx,0.0014601069269701838 +karman_re400,ppo,321,128.4,force,front_fy,-0.001213192823342979 +karman_re400,ppo,321,128.4,force,upper_fx,0.0014440572122111917 +karman_re400,ppo,321,128.4,force,upper_fy,0.003668355057016015 +karman_re400,ppo,321,128.4,force,lower_fx,0.0005551613285206258 +karman_re400,ppo,321,128.4,force,lower_fy,-0.0056952815502882 +karman_re400,ppo,322,128.8,force,front_fx,0.000910100294277072 +karman_re400,ppo,322,128.8,force,front_fy,0.0002359316567890346 +karman_re400,ppo,322,128.8,force,upper_fx,0.0001729968935251236 +karman_re400,ppo,322,128.8,force,upper_fy,0.0037012877874076366 +karman_re400,ppo,322,128.8,force,lower_fx,0.001653054030612111 +karman_re400,ppo,322,128.8,force,lower_fy,-0.005891879089176655 +karman_re400,ppo,323,129.2,force,front_fx,0.0006131081026978791 +karman_re400,ppo,323,129.2,force,front_fy,0.0015769865131005645 +karman_re400,ppo,323,129.2,force,upper_fx,-0.0012140495236963034 +karman_re400,ppo,323,129.2,force,upper_fy,0.0034633942414075136 +karman_re400,ppo,323,129.2,force,lower_fx,0.0027159573510289192 +karman_re400,ppo,323,129.2,force,lower_fy,-0.006121548358350992 +karman_re400,ppo,324,129.6,force,front_fx,0.0007637469680048525 +karman_re400,ppo,324,129.6,force,front_fy,0.002466224366798997 +karman_re400,ppo,324,129.6,force,upper_fx,-0.002745587844401598 +karman_re400,ppo,324,129.6,force,upper_fy,0.003205265384167433 +karman_re400,ppo,324,129.6,force,lower_fx,0.00351728405803442 +karman_re400,ppo,324,129.6,force,lower_fy,-0.006075703538954258 +karman_re400,ppo,325,130.0,force,front_fx,0.0014713405398651958 +karman_re400,ppo,325,130.0,force,front_fy,0.002997470088303089 +karman_re400,ppo,325,130.0,force,upper_fx,-0.00430041179060936 +karman_re400,ppo,325,130.0,force,upper_fy,0.003280714387074113 +karman_re400,ppo,325,130.0,force,lower_fx,0.0039025405421853065 +karman_re400,ppo,325,130.0,force,lower_fy,-0.00543986214324832 +karman_re400,ppo,326,130.4,force,front_fx,0.002376532182097435 +karman_re400,ppo,326,130.4,force,front_fy,0.0033885217271745205 +karman_re400,ppo,326,130.4,force,upper_fx,-0.005269836168736219 +karman_re400,ppo,326,130.4,force,upper_fy,0.004112829454243183 +karman_re400,ppo,326,130.4,force,lower_fx,0.004038741812109947 +karman_re400,ppo,326,130.4,force,lower_fy,-0.004216145724058151 +karman_re400,ppo,327,130.8,force,front_fx,0.002866109600290656 +karman_re400,ppo,327,130.8,force,front_fy,0.003481482621282339 +karman_re400,ppo,327,130.8,force,upper_fx,-0.004714712500572205 +karman_re400,ppo,327,130.8,force,upper_fy,0.005592819303274155 +karman_re400,ppo,327,130.8,force,lower_fx,0.004240452777594328 +karman_re400,ppo,327,130.8,force,lower_fy,-0.0028750011697411537 +karman_re400,ppo,328,131.2,force,front_fx,0.003061498748138547 +karman_re400,ppo,328,131.2,force,front_fy,0.0030115009285509586 +karman_re400,ppo,328,131.2,force,upper_fx,-0.002824285300448537 +karman_re400,ppo,328,131.2,force,upper_fy,0.0066297356970608234 +karman_re400,ppo,328,131.2,force,lower_fx,0.004039643332362175 +karman_re400,ppo,328,131.2,force,lower_fy,-0.002049198839813471 +karman_re400,ppo,329,131.6,force,front_fx,0.0027858016546815634 +karman_re400,ppo,329,131.6,force,front_fy,0.0023179464042186737 +karman_re400,ppo,329,131.6,force,upper_fx,-0.0010028691031038761 +karman_re400,ppo,329,131.6,force,upper_fy,0.0068074376322329044 +karman_re400,ppo,329,131.6,force,lower_fx,0.0031785243190824986 +karman_re400,ppo,329,131.6,force,lower_fy,-0.002213934902101755 +karman_re400,ppo,330,132.0,force,front_fx,0.0019570349249988794 +karman_re400,ppo,330,132.0,force,front_fy,0.001390362624078989 +karman_re400,ppo,330,132.0,force,upper_fx,0.00026948662707582116 +karman_re400,ppo,330,132.0,force,upper_fy,0.006776816211640835 +karman_re400,ppo,330,132.0,force,lower_fx,0.0019744804594665766 +karman_re400,ppo,330,132.0,force,lower_fy,-0.0029317981097847223 +karman_re400,ppo,331,132.4,force,front_fx,0.0011693324195221066 +karman_re400,ppo,331,132.4,force,front_fy,0.00011195844126632437 +karman_re400,ppo,331,132.4,force,upper_fx,0.0013956400798633695 +karman_re400,ppo,331,132.4,force,upper_fy,0.006905009970068932 +karman_re400,ppo,331,132.4,force,lower_fx,0.0007007647072896361 +karman_re400,ppo,331,132.4,force,lower_fy,-0.0034805929753929377 +karman_re400,ppo,332,132.8,force,front_fx,0.0007662626449018717 +karman_re400,ppo,332,132.8,force,front_fy,-0.0012514983536675572 +karman_re400,ppo,332,132.8,force,upper_fx,0.002478610025718808 +karman_re400,ppo,332,132.8,force,upper_fy,0.00695889163762331 +karman_re400,ppo,332,132.8,force,lower_fx,-0.0006576459272764623 +karman_re400,ppo,332,132.8,force,lower_fy,-0.003621503710746765 +karman_re400,ppo,333,133.2,force,front_fx,0.0007891077548265457 +karman_re400,ppo,333,133.2,force,front_fy,-0.002282545669004321 +karman_re400,ppo,333,133.2,force,upper_fx,0.003356256289407611 +karman_re400,ppo,333,133.2,force,upper_fy,0.006689357105642557 +karman_re400,ppo,333,133.2,force,lower_fx,-0.002084131119772792 +karman_re400,ppo,333,133.2,force,lower_fy,-0.003557580756023526 +karman_re400,ppo,334,133.6,force,front_fx,0.0012476076371967793 +karman_re400,ppo,334,133.6,force,front_fy,-0.0029117020312696695 +karman_re400,ppo,334,133.6,force,upper_fx,0.0038790018297731876 +karman_re400,ppo,334,133.6,force,upper_fy,0.005849411711096764 +karman_re400,ppo,334,133.6,force,lower_fx,-0.003337508998811245 +karman_re400,ppo,334,133.6,force,lower_fy,-0.0036171614192426205 +karman_re400,ppo,335,134.0,force,front_fx,0.001870773616246879 +karman_re400,ppo,335,134.0,force,front_fy,-0.003300525015220046 +karman_re400,ppo,335,134.0,force,upper_fx,0.004041218664497137 +karman_re400,ppo,335,134.0,force,upper_fy,0.00461109634488821 +karman_re400,ppo,335,134.0,force,lower_fx,-0.003992654848843813 +karman_re400,ppo,335,134.0,force,lower_fy,-0.004089467693120241 +karman_re400,ppo,336,134.4,force,front_fx,0.002245375420898199 +karman_re400,ppo,336,134.4,force,front_fy,-0.0034240963868796825 +karman_re400,ppo,336,134.4,force,upper_fx,0.004033922217786312 +karman_re400,ppo,336,134.4,force,upper_fy,0.0035085941199213266 +karman_re400,ppo,336,134.4,force,lower_fx,-0.003551711793988943 +karman_re400,ppo,336,134.4,force,lower_fy,-0.004953252151608467 +karman_re400,ppo,337,134.8,force,front_fx,0.00232926313765347 +karman_re400,ppo,337,134.8,force,front_fy,-0.00309390714392066 +karman_re400,ppo,337,134.8,force,upper_fx,0.0036226394586265087 +karman_re400,ppo,337,134.8,force,upper_fy,0.003033412154763937 +karman_re400,ppo,337,134.8,force,lower_fx,-0.0021667026448994875 +karman_re400,ppo,337,134.8,force,lower_fy,-0.005619887262582779 +karman_re400,ppo,338,135.2,force,front_fx,0.002099356148391962 +karman_re400,ppo,338,135.2,force,front_fy,-0.002409447683021426 +karman_re400,ppo,338,135.2,force,upper_fx,0.002713787369430065 +karman_re400,ppo,338,135.2,force,upper_fy,0.003263135440647602 +karman_re400,ppo,338,135.2,force,lower_fx,-0.0007078949129208922 +karman_re400,ppo,338,135.2,force,lower_fy,-0.005723423790186644 +karman_re400,ppo,339,135.6,force,front_fx,0.001528437715023756 +karman_re400,ppo,339,135.6,force,front_fy,-0.0013395528076216578 +karman_re400,ppo,339,135.6,force,upper_fx,0.001571586006321013 +karman_re400,ppo,339,135.6,force,upper_fy,0.0036408104933798313 +karman_re400,ppo,339,135.6,force,lower_fx,0.00045323942322283983 +karman_re400,ppo,339,135.6,force,lower_fy,-0.005695871543139219 +karman_re400,ppo,340,136.0,force,front_fx,0.0009597208118066192 +karman_re400,ppo,340,136.0,force,front_fy,8.992145012598485e-05 +karman_re400,ppo,340,136.0,force,upper_fx,0.00030961455195210874 +karman_re400,ppo,340,136.0,force,upper_fy,0.003717350075021386 +karman_re400,ppo,340,136.0,force,lower_fx,0.0015512333484366536 +karman_re400,ppo,340,136.0,force,lower_fy,-0.005886404309421778 +karman_re400,ppo,341,136.4,force,front_fx,0.0006252171006053686 +karman_re400,ppo,341,136.4,force,front_fy,0.0014637177810072899 +karman_re400,ppo,341,136.4,force,upper_fx,-0.0010735354153439403 +karman_re400,ppo,341,136.4,force,upper_fy,0.0034990424755960703 +karman_re400,ppo,341,136.4,force,lower_fx,0.0026209841016680002 +karman_re400,ppo,341,136.4,force,lower_fy,-0.0061203367076814175 +karman_re400,ppo,342,136.8,force,front_fx,0.0007181428954936564 +karman_re400,ppo,342,136.8,force,front_fy,0.002397741423919797 +karman_re400,ppo,342,136.8,force,upper_fx,-0.0025970402639359236 +karman_re400,ppo,342,136.8,force,upper_fy,0.003221157006919384 +karman_re400,ppo,342,136.8,force,lower_fx,0.0034494823776185513 +karman_re400,ppo,342,136.8,force,lower_fy,-0.0061027370393276215 +karman_re400,ppo,343,137.2,force,front_fx,0.001380476518534124 +karman_re400,ppo,343,137.2,force,front_fy,0.0029537605587393045 +karman_re400,ppo,343,137.2,force,upper_fx,-0.004162084311246872 +karman_re400,ppo,343,137.2,force,upper_fy,0.003237683791667223 +karman_re400,ppo,343,137.2,force,lower_fx,0.003879172494634986 +karman_re400,ppo,343,137.2,force,lower_fy,-0.005525902379304171 +karman_re400,ppo,344,137.6,force,front_fx,0.0023028708528727293 +karman_re400,ppo,344,137.6,force,front_fy,0.0033540513832122087 +karman_re400,ppo,344,137.6,force,upper_fx,-0.0052246167324483395 +karman_re400,ppo,344,137.6,force,upper_fy,0.003985965624451637 +karman_re400,ppo,344,137.6,force,lower_fx,0.00402518454939127 +karman_re400,ppo,344,137.6,force,lower_fy,-0.004348330665379763 +karman_re400,ppo,345,138.0,force,front_fx,0.002841668203473091 +karman_re400,ppo,345,138.0,force,front_fy,0.003499477868899703 +karman_re400,ppo,345,138.0,force,upper_fx,-0.004835057072341442 +karman_re400,ppo,345,138.0,force,upper_fy,0.005454616621136665 +karman_re400,ppo,345,138.0,force,lower_fx,0.0042365663684904575 +karman_re400,ppo,345,138.0,force,lower_fy,-0.0029958062805235386 +karman_re400,ppo,346,138.4,force,front_fx,0.003053950145840645 +karman_re400,ppo,346,138.4,force,front_fy,0.0030762534588575363 +karman_re400,ppo,346,138.4,force,upper_fx,-0.0030172038823366165 +karman_re400,ppo,346,138.4,force,upper_fy,0.006583386100828648 +karman_re400,ppo,346,138.4,force,lower_fx,0.004094378557056189 +karman_re400,ppo,346,138.4,force,lower_fy,-0.002093556337058544 +karman_re400,ppo,347,138.8,force,front_fx,0.0028384283650666475 +karman_re400,ppo,347,138.8,force,front_fy,0.002395226154476404 +karman_re400,ppo,347,138.8,force,upper_fx,-0.0011525285663083196 +karman_re400,ppo,347,138.8,force,upper_fy,0.006812132429331541 +karman_re400,ppo,347,138.8,force,lower_fx,0.003279665019363165 +karman_re400,ppo,347,138.8,force,lower_fy,-0.0021646202076226473 +karman_re400,ppo,348,139.2,force,front_fx,0.0020412923768162727 +karman_re400,ppo,348,139.2,force,front_fy,0.0014984714798629284 +karman_re400,ppo,348,139.2,force,upper_fx,0.0001516943593742326 +karman_re400,ppo,348,139.2,force,upper_fy,0.0067601921036839485 +karman_re400,ppo,348,139.2,force,lower_fx,0.0020891246385872364 +karman_re400,ppo,348,139.2,force,lower_fy,-0.0028616851195693016 +karman_re400,ppo,349,139.6,force,front_fx,0.0012302988907322288 +karman_re400,ppo,349,139.6,force,front_fy,0.0002468190505169332 +karman_re400,ppo,349,139.6,force,upper_fx,0.0012819196563214064 +karman_re400,ppo,349,139.6,force,upper_fy,0.006876583211123943 +karman_re400,ppo,349,139.6,force,lower_fx,0.0008260050672106445 +karman_re400,ppo,349,139.6,force,lower_fy,-0.003441508626565337 +karman_re400,ppo,350,140.0,force,front_fx,0.0007917903130874038 +karman_re400,ppo,350,140.0,force,front_fy,-0.0011276260484009981 +karman_re400,ppo,350,140.0,force,upper_fx,0.0023850181605666876 +karman_re400,ppo,350,140.0,force,upper_fy,0.0069602252915501595 +karman_re400,ppo,350,140.0,force,lower_fx,-0.0005160158616490662 +karman_re400,ppo,350,140.0,force,lower_fy,-0.003623449243605137 +karman_re400,ppo,351,140.4,force,front_fx,0.000768640311434865 +karman_re400,ppo,351,140.4,force,front_fy,-0.0022018617019057274 +karman_re400,ppo,351,140.4,force,upper_fx,0.003289925865828991 +karman_re400,ppo,351,140.4,force,upper_fy,0.006745714694261551 +karman_re400,ppo,351,140.4,force,lower_fx,-0.0019404179183766246 +karman_re400,ppo,351,140.4,force,lower_fy,-0.003570150351151824 +karman_re400,ppo,352,140.8,force,front_fx,0.001185914850793779 +karman_re400,ppo,352,140.8,force,front_fy,-0.0028634092304855585 +karman_re400,ppo,352,140.8,force,upper_fx,0.0038471033331006765 +karman_re400,ppo,352,140.8,force,upper_fy,0.005964883603155613 +karman_re400,ppo,352,140.8,force,lower_fx,-0.003232918679714203 +karman_re400,ppo,352,140.8,force,lower_fy,-0.0036027689930051565 +karman_re400,ppo,353,141.2,force,front_fx,0.001810485846363008 +karman_re400,ppo,353,141.2,force,front_fy,-0.0032693431712687016 +karman_re400,ppo,353,141.2,force,upper_fx,0.004027522634714842 +karman_re400,ppo,353,141.2,force,upper_fy,0.004736677277833223 +karman_re400,ppo,353,141.2,force,lower_fx,-0.003977401182055473 +karman_re400,ppo,353,141.2,force,lower_fy,-0.0040151821449398994 +karman_re400,ppo,354,141.6,force,front_fx,0.00222250958904624 +karman_re400,ppo,354,141.6,force,front_fy,-0.0034302386920899153 +karman_re400,ppo,354,141.6,force,upper_fx,0.004041806794703007 +karman_re400,ppo,354,141.6,force,upper_fy,0.0035910671576857567 +karman_re400,ppo,354,141.6,force,lower_fx,-0.003657636931166053 +karman_re400,ppo,354,141.6,force,lower_fy,-0.0048527163453400135 +karman_re400,ppo,355,142.0,force,front_fx,0.0023331078700721264 +karman_re400,ppo,355,142.0,force,front_fy,-0.00314503675326705 +karman_re400,ppo,355,142.0,force,upper_fx,0.003691646736115217 +karman_re400,ppo,355,142.0,force,upper_fy,0.0030386412981897593 +karman_re400,ppo,355,142.0,force,lower_fx,-0.002322935964912176 +karman_re400,ppo,355,142.0,force,lower_fy,-0.005576583556830883 +karman_re400,ppo,356,142.4,force,front_fx,0.002144905272871256 +karman_re400,ppo,356,142.4,force,front_fy,-0.0024895546957850456 +karman_re400,ppo,356,142.4,force,upper_fx,0.002826574258506298 +karman_re400,ppo,356,142.4,force,upper_fy,0.003220861777663231 +karman_re400,ppo,356,142.4,force,lower_fx,-0.0008282811031676829 +karman_re400,ppo,356,142.4,force,lower_fy,-0.005743447691202164 +karman_re400,ppo,357,142.8,force,front_fx,0.0015931682428345084 +karman_re400,ppo,357,142.8,force,front_fy,-0.0014632748207077384 +karman_re400,ppo,357,142.8,force,upper_fx,0.0016937206964939833 +karman_re400,ppo,357,142.8,force,upper_fy,0.0036189311649650335 +karman_re400,ppo,357,142.8,force,lower_fx,0.00035813014255836606 +karman_re400,ppo,357,142.8,force,lower_fy,-0.005707457661628723 +karman_re400,ppo,358,143.2,force,front_fx,0.0010047340765595436 +karman_re400,ppo,358,143.2,force,front_fy,-5.7752862630877644e-05 +karman_re400,ppo,358,143.2,force,upper_fx,0.00043390700011514127 +karman_re400,ppo,358,143.2,force,upper_fy,0.003729924326762557 +karman_re400,ppo,358,143.2,force,lower_fx,0.0014438106445595622 +karman_re400,ppo,358,143.2,force,lower_fy,-0.005866257473826408 +karman_re400,ppo,359,143.6,force,front_fx,0.0006391994538716972 +karman_re400,ppo,359,143.6,force,front_fy,0.00134473224170506 +karman_re400,ppo,359,143.6,force,upper_fx,-0.0009403612348251045 +karman_re400,ppo,359,143.6,force,upper_fy,0.0035246280021965504 +karman_re400,ppo,359,143.6,force,lower_fx,0.0025179169606417418 +karman_re400,ppo,359,143.6,force,lower_fy,-0.006094198673963547 +karman_re400,ppo,360,144.0,force,front_fx,0.0006829933263361454 +karman_re400,ppo,360,144.0,force,front_fy,0.002326051238924265 +karman_re400,ppo,360,144.0,force,upper_fx,-0.0024450302589684725 +karman_re400,ppo,360,144.0,force,upper_fy,0.00323407887481153 +karman_re400,ppo,360,144.0,force,lower_fx,0.0033809123560786247 +karman_re400,ppo,360,144.0,force,lower_fy,-0.006112770643085241 +karman_re400,ppo,361,144.4,force,front_fx,0.0012997236335650086 +karman_re400,ppo,361,144.4,force,front_fy,0.002908163471147418 +karman_re400,ppo,361,144.4,force,upper_fx,-0.004013789817690849 +karman_re400,ppo,361,144.4,force,upper_fy,0.003207550849765539 +karman_re400,ppo,361,144.4,force,lower_fx,0.0038594380021095276 +karman_re400,ppo,361,144.4,force,lower_fy,-0.005606953054666519 +karman_re400,ppo,362,144.8,force,front_fx,0.0022276383824646473 +karman_re400,ppo,362,144.8,force,front_fy,0.00331849604845047 +karman_re400,ppo,362,144.8,force,upper_fx,-0.005165243521332741 +karman_re400,ppo,362,144.8,force,upper_fy,0.0038805794902145863 +karman_re400,ppo,362,144.8,force,lower_fx,0.00401478074491024 +karman_re400,ppo,362,144.8,force,lower_fy,-0.00448349816724658 +karman_re400,ppo,363,145.2,force,front_fx,0.0028102800715714693 +karman_re400,ppo,363,145.2,force,front_fy,0.0035126665607094765 +karman_re400,ppo,363,145.2,force,upper_fx,-0.00495005352422595 +karman_re400,ppo,363,145.2,force,upper_fy,0.005315089598298073 +karman_re400,ppo,363,145.2,force,lower_fx,0.004219738766551018 +karman_re400,ppo,363,145.2,force,lower_fy,-0.0031220456585288048 +karman_re400,ppo,364,145.6,force,front_fx,0.0030387062579393387 +karman_re400,ppo,364,145.6,force,front_fy,0.0031364504247903824 +karman_re400,ppo,364,145.6,force,upper_fx,-0.0032256862614303827 +karman_re400,ppo,364,145.6,force,upper_fy,0.006514949258416891 +karman_re400,ppo,364,145.6,force,lower_fx,0.004131300840526819 +karman_re400,ppo,364,145.6,force,lower_fy,-0.002144359052181244 +karman_re400,ppo,365,146.0,force,front_fx,0.0028870736714452505 +karman_re400,ppo,365,146.0,force,front_fy,0.0024690222926437855 +karman_re400,ppo,365,146.0,force,upper_fx,-0.001317064044997096 +karman_re400,ppo,365,146.0,force,upper_fy,0.006803510244935751 +karman_re400,ppo,365,146.0,force,lower_fx,0.003376217093318701 +karman_re400,ppo,365,146.0,force,lower_fy,-0.002114370232447982 +karman_re400,ppo,366,146.4,force,front_fx,0.0021319487132132053 +karman_re400,ppo,366,146.4,force,front_fy,0.0016009644605219364 +karman_re400,ppo,366,146.4,force,upper_fx,3.588115214370191e-05 +karman_re400,ppo,366,146.4,force,upper_fy,0.00675197783857584 +karman_re400,ppo,366,146.4,force,lower_fx,0.0022113400045782328 +karman_re400,ppo,366,146.4,force,lower_fy,-0.002784924814477563 +karman_re400,ppo,367,146.8,force,front_fx,0.0013016940793022513 +karman_re400,ppo,367,146.8,force,front_fy,0.00038124038837850094 +karman_re400,ppo,367,146.8,force,upper_fx,0.001175493118353188 +karman_re400,ppo,367,146.8,force,upper_fy,0.006865865085273981 +karman_re400,ppo,367,146.8,force,lower_fx,0.0009590411791577935 +karman_re400,ppo,367,146.8,force,lower_fy,-0.003400214947760105 +karman_re400,ppo,368,147.2,force,front_fx,0.0008197000133804977 +karman_re400,ppo,368,147.2,force,front_fy,-0.0010010625701397657 +karman_re400,ppo,368,147.2,force,upper_fx,0.002286982024088502 +karman_re400,ppo,368,147.2,force,upper_fy,0.006973663344979286 +karman_re400,ppo,368,147.2,force,lower_fx,-0.00037393782986328006 +karman_re400,ppo,368,147.2,force,lower_fy,-0.0036255856975913048 +karman_re400,ppo,369,147.6,force,front_fx,0.0007479515625163913 +karman_re400,ppo,369,147.6,force,front_fy,-0.0021174547728151083 +karman_re400,ppo,369,147.6,force,upper_fx,0.00321152713149786 +karman_re400,ppo,369,147.6,force,upper_fy,0.006797381676733494 +karman_re400,ppo,369,147.6,force,lower_fx,-0.001803334685973823 +karman_re400,ppo,369,147.6,force,lower_fy,-0.0035804875660687685 +karman_re400,ppo,370,148.0,force,front_fx,0.0011245395289734006 +karman_re400,ppo,370,148.0,force,front_fy,-0.0028130316641181707 +karman_re400,ppo,370,148.0,force,upper_fx,0.003806003136560321 +karman_re400,ppo,370,148.0,force,upper_fy,0.006066994275897741 +karman_re400,ppo,370,148.0,force,lower_fx,-0.0031275050714612007 +karman_re400,ppo,370,148.0,force,lower_fy,-0.0035821902565658092 +karman_re400,ppo,371,148.4,force,front_fx,0.0017511837650090456 +karman_re400,ppo,371,148.4,force,front_fy,-0.003239061450585723 +karman_re400,ppo,371,148.4,force,upper_fx,0.004017477855086327 +karman_re400,ppo,371,148.4,force,upper_fy,0.004857027903199196 +karman_re400,ppo,371,148.4,force,lower_fx,-0.003947158344089985 +karman_re400,ppo,371,148.4,force,lower_fy,-0.0039419750683009624 +karman_re400,ppo,372,148.8,force,front_fx,0.002199779497459531 +karman_re400,ppo,372,148.8,force,front_fy,-0.0034308135509490967 +karman_re400,ppo,372,148.8,force,upper_fx,0.004055381752550602 +karman_re400,ppo,372,148.8,force,upper_fy,0.0036803341936320066 +karman_re400,ppo,372,148.8,force,lower_fx,-0.0037385227624326944 +karman_re400,ppo,372,148.8,force,lower_fy,-0.004761125892400742 +karman_re400,ppo,373,149.2,force,front_fx,0.0023348124232143164 +karman_re400,ppo,373,149.2,force,front_fy,-0.0031908927485346794 +karman_re400,ppo,373,149.2,force,upper_fx,0.0037594118621200323 +karman_re400,ppo,373,149.2,force,upper_fy,0.0030587809160351753 +karman_re400,ppo,373,149.2,force,lower_fx,-0.002463242970407009 +karman_re400,ppo,373,149.2,force,lower_fy,-0.005541892722249031 +karman_re400,ppo,374,149.6,force,front_fx,0.002181192860007286 +karman_re400,ppo,374,149.6,force,front_fy,-0.0025677038356661797 +karman_re400,ppo,374,149.6,force,upper_fx,0.002929441398009658 +karman_re400,ppo,374,149.6,force,upper_fy,0.00318840891122818 +karman_re400,ppo,374,149.6,force,lower_fx,-0.0009502648026682436 +karman_re400,ppo,374,149.6,force,lower_fy,-0.005756823346018791 +karman_re400,ppo,375,150.0,force,front_fx,0.001650888822041452 +karman_re400,ppo,375,150.0,force,front_fy,-0.0015842677094042301 +karman_re400,ppo,375,150.0,force,upper_fx,0.0018049442442134023 +karman_re400,ppo,375,150.0,force,upper_fy,0.0035934909246861935 +karman_re400,ppo,375,150.0,force,lower_fx,0.00025098861078731716 +karman_re400,ppo,375,150.0,force,lower_fy,-0.005698525346815586 +karman_re400,ppo,376,150.4,force,front_fx,0.001050561317242682 +karman_re400,ppo,376,150.4,force,front_fy,-0.00020402969676069915 +karman_re400,ppo,376,150.4,force,upper_fx,0.0005553810624405742 +karman_re400,ppo,376,150.4,force,upper_fy,0.0037328633479774 +karman_re400,ppo,376,150.4,force,lower_fx,0.0013292082585394382 +karman_re400,ppo,376,150.4,force,lower_fy,-0.00582660548388958 +karman_re400,ppo,377,150.8,force,front_fx,0.0006605894304811954 +karman_re400,ppo,377,150.8,force,front_fy,0.0012230632128193974 +karman_re400,ppo,377,150.8,force,upper_fx,-0.0008010526071302593 +karman_re400,ppo,377,150.8,force,upper_fy,0.003547501750290394 +karman_re400,ppo,377,150.8,force,lower_fx,0.0024160118773579597 +karman_re400,ppo,377,150.8,force,lower_fy,-0.006063184700906277 +karman_re400,ppo,378,151.2,force,front_fx,0.0006578087923116982 +karman_re400,ppo,378,151.2,force,front_fy,0.0022511733695864677 +karman_re400,ppo,378,151.2,force,upper_fx,-0.0022862255573272705 +karman_re400,ppo,378,151.2,force,upper_fy,0.0032566310837864876 +karman_re400,ppo,378,151.2,force,lower_fx,0.0033177502918988466 +karman_re400,ppo,378,151.2,force,lower_fy,-0.006124463863670826 +karman_re400,ppo,379,151.6,force,front_fx,0.001220716629177332 +karman_re400,ppo,379,151.6,force,front_fy,0.0028630068991333246 +karman_re400,ppo,379,151.6,force,upper_fx,-0.003862702054902911 +karman_re400,ppo,379,151.6,force,upper_fy,0.003192436881363392 +karman_re400,ppo,379,151.6,force,lower_fx,0.0038369195535779 +karman_re400,ppo,379,151.6,force,lower_fy,-0.00568985752761364 +karman_re400,ppo,380,152.0,force,front_fx,0.002139842603355646 +karman_re400,ppo,380,152.0,force,front_fy,0.003283219877630472 +karman_re400,ppo,380,152.0,force,upper_fx,-0.005100889131426811 +karman_re400,ppo,380,152.0,force,upper_fy,0.003779681632295251 +karman_re400,ppo,380,152.0,force,lower_fx,0.003998978529125452 +karman_re400,ppo,380,152.0,force,lower_fy,-0.004616592079401016 +karman_re400,ppo,381,152.4,force,front_fx,0.002771023428067565 +karman_re400,ppo,381,152.4,force,front_fy,0.003517440753057599 +karman_re400,ppo,381,152.4,force,upper_fx,-0.005059544462710619 +karman_re400,ppo,381,152.4,force,upper_fy,0.005159060936421156 +karman_re400,ppo,381,152.4,force,lower_fx,0.004194284323602915 +karman_re400,ppo,381,152.4,force,lower_fy,-0.003247369546443224 +karman_re400,ppo,382,152.8,force,front_fx,0.0030256628524512053 +karman_re400,ppo,382,152.8,force,front_fy,0.0031930264085531235 +karman_re400,ppo,382,152.8,force,upper_fx,-0.003436750965192914 +karman_re400,ppo,382,152.8,force,upper_fy,0.00642955070361495 +karman_re400,ppo,382,152.8,force,lower_fx,0.004164806567132473 +karman_re400,ppo,382,152.8,force,lower_fy,-0.002200737129896879 +karman_re400,ppo,383,153.2,force,front_fx,0.0029360579792410135 +karman_re400,ppo,383,153.2,force,front_fy,0.0025391269009560347 +karman_re400,ppo,383,153.2,force,upper_fx,-0.0014813595917075872 +karman_re400,ppo,383,153.2,force,upper_fy,0.006801644340157509 +karman_re400,ppo,383,153.2,force,lower_fx,0.003478433471173048 +karman_re400,ppo,383,153.2,force,lower_fy,-0.0020690406672656536 +karman_re400,ppo,384,153.6,force,front_fx,0.002226018812507391 +karman_re400,ppo,384,153.6,force,front_fy,0.00169886345975101 +karman_re400,ppo,384,153.6,force,upper_fx,-7.431407721014693e-05 +karman_re400,ppo,384,153.6,force,upper_fy,0.006761210039258003 +karman_re400,ppo,384,153.6,force,lower_fx,0.002339246217161417 +karman_re400,ppo,384,153.6,force,lower_fy,-0.0027095747645944357 +karman_re400,ppo,385,154.0,force,front_fx,0.0013712065992876887 +karman_re400,ppo,385,154.0,force,front_fy,0.0005138068809174001 +karman_re400,ppo,385,154.0,force,upper_fx,0.001066698576323688 +karman_re400,ppo,385,154.0,force,upper_fy,0.006861773785203695 +karman_re400,ppo,385,154.0,force,lower_fx,0.001085572992451489 +karman_re400,ppo,385,154.0,force,lower_fy,-0.0033586230129003525 +karman_re400,ppo,386,154.4,force,front_fx,0.0008461103425361216 +karman_re400,ppo,386,154.4,force,front_fy,-0.0008704958017915487 +karman_re400,ppo,386,154.4,force,upper_fx,0.002179983537644148 +karman_re400,ppo,386,154.4,force,upper_fy,0.006976536940783262 +karman_re400,ppo,386,154.4,force,lower_fx,-0.00024070884683169425 +karman_re400,ppo,386,154.4,force,lower_fy,-0.0036198750603944063 +karman_re400,ppo,387,154.8,force,front_fx,0.0007322427118197083 +karman_re400,ppo,387,154.8,force,front_fy,-0.0020279965829104185 +karman_re400,ppo,387,154.8,force,upper_fx,0.0031275106593966484 +karman_re400,ppo,387,154.8,force,upper_fy,0.00682989414781332 +karman_re400,ppo,387,154.8,force,lower_fx,-0.0016687377355992794 +karman_re400,ppo,387,154.8,force,lower_fy,-0.0035835278686136007 +karman_re400,ppo,388,155.2,force,front_fx,0.0010723539162427187 +karman_re400,ppo,388,155.2,force,front_fy,-0.0027591856196522713 +karman_re400,ppo,388,155.2,force,upper_fx,0.003765339031815529 +karman_re400,ppo,388,155.2,force,upper_fy,0.006158426869660616 +karman_re400,ppo,388,155.2,force,lower_fx,-0.0030129598453640938 +karman_re400,ppo,388,155.2,force,lower_fy,-0.0035648075863718987 +karman_re400,ppo,389,155.6,force,front_fx,0.0016950136050581932 +karman_re400,ppo,389,155.6,force,front_fy,-0.003204639069736004 +karman_re400,ppo,389,155.6,force,upper_fx,0.004011905286461115 +karman_re400,ppo,389,155.6,force,upper_fy,0.0049809967167675495 +karman_re400,ppo,389,155.6,force,lower_fx,-0.0038975959178060293 +karman_re400,ppo,389,155.6,force,lower_fy,-0.003886501770466566 +karman_re400,ppo,390,156.0,force,front_fx,0.0021738954819738865 +karman_re400,ppo,390,156.0,force,front_fy,-0.0034287478774785995 +karman_re400,ppo,390,156.0,force,upper_fx,0.004064181819558144 +karman_re400,ppo,390,156.0,force,upper_fy,0.0037818392738699913 +karman_re400,ppo,390,156.0,force,lower_fx,-0.0038041500374674797 +karman_re400,ppo,390,156.0,force,lower_fy,-0.004681611433625221 +karman_re400,ppo,391,156.4,force,front_fx,0.0023302871268242598 +karman_re400,ppo,391,156.4,force,front_fy,-0.003235365729779005 +karman_re400,ppo,391,156.4,force,upper_fx,0.0038107666186988354 +karman_re400,ppo,391,156.4,force,upper_fy,0.0030901343561708927 +karman_re400,ppo,391,156.4,force,lower_fx,-0.002604303415864706 +karman_re400,ppo,391,156.4,force,lower_fy,-0.005486609879881144 +karman_re400,ppo,392,156.8,force,front_fx,0.0022072128485888243 +karman_re400,ppo,392,156.8,force,front_fy,-0.002644539577886462 +karman_re400,ppo,392,156.8,force,upper_fx,0.0030204218346625566 +karman_re400,ppo,392,156.8,force,upper_fy,0.0031548028346151114 +karman_re400,ppo,392,156.8,force,lower_fx,-0.001092091086320579 +karman_re400,ppo,392,156.8,force,lower_fy,-0.005746560171246529 +karman_re400,ppo,393,157.2,force,front_fx,0.0017088263994082808 +karman_re400,ppo,393,157.2,force,front_fy,-0.0017001074738800526 +karman_re400,ppo,393,157.2,force,upper_fx,0.001916037523187697 +karman_re400,ppo,393,157.2,force,upper_fy,0.0035574128851294518 +karman_re400,ppo,393,157.2,force,lower_fx,0.00013439594476949424 +karman_re400,ppo,393,157.2,force,lower_fy,-0.005685601383447647 +karman_re400,ppo,394,157.6,force,front_fx,0.0011028765002265573 +karman_re400,ppo,394,157.6,force,front_fy,-0.0003484374610707164 +karman_re400,ppo,394,157.6,force,upper_fx,0.0006842832081019878 +karman_re400,ppo,394,157.6,force,upper_fy,0.0037315357476472855 +karman_re400,ppo,394,157.6,force,lower_fx,0.001219786936417222 +karman_re400,ppo,394,157.6,force,lower_fy,-0.005799468141049147 +karman_re400,ppo,395,158.0,force,front_fx,0.0006895407568663359 +karman_re400,ppo,395,158.0,force,front_fy,0.0010977250058203936 +karman_re400,ppo,395,158.0,force,upper_fx,-0.00065657461527735 +karman_re400,ppo,395,158.0,force,upper_fy,0.0035767205990850925 +karman_re400,ppo,395,158.0,force,lower_fx,0.0023191766813397408 +karman_re400,ppo,395,158.0,force,lower_fy,-0.0060502998530864716 +karman_re400,ppo,396,158.4,force,front_fx,0.0006355345249176025 +karman_re400,ppo,396,158.4,force,front_fy,0.0021726880222558975 +karman_re400,ppo,396,158.4,force,upper_fx,-0.0021314481273293495 +karman_re400,ppo,396,158.4,force,upper_fy,0.003287973813712597 +karman_re400,ppo,396,158.4,force,lower_fx,0.0032453907188028097 +karman_re400,ppo,396,158.4,force,lower_fy,-0.006148344371467829 +karman_re400,ppo,397,158.8,force,front_fx,0.001138020888902247 +karman_re400,ppo,397,158.8,force,front_fy,0.002817101776599884 +karman_re400,ppo,397,158.8,force,upper_fx,-0.0037147090770304203 +karman_re400,ppo,397,158.8,force,upper_fy,0.0031815096735954285 +karman_re400,ppo,397,158.8,force,lower_fx,0.0038032392039895058 +karman_re400,ppo,397,158.8,force,lower_fy,-0.0057680183090269566 +karman_re400,ppo,398,159.2,force,front_fx,0.002046157605946064 +karman_re400,ppo,398,159.2,force,front_fy,0.0032456605695188046 +karman_re400,ppo,398,159.2,force,upper_fx,-0.005023512989282608 +karman_re400,ppo,398,159.2,force,upper_fy,0.003678704611957073 +karman_re400,ppo,398,159.2,force,lower_fx,0.00398291926831007 +karman_re400,ppo,398,159.2,force,lower_fy,-0.004742187913507223 +karman_re400,ppo,399,159.6,force,front_fx,0.002733648754656315 +karman_re400,ppo,399,159.6,force,front_fy,0.003513855393975973 +karman_re400,ppo,399,159.6,force,upper_fx,-0.005143171176314354 +karman_re400,ppo,399,159.6,force,upper_fy,0.0049988143146038055 +karman_re400,ppo,399,159.6,force,lower_fx,0.004172889981418848 +karman_re400,ppo,399,159.6,force,lower_fy,-0.003374652937054634 +karman_re400,ppo,0,0.0,alpha,front,0.9655619263648987 +karman_re400,ppo,0,0.0,alpha,upper,-4.6513553857803345 +karman_re400,ppo,0,0.0,alpha,lower,-0.6110382080078125 +karman_re400,ppo,1,0.4,alpha,front,1.176206111907959 +karman_re400,ppo,1,0.4,alpha,upper,-4.753711223602295 +karman_re400,ppo,1,0.4,alpha,lower,-1.0310888290405273 +karman_re400,ppo,2,0.8,alpha,front,1.1813822984695435 +karman_re400,ppo,2,0.8,alpha,upper,-4.3282352685928345 +karman_re400,ppo,2,0.8,alpha,lower,-1.334702968597412 +karman_re400,ppo,3,1.2,alpha,front,1.3372193574905396 +karman_re400,ppo,3,1.2,alpha,upper,-3.8986452221870422 +karman_re400,ppo,3,1.2,alpha,lower,-1.4215474128723145 +karman_re400,ppo,4,1.6,alpha,front,1.060455083847046 +karman_re400,ppo,4,1.6,alpha,upper,-2.577635884284973 +karman_re400,ppo,4,1.6,alpha,lower,0.538172721862793 +karman_re400,ppo,5,2.0,alpha,front,0.5198087692260742 +karman_re400,ppo,5,2.0,alpha,upper,-1.7491834163665774 +karman_re400,ppo,5,2.0,alpha,lower,2.285651206970215 +karman_re400,ppo,6,2.4,alpha,front,0.18802697956562042 +karman_re400,ppo,6,2.4,alpha,upper,-1.4770963191986084 +karman_re400,ppo,6,2.4,alpha,lower,3.1388288736343384 +karman_re400,ppo,7,2.8,alpha,front,-0.05953999608755111 +karman_re400,ppo,7,2.8,alpha,upper,-1.1790690422058105 +karman_re400,ppo,7,2.8,alpha,lower,3.8565500378608704 +karman_re400,ppo,8,3.2,alpha,front,-0.28509023785591125 +karman_re400,ppo,8,3.2,alpha,upper,-0.8041861057281494 +karman_re400,ppo,8,3.2,alpha,lower,4.556513071060181 +karman_re400,ppo,9,3.6,alpha,front,-0.473181813955307 +karman_re400,ppo,9,3.6,alpha,upper,-0.5756008625030518 +karman_re400,ppo,9,3.6,alpha,lower,4.944220542907715 +karman_re400,ppo,10,4.0,alpha,front,-0.5874704718589783 +karman_re400,ppo,10,4.0,alpha,upper,-0.5341229438781738 +karman_re400,ppo,10,4.0,alpha,lower,5.0003437995910645 +karman_re400,ppo,11,4.4,alpha,front,-0.6132676005363464 +karman_re400,ppo,11,4.4,alpha,upper,-0.7245869636535645 +karman_re400,ppo,11,4.4,alpha,lower,4.82179594039917 +karman_re400,ppo,12,4.8,alpha,front,-0.53644198179245 +karman_re400,ppo,12,4.8,alpha,upper,-1.1668994426727295 +karman_re400,ppo,12,4.8,alpha,lower,4.404845356941223 +karman_re400,ppo,13,5.2,alpha,front,-0.3511675000190735 +karman_re400,ppo,13,5.2,alpha,upper,-1.7743186950683596 +karman_re400,ppo,13,5.2,alpha,lower,3.7678651809692383 +karman_re400,ppo,14,5.6,alpha,front,-0.09175891429185867 +karman_re400,ppo,14,5.6,alpha,upper,-2.44411563873291 +karman_re400,ppo,14,5.6,alpha,lower,2.991872191429138 +karman_re400,ppo,15,6.0,alpha,front,0.2067190706729889 +karman_re400,ppo,15,6.0,alpha,upper,-3.1952569484710693 +karman_re400,ppo,15,6.0,alpha,lower,2.0891005992889404 +karman_re400,ppo,16,6.4,alpha,front,0.5006052851676941 +karman_re400,ppo,16,6.4,alpha,upper,-4.012594103813171 +karman_re400,ppo,16,6.4,alpha,lower,1.1239395141601562 +karman_re400,ppo,17,6.8,alpha,front,0.7447426915168762 +karman_re400,ppo,17,6.8,alpha,upper,-4.726958990097046 +karman_re400,ppo,17,6.8,alpha,lower,0.2239577770233154 +karman_re400,ppo,18,7.2,alpha,front,0.9215883016586305 +karman_re400,ppo,18,7.2,alpha,upper,-5.133645534515381 +karman_re400,ppo,18,7.2,alpha,lower,-0.5022721290588379 +karman_re400,ppo,19,7.6,alpha,front,1.0428462028503418 +karman_re400,ppo,19,7.6,alpha,upper,-5.052646160125732 +karman_re400,ppo,19,7.6,alpha,lower,-0.8895750045776368 +karman_re400,ppo,20,8.0,alpha,front,1.0562453269958496 +karman_re400,ppo,20,8.0,alpha,upper,-4.569212555885315 +karman_re400,ppo,20,8.0,alpha,lower,-0.6236686706542969 +karman_re400,ppo,21,8.4,alpha,front,0.8542749285697938 +karman_re400,ppo,21,8.4,alpha,upper,-3.8469584584236145 +karman_re400,ppo,21,8.4,alpha,lower,0.31005024909973145 +karman_re400,ppo,22,8.8,alpha,front,0.5203670859336853 +karman_re400,ppo,22,8.8,alpha,upper,-3.2128103971481323 +karman_re400,ppo,22,8.8,alpha,lower,1.3025312423706055 +karman_re400,ppo,23,9.2,alpha,front,0.19354751706123352 +karman_re400,ppo,23,9.2,alpha,upper,-2.6774239540100098 +karman_re400,ppo,23,9.2,alpha,lower,2.1392476558685303 +karman_re400,ppo,24,9.6,alpha,front,-0.09411347657442093 +karman_re400,ppo,24,9.6,alpha,upper,-2.0845608711242676 +karman_re400,ppo,24,9.6,alpha,lower,3.035325288772583 +karman_re400,ppo,25,10.0,alpha,front,-0.336513876914978 +karman_re400,ppo,25,10.0,alpha,upper,-1.4026408195495605 +karman_re400,ppo,25,10.0,alpha,lower,4.001380562782288 +karman_re400,ppo,26,10.4,alpha,front,-0.5152559280395508 +karman_re400,ppo,26,10.4,alpha,upper,-0.6971092224121094 +karman_re400,ppo,26,10.4,alpha,lower,4.822193741798401 +karman_re400,ppo,27,10.8,alpha,front,-0.6438252329826355 +karman_re400,ppo,27,10.8,alpha,upper,-0.1836392879486084 +karman_re400,ppo,27,10.8,alpha,lower,5.278972387313843 +karman_re400,ppo,28,11.2,alpha,front,-0.712151288986206 +karman_re400,ppo,28,11.2,alpha,upper,-0.0607912540435791 +karman_re400,ppo,28,11.2,alpha,lower,5.303975582122803 +karman_re400,ppo,29,11.6,alpha,front,-0.6996230483055115 +karman_re400,ppo,29,11.6,alpha,upper,-0.4396555423736573 +karman_re400,ppo,29,11.6,alpha,lower,5.013686895370483 +karman_re400,ppo,30,12.0,alpha,front,-0.5468104481697083 +karman_re400,ppo,30,12.0,alpha,upper,-1.2322587966918945 +karman_re400,ppo,30,12.0,alpha,lower,4.4785847663879395 +karman_re400,ppo,31,12.4,alpha,front,-0.26857054233551025 +karman_re400,ppo,31,12.4,alpha,upper,-2.015679121017456 +karman_re400,ppo,31,12.4,alpha,lower,3.834543168544769 +karman_re400,ppo,32,12.8,alpha,front,0.004045754671096802 +karman_re400,ppo,32,12.8,alpha,upper,-2.5678893327713013 +karman_re400,ppo,32,12.8,alpha,lower,3.1965446472167964 +karman_re400,ppo,33,13.2,alpha,front,0.2392915785312653 +karman_re400,ppo,33,13.2,alpha,upper,-3.1849048733711243 +karman_re400,ppo,33,13.2,alpha,lower,2.3827089071273804 +karman_re400,ppo,34,13.6,alpha,front,0.4594495892524719 +karman_re400,ppo,34,13.6,alpha,upper,-3.984115958213806 +karman_re400,ppo,34,13.6,alpha,lower,1.3757355213165283 +karman_re400,ppo,35,14.0,alpha,front,0.6382611393928528 +karman_re400,ppo,35,14.0,alpha,upper,-4.742764592170715 +karman_re400,ppo,35,14.0,alpha,lower,0.4015023708343506 +karman_re400,ppo,36,14.4,alpha,front,0.7749878168106079 +karman_re400,ppo,36,14.4,alpha,upper,-5.178661108016968 +karman_re400,ppo,36,14.4,alpha,lower,-0.3842754364013672 +karman_re400,ppo,37,14.8,alpha,front,0.8698590993881227 +karman_re400,ppo,37,14.8,alpha,upper,-5.10424542427063 +karman_re400,ppo,37,14.8,alpha,lower,-0.8088855743408203 +karman_re400,ppo,38,15.2,alpha,front,0.8606464266777039 +karman_re400,ppo,38,15.2,alpha,upper,-4.607102751731873 +karman_re400,ppo,38,15.2,alpha,lower,-0.5709781646728516 +karman_re400,ppo,39,15.6,alpha,front,0.6310223340988159 +karman_re400,ppo,39,15.6,alpha,upper,-3.8640722036361694 +karman_re400,ppo,39,15.6,alpha,lower,0.4205982685089112 +karman_re400,ppo,40,16.0,alpha,front,0.28943005204200745 +karman_re400,ppo,40,16.0,alpha,upper,-3.245747685432434 +karman_re400,ppo,40,16.0,alpha,lower,1.472287654876709 +karman_re400,ppo,41,16.4,alpha,front,0.05371788144111633 +karman_re400,ppo,41,16.4,alpha,upper,-2.822873830795288 +karman_re400,ppo,41,16.4,alpha,lower,2.2407766580581665 +karman_re400,ppo,42,16.8,alpha,front,-0.09575936943292618 +karman_re400,ppo,42,16.8,alpha,upper,-2.2719361782073975 +karman_re400,ppo,42,16.8,alpha,lower,3.0284852981567383 +karman_re400,ppo,43,17.2,alpha,front,-0.2642744481563568 +karman_re400,ppo,43,17.2,alpha,upper,-1.4846811294555664 +karman_re400,ppo,43,17.2,alpha,lower,3.9700920581817627 +karman_re400,ppo,44,17.6,alpha,front,-0.4373330175876618 +karman_re400,ppo,44,17.6,alpha,upper,-0.6631960868835449 +karman_re400,ppo,44,17.6,alpha,lower,4.800948739051819 +karman_re400,ppo,45,18.0,alpha,front,-0.5800138115882874 +karman_re400,ppo,45,18.0,alpha,upper,-0.10108304023742677 +karman_re400,ppo,45,18.0,alpha,lower,5.2604711055755615 +karman_re400,ppo,46,18.4,alpha,front,-0.6597523093223572 +karman_re400,ppo,46,18.4,alpha,upper,0.0034074783325195317 +karman_re400,ppo,46,18.4,alpha,lower,5.272880554199219 +karman_re400,ppo,47,18.8,alpha,front,-0.6482433676719666 +karman_re400,ppo,47,18.8,alpha,upper,-0.39439010620117193 +karman_re400,ppo,47,18.8,alpha,lower,4.976940155029297 +karman_re400,ppo,48,19.2,alpha,front,-0.4965402781963348 +karman_re400,ppo,48,19.2,alpha,upper,-1.1915812492370605 +karman_re400,ppo,48,19.2,alpha,lower,4.466928482055664 +karman_re400,ppo,49,19.6,alpha,front,-0.23458930850028992 +karman_re400,ppo,49,19.6,alpha,upper,-1.947885513305664 +karman_re400,ppo,49,19.6,alpha,lower,3.856302857398987 +karman_re400,ppo,50,20.0,alpha,front,-0.007524810731410981 +karman_re400,ppo,50,20.0,alpha,upper,-2.4613550901412964 +karman_re400,ppo,50,20.0,alpha,lower,3.2569276094436646 +karman_re400,ppo,51,20.4,alpha,front,0.16638332605361938 +karman_re400,ppo,51,20.4,alpha,upper,-3.090367376804352 +karman_re400,ppo,51,20.4,alpha,lower,2.4686248302459717 +karman_re400,ppo,52,20.8,alpha,front,0.3510113060474396 +karman_re400,ppo,52,20.8,alpha,upper,-3.9430418014526367 +karman_re400,ppo,52,20.8,alpha,lower,1.4578619003295898 +karman_re400,ppo,53,21.2,alpha,front,0.544316291809082 +karman_re400,ppo,53,21.2,alpha,upper,-4.72287118434906 +karman_re400,ppo,53,21.2,alpha,lower,0.4682118892669678 +karman_re400,ppo,54,21.6,alpha,front,0.7031610608100891 +karman_re400,ppo,54,21.6,alpha,upper,-5.156223297119141 +karman_re400,ppo,54,21.6,alpha,lower,-0.31320858001708984 +karman_re400,ppo,55,22.0,alpha,front,0.8015545010566711 +karman_re400,ppo,55,22.0,alpha,upper,-5.1070356369018555 +karman_re400,ppo,55,22.0,alpha,lower,-0.7329049110412598 +karman_re400,ppo,56,22.4,alpha,front,0.7982106804847717 +karman_re400,ppo,56,22.4,alpha,upper,-4.659562349319458 +karman_re400,ppo,56,22.4,alpha,lower,-0.544649600982666 +karman_re400,ppo,57,22.8,alpha,front,0.5929539799690247 +karman_re400,ppo,57,22.8,alpha,upper,-3.954283714294433 +karman_re400,ppo,57,22.8,alpha,lower,0.38043212890625 +karman_re400,ppo,58,23.2,alpha,front,0.2574254274368286 +karman_re400,ppo,58,23.2,alpha,upper,-3.319401979446411 +karman_re400,ppo,58,23.2,alpha,lower,1.4349637031555176 +karman_re400,ppo,59,23.6,alpha,front,0.015494227409362793 +karman_re400,ppo,59,23.6,alpha,upper,-2.887394070625305 +karman_re400,ppo,59,23.6,alpha,lower,2.2002146244049072 +karman_re400,ppo,60,24.0,alpha,front,-0.1402827799320221 +karman_re400,ppo,60,24.0,alpha,upper,-2.344076633453369 +karman_re400,ppo,60,24.0,alpha,lower,2.977991819381714 +karman_re400,ppo,61,24.4,alpha,front,-0.30990779399871826 +karman_re400,ppo,61,24.4,alpha,upper,-1.5611004829406738 +karman_re400,ppo,61,24.4,alpha,lower,3.9341067075729366 +karman_re400,ppo,62,24.8,alpha,front,-0.48478725552558904 +karman_re400,ppo,62,24.8,alpha,upper,-0.7113683223724365 +karman_re400,ppo,62,24.8,alpha,lower,4.802701234817505 +karman_re400,ppo,63,25.2,alpha,front,-0.6332935690879822 +karman_re400,ppo,63,25.2,alpha,upper,-0.09904861450195311 +karman_re400,ppo,63,25.2,alpha,lower,5.300652742385864 +karman_re400,ppo,64,25.6,alpha,front,-0.7191061973571777 +karman_re400,ppo,64,25.6,alpha,upper,0.06978654861450195 +karman_re400,ppo,64,25.6,alpha,lower,5.3322434425354 +karman_re400,ppo,65,26.0,alpha,front,-0.7179409861564636 +karman_re400,ppo,65,26.0,alpha,upper,-0.28603386878967285 +karman_re400,ppo,65,26.0,alpha,lower,5.042388677597046 +karman_re400,ppo,66,26.4,alpha,front,-0.5757145881652832 +karman_re400,ppo,66,26.4,alpha,upper,-1.0916962623596191 +karman_re400,ppo,66,26.4,alpha,lower,4.533883571624756 +karman_re400,ppo,67,26.8,alpha,front,-0.3097113072872162 +karman_re400,ppo,67,26.8,alpha,upper,-1.9029264450073242 +karman_re400,ppo,67,26.8,alpha,lower,3.921332716941833 +karman_re400,ppo,68,27.2,alpha,front,-0.059698544442653656 +karman_re400,ppo,68,27.2,alpha,upper,-2.431311845779419 +karman_re400,ppo,68,27.2,alpha,lower,3.3343028426170354 +karman_re400,ppo,69,27.6,alpha,front,0.12756411731243134 +karman_re400,ppo,69,27.6,alpha,upper,-3.013874650001526 +karman_re400,ppo,69,27.6,alpha,lower,2.579758882522583 +karman_re400,ppo,70,28.0,alpha,front,0.3173741400241852 +karman_re400,ppo,70,28.0,alpha,upper,-3.8367244005203247 +karman_re400,ppo,70,28.0,alpha,lower,1.5777645111083984 +karman_re400,ppo,71,28.4,alpha,front,0.5175468325614929 +karman_re400,ppo,71,28.4,alpha,upper,-4.637945294380188 +karman_re400,ppo,71,28.4,alpha,lower,0.5684502124786377 +karman_re400,ppo,72,28.8,alpha,front,0.6808274388313293 +karman_re400,ppo,72,28.8,alpha,upper,-5.133059978485107 +karman_re400,ppo,72,28.8,alpha,lower,-0.23594951629638672 +karman_re400,ppo,73,29.2,alpha,front,0.7866551280021669 +karman_re400,ppo,73,29.2,alpha,upper,-5.1446497440338135 +karman_re400,ppo,73,29.2,alpha,lower,-0.6998748779296875 +karman_re400,ppo,74,29.6,alpha,front,0.7972667813301088 +karman_re400,ppo,74,29.6,alpha,upper,-4.72692084312439 +karman_re400,ppo,74,29.6,alpha,lower,-0.5825190544128418 +karman_re400,ppo,75,30.0,alpha,front,0.6183461546897888 +karman_re400,ppo,75,30.0,alpha,upper,-4.023306131362915 +karman_re400,ppo,75,30.0,alpha,lower,0.27706265449523926 +karman_re400,ppo,76,30.4,alpha,front,0.2867654263973236 +karman_re400,ppo,76,30.4,alpha,upper,-3.3600614070892334 +karman_re400,ppo,76,30.4,alpha,lower,1.3441481590270996 +karman_re400,ppo,77,30.8,alpha,front,0.03290031850337982 +karman_re400,ppo,77,30.8,alpha,upper,-2.922278881072998 +karman_re400,ppo,77,30.8,alpha,lower,2.124436616897583 +karman_re400,ppo,78,31.2,alpha,front,-0.12856590747833252 +karman_re400,ppo,78,31.2,alpha,upper,-2.4042625427246094 +karman_re400,ppo,78,31.2,alpha,lower,2.897244691848755 +karman_re400,ppo,79,31.6,alpha,front,-0.29792022705078125 +karman_re400,ppo,79,31.6,alpha,upper,-1.640708923339844 +karman_re400,ppo,79,31.6,alpha,lower,3.8531956076622014 +karman_re400,ppo,80,32.0,alpha,front,-0.4725893437862397 +karman_re400,ppo,80,32.0,alpha,upper,-0.7822914123535156 +karman_re400,ppo,80,32.0,alpha,lower,4.743385076522827 +karman_re400,ppo,81,32.4,alpha,front,-0.6210595369338989 +karman_re400,ppo,81,32.4,alpha,upper,-0.12243390083312988 +karman_re400,ppo,81,32.4,alpha,lower,5.278127193450928 +karman_re400,ppo,82,32.8,alpha,front,-0.7113367915153503 +karman_re400,ppo,82,32.8,alpha,upper,0.09775972366333008 +karman_re400,ppo,82,32.8,alpha,lower,5.345710515975952 +karman_re400,ppo,83,33.2,alpha,front,-0.7224612832069397 +karman_re400,ppo,83,33.2,alpha,upper,-0.21589207649230957 +karman_re400,ppo,83,33.2,alpha,lower,5.082527160644531 +karman_re400,ppo,84,33.6,alpha,front,-0.5997498631477356 +karman_re400,ppo,84,33.6,alpha,upper,-1.0202546119689941 +karman_re400,ppo,84,33.6,alpha,lower,4.595916748046875 +karman_re400,ppo,85,34.0,alpha,front,-0.34049227833747864 +karman_re400,ppo,85,34.0,alpha,upper,-1.8710408210754395 +karman_re400,ppo,85,34.0,alpha,lower,3.9835593700408936 +karman_re400,ppo,86,34.4,alpha,front,-0.08229019492864609 +karman_re400,ppo,86,34.4,alpha,upper,-2.3907532691955566 +karman_re400,ppo,86,34.4,alpha,lower,3.4045846462249756 +karman_re400,ppo,87,34.8,alpha,front,0.11103091388940813 +karman_re400,ppo,87,34.8,alpha,upper,-2.920569896697998 +karman_re400,ppo,87,34.8,alpha,lower,2.6755623817443848 +karman_re400,ppo,88,35.2,alpha,front,0.2999395728111267 +karman_re400,ppo,88,35.2,alpha,upper,-3.7194297909736633 +karman_re400,ppo,88,35.2,alpha,lower,1.6860616207122803 +karman_re400,ppo,89,35.6,alpha,front,0.497291386127472 +karman_re400,ppo,89,35.6,alpha,upper,-4.558925271034241 +karman_re400,ppo,89,35.6,alpha,lower,0.6682538986206055 +karman_re400,ppo,90,36.0,alpha,front,0.6624890565872192 +karman_re400,ppo,90,36.0,alpha,upper,-5.1043901443481445 +karman_re400,ppo,90,36.0,alpha,lower,-0.15689754486083984 +karman_re400,ppo,91,36.4,alpha,front,0.7741839289665222 +karman_re400,ppo,91,36.4,alpha,upper,-5.165130615234375 +karman_re400,ppo,91,36.4,alpha,lower,-0.6609106063842773 +karman_re400,ppo,92,36.8,alpha,front,0.8006956577301025 +karman_re400,ppo,92,36.8,alpha,upper,-4.77100944519043 +karman_re400,ppo,92,36.8,alpha,lower,-0.6236639022827148 +karman_re400,ppo,93,37.2,alpha,front,0.6464051008224487 +karman_re400,ppo,93,37.2,alpha,upper,-4.086862087249756 +karman_re400,ppo,93,37.2,alpha,lower,0.1587684154510498 +karman_re400,ppo,94,37.6,alpha,front,0.3201650083065033 +karman_re400,ppo,94,37.6,alpha,upper,-3.40694385766983 +karman_re400,ppo,94,37.6,alpha,lower,1.238448143005371 +karman_re400,ppo,95,38.0,alpha,front,0.050415847450494766 +karman_re400,ppo,95,38.0,alpha,upper,-2.9512381553649902 +karman_re400,ppo,95,38.0,alpha,lower,2.0662225484848022 +karman_re400,ppo,96,38.4,alpha,front,-0.118674136698246 +karman_re400,ppo,96,38.4,alpha,upper,-2.455705761909485 +karman_re400,ppo,96,38.4,alpha,lower,2.8350675106048584 +karman_re400,ppo,97,38.8,alpha,front,-0.28292277455329895 +karman_re400,ppo,97,38.8,alpha,upper,-1.7104139328002932 +karman_re400,ppo,97,38.8,alpha,lower,3.770593881607056 +karman_re400,ppo,98,39.2,alpha,front,-0.45413097739219666 +karman_re400,ppo,98,39.2,alpha,upper,-0.8504800796508789 +karman_re400,ppo,98,39.2,alpha,lower,4.66703462600708 +karman_re400,ppo,99,39.6,alpha,front,-0.6029574871063232 +karman_re400,ppo,99,39.6,alpha,upper,-0.16297698020935059 +karman_re400,ppo,99,39.6,alpha,lower,5.235430955886841 +karman_re400,ppo,100,40.0,alpha,front,-0.7020164728164673 +karman_re400,ppo,100,40.0,alpha,upper,0.09113216400146484 +karman_re400,ppo,100,40.0,alpha,lower,5.3501012325286865 +karman_re400,ppo,101,40.4,alpha,front,-0.7242903113365173 +karman_re400,ppo,101,40.4,alpha,upper,-0.18331146240234375 +karman_re400,ppo,101,40.4,alpha,lower,5.116207599639893 +karman_re400,ppo,102,40.8,alpha,front,-0.6160932779312134 +karman_re400,ppo,102,40.8,alpha,upper,-0.9564919471740723 +karman_re400,ppo,102,40.8,alpha,lower,4.653334856033325 +karman_re400,ppo,103,41.2,alpha,front,-0.3619457483291626 +karman_re400,ppo,103,41.2,alpha,upper,-1.7992033958435059 +karman_re400,ppo,103,41.2,alpha,lower,4.047084450721741 +karman_re400,ppo,104,41.6,alpha,front,-0.09613852947950363 +karman_re400,ppo,104,41.6,alpha,upper,-2.315821886062622 +karman_re400,ppo,104,41.6,alpha,lower,3.46845018863678 +karman_re400,ppo,105,42.0,alpha,front,0.09838023781776428 +karman_re400,ppo,105,42.0,alpha,upper,-2.826784372329712 +karman_re400,ppo,105,42.0,alpha,lower,2.7630765438079834 +karman_re400,ppo,106,42.4,alpha,front,0.28145989775657654 +karman_re400,ppo,106,42.4,alpha,upper,-3.6311281919479366 +karman_re400,ppo,106,42.4,alpha,lower,1.7902588844299319 +karman_re400,ppo,107,42.8,alpha,front,0.47707310318946844 +karman_re400,ppo,107,42.8,alpha,upper,-4.498920202255249 +karman_re400,ppo,107,42.8,alpha,lower,0.7642252445220947 +karman_re400,ppo,108,43.2,alpha,front,0.6488147974014282 +karman_re400,ppo,108,43.2,alpha,upper,-5.078687906265259 +karman_re400,ppo,108,43.2,alpha,lower,-0.08735084533691406 +karman_re400,ppo,109,43.6,alpha,front,0.7708625197410583 +karman_re400,ppo,109,43.6,alpha,upper,-5.179171323776245 +karman_re400,ppo,109,43.6,alpha,lower,-0.638463020324707 +karman_re400,ppo,110,44.0,alpha,front,0.8088423013687134 +karman_re400,ppo,110,44.0,alpha,upper,-4.818586707115173 +karman_re400,ppo,110,44.0,alpha,lower,-0.6690893173217773 +karman_re400,ppo,111,44.4,alpha,front,0.6756467819213867 +karman_re400,ppo,111,44.4,alpha,upper,-4.162132024765015 +karman_re400,ppo,111,44.4,alpha,lower,0.04695010185241699 +karman_re400,ppo,112,44.8,alpha,front,0.35397371649742126 +karman_re400,ppo,112,44.8,alpha,upper,-3.4608095288276672 +karman_re400,ppo,112,44.8,alpha,lower,1.1493685245513916 +karman_re400,ppo,113,45.2,alpha,front,0.06947450339794159 +karman_re400,ppo,113,45.2,alpha,upper,-2.9876415729522705 +karman_re400,ppo,113,45.2,alpha,lower,2.0088727474212646 +karman_re400,ppo,114,45.6,alpha,front,-0.10413258522748949 +karman_re400,ppo,114,45.6,alpha,upper,-2.5060012340545654 +karman_re400,ppo,114,45.6,alpha,lower,2.7586143016815186 +karman_re400,ppo,115,46.0,alpha,front,-0.262908011674881 +karman_re400,ppo,115,46.0,alpha,upper,-1.7858779430389407 +karman_re400,ppo,115,46.0,alpha,lower,3.666116178035736 +karman_re400,ppo,116,46.4,alpha,front,-0.433720201253891 +karman_re400,ppo,116,46.4,alpha,upper,-0.9296891689300536 +karman_re400,ppo,116,46.4,alpha,lower,4.576958060264587 +karman_re400,ppo,117,46.8,alpha,front,-0.5874068140983582 +karman_re400,ppo,117,46.8,alpha,upper,-0.22191596031188965 +karman_re400,ppo,117,46.8,alpha,lower,5.192504644393921 +karman_re400,ppo,118,47.2,alpha,front,-0.694404125213623 +karman_re400,ppo,118,47.2,alpha,upper,0.07456302642822266 +karman_re400,ppo,118,47.2,alpha,lower,5.35616397857666 +karman_re400,ppo,119,47.6,alpha,front,-0.7251408100128174 +karman_re400,ppo,119,47.6,alpha,upper,-0.1436607837677002 +karman_re400,ppo,119,47.6,alpha,lower,5.150528430938721 +karman_re400,ppo,120,48.0,alpha,front,-0.6291401386260986 +karman_re400,ppo,120,48.0,alpha,upper,-0.8591275215148925 +karman_re400,ppo,120,48.0,alpha,lower,4.708128213882446 +karman_re400,ppo,121,48.4,alpha,front,-0.385267436504364 +karman_re400,ppo,121,48.4,alpha,upper,-1.7018630504608154 +karman_re400,ppo,121,48.4,alpha,lower,4.109393954277039 +karman_re400,ppo,122,48.8,alpha,front,-0.11846611648797989 +karman_re400,ppo,122,48.8,alpha,upper,-2.2578704357147217 +karman_re400,ppo,122,48.8,alpha,lower,3.528809249401093 +karman_re400,ppo,123,49.2,alpha,front,0.07797989994287491 +karman_re400,ppo,123,49.2,alpha,upper,-2.774135708808899 +karman_re400,ppo,123,49.2,alpha,lower,2.845913290977478 +karman_re400,ppo,124,49.6,alpha,front,0.2589179277420044 +karman_re400,ppo,124,49.6,alpha,upper,-3.5652409195899963 +karman_re400,ppo,124,49.6,alpha,lower,1.894537925720215 +karman_re400,ppo,125,50.0,alpha,front,0.45792844891548157 +karman_re400,ppo,125,50.0,alpha,upper,-4.431540250778198 +karman_re400,ppo,125,50.0,alpha,lower,0.8581855297088624 +karman_re400,ppo,126,50.4,alpha,front,0.6367136836051941 +karman_re400,ppo,126,50.4,alpha,upper,-5.037255525588989 +karman_re400,ppo,126,50.4,alpha,lower,-0.019562721252441406 +karman_re400,ppo,127,50.8,alpha,front,0.7640796899795532 +karman_re400,ppo,127,50.8,alpha,upper,-5.186671257019043 +karman_re400,ppo,127,50.8,alpha,lower,-0.6056404113769531 +karman_re400,ppo,128,51.2,alpha,front,0.8108280897140503 +karman_re400,ppo,128,51.2,alpha,upper,-4.871798992156982 +karman_re400,ppo,128,51.2,alpha,lower,-0.6956634521484375 +karman_re400,ppo,129,51.6,alpha,front,0.6980843544006348 +karman_re400,ppo,129,51.6,alpha,upper,-4.239239811897278 +karman_re400,ppo,129,51.6,alpha,lower,-0.04374885559082031 +karman_re400,ppo,130,52.0,alpha,front,0.3855430483818054 +karman_re400,ppo,130,52.0,alpha,upper,-3.517722964286804 +karman_re400,ppo,130,52.0,alpha,lower,1.0623564720153809 +karman_re400,ppo,131,52.4,alpha,front,0.09106285870075226 +karman_re400,ppo,131,52.4,alpha,upper,-3.0250682830810547 +karman_re400,ppo,131,52.4,alpha,lower,1.935833930969238 +karman_re400,ppo,132,52.8,alpha,front,-0.08636999875307083 +karman_re400,ppo,132,52.8,alpha,upper,-2.5629193782806396 +karman_re400,ppo,132,52.8,alpha,lower,2.6653356552124023 +karman_re400,ppo,133,53.2,alpha,front,-0.243762344121933 +karman_re400,ppo,133,53.2,alpha,upper,-1.8691458702087402 +karman_re400,ppo,133,53.2,alpha,lower,3.5604048967361455 +karman_re400,ppo,134,53.6,alpha,front,-0.41696146130561834 +karman_re400,ppo,134,53.6,alpha,upper,-1.019472599029541 +karman_re400,ppo,134,53.6,alpha,lower,4.495348334312439 +karman_re400,ppo,135,54.0,alpha,front,-0.5745084881782532 +karman_re400,ppo,135,54.0,alpha,upper,-0.28423428535461426 +karman_re400,ppo,135,54.0,alpha,lower,5.155254125595093 +karman_re400,ppo,136,54.4,alpha,front,-0.6866488456726074 +karman_re400,ppo,136,54.4,alpha,upper,0.06722259521484375 +karman_re400,ppo,136,54.4,alpha,lower,5.3633294105529785 +karman_re400,ppo,137,54.8,alpha,front,-0.723185658454895 +karman_re400,ppo,137,54.8,alpha,upper,-0.08537602424621582 +karman_re400,ppo,137,54.8,alpha,lower,5.182135820388794 +karman_re400,ppo,138,55.2,alpha,front,-0.6439330577850342 +karman_re400,ppo,138,55.2,alpha,upper,-0.7530922889709473 +karman_re400,ppo,138,55.2,alpha,lower,4.762095808982849 +karman_re400,ppo,139,55.6,alpha,front,-0.4146706461906433 +karman_re400,ppo,139,55.6,alpha,upper,-1.6250207424163818 +karman_re400,ppo,139,55.6,alpha,lower,4.170284867286682 +karman_re400,ppo,140,56.0,alpha,front,-0.14565762877464294 +karman_re400,ppo,140,56.0,alpha,upper,-2.2342827320098877 +karman_re400,ppo,140,56.0,alpha,lower,3.584277927875519 +karman_re400,ppo,141,56.4,alpha,front,0.05803718417882919 +karman_re400,ppo,141,56.4,alpha,upper,-2.7379817962646484 +karman_re400,ppo,141,56.4,alpha,lower,2.923932671546936 +karman_re400,ppo,142,56.8,alpha,front,0.242413729429245 +karman_re400,ppo,142,56.8,alpha,upper,-3.481934785842895 +karman_re400,ppo,142,56.8,alpha,lower,1.9954226016998289 +karman_re400,ppo,143,57.2,alpha,front,0.4425929486751557 +karman_re400,ppo,143,57.2,alpha,upper,-4.342697620391846 +karman_re400,ppo,143,57.2,alpha,lower,0.9534459114074706 +karman_re400,ppo,144,57.6,alpha,front,0.6242139339447021 +karman_re400,ppo,144,57.6,alpha,upper,-4.987001895904541 +karman_re400,ppo,144,57.6,alpha,lower,0.05340647697448731 +karman_re400,ppo,145,58.0,alpha,front,0.7544925808906555 +karman_re400,ppo,145,58.0,alpha,upper,-5.196328639984131 +karman_re400,ppo,145,58.0,alpha,lower,-0.5636334419250488 +karman_re400,ppo,146,58.4,alpha,front,0.8108072876930238 +karman_re400,ppo,146,58.4,alpha,upper,-4.9211345911026 +karman_re400,ppo,146,58.4,alpha,lower,-0.7111921310424805 +karman_re400,ppo,147,58.8,alpha,front,0.7189645171165466 +karman_re400,ppo,147,58.8,alpha,upper,-4.307227373123169 +karman_re400,ppo,147,58.8,alpha,lower,-0.1316394805908203 +karman_re400,ppo,148,59.2,alpha,front,0.4209958612918853 +karman_re400,ppo,148,59.2,alpha,upper,-3.574045181274414 +karman_re400,ppo,148,59.2,alpha,lower,0.9542984962463379 +karman_re400,ppo,149,59.6,alpha,front,0.11811994016170502 +karman_re400,ppo,149,59.6,alpha,upper,-3.065155565738678 +karman_re400,ppo,149,59.6,alpha,lower,1.8486571311950684 +karman_re400,ppo,150,60.0,alpha,front,-0.06755099445581436 +karman_re400,ppo,150,60.0,alpha,upper,-2.6196136474609375 +karman_re400,ppo,150,60.0,alpha,lower,2.5799165964126587 +karman_re400,ppo,151,60.4,alpha,front,-0.2251874804496765 +karman_re400,ppo,151,60.4,alpha,upper,-1.9497418403625488 +karman_re400,ppo,151,60.4,alpha,lower,3.4691488146781917 +karman_re400,ppo,152,60.8,alpha,front,-0.3997403085231781 +karman_re400,ppo,152,60.8,alpha,upper,-1.1047792434692383 +karman_re400,ppo,152,60.8,alpha,lower,4.419221043586731 +karman_re400,ppo,153,61.2,alpha,front,-0.558077335357666 +karman_re400,ppo,153,61.2,alpha,upper,-0.3376655578613281 +karman_re400,ppo,153,61.2,alpha,lower,5.112030744552612 +karman_re400,ppo,154,61.6,alpha,front,-0.6746603846549988 +karman_re400,ppo,154,61.6,alpha,upper,0.06295204162597656 +karman_re400,ppo,154,61.6,alpha,lower,5.361570358276367 +karman_re400,ppo,155,62.0,alpha,front,-0.7197208404541016 +karman_re400,ppo,155,62.0,alpha,upper,-0.0390934944152832 +karman_re400,ppo,155,62.0,alpha,lower,5.209071636199951 +karman_re400,ppo,156,62.4,alpha,front,-0.6579832434654236 +karman_re400,ppo,156,62.4,alpha,upper,-0.6744554042816162 +karman_re400,ppo,156,62.4,alpha,lower,4.813514828681946 +karman_re400,ppo,157,62.8,alpha,front,-0.44216254353523254 +karman_re400,ppo,157,62.8,alpha,upper,-1.5674715042114258 +karman_re400,ppo,157,62.8,alpha,lower,4.230146288871765 +karman_re400,ppo,158,63.2,alpha,front,-0.16858845949172974 +karman_re400,ppo,158,63.2,alpha,upper,-2.2035220861434937 +karman_re400,ppo,158,63.2,alpha,lower,3.6404417157173157 +karman_re400,ppo,159,63.6,alpha,front,0.04426458477973938 +karman_re400,ppo,159,63.6,alpha,upper,-2.6742498874664307 +karman_re400,ppo,159,63.6,alpha,lower,2.9990108013153076 +karman_re400,ppo,160,64.0,alpha,front,0.22770479321479797 +karman_re400,ppo,160,64.0,alpha,upper,-3.380394339561463 +karman_re400,ppo,160,64.0,alpha,lower,2.0958642959594727 +karman_re400,ppo,161,64.4,alpha,front,0.42522189021110535 +karman_re400,ppo,161,64.4,alpha,upper,-4.252465128898621 +karman_re400,ppo,161,64.4,alpha,lower,1.052968978881836 +karman_re400,ppo,162,64.8,alpha,front,0.6079292893409729 +karman_re400,ppo,162,64.8,alpha,upper,-4.942277669906616 +karman_re400,ppo,162,64.8,alpha,lower,0.13434243202209473 +karman_re400,ppo,163,65.2,alpha,front,0.7432903051376343 +karman_re400,ppo,163,65.2,alpha,upper,-5.202730655670166 +karman_re400,ppo,163,65.2,alpha,lower,-0.5160531997680664 +karman_re400,ppo,164,65.6,alpha,front,0.8104119896888733 +karman_re400,ppo,164,65.6,alpha,upper,-4.961978197097778 +karman_re400,ppo,164,65.6,alpha,lower,-0.7246866226196289 +karman_re400,ppo,165,66.0,alpha,front,0.7400789260864258 +karman_re400,ppo,165,66.0,alpha,upper,-4.373341083526611 +karman_re400,ppo,165,66.0,alpha,lower,-0.2290458679199219 +karman_re400,ppo,166,66.4,alpha,front,0.4573374688625335 +karman_re400,ppo,166,66.4,alpha,upper,-3.6376805305480957 +karman_re400,ppo,166,66.4,alpha,lower,0.8357868194580078 +karman_re400,ppo,167,66.8,alpha,front,0.143507719039917 +karman_re400,ppo,167,66.8,alpha,upper,-3.1068520545959473 +karman_re400,ppo,167,66.8,alpha,lower,1.7715466022491455 +karman_re400,ppo,168,67.2,alpha,front,-0.053422458469867706 +karman_re400,ppo,168,67.2,alpha,upper,-2.668959140777588 +karman_re400,ppo,168,67.2,alpha,lower,2.514098048210144 +karman_re400,ppo,169,67.6,alpha,front,-0.21043860912322995 +karman_re400,ppo,169,67.6,alpha,upper,-2.023538589477539 +karman_re400,ppo,169,67.6,alpha,lower,3.384645819664001 +karman_re400,ppo,170,68.0,alpha,front,-0.38210418820381165 +karman_re400,ppo,170,68.0,alpha,upper,-1.1823554039001465 +karman_re400,ppo,170,68.0,alpha,lower,4.333951711654663 +karman_re400,ppo,171,68.4,alpha,front,-0.541861355304718 +karman_re400,ppo,171,68.4,alpha,upper,-0.3946144580841065 +karman_re400,ppo,171,68.4,alpha,lower,5.057500123977661 +karman_re400,ppo,172,68.8,alpha,front,-0.6645784378051758 +karman_re400,ppo,172,68.8,alpha,upper,0.04542398452758789 +karman_re400,ppo,172,68.8,alpha,lower,5.35324239730835 +karman_re400,ppo,173,69.2,alpha,front,-0.7195156216621399 +karman_re400,ppo,173,69.2,alpha,upper,-0.0146939754486084 +karman_re400,ppo,173,69.2,alpha,lower,5.235708713531494 +karman_re400,ppo,174,69.6,alpha,front,-0.671647846698761 +karman_re400,ppo,174,69.6,alpha,upper,-0.6096229553222656 +karman_re400,ppo,174,69.6,alpha,lower,4.862226128578186 +karman_re400,ppo,175,70.0,alpha,front,-0.466373473405838 +karman_re400,ppo,175,70.0,alpha,upper,-1.4920239448547363 +karman_re400,ppo,175,70.0,alpha,lower,4.290560841560364 +karman_re400,ppo,176,70.4,alpha,front,-0.18918755650520325 +karman_re400,ppo,176,70.4,alpha,upper,-2.1396965980529785 +karman_re400,ppo,176,70.4,alpha,lower,3.6987434625625615 +karman_re400,ppo,177,70.8,alpha,front,0.029234595596790314 +karman_re400,ppo,177,70.8,alpha,upper,-2.598236560821533 +karman_re400,ppo,177,70.8,alpha,lower,3.0748130679130554 +karman_re400,ppo,178,71.2,alpha,front,0.20899051427841187 +karman_re400,ppo,178,71.2,alpha,upper,-3.2923241853713985 +karman_re400,ppo,178,71.2,alpha,lower,2.1966826915740967 +karman_re400,ppo,179,71.6,alpha,front,0.4035479128360748 +karman_re400,ppo,179,71.6,alpha,upper,-4.178340315818787 +karman_re400,ppo,179,71.6,alpha,lower,1.1545343399047852 +karman_re400,ppo,180,72.0,alpha,front,0.5897591710090637 +karman_re400,ppo,180,72.0,alpha,upper,-4.899913430213928 +karman_re400,ppo,180,72.0,alpha,lower,0.21622705459594724 +karman_re400,ppo,181,72.4,alpha,front,0.7331131100654602 +karman_re400,ppo,181,72.4,alpha,upper,-5.2002880573272705 +karman_re400,ppo,181,72.4,alpha,lower,-0.46959781646728516 +karman_re400,ppo,182,72.8,alpha,front,0.8096750974655151 +karman_re400,ppo,182,72.8,alpha,upper,-5.0007312297821045 +karman_re400,ppo,182,72.8,alpha,lower,-0.7361640930175781 +karman_re400,ppo,183,73.2,alpha,front,0.7574759721755981 +karman_re400,ppo,183,73.2,alpha,upper,-4.444530606269836 +karman_re400,ppo,183,73.2,alpha,lower,-0.3187904357910156 +karman_re400,ppo,184,73.6,alpha,front,0.4907812774181366 +karman_re400,ppo,184,73.6,alpha,upper,-3.708397150039673 +karman_re400,ppo,184,73.6,alpha,lower,0.7289032936096191 +karman_re400,ppo,185,74.0,alpha,front,0.16630348563194275 +karman_re400,ppo,185,74.0,alpha,upper,-3.1487534046173096 +karman_re400,ppo,185,74.0,alpha,lower,1.7059135437011719 +karman_re400,ppo,186,74.4,alpha,front,-0.04143640398979187 +karman_re400,ppo,186,74.4,alpha,upper,-2.714962601661682 +karman_re400,ppo,186,74.4,alpha,lower,2.448946475982666 +karman_re400,ppo,187,74.8,alpha,front,-0.19616907835006714 +karman_re400,ppo,187,74.8,alpha,upper,-2.0942203998565674 +karman_re400,ppo,187,74.8,alpha,lower,3.2902219891548157 +karman_re400,ppo,188,75.2,alpha,front,-0.3656294643878937 +karman_re400,ppo,188,75.2,alpha,upper,-1.2657208442687988 +karman_re400,ppo,188,75.2,alpha,lower,4.2397929430007935 +karman_re400,ppo,189,75.6,alpha,front,-0.5285838842391968 +karman_re400,ppo,189,75.6,alpha,upper,-0.46258425712585444 +karman_re400,ppo,189,75.6,alpha,lower,5.000500917434692 +karman_re400,ppo,190,76.0,alpha,front,-0.6580160856246948 +karman_re400,ppo,190,76.0,alpha,upper,0.016427040100097656 +karman_re400,ppo,190,76.0,alpha,lower,5.3461973667144775 +karman_re400,ppo,191,76.4,alpha,front,-0.7206898331642151 +karman_re400,ppo,191,76.4,alpha,upper,0.007082939147949218 +karman_re400,ppo,191,76.4,alpha,lower,5.262081861495972 +karman_re400,ppo,192,76.8,alpha,front,-0.6833521723747253 +karman_re400,ppo,192,76.8,alpha,upper,-0.5293557643890381 +karman_re400,ppo,192,76.8,alpha,lower,4.90762722492218 +karman_re400,ppo,193,77.2,alpha,front,-0.49102953076362615 +karman_re400,ppo,193,77.2,alpha,upper,-1.3939416408538818 +karman_re400,ppo,193,77.2,alpha,lower,4.351161360740662 +karman_re400,ppo,194,77.6,alpha,front,-0.21493470668792722 +karman_re400,ppo,194,77.6,alpha,upper,-2.075524091720581 +karman_re400,ppo,194,77.6,alpha,lower,3.7552676796913147 +karman_re400,ppo,195,78.0,alpha,front,0.008678078651428223 +karman_re400,ppo,195,78.0,alpha,upper,-2.5505919456481934 +karman_re400,ppo,195,78.0,alpha,lower,3.144419848918915 +karman_re400,ppo,196,78.4,alpha,front,0.1878381073474884 +karman_re400,ppo,196,78.4,alpha,upper,-3.225844860076904 +karman_re400,ppo,196,78.4,alpha,lower,2.2941126823425293 +karman_re400,ppo,197,78.8,alpha,front,0.3823740482330322 +karman_re400,ppo,197,78.8,alpha,upper,-4.104544520378113 +karman_re400,ppo,197,78.8,alpha,lower,1.2546205520629883 +karman_re400,ppo,198,79.2,alpha,front,0.5739478468894958 +karman_re400,ppo,198,79.2,alpha,upper,-4.844200491905212 +karman_re400,ppo,198,79.2,alpha,lower,0.29572057723999023 +karman_re400,ppo,199,79.6,alpha,front,0.7229945063591003 +karman_re400,ppo,199,79.6,alpha,upper,-5.189845561981201 +karman_re400,ppo,199,79.6,alpha,lower,-0.42070579528808594 +karman_re400,ppo,200,80.0,alpha,front,0.8064186573028564 +karman_re400,ppo,200,80.0,alpha,upper,-5.0394816398620605 +karman_re400,ppo,200,80.0,alpha,lower,-0.7366480827331543 +karman_re400,ppo,201,80.4,alpha,front,0.7704922556877136 +karman_re400,ppo,201,80.4,alpha,upper,-4.514785885810852 +karman_re400,ppo,201,80.4,alpha,lower,-0.38948965072631836 +karman_re400,ppo,202,80.8,alpha,front,0.5219254493713379 +karman_re400,ppo,202,80.8,alpha,upper,-3.7783656716346745 +karman_re400,ppo,202,80.8,alpha,lower,0.629194974899292 +karman_re400,ppo,203,81.2,alpha,front,0.19220222532749176 +karman_re400,ppo,203,81.2,alpha,upper,-3.1902536153793335 +karman_re400,ppo,203,81.2,alpha,lower,1.6305232048034668 +karman_re400,ppo,204,81.6,alpha,front,-0.024535045027732846 +karman_re400,ppo,204,81.6,alpha,upper,-2.7625086307525635 +karman_re400,ppo,204,81.6,alpha,lower,2.368964672088623 +karman_re400,ppo,205,82.0,alpha,front,-0.1782398521900177 +karman_re400,ppo,205,82.0,alpha,upper,-2.168525457382202 +karman_re400,ppo,205,82.0,alpha,lower,3.1901071071624756 +karman_re400,ppo,206,82.4,alpha,front,-0.34867364168167114 +karman_re400,ppo,206,82.4,alpha,upper,-1.3546671867370605 +karman_re400,ppo,206,82.4,alpha,lower,4.148144483566284 +karman_re400,ppo,207,82.8,alpha,front,-0.5147825479507446 +karman_re400,ppo,207,82.8,alpha,upper,-0.5363328456878662 +karman_re400,ppo,207,82.8,alpha,lower,4.945281028747559 +karman_re400,ppo,208,83.2,alpha,front,-0.6488530039787292 +karman_re400,ppo,208,83.2,alpha,upper,-0.012117385864257812 +karman_re400,ppo,208,83.2,alpha,lower,5.336910963058472 +karman_re400,ppo,209,83.6,alpha,front,-0.7172827124595642 +karman_re400,ppo,209,83.6,alpha,upper,0.03834342956542969 +karman_re400,ppo,209,83.6,alpha,lower,5.285545110702515 +karman_re400,ppo,210,84.0,alpha,front,-0.6922447085380554 +karman_re400,ppo,210,84.0,alpha,upper,-0.4418518543243408 +karman_re400,ppo,210,84.0,alpha,lower,4.953082323074341 +karman_re400,ppo,211,84.4,alpha,front,-0.5173144340515137 +karman_re400,ppo,211,84.4,alpha,upper,-1.3026483058929443 +karman_re400,ppo,211,84.4,alpha,lower,4.411105155944824 +karman_re400,ppo,212,84.8,alpha,front,-0.24435481429100034 +karman_re400,ppo,212,84.8,alpha,upper,-2.035008192062378 +karman_re400,ppo,212,84.8,alpha,lower,3.8100759387016296 +karman_re400,ppo,213,85.2,alpha,front,-0.012919381260871885 +karman_re400,ppo,213,85.2,alpha,upper,-2.5193508863449097 +karman_re400,ppo,213,85.2,alpha,lower,3.2107007503509517 +karman_re400,ppo,214,85.6,alpha,front,0.1694246232509613 +karman_re400,ppo,214,85.6,alpha,upper,-3.154127597808838 +karman_re400,ppo,214,85.6,alpha,lower,2.389158606529236 +karman_re400,ppo,215,86.0,alpha,front,0.3647778034210205 +karman_re400,ppo,215,86.0,alpha,upper,-4.012424349784851 +karman_re400,ppo,215,86.0,alpha,lower,1.3556749820709229 +karman_re400,ppo,216,86.4,alpha,front,0.5584819316864014 +karman_re400,ppo,216,86.4,alpha,upper,-4.777845740318298 +karman_re400,ppo,216,86.4,alpha,lower,0.3797340393066406 +karman_re400,ppo,217,86.8,alpha,front,0.71104896068573 +karman_re400,ppo,217,86.8,alpha,upper,-5.176497936248779 +karman_re400,ppo,217,86.8,alpha,lower,-0.3639688491821289 +karman_re400,ppo,218,87.2,alpha,front,0.8009468317031861 +karman_re400,ppo,218,87.2,alpha,upper,-5.0761027336120605 +karman_re400,ppo,218,87.2,alpha,lower,-0.7264432907104492 +karman_re400,ppo,219,87.6,alpha,front,0.781588912010193 +karman_re400,ppo,219,87.6,alpha,upper,-4.57883358001709 +karman_re400,ppo,219,87.6,alpha,lower,-0.4542241096496582 +karman_re400,ppo,220,88.0,alpha,front,0.5545452833175659 +karman_re400,ppo,220,88.0,alpha,upper,-3.8455006480216984 +karman_re400,ppo,220,88.0,alpha,lower,0.5185446739196777 +karman_re400,ppo,221,88.4,alpha,front,0.2224959135055542 +karman_re400,ppo,221,88.4,alpha,upper,-3.2349332571029663 +karman_re400,ppo,221,88.4,alpha,lower,1.539616584777832 +karman_re400,ppo,222,88.8,alpha,front,-0.0051056742668151855 +karman_re400,ppo,222,88.8,alpha,upper,-2.809105396270752 +karman_re400,ppo,222,88.8,alpha,lower,2.2897465229034424 +karman_re400,ppo,223,89.2,alpha,front,-0.16171443462371826 +karman_re400,ppo,223,89.2,alpha,upper,-2.240593910217285 +karman_re400,ppo,223,89.2,alpha,lower,3.1009111404418945 +karman_re400,ppo,224,89.6,alpha,front,-0.33121824264526367 +karman_re400,ppo,224,89.6,alpha,upper,-1.4411139488220215 +karman_re400,ppo,224,89.6,alpha,lower,4.060961365699768 +karman_re400,ppo,225,90.0,alpha,front,-0.49871686100959783 +karman_re400,ppo,225,90.0,alpha,upper,-0.6066110134124756 +karman_re400,ppo,225,90.0,alpha,lower,4.88639771938324 +karman_re400,ppo,226,90.4,alpha,front,-0.6359244585037231 +karman_re400,ppo,226,90.4,alpha,upper,-0.038129329681396484 +karman_re400,ppo,226,90.4,alpha,lower,5.3190224170684814 +karman_re400,ppo,227,90.8,alpha,front,-0.7116076350212097 +karman_re400,ppo,227,90.8,alpha,upper,0.06270503997802734 +karman_re400,ppo,227,90.8,alpha,lower,5.303985595703125 +karman_re400,ppo,228,91.2,alpha,front,-0.6997355222702026 +karman_re400,ppo,228,91.2,alpha,upper,-0.3717796802520752 +karman_re400,ppo,228,91.2,alpha,lower,4.995065450668335 +karman_re400,ppo,229,91.6,alpha,front,-0.5416358113288879 +karman_re400,ppo,229,91.6,alpha,upper,-1.225987434387207 +karman_re400,ppo,229,91.6,alpha,lower,4.471246004104614 +karman_re400,ppo,230,92.0,alpha,front,-0.2711144983768463 +karman_re400,ppo,230,92.0,alpha,upper,-1.992645740509033 +karman_re400,ppo,230,92.0,alpha,lower,3.866485178470612 +karman_re400,ppo,231,92.4,alpha,front,-0.03036437928676605 +karman_re400,ppo,231,92.4,alpha,upper,-2.4718658924102783 +karman_re400,ppo,231,92.4,alpha,lower,3.2757525444030757 +karman_re400,ppo,232,92.8,alpha,front,0.15446346998214722 +karman_re400,ppo,232,92.8,alpha,upper,-3.0668311715126038 +karman_re400,ppo,232,92.8,alpha,lower,2.482911229133606 +karman_re400,ppo,233,93.2,alpha,front,0.34694337844848633 +karman_re400,ppo,233,93.2,alpha,upper,-3.9166675806045532 +karman_re400,ppo,233,93.2,alpha,lower,1.4584770202636719 +karman_re400,ppo,234,93.6,alpha,front,0.5407373905181885 +karman_re400,ppo,234,93.6,alpha,upper,-4.715158462524414 +karman_re400,ppo,234,93.6,alpha,lower,0.468848705291748 +karman_re400,ppo,235,94.0,alpha,front,0.6974582672119141 +karman_re400,ppo,235,94.0,alpha,upper,-5.162872552871704 +karman_re400,ppo,235,94.0,alpha,lower,-0.3026871681213379 +karman_re400,ppo,236,94.4,alpha,front,0.7954420447349548 +karman_re400,ppo,236,94.4,alpha,upper,-5.10649037361145 +karman_re400,ppo,236,94.4,alpha,lower,-0.7128181457519531 +karman_re400,ppo,237,94.8,alpha,front,0.7925856113433837 +karman_re400,ppo,237,94.8,alpha,upper,-4.636695027351379 +karman_re400,ppo,237,94.8,alpha,lower,-0.5191993713378906 +karman_re400,ppo,238,95.2,alpha,front,0.5873433351516724 +karman_re400,ppo,238,95.2,alpha,upper,-3.9179663658142094 +karman_re400,ppo,238,95.2,alpha,lower,0.3988606929779053 +karman_re400,ppo,239,95.6,alpha,front,0.2534445822238922 +karman_re400,ppo,239,95.6,alpha,upper,-3.283207058906555 +karman_re400,ppo,239,95.6,alpha,lower,1.4484772682189941 +karman_re400,ppo,240,96.0,alpha,front,0.011603474617004395 +karman_re400,ppo,240,96.0,alpha,upper,-2.8525333404541016 +karman_re400,ppo,240,96.0,alpha,lower,2.223338007926941 +karman_re400,ppo,241,96.4,alpha,front,-0.14796537160873413 +karman_re400,ppo,241,96.4,alpha,upper,-2.3060367107391357 +karman_re400,ppo,241,96.4,alpha,lower,3.020850718021393 +karman_re400,ppo,242,96.8,alpha,front,-0.31452691555023193 +karman_re400,ppo,242,96.8,alpha,upper,-1.5217866897583008 +karman_re400,ppo,242,96.8,alpha,lower,3.9706100225448613 +karman_re400,ppo,243,97.2,alpha,front,-0.4827221930027008 +karman_re400,ppo,243,97.2,alpha,upper,-0.6768343448638916 +karman_re400,ppo,243,97.2,alpha,lower,4.817602753639221 +karman_re400,ppo,244,97.6,alpha,front,-0.6236992478370667 +karman_re400,ppo,244,97.6,alpha,upper,-0.07283282279968262 +karman_re400,ppo,244,97.6,alpha,lower,5.294350862503052 +karman_re400,ppo,245,98.0,alpha,front,-0.7078222036361694 +karman_re400,ppo,245,98.0,alpha,upper,0.07225704193115234 +karman_re400,ppo,245,98.0,alpha,lower,5.320743560791016 +karman_re400,ppo,246,98.4,alpha,front,-0.7074684500694275 +karman_re400,ppo,246,98.4,alpha,upper,-0.3161633014678955 +karman_re400,ppo,246,98.4,alpha,lower,5.035321235656738 +karman_re400,ppo,247,98.8,alpha,front,-0.5640209913253784 +karman_re400,ppo,247,98.8,alpha,upper,-1.14570951461792 +karman_re400,ppo,247,98.8,alpha,lower,4.5296807289123535 +karman_re400,ppo,248,99.2,alpha,front,-0.29582178592681885 +karman_re400,ppo,248,99.2,alpha,upper,-1.9274761676788332 +karman_re400,ppo,248,99.2,alpha,lower,3.924075722694397 +karman_re400,ppo,249,99.6,alpha,front,-0.04782218486070633 +karman_re400,ppo,249,99.6,alpha,upper,-2.4114043712615967 +karman_re400,ppo,249,99.6,alpha,lower,3.339974164962769 +karman_re400,ppo,250,100.0,alpha,front,0.1375664472579956 +karman_re400,ppo,250,100.0,alpha,upper,-2.985422134399414 +karman_re400,ppo,250,100.0,alpha,lower,2.5745686292648315 +karman_re400,ppo,251,100.4,alpha,front,0.32602861523628235 +karman_re400,ppo,251,100.4,alpha,upper,-3.8332564234733577 +karman_re400,ppo,251,100.4,alpha,lower,1.5628652572631838 +karman_re400,ppo,252,100.8,alpha,front,0.5215556621551514 +karman_re400,ppo,252,100.8,alpha,upper,-4.6562148332595825 +karman_re400,ppo,252,100.8,alpha,lower,0.5590083599090576 +karman_re400,ppo,253,101.2,alpha,front,0.6842015385627747 +karman_re400,ppo,253,101.2,alpha,upper,-5.142167091369629 +karman_re400,ppo,253,101.2,alpha,lower,-0.24035930633544922 +karman_re400,ppo,254,101.6,alpha,front,0.7902618050575255 +karman_re400,ppo,254,101.6,alpha,upper,-5.131311416625977 +karman_re400,ppo,254,101.6,alpha,lower,-0.6974725723266602 +karman_re400,ppo,255,102.0,alpha,front,0.8011103272438049 +karman_re400,ppo,255,102.0,alpha,upper,-4.696536302566528 +karman_re400,ppo,255,102.0,alpha,lower,-0.5775513648986816 +karman_re400,ppo,256,102.4,alpha,front,0.6172035336494446 +karman_re400,ppo,256,102.4,alpha,upper,-3.994218826293945 +karman_re400,ppo,256,102.4,alpha,lower,0.2884399890899658 +karman_re400,ppo,257,102.8,alpha,front,0.2829875946044922 +karman_re400,ppo,257,102.8,alpha,upper,-3.3342989683151245 +karman_re400,ppo,257,102.8,alpha,lower,1.3649091720581055 +karman_re400,ppo,258,103.2,alpha,front,0.026925623416900635 +karman_re400,ppo,258,103.2,alpha,upper,-2.892069935798645 +karman_re400,ppo,258,103.2,alpha,lower,2.162417769432068 +karman_re400,ppo,259,103.6,alpha,front,-0.13428479433059692 +karman_re400,ppo,259,103.6,alpha,upper,-2.368542194366455 +karman_re400,ppo,259,103.6,alpha,lower,2.935096263885498 +karman_re400,ppo,260,104.0,alpha,front,-0.2978987395763397 +karman_re400,ppo,260,104.0,alpha,upper,-1.6042225360870361 +karman_re400,ppo,260,104.0,alpha,lower,3.8724793195724483 +karman_re400,ppo,261,104.4,alpha,front,-0.46747085452079773 +karman_re400,ppo,261,104.4,alpha,upper,-0.7541718482971191 +karman_re400,ppo,261,104.4,alpha,lower,4.744716048240662 +karman_re400,ppo,262,104.8,alpha,front,-0.6133618950843811 +karman_re400,ppo,262,104.8,alpha,upper,-0.11811685562133789 +karman_re400,ppo,262,104.8,alpha,lower,5.267855882644653 +karman_re400,ppo,263,105.2,alpha,front,-0.7049800753593445 +karman_re400,ppo,263,105.2,alpha,upper,0.0749201774597168 +karman_re400,ppo,263,105.2,alpha,lower,5.336089134216309 +karman_re400,ppo,264,105.6,alpha,front,-0.7135269641876221 +karman_re400,ppo,264,105.6,alpha,upper,-0.25629639625549316 +karman_re400,ppo,264,105.6,alpha,lower,5.0733726024627686 +karman_re400,ppo,265,106.0,alpha,front,-0.5843038558959961 +karman_re400,ppo,265,106.0,alpha,upper,-1.0482988357543945 +karman_re400,ppo,265,106.0,alpha,lower,4.587310552597046 +karman_re400,ppo,266,106.4,alpha,front,-0.32297462224960327 +karman_re400,ppo,266,106.4,alpha,upper,-1.85432767868042 +karman_re400,ppo,266,106.4,alpha,lower,3.9816625118255615 +karman_re400,ppo,267,106.8,alpha,front,-0.06979244202375412 +karman_re400,ppo,267,106.8,alpha,upper,-2.364624261856079 +karman_re400,ppo,267,106.8,alpha,lower,3.4009846448898315 +karman_re400,ppo,268,107.2,alpha,front,0.11796878278255461 +karman_re400,ppo,268,107.2,alpha,upper,-2.9250361919403076 +karman_re400,ppo,268,107.2,alpha,lower,2.661961078643799 +karman_re400,ppo,269,107.6,alpha,front,0.3049776256084442 +karman_re400,ppo,269,107.6,alpha,upper,-3.7548424005508423 +karman_re400,ppo,269,107.6,alpha,lower,1.6661710739135742 +karman_re400,ppo,270,108.0,alpha,front,0.5030912756919861 +karman_re400,ppo,270,108.0,alpha,upper,-4.588517904281616 +karman_re400,ppo,270,108.0,alpha,lower,0.6486995220184326 +karman_re400,ppo,271,108.4,alpha,front,0.6715341210365295 +karman_re400,ppo,271,108.4,alpha,upper,-5.112691164016724 +karman_re400,ppo,271,108.4,alpha,lower,-0.17712879180908203 +karman_re400,ppo,272,108.8,alpha,front,0.7834974527359009 +karman_re400,ppo,272,108.8,alpha,upper,-5.153418302536011 +karman_re400,ppo,272,108.8,alpha,lower,-0.674809455871582 +karman_re400,ppo,273,109.2,alpha,front,0.8062019944190979 +karman_re400,ppo,273,109.2,alpha,upper,-4.756434679031372 +karman_re400,ppo,273,109.2,alpha,lower,-0.6221637725830078 +karman_re400,ppo,274,109.6,alpha,front,0.6439870595932007 +karman_re400,ppo,274,109.6,alpha,upper,-4.06935453414917 +karman_re400,ppo,274,109.6,alpha,lower,0.18795490264892578 +karman_re400,ppo,275,110.0,alpha,front,0.3138921558856964 +karman_re400,ppo,275,110.0,alpha,upper,-3.3858031034469604 +karman_re400,ppo,275,110.0,alpha,lower,1.277301549911499 +karman_re400,ppo,276,110.4,alpha,front,0.04656609147787094 +karman_re400,ppo,276,110.4,alpha,upper,-2.9334796667099 +karman_re400,ppo,276,110.4,alpha,lower,2.0884835720062256 +karman_re400,ppo,277,110.8,alpha,front,-0.11802393943071367 +karman_re400,ppo,277,110.8,alpha,upper,-2.432419538497925 +karman_re400,ppo,277,110.8,alpha,lower,2.844181776046753 +karman_re400,ppo,278,111.2,alpha,front,-0.28031548857688904 +karman_re400,ppo,278,111.2,alpha,upper,-1.6889860630035403 +karman_re400,ppo,278,111.2,alpha,lower,3.7749409675598145 +karman_re400,ppo,279,111.6,alpha,front,-0.4521385729312897 +karman_re400,ppo,279,111.6,alpha,upper,-0.8365232944488525 +karman_re400,ppo,279,111.6,alpha,lower,4.673003673553467 +karman_re400,ppo,280,112.0,alpha,front,-0.6017773151397705 +karman_re400,ppo,280,112.0,alpha,upper,-0.16550660133361816 +karman_re400,ppo,280,112.0,alpha,lower,5.239463806152344 +karman_re400,ppo,281,112.4,alpha,front,-0.6991674304008484 +karman_re400,ppo,281,112.4,alpha,upper,0.08132553100585938 +karman_re400,ppo,281,112.4,alpha,lower,5.348550796508789 +karman_re400,ppo,282,112.8,alpha,front,-0.7163400053977966 +karman_re400,ppo,282,112.8,alpha,upper,-0.19104790687561035 +karman_re400,ppo,282,112.8,alpha,lower,5.109428882598877 +karman_re400,ppo,283,113.2,alpha,front,-0.604743242263794 +karman_re400,ppo,283,113.2,alpha,upper,-0.9521908760070801 +karman_re400,ppo,283,113.2,alpha,lower,4.643815755844116 +karman_re400,ppo,284,113.6,alpha,front,-0.35232874751091003 +karman_re400,ppo,284,113.6,alpha,upper,-1.7918312549591064 +karman_re400,ppo,284,113.6,alpha,lower,4.039889454841614 +karman_re400,ppo,285,114.0,alpha,front,-0.0934373065829277 +karman_re400,ppo,285,114.0,alpha,upper,-2.3343217372894287 +karman_re400,ppo,285,114.0,alpha,lower,3.4585354328155513 +karman_re400,ppo,286,114.4,alpha,front,0.09963764995336534 +karman_re400,ppo,286,114.4,alpha,upper,-2.867622971534729 +karman_re400,ppo,286,114.4,alpha,lower,2.7457566261291504 +karman_re400,ppo,287,114.8,alpha,front,0.2866702079772949 +karman_re400,ppo,287,114.8,alpha,upper,-3.665357828140259 +karman_re400,ppo,287,114.8,alpha,lower,1.7687067985534668 +karman_re400,ppo,288,115.2,alpha,front,0.48582121729850775 +karman_re400,ppo,288,115.2,alpha,upper,-4.5101693868637085 +karman_re400,ppo,288,115.2,alpha,lower,0.7411990165710449 +karman_re400,ppo,289,115.6,alpha,front,0.6576527953147888 +karman_re400,ppo,289,115.6,alpha,upper,-5.077758312225342 +karman_re400,ppo,289,115.6,alpha,lower,-0.10792064666748048 +karman_re400,ppo,290,116.0,alpha,front,0.774946391582489 +karman_re400,ppo,290,116.0,alpha,upper,-5.1729254722595215 +karman_re400,ppo,290,116.0,alpha,lower,-0.6436061859130859 +karman_re400,ppo,291,116.4,alpha,front,0.809278130531311 +karman_re400,ppo,291,116.4,alpha,upper,-4.809730529785156 +karman_re400,ppo,291,116.4,alpha,lower,-0.6555566787719727 +karman_re400,ppo,292,116.8,alpha,front,0.6699995994567871 +karman_re400,ppo,292,116.8,alpha,upper,-4.14142644405365 +karman_re400,ppo,292,116.8,alpha,lower,0.08404660224914551 +karman_re400,ppo,293,117.2,alpha,front,0.3475940227508545 +karman_re400,ppo,293,117.2,alpha,upper,-3.4398968815803532 +karman_re400,ppo,293,117.2,alpha,lower,1.175990343093872 +karman_re400,ppo,294,117.6,alpha,front,0.06855931878089905 +karman_re400,ppo,294,117.6,alpha,upper,-2.9753140211105347 +karman_re400,ppo,294,117.6,alpha,lower,2.0104000568389893 +karman_re400,ppo,295,118.0,alpha,front,-0.10166142135858536 +karman_re400,ppo,295,118.0,alpha,upper,-2.4932241439819336 +karman_re400,ppo,295,118.0,alpha,lower,2.7608009576797485 +karman_re400,ppo,296,118.4,alpha,front,-0.2631851136684418 +karman_re400,ppo,296,118.4,alpha,upper,-1.7715644836425781 +karman_re400,ppo,296,118.4,alpha,lower,3.6835089325904846 +karman_re400,ppo,297,118.8,alpha,front,-0.4357467591762543 +karman_re400,ppo,297,118.8,alpha,upper,-0.916771650314331 +karman_re400,ppo,297,118.8,alpha,lower,4.599410653114319 +karman_re400,ppo,298,119.2,alpha,front,-0.5875757932662964 +karman_re400,ppo,298,119.2,alpha,upper,-0.2118091583251953 +karman_re400,ppo,298,119.2,alpha,lower,5.204365491867065 +karman_re400,ppo,299,119.6,alpha,front,-0.6910237073898315 +karman_re400,ppo,299,119.6,alpha,upper,0.08347606658935547 +karman_re400,ppo,299,119.6,alpha,lower,5.355397462844849 +karman_re400,ppo,300,120.0,alpha,front,-0.7181153297424316 +karman_re400,ppo,300,120.0,alpha,upper,-0.13936758041381836 +karman_re400,ppo,300,120.0,alpha,lower,5.1421730518341064 +karman_re400,ppo,301,120.4,alpha,front,-0.6234055161476135 +karman_re400,ppo,301,120.4,alpha,upper,-0.8707127571105958 +karman_re400,ppo,301,120.4,alpha,lower,4.698657274246216 +karman_re400,ppo,302,120.8,alpha,front,-0.3801622688770294 +karman_re400,ppo,302,120.8,alpha,upper,-1.7328555583953855 +karman_re400,ppo,302,120.8,alpha,lower,4.098237752914429 +karman_re400,ppo,303,121.2,alpha,front,-0.11472461372613905 +karman_re400,ppo,303,121.2,alpha,upper,-2.292846441268921 +karman_re400,ppo,303,121.2,alpha,lower,3.5171947479248047 +karman_re400,ppo,304,121.6,alpha,front,0.08426040410995483 +karman_re400,ppo,304,121.6,alpha,upper,-2.795632839202881 +karman_re400,ppo,304,121.6,alpha,lower,2.829233765602112 +karman_re400,ppo,305,122.0,alpha,front,0.2690029740333557 +karman_re400,ppo,305,122.0,alpha,upper,-3.570608496665955 +karman_re400,ppo,305,122.0,alpha,lower,1.8715019226074217 +karman_re400,ppo,306,122.4,alpha,front,0.4673917591571808 +karman_re400,ppo,306,122.4,alpha,upper,-4.43311607837677 +karman_re400,ppo,306,122.4,alpha,lower,0.8367538452148438 +karman_re400,ppo,307,122.8,alpha,front,0.6421780586242676 +karman_re400,ppo,307,122.8,alpha,upper,-5.043502330780029 +karman_re400,ppo,307,122.8,alpha,lower,-0.03441429138183594 +karman_re400,ppo,308,123.2,alpha,front,0.7659530639648438 +karman_re400,ppo,308,123.2,alpha,upper,-5.1877524852752686 +karman_re400,ppo,308,123.2,alpha,lower,-0.6087188720703125 +karman_re400,ppo,309,123.6,alpha,front,0.8119637966156007 +karman_re400,ppo,309,123.6,alpha,upper,-4.8584407567977905 +karman_re400,ppo,309,123.6,alpha,lower,-0.6868371963500977 +karman_re400,ppo,310,124.0,alpha,front,0.6950401663780212 +karman_re400,ppo,310,124.0,alpha,upper,-4.214195489883423 +karman_re400,ppo,310,124.0,alpha,lower,-0.022461891174316406 +karman_re400,ppo,311,124.4,alpha,front,0.3819429874420166 +karman_re400,ppo,311,124.4,alpha,upper,-3.4984794259071355 +karman_re400,ppo,311,124.4,alpha,lower,1.0713610649108887 +karman_re400,ppo,312,124.8,alpha,front,0.08982282131910324 +karman_re400,ppo,312,124.8,alpha,upper,-3.0146694779396057 +karman_re400,ppo,312,124.8,alpha,lower,1.941896915435791 +karman_re400,ppo,313,125.2,alpha,front,-0.08797802776098251 +karman_re400,ppo,313,125.2,alpha,upper,-2.549546718597412 +karman_re400,ppo,313,125.2,alpha,lower,2.686277747154236 +karman_re400,ppo,314,125.6,alpha,front,-0.24723416566848755 +karman_re400,ppo,314,125.6,alpha,upper,-1.849867343902588 +karman_re400,ppo,314,125.6,alpha,lower,3.5916972756385808 +karman_re400,ppo,315,126.0,alpha,front,-0.41892948746681213 +karman_re400,ppo,315,126.0,alpha,upper,-0.9957742691040039 +karman_re400,ppo,315,126.0,alpha,lower,4.518468379974365 +karman_re400,ppo,316,126.4,alpha,front,-0.5736061334609985 +karman_re400,ppo,316,126.4,alpha,upper,-0.2635538578033447 +karman_re400,ppo,316,126.4,alpha,lower,5.162023544311523 +karman_re400,ppo,317,126.8,alpha,front,-0.6839408874511719 +karman_re400,ppo,317,126.8,alpha,upper,0.07543468475341797 +karman_re400,ppo,317,126.8,alpha,lower,5.3585364818573 +karman_re400,ppo,318,127.2,alpha,front,-0.7203400731086731 +karman_re400,ppo,318,127.2,alpha,upper,-0.09926939010620117 +karman_re400,ppo,318,127.2,alpha,lower,5.173967361450195 +karman_re400,ppo,319,127.6,alpha,front,-0.6394267678260803 +karman_re400,ppo,319,127.6,alpha,upper,-0.7904677391052246 +karman_re400,ppo,319,127.6,alpha,lower,4.751802563667297 +karman_re400,ppo,320,128.0,alpha,front,-0.4063201546669007 +karman_re400,ppo,320,128.0,alpha,upper,-1.6591768264770508 +karman_re400,ppo,320,128.0,alpha,lower,4.157625079154968 +karman_re400,ppo,321,128.4,alpha,front,-0.13585549592971802 +karman_re400,ppo,321,128.4,alpha,upper,-2.238996386528015 +karman_re400,ppo,321,128.4,alpha,lower,3.574794054031372 +karman_re400,ppo,322,128.8,alpha,front,0.06760836392641068 +karman_re400,ppo,322,128.8,alpha,upper,-2.7270742654800415 +karman_re400,ppo,322,128.8,alpha,lower,2.9092925786972046 +karman_re400,ppo,323,129.2,alpha,front,0.2494249939918518 +karman_re400,ppo,323,129.2,alpha,upper,-3.4853219389915466 +karman_re400,ppo,323,129.2,alpha,lower,1.9741034507751467 +karman_re400,ppo,324,129.6,alpha,front,0.4470546543598175 +karman_re400,ppo,324,129.6,alpha,upper,-4.360976934432983 +karman_re400,ppo,324,129.6,alpha,lower,0.9339399337768555 +karman_re400,ppo,325,130.0,alpha,front,0.6264133453369141 +karman_re400,ppo,325,130.0,alpha,upper,-5.004923105239868 +karman_re400,ppo,325,130.0,alpha,lower,0.04008674621582031 +karman_re400,ppo,326,130.4,alpha,front,0.7572338581085205 +karman_re400,ppo,326,130.4,alpha,upper,-5.195889711380005 +karman_re400,ppo,326,130.4,alpha,lower,-0.5720071792602539 +karman_re400,ppo,327,130.8,alpha,front,0.8132057785987854 +karman_re400,ppo,327,130.8,alpha,upper,-4.905943751335144 +karman_re400,ppo,327,130.8,alpha,lower,-0.7120246887207031 +karman_re400,ppo,328,131.2,alpha,front,0.7171141505241394 +karman_re400,ppo,328,131.2,alpha,upper,-4.288475513458252 +karman_re400,ppo,328,131.2,alpha,lower,-0.12095546722412108 +karman_re400,ppo,329,131.6,alpha,front,0.41502073407173157 +karman_re400,ppo,329,131.6,alpha,upper,-3.5603154301643376 +karman_re400,ppo,329,131.6,alpha,lower,0.9726901054382324 +karman_re400,ppo,330,132.0,alpha,front,0.11094087362289429 +karman_re400,ppo,330,132.0,alpha,upper,-3.05448454618454 +karman_re400,ppo,330,132.0,alpha,lower,1.87493896484375 +karman_re400,ppo,331,132.4,alpha,front,-0.07428350299596786 +karman_re400,ppo,331,132.4,alpha,upper,-2.6028283834457397 +karman_re400,ppo,331,132.4,alpha,lower,2.61026930809021 +karman_re400,ppo,332,132.8,alpha,front,-0.23112058639526367 +karman_re400,ppo,332,132.8,alpha,upper,-1.9269909858703613 +karman_re400,ppo,332,132.8,alpha,lower,3.494903564453125 +karman_re400,ppo,333,133.2,alpha,front,-0.4022305607795715 +karman_re400,ppo,333,133.2,alpha,upper,-1.0797233581542969 +karman_re400,ppo,333,133.2,alpha,lower,4.43281888961792 +karman_re400,ppo,334,133.6,alpha,front,-0.5606141090393066 +karman_re400,ppo,334,133.6,alpha,upper,-0.32326626777648926 +karman_re400,ppo,334,133.6,alpha,lower,5.1168129444122314 +karman_re400,ppo,335,134.0,alpha,front,-0.6774992942810059 +karman_re400,ppo,335,134.0,alpha,upper,0.060171127319335944 +karman_re400,ppo,335,134.0,alpha,lower,5.360084772109985 +karman_re400,ppo,336,134.4,alpha,front,-0.722206711769104 +karman_re400,ppo,336,134.4,alpha,upper,-0.06072282791137695 +karman_re400,ppo,336,134.4,alpha,lower,5.20412015914917 +karman_re400,ppo,337,134.8,alpha,front,-0.655071496963501 +karman_re400,ppo,337,134.8,alpha,upper,-0.7015912532806396 +karman_re400,ppo,337,134.8,alpha,lower,4.802778363227844 +karman_re400,ppo,338,135.2,alpha,front,-0.43323543667793274 +karman_re400,ppo,338,135.2,alpha,upper,-1.5751399993896484 +karman_re400,ppo,338,135.2,alpha,lower,4.216622471809387 +karman_re400,ppo,339,135.6,alpha,front,-0.160419762134552 +karman_re400,ppo,339,135.6,alpha,upper,-2.189328670501709 +karman_re400,ppo,339,135.6,alpha,lower,3.6311212778091435 +karman_re400,ppo,340,136.0,alpha,front,0.04843359440565109 +karman_re400,ppo,340,136.0,alpha,upper,-2.674635648727417 +karman_re400,ppo,340,136.0,alpha,lower,2.9850836992263794 +karman_re400,ppo,341,136.4,alpha,front,0.229117214679718 +karman_re400,ppo,341,136.4,alpha,upper,-3.407516360282898 +karman_re400,ppo,341,136.4,alpha,lower,2.0751579999923706 +karman_re400,ppo,342,136.8,alpha,front,0.42726430296897894 +karman_re400,ppo,342,136.8,alpha,upper,-4.283736824989319 +karman_re400,ppo,342,136.8,alpha,lower,1.0315680503845215 +karman_re400,ppo,343,137.2,alpha,front,0.6111873984336853 +karman_re400,ppo,343,137.2,alpha,upper,-4.9573469161987305 +karman_re400,ppo,343,137.2,alpha,lower,0.1160740852355957 +karman_re400,ppo,344,137.6,alpha,front,0.747606635093689 +karman_re400,ppo,344,137.6,alpha,upper,-5.1987762451171875 +karman_re400,ppo,344,137.6,alpha,lower,-0.5300540924072266 +karman_re400,ppo,345,138.0,alpha,front,0.8121290206909181 +karman_re400,ppo,345,138.0,alpha,upper,-4.952170133590698 +karman_re400,ppo,345,138.0,alpha,lower,-0.7263956069946289 +karman_re400,ppo,346,138.4,alpha,front,0.7359038591384888 +karman_re400,ppo,346,138.4,alpha,upper,-4.361690878868103 +karman_re400,ppo,346,138.4,alpha,lower,-0.20871067047119143 +karman_re400,ppo,347,138.8,alpha,front,0.4482100009918213 +karman_re400,ppo,347,138.8,alpha,upper,-3.6249707341194153 +karman_re400,ppo,347,138.8,alpha,lower,0.869854211807251 +karman_re400,ppo,348,139.2,alpha,front,0.1350170373916626 +karman_re400,ppo,348,139.2,alpha,upper,-3.0950350165367126 +karman_re400,ppo,348,139.2,alpha,lower,1.7997698783874514 +karman_re400,ppo,349,139.6,alpha,front,-0.0582517609000206 +karman_re400,ppo,349,139.6,alpha,upper,-2.6554352045059204 +karman_re400,ppo,349,139.6,alpha,lower,2.529862403869629 +karman_re400,ppo,350,140.0,alpha,front,-0.21398958563804626 +karman_re400,ppo,350,140.0,alpha,upper,-2.004926919937134 +karman_re400,ppo,350,140.0,alpha,lower,3.3979033827781673 +karman_re400,ppo,351,140.4,alpha,front,-0.38598567247390747 +karman_re400,ppo,351,140.4,alpha,upper,-1.1660830974578857 +karman_re400,ppo,351,140.4,alpha,lower,4.347724556922913 +karman_re400,ppo,352,140.8,alpha,front,-0.5469655394554138 +karman_re400,ppo,352,140.8,alpha,upper,-0.3864431381225586 +karman_re400,ppo,352,140.8,alpha,lower,5.069943428039551 +karman_re400,ppo,353,141.2,alpha,front,-0.6689323782920837 +karman_re400,ppo,353,141.2,alpha,upper,0.04446220397949219 +karman_re400,ppo,353,141.2,alpha,lower,5.358018159866333 +karman_re400,ppo,354,141.6,alpha,front,-0.7207598090171814 +karman_re400,ppo,354,141.6,alpha,upper,-0.020992517471313477 +karman_re400,ppo,354,141.6,alpha,lower,5.231077671051025 +karman_re400,ppo,355,142.0,alpha,front,-0.6681625247001648 +karman_re400,ppo,355,142.0,alpha,upper,-0.6138434410095215 +karman_re400,ppo,355,142.0,alpha,lower,4.852023959159851 +karman_re400,ppo,356,142.4,alpha,front,-0.46074423193931585 +karman_re400,ppo,356,142.4,alpha,upper,-1.4943065643310547 +karman_re400,ppo,356,142.4,alpha,lower,4.277974963188171 +karman_re400,ppo,357,142.8,alpha,front,-0.18662577867507935 +karman_re400,ppo,357,142.8,alpha,upper,-2.1502788066864014 +karman_re400,ppo,357,142.8,alpha,lower,3.6861885786056523 +karman_re400,ppo,358,143.2,alpha,front,0.029694229364395138 +karman_re400,ppo,358,143.2,alpha,upper,-2.627821445465088 +karman_re400,ppo,358,143.2,alpha,lower,3.057792842388153 +karman_re400,ppo,359,143.6,alpha,front,0.2110658586025238 +karman_re400,ppo,359,143.6,alpha,upper,-3.3249418735504155 +karman_re400,ppo,359,143.6,alpha,lower,2.1745147705078125 +karman_re400,ppo,360,144.0,alpha,front,0.40891817212104803 +karman_re400,ppo,360,144.0,alpha,upper,-4.197821021080017 +karman_re400,ppo,360,144.0,alpha,lower,1.1304714679718018 +karman_re400,ppo,361,144.4,alpha,front,0.5956572890281677 +karman_re400,ppo,361,144.4,alpha,upper,-4.90476667881012 +karman_re400,ppo,361,144.4,alpha,lower,0.19531750679016116 +karman_re400,ppo,362,144.8,alpha,front,0.736800491809845 +karman_re400,ppo,362,144.8,alpha,upper,-5.198360443115234 +karman_re400,ppo,362,144.8,alpha,lower,-0.48194932937622076 +karman_re400,ppo,363,145.2,alpha,front,0.8094966411590576 +karman_re400,ppo,363,145.2,alpha,upper,-4.9945902824401855 +karman_re400,ppo,363,145.2,alpha,lower,-0.7320022583007812 +karman_re400,ppo,364,145.6,alpha,front,0.7527141571044922 +karman_re400,ppo,364,145.6,alpha,upper,-4.430128574371338 +karman_re400,ppo,364,145.6,alpha,lower,-0.29215526580810547 +karman_re400,ppo,365,146.0,alpha,front,0.48229655623435974 +karman_re400,ppo,365,146.0,alpha,upper,-3.690032660961151 +karman_re400,ppo,365,146.0,alpha,lower,0.7600088119506836 +karman_re400,ppo,366,146.4,alpha,front,0.1615295708179474 +karman_re400,ppo,366,146.4,alpha,upper,-3.136949777603149 +karman_re400,ppo,366,146.4,alpha,lower,1.7186169624328613 +karman_re400,ppo,367,146.8,alpha,front,-0.04192238301038742 +karman_re400,ppo,367,146.8,alpha,upper,-2.705573558807373 +karman_re400,ppo,367,146.8,alpha,lower,2.4537758827209473 +karman_re400,ppo,368,147.2,alpha,front,-0.19771906733512876 +karman_re400,ppo,368,147.2,alpha,upper,-2.0808839797973633 +karman_re400,ppo,368,147.2,alpha,lower,3.306401014328003 +karman_re400,ppo,369,147.6,alpha,front,-0.3692007064819336 +karman_re400,ppo,369,147.6,alpha,upper,-1.2509407997131348 +karman_re400,ppo,369,147.6,alpha,lower,4.2626365423202515 +karman_re400,ppo,370,148.0,alpha,front,-0.5320714116096497 +karman_re400,ppo,370,148.0,alpha,upper,-0.44941020011901855 +karman_re400,ppo,370,148.0,alpha,lower,5.017804861068726 +karman_re400,ppo,371,148.4,alpha,front,-0.6586512923240662 +karman_re400,ppo,371,148.4,alpha,upper,0.026128768920898438 +karman_re400,ppo,371,148.4,alpha,lower,5.3499932289123535 +karman_re400,ppo,372,148.8,alpha,front,-0.718591570854187 +karman_re400,ppo,372,148.8,alpha,upper,0.012269973754882812 +karman_re400,ppo,372,148.8,alpha,lower,5.256805419921875 +karman_re400,ppo,373,149.2,alpha,front,-0.6799166798591614 +karman_re400,ppo,373,149.2,alpha,upper,-0.5372436046600342 +karman_re400,ppo,373,149.2,alpha,lower,4.89894711971283 +karman_re400,ppo,374,149.6,alpha,front,-0.48712471127510065 +karman_re400,ppo,374,149.6,alpha,upper,-1.4191570281982422 +karman_re400,ppo,374,149.6,alpha,lower,4.338030457496643 +karman_re400,ppo,375,150.0,alpha,front,-0.21152883768081665 +karman_re400,ppo,375,150.0,alpha,upper,-2.1063385009765625 +karman_re400,ppo,375,150.0,alpha,lower,3.7415443062782283 +karman_re400,ppo,376,150.4,alpha,front,0.012687630951404572 +karman_re400,ppo,376,150.4,alpha,upper,-2.572390556335449 +karman_re400,ppo,376,150.4,alpha,lower,3.1291280984878536 +karman_re400,ppo,377,150.8,alpha,front,0.19409239292144775 +karman_re400,ppo,377,150.8,alpha,upper,-3.237309098243713 +karman_re400,ppo,377,150.8,alpha,lower,2.2728055715560913 +karman_re400,ppo,378,151.2,alpha,front,0.3898560702800751 +karman_re400,ppo,378,151.2,alpha,upper,-4.111107110977173 +karman_re400,ppo,378,151.2,alpha,lower,1.2314672470092773 +karman_re400,ppo,379,151.6,alpha,front,0.5790674686431885 +karman_re400,ppo,379,151.6,alpha,upper,-4.851972818374634 +karman_re400,ppo,379,151.6,alpha,lower,0.27838611602783203 +karman_re400,ppo,380,152.0,alpha,front,0.7251791954040527 +karman_re400,ppo,380,152.0,alpha,upper,-5.194104909896851 +karman_re400,ppo,380,152.0,alpha,lower,-0.43006992340087885 +karman_re400,ppo,381,152.4,alpha,front,0.8065903782844543 +karman_re400,ppo,381,152.4,alpha,upper,-5.0324485301971436 +karman_re400,ppo,381,152.4,alpha,lower,-0.7339720726013184 +karman_re400,ppo,382,152.8,alpha,front,0.7683113217353821 +karman_re400,ppo,382,152.8,alpha,upper,-4.496022582054138 +karman_re400,ppo,382,152.8,alpha,lower,-0.37329721450805664 +karman_re400,ppo,383,153.2,alpha,front,0.5163065791130066 +karman_re400,ppo,383,153.2,alpha,upper,-3.759150505065918 +karman_re400,ppo,383,153.2,alpha,lower,0.6461634635925293 +karman_re400,ppo,384,153.6,alpha,front,0.18857453763484955 +karman_re400,ppo,384,153.6,alpha,upper,-3.180306196212768 +karman_re400,ppo,384,153.6,alpha,lower,1.639030933380127 +karman_re400,ppo,385,154.0,alpha,front,-0.026707395911216732 +karman_re400,ppo,385,154.0,alpha,upper,-2.7526283264160156 +karman_re400,ppo,385,154.0,alpha,lower,2.3845118284225464 +karman_re400,ppo,386,154.4,alpha,front,-0.182588130235672 +karman_re400,ppo,386,154.4,alpha,upper,-2.152017593383789 +karman_re400,ppo,386,154.4,alpha,lower,3.217864155769348 +karman_re400,ppo,387,154.8,alpha,front,-0.3519785702228546 +karman_re400,ppo,387,154.8,alpha,upper,-1.33406400680542 +karman_re400,ppo,387,154.8,alpha,lower,4.1730756759643555 +karman_re400,ppo,388,155.2,alpha,front,-0.5167780518531799 +karman_re400,ppo,388,155.2,alpha,upper,-0.5157270431518555 +karman_re400,ppo,388,155.2,alpha,lower,4.958855867385864 +karman_re400,ppo,389,155.6,alpha,front,-0.6485568881034851 +karman_re400,ppo,389,155.6,alpha,upper,-0.000244140625 +karman_re400,ppo,389,155.6,alpha,lower,5.3368940353393555 +karman_re400,ppo,390,156.0,alpha,front,-0.7166059613227844 +karman_re400,ppo,390,156.0,alpha,upper,0.03333091735839844 +karman_re400,ppo,390,156.0,alpha,lower,5.279211521148682 +karman_re400,ppo,391,156.4,alpha,front,-0.6904444694519043 +karman_re400,ppo,391,156.4,alpha,upper,-0.4676206111907959 +karman_re400,ppo,391,156.4,alpha,lower,4.943506240844727 +karman_re400,ppo,392,156.8,alpha,front,-0.5106676816940308 +karman_re400,ppo,392,156.8,alpha,upper,-1.3357696533203125 +karman_re400,ppo,392,156.8,alpha,lower,4.398138523101807 +karman_re400,ppo,393,157.2,alpha,front,-0.23598769307136536 +karman_re400,ppo,393,157.2,alpha,upper,-2.048391819000244 +karman_re400,ppo,393,157.2,alpha,lower,3.798494160175324 +karman_re400,ppo,394,157.6,alpha,front,-0.005222313106060028 +karman_re400,ppo,394,157.6,alpha,upper,-2.5162590742111206 +karman_re400,ppo,394,157.6,alpha,lower,3.197524905204773 +karman_re400,ppo,395,158.0,alpha,front,0.1760086864233017 +karman_re400,ppo,395,158.0,alpha,upper,-3.1573901176452637 +karman_re400,ppo,395,158.0,alpha,lower,2.368806838989258 +karman_re400,ppo,396,158.4,alpha,front,0.3692566156387329 +karman_re400,ppo,396,158.4,alpha,upper,-4.0296454429626465 +karman_re400,ppo,396,158.4,alpha,lower,1.333545207977295 +karman_re400,ppo,397,158.8,alpha,front,0.5610077977180481 +karman_re400,ppo,397,158.8,alpha,upper,-4.796759009361267 +karman_re400,ppo,397,158.8,alpha,lower,0.36295604705810547 +karman_re400,ppo,398,159.2,alpha,front,0.713365375995636 +karman_re400,ppo,398,159.2,alpha,upper,-5.183176040649414 +karman_re400,ppo,398,159.2,alpha,lower,-0.3760867118835449 +karman_re400,ppo,399,159.6,alpha,front,0.8028739094734193 +karman_re400,ppo,399,159.6,alpha,upper,-5.066510915756226 +karman_re400,ppo,399,159.6,alpha,lower,-0.7301626205444336 +karman_re400,ppo,0,0.0,omega,front,0.009655619263648987 +karman_re400,ppo,0,0.0,omega,upper,-0.04651355385780335 +karman_re400,ppo,0,0.0,omega,lower,-0.006110382080078125 +karman_re400,ppo,1,0.4,omega,front,0.01176206111907959 +karman_re400,ppo,1,0.4,omega,upper,-0.04753711223602295 +karman_re400,ppo,1,0.4,omega,lower,-0.010310888290405273 +karman_re400,ppo,2,0.8,omega,front,0.011813822984695434 +karman_re400,ppo,2,0.8,omega,upper,-0.043282352685928345 +karman_re400,ppo,2,0.8,omega,lower,-0.013347029685974121 +karman_re400,ppo,3,1.2,omega,front,0.013372193574905395 +karman_re400,ppo,3,1.2,omega,upper,-0.03898645222187042 +karman_re400,ppo,3,1.2,omega,lower,-0.014215474128723146 +karman_re400,ppo,4,1.6,omega,front,0.010604550838470459 +karman_re400,ppo,4,1.6,omega,upper,-0.025776358842849734 +karman_re400,ppo,4,1.6,omega,lower,0.00538172721862793 +karman_re400,ppo,5,2.0,omega,front,0.005198087692260742 +karman_re400,ppo,5,2.0,omega,upper,-0.017491834163665773 +karman_re400,ppo,5,2.0,omega,lower,0.02285651206970215 +karman_re400,ppo,6,2.4,omega,front,0.0018802697956562043 +karman_re400,ppo,6,2.4,omega,upper,-0.014770963191986085 +karman_re400,ppo,6,2.4,omega,lower,0.03138828873634338 +karman_re400,ppo,7,2.8,omega,front,-0.0005953999608755111 +karman_re400,ppo,7,2.8,omega,upper,-0.011790690422058105 +karman_re400,ppo,7,2.8,omega,lower,0.0385655003786087 +karman_re400,ppo,8,3.2,omega,front,-0.0028509023785591127 +karman_re400,ppo,8,3.2,omega,upper,-0.008041861057281495 +karman_re400,ppo,8,3.2,omega,lower,0.04556513071060181 +karman_re400,ppo,9,3.6,omega,front,-0.00473181813955307 +karman_re400,ppo,9,3.6,omega,upper,-0.005756008625030518 +karman_re400,ppo,9,3.6,omega,lower,0.04944220542907715 +karman_re400,ppo,10,4.0,omega,front,-0.005874704718589783 +karman_re400,ppo,10,4.0,omega,upper,-0.005341229438781739 +karman_re400,ppo,10,4.0,omega,lower,0.05000343799591064 +karman_re400,ppo,11,4.4,omega,front,-0.006132676005363464 +karman_re400,ppo,11,4.4,omega,upper,-0.007245869636535645 +karman_re400,ppo,11,4.4,omega,lower,0.0482179594039917 +karman_re400,ppo,12,4.8,omega,front,-0.0053644198179244994 +karman_re400,ppo,12,4.8,omega,upper,-0.011668994426727294 +karman_re400,ppo,12,4.8,omega,lower,0.044048453569412234 +karman_re400,ppo,13,5.2,omega,front,-0.003511675000190735 +karman_re400,ppo,13,5.2,omega,upper,-0.017743186950683595 +karman_re400,ppo,13,5.2,omega,lower,0.03767865180969238 +karman_re400,ppo,14,5.6,omega,front,-0.0009175891429185867 +karman_re400,ppo,14,5.6,omega,upper,-0.0244411563873291 +karman_re400,ppo,14,5.6,omega,lower,0.02991872191429138 +karman_re400,ppo,15,6.0,omega,front,0.002067190706729889 +karman_re400,ppo,15,6.0,omega,upper,-0.031952569484710695 +karman_re400,ppo,15,6.0,omega,lower,0.020891005992889403 +karman_re400,ppo,16,6.4,omega,front,0.005006052851676941 +karman_re400,ppo,16,6.4,omega,upper,-0.04012594103813171 +karman_re400,ppo,16,6.4,omega,lower,0.011239395141601563 +karman_re400,ppo,17,6.8,omega,front,0.007447426915168762 +karman_re400,ppo,17,6.8,omega,upper,-0.04726958990097046 +karman_re400,ppo,17,6.8,omega,lower,0.002239577770233154 +karman_re400,ppo,18,7.2,omega,front,0.009215883016586305 +karman_re400,ppo,18,7.2,omega,upper,-0.05133645534515381 +karman_re400,ppo,18,7.2,omega,lower,-0.005022721290588379 +karman_re400,ppo,19,7.6,omega,front,0.010428462028503418 +karman_re400,ppo,19,7.6,omega,upper,-0.05052646160125732 +karman_re400,ppo,19,7.6,omega,lower,-0.008895750045776368 +karman_re400,ppo,20,8.0,omega,front,0.010562453269958496 +karman_re400,ppo,20,8.0,omega,upper,-0.04569212555885315 +karman_re400,ppo,20,8.0,omega,lower,-0.006236686706542969 +karman_re400,ppo,21,8.4,omega,front,0.008542749285697938 +karman_re400,ppo,21,8.4,omega,upper,-0.03846958458423615 +karman_re400,ppo,21,8.4,omega,lower,0.0031005024909973146 +karman_re400,ppo,22,8.8,omega,front,0.005203670859336853 +karman_re400,ppo,22,8.8,omega,upper,-0.032128103971481324 +karman_re400,ppo,22,8.8,omega,lower,0.013025312423706055 +karman_re400,ppo,23,9.2,omega,front,0.0019354751706123353 +karman_re400,ppo,23,9.2,omega,upper,-0.0267742395401001 +karman_re400,ppo,23,9.2,omega,lower,0.021392476558685303 +karman_re400,ppo,24,9.6,omega,front,-0.0009411347657442093 +karman_re400,ppo,24,9.6,omega,upper,-0.020845608711242677 +karman_re400,ppo,24,9.6,omega,lower,0.03035325288772583 +karman_re400,ppo,25,10.0,omega,front,-0.0033651387691497805 +karman_re400,ppo,25,10.0,omega,upper,-0.014026408195495606 +karman_re400,ppo,25,10.0,omega,lower,0.04001380562782288 +karman_re400,ppo,26,10.4,omega,front,-0.005152559280395508 +karman_re400,ppo,26,10.4,omega,upper,-0.006971092224121094 +karman_re400,ppo,26,10.4,omega,lower,0.04822193741798401 +karman_re400,ppo,27,10.8,omega,front,-0.006438252329826355 +karman_re400,ppo,27,10.8,omega,upper,-0.001836392879486084 +karman_re400,ppo,27,10.8,omega,lower,0.052789723873138426 +karman_re400,ppo,28,11.2,omega,front,-0.007121512889862061 +karman_re400,ppo,28,11.2,omega,upper,-0.000607912540435791 +karman_re400,ppo,28,11.2,omega,lower,0.05303975582122803 +karman_re400,ppo,29,11.6,omega,front,-0.006996230483055115 +karman_re400,ppo,29,11.6,omega,upper,-0.004396555423736573 +karman_re400,ppo,29,11.6,omega,lower,0.05013686895370484 +karman_re400,ppo,30,12.0,omega,front,-0.005468104481697083 +karman_re400,ppo,30,12.0,omega,upper,-0.012322587966918945 +karman_re400,ppo,30,12.0,omega,lower,0.04478584766387939 +karman_re400,ppo,31,12.4,omega,front,-0.0026857054233551027 +karman_re400,ppo,31,12.4,omega,upper,-0.020156791210174562 +karman_re400,ppo,31,12.4,omega,lower,0.03834543168544769 +karman_re400,ppo,32,12.8,omega,front,4.045754671096802e-05 +karman_re400,ppo,32,12.8,omega,upper,-0.025678893327713014 +karman_re400,ppo,32,12.8,omega,lower,0.031965446472167966 +karman_re400,ppo,33,13.2,omega,front,0.002392915785312653 +karman_re400,ppo,33,13.2,omega,upper,-0.03184904873371124 +karman_re400,ppo,33,13.2,omega,lower,0.023827089071273806 +karman_re400,ppo,34,13.6,omega,front,0.00459449589252472 +karman_re400,ppo,34,13.6,omega,upper,-0.03984115958213806 +karman_re400,ppo,34,13.6,omega,lower,0.013757355213165283 +karman_re400,ppo,35,14.0,omega,front,0.006382611393928528 +karman_re400,ppo,35,14.0,omega,upper,-0.04742764592170715 +karman_re400,ppo,35,14.0,omega,lower,0.004015023708343506 +karman_re400,ppo,36,14.4,omega,front,0.007749878168106079 +karman_re400,ppo,36,14.4,omega,upper,-0.05178661108016968 +karman_re400,ppo,36,14.4,omega,lower,-0.003842754364013672 +karman_re400,ppo,37,14.8,omega,front,0.008698590993881226 +karman_re400,ppo,37,14.8,omega,upper,-0.0510424542427063 +karman_re400,ppo,37,14.8,omega,lower,-0.008088855743408204 +karman_re400,ppo,38,15.2,omega,front,0.008606464266777039 +karman_re400,ppo,38,15.2,omega,upper,-0.04607102751731872 +karman_re400,ppo,38,15.2,omega,lower,-0.005709781646728516 +karman_re400,ppo,39,15.6,omega,front,0.006310223340988159 +karman_re400,ppo,39,15.6,omega,upper,-0.038640722036361694 +karman_re400,ppo,39,15.6,omega,lower,0.004205982685089112 +karman_re400,ppo,40,16.0,omega,front,0.0028943005204200745 +karman_re400,ppo,40,16.0,omega,upper,-0.03245747685432434 +karman_re400,ppo,40,16.0,omega,lower,0.01472287654876709 +karman_re400,ppo,41,16.4,omega,front,0.0005371788144111633 +karman_re400,ppo,41,16.4,omega,upper,-0.02822873830795288 +karman_re400,ppo,41,16.4,omega,lower,0.022407766580581665 +karman_re400,ppo,42,16.8,omega,front,-0.0009575936943292618 +karman_re400,ppo,42,16.8,omega,upper,-0.022719361782073975 +karman_re400,ppo,42,16.8,omega,lower,0.030284852981567384 +karman_re400,ppo,43,17.2,omega,front,-0.0026427444815635684 +karman_re400,ppo,43,17.2,omega,upper,-0.014846811294555664 +karman_re400,ppo,43,17.2,omega,lower,0.03970092058181763 +karman_re400,ppo,44,17.6,omega,front,-0.004373330175876618 +karman_re400,ppo,44,17.6,omega,upper,-0.006631960868835449 +karman_re400,ppo,44,17.6,omega,lower,0.04800948739051819 +karman_re400,ppo,45,18.0,omega,front,-0.005800138115882873 +karman_re400,ppo,45,18.0,omega,upper,-0.0010108304023742677 +karman_re400,ppo,45,18.0,omega,lower,0.052604711055755614 +karman_re400,ppo,46,18.4,omega,front,-0.006597523093223572 +karman_re400,ppo,46,18.4,omega,upper,3.4074783325195316e-05 +karman_re400,ppo,46,18.4,omega,lower,0.05272880554199219 +karman_re400,ppo,47,18.8,omega,front,-0.006482433676719666 +karman_re400,ppo,47,18.8,omega,upper,-0.003943901062011719 +karman_re400,ppo,47,18.8,omega,lower,0.04976940155029297 +karman_re400,ppo,48,19.2,omega,front,-0.004965402781963348 +karman_re400,ppo,48,19.2,omega,upper,-0.011915812492370606 +karman_re400,ppo,48,19.2,omega,lower,0.04466928482055664 +karman_re400,ppo,49,19.6,omega,front,-0.002345893085002899 +karman_re400,ppo,49,19.6,omega,upper,-0.019478855133056642 +karman_re400,ppo,49,19.6,omega,lower,0.03856302857398987 +karman_re400,ppo,50,20.0,omega,front,-7.524810731410981e-05 +karman_re400,ppo,50,20.0,omega,upper,-0.024613550901412963 +karman_re400,ppo,50,20.0,omega,lower,0.03256927609443665 +karman_re400,ppo,51,20.4,omega,front,0.001663833260536194 +karman_re400,ppo,51,20.4,omega,upper,-0.030903673768043517 +karman_re400,ppo,51,20.4,omega,lower,0.024686248302459718 +karman_re400,ppo,52,20.8,omega,front,0.003510113060474396 +karman_re400,ppo,52,20.8,omega,upper,-0.03943041801452637 +karman_re400,ppo,52,20.8,omega,lower,0.0145786190032959 +karman_re400,ppo,53,21.2,omega,front,0.00544316291809082 +karman_re400,ppo,53,21.2,omega,upper,-0.0472287118434906 +karman_re400,ppo,53,21.2,omega,lower,0.004682118892669678 +karman_re400,ppo,54,21.6,omega,front,0.0070316106081008915 +karman_re400,ppo,54,21.6,omega,upper,-0.051562232971191405 +karman_re400,ppo,54,21.6,omega,lower,-0.0031320858001708985 +karman_re400,ppo,55,22.0,omega,front,0.008015545010566711 +karman_re400,ppo,55,22.0,omega,upper,-0.051070356369018556 +karman_re400,ppo,55,22.0,omega,lower,-0.007329049110412598 +karman_re400,ppo,56,22.4,omega,front,0.007982106804847717 +karman_re400,ppo,56,22.4,omega,upper,-0.04659562349319458 +karman_re400,ppo,56,22.4,omega,lower,-0.005446496009826661 +karman_re400,ppo,57,22.8,omega,front,0.0059295397996902465 +karman_re400,ppo,57,22.8,omega,upper,-0.039542837142944334 +karman_re400,ppo,57,22.8,omega,lower,0.0038043212890625 +karman_re400,ppo,58,23.2,omega,front,0.002574254274368286 +karman_re400,ppo,58,23.2,omega,upper,-0.03319401979446411 +karman_re400,ppo,58,23.2,omega,lower,0.014349637031555175 +karman_re400,ppo,59,23.6,omega,front,0.00015494227409362793 +karman_re400,ppo,59,23.6,omega,upper,-0.028873940706253053 +karman_re400,ppo,59,23.6,omega,lower,0.022002146244049073 +karman_re400,ppo,60,24.0,omega,front,-0.001402827799320221 +karman_re400,ppo,60,24.0,omega,upper,-0.02344076633453369 +karman_re400,ppo,60,24.0,omega,lower,0.02977991819381714 +karman_re400,ppo,61,24.4,omega,front,-0.0030990779399871827 +karman_re400,ppo,61,24.4,omega,upper,-0.015611004829406739 +karman_re400,ppo,61,24.4,omega,lower,0.03934106707572937 +karman_re400,ppo,62,24.8,omega,front,-0.00484787255525589 +karman_re400,ppo,62,24.8,omega,upper,-0.007113683223724365 +karman_re400,ppo,62,24.8,omega,lower,0.04802701234817505 +karman_re400,ppo,63,25.2,omega,front,-0.006332935690879822 +karman_re400,ppo,63,25.2,omega,upper,-0.0009904861450195312 +karman_re400,ppo,63,25.2,omega,lower,0.05300652742385864 +karman_re400,ppo,64,25.6,omega,front,-0.007191061973571777 +karman_re400,ppo,64,25.6,omega,upper,0.0006978654861450195 +karman_re400,ppo,64,25.6,omega,lower,0.053322434425354004 +karman_re400,ppo,65,26.0,omega,front,-0.007179409861564637 +karman_re400,ppo,65,26.0,omega,upper,-0.0028603386878967288 +karman_re400,ppo,65,26.0,omega,lower,0.05042388677597046 +karman_re400,ppo,66,26.4,omega,front,-0.005757145881652832 +karman_re400,ppo,66,26.4,omega,upper,-0.01091696262359619 +karman_re400,ppo,66,26.4,omega,lower,0.04533883571624756 +karman_re400,ppo,67,26.8,omega,front,-0.0030971130728721617 +karman_re400,ppo,67,26.8,omega,upper,-0.019029264450073243 +karman_re400,ppo,67,26.8,omega,lower,0.03921332716941833 +karman_re400,ppo,68,27.2,omega,front,-0.0005969854444265366 +karman_re400,ppo,68,27.2,omega,upper,-0.02431311845779419 +karman_re400,ppo,68,27.2,omega,lower,0.03334302842617035 +karman_re400,ppo,69,27.6,omega,front,0.0012756411731243134 +karman_re400,ppo,69,27.6,omega,upper,-0.03013874650001526 +karman_re400,ppo,69,27.6,omega,lower,0.025797588825225832 +karman_re400,ppo,70,28.0,omega,front,0.0031737414002418517 +karman_re400,ppo,70,28.0,omega,upper,-0.03836724400520325 +karman_re400,ppo,70,28.0,omega,lower,0.015777645111083986 +karman_re400,ppo,71,28.4,omega,front,0.005175468325614929 +karman_re400,ppo,71,28.4,omega,upper,-0.04637945294380188 +karman_re400,ppo,71,28.4,omega,lower,0.005684502124786377 +karman_re400,ppo,72,28.8,omega,front,0.006808274388313293 +karman_re400,ppo,72,28.8,omega,upper,-0.05133059978485108 +karman_re400,ppo,72,28.8,omega,lower,-0.0023594951629638673 +karman_re400,ppo,73,29.2,omega,front,0.007866551280021668 +karman_re400,ppo,73,29.2,omega,upper,-0.051446497440338135 +karman_re400,ppo,73,29.2,omega,lower,-0.006998748779296875 +karman_re400,ppo,74,29.6,omega,front,0.007972667813301087 +karman_re400,ppo,74,29.6,omega,upper,-0.047269208431243895 +karman_re400,ppo,74,29.6,omega,lower,-0.005825190544128418 +karman_re400,ppo,75,30.0,omega,front,0.006183461546897888 +karman_re400,ppo,75,30.0,omega,upper,-0.04023306131362915 +karman_re400,ppo,75,30.0,omega,lower,0.0027706265449523927 +karman_re400,ppo,76,30.4,omega,front,0.002867654263973236 +karman_re400,ppo,76,30.4,omega,upper,-0.033600614070892335 +karman_re400,ppo,76,30.4,omega,lower,0.013441481590270997 +karman_re400,ppo,77,30.8,omega,front,0.0003290031850337982 +karman_re400,ppo,77,30.8,omega,upper,-0.029222788810729983 +karman_re400,ppo,77,30.8,omega,lower,0.02124436616897583 +karman_re400,ppo,78,31.2,omega,front,-0.0012856590747833251 +karman_re400,ppo,78,31.2,omega,upper,-0.024042625427246094 +karman_re400,ppo,78,31.2,omega,lower,0.02897244691848755 +karman_re400,ppo,79,31.6,omega,front,-0.0029792022705078126 +karman_re400,ppo,79,31.6,omega,upper,-0.01640708923339844 +karman_re400,ppo,79,31.6,omega,lower,0.03853195607662201 +karman_re400,ppo,80,32.0,omega,front,-0.004725893437862397 +karman_re400,ppo,80,32.0,omega,upper,-0.007822914123535156 +karman_re400,ppo,80,32.0,omega,lower,0.04743385076522827 +karman_re400,ppo,81,32.4,omega,front,-0.006210595369338989 +karman_re400,ppo,81,32.4,omega,upper,-0.0012243390083312988 +karman_re400,ppo,81,32.4,omega,lower,0.05278127193450928 +karman_re400,ppo,82,32.8,omega,front,-0.007113367915153504 +karman_re400,ppo,82,32.8,omega,upper,0.0009775972366333008 +karman_re400,ppo,82,32.8,omega,lower,0.05345710515975952 +karman_re400,ppo,83,33.2,omega,front,-0.007224612832069397 +karman_re400,ppo,83,33.2,omega,upper,-0.0021589207649230957 +karman_re400,ppo,83,33.2,omega,lower,0.050825271606445316 +karman_re400,ppo,84,33.6,omega,front,-0.005997498631477356 +karman_re400,ppo,84,33.6,omega,upper,-0.010202546119689942 +karman_re400,ppo,84,33.6,omega,lower,0.04595916748046875 +karman_re400,ppo,85,34.0,omega,front,-0.0034049227833747864 +karman_re400,ppo,85,34.0,omega,upper,-0.018710408210754394 +karman_re400,ppo,85,34.0,omega,lower,0.039835593700408935 +karman_re400,ppo,86,34.4,omega,front,-0.0008229019492864609 +karman_re400,ppo,86,34.4,omega,upper,-0.023907532691955568 +karman_re400,ppo,86,34.4,omega,lower,0.03404584646224976 +karman_re400,ppo,87,34.8,omega,front,0.0011103091388940812 +karman_re400,ppo,87,34.8,omega,upper,-0.02920569896697998 +karman_re400,ppo,87,34.8,omega,lower,0.026755623817443848 +karman_re400,ppo,88,35.2,omega,front,0.002999395728111267 +karman_re400,ppo,88,35.2,omega,upper,-0.037194297909736634 +karman_re400,ppo,88,35.2,omega,lower,0.016860616207122803 +karman_re400,ppo,89,35.6,omega,front,0.00497291386127472 +karman_re400,ppo,89,35.6,omega,upper,-0.04558925271034241 +karman_re400,ppo,89,35.6,omega,lower,0.006682538986206055 +karman_re400,ppo,90,36.0,omega,front,0.0066248905658721925 +karman_re400,ppo,90,36.0,omega,upper,-0.05104390144348145 +karman_re400,ppo,90,36.0,omega,lower,-0.0015689754486083985 +karman_re400,ppo,91,36.4,omega,front,0.007741839289665223 +karman_re400,ppo,91,36.4,omega,upper,-0.05165130615234375 +karman_re400,ppo,91,36.4,omega,lower,-0.006609106063842774 +karman_re400,ppo,92,36.8,omega,front,0.008006956577301026 +karman_re400,ppo,92,36.8,omega,upper,-0.0477100944519043 +karman_re400,ppo,92,36.8,omega,lower,-0.006236639022827149 +karman_re400,ppo,93,37.2,omega,front,0.006464051008224487 +karman_re400,ppo,93,37.2,omega,upper,-0.04086862087249756 +karman_re400,ppo,93,37.2,omega,lower,0.0015876841545104982 +karman_re400,ppo,94,37.6,omega,front,0.003201650083065033 +karman_re400,ppo,94,37.6,omega,upper,-0.0340694385766983 +karman_re400,ppo,94,37.6,omega,lower,0.01238448143005371 +karman_re400,ppo,95,38.0,omega,front,0.0005041584745049477 +karman_re400,ppo,95,38.0,omega,upper,-0.029512381553649904 +karman_re400,ppo,95,38.0,omega,lower,0.020662225484848022 +karman_re400,ppo,96,38.4,omega,front,-0.00118674136698246 +karman_re400,ppo,96,38.4,omega,upper,-0.02455705761909485 +karman_re400,ppo,96,38.4,omega,lower,0.028350675106048585 +karman_re400,ppo,97,38.8,omega,front,-0.0028292277455329896 +karman_re400,ppo,97,38.8,omega,upper,-0.01710413932800293 +karman_re400,ppo,97,38.8,omega,lower,0.03770593881607056 +karman_re400,ppo,98,39.2,omega,front,-0.004541309773921967 +karman_re400,ppo,98,39.2,omega,upper,-0.00850480079650879 +karman_re400,ppo,98,39.2,omega,lower,0.0466703462600708 +karman_re400,ppo,99,39.6,omega,front,-0.006029574871063232 +karman_re400,ppo,99,39.6,omega,upper,-0.0016297698020935059 +karman_re400,ppo,99,39.6,omega,lower,0.05235430955886841 +karman_re400,ppo,100,40.0,omega,front,-0.007020164728164673 +karman_re400,ppo,100,40.0,omega,upper,0.0009113216400146485 +karman_re400,ppo,100,40.0,omega,lower,0.05350101232528687 +karman_re400,ppo,101,40.4,omega,front,-0.007242903113365173 +karman_re400,ppo,101,40.4,omega,upper,-0.0018331146240234376 +karman_re400,ppo,101,40.4,omega,lower,0.05116207599639893 +karman_re400,ppo,102,40.8,omega,front,-0.006160932779312134 +karman_re400,ppo,102,40.8,omega,upper,-0.009564919471740723 +karman_re400,ppo,102,40.8,omega,lower,0.046533348560333254 +karman_re400,ppo,103,41.2,omega,front,-0.003619457483291626 +karman_re400,ppo,103,41.2,omega,upper,-0.017992033958435058 +karman_re400,ppo,103,41.2,omega,lower,0.040470844507217406 +karman_re400,ppo,104,41.6,omega,front,-0.0009613852947950363 +karman_re400,ppo,104,41.6,omega,upper,-0.02315821886062622 +karman_re400,ppo,104,41.6,omega,lower,0.0346845018863678 +karman_re400,ppo,105,42.0,omega,front,0.0009838023781776428 +karman_re400,ppo,105,42.0,omega,upper,-0.02826784372329712 +karman_re400,ppo,105,42.0,omega,lower,0.027630765438079834 +karman_re400,ppo,106,42.4,omega,front,0.0028145989775657655 +karman_re400,ppo,106,42.4,omega,upper,-0.03631128191947937 +karman_re400,ppo,106,42.4,omega,lower,0.01790258884429932 +karman_re400,ppo,107,42.8,omega,front,0.004770731031894684 +karman_re400,ppo,107,42.8,omega,upper,-0.044989202022552494 +karman_re400,ppo,107,42.8,omega,lower,0.007642252445220947 +karman_re400,ppo,108,43.2,omega,front,0.006488147974014282 +karman_re400,ppo,108,43.2,omega,upper,-0.05078687906265259 +karman_re400,ppo,108,43.2,omega,lower,-0.0008735084533691407 +karman_re400,ppo,109,43.6,omega,front,0.007708625197410584 +karman_re400,ppo,109,43.6,omega,upper,-0.05179171323776245 +karman_re400,ppo,109,43.6,omega,lower,-0.006384630203247071 +karman_re400,ppo,110,44.0,omega,front,0.008088423013687134 +karman_re400,ppo,110,44.0,omega,upper,-0.04818586707115174 +karman_re400,ppo,110,44.0,omega,lower,-0.006690893173217773 +karman_re400,ppo,111,44.4,omega,front,0.006756467819213867 +karman_re400,ppo,111,44.4,omega,upper,-0.04162132024765015 +karman_re400,ppo,111,44.4,omega,lower,0.0004695010185241699 +karman_re400,ppo,112,44.8,omega,front,0.0035397371649742125 +karman_re400,ppo,112,44.8,omega,upper,-0.03460809528827667 +karman_re400,ppo,112,44.8,omega,lower,0.011493685245513917 +karman_re400,ppo,113,45.2,omega,front,0.0006947450339794159 +karman_re400,ppo,113,45.2,omega,upper,-0.029876415729522706 +karman_re400,ppo,113,45.2,omega,lower,0.020088727474212646 +karman_re400,ppo,114,45.6,omega,front,-0.0010413258522748948 +karman_re400,ppo,114,45.6,omega,upper,-0.025060012340545654 +karman_re400,ppo,114,45.6,omega,lower,0.027586143016815185 +karman_re400,ppo,115,46.0,omega,front,-0.00262908011674881 +karman_re400,ppo,115,46.0,omega,upper,-0.017858779430389406 +karman_re400,ppo,115,46.0,omega,lower,0.03666116178035736 +karman_re400,ppo,116,46.4,omega,front,-0.00433720201253891 +karman_re400,ppo,116,46.4,omega,upper,-0.009296891689300537 +karman_re400,ppo,116,46.4,omega,lower,0.045769580602645875 +karman_re400,ppo,117,46.8,omega,front,-0.005874068140983582 +karman_re400,ppo,117,46.8,omega,upper,-0.0022191596031188965 +karman_re400,ppo,117,46.8,omega,lower,0.05192504644393921 +karman_re400,ppo,118,47.2,omega,front,-0.006944041252136231 +karman_re400,ppo,118,47.2,omega,upper,0.0007456302642822266 +karman_re400,ppo,118,47.2,omega,lower,0.053561639785766606 +karman_re400,ppo,119,47.6,omega,front,-0.007251408100128174 +karman_re400,ppo,119,47.6,omega,upper,-0.0014366078376770019 +karman_re400,ppo,119,47.6,omega,lower,0.05150528430938721 +karman_re400,ppo,120,48.0,omega,front,-0.006291401386260986 +karman_re400,ppo,120,48.0,omega,upper,-0.008591275215148925 +karman_re400,ppo,120,48.0,omega,lower,0.04708128213882446 +karman_re400,ppo,121,48.4,omega,front,-0.0038526743650436402 +karman_re400,ppo,121,48.4,omega,upper,-0.017018630504608154 +karman_re400,ppo,121,48.4,omega,lower,0.04109393954277039 +karman_re400,ppo,122,48.8,omega,front,-0.0011846611648797989 +karman_re400,ppo,122,48.8,omega,upper,-0.022578704357147216 +karman_re400,ppo,122,48.8,omega,lower,0.03528809249401093 +karman_re400,ppo,123,49.2,omega,front,0.0007797989994287491 +karman_re400,ppo,123,49.2,omega,upper,-0.02774135708808899 +karman_re400,ppo,123,49.2,omega,lower,0.02845913290977478 +karman_re400,ppo,124,49.6,omega,front,0.002589179277420044 +karman_re400,ppo,124,49.6,omega,upper,-0.035652409195899966 +karman_re400,ppo,124,49.6,omega,lower,0.01894537925720215 +karman_re400,ppo,125,50.0,omega,front,0.004579284489154816 +karman_re400,ppo,125,50.0,omega,upper,-0.04431540250778198 +karman_re400,ppo,125,50.0,omega,lower,0.008581855297088624 +karman_re400,ppo,126,50.4,omega,front,0.006367136836051941 +karman_re400,ppo,126,50.4,omega,upper,-0.05037255525588989 +karman_re400,ppo,126,50.4,omega,lower,-0.00019562721252441406 +karman_re400,ppo,127,50.8,omega,front,0.007640796899795532 +karman_re400,ppo,127,50.8,omega,upper,-0.05186671257019043 +karman_re400,ppo,127,50.8,omega,lower,-0.006056404113769532 +karman_re400,ppo,128,51.2,omega,front,0.008108280897140503 +karman_re400,ppo,128,51.2,omega,upper,-0.048717989921569824 +karman_re400,ppo,128,51.2,omega,lower,-0.006956634521484375 +karman_re400,ppo,129,51.6,omega,front,0.006980843544006347 +karman_re400,ppo,129,51.6,omega,upper,-0.04239239811897278 +karman_re400,ppo,129,51.6,omega,lower,-0.00043748855590820313 +karman_re400,ppo,130,52.0,omega,front,0.003855430483818054 +karman_re400,ppo,130,52.0,omega,upper,-0.03517722964286804 +karman_re400,ppo,130,52.0,omega,lower,0.010623564720153808 +karman_re400,ppo,131,52.4,omega,front,0.0009106285870075226 +karman_re400,ppo,131,52.4,omega,upper,-0.030250682830810546 +karman_re400,ppo,131,52.4,omega,lower,0.01935833930969238 +karman_re400,ppo,132,52.8,omega,front,-0.0008636999875307084 +karman_re400,ppo,132,52.8,omega,upper,-0.025629193782806398 +karman_re400,ppo,132,52.8,omega,lower,0.026653356552124023 +karman_re400,ppo,133,53.2,omega,front,-0.00243762344121933 +karman_re400,ppo,133,53.2,omega,upper,-0.018691458702087403 +karman_re400,ppo,133,53.2,omega,lower,0.035604048967361454 +karman_re400,ppo,134,53.6,omega,front,-0.004169614613056183 +karman_re400,ppo,134,53.6,omega,upper,-0.01019472599029541 +karman_re400,ppo,134,53.6,omega,lower,0.04495348334312439 +karman_re400,ppo,135,54.0,omega,front,-0.005745084881782532 +karman_re400,ppo,135,54.0,omega,upper,-0.0028423428535461425 +karman_re400,ppo,135,54.0,omega,lower,0.05155254125595093 +karman_re400,ppo,136,54.4,omega,front,-0.006866488456726074 +karman_re400,ppo,136,54.4,omega,upper,0.0006722259521484375 +karman_re400,ppo,136,54.4,omega,lower,0.053633294105529784 +karman_re400,ppo,137,54.8,omega,front,-0.00723185658454895 +karman_re400,ppo,137,54.8,omega,upper,-0.0008537602424621583 +karman_re400,ppo,137,54.8,omega,lower,0.05182135820388794 +karman_re400,ppo,138,55.2,omega,front,-0.006439330577850342 +karman_re400,ppo,138,55.2,omega,upper,-0.0075309228897094726 +karman_re400,ppo,138,55.2,omega,lower,0.04762095808982849 +karman_re400,ppo,139,55.6,omega,front,-0.004146706461906433 +karman_re400,ppo,139,55.6,omega,upper,-0.016250207424163818 +karman_re400,ppo,139,55.6,omega,lower,0.041702848672866825 +karman_re400,ppo,140,56.0,omega,front,-0.0014565762877464296 +karman_re400,ppo,140,56.0,omega,upper,-0.022342827320098877 +karman_re400,ppo,140,56.0,omega,lower,0.03584277927875519 +karman_re400,ppo,141,56.4,omega,front,0.000580371841788292 +karman_re400,ppo,141,56.4,omega,upper,-0.027379817962646484 +karman_re400,ppo,141,56.4,omega,lower,0.02923932671546936 +karman_re400,ppo,142,56.8,omega,front,0.00242413729429245 +karman_re400,ppo,142,56.8,omega,upper,-0.03481934785842895 +karman_re400,ppo,142,56.8,omega,lower,0.01995422601699829 +karman_re400,ppo,143,57.2,omega,front,0.004425929486751557 +karman_re400,ppo,143,57.2,omega,upper,-0.04342697620391846 +karman_re400,ppo,143,57.2,omega,lower,0.009534459114074707 +karman_re400,ppo,144,57.6,omega,front,0.0062421393394470216 +karman_re400,ppo,144,57.6,omega,upper,-0.049870018959045415 +karman_re400,ppo,144,57.6,omega,lower,0.0005340647697448731 +karman_re400,ppo,145,58.0,omega,front,0.0075449258089065555 +karman_re400,ppo,145,58.0,omega,upper,-0.05196328639984131 +karman_re400,ppo,145,58.0,omega,lower,-0.005636334419250488 +karman_re400,ppo,146,58.4,omega,front,0.008108072876930238 +karman_re400,ppo,146,58.4,omega,upper,-0.049211345911026 +karman_re400,ppo,146,58.4,omega,lower,-0.007111921310424805 +karman_re400,ppo,147,58.8,omega,front,0.007189645171165466 +karman_re400,ppo,147,58.8,omega,upper,-0.04307227373123169 +karman_re400,ppo,147,58.8,omega,lower,-0.001316394805908203 +karman_re400,ppo,148,59.2,omega,front,0.0042099586129188534 +karman_re400,ppo,148,59.2,omega,upper,-0.03574045181274414 +karman_re400,ppo,148,59.2,omega,lower,0.009542984962463379 +karman_re400,ppo,149,59.6,omega,front,0.0011811994016170501 +karman_re400,ppo,149,59.6,omega,upper,-0.03065155565738678 +karman_re400,ppo,149,59.6,omega,lower,0.018486571311950684 +karman_re400,ppo,150,60.0,omega,front,-0.0006755099445581436 +karman_re400,ppo,150,60.0,omega,upper,-0.026196136474609374 +karman_re400,ppo,150,60.0,omega,lower,0.025799165964126586 +karman_re400,ppo,151,60.4,omega,front,-0.0022518748044967653 +karman_re400,ppo,151,60.4,omega,upper,-0.01949741840362549 +karman_re400,ppo,151,60.4,omega,lower,0.03469148814678192 +karman_re400,ppo,152,60.8,omega,front,-0.003997403085231781 +karman_re400,ppo,152,60.8,omega,upper,-0.011047792434692384 +karman_re400,ppo,152,60.8,omega,lower,0.04419221043586731 +karman_re400,ppo,153,61.2,omega,front,-0.00558077335357666 +karman_re400,ppo,153,61.2,omega,upper,-0.0033766555786132815 +karman_re400,ppo,153,61.2,omega,lower,0.05112030744552613 +karman_re400,ppo,154,61.6,omega,front,-0.0067466038465499876 +karman_re400,ppo,154,61.6,omega,upper,0.0006295204162597656 +karman_re400,ppo,154,61.6,omega,lower,0.05361570358276367 +karman_re400,ppo,155,62.0,omega,front,-0.007197208404541015 +karman_re400,ppo,155,62.0,omega,upper,-0.00039093494415283204 +karman_re400,ppo,155,62.0,omega,lower,0.052090716361999516 +karman_re400,ppo,156,62.4,omega,front,-0.006579832434654236 +karman_re400,ppo,156,62.4,omega,upper,-0.006744554042816162 +karman_re400,ppo,156,62.4,omega,lower,0.04813514828681946 +karman_re400,ppo,157,62.8,omega,front,-0.004421625435352326 +karman_re400,ppo,157,62.8,omega,upper,-0.01567471504211426 +karman_re400,ppo,157,62.8,omega,lower,0.04230146288871765 +karman_re400,ppo,158,63.2,omega,front,-0.0016858845949172974 +karman_re400,ppo,158,63.2,omega,upper,-0.02203522086143494 +karman_re400,ppo,158,63.2,omega,lower,0.03640441715717316 +karman_re400,ppo,159,63.6,omega,front,0.0004426458477973938 +karman_re400,ppo,159,63.6,omega,upper,-0.026742498874664306 +karman_re400,ppo,159,63.6,omega,lower,0.029990108013153077 +karman_re400,ppo,160,64.0,omega,front,0.00227704793214798 +karman_re400,ppo,160,64.0,omega,upper,-0.03380394339561463 +karman_re400,ppo,160,64.0,omega,lower,0.020958642959594726 +karman_re400,ppo,161,64.4,omega,front,0.004252218902111054 +karman_re400,ppo,161,64.4,omega,upper,-0.04252465128898621 +karman_re400,ppo,161,64.4,omega,lower,0.01052968978881836 +karman_re400,ppo,162,64.8,omega,front,0.006079292893409729 +karman_re400,ppo,162,64.8,omega,upper,-0.04942277669906616 +karman_re400,ppo,162,64.8,omega,lower,0.0013434243202209474 +karman_re400,ppo,163,65.2,omega,front,0.007432903051376343 +karman_re400,ppo,163,65.2,omega,upper,-0.05202730655670166 +karman_re400,ppo,163,65.2,omega,lower,-0.005160531997680664 +karman_re400,ppo,164,65.6,omega,front,0.008104119896888733 +karman_re400,ppo,164,65.6,omega,upper,-0.049619781970977786 +karman_re400,ppo,164,65.6,omega,lower,-0.007246866226196289 +karman_re400,ppo,165,66.0,omega,front,0.007400789260864258 +karman_re400,ppo,165,66.0,omega,upper,-0.043733410835266114 +karman_re400,ppo,165,66.0,omega,lower,-0.002290458679199219 +karman_re400,ppo,166,66.4,omega,front,0.004573374688625335 +karman_re400,ppo,166,66.4,omega,upper,-0.03637680530548096 +karman_re400,ppo,166,66.4,omega,lower,0.008357868194580079 +karman_re400,ppo,167,66.8,omega,front,0.00143507719039917 +karman_re400,ppo,167,66.8,omega,upper,-0.031068520545959474 +karman_re400,ppo,167,66.8,omega,lower,0.017715466022491456 +karman_re400,ppo,168,67.2,omega,front,-0.0005342245846986771 +karman_re400,ppo,168,67.2,omega,upper,-0.02668959140777588 +karman_re400,ppo,168,67.2,omega,lower,0.025140980482101442 +karman_re400,ppo,169,67.6,omega,front,-0.0021043860912322997 +karman_re400,ppo,169,67.6,omega,upper,-0.02023538589477539 +karman_re400,ppo,169,67.6,omega,lower,0.03384645819664001 +karman_re400,ppo,170,68.0,omega,front,-0.0038210418820381164 +karman_re400,ppo,170,68.0,omega,upper,-0.011823554039001465 +karman_re400,ppo,170,68.0,omega,lower,0.043339517116546634 +karman_re400,ppo,171,68.4,omega,front,-0.00541861355304718 +karman_re400,ppo,171,68.4,omega,upper,-0.003946144580841065 +karman_re400,ppo,171,68.4,omega,lower,0.05057500123977661 +karman_re400,ppo,172,68.8,omega,front,-0.006645784378051758 +karman_re400,ppo,172,68.8,omega,upper,0.0004542398452758789 +karman_re400,ppo,172,68.8,omega,lower,0.0535324239730835 +karman_re400,ppo,173,69.2,omega,front,-0.007195156216621399 +karman_re400,ppo,173,69.2,omega,upper,-0.000146939754486084 +karman_re400,ppo,173,69.2,omega,lower,0.05235708713531494 +karman_re400,ppo,174,69.6,omega,front,-0.00671647846698761 +karman_re400,ppo,174,69.6,omega,upper,-0.006096229553222657 +karman_re400,ppo,174,69.6,omega,lower,0.04862226128578186 +karman_re400,ppo,175,70.0,omega,front,-0.00466373473405838 +karman_re400,ppo,175,70.0,omega,upper,-0.014920239448547364 +karman_re400,ppo,175,70.0,omega,lower,0.04290560841560364 +karman_re400,ppo,176,70.4,omega,front,-0.0018918755650520326 +karman_re400,ppo,176,70.4,omega,upper,-0.021396965980529786 +karman_re400,ppo,176,70.4,omega,lower,0.03698743462562561 +karman_re400,ppo,177,70.8,omega,front,0.00029234595596790315 +karman_re400,ppo,177,70.8,omega,upper,-0.025982365608215333 +karman_re400,ppo,177,70.8,omega,lower,0.030748130679130556 +karman_re400,ppo,178,71.2,omega,front,0.0020899051427841187 +karman_re400,ppo,178,71.2,omega,upper,-0.03292324185371399 +karman_re400,ppo,178,71.2,omega,lower,0.021966826915740967 +karman_re400,ppo,179,71.6,omega,front,0.004035479128360748 +karman_re400,ppo,179,71.6,omega,upper,-0.04178340315818787 +karman_re400,ppo,179,71.6,omega,lower,0.011545343399047852 +karman_re400,ppo,180,72.0,omega,front,0.005897591710090637 +karman_re400,ppo,180,72.0,omega,upper,-0.048999134302139286 +karman_re400,ppo,180,72.0,omega,lower,0.0021622705459594725 +karman_re400,ppo,181,72.4,omega,front,0.007331131100654602 +karman_re400,ppo,181,72.4,omega,upper,-0.05200288057327271 +karman_re400,ppo,181,72.4,omega,lower,-0.004695978164672852 +karman_re400,ppo,182,72.8,omega,front,0.008096750974655152 +karman_re400,ppo,182,72.8,omega,upper,-0.050007312297821044 +karman_re400,ppo,182,72.8,omega,lower,-0.007361640930175781 +karman_re400,ppo,183,73.2,omega,front,0.007574759721755982 +karman_re400,ppo,183,73.2,omega,upper,-0.044445306062698364 +karman_re400,ppo,183,73.2,omega,lower,-0.0031879043579101565 +karman_re400,ppo,184,73.6,omega,front,0.004907812774181366 +karman_re400,ppo,184,73.6,omega,upper,-0.03708397150039673 +karman_re400,ppo,184,73.6,omega,lower,0.007289032936096192 +karman_re400,ppo,185,74.0,omega,front,0.0016630348563194276 +karman_re400,ppo,185,74.0,omega,upper,-0.0314875340461731 +karman_re400,ppo,185,74.0,omega,lower,0.017059135437011718 +karman_re400,ppo,186,74.4,omega,front,-0.0004143640398979187 +karman_re400,ppo,186,74.4,omega,upper,-0.027149626016616822 +karman_re400,ppo,186,74.4,omega,lower,0.024489464759826662 +karman_re400,ppo,187,74.8,omega,front,-0.0019616907835006713 +karman_re400,ppo,187,74.8,omega,upper,-0.020942203998565674 +karman_re400,ppo,187,74.8,omega,lower,0.03290221989154816 +karman_re400,ppo,188,75.2,omega,front,-0.0036562946438789368 +karman_re400,ppo,188,75.2,omega,upper,-0.012657208442687988 +karman_re400,ppo,188,75.2,omega,lower,0.04239792943000793 +karman_re400,ppo,189,75.6,omega,front,-0.005285838842391968 +karman_re400,ppo,189,75.6,omega,upper,-0.004625842571258545 +karman_re400,ppo,189,75.6,omega,lower,0.05000500917434692 +karman_re400,ppo,190,76.0,omega,front,-0.006580160856246948 +karman_re400,ppo,190,76.0,omega,upper,0.00016427040100097656 +karman_re400,ppo,190,76.0,omega,lower,0.05346197366714478 +karman_re400,ppo,191,76.4,omega,front,-0.007206898331642151 +karman_re400,ppo,191,76.4,omega,upper,7.082939147949218e-05 +karman_re400,ppo,191,76.4,omega,lower,0.052620818614959715 +karman_re400,ppo,192,76.8,omega,front,-0.0068335217237472535 +karman_re400,ppo,192,76.8,omega,upper,-0.005293557643890381 +karman_re400,ppo,192,76.8,omega,lower,0.0490762722492218 +karman_re400,ppo,193,77.2,omega,front,-0.004910295307636261 +karman_re400,ppo,193,77.2,omega,upper,-0.013939416408538819 +karman_re400,ppo,193,77.2,omega,lower,0.043511613607406616 +karman_re400,ppo,194,77.6,omega,front,-0.0021493470668792723 +karman_re400,ppo,194,77.6,omega,upper,-0.020755240917205812 +karman_re400,ppo,194,77.6,omega,lower,0.03755267679691315 +karman_re400,ppo,195,78.0,omega,front,8.678078651428223e-05 +karman_re400,ppo,195,78.0,omega,upper,-0.025505919456481934 +karman_re400,ppo,195,78.0,omega,lower,0.03144419848918915 +karman_re400,ppo,196,78.4,omega,front,0.001878381073474884 +karman_re400,ppo,196,78.4,omega,upper,-0.03225844860076904 +karman_re400,ppo,196,78.4,omega,lower,0.022941126823425292 +karman_re400,ppo,197,78.8,omega,front,0.0038237404823303223 +karman_re400,ppo,197,78.8,omega,upper,-0.04104544520378113 +karman_re400,ppo,197,78.8,omega,lower,0.012546205520629882 +karman_re400,ppo,198,79.2,omega,front,0.0057394784688949586 +karman_re400,ppo,198,79.2,omega,upper,-0.04844200491905212 +karman_re400,ppo,198,79.2,omega,lower,0.0029572057723999024 +karman_re400,ppo,199,79.6,omega,front,0.007229945063591004 +karman_re400,ppo,199,79.6,omega,upper,-0.05189845561981201 +karman_re400,ppo,199,79.6,omega,lower,-0.0042070579528808594 +karman_re400,ppo,200,80.0,omega,front,0.008064186573028565 +karman_re400,ppo,200,80.0,omega,upper,-0.050394816398620604 +karman_re400,ppo,200,80.0,omega,lower,-0.0073664808273315435 +karman_re400,ppo,201,80.4,omega,front,0.007704922556877137 +karman_re400,ppo,201,80.4,omega,upper,-0.04514785885810852 +karman_re400,ppo,201,80.4,omega,lower,-0.003894896507263184 +karman_re400,ppo,202,80.8,omega,front,0.005219254493713379 +karman_re400,ppo,202,80.8,omega,upper,-0.037783656716346745 +karman_re400,ppo,202,80.8,omega,lower,0.0062919497489929204 +karman_re400,ppo,203,81.2,omega,front,0.0019220222532749175 +karman_re400,ppo,203,81.2,omega,upper,-0.031902536153793334 +karman_re400,ppo,203,81.2,omega,lower,0.01630523204803467 +karman_re400,ppo,204,81.6,omega,front,-0.00024535045027732847 +karman_re400,ppo,204,81.6,omega,upper,-0.027625086307525637 +karman_re400,ppo,204,81.6,omega,lower,0.02368964672088623 +karman_re400,ppo,205,82.0,omega,front,-0.001782398521900177 +karman_re400,ppo,205,82.0,omega,upper,-0.021685254573822022 +karman_re400,ppo,205,82.0,omega,lower,0.03190107107162476 +karman_re400,ppo,206,82.4,omega,front,-0.0034867364168167116 +karman_re400,ppo,206,82.4,omega,upper,-0.013546671867370606 +karman_re400,ppo,206,82.4,omega,lower,0.041481444835662844 +karman_re400,ppo,207,82.8,omega,front,-0.005147825479507447 +karman_re400,ppo,207,82.8,omega,upper,-0.005363328456878662 +karman_re400,ppo,207,82.8,omega,lower,0.049452810287475585 +karman_re400,ppo,208,83.2,omega,front,-0.0064885300397872925 +karman_re400,ppo,208,83.2,omega,upper,-0.00012117385864257813 +karman_re400,ppo,208,83.2,omega,lower,0.05336910963058472 +karman_re400,ppo,209,83.6,omega,front,-0.0071728271245956425 +karman_re400,ppo,209,83.6,omega,upper,0.0003834342956542969 +karman_re400,ppo,209,83.6,omega,lower,0.05285545110702515 +karman_re400,ppo,210,84.0,omega,front,-0.006922447085380554 +karman_re400,ppo,210,84.0,omega,upper,-0.004418518543243408 +karman_re400,ppo,210,84.0,omega,lower,0.04953082323074341 +karman_re400,ppo,211,84.4,omega,front,-0.005173144340515137 +karman_re400,ppo,211,84.4,omega,upper,-0.013026483058929443 +karman_re400,ppo,211,84.4,omega,lower,0.04411105155944824 +karman_re400,ppo,212,84.8,omega,front,-0.0024435481429100035 +karman_re400,ppo,212,84.8,omega,upper,-0.02035008192062378 +karman_re400,ppo,212,84.8,omega,lower,0.0381007593870163 +karman_re400,ppo,213,85.2,omega,front,-0.00012919381260871886 +karman_re400,ppo,213,85.2,omega,upper,-0.025193508863449097 +karman_re400,ppo,213,85.2,omega,lower,0.03210700750350952 +karman_re400,ppo,214,85.6,omega,front,0.001694246232509613 +karman_re400,ppo,214,85.6,omega,upper,-0.03154127597808838 +karman_re400,ppo,214,85.6,omega,lower,0.023891586065292358 +karman_re400,ppo,215,86.0,omega,front,0.003647778034210205 +karman_re400,ppo,215,86.0,omega,upper,-0.04012424349784851 +karman_re400,ppo,215,86.0,omega,lower,0.01355674982070923 +karman_re400,ppo,216,86.4,omega,front,0.005584819316864014 +karman_re400,ppo,216,86.4,omega,upper,-0.04777845740318298 +karman_re400,ppo,216,86.4,omega,lower,0.0037973403930664064 +karman_re400,ppo,217,86.8,omega,front,0.0071104896068573 +karman_re400,ppo,217,86.8,omega,upper,-0.05176497936248779 +karman_re400,ppo,217,86.8,omega,lower,-0.0036396884918212893 +karman_re400,ppo,218,87.2,omega,front,0.008009468317031861 +karman_re400,ppo,218,87.2,omega,upper,-0.050761027336120604 +karman_re400,ppo,218,87.2,omega,lower,-0.007264432907104493 +karman_re400,ppo,219,87.6,omega,front,0.00781588912010193 +karman_re400,ppo,219,87.6,omega,upper,-0.0457883358001709 +karman_re400,ppo,219,87.6,omega,lower,-0.004542241096496582 +karman_re400,ppo,220,88.0,omega,front,0.005545452833175659 +karman_re400,ppo,220,88.0,omega,upper,-0.038455006480216984 +karman_re400,ppo,220,88.0,omega,lower,0.005185446739196777 +karman_re400,ppo,221,88.4,omega,front,0.002224959135055542 +karman_re400,ppo,221,88.4,omega,upper,-0.03234933257102966 +karman_re400,ppo,221,88.4,omega,lower,0.015396165847778321 +karman_re400,ppo,222,88.8,omega,front,-5.105674266815186e-05 +karman_re400,ppo,222,88.8,omega,upper,-0.02809105396270752 +karman_re400,ppo,222,88.8,omega,lower,0.022897465229034426 +karman_re400,ppo,223,89.2,omega,front,-0.0016171443462371826 +karman_re400,ppo,223,89.2,omega,upper,-0.022405939102172853 +karman_re400,ppo,223,89.2,omega,lower,0.031009111404418945 +karman_re400,ppo,224,89.6,omega,front,-0.003312182426452637 +karman_re400,ppo,224,89.6,omega,upper,-0.014411139488220216 +karman_re400,ppo,224,89.6,omega,lower,0.04060961365699768 +karman_re400,ppo,225,90.0,omega,front,-0.004987168610095978 +karman_re400,ppo,225,90.0,omega,upper,-0.006066110134124756 +karman_re400,ppo,225,90.0,omega,lower,0.0488639771938324 +karman_re400,ppo,226,90.4,omega,front,-0.006359244585037231 +karman_re400,ppo,226,90.4,omega,upper,-0.00038129329681396484 +karman_re400,ppo,226,90.4,omega,lower,0.053190224170684815 +karman_re400,ppo,227,90.8,omega,front,-0.007116076350212097 +karman_re400,ppo,227,90.8,omega,upper,0.0006270503997802734 +karman_re400,ppo,227,90.8,omega,lower,0.05303985595703125 +karman_re400,ppo,228,91.2,omega,front,-0.006997355222702026 +karman_re400,ppo,228,91.2,omega,upper,-0.003717796802520752 +karman_re400,ppo,228,91.2,omega,lower,0.04995065450668335 +karman_re400,ppo,229,91.6,omega,front,-0.00541635811328888 +karman_re400,ppo,229,91.6,omega,upper,-0.01225987434387207 +karman_re400,ppo,229,91.6,omega,lower,0.04471246004104614 +karman_re400,ppo,230,92.0,omega,front,-0.0027111449837684634 +karman_re400,ppo,230,92.0,omega,upper,-0.01992645740509033 +karman_re400,ppo,230,92.0,omega,lower,0.03866485178470612 +karman_re400,ppo,231,92.4,omega,front,-0.0003036437928676605 +karman_re400,ppo,231,92.4,omega,upper,-0.024718658924102785 +karman_re400,ppo,231,92.4,omega,lower,0.03275752544403076 +karman_re400,ppo,232,92.8,omega,front,0.0015446346998214723 +karman_re400,ppo,232,92.8,omega,upper,-0.03066831171512604 +karman_re400,ppo,232,92.8,omega,lower,0.02482911229133606 +karman_re400,ppo,233,93.2,omega,front,0.0034694337844848634 +karman_re400,ppo,233,93.2,omega,upper,-0.039166675806045534 +karman_re400,ppo,233,93.2,omega,lower,0.014584770202636719 +karman_re400,ppo,234,93.6,omega,front,0.005407373905181885 +karman_re400,ppo,234,93.6,omega,upper,-0.047151584625244145 +karman_re400,ppo,234,93.6,omega,lower,0.00468848705291748 +karman_re400,ppo,235,94.0,omega,front,0.006974582672119141 +karman_re400,ppo,235,94.0,omega,upper,-0.05162872552871704 +karman_re400,ppo,235,94.0,omega,lower,-0.003026871681213379 +karman_re400,ppo,236,94.4,omega,front,0.007954420447349548 +karman_re400,ppo,236,94.4,omega,upper,-0.051064903736114504 +karman_re400,ppo,236,94.4,omega,lower,-0.007128181457519532 +karman_re400,ppo,237,94.8,omega,front,0.007925856113433837 +karman_re400,ppo,237,94.8,omega,upper,-0.04636695027351379 +karman_re400,ppo,237,94.8,omega,lower,-0.005191993713378906 +karman_re400,ppo,238,95.2,omega,front,0.005873433351516724 +karman_re400,ppo,238,95.2,omega,upper,-0.03917966365814209 +karman_re400,ppo,238,95.2,omega,lower,0.003988606929779053 +karman_re400,ppo,239,95.6,omega,front,0.002534445822238922 +karman_re400,ppo,239,95.6,omega,upper,-0.03283207058906555 +karman_re400,ppo,239,95.6,omega,lower,0.014484772682189942 +karman_re400,ppo,240,96.0,omega,front,0.00011603474617004395 +karman_re400,ppo,240,96.0,omega,upper,-0.028525333404541015 +karman_re400,ppo,240,96.0,omega,lower,0.02223338007926941 +karman_re400,ppo,241,96.4,omega,front,-0.0014796537160873414 +karman_re400,ppo,241,96.4,omega,upper,-0.023060367107391358 +karman_re400,ppo,241,96.4,omega,lower,0.03020850718021393 +karman_re400,ppo,242,96.8,omega,front,-0.0031452691555023194 +karman_re400,ppo,242,96.8,omega,upper,-0.015217866897583008 +karman_re400,ppo,242,96.8,omega,lower,0.03970610022544861 +karman_re400,ppo,243,97.2,omega,front,-0.004827221930027008 +karman_re400,ppo,243,97.2,omega,upper,-0.006768343448638916 +karman_re400,ppo,243,97.2,omega,lower,0.04817602753639221 +karman_re400,ppo,244,97.6,omega,front,-0.006236992478370666 +karman_re400,ppo,244,97.6,omega,upper,-0.0007283282279968262 +karman_re400,ppo,244,97.6,omega,lower,0.05294350862503052 +karman_re400,ppo,245,98.0,omega,front,-0.007078222036361694 +karman_re400,ppo,245,98.0,omega,upper,0.0007225704193115234 +karman_re400,ppo,245,98.0,omega,lower,0.05320743560791016 +karman_re400,ppo,246,98.4,omega,front,-0.0070746845006942755 +karman_re400,ppo,246,98.4,omega,upper,-0.003161633014678955 +karman_re400,ppo,246,98.4,omega,lower,0.05035321235656738 +karman_re400,ppo,247,98.8,omega,front,-0.005640209913253784 +karman_re400,ppo,247,98.8,omega,upper,-0.0114570951461792 +karman_re400,ppo,247,98.8,omega,lower,0.04529680728912354 +karman_re400,ppo,248,99.2,omega,front,-0.0029582178592681887 +karman_re400,ppo,248,99.2,omega,upper,-0.01927476167678833 +karman_re400,ppo,248,99.2,omega,lower,0.03924075722694397 +karman_re400,ppo,249,99.6,omega,front,-0.0004782218486070633 +karman_re400,ppo,249,99.6,omega,upper,-0.024114043712615968 +karman_re400,ppo,249,99.6,omega,lower,0.03339974164962769 +karman_re400,ppo,250,100.0,omega,front,0.001375664472579956 +karman_re400,ppo,250,100.0,omega,upper,-0.029854221343994142 +karman_re400,ppo,250,100.0,omega,lower,0.025745686292648316 +karman_re400,ppo,251,100.4,omega,front,0.0032602861523628236 +karman_re400,ppo,251,100.4,omega,upper,-0.03833256423473358 +karman_re400,ppo,251,100.4,omega,lower,0.015628652572631838 +karman_re400,ppo,252,100.8,omega,front,0.005215556621551514 +karman_re400,ppo,252,100.8,omega,upper,-0.046562148332595824 +karman_re400,ppo,252,100.8,omega,lower,0.005590083599090577 +karman_re400,ppo,253,101.2,omega,front,0.006842015385627747 +karman_re400,ppo,253,101.2,omega,upper,-0.05142167091369629 +karman_re400,ppo,253,101.2,omega,lower,-0.002403593063354492 +karman_re400,ppo,254,101.6,omega,front,0.007902618050575256 +karman_re400,ppo,254,101.6,omega,upper,-0.05131311416625977 +karman_re400,ppo,254,101.6,omega,lower,-0.006974725723266601 +karman_re400,ppo,255,102.0,omega,front,0.00801110327243805 +karman_re400,ppo,255,102.0,omega,upper,-0.046965363025665285 +karman_re400,ppo,255,102.0,omega,lower,-0.005775513648986817 +karman_re400,ppo,256,102.4,omega,front,0.006172035336494446 +karman_re400,ppo,256,102.4,omega,upper,-0.03994218826293945 +karman_re400,ppo,256,102.4,omega,lower,0.0028843998908996585 +karman_re400,ppo,257,102.8,omega,front,0.002829875946044922 +karman_re400,ppo,257,102.8,omega,upper,-0.03334298968315125 +karman_re400,ppo,257,102.8,omega,lower,0.013649091720581055 +karman_re400,ppo,258,103.2,omega,front,0.00026925623416900634 +karman_re400,ppo,258,103.2,omega,upper,-0.02892069935798645 +karman_re400,ppo,258,103.2,omega,lower,0.02162417769432068 +karman_re400,ppo,259,103.6,omega,front,-0.0013428479433059692 +karman_re400,ppo,259,103.6,omega,upper,-0.02368542194366455 +karman_re400,ppo,259,103.6,omega,lower,0.02935096263885498 +karman_re400,ppo,260,104.0,omega,front,-0.002978987395763397 +karman_re400,ppo,260,104.0,omega,upper,-0.01604222536087036 +karman_re400,ppo,260,104.0,omega,lower,0.038724793195724486 +karman_re400,ppo,261,104.4,omega,front,-0.004674708545207977 +karman_re400,ppo,261,104.4,omega,upper,-0.007541718482971192 +karman_re400,ppo,261,104.4,omega,lower,0.04744716048240662 +karman_re400,ppo,262,104.8,omega,front,-0.006133618950843811 +karman_re400,ppo,262,104.8,omega,upper,-0.001181168556213379 +karman_re400,ppo,262,104.8,omega,lower,0.05267855882644654 +karman_re400,ppo,263,105.2,omega,front,-0.007049800753593445 +karman_re400,ppo,263,105.2,omega,upper,0.000749201774597168 +karman_re400,ppo,263,105.2,omega,lower,0.05336089134216309 +karman_re400,ppo,264,105.6,omega,front,-0.007135269641876221 +karman_re400,ppo,264,105.6,omega,upper,-0.0025629639625549317 +karman_re400,ppo,264,105.6,omega,lower,0.05073372602462769 +karman_re400,ppo,265,106.0,omega,front,-0.005843038558959961 +karman_re400,ppo,265,106.0,omega,upper,-0.010482988357543946 +karman_re400,ppo,265,106.0,omega,lower,0.04587310552597046 +karman_re400,ppo,266,106.4,omega,front,-0.003229746222496033 +karman_re400,ppo,266,106.4,omega,upper,-0.0185432767868042 +karman_re400,ppo,266,106.4,omega,lower,0.039816625118255615 +karman_re400,ppo,267,106.8,omega,front,-0.0006979244202375412 +karman_re400,ppo,267,106.8,omega,upper,-0.02364624261856079 +karman_re400,ppo,267,106.8,omega,lower,0.03400984644889832 +karman_re400,ppo,268,107.2,omega,front,0.0011796878278255462 +karman_re400,ppo,268,107.2,omega,upper,-0.029250361919403077 +karman_re400,ppo,268,107.2,omega,lower,0.02661961078643799 +karman_re400,ppo,269,107.6,omega,front,0.0030497762560844424 +karman_re400,ppo,269,107.6,omega,upper,-0.037548424005508424 +karman_re400,ppo,269,107.6,omega,lower,0.016661710739135742 +karman_re400,ppo,270,108.0,omega,front,0.005030912756919861 +karman_re400,ppo,270,108.0,omega,upper,-0.045885179042816165 +karman_re400,ppo,270,108.0,omega,lower,0.006486995220184326 +karman_re400,ppo,271,108.4,omega,front,0.006715341210365295 +karman_re400,ppo,271,108.4,omega,upper,-0.051126911640167236 +karman_re400,ppo,271,108.4,omega,lower,-0.0017712879180908202 +karman_re400,ppo,272,108.8,omega,front,0.007834974527359009 +karman_re400,ppo,272,108.8,omega,upper,-0.05153418302536011 +karman_re400,ppo,272,108.8,omega,lower,-0.006748094558715821 +karman_re400,ppo,273,109.2,omega,front,0.008062019944190979 +karman_re400,ppo,273,109.2,omega,upper,-0.047564346790313725 +karman_re400,ppo,273,109.2,omega,lower,-0.006221637725830079 +karman_re400,ppo,274,109.6,omega,front,0.006439870595932007 +karman_re400,ppo,274,109.6,omega,upper,-0.0406935453414917 +karman_re400,ppo,274,109.6,omega,lower,0.001879549026489258 +karman_re400,ppo,275,110.0,omega,front,0.003138921558856964 +karman_re400,ppo,275,110.0,omega,upper,-0.033858031034469604 +karman_re400,ppo,275,110.0,omega,lower,0.012773015499114991 +karman_re400,ppo,276,110.4,omega,front,0.00046566091477870944 +karman_re400,ppo,276,110.4,omega,upper,-0.029334796667099 +karman_re400,ppo,276,110.4,omega,lower,0.020884835720062257 +karman_re400,ppo,277,110.8,omega,front,-0.0011802393943071367 +karman_re400,ppo,277,110.8,omega,upper,-0.02432419538497925 +karman_re400,ppo,277,110.8,omega,lower,0.02844181776046753 +karman_re400,ppo,278,111.2,omega,front,-0.0028031548857688905 +karman_re400,ppo,278,111.2,omega,upper,-0.016889860630035402 +karman_re400,ppo,278,111.2,omega,lower,0.037749409675598145 +karman_re400,ppo,279,111.6,omega,front,-0.004521385729312897 +karman_re400,ppo,279,111.6,omega,upper,-0.008365232944488526 +karman_re400,ppo,279,111.6,omega,lower,0.04673003673553467 +karman_re400,ppo,280,112.0,omega,front,-0.006017773151397705 +karman_re400,ppo,280,112.0,omega,upper,-0.0016550660133361817 +karman_re400,ppo,280,112.0,omega,lower,0.05239463806152344 +karman_re400,ppo,281,112.4,omega,front,-0.006991674304008484 +karman_re400,ppo,281,112.4,omega,upper,0.0008132553100585937 +karman_re400,ppo,281,112.4,omega,lower,0.05348550796508789 +karman_re400,ppo,282,112.8,omega,front,-0.0071634000539779665 +karman_re400,ppo,282,112.8,omega,upper,-0.0019104790687561035 +karman_re400,ppo,282,112.8,omega,lower,0.05109428882598877 +karman_re400,ppo,283,113.2,omega,front,-0.0060474324226379396 +karman_re400,ppo,283,113.2,omega,upper,-0.0095219087600708 +karman_re400,ppo,283,113.2,omega,lower,0.04643815755844116 +karman_re400,ppo,284,113.6,omega,front,-0.0035232874751091004 +karman_re400,ppo,284,113.6,omega,upper,-0.017918312549591066 +karman_re400,ppo,284,113.6,omega,lower,0.04039889454841614 +karman_re400,ppo,285,114.0,omega,front,-0.0009343730658292771 +karman_re400,ppo,285,114.0,omega,upper,-0.023343217372894288 +karman_re400,ppo,285,114.0,omega,lower,0.034585354328155515 +karman_re400,ppo,286,114.4,omega,front,0.0009963764995336534 +karman_re400,ppo,286,114.4,omega,upper,-0.02867622971534729 +karman_re400,ppo,286,114.4,omega,lower,0.027457566261291505 +karman_re400,ppo,287,114.8,omega,front,0.002866702079772949 +karman_re400,ppo,287,114.8,omega,upper,-0.03665357828140259 +karman_re400,ppo,287,114.8,omega,lower,0.01768706798553467 +karman_re400,ppo,288,115.2,omega,front,0.004858212172985077 +karman_re400,ppo,288,115.2,omega,upper,-0.045101693868637084 +karman_re400,ppo,288,115.2,omega,lower,0.007411990165710449 +karman_re400,ppo,289,115.6,omega,front,0.006576527953147888 +karman_re400,ppo,289,115.6,omega,upper,-0.05077758312225342 +karman_re400,ppo,289,115.6,omega,lower,-0.0010792064666748048 +karman_re400,ppo,290,116.0,omega,front,0.007749463915824891 +karman_re400,ppo,290,116.0,omega,upper,-0.051729254722595215 +karman_re400,ppo,290,116.0,omega,lower,-0.006436061859130859 +karman_re400,ppo,291,116.4,omega,front,0.00809278130531311 +karman_re400,ppo,291,116.4,omega,upper,-0.04809730529785156 +karman_re400,ppo,291,116.4,omega,lower,-0.006555566787719727 +karman_re400,ppo,292,116.8,omega,front,0.006699995994567871 +karman_re400,ppo,292,116.8,omega,upper,-0.0414142644405365 +karman_re400,ppo,292,116.8,omega,lower,0.0008404660224914551 +karman_re400,ppo,293,117.2,omega,front,0.003475940227508545 +karman_re400,ppo,293,117.2,omega,upper,-0.03439896881580353 +karman_re400,ppo,293,117.2,omega,lower,0.01175990343093872 +karman_re400,ppo,294,117.6,omega,front,0.0006855931878089904 +karman_re400,ppo,294,117.6,omega,upper,-0.029753140211105346 +karman_re400,ppo,294,117.6,omega,lower,0.020104000568389895 +karman_re400,ppo,295,118.0,omega,front,-0.0010166142135858535 +karman_re400,ppo,295,118.0,omega,upper,-0.024932241439819338 +karman_re400,ppo,295,118.0,omega,lower,0.027608009576797488 +karman_re400,ppo,296,118.4,omega,front,-0.002631851136684418 +karman_re400,ppo,296,118.4,omega,upper,-0.017715644836425782 +karman_re400,ppo,296,118.4,omega,lower,0.036835089325904846 +karman_re400,ppo,297,118.8,omega,front,-0.004357467591762543 +karman_re400,ppo,297,118.8,omega,upper,-0.009167716503143311 +karman_re400,ppo,297,118.8,omega,lower,0.04599410653114319 +karman_re400,ppo,298,119.2,omega,front,-0.005875757932662964 +karman_re400,ppo,298,119.2,omega,upper,-0.002118091583251953 +karman_re400,ppo,298,119.2,omega,lower,0.052043654918670655 +karman_re400,ppo,299,119.6,omega,front,-0.006910237073898316 +karman_re400,ppo,299,119.6,omega,upper,0.0008347606658935547 +karman_re400,ppo,299,119.6,omega,lower,0.053553974628448485 +karman_re400,ppo,300,120.0,omega,front,-0.007181153297424317 +karman_re400,ppo,300,120.0,omega,upper,-0.0013936758041381836 +karman_re400,ppo,300,120.0,omega,lower,0.05142173051834106 +karman_re400,ppo,301,120.4,omega,front,-0.006234055161476135 +karman_re400,ppo,301,120.4,omega,upper,-0.008707127571105958 +karman_re400,ppo,301,120.4,omega,lower,0.04698657274246216 +karman_re400,ppo,302,120.8,omega,front,-0.0038016226887702944 +karman_re400,ppo,302,120.8,omega,upper,-0.017328555583953856 +karman_re400,ppo,302,120.8,omega,lower,0.04098237752914429 +karman_re400,ppo,303,121.2,omega,front,-0.0011472461372613906 +karman_re400,ppo,303,121.2,omega,upper,-0.02292846441268921 +karman_re400,ppo,303,121.2,omega,lower,0.035171947479248046 +karman_re400,ppo,304,121.6,omega,front,0.0008426040410995484 +karman_re400,ppo,304,121.6,omega,upper,-0.027956328392028808 +karman_re400,ppo,304,121.6,omega,lower,0.02829233765602112 +karman_re400,ppo,305,122.0,omega,front,0.002690029740333557 +karman_re400,ppo,305,122.0,omega,upper,-0.03570608496665955 +karman_re400,ppo,305,122.0,omega,lower,0.018715019226074218 +karman_re400,ppo,306,122.4,omega,front,0.004673917591571808 +karman_re400,ppo,306,122.4,omega,upper,-0.0443311607837677 +karman_re400,ppo,306,122.4,omega,lower,0.008367538452148438 +karman_re400,ppo,307,122.8,omega,front,0.006421780586242676 +karman_re400,ppo,307,122.8,omega,upper,-0.050435023307800295 +karman_re400,ppo,307,122.8,omega,lower,-0.0003441429138183594 +karman_re400,ppo,308,123.2,omega,front,0.007659530639648438 +karman_re400,ppo,308,123.2,omega,upper,-0.05187752485275269 +karman_re400,ppo,308,123.2,omega,lower,-0.006087188720703125 +karman_re400,ppo,309,123.6,omega,front,0.008119637966156007 +karman_re400,ppo,309,123.6,omega,upper,-0.048584407567977904 +karman_re400,ppo,309,123.6,omega,lower,-0.006868371963500977 +karman_re400,ppo,310,124.0,omega,front,0.006950401663780212 +karman_re400,ppo,310,124.0,omega,upper,-0.04214195489883423 +karman_re400,ppo,310,124.0,omega,lower,-0.00022461891174316406 +karman_re400,ppo,311,124.4,omega,front,0.003819429874420166 +karman_re400,ppo,311,124.4,omega,upper,-0.034984794259071354 +karman_re400,ppo,311,124.4,omega,lower,0.010713610649108887 +karman_re400,ppo,312,124.8,omega,front,0.0008982282131910325 +karman_re400,ppo,312,124.8,omega,upper,-0.030146694779396056 +karman_re400,ppo,312,124.8,omega,lower,0.01941896915435791 +karman_re400,ppo,313,125.2,omega,front,-0.0008797802776098251 +karman_re400,ppo,313,125.2,omega,upper,-0.025495467185974122 +karman_re400,ppo,313,125.2,omega,lower,0.026862777471542358 +karman_re400,ppo,314,125.6,omega,front,-0.0024723416566848756 +karman_re400,ppo,314,125.6,omega,upper,-0.01849867343902588 +karman_re400,ppo,314,125.6,omega,lower,0.03591697275638581 +karman_re400,ppo,315,126.0,omega,front,-0.0041892948746681214 +karman_re400,ppo,315,126.0,omega,upper,-0.00995774269104004 +karman_re400,ppo,315,126.0,omega,lower,0.045184683799743657 +karman_re400,ppo,316,126.4,omega,front,-0.005736061334609985 +karman_re400,ppo,316,126.4,omega,upper,-0.0026355385780334473 +karman_re400,ppo,316,126.4,omega,lower,0.05162023544311523 +karman_re400,ppo,317,126.8,omega,front,-0.006839408874511719 +karman_re400,ppo,317,126.8,omega,upper,0.0007543468475341797 +karman_re400,ppo,317,126.8,omega,lower,0.053585364818573 +karman_re400,ppo,318,127.2,omega,front,-0.0072034007310867315 +karman_re400,ppo,318,127.2,omega,upper,-0.0009926939010620117 +karman_re400,ppo,318,127.2,omega,lower,0.051739673614501956 +karman_re400,ppo,319,127.6,omega,front,-0.006394267678260804 +karman_re400,ppo,319,127.6,omega,upper,-0.007904677391052247 +karman_re400,ppo,319,127.6,omega,lower,0.04751802563667298 +karman_re400,ppo,320,128.0,omega,front,-0.004063201546669007 +karman_re400,ppo,320,128.0,omega,upper,-0.016591768264770507 +karman_re400,ppo,320,128.0,omega,lower,0.04157625079154968 +karman_re400,ppo,321,128.4,omega,front,-0.0013585549592971802 +karman_re400,ppo,321,128.4,omega,upper,-0.022389963865280152 +karman_re400,ppo,321,128.4,omega,lower,0.03574794054031372 +karman_re400,ppo,322,128.8,omega,front,0.0006760836392641068 +karman_re400,ppo,322,128.8,omega,upper,-0.027270742654800416 +karman_re400,ppo,322,128.8,omega,lower,0.029092925786972045 +karman_re400,ppo,323,129.2,omega,front,0.002494249939918518 +karman_re400,ppo,323,129.2,omega,upper,-0.034853219389915466 +karman_re400,ppo,323,129.2,omega,lower,0.019741034507751467 +karman_re400,ppo,324,129.6,omega,front,0.004470546543598175 +karman_re400,ppo,324,129.6,omega,upper,-0.043609769344329835 +karman_re400,ppo,324,129.6,omega,lower,0.009339399337768554 +karman_re400,ppo,325,130.0,omega,front,0.006264133453369141 +karman_re400,ppo,325,130.0,omega,upper,-0.05004923105239868 +karman_re400,ppo,325,130.0,omega,lower,0.00040086746215820316 +karman_re400,ppo,326,130.4,omega,front,0.007572338581085206 +karman_re400,ppo,326,130.4,omega,upper,-0.05195889711380005 +karman_re400,ppo,326,130.4,omega,lower,-0.005720071792602539 +karman_re400,ppo,327,130.8,omega,front,0.008132057785987854 +karman_re400,ppo,327,130.8,omega,upper,-0.04905943751335144 +karman_re400,ppo,327,130.8,omega,lower,-0.007120246887207031 +karman_re400,ppo,328,131.2,omega,front,0.0071711415052413945 +karman_re400,ppo,328,131.2,omega,upper,-0.04288475513458252 +karman_re400,ppo,328,131.2,omega,lower,-0.0012095546722412109 +karman_re400,ppo,329,131.6,omega,front,0.004150207340717316 +karman_re400,ppo,329,131.6,omega,upper,-0.035603154301643375 +karman_re400,ppo,329,131.6,omega,lower,0.009726901054382325 +karman_re400,ppo,330,132.0,omega,front,0.001109408736228943 +karman_re400,ppo,330,132.0,omega,upper,-0.0305448454618454 +karman_re400,ppo,330,132.0,omega,lower,0.0187493896484375 +karman_re400,ppo,331,132.4,omega,front,-0.0007428350299596787 +karman_re400,ppo,331,132.4,omega,upper,-0.0260282838344574 +karman_re400,ppo,331,132.4,omega,lower,0.0261026930809021 +karman_re400,ppo,332,132.8,omega,front,-0.0023112058639526366 +karman_re400,ppo,332,132.8,omega,upper,-0.019269909858703613 +karman_re400,ppo,332,132.8,omega,lower,0.03494903564453125 +karman_re400,ppo,333,133.2,omega,front,-0.004022305607795715 +karman_re400,ppo,333,133.2,omega,upper,-0.010797233581542968 +karman_re400,ppo,333,133.2,omega,lower,0.0443281888961792 +karman_re400,ppo,334,133.6,omega,front,-0.0056061410903930665 +karman_re400,ppo,334,133.6,omega,upper,-0.0032326626777648927 +karman_re400,ppo,334,133.6,omega,lower,0.051168129444122315 +karman_re400,ppo,335,134.0,omega,front,-0.006774992942810059 +karman_re400,ppo,335,134.0,omega,upper,0.0006017112731933594 +karman_re400,ppo,335,134.0,omega,lower,0.053600847721099854 +karman_re400,ppo,336,134.4,omega,front,-0.0072220671176910405 +karman_re400,ppo,336,134.4,omega,upper,-0.0006072282791137696 +karman_re400,ppo,336,134.4,omega,lower,0.0520412015914917 +karman_re400,ppo,337,134.8,omega,front,-0.00655071496963501 +karman_re400,ppo,337,134.8,omega,upper,-0.007015912532806396 +karman_re400,ppo,337,134.8,omega,lower,0.04802778363227844 +karman_re400,ppo,338,135.2,omega,front,-0.0043323543667793275 +karman_re400,ppo,338,135.2,omega,upper,-0.015751399993896485 +karman_re400,ppo,338,135.2,omega,lower,0.04216622471809387 +karman_re400,ppo,339,135.6,omega,front,-0.00160419762134552 +karman_re400,ppo,339,135.6,omega,upper,-0.02189328670501709 +karman_re400,ppo,339,135.6,omega,lower,0.036311212778091434 +karman_re400,ppo,340,136.0,omega,front,0.00048433594405651093 +karman_re400,ppo,340,136.0,omega,upper,-0.02674635648727417 +karman_re400,ppo,340,136.0,omega,lower,0.029850836992263794 +karman_re400,ppo,341,136.4,omega,front,0.00229117214679718 +karman_re400,ppo,341,136.4,omega,upper,-0.03407516360282898 +karman_re400,ppo,341,136.4,omega,lower,0.020751579999923705 +karman_re400,ppo,342,136.8,omega,front,0.004272643029689789 +karman_re400,ppo,342,136.8,omega,upper,-0.04283736824989319 +karman_re400,ppo,342,136.8,omega,lower,0.010315680503845214 +karman_re400,ppo,343,137.2,omega,front,0.006111873984336853 +karman_re400,ppo,343,137.2,omega,upper,-0.04957346916198731 +karman_re400,ppo,343,137.2,omega,lower,0.001160740852355957 +karman_re400,ppo,344,137.6,omega,front,0.00747606635093689 +karman_re400,ppo,344,137.6,omega,upper,-0.05198776245117188 +karman_re400,ppo,344,137.6,omega,lower,-0.005300540924072266 +karman_re400,ppo,345,138.0,omega,front,0.00812129020690918 +karman_re400,ppo,345,138.0,omega,upper,-0.049521701335906984 +karman_re400,ppo,345,138.0,omega,lower,-0.0072639560699462894 +karman_re400,ppo,346,138.4,omega,front,0.007359038591384888 +karman_re400,ppo,346,138.4,omega,upper,-0.04361690878868103 +karman_re400,ppo,346,138.4,omega,lower,-0.0020871067047119143 +karman_re400,ppo,347,138.8,omega,front,0.004482100009918213 +karman_re400,ppo,347,138.8,omega,upper,-0.036249707341194155 +karman_re400,ppo,347,138.8,omega,lower,0.00869854211807251 +karman_re400,ppo,348,139.2,omega,front,0.001350170373916626 +karman_re400,ppo,348,139.2,omega,upper,-0.030950350165367128 +karman_re400,ppo,348,139.2,omega,lower,0.017997698783874513 +karman_re400,ppo,349,139.6,omega,front,-0.000582517609000206 +karman_re400,ppo,349,139.6,omega,upper,-0.026554352045059206 +karman_re400,ppo,349,139.6,omega,lower,0.025298624038696288 +karman_re400,ppo,350,140.0,omega,front,-0.002139895856380463 +karman_re400,ppo,350,140.0,omega,upper,-0.020049269199371337 +karman_re400,ppo,350,140.0,omega,lower,0.033979033827781675 +karman_re400,ppo,351,140.4,omega,front,-0.003859856724739075 +karman_re400,ppo,351,140.4,omega,upper,-0.011660830974578857 +karman_re400,ppo,351,140.4,omega,lower,0.04347724556922913 +karman_re400,ppo,352,140.8,omega,front,-0.005469655394554138 +karman_re400,ppo,352,140.8,omega,upper,-0.003864431381225586 +karman_re400,ppo,352,140.8,omega,lower,0.05069943428039551 +karman_re400,ppo,353,141.2,omega,front,-0.006689323782920837 +karman_re400,ppo,353,141.2,omega,upper,0.0004446220397949219 +karman_re400,ppo,353,141.2,omega,lower,0.05358018159866333 +karman_re400,ppo,354,141.6,omega,front,-0.007207598090171814 +karman_re400,ppo,354,141.6,omega,upper,-0.00020992517471313477 +karman_re400,ppo,354,141.6,omega,lower,0.05231077671051026 +karman_re400,ppo,355,142.0,omega,front,-0.006681625247001648 +karman_re400,ppo,355,142.0,omega,upper,-0.006138434410095215 +karman_re400,ppo,355,142.0,omega,lower,0.04852023959159851 +karman_re400,ppo,356,142.4,omega,front,-0.004607442319393158 +karman_re400,ppo,356,142.4,omega,upper,-0.014943065643310547 +karman_re400,ppo,356,142.4,omega,lower,0.04277974963188171 +karman_re400,ppo,357,142.8,omega,front,-0.0018662577867507935 +karman_re400,ppo,357,142.8,omega,upper,-0.021502788066864013 +karman_re400,ppo,357,142.8,omega,lower,0.03686188578605652 +karman_re400,ppo,358,143.2,omega,front,0.0002969422936439514 +karman_re400,ppo,358,143.2,omega,upper,-0.02627821445465088 +karman_re400,ppo,358,143.2,omega,lower,0.03057792842388153 +karman_re400,ppo,359,143.6,omega,front,0.002110658586025238 +karman_re400,ppo,359,143.6,omega,upper,-0.03324941873550415 +karman_re400,ppo,359,143.6,omega,lower,0.021745147705078124 +karman_re400,ppo,360,144.0,omega,front,0.00408918172121048 +karman_re400,ppo,360,144.0,omega,upper,-0.04197821021080017 +karman_re400,ppo,360,144.0,omega,lower,0.011304714679718018 +karman_re400,ppo,361,144.4,omega,front,0.005956572890281678 +karman_re400,ppo,361,144.4,omega,upper,-0.0490476667881012 +karman_re400,ppo,361,144.4,omega,lower,0.0019531750679016116 +karman_re400,ppo,362,144.8,omega,front,0.00736800491809845 +karman_re400,ppo,362,144.8,omega,upper,-0.051983604431152346 +karman_re400,ppo,362,144.8,omega,lower,-0.0048194932937622075 +karman_re400,ppo,363,145.2,omega,front,0.008094966411590576 +karman_re400,ppo,363,145.2,omega,upper,-0.04994590282440186 +karman_re400,ppo,363,145.2,omega,lower,-0.007320022583007813 +karman_re400,ppo,364,145.6,omega,front,0.007527141571044922 +karman_re400,ppo,364,145.6,omega,upper,-0.04430128574371338 +karman_re400,ppo,364,145.6,omega,lower,-0.002921552658081055 +karman_re400,ppo,365,146.0,omega,front,0.004822965562343597 +karman_re400,ppo,365,146.0,omega,upper,-0.03690032660961151 +karman_re400,ppo,365,146.0,omega,lower,0.007600088119506836 +karman_re400,ppo,366,146.4,omega,front,0.001615295708179474 +karman_re400,ppo,366,146.4,omega,upper,-0.03136949777603149 +karman_re400,ppo,366,146.4,omega,lower,0.017186169624328614 +karman_re400,ppo,367,146.8,omega,front,-0.00041922383010387424 +karman_re400,ppo,367,146.8,omega,upper,-0.02705573558807373 +karman_re400,ppo,367,146.8,omega,lower,0.024537758827209474 +karman_re400,ppo,368,147.2,omega,front,-0.0019771906733512877 +karman_re400,ppo,368,147.2,omega,upper,-0.020808839797973634 +karman_re400,ppo,368,147.2,omega,lower,0.03306401014328003 +karman_re400,ppo,369,147.6,omega,front,-0.003692007064819336 +karman_re400,ppo,369,147.6,omega,upper,-0.012509407997131348 +karman_re400,ppo,369,147.6,omega,lower,0.042626365423202514 +karman_re400,ppo,370,148.0,omega,front,-0.005320714116096497 +karman_re400,ppo,370,148.0,omega,upper,-0.004494102001190186 +karman_re400,ppo,370,148.0,omega,lower,0.050178048610687254 +karman_re400,ppo,371,148.4,omega,front,-0.006586512923240662 +karman_re400,ppo,371,148.4,omega,upper,0.0002612876892089844 +karman_re400,ppo,371,148.4,omega,lower,0.05349993228912354 +karman_re400,ppo,372,148.8,omega,front,-0.00718591570854187 +karman_re400,ppo,372,148.8,omega,upper,0.00012269973754882812 +karman_re400,ppo,372,148.8,omega,lower,0.05256805419921875 +karman_re400,ppo,373,149.2,omega,front,-0.0067991667985916136 +karman_re400,ppo,373,149.2,omega,upper,-0.005372436046600342 +karman_re400,ppo,373,149.2,omega,lower,0.0489894711971283 +karman_re400,ppo,374,149.6,omega,front,-0.004871247112751007 +karman_re400,ppo,374,149.6,omega,upper,-0.014191570281982422 +karman_re400,ppo,374,149.6,omega,lower,0.04338030457496643 +karman_re400,ppo,375,150.0,omega,front,-0.0021152883768081666 +karman_re400,ppo,375,150.0,omega,upper,-0.021063385009765626 +karman_re400,ppo,375,150.0,omega,lower,0.037415443062782286 +karman_re400,ppo,376,150.4,omega,front,0.0001268763095140457 +karman_re400,ppo,376,150.4,omega,upper,-0.025723905563354493 +karman_re400,ppo,376,150.4,omega,lower,0.03129128098487854 +karman_re400,ppo,377,150.8,omega,front,0.0019409239292144775 +karman_re400,ppo,377,150.8,omega,upper,-0.03237309098243713 +karman_re400,ppo,377,150.8,omega,lower,0.022728055715560913 +karman_re400,ppo,378,151.2,omega,front,0.003898560702800751 +karman_re400,ppo,378,151.2,omega,upper,-0.04111107110977173 +karman_re400,ppo,378,151.2,omega,lower,0.012314672470092774 +karman_re400,ppo,379,151.6,omega,front,0.005790674686431885 +karman_re400,ppo,379,151.6,omega,upper,-0.048519728183746336 +karman_re400,ppo,379,151.6,omega,lower,0.0027838611602783205 +karman_re400,ppo,380,152.0,omega,front,0.007251791954040528 +karman_re400,ppo,380,152.0,omega,upper,-0.05194104909896851 +karman_re400,ppo,380,152.0,omega,lower,-0.004300699234008789 +karman_re400,ppo,381,152.4,omega,front,0.008065903782844544 +karman_re400,ppo,381,152.4,omega,upper,-0.050324485301971436 +karman_re400,ppo,381,152.4,omega,lower,-0.007339720726013184 +karman_re400,ppo,382,152.8,omega,front,0.007683113217353821 +karman_re400,ppo,382,152.8,omega,upper,-0.044960225820541384 +karman_re400,ppo,382,152.8,omega,lower,-0.0037329721450805667 +karman_re400,ppo,383,153.2,omega,front,0.005163065791130066 +karman_re400,ppo,383,153.2,omega,upper,-0.03759150505065918 +karman_re400,ppo,383,153.2,omega,lower,0.006461634635925293 +karman_re400,ppo,384,153.6,omega,front,0.0018857453763484954 +karman_re400,ppo,384,153.6,omega,upper,-0.031803061962127684 +karman_re400,ppo,384,153.6,omega,lower,0.01639030933380127 +karman_re400,ppo,385,154.0,omega,front,-0.00026707395911216734 +karman_re400,ppo,385,154.0,omega,upper,-0.027526283264160158 +karman_re400,ppo,385,154.0,omega,lower,0.023845118284225465 +karman_re400,ppo,386,154.4,omega,front,-0.00182588130235672 +karman_re400,ppo,386,154.4,omega,upper,-0.02152017593383789 +karman_re400,ppo,386,154.4,omega,lower,0.03217864155769348 +karman_re400,ppo,387,154.8,omega,front,-0.0035197857022285462 +karman_re400,ppo,387,154.8,omega,upper,-0.0133406400680542 +karman_re400,ppo,387,154.8,omega,lower,0.04173075675964356 +karman_re400,ppo,388,155.2,omega,front,-0.005167780518531799 +karman_re400,ppo,388,155.2,omega,upper,-0.005157270431518555 +karman_re400,ppo,388,155.2,omega,lower,0.04958855867385864 +karman_re400,ppo,389,155.6,omega,front,-0.0064855688810348516 +karman_re400,ppo,389,155.6,omega,upper,-2.44140625e-06 +karman_re400,ppo,389,155.6,omega,lower,0.053368940353393554 +karman_re400,ppo,390,156.0,omega,front,-0.007166059613227844 +karman_re400,ppo,390,156.0,omega,upper,0.0003333091735839844 +karman_re400,ppo,390,156.0,omega,lower,0.052792115211486815 +karman_re400,ppo,391,156.4,omega,front,-0.006904444694519043 +karman_re400,ppo,391,156.4,omega,upper,-0.004676206111907959 +karman_re400,ppo,391,156.4,omega,lower,0.049435062408447264 +karman_re400,ppo,392,156.8,omega,front,-0.005106676816940308 +karman_re400,ppo,392,156.8,omega,upper,-0.013357696533203125 +karman_re400,ppo,392,156.8,omega,lower,0.04398138523101807 +karman_re400,ppo,393,157.2,omega,front,-0.0023598769307136536 +karman_re400,ppo,393,157.2,omega,upper,-0.02048391819000244 +karman_re400,ppo,393,157.2,omega,lower,0.03798494160175324 +karman_re400,ppo,394,157.6,omega,front,-5.2223131060600284e-05 +karman_re400,ppo,394,157.6,omega,upper,-0.025162590742111208 +karman_re400,ppo,394,157.6,omega,lower,0.03197524905204773 +karman_re400,ppo,395,158.0,omega,front,0.001760086864233017 +karman_re400,ppo,395,158.0,omega,upper,-0.03157390117645264 +karman_re400,ppo,395,158.0,omega,lower,0.02368806838989258 +karman_re400,ppo,396,158.4,omega,front,0.0036925661563873293 +karman_re400,ppo,396,158.4,omega,upper,-0.04029645442962647 +karman_re400,ppo,396,158.4,omega,lower,0.01333545207977295 +karman_re400,ppo,397,158.8,omega,front,0.005610077977180481 +karman_re400,ppo,397,158.8,omega,upper,-0.04796759009361267 +karman_re400,ppo,397,158.8,omega,lower,0.0036295604705810546 +karman_re400,ppo,398,159.2,omega,front,0.00713365375995636 +karman_re400,ppo,398,159.2,omega,upper,-0.05183176040649414 +karman_re400,ppo,398,159.2,omega,lower,-0.0037608671188354495 +karman_re400,ppo,399,159.6,omega,front,0.008028739094734193 +karman_re400,ppo,399,159.6,omega,upper,-0.050665109157562255 +karman_re400,ppo,399,159.6,omega,lower,-0.007301626205444336 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_manifest.json new file mode 100644 index 0000000..e3dacde --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re400", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-cpu-20260721/telemetry/karman_re400__ppo__f-ppo__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_wide.csv new file mode 100644 index 0000000..c3f5b9c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re400,ppo,0,0.0,1.0697855949401855,0.23988139629364014,0.9539531469345093,0.35115817189216614,0.999663770198822,0.26641833782196045,0.00037016390706412494,0.004132154397666454,-0.005233825650066137,0.003106225747615099,0.0030637045856565237,-0.0035607346799224615,0.9655619263648987,-4.6513553857803345,-0.6110382080078125,0.009655619263648987,-0.04651355385780335,-0.006110382080078125 +karman_re400,ppo,1,0.4,1.0283117294311523,0.2772347331047058,0.9600915312767029,0.38422682881355286,1.0439112186431885,0.2980579137802124,0.00322915380820632,0.0030455475207418203,-0.007930700667202473,0.0038476374465972185,0.00224848254583776,-0.0034564503002911806,1.176206111907959,-4.753711223602295,-1.0310888290405273,0.01176206111907959,-0.04753711223602295,-0.010310888290405273 +karman_re400,ppo,2,0.8,0.9860080480575562,0.2841883897781372,0.9655519127845764,0.3812991976737976,1.0865027904510498,0.2998688220977783,0.004912637639790773,0.003568868152797222,-0.00959412194788456,0.00651212502270937,0.002586117945611477,-0.0024978776928037405,1.1813822984695435,-4.3282352685928345,-1.334702968597412,0.011813822984695434,-0.043282352685928345,-0.013347029685974121 +karman_re400,ppo,3,1.2,0.9506587386131287,0.2590928375720978,0.9673001766204834,0.3422739505767822,1.127550482749939,0.28045231103897095,0.0046250587329268456,0.0024215546436607838,-0.007132744882255793,0.00962632056325674,0.00288232765160501,-0.001377625740133226,1.3372193574905396,-3.8986452221870422,-1.4215474128723145,0.013372193574905395,-0.03898645222187042,-0.014215474128723146 +karman_re400,ppo,4,1.6,0.925518810749054,0.2013799250125885,0.9585477709770203,0.2632913887500763,1.1658846139907837,0.24667905271053314,0.004558409098535776,0.0011083978461101651,-0.0033638733439147472,0.009525759145617485,0.002492665546014905,-0.0007792615797370672,1.060455083847046,-2.577635884284973,0.538172721862793,0.010604550838470459,-0.025776358842849734,0.00538172721862793 +karman_re400,ppo,5,2.0,0.9112507700920105,0.11316239088773727,0.9451350569725037,0.13824059069156647,1.1928470134735107,0.18309150636196136,0.0032454391475766897,0.0002969767665490508,-0.0010521870572119951,0.008472481742501259,0.001801856211386621,-0.001243333681486547,0.5198087692260742,-1.7491834163665774,2.285651206970215,0.005198087692260742,-0.017491834163665773,0.02285651206970215 +karman_re400,ppo,6,2.4,0.9052215814590454,-0.003088129684329033,0.9422567486763,-0.004773133434355259,1.190119981765747,0.07393243163824081,0.001752867130562663,-0.0005918442620895803,0.0005500779370777309,0.007855398580431938,0.0009072946850210428,-0.0021269586868584156,0.18802697956562042,-1.4770963191986084,3.1388288736343384,0.0018802697956562043,-0.014770963191986085,0.03138828873634338 +karman_re400,ppo,7,2.8,0.911203920841217,-0.11771843582391739,0.9469475746154785,-0.13229811191558838,1.1549681425094604,-0.05336739122867584,0.0008539148257113993,-0.0016084032831713557,0.0019479126203805208,0.007288211956620216,-4.2965024476870894e-05,-0.002761632204055786,-0.05953999608755111,-1.1790690422058105,3.8565500378608704,-0.0005953999608755111,-0.011790690422058105,0.0385655003786087 +karman_re400,ppo,8,3.2,0.9361105561256409,-0.19423021376132965,0.9472204446792603,-0.24158990383148193,1.1178326606750488,-0.14621402323246002,0.0006586161907762289,-0.002426581457257271,0.002916064579039812,0.00627818563953042,-0.0009903616737574339,-0.003151599783450365,-0.28509023785591125,-0.8041861057281494,4.556513071060181,-0.0028509023785591127,-0.008041861057281495,0.04556513071060181 +karman_re400,ppo,9,3.6,0.9716002941131592,-0.24438290297985077,0.9471539855003357,-0.31341803073883057,1.0855125188827515,-0.2039393186569214,0.0009245473193004727,-0.002943670377135277,0.003369612153619528,0.005090011283755302,-0.0017326361266896129,-0.0033760739024728537,-0.473181813955307,-0.5756008625030518,4.944220542907715,-0.00473181813955307,-0.005756008625030518,0.04944220542907715 +karman_re400,ppo,10,4.0,1.0092700719833374,-0.2782403528690338,0.9487602114677429,-0.34454771876335144,1.0485584735870361,-0.23593451082706451,0.0013567678397521377,-0.0031432874966412783,0.0034757256507873535,0.004112428054213524,-0.001982270274311304,-0.0036293112207204103,-0.5874704718589783,-0.5341229438781738,5.0003437995910645,-0.005874704718589783,-0.005341229438781739,0.05000343799591064 +karman_re400,ppo,11,4.4,1.0467971563339233,-0.28618842363357544,0.9502102136611938,-0.34226033091545105,1.0126793384552002,-0.23885458707809448,0.0017347123939543962,-0.002892788965255022,0.003228541696444154,0.003526453161612153,-0.0016654637875035405,-0.003959733061492443,-0.6132676005363464,-0.7245869636535645,4.82179594039917,-0.006132676005363464,-0.007245869636535645,0.0482179594039917 +karman_re400,ppo,12,4.8,1.0820688009262085,-0.26945897936820984,0.9484195113182068,-0.30369824171066284,0.983634889125824,-0.2081567943096161,0.001858658972196281,-0.0021825393196195364,0.0025551212020218372,0.0033837815281003714,-0.0009265941334888339,-0.004307701718062162,-0.53644198179245,-1.1668994426727295,4.404845356941223,-0.0053644198179244994,-0.011668994426727294,0.044048453569412234 +karman_re400,ppo,13,5.2,1.1141557693481445,-0.24151597917079926,0.9348034858703613,-0.23187506198883057,0.9612672924995422,-0.1424875408411026,0.0016276284586638212,-0.0011419352376833558,0.0016020748298615217,0.003491680370643735,2.5789413484744728e-06,-0.00462265545502305,-0.3511675000190735,-1.7743186950683596,3.7678651809692383,-0.003511675000190735,-0.017743186950683595,0.03767865180969238 +karman_re400,ppo,14,5.6,1.141162633895874,-0.2001975178718567,0.9075438976287842,-0.12461236864328384,0.9414620399475098,-0.03781120106577873,0.0011483117705211043,0.0001233234506798908,0.0004902434884570539,0.0035706053022295237,0.0010389989474788308,-0.004952920600771904,-0.09175891429185867,-2.44411563873291,2.991872191429138,-0.0009175891429185867,-0.0244411563873291,0.02991872191429138 +karman_re400,ppo,15,6.0,1.1538583040237427,-0.13663311302661896,0.8749247193336487,0.0073355333879590034,0.9256270527839661,0.08948411792516708,0.0007169987075030804,0.0013714933302253485,-0.0007283957093022764,0.003479121020063758,0.0021353892516344786,-0.005319681949913502,0.2067190706729889,-3.1952569484710693,2.0891005992889404,0.002067190706729889,-0.031952569484710695,0.020891005992889403 +karman_re400,ppo,16,6.4,1.1417747735977173,-0.050496891140937805,0.844860315322876,0.13949455320835114,0.9302399158477783,0.1945352554321289,0.0006885050097480416,0.0023458406794816256,-0.0021117778960615396,0.003327034180983901,0.003094477578997612,-0.005545659456402063,0.5006052851676941,-4.012594103813171,1.1239395141601562,0.005006052851676941,-0.04012594103813171,0.011239395141601563 +karman_re400,ppo,17,6.8,1.1044647693634033,0.04318239167332649,0.8136294484138489,0.2575685679912567,0.9553070068359375,0.2742341160774231,0.001371239311993122,0.002956278854981065,-0.0036601030733436346,0.003290449967607856,0.00372114684432745,-0.005308992695063353,0.7447426915168762,-4.726958990097046,0.2239577770233154,0.007447426915168762,-0.04726958990097046,0.002239577770233154 +karman_re400,ppo,18,7.2,1.0549860000610352,0.1197994127869606,0.7812243700027466,0.34188008308410645,0.9884292483329773,0.34178662300109863,0.002497446723282337,0.003405496245250106,-0.005023975390940905,0.0037936398293823004,0.003967576194554567,-0.0043329200707376,0.9215883016586305,-5.133645534515381,-0.5022721290588379,0.009215883016586305,-0.05133645534515381,-0.005022721290588379 +karman_re400,ppo,19,7.6,1.0078696012496948,0.1669115424156189,0.7477695345878601,0.38223111629486084,1.0243253707885742,0.38713452219963074,0.0033493065275251865,0.003598282113671303,-0.0052276067435741425,0.005012610461562872,0.004211382940411568,-0.0029581852722913027,1.0428462028503418,-5.052646160125732,-0.8895750045776368,0.010428462028503418,-0.05052646160125732,-0.008895750045776368 +karman_re400,ppo,20,8.0,0.9705017805099487,0.18053117394447327,0.7090480923652649,0.3724246621131897,1.062427282333374,0.41163918375968933,0.0038577336817979813,0.0032173481304198503,-0.00391421327367425,0.006161287892609835,0.004218542482703924,-0.0018226269166916609,1.0562453269958496,-4.569212555885315,-0.6236686706542969,0.010562453269958496,-0.04569212555885315,-0.006236686706542969 +karman_re400,ppo,21,8.4,0.9465820789337158,0.15902936458587646,0.6599252223968506,0.3089146018028259,1.1054385900497437,0.42610880732536316,0.003911163192242384,0.0025317161343991756,-0.0021627037785947323,0.00654313899576664,0.00366131030023098,-0.0015609817346557975,0.8542749285697938,-3.8469584584236145,0.31005024909973145,0.008542749285697938,-0.03846958458423615,0.0031005024909973146 +karman_re400,ppo,22,8.8,0.9327890872955322,0.09718307852745056,0.6007691025733948,0.18555286526679993,1.1593154668807983,0.39580798149108887,0.0031038913875818253,0.0016700943233445287,-0.0007957866182550788,0.006561700254678726,0.0026241899468004704,-0.0021685443352907896,0.5203670859336853,-3.2128103971481323,1.3025312423706055,0.005203670859336853,-0.032128103971481324,0.013025312423706055 +karman_re400,ppo,23,9.2,0.9180921316146851,-0.008913089521229267,0.5540997385978699,-0.007933571003377438,1.1947687864303589,0.19649219512939453,0.001919504371471703,0.0005788017879240215,0.00040203347452916205,0.006758562289178371,0.001462098560295999,-0.0029298553708940744,0.19354751706123352,-2.6774239540100098,2.1392476558685303,0.0019354751706123353,-0.0267742395401001,0.021392476558685303 +karman_re400,ppo,24,9.6,0.9134219288825989,-0.12994346022605896,0.5528923869132996,-0.23651009798049927,1.1562659740447998,-0.17199823260307312,0.0010110825533047318,-0.0006844025338068604,0.0016182363033294678,0.00698485504835844,0.00022276215895544738,-0.003403755370527506,-0.09411347657442093,-2.0845608711242676,3.035325288772583,-0.0009411347657442093,-0.020845608711242677,0.03035325288772583 +karman_re400,ppo,25,10.0,0.9364515542984009,-0.23026083409786224,0.6056062579154968,-0.4215051233768463,1.0470728874206543,-0.4949010908603668,0.0006523933261632919,-0.0018000846030190587,0.0027110022492706776,0.006946225184947252,-0.0011363893281668425,-0.0035008923150599003,-0.336513876914978,-1.4026408195495605,4.001380562782288,-0.0033651387691497805,-0.014026408195495606,0.04001380562782288 +karman_re400,ppo,26,10.4,0.9797163605690002,-0.3128501772880554,0.6750136017799377,-0.545356810092926,0.9254534840583801,-0.6337651610374451,0.000885940040461719,-0.0025883426424115896,0.0035185953602194786,0.00634761992841959,-0.0024519688449800014,-0.003481159918010235,-0.5152559280395508,-0.6971092224121094,4.822193741798401,-0.005152559280395508,-0.006971092224121094,0.04822193741798401 +karman_re400,ppo,27,10.8,1.0360888242721558,-0.3726045489311218,0.7304676175117493,-0.6331583857536316,0.8280915021896362,-0.6430702805519104,0.0014881602255627513,-0.003067431040108204,0.003901195013895631,0.005240325815975666,-0.0033856467343866825,-0.003639898030087352,-0.6438252329826355,-0.1836392879486084,5.278972387313843,-0.006438252329826355,-0.001836392879486084,0.052789723873138426 +karman_re400,ppo,28,11.2,1.1027528047561646,-0.39126670360565186,0.7749141454696655,-0.6789815425872803,0.7518973350524902,-0.6081429123878479,0.002024926245212555,-0.0033061832655221224,0.0039969561621546745,0.004033971577882767,-0.0034957488533109426,-0.004239935427904129,-0.712151288986206,-0.0607912540435791,5.303975582122803,-0.007121512889862061,-0.000607912540435791,0.05303975582122803 +karman_re400,ppo,29,11.6,1.1733202934265137,-0.3689994812011719,0.808438777923584,-0.6744527220726013,0.6849836707115173,-0.5404576659202576,0.0022277578245848417,-0.0031376234255731106,0.0037709339521825314,0.0032614318188279867,-0.002583848312497139,-0.005041654221713543,-0.6996230483055115,-0.4396555423736573,5.013686895370483,-0.006996230483055115,-0.004396555423736573,0.05013686895370484 +karman_re400,ppo,30,12.0,1.2267706394195557,-0.2832808792591095,0.8341386914253235,-0.5746832489967346,0.6280498504638672,-0.42102497816085815,0.0021343936678022146,-0.0025465888902544975,0.003013947047293186,0.003204561537131667,-0.0011818154016509652,-0.005438116379082203,-0.5468104481697083,-1.2322587966918945,4.4785847663879395,-0.005468104481697083,-0.012322587966918945,0.04478584766387939 +karman_re400,ppo,31,12.4,1.2288951873779297,-0.11134698987007141,0.8663381338119507,-0.28179362416267395,0.5929781198501587,-0.24205775558948517,0.001692430698312819,-0.0016447327798232436,0.0019110174616798759,0.003516842145472765,4.377839286462404e-05,-0.005462145432829857,-0.26857054233551025,-2.015679121017456,3.834543168544769,-0.0026857054233551027,-0.020156791210174562,0.03834543168544769 +karman_re400,ppo,32,12.8,1.1925556659698486,0.07214398682117462,0.8987957835197449,0.14899086952209473,0.5961896181106567,-0.017976179718971252,0.0011137520195916295,-0.00035782920895144343,0.0006991326226852834,0.003681960515677929,0.0011572744697332382,-0.00555829331278801,0.004045754671096802,-2.5678893327713013,3.1965446472167964,4.045754671096802e-05,-0.025678893327713014,0.031965446472167966 +karman_re400,ppo,33,13.2,1.1471714973449707,0.2030923217535019,0.9185618758201599,0.5139608383178711,0.650165319442749,0.19673259556293488,0.0007023087819106877,0.0010380723979324102,-0.0006099615129642189,0.0035374409053474665,0.0022715891245752573,-0.005841595120728016,0.2392915785312653,-3.1849048733711243,2.3827089071273804,0.002392915785312653,-0.03184904873371124,0.023827089071273806 +karman_re400,ppo,34,13.6,1.074751377105713,0.30717194080352783,0.9239153265953064,0.6979742646217346,0.7502144575119019,0.33087849617004395,0.0006838610279373825,0.0021456603426486254,-0.0020738947205245495,0.0032740733586251736,0.0032329291570931673,-0.006019089370965958,0.4594495892524719,-3.984115958213806,1.3757355213165283,0.00459449589252472,-0.03984115958213806,0.013757355213165283 +karman_re400,ppo,35,14.0,0.9807812571525574,0.38974830508232117,0.9230201244354248,0.7464232444763184,0.8635976910591125,0.3980512320995331,0.0012506053317338228,0.0028264406137168407,-0.0037208301946520805,0.0031317826360464096,0.0037925399374216795,-0.00573782017454505,0.6382611393928528,-4.742764592170715,0.4015023708343506,0.006382611393928528,-0.04742764592170715,0.004015023708343506 +karman_re400,ppo,36,14.4,0.8839812278747559,0.43783485889434814,0.9244820475578308,0.7695698738098145,0.9721357822418213,0.4402565658092499,0.002227206015959382,0.0032857318874448538,-0.005181257613003254,0.003578589065000415,0.003964982461184263,-0.004746909253299236,0.7749878168106079,-5.178661108016968,-0.3842754364013672,0.007749878168106079,-0.05178661108016968,-0.003842754364013672 +karman_re400,ppo,37,14.8,0.7898731827735901,0.4385194480419159,0.9249467253684998,0.7882203459739685,1.0756932497024536,0.4473477303981781,0.002965290565043688,0.003560187527909875,-0.005458580795675516,0.0049050310626626015,0.004165024030953646,-0.003350903745740652,0.8698590993881227,-5.10424542427063,-0.8088855743408203,0.008698590993881226,-0.0510424542427063,-0.008088855743408204 +karman_re400,ppo,38,15.2,0.7026240825653076,0.37783145904541016,0.9229143261909485,0.7688121795654297,1.1707611083984375,0.3946337103843689,0.0033071665093302727,0.0032727697398513556,-0.0039831469766795635,0.006330958101898432,0.004253641702234745,-0.002186525845900178,0.8606464266777039,-4.607102751731873,-0.5709781646728516,0.008606464266777039,-0.04607102751731872,-0.005709781646728516 +karman_re400,ppo,39,15.6,0.6342210173606873,0.24846887588500977,0.9314842224121094,0.5585386753082275,1.237274408340454,0.26681065559387207,0.0033137532882392406,0.0026440713554620743,-0.0019288589246571064,0.006867269054055214,0.003723632311448455,-0.0018816202646121383,0.6310223340988159,-3.8640722036361694,0.4205982685089112,0.006310223340988159,-0.038640722036361694,0.004205982685089112 +karman_re400,ppo,40,16.0,0.6061009764671326,0.05979825556278229,0.9613258838653564,0.07067795097827911,1.235447645187378,0.06922449171543121,0.002595908008515835,0.0018384301802143455,-0.0003980605979450047,0.006861012428998947,0.002638925099745393,-0.0025023671332746744,0.28943005204200745,-3.245747685432434,1.472287654876709,0.0028943005204200745,-0.03245747685432434,0.01472287654876709 +karman_re400,ppo,41,16.4,0.6412580013275146,-0.13407522439956665,0.9836573600769043,-0.4039073586463928,1.1882108449935913,-0.09873168915510178,0.0016020365292206407,0.0007179483654908836,0.000760988681577146,0.006934489589184523,0.001377134001813829,-0.0032521123066544533,0.05371788144111633,-2.822873830795288,2.2407766580581665,0.0005371788144111633,-0.02822873830795288,0.022407766580581665 +karman_re400,ppo,42,16.8,0.7362985014915466,-0.262495219707489,0.983414888381958,-0.6314606666564941,1.1262584924697876,-0.2087736874818802,0.000912397401407361,-0.0006571643752977252,0.001896527362987399,0.0070375786162912846,4.6132267016218975e-05,-0.0036244711373001337,-0.09575936943292618,-2.2719361782073975,3.0284852981567383,-0.0009575936943292618,-0.022719361782073975,0.030284852981567384 +karman_re400,ppo,43,17.2,0.8429701924324036,-0.34552061557769775,0.9731826186180115,-0.6704360842704773,1.040305495262146,-0.3025784492492676,0.0006756067159585655,-0.0018616091692820191,0.002915887860581279,0.00691137183457613,-0.001350883743725717,-0.0036282518412917852,-0.2642744481563568,-1.4846811294555664,3.9700920581817627,-0.0026427444815635684,-0.014846811294555664,0.03970092058181763 +karman_re400,ppo,44,17.6,0.9414170980453491,-0.4074585437774658,0.9716069102287292,-0.6831996440887451,0.9452003240585327,-0.3772248923778534,0.0008919417741708457,-0.0026433118619024754,0.0036554259713739157,0.006330253556370735,-0.0026907576248049736,-0.003602223936468363,-0.4373330175876618,-0.6631960868835449,4.800948739051819,-0.004373330175876618,-0.006631960868835449,0.04800948739051819 +karman_re400,ppo,45,18.0,1.0362814664840698,-0.4417150616645813,0.9783148169517517,-0.7030138373374939,0.8530290126800537,-0.4143136143684387,0.0014490284956991673,-0.003104578936472535,0.003982739057391882,0.005238409154117107,-0.003635575994849205,-0.003859959775581956,-0.5800138115882874,-0.10108304023742677,5.2604711055755615,-0.005800138115882873,-0.0010108304023742677,0.052604711055755614 +karman_re400,ppo,46,18.4,1.1236233711242676,-0.4361841678619385,0.9881283640861511,-0.7034168243408203,0.7626779675483704,-0.4003148674964905,0.0019388762302696705,-0.003366147167980671,0.004022297449409962,0.004029525443911552,-0.0037382636219263077,-0.004555025603622198,-0.6597523093223572,0.0034074783325195317,5.272880554199219,-0.006597523093223572,3.4074783325195316e-05,0.05272880554199219 +karman_re400,ppo,47,18.8,1.1985257863998413,-0.38288214802742004,1.0006252527236938,-0.6517385840415955,0.6773797869682312,-0.32292354106903076,0.002115667797625065,-0.0032513043843209743,0.003802185645326972,0.003222032217308879,-0.0027539562433958054,-0.005351675674319267,-0.6482433676719666,-0.39439010620117193,4.976940155029297,-0.006482433676719666,-0.003943901062011719,0.04976940155029297 +karman_re400,ppo,48,19.2,1.2421218156814575,-0.27341321110725403,1.0167243480682373,-0.41948139667510986,0.6110506653785706,-0.17526714503765106,0.002045782282948494,-0.0027053249068558216,0.0030731975566595793,0.003132353536784649,-0.0012661012588068843,-0.005680498667061329,-0.4965402781963348,-1.1915812492370605,4.466928482055664,-0.004965402781963348,-0.011915812492370606,0.04466928482055664 +karman_re400,ppo,49,19.6,1.2171835899353027,-0.09804436564445496,1.0268574953079224,0.025724615901708603,0.5906767249107361,0.023131556808948517,0.001665037008933723,-0.0018147713271901011,0.0020183136221021414,0.0034747025929391384,2.514636071282439e-05,-0.005655537825077772,-0.23458930850028992,-1.947885513305664,3.856302857398987,-0.002345893085002899,-0.019478855133056642,0.03856302857398987 +karman_re400,ppo,50,20.0,1.1398468017578125,0.07829371094703674,1.0149264335632324,0.4282722473144531,0.6392368078231812,0.20631559193134308,0.001138031017035246,-0.0005289429682306945,0.0008284284849651158,0.00367533415555954,0.0011512533528730273,-0.0057556964457035065,-0.007524810731410981,-2.4613550901412964,3.2569276094436646,-7.524810731410981e-05,-0.024613550901412963,0.03256927609443665 +karman_re400,ppo,51,20.4,1.0697579383850098,0.18972735106945038,0.984225332736969,0.6088835597038269,0.743660569190979,0.3069702088832855,0.000745645840652287,0.0009140250040218234,-0.0004821671172976494,0.003569538239389658,0.0022470708936452866,-0.006009442266076803,0.16638332605361938,-3.090367376804352,2.4686248302459717,0.001663833260536194,-0.030903673768043517,0.024686248302459718 +karman_re400,ppo,52,20.8,1.0020592212677002,0.26423633098602295,0.9548987746238708,0.6373371481895447,0.8538997769355774,0.3635883033275604,0.0006441764417104423,0.0020554738584905863,-0.001950695994310081,0.003292292356491089,0.0031628787983208895,-0.0061288271099328995,0.3510113060474396,-3.9430418014526367,1.4578619003295898,0.003510113060474396,-0.03943041801452637,0.0145786190032959 +karman_re400,ppo,53,21.2,0.9170098900794983,0.32821422815322876,0.9386727213859558,0.6580369472503662,0.952259361743927,0.41389578580856323,0.001067619537934661,0.002756110392510891,-0.0035441038198769093,0.0031249576713889837,0.0037304896395653486,-0.005814006552100182,0.544316291809082,-4.72287118434906,0.4682118892669678,0.00544316291809082,-0.0472287118434906,0.004682118892669678 +karman_re400,ppo,54,21.6,0.8236914277076721,0.3691445291042328,0.9271118640899658,0.6948009729385376,1.0460402965545654,0.4492819309234619,0.0019622331019490957,0.00321344961412251,-0.004918340593576431,0.003503571730107069,0.00394490035250783,-0.004855966195464134,0.7031610608100891,-5.156223297119141,-0.31320858001708984,0.0070316106081008915,-0.051562232971191405,-0.0031320858001708985 +karman_re400,ppo,55,22.0,0.7348333597183228,0.36809447407722473,0.9140084981918335,0.7191826701164246,1.1387104988098145,0.44748324155807495,0.0027267709374427795,0.00351988198235631,-0.005227231420576572,0.004743882920593023,0.004157213028520346,-0.0035197637043893337,0.8015545010566711,-5.1070356369018555,-0.7329049110412598,0.008015545010566711,-0.051070356369018556,-0.007329049110412598 +karman_re400,ppo,56,22.4,0.6581509113311768,0.31145337224006653,0.8941996693611145,0.7033726572990417,1.2271640300750732,0.38872432708740234,0.003059468464925885,0.0033334880135953426,-0.0038683624006807804,0.006200700532644987,0.004288224503397942,-0.0023562174756079912,0.7982106804847717,-4.659562349319458,-0.544649600982666,0.007982106804847717,-0.04659562349319458,-0.005446496009826661 +karman_re400,ppo,57,22.8,0.6024361252784729,0.19577337801456451,0.8755455017089844,0.5024217367172241,1.2856543064117432,0.25467541813850403,0.0030892626382410526,0.002722698263823986,-0.001868091057986021,0.006803533528000116,0.0037660193629562855,-0.002011440694332123,0.5929539799690247,-3.954283714294433,0.38043212890625,0.0059295397996902465,-0.039542837142944334,0.0038043212890625 +karman_re400,ppo,58,23.2,0.5858014822006226,0.03450210019946098,0.8818448781967163,0.03790593519806862,1.2761462926864624,0.054318927228450775,0.0024679861962795258,0.0019453425193205476,-0.00036578430444933474,0.006786903366446495,0.002673080191016197,-0.0025654532946646214,0.2574254274368286,-3.319401979446411,1.4349637031555176,0.002574254274368286,-0.03319401979446411,0.014349637031555175 +karman_re400,ppo,59,23.6,0.6272939443588257,-0.12641501426696777,0.9034505486488342,-0.41981181502342224,1.2250539064407349,-0.11104857176542282,0.0015507404459640384,0.0008363495580852032,0.0007641225820407271,0.0068112947046756744,0.001402934081852436,-0.003282375866547227,0.015494227409362793,-2.887394070625305,2.2002146244049072,0.00015494227409362793,-0.028873940706253053,0.022002146244049073 +karman_re400,ppo,60,24.0,0.7222524285316467,-0.23360703885555267,0.9210032820701599,-0.6453066468238831,1.1572970151901245,-0.219077467918396,0.0009256554185412824,-0.0005481037660501897,0.0019100930076092482,0.006942687556147575,9.911016240948811e-05,-0.0036448731552809477,-0.1402827799320221,-2.344076633453369,2.977991819381714,-0.001402827799320221,-0.02344076633453369,0.02977991819381714 +karman_re400,ppo,61,24.4,0.8274843692779541,-0.3124828636646271,0.9314430952072144,-0.6802943348884583,1.0682692527770996,-0.3116527795791626,0.0007149866432882845,-0.0017974739894270897,0.002944416366517544,0.006903655361384153,-0.001305850106291473,-0.0036616292782127857,-0.30990779399871826,-1.5611004829406738,3.9341067075729366,-0.0030990779399871827,-0.015611004829406739,0.03934106707572937 +karman_re400,ppo,62,24.8,0.9232935309410095,-0.38181522488594055,0.9438239932060242,-0.6836236715316772,0.9724769592285156,-0.38808658719062805,0.0009535998688079417,-0.0026254565455019474,0.0036924919113516808,0.006410375237464905,-0.002702524419873953,-0.003639797680079937,-0.48478725552558904,-0.7113683223724365,4.802701234817505,-0.00484787255525589,-0.007113683223724365,0.04802701234817505 +karman_re400,ppo,63,25.2,1.0145801305770874,-0.4250245690345764,0.9574452042579651,-0.7035523056983948,0.8791075944900513,-0.429676353931427,0.0015324638225138187,-0.00311227492056787,0.0040000369772315025,0.005335300695151091,-0.0037734447978436947,-0.003853729460388422,-0.6332935690879822,-0.09904861450195311,5.300652742385864,-0.006332935690879822,-0.0009904861450195312,0.05300652742385864 +karman_re400,ppo,64,25.6,1.0998455286026,-0.430725634098053,0.9718039035797119,-0.7090639472007751,0.7880091667175293,-0.4228786826133728,0.0020763231441378593,-0.003406160743907094,0.0040445211343467236,0.0040589687414467335,-0.003999544773250818,-0.0045139603316783905,-0.7191061973571777,0.06978654861450195,5.3322434425354,-0.007191061973571777,0.0006978654861450195,0.053322434425354004 +karman_re400,ppo,65,26.0,1.1741571426391602,-0.3876643478870392,0.9882684946060181,-0.6701991558074951,0.7006049156188965,-0.35455837845802307,0.002307876944541931,-0.003314411733299494,0.0038818714674562216,0.0031751489732414484,-0.0030484430026263,-0.005330222193151712,-0.7179409861564636,-0.28603386878967285,5.042388677597046,-0.007179409861564637,-0.0028603386878967288,0.05042388677597046 +karman_re400,ppo,66,26.4,1.224071741104126,-0.2919536530971527,1.0100442171096802,-0.47865885496139526,0.6296433210372925,-0.2154204249382019,0.002274456899613142,-0.00280710868537426,0.0032303130719810724,0.0030348889995366335,-0.0014999572886154056,-0.005739273503422737,-0.5757145881652832,-1.0916962623596191,4.533883571624756,-0.005757145881652832,-0.01091696262359619,0.04533883571624756 +karman_re400,ppo,67,26.8,1.2142213582992554,-0.12896084785461426,1.028689980506897,-0.056236132979393005,0.601508378982544,-0.016937728971242905,0.001869514468125999,-0.0019550370052456856,0.002204104559496045,0.0034206958953291178,-0.0001380819594487548,-0.005737704690545797,-0.3097113072872162,-1.9029264450073242,3.921332716941833,-0.0030971130728721617,-0.019029264450073243,0.03921332716941833 +karman_re400,ppo,68,27.2,1.1431273221969604,0.052187517285346985,1.0215376615524292,0.373173326253891,0.6394984126091003,0.1798047423362732,0.0012506144121289253,-0.0007020652992650867,0.0009989278623834252,0.003697618143633008,0.0009854822419583797,-0.005817918572574854,-0.059698544442653656,-2.431311845779419,3.3343028426170354,-0.0005969854444265366,-0.02431311845779419,0.03334302842617035 +karman_re400,ppo,69,27.6,1.0689547061920166,0.17608177661895752,0.9897641539573669,0.5904733538627625,0.7372401356697083,0.29634809494018555,0.000764158321544528,0.0007589124143123627,-0.0003372651699464768,0.003614455694332719,0.0020765094086527824,-0.006033558398485184,0.12756411731243134,-3.013874650001526,2.579758882522583,0.0012756411731243134,-0.03013874650001526,0.025797588825225832 +karman_re400,ppo,70,28.0,1.0005784034729004,0.25684067606925964,0.9571271538734436,0.6343925595283508,0.8468551635742188,0.35912373661994934,0.0005905330181121826,0.001954727340489626,-0.0018023719312623143,0.0033145330380648375,0.003036252222955227,-0.006138080731034279,0.3173741400241852,-3.8367244005203247,1.5777645111083984,0.0031737414002418517,-0.03836724400520325,0.015777645111083986 +karman_re400,ppo,71,28.4,0.9169908165931702,0.324285089969635,0.9385485649108887,0.6562961339950562,0.9450122117996216,0.41232916712760925,0.0009669074206613004,0.0026857424527406693,-0.003358381800353527,0.0031008152291178703,0.0036947515327483416,-0.005878348369151354,0.5175468325614929,-4.637945294380188,0.5684502124786377,0.005175468325614929,-0.04637945294380188,0.005684502124786377 +karman_re400,ppo,72,28.8,0.8262069225311279,0.3698241114616394,0.9283903241157532,0.6940111517906189,1.0402122735977173,0.45051613450050354,0.0018396229716017842,0.003157645231112838,-0.004777648951858282,0.003428408410400152,0.003961865324527025,-0.005008555017411709,0.6808274388313293,-5.133059978485107,-0.23594951629638672,0.006808274388313293,-0.05133059978485108,-0.0023594951629638673 +karman_re400,ppo,73,29.2,0.7390957474708557,0.3742016553878784,0.9184997081756592,0.7202895283699036,1.1346712112426758,0.4524393081665039,0.002648468129336834,0.003494054777547717,-0.0052423118613660336,0.004622573032975197,0.004154381342232227,-0.003701266832649708,0.7866551280021669,-5.1446497440338135,-0.6998748779296875,0.007866551280021668,-0.051446497440338135,-0.006998748779296875 +karman_re400,ppo,74,29.6,0.6604616641998291,0.3236132562160492,0.9010312557220459,0.7110967040061951,1.2229642868041992,0.3989078998565674,0.0029789365362375975,0.003379311878234148,-0.0040635294280946255,0.006114676129072905,0.004284020513296127,-0.002481703879311681,0.7972667813301088,-4.72692084312439,-0.5825190544128418,0.007972667813301087,-0.047269208431243895,-0.005825190544128418 +karman_re400,ppo,75,30.0,0.6007806062698364,0.21293489634990692,0.8834779262542725,0.5348050594329834,1.2834914922714233,0.27276796102523804,0.0030425130389630795,0.0027913975063711405,-0.002065894426777959,0.00676792161539197,0.0038048739079385996,-0.0020163049921393394,0.6183461546897888,-4.023306131362915,0.27706265449523926,0.006183461546897888,-0.04023306131362915,0.0027706265449523927 +karman_re400,ppo,76,30.4,0.5781037211418152,0.053711600601673126,0.8883855938911438,0.0890146791934967,1.2779417037963867,0.07676318287849426,0.00250941957347095,0.0020305467769503593,-0.0004989184089936316,0.006738829426467419,0.0027517620474100113,-0.0024862748105078936,0.2867654263973236,-3.3600614070892334,1.3441481590270996,0.002867654263973236,-0.033600614070892335,0.013441481590270997 +karman_re400,ppo,77,30.8,0.6129432916641235,-0.11247286945581436,0.9082363843917847,-0.3817331790924072,1.2292410135269165,-0.09362699836492538,0.00162972928956151,0.0009593801223672926,0.0006805540760979056,0.006765354890376329,0.001521965372376144,-0.0032019750215113163,0.03290031850337982,-2.922278881072998,2.124436616897583,0.0003290031850337982,-0.029222788810729983,0.02124436616897583 +karman_re400,ppo,78,31.2,0.7064066529273987,-0.22781433165073395,0.9262031316757202,-0.6334933638572693,1.166278600692749,-0.20635925233364105,0.0009815943194553256,-0.0004141695098951459,0.0018424508161842823,0.006937343627214432,0.000240124121773988,-0.003615992609411478,-0.12856590747833252,-2.4042625427246094,2.897244691848755,-0.0012856590747833251,-0.024042625427246094,0.02897244691848755 +karman_re400,ppo,79,31.6,0.8157665729522705,-0.3054613471031189,0.9358099102973938,-0.6826447248458862,1.0797408819198608,-0.30193188786506653,0.0007278036791831255,-0.0016925266245380044,0.002877084305509925,0.006949258036911488,-0.0011662263423204422,-0.003666408360004425,-0.29792022705078125,-1.640708923339844,3.8531956076622014,-0.0029792022705078126,-0.01640708923339844,0.03853195607662201 +karman_re400,ppo,80,32.0,0.9130914807319641,-0.37567073106765747,0.9457258582115173,-0.684734582901001,0.9824248552322388,-0.3824421167373657,0.0009067603386938572,-0.002564704976975918,0.0036267286632210016,0.0064935279078781605,-0.0026054636109620333,-0.0036117825657129288,-0.4725893437862397,-0.7822914123535156,4.743385076522827,-0.004725893437862397,-0.007822914123535156,0.04743385076522827 +karman_re400,ppo,81,32.4,1.004876971244812,-0.42113468050956726,0.9580942392349243,-0.7044098377227783,0.8874421715736389,-0.42846283316612244,0.0014688961673527956,-0.0030769663862884045,0.00396561436355114,0.005431798752397299,-0.003734415164217353,-0.00375761860050261,-0.6210595369338989,-0.12243390083312988,5.278127193450928,-0.006210595369338989,-0.0012243390083312988,0.05278127193450928 +karman_re400,ppo,82,32.8,1.090876579284668,-0.430540531873703,0.9718685150146484,-0.7129156589508057,0.794898509979248,-0.42656978964805603,0.0020585216116160154,-0.0033862944692373276,0.004054217133671045,0.0041441526263952255,-0.0040433332324028015,-0.004373795818537474,-0.7113367915153503,0.09775972366333008,5.345710515975952,-0.007113367915153504,0.0009775972366333008,0.05345710515975952 +karman_re400,ppo,83,33.2,1.1681195497512817,-0.3901364803314209,0.9904354214668274,-0.6799082159996033,0.7074181437492371,-0.36331698298454285,0.0023231753148138523,-0.0033425658475607634,0.003958091605454683,0.003215571865439415,-0.0031537609174847603,-0.005268248729407787,-0.7224612832069397,-0.21589207649230957,5.082527160644531,-0.007224612832069397,-0.0021589207649230957,0.050825271606445316 +karman_re400,ppo,84,33.6,1.2233071327209473,-0.2974966764450073,1.0161117315292358,-0.501885175704956,0.6354665160179138,-0.22863805294036865,0.0023180677089840174,-0.0028649093583226204,0.003362078685313463,0.0030341416131705046,-0.00158542615827173,-0.005772843491286039,-0.5997498631477356,-1.0202546119689941,4.595916748046875,-0.005997498631477356,-0.010202546119689942,0.04595916748046875 +karman_re400,ppo,85,34.0,1.2184443473815918,-0.13842086493968964,1.0377541780471802,-0.0850655809044838,0.6024790406227112,-0.03135809302330017,0.001929654274135828,-0.002060417551547289,0.0023214512038975954,0.0034207715652883053,-0.00021969174849800766,-0.005764614790678024,-0.34049227833747864,-1.8710408210754395,3.9835593700408936,-0.0034049227833747864,-0.018710408210754394,0.039835593700408935 +karman_re400,ppo,86,34.4,1.1486300230026245,0.042463526129722595,1.0314220190048218,0.3535716235637665,0.6347659826278687,0.16958937048912048,0.0012964211637154222,-0.0008432152098976076,0.0011010628659278154,0.0037113833241164684,0.0008664256893098354,-0.005762969143688679,-0.08229019492864609,-2.3907532691955566,3.4045846462249756,-0.0008229019492864609,-0.023907532691955568,0.03404584646224976 +karman_re400,ppo,87,34.8,1.0733518600463867,0.1672767996788025,0.9974024295806885,0.5822980403900146,0.729393482208252,0.2917686402797699,0.0007867024978622794,0.0006236770423129201,-0.00022003441699780524,0.003631933592259884,0.0019380877492949367,-0.00594162056222558,0.11103091388940813,-2.920569896697998,2.6755623817443848,0.0011103091388940812,-0.02920569896697998,0.026755623817443848 +karman_re400,ppo,88,35.2,1.0063815116882324,0.2472824603319168,0.9615716338157654,0.6298794150352478,0.8396693468093872,0.35557377338409424,0.0005910174804739654,0.0018560906173661351,-0.0016349394572898746,0.003335624700412154,0.002949162619188428,-0.00610353471711278,0.2999395728111267,-3.7194297909736633,1.6860616207122803,0.002999395728111267,-0.037194297909736634,0.016860616207122803 +karman_re400,ppo,89,35.6,0.9258785843849182,0.31451261043548584,0.9424970746040344,0.6499476432800293,0.940439760684967,0.408964067697525,0.0009119963506236672,0.002624884946271777,-0.003169769886881113,0.003126345807686448,0.0036605799105018377,-0.005936081986874342,0.497291386127472,-4.558925271034241,0.6682538986206055,0.00497291386127472,-0.04558925271034241,0.006682538986206055 +karman_re400,ppo,90,36.0,0.8356194496154785,0.36145371198654175,0.931861400604248,0.6866852641105652,1.0370585918426514,0.4481121003627777,0.0017406530678272247,0.003106859978288412,-0.004635774064809084,0.0034023828338831663,0.003954744432121515,-0.005153692327439785,0.6624890565872192,-5.1043901443481445,-0.15689754486083984,0.0066248905658721925,-0.05104390144348145,-0.0015689754486083985 +karman_re400,ppo,91,36.4,0.7464391589164734,0.36833131313323975,0.9195066094398499,0.7136337757110596,1.1309142112731934,0.45334213972091675,0.0025592108722776175,0.0034670960158109665,-0.0052747903391718864,0.004493324086070061,0.004101065918803215,-0.003855421906337142,0.7741839289665222,-5.165130615234375,-0.6609106063842773,0.007741839289665223,-0.05165130615234375,-0.006609106063842774 +karman_re400,ppo,92,36.8,0.6655880808830261,0.32149070501327515,0.898746132850647,0.7086443901062012,1.219280481338501,0.4043605327606201,0.002917531644925475,0.0034081395715475082,-0.004275953397154808,0.005963900126516819,0.004242451395839453,-0.0025861242320388556,0.8006956577301025,-4.77100944519043,-0.6236639022827148,0.008006956577301026,-0.0477100944519043,-0.006236639022827149 +karman_re400,ppo,93,37.2,0.60310959815979,0.2157384306192398,0.8742749094963074,0.5542274713516235,1.283022403717041,0.28420743346214294,0.0030369844753295183,0.0028445578645914793,-0.0022875063586980104,0.006704813800752163,0.0038493829779326916,-0.0020057351794093847,0.6464051008224487,-4.086862087249756,0.1587684154510498,0.006464051008224487,-0.04086862087249756,0.0015876841545104982 +karman_re400,ppo,94,37.6,0.5780090093612671,0.06148374453186989,0.8732274770736694,0.12737609446048737,1.284335732460022,0.08888374269008636,0.0025879545137286186,0.0020960152614861727,-0.0006240036454983056,0.006757864262908697,0.002867752220481634,-0.002392624504864216,0.3201650083065033,-3.40694385766983,1.238448143005371,0.003201650083065033,-0.0340694385766983,0.01238448143005371 +karman_re400,ppo,95,38.0,0.6101139187812805,-0.10286886990070343,0.8938525319099426,-0.35300663113594055,1.2397685050964355,-0.08868107199668884,0.0017259428277611732,0.0010675679659470916,0.0005946902092546225,0.006796685047447681,0.001657029497437179,-0.0031264445278793573,0.050415847450494766,-2.9512381553649902,2.0662225484848022,0.0005041584745049477,-0.029512381553649904,0.020662225484848022 +karman_re400,ppo,96,38.4,0.7000335454940796,-0.2197997272014618,0.9157949686050415,-0.6255979537963867,1.1771512031555176,-0.2053600698709488,0.0010279014240950346,-0.0002750094863586128,0.0017299831379204988,0.0069748712703585625,0.0003648084821179509,-0.003584983292967081,-0.118674136698246,-2.455705761909485,2.8350675106048584,-0.00118674136698246,-0.02455705761909485,0.028350675106048585 +karman_re400,ppo,97,38.8,0.8081815838813782,-0.296464204788208,0.9290265440940857,-0.6853663921356201,1.089179277420044,-0.301199734210968,0.0007236553938128054,-0.0015842602588236332,0.0027564018964767456,0.006968352943658829,-0.001047093071974814,-0.0036509432829916477,-0.28292277455329895,-1.7104139328002932,3.770593881607056,-0.0028292277455329896,-0.01710413932800293,0.03770593881607056 +karman_re400,ppo,98,39.2,0.9046724438667297,-0.36660027503967285,0.9409096240997314,-0.6845231652259827,0.9899836778640747,-0.38249367475509644,0.0008644891786389053,-0.0024925200268626213,0.0035348248202353716,0.006537154782563448,-0.0024863984435796738,-0.0035664152819663286,-0.45413097739219666,-0.8504800796508789,4.66703462600708,-0.004541309773921967,-0.00850480079650879,0.0466703462600708 +karman_re400,ppo,99,39.6,0.9959723949432373,-0.41383418440818787,0.9551304578781128,-0.7023378014564514,0.8941270709037781,-0.4310623109340668,0.001419477048330009,-0.0030357488431036472,0.003943195100873709,0.005520449951291084,-0.00362963043153286,-0.0036876641679555178,-0.6029574871063232,-0.16297698020935059,5.235430955886841,-0.006029574871063232,-0.0016297698020935059,0.05235430955886841 +karman_re400,ppo,100,40.0,1.0840544700622559,-0.42730677127838135,0.9726744294166565,-0.7127837538719177,0.8030388355255127,-0.4334349036216736,0.002025659428909421,-0.003368157194927335,0.004064761567860842,0.004256348125636578,-0.004016421269625425,-0.0042998287826776505,-0.7020164728164673,0.09113216400146484,5.3501012325286865,-0.007020164728164673,0.0009113216400146485,0.05350101232528687 +karman_re400,ppo,101,40.4,1.1634782552719116,-0.3916056752204895,0.9948915839195251,-0.6854327321052551,0.7156919240951538,-0.37579116225242615,0.0023138916585594416,-0.003373698564246297,0.0040002367459237576,0.0032961550168693066,-0.0032253917306661606,-0.005219671875238419,-0.7242903113365173,-0.18331146240234375,5.116207599639893,-0.007242903113365173,-0.0018331146240234376,0.05116207599639893 +karman_re400,ppo,102,40.8,1.2208701372146606,-0.3051731586456299,1.0232369899749756,-0.5259509086608887,0.6399959325790405,-0.2467389851808548,0.0023194828536361456,-0.0029417616315186024,0.00342547963373363,0.0030446425080299377,-0.0017239621374756098,-0.005750556476414204,-0.6160932779312134,-0.9564919471740723,4.653334856033325,-0.006160932779312134,-0.009564919471740723,0.046533348560333254 +karman_re400,ppo,103,41.2,1.2215574979782104,-0.15393762290477753,1.0484740734100342,-0.12455412745475769,0.6006806492805481,-0.05152027681469917,0.001964630326256156,-0.0021607265807688236,0.002402222715318203,0.003391014877706766,-0.0003669086145237088,-0.005715683102607727,-0.3619457483291626,-1.7992033958435059,4.047084450721741,-0.003619457483291626,-0.017992033958435058,0.040470844507217406 +karman_re400,ppo,104,41.6,1.1539968252182007,0.026234641671180725,1.0437355041503906,0.3217720091342926,0.6253809928894043,0.1555309146642685,0.0013479404151439667,-0.000980293843895197,0.0012119072489440441,0.003684937721118331,0.0007231603376567364,-0.005693061742931604,-0.09613852947950363,-2.315821886062622,3.46845018863678,-0.0009613852947950363,-0.02315821886062622,0.0346845018863678 +karman_re400,ppo,105,42.0,1.0775054693222046,0.15581844747066498,1.0085467100143433,0.5686374306678772,0.7165652513504028,0.2878064215183258,0.000833262805826962,0.0004933144664391875,-6.809224578319117e-05,0.003652355168014765,0.0018306534038856626,-0.005909843370318413,0.09838023781776428,-2.826784372329712,2.7630765438079834,0.0009838023781776428,-0.02826784372329712,0.027630765438079834 +karman_re400,ppo,106,42.4,1.013830304145813,0.2374386042356491,0.9701524972915649,0.6250879168510437,0.8300237059593201,0.3531097173690796,0.0006051561795175076,0.0017632948001846671,-0.0014619763242080808,0.0033903406001627445,0.0028805399779230356,-0.00613290723413229,0.28145989775657654,-3.6311281919479366,1.7902588844299319,0.0028145989775657655,-0.03631128191947937,0.01790258884429932 +karman_re400,ppo,107,42.8,0.9361163973808289,0.30592384934425354,0.947827935218811,0.6447874307632446,0.9323356747627258,0.4067564308643341,0.0008547596517018974,0.0025751814246177673,-0.003010865766555071,0.0031770002096891403,0.003621355863288045,-0.0060193222016096115,0.47707310318946844,-4.498920202255249,0.7642252445220947,0.004770731031894684,-0.044989202022552494,0.007642252445220947 +karman_re400,ppo,108,43.2,0.8454489707946777,0.3560875356197357,0.9346340298652649,0.681455135345459,1.0281678438186646,0.44728267192840576,0.0016272274078801274,0.0030735195614397526,-0.004537614993751049,0.003357346635311842,0.0039298031479120255,-0.005269093904644251,0.6488147974014282,-5.078687906265259,-0.08735084533691406,0.006488147974014282,-0.05078687906265259,-0.0008735084533691407 +karman_re400,ppo,109,43.6,0.7549203634262085,0.3677504360675812,0.9207951426506042,0.7102614641189575,1.1210854053497314,0.4567713141441345,0.0024846303276717663,0.0034410019870847464,-0.00530614098533988,0.00433160038664937,0.004062329418957233,-0.003977833315730095,0.7708625197410583,-5.179171323776245,-0.638463020324707,0.007708625197410584,-0.05179171323776245,-0.006384630203247071 +karman_re400,ppo,110,44.0,0.6725262999534607,0.32673129439353943,0.8994394540786743,0.710323691368103,1.20933198928833,0.4135337471961975,0.0029069809243083,0.0034385016188025475,-0.004455637186765671,0.005812929477542639,0.0042463974095880985,-0.002671794965863228,0.8088423013687134,-4.818586707115173,-0.6690893173217773,0.008088423013687134,-0.04818586707115174,-0.006690893173217773 +karman_re400,ppo,111,44.4,0.6093530058860779,0.22681275010108948,0.8740196824073792,0.5806084871292114,1.2787436246871948,0.3018553853034973,0.0030621523037552834,0.002900835359469056,-0.002470534760504961,0.006691441405564547,0.003939040470868349,-0.002005482790991664,0.6756467819213867,-4.162132024765015,0.04695010185241699,0.006756467819213867,-0.04162132024765015,0.0004695010185241699 +karman_re400,ppo,112,44.8,0.5814440250396729,0.07654278725385666,0.8699280023574829,0.17684686183929443,1.288779616355896,0.11075715720653534,0.002676436211913824,0.0021793844643980265,-0.0007358110742643476,0.0068079885095357895,0.003001214936375618,-0.002323312219232321,0.35397371649742126,-3.4608095288276672,1.1493685245513916,0.0035397371649742125,-0.03460809528827667,0.011493685245513917 +karman_re400,ppo,113,45.2,0.6074235439300537,-0.08870324492454529,0.8884941935539246,-0.3133120536804199,1.2457910776138306,-0.07462171465158463,0.0018036342225968838,0.0011869450099766254,0.0004816246801055968,0.006809889804571867,0.0017671047244220972,-0.0030664035584777594,0.06947450339794159,-2.9876415729522705,2.0088727474212646,0.0006947450339794159,-0.029876415729522706,0.020088727474212646 +karman_re400,ppo,114,45.6,0.6921802759170532,-0.2103109210729599,0.9108846783638,-0.6100001335144043,1.1835278272628784,-0.1966378092765808,0.0010641742264851928,-0.00013074850721750408,0.0015955313574522734,0.006942853797227144,0.0004700327990576625,-0.003547854721546173,-0.10413258522748949,-2.5060012340545654,2.7586143016815186,-0.0010413258522748948,-0.025060012340545654,0.027586143016815185 +karman_re400,ppo,115,46.0,0.7990012168884277,-0.28849849104881287,0.9247746467590332,-0.6842594742774963,1.0962985754013062,-0.2933703064918518,0.0007302053854800761,-0.0014641284942626953,0.002644492778927088,0.006938362028449774,-0.0009205765090882778,-0.0036246145609766245,-0.262908011674881,-1.7858779430389407,3.666116178035736,-0.00262908011674881,-0.017858779430389406,0.03666116178035736 +karman_re400,ppo,116,46.4,0.8959529995918274,-0.36000266671180725,0.9373868703842163,-0.6829973459243774,0.9975531101226807,-0.3762547969818115,0.0008403908577747643,-0.002416882896795869,0.0034778141416609287,0.0065758912824094296,-0.0023351924028247595,-0.0035487129352986813,-0.433720201253891,-0.9296891689300536,4.576958060264587,-0.00433720201253891,-0.009296891689300537,0.045769580602645875 +karman_re400,ppo,117,46.8,0.9890700578689575,-0.4098314344882965,0.9535872936248779,-0.6995933651924133,0.9031170606613159,-0.42831963300704956,0.0013655689544975758,-0.0029897999484091997,0.003934355452656746,0.005643218755722046,-0.0035109848249703646,-0.0036677413154393435,-0.5874068140983582,-0.22191596031188965,5.192504644393921,-0.005874068140983582,-0.0022191596031188965,0.05192504644393921 +karman_re400,ppo,118,47.2,1.078156590461731,-0.4275437891483307,0.9714856147766113,-0.7121816873550415,0.8122019171714783,-0.4356768727302551,0.001972015481442213,-0.0033484017476439476,0.004062255844473839,0.004395877942442894,-0.0040021841414272785,-0.004246115684509277,-0.694404125213623,0.07456302642822266,5.35616397857666,-0.006944041252136231,0.0007456302642822266,0.053561639785766606 +karman_re400,ppo,119,47.6,1.1578696966171265,-0.39661598205566406,0.9921678900718689,-0.6901999115943909,0.723487377166748,-0.38431546092033386,0.002279598033055663,-0.003397624474018812,0.004000966437160969,0.0033776320051401854,-0.0033520834986120462,-0.005124456249177456,-0.7251408100128174,-0.1436607837677002,5.150528430938721,-0.007251408100128174,-0.0014366078376770019,0.05150528430938721 +karman_re400,ppo,120,48.0,1.2176477909088135,-0.3157736361026764,1.0186216831207275,-0.5510291457176208,0.6450338959693909,-0.2625740170478821,0.0023157033137977123,-0.003002731129527092,0.0034785449970513582,0.003032787935808301,-0.0019077041652053595,-0.005672891158610582,-0.6291401386260986,-0.8591275215148925,4.708128213882446,-0.006291401386260986,-0.008591275215148925,0.04708128213882446 +karman_re400,ppo,121,48.4,1.2245914936065674,-0.17059326171875,1.0444316864013672,-0.1703672856092453,0.6001882553100586,-0.07272575795650482,0.0020153566729277372,-0.002252462087199092,0.002510716672986746,0.0033298770431429148,-0.000506582495290786,-0.005686656106263399,-0.385267436504364,-1.7018630504608154,4.109393954277039,-0.0038526743650436402,-0.017018630504608154,0.04109393954277039 +karman_re400,ppo,122,48.8,1.162686824798584,0.010665126144886017,1.0449881553649902,0.2839495837688446,0.6188425421714783,0.13685183227062225,0.0014188495697453618,-0.0011096688685938716,0.0013559518847614527,0.0036638115998357534,0.0006281106034293771,-0.005698370281606913,-0.11846611648797989,-2.2578704357147217,3.528809249401093,-0.0011846611648797989,-0.022578704357147216,0.03528809249401093 +karman_re400,ppo,123,49.2,1.0861670970916748,0.14643527567386627,1.0138994455337524,0.5544013381004333,0.7061710953712463,0.27885702252388,0.0008885826682671905,0.00034987309481948614,8.804657409200445e-05,0.003686891868710518,0.0017496304353699088,-0.005937440320849419,0.07797989994287491,-2.774135708808899,2.845913290977478,0.0007797989994287491,-0.02774135708808899,0.02845913290977478 +karman_re400,ppo,124,49.6,1.022404670715332,0.2302757054567337,0.9742909073829651,0.6229724287986755,0.8196163773536682,0.3472858667373657,0.0006071089301258326,0.0016610361635684967,-0.0013213716447353363,0.0034474798012524843,0.002794698579236865,-0.006164187099784613,0.2589179277420044,-3.5652409195899963,1.894537925720215,0.002589179277420044,-0.035652409195899966,0.01894537925720215 +karman_re400,ppo,125,50.0,0.9456983208656311,0.29959455132484436,0.9494922161102295,0.6416677236557007,0.9221239686012268,0.4017413258552551,0.0007883994840085506,0.0025172806344926357,-0.00287379021756351,0.0031930694822221994,0.003553505754098296,-0.00606103939935565,0.45792844891548157,-4.431540250778198,0.8581855297088624,0.004579284489154816,-0.04431540250778198,0.008581855297088624 +karman_re400,ppo,126,50.4,0.8545366525650024,0.3525620996952057,0.9348711967468262,0.6774424910545349,1.0171524286270142,0.4440566599369049,0.0015283571556210518,0.003030724124982953,-0.004414251074194908,0.0032930425368249416,0.003903695847839117,-0.005356463138014078,0.6367136836051941,-5.037255525588989,-0.019562721252441406,0.006367136836051941,-0.05037255525588989,-0.00019562721252441406 +karman_re400,ppo,127,50.8,0.7636146545410156,0.36869698762893677,0.9213294386863708,0.7080178260803223,1.1100982427597046,0.4579349756240845,0.0024301516823470592,0.003409659257158637,-0.005280899349600077,0.004186153411865234,0.004053371027112007,-0.004104482475668192,0.7640796899795532,-5.186671257019043,-0.6056404113769531,0.007640796899795532,-0.05186671257019043,-0.006056404113769532 +karman_re400,ppo,128,51.2,0.6817651987075806,0.3333303928375244,0.902657151222229,0.712679386138916,1.2005836963653564,0.4206444025039673,0.002894375938922167,0.0034641711972653866,-0.004584643989801407,0.0056970431469380856,0.004263438284397125,-0.0027870191261172295,0.8108280897140503,-4.871798992156982,-0.6956634521484375,0.008108280897140503,-0.048717989921569824,-0.006956634521484375 +karman_re400,ppo,129,51.6,0.6167451739311218,0.23896408081054688,0.8773836493492126,0.6052826046943665,1.2742969989776611,0.31715670228004456,0.0030650089029222727,0.002967208856716752,-0.0026392873842269182,0.006686954293400049,0.004014951176941395,-0.002035773592069745,0.6980843544006348,-4.239239811897278,-0.04374885559082031,0.006980843544006347,-0.04239239811897278,-0.00043748855590820313 +karman_re400,ppo,130,52.0,0.5836148858070374,0.09250359237194061,0.8695749044418335,0.22629417479038239,1.2905551195144653,0.13186591863632202,0.0027280128560960293,0.002263240981847048,-0.0008778308983892202,0.00681610032916069,0.0030955099500715733,-0.0022744496818631887,0.3855430483818054,-3.517722964286804,1.0623564720153809,0.003855430483818054,-0.03517722964286804,0.010623564720153808 +karman_re400,ppo,131,52.4,0.6026649475097656,-0.07380985468626022,0.8855544328689575,-0.2706393003463745,1.2494901418685913,-0.05915744602680206,0.0018741212552413344,0.001308329519815743,0.0003503713815007359,0.006768002640455961,0.0018666504183784127,-0.0029975371435284615,0.09106285870075226,-3.0250682830810547,1.935833930969238,0.0009106285870075226,-0.030250682830810546,0.01935833930969238 +karman_re400,ppo,132,52.8,0.6815503835678101,-0.20115989446640015,0.9072211384773254,-0.5919390320777893,1.1883374452590942,-0.18617665767669678,0.0011168870842084289,8.426203748967964e-06,0.001475289580412209,0.006887688767164946,0.0005923500866629183,-0.0035046585835516453,-0.08636999875307083,-2.5629193782806396,2.6653356552124023,-0.0008636999875307084,-0.025629193782806398,0.026653356552124023 +karman_re400,ppo,133,53.2,0.7889649868011475,-0.2812747061252594,0.9226118326187134,-0.683026134967804,1.1045554876327515,-0.2838525176048279,0.000754993874579668,-0.0013461066409945488,0.0025617966894060373,0.006934786215424538,-0.0007643013959750533,-0.0036227714736014605,-0.243762344121933,-1.8691458702087402,3.5604048967361455,-0.00243762344121933,-0.018691458702087403,0.035604048967361454 +karman_re400,ppo,134,53.6,0.8883036971092224,-0.3539856970310211,0.9364194273948669,-0.6824734210968018,1.0075809955596924,-0.3686401844024658,0.0008188500069081783,-0.0023416290059685707,0.0034280086401849985,0.0066529237665236,-0.002178662456572056,-0.0035664858296513557,-0.41696146130561834,-1.019472599029541,4.495348334312439,-0.004169614613056183,-0.01019472599029541,0.04495348334312439 +karman_re400,ppo,135,54.0,0.9816431999206543,-0.40645793080329895,0.9521536827087402,-0.6976606845855713,0.9123536944389343,-0.4244966208934784,0.0012964669149369001,-0.0029490431770682335,0.003907547798007727,0.005779430270195007,-0.0034140017814934254,-0.003658177563920617,-0.5745084881782532,-0.28423428535461426,5.155254125595093,-0.005745084881782532,-0.0028423428535461425,0.05155254125595093 +karman_re400,ppo,136,54.4,1.0705851316452026,-0.42821526527404785,0.9687813520431519,-0.712361216545105,0.8202570080757141,-0.4370186924934387,0.0019076609751209617,-0.003322025528177619,0.0040380749851465225,0.004524532705545425,-0.004018078558146954,-0.004150438122451305,-0.6866488456726074,0.06722259521484375,5.3633294105529785,-0.006866488456726074,0.0006722259521484375,0.053633294105529784 +karman_re400,ppo,137,54.8,1.1505953073501587,-0.4021252393722534,0.9875581860542297,-0.6956092715263367,0.7302368879318237,-0.3923087418079376,0.002256084932014346,-0.0034140797797590494,0.004005418624728918,0.003440759377554059,-0.003498754696920514,-0.005003404803574085,-0.723185658454895,-0.08537602424621582,5.182135820388794,-0.00723185658454895,-0.0008537602424621583,0.05182135820388794 +karman_re400,ppo,138,55.2,1.2132408618927002,-0.3264288008213043,1.0122661590576172,-0.5761052966117859,0.6499995589256287,-0.27836108207702637,0.002329462906345725,-0.0030531673692166805,0.0035651663783937693,0.003015022026374936,-0.00207070866599679,-0.005631147418171167,-0.6439330577850342,-0.7530922889709473,4.762095808982849,-0.006439330577850342,-0.0075309228897094726,0.04762095808982849 +karman_re400,ppo,139,55.6,1.2287484407424927,-0.18716377019882202,1.0400480031967163,-0.21835428476333618,0.6020637154579163,-0.09481726586818695,0.0020743084605783224,-0.0023381593637168407,0.0026438047643750906,0.00328255956992507,-0.0006075795390643179,-0.005733449477702379,-0.4146706461906433,-1.6250207424163818,4.170284867286682,-0.004146706461906433,-0.016250207424163818,0.041702848672866825 +karman_re400,ppo,140,56.0,1.1731505393981934,-0.00504817022010684,1.045335292816162,0.24344007670879364,0.6143006682395935,0.11644268780946732,0.0014917609514668584,-0.0012405491434037685,0.0014938813401386142,0.003659297712147236,0.0005557249533012509,-0.005740018095821142,-0.14565762877464294,-2.2342827320098877,3.584277927875519,-0.0014565762877464296,-0.022342827320098877,0.03584277927875519 +karman_re400,ppo,141,56.4,1.0953325033187866,0.13706044852733612,1.0171682834625244,0.5392624139785767,0.69512540102005,0.2683715224266052,0.0009247907437384129,0.0002023280248977244,0.0002065519947791472,0.0037173202726989985,0.0016470627160742879,-0.005927222780883312,0.05803718417882919,-2.7379817962646484,2.923932671546936,0.000580371841788292,-0.027379817962646484,0.02923932671546936 +karman_re400,ppo,142,56.8,1.0304824113845825,0.2239084094762802,0.9770259261131287,0.6225365400314331,0.8076381087303162,0.34107789397239685,0.0006060688756406307,0.001547694788314402,-0.0011990348575636744,0.0034713461063802242,0.002686239080503583,-0.006130314897745848,0.242413729429245,-3.481934785842895,1.9954226016998289,0.00242413729429245,-0.03481934785842895,0.01995422601699829 +karman_re400,ppo,143,57.2,0.9542628526687622,0.2942919135093689,0.9501937627792358,0.6404154896736145,0.9105042219161987,0.3963770568370819,0.0007440007757395506,0.002451015403494239,-0.0027288617566227913,0.003189501818269491,0.003486023750156164,-0.006060609593987465,0.4425929486751557,-4.342697620391846,0.9534459114074706,0.004425929486751557,-0.04342697620391846,0.009534459114074707 +karman_re400,ppo,144,57.6,0.864159107208252,0.34980881214141846,0.936015248298645,0.674540638923645,1.006507396697998,0.44033393263816833,0.0014550216728821397,0.0029833740554749966,-0.004268496762961149,0.0032461315859109163,0.003895862028002739,-0.0054434482008218765,0.6242139339447021,-4.987001895904541,0.05340647697448731,0.0062421393394470216,-0.049870018959045415,0.0005340647697448731 +karman_re400,ppo,145,58.0,0.7741541862487793,0.37025490403175354,0.9245366454124451,0.7066481113433838,1.1012732982635498,0.4583212733268738,0.002375879790633917,0.003380236681550741,-0.005242564715445042,0.004085189197212458,0.004050055053085089,-0.004244254902005196,0.7544925808906555,-5.196328639984131,-0.5636334419250488,0.0075449258089065555,-0.05196328639984131,-0.005636334419250488 +karman_re400,ppo,146,58.4,0.6910461187362671,0.3400818109512329,0.9072785973548889,0.7148802876472473,1.1924548149108887,0.4265892803668976,0.002868079813197255,0.0034894882701337337,-0.004720724653452635,0.005590640939772129,0.004255343694239855,-0.0029109877068549395,0.8108072876930238,-4.9211345911026,-0.7111921310424805,0.008108072876930238,-0.049211345911026,-0.007111921310424805 +karman_re400,ppo,147,58.8,0.6228284239768982,0.251016229391098,0.8818999528884888,0.6264675855636597,1.268489956855774,0.3308577239513397,0.0030516991391777992,0.0030330955050885677,-0.002855843398720026,0.006636021193116903,0.004049982875585556,-0.0020692073740065098,0.7189645171165466,-4.307227373123169,-0.1316394805908203,0.007189645171165466,-0.04307227373123169,-0.001316394805908203 +karman_re400,ppo,148,59.2,0.5845359563827515,0.10821515321731567,0.8712674975395203,0.2729191184043884,1.2904117107391357,0.15231195092201233,0.0027840968687087297,0.0023430162109434605,-0.0010494842426851392,0.006791103631258011,0.0031833017710596323,-0.0022094130981713533,0.4209958612918853,-3.574045181274414,0.9542984962463379,0.0042099586129188534,-0.03574045181274414,0.009542984962463379 +karman_re400,ppo,149,59.6,0.5971115231513977,-0.05899140238761902,0.8851858377456665,-0.2269962728023529,1.2518563270568848,-0.042972031980752945,0.0019704862497746944,0.001416304730810225,0.00022914580767974257,0.006738586351275444,0.001990395365282893,-0.0029149630572646856,0.11811994016170502,-3.065155565738678,1.8486571311950684,0.0011811994016170501,-0.03065155565738678,0.018486571311950684 +karman_re400,ppo,150,60.0,0.6720240116119385,-0.19243374466896057,0.9076852202415466,-0.5717464685440063,1.193863034248352,-0.17507462203502655,0.0011889898451045156,0.0001423996436642483,0.0013731963699683547,0.006885180249810219,0.0007390707032755017,-0.0034670711029320955,-0.06755099445581436,-2.6196136474609375,2.5799165964126587,-0.0006755099445581436,-0.026196136474609374,0.025799165964126586 +karman_re400,ppo,151,60.4,0.7801117897033691,-0.27493155002593994,0.9239310622215271,-0.6806280612945557,1.113757610321045,-0.27383148670196533,0.0007829631795175374,-0.0012279750080779195,0.0024757676292210817,0.006973464507609606,-0.0006070251693017781,-0.003635735483840108,-0.2251874804496765,-1.9497418403625488,3.4691488146781917,-0.0022518748044967653,-0.01949741840362549,0.03469148814678192 +karman_re400,ppo,152,60.8,0.8802003264427185,-0.34822261333465576,0.9364931583404541,-0.6818698048591614,1.0168131589889526,-0.3604203760623932,0.0007821287144906819,-0.0022646449506282806,0.0033482671715319157,0.0067324512638151646,-0.0020439072977751493,-0.0035790828987956047,-0.3997403085231781,-1.1047792434692383,4.419221043586731,-0.003997403085231781,-0.011047792434692384,0.04419221043586731 +karman_re400,ppo,153,61.2,0.9731940627098083,-0.4029279351234436,0.9509707689285278,-0.6955440640449524,0.920279324054718,-0.41999566555023193,0.001220613601617515,-0.002903158077970147,0.003863757010549307,0.005888292100280523,-0.0033238837495446205,-0.003619516734033823,-0.558077335357666,-0.3376655578613281,5.112030744552612,-0.00558077335357666,-0.0033766555786132815,0.05112030744552613 +karman_re400,ppo,154,61.6,1.0617488622665405,-0.42817458510398865,0.9663462042808533,-0.7119717597961426,0.8270396590232849,-0.43736323714256287,0.0018465414177626371,-0.0032906541600823402,0.004024426452815533,0.004634091630578041,-0.004009094089269638,-0.0040490394458174706,-0.6746603846549988,0.06295204162597656,5.361570358276367,-0.0067466038465499876,0.0006295204162597656,0.05361570358276367 +karman_re400,ppo,155,62.0,1.1430892944335938,-0.40681344270706177,0.9850172996520996,-0.6998948454856873,0.7370852828025818,-0.3990076184272766,0.0022404755000025034,-0.0034203259274363518,0.0040368251502513885,0.0035141450352966785,-0.0035873809829354286,-0.004908587783575058,-0.7197208404541016,-0.0390934944152832,5.209071636199951,-0.007197208404541015,-0.00039093494415283204,0.052090716361999516 +karman_re400,ppo,156,62.4,1.209701418876648,-0.3359483480453491,1.0106252431869507,-0.5974079370498657,0.6567082405090332,-0.29233139753341675,0.0023363130167126656,-0.0031027523800730705,0.0036574178375303745,0.003025629324838519,-0.0021900280844420195,-0.005626373458653688,-0.6579832434654236,-0.6744554042816162,4.813514828681946,-0.006579832434654236,-0.006744554042816162,0.04813514828681946 +karman_re400,ppo,157,62.8,1.2317724227905273,-0.20302177965641022,1.0394197702407837,-0.26199570298194885,0.6046628952026367,-0.11470270156860352,0.0021136358845978975,-0.0024229593109339476,0.0027562053874135017,0.0032610211055725813,-0.0007032681023702025,-0.0057718283496797085,-0.44216254353523254,-1.5674715042114258,4.230146288871765,-0.004421625435352326,-0.01567471504211426,0.04230146288871765 +karman_re400,ppo,158,63.2,1.1813071966171265,-0.021923840045928955,1.047166109085083,0.20376257598400116,0.6096765995025635,0.0971611812710762,0.0015403388533741236,-0.0013687502359971404,0.0015936462441459298,0.003647108329460025,0.0004480956995394081,-0.005722086876630783,-0.16858845949172974,-2.2035220861434937,3.6404417157173157,-0.0016858845949172974,-0.02203522086143494,0.03640441715717316 +karman_re400,ppo,159,63.6,1.1021523475646973,0.1259850412607193,1.0205832719802856,0.5221355557441711,0.6840231418609619,0.25781485438346863,0.0009587298845872283,5.608539504464716e-05,0.0003164394584018737,0.0037210502196103334,0.0015189028345048428,-0.005862297490239143,0.04426458477973938,-2.6742498874664307,2.9990108013153076,0.0004426458477973938,-0.026742498874664306,0.029990108013153077 +karman_re400,ppo,160,64.0,1.0362869501113892,0.21607819199562073,0.9794555902481079,0.6203656792640686,0.7954013347625732,0.33513104915618896,0.0006217918707989156,0.001434013363905251,-0.0010577909415587783,0.003484924789518118,0.00258365785703063,-0.006076899357140064,0.22770479321479797,-3.380394339561463,2.0958642959594727,0.00227704793214798,-0.03380394339561463,0.020958642959594726 +karman_re400,ppo,161,64.4,0.9629164934158325,0.2873604893684387,0.9519625902175903,0.6382970213890076,0.900627851486206,0.3912578225135803,0.0007156075444072485,0.002381383441388607,-0.0025599224027246237,0.0032069182489067316,0.0034347164910286665,-0.006079184357076883,0.42522189021110535,-4.252465128898621,1.052968978881836,0.004252218902111054,-0.04252465128898621,0.01052968978881836 +karman_re400,ppo,162,64.8,0.8744809031486511,0.34519344568252563,0.9380049109458923,0.6708217859268188,0.9981353282928467,0.4368637800216675,0.001377874636091292,0.00294188829138875,-0.004115994554013014,0.0032325582578778267,0.0038867308758199215,-0.0055440859869122505,0.6079292893409729,-4.942277669906616,0.13434243202209473,0.006079292893409729,-0.04942277669906616,0.0013434243202209474 +karman_re400,ppo,163,65.2,0.7836448550224304,0.36986568570137024,0.9261496663093567,0.7043944001197815,1.0929094552993774,0.4586701989173889,0.0022909995168447495,0.0033493926748633385,-0.005209241062402725,0.0039836387149989605,0.004026793874800205,-0.004387402907013893,0.7432903051376343,-5.202730655670166,-0.5160531997680664,0.007432903051376343,-0.05202730655670166,-0.005160531997680664 +karman_re400,ppo,164,65.6,0.6988047957420349,0.345041424036026,0.9087303876876831,0.7156927585601807,1.1840418577194214,0.4323495626449585,0.0028260769322514534,0.003507373621687293,-0.004872937686741352,0.005433047190308571,0.004222425632178783,-0.0030271140858531,0.8104119896888733,-4.961978197097778,-0.7246866226196289,0.008104119896888733,-0.049619781970977786,-0.007246866226196289 +karman_re400,ppo,165,66.0,0.6277572512626648,0.26175665855407715,0.8820154666900635,0.6444082856178284,1.262073278427124,0.34382885694503784,0.003043008502572775,0.003093403298407793,-0.003086262382566929,0.006549290381371975,0.004083988722413778,-0.002100752666592598,0.7400789260864258,-4.373341083526611,-0.2290458679199219,0.007400789260864258,-0.043733410835266114,-0.002290458679199219 +karman_re400,ppo,166,66.4,0.5858656167984009,0.12364989519119263,0.8682622313499451,0.3186051547527313,1.2911640405654907,0.17221374809741974,0.0028534538578242064,0.0024132453836500645,-0.0012076504062861204,0.006787340622395277,0.003296969924122095,-0.002141970209777355,0.4573374688625335,-3.6376805305480957,0.8357868194580078,0.004573374688625335,-0.03637680530548096,0.008357868194580079 +karman_re400,ppo,167,66.8,0.5941141247749329,-0.043226297944784164,0.8816980719566345,-0.18130375444889069,1.2581120729446411,-0.02716747485101223,0.002074106130748987,0.0015182202914729714,0.00012960206368006766,0.006760405842214823,0.002130596898496151,-0.002835372928529978,0.143507719039917,-3.1068520545959473,1.7715466022491455,0.00143507719039917,-0.031068520545959474,0.017715466022491456 +karman_re400,ppo,168,67.2,0.6639326214790344,-0.1820898950099945,0.9052436351776123,-0.5496200919151306,1.2018944025039673,-0.1655280441045761,0.0012587158707901835,0.00027636913000606,0.001270874752663076,0.006904036272317171,0.0008753601578064263,-0.0034362783189862967,-0.053422458469867706,-2.668959140777588,2.514098048210144,-0.0005342245846986771,-0.02668959140777588,0.025140980482101442 +karman_re400,ppo,169,67.6,0.7705524563789368,-0.267450749874115,0.9224563837051392,-0.6779431700706482,1.1232426166534424,-0.2659358084201813,0.000796285574324429,-0.0011011583264917135,0.0023632042575627565,0.00699261762201786,-0.00048136673285625875,-0.0036358314100652933,-0.21043860912322995,-2.023538589477539,3.384645819664001,-0.0021043860912322997,-0.02023538589477539,0.03384645819664001 +karman_re400,ppo,170,68.0,0.8708553314208984,-0.34136953949928284,0.9346966743469238,-0.6820891499519348,1.025975227355957,-0.3541048765182495,0.0007536897901445627,-0.0021828357130289078,0.0032588427420705557,0.006766737904399633,-0.001920158858411014,-0.003572035813704133,-0.38210418820381165,-1.1823554039001465,4.333951711654663,-0.0038210418820381164,-0.011823554039001465,0.043339517116546634 +karman_re400,ppo,171,68.4,0.9633439779281616,-0.39833956956863403,0.9487294554710388,-0.6936494708061218,0.9283896088600159,-0.4169420003890991,0.001165378256700933,-0.002851898316293955,0.0038274559192359447,0.005975655280053616,-0.0032183430157601833,-0.0035821902565658092,-0.541861355304718,-0.3946144580841065,5.057500123977661,-0.00541861355304718,-0.003946144580841065,0.05057500123977661 +karman_re400,ppo,172,68.8,1.0531320571899414,-0.42703625559806824,0.9652693867683411,-0.7112796306610107,0.8358609676361084,-0.4388056993484497,0.0017994752852246165,-0.0032599102705717087,0.0040298704989254475,0.004753265995532274,-0.00396503321826458,-0.003986623603850603,-0.6645784378051758,0.04542398452758789,5.35324239730835,-0.006645784378051758,0.0004542398452758789,0.0535324239730835 +karman_re400,ppo,173,69.2,1.1364167928695679,-0.41056540608406067,0.9852572679519653,-0.7029926180839539,0.7465227246284485,-0.4062573313713074,0.002223589224740863,-0.003428239841014147,0.00406202208250761,0.00361044192686677,-0.003652160055935383,-0.004847688600420952,-0.7195156216621399,-0.0146939754486084,5.235708713531494,-0.007195156216621399,-0.000146939754486084,0.05235708713531494 +karman_re400,ppo,174,69.6,1.204938530921936,-0.344726026058197,1.0110079050064087,-0.6149348616600037,0.6642202138900757,-0.30621081590652466,0.0023323779460042715,-0.0031549320556223392,0.0037161537911742926,0.0030551417730748653,-0.0023275883868336678,-0.005596593488007784,-0.671647846698761,-0.6096229553222656,4.862226128578186,-0.00671647846698761,-0.006096229553222657,0.04862226128578186 +karman_re400,ppo,175,70.0,1.2322776317596436,-0.21891433000564575,1.0406279563903809,-0.3026222288608551,0.6073197722434998,-0.13404794037342072,0.0021432775538414717,-0.00250957440584898,0.0028391359373927116,0.003228006884455681,-0.0008462029509246349,-0.005746528506278992,-0.466373473405838,-1.4920239448547363,4.290560841560364,-0.00466373473405838,-0.014920239448547364,0.04290560841560364 +karman_re400,ppo,176,70.4,1.1870417594909668,-0.04022800549864769,1.050695776939392,0.16296088695526123,0.6050185561180115,0.07834893465042114,0.0015934323891997337,-0.001492123119533062,0.0016984589165076613,0.0036138787399977446,0.00031647610012441874,-0.005671685561537743,-0.18918755650520325,-2.1396965980529785,3.6987434625625615,-0.0018918755650520326,-0.021396965980529786,0.03698743462562561 +karman_re400,ppo,177,70.8,1.1071568727493286,0.11343849450349808,1.0258387327194214,0.5014435648918152,0.6733034253120422,0.24758632481098175,0.0010090844007208943,-8.848738070810214e-05,0.0004528262361418456,0.003717282088473439,0.0014041437534615397,-0.0058195930905640125,0.029234595596790314,-2.598236560821533,3.0748130679130554,0.00029234595596790315,-0.025982365608215333,0.030748130679130556 +karman_re400,ppo,178,71.2,1.0417600870132446,0.2073892205953598,0.9847778081893921,0.615490198135376,0.7850052714347839,0.3301408886909485,0.0006495093693956733,0.00131937803234905,-0.0008984036976471543,0.003520686412230134,0.0024987258948385715,-0.00607486953958869,0.20899051427841187,-3.2923241853713985,2.1966826915740967,0.0020899051427841187,-0.03292324185371399,0.021966826915740967 +karman_re400,ppo,179,71.6,0.9711029529571533,0.2793499827384949,0.9552467465400696,0.634728729724884,0.8920891284942627,0.38663795590400696,0.0006863930611871183,0.0023117202799767256,-0.0023940815590322018,0.0032475334592163563,0.0033802813850343227,-0.006127809174358845,0.4035479128360748,-4.178340315818787,1.1545343399047852,0.004035479128360748,-0.04178340315818787,0.011545343399047852 +karman_re400,ppo,180,72.0,0.8834037780761719,0.3392745554447174,0.9395169019699097,0.6659718155860901,0.9895440936088562,0.4335722029209137,0.0012788985623046756,0.002899745013564825,-0.0039786421693861485,0.003218021709471941,0.0038568153977394104,-0.00564280292019248,0.5897591710090637,-4.899913430213928,0.21622705459594724,0.005897591710090637,-0.048999134302139286,0.0021622705459594725 +karman_re400,ppo,181,72.4,0.791697084903717,0.3681242763996124,0.9266226887702942,0.700980544090271,1.0837416648864746,0.4587792456150055,0.0021945941261947155,0.0033141952008008957,-0.005163358524441719,0.0038567613810300827,0.004000731278210878,-0.004515536595135927,0.7331131100654602,-5.2002880573272705,-0.46959781646728516,0.007331131100654602,-0.05200288057327271,-0.004695978164672852 +karman_re400,ppo,182,72.8,0.7053765058517456,0.3488909602165222,0.9087823629379272,0.7152420878410339,1.1745096445083618,0.4378615915775299,0.002793859224766493,0.003512526163831353,-0.004993509501218796,0.0052551752887666225,0.0042014638893306255,-0.003144960617646575,0.8096750974655151,-5.0007312297821045,-0.7361640930175781,0.008096750974655152,-0.050007312297821044,-0.007361640930175781 +karman_re400,ppo,183,73.2,0.6333306431770325,0.27187004685401917,0.8822852373123169,0.6599323749542236,1.255649209022522,0.35651084780693054,0.0030402210541069508,0.0031477820593863726,-0.0032821304630488157,0.006478580646216869,0.0041418857872486115,-0.0021485232282429934,0.7574759721755981,-4.444530606269836,-0.3187904357910156,0.007574759721755982,-0.044445306062698364,-0.0031879043579101565 +karman_re400,ppo,184,73.6,0.5890547037124634,0.13893041014671326,0.866028904914856,0.36361929774284363,1.292965292930603,0.19252267479896545,0.002910831244662404,0.002481434727087617,-0.0013438313035294414,0.006813100539147854,0.003417152212932706,-0.0020990767516195774,0.4907812774181366,-3.708397150039673,0.7289032936096191,0.004907812774181366,-0.03708397150039673,0.007289032936096192 +karman_re400,ppo,185,74.0,0.5916927456855774,-0.02674458734691143,0.8769042491912842,-0.13294455409049988,1.2648084163665771,-0.01000678539276123,0.00216001202352345,0.001621159492060542,2.7477322873892263e-05,0.006782946176826954,0.0022539300844073296,-0.0027725056279450655,0.16630348563194275,-3.1487534046173096,1.7059135437011719,0.0016630348563194276,-0.0314875340461731,0.017059135437011718 +karman_re400,ppo,186,74.4,0.6552308797836304,-0.17045387625694275,0.9003344774246216,-0.5244331359863281,1.2094943523406982,-0.15532717108726501,0.0013114111497998238,0.00041270494693890214,0.001151217264123261,0.00688232621178031,0.0009830729104578495,-0.003400254063308239,-0.04143640398979187,-2.714962601661682,2.448946475982666,-0.0004143640398979187,-0.027149626016616822,0.024489464759826662 +karman_re400,ppo,187,74.8,0.7595326900482178,-0.2592213451862335,0.9185720086097717,-0.6741381883621216,1.1321043968200684,-0.2577964663505554,0.0008158523123711348,-0.0009709813166409731,0.0022514238953590393,0.006967200431972742,-0.0003600241616368294,-0.0036237218882888556,-0.19616907835006714,-2.0942203998565674,3.2902219891548157,-0.0019616907835006713,-0.020942203998565674,0.03290221989154816 +karman_re400,ppo,188,75.2,0.8604886531829834,-0.3338277041912079,0.931317925453186,-0.6827872395515442,1.0352917909622192,-0.3473743200302124,0.0007425713702104986,-0.0020950736943632364,0.0031866601202636957,0.006785182282328606,-0.0017824084497988224,-0.003568508895114064,-0.3656294643878937,-1.2657208442687988,4.2397929430007935,-0.0036562946438789368,-0.012657208442687988,0.04239792943000793 +karman_re400,ppo,189,75.6,0.9543439745903015,-0.3934045135974884,0.9467737674713135,-0.6918790936470032,0.9384862780570984,-0.41337671875953674,0.0011218137806281447,-0.0028011947870254517,0.0038039926439523697,0.006075001787394285,-0.0030982843600213528,-0.00357624888420105,-0.5285838842391968,-0.46258425712585444,5.000500917434692,-0.005285838842391968,-0.004625842571258545,0.05000500917434692 +karman_re400,ppo,190,76.0,1.0451821088790894,-0.42566144466400146,0.9640408158302307,-0.7104026675224304,0.8462214469909668,-0.4397561550140381,0.0017503610579296947,-0.0032294488046318293,0.004029016010463238,0.004889747593551874,-0.003922177944332361,-0.003948163241147995,-0.6580160856246948,0.016427040100097656,5.3461973667144775,-0.006580160856246948,0.00016427040100097656,0.05346197366714478 +karman_re400,ppo,191,76.4,1.1290583610534668,-0.41436219215393066,0.9834286570549011,-0.7057257890701294,0.7561103701591492,-0.4131670892238617,0.002194345463067293,-0.003430187003687024,0.004058256279677153,0.0037125262897461653,-0.0037451533135026693,-0.004766401369124651,-0.7206898331642151,0.007082939147949218,5.262081861495972,-0.007206898331642151,7.082939147949218e-05,0.052620818614959715 +karman_re400,ppo,192,76.8,1.1991074085235596,-0.3535933196544647,1.0078802108764648,-0.631133496761322,0.6718456745147705,-0.3200947046279907,0.0023281099274754524,-0.0032037922646850348,0.0037556192837655544,0.003073151223361492,-0.0025041282642632723,-0.005524252541363239,-0.6833521723747253,-0.5293557643890381,4.90762722492218,-0.0068335217237472535,-0.005293557643890381,0.0490762722492218 +karman_re400,ppo,193,77.2,1.2316787242889404,-0.23473455011844635,1.0370250940322876,-0.3447294235229492,0.6103283762931824,-0.15445764362812042,0.0021820836700499058,-0.002588331699371338,0.0029313387349247932,0.0031751429196447134,-0.0010065416572615504,-0.005720046348869801,-0.49102953076362615,-1.3939416408538818,4.351161360740662,-0.004910295307636261,-0.013939416408538819,0.043511613607406616 +karman_re400,ppo,194,77.6,1.1938267946243286,-0.05854533612728119,1.0509248971939087,0.11756666004657745,0.6017465591430664,0.057219263166189194,0.001663812668994069,-0.001609006430953741,0.0018276689806953073,0.003571432316675782,0.00020789977861568332,-0.005673747044056654,-0.21493470668792722,-2.075524091720581,3.7552676796913147,-0.0021493470668792723,-0.020755240917205812,0.03755267679691315 +karman_re400,ppo,195,78.0,1.1151539087295532,0.10126554220914841,1.0305168628692627,0.47773876786231995,0.664306104183197,0.23518376052379608,0.0010698548285290599,-0.00023419701028615236,0.0005976664833724499,0.0037267343141138554,0.0013103074161335826,-0.005830532871186733,0.008678078651428223,-2.5505919456481934,3.144419848918915,8.678078651428223e-05,-0.025505919456481934,0.03144419848918915 +karman_re400,ppo,196,78.4,1.0485637187957764,0.19984449446201324,0.9897681474685669,0.6108773946762085,0.7743623852729797,0.32447096705436707,0.0006745801074430346,0.0011954791843891144,-0.0007558284560218453,0.003562524216249585,0.00240718643181026,-0.006091269664466381,0.1878381073474884,-3.225844860076904,2.2941126823425293,0.001878381073474884,-0.03225844860076904,0.022941126823425292 +karman_re400,ppo,197,78.8,0.9791731238365173,0.27269068360328674,0.9579107761383057,0.6326268911361694,0.8823320865631104,0.3815082609653473,0.000648446730338037,0.0022364314645528793,-0.00225414359010756,0.0032757052686065435,0.0033007734455168247,-0.0061541288159787655,0.3823740482330322,-4.104544520378113,1.2546205520629883,0.0038237404823303223,-0.04104544520378113,0.012546205520629882 +karman_re400,ppo,198,79.2,0.8919245004653931,0.3344973623752594,0.9405288696289062,0.6620947122573853,0.97953200340271,0.42962318658828735,0.0011903404956683517,0.0028530973941087723,-0.003839261131361127,0.003185766050592065,0.00381902395747602,-0.0057113380171358585,0.5739478468894958,-4.844200491905212,0.29572057723999023,0.0057394784688949586,-0.04844200491905212,0.0029572057723999024 +karman_re400,ppo,199,79.6,0.799731969833374,0.36729639768600464,0.9273641109466553,0.6981223225593567,1.0734450817108154,0.4578949809074402,0.0021126391366124153,0.0032750105019658804,-0.005088025704026222,0.0037381465081125498,0.003989667631685734,-0.004635967314243317,0.7229945063591003,-5.189845561981201,-0.42070579528808594,0.007229945063591004,-0.05189845561981201,-0.0042070579528808594 +karman_re400,ppo,200,80.0,0.7136282920837402,0.3533465266227722,0.9114529490470886,0.7151085734367371,1.165529727935791,0.44228389859199524,0.002768842037767172,0.003513192292302847,-0.005070167127996683,0.005109712947160006,0.004197360947728157,-0.0032726326026022434,0.8064186573028564,-5.0394816398620605,-0.7366480827331543,0.008064186573028565,-0.050394816398620604,-0.0073664808273315435 +karman_re400,ppo,201,80.4,0.6404103636741638,0.28215283155441284,0.8865604996681213,0.6732826232910156,1.2492867708206177,0.3677842319011688,0.0030301434453576803,0.003203208791092038,-0.0034596193581819534,0.0064230673015117645,0.004191195592284203,-0.002217464614659548,0.7704922556877136,-4.514785885810852,-0.38948965072631836,0.007704922556877137,-0.04514785885810852,-0.003894896507263184 +karman_re400,ppo,202,80.8,0.5922659635543823,0.15398405492305756,0.8680583834648132,0.4056561589241028,1.2925866842269897,0.21222537755966187,0.0029443521052598953,0.0025543752126395702,-0.001498303608968854,0.006822703871876001,0.003509730100631714,-0.002071407390758395,0.5219254493713379,-3.7783656716346745,0.629194974899292,0.005219254493713379,-0.037783656716346745,0.0062919497489929204 +karman_re400,ppo,203,81.2,0.5887896418571472,-0.010555961169302464,0.876085102558136,-0.08426941931247711,1.2687010765075684,0.008538641035556793,0.0022344309836626053,0.001723701599985361,-9.812645294005051e-05,0.006764234974980354,0.002357641700655222,-0.0027055260725319386,0.19220222532749176,-3.1902536153793335,1.6305232048034668,0.0019220222532749175,-0.031902536153793334,0.01630523204803467 +karman_re400,ppo,204,81.6,0.645602822303772,-0.1591506153345108,0.8980062007904053,-0.49680572748184204,1.214155673980713,-0.14325957000255585,0.0013751192018389702,0.0005463534616865218,0.001030116924084723,0.006836348678916693,0.0011010554153472185,-0.003346869954839349,-0.024535045027732846,-2.7625086307525635,2.368964672088623,-0.00024535045027732847,-0.027625086307525637,0.02368964672088623 +karman_re400,ppo,205,82.0,0.7482433915138245,-0.2519766092300415,0.9168896675109863,-0.6683395504951477,1.1398528814315796,-0.24766957759857178,0.0008510923362337053,-0.0008414553594775498,0.002155096037313342,0.006949054077267647,-0.0002174771361751482,-0.0036129134241491556,-0.1782398521900177,-2.168525457382202,3.1901071071624756,-0.001782398521900177,-0.021685254573822022,0.03190107107162476 +karman_re400,ppo,206,82.4,0.8515556454658508,-0.32694733142852783,0.9304832220077515,-0.683085024356842,1.0453742742538452,-0.33855029940605164,0.0007372014806605875,-0.0020060332026332617,0.0031204568222165108,0.006827967707067728,-0.0016291294014081359,-0.0035843884106725454,-0.34867364168167114,-1.3546671867370605,4.148144483566284,-0.0034867364168167116,-0.013546671867370606,0.041481444835662844 +karman_re400,ppo,207,82.8,0.9460857510566711,-0.38893428444862366,0.945655345916748,-0.689913272857666,0.9483045339584351,-0.4077858030796051,0.0010690807830542326,-0.00274793803691864,0.0037688957527279854,0.006188900675624609,-0.00297752907499671,-0.0035788414534181356,-0.5147825479507446,-0.5363328456878662,4.945281028747559,-0.005147825479507447,-0.005363328456878662,0.049452810287475585 +karman_re400,ppo,208,83.2,1.0369958877563477,-0.4244273900985718,0.9620933532714844,-0.7092268466949463,0.8552136421203613,-0.4387211501598358,0.0016793523682281375,-0.003198139136657119,0.0040078070014715195,0.00502226036041975,-0.0038905178662389517,-0.0038900712970644236,-0.6488530039787292,-0.012117385864257812,5.336910963058472,-0.0064885300397872925,-0.00012117385864257813,0.05336910963058472 +karman_re400,ppo,209,83.6,1.121147632598877,-0.4180716574192047,0.9800652861595154,-0.7081019878387451,0.7641580700874329,-0.41812825202941895,0.0021615643054246902,-0.0034298666287213564,0.004050552379339933,0.0038060443475842476,-0.003838849253952503,-0.004654698073863983,-0.7172827124595642,0.03834342956542969,5.285545110702515,-0.0071728271245956425,0.0003834342956542969,0.05285545110702515 +karman_re400,ppo,210,84.0,1.192711591720581,-0.3620431125164032,1.002697467803955,-0.6458066701889038,0.6785067915916443,-0.33233359456062317,0.0023279094602912664,-0.0032437783665955067,0.003809679066762328,0.0030881399288773537,-0.0026698282454162836,-0.005458022467792034,-0.6922447085380554,-0.4418518543243408,4.953082323074341,-0.006922447085380554,-0.004418518543243408,0.04953082323074341 +karman_re400,ppo,211,84.4,1.231736421585083,-0.24948357045650482,1.0319428443908691,-0.38572239875793457,0.6145382523536682,-0.17398430407047272,0.002222539624199271,-0.002659266348928213,0.003046660451218486,0.0031318655237555504,-0.0011344824451953173,-0.00574142811819911,-0.5173144340515137,-1.3026483058929443,4.411105155944824,-0.005173144340515137,-0.013026483058929443,0.04411105155944824 +karman_re400,ppo,212,84.8,1.2019168138504028,-0.07603491097688675,1.0493754148483276,0.07122369110584259,0.6003340482711792,0.035561587661504745,0.0017347525572404265,-0.001722831279039383,0.001958312001079321,0.0035443613305687904,0.00012255733599886298,-0.005711029749363661,-0.24435481429100034,-2.035008192062378,3.8100759387016296,-0.0024435481429100035,-0.02035008192062378,0.0381007593870163 +karman_re400,ppo,213,85.2,1.124207854270935,0.08930248022079468,1.032713770866394,0.4528132379055023,0.6557671427726746,0.22095884382724762,0.0011214491678401828,-0.0003821552963927388,0.0007214631768874824,0.0037397106643766165,0.0012104668421670794,-0.0058310325257480145,-0.012919381260871885,-2.5193508863449097,3.2107007503509517,-0.00012919381260871886,-0.025193508863449097,0.03210700750350952 +karman_re400,ppo,214,85.6,1.0557966232299805,0.19277572631835938,0.9929417967796326,0.6067838668823242,0.762951672077179,0.31773442029953003,0.0006916419370099902,0.0010661386186257005,-0.0006328496965579689,0.0035895074252039194,0.002295340411365032,-0.006060166750103235,0.1694246232509613,-3.154127597808838,2.389158606529236,0.001694246232509613,-0.03154127597808838,0.023891586065292358 +karman_re400,ppo,215,86.0,0.9868465662002563,0.2667630612850189,0.959204912185669,0.6320419907569885,0.8714067935943604,0.375802606344223,0.0006226963014341891,0.0021527104545384645,-0.002112311776727438,0.00328636821359396,0.0032161541748791933,-0.006141492165625095,0.3647778034210205,-4.012424349784851,1.3556749820709229,0.003647778034210205,-0.04012424349784851,0.01355674982070923 +karman_re400,ppo,216,86.4,0.900729775428772,0.33027127385139465,0.9412617683410645,0.6592376232147217,0.9692459106445312,0.4252505600452423,0.0011203439207747579,0.0028022238984704018,-0.003684115130454302,0.0031614669132977724,0.0037895306013524532,-0.005767949856817722,0.5584819316864014,-4.777845740318298,0.3797340393066406,0.005584819316864014,-0.04777845740318298,0.0037973403930664064 +karman_re400,ppo,217,86.8,0.8093858957290649,0.36672914028167725,0.9294090867042542,0.6957833766937256,1.0644593238830566,0.45638924837112427,0.0020355188753455877,0.0032351177651435137,-0.004994635470211506,0.003652164712548256,0.003987131640315056,-0.004765257705003023,0.71104896068573,-5.176497936248779,-0.3639688491821289,0.0071104896068573,-0.05176497936248779,-0.0036396884918212893 +karman_re400,ppo,218,87.2,0.7226338386535645,0.3577369451522827,0.9147499203681946,0.7151605486869812,1.1572767496109009,0.44594699144363403,0.0027346620336174965,0.003513008588925004,-0.005142460577189922,0.0049795303493738174,0.004180914256721735,-0.003409653902053833,0.8009468317031861,-5.0761027336120605,-0.7264432907104492,0.008009468317031861,-0.050761027336120604,-0.007264432907104493 +karman_re400,ppo,219,87.6,0.6472413539886475,0.29203593730926514,0.8907389044761658,0.6842175126075745,1.2423263788223267,0.37786439061164856,0.0030037418473511934,0.003258400596678257,-0.0036642991472035646,0.0063414182513952255,0.004208456724882126,-0.00229280604980886,0.781588912010193,-4.57883358001709,-0.4542241096496582,0.00781588912010193,-0.0457883358001709,-0.004542241096496582 +karman_re400,ppo,220,88.0,0.5950641632080078,0.16856621205806732,0.8702324032783508,0.4442357122898102,1.2907158136367798,0.23076097667217255,0.0029759095050394535,0.0026249978691339493,-0.0016847221413627267,0.006798542570322752,0.0035873488523066044,-0.002038975479081273,0.5545452833175659,-3.8455006480216984,0.5185446739196777,0.005545452833175659,-0.038455006480216984,0.005185446739196777 +karman_re400,ppo,221,88.4,0.5856537222862244,0.005493932869285345,0.8756234049797058,-0.03569431230425835,1.2713621854782104,0.027156183496117592,0.002322359476238489,0.0018188648391515017,-0.00022861994511913508,0.006746460683643818,0.00247310777194798,-0.0026229796931147575,0.2224959135055542,-3.2349332571029663,1.539616584777832,0.002224959135055542,-0.03234933257102966,0.015396165847778321 +karman_re400,ppo,222,88.8,0.6370649933815002,-0.14769038558006287,0.8974374532699585,-0.4671541452407837,1.2189613580703735,-0.1310693323612213,0.0014581732684746385,0.00067351438337937,0.000924653431866318,0.006819963920861483,0.0012341445544734597,-0.003294976893812418,-0.0051056742668151855,-2.809105396270752,2.2897465229034424,-5.105674266815186e-05,-0.02809105396270752,0.022897465229034426 +karman_re400,ppo,223,89.2,0.7382349967956543,-0.2451636642217636,0.9173799157142639,-0.6609715819358826,1.148227572441101,-0.23762893676757812,0.0008933331118896604,-0.0007092900341376662,0.0020591027569025755,0.006965288892388344,-6.886414485052228e-05,-0.0036091560032218695,-0.16171443462371826,-2.240593910217285,3.1009111404418945,-0.0016171443462371826,-0.022405939102172853,0.031009111404418945 +karman_re400,ppo,224,89.6,0.8427935838699341,-0.32030612230300903,0.9305370450019836,-0.6832742094993591,1.0550612211227417,-0.32968589663505554,0.0007268801564350724,-0.0019135087495669723,0.0030374431516975164,0.006880059838294983,-0.0014843401731923223,-0.00360085372813046,-0.33121824264526367,-1.4411139488220215,4.060961365699768,-0.003312182426452637,-0.014411139488220216,0.04060961365699768 +karman_re400,ppo,225,90.0,0.937430202960968,-0.38427621126174927,0.9447383284568787,-0.6879824995994568,0.9571868181228638,-0.4019349217414856,0.0010068609844893217,-0.0026915837079286575,0.0037123197689652443,0.006285108160227537,-0.002866722410544753,-0.0035665002651512623,-0.49871686100959783,-0.6066110134124756,4.88639771938324,-0.004987168610095978,-0.006066110134124756,0.0488639771938324 +karman_re400,ppo,226,90.4,1.0279935598373413,-0.42260119318962097,0.9601545929908752,-0.707730770111084,0.8630068898200989,-0.43722835183143616,0.0016107677947729826,-0.003161379136145115,0.003988978452980518,0.005138607230037451,-0.003842786652967334,-0.003819346660748124,-0.6359244585037231,-0.038129329681396484,5.3190224170684814,-0.006359244585037231,-0.00038129329681396484,0.053190224170684815 +karman_re400,ppo,227,90.8,1.1128263473510742,-0.42094194889068604,0.9776818752288818,-0.709810197353363,0.771697998046875,-0.42232638597488403,0.0021313356701284647,-0.0034191212616860867,0.0040581971406936646,0.0039018800016492605,-0.0038952380418777466,-0.0045532057993113995,-0.7116076350212097,0.06270503997802734,5.303985595703125,-0.007116076350212097,0.0006270503997802734,0.05303985595703125 +karman_re400,ppo,228,91.2,1.186987042427063,-0.3695025146007538,1.0007354021072388,-0.6579137444496155,0.6861036419868469,-0.3434591591358185,0.0023260852321982384,-0.003279946045950055,0.0038733489345759153,0.003124671522527933,-0.002796357963234186,-0.005409606732428074,-0.6997355222702026,-0.3717796802520752,4.995065450668335,-0.006997355222702026,-0.003717796802520752,0.04995065450668335 +karman_re400,ppo,229,91.6,1.2312484979629517,-0.2631721794605255,1.0303065776824951,-0.422476202249527,0.6193413734436035,-0.19198371469974518,0.0022514122538268566,-0.0027307041455060244,0.0031518740579485893,0.003110390854999423,-0.001251055859029293,-0.005762671120464802,-0.5416358113288879,-1.225987434387207,4.471246004104614,-0.00541635811328888,-0.01225987434387207,0.04471246004104614 +karman_re400,ppo,230,92.0,1.2083196640014648,-0.09386101365089417,1.0499523878097534,0.02636265754699707,0.5989116430282593,0.015039138495922089,0.0017870814772322774,-0.0018343101255595684,0.0020644476171582937,0.003520601661875844,1.9073546354775317e-05,-0.005716642364859581,-0.2711144983768463,-1.992645740509033,3.866485178470612,-0.0027111449837684634,-0.01992645740509033,0.03866485178470612 +karman_re400,ppo,231,92.4,1.1316728591918945,0.07581691443920135,1.035793423652649,0.42620572447776794,0.647135853767395,0.2067331075668335,0.001166899804957211,-0.0005277099553495646,0.0008327303221449256,0.0037363246083259583,0.001092834398150444,-0.00578314857557416,-0.03036437928676605,-2.4718658924102783,3.2757525444030757,-0.0003036437928676605,-0.024718658924102785,0.03275752544403076 +karman_re400,ppo,232,92.8,1.0611655712127686,0.18443897366523743,0.9961849451065063,0.6006191372871399,0.7509825229644775,0.31116488575935364,0.0007175286300480366,0.0009359651012346148,-0.0005020704702474177,0.00360435270704329,0.0021828419994562864,-0.00600782036781311,0.15446346998214722,-3.0668311715126038,2.482911229133606,0.0015446346998214723,-0.03066831171512604,0.02482911229133606 +karman_re400,ppo,233,93.2,0.99408358335495,0.25959646701812744,0.9612834453582764,0.6305347681045532,0.8610959649085999,0.37032321095466614,0.0006125151994638145,0.0020677726715803146,-0.0019524152157828212,0.003307624952867627,0.0031442702747881413,-0.006135057657957077,0.34694337844848633,-3.9166675806045532,1.4584770202636719,0.0034694337844848634,-0.039166675806045534,0.014584770202636719 +karman_re400,ppo,234,93.6,0.9102045297622681,0.3246270716190338,0.9429901242256165,0.6556622385978699,0.9604766964912415,0.42107513546943665,0.0010563881369307637,0.002753805136308074,-0.0035213762894272804,0.0031635200139135122,0.003763057291507721,-0.005838428623974323,0.5407373905181885,-4.715158462524414,0.468848705291748,0.005407373905181885,-0.047151584625244145,0.00468848705291748 +karman_re400,ppo,235,94.0,0.8187787532806396,0.36464884877204895,0.930915355682373,0.6926174163818359,1.0559405088424683,0.4548785090446472,0.001942992676049471,0.0031991491559892893,-0.00490094069391489,0.003582105040550232,0.003976473119109869,-0.004896383732557297,0.6974582672119141,-5.162872552871704,-0.3026871681213379,0.006974582672119141,-0.05162872552871704,-0.003026871681213379 +karman_re400,ppo,236,94.4,0.730872392654419,0.3606940507888794,0.9162930250167847,0.714295506477356,1.1487772464752197,0.44951754808425903,0.0026790155097842216,0.0035056991036981344,-0.005219370126724243,0.0048275841400027275,0.004145749378949404,-0.003542391350492835,0.7954420447349548,-5.10649037361145,-0.7128181457519531,0.007954420447349548,-0.051064903736114504,-0.007128181457519532 +karman_re400,ppo,237,94.8,0.6532866954803467,0.3008136451244354,0.8921476006507874,0.6927217245101929,1.2346168756484985,0.38765883445739746,0.002980939345434308,0.0033088638447225094,-0.003877761075273156,0.006221913266927004,0.004218286368995905,-0.0023672054521739483,0.7925856113433837,-4.636695027351379,-0.5191993713378906,0.007925856113433837,-0.04636695027351379,-0.005191993713378906 +karman_re400,ppo,238,95.2,0.5979357361793518,0.18273991346359253,0.8691772222518921,0.4810158908367157,1.2885099649429321,0.2490254044532776,0.0030089763458818197,0.0026930212043225765,-0.0018723005196079612,0.006775659509003162,0.0036759311333298683,-0.002007528906688094,0.5873433351516724,-3.9179663658142094,0.3988606929779053,0.005873433351516724,-0.03917966365814209,0.003988606929779053 +karman_re400,ppo,239,95.6,0.5843254327774048,0.022135067731142044,0.8726600408554077,0.014780644327402115,1.2761991024017334,0.046194955706596375,0.0024183455388993025,0.0019102803198620677,-0.00034296311787329614,0.006762971170246601,0.002605404006317258,-0.002541736699640751,0.2534445822238922,-3.283207058906555,1.4484772682189941,0.002534445822238922,-0.03283207058906555,0.014484772682189942 +karman_re400,ppo,240,96.0,0.6300820112228394,-0.1347903609275818,0.8945478200912476,-0.43461185693740845,1.2259390354156494,-0.1192498579621315,0.0015426173340529203,0.0007993317558430135,0.0008238291484303772,0.006830102298408747,0.0013680405681952834,-0.003243295941501856,0.011603474617004395,-2.8525333404541016,2.223338007926941,0.00011603474617004395,-0.028525333404541015,0.02223338007926941 +karman_re400,ppo,241,96.4,0.7281124591827393,-0.2372886687517166,0.9155829548835754,-0.6522122025489807,1.157151460647583,-0.22884567081928253,0.0009273296454921365,-0.0005738015752285719,0.0019485916709527373,0.0069754342548549175,6.056496931705624e-05,-0.0036009857431054115,-0.14796537160873413,-2.3060367107391357,3.020850718021393,-0.0014796537160873414,-0.023060367107391358,0.03020850718021393 +karman_re400,ppo,242,96.8,0.8331968784332275,-0.3128316402435303,0.9289427995681763,-0.6839834451675415,1.0647484064102173,-0.3220493793487549,0.0007173429476097226,-0.0018134171841666102,0.002940867329016328,0.006902148947119713,-0.001357079716399312,-0.00360504980199039,-0.31452691555023193,-1.5217866897583008,3.9706100225448613,-0.0031452691555023194,-0.015217866897583008,0.03970610022544861 +karman_re400,ppo,243,97.2,0.927621603012085,-0.37880516052246094,0.9425603747367859,-0.6865138411521912,0.9659669995307922,-0.3969888389110565,0.0009593943250365555,-0.0026311271358281374,0.0036572632379829884,0.006357248406857252,-0.0027475785464048386,-0.003547848202288151,-0.4827221930027008,-0.6768343448638916,4.817602753639221,-0.004827221930027008,-0.006768343448638916,0.04817602753639221 +karman_re400,ppo,244,97.6,1.0187736749649048,-0.4199225604534149,0.9584446549415588,-0.7061249017715454,0.8718358874320984,-0.4363788962364197,0.0015547003131359816,-0.0031234240159392357,0.003982009366154671,0.005255421623587608,-0.003770852694287896,-0.0037678915541619062,-0.6236992478370667,-0.07283282279968262,5.294350862503052,-0.006236992478370666,-0.0007283282279968262,0.05294350862503052 +karman_re400,ppo,245,98.0,1.105188012123108,-0.4230225682258606,0.9768657684326172,-0.7110124230384827,0.7811336517333984,-0.4269014596939087,0.0021023107692599297,-0.003407552605494857,0.0040689753368496895,0.004013935104012489,-0.003925788216292858,-0.004480238538235426,-0.7078222036361694,0.07225704193115234,5.320743560791016,-0.007078222036361694,0.0007225704193115234,0.05320743560791016 +karman_re400,ppo,246,98.4,1.1808760166168213,-0.3763565421104431,0.9998871088027954,-0.6678079962730408,0.6946313381195068,-0.3546169400215149,0.0023179359268397093,-0.003316066227853298,0.003917103633284569,0.003178158076480031,-0.002923910040408373,-0.005360905546694994,-0.7074684500694275,-0.3161633014678955,5.035321235656738,-0.0070746845006942755,-0.003161633014678955,0.05035321235656738 +karman_re400,ppo,247,98.8,1.2292462587356567,-0.2764759659767151,1.029452919960022,-0.4563847482204437,0.6244791150093079,-0.20982715487480164,0.002267594449222088,-0.002801427850499749,0.0032309265807271004,0.0030913855880498886,-0.0013991518644616008,-0.005745626520365477,-0.5640209913253784,-1.14570951461792,4.5296807289123535,-0.005640209913253784,-0.0114570951461792,0.04529680728912354 +karman_re400,ppo,248,99.2,1.212986707687378,-0.1123814508318901,1.051048994064331,-0.01918208971619606,0.5975451469421387,-0.00557381147518754,0.0018391560297459364,-0.0019411176908761263,0.0021654763258993626,0.0034796094987541437,-0.0001084824834833853,-0.005689230747520924,-0.29582178592681885,-1.9274761676788332,3.924075722694397,-0.0029582178592681887,-0.01927476167678833,0.03924075722694397 +karman_re400,ppo,249,99.6,1.1381255388259888,0.06098714843392372,1.0396071672439575,0.3963485062122345,0.638547420501709,0.1920144259929657,0.0012214204762130976,-0.0006683745887130499,0.0009566763183102012,0.003722355468198657,0.0009750305325724185,-0.005741823930293322,-0.04782218486070633,-2.4114043712615967,3.339974164962769,-0.0004782218486070633,-0.024114043712615968,0.03339974164962769 +karman_re400,ppo,250,100.0,1.0665589570999146,0.1753554791212082,1.001296043395996,0.5918804407119751,0.7398412823677063,0.30484017729759216,0.0007561489474028349,0.000803012924734503,-0.00035428203409537673,0.0036271638236939907,0.0020839443895965815,-0.005988363642245531,0.1375664472579956,-2.985422134399414,2.5745686292648315,0.001375664472579956,-0.029854221343994142,0.025745686292648316 +karman_re400,ppo,251,100.4,1.0013412237167358,0.2518875300884247,0.9648469686508179,0.6281480193138123,0.8516403436660767,0.3652176558971405,0.0006069892551749945,0.0019809582736343145,-0.0017930337926372886,0.0033470490016043186,0.003074562642723322,-0.006153486203402281,0.32602861523628235,-3.8332564234733577,1.5628652572631838,0.0032602861523628236,-0.03833256423473358,0.015628652572631838 +karman_re400,ppo,252,100.8,0.9191166758537292,0.318193644285202,0.9448071122169495,0.6515445113182068,0.9516588449478149,0.4169776439666748,0.000982294324785471,0.0027037719264626503,-0.0033686277456581593,0.0031734106596559286,0.0037225987762212753,-0.0059103588573634624,0.5215556621551514,-4.6562148332595825,0.5590083599090576,0.005215556621551514,-0.046562148332595824,0.005590083599090577 +karman_re400,ppo,253,101.2,0.8274280428886414,0.3616507053375244,0.9318411350250244,0.6887857913970947,1.0468597412109375,0.4531141221523285,0.00183916836977005,0.003160635009407997,-0.004804818890988827,0.003500323975458741,0.003957015462219715,-0.005015108734369278,0.6842015385627747,-5.142167091369629,-0.24035930633544922,0.006842015385627747,-0.05142167091369629,-0.002403593063354492 +karman_re400,ppo,254,101.6,0.738290548324585,0.36276835203170776,0.916831910610199,0.7127742171287537,1.1392995119094849,0.45269981026649475,0.002626283559948206,0.003490222617983818,-0.005270384717732668,0.004659829195588827,0.004118277691304684,-0.003671327605843544,0.7902618050575255,-5.131311416625977,-0.6974725723266602,0.007902618050575256,-0.05131311416625977,-0.006974725723266601 +karman_re400,ppo,255,102.0,0.659588634967804,0.30892449617385864,0.8934485912322998,0.6993828415870667,1.2264952659606934,0.3969613015651703,0.0029654353857040405,0.003350763116031885,-0.00406417902559042,0.006106172222644091,0.004240460228174925,-0.0024521956220269203,0.8011103272438049,-4.696536302566528,-0.5775513648986816,0.00801110327243805,-0.046965363025665285,-0.005775513648986817 +karman_re400,ppo,256,102.4,0.6022921204566956,0.19654512405395508,0.8691897392272949,0.5155287981033325,1.2865970134735107,0.2669299244880676,0.003038906492292881,0.0027584529016166925,-0.0020424809772521257,0.006772646214812994,0.003772889729589224,-0.001995309954509139,0.6172035336494446,-3.994218826293945,0.2884399890899658,0.006172035336494446,-0.03994218826293945,0.0028843998908996585 +karman_re400,ppo,257,102.8,0.5839489698410034,0.03891655430197716,0.8696624040603638,0.06608258932828903,1.2811789512634277,0.06609969586133957,0.0025017603766173124,0.0019937565084546804,-0.00045508681796491146,0.006788067985326052,0.0027291702572256327,-0.002475989516824484,0.2829875946044922,-3.3342989683151245,1.3649091720581055,0.002829875946044922,-0.03334298968315125,0.013649091720581055 +karman_re400,ppo,258,103.2,0.6233029365539551,-0.12096066772937775,0.8905301690101624,-0.3991925120353699,1.2326542139053345,-0.106537826359272,0.0016136985504999757,0.0009259989601559937,0.0007103724055923522,0.006819344125688076,0.0014823945239186287,-0.003192223608493805,0.026925623416900635,-2.892069935798645,2.162417769432068,0.00026925623416900634,-0.02892069935798645,0.02162417769432068 +karman_re400,ppo,259,103.6,0.717238187789917,-0.22883683443069458,0.9122355580329895,-0.6414942145347595,1.165360689163208,-0.21981550753116608,0.0009619928896427155,-0.00043559816549532115,0.001832568901591003,0.0069520496763288975,0.00018095264385920018,-0.0035821138881146908,-0.13428479433059692,-2.368542194366455,2.935096263885498,-0.0013428479433059692,-0.02368542194366455,0.02935096263885498 +karman_re400,ppo,260,104.0,0.8226926326751709,-0.30501842498779297,0.9261224269866943,-0.684739887714386,1.0740642547607422,-0.31413203477859497,0.0007186984876170754,-0.001708748983219266,0.002852031495422125,0.006905229762196541,-0.0012206382816657424,-0.0036032525822520256,-0.2978987395763397,-1.6042225360870361,3.8724793195724483,-0.002978987395763397,-0.01604222536087036,0.038724793195724486 +karman_re400,ppo,261,104.4,0.9182627201080322,-0.3730330765247345,0.9404904842376709,-0.6853669881820679,0.9757758378982544,-0.3915973901748657,0.0009249358554370701,-0.002567316871136427,0.0036122105084359646,0.006430414505302906,-0.002614564262330532,-0.003545583225786686,-0.46747085452079773,-0.7541718482971191,4.744716048240662,-0.004674708545207977,-0.007541718482971192,0.04744716048240662 +karman_re400,ppo,262,104.8,1.0103199481964111,-0.4170383810997009,0.9570295214653015,-0.7044565677642822,0.8818163275718689,-0.4350367784500122,0.0014979392290115356,-0.0030852595809847116,0.003973407670855522,0.005384071264415979,-0.0036927666515111923,-0.003741869004443288,-0.6133618950843811,-0.11811685562133789,5.267855882644653,-0.006133618950843811,-0.001181168556213379,0.05267855882644654 +karman_re400,ppo,263,105.2,1.0974149703979492,-0.42488422989845276,0.9752139449119568,-0.7119808793067932,0.7907602190971375,-0.43094107508659363,0.0020625765901058912,-0.003394105238839984,0.004063124768435955,0.004134374670684338,-0.0039633410051465034,-0.0044060368090868,-0.7049800753593445,0.0749201774597168,5.336089134216309,-0.007049800753593445,0.000749201774597168,0.05336089134216309 +karman_re400,ppo,264,105.6,1.1741877794265747,-0.3831098675727844,0.9972755312919617,-0.676433265209198,0.7031123638153076,-0.3653263449668884,0.002303958171978593,-0.0033492485526949167,0.003939012996852398,0.0032304900232702494,-0.003074736101552844,-0.005277189426124096,-0.7135269641876221,-0.25629639625549316,5.0733726024627686,-0.007135269641876221,-0.0025629639625549317,0.05073372602462769 +karman_re400,ppo,265,106.0,1.226151943206787,-0.2894056439399719,1.025681972503662,-0.4890068769454956,0.629669189453125,-0.22767065465450287,0.0022867382504045963,-0.002866781083866954,0.00330928317271173,0.0030609748791903257,-0.0015657087787985802,-0.005712397862225771,-0.5843038558959961,-1.0482988357543945,4.587310552597046,-0.005843038558959961,-0.010482988357543946,0.04587310552597046 +karman_re400,ppo,266,106.4,1.217517375946045,-0.13072699308395386,1.0494740009307861,-0.06696100533008575,0.5970740914344788,-0.02728711999952793,0.0018998521845787764,-0.0020429021678864956,0.0022814031690359116,0.0034283387940376997,-0.0002305033995071426,-0.0056891776621341705,-0.32297462224960327,-1.85432767868042,3.9816625118255615,-0.003229746222496033,-0.0185432767868042,0.039816625118255615 +karman_re400,ppo,267,106.8,1.146449089050293,0.046109236776828766,1.0426149368286133,0.3633292317390442,0.6315929889678955,0.17548105120658875,0.0012865421595051885,-0.0008079119143076241,0.0010922523215413094,0.003711963538080454,0.0008771021384745836,-0.005745179485529661,-0.06979244202375412,-2.364624261856079,3.4009846448898315,-0.0006979244202375412,-0.02364624261856079,0.03400984644889832 +karman_re400,ppo,268,107.2,1.0732662677764893,0.16675756871700287,1.006218671798706,0.582034170627594,0.7290340662002563,0.29761940240859985,0.0007956271874718368,0.0006642289226874709,-0.00021325093985069543,0.0036576734855771065,0.0019873850978910923,-0.005990620236843824,0.11796878278255461,-2.9250361919403076,2.661961078643799,0.0011796878278255462,-0.029250361919403077,0.02661961078643799 +karman_re400,ppo,269,107.6,1.0086939334869385,0.24504171311855316,0.9681946635246277,0.6266080737113953,0.841559648513794,0.3598000705242157,0.0005964364972896874,0.0018867338076233864,-0.0016516511095687747,0.0033823333214968443,0.00298571796156466,-0.006166635546833277,0.3049776256084442,-3.7548424005508423,1.6661710739135742,0.0030497762560844424,-0.037548424005508424,0.016661710739135742 +karman_re400,ppo,270,108.0,0.9276684522628784,0.31249791383743286,0.946276843547821,0.6482440829277039,0.9419312477111816,0.41244223713874817,0.000912416260689497,0.0026493328623473644,-0.0032219961285591125,0.003170129843056202,0.003670152509585023,-0.0059582083486020565,0.5030912756919861,-4.588517904281616,0.6486995220184326,0.005030912756919861,-0.045885179042816165,0.006486995220184326 +karman_re400,ppo,271,108.4,0.8357849717140198,0.3591350317001343,0.9326490759849548,0.6852741241455078,1.0368332862854004,0.4506027102470398,0.0017451478634029627,0.003119200700893998,-0.004690801724791527,0.003420325228944421,0.00394302885979414,-0.005121992435306311,0.6715341210365295,-5.112691164016724,-0.17712879180908203,0.006715341210365295,-0.051126911640167236,-0.0017712879180908202 +karman_re400,ppo,272,108.8,0.746601402759552,0.3650980293750763,0.9187458157539368,0.7114509344100952,1.1300065517425537,0.45493054389953613,0.002579604974016547,0.003472144715487957,-0.00528616551309824,0.004511828534305096,0.004104478284716606,-0.003804994747042656,0.7834974527359009,-5.153418302536011,-0.674809455871582,0.007834974527359009,-0.05153418302536011,-0.006748094558715821 +karman_re400,ppo,273,109.2,0.667141854763031,0.31696251034736633,0.8972389101982117,0.7047789096832275,1.2187397480010986,0.40507054328918457,0.002947831992059946,0.003389075631275773,-0.004226781893521547,0.006003148388117552,0.0042607467621564865,-0.0025516459718346596,0.8062019944190979,-4.756434679031372,-0.6221637725830078,0.008062019944190979,-0.047564346790313725,-0.006221637725830079 +karman_re400,ppo,274,109.6,0.6070204973220825,0.2100001722574234,0.8721864223480225,0.546593427658081,1.2834020853042603,0.28364524245262146,0.0030499983113259077,0.0028253686614334583,-0.0022192606702446938,0.006762432400137186,0.0038517385255545378,-0.0019996026530861855,0.6439870595932007,-4.06935453414917,0.18795490264892578,0.006439870595932007,-0.0406935453414917,0.001879549026489258 +karman_re400,ppo,275,110.0,0.5835643410682678,0.055324725806713104,0.8697893023490906,0.11620957404375076,1.284170389175415,0.08650384098291397,0.002570169512182474,0.0020820205099880695,-0.000588210707064718,0.006786780897527933,0.0028351249638944864,-0.0024123145267367363,0.3138921558856964,-3.3858031034469604,1.277301549911499,0.003138921558856964,-0.033858031034469604,0.012773015499114991 +karman_re400,ppo,276,110.4,0.6161439418792725,-0.10720914602279663,0.888725996017456,-0.3619075417518616,1.2370271682739258,-0.09244867414236069,0.0016902441857382655,0.0010489907581359148,0.0005922750569880009,0.006786148063838482,0.0015963843325152993,-0.003131445264443755,0.04656609147787094,-2.9334796667099,2.0884835720062256,0.00046566091477870944,-0.029334796667099,0.020884835720062257 +karman_re400,ppo,277,110.8,0.7060392498970032,-0.2208411991596222,0.9105172753334045,-0.6284712553024292,1.1720541715621948,-0.20938830077648163,0.0010086946422234178,-0.000299340405035764,0.0017240907764062285,0.006926219444721937,0.00031289138132706285,-0.0035578173119574785,-0.11802393943071367,-2.432419538497925,2.844181776046753,-0.0011802393943071367,-0.02432419538497925,0.02844181776046753 +karman_re400,ppo,278,111.2,0.8130024075508118,-0.29781845211982727,0.925264298915863,-0.6846576929092407,1.0836139917373657,-0.30466413497924805,0.0007301257573999465,-0.0016016418812796474,0.002771663712337613,0.006923411972820759,-0.0010707387700676918,-0.003612311789765954,-0.28031548857688904,-1.6889860630035403,3.7749409675598145,-0.0028031548857688905,-0.016889860630035402,0.037749409675598145 +karman_re400,ppo,279,111.6,0.9096592664718628,-0.36754366755485535,0.9394335150718689,-0.6840682029724121,0.9856016635894775,-0.38458365201950073,0.0008875714265741408,-0.002501873066648841,0.003560758428648114,0.006515404675155878,-0.0024793182965368032,-0.0035564410500228405,-0.4521385729312897,-0.8365232944488525,4.673003673553467,-0.004521385729312897,-0.008365232944488526,0.04673003673553467 +karman_re400,ppo,280,112.0,1.0019376277923584,-0.41425323486328125,0.9554615020751953,-0.7024792432785034,0.8910033702850342,-0.4320888817310333,0.0014293183339759707,-0.0030456013046205044,0.003951107617467642,0.0055133444257080555,-0.003619133261963725,-0.0037094310391694307,-0.6017773151397705,-0.16550660133361816,5.239463806152344,-0.006017773151397705,-0.0016550660133361817,0.05239463806152344 +karman_re400,ppo,281,112.4,1.0893073081970215,-0.4265626072883606,0.9726762175559998,-0.7125589847564697,0.7992518544197083,-0.4333415627479553,0.002014324301853776,-0.003375288564711809,0.004050088115036488,0.004248505923897028,-0.004001724533736706,-0.004307182040065527,-0.6991674304008484,0.08132553100585938,5.348550796508789,-0.006991674304008484,0.0008132553100585937,0.05348550796508789 +karman_re400,ppo,282,112.8,1.1669306755065918,-0.38957294821739197,0.9932365417480469,-0.6839195489883423,0.7105857133865356,-0.3744973838329315,0.0022927478421479464,-0.003373496001586318,0.003966711927205324,0.003281625220552087,-0.003221547231078148,-0.005188323091715574,-0.7163400053977966,-0.19104790687561035,5.109428882598877,-0.0071634000539779665,-0.0019104790687561035,0.05109428882598877 +karman_re400,ppo,283,113.2,1.2231452465057373,-0.3015477955341339,1.0208317041397095,-0.5195891857147217,0.6353451609611511,-0.24438297748565674,0.002307707443833351,-0.0029262336902320385,0.003403568174690008,0.003036198206245899,-0.0017137303948402405,-0.0056976680643856525,-0.604743242263794,-0.9521908760070801,4.643815755844116,-0.0060474324226379396,-0.0095219087600708,0.04643815755844116 +karman_re400,ppo,284,113.6,1.222631812095642,-0.1482744812965393,1.0466203689575195,-0.11488866060972214,0.5980837345123291,-0.04885251075029373,0.0019612261094152927,-0.0021384612191468477,0.0024041656870394945,0.0033873342908918858,-0.0003305938153062016,-0.005722148809581995,-0.35232874751091003,-1.7918312549591064,4.039889454841614,-0.0035232874751091004,-0.017918312549591066,0.04039889454841614 +karman_re400,ppo,285,114.0,1.1555262804031372,0.03125070780515671,1.0436776876449585,0.32859528064727783,0.625460684299469,0.1576215624809265,0.0013487035175785422,-0.0009447276825085282,0.0012171748094260693,0.003707256866618991,0.0007830836693756282,-0.005752258934080601,-0.0934373065829277,-2.3343217372894287,3.4585354328155513,-0.0009343730658292771,-0.023343217372894288,0.034585354328155515 +karman_re400,ppo,286,114.4,1.0805894136428833,0.15821973979473114,1.0095844268798828,0.5714324712753296,0.7180262207984924,0.28911536931991577,0.0008279599132947624,0.0005214165430516005,-8.97428035386838e-05,0.0036799015942960978,0.0018764873966574669,-0.005966078024357557,0.09963764995336534,-2.867622971534729,2.7457566261291504,0.0009963764995336534,-0.02867622971534729,0.027457566261291505 +karman_re400,ppo,287,114.8,1.0157980918884277,0.23864632844924927,0.9703681468963623,0.6260432600975037,0.8305345177650452,0.35388949513435364,0.0005922906566411257,0.0017863777466118336,-0.0015142288757488132,0.003404399147257209,0.00288976076990366,-0.006144822109490633,0.2866702079772949,-3.665357828140259,1.7687067985534668,0.002866702079772949,-0.03665357828140259,0.01768706798553467 +karman_re400,ppo,288,115.2,0.9361411929130554,0.3071623742580414,0.9471435546875,0.6458712816238403,0.9316532015800476,0.40752938389778137,0.0008569646161049604,0.0025893046986311674,-0.0030667216051369905,0.0031670532189309597,0.0036185183562338352,-0.0059897406026721,0.48582121729850775,-4.5101693868637085,0.7411990165710449,0.004858212172985077,-0.045101693868637084,0.007411990165710449 +karman_re400,ppo,289,115.6,0.8451682329177856,0.35675129294395447,0.934065043926239,0.6821929216384888,1.0274834632873535,0.44767189025878906,0.001660753507167101,0.0030774676706641912,-0.0045611923560500145,0.003362886607646942,0.003936153370887041,-0.005228795576840639,0.6576527953147888,-5.077758312225342,-0.10792064666748048,0.006576527953147888,-0.05077758312225342,-0.0010792064666748048 +karman_re400,ppo,290,116.0,0.7557114958763123,0.36730679869651794,0.9211235046386719,0.710328996181488,1.1213486194610596,0.4565506875514984,0.0025238061789423227,0.0034464760683476925,-0.005289239808917046,0.00438489206135273,0.004087990615516901,-0.003945613279938698,0.774946391582489,-5.1729254722595215,-0.6436061859130859,0.007749463915824891,-0.051729254722595215,-0.006436061859130859 +karman_re400,ppo,291,116.4,0.6747939586639404,0.3246585428714752,0.9008099436759949,0.7090251445770264,1.2108246088027954,0.4124037027359009,0.0029198068659752607,0.0034286605659872293,-0.004397016018629074,0.005887392908334732,0.004258700646460056,-0.002658039564266801,0.809278130531311,-4.809730529785156,-0.6555566787719727,0.00809278130531311,-0.04809730529785156,-0.006555566787719727 +karman_re400,ppo,292,116.8,0.6116300821304321,0.2230372577905655,0.8750097155570984,0.5743368268013,1.2791770696640015,0.29923924803733826,0.0030533766839653254,0.0028922162018716335,-0.0024230866692960262,0.006722486112266779,0.003910382743924856,-0.002007952192798257,0.6699995994567871,-4.14142644405365,0.08404660224914551,0.006699995994567871,-0.0414142644405365,0.0008404660224914551 +karman_re400,ppo,293,117.2,0.5830260515213013,0.07160783559083939,0.8696616888046265,0.16548475623130798,1.2860146760940552,0.10678373277187347,0.002645853441208601,0.002166822785511613,-0.0007328189094550908,0.006776956841349602,0.0029424543026834726,-0.0023398306220769882,0.3475940227508545,-3.4398968815803532,1.175990343093872,0.003475940227508545,-0.03439896881580353,0.01175990343093872 +karman_re400,ppo,294,117.6,0.6096962094306946,-0.09306100755929947,0.8875309824943542,-0.322526216506958,1.2414145469665527,-0.07799803465604782,0.0017801480134949088,0.0011658074799925089,0.0004815496795345098,0.0067708431743085384,0.0017241701716557145,-0.0030615266878157854,0.06855931878089905,-2.9753140211105347,2.0104000568389893,0.0006855931878089904,-0.029753140211105346,0.020104000568389895 +karman_re400,ppo,295,118.0,0.695854127407074,-0.21277303993701935,0.9100937843322754,-0.6134555339813232,1.1792596578598022,-0.19908365607261658,0.00106519996188581,-0.00016379315638914704,0.0016215817304328084,0.006926283240318298,0.0004532866587396711,-0.003535725176334381,-0.10166142135858536,-2.4932241439819336,2.7608009576797485,-0.0010166142135858535,-0.024932241439819338,0.027608009576797488 +karman_re400,ppo,296,118.4,0.8034995794296265,-0.29084986448287964,0.9251382946968079,-0.6841264963150024,1.0931410789489746,-0.2953312397003174,0.0007409668178297579,-0.0014899842208251357,0.002681492827832699,0.006954529322683811,-0.0009255234035663307,-0.003624423174187541,-0.2631851136684418,-1.7715644836425781,3.6835089325904846,-0.002631851136684418,-0.017715644836425782,0.036835089325904846 +karman_re400,ppo,297,118.8,0.9008840918540955,-0.36189034581184387,0.9386225938796997,-0.6830779910087585,0.9950166344642639,-0.3775272071361542,0.0008448072476312518,-0.0024333526380360126,0.0034924671053886414,0.006590685341507196,-0.0023510409519076347,-0.0035594289656728506,-0.4357467591762543,-0.916771650314331,4.599410653114319,-0.004357467591762543,-0.009167716503143311,0.04599410653114319 +karman_re400,ppo,298,119.2,0.992950975894928,-0.4110378623008728,0.9538293480873108,-0.7004425525665283,0.8994022607803345,-0.4289102554321289,0.0013609032612293959,-0.003002810524776578,0.003923660609871149,0.005627710837870836,-0.0035371053963899612,-0.0036661329213529825,-0.5875757932662964,-0.2118091583251953,5.204365491867065,-0.005875757932662964,-0.002118091583251953,0.052043654918670655 +karman_re400,ppo,299,119.6,1.0806598663330078,-0.4274994134902954,0.9704996347427368,-0.7127988934516907,0.8071963787078857,-0.4352830946445465,0.0019670105539262295,-0.0033508946653455496,0.004045973531901836,0.004361011553555727,-0.00401298375800252,-0.004217823501676321,-0.6910237073898315,0.08347606658935547,5.355397462844849,-0.006910237073898316,0.0008347606658935547,0.053553974628448485 +karman_re400,ppo,300,120.0,1.1600143909454346,-0.3952396810054779,0.9911437034606934,-0.6900683641433716,0.7185952663421631,-0.3829280734062195,0.002281885826960206,-0.003392859362065792,0.004002353176474571,0.0033467612229287624,-0.0033332130406051874,-0.005114393308758736,-0.7181153297424316,-0.13936758041381836,5.1421730518341064,-0.007181153297424317,-0.0013936758041381836,0.05142173051834106 +karman_re400,ppo,301,120.4,1.219926118850708,-0.31263861060142517,1.0186349153518677,-0.5464763045310974,0.6416389346122742,-0.25999829173088074,0.0023202260490506887,-0.002984176855534315,0.0034920901525765657,0.0030320214573293924,-0.0018475055694580078,-0.005694850813597441,-0.6234055161476135,-0.8707127571105958,4.698657274246216,-0.006234055161476135,-0.008707127571105958,0.04698657274246216 +karman_re400,ppo,302,120.8,1.2264212369918823,-0.1654842048883438,1.0457851886749268,-0.160623699426651,0.5993324518203735,-0.06941109150648117,0.002008936833590269,-0.0022331268992275,0.002511580940335989,0.003355602268129587,-0.00044020931818522513,-0.005736859980970621,-0.3801622688770294,-1.7328555583953855,4.098237752914429,-0.0038016226887702944,-0.017328555583953856,0.04098237752914429 +karman_re400,ppo,303,121.2,1.1634396314620972,0.015286284498870373,1.0458697080612183,0.29276445508003235,0.6195296049118042,0.13986586034297943,0.001402196940034628,-0.001081831636838615,0.0013275406090542674,0.0036940223071724176,0.000671455985866487,-0.0057229031808674335,-0.11472461372613905,-2.292846441268921,3.5171947479248047,-0.0011472461372613906,-0.02292846441268921,0.035171947479248046 +karman_re400,ppo,304,121.6,1.0865488052368164,0.14846284687519073,1.013197660446167,0.5585595369338989,0.7066810727119446,0.28046107292175293,0.00086427410133183,0.00037921674083918333,3.557450691005215e-05,0.003690381534397602,0.0017601863946765661,-0.005918866489082575,0.08426040410995483,-2.795632839202881,2.829233765602112,0.0008426040410995484,-0.027956328392028808,0.02829233765602112 +karman_re400,ppo,305,122.0,1.0221383571624756,0.2313271313905716,0.9731229543685913,0.6244677305221558,0.8196187615394592,0.3482726812362671,0.0005989535711705685,0.0016836975701153278,-0.0013661120319738984,0.0034279576502740383,0.002800889080390334,-0.006121490150690079,0.2690029740333557,-3.570608496665955,1.8715019226074217,0.002690029740333557,-0.03570608496665955,0.018715019226074218 +karman_re400,ppo,306,122.4,0.9449220299720764,0.30075162649154663,0.9489054679870605,0.6430198550224304,0.922420859336853,0.4027712941169739,0.0008114523370750248,0.0025286513846367598,-0.0029025261756032705,0.0031814626418054104,0.0035726234782487154,-0.006030108779668808,0.4673917591571808,-4.43311607837677,0.8367538452148438,0.004673917591571808,-0.0443311607837677,0.008367538452148438 +karman_re400,ppo,307,122.8,0.8545336723327637,0.3531394898891449,0.9354605674743652,0.6785286068916321,1.018722414970398,0.44477683305740356,0.0015696847112849355,0.003037559101358056,-0.0044301776215434074,0.0033223959617316723,0.003924442455172539,-0.0053392560221254826,0.6421780586242676,-5.043502330780029,-0.03441429138183594,0.006421780586242676,-0.050435023307800295,-0.0003441429138183594 +karman_re400,ppo,308,123.2,0.7643895149230957,0.3682471513748169,0.9225789904594421,0.7085555791854858,1.1127392053604126,0.45797598361968994,0.002452453598380089,0.0034193634055554867,-0.005289492197334766,0.0042528752237558365,0.00406177481636405,-0.004084254615008831,0.7659530639648438,-5.1877524852752686,-0.6087188720703125,0.007659530639648438,-0.05187752485275269,-0.006087188720703125 +karman_re400,ppo,309,123.6,0.6818156242370605,0.3312169313430786,0.9025732278823853,0.711752712726593,1.2024844884872437,0.41943132877349854,0.0028908487875014544,0.003459244268015027,-0.004568387288600206,0.005742914509028196,0.0042468891479074955,-0.0027641698252409697,0.8119637966156007,-4.8584407567977905,-0.6868371963500977,0.008119637966156007,-0.048584407567977904,-0.006868371963500977 +karman_re400,ppo,310,124.0,0.6160147190093994,0.2353549599647522,0.875627338886261,0.5991662740707397,1.2742981910705566,0.31423190236091614,0.00305823958478868,0.0029550110921263695,-0.002631660783663392,0.006672707851976156,0.003972022328525782,-0.00202094204723835,0.6950401663780212,-4.214195489883423,-0.022461891174316406,0.006950401663780212,-0.04214195489883423,-0.00022461891174316406 +karman_re400,ppo,311,124.4,0.5836206078529358,0.0878821462392807,0.8676673769950867,0.21460095047950745,1.2887334823608398,0.12712258100509644,0.0027205869555473328,0.0022417448926717043,-0.0008694494608789682,0.0067876847460865974,0.0030622684862464666,-0.0022694519720971584,0.3819429874420166,-3.4984794259071355,1.0713610649108887,0.003819429874420166,-0.034984794259071354,0.010713610649108887 +karman_re400,ppo,312,124.8,0.6047160625457764,-0.07798294723033905,0.8845921158790588,-0.28066572546958923,1.2475584745407104,-0.063378244638443,0.0018738305661827326,0.0012788975145667791,0.0003786901361308992,0.006777728907763958,0.0018554682610556483,-0.002994775539264083,0.08982282131910324,-3.0146694779396057,1.941896915435791,0.0008982282131910325,-0.030146694779396056,0.01941896915435791 +karman_re400,ppo,313,125.2,0.6860719323158264,-0.2036316692829132,0.9078798890113831,-0.596331000328064,1.1871623992919922,-0.18953943252563477,0.0011181703303009272,-2.6179588530794717e-05,0.0015118520241230726,0.006927174516022205,0.000582392793148756,-0.0035121196415275335,-0.08797802776098251,-2.549546718597412,2.686277747154236,-0.0008797802776098251,-0.025495467185974122,0.026862777471542358 +karman_re400,ppo,314,125.6,0.7935537695884705,-0.2833189070224762,0.9237191081047058,-0.6833553910255432,1.1027659177780151,-0.28700482845306396,0.000749804952647537,-0.0013725394383072853,0.0025785828474909067,0.0069662113673985004,-0.0007938559865579009,-0.003626185702160001,-0.24723416566848755,-1.849867343902588,3.5916972756385808,-0.0024723416566848756,-0.01849867343902588,0.03591697275638581 +karman_re400,ppo,315,126.0,0.8912642598152161,-0.3555505871772766,0.9367340803146362,-0.682630717754364,1.0042792558670044,-0.37122535705566406,0.0008121919818222523,-0.002359748585149646,0.0034212281461805105,0.006642633583396673,-0.002222307026386261,-0.00355446245521307,-0.41892948746681213,-0.9957742691040039,4.518468379974365,-0.0041892948746681214,-0.00995774269104004,0.045184683799743657 +karman_re400,ppo,316,126.4,0.9835814833641052,-0.4071618616580963,0.9520329833030701,-0.6984419822692871,0.9083017110824585,-0.4262373447418213,0.0013021902414038777,-0.002957843476906419,0.003900571260601282,0.005734999198466539,-0.0034420646261423826,-0.0036327873822301626,-0.5736061334609985,-0.2635538578033447,5.162023544311523,-0.005736061334609985,-0.0026355385780334473,0.05162023544311523 +karman_re400,ppo,317,126.8,1.0724166631698608,-0.42767399549484253,0.9693267345428467,-0.7126817107200623,0.8164797425270081,-0.43750011920928955,0.0019225123105570674,-0.003326030680909753,0.004047575406730175,0.004481939133256674,-0.004002693109214306,-0.004147270228713751,-0.6839408874511719,0.07543468475341797,5.3585364818573,-0.006839408874511719,0.0007543468475341797,0.053585364818573 +karman_re400,ppo,318,127.2,1.1530431509017944,-0.4003259539604187,0.9900141358375549,-0.6949349045753479,0.7275267839431763,-0.3913690447807312,0.002266551600769162,-0.003410471137613058,0.004026337061077356,0.003425675444304943,-0.00343256420455873,-0.005036631133407354,-0.7203400731086731,-0.09926939010620117,5.173967361450195,-0.0072034007310867315,-0.0009926939010620117,0.051739673614501956 +karman_re400,ppo,319,127.6,1.2157655954360962,-0.3231884241104126,1.0172150135040283,-0.5702090263366699,0.6484380960464478,-0.2753910720348358,0.0023240046575665474,-0.003042584750801325,0.00356086902320385,0.003034426597878337,-0.0019983327947556973,-0.005667935125529766,-0.6394267678260803,-0.7904677391052246,4.751802563667297,-0.006394267678260804,-0.007904677391052247,0.04751802563667298 +karman_re400,ppo,320,128.0,1.228697657585144,-0.1827688068151474,1.0454086065292358,-0.20542381703853607,0.6008777022361755,-0.0898628830909729,0.0020513543859124184,-0.0023240284062922,0.002608621958643198,0.0033132319804280996,-0.000572693650610745,-0.005726122297346592,-0.4063201546669007,-1.6591768264770508,4.157625079154968,-0.004063201546669007,-0.016591768264770507,0.04157625079154968 +karman_re400,ppo,321,128.4,1.1703438758850098,-0.0017920315731316805,1.0484929084777832,0.2544776201248169,0.6138031482696533,0.12164489924907684,0.0014601069269701838,-0.001213192823342979,0.0014440572122111917,0.003668355057016015,0.0005551613285206258,-0.0056952815502882,-0.13585549592971802,-2.238996386528015,3.574794054031372,-0.0013585549592971802,-0.022389963865280152,0.03574794054031372 +karman_re400,ppo,322,128.8,1.092389702796936,0.13786207139492035,1.0180940628051758,0.5427664518356323,0.6959531307220459,0.27156171202659607,0.000910100294277072,0.0002359316567890346,0.0001729968935251236,0.0037012877874076366,0.001653054030612111,-0.005891879089176655,0.06760836392641068,-2.7270742654800415,2.9092925786972046,0.0006760836392641068,-0.027270742654800416,0.029092925786972045 +karman_re400,ppo,323,129.2,1.0283852815628052,0.22363263368606567,0.9773001670837402,0.621666669845581,0.8093470931053162,0.34302762150764465,0.0006131081026978791,0.0015769865131005645,-0.0012140495236963034,0.0034633942414075136,0.0027159573510289192,-0.006121548358350992,0.2494249939918518,-3.4853219389915466,1.9741034507751467,0.002494249939918518,-0.034853219389915466,0.019741034507751467 +karman_re400,ppo,324,129.6,0.9532959461212158,0.29381921887397766,0.951157808303833,0.6397382020950317,0.9133535027503967,0.3980885446071625,0.0007637469680048525,0.002466224366798997,-0.002745587844401598,0.003205265384167433,0.00351728405803442,-0.006075703538954258,0.4470546543598175,-4.360976934432983,0.9339399337768555,0.004470546543598175,-0.043609769344329835,0.009339399337768554 +karman_re400,ppo,325,130.0,0.8634229302406311,0.3488024175167084,0.9367597699165344,0.6743231415748596,1.009742259979248,0.4416852295398712,0.0014713405398651958,0.002997470088303089,-0.00430041179060936,0.003280714387074113,0.0039025405421853065,-0.00543986214324832,0.6264133453369141,-5.004923105239868,0.04008674621582031,0.006264133453369141,-0.05004923105239868,0.00040086746215820316 +karman_re400,ppo,326,130.4,0.7723898887634277,0.36839333176612854,0.9234578609466553,0.7061633467674255,1.103421688079834,0.45890143513679504,0.002376532182097435,0.0033885217271745205,-0.005269836168736219,0.004112829454243183,0.004038741812109947,-0.004216145724058151,0.7572338581085205,-5.195889711380005,-0.5720071792602539,0.007572338581085206,-0.05195889711380005,-0.005720071792602539 +karman_re400,ppo,327,130.8,0.6887651681900024,0.3370516896247864,0.9041791558265686,0.7133482098579407,1.1936410665512085,0.4259176254272461,0.002866109600290656,0.003481482621282339,-0.004714712500572205,0.005592819303274155,0.004240452777594328,-0.0028750011697411537,0.8132057785987854,-4.905943751335144,-0.7120246887207031,0.008132057785987854,-0.04905943751335144,-0.007120246887207031 +karman_re400,ppo,328,131.2,0.6213716268539429,0.24712400138378143,0.8773054480552673,0.6212241649627686,1.2693090438842773,0.3285199999809265,0.003061498748138547,0.0030115009285509586,-0.002824285300448537,0.0066297356970608234,0.004039643332362175,-0.002049198839813471,0.7171141505241394,-4.288475513458252,-0.12095546722412108,0.0071711415052413945,-0.04288475513458252,-0.0012095546722412109 +karman_re400,ppo,329,131.6,0.5851447582244873,0.10395581275224686,0.8664568066596985,0.2629108726978302,1.2911747694015503,0.1477898508310318,0.0027858016546815634,0.0023179464042186737,-0.0010028691031038761,0.0068074376322329044,0.0031785243190824986,-0.002213934902101755,0.41502073407173157,-3.5603154301643376,0.9726901054382324,0.004150207340717316,-0.035603154301643375,0.009726901054382325 +karman_re400,ppo,330,132.0,0.6002780795097351,-0.062379494309425354,0.8815385699272156,-0.23654577136039734,1.2534089088439941,-0.04763954505324364,0.0019570349249988794,0.001390362624078989,0.00026948662707582116,0.006776816211640835,0.0019744804594665766,-0.0029317981097847223,0.11094087362289429,-3.05448454618454,1.87493896484375,0.001109408736228943,-0.0305448454618454,0.0187493896484375 +karman_re400,ppo,331,132.4,0.6761194467544556,-0.19378428161144257,0.9048731923103333,-0.5767321586608887,1.1943289041519165,-0.1794249415397644,0.0011693324195221066,0.00011195844126632437,0.0013956400798633695,0.006905009970068932,0.0007007647072896361,-0.0034805929753929377,-0.07428350299596786,-2.6028283834457397,2.61026930809021,-0.0007428350299596787,-0.0260282838344574,0.0261026930809021 +karman_re400,ppo,332,132.8,0.7828213572502136,-0.27562376856803894,0.9213608503341675,-0.6817634701728821,1.1117377281188965,-0.27822428941726685,0.0007662626449018717,-0.0012514983536675572,0.002478610025718808,0.00695889163762331,-0.0006576459272764623,-0.003621503710746765,-0.23112058639526367,-1.9269909858703613,3.494903564453125,-0.0023112058639526366,-0.019269909858703613,0.03494903564453125 +karman_re400,ppo,333,133.2,0.881743311882019,-0.34890830516815186,0.9347280859947205,-0.6824476718902588,1.013938307762146,-0.36426451802253723,0.0007891077548265457,-0.002282545669004321,0.003356256289407611,0.006689357105642557,-0.002084131119772792,-0.003557580756023526,-0.4022305607795715,-1.0797233581542969,4.43281888961792,-0.004022305607795715,-0.010797233581542968,0.0443281888961792 +karman_re400,ppo,334,133.6,0.9748104214668274,-0.4031015634536743,0.9504692554473877,-0.6963822245597839,0.9179837107658386,-0.42282867431640625,0.0012476076371967793,-0.0029117020312696695,0.0038790018297731876,0.005849411711096764,-0.003337508998811245,-0.0036171614192426205,-0.5606141090393066,-0.32326626777648926,5.1168129444122314,-0.0056061410903930665,-0.0032326626777648927,0.051168129444122315 +karman_re400,ppo,335,134.0,1.0642653703689575,-0.4275556206703186,0.9677037000656128,-0.7122939825057983,0.825962245464325,-0.4389365315437317,0.001870773616246879,-0.003300525015220046,0.004041218664497137,0.00461109634488821,-0.003992654848843813,-0.004089467693120241,-0.6774992942810059,0.060171127319335944,5.360084772109985,-0.006774992942810059,0.0006017112731933594,0.053600847721099854 +karman_re400,ppo,336,134.4,1.145817756652832,-0.4052102565765381,0.9877550005912781,-0.6990647912025452,0.7364108562469482,-0.39903029799461365,0.002245375420898199,-0.0034240963868796825,0.004033922217786312,0.0035085941199213266,-0.003551711793988943,-0.004953252151608467,-0.722206711769104,-0.06072282791137695,5.20412015914917,-0.0072220671176910405,-0.0006072282791137696,0.0520412015914917 +karman_re400,ppo,337,134.8,1.2107964754104614,-0.33334770798683167,1.0136510133743286,-0.5919735431671143,0.6551700830459595,-0.2902470529079437,0.00232926313765347,-0.00309390714392066,0.0036226394586265087,0.003033412154763937,-0.0021667026448994875,-0.005619887262582779,-0.655071496963501,-0.7015912532806396,4.802778363227844,-0.00655071496963501,-0.007015912532806396,0.04802778363227844 +karman_re400,ppo,338,135.2,1.2303359508514404,-0.19959710538387299,1.0424307584762573,-0.25071579217910767,0.6029921174049377,-0.11064215749502182,0.002099356148391962,-0.002409447683021426,0.002713787369430065,0.003263135440647602,-0.0007078949129208922,-0.005723423790186644,-0.43323543667793274,-1.5751399993896484,4.216622471809387,-0.0043323543667793275,-0.015751399993896485,0.04216622471809387 +karman_re400,ppo,339,135.6,1.17826247215271,-0.018941156566143036,1.0495805740356445,0.2133072018623352,0.6094341278076172,0.10195344686508179,0.001528437715023756,-0.0013395528076216578,0.001571586006321013,0.0036408104933798313,0.00045323942322283983,-0.005695871543139219,-0.160419762134552,-2.189328670501709,3.6311212778091435,-0.00160419762134552,-0.02189328670501709,0.036311212778091434 +karman_re400,ppo,340,136.0,1.099623203277588,0.12733083963394165,1.0223113298416138,0.5250125527381897,0.6858799457550049,0.2612234652042389,0.0009597208118066192,8.992145012598485e-05,0.00030961455195210874,0.003717350075021386,0.0015512333484366536,-0.005886404309421778,0.04843359440565109,-2.674635648727417,2.9850836992263794,0.00048433594405651093,-0.02674635648727417,0.029850836992263794 +karman_re400,ppo,341,136.4,1.0350792407989502,0.21653734147548676,0.9811859130859375,0.6191763877868652,0.7987059950828552,0.3373703360557556,0.0006252171006053686,0.0014637177810072899,-0.0010735354153439403,0.0034990424755960703,0.0026209841016680002,-0.0061203367076814175,0.229117214679718,-3.407516360282898,2.0751579999923706,0.00229117214679718,-0.03407516360282898,0.020751579999923705 +karman_re400,ppo,342,136.8,0.9615342617034912,0.2875092029571533,0.9530784487724304,0.6373543739318848,0.9036394357681274,0.3930118680000305,0.0007181428954936564,0.002397741423919797,-0.0025970402639359236,0.003221157006919384,0.0034494823776185513,-0.0061027370393276215,0.42726430296897894,-4.283736824989319,1.0315680503845215,0.004272643029689789,-0.04283736824989319,0.010315680503845214 +karman_re400,ppo,343,137.2,0.8720212578773499,0.34485936164855957,0.9376667737960815,0.6705665588378906,0.9999256134033203,0.4380928874015808,0.001380476518534124,0.0029537605587393045,-0.004162084311246872,0.003237683791667223,0.003879172494634986,-0.005525902379304171,0.6111873984336853,-4.9573469161987305,0.1160740852355957,0.006111873984336853,-0.04957346916198731,0.001160740852355957 +karman_re400,ppo,344,137.6,0.7808634042739868,0.36870524287223816,0.9248523712158203,0.7039291858673096,1.093961477279663,0.4590373635292053,0.0023028708528727293,0.0033540513832122087,-0.0052246167324483395,0.003985965624451637,0.00402518454939127,-0.004348330665379763,0.747606635093689,-5.1987762451171875,-0.5300540924072266,0.00747606635093689,-0.05198776245117188,-0.005300540924072266 +karman_re400,ppo,345,138.0,0.6967024803161621,0.3428232967853546,0.9071273803710938,0.7145459651947021,1.1851295232772827,0.43153664469718933,0.002841668203473091,0.003499477868899703,-0.004835057072341442,0.005454616621136665,0.0042365663684904575,-0.0029958062805235386,0.8121290206909181,-4.952170133590698,-0.7263956069946289,0.00812129020690918,-0.049521701335906984,-0.0072639560699462894 +karman_re400,ppo,346,138.4,0.6272772550582886,0.25860801339149475,0.880764901638031,0.640361487865448,1.263662338256836,0.3416181206703186,0.003053950145840645,0.0030762534588575363,-0.0030172038823366165,0.006583386100828648,0.004094378557056189,-0.002093556337058544,0.7359038591384888,-4.361690878868103,-0.20871067047119143,0.007359038591384888,-0.04361690878868103,-0.0020871067047119143 +karman_re400,ppo,347,138.8,0.5869430303573608,0.11972139030694962,0.8674062490463257,0.30915772914886475,1.292182207107544,0.1682051122188568,0.0028384283650666475,0.002395226154476404,-0.0011525285663083196,0.006812132429331541,0.003279665019363165,-0.0021646202076226473,0.4482100009918213,-3.6249707341194153,0.869854211807251,0.004482100009918213,-0.036249707341194155,0.00869854211807251 +karman_re400,ppo,348,139.2,0.5957896709442139,-0.04676073044538498,0.8801352977752686,-0.19109195470809937,1.2576563358306885,-0.03087201900780201,0.0020412923768162727,0.0014984714798629284,0.0001516943593742326,0.0067601921036839485,0.0020891246385872364,-0.0028616851195693016,0.1350170373916626,-3.0950350165367126,1.7997698783874514,0.001350170373916626,-0.030950350165367128,0.017997698783874513 +karman_re400,ppo,349,139.6,0.6659351587295532,-0.18389175832271576,0.9029802083969116,-0.554681122303009,1.200066328048706,-0.16835160553455353,0.0012302988907322288,0.0002468190505169332,0.0012819196563214064,0.006876583211123943,0.0008260050672106445,-0.003441508626565337,-0.0582517609000206,-2.6554352045059204,2.529862403869629,-0.000582517609000206,-0.026554352045059206,0.025298624038696288 +karman_re400,ppo,350,140.0,0.7723531126976013,-0.2684401571750641,0.9203660488128662,-0.678861141204834,1.1205625534057617,-0.26848238706588745,0.0007917903130874038,-0.0011276260484009981,0.0023850181605666876,0.0069602252915501595,-0.0005160158616490662,-0.003623449243605137,-0.21398958563804626,-2.004926919937134,3.3979033827781673,-0.002139895856380463,-0.020049269199371337,0.033979033827781675 +karman_re400,ppo,351,140.4,0.8727601766586304,-0.3424448072910309,0.9336972832679749,-0.682267963886261,1.023758888244629,-0.3562157452106476,0.000768640311434865,-0.0022018617019057274,0.003289925865828991,0.006745714694261551,-0.0019404179183766246,-0.003570150351151824,-0.38598567247390747,-1.1660830974578857,4.347724556922913,-0.003859856724739075,-0.011660830974578857,0.04347724556922913 +karman_re400,ppo,352,140.8,0.9661922454833984,-0.39909544587135315,0.949083149433136,-0.6942105293273926,0.9273297786712646,-0.4182835817337036,0.001185914850793779,-0.0028634092304855585,0.0038471033331006765,0.005964883603155613,-0.003232918679714203,-0.0036027689930051565,-0.5469655394554138,-0.3864431381225586,5.069943428039551,-0.005469655394554138,-0.003864431381225586,0.05069943428039551 +karman_re400,ppo,353,141.2,1.0559296607971191,-0.427206426858902,0.9657137989997864,-0.7116087079048157,0.8347574472427368,-0.43919044733047485,0.001810485846363008,-0.0032693431712687016,0.004027522634714842,0.004736677277833223,-0.003977401182055473,-0.0040151821449398994,-0.6689323782920837,0.04446220397949219,5.358018159866333,-0.006689323782920837,0.0004446220397949219,0.05358018159866333 +karman_re400,ppo,354,141.6,1.1380629539489746,-0.4098053276538849,0.9846422076225281,-0.7025803327560425,0.744454026222229,-0.4054904580116272,0.00222250958904624,-0.0034302386920899153,0.004041806794703007,0.0035910671576857567,-0.003657636931166053,-0.0048527163453400135,-0.7207598090171814,-0.020992517471313477,5.231077671051025,-0.007207598090171814,-0.00020992517471313477,0.05231077671051026 +karman_re400,ppo,355,142.0,1.2056182622909546,-0.3429400324821472,1.0095309019088745,-0.6115773916244507,0.6619695425033569,-0.3040592074394226,0.0023331078700721264,-0.00314503675326705,0.003691646736115217,0.0030386412981897593,-0.002322935964912176,-0.005576583556830883,-0.6681625247001648,-0.6138434410095215,4.852023959159851,-0.006681625247001648,-0.006138434410095215,0.04852023959159851 +karman_re400,ppo,356,142.4,1.2320239543914795,-0.21566379070281982,1.0389059782028198,-0.2950129210948944,0.6061639785766602,-0.13093431293964386,0.002144905272871256,-0.0024895546957850456,0.002826574258506298,0.003220861777663231,-0.0008282811031676829,-0.005743447691202164,-0.46074423193931585,-1.4943065643310547,4.277974963188171,-0.004607442319393158,-0.014943065643310547,0.04277974963188171 +karman_re400,ppo,357,142.8,1.1864542961120605,-0.03611095994710922,1.0495100021362305,0.17057576775550842,0.605978786945343,0.08155837655067444,0.0015931682428345084,-0.0014632748207077384,0.0016937206964939833,0.0036189311649650335,0.00035813014255836606,-0.005707457661628723,-0.18662577867507935,-2.1502788066864014,3.6861885786056523,-0.0018662577867507935,-0.021502788066864013,0.03686188578605652 +karman_re400,ppo,358,143.2,1.1074562072753906,0.11643590778112411,1.025434970855713,0.5054797530174255,0.6760491728782654,0.24955952167510986,0.0010047340765595436,-5.7752862630877644e-05,0.00043390700011514127,0.003729924326762557,0.0014438106445595622,-0.005866257473826408,0.029694229364395138,-2.627821445465088,3.057792842388153,0.0002969422936439514,-0.02627821445465088,0.03057792842388153 +karman_re400,ppo,359,143.6,1.0416966676712036,0.20952612161636353,0.9842588901519775,0.6167405843734741,0.7874013781547546,0.33129656314849854,0.0006391994538716972,0.00134473224170506,-0.0009403612348251045,0.0035246280021965504,0.0025179169606417418,-0.006094198673963547,0.2110658586025238,-3.3249418735504155,2.1745147705078125,0.002110658586025238,-0.03324941873550415,0.021745147705078124 +karman_re400,ppo,360,144.0,0.9695153832435608,0.2813429534435272,0.9544181227684021,0.6357625126838684,0.893308162689209,0.38766348361968994,0.0006829933263361454,0.002326051238924265,-0.0024450302589684725,0.00323407887481153,0.0033809123560786247,-0.006112770643085241,0.40891817212104803,-4.197821021080017,1.1304714679718018,0.00408918172121048,-0.04197821021080017,0.011304714679718018 +karman_re400,ppo,361,144.4,0.8811980485916138,0.3408501148223877,0.9387866854667664,0.6672174334526062,0.9903820753097534,0.4342593252658844,0.0012997236335650086,0.002908163471147418,-0.004013789817690849,0.003207550849765539,0.0038594380021095276,-0.005606953054666519,0.5956572890281677,-4.90476667881012,0.19531750679016116,0.005956572890281678,-0.0490476667881012,0.0019531750679016116 +karman_re400,ppo,362,144.8,0.7900240421295166,0.36875876784324646,0.9265667200088501,0.7018064260482788,1.085005521774292,0.45870155096054077,0.0022276383824646473,0.00331849604845047,-0.005165243521332741,0.0038805794902145863,0.00401478074491024,-0.00448349816724658,0.736800491809845,-5.198360443115234,-0.48194932937622076,0.00736800491809845,-0.051983604431152346,-0.0048194932937622075 +karman_re400,ppo,363,145.2,0.704878568649292,0.34817737340927124,0.9098493456840515,0.7153810858726501,1.176711082458496,0.43660247325897217,0.0028102800715714693,0.0035126665607094765,-0.00495005352422595,0.005315089598298073,0.004219738766551018,-0.0031220456585288048,0.8094966411590576,-4.9945902824401855,-0.7320022583007812,0.008094966411590576,-0.04994590282440186,-0.007320022583007813 +karman_re400,ppo,364,145.6,0.6332263946533203,0.2696176767349243,0.8838617205619812,0.6567205786705017,1.2574654817581177,0.3537646234035492,0.0030387062579393387,0.0031364504247903824,-0.0032256862614303827,0.006514949258416891,0.004131300840526819,-0.002144359052181244,0.7527141571044922,-4.430128574371338,-0.29215526580810547,0.007527141571044922,-0.04430128574371338,-0.002921552658081055 +karman_re400,ppo,365,146.0,0.5886756181716919,0.13522949814796448,0.8677914142608643,0.35342106223106384,1.2921357154846191,0.1880982369184494,0.0028870736714452505,0.0024690222926437855,-0.001317064044997096,0.006803510244935751,0.003376217093318701,-0.002114370232447982,0.48229655623435974,-3.690032660961151,0.7600088119506836,0.004822965562343597,-0.03690032660961151,0.007600088119506836 +karman_re400,ppo,366,146.4,0.591819703578949,-0.030815642327070236,0.8785743117332458,-0.1441289782524109,1.261893630027771,-0.01362177636474371,0.0021319487132132053,0.0016009644605219364,3.588115214370191e-05,0.00675197783857584,0.0022113400045782328,-0.002784924814477563,0.1615295708179474,-3.136949777603149,1.7186169624328613,0.001615295708179474,-0.03136949777603149,0.017186169624328614 +karman_re400,ppo,367,146.8,0.6566666960716248,-0.1734754890203476,0.9016017317771912,-0.5302709341049194,1.2063146829605103,-0.1572357416152954,0.0013016940793022513,0.00038124038837850094,0.001175493118353188,0.006865865085273981,0.0009590411791577935,-0.003400214947760105,-0.04192238301038742,-2.705573558807373,2.4537758827209473,-0.00041922383010387424,-0.02705573558807373,0.024537758827209474 +karman_re400,ppo,368,147.2,0.7621016502380371,-0.261371374130249,0.9197973608970642,-0.6748864054679871,1.1295639276504517,-0.25899747014045715,0.0008197000133804977,-0.0010010625701397657,0.002286982024088502,0.006973663344979286,-0.00037393782986328006,-0.0036255856975913048,-0.19771906733512876,-2.0808839797973633,3.306401014328003,-0.0019771906733512877,-0.020808839797973634,0.03306401014328003 +karman_re400,ppo,369,147.6,0.8637246489524841,-0.33582696318626404,0.9328838586807251,-0.6824349164962769,1.0335174798965454,-0.3482705354690552,0.0007479515625163913,-0.0021174547728151083,0.00321152713149786,0.006797381676733494,-0.001803334685973823,-0.0035804875660687685,-0.3692007064819336,-1.2509407997131348,4.2626365423202515,-0.003692007064819336,-0.012509407997131348,0.042626365423202514 +karman_re400,ppo,370,148.0,0.9571949243545532,-0.3947753608226776,0.9476421475410461,-0.6922071576118469,0.9362735748291016,-0.4136630892753601,0.0011245395289734006,-0.0028130316641181707,0.003806003136560321,0.006066994275897741,-0.0031275050714612007,-0.0035821902565658092,-0.5320714116096497,-0.44941020011901855,5.017804861068726,-0.005320714116096497,-0.004494102001190186,0.050178048610687254 +karman_re400,ppo,371,148.4,1.0470607280731201,-0.42622748017311096,0.9637669324874878,-0.7107263803482056,0.8430995345115662,-0.43916580080986023,0.0017511837650090456,-0.003239061450585723,0.004017477855086327,0.004857027903199196,-0.003947158344089985,-0.0039419750683009624,-0.6586512923240662,0.026128768920898438,5.3499932289123535,-0.006586512923240662,0.0002612876892089844,0.05349993228912354 +karman_re400,ppo,372,148.8,1.1303977966308594,-0.4137115180492401,0.9826196432113647,-0.7054603695869446,0.7527815103530884,-0.4114343225955963,0.002199779497459531,-0.0034308135509490967,0.004055381752550602,0.0036803341936320066,-0.0037385227624326944,-0.004761125892400742,-0.718591570854187,0.012269973754882812,5.256805419921875,-0.00718591570854187,0.00012269973754882812,0.05256805419921875 +karman_re400,ppo,373,149.2,1.2004120349884033,-0.3516627550125122,1.0072615146636963,-0.6283515691757202,0.6693284511566162,-0.3170534372329712,0.0023348124232143164,-0.0031908927485346794,0.0037594118621200323,0.0030587809160351753,-0.002463242970407009,-0.005541892722249031,-0.6799166798591614,-0.5372436046600342,4.89894711971283,-0.0067991667985916136,-0.005372436046600342,0.0489894711971283 +karman_re400,ppo,374,149.6,1.2327179908752441,-0.2309812605381012,1.037050485610962,-0.33641311526298523,0.6097323298454285,-0.15031978487968445,0.002181192860007286,-0.0025677038356661797,0.002929441398009658,0.00318840891122818,-0.0009502648026682436,-0.005756823346018791,-0.48712471127510065,-1.4191570281982422,4.338030457496643,-0.004871247112751007,-0.014191570281982422,0.04338030457496643 +karman_re400,ppo,375,150.0,1.1936336755752563,-0.05380966141819954,1.0505375862121582,0.12754377722740173,0.6029417514801025,0.06144161522388458,0.001650888822041452,-0.0015842677094042301,0.0018049442442134023,0.0035934909246861935,0.00025098861078731716,-0.005698525346815586,-0.21152883768081665,-2.1063385009765625,3.7415443062782283,-0.0021152883768081666,-0.021063385009765626,0.037415443062782286 +karman_re400,ppo,376,150.4,1.114366054534912,0.10443149507045746,1.0289126634597778,0.4837077856063843,0.666231632232666,0.23750251531600952,0.001050561317242682,-0.00020402969676069915,0.0005553810624405742,0.0037328633479774,0.0013292082585394382,-0.00582660548388958,0.012687630951404572,-2.572390556335449,3.1291280984878536,0.0001268763095140457,-0.025723905563354493,0.03129128098487854 +karman_re400,ppo,377,150.8,1.0475043058395386,0.20179003477096558,0.987806499004364,0.6128650307655334,0.7759983539581299,0.3254047632217407,0.0006605894304811954,0.0012230632128193974,-0.0008010526071302593,0.003547501750290394,0.0024160118773579597,-0.006063184700906277,0.19409239292144775,-3.237309098243713,2.2728055715560913,0.0019409239292144775,-0.03237309098243713,0.022728055715560913 +karman_re400,ppo,378,151.2,0.977439284324646,0.2744784951210022,0.9565726518630981,0.6337993741035461,0.8836027383804321,0.3824496865272522,0.0006578087923116982,0.0022511733695864677,-0.0022862255573272705,0.0032566310837864876,0.0033177502918988466,-0.006124463863670826,0.3898560702800751,-4.111107110977173,1.2314672470092773,0.003898560702800751,-0.04111107110977173,0.012314672470092774 +karman_re400,ppo,379,151.6,0.8903997540473938,0.3359405994415283,0.9402258396148682,0.6634615063667297,0.9813896417617798,0.4304475486278534,0.001220716629177332,0.0028630068991333246,-0.003862702054902911,0.003192436881363392,0.0038369195535779,-0.00568985752761364,0.5790674686431885,-4.851972818374634,0.27838611602783203,0.005790674686431885,-0.048519728183746336,0.0027838611602783205 +karman_re400,ppo,380,152.0,0.7989674210548401,0.3677925169467926,0.9279809594154358,0.6991154551506042,1.0762251615524292,0.45809388160705566,0.002139842603355646,0.003283219877630472,-0.005100889131426811,0.003779681632295251,0.003998978529125452,-0.004616592079401016,0.7251791954040527,-5.194104909896851,-0.43006992340087885,0.007251791954040528,-0.05194104909896851,-0.004300699234008789 +karman_re400,ppo,381,152.4,0.7126410603523254,0.35249897837638855,0.9116387367248535,0.7153819799423218,1.1680796146392822,0.4412960708141327,0.002771023428067565,0.003517440753057599,-0.005059544462710619,0.005159060936421156,0.004194284323602915,-0.003247369546443224,0.8065903782844543,-5.0324485301971436,-0.7339720726013184,0.008065903782844544,-0.050324485301971436,-0.007339720726013184 +karman_re400,ppo,382,152.8,0.6388716697692871,0.279780775308609,0.885701060295105,0.6703196167945862,1.2505837678909302,0.36523985862731934,0.0030256628524512053,0.0031930264085531235,-0.003436750965192914,0.00642955070361495,0.004164806567132473,-0.002200737129896879,0.7683113217353821,-4.496022582054138,-0.37329721450805664,0.007683113217353821,-0.044960225820541384,-0.0037329721450805667 +karman_re400,ppo,383,153.2,0.5910781025886536,0.15034382045269012,0.8672745227813721,0.3958020806312561,1.291969895362854,0.20765282213687897,0.0029360579792410135,0.0025391269009560347,-0.0014813595917075872,0.006801644340157509,0.003478433471173048,-0.0020690406672656536,0.5163065791130066,-3.759150505065918,0.6461634635925293,0.005163065791130066,-0.03759150505065918,0.006461634635925293 +karman_re400,ppo,384,153.6,0.589084267616272,-0.014513591304421425,0.8761207461357117,-0.09572380036115646,1.2670708894729614,0.004107633605599403,0.002226018812507391,0.00169886345975101,-7.431407721014693e-05,0.006761210039258003,0.002339246217161417,-0.0027095747645944357,0.18857453763484955,-3.180306196212768,1.639030933380127,0.0018857453763484954,-0.031803061962127684,0.01639030933380127 +karman_re400,ppo,385,154.0,0.6481472253799438,-0.16209577023983002,0.8991272449493408,-0.5034274458885193,1.2130670547485352,-0.14622220396995544,0.0013712065992876887,0.0005138068809174001,0.001066698576323688,0.006861773785203695,0.001085572992451489,-0.0033586230129003525,-0.026707395911216732,-2.7526283264160156,2.3845118284225464,-0.00026707395911216734,-0.027526283264160158,0.023845118284225465 +karman_re400,ppo,386,154.4,0.751751184463501,-0.2538866102695465,0.9183276891708374,-0.6697308421134949,1.138567328453064,-0.2500625550746918,0.0008461103425361216,-0.0008704958017915487,0.002179983537644148,0.006976536940783262,-0.00024070884683169425,-0.0036198750603944063,-0.182588130235672,-2.152017593383789,3.217864155769348,-0.00182588130235672,-0.02152017593383789,0.03217864155769348 +karman_re400,ppo,387,154.8,0.854138970375061,-0.3287261128425598,0.9312646985054016,-0.6829225420951843,1.0430375337600708,-0.3406953513622284,0.0007322427118197083,-0.0020279965829104185,0.0031275106593966484,0.00682989414781332,-0.0016687377355992794,-0.0035835278686136007,-0.3519785702228546,-1.33406400680542,4.1730756759643555,-0.0035197857022285462,-0.0133406400680542,0.04173075675964356 +karman_re400,ppo,388,155.2,0.9478179812431335,-0.3899554908275604,0.9458397626876831,-0.690321147441864,0.9453046917915344,-0.4091740846633911,0.0010723539162427187,-0.0027591856196522713,0.003765339031815529,0.006158426869660616,-0.0030129598453640938,-0.0035648075863718987,-0.5167780518531799,-0.5157270431518555,4.958855867385864,-0.005167780518531799,-0.005157270431518555,0.04958855867385864 +karman_re400,ppo,389,155.6,1.0384184122085571,-0.4246068596839905,0.9623138904571533,-0.7095356583595276,0.8522054553031921,-0.43908295035362244,0.0016950136050581932,-0.003204639069736004,0.004011905286461115,0.0049809967167675495,-0.0038975959178060293,-0.003886501770466566,-0.6485568881034851,-0.000244140625,5.3368940353393555,-0.0064855688810348516,-2.44140625e-06,0.053368940353393554 +karman_re400,ppo,390,156.0,1.1228388547897339,-0.41701602935791016,0.9812171459197998,-0.7076283097267151,0.7618051767349243,-0.4170990288257599,0.0021738954819738865,-0.0034287478774785995,0.004064181819558144,0.0037818392738699913,-0.0038041500374674797,-0.004681611433625221,-0.7166059613227844,0.03333091735839844,5.279211521148682,-0.007166059613227844,0.0003333091735839844,0.052792115211486815 +karman_re400,ppo,391,156.4,1.1947300434112549,-0.35982319712638855,1.0054638385772705,-0.6425878405570984,0.6771449446678162,-0.3295888900756836,0.0023302871268242598,-0.003235365729779005,0.0038107666186988354,0.0030901343561708927,-0.002604303415864706,-0.005486609879881144,-0.6904444694519043,-0.4676206111907959,4.943506240844727,-0.006904444694519043,-0.004676206111907959,0.049435062408447264 +karman_re400,ppo,392,156.8,1.2322319746017456,-0.2458598017692566,1.0353513956069946,-0.37567761540412903,0.6136854290962219,-0.16932253539562225,0.0022072128485888243,-0.002644539577886462,0.0030204218346625566,0.0031548028346151114,-0.001092091086320579,-0.005746560171246529,-0.5106676816940308,-1.3357696533203125,4.398138523101807,-0.005106676816940308,-0.013357696533203125,0.04398138523101807 +karman_re400,ppo,393,157.2,1.199764609336853,-0.0720878392457962,1.0514429807662964,0.08315545320510864,0.6002005934715271,0.04104315862059593,0.0017088263994082808,-0.0017001074738800526,0.001916037523187697,0.0035574128851294518,0.00013439594476949424,-0.005685601383447647,-0.23598769307136536,-2.048391819000244,3.798494160175324,-0.0023598769307136536,-0.02048391819000244,0.03798494160175324 +karman_re400,ppo,394,157.6,1.1212292909622192,0.09151163697242737,1.032902717590332,0.45910367369651794,0.6569857597351074,0.22469158470630646,0.0011028765002265573,-0.0003484374610707164,0.0006842832081019878,0.0037315357476472855,0.001219786936417222,-0.005799468141049147,-0.005222313106060028,-2.5162590742111206,3.197524905204773,-5.2223131060600284e-05,-0.025162590742111208,0.03197524905204773 +karman_re400,ppo,395,158.0,1.0533132553100586,0.19369634985923767,0.9923233985900879,0.6074213981628418,0.7650341987609863,0.3195511996746063,0.0006895407568663359,0.0010977250058203936,-0.00065657461527735,0.0035767205990850925,0.0023191766813397408,-0.0060502998530864716,0.1760086864233017,-3.1573901176452637,2.368806838989258,0.001760086864233017,-0.03157390117645264,0.02368806838989258 +karman_re400,ppo,396,158.4,0.9850859045982361,0.26730969548225403,0.9592369198799133,0.6315664052963257,0.8740565776824951,0.37728187441825867,0.0006355345249176025,0.0021726880222558975,-0.0021314481273293495,0.003287973813712597,0.0032453907188028097,-0.006148344371467829,0.3692566156387329,-4.0296454429626465,1.333545207977295,0.0036925661563873293,-0.04029645442962647,0.01333545207977295 +karman_re400,ppo,397,158.8,0.8993437886238098,0.3304919898509979,0.9416835308074951,0.6594292521476746,0.972334623336792,0.4265178442001343,0.001138020888902247,0.002817101776599884,-0.0037147090770304203,0.0031815096735954285,0.0038032392039895058,-0.0057680183090269566,0.5610077977180481,-4.796759009361267,0.36295604705810547,0.005610077977180481,-0.04796759009361267,0.0036295604705810546 +karman_re400,ppo,398,159.2,0.8074672222137451,0.3661508858203888,0.9289447069168091,0.6959348320960999,1.066969394683838,0.4570545256137848,0.002046157605946064,0.0032456605695188046,-0.005023512989282608,0.003678704611957073,0.00398291926831007,-0.004742187913507223,0.713365375995636,-5.183176040649414,-0.3760867118835449,0.00713365375995636,-0.05183176040649414,-0.0037608671188354495 +karman_re400,ppo,399,159.6,0.7202199697494507,0.35613343119621277,0.9130071401596069,0.7147716283798218,1.1589750051498413,0.44550102949142456,0.002733648754656315,0.003513855393975973,-0.005143171176314354,0.0049988143146038055,0.004172889981418848,-0.003374652937054634,0.8028739094734193,-5.066510915756226,-0.7301626205444336,0.008028739094734193,-0.050665109157562255,-0.007301626205444336 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_long.csv new file mode 100644 index 0000000..678aa7e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,target,0,0.0,velocity,upper_ux,0.6759957671165466 +karman_re400,target,0,0.0,velocity,upper_uy,-0.2804977297782898 +karman_re400,target,0,0.0,velocity,center_ux,1.2546173334121704 +karman_re400,target,0,0.0,velocity,center_uy,-0.7867355346679688 +karman_re400,target,0,0.0,velocity,lower_ux,1.3564776182174683 +karman_re400,target,0,0.0,velocity,lower_uy,-0.2320844680070877 +karman_re400,target,1,0.4,velocity,upper_ux,0.8439235687255859 +karman_re400,target,1,0.4,velocity,upper_uy,-0.3917198181152344 +karman_re400,target,1,0.4,velocity,center_ux,1.2022228240966797 +karman_re400,target,1,0.4,velocity,center_uy,-0.9206370711326599 +karman_re400,target,1,0.4,velocity,lower_ux,1.2265913486480713 +karman_re400,target,1,0.4,velocity,lower_uy,-0.36014309525489807 +karman_re400,target,2,0.8,velocity,upper_ux,1.0110604763031006 +karman_re400,target,2,0.8,velocity,upper_uy,-0.40778496861457825 +karman_re400,target,2,0.8,velocity,center_ux,1.1789555549621582 +karman_re400,target,2,0.8,velocity,center_uy,-0.8898890614509583 +karman_re400,target,2,0.8,velocity,lower_ux,1.0768324136734009 +karman_re400,target,2,0.8,velocity,lower_uy,-0.4333973824977875 +karman_re400,target,3,1.2,velocity,upper_ux,1.1670721769332886 +karman_re400,target,3,1.2,velocity,upper_uy,-0.39306071400642395 +karman_re400,target,3,1.2,velocity,center_ux,1.204554796218872 +karman_re400,target,3,1.2,velocity,center_uy,-0.9180779457092285 +karman_re400,target,3,1.2,velocity,lower_ux,0.9162781238555908 +karman_re400,target,3,1.2,velocity,lower_uy,-0.46505916118621826 +karman_re400,target,4,1.6,velocity,upper_ux,1.299797773361206 +karman_re400,target,4,1.6,velocity,upper_uy,-0.32668536901474 +karman_re400,target,4,1.6,velocity,center_ux,1.2776014804840088 +karman_re400,target,4,1.6,velocity,center_uy,-0.9198753833770752 +karman_re400,target,4,1.6,velocity,lower_ux,0.7405176758766174 +karman_re400,target,4,1.6,velocity,lower_uy,-0.41756606101989746 +karman_re400,target,5,2.0,velocity,upper_ux,1.3925868272781372 +karman_re400,target,5,2.0,velocity,upper_uy,-0.18490344285964966 +karman_re400,target,5,2.0,velocity,center_ux,1.3665908575057983 +karman_re400,target,5,2.0,velocity,center_uy,-0.582201361656189 +karman_re400,target,5,2.0,velocity,lower_ux,0.5860196948051453 +karman_re400,target,5,2.0,velocity,lower_uy,-0.24217890202999115 +karman_re400,target,6,2.4,velocity,upper_ux,1.410436749458313 +karman_re400,target,6,2.4,velocity,upper_uy,0.008657436817884445 +karman_re400,target,6,2.4,velocity,center_ux,1.395798921585083 +karman_re400,target,6,2.4,velocity,center_uy,0.14188410341739655 +karman_re400,target,6,2.4,velocity,lower_ux,0.5429064035415649 +karman_re400,target,6,2.4,velocity,lower_uy,0.04541527107357979 +karman_re400,target,7,2.8,velocity,upper_ux,1.342433214187622 +karman_re400,target,7,2.8,velocity,upper_uy,0.1908980756998062 +karman_re400,target,7,2.8,velocity,center_ux,1.3358795642852783 +karman_re400,target,7,2.8,velocity,center_uy,0.7336434125900269 +karman_re400,target,7,2.8,velocity,lower_ux,0.644497275352478 +karman_re400,target,7,2.8,velocity,lower_uy,0.3012709617614746 +karman_re400,target,8,3.2,velocity,upper_ux,1.2265512943267822 +karman_re400,target,8,3.2,velocity,upper_uy,0.31591764092445374 +karman_re400,target,8,3.2,velocity,center_ux,1.2462494373321533 +karman_re400,target,8,3.2,velocity,center_uy,0.8855239748954773 +karman_re400,target,8,3.2,velocity,lower_ux,0.8213841319084167 +karman_re400,target,8,3.2,velocity,lower_uy,0.42216190695762634 +karman_re400,target,9,3.6,velocity,upper_ux,1.09336519241333 +karman_re400,target,9,3.6,velocity,upper_uy,0.389917254447937 +karman_re400,target,9,3.6,velocity,center_ux,1.1945350170135498 +karman_re400,target,9,3.6,velocity,center_uy,0.8569599390029907 +karman_re400,target,9,3.6,velocity,lower_ux,0.9983283877372742 +karman_re400,target,9,3.6,velocity,lower_uy,0.43787339329719543 +karman_re400,target,10,4.0,velocity,upper_ux,0.944974422454834 +karman_re400,target,10,4.0,velocity,upper_uy,0.42891034483909607 +karman_re400,target,10,4.0,velocity,center_ux,1.1898425817489624 +karman_re400,target,10,4.0,velocity,center_uy,0.8849895000457764 +karman_re400,target,10,4.0,velocity,lower_ux,1.156524896621704 +karman_re400,target,10,4.0,velocity,lower_uy,0.42266586422920227 +karman_re400,target,11,4.4,velocity,upper_ux,0.7822096943855286 +karman_re400,target,11,4.4,velocity,upper_uy,0.40229883790016174 +karman_re400,target,11,4.4,velocity,center_ux,1.226232647895813 +karman_re400,target,11,4.4,velocity,center_uy,0.9289051294326782 +karman_re400,target,11,4.4,velocity,lower_ux,1.2953797578811646 +karman_re400,target,11,4.4,velocity,lower_uy,0.3725454807281494 +karman_re400,target,12,4.8,velocity,upper_ux,0.6272486448287964 +karman_re400,target,12,4.8,velocity,upper_uy,0.2699614465236664 +karman_re400,target,12,4.8,velocity,center_ux,1.285469651222229 +karman_re400,target,12,4.8,velocity,center_uy,0.7228603363037109 +karman_re400,target,12,4.8,velocity,lower_ux,1.4023773670196533 +karman_re400,target,12,4.8,velocity,lower_uy,0.24571676552295685 +karman_re400,target,13,5.2,velocity,upper_ux,0.5514166355133057 +karman_re400,target,13,5.2,velocity,upper_uy,0.02659541368484497 +karman_re400,target,13,5.2,velocity,center_ux,1.3118815422058105 +karman_re400,target,13,5.2,velocity,center_uy,0.06945740431547165 +karman_re400,target,13,5.2,velocity,lower_ux,1.442122459411621 +karman_re400,target,13,5.2,velocity,lower_uy,0.05465413257479668 +karman_re400,target,14,5.6,velocity,upper_ux,0.6146788597106934 +karman_re400,target,14,5.6,velocity,upper_uy,-0.22774231433868408 +karman_re400,target,14,5.6,velocity,center_ux,1.2808293104171753 +karman_re400,target,14,5.6,velocity,center_uy,-0.6217904090881348 +karman_re400,target,14,5.6,velocity,lower_ux,1.3964428901672363 +karman_re400,target,14,5.6,velocity,lower_uy,-0.14624612033367157 +karman_re400,target,15,6.0,velocity,upper_ux,0.7710597515106201 +karman_re400,target,15,6.0,velocity,upper_uy,-0.3797728717327118 +karman_re400,target,15,6.0,velocity,center_ux,1.2150362730026245 +karman_re400,target,15,6.0,velocity,center_uy,-0.8967100381851196 +karman_re400,target,15,6.0,velocity,lower_ux,1.28700590133667 +karman_re400,target,15,6.0,velocity,lower_uy,-0.2942095994949341 +karman_re400,target,16,6.4,velocity,upper_ux,0.9430062174797058 +karman_re400,target,16,6.4,velocity,upper_uy,-0.4248369634151459 +karman_re400,target,16,6.4,velocity,center_ux,1.165527105331421 +karman_re400,target,16,6.4,velocity,center_uy,-0.8780724406242371 +karman_re400,target,16,6.4,velocity,lower_ux,1.151014804840088 +karman_re400,target,16,6.4,velocity,lower_uy,-0.37885695695877075 +karman_re400,target,17,6.8,velocity,upper_ux,1.103590488433838 +karman_re400,target,17,6.8,velocity,upper_uy,-0.4215990900993347 +karman_re400,target,17,6.8,velocity,center_ux,1.1524169445037842 +karman_re400,target,17,6.8,velocity,center_uy,-0.874966561794281 +karman_re400,target,17,6.8,velocity,lower_ux,1.0056369304656982 +karman_re400,target,17,6.8,velocity,lower_uy,-0.4250894784927368 +karman_re400,target,18,7.2,velocity,upper_ux,1.2470858097076416 +karman_re400,target,18,7.2,velocity,upper_uy,-0.3985174298286438 +karman_re400,target,18,7.2,velocity,center_ux,1.1677353382110596 +karman_re400,target,18,7.2,velocity,center_uy,-0.9309284090995789 +karman_re400,target,18,7.2,velocity,lower_ux,0.8460120558738708 +karman_re400,target,18,7.2,velocity,lower_uy,-0.42290329933166504 +karman_re400,target,19,7.6,velocity,upper_ux,1.3700966835021973 +karman_re400,target,19,7.6,velocity,upper_uy,-0.29777753353118896 +karman_re400,target,19,7.6,velocity,center_ux,1.210767149925232 +karman_re400,target,19,7.6,velocity,center_uy,-0.8573583364486694 +karman_re400,target,19,7.6,velocity,lower_ux,0.6877116560935974 +karman_re400,target,19,7.6,velocity,lower_uy,-0.3323728144168854 +karman_re400,target,20,8.0,velocity,upper_ux,1.4455921649932861 +karman_re400,target,20,8.0,velocity,upper_uy,-0.1186864972114563 +karman_re400,target,20,8.0,velocity,center_ux,1.25149405002594 +karman_re400,target,20,8.0,velocity,center_uy,-0.33927860856056213 +karman_re400,target,20,8.0,velocity,lower_ux,0.5828768014907837 +karman_re400,target,20,8.0,velocity,lower_uy,-0.1299210786819458 +karman_re400,target,21,8.4,velocity,upper_ux,1.4287559986114502 +karman_re400,target,21,8.4,velocity,upper_uy,0.09969885647296906 +karman_re400,target,21,8.4,velocity,center_ux,1.2510708570480347 +karman_re400,target,21,8.4,velocity,center_uy,0.42091333866119385 +karman_re400,target,21,8.4,velocity,lower_ux,0.5969905257225037 +karman_re400,target,21,8.4,velocity,lower_uy,0.12850555777549744 +karman_re400,target,22,8.8,velocity,upper_ux,1.3302507400512695 +karman_re400,target,22,8.8,velocity,upper_uy,0.2786392569541931 +karman_re400,target,22,8.8,velocity,center_ux,1.2125736474990845 +karman_re400,target,22,8.8,velocity,center_uy,0.8703176379203796 +karman_re400,target,22,8.8,velocity,lower_ux,0.7258382439613342 +karman_re400,target,22,8.8,velocity,lower_uy,0.31971409916877747 +karman_re400,target,23,9.2,velocity,upper_ux,1.1914178133010864 +karman_re400,target,23,9.2,velocity,upper_uy,0.3878282904624939 +karman_re400,target,23,9.2,velocity,center_ux,1.173988699913025 +karman_re400,target,23,9.2,velocity,center_uy,0.9154157042503357 +karman_re400,target,23,9.2,velocity,lower_ux,0.8948876261711121 +karman_re400,target,23,9.2,velocity,lower_uy,0.39821144938468933 +karman_re400,target,24,9.6,velocity,upper_ux,1.0368958711624146 +karman_re400,target,24,9.6,velocity,upper_uy,0.448027640581131 +karman_re400,target,24,9.6,velocity,center_ux,1.1662293672561646 +karman_re400,target,24,9.6,velocity,center_uy,0.8922778367996216 +karman_re400,target,24,9.6,velocity,lower_ux,1.0561935901641846 +karman_re400,target,24,9.6,velocity,lower_uy,0.4017505943775177 +karman_re400,target,25,10.0,velocity,upper_ux,0.8719419240951538 +karman_re400,target,25,10.0,velocity,upper_uy,0.46157306432724 +karman_re400,target,25,10.0,velocity,center_ux,1.2025758028030396 +karman_re400,target,25,10.0,velocity,center_uy,0.9333813190460205 +karman_re400,target,25,10.0,velocity,lower_ux,1.2060867547988892 +karman_re400,target,25,10.0,velocity,lower_uy,0.3834552466869354 +karman_re400,target,26,10.4,velocity,upper_ux,0.6985391974449158 +karman_re400,target,26,10.4,velocity,upper_uy,0.3845045864582062 +karman_re400,target,26,10.4,velocity,center_ux,1.2814936637878418 +karman_re400,target,26,10.4,velocity,center_uy,0.8828880190849304 +karman_re400,target,26,10.4,velocity,lower_ux,1.3317770957946777 +karman_re400,target,26,10.4,velocity,lower_uy,0.2953755557537079 +karman_re400,target,27,10.8,velocity,upper_ux,0.5666641592979431 +karman_re400,target,27,10.8,velocity,upper_uy,0.17592500150203705 +karman_re400,target,27,10.8,velocity,center_ux,1.3579761981964111 +karman_re400,target,27,10.8,velocity,center_uy,0.41588079929351807 +karman_re400,target,27,10.8,velocity,lower_ux,1.4097195863723755 +karman_re400,target,27,10.8,velocity,lower_uy,0.13378658890724182 +karman_re400,target,28,11.2,velocity,upper_ux,0.5638181567192078 +karman_re400,target,28,11.2,velocity,upper_uy,-0.11471537500619888 +karman_re400,target,28,11.2,velocity,center_ux,1.3670190572738647 +karman_re400,target,28,11.2,velocity,center_uy,-0.33778777718544006 +karman_re400,target,28,11.2,velocity,lower_ux,1.4037106037139893 +karman_re400,target,28,11.2,velocity,lower_uy,-0.06841806322336197 +karman_re400,target,29,11.6,velocity,upper_ux,0.6933026313781738 +karman_re400,target,29,11.6,velocity,upper_uy,-0.3369314670562744 +karman_re400,target,29,11.6,velocity,center_ux,1.300547480583191 +karman_re400,target,29,11.6,velocity,center_uy,-0.8223068118095398 +karman_re400,target,29,11.6,velocity,lower_ux,1.3170732259750366 +karman_re400,target,29,11.6,velocity,lower_uy,-0.24135787785053253 +karman_re400,target,30,12.0,velocity,upper_ux,0.8720967769622803 +karman_re400,target,30,12.0,velocity,upper_uy,-0.4248185455799103 +karman_re400,target,30,12.0,velocity,center_ux,1.2242430448532104 +karman_re400,target,30,12.0,velocity,center_uy,-0.8912291526794434 +karman_re400,target,30,12.0,velocity,lower_ux,1.190119981765747 +karman_re400,target,30,12.0,velocity,lower_uy,-0.3525826334953308 +karman_re400,target,31,12.4,velocity,upper_ux,1.0440093278884888 +karman_re400,target,31,12.4,velocity,upper_uy,-0.4248485565185547 +karman_re400,target,31,12.4,velocity,center_ux,1.1943919658660889 +karman_re400,target,31,12.4,velocity,center_uy,-0.868113100528717 +karman_re400,target,31,12.4,velocity,lower_ux,1.0497033596038818 +karman_re400,target,31,12.4,velocity,lower_uy,-0.4188695251941681 +karman_re400,target,32,12.8,velocity,upper_ux,1.1974784135818481 +karman_re400,target,32,12.8,velocity,upper_uy,-0.40484675765037537 +karman_re400,target,32,12.8,velocity,center_ux,1.2122740745544434 +karman_re400,target,32,12.8,velocity,center_uy,-0.9105373620986938 +karman_re400,target,32,12.8,velocity,lower_ux,0.8922203779220581 +karman_re400,target,32,12.8,velocity,lower_uy,-0.4429470896720886 +karman_re400,target,33,13.2,velocity,upper_ux,1.3263229131698608 +karman_re400,target,33,13.2,velocity,upper_uy,-0.32859867811203003 +karman_re400,target,33,13.2,velocity,center_ux,1.2747900485992432 +karman_re400,target,33,13.2,velocity,center_uy,-0.904662013053894 +karman_re400,target,33,13.2,velocity,lower_ux,0.7214207649230957 +karman_re400,target,33,13.2,velocity,lower_uy,-0.3846692144870758 +karman_re400,target,34,13.6,velocity,upper_ux,1.414304494857788 +karman_re400,target,34,13.6,velocity,upper_uy,-0.17993006110191345 +karman_re400,target,34,13.6,velocity,center_ux,1.3452410697937012 +karman_re400,target,34,13.6,velocity,center_uy,-0.531135618686676 +karman_re400,target,34,13.6,velocity,lower_ux,0.5789161920547485 +karman_re400,target,34,13.6,velocity,lower_uy,-0.20286022126674652 +karman_re400,target,35,14.0,velocity,upper_ux,1.421991229057312 +karman_re400,target,35,14.0,velocity,upper_uy,0.017410600557923317 +karman_re400,target,35,14.0,velocity,center_ux,1.3546209335327148 +karman_re400,target,35,14.0,velocity,center_uy,0.2021450400352478 +karman_re400,target,35,14.0,velocity,lower_ux,0.5474291443824768 +karman_re400,target,35,14.0,velocity,lower_uy,0.07399287074804306 +karman_re400,target,36,14.4,velocity,upper_ux,1.3508905172348022 +karman_re400,target,36,14.4,velocity,upper_uy,0.1982773244380951 +karman_re400,target,36,14.4,velocity,center_ux,1.2948590517044067 +karman_re400,target,36,14.4,velocity,center_uy,0.764809787273407 +karman_re400,target,36,14.4,velocity,lower_ux,0.6567941904067993 +karman_re400,target,36,14.4,velocity,lower_uy,0.3090451955795288 +karman_re400,target,37,14.8,velocity,upper_ux,1.2330411672592163 +karman_re400,target,37,14.8,velocity,upper_uy,0.3193598985671997 +karman_re400,target,37,14.8,velocity,center_ux,1.2156122922897339 +karman_re400,target,37,14.8,velocity,center_uy,0.8914694786071777 +karman_re400,target,37,14.8,velocity,lower_ux,0.8313724994659424 +karman_re400,target,37,14.8,velocity,lower_uy,0.41931647062301636 +karman_re400,target,38,15.2,velocity,upper_ux,1.0972381830215454 +karman_re400,target,38,15.2,velocity,upper_uy,0.3876687288284302 +karman_re400,target,38,15.2,velocity,center_ux,1.1685001850128174 +karman_re400,target,38,15.2,velocity,center_uy,0.856295645236969 +karman_re400,target,38,15.2,velocity,lower_ux,1.0026495456695557 +karman_re400,target,38,15.2,velocity,lower_uy,0.43485885858535767 +karman_re400,target,39,15.6,velocity,upper_ux,0.950680136680603 +karman_re400,target,39,15.6,velocity,upper_uy,0.4223514199256897 +karman_re400,target,39,15.6,velocity,center_ux,1.1604925394058228 +karman_re400,target,39,15.6,velocity,center_uy,0.8847408294677734 +karman_re400,target,39,15.6,velocity,lower_ux,1.158980369567871 +karman_re400,target,39,15.6,velocity,lower_uy,0.42707592248916626 +karman_re400,target,40,16.0,velocity,upper_ux,0.7912697792053223 +karman_re400,target,40,16.0,velocity,upper_uy,0.39483642578125 +karman_re400,target,40,16.0,velocity,center_ux,1.1812047958374023 +karman_re400,target,40,16.0,velocity,center_uy,0.9335182905197144 +karman_re400,target,40,16.0,velocity,lower_ux,1.2970994710922241 +karman_re400,target,40,16.0,velocity,lower_uy,0.38022804260253906 +karman_re400,target,41,16.4,velocity,upper_ux,0.6431796550750732 +karman_re400,target,41,16.4,velocity,upper_uy,0.2691315710544586 +karman_re400,target,41,16.4,velocity,center_ux,1.2205044031143188 +karman_re400,target,41,16.4,velocity,center_uy,0.7399713397026062 +karman_re400,target,41,16.4,velocity,lower_ux,1.4082266092300415 +karman_re400,target,41,16.4,velocity,lower_uy,0.25298118591308594 +karman_re400,target,42,16.8,velocity,upper_ux,0.5733859539031982 +karman_re400,target,42,16.8,velocity,upper_uy,0.04036400839686394 +karman_re400,target,42,16.8,velocity,center_ux,1.2445423603057861 +karman_re400,target,42,16.8,velocity,center_uy,0.09027238190174103 +karman_re400,target,42,16.8,velocity,lower_ux,1.4565925598144531 +karman_re400,target,42,16.8,velocity,lower_uy,0.05283293128013611 +karman_re400,target,43,17.2,velocity,upper_ux,0.6302049160003662 +karman_re400,target,43,17.2,velocity,upper_uy,-0.20361599326133728 +karman_re400,target,43,17.2,velocity,center_ux,1.2273762226104736 +karman_re400,target,43,17.2,velocity,center_uy,-0.6190657019615173 +karman_re400,target,43,17.2,velocity,lower_ux,1.4098944664001465 +karman_re400,target,43,17.2,velocity,lower_uy,-0.16088396310806274 +karman_re400,target,44,17.6,velocity,upper_ux,0.7784083485603333 +karman_re400,target,44,17.6,velocity,upper_uy,-0.3554348349571228 +karman_re400,target,44,17.6,velocity,center_ux,1.1854745149612427 +karman_re400,target,44,17.6,velocity,center_uy,-0.9134548306465149 +karman_re400,target,44,17.6,velocity,lower_ux,1.293696641921997 +karman_re400,target,44,17.6,velocity,lower_uy,-0.3178017735481262 +karman_re400,target,45,18.0,velocity,upper_ux,0.9467745423316956 +karman_re400,target,45,18.0,velocity,upper_uy,-0.40417006611824036 +karman_re400,target,45,18.0,velocity,center_ux,1.157043218612671 +karman_re400,target,45,18.0,velocity,center_uy,-0.899753212928772 +karman_re400,target,45,18.0,velocity,lower_ux,1.1498079299926758 +karman_re400,target,45,18.0,velocity,lower_uy,-0.4067637622356415 +karman_re400,target,46,18.4,velocity,upper_ux,1.103342890739441 +karman_re400,target,46,18.4,velocity,upper_uy,-0.4017786681652069 +karman_re400,target,46,18.4,velocity,center_ux,1.159396767616272 +karman_re400,target,46,18.4,velocity,center_uy,-0.8974241614341736 +karman_re400,target,46,18.4,velocity,lower_ux,0.9929643869400024 +karman_re400,target,46,18.4,velocity,lower_uy,-0.45370617508888245 +karman_re400,target,47,18.8,velocity,upper_ux,1.2468085289001465 +karman_re400,target,47,18.8,velocity,upper_uy,-0.3714105486869812 +karman_re400,target,47,18.8,velocity,center_ux,1.2012945413589478 +karman_re400,target,47,18.8,velocity,center_uy,-0.9431811571121216 +karman_re400,target,47,18.8,velocity,lower_ux,0.825866162776947 +karman_re400,target,47,18.8,velocity,lower_uy,-0.4457643926143646 +karman_re400,target,48,19.2,velocity,upper_ux,1.3652290105819702 +karman_re400,target,48,19.2,velocity,upper_uy,-0.2613905370235443 +karman_re400,target,48,19.2,velocity,center_ux,1.2778537273406982 +karman_re400,target,48,19.2,velocity,center_uy,-0.8127307295799255 +karman_re400,target,48,19.2,velocity,lower_ux,0.6605703830718994 +karman_re400,target,48,19.2,velocity,lower_uy,-0.33746078610420227 +karman_re400,target,49,19.6,velocity,upper_ux,1.424791693687439 +karman_re400,target,49,19.6,velocity,upper_uy,-0.07961171865463257 +karman_re400,target,49,19.6,velocity,center_ux,1.3357608318328857 +karman_re400,target,49,19.6,velocity,center_uy,-0.22514235973358154 +karman_re400,target,49,19.6,velocity,lower_ux,0.558637261390686 +karman_re400,target,49,19.6,velocity,lower_uy,-0.10295837372541428 +karman_re400,target,50,20.0,velocity,upper_ux,1.394557237625122 +karman_re400,target,50,20.0,velocity,upper_uy,0.12645460665225983 +karman_re400,target,50,20.0,velocity,center_ux,1.3270127773284912 +karman_re400,target,50,20.0,velocity,center_uy,0.5149126648902893 +karman_re400,target,50,20.0,velocity,lower_ux,0.5946339964866638 +karman_re400,target,50,20.0,velocity,lower_uy,0.17622676491737366 +karman_re400,target,51,20.4,velocity,upper_ux,1.2912565469741821 +karman_re400,target,51,20.4,velocity,upper_uy,0.28747692704200745 +karman_re400,target,51,20.4,velocity,center_ux,1.2620505094528198 +karman_re400,target,51,20.4,velocity,center_uy,0.8810421228408813 +karman_re400,target,51,20.4,velocity,lower_ux,0.7435382008552551 +karman_re400,target,51,20.4,velocity,lower_uy,0.3605664074420929 +karman_re400,target,52,20.8,velocity,upper_ux,1.1545805931091309 +karman_re400,target,52,20.8,velocity,upper_uy,0.3857853412628174 +karman_re400,target,52,20.8,velocity,center_ux,1.2040791511535645 +karman_re400,target,52,20.8,velocity,center_uy,0.8928035497665405 +karman_re400,target,52,20.8,velocity,lower_ux,0.9196537137031555 +karman_re400,target,52,20.8,velocity,lower_uy,0.4203753173351288 +karman_re400,target,53,21.2,velocity,upper_ux,1.0063396692276 +karman_re400,target,53,21.2,velocity,upper_uy,0.44332218170166016 +karman_re400,target,53,21.2,velocity,center_ux,1.1957409381866455 +karman_re400,target,53,21.2,velocity,center_uy,0.8843333721160889 +karman_re400,target,53,21.2,velocity,lower_ux,1.085852026939392 +karman_re400,target,53,21.2,velocity,lower_uy,0.4115365147590637 +karman_re400,target,54,21.6,velocity,upper_ux,0.8403107523918152 +karman_re400,target,54,21.6,velocity,upper_uy,0.4476405382156372 +karman_re400,target,54,21.6,velocity,center_ux,1.2359164953231812 +karman_re400,target,54,21.6,velocity,center_uy,0.9291759729385376 +karman_re400,target,54,21.6,velocity,lower_ux,1.233458161354065 +karman_re400,target,54,21.6,velocity,lower_uy,0.3821355402469635 +karman_re400,target,55,22.0,velocity,upper_ux,0.6665672063827515 +karman_re400,target,55,22.0,velocity,upper_uy,0.35244765877723694 +karman_re400,target,55,22.0,velocity,center_ux,1.3185946941375732 +karman_re400,target,55,22.0,velocity,center_uy,0.8374083042144775 +karman_re400,target,55,22.0,velocity,lower_ux,1.3513157367706299 +karman_re400,target,55,22.0,velocity,lower_uy,0.28168901801109314 +karman_re400,target,56,22.4,velocity,upper_ux,0.5484538078308105 +karman_re400,target,56,22.4,velocity,upper_uy,0.12320926785469055 +karman_re400,target,56,22.4,velocity,center_ux,1.385327935218811 +karman_re400,target,56,22.4,velocity,center_uy,0.3080616891384125 +karman_re400,target,56,22.4,velocity,lower_ux,1.4173084497451782 +karman_re400,target,56,22.4,velocity,lower_uy,0.1147940456867218 +karman_re400,target,57,22.8,velocity,upper_ux,0.5660812258720398 +karman_re400,target,57,22.8,velocity,upper_uy,-0.16664493083953857 +karman_re400,target,57,22.8,velocity,center_ux,1.3701376914978027 +karman_re400,target,57,22.8,velocity,center_uy,-0.4302343726158142 +karman_re400,target,57,22.8,velocity,lower_ux,1.396431565284729 +karman_re400,target,57,22.8,velocity,lower_uy,-0.08178272098302841 +karman_re400,target,58,23.2,velocity,upper_ux,0.7101542949676514 +karman_re400,target,58,23.2,velocity,upper_uy,-0.3674565553665161 +karman_re400,target,58,23.2,velocity,center_ux,1.2881519794464111 +karman_re400,target,58,23.2,velocity,center_uy,-0.8409940600395203 +karman_re400,target,58,23.2,velocity,lower_ux,1.3061000108718872 +karman_re400,target,58,23.2,velocity,lower_uy,-0.2423991560935974 +karman_re400,target,59,23.6,velocity,upper_ux,0.8915802836418152 +karman_re400,target,59,23.6,velocity,upper_uy,-0.43898165225982666 +karman_re400,target,59,23.6,velocity,center_ux,1.2090777158737183 +karman_re400,target,59,23.6,velocity,center_uy,-0.8736935257911682 +karman_re400,target,59,23.6,velocity,lower_ux,1.1827090978622437 +karman_re400,target,59,23.6,velocity,lower_uy,-0.3425910174846649 +karman_re400,target,60,24.0,velocity,upper_ux,1.0591678619384766 +karman_re400,target,60,24.0,velocity,upper_uy,-0.4356314539909363 +karman_re400,target,60,24.0,velocity,center_ux,1.172465205192566 +karman_re400,target,60,24.0,velocity,center_uy,-0.8530014157295227 +karman_re400,target,60,24.0,velocity,lower_ux,1.045067548751831 +karman_re400,target,60,24.0,velocity,lower_uy,-0.4007653295993805 +karman_re400,target,61,24.4,velocity,upper_ux,1.2108280658721924 +karman_re400,target,61,24.4,velocity,upper_uy,-0.4211009740829468 +karman_re400,target,61,24.4,velocity,center_ux,1.1749200820922852 +karman_re400,target,61,24.4,velocity,center_uy,-0.9038413763046265 +karman_re400,target,61,24.4,velocity,lower_ux,0.8942325115203857 +karman_re400,target,61,24.4,velocity,lower_uy,-0.4198637306690216 +karman_re400,target,62,24.8,velocity,upper_ux,1.341557502746582 +karman_re400,target,62,24.8,velocity,upper_uy,-0.34558865427970886 +karman_re400,target,62,24.8,velocity,center_ux,1.2076853513717651 +karman_re400,target,62,24.8,velocity,center_uy,-0.9116211533546448 +karman_re400,target,62,24.8,velocity,lower_ux,0.7341122627258301 +karman_re400,target,62,24.8,velocity,lower_uy,-0.3620513677597046 +karman_re400,target,63,25.2,velocity,upper_ux,1.4341938495635986 +karman_re400,target,63,25.2,velocity,upper_uy,-0.19239358603954315 +karman_re400,target,63,25.2,velocity,center_ux,1.2464823722839355 +karman_re400,target,63,25.2,velocity,center_uy,-0.5565091967582703 +karman_re400,target,63,25.2,velocity,lower_ux,0.6014890074729919 +karman_re400,target,63,25.2,velocity,lower_uy,-0.19637912511825562 +karman_re400,target,64,25.6,velocity,upper_ux,1.449650764465332 +karman_re400,target,64,25.6,velocity,upper_uy,0.01917422190308571 +karman_re400,target,64,25.6,velocity,center_ux,1.255000352859497 +karman_re400,target,64,25.6,velocity,center_uy,0.17937707901000977 +karman_re400,target,64,25.6,velocity,lower_ux,0.5730667114257812 +karman_re400,target,64,25.6,velocity,lower_uy,0.05365316569805145 +karman_re400,target,65,26.0,velocity,upper_ux,1.3756804466247559 +karman_re400,target,65,26.0,velocity,upper_uy,0.21591299772262573 +karman_re400,target,65,26.0,velocity,center_ux,1.2208369970321655 +karman_re400,target,65,26.0,velocity,center_uy,0.77202969789505 +karman_re400,target,65,26.0,velocity,lower_ux,0.6707785129547119 +karman_re400,target,65,26.0,velocity,lower_uy,0.2743321657180786 +karman_re400,target,66,26.4,velocity,upper_ux,1.2480363845825195 +karman_re400,target,66,26.4,velocity,upper_uy,0.34630364179611206 +karman_re400,target,66,26.4,velocity,center_ux,1.173936128616333 +karman_re400,target,66,26.4,velocity,center_uy,0.9185259938240051 +karman_re400,target,66,26.4,velocity,lower_ux,0.8329810500144958 +karman_re400,target,66,26.4,velocity,lower_uy,0.3875027894973755 +karman_re400,target,67,26.8,velocity,upper_ux,1.1028261184692383 +karman_re400,target,67,26.8,velocity,upper_uy,0.41691434383392334 +karman_re400,target,67,26.8,velocity,center_ux,1.1509283781051636 +karman_re400,target,67,26.8,velocity,center_uy,0.8822878003120422 +karman_re400,target,67,26.8,velocity,lower_ux,0.9998044371604919 +karman_re400,target,67,26.8,velocity,lower_uy,0.4103543758392334 +karman_re400,target,68,27.2,velocity,upper_ux,0.9453763365745544 +karman_re400,target,68,27.2,velocity,upper_uy,0.45015856623649597 +karman_re400,target,68,27.2,velocity,center_ux,1.158849835395813 +karman_re400,target,68,27.2,velocity,center_uy,0.9061474800109863 +karman_re400,target,68,27.2,velocity,lower_ux,1.15237557888031 +karman_re400,target,68,27.2,velocity,lower_uy,0.40569618344306946 +karman_re400,target,69,27.6,velocity,upper_ux,0.7785304188728333 +karman_re400,target,69,27.6,velocity,upper_uy,0.4174288809299469 +karman_re400,target,69,27.6,velocity,center_ux,1.2023179531097412 +karman_re400,target,69,27.6,velocity,center_uy,0.940905749797821 +karman_re400,target,69,27.6,velocity,lower_ux,1.2891478538513184 +karman_re400,target,69,27.6,velocity,lower_uy,0.3546706736087799 +karman_re400,target,70,28.0,velocity,upper_ux,0.6274126768112183 +karman_re400,target,70,28.0,velocity,upper_uy,0.2769288122653961 +karman_re400,target,70,28.0,velocity,center_ux,1.2695893049240112 +karman_re400,target,70,28.0,velocity,center_uy,0.6997926831245422 +karman_re400,target,70,28.0,velocity,lower_ux,1.3979768753051758 +karman_re400,target,70,28.0,velocity,lower_uy,0.22234171628952026 +karman_re400,target,71,28.4,velocity,upper_ux,0.5613665580749512 +karman_re400,target,71,28.4,velocity,upper_uy,0.024983400478959084 +karman_re400,target,71,28.4,velocity,center_ux,1.3062635660171509 +karman_re400,target,71,28.4,velocity,center_uy,0.01349156629294157 +karman_re400,target,71,28.4,velocity,lower_ux,1.4351643323898315 +karman_re400,target,71,28.4,velocity,lower_uy,0.022407017648220062 +karman_re400,target,72,28.8,velocity,upper_ux,0.6332785487174988 +karman_re400,target,72,28.8,velocity,upper_uy,-0.2313145250082016 +karman_re400,target,72,28.8,velocity,center_ux,1.2830995321273804 +karman_re400,target,72,28.8,velocity,center_uy,-0.6681205630302429 +karman_re400,target,72,28.8,velocity,lower_ux,1.3806321620941162 +karman_re400,target,72,28.8,velocity,lower_uy,-0.1812770962715149 +karman_re400,target,73,29.2,velocity,upper_ux,0.7942670583724976 +karman_re400,target,73,29.2,velocity,upper_uy,-0.3773496150970459 +karman_re400,target,73,29.2,velocity,center_ux,1.224904179573059 +karman_re400,target,73,29.2,velocity,center_uy,-0.9127792119979858 +karman_re400,target,73,29.2,velocity,lower_ux,1.2627840042114258 +karman_re400,target,73,29.2,velocity,lower_uy,-0.32722947001457214 +karman_re400,target,74,29.6,velocity,upper_ux,0.9656051397323608 +karman_re400,target,74,29.6,velocity,upper_uy,-0.41346439719200134 +karman_re400,target,74,29.6,velocity,center_ux,1.1859780550003052 +karman_re400,target,74,29.6,velocity,center_uy,-0.891492486000061 +karman_re400,target,74,29.6,velocity,lower_ux,1.118300199508667 +karman_re400,target,74,29.6,velocity,lower_uy,-0.4125397503376007 +karman_re400,target,75,30.0,velocity,upper_ux,1.1259617805480957 +karman_re400,target,75,30.0,velocity,upper_uy,-0.4016290307044983 +karman_re400,target,75,30.0,velocity,center_ux,1.1955342292785645 +karman_re400,target,75,30.0,velocity,center_uy,-0.9015995264053345 +karman_re400,target,75,30.0,velocity,lower_ux,0.9629905819892883 +karman_re400,target,75,30.0,velocity,lower_uy,-0.45841166377067566 +karman_re400,target,76,30.4,velocity,upper_ux,1.2668812274932861 +karman_re400,target,76,30.4,velocity,upper_uy,-0.3568933606147766 +karman_re400,target,76,30.4,velocity,center_ux,1.2533515691757202 +karman_re400,target,76,30.4,velocity,center_uy,-0.9355831146240234 +karman_re400,target,76,30.4,velocity,lower_ux,0.7912339568138123 +karman_re400,target,76,30.4,velocity,lower_uy,-0.43895384669303894 +karman_re400,target,77,30.8,velocity,upper_ux,1.3737890720367432 +karman_re400,target,77,30.8,velocity,upper_uy,-0.23515728116035461 +karman_re400,target,77,30.8,velocity,center_ux,1.3432730436325073 +karman_re400,target,77,30.8,velocity,center_uy,-0.7322937250137329 +karman_re400,target,77,30.8,velocity,lower_ux,0.6232830882072449 +karman_re400,target,77,30.8,velocity,lower_uy,-0.3049544394016266 +karman_re400,target,78,31.2,velocity,upper_ux,1.416750431060791 +karman_re400,target,78,31.2,velocity,upper_uy,-0.05232357978820801 +karman_re400,target,78,31.2,velocity,center_ux,1.3941717147827148 +karman_re400,target,78,31.2,velocity,center_uy,-0.0841682180762291 +karman_re400,target,78,31.2,velocity,lower_ux,0.5390958786010742 +karman_re400,target,78,31.2,velocity,lower_uy,-0.04106305539608002 +karman_re400,target,79,31.6,velocity,upper_ux,1.3714679479599 +karman_re400,target,79,31.6,velocity,upper_uy,0.1401485800743103 +karman_re400,target,79,31.6,velocity,center_ux,1.3566187620162964 +karman_re400,target,79,31.6,velocity,center_uy,0.6041231155395508 +karman_re400,target,79,31.6,velocity,lower_ux,0.6016870737075806 +karman_re400,target,79,31.6,velocity,lower_uy,0.23914703726768494 +karman_re400,target,80,32.0,velocity,upper_ux,1.2658942937850952 +karman_re400,target,80,32.0,velocity,upper_uy,0.28329524397850037 +karman_re400,target,80,32.0,velocity,center_ux,1.2670804262161255 +karman_re400,target,80,32.0,velocity,center_uy,0.8767951726913452 +karman_re400,target,80,32.0,velocity,lower_ux,0.7662181258201599 +karman_re400,target,80,32.0,velocity,lower_uy,0.40023064613342285 +karman_re400,target,81,32.4,velocity,upper_ux,1.13693106174469 +karman_re400,target,81,32.4,velocity,upper_uy,0.3689941167831421 +karman_re400,target,81,32.4,velocity,center_ux,1.2006821632385254 +karman_re400,target,81,32.4,velocity,center_uy,0.8633928894996643 +karman_re400,target,81,32.4,velocity,lower_ux,0.9468222260475159 +karman_re400,target,81,32.4,velocity,lower_uy,0.440805584192276 +karman_re400,target,82,32.8,velocity,upper_ux,0.9940005540847778 +karman_re400,target,82,32.8,velocity,upper_uy,0.41900452971458435 +karman_re400,target,82,32.8,velocity,center_ux,1.1810085773468018 +karman_re400,target,82,32.8,velocity,center_uy,0.8674719333648682 +karman_re400,target,82,32.8,velocity,lower_ux,1.1098920106887817 +karman_re400,target,82,32.8,velocity,lower_uy,0.4288053810596466 +karman_re400,target,83,33.2,velocity,upper_ux,0.8360927104949951 +karman_re400,target,83,33.2,velocity,upper_uy,0.4171450734138489 +karman_re400,target,83,33.2,velocity,center_ux,1.201438069343567 +karman_re400,target,83,33.2,velocity,center_uy,0.9240070581436157 +karman_re400,target,83,33.2,velocity,lower_ux,1.2556837797164917 +karman_re400,target,83,33.2,velocity,lower_uy,0.39935585856437683 +karman_re400,target,84,33.6,velocity,upper_ux,0.6752446889877319 +karman_re400,target,84,33.6,velocity,upper_uy,0.3228924870491028 +karman_re400,target,84,33.6,velocity,center_ux,1.2530319690704346 +karman_re400,target,84,33.6,velocity,center_uy,0.841050386428833 +karman_re400,target,84,33.6,velocity,lower_ux,1.3757015466690063 +karman_re400,target,84,33.6,velocity,lower_uy,0.295866996049881 +karman_re400,target,85,34.0,velocity,upper_ux,0.566277027130127 +karman_re400,target,85,34.0,velocity,upper_uy,0.112763911485672 +karman_re400,target,85,34.0,velocity,center_ux,1.291648507118225 +karman_re400,target,85,34.0,velocity,center_uy,0.3140793442726135 +karman_re400,target,85,34.0,velocity,lower_ux,1.4424360990524292 +karman_re400,target,85,34.0,velocity,lower_uy,0.12074615806341171 +karman_re400,target,86,34.4,velocity,upper_ux,0.5849761962890625 +karman_re400,target,86,34.4,velocity,upper_uy,-0.1497732549905777 +karman_re400,target,86,34.4,velocity,center_ux,1.280747652053833 +karman_re400,target,86,34.4,velocity,center_uy,-0.4337926506996155 +karman_re400,target,86,34.4,velocity,lower_ux,1.4237911701202393 +karman_re400,target,86,34.4,velocity,lower_uy,-0.088573157787323 +karman_re400,target,87,34.8,velocity,upper_ux,0.7191722393035889 +karman_re400,target,87,34.8,velocity,upper_uy,-0.33874303102493286 +karman_re400,target,87,34.8,velocity,center_ux,1.2260351181030273 +karman_re400,target,87,34.8,velocity,center_uy,-0.8619669079780579 +karman_re400,target,87,34.8,velocity,lower_ux,1.3290635347366333 +karman_re400,target,87,34.8,velocity,lower_uy,-0.2595438063144684 +karman_re400,target,88,35.2,velocity,upper_ux,0.890149712562561 +karman_re400,target,88,35.2,velocity,upper_uy,-0.4143022894859314 +karman_re400,target,88,35.2,velocity,center_ux,1.1726784706115723 +karman_re400,target,88,35.2,velocity,center_uy,-0.897951602935791 +karman_re400,target,88,35.2,velocity,lower_ux,1.1963528394699097 +karman_re400,target,88,35.2,velocity,lower_uy,-0.3635438084602356 +karman_re400,target,89,35.6,velocity,upper_ux,1.054417371749878 +karman_re400,target,89,35.6,velocity,upper_uy,-0.4183182418346405 +karman_re400,target,89,35.6,velocity,center_ux,1.1523032188415527 +karman_re400,target,89,35.6,velocity,center_uy,-0.8712054491043091 +karman_re400,target,89,35.6,velocity,lower_ux,1.0519014596939087 +karman_re400,target,89,35.6,velocity,lower_uy,-0.42015281319618225 +karman_re400,target,90,36.0,velocity,upper_ux,1.2032787799835205 +karman_re400,target,90,36.0,velocity,upper_uy,-0.4078148603439331 +karman_re400,target,90,36.0,velocity,center_ux,1.163204550743103 +karman_re400,target,90,36.0,velocity,center_uy,-0.9177080392837524 +karman_re400,target,90,36.0,velocity,lower_ux,0.8945470452308655 +karman_re400,target,90,36.0,velocity,lower_uy,-0.4370923340320587 +karman_re400,target,91,36.4,velocity,upper_ux,1.3330754041671753 +karman_re400,target,91,36.4,velocity,upper_uy,-0.33129557967185974 +karman_re400,target,91,36.4,velocity,center_ux,1.2051973342895508 +karman_re400,target,91,36.4,velocity,center_uy,-0.9149727821350098 +karman_re400,target,91,36.4,velocity,lower_ux,0.7307206988334656 +karman_re400,target,91,36.4,velocity,lower_uy,-0.3760310113430023 +karman_re400,target,92,36.8,velocity,upper_ux,1.4274985790252686 +karman_re400,target,92,36.8,velocity,upper_uy,-0.17497548460960388 +karman_re400,target,92,36.8,velocity,center_ux,1.2577600479125977 +karman_re400,target,92,36.8,velocity,center_uy,-0.5360320806503296 +karman_re400,target,92,36.8,velocity,lower_ux,0.6006296277046204 +karman_re400,target,92,36.8,velocity,lower_uy,-0.20323710143566132 +karman_re400,target,93,37.2,velocity,upper_ux,1.438307523727417 +karman_re400,target,93,37.2,velocity,upper_uy,0.038424476981163025 +karman_re400,target,93,37.2,velocity,center_ux,1.273109793663025 +karman_re400,target,93,37.2,velocity,center_uy,0.2124859243631363 +karman_re400,target,93,37.2,velocity,lower_ux,0.5752821564674377 +karman_re400,target,93,37.2,velocity,lower_uy,0.05597400665283203 +karman_re400,target,94,37.6,velocity,upper_ux,1.359926462173462 +karman_re400,target,94,37.6,velocity,upper_uy,0.23282736539840698 +karman_re400,target,94,37.6,velocity,center_ux,1.2398685216903687 +karman_re400,target,94,37.6,velocity,center_uy,0.7907794713973999 +karman_re400,target,94,37.6,velocity,lower_ux,0.6788654327392578 +karman_re400,target,94,37.6,velocity,lower_uy,0.28016749024391174 +karman_re400,target,95,38.0,velocity,upper_ux,1.2299548387527466 +karman_re400,target,95,38.0,velocity,upper_uy,0.36065128445625305 +karman_re400,target,95,38.0,velocity,center_ux,1.1919916868209839 +karman_re400,target,95,38.0,velocity,center_uy,0.921557605266571 +karman_re400,target,95,38.0,velocity,lower_ux,0.8457258343696594 +karman_re400,target,95,38.0,velocity,lower_uy,0.38967186212539673 +karman_re400,target,96,38.4,velocity,upper_ux,1.0798496007919312 +karman_re400,target,96,38.4,velocity,upper_uy,0.4325031042098999 +karman_re400,target,96,38.4,velocity,center_ux,1.1706422567367554 +karman_re400,target,96,38.4,velocity,center_uy,0.8895874619483948 +karman_re400,target,96,38.4,velocity,lower_ux,1.0117466449737549 +karman_re400,target,96,38.4,velocity,lower_uy,0.40656059980392456 +karman_re400,target,97,38.8,velocity,upper_ux,0.9189140200614929 +karman_re400,target,97,38.8,velocity,upper_uy,0.4634781777858734 +karman_re400,target,97,38.8,velocity,center_ux,1.1936899423599243 +karman_re400,target,97,38.8,velocity,center_uy,0.9182223677635193 +karman_re400,target,97,38.8,velocity,lower_ux,1.166171669960022 +karman_re400,target,97,38.8,velocity,lower_uy,0.39418357610702515 +karman_re400,target,98,39.2,velocity,upper_ux,0.745400607585907 +karman_re400,target,98,39.2,velocity,upper_uy,0.4171217381954193 +karman_re400,target,98,39.2,velocity,center_ux,1.2628288269042969 +karman_re400,target,98,39.2,velocity,center_uy,0.9244233965873718 +karman_re400,target,98,39.2,velocity,lower_ux,1.3000682592391968 +karman_re400,target,98,39.2,velocity,lower_uy,0.3292112648487091 +karman_re400,target,99,39.6,velocity,upper_ux,0.5921262502670288 +karman_re400,target,99,39.6,velocity,upper_uy,0.24626055359840393 +karman_re400,target,99,39.6,velocity,center_ux,1.3482061624526978 +karman_re400,target,99,39.6,velocity,center_uy,0.5951436758041382 +karman_re400,target,99,39.6,velocity,lower_ux,1.3949098587036133 +karman_re400,target,99,39.6,velocity,lower_uy,0.18740713596343994 +karman_re400,target,100,40.0,velocity,upper_ux,0.5465573072433472 +karman_re400,target,100,40.0,velocity,upper_uy,-0.03594598174095154 +karman_re400,target,100,40.0,velocity,center_ux,1.3788586854934692 +karman_re400,target,100,40.0,velocity,center_uy,-0.1288849413394928 +karman_re400,target,100,40.0,velocity,lower_ux,1.4141557216644287 +karman_re400,target,100,40.0,velocity,lower_uy,-0.008638176135718822 +karman_re400,target,101,40.4,velocity,upper_ux,0.6457473635673523 +karman_re400,target,101,40.4,velocity,upper_uy,-0.2910991609096527 +karman_re400,target,101,40.4,velocity,center_ux,1.3267205953598022 +karman_re400,target,101,40.4,velocity,center_uy,-0.7324512600898743 +karman_re400,target,101,40.4,velocity,lower_ux,1.3475010395050049 +karman_re400,target,101,40.4,velocity,lower_uy,-0.19441406428813934 +karman_re400,target,102,40.8,velocity,upper_ux,0.8197776079177856 +karman_re400,target,102,40.8,velocity,upper_uy,-0.4146023094654083 +karman_re400,target,102,40.8,velocity,center_ux,1.2424821853637695 +karman_re400,target,102,40.8,velocity,center_uy,-0.8929029703140259 +karman_re400,target,102,40.8,velocity,lower_ux,1.229172945022583 +karman_re400,target,102,40.8,velocity,lower_uy,-0.3221651315689087 +karman_re400,target,103,41.2,velocity,upper_ux,0.9961428046226501 +karman_re400,target,103,41.2,velocity,upper_uy,-0.432293176651001 +karman_re400,target,103,41.2,velocity,center_ux,1.195111632347107 +karman_re400,target,103,41.2,velocity,center_uy,-0.864580512046814 +karman_re400,target,103,41.2,velocity,lower_ux,1.0935932397842407 +karman_re400,target,103,41.2,velocity,lower_uy,-0.397736132144928 +karman_re400,target,104,41.6,velocity,upper_ux,1.15477454662323 +karman_re400,target,104,41.6,velocity,upper_uy,-0.41667380928993225 +karman_re400,target,104,41.6,velocity,center_ux,1.195888876914978 +karman_re400,target,104,41.6,velocity,center_uy,-0.8908730149269104 +karman_re400,target,104,41.6,velocity,lower_ux,0.9429596066474915 +karman_re400,target,104,41.6,velocity,lower_uy,-0.4371250569820404 +karman_re400,target,105,42.0,velocity,upper_ux,1.2926751375198364 +karman_re400,target,105,42.0,velocity,upper_uy,-0.36482933163642883 +karman_re400,target,105,42.0,velocity,center_ux,1.240077018737793 +karman_re400,target,105,42.0,velocity,center_uy,-0.9292551279067993 +karman_re400,target,105,42.0,velocity,lower_ux,0.7766540050506592 +karman_re400,target,105,42.0,velocity,lower_uy,-0.4089934527873993 +karman_re400,target,106,42.4,velocity,upper_ux,1.3979175090789795 +karman_re400,target,106,42.4,velocity,upper_uy,-0.23678945004940033 +karman_re400,target,106,42.4,velocity,center_ux,1.3090827465057373 +karman_re400,target,106,42.4,velocity,center_uy,-0.7070234417915344 +karman_re400,target,106,42.4,velocity,lower_ux,0.6196539998054504 +karman_re400,target,106,42.4,velocity,lower_uy,-0.270874947309494 +karman_re400,target,107,42.8,velocity,upper_ux,1.4345922470092773 +karman_re400,target,107,42.8,velocity,upper_uy,-0.0470680296421051 +karman_re400,target,107,42.8,velocity,center_ux,1.3392983675003052 +karman_re400,target,107,42.8,velocity,center_uy,-0.04285410791635513 +karman_re400,target,107,42.8,velocity,lower_ux,0.545921802520752 +karman_re400,target,107,42.8,velocity,lower_uy,-0.018050823360681534 +karman_re400,target,108,43.2,velocity,upper_ux,1.3856947422027588 +karman_re400,target,108,43.2,velocity,upper_uy,0.1492813229560852 +karman_re400,target,108,43.2,velocity,center_ux,1.302067756652832 +karman_re400,target,108,43.2,velocity,center_uy,0.6359846591949463 +karman_re400,target,108,43.2,velocity,lower_ux,0.6139523386955261 +karman_re400,target,108,43.2,velocity,lower_uy,0.2409299910068512 +karman_re400,target,109,43.6,velocity,upper_ux,1.2772468328475952 +karman_re400,target,109,43.6,velocity,upper_uy,0.2927503287792206 +karman_re400,target,109,43.6,velocity,center_ux,1.2283506393432617 +karman_re400,target,109,43.6,velocity,center_uy,0.8924679756164551 +karman_re400,target,109,43.6,velocity,lower_ux,0.7756328582763672 +karman_re400,target,109,43.6,velocity,lower_uy,0.3904950022697449 +karman_re400,target,110,44.0,velocity,upper_ux,1.143125295639038 +karman_re400,target,110,44.0,velocity,upper_uy,0.3753386437892914 +karman_re400,target,110,44.0,velocity,center_ux,1.173465371131897 +karman_re400,target,110,44.0,velocity,center_uy,0.8708664774894714 +karman_re400,target,110,44.0,velocity,lower_ux,0.9495444297790527 +karman_re400,target,110,44.0,velocity,lower_uy,0.4310908913612366 +karman_re400,target,111,44.4,velocity,upper_ux,0.9985975027084351 +karman_re400,target,111,44.4,velocity,upper_uy,0.4211975038051605 +karman_re400,target,111,44.4,velocity,center_ux,1.1575279235839844 +karman_re400,target,111,44.4,velocity,center_uy,0.8722959160804749 +karman_re400,target,111,44.4,velocity,lower_ux,1.1099337339401245 +karman_re400,target,111,44.4,velocity,lower_uy,0.4255009591579437 +karman_re400,target,112,44.8,velocity,upper_ux,0.8408558368682861 +karman_re400,target,112,44.8,velocity,upper_uy,0.41719305515289307 +karman_re400,target,112,44.8,velocity,center_ux,1.1728326082229614 +karman_re400,target,112,44.8,velocity,center_uy,0.9293107390403748 +karman_re400,target,112,44.8,velocity,lower_ux,1.2543387413024902 +karman_re400,target,112,44.8,velocity,lower_uy,0.39980992674827576 +karman_re400,target,113,45.2,velocity,upper_ux,0.6829022169113159 +karman_re400,target,113,45.2,velocity,upper_uy,0.3238363265991211 +karman_re400,target,113,45.2,velocity,center_ux,1.213457703590393 +karman_re400,target,113,45.2,velocity,center_uy,0.8480128645896912 +karman_re400,target,113,45.2,velocity,lower_ux,1.3755744695663452 +karman_re400,target,113,45.2,velocity,lower_uy,0.2965324819087982 +karman_re400,target,114,45.6,velocity,upper_ux,0.5806944370269775 +karman_re400,target,114,45.6,velocity,upper_uy,0.11960203945636749 +karman_re400,target,114,45.6,velocity,center_ux,1.2503489255905151 +karman_re400,target,114,45.6,velocity,center_uy,0.3193068206310272 +karman_re400,target,114,45.6,velocity,lower_ux,1.4483389854431152 +karman_re400,target,114,45.6,velocity,lower_uy,0.11594298481941223 +karman_re400,target,115,46.0,velocity,upper_ux,0.5988436341285706 +karman_re400,target,115,46.0,velocity,upper_uy,-0.13678184151649475 +karman_re400,target,115,46.0,velocity,center_ux,1.2468631267547607 +karman_re400,target,115,46.0,velocity,center_uy,-0.4376162588596344 +karman_re400,target,115,46.0,velocity,lower_ux,1.429466962814331 +karman_re400,target,115,46.0,velocity,lower_uy,-0.10202503204345703 +karman_re400,target,116,46.4,velocity,upper_ux,0.7289747595787048 +karman_re400,target,116,46.4,velocity,upper_uy,-0.32376429438591003 +karman_re400,target,116,46.4,velocity,center_ux,1.2068058252334595 +karman_re400,target,116,46.4,velocity,center_uy,-0.8739138245582581 +karman_re400,target,116,46.4,velocity,lower_ux,1.3295444250106812 +karman_re400,target,116,46.4,velocity,lower_uy,-0.27912402153015137 +karman_re400,target,117,46.8,velocity,upper_ux,0.8977659344673157 +karman_re400,target,117,46.8,velocity,upper_uy,-0.3997898995876312 +karman_re400,target,117,46.8,velocity,center_ux,1.1687992811203003 +karman_re400,target,117,46.8,velocity,center_uy,-0.9125992059707642 +karman_re400,target,117,46.8,velocity,lower_ux,1.1910412311553955 +karman_re400,target,117,46.8,velocity,lower_uy,-0.38626837730407715 +karman_re400,target,118,47.2,velocity,upper_ux,1.0590999126434326 +karman_re400,target,118,47.2,velocity,upper_uy,-0.4034089148044586 +karman_re400,target,118,47.2,velocity,center_ux,1.1608409881591797 +karman_re400,target,118,47.2,velocity,center_uy,-0.8896110653877258 +karman_re400,target,118,47.2,velocity,lower_ux,1.0377802848815918 +karman_re400,target,118,47.2,velocity,lower_uy,-0.4447087049484253 +karman_re400,target,119,47.6,velocity,upper_ux,1.2075291872024536 +karman_re400,target,119,47.6,velocity,upper_uy,-0.38650935888290405 +karman_re400,target,119,47.6,velocity,center_ux,1.192613959312439 +karman_re400,target,119,47.6,velocity,center_uy,-0.9327133297920227 +karman_re400,target,119,47.6,velocity,lower_ux,0.8731174468994141 +karman_re400,target,119,47.6,velocity,lower_uy,-0.4575352966785431 +karman_re400,target,120,48.0,velocity,upper_ux,1.3343939781188965 +karman_re400,target,120,48.0,velocity,upper_uy,-0.2990712821483612 +karman_re400,target,120,48.0,velocity,center_ux,1.2658878564834595 +karman_re400,target,120,48.0,velocity,center_uy,-0.8877742290496826 +karman_re400,target,120,48.0,velocity,lower_ux,0.7024481892585754 +karman_re400,target,120,48.0,velocity,lower_uy,-0.3817652761936188 +karman_re400,target,121,48.4,velocity,upper_ux,1.4142661094665527 +karman_re400,target,121,48.4,velocity,upper_uy,-0.13668981194496155 +karman_re400,target,121,48.4,velocity,center_ux,1.33806574344635 +karman_re400,target,121,48.4,velocity,center_uy,-0.4274677634239197 +karman_re400,target,121,48.4,velocity,lower_ux,0.572015643119812 +karman_re400,target,121,48.4,velocity,lower_uy,-0.1783190369606018 +karman_re400,target,122,48.8,velocity,upper_ux,1.4091284275054932 +karman_re400,target,122,48.8,velocity,upper_uy,0.06839458644390106 +karman_re400,target,122,48.8,velocity,center_ux,1.3483935594558716 +karman_re400,target,122,48.8,velocity,center_uy,0.32890063524246216 +karman_re400,target,122,48.8,velocity,lower_ux,0.56666499376297 +karman_re400,target,122,48.8,velocity,lower_uy,0.10667265206575394 +karman_re400,target,123,49.2,velocity,upper_ux,1.3232061862945557 +karman_re400,target,123,49.2,velocity,upper_uy,0.24453145265579224 +karman_re400,target,123,49.2,velocity,center_ux,1.289578914642334 +karman_re400,target,123,49.2,velocity,center_uy,0.824383020401001 +karman_re400,target,123,49.2,velocity,lower_ux,0.6937814354896545 +karman_re400,target,123,49.2,velocity,lower_uy,0.32791030406951904 +karman_re400,target,124,49.6,velocity,upper_ux,1.1940233707427979 +karman_re400,target,124,49.6,velocity,upper_uy,0.357820600271225 +karman_re400,target,124,49.6,velocity,center_ux,1.218754529953003 +karman_re400,target,124,49.6,velocity,center_uy,0.8985081315040588 +karman_re400,target,124,49.6,velocity,lower_ux,0.8701709508895874 +karman_re400,target,124,49.6,velocity,lower_uy,0.4181780517101288 +karman_re400,target,125,50.0,velocity,upper_ux,1.0510700941085815 +karman_re400,target,125,50.0,velocity,upper_uy,0.42474186420440674 +karman_re400,target,125,50.0,velocity,center_ux,1.1921398639678955 +karman_re400,target,125,50.0,velocity,center_uy,0.8738986849784851 +karman_re400,target,125,50.0,velocity,lower_ux,1.040901780128479 +karman_re400,target,125,50.0,velocity,lower_uy,0.42009857296943665 +karman_re400,target,126,50.4,velocity,upper_ux,0.8921855092048645 +karman_re400,target,126,50.4,velocity,upper_uy,0.4489072859287262 +karman_re400,target,126,50.4,velocity,center_ux,1.2141541242599487 +karman_re400,target,126,50.4,velocity,center_uy,0.914198637008667 +karman_re400,target,126,50.4,velocity,lower_ux,1.1946965456008911 +karman_re400,target,126,50.4,velocity,lower_uy,0.4004555940628052 +karman_re400,target,127,50.8,velocity,upper_ux,0.7193576097488403 +karman_re400,target,127,50.8,velocity,upper_uy,0.3894501030445099 +karman_re400,target,127,50.8,velocity,center_ux,1.2815426588058472 +karman_re400,target,127,50.8,velocity,center_uy,0.9033297896385193 +karman_re400,target,127,50.8,velocity,lower_ux,1.3231005668640137 +karman_re400,target,127,50.8,velocity,lower_uy,0.32373833656311035 +karman_re400,target,128,51.2,velocity,upper_ux,0.5760449767112732 +karman_re400,target,128,51.2,velocity,upper_uy,0.20371268689632416 +karman_re400,target,128,51.2,velocity,center_ux,1.356716275215149 +karman_re400,target,128,51.2,velocity,center_uy,0.5212080478668213 +karman_re400,target,128,51.2,velocity,lower_ux,1.4100629091262817 +karman_re400,target,128,51.2,velocity,lower_uy,0.17475242912769318 +karman_re400,target,129,51.6,velocity,upper_ux,0.5471054911613464 +karman_re400,target,129,51.6,velocity,upper_uy,-0.0783899798989296 +karman_re400,target,129,51.6,velocity,center_ux,1.3679803609848022 +karman_re400,target,129,51.6,velocity,center_uy,-0.2142942100763321 +karman_re400,target,129,51.6,velocity,lower_ux,1.4170787334442139 +karman_re400,target,129,51.6,velocity,lower_uy,-0.021848203614354134 +karman_re400,target,130,52.0,velocity,upper_ux,0.6586447358131409 +karman_re400,target,130,52.0,velocity,upper_uy,-0.315042644739151 +karman_re400,target,130,52.0,velocity,center_ux,1.3042902946472168 +karman_re400,target,130,52.0,velocity,center_uy,-0.7683207988739014 +karman_re400,target,130,52.0,velocity,lower_ux,1.3440697193145752 +karman_re400,target,130,52.0,velocity,lower_uy,-0.2007637619972229 +karman_re400,target,131,52.4,velocity,upper_ux,0.83549964427948 +karman_re400,target,131,52.4,velocity,upper_uy,-0.42328697443008423 +karman_re400,target,131,52.4,velocity,center_ux,1.222127079963684 +karman_re400,target,131,52.4,velocity,center_uy,-0.8882781863212585 +karman_re400,target,131,52.4,velocity,lower_ux,1.2266793251037598 +karman_re400,target,131,52.4,velocity,lower_uy,-0.32027164101600647 +karman_re400,target,132,52.8,velocity,upper_ux,1.0076053142547607 +karman_re400,target,132,52.8,velocity,upper_uy,-0.43631935119628906 +karman_re400,target,132,52.8,velocity,center_ux,1.1742310523986816 +karman_re400,target,132,52.8,velocity,center_uy,-0.8548047542572021 +karman_re400,target,132,52.8,velocity,lower_ux,1.091365098953247 +karman_re400,target,132,52.8,velocity,lower_uy,-0.3884964883327484 +karman_re400,target,133,53.2,velocity,upper_ux,1.16361403465271 +karman_re400,target,133,53.2,velocity,upper_uy,-0.42660751938819885 +karman_re400,target,133,53.2,velocity,center_ux,1.16702401638031 +karman_re400,target,133,53.2,velocity,center_uy,-0.886056125164032 +karman_re400,target,133,53.2,velocity,lower_ux,0.9440291523933411 +karman_re400,target,133,53.2,velocity,lower_uy,-0.4227808117866516 +karman_re400,target,134,53.6,velocity,upper_ux,1.301883339881897 +karman_re400,target,134,53.6,velocity,upper_uy,-0.3765367269515991 +karman_re400,target,134,53.6,velocity,center_ux,1.191831111907959 +karman_re400,target,134,53.6,velocity,center_uy,-0.9320068955421448 +karman_re400,target,134,53.6,velocity,lower_ux,0.7846485376358032 +karman_re400,target,134,53.6,velocity,lower_uy,-0.3928157389163971 +karman_re400,target,135,54.0,velocity,upper_ux,1.4104487895965576 +karman_re400,target,135,54.0,velocity,upper_uy,-0.24687978625297546 +karman_re400,target,135,54.0,velocity,center_ux,1.2339637279510498 +karman_re400,target,135,54.0,velocity,center_uy,-0.7227117419242859 +karman_re400,target,135,54.0,velocity,lower_ux,0.6361257433891296 +karman_re400,target,135,54.0,velocity,lower_uy,-0.26245182752609253 +karman_re400,target,136,54.4,velocity,upper_ux,1.454207181930542 +karman_re400,target,136,54.4,velocity,upper_uy,-0.0469074472784996 +karman_re400,target,136,54.4,velocity,center_ux,1.2566156387329102 +karman_re400,target,136,54.4,velocity,center_uy,-0.062023475766181946 +karman_re400,target,136,54.4,velocity,lower_ux,0.5687012672424316 +karman_re400,target,136,54.4,velocity,lower_uy,-0.029077420011162758 +karman_re400,target,137,54.8,velocity,upper_ux,1.4053362607955933 +karman_re400,target,137,54.8,velocity,upper_uy,0.163366436958313 +karman_re400,target,137,54.8,velocity,center_ux,1.2356038093566895 +karman_re400,target,137,54.8,velocity,center_uy,0.6360142230987549 +karman_re400,target,137,54.8,velocity,lower_ux,0.630845308303833 +karman_re400,target,137,54.8,velocity,lower_uy,0.21474184095859528 +karman_re400,target,138,55.2,velocity,upper_ux,1.2889469861984253 +karman_re400,target,138,55.2,velocity,upper_uy,0.31634852290153503 +karman_re400,target,138,55.2,velocity,center_ux,1.1888333559036255 +karman_re400,target,138,55.2,velocity,center_uy,0.9124504923820496 +karman_re400,target,138,55.2,velocity,lower_ux,0.7818138003349304 +karman_re400,target,138,55.2,velocity,lower_uy,0.3629262447357178 +karman_re400,target,139,55.6,velocity,upper_ux,1.146277904510498 +karman_re400,target,139,55.6,velocity,upper_uy,0.4026722311973572 +karman_re400,target,139,55.6,velocity,center_ux,1.1571803092956543 +karman_re400,target,139,55.6,velocity,center_uy,0.894095778465271 +karman_re400,target,139,55.6,velocity,lower_ux,0.9506054520606995 +karman_re400,target,139,55.6,velocity,lower_uy,0.40846118330955505 +karman_re400,target,140,56.0,velocity,upper_ux,0.9918739795684814 +karman_re400,target,140,56.0,velocity,upper_uy,0.44832488894462585 +karman_re400,target,140,56.0,velocity,center_ux,1.1575729846954346 +karman_re400,target,140,56.0,velocity,center_uy,0.8937922120094299 +karman_re400,target,140,56.0,velocity,lower_ux,1.1079280376434326 +karman_re400,target,140,56.0,velocity,lower_uy,0.40578311681747437 +karman_re400,target,141,56.4,velocity,upper_ux,0.8256141543388367 +karman_re400,target,141,56.4,velocity,upper_uy,0.43959319591522217 +karman_re400,target,141,56.4,velocity,center_ux,1.1938788890838623 +karman_re400,target,141,56.4,velocity,center_uy,0.9418871402740479 +karman_re400,target,141,56.4,velocity,lower_ux,1.2502508163452148 +karman_re400,target,141,56.4,velocity,lower_uy,0.3754706084728241 +karman_re400,target,142,56.8,velocity,upper_ux,0.6629839539527893 +karman_re400,target,142,56.8,velocity,upper_uy,0.3324337303638458 +karman_re400,target,142,56.8,velocity,center_ux,1.2639533281326294 +karman_re400,target,142,56.8,velocity,center_uy,0.8154361844062805 +karman_re400,target,142,56.8,velocity,lower_ux,1.3693486452102661 +karman_re400,target,142,56.8,velocity,lower_uy,0.2653884291648865 +karman_re400,target,143,57.2,velocity,upper_ux,0.5627837181091309 +karman_re400,target,143,57.2,velocity,upper_uy,0.10263027250766754 +karman_re400,target,143,57.2,velocity,center_ux,1.3174306154251099 +karman_re400,target,143,57.2,velocity,center_uy,0.23105204105377197 +karman_re400,target,143,57.2,velocity,lower_ux,1.4302297830581665 +karman_re400,target,143,57.2,velocity,lower_uy,0.08234459906816483 +karman_re400,target,144,57.6,velocity,upper_ux,0.5970560312271118 +karman_re400,target,144,57.6,velocity,upper_uy,-0.17139585316181183 +karman_re400,target,144,57.6,velocity,center_ux,1.3094340562820435 +karman_re400,target,144,57.6,velocity,center_uy,-0.5118533372879028 +karman_re400,target,144,57.6,velocity,lower_ux,1.4001588821411133 +karman_re400,target,144,57.6,velocity,lower_uy,-0.12619934976100922 +karman_re400,target,145,58.0,velocity,upper_ux,0.7439274787902832 +karman_re400,target,145,58.0,velocity,upper_uy,-0.3544445037841797 +karman_re400,target,145,58.0,velocity,center_ux,1.2505215406417847 +karman_re400,target,145,58.0,velocity,center_uy,-0.8842208385467529 +karman_re400,target,145,58.0,velocity,lower_ux,1.2968552112579346 +karman_re400,target,145,58.0,velocity,lower_uy,-0.28934523463249207 +karman_re400,target,146,58.4,velocity,upper_ux,0.918357253074646 +karman_re400,target,146,58.4,velocity,upper_uy,-0.41601240634918213 +karman_re400,target,146,58.4,velocity,center_ux,1.1970158815383911 +karman_re400,target,146,58.4,velocity,center_uy,-0.8974671363830566 +karman_re400,target,146,58.4,velocity,lower_ux,1.1587404012680054 +karman_re400,target,146,58.4,velocity,lower_uy,-0.3884193003177643 +karman_re400,target,147,58.8,velocity,upper_ux,1.0830357074737549 +karman_re400,target,147,58.8,velocity,upper_uy,-0.40907952189445496 +karman_re400,target,147,58.8,velocity,center_ux,1.1896525621414185 +karman_re400,target,147,58.8,velocity,center_uy,-0.8872836828231812 +karman_re400,target,147,58.8,velocity,lower_ux,1.0085747241973877 +karman_re400,target,147,58.8,velocity,lower_uy,-0.44559285044670105 +karman_re400,target,148,59.2,velocity,upper_ux,1.2311421632766724 +karman_re400,target,148,59.2,velocity,upper_uy,-0.3809264004230499 +karman_re400,target,148,59.2,velocity,center_ux,1.230679988861084 +karman_re400,target,148,59.2,velocity,center_uy,-0.9315364360809326 +karman_re400,target,148,59.2,velocity,lower_ux,0.842663586139679 +karman_re400,target,148,59.2,velocity,lower_uy,-0.45003968477249146 +karman_re400,target,149,59.6,velocity,upper_ux,1.3496882915496826 +karman_re400,target,149,59.6,velocity,upper_uy,-0.2808151841163635 +karman_re400,target,149,59.6,velocity,center_ux,1.3133151531219482 +karman_re400,target,149,59.6,velocity,center_uy,-0.8401488661766052 +karman_re400,target,149,59.6,velocity,lower_ux,0.6690121293067932 +karman_re400,target,149,59.6,velocity,lower_uy,-0.3553202450275421 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_wide.csv new file mode 100644 index 0000000..0d73587 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re400,target,0,0.0,0.6759957671165466,-0.2804977297782898,1.2546173334121704,-0.7867355346679688,1.3564776182174683,-0.2320844680070877 +karman_re400,target,1,0.4,0.8439235687255859,-0.3917198181152344,1.2022228240966797,-0.9206370711326599,1.2265913486480713,-0.36014309525489807 +karman_re400,target,2,0.8,1.0110604763031006,-0.40778496861457825,1.1789555549621582,-0.8898890614509583,1.0768324136734009,-0.4333973824977875 +karman_re400,target,3,1.2,1.1670721769332886,-0.39306071400642395,1.204554796218872,-0.9180779457092285,0.9162781238555908,-0.46505916118621826 +karman_re400,target,4,1.6,1.299797773361206,-0.32668536901474,1.2776014804840088,-0.9198753833770752,0.7405176758766174,-0.41756606101989746 +karman_re400,target,5,2.0,1.3925868272781372,-0.18490344285964966,1.3665908575057983,-0.582201361656189,0.5860196948051453,-0.24217890202999115 +karman_re400,target,6,2.4,1.410436749458313,0.008657436817884445,1.395798921585083,0.14188410341739655,0.5429064035415649,0.04541527107357979 +karman_re400,target,7,2.8,1.342433214187622,0.1908980756998062,1.3358795642852783,0.7336434125900269,0.644497275352478,0.3012709617614746 +karman_re400,target,8,3.2,1.2265512943267822,0.31591764092445374,1.2462494373321533,0.8855239748954773,0.8213841319084167,0.42216190695762634 +karman_re400,target,9,3.6,1.09336519241333,0.389917254447937,1.1945350170135498,0.8569599390029907,0.9983283877372742,0.43787339329719543 +karman_re400,target,10,4.0,0.944974422454834,0.42891034483909607,1.1898425817489624,0.8849895000457764,1.156524896621704,0.42266586422920227 +karman_re400,target,11,4.4,0.7822096943855286,0.40229883790016174,1.226232647895813,0.9289051294326782,1.2953797578811646,0.3725454807281494 +karman_re400,target,12,4.8,0.6272486448287964,0.2699614465236664,1.285469651222229,0.7228603363037109,1.4023773670196533,0.24571676552295685 +karman_re400,target,13,5.2,0.5514166355133057,0.02659541368484497,1.3118815422058105,0.06945740431547165,1.442122459411621,0.05465413257479668 +karman_re400,target,14,5.6,0.6146788597106934,-0.22774231433868408,1.2808293104171753,-0.6217904090881348,1.3964428901672363,-0.14624612033367157 +karman_re400,target,15,6.0,0.7710597515106201,-0.3797728717327118,1.2150362730026245,-0.8967100381851196,1.28700590133667,-0.2942095994949341 +karman_re400,target,16,6.4,0.9430062174797058,-0.4248369634151459,1.165527105331421,-0.8780724406242371,1.151014804840088,-0.37885695695877075 +karman_re400,target,17,6.8,1.103590488433838,-0.4215990900993347,1.1524169445037842,-0.874966561794281,1.0056369304656982,-0.4250894784927368 +karman_re400,target,18,7.2,1.2470858097076416,-0.3985174298286438,1.1677353382110596,-0.9309284090995789,0.8460120558738708,-0.42290329933166504 +karman_re400,target,19,7.6,1.3700966835021973,-0.29777753353118896,1.210767149925232,-0.8573583364486694,0.6877116560935974,-0.3323728144168854 +karman_re400,target,20,8.0,1.4455921649932861,-0.1186864972114563,1.25149405002594,-0.33927860856056213,0.5828768014907837,-0.1299210786819458 +karman_re400,target,21,8.4,1.4287559986114502,0.09969885647296906,1.2510708570480347,0.42091333866119385,0.5969905257225037,0.12850555777549744 +karman_re400,target,22,8.8,1.3302507400512695,0.2786392569541931,1.2125736474990845,0.8703176379203796,0.7258382439613342,0.31971409916877747 +karman_re400,target,23,9.2,1.1914178133010864,0.3878282904624939,1.173988699913025,0.9154157042503357,0.8948876261711121,0.39821144938468933 +karman_re400,target,24,9.6,1.0368958711624146,0.448027640581131,1.1662293672561646,0.8922778367996216,1.0561935901641846,0.4017505943775177 +karman_re400,target,25,10.0,0.8719419240951538,0.46157306432724,1.2025758028030396,0.9333813190460205,1.2060867547988892,0.3834552466869354 +karman_re400,target,26,10.4,0.6985391974449158,0.3845045864582062,1.2814936637878418,0.8828880190849304,1.3317770957946777,0.2953755557537079 +karman_re400,target,27,10.8,0.5666641592979431,0.17592500150203705,1.3579761981964111,0.41588079929351807,1.4097195863723755,0.13378658890724182 +karman_re400,target,28,11.2,0.5638181567192078,-0.11471537500619888,1.3670190572738647,-0.33778777718544006,1.4037106037139893,-0.06841806322336197 +karman_re400,target,29,11.6,0.6933026313781738,-0.3369314670562744,1.300547480583191,-0.8223068118095398,1.3170732259750366,-0.24135787785053253 +karman_re400,target,30,12.0,0.8720967769622803,-0.4248185455799103,1.2242430448532104,-0.8912291526794434,1.190119981765747,-0.3525826334953308 +karman_re400,target,31,12.4,1.0440093278884888,-0.4248485565185547,1.1943919658660889,-0.868113100528717,1.0497033596038818,-0.4188695251941681 +karman_re400,target,32,12.8,1.1974784135818481,-0.40484675765037537,1.2122740745544434,-0.9105373620986938,0.8922203779220581,-0.4429470896720886 +karman_re400,target,33,13.2,1.3263229131698608,-0.32859867811203003,1.2747900485992432,-0.904662013053894,0.7214207649230957,-0.3846692144870758 +karman_re400,target,34,13.6,1.414304494857788,-0.17993006110191345,1.3452410697937012,-0.531135618686676,0.5789161920547485,-0.20286022126674652 +karman_re400,target,35,14.0,1.421991229057312,0.017410600557923317,1.3546209335327148,0.2021450400352478,0.5474291443824768,0.07399287074804306 +karman_re400,target,36,14.4,1.3508905172348022,0.1982773244380951,1.2948590517044067,0.764809787273407,0.6567941904067993,0.3090451955795288 +karman_re400,target,37,14.8,1.2330411672592163,0.3193598985671997,1.2156122922897339,0.8914694786071777,0.8313724994659424,0.41931647062301636 +karman_re400,target,38,15.2,1.0972381830215454,0.3876687288284302,1.1685001850128174,0.856295645236969,1.0026495456695557,0.43485885858535767 +karman_re400,target,39,15.6,0.950680136680603,0.4223514199256897,1.1604925394058228,0.8847408294677734,1.158980369567871,0.42707592248916626 +karman_re400,target,40,16.0,0.7912697792053223,0.39483642578125,1.1812047958374023,0.9335182905197144,1.2970994710922241,0.38022804260253906 +karman_re400,target,41,16.4,0.6431796550750732,0.2691315710544586,1.2205044031143188,0.7399713397026062,1.4082266092300415,0.25298118591308594 +karman_re400,target,42,16.8,0.5733859539031982,0.04036400839686394,1.2445423603057861,0.09027238190174103,1.4565925598144531,0.05283293128013611 +karman_re400,target,43,17.2,0.6302049160003662,-0.20361599326133728,1.2273762226104736,-0.6190657019615173,1.4098944664001465,-0.16088396310806274 +karman_re400,target,44,17.6,0.7784083485603333,-0.3554348349571228,1.1854745149612427,-0.9134548306465149,1.293696641921997,-0.3178017735481262 +karman_re400,target,45,18.0,0.9467745423316956,-0.40417006611824036,1.157043218612671,-0.899753212928772,1.1498079299926758,-0.4067637622356415 +karman_re400,target,46,18.4,1.103342890739441,-0.4017786681652069,1.159396767616272,-0.8974241614341736,0.9929643869400024,-0.45370617508888245 +karman_re400,target,47,18.8,1.2468085289001465,-0.3714105486869812,1.2012945413589478,-0.9431811571121216,0.825866162776947,-0.4457643926143646 +karman_re400,target,48,19.2,1.3652290105819702,-0.2613905370235443,1.2778537273406982,-0.8127307295799255,0.6605703830718994,-0.33746078610420227 +karman_re400,target,49,19.6,1.424791693687439,-0.07961171865463257,1.3357608318328857,-0.22514235973358154,0.558637261390686,-0.10295837372541428 +karman_re400,target,50,20.0,1.394557237625122,0.12645460665225983,1.3270127773284912,0.5149126648902893,0.5946339964866638,0.17622676491737366 +karman_re400,target,51,20.4,1.2912565469741821,0.28747692704200745,1.2620505094528198,0.8810421228408813,0.7435382008552551,0.3605664074420929 +karman_re400,target,52,20.8,1.1545805931091309,0.3857853412628174,1.2040791511535645,0.8928035497665405,0.9196537137031555,0.4203753173351288 +karman_re400,target,53,21.2,1.0063396692276,0.44332218170166016,1.1957409381866455,0.8843333721160889,1.085852026939392,0.4115365147590637 +karman_re400,target,54,21.6,0.8403107523918152,0.4476405382156372,1.2359164953231812,0.9291759729385376,1.233458161354065,0.3821355402469635 +karman_re400,target,55,22.0,0.6665672063827515,0.35244765877723694,1.3185946941375732,0.8374083042144775,1.3513157367706299,0.28168901801109314 +karman_re400,target,56,22.4,0.5484538078308105,0.12320926785469055,1.385327935218811,0.3080616891384125,1.4173084497451782,0.1147940456867218 +karman_re400,target,57,22.8,0.5660812258720398,-0.16664493083953857,1.3701376914978027,-0.4302343726158142,1.396431565284729,-0.08178272098302841 +karman_re400,target,58,23.2,0.7101542949676514,-0.3674565553665161,1.2881519794464111,-0.8409940600395203,1.3061000108718872,-0.2423991560935974 +karman_re400,target,59,23.6,0.8915802836418152,-0.43898165225982666,1.2090777158737183,-0.8736935257911682,1.1827090978622437,-0.3425910174846649 +karman_re400,target,60,24.0,1.0591678619384766,-0.4356314539909363,1.172465205192566,-0.8530014157295227,1.045067548751831,-0.4007653295993805 +karman_re400,target,61,24.4,1.2108280658721924,-0.4211009740829468,1.1749200820922852,-0.9038413763046265,0.8942325115203857,-0.4198637306690216 +karman_re400,target,62,24.8,1.341557502746582,-0.34558865427970886,1.2076853513717651,-0.9116211533546448,0.7341122627258301,-0.3620513677597046 +karman_re400,target,63,25.2,1.4341938495635986,-0.19239358603954315,1.2464823722839355,-0.5565091967582703,0.6014890074729919,-0.19637912511825562 +karman_re400,target,64,25.6,1.449650764465332,0.01917422190308571,1.255000352859497,0.17937707901000977,0.5730667114257812,0.05365316569805145 +karman_re400,target,65,26.0,1.3756804466247559,0.21591299772262573,1.2208369970321655,0.77202969789505,0.6707785129547119,0.2743321657180786 +karman_re400,target,66,26.4,1.2480363845825195,0.34630364179611206,1.173936128616333,0.9185259938240051,0.8329810500144958,0.3875027894973755 +karman_re400,target,67,26.8,1.1028261184692383,0.41691434383392334,1.1509283781051636,0.8822878003120422,0.9998044371604919,0.4103543758392334 +karman_re400,target,68,27.2,0.9453763365745544,0.45015856623649597,1.158849835395813,0.9061474800109863,1.15237557888031,0.40569618344306946 +karman_re400,target,69,27.6,0.7785304188728333,0.4174288809299469,1.2023179531097412,0.940905749797821,1.2891478538513184,0.3546706736087799 +karman_re400,target,70,28.0,0.6274126768112183,0.2769288122653961,1.2695893049240112,0.6997926831245422,1.3979768753051758,0.22234171628952026 +karman_re400,target,71,28.4,0.5613665580749512,0.024983400478959084,1.3062635660171509,0.01349156629294157,1.4351643323898315,0.022407017648220062 +karman_re400,target,72,28.8,0.6332785487174988,-0.2313145250082016,1.2830995321273804,-0.6681205630302429,1.3806321620941162,-0.1812770962715149 +karman_re400,target,73,29.2,0.7942670583724976,-0.3773496150970459,1.224904179573059,-0.9127792119979858,1.2627840042114258,-0.32722947001457214 +karman_re400,target,74,29.6,0.9656051397323608,-0.41346439719200134,1.1859780550003052,-0.891492486000061,1.118300199508667,-0.4125397503376007 +karman_re400,target,75,30.0,1.1259617805480957,-0.4016290307044983,1.1955342292785645,-0.9015995264053345,0.9629905819892883,-0.45841166377067566 +karman_re400,target,76,30.4,1.2668812274932861,-0.3568933606147766,1.2533515691757202,-0.9355831146240234,0.7912339568138123,-0.43895384669303894 +karman_re400,target,77,30.8,1.3737890720367432,-0.23515728116035461,1.3432730436325073,-0.7322937250137329,0.6232830882072449,-0.3049544394016266 +karman_re400,target,78,31.2,1.416750431060791,-0.05232357978820801,1.3941717147827148,-0.0841682180762291,0.5390958786010742,-0.04106305539608002 +karman_re400,target,79,31.6,1.3714679479599,0.1401485800743103,1.3566187620162964,0.6041231155395508,0.6016870737075806,0.23914703726768494 +karman_re400,target,80,32.0,1.2658942937850952,0.28329524397850037,1.2670804262161255,0.8767951726913452,0.7662181258201599,0.40023064613342285 +karman_re400,target,81,32.4,1.13693106174469,0.3689941167831421,1.2006821632385254,0.8633928894996643,0.9468222260475159,0.440805584192276 +karman_re400,target,82,32.8,0.9940005540847778,0.41900452971458435,1.1810085773468018,0.8674719333648682,1.1098920106887817,0.4288053810596466 +karman_re400,target,83,33.2,0.8360927104949951,0.4171450734138489,1.201438069343567,0.9240070581436157,1.2556837797164917,0.39935585856437683 +karman_re400,target,84,33.6,0.6752446889877319,0.3228924870491028,1.2530319690704346,0.841050386428833,1.3757015466690063,0.295866996049881 +karman_re400,target,85,34.0,0.566277027130127,0.112763911485672,1.291648507118225,0.3140793442726135,1.4424360990524292,0.12074615806341171 +karman_re400,target,86,34.4,0.5849761962890625,-0.1497732549905777,1.280747652053833,-0.4337926506996155,1.4237911701202393,-0.088573157787323 +karman_re400,target,87,34.8,0.7191722393035889,-0.33874303102493286,1.2260351181030273,-0.8619669079780579,1.3290635347366333,-0.2595438063144684 +karman_re400,target,88,35.2,0.890149712562561,-0.4143022894859314,1.1726784706115723,-0.897951602935791,1.1963528394699097,-0.3635438084602356 +karman_re400,target,89,35.6,1.054417371749878,-0.4183182418346405,1.1523032188415527,-0.8712054491043091,1.0519014596939087,-0.42015281319618225 +karman_re400,target,90,36.0,1.2032787799835205,-0.4078148603439331,1.163204550743103,-0.9177080392837524,0.8945470452308655,-0.4370923340320587 +karman_re400,target,91,36.4,1.3330754041671753,-0.33129557967185974,1.2051973342895508,-0.9149727821350098,0.7307206988334656,-0.3760310113430023 +karman_re400,target,92,36.8,1.4274985790252686,-0.17497548460960388,1.2577600479125977,-0.5360320806503296,0.6006296277046204,-0.20323710143566132 +karman_re400,target,93,37.2,1.438307523727417,0.038424476981163025,1.273109793663025,0.2124859243631363,0.5752821564674377,0.05597400665283203 +karman_re400,target,94,37.6,1.359926462173462,0.23282736539840698,1.2398685216903687,0.7907794713973999,0.6788654327392578,0.28016749024391174 +karman_re400,target,95,38.0,1.2299548387527466,0.36065128445625305,1.1919916868209839,0.921557605266571,0.8457258343696594,0.38967186212539673 +karman_re400,target,96,38.4,1.0798496007919312,0.4325031042098999,1.1706422567367554,0.8895874619483948,1.0117466449737549,0.40656059980392456 +karman_re400,target,97,38.8,0.9189140200614929,0.4634781777858734,1.1936899423599243,0.9182223677635193,1.166171669960022,0.39418357610702515 +karman_re400,target,98,39.2,0.745400607585907,0.4171217381954193,1.2628288269042969,0.9244233965873718,1.3000682592391968,0.3292112648487091 +karman_re400,target,99,39.6,0.5921262502670288,0.24626055359840393,1.3482061624526978,0.5951436758041382,1.3949098587036133,0.18740713596343994 +karman_re400,target,100,40.0,0.5465573072433472,-0.03594598174095154,1.3788586854934692,-0.1288849413394928,1.4141557216644287,-0.008638176135718822 +karman_re400,target,101,40.4,0.6457473635673523,-0.2910991609096527,1.3267205953598022,-0.7324512600898743,1.3475010395050049,-0.19441406428813934 +karman_re400,target,102,40.8,0.8197776079177856,-0.4146023094654083,1.2424821853637695,-0.8929029703140259,1.229172945022583,-0.3221651315689087 +karman_re400,target,103,41.2,0.9961428046226501,-0.432293176651001,1.195111632347107,-0.864580512046814,1.0935932397842407,-0.397736132144928 +karman_re400,target,104,41.6,1.15477454662323,-0.41667380928993225,1.195888876914978,-0.8908730149269104,0.9429596066474915,-0.4371250569820404 +karman_re400,target,105,42.0,1.2926751375198364,-0.36482933163642883,1.240077018737793,-0.9292551279067993,0.7766540050506592,-0.4089934527873993 +karman_re400,target,106,42.4,1.3979175090789795,-0.23678945004940033,1.3090827465057373,-0.7070234417915344,0.6196539998054504,-0.270874947309494 +karman_re400,target,107,42.8,1.4345922470092773,-0.0470680296421051,1.3392983675003052,-0.04285410791635513,0.545921802520752,-0.018050823360681534 +karman_re400,target,108,43.2,1.3856947422027588,0.1492813229560852,1.302067756652832,0.6359846591949463,0.6139523386955261,0.2409299910068512 +karman_re400,target,109,43.6,1.2772468328475952,0.2927503287792206,1.2283506393432617,0.8924679756164551,0.7756328582763672,0.3904950022697449 +karman_re400,target,110,44.0,1.143125295639038,0.3753386437892914,1.173465371131897,0.8708664774894714,0.9495444297790527,0.4310908913612366 +karman_re400,target,111,44.4,0.9985975027084351,0.4211975038051605,1.1575279235839844,0.8722959160804749,1.1099337339401245,0.4255009591579437 +karman_re400,target,112,44.8,0.8408558368682861,0.41719305515289307,1.1728326082229614,0.9293107390403748,1.2543387413024902,0.39980992674827576 +karman_re400,target,113,45.2,0.6829022169113159,0.3238363265991211,1.213457703590393,0.8480128645896912,1.3755744695663452,0.2965324819087982 +karman_re400,target,114,45.6,0.5806944370269775,0.11960203945636749,1.2503489255905151,0.3193068206310272,1.4483389854431152,0.11594298481941223 +karman_re400,target,115,46.0,0.5988436341285706,-0.13678184151649475,1.2468631267547607,-0.4376162588596344,1.429466962814331,-0.10202503204345703 +karman_re400,target,116,46.4,0.7289747595787048,-0.32376429438591003,1.2068058252334595,-0.8739138245582581,1.3295444250106812,-0.27912402153015137 +karman_re400,target,117,46.8,0.8977659344673157,-0.3997898995876312,1.1687992811203003,-0.9125992059707642,1.1910412311553955,-0.38626837730407715 +karman_re400,target,118,47.2,1.0590999126434326,-0.4034089148044586,1.1608409881591797,-0.8896110653877258,1.0377802848815918,-0.4447087049484253 +karman_re400,target,119,47.6,1.2075291872024536,-0.38650935888290405,1.192613959312439,-0.9327133297920227,0.8731174468994141,-0.4575352966785431 +karman_re400,target,120,48.0,1.3343939781188965,-0.2990712821483612,1.2658878564834595,-0.8877742290496826,0.7024481892585754,-0.3817652761936188 +karman_re400,target,121,48.4,1.4142661094665527,-0.13668981194496155,1.33806574344635,-0.4274677634239197,0.572015643119812,-0.1783190369606018 +karman_re400,target,122,48.8,1.4091284275054932,0.06839458644390106,1.3483935594558716,0.32890063524246216,0.56666499376297,0.10667265206575394 +karman_re400,target,123,49.2,1.3232061862945557,0.24453145265579224,1.289578914642334,0.824383020401001,0.6937814354896545,0.32791030406951904 +karman_re400,target,124,49.6,1.1940233707427979,0.357820600271225,1.218754529953003,0.8985081315040588,0.8701709508895874,0.4181780517101288 +karman_re400,target,125,50.0,1.0510700941085815,0.42474186420440674,1.1921398639678955,0.8738986849784851,1.040901780128479,0.42009857296943665 +karman_re400,target,126,50.4,0.8921855092048645,0.4489072859287262,1.2141541242599487,0.914198637008667,1.1946965456008911,0.4004555940628052 +karman_re400,target,127,50.8,0.7193576097488403,0.3894501030445099,1.2815426588058472,0.9033297896385193,1.3231005668640137,0.32373833656311035 +karman_re400,target,128,51.2,0.5760449767112732,0.20371268689632416,1.356716275215149,0.5212080478668213,1.4100629091262817,0.17475242912769318 +karman_re400,target,129,51.6,0.5471054911613464,-0.0783899798989296,1.3679803609848022,-0.2142942100763321,1.4170787334442139,-0.021848203614354134 +karman_re400,target,130,52.0,0.6586447358131409,-0.315042644739151,1.3042902946472168,-0.7683207988739014,1.3440697193145752,-0.2007637619972229 +karman_re400,target,131,52.4,0.83549964427948,-0.42328697443008423,1.222127079963684,-0.8882781863212585,1.2266793251037598,-0.32027164101600647 +karman_re400,target,132,52.8,1.0076053142547607,-0.43631935119628906,1.1742310523986816,-0.8548047542572021,1.091365098953247,-0.3884964883327484 +karman_re400,target,133,53.2,1.16361403465271,-0.42660751938819885,1.16702401638031,-0.886056125164032,0.9440291523933411,-0.4227808117866516 +karman_re400,target,134,53.6,1.301883339881897,-0.3765367269515991,1.191831111907959,-0.9320068955421448,0.7846485376358032,-0.3928157389163971 +karman_re400,target,135,54.0,1.4104487895965576,-0.24687978625297546,1.2339637279510498,-0.7227117419242859,0.6361257433891296,-0.26245182752609253 +karman_re400,target,136,54.4,1.454207181930542,-0.0469074472784996,1.2566156387329102,-0.062023475766181946,0.5687012672424316,-0.029077420011162758 +karman_re400,target,137,54.8,1.4053362607955933,0.163366436958313,1.2356038093566895,0.6360142230987549,0.630845308303833,0.21474184095859528 +karman_re400,target,138,55.2,1.2889469861984253,0.31634852290153503,1.1888333559036255,0.9124504923820496,0.7818138003349304,0.3629262447357178 +karman_re400,target,139,55.6,1.146277904510498,0.4026722311973572,1.1571803092956543,0.894095778465271,0.9506054520606995,0.40846118330955505 +karman_re400,target,140,56.0,0.9918739795684814,0.44832488894462585,1.1575729846954346,0.8937922120094299,1.1079280376434326,0.40578311681747437 +karman_re400,target,141,56.4,0.8256141543388367,0.43959319591522217,1.1938788890838623,0.9418871402740479,1.2502508163452148,0.3754706084728241 +karman_re400,target,142,56.8,0.6629839539527893,0.3324337303638458,1.2639533281326294,0.8154361844062805,1.3693486452102661,0.2653884291648865 +karman_re400,target,143,57.2,0.5627837181091309,0.10263027250766754,1.3174306154251099,0.23105204105377197,1.4302297830581665,0.08234459906816483 +karman_re400,target,144,57.6,0.5970560312271118,-0.17139585316181183,1.3094340562820435,-0.5118533372879028,1.4001588821411133,-0.12619934976100922 +karman_re400,target,145,58.0,0.7439274787902832,-0.3544445037841797,1.2505215406417847,-0.8842208385467529,1.2968552112579346,-0.28934523463249207 +karman_re400,target,146,58.4,0.918357253074646,-0.41601240634918213,1.1970158815383911,-0.8974671363830566,1.1587404012680054,-0.3884193003177643 +karman_re400,target,147,58.8,1.0830357074737549,-0.40907952189445496,1.1896525621414185,-0.8872836828231812,1.0085747241973877,-0.44559285044670105 +karman_re400,target,148,59.2,1.2311421632766724,-0.3809264004230499,1.230679988861084,-0.9315364360809326,0.842663586139679,-0.45003968477249146 +karman_re400,target,149,59.6,1.3496882915496826,-0.2808151841163635,1.3133151531219482,-0.8401488661766052,0.6690121293067932,-0.3553202450275421 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_dtw_convergence.csv new file mode 100644 index 0000000..8599763 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_dtw_convergence.csv @@ -0,0 +1,14 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re50,ppo,60,24.0,30,0.9569736432888828,-1,0.9608811736106873,0.9691925079775198,0.9286367158095041,0.9477180246263742,0.9667566021283468,0.9686568355808656 +karman_re50,ppo,90,36.0,30,0.9621027244617127,7,0.9702567597230275,0.971225666658332,0.9498561322689056,0.9517460153748591,0.9550601144631704,0.9744716582819819 +karman_re50,ppo,120,48.0,30,0.9584849632105842,-7,0.9512150843938192,0.9649436833957831,0.9332315901915232,0.9600805796178368,0.9745468934377034,0.9668919482268393 +karman_re50,ppo,150,60.0,30,0.9547416113912024,0,0.9536916196346283,0.9582741307715575,0.9482612411181132,0.9464859704176585,0.9628837009270986,0.9588530054781585 +karman_re50,ppo,180,72.0,30,0.9563364712035157,7,0.9684183736642201,0.9668270274375875,0.9473010023434957,0.9445322949439288,0.9471718927224477,0.9637682361094145 +karman_re50,ppo,210,84.0,30,0.9552687791570659,-7,0.9465873996416728,0.9759393749758601,0.9304891427357992,0.943194390387119,0.9683632810910543,0.96703908611089 +karman_re50,ppo,240,96.0,30,0.9527002276089559,0,0.9512231409549713,0.954373075440526,0.9516987502574921,0.9391290985513479,0.9592759788036347,0.960501321645764 +karman_re50,ppo,270,108.0,30,0.9588358163523175,8,0.9666414697964986,0.9764229523018002,0.944510833422343,0.9468913985726733,0.9550122757752736,0.9635359682453175 +karman_re50,ppo,300,120.0,30,0.953532702669165,-6,0.9466809531052908,0.9659480506243805,0.9304208298524221,0.9513083392560172,0.9657329241434733,0.9611051190334062 +karman_re50,ppo,330,132.0,30,0.9549285026215429,1,0.9519698401292165,0.9714195726128916,0.9532642145951589,0.9406118659302592,0.9555402179559072,0.9567653045058251 +karman_re50,ppo,360,144.0,30,0.9570455009738604,9,0.9661584655443828,0.977491233125329,0.942619260152181,0.9389044389128685,0.9568121433258057,0.9602874647825956 +karman_re50,ppo,390,156.0,30,0.9543544692355984,-6,0.9442541639010111,0.9723325693514198,0.9309997995694479,0.9499393359331104,0.9659488737583161,0.9626520729002853 +karman_re50,ppo,400,160.0,30,0.9548555073975068,4,0.9642230868339539,0.9712836809611569,0.9510893980662029,0.9364747092748682,0.9438153803348541,0.962246788914005 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_long.csv new file mode 100644 index 0000000..abf444e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_long.csv @@ -0,0 +1,7201 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,ppo,0,0.0,velocity,upper_ux,1.001173973083496 +karman_re50,ppo,0,0.0,velocity,upper_uy,-0.1895672231912613 +karman_re50,ppo,0,0.0,velocity,center_ux,0.9739038348197937 +karman_re50,ppo,0,0.0,velocity,center_uy,-0.21724233031272888 +karman_re50,ppo,0,0.0,velocity,lower_ux,1.0297834873199463 +karman_re50,ppo,0,0.0,velocity,lower_uy,-0.2051960974931717 +karman_re50,ppo,1,0.4,velocity,upper_ux,1.020582914352417 +karman_re50,ppo,1,0.4,velocity,upper_uy,-0.2342972606420517 +karman_re50,ppo,1,0.4,velocity,center_ux,0.9765658378601074 +karman_re50,ppo,1,0.4,velocity,center_uy,-0.24598263204097748 +karman_re50,ppo,1,0.4,velocity,lower_ux,1.0232417583465576 +karman_re50,ppo,1,0.4,velocity,lower_uy,-0.2131483107805252 +karman_re50,ppo,2,0.8,velocity,upper_ux,1.0394343137741089 +karman_re50,ppo,2,0.8,velocity,upper_uy,-0.2755852937698364 +karman_re50,ppo,2,0.8,velocity,center_ux,0.9710416197776794 +karman_re50,ppo,2,0.8,velocity,center_uy,-0.26561325788497925 +karman_re50,ppo,2,0.8,velocity,lower_ux,1.0152636766433716 +karman_re50,ppo,2,0.8,velocity,lower_uy,-0.21205779910087585 +karman_re50,ppo,3,1.2,velocity,upper_ux,1.056976318359375 +karman_re50,ppo,3,1.2,velocity,upper_uy,-0.3005722761154175 +karman_re50,ppo,3,1.2,velocity,center_ux,0.9575707912445068 +karman_re50,ppo,3,1.2,velocity,center_uy,-0.26836663484573364 +karman_re50,ppo,3,1.2,velocity,lower_ux,1.0053431987762451 +karman_re50,ppo,3,1.2,velocity,lower_uy,-0.20019206404685974 +karman_re50,ppo,4,1.6,velocity,upper_ux,1.072085976600647 +karman_re50,ppo,4,1.6,velocity,upper_uy,-0.291523814201355 +karman_re50,ppo,4,1.6,velocity,center_ux,0.9392430186271667 +karman_re50,ppo,4,1.6,velocity,center_uy,-0.24407453835010529 +karman_re50,ppo,4,1.6,velocity,lower_ux,0.9936453104019165 +karman_re50,ppo,4,1.6,velocity,lower_uy,-0.17408886551856995 +karman_re50,ppo,5,2.0,velocity,upper_ux,1.0836901664733887 +karman_re50,ppo,5,2.0,velocity,upper_uy,-0.23904730379581451 +karman_re50,ppo,5,2.0,velocity,center_ux,0.9223105907440186 +karman_re50,ppo,5,2.0,velocity,center_uy,-0.18728210031986237 +karman_re50,ppo,5,2.0,velocity,lower_ux,0.9807918071746826 +karman_re50,ppo,5,2.0,velocity,lower_uy,-0.13106590509414673 +karman_re50,ppo,6,2.4,velocity,upper_ux,1.0893412828445435 +karman_re50,ppo,6,2.4,velocity,upper_uy,-0.152012437582016 +karman_re50,ppo,6,2.4,velocity,center_ux,0.9137764573097229 +karman_re50,ppo,6,2.4,velocity,center_uy,-0.10513264685869217 +karman_re50,ppo,6,2.4,velocity,lower_ux,0.9682021141052246 +karman_re50,ppo,6,2.4,velocity,lower_uy,-0.07331361621618271 +karman_re50,ppo,7,2.8,velocity,upper_ux,1.0848617553710938 +karman_re50,ppo,7,2.8,velocity,upper_uy,-0.04827055335044861 +karman_re50,ppo,7,2.8,velocity,center_ux,0.9174347519874573 +karman_re50,ppo,7,2.8,velocity,center_uy,-0.01560200471431017 +karman_re50,ppo,7,2.8,velocity,lower_ux,0.9591163396835327 +karman_re50,ppo,7,2.8,velocity,lower_uy,-0.009298550896346569 +karman_re50,ppo,8,3.2,velocity,upper_ux,1.0699472427368164 +karman_re50,ppo,8,3.2,velocity,upper_uy,0.05259305611252785 +karman_re50,ppo,8,3.2,velocity,center_ux,0.9309951663017273 +karman_re50,ppo,8,3.2,velocity,center_uy,0.06430814415216446 +karman_re50,ppo,8,3.2,velocity,lower_ux,0.9581449031829834 +karman_re50,ppo,8,3.2,velocity,lower_uy,0.05022289603948593 +karman_re50,ppo,9,3.6,velocity,upper_ux,1.050952434539795 +karman_re50,ppo,9,3.6,velocity,upper_uy,0.13158199191093445 +karman_re50,ppo,9,3.6,velocity,center_ux,0.9468386769294739 +karman_re50,ppo,9,3.6,velocity,center_uy,0.12898781895637512 +karman_re50,ppo,9,3.6,velocity,lower_ux,0.9665524959564209 +karman_re50,ppo,9,3.6,velocity,lower_uy,0.10075705498456955 +karman_re50,ppo,10,4.0,velocity,upper_ux,1.0355888605117798 +karman_re50,ppo,10,4.0,velocity,upper_uy,0.18014131486415863 +karman_re50,ppo,10,4.0,velocity,center_ux,0.9595507979393005 +karman_re50,ppo,10,4.0,velocity,center_uy,0.17966556549072266 +karman_re50,ppo,10,4.0,velocity,lower_ux,0.9816494584083557 +karman_re50,ppo,10,4.0,velocity,lower_uy,0.1457882821559906 +karman_re50,ppo,11,4.4,velocity,upper_ux,1.0257928371429443 +karman_re50,ppo,11,4.4,velocity,upper_uy,0.204081192612648 +karman_re50,ppo,11,4.4,velocity,center_ux,0.9678786993026733 +karman_re50,ppo,11,4.4,velocity,center_uy,0.21897099912166595 +karman_re50,ppo,11,4.4,velocity,lower_ux,1.0003042221069336 +karman_re50,ppo,11,4.4,velocity,lower_uy,0.19053985178470612 +karman_re50,ppo,12,4.8,velocity,upper_ux,1.0178004503250122 +karman_re50,ppo,12,4.8,velocity,upper_uy,0.21351692080497742 +karman_re50,ppo,12,4.8,velocity,center_ux,0.9698500037193298 +karman_re50,ppo,12,4.8,velocity,center_uy,0.250334233045578 +karman_re50,ppo,12,4.8,velocity,lower_ux,1.0199766159057617 +karman_re50,ppo,12,4.8,velocity,lower_uy,0.2369951456785202 +karman_re50,ppo,13,5.2,velocity,upper_ux,1.008047342300415 +karman_re50,ppo,13,5.2,velocity,upper_uy,0.21346057951450348 +karman_re50,ppo,13,5.2,velocity,center_ux,0.9631752967834473 +karman_re50,ppo,13,5.2,velocity,center_uy,0.2735763490200043 +karman_re50,ppo,13,5.2,velocity,lower_ux,1.039405345916748 +karman_re50,ppo,13,5.2,velocity,lower_uy,0.28117361664772034 +karman_re50,ppo,14,5.6,velocity,upper_ux,0.9958369731903076 +karman_re50,ppo,14,5.6,velocity,upper_uy,0.203531876206398 +karman_re50,ppo,14,5.6,velocity,center_ux,0.9479332566261292 +karman_re50,ppo,14,5.6,velocity,center_uy,0.2819352447986603 +karman_re50,ppo,14,5.6,velocity,lower_ux,1.0581547021865845 +karman_re50,ppo,14,5.6,velocity,lower_uy,0.3106742799282074 +karman_re50,ppo,15,6.0,velocity,upper_ux,0.9816306829452515 +karman_re50,ppo,15,6.0,velocity,upper_uy,0.1799732744693756 +karman_re50,ppo,15,6.0,velocity,center_ux,0.927107036113739 +karman_re50,ppo,15,6.0,velocity,center_uy,0.2636951208114624 +karman_re50,ppo,15,6.0,velocity,lower_ux,1.0751949548721313 +karman_re50,ppo,15,6.0,velocity,lower_uy,0.30562424659729004 +karman_re50,ppo,16,6.4,velocity,upper_ux,0.9666820764541626 +karman_re50,ppo,16,6.4,velocity,upper_uy,0.13947927951812744 +karman_re50,ppo,16,6.4,velocity,center_ux,0.9069569110870361 +karman_re50,ppo,16,6.4,velocity,center_uy,0.21098962426185608 +karman_re50,ppo,16,6.4,velocity,lower_ux,1.0895271301269531 +karman_re50,ppo,16,6.4,velocity,lower_uy,0.2536935806274414 +karman_re50,ppo,17,6.8,velocity,upper_ux,0.9526613354682922 +karman_re50,ppo,17,6.8,velocity,upper_uy,0.08214115351438522 +karman_re50,ppo,17,6.8,velocity,center_ux,0.8941766619682312 +karman_re50,ppo,17,6.8,velocity,center_uy,0.12731832265853882 +karman_re50,ppo,17,6.8,velocity,lower_ux,1.0994086265563965 +karman_re50,ppo,17,6.8,velocity,lower_uy,0.16081620752811432 +karman_re50,ppo,18,7.2,velocity,upper_ux,0.9427124261856079 +karman_re50,ppo,18,7.2,velocity,upper_uy,0.015061837621033192 +karman_re50,ppo,18,7.2,velocity,center_ux,0.8925998210906982 +karman_re50,ppo,18,7.2,velocity,center_uy,0.028104262426495552 +karman_re50,ppo,18,7.2,velocity,lower_ux,1.1028029918670654 +karman_re50,ppo,18,7.2,velocity,lower_uy,0.04502352327108383 +karman_re50,ppo,19,7.6,velocity,upper_ux,0.9417708516120911 +karman_re50,ppo,19,7.6,velocity,upper_uy,-0.0501730814576149 +karman_re50,ppo,19,7.6,velocity,center_ux,0.902223527431488 +karman_re50,ppo,19,7.6,velocity,center_uy,-0.06921589374542236 +karman_re50,ppo,19,7.6,velocity,lower_ux,1.101049780845642 +karman_re50,ppo,19,7.6,velocity,lower_uy,-0.07201005518436432 +karman_re50,ppo,20,8.0,velocity,upper_ux,0.9518799781799316 +karman_re50,ppo,20,8.0,velocity,upper_uy,-0.10580839961767197 +karman_re50,ppo,20,8.0,velocity,center_ux,0.9194073677062988 +karman_re50,ppo,20,8.0,velocity,center_uy,-0.15281541645526886 +karman_re50,ppo,20,8.0,velocity,lower_ux,1.0968207120895386 +karman_re50,ppo,20,8.0,velocity,lower_uy,-0.17009706795215607 +karman_re50,ppo,21,8.4,velocity,upper_ux,0.9703294634819031 +karman_re50,ppo,21,8.4,velocity,upper_uy,-0.15327823162078857 +karman_re50,ppo,21,8.4,velocity,center_ux,0.9401768445968628 +karman_re50,ppo,21,8.4,velocity,center_uy,-0.21581780910491943 +karman_re50,ppo,21,8.4,velocity,lower_ux,1.090551733970642 +karman_re50,ppo,21,8.4,velocity,lower_uy,-0.23759570717811584 +karman_re50,ppo,22,8.8,velocity,upper_ux,0.9931013584136963 +karman_re50,ppo,22,8.8,velocity,upper_uy,-0.198180690407753 +karman_re50,ppo,22,8.8,velocity,center_ux,0.9606409668922424 +karman_re50,ppo,22,8.8,velocity,center_uy,-0.2579503357410431 +karman_re50,ppo,22,8.8,velocity,lower_ux,1.0811877250671387 +karman_re50,ppo,22,8.8,velocity,lower_uy,-0.2722386121749878 +karman_re50,ppo,23,9.2,velocity,upper_ux,1.0169775485992432 +karman_re50,ppo,23,9.2,velocity,upper_uy,-0.24313674867153168 +karman_re50,ppo,23,9.2,velocity,center_ux,0.975084662437439 +karman_re50,ppo,23,9.2,velocity,center_uy,-0.2853472828865051 +karman_re50,ppo,23,9.2,velocity,lower_ux,1.0670415163040161 +karman_re50,ppo,23,9.2,velocity,lower_uy,-0.27739787101745605 +karman_re50,ppo,24,9.6,velocity,upper_ux,1.0399243831634521 +karman_re50,ppo,24,9.6,velocity,upper_uy,-0.2851424813270569 +karman_re50,ppo,24,9.6,velocity,center_ux,0.9788209795951843 +karman_re50,ppo,24,9.6,velocity,center_uy,-0.30079421401023865 +karman_re50,ppo,24,9.6,velocity,lower_ux,1.0470495223999023 +karman_re50,ppo,24,9.6,velocity,lower_uy,-0.25895872712135315 +karman_re50,ppo,25,10.0,velocity,upper_ux,1.0606149435043335 +karman_re50,ppo,25,10.0,velocity,upper_uy,-0.3124144375324249 +karman_re50,ppo,25,10.0,velocity,center_ux,0.9708602428436279 +karman_re50,ppo,25,10.0,velocity,center_uy,-0.29711657762527466 +karman_re50,ppo,25,10.0,velocity,lower_ux,1.022722601890564 +karman_re50,ppo,25,10.0,velocity,lower_uy,-0.22135210037231445 +karman_re50,ppo,26,10.4,velocity,upper_ux,1.0770106315612793 +karman_re50,ppo,26,10.4,velocity,upper_uy,-0.30611538887023926 +karman_re50,ppo,26,10.4,velocity,center_ux,0.9534340500831604 +karman_re50,ppo,26,10.4,velocity,center_uy,-0.26255717873573303 +karman_re50,ppo,26,10.4,velocity,lower_ux,0.997649073600769 +karman_re50,ppo,26,10.4,velocity,lower_uy,-0.16751804947853088 +karman_re50,ppo,27,10.8,velocity,upper_ux,1.0873514413833618 +karman_re50,ppo,27,10.8,velocity,upper_uy,-0.2528590261936188 +karman_re50,ppo,27,10.8,velocity,center_ux,0.9320144653320312 +karman_re50,ppo,27,10.8,velocity,center_uy,-0.1898934692144394 +karman_re50,ppo,27,10.8,velocity,lower_ux,0.9763022661209106 +karman_re50,ppo,27,10.8,velocity,lower_uy,-0.10049868375062943 +karman_re50,ppo,28,11.2,velocity,upper_ux,1.0901492834091187 +karman_re50,ppo,28,11.2,velocity,upper_uy,-0.15816189348697662 +karman_re50,ppo,28,11.2,velocity,center_ux,0.9134846329689026 +karman_re50,ppo,28,11.2,velocity,center_uy,-0.08446340262889862 +karman_re50,ppo,28,11.2,velocity,lower_ux,0.9623958468437195 +karman_re50,ppo,28,11.2,velocity,lower_uy,-0.027099940925836563 +karman_re50,ppo,29,11.6,velocity,upper_ux,1.0830577611923218 +karman_re50,ppo,29,11.6,velocity,upper_uy,-0.04045729711651802 +karman_re50,ppo,29,11.6,velocity,center_ux,0.9050333499908447 +karman_re50,ppo,29,11.6,velocity,center_uy,0.035131100565195084 +karman_re50,ppo,29,11.6,velocity,lower_ux,0.9585220813751221 +karman_re50,ppo,29,11.6,velocity,lower_uy,0.04196425899863243 +karman_re50,ppo,30,12.0,velocity,upper_ux,1.063002109527588 +karman_re50,ppo,30,12.0,velocity,upper_uy,0.08243842422962189 +karman_re50,ppo,30,12.0,velocity,center_ux,0.9136688113212585 +karman_re50,ppo,30,12.0,velocity,center_uy,0.14171387255191803 +karman_re50,ppo,30,12.0,velocity,lower_ux,0.9659638404846191 +karman_re50,ppo,30,12.0,velocity,lower_uy,0.09813670068979263 +karman_re50,ppo,31,12.4,velocity,upper_ux,1.029552936553955 +karman_re50,ppo,31,12.4,velocity,upper_uy,0.1949557065963745 +karman_re50,ppo,31,12.4,velocity,center_ux,0.9383258819580078 +karman_re50,ppo,31,12.4,velocity,center_uy,0.2158745974302292 +karman_re50,ppo,31,12.4,velocity,lower_ux,0.9825678467750549 +karman_re50,ppo,31,12.4,velocity,lower_uy,0.1420673429965973 +karman_re50,ppo,32,12.8,velocity,upper_ux,0.9936503767967224 +karman_re50,ppo,32,12.8,velocity,upper_uy,0.2740897536277771 +karman_re50,ppo,32,12.8,velocity,center_ux,0.9682753682136536 +karman_re50,ppo,32,12.8,velocity,center_uy,0.26005029678344727 +karman_re50,ppo,32,12.8,velocity,lower_ux,1.0041851997375488 +karman_re50,ppo,32,12.8,velocity,lower_uy,0.18117845058441162 +karman_re50,ppo,33,13.2,velocity,upper_ux,0.9691371321678162 +karman_re50,ppo,33,13.2,velocity,upper_uy,0.30432090163230896 +karman_re50,ppo,33,13.2,velocity,center_ux,0.9931244850158691 +karman_re50,ppo,33,13.2,velocity,center_uy,0.2876648008823395 +karman_re50,ppo,33,13.2,velocity,lower_ux,1.0279983282089233 +karman_re50,ppo,33,13.2,velocity,lower_uy,0.2207365483045578 +karman_re50,ppo,34,13.6,velocity,upper_ux,0.9557473063468933 +karman_re50,ppo,34,13.6,velocity,upper_uy,0.2947111427783966 +karman_re50,ppo,34,13.6,velocity,center_ux,1.0070511102676392 +karman_re50,ppo,34,13.6,velocity,center_uy,0.30693647265434265 +karman_re50,ppo,34,13.6,velocity,lower_ux,1.0520879030227661 +karman_re50,ppo,34,13.6,velocity,lower_uy,0.2613297402858734 +karman_re50,ppo,35,14.0,velocity,upper_ux,0.9449825286865234 +karman_re50,ppo,35,14.0,velocity,upper_uy,0.2612925171852112 +karman_re50,ppo,35,14.0,velocity,center_ux,1.008023977279663 +karman_re50,ppo,35,14.0,velocity,center_uy,0.3142569661140442 +karman_re50,ppo,35,14.0,velocity,lower_ux,1.074466586112976 +karman_re50,ppo,35,14.0,velocity,lower_uy,0.29760438203811646 +karman_re50,ppo,36,14.4,velocity,upper_ux,0.9327899217605591 +karman_re50,ppo,36,14.4,velocity,upper_uy,0.2127111554145813 +karman_re50,ppo,36,14.4,velocity,center_ux,0.9970656633377075 +karman_re50,ppo,36,14.4,velocity,center_uy,0.29809749126434326 +karman_re50,ppo,36,14.4,velocity,lower_ux,1.0926986932754517 +karman_re50,ppo,36,14.4,velocity,lower_uy,0.3164171874523163 +karman_re50,ppo,37,14.8,velocity,upper_ux,0.920493483543396 +karman_re50,ppo,37,14.8,velocity,upper_uy,0.15148696303367615 +karman_re50,ppo,37,14.8,velocity,center_ux,0.977346658706665 +karman_re50,ppo,37,14.8,velocity,center_uy,0.24637405574321747 +karman_re50,ppo,37,14.8,velocity,lower_ux,1.1032352447509766 +karman_re50,ppo,37,14.8,velocity,lower_uy,0.2985749840736389 +karman_re50,ppo,38,15.2,velocity,upper_ux,0.9110478758811951 +karman_re50,ppo,38,15.2,velocity,upper_uy,0.07907209545373917 +karman_re50,ppo,38,15.2,velocity,center_ux,0.9546184539794922 +karman_re50,ppo,38,15.2,velocity,center_uy,0.15589921176433563 +karman_re50,ppo,38,15.2,velocity,lower_ux,1.103400468826294 +karman_re50,ppo,38,15.2,velocity,lower_uy,0.23181191086769104 +karman_re50,ppo,39,15.6,velocity,upper_ux,0.9071893095970154 +karman_re50,ppo,39,15.6,velocity,upper_uy,0.00014653772814199328 +karman_re50,ppo,39,15.6,velocity,center_ux,0.9372261762619019 +karman_re50,ppo,39,15.6,velocity,center_uy,0.03939950093626976 +karman_re50,ppo,39,15.6,velocity,lower_ux,1.0927956104278564 +karman_re50,ppo,39,15.6,velocity,lower_uy,0.12136383354663849 +karman_re50,ppo,40,16.0,velocity,upper_ux,0.9116833209991455 +karman_re50,ppo,40,16.0,velocity,upper_uy,-0.07424040883779526 +karman_re50,ppo,40,16.0,velocity,center_ux,0.9324943423271179 +karman_re50,ppo,40,16.0,velocity,center_uy,-0.07679911702871323 +karman_re50,ppo,40,16.0,velocity,lower_ux,1.073507308959961 +karman_re50,ppo,40,16.0,velocity,lower_uy,-0.012796182185411453 +karman_re50,ppo,41,16.4,velocity,upper_ux,0.9261514544487 +karman_re50,ppo,41,16.4,velocity,upper_uy,-0.1327265202999115 +karman_re50,ppo,41,16.4,velocity,center_ux,0.9401232004165649 +karman_re50,ppo,41,16.4,velocity,center_uy,-0.1709454506635666 +karman_re50,ppo,41,16.4,velocity,lower_ux,1.0517709255218506 +karman_re50,ppo,41,16.4,velocity,lower_uy,-0.14143706858158112 +karman_re50,ppo,42,16.8,velocity,upper_ux,0.9485852718353271 +karman_re50,ppo,42,16.8,velocity,upper_uy,-0.17513443529605865 +karman_re50,ppo,42,16.8,velocity,center_ux,0.9547048807144165 +karman_re50,ppo,42,16.8,velocity,center_uy,-0.23692730069160461 +karman_re50,ppo,42,16.8,velocity,lower_ux,1.0363874435424805 +karman_re50,ppo,42,16.8,velocity,lower_uy,-0.23654215037822723 +karman_re50,ppo,43,17.2,velocity,upper_ux,0.974824845790863 +karman_re50,ppo,43,17.2,velocity,upper_uy,-0.2105526328086853 +karman_re50,ppo,43,17.2,velocity,center_ux,0.972055971622467 +karman_re50,ppo,43,17.2,velocity,center_uy,-0.27897244691848755 +karman_re50,ppo,43,17.2,velocity,lower_ux,1.0297129154205322 +karman_re50,ppo,43,17.2,velocity,lower_uy,-0.29117757081985474 +karman_re50,ppo,44,17.6,velocity,upper_ux,1.0023242235183716 +karman_re50,ppo,44,17.6,velocity,upper_uy,-0.24707557260990143 +karman_re50,ppo,44,17.6,velocity,center_ux,0.9883386492729187 +karman_re50,ppo,44,17.6,velocity,center_uy,-0.3076421916484833 +karman_re50,ppo,44,17.6,velocity,lower_ux,1.0262776613235474 +karman_re50,ppo,44,17.6,velocity,lower_uy,-0.3153039813041687 +karman_re50,ppo,45,18.0,velocity,upper_ux,1.029889702796936 +karman_re50,ppo,45,18.0,velocity,upper_uy,-0.28638455271720886 +karman_re50,ppo,45,18.0,velocity,center_ux,0.9989665746688843 +karman_re50,ppo,45,18.0,velocity,center_uy,-0.32963067293167114 +karman_re50,ppo,45,18.0,velocity,lower_ux,1.0191619396209717 +karman_re50,ppo,45,18.0,velocity,lower_uy,-0.3139188289642334 +karman_re50,ppo,46,18.4,velocity,upper_ux,1.0563138723373413 +karman_re50,ppo,46,18.4,velocity,upper_uy,-0.32422205805778503 +karman_re50,ppo,46,18.4,velocity,center_ux,0.9999263286590576 +karman_re50,ppo,46,18.4,velocity,center_uy,-0.34151774644851685 +karman_re50,ppo,46,18.4,velocity,lower_ux,1.0030090808868408 +karman_re50,ppo,46,18.4,velocity,lower_uy,-0.2856322228908539 +karman_re50,ppo,47,18.8,velocity,upper_ux,1.079932689666748 +karman_re50,ppo,47,18.8,velocity,upper_uy,-0.34779414534568787 +karman_re50,ppo,47,18.8,velocity,center_ux,0.9893122315406799 +karman_re50,ppo,47,18.8,velocity,center_uy,-0.33107420802116394 +karman_re50,ppo,47,18.8,velocity,lower_ux,0.9779914021492004 +karman_re50,ppo,47,18.8,velocity,lower_uy,-0.23098398745059967 +karman_re50,ppo,48,19.2,velocity,upper_ux,1.0978195667266846 +karman_re50,ppo,48,19.2,velocity,upper_uy,-0.3368910849094391 +karman_re50,ppo,48,19.2,velocity,center_ux,0.9680145382881165 +karman_re50,ppo,48,19.2,velocity,center_uy,-0.28381142020225525 +karman_re50,ppo,48,19.2,velocity,lower_ux,0.951870858669281 +karman_re50,ppo,48,19.2,velocity,lower_uy,-0.1582871973514557 +karman_re50,ppo,49,19.6,velocity,upper_ux,1.1074163913726807 +karman_re50,ppo,49,19.6,velocity,upper_uy,-0.27843278646469116 +karman_re50,ppo,49,19.6,velocity,center_ux,0.9402284026145935 +karman_re50,ppo,49,19.6,velocity,center_uy,-0.19202207028865814 +karman_re50,ppo,49,19.6,velocity,lower_ux,0.9355102777481079 +karman_re50,ppo,49,19.6,velocity,lower_uy,-0.08017260581254959 +karman_re50,ppo,50,20.0,velocity,upper_ux,1.1071884632110596 +karman_re50,ppo,50,20.0,velocity,upper_uy,-0.17966361343860626 +karman_re50,ppo,50,20.0,velocity,center_ux,0.912954568862915 +karman_re50,ppo,50,20.0,velocity,center_uy,-0.061469174921512604 +karman_re50,ppo,50,20.0,velocity,lower_ux,0.9341203570365906 +karman_re50,ppo,50,20.0,velocity,lower_uy,-0.0052843280136585236 +karman_re50,ppo,51,20.4,velocity,upper_ux,1.0930476188659668 +karman_re50,ppo,51,20.4,velocity,upper_uy,-0.05818702653050423 +karman_re50,ppo,51,20.4,velocity,center_ux,0.8982532024383545 +karman_re50,ppo,51,20.4,velocity,center_uy,0.08357589691877365 +karman_re50,ppo,51,20.4,velocity,lower_ux,0.9455928206443787 +karman_re50,ppo,51,20.4,velocity,lower_uy,0.06145015358924866 +karman_re50,ppo,52,20.8,velocity,upper_ux,1.055345058441162 +karman_re50,ppo,52,20.8,velocity,upper_uy,0.07633975148200989 +karman_re50,ppo,52,20.8,velocity,center_ux,0.9104331731796265 +karman_re50,ppo,52,20.8,velocity,center_uy,0.20430892705917358 +karman_re50,ppo,52,20.8,velocity,lower_ux,0.9667221307754517 +karman_re50,ppo,52,20.8,velocity,lower_uy,0.11409296095371246 +karman_re50,ppo,53,21.2,velocity,upper_ux,0.9912124872207642 +karman_re50,ppo,53,21.2,velocity,upper_uy,0.2116013914346695 +karman_re50,ppo,53,21.2,velocity,center_ux,0.9482882022857666 +karman_re50,ppo,53,21.2,velocity,center_uy,0.2785032391548157 +karman_re50,ppo,53,21.2,velocity,lower_ux,0.9944526553153992 +karman_re50,ppo,53,21.2,velocity,lower_uy,0.1512662172317505 +karman_re50,ppo,54,21.6,velocity,upper_ux,0.9229423999786377 +karman_re50,ppo,54,21.6,velocity,upper_uy,0.3091668486595154 +karman_re50,ppo,54,21.6,velocity,center_ux,0.9958627820014954 +karman_re50,ppo,54,21.6,velocity,center_uy,0.3141810894012451 +karman_re50,ppo,54,21.6,velocity,lower_ux,1.0248606204986572 +karman_re50,ppo,54,21.6,velocity,lower_uy,0.17951565980911255 +karman_re50,ppo,55,22.0,velocity,upper_ux,0.8776959776878357 +karman_re50,ppo,55,22.0,velocity,upper_uy,0.33633697032928467 +karman_re50,ppo,55,22.0,velocity,center_ux,1.0398170948028564 +karman_re50,ppo,55,22.0,velocity,center_uy,0.3246210515499115 +karman_re50,ppo,55,22.0,velocity,lower_ux,1.0551226139068604 +karman_re50,ppo,55,22.0,velocity,lower_uy,0.20479336380958557 +karman_re50,ppo,56,22.4,velocity,upper_ux,0.8593518733978271 +karman_re50,ppo,56,22.4,velocity,upper_uy,0.29874932765960693 +karman_re50,ppo,56,22.4,velocity,center_ux,1.0711617469787598 +karman_re50,ppo,56,22.4,velocity,center_uy,0.31232354044914246 +karman_re50,ppo,56,22.4,velocity,lower_ux,1.0828129053115845 +karman_re50,ppo,56,22.4,velocity,lower_uy,0.2278742790222168 +karman_re50,ppo,57,22.8,velocity,upper_ux,0.8598199486732483 +karman_re50,ppo,57,22.8,velocity,upper_uy,0.22373181581497192 +karman_re50,ppo,57,22.8,velocity,center_ux,1.0820271968841553 +karman_re50,ppo,57,22.8,velocity,center_uy,0.27148813009262085 +karman_re50,ppo,57,22.8,velocity,lower_ux,1.1043527126312256 +karman_re50,ppo,57,22.8,velocity,lower_uy,0.24493850767612457 +karman_re50,ppo,58,23.2,velocity,upper_ux,0.8738784193992615 +karman_re50,ppo,58,23.2,velocity,upper_uy,0.1431180238723755 +karman_re50,ppo,58,23.2,velocity,center_ux,1.0692269802093506 +karman_re50,ppo,58,23.2,velocity,center_uy,0.20046818256378174 +karman_re50,ppo,58,23.2,velocity,lower_ux,1.1154266595840454 +karman_re50,ppo,58,23.2,velocity,lower_uy,0.24786929786205292 +karman_re50,ppo,59,23.6,velocity,upper_ux,0.8947960138320923 +karman_re50,ppo,59,23.6,velocity,upper_uy,0.07527483254671097 +karman_re50,ppo,59,23.6,velocity,center_ux,1.040969967842102 +karman_re50,ppo,59,23.6,velocity,center_uy,0.11186852306127548 +karman_re50,ppo,59,23.6,velocity,lower_ux,1.1118324995040894 +karman_re50,ppo,59,23.6,velocity,lower_uy,0.22495616972446442 +karman_re50,ppo,60,24.0,velocity,upper_ux,0.9136568307876587 +karman_re50,ppo,60,24.0,velocity,upper_uy,0.01407543197274208 +karman_re50,ppo,60,24.0,velocity,center_ux,1.0152761936187744 +karman_re50,ppo,60,24.0,velocity,center_uy,0.02722918801009655 +karman_re50,ppo,60,24.0,velocity,lower_ux,1.0919169187545776 +karman_re50,ppo,60,24.0,velocity,lower_uy,0.16750961542129517 +karman_re50,ppo,61,24.4,velocity,upper_ux,0.9281038641929626 +karman_re50,ppo,61,24.4,velocity,upper_uy,-0.04957275465130806 +karman_re50,ppo,61,24.4,velocity,center_ux,1.0034445524215698 +karman_re50,ppo,61,24.4,velocity,center_uy,-0.043240781873464584 +karman_re50,ppo,61,24.4,velocity,lower_ux,1.0588642358779907 +karman_re50,ppo,61,24.4,velocity,lower_uy,0.07809992134571075 +karman_re50,ppo,62,24.8,velocity,upper_ux,0.9425816535949707 +karman_re50,ppo,62,24.8,velocity,upper_uy,-0.10858255624771118 +karman_re50,ppo,62,24.8,velocity,center_ux,1.0001903772354126 +karman_re50,ppo,62,24.8,velocity,center_uy,-0.10659312456846237 +karman_re50,ppo,62,24.8,velocity,lower_ux,1.0212104320526123 +karman_re50,ppo,62,24.8,velocity,lower_uy,-0.027573391795158386 +karman_re50,ppo,63,25.2,velocity,upper_ux,0.9607102870941162 +karman_re50,ppo,63,25.2,velocity,upper_uy,-0.15274633467197418 +karman_re50,ppo,63,25.2,velocity,center_ux,0.9981517195701599 +karman_re50,ppo,63,25.2,velocity,center_uy,-0.16698965430259705 +karman_re50,ppo,63,25.2,velocity,lower_ux,0.9915850758552551 +karman_re50,ppo,63,25.2,velocity,lower_uy,-0.12632547318935394 +karman_re50,ppo,64,25.6,velocity,upper_ux,0.9821426868438721 +karman_re50,ppo,64,25.6,velocity,upper_uy,-0.18484964966773987 +karman_re50,ppo,64,25.6,velocity,center_ux,0.9987573027610779 +karman_re50,ppo,64,25.6,velocity,center_uy,-0.21790321171283722 +karman_re50,ppo,64,25.6,velocity,lower_ux,0.9784194827079773 +karman_re50,ppo,64,25.6,velocity,lower_uy,-0.20135240256786346 +karman_re50,ppo,65,26.0,velocity,upper_ux,1.0050276517868042 +karman_re50,ppo,65,26.0,velocity,upper_uy,-0.2146901935338974 +karman_re50,ppo,65,26.0,velocity,center_ux,1.003840684890747 +karman_re50,ppo,65,26.0,velocity,center_uy,-0.25619956851005554 +karman_re50,ppo,65,26.0,velocity,lower_ux,0.9774430990219116 +karman_re50,ppo,65,26.0,velocity,lower_uy,-0.25070637464523315 +karman_re50,ppo,66,26.4,velocity,upper_ux,1.028702735900879 +karman_re50,ppo,66,26.4,velocity,upper_uy,-0.2486242800951004 +karman_re50,ppo,66,26.4,velocity,center_ux,1.0104049444198608 +karman_re50,ppo,66,26.4,velocity,center_uy,-0.2868689000606537 +karman_re50,ppo,66,26.4,velocity,lower_ux,0.9789084792137146 +karman_re50,ppo,66,26.4,velocity,lower_uy,-0.27821266651153564 +karman_re50,ppo,67,26.8,velocity,upper_ux,1.0529218912124634 +karman_re50,ppo,67,26.8,velocity,upper_uy,-0.28695476055145264 +karman_re50,ppo,67,26.8,velocity,center_ux,1.013421893119812 +karman_re50,ppo,67,26.8,velocity,center_uy,-0.31296032667160034 +karman_re50,ppo,67,26.8,velocity,lower_ux,0.9762217998504639 +karman_re50,ppo,67,26.8,velocity,lower_uy,-0.2835741341114044 +karman_re50,ppo,68,27.2,velocity,upper_ux,1.076520562171936 +karman_re50,ppo,68,27.2,velocity,upper_uy,-0.3251771628856659 +karman_re50,ppo,68,27.2,velocity,center_ux,1.0084773302078247 +karman_re50,ppo,68,27.2,velocity,center_uy,-0.3301538825035095 +karman_re50,ppo,68,27.2,velocity,lower_ux,0.9654067158699036 +karman_re50,ppo,68,27.2,velocity,lower_uy,-0.26545003056526184 +karman_re50,ppo,69,27.6,velocity,upper_ux,1.097295880317688 +karman_re50,ppo,69,27.6,velocity,upper_uy,-0.3507835268974304 +karman_re50,ppo,69,27.6,velocity,center_ux,0.9934737682342529 +karman_re50,ppo,69,27.6,velocity,center_uy,-0.32686153054237366 +karman_re50,ppo,69,27.6,velocity,lower_ux,0.9460582137107849 +karman_re50,ppo,69,27.6,velocity,lower_uy,-0.22490648925304413 +karman_re50,ppo,70,28.0,velocity,upper_ux,1.1121903657913208 +karman_re50,ppo,70,28.0,velocity,upper_uy,-0.3426935076713562 +karman_re50,ppo,70,28.0,velocity,center_ux,0.9699153304100037 +karman_re50,ppo,70,28.0,velocity,center_uy,-0.2885592579841614 +karman_re50,ppo,70,28.0,velocity,lower_ux,0.9236370921134949 +karman_re50,ppo,70,28.0,velocity,lower_uy,-0.16669459640979767 +karman_re50,ppo,71,28.4,velocity,upper_ux,1.1187268495559692 +karman_re50,ppo,71,28.4,velocity,upper_uy,-0.28448402881622314 +karman_re50,ppo,71,28.4,velocity,center_ux,0.9428781867027283 +karman_re50,ppo,71,28.4,velocity,center_uy,-0.2057400345802307 +karman_re50,ppo,71,28.4,velocity,lower_ux,0.9075340032577515 +karman_re50,ppo,71,28.4,velocity,lower_uy,-0.09852999448776245 +karman_re50,ppo,72,28.8,velocity,upper_ux,1.1155449151992798 +karman_re50,ppo,72,28.8,velocity,upper_uy,-0.17859865725040436 +karman_re50,ppo,72,28.8,velocity,center_ux,0.9196850061416626 +karman_re50,ppo,72,28.8,velocity,center_uy,-0.08039505779743195 +karman_re50,ppo,72,28.8,velocity,lower_ux,0.9046682119369507 +karman_re50,ppo,72,28.8,velocity,lower_uy,-0.027516381815075874 +karman_re50,ppo,73,29.2,velocity,upper_ux,1.0990879535675049 +karman_re50,ppo,73,29.2,velocity,upper_uy,-0.03957865387201309 +karman_re50,ppo,73,29.2,velocity,center_ux,0.9114797711372375 +karman_re50,ppo,73,29.2,velocity,center_uy,0.06571590155363083 +karman_re50,ppo,73,29.2,velocity,lower_ux,0.9153020977973938 +karman_re50,ppo,73,29.2,velocity,lower_uy,0.04063032940030098 +karman_re50,ppo,74,29.6,velocity,upper_ux,1.0612932443618774 +karman_re50,ppo,74,29.6,velocity,upper_uy,0.12109435349702835 +karman_re50,ppo,74,29.6,velocity,center_ux,0.9295886754989624 +karman_re50,ppo,74,29.6,velocity,center_uy,0.19127748906612396 +karman_re50,ppo,74,29.6,velocity,lower_ux,0.9362397789955139 +karman_re50,ppo,74,29.6,velocity,lower_uy,0.09868717938661575 +karman_re50,ppo,75,30.0,velocity,upper_ux,1.0075725317001343 +karman_re50,ppo,75,30.0,velocity,upper_uy,0.27286645770072937 +karman_re50,ppo,75,30.0,velocity,center_ux,0.9700319170951843 +karman_re50,ppo,75,30.0,velocity,center_uy,0.2684650123119354 +karman_re50,ppo,75,30.0,velocity,lower_ux,0.9639502763748169 +karman_re50,ppo,75,30.0,velocity,lower_uy,0.14029131829738617 +karman_re50,ppo,76,30.4,velocity,upper_ux,0.9658889174461365 +karman_re50,ppo,76,30.4,velocity,upper_uy,0.36070483922958374 +karman_re50,ppo,76,30.4,velocity,center_ux,1.017703890800476 +karman_re50,ppo,76,30.4,velocity,center_uy,0.30138278007507324 +karman_re50,ppo,76,30.4,velocity,lower_ux,0.994372546672821 +karman_re50,ppo,76,30.4,velocity,lower_uy,0.16862475872039795 +karman_re50,ppo,77,30.8,velocity,upper_ux,0.9497519135475159 +karman_re50,ppo,77,30.8,velocity,upper_uy,0.3675702214241028 +karman_re50,ppo,77,30.8,velocity,center_ux,1.0607019662857056 +karman_re50,ppo,77,30.8,velocity,center_uy,0.3052695393562317 +karman_re50,ppo,77,30.8,velocity,lower_ux,1.0242773294448853 +karman_re50,ppo,77,30.8,velocity,lower_uy,0.1922302395105362 +karman_re50,ppo,78,31.2,velocity,upper_ux,0.9489307999610901 +karman_re50,ppo,78,31.2,velocity,upper_uy,0.317676842212677 +karman_re50,ppo,78,31.2,velocity,center_ux,1.0904690027236938 +karman_re50,ppo,78,31.2,velocity,center_uy,0.29309356212615967 +karman_re50,ppo,78,31.2,velocity,lower_ux,1.0516431331634521 +karman_re50,ppo,78,31.2,velocity,lower_uy,0.21629223227500916 +karman_re50,ppo,79,31.6,velocity,upper_ux,0.9516683220863342 +karman_re50,ppo,79,31.6,velocity,upper_uy,0.2415292114019394 +karman_re50,ppo,79,31.6,velocity,center_ux,1.1013680696487427 +karman_re50,ppo,79,31.6,velocity,center_uy,0.2718803882598877 +karman_re50,ppo,79,31.6,velocity,lower_ux,1.0747054815292358 +karman_re50,ppo,79,31.6,velocity,lower_uy,0.24081026017665863 +karman_re50,ppo,80,32.0,velocity,upper_ux,0.9528882503509521 +karman_re50,ppo,80,32.0,velocity,upper_uy,0.16551260650157928 +karman_re50,ppo,80,32.0,velocity,center_ux,1.093122124671936 +karman_re50,ppo,80,32.0,velocity,center_uy,0.24207545816898346 +karman_re50,ppo,80,32.0,velocity,lower_ux,1.0916831493377686 +karman_re50,ppo,80,32.0,velocity,lower_uy,0.2607867121696472 +karman_re50,ppo,81,32.4,velocity,upper_ux,0.9518334865570068 +karman_re50,ppo,81,32.4,velocity,upper_uy,0.1020975410938263 +karman_re50,ppo,81,32.4,velocity,center_ux,1.0711908340454102 +karman_re50,ppo,81,32.4,velocity,center_uy,0.19949668645858765 +karman_re50,ppo,81,32.4,velocity,lower_ux,1.100380539894104 +karman_re50,ppo,81,32.4,velocity,lower_uy,0.264675110578537 +karman_re50,ppo,82,32.8,velocity,upper_ux,0.9495062828063965 +karman_re50,ppo,82,32.8,velocity,upper_uy,0.04519670456647873 +karman_re50,ppo,82,32.8,velocity,center_ux,1.0443187952041626 +karman_re50,ppo,82,32.8,velocity,center_uy,0.13990768790245056 +karman_re50,ppo,82,32.8,velocity,lower_ux,1.098506212234497 +karman_re50,ppo,82,32.8,velocity,lower_uy,0.23703022301197052 +karman_re50,ppo,83,33.2,velocity,upper_ux,0.9481168985366821 +karman_re50,ppo,83,33.2,velocity,upper_uy,-0.015115865506231785 +karman_re50,ppo,83,33.2,velocity,center_ux,1.0201936960220337 +karman_re50,ppo,83,33.2,velocity,center_uy,0.06368876993656158 +karman_re50,ppo,83,33.2,velocity,lower_ux,1.0851842164993286 +karman_re50,ppo,83,33.2,velocity,lower_uy,0.16926732659339905 +karman_re50,ppo,84,33.6,velocity,upper_ux,0.9507613182067871 +karman_re50,ppo,84,33.6,velocity,upper_uy,-0.07669644802808762 +karman_re50,ppo,84,33.6,velocity,center_ux,1.0018612146377563 +karman_re50,ppo,84,33.6,velocity,center_uy,-0.023222895339131355 +karman_re50,ppo,84,33.6,velocity,lower_ux,1.061995029449463 +karman_re50,ppo,84,33.6,velocity,lower_uy,0.06804025918245316 +karman_re50,ppo,85,34.0,velocity,upper_ux,0.9598582983016968 +karman_re50,ppo,85,34.0,velocity,upper_uy,-0.1286575198173523 +karman_re50,ppo,85,34.0,velocity,center_ux,0.9897578358650208 +karman_re50,ppo,85,34.0,velocity,center_uy,-0.10939247906208038 +karman_re50,ppo,85,34.0,velocity,lower_ux,1.0352338552474976 +karman_re50,ppo,85,34.0,velocity,lower_uy,-0.04529336467385292 +karman_re50,ppo,86,34.4,velocity,upper_ux,0.975268542766571 +karman_re50,ppo,86,34.4,velocity,upper_uy,-0.1671738475561142 +karman_re50,ppo,86,34.4,velocity,center_ux,0.9852578043937683 +karman_re50,ppo,86,34.4,velocity,center_uy,-0.18142378330230713 +karman_re50,ppo,86,34.4,velocity,lower_ux,1.0143418312072754 +karman_re50,ppo,86,34.4,velocity,lower_uy,-0.1447373330593109 +karman_re50,ppo,87,34.8,velocity,upper_ux,0.9948716759681702 +karman_re50,ppo,87,34.8,velocity,upper_uy,-0.19914953410625458 +karman_re50,ppo,87,34.8,velocity,center_ux,0.9884189367294312 +karman_re50,ppo,87,34.8,velocity,center_uy,-0.23326990008354187 +karman_re50,ppo,87,34.8,velocity,lower_ux,1.002663016319275 +karman_re50,ppo,87,34.8,velocity,lower_uy,-0.21533572673797607 +karman_re50,ppo,88,35.2,velocity,upper_ux,1.016959309577942 +karman_re50,ppo,88,35.2,velocity,upper_uy,-0.23297210037708282 +karman_re50,ppo,88,35.2,velocity,center_ux,0.995381772518158 +karman_re50,ppo,88,35.2,velocity,center_uy,-0.2707260251045227 +karman_re50,ppo,88,35.2,velocity,lower_ux,0.9960529804229736 +karman_re50,ppo,88,35.2,velocity,lower_uy,-0.25670233368873596 +karman_re50,ppo,89,35.6,velocity,upper_ux,1.040635585784912 +karman_re50,ppo,89,35.6,velocity,upper_uy,-0.2716958224773407 +karman_re50,ppo,89,35.6,velocity,center_ux,1.0004165172576904 +karman_re50,ppo,89,35.6,velocity,center_uy,-0.30193760991096497 +karman_re50,ppo,89,35.6,velocity,lower_ux,0.9891775250434875 +karman_re50,ppo,89,35.6,velocity,lower_uy,-0.27343273162841797 +karman_re50,ppo,90,36.0,velocity,upper_ux,1.0647492408752441 +karman_re50,ppo,90,36.0,velocity,upper_uy,-0.3129798173904419 +karman_re50,ppo,90,36.0,velocity,center_ux,0.9987241625785828 +karman_re50,ppo,90,36.0,velocity,center_uy,-0.32747048139572144 +karman_re50,ppo,90,36.0,velocity,lower_ux,0.9774377346038818 +karman_re50,ppo,90,36.0,velocity,lower_uy,-0.2693086564540863 +karman_re50,ppo,91,36.4,velocity,upper_ux,1.087376594543457 +karman_re50,ppo,91,36.4,velocity,upper_uy,-0.3476928770542145 +karman_re50,ppo,91,36.4,velocity,center_ux,0.9875714182853699 +karman_re50,ppo,91,36.4,velocity,center_uy,-0.33829692006111145 +karman_re50,ppo,91,36.4,velocity,lower_ux,0.9584232568740845 +karman_re50,ppo,91,36.4,velocity,lower_uy,-0.24532443284988403 +karman_re50,ppo,92,36.8,velocity,upper_ux,1.1056371927261353 +karman_re50,ppo,92,36.8,velocity,upper_uy,-0.3566952645778656 +karman_re50,ppo,92,36.8,velocity,center_ux,0.9671337604522705 +karman_re50,ppo,92,36.8,velocity,center_uy,-0.31879720091819763 +karman_re50,ppo,92,36.8,velocity,lower_ux,0.9346529245376587 +karman_re50,ppo,92,36.8,velocity,lower_uy,-0.2007690966129303 +karman_re50,ppo,93,37.2,velocity,upper_ux,1.1166026592254639 +karman_re50,ppo,93,37.2,velocity,upper_uy,-0.3185501992702484 +karman_re50,ppo,93,37.2,velocity,center_ux,0.9410206079483032 +karman_re50,ppo,93,37.2,velocity,center_uy,-0.25409048795700073 +karman_re50,ppo,93,37.2,velocity,lower_ux,0.9136226177215576 +karman_re50,ppo,93,37.2,velocity,lower_uy,-0.13753069937229156 +karman_re50,ppo,94,37.6,velocity,upper_ux,1.1184059381484985 +karman_re50,ppo,94,37.6,velocity,upper_uy,-0.226951465010643 +karman_re50,ppo,94,37.6,velocity,center_ux,0.9152662754058838 +karman_re50,ppo,94,37.6,velocity,center_uy,-0.1378789246082306 +karman_re50,ppo,94,37.6,velocity,lower_ux,0.9034318327903748 +karman_re50,ppo,94,37.6,velocity,lower_uy,-0.06221210956573486 +karman_re50,ppo,95,38.0,velocity,upper_ux,1.1072428226470947 +karman_re50,ppo,95,38.0,velocity,upper_uy,-0.0911882296204567 +karman_re50,ppo,95,38.0,velocity,center_ux,0.900138795375824 +karman_re50,ppo,95,38.0,velocity,center_uy,0.016750194132328033 +karman_re50,ppo,95,38.0,velocity,lower_ux,0.9073671698570251 +karman_re50,ppo,95,38.0,velocity,lower_uy,0.01504182256758213 +karman_re50,ppo,96,38.4,velocity,upper_ux,1.0730412006378174 +karman_re50,ppo,96,38.4,velocity,upper_uy,0.08227348327636719 +karman_re50,ppo,96,38.4,velocity,center_ux,0.9107856154441833 +karman_re50,ppo,96,38.4,velocity,center_uy,0.16522474586963654 +karman_re50,ppo,96,38.4,velocity,lower_ux,0.9239521026611328 +karman_re50,ppo,96,38.4,velocity,lower_uy,0.08289527148008347 +karman_re50,ppo,97,38.8,velocity,upper_ux,1.0187461376190186 +karman_re50,ppo,97,38.8,velocity,upper_uy,0.26440250873565674 +karman_re50,ppo,97,38.8,velocity,center_ux,0.9489337801933289 +karman_re50,ppo,97,38.8,velocity,center_uy,0.26205408573150635 +karman_re50,ppo,97,38.8,velocity,lower_ux,0.9497299194335938 +karman_re50,ppo,97,38.8,velocity,lower_uy,0.13295873999595642 +karman_re50,ppo,98,39.2,velocity,upper_ux,0.9778813719749451 +karman_re50,ppo,98,39.2,velocity,upper_uy,0.38169530034065247 +karman_re50,ppo,98,39.2,velocity,center_ux,0.9975566267967224 +karman_re50,ppo,98,39.2,velocity,center_uy,0.3052203357219696 +karman_re50,ppo,98,39.2,velocity,lower_ux,0.9801238775253296 +karman_re50,ppo,98,39.2,velocity,lower_uy,0.16724815964698792 +karman_re50,ppo,99,39.6,velocity,upper_ux,0.9686273336410522 +karman_re50,ppo,99,39.6,velocity,upper_uy,0.40505746006965637 +karman_re50,ppo,99,39.6,velocity,center_ux,1.0415241718292236 +karman_re50,ppo,99,39.6,velocity,center_uy,0.3168540894985199 +karman_re50,ppo,99,39.6,velocity,lower_ux,1.0112497806549072 +karman_re50,ppo,99,39.6,velocity,lower_uy,0.19487135112285614 +karman_re50,ppo,100,40.0,velocity,upper_ux,0.9755480885505676 +karman_re50,ppo,100,40.0,velocity,upper_uy,0.36654457449913025 +karman_re50,ppo,100,40.0,velocity,center_ux,1.0733925104141235 +karman_re50,ppo,100,40.0,velocity,center_uy,0.31506985425949097 +karman_re50,ppo,100,40.0,velocity,lower_ux,1.041010856628418 +karman_re50,ppo,100,40.0,velocity,lower_uy,0.2222253978252411 +karman_re50,ppo,101,40.4,velocity,upper_ux,0.9799273610115051 +karman_re50,ppo,101,40.4,velocity,upper_uy,0.29849565029144287 +karman_re50,ppo,101,40.4,velocity,center_ux,1.0895708799362183 +karman_re50,ppo,101,40.4,velocity,center_uy,0.30638086795806885 +karman_re50,ppo,101,40.4,velocity,lower_ux,1.0679070949554443 +karman_re50,ppo,101,40.4,velocity,lower_uy,0.25023478269577026 +karman_re50,ppo,102,40.8,velocity,upper_ux,0.9744598269462585 +karman_re50,ppo,102,40.8,velocity,upper_uy,0.22017522156238556 +karman_re50,ppo,102,40.8,velocity,center_ux,1.0892010927200317 +karman_re50,ppo,102,40.8,velocity,center_uy,0.28758832812309265 +karman_re50,ppo,102,40.8,velocity,lower_ux,1.0902056694030762 +karman_re50,ppo,102,40.8,velocity,lower_uy,0.2748831808567047 +karman_re50,ppo,103,41.2,velocity,upper_ux,0.9618216156959534 +karman_re50,ppo,103,41.2,velocity,upper_uy,0.14494866132736206 +karman_re50,ppo,103,41.2,velocity,center_ux,1.0747454166412354 +karman_re50,ppo,103,41.2,velocity,center_uy,0.2511979341506958 +karman_re50,ppo,103,41.2,velocity,lower_ux,1.1054847240447998 +karman_re50,ppo,103,41.2,velocity,lower_uy,0.28542354702949524 +karman_re50,ppo,104,41.6,velocity,upper_ux,0.9486044049263 +karman_re50,ppo,104,41.6,velocity,upper_uy,0.07736080884933472 +karman_re50,ppo,104,41.6,velocity,center_ux,1.0524296760559082 +karman_re50,ppo,104,41.6,velocity,center_uy,0.1918993443250656 +karman_re50,ppo,104,41.6,velocity,lower_ux,1.1108317375183105 +karman_re50,ppo,104,41.6,velocity,lower_uy,0.26550936698913574 +karman_re50,ppo,105,42.0,velocity,upper_ux,0.9399232268333435 +karman_re50,ppo,105,42.0,velocity,upper_uy,0.012715749442577362 +karman_re50,ppo,105,42.0,velocity,center_ux,1.0297688245773315 +karman_re50,ppo,105,42.0,velocity,center_uy,0.11155203729867935 +karman_re50,ppo,105,42.0,velocity,lower_ux,1.1041368246078491 +karman_re50,ppo,105,42.0,velocity,lower_uy,0.2036493420600891 +karman_re50,ppo,106,42.4,velocity,upper_ux,0.9381551146507263 +karman_re50,ppo,106,42.4,velocity,upper_uy,-0.052202992141246796 +karman_re50,ppo,106,42.4,velocity,center_ux,1.0110526084899902 +karman_re50,ppo,106,42.4,velocity,center_uy,0.018127523362636566 +karman_re50,ppo,106,42.4,velocity,lower_ux,1.0857452154159546 +karman_re50,ppo,106,42.4,velocity,lower_uy,0.10382996499538422 +karman_re50,ppo,107,42.8,velocity,upper_ux,0.9442861080169678 +karman_re50,ppo,107,42.8,velocity,upper_uy,-0.1109241396188736 +karman_re50,ppo,107,42.8,velocity,center_ux,0.9971333146095276 +karman_re50,ppo,107,42.8,velocity,center_uy,-0.07670613378286362 +karman_re50,ppo,107,42.8,velocity,lower_ux,1.0612995624542236 +karman_re50,ppo,107,42.8,velocity,lower_uy,-0.013091588392853737 +karman_re50,ppo,108,43.2,velocity,upper_ux,0.9578809142112732 +karman_re50,ppo,108,43.2,velocity,upper_uy,-0.15590818226337433 +karman_re50,ppo,108,43.2,velocity,center_ux,0.9894774556159973 +karman_re50,ppo,108,43.2,velocity,center_uy,-0.1589987426996231 +karman_re50,ppo,108,43.2,velocity,lower_ux,1.04145085811615 +karman_re50,ppo,108,43.2,velocity,lower_uy,-0.11868187040090561 +karman_re50,ppo,109,43.6,velocity,upper_ux,0.9768666625022888 +karman_re50,ppo,109,43.6,velocity,upper_uy,-0.18931280076503754 +karman_re50,ppo,109,43.6,velocity,center_ux,0.9898034930229187 +karman_re50,ppo,109,43.6,velocity,center_uy,-0.21864351630210876 +karman_re50,ppo,109,43.6,velocity,lower_ux,1.031262755393982 +karman_re50,ppo,109,43.6,velocity,lower_uy,-0.19496215879917145 +karman_re50,ppo,110,44.0,velocity,upper_ux,0.9989306926727295 +karman_re50,ppo,110,44.0,velocity,upper_uy,-0.22029833495616913 +karman_re50,ppo,110,44.0,velocity,center_ux,0.9959828853607178 +karman_re50,ppo,110,44.0,velocity,center_uy,-0.25820523500442505 +karman_re50,ppo,110,44.0,velocity,lower_ux,1.0258537530899048 +karman_re50,ppo,110,44.0,velocity,lower_uy,-0.2410891205072403 +karman_re50,ppo,111,44.4,velocity,upper_ux,1.0225683450698853 +karman_re50,ppo,111,44.4,velocity,upper_uy,-0.255220502614975 +karman_re50,ppo,111,44.4,velocity,center_ux,1.0023951530456543 +karman_re50,ppo,111,44.4,velocity,center_uy,-0.287655234336853 +karman_re50,ppo,111,44.4,velocity,lower_ux,1.0192712545394897 +karman_re50,ppo,111,44.4,velocity,lower_uy,-0.26149117946624756 +karman_re50,ppo,112,44.8,velocity,upper_ux,1.0466634035110474 +karman_re50,ppo,112,44.8,velocity,upper_uy,-0.29454413056373596 +karman_re50,ppo,112,44.8,velocity,center_ux,1.003411054611206 +karman_re50,ppo,112,44.8,velocity,center_uy,-0.3122571110725403 +karman_re50,ppo,112,44.8,velocity,lower_ux,1.0077965259552002 +karman_re50,ppo,112,44.8,velocity,lower_uy,-0.26016053557395935 +karman_re50,ppo,113,45.2,velocity,upper_ux,1.069769024848938 +karman_re50,ppo,113,45.2,velocity,upper_uy,-0.33296316862106323 +karman_re50,ppo,113,45.2,velocity,center_ux,0.9951820969581604 +karman_re50,ppo,113,45.2,velocity,center_uy,-0.3275258243083954 +karman_re50,ppo,113,45.2,velocity,lower_ux,0.9893478155136108 +karman_re50,ppo,113,45.2,velocity,lower_uy,-0.24007007479667664 +karman_re50,ppo,114,45.6,velocity,upper_ux,1.0895752906799316 +karman_re50,ppo,114,45.6,velocity,upper_uy,-0.35624608397483826 +karman_re50,ppo,114,45.6,velocity,center_ux,0.9763283729553223 +karman_re50,ppo,114,45.6,velocity,center_uy,-0.32058432698249817 +karman_re50,ppo,114,45.6,velocity,lower_ux,0.9655822515487671 +karman_re50,ppo,114,45.6,velocity,lower_uy,-0.20238010585308075 +karman_re50,ppo,115,46.0,velocity,upper_ux,1.1033694744110107 +karman_re50,ppo,115,46.0,velocity,upper_uy,-0.3428308367729187 +karman_re50,ppo,115,46.0,velocity,center_ux,0.9490340948104858 +karman_re50,ppo,115,46.0,velocity,center_uy,-0.2759469449520111 +karman_re50,ppo,115,46.0,velocity,lower_ux,0.9428081512451172 +karman_re50,ppo,115,46.0,velocity,lower_uy,-0.14834822714328766 +karman_re50,ppo,116,46.4,velocity,upper_ux,1.1090573072433472 +karman_re50,ppo,116,46.4,velocity,upper_uy,-0.27878043055534363 +karman_re50,ppo,116,46.4,velocity,center_ux,0.9185043573379517 +karman_re50,ppo,116,46.4,velocity,center_uy,-0.18338130414485931 +karman_re50,ppo,116,46.4,velocity,lower_ux,0.9284364581108093 +karman_re50,ppo,116,46.4,velocity,lower_uy,-0.08133377879858017 +karman_re50,ppo,117,46.8,velocity,upper_ux,1.1042358875274658 +karman_re50,ppo,117,46.8,velocity,upper_uy,-0.16957694292068481 +karman_re50,ppo,117,46.8,velocity,center_ux,0.8927794694900513 +karman_re50,ppo,117,46.8,velocity,center_uy,-0.04610345512628555 +karman_re50,ppo,117,46.8,velocity,lower_ux,0.9263529777526855 +karman_re50,ppo,117,46.8,velocity,lower_uy,-0.008225510828197002 +karman_re50,ppo,118,47.2,velocity,upper_ux,1.0809295177459717 +karman_re50,ppo,118,47.2,velocity,upper_uy,-0.024640576913952827 +karman_re50,ppo,118,47.2,velocity,center_ux,0.8867942094802856 +karman_re50,ppo,118,47.2,velocity,center_uy,0.10777776688337326 +karman_re50,ppo,118,47.2,velocity,lower_ux,0.9368100762367249 +karman_re50,ppo,118,47.2,velocity,lower_uy,0.06038367375731468 +karman_re50,ppo,119,47.6,velocity,upper_ux,1.0276875495910645 +karman_re50,ppo,119,47.6,velocity,upper_uy,0.1532112956047058 +karman_re50,ppo,119,47.6,velocity,center_ux,0.9133132100105286 +karman_re50,ppo,119,47.6,velocity,center_uy,0.22990165650844574 +karman_re50,ppo,119,47.6,velocity,lower_ux,0.9580017328262329 +karman_re50,ppo,119,47.6,velocity,lower_uy,0.11397251486778259 +karman_re50,ppo,120,48.0,velocity,upper_ux,0.9604676961898804 +karman_re50,ppo,120,48.0,velocity,upper_uy,0.3215431272983551 +karman_re50,ppo,120,48.0,velocity,center_ux,0.9634056687355042 +karman_re50,ppo,120,48.0,velocity,center_uy,0.29722926020622253 +karman_re50,ppo,120,48.0,velocity,lower_ux,0.9860213398933411 +karman_re50,ppo,120,48.0,velocity,lower_uy,0.151300311088562 +karman_re50,ppo,121,48.4,velocity,upper_ux,0.9184235334396362 +karman_re50,ppo,121,48.4,velocity,upper_uy,0.4086526930332184 +karman_re50,ppo,121,48.4,velocity,center_ux,1.0178680419921875 +karman_re50,ppo,121,48.4,velocity,center_uy,0.32302796840667725 +karman_re50,ppo,121,48.4,velocity,lower_ux,1.016477108001709 +karman_re50,ppo,121,48.4,velocity,lower_uy,0.17994099855422974 +karman_re50,ppo,122,48.8,velocity,upper_ux,0.91009521484375 +karman_re50,ppo,122,48.8,velocity,upper_uy,0.40264877676963806 +karman_re50,ppo,122,48.8,velocity,center_ux,1.0640143156051636 +karman_re50,ppo,122,48.8,velocity,center_uy,0.32515794038772583 +karman_re50,ppo,122,48.8,velocity,lower_ux,1.0463618040084839 +karman_re50,ppo,122,48.8,velocity,lower_uy,0.20641204714775085 +karman_re50,ppo,123,49.2,velocity,upper_ux,0.9159533977508545 +karman_re50,ppo,123,49.2,velocity,upper_uy,0.33675578236579895 +karman_re50,ppo,123,49.2,velocity,center_ux,1.0943324565887451 +karman_re50,ppo,123,49.2,velocity,center_uy,0.3115902543067932 +karman_re50,ppo,123,49.2,velocity,lower_ux,1.0734113454818726 +karman_re50,ppo,123,49.2,velocity,lower_uy,0.23221750557422638 +karman_re50,ppo,124,49.6,velocity,upper_ux,0.9214999675750732 +karman_re50,ppo,124,49.6,velocity,upper_uy,0.24408988654613495 +karman_re50,ppo,124,49.6,velocity,center_ux,1.1045647859573364 +karman_re50,ppo,124,49.6,velocity,center_uy,0.2824964225292206 +karman_re50,ppo,124,49.6,velocity,lower_ux,1.0952067375183105 +karman_re50,ppo,124,49.6,velocity,lower_uy,0.25466862320899963 +karman_re50,ppo,125,50.0,velocity,upper_ux,0.923849880695343 +karman_re50,ppo,125,50.0,velocity,upper_uy,0.15311220288276672 +karman_re50,ppo,125,50.0,velocity,center_ux,1.09528386592865 +karman_re50,ppo,125,50.0,velocity,center_uy,0.2361477017402649 +karman_re50,ppo,125,50.0,velocity,lower_ux,1.1087983846664429 +karman_re50,ppo,125,50.0,velocity,lower_uy,0.26592952013015747 +karman_re50,ppo,126,50.4,velocity,upper_ux,0.9250106811523438 +karman_re50,ppo,126,50.4,velocity,upper_uy,0.07855463773012161 +karman_re50,ppo,126,50.4,velocity,center_ux,1.0735633373260498 +karman_re50,ppo,126,50.4,velocity,center_uy,0.17330774664878845 +karman_re50,ppo,126,50.4,velocity,lower_ux,1.1112087965011597 +karman_re50,ppo,126,50.4,velocity,lower_uy,0.2525639533996582 +karman_re50,ppo,127,50.8,velocity,upper_ux,0.9269298315048218 +karman_re50,ppo,127,50.8,velocity,upper_uy,0.015686258673667908 +karman_re50,ppo,127,50.8,velocity,center_ux,1.0497872829437256 +karman_re50,ppo,127,50.8,velocity,center_uy,0.0987498015165329 +karman_re50,ppo,127,50.8,velocity,lower_ux,1.1004775762557983 +karman_re50,ppo,127,50.8,velocity,lower_uy,0.2026890218257904 +karman_re50,ppo,128,51.2,velocity,upper_ux,0.9311951994895935 +karman_re50,ppo,128,51.2,velocity,upper_uy,-0.04527933895587921 +karman_re50,ppo,128,51.2,velocity,center_ux,1.0304375886917114 +karman_re50,ppo,128,51.2,velocity,center_uy,0.01779313012957573 +karman_re50,ppo,128,51.2,velocity,lower_ux,1.0773316621780396 +karman_re50,ppo,128,51.2,velocity,lower_uy,0.11594840884208679 +karman_re50,ppo,129,51.6,velocity,upper_ux,0.9398733377456665 +karman_re50,ppo,129,51.6,velocity,upper_uy,-0.10253515839576721 +karman_re50,ppo,129,51.6,velocity,center_ux,1.015638828277588 +karman_re50,ppo,129,51.6,velocity,center_uy,-0.06484036147594452 +karman_re50,ppo,129,51.6,velocity,lower_ux,1.047572135925293 +karman_re50,ppo,129,51.6,velocity,lower_uy,0.007759816478937864 +karman_re50,ppo,130,52.0,velocity,upper_ux,0.9539860486984253 +karman_re50,ppo,130,52.0,velocity,upper_uy,-0.14768461883068085 +karman_re50,ppo,130,52.0,velocity,center_ux,1.0050331354141235 +karman_re50,ppo,130,52.0,velocity,center_uy,-0.14081718027591705 +karman_re50,ppo,130,52.0,velocity,lower_ux,1.0227359533309937 +karman_re50,ppo,130,52.0,velocity,lower_uy,-0.09630420804023743 +karman_re50,ppo,131,52.4,velocity,upper_ux,0.9725186228752136 +karman_re50,ppo,131,52.4,velocity,upper_uy,-0.18010751903057098 +karman_re50,ppo,131,52.4,velocity,center_ux,1.0010285377502441 +karman_re50,ppo,131,52.4,velocity,center_uy,-0.19959381222724915 +karman_re50,ppo,131,52.4,velocity,lower_ux,1.0115798711776733 +karman_re50,ppo,131,52.4,velocity,lower_uy,-0.17533284425735474 +karman_re50,ppo,132,52.8,velocity,upper_ux,0.9937155246734619 +karman_re50,ppo,132,52.8,velocity,upper_uy,-0.2082611620426178 +karman_re50,ppo,132,52.8,velocity,center_ux,1.0038646459579468 +karman_re50,ppo,132,52.8,velocity,center_uy,-0.23962965607643127 +karman_re50,ppo,132,52.8,velocity,lower_ux,1.0105994939804077 +karman_re50,ppo,132,52.8,velocity,lower_uy,-0.22502641379833221 +karman_re50,ppo,133,53.2,velocity,upper_ux,1.0161995887756348 +karman_re50,ppo,133,53.2,velocity,upper_uy,-0.23977863788604736 +karman_re50,ppo,133,53.2,velocity,center_ux,1.00908362865448 +karman_re50,ppo,133,53.2,velocity,center_uy,-0.26868852972984314 +karman_re50,ppo,133,53.2,velocity,lower_ux,1.0106617212295532 +karman_re50,ppo,133,53.2,velocity,lower_uy,-0.24939066171646118 +karman_re50,ppo,134,53.6,velocity,upper_ux,1.0390244722366333 +karman_re50,ppo,134,53.6,velocity,upper_uy,-0.2764970660209656 +karman_re50,ppo,134,53.6,velocity,center_ux,1.0108085870742798 +karman_re50,ppo,134,53.6,velocity,center_uy,-0.29288458824157715 +karman_re50,ppo,134,53.6,velocity,lower_ux,1.0056918859481812 +karman_re50,ppo,134,53.6,velocity,lower_uy,-0.25161248445510864 +karman_re50,ppo,135,54.0,velocity,upper_ux,1.0611628293991089 +karman_re50,ppo,135,54.0,velocity,upper_uy,-0.3152536451816559 +karman_re50,ppo,135,54.0,velocity,center_ux,1.0044786930084229 +karman_re50,ppo,135,54.0,velocity,center_uy,-0.31044650077819824 +karman_re50,ppo,135,54.0,velocity,lower_ux,0.9930346012115479 +karman_re50,ppo,135,54.0,velocity,lower_uy,-0.23472724854946136 +karman_re50,ppo,136,54.4,velocity,upper_ux,1.0807831287384033 +karman_re50,ppo,136,54.4,velocity,upper_uy,-0.34552979469299316 +karman_re50,ppo,136,54.4,velocity,center_ux,0.9875538349151611 +karman_re50,ppo,136,54.4,velocity,center_uy,-0.31144267320632935 +karman_re50,ppo,136,54.4,velocity,lower_ux,0.9736583232879639 +karman_re50,ppo,136,54.4,velocity,lower_uy,-0.20166875422000885 +karman_re50,ppo,137,54.8,velocity,upper_ux,1.0955760478973389 +karman_re50,ppo,137,54.8,velocity,upper_uy,-0.3480090796947479 +karman_re50,ppo,137,54.8,velocity,center_ux,0.9609533548355103 +karman_re50,ppo,137,54.8,velocity,center_uy,-0.2818378806114197 +karman_re50,ppo,137,54.8,velocity,lower_ux,0.9532402157783508 +karman_re50,ppo,137,54.8,velocity,lower_uy,-0.15516000986099243 +karman_re50,ppo,138,55.2,velocity,upper_ux,1.1035958528518677 +karman_re50,ppo,138,55.2,velocity,upper_uy,-0.3044446110725403 +karman_re50,ppo,138,55.2,velocity,center_ux,0.9292384386062622 +karman_re50,ppo,138,55.2,velocity,center_uy,-0.21009774506092072 +karman_re50,ppo,138,55.2,velocity,lower_ux,0.9391330480575562 +karman_re50,ppo,138,55.2,velocity,lower_uy,-0.09746155887842178 +karman_re50,ppo,139,55.6,velocity,upper_ux,1.1033433675765991 +karman_re50,ppo,139,55.6,velocity,upper_uy,-0.2145511955022812 +karman_re50,ppo,139,55.6,velocity,center_ux,0.8991658091545105 +karman_re50,ppo,139,55.6,velocity,center_uy,-0.09503357857465744 +karman_re50,ppo,139,55.6,velocity,lower_ux,0.9355301856994629 +karman_re50,ppo,139,55.6,velocity,lower_uy,-0.032074812799692154 +karman_re50,ppo,140,56.0,velocity,upper_ux,1.0911353826522827 +karman_re50,ppo,140,56.0,velocity,upper_uy,-0.09252335876226425 +karman_re50,ppo,140,56.0,velocity,center_ux,0.8818906545639038 +karman_re50,ppo,140,56.0,velocity,center_uy,0.04755856469273567 +karman_re50,ppo,140,56.0,velocity,lower_ux,0.9430111646652222 +karman_re50,ppo,140,56.0,velocity,lower_uy,0.03379235044121742 +karman_re50,ppo,141,56.4,velocity,upper_ux,1.0558843612670898 +karman_re50,ppo,141,56.4,velocity,upper_uy,0.0536162406206131 +karman_re50,ppo,141,56.4,velocity,center_ux,0.8927555084228516 +karman_re50,ppo,141,56.4,velocity,center_uy,0.1799231469631195 +karman_re50,ppo,141,56.4,velocity,lower_ux,0.9606503248214722 +karman_re50,ppo,141,56.4,velocity,lower_uy,0.08914373070001602 +karman_re50,ppo,142,56.8,velocity,upper_ux,0.9912409782409668 +karman_re50,ppo,142,56.8,velocity,upper_uy,0.21464355289936066 +karman_re50,ppo,142,56.8,velocity,center_ux,0.9345563650131226 +karman_re50,ppo,142,56.8,velocity,center_uy,0.26690542697906494 +karman_re50,ppo,142,56.8,velocity,lower_ux,0.9858405590057373 +karman_re50,ppo,142,56.8,velocity,lower_uy,0.12827929854393005 +karman_re50,ppo,143,57.2,velocity,upper_ux,0.9226301312446594 +karman_re50,ppo,143,57.2,velocity,upper_uy,0.34063613414764404 +karman_re50,ppo,143,57.2,velocity,center_ux,0.9916499853134155 +karman_re50,ppo,143,57.2,velocity,center_uy,0.30541789531707764 +karman_re50,ppo,143,57.2,velocity,lower_ux,1.0144951343536377 +karman_re50,ppo,143,57.2,velocity,lower_uy,0.15586218237876892 +karman_re50,ppo,144,57.6,velocity,upper_ux,0.8834388256072998 +karman_re50,ppo,144,57.6,velocity,upper_uy,0.38027557730674744 +karman_re50,ppo,144,57.6,velocity,center_ux,1.046966314315796 +karman_re50,ppo,144,57.6,velocity,center_uy,0.3087592124938965 +karman_re50,ppo,144,57.6,velocity,lower_ux,1.0428283214569092 +karman_re50,ppo,144,57.6,velocity,lower_uy,0.1791633814573288 +karman_re50,ppo,145,58.0,velocity,upper_ux,0.8764567375183105 +karman_re50,ppo,145,58.0,velocity,upper_uy,0.33786869049072266 +karman_re50,ppo,145,58.0,velocity,center_ux,1.0880318880081177 +karman_re50,ppo,145,58.0,velocity,center_uy,0.28781285881996155 +karman_re50,ppo,145,58.0,velocity,lower_ux,1.0679153203964233 +karman_re50,ppo,145,58.0,velocity,lower_uy,0.20174488425254822 +karman_re50,ppo,146,58.4,velocity,upper_ux,0.8876023888587952 +karman_re50,ppo,146,58.4,velocity,upper_uy,0.2512626647949219 +karman_re50,ppo,146,58.4,velocity,center_ux,1.1062018871307373 +karman_re50,ppo,146,58.4,velocity,center_uy,0.2503940761089325 +karman_re50,ppo,146,58.4,velocity,lower_ux,1.0873069763183594 +karman_re50,ppo,146,58.4,velocity,lower_uy,0.22312870621681213 +karman_re50,ppo,147,58.8,velocity,upper_ux,0.9058239459991455 +karman_re50,ppo,147,58.8,velocity,upper_uy,0.16308064758777618 +karman_re50,ppo,147,58.8,velocity,center_ux,1.1001003980636597 +karman_re50,ppo,147,58.8,velocity,center_uy,0.20418761670589447 +karman_re50,ppo,147,58.8,velocity,lower_ux,1.0987716913223267 +karman_re50,ppo,147,58.8,velocity,lower_uy,0.23924918472766876 +karman_re50,ppo,148,59.2,velocity,upper_ux,0.9235029816627502 +karman_re50,ppo,148,59.2,velocity,upper_uy,0.09617588669061661 +karman_re50,ppo,148,59.2,velocity,center_ux,1.0782251358032227 +karman_re50,ppo,148,59.2,velocity,center_uy,0.15442341566085815 +karman_re50,ppo,148,59.2,velocity,lower_ux,1.1004825830459595 +karman_re50,ppo,148,59.2,velocity,lower_uy,0.24031361937522888 +karman_re50,ppo,149,59.6,velocity,upper_ux,0.9357953071594238 +karman_re50,ppo,149,59.6,velocity,upper_uy,0.0424802303314209 +karman_re50,ppo,149,59.6,velocity,center_ux,1.0536315441131592 +karman_re50,ppo,149,59.6,velocity,center_uy,0.1016148030757904 +karman_re50,ppo,149,59.6,velocity,lower_ux,1.0912559032440186 +karman_re50,ppo,149,59.6,velocity,lower_uy,0.2136886566877365 +karman_re50,ppo,150,60.0,velocity,upper_ux,0.9429171085357666 +karman_re50,ppo,150,60.0,velocity,upper_uy,-0.014047504402697086 +karman_re50,ppo,150,60.0,velocity,center_ux,1.0343825817108154 +karman_re50,ppo,150,60.0,velocity,center_uy,0.04241309314966202 +karman_re50,ppo,150,60.0,velocity,lower_ux,1.0711687803268433 +karman_re50,ppo,150,60.0,velocity,lower_uy,0.15190652012825012 +karman_re50,ppo,151,60.4,velocity,upper_ux,0.9494089484214783 +karman_re50,ppo,151,60.4,velocity,upper_uy,-0.07289699465036392 +karman_re50,ppo,151,60.4,velocity,center_ux,1.0200426578521729 +karman_re50,ppo,151,60.4,velocity,center_uy,-0.025468040257692337 +karman_re50,ppo,151,60.4,velocity,lower_ux,1.042892575263977 +karman_re50,ppo,151,60.4,velocity,lower_uy,0.060223840177059174 +karman_re50,ppo,152,60.8,velocity,upper_ux,0.9596002101898193 +karman_re50,ppo,152,60.8,velocity,upper_uy,-0.12241528183221817 +karman_re50,ppo,152,60.8,velocity,center_ux,1.0078468322753906 +karman_re50,ppo,152,60.8,velocity,center_uy,-0.09742823243141174 +karman_re50,ppo,152,60.8,velocity,lower_ux,1.0136291980743408 +karman_re50,ppo,152,60.8,velocity,lower_uy,-0.043163470923900604 +karman_re50,ppo,153,61.2,velocity,upper_ux,0.9744788408279419 +karman_re50,ppo,153,61.2,velocity,upper_uy,-0.1584908366203308 +karman_re50,ppo,153,61.2,velocity,center_ux,0.9996082782745361 +karman_re50,ppo,153,61.2,velocity,center_uy,-0.16180843114852905 +karman_re50,ppo,153,61.2,velocity,lower_ux,0.9942046403884888 +karman_re50,ppo,153,61.2,velocity,lower_uy,-0.13439755141735077 +karman_re50,ppo,154,61.6,velocity,upper_ux,0.9929054379463196 +karman_re50,ppo,154,61.6,velocity,upper_uy,-0.18805812299251556 +karman_re50,ppo,154,61.6,velocity,center_ux,0.9983875155448914 +karman_re50,ppo,154,61.6,velocity,center_uy,-0.21037131547927856 +karman_re50,ppo,154,61.6,velocity,lower_ux,0.9893712401390076 +karman_re50,ppo,154,61.6,velocity,lower_uy,-0.19824029505252838 +karman_re50,ppo,155,62.0,velocity,upper_ux,1.0134336948394775 +karman_re50,ppo,155,62.0,velocity,upper_uy,-0.21970482170581818 +karman_re50,ppo,155,62.0,velocity,center_ux,1.0020875930786133 +karman_re50,ppo,155,62.0,velocity,center_uy,-0.24613821506500244 +karman_re50,ppo,155,62.0,velocity,lower_ux,0.9922275543212891 +karman_re50,ppo,155,62.0,velocity,lower_uy,-0.2347950041294098 +karman_re50,ppo,156,62.4,velocity,upper_ux,1.0349249839782715 +karman_re50,ppo,156,62.4,velocity,upper_uy,-0.2564833462238312 +karman_re50,ppo,156,62.4,velocity,center_ux,1.0049219131469727 +karman_re50,ppo,156,62.4,velocity,center_uy,-0.27553924918174744 +karman_re50,ppo,156,62.4,velocity,lower_ux,0.9932302832603455 +karman_re50,ppo,156,62.4,velocity,lower_uy,-0.24898138642311096 +karman_re50,ppo,157,62.8,velocity,upper_ux,1.0563957691192627 +karman_re50,ppo,157,62.8,velocity,upper_uy,-0.2967103123664856 +karman_re50,ppo,157,62.8,velocity,center_ux,1.001708984375 +karman_re50,ppo,157,62.8,velocity,center_uy,-0.2996954321861267 +karman_re50,ppo,157,62.8,velocity,lower_ux,0.9869892001152039 +karman_re50,ppo,157,62.8,velocity,lower_uy,-0.24446244537830353 +karman_re50,ppo,158,63.2,velocity,upper_ux,1.076259732246399 +karman_re50,ppo,158,63.2,velocity,upper_uy,-0.3325008153915405 +karman_re50,ppo,158,63.2,velocity,center_ux,0.989257276058197 +karman_re50,ppo,158,63.2,velocity,center_uy,-0.31127670407295227 +karman_re50,ppo,158,63.2,velocity,lower_ux,0.9723467826843262 +karman_re50,ppo,158,63.2,velocity,lower_uy,-0.22298206388950348 +karman_re50,ppo,159,63.6,velocity,upper_ux,1.0924019813537598 +karman_re50,ppo,159,63.6,velocity,upper_uy,-0.3468915820121765 +karman_re50,ppo,159,63.6,velocity,center_ux,0.9675083160400391 +karman_re50,ppo,159,63.6,velocity,center_uy,-0.2970685660839081 +karman_re50,ppo,159,63.6,velocity,lower_ux,0.9528896808624268 +karman_re50,ppo,159,63.6,velocity,lower_uy,-0.18536201119422913 +karman_re50,ppo,160,64.0,velocity,upper_ux,1.1028116941452026 +karman_re50,ppo,160,64.0,velocity,upper_uy,-0.3190288841724396 +karman_re50,ppo,160,64.0,velocity,center_ux,0.9401729702949524 +karman_re50,ppo,160,64.0,velocity,center_uy,-0.24375192821025848 +karman_re50,ppo,160,64.0,velocity,lower_ux,0.9358036518096924 +karman_re50,ppo,160,64.0,velocity,lower_uy,-0.13281932473182678 +karman_re50,ppo,161,64.4,velocity,upper_ux,1.105850100517273 +karman_re50,ppo,161,64.4,velocity,upper_uy,-0.2412511110305786 +karman_re50,ppo,161,64.4,velocity,center_ux,0.9130575656890869 +karman_re50,ppo,161,64.4,velocity,center_uy,-0.14575785398483276 +karman_re50,ppo,161,64.4,velocity,lower_ux,0.927388608455658 +karman_re50,ppo,161,64.4,velocity,lower_uy,-0.06870866566896439 +karman_re50,ppo,162,64.8,velocity,upper_ux,1.099217414855957 +karman_re50,ppo,162,64.8,velocity,upper_uy,-0.12486841529607773 +karman_re50,ppo,162,64.8,velocity,center_ux,0.8942163586616516 +karman_re50,ppo,162,64.8,velocity,center_uy,-0.011799374595284462 +karman_re50,ppo,162,64.8,velocity,lower_ux,0.9300599694252014 +karman_re50,ppo,162,64.8,velocity,lower_uy,8.077677193796262e-05 +karman_re50,ppo,163,65.2,velocity,upper_ux,1.0757044553756714 +karman_re50,ppo,163,65.2,velocity,upper_uy,0.01658308506011963 +karman_re50,ppo,163,65.2,velocity,center_ux,0.8967444896697998 +karman_re50,ppo,163,65.2,velocity,center_uy,0.12770691514015198 +karman_re50,ppo,163,65.2,velocity,lower_ux,0.943376362323761 +karman_re50,ppo,163,65.2,velocity,lower_uy,0.06280652433633804 +karman_re50,ppo,164,65.6,velocity,upper_ux,1.0261584520339966 +karman_re50,ppo,164,65.6,velocity,upper_uy,0.17417117953300476 +karman_re50,ppo,164,65.6,velocity,center_ux,0.9289153218269348 +karman_re50,ppo,164,65.6,velocity,center_uy,0.23092591762542725 +karman_re50,ppo,164,65.6,velocity,lower_ux,0.9653018116950989 +karman_re50,ppo,164,65.6,velocity,lower_uy,0.10984537750482559 +karman_re50,ppo,165,66.0,velocity,upper_ux,0.9650858044624329 +karman_re50,ppo,165,66.0,velocity,upper_uy,0.3093159794807434 +karman_re50,ppo,165,66.0,velocity,center_ux,0.9805257320404053 +karman_re50,ppo,165,66.0,velocity,center_uy,0.28180474042892456 +karman_re50,ppo,165,66.0,velocity,lower_ux,0.9922180771827698 +karman_re50,ppo,165,66.0,velocity,lower_uy,0.14186698198318481 +karman_re50,ppo,166,66.4,velocity,upper_ux,0.9252355098724365 +karman_re50,ppo,166,66.4,velocity,upper_uy,0.36721178889274597 +karman_re50,ppo,166,66.4,velocity,center_ux,1.033663034439087 +karman_re50,ppo,166,66.4,velocity,center_uy,0.29206088185310364 +karman_re50,ppo,166,66.4,velocity,lower_ux,1.0200088024139404 +karman_re50,ppo,166,66.4,velocity,lower_uy,0.1668328493833542 +karman_re50,ppo,167,66.8,velocity,upper_ux,0.9163652658462524 +karman_re50,ppo,167,66.8,velocity,upper_uy,0.34250256419181824 +karman_re50,ppo,167,66.8,velocity,center_ux,1.0744678974151611 +karman_re50,ppo,167,66.8,velocity,center_uy,0.2787993550300598 +karman_re50,ppo,167,66.8,velocity,lower_ux,1.045602560043335 +karman_re50,ppo,167,66.8,velocity,lower_uy,0.19116531312465668 +karman_re50,ppo,168,67.2,velocity,upper_ux,0.9256784915924072 +karman_re50,ppo,168,67.2,velocity,upper_uy,0.2711343467235565 +karman_re50,ppo,168,67.2,velocity,center_ux,1.0945541858673096 +karman_re50,ppo,168,67.2,velocity,center_uy,0.2550809979438782 +karman_re50,ppo,168,67.2,velocity,lower_ux,1.067089319229126 +karman_re50,ppo,168,67.2,velocity,lower_uy,0.21642111241817474 +karman_re50,ppo,169,67.6,velocity,upper_ux,0.9396114349365234 +karman_re50,ppo,169,67.6,velocity,upper_uy,0.19368401169776917 +karman_re50,ppo,169,67.6,velocity,center_ux,1.0925060510635376 +karman_re50,ppo,169,67.6,velocity,center_uy,0.22783662378787994 +karman_re50,ppo,169,67.6,velocity,lower_ux,1.0830107927322388 +karman_re50,ppo,169,67.6,velocity,lower_uy,0.24022231996059418 +karman_re50,ppo,170,68.0,velocity,upper_ux,0.950369119644165 +karman_re50,ppo,170,68.0,velocity,upper_uy,0.131767138838768 +karman_re50,ppo,170,68.0,velocity,center_ux,1.0743716955184937 +karman_re50,ppo,170,68.0,velocity,center_uy,0.19632044434547424 +karman_re50,ppo,170,68.0,velocity,lower_ux,1.0920313596725464 +karman_re50,ppo,170,68.0,velocity,lower_uy,0.25455954670906067 +karman_re50,ppo,171,68.4,velocity,upper_ux,0.9553202986717224 +karman_re50,ppo,171,68.4,velocity,upper_uy,0.08031541854143143 +karman_re50,ppo,171,68.4,velocity,center_ux,1.0503231287002563 +karman_re50,ppo,171,68.4,velocity,center_uy,0.15483754873275757 +karman_re50,ppo,171,68.4,velocity,lower_ux,1.092757225036621 +karman_re50,ppo,171,68.4,velocity,lower_uy,0.24563339352607727 +karman_re50,ppo,172,68.8,velocity,upper_ux,0.9556600451469421 +karman_re50,ppo,172,68.8,velocity,upper_uy,0.024860195815563202 +karman_re50,ppo,172,68.8,velocity,center_ux,1.0288811922073364 +karman_re50,ppo,172,68.8,velocity,center_uy,0.09880158305168152 +karman_re50,ppo,172,68.8,velocity,lower_ux,1.0838574171066284 +karman_re50,ppo,172,68.8,velocity,lower_uy,0.20085091888904572 +karman_re50,ppo,173,69.2,velocity,upper_ux,0.9554228782653809 +karman_re50,ppo,173,69.2,velocity,upper_uy,-0.03710786998271942 +karman_re50,ppo,173,69.2,velocity,center_ux,1.012836217880249 +karman_re50,ppo,173,69.2,velocity,center_uy,0.02838975004851818 +karman_re50,ppo,173,69.2,velocity,lower_ux,1.065234899520874 +karman_re50,ppo,173,69.2,velocity,lower_uy,0.11886589229106903 +karman_re50,ppo,174,69.6,velocity,upper_ux,0.9593147039413452 +karman_re50,ppo,174,69.6,velocity,upper_uy,-0.09440328925848007 +karman_re50,ppo,174,69.6,velocity,center_ux,1.0002888441085815 +karman_re50,ppo,174,69.6,velocity,center_uy,-0.05050428956747055 +karman_re50,ppo,174,69.6,velocity,lower_ux,1.0400248765945435 +karman_re50,ppo,174,69.6,velocity,lower_uy,0.013447066769003868 +karman_re50,ppo,175,70.0,velocity,upper_ux,0.9694923162460327 +karman_re50,ppo,175,70.0,velocity,upper_uy,-0.1383025050163269 +karman_re50,ppo,175,70.0,velocity,center_ux,0.990904688835144 +karman_re50,ppo,175,70.0,velocity,center_uy,-0.1265905350446701 +karman_re50,ppo,175,70.0,velocity,lower_ux,1.016886830329895 +karman_re50,ppo,175,70.0,velocity,lower_uy,-0.09101707488298416 +karman_re50,ppo,176,70.4,velocity,upper_ux,0.9852138757705688 +karman_re50,ppo,176,70.4,velocity,upper_uy,-0.17181581258773804 +karman_re50,ppo,176,70.4,velocity,center_ux,0.9879194498062134 +karman_re50,ppo,176,70.4,velocity,center_uy,-0.18790201842784882 +karman_re50,ppo,176,70.4,velocity,lower_ux,1.0048772096633911 +karman_re50,ppo,176,70.4,velocity,lower_uy,-0.17177116870880127 +karman_re50,ppo,177,70.8,velocity,upper_ux,1.004555106163025 +karman_re50,ppo,177,70.8,velocity,upper_uy,-0.2040037214756012 +karman_re50,ppo,177,70.8,velocity,center_ux,0.9916115403175354 +karman_re50,ppo,177,70.8,velocity,center_uy,-0.23235884308815002 +karman_re50,ppo,177,70.8,velocity,lower_ux,1.0026692152023315 +karman_re50,ppo,177,70.8,velocity,lower_uy,-0.22265835106372833 +karman_re50,ppo,178,71.2,velocity,upper_ux,1.0257736444473267 +karman_re50,ppo,178,71.2,velocity,upper_uy,-0.24036626517772675 +karman_re50,ppo,178,71.2,velocity,center_ux,0.9969636797904968 +karman_re50,ppo,178,71.2,velocity,center_uy,-0.26645800471305847 +karman_re50,ppo,178,71.2,velocity,lower_ux,1.0016754865646362 +karman_re50,ppo,178,71.2,velocity,lower_uy,-0.2486792802810669 +karman_re50,ppo,179,71.6,velocity,upper_ux,1.0476237535476685 +karman_re50,ppo,179,71.6,velocity,upper_uy,-0.2810550630092621 +karman_re50,ppo,179,71.6,velocity,center_ux,0.9979973435401917 +karman_re50,ppo,179,71.6,velocity,center_uy,-0.29485824704170227 +karman_re50,ppo,179,71.6,velocity,lower_ux,0.9955499172210693 +karman_re50,ppo,179,71.6,velocity,lower_uy,-0.25449568033218384 +karman_re50,ppo,180,72.0,velocity,upper_ux,1.0686475038528442 +karman_re50,ppo,180,72.0,velocity,upper_uy,-0.32084259390830994 +karman_re50,ppo,180,72.0,velocity,center_ux,0.9905959367752075 +karman_re50,ppo,180,72.0,velocity,center_uy,-0.3138502836227417 +karman_re50,ppo,180,72.0,velocity,lower_ux,0.9817930459976196 +karman_re50,ppo,180,72.0,velocity,lower_uy,-0.2419213056564331 +karman_re50,ppo,181,72.4,velocity,upper_ux,1.0868417024612427 +karman_re50,ppo,181,72.4,velocity,upper_uy,-0.3459934890270233 +karman_re50,ppo,181,72.4,velocity,center_ux,0.9734776020050049 +karman_re50,ppo,181,72.4,velocity,center_uy,-0.31178969144821167 +karman_re50,ppo,181,72.4,velocity,lower_ux,0.9617999792098999 +karman_re50,ppo,181,72.4,velocity,lower_uy,-0.2109750509262085 +karman_re50,ppo,182,72.8,velocity,upper_ux,1.1000547409057617 +karman_re50,ppo,182,72.8,velocity,upper_uy,-0.33521705865859985 +karman_re50,ppo,182,72.8,velocity,center_ux,0.9491370320320129 +karman_re50,ppo,182,72.8,velocity,center_uy,-0.2741739749908447 +karman_re50,ppo,182,72.8,velocity,lower_ux,0.9412893056869507 +karman_re50,ppo,182,72.8,velocity,lower_uy,-0.16210335493087769 +karman_re50,ppo,183,73.2,velocity,upper_ux,1.106326699256897 +karman_re50,ppo,183,73.2,velocity,upper_uy,-0.27381575107574463 +karman_re50,ppo,183,73.2,velocity,center_ux,0.9226852655410767 +karman_re50,ppo,183,73.2,velocity,center_uy,-0.1912768930196762 +karman_re50,ppo,183,73.2,velocity,lower_ux,0.9272412061691284 +karman_re50,ppo,183,73.2,velocity,lower_uy,-0.09831520169973373 +karman_re50,ppo,184,73.6,velocity,upper_ux,1.1036126613616943 +karman_re50,ppo,184,73.6,velocity,upper_uy,-0.1668878197669983 +karman_re50,ppo,184,73.6,velocity,center_ux,0.9008870124816895 +karman_re50,ppo,184,73.6,velocity,center_uy,-0.06572839617729187 +karman_re50,ppo,184,73.6,velocity,lower_ux,0.9238983392715454 +karman_re50,ppo,184,73.6,velocity,lower_uy,-0.026663916185498238 +karman_re50,ppo,185,74.0,velocity,upper_ux,1.0866093635559082 +karman_re50,ppo,185,74.0,velocity,upper_uy,-0.02817963995039463 +karman_re50,ppo,185,74.0,velocity,center_ux,0.8953863382339478 +karman_re50,ppo,185,74.0,velocity,center_uy,0.0792696624994278 +karman_re50,ppo,185,74.0,velocity,lower_ux,0.9320151805877686 +karman_re50,ppo,185,74.0,velocity,lower_uy,0.04235129803419113 +karman_re50,ppo,186,74.4,velocity,upper_ux,1.045570969581604 +karman_re50,ppo,186,74.4,velocity,upper_uy,0.13417068123817444 +karman_re50,ppo,186,74.4,velocity,center_ux,0.9180870652198792 +karman_re50,ppo,186,74.4,velocity,center_uy,0.19956247508525848 +karman_re50,ppo,186,74.4,velocity,lower_ux,0.950208306312561 +karman_re50,ppo,186,74.4,velocity,lower_uy,0.09759846329689026 +karman_re50,ppo,187,74.8,velocity,upper_ux,0.9888365268707275 +karman_re50,ppo,187,74.8,velocity,upper_uy,0.2881256639957428 +karman_re50,ppo,187,74.8,velocity,center_ux,0.9637770652770996 +karman_re50,ppo,187,74.8,velocity,center_uy,0.2672852575778961 +karman_re50,ppo,187,74.8,velocity,lower_ux,0.9753488302230835 +karman_re50,ppo,187,74.8,velocity,lower_uy,0.1362733393907547 +karman_re50,ppo,188,75.2,velocity,upper_ux,0.9495310187339783 +karman_re50,ppo,188,75.2,velocity,upper_uy,0.3717608153820038 +karman_re50,ppo,188,75.2,velocity,center_ux,1.014319896697998 +karman_re50,ppo,188,75.2,velocity,center_uy,0.29076021909713745 +karman_re50,ppo,188,75.2,velocity,lower_ux,1.0032845735549927 +karman_re50,ppo,188,75.2,velocity,lower_uy,0.1652308702468872 +karman_re50,ppo,189,75.6,velocity,upper_ux,0.9416441917419434 +karman_re50,ppo,189,75.6,velocity,upper_uy,0.3685901165008545 +karman_re50,ppo,189,75.6,velocity,center_ux,1.055324912071228 +karman_re50,ppo,189,75.6,velocity,center_uy,0.29049593210220337 +karman_re50,ppo,189,75.6,velocity,lower_ux,1.0306775569915771 +karman_re50,ppo,189,75.6,velocity,lower_uy,0.19229073822498322 +karman_re50,ppo,190,76.0,velocity,upper_ux,0.9503718018531799 +karman_re50,ppo,190,76.0,velocity,upper_uy,0.31228822469711304 +karman_re50,ppo,190,76.0,velocity,center_ux,1.0792779922485352 +karman_re50,ppo,190,76.0,velocity,center_uy,0.2807852625846863 +karman_re50,ppo,190,76.0,velocity,lower_ux,1.055525541305542 +karman_re50,ppo,190,76.0,velocity,lower_uy,0.22042861580848694 +karman_re50,ppo,191,76.4,velocity,upper_ux,0.9590641260147095 +karman_re50,ppo,191,76.4,velocity,upper_uy,0.23961175978183746 +karman_re50,ppo,191,76.4,velocity,center_ux,1.084256649017334 +karman_re50,ppo,191,76.4,velocity,center_uy,0.26594653725624084 +karman_re50,ppo,191,76.4,velocity,lower_ux,1.076377511024475 +karman_re50,ppo,191,76.4,velocity,lower_uy,0.24810606241226196 +karman_re50,ppo,192,76.8,velocity,upper_ux,0.9611361026763916 +karman_re50,ppo,192,76.8,velocity,upper_uy,0.17205968499183655 +karman_re50,ppo,192,76.8,velocity,center_ux,1.0731444358825684 +karman_re50,ppo,192,76.8,velocity,center_uy,0.2422834187746048 +karman_re50,ppo,192,76.8,velocity,lower_ux,1.0916839838027954 +karman_re50,ppo,192,76.8,velocity,lower_uy,0.26866528391838074 +karman_re50,ppo,193,77.2,velocity,upper_ux,0.9577552080154419 +karman_re50,ppo,193,77.2,velocity,upper_uy,0.11299408227205276 +karman_re50,ppo,193,77.2,velocity,center_ux,1.052768349647522 +karman_re50,ppo,193,77.2,velocity,center_uy,0.20263826847076416 +karman_re50,ppo,193,77.2,velocity,lower_ux,1.0996081829071045 +karman_re50,ppo,193,77.2,velocity,lower_uy,0.2684429883956909 +karman_re50,ppo,194,77.6,velocity,upper_ux,0.9523419141769409 +karman_re50,ppo,194,77.6,velocity,upper_uy,0.05439673736691475 +karman_re50,ppo,194,77.6,velocity,center_ux,1.0311920642852783 +karman_re50,ppo,194,77.6,velocity,center_uy,0.1433313637971878 +karman_re50,ppo,194,77.6,velocity,lower_ux,1.0979363918304443 +karman_re50,ppo,194,77.6,velocity,lower_uy,0.23252718150615692 +karman_re50,ppo,195,78.0,velocity,upper_ux,0.9482616186141968 +karman_re50,ppo,195,78.0,velocity,upper_uy,-0.009659629315137863 +karman_re50,ppo,195,78.0,velocity,center_ux,1.0136924982070923 +karman_re50,ppo,195,78.0,velocity,center_uy,0.06678148359060287 +karman_re50,ppo,195,78.0,velocity,lower_ux,1.0853270292282104 +karman_re50,ppo,195,78.0,velocity,lower_uy,0.15571081638336182 +karman_re50,ppo,196,78.4,velocity,upper_ux,0.9490377902984619 +karman_re50,ppo,196,78.4,velocity,upper_uy,-0.07298944145441055 +karman_re50,ppo,196,78.4,velocity,center_ux,1.000525951385498 +karman_re50,ppo,196,78.4,velocity,center_uy,-0.019520310685038567 +karman_re50,ppo,196,78.4,velocity,lower_ux,1.0635309219360352 +karman_re50,ppo,196,78.4,velocity,lower_uy,0.04929971694946289 +karman_re50,ppo,197,78.8,velocity,upper_ux,0.9569374322891235 +karman_re50,ppo,197,78.8,velocity,upper_uy,-0.12475065141916275 +karman_re50,ppo,197,78.8,velocity,center_ux,0.9906805157661438 +karman_re50,ppo,197,78.8,velocity,center_uy,-0.10460047423839569 +karman_re50,ppo,197,78.8,velocity,lower_ux,1.040235996246338 +karman_re50,ppo,197,78.8,velocity,lower_uy,-0.062336087226867676 +karman_re50,ppo,198,79.2,velocity,upper_ux,0.9716227054595947 +karman_re50,ppo,198,79.2,velocity,upper_uy,-0.16266216337680817 +karman_re50,ppo,198,79.2,velocity,center_ux,0.9865984916687012 +karman_re50,ppo,198,79.2,velocity,center_uy,-0.17513157427310944 +karman_re50,ppo,198,79.2,velocity,lower_ux,1.0257662534713745 +karman_re50,ppo,198,79.2,velocity,lower_uy,-0.15323323011398315 +karman_re50,ppo,199,79.6,velocity,upper_ux,0.9909868836402893 +karman_re50,ppo,199,79.6,velocity,upper_uy,-0.19445031881332397 +karman_re50,ppo,199,79.6,velocity,center_ux,0.9899606108665466 +karman_re50,ppo,199,79.6,velocity,center_uy,-0.2251037359237671 +karman_re50,ppo,199,79.6,velocity,lower_ux,1.021317720413208 +karman_re50,ppo,199,79.6,velocity,lower_uy,-0.2131897360086441 +karman_re50,ppo,200,80.0,velocity,upper_ux,1.0127291679382324 +karman_re50,ppo,200,80.0,velocity,upper_uy,-0.2282622754573822 +karman_re50,ppo,200,80.0,velocity,center_ux,0.9968985915184021 +karman_re50,ppo,200,80.0,velocity,center_uy,-0.26027268171310425 +karman_re50,ppo,200,80.0,velocity,lower_ux,1.0192272663116455 +karman_re50,ppo,200,80.0,velocity,lower_uy,-0.24588848650455475 +karman_re50,ppo,201,80.4,velocity,upper_ux,1.0352495908737183 +karman_re50,ppo,201,80.4,velocity,upper_uy,-0.2666848301887512 +karman_re50,ppo,201,80.4,velocity,center_ux,1.0010685920715332 +karman_re50,ppo,201,80.4,velocity,center_uy,-0.2882438600063324 +karman_re50,ppo,201,80.4,velocity,lower_ux,1.0130743980407715 +karman_re50,ppo,201,80.4,velocity,lower_uy,-0.25593292713165283 +karman_re50,ppo,202,80.8,velocity,upper_ux,1.0572742223739624 +karman_re50,ppo,202,80.8,velocity,upper_uy,-0.30715659260749817 +karman_re50,ppo,202,80.8,velocity,center_ux,0.9975067377090454 +karman_re50,ppo,202,80.8,velocity,center_uy,-0.3093625009059906 +karman_re50,ppo,202,80.8,velocity,lower_ux,0.9999345541000366 +karman_re50,ppo,202,80.8,velocity,lower_uy,-0.2463403195142746 +karman_re50,ppo,203,81.2,velocity,upper_ux,1.0771071910858154 +karman_re50,ppo,203,81.2,velocity,upper_uy,-0.33979132771492004 +karman_re50,ppo,203,81.2,velocity,center_ux,0.9837172031402588 +karman_re50,ppo,203,81.2,velocity,center_uy,-0.31473806500434875 +karman_re50,ppo,203,81.2,velocity,lower_ux,0.9800525903701782 +karman_re50,ppo,203,81.2,velocity,lower_uy,-0.2186243087053299 +karman_re50,ppo,204,81.6,velocity,upper_ux,1.0927157402038574 +karman_re50,ppo,204,81.6,velocity,upper_uy,-0.3456982374191284 +karman_re50,ppo,204,81.6,velocity,center_ux,0.960693895816803 +karman_re50,ppo,204,81.6,velocity,center_uy,-0.290397047996521 +karman_re50,ppo,204,81.6,velocity,lower_ux,0.9580462574958801 +karman_re50,ppo,204,81.6,velocity,lower_uy,-0.17402152717113495 +karman_re50,ppo,205,82.0,velocity,upper_ux,1.1019680500030518 +karman_re50,ppo,205,82.0,velocity,upper_uy,-0.3055381178855896 +karman_re50,ppo,205,82.0,velocity,center_ux,0.932644248008728 +karman_re50,ppo,205,82.0,velocity,center_uy,-0.22395063936710358 +karman_re50,ppo,205,82.0,velocity,lower_ux,0.9407874941825867 +karman_re50,ppo,205,82.0,velocity,lower_uy,-0.11470398306846619 +karman_re50,ppo,206,82.4,velocity,upper_ux,1.102908730506897 +karman_re50,ppo,206,82.4,velocity,upper_uy,-0.21692828834056854 +karman_re50,ppo,206,82.4,velocity,center_ux,0.9056110382080078 +karman_re50,ppo,206,82.4,velocity,center_uy,-0.11288169771432877 +karman_re50,ppo,206,82.4,velocity,lower_ux,0.933159351348877 +karman_re50,ppo,206,82.4,velocity,lower_uy,-0.045772675424814224 +karman_re50,ppo,207,82.8,velocity,upper_ux,1.0920062065124512 +karman_re50,ppo,207,82.8,velocity,upper_uy,-0.09301396459341049 +karman_re50,ppo,207,82.8,velocity,center_ux,0.889568030834198 +karman_re50,ppo,207,82.8,velocity,center_uy,0.028573868796229362 +karman_re50,ppo,207,82.8,velocity,lower_ux,0.9367673397064209 +karman_re50,ppo,207,82.8,velocity,lower_uy,0.02398468181490898 +karman_re50,ppo,208,83.2,velocity,upper_ux,1.0596035718917847 +karman_re50,ppo,208,83.2,velocity,upper_uy,0.05727037042379379 +karman_re50,ppo,208,83.2,velocity,center_ux,0.899129331111908 +karman_re50,ppo,208,83.2,velocity,center_uy,0.1628675013780594 +karman_re50,ppo,208,83.2,velocity,lower_ux,0.9511985182762146 +karman_re50,ppo,208,83.2,velocity,lower_uy,0.08319786190986633 +karman_re50,ppo,209,83.6,velocity,upper_ux,1.0015590190887451 +karman_re50,ppo,209,83.6,velocity,upper_uy,0.221546933054924 +karman_re50,ppo,209,83.6,velocity,center_ux,0.9378526210784912 +karman_re50,ppo,209,83.6,velocity,center_uy,0.25211840867996216 +karman_re50,ppo,209,83.6,velocity,lower_ux,0.9741438031196594 +karman_re50,ppo,209,83.6,velocity,lower_uy,0.12597347795963287 +karman_re50,ppo,210,84.0,velocity,upper_ux,0.9440548419952393 +karman_re50,ppo,210,84.0,velocity,upper_uy,0.3465951085090637 +karman_re50,ppo,210,84.0,velocity,center_ux,0.9904363751411438 +karman_re50,ppo,210,84.0,velocity,center_uy,0.2926001250743866 +karman_re50,ppo,210,84.0,velocity,lower_ux,1.001604437828064 +karman_re50,ppo,210,84.0,velocity,lower_uy,0.1569978892803192 +karman_re50,ppo,211,84.4,velocity,upper_ux,0.9168589115142822 +karman_re50,ppo,211,84.4,velocity,upper_uy,0.3846016824245453 +karman_re50,ppo,211,84.4,velocity,center_ux,1.0396090745925903 +karman_re50,ppo,211,84.4,velocity,center_uy,0.30180054903030396 +karman_re50,ppo,211,84.4,velocity,lower_ux,1.0297174453735352 +karman_re50,ppo,211,84.4,velocity,lower_uy,0.1841108202934265 +karman_re50,ppo,212,84.8,velocity,upper_ux,0.9168626666069031 +karman_re50,ppo,212,84.8,velocity,upper_uy,0.34742113947868347 +karman_re50,ppo,212,84.8,velocity,center_ux,1.0746878385543823 +karman_re50,ppo,212,84.8,velocity,center_uy,0.2944751977920532 +karman_re50,ppo,212,84.8,velocity,lower_ux,1.055850625038147 +karman_re50,ppo,212,84.8,velocity,lower_uy,0.2113032191991806 +karman_re50,ppo,213,85.2,velocity,upper_ux,0.9260150790214539 +karman_re50,ppo,213,85.2,velocity,upper_uy,0.2726428508758545 +karman_re50,ppo,213,85.2,velocity,center_ux,1.0903385877609253 +karman_re50,ppo,213,85.2,velocity,center_uy,0.27643823623657227 +karman_re50,ppo,213,85.2,velocity,lower_ux,1.0780503749847412 +karman_re50,ppo,213,85.2,velocity,lower_uy,0.2379027009010315 +karman_re50,ppo,214,85.6,velocity,upper_ux,0.9336796402931213 +karman_re50,ppo,214,85.6,velocity,upper_uy,0.19294288754463196 +karman_re50,ppo,214,85.6,velocity,center_ux,1.0864648818969727 +karman_re50,ppo,214,85.6,velocity,center_uy,0.24745886027812958 +karman_re50,ppo,214,85.6,velocity,lower_ux,1.0943641662597656 +karman_re50,ppo,214,85.6,velocity,lower_uy,0.2591259777545929 +karman_re50,ppo,215,86.0,velocity,upper_ux,0.9377093315124512 +karman_re50,ppo,215,86.0,velocity,upper_uy,0.12450367212295532 +karman_re50,ppo,215,86.0,velocity,center_ux,1.0687793493270874 +karman_re50,ppo,215,86.0,velocity,center_uy,0.20432540774345398 +karman_re50,ppo,215,86.0,velocity,lower_ux,1.102704644203186 +karman_re50,ppo,215,86.0,velocity,lower_uy,0.26368117332458496 +karman_re50,ppo,216,86.4,velocity,upper_ux,0.9390668272972107 +karman_re50,ppo,216,86.4,velocity,upper_uy,0.06431600451469421 +karman_re50,ppo,216,86.4,velocity,center_ux,1.0465209484100342 +karman_re50,ppo,216,86.4,velocity,center_uy,0.14561647176742554 +karman_re50,ppo,216,86.4,velocity,lower_ux,1.1007670164108276 +karman_re50,ppo,216,86.4,velocity,lower_uy,0.2370700091123581 +karman_re50,ppo,217,86.8,velocity,upper_ux,0.9395566582679749 +karman_re50,ppo,217,86.8,velocity,upper_uy,0.0024252310395240784 +karman_re50,ppo,217,86.8,velocity,center_ux,1.0272514820098877 +karman_re50,ppo,217,86.8,velocity,center_uy,0.07349473237991333 +karman_re50,ppo,217,86.8,velocity,lower_ux,1.0870665311813354 +karman_re50,ppo,217,86.8,velocity,lower_uy,0.1710701584815979 +karman_re50,ppo,218,87.2,velocity,upper_ux,0.9423798322677612 +karman_re50,ppo,218,87.2,velocity,upper_uy,-0.06095379218459129 +karman_re50,ppo,218,87.2,velocity,center_ux,1.0127780437469482 +karman_re50,ppo,218,87.2,velocity,center_uy,-0.007242016959935427 +karman_re50,ppo,218,87.2,velocity,lower_ux,1.0631804466247559 +karman_re50,ppo,218,87.2,velocity,lower_uy,0.0723375678062439 +karman_re50,ppo,219,87.6,velocity,upper_ux,0.950652539730072 +karman_re50,ppo,219,87.6,velocity,upper_uy,-0.11544036120176315 +karman_re50,ppo,219,87.6,velocity,center_ux,1.001462459564209 +karman_re50,ppo,219,87.6,velocity,center_uy,-0.08910978585481644 +karman_re50,ppo,219,87.6,velocity,lower_ux,1.0363550186157227 +karman_re50,ppo,219,87.6,velocity,lower_uy,-0.03807695955038071 +karman_re50,ppo,220,88.0,velocity,upper_ux,0.9650316834449768 +karman_re50,ppo,220,88.0,velocity,upper_uy,-0.15533146262168884 +karman_re50,ppo,220,88.0,velocity,center_ux,0.994662880897522 +karman_re50,ppo,220,88.0,velocity,center_uy,-0.1604204922914505 +karman_re50,ppo,220,88.0,velocity,lower_ux,1.0181769132614136 +karman_re50,ppo,220,88.0,velocity,lower_uy,-0.13376452028751373 +karman_re50,ppo,221,88.4,velocity,upper_ux,0.9840390682220459 +karman_re50,ppo,221,88.4,velocity,upper_uy,-0.1861717402935028 +karman_re50,ppo,221,88.4,velocity,center_ux,0.9952060580253601 +karman_re50,ppo,221,88.4,velocity,center_uy,-0.21252360939979553 +karman_re50,ppo,221,88.4,velocity,lower_ux,1.0131888389587402 +karman_re50,ppo,221,88.4,velocity,lower_uy,-0.19974905252456665 +karman_re50,ppo,222,88.8,velocity,upper_ux,1.0055004358291626 +karman_re50,ppo,222,88.8,velocity,upper_uy,-0.21726906299591064 +karman_re50,ppo,222,88.8,velocity,center_ux,1.0009536743164062 +karman_re50,ppo,222,88.8,velocity,center_uy,-0.24855580925941467 +karman_re50,ppo,222,88.8,velocity,lower_ux,1.0140786170959473 +karman_re50,ppo,222,88.8,velocity,lower_uy,-0.2374163269996643 +karman_re50,ppo,223,89.2,velocity,upper_ux,1.027726173400879 +karman_re50,ppo,223,89.2,velocity,upper_uy,-0.2529383599758148 +karman_re50,ppo,223,89.2,velocity,center_ux,1.0058581829071045 +karman_re50,ppo,223,89.2,velocity,center_uy,-0.2763438820838928 +karman_re50,ppo,223,89.2,velocity,lower_ux,1.0122052431106567 +karman_re50,ppo,223,89.2,velocity,lower_uy,-0.2513939142227173 +karman_re50,ppo,224,89.6,velocity,upper_ux,1.0496206283569336 +karman_re50,ppo,224,89.6,velocity,upper_uy,-0.29236435890197754 +karman_re50,ppo,224,89.6,velocity,center_ux,1.0044173002243042 +karman_re50,ppo,224,89.6,velocity,center_uy,-0.2985994815826416 +karman_re50,ppo,224,89.6,velocity,lower_ux,1.0032577514648438 +karman_re50,ppo,224,89.6,velocity,lower_uy,-0.24498844146728516 +karman_re50,ppo,225,90.0,velocity,upper_ux,1.069828987121582 +karman_re50,ppo,225,90.0,velocity,upper_uy,-0.328622967004776 +karman_re50,ppo,225,90.0,velocity,center_ux,0.9932145476341248 +karman_re50,ppo,225,90.0,velocity,center_uy,-0.30912286043167114 +karman_re50,ppo,225,90.0,velocity,lower_ux,0.9866163730621338 +karman_re50,ppo,225,90.0,velocity,lower_uy,-0.2207169383764267 +karman_re50,ppo,226,90.4,velocity,upper_ux,1.0865569114685059 +karman_re50,ppo,226,90.4,velocity,upper_uy,-0.3460637927055359 +karman_re50,ppo,226,90.4,velocity,center_ux,0.9718897342681885 +karman_re50,ppo,226,90.4,velocity,center_uy,-0.2954982817173004 +karman_re50,ppo,226,90.4,velocity,lower_ux,0.9661072492599487 +karman_re50,ppo,226,90.4,velocity,lower_uy,-0.1809675246477127 +karman_re50,ppo,227,90.8,velocity,upper_ux,1.0977660417556763 +karman_re50,ppo,227,90.8,velocity,upper_uy,-0.32391929626464844 +karman_re50,ppo,227,90.8,velocity,center_ux,0.9436433911323547 +karman_re50,ppo,227,90.8,velocity,center_uy,-0.24450242519378662 +karman_re50,ppo,227,90.8,velocity,lower_ux,0.9486023783683777 +karman_re50,ppo,227,90.8,velocity,lower_uy,-0.12794312834739685 +karman_re50,ppo,228,91.2,velocity,upper_ux,1.1015825271606445 +karman_re50,ppo,228,91.2,velocity,upper_uy,-0.25297486782073975 +karman_re50,ppo,228,91.2,velocity,center_ux,0.9139437675476074 +karman_re50,ppo,228,91.2,velocity,center_uy,-0.15014439821243286 +karman_re50,ppo,228,91.2,velocity,lower_ux,0.9395305514335632 +karman_re50,ppo,228,91.2,velocity,lower_uy,-0.06477648764848709 +karman_re50,ppo,229,91.6,velocity,upper_ux,1.0958880186080933 +karman_re50,ppo,229,91.6,velocity,upper_uy,-0.14350861310958862 +karman_re50,ppo,229,91.6,velocity,center_ux,0.8908822536468506 +karman_re50,ppo,229,91.6,velocity,center_uy,-0.020068461075425148 +karman_re50,ppo,229,91.6,velocity,lower_ux,0.9408432245254517 +karman_re50,ppo,229,91.6,velocity,lower_uy,0.0024608115199953318 +karman_re50,ppo,230,92.0,velocity,upper_ux,1.0742708444595337 +karman_re50,ppo,230,92.0,velocity,upper_uy,-0.010081380605697632 +karman_re50,ppo,230,92.0,velocity,center_ux,0.8879855871200562 +karman_re50,ppo,230,92.0,velocity,center_uy,0.11810825020074844 +karman_re50,ppo,230,92.0,velocity,lower_ux,0.9525295495986938 +karman_re50,ppo,230,92.0,velocity,lower_uy,0.06355965882539749 +karman_re50,ppo,231,92.4,velocity,upper_ux,1.0261627435684204 +karman_re50,ppo,231,92.4,velocity,upper_uy,0.14109131693840027 +karman_re50,ppo,231,92.4,velocity,center_ux,0.9157668948173523 +karman_re50,ppo,231,92.4,velocity,center_uy,0.22455912828445435 +karman_re50,ppo,231,92.4,velocity,lower_ux,0.9732066988945007 +karman_re50,ppo,231,92.4,velocity,lower_uy,0.10957486927509308 +karman_re50,ppo,232,92.8,velocity,upper_ux,0.9599748849868774 +karman_re50,ppo,232,92.8,velocity,upper_uy,0.283098965883255 +karman_re50,ppo,232,92.8,velocity,center_ux,0.9663211107254028 +karman_re50,ppo,232,92.8,velocity,center_uy,0.28157103061676025 +karman_re50,ppo,232,92.8,velocity,lower_ux,0.9995732307434082 +karman_re50,ppo,232,92.8,velocity,lower_uy,0.14168253540992737 +karman_re50,ppo,233,93.2,velocity,upper_ux,0.9085996747016907 +karman_re50,ppo,233,93.2,velocity,upper_uy,0.36064693331718445 +karman_re50,ppo,233,93.2,velocity,center_ux,1.0215301513671875 +karman_re50,ppo,233,93.2,velocity,center_uy,0.2987528443336487 +karman_re50,ppo,233,93.2,velocity,lower_ux,1.0274401903152466 +karman_re50,ppo,233,93.2,velocity,lower_uy,0.16725368797779083 +karman_re50,ppo,234,93.6,velocity,upper_ux,0.8896920084953308 +karman_re50,ppo,234,93.6,velocity,upper_uy,0.35325565934181213 +karman_re50,ppo,234,93.6,velocity,center_ux,1.0668362379074097 +karman_re50,ppo,234,93.6,velocity,center_uy,0.2904406785964966 +karman_re50,ppo,234,93.6,velocity,lower_ux,1.0534454584121704 +karman_re50,ppo,234,93.6,velocity,lower_uy,0.191759392619133 +karman_re50,ppo,235,94.0,velocity,upper_ux,0.8942196369171143 +karman_re50,ppo,235,94.0,velocity,upper_uy,0.2876397669315338 +karman_re50,ppo,235,94.0,velocity,center_ux,1.092634916305542 +karman_re50,ppo,235,94.0,velocity,center_uy,0.2658270001411438 +karman_re50,ppo,235,94.0,velocity,lower_ux,1.075218915939331 +karman_re50,ppo,235,94.0,velocity,lower_uy,0.21608255803585052 +karman_re50,ppo,236,94.4,velocity,upper_ux,0.9087411761283875 +karman_re50,ppo,236,94.4,velocity,upper_uy,0.20477324724197388 +karman_re50,ppo,236,94.4,velocity,center_ux,1.0951957702636719 +karman_re50,ppo,236,94.4,velocity,center_uy,0.23081164062023163 +karman_re50,ppo,236,94.4,velocity,lower_ux,1.0907750129699707 +karman_re50,ppo,236,94.4,velocity,lower_uy,0.23763948678970337 +karman_re50,ppo,237,94.8,velocity,upper_ux,0.9246600866317749 +karman_re50,ppo,237,94.8,velocity,upper_uy,0.1343003809452057 +karman_re50,ppo,237,94.8,velocity,center_ux,1.0791864395141602 +karman_re50,ppo,237,94.8,velocity,center_uy,0.18850451707839966 +karman_re50,ppo,237,94.8,velocity,lower_ux,1.0983904600143433 +karman_re50,ppo,237,94.8,velocity,lower_uy,0.24862521886825562 +karman_re50,ppo,238,95.2,velocity,upper_ux,0.936672568321228 +karman_re50,ppo,238,95.2,velocity,upper_uy,0.07817364484071732 +karman_re50,ppo,238,95.2,velocity,center_ux,1.055681586265564 +karman_re50,ppo,238,95.2,velocity,center_uy,0.13905462622642517 +karman_re50,ppo,238,95.2,velocity,lower_ux,1.096421718597412 +karman_re50,ppo,238,95.2,velocity,lower_uy,0.23612511157989502 +karman_re50,ppo,239,95.6,velocity,upper_ux,0.9431077837944031 +karman_re50,ppo,239,95.6,velocity,upper_uy,0.021870508790016174 +karman_re50,ppo,239,95.6,velocity,center_ux,1.0347974300384521 +karman_re50,ppo,239,95.6,velocity,center_uy,0.08111312985420227 +karman_re50,ppo,239,95.6,velocity,lower_ux,1.0835400819778442 +karman_re50,ppo,239,95.6,velocity,lower_uy,0.18889263272285461 +karman_re50,ppo,240,96.0,velocity,upper_ux,0.9470851421356201 +karman_re50,ppo,240,96.0,velocity,upper_uy,-0.039925023913383484 +karman_re50,ppo,240,96.0,velocity,center_ux,1.0197200775146484 +karman_re50,ppo,240,96.0,velocity,center_uy,0.013713364489376545 +karman_re50,ppo,240,96.0,velocity,lower_ux,1.0604430437088013 +karman_re50,ppo,240,96.0,velocity,lower_uy,0.10646472871303558 +karman_re50,ppo,241,96.4,velocity,upper_ux,0.9537237286567688 +karman_re50,ppo,241,96.4,velocity,upper_uy,-0.0969698503613472 +karman_re50,ppo,241,96.4,velocity,center_ux,1.0078061819076538 +karman_re50,ppo,241,96.4,velocity,center_uy,-0.06041397899389267 +karman_re50,ppo,241,96.4,velocity,lower_ux,1.0318059921264648 +karman_re50,ppo,241,96.4,velocity,lower_uy,0.0028723152354359627 +karman_re50,ppo,242,96.8,velocity,upper_ux,0.9657069444656372 +karman_re50,ppo,242,96.8,velocity,upper_uy,-0.14018626511096954 +karman_re50,ppo,242,96.8,velocity,center_ux,0.9984073638916016 +karman_re50,ppo,242,96.8,velocity,center_uy,-0.13200266659259796 +karman_re50,ppo,242,96.8,velocity,lower_ux,1.0077600479125977 +karman_re50,ppo,242,96.8,velocity,lower_uy,-0.09810208529233932 +karman_re50,ppo,243,97.2,velocity,upper_ux,0.9826438426971436 +karman_re50,ppo,243,97.2,velocity,upper_uy,-0.17239969968795776 +karman_re50,ppo,243,97.2,velocity,center_ux,0.9951376914978027 +karman_re50,ppo,243,97.2,velocity,center_uy,-0.18947146832942963 +karman_re50,ppo,243,97.2,velocity,lower_ux,0.9975315928459167 +karman_re50,ppo,243,97.2,velocity,lower_uy,-0.17510296404361725 +karman_re50,ppo,244,97.6,velocity,upper_ux,1.0026720762252808 +karman_re50,ppo,244,97.6,velocity,upper_uy,-0.2029949128627777 +karman_re50,ppo,244,97.6,velocity,center_ux,0.9984790086746216 +karman_re50,ppo,244,97.6,velocity,center_uy,-0.23082302510738373 +karman_re50,ppo,244,97.6,velocity,lower_ux,0.998492956161499 +karman_re50,ppo,244,97.6,velocity,lower_uy,-0.2228410840034485 +karman_re50,ppo,245,98.0,velocity,upper_ux,1.0239803791046143 +karman_re50,ppo,245,98.0,velocity,upper_uy,-0.23773624002933502 +karman_re50,ppo,245,98.0,velocity,center_ux,1.003391981124878 +karman_re50,ppo,245,98.0,velocity,center_uy,-0.2623487710952759 +karman_re50,ppo,245,98.0,velocity,lower_ux,1.000600814819336 +karman_re50,ppo,245,98.0,velocity,lower_uy,-0.2458304464817047 +karman_re50,ppo,246,98.4,velocity,upper_ux,1.0454217195510864 +karman_re50,ppo,246,98.4,velocity,upper_uy,-0.2770005762577057 +karman_re50,ppo,246,98.4,velocity,center_ux,1.0039334297180176 +karman_re50,ppo,246,98.4,velocity,center_uy,-0.2884950339794159 +karman_re50,ppo,246,98.4,velocity,lower_ux,0.9967802166938782 +karman_re50,ppo,246,98.4,velocity,lower_uy,-0.24827884137630463 +karman_re50,ppo,247,98.8,velocity,upper_ux,1.0657989978790283 +karman_re50,ppo,247,98.8,velocity,upper_uy,-0.31601482629776 +karman_re50,ppo,247,98.8,velocity,center_ux,0.9959954619407654 +karman_re50,ppo,247,98.8,velocity,center_uy,-0.3057797849178314 +karman_re50,ppo,247,98.8,velocity,lower_ux,0.984592616558075 +karman_re50,ppo,247,98.8,velocity,lower_uy,-0.2326393872499466 +karman_re50,ppo,248,99.2,velocity,upper_ux,1.0834472179412842 +karman_re50,ppo,248,99.2,velocity,upper_uy,-0.341918408870697 +karman_re50,ppo,248,99.2,velocity,center_ux,0.9782362580299377 +karman_re50,ppo,248,99.2,velocity,center_uy,-0.3032633066177368 +karman_re50,ppo,248,99.2,velocity,lower_ux,0.9660619497299194 +karman_re50,ppo,248,99.2,velocity,lower_uy,-0.2004290223121643 +karman_re50,ppo,249,99.6,velocity,upper_ux,1.096417784690857 +karman_re50,ppo,249,99.6,velocity,upper_uy,-0.3341653347015381 +karman_re50,ppo,249,99.6,velocity,center_ux,0.952933132648468 +karman_re50,ppo,249,99.6,velocity,center_uy,-0.2672310769557953 +karman_re50,ppo,249,99.6,velocity,lower_ux,0.9473841190338135 +karman_re50,ppo,249,99.6,velocity,lower_uy,-0.1531926691532135 +karman_re50,ppo,250,100.0,velocity,upper_ux,1.1027014255523682 +karman_re50,ppo,250,100.0,velocity,upper_uy,-0.27765733003616333 +karman_re50,ppo,250,100.0,velocity,center_ux,0.9249725937843323 +karman_re50,ppo,250,100.0,velocity,center_uy,-0.18839122354984283 +karman_re50,ppo,250,100.0,velocity,lower_ux,0.9351828694343567 +karman_re50,ppo,250,100.0,velocity,lower_uy,-0.09338449686765671 +karman_re50,ppo,251,100.4,velocity,upper_ux,1.1004623174667358 +karman_re50,ppo,251,100.4,velocity,upper_uy,-0.17694240808486938 +karman_re50,ppo,251,100.4,velocity,center_ux,0.9009824991226196 +karman_re50,ppo,251,100.4,velocity,center_uy,-0.06926403194665909 +karman_re50,ppo,251,100.4,velocity,lower_ux,0.9329767823219299 +karman_re50,ppo,251,100.4,velocity,lower_uy,-0.02621816098690033 +karman_re50,ppo,252,100.8,velocity,upper_ux,1.085621953010559 +karman_re50,ppo,252,100.8,velocity,upper_uy,-0.047833625227212906 +karman_re50,ppo,252,100.8,velocity,center_ux,0.8918774127960205 +karman_re50,ppo,252,100.8,velocity,center_uy,0.06989948451519012 +karman_re50,ppo,252,100.8,velocity,lower_ux,0.9412686228752136 +karman_re50,ppo,252,100.8,velocity,lower_uy,0.03931056335568428 +karman_re50,ppo,253,101.2,velocity,upper_ux,1.048628568649292 +karman_re50,ppo,253,101.2,velocity,upper_uy,0.09977947920560837 +karman_re50,ppo,253,101.2,velocity,center_ux,0.9102804064750671 +karman_re50,ppo,253,101.2,velocity,center_uy,0.1899198293685913 +karman_re50,ppo,253,101.2,velocity,lower_ux,0.9590681195259094 +karman_re50,ppo,253,101.2,velocity,lower_uy,0.0922173485159874 +karman_re50,ppo,254,101.6,velocity,upper_ux,0.9897764325141907 +karman_re50,ppo,254,101.6,velocity,upper_uy,0.2473730593919754 +karman_re50,ppo,254,101.6,velocity,center_ux,0.9546710252761841 +karman_re50,ppo,254,101.6,velocity,center_uy,0.2619113624095917 +karman_re50,ppo,254,101.6,velocity,lower_ux,0.9837942719459534 +karman_re50,ppo,254,101.6,velocity,lower_uy,0.129095196723938 +karman_re50,ppo,255,102.0,velocity,upper_ux,0.9363757967948914 +karman_re50,ppo,255,102.0,velocity,upper_uy,0.3436294198036194 +karman_re50,ppo,255,102.0,velocity,center_ux,1.0085948705673218 +karman_re50,ppo,255,102.0,velocity,center_uy,0.2882872223854065 +karman_re50,ppo,255,102.0,velocity,lower_ux,1.011314868927002 +karman_re50,ppo,255,102.0,velocity,lower_uy,0.15610505640506744 +karman_re50,ppo,256,102.4,velocity,upper_ux,0.9123095870018005 +karman_re50,ppo,256,102.4,velocity,upper_uy,0.3560341000556946 +karman_re50,ppo,256,102.4,velocity,center_ux,1.0558395385742188 +karman_re50,ppo,256,102.4,velocity,center_uy,0.2850423753261566 +karman_re50,ppo,256,102.4,velocity,lower_ux,1.0378037691116333 +karman_re50,ppo,256,102.4,velocity,lower_uy,0.1807049810886383 +karman_re50,ppo,257,102.8,velocity,upper_ux,0.9137812852859497 +karman_re50,ppo,257,102.8,velocity,upper_uy,0.3038700819015503 +karman_re50,ppo,257,102.8,velocity,center_ux,1.0855103731155396 +karman_re50,ppo,257,102.8,velocity,center_uy,0.26603084802627563 +karman_re50,ppo,257,102.8,velocity,lower_ux,1.0608407258987427 +karman_re50,ppo,257,102.8,velocity,lower_uy,0.20600028336048126 +karman_re50,ppo,258,103.2,velocity,upper_ux,0.9265027046203613 +karman_re50,ppo,258,103.2,velocity,upper_uy,0.2275145947933197 +karman_re50,ppo,258,103.2,velocity,center_ux,1.0928359031677246 +karman_re50,ppo,258,103.2,velocity,center_uy,0.2399105578660965 +karman_re50,ppo,258,103.2,velocity,lower_ux,1.0788177251815796 +karman_re50,ppo,258,103.2,velocity,lower_uy,0.23095935583114624 +karman_re50,ppo,259,103.6,velocity,upper_ux,0.9400904178619385 +karman_re50,ppo,259,103.6,velocity,upper_uy,0.158954918384552 +karman_re50,ppo,259,103.6,velocity,center_ux,1.0807795524597168 +karman_re50,ppo,259,103.6,velocity,center_uy,0.20932097733020782 +karman_re50,ppo,259,103.6,velocity,lower_ux,1.0904539823532104 +karman_re50,ppo,259,103.6,velocity,lower_uy,0.2500709891319275 +karman_re50,ppo,260,104.0,velocity,upper_ux,0.9492892622947693 +karman_re50,ppo,260,104.0,velocity,upper_uy,0.10430975258350372 +karman_re50,ppo,260,104.0,velocity,center_ux,1.0585800409317017 +karman_re50,ppo,260,104.0,velocity,center_uy,0.17091074585914612 +karman_re50,ppo,260,104.0,velocity,lower_ux,1.0944359302520752 +karman_re50,ppo,260,104.0,velocity,lower_uy,0.2513701617717743 +karman_re50,ppo,261,104.4,velocity,upper_ux,0.9527824521064758 +karman_re50,ppo,261,104.4,velocity,upper_uy,0.050797853618860245 +karman_re50,ppo,261,104.4,velocity,center_ux,1.0361416339874268 +karman_re50,ppo,261,104.4,velocity,center_uy,0.12013213336467743 +karman_re50,ppo,261,104.4,velocity,lower_ux,1.0890377759933472 +karman_re50,ppo,261,104.4,velocity,lower_uy,0.22087274491786957 +karman_re50,ppo,262,104.8,velocity,upper_ux,0.9531009197235107 +karman_re50,ppo,262,104.8,velocity,upper_uy,-0.010323559865355492 +karman_re50,ppo,262,104.8,velocity,center_ux,1.0187844038009644 +karman_re50,ppo,262,104.8,velocity,center_uy,0.05528857558965683 +karman_re50,ppo,262,104.8,velocity,lower_ux,1.0733802318572998 +karman_re50,ppo,262,104.8,velocity,lower_uy,0.15208253264427185 +karman_re50,ppo,263,105.2,velocity,upper_ux,0.9552844166755676 +karman_re50,ppo,263,105.2,velocity,upper_uy,-0.0717126876115799 +karman_re50,ppo,263,105.2,velocity,center_ux,1.0057669878005981 +karman_re50,ppo,263,105.2,velocity,center_uy,-0.020361153408885002 +karman_re50,ppo,263,105.2,velocity,lower_ux,1.049255609512329 +karman_re50,ppo,263,105.2,velocity,lower_uy,0.05332264304161072 +karman_re50,ppo,264,105.6,velocity,upper_ux,0.9631178379058838 +karman_re50,ppo,264,105.6,velocity,upper_uy,-0.12155432999134064 +karman_re50,ppo,264,105.6,velocity,center_ux,0.9952026605606079 +karman_re50,ppo,264,105.6,velocity,center_uy,-0.09820324927568436 +karman_re50,ppo,264,105.6,velocity,lower_ux,1.0236234664916992 +karman_re50,ppo,264,105.6,velocity,lower_uy,-0.05420810729265213 +karman_re50,ppo,265,106.0,velocity,upper_ux,0.9771534204483032 +karman_re50,ppo,265,106.0,velocity,upper_uy,-0.15816615521907806 +karman_re50,ppo,265,106.0,velocity,center_ux,0.9896009564399719 +karman_re50,ppo,265,106.0,velocity,center_uy,-0.16549599170684814 +karman_re50,ppo,265,106.0,velocity,lower_ux,1.007241129875183 +karman_re50,ppo,265,106.0,velocity,lower_uy,-0.1450861394405365 +karman_re50,ppo,266,106.4,velocity,upper_ux,0.9956719875335693 +karman_re50,ppo,266,106.4,velocity,upper_uy,-0.18962901830673218 +karman_re50,ppo,266,106.4,velocity,center_ux,0.9913315773010254 +karman_re50,ppo,266,106.4,velocity,center_uy,-0.21532946825027466 +karman_re50,ppo,266,106.4,velocity,lower_ux,1.003303050994873 +karman_re50,ppo,266,106.4,velocity,lower_uy,-0.20626060664653778 +karman_re50,ppo,267,106.8,velocity,upper_ux,1.016453504562378 +karman_re50,ppo,267,106.8,velocity,upper_uy,-0.22368933260440826 +karman_re50,ppo,267,106.8,velocity,center_ux,0.9969675540924072 +karman_re50,ppo,267,106.8,velocity,center_uy,-0.2518555521965027 +karman_re50,ppo,267,106.8,velocity,lower_ux,1.004012107849121 +karman_re50,ppo,267,106.8,velocity,lower_uy,-0.24023744463920593 +karman_re50,ppo,268,107.2,velocity,upper_ux,1.0379865169525146 +karman_re50,ppo,268,107.2,velocity,upper_uy,-0.26249343156814575 +karman_re50,ppo,268,107.2,velocity,center_ux,1.00029456615448 +karman_re50,ppo,268,107.2,velocity,center_uy,-0.28152549266815186 +karman_re50,ppo,268,107.2,velocity,lower_ux,1.0011097192764282 +karman_re50,ppo,268,107.2,velocity,lower_uy,-0.2523749768733978 +karman_re50,ppo,269,107.6,velocity,upper_ux,1.0590842962265015 +karman_re50,ppo,269,107.6,velocity,upper_uy,-0.30333346128463745 +karman_re50,ppo,269,107.6,velocity,center_ux,0.9963877201080322 +karman_re50,ppo,269,107.6,velocity,center_uy,-0.30434662103652954 +karman_re50,ppo,269,107.6,velocity,lower_ux,0.9907251596450806 +karman_re50,ppo,269,107.6,velocity,lower_uy,-0.2456849068403244 +karman_re50,ppo,270,108.0,velocity,upper_ux,1.078190803527832 +karman_re50,ppo,270,108.0,velocity,upper_uy,-0.33637329936027527 +karman_re50,ppo,270,108.0,velocity,center_ux,0.9828642010688782 +karman_re50,ppo,270,108.0,velocity,center_uy,-0.311577707529068 +karman_re50,ppo,270,108.0,velocity,lower_ux,0.9729997515678406 +karman_re50,ppo,270,108.0,velocity,lower_uy,-0.22103920578956604 +karman_re50,ppo,271,108.4,velocity,upper_ux,1.093416690826416 +karman_re50,ppo,271,108.4,velocity,upper_uy,-0.34281471371650696 +karman_re50,ppo,271,108.4,velocity,center_ux,0.9608255624771118 +karman_re50,ppo,271,108.4,velocity,center_uy,-0.2895033657550812 +karman_re50,ppo,271,108.4,velocity,lower_ux,0.9524972438812256 +karman_re50,ppo,271,108.4,velocity,lower_uy,-0.17903940379619598 +karman_re50,ppo,272,108.8,velocity,upper_ux,1.102570652961731 +karman_re50,ppo,272,108.8,velocity,upper_uy,-0.3031378388404846 +karman_re50,ppo,272,108.8,velocity,center_ux,0.9343798160552979 +karman_re50,ppo,272,108.8,velocity,center_uy,-0.22586120665073395 +karman_re50,ppo,272,108.8,velocity,lower_ux,0.9360195994377136 +karman_re50,ppo,272,108.8,velocity,lower_uy,-0.12150896340608597 +karman_re50,ppo,273,109.2,velocity,upper_ux,1.1036500930786133 +karman_re50,ppo,273,109.2,velocity,upper_uy,-0.21448855102062225 +karman_re50,ppo,273,109.2,velocity,center_ux,0.9092937707901001 +karman_re50,ppo,273,109.2,velocity,center_uy,-0.11806181073188782 +karman_re50,ppo,273,109.2,velocity,lower_ux,0.9286863803863525 +karman_re50,ppo,273,109.2,velocity,lower_uy,-0.05349835753440857 +karman_re50,ppo,274,109.6,velocity,upper_ux,1.093598484992981 +karman_re50,ppo,274,109.6,velocity,upper_uy,-0.09033288806676865 +karman_re50,ppo,274,109.6,velocity,center_ux,0.8946415781974792 +karman_re50,ppo,274,109.6,velocity,center_uy,0.02043873630464077 +karman_re50,ppo,274,109.6,velocity,lower_ux,0.9322702884674072 +karman_re50,ppo,274,109.6,velocity,lower_uy,0.016343625262379646 +karman_re50,ppo,275,110.0,velocity,upper_ux,1.0641628503799438 +karman_re50,ppo,275,110.0,velocity,upper_uy,0.05778549984097481 +karman_re50,ppo,275,110.0,velocity,center_ux,0.9039367437362671 +karman_re50,ppo,275,110.0,velocity,center_uy,0.15354733169078827 +karman_re50,ppo,275,110.0,velocity,lower_ux,0.946319043636322 +karman_re50,ppo,275,110.0,velocity,lower_uy,0.07656551897525787 +karman_re50,ppo,276,110.4,velocity,upper_ux,1.011111855506897 +karman_re50,ppo,276,110.4,velocity,upper_uy,0.21617744863033295 +karman_re50,ppo,276,110.4,velocity,center_ux,0.9412898421287537 +karman_re50,ppo,276,110.4,velocity,center_uy,0.24294151365756989 +karman_re50,ppo,276,110.4,velocity,lower_ux,0.9687950015068054 +karman_re50,ppo,276,110.4,velocity,lower_uy,0.12026607245206833 +karman_re50,ppo,277,110.8,velocity,upper_ux,0.9575008153915405 +karman_re50,ppo,277,110.8,velocity,upper_uy,0.3354652523994446 +karman_re50,ppo,277,110.8,velocity,center_ux,0.9925389885902405 +karman_re50,ppo,277,110.8,velocity,center_uy,0.2825993597507477 +karman_re50,ppo,277,110.8,velocity,lower_ux,0.9958521127700806 +karman_re50,ppo,277,110.8,velocity,lower_uy,0.15126830339431763 +karman_re50,ppo,278,111.2,velocity,upper_ux,0.9316259622573853 +karman_re50,ppo,278,111.2,velocity,upper_uy,0.37079474329948425 +karman_re50,ppo,278,111.2,velocity,center_ux,1.0402354001998901 +karman_re50,ppo,278,111.2,velocity,center_uy,0.2894640862941742 +karman_re50,ppo,278,111.2,velocity,lower_ux,1.0233759880065918 +karman_re50,ppo,278,111.2,velocity,lower_uy,0.17782743275165558 +karman_re50,ppo,279,111.6,velocity,upper_ux,0.9322498440742493 +karman_re50,ppo,279,111.6,velocity,upper_uy,0.33416548371315 +karman_re50,ppo,279,111.6,velocity,center_ux,1.0731627941131592 +karman_re50,ppo,279,111.6,velocity,center_uy,0.280547559261322 +karman_re50,ppo,279,111.6,velocity,lower_ux,1.0486952066421509 +karman_re50,ppo,279,111.6,velocity,lower_uy,0.20485994219779968 +karman_re50,ppo,280,112.0,velocity,upper_ux,0.9425204396247864 +karman_re50,ppo,280,112.0,velocity,upper_uy,0.26424944400787354 +karman_re50,ppo,280,112.0,velocity,center_ux,1.0863085985183716 +karman_re50,ppo,280,112.0,velocity,center_uy,0.2646905779838562 +karman_re50,ppo,280,112.0,velocity,lower_ux,1.0701981782913208 +karman_re50,ppo,280,112.0,velocity,lower_uy,0.23239903151988983 +karman_re50,ppo,281,112.4,velocity,upper_ux,0.9508441090583801 +karman_re50,ppo,281,112.4,velocity,upper_uy,0.19300010800361633 +karman_re50,ppo,281,112.4,velocity,center_ux,1.0806583166122437 +karman_re50,ppo,281,112.4,velocity,center_uy,0.24271249771118164 +karman_re50,ppo,281,112.4,velocity,lower_ux,1.0865578651428223 +karman_re50,ppo,281,112.4,velocity,lower_uy,0.2563537061214447 +karman_re50,ppo,282,112.8,velocity,upper_ux,0.9540160894393921 +karman_re50,ppo,282,112.8,velocity,upper_uy,0.13248632848262787 +karman_re50,ppo,282,112.8,velocity,center_ux,1.0624840259552002 +karman_re50,ppo,282,112.8,velocity,center_uy,0.20941078662872314 +karman_re50,ppo,282,112.8,velocity,lower_ux,1.0963457822799683 +karman_re50,ppo,282,112.8,velocity,lower_uy,0.2660094201564789 +karman_re50,ppo,283,113.2,velocity,upper_ux,0.9530067443847656 +karman_re50,ppo,283,113.2,velocity,upper_uy,0.07661799341440201 +karman_re50,ppo,283,113.2,velocity,center_ux,1.040388822555542 +karman_re50,ppo,283,113.2,velocity,center_uy,0.15953834354877472 +karman_re50,ppo,283,113.2,velocity,lower_ux,1.097449779510498 +karman_re50,ppo,283,113.2,velocity,lower_uy,0.24625356495380402 +karman_re50,ppo,284,113.6,velocity,upper_ux,0.9502569437026978 +karman_re50,ppo,284,113.6,velocity,upper_uy,0.015616756863892078 +karman_re50,ppo,284,113.6,velocity,center_ux,1.0212221145629883 +karman_re50,ppo,284,113.6,velocity,center_uy,0.09237006306648254 +karman_re50,ppo,284,113.6,velocity,lower_ux,1.0879358053207397 +karman_re50,ppo,284,113.6,velocity,lower_uy,0.18678802251815796 +karman_re50,ppo,285,114.0,velocity,upper_ux,0.9495806694030762 +karman_re50,ppo,285,114.0,velocity,upper_uy,-0.0489007942378521 +karman_re50,ppo,285,114.0,velocity,center_ux,1.0068429708480835 +karman_re50,ppo,285,114.0,velocity,center_uy,0.01246477011591196 +karman_re50,ppo,285,114.0,velocity,lower_ux,1.0681278705596924 +karman_re50,ppo,285,114.0,velocity,lower_uy,0.09183447062969208 +karman_re50,ppo,286,114.4,velocity,upper_ux,0.9546888470649719 +karman_re50,ppo,286,114.4,velocity,upper_uy,-0.10549180209636688 +karman_re50,ppo,286,114.4,velocity,center_ux,0.9955988526344299 +karman_re50,ppo,286,114.4,velocity,center_uy,-0.07162725180387497 +karman_re50,ppo,286,114.4,velocity,lower_ux,1.043196201324463 +karman_re50,ppo,286,114.4,velocity,lower_uy,-0.019356053322553635 +karman_re50,ppo,287,114.8,velocity,upper_ux,0.9668240547180176 +karman_re50,ppo,287,114.8,velocity,upper_uy,-0.14765512943267822 +karman_re50,ppo,287,114.8,velocity,center_ux,0.9885812997817993 +karman_re50,ppo,287,114.8,velocity,center_uy,-0.14738960564136505 +karman_re50,ppo,287,114.8,velocity,lower_ux,1.0238653421401978 +karman_re50,ppo,287,114.8,velocity,lower_uy,-0.11990056931972504 +karman_re50,ppo,288,115.2,velocity,upper_ux,0.9845912456512451 +karman_re50,ppo,288,115.2,velocity,upper_uy,-0.18032045662403107 +karman_re50,ppo,288,115.2,velocity,center_ux,0.9889180064201355 +karman_re50,ppo,288,115.2,velocity,center_uy,-0.20452304184436798 +karman_re50,ppo,288,115.2,velocity,lower_ux,1.0165281295776367 +karman_re50,ppo,288,115.2,velocity,lower_uy,-0.19162359833717346 +karman_re50,ppo,289,115.6,velocity,upper_ux,1.0054571628570557 +karman_re50,ppo,289,115.6,velocity,upper_uy,-0.21270166337490082 +karman_re50,ppo,289,115.6,velocity,center_ux,0.9949239492416382 +karman_re50,ppo,289,115.6,velocity,center_uy,-0.24443739652633667 +karman_re50,ppo,289,115.6,velocity,lower_ux,1.015660285949707 +karman_re50,ppo,289,115.6,velocity,lower_uy,-0.23412474989891052 +karman_re50,ppo,290,116.0,velocity,upper_ux,1.0274443626403809 +karman_re50,ppo,290,116.0,velocity,upper_uy,-0.24938324093818665 +karman_re50,ppo,290,116.0,velocity,center_ux,1.000572919845581 +karman_re50,ppo,290,116.0,velocity,center_uy,-0.2748987674713135 +karman_re50,ppo,290,116.0,velocity,lower_ux,1.012819528579712 +karman_re50,ppo,290,116.0,velocity,lower_uy,-0.2526131570339203 +karman_re50,ppo,291,116.4,velocity,upper_ux,1.049301266670227 +karman_re50,ppo,291,116.4,velocity,upper_uy,-0.2897595167160034 +karman_re50,ppo,291,116.4,velocity,center_ux,1.0001585483551025 +karman_re50,ppo,291,116.4,velocity,center_uy,-0.29947564005851746 +karman_re50,ppo,291,116.4,velocity,lower_ux,1.003461480140686 +karman_re50,ppo,291,116.4,velocity,lower_uy,-0.2507345676422119 +karman_re50,ppo,292,116.8,velocity,upper_ux,1.06969153881073 +karman_re50,ppo,292,116.8,velocity,upper_uy,-0.3271275758743286 +karman_re50,ppo,292,116.8,velocity,center_ux,0.9902845621109009 +karman_re50,ppo,292,116.8,velocity,center_uy,-0.31256482005119324 +karman_re50,ppo,292,116.8,velocity,lower_ux,0.9865990281105042 +karman_re50,ppo,292,116.8,velocity,lower_uy,-0.23035842180252075 +karman_re50,ppo,293,117.2,velocity,upper_ux,1.0869131088256836 +karman_re50,ppo,293,117.2,velocity,upper_uy,-0.3459818959236145 +karman_re50,ppo,293,117.2,velocity,center_ux,0.9706988334655762 +karman_re50,ppo,293,117.2,velocity,center_uy,-0.30170872807502747 +karman_re50,ppo,293,117.2,velocity,lower_ux,0.9654175043106079 +karman_re50,ppo,293,117.2,velocity,lower_uy,-0.19268643856048584 +karman_re50,ppo,294,117.6,velocity,upper_ux,1.098781704902649 +karman_re50,ppo,294,117.6,velocity,upper_uy,-0.3251919150352478 +karman_re50,ppo,294,117.6,velocity,center_ux,0.9444577097892761 +karman_re50,ppo,294,117.6,velocity,center_uy,-0.25314438343048096 +karman_re50,ppo,294,117.6,velocity,lower_ux,0.9463297128677368 +karman_re50,ppo,294,117.6,velocity,lower_uy,-0.13933643698692322 +karman_re50,ppo,295,118.0,velocity,upper_ux,1.1031206846237183 +karman_re50,ppo,295,118.0,velocity,upper_uy,-0.2544344961643219 +karman_re50,ppo,295,118.0,velocity,center_ux,0.9167260527610779 +karman_re50,ppo,295,118.0,velocity,center_uy,-0.15996518731117249 +karman_re50,ppo,295,118.0,velocity,lower_ux,0.9351292252540588 +karman_re50,ppo,295,118.0,velocity,lower_uy,-0.07404297590255737 +karman_re50,ppo,296,118.4,velocity,upper_ux,1.0975855588912964 +karman_re50,ppo,296,118.4,velocity,upper_uy,-0.1429327428340912 +karman_re50,ppo,296,118.4,velocity,center_ux,0.8952040672302246 +karman_re50,ppo,296,118.4,velocity,center_uy,-0.029004428535699844 +karman_re50,ppo,296,118.4,velocity,lower_ux,0.9344910383224487 +karman_re50,ppo,296,118.4,velocity,lower_uy,-0.003984508104622364 +karman_re50,ppo,297,118.8,velocity,upper_ux,1.0757527351379395 +karman_re50,ppo,297,118.8,velocity,upper_uy,-0.004330898635089397 +karman_re50,ppo,297,118.8,velocity,center_ux,0.8931397199630737 +karman_re50,ppo,297,118.8,velocity,center_uy,0.11168067902326584 +karman_re50,ppo,297,118.8,velocity,lower_ux,0.9446996450424194 +karman_re50,ppo,297,118.8,velocity,lower_uy,0.06011047959327698 +karman_re50,ppo,298,119.2,velocity,upper_ux,1.0283137559890747 +karman_re50,ppo,298,119.2,velocity,upper_uy,0.15414099395275116 +karman_re50,ppo,298,119.2,velocity,center_ux,0.9209172129631042 +karman_re50,ppo,298,119.2,velocity,center_uy,0.22001968324184418 +karman_re50,ppo,298,119.2,velocity,lower_ux,0.9644851088523865 +karman_re50,ppo,298,119.2,velocity,lower_uy,0.1089072898030281 +karman_re50,ppo,299,119.6,velocity,upper_ux,0.9672164916992188 +karman_re50,ppo,299,119.6,velocity,upper_uy,0.29893380403518677 +karman_re50,ppo,299,119.6,velocity,center_ux,0.9700636863708496 +karman_re50,ppo,299,119.6,velocity,center_uy,0.277433842420578 +karman_re50,ppo,299,119.6,velocity,lower_ux,0.9905357956886292 +karman_re50,ppo,299,119.6,velocity,lower_uy,0.14318770170211792 +karman_re50,ppo,300,120.0,velocity,upper_ux,0.9257709383964539 +karman_re50,ppo,300,120.0,velocity,upper_uy,0.3720371127128601 +karman_re50,ppo,300,120.0,velocity,center_ux,1.0220967531204224 +karman_re50,ppo,300,120.0,velocity,center_uy,0.2957557439804077 +karman_re50,ppo,300,120.0,velocity,lower_ux,1.0185115337371826 +karman_re50,ppo,300,120.0,velocity,lower_uy,0.1706501990556717 +karman_re50,ppo,301,120.4,velocity,upper_ux,0.9158083200454712 +karman_re50,ppo,301,120.4,velocity,upper_uy,0.36089393496513367 +karman_re50,ppo,301,120.4,velocity,center_ux,1.063289761543274 +karman_re50,ppo,301,120.4,velocity,center_uy,0.29243120551109314 +karman_re50,ppo,301,120.4,velocity,lower_ux,1.0451405048370361 +karman_re50,ppo,301,120.4,velocity,lower_uy,0.19734837114810944 +karman_re50,ppo,302,120.8,velocity,upper_ux,0.9230293035507202 +karman_re50,ppo,302,120.8,velocity,upper_uy,0.29764309525489807 +karman_re50,ppo,302,120.8,velocity,center_ux,1.086054801940918 +karman_re50,ppo,302,120.8,velocity,center_uy,0.2775016129016876 +karman_re50,ppo,302,120.8,velocity,lower_ux,1.0683537721633911 +karman_re50,ppo,302,120.8,velocity,lower_uy,0.2243957668542862 +karman_re50,ppo,303,121.2,velocity,upper_ux,0.932929277420044 +karman_re50,ppo,303,121.2,velocity,upper_uy,0.21948589384555817 +karman_re50,ppo,303,121.2,velocity,center_ux,1.088415503501892 +karman_re50,ppo,303,121.2,velocity,center_uy,0.2537670433521271 +karman_re50,ppo,303,121.2,velocity,lower_ux,1.0865000486373901 +karman_re50,ppo,303,121.2,velocity,lower_uy,0.24903817474842072 +karman_re50,ppo,304,121.6,velocity,upper_ux,0.9398078322410583 +karman_re50,ppo,304,121.6,velocity,upper_uy,0.14971120655536652 +karman_re50,ppo,304,121.6,velocity,center_ux,1.0745056867599487 +karman_re50,ppo,304,121.6,velocity,center_uy,0.21898922324180603 +karman_re50,ppo,304,121.6,velocity,lower_ux,1.0979619026184082 +karman_re50,ppo,304,121.6,velocity,lower_uy,0.26289230585098267 +karman_re50,ppo,305,122.0,velocity,upper_ux,0.94298255443573 +karman_re50,ppo,305,122.0,velocity,upper_uy,0.09036192297935486 +karman_re50,ppo,305,122.0,velocity,center_ux,1.0529069900512695 +karman_re50,ppo,305,122.0,velocity,center_uy,0.16974566876888275 +karman_re50,ppo,305,122.0,velocity,lower_ux,1.1006360054016113 +karman_re50,ppo,305,122.0,velocity,lower_uy,0.25189152359962463 +karman_re50,ppo,306,122.4,velocity,upper_ux,0.9434689283370972 +karman_re50,ppo,306,122.4,velocity,upper_uy,0.031013265252113342 +karman_re50,ppo,306,122.4,velocity,center_ux,1.0321776866912842 +karman_re50,ppo,306,122.4,velocity,center_uy,0.1055697500705719 +karman_re50,ppo,306,122.4,velocity,lower_ux,1.0923234224319458 +karman_re50,ppo,306,122.4,velocity,lower_uy,0.20370641350746155 +karman_re50,ppo,307,122.8,velocity,upper_ux,0.9441485404968262 +karman_re50,ppo,307,122.8,velocity,upper_uy,-0.03286268189549446 +karman_re50,ppo,307,122.8,velocity,center_ux,1.0162700414657593 +karman_re50,ppo,307,122.8,velocity,center_uy,0.029494838789105415 +karman_re50,ppo,307,122.8,velocity,lower_ux,1.0728415250778198 +karman_re50,ppo,307,122.8,velocity,lower_uy,0.1179078072309494 +karman_re50,ppo,308,123.2,velocity,upper_ux,0.948991596698761 +karman_re50,ppo,308,123.2,velocity,upper_uy,-0.09247218072414398 +karman_re50,ppo,308,123.2,velocity,center_ux,1.0039352178573608 +karman_re50,ppo,308,123.2,velocity,center_uy,-0.052356597036123276 +karman_re50,ppo,308,123.2,velocity,lower_ux,1.0464037656784058 +karman_re50,ppo,308,123.2,velocity,lower_uy,0.009778983891010284 +karman_re50,ppo,309,123.6,velocity,upper_ux,0.9602131843566895 +karman_re50,ppo,309,123.6,velocity,upper_uy,-0.138383686542511 +karman_re50,ppo,309,123.6,velocity,center_ux,0.9948821067810059 +karman_re50,ppo,309,123.6,velocity,center_uy,-0.12968310713768005 +karman_re50,ppo,309,123.6,velocity,lower_ux,1.0233875513076782 +karman_re50,ppo,309,123.6,velocity,lower_uy,-0.0950893685221672 +karman_re50,ppo,310,124.0,velocity,upper_ux,0.9772228002548218 +karman_re50,ppo,310,124.0,velocity,upper_uy,-0.17203928530216217 +karman_re50,ppo,310,124.0,velocity,center_ux,0.9924144744873047 +karman_re50,ppo,310,124.0,velocity,center_uy,-0.1906830221414566 +karman_re50,ppo,310,124.0,velocity,lower_ux,1.0131289958953857 +karman_re50,ppo,310,124.0,velocity,lower_uy,-0.17453676462173462 +karman_re50,ppo,311,124.4,velocity,upper_ux,0.9977496862411499 +karman_re50,ppo,311,124.4,velocity,upper_uy,-0.20266586542129517 +karman_re50,ppo,311,124.4,velocity,center_ux,0.9967901110649109 +karman_re50,ppo,311,124.4,velocity,center_uy,-0.23326322436332703 +karman_re50,ppo,311,124.4,velocity,lower_ux,1.0127694606781006 +karman_re50,ppo,311,124.4,velocity,lower_uy,-0.22383731603622437 +karman_re50,ppo,312,124.8,velocity,upper_ux,1.019615888595581 +karman_re50,ppo,312,124.8,velocity,upper_uy,-0.23684535920619965 +karman_re50,ppo,312,124.8,velocity,center_ux,1.0028504133224487 +karman_re50,ppo,312,124.8,velocity,center_uy,-0.26447293162345886 +karman_re50,ppo,312,124.8,velocity,lower_ux,1.0127851963043213 +karman_re50,ppo,312,124.8,velocity,lower_uy,-0.24772430956363678 +karman_re50,ppo,313,125.2,velocity,upper_ux,1.041504144668579 +karman_re50,ppo,313,125.2,velocity,upper_uy,-0.275598406791687 +karman_re50,ppo,313,125.2,velocity,center_ux,1.0044666528701782 +karman_re50,ppo,313,125.2,velocity,center_uy,-0.28988608717918396 +karman_re50,ppo,313,125.2,velocity,lower_ux,1.006932258605957 +karman_re50,ppo,313,125.2,velocity,lower_uy,-0.2501923441886902 +karman_re50,ppo,314,125.6,velocity,upper_ux,1.0623064041137695 +karman_re50,ppo,314,125.6,velocity,upper_uy,-0.3146897554397583 +karman_re50,ppo,314,125.6,velocity,center_ux,0.9974226951599121 +karman_re50,ppo,314,125.6,velocity,center_uy,-0.3068697452545166 +karman_re50,ppo,314,125.6,velocity,lower_ux,0.9931517839431763 +karman_re50,ppo,314,125.6,velocity,lower_uy,-0.23388591408729553 +karman_re50,ppo,315,126.0,velocity,upper_ux,1.0805668830871582 +karman_re50,ppo,315,126.0,velocity,upper_uy,-0.3420026898384094 +karman_re50,ppo,315,126.0,velocity,center_ux,0.9802668690681458 +karman_re50,ppo,315,126.0,velocity,center_uy,-0.30491718649864197 +karman_re50,ppo,315,126.0,velocity,lower_ux,0.9735249280929565 +karman_re50,ppo,315,126.0,velocity,lower_uy,-0.20081239938735962 +karman_re50,ppo,316,126.4,velocity,upper_ux,1.0943024158477783 +karman_re50,ppo,316,126.4,velocity,upper_uy,-0.3373514413833618 +karman_re50,ppo,316,126.4,velocity,center_ux,0.9549129009246826 +karman_re50,ppo,316,126.4,velocity,center_uy,-0.2702735662460327 +karman_re50,ppo,316,126.4,velocity,lower_ux,0.9540371894836426 +karman_re50,ppo,316,126.4,velocity,lower_uy,-0.15295469760894775 +karman_re50,ppo,317,126.8,velocity,upper_ux,1.101292371749878 +karman_re50,ppo,317,126.8,velocity,upper_uy,-0.28476086258888245 +karman_re50,ppo,317,126.8,velocity,center_ux,0.9258992075920105 +karman_re50,ppo,317,126.8,velocity,center_uy,-0.1930873841047287 +karman_re50,ppo,317,126.8,velocity,lower_ux,0.9409888982772827 +karman_re50,ppo,317,126.8,velocity,lower_uy,-0.09287022799253464 +karman_re50,ppo,318,127.2,velocity,upper_ux,1.0996211767196655 +karman_re50,ppo,318,127.2,velocity,upper_uy,-0.187585711479187 +karman_re50,ppo,318,127.2,velocity,center_ux,0.8998003602027893 +karman_re50,ppo,318,127.2,velocity,center_uy,-0.0750502422451973 +karman_re50,ppo,318,127.2,velocity,lower_ux,0.9377261400222778 +karman_re50,ppo,318,127.2,velocity,lower_uy,-0.02563275396823883 +karman_re50,ppo,319,127.6,velocity,upper_ux,1.0852789878845215 +karman_re50,ppo,319,127.6,velocity,upper_uy,-0.06125593185424805 +karman_re50,ppo,319,127.6,velocity,center_ux,0.8878413438796997 +karman_re50,ppo,319,127.6,velocity,center_uy,0.0645965039730072 +karman_re50,ppo,319,127.6,velocity,lower_ux,0.9449254870414734 +karman_re50,ppo,319,127.6,velocity,lower_uy,0.03985485062003136 +karman_re50,ppo,320,128.0,velocity,upper_ux,1.0484012365341187 +karman_re50,ppo,320,128.0,velocity,upper_uy,0.0851968452334404 +karman_re50,ppo,320,128.0,velocity,center_ux,0.9037957787513733 +karman_re50,ppo,320,128.0,velocity,center_uy,0.18714620172977448 +karman_re50,ppo,320,128.0,velocity,lower_ux,0.9619815945625305 +karman_re50,ppo,320,128.0,velocity,lower_uy,0.09278131276369095 +karman_re50,ppo,321,128.4,velocity,upper_ux,0.987537145614624 +karman_re50,ppo,321,128.4,velocity,upper_uy,0.2367890328168869 +karman_re50,ppo,321,128.4,velocity,center_ux,0.9474281072616577 +karman_re50,ppo,321,128.4,velocity,center_uy,0.262677401304245 +karman_re50,ppo,321,128.4,velocity,lower_ux,0.9864643812179565 +karman_re50,ppo,321,128.4,velocity,lower_uy,0.13000935316085815 +karman_re50,ppo,322,128.8,velocity,upper_ux,0.9295275211334229 +karman_re50,ppo,322,128.8,velocity,upper_uy,0.3428736925125122 +karman_re50,ppo,322,128.8,velocity,center_ux,1.0021473169326782 +karman_re50,ppo,322,128.8,velocity,center_uy,0.2929151654243469 +karman_re50,ppo,322,128.8,velocity,lower_ux,1.0141525268554688 +karman_re50,ppo,322,128.8,velocity,lower_uy,0.15765829384326935 +karman_re50,ppo,323,129.2,velocity,upper_ux,0.9010864496231079 +karman_re50,ppo,323,129.2,velocity,upper_uy,0.36479416489601135 +karman_re50,ppo,323,129.2,velocity,center_ux,1.0513129234313965 +karman_re50,ppo,323,129.2,velocity,center_uy,0.2934550642967224 +karman_re50,ppo,323,129.2,velocity,lower_ux,1.0411252975463867 +karman_re50,ppo,323,129.2,velocity,lower_uy,0.18277879059314728 +karman_re50,ppo,324,129.6,velocity,upper_ux,0.8999242186546326 +karman_re50,ppo,324,129.6,velocity,upper_uy,0.3168298602104187 +karman_re50,ppo,324,129.6,velocity,center_ux,1.0838730335235596 +karman_re50,ppo,324,129.6,velocity,center_uy,0.276420921087265 +karman_re50,ppo,324,129.6,velocity,lower_ux,1.0647761821746826 +karman_re50,ppo,324,129.6,velocity,lower_uy,0.20808690786361694 +karman_re50,ppo,325,130.0,velocity,upper_ux,0.9114649295806885 +karman_re50,ppo,325,130.0,velocity,upper_uy,0.23800085484981537 +karman_re50,ppo,325,130.0,velocity,center_ux,1.0942927598953247 +karman_re50,ppo,325,130.0,velocity,center_uy,0.2485305219888687 +karman_re50,ppo,325,130.0,velocity,lower_ux,1.0832366943359375 +karman_re50,ppo,325,130.0,velocity,lower_uy,0.23230865597724915 +karman_re50,ppo,326,130.4,velocity,upper_ux,0.9256281852722168 +karman_re50,ppo,326,130.4,velocity,upper_uy,0.1630721241235733 +karman_re50,ppo,326,130.4,velocity,center_ux,1.0844032764434814 +karman_re50,ppo,326,130.4,velocity,center_uy,0.21265143156051636 +karman_re50,ppo,326,130.4,velocity,lower_ux,1.0949705839157104 +karman_re50,ppo,326,130.4,velocity,lower_uy,0.24988342821598053 +karman_re50,ppo,327,130.8,velocity,upper_ux,0.9370678663253784 +karman_re50,ppo,327,130.8,velocity,upper_uy,0.10336026549339294 +karman_re50,ppo,327,130.8,velocity,center_ux,1.0630183219909668 +karman_re50,ppo,327,130.8,velocity,center_uy,0.1680719554424286 +karman_re50,ppo,327,130.8,velocity,lower_ux,1.0983381271362305 +karman_re50,ppo,327,130.8,velocity,lower_uy,0.24905826151371002 +karman_re50,ppo,328,131.2,velocity,upper_ux,0.9434053301811218 +karman_re50,ppo,328,131.2,velocity,upper_uy,0.0481928251683712 +karman_re50,ppo,328,131.2,velocity,center_ux,1.0406574010849 +karman_re50,ppo,328,131.2,velocity,center_uy,0.11320220679044724 +karman_re50,ppo,328,131.2,velocity,lower_ux,1.0913841724395752 +karman_re50,ppo,328,131.2,velocity,lower_uy,0.21644897758960724 +karman_re50,ppo,329,131.6,velocity,upper_ux,0.9462233781814575 +karman_re50,ppo,329,131.6,velocity,upper_uy,-0.012792098335921764 +karman_re50,ppo,329,131.6,velocity,center_ux,1.0233479738235474 +karman_re50,ppo,329,131.6,velocity,center_uy,0.047396935522556305 +karman_re50,ppo,329,131.6,velocity,lower_ux,1.0734163522720337 +karman_re50,ppo,329,131.6,velocity,lower_uy,0.14623963832855225 +karman_re50,ppo,330,132.0,velocity,upper_ux,0.9502571821212769 +karman_re50,ppo,330,132.0,velocity,upper_uy,-0.07400055229663849 +karman_re50,ppo,330,132.0,velocity,center_ux,1.0103744268417358 +karman_re50,ppo,330,132.0,velocity,center_uy,-0.027127718552947044 +karman_re50,ppo,330,132.0,velocity,lower_ux,1.0469908714294434 +karman_re50,ppo,330,132.0,velocity,lower_uy,0.047241296619176865 +karman_re50,ppo,331,132.4,velocity,upper_ux,0.959431529045105 +karman_re50,ppo,331,132.4,velocity,upper_uy,-0.12373603880405426 +karman_re50,ppo,331,132.4,velocity,center_ux,0.9997150301933289 +karman_re50,ppo,331,132.4,velocity,center_uy,-0.10314666479825974 +karman_re50,ppo,331,132.4,velocity,lower_ux,1.0202064514160156 +karman_re50,ppo,331,132.4,velocity,lower_uy,-0.05914502590894699 +karman_re50,ppo,332,132.8,velocity,upper_ux,0.9744575023651123 +karman_re50,ppo,332,132.8,velocity,upper_uy,-0.15982551872730255 +karman_re50,ppo,332,132.8,velocity,center_ux,0.993966817855835 +karman_re50,ppo,332,132.8,velocity,center_uy,-0.16848072409629822 +karman_re50,ppo,332,132.8,velocity,lower_ux,1.0043202638626099 +karman_re50,ppo,332,132.8,velocity,lower_uy,-0.1480829417705536 +karman_re50,ppo,333,133.2,velocity,upper_ux,0.9936469793319702 +karman_re50,ppo,333,133.2,velocity,upper_uy,-0.19029468297958374 +karman_re50,ppo,333,133.2,velocity,center_ux,0.9955471158027649 +karman_re50,ppo,333,133.2,velocity,center_uy,-0.2163955718278885 +karman_re50,ppo,333,133.2,velocity,lower_ux,1.001835584640503 +karman_re50,ppo,333,133.2,velocity,lower_uy,-0.20745891332626343 +karman_re50,ppo,334,133.6,velocity,upper_ux,1.014757513999939 +karman_re50,ppo,334,133.6,velocity,upper_uy,-0.2232038378715515 +karman_re50,ppo,334,133.6,velocity,center_ux,1.0010161399841309 +karman_re50,ppo,334,133.6,velocity,center_uy,-0.25118643045425415 +karman_re50,ppo,334,133.6,velocity,lower_ux,1.0040663480758667 +karman_re50,ppo,334,133.6,velocity,lower_uy,-0.23985326290130615 +karman_re50,ppo,335,134.0,velocity,upper_ux,1.0362881422042847 +karman_re50,ppo,335,134.0,velocity,upper_uy,-0.26094377040863037 +karman_re50,ppo,335,134.0,velocity,center_ux,1.0041393041610718 +karman_re50,ppo,335,134.0,velocity,center_uy,-0.27931156754493713 +karman_re50,ppo,335,134.0,velocity,lower_ux,1.002318024635315 +karman_re50,ppo,335,134.0,velocity,lower_uy,-0.25010180473327637 +karman_re50,ppo,336,134.4,velocity,upper_ux,1.0571945905685425 +karman_re50,ppo,336,134.4,velocity,upper_uy,-0.3010901212692261 +karman_re50,ppo,336,134.4,velocity,center_ux,0.9999876618385315 +karman_re50,ppo,336,134.4,velocity,center_uy,-0.30092501640319824 +karman_re50,ppo,336,134.4,velocity,lower_ux,0.9926994442939758 +karman_re50,ppo,336,134.4,velocity,lower_uy,-0.24129581451416016 +karman_re50,ppo,337,134.8,velocity,upper_ux,1.0761725902557373 +karman_re50,ppo,337,134.8,velocity,upper_uy,-0.33434927463531494 +karman_re50,ppo,337,134.8,velocity,center_ux,0.9861623644828796 +karman_re50,ppo,337,134.8,velocity,center_uy,-0.3076659142971039 +karman_re50,ppo,337,134.8,velocity,lower_ux,0.975646436214447 +karman_re50,ppo,337,134.8,velocity,lower_uy,-0.21517696976661682 +karman_re50,ppo,338,135.2,velocity,upper_ux,1.0914326906204224 +karman_re50,ppo,338,135.2,velocity,upper_uy,-0.3425522744655609 +karman_re50,ppo,338,135.2,velocity,center_ux,0.9635427594184875 +karman_re50,ppo,338,135.2,velocity,center_uy,-0.2862599194049835 +karman_re50,ppo,338,135.2,velocity,lower_ux,0.9560081958770752 +karman_re50,ppo,338,135.2,velocity,lower_uy,-0.1733154058456421 +karman_re50,ppo,339,135.6,velocity,upper_ux,1.1007413864135742 +karman_re50,ppo,339,135.6,velocity,upper_uy,-0.30608808994293213 +karman_re50,ppo,339,135.6,velocity,center_ux,0.9359943866729736 +karman_re50,ppo,339,135.6,velocity,center_uy,-0.22460788488388062 +karman_re50,ppo,339,135.6,velocity,lower_ux,0.9405443668365479 +karman_re50,ppo,339,135.6,velocity,lower_uy,-0.11765626072883606 +karman_re50,ppo,340,136.0,velocity,upper_ux,1.1021405458450317 +karman_re50,ppo,340,136.0,velocity,upper_uy,-0.2213389277458191 +karman_re50,ppo,340,136.0,velocity,center_ux,0.9092463850975037 +karman_re50,ppo,340,136.0,velocity,center_uy,-0.11994598060846329 +karman_re50,ppo,340,136.0,velocity,lower_ux,0.933999240398407 +karman_re50,ppo,340,136.0,velocity,lower_uy,-0.05228221416473389 +karman_re50,ppo,341,136.4,velocity,upper_ux,1.0929492712020874 +karman_re50,ppo,341,136.4,velocity,upper_uy,-0.10189857333898544 +karman_re50,ppo,341,136.4,velocity,center_ux,0.8922213912010193 +karman_re50,ppo,341,136.4,velocity,center_uy,0.015315034426748753 +karman_re50,ppo,341,136.4,velocity,lower_ux,0.9378412365913391 +karman_re50,ppo,341,136.4,velocity,lower_uy,0.015310846269130707 +karman_re50,ppo,342,136.8,velocity,upper_ux,1.0655691623687744 +karman_re50,ppo,342,136.8,velocity,upper_uy,0.03913888707756996 +karman_re50,ppo,342,136.8,velocity,center_ux,0.8985605835914612 +karman_re50,ppo,342,136.8,velocity,center_uy,0.14776377379894257 +karman_re50,ppo,342,136.8,velocity,lower_ux,0.9517735242843628 +karman_re50,ppo,342,136.8,velocity,lower_uy,0.07408375293016434 +karman_re50,ppo,343,137.2,velocity,upper_ux,1.0131474733352661 +karman_re50,ppo,343,137.2,velocity,upper_uy,0.1917576640844345 +karman_re50,ppo,343,137.2,velocity,center_ux,0.9342186450958252 +karman_re50,ppo,343,137.2,velocity,center_uy,0.23983712494373322 +karman_re50,ppo,343,137.2,velocity,lower_ux,0.9741064310073853 +karman_re50,ppo,343,137.2,velocity,lower_uy,0.1168060377240181 +karman_re50,ppo,344,137.6,velocity,upper_ux,0.9533382654190063 +karman_re50,ppo,344,137.6,velocity,upper_uy,0.3157519996166229 +karman_re50,ppo,344,137.6,velocity,center_ux,0.9866935014724731 +karman_re50,ppo,344,137.6,velocity,center_uy,0.2826022803783417 +karman_re50,ppo,344,137.6,velocity,lower_ux,1.001093864440918 +karman_re50,ppo,344,137.6,velocity,lower_uy,0.14681844413280487 +karman_re50,ppo,345,138.0,velocity,upper_ux,0.9167959690093994 +karman_re50,ppo,345,138.0,velocity,upper_uy,0.3622957468032837 +karman_re50,ppo,345,138.0,velocity,center_ux,1.0381157398223877 +karman_re50,ppo,345,138.0,velocity,center_uy,0.28977784514427185 +karman_re50,ppo,345,138.0,velocity,lower_ux,1.0284134149551392 +karman_re50,ppo,345,138.0,velocity,lower_uy,0.17202095687389374 +karman_re50,ppo,346,138.4,velocity,upper_ux,0.9099099040031433 +karman_re50,ppo,346,138.4,velocity,upper_uy,0.33179447054862976 +karman_re50,ppo,346,138.4,velocity,center_ux,1.0755457878112793 +karman_re50,ppo,346,138.4,velocity,center_uy,0.2767448127269745 +karman_re50,ppo,346,138.4,velocity,lower_ux,1.0530691146850586 +karman_re50,ppo,346,138.4,velocity,lower_uy,0.19729068875312805 +karman_re50,ppo,347,138.8,velocity,upper_ux,0.9194632172584534 +karman_re50,ppo,347,138.8,velocity,upper_uy,0.26036712527275085 +karman_re50,ppo,347,138.8,velocity,center_ux,1.0918067693710327 +karman_re50,ppo,347,138.8,velocity,center_uy,0.2535335421562195 +karman_re50,ppo,347,138.8,velocity,lower_ux,1.0732344388961792 +karman_re50,ppo,347,138.8,velocity,lower_uy,0.22287683188915253 +karman_re50,ppo,348,139.2,velocity,upper_ux,0.9331201314926147 +karman_re50,ppo,348,139.2,velocity,upper_uy,0.18584904074668884 +karman_re50,ppo,348,139.2,velocity,center_ux,1.0868405103683472 +karman_re50,ppo,348,139.2,velocity,center_uy,0.22471193969249725 +karman_re50,ppo,348,139.2,velocity,lower_ux,1.0876179933547974 +karman_re50,ppo,348,139.2,velocity,lower_uy,0.24523746967315674 +karman_re50,ppo,349,139.6,velocity,upper_ux,0.9441888332366943 +karman_re50,ppo,349,139.6,velocity,upper_uy,0.12557649612426758 +karman_re50,ppo,349,139.6,velocity,center_ux,1.0677928924560547 +karman_re50,ppo,349,139.6,velocity,center_uy,0.18885625898838043 +karman_re50,ppo,349,139.6,velocity,lower_ux,1.0949792861938477 +karman_re50,ppo,349,139.6,velocity,lower_uy,0.2546919286251068 +karman_re50,ppo,350,140.0,velocity,upper_ux,0.949923574924469 +karman_re50,ppo,350,140.0,velocity,upper_uy,0.07249019294977188 +karman_re50,ppo,350,140.0,velocity,center_ux,1.0448204278945923 +karman_re50,ppo,350,140.0,velocity,center_uy,0.14186224341392517 +karman_re50,ppo,350,140.0,velocity,lower_ux,1.0934683084487915 +karman_re50,ppo,350,140.0,velocity,lower_uy,0.23709264397621155 +karman_re50,ppo,351,140.4,velocity,upper_ux,0.9511871933937073 +karman_re50,ppo,351,140.4,velocity,upper_uy,0.013889987021684647 +karman_re50,ppo,351,140.4,velocity,center_ux,1.0254411697387695 +karman_re50,ppo,351,140.4,velocity,center_uy,0.08122365176677704 +karman_re50,ppo,351,140.4,velocity,lower_ux,1.0815081596374512 +karman_re50,ppo,351,140.4,velocity,lower_uy,0.18200041353702545 +karman_re50,ppo,352,140.8,velocity,upper_ux,0.9522516131401062 +karman_re50,ppo,352,140.8,velocity,upper_uy,-0.049170855432748795 +karman_re50,ppo,352,140.8,velocity,center_ux,1.0111103057861328 +karman_re50,ppo,352,140.8,velocity,center_uy,0.008465494029223919 +karman_re50,ppo,352,140.8,velocity,lower_ux,1.0597045421600342 +karman_re50,ppo,352,140.8,velocity,lower_uy,0.09210280328989029 +karman_re50,ppo,353,141.2,velocity,upper_ux,0.957846999168396 +karman_re50,ppo,353,141.2,velocity,upper_uy,-0.10453227162361145 +karman_re50,ppo,353,141.2,velocity,center_ux,0.9995365738868713 +karman_re50,ppo,353,141.2,velocity,center_uy,-0.07006209343671799 +karman_re50,ppo,353,141.2,velocity,lower_ux,1.0330913066864014 +karman_re50,ppo,353,141.2,velocity,lower_uy,-0.015389423817396164 +karman_re50,ppo,354,141.6,velocity,upper_ux,0.9698901176452637 +karman_re50,ppo,354,141.6,velocity,upper_uy,-0.14567352831363678 +karman_re50,ppo,354,141.6,velocity,center_ux,0.9916253089904785 +karman_re50,ppo,354,141.6,velocity,center_uy,-0.14268746972084045 +karman_re50,ppo,354,141.6,velocity,lower_ux,1.0122766494750977 +karman_re50,ppo,354,141.6,velocity,lower_uy,-0.11490952223539352 +karman_re50,ppo,355,142.0,velocity,upper_ux,0.9872952103614807 +karman_re50,ppo,355,142.0,velocity,upper_uy,-0.1778024435043335 +karman_re50,ppo,355,142.0,velocity,center_ux,0.9908103346824646 +karman_re50,ppo,355,142.0,velocity,center_uy,-0.19887752830982208 +karman_re50,ppo,355,142.0,velocity,lower_ux,1.0046203136444092 +karman_re50,ppo,355,142.0,velocity,lower_uy,-0.18718931078910828 +karman_re50,ppo,356,142.4,velocity,upper_ux,1.0076595544815063 +karman_re50,ppo,356,142.4,velocity,upper_uy,-0.21005553007125854 +karman_re50,ppo,356,142.4,velocity,center_ux,0.9957964420318604 +karman_re50,ppo,356,142.4,velocity,center_uy,-0.23915360867977142 +karman_re50,ppo,356,142.4,velocity,lower_ux,1.005174160003662 +karman_re50,ppo,356,142.4,velocity,lower_uy,-0.23034611344337463 +karman_re50,ppo,357,142.8,velocity,upper_ux,1.0290757417678833 +karman_re50,ppo,357,142.8,velocity,upper_uy,-0.24679052829742432 +karman_re50,ppo,357,142.8,velocity,center_ux,1.0007202625274658 +karman_re50,ppo,357,142.8,velocity,center_uy,-0.27045154571533203 +karman_re50,ppo,357,142.8,velocity,lower_ux,1.004511833190918 +karman_re50,ppo,357,142.8,velocity,lower_uy,-0.24975252151489258 +karman_re50,ppo,358,143.2,velocity,upper_ux,1.0503718852996826 +karman_re50,ppo,358,143.2,velocity,upper_uy,-0.2872965931892395 +karman_re50,ppo,358,143.2,velocity,center_ux,0.9999082088470459 +karman_re50,ppo,358,143.2,velocity,center_uy,-0.295998752117157 +karman_re50,ppo,358,143.2,velocity,lower_ux,0.9971463084220886 +karman_re50,ppo,358,143.2,velocity,lower_uy,-0.24934393167495728 +karman_re50,ppo,359,143.6,velocity,upper_ux,1.0703414678573608 +karman_re50,ppo,359,143.6,velocity,upper_uy,-0.32497668266296387 +karman_re50,ppo,359,143.6,velocity,center_ux,0.9900258779525757 +karman_re50,ppo,359,143.6,velocity,center_uy,-0.310278058052063 +karman_re50,ppo,359,143.6,velocity,lower_ux,0.981890857219696 +karman_re50,ppo,359,143.6,velocity,lower_uy,-0.23081248998641968 +karman_re50,ppo,360,144.0,velocity,upper_ux,1.0873527526855469 +karman_re50,ppo,360,144.0,velocity,upper_uy,-0.34449711441993713 +karman_re50,ppo,360,144.0,velocity,center_ux,0.9708226919174194 +karman_re50,ppo,360,144.0,velocity,center_uy,-0.3010101616382599 +karman_re50,ppo,360,144.0,velocity,lower_ux,0.9618663191795349 +karman_re50,ppo,360,144.0,velocity,lower_uy,-0.1950153112411499 +karman_re50,ppo,361,144.4,velocity,upper_ux,1.099198579788208 +karman_re50,ppo,361,144.4,velocity,upper_uy,-0.3247070014476776 +karman_re50,ppo,361,144.4,velocity,center_ux,0.945263147354126 +karman_re50,ppo,361,144.4,velocity,center_uy,-0.2545071840286255 +karman_re50,ppo,361,144.4,velocity,lower_ux,0.943412721157074 +karman_re50,ppo,361,144.4,velocity,lower_uy,-0.1432713270187378 +karman_re50,ppo,362,144.8,velocity,upper_ux,1.1036713123321533 +karman_re50,ppo,362,144.8,velocity,upper_uy,-0.2547851502895355 +karman_re50,ppo,362,144.8,velocity,center_ux,0.9184142351150513 +karman_re50,ppo,362,144.8,velocity,center_uy,-0.16369420289993286 +karman_re50,ppo,362,144.8,velocity,lower_ux,0.9324615597724915 +karman_re50,ppo,362,144.8,velocity,lower_uy,-0.07908740639686584 +karman_re50,ppo,363,145.2,velocity,upper_ux,1.0985442399978638 +karman_re50,ppo,363,145.2,velocity,upper_uy,-0.14362847805023193 +karman_re50,ppo,363,145.2,velocity,center_ux,0.8976032137870789 +karman_re50,ppo,363,145.2,velocity,center_uy,-0.034911978989839554 +karman_re50,ppo,363,145.2,velocity,lower_ux,0.9318550229072571 +karman_re50,ppo,363,145.2,velocity,lower_uy,-0.00942742358893156 +karman_re50,ppo,364,145.6,velocity,upper_ux,1.0780874490737915 +karman_re50,ppo,364,145.6,velocity,upper_uy,-0.005871564615517855 +karman_re50,ppo,364,145.6,velocity,center_ux,0.8953680992126465 +karman_re50,ppo,364,145.6,velocity,center_uy,0.10492127388715744 +karman_re50,ppo,364,145.6,velocity,lower_ux,0.9418821930885315 +karman_re50,ppo,364,145.6,velocity,lower_uy,0.05514693260192871 +karman_re50,ppo,365,146.0,velocity,upper_ux,1.0333971977233887 +karman_re50,ppo,365,146.0,velocity,upper_uy,0.14991611242294312 +karman_re50,ppo,365,146.0,velocity,center_ux,0.9222177267074585 +karman_re50,ppo,365,146.0,velocity,center_uy,0.2140343338251114 +karman_re50,ppo,365,146.0,velocity,lower_ux,0.9613954424858093 +karman_re50,ppo,365,146.0,velocity,lower_uy,0.10477793961763382 +karman_re50,ppo,366,146.4,velocity,upper_ux,0.9746177196502686 +karman_re50,ppo,366,146.4,velocity,upper_uy,0.2919674217700958 +karman_re50,ppo,366,146.4,velocity,center_ux,0.9706372022628784 +karman_re50,ppo,366,146.4,velocity,center_uy,0.2721202075481415 +karman_re50,ppo,366,146.4,velocity,lower_ux,0.9872371554374695 +karman_re50,ppo,366,146.4,velocity,lower_uy,0.13934656977653503 +karman_re50,ppo,367,146.8,velocity,upper_ux,0.9335196018218994 +karman_re50,ppo,367,146.8,velocity,upper_uy,0.36430811882019043 +karman_re50,ppo,367,146.8,velocity,center_ux,1.0223472118377686 +karman_re50,ppo,367,146.8,velocity,center_uy,0.2896539270877838 +karman_re50,ppo,367,146.8,velocity,lower_ux,1.0149651765823364 +karman_re50,ppo,367,146.8,velocity,lower_uy,0.16644605994224548 +karman_re50,ppo,368,147.2,velocity,upper_ux,0.9231205582618713 +karman_re50,ppo,368,147.2,velocity,upper_uy,0.35362231731414795 +karman_re50,ppo,368,147.2,velocity,center_ux,1.0630923509597778 +karman_re50,ppo,368,147.2,velocity,center_uy,0.2847002446651459 +karman_re50,ppo,368,147.2,velocity,lower_ux,1.041171669960022 +karman_re50,ppo,368,147.2,velocity,lower_uy,0.19269895553588867 +karman_re50,ppo,369,147.6,velocity,upper_ux,0.9306468963623047 +karman_re50,ppo,369,147.6,velocity,upper_uy,0.2919856011867523 +karman_re50,ppo,369,147.6,velocity,center_ux,1.084976077079773 +karman_re50,ppo,369,147.6,velocity,center_uy,0.2693239748477936 +karman_re50,ppo,369,147.6,velocity,lower_ux,1.0638775825500488 +karman_re50,ppo,369,147.6,velocity,lower_uy,0.2197902798652649 +karman_re50,ppo,370,148.0,velocity,upper_ux,0.9414694905281067 +karman_re50,ppo,370,148.0,velocity,upper_uy,0.21740779280662537 +karman_re50,ppo,370,148.0,velocity,center_ux,1.0863893032073975 +karman_re50,ppo,370,148.0,velocity,center_uy,0.24795067310333252 +karman_re50,ppo,370,148.0,velocity,lower_ux,1.081770420074463 +karman_re50,ppo,370,148.0,velocity,lower_uy,0.24542951583862305 +karman_re50,ppo,371,148.4,velocity,upper_ux,0.9488528370857239 +karman_re50,ppo,371,148.4,velocity,upper_uy,0.15219582617282867 +karman_re50,ppo,371,148.4,velocity,center_ux,1.0719655752182007 +karman_re50,ppo,371,148.4,velocity,center_uy,0.21825362741947174 +karman_re50,ppo,371,148.4,velocity,lower_ux,1.0936329364776611 +karman_re50,ppo,371,148.4,velocity,lower_uy,0.26182180643081665 +karman_re50,ppo,372,148.8,velocity,upper_ux,0.9515411257743835 +karman_re50,ppo,372,148.8,velocity,upper_uy,0.09633756428956985 +karman_re50,ppo,372,148.8,velocity,center_ux,1.050231695175171 +karman_re50,ppo,372,148.8,velocity,center_uy,0.17492860555648804 +karman_re50,ppo,372,148.8,velocity,lower_ux,1.0975993871688843 +karman_re50,ppo,372,148.8,velocity,lower_uy,0.2550184726715088 +karman_re50,ppo,373,149.2,velocity,upper_ux,0.9506829977035522 +karman_re50,ppo,373,149.2,velocity,upper_uy,0.0385722741484642 +karman_re50,ppo,373,149.2,velocity,center_ux,1.0293827056884766 +karman_re50,ppo,373,149.2,velocity,center_uy,0.1152646467089653 +karman_re50,ppo,373,149.2,velocity,lower_ux,1.0914171934127808 +karman_re50,ppo,373,149.2,velocity,lower_uy,0.21172279119491577 +karman_re50,ppo,374,149.6,velocity,upper_ux,0.9495086669921875 +karman_re50,ppo,374,149.6,velocity,upper_uy,-0.025265589356422424 +karman_re50,ppo,374,149.6,velocity,center_ux,1.0133225917816162 +karman_re50,ppo,374,149.6,velocity,center_uy,0.04126313328742981 +karman_re50,ppo,374,149.6,velocity,lower_ux,1.0743956565856934 +karman_re50,ppo,374,149.6,velocity,lower_uy,0.12978467345237732 +karman_re50,ppo,375,150.0,velocity,upper_ux,0.9523897767066956 +karman_re50,ppo,375,150.0,velocity,upper_uy,-0.08580329269170761 +karman_re50,ppo,375,150.0,velocity,center_ux,1.0009230375289917 +karman_re50,ppo,375,150.0,velocity,center_uy,-0.0406898632645607 +karman_re50,ppo,375,150.0,velocity,lower_ux,1.0496280193328857 +karman_re50,ppo,375,150.0,velocity,lower_uy,0.022879209369421005 +karman_re50,ppo,376,150.4,velocity,upper_ux,0.9620147943496704 +karman_re50,ppo,376,150.4,velocity,upper_uy,-0.1330307275056839 +karman_re50,ppo,376,150.4,velocity,center_ux,0.9916945099830627 +karman_re50,ppo,376,150.4,velocity,center_uy,-0.11992170661687851 +karman_re50,ppo,376,150.4,velocity,lower_ux,1.0263975858688354 +karman_re50,ppo,376,150.4,velocity,lower_uy,-0.08405911177396774 +karman_re50,ppo,377,150.8,velocity,upper_ux,0.9780001044273376 +karman_re50,ppo,377,150.8,velocity,upper_uy,-0.16788062453269958 +karman_re50,ppo,377,150.8,velocity,center_ux,0.9888730049133301 +karman_re50,ppo,377,150.8,velocity,center_uy,-0.1839490830898285 +karman_re50,ppo,377,150.8,velocity,lower_ux,1.0145888328552246 +karman_re50,ppo,377,150.8,velocity,lower_uy,-0.16733330488204956 +karman_re50,ppo,378,151.2,velocity,upper_ux,0.997964084148407 +karman_re50,ppo,378,151.2,velocity,upper_uy,-0.19934040307998657 +karman_re50,ppo,378,151.2,velocity,center_ux,0.9930912256240845 +karman_re50,ppo,378,151.2,velocity,center_uy,-0.2293403446674347 +karman_re50,ppo,378,151.2,velocity,lower_ux,1.0129011869430542 +karman_re50,ppo,378,151.2,velocity,lower_uy,-0.22014693915843964 +karman_re50,ppo,379,151.6,velocity,upper_ux,1.01954984664917 +karman_re50,ppo,379,151.6,velocity,upper_uy,-0.23414313793182373 +karman_re50,ppo,379,151.6,velocity,center_ux,0.9993945956230164 +karman_re50,ppo,379,151.6,velocity,center_uy,-0.2625772953033447 +karman_re50,ppo,379,151.6,velocity,lower_ux,1.0122909545898438 +karman_re50,ppo,379,151.6,velocity,lower_uy,-0.2471223771572113 +karman_re50,ppo,380,152.0,velocity,upper_ux,1.0413334369659424 +karman_re50,ppo,380,152.0,velocity,upper_uy,-0.2734694182872772 +karman_re50,ppo,380,152.0,velocity,center_ux,1.0015559196472168 +karman_re50,ppo,380,152.0,velocity,center_uy,-0.28961706161499023 +karman_re50,ppo,380,152.0,velocity,lower_ux,1.0062799453735352 +karman_re50,ppo,380,152.0,velocity,lower_uy,-0.2527035176753998 +karman_re50,ppo,381,152.4,velocity,upper_ux,1.0622084140777588 +karman_re50,ppo,381,152.4,velocity,upper_uy,-0.3132714033126831 +karman_re50,ppo,381,152.4,velocity,center_ux,0.9953138828277588 +karman_re50,ppo,381,152.4,velocity,center_uy,-0.30837780237197876 +karman_re50,ppo,381,152.4,velocity,lower_ux,0.9925803542137146 +karman_re50,ppo,381,152.4,velocity,lower_uy,-0.23938560485839844 +karman_re50,ppo,382,152.8,velocity,upper_ux,1.0807620286941528 +karman_re50,ppo,382,152.8,velocity,upper_uy,-0.34164363145828247 +karman_re50,ppo,382,152.8,velocity,center_ux,0.9792324304580688 +karman_re50,ppo,382,152.8,velocity,center_uy,-0.30852198600769043 +karman_re50,ppo,382,152.8,velocity,lower_ux,0.9728420972824097 +karman_re50,ppo,382,152.8,velocity,lower_uy,-0.20846080780029297 +karman_re50,ppo,383,153.2,velocity,upper_ux,1.094954013824463 +karman_re50,ppo,383,153.2,velocity,upper_uy,-0.33836811780929565 +karman_re50,ppo,383,153.2,velocity,center_ux,0.9551354050636292 +karman_re50,ppo,383,153.2,velocity,center_uy,-0.2760557234287262 +karman_re50,ppo,383,153.2,velocity,lower_ux,0.9525955319404602 +karman_re50,ppo,383,153.2,velocity,lower_uy,-0.16126994788646698 +karman_re50,ppo,384,153.6,velocity,upper_ux,1.1024117469787598 +karman_re50,ppo,384,153.6,velocity,upper_uy,-0.2867564857006073 +karman_re50,ppo,384,153.6,velocity,center_ux,0.9274051189422607 +karman_re50,ppo,384,153.6,velocity,center_uy,-0.20051772892475128 +karman_re50,ppo,384,153.6,velocity,lower_ux,0.9382117390632629 +karman_re50,ppo,384,153.6,velocity,lower_uy,-0.10040687769651413 +karman_re50,ppo,385,154.0,velocity,upper_ux,1.1010653972625732 +karman_re50,ppo,385,154.0,velocity,upper_uy,-0.18920664489269257 +karman_re50,ppo,385,154.0,velocity,center_ux,0.9023684859275818 +karman_re50,ppo,385,154.0,velocity,center_uy,-0.08281631767749786 +karman_re50,ppo,385,154.0,velocity,lower_ux,0.933560848236084 +karman_re50,ppo,385,154.0,velocity,lower_uy,-0.03154898062348366 +karman_re50,ppo,386,154.4,velocity,upper_ux,1.086879014968872 +karman_re50,ppo,386,154.4,velocity,upper_uy,-0.060528840869665146 +karman_re50,ppo,386,154.4,velocity,center_ux,0.8909375071525574 +karman_re50,ppo,386,154.4,velocity,center_uy,0.058208007365465164 +karman_re50,ppo,386,154.4,velocity,lower_ux,0.9396424889564514 +karman_re50,ppo,386,154.4,velocity,lower_uy,0.0359572097659111 +karman_re50,ppo,387,154.8,velocity,upper_ux,1.0503593683242798 +karman_re50,ppo,387,154.8,velocity,upper_uy,0.0903484895825386 +karman_re50,ppo,387,154.8,velocity,center_ux,0.9068604111671448 +karman_re50,ppo,387,154.8,velocity,center_uy,0.18283279240131378 +karman_re50,ppo,387,154.8,velocity,lower_ux,0.9559594988822937 +karman_re50,ppo,387,154.8,velocity,lower_uy,0.09103884547948837 +karman_re50,ppo,388,155.2,velocity,upper_ux,0.9916035532951355 +karman_re50,ppo,388,155.2,velocity,upper_uy,0.24567165970802307 +karman_re50,ppo,388,155.2,velocity,center_ux,0.9498198628425598 +karman_re50,ppo,388,155.2,velocity,center_uy,0.25952479243278503 +karman_re50,ppo,388,155.2,velocity,lower_ux,0.9801071286201477 +karman_re50,ppo,388,155.2,velocity,lower_uy,0.13001695275306702 +karman_re50,ppo,389,155.6,velocity,upper_ux,0.9389045834541321 +karman_re50,ppo,389,155.6,velocity,upper_uy,0.3509701192378998 +karman_re50,ppo,389,155.6,velocity,center_ux,1.0029194355010986 +karman_re50,ppo,389,155.6,velocity,center_uy,0.2903709411621094 +karman_re50,ppo,389,155.6,velocity,lower_ux,1.0077788829803467 +karman_re50,ppo,389,155.6,velocity,lower_uy,0.1589224636554718 +karman_re50,ppo,390,156.0,velocity,upper_ux,0.9167231917381287 +karman_re50,ppo,390,156.0,velocity,upper_uy,0.3701784908771515 +karman_re50,ppo,390,156.0,velocity,center_ux,1.0496617555618286 +karman_re50,ppo,390,156.0,velocity,center_uy,0.2929491698741913 +karman_re50,ppo,390,156.0,velocity,lower_ux,1.0350276231765747 +karman_re50,ppo,390,156.0,velocity,lower_uy,0.18525131046772003 +karman_re50,ppo,391,156.4,velocity,upper_ux,0.9189651608467102 +karman_re50,ppo,391,156.4,velocity,upper_uy,0.32252490520477295 +karman_re50,ppo,391,156.4,velocity,center_ux,1.079978346824646 +karman_re50,ppo,391,156.4,velocity,center_uy,0.28088992834091187 +karman_re50,ppo,391,156.4,velocity,lower_ux,1.0593876838684082 +karman_re50,ppo,391,156.4,velocity,lower_uy,0.21208852529525757 +karman_re50,ppo,392,156.8,velocity,upper_ux,0.9293262958526611 +karman_re50,ppo,392,156.8,velocity,upper_uy,0.24682854115962982 +karman_re50,ppo,392,156.8,velocity,center_ux,1.089655876159668 +karman_re50,ppo,392,156.8,velocity,center_uy,0.26013460755348206 +karman_re50,ppo,392,156.8,velocity,lower_ux,1.0792402029037476 +karman_re50,ppo,392,156.8,velocity,lower_uy,0.23823192715644836 +karman_re50,ppo,393,157.2,velocity,upper_ux,0.9385486841201782 +karman_re50,ppo,393,157.2,velocity,upper_uy,0.17373159527778625 +karman_re50,ppo,393,157.2,velocity,center_ux,1.0807801485061646 +karman_re50,ppo,393,157.2,velocity,center_uy,0.2306382954120636 +karman_re50,ppo,393,157.2,velocity,lower_ux,1.093214511871338 +karman_re50,ppo,393,157.2,velocity,lower_uy,0.25799673795700073 +karman_re50,ppo,394,157.6,velocity,upper_ux,0.9439710974693298 +karman_re50,ppo,394,157.6,velocity,upper_uy,0.11283066868782043 +karman_re50,ppo,394,157.6,velocity,center_ux,1.0608503818511963 +karman_re50,ppo,394,157.6,velocity,center_uy,0.1887073963880539 +karman_re50,ppo,394,157.6,velocity,lower_ux,1.0995362997055054 +karman_re50,ppo,394,157.6,velocity,lower_uy,0.2591347396373749 +karman_re50,ppo,395,158.0,velocity,upper_ux,0.9456206560134888 +karman_re50,ppo,395,158.0,velocity,upper_uy,0.05570703372359276 +karman_re50,ppo,395,158.0,velocity,center_ux,1.0389915704727173 +karman_re50,ppo,395,158.0,velocity,center_uy,0.13192646205425262 +karman_re50,ppo,395,158.0,velocity,lower_ux,1.0958149433135986 +karman_re50,ppo,395,158.0,velocity,lower_uy,0.22738993167877197 +karman_re50,ppo,396,158.4,velocity,upper_ux,0.9455825686454773 +karman_re50,ppo,396,158.4,velocity,upper_uy,-0.006580356974154711 +karman_re50,ppo,396,158.4,velocity,center_ux,1.021217703819275 +karman_re50,ppo,396,158.4,velocity,center_uy,0.06136004999279976 +karman_re50,ppo,396,158.4,velocity,lower_ux,1.0807548761367798 +karman_re50,ppo,396,158.4,velocity,lower_uy,0.156372532248497 +karman_re50,ppo,397,158.8,velocity,upper_ux,0.9479303956031799 +karman_re50,ppo,397,158.8,velocity,upper_uy,-0.06932312250137329 +karman_re50,ppo,397,158.8,velocity,center_ux,1.0077567100524902 +karman_re50,ppo,397,158.8,velocity,center_uy,-0.018346579745411873 +karman_re50,ppo,397,158.8,velocity,lower_ux,1.0563573837280273 +karman_re50,ppo,397,158.8,velocity,lower_uy,0.055086567997932434 +karman_re50,ppo,398,159.2,velocity,upper_ux,0.9561684131622314 +karman_re50,ppo,398,159.2,velocity,upper_uy,-0.12110257893800735 +karman_re50,ppo,398,159.2,velocity,center_ux,0.997101902961731 +karman_re50,ppo,398,159.2,velocity,center_uy,-0.09874258190393448 +karman_re50,ppo,398,159.2,velocity,lower_ux,1.0305395126342773 +karman_re50,ppo,398,159.2,velocity,lower_uy,-0.054188746958971024 +karman_re50,ppo,399,159.6,velocity,upper_ux,0.9709003567695618 +karman_re50,ppo,399,159.6,velocity,upper_uy,-0.15873362123966217 +karman_re50,ppo,399,159.6,velocity,center_ux,0.9916717410087585 +karman_re50,ppo,399,159.6,velocity,center_uy,-0.16737037897109985 +karman_re50,ppo,399,159.6,velocity,lower_ux,1.0146840810775757 +karman_re50,ppo,399,159.6,velocity,lower_uy,-0.1456395983695984 +karman_re50,ppo,0,0.0,force,front_fx,0.0003169668198097497 +karman_re50,ppo,0,0.0,force,front_fy,-0.002014136640354991 +karman_re50,ppo,0,0.0,force,upper_fx,-0.0012768747983500361 +karman_re50,ppo,0,0.0,force,upper_fy,0.0027845061849802732 +karman_re50,ppo,0,0.0,force,lower_fx,0.0007905747625045478 +karman_re50,ppo,0,0.0,force,lower_fy,-0.003319980576634407 +karman_re50,ppo,1,0.4,force,front_fx,0.00034721626434475183 +karman_re50,ppo,1,0.4,force,front_fy,-0.0026977267116308212 +karman_re50,ppo,1,0.4,force,upper_fx,-0.0010549082653596997 +karman_re50,ppo,1,0.4,force,upper_fy,0.0032404260709881783 +karman_re50,ppo,1,0.4,force,lower_fx,8.692493429407477e-05 +karman_re50,ppo,1,0.4,force,lower_fy,-0.003780566155910492 +karman_re50,ppo,2,0.8,force,front_fx,0.0003791160124819726 +karman_re50,ppo,2,0.8,force,front_fy,-0.002540162531659007 +karman_re50,ppo,2,0.8,force,upper_fx,-0.00098648841958493 +karman_re50,ppo,2,0.8,force,upper_fy,0.0038639409467577934 +karman_re50,ppo,2,0.8,force,lower_fx,-0.0001415389560861513 +karman_re50,ppo,2,0.8,force,lower_fy,-0.0037615231703966856 +karman_re50,ppo,3,1.2,force,front_fx,0.00016776744450908154 +karman_re50,ppo,3,1.2,force,front_fy,-0.002468815539032221 +karman_re50,ppo,3,1.2,force,upper_fx,-0.00039642691262997687 +karman_re50,ppo,3,1.2,force,upper_fy,0.004371080081909895 +karman_re50,ppo,3,1.2,force,lower_fx,-0.00045345883700065315 +karman_re50,ppo,3,1.2,force,lower_fy,-0.003518888261169195 +karman_re50,ppo,4,1.6,force,front_fx,-0.0002024804416578263 +karman_re50,ppo,4,1.6,force,front_fy,-0.002348606940358877 +karman_re50,ppo,4,1.6,force,upper_fx,0.0003847948391921818 +karman_re50,ppo,4,1.6,force,upper_fy,0.004340378567576408 +karman_re50,ppo,4,1.6,force,lower_fx,-0.0007033690926618874 +karman_re50,ppo,4,1.6,force,lower_fy,-0.0034162839874625206 +karman_re50,ppo,5,2.0,force,front_fx,-0.0005776546895503998 +karman_re50,ppo,5,2.0,force,front_fy,-0.0020313893910497427 +karman_re50,ppo,5,2.0,force,upper_fx,0.0009077630820684135 +karman_re50,ppo,5,2.0,force,upper_fy,0.003908981569111347 +karman_re50,ppo,5,2.0,force,lower_fx,-0.0007511996664106846 +karman_re50,ppo,5,2.0,force,lower_fy,-0.0033190555404871702 +karman_re50,ppo,6,2.4,force,front_fx,-0.0007696470129303634 +karman_re50,ppo,6,2.4,force,front_fy,-0.001629056641831994 +karman_re50,ppo,6,2.4,force,upper_fx,0.001167135196737945 +karman_re50,ppo,6,2.4,force,upper_fy,0.00350406882353127 +karman_re50,ppo,6,2.4,force,lower_fx,-0.0007256807293742895 +karman_re50,ppo,6,2.4,force,lower_fy,-0.0030349784065037966 +karman_re50,ppo,7,2.8,force,front_fx,-0.000695608789101243 +karman_re50,ppo,7,2.8,force,front_fy,-0.0011439390946179628 +karman_re50,ppo,7,2.8,force,upper_fx,0.001302833203226328 +karman_re50,ppo,7,2.8,force,upper_fy,0.0034054750576615334 +karman_re50,ppo,7,2.8,force,lower_fx,-0.0008509955368936062 +karman_re50,ppo,7,2.8,force,lower_fy,-0.0026915394701063633 +karman_re50,ppo,8,3.2,force,front_fx,-0.0003410058852750808 +karman_re50,ppo,8,3.2,force,front_fy,-0.000569092168007046 +karman_re50,ppo,8,3.2,force,upper_fx,0.0014138121623545885 +karman_re50,ppo,8,3.2,force,upper_fy,0.0036103809252381325 +karman_re50,ppo,8,3.2,force,lower_fx,-0.0011705217184498906 +karman_re50,ppo,8,3.2,force,lower_fy,-0.0025019028689712286 +karman_re50,ppo,9,3.6,force,front_fx,0.0002295777085237205 +karman_re50,ppo,9,3.6,force,front_fy,6.7328721343074e-05 +karman_re50,ppo,9,3.6,force,upper_fx,0.001468092785216868 +karman_re50,ppo,9,3.6,force,upper_fy,0.003990492317825556 +karman_re50,ppo,9,3.6,force,lower_fx,-0.0016367334173992276 +karman_re50,ppo,9,3.6,force,lower_fy,-0.00254571670666337 +karman_re50,ppo,10,4.0,force,front_fx,0.0008720594923943281 +karman_re50,ppo,10,4.0,force,front_fy,0.0006715367780998349 +karman_re50,ppo,10,4.0,force,upper_fx,0.0013863230124115944 +karman_re50,ppo,10,4.0,force,upper_fy,0.004312340170145035 +karman_re50,ppo,10,4.0,force,lower_fx,-0.0021285442635416985 +karman_re50,ppo,10,4.0,force,lower_fy,-0.0028307277243584394 +karman_re50,ppo,11,4.4,force,front_fx,0.0013833631528541446 +karman_re50,ppo,11,4.4,force,front_fy,0.001201902749016881 +karman_re50,ppo,11,4.4,force,upper_fx,0.001181890838779509 +karman_re50,ppo,11,4.4,force,upper_fy,0.00440238555893302 +karman_re50,ppo,11,4.4,force,lower_fx,-0.002451852662488818 +karman_re50,ppo,11,4.4,force,lower_fy,-0.0032162084244191647 +karman_re50,ppo,12,4.8,force,front_fx,0.001567350816912949 +karman_re50,ppo,12,4.8,force,front_fy,0.0016354700783267617 +karman_re50,ppo,12,4.8,force,upper_fx,0.0010106450645253062 +karman_re50,ppo,12,4.8,force,upper_fy,0.004303093533962965 +karman_re50,ppo,12,4.8,force,lower_fx,-0.002488768892362714 +karman_re50,ppo,12,4.8,force,lower_fy,-0.003488510614261031 +karman_re50,ppo,13,5.2,force,front_fx,0.001439693383872509 +karman_re50,ppo,13,5.2,force,front_fy,0.001962246373295784 +karman_re50,ppo,13,5.2,force,upper_fx,0.0009861541911959648 +karman_re50,ppo,13,5.2,force,upper_fy,0.004204902797937393 +karman_re50,ppo,13,5.2,force,lower_fx,-0.0023770988918840885 +karman_re50,ppo,13,5.2,force,lower_fy,-0.003533582203090191 +karman_re50,ppo,14,5.6,force,front_fx,0.0011853787582367659 +karman_re50,ppo,14,5.6,force,front_fy,0.0021280981600284576 +karman_re50,ppo,14,5.6,force,upper_fx,0.0010924475500360131 +karman_re50,ppo,14,5.6,force,upper_fy,0.004182484932243824 +karman_re50,ppo,14,5.6,force,lower_fx,-0.0023337157908827066 +karman_re50,ppo,14,5.6,force,lower_fy,-0.0034361938014626503 +karman_re50,ppo,15,6.0,force,front_fx,0.0009614545269869268 +karman_re50,ppo,15,6.0,force,front_fy,0.0020928781013935804 +karman_re50,ppo,15,6.0,force,upper_fx,0.001282215816900134 +karman_re50,ppo,15,6.0,force,upper_fy,0.0041898088529706 +karman_re50,ppo,15,6.0,force,lower_fx,-0.0024268957786262035 +karman_re50,ppo,15,6.0,force,lower_fy,-0.003309121122583747 +karman_re50,ppo,16,6.4,force,front_fx,0.0008332665893249214 +karman_re50,ppo,16,6.4,force,front_fy,0.0018968024523928761 +karman_re50,ppo,16,6.4,force,upper_fx,0.001514374278485775 +karman_re50,ppo,16,6.4,force,upper_fy,0.004204519558697939 +karman_re50,ppo,16,6.4,force,lower_fx,-0.0026225459296256304 +karman_re50,ppo,16,6.4,force,lower_fy,-0.0031634438782930374 +karman_re50,ppo,17,6.8,force,front_fx,0.0008586829644627869 +karman_re50,ppo,17,6.8,force,front_fy,0.001516594085842371 +karman_re50,ppo,17,6.8,force,upper_fx,0.0017693645786494017 +karman_re50,ppo,17,6.8,force,upper_fy,0.004212154075503349 +karman_re50,ppo,17,6.8,force,lower_fx,-0.0028933503199368715 +karman_re50,ppo,17,6.8,force,lower_fy,-0.003020485630258918 +karman_re50,ppo,18,7.2,force,front_fx,0.0010886740637943149 +karman_re50,ppo,18,7.2,force,front_fy,0.0009403337608091533 +karman_re50,ppo,18,7.2,force,upper_fx,0.0020257020369172096 +karman_re50,ppo,18,7.2,force,upper_fy,0.004244256764650345 +karman_re50,ppo,18,7.2,force,lower_fx,-0.0031881313771009445 +karman_re50,ppo,18,7.2,force,lower_fy,-0.0028957210015505552 +karman_re50,ppo,19,7.6,force,front_fx,0.00146714155562222 +karman_re50,ppo,19,7.6,force,front_fy,0.0001622430863790214 +karman_re50,ppo,19,7.6,force,upper_fx,0.0022964905947446823 +karman_re50,ppo,19,7.6,force,upper_fy,0.0043372418731451035 +karman_re50,ppo,19,7.6,force,lower_fx,-0.003429502248764038 +karman_re50,ppo,19,7.6,force,lower_fy,-0.0028173283208161592 +karman_re50,ppo,20,8.0,force,front_fx,0.001799871912226081 +karman_re50,ppo,20,8.0,force,front_fy,-0.0007157485815696418 +karman_re50,ppo,20,8.0,force,upper_fx,0.0025890162214636803 +karman_re50,ppo,20,8.0,force,upper_fy,0.004541396629065275 +karman_re50,ppo,20,8.0,force,lower_fx,-0.003557675750926137 +karman_re50,ppo,20,8.0,force,lower_fy,-0.0028165436815470457 +karman_re50,ppo,21,8.4,force,front_fx,0.0018752292962744832 +karman_re50,ppo,21,8.4,force,front_fy,-0.0015600016340613365 +karman_re50,ppo,21,8.4,force,upper_fx,0.0028957007452845573 +karman_re50,ppo,21,8.4,force,upper_fy,0.004838712513446808 +karman_re50,ppo,21,8.4,force,lower_fx,-0.003574342466890812 +karman_re50,ppo,21,8.4,force,lower_fy,-0.002937742741778493 +karman_re50,ppo,22,8.8,force,front_fx,0.0016243498539552093 +karman_re50,ppo,22,8.8,force,front_fy,-0.0022618547081947327 +karman_re50,ppo,22,8.8,force,upper_fx,0.0031790011562407017 +karman_re50,ppo,22,8.8,force,upper_fy,0.005157181061804295 +karman_re50,ppo,22,8.8,force,lower_fx,-0.0035283532924950123 +karman_re50,ppo,22,8.8,force,lower_fy,-0.0031636389903724194 +karman_re50,ppo,23,9.2,force,front_fx,0.0011513822246342897 +karman_re50,ppo,23,9.2,force,front_fy,-0.0027637865860015154 +karman_re50,ppo,23,9.2,force,upper_fx,0.0033925503958016634 +karman_re50,ppo,23,9.2,force,upper_fy,0.00543164974078536 +karman_re50,ppo,23,9.2,force,lower_fx,-0.003444121452048421 +karman_re50,ppo,23,9.2,force,lower_fy,-0.0033856756053864956 +karman_re50,ppo,24,9.6,force,front_fx,0.0006095118587836623 +karman_re50,ppo,24,9.6,force,front_fy,-0.0030410834588110447 +karman_re50,ppo,24,9.6,force,upper_fx,0.0035098097287118435 +karman_re50,ppo,24,9.6,force,upper_fy,0.005598862189799547 +karman_re50,ppo,24,9.6,force,lower_fx,-0.0032964786514639854 +karman_re50,ppo,24,9.6,force,lower_fy,-0.0034578582271933556 +karman_re50,ppo,25,10.0,force,front_fx,7.09483283571899e-05 +karman_re50,ppo,25,10.0,force,front_fy,-0.0030799058731645346 +karman_re50,ppo,25,10.0,force,upper_fx,0.0035380616318434477 +karman_re50,ppo,25,10.0,force,upper_fy,0.005553544033318758 +karman_re50,ppo,25,10.0,force,lower_fx,-0.0030037122778594494 +karman_re50,ppo,25,10.0,force,lower_fy,-0.0033122769091278315 +karman_re50,ppo,26,10.4,force,front_fx,-0.0004526534175965935 +karman_re50,ppo,26,10.4,force,front_fy,-0.0028933885041624308 +karman_re50,ppo,26,10.4,force,upper_fx,0.003465090412646532 +karman_re50,ppo,26,10.4,force,upper_fy,0.005152695346623659 +karman_re50,ppo,26,10.4,force,lower_fx,-0.002507409080862999 +karman_re50,ppo,26,10.4,force,lower_fy,-0.0029884616378694773 +karman_re50,ppo,27,10.8,force,front_fx,-0.0009033280657604337 +karman_re50,ppo,27,10.8,force,front_fy,-0.002509975340217352 +karman_re50,ppo,27,10.8,force,upper_fx,0.0032133222557604313 +karman_re50,ppo,27,10.8,force,upper_fy,0.004382675513625145 +karman_re50,ppo,27,10.8,force,lower_fx,-0.0018424618756398559 +karman_re50,ppo,27,10.8,force,lower_fy,-0.0025130060967057943 +karman_re50,ppo,28,11.2,force,front_fx,-0.0011397224152460694 +karman_re50,ppo,28,11.2,force,front_fy,-0.002010802971199155 +karman_re50,ppo,28,11.2,force,upper_fx,0.0027598578017205 +karman_re50,ppo,28,11.2,force,upper_fy,0.0035074204206466675 +karman_re50,ppo,28,11.2,force,lower_fx,-0.0012315219501033425 +karman_re50,ppo,28,11.2,force,lower_fy,-0.0019297333201393485 +karman_re50,ppo,29,11.6,force,front_fx,-0.0009998744353652 +karman_re50,ppo,29,11.6,force,front_fy,-0.001488424721173942 +karman_re50,ppo,29,11.6,force,upper_fx,0.0022185021080076694 +karman_re50,ppo,29,11.6,force,upper_fy,0.0030224889051169157 +karman_re50,ppo,29,11.6,force,lower_fx,-0.0009883162565529346 +karman_re50,ppo,29,11.6,force,lower_fy,-0.0014205382904037833 +karman_re50,ppo,30,12.0,force,front_fx,-0.0003773328789975494 +karman_re50,ppo,30,12.0,force,front_fy,-0.0010203125420957804 +karman_re50,ppo,30,12.0,force,upper_fx,0.0017968632746487856 +karman_re50,ppo,30,12.0,force,upper_fy,0.0032476531341671944 +karman_re50,ppo,30,12.0,force,lower_fx,-0.001324141165241599 +karman_re50,ppo,30,12.0,force,lower_fy,-0.0012649721466004848 +karman_re50,ppo,31,12.4,force,front_fx,0.0006880216533318162 +karman_re50,ppo,31,12.4,force,front_fy,-0.0005576548865064979 +karman_re50,ppo,31,12.4,force,upper_fx,0.001591885695233941 +karman_re50,ppo,31,12.4,force,upper_fy,0.003952414728701115 +karman_re50,ppo,31,12.4,force,lower_fx,-0.0020868901629000902 +karman_re50,ppo,31,12.4,force,lower_fy,-0.0015388161409646273 +karman_re50,ppo,32,12.8,force,front_fx,0.0019369308138266206 +karman_re50,ppo,32,12.8,force,front_fy,1.7553054476593388e-06 +karman_re50,ppo,32,12.8,force,upper_fx,0.0014784922823309898 +karman_re50,ppo,32,12.8,force,upper_fy,0.004446393344551325 +karman_re50,ppo,32,12.8,force,lower_fx,-0.0028259612154215574 +karman_re50,ppo,32,12.8,force,lower_fy,-0.0021093925461173058 +karman_re50,ppo,33,13.2,force,front_fx,0.0028176221530884504 +karman_re50,ppo,33,13.2,force,front_fy,0.000664193241391331 +karman_re50,ppo,33,13.2,force,upper_fx,0.0014019821537658572 +karman_re50,ppo,33,13.2,force,upper_fy,0.004353386349976063 +karman_re50,ppo,33,13.2,force,lower_fx,-0.003024525009095669 +karman_re50,ppo,33,13.2,force,lower_fy,-0.0026129570323973894 +karman_re50,ppo,34,13.6,force,front_fx,0.0029225910548120737 +karman_re50,ppo,34,13.6,force,front_fy,0.001381467911414802 +karman_re50,ppo,34,13.6,force,upper_fx,0.0014929957687854767 +karman_re50,ppo,34,13.6,force,upper_fy,0.004090998321771622 +karman_re50,ppo,34,13.6,force,lower_fx,-0.0026843715459108353 +karman_re50,ppo,34,13.6,force,lower_fy,-0.002675398485735059 +karman_re50,ppo,35,14.0,force,front_fx,0.0025146452244371176 +karman_re50,ppo,35,14.0,force,front_fy,0.001939690439030528 +karman_re50,ppo,35,14.0,force,upper_fx,0.001750107272528112 +karman_re50,ppo,35,14.0,force,upper_fy,0.004020235035568476 +karman_re50,ppo,35,14.0,force,lower_fx,-0.002407100750133395 +karman_re50,ppo,35,14.0,force,lower_fy,-0.002370103495195508 +karman_re50,ppo,36,14.4,force,front_fx,0.0020123424474149942 +karman_re50,ppo,36,14.4,force,front_fy,0.0021700477227568626 +karman_re50,ppo,36,14.4,force,upper_fx,0.0020591055508702993 +karman_re50,ppo,36,14.4,force,upper_fy,0.004077934194356203 +karman_re50,ppo,36,14.4,force,lower_fx,-0.0025296921376138926 +karman_re50,ppo,36,14.4,force,lower_fy,-0.002008083974942565 +karman_re50,ppo,37,14.8,force,front_fx,0.0016179142985492945 +karman_re50,ppo,37,14.8,force,front_fy,0.002119568409398198 +karman_re50,ppo,37,14.8,force,upper_fx,0.002330513671040535 +karman_re50,ppo,37,14.8,force,upper_fy,0.004182752221822739 +karman_re50,ppo,37,14.8,force,lower_fx,-0.002943017752841115 +karman_re50,ppo,37,14.8,force,lower_fy,-0.001711763790808618 +karman_re50,ppo,38,15.2,force,front_fx,0.0013167494907975197 +karman_re50,ppo,38,15.2,force,front_fy,0.0019306428730487823 +karman_re50,ppo,38,15.2,force,upper_fx,0.0025718477554619312 +karman_re50,ppo,38,15.2,force,upper_fy,0.004333548713475466 +karman_re50,ppo,38,15.2,force,lower_fx,-0.0034387153573334217 +karman_re50,ppo,38,15.2,force,lower_fy,-0.0014505725121125579 +karman_re50,ppo,39,15.6,force,front_fx,0.0011394467437639832 +karman_re50,ppo,39,15.6,force,front_fy,0.0016366757918149233 +karman_re50,ppo,39,15.6,force,upper_fx,0.0027728888671845198 +karman_re50,ppo,39,15.6,force,upper_fy,0.004494857508689165 +karman_re50,ppo,39,15.6,force,lower_fx,-0.0039176298305392265 +karman_re50,ppo,39,15.6,force,lower_fy,-0.0012514395639300346 +karman_re50,ppo,40,16.0,force,front_fx,0.001134654157795012 +karman_re50,ppo,40,16.0,force,front_fy,0.001272509340196848 +karman_re50,ppo,40,16.0,force,upper_fx,0.002865186659619212 +karman_re50,ppo,40,16.0,force,upper_fy,0.004611675627529621 +karman_re50,ppo,40,16.0,force,lower_fx,-0.004293125122785568 +karman_re50,ppo,40,16.0,force,lower_fy,-0.0012453373055905104 +karman_re50,ppo,41,16.4,force,front_fx,0.0012561216717585921 +karman_re50,ppo,41,16.4,force,front_fy,0.0007943521486595273 +karman_re50,ppo,41,16.4,force,upper_fx,0.0027987402863800526 +karman_re50,ppo,41,16.4,force,upper_fy,0.0047134896740317345 +karman_re50,ppo,41,16.4,force,lower_fx,-0.004398130811750889 +karman_re50,ppo,41,16.4,force,lower_fy,-0.0016036437591537833 +karman_re50,ppo,42,16.8,force,front_fx,0.001320959534496069 +karman_re50,ppo,42,16.8,force,front_fy,0.00017455131455790251 +karman_re50,ppo,42,16.8,force,upper_fx,0.002615794539451599 +karman_re50,ppo,42,16.8,force,upper_fy,0.004907189402729273 +karman_re50,ppo,42,16.8,force,lower_fx,-0.004082929342985153 +karman_re50,ppo,42,16.8,force,lower_fy,-0.002356109209358692 +karman_re50,ppo,43,17.2,force,front_fx,0.0011775246821343899 +karman_re50,ppo,43,17.2,force,front_fy,-0.0005834220792166889 +karman_re50,ppo,43,17.2,force,upper_fx,0.002404654398560524 +karman_re50,ppo,43,17.2,force,upper_fy,0.005225541535764933 +karman_re50,ppo,43,17.2,force,lower_fx,-0.0033692410215735435 +karman_re50,ppo,43,17.2,force,lower_fy,-0.0032679929863661528 +karman_re50,ppo,44,17.6,force,front_fx,0.0008563816663809121 +karman_re50,ppo,44,17.6,force,front_fy,-0.0013403375633060932 +karman_re50,ppo,44,17.6,force,upper_fx,0.0021789665333926678 +karman_re50,ppo,44,17.6,force,upper_fy,0.005588369444012642 +karman_re50,ppo,44,17.6,force,lower_fx,-0.0024719624780118465 +karman_re50,ppo,44,17.6,force,lower_fy,-0.0039234766736626625 +karman_re50,ppo,45,18.0,force,front_fx,0.0005107995239086449 +karman_re50,ppo,45,18.0,force,front_fy,-0.001868657418526709 +karman_re50,ppo,45,18.0,force,upper_fx,0.0018911107908934355 +karman_re50,ppo,45,18.0,force,upper_fy,0.005804766900837421 +karman_re50,ppo,45,18.0,force,lower_fx,-0.0016345797339454293 +karman_re50,ppo,45,18.0,force,lower_fy,-0.00404784781858325 +karman_re50,ppo,46,18.4,force,front_fx,0.00021187850506976247 +karman_re50,ppo,46,18.4,force,front_fy,-0.0020374057348817587 +karman_re50,ppo,46,18.4,force,upper_fx,0.0014883563853800297 +karman_re50,ppo,46,18.4,force,upper_fy,0.005631796084344387 +karman_re50,ppo,46,18.4,force,lower_fx,-0.0009544262429699302 +karman_re50,ppo,46,18.4,force,lower_fy,-0.0037481868639588356 +karman_re50,ppo,47,18.8,force,front_fx,-5.3646592277800664e-05 +karman_re50,ppo,47,18.8,force,front_fy,-0.0018617179011926055 +karman_re50,ppo,47,18.8,force,upper_fx,0.0009265401167795062 +karman_re50,ppo,47,18.8,force,upper_fy,0.004949052352458239 +karman_re50,ppo,47,18.8,force,lower_fx,-0.0002929951879195869 +karman_re50,ppo,47,18.8,force,lower_fy,-0.0032820741180330515 +karman_re50,ppo,48,19.2,force,front_fx,-0.00028310075867921114 +karman_re50,ppo,48,19.2,force,front_fy,-0.0014520835829898715 +karman_re50,ppo,48,19.2,force,upper_fx,0.00018211480346508324 +karman_re50,ppo,48,19.2,force,upper_fy,0.0038362829945981503 +karman_re50,ppo,48,19.2,force,lower_fx,0.0004548937431536615 +karman_re50,ppo,48,19.2,force,lower_fy,-0.0027749387081712484 +karman_re50,ppo,49,19.6,force,front_fx,-0.0004470079729799181 +karman_re50,ppo,49,19.6,force,front_fy,-0.0009668052080087364 +karman_re50,ppo,49,19.6,force,upper_fx,-0.0006993463612161577 +karman_re50,ppo,49,19.6,force,upper_fy,0.002622347790747881 +karman_re50,ppo,49,19.6,force,lower_fx,0.001191692310385406 +karman_re50,ppo,49,19.6,force,lower_fy,-0.0022726727183908224 +karman_re50,ppo,50,20.0,force,front_fx,-0.000491886050440371 +karman_re50,ppo,50,20.0,force,front_fy,-0.0005973739898763597 +karman_re50,ppo,50,20.0,force,upper_fx,-0.0015620364574715495 +karman_re50,ppo,50,20.0,force,upper_fy,0.0018927417695522308 +karman_re50,ppo,50,20.0,force,lower_fx,0.0016401351895183325 +karman_re50,ppo,50,20.0,force,lower_fy,-0.001894432003609836 +karman_re50,ppo,51,20.4,force,front_fx,-0.0003829095221590251 +karman_re50,ppo,51,20.4,force,front_fy,-0.00042323090019635856 +karman_re50,ppo,51,20.4,force,upper_fx,-0.0020620357245206833 +karman_re50,ppo,51,20.4,force,upper_fy,0.002254743594676256 +karman_re50,ppo,51,20.4,force,lower_fx,0.0015656808391213417 +karman_re50,ppo,51,20.4,force,lower_fy,-0.001777742407284677 +karman_re50,ppo,52,20.8,force,front_fx,-0.0002036965306615457 +karman_re50,ppo,52,20.8,force,front_fy,-0.00024941525771282613 +karman_re50,ppo,52,20.8,force,upper_fx,-0.0017701135948300362 +karman_re50,ppo,52,20.8,force,upper_fy,0.0035863749217242002 +karman_re50,ppo,52,20.8,force,lower_fx,0.0010981105733662844 +karman_re50,ppo,52,20.8,force,lower_fy,-0.001924780779518187 +karman_re50,ppo,53,21.2,force,front_fx,5.061887713964097e-05 +karman_re50,ppo,53,21.2,force,front_fy,0.00014801466022618115 +karman_re50,ppo,53,21.2,force,upper_fx,-0.0007019708282314241 +karman_re50,ppo,53,21.2,force,upper_fy,0.00479475362226367 +karman_re50,ppo,53,21.2,force,lower_fx,0.0004853227874264121 +karman_re50,ppo,53,21.2,force,lower_fy,-0.002250563120469451 +karman_re50,ppo,54,21.6,force,front_fx,0.000605118228122592 +karman_re50,ppo,54,21.6,force,front_fy,0.0006903611938469112 +karman_re50,ppo,54,21.6,force,upper_fx,0.0003051220264751464 +karman_re50,ppo,54,21.6,force,upper_fy,0.0050670732744038105 +karman_re50,ppo,54,21.6,force,lower_fx,-0.0002967760374303907 +karman_re50,ppo,54,21.6,force,lower_fy,-0.0027424178551882505 +karman_re50,ppo,55,22.0,force,front_fx,0.0014474025228992105 +karman_re50,ppo,55,22.0,force,front_fy,0.0011436509666964412 +karman_re50,ppo,55,22.0,force,upper_fx,0.0006590631674043834 +karman_re50,ppo,55,22.0,force,upper_fy,0.004759324714541435 +karman_re50,ppo,55,22.0,force,lower_fx,-0.0011143097653985023 +karman_re50,ppo,55,22.0,force,lower_fy,-0.003323861863464117 +karman_re50,ppo,56,22.4,force,front_fx,0.0020749177783727646 +karman_re50,ppo,56,22.4,force,front_fy,0.0014958337415009737 +karman_re50,ppo,56,22.4,force,upper_fx,0.0007466694805771112 +karman_re50,ppo,56,22.4,force,upper_fy,0.004345434717833996 +karman_re50,ppo,56,22.4,force,lower_fx,-0.001536973170004785 +karman_re50,ppo,56,22.4,force,lower_fy,-0.0035965940915048122 +karman_re50,ppo,57,22.8,force,front_fx,0.002098787110298872 +karman_re50,ppo,57,22.8,force,front_fy,0.00174599583260715 +karman_re50,ppo,57,22.8,force,upper_fx,0.0010187459411099553 +karman_re50,ppo,57,22.8,force,upper_fy,0.004128326661884785 +karman_re50,ppo,57,22.8,force,lower_fx,-0.0016462064813822508 +karman_re50,ppo,57,22.8,force,lower_fy,-0.003315320238471031 +karman_re50,ppo,58,23.2,force,front_fx,0.0017053422052413225 +karman_re50,ppo,58,23.2,force,front_fy,0.0017860634252429008 +karman_re50,ppo,58,23.2,force,upper_fx,0.001497791614383459 +karman_re50,ppo,58,23.2,force,upper_fy,0.004176053684204817 +karman_re50,ppo,58,23.2,force,lower_fx,-0.001890525920316577 +karman_re50,ppo,58,23.2,force,lower_fy,-0.00275485310703516 +karman_re50,ppo,59,23.6,force,front_fx,0.0012246044352650642 +karman_re50,ppo,59,23.6,force,front_fy,0.0016167564317584038 +karman_re50,ppo,59,23.6,force,upper_fx,0.0019969246350228786 +karman_re50,ppo,59,23.6,force,upper_fy,0.004246160387992859 +karman_re50,ppo,59,23.6,force,lower_fx,-0.0023805296514183283 +karman_re50,ppo,59,23.6,force,lower_fy,-0.0022200546227395535 +karman_re50,ppo,60,24.0,force,front_fx,0.0007953760796226561 +karman_re50,ppo,60,24.0,force,front_fy,0.00147532531991601 +karman_re50,ppo,60,24.0,force,upper_fx,0.0023417342454195023 +karman_re50,ppo,60,24.0,force,upper_fy,0.004211395513266325 +karman_re50,ppo,60,24.0,force,lower_fx,-0.002913756761699915 +karman_re50,ppo,60,24.0,force,lower_fy,-0.0018409830518066883 +karman_re50,ppo,61,24.4,force,front_fx,0.0004537753411568701 +karman_re50,ppo,61,24.4,force,front_fy,0.0014413889730349183 +karman_re50,ppo,61,24.4,force,upper_fx,0.0024550422094762325 +karman_re50,ppo,61,24.4,force,upper_fy,0.004133543930947781 +karman_re50,ppo,61,24.4,force,lower_fx,-0.003299331059679389 +karman_re50,ppo,61,24.4,force,lower_fy,-0.0017851575976237655 +karman_re50,ppo,62,24.8,force,front_fx,0.00023553568462375551 +karman_re50,ppo,62,24.8,force,front_fy,0.0013784888433292508 +karman_re50,ppo,62,24.8,force,upper_fx,0.0023254158440977335 +karman_re50,ppo,62,24.8,force,upper_fy,0.0040803332813084126 +karman_re50,ppo,62,24.8,force,lower_fx,-0.003400619840249419 +karman_re50,ppo,62,24.8,force,lower_fy,-0.0022088366094976664 +karman_re50,ppo,63,25.2,force,front_fx,0.00015344290295615792 +karman_re50,ppo,63,25.2,force,front_fy,0.001112267840653658 +karman_re50,ppo,63,25.2,force,upper_fx,0.0019899816252291203 +karman_re50,ppo,63,25.2,force,upper_fy,0.00406490545719862 +karman_re50,ppo,63,25.2,force,lower_fx,-0.003047137288376689 +karman_re50,ppo,63,25.2,force,lower_fy,-0.003075923305004835 +karman_re50,ppo,64,25.6,force,front_fx,0.00015871934010647237 +karman_re50,ppo,64,25.6,force,front_fy,0.0005670424434356391 +karman_re50,ppo,64,25.6,force,upper_fx,0.0015325858257710934 +karman_re50,ppo,64,25.6,force,upper_fy,0.0041077290661633015 +karman_re50,ppo,64,25.6,force,lower_fx,-0.0021386512089520693 +karman_re50,ppo,64,25.6,force,lower_fy,-0.003988977055996656 +karman_re50,ppo,65,26.0,force,front_fx,0.0002499160182196647 +karman_re50,ppo,65,26.0,force,front_fy,-0.0001505427062511444 +karman_re50,ppo,65,26.0,force,upper_fx,0.0009928406216204166 +karman_re50,ppo,65,26.0,force,upper_fy,0.004196254536509514 +karman_re50,ppo,65,26.0,force,lower_fx,-0.0009985312353819609 +karman_re50,ppo,65,26.0,force,lower_fy,-0.004349932074546814 +karman_re50,ppo,66,26.4,force,front_fx,0.00041383141069673 +karman_re50,ppo,66,26.4,force,front_fy,-0.000784441304858774 +karman_re50,ppo,66,26.4,force,upper_fx,0.00036172065301798284 +karman_re50,ppo,66,26.4,force,upper_fy,0.004244877491146326 +karman_re50,ppo,66,26.4,force,lower_fx,-0.00018336030188947916 +karman_re50,ppo,66,26.4,force,lower_fy,-0.004147231578826904 +karman_re50,ppo,67,26.8,force,front_fx,0.0006041200249455869 +karman_re50,ppo,67,26.8,force,front_fy,-0.001133920275606215 +karman_re50,ppo,67,26.8,force,upper_fx,-0.00034875760320574045 +karman_re50,ppo,67,26.8,force,upper_fy,0.004163077566772699 +karman_re50,ppo,67,26.8,force,lower_fx,0.00020306362421251833 +karman_re50,ppo,67,26.8,force,lower_fy,-0.0038081929087638855 +karman_re50,ppo,68,27.2,force,front_fx,0.0007578664226457477 +karman_re50,ppo,68,27.2,force,front_fy,-0.00125236960593611 +karman_re50,ppo,68,27.2,force,upper_fx,-0.0010752103989943862 +karman_re50,ppo,68,27.2,force,upper_fy,0.003931482322514057 +karman_re50,ppo,68,27.2,force,lower_fx,0.00039950208156369627 +karman_re50,ppo,68,27.2,force,lower_fy,-0.003494098549708724 +karman_re50,ppo,69,27.6,force,front_fx,0.0008429435547441244 +karman_re50,ppo,69,27.6,force,front_fy,-0.0012441746657714248 +karman_re50,ppo,69,27.6,force,upper_fx,-0.0017333979485556483 +karman_re50,ppo,69,27.6,force,upper_fy,0.0036284991074353456 +karman_re50,ppo,69,27.6,force,lower_fx,0.0005741191562265158 +karman_re50,ppo,69,27.6,force,lower_fy,-0.0031733063515275717 +karman_re50,ppo,70,28.0,force,front_fx,0.0008417399949394166 +karman_re50,ppo,70,28.0,force,front_fy,-0.0011226608185097575 +karman_re50,ppo,70,28.0,force,upper_fx,-0.0022449407260864973 +karman_re50,ppo,70,28.0,force,upper_fy,0.003318031318485737 +karman_re50,ppo,70,28.0,force,lower_fx,0.0007952427840791643 +karman_re50,ppo,70,28.0,force,lower_fy,-0.0028968467377126217 +karman_re50,ppo,71,28.4,force,front_fx,0.0007172975456342101 +karman_re50,ppo,71,28.4,force,front_fy,-0.000943774008192122 +karman_re50,ppo,71,28.4,force,upper_fx,-0.0025598483625799417 +karman_re50,ppo,71,28.4,force,upper_fy,0.003071785671636462 +karman_re50,ppo,71,28.4,force,lower_fx,0.0010558342328295112 +karman_re50,ppo,71,28.4,force,lower_fy,-0.0027234370354562998 +karman_re50,ppo,72,28.8,force,front_fx,0.0004985563573427498 +karman_re50,ppo,72,28.8,force,front_fy,-0.0007550279842689633 +karman_re50,ppo,72,28.8,force,upper_fx,-0.002634967677295208 +karman_re50,ppo,72,28.8,force,upper_fy,0.003061534371227026 +karman_re50,ppo,72,28.8,force,lower_fx,0.0012536575086414814 +karman_re50,ppo,72,28.8,force,lower_fy,-0.002650825772434473 +karman_re50,ppo,73,29.2,force,front_fx,0.00021684094099327922 +karman_re50,ppo,73,29.2,force,front_fy,-0.0005740199121646583 +karman_re50,ppo,73,29.2,force,upper_fx,-0.0023401190992444754 +karman_re50,ppo,73,29.2,force,upper_fy,0.003466604044660926 +karman_re50,ppo,73,29.2,force,lower_fx,0.0012678928906098008 +karman_re50,ppo,73,29.2,force,lower_fy,-0.002657162258401513 +karman_re50,ppo,74,29.6,force,front_fx,-6.94448090143851e-06 +karman_re50,ppo,74,29.6,force,front_fy,-0.0003266780695412308 +karman_re50,ppo,74,29.6,force,upper_fx,-0.0015534029807895422 +karman_re50,ppo,74,29.6,force,upper_fy,0.004160990938544273 +karman_re50,ppo,74,29.6,force,lower_fx,0.0010538611095398664 +karman_re50,ppo,74,29.6,force,lower_fy,-0.002748886588960886 +karman_re50,ppo,75,30.0,force,front_fx,5.367425183067098e-05 +karman_re50,ppo,75,30.0,force,front_fy,2.4876837414922193e-05 +karman_re50,ppo,75,30.0,force,upper_fx,-0.000440735078882426 +karman_re50,ppo,75,30.0,force,upper_fy,0.004705887287855148 +karman_re50,ppo,75,30.0,force,lower_fx,0.0005726518575102091 +karman_re50,ppo,75,30.0,force,lower_fy,-0.0029547789599746466 +karman_re50,ppo,76,30.4,force,front_fx,0.0006444930913858116 +karman_re50,ppo,76,30.4,force,front_fy,0.00042143434984609485 +karman_re50,ppo,76,30.4,force,upper_fx,0.0004641322302632034 +karman_re50,ppo,76,30.4,force,upper_fy,0.004835477564483881 +karman_re50,ppo,76,30.4,force,lower_fx,-0.00020722771296277642 +karman_re50,ppo,76,30.4,force,lower_fy,-0.0033110452350229025 +karman_re50,ppo,77,30.8,force,front_fx,0.0016233227215707302 +karman_re50,ppo,77,30.8,force,front_fy,0.0008050475735217333 +karman_re50,ppo,77,30.8,force,upper_fx,0.0007989496225491166 +karman_re50,ppo,77,30.8,force,upper_fy,0.004575486294925213 +karman_re50,ppo,77,30.8,force,lower_fx,-0.0010291036451235414 +karman_re50,ppo,77,30.8,force,lower_fy,-0.003765130415558815 +karman_re50,ppo,78,31.2,force,front_fx,0.002337435260415077 +karman_re50,ppo,78,31.2,force,front_fy,0.0011779370252043009 +karman_re50,ppo,78,31.2,force,upper_fx,0.0008215995621867478 +karman_re50,ppo,78,31.2,force,upper_fy,0.004087559413164854 +karman_re50,ppo,78,31.2,force,lower_fx,-0.0014094649814069271 +karman_re50,ppo,78,31.2,force,lower_fy,-0.004006417002528906 +karman_re50,ppo,79,31.6,force,front_fx,0.002354393480345607 +karman_re50,ppo,79,31.6,force,front_fy,0.0015469538047909737 +karman_re50,ppo,79,31.6,force,upper_fx,0.0009404452284798026 +karman_re50,ppo,79,31.6,force,upper_fy,0.0037687860894948244 +karman_re50,ppo,79,31.6,force,lower_fx,-0.0013974658213555813 +karman_re50,ppo,79,31.6,force,lower_fy,-0.003770137671381235 +karman_re50,ppo,80,32.0,force,front_fx,0.00190825539175421 +karman_re50,ppo,80,32.0,force,front_fy,0.0017394161550328135 +karman_re50,ppo,80,32.0,force,upper_fx,0.0012411682400852442 +karman_re50,ppo,80,32.0,force,upper_fy,0.003752799704670906 +karman_re50,ppo,80,32.0,force,lower_fx,-0.0014980924315750599 +karman_re50,ppo,80,32.0,force,lower_fy,-0.0032990959007292986 +karman_re50,ppo,81,32.4,force,front_fx,0.0013474540319293737 +karman_re50,ppo,81,32.4,force,front_fy,0.00171534379478544 +karman_re50,ppo,81,32.4,force,upper_fx,0.001611253130249679 +karman_re50,ppo,81,32.4,force,upper_fy,0.0038227452896535397 +karman_re50,ppo,81,32.4,force,lower_fx,-0.001859475509263575 +karman_re50,ppo,81,32.4,force,lower_fy,-0.0029058584477752447 +karman_re50,ppo,82,32.8,force,front_fx,0.0008560592541471124 +karman_re50,ppo,82,32.8,force,front_fy,0.0016011499101296067 +karman_re50,ppo,82,32.8,force,upper_fx,0.001957070780918002 +karman_re50,ppo,82,32.8,force,upper_fy,0.0038588223978877068 +karman_re50,ppo,82,32.8,force,lower_fx,-0.002312400145456195 +karman_re50,ppo,82,32.8,force,lower_fy,-0.002633160911500454 +karman_re50,ppo,83,33.2,force,front_fx,0.00045268569374457 +karman_re50,ppo,83,33.2,force,front_fy,0.0014649193035438657 +karman_re50,ppo,83,33.2,force,upper_fx,0.0022480422630906105 +karman_re50,ppo,83,33.2,force,upper_fy,0.0038693665992468596 +karman_re50,ppo,83,33.2,force,lower_fx,-0.002711568959057331 +karman_re50,ppo,83,33.2,force,lower_fy,-0.0024607039522379637 +karman_re50,ppo,84,33.6,force,front_fx,0.0001967202260857448 +karman_re50,ppo,84,33.6,force,front_fy,0.0012544504133984447 +karman_re50,ppo,84,33.6,force,upper_fx,0.0024274662137031555 +karman_re50,ppo,84,33.6,force,upper_fy,0.0038529797457158566 +karman_re50,ppo,84,33.6,force,lower_fx,-0.0030073949601501226 +karman_re50,ppo,84,33.6,force,lower_fy,-0.0024445720482617617 +karman_re50,ppo,85,34.0,force,front_fx,0.00012338106171227992 +karman_re50,ppo,85,34.0,force,front_fy,0.0009069243678823113 +karman_re50,ppo,85,34.0,force,upper_fx,0.002408031141385436 +karman_re50,ppo,85,34.0,force,upper_fy,0.0037994547747075558 +karman_re50,ppo,85,34.0,force,lower_fx,-0.003082118695601821 +karman_re50,ppo,85,34.0,force,lower_fy,-0.002682790858671069 +karman_re50,ppo,86,34.4,force,front_fx,0.00017542100977152586 +karman_re50,ppo,86,34.4,force,front_fy,0.00038443319499492645 +karman_re50,ppo,86,34.4,force,upper_fx,0.002184887183830142 +karman_re50,ppo,86,34.4,force,upper_fy,0.003782080952078104 +karman_re50,ppo,86,34.4,force,lower_fx,-0.0027756330091506243 +karman_re50,ppo,86,34.4,force,lower_fy,-0.0031768030021339655 +karman_re50,ppo,87,34.8,force,front_fx,0.000249884877121076 +karman_re50,ppo,87,34.8,force,front_fy,-0.0002880078100133687 +karman_re50,ppo,87,34.8,force,upper_fx,0.0018400858389213681 +karman_re50,ppo,87,34.8,force,upper_fy,0.0038750064559280872 +karman_re50,ppo,87,34.8,force,lower_fx,-0.002104860497638583 +karman_re50,ppo,87,34.8,force,lower_fy,-0.0036889228504151106 +karman_re50,ppo,88,35.2,force,front_fx,0.0002961437567137182 +karman_re50,ppo,88,35.2,force,front_fy,-0.000988131039775908 +karman_re50,ppo,88,35.2,force,upper_fx,0.0014374015154317021 +karman_re50,ppo,88,35.2,force,upper_fy,0.004042578395456076 +karman_re50,ppo,88,35.2,force,lower_fx,-0.0013548929709941149 +karman_re50,ppo,88,35.2,force,lower_fy,-0.003944150637835264 +karman_re50,ppo,89,35.6,force,front_fx,0.0003037280112039298 +karman_re50,ppo,89,35.6,force,front_fy,-0.0015102949691936374 +karman_re50,ppo,89,35.6,force,upper_fx,0.0009690993465483189 +karman_re50,ppo,89,35.6,force,upper_fy,0.004178295377641916 +karman_re50,ppo,89,35.6,force,lower_fx,-0.000805353804025799 +karman_re50,ppo,89,35.6,force,lower_fy,-0.003907684702426195 +karman_re50,ppo,90,36.0,force,front_fx,0.00029382965294644237 +karman_re50,ppo,90,36.0,force,front_fy,-0.0017372970469295979 +karman_re50,ppo,90,36.0,force,upper_fx,0.00043640140211209655 +karman_re50,ppo,90,36.0,force,upper_fy,0.0041524264961481094 +karman_re50,ppo,90,36.0,force,lower_fx,-0.00047125143464654684 +karman_re50,ppo,90,36.0,force,lower_fy,-0.003695046529173851 +karman_re50,ppo,91,36.4,force,front_fx,0.00026694536791183054 +karman_re50,ppo,91,36.4,force,front_fy,-0.0017114232759922743 +karman_re50,ppo,91,36.4,force,upper_fx,-0.00012895104009658098 +karman_re50,ppo,91,36.4,force,upper_fy,0.00390014611184597 +karman_re50,ppo,91,36.4,force,lower_fx,-0.00020634861721191555 +karman_re50,ppo,91,36.4,force,lower_fy,-0.0033776983618736267 +karman_re50,ppo,92,36.8,force,front_fx,0.00021878092957194895 +karman_re50,ppo,92,36.8,force,front_fy,-0.0015319358790293336 +karman_re50,ppo,92,36.8,force,upper_fx,-0.0006894491380080581 +karman_re50,ppo,92,36.8,force,upper_fy,0.003452495438978076 +karman_re50,ppo,92,36.8,force,lower_fx,0.00010354522964917123 +karman_re50,ppo,92,36.8,force,lower_fy,-0.0030506339389830828 +karman_re50,ppo,93,37.2,force,front_fx,0.00014383497182279825 +karman_re50,ppo,93,37.2,force,front_fy,-0.0012573754647746682 +karman_re50,ppo,93,37.2,force,upper_fx,-0.0012229140847921371 +karman_re50,ppo,93,37.2,force,upper_fy,0.002935833530500531 +karman_re50,ppo,93,37.2,force,lower_fx,0.00048711508861742914 +karman_re50,ppo,93,37.2,force,lower_fy,-0.002790372585877776 +karman_re50,ppo,94,37.6,force,front_fx,4.343650653026998e-05 +karman_re50,ppo,94,37.6,force,front_fy,-0.0009816412348300219 +karman_re50,ppo,94,37.6,force,upper_fx,-0.0016656896332278848 +karman_re50,ppo,94,37.6,force,upper_fy,0.0026159605477005243 +karman_re50,ppo,94,37.6,force,lower_fx,0.0008420241065323353 +karman_re50,ppo,94,37.6,force,lower_fy,-0.0026246625930070877 +karman_re50,ppo,95,38.0,force,front_fx,-8.35300306789577e-05 +karman_re50,ppo,95,38.0,force,front_fy,-0.0007572735194116831 +karman_re50,ppo,95,38.0,force,upper_fx,-0.0018298299983143806 +karman_re50,ppo,95,38.0,force,upper_fy,0.0028185443952679634 +karman_re50,ppo,95,38.0,force,lower_fx,0.0009904169710353017 +karman_re50,ppo,95,38.0,force,lower_fy,-0.0025413662660866976 +karman_re50,ppo,96,38.4,force,front_fx,-0.0002009626041399315 +karman_re50,ppo,96,38.4,force,front_fy,-0.0005400225054472685 +karman_re50,ppo,96,38.4,force,upper_fx,-0.001433377736248076 +karman_re50,ppo,96,38.4,force,upper_fy,0.003619891358539462 +karman_re50,ppo,96,38.4,force,lower_fx,0.0008242856129072607 +karman_re50,ppo,96,38.4,force,lower_fy,-0.0025510957930237055 +karman_re50,ppo,97,38.8,force,front_fx,-0.00012344963033683598 +karman_re50,ppo,97,38.8,force,front_fy,-0.0002484067517798394 +karman_re50,ppo,97,38.8,force,upper_fx,-0.0004141145327594131 +karman_re50,ppo,97,38.8,force,upper_fy,0.004554638173431158 +karman_re50,ppo,97,38.8,force,lower_fx,0.00031998782651498914 +karman_re50,ppo,97,38.8,force,lower_fy,-0.0026959343813359737 +karman_re50,ppo,98,39.2,force,front_fx,0.0005034166388213634 +karman_re50,ppo,98,39.2,force,front_fy,0.00013478028995450586 +karman_re50,ppo,98,39.2,force,upper_fx,0.000689554784912616 +karman_re50,ppo,98,39.2,force,upper_fy,0.005001118406653404 +karman_re50,ppo,98,39.2,force,lower_fx,-0.0005439499509520829 +karman_re50,ppo,98,39.2,force,lower_fy,-0.00302777998149395 +karman_re50,ppo,99,39.6,force,front_fx,0.0017048789886757731 +karman_re50,ppo,99,39.6,force,front_fy,0.0005532902432605624 +karman_re50,ppo,99,39.6,force,upper_fx,0.0011829755967482924 +karman_re50,ppo,99,39.6,force,upper_fy,0.004767243750393391 +karman_re50,ppo,99,39.6,force,lower_fx,-0.001518344390206039 +karman_re50,ppo,99,39.6,force,lower_fy,-0.003543931758031249 +karman_re50,ppo,100,40.0,force,front_fx,0.0027289094869047403 +karman_re50,ppo,100,40.0,force,front_fy,0.0009909794898703694 +karman_re50,ppo,100,40.0,force,upper_fx,0.0011894352501258254 +karman_re50,ppo,100,40.0,force,upper_fy,0.004109107423573732 +karman_re50,ppo,100,40.0,force,lower_fx,-0.001931870123371482 +karman_re50,ppo,100,40.0,force,lower_fy,-0.00390298361890018 +karman_re50,ppo,101,40.4,force,front_fx,0.002911181654781103 +karman_re50,ppo,101,40.4,force,front_fy,0.0014693927951157093 +karman_re50,ppo,101,40.4,force,upper_fx,0.0012468023924157023 +karman_re50,ppo,101,40.4,force,upper_fy,0.003646943485364318 +karman_re50,ppo,101,40.4,force,lower_fx,-0.0017199458088725805 +karman_re50,ppo,101,40.4,force,lower_fy,-0.003657858120277524 +karman_re50,ppo,102,40.8,force,front_fx,0.0024522196035832167 +karman_re50,ppo,102,40.8,force,front_fy,0.0018190144328400493 +karman_re50,ppo,102,40.8,force,upper_fx,0.0014918907545506954 +karman_re50,ppo,102,40.8,force,upper_fy,0.0036228960379958153 +karman_re50,ppo,102,40.8,force,lower_fx,-0.001612399471923709 +karman_re50,ppo,102,40.8,force,lower_fy,-0.0030751540325582027 +karman_re50,ppo,103,41.2,force,front_fx,0.0018298374488949776 +karman_re50,ppo,103,41.2,force,front_fy,0.0018857415998354554 +karman_re50,ppo,103,41.2,force,upper_fx,0.0018294675974175334 +karman_re50,ppo,103,41.2,force,upper_fy,0.003769863164052367 +karman_re50,ppo,103,41.2,force,lower_fx,-0.0019186146091669798 +karman_re50,ppo,103,41.2,force,lower_fy,-0.002591617638245225 +karman_re50,ppo,104,41.6,force,front_fx,0.0013083969242870808 +karman_re50,ppo,104,41.6,force,front_fy,0.001761427498422563 +karman_re50,ppo,104,41.6,force,upper_fx,0.0021462999284267426 +karman_re50,ppo,104,41.6,force,upper_fy,0.0038927739951759577 +karman_re50,ppo,104,41.6,force,lower_fx,-0.0024572915863245726 +karman_re50,ppo,104,41.6,force,lower_fy,-0.002267642179504037 +karman_re50,ppo,105,42.0,force,front_fx,0.0008830292499624193 +karman_re50,ppo,105,42.0,force,front_fy,0.0015784321585670114 +karman_re50,ppo,105,42.0,force,upper_fx,0.002445286838337779 +karman_re50,ppo,105,42.0,force,upper_fy,0.004000524524599314 +karman_re50,ppo,105,42.0,force,lower_fx,-0.0029916181229054928 +karman_re50,ppo,105,42.0,force,lower_fy,-0.002014263765886426 +karman_re50,ppo,106,42.4,force,front_fx,0.0005682180635631084 +karman_re50,ppo,106,42.4,force,front_fy,0.0013710432685911655 +karman_re50,ppo,106,42.4,force,upper_fx,0.0026880481746047735 +karman_re50,ppo,106,42.4,force,upper_fy,0.004096005577594042 +karman_re50,ppo,106,42.4,force,lower_fx,-0.003453125711530447 +karman_re50,ppo,106,42.4,force,lower_fy,-0.0018597462913021445 +karman_re50,ppo,107,42.8,force,front_fx,0.0004713251837529242 +karman_re50,ppo,107,42.8,force,front_fy,0.0010859575122594833 +karman_re50,ppo,107,42.8,force,upper_fx,0.002764409873634577 +karman_re50,ppo,107,42.8,force,upper_fy,0.004139220342040062 +karman_re50,ppo,107,42.8,force,lower_fx,-0.003779209451749921 +karman_re50,ppo,107,42.8,force,lower_fy,-0.001951912185177207 +karman_re50,ppo,108,43.2,force,front_fx,0.0005408881697803736 +karman_re50,ppo,108,43.2,force,front_fy,0.0006466770428232849 +karman_re50,ppo,108,43.2,force,upper_fx,0.002642950741574168 +karman_re50,ppo,108,43.2,force,upper_fy,0.004187833052128553 +karman_re50,ppo,108,43.2,force,lower_fx,-0.003794372081756592 +karman_re50,ppo,108,43.2,force,lower_fy,-0.002411552472040057 +karman_re50,ppo,109,43.6,force,front_fx,0.0006278048967942595 +karman_re50,ppo,109,43.6,force,front_fy,2.3322380002355203e-05 +karman_re50,ppo,109,43.6,force,upper_fx,0.0024166260845959187 +karman_re50,ppo,109,43.6,force,upper_fy,0.004361377563327551 +karman_re50,ppo,109,43.6,force,lower_fx,-0.003363319905474782 +karman_re50,ppo,109,43.6,force,lower_fy,-0.003102953778579831 +karman_re50,ppo,110,44.0,force,front_fx,0.0006081702304072678 +karman_re50,ppo,110,44.0,force,front_fy,-0.0007424147333949804 +karman_re50,ppo,110,44.0,force,upper_fx,0.0021897112019360065 +karman_re50,ppo,110,44.0,force,upper_fy,0.004644173197448254 +karman_re50,ppo,110,44.0,force,lower_fx,-0.0026332999113947153 +karman_re50,ppo,110,44.0,force,lower_fy,-0.0036661787889897823 +karman_re50,ppo,111,44.4,force,front_fx,0.0004702963342424482 +karman_re50,ppo,111,44.4,force,front_fy,-0.0014455501222983003 +karman_re50,ppo,111,44.4,force,upper_fx,0.0019579988438636065 +karman_re50,ppo,111,44.4,force,upper_fy,0.004884965252131224 +karman_re50,ppo,111,44.4,force,lower_fx,-0.0019088259432464838 +karman_re50,ppo,111,44.4,force,lower_fy,-0.0038750055246055126 +karman_re50,ppo,112,44.8,force,front_fx,0.0002535535313654691 +karman_re50,ppo,112,44.8,force,front_fy,-0.001879975781776011 +karman_re50,ppo,112,44.8,force,upper_fx,0.0016535859322175384 +karman_re50,ppo,112,44.8,force,upper_fy,0.0048874011263251305 +karman_re50,ppo,112,44.8,force,lower_fx,-0.0013375576818361878 +karman_re50,ppo,112,44.8,force,lower_fy,-0.003761807456612587 +karman_re50,ppo,113,45.2,force,front_fx,1.6687996321707033e-05 +karman_re50,ppo,113,45.2,force,front_fy,-0.0019808891229331493 +karman_re50,ppo,113,45.2,force,upper_fx,0.0012192627182230353 +karman_re50,ppo,113,45.2,force,upper_fy,0.004535432904958725 +karman_re50,ppo,113,45.2,force,lower_fx,-0.0008560720016248524 +karman_re50,ppo,113,45.2,force,lower_fy,-0.0034362580627202988 +karman_re50,ppo,114,45.6,force,front_fx,-0.00019649807654786855 +karman_re50,ppo,114,45.6,force,front_fy,-0.0018301531672477722 +karman_re50,ppo,114,45.6,force,upper_fx,0.0006432328373193741 +karman_re50,ppo,114,45.6,force,upper_fy,0.0038563553243875504 +karman_re50,ppo,114,45.6,force,lower_fx,-0.00035414472222328186 +karman_re50,ppo,114,45.6,force,lower_fy,-0.002998834475874901 +karman_re50,ppo,115,46.0,force,front_fx,-0.0003593829751480371 +karman_re50,ppo,115,46.0,force,front_fy,-0.0015411176718771458 +karman_re50,ppo,115,46.0,force,upper_fx,-4.6368437324417755e-05 +karman_re50,ppo,115,46.0,force,upper_fy,0.0030207675881683826 +karman_re50,ppo,115,46.0,force,lower_fx,0.00018087516946252435 +karman_re50,ppo,115,46.0,force,lower_fy,-0.002574386540800333 +karman_re50,ppo,116,46.4,force,front_fx,-0.00044274370884522796 +karman_re50,ppo,116,46.4,force,front_fy,-0.0011963241267949343 +karman_re50,ppo,116,46.4,force,upper_fx,-0.0007760748849250376 +karman_re50,ppo,116,46.4,force,upper_fy,0.002341130282729864 +karman_re50,ppo,116,46.4,force,lower_fx,0.0006715130875818431 +karman_re50,ppo,116,46.4,force,lower_fy,-0.0022556702606379986 +karman_re50,ppo,117,46.8,force,front_fx,-0.00046437059063464403 +karman_re50,ppo,117,46.8,force,front_fy,-0.0009273092728108168 +karman_re50,ppo,117,46.8,force,upper_fx,-0.0013463783543556929 +karman_re50,ppo,117,46.8,force,upper_fy,0.0022395411506295204 +karman_re50,ppo,117,46.8,force,lower_fx,0.0009282478131353855 +karman_re50,ppo,117,46.8,force,lower_fy,-0.002081427024677396 +karman_re50,ppo,118,47.2,force,front_fx,-0.0004362469189800322 +karman_re50,ppo,118,47.2,force,front_fy,-0.000715532514732331 +karman_re50,ppo,118,47.2,force,upper_fx,-0.001413228688761592 +karman_re50,ppo,118,47.2,force,upper_fy,0.002952688140794635 +karman_re50,ppo,118,47.2,force,lower_fx,0.0008210279047489166 +karman_re50,ppo,118,47.2,force,lower_fy,-0.0020505175925791264 +karman_re50,ppo,119,47.6,force,front_fx,-0.0003236423071939498 +karman_re50,ppo,119,47.6,force,front_fy,-0.000442153395852074 +karman_re50,ppo,119,47.6,force,upper_fx,-0.0007242215215228498 +karman_re50,ppo,119,47.6,force,upper_fy,0.004107145592570305 +karman_re50,ppo,119,47.6,force,lower_fx,0.00037468888331204653 +karman_re50,ppo,119,47.6,force,lower_fy,-0.002157161943614483 +karman_re50,ppo,120,48.0,force,front_fx,0.00014194921823218465 +karman_re50,ppo,120,48.0,force,front_fy,-5.195874837227166e-05 +karman_re50,ppo,120,48.0,force,upper_fx,0.0003999308974016458 +karman_re50,ppo,120,48.0,force,upper_fy,0.0049244617111980915 +karman_re50,ppo,120,48.0,force,lower_fx,-0.0004167050065007061 +karman_re50,ppo,120,48.0,force,lower_fy,-0.002430927474051714 +karman_re50,ppo,121,48.4,force,front_fx,0.0012366750743240118 +karman_re50,ppo,121,48.4,force,front_fy,0.0003943551273550838 +karman_re50,ppo,121,48.4,force,upper_fx,0.0011626571649685502 +karman_re50,ppo,121,48.4,force,upper_fy,0.0050283451564610004 +karman_re50,ppo,121,48.4,force,lower_fx,-0.0014767562970519066 +karman_re50,ppo,121,48.4,force,lower_fy,-0.002913600532338023 +karman_re50,ppo,122,48.8,force,front_fx,0.002540902467444539 +karman_re50,ppo,122,48.8,force,front_fy,0.000851486052852124 +karman_re50,ppo,122,48.8,force,upper_fx,0.001314254361204803 +karman_re50,ppo,122,48.8,force,upper_fy,0.0045212386175990105 +karman_re50,ppo,122,48.8,force,lower_fx,-0.0021946921478956938 +karman_re50,ppo,122,48.8,force,lower_fy,-0.0034100410994142294 +karman_re50,ppo,123,49.2,force,front_fx,0.0030971751548349857 +karman_re50,ppo,123,49.2,force,front_fy,0.0013819234445691109 +karman_re50,ppo,123,49.2,force,upper_fx,0.001385481096804142 +karman_re50,ppo,123,49.2,force,upper_fy,0.003905161051079631 +karman_re50,ppo,123,49.2,force,lower_fx,-0.002078412100672722 +karman_re50,ppo,123,49.2,force,lower_fy,-0.00337903737090528 +karman_re50,ppo,124,49.6,force,front_fx,0.0027770879678428173 +karman_re50,ppo,124,49.6,force,front_fy,0.0018295906484127045 +karman_re50,ppo,124,49.6,force,upper_fx,0.0016406556824222207 +karman_re50,ppo,124,49.6,force,upper_fy,0.0037507235538214445 +karman_re50,ppo,124,49.6,force,lower_fx,-0.0017887881258502603 +karman_re50,ppo,124,49.6,force,lower_fy,-0.002806783653795719 +karman_re50,ppo,125,50.0,force,front_fx,0.0021040102001279593 +karman_re50,ppo,125,50.0,force,front_fy,0.0019466333324089646 +karman_re50,ppo,125,50.0,force,upper_fx,0.002021314110606909 +karman_re50,ppo,125,50.0,force,upper_fy,0.003922001924365759 +karman_re50,ppo,125,50.0,force,lower_fx,-0.001952455029822886 +karman_re50,ppo,125,50.0,force,lower_fy,-0.0021862282883375883 +karman_re50,ppo,126,50.4,force,front_fx,0.0014908297453075647 +karman_re50,ppo,126,50.4,force,front_fy,0.001818231656216085 +karman_re50,ppo,126,50.4,force,upper_fx,0.0023399002384394407 +karman_re50,ppo,126,50.4,force,upper_fy,0.004104015417397022 +karman_re50,ppo,126,50.4,force,lower_fx,-0.0025196163915097713 +karman_re50,ppo,126,50.4,force,lower_fy,-0.00173693778924644 +karman_re50,ppo,127,50.8,force,front_fx,0.0010088178096339107 +karman_re50,ppo,127,50.8,force,front_fy,0.0016716861864551902 +karman_re50,ppo,127,50.8,force,upper_fx,0.0025295261293649673 +karman_re50,ppo,127,50.8,force,upper_fy,0.004206527024507523 +karman_re50,ppo,127,50.8,force,lower_fx,-0.0031301239505410194 +karman_re50,ppo,127,50.8,force,lower_fy,-0.001439971150830388 +karman_re50,ppo,128,51.2,force,front_fx,0.0006366486777551472 +karman_re50,ppo,128,51.2,force,front_fy,0.0015979480231180787 +karman_re50,ppo,128,51.2,force,upper_fx,0.0026036088820546865 +karman_re50,ppo,128,51.2,force,upper_fy,0.004282159265130758 +karman_re50,ppo,128,51.2,force,lower_fx,-0.0035994076170027256 +karman_re50,ppo,128,51.2,force,lower_fy,-0.0013432650594040751 +karman_re50,ppo,129,51.6,force,front_fx,0.00044717767741531134 +karman_re50,ppo,129,51.6,force,front_fy,0.0014771828427910805 +karman_re50,ppo,129,51.6,force,upper_fx,0.0025348076596856117 +karman_re50,ppo,129,51.6,force,upper_fy,0.004332385491579771 +karman_re50,ppo,129,51.6,force,lower_fx,-0.003866368904709816 +karman_re50,ppo,129,51.6,force,lower_fy,-0.001588121522217989 +karman_re50,ppo,130,52.0,force,front_fx,0.00044347415678203106 +karman_re50,ppo,130,52.0,force,front_fy,0.0011574721429497004 +karman_re50,ppo,130,52.0,force,upper_fx,0.002303921617567539 +karman_re50,ppo,130,52.0,force,upper_fy,0.0043555861338973045 +karman_re50,ppo,130,52.0,force,lower_fx,-0.003792967414483428 +karman_re50,ppo,130,52.0,force,lower_fy,-0.002258882625028491 +karman_re50,ppo,131,52.4,force,front_fx,0.0004907484981231391 +karman_re50,ppo,131,52.4,force,front_fy,0.00058123649796471 +karman_re50,ppo,131,52.4,force,upper_fx,0.0019733579829335213 +karman_re50,ppo,131,52.4,force,upper_fy,0.0044532776810228825 +karman_re50,ppo,131,52.4,force,lower_fx,-0.003207690780982375 +karman_re50,ppo,131,52.4,force,lower_fy,-0.0031854482367634773 +karman_re50,ppo,132,52.8,force,front_fx,0.000489523692522198 +karman_re50,ppo,132,52.8,force,front_fy,-0.00019554037135094404 +karman_re50,ppo,132,52.8,force,upper_fx,0.001620074617676437 +karman_re50,ppo,132,52.8,force,upper_fy,0.004643195308744907 +karman_re50,ppo,132,52.8,force,lower_fx,-0.002222716575488448 +karman_re50,ppo,132,52.8,force,lower_fy,-0.003900769632309675 +karman_re50,ppo,133,53.2,force,front_fx,0.0004298825515434146 +karman_re50,ppo,133,53.2,force,front_fy,-0.0009620892233215272 +karman_re50,ppo,133,53.2,force,upper_fx,0.0012491164961829782 +karman_re50,ppo,133,53.2,force,upper_fy,0.004806138575077057 +karman_re50,ppo,133,53.2,force,lower_fx,-0.0012535486603155732 +karman_re50,ppo,133,53.2,force,lower_fy,-0.004075383301824331 +karman_re50,ppo,134,53.6,force,front_fx,0.0003282760444562882 +karman_re50,ppo,134,53.6,force,front_fy,-0.0014679458690807223 +karman_re50,ppo,134,53.6,force,upper_fx,0.0008104091393761337 +karman_re50,ppo,134,53.6,force,upper_fy,0.004748167470097542 +karman_re50,ppo,134,53.6,force,lower_fx,-0.0005799634964205325 +karman_re50,ppo,134,53.6,force,lower_fy,-0.0038567741867154837 +karman_re50,ppo,135,54.0,force,front_fx,0.0002086944878101349 +karman_re50,ppo,135,54.0,force,front_fy,-0.0016342326998710632 +karman_re50,ppo,135,54.0,force,upper_fx,0.0002602121967356652 +karman_re50,ppo,135,54.0,force,upper_fy,0.004366436507552862 +karman_re50,ppo,135,54.0,force,lower_fx,-0.0001270774519070983 +karman_re50,ppo,135,54.0,force,lower_fy,-0.0034909741953015327 +karman_re50,ppo,136,54.4,force,front_fx,0.00010462386853760108 +karman_re50,ppo,136,54.4,force,front_fy,-0.0015575862489640713 +karman_re50,ppo,136,54.4,force,upper_fx,-0.0003934113774448633 +karman_re50,ppo,136,54.4,force,upper_fy,0.0037381071597337723 +karman_re50,ppo,136,54.4,force,lower_fx,0.00026245100889354944 +karman_re50,ppo,136,54.4,force,lower_fy,-0.0030629297252744436 +karman_re50,ppo,137,54.8,force,front_fx,3.072542676818557e-05 +karman_re50,ppo,137,54.8,force,front_fy,-0.001359704416245222 +karman_re50,ppo,137,54.8,force,upper_fx,-0.0010788359213620424 +karman_re50,ppo,137,54.8,force,upper_fy,0.003052583895623684 +karman_re50,ppo,137,54.8,force,lower_fx,0.0006288699805736542 +karman_re50,ppo,137,54.8,force,lower_fy,-0.0026585892774164677 +karman_re50,ppo,138,55.2,force,front_fx,-1.1478460692160297e-05 +karman_re50,ppo,138,55.2,force,front_fy,-0.0011234156554564834 +karman_re50,ppo,138,55.2,force,upper_fx,-0.0017051713075488806 +karman_re50,ppo,138,55.2,force,upper_fy,0.0025569540448486805 +karman_re50,ppo,138,55.2,force,lower_fx,0.0009385012090206146 +karman_re50,ppo,138,55.2,force,lower_fy,-0.0023747123777866364 +karman_re50,ppo,139,55.6,force,front_fx,-4.634914148482494e-05 +karman_re50,ppo,139,55.6,force,front_fy,-0.0009277862845920026 +karman_re50,ppo,139,55.6,force,upper_fx,-0.0021181516349315643 +karman_re50,ppo,139,55.6,force,upper_fy,0.0025415471754968166 +karman_re50,ppo,139,55.6,force,lower_fx,0.0010884646326303482 +karman_re50,ppo,139,55.6,force,lower_fy,-0.0022440492175519466 +karman_re50,ppo,140,56.0,force,front_fx,-0.00011247341171838343 +karman_re50,ppo,140,56.0,force,front_fy,-0.0007417179876938462 +karman_re50,ppo,140,56.0,force,upper_fx,-0.002067617140710354 +karman_re50,ppo,140,56.0,force,upper_fy,0.0031692141201347113 +karman_re50,ppo,140,56.0,force,lower_fx,0.0010010828264057636 +karman_re50,ppo,140,56.0,force,lower_fy,-0.0022309785708785057 +karman_re50,ppo,141,56.4,force,front_fx,-0.00018454535165801644 +karman_re50,ppo,141,56.4,force,front_fy,-0.0004545666160993278 +karman_re50,ppo,141,56.4,force,upper_fx,-0.0013526264810934663 +karman_re50,ppo,141,56.4,force,upper_fy,0.004121385980397463 +karman_re50,ppo,141,56.4,force,lower_fx,0.0007052416913211346 +karman_re50,ppo,141,56.4,force,lower_fy,-0.002306399866938591 +karman_re50,ppo,142,56.8,force,front_fx,-5.862898979103193e-05 +karman_re50,ppo,142,56.8,force,front_fy,-3.269441003794782e-05 +karman_re50,ppo,142,56.8,force,upper_fx,-0.0002175915869884193 +karman_re50,ppo,142,56.8,force,upper_fy,0.004773064982146025 +karman_re50,ppo,142,56.8,force,lower_fx,0.000180534872924909 +karman_re50,ppo,142,56.8,force,lower_fy,-0.00248011015355587 +karman_re50,ppo,143,57.2,force,front_fx,0.0005775560275651515 +karman_re50,ppo,143,57.2,force,front_fy,0.0003965004289057106 +karman_re50,ppo,143,57.2,force,upper_fx,0.0006944566266611218 +karman_re50,ppo,143,57.2,force,upper_fy,0.004935133270919323 +karman_re50,ppo,143,57.2,force,lower_fx,-0.0006691111484542489 +karman_re50,ppo,143,57.2,force,lower_fy,-0.002811274491250515 +karman_re50,ppo,144,57.6,force,front_fx,0.0016767054330557585 +karman_re50,ppo,144,57.6,force,front_fy,0.0007855588919483125 +karman_re50,ppo,144,57.6,force,upper_fx,0.0010427937377244234 +karman_re50,ppo,144,57.6,force,upper_fy,0.00478103943169117 +karman_re50,ppo,144,57.6,force,lower_fx,-0.0015870946226641536 +karman_re50,ppo,144,57.6,force,lower_fy,-0.003249087603762746 +karman_re50,ppo,145,58.0,force,front_fx,0.0025449558161199093 +karman_re50,ppo,145,58.0,force,front_fy,0.001203319989144802 +karman_re50,ppo,145,58.0,force,upper_fx,0.001113447593525052 +karman_re50,ppo,145,58.0,force,upper_fy,0.004347683396190405 +karman_re50,ppo,145,58.0,force,lower_fx,-0.0019800118170678616 +karman_re50,ppo,145,58.0,force,lower_fy,-0.0034596859477460384 +karman_re50,ppo,146,58.4,force,front_fx,0.0026094072964042425 +karman_re50,ppo,146,58.4,force,front_fy,0.0016415587160736322 +karman_re50,ppo,146,58.4,force,upper_fx,0.0013076594332233071 +karman_re50,ppo,146,58.4,force,upper_fy,0.004027878865599632 +karman_re50,ppo,146,58.4,force,lower_fx,-0.0018829863984137774 +karman_re50,ppo,146,58.4,force,lower_fy,-0.0031446584034711123 +karman_re50,ppo,147,58.8,force,front_fx,0.002113252878189087 +karman_re50,ppo,147,58.8,force,front_fy,0.0018578736344352365 +karman_re50,ppo,147,58.8,force,upper_fx,0.0016721256542950869 +karman_re50,ppo,147,58.8,force,upper_fy,0.004047037567943335 +karman_re50,ppo,147,58.8,force,lower_fx,-0.001927965902723372 +karman_re50,ppo,147,58.8,force,lower_fy,-0.0025647280272096395 +karman_re50,ppo,148,59.2,force,front_fx,0.0015002908185124397 +karman_re50,ppo,148,59.2,force,front_fy,0.001811591093428433 +karman_re50,ppo,148,59.2,force,upper_fx,0.002037769416347146 +karman_re50,ppo,148,59.2,force,upper_fy,0.004161511547863483 +karman_re50,ppo,148,59.2,force,lower_fx,-0.0023308387026190758 +karman_re50,ppo,148,59.2,force,lower_fy,-0.0020801308564841747 +karman_re50,ppo,149,59.6,force,front_fx,0.000990508240647614 +karman_re50,ppo,149,59.6,force,front_fy,0.0017392713343724608 +karman_re50,ppo,149,59.6,force,upper_fx,0.0022459300234913826 +karman_re50,ppo,149,59.6,force,upper_fy,0.004202700220048428 +karman_re50,ppo,149,59.6,force,lower_fx,-0.0028397224377840757 +karman_re50,ppo,149,59.6,force,lower_fy,-0.0018043236341327429 +karman_re50,ppo,150,60.0,force,front_fx,0.0005834100302308798 +karman_re50,ppo,150,60.0,force,front_fy,0.001728707691654563 +karman_re50,ppo,150,60.0,force,upper_fx,0.0023040054365992546 +karman_re50,ppo,150,60.0,force,upper_fy,0.004213269799947739 +karman_re50,ppo,150,60.0,force,lower_fx,-0.0032297291327267885 +karman_re50,ppo,150,60.0,force,lower_fy,-0.0017795120365917683 +karman_re50,ppo,151,60.4,force,front_fx,0.00031317101093009114 +karman_re50,ppo,151,60.4,force,front_fy,0.0016513927839696407 +karman_re50,ppo,151,60.4,force,upper_fx,0.002245187060907483 +karman_re50,ppo,151,60.4,force,upper_fy,0.004230530932545662 +karman_re50,ppo,151,60.4,force,lower_fx,-0.003430799813941121 +karman_re50,ppo,151,60.4,force,lower_fy,-0.002053068485110998 +karman_re50,ppo,152,60.8,force,front_fx,0.00022988332784734666 +karman_re50,ppo,152,60.8,force,front_fy,0.0013577303616330028 +karman_re50,ppo,152,60.8,force,upper_fx,0.00205591251142323 +karman_re50,ppo,152,60.8,force,upper_fy,0.004216357134282589 +karman_re50,ppo,152,60.8,force,lower_fx,-0.0033330542501062155 +karman_re50,ppo,152,60.8,force,lower_fy,-0.0026387760881334543 +karman_re50,ppo,153,61.2,force,front_fx,0.0002506424789316952 +karman_re50,ppo,153,61.2,force,front_fy,0.0007949759601615369 +karman_re50,ppo,153,61.2,force,upper_fx,0.0017390024149790406 +karman_re50,ppo,153,61.2,force,upper_fy,0.004207140766084194 +karman_re50,ppo,153,61.2,force,lower_fx,-0.0027781587559729815 +karman_re50,ppo,153,61.2,force,lower_fy,-0.0034154856111854315 +karman_re50,ppo,154,61.6,force,front_fx,0.0002872571931220591 +karman_re50,ppo,154,61.6,force,front_fy,4.769857332576066e-05 +karman_re50,ppo,154,61.6,force,upper_fx,0.0013361085439100862 +karman_re50,ppo,154,61.6,force,upper_fy,0.004246296361088753 +karman_re50,ppo,154,61.6,force,lower_fx,-0.001810166286304593 +karman_re50,ppo,154,61.6,force,lower_fy,-0.004031267948448658 +karman_re50,ppo,155,62.0,force,front_fx,0.000312644406221807 +karman_re50,ppo,155,62.0,force,front_fy,-0.0007238085381686687 +karman_re50,ppo,155,62.0,force,upper_fx,0.0008721380145289004 +karman_re50,ppo,155,62.0,force,upper_fy,0.004291341174393892 +karman_re50,ppo,155,62.0,force,lower_fx,-0.0008254085551016033 +karman_re50,ppo,155,62.0,force,lower_fy,-0.004190017469227314 +karman_re50,ppo,156,62.4,force,front_fx,0.0003248073626309633 +karman_re50,ppo,156,62.4,force,front_fy,-0.0012822634307667613 +karman_re50,ppo,156,62.4,force,upper_fx,0.0003211586445104331 +karman_re50,ppo,156,62.4,force,upper_fy,0.004244051408022642 +karman_re50,ppo,156,62.4,force,lower_fx,-0.00016852129192557186 +karman_re50,ppo,156,62.4,force,lower_fy,-0.003989385440945625 +karman_re50,ppo,157,62.8,force,front_fx,0.00033868555328808725 +karman_re50,ppo,157,62.8,force,front_fy,-0.0015287291025742888 +karman_re50,ppo,157,62.8,force,upper_fx,-0.0003043336037080735 +karman_re50,ppo,157,62.8,force,upper_fy,0.004028601106256247 +karman_re50,ppo,157,62.8,force,lower_fx,0.0001769381924532354 +karman_re50,ppo,157,62.8,force,lower_fy,-0.0036700754426419735 +karman_re50,ppo,158,63.2,force,front_fx,0.00035554435453377664 +karman_re50,ppo,158,63.2,force,front_fy,-0.001543777179904282 +karman_re50,ppo,158,63.2,force,upper_fx,-0.0009485086193308234 +karman_re50,ppo,158,63.2,force,upper_fy,0.0036762740928679705 +karman_re50,ppo,158,63.2,force,lower_fx,0.00038379488978534937 +karman_re50,ppo,158,63.2,force,lower_fy,-0.0033075956162065268 +karman_re50,ppo,159,63.6,force,front_fx,0.0003635444154497236 +karman_re50,ppo,159,63.6,force,front_fy,-0.0014367722906172276 +karman_re50,ppo,159,63.6,force,upper_fx,-0.0015232121804729104 +karman_re50,ppo,159,63.6,force,upper_fy,0.0032951561734080315 +karman_re50,ppo,159,63.6,force,lower_fx,0.0005650740349665284 +karman_re50,ppo,159,63.6,force,lower_fy,-0.002971513196825981 +karman_re50,ppo,160,64.0,force,front_fx,0.00032559159444645047 +karman_re50,ppo,160,64.0,force,front_fy,-0.001257672207430005 +karman_re50,ppo,160,64.0,force,upper_fx,-0.0019576968625187874 +karman_re50,ppo,160,64.0,force,upper_fy,0.003007544670253992 +karman_re50,ppo,160,64.0,force,lower_fx,0.0007598529919050634 +karman_re50,ppo,160,64.0,force,lower_fy,-0.002732868306338787 +karman_re50,ppo,161,64.4,force,front_fx,0.00023308995878323913 +karman_re50,ppo,161,64.4,force,front_fy,-0.0010502213845029473 +karman_re50,ppo,161,64.4,force,upper_fx,-0.0021844999864697456 +karman_re50,ppo,161,64.4,force,upper_fy,0.0029443951789289713 +karman_re50,ppo,161,64.4,force,lower_fx,0.0009275178890675306 +karman_re50,ppo,161,64.4,force,lower_fy,-0.002616622718051076 +karman_re50,ppo,162,64.8,force,front_fx,6.83177713654004e-05 +karman_re50,ppo,162,64.8,force,front_fy,-0.0008265480282716453 +karman_re50,ppo,162,64.8,force,upper_fx,-0.0020897688809782267 +karman_re50,ppo,162,64.8,force,upper_fy,0.0032388358376920223 +karman_re50,ppo,162,64.8,force,lower_fx,0.0009730620076879859 +karman_re50,ppo,162,64.8,force,lower_fy,-0.0025758426636457443 +karman_re50,ppo,163,65.2,force,front_fx,-0.00010790093801915646 +karman_re50,ppo,163,65.2,force,front_fy,-0.0005483616259880364 +karman_re50,ppo,163,65.2,force,upper_fx,-0.0015411549247801304 +karman_re50,ppo,163,65.2,force,upper_fy,0.0038427910767495632 +karman_re50,ppo,163,65.2,force,lower_fx,0.0008337355684489012 +karman_re50,ppo,163,65.2,force,lower_fy,-0.002586972201243043 +karman_re50,ppo,164,65.6,force,front_fx,-0.0001257485564565286 +karman_re50,ppo,164,65.6,force,front_fy,-0.00015908018394839019 +karman_re50,ppo,164,65.6,force,upper_fx,-0.0005871995235793293 +karman_re50,ppo,164,65.6,force,upper_fy,0.004444505088031292 +karman_re50,ppo,164,65.6,force,lower_fx,0.0004619846004061401 +karman_re50,ppo,164,65.6,force,lower_fy,-0.002676640637218952 +karman_re50,ppo,165,66.0,force,front_fx,0.0002864038688130677 +karman_re50,ppo,165,66.0,force,front_fy,0.0002520983980502933 +karman_re50,ppo,165,66.0,force,upper_fx,0.0003719697124324739 +karman_re50,ppo,165,66.0,force,upper_fy,0.004771060775965452 +karman_re50,ppo,165,66.0,force,lower_fx,-0.0002262256311951205 +karman_re50,ppo,165,66.0,force,lower_fy,-0.0029032689053565264 +karman_re50,ppo,166,66.4,force,front_fx,0.0012071552919223905 +karman_re50,ppo,166,66.4,force,front_fy,0.0006492955726571381 +karman_re50,ppo,166,66.4,force,upper_fx,0.000901820370927453 +karman_re50,ppo,166,66.4,force,upper_fy,0.004783919546753168 +karman_re50,ppo,166,66.4,force,lower_fx,-0.0011220831656828523 +karman_re50,ppo,166,66.4,force,lower_fy,-0.003288891864940524 +karman_re50,ppo,167,66.8,force,front_fx,0.00217139208689332 +karman_re50,ppo,167,66.8,force,front_fy,0.001054504537023604 +karman_re50,ppo,167,66.8,force,upper_fx,0.0010002177441492677 +karman_re50,ppo,167,66.8,force,upper_fy,0.004452122375369072 +karman_re50,ppo,167,66.8,force,lower_fx,-0.0017331024864688516 +karman_re50,ppo,167,66.8,force,lower_fy,-0.0036327149718999863 +karman_re50,ppo,168,67.2,force,front_fx,0.0024986304342746735 +karman_re50,ppo,168,67.2,force,front_fy,0.001478623948059976 +karman_re50,ppo,168,67.2,force,upper_fx,0.0010736524127423763 +karman_re50,ppo,168,67.2,force,upper_fy,0.004033821634948254 +karman_re50,ppo,168,67.2,force,lower_fx,-0.0017918248195201159 +karman_re50,ppo,168,67.2,force,lower_fy,-0.0035656807012856007 +karman_re50,ppo,169,67.6,force,front_fx,0.002170942025259137 +karman_re50,ppo,169,67.6,force,front_fy,0.0017943441634997725 +karman_re50,ppo,169,67.6,force,upper_fx,0.0013160017551854253 +karman_re50,ppo,169,67.6,force,upper_fy,0.00391427194699645 +karman_re50,ppo,169,67.6,force,lower_fx,-0.001753585529513657 +karman_re50,ppo,169,67.6,force,lower_fy,-0.0031182714737951756 +karman_re50,ppo,170,68.0,force,front_fx,0.0015913352835923433 +karman_re50,ppo,170,68.0,force,front_fy,0.001868454972282052 +karman_re50,ppo,170,68.0,force,upper_fx,0.0016414119163528085 +karman_re50,ppo,170,68.0,force,upper_fy,0.003982486203312874 +karman_re50,ppo,170,68.0,force,lower_fx,-0.0019881660118699074 +karman_re50,ppo,170,68.0,force,lower_fy,-0.0026782387867569923 +karman_re50,ppo,171,68.4,force,front_fx,0.0010677478276193142 +karman_re50,ppo,171,68.4,force,front_fy,0.0018281787633895874 +karman_re50,ppo,171,68.4,force,upper_fx,0.0018929323414340615 +karman_re50,ppo,171,68.4,force,upper_fy,0.004038829356431961 +karman_re50,ppo,171,68.4,force,lower_fx,-0.0023911581374704838 +karman_re50,ppo,171,68.4,force,lower_fy,-0.002423066645860672 +karman_re50,ppo,172,68.8,force,front_fx,0.0006480311858467758 +karman_re50,ppo,172,68.8,force,front_fy,0.0017704060301184654 +karman_re50,ppo,172,68.8,force,upper_fx,0.0020524265710264444 +karman_re50,ppo,172,68.8,force,upper_fy,0.004065079614520073 +karman_re50,ppo,172,68.8,force,lower_fx,-0.0027565318159759045 +karman_re50,ppo,172,68.8,force,lower_fy,-0.002348333364352584 +karman_re50,ppo,173,69.2,force,front_fx,0.0003403291921131313 +karman_re50,ppo,173,69.2,force,front_fy,0.0016335822874680161 +karman_re50,ppo,173,69.2,force,upper_fx,0.0021430959459394217 +karman_re50,ppo,173,69.2,force,upper_fy,0.00408749608322978 +karman_re50,ppo,173,69.2,force,lower_fx,-0.0030113414395600557 +karman_re50,ppo,173,69.2,force,lower_fy,-0.0024330930318683386 +karman_re50,ppo,174,69.6,force,front_fx,0.0001984227419598028 +karman_re50,ppo,174,69.6,force,front_fy,0.0013206814182922244 +karman_re50,ppo,174,69.6,force,upper_fx,0.002124993596225977 +karman_re50,ppo,174,69.6,force,upper_fy,0.004065548535436392 +karman_re50,ppo,174,69.6,force,lower_fx,-0.0030866560991853476 +karman_re50,ppo,174,69.6,force,lower_fy,-0.002696390962228179 +karman_re50,ppo,175,70.0,force,front_fx,0.00020813796436414123 +karman_re50,ppo,175,70.0,force,front_fy,0.0008120948332361877 +karman_re50,ppo,175,70.0,force,upper_fx,0.0019572931341826916 +karman_re50,ppo,175,70.0,force,upper_fy,0.004014870617538691 +karman_re50,ppo,175,70.0,force,lower_fx,-0.0028411494567990303 +karman_re50,ppo,175,70.0,force,lower_fy,-0.0031514314468950033 +karman_re50,ppo,176,70.4,force,front_fx,0.0002774576423689723 +karman_re50,ppo,176,70.4,force,front_fy,0.00011231866665184498 +karman_re50,ppo,176,70.4,force,upper_fx,0.0016670061741024256 +karman_re50,ppo,176,70.4,force,upper_fy,0.0040219430811703205 +karman_re50,ppo,176,70.4,force,lower_fx,-0.0022141661029309034 +karman_re50,ppo,176,70.4,force,lower_fy,-0.0036692414432764053 +karman_re50,ppo,177,70.8,force,front_fx,0.00031730509363114834 +karman_re50,ppo,177,70.8,force,front_fy,-0.0006619789637625217 +karman_re50,ppo,177,70.8,force,upper_fx,0.0013119439827278256 +karman_re50,ppo,177,70.8,force,upper_fy,0.004099879879504442 +karman_re50,ppo,177,70.8,force,lower_fx,-0.0014123630244284868 +karman_re50,ppo,177,70.8,force,lower_fy,-0.004000299144536257 +karman_re50,ppo,178,71.2,force,front_fx,0.00030453206272795796 +karman_re50,ppo,178,71.2,force,front_fy,-0.0013212242629379034 +karman_re50,ppo,178,71.2,force,upper_fx,0.0008963749278336763 +karman_re50,ppo,178,71.2,force,upper_fy,0.0041849142871797085 +karman_re50,ppo,178,71.2,force,lower_fx,-0.0007530362345278263 +karman_re50,ppo,178,71.2,force,lower_fy,-0.00402121851220727 +karman_re50,ppo,179,71.6,force,front_fx,0.00026495318161323667 +karman_re50,ppo,179,71.6,force,front_fy,-0.0017025237902998924 +karman_re50,ppo,179,71.6,force,upper_fx,0.0004147683794144541 +karman_re50,ppo,179,71.6,force,upper_fy,0.004159513395279646 +karman_re50,ppo,179,71.6,force,lower_fx,-0.0003615143068600446 +karman_re50,ppo,179,71.6,force,lower_fy,-0.0038216777611523867 +karman_re50,ppo,180,72.0,force,front_fx,0.00022099690977483988 +karman_re50,ppo,180,72.0,force,front_fy,-0.0017959603574126959 +karman_re50,ppo,180,72.0,force,upper_fx,-0.00010498699703020975 +karman_re50,ppo,180,72.0,force,upper_fy,0.003960673231631517 +karman_re50,ppo,180,72.0,force,lower_fx,-0.00014004588592797518 +karman_re50,ppo,180,72.0,force,lower_fy,-0.003510243259370327 +karman_re50,ppo,181,72.4,force,front_fx,0.0001752568205120042 +karman_re50,ppo,181,72.4,force,front_fy,-0.0017068859888240695 +karman_re50,ppo,181,72.4,force,upper_fx,-0.0006103035411797464 +karman_re50,ppo,181,72.4,force,upper_fy,0.0036118223797529936 +karman_re50,ppo,181,72.4,force,lower_fx,6.57736964058131e-05 +karman_re50,ppo,181,72.4,force,lower_fy,-0.0031647514551877975 +karman_re50,ppo,182,72.8,force,front_fx,0.00010262406431138515 +karman_re50,ppo,182,72.8,force,front_fy,-0.0014985745074227452 +karman_re50,ppo,182,72.8,force,upper_fx,-0.0010551470331847668 +karman_re50,ppo,182,72.8,force,upper_fy,0.0032116484362632036 +karman_re50,ppo,182,72.8,force,lower_fx,0.00031850452069193125 +karman_re50,ppo,182,72.8,force,lower_fy,-0.002875939942896366 +karman_re50,ppo,183,73.2,force,front_fx,2.939580781458062e-06 +karman_re50,ppo,183,73.2,force,front_fy,-0.001238554366864264 +karman_re50,ppo,183,73.2,force,upper_fx,-0.0014034468913450837 +karman_re50,ppo,183,73.2,force,upper_fy,0.0029023615643382072 +karman_re50,ppo,183,73.2,force,lower_fx,0.000596419966313988 +karman_re50,ppo,183,73.2,force,lower_fy,-0.0026864216197282076 +karman_re50,ppo,184,73.6,force,front_fx,-0.00013080029748380184 +karman_re50,ppo,184,73.6,force,front_fy,-0.0009768449235707521 +karman_re50,ppo,184,73.6,force,upper_fx,-0.001563014811836183 +karman_re50,ppo,184,73.6,force,upper_fy,0.0028928471729159355 +karman_re50,ppo,184,73.6,force,lower_fx,0.0007810042006894946 +karman_re50,ppo,184,73.6,force,lower_fy,-0.0025719061959534883 +karman_re50,ppo,185,74.0,force,front_fx,-0.00026535263168625534 +karman_re50,ppo,185,74.0,force,front_fy,-0.0007067032274790108 +karman_re50,ppo,185,74.0,force,upper_fx,-0.0013578649377450347 +karman_re50,ppo,185,74.0,force,upper_fy,0.003335476852953434 +karman_re50,ppo,185,74.0,force,lower_fx,0.0007394745480269194 +karman_re50,ppo,185,74.0,force,lower_fy,-0.0025107841938734055 +karman_re50,ppo,186,74.4,force,front_fx,-0.0002729634870775044 +karman_re50,ppo,186,74.4,force,front_fy,-0.0003823529987130314 +karman_re50,ppo,186,74.4,force,upper_fx,-0.0006601442582905293 +karman_re50,ppo,186,74.4,force,upper_fy,0.004061486572027206 +karman_re50,ppo,186,74.4,force,lower_fx,0.00041999775567092 +karman_re50,ppo,186,74.4,force,lower_fy,-0.0025343068409711123 +karman_re50,ppo,187,74.8,force,front_fx,7.640732656000182e-05 +karman_re50,ppo,187,74.8,force,front_fy,4.180988980806433e-06 +karman_re50,ppo,187,74.8,force,upper_fx,0.00030066826730035245 +karman_re50,ppo,187,74.8,force,upper_fy,0.0046605560928583145 +karman_re50,ppo,187,74.8,force,lower_fx,-0.0002332044387003407 +karman_re50,ppo,187,74.8,force,lower_fy,-0.0027052736841142178 +karman_re50,ppo,188,75.2,force,front_fx,0.0009825305314734578 +karman_re50,ppo,188,75.2,force,front_fy,0.00041707156924530864 +karman_re50,ppo,188,75.2,force,upper_fx,0.000989338499493897 +karman_re50,ppo,188,75.2,force,upper_fy,0.004851785022765398 +karman_re50,ppo,188,75.2,force,lower_fx,-0.0011628955835476518 +karman_re50,ppo,188,75.2,force,lower_fy,-0.003084819298237562 +karman_re50,ppo,189,75.6,force,front_fx,0.0021242352668195963 +karman_re50,ppo,189,75.6,force,front_fy,0.0008506210288032889 +karman_re50,ppo,189,75.6,force,upper_fx,0.0011550902854651213 +karman_re50,ppo,189,75.6,force,upper_fy,0.004560956731438637 +karman_re50,ppo,189,75.6,force,lower_fx,-0.0019117193296551704 +karman_re50,ppo,189,75.6,force,lower_fy,-0.003534480696544051 +karman_re50,ppo,190,76.0,force,front_fx,0.00271206209436059 +karman_re50,ppo,190,76.0,force,front_fy,0.001314264489337802 +karman_re50,ppo,190,76.0,force,upper_fx,0.0011718550231307745 +karman_re50,ppo,190,76.0,force,upper_fy,0.004041502717882395 +karman_re50,ppo,190,76.0,force,lower_fx,-0.0020072893239557743 +karman_re50,ppo,190,76.0,force,lower_fy,-0.0036267584655433893 +karman_re50,ppo,191,76.4,force,front_fx,0.002510928548872471 +karman_re50,ppo,191,76.4,force,front_fy,0.0017419778741896152 +karman_re50,ppo,191,76.4,force,upper_fx,0.001345407566986978 +karman_re50,ppo,191,76.4,force,upper_fy,0.0038157873786985874 +karman_re50,ppo,191,76.4,force,lower_fx,-0.001825372688472271 +karman_re50,ppo,191,76.4,force,lower_fy,-0.003220273181796074 +karman_re50,ppo,192,76.8,force,front_fx,0.00195508380420506 +karman_re50,ppo,192,76.8,force,front_fy,0.0019426237558946013 +karman_re50,ppo,192,76.8,force,upper_fx,0.0016469024121761322 +karman_re50,ppo,192,76.8,force,upper_fy,0.003878070507198572 +karman_re50,ppo,192,76.8,force,lower_fx,-0.0019242786802351475 +karman_re50,ppo,192,76.8,force,lower_fy,-0.0027192323468625546 +karman_re50,ppo,193,77.2,force,front_fx,0.001404489972628653 +karman_re50,ppo,193,77.2,force,front_fy,0.001927192322909832 +karman_re50,ppo,193,77.2,force,upper_fx,0.0019272741628810763 +karman_re50,ppo,193,77.2,force,upper_fy,0.003984853159636259 +karman_re50,ppo,193,77.2,force,lower_fx,-0.0023169044870883226 +karman_re50,ppo,193,77.2,force,lower_fy,-0.0023868600837886333 +karman_re50,ppo,194,77.6,force,front_fx,0.0009602541686035693 +karman_re50,ppo,194,77.6,force,front_fy,0.0018280863296240568 +karman_re50,ppo,194,77.6,force,upper_fx,0.002138097072020173 +karman_re50,ppo,194,77.6,force,upper_fy,0.00406790291890502 +karman_re50,ppo,194,77.6,force,lower_fx,-0.0027663949877023697 +karman_re50,ppo,194,77.6,force,lower_fy,-0.002209697850048542 +karman_re50,ppo,195,78.0,force,front_fx,0.0006174439331516623 +karman_re50,ppo,195,78.0,force,front_fy,0.0016754323150962591 +karman_re50,ppo,195,78.0,force,upper_fx,0.0023047300055623055 +karman_re50,ppo,195,78.0,force,upper_fy,0.004147434141486883 +karman_re50,ppo,195,78.0,force,lower_fx,-0.0031520980410277843 +karman_re50,ppo,195,78.0,force,lower_fy,-0.00214412622153759 +karman_re50,ppo,196,78.4,force,front_fx,0.0004277327680028975 +karman_re50,ppo,196,78.4,force,front_fy,0.0014081927947700024 +karman_re50,ppo,196,78.4,force,upper_fx,0.002384238876402378 +karman_re50,ppo,196,78.4,force,upper_fy,0.00419100234284997 +karman_re50,ppo,196,78.4,force,lower_fx,-0.003424734575673938 +karman_re50,ppo,196,78.4,force,lower_fy,-0.0022320521529763937 +karman_re50,ppo,197,78.8,force,front_fx,0.0004260084533598274 +karman_re50,ppo,197,78.8,force,front_fy,0.0009686327539384365 +karman_re50,ppo,197,78.8,force,upper_fx,0.0023171748034656048 +karman_re50,ppo,197,78.8,force,upper_fy,0.004190883133560419 +karman_re50,ppo,197,78.8,force,lower_fx,-0.0034653490874916315 +karman_re50,ppo,197,78.8,force,lower_fy,-0.002570024924352765 +karman_re50,ppo,198,79.2,force,front_fx,0.0005095419473946095 +karman_re50,ppo,198,79.2,force,front_fy,0.00034893120755441487 +karman_re50,ppo,198,79.2,force,upper_fx,0.002121447818353772 +karman_re50,ppo,198,79.2,force,upper_fy,0.004248610232025385 +karman_re50,ppo,198,79.2,force,lower_fx,-0.003119360888376832 +karman_re50,ppo,198,79.2,force,lower_fy,-0.003140893531963229 +karman_re50,ppo,199,79.6,force,front_fx,0.0005440925597213209 +karman_re50,ppo,199,79.6,force,front_fy,-0.00042061106069013476 +karman_re50,ppo,199,79.6,force,upper_fx,0.0018791381735354662 +karman_re50,ppo,199,79.6,force,upper_fy,0.00441428879275918 +karman_re50,ppo,199,79.6,force,lower_fx,-0.002436438575387001 +karman_re50,ppo,199,79.6,force,lower_fy,-0.0037058659363538027 +karman_re50,ppo,200,80.0,force,front_fx,0.00046952985576353967 +karman_re50,ppo,200,80.0,force,front_fy,-0.0011878748191520572 +karman_re50,ppo,200,80.0,force,upper_fx,0.0016248339088633657 +karman_re50,ppo,200,80.0,force,upper_fy,0.004612662363797426 +karman_re50,ppo,200,80.0,force,lower_fx,-0.0016910689882934093 +karman_re50,ppo,200,80.0,force,lower_fy,-0.003976188134402037 +karman_re50,ppo,201,80.4,force,front_fx,0.0003116133448202163 +karman_re50,ppo,201,80.4,force,front_fy,-0.0017389352433383465 +karman_re50,ppo,201,80.4,force,upper_fx,0.0013191624311730266 +karman_re50,ppo,201,80.4,force,upper_fy,0.004677894525229931 +karman_re50,ppo,201,80.4,force,lower_fx,-0.0011222762987017632 +karman_re50,ppo,201,80.4,force,lower_fy,-0.003912230487912893 +karman_re50,ppo,202,80.8,force,front_fx,0.0001272502267966047 +karman_re50,ppo,202,80.8,force,front_fy,-0.001965699251741171 +karman_re50,ppo,202,80.8,force,upper_fx,0.0009265284170396626 +karman_re50,ppo,202,80.8,force,upper_fy,0.004480892326682806 +karman_re50,ppo,202,80.8,force,lower_fx,-0.0007284486200660467 +karman_re50,ppo,202,80.8,force,lower_fy,-0.003627561964094639 +karman_re50,ppo,203,81.2,force,front_fx,-4.295905455364846e-05 +karman_re50,ppo,203,81.2,force,front_fy,-0.0019152361201122403 +karman_re50,ppo,203,81.2,force,upper_fx,0.00044281111331656575 +karman_re50,ppo,203,81.2,force,upper_fy,0.00401538098230958 +karman_re50,ppo,203,81.2,force,lower_fx,-0.000380651094019413 +karman_re50,ppo,203,81.2,force,lower_fy,-0.0032356134615838528 +karman_re50,ppo,204,81.6,force,front_fx,-0.00019036958110518754 +karman_re50,ppo,204,81.6,force,front_fy,-0.001702581183053553 +karman_re50,ppo,204,81.6,force,upper_fx,-9.550526738166809e-05 +karman_re50,ppo,204,81.6,force,upper_fy,0.0033940363209694624 +karman_re50,ppo,204,81.6,force,lower_fx,-1.9986923689430114e-06 +karman_re50,ppo,204,81.6,force,lower_fy,-0.002840468194335699 +karman_re50,ppo,205,82.0,force,front_fx,-0.0003107213706243783 +karman_re50,ppo,205,82.0,force,front_fy,-0.0014093773206695914 +karman_re50,ppo,205,82.0,force,upper_fx,-0.000643652630969882 +karman_re50,ppo,205,82.0,force,upper_fy,0.0028087568935006857 +karman_re50,ppo,205,82.0,force,lower_fx,0.0003901336749549955 +karman_re50,ppo,205,82.0,force,lower_fy,-0.002528243465349078 +karman_re50,ppo,206,82.4,force,front_fx,-0.000401179539039731 +karman_re50,ppo,206,82.4,force,front_fy,-0.001120004104450345 +karman_re50,ppo,206,82.4,force,upper_fx,-0.00108938361518085 +karman_re50,ppo,206,82.4,force,upper_fy,0.0025358381681144238 +karman_re50,ppo,206,82.4,force,lower_fx,0.0006815000087954104 +karman_re50,ppo,206,82.4,force,lower_fy,-0.0023150646593421698 +karman_re50,ppo,207,82.8,force,front_fx,-0.00045241363113746047 +karman_re50,ppo,207,82.8,force,front_fy,-0.0008617157582193613 +karman_re50,ppo,207,82.8,force,upper_fx,-0.0012265732511878014 +karman_re50,ppo,207,82.8,force,upper_fy,0.00283321226015687 +karman_re50,ppo,207,82.8,force,lower_fx,0.0007175046484917402 +karman_re50,ppo,207,82.8,force,lower_fy,-0.002205758588388562 +karman_re50,ppo,208,83.2,force,front_fx,-0.0004223383730277419 +karman_re50,ppo,208,83.2,force,front_fy,-0.0005770878633484244 +karman_re50,ppo,208,83.2,force,upper_fx,-0.000813233491498977 +karman_re50,ppo,208,83.2,force,upper_fy,0.0036398633383214474 +karman_re50,ppo,208,83.2,force,lower_fx,0.0004490644496399909 +karman_re50,ppo,208,83.2,force,lower_fy,-0.002196794841438532 +karman_re50,ppo,209,83.6,force,front_fx,-0.00014555790403392166 +karman_re50,ppo,209,83.6,force,front_fy,-0.00020504894200712442 +karman_re50,ppo,209,83.6,force,upper_fx,7.800124876666814e-05 +karman_re50,ppo,209,83.6,force,upper_fy,0.004472415894269943 +karman_re50,ppo,209,83.6,force,lower_fx,-0.00014043929695617408 +karman_re50,ppo,209,83.6,force,lower_fy,-0.002329718554392457 +karman_re50,ppo,210,84.0,force,front_fx,0.0006373763899318874 +karman_re50,ppo,210,84.0,force,front_fy,0.00021902931621298194 +karman_re50,ppo,210,84.0,force,upper_fx,0.000914371688850224 +karman_re50,ppo,210,84.0,force,upper_fy,0.004881975241005421 +karman_re50,ppo,210,84.0,force,lower_fx,-0.0010546123376116157 +karman_re50,ppo,210,84.0,force,lower_fy,-0.0026677907444536686 +karman_re50,ppo,211,84.4,force,front_fx,0.0018537923460826278 +karman_re50,ppo,211,84.4,force,front_fy,0.0006623390363529325 +karman_re50,ppo,211,84.4,force,upper_fx,0.0012346329167485237 +karman_re50,ppo,211,84.4,force,upper_fy,0.004766589030623436 +karman_re50,ppo,211,84.4,force,lower_fx,-0.0019740357529371977 +karman_re50,ppo,211,84.4,force,lower_fy,-0.0031666727736592293 +karman_re50,ppo,212,84.8,force,front_fx,0.002755227964371443 +karman_re50,ppo,212,84.8,force,front_fy,0.001147000351920724 +karman_re50,ppo,212,84.8,force,upper_fx,0.001264939783141017 +karman_re50,ppo,212,84.8,force,upper_fy,0.004254195839166641 +karman_re50,ppo,212,84.8,force,lower_fx,-0.0022575350012630224 +karman_re50,ppo,212,84.8,force,lower_fy,-0.003430624259635806 +karman_re50,ppo,213,85.2,force,front_fx,0.002785926451906562 +karman_re50,ppo,213,85.2,force,front_fy,0.0016568196006119251 +karman_re50,ppo,213,85.2,force,upper_fx,0.0014211368979886174 +karman_re50,ppo,213,85.2,force,upper_fy,0.0039027363527566195 +karman_re50,ppo,213,85.2,force,lower_fx,-0.0020152360666543245 +karman_re50,ppo,213,85.2,force,lower_fy,-0.0031182123348116875 +karman_re50,ppo,214,85.6,force,front_fx,0.002264679642394185 +karman_re50,ppo,214,85.6,force,front_fy,0.0019493871368467808 +karman_re50,ppo,214,85.6,force,upper_fx,0.001741130487062037 +karman_re50,ppo,214,85.6,force,upper_fy,0.003926428500562906 +karman_re50,ppo,214,85.6,force,lower_fx,-0.0019623793195933104 +karman_re50,ppo,214,85.6,force,lower_fy,-0.002541195135563612 +karman_re50,ppo,215,86.0,force,front_fx,0.0016631180187687278 +karman_re50,ppo,215,86.0,force,front_fy,0.0019595837220549583 +karman_re50,ppo,215,86.0,force,upper_fx,0.0020711312536150217 +karman_re50,ppo,215,86.0,force,upper_fy,0.004067995119839907 +karman_re50,ppo,215,86.0,force,lower_fx,-0.002322337357327342 +karman_re50,ppo,215,86.0,force,lower_fy,-0.002080981619656086 +karman_re50,ppo,216,86.4,force,front_fx,0.0011714043794199824 +karman_re50,ppo,216,86.4,force,front_fy,0.0018611963605508208 +karman_re50,ppo,216,86.4,force,upper_fx,0.002284485846757889 +karman_re50,ppo,216,86.4,force,upper_fy,0.004172899294644594 +karman_re50,ppo,216,86.4,force,lower_fx,-0.002844563452526927 +karman_re50,ppo,216,86.4,force,lower_fy,-0.0018047579796984792 +karman_re50,ppo,217,86.8,force,front_fx,0.0007830557879060507 +karman_re50,ppo,217,86.8,force,front_fy,0.0017757570603862405 +karman_re50,ppo,217,86.8,force,upper_fx,0.00239987438544631 +karman_re50,ppo,217,86.8,force,upper_fy,0.004256001207977533 +karman_re50,ppo,217,86.8,force,lower_fx,-0.0033013822976499796 +karman_re50,ppo,217,86.8,force,lower_fy,-0.0016930117271840572 +karman_re50,ppo,218,87.2,force,front_fx,0.0005247439257800579 +karman_re50,ppo,218,87.2,force,front_fy,0.001630690647289157 +karman_re50,ppo,218,87.2,force,upper_fx,0.002420528791844845 +karman_re50,ppo,218,87.2,force,upper_fy,0.004322780761867762 +karman_re50,ppo,218,87.2,force,lower_fx,-0.0036198291927576065 +karman_re50,ppo,218,87.2,force,lower_fy,-0.0017889082664623857 +karman_re50,ppo,219,87.6,force,front_fx,0.0004573655023705214 +karman_re50,ppo,219,87.6,force,front_fy,0.0013017368037253618 +karman_re50,ppo,219,87.6,force,upper_fx,0.002308829687535763 +karman_re50,ppo,219,87.6,force,upper_fy,0.004340798128396273 +karman_re50,ppo,219,87.6,force,lower_fx,-0.003708232892677188 +karman_re50,ppo,219,87.6,force,lower_fy,-0.002195805311203003 +karman_re50,ppo,220,88.0,force,front_fx,0.0005094220978207886 +karman_re50,ppo,220,88.0,force,front_fy,0.000770132930483669 +karman_re50,ppo,220,88.0,force,upper_fx,0.002071239985525608 +karman_re50,ppo,220,88.0,force,upper_fy,0.004380946978926659 +karman_re50,ppo,220,88.0,force,lower_fx,-0.0033909217454493046 +karman_re50,ppo,220,88.0,force,lower_fy,-0.0029078463558107615 +karman_re50,ppo,221,88.4,force,front_fx,0.0005449000163935125 +karman_re50,ppo,221,88.4,force,front_fy,3.2019179343478754e-05 +karman_re50,ppo,221,88.4,force,upper_fx,0.001775198383256793 +karman_re50,ppo,221,88.4,force,upper_fy,0.004519048612564802 +karman_re50,ppo,221,88.4,force,lower_fx,-0.0026278237346559763 +karman_re50,ppo,221,88.4,force,lower_fy,-0.00366168562322855 +karman_re50,ppo,222,88.8,force,front_fx,0.0004922260995954275 +karman_re50,ppo,222,88.8,force,front_fy,-0.000782992981839925 +karman_re50,ppo,222,88.8,force,upper_fx,0.001466411747969687 +karman_re50,ppo,222,88.8,force,upper_fy,0.004702925216406584 +karman_re50,ppo,222,88.8,force,lower_fx,-0.0017002689419314265 +karman_re50,ppo,222,88.8,force,lower_fy,-0.004068377427756786 +karman_re50,ppo,223,89.2,force,front_fx,0.0003711637982632965 +karman_re50,ppo,223,89.2,force,front_fy,-0.001433966914191842 +karman_re50,ppo,223,89.2,force,upper_fx,0.0011110129998996854 +karman_re50,ppo,223,89.2,force,upper_fy,0.004772931803017855 +karman_re50,ppo,223,89.2,force,lower_fx,-0.0009568591485731304 +karman_re50,ppo,223,89.2,force,lower_fy,-0.004031756427139044 +karman_re50,ppo,224,89.6,force,front_fx,0.0002187922946177423 +karman_re50,ppo,224,89.6,force,front_fy,-0.0017561722779646516 +karman_re50,ppo,224,89.6,force,upper_fx,0.0006704793777316809 +karman_re50,ppo,224,89.6,force,upper_fy,0.00457377266138792 +karman_re50,ppo,224,89.6,force,lower_fx,-0.0004707984917331487 +karman_re50,ppo,224,89.6,force,lower_fy,-0.00373149779625237 +karman_re50,ppo,225,90.0,force,front_fx,7.821824692655355e-05 +karman_re50,ppo,225,90.0,force,front_fy,-0.001775394775904715 +karman_re50,ppo,225,90.0,force,upper_fx,0.00013000048056710511 +karman_re50,ppo,225,90.0,force,upper_fy,0.004093620460480452 +karman_re50,ppo,225,90.0,force,lower_fx,-0.00010362612374592572 +karman_re50,ppo,225,90.0,force,lower_fy,-0.003323374781757593 +karman_re50,ppo,226,90.4,force,front_fx,-3.643985837697983e-05 +karman_re50,ppo,226,90.4,force,front_fy,-0.0016128390561789274 +karman_re50,ppo,226,90.4,force,upper_fx,-0.00046408717753365636 +karman_re50,ppo,226,90.4,force,upper_fy,0.0034616480115801096 +karman_re50,ppo,226,90.4,force,lower_fx,0.00024890879285521805 +karman_re50,ppo,226,90.4,force,lower_fy,-0.0029035413172096014 +karman_re50,ppo,227,90.8,force,front_fx,-0.00012420539860613644 +karman_re50,ppo,227,90.8,force,front_fy,-0.0013709868071600795 +karman_re50,ppo,227,90.8,force,upper_fx,-0.0010483036749064922 +karman_re50,ppo,227,90.8,force,upper_fy,0.002876909449696541 +karman_re50,ppo,227,90.8,force,lower_fx,0.0005901887197978795 +karman_re50,ppo,227,90.8,force,lower_fy,-0.0025606779381632805 +karman_re50,ppo,228,91.2,force,front_fx,-0.00019834033446386456 +karman_re50,ppo,228,91.2,force,front_fy,-0.0011227965587750077 +karman_re50,ppo,228,91.2,force,upper_fx,-0.0015235614264383912 +karman_re50,ppo,228,91.2,force,upper_fy,0.00257509876973927 +karman_re50,ppo,228,91.2,force,lower_fx,0.0008453995105810463 +karman_re50,ppo,228,91.2,force,lower_fy,-0.002346860710531473 +karman_re50,ppo,229,91.6,force,front_fx,-0.0002661293256096542 +karman_re50,ppo,229,91.6,force,front_fy,-0.0008973109070211649 +karman_re50,ppo,229,91.6,force,upper_fx,-0.0017070291796699166 +karman_re50,ppo,229,91.6,force,upper_fy,0.0028033473063260317 +karman_re50,ppo,229,91.6,force,lower_fx,0.0008974641095846891 +karman_re50,ppo,229,91.6,force,lower_fy,-0.0022441528271883726 +karman_re50,ppo,230,92.0,force,front_fx,-0.00031136954203248024 +karman_re50,ppo,230,92.0,force,front_fy,-0.0006381068960763514 +karman_re50,ppo,230,92.0,force,upper_fx,-0.0013628382002934813 +karman_re50,ppo,230,92.0,force,upper_fy,0.0035492703318595886 +karman_re50,ppo,230,92.0,force,lower_fx,0.000701549812220037 +karman_re50,ppo,230,92.0,force,lower_fy,-0.002234111540019512 +karman_re50,ppo,231,92.4,force,front_fx,-0.00022655993234366179 +karman_re50,ppo,231,92.4,force,front_fy,-0.0002699809265322983 +karman_re50,ppo,231,92.4,force,upper_fx,-0.0004749502695631236 +karman_re50,ppo,231,92.4,force,upper_fy,0.004367290064692497 +karman_re50,ppo,231,92.4,force,lower_fx,0.00026604451704770327 +karman_re50,ppo,231,92.4,force,lower_fy,-0.0023256626445800066 +karman_re50,ppo,232,92.8,force,front_fx,0.00024335630587302148 +karman_re50,ppo,232,92.8,force,front_fy,0.00016610439342912287 +karman_re50,ppo,232,92.8,force,upper_fx,0.000495465996209532 +karman_re50,ppo,232,92.8,force,upper_fy,0.0048048971220850945 +karman_re50,ppo,232,92.8,force,lower_fx,-0.00046713982010260224 +karman_re50,ppo,232,92.8,force,lower_fy,-0.0025740284472703934 +karman_re50,ppo,233,93.2,force,front_fx,0.001219774829223752 +karman_re50,ppo,233,93.2,force,front_fy,0.0005860126111656427 +karman_re50,ppo,233,93.2,force,upper_fx,0.0010232047643512487 +karman_re50,ppo,233,93.2,force,upper_fy,0.004844348877668381 +karman_re50,ppo,233,93.2,force,lower_fx,-0.0014085604343563318 +karman_re50,ppo,233,93.2,force,lower_fy,-0.002999834017828107 +karman_re50,ppo,234,93.6,force,front_fx,0.0022647527512162924 +karman_re50,ppo,234,93.6,force,front_fy,0.0010124110849574208 +karman_re50,ppo,234,93.6,force,upper_fx,0.0011182118905708194 +karman_re50,ppo,234,93.6,force,upper_fy,0.004536250606179237 +karman_re50,ppo,234,93.6,force,lower_fx,-0.0020367326214909554 +karman_re50,ppo,234,93.6,force,lower_fy,-0.003376499516889453 +karman_re50,ppo,235,94.0,force,front_fx,0.002646127250045538 +karman_re50,ppo,235,94.0,force,front_fy,0.0014763199724256992 +karman_re50,ppo,235,94.0,force,upper_fx,0.0012194219743832946 +karman_re50,ppo,235,94.0,force,upper_fy,0.004126707557588816 +karman_re50,ppo,235,94.0,force,lower_fx,-0.0020474388729780912 +karman_re50,ppo,235,94.0,force,lower_fy,-0.003299751551821828 +karman_re50,ppo,236,94.4,force,front_fx,0.0023162830621004105 +karman_re50,ppo,236,94.4,force,front_fy,0.0018376632360741496 +karman_re50,ppo,236,94.4,force,upper_fx,0.0015086240600794554 +karman_re50,ppo,236,94.4,force,upper_fy,0.0040224273689091206 +karman_re50,ppo,236,94.4,force,lower_fx,-0.001947173965163529 +karman_re50,ppo,236,94.4,force,lower_fy,-0.002800325397402048 +karman_re50,ppo,237,94.8,force,front_fx,0.0017413677414879203 +karman_re50,ppo,237,94.8,force,front_fy,0.0019106866093352437 +karman_re50,ppo,237,94.8,force,upper_fx,0.0018802476115524769 +karman_re50,ppo,237,94.8,force,upper_fy,0.004118731245398521 +karman_re50,ppo,237,94.8,force,lower_fx,-0.0021836350206285715 +karman_re50,ppo,237,94.8,force,lower_fy,-0.002283961744979024 +karman_re50,ppo,238,95.2,force,front_fx,0.001216572243720293 +karman_re50,ppo,238,95.2,force,front_fy,0.001847865292802453 +karman_re50,ppo,238,95.2,force,upper_fx,0.002145543694496155 +karman_re50,ppo,238,95.2,force,upper_fy,0.004197073169052601 +karman_re50,ppo,238,95.2,force,lower_fx,-0.002653178758919239 +karman_re50,ppo,238,95.2,force,lower_fy,-0.0019522670190781355 +karman_re50,ppo,239,95.6,force,front_fx,0.0007899442571215332 +karman_re50,ppo,239,95.6,force,front_fy,0.0017994034569710493 +karman_re50,ppo,239,95.6,force,upper_fx,0.0022626658901572227 +karman_re50,ppo,239,95.6,force,upper_fy,0.004231704398989677 +karman_re50,ppo,239,95.6,force,lower_fx,-0.003090198617428541 +karman_re50,ppo,239,95.6,force,lower_fy,-0.0018354200292378664 +karman_re50,ppo,240,96.0,force,front_fx,0.00047393274144269526 +karman_re50,ppo,240,96.0,force,front_fy,0.0017290898831561208 +karman_re50,ppo,240,96.0,force,upper_fx,0.002269384451210499 +karman_re50,ppo,240,96.0,force,upper_fy,0.004265879280865192 +karman_re50,ppo,240,96.0,force,lower_fx,-0.0033858453389257193 +karman_re50,ppo,240,96.0,force,lower_fy,-0.0019512322032824159 +karman_re50,ppo,241,96.4,force,front_fx,0.0003234223695471883 +karman_re50,ppo,241,96.4,force,front_fy,0.0014926665462553501 +karman_re50,ppo,241,96.4,force,upper_fx,0.002162627875804901 +karman_re50,ppo,241,96.4,force,upper_fy,0.0042714946903288364 +karman_re50,ppo,241,96.4,force,lower_fx,-0.003462353255599737 +karman_re50,ppo,241,96.4,force,lower_fy,-0.0023476933129131794 +karman_re50,ppo,242,96.8,force,front_fx,0.000323100364767015 +karman_re50,ppo,242,96.8,force,front_fy,0.001017107511870563 +karman_re50,ppo,242,96.8,force,upper_fx,0.001928636571392417 +karman_re50,ppo,242,96.8,force,upper_fy,0.004260165151208639 +karman_re50,ppo,242,96.8,force,lower_fx,-0.0031666583381593227 +karman_re50,ppo,242,96.8,force,lower_fy,-0.003013164736330509 +karman_re50,ppo,243,97.2,force,front_fx,0.0003652632003650069 +karman_re50,ppo,243,97.2,force,front_fy,0.00032445904798805714 +karman_re50,ppo,243,97.2,force,upper_fx,0.0015992092667147517 +karman_re50,ppo,243,97.2,force,upper_fy,0.0043047708459198475 +karman_re50,ppo,243,97.2,force,lower_fx,-0.0024107724893838167 +karman_re50,ppo,243,97.2,force,lower_fy,-0.00373984151519835 +karman_re50,ppo,244,97.6,force,front_fx,0.0003750269243028015 +karman_re50,ppo,244,97.6,force,front_fy,-0.0004811883845832199 +karman_re50,ppo,244,97.6,force,upper_fx,0.0012196815805509686 +karman_re50,ppo,244,97.6,force,upper_fy,0.004395287483930588 +karman_re50,ppo,244,97.6,force,lower_fx,-0.0014332183636724949 +karman_re50,ppo,244,97.6,force,lower_fy,-0.00415683351457119 +karman_re50,ppo,245,98.0,force,front_fx,0.00034079301985912025 +karman_re50,ppo,245,98.0,force,front_fy,-0.001174125005491078 +karman_re50,ppo,245,98.0,force,upper_fx,0.0007763424655422568 +karman_re50,ppo,245,98.0,force,upper_fy,0.004436545539647341 +karman_re50,ppo,245,98.0,force,lower_fx,-0.000629603280685842 +karman_re50,ppo,245,98.0,force,lower_fy,-0.004126841202378273 +karman_re50,ppo,246,98.4,force,front_fx,0.00029036958585493267 +karman_re50,ppo,246,98.4,force,front_fy,-0.0015706256963312626 +karman_re50,ppo,246,98.4,force,upper_fx,0.00024996514548547566 +karman_re50,ppo,246,98.4,force,upper_fy,0.004301209934055805 +karman_re50,ppo,246,98.4,force,lower_fx,-0.000154899520566687 +karman_re50,ppo,246,98.4,force,lower_fy,-0.0038457391783595085 +karman_re50,ppo,247,98.8,force,front_fx,0.00024717935593798757 +karman_re50,ppo,247,98.8,force,front_fy,-0.0016665122238919139 +karman_re50,ppo,247,98.8,force,upper_fx,-0.00033680364140309393 +karman_re50,ppo,247,98.8,force,upper_fy,0.003966377582401037 +karman_re50,ppo,247,98.8,force,lower_fx,0.00012287312711123377 +karman_re50,ppo,247,98.8,force,lower_fy,-0.003475343342870474 +karman_re50,ppo,248,99.2,force,front_fx,0.0002189671213272959 +karman_re50,ppo,248,99.2,force,front_fy,-0.001584608107805252 +karman_re50,ppo,248,99.2,force,upper_fx,-0.0009220167412422597 +karman_re50,ppo,248,99.2,force,upper_fy,0.0035228237975388765 +karman_re50,ppo,248,99.2,force,lower_fx,0.0003513380652293563 +karman_re50,ppo,248,99.2,force,lower_fy,-0.0030957392882555723 +karman_re50,ppo,249,99.6,force,front_fx,0.00017137361282948405 +karman_re50,ppo,249,99.6,force,front_fy,-0.001405599876306951 +karman_re50,ppo,249,99.6,force,upper_fx,-0.0014308994868770242 +karman_re50,ppo,249,99.6,force,upper_fy,0.0031111303251236677 +karman_re50,ppo,249,99.6,force,lower_fx,0.0005793097079731524 +karman_re50,ppo,249,99.6,force,lower_fy,-0.0027930187061429024 +karman_re50,ppo,250,100.0,force,front_fx,9.845066233538091e-05 +karman_re50,ppo,250,100.0,force,front_fy,-0.0011851821327582002 +karman_re50,ppo,250,100.0,force,upper_fx,-0.001801059814170003 +karman_re50,ppo,250,100.0,force,upper_fy,0.0028682351112365723 +karman_re50,ppo,250,100.0,force,lower_fx,0.0007943427772261202 +karman_re50,ppo,250,100.0,force,lower_fy,-0.0026041448581963778 +karman_re50,ppo,251,100.4,force,front_fx,-2.968814442283474e-05 +karman_re50,ppo,251,100.4,force,front_fy,-0.0009599367622286081 +karman_re50,ppo,251,100.4,force,upper_fx,-0.0019190378952771425 +karman_re50,ppo,251,100.4,force,upper_fy,0.0029643692541867495 +karman_re50,ppo,251,100.4,force,lower_fx,0.0009016880649141967 +karman_re50,ppo,251,100.4,force,lower_fy,-0.0025086200330406427 +karman_re50,ppo,252,100.8,force,front_fx,-0.00016797007992863655 +karman_re50,ppo,252,100.8,force,front_fy,-0.0007030083215795457 +karman_re50,ppo,252,100.8,force,upper_fx,-0.0016319388523697853 +karman_re50,ppo,252,100.8,force,upper_fy,0.0034678794909268618 +karman_re50,ppo,252,100.8,force,lower_fx,0.0008240175084210932 +karman_re50,ppo,252,100.8,force,lower_fy,-0.002471490064635873 +karman_re50,ppo,253,101.2,force,front_fx,-0.00022535033349413425 +karman_re50,ppo,253,101.2,force,front_fy,-0.00036112472298555076 +karman_re50,ppo,253,101.2,force,upper_fx,-0.0008573119412176311 +karman_re50,ppo,253,101.2,force,upper_fy,0.0041562896221876144 +karman_re50,ppo,253,101.2,force,lower_fx,0.0005257666343823075 +karman_re50,ppo,253,101.2,force,lower_fy,-0.0025084519293159246 +karman_re50,ppo,254,101.6,force,front_fx,3.7072331906529143e-05 +karman_re50,ppo,254,101.6,force,front_fy,5.3112555178813636e-05 +karman_re50,ppo,254,101.6,force,upper_fx,0.0001280416181543842 +karman_re50,ppo,254,101.6,force,upper_fy,0.004651754163205624 +karman_re50,ppo,254,101.6,force,lower_fx,-5.192698154132813e-05 +karman_re50,ppo,254,101.6,force,lower_fy,-0.0026696491986513138 +karman_re50,ppo,255,102.0,force,front_fx,0.0008062002598308027 +karman_re50,ppo,255,102.0,force,front_fy,0.00046439896686933935 +karman_re50,ppo,255,102.0,force,upper_fx,0.000827531679533422 +karman_re50,ppo,255,102.0,force,upper_fy,0.004812217783182859 +karman_re50,ppo,255,102.0,force,lower_fx,-0.0009173053549602628 +karman_re50,ppo,255,102.0,force,lower_fy,-0.003010591957718134 +karman_re50,ppo,256,102.4,force,front_fx,0.0018573328852653503 +karman_re50,ppo,256,102.4,force,front_fy,0.0008748319232836366 +karman_re50,ppo,256,102.4,force,upper_fx,0.001033090171404183 +karman_re50,ppo,256,102.4,force,upper_fy,0.0046361470595002174 +karman_re50,ppo,256,102.4,force,lower_fx,-0.0017057759687304497 +karman_re50,ppo,256,102.4,force,lower_fy,-0.0034251241013407707 +karman_re50,ppo,257,102.8,force,front_fx,0.0024874983355402946 +karman_re50,ppo,257,102.8,force,front_fy,0.0013078042538836598 +karman_re50,ppo,257,102.8,force,upper_fx,0.0010686274617910385 +karman_re50,ppo,257,102.8,force,upper_fy,0.004212345462292433 +karman_re50,ppo,257,102.8,force,lower_fx,-0.0019462167983874679 +karman_re50,ppo,257,102.8,force,lower_fy,-0.003549274755641818 +karman_re50,ppo,258,103.2,force,front_fx,0.0023774607107043266 +karman_re50,ppo,258,103.2,force,front_fy,0.0017141378484666348 +karman_re50,ppo,258,103.2,force,upper_fx,0.0012559224851429462 +karman_re50,ppo,258,103.2,force,upper_fy,0.003972761798650026 +karman_re50,ppo,258,103.2,force,lower_fx,-0.0018545675557106733 +karman_re50,ppo,258,103.2,force,lower_fy,-0.003201049519702792 +karman_re50,ppo,259,103.6,force,front_fx,0.0018604391952976584 +karman_re50,ppo,259,103.6,force,front_fy,0.001910816179588437 +karman_re50,ppo,259,103.6,force,upper_fx,0.0015829510521143675 +karman_re50,ppo,259,103.6,force,upper_fy,0.004002431873232126 +karman_re50,ppo,259,103.6,force,lower_fx,-0.001958076609298587 +karman_re50,ppo,259,103.6,force,lower_fy,-0.0027078110724687576 +karman_re50,ppo,260,104.0,force,front_fx,0.0013085291720926762 +karman_re50,ppo,260,104.0,force,front_fy,0.0018822242273017764 +karman_re50,ppo,260,104.0,force,upper_fx,0.0018813590286299586 +karman_re50,ppo,260,104.0,force,upper_fy,0.004079749807715416 +karman_re50,ppo,260,104.0,force,lower_fx,-0.0023272891994565725 +karman_re50,ppo,260,104.0,force,lower_fy,-0.0023676499258726835 +karman_re50,ppo,261,104.4,force,front_fx,0.0008614303660579026 +karman_re50,ppo,261,104.4,force,front_fy,0.001833903486840427 +karman_re50,ppo,261,104.4,force,upper_fx,0.0020590894855558872 +karman_re50,ppo,261,104.4,force,upper_fy,0.004119241610169411 +karman_re50,ppo,261,104.4,force,lower_fx,-0.00273490184918046 +karman_re50,ppo,261,104.4,force,lower_fy,-0.0022223962005227804 +karman_re50,ppo,262,104.8,force,front_fx,0.0005063936696387827 +karman_re50,ppo,262,104.8,force,front_fy,0.0017453387845307589 +karman_re50,ppo,262,104.8,force,upper_fx,0.0021530846133828163 +karman_re50,ppo,262,104.8,force,upper_fy,0.004153042566031218 +karman_re50,ppo,262,104.8,force,lower_fx,-0.0030537117272615433 +karman_re50,ppo,262,104.8,force,lower_fy,-0.0022545563988387585 +karman_re50,ppo,263,105.2,force,front_fx,0.00029660010477527976 +karman_re50,ppo,263,105.2,force,front_fy,0.0015188379911705852 +karman_re50,ppo,263,105.2,force,upper_fx,0.0021578564774245024 +karman_re50,ppo,263,105.2,force,upper_fy,0.004162645898759365 +karman_re50,ppo,263,105.2,force,lower_fx,-0.0032189148478209972 +karman_re50,ppo,263,105.2,force,lower_fy,-0.0024653158616274595 +karman_re50,ppo,264,105.6,force,front_fx,0.0002549323544371873 +karman_re50,ppo,264,105.6,force,front_fy,0.0010848342208191752 +karman_re50,ppo,264,105.6,force,upper_fx,0.0020345901139080524 +karman_re50,ppo,264,105.6,force,upper_fy,0.004127944819629192 +karman_re50,ppo,264,105.6,force,lower_fx,-0.003111559199169278 +karman_re50,ppo,264,105.6,force,lower_fy,-0.002894714241847396 +karman_re50,ppo,265,106.0,force,front_fx,0.00031088999821804464 +karman_re50,ppo,265,106.0,force,front_fy,0.0004517754423432052 +karman_re50,ppo,265,106.0,force,upper_fx,0.001784194610081613 +karman_re50,ppo,265,106.0,force,upper_fy,0.004124622792005539 +karman_re50,ppo,265,106.0,force,lower_fx,-0.0026039353106170893 +karman_re50,ppo,265,106.0,force,lower_fy,-0.003472717944532633 +karman_re50,ppo,266,106.4,force,front_fx,0.0003561298071872443 +karman_re50,ppo,266,106.4,force,front_fy,-0.00032306936918757856 +karman_re50,ppo,266,106.4,force,upper_fx,0.0014587010955438018 +karman_re50,ppo,266,106.4,force,upper_fy,0.0041947150602936745 +karman_re50,ppo,266,106.4,force,lower_fx,-0.001794609590433538 +karman_re50,ppo,266,106.4,force,lower_fy,-0.003951575607061386 +karman_re50,ppo,267,106.8,force,front_fx,0.00034166788100264966 +karman_re50,ppo,267,106.8,force,front_fy,-0.0010678129037842155 +karman_re50,ppo,267,106.8,force,upper_fx,0.0010791305685415864 +karman_re50,ppo,267,106.8,force,upper_fy,0.004288974218070507 +karman_re50,ppo,267,106.8,force,lower_fx,-0.0010092738084495068 +karman_re50,ppo,267,106.8,force,lower_fy,-0.004098575096577406 +karman_re50,ppo,268,107.2,force,front_fx,0.00028504699002951384 +karman_re50,ppo,268,107.2,force,front_fy,-0.0015809093602001667 +karman_re50,ppo,268,107.2,force,upper_fx,0.0006271888851188123 +karman_re50,ppo,268,107.2,force,upper_fy,0.004288617055863142 +karman_re50,ppo,268,107.2,force,lower_fx,-0.0004870968696195632 +karman_re50,ppo,268,107.2,force,lower_fy,-0.003946428652852774 +karman_re50,ppo,269,107.6,force,front_fx,0.00022350053768604994 +karman_re50,ppo,269,107.6,force,front_fy,-0.001782436273060739 +karman_re50,ppo,269,107.6,force,upper_fx,0.00011703660857165232 +karman_re50,ppo,269,107.6,force,upper_fy,0.004108596593141556 +karman_re50,ppo,269,107.6,force,lower_fx,-0.0001949164579855278 +karman_re50,ppo,269,107.6,force,lower_fy,-0.0036388635635375977 +karman_re50,ppo,270,108.0,force,front_fx,0.0001694523962214589 +karman_re50,ppo,270,108.0,force,front_fy,-0.0017506858566775918 +karman_re50,ppo,270,108.0,force,upper_fx,-0.00040984436054714024 +karman_re50,ppo,270,108.0,force,upper_fy,0.0037634477484971285 +karman_re50,ppo,270,108.0,force,lower_fx,2.2440493921749294e-05 +karman_re50,ppo,270,108.0,force,lower_fy,-0.0032771462574601173 +karman_re50,ppo,271,108.4,force,front_fx,0.0001069017598638311 +karman_re50,ppo,271,108.4,force,front_fy,-0.001586027443408966 +karman_re50,ppo,271,108.4,force,upper_fx,-0.0008949227049015462 +karman_re50,ppo,271,108.4,force,upper_fy,0.003349621780216694 +karman_re50,ppo,271,108.4,force,lower_fx,0.00026069165323860943 +karman_re50,ppo,271,108.4,force,lower_fy,-0.0029486240819096565 +karman_re50,ppo,272,108.8,force,front_fx,1.904783130157739e-05 +karman_re50,ppo,272,108.8,force,front_fy,-0.0013450428377836943 +karman_re50,ppo,272,108.8,force,upper_fx,-0.001298207207582891 +karman_re50,ppo,272,108.8,force,upper_fy,0.0029881394002586603 +karman_re50,ppo,272,108.8,force,lower_fx,0.0005276745650917292 +karman_re50,ppo,272,108.8,force,lower_fy,-0.0027169478125870228 +karman_re50,ppo,273,109.2,force,front_fx,-0.000103274556749966 +karman_re50,ppo,273,109.2,force,front_fy,-0.0010868743993341923 +karman_re50,ppo,273,109.2,force,upper_fx,-0.0015486389165744185 +karman_re50,ppo,273,109.2,force,upper_fy,0.0028496647719293833 +karman_re50,ppo,273,109.2,force,lower_fx,0.0007423751521855593 +karman_re50,ppo,273,109.2,force,lower_fy,-0.0025728303007781506 +karman_re50,ppo,274,109.6,force,front_fx,-0.00024008909531403333 +karman_re50,ppo,274,109.6,force,front_fy,-0.0008247902733273804 +karman_re50,ppo,274,109.6,force,upper_fx,-0.001500605372712016 +karman_re50,ppo,274,109.6,force,upper_fy,0.0031225758139044046 +karman_re50,ppo,274,109.6,force,lower_fx,0.0007792764226906002 +karman_re50,ppo,274,109.6,force,lower_fy,-0.002483758144080639 +karman_re50,ppo,275,110.0,force,front_fx,-0.00030954659450799227 +karman_re50,ppo,275,110.0,force,front_fy,-0.00052502570906654 +karman_re50,ppo,275,110.0,force,upper_fx,-0.0009825545130297542 +karman_re50,ppo,275,110.0,force,upper_fy,0.0037743726279586554 +karman_re50,ppo,275,110.0,force,lower_fx,0.0005651689134538174 +karman_re50,ppo,275,110.0,force,lower_fy,-0.002465085592120886 +karman_re50,ppo,276,110.4,force,front_fx,-0.00013021619815845042 +karman_re50,ppo,276,110.4,force,front_fy,-0.00014978741819504648 +karman_re50,ppo,276,110.4,force,upper_fx,-7.290596840903163e-05 +karman_re50,ppo,276,110.4,force,upper_fy,0.004453504923731089 +karman_re50,ppo,276,110.4,force,lower_fx,5.744249210692942e-05 +karman_re50,ppo,276,110.4,force,lower_fy,-0.0025650528259575367 +karman_re50,ppo,277,110.8,force,front_fx,0.0005388007266446948 +karman_re50,ppo,277,110.8,force,front_fy,0.0002609787043184042 +karman_re50,ppo,277,110.8,force,upper_fx,0.0007657520473003387 +karman_re50,ppo,277,110.8,force,upper_fy,0.004811413586139679 +karman_re50,ppo,277,110.8,force,lower_fx,-0.0007752940873615444 +karman_re50,ppo,277,110.8,force,lower_fy,-0.0028579726349562407 +karman_re50,ppo,278,111.2,force,front_fx,0.0016386638162657619 +karman_re50,ppo,278,111.2,force,front_fy,0.000685636536218226 +karman_re50,ppo,278,111.2,force,upper_fx,0.0011137815890833735 +karman_re50,ppo,278,111.2,force,upper_fy,0.00473908893764019 +karman_re50,ppo,278,111.2,force,lower_fx,-0.0016702711582183838 +karman_re50,ppo,278,111.2,force,lower_fy,-0.003309596562758088 +karman_re50,ppo,279,111.6,force,front_fx,0.0025130140129476786 +karman_re50,ppo,279,111.6,force,front_fy,0.0011346876854076982 +karman_re50,ppo,279,111.6,force,upper_fx,0.0011333806905895472 +karman_re50,ppo,279,111.6,force,upper_fy,0.004290295764803886 +karman_re50,ppo,279,111.6,force,lower_fx,-0.00205808924511075 +karman_re50,ppo,279,111.6,force,lower_fy,-0.003589792875573039 +karman_re50,ppo,280,112.0,force,front_fx,0.0026120853144675493 +karman_re50,ppo,280,112.0,force,front_fy,0.0015991335967555642 +karman_re50,ppo,280,112.0,force,upper_fx,0.0012443644227460027 +karman_re50,ppo,280,112.0,force,upper_fy,0.00392558379098773 +karman_re50,ppo,280,112.0,force,lower_fx,-0.001929681864567101 +karman_re50,ppo,280,112.0,force,lower_fy,-0.003359768074005842 +karman_re50,ppo,281,112.4,force,front_fx,0.0021473087836056948 +karman_re50,ppo,281,112.4,force,front_fy,0.0018891878426074982 +karman_re50,ppo,281,112.4,force,upper_fx,0.001524678897112608 +karman_re50,ppo,281,112.4,force,upper_fy,0.00390011933632195 +karman_re50,ppo,281,112.4,force,lower_fx,-0.0018916812259703875 +karman_re50,ppo,281,112.4,force,lower_fy,-0.0028493499848991632 +karman_re50,ppo,282,112.8,force,front_fx,0.0015803772257640958 +karman_re50,ppo,282,112.8,force,front_fy,0.0019440774340182543 +karman_re50,ppo,282,112.8,force,upper_fx,0.0018385384464636445 +karman_re50,ppo,282,112.8,force,upper_fy,0.00400165468454361 +karman_re50,ppo,282,112.8,force,lower_fx,-0.0021887770853936672 +karman_re50,ppo,282,112.8,force,lower_fy,-0.0024421284906566143 +karman_re50,ppo,283,113.2,force,front_fx,0.0010983245447278023 +karman_re50,ppo,283,113.2,force,front_fy,0.001883175689727068 +karman_re50,ppo,283,113.2,force,upper_fx,0.0020641579758375883 +karman_re50,ppo,283,113.2,force,upper_fy,0.00408232631161809 +karman_re50,ppo,283,113.2,force,lower_fx,-0.002631109906360507 +karman_re50,ppo,283,113.2,force,lower_fy,-0.002219833666458726 +karman_re50,ppo,284,113.6,force,front_fx,0.0007194888312369585 +karman_re50,ppo,284,113.6,force,front_fy,0.0017770410049706697 +karman_re50,ppo,284,113.6,force,upper_fx,0.0022176948841661215 +karman_re50,ppo,284,113.6,force,upper_fy,0.004149566404521465 +karman_re50,ppo,284,113.6,force,lower_fx,-0.0030332966707646847 +karman_re50,ppo,284,113.6,force,lower_fy,-0.002142189536243677 +karman_re50,ppo,285,114.0,force,front_fx,0.00045429199235513806 +karman_re50,ppo,285,114.0,force,front_fy,0.001577853225171566 +karman_re50,ppo,285,114.0,force,upper_fx,0.002302610781043768 +karman_re50,ppo,285,114.0,force,upper_fy,0.00420153234153986 +karman_re50,ppo,285,114.0,force,lower_fx,-0.0033292132429778576 +karman_re50,ppo,285,114.0,force,lower_fy,-0.00220239139162004 +karman_re50,ppo,286,114.4,force,front_fx,0.00037872447865083814 +karman_re50,ppo,286,114.4,force,front_fy,0.0012115888530388474 +karman_re50,ppo,286,114.4,force,upper_fx,0.0022693038918077946 +karman_re50,ppo,286,114.4,force,upper_fy,0.004203215707093477 +karman_re50,ppo,286,114.4,force,lower_fx,-0.0034329218324273825 +karman_re50,ppo,286,114.4,force,lower_fy,-0.0024780037347227335 +karman_re50,ppo,287,114.8,force,front_fx,0.00043731980258598924 +karman_re50,ppo,287,114.8,force,front_fy,0.0006543533527292311 +karman_re50,ppo,287,114.8,force,upper_fx,0.002098133321851492 +karman_re50,ppo,287,114.8,force,upper_fy,0.00421574292704463 +karman_re50,ppo,287,114.8,force,lower_fx,-0.0031879066955298185 +karman_re50,ppo,287,114.8,force,lower_fy,-0.003006276674568653 +karman_re50,ppo,288,115.2,force,front_fx,0.0004979775403626263 +karman_re50,ppo,288,115.2,force,front_fy,-7.558320794487372e-05 +karman_re50,ppo,288,115.2,force,upper_fx,0.0018458985723555088 +karman_re50,ppo,288,115.2,force,upper_fy,0.004323482979089022 +karman_re50,ppo,288,115.2,force,lower_fx,-0.002553400583565235 +karman_re50,ppo,288,115.2,force,lower_fy,-0.0036175113637000322 +karman_re50,ppo,289,115.6,force,front_fx,0.00047074814210645854 +karman_re50,ppo,289,115.6,force,front_fy,-0.0008740726043470204 +karman_re50,ppo,289,115.6,force,upper_fx,0.0015684114769101143 +karman_re50,ppo,289,115.6,force,upper_fy,0.004496599547564983 +karman_re50,ppo,289,115.6,force,lower_fx,-0.0017543386202305555 +karman_re50,ppo,289,115.6,force,lower_fy,-0.003995983395725489 +karman_re50,ppo,290,116.0,force,front_fx,0.00035411983844824135 +karman_re50,ppo,290,116.0,force,front_fy,-0.0015236149774864316 +karman_re50,ppo,290,116.0,force,upper_fx,0.0012443393934518099 +karman_re50,ppo,290,116.0,force,upper_fy,0.004599324893206358 +karman_re50,ppo,290,116.0,force,lower_fx,-0.001103079179301858 +karman_re50,ppo,290,116.0,force,lower_fy,-0.004008946940302849 +karman_re50,ppo,291,116.4,force,front_fx,0.00020249000226613134 +karman_re50,ppo,291,116.4,force,front_fy,-0.001863369019702077 +karman_re50,ppo,291,116.4,force,upper_fx,0.0008469091262668371 +karman_re50,ppo,291,116.4,force,upper_fy,0.004485981538891792 +karman_re50,ppo,291,116.4,force,lower_fx,-0.0006737398216500878 +karman_re50,ppo,291,116.4,force,lower_fy,-0.003763676853850484 +karman_re50,ppo,292,116.8,force,front_fx,5.771536234533414e-05 +karman_re50,ppo,292,116.8,force,front_fy,-0.0019031981937587261 +karman_re50,ppo,292,116.8,force,upper_fx,0.0003710063174366951 +karman_re50,ppo,292,116.8,force,upper_fy,0.00412019481882453 +karman_re50,ppo,292,116.8,force,lower_fx,-0.00035340528120286763 +karman_re50,ppo,292,116.8,force,lower_fy,-0.0033918905537575483 +karman_re50,ppo,293,117.2,force,front_fx,-6.463356112362817e-05 +karman_re50,ppo,293,117.2,force,front_fy,-0.0017521019326522946 +karman_re50,ppo,293,117.2,force,upper_fx,-0.00015017460100352764 +karman_re50,ppo,293,117.2,force,upper_fy,0.0035850449930876493 +karman_re50,ppo,293,117.2,force,lower_fx,-3.0196069928933866e-05 +karman_re50,ppo,293,117.2,force,lower_fy,-0.0030027704779058695 +karman_re50,ppo,294,117.6,force,front_fx,-0.0001767087960615754 +karman_re50,ppo,294,117.6,force,front_fy,-0.0014979830011725426 +karman_re50,ppo,294,117.6,force,upper_fx,-0.0006701509701088071 +karman_re50,ppo,294,117.6,force,upper_fy,0.003035453148186207 +karman_re50,ppo,294,117.6,force,lower_fx,0.0003186529502272606 +karman_re50,ppo,294,117.6,force,lower_fy,-0.0026782876811921597 +karman_re50,ppo,295,118.0,force,front_fx,-0.00028005108470097184 +karman_re50,ppo,295,118.0,force,front_fy,-0.0012145137879997492 +karman_re50,ppo,295,118.0,force,upper_fx,-0.0011187540367245674 +karman_re50,ppo,295,118.0,force,upper_fy,0.0026721367612481117 +karman_re50,ppo,295,118.0,force,lower_fx,0.0006247184355743229 +karman_re50,ppo,295,118.0,force,lower_fy,-0.0024543211329728365 +karman_re50,ppo,296,118.4,force,front_fx,-0.000369774061255157 +karman_re50,ppo,296,118.4,force,front_fy,-0.0009511104435659945 +karman_re50,ppo,296,118.4,force,upper_fx,-0.0013384819030761719 +karman_re50,ppo,296,118.4,force,upper_fy,0.002752923872321844 +karman_re50,ppo,296,118.4,force,lower_fx,0.0007501258514821529 +karman_re50,ppo,296,118.4,force,lower_fy,-0.0023144157603383064 +karman_re50,ppo,297,118.8,force,front_fx,-0.00040955073200166225 +karman_re50,ppo,297,118.8,force,front_fy,-0.0006812468636780977 +karman_re50,ppo,297,118.8,force,upper_fx,-0.0010992852039635181 +karman_re50,ppo,297,118.8,force,upper_fy,0.0033690761774778366 +karman_re50,ppo,297,118.8,force,lower_fx,0.000603329623118043 +karman_re50,ppo,297,118.8,force,lower_fy,-0.0022588251158595085 +karman_re50,ppo,298,119.2,force,front_fx,-0.0002827091084327549 +karman_re50,ppo,298,119.2,force,front_fy,-0.00033912513754330575 +karman_re50,ppo,298,119.2,force,upper_fx,-0.00032571773044764996 +karman_re50,ppo,298,119.2,force,upper_fy,0.0042028059251606464 +karman_re50,ppo,298,119.2,force,lower_fx,0.00016236034571193159 +karman_re50,ppo,298,119.2,force,lower_fy,-0.002321553649380803 +karman_re50,ppo,299,119.6,force,front_fx,0.0002516177773941308 +karman_re50,ppo,299,119.6,force,front_fy,7.348200597334653e-05 +karman_re50,ppo,299,119.6,force,upper_fx,0.0006035358528606594 +karman_re50,ppo,299,119.6,force,upper_fy,0.004762903321534395 +karman_re50,ppo,299,119.6,force,lower_fx,-0.0006059890147298574 +karman_re50,ppo,299,119.6,force,lower_fy,-0.002563703106716275 +karman_re50,ppo,300,120.0,force,front_fx,0.0013079701457172632 +karman_re50,ppo,300,120.0,force,front_fy,0.0005049241008237004 +karman_re50,ppo,300,120.0,force,upper_fx,0.0011325381929054856 +karman_re50,ppo,300,120.0,force,upper_fy,0.004853969439864159 +karman_re50,ppo,300,120.0,force,lower_fx,-0.0015754005871713161 +karman_re50,ppo,300,120.0,force,lower_fy,-0.003008341183885932 +karman_re50,ppo,301,120.4,force,front_fx,0.0024065161123871803 +karman_re50,ppo,301,120.4,force,front_fy,0.0009582609636709094 +karman_re50,ppo,301,120.4,force,upper_fx,0.0012086405185982585 +karman_re50,ppo,301,120.4,force,upper_fy,0.004485718440264463 +karman_re50,ppo,301,120.4,force,lower_fx,-0.0021760629024356604 +karman_re50,ppo,301,120.4,force,lower_fy,-0.003416449762880802 +karman_re50,ppo,302,120.8,force,front_fx,0.002781904535368085 +karman_re50,ppo,302,120.8,force,front_fy,0.0014567828038707376 +karman_re50,ppo,302,120.8,force,upper_fx,0.001282951096072793 +karman_re50,ppo,302,120.8,force,upper_fy,0.004023512359708548 +karman_re50,ppo,302,120.8,force,lower_fx,-0.0021057738922536373 +karman_re50,ppo,302,120.8,force,lower_fy,-0.0033407285809516907 +karman_re50,ppo,303,121.2,force,front_fx,0.0024383466225117445 +karman_re50,ppo,303,121.2,force,front_fy,0.0018563951598480344 +karman_re50,ppo,303,121.2,force,upper_fx,0.001543322461657226 +karman_re50,ppo,303,121.2,force,upper_fy,0.0039121173322200775 +karman_re50,ppo,303,121.2,force,lower_fx,-0.0019390179077163339 +karman_re50,ppo,303,121.2,force,lower_fy,-0.002829161239787936 +karman_re50,ppo,304,121.6,force,front_fx,0.001841599470935762 +karman_re50,ppo,304,121.6,force,front_fy,0.0019662948325276375 +karman_re50,ppo,304,121.6,force,upper_fx,0.0018894096137955785 +karman_re50,ppo,304,121.6,force,upper_fy,0.004022383596748114 +karman_re50,ppo,304,121.6,force,lower_fx,-0.002141669625416398 +karman_re50,ppo,304,121.6,force,lower_fy,-0.00232080090790987 +karman_re50,ppo,305,122.0,force,front_fx,0.0013149024453014135 +karman_re50,ppo,305,122.0,force,front_fy,0.0019103926606476307 +karman_re50,ppo,305,122.0,force,upper_fx,0.002150283893570304 +karman_re50,ppo,305,122.0,force,upper_fy,0.004131853114813566 +karman_re50,ppo,305,122.0,force,lower_fx,-0.0026095109060406685 +karman_re50,ppo,305,122.0,force,lower_fy,-0.0019990087021142244 +karman_re50,ppo,306,122.4,force,front_fx,0.0008962936699390411 +karman_re50,ppo,306,122.4,force,front_fy,0.0018205519299954176 +karman_re50,ppo,306,122.4,force,upper_fx,0.00229837279766798 +karman_re50,ppo,306,122.4,force,upper_fy,0.00420759804546833 +karman_re50,ppo,306,122.4,force,lower_fx,-0.0030766711570322514 +karman_re50,ppo,306,122.4,force,lower_fy,-0.0018475571414455771 +karman_re50,ppo,307,122.8,force,front_fx,0.0005763412336818874 +karman_re50,ppo,307,122.8,force,front_fy,0.001698512933216989 +karman_re50,ppo,307,122.8,force,upper_fx,0.00236326246522367 +karman_re50,ppo,307,122.8,force,upper_fy,0.004276664461940527 +karman_re50,ppo,307,122.8,force,lower_fx,-0.003437087871134281 +karman_re50,ppo,307,122.8,force,lower_fy,-0.0018693377496674657 +karman_re50,ppo,308,123.2,force,front_fx,0.0004341129679232836 +karman_re50,ppo,308,123.2,force,front_fy,0.0014392707962542772 +karman_re50,ppo,308,123.2,force,upper_fx,0.002320458646863699 +karman_re50,ppo,308,123.2,force,upper_fy,0.004304428584873676 +karman_re50,ppo,308,123.2,force,lower_fx,-0.0036169623490422964 +karman_re50,ppo,308,123.2,force,lower_fy,-0.002131742425262928 +karman_re50,ppo,309,123.6,force,front_fx,0.00045499985571950674 +karman_re50,ppo,309,123.6,force,front_fy,0.0009750127210281789 +karman_re50,ppo,309,123.6,force,upper_fx,0.002143754856660962 +karman_re50,ppo,309,123.6,force,upper_fy,0.004314333666115999 +karman_re50,ppo,309,123.6,force,lower_fx,-0.0034693051129579544 +karman_re50,ppo,309,123.6,force,lower_fy,-0.0026985194999724627 +karman_re50,ppo,310,124.0,force,front_fx,0.0005154650425538421 +karman_re50,ppo,310,124.0,force,front_fy,0.0003036512352991849 +karman_re50,ppo,310,124.0,force,upper_fx,0.0018748012371361256 +karman_re50,ppo,310,124.0,force,upper_fy,0.00440260348841548 +karman_re50,ppo,310,124.0,force,lower_fx,-0.0028750065248459578 +karman_re50,ppo,310,124.0,force,lower_fy,-0.003435458755120635 +karman_re50,ppo,311,124.4,force,front_fx,0.0005066223675385118 +karman_re50,ppo,311,124.4,force,front_fy,-0.0005063230055384338 +karman_re50,ppo,311,124.4,force,upper_fx,0.0015754869673401117 +karman_re50,ppo,311,124.4,force,upper_fy,0.0045688701793551445 +karman_re50,ppo,311,124.4,force,lower_fx,-0.0019956219475716352 +karman_re50,ppo,311,124.4,force,lower_fy,-0.003983806818723679 +karman_re50,ppo,312,124.8,force,front_fx,0.00040997660835273564 +karman_re50,ppo,312,124.8,force,front_fy,-0.0012437085388228297 +karman_re50,ppo,312,124.8,force,upper_fx,0.0012413717340677977 +karman_re50,ppo,312,124.8,force,upper_fy,0.004697551019489765 +karman_re50,ppo,312,124.8,force,lower_fx,-0.0011837499914690852 +karman_re50,ppo,312,124.8,force,lower_fy,-0.004095688462257385 +karman_re50,ppo,313,125.2,force,front_fx,0.00026860571233555675 +karman_re50,ppo,313,125.2,force,front_fy,-0.0016977610066533089 +karman_re50,ppo,313,125.2,force,upper_fx,0.0008359827916137874 +karman_re50,ppo,313,125.2,force,upper_fy,0.004618474747985601 +karman_re50,ppo,313,125.2,force,lower_fx,-0.000636380456853658 +karman_re50,ppo,313,125.2,force,lower_fy,-0.0038735135458409786 +karman_re50,ppo,314,125.6,force,front_fx,0.00012775372306350619 +karman_re50,ppo,314,125.6,force,front_fy,-0.001823072787374258 +karman_re50,ppo,314,125.6,force,upper_fx,0.0003413440426811576 +karman_re50,ppo,314,125.6,force,upper_fy,0.00426438357681036 +karman_re50,ppo,314,125.6,force,lower_fx,-0.00026663803146220744 +karman_re50,ppo,314,125.6,force,lower_fy,-0.00349977589212358 +karman_re50,ppo,315,126.0,force,front_fx,1.0464975275681354e-05 +karman_re50,ppo,315,126.0,force,front_fy,-0.0017242446774616838 +karman_re50,ppo,315,126.0,force,upper_fx,-0.00021762013784609735 +karman_re50,ppo,315,126.0,force,upper_fy,0.0037125395610928535 +karman_re50,ppo,315,126.0,force,lower_fx,6.444015161832795e-05 +karman_re50,ppo,315,126.0,force,lower_fy,-0.003087277989834547 +karman_re50,ppo,316,126.4,force,front_fx,-8.954667282523587e-05 +karman_re50,ppo,316,126.4,force,front_fy,-0.0015083880862221122 +karman_re50,ppo,316,126.4,force,upper_fx,-0.0007835115538910031 +karman_re50,ppo,316,126.4,force,upper_fy,0.0031291872728616 +karman_re50,ppo,316,126.4,force,lower_fx,0.00039913467480801046 +karman_re50,ppo,316,126.4,force,lower_fy,-0.002724107587710023 +karman_re50,ppo,317,126.8,force,front_fx,-0.00017158195259980857 +karman_re50,ppo,317,126.8,force,front_fy,-0.0012439124984666705 +karman_re50,ppo,317,126.8,force,upper_fx,-0.001286670914851129 +karman_re50,ppo,317,126.8,force,upper_fy,0.0027066355105489492 +karman_re50,ppo,317,126.8,force,lower_fx,0.0007032567518763244 +karman_re50,ppo,317,126.8,force,lower_fy,-0.0024650157429277897 +karman_re50,ppo,318,127.2,force,front_fx,-0.00025567456032149494 +karman_re50,ppo,318,127.2,force,front_fy,-0.0010005772346630692 +karman_re50,ppo,318,127.2,force,upper_fx,-0.0015904270112514496 +karman_re50,ppo,318,127.2,force,upper_fy,0.002681282116100192 +karman_re50,ppo,318,127.2,force,lower_fx,0.0008521794807165861 +karman_re50,ppo,318,127.2,force,lower_fy,-0.0023212807718664408 +karman_re50,ppo,319,127.6,force,front_fx,-0.0003248068387620151 +karman_re50,ppo,319,127.6,force,front_fy,-0.0007551576709374785 +karman_re50,ppo,319,127.6,force,upper_fx,-0.0014781288336962461 +karman_re50,ppo,319,127.6,force,upper_fy,0.0032006404362618923 +karman_re50,ppo,319,127.6,force,lower_fx,0.0007678863476030529 +karman_re50,ppo,319,127.6,force,lower_fy,-0.002259237226098776 +karman_re50,ppo,320,128.0,force,front_fx,-0.00030837050871923566 +karman_re50,ppo,320,128.0,force,front_fy,-0.0004360704915598035 +karman_re50,ppo,320,128.0,force,upper_fx,-0.0007976451306603849 +karman_re50,ppo,320,128.0,force,upper_fy,0.004029619507491589 +karman_re50,ppo,320,128.0,force,lower_fx,0.0004331468662712723 +karman_re50,ppo,320,128.0,force,lower_fy,-0.002293617697432637 +karman_re50,ppo,321,128.4,force,front_fx,4.2287231849513773e-07 +karman_re50,ppo,321,128.4,force,front_fy,-2.253865750390105e-05 +karman_re50,ppo,321,128.4,force,upper_fx,0.00019164278637617826 +karman_re50,ppo,321,128.4,force,upper_fy,0.0046601626090705395 +karman_re50,ppo,321,128.4,force,lower_fx,-0.0001816874137148261 +karman_re50,ppo,321,128.4,force,lower_fy,-0.0024662776850163937 +karman_re50,ppo,322,128.8,force,front_fx,0.0008145688334479928 +karman_re50,ppo,322,128.8,force,front_fy,0.00040568114491179585 +karman_re50,ppo,322,128.8,force,upper_fx,0.0009176376624964178 +karman_re50,ppo,322,128.8,force,upper_fy,0.0048654344864189625 +karman_re50,ppo,322,128.8,force,lower_fx,-0.001086392905563116 +karman_re50,ppo,322,128.8,force,lower_fy,-0.0028371335938572884 +karman_re50,ppo,323,129.2,force,front_fx,0.0019326561596244574 +karman_re50,ppo,323,129.2,force,front_fy,0.0008324045920744538 +karman_re50,ppo,323,129.2,force,upper_fx,0.00112587318290025 +karman_re50,ppo,323,129.2,force,upper_fy,0.004682464990764856 +karman_re50,ppo,323,129.2,force,lower_fx,-0.0019033659482374787 +karman_re50,ppo,323,129.2,force,lower_fy,-0.0032853439915925264 +karman_re50,ppo,324,129.6,force,front_fx,0.002616438316181302 +karman_re50,ppo,324,129.6,force,front_fy,0.001288807950913906 +karman_re50,ppo,324,129.6,force,upper_fx,0.0011676280992105603 +karman_re50,ppo,324,129.6,force,upper_fy,0.004238256718963385 +karman_re50,ppo,324,129.6,force,lower_fx,-0.002113994909450412 +karman_re50,ppo,324,129.6,force,lower_fy,-0.003417480969801545 +karman_re50,ppo,325,130.0,force,front_fx,0.0025141278747469187 +karman_re50,ppo,325,130.0,force,front_fy,0.0017285851063206792 +karman_re50,ppo,325,130.0,force,upper_fx,0.0013757690321654081 +karman_re50,ppo,325,130.0,force,upper_fy,0.003996908199042082 +karman_re50,ppo,325,130.0,force,lower_fx,-0.001961879199370742 +karman_re50,ppo,325,130.0,force,lower_fy,-0.003035662230104208 +karman_re50,ppo,326,130.4,force,front_fx,0.001978467684239149 +karman_re50,ppo,326,130.4,force,front_fy,0.0019233954371884465 +karman_re50,ppo,326,130.4,force,upper_fx,0.0017298911698162556 +karman_re50,ppo,326,130.4,force,upper_fy,0.0040489560924470425 +karman_re50,ppo,326,130.4,force,lower_fx,-0.0020419033244252205 +karman_re50,ppo,326,130.4,force,lower_fy,-0.002492723520845175 +karman_re50,ppo,327,130.8,force,front_fx,0.0014149039052426815 +karman_re50,ppo,327,130.8,force,front_fy,0.0018966214265674353 +karman_re50,ppo,327,130.8,force,upper_fx,0.0020454523619264364 +karman_re50,ppo,327,130.8,force,upper_fy,0.004152395762503147 +karman_re50,ppo,327,130.8,force,lower_fx,-0.0024450120981782675 +karman_re50,ppo,327,130.8,force,lower_fy,-0.00209800829179585 +karman_re50,ppo,328,131.2,force,front_fx,0.0009606495732441545 +karman_re50,ppo,328,131.2,force,front_fy,0.0018365823198109865 +karman_re50,ppo,328,131.2,force,upper_fx,0.002217043424025178 +karman_re50,ppo,328,131.2,force,upper_fy,0.004205896984785795 +karman_re50,ppo,328,131.2,force,lower_fx,-0.0029135800432413816 +karman_re50,ppo,328,131.2,force,lower_fy,-0.0019054063595831394 +karman_re50,ppo,329,131.6,force,front_fx,0.0005979178822599351 +karman_re50,ppo,329,131.6,force,front_fy,0.0017705756472423673 +karman_re50,ppo,329,131.6,force,upper_fx,0.0022764941677451134 +karman_re50,ppo,329,131.6,force,upper_fy,0.004247260745614767 +karman_re50,ppo,329,131.6,force,lower_fx,-0.0032788056414574385 +karman_re50,ppo,329,131.6,force,lower_fy,-0.001914702937938273 +karman_re50,ppo,330,132.0,force,front_fx,0.00038030228461138904 +karman_re50,ppo,330,132.0,force,front_fy,0.001590023166500032 +karman_re50,ppo,330,132.0,force,upper_fx,0.0022362726740539074 +karman_re50,ppo,330,132.0,force,upper_fy,0.00427258713170886 +karman_re50,ppo,330,132.0,force,lower_fx,-0.0034702240955084562 +karman_re50,ppo,330,132.0,force,lower_fy,-0.0021566248033195734 +karman_re50,ppo,331,132.4,force,front_fx,0.0003383664006832987 +karman_re50,ppo,331,132.4,force,front_fy,0.0011999817797914147 +karman_re50,ppo,331,132.4,force,upper_fx,0.0020740064792335033 +karman_re50,ppo,331,132.4,force,upper_fy,0.004261866211891174 +karman_re50,ppo,331,132.4,force,lower_fx,-0.0033725323155522346 +karman_re50,ppo,331,132.4,force,lower_fy,-0.0026872465386986732 +karman_re50,ppo,332,132.8,force,front_fx,0.000386816420359537 +karman_re50,ppo,332,132.8,force,front_fy,0.0005877407384105027 +karman_re50,ppo,332,132.8,force,upper_fx,0.0017987698083743453 +karman_re50,ppo,332,132.8,force,upper_fy,0.004288146737962961 +karman_re50,ppo,332,132.8,force,lower_fx,-0.0028327270410954952 +karman_re50,ppo,332,132.8,force,lower_fy,-0.003403216600418091 +karman_re50,ppo,333,133.2,force,front_fx,0.000412617257097736 +karman_re50,ppo,333,133.2,force,front_fy,-0.00019544198585208505 +karman_re50,ppo,333,133.2,force,upper_fx,0.0014611704973503947 +karman_re50,ppo,333,133.2,force,upper_fy,0.004385772161185741 +karman_re50,ppo,333,133.2,force,lower_fx,-0.0019380132434889674 +karman_re50,ppo,333,133.2,force,lower_fy,-0.003995134960860014 +karman_re50,ppo,334,133.6,force,front_fx,0.00037787019391544163 +karman_re50,ppo,334,133.6,force,front_fy,-0.0009692793246358633 +karman_re50,ppo,334,133.6,force,upper_fx,0.001075752661563456 +karman_re50,ppo,334,133.6,force,upper_fy,0.00448464322835207 +karman_re50,ppo,334,133.6,force,lower_fx,-0.0010494287125766277 +karman_re50,ppo,334,133.6,force,lower_fy,-0.004166414495557547 +karman_re50,ppo,335,134.0,force,front_fx,0.0003037775750271976 +karman_re50,ppo,335,134.0,force,front_fy,-0.0015043020248413086 +karman_re50,ppo,335,134.0,force,upper_fx,0.000614908232819289 +karman_re50,ppo,335,134.0,force,upper_fy,0.004446284379810095 +karman_re50,ppo,335,134.0,force,lower_fx,-0.0004479327180888504 +karman_re50,ppo,335,134.0,force,lower_fy,-0.003978317603468895 +karman_re50,ppo,336,134.4,force,front_fx,0.00022904528304934502 +karman_re50,ppo,336,134.4,force,front_fy,-0.001714165322482586 +karman_re50,ppo,336,134.4,force,upper_fx,8.050085307331756e-05 +karman_re50,ppo,336,134.4,force,upper_fy,0.004186410456895828 +karman_re50,ppo,336,134.4,force,lower_fx,-9.957754809875041e-05 +karman_re50,ppo,336,134.4,force,lower_fy,-0.003631108207628131 +karman_re50,ppo,337,134.8,force,front_fx,0.0001700587890809402 +karman_re50,ppo,337,134.8,force,front_fy,-0.0016841868637129664 +karman_re50,ppo,337,134.8,force,upper_fx,-0.0004925711546093225 +karman_re50,ppo,337,134.8,force,upper_fy,0.0037558702751994133 +karman_re50,ppo,337,134.8,force,lower_fx,0.00015892089868430048 +karman_re50,ppo,337,134.8,force,lower_fy,-0.0032417934853583574 +karman_re50,ppo,338,135.2,force,front_fx,0.00011510578042361885 +karman_re50,ppo,338,135.2,force,front_fy,-0.0015266627306118608 +karman_re50,ppo,338,135.2,force,upper_fx,-0.0010355347767472267 +karman_re50,ppo,338,135.2,force,upper_fy,0.003285004524514079 +karman_re50,ppo,338,135.2,force,lower_fx,0.0004125079431105405 +karman_re50,ppo,338,135.2,force,lower_fy,-0.0028927430976182222 +karman_re50,ppo,339,135.6,force,front_fx,4.614532008417882e-05 +karman_re50,ppo,339,135.6,force,front_fy,-0.001311744563281536 +karman_re50,ppo,339,135.6,force,upper_fx,-0.00148934090975672 +karman_re50,ppo,339,135.6,force,upper_fy,0.0029180857818573713 +karman_re50,ppo,339,135.6,force,lower_fx,0.0006652094307355583 +karman_re50,ppo,339,135.6,force,lower_fy,-0.0026441672816872597 +karman_re50,ppo,340,136.0,force,front_fx,-5.918660099268891e-05 +karman_re50,ppo,340,136.0,force,front_fy,-0.0010650750482454896 +karman_re50,ppo,340,136.0,force,upper_fx,-0.001763815525919199 +karman_re50,ppo,340,136.0,force,upper_fy,0.002818220527842641 +karman_re50,ppo,340,136.0,force,lower_fx,0.000843329937197268 +karman_re50,ppo,340,136.0,force,lower_fy,-0.002502433257177472 +karman_re50,ppo,341,136.4,force,front_fx,-0.00018527665815781802 +karman_re50,ppo,341,136.4,force,front_fy,-0.0008223386248573661 +karman_re50,ppo,341,136.4,force,upper_fx,-0.001704483525827527 +karman_re50,ppo,341,136.4,force,upper_fy,0.0031487559899687767 +karman_re50,ppo,341,136.4,force,lower_fx,0.0008500915137119591 +karman_re50,ppo,341,136.4,force,lower_fy,-0.0024233937729150057 +karman_re50,ppo,342,136.8,force,front_fx,-0.0002691116533242166 +karman_re50,ppo,342,136.8,force,front_fy,-0.000524591829162091 +karman_re50,ppo,342,136.8,force,upper_fx,-0.0011476678773760796 +karman_re50,ppo,342,136.8,force,upper_fy,0.0038308885414153337 +karman_re50,ppo,342,136.8,force,lower_fx,0.0006280892994254827 +karman_re50,ppo,342,136.8,force,lower_fy,-0.002423972589895129 +karman_re50,ppo,343,137.2,force,front_fx,-0.0001333201362285763 +karman_re50,ppo,343,137.2,force,front_fy,-0.00013465667143464088 +karman_re50,ppo,343,137.2,force,upper_fx,-0.00019928418623749167 +karman_re50,ppo,343,137.2,force,upper_fy,0.004483526572585106 +karman_re50,ppo,343,137.2,force,lower_fx,0.00015347774024121463 +karman_re50,ppo,343,137.2,force,lower_fy,-0.0025288728065788746 +karman_re50,ppo,344,137.6,force,front_fx,0.00046042256872169673 +karman_re50,ppo,344,137.6,force,front_fy,0.0002855908533092588 +karman_re50,ppo,344,137.6,force,upper_fx,0.0006636737380176783 +karman_re50,ppo,344,137.6,force,upper_fy,0.004802254028618336 +karman_re50,ppo,344,137.6,force,lower_fx,-0.0006345258443616331 +karman_re50,ppo,344,137.6,force,lower_fy,-0.0028107946272939444 +karman_re50,ppo,345,138.0,force,front_fx,0.0014900347450748086 +karman_re50,ppo,345,138.0,force,front_fy,0.0006996782030910254 +karman_re50,ppo,345,138.0,force,upper_fx,0.0010404486674815416 +karman_re50,ppo,345,138.0,force,upper_fy,0.004760312847793102 +karman_re50,ppo,345,138.0,force,lower_fx,-0.0015305024571716785 +karman_re50,ppo,345,138.0,force,lower_fy,-0.003240237245336175 +karman_re50,ppo,346,138.4,force,front_fx,0.002377800177782774 +karman_re50,ppo,346,138.4,force,front_fy,0.001129035372287035 +karman_re50,ppo,346,138.4,force,upper_fx,0.0010791041422635317 +karman_re50,ppo,346,138.4,force,upper_fy,0.004379468038678169 +karman_re50,ppo,346,138.4,force,lower_fx,-0.0019947669934481382 +karman_re50,ppo,346,138.4,force,lower_fy,-0.0035269316285848618 +karman_re50,ppo,347,138.8,force,front_fx,0.0025358230341225863 +karman_re50,ppo,347,138.8,force,front_fy,0.0015765592688694596 +karman_re50,ppo,347,138.8,force,upper_fx,0.001197764533571899 +karman_re50,ppo,347,138.8,force,upper_fy,0.00402276823297143 +karman_re50,ppo,347,138.8,force,lower_fx,-0.001933872583322227 +karman_re50,ppo,347,138.8,force,lower_fy,-0.003328208113089204 +karman_re50,ppo,348,139.2,force,front_fx,0.002108293352648616 +karman_re50,ppo,348,139.2,force,front_fy,0.0018667904660105705 +karman_re50,ppo,348,139.2,force,upper_fx,0.001493813586421311 +karman_re50,ppo,348,139.2,force,upper_fy,0.003979734610766172 +karman_re50,ppo,348,139.2,force,lower_fx,-0.0019109846325591207 +karman_re50,ppo,348,139.2,force,lower_fy,-0.0028283167630434036 +karman_re50,ppo,349,139.6,force,front_fx,0.0015370405744761229 +karman_re50,ppo,349,139.6,force,front_fy,0.0019100707722827792 +karman_re50,ppo,349,139.6,force,upper_fx,0.001827854779548943 +karman_re50,ppo,349,139.6,force,upper_fy,0.004069202113896608 +karman_re50,ppo,349,139.6,force,lower_fx,-0.0022014242131263018 +karman_re50,ppo,349,139.6,force,lower_fy,-0.0024049226194620132 +karman_re50,ppo,350,140.0,force,front_fx,0.0010539963841438293 +karman_re50,ppo,350,140.0,force,front_fy,0.0018720085499808192 +karman_re50,ppo,350,140.0,force,upper_fx,0.002049872651696205 +karman_re50,ppo,350,140.0,force,upper_fy,0.004129667766392231 +karman_re50,ppo,350,140.0,force,lower_fx,-0.0026352235581725836 +karman_re50,ppo,350,140.0,force,lower_fy,-0.0021798170637339354 +karman_re50,ppo,351,140.4,force,front_fx,0.000663441838696599 +karman_re50,ppo,351,140.4,force,front_fy,0.001797705888748169 +karman_re50,ppo,351,140.4,force,upper_fx,0.002165623242035508 +karman_re50,ppo,351,140.4,force,upper_fy,0.004166940227150917 +karman_re50,ppo,351,140.4,force,lower_fx,-0.0030124771874397993 +karman_re50,ppo,351,140.4,force,lower_fy,-0.002137301955372095 +karman_re50,ppo,352,140.8,force,front_fx,0.0003893589600920677 +karman_re50,ppo,352,140.8,force,front_fy,0.0016420588362962008 +karman_re50,ppo,352,140.8,force,upper_fx,0.0021991811227053404 +karman_re50,ppo,352,140.8,force,upper_fy,0.004196811001747847 +karman_re50,ppo,352,140.8,force,lower_fx,-0.0032599670812487602 +karman_re50,ppo,352,140.8,force,lower_fy,-0.002271943725645542 +karman_re50,ppo,353,141.2,force,front_fx,0.0002851788594853133 +karman_re50,ppo,353,141.2,force,front_fy,0.0012983952183276415 +karman_re50,ppo,353,141.2,force,upper_fx,0.0021230659913271666 +karman_re50,ppo,353,141.2,force,upper_fy,0.004182719625532627 +karman_re50,ppo,353,141.2,force,lower_fx,-0.003284913022071123 +karman_re50,ppo,353,141.2,force,lower_fy,-0.0026234083343297243 +karman_re50,ppo,354,141.6,force,front_fx,0.00032391943386755884 +karman_re50,ppo,354,141.6,force,front_fy,0.0007406127406284213 +karman_re50,ppo,354,141.6,force,upper_fx,0.0019165602279826999 +karman_re50,ppo,354,141.6,force,upper_fy,0.004169193096458912 +karman_re50,ppo,354,141.6,force,lower_fx,-0.00294226105324924 +karman_re50,ppo,354,141.6,force,lower_fy,-0.003194107674062252 +karman_re50,ppo,355,142.0,force,front_fx,0.0003801964339800179 +karman_re50,ppo,355,142.0,force,front_fy,8.511437044944614e-06 +karman_re50,ppo,355,142.0,force,upper_fx,0.0016175397904589772 +karman_re50,ppo,355,142.0,force,upper_fy,0.0042283423244953156 +karman_re50,ppo,355,142.0,force,lower_fx,-0.0022088594269007444 +karman_re50,ppo,355,142.0,force,lower_fy,-0.003789059817790985 +karman_re50,ppo,356,142.4,force,front_fx,0.0003783692664001137 +karman_re50,ppo,356,142.4,force,front_fy,-0.0007847113301977515 +karman_re50,ppo,356,142.4,force,upper_fx,0.001267634448595345 +karman_re50,ppo,356,142.4,force,upper_fy,0.004336552694439888 +karman_re50,ppo,356,142.4,force,lower_fx,-0.0013535034377127886 +karman_re50,ppo,356,142.4,force,lower_fy,-0.004101852420717478 +karman_re50,ppo,357,142.8,force,front_fx,0.00031706615118309855 +karman_re50,ppo,357,142.8,force,front_fy,-0.001415326725691557 +karman_re50,ppo,357,142.8,force,upper_fx,0.0008522426360286772 +karman_re50,ppo,357,142.8,force,upper_fy,0.0043846420012414455 +karman_re50,ppo,357,142.8,force,lower_fx,-0.0006965177599340677 +karman_re50,ppo,357,142.8,force,lower_fy,-0.004044577945023775 +karman_re50,ppo,358,143.2,force,front_fx,0.00023897126084193587 +karman_re50,ppo,358,143.2,force,front_fy,-0.0017389972927048802 +karman_re50,ppo,358,143.2,force,upper_fx,0.00036778670619241893 +karman_re50,ppo,358,143.2,force,upper_fy,0.004255601670593023 +karman_re50,ppo,358,143.2,force,lower_fx,-0.0003131432749796659 +karman_re50,ppo,358,143.2,force,lower_fy,-0.0037685974966734648 +karman_re50,ppo,359,143.6,force,front_fx,0.00017056154320016503 +karman_re50,ppo,359,143.6,force,front_fy,-0.0017822309164330363 +karman_re50,ppo,359,143.6,force,upper_fx,-0.00016189349116757512 +karman_re50,ppo,359,143.6,force,upper_fy,0.003933729603886604 +karman_re50,ppo,359,143.6,force,lower_fx,-5.799488280899823e-05 +karman_re50,ppo,359,143.6,force,lower_fy,-0.003401582594960928 +karman_re50,ppo,360,144.0,force,front_fx,0.0001094350591301918 +karman_re50,ppo,360,144.0,force,front_fy,-0.001658487948589027 +karman_re50,ppo,360,144.0,force,upper_fx,-0.0006807225290685892 +karman_re50,ppo,360,144.0,force,upper_fy,0.003502926789224148 +karman_re50,ppo,360,144.0,force,lower_fx,0.0001801650068955496 +karman_re50,ppo,360,144.0,force,lower_fy,-0.0030480779241770506 +karman_re50,ppo,361,144.4,force,front_fx,3.297710281913169e-05 +karman_re50,ppo,361,144.4,force,front_fy,-0.0014404432149603963 +karman_re50,ppo,361,144.4,force,upper_fx,-0.0011411827290430665 +karman_re50,ppo,361,144.4,force,upper_fy,0.003088749013841152 +karman_re50,ppo,361,144.4,force,lower_fx,0.0004488647391553968 +karman_re50,ppo,361,144.4,force,lower_fy,-0.0027686648536473513 +karman_re50,ppo,362,144.8,force,front_fx,-7.158378866733983e-05 +karman_re50,ppo,362,144.8,force,front_fy,-0.0011835884070023894 +karman_re50,ppo,362,144.8,force,upper_fx,-0.0014842473901808262 +karman_re50,ppo,362,144.8,force,upper_fy,0.002836215775460005 +karman_re50,ppo,362,144.8,force,lower_fx,0.0006943505140952766 +karman_re50,ppo,362,144.8,force,lower_fy,-0.002586944028735161 +karman_re50,ppo,363,145.2,force,front_fx,-0.00019837627769447863 +karman_re50,ppo,363,145.2,force,front_fy,-0.0009284037514589727 +karman_re50,ppo,363,145.2,force,upper_fx,-0.001586080645211041 +karman_re50,ppo,363,145.2,force,upper_fy,0.002942979335784912 +karman_re50,ppo,363,145.2,force,lower_fx,0.0008002966642379761 +karman_re50,ppo,363,145.2,force,lower_fy,-0.002475394867360592 +karman_re50,ppo,364,145.6,force,front_fx,-0.00030494204838760197 +karman_re50,ppo,364,145.6,force,front_fy,-0.000653125811368227 +karman_re50,ppo,364,145.6,force,upper_fx,-0.0012622261419892311 +karman_re50,ppo,364,145.6,force,upper_fy,0.003491063369438052 +karman_re50,ppo,364,145.6,force,lower_fx,0.0006795422523282468 +karman_re50,ppo,364,145.6,force,lower_fy,-0.002424746286123991 +karman_re50,ppo,365,146.0,force,front_fx,-0.00024678994668647647 +karman_re50,ppo,365,146.0,force,front_fy,-0.00030439364491030574 +karman_re50,ppo,365,146.0,force,upper_fx,-0.0004572198959067464 +karman_re50,ppo,365,146.0,force,upper_fy,0.004224235657602549 +karman_re50,ppo,365,146.0,force,lower_fx,0.0002886221627704799 +karman_re50,ppo,365,146.0,force,lower_fy,-0.0024756770581007004 +karman_re50,ppo,366,146.4,force,front_fx,0.00020823995873797685 +karman_re50,ppo,366,146.4,force,front_fy,0.00010194267088081688 +karman_re50,ppo,366,146.4,force,upper_fx,0.000481535418657586 +karman_re50,ppo,366,146.4,force,upper_fy,0.0047279223799705505 +karman_re50,ppo,366,146.4,force,lower_fx,-0.00041820414480753243 +karman_re50,ppo,366,146.4,force,lower_fy,-0.00269096321426332 +karman_re50,ppo,367,146.8,force,front_fx,0.0011767185060307384 +karman_re50,ppo,367,146.8,force,front_fy,0.0005215588607825339 +karman_re50,ppo,367,146.8,force,upper_fx,0.0010370302479714155 +karman_re50,ppo,367,146.8,force,upper_fy,0.004826297517865896 +karman_re50,ppo,367,146.8,force,lower_fx,-0.0013506446266546845 +karman_re50,ppo,367,146.8,force,lower_fy,-0.0031007665675133467 +karman_re50,ppo,368,147.2,force,front_fx,0.0022344139870256186 +karman_re50,ppo,368,147.2,force,front_fy,0.0009576143929734826 +karman_re50,ppo,368,147.2,force,upper_fx,0.0011268911184743047 +karman_re50,ppo,368,147.2,force,upper_fy,0.004504322074353695 +karman_re50,ppo,368,147.2,force,lower_fx,-0.001995900645852089 +karman_re50,ppo,368,147.2,force,lower_fy,-0.003501401748508215 +karman_re50,ppo,369,147.6,force,front_fx,0.0026484448462724686 +karman_re50,ppo,369,147.6,force,front_fy,0.0014251351822167635 +karman_re50,ppo,369,147.6,force,upper_fx,0.0011772329453378916 +karman_re50,ppo,369,147.6,force,upper_fy,0.004051520489156246 +karman_re50,ppo,369,147.6,force,lower_fx,-0.002017317106947303 +karman_re50,ppo,369,147.6,force,lower_fy,-0.0034745396114885807 +karman_re50,ppo,370,148.0,force,front_fx,0.002355972770601511 +karman_re50,ppo,370,148.0,force,front_fy,0.0018125277711078525 +karman_re50,ppo,370,148.0,force,upper_fx,0.0014092936180531979 +karman_re50,ppo,370,148.0,force,upper_fy,0.003907965961843729 +karman_re50,ppo,370,148.0,force,lower_fx,-0.0018857753602787852 +karman_re50,ppo,370,148.0,force,lower_fy,-0.0030143377371132374 +karman_re50,ppo,371,148.4,force,front_fx,0.0017887772992253304 +karman_re50,ppo,371,148.4,force,front_fy,0.0019421274773776531 +karman_re50,ppo,371,148.4,force,upper_fx,0.0017410137224942446 +karman_re50,ppo,371,148.4,force,upper_fy,0.003989845979958773 +karman_re50,ppo,371,148.4,force,lower_fx,-0.0020619623828679323 +karman_re50,ppo,371,148.4,force,lower_fy,-0.002536660758778453 +karman_re50,ppo,372,148.8,force,front_fx,0.0012673252495005727 +karman_re50,ppo,372,148.8,force,front_fy,0.0019096923060715199 +karman_re50,ppo,372,148.8,force,upper_fx,0.0020051314495503902 +karman_re50,ppo,372,148.8,force,upper_fy,0.004081356339156628 +karman_re50,ppo,372,148.8,force,lower_fx,-0.0024810321629047394 +karman_re50,ppo,372,148.8,force,lower_fy,-0.0022444073110818863 +karman_re50,ppo,373,149.2,force,front_fx,0.0008428037981502712 +karman_re50,ppo,373,149.2,force,front_fy,0.0018294714391231537 +karman_re50,ppo,373,149.2,force,upper_fx,0.002169557847082615 +karman_re50,ppo,373,149.2,force,upper_fy,0.004143774975091219 +karman_re50,ppo,373,149.2,force,lower_fx,-0.0029095944482833147 +karman_re50,ppo,373,149.2,force,lower_fy,-0.002121307887136936 +karman_re50,ppo,374,149.6,force,front_fx,0.0005223613115958869 +karman_re50,ppo,374,149.6,force,front_fy,0.0016875001601874828 +karman_re50,ppo,374,149.6,force,upper_fx,0.0022642957046628 +karman_re50,ppo,374,149.6,force,upper_fy,0.004199298098683357 +karman_re50,ppo,374,149.6,force,lower_fx,-0.003245544619858265 +karman_re50,ppo,374,149.6,force,lower_fy,-0.0021412333007901907 +karman_re50,ppo,375,150.0,force,front_fx,0.00037059502210468054 +karman_re50,ppo,375,150.0,force,front_fy,0.0014011225430294871 +karman_re50,ppo,375,150.0,force,upper_fx,0.002262638183310628 +karman_re50,ppo,375,150.0,force,upper_fy,0.0042142788879573345 +karman_re50,ppo,375,150.0,force,lower_fx,-0.003419613465666771 +karman_re50,ppo,375,150.0,force,lower_fy,-0.002351155038923025 +karman_re50,ppo,376,150.4,force,front_fx,0.00037928708479739726 +karman_re50,ppo,376,150.4,force,front_fy,0.00091946916654706 +karman_re50,ppo,376,150.4,force,upper_fx,0.0021287172567099333 +karman_re50,ppo,376,150.4,force,upper_fy,0.004206880461424589 +karman_re50,ppo,376,150.4,force,lower_fx,-0.0032941163517534733 +karman_re50,ppo,376,150.4,force,lower_fy,-0.002815475221723318 +karman_re50,ppo,377,150.8,force,front_fx,0.00045884723658673465 +karman_re50,ppo,377,150.8,force,front_fy,0.0002575606922619045 +karman_re50,ppo,377,150.8,force,upper_fx,0.0018863017903640866 +karman_re50,ppo,377,150.8,force,upper_fy,0.004269295837730169 +karman_re50,ppo,377,150.8,force,lower_fx,-0.002759265713393688 +karman_re50,ppo,377,150.8,force,lower_fy,-0.0034469207748770714 +karman_re50,ppo,378,151.2,force,front_fx,0.00046883654431439936 +karman_re50,ppo,378,151.2,force,front_fy,-0.0005466641741804779 +karman_re50,ppo,378,151.2,force,upper_fx,0.0015999540919438004 +karman_re50,ppo,378,151.2,force,upper_fy,0.004415327683091164 +karman_re50,ppo,378,151.2,force,lower_fx,-0.0019520370988175273 +karman_re50,ppo,378,151.2,force,lower_fy,-0.003944546449929476 +karman_re50,ppo,379,151.6,force,front_fx,0.0003896264242939651 +karman_re50,ppo,379,151.6,force,front_fy,-0.0012784280115738511 +karman_re50,ppo,379,151.6,force,upper_fx,0.0012729469453915954 +karman_re50,ppo,379,151.6,force,upper_fy,0.004546787589788437 +karman_re50,ppo,379,151.6,force,lower_fx,-0.0012077286373823881 +karman_re50,ppo,379,151.6,force,lower_fy,-0.004070508759468794 +karman_re50,ppo,380,152.0,force,front_fx,0.00026060439995490015 +karman_re50,ppo,380,152.0,force,front_fy,-0.0017391566652804613 +karman_re50,ppo,380,152.0,force,upper_fx,0.0008786543621681631 +karman_re50,ppo,380,152.0,force,upper_fy,0.004508370067924261 +karman_re50,ppo,380,152.0,force,lower_fx,-0.0007027187384665012 +karman_re50,ppo,380,152.0,force,lower_fy,-0.0038822803180664778 +karman_re50,ppo,381,152.4,force,front_fx,0.0001295545371249318 +karman_re50,ppo,381,152.4,force,front_fy,-0.0018776400247588754 +karman_re50,ppo,381,152.4,force,upper_fx,0.0004111504531465471 +karman_re50,ppo,381,152.4,force,upper_fy,0.004229568410664797 +karman_re50,ppo,381,152.4,force,lower_fx,-0.0003709465963765979 +karman_re50,ppo,381,152.4,force,lower_fy,-0.003536753123626113 +karman_re50,ppo,382,152.8,force,front_fx,1.784086271072738e-05 +karman_re50,ppo,382,152.8,force,front_fy,-0.0017920068930834532 +karman_re50,ppo,382,152.8,force,upper_fx,-0.00010706513421609998 +karman_re50,ppo,382,152.8,force,upper_fy,0.0037567871622741222 +karman_re50,ppo,382,152.8,force,lower_fx,-7.35850480850786e-05 +karman_re50,ppo,382,152.8,force,lower_fy,-0.003148551331833005 +karman_re50,ppo,383,153.2,force,front_fx,-8.153895032592118e-05 +karman_re50,ppo,383,153.2,force,front_fy,-0.0015773745253682137 +karman_re50,ppo,383,153.2,force,upper_fx,-0.0006254051113501191 +karman_re50,ppo,383,153.2,force,upper_fy,0.0032268345821648836 +karman_re50,ppo,383,153.2,force,lower_fx,0.00024536848650313914 +karman_re50,ppo,383,153.2,force,lower_fy,-0.0028038376476615667 +karman_re50,ppo,384,153.6,force,front_fx,-0.00018414946680422872 +karman_re50,ppo,384,153.6,force,front_fy,-0.0013065800303593278 +karman_re50,ppo,384,153.6,force,upper_fx,-0.0010929158888757229 +karman_re50,ppo,384,153.6,force,upper_fy,0.0028022057376801968 +karman_re50,ppo,384,153.6,force,lower_fx,0.0005595213733613491 +karman_re50,ppo,384,153.6,force,lower_fy,-0.0025555365718901157 +karman_re50,ppo,385,154.0,force,front_fx,-0.00028800961445085704 +karman_re50,ppo,385,154.0,force,front_fy,-0.0010400554165244102 +karman_re50,ppo,385,154.0,force,upper_fx,-0.0013926586834713817 +karman_re50,ppo,385,154.0,force,upper_fy,0.002708201762288809 +karman_re50,ppo,385,154.0,force,lower_fx,0.0007518333732150495 +karman_re50,ppo,385,154.0,force,lower_fy,-0.002393729519098997 +karman_re50,ppo,386,154.4,force,front_fx,-0.0003682631941046566 +karman_re50,ppo,386,154.4,force,front_fy,-0.0007801170577295125 +karman_re50,ppo,386,154.4,force,upper_fx,-0.0013214156497269869 +karman_re50,ppo,386,154.4,force,upper_fy,0.003129552351310849 +karman_re50,ppo,386,154.4,force,lower_fx,0.0007144107948988676 +karman_re50,ppo,386,154.4,force,lower_fy,-0.002303086454048753 +karman_re50,ppo,387,154.8,force,front_fx,-0.0003429481294006109 +karman_re50,ppo,387,154.8,force,front_fy,-0.0004721591540146619 +karman_re50,ppo,387,154.8,force,upper_fx,-0.0007115688640624285 +karman_re50,ppo,387,154.8,force,upper_fy,0.003917166497558355 +karman_re50,ppo,387,154.8,force,lower_fx,0.0003948133671656251 +karman_re50,ppo,387,154.8,force,lower_fy,-0.0023178057745099068 +karman_re50,ppo,388,155.2,force,front_fx,-1.7840849977801554e-05 +karman_re50,ppo,388,155.2,force,front_fy,-7.45475699659437e-05 +karman_re50,ppo,388,155.2,force,upper_fx,0.0002361084334552288 +karman_re50,ppo,388,155.2,force,upper_fy,0.004601527936756611 +karman_re50,ppo,388,155.2,force,lower_fx,-0.00022630943567492068 +karman_re50,ppo,388,155.2,force,lower_fy,-0.0024804528802633286 +karman_re50,ppo,389,155.6,force,front_fx,0.0008273627026937902 +karman_re50,ppo,389,155.6,force,front_fy,0.0003509715897962451 +karman_re50,ppo,389,155.6,force,upper_fx,0.0009675059700384736 +karman_re50,ppo,389,155.6,force,upper_fy,0.004867266863584518 +karman_re50,ppo,389,155.6,force,lower_fx,-0.0011455889325588942 +karman_re50,ppo,389,155.6,force,lower_fy,-0.0028494568541646004 +karman_re50,ppo,390,156.0,force,front_fx,0.001983690308406949 +karman_re50,ppo,390,156.0,force,front_fy,0.0007910279091447592 +karman_re50,ppo,390,156.0,force,upper_fx,0.0011775702005252242 +karman_re50,ppo,390,156.0,force,upper_fy,0.004673381801694632 +karman_re50,ppo,390,156.0,force,lower_fx,-0.001968726282939315 +karman_re50,ppo,390,156.0,force,lower_fy,-0.0033139700535684824 +karman_re50,ppo,391,156.4,force,front_fx,0.002687700791284442 +karman_re50,ppo,391,156.4,force,front_fy,0.001259476994164288 +karman_re50,ppo,391,156.4,force,upper_fx,0.001201453385874629 +karman_re50,ppo,391,156.4,force,upper_fy,0.0041876137256622314 +karman_re50,ppo,391,156.4,force,lower_fx,-0.00215473142452538 +karman_re50,ppo,391,156.4,force,lower_fy,-0.0034641800448298454 +karman_re50,ppo,392,156.8,force,front_fx,0.002579137682914734 +karman_re50,ppo,392,156.8,force,front_fy,0.0017220585141330957 +karman_re50,ppo,392,156.8,force,upper_fx,0.0013870318653061986 +karman_re50,ppo,392,156.8,force,upper_fy,0.00392581382766366 +karman_re50,ppo,392,156.8,force,lower_fx,-0.001961168134585023 +karman_re50,ppo,392,156.8,force,lower_fy,-0.003084361320361495 +karman_re50,ppo,393,157.2,force,front_fx,0.0020418642088770866 +karman_re50,ppo,393,157.2,force,front_fy,0.0019427398219704628 +karman_re50,ppo,393,157.2,force,upper_fx,0.001720451982691884 +karman_re50,ppo,393,157.2,force,upper_fy,0.003977264743298292 +karman_re50,ppo,393,157.2,force,lower_fx,-0.0020089545287191868 +karman_re50,ppo,393,157.2,force,lower_fy,-0.002544882707297802 +karman_re50,ppo,394,157.6,force,front_fx,0.0014790541026741266 +karman_re50,ppo,394,157.6,force,front_fy,0.0019357413984835148 +karman_re50,ppo,394,157.6,force,upper_fx,0.002027761423960328 +karman_re50,ppo,394,157.6,force,upper_fy,0.00409294106066227 +karman_re50,ppo,394,157.6,force,lower_fx,-0.0023970953188836575 +karman_re50,ppo,394,157.6,force,lower_fy,-0.002158494433388114 +karman_re50,ppo,395,158.0,force,front_fx,0.0010246665915474296 +karman_re50,ppo,395,158.0,force,front_fy,0.0018598638707771897 +karman_re50,ppo,395,158.0,force,upper_fx,0.00221351720392704 +karman_re50,ppo,395,158.0,force,upper_fy,0.004170096013695002 +karman_re50,ppo,395,158.0,force,lower_fx,-0.0028732363134622574 +karman_re50,ppo,395,158.0,force,lower_fy,-0.001958918059244752 +karman_re50,ppo,396,158.4,force,front_fx,0.0006608199910260737 +karman_re50,ppo,396,158.4,force,front_fy,0.0017595854587852955 +karman_re50,ppo,396,158.4,force,upper_fx,0.0023099195677787066 +karman_re50,ppo,396,158.4,force,upper_fy,0.004234858322888613 +karman_re50,ppo,396,158.4,force,lower_fx,-0.0032692435197532177 +karman_re50,ppo,396,158.4,force,lower_fy,-0.0019204585114493966 +karman_re50,ppo,397,158.8,force,front_fx,0.000440178468124941 +karman_re50,ppo,397,158.8,force,front_fy,0.0015570734394714236 +karman_re50,ppo,397,158.8,force,upper_fx,0.002316984347999096 +karman_re50,ppo,397,158.8,force,upper_fy,0.00427623838186264 +karman_re50,ppo,397,158.8,force,lower_fx,-0.0035184493754059076 +karman_re50,ppo,397,158.8,force,lower_fy,-0.002077680779621005 +karman_re50,ppo,398,159.2,force,front_fx,0.00040761264972388744 +karman_re50,ppo,398,159.2,force,front_fy,0.0011671087704598904 +karman_re50,ppo,398,159.2,force,upper_fx,0.0022000682074576616 +karman_re50,ppo,398,159.2,force,upper_fy,0.004276847001165152 +karman_re50,ppo,398,159.2,force,lower_fx,-0.0035097047220915556 +karman_re50,ppo,398,159.2,force,lower_fy,-0.002514879684895277 +karman_re50,ppo,399,159.6,force,front_fx,0.0004716518160421401 +karman_re50,ppo,399,159.6,force,front_fy,0.0005593177047558129 +karman_re50,ppo,399,159.6,force,upper_fx,0.001965874107554555 +karman_re50,ppo,399,159.6,force,upper_fy,0.004320931620895863 +karman_re50,ppo,399,159.6,force,lower_fx,-0.0030811240430921316 +karman_re50,ppo,399,159.6,force,lower_fy,-0.0031933251302689314 +karman_re50,ppo,0,0.0,alpha,front,1.136017084121704 +karman_re50,ppo,0,0.0,alpha,upper,-4.305406391620636 +karman_re50,ppo,0,0.0,alpha,lower,2.1520328521728516 +karman_re50,ppo,1,0.4,alpha,front,1.1367785930633545 +karman_re50,ppo,1,0.4,alpha,upper,-4.326259136199951 +karman_re50,ppo,1,0.4,alpha,lower,2.2988295555114746 +karman_re50,ppo,2,0.8,alpha,front,1.2362585067749023 +karman_re50,ppo,2,0.8,alpha,upper,-4.675834774971008 +karman_re50,ppo,2,0.8,alpha,lower,2.6833975315093994 +karman_re50,ppo,3,1.2,alpha,front,1.545127034187317 +karman_re50,ppo,3,1.2,alpha,upper,-4.823611199855804 +karman_re50,ppo,3,1.2,alpha,lower,3.3394286036491394 +karman_re50,ppo,4,1.6,alpha,front,1.7151899337768555 +karman_re50,ppo,4,1.6,alpha,upper,-4.851688623428345 +karman_re50,ppo,4,1.6,alpha,lower,4.089363276958466 +karman_re50,ppo,5,2.0,alpha,front,1.5875544548034668 +karman_re50,ppo,5,2.0,alpha,upper,-4.845645308494568 +karman_re50,ppo,5,2.0,alpha,lower,4.554374098777771 +karman_re50,ppo,6,2.4,alpha,front,1.2303699254989624 +karman_re50,ppo,6,2.4,alpha,upper,-4.606455743312836 +karman_re50,ppo,6,2.4,alpha,lower,4.666276693344116 +karman_re50,ppo,7,2.8,alpha,front,0.7288212776184082 +karman_re50,ppo,7,2.8,alpha,upper,-4.008320018649101 +karman_re50,ppo,7,2.8,alpha,lower,4.588020920753479 +karman_re50,ppo,8,3.2,alpha,front,0.08271905779838562 +karman_re50,ppo,8,3.2,alpha,upper,-3.227896511554718 +karman_re50,ppo,8,3.2,alpha,lower,4.3876601457595825 +karman_re50,ppo,9,3.6,alpha,front,-0.6456211805343628 +karman_re50,ppo,9,3.6,alpha,upper,-2.538594126701355 +karman_re50,ppo,9,3.6,alpha,lower,4.082824110984802 +karman_re50,ppo,10,4.0,alpha,front,-1.3377883434295654 +karman_re50,ppo,10,4.0,alpha,upper,-2.110074520111084 +karman_re50,ppo,10,4.0,alpha,lower,3.7613800764083862 +karman_re50,ppo,11,4.4,alpha,front,-1.9358490705490112 +karman_re50,ppo,11,4.4,alpha,upper,-2.0251365900039673 +karman_re50,ppo,11,4.4,alpha,lower,3.471339702606201 +karman_re50,ppo,12,4.8,alpha,front,-2.416538715362549 +karman_re50,ppo,12,4.8,alpha,upper,-2.2249444723129272 +karman_re50,ppo,12,4.8,alpha,lower,3.25215744972229 +karman_re50,ppo,13,5.2,alpha,front,-2.747096300125122 +karman_re50,ppo,13,5.2,alpha,upper,-2.5603283643722534 +karman_re50,ppo,13,5.2,alpha,lower,3.2228909730911255 +karman_re50,ppo,14,5.6,alpha,front,-2.9375834465026855 +karman_re50,ppo,14,5.6,alpha,upper,-2.894433379173279 +karman_re50,ppo,14,5.6,alpha,lower,3.4102987647056584 +karman_re50,ppo,15,6.0,alpha,front,-3.038486957550049 +karman_re50,ppo,15,6.0,alpha,upper,-3.1767336130142207 +karman_re50,ppo,15,6.0,alpha,lower,3.653295189142227 +karman_re50,ppo,16,6.4,alpha,front,-3.05141282081604 +karman_re50,ppo,16,6.4,alpha,upper,-3.3776040077209473 +karman_re50,ppo,16,6.4,alpha,lower,3.7788583636283875 +karman_re50,ppo,17,6.8,alpha,front,-2.9302706718444824 +karman_re50,ppo,17,6.8,alpha,upper,-3.4630929231643672 +karman_re50,ppo,17,6.8,alpha,lower,3.725025177001953 +karman_re50,ppo,18,7.2,alpha,front,-2.6579079627990723 +karman_re50,ppo,18,7.2,alpha,upper,-3.4731976985931396 +karman_re50,ppo,18,7.2,alpha,lower,3.478579878807068 +karman_re50,ppo,19,7.6,alpha,front,-2.2344353199005127 +karman_re50,ppo,19,7.6,alpha,upper,-3.4333747625350957 +karman_re50,ppo,19,7.6,alpha,lower,3.0791292786598206 +karman_re50,ppo,20,8.0,alpha,front,-1.6950497627258303 +karman_re50,ppo,20,8.0,alpha,upper,-3.362153053283692 +karman_re50,ppo,20,8.0,alpha,lower,2.6445887088775635 +karman_re50,ppo,21,8.4,alpha,front,-1.0976372957229614 +karman_re50,ppo,21,8.4,alpha,upper,-3.3107690811157227 +karman_re50,ppo,21,8.4,alpha,lower,2.393991708755493 +karman_re50,ppo,22,8.8,alpha,front,-0.5138611197471619 +karman_re50,ppo,22,8.8,alpha,upper,-3.37425148487091 +karman_re50,ppo,22,8.8,alpha,lower,2.493013024330139 +karman_re50,ppo,23,9.2,alpha,front,-0.00478789210319519 +karman_re50,ppo,23,9.2,alpha,upper,-3.617485523223877 +karman_re50,ppo,23,9.2,alpha,lower,2.934218168258667 +karman_re50,ppo,24,9.6,alpha,front,0.4123392403125763 +karman_re50,ppo,24,9.6,alpha,upper,-4.016592875123024 +karman_re50,ppo,24,9.6,alpha,lower,3.597332626581192 +karman_re50,ppo,25,10.0,alpha,front,0.7558298110961914 +karman_re50,ppo,25,10.0,alpha,upper,-4.446094274520874 +karman_re50,ppo,25,10.0,alpha,lower,4.356372237205505 +karman_re50,ppo,26,10.4,alpha,front,1.0138084888458252 +karman_re50,ppo,26,10.4,alpha,upper,-4.750829696655273 +karman_re50,ppo,26,10.4,alpha,lower,5.086562633514404 +karman_re50,ppo,27,10.8,alpha,front,1.1015243530273438 +karman_re50,ppo,27,10.8,alpha,upper,-4.800258219242096 +karman_re50,ppo,27,10.8,alpha,lower,5.5921043157577515 +karman_re50,ppo,28,11.2,alpha,front,0.9346868991851807 +karman_re50,ppo,28,11.2,alpha,upper,-4.480668008327484 +karman_re50,ppo,28,11.2,alpha,lower,5.6938241720199585 +karman_re50,ppo,29,11.6,alpha,front,0.4571658074855805 +karman_re50,ppo,29,11.6,alpha,upper,-3.7910297065973286 +karman_re50,ppo,29,11.6,alpha,lower,5.311116814613342 +karman_re50,ppo,30,12.0,alpha,front,-0.31878408789634705 +karman_re50,ppo,30,12.0,alpha,upper,-2.8965524435043335 +karman_re50,ppo,30,12.0,alpha,lower,4.517913222312927 +karman_re50,ppo,31,12.4,alpha,front,-1.2658765316009521 +karman_re50,ppo,31,12.4,alpha,upper,-2.0516470670700073 +karman_re50,ppo,31,12.4,alpha,lower,3.5524983704090123 +karman_re50,ppo,32,12.8,alpha,front,-2.1999499797821045 +karman_re50,ppo,32,12.8,alpha,upper,-1.4818625450134277 +karman_re50,ppo,32,12.8,alpha,lower,2.632728934288025 +karman_re50,ppo,33,13.2,alpha,front,-2.9971017837524414 +karman_re50,ppo,33,13.2,alpha,upper,-1.37739896774292 +karman_re50,ppo,33,13.2,alpha,lower,1.8368844985961914 +karman_re50,ppo,34,13.6,alpha,front,-3.510143518447876 +karman_re50,ppo,34,13.6,alpha,upper,-1.693544864654541 +karman_re50,ppo,34,13.6,alpha,lower,1.3976149559020996 +karman_re50,ppo,35,14.0,alpha,front,-3.6585071086883545 +karman_re50,ppo,35,14.0,alpha,upper,-2.1280070543289185 +karman_re50,ppo,35,14.0,alpha,lower,1.6011323928833008 +karman_re50,ppo,36,14.4,alpha,front,-3.6217055320739746 +karman_re50,ppo,36,14.4,alpha,upper,-2.529374361038208 +karman_re50,ppo,36,14.4,alpha,lower,2.196989059448242 +karman_re50,ppo,37,14.8,alpha,front,-3.5707449913024902 +karman_re50,ppo,37,14.8,alpha,upper,-2.918747305870056 +karman_re50,ppo,37,14.8,alpha,lower,2.7551785707473755 +karman_re50,ppo,38,15.2,alpha,front,-3.4732446670532227 +karman_re50,ppo,38,15.2,alpha,upper,-3.2328393459320073 +karman_re50,ppo,38,15.2,alpha,lower,3.1052955389022827 +karman_re50,ppo,39,15.6,alpha,front,-3.192182302474976 +karman_re50,ppo,39,15.6,alpha,upper,-3.3701926469802856 +karman_re50,ppo,39,15.6,alpha,lower,3.3123983144760127 +karman_re50,ppo,40,16.0,alpha,front,-2.667501211166382 +karman_re50,ppo,40,16.0,alpha,upper,-3.322795033454895 +karman_re50,ppo,40,16.0,alpha,lower,3.37102735042572 +karman_re50,ppo,41,16.4,alpha,front,-1.9411669969558718 +karman_re50,ppo,41,16.4,alpha,upper,-3.157122194766998 +karman_re50,ppo,41,16.4,alpha,lower,3.2434635162353516 +karman_re50,ppo,42,16.8,alpha,front,-1.1215163469314575 +karman_re50,ppo,42,16.8,alpha,upper,-3.0368369817733765 +karman_re50,ppo,42,16.8,alpha,lower,3.038399815559387 +karman_re50,ppo,43,17.2,alpha,front,-0.3243108093738556 +karman_re50,ppo,43,17.2,alpha,upper,-3.1868387460708623 +karman_re50,ppo,43,17.2,alpha,lower,2.9982317686080933 +karman_re50,ppo,44,17.6,alpha,front,0.3694514334201813 +karman_re50,ppo,44,17.6,alpha,upper,-3.663080155849457 +karman_re50,ppo,44,17.6,alpha,lower,3.1786305308341976 +karman_re50,ppo,45,18.0,alpha,front,0.9635579586029053 +karman_re50,ppo,45,18.0,alpha,upper,-4.248127654194832 +karman_re50,ppo,45,18.0,alpha,lower,3.497195243835449 +karman_re50,ppo,46,18.4,alpha,front,1.5013365745544434 +karman_re50,ppo,46,18.4,alpha,upper,-4.682243704795837 +karman_re50,ppo,46,18.4,alpha,lower,3.9548981785774235 +karman_re50,ppo,47,18.8,alpha,front,1.9505648612976072 +karman_re50,ppo,47,18.8,alpha,upper,-4.945934951305389 +karman_re50,ppo,47,18.8,alpha,lower,4.495390892028809 +karman_re50,ppo,48,19.2,alpha,front,2.2355971336364746 +karman_re50,ppo,48,19.2,alpha,upper,-5.1135077476501465 +karman_re50,ppo,48,19.2,alpha,lower,4.9441386461257935 +karman_re50,ppo,49,19.6,alpha,front,2.274963617324829 +karman_re50,ppo,49,19.6,alpha,upper,-5.089425206184387 +karman_re50,ppo,49,19.6,alpha,lower,5.071546673774719 +karman_re50,ppo,50,20.0,alpha,front,1.9782991409301758 +karman_re50,ppo,50,20.0,alpha,upper,-4.734070539474487 +karman_re50,ppo,50,20.0,alpha,lower,4.721748948097229 +karman_re50,ppo,51,20.4,alpha,front,1.3102502822875977 +karman_re50,ppo,51,20.4,alpha,upper,-4.059233441948891 +karman_re50,ppo,51,20.4,alpha,lower,4.035919427871704 +karman_re50,ppo,52,20.8,alpha,front,0.43393775820732117 +karman_re50,ppo,52,20.8,alpha,upper,-3.164694368839264 +karman_re50,ppo,52,20.8,alpha,lower,3.5405367612838745 +karman_re50,ppo,53,21.2,alpha,front,-0.3975283801555634 +karman_re50,ppo,53,21.2,alpha,upper,-2.216665744781494 +karman_re50,ppo,53,21.2,alpha,lower,3.59791162610054 +karman_re50,ppo,54,21.6,alpha,front,-1.2264206409454346 +karman_re50,ppo,54,21.6,alpha,upper,-1.530970811843872 +karman_re50,ppo,54,21.6,alpha,lower,3.716024935245514 +karman_re50,ppo,55,22.0,alpha,front,-2.170686960220337 +karman_re50,ppo,55,22.0,alpha,upper,-1.3985233306884766 +karman_re50,ppo,55,22.0,alpha,lower,3.2375621795654297 +karman_re50,ppo,56,22.4,alpha,front,-2.998587131500244 +karman_re50,ppo,56,22.4,alpha,upper,-1.8272624015808105 +karman_re50,ppo,56,22.4,alpha,lower,2.472622871398926 +karman_re50,ppo,57,22.8,alpha,front,-3.4364895820617676 +karman_re50,ppo,57,22.8,alpha,upper,-2.5325080156326294 +karman_re50,ppo,57,22.8,alpha,lower,2.122666120529175 +karman_re50,ppo,58,23.2,alpha,front,-3.4501788616180415 +karman_re50,ppo,58,23.2,alpha,upper,-3.19072824716568 +karman_re50,ppo,58,23.2,alpha,lower,2.4377907514572144 +karman_re50,ppo,59,23.6,alpha,front,-3.2191281318664546 +karman_re50,ppo,59,23.6,alpha,upper,-3.653493165969849 +karman_re50,ppo,59,23.6,alpha,lower,3.0747488737106323 +karman_re50,ppo,60,24.0,alpha,front,-2.907658338546753 +karman_re50,ppo,60,24.0,alpha,upper,-3.8723831325769424 +karman_re50,ppo,60,24.0,alpha,lower,3.5515263080596924 +karman_re50,ppo,61,24.4,alpha,front,-2.490623950958252 +karman_re50,ppo,61,24.4,alpha,upper,-3.8665651232004166 +karman_re50,ppo,61,24.4,alpha,lower,3.802971065044403 +karman_re50,ppo,62,24.8,alpha,front,-1.8918578624725342 +karman_re50,ppo,62,24.8,alpha,upper,-3.763645812869072 +karman_re50,ppo,62,24.8,alpha,lower,3.976499557495117 +karman_re50,ppo,63,25.2,alpha,front,-1.1469799280166626 +karman_re50,ppo,63,25.2,alpha,upper,-3.7481696605682373 +karman_re50,ppo,63,25.2,alpha,lower,4.04611349105835 +karman_re50,ppo,64,25.6,alpha,front,-0.4003630578517913 +karman_re50,ppo,64,25.6,alpha,upper,-3.9992961585521702 +karman_re50,ppo,64,25.6,alpha,lower,3.872430384159088 +karman_re50,ppo,65,26.0,alpha,front,0.27521374821662903 +karman_re50,ppo,65,26.0,alpha,upper,-4.471733629703522 +karman_re50,ppo,65,26.0,alpha,lower,3.5214018225669865 +karman_re50,ppo,66,26.4,alpha,front,0.9480819702148438 +karman_re50,ppo,66,26.4,alpha,upper,-4.763064205646515 +karman_re50,ppo,66,26.4,alpha,lower,3.287648975849151 +karman_re50,ppo,67,26.8,alpha,front,1.5783330202102663 +karman_re50,ppo,67,26.8,alpha,upper,-4.743849575519562 +karman_re50,ppo,67,26.8,alpha,lower,3.297195792198181 +karman_re50,ppo,68,27.2,alpha,front,2.0484180450439453 +karman_re50,ppo,68,27.2,alpha,upper,-4.6963406801223755 +karman_re50,ppo,68,27.2,alpha,lower,3.427764058113098 +karman_re50,ppo,69,27.6,alpha,front,2.3643882274627686 +karman_re50,ppo,69,27.6,alpha,upper,-4.75836181640625 +karman_re50,ppo,69,27.6,alpha,lower,3.6306658685207367 +karman_re50,ppo,70,28.0,alpha,front,2.545637607574463 +karman_re50,ppo,70,28.0,alpha,upper,-4.838891506195068 +karman_re50,ppo,70,28.0,alpha,lower,3.8895249366760254 +karman_re50,ppo,71,28.4,alpha,front,2.5300376415252686 +karman_re50,ppo,71,28.4,alpha,upper,-4.798019587993622 +karman_re50,ppo,71,28.4,alpha,lower,4.088996410369873 +karman_re50,ppo,72,28.8,alpha,front,2.2398617267608643 +karman_re50,ppo,72,28.8,alpha,upper,-4.498188257217407 +karman_re50,ppo,72,28.8,alpha,lower,4.120611786842346 +karman_re50,ppo,73,29.2,alpha,front,1.6464813947677612 +karman_re50,ppo,73,29.2,alpha,upper,-3.8684131056070323 +karman_re50,ppo,73,29.2,alpha,lower,4.027799367904663 +karman_re50,ppo,74,29.6,alpha,front,0.8188691139221191 +karman_re50,ppo,74,29.6,alpha,upper,-2.971351385116577 +karman_re50,ppo,74,29.6,alpha,lower,3.99124014377594 +karman_re50,ppo,75,30.0,alpha,front,-0.13714411854743958 +karman_re50,ppo,75,30.0,alpha,upper,-2.0087229013442993 +karman_re50,ppo,75,30.0,alpha,lower,3.964518189430237 +karman_re50,ppo,76,30.4,alpha,front,-1.1278319358825684 +karman_re50,ppo,76,30.4,alpha,upper,-1.2974328994750977 +karman_re50,ppo,76,30.4,alpha,lower,3.6815790832042694 +karman_re50,ppo,77,30.8,alpha,front,-2.0272181034088135 +karman_re50,ppo,77,30.8,alpha,upper,-1.128100872039795 +karman_re50,ppo,77,30.8,alpha,lower,3.1018521785736084 +karman_re50,ppo,78,31.2,alpha,front,-2.740478038787842 +karman_re50,ppo,78,31.2,alpha,upper,-1.5337331295013428 +karman_re50,ppo,78,31.2,alpha,lower,2.4253618717193604 +karman_re50,ppo,79,31.6,alpha,front,-3.1380906105041504 +karman_re50,ppo,79,31.6,alpha,upper,-2.2632358074188232 +karman_re50,ppo,79,31.6,alpha,lower,2.085460662841797 +karman_re50,ppo,80,32.0,alpha,front,-3.171754360198974 +karman_re50,ppo,80,32.0,alpha,upper,-2.9585896730422974 +karman_re50,ppo,80,32.0,alpha,lower,2.4022079706192017 +karman_re50,ppo,81,32.4,alpha,front,-3.0504069328308105 +karman_re50,ppo,81,32.4,alpha,upper,-3.496038794517517 +karman_re50,ppo,81,32.4,alpha,lower,3.0680420994758606 +karman_re50,ppo,82,32.8,alpha,front,-2.9181389808654785 +karman_re50,ppo,82,32.8,alpha,upper,-3.8882093578577037 +karman_re50,ppo,82,32.8,alpha,lower,3.647976577281952 +karman_re50,ppo,83,33.2,alpha,front,-2.708711624145508 +karman_re50,ppo,83,33.2,alpha,upper,-4.116753473877907 +karman_re50,ppo,83,33.2,alpha,lower,4.0223336815834045 +karman_re50,ppo,84,33.6,alpha,front,-2.307777166366577 +karman_re50,ppo,84,33.6,alpha,upper,-4.182840451598167 +karman_re50,ppo,84,33.6,alpha,lower,4.255071759223938 +karman_re50,ppo,85,34.0,alpha,front,-1.719040870666504 +karman_re50,ppo,85,34.0,alpha,upper,-4.137398317456245 +karman_re50,ppo,85,34.0,alpha,lower,4.2765891551971436 +karman_re50,ppo,86,34.4,alpha,front,-1.0294909477233887 +karman_re50,ppo,86,34.4,alpha,upper,-4.091618746519089 +karman_re50,ppo,86,34.4,alpha,lower,4.019282221794128 +karman_re50,ppo,87,34.8,alpha,front,-0.3308476507663727 +karman_re50,ppo,87,34.8,alpha,upper,-4.182372584939003 +karman_re50,ppo,87,34.8,alpha,lower,3.6323132514953613 +karman_re50,ppo,88,35.2,alpha,front,0.3320983946323395 +karman_re50,ppo,88,35.2,alpha,upper,-4.406886160373688 +karman_re50,ppo,88,35.2,alpha,lower,3.353243410587311 +karman_re50,ppo,89,35.6,alpha,front,0.946427583694458 +karman_re50,ppo,89,35.6,alpha,upper,-4.627116322517395 +karman_re50,ppo,89,35.6,alpha,lower,3.3122376799583435 +karman_re50,ppo,90,36.0,alpha,front,1.4841761589050293 +karman_re50,ppo,90,36.0,alpha,upper,-4.782524645328522 +karman_re50,ppo,90,36.0,alpha,lower,3.4923648834228516 +karman_re50,ppo,91,36.4,alpha,front,1.918470859527588 +karman_re50,ppo,91,36.4,alpha,upper,-4.9147873520851135 +karman_re50,ppo,91,36.4,alpha,lower,3.787373185157776 +karman_re50,ppo,92,36.8,alpha,front,2.2353122234344482 +karman_re50,ppo,92,36.8,alpha,upper,-5.020001769065857 +karman_re50,ppo,92,36.8,alpha,lower,4.1078948974609375 +karman_re50,ppo,93,37.2,alpha,front,2.370267868041992 +karman_re50,ppo,93,37.2,alpha,upper,-5.02764368057251 +karman_re50,ppo,93,37.2,alpha,lower,4.344210386276245 +karman_re50,ppo,94,37.6,alpha,front,2.2294867038726807 +karman_re50,ppo,94,37.6,alpha,upper,-4.810554385185242 +karman_re50,ppo,94,37.6,alpha,lower,4.3745235204696655 +karman_re50,ppo,95,38.0,alpha,front,1.7452406883239746 +karman_re50,ppo,95,38.0,alpha,upper,-4.260033130645752 +karman_re50,ppo,95,38.0,alpha,lower,4.195500612258911 +karman_re50,ppo,96,38.4,alpha,front,0.9383442401885986 +karman_re50,ppo,96,38.4,alpha,upper,-3.3485682606697083 +karman_re50,ppo,96,38.4,alpha,lower,3.977333188056946 +karman_re50,ppo,97,38.8,alpha,front,-0.06546592712402344 +karman_re50,ppo,97,38.8,alpha,upper,-2.194294571876526 +karman_re50,ppo,97,38.8,alpha,lower,3.822152137756347 +karman_re50,ppo,98,39.2,alpha,front,-1.0993657112121582 +karman_re50,ppo,98,39.2,alpha,upper,-1.1828007698059082 +karman_re50,ppo,98,39.2,alpha,lower,3.5729702413082127 +karman_re50,ppo,99,39.6,alpha,front,-2.0378262996673584 +karman_re50,ppo,99,39.6,alpha,upper,-0.7860596179962159 +karman_re50,ppo,99,39.6,alpha,lower,3.055931329727173 +karman_re50,ppo,100,40.0,alpha,front,-2.8521604537963867 +karman_re50,ppo,100,40.0,alpha,upper,-1.1018550395965576 +karman_re50,ppo,100,40.0,alpha,lower,2.238771677017212 +karman_re50,ppo,101,40.4,alpha,front,-3.3708109855651855 +karman_re50,ppo,101,40.4,alpha,upper,-1.8154940605163572 +karman_re50,ppo,101,40.4,alpha,lower,1.621402978897095 +karman_re50,ppo,102,40.8,alpha,front,-3.451148986816406 +karman_re50,ppo,102,40.8,alpha,upper,-2.4760138988494873 +karman_re50,ppo,102,40.8,alpha,lower,1.779574394226074 +karman_re50,ppo,103,41.2,alpha,front,-3.323412418365478 +karman_re50,ppo,103,41.2,alpha,upper,-3.0121541023254395 +karman_re50,ppo,103,41.2,alpha,lower,2.4841537475585938 +karman_re50,ppo,104,41.6,alpha,front,-3.2031750679016113 +karman_re50,ppo,104,41.6,alpha,upper,-3.49681282043457 +karman_re50,ppo,104,41.6,alpha,lower,3.1894934177398677 +karman_re50,ppo,105,42.0,alpha,front,-3.063364028930664 +karman_re50,ppo,105,42.0,alpha,upper,-3.84119214117527 +karman_re50,ppo,105,42.0,alpha,lower,3.623611032962799 +karman_re50,ppo,106,42.4,alpha,front,-2.7495837211608887 +karman_re50,ppo,106,42.4,alpha,upper,-3.9467653185129166 +karman_re50,ppo,106,42.4,alpha,lower,3.8803810477256775 +karman_re50,ppo,107,42.8,alpha,front,-2.2141997814178467 +karman_re50,ppo,107,42.8,alpha,upper,-3.852733686566353 +karman_re50,ppo,107,42.8,alpha,lower,3.993215203285217 +karman_re50,ppo,108,43.2,alpha,front,-1.5532420873641968 +karman_re50,ppo,108,43.2,alpha,upper,-3.7152131795883174 +karman_re50,ppo,108,43.2,alpha,lower,3.865380823612213 +karman_re50,ppo,109,43.6,alpha,front,-0.87267804145813 +karman_re50,ppo,109,43.6,alpha,upper,-3.7284610271453853 +karman_re50,ppo,109,43.6,alpha,lower,3.6096535325050354 +karman_re50,ppo,110,44.0,alpha,front,-0.2148987948894501 +karman_re50,ppo,110,44.0,alpha,upper,-3.9628521054983143 +karman_re50,ppo,110,44.0,alpha,lower,3.4610595703125004 +karman_re50,ppo,111,44.4,alpha,front,0.4103721678256988 +karman_re50,ppo,111,44.4,alpha,upper,-4.304083526134491 +karman_re50,ppo,111,44.4,alpha,lower,3.518800675868988 +karman_re50,ppo,112,44.8,alpha,front,0.9803156852722167 +karman_re50,ppo,112,44.8,alpha,upper,-4.616456091403961 +karman_re50,ppo,112,44.8,alpha,lower,3.769479751586914 +karman_re50,ppo,113,45.2,alpha,front,1.4632456302642822 +karman_re50,ppo,113,45.2,alpha,upper,-4.87545907497406 +karman_re50,ppo,113,45.2,alpha,lower,4.121987044811249 +karman_re50,ppo,114,45.6,alpha,front,1.8428397178649902 +karman_re50,ppo,114,45.6,alpha,upper,-5.084392547607422 +karman_re50,ppo,114,45.6,alpha,lower,4.4644399881362915 +karman_re50,ppo,115,46.0,alpha,front,2.0815367698669434 +karman_re50,ppo,115,46.0,alpha,upper,-5.185780167579651 +karman_re50,ppo,115,46.0,alpha,lower,4.69306206703186 +karman_re50,ppo,116,46.4,alpha,front,2.0834882259368896 +karman_re50,ppo,116,46.4,alpha,upper,-5.075906753540039 +karman_re50,ppo,116,46.4,alpha,lower,4.6875081062316895 +karman_re50,ppo,117,46.8,alpha,front,1.7588515281677246 +karman_re50,ppo,117,46.8,alpha,upper,-4.659334897994995 +karman_re50,ppo,117,46.8,alpha,lower,4.411298513412476 +karman_re50,ppo,118,47.2,alpha,front,1.0967371463775635 +karman_re50,ppo,118,47.2,alpha,upper,-3.9043311327695847 +karman_re50,ppo,118,47.2,alpha,lower,4.048195481300354 +karman_re50,ppo,119,47.6,alpha,front,0.20334824919700623 +karman_re50,ppo,119,47.6,alpha,upper,-2.8527005910873413 +karman_re50,ppo,119,47.6,alpha,lower,3.8509865999221797 +karman_re50,ppo,120,48.0,alpha,front,-0.8086154460906982 +karman_re50,ppo,120,48.0,alpha,upper,-1.7128024101257324 +karman_re50,ppo,120,48.0,alpha,lower,3.6893128156661987 +karman_re50,ppo,121,48.4,alpha,front,-1.87292754650116 +karman_re50,ppo,121,48.4,alpha,upper,-0.9268412590026855 +karman_re50,ppo,121,48.4,alpha,lower,3.1573159694671626 +karman_re50,ppo,122,48.8,alpha,front,-2.851318359375 +karman_re50,ppo,122,48.8,alpha,upper,-0.858762264251709 +karman_re50,ppo,122,48.8,alpha,lower,2.2203928232192993 +karman_re50,ppo,123,49.2,alpha,front,-3.550488948822022 +karman_re50,ppo,123,49.2,alpha,upper,-1.429781198501587 +karman_re50,ppo,123,49.2,alpha,lower,1.3369898796081543 +karman_re50,ppo,124,49.6,alpha,front,-3.740260124206543 +karman_re50,ppo,124,49.6,alpha,upper,-2.1753435134887695 +karman_re50,ppo,124,49.6,alpha,lower,1.2509546279907227 +karman_re50,ppo,125,50.0,alpha,front,-3.544702768325806 +karman_re50,ppo,125,50.0,alpha,upper,-2.797678232192993 +karman_re50,ppo,125,50.0,alpha,lower,1.9843454360961912 +karman_re50,ppo,126,50.4,alpha,front,-3.284271001815796 +karman_re50,ppo,126,50.4,alpha,upper,-3.300473153591156 +karman_re50,ppo,126,50.4,alpha,lower,2.8936283588409424 +karman_re50,ppo,127,50.8,alpha,front,-3.0737555027008057 +karman_re50,ppo,127,50.8,alpha,upper,-3.6249575018882756 +karman_re50,ppo,127,50.8,alpha,lower,3.4691168069839473 +karman_re50,ppo,128,51.2,alpha,front,-2.774498462677002 +karman_re50,ppo,128,51.2,alpha,upper,-3.710526585578919 +karman_re50,ppo,128,51.2,alpha,lower,3.7499718070030212 +karman_re50,ppo,129,51.6,alpha,front,-2.2558960914611816 +karman_re50,ppo,129,51.6,alpha,upper,-3.615787625312805 +karman_re50,ppo,129,51.6,alpha,lower,3.9346129298210144 +karman_re50,ppo,130,52.0,alpha,front,-1.5646951198577883 +karman_re50,ppo,130,52.0,alpha,upper,-3.5086528062820435 +karman_re50,ppo,130,52.0,alpha,lower,3.9899443387985225 +karman_re50,ppo,131,52.4,alpha,front,-0.8402963876724243 +karman_re50,ppo,131,52.4,alpha,upper,-3.591861844062805 +karman_re50,ppo,131,52.4,alpha,lower,3.860027909278869 +karman_re50,ppo,132,52.8,alpha,front,-0.159712553024292 +karman_re50,ppo,132,52.8,alpha,upper,-3.9475879818201065 +karman_re50,ppo,132,52.8,alpha,lower,3.6823518574237823 +karman_re50,ppo,133,53.2,alpha,front,0.4787321984767914 +karman_re50,ppo,133,53.2,alpha,upper,-4.393795669078827 +karman_re50,ppo,133,53.2,alpha,lower,3.596372544765473 +karman_re50,ppo,134,53.6,alpha,front,1.0849573612213135 +karman_re50,ppo,134,53.6,alpha,upper,-4.68063759803772 +karman_re50,ppo,134,53.6,alpha,lower,3.7040889263153076 +karman_re50,ppo,135,54.0,alpha,front,1.5910323858261108 +karman_re50,ppo,135,54.0,alpha,upper,-4.838613510131836 +karman_re50,ppo,135,54.0,alpha,lower,3.942226409912109 +karman_re50,ppo,136,54.4,alpha,front,1.9602563381195068 +karman_re50,ppo,136,54.4,alpha,upper,-4.991321682929993 +karman_re50,ppo,136,54.4,alpha,lower,4.180988669395447 +karman_re50,ppo,137,54.8,alpha,front,2.193574905395508 +karman_re50,ppo,137,54.8,alpha,upper,-5.105697512626648 +karman_re50,ppo,137,54.8,alpha,lower,4.34861958026886 +karman_re50,ppo,138,55.2,alpha,front,2.2296385765075684 +karman_re50,ppo,138,55.2,alpha,upper,-5.071991682052612 +karman_re50,ppo,138,55.2,alpha,lower,4.363874077796936 +karman_re50,ppo,139,55.6,alpha,front,1.986964702606201 +karman_re50,ppo,139,55.6,alpha,upper,-4.781107604503632 +karman_re50,ppo,139,55.6,alpha,lower,4.187470316886902 +karman_re50,ppo,140,56.0,alpha,front,1.4492888450622559 +karman_re50,ppo,140,56.0,alpha,upper,-4.17939867079258 +karman_re50,ppo,140,56.0,alpha,lower,3.9681021571159367 +karman_re50,ppo,141,56.4,alpha,front,0.7046639919281006 +karman_re50,ppo,141,56.4,alpha,upper,-3.2977312207221985 +karman_re50,ppo,141,56.4,alpha,lower,3.97290301322937 +karman_re50,ppo,142,56.8,alpha,front,-0.1696009337902069 +karman_re50,ppo,142,56.8,alpha,upper,-2.3077503442764282 +karman_re50,ppo,142,56.8,alpha,lower,4.102070331573486 +karman_re50,ppo,143,57.2,alpha,front,-1.2079815864562988 +karman_re50,ppo,143,57.2,alpha,upper,-1.4803466796875 +karman_re50,ppo,143,57.2,alpha,lower,3.782436966896057 +karman_re50,ppo,144,57.6,alpha,front,-2.2855920791625977 +karman_re50,ppo,144,57.6,alpha,upper,-1.1179218292236328 +karman_re50,ppo,144,57.6,alpha,lower,2.8869783878326416 +karman_re50,ppo,145,58.0,alpha,front,-3.121304512023926 +karman_re50,ppo,145,58.0,alpha,upper,-1.3744502067565918 +karman_re50,ppo,145,58.0,alpha,lower,1.9478347301483154 +karman_re50,ppo,146,58.4,alpha,front,-3.527657508850097 +karman_re50,ppo,146,58.4,alpha,upper,-2.06266987323761 +karman_re50,ppo,146,58.4,alpha,lower,1.5306313037872314 +karman_re50,ppo,147,58.8,alpha,front,-3.462956190109253 +karman_re50,ppo,147,58.8,alpha,upper,-2.7703689336776733 +karman_re50,ppo,147,58.8,alpha,lower,1.944716930389404 +karman_re50,ppo,148,59.2,alpha,front,-3.190371513366699 +karman_re50,ppo,148,59.2,alpha,upper,-3.281816422939301 +karman_re50,ppo,148,59.2,alpha,lower,2.779693841934204 +karman_re50,ppo,149,59.6,alpha,front,-2.952228307723999 +karman_re50,ppo,149,59.6,alpha,upper,-3.5738921761512756 +karman_re50,ppo,149,59.6,alpha,lower,3.4390224218368526 +karman_re50,ppo,150,60.0,alpha,front,-2.702535629272461 +karman_re50,ppo,150,60.0,alpha,upper,-3.69280332326889 +karman_re50,ppo,150,60.0,alpha,lower,3.807993173599243 +karman_re50,ppo,151,60.4,alpha,front,-2.279658794403076 +karman_re50,ppo,151,60.4,alpha,upper,-3.7182710766792297 +karman_re50,ppo,151,60.4,alpha,lower,4.092368841171265 +karman_re50,ppo,152,60.8,alpha,front,-1.6574621200561523 +karman_re50,ppo,152,60.8,alpha,upper,-3.7256898283958435 +karman_re50,ppo,152,60.8,alpha,lower,4.281311273574829 +karman_re50,ppo,153,61.2,alpha,front,-0.9391216039657592 +karman_re50,ppo,153,61.2,alpha,upper,-3.818027779459953 +karman_re50,ppo,153,61.2,alpha,lower,4.201724052429199 +karman_re50,ppo,154,61.6,alpha,front,-0.22773763537406924 +karman_re50,ppo,154,61.6,alpha,upper,-4.09334634244442 +karman_re50,ppo,154,61.6,alpha,lower,3.9003309011459355 +karman_re50,ppo,155,62.0,alpha,front,0.4341006577014923 +karman_re50,ppo,155,62.0,alpha,upper,-4.463618516921997 +karman_re50,ppo,155,62.0,alpha,lower,3.601837247610092 +karman_re50,ppo,156,62.4,alpha,front,1.047587275505066 +karman_re50,ppo,156,62.4,alpha,upper,-4.704250514507294 +karman_re50,ppo,156,62.4,alpha,lower,3.499195694923401 +karman_re50,ppo,157,62.8,alpha,front,1.5668115615844724 +karman_re50,ppo,157,62.8,alpha,upper,-4.800584554672241 +karman_re50,ppo,157,62.8,alpha,lower,3.581948846578598 +karman_re50,ppo,158,63.2,alpha,front,1.9540274143218994 +karman_re50,ppo,158,63.2,alpha,upper,-4.887235462665558 +karman_re50,ppo,158,63.2,alpha,lower,3.738418400287628 +karman_re50,ppo,159,63.6,alpha,front,2.2181386947631836 +karman_re50,ppo,159,63.6,alpha,upper,-4.973637342453003 +karman_re50,ppo,159,63.6,alpha,lower,3.9184206128120422 +karman_re50,ppo,160,64.0,alpha,front,2.3231704235076904 +karman_re50,ppo,160,64.0,alpha,upper,-4.983623027801514 +karman_re50,ppo,160,64.0,alpha,lower,4.069380164146423 +karman_re50,ppo,161,64.4,alpha,front,2.1960220336914062 +karman_re50,ppo,161,64.4,alpha,upper,-4.796355485916138 +karman_re50,ppo,161,64.4,alpha,lower,4.123523116111755 +karman_re50,ppo,162,64.8,alpha,front,1.780305624008179 +karman_re50,ppo,162,64.8,alpha,upper,-4.32108861207962 +karman_re50,ppo,162,64.8,alpha,lower,4.082790017127991 +karman_re50,ppo,163,65.2,alpha,front,1.0979094505310059 +karman_re50,ppo,163,65.2,alpha,upper,-3.5512557029724117 +karman_re50,ppo,163,65.2,alpha,lower,4.079303503036499 +karman_re50,ppo,164,65.6,alpha,front,0.23002424836158752 +karman_re50,ppo,164,65.6,alpha,upper,-2.606559157371521 +karman_re50,ppo,164,65.6,alpha,lower,4.122158706188202 +karman_re50,ppo,165,66.0,alpha,front,-0.7645564079284668 +karman_re50,ppo,165,66.0,alpha,upper,-1.7138137817382812 +karman_re50,ppo,165,66.0,alpha,lower,3.906287133693695 +karman_re50,ppo,166,66.4,alpha,front,-1.7850176095962524 +karman_re50,ppo,166,66.4,alpha,upper,-1.1815381050109863 +karman_re50,ppo,166,66.4,alpha,lower,3.2506213188171387 +karman_re50,ppo,167,66.8,alpha,front,-2.630707263946533 +karman_re50,ppo,167,66.8,alpha,upper,-1.2533879280090332 +karman_re50,ppo,167,66.8,alpha,lower,2.458137273788452 +karman_re50,ppo,168,67.2,alpha,front,-3.1575894355773926 +karman_re50,ppo,168,67.2,alpha,upper,-1.8519365787506104 +karman_re50,ppo,168,67.2,alpha,lower,1.9250800609588625 +karman_re50,ppo,169,67.6,alpha,front,-3.2700934410095215 +karman_re50,ppo,169,67.6,alpha,upper,-2.581436276435852 +karman_re50,ppo,169,67.6,alpha,lower,2.0397123098373413 +karman_re50,ppo,170,68.0,alpha,front,-3.1184539794921875 +karman_re50,ppo,170,68.0,alpha,upper,-3.129151463508606 +karman_re50,ppo,170,68.0,alpha,lower,2.688333034515381 +karman_re50,ppo,171,68.4,alpha,front,-2.951472759246826 +karman_re50,ppo,171,68.4,alpha,upper,-3.4956895112991333 +karman_re50,ppo,171,68.4,alpha,lower,3.363258004188538 +karman_re50,ppo,172,68.8,alpha,front,-2.7857139110565186 +karman_re50,ppo,172,68.8,alpha,upper,-3.741726756095886 +karman_re50,ppo,172,68.8,alpha,lower,3.8150539398193355 +karman_re50,ppo,173,69.2,alpha,front,-2.480431318283081 +karman_re50,ppo,173,69.2,alpha,upper,-3.8930264562368393 +karman_re50,ppo,173,69.2,alpha,lower,4.137458860874176 +karman_re50,ppo,174,69.6,alpha,front,-1.9722031354904177 +karman_re50,ppo,174,69.6,alpha,upper,-3.955663695931435 +karman_re50,ppo,174,69.6,alpha,lower,4.338972449302673 +karman_re50,ppo,175,70.0,alpha,front,-1.3202255964279175 +karman_re50,ppo,175,70.0,alpha,upper,-3.9728331714868546 +karman_re50,ppo,175,70.0,alpha,lower,4.267229676246643 +karman_re50,ppo,176,70.4,alpha,front,-0.6164858341217041 +karman_re50,ppo,176,70.4,alpha,upper,-4.055669590830803 +karman_re50,ppo,176,70.4,alpha,lower,3.9383320808410645 +karman_re50,ppo,177,70.8,alpha,front,0.05768397450447082 +karman_re50,ppo,177,70.8,alpha,upper,-4.275115609169006 +karman_re50,ppo,177,70.8,alpha,lower,3.580508291721344 +karman_re50,ppo,178,71.2,alpha,front,0.6698797941207886 +karman_re50,ppo,178,71.2,alpha,upper,-4.536105394363403 +karman_re50,ppo,178,71.2,alpha,lower,3.4013497829437256 +karman_re50,ppo,179,71.6,alpha,front,1.2136492729187012 +karman_re50,ppo,179,71.6,alpha,upper,-4.7196308970451355 +karman_re50,ppo,179,71.6,alpha,lower,3.4527645111083984 +karman_re50,ppo,180,72.0,alpha,front,1.661327600479126 +karman_re50,ppo,180,72.0,alpha,upper,-4.848226070404053 +karman_re50,ppo,180,72.0,alpha,lower,3.6517867743968964 +karman_re50,ppo,181,72.4,alpha,front,1.9987332820892334 +karman_re50,ppo,181,72.4,alpha,upper,-4.963080167770386 +karman_re50,ppo,181,72.4,alpha,lower,3.913797378540039 +karman_re50,ppo,182,72.8,alpha,front,2.199300527572632 +karman_re50,ppo,182,72.8,alpha,upper,-5.028469800949097 +karman_re50,ppo,182,72.8,alpha,lower,4.166266679763794 +karman_re50,ppo,183,73.2,alpha,front,2.187868595123291 +karman_re50,ppo,183,73.2,alpha,upper,-4.940116226673126 +karman_re50,ppo,183,73.2,alpha,lower,4.315644383430481 +karman_re50,ppo,184,73.6,alpha,front,1.8873956203460693 +karman_re50,ppo,184,73.6,alpha,upper,-4.577975392341614 +karman_re50,ppo,184,73.6,alpha,lower,4.293893218040466 +karman_re50,ppo,185,74.0,alpha,front,1.2802469730377197 +karman_re50,ppo,185,74.0,alpha,upper,-3.889844372868538 +karman_re50,ppo,185,74.0,alpha,lower,4.178696990013123 +karman_re50,ppo,186,74.4,alpha,front,0.43498578667640686 +karman_re50,ppo,186,74.4,alpha,upper,-2.9322996139526367 +karman_re50,ppo,186,74.4,alpha,lower,4.091311573982239 +karman_re50,ppo,187,74.8,alpha,front,-0.5482040643692017 +karman_re50,ppo,187,74.8,alpha,upper,-1.9058449268341067 +karman_re50,ppo,187,74.8,alpha,lower,3.8984686732292175 +karman_re50,ppo,188,75.2,alpha,front,-1.568228244781494 +karman_re50,ppo,188,75.2,alpha,upper,-1.157130241394043 +karman_re50,ppo,188,75.2,alpha,lower,3.371679544448852 +karman_re50,ppo,189,75.6,alpha,front,-2.4706783294677734 +karman_re50,ppo,189,75.6,alpha,upper,-1.027601718902588 +karman_re50,ppo,189,75.6,alpha,lower,2.6013431549072266 +karman_re50,ppo,190,76.0,alpha,front,-3.12371826171875 +karman_re50,ppo,190,76.0,alpha,upper,-1.5102546215057373 +karman_re50,ppo,190,76.0,alpha,lower,1.8951451778411867 +karman_re50,ppo,191,76.4,alpha,front,-3.3769936561584473 +karman_re50,ppo,191,76.4,alpha,upper,-2.2176709175109863 +karman_re50,ppo,191,76.4,alpha,lower,1.7478604316711426 +karman_re50,ppo,192,76.8,alpha,front,-3.293370962142944 +karman_re50,ppo,192,76.8,alpha,upper,-2.7882169485092163 +karman_re50,ppo,192,76.8,alpha,lower,2.2775659561157227 +karman_re50,ppo,193,77.2,alpha,front,-3.1484532356262207 +karman_re50,ppo,193,77.2,alpha,upper,-3.2244301438331604 +karman_re50,ppo,193,77.2,alpha,lower,2.9967293739318848 +karman_re50,ppo,194,77.6,alpha,front,-3.025463104248047 +karman_re50,ppo,194,77.6,alpha,upper,-3.56890743970871 +karman_re50,ppo,194,77.6,alpha,lower,3.5249509811401367 +karman_re50,ppo,195,78.0,alpha,front,-2.801220178604126 +karman_re50,ppo,195,78.0,alpha,upper,-3.7801267653703685 +karman_re50,ppo,195,78.0,alpha,lower,3.8631627559661865 +karman_re50,ppo,196,78.4,alpha,front,-2.370255470275879 +karman_re50,ppo,196,78.4,alpha,upper,-3.8359513133764267 +karman_re50,ppo,196,78.4,alpha,lower,4.087050795555115 +karman_re50,ppo,197,78.8,alpha,front,-1.7602944374084473 +karman_re50,ppo,197,78.8,alpha,upper,-3.789332404732704 +karman_re50,ppo,197,78.8,alpha,lower,4.104219138622284 +karman_re50,ppo,198,79.2,alpha,front,-1.071975827217102 +karman_re50,ppo,198,79.2,alpha,upper,-3.777412697672844 +karman_re50,ppo,198,79.2,alpha,lower,3.873596012592316 +karman_re50,ppo,199,79.6,alpha,front,-0.3912353813648224 +karman_re50,ppo,199,79.6,alpha,upper,-3.9381396025419235 +karman_re50,ppo,199,79.6,alpha,lower,3.596186101436615 +karman_re50,ppo,200,80.0,alpha,front,0.23845484852790833 +karman_re50,ppo,200,80.0,alpha,upper,-4.248532608151436 +karman_re50,ppo,200,80.0,alpha,lower,3.466985940933227 +karman_re50,ppo,201,80.4,alpha,front,0.8153403997421266 +karman_re50,ppo,201,80.4,alpha,upper,-4.548329174518585 +karman_re50,ppo,201,80.4,alpha,lower,3.554893374443054 +karman_re50,ppo,202,80.8,alpha,front,1.3126602172851562 +karman_re50,ppo,202,80.8,alpha,upper,-4.774734914302826 +karman_re50,ppo,202,80.8,alpha,lower,3.805368900299072 +karman_re50,ppo,203,81.2,alpha,front,1.7077369689941408 +karman_re50,ppo,203,81.2,alpha,upper,-4.959192991256714 +karman_re50,ppo,203,81.2,alpha,lower,4.114589214324951 +karman_re50,ppo,204,81.6,alpha,front,1.9812204837799072 +karman_re50,ppo,204,81.6,alpha,upper,-5.09378182888031 +karman_re50,ppo,204,81.6,alpha,lower,4.39322555065155 +karman_re50,ppo,205,82.0,alpha,front,2.072110176086426 +karman_re50,ppo,205,82.0,alpha,upper,-5.092141032218933 +karman_re50,ppo,205,82.0,alpha,lower,4.5451613664627075 +karman_re50,ppo,206,82.4,alpha,front,1.8917620182037354 +karman_re50,ppo,206,82.4,alpha,upper,-4.835932016372681 +karman_re50,ppo,206,82.4,alpha,lower,4.484298944473267 +karman_re50,ppo,207,82.8,alpha,front,1.3961596488952637 +karman_re50,ppo,207,82.8,alpha,upper,-4.252407908439636 +karman_re50,ppo,207,82.8,alpha,lower,4.264867424964905 +karman_re50,ppo,208,83.2,alpha,front,0.6323672533035278 +karman_re50,ppo,208,83.2,alpha,upper,-3.368781805038452 +karman_re50,ppo,208,83.2,alpha,lower,4.078037977218628 +karman_re50,ppo,209,83.6,alpha,front,-0.2872205674648285 +karman_re50,ppo,209,83.6,alpha,upper,-2.322867274284363 +karman_re50,ppo,209,83.6,alpha,lower,3.955445766448975 +karman_re50,ppo,210,84.0,alpha,front,-1.310803771018982 +karman_re50,ppo,210,84.0,alpha,upper,-1.4012823104858398 +karman_re50,ppo,210,84.0,alpha,lower,3.56395024061203 +karman_re50,ppo,211,84.4,alpha,front,-2.32951283454895 +karman_re50,ppo,211,84.4,alpha,upper,-0.9833748340606691 +karman_re50,ppo,211,84.4,alpha,lower,2.753659963607788 +karman_re50,ppo,212,84.8,alpha,front,-3.147066354751587 +karman_re50,ppo,212,84.8,alpha,upper,-1.240222692489624 +karman_re50,ppo,212,84.8,alpha,lower,1.8451523780822754 +karman_re50,ppo,213,85.2,alpha,front,-3.5595569610595708 +karman_re50,ppo,213,85.2,alpha,upper,-1.9089145660400393 +karman_re50,ppo,213,85.2,alpha,lower,1.4117650985717773 +karman_re50,ppo,214,85.6,alpha,front,-3.5198092460632324 +karman_re50,ppo,214,85.6,alpha,upper,-2.54845929145813 +karman_re50,ppo,214,85.6,alpha,lower,1.8085136413574219 +karman_re50,ppo,215,86.0,alpha,front,-3.3062100410461426 +karman_re50,ppo,215,86.0,alpha,upper,-3.037192702293396 +karman_re50,ppo,215,86.0,alpha,lower,2.618417739868164 +karman_re50,ppo,216,86.4,alpha,front,-3.1278626918792725 +karman_re50,ppo,216,86.4,alpha,upper,-3.4010590314865112 +karman_re50,ppo,216,86.4,alpha,lower,3.27761173248291 +karman_re50,ppo,217,86.8,alpha,front,-2.9195687770843506 +karman_re50,ppo,217,86.8,alpha,upper,-3.6103900671005253 +karman_re50,ppo,217,86.8,alpha,lower,3.6574740707874303 +karman_re50,ppo,218,87.2,alpha,front,-2.5286471843719482 +karman_re50,ppo,218,87.2,alpha,upper,-3.657471239566803 +karman_re50,ppo,218,87.2,alpha,lower,3.9159318208694454 +karman_re50,ppo,219,87.6,alpha,front,-1.9294446706771853 +karman_re50,ppo,219,87.6,alpha,upper,-3.60343873500824 +karman_re50,ppo,219,87.6,alpha,lower,4.0554980635643005 +karman_re50,ppo,220,88.0,alpha,front,-1.223519206047058 +karman_re50,ppo,220,88.0,alpha,upper,-3.592693448066712 +karman_re50,ppo,220,88.0,alpha,lower,3.966383159160614 +karman_re50,ppo,221,88.4,alpha,front,-0.514947772026062 +karman_re50,ppo,221,88.4,alpha,upper,-3.779268518090248 +karman_re50,ppo,221,88.4,alpha,lower,3.7467698454856873 +karman_re50,ppo,222,88.8,alpha,front,0.14132699370384216 +karman_re50,ppo,222,88.8,alpha,upper,-4.159860625863075 +karman_re50,ppo,222,88.8,alpha,lower,3.5793572068214417 +karman_re50,ppo,223,89.2,alpha,front,0.7487610578536987 +karman_re50,ppo,223,89.2,alpha,upper,-4.523447394371033 +karman_re50,ppo,223,89.2,alpha,lower,3.586286067962646 +karman_re50,ppo,224,89.6,alpha,front,1.2860393524169922 +karman_re50,ppo,224,89.6,alpha,upper,-4.74855637550354 +karman_re50,ppo,224,89.6,alpha,lower,3.7736493349075317 +karman_re50,ppo,225,90.0,alpha,front,1.7088146209716797 +karman_re50,ppo,225,90.0,alpha,upper,-4.910685062408447 +karman_re50,ppo,225,90.0,alpha,lower,4.033714413642883 +karman_re50,ppo,226,90.4,alpha,front,2.0058999061584473 +karman_re50,ppo,226,90.4,alpha,upper,-5.051066160202026 +karman_re50,ppo,226,90.4,alpha,lower,4.271295428276062 +karman_re50,ppo,227,90.8,alpha,front,2.143099069595337 +karman_re50,ppo,227,90.8,alpha,upper,-5.101078033447266 +karman_re50,ppo,227,90.8,alpha,lower,4.412883877754211 +karman_re50,ppo,228,91.2,alpha,front,2.0413455963134766 +karman_re50,ppo,228,91.2,alpha,upper,-4.9381020069122314 +karman_re50,ppo,228,91.2,alpha,lower,4.377304196357727 +karman_re50,ppo,229,91.6,alpha,front,1.6408877372741701 +karman_re50,ppo,229,91.6,alpha,upper,-4.478234648704529 +karman_re50,ppo,229,91.6,alpha,lower,4.186265230178833 +karman_re50,ppo,230,92.0,alpha,front,0.9752222299575807 +karman_re50,ppo,230,92.0,alpha,upper,-3.7122793197631836 +karman_re50,ppo,230,92.0,alpha,lower,4.039840996265411 +karman_re50,ppo,231,92.4,alpha,front,0.1514350175857544 +karman_re50,ppo,231,92.4,alpha,upper,-2.752186894416809 +karman_re50,ppo,231,92.4,alpha,lower,4.0640177726745605 +karman_re50,ppo,232,92.8,alpha,front,-0.7941852807998656 +karman_re50,ppo,232,92.8,alpha,upper,-1.8292903900146484 +karman_re50,ppo,232,92.8,alpha,lower,3.9382488131523132 +karman_re50,ppo,233,93.2,alpha,front,-1.8454107046127317 +karman_re50,ppo,233,93.2,alpha,upper,-1.238649845123291 +karman_re50,ppo,233,93.2,alpha,lower,3.273714721202851 +karman_re50,ppo,234,93.6,alpha,front,-2.786215305328369 +karman_re50,ppo,234,93.6,alpha,upper,-1.2271602153778076 +karman_re50,ppo,234,93.6,alpha,lower,2.322602391242981 +karman_re50,ppo,235,94.0,alpha,front,-3.382261037826538 +karman_re50,ppo,235,94.0,alpha,upper,-1.7539405822753906 +karman_re50,ppo,235,94.0,alpha,lower,1.6479833126068117 +karman_re50,ppo,236,94.4,alpha,front,-3.5057196617126465 +karman_re50,ppo,236,94.4,alpha,upper,-2.451405882835388 +karman_re50,ppo,236,94.4,alpha,lower,1.7240645885467527 +karman_re50,ppo,237,94.8,alpha,front,-3.305613040924072 +karman_re50,ppo,237,94.8,alpha,upper,-3.0068928003311157 +karman_re50,ppo,237,94.8,alpha,lower,2.4366577863693237 +karman_re50,ppo,238,95.2,alpha,front,-3.077664375305176 +karman_re50,ppo,238,95.2,alpha,upper,-3.3762338161468506 +karman_re50,ppo,238,95.2,alpha,lower,3.172781527042389 +karman_re50,ppo,239,95.6,alpha,front,-2.8725852966308594 +karman_re50,ppo,239,95.6,alpha,upper,-3.582973062992096 +karman_re50,ppo,239,95.6,alpha,lower,3.6315168142318726 +karman_re50,ppo,240,96.0,alpha,front,-2.544245481491089 +karman_re50,ppo,240,96.0,alpha,upper,-3.6713963747024536 +karman_re50,ppo,240,96.0,alpha,lower,3.9396246075630184 +karman_re50,ppo,241,96.4,alpha,front,-2.0074563026428223 +karman_re50,ppo,241,96.4,alpha,upper,-3.687222838401794 +karman_re50,ppo,241,96.4,alpha,lower,4.1756139397621155 +karman_re50,ppo,242,96.8,alpha,front,-1.3220499753952026 +karman_re50,ppo,242,96.8,alpha,upper,-3.7126100659370422 +karman_re50,ppo,242,96.8,alpha,lower,4.201610207557678 +karman_re50,ppo,243,97.2,alpha,front,-0.5976196527481079 +karman_re50,ppo,243,97.2,alpha,upper,-3.8740812689065933 +karman_re50,ppo,243,97.2,alpha,lower,3.97810310125351 +karman_re50,ppo,244,97.6,alpha,front,0.08498162031173706 +karman_re50,ppo,244,97.6,alpha,upper,-4.216313049197197 +karman_re50,ppo,244,97.6,alpha,lower,3.683547168970108 +karman_re50,ppo,245,98.0,alpha,front,0.7103824615478516 +karman_re50,ppo,245,98.0,alpha,upper,-4.558386445045471 +karman_re50,ppo,245,98.0,alpha,lower,3.5212422013282776 +karman_re50,ppo,246,98.4,alpha,front,1.2713898420333862 +karman_re50,ppo,246,98.4,alpha,upper,-4.74272346496582 +karman_re50,ppo,246,98.4,alpha,lower,3.5722392797470093 +karman_re50,ppo,247,98.8,alpha,front,1.715822458267212 +karman_re50,ppo,247,98.8,alpha,upper,-4.849573612213135 +karman_re50,ppo,247,98.8,alpha,lower,3.7404590249061584 +karman_re50,ppo,248,99.2,alpha,front,2.035592555999756 +karman_re50,ppo,248,99.2,alpha,upper,-4.956728994846344 +karman_re50,ppo,248,99.2,alpha,lower,3.942100763320923 +karman_re50,ppo,249,99.6,alpha,front,2.2179079055786133 +karman_re50,ppo,249,99.6,alpha,upper,-5.023627758026123 +karman_re50,ppo,249,99.6,alpha,lower,4.125000953674316 +karman_re50,ppo,250,100.0,alpha,front,2.1971263885498047 +karman_re50,ppo,250,100.0,alpha,upper,-4.942374110221863 +karman_re50,ppo,250,100.0,alpha,lower,4.219554424285889 +karman_re50,ppo,251,100.4,alpha,front,1.9025435447692873 +karman_re50,ppo,251,100.4,alpha,upper,-4.593895077705383 +karman_re50,ppo,251,100.4,alpha,lower,4.176246225833893 +karman_re50,ppo,252,100.8,alpha,front,1.323413372039795 +karman_re50,ppo,252,100.8,alpha,upper,-3.93694244325161 +karman_re50,ppo,252,100.8,alpha,lower,4.101016163825989 +karman_re50,ppo,253,101.2,alpha,front,0.5326176881790161 +karman_re50,ppo,253,101.2,alpha,upper,-3.0404305458068848 +karman_re50,ppo,253,101.2,alpha,lower,4.111821234226227 +karman_re50,ppo,254,101.6,alpha,front,-0.38864704966545105 +karman_re50,ppo,254,101.6,alpha,upper,-2.1004832983016968 +karman_re50,ppo,254,101.6,alpha,lower,4.055553734302521 +karman_re50,ppo,255,102.0,alpha,front,-1.4050434827804565 +karman_re50,ppo,255,102.0,alpha,upper,-1.385354995727539 +karman_re50,ppo,255,102.0,alpha,lower,3.573182135820389 +karman_re50,ppo,256,102.4,alpha,front,-2.3600423336029053 +karman_re50,ppo,256,102.4,alpha,upper,-1.1841518878936768 +karman_re50,ppo,256,102.4,alpha,lower,2.7495787143707275 +karman_re50,ppo,257,102.8,alpha,front,-3.0515060424804688 +karman_re50,ppo,257,102.8,alpha,upper,-1.5719354152679443 +karman_re50,ppo,257,102.8,alpha,lower,2.015235424041748 +karman_re50,ppo,258,103.2,alpha,front,-3.3370206356048584 +karman_re50,ppo,258,103.2,alpha,upper,-2.2673323154449463 +karman_re50,ppo,258,103.2,alpha,lower,1.8260798454284666 +karman_re50,ppo,259,103.6,alpha,front,-3.2510945796966553 +karman_re50,ppo,259,103.6,alpha,upper,-2.876769542694092 +karman_re50,ppo,259,103.6,alpha,lower,2.321911573410034 +karman_re50,ppo,260,104.0,alpha,front,-3.0613675117492676 +karman_re50,ppo,260,104.0,alpha,upper,-3.2951324582099915 +karman_re50,ppo,260,104.0,alpha,lower,3.0493024587631226 +karman_re50,ppo,261,104.4,alpha,front,-2.9006733894348145 +karman_re50,ppo,261,104.4,alpha,upper,-3.5777116417884827 +karman_re50,ppo,261,104.4,alpha,lower,3.588846862316131 +karman_re50,ppo,262,104.8,alpha,front,-2.6594319343566895 +karman_re50,ppo,262,104.8,alpha,upper,-3.7563223093748093 +karman_re50,ppo,262,104.8,alpha,lower,3.945476531982422 +karman_re50,ppo,263,105.2,alpha,front,-2.2237753868103027 +karman_re50,ppo,263,105.2,alpha,upper,-3.845002308487892 +karman_re50,ppo,263,105.2,alpha,lower,4.215477645397186 +karman_re50,ppo,264,105.6,alpha,front,-1.60935640335083 +karman_re50,ppo,264,105.6,alpha,upper,-3.86780072748661 +karman_re50,ppo,264,105.6,alpha,lower,4.285972476005554 +karman_re50,ppo,265,106.0,alpha,front,-0.9067387580871581 +karman_re50,ppo,265,106.0,alpha,upper,-3.923141047358513 +karman_re50,ppo,265,106.0,alpha,lower,4.07147079706192 +karman_re50,ppo,266,106.4,alpha,front,-0.2090772390365601 +karman_re50,ppo,266,106.4,alpha,upper,-4.12088243663311 +karman_re50,ppo,266,106.4,alpha,lower,3.727345108985901 +karman_re50,ppo,267,106.8,alpha,front,0.42836543917655945 +karman_re50,ppo,267,106.8,alpha,upper,-4.4198378920555115 +karman_re50,ppo,267,106.8,alpha,lower,3.4822641611099243 +karman_re50,ppo,268,107.2,alpha,front,1.002580165863037 +karman_re50,ppo,268,107.2,alpha,upper,-4.65620219707489 +karman_re50,ppo,268,107.2,alpha,lower,3.4579792618751526 +karman_re50,ppo,269,107.6,alpha,front,1.488330364227295 +karman_re50,ppo,269,107.6,alpha,upper,-4.799782633781433 +karman_re50,ppo,269,107.6,alpha,lower,3.6100630760192867 +karman_re50,ppo,270,108.0,alpha,front,1.8642332553863525 +karman_re50,ppo,270,108.0,alpha,upper,-4.917786240577698 +karman_re50,ppo,270,108.0,alpha,lower,3.8436427116394043 +karman_re50,ppo,271,108.4,alpha,front,2.117816925048828 +karman_re50,ppo,271,108.4,alpha,upper,-5.014406204223633 +karman_re50,ppo,271,108.4,alpha,lower,4.0926660895347595 +karman_re50,ppo,272,108.8,alpha,front,2.1958565711975098 +karman_re50,ppo,272,108.8,alpha,upper,-5.005558013916016 +karman_re50,ppo,272,108.8,alpha,lower,4.280423045158386 +karman_re50,ppo,273,109.2,alpha,front,2.014937400817871 +karman_re50,ppo,273,109.2,alpha,upper,-4.766004860401154 +karman_re50,ppo,273,109.2,alpha,lower,4.316730856895447 +karman_re50,ppo,274,109.6,alpha,front,1.5290076732635498 +karman_re50,ppo,274,109.6,alpha,upper,-4.212473347783089 +karman_re50,ppo,274,109.6,alpha,lower,4.218323111534119 +karman_re50,ppo,275,110.0,alpha,front,0.7787003517150879 +karman_re50,ppo,275,110.0,alpha,upper,-3.3614611625671387 +karman_re50,ppo,275,110.0,alpha,lower,4.12553995847702 +karman_re50,ppo,276,110.4,alpha,front,-0.1345987617969513 +karman_re50,ppo,276,110.4,alpha,upper,-2.361983895301819 +karman_re50,ppo,276,110.4,alpha,lower,4.038964867591858 +karman_re50,ppo,277,110.8,alpha,front,-1.1393228769302368 +karman_re50,ppo,277,110.8,alpha,upper,-1.4814748764038086 +karman_re50,ppo,277,110.8,alpha,lower,3.679271429777146 +karman_re50,ppo,278,111.2,alpha,front,-2.120621919631958 +karman_re50,ppo,278,111.2,alpha,upper,-1.0721817016601562 +karman_re50,ppo,278,111.2,alpha,lower,2.9529823064804077 +karman_re50,ppo,279,111.6,alpha,front,-2.905484199523926 +karman_re50,ppo,279,111.6,alpha,upper,-1.305988073348999 +karman_re50,ppo,279,111.6,alpha,lower,2.1480966806411743 +karman_re50,ppo,280,112.0,alpha,front,-3.3348195552825928 +karman_re50,ppo,280,112.0,alpha,upper,-1.9604051113128662 +karman_re50,ppo,280,112.0,alpha,lower,1.7212247848510744 +karman_re50,ppo,281,112.4,alpha,front,-3.35209321975708 +karman_re50,ppo,281,112.4,alpha,upper,-2.6028679609298706 +karman_re50,ppo,281,112.4,alpha,lower,2.018673300743103 +karman_re50,ppo,282,112.8,alpha,front,-3.190634250640869 +karman_re50,ppo,282,112.8,alpha,upper,-3.0756965279579163 +karman_re50,ppo,282,112.8,alpha,lower,2.733585000038147 +karman_re50,ppo,283,113.2,alpha,front,-3.0505268573760986 +karman_re50,ppo,283,113.2,alpha,upper,-3.4351632595062256 +karman_re50,ppo,283,113.2,alpha,lower,3.357196569442749 +karman_re50,ppo,284,113.6,alpha,front,-2.8735010623931885 +karman_re50,ppo,284,113.6,alpha,upper,-3.6835066080093384 +karman_re50,ppo,284,113.6,alpha,lower,3.7576804161071777 +karman_re50,ppo,285,114.0,alpha,front,-2.5236151218414307 +karman_re50,ppo,285,114.0,alpha,upper,-3.7995966523885727 +karman_re50,ppo,285,114.0,alpha,lower,4.034431219100952 +karman_re50,ppo,286,114.4,alpha,front,-1.96854043006897 +karman_re50,ppo,286,114.4,alpha,upper,-3.7980486899614334 +karman_re50,ppo,286,114.4,alpha,lower,4.166286051273346 +karman_re50,ppo,287,114.8,alpha,front,-1.2918951511383057 +karman_re50,ppo,287,114.8,alpha,upper,-3.7756681293249135 +karman_re50,ppo,287,114.8,alpha,lower,4.035976827144623 +karman_re50,ppo,288,115.2,alpha,front,-0.5916528701782227 +karman_re50,ppo,288,115.2,alpha,upper,-3.8835590779781337 +karman_re50,ppo,288,115.2,alpha,lower,3.7473534345626827 +karman_re50,ppo,289,115.6,alpha,front,0.0627376139163971 +karman_re50,ppo,289,115.6,alpha,upper,-4.169400796294212 +karman_re50,ppo,289,115.6,alpha,lower,3.523079097270965 +karman_re50,ppo,290,116.0,alpha,front,0.6614512205123901 +karman_re50,ppo,290,116.0,alpha,upper,-4.488309562206268 +karman_re50,ppo,290,116.0,alpha,lower,3.4951552748680115 +karman_re50,ppo,291,116.4,alpha,front,1.1892080307006836 +karman_re50,ppo,291,116.4,alpha,upper,-4.717111945152283 +karman_re50,ppo,291,116.4,alpha,lower,3.6620377600193024 +karman_re50,ppo,292,116.8,alpha,front,1.618191838264465 +karman_re50,ppo,292,116.8,alpha,upper,-4.887932479381561 +karman_re50,ppo,292,116.8,alpha,lower,3.92963308095932 +karman_re50,ppo,293,117.2,alpha,front,1.93357515335083 +karman_re50,ppo,293,117.2,alpha,upper,-5.030405759811401 +karman_re50,ppo,293,117.2,alpha,lower,4.209224224090576 +karman_re50,ppo,294,117.6,alpha,front,2.0955772399902344 +karman_re50,ppo,294,117.6,alpha,upper,-5.090665578842163 +karman_re50,ppo,294,117.6,alpha,lower,4.418979644775391 +karman_re50,ppo,295,118.0,alpha,front,2.0241987705230713 +karman_re50,ppo,295,118.0,alpha,upper,-4.947048842906952 +karman_re50,ppo,295,118.0,alpha,lower,4.4655479192733765 +karman_re50,ppo,296,118.4,alpha,front,1.6488571166992188 +karman_re50,ppo,296,118.4,alpha,upper,-4.500399053096771 +karman_re50,ppo,296,118.4,alpha,lower,4.322922348976135 +karman_re50,ppo,297,118.8,alpha,front,0.9806663990020751 +karman_re50,ppo,297,118.8,alpha,upper,-3.7329620122909546 +karman_re50,ppo,297,118.8,alpha,lower,4.136942505836487 +karman_re50,ppo,298,119.2,alpha,front,0.12082362174987793 +karman_re50,ppo,298,119.2,alpha,upper,-2.74346387386322 +karman_re50,ppo,298,119.2,alpha,lower,4.040251791477203 +karman_re50,ppo,299,119.6,alpha,front,-0.8538624048233032 +karman_re50,ppo,299,119.6,alpha,upper,-1.7595086097717285 +karman_re50,ppo,299,119.6,alpha,lower,3.818333387374878 +karman_re50,ppo,300,120.0,alpha,front,-1.8849897384643555 +karman_re50,ppo,300,120.0,alpha,upper,-1.1237096786499023 +karman_re50,ppo,300,120.0,alpha,lower,3.1716213822364807 +karman_re50,ppo,301,120.4,alpha,front,-2.79660964012146 +karman_re50,ppo,301,120.4,alpha,upper,-1.1188023090362549 +karman_re50,ppo,301,120.4,alpha,lower,2.2670156955718994 +karman_re50,ppo,302,120.8,alpha,front,-3.3874673843383785 +karman_re50,ppo,302,120.8,alpha,upper,-1.6678469181060793 +karman_re50,ppo,302,120.8,alpha,lower,1.5907573699951172 +karman_re50,ppo,303,121.2,alpha,front,-3.5158319473266597 +karman_re50,ppo,303,121.2,alpha,upper,-2.350309729576111 +karman_re50,ppo,303,121.2,alpha,lower,1.6581215858459473 +karman_re50,ppo,304,121.6,alpha,front,-3.3450238704681396 +karman_re50,ppo,304,121.6,alpha,upper,-2.8845547437667847 +karman_re50,ppo,304,121.6,alpha,lower,2.3531689643859863 +karman_re50,ppo,305,122.0,alpha,front,-3.1557846069335938 +karman_re50,ppo,305,122.0,alpha,upper,-3.283792793750763 +karman_re50,ppo,305,122.0,alpha,lower,3.094166338443756 +karman_re50,ppo,306,122.4,alpha,front,-2.9851012229919434 +karman_re50,ppo,306,122.4,alpha,upper,-3.5534656047821045 +karman_re50,ppo,306,122.4,alpha,lower,3.5660549998283386 +karman_re50,ppo,307,122.8,alpha,front,-2.686526298522949 +karman_re50,ppo,307,122.8,alpha,upper,-3.676908910274506 +karman_re50,ppo,307,122.8,alpha,lower,3.863001823425293 +karman_re50,ppo,308,123.2,alpha,front,-2.172881841659546 +karman_re50,ppo,308,123.2,alpha,upper,-3.675496757030487 +karman_re50,ppo,308,123.2,alpha,lower,4.069183826446533 +karman_re50,ppo,309,123.6,alpha,front,-1.5031589269638062 +karman_re50,ppo,309,123.6,alpha,upper,-3.6400907039642334 +karman_re50,ppo,309,123.6,alpha,lower,4.067697525024414 +karman_re50,ppo,310,124.0,alpha,front,-0.7868403196334839 +karman_re50,ppo,310,124.0,alpha,upper,-3.728100478649139 +karman_re50,ppo,310,124.0,alpha,lower,3.858900308609009 +karman_re50,ppo,311,124.4,alpha,front,-0.10747483372688293 +karman_re50,ppo,311,124.4,alpha,upper,-4.028723731637001 +karman_re50,ppo,311,124.4,alpha,lower,3.629968702793122 +karman_re50,ppo,312,124.8,alpha,front,0.5135555267333984 +karman_re50,ppo,312,124.8,alpha,upper,-4.408622086048126 +karman_re50,ppo,312,124.8,alpha,lower,3.5389311611652374 +karman_re50,ppo,313,125.2,alpha,front,1.079370379447937 +karman_re50,ppo,313,125.2,alpha,upper,-4.67559015750885 +karman_re50,ppo,313,125.2,alpha,lower,3.650284618139267 +karman_re50,ppo,314,125.6,alpha,front,1.5461561679840088 +karman_re50,ppo,314,125.6,alpha,upper,-4.843928933143616 +karman_re50,ppo,314,125.6,alpha,lower,3.8851145505905156 +karman_re50,ppo,315,126.0,alpha,front,1.8928961753845217 +karman_re50,ppo,315,126.0,alpha,upper,-4.989914774894714 +karman_re50,ppo,315,126.0,alpha,lower,4.139933466911316 +karman_re50,ppo,316,126.4,alpha,front,2.101949453353882 +karman_re50,ppo,316,126.4,alpha,upper,-5.0874245166778564 +karman_re50,ppo,316,126.4,alpha,lower,4.343162894248962 +karman_re50,ppo,317,126.8,alpha,front,2.108128070831299 +karman_re50,ppo,317,126.8,alpha,upper,-5.024897933006287 +karman_re50,ppo,317,126.8,alpha,lower,4.413412570953369 +karman_re50,ppo,318,127.2,alpha,front,1.8335769176483157 +karman_re50,ppo,318,127.2,alpha,upper,-4.686630666255951 +karman_re50,ppo,318,127.2,alpha,lower,4.299298048019409 +karman_re50,ppo,319,127.6,alpha,front,1.25860595703125 +karman_re50,ppo,319,127.6,alpha,upper,-4.035732731223106 +karman_re50,ppo,319,127.6,alpha,lower,4.11380809545517 +karman_re50,ppo,320,128.0,alpha,front,0.475310355424881 +karman_re50,ppo,320,128.0,alpha,upper,-3.12653511762619 +karman_re50,ppo,320,128.0,alpha,lower,4.053838551044464 +karman_re50,ppo,321,128.4,alpha,front,-0.4284076392650604 +karman_re50,ppo,321,128.4,alpha,upper,-2.14963960647583 +karman_re50,ppo,321,128.4,alpha,lower,4.013122975826263 +karman_re50,ppo,322,128.8,alpha,front,-1.4468474388122559 +karman_re50,ppo,322,128.8,alpha,upper,-1.3857769966125488 +karman_re50,ppo,322,128.8,alpha,lower,3.561522901058197 +karman_re50,ppo,323,129.2,alpha,front,-2.4466724395751953 +karman_re50,ppo,323,129.2,alpha,upper,-1.1392674446105957 +karman_re50,ppo,323,129.2,alpha,lower,2.6815364360809326 +karman_re50,ppo,324,129.6,alpha,front,-3.1886620521545406 +karman_re50,ppo,324,129.6,alpha,upper,-1.496368408203125 +karman_re50,ppo,324,129.6,alpha,lower,1.8478407859802246 +karman_re50,ppo,325,130.0,alpha,front,-3.493475914001465 +karman_re50,ppo,325,130.0,alpha,upper,-2.1783300638198853 +karman_re50,ppo,325,130.0,alpha,lower,1.608212471008301 +karman_re50,ppo,326,130.4,alpha,front,-3.3888859748840328 +karman_re50,ppo,326,130.4,alpha,upper,-2.791733503341675 +karman_re50,ppo,326,130.4,alpha,lower,2.1291521787643433 +karman_re50,ppo,327,130.8,alpha,front,-3.162809371948242 +karman_re50,ppo,327,130.8,alpha,upper,-3.2265007495880127 +karman_re50,ppo,327,130.8,alpha,lower,2.9137433767318726 +karman_re50,ppo,328,131.2,alpha,front,-2.9740562438964844 +karman_re50,ppo,328,131.2,alpha,upper,-3.5054815411567684 +karman_re50,ppo,328,131.2,alpha,lower,3.482584357261658 +karman_re50,ppo,329,131.6,alpha,front,-2.7229719161987305 +karman_re50,ppo,329,131.6,alpha,upper,-3.65279757976532 +karman_re50,ppo,329,131.6,alpha,lower,3.8251707553863525 +karman_re50,ppo,330,132.0,alpha,front,-2.2765626907348633 +karman_re50,ppo,330,132.0,alpha,upper,-3.6988285779953 +karman_re50,ppo,330,132.0,alpha,lower,4.089064240455627 +karman_re50,ppo,331,132.4,alpha,front,-1.642720937728882 +karman_re50,ppo,331,132.4,alpha,upper,-3.697041690349579 +karman_re50,ppo,331,132.4,alpha,lower,4.199330568313599 +karman_re50,ppo,332,132.8,alpha,front,-0.9255396127700806 +karman_re50,ppo,332,132.8,alpha,upper,-3.770963743329048 +karman_re50,ppo,332,132.8,alpha,lower,4.052278637886047 +karman_re50,ppo,333,133.2,alpha,front,-0.22143083810806274 +karman_re50,ppo,333,133.2,alpha,upper,-4.028707295656204 +karman_re50,ppo,333,133.2,alpha,lower,3.768444299697876 +karman_re50,ppo,334,133.6,alpha,front,0.4217431843280792 +karman_re50,ppo,334,133.6,alpha,upper,-4.398302316665649 +karman_re50,ppo,334,133.6,alpha,lower,3.5531245470046997 +karman_re50,ppo,335,134.0,alpha,front,1.009594440460205 +karman_re50,ppo,335,134.0,alpha,upper,-4.665196478366852 +karman_re50,ppo,335,134.0,alpha,lower,3.54052397608757 +karman_re50,ppo,336,134.4,alpha,front,1.5054421424865723 +karman_re50,ppo,336,134.4,alpha,upper,-4.805657625198364 +karman_re50,ppo,336,134.4,alpha,lower,3.6932650208473206 +karman_re50,ppo,337,134.8,alpha,front,1.8788700103759766 +karman_re50,ppo,337,134.8,alpha,upper,-4.921318888664246 +karman_re50,ppo,337,134.8,alpha,lower,3.904952824115753 +karman_re50,ppo,338,135.2,alpha,front,2.126208782196045 +karman_re50,ppo,338,135.2,alpha,upper,-5.022983074188232 +karman_re50,ppo,338,135.2,alpha,lower,4.11592310667038 +karman_re50,ppo,339,135.6,alpha,front,2.2008495330810547 +karman_re50,ppo,339,135.6,alpha,upper,-5.020779967308044 +karman_re50,ppo,339,135.6,alpha,lower,4.259668946266174 +karman_re50,ppo,340,136.0,alpha,front,2.0237741470336914 +karman_re50,ppo,340,136.0,alpha,upper,-4.787183403968811 +karman_re50,ppo,340,136.0,alpha,lower,4.259089946746826 +karman_re50,ppo,341,136.4,alpha,front,1.5498756170272827 +karman_re50,ppo,341,136.4,alpha,upper,-4.248560681939125 +karman_re50,ppo,341,136.4,alpha,lower,4.1513659954071045 +karman_re50,ppo,342,136.8,alpha,front,0.8268915414810181 +karman_re50,ppo,342,136.8,alpha,upper,-3.420943021774292 +karman_re50,ppo,342,136.8,alpha,lower,4.092012941837311 +karman_re50,ppo,343,137.2,alpha,front,-0.048962056636810296 +karman_re50,ppo,343,137.2,alpha,upper,-2.4607356786727905 +karman_re50,ppo,343,137.2,alpha,lower,4.088975965976715 +karman_re50,ppo,344,137.6,alpha,front,-1.0337401628494263 +karman_re50,ppo,344,137.6,alpha,upper,-1.608944892883301 +karman_re50,ppo,344,137.6,alpha,lower,3.799396276473999 +karman_re50,ppo,345,138.0,alpha,front,-2.0424749851226807 +karman_re50,ppo,345,138.0,alpha,upper,-1.1744177341461182 +karman_re50,ppo,345,138.0,alpha,lower,3.0606449246406555 +karman_re50,ppo,346,138.4,alpha,front,-2.864809513092041 +karman_re50,ppo,346,138.4,alpha,upper,-1.3459014892578125 +karman_re50,ppo,346,138.4,alpha,lower,2.2164663076400757 +karman_re50,ppo,347,138.8,alpha,front,-3.3244433403015137 +karman_re50,ppo,347,138.8,alpha,upper,-1.970932960510254 +karman_re50,ppo,347,138.8,alpha,lower,1.7499709129333496 +karman_re50,ppo,348,139.2,alpha,front,-3.3520159721374507 +karman_re50,ppo,348,139.2,alpha,upper,-2.636748433113098 +karman_re50,ppo,348,139.2,alpha,lower,2.0150176286697388 +karman_re50,ppo,349,139.6,alpha,front,-3.1649489402771 +karman_re50,ppo,349,139.6,alpha,upper,-3.1234068274497986 +karman_re50,ppo,349,139.6,alpha,lower,2.7365217208862305 +karman_re50,ppo,350,140.0,alpha,front,-2.9907119274139404 +karman_re50,ppo,350,140.0,alpha,upper,-3.4549316167831416 +karman_re50,ppo,350,140.0,alpha,lower,3.380238890647888 +karman_re50,ppo,351,140.4,alpha,front,-2.7971813678741455 +karman_re50,ppo,351,140.4,alpha,upper,-3.6690324544906616 +karman_re50,ppo,351,140.4,alpha,lower,3.7891529202461243 +karman_re50,ppo,352,140.8,alpha,front,-2.442488431930542 +karman_re50,ppo,352,140.8,alpha,upper,-3.7832348495721817 +karman_re50,ppo,352,140.8,alpha,lower,4.0840452909469604 +karman_re50,ppo,353,141.2,alpha,front,-1.88425350189209 +karman_re50,ppo,353,141.2,alpha,upper,-3.813432812690735 +karman_re50,ppo,353,141.2,alpha,lower,4.25294828414917 +karman_re50,ppo,354,141.6,alpha,front,-1.1982629299163818 +karman_re50,ppo,354,141.6,alpha,upper,-3.8349677920341487 +karman_re50,ppo,354,141.6,alpha,lower,4.15783029794693 +karman_re50,ppo,355,142.0,alpha,front,-0.487331748008728 +karman_re50,ppo,355,142.0,alpha,upper,-3.979294449090958 +karman_re50,ppo,355,142.0,alpha,lower,3.854141414165497 +karman_re50,ppo,356,142.4,alpha,front,0.1752089560031891 +karman_re50,ppo,356,142.4,alpha,upper,-4.278917551040649 +karman_re50,ppo,356,142.4,alpha,lower,3.568264484405518 +karman_re50,ppo,357,142.8,alpha,front,0.775712251663208 +karman_re50,ppo,357,142.8,alpha,upper,-4.5729047656059265 +karman_re50,ppo,357,142.8,alpha,lower,3.467793047428131 +karman_re50,ppo,358,143.2,alpha,front,1.3028753995895386 +karman_re50,ppo,358,143.2,alpha,upper,-4.7507747411727905 +karman_re50,ppo,358,143.2,alpha,lower,3.5722595453262334 +karman_re50,ppo,359,143.6,alpha,front,1.722022533416748 +karman_re50,ppo,359,143.6,alpha,upper,-4.875041127204895 +karman_re50,ppo,359,143.6,alpha,lower,3.7845643162727356 +karman_re50,ppo,360,144.0,alpha,front,2.026956081390381 +karman_re50,ppo,360,144.0,alpha,upper,-4.987795412540436 +karman_re50,ppo,360,144.0,alpha,lower,4.0300253033638 +karman_re50,ppo,361,144.4,alpha,front,2.179112672805786 +karman_re50,ppo,361,144.4,alpha,upper,-5.0400320291519165 +karman_re50,ppo,361,144.4,alpha,lower,4.240883469581604 +karman_re50,ppo,362,144.8,alpha,front,2.1078977584838867 +karman_re50,ppo,362,144.8,alpha,upper,-4.904054760932922 +karman_re50,ppo,362,144.8,alpha,lower,4.3297224044799805 +karman_re50,ppo,363,145.2,alpha,front,1.7410798072814944 +karman_re50,ppo,363,145.2,alpha,upper,-4.4746997356414795 +karman_re50,ppo,363,145.2,alpha,lower,4.257289171218872 +karman_re50,ppo,364,145.6,alpha,front,1.0836623907089233 +karman_re50,ppo,364,145.6,alpha,upper,-3.7309409976005554 +karman_re50,ppo,364,145.6,alpha,lower,4.138130307197571 +karman_re50,ppo,365,146.0,alpha,front,0.23196235299110415 +karman_re50,ppo,365,146.0,alpha,upper,-2.7701722383499146 +karman_re50,ppo,365,146.0,alpha,lower,4.0835636258125305 +karman_re50,ppo,366,146.4,alpha,front,-0.7351781129837036 +karman_re50,ppo,366,146.4,alpha,upper,-1.8135435581207275 +karman_re50,ppo,366,146.4,alpha,lower,3.8869854211807255 +karman_re50,ppo,367,146.8,alpha,front,-1.748940110206604 +karman_re50,ppo,367,146.8,alpha,upper,-1.1842403411865234 +karman_re50,ppo,367,146.8,alpha,lower,3.2844800949096684 +karman_re50,ppo,368,147.2,alpha,front,-2.641756534576416 +karman_re50,ppo,368,147.2,alpha,upper,-1.1610641479492188 +karman_re50,ppo,368,147.2,alpha,lower,2.4435248374938965 +karman_re50,ppo,369,147.6,alpha,front,-3.234990119934082 +karman_re50,ppo,369,147.6,alpha,upper,-1.692202091217041 +karman_re50,ppo,369,147.6,alpha,lower,1.7944974899291994 +karman_re50,ppo,370,148.0,alpha,front,-3.3974900245666504 +karman_re50,ppo,370,148.0,alpha,upper,-2.3811618089675903 +karman_re50,ppo,370,148.0,alpha,lower,1.8101444244384768 +karman_re50,ppo,371,148.4,alpha,front,-3.26082181930542 +karman_re50,ppo,371,148.4,alpha,upper,-2.9182978868484497 +karman_re50,ppo,371,148.4,alpha,lower,2.437924861907959 +karman_re50,ppo,372,148.8,alpha,front,-3.093967914581299 +karman_re50,ppo,372,148.8,alpha,upper,-3.3111759424209595 +karman_re50,ppo,372,148.8,alpha,lower,3.1465277075767517 +karman_re50,ppo,373,149.2,alpha,front,-2.9405009746551514 +karman_re50,ppo,373,149.2,alpha,upper,-3.5930493474006653 +karman_re50,ppo,373,149.2,alpha,lower,3.62612783908844 +karman_re50,ppo,374,149.6,alpha,front,-2.663332223892212 +karman_re50,ppo,374,149.6,alpha,upper,-3.7533991187810902 +karman_re50,ppo,374,149.6,alpha,lower,3.944804549217224 +karman_re50,ppo,375,150.0,alpha,front,-2.1786179542541504 +karman_re50,ppo,375,150.0,alpha,upper,-3.792483940720558 +karman_re50,ppo,375,150.0,alpha,lower,4.1536765694618225 +karman_re50,ppo,376,150.4,alpha,front,-1.5326310396194458 +karman_re50,ppo,376,150.4,alpha,upper,-3.7713719457387924 +karman_re50,ppo,376,150.4,alpha,lower,4.136747717857361 +karman_re50,ppo,377,150.8,alpha,front,-0.8244707584381102 +karman_re50,ppo,377,150.8,alpha,upper,-3.828125759959221 +karman_re50,ppo,377,150.8,alpha,lower,3.893089532852173 +karman_re50,ppo,378,151.2,alpha,front,-0.14555290341377258 +karman_re50,ppo,378,151.2,alpha,upper,-4.068574443459511 +karman_re50,ppo,378,151.2,alpha,lower,3.6147025227546696 +karman_re50,ppo,379,151.6,alpha,front,0.4746093451976776 +karman_re50,ppo,379,151.6,alpha,upper,-4.404341161251068 +karman_re50,ppo,379,151.6,alpha,lower,3.4879247546195984 +karman_re50,ppo,380,152.0,alpha,front,1.0327348709106445 +karman_re50,ppo,380,152.0,alpha,upper,-4.659759223461151 +karman_re50,ppo,380,152.0,alpha,lower,3.5718875527381897 +karman_re50,ppo,381,152.4,alpha,front,1.500152349472046 +karman_re50,ppo,381,152.4,alpha,upper,-4.82886266708374 +karman_re50,ppo,381,152.4,alpha,lower,3.796413898468018 +karman_re50,ppo,382,152.8,alpha,front,1.8563551902770998 +karman_re50,ppo,382,152.8,alpha,upper,-4.972750127315521 +karman_re50,ppo,382,152.8,alpha,lower,4.0661585330963135 +karman_re50,ppo,383,153.2,alpha,front,2.0797786712646484 +karman_re50,ppo,383,153.2,alpha,upper,-5.072856664657593 +karman_re50,ppo,383,153.2,alpha,lower,4.30534303188324 +karman_re50,ppo,384,153.6,alpha,front,2.1049866676330566 +karman_re50,ppo,384,153.6,alpha,upper,-5.021748900413513 +karman_re50,ppo,384,153.6,alpha,lower,4.428002119064331 +karman_re50,ppo,385,154.0,alpha,front,1.8498589992523196 +karman_re50,ppo,385,154.0,alpha,upper,-4.700916588306427 +karman_re50,ppo,385,154.0,alpha,lower,4.363460183143616 +karman_re50,ppo,386,154.4,alpha,front,1.2864365577697754 +karman_re50,ppo,386,154.4,alpha,upper,-4.055751487612724 +karman_re50,ppo,386,154.4,alpha,lower,4.186798810958862 +karman_re50,ppo,387,154.8,alpha,front,0.4913981258869171 +karman_re50,ppo,387,154.8,alpha,upper,-3.138365626335144 +karman_re50,ppo,387,154.8,alpha,lower,4.0758994817733765 +karman_re50,ppo,388,155.2,alpha,front,-0.4383184611797332 +karman_re50,ppo,388,155.2,alpha,upper,-2.1319998502731323 +karman_re50,ppo,388,155.2,alpha,lower,3.96342933177948 +karman_re50,ppo,389,155.6,alpha,front,-1.4552764892578125 +karman_re50,ppo,389,155.6,alpha,upper,-1.3295204639434814 +karman_re50,ppo,389,155.6,alpha,lower,3.505178451538086 +karman_re50,ppo,390,156.0,alpha,front,-2.4334557056427 +karman_re50,ppo,390,156.0,alpha,upper,-1.0675592422485352 +karman_re50,ppo,390,156.0,alpha,lower,2.6659961938858032 +karman_re50,ppo,391,156.4,alpha,front,-3.1693153381347656 +karman_re50,ppo,391,156.4,alpha,upper,-1.4332318305969238 +karman_re50,ppo,391,156.4,alpha,lower,1.8441071510314944 +karman_re50,ppo,392,156.8,alpha,front,-3.483000755310059 +karman_re50,ppo,392,156.8,alpha,upper,-2.1170082092285156 +karman_re50,ppo,392,156.8,alpha,lower,1.58594274520874 +karman_re50,ppo,393,157.2,alpha,front,-3.395472526550293 +karman_re50,ppo,393,157.2,alpha,upper,-2.7172317504882812 +karman_re50,ppo,393,157.2,alpha,lower,2.0889147520065308 +karman_re50,ppo,394,157.6,alpha,front,-3.1970169544219975 +karman_re50,ppo,394,157.6,alpha,upper,-3.1596070528030396 +karman_re50,ppo,394,157.6,alpha,lower,2.862308979034424 +karman_re50,ppo,395,158.0,alpha,front,-3.0342977046966553 +karman_re50,ppo,395,158.0,alpha,upper,-3.476912796497345 +karman_re50,ppo,395,158.0,alpha,lower,3.438536763191223 +karman_re50,ppo,396,158.4,alpha,front,-2.8060061931610107 +karman_re50,ppo,396,158.4,alpha,upper,-3.6611172556877136 +karman_re50,ppo,396,158.4,alpha,lower,3.786247968673706 +karman_re50,ppo,397,158.8,alpha,front,-2.380945920944214 +karman_re50,ppo,397,158.8,alpha,upper,-3.7132990956306453 +karman_re50,ppo,397,158.8,alpha,lower,4.036347389221191 +karman_re50,ppo,398,159.2,alpha,front,-1.763620376586914 +karman_re50,ppo,398,159.2,alpha,upper,-3.6849961280822754 +karman_re50,ppo,398,159.2,alpha,lower,4.127925395965576 +karman_re50,ppo,399,159.6,alpha,front,-1.0558604001998901 +karman_re50,ppo,399,159.6,alpha,upper,-3.7083383798599248 +karman_re50,ppo,399,159.6,alpha,lower,3.9749590754508968 +karman_re50,ppo,0,0.0,omega,front,0.011360170841217042 +karman_re50,ppo,0,0.0,omega,upper,-0.04305406391620636 +karman_re50,ppo,0,0.0,omega,lower,0.021520328521728516 +karman_re50,ppo,1,0.4,omega,front,0.011367785930633546 +karman_re50,ppo,1,0.4,omega,upper,-0.04326259136199951 +karman_re50,ppo,1,0.4,omega,lower,0.022988295555114748 +karman_re50,ppo,2,0.8,omega,front,0.012362585067749024 +karman_re50,ppo,2,0.8,omega,upper,-0.046758347749710084 +karman_re50,ppo,2,0.8,omega,lower,0.026833975315093996 +karman_re50,ppo,3,1.2,omega,front,0.01545127034187317 +karman_re50,ppo,3,1.2,omega,upper,-0.04823611199855805 +karman_re50,ppo,3,1.2,omega,lower,0.033394286036491395 +karman_re50,ppo,4,1.6,omega,front,0.017151899337768554 +karman_re50,ppo,4,1.6,omega,upper,-0.04851688623428345 +karman_re50,ppo,4,1.6,omega,lower,0.04089363276958466 +karman_re50,ppo,5,2.0,omega,front,0.015875544548034668 +karman_re50,ppo,5,2.0,omega,upper,-0.04845645308494568 +karman_re50,ppo,5,2.0,omega,lower,0.04554374098777771 +karman_re50,ppo,6,2.4,omega,front,0.012303699254989624 +karman_re50,ppo,6,2.4,omega,upper,-0.04606455743312836 +karman_re50,ppo,6,2.4,omega,lower,0.046662766933441166 +karman_re50,ppo,7,2.8,omega,front,0.007288212776184082 +karman_re50,ppo,7,2.8,omega,upper,-0.040083200186491016 +karman_re50,ppo,7,2.8,omega,lower,0.04588020920753479 +karman_re50,ppo,8,3.2,omega,front,0.0008271905779838562 +karman_re50,ppo,8,3.2,omega,upper,-0.03227896511554718 +karman_re50,ppo,8,3.2,omega,lower,0.043876601457595824 +karman_re50,ppo,9,3.6,omega,front,-0.0064562118053436285 +karman_re50,ppo,9,3.6,omega,upper,-0.02538594126701355 +karman_re50,ppo,9,3.6,omega,lower,0.04082824110984802 +karman_re50,ppo,10,4.0,omega,front,-0.013377883434295655 +karman_re50,ppo,10,4.0,omega,upper,-0.02110074520111084 +karman_re50,ppo,10,4.0,omega,lower,0.03761380076408386 +karman_re50,ppo,11,4.4,omega,front,-0.019358490705490113 +karman_re50,ppo,11,4.4,omega,upper,-0.02025136590003967 +karman_re50,ppo,11,4.4,omega,lower,0.034713397026062014 +karman_re50,ppo,12,4.8,omega,front,-0.024165387153625487 +karman_re50,ppo,12,4.8,omega,upper,-0.022249444723129272 +karman_re50,ppo,12,4.8,omega,lower,0.0325215744972229 +karman_re50,ppo,13,5.2,omega,front,-0.027470963001251222 +karman_re50,ppo,13,5.2,omega,upper,-0.025603283643722535 +karman_re50,ppo,13,5.2,omega,lower,0.032228909730911255 +karman_re50,ppo,14,5.6,omega,front,-0.029375834465026857 +karman_re50,ppo,14,5.6,omega,upper,-0.02894433379173279 +karman_re50,ppo,14,5.6,omega,lower,0.03410298764705658 +karman_re50,ppo,15,6.0,omega,front,-0.03038486957550049 +karman_re50,ppo,15,6.0,omega,upper,-0.03176733613014221 +karman_re50,ppo,15,6.0,omega,lower,0.03653295189142227 +karman_re50,ppo,16,6.4,omega,front,-0.0305141282081604 +karman_re50,ppo,16,6.4,omega,upper,-0.033776040077209475 +karman_re50,ppo,16,6.4,omega,lower,0.03778858363628387 +karman_re50,ppo,17,6.8,omega,front,-0.029302706718444826 +karman_re50,ppo,17,6.8,omega,upper,-0.034630929231643674 +karman_re50,ppo,17,6.8,omega,lower,0.03725025177001953 +karman_re50,ppo,18,7.2,omega,front,-0.026579079627990724 +karman_re50,ppo,18,7.2,omega,upper,-0.0347319769859314 +karman_re50,ppo,18,7.2,omega,lower,0.03478579878807068 +karman_re50,ppo,19,7.6,omega,front,-0.022344353199005126 +karman_re50,ppo,19,7.6,omega,upper,-0.034333747625350956 +karman_re50,ppo,19,7.6,omega,lower,0.030791292786598205 +karman_re50,ppo,20,8.0,omega,front,-0.016950497627258303 +karman_re50,ppo,20,8.0,omega,upper,-0.03362153053283692 +karman_re50,ppo,20,8.0,omega,lower,0.026445887088775634 +karman_re50,ppo,21,8.4,omega,front,-0.010976372957229615 +karman_re50,ppo,21,8.4,omega,upper,-0.03310769081115723 +karman_re50,ppo,21,8.4,omega,lower,0.023939917087554934 +karman_re50,ppo,22,8.8,omega,front,-0.0051386111974716184 +karman_re50,ppo,22,8.8,omega,upper,-0.033742514848709104 +karman_re50,ppo,22,8.8,omega,lower,0.02493013024330139 +karman_re50,ppo,23,9.2,omega,front,-4.78789210319519e-05 +karman_re50,ppo,23,9.2,omega,upper,-0.03617485523223877 +karman_re50,ppo,23,9.2,omega,lower,0.02934218168258667 +karman_re50,ppo,24,9.6,omega,front,0.004123392403125763 +karman_re50,ppo,24,9.6,omega,upper,-0.04016592875123024 +karman_re50,ppo,24,9.6,omega,lower,0.03597332626581192 +karman_re50,ppo,25,10.0,omega,front,0.007558298110961914 +karman_re50,ppo,25,10.0,omega,upper,-0.04446094274520874 +karman_re50,ppo,25,10.0,omega,lower,0.04356372237205505 +karman_re50,ppo,26,10.4,omega,front,0.010138084888458252 +karman_re50,ppo,26,10.4,omega,upper,-0.04750829696655273 +karman_re50,ppo,26,10.4,omega,lower,0.05086562633514404 +karman_re50,ppo,27,10.8,omega,front,0.011015243530273437 +karman_re50,ppo,27,10.8,omega,upper,-0.04800258219242096 +karman_re50,ppo,27,10.8,omega,lower,0.05592104315757752 +karman_re50,ppo,28,11.2,omega,front,0.009346868991851807 +karman_re50,ppo,28,11.2,omega,upper,-0.04480668008327484 +karman_re50,ppo,28,11.2,omega,lower,0.05693824172019959 +karman_re50,ppo,29,11.6,omega,front,0.004571658074855805 +karman_re50,ppo,29,11.6,omega,upper,-0.037910297065973285 +karman_re50,ppo,29,11.6,omega,lower,0.053111168146133425 +karman_re50,ppo,30,12.0,omega,front,-0.0031878408789634705 +karman_re50,ppo,30,12.0,omega,upper,-0.028965524435043334 +karman_re50,ppo,30,12.0,omega,lower,0.045179132223129276 +karman_re50,ppo,31,12.4,omega,front,-0.012658765316009521 +karman_re50,ppo,31,12.4,omega,upper,-0.020516470670700074 +karman_re50,ppo,31,12.4,omega,lower,0.03552498370409012 +karman_re50,ppo,32,12.8,omega,front,-0.021999499797821044 +karman_re50,ppo,32,12.8,omega,upper,-0.014818625450134277 +karman_re50,ppo,32,12.8,omega,lower,0.02632728934288025 +karman_re50,ppo,33,13.2,omega,front,-0.029971017837524414 +karman_re50,ppo,33,13.2,omega,upper,-0.0137739896774292 +karman_re50,ppo,33,13.2,omega,lower,0.018368844985961915 +karman_re50,ppo,34,13.6,omega,front,-0.03510143518447876 +karman_re50,ppo,34,13.6,omega,upper,-0.01693544864654541 +karman_re50,ppo,34,13.6,omega,lower,0.013976149559020996 +karman_re50,ppo,35,14.0,omega,front,-0.036585071086883546 +karman_re50,ppo,35,14.0,omega,upper,-0.021280070543289186 +karman_re50,ppo,35,14.0,omega,lower,0.016011323928833008 +karman_re50,ppo,36,14.4,omega,front,-0.036217055320739745 +karman_re50,ppo,36,14.4,omega,upper,-0.025293743610382082 +karman_re50,ppo,36,14.4,omega,lower,0.021969890594482424 +karman_re50,ppo,37,14.8,omega,front,-0.0357074499130249 +karman_re50,ppo,37,14.8,omega,upper,-0.029187473058700564 +karman_re50,ppo,37,14.8,omega,lower,0.027551785707473755 +karman_re50,ppo,38,15.2,omega,front,-0.03473244667053223 +karman_re50,ppo,38,15.2,omega,upper,-0.03232839345932007 +karman_re50,ppo,38,15.2,omega,lower,0.031052955389022828 +karman_re50,ppo,39,15.6,omega,front,-0.03192182302474976 +karman_re50,ppo,39,15.6,omega,upper,-0.033701926469802856 +karman_re50,ppo,39,15.6,omega,lower,0.03312398314476013 +karman_re50,ppo,40,16.0,omega,front,-0.02667501211166382 +karman_re50,ppo,40,16.0,omega,upper,-0.03322795033454895 +karman_re50,ppo,40,16.0,omega,lower,0.033710273504257204 +karman_re50,ppo,41,16.4,omega,front,-0.019411669969558717 +karman_re50,ppo,41,16.4,omega,upper,-0.03157122194766998 +karman_re50,ppo,41,16.4,omega,lower,0.032434635162353516 +karman_re50,ppo,42,16.8,omega,front,-0.011215163469314575 +karman_re50,ppo,42,16.8,omega,upper,-0.030368369817733765 +karman_re50,ppo,42,16.8,omega,lower,0.030383998155593873 +karman_re50,ppo,43,17.2,omega,front,-0.003243108093738556 +karman_re50,ppo,43,17.2,omega,upper,-0.03186838746070862 +karman_re50,ppo,43,17.2,omega,lower,0.029982317686080933 +karman_re50,ppo,44,17.6,omega,front,0.003694514334201813 +karman_re50,ppo,44,17.6,omega,upper,-0.03663080155849457 +karman_re50,ppo,44,17.6,omega,lower,0.03178630530834198 +karman_re50,ppo,45,18.0,omega,front,0.009635579586029053 +karman_re50,ppo,45,18.0,omega,upper,-0.04248127654194832 +karman_re50,ppo,45,18.0,omega,lower,0.03497195243835449 +karman_re50,ppo,46,18.4,omega,front,0.015013365745544434 +karman_re50,ppo,46,18.4,omega,upper,-0.046822437047958375 +karman_re50,ppo,46,18.4,omega,lower,0.039548981785774234 +karman_re50,ppo,47,18.8,omega,front,0.019505648612976073 +karman_re50,ppo,47,18.8,omega,upper,-0.0494593495130539 +karman_re50,ppo,47,18.8,omega,lower,0.04495390892028809 +karman_re50,ppo,48,19.2,omega,front,0.022355971336364747 +karman_re50,ppo,48,19.2,omega,upper,-0.051135077476501464 +karman_re50,ppo,48,19.2,omega,lower,0.04944138646125794 +karman_re50,ppo,49,19.6,omega,front,0.02274963617324829 +karman_re50,ppo,49,19.6,omega,upper,-0.05089425206184387 +karman_re50,ppo,49,19.6,omega,lower,0.05071546673774719 +karman_re50,ppo,50,20.0,omega,front,0.01978299140930176 +karman_re50,ppo,50,20.0,omega,upper,-0.04734070539474487 +karman_re50,ppo,50,20.0,omega,lower,0.04721748948097229 +karman_re50,ppo,51,20.4,omega,front,0.013102502822875978 +karman_re50,ppo,51,20.4,omega,upper,-0.04059233441948891 +karman_re50,ppo,51,20.4,omega,lower,0.040359194278717044 +karman_re50,ppo,52,20.8,omega,front,0.004339377582073212 +karman_re50,ppo,52,20.8,omega,upper,-0.03164694368839264 +karman_re50,ppo,52,20.8,omega,lower,0.035405367612838745 +karman_re50,ppo,53,21.2,omega,front,-0.003975283801555634 +karman_re50,ppo,53,21.2,omega,upper,-0.02216665744781494 +karman_re50,ppo,53,21.2,omega,lower,0.0359791162610054 +karman_re50,ppo,54,21.6,omega,front,-0.012264206409454345 +karman_re50,ppo,54,21.6,omega,upper,-0.01530970811843872 +karman_re50,ppo,54,21.6,omega,lower,0.03716024935245514 +karman_re50,ppo,55,22.0,omega,front,-0.02170686960220337 +karman_re50,ppo,55,22.0,omega,upper,-0.013985233306884766 +karman_re50,ppo,55,22.0,omega,lower,0.0323756217956543 +karman_re50,ppo,56,22.4,omega,front,-0.02998587131500244 +karman_re50,ppo,56,22.4,omega,upper,-0.018272624015808106 +karman_re50,ppo,56,22.4,omega,lower,0.02472622871398926 +karman_re50,ppo,57,22.8,omega,front,-0.03436489582061768 +karman_re50,ppo,57,22.8,omega,upper,-0.025325080156326295 +karman_re50,ppo,57,22.8,omega,lower,0.02122666120529175 +karman_re50,ppo,58,23.2,omega,front,-0.03450178861618042 +karman_re50,ppo,58,23.2,omega,upper,-0.0319072824716568 +karman_re50,ppo,58,23.2,omega,lower,0.024377907514572143 +karman_re50,ppo,59,23.6,omega,front,-0.03219128131866455 +karman_re50,ppo,59,23.6,omega,upper,-0.03653493165969849 +karman_re50,ppo,59,23.6,omega,lower,0.030747488737106324 +karman_re50,ppo,60,24.0,omega,front,-0.02907658338546753 +karman_re50,ppo,60,24.0,omega,upper,-0.038723831325769426 +karman_re50,ppo,60,24.0,omega,lower,0.03551526308059692 +karman_re50,ppo,61,24.4,omega,front,-0.02490623950958252 +karman_re50,ppo,61,24.4,omega,upper,-0.03866565123200417 +karman_re50,ppo,61,24.4,omega,lower,0.03802971065044403 +karman_re50,ppo,62,24.8,omega,front,-0.018918578624725343 +karman_re50,ppo,62,24.8,omega,upper,-0.03763645812869072 +karman_re50,ppo,62,24.8,omega,lower,0.039764995574951174 +karman_re50,ppo,63,25.2,omega,front,-0.011469799280166627 +karman_re50,ppo,63,25.2,omega,upper,-0.037481696605682374 +karman_re50,ppo,63,25.2,omega,lower,0.0404611349105835 +karman_re50,ppo,64,25.6,omega,front,-0.0040036305785179135 +karman_re50,ppo,64,25.6,omega,upper,-0.0399929615855217 +karman_re50,ppo,64,25.6,omega,lower,0.03872430384159088 +karman_re50,ppo,65,26.0,omega,front,0.0027521374821662904 +karman_re50,ppo,65,26.0,omega,upper,-0.04471733629703522 +karman_re50,ppo,65,26.0,omega,lower,0.035214018225669864 +karman_re50,ppo,66,26.4,omega,front,0.009480819702148438 +karman_re50,ppo,66,26.4,omega,upper,-0.04763064205646515 +karman_re50,ppo,66,26.4,omega,lower,0.032876489758491514 +karman_re50,ppo,67,26.8,omega,front,0.015783330202102663 +karman_re50,ppo,67,26.8,omega,upper,-0.04743849575519562 +karman_re50,ppo,67,26.8,omega,lower,0.03297195792198181 +karman_re50,ppo,68,27.2,omega,front,0.020484180450439454 +karman_re50,ppo,68,27.2,omega,upper,-0.04696340680122375 +karman_re50,ppo,68,27.2,omega,lower,0.03427764058113098 +karman_re50,ppo,69,27.6,omega,front,0.023643882274627687 +karman_re50,ppo,69,27.6,omega,upper,-0.0475836181640625 +karman_re50,ppo,69,27.6,omega,lower,0.03630665868520737 +karman_re50,ppo,70,28.0,omega,front,0.02545637607574463 +karman_re50,ppo,70,28.0,omega,upper,-0.048388915061950685 +karman_re50,ppo,70,28.0,omega,lower,0.038895249366760254 +karman_re50,ppo,71,28.4,omega,front,0.025300376415252686 +karman_re50,ppo,71,28.4,omega,upper,-0.04798019587993622 +karman_re50,ppo,71,28.4,omega,lower,0.04088996410369873 +karman_re50,ppo,72,28.8,omega,front,0.022398617267608643 +karman_re50,ppo,72,28.8,omega,upper,-0.04498188257217407 +karman_re50,ppo,72,28.8,omega,lower,0.041206117868423466 +karman_re50,ppo,73,29.2,omega,front,0.016464813947677612 +karman_re50,ppo,73,29.2,omega,upper,-0.038684131056070326 +karman_re50,ppo,73,29.2,omega,lower,0.04027799367904663 +karman_re50,ppo,74,29.6,omega,front,0.008188691139221192 +karman_re50,ppo,74,29.6,omega,upper,-0.029713513851165774 +karman_re50,ppo,74,29.6,omega,lower,0.0399124014377594 +karman_re50,ppo,75,30.0,omega,front,-0.0013714411854743958 +karman_re50,ppo,75,30.0,omega,upper,-0.020087229013442995 +karman_re50,ppo,75,30.0,omega,lower,0.03964518189430237 +karman_re50,ppo,76,30.4,omega,front,-0.011278319358825685 +karman_re50,ppo,76,30.4,omega,upper,-0.012974328994750976 +karman_re50,ppo,76,30.4,omega,lower,0.03681579083204269 +karman_re50,ppo,77,30.8,omega,front,-0.020272181034088135 +karman_re50,ppo,77,30.8,omega,upper,-0.01128100872039795 +karman_re50,ppo,77,30.8,omega,lower,0.031018521785736084 +karman_re50,ppo,78,31.2,omega,front,-0.027404780387878417 +karman_re50,ppo,78,31.2,omega,upper,-0.015337331295013428 +karman_re50,ppo,78,31.2,omega,lower,0.024253618717193604 +karman_re50,ppo,79,31.6,omega,front,-0.0313809061050415 +karman_re50,ppo,79,31.6,omega,upper,-0.022632358074188234 +karman_re50,ppo,79,31.6,omega,lower,0.020854606628417968 +karman_re50,ppo,80,32.0,omega,front,-0.031717543601989744 +karman_re50,ppo,80,32.0,omega,upper,-0.029585896730422973 +karman_re50,ppo,80,32.0,omega,lower,0.024022079706192016 +karman_re50,ppo,81,32.4,omega,front,-0.030504069328308105 +karman_re50,ppo,81,32.4,omega,upper,-0.03496038794517517 +karman_re50,ppo,81,32.4,omega,lower,0.030680420994758605 +karman_re50,ppo,82,32.8,omega,front,-0.029181389808654784 +karman_re50,ppo,82,32.8,omega,upper,-0.03888209357857704 +karman_re50,ppo,82,32.8,omega,lower,0.03647976577281952 +karman_re50,ppo,83,33.2,omega,front,-0.02708711624145508 +karman_re50,ppo,83,33.2,omega,upper,-0.04116753473877907 +karman_re50,ppo,83,33.2,omega,lower,0.040223336815834045 +karman_re50,ppo,84,33.6,omega,front,-0.023077771663665772 +karman_re50,ppo,84,33.6,omega,upper,-0.041828404515981674 +karman_re50,ppo,84,33.6,omega,lower,0.04255071759223938 +karman_re50,ppo,85,34.0,omega,front,-0.01719040870666504 +karman_re50,ppo,85,34.0,omega,upper,-0.04137398317456246 +karman_re50,ppo,85,34.0,omega,lower,0.042765891551971434 +karman_re50,ppo,86,34.4,omega,front,-0.010294909477233887 +karman_re50,ppo,86,34.4,omega,upper,-0.040916187465190886 +karman_re50,ppo,86,34.4,omega,lower,0.040192822217941286 +karman_re50,ppo,87,34.8,omega,front,-0.003308476507663727 +karman_re50,ppo,87,34.8,omega,upper,-0.04182372584939003 +karman_re50,ppo,87,34.8,omega,lower,0.036323132514953616 +karman_re50,ppo,88,35.2,omega,front,0.0033209839463233947 +karman_re50,ppo,88,35.2,omega,upper,-0.04406886160373688 +karman_re50,ppo,88,35.2,omega,lower,0.03353243410587311 +karman_re50,ppo,89,35.6,omega,front,0.00946427583694458 +karman_re50,ppo,89,35.6,omega,upper,-0.04627116322517395 +karman_re50,ppo,89,35.6,omega,lower,0.033122376799583436 +karman_re50,ppo,90,36.0,omega,front,0.014841761589050293 +karman_re50,ppo,90,36.0,omega,upper,-0.04782524645328522 +karman_re50,ppo,90,36.0,omega,lower,0.034923648834228514 +karman_re50,ppo,91,36.4,omega,front,0.01918470859527588 +karman_re50,ppo,91,36.4,omega,upper,-0.049147873520851135 +karman_re50,ppo,91,36.4,omega,lower,0.03787373185157776 +karman_re50,ppo,92,36.8,omega,front,0.022353122234344484 +karman_re50,ppo,92,36.8,omega,upper,-0.05020001769065857 +karman_re50,ppo,92,36.8,omega,lower,0.041078948974609376 +karman_re50,ppo,93,37.2,omega,front,0.023702678680419923 +karman_re50,ppo,93,37.2,omega,upper,-0.0502764368057251 +karman_re50,ppo,93,37.2,omega,lower,0.043442103862762455 +karman_re50,ppo,94,37.6,omega,front,0.022294867038726806 +karman_re50,ppo,94,37.6,omega,upper,-0.048105543851852416 +karman_re50,ppo,94,37.6,omega,lower,0.043745235204696656 +karman_re50,ppo,95,38.0,omega,front,0.017452406883239745 +karman_re50,ppo,95,38.0,omega,upper,-0.04260033130645752 +karman_re50,ppo,95,38.0,omega,lower,0.041955006122589115 +karman_re50,ppo,96,38.4,omega,front,0.009383442401885987 +karman_re50,ppo,96,38.4,omega,upper,-0.033485682606697084 +karman_re50,ppo,96,38.4,omega,lower,0.03977333188056946 +karman_re50,ppo,97,38.8,omega,front,-0.0006546592712402344 +karman_re50,ppo,97,38.8,omega,upper,-0.021942945718765258 +karman_re50,ppo,97,38.8,omega,lower,0.038221521377563475 +karman_re50,ppo,98,39.2,omega,front,-0.010993657112121582 +karman_re50,ppo,98,39.2,omega,upper,-0.011828007698059083 +karman_re50,ppo,98,39.2,omega,lower,0.035729702413082126 +karman_re50,ppo,99,39.6,omega,front,-0.020378262996673585 +karman_re50,ppo,99,39.6,omega,upper,-0.007860596179962159 +karman_re50,ppo,99,39.6,omega,lower,0.03055931329727173 +karman_re50,ppo,100,40.0,omega,front,-0.028521604537963867 +karman_re50,ppo,100,40.0,omega,upper,-0.011018550395965577 +karman_re50,ppo,100,40.0,omega,lower,0.02238771677017212 +karman_re50,ppo,101,40.4,omega,front,-0.033708109855651855 +karman_re50,ppo,101,40.4,omega,upper,-0.018154940605163573 +karman_re50,ppo,101,40.4,omega,lower,0.01621402978897095 +karman_re50,ppo,102,40.8,omega,front,-0.03451148986816406 +karman_re50,ppo,102,40.8,omega,upper,-0.024760138988494874 +karman_re50,ppo,102,40.8,omega,lower,0.01779574394226074 +karman_re50,ppo,103,41.2,omega,front,-0.03323412418365478 +karman_re50,ppo,103,41.2,omega,upper,-0.030121541023254397 +karman_re50,ppo,103,41.2,omega,lower,0.02484153747558594 +karman_re50,ppo,104,41.6,omega,front,-0.03203175067901611 +karman_re50,ppo,104,41.6,omega,upper,-0.0349681282043457 +karman_re50,ppo,104,41.6,omega,lower,0.03189493417739868 +karman_re50,ppo,105,42.0,omega,front,-0.03063364028930664 +karman_re50,ppo,105,42.0,omega,upper,-0.0384119214117527 +karman_re50,ppo,105,42.0,omega,lower,0.036236110329627993 +karman_re50,ppo,106,42.4,omega,front,-0.02749583721160889 +karman_re50,ppo,106,42.4,omega,upper,-0.03946765318512917 +karman_re50,ppo,106,42.4,omega,lower,0.03880381047725678 +karman_re50,ppo,107,42.8,omega,front,-0.022141997814178468 +karman_re50,ppo,107,42.8,omega,upper,-0.03852733686566353 +karman_re50,ppo,107,42.8,omega,lower,0.03993215203285217 +karman_re50,ppo,108,43.2,omega,front,-0.015532420873641968 +karman_re50,ppo,108,43.2,omega,upper,-0.03715213179588318 +karman_re50,ppo,108,43.2,omega,lower,0.038653808236122134 +karman_re50,ppo,109,43.6,omega,front,-0.0087267804145813 +karman_re50,ppo,109,43.6,omega,upper,-0.037284610271453855 +karman_re50,ppo,109,43.6,omega,lower,0.036096535325050354 +karman_re50,ppo,110,44.0,omega,front,-0.002148987948894501 +karman_re50,ppo,110,44.0,omega,upper,-0.03962852105498314 +karman_re50,ppo,110,44.0,omega,lower,0.034610595703125004 +karman_re50,ppo,111,44.4,omega,front,0.004103721678256988 +karman_re50,ppo,111,44.4,omega,upper,-0.04304083526134491 +karman_re50,ppo,111,44.4,omega,lower,0.03518800675868988 +karman_re50,ppo,112,44.8,omega,front,0.009803156852722168 +karman_re50,ppo,112,44.8,omega,upper,-0.046164560914039615 +karman_re50,ppo,112,44.8,omega,lower,0.03769479751586914 +karman_re50,ppo,113,45.2,omega,front,0.014632456302642823 +karman_re50,ppo,113,45.2,omega,upper,-0.0487545907497406 +karman_re50,ppo,113,45.2,omega,lower,0.04121987044811249 +karman_re50,ppo,114,45.6,omega,front,0.018428397178649903 +karman_re50,ppo,114,45.6,omega,upper,-0.05084392547607422 +karman_re50,ppo,114,45.6,omega,lower,0.044644399881362914 +karman_re50,ppo,115,46.0,omega,front,0.020815367698669433 +karman_re50,ppo,115,46.0,omega,upper,-0.05185780167579651 +karman_re50,ppo,115,46.0,omega,lower,0.046930620670318605 +karman_re50,ppo,116,46.4,omega,front,0.020834882259368897 +karman_re50,ppo,116,46.4,omega,upper,-0.05075906753540039 +karman_re50,ppo,116,46.4,omega,lower,0.046875081062316894 +karman_re50,ppo,117,46.8,omega,front,0.017588515281677247 +karman_re50,ppo,117,46.8,omega,upper,-0.046593348979949954 +karman_re50,ppo,117,46.8,omega,lower,0.04411298513412475 +karman_re50,ppo,118,47.2,omega,front,0.010967371463775634 +karman_re50,ppo,118,47.2,omega,upper,-0.03904331132769585 +karman_re50,ppo,118,47.2,omega,lower,0.04048195481300354 +karman_re50,ppo,119,47.6,omega,front,0.0020334824919700624 +karman_re50,ppo,119,47.6,omega,upper,-0.028527005910873413 +karman_re50,ppo,119,47.6,omega,lower,0.0385098659992218 +karman_re50,ppo,120,48.0,omega,front,-0.008086154460906983 +karman_re50,ppo,120,48.0,omega,upper,-0.017128024101257324 +karman_re50,ppo,120,48.0,omega,lower,0.036893128156661986 +karman_re50,ppo,121,48.4,omega,front,-0.0187292754650116 +karman_re50,ppo,121,48.4,omega,upper,-0.009268412590026856 +karman_re50,ppo,121,48.4,omega,lower,0.03157315969467163 +karman_re50,ppo,122,48.8,omega,front,-0.02851318359375 +karman_re50,ppo,122,48.8,omega,upper,-0.00858762264251709 +karman_re50,ppo,122,48.8,omega,lower,0.022203928232192995 +karman_re50,ppo,123,49.2,omega,front,-0.03550488948822022 +karman_re50,ppo,123,49.2,omega,upper,-0.01429781198501587 +karman_re50,ppo,123,49.2,omega,lower,0.013369898796081543 +karman_re50,ppo,124,49.6,omega,front,-0.03740260124206543 +karman_re50,ppo,124,49.6,omega,upper,-0.021753435134887696 +karman_re50,ppo,124,49.6,omega,lower,0.012509546279907227 +karman_re50,ppo,125,50.0,omega,front,-0.03544702768325806 +karman_re50,ppo,125,50.0,omega,upper,-0.027976782321929933 +karman_re50,ppo,125,50.0,omega,lower,0.019843454360961913 +karman_re50,ppo,126,50.4,omega,front,-0.03284271001815796 +karman_re50,ppo,126,50.4,omega,upper,-0.03300473153591156 +karman_re50,ppo,126,50.4,omega,lower,0.028936283588409425 +karman_re50,ppo,127,50.8,omega,front,-0.03073755502700806 +karman_re50,ppo,127,50.8,omega,upper,-0.036249575018882756 +karman_re50,ppo,127,50.8,omega,lower,0.034691168069839476 +karman_re50,ppo,128,51.2,omega,front,-0.02774498462677002 +karman_re50,ppo,128,51.2,omega,upper,-0.03710526585578919 +karman_re50,ppo,128,51.2,omega,lower,0.03749971807003021 +karman_re50,ppo,129,51.6,omega,front,-0.022558960914611816 +karman_re50,ppo,129,51.6,omega,upper,-0.03615787625312805 +karman_re50,ppo,129,51.6,omega,lower,0.039346129298210145 +karman_re50,ppo,130,52.0,omega,front,-0.015646951198577883 +karman_re50,ppo,130,52.0,omega,upper,-0.035086528062820435 +karman_re50,ppo,130,52.0,omega,lower,0.03989944338798523 +karman_re50,ppo,131,52.4,omega,front,-0.008402963876724243 +karman_re50,ppo,131,52.4,omega,upper,-0.035918618440628054 +karman_re50,ppo,131,52.4,omega,lower,0.038600279092788695 +karman_re50,ppo,132,52.8,omega,front,-0.00159712553024292 +karman_re50,ppo,132,52.8,omega,upper,-0.03947587981820107 +karman_re50,ppo,132,52.8,omega,lower,0.036823518574237823 +karman_re50,ppo,133,53.2,omega,front,0.004787321984767914 +karman_re50,ppo,133,53.2,omega,upper,-0.04393795669078827 +karman_re50,ppo,133,53.2,omega,lower,0.03596372544765473 +karman_re50,ppo,134,53.6,omega,front,0.010849573612213136 +karman_re50,ppo,134,53.6,omega,upper,-0.0468063759803772 +karman_re50,ppo,134,53.6,omega,lower,0.037040889263153076 +karman_re50,ppo,135,54.0,omega,front,0.01591032385826111 +karman_re50,ppo,135,54.0,omega,upper,-0.04838613510131836 +karman_re50,ppo,135,54.0,omega,lower,0.03942226409912109 +karman_re50,ppo,136,54.4,omega,front,0.01960256338119507 +karman_re50,ppo,136,54.4,omega,upper,-0.04991321682929993 +karman_re50,ppo,136,54.4,omega,lower,0.04180988669395447 +karman_re50,ppo,137,54.8,omega,front,0.021935749053955077 +karman_re50,ppo,137,54.8,omega,upper,-0.05105697512626648 +karman_re50,ppo,137,54.8,omega,lower,0.0434861958026886 +karman_re50,ppo,138,55.2,omega,front,0.022296385765075685 +karman_re50,ppo,138,55.2,omega,upper,-0.05071991682052612 +karman_re50,ppo,138,55.2,omega,lower,0.04363874077796936 +karman_re50,ppo,139,55.6,omega,front,0.01986964702606201 +karman_re50,ppo,139,55.6,omega,upper,-0.047811076045036316 +karman_re50,ppo,139,55.6,omega,lower,0.04187470316886902 +karman_re50,ppo,140,56.0,omega,front,0.014492888450622559 +karman_re50,ppo,140,56.0,omega,upper,-0.0417939867079258 +karman_re50,ppo,140,56.0,omega,lower,0.03968102157115937 +karman_re50,ppo,141,56.4,omega,front,0.007046639919281006 +karman_re50,ppo,141,56.4,omega,upper,-0.032977312207221984 +karman_re50,ppo,141,56.4,omega,lower,0.0397290301322937 +karman_re50,ppo,142,56.8,omega,front,-0.0016960093379020692 +karman_re50,ppo,142,56.8,omega,upper,-0.023077503442764283 +karman_re50,ppo,142,56.8,omega,lower,0.04102070331573487 +karman_re50,ppo,143,57.2,omega,front,-0.012079815864562988 +karman_re50,ppo,143,57.2,omega,upper,-0.014803466796875 +karman_re50,ppo,143,57.2,omega,lower,0.03782436966896057 +karman_re50,ppo,144,57.6,omega,front,-0.02285592079162598 +karman_re50,ppo,144,57.6,omega,upper,-0.011179218292236328 +karman_re50,ppo,144,57.6,omega,lower,0.028869783878326418 +karman_re50,ppo,145,58.0,omega,front,-0.031213045120239258 +karman_re50,ppo,145,58.0,omega,upper,-0.013744502067565919 +karman_re50,ppo,145,58.0,omega,lower,0.019478347301483154 +karman_re50,ppo,146,58.4,omega,front,-0.035276575088500975 +karman_re50,ppo,146,58.4,omega,upper,-0.0206266987323761 +karman_re50,ppo,146,58.4,omega,lower,0.015306313037872315 +karman_re50,ppo,147,58.8,omega,front,-0.03462956190109253 +karman_re50,ppo,147,58.8,omega,upper,-0.027703689336776735 +karman_re50,ppo,147,58.8,omega,lower,0.019447169303894042 +karman_re50,ppo,148,59.2,omega,front,-0.03190371513366699 +karman_re50,ppo,148,59.2,omega,upper,-0.03281816422939301 +karman_re50,ppo,148,59.2,omega,lower,0.02779693841934204 +karman_re50,ppo,149,59.6,omega,front,-0.029522283077239992 +karman_re50,ppo,149,59.6,omega,upper,-0.035738921761512756 +karman_re50,ppo,149,59.6,omega,lower,0.03439022421836853 +karman_re50,ppo,150,60.0,omega,front,-0.02702535629272461 +karman_re50,ppo,150,60.0,omega,upper,-0.0369280332326889 +karman_re50,ppo,150,60.0,omega,lower,0.03807993173599243 +karman_re50,ppo,151,60.4,omega,front,-0.022796587944030763 +karman_re50,ppo,151,60.4,omega,upper,-0.0371827107667923 +karman_re50,ppo,151,60.4,omega,lower,0.04092368841171265 +karman_re50,ppo,152,60.8,omega,front,-0.016574621200561523 +karman_re50,ppo,152,60.8,omega,upper,-0.03725689828395844 +karman_re50,ppo,152,60.8,omega,lower,0.04281311273574829 +karman_re50,ppo,153,61.2,omega,front,-0.009391216039657592 +karman_re50,ppo,153,61.2,omega,upper,-0.03818027779459953 +karman_re50,ppo,153,61.2,omega,lower,0.042017240524291996 +karman_re50,ppo,154,61.6,omega,front,-0.0022773763537406923 +karman_re50,ppo,154,61.6,omega,upper,-0.0409334634244442 +karman_re50,ppo,154,61.6,omega,lower,0.039003309011459354 +karman_re50,ppo,155,62.0,omega,front,0.004341006577014923 +karman_re50,ppo,155,62.0,omega,upper,-0.04463618516921997 +karman_re50,ppo,155,62.0,omega,lower,0.03601837247610092 +karman_re50,ppo,156,62.4,omega,front,0.01047587275505066 +karman_re50,ppo,156,62.4,omega,upper,-0.04704250514507294 +karman_re50,ppo,156,62.4,omega,lower,0.03499195694923401 +karman_re50,ppo,157,62.8,omega,front,0.015668115615844726 +karman_re50,ppo,157,62.8,omega,upper,-0.048005845546722416 +karman_re50,ppo,157,62.8,omega,lower,0.03581948846578598 +karman_re50,ppo,158,63.2,omega,front,0.019540274143218996 +karman_re50,ppo,158,63.2,omega,upper,-0.04887235462665558 +karman_re50,ppo,158,63.2,omega,lower,0.03738418400287628 +karman_re50,ppo,159,63.6,omega,front,0.022181386947631835 +karman_re50,ppo,159,63.6,omega,upper,-0.04973637342453003 +karman_re50,ppo,159,63.6,omega,lower,0.03918420612812042 +karman_re50,ppo,160,64.0,omega,front,0.023231704235076905 +karman_re50,ppo,160,64.0,omega,upper,-0.04983623027801514 +karman_re50,ppo,160,64.0,omega,lower,0.04069380164146424 +karman_re50,ppo,161,64.4,omega,front,0.02196022033691406 +karman_re50,ppo,161,64.4,omega,upper,-0.04796355485916138 +karman_re50,ppo,161,64.4,omega,lower,0.041235231161117554 +karman_re50,ppo,162,64.8,omega,front,0.01780305624008179 +karman_re50,ppo,162,64.8,omega,upper,-0.0432108861207962 +karman_re50,ppo,162,64.8,omega,lower,0.04082790017127991 +karman_re50,ppo,163,65.2,omega,front,0.01097909450531006 +karman_re50,ppo,163,65.2,omega,upper,-0.03551255702972412 +karman_re50,ppo,163,65.2,omega,lower,0.040793035030364994 +karman_re50,ppo,164,65.6,omega,front,0.0023002424836158753 +karman_re50,ppo,164,65.6,omega,upper,-0.02606559157371521 +karman_re50,ppo,164,65.6,omega,lower,0.04122158706188202 +karman_re50,ppo,165,66.0,omega,front,-0.007645564079284668 +karman_re50,ppo,165,66.0,omega,upper,-0.017138137817382812 +karman_re50,ppo,165,66.0,omega,lower,0.03906287133693695 +karman_re50,ppo,166,66.4,omega,front,-0.017850176095962525 +karman_re50,ppo,166,66.4,omega,upper,-0.011815381050109864 +karman_re50,ppo,166,66.4,omega,lower,0.03250621318817139 +karman_re50,ppo,167,66.8,omega,front,-0.026307072639465332 +karman_re50,ppo,167,66.8,omega,upper,-0.012533879280090332 +karman_re50,ppo,167,66.8,omega,lower,0.02458137273788452 +karman_re50,ppo,168,67.2,omega,front,-0.031575894355773924 +karman_re50,ppo,168,67.2,omega,upper,-0.018519365787506105 +karman_re50,ppo,168,67.2,omega,lower,0.019250800609588625 +karman_re50,ppo,169,67.6,omega,front,-0.032700934410095216 +karman_re50,ppo,169,67.6,omega,upper,-0.02581436276435852 +karman_re50,ppo,169,67.6,omega,lower,0.020397123098373413 +karman_re50,ppo,170,68.0,omega,front,-0.031184539794921876 +karman_re50,ppo,170,68.0,omega,upper,-0.03129151463508606 +karman_re50,ppo,170,68.0,omega,lower,0.02688333034515381 +karman_re50,ppo,171,68.4,omega,front,-0.029514727592468263 +karman_re50,ppo,171,68.4,omega,upper,-0.03495689511299133 +karman_re50,ppo,171,68.4,omega,lower,0.03363258004188538 +karman_re50,ppo,172,68.8,omega,front,-0.027857139110565185 +karman_re50,ppo,172,68.8,omega,upper,-0.03741726756095886 +karman_re50,ppo,172,68.8,omega,lower,0.03815053939819336 +karman_re50,ppo,173,69.2,omega,front,-0.02480431318283081 +karman_re50,ppo,173,69.2,omega,upper,-0.038930264562368394 +karman_re50,ppo,173,69.2,omega,lower,0.04137458860874176 +karman_re50,ppo,174,69.6,omega,front,-0.019722031354904176 +karman_re50,ppo,174,69.6,omega,upper,-0.03955663695931435 +karman_re50,ppo,174,69.6,omega,lower,0.043389724493026735 +karman_re50,ppo,175,70.0,omega,front,-0.013202255964279175 +karman_re50,ppo,175,70.0,omega,upper,-0.039728331714868545 +karman_re50,ppo,175,70.0,omega,lower,0.04267229676246643 +karman_re50,ppo,176,70.4,omega,front,-0.006164858341217041 +karman_re50,ppo,176,70.4,omega,upper,-0.04055669590830803 +karman_re50,ppo,176,70.4,omega,lower,0.03938332080841064 +karman_re50,ppo,177,70.8,omega,front,0.0005768397450447082 +karman_re50,ppo,177,70.8,omega,upper,-0.042751156091690064 +karman_re50,ppo,177,70.8,omega,lower,0.03580508291721344 +karman_re50,ppo,178,71.2,omega,front,0.006698797941207886 +karman_re50,ppo,178,71.2,omega,upper,-0.04536105394363404 +karman_re50,ppo,178,71.2,omega,lower,0.03401349782943726 +karman_re50,ppo,179,71.6,omega,front,0.012136492729187012 +karman_re50,ppo,179,71.6,omega,upper,-0.04719630897045136 +karman_re50,ppo,179,71.6,omega,lower,0.034527645111083985 +karman_re50,ppo,180,72.0,omega,front,0.01661327600479126 +karman_re50,ppo,180,72.0,omega,upper,-0.048482260704040527 +karman_re50,ppo,180,72.0,omega,lower,0.036517867743968965 +karman_re50,ppo,181,72.4,omega,front,0.019987332820892333 +karman_re50,ppo,181,72.4,omega,upper,-0.04963080167770386 +karman_re50,ppo,181,72.4,omega,lower,0.03913797378540039 +karman_re50,ppo,182,72.8,omega,front,0.02199300527572632 +karman_re50,ppo,182,72.8,omega,upper,-0.050284698009490966 +karman_re50,ppo,182,72.8,omega,lower,0.04166266679763794 +karman_re50,ppo,183,73.2,omega,front,0.02187868595123291 +karman_re50,ppo,183,73.2,omega,upper,-0.04940116226673126 +karman_re50,ppo,183,73.2,omega,lower,0.04315644383430481 +karman_re50,ppo,184,73.6,omega,front,0.018873956203460693 +karman_re50,ppo,184,73.6,omega,upper,-0.04577975392341614 +karman_re50,ppo,184,73.6,omega,lower,0.04293893218040466 +karman_re50,ppo,185,74.0,omega,front,0.012802469730377198 +karman_re50,ppo,185,74.0,omega,upper,-0.03889844372868538 +karman_re50,ppo,185,74.0,omega,lower,0.04178696990013123 +karman_re50,ppo,186,74.4,omega,front,0.004349857866764069 +karman_re50,ppo,186,74.4,omega,upper,-0.029322996139526367 +karman_re50,ppo,186,74.4,omega,lower,0.04091311573982239 +karman_re50,ppo,187,74.8,omega,front,-0.005482040643692017 +karman_re50,ppo,187,74.8,omega,upper,-0.019058449268341066 +karman_re50,ppo,187,74.8,omega,lower,0.038984686732292176 +karman_re50,ppo,188,75.2,omega,front,-0.01568228244781494 +karman_re50,ppo,188,75.2,omega,upper,-0.011571302413940429 +karman_re50,ppo,188,75.2,omega,lower,0.03371679544448852 +karman_re50,ppo,189,75.6,omega,front,-0.024706783294677737 +karman_re50,ppo,189,75.6,omega,upper,-0.010276017189025878 +karman_re50,ppo,189,75.6,omega,lower,0.026013431549072267 +karman_re50,ppo,190,76.0,omega,front,-0.0312371826171875 +karman_re50,ppo,190,76.0,omega,upper,-0.015102546215057373 +karman_re50,ppo,190,76.0,omega,lower,0.018951451778411867 +karman_re50,ppo,191,76.4,omega,front,-0.033769936561584474 +karman_re50,ppo,191,76.4,omega,upper,-0.022176709175109863 +karman_re50,ppo,191,76.4,omega,lower,0.017478604316711426 +karman_re50,ppo,192,76.8,omega,front,-0.03293370962142944 +karman_re50,ppo,192,76.8,omega,upper,-0.027882169485092163 +karman_re50,ppo,192,76.8,omega,lower,0.02277565956115723 +karman_re50,ppo,193,77.2,omega,front,-0.03148453235626221 +karman_re50,ppo,193,77.2,omega,upper,-0.0322443014383316 +karman_re50,ppo,193,77.2,omega,lower,0.029967293739318848 +karman_re50,ppo,194,77.6,omega,front,-0.03025463104248047 +karman_re50,ppo,194,77.6,omega,upper,-0.0356890743970871 +karman_re50,ppo,194,77.6,omega,lower,0.03524950981140137 +karman_re50,ppo,195,78.0,omega,front,-0.02801220178604126 +karman_re50,ppo,195,78.0,omega,upper,-0.03780126765370369 +karman_re50,ppo,195,78.0,omega,lower,0.03863162755966187 +karman_re50,ppo,196,78.4,omega,front,-0.02370255470275879 +karman_re50,ppo,196,78.4,omega,upper,-0.03835951313376427 +karman_re50,ppo,196,78.4,omega,lower,0.040870507955551146 +karman_re50,ppo,197,78.8,omega,front,-0.017602944374084474 +karman_re50,ppo,197,78.8,omega,upper,-0.037893324047327044 +karman_re50,ppo,197,78.8,omega,lower,0.04104219138622284 +karman_re50,ppo,198,79.2,omega,front,-0.010719758272171021 +karman_re50,ppo,198,79.2,omega,upper,-0.03777412697672844 +karman_re50,ppo,198,79.2,omega,lower,0.03873596012592316 +karman_re50,ppo,199,79.6,omega,front,-0.003912353813648224 +karman_re50,ppo,199,79.6,omega,upper,-0.039381396025419235 +karman_re50,ppo,199,79.6,omega,lower,0.03596186101436615 +karman_re50,ppo,200,80.0,omega,front,0.002384548485279083 +karman_re50,ppo,200,80.0,omega,upper,-0.04248532608151436 +karman_re50,ppo,200,80.0,omega,lower,0.034669859409332274 +karman_re50,ppo,201,80.4,omega,front,0.008153403997421265 +karman_re50,ppo,201,80.4,omega,upper,-0.04548329174518585 +karman_re50,ppo,201,80.4,omega,lower,0.03554893374443054 +karman_re50,ppo,202,80.8,omega,front,0.013126602172851562 +karman_re50,ppo,202,80.8,omega,upper,-0.04774734914302826 +karman_re50,ppo,202,80.8,omega,lower,0.03805368900299072 +karman_re50,ppo,203,81.2,omega,front,0.017077369689941408 +karman_re50,ppo,203,81.2,omega,upper,-0.04959192991256714 +karman_re50,ppo,203,81.2,omega,lower,0.04114589214324951 +karman_re50,ppo,204,81.6,omega,front,0.019812204837799073 +karman_re50,ppo,204,81.6,omega,upper,-0.0509378182888031 +karman_re50,ppo,204,81.6,omega,lower,0.04393225550651551 +karman_re50,ppo,205,82.0,omega,front,0.02072110176086426 +karman_re50,ppo,205,82.0,omega,upper,-0.05092141032218933 +karman_re50,ppo,205,82.0,omega,lower,0.04545161366462708 +karman_re50,ppo,206,82.4,omega,front,0.018917620182037354 +karman_re50,ppo,206,82.4,omega,upper,-0.04835932016372681 +karman_re50,ppo,206,82.4,omega,lower,0.04484298944473267 +karman_re50,ppo,207,82.8,omega,front,0.013961596488952637 +karman_re50,ppo,207,82.8,omega,upper,-0.042524079084396364 +karman_re50,ppo,207,82.8,omega,lower,0.04264867424964905 +karman_re50,ppo,208,83.2,omega,front,0.006323672533035278 +karman_re50,ppo,208,83.2,omega,upper,-0.033687818050384524 +karman_re50,ppo,208,83.2,omega,lower,0.04078037977218628 +karman_re50,ppo,209,83.6,omega,front,-0.002872205674648285 +karman_re50,ppo,209,83.6,omega,upper,-0.02322867274284363 +karman_re50,ppo,209,83.6,omega,lower,0.03955445766448975 +karman_re50,ppo,210,84.0,omega,front,-0.01310803771018982 +karman_re50,ppo,210,84.0,omega,upper,-0.014012823104858399 +karman_re50,ppo,210,84.0,omega,lower,0.0356395024061203 +karman_re50,ppo,211,84.4,omega,front,-0.023295128345489503 +karman_re50,ppo,211,84.4,omega,upper,-0.00983374834060669 +karman_re50,ppo,211,84.4,omega,lower,0.02753659963607788 +karman_re50,ppo,212,84.8,omega,front,-0.03147066354751587 +karman_re50,ppo,212,84.8,omega,upper,-0.01240222692489624 +karman_re50,ppo,212,84.8,omega,lower,0.018451523780822755 +karman_re50,ppo,213,85.2,omega,front,-0.035595569610595706 +karman_re50,ppo,213,85.2,omega,upper,-0.019089145660400392 +karman_re50,ppo,213,85.2,omega,lower,0.014117650985717774 +karman_re50,ppo,214,85.6,omega,front,-0.035198092460632324 +karman_re50,ppo,214,85.6,omega,upper,-0.0254845929145813 +karman_re50,ppo,214,85.6,omega,lower,0.018085136413574218 +karman_re50,ppo,215,86.0,omega,front,-0.033062100410461426 +karman_re50,ppo,215,86.0,omega,upper,-0.03037192702293396 +karman_re50,ppo,215,86.0,omega,lower,0.026184177398681643 +karman_re50,ppo,216,86.4,omega,front,-0.031278626918792726 +karman_re50,ppo,216,86.4,omega,upper,-0.03401059031486511 +karman_re50,ppo,216,86.4,omega,lower,0.0327761173248291 +karman_re50,ppo,217,86.8,omega,front,-0.029195687770843505 +karman_re50,ppo,217,86.8,omega,upper,-0.03610390067100525 +karman_re50,ppo,217,86.8,omega,lower,0.0365747407078743 +karman_re50,ppo,218,87.2,omega,front,-0.025286471843719485 +karman_re50,ppo,218,87.2,omega,upper,-0.03657471239566803 +karman_re50,ppo,218,87.2,omega,lower,0.039159318208694456 +karman_re50,ppo,219,87.6,omega,front,-0.019294446706771853 +karman_re50,ppo,219,87.6,omega,upper,-0.0360343873500824 +karman_re50,ppo,219,87.6,omega,lower,0.04055498063564301 +karman_re50,ppo,220,88.0,omega,front,-0.01223519206047058 +karman_re50,ppo,220,88.0,omega,upper,-0.03592693448066712 +karman_re50,ppo,220,88.0,omega,lower,0.03966383159160614 +karman_re50,ppo,221,88.4,omega,front,-0.005149477720260621 +karman_re50,ppo,221,88.4,omega,upper,-0.03779268518090248 +karman_re50,ppo,221,88.4,omega,lower,0.037467698454856875 +karman_re50,ppo,222,88.8,omega,front,0.0014132699370384217 +karman_re50,ppo,222,88.8,omega,upper,-0.04159860625863075 +karman_re50,ppo,222,88.8,omega,lower,0.035793572068214416 +karman_re50,ppo,223,89.2,omega,front,0.007487610578536988 +karman_re50,ppo,223,89.2,omega,upper,-0.04523447394371033 +karman_re50,ppo,223,89.2,omega,lower,0.03586286067962646 +karman_re50,ppo,224,89.6,omega,front,0.012860393524169922 +karman_re50,ppo,224,89.6,omega,upper,-0.047485563755035404 +karman_re50,ppo,224,89.6,omega,lower,0.03773649334907532 +karman_re50,ppo,225,90.0,omega,front,0.017088146209716798 +karman_re50,ppo,225,90.0,omega,upper,-0.04910685062408447 +karman_re50,ppo,225,90.0,omega,lower,0.04033714413642883 +karman_re50,ppo,226,90.4,omega,front,0.020058999061584475 +karman_re50,ppo,226,90.4,omega,upper,-0.050510661602020265 +karman_re50,ppo,226,90.4,omega,lower,0.04271295428276062 +karman_re50,ppo,227,90.8,omega,front,0.02143099069595337 +karman_re50,ppo,227,90.8,omega,upper,-0.051010780334472657 +karman_re50,ppo,227,90.8,omega,lower,0.04412883877754212 +karman_re50,ppo,228,91.2,omega,front,0.020413455963134767 +karman_re50,ppo,228,91.2,omega,upper,-0.04938102006912232 +karman_re50,ppo,228,91.2,omega,lower,0.04377304196357727 +karman_re50,ppo,229,91.6,omega,front,0.0164088773727417 +karman_re50,ppo,229,91.6,omega,upper,-0.04478234648704529 +karman_re50,ppo,229,91.6,omega,lower,0.04186265230178833 +karman_re50,ppo,230,92.0,omega,front,0.009752222299575806 +karman_re50,ppo,230,92.0,omega,upper,-0.037122793197631836 +karman_re50,ppo,230,92.0,omega,lower,0.04039840996265411 +karman_re50,ppo,231,92.4,omega,front,0.001514350175857544 +karman_re50,ppo,231,92.4,omega,upper,-0.027521868944168092 +karman_re50,ppo,231,92.4,omega,lower,0.04064017772674561 +karman_re50,ppo,232,92.8,omega,front,-0.007941852807998657 +karman_re50,ppo,232,92.8,omega,upper,-0.018292903900146484 +karman_re50,ppo,232,92.8,omega,lower,0.03938248813152313 +karman_re50,ppo,233,93.2,omega,front,-0.018454107046127318 +karman_re50,ppo,233,93.2,omega,upper,-0.01238649845123291 +karman_re50,ppo,233,93.2,omega,lower,0.03273714721202851 +karman_re50,ppo,234,93.6,omega,front,-0.02786215305328369 +karman_re50,ppo,234,93.6,omega,upper,-0.012271602153778077 +karman_re50,ppo,234,93.6,omega,lower,0.02322602391242981 +karman_re50,ppo,235,94.0,omega,front,-0.03382261037826538 +karman_re50,ppo,235,94.0,omega,upper,-0.017539405822753908 +karman_re50,ppo,235,94.0,omega,lower,0.016479833126068117 +karman_re50,ppo,236,94.4,omega,front,-0.03505719661712647 +karman_re50,ppo,236,94.4,omega,upper,-0.024514058828353884 +karman_re50,ppo,236,94.4,omega,lower,0.017240645885467528 +karman_re50,ppo,237,94.8,omega,front,-0.03305613040924072 +karman_re50,ppo,237,94.8,omega,upper,-0.03006892800331116 +karman_re50,ppo,237,94.8,omega,lower,0.02436657786369324 +karman_re50,ppo,238,95.2,omega,front,-0.03077664375305176 +karman_re50,ppo,238,95.2,omega,upper,-0.03376233816146851 +karman_re50,ppo,238,95.2,omega,lower,0.03172781527042389 +karman_re50,ppo,239,95.6,omega,front,-0.028725852966308595 +karman_re50,ppo,239,95.6,omega,upper,-0.03582973062992096 +karman_re50,ppo,239,95.6,omega,lower,0.03631516814231873 +karman_re50,ppo,240,96.0,omega,front,-0.02544245481491089 +karman_re50,ppo,240,96.0,omega,upper,-0.036713963747024535 +karman_re50,ppo,240,96.0,omega,lower,0.039396246075630185 +karman_re50,ppo,241,96.4,omega,front,-0.020074563026428224 +karman_re50,ppo,241,96.4,omega,upper,-0.03687222838401794 +karman_re50,ppo,241,96.4,omega,lower,0.041756139397621156 +karman_re50,ppo,242,96.8,omega,front,-0.013220499753952026 +karman_re50,ppo,242,96.8,omega,upper,-0.03712610065937042 +karman_re50,ppo,242,96.8,omega,lower,0.04201610207557678 +karman_re50,ppo,243,97.2,omega,front,-0.005976196527481079 +karman_re50,ppo,243,97.2,omega,upper,-0.038740812689065936 +karman_re50,ppo,243,97.2,omega,lower,0.0397810310125351 +karman_re50,ppo,244,97.6,omega,front,0.0008498162031173707 +karman_re50,ppo,244,97.6,omega,upper,-0.04216313049197197 +karman_re50,ppo,244,97.6,omega,lower,0.03683547168970108 +karman_re50,ppo,245,98.0,omega,front,0.007103824615478516 +karman_re50,ppo,245,98.0,omega,upper,-0.04558386445045471 +karman_re50,ppo,245,98.0,omega,lower,0.03521242201328278 +karman_re50,ppo,246,98.4,omega,front,0.012713898420333863 +karman_re50,ppo,246,98.4,omega,upper,-0.0474272346496582 +karman_re50,ppo,246,98.4,omega,lower,0.035722392797470096 +karman_re50,ppo,247,98.8,omega,front,0.01715822458267212 +karman_re50,ppo,247,98.8,omega,upper,-0.04849573612213135 +karman_re50,ppo,247,98.8,omega,lower,0.037404590249061585 +karman_re50,ppo,248,99.2,omega,front,0.02035592555999756 +karman_re50,ppo,248,99.2,omega,upper,-0.04956728994846344 +karman_re50,ppo,248,99.2,omega,lower,0.03942100763320923 +karman_re50,ppo,249,99.6,omega,front,0.022179079055786134 +karman_re50,ppo,249,99.6,omega,upper,-0.05023627758026123 +karman_re50,ppo,249,99.6,omega,lower,0.04125000953674317 +karman_re50,ppo,250,100.0,omega,front,0.021971263885498048 +karman_re50,ppo,250,100.0,omega,upper,-0.04942374110221863 +karman_re50,ppo,250,100.0,omega,lower,0.04219554424285889 +karman_re50,ppo,251,100.4,omega,front,0.019025435447692873 +karman_re50,ppo,251,100.4,omega,upper,-0.04593895077705384 +karman_re50,ppo,251,100.4,omega,lower,0.04176246225833893 +karman_re50,ppo,252,100.8,omega,front,0.01323413372039795 +karman_re50,ppo,252,100.8,omega,upper,-0.0393694244325161 +karman_re50,ppo,252,100.8,omega,lower,0.041010161638259886 +karman_re50,ppo,253,101.2,omega,front,0.005326176881790161 +karman_re50,ppo,253,101.2,omega,upper,-0.03040430545806885 +karman_re50,ppo,253,101.2,omega,lower,0.04111821234226227 +karman_re50,ppo,254,101.6,omega,front,-0.0038864704966545104 +karman_re50,ppo,254,101.6,omega,upper,-0.021004832983016967 +karman_re50,ppo,254,101.6,omega,lower,0.04055553734302521 +karman_re50,ppo,255,102.0,omega,front,-0.014050434827804565 +karman_re50,ppo,255,102.0,omega,upper,-0.01385354995727539 +karman_re50,ppo,255,102.0,omega,lower,0.03573182135820389 +karman_re50,ppo,256,102.4,omega,front,-0.023600423336029054 +karman_re50,ppo,256,102.4,omega,upper,-0.011841518878936768 +karman_re50,ppo,256,102.4,omega,lower,0.027495787143707276 +karman_re50,ppo,257,102.8,omega,front,-0.030515060424804688 +karman_re50,ppo,257,102.8,omega,upper,-0.015719354152679443 +karman_re50,ppo,257,102.8,omega,lower,0.020152354240417482 +karman_re50,ppo,258,103.2,omega,front,-0.033370206356048586 +karman_re50,ppo,258,103.2,omega,upper,-0.022673323154449462 +karman_re50,ppo,258,103.2,omega,lower,0.018260798454284667 +karman_re50,ppo,259,103.6,omega,front,-0.032510945796966555 +karman_re50,ppo,259,103.6,omega,upper,-0.02876769542694092 +karman_re50,ppo,259,103.6,omega,lower,0.02321911573410034 +karman_re50,ppo,260,104.0,omega,front,-0.030613675117492675 +karman_re50,ppo,260,104.0,omega,upper,-0.032951324582099914 +karman_re50,ppo,260,104.0,omega,lower,0.030493024587631225 +karman_re50,ppo,261,104.4,omega,front,-0.029006733894348144 +karman_re50,ppo,261,104.4,omega,upper,-0.03577711641788483 +karman_re50,ppo,261,104.4,omega,lower,0.035888468623161314 +karman_re50,ppo,262,104.8,omega,front,-0.026594319343566895 +karman_re50,ppo,262,104.8,omega,upper,-0.03756322309374809 +karman_re50,ppo,262,104.8,omega,lower,0.03945476531982422 +karman_re50,ppo,263,105.2,omega,front,-0.02223775386810303 +karman_re50,ppo,263,105.2,omega,upper,-0.03845002308487892 +karman_re50,ppo,263,105.2,omega,lower,0.042154776453971865 +karman_re50,ppo,264,105.6,omega,front,-0.0160935640335083 +karman_re50,ppo,264,105.6,omega,upper,-0.0386780072748661 +karman_re50,ppo,264,105.6,omega,lower,0.04285972476005554 +karman_re50,ppo,265,106.0,omega,front,-0.009067387580871581 +karman_re50,ppo,265,106.0,omega,upper,-0.03923141047358513 +karman_re50,ppo,265,106.0,omega,lower,0.040714707970619206 +karman_re50,ppo,266,106.4,omega,front,-0.002090772390365601 +karman_re50,ppo,266,106.4,omega,upper,-0.0412088243663311 +karman_re50,ppo,266,106.4,omega,lower,0.03727345108985901 +karman_re50,ppo,267,106.8,omega,front,0.004283654391765594 +karman_re50,ppo,267,106.8,omega,upper,-0.044198378920555115 +karman_re50,ppo,267,106.8,omega,lower,0.03482264161109924 +karman_re50,ppo,268,107.2,omega,front,0.010025801658630372 +karman_re50,ppo,268,107.2,omega,upper,-0.0465620219707489 +karman_re50,ppo,268,107.2,omega,lower,0.03457979261875153 +karman_re50,ppo,269,107.6,omega,front,0.014883303642272949 +karman_re50,ppo,269,107.6,omega,upper,-0.04799782633781433 +karman_re50,ppo,269,107.6,omega,lower,0.03610063076019287 +karman_re50,ppo,270,108.0,omega,front,0.018642332553863526 +karman_re50,ppo,270,108.0,omega,upper,-0.04917786240577698 +karman_re50,ppo,270,108.0,omega,lower,0.03843642711639404 +karman_re50,ppo,271,108.4,omega,front,0.021178169250488283 +karman_re50,ppo,271,108.4,omega,upper,-0.05014406204223633 +karman_re50,ppo,271,108.4,omega,lower,0.0409266608953476 +karman_re50,ppo,272,108.8,omega,front,0.0219585657119751 +karman_re50,ppo,272,108.8,omega,upper,-0.05005558013916016 +karman_re50,ppo,272,108.8,omega,lower,0.042804230451583866 +karman_re50,ppo,273,109.2,omega,front,0.020149374008178712 +karman_re50,ppo,273,109.2,omega,upper,-0.04766004860401154 +karman_re50,ppo,273,109.2,omega,lower,0.04316730856895447 +karman_re50,ppo,274,109.6,omega,front,0.015290076732635499 +karman_re50,ppo,274,109.6,omega,upper,-0.04212473347783089 +karman_re50,ppo,274,109.6,omega,lower,0.04218323111534119 +karman_re50,ppo,275,110.0,omega,front,0.007787003517150879 +karman_re50,ppo,275,110.0,omega,upper,-0.033614611625671385 +karman_re50,ppo,275,110.0,omega,lower,0.0412553995847702 +karman_re50,ppo,276,110.4,omega,front,-0.001345987617969513 +karman_re50,ppo,276,110.4,omega,upper,-0.02361983895301819 +karman_re50,ppo,276,110.4,omega,lower,0.04038964867591858 +karman_re50,ppo,277,110.8,omega,front,-0.011393228769302368 +karman_re50,ppo,277,110.8,omega,upper,-0.014814748764038085 +karman_re50,ppo,277,110.8,omega,lower,0.03679271429777146 +karman_re50,ppo,278,111.2,omega,front,-0.02120621919631958 +karman_re50,ppo,278,111.2,omega,upper,-0.010721817016601562 +karman_re50,ppo,278,111.2,omega,lower,0.02952982306480408 +karman_re50,ppo,279,111.6,omega,front,-0.029054841995239257 +karman_re50,ppo,279,111.6,omega,upper,-0.01305988073348999 +karman_re50,ppo,279,111.6,omega,lower,0.021480966806411744 +karman_re50,ppo,280,112.0,omega,front,-0.03334819555282593 +karman_re50,ppo,280,112.0,omega,upper,-0.019604051113128663 +karman_re50,ppo,280,112.0,omega,lower,0.017212247848510744 +karman_re50,ppo,281,112.4,omega,front,-0.0335209321975708 +karman_re50,ppo,281,112.4,omega,upper,-0.026028679609298708 +karman_re50,ppo,281,112.4,omega,lower,0.02018673300743103 +karman_re50,ppo,282,112.8,omega,front,-0.03190634250640869 +karman_re50,ppo,282,112.8,omega,upper,-0.030756965279579163 +karman_re50,ppo,282,112.8,omega,lower,0.02733585000038147 +karman_re50,ppo,283,113.2,omega,front,-0.03050526857376099 +karman_re50,ppo,283,113.2,omega,upper,-0.034351632595062256 +karman_re50,ppo,283,113.2,omega,lower,0.03357196569442749 +karman_re50,ppo,284,113.6,omega,front,-0.028735010623931884 +karman_re50,ppo,284,113.6,omega,upper,-0.03683506608009338 +karman_re50,ppo,284,113.6,omega,lower,0.03757680416107178 +karman_re50,ppo,285,114.0,omega,front,-0.025236151218414306 +karman_re50,ppo,285,114.0,omega,upper,-0.037995966523885726 +karman_re50,ppo,285,114.0,omega,lower,0.04034431219100952 +karman_re50,ppo,286,114.4,omega,front,-0.0196854043006897 +karman_re50,ppo,286,114.4,omega,upper,-0.037980486899614335 +karman_re50,ppo,286,114.4,omega,lower,0.04166286051273346 +karman_re50,ppo,287,114.8,omega,front,-0.012918951511383057 +karman_re50,ppo,287,114.8,omega,upper,-0.037756681293249134 +karman_re50,ppo,287,114.8,omega,lower,0.04035976827144623 +karman_re50,ppo,288,115.2,omega,front,-0.005916528701782227 +karman_re50,ppo,288,115.2,omega,upper,-0.03883559077978134 +karman_re50,ppo,288,115.2,omega,lower,0.03747353434562683 +karman_re50,ppo,289,115.6,omega,front,0.000627376139163971 +karman_re50,ppo,289,115.6,omega,upper,-0.04169400796294213 +karman_re50,ppo,289,115.6,omega,lower,0.035230790972709654 +karman_re50,ppo,290,116.0,omega,front,0.006614512205123902 +karman_re50,ppo,290,116.0,omega,upper,-0.044883095622062684 +karman_re50,ppo,290,116.0,omega,lower,0.034951552748680115 +karman_re50,ppo,291,116.4,omega,front,0.011892080307006836 +karman_re50,ppo,291,116.4,omega,upper,-0.04717111945152283 +karman_re50,ppo,291,116.4,omega,lower,0.03662037760019302 +karman_re50,ppo,292,116.8,omega,front,0.016181918382644652 +karman_re50,ppo,292,116.8,omega,upper,-0.04887932479381561 +karman_re50,ppo,292,116.8,omega,lower,0.0392963308095932 +karman_re50,ppo,293,117.2,omega,front,0.019335751533508302 +karman_re50,ppo,293,117.2,omega,upper,-0.050304057598114016 +karman_re50,ppo,293,117.2,omega,lower,0.04209224224090576 +karman_re50,ppo,294,117.6,omega,front,0.020955772399902345 +karman_re50,ppo,294,117.6,omega,upper,-0.05090665578842163 +karman_re50,ppo,294,117.6,omega,lower,0.04418979644775391 +karman_re50,ppo,295,118.0,omega,front,0.020241987705230714 +karman_re50,ppo,295,118.0,omega,upper,-0.04947048842906952 +karman_re50,ppo,295,118.0,omega,lower,0.044655479192733764 +karman_re50,ppo,296,118.4,omega,front,0.016488571166992188 +karman_re50,ppo,296,118.4,omega,upper,-0.045003990530967715 +karman_re50,ppo,296,118.4,omega,lower,0.043229223489761354 +karman_re50,ppo,297,118.8,omega,front,0.009806663990020751 +karman_re50,ppo,297,118.8,omega,upper,-0.037329620122909545 +karman_re50,ppo,297,118.8,omega,lower,0.04136942505836487 +karman_re50,ppo,298,119.2,omega,front,0.0012082362174987793 +karman_re50,ppo,298,119.2,omega,upper,-0.0274346387386322 +karman_re50,ppo,298,119.2,omega,lower,0.040402517914772035 +karman_re50,ppo,299,119.6,omega,front,-0.008538624048233032 +karman_re50,ppo,299,119.6,omega,upper,-0.017595086097717285 +karman_re50,ppo,299,119.6,omega,lower,0.03818333387374878 +karman_re50,ppo,300,120.0,omega,front,-0.018849897384643554 +karman_re50,ppo,300,120.0,omega,upper,-0.011237096786499024 +karman_re50,ppo,300,120.0,omega,lower,0.03171621382236481 +karman_re50,ppo,301,120.4,omega,front,-0.0279660964012146 +karman_re50,ppo,301,120.4,omega,upper,-0.011188023090362549 +karman_re50,ppo,301,120.4,omega,lower,0.022670156955718994 +karman_re50,ppo,302,120.8,omega,front,-0.03387467384338379 +karman_re50,ppo,302,120.8,omega,upper,-0.016678469181060793 +karman_re50,ppo,302,120.8,omega,lower,0.01590757369995117 +karman_re50,ppo,303,121.2,omega,front,-0.0351583194732666 +karman_re50,ppo,303,121.2,omega,upper,-0.02350309729576111 +karman_re50,ppo,303,121.2,omega,lower,0.016581215858459473 +karman_re50,ppo,304,121.6,omega,front,-0.0334502387046814 +karman_re50,ppo,304,121.6,omega,upper,-0.028845547437667846 +karman_re50,ppo,304,121.6,omega,lower,0.023531689643859863 +karman_re50,ppo,305,122.0,omega,front,-0.03155784606933594 +karman_re50,ppo,305,122.0,omega,upper,-0.03283792793750763 +karman_re50,ppo,305,122.0,omega,lower,0.030941663384437563 +karman_re50,ppo,306,122.4,omega,front,-0.029851012229919434 +karman_re50,ppo,306,122.4,omega,upper,-0.035534656047821044 +karman_re50,ppo,306,122.4,omega,lower,0.035660549998283386 +karman_re50,ppo,307,122.8,omega,front,-0.026865262985229493 +karman_re50,ppo,307,122.8,omega,upper,-0.03676908910274506 +karman_re50,ppo,307,122.8,omega,lower,0.03863001823425293 +karman_re50,ppo,308,123.2,omega,front,-0.02172881841659546 +karman_re50,ppo,308,123.2,omega,upper,-0.03675496757030487 +karman_re50,ppo,308,123.2,omega,lower,0.04069183826446533 +karman_re50,ppo,309,123.6,omega,front,-0.015031589269638062 +karman_re50,ppo,309,123.6,omega,upper,-0.036400907039642334 +karman_re50,ppo,309,123.6,omega,lower,0.04067697525024414 +karman_re50,ppo,310,124.0,omega,front,-0.007868403196334839 +karman_re50,ppo,310,124.0,omega,upper,-0.03728100478649139 +karman_re50,ppo,310,124.0,omega,lower,0.03858900308609009 +karman_re50,ppo,311,124.4,omega,front,-0.0010747483372688293 +karman_re50,ppo,311,124.4,omega,upper,-0.04028723731637001 +karman_re50,ppo,311,124.4,omega,lower,0.03629968702793122 +karman_re50,ppo,312,124.8,omega,front,0.005135555267333985 +karman_re50,ppo,312,124.8,omega,upper,-0.044086220860481265 +karman_re50,ppo,312,124.8,omega,lower,0.035389311611652374 +karman_re50,ppo,313,125.2,omega,front,0.010793703794479371 +karman_re50,ppo,313,125.2,omega,upper,-0.0467559015750885 +karman_re50,ppo,313,125.2,omega,lower,0.03650284618139267 +karman_re50,ppo,314,125.6,omega,front,0.015461561679840087 +karman_re50,ppo,314,125.6,omega,upper,-0.04843928933143616 +karman_re50,ppo,314,125.6,omega,lower,0.038851145505905155 +karman_re50,ppo,315,126.0,omega,front,0.018928961753845217 +karman_re50,ppo,315,126.0,omega,upper,-0.049899147748947145 +karman_re50,ppo,315,126.0,omega,lower,0.04139933466911316 +karman_re50,ppo,316,126.4,omega,front,0.02101949453353882 +karman_re50,ppo,316,126.4,omega,upper,-0.05087424516677857 +karman_re50,ppo,316,126.4,omega,lower,0.04343162894248963 +karman_re50,ppo,317,126.8,omega,front,0.02108128070831299 +karman_re50,ppo,317,126.8,omega,upper,-0.050248979330062865 +karman_re50,ppo,317,126.8,omega,lower,0.04413412570953369 +karman_re50,ppo,318,127.2,omega,front,0.018335769176483156 +karman_re50,ppo,318,127.2,omega,upper,-0.04686630666255951 +karman_re50,ppo,318,127.2,omega,lower,0.04299298048019409 +karman_re50,ppo,319,127.6,omega,front,0.0125860595703125 +karman_re50,ppo,319,127.6,omega,upper,-0.040357327312231066 +karman_re50,ppo,319,127.6,omega,lower,0.041138080954551695 +karman_re50,ppo,320,128.0,omega,front,0.00475310355424881 +karman_re50,ppo,320,128.0,omega,upper,-0.031265351176261905 +karman_re50,ppo,320,128.0,omega,lower,0.04053838551044464 +karman_re50,ppo,321,128.4,omega,front,-0.004284076392650604 +karman_re50,ppo,321,128.4,omega,upper,-0.0214963960647583 +karman_re50,ppo,321,128.4,omega,lower,0.04013122975826264 +karman_re50,ppo,322,128.8,omega,front,-0.014468474388122559 +karman_re50,ppo,322,128.8,omega,upper,-0.01385776996612549 +karman_re50,ppo,322,128.8,omega,lower,0.03561522901058197 +karman_re50,ppo,323,129.2,omega,front,-0.024466724395751954 +karman_re50,ppo,323,129.2,omega,upper,-0.011392674446105958 +karman_re50,ppo,323,129.2,omega,lower,0.026815364360809328 +karman_re50,ppo,324,129.6,omega,front,-0.03188662052154541 +karman_re50,ppo,324,129.6,omega,upper,-0.01496368408203125 +karman_re50,ppo,324,129.6,omega,lower,0.018478407859802246 +karman_re50,ppo,325,130.0,omega,front,-0.03493475914001465 +karman_re50,ppo,325,130.0,omega,upper,-0.021783300638198853 +karman_re50,ppo,325,130.0,omega,lower,0.01608212471008301 +karman_re50,ppo,326,130.4,omega,front,-0.03388885974884033 +karman_re50,ppo,326,130.4,omega,upper,-0.02791733503341675 +karman_re50,ppo,326,130.4,omega,lower,0.021291521787643434 +karman_re50,ppo,327,130.8,omega,front,-0.03162809371948242 +karman_re50,ppo,327,130.8,omega,upper,-0.03226500749588013 +karman_re50,ppo,327,130.8,omega,lower,0.029137433767318727 +karman_re50,ppo,328,131.2,omega,front,-0.029740562438964845 +karman_re50,ppo,328,131.2,omega,upper,-0.035054815411567686 +karman_re50,ppo,328,131.2,omega,lower,0.03482584357261658 +karman_re50,ppo,329,131.6,omega,front,-0.027229719161987305 +karman_re50,ppo,329,131.6,omega,upper,-0.0365279757976532 +karman_re50,ppo,329,131.6,omega,lower,0.03825170755386353 +karman_re50,ppo,330,132.0,omega,front,-0.022765626907348634 +karman_re50,ppo,330,132.0,omega,upper,-0.036988285779953 +karman_re50,ppo,330,132.0,omega,lower,0.040890642404556275 +karman_re50,ppo,331,132.4,omega,front,-0.01642720937728882 +karman_re50,ppo,331,132.4,omega,upper,-0.03697041690349579 +karman_re50,ppo,331,132.4,omega,lower,0.04199330568313599 +karman_re50,ppo,332,132.8,omega,front,-0.009255396127700806 +karman_re50,ppo,332,132.8,omega,upper,-0.037709637433290484 +karman_re50,ppo,332,132.8,omega,lower,0.040522786378860476 +karman_re50,ppo,333,133.2,omega,front,-0.0022143083810806275 +karman_re50,ppo,333,133.2,omega,upper,-0.040287072956562045 +karman_re50,ppo,333,133.2,omega,lower,0.03768444299697876 +karman_re50,ppo,334,133.6,omega,front,0.004217431843280792 +karman_re50,ppo,334,133.6,omega,upper,-0.0439830231666565 +karman_re50,ppo,334,133.6,omega,lower,0.035531245470047 +karman_re50,ppo,335,134.0,omega,front,0.01009594440460205 +karman_re50,ppo,335,134.0,omega,upper,-0.046651964783668516 +karman_re50,ppo,335,134.0,omega,lower,0.0354052397608757 +karman_re50,ppo,336,134.4,omega,front,0.015054421424865723 +karman_re50,ppo,336,134.4,omega,upper,-0.048056576251983646 +karman_re50,ppo,336,134.4,omega,lower,0.03693265020847321 +karman_re50,ppo,337,134.8,omega,front,0.018788700103759767 +karman_re50,ppo,337,134.8,omega,upper,-0.04921318888664246 +karman_re50,ppo,337,134.8,omega,lower,0.03904952824115753 +karman_re50,ppo,338,135.2,omega,front,0.02126208782196045 +karman_re50,ppo,338,135.2,omega,upper,-0.05022983074188232 +karman_re50,ppo,338,135.2,omega,lower,0.0411592310667038 +karman_re50,ppo,339,135.6,omega,front,0.02200849533081055 +karman_re50,ppo,339,135.6,omega,upper,-0.05020779967308044 +karman_re50,ppo,339,135.6,omega,lower,0.04259668946266174 +karman_re50,ppo,340,136.0,omega,front,0.020237741470336915 +karman_re50,ppo,340,136.0,omega,upper,-0.04787183403968811 +karman_re50,ppo,340,136.0,omega,lower,0.04259089946746826 +karman_re50,ppo,341,136.4,omega,front,0.015498756170272828 +karman_re50,ppo,341,136.4,omega,upper,-0.04248560681939125 +karman_re50,ppo,341,136.4,omega,lower,0.041513659954071046 +karman_re50,ppo,342,136.8,omega,front,0.008268915414810181 +karman_re50,ppo,342,136.8,omega,upper,-0.03420943021774292 +karman_re50,ppo,342,136.8,omega,lower,0.040920129418373107 +karman_re50,ppo,343,137.2,omega,front,-0.000489620566368103 +karman_re50,ppo,343,137.2,omega,upper,-0.024607356786727905 +karman_re50,ppo,343,137.2,omega,lower,0.04088975965976715 +karman_re50,ppo,344,137.6,omega,front,-0.010337401628494263 +karman_re50,ppo,344,137.6,omega,upper,-0.01608944892883301 +karman_re50,ppo,344,137.6,omega,lower,0.03799396276473999 +karman_re50,ppo,345,138.0,omega,front,-0.020424749851226807 +karman_re50,ppo,345,138.0,omega,upper,-0.011744177341461182 +karman_re50,ppo,345,138.0,omega,lower,0.030606449246406556 +karman_re50,ppo,346,138.4,omega,front,-0.028648095130920412 +karman_re50,ppo,346,138.4,omega,upper,-0.013459014892578126 +karman_re50,ppo,346,138.4,omega,lower,0.02216466307640076 +karman_re50,ppo,347,138.8,omega,front,-0.03324443340301514 +karman_re50,ppo,347,138.8,omega,upper,-0.01970932960510254 +karman_re50,ppo,347,138.8,omega,lower,0.017499709129333497 +karman_re50,ppo,348,139.2,omega,front,-0.03352015972137451 +karman_re50,ppo,348,139.2,omega,upper,-0.02636748433113098 +karman_re50,ppo,348,139.2,omega,lower,0.020150176286697387 +karman_re50,ppo,349,139.6,omega,front,-0.031649489402771 +karman_re50,ppo,349,139.6,omega,upper,-0.031234068274497987 +karman_re50,ppo,349,139.6,omega,lower,0.027365217208862307 +karman_re50,ppo,350,140.0,omega,front,-0.029907119274139405 +karman_re50,ppo,350,140.0,omega,upper,-0.03454931616783142 +karman_re50,ppo,350,140.0,omega,lower,0.03380238890647888 +karman_re50,ppo,351,140.4,omega,front,-0.027971813678741457 +karman_re50,ppo,351,140.4,omega,upper,-0.036690324544906616 +karman_re50,ppo,351,140.4,omega,lower,0.03789152920246124 +karman_re50,ppo,352,140.8,omega,front,-0.02442488431930542 +karman_re50,ppo,352,140.8,omega,upper,-0.03783234849572182 +karman_re50,ppo,352,140.8,omega,lower,0.0408404529094696 +karman_re50,ppo,353,141.2,omega,front,-0.0188425350189209 +karman_re50,ppo,353,141.2,omega,upper,-0.03813432812690735 +karman_re50,ppo,353,141.2,omega,lower,0.0425294828414917 +karman_re50,ppo,354,141.6,omega,front,-0.011982629299163819 +karman_re50,ppo,354,141.6,omega,upper,-0.03834967792034149 +karman_re50,ppo,354,141.6,omega,lower,0.0415783029794693 +karman_re50,ppo,355,142.0,omega,front,-0.00487331748008728 +karman_re50,ppo,355,142.0,omega,upper,-0.03979294449090958 +karman_re50,ppo,355,142.0,omega,lower,0.03854141414165497 +karman_re50,ppo,356,142.4,omega,front,0.001752089560031891 +karman_re50,ppo,356,142.4,omega,upper,-0.042789175510406494 +karman_re50,ppo,356,142.4,omega,lower,0.03568264484405518 +karman_re50,ppo,357,142.8,omega,front,0.00775712251663208 +karman_re50,ppo,357,142.8,omega,upper,-0.045729047656059264 +karman_re50,ppo,357,142.8,omega,lower,0.03467793047428131 +karman_re50,ppo,358,143.2,omega,front,0.013028753995895386 +karman_re50,ppo,358,143.2,omega,upper,-0.047507747411727905 +karman_re50,ppo,358,143.2,omega,lower,0.03572259545326233 +karman_re50,ppo,359,143.6,omega,front,0.01722022533416748 +karman_re50,ppo,359,143.6,omega,upper,-0.04875041127204895 +karman_re50,ppo,359,143.6,omega,lower,0.03784564316272736 +karman_re50,ppo,360,144.0,omega,front,0.020269560813903808 +karman_re50,ppo,360,144.0,omega,upper,-0.049877954125404356 +karman_re50,ppo,360,144.0,omega,lower,0.040300253033638 +karman_re50,ppo,361,144.4,omega,front,0.02179112672805786 +karman_re50,ppo,361,144.4,omega,upper,-0.05040032029151917 +karman_re50,ppo,361,144.4,omega,lower,0.04240883469581604 +karman_re50,ppo,362,144.8,omega,front,0.021078977584838867 +karman_re50,ppo,362,144.8,omega,upper,-0.04904054760932922 +karman_re50,ppo,362,144.8,omega,lower,0.043297224044799805 +karman_re50,ppo,363,145.2,omega,front,0.017410798072814943 +karman_re50,ppo,363,145.2,omega,upper,-0.0447469973564148 +karman_re50,ppo,363,145.2,omega,lower,0.04257289171218872 +karman_re50,ppo,364,145.6,omega,front,0.010836623907089234 +karman_re50,ppo,364,145.6,omega,upper,-0.037309409976005556 +karman_re50,ppo,364,145.6,omega,lower,0.04138130307197571 +karman_re50,ppo,365,146.0,omega,front,0.0023196235299110415 +karman_re50,ppo,365,146.0,omega,upper,-0.027701722383499147 +karman_re50,ppo,365,146.0,omega,lower,0.04083563625812531 +karman_re50,ppo,366,146.4,omega,front,-0.007351781129837036 +karman_re50,ppo,366,146.4,omega,upper,-0.018135435581207275 +karman_re50,ppo,366,146.4,omega,lower,0.038869854211807255 +karman_re50,ppo,367,146.8,omega,front,-0.01748940110206604 +karman_re50,ppo,367,146.8,omega,upper,-0.011842403411865234 +karman_re50,ppo,367,146.8,omega,lower,0.032844800949096684 +karman_re50,ppo,368,147.2,omega,front,-0.02641756534576416 +karman_re50,ppo,368,147.2,omega,upper,-0.011610641479492187 +karman_re50,ppo,368,147.2,omega,lower,0.024435248374938965 +karman_re50,ppo,369,147.6,omega,front,-0.03234990119934082 +karman_re50,ppo,369,147.6,omega,upper,-0.01692202091217041 +karman_re50,ppo,369,147.6,omega,lower,0.017944974899291994 +karman_re50,ppo,370,148.0,omega,front,-0.0339749002456665 +karman_re50,ppo,370,148.0,omega,upper,-0.023811618089675905 +karman_re50,ppo,370,148.0,omega,lower,0.018101444244384767 +karman_re50,ppo,371,148.4,omega,front,-0.0326082181930542 +karman_re50,ppo,371,148.4,omega,upper,-0.029182978868484498 +karman_re50,ppo,371,148.4,omega,lower,0.02437924861907959 +karman_re50,ppo,372,148.8,omega,front,-0.030939679145812988 +karman_re50,ppo,372,148.8,omega,upper,-0.033111759424209596 +karman_re50,ppo,372,148.8,omega,lower,0.03146527707576752 +karman_re50,ppo,373,149.2,omega,front,-0.029405009746551514 +karman_re50,ppo,373,149.2,omega,upper,-0.035930493474006654 +karman_re50,ppo,373,149.2,omega,lower,0.0362612783908844 +karman_re50,ppo,374,149.6,omega,front,-0.02663332223892212 +karman_re50,ppo,374,149.6,omega,upper,-0.0375339911878109 +karman_re50,ppo,374,149.6,omega,lower,0.03944804549217224 +karman_re50,ppo,375,150.0,omega,front,-0.021786179542541504 +karman_re50,ppo,375,150.0,omega,upper,-0.037924839407205584 +karman_re50,ppo,375,150.0,omega,lower,0.04153676569461823 +karman_re50,ppo,376,150.4,omega,front,-0.015326310396194458 +karman_re50,ppo,376,150.4,omega,upper,-0.037713719457387926 +karman_re50,ppo,376,150.4,omega,lower,0.04136747717857361 +karman_re50,ppo,377,150.8,omega,front,-0.008244707584381103 +karman_re50,ppo,377,150.8,omega,upper,-0.03828125759959221 +karman_re50,ppo,377,150.8,omega,lower,0.03893089532852173 +karman_re50,ppo,378,151.2,omega,front,-0.001455529034137726 +karman_re50,ppo,378,151.2,omega,upper,-0.040685744434595106 +karman_re50,ppo,378,151.2,omega,lower,0.036147025227546696 +karman_re50,ppo,379,151.6,omega,front,0.004746093451976776 +karman_re50,ppo,379,151.6,omega,upper,-0.04404341161251068 +karman_re50,ppo,379,151.6,omega,lower,0.034879247546195986 +karman_re50,ppo,380,152.0,omega,front,0.010327348709106446 +karman_re50,ppo,380,152.0,omega,upper,-0.04659759223461151 +karman_re50,ppo,380,152.0,omega,lower,0.0357188755273819 +karman_re50,ppo,381,152.4,omega,front,0.01500152349472046 +karman_re50,ppo,381,152.4,omega,upper,-0.0482886266708374 +karman_re50,ppo,381,152.4,omega,lower,0.03796413898468018 +karman_re50,ppo,382,152.8,omega,front,0.018563551902770998 +karman_re50,ppo,382,152.8,omega,upper,-0.049727501273155214 +karman_re50,ppo,382,152.8,omega,lower,0.04066158533096314 +karman_re50,ppo,383,153.2,omega,front,0.020797786712646486 +karman_re50,ppo,383,153.2,omega,upper,-0.05072856664657593 +karman_re50,ppo,383,153.2,omega,lower,0.0430534303188324 +karman_re50,ppo,384,153.6,omega,front,0.02104986667633057 +karman_re50,ppo,384,153.6,omega,upper,-0.050217489004135134 +karman_re50,ppo,384,153.6,omega,lower,0.04428002119064331 +karman_re50,ppo,385,154.0,omega,front,0.018498589992523195 +karman_re50,ppo,385,154.0,omega,upper,-0.04700916588306427 +karman_re50,ppo,385,154.0,omega,lower,0.04363460183143616 +karman_re50,ppo,386,154.4,omega,front,0.012864365577697753 +karman_re50,ppo,386,154.4,omega,upper,-0.04055751487612724 +karman_re50,ppo,386,154.4,omega,lower,0.041867988109588625 +karman_re50,ppo,387,154.8,omega,front,0.004913981258869171 +karman_re50,ppo,387,154.8,omega,upper,-0.03138365626335144 +karman_re50,ppo,387,154.8,omega,lower,0.04075899481773376 +karman_re50,ppo,388,155.2,omega,front,-0.0043831846117973325 +karman_re50,ppo,388,155.2,omega,upper,-0.021319998502731325 +karman_re50,ppo,388,155.2,omega,lower,0.0396342933177948 +karman_re50,ppo,389,155.6,omega,front,-0.014552764892578125 +karman_re50,ppo,389,155.6,omega,upper,-0.013295204639434816 +karman_re50,ppo,389,155.6,omega,lower,0.03505178451538086 +karman_re50,ppo,390,156.0,omega,front,-0.024334557056427 +karman_re50,ppo,390,156.0,omega,upper,-0.010675592422485352 +karman_re50,ppo,390,156.0,omega,lower,0.026659961938858032 +karman_re50,ppo,391,156.4,omega,front,-0.031693153381347657 +karman_re50,ppo,391,156.4,omega,upper,-0.014332318305969238 +karman_re50,ppo,391,156.4,omega,lower,0.018441071510314943 +karman_re50,ppo,392,156.8,omega,front,-0.03483000755310059 +karman_re50,ppo,392,156.8,omega,upper,-0.021170082092285155 +karman_re50,ppo,392,156.8,omega,lower,0.0158594274520874 +karman_re50,ppo,393,157.2,omega,front,-0.03395472526550293 +karman_re50,ppo,393,157.2,omega,upper,-0.027172317504882814 +karman_re50,ppo,393,157.2,omega,lower,0.020889147520065307 +karman_re50,ppo,394,157.6,omega,front,-0.031970169544219974 +karman_re50,ppo,394,157.6,omega,upper,-0.031596070528030394 +karman_re50,ppo,394,157.6,omega,lower,0.02862308979034424 +karman_re50,ppo,395,158.0,omega,front,-0.030342977046966552 +karman_re50,ppo,395,158.0,omega,upper,-0.03476912796497345 +karman_re50,ppo,395,158.0,omega,lower,0.03438536763191223 +karman_re50,ppo,396,158.4,omega,front,-0.02806006193161011 +karman_re50,ppo,396,158.4,omega,upper,-0.03661117255687714 +karman_re50,ppo,396,158.4,omega,lower,0.03786247968673706 +karman_re50,ppo,397,158.8,omega,front,-0.02380945920944214 +karman_re50,ppo,397,158.8,omega,upper,-0.037132990956306455 +karman_re50,ppo,397,158.8,omega,lower,0.04036347389221191 +karman_re50,ppo,398,159.2,omega,front,-0.017636203765869142 +karman_re50,ppo,398,159.2,omega,upper,-0.036849961280822754 +karman_re50,ppo,398,159.2,omega,lower,0.04127925395965576 +karman_re50,ppo,399,159.6,omega,front,-0.010558604001998902 +karman_re50,ppo,399,159.6,omega,upper,-0.03708338379859925 +karman_re50,ppo,399,159.6,omega,lower,0.03974959075450897 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_manifest.json new file mode 100644 index 0000000..e425674 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re50", + "source": "ppo", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-long-ppo-20260721/telemetry/karman_re50__ppo__f-ppo__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 400, + "forces": 400, + "actions_alpha": 400, + "actions_omega": 400, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_wide.csv new file mode 100644 index 0000000..32e3ee8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_wide.csv @@ -0,0 +1,401 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re50,ppo,0,0.0,1.001173973083496,-0.1895672231912613,0.9739038348197937,-0.21724233031272888,1.0297834873199463,-0.2051960974931717,0.0003169668198097497,-0.002014136640354991,-0.0012768747983500361,0.0027845061849802732,0.0007905747625045478,-0.003319980576634407,1.136017084121704,-4.305406391620636,2.1520328521728516,0.011360170841217042,-0.04305406391620636,0.021520328521728516 +karman_re50,ppo,1,0.4,1.020582914352417,-0.2342972606420517,0.9765658378601074,-0.24598263204097748,1.0232417583465576,-0.2131483107805252,0.00034721626434475183,-0.0026977267116308212,-0.0010549082653596997,0.0032404260709881783,8.692493429407477e-05,-0.003780566155910492,1.1367785930633545,-4.326259136199951,2.2988295555114746,0.011367785930633546,-0.04326259136199951,0.022988295555114748 +karman_re50,ppo,2,0.8,1.0394343137741089,-0.2755852937698364,0.9710416197776794,-0.26561325788497925,1.0152636766433716,-0.21205779910087585,0.0003791160124819726,-0.002540162531659007,-0.00098648841958493,0.0038639409467577934,-0.0001415389560861513,-0.0037615231703966856,1.2362585067749023,-4.675834774971008,2.6833975315093994,0.012362585067749024,-0.046758347749710084,0.026833975315093996 +karman_re50,ppo,3,1.2,1.056976318359375,-0.3005722761154175,0.9575707912445068,-0.26836663484573364,1.0053431987762451,-0.20019206404685974,0.00016776744450908154,-0.002468815539032221,-0.00039642691262997687,0.004371080081909895,-0.00045345883700065315,-0.003518888261169195,1.545127034187317,-4.823611199855804,3.3394286036491394,0.01545127034187317,-0.04823611199855805,0.033394286036491395 +karman_re50,ppo,4,1.6,1.072085976600647,-0.291523814201355,0.9392430186271667,-0.24407453835010529,0.9936453104019165,-0.17408886551856995,-0.0002024804416578263,-0.002348606940358877,0.0003847948391921818,0.004340378567576408,-0.0007033690926618874,-0.0034162839874625206,1.7151899337768555,-4.851688623428345,4.089363276958466,0.017151899337768554,-0.04851688623428345,0.04089363276958466 +karman_re50,ppo,5,2.0,1.0836901664733887,-0.23904730379581451,0.9223105907440186,-0.18728210031986237,0.9807918071746826,-0.13106590509414673,-0.0005776546895503998,-0.0020313893910497427,0.0009077630820684135,0.003908981569111347,-0.0007511996664106846,-0.0033190555404871702,1.5875544548034668,-4.845645308494568,4.554374098777771,0.015875544548034668,-0.04845645308494568,0.04554374098777771 +karman_re50,ppo,6,2.4,1.0893412828445435,-0.152012437582016,0.9137764573097229,-0.10513264685869217,0.9682021141052246,-0.07331361621618271,-0.0007696470129303634,-0.001629056641831994,0.001167135196737945,0.00350406882353127,-0.0007256807293742895,-0.0030349784065037966,1.2303699254989624,-4.606455743312836,4.666276693344116,0.012303699254989624,-0.04606455743312836,0.046662766933441166 +karman_re50,ppo,7,2.8,1.0848617553710938,-0.04827055335044861,0.9174347519874573,-0.01560200471431017,0.9591163396835327,-0.009298550896346569,-0.000695608789101243,-0.0011439390946179628,0.001302833203226328,0.0034054750576615334,-0.0008509955368936062,-0.0026915394701063633,0.7288212776184082,-4.008320018649101,4.588020920753479,0.007288212776184082,-0.040083200186491016,0.04588020920753479 +karman_re50,ppo,8,3.2,1.0699472427368164,0.05259305611252785,0.9309951663017273,0.06430814415216446,0.9581449031829834,0.05022289603948593,-0.0003410058852750808,-0.000569092168007046,0.0014138121623545885,0.0036103809252381325,-0.0011705217184498906,-0.0025019028689712286,0.08271905779838562,-3.227896511554718,4.3876601457595825,0.0008271905779838562,-0.03227896511554718,0.043876601457595824 +karman_re50,ppo,9,3.6,1.050952434539795,0.13158199191093445,0.9468386769294739,0.12898781895637512,0.9665524959564209,0.10075705498456955,0.0002295777085237205,6.7328721343074e-05,0.001468092785216868,0.003990492317825556,-0.0016367334173992276,-0.00254571670666337,-0.6456211805343628,-2.538594126701355,4.082824110984802,-0.0064562118053436285,-0.02538594126701355,0.04082824110984802 +karman_re50,ppo,10,4.0,1.0355888605117798,0.18014131486415863,0.9595507979393005,0.17966556549072266,0.9816494584083557,0.1457882821559906,0.0008720594923943281,0.0006715367780998349,0.0013863230124115944,0.004312340170145035,-0.0021285442635416985,-0.0028307277243584394,-1.3377883434295654,-2.110074520111084,3.7613800764083862,-0.013377883434295655,-0.02110074520111084,0.03761380076408386 +karman_re50,ppo,11,4.4,1.0257928371429443,0.204081192612648,0.9678786993026733,0.21897099912166595,1.0003042221069336,0.19053985178470612,0.0013833631528541446,0.001201902749016881,0.001181890838779509,0.00440238555893302,-0.002451852662488818,-0.0032162084244191647,-1.9358490705490112,-2.0251365900039673,3.471339702606201,-0.019358490705490113,-0.02025136590003967,0.034713397026062014 +karman_re50,ppo,12,4.8,1.0178004503250122,0.21351692080497742,0.9698500037193298,0.250334233045578,1.0199766159057617,0.2369951456785202,0.001567350816912949,0.0016354700783267617,0.0010106450645253062,0.004303093533962965,-0.002488768892362714,-0.003488510614261031,-2.416538715362549,-2.2249444723129272,3.25215744972229,-0.024165387153625487,-0.022249444723129272,0.0325215744972229 +karman_re50,ppo,13,5.2,1.008047342300415,0.21346057951450348,0.9631752967834473,0.2735763490200043,1.039405345916748,0.28117361664772034,0.001439693383872509,0.001962246373295784,0.0009861541911959648,0.004204902797937393,-0.0023770988918840885,-0.003533582203090191,-2.747096300125122,-2.5603283643722534,3.2228909730911255,-0.027470963001251222,-0.025603283643722535,0.032228909730911255 +karman_re50,ppo,14,5.6,0.9958369731903076,0.203531876206398,0.9479332566261292,0.2819352447986603,1.0581547021865845,0.3106742799282074,0.0011853787582367659,0.0021280981600284576,0.0010924475500360131,0.004182484932243824,-0.0023337157908827066,-0.0034361938014626503,-2.9375834465026855,-2.894433379173279,3.4102987647056584,-0.029375834465026857,-0.02894433379173279,0.03410298764705658 +karman_re50,ppo,15,6.0,0.9816306829452515,0.1799732744693756,0.927107036113739,0.2636951208114624,1.0751949548721313,0.30562424659729004,0.0009614545269869268,0.0020928781013935804,0.001282215816900134,0.0041898088529706,-0.0024268957786262035,-0.003309121122583747,-3.038486957550049,-3.1767336130142207,3.653295189142227,-0.03038486957550049,-0.03176733613014221,0.03653295189142227 +karman_re50,ppo,16,6.4,0.9666820764541626,0.13947927951812744,0.9069569110870361,0.21098962426185608,1.0895271301269531,0.2536935806274414,0.0008332665893249214,0.0018968024523928761,0.001514374278485775,0.004204519558697939,-0.0026225459296256304,-0.0031634438782930374,-3.05141282081604,-3.3776040077209473,3.7788583636283875,-0.0305141282081604,-0.033776040077209475,0.03778858363628387 +karman_re50,ppo,17,6.8,0.9526613354682922,0.08214115351438522,0.8941766619682312,0.12731832265853882,1.0994086265563965,0.16081620752811432,0.0008586829644627869,0.001516594085842371,0.0017693645786494017,0.004212154075503349,-0.0028933503199368715,-0.003020485630258918,-2.9302706718444824,-3.4630929231643672,3.725025177001953,-0.029302706718444826,-0.034630929231643674,0.03725025177001953 +karman_re50,ppo,18,7.2,0.9427124261856079,0.015061837621033192,0.8925998210906982,0.028104262426495552,1.1028029918670654,0.04502352327108383,0.0010886740637943149,0.0009403337608091533,0.0020257020369172096,0.004244256764650345,-0.0031881313771009445,-0.0028957210015505552,-2.6579079627990723,-3.4731976985931396,3.478579878807068,-0.026579079627990724,-0.0347319769859314,0.03478579878807068 +karman_re50,ppo,19,7.6,0.9417708516120911,-0.0501730814576149,0.902223527431488,-0.06921589374542236,1.101049780845642,-0.07201005518436432,0.00146714155562222,0.0001622430863790214,0.0022964905947446823,0.0043372418731451035,-0.003429502248764038,-0.0028173283208161592,-2.2344353199005127,-3.4333747625350957,3.0791292786598206,-0.022344353199005126,-0.034333747625350956,0.030791292786598205 +karman_re50,ppo,20,8.0,0.9518799781799316,-0.10580839961767197,0.9194073677062988,-0.15281541645526886,1.0968207120895386,-0.17009706795215607,0.001799871912226081,-0.0007157485815696418,0.0025890162214636803,0.004541396629065275,-0.003557675750926137,-0.0028165436815470457,-1.6950497627258303,-3.362153053283692,2.6445887088775635,-0.016950497627258303,-0.03362153053283692,0.026445887088775634 +karman_re50,ppo,21,8.4,0.9703294634819031,-0.15327823162078857,0.9401768445968628,-0.21581780910491943,1.090551733970642,-0.23759570717811584,0.0018752292962744832,-0.0015600016340613365,0.0028957007452845573,0.004838712513446808,-0.003574342466890812,-0.002937742741778493,-1.0976372957229614,-3.3107690811157227,2.393991708755493,-0.010976372957229615,-0.03310769081115723,0.023939917087554934 +karman_re50,ppo,22,8.8,0.9931013584136963,-0.198180690407753,0.9606409668922424,-0.2579503357410431,1.0811877250671387,-0.2722386121749878,0.0016243498539552093,-0.0022618547081947327,0.0031790011562407017,0.005157181061804295,-0.0035283532924950123,-0.0031636389903724194,-0.5138611197471619,-3.37425148487091,2.493013024330139,-0.0051386111974716184,-0.033742514848709104,0.02493013024330139 +karman_re50,ppo,23,9.2,1.0169775485992432,-0.24313674867153168,0.975084662437439,-0.2853472828865051,1.0670415163040161,-0.27739787101745605,0.0011513822246342897,-0.0027637865860015154,0.0033925503958016634,0.00543164974078536,-0.003444121452048421,-0.0033856756053864956,-0.00478789210319519,-3.617485523223877,2.934218168258667,-4.78789210319519e-05,-0.03617485523223877,0.02934218168258667 +karman_re50,ppo,24,9.6,1.0399243831634521,-0.2851424813270569,0.9788209795951843,-0.30079421401023865,1.0470495223999023,-0.25895872712135315,0.0006095118587836623,-0.0030410834588110447,0.0035098097287118435,0.005598862189799547,-0.0032964786514639854,-0.0034578582271933556,0.4123392403125763,-4.016592875123024,3.597332626581192,0.004123392403125763,-0.04016592875123024,0.03597332626581192 +karman_re50,ppo,25,10.0,1.0606149435043335,-0.3124144375324249,0.9708602428436279,-0.29711657762527466,1.022722601890564,-0.22135210037231445,7.09483283571899e-05,-0.0030799058731645346,0.0035380616318434477,0.005553544033318758,-0.0030037122778594494,-0.0033122769091278315,0.7558298110961914,-4.446094274520874,4.356372237205505,0.007558298110961914,-0.04446094274520874,0.04356372237205505 +karman_re50,ppo,26,10.4,1.0770106315612793,-0.30611538887023926,0.9534340500831604,-0.26255717873573303,0.997649073600769,-0.16751804947853088,-0.0004526534175965935,-0.0028933885041624308,0.003465090412646532,0.005152695346623659,-0.002507409080862999,-0.0029884616378694773,1.0138084888458252,-4.750829696655273,5.086562633514404,0.010138084888458252,-0.04750829696655273,0.05086562633514404 +karman_re50,ppo,27,10.8,1.0873514413833618,-0.2528590261936188,0.9320144653320312,-0.1898934692144394,0.9763022661209106,-0.10049868375062943,-0.0009033280657604337,-0.002509975340217352,0.0032133222557604313,0.004382675513625145,-0.0018424618756398559,-0.0025130060967057943,1.1015243530273438,-4.800258219242096,5.5921043157577515,0.011015243530273437,-0.04800258219242096,0.05592104315757752 +karman_re50,ppo,28,11.2,1.0901492834091187,-0.15816189348697662,0.9134846329689026,-0.08446340262889862,0.9623958468437195,-0.027099940925836563,-0.0011397224152460694,-0.002010802971199155,0.0027598578017205,0.0035074204206466675,-0.0012315219501033425,-0.0019297333201393485,0.9346868991851807,-4.480668008327484,5.6938241720199585,0.009346868991851807,-0.04480668008327484,0.05693824172019959 +karman_re50,ppo,29,11.6,1.0830577611923218,-0.04045729711651802,0.9050333499908447,0.035131100565195084,0.9585220813751221,0.04196425899863243,-0.0009998744353652,-0.001488424721173942,0.0022185021080076694,0.0030224889051169157,-0.0009883162565529346,-0.0014205382904037833,0.4571658074855805,-3.7910297065973286,5.311116814613342,0.004571658074855805,-0.037910297065973285,0.053111168146133425 +karman_re50,ppo,30,12.0,1.063002109527588,0.08243842422962189,0.9136688113212585,0.14171387255191803,0.9659638404846191,0.09813670068979263,-0.0003773328789975494,-0.0010203125420957804,0.0017968632746487856,0.0032476531341671944,-0.001324141165241599,-0.0012649721466004848,-0.31878408789634705,-2.8965524435043335,4.517913222312927,-0.0031878408789634705,-0.028965524435043334,0.045179132223129276 +karman_re50,ppo,31,12.4,1.029552936553955,0.1949557065963745,0.9383258819580078,0.2158745974302292,0.9825678467750549,0.1420673429965973,0.0006880216533318162,-0.0005576548865064979,0.001591885695233941,0.003952414728701115,-0.0020868901629000902,-0.0015388161409646273,-1.2658765316009521,-2.0516470670700073,3.5524983704090123,-0.012658765316009521,-0.020516470670700074,0.03552498370409012 +karman_re50,ppo,32,12.8,0.9936503767967224,0.2740897536277771,0.9682753682136536,0.26005029678344727,1.0041851997375488,0.18117845058441162,0.0019369308138266206,1.7553054476593388e-06,0.0014784922823309898,0.004446393344551325,-0.0028259612154215574,-0.0021093925461173058,-2.1999499797821045,-1.4818625450134277,2.632728934288025,-0.021999499797821044,-0.014818625450134277,0.02632728934288025 +karman_re50,ppo,33,13.2,0.9691371321678162,0.30432090163230896,0.9931244850158691,0.2876648008823395,1.0279983282089233,0.2207365483045578,0.0028176221530884504,0.000664193241391331,0.0014019821537658572,0.004353386349976063,-0.003024525009095669,-0.0026129570323973894,-2.9971017837524414,-1.37739896774292,1.8368844985961914,-0.029971017837524414,-0.0137739896774292,0.018368844985961915 +karman_re50,ppo,34,13.6,0.9557473063468933,0.2947111427783966,1.0070511102676392,0.30693647265434265,1.0520879030227661,0.2613297402858734,0.0029225910548120737,0.001381467911414802,0.0014929957687854767,0.004090998321771622,-0.0026843715459108353,-0.002675398485735059,-3.510143518447876,-1.693544864654541,1.3976149559020996,-0.03510143518447876,-0.01693544864654541,0.013976149559020996 +karman_re50,ppo,35,14.0,0.9449825286865234,0.2612925171852112,1.008023977279663,0.3142569661140442,1.074466586112976,0.29760438203811646,0.0025146452244371176,0.001939690439030528,0.001750107272528112,0.004020235035568476,-0.002407100750133395,-0.002370103495195508,-3.6585071086883545,-2.1280070543289185,1.6011323928833008,-0.036585071086883546,-0.021280070543289186,0.016011323928833008 +karman_re50,ppo,36,14.4,0.9327899217605591,0.2127111554145813,0.9970656633377075,0.29809749126434326,1.0926986932754517,0.3164171874523163,0.0020123424474149942,0.0021700477227568626,0.0020591055508702993,0.004077934194356203,-0.0025296921376138926,-0.002008083974942565,-3.6217055320739746,-2.529374361038208,2.196989059448242,-0.036217055320739745,-0.025293743610382082,0.021969890594482424 +karman_re50,ppo,37,14.8,0.920493483543396,0.15148696303367615,0.977346658706665,0.24637405574321747,1.1032352447509766,0.2985749840736389,0.0016179142985492945,0.002119568409398198,0.002330513671040535,0.004182752221822739,-0.002943017752841115,-0.001711763790808618,-3.5707449913024902,-2.918747305870056,2.7551785707473755,-0.0357074499130249,-0.029187473058700564,0.027551785707473755 +karman_re50,ppo,38,15.2,0.9110478758811951,0.07907209545373917,0.9546184539794922,0.15589921176433563,1.103400468826294,0.23181191086769104,0.0013167494907975197,0.0019306428730487823,0.0025718477554619312,0.004333548713475466,-0.0034387153573334217,-0.0014505725121125579,-3.4732446670532227,-3.2328393459320073,3.1052955389022827,-0.03473244667053223,-0.03232839345932007,0.031052955389022828 +karman_re50,ppo,39,15.6,0.9071893095970154,0.00014653772814199328,0.9372261762619019,0.03939950093626976,1.0927956104278564,0.12136383354663849,0.0011394467437639832,0.0016366757918149233,0.0027728888671845198,0.004494857508689165,-0.0039176298305392265,-0.0012514395639300346,-3.192182302474976,-3.3701926469802856,3.3123983144760127,-0.03192182302474976,-0.033701926469802856,0.03312398314476013 +karman_re50,ppo,40,16.0,0.9116833209991455,-0.07424040883779526,0.9324943423271179,-0.07679911702871323,1.073507308959961,-0.012796182185411453,0.001134654157795012,0.001272509340196848,0.002865186659619212,0.004611675627529621,-0.004293125122785568,-0.0012453373055905104,-2.667501211166382,-3.322795033454895,3.37102735042572,-0.02667501211166382,-0.03322795033454895,0.033710273504257204 +karman_re50,ppo,41,16.4,0.9261514544487,-0.1327265202999115,0.9401232004165649,-0.1709454506635666,1.0517709255218506,-0.14143706858158112,0.0012561216717585921,0.0007943521486595273,0.0027987402863800526,0.0047134896740317345,-0.004398130811750889,-0.0016036437591537833,-1.9411669969558718,-3.157122194766998,3.2434635162353516,-0.019411669969558717,-0.03157122194766998,0.032434635162353516 +karman_re50,ppo,42,16.8,0.9485852718353271,-0.17513443529605865,0.9547048807144165,-0.23692730069160461,1.0363874435424805,-0.23654215037822723,0.001320959534496069,0.00017455131455790251,0.002615794539451599,0.004907189402729273,-0.004082929342985153,-0.002356109209358692,-1.1215163469314575,-3.0368369817733765,3.038399815559387,-0.011215163469314575,-0.030368369817733765,0.030383998155593873 +karman_re50,ppo,43,17.2,0.974824845790863,-0.2105526328086853,0.972055971622467,-0.27897244691848755,1.0297129154205322,-0.29117757081985474,0.0011775246821343899,-0.0005834220792166889,0.002404654398560524,0.005225541535764933,-0.0033692410215735435,-0.0032679929863661528,-0.3243108093738556,-3.1868387460708623,2.9982317686080933,-0.003243108093738556,-0.03186838746070862,0.029982317686080933 +karman_re50,ppo,44,17.6,1.0023242235183716,-0.24707557260990143,0.9883386492729187,-0.3076421916484833,1.0262776613235474,-0.3153039813041687,0.0008563816663809121,-0.0013403375633060932,0.0021789665333926678,0.005588369444012642,-0.0024719624780118465,-0.0039234766736626625,0.3694514334201813,-3.663080155849457,3.1786305308341976,0.003694514334201813,-0.03663080155849457,0.03178630530834198 +karman_re50,ppo,45,18.0,1.029889702796936,-0.28638455271720886,0.9989665746688843,-0.32963067293167114,1.0191619396209717,-0.3139188289642334,0.0005107995239086449,-0.001868657418526709,0.0018911107908934355,0.005804766900837421,-0.0016345797339454293,-0.00404784781858325,0.9635579586029053,-4.248127654194832,3.497195243835449,0.009635579586029053,-0.04248127654194832,0.03497195243835449 +karman_re50,ppo,46,18.4,1.0563138723373413,-0.32422205805778503,0.9999263286590576,-0.34151774644851685,1.0030090808868408,-0.2856322228908539,0.00021187850506976247,-0.0020374057348817587,0.0014883563853800297,0.005631796084344387,-0.0009544262429699302,-0.0037481868639588356,1.5013365745544434,-4.682243704795837,3.9548981785774235,0.015013365745544434,-0.046822437047958375,0.039548981785774234 +karman_re50,ppo,47,18.8,1.079932689666748,-0.34779414534568787,0.9893122315406799,-0.33107420802116394,0.9779914021492004,-0.23098398745059967,-5.3646592277800664e-05,-0.0018617179011926055,0.0009265401167795062,0.004949052352458239,-0.0002929951879195869,-0.0032820741180330515,1.9505648612976072,-4.945934951305389,4.495390892028809,0.019505648612976073,-0.0494593495130539,0.04495390892028809 +karman_re50,ppo,48,19.2,1.0978195667266846,-0.3368910849094391,0.9680145382881165,-0.28381142020225525,0.951870858669281,-0.1582871973514557,-0.00028310075867921114,-0.0014520835829898715,0.00018211480346508324,0.0038362829945981503,0.0004548937431536615,-0.0027749387081712484,2.2355971336364746,-5.1135077476501465,4.9441386461257935,0.022355971336364747,-0.051135077476501464,0.04944138646125794 +karman_re50,ppo,49,19.6,1.1074163913726807,-0.27843278646469116,0.9402284026145935,-0.19202207028865814,0.9355102777481079,-0.08017260581254959,-0.0004470079729799181,-0.0009668052080087364,-0.0006993463612161577,0.002622347790747881,0.001191692310385406,-0.0022726727183908224,2.274963617324829,-5.089425206184387,5.071546673774719,0.02274963617324829,-0.05089425206184387,0.05071546673774719 +karman_re50,ppo,50,20.0,1.1071884632110596,-0.17966361343860626,0.912954568862915,-0.061469174921512604,0.9341203570365906,-0.0052843280136585236,-0.000491886050440371,-0.0005973739898763597,-0.0015620364574715495,0.0018927417695522308,0.0016401351895183325,-0.001894432003609836,1.9782991409301758,-4.734070539474487,4.721748948097229,0.01978299140930176,-0.04734070539474487,0.04721748948097229 +karman_re50,ppo,51,20.4,1.0930476188659668,-0.05818702653050423,0.8982532024383545,0.08357589691877365,0.9455928206443787,0.06145015358924866,-0.0003829095221590251,-0.00042323090019635856,-0.0020620357245206833,0.002254743594676256,0.0015656808391213417,-0.001777742407284677,1.3102502822875977,-4.059233441948891,4.035919427871704,0.013102502822875978,-0.04059233441948891,0.040359194278717044 +karman_re50,ppo,52,20.8,1.055345058441162,0.07633975148200989,0.9104331731796265,0.20430892705917358,0.9667221307754517,0.11409296095371246,-0.0002036965306615457,-0.00024941525771282613,-0.0017701135948300362,0.0035863749217242002,0.0010981105733662844,-0.001924780779518187,0.43393775820732117,-3.164694368839264,3.5405367612838745,0.004339377582073212,-0.03164694368839264,0.035405367612838745 +karman_re50,ppo,53,21.2,0.9912124872207642,0.2116013914346695,0.9482882022857666,0.2785032391548157,0.9944526553153992,0.1512662172317505,5.061887713964097e-05,0.00014801466022618115,-0.0007019708282314241,0.00479475362226367,0.0004853227874264121,-0.002250563120469451,-0.3975283801555634,-2.216665744781494,3.59791162610054,-0.003975283801555634,-0.02216665744781494,0.0359791162610054 +karman_re50,ppo,54,21.6,0.9229423999786377,0.3091668486595154,0.9958627820014954,0.3141810894012451,1.0248606204986572,0.17951565980911255,0.000605118228122592,0.0006903611938469112,0.0003051220264751464,0.0050670732744038105,-0.0002967760374303907,-0.0027424178551882505,-1.2264206409454346,-1.530970811843872,3.716024935245514,-0.012264206409454345,-0.01530970811843872,0.03716024935245514 +karman_re50,ppo,55,22.0,0.8776959776878357,0.33633697032928467,1.0398170948028564,0.3246210515499115,1.0551226139068604,0.20479336380958557,0.0014474025228992105,0.0011436509666964412,0.0006590631674043834,0.004759324714541435,-0.0011143097653985023,-0.003323861863464117,-2.170686960220337,-1.3985233306884766,3.2375621795654297,-0.02170686960220337,-0.013985233306884766,0.0323756217956543 +karman_re50,ppo,56,22.4,0.8593518733978271,0.29874932765960693,1.0711617469787598,0.31232354044914246,1.0828129053115845,0.2278742790222168,0.0020749177783727646,0.0014958337415009737,0.0007466694805771112,0.004345434717833996,-0.001536973170004785,-0.0035965940915048122,-2.998587131500244,-1.8272624015808105,2.472622871398926,-0.02998587131500244,-0.018272624015808106,0.02472622871398926 +karman_re50,ppo,57,22.8,0.8598199486732483,0.22373181581497192,1.0820271968841553,0.27148813009262085,1.1043527126312256,0.24493850767612457,0.002098787110298872,0.00174599583260715,0.0010187459411099553,0.004128326661884785,-0.0016462064813822508,-0.003315320238471031,-3.4364895820617676,-2.5325080156326294,2.122666120529175,-0.03436489582061768,-0.025325080156326295,0.02122666120529175 +karman_re50,ppo,58,23.2,0.8738784193992615,0.1431180238723755,1.0692269802093506,0.20046818256378174,1.1154266595840454,0.24786929786205292,0.0017053422052413225,0.0017860634252429008,0.001497791614383459,0.004176053684204817,-0.001890525920316577,-0.00275485310703516,-3.4501788616180415,-3.19072824716568,2.4377907514572144,-0.03450178861618042,-0.0319072824716568,0.024377907514572143 +karman_re50,ppo,59,23.6,0.8947960138320923,0.07527483254671097,1.040969967842102,0.11186852306127548,1.1118324995040894,0.22495616972446442,0.0012246044352650642,0.0016167564317584038,0.0019969246350228786,0.004246160387992859,-0.0023805296514183283,-0.0022200546227395535,-3.2191281318664546,-3.653493165969849,3.0747488737106323,-0.03219128131866455,-0.03653493165969849,0.030747488737106324 +karman_re50,ppo,60,24.0,0.9136568307876587,0.01407543197274208,1.0152761936187744,0.02722918801009655,1.0919169187545776,0.16750961542129517,0.0007953760796226561,0.00147532531991601,0.0023417342454195023,0.004211395513266325,-0.002913756761699915,-0.0018409830518066883,-2.907658338546753,-3.8723831325769424,3.5515263080596924,-0.02907658338546753,-0.038723831325769426,0.03551526308059692 +karman_re50,ppo,61,24.4,0.9281038641929626,-0.04957275465130806,1.0034445524215698,-0.043240781873464584,1.0588642358779907,0.07809992134571075,0.0004537753411568701,0.0014413889730349183,0.0024550422094762325,0.004133543930947781,-0.003299331059679389,-0.0017851575976237655,-2.490623950958252,-3.8665651232004166,3.802971065044403,-0.02490623950958252,-0.03866565123200417,0.03802971065044403 +karman_re50,ppo,62,24.8,0.9425816535949707,-0.10858255624771118,1.0001903772354126,-0.10659312456846237,1.0212104320526123,-0.027573391795158386,0.00023553568462375551,0.0013784888433292508,0.0023254158440977335,0.0040803332813084126,-0.003400619840249419,-0.0022088366094976664,-1.8918578624725342,-3.763645812869072,3.976499557495117,-0.018918578624725343,-0.03763645812869072,0.039764995574951174 +karman_re50,ppo,63,25.2,0.9607102870941162,-0.15274633467197418,0.9981517195701599,-0.16698965430259705,0.9915850758552551,-0.12632547318935394,0.00015344290295615792,0.001112267840653658,0.0019899816252291203,0.00406490545719862,-0.003047137288376689,-0.003075923305004835,-1.1469799280166626,-3.7481696605682373,4.04611349105835,-0.011469799280166627,-0.037481696605682374,0.0404611349105835 +karman_re50,ppo,64,25.6,0.9821426868438721,-0.18484964966773987,0.9987573027610779,-0.21790321171283722,0.9784194827079773,-0.20135240256786346,0.00015871934010647237,0.0005670424434356391,0.0015325858257710934,0.0041077290661633015,-0.0021386512089520693,-0.003988977055996656,-0.4003630578517913,-3.9992961585521702,3.872430384159088,-0.0040036305785179135,-0.0399929615855217,0.03872430384159088 +karman_re50,ppo,65,26.0,1.0050276517868042,-0.2146901935338974,1.003840684890747,-0.25619956851005554,0.9774430990219116,-0.25070637464523315,0.0002499160182196647,-0.0001505427062511444,0.0009928406216204166,0.004196254536509514,-0.0009985312353819609,-0.004349932074546814,0.27521374821662903,-4.471733629703522,3.5214018225669865,0.0027521374821662904,-0.04471733629703522,0.035214018225669864 +karman_re50,ppo,66,26.4,1.028702735900879,-0.2486242800951004,1.0104049444198608,-0.2868689000606537,0.9789084792137146,-0.27821266651153564,0.00041383141069673,-0.000784441304858774,0.00036172065301798284,0.004244877491146326,-0.00018336030188947916,-0.004147231578826904,0.9480819702148438,-4.763064205646515,3.287648975849151,0.009480819702148438,-0.04763064205646515,0.032876489758491514 +karman_re50,ppo,67,26.8,1.0529218912124634,-0.28695476055145264,1.013421893119812,-0.31296032667160034,0.9762217998504639,-0.2835741341114044,0.0006041200249455869,-0.001133920275606215,-0.00034875760320574045,0.004163077566772699,0.00020306362421251833,-0.0038081929087638855,1.5783330202102663,-4.743849575519562,3.297195792198181,0.015783330202102663,-0.04743849575519562,0.03297195792198181 +karman_re50,ppo,68,27.2,1.076520562171936,-0.3251771628856659,1.0084773302078247,-0.3301538825035095,0.9654067158699036,-0.26545003056526184,0.0007578664226457477,-0.00125236960593611,-0.0010752103989943862,0.003931482322514057,0.00039950208156369627,-0.003494098549708724,2.0484180450439453,-4.6963406801223755,3.427764058113098,0.020484180450439454,-0.04696340680122375,0.03427764058113098 +karman_re50,ppo,69,27.6,1.097295880317688,-0.3507835268974304,0.9934737682342529,-0.32686153054237366,0.9460582137107849,-0.22490648925304413,0.0008429435547441244,-0.0012441746657714248,-0.0017333979485556483,0.0036284991074353456,0.0005741191562265158,-0.0031733063515275717,2.3643882274627686,-4.75836181640625,3.6306658685207367,0.023643882274627687,-0.0475836181640625,0.03630665868520737 +karman_re50,ppo,70,28.0,1.1121903657913208,-0.3426935076713562,0.9699153304100037,-0.2885592579841614,0.9236370921134949,-0.16669459640979767,0.0008417399949394166,-0.0011226608185097575,-0.0022449407260864973,0.003318031318485737,0.0007952427840791643,-0.0028968467377126217,2.545637607574463,-4.838891506195068,3.8895249366760254,0.02545637607574463,-0.048388915061950685,0.038895249366760254 +karman_re50,ppo,71,28.4,1.1187268495559692,-0.28448402881622314,0.9428781867027283,-0.2057400345802307,0.9075340032577515,-0.09852999448776245,0.0007172975456342101,-0.000943774008192122,-0.0025598483625799417,0.003071785671636462,0.0010558342328295112,-0.0027234370354562998,2.5300376415252686,-4.798019587993622,4.088996410369873,0.025300376415252686,-0.04798019587993622,0.04088996410369873 +karman_re50,ppo,72,28.8,1.1155449151992798,-0.17859865725040436,0.9196850061416626,-0.08039505779743195,0.9046682119369507,-0.027516381815075874,0.0004985563573427498,-0.0007550279842689633,-0.002634967677295208,0.003061534371227026,0.0012536575086414814,-0.002650825772434473,2.2398617267608643,-4.498188257217407,4.120611786842346,0.022398617267608643,-0.04498188257217407,0.041206117868423466 +karman_re50,ppo,73,29.2,1.0990879535675049,-0.03957865387201309,0.9114797711372375,0.06571590155363083,0.9153020977973938,0.04063032940030098,0.00021684094099327922,-0.0005740199121646583,-0.0023401190992444754,0.003466604044660926,0.0012678928906098008,-0.002657162258401513,1.6464813947677612,-3.8684131056070323,4.027799367904663,0.016464813947677612,-0.038684131056070326,0.04027799367904663 +karman_re50,ppo,74,29.6,1.0612932443618774,0.12109435349702835,0.9295886754989624,0.19127748906612396,0.9362397789955139,0.09868717938661575,-6.94448090143851e-06,-0.0003266780695412308,-0.0015534029807895422,0.004160990938544273,0.0010538611095398664,-0.002748886588960886,0.8188691139221191,-2.971351385116577,3.99124014377594,0.008188691139221192,-0.029713513851165774,0.0399124014377594 +karman_re50,ppo,75,30.0,1.0075725317001343,0.27286645770072937,0.9700319170951843,0.2684650123119354,0.9639502763748169,0.14029131829738617,5.367425183067098e-05,2.4876837414922193e-05,-0.000440735078882426,0.004705887287855148,0.0005726518575102091,-0.0029547789599746466,-0.13714411854743958,-2.0087229013442993,3.964518189430237,-0.0013714411854743958,-0.020087229013442995,0.03964518189430237 +karman_re50,ppo,76,30.4,0.9658889174461365,0.36070483922958374,1.017703890800476,0.30138278007507324,0.994372546672821,0.16862475872039795,0.0006444930913858116,0.00042143434984609485,0.0004641322302632034,0.004835477564483881,-0.00020722771296277642,-0.0033110452350229025,-1.1278319358825684,-1.2974328994750977,3.6815790832042694,-0.011278319358825685,-0.012974328994750976,0.03681579083204269 +karman_re50,ppo,77,30.8,0.9497519135475159,0.3675702214241028,1.0607019662857056,0.3052695393562317,1.0242773294448853,0.1922302395105362,0.0016233227215707302,0.0008050475735217333,0.0007989496225491166,0.004575486294925213,-0.0010291036451235414,-0.003765130415558815,-2.0272181034088135,-1.128100872039795,3.1018521785736084,-0.020272181034088135,-0.01128100872039795,0.031018521785736084 +karman_re50,ppo,78,31.2,0.9489307999610901,0.317676842212677,1.0904690027236938,0.29309356212615967,1.0516431331634521,0.21629223227500916,0.002337435260415077,0.0011779370252043009,0.0008215995621867478,0.004087559413164854,-0.0014094649814069271,-0.004006417002528906,-2.740478038787842,-1.5337331295013428,2.4253618717193604,-0.027404780387878417,-0.015337331295013428,0.024253618717193604 +karman_re50,ppo,79,31.6,0.9516683220863342,0.2415292114019394,1.1013680696487427,0.2718803882598877,1.0747054815292358,0.24081026017665863,0.002354393480345607,0.0015469538047909737,0.0009404452284798026,0.0037687860894948244,-0.0013974658213555813,-0.003770137671381235,-3.1380906105041504,-2.2632358074188232,2.085460662841797,-0.0313809061050415,-0.022632358074188234,0.020854606628417968 +karman_re50,ppo,80,32.0,0.9528882503509521,0.16551260650157928,1.093122124671936,0.24207545816898346,1.0916831493377686,0.2607867121696472,0.00190825539175421,0.0017394161550328135,0.0012411682400852442,0.003752799704670906,-0.0014980924315750599,-0.0032990959007292986,-3.171754360198974,-2.9585896730422974,2.4022079706192017,-0.031717543601989744,-0.029585896730422973,0.024022079706192016 +karman_re50,ppo,81,32.4,0.9518334865570068,0.1020975410938263,1.0711908340454102,0.19949668645858765,1.100380539894104,0.264675110578537,0.0013474540319293737,0.00171534379478544,0.001611253130249679,0.0038227452896535397,-0.001859475509263575,-0.0029058584477752447,-3.0504069328308105,-3.496038794517517,3.0680420994758606,-0.030504069328308105,-0.03496038794517517,0.030680420994758605 +karman_re50,ppo,82,32.8,0.9495062828063965,0.04519670456647873,1.0443187952041626,0.13990768790245056,1.098506212234497,0.23703022301197052,0.0008560592541471124,0.0016011499101296067,0.001957070780918002,0.0038588223978877068,-0.002312400145456195,-0.002633160911500454,-2.9181389808654785,-3.8882093578577037,3.647976577281952,-0.029181389808654784,-0.03888209357857704,0.03647976577281952 +karman_re50,ppo,83,33.2,0.9481168985366821,-0.015115865506231785,1.0201936960220337,0.06368876993656158,1.0851842164993286,0.16926732659339905,0.00045268569374457,0.0014649193035438657,0.0022480422630906105,0.0038693665992468596,-0.002711568959057331,-0.0024607039522379637,-2.708711624145508,-4.116753473877907,4.0223336815834045,-0.02708711624145508,-0.04116753473877907,0.040223336815834045 +karman_re50,ppo,84,33.6,0.9507613182067871,-0.07669644802808762,1.0018612146377563,-0.023222895339131355,1.061995029449463,0.06804025918245316,0.0001967202260857448,0.0012544504133984447,0.0024274662137031555,0.0038529797457158566,-0.0030073949601501226,-0.0024445720482617617,-2.307777166366577,-4.182840451598167,4.255071759223938,-0.023077771663665772,-0.041828404515981674,0.04255071759223938 +karman_re50,ppo,85,34.0,0.9598582983016968,-0.1286575198173523,0.9897578358650208,-0.10939247906208038,1.0352338552474976,-0.04529336467385292,0.00012338106171227992,0.0009069243678823113,0.002408031141385436,0.0037994547747075558,-0.003082118695601821,-0.002682790858671069,-1.719040870666504,-4.137398317456245,4.2765891551971436,-0.01719040870666504,-0.04137398317456246,0.042765891551971434 +karman_re50,ppo,86,34.4,0.975268542766571,-0.1671738475561142,0.9852578043937683,-0.18142378330230713,1.0143418312072754,-0.1447373330593109,0.00017542100977152586,0.00038443319499492645,0.002184887183830142,0.003782080952078104,-0.0027756330091506243,-0.0031768030021339655,-1.0294909477233887,-4.091618746519089,4.019282221794128,-0.010294909477233887,-0.040916187465190886,0.040192822217941286 +karman_re50,ppo,87,34.8,0.9948716759681702,-0.19914953410625458,0.9884189367294312,-0.23326990008354187,1.002663016319275,-0.21533572673797607,0.000249884877121076,-0.0002880078100133687,0.0018400858389213681,0.0038750064559280872,-0.002104860497638583,-0.0036889228504151106,-0.3308476507663727,-4.182372584939003,3.6323132514953613,-0.003308476507663727,-0.04182372584939003,0.036323132514953616 +karman_re50,ppo,88,35.2,1.016959309577942,-0.23297210037708282,0.995381772518158,-0.2707260251045227,0.9960529804229736,-0.25670233368873596,0.0002961437567137182,-0.000988131039775908,0.0014374015154317021,0.004042578395456076,-0.0013548929709941149,-0.003944150637835264,0.3320983946323395,-4.406886160373688,3.353243410587311,0.0033209839463233947,-0.04406886160373688,0.03353243410587311 +karman_re50,ppo,89,35.6,1.040635585784912,-0.2716958224773407,1.0004165172576904,-0.30193760991096497,0.9891775250434875,-0.27343273162841797,0.0003037280112039298,-0.0015102949691936374,0.0009690993465483189,0.004178295377641916,-0.000805353804025799,-0.003907684702426195,0.946427583694458,-4.627116322517395,3.3122376799583435,0.00946427583694458,-0.04627116322517395,0.033122376799583436 +karman_re50,ppo,90,36.0,1.0647492408752441,-0.3129798173904419,0.9987241625785828,-0.32747048139572144,0.9774377346038818,-0.2693086564540863,0.00029382965294644237,-0.0017372970469295979,0.00043640140211209655,0.0041524264961481094,-0.00047125143464654684,-0.003695046529173851,1.4841761589050293,-4.782524645328522,3.4923648834228516,0.014841761589050293,-0.04782524645328522,0.034923648834228514 +karman_re50,ppo,91,36.4,1.087376594543457,-0.3476928770542145,0.9875714182853699,-0.33829692006111145,0.9584232568740845,-0.24532443284988403,0.00026694536791183054,-0.0017114232759922743,-0.00012895104009658098,0.00390014611184597,-0.00020634861721191555,-0.0033776983618736267,1.918470859527588,-4.9147873520851135,3.787373185157776,0.01918470859527588,-0.049147873520851135,0.03787373185157776 +karman_re50,ppo,92,36.8,1.1056371927261353,-0.3566952645778656,0.9671337604522705,-0.31879720091819763,0.9346529245376587,-0.2007690966129303,0.00021878092957194895,-0.0015319358790293336,-0.0006894491380080581,0.003452495438978076,0.00010354522964917123,-0.0030506339389830828,2.2353122234344482,-5.020001769065857,4.1078948974609375,0.022353122234344484,-0.05020001769065857,0.041078948974609376 +karman_re50,ppo,93,37.2,1.1166026592254639,-0.3185501992702484,0.9410206079483032,-0.25409048795700073,0.9136226177215576,-0.13753069937229156,0.00014383497182279825,-0.0012573754647746682,-0.0012229140847921371,0.002935833530500531,0.00048711508861742914,-0.002790372585877776,2.370267868041992,-5.02764368057251,4.344210386276245,0.023702678680419923,-0.0502764368057251,0.043442103862762455 +karman_re50,ppo,94,37.6,1.1184059381484985,-0.226951465010643,0.9152662754058838,-0.1378789246082306,0.9034318327903748,-0.06221210956573486,4.343650653026998e-05,-0.0009816412348300219,-0.0016656896332278848,0.0026159605477005243,0.0008420241065323353,-0.0026246625930070877,2.2294867038726807,-4.810554385185242,4.3745235204696655,0.022294867038726806,-0.048105543851852416,0.043745235204696656 +karman_re50,ppo,95,38.0,1.1072428226470947,-0.0911882296204567,0.900138795375824,0.016750194132328033,0.9073671698570251,0.01504182256758213,-8.35300306789577e-05,-0.0007572735194116831,-0.0018298299983143806,0.0028185443952679634,0.0009904169710353017,-0.0025413662660866976,1.7452406883239746,-4.260033130645752,4.195500612258911,0.017452406883239745,-0.04260033130645752,0.041955006122589115 +karman_re50,ppo,96,38.4,1.0730412006378174,0.08227348327636719,0.9107856154441833,0.16522474586963654,0.9239521026611328,0.08289527148008347,-0.0002009626041399315,-0.0005400225054472685,-0.001433377736248076,0.003619891358539462,0.0008242856129072607,-0.0025510957930237055,0.9383442401885986,-3.3485682606697083,3.977333188056946,0.009383442401885987,-0.033485682606697084,0.03977333188056946 +karman_re50,ppo,97,38.8,1.0187461376190186,0.26440250873565674,0.9489337801933289,0.26205408573150635,0.9497299194335938,0.13295873999595642,-0.00012344963033683598,-0.0002484067517798394,-0.0004141145327594131,0.004554638173431158,0.00031998782651498914,-0.0026959343813359737,-0.06546592712402344,-2.194294571876526,3.822152137756347,-0.0006546592712402344,-0.021942945718765258,0.038221521377563475 +karman_re50,ppo,98,39.2,0.9778813719749451,0.38169530034065247,0.9975566267967224,0.3052203357219696,0.9801238775253296,0.16724815964698792,0.0005034166388213634,0.00013478028995450586,0.000689554784912616,0.005001118406653404,-0.0005439499509520829,-0.00302777998149395,-1.0993657112121582,-1.1828007698059082,3.5729702413082127,-0.010993657112121582,-0.011828007698059083,0.035729702413082126 +karman_re50,ppo,99,39.6,0.9686273336410522,0.40505746006965637,1.0415241718292236,0.3168540894985199,1.0112497806549072,0.19487135112285614,0.0017048789886757731,0.0005532902432605624,0.0011829755967482924,0.004767243750393391,-0.001518344390206039,-0.003543931758031249,-2.0378262996673584,-0.7860596179962159,3.055931329727173,-0.020378262996673585,-0.007860596179962159,0.03055931329727173 +karman_re50,ppo,100,40.0,0.9755480885505676,0.36654457449913025,1.0733925104141235,0.31506985425949097,1.041010856628418,0.2222253978252411,0.0027289094869047403,0.0009909794898703694,0.0011894352501258254,0.004109107423573732,-0.001931870123371482,-0.00390298361890018,-2.8521604537963867,-1.1018550395965576,2.238771677017212,-0.028521604537963867,-0.011018550395965577,0.02238771677017212 +karman_re50,ppo,101,40.4,0.9799273610115051,0.29849565029144287,1.0895708799362183,0.30638086795806885,1.0679070949554443,0.25023478269577026,0.002911181654781103,0.0014693927951157093,0.0012468023924157023,0.003646943485364318,-0.0017199458088725805,-0.003657858120277524,-3.3708109855651855,-1.8154940605163572,1.621402978897095,-0.033708109855651855,-0.018154940605163573,0.01621402978897095 +karman_re50,ppo,102,40.8,0.9744598269462585,0.22017522156238556,1.0892010927200317,0.28758832812309265,1.0902056694030762,0.2748831808567047,0.0024522196035832167,0.0018190144328400493,0.0014918907545506954,0.0036228960379958153,-0.001612399471923709,-0.0030751540325582027,-3.451148986816406,-2.4760138988494873,1.779574394226074,-0.03451148986816406,-0.024760138988494874,0.01779574394226074 +karman_re50,ppo,103,41.2,0.9618216156959534,0.14494866132736206,1.0747454166412354,0.2511979341506958,1.1054847240447998,0.28542354702949524,0.0018298374488949776,0.0018857415998354554,0.0018294675974175334,0.003769863164052367,-0.0019186146091669798,-0.002591617638245225,-3.323412418365478,-3.0121541023254395,2.4841537475585938,-0.03323412418365478,-0.030121541023254397,0.02484153747558594 +karman_re50,ppo,104,41.6,0.9486044049263,0.07736080884933472,1.0524296760559082,0.1918993443250656,1.1108317375183105,0.26550936698913574,0.0013083969242870808,0.001761427498422563,0.0021462999284267426,0.0038927739951759577,-0.0024572915863245726,-0.002267642179504037,-3.2031750679016113,-3.49681282043457,3.1894934177398677,-0.03203175067901611,-0.0349681282043457,0.03189493417739868 +karman_re50,ppo,105,42.0,0.9399232268333435,0.012715749442577362,1.0297688245773315,0.11155203729867935,1.1041368246078491,0.2036493420600891,0.0008830292499624193,0.0015784321585670114,0.002445286838337779,0.004000524524599314,-0.0029916181229054928,-0.002014263765886426,-3.063364028930664,-3.84119214117527,3.623611032962799,-0.03063364028930664,-0.0384119214117527,0.036236110329627993 +karman_re50,ppo,106,42.4,0.9381551146507263,-0.052202992141246796,1.0110526084899902,0.018127523362636566,1.0857452154159546,0.10382996499538422,0.0005682180635631084,0.0013710432685911655,0.0026880481746047735,0.004096005577594042,-0.003453125711530447,-0.0018597462913021445,-2.7495837211608887,-3.9467653185129166,3.8803810477256775,-0.02749583721160889,-0.03946765318512917,0.03880381047725678 +karman_re50,ppo,107,42.8,0.9442861080169678,-0.1109241396188736,0.9971333146095276,-0.07670613378286362,1.0612995624542236,-0.013091588392853737,0.0004713251837529242,0.0010859575122594833,0.002764409873634577,0.004139220342040062,-0.003779209451749921,-0.001951912185177207,-2.2141997814178467,-3.852733686566353,3.993215203285217,-0.022141997814178468,-0.03852733686566353,0.03993215203285217 +karman_re50,ppo,108,43.2,0.9578809142112732,-0.15590818226337433,0.9894774556159973,-0.1589987426996231,1.04145085811615,-0.11868187040090561,0.0005408881697803736,0.0006466770428232849,0.002642950741574168,0.004187833052128553,-0.003794372081756592,-0.002411552472040057,-1.5532420873641968,-3.7152131795883174,3.865380823612213,-0.015532420873641968,-0.03715213179588318,0.038653808236122134 +karman_re50,ppo,109,43.6,0.9768666625022888,-0.18931280076503754,0.9898034930229187,-0.21864351630210876,1.031262755393982,-0.19496215879917145,0.0006278048967942595,2.3322380002355203e-05,0.0024166260845959187,0.004361377563327551,-0.003363319905474782,-0.003102953778579831,-0.87267804145813,-3.7284610271453853,3.6096535325050354,-0.0087267804145813,-0.037284610271453855,0.036096535325050354 +karman_re50,ppo,110,44.0,0.9989306926727295,-0.22029833495616913,0.9959828853607178,-0.25820523500442505,1.0258537530899048,-0.2410891205072403,0.0006081702304072678,-0.0007424147333949804,0.0021897112019360065,0.004644173197448254,-0.0026332999113947153,-0.0036661787889897823,-0.2148987948894501,-3.9628521054983143,3.4610595703125004,-0.002148987948894501,-0.03962852105498314,0.034610595703125004 +karman_re50,ppo,111,44.4,1.0225683450698853,-0.255220502614975,1.0023951530456543,-0.287655234336853,1.0192712545394897,-0.26149117946624756,0.0004702963342424482,-0.0014455501222983003,0.0019579988438636065,0.004884965252131224,-0.0019088259432464838,-0.0038750055246055126,0.4103721678256988,-4.304083526134491,3.518800675868988,0.004103721678256988,-0.04304083526134491,0.03518800675868988 +karman_re50,ppo,112,44.8,1.0466634035110474,-0.29454413056373596,1.003411054611206,-0.3122571110725403,1.0077965259552002,-0.26016053557395935,0.0002535535313654691,-0.001879975781776011,0.0016535859322175384,0.0048874011263251305,-0.0013375576818361878,-0.003761807456612587,0.9803156852722167,-4.616456091403961,3.769479751586914,0.009803156852722168,-0.046164560914039615,0.03769479751586914 +karman_re50,ppo,113,45.2,1.069769024848938,-0.33296316862106323,0.9951820969581604,-0.3275258243083954,0.9893478155136108,-0.24007007479667664,1.6687996321707033e-05,-0.0019808891229331493,0.0012192627182230353,0.004535432904958725,-0.0008560720016248524,-0.0034362580627202988,1.4632456302642822,-4.87545907497406,4.121987044811249,0.014632456302642823,-0.0487545907497406,0.04121987044811249 +karman_re50,ppo,114,45.6,1.0895752906799316,-0.35624608397483826,0.9763283729553223,-0.32058432698249817,0.9655822515487671,-0.20238010585308075,-0.00019649807654786855,-0.0018301531672477722,0.0006432328373193741,0.0038563553243875504,-0.00035414472222328186,-0.002998834475874901,1.8428397178649902,-5.084392547607422,4.4644399881362915,0.018428397178649903,-0.05084392547607422,0.044644399881362914 +karman_re50,ppo,115,46.0,1.1033694744110107,-0.3428308367729187,0.9490340948104858,-0.2759469449520111,0.9428081512451172,-0.14834822714328766,-0.0003593829751480371,-0.0015411176718771458,-4.6368437324417755e-05,0.0030207675881683826,0.00018087516946252435,-0.002574386540800333,2.0815367698669434,-5.185780167579651,4.69306206703186,0.020815367698669433,-0.05185780167579651,0.046930620670318605 +karman_re50,ppo,116,46.4,1.1090573072433472,-0.27878043055534363,0.9185043573379517,-0.18338130414485931,0.9284364581108093,-0.08133377879858017,-0.00044274370884522796,-0.0011963241267949343,-0.0007760748849250376,0.002341130282729864,0.0006715130875818431,-0.0022556702606379986,2.0834882259368896,-5.075906753540039,4.6875081062316895,0.020834882259368897,-0.05075906753540039,0.046875081062316894 +karman_re50,ppo,117,46.8,1.1042358875274658,-0.16957694292068481,0.8927794694900513,-0.04610345512628555,0.9263529777526855,-0.008225510828197002,-0.00046437059063464403,-0.0009273092728108168,-0.0013463783543556929,0.0022395411506295204,0.0009282478131353855,-0.002081427024677396,1.7588515281677246,-4.659334897994995,4.411298513412476,0.017588515281677247,-0.046593348979949954,0.04411298513412475 +karman_re50,ppo,118,47.2,1.0809295177459717,-0.024640576913952827,0.8867942094802856,0.10777776688337326,0.9368100762367249,0.06038367375731468,-0.0004362469189800322,-0.000715532514732331,-0.001413228688761592,0.002952688140794635,0.0008210279047489166,-0.0020505175925791264,1.0967371463775635,-3.9043311327695847,4.048195481300354,0.010967371463775634,-0.03904331132769585,0.04048195481300354 +karman_re50,ppo,119,47.6,1.0276875495910645,0.1532112956047058,0.9133132100105286,0.22990165650844574,0.9580017328262329,0.11397251486778259,-0.0003236423071939498,-0.000442153395852074,-0.0007242215215228498,0.004107145592570305,0.00037468888331204653,-0.002157161943614483,0.20334824919700623,-2.8527005910873413,3.8509865999221797,0.0020334824919700624,-0.028527005910873413,0.0385098659992218 +karman_re50,ppo,120,48.0,0.9604676961898804,0.3215431272983551,0.9634056687355042,0.29722926020622253,0.9860213398933411,0.151300311088562,0.00014194921823218465,-5.195874837227166e-05,0.0003999308974016458,0.0049244617111980915,-0.0004167050065007061,-0.002430927474051714,-0.8086154460906982,-1.7128024101257324,3.6893128156661987,-0.008086154460906983,-0.017128024101257324,0.036893128156661986 +karman_re50,ppo,121,48.4,0.9184235334396362,0.4086526930332184,1.0178680419921875,0.32302796840667725,1.016477108001709,0.17994099855422974,0.0012366750743240118,0.0003943551273550838,0.0011626571649685502,0.0050283451564610004,-0.0014767562970519066,-0.002913600532338023,-1.87292754650116,-0.9268412590026855,3.1573159694671626,-0.0187292754650116,-0.009268412590026856,0.03157315969467163 +karman_re50,ppo,122,48.8,0.91009521484375,0.40264877676963806,1.0640143156051636,0.32515794038772583,1.0463618040084839,0.20641204714775085,0.002540902467444539,0.000851486052852124,0.001314254361204803,0.0045212386175990105,-0.0021946921478956938,-0.0034100410994142294,-2.851318359375,-0.858762264251709,2.2203928232192993,-0.02851318359375,-0.00858762264251709,0.022203928232192995 +karman_re50,ppo,123,49.2,0.9159533977508545,0.33675578236579895,1.0943324565887451,0.3115902543067932,1.0734113454818726,0.23221750557422638,0.0030971751548349857,0.0013819234445691109,0.001385481096804142,0.003905161051079631,-0.002078412100672722,-0.00337903737090528,-3.550488948822022,-1.429781198501587,1.3369898796081543,-0.03550488948822022,-0.01429781198501587,0.013369898796081543 +karman_re50,ppo,124,49.6,0.9214999675750732,0.24408988654613495,1.1045647859573364,0.2824964225292206,1.0952067375183105,0.25466862320899963,0.0027770879678428173,0.0018295906484127045,0.0016406556824222207,0.0037507235538214445,-0.0017887881258502603,-0.002806783653795719,-3.740260124206543,-2.1753435134887695,1.2509546279907227,-0.03740260124206543,-0.021753435134887696,0.012509546279907227 +karman_re50,ppo,125,50.0,0.923849880695343,0.15311220288276672,1.09528386592865,0.2361477017402649,1.1087983846664429,0.26592952013015747,0.0021040102001279593,0.0019466333324089646,0.002021314110606909,0.003922001924365759,-0.001952455029822886,-0.0021862282883375883,-3.544702768325806,-2.797678232192993,1.9843454360961912,-0.03544702768325806,-0.027976782321929933,0.019843454360961913 +karman_re50,ppo,126,50.4,0.9250106811523438,0.07855463773012161,1.0735633373260498,0.17330774664878845,1.1112087965011597,0.2525639533996582,0.0014908297453075647,0.001818231656216085,0.0023399002384394407,0.004104015417397022,-0.0025196163915097713,-0.00173693778924644,-3.284271001815796,-3.300473153591156,2.8936283588409424,-0.03284271001815796,-0.03300473153591156,0.028936283588409425 +karman_re50,ppo,127,50.8,0.9269298315048218,0.015686258673667908,1.0497872829437256,0.0987498015165329,1.1004775762557983,0.2026890218257904,0.0010088178096339107,0.0016716861864551902,0.0025295261293649673,0.004206527024507523,-0.0031301239505410194,-0.001439971150830388,-3.0737555027008057,-3.6249575018882756,3.4691168069839473,-0.03073755502700806,-0.036249575018882756,0.034691168069839476 +karman_re50,ppo,128,51.2,0.9311951994895935,-0.04527933895587921,1.0304375886917114,0.01779313012957573,1.0773316621780396,0.11594840884208679,0.0006366486777551472,0.0015979480231180787,0.0026036088820546865,0.004282159265130758,-0.0035994076170027256,-0.0013432650594040751,-2.774498462677002,-3.710526585578919,3.7499718070030212,-0.02774498462677002,-0.03710526585578919,0.03749971807003021 +karman_re50,ppo,129,51.6,0.9398733377456665,-0.10253515839576721,1.015638828277588,-0.06484036147594452,1.047572135925293,0.007759816478937864,0.00044717767741531134,0.0014771828427910805,0.0025348076596856117,0.004332385491579771,-0.003866368904709816,-0.001588121522217989,-2.2558960914611816,-3.615787625312805,3.9346129298210144,-0.022558960914611816,-0.03615787625312805,0.039346129298210145 +karman_re50,ppo,130,52.0,0.9539860486984253,-0.14768461883068085,1.0050331354141235,-0.14081718027591705,1.0227359533309937,-0.09630420804023743,0.00044347415678203106,0.0011574721429497004,0.002303921617567539,0.0043555861338973045,-0.003792967414483428,-0.002258882625028491,-1.5646951198577883,-3.5086528062820435,3.9899443387985225,-0.015646951198577883,-0.035086528062820435,0.03989944338798523 +karman_re50,ppo,131,52.4,0.9725186228752136,-0.18010751903057098,1.0010285377502441,-0.19959381222724915,1.0115798711776733,-0.17533284425735474,0.0004907484981231391,0.00058123649796471,0.0019733579829335213,0.0044532776810228825,-0.003207690780982375,-0.0031854482367634773,-0.8402963876724243,-3.591861844062805,3.860027909278869,-0.008402963876724243,-0.035918618440628054,0.038600279092788695 +karman_re50,ppo,132,52.8,0.9937155246734619,-0.2082611620426178,1.0038646459579468,-0.23962965607643127,1.0105994939804077,-0.22502641379833221,0.000489523692522198,-0.00019554037135094404,0.001620074617676437,0.004643195308744907,-0.002222716575488448,-0.003900769632309675,-0.159712553024292,-3.9475879818201065,3.6823518574237823,-0.00159712553024292,-0.03947587981820107,0.036823518574237823 +karman_re50,ppo,133,53.2,1.0161995887756348,-0.23977863788604736,1.00908362865448,-0.26868852972984314,1.0106617212295532,-0.24939066171646118,0.0004298825515434146,-0.0009620892233215272,0.0012491164961829782,0.004806138575077057,-0.0012535486603155732,-0.004075383301824331,0.4787321984767914,-4.393795669078827,3.596372544765473,0.004787321984767914,-0.04393795669078827,0.03596372544765473 +karman_re50,ppo,134,53.6,1.0390244722366333,-0.2764970660209656,1.0108085870742798,-0.29288458824157715,1.0056918859481812,-0.25161248445510864,0.0003282760444562882,-0.0014679458690807223,0.0008104091393761337,0.004748167470097542,-0.0005799634964205325,-0.0038567741867154837,1.0849573612213135,-4.68063759803772,3.7040889263153076,0.010849573612213136,-0.0468063759803772,0.037040889263153076 +karman_re50,ppo,135,54.0,1.0611628293991089,-0.3152536451816559,1.0044786930084229,-0.31044650077819824,0.9930346012115479,-0.23472724854946136,0.0002086944878101349,-0.0016342326998710632,0.0002602121967356652,0.004366436507552862,-0.0001270774519070983,-0.0034909741953015327,1.5910323858261108,-4.838613510131836,3.942226409912109,0.01591032385826111,-0.04838613510131836,0.03942226409912109 +karman_re50,ppo,136,54.4,1.0807831287384033,-0.34552979469299316,0.9875538349151611,-0.31144267320632935,0.9736583232879639,-0.20166875422000885,0.00010462386853760108,-0.0015575862489640713,-0.0003934113774448633,0.0037381071597337723,0.00026245100889354944,-0.0030629297252744436,1.9602563381195068,-4.991321682929993,4.180988669395447,0.01960256338119507,-0.04991321682929993,0.04180988669395447 +karman_re50,ppo,137,54.8,1.0955760478973389,-0.3480090796947479,0.9609533548355103,-0.2818378806114197,0.9532402157783508,-0.15516000986099243,3.072542676818557e-05,-0.001359704416245222,-0.0010788359213620424,0.003052583895623684,0.0006288699805736542,-0.0026585892774164677,2.193574905395508,-5.105697512626648,4.34861958026886,0.021935749053955077,-0.05105697512626648,0.0434861958026886 +karman_re50,ppo,138,55.2,1.1035958528518677,-0.3044446110725403,0.9292384386062622,-0.21009774506092072,0.9391330480575562,-0.09746155887842178,-1.1478460692160297e-05,-0.0011234156554564834,-0.0017051713075488806,0.0025569540448486805,0.0009385012090206146,-0.0023747123777866364,2.2296385765075684,-5.071991682052612,4.363874077796936,0.022296385765075685,-0.05071991682052612,0.04363874077796936 +karman_re50,ppo,139,55.6,1.1033433675765991,-0.2145511955022812,0.8991658091545105,-0.09503357857465744,0.9355301856994629,-0.032074812799692154,-4.634914148482494e-05,-0.0009277862845920026,-0.0021181516349315643,0.0025415471754968166,0.0010884646326303482,-0.0022440492175519466,1.986964702606201,-4.781107604503632,4.187470316886902,0.01986964702606201,-0.047811076045036316,0.04187470316886902 +karman_re50,ppo,140,56.0,1.0911353826522827,-0.09252335876226425,0.8818906545639038,0.04755856469273567,0.9430111646652222,0.03379235044121742,-0.00011247341171838343,-0.0007417179876938462,-0.002067617140710354,0.0031692141201347113,0.0010010828264057636,-0.0022309785708785057,1.4492888450622559,-4.17939867079258,3.9681021571159367,0.014492888450622559,-0.0417939867079258,0.03968102157115937 +karman_re50,ppo,141,56.4,1.0558843612670898,0.0536162406206131,0.8927555084228516,0.1799231469631195,0.9606503248214722,0.08914373070001602,-0.00018454535165801644,-0.0004545666160993278,-0.0013526264810934663,0.004121385980397463,0.0007052416913211346,-0.002306399866938591,0.7046639919281006,-3.2977312207221985,3.97290301322937,0.007046639919281006,-0.032977312207221984,0.0397290301322937 +karman_re50,ppo,142,56.8,0.9912409782409668,0.21464355289936066,0.9345563650131226,0.26690542697906494,0.9858405590057373,0.12827929854393005,-5.862898979103193e-05,-3.269441003794782e-05,-0.0002175915869884193,0.004773064982146025,0.000180534872924909,-0.00248011015355587,-0.1696009337902069,-2.3077503442764282,4.102070331573486,-0.0016960093379020692,-0.023077503442764283,0.04102070331573487 +karman_re50,ppo,143,57.2,0.9226301312446594,0.34063613414764404,0.9916499853134155,0.30541789531707764,1.0144951343536377,0.15586218237876892,0.0005775560275651515,0.0003965004289057106,0.0006944566266611218,0.004935133270919323,-0.0006691111484542489,-0.002811274491250515,-1.2079815864562988,-1.4803466796875,3.782436966896057,-0.012079815864562988,-0.014803466796875,0.03782436966896057 +karman_re50,ppo,144,57.6,0.8834388256072998,0.38027557730674744,1.046966314315796,0.3087592124938965,1.0428283214569092,0.1791633814573288,0.0016767054330557585,0.0007855588919483125,0.0010427937377244234,0.00478103943169117,-0.0015870946226641536,-0.003249087603762746,-2.2855920791625977,-1.1179218292236328,2.8869783878326416,-0.02285592079162598,-0.011179218292236328,0.028869783878326418 +karman_re50,ppo,145,58.0,0.8764567375183105,0.33786869049072266,1.0880318880081177,0.28781285881996155,1.0679153203964233,0.20174488425254822,0.0025449558161199093,0.001203319989144802,0.001113447593525052,0.004347683396190405,-0.0019800118170678616,-0.0034596859477460384,-3.121304512023926,-1.3744502067565918,1.9478347301483154,-0.031213045120239258,-0.013744502067565919,0.019478347301483154 +karman_re50,ppo,146,58.4,0.8876023888587952,0.2512626647949219,1.1062018871307373,0.2503940761089325,1.0873069763183594,0.22312870621681213,0.0026094072964042425,0.0016415587160736322,0.0013076594332233071,0.004027878865599632,-0.0018829863984137774,-0.0031446584034711123,-3.527657508850097,-2.06266987323761,1.5306313037872314,-0.035276575088500975,-0.0206266987323761,0.015306313037872315 +karman_re50,ppo,147,58.8,0.9058239459991455,0.16308064758777618,1.1001003980636597,0.20418761670589447,1.0987716913223267,0.23924918472766876,0.002113252878189087,0.0018578736344352365,0.0016721256542950869,0.004047037567943335,-0.001927965902723372,-0.0025647280272096395,-3.462956190109253,-2.7703689336776733,1.944716930389404,-0.03462956190109253,-0.027703689336776735,0.019447169303894042 +karman_re50,ppo,148,59.2,0.9235029816627502,0.09617588669061661,1.0782251358032227,0.15442341566085815,1.1004825830459595,0.24031361937522888,0.0015002908185124397,0.001811591093428433,0.002037769416347146,0.004161511547863483,-0.0023308387026190758,-0.0020801308564841747,-3.190371513366699,-3.281816422939301,2.779693841934204,-0.03190371513366699,-0.03281816422939301,0.02779693841934204 +karman_re50,ppo,149,59.6,0.9357953071594238,0.0424802303314209,1.0536315441131592,0.1016148030757904,1.0912559032440186,0.2136886566877365,0.000990508240647614,0.0017392713343724608,0.0022459300234913826,0.004202700220048428,-0.0028397224377840757,-0.0018043236341327429,-2.952228307723999,-3.5738921761512756,3.4390224218368526,-0.029522283077239992,-0.035738921761512756,0.03439022421836853 +karman_re50,ppo,150,60.0,0.9429171085357666,-0.014047504402697086,1.0343825817108154,0.04241309314966202,1.0711687803268433,0.15190652012825012,0.0005834100302308798,0.001728707691654563,0.0023040054365992546,0.004213269799947739,-0.0032297291327267885,-0.0017795120365917683,-2.702535629272461,-3.69280332326889,3.807993173599243,-0.02702535629272461,-0.0369280332326889,0.03807993173599243 +karman_re50,ppo,151,60.4,0.9494089484214783,-0.07289699465036392,1.0200426578521729,-0.025468040257692337,1.042892575263977,0.060223840177059174,0.00031317101093009114,0.0016513927839696407,0.002245187060907483,0.004230530932545662,-0.003430799813941121,-0.002053068485110998,-2.279658794403076,-3.7182710766792297,4.092368841171265,-0.022796587944030763,-0.0371827107667923,0.04092368841171265 +karman_re50,ppo,152,60.8,0.9596002101898193,-0.12241528183221817,1.0078468322753906,-0.09742823243141174,1.0136291980743408,-0.043163470923900604,0.00022988332784734666,0.0013577303616330028,0.00205591251142323,0.004216357134282589,-0.0033330542501062155,-0.0026387760881334543,-1.6574621200561523,-3.7256898283958435,4.281311273574829,-0.016574621200561523,-0.03725689828395844,0.04281311273574829 +karman_re50,ppo,153,61.2,0.9744788408279419,-0.1584908366203308,0.9996082782745361,-0.16180843114852905,0.9942046403884888,-0.13439755141735077,0.0002506424789316952,0.0007949759601615369,0.0017390024149790406,0.004207140766084194,-0.0027781587559729815,-0.0034154856111854315,-0.9391216039657592,-3.818027779459953,4.201724052429199,-0.009391216039657592,-0.03818027779459953,0.042017240524291996 +karman_re50,ppo,154,61.6,0.9929054379463196,-0.18805812299251556,0.9983875155448914,-0.21037131547927856,0.9893712401390076,-0.19824029505252838,0.0002872571931220591,4.769857332576066e-05,0.0013361085439100862,0.004246296361088753,-0.001810166286304593,-0.004031267948448658,-0.22773763537406924,-4.09334634244442,3.9003309011459355,-0.0022773763537406923,-0.0409334634244442,0.039003309011459354 +karman_re50,ppo,155,62.0,1.0134336948394775,-0.21970482170581818,1.0020875930786133,-0.24613821506500244,0.9922275543212891,-0.2347950041294098,0.000312644406221807,-0.0007238085381686687,0.0008721380145289004,0.004291341174393892,-0.0008254085551016033,-0.004190017469227314,0.4341006577014923,-4.463618516921997,3.601837247610092,0.004341006577014923,-0.04463618516921997,0.03601837247610092 +karman_re50,ppo,156,62.4,1.0349249839782715,-0.2564833462238312,1.0049219131469727,-0.27553924918174744,0.9932302832603455,-0.24898138642311096,0.0003248073626309633,-0.0012822634307667613,0.0003211586445104331,0.004244051408022642,-0.00016852129192557186,-0.003989385440945625,1.047587275505066,-4.704250514507294,3.499195694923401,0.01047587275505066,-0.04704250514507294,0.03499195694923401 +karman_re50,ppo,157,62.8,1.0563957691192627,-0.2967103123664856,1.001708984375,-0.2996954321861267,0.9869892001152039,-0.24446244537830353,0.00033868555328808725,-0.0015287291025742888,-0.0003043336037080735,0.004028601106256247,0.0001769381924532354,-0.0036700754426419735,1.5668115615844724,-4.800584554672241,3.581948846578598,0.015668115615844726,-0.048005845546722416,0.03581948846578598 +karman_re50,ppo,158,63.2,1.076259732246399,-0.3325008153915405,0.989257276058197,-0.31127670407295227,0.9723467826843262,-0.22298206388950348,0.00035554435453377664,-0.001543777179904282,-0.0009485086193308234,0.0036762740928679705,0.00038379488978534937,-0.0033075956162065268,1.9540274143218994,-4.887235462665558,3.738418400287628,0.019540274143218996,-0.04887235462665558,0.03738418400287628 +karman_re50,ppo,159,63.6,1.0924019813537598,-0.3468915820121765,0.9675083160400391,-0.2970685660839081,0.9528896808624268,-0.18536201119422913,0.0003635444154497236,-0.0014367722906172276,-0.0015232121804729104,0.0032951561734080315,0.0005650740349665284,-0.002971513196825981,2.2181386947631836,-4.973637342453003,3.9184206128120422,0.022181386947631835,-0.04973637342453003,0.03918420612812042 +karman_re50,ppo,160,64.0,1.1028116941452026,-0.3190288841724396,0.9401729702949524,-0.24375192821025848,0.9358036518096924,-0.13281932473182678,0.00032559159444645047,-0.001257672207430005,-0.0019576968625187874,0.003007544670253992,0.0007598529919050634,-0.002732868306338787,2.3231704235076904,-4.983623027801514,4.069380164146423,0.023231704235076905,-0.04983623027801514,0.04069380164146424 +karman_re50,ppo,161,64.4,1.105850100517273,-0.2412511110305786,0.9130575656890869,-0.14575785398483276,0.927388608455658,-0.06870866566896439,0.00023308995878323913,-0.0010502213845029473,-0.0021844999864697456,0.0029443951789289713,0.0009275178890675306,-0.002616622718051076,2.1960220336914062,-4.796355485916138,4.123523116111755,0.02196022033691406,-0.04796355485916138,0.041235231161117554 +karman_re50,ppo,162,64.8,1.099217414855957,-0.12486841529607773,0.8942163586616516,-0.011799374595284462,0.9300599694252014,8.077677193796262e-05,6.83177713654004e-05,-0.0008265480282716453,-0.0020897688809782267,0.0032388358376920223,0.0009730620076879859,-0.0025758426636457443,1.780305624008179,-4.32108861207962,4.082790017127991,0.01780305624008179,-0.0432108861207962,0.04082790017127991 +karman_re50,ppo,163,65.2,1.0757044553756714,0.01658308506011963,0.8967444896697998,0.12770691514015198,0.943376362323761,0.06280652433633804,-0.00010790093801915646,-0.0005483616259880364,-0.0015411549247801304,0.0038427910767495632,0.0008337355684489012,-0.002586972201243043,1.0979094505310059,-3.5512557029724117,4.079303503036499,0.01097909450531006,-0.03551255702972412,0.040793035030364994 +karman_re50,ppo,164,65.6,1.0261584520339966,0.17417117953300476,0.9289153218269348,0.23092591762542725,0.9653018116950989,0.10984537750482559,-0.0001257485564565286,-0.00015908018394839019,-0.0005871995235793293,0.004444505088031292,0.0004619846004061401,-0.002676640637218952,0.23002424836158752,-2.606559157371521,4.122158706188202,0.0023002424836158753,-0.02606559157371521,0.04122158706188202 +karman_re50,ppo,165,66.0,0.9650858044624329,0.3093159794807434,0.9805257320404053,0.28180474042892456,0.9922180771827698,0.14186698198318481,0.0002864038688130677,0.0002520983980502933,0.0003719697124324739,0.004771060775965452,-0.0002262256311951205,-0.0029032689053565264,-0.7645564079284668,-1.7138137817382812,3.906287133693695,-0.007645564079284668,-0.017138137817382812,0.03906287133693695 +karman_re50,ppo,166,66.4,0.9252355098724365,0.36721178889274597,1.033663034439087,0.29206088185310364,1.0200088024139404,0.1668328493833542,0.0012071552919223905,0.0006492955726571381,0.000901820370927453,0.004783919546753168,-0.0011220831656828523,-0.003288891864940524,-1.7850176095962524,-1.1815381050109863,3.2506213188171387,-0.017850176095962525,-0.011815381050109864,0.03250621318817139 +karman_re50,ppo,167,66.8,0.9163652658462524,0.34250256419181824,1.0744678974151611,0.2787993550300598,1.045602560043335,0.19116531312465668,0.00217139208689332,0.001054504537023604,0.0010002177441492677,0.004452122375369072,-0.0017331024864688516,-0.0036327149718999863,-2.630707263946533,-1.2533879280090332,2.458137273788452,-0.026307072639465332,-0.012533879280090332,0.02458137273788452 +karman_re50,ppo,168,67.2,0.9256784915924072,0.2711343467235565,1.0945541858673096,0.2550809979438782,1.067089319229126,0.21642111241817474,0.0024986304342746735,0.001478623948059976,0.0010736524127423763,0.004033821634948254,-0.0017918248195201159,-0.0035656807012856007,-3.1575894355773926,-1.8519365787506104,1.9250800609588625,-0.031575894355773924,-0.018519365787506105,0.019250800609588625 +karman_re50,ppo,169,67.6,0.9396114349365234,0.19368401169776917,1.0925060510635376,0.22783662378787994,1.0830107927322388,0.24022231996059418,0.002170942025259137,0.0017943441634997725,0.0013160017551854253,0.00391427194699645,-0.001753585529513657,-0.0031182714737951756,-3.2700934410095215,-2.581436276435852,2.0397123098373413,-0.032700934410095216,-0.02581436276435852,0.020397123098373413 +karman_re50,ppo,170,68.0,0.950369119644165,0.131767138838768,1.0743716955184937,0.19632044434547424,1.0920313596725464,0.25455954670906067,0.0015913352835923433,0.001868454972282052,0.0016414119163528085,0.003982486203312874,-0.0019881660118699074,-0.0026782387867569923,-3.1184539794921875,-3.129151463508606,2.688333034515381,-0.031184539794921876,-0.03129151463508606,0.02688333034515381 +karman_re50,ppo,171,68.4,0.9553202986717224,0.08031541854143143,1.0503231287002563,0.15483754873275757,1.092757225036621,0.24563339352607727,0.0010677478276193142,0.0018281787633895874,0.0018929323414340615,0.004038829356431961,-0.0023911581374704838,-0.002423066645860672,-2.951472759246826,-3.4956895112991333,3.363258004188538,-0.029514727592468263,-0.03495689511299133,0.03363258004188538 +karman_re50,ppo,172,68.8,0.9556600451469421,0.024860195815563202,1.0288811922073364,0.09880158305168152,1.0838574171066284,0.20085091888904572,0.0006480311858467758,0.0017704060301184654,0.0020524265710264444,0.004065079614520073,-0.0027565318159759045,-0.002348333364352584,-2.7857139110565186,-3.741726756095886,3.8150539398193355,-0.027857139110565185,-0.03741726756095886,0.03815053939819336 +karman_re50,ppo,173,69.2,0.9554228782653809,-0.03710786998271942,1.012836217880249,0.02838975004851818,1.065234899520874,0.11886589229106903,0.0003403291921131313,0.0016335822874680161,0.0021430959459394217,0.00408749608322978,-0.0030113414395600557,-0.0024330930318683386,-2.480431318283081,-3.8930264562368393,4.137458860874176,-0.02480431318283081,-0.038930264562368394,0.04137458860874176 +karman_re50,ppo,174,69.6,0.9593147039413452,-0.09440328925848007,1.0002888441085815,-0.05050428956747055,1.0400248765945435,0.013447066769003868,0.0001984227419598028,0.0013206814182922244,0.002124993596225977,0.004065548535436392,-0.0030866560991853476,-0.002696390962228179,-1.9722031354904177,-3.955663695931435,4.338972449302673,-0.019722031354904176,-0.03955663695931435,0.043389724493026735 +karman_re50,ppo,175,70.0,0.9694923162460327,-0.1383025050163269,0.990904688835144,-0.1265905350446701,1.016886830329895,-0.09101707488298416,0.00020813796436414123,0.0008120948332361877,0.0019572931341826916,0.004014870617538691,-0.0028411494567990303,-0.0031514314468950033,-1.3202255964279175,-3.9728331714868546,4.267229676246643,-0.013202255964279175,-0.039728331714868545,0.04267229676246643 +karman_re50,ppo,176,70.4,0.9852138757705688,-0.17181581258773804,0.9879194498062134,-0.18790201842784882,1.0048772096633911,-0.17177116870880127,0.0002774576423689723,0.00011231866665184498,0.0016670061741024256,0.0040219430811703205,-0.0022141661029309034,-0.0036692414432764053,-0.6164858341217041,-4.055669590830803,3.9383320808410645,-0.006164858341217041,-0.04055669590830803,0.03938332080841064 +karman_re50,ppo,177,70.8,1.004555106163025,-0.2040037214756012,0.9916115403175354,-0.23235884308815002,1.0026692152023315,-0.22265835106372833,0.00031730509363114834,-0.0006619789637625217,0.0013119439827278256,0.004099879879504442,-0.0014123630244284868,-0.004000299144536257,0.05768397450447082,-4.275115609169006,3.580508291721344,0.0005768397450447082,-0.042751156091690064,0.03580508291721344 +karman_re50,ppo,178,71.2,1.0257736444473267,-0.24036626517772675,0.9969636797904968,-0.26645800471305847,1.0016754865646362,-0.2486792802810669,0.00030453206272795796,-0.0013212242629379034,0.0008963749278336763,0.0041849142871797085,-0.0007530362345278263,-0.00402121851220727,0.6698797941207886,-4.536105394363403,3.4013497829437256,0.006698797941207886,-0.04536105394363404,0.03401349782943726 +karman_re50,ppo,179,71.6,1.0476237535476685,-0.2810550630092621,0.9979973435401917,-0.29485824704170227,0.9955499172210693,-0.25449568033218384,0.00026495318161323667,-0.0017025237902998924,0.0004147683794144541,0.004159513395279646,-0.0003615143068600446,-0.0038216777611523867,1.2136492729187012,-4.7196308970451355,3.4527645111083984,0.012136492729187012,-0.04719630897045136,0.034527645111083985 +karman_re50,ppo,180,72.0,1.0686475038528442,-0.32084259390830994,0.9905959367752075,-0.3138502836227417,0.9817930459976196,-0.2419213056564331,0.00022099690977483988,-0.0017959603574126959,-0.00010498699703020975,0.003960673231631517,-0.00014004588592797518,-0.003510243259370327,1.661327600479126,-4.848226070404053,3.6517867743968964,0.01661327600479126,-0.048482260704040527,0.036517867743968965 +karman_re50,ppo,181,72.4,1.0868417024612427,-0.3459934890270233,0.9734776020050049,-0.31178969144821167,0.9617999792098999,-0.2109750509262085,0.0001752568205120042,-0.0017068859888240695,-0.0006103035411797464,0.0036118223797529936,6.57736964058131e-05,-0.0031647514551877975,1.9987332820892334,-4.963080167770386,3.913797378540039,0.019987332820892333,-0.04963080167770386,0.03913797378540039 +karman_re50,ppo,182,72.8,1.1000547409057617,-0.33521705865859985,0.9491370320320129,-0.2741739749908447,0.9412893056869507,-0.16210335493087769,0.00010262406431138515,-0.0014985745074227452,-0.0010551470331847668,0.0032116484362632036,0.00031850452069193125,-0.002875939942896366,2.199300527572632,-5.028469800949097,4.166266679763794,0.02199300527572632,-0.050284698009490966,0.04166266679763794 +karman_re50,ppo,183,73.2,1.106326699256897,-0.27381575107574463,0.9226852655410767,-0.1912768930196762,0.9272412061691284,-0.09831520169973373,2.939580781458062e-06,-0.001238554366864264,-0.0014034468913450837,0.0029023615643382072,0.000596419966313988,-0.0026864216197282076,2.187868595123291,-4.940116226673126,4.315644383430481,0.02187868595123291,-0.04940116226673126,0.04315644383430481 +karman_re50,ppo,184,73.6,1.1036126613616943,-0.1668878197669983,0.9008870124816895,-0.06572839617729187,0.9238983392715454,-0.026663916185498238,-0.00013080029748380184,-0.0009768449235707521,-0.001563014811836183,0.0028928471729159355,0.0007810042006894946,-0.0025719061959534883,1.8873956203460693,-4.577975392341614,4.293893218040466,0.018873956203460693,-0.04577975392341614,0.04293893218040466 +karman_re50,ppo,185,74.0,1.0866093635559082,-0.02817963995039463,0.8953863382339478,0.0792696624994278,0.9320151805877686,0.04235129803419113,-0.00026535263168625534,-0.0007067032274790108,-0.0013578649377450347,0.003335476852953434,0.0007394745480269194,-0.0025107841938734055,1.2802469730377197,-3.889844372868538,4.178696990013123,0.012802469730377198,-0.03889844372868538,0.04178696990013123 +karman_re50,ppo,186,74.4,1.045570969581604,0.13417068123817444,0.9180870652198792,0.19956247508525848,0.950208306312561,0.09759846329689026,-0.0002729634870775044,-0.0003823529987130314,-0.0006601442582905293,0.004061486572027206,0.00041999775567092,-0.0025343068409711123,0.43498578667640686,-2.9322996139526367,4.091311573982239,0.004349857866764069,-0.029322996139526367,0.04091311573982239 +karman_re50,ppo,187,74.8,0.9888365268707275,0.2881256639957428,0.9637770652770996,0.2672852575778961,0.9753488302230835,0.1362733393907547,7.640732656000182e-05,4.180988980806433e-06,0.00030066826730035245,0.0046605560928583145,-0.0002332044387003407,-0.0027052736841142178,-0.5482040643692017,-1.9058449268341067,3.8984686732292175,-0.005482040643692017,-0.019058449268341066,0.038984686732292176 +karman_re50,ppo,188,75.2,0.9495310187339783,0.3717608153820038,1.014319896697998,0.29076021909713745,1.0032845735549927,0.1652308702468872,0.0009825305314734578,0.00041707156924530864,0.000989338499493897,0.004851785022765398,-0.0011628955835476518,-0.003084819298237562,-1.568228244781494,-1.157130241394043,3.371679544448852,-0.01568228244781494,-0.011571302413940429,0.03371679544448852 +karman_re50,ppo,189,75.6,0.9416441917419434,0.3685901165008545,1.055324912071228,0.29049593210220337,1.0306775569915771,0.19229073822498322,0.0021242352668195963,0.0008506210288032889,0.0011550902854651213,0.004560956731438637,-0.0019117193296551704,-0.003534480696544051,-2.4706783294677734,-1.027601718902588,2.6013431549072266,-0.024706783294677737,-0.010276017189025878,0.026013431549072267 +karman_re50,ppo,190,76.0,0.9503718018531799,0.31228822469711304,1.0792779922485352,0.2807852625846863,1.055525541305542,0.22042861580848694,0.00271206209436059,0.001314264489337802,0.0011718550231307745,0.004041502717882395,-0.0020072893239557743,-0.0036267584655433893,-3.12371826171875,-1.5102546215057373,1.8951451778411867,-0.0312371826171875,-0.015102546215057373,0.018951451778411867 +karman_re50,ppo,191,76.4,0.9590641260147095,0.23961175978183746,1.084256649017334,0.26594653725624084,1.076377511024475,0.24810606241226196,0.002510928548872471,0.0017419778741896152,0.001345407566986978,0.0038157873786985874,-0.001825372688472271,-0.003220273181796074,-3.3769936561584473,-2.2176709175109863,1.7478604316711426,-0.033769936561584474,-0.022176709175109863,0.017478604316711426 +karman_re50,ppo,192,76.8,0.9611361026763916,0.17205968499183655,1.0731444358825684,0.2422834187746048,1.0916839838027954,0.26866528391838074,0.00195508380420506,0.0019426237558946013,0.0016469024121761322,0.003878070507198572,-0.0019242786802351475,-0.0027192323468625546,-3.293370962142944,-2.7882169485092163,2.2775659561157227,-0.03293370962142944,-0.027882169485092163,0.02277565956115723 +karman_re50,ppo,193,77.2,0.9577552080154419,0.11299408227205276,1.052768349647522,0.20263826847076416,1.0996081829071045,0.2684429883956909,0.001404489972628653,0.001927192322909832,0.0019272741628810763,0.003984853159636259,-0.0023169044870883226,-0.0023868600837886333,-3.1484532356262207,-3.2244301438331604,2.9967293739318848,-0.03148453235626221,-0.0322443014383316,0.029967293739318848 +karman_re50,ppo,194,77.6,0.9523419141769409,0.05439673736691475,1.0311920642852783,0.1433313637971878,1.0979363918304443,0.23252718150615692,0.0009602541686035693,0.0018280863296240568,0.002138097072020173,0.00406790291890502,-0.0027663949877023697,-0.002209697850048542,-3.025463104248047,-3.56890743970871,3.5249509811401367,-0.03025463104248047,-0.0356890743970871,0.03524950981140137 +karman_re50,ppo,195,78.0,0.9482616186141968,-0.009659629315137863,1.0136924982070923,0.06678148359060287,1.0853270292282104,0.15571081638336182,0.0006174439331516623,0.0016754323150962591,0.0023047300055623055,0.004147434141486883,-0.0031520980410277843,-0.00214412622153759,-2.801220178604126,-3.7801267653703685,3.8631627559661865,-0.02801220178604126,-0.03780126765370369,0.03863162755966187 +karman_re50,ppo,196,78.4,0.9490377902984619,-0.07298944145441055,1.000525951385498,-0.019520310685038567,1.0635309219360352,0.04929971694946289,0.0004277327680028975,0.0014081927947700024,0.002384238876402378,0.00419100234284997,-0.003424734575673938,-0.0022320521529763937,-2.370255470275879,-3.8359513133764267,4.087050795555115,-0.02370255470275879,-0.03835951313376427,0.040870507955551146 +karman_re50,ppo,197,78.8,0.9569374322891235,-0.12475065141916275,0.9906805157661438,-0.10460047423839569,1.040235996246338,-0.062336087226867676,0.0004260084533598274,0.0009686327539384365,0.0023171748034656048,0.004190883133560419,-0.0034653490874916315,-0.002570024924352765,-1.7602944374084473,-3.789332404732704,4.104219138622284,-0.017602944374084474,-0.037893324047327044,0.04104219138622284 +karman_re50,ppo,198,79.2,0.9716227054595947,-0.16266216337680817,0.9865984916687012,-0.17513157427310944,1.0257662534713745,-0.15323323011398315,0.0005095419473946095,0.00034893120755441487,0.002121447818353772,0.004248610232025385,-0.003119360888376832,-0.003140893531963229,-1.071975827217102,-3.777412697672844,3.873596012592316,-0.010719758272171021,-0.03777412697672844,0.03873596012592316 +karman_re50,ppo,199,79.6,0.9909868836402893,-0.19445031881332397,0.9899606108665466,-0.2251037359237671,1.021317720413208,-0.2131897360086441,0.0005440925597213209,-0.00042061106069013476,0.0018791381735354662,0.00441428879275918,-0.002436438575387001,-0.0037058659363538027,-0.3912353813648224,-3.9381396025419235,3.596186101436615,-0.003912353813648224,-0.039381396025419235,0.03596186101436615 +karman_re50,ppo,200,80.0,1.0127291679382324,-0.2282622754573822,0.9968985915184021,-0.26027268171310425,1.0192272663116455,-0.24588848650455475,0.00046952985576353967,-0.0011878748191520572,0.0016248339088633657,0.004612662363797426,-0.0016910689882934093,-0.003976188134402037,0.23845484852790833,-4.248532608151436,3.466985940933227,0.002384548485279083,-0.04248532608151436,0.034669859409332274 +karman_re50,ppo,201,80.4,1.0352495908737183,-0.2666848301887512,1.0010685920715332,-0.2882438600063324,1.0130743980407715,-0.25593292713165283,0.0003116133448202163,-0.0017389352433383465,0.0013191624311730266,0.004677894525229931,-0.0011222762987017632,-0.003912230487912893,0.8153403997421266,-4.548329174518585,3.554893374443054,0.008153403997421265,-0.04548329174518585,0.03554893374443054 +karman_re50,ppo,202,80.8,1.0572742223739624,-0.30715659260749817,0.9975067377090454,-0.3093625009059906,0.9999345541000366,-0.2463403195142746,0.0001272502267966047,-0.001965699251741171,0.0009265284170396626,0.004480892326682806,-0.0007284486200660467,-0.003627561964094639,1.3126602172851562,-4.774734914302826,3.805368900299072,0.013126602172851562,-0.04774734914302826,0.03805368900299072 +karman_re50,ppo,203,81.2,1.0771071910858154,-0.33979132771492004,0.9837172031402588,-0.31473806500434875,0.9800525903701782,-0.2186243087053299,-4.295905455364846e-05,-0.0019152361201122403,0.00044281111331656575,0.00401538098230958,-0.000380651094019413,-0.0032356134615838528,1.7077369689941408,-4.959192991256714,4.114589214324951,0.017077369689941408,-0.04959192991256714,0.04114589214324951 +karman_re50,ppo,204,81.6,1.0927157402038574,-0.3456982374191284,0.960693895816803,-0.290397047996521,0.9580462574958801,-0.17402152717113495,-0.00019036958110518754,-0.001702581183053553,-9.550526738166809e-05,0.0033940363209694624,-1.9986923689430114e-06,-0.002840468194335699,1.9812204837799072,-5.09378182888031,4.39322555065155,0.019812204837799073,-0.0509378182888031,0.04393225550651551 +karman_re50,ppo,205,82.0,1.1019680500030518,-0.3055381178855896,0.932644248008728,-0.22395063936710358,0.9407874941825867,-0.11470398306846619,-0.0003107213706243783,-0.0014093773206695914,-0.000643652630969882,0.0028087568935006857,0.0003901336749549955,-0.002528243465349078,2.072110176086426,-5.092141032218933,4.5451613664627075,0.02072110176086426,-0.05092141032218933,0.04545161366462708 +karman_re50,ppo,206,82.4,1.102908730506897,-0.21692828834056854,0.9056110382080078,-0.11288169771432877,0.933159351348877,-0.045772675424814224,-0.000401179539039731,-0.001120004104450345,-0.00108938361518085,0.0025358381681144238,0.0006815000087954104,-0.0023150646593421698,1.8917620182037354,-4.835932016372681,4.484298944473267,0.018917620182037354,-0.04835932016372681,0.04484298944473267 +karman_re50,ppo,207,82.8,1.0920062065124512,-0.09301396459341049,0.889568030834198,0.028573868796229362,0.9367673397064209,0.02398468181490898,-0.00045241363113746047,-0.0008617157582193613,-0.0012265732511878014,0.00283321226015687,0.0007175046484917402,-0.002205758588388562,1.3961596488952637,-4.252407908439636,4.264867424964905,0.013961596488952637,-0.042524079084396364,0.04264867424964905 +karman_re50,ppo,208,83.2,1.0596035718917847,0.05727037042379379,0.899129331111908,0.1628675013780594,0.9511985182762146,0.08319786190986633,-0.0004223383730277419,-0.0005770878633484244,-0.000813233491498977,0.0036398633383214474,0.0004490644496399909,-0.002196794841438532,0.6323672533035278,-3.368781805038452,4.078037977218628,0.006323672533035278,-0.033687818050384524,0.04078037977218628 +karman_re50,ppo,209,83.6,1.0015590190887451,0.221546933054924,0.9378526210784912,0.25211840867996216,0.9741438031196594,0.12597347795963287,-0.00014555790403392166,-0.00020504894200712442,7.800124876666814e-05,0.004472415894269943,-0.00014043929695617408,-0.002329718554392457,-0.2872205674648285,-2.322867274284363,3.955445766448975,-0.002872205674648285,-0.02322867274284363,0.03955445766448975 +karman_re50,ppo,210,84.0,0.9440548419952393,0.3465951085090637,0.9904363751411438,0.2926001250743866,1.001604437828064,0.1569978892803192,0.0006373763899318874,0.00021902931621298194,0.000914371688850224,0.004881975241005421,-0.0010546123376116157,-0.0026677907444536686,-1.310803771018982,-1.4012823104858398,3.56395024061203,-0.01310803771018982,-0.014012823104858399,0.0356395024061203 +karman_re50,ppo,211,84.4,0.9168589115142822,0.3846016824245453,1.0396090745925903,0.30180054903030396,1.0297174453735352,0.1841108202934265,0.0018537923460826278,0.0006623390363529325,0.0012346329167485237,0.004766589030623436,-0.0019740357529371977,-0.0031666727736592293,-2.32951283454895,-0.9833748340606691,2.753659963607788,-0.023295128345489503,-0.00983374834060669,0.02753659963607788 +karman_re50,ppo,212,84.8,0.9168626666069031,0.34742113947868347,1.0746878385543823,0.2944751977920532,1.055850625038147,0.2113032191991806,0.002755227964371443,0.001147000351920724,0.001264939783141017,0.004254195839166641,-0.0022575350012630224,-0.003430624259635806,-3.147066354751587,-1.240222692489624,1.8451523780822754,-0.03147066354751587,-0.01240222692489624,0.018451523780822755 +karman_re50,ppo,213,85.2,0.9260150790214539,0.2726428508758545,1.0903385877609253,0.27643823623657227,1.0780503749847412,0.2379027009010315,0.002785926451906562,0.0016568196006119251,0.0014211368979886174,0.0039027363527566195,-0.0020152360666543245,-0.0031182123348116875,-3.5595569610595708,-1.9089145660400393,1.4117650985717773,-0.035595569610595706,-0.019089145660400392,0.014117650985717774 +karman_re50,ppo,214,85.6,0.9336796402931213,0.19294288754463196,1.0864648818969727,0.24745886027812958,1.0943641662597656,0.2591259777545929,0.002264679642394185,0.0019493871368467808,0.001741130487062037,0.003926428500562906,-0.0019623793195933104,-0.002541195135563612,-3.5198092460632324,-2.54845929145813,1.8085136413574219,-0.035198092460632324,-0.0254845929145813,0.018085136413574218 +karman_re50,ppo,215,86.0,0.9377093315124512,0.12450367212295532,1.0687793493270874,0.20432540774345398,1.102704644203186,0.26368117332458496,0.0016631180187687278,0.0019595837220549583,0.0020711312536150217,0.004067995119839907,-0.002322337357327342,-0.002080981619656086,-3.3062100410461426,-3.037192702293396,2.618417739868164,-0.033062100410461426,-0.03037192702293396,0.026184177398681643 +karman_re50,ppo,216,86.4,0.9390668272972107,0.06431600451469421,1.0465209484100342,0.14561647176742554,1.1007670164108276,0.2370700091123581,0.0011714043794199824,0.0018611963605508208,0.002284485846757889,0.004172899294644594,-0.002844563452526927,-0.0018047579796984792,-3.1278626918792725,-3.4010590314865112,3.27761173248291,-0.031278626918792726,-0.03401059031486511,0.0327761173248291 +karman_re50,ppo,217,86.8,0.9395566582679749,0.0024252310395240784,1.0272514820098877,0.07349473237991333,1.0870665311813354,0.1710701584815979,0.0007830557879060507,0.0017757570603862405,0.00239987438544631,0.004256001207977533,-0.0033013822976499796,-0.0016930117271840572,-2.9195687770843506,-3.6103900671005253,3.6574740707874303,-0.029195687770843505,-0.03610390067100525,0.0365747407078743 +karman_re50,ppo,218,87.2,0.9423798322677612,-0.06095379218459129,1.0127780437469482,-0.007242016959935427,1.0631804466247559,0.0723375678062439,0.0005247439257800579,0.001630690647289157,0.002420528791844845,0.004322780761867762,-0.0036198291927576065,-0.0017889082664623857,-2.5286471843719482,-3.657471239566803,3.9159318208694454,-0.025286471843719485,-0.03657471239566803,0.039159318208694456 +karman_re50,ppo,219,87.6,0.950652539730072,-0.11544036120176315,1.001462459564209,-0.08910978585481644,1.0363550186157227,-0.03807695955038071,0.0004573655023705214,0.0013017368037253618,0.002308829687535763,0.004340798128396273,-0.003708232892677188,-0.002195805311203003,-1.9294446706771853,-3.60343873500824,4.0554980635643005,-0.019294446706771853,-0.0360343873500824,0.04055498063564301 +karman_re50,ppo,220,88.0,0.9650316834449768,-0.15533146262168884,0.994662880897522,-0.1604204922914505,1.0181769132614136,-0.13376452028751373,0.0005094220978207886,0.000770132930483669,0.002071239985525608,0.004380946978926659,-0.0033909217454493046,-0.0029078463558107615,-1.223519206047058,-3.592693448066712,3.966383159160614,-0.01223519206047058,-0.03592693448066712,0.03966383159160614 +karman_re50,ppo,221,88.4,0.9840390682220459,-0.1861717402935028,0.9952060580253601,-0.21252360939979553,1.0131888389587402,-0.19974905252456665,0.0005449000163935125,3.2019179343478754e-05,0.001775198383256793,0.004519048612564802,-0.0026278237346559763,-0.00366168562322855,-0.514947772026062,-3.779268518090248,3.7467698454856873,-0.005149477720260621,-0.03779268518090248,0.037467698454856875 +karman_re50,ppo,222,88.8,1.0055004358291626,-0.21726906299591064,1.0009536743164062,-0.24855580925941467,1.0140786170959473,-0.2374163269996643,0.0004922260995954275,-0.000782992981839925,0.001466411747969687,0.004702925216406584,-0.0017002689419314265,-0.004068377427756786,0.14132699370384216,-4.159860625863075,3.5793572068214417,0.0014132699370384217,-0.04159860625863075,0.035793572068214416 +karman_re50,ppo,223,89.2,1.027726173400879,-0.2529383599758148,1.0058581829071045,-0.2763438820838928,1.0122052431106567,-0.2513939142227173,0.0003711637982632965,-0.001433966914191842,0.0011110129998996854,0.004772931803017855,-0.0009568591485731304,-0.004031756427139044,0.7487610578536987,-4.523447394371033,3.586286067962646,0.007487610578536988,-0.04523447394371033,0.03586286067962646 +karman_re50,ppo,224,89.6,1.0496206283569336,-0.29236435890197754,1.0044173002243042,-0.2985994815826416,1.0032577514648438,-0.24498844146728516,0.0002187922946177423,-0.0017561722779646516,0.0006704793777316809,0.00457377266138792,-0.0004707984917331487,-0.00373149779625237,1.2860393524169922,-4.74855637550354,3.7736493349075317,0.012860393524169922,-0.047485563755035404,0.03773649334907532 +karman_re50,ppo,225,90.0,1.069828987121582,-0.328622967004776,0.9932145476341248,-0.30912286043167114,0.9866163730621338,-0.2207169383764267,7.821824692655355e-05,-0.001775394775904715,0.00013000048056710511,0.004093620460480452,-0.00010362612374592572,-0.003323374781757593,1.7088146209716797,-4.910685062408447,4.033714413642883,0.017088146209716798,-0.04910685062408447,0.04033714413642883 +karman_re50,ppo,226,90.4,1.0865569114685059,-0.3460637927055359,0.9718897342681885,-0.2954982817173004,0.9661072492599487,-0.1809675246477127,-3.643985837697983e-05,-0.0016128390561789274,-0.00046408717753365636,0.0034616480115801096,0.00024890879285521805,-0.0029035413172096014,2.0058999061584473,-5.051066160202026,4.271295428276062,0.020058999061584475,-0.050510661602020265,0.04271295428276062 +karman_re50,ppo,227,90.8,1.0977660417556763,-0.32391929626464844,0.9436433911323547,-0.24450242519378662,0.9486023783683777,-0.12794312834739685,-0.00012420539860613644,-0.0013709868071600795,-0.0010483036749064922,0.002876909449696541,0.0005901887197978795,-0.0025606779381632805,2.143099069595337,-5.101078033447266,4.412883877754211,0.02143099069595337,-0.051010780334472657,0.04412883877754212 +karman_re50,ppo,228,91.2,1.1015825271606445,-0.25297486782073975,0.9139437675476074,-0.15014439821243286,0.9395305514335632,-0.06477648764848709,-0.00019834033446386456,-0.0011227965587750077,-0.0015235614264383912,0.00257509876973927,0.0008453995105810463,-0.002346860710531473,2.0413455963134766,-4.9381020069122314,4.377304196357727,0.020413455963134767,-0.04938102006912232,0.04377304196357727 +karman_re50,ppo,229,91.6,1.0958880186080933,-0.14350861310958862,0.8908822536468506,-0.020068461075425148,0.9408432245254517,0.0024608115199953318,-0.0002661293256096542,-0.0008973109070211649,-0.0017070291796699166,0.0028033473063260317,0.0008974641095846891,-0.0022441528271883726,1.6408877372741701,-4.478234648704529,4.186265230178833,0.0164088773727417,-0.04478234648704529,0.04186265230178833 +karman_re50,ppo,230,92.0,1.0742708444595337,-0.010081380605697632,0.8879855871200562,0.11810825020074844,0.9525295495986938,0.06355965882539749,-0.00031136954203248024,-0.0006381068960763514,-0.0013628382002934813,0.0035492703318595886,0.000701549812220037,-0.002234111540019512,0.9752222299575807,-3.7122793197631836,4.039840996265411,0.009752222299575806,-0.037122793197631836,0.04039840996265411 +karman_re50,ppo,231,92.4,1.0261627435684204,0.14109131693840027,0.9157668948173523,0.22455912828445435,0.9732066988945007,0.10957486927509308,-0.00022655993234366179,-0.0002699809265322983,-0.0004749502695631236,0.004367290064692497,0.00026604451704770327,-0.0023256626445800066,0.1514350175857544,-2.752186894416809,4.0640177726745605,0.001514350175857544,-0.027521868944168092,0.04064017772674561 +karman_re50,ppo,232,92.8,0.9599748849868774,0.283098965883255,0.9663211107254028,0.28157103061676025,0.9995732307434082,0.14168253540992737,0.00024335630587302148,0.00016610439342912287,0.000495465996209532,0.0048048971220850945,-0.00046713982010260224,-0.0025740284472703934,-0.7941852807998656,-1.8292903900146484,3.9382488131523132,-0.007941852807998657,-0.018292903900146484,0.03938248813152313 +karman_re50,ppo,233,93.2,0.9085996747016907,0.36064693331718445,1.0215301513671875,0.2987528443336487,1.0274401903152466,0.16725368797779083,0.001219774829223752,0.0005860126111656427,0.0010232047643512487,0.004844348877668381,-0.0014085604343563318,-0.002999834017828107,-1.8454107046127317,-1.238649845123291,3.273714721202851,-0.018454107046127318,-0.01238649845123291,0.03273714721202851 +karman_re50,ppo,234,93.6,0.8896920084953308,0.35325565934181213,1.0668362379074097,0.2904406785964966,1.0534454584121704,0.191759392619133,0.0022647527512162924,0.0010124110849574208,0.0011182118905708194,0.004536250606179237,-0.0020367326214909554,-0.003376499516889453,-2.786215305328369,-1.2271602153778076,2.322602391242981,-0.02786215305328369,-0.012271602153778077,0.02322602391242981 +karman_re50,ppo,235,94.0,0.8942196369171143,0.2876397669315338,1.092634916305542,0.2658270001411438,1.075218915939331,0.21608255803585052,0.002646127250045538,0.0014763199724256992,0.0012194219743832946,0.004126707557588816,-0.0020474388729780912,-0.003299751551821828,-3.382261037826538,-1.7539405822753906,1.6479833126068117,-0.03382261037826538,-0.017539405822753908,0.016479833126068117 +karman_re50,ppo,236,94.4,0.9087411761283875,0.20477324724197388,1.0951957702636719,0.23081164062023163,1.0907750129699707,0.23763948678970337,0.0023162830621004105,0.0018376632360741496,0.0015086240600794554,0.0040224273689091206,-0.001947173965163529,-0.002800325397402048,-3.5057196617126465,-2.451405882835388,1.7240645885467527,-0.03505719661712647,-0.024514058828353884,0.017240645885467528 +karman_re50,ppo,237,94.8,0.9246600866317749,0.1343003809452057,1.0791864395141602,0.18850451707839966,1.0983904600143433,0.24862521886825562,0.0017413677414879203,0.0019106866093352437,0.0018802476115524769,0.004118731245398521,-0.0021836350206285715,-0.002283961744979024,-3.305613040924072,-3.0068928003311157,2.4366577863693237,-0.03305613040924072,-0.03006892800331116,0.02436657786369324 +karman_re50,ppo,238,95.2,0.936672568321228,0.07817364484071732,1.055681586265564,0.13905462622642517,1.096421718597412,0.23612511157989502,0.001216572243720293,0.001847865292802453,0.002145543694496155,0.004197073169052601,-0.002653178758919239,-0.0019522670190781355,-3.077664375305176,-3.3762338161468506,3.172781527042389,-0.03077664375305176,-0.03376233816146851,0.03172781527042389 +karman_re50,ppo,239,95.6,0.9431077837944031,0.021870508790016174,1.0347974300384521,0.08111312985420227,1.0835400819778442,0.18889263272285461,0.0007899442571215332,0.0017994034569710493,0.0022626658901572227,0.004231704398989677,-0.003090198617428541,-0.0018354200292378664,-2.8725852966308594,-3.582973062992096,3.6315168142318726,-0.028725852966308595,-0.03582973062992096,0.03631516814231873 +karman_re50,ppo,240,96.0,0.9470851421356201,-0.039925023913383484,1.0197200775146484,0.013713364489376545,1.0604430437088013,0.10646472871303558,0.00047393274144269526,0.0017290898831561208,0.002269384451210499,0.004265879280865192,-0.0033858453389257193,-0.0019512322032824159,-2.544245481491089,-3.6713963747024536,3.9396246075630184,-0.02544245481491089,-0.036713963747024535,0.039396246075630185 +karman_re50,ppo,241,96.4,0.9537237286567688,-0.0969698503613472,1.0078061819076538,-0.06041397899389267,1.0318059921264648,0.0028723152354359627,0.0003234223695471883,0.0014926665462553501,0.002162627875804901,0.0042714946903288364,-0.003462353255599737,-0.0023476933129131794,-2.0074563026428223,-3.687222838401794,4.1756139397621155,-0.020074563026428224,-0.03687222838401794,0.041756139397621156 +karman_re50,ppo,242,96.8,0.9657069444656372,-0.14018626511096954,0.9984073638916016,-0.13200266659259796,1.0077600479125977,-0.09810208529233932,0.000323100364767015,0.001017107511870563,0.001928636571392417,0.004260165151208639,-0.0031666583381593227,-0.003013164736330509,-1.3220499753952026,-3.7126100659370422,4.201610207557678,-0.013220499753952026,-0.03712610065937042,0.04201610207557678 +karman_re50,ppo,243,97.2,0.9826438426971436,-0.17239969968795776,0.9951376914978027,-0.18947146832942963,0.9975315928459167,-0.17510296404361725,0.0003652632003650069,0.00032445904798805714,0.0015992092667147517,0.0043047708459198475,-0.0024107724893838167,-0.00373984151519835,-0.5976196527481079,-3.8740812689065933,3.97810310125351,-0.005976196527481079,-0.038740812689065936,0.0397810310125351 +karman_re50,ppo,244,97.6,1.0026720762252808,-0.2029949128627777,0.9984790086746216,-0.23082302510738373,0.998492956161499,-0.2228410840034485,0.0003750269243028015,-0.0004811883845832199,0.0012196815805509686,0.004395287483930588,-0.0014332183636724949,-0.00415683351457119,0.08498162031173706,-4.216313049197197,3.683547168970108,0.0008498162031173707,-0.04216313049197197,0.03683547168970108 +karman_re50,ppo,245,98.0,1.0239803791046143,-0.23773624002933502,1.003391981124878,-0.2623487710952759,1.000600814819336,-0.2458304464817047,0.00034079301985912025,-0.001174125005491078,0.0007763424655422568,0.004436545539647341,-0.000629603280685842,-0.004126841202378273,0.7103824615478516,-4.558386445045471,3.5212422013282776,0.007103824615478516,-0.04558386445045471,0.03521242201328278 +karman_re50,ppo,246,98.4,1.0454217195510864,-0.2770005762577057,1.0039334297180176,-0.2884950339794159,0.9967802166938782,-0.24827884137630463,0.00029036958585493267,-0.0015706256963312626,0.00024996514548547566,0.004301209934055805,-0.000154899520566687,-0.0038457391783595085,1.2713898420333862,-4.74272346496582,3.5722392797470093,0.012713898420333863,-0.0474272346496582,0.035722392797470096 +karman_re50,ppo,247,98.8,1.0657989978790283,-0.31601482629776,0.9959954619407654,-0.3057797849178314,0.984592616558075,-0.2326393872499466,0.00024717935593798757,-0.0016665122238919139,-0.00033680364140309393,0.003966377582401037,0.00012287312711123377,-0.003475343342870474,1.715822458267212,-4.849573612213135,3.7404590249061584,0.01715822458267212,-0.04849573612213135,0.037404590249061585 +karman_re50,ppo,248,99.2,1.0834472179412842,-0.341918408870697,0.9782362580299377,-0.3032633066177368,0.9660619497299194,-0.2004290223121643,0.0002189671213272959,-0.001584608107805252,-0.0009220167412422597,0.0035228237975388765,0.0003513380652293563,-0.0030957392882555723,2.035592555999756,-4.956728994846344,3.942100763320923,0.02035592555999756,-0.04956728994846344,0.03942100763320923 +karman_re50,ppo,249,99.6,1.096417784690857,-0.3341653347015381,0.952933132648468,-0.2672310769557953,0.9473841190338135,-0.1531926691532135,0.00017137361282948405,-0.001405599876306951,-0.0014308994868770242,0.0031111303251236677,0.0005793097079731524,-0.0027930187061429024,2.2179079055786133,-5.023627758026123,4.125000953674316,0.022179079055786134,-0.05023627758026123,0.04125000953674317 +karman_re50,ppo,250,100.0,1.1027014255523682,-0.27765733003616333,0.9249725937843323,-0.18839122354984283,0.9351828694343567,-0.09338449686765671,9.845066233538091e-05,-0.0011851821327582002,-0.001801059814170003,0.0028682351112365723,0.0007943427772261202,-0.0026041448581963778,2.1971263885498047,-4.942374110221863,4.219554424285889,0.021971263885498048,-0.04942374110221863,0.04219554424285889 +karman_re50,ppo,251,100.4,1.1004623174667358,-0.17694240808486938,0.9009824991226196,-0.06926403194665909,0.9329767823219299,-0.02621816098690033,-2.968814442283474e-05,-0.0009599367622286081,-0.0019190378952771425,0.0029643692541867495,0.0009016880649141967,-0.0025086200330406427,1.9025435447692873,-4.593895077705383,4.176246225833893,0.019025435447692873,-0.04593895077705384,0.04176246225833893 +karman_re50,ppo,252,100.8,1.085621953010559,-0.047833625227212906,0.8918774127960205,0.06989948451519012,0.9412686228752136,0.03931056335568428,-0.00016797007992863655,-0.0007030083215795457,-0.0016319388523697853,0.0034678794909268618,0.0008240175084210932,-0.002471490064635873,1.323413372039795,-3.93694244325161,4.101016163825989,0.01323413372039795,-0.0393694244325161,0.041010161638259886 +karman_re50,ppo,253,101.2,1.048628568649292,0.09977947920560837,0.9102804064750671,0.1899198293685913,0.9590681195259094,0.0922173485159874,-0.00022535033349413425,-0.00036112472298555076,-0.0008573119412176311,0.0041562896221876144,0.0005257666343823075,-0.0025084519293159246,0.5326176881790161,-3.0404305458068848,4.111821234226227,0.005326176881790161,-0.03040430545806885,0.04111821234226227 +karman_re50,ppo,254,101.6,0.9897764325141907,0.2473730593919754,0.9546710252761841,0.2619113624095917,0.9837942719459534,0.129095196723938,3.7072331906529143e-05,5.3112555178813636e-05,0.0001280416181543842,0.004651754163205624,-5.192698154132813e-05,-0.0026696491986513138,-0.38864704966545105,-2.1004832983016968,4.055553734302521,-0.0038864704966545104,-0.021004832983016967,0.04055553734302521 +karman_re50,ppo,255,102.0,0.9363757967948914,0.3436294198036194,1.0085948705673218,0.2882872223854065,1.011314868927002,0.15610505640506744,0.0008062002598308027,0.00046439896686933935,0.000827531679533422,0.004812217783182859,-0.0009173053549602628,-0.003010591957718134,-1.4050434827804565,-1.385354995727539,3.573182135820389,-0.014050434827804565,-0.01385354995727539,0.03573182135820389 +karman_re50,ppo,256,102.4,0.9123095870018005,0.3560341000556946,1.0558395385742188,0.2850423753261566,1.0378037691116333,0.1807049810886383,0.0018573328852653503,0.0008748319232836366,0.001033090171404183,0.0046361470595002174,-0.0017057759687304497,-0.0034251241013407707,-2.3600423336029053,-1.1841518878936768,2.7495787143707275,-0.023600423336029054,-0.011841518878936768,0.027495787143707276 +karman_re50,ppo,257,102.8,0.9137812852859497,0.3038700819015503,1.0855103731155396,0.26603084802627563,1.0608407258987427,0.20600028336048126,0.0024874983355402946,0.0013078042538836598,0.0010686274617910385,0.004212345462292433,-0.0019462167983874679,-0.003549274755641818,-3.0515060424804688,-1.5719354152679443,2.015235424041748,-0.030515060424804688,-0.015719354152679443,0.020152354240417482 +karman_re50,ppo,258,103.2,0.9265027046203613,0.2275145947933197,1.0928359031677246,0.2399105578660965,1.0788177251815796,0.23095935583114624,0.0023774607107043266,0.0017141378484666348,0.0012559224851429462,0.003972761798650026,-0.0018545675557106733,-0.003201049519702792,-3.3370206356048584,-2.2673323154449463,1.8260798454284666,-0.033370206356048586,-0.022673323154449462,0.018260798454284667 +karman_re50,ppo,259,103.6,0.9400904178619385,0.158954918384552,1.0807795524597168,0.20932097733020782,1.0904539823532104,0.2500709891319275,0.0018604391952976584,0.001910816179588437,0.0015829510521143675,0.004002431873232126,-0.001958076609298587,-0.0027078110724687576,-3.2510945796966553,-2.876769542694092,2.321911573410034,-0.032510945796966555,-0.02876769542694092,0.02321911573410034 +karman_re50,ppo,260,104.0,0.9492892622947693,0.10430975258350372,1.0585800409317017,0.17091074585914612,1.0944359302520752,0.2513701617717743,0.0013085291720926762,0.0018822242273017764,0.0018813590286299586,0.004079749807715416,-0.0023272891994565725,-0.0023676499258726835,-3.0613675117492676,-3.2951324582099915,3.0493024587631226,-0.030613675117492675,-0.032951324582099914,0.030493024587631225 +karman_re50,ppo,261,104.4,0.9527824521064758,0.050797853618860245,1.0361416339874268,0.12013213336467743,1.0890377759933472,0.22087274491786957,0.0008614303660579026,0.001833903486840427,0.0020590894855558872,0.004119241610169411,-0.00273490184918046,-0.0022223962005227804,-2.9006733894348145,-3.5777116417884827,3.588846862316131,-0.029006733894348144,-0.03577711641788483,0.035888468623161314 +karman_re50,ppo,262,104.8,0.9531009197235107,-0.010323559865355492,1.0187844038009644,0.05528857558965683,1.0733802318572998,0.15208253264427185,0.0005063936696387827,0.0017453387845307589,0.0021530846133828163,0.004153042566031218,-0.0030537117272615433,-0.0022545563988387585,-2.6594319343566895,-3.7563223093748093,3.945476531982422,-0.026594319343566895,-0.03756322309374809,0.03945476531982422 +karman_re50,ppo,263,105.2,0.9552844166755676,-0.0717126876115799,1.0057669878005981,-0.020361153408885002,1.049255609512329,0.05332264304161072,0.00029660010477527976,0.0015188379911705852,0.0021578564774245024,0.004162645898759365,-0.0032189148478209972,-0.0024653158616274595,-2.2237753868103027,-3.845002308487892,4.215477645397186,-0.02223775386810303,-0.03845002308487892,0.042154776453971865 +karman_re50,ppo,264,105.6,0.9631178379058838,-0.12155432999134064,0.9952026605606079,-0.09820324927568436,1.0236234664916992,-0.05420810729265213,0.0002549323544371873,0.0010848342208191752,0.0020345901139080524,0.004127944819629192,-0.003111559199169278,-0.002894714241847396,-1.60935640335083,-3.86780072748661,4.285972476005554,-0.0160935640335083,-0.0386780072748661,0.04285972476005554 +karman_re50,ppo,265,106.0,0.9771534204483032,-0.15816615521907806,0.9896009564399719,-0.16549599170684814,1.007241129875183,-0.1450861394405365,0.00031088999821804464,0.0004517754423432052,0.001784194610081613,0.004124622792005539,-0.0026039353106170893,-0.003472717944532633,-0.9067387580871581,-3.923141047358513,4.07147079706192,-0.009067387580871581,-0.03923141047358513,0.040714707970619206 +karman_re50,ppo,266,106.4,0.9956719875335693,-0.18962901830673218,0.9913315773010254,-0.21532946825027466,1.003303050994873,-0.20626060664653778,0.0003561298071872443,-0.00032306936918757856,0.0014587010955438018,0.0041947150602936745,-0.001794609590433538,-0.003951575607061386,-0.2090772390365601,-4.12088243663311,3.727345108985901,-0.002090772390365601,-0.0412088243663311,0.03727345108985901 +karman_re50,ppo,267,106.8,1.016453504562378,-0.22368933260440826,0.9969675540924072,-0.2518555521965027,1.004012107849121,-0.24023744463920593,0.00034166788100264966,-0.0010678129037842155,0.0010791305685415864,0.004288974218070507,-0.0010092738084495068,-0.004098575096577406,0.42836543917655945,-4.4198378920555115,3.4822641611099243,0.004283654391765594,-0.044198378920555115,0.03482264161109924 +karman_re50,ppo,268,107.2,1.0379865169525146,-0.26249343156814575,1.00029456615448,-0.28152549266815186,1.0011097192764282,-0.2523749768733978,0.00028504699002951384,-0.0015809093602001667,0.0006271888851188123,0.004288617055863142,-0.0004870968696195632,-0.003946428652852774,1.002580165863037,-4.65620219707489,3.4579792618751526,0.010025801658630372,-0.0465620219707489,0.03457979261875153 +karman_re50,ppo,269,107.6,1.0590842962265015,-0.30333346128463745,0.9963877201080322,-0.30434662103652954,0.9907251596450806,-0.2456849068403244,0.00022350053768604994,-0.001782436273060739,0.00011703660857165232,0.004108596593141556,-0.0001949164579855278,-0.0036388635635375977,1.488330364227295,-4.799782633781433,3.6100630760192867,0.014883303642272949,-0.04799782633781433,0.03610063076019287 +karman_re50,ppo,270,108.0,1.078190803527832,-0.33637329936027527,0.9828642010688782,-0.311577707529068,0.9729997515678406,-0.22103920578956604,0.0001694523962214589,-0.0017506858566775918,-0.00040984436054714024,0.0037634477484971285,2.2440493921749294e-05,-0.0032771462574601173,1.8642332553863525,-4.917786240577698,3.8436427116394043,0.018642332553863526,-0.04917786240577698,0.03843642711639404 +karman_re50,ppo,271,108.4,1.093416690826416,-0.34281471371650696,0.9608255624771118,-0.2895033657550812,0.9524972438812256,-0.17903940379619598,0.0001069017598638311,-0.001586027443408966,-0.0008949227049015462,0.003349621780216694,0.00026069165323860943,-0.0029486240819096565,2.117816925048828,-5.014406204223633,4.0926660895347595,0.021178169250488283,-0.05014406204223633,0.0409266608953476 +karman_re50,ppo,272,108.8,1.102570652961731,-0.3031378388404846,0.9343798160552979,-0.22586120665073395,0.9360195994377136,-0.12150896340608597,1.904783130157739e-05,-0.0013450428377836943,-0.001298207207582891,0.0029881394002586603,0.0005276745650917292,-0.0027169478125870228,2.1958565711975098,-5.005558013916016,4.280423045158386,0.0219585657119751,-0.05005558013916016,0.042804230451583866 +karman_re50,ppo,273,109.2,1.1036500930786133,-0.21448855102062225,0.9092937707901001,-0.11806181073188782,0.9286863803863525,-0.05349835753440857,-0.000103274556749966,-0.0010868743993341923,-0.0015486389165744185,0.0028496647719293833,0.0007423751521855593,-0.0025728303007781506,2.014937400817871,-4.766004860401154,4.316730856895447,0.020149374008178712,-0.04766004860401154,0.04316730856895447 +karman_re50,ppo,274,109.6,1.093598484992981,-0.09033288806676865,0.8946415781974792,0.02043873630464077,0.9322702884674072,0.016343625262379646,-0.00024008909531403333,-0.0008247902733273804,-0.001500605372712016,0.0031225758139044046,0.0007792764226906002,-0.002483758144080639,1.5290076732635498,-4.212473347783089,4.218323111534119,0.015290076732635499,-0.04212473347783089,0.04218323111534119 +karman_re50,ppo,275,110.0,1.0641628503799438,0.05778549984097481,0.9039367437362671,0.15354733169078827,0.946319043636322,0.07656551897525787,-0.00030954659450799227,-0.00052502570906654,-0.0009825545130297542,0.0037743726279586554,0.0005651689134538174,-0.002465085592120886,0.7787003517150879,-3.3614611625671387,4.12553995847702,0.007787003517150879,-0.033614611625671385,0.0412553995847702 +karman_re50,ppo,276,110.4,1.011111855506897,0.21617744863033295,0.9412898421287537,0.24294151365756989,0.9687950015068054,0.12026607245206833,-0.00013021619815845042,-0.00014978741819504648,-7.290596840903163e-05,0.004453504923731089,5.744249210692942e-05,-0.0025650528259575367,-0.1345987617969513,-2.361983895301819,4.038964867591858,-0.001345987617969513,-0.02361983895301819,0.04038964867591858 +karman_re50,ppo,277,110.8,0.9575008153915405,0.3354652523994446,0.9925389885902405,0.2825993597507477,0.9958521127700806,0.15126830339431763,0.0005388007266446948,0.0002609787043184042,0.0007657520473003387,0.004811413586139679,-0.0007752940873615444,-0.0028579726349562407,-1.1393228769302368,-1.4814748764038086,3.679271429777146,-0.011393228769302368,-0.014814748764038085,0.03679271429777146 +karman_re50,ppo,278,111.2,0.9316259622573853,0.37079474329948425,1.0402354001998901,0.2894640862941742,1.0233759880065918,0.17782743275165558,0.0016386638162657619,0.000685636536218226,0.0011137815890833735,0.00473908893764019,-0.0016702711582183838,-0.003309596562758088,-2.120621919631958,-1.0721817016601562,2.9529823064804077,-0.02120621919631958,-0.010721817016601562,0.02952982306480408 +karman_re50,ppo,279,111.6,0.9322498440742493,0.33416548371315,1.0731627941131592,0.280547559261322,1.0486952066421509,0.20485994219779968,0.0025130140129476786,0.0011346876854076982,0.0011333806905895472,0.004290295764803886,-0.00205808924511075,-0.003589792875573039,-2.905484199523926,-1.305988073348999,2.1480966806411743,-0.029054841995239257,-0.01305988073348999,0.021480966806411744 +karman_re50,ppo,280,112.0,0.9425204396247864,0.26424944400787354,1.0863085985183716,0.2646905779838562,1.0701981782913208,0.23239903151988983,0.0026120853144675493,0.0015991335967555642,0.0012443644227460027,0.00392558379098773,-0.001929681864567101,-0.003359768074005842,-3.3348195552825928,-1.9604051113128662,1.7212247848510744,-0.03334819555282593,-0.019604051113128663,0.017212247848510744 +karman_re50,ppo,281,112.4,0.9508441090583801,0.19300010800361633,1.0806583166122437,0.24271249771118164,1.0865578651428223,0.2563537061214447,0.0021473087836056948,0.0018891878426074982,0.001524678897112608,0.00390011933632195,-0.0018916812259703875,-0.0028493499848991632,-3.35209321975708,-2.6028679609298706,2.018673300743103,-0.0335209321975708,-0.026028679609298708,0.02018673300743103 +karman_re50,ppo,282,112.8,0.9540160894393921,0.13248632848262787,1.0624840259552002,0.20941078662872314,1.0963457822799683,0.2660094201564789,0.0015803772257640958,0.0019440774340182543,0.0018385384464636445,0.00400165468454361,-0.0021887770853936672,-0.0024421284906566143,-3.190634250640869,-3.0756965279579163,2.733585000038147,-0.03190634250640869,-0.030756965279579163,0.02733585000038147 +karman_re50,ppo,283,113.2,0.9530067443847656,0.07661799341440201,1.040388822555542,0.15953834354877472,1.097449779510498,0.24625356495380402,0.0010983245447278023,0.001883175689727068,0.0020641579758375883,0.00408232631161809,-0.002631109906360507,-0.002219833666458726,-3.0505268573760986,-3.4351632595062256,3.357196569442749,-0.03050526857376099,-0.034351632595062256,0.03357196569442749 +karman_re50,ppo,284,113.6,0.9502569437026978,0.015616756863892078,1.0212221145629883,0.09237006306648254,1.0879358053207397,0.18678802251815796,0.0007194888312369585,0.0017770410049706697,0.0022176948841661215,0.004149566404521465,-0.0030332966707646847,-0.002142189536243677,-2.8735010623931885,-3.6835066080093384,3.7576804161071777,-0.028735010623931884,-0.03683506608009338,0.03757680416107178 +karman_re50,ppo,285,114.0,0.9495806694030762,-0.0489007942378521,1.0068429708480835,0.01246477011591196,1.0681278705596924,0.09183447062969208,0.00045429199235513806,0.001577853225171566,0.002302610781043768,0.00420153234153986,-0.0033292132429778576,-0.00220239139162004,-2.5236151218414307,-3.7995966523885727,4.034431219100952,-0.025236151218414306,-0.037995966523885726,0.04034431219100952 +karman_re50,ppo,286,114.4,0.9546888470649719,-0.10549180209636688,0.9955988526344299,-0.07162725180387497,1.043196201324463,-0.019356053322553635,0.00037872447865083814,0.0012115888530388474,0.0022693038918077946,0.004203215707093477,-0.0034329218324273825,-0.0024780037347227335,-1.96854043006897,-3.7980486899614334,4.166286051273346,-0.0196854043006897,-0.037980486899614335,0.04166286051273346 +karman_re50,ppo,287,114.8,0.9668240547180176,-0.14765512943267822,0.9885812997817993,-0.14738960564136505,1.0238653421401978,-0.11990056931972504,0.00043731980258598924,0.0006543533527292311,0.002098133321851492,0.00421574292704463,-0.0031879066955298185,-0.003006276674568653,-1.2918951511383057,-3.7756681293249135,4.035976827144623,-0.012918951511383057,-0.037756681293249134,0.04035976827144623 +karman_re50,ppo,288,115.2,0.9845912456512451,-0.18032045662403107,0.9889180064201355,-0.20452304184436798,1.0165281295776367,-0.19162359833717346,0.0004979775403626263,-7.558320794487372e-05,0.0018458985723555088,0.004323482979089022,-0.002553400583565235,-0.0036175113637000322,-0.5916528701782227,-3.8835590779781337,3.7473534345626827,-0.005916528701782227,-0.03883559077978134,0.03747353434562683 +karman_re50,ppo,289,115.6,1.0054571628570557,-0.21270166337490082,0.9949239492416382,-0.24443739652633667,1.015660285949707,-0.23412474989891052,0.00047074814210645854,-0.0008740726043470204,0.0015684114769101143,0.004496599547564983,-0.0017543386202305555,-0.003995983395725489,0.0627376139163971,-4.169400796294212,3.523079097270965,0.000627376139163971,-0.04169400796294213,0.035230790972709654 +karman_re50,ppo,290,116.0,1.0274443626403809,-0.24938324093818665,1.000572919845581,-0.2748987674713135,1.012819528579712,-0.2526131570339203,0.00035411983844824135,-0.0015236149774864316,0.0012443393934518099,0.004599324893206358,-0.001103079179301858,-0.004008946940302849,0.6614512205123901,-4.488309562206268,3.4951552748680115,0.006614512205123902,-0.044883095622062684,0.034951552748680115 +karman_re50,ppo,291,116.4,1.049301266670227,-0.2897595167160034,1.0001585483551025,-0.29947564005851746,1.003461480140686,-0.2507345676422119,0.00020249000226613134,-0.001863369019702077,0.0008469091262668371,0.004485981538891792,-0.0006737398216500878,-0.003763676853850484,1.1892080307006836,-4.717111945152283,3.6620377600193024,0.011892080307006836,-0.04717111945152283,0.03662037760019302 +karman_re50,ppo,292,116.8,1.06969153881073,-0.3271275758743286,0.9902845621109009,-0.31256482005119324,0.9865990281105042,-0.23035842180252075,5.771536234533414e-05,-0.0019031981937587261,0.0003710063174366951,0.00412019481882453,-0.00035340528120286763,-0.0033918905537575483,1.618191838264465,-4.887932479381561,3.92963308095932,0.016181918382644652,-0.04887932479381561,0.0392963308095932 +karman_re50,ppo,293,117.2,1.0869131088256836,-0.3459818959236145,0.9706988334655762,-0.30170872807502747,0.9654175043106079,-0.19268643856048584,-6.463356112362817e-05,-0.0017521019326522946,-0.00015017460100352764,0.0035850449930876493,-3.0196069928933866e-05,-0.0030027704779058695,1.93357515335083,-5.030405759811401,4.209224224090576,0.019335751533508302,-0.050304057598114016,0.04209224224090576 +karman_re50,ppo,294,117.6,1.098781704902649,-0.3251919150352478,0.9444577097892761,-0.25314438343048096,0.9463297128677368,-0.13933643698692322,-0.0001767087960615754,-0.0014979830011725426,-0.0006701509701088071,0.003035453148186207,0.0003186529502272606,-0.0026782876811921597,2.0955772399902344,-5.090665578842163,4.418979644775391,0.020955772399902345,-0.05090665578842163,0.04418979644775391 +karman_re50,ppo,295,118.0,1.1031206846237183,-0.2544344961643219,0.9167260527610779,-0.15996518731117249,0.9351292252540588,-0.07404297590255737,-0.00028005108470097184,-0.0012145137879997492,-0.0011187540367245674,0.0026721367612481117,0.0006247184355743229,-0.0024543211329728365,2.0241987705230713,-4.947048842906952,4.4655479192733765,0.020241987705230714,-0.04947048842906952,0.044655479192733764 +karman_re50,ppo,296,118.4,1.0975855588912964,-0.1429327428340912,0.8952040672302246,-0.029004428535699844,0.9344910383224487,-0.003984508104622364,-0.000369774061255157,-0.0009511104435659945,-0.0013384819030761719,0.002752923872321844,0.0007501258514821529,-0.0023144157603383064,1.6488571166992188,-4.500399053096771,4.322922348976135,0.016488571166992188,-0.045003990530967715,0.043229223489761354 +karman_re50,ppo,297,118.8,1.0757527351379395,-0.004330898635089397,0.8931397199630737,0.11168067902326584,0.9446996450424194,0.06011047959327698,-0.00040955073200166225,-0.0006812468636780977,-0.0010992852039635181,0.0033690761774778366,0.000603329623118043,-0.0022588251158595085,0.9806663990020751,-3.7329620122909546,4.136942505836487,0.009806663990020751,-0.037329620122909545,0.04136942505836487 +karman_re50,ppo,298,119.2,1.0283137559890747,0.15414099395275116,0.9209172129631042,0.22001968324184418,0.9644851088523865,0.1089072898030281,-0.0002827091084327549,-0.00033912513754330575,-0.00032571773044764996,0.0042028059251606464,0.00016236034571193159,-0.002321553649380803,0.12082362174987793,-2.74346387386322,4.040251791477203,0.0012082362174987793,-0.0274346387386322,0.040402517914772035 +karman_re50,ppo,299,119.6,0.9672164916992188,0.29893380403518677,0.9700636863708496,0.277433842420578,0.9905357956886292,0.14318770170211792,0.0002516177773941308,7.348200597334653e-05,0.0006035358528606594,0.004762903321534395,-0.0006059890147298574,-0.002563703106716275,-0.8538624048233032,-1.7595086097717285,3.818333387374878,-0.008538624048233032,-0.017595086097717285,0.03818333387374878 +karman_re50,ppo,300,120.0,0.9257709383964539,0.3720371127128601,1.0220967531204224,0.2957557439804077,1.0185115337371826,0.1706501990556717,0.0013079701457172632,0.0005049241008237004,0.0011325381929054856,0.004853969439864159,-0.0015754005871713161,-0.003008341183885932,-1.8849897384643555,-1.1237096786499023,3.1716213822364807,-0.018849897384643554,-0.011237096786499024,0.03171621382236481 +karman_re50,ppo,301,120.4,0.9158083200454712,0.36089393496513367,1.063289761543274,0.29243120551109314,1.0451405048370361,0.19734837114810944,0.0024065161123871803,0.0009582609636709094,0.0012086405185982585,0.004485718440264463,-0.0021760629024356604,-0.003416449762880802,-2.79660964012146,-1.1188023090362549,2.2670156955718994,-0.0279660964012146,-0.011188023090362549,0.022670156955718994 +karman_re50,ppo,302,120.8,0.9230293035507202,0.29764309525489807,1.086054801940918,0.2775016129016876,1.0683537721633911,0.2243957668542862,0.002781904535368085,0.0014567828038707376,0.001282951096072793,0.004023512359708548,-0.0021057738922536373,-0.0033407285809516907,-3.3874673843383785,-1.6678469181060793,1.5907573699951172,-0.03387467384338379,-0.016678469181060793,0.01590757369995117 +karman_re50,ppo,303,121.2,0.932929277420044,0.21948589384555817,1.088415503501892,0.2537670433521271,1.0865000486373901,0.24903817474842072,0.0024383466225117445,0.0018563951598480344,0.001543322461657226,0.0039121173322200775,-0.0019390179077163339,-0.002829161239787936,-3.5158319473266597,-2.350309729576111,1.6581215858459473,-0.0351583194732666,-0.02350309729576111,0.016581215858459473 +karman_re50,ppo,304,121.6,0.9398078322410583,0.14971120655536652,1.0745056867599487,0.21898922324180603,1.0979619026184082,0.26289230585098267,0.001841599470935762,0.0019662948325276375,0.0018894096137955785,0.004022383596748114,-0.002141669625416398,-0.00232080090790987,-3.3450238704681396,-2.8845547437667847,2.3531689643859863,-0.0334502387046814,-0.028845547437667846,0.023531689643859863 +karman_re50,ppo,305,122.0,0.94298255443573,0.09036192297935486,1.0529069900512695,0.16974566876888275,1.1006360054016113,0.25189152359962463,0.0013149024453014135,0.0019103926606476307,0.002150283893570304,0.004131853114813566,-0.0026095109060406685,-0.0019990087021142244,-3.1557846069335938,-3.283792793750763,3.094166338443756,-0.03155784606933594,-0.03283792793750763,0.030941663384437563 +karman_re50,ppo,306,122.4,0.9434689283370972,0.031013265252113342,1.0321776866912842,0.1055697500705719,1.0923234224319458,0.20370641350746155,0.0008962936699390411,0.0018205519299954176,0.00229837279766798,0.00420759804546833,-0.0030766711570322514,-0.0018475571414455771,-2.9851012229919434,-3.5534656047821045,3.5660549998283386,-0.029851012229919434,-0.035534656047821044,0.035660549998283386 +karman_re50,ppo,307,122.8,0.9441485404968262,-0.03286268189549446,1.0162700414657593,0.029494838789105415,1.0728415250778198,0.1179078072309494,0.0005763412336818874,0.001698512933216989,0.00236326246522367,0.004276664461940527,-0.003437087871134281,-0.0018693377496674657,-2.686526298522949,-3.676908910274506,3.863001823425293,-0.026865262985229493,-0.03676908910274506,0.03863001823425293 +karman_re50,ppo,308,123.2,0.948991596698761,-0.09247218072414398,1.0039352178573608,-0.052356597036123276,1.0464037656784058,0.009778983891010284,0.0004341129679232836,0.0014392707962542772,0.002320458646863699,0.004304428584873676,-0.0036169623490422964,-0.002131742425262928,-2.172881841659546,-3.675496757030487,4.069183826446533,-0.02172881841659546,-0.03675496757030487,0.04069183826446533 +karman_re50,ppo,309,123.6,0.9602131843566895,-0.138383686542511,0.9948821067810059,-0.12968310713768005,1.0233875513076782,-0.0950893685221672,0.00045499985571950674,0.0009750127210281789,0.002143754856660962,0.004314333666115999,-0.0034693051129579544,-0.0026985194999724627,-1.5031589269638062,-3.6400907039642334,4.067697525024414,-0.015031589269638062,-0.036400907039642334,0.04067697525024414 +karman_re50,ppo,310,124.0,0.9772228002548218,-0.17203928530216217,0.9924144744873047,-0.1906830221414566,1.0131289958953857,-0.17453676462173462,0.0005154650425538421,0.0003036512352991849,0.0018748012371361256,0.00440260348841548,-0.0028750065248459578,-0.003435458755120635,-0.7868403196334839,-3.728100478649139,3.858900308609009,-0.007868403196334839,-0.03728100478649139,0.03858900308609009 +karman_re50,ppo,311,124.4,0.9977496862411499,-0.20266586542129517,0.9967901110649109,-0.23326322436332703,1.0127694606781006,-0.22383731603622437,0.0005066223675385118,-0.0005063230055384338,0.0015754869673401117,0.0045688701793551445,-0.0019956219475716352,-0.003983806818723679,-0.10747483372688293,-4.028723731637001,3.629968702793122,-0.0010747483372688293,-0.04028723731637001,0.03629968702793122 +karman_re50,ppo,312,124.8,1.019615888595581,-0.23684535920619965,1.0028504133224487,-0.26447293162345886,1.0127851963043213,-0.24772430956363678,0.00040997660835273564,-0.0012437085388228297,0.0012413717340677977,0.004697551019489765,-0.0011837499914690852,-0.004095688462257385,0.5135555267333984,-4.408622086048126,3.5389311611652374,0.005135555267333985,-0.044086220860481265,0.035389311611652374 +karman_re50,ppo,313,125.2,1.041504144668579,-0.275598406791687,1.0044666528701782,-0.28988608717918396,1.006932258605957,-0.2501923441886902,0.00026860571233555675,-0.0016977610066533089,0.0008359827916137874,0.004618474747985601,-0.000636380456853658,-0.0038735135458409786,1.079370379447937,-4.67559015750885,3.650284618139267,0.010793703794479371,-0.0467559015750885,0.03650284618139267 +karman_re50,ppo,314,125.6,1.0623064041137695,-0.3146897554397583,0.9974226951599121,-0.3068697452545166,0.9931517839431763,-0.23388591408729553,0.00012775372306350619,-0.001823072787374258,0.0003413440426811576,0.00426438357681036,-0.00026663803146220744,-0.00349977589212358,1.5461561679840088,-4.843928933143616,3.8851145505905156,0.015461561679840087,-0.04843928933143616,0.038851145505905155 +karman_re50,ppo,315,126.0,1.0805668830871582,-0.3420026898384094,0.9802668690681458,-0.30491718649864197,0.9735249280929565,-0.20081239938735962,1.0464975275681354e-05,-0.0017242446774616838,-0.00021762013784609735,0.0037125395610928535,6.444015161832795e-05,-0.003087277989834547,1.8928961753845217,-4.989914774894714,4.139933466911316,0.018928961753845217,-0.049899147748947145,0.04139933466911316 +karman_re50,ppo,316,126.4,1.0943024158477783,-0.3373514413833618,0.9549129009246826,-0.2702735662460327,0.9540371894836426,-0.15295469760894775,-8.954667282523587e-05,-0.0015083880862221122,-0.0007835115538910031,0.0031291872728616,0.00039913467480801046,-0.002724107587710023,2.101949453353882,-5.0874245166778564,4.343162894248962,0.02101949453353882,-0.05087424516677857,0.04343162894248963 +karman_re50,ppo,317,126.8,1.101292371749878,-0.28476086258888245,0.9258992075920105,-0.1930873841047287,0.9409888982772827,-0.09287022799253464,-0.00017158195259980857,-0.0012439124984666705,-0.001286670914851129,0.0027066355105489492,0.0007032567518763244,-0.0024650157429277897,2.108128070831299,-5.024897933006287,4.413412570953369,0.02108128070831299,-0.050248979330062865,0.04413412570953369 +karman_re50,ppo,318,127.2,1.0996211767196655,-0.187585711479187,0.8998003602027893,-0.0750502422451973,0.9377261400222778,-0.02563275396823883,-0.00025567456032149494,-0.0010005772346630692,-0.0015904270112514496,0.002681282116100192,0.0008521794807165861,-0.0023212807718664408,1.8335769176483157,-4.686630666255951,4.299298048019409,0.018335769176483156,-0.04686630666255951,0.04299298048019409 +karman_re50,ppo,319,127.6,1.0852789878845215,-0.06125593185424805,0.8878413438796997,0.0645965039730072,0.9449254870414734,0.03985485062003136,-0.0003248068387620151,-0.0007551576709374785,-0.0014781288336962461,0.0032006404362618923,0.0007678863476030529,-0.002259237226098776,1.25860595703125,-4.035732731223106,4.11380809545517,0.0125860595703125,-0.040357327312231066,0.041138080954551695 +karman_re50,ppo,320,128.0,1.0484012365341187,0.0851968452334404,0.9037957787513733,0.18714620172977448,0.9619815945625305,0.09278131276369095,-0.00030837050871923566,-0.0004360704915598035,-0.0007976451306603849,0.004029619507491589,0.0004331468662712723,-0.002293617697432637,0.475310355424881,-3.12653511762619,4.053838551044464,0.00475310355424881,-0.031265351176261905,0.04053838551044464 +karman_re50,ppo,321,128.4,0.987537145614624,0.2367890328168869,0.9474281072616577,0.262677401304245,0.9864643812179565,0.13000935316085815,4.2287231849513773e-07,-2.253865750390105e-05,0.00019164278637617826,0.0046601626090705395,-0.0001816874137148261,-0.0024662776850163937,-0.4284076392650604,-2.14963960647583,4.013122975826263,-0.004284076392650604,-0.0214963960647583,0.04013122975826264 +karman_re50,ppo,322,128.8,0.9295275211334229,0.3428736925125122,1.0021473169326782,0.2929151654243469,1.0141525268554688,0.15765829384326935,0.0008145688334479928,0.00040568114491179585,0.0009176376624964178,0.0048654344864189625,-0.001086392905563116,-0.0028371335938572884,-1.4468474388122559,-1.3857769966125488,3.561522901058197,-0.014468474388122559,-0.01385776996612549,0.03561522901058197 +karman_re50,ppo,323,129.2,0.9010864496231079,0.36479416489601135,1.0513129234313965,0.2934550642967224,1.0411252975463867,0.18277879059314728,0.0019326561596244574,0.0008324045920744538,0.00112587318290025,0.004682464990764856,-0.0019033659482374787,-0.0032853439915925264,-2.4466724395751953,-1.1392674446105957,2.6815364360809326,-0.024466724395751954,-0.011392674446105958,0.026815364360809328 +karman_re50,ppo,324,129.6,0.8999242186546326,0.3168298602104187,1.0838730335235596,0.276420921087265,1.0647761821746826,0.20808690786361694,0.002616438316181302,0.001288807950913906,0.0011676280992105603,0.004238256718963385,-0.002113994909450412,-0.003417480969801545,-3.1886620521545406,-1.496368408203125,1.8478407859802246,-0.03188662052154541,-0.01496368408203125,0.018478407859802246 +karman_re50,ppo,325,130.0,0.9114649295806885,0.23800085484981537,1.0942927598953247,0.2485305219888687,1.0832366943359375,0.23230865597724915,0.0025141278747469187,0.0017285851063206792,0.0013757690321654081,0.003996908199042082,-0.001961879199370742,-0.003035662230104208,-3.493475914001465,-2.1783300638198853,1.608212471008301,-0.03493475914001465,-0.021783300638198853,0.01608212471008301 +karman_re50,ppo,326,130.4,0.9256281852722168,0.1630721241235733,1.0844032764434814,0.21265143156051636,1.0949705839157104,0.24988342821598053,0.001978467684239149,0.0019233954371884465,0.0017298911698162556,0.0040489560924470425,-0.0020419033244252205,-0.002492723520845175,-3.3888859748840328,-2.791733503341675,2.1291521787643433,-0.03388885974884033,-0.02791733503341675,0.021291521787643434 +karman_re50,ppo,327,130.8,0.9370678663253784,0.10336026549339294,1.0630183219909668,0.1680719554424286,1.0983381271362305,0.24905826151371002,0.0014149039052426815,0.0018966214265674353,0.0020454523619264364,0.004152395762503147,-0.0024450120981782675,-0.00209800829179585,-3.162809371948242,-3.2265007495880127,2.9137433767318726,-0.03162809371948242,-0.03226500749588013,0.029137433767318727 +karman_re50,ppo,328,131.2,0.9434053301811218,0.0481928251683712,1.0406574010849,0.11320220679044724,1.0913841724395752,0.21644897758960724,0.0009606495732441545,0.0018365823198109865,0.002217043424025178,0.004205896984785795,-0.0029135800432413816,-0.0019054063595831394,-2.9740562438964844,-3.5054815411567684,3.482584357261658,-0.029740562438964845,-0.035054815411567686,0.03482584357261658 +karman_re50,ppo,329,131.6,0.9462233781814575,-0.012792098335921764,1.0233479738235474,0.047396935522556305,1.0734163522720337,0.14623963832855225,0.0005979178822599351,0.0017705756472423673,0.0022764941677451134,0.004247260745614767,-0.0032788056414574385,-0.001914702937938273,-2.7229719161987305,-3.65279757976532,3.8251707553863525,-0.027229719161987305,-0.0365279757976532,0.03825170755386353 +karman_re50,ppo,330,132.0,0.9502571821212769,-0.07400055229663849,1.0103744268417358,-0.027127718552947044,1.0469908714294434,0.047241296619176865,0.00038030228461138904,0.001590023166500032,0.0022362726740539074,0.00427258713170886,-0.0034702240955084562,-0.0021566248033195734,-2.2765626907348633,-3.6988285779953,4.089064240455627,-0.022765626907348634,-0.036988285779953,0.040890642404556275 +karman_re50,ppo,331,132.4,0.959431529045105,-0.12373603880405426,0.9997150301933289,-0.10314666479825974,1.0202064514160156,-0.05914502590894699,0.0003383664006832987,0.0011999817797914147,0.0020740064792335033,0.004261866211891174,-0.0033725323155522346,-0.0026872465386986732,-1.642720937728882,-3.697041690349579,4.199330568313599,-0.01642720937728882,-0.03697041690349579,0.04199330568313599 +karman_re50,ppo,332,132.8,0.9744575023651123,-0.15982551872730255,0.993966817855835,-0.16848072409629822,1.0043202638626099,-0.1480829417705536,0.000386816420359537,0.0005877407384105027,0.0017987698083743453,0.004288146737962961,-0.0028327270410954952,-0.003403216600418091,-0.9255396127700806,-3.770963743329048,4.052278637886047,-0.009255396127700806,-0.037709637433290484,0.040522786378860476 +karman_re50,ppo,333,133.2,0.9936469793319702,-0.19029468297958374,0.9955471158027649,-0.2163955718278885,1.001835584640503,-0.20745891332626343,0.000412617257097736,-0.00019544198585208505,0.0014611704973503947,0.004385772161185741,-0.0019380132434889674,-0.003995134960860014,-0.22143083810806274,-4.028707295656204,3.768444299697876,-0.0022143083810806275,-0.040287072956562045,0.03768444299697876 +karman_re50,ppo,334,133.6,1.014757513999939,-0.2232038378715515,1.0010161399841309,-0.25118643045425415,1.0040663480758667,-0.23985326290130615,0.00037787019391544163,-0.0009692793246358633,0.001075752661563456,0.00448464322835207,-0.0010494287125766277,-0.004166414495557547,0.4217431843280792,-4.398302316665649,3.5531245470046997,0.004217431843280792,-0.0439830231666565,0.035531245470047 +karman_re50,ppo,335,134.0,1.0362881422042847,-0.26094377040863037,1.0041393041610718,-0.27931156754493713,1.002318024635315,-0.25010180473327637,0.0003037775750271976,-0.0015043020248413086,0.000614908232819289,0.004446284379810095,-0.0004479327180888504,-0.003978317603468895,1.009594440460205,-4.665196478366852,3.54052397608757,0.01009594440460205,-0.046651964783668516,0.0354052397608757 +karman_re50,ppo,336,134.4,1.0571945905685425,-0.3010901212692261,0.9999876618385315,-0.30092501640319824,0.9926994442939758,-0.24129581451416016,0.00022904528304934502,-0.001714165322482586,8.050085307331756e-05,0.004186410456895828,-9.957754809875041e-05,-0.003631108207628131,1.5054421424865723,-4.805657625198364,3.6932650208473206,0.015054421424865723,-0.048056576251983646,0.03693265020847321 +karman_re50,ppo,337,134.8,1.0761725902557373,-0.33434927463531494,0.9861623644828796,-0.3076659142971039,0.975646436214447,-0.21517696976661682,0.0001700587890809402,-0.0016841868637129664,-0.0004925711546093225,0.0037558702751994133,0.00015892089868430048,-0.0032417934853583574,1.8788700103759766,-4.921318888664246,3.904952824115753,0.018788700103759767,-0.04921318888664246,0.03904952824115753 +karman_re50,ppo,338,135.2,1.0914326906204224,-0.3425522744655609,0.9635427594184875,-0.2862599194049835,0.9560081958770752,-0.1733154058456421,0.00011510578042361885,-0.0015266627306118608,-0.0010355347767472267,0.003285004524514079,0.0004125079431105405,-0.0028927430976182222,2.126208782196045,-5.022983074188232,4.11592310667038,0.02126208782196045,-0.05022983074188232,0.0411592310667038 +karman_re50,ppo,339,135.6,1.1007413864135742,-0.30608808994293213,0.9359943866729736,-0.22460788488388062,0.9405443668365479,-0.11765626072883606,4.614532008417882e-05,-0.001311744563281536,-0.00148934090975672,0.0029180857818573713,0.0006652094307355583,-0.0026441672816872597,2.2008495330810547,-5.020779967308044,4.259668946266174,0.02200849533081055,-0.05020779967308044,0.04259668946266174 +karman_re50,ppo,340,136.0,1.1021405458450317,-0.2213389277458191,0.9092463850975037,-0.11994598060846329,0.933999240398407,-0.05228221416473389,-5.918660099268891e-05,-0.0010650750482454896,-0.001763815525919199,0.002818220527842641,0.000843329937197268,-0.002502433257177472,2.0237741470336914,-4.787183403968811,4.259089946746826,0.020237741470336915,-0.04787183403968811,0.04259089946746826 +karman_re50,ppo,341,136.4,1.0929492712020874,-0.10189857333898544,0.8922213912010193,0.015315034426748753,0.9378412365913391,0.015310846269130707,-0.00018527665815781802,-0.0008223386248573661,-0.001704483525827527,0.0031487559899687767,0.0008500915137119591,-0.0024233937729150057,1.5498756170272827,-4.248560681939125,4.1513659954071045,0.015498756170272828,-0.04248560681939125,0.041513659954071046 +karman_re50,ppo,342,136.8,1.0655691623687744,0.03913888707756996,0.8985605835914612,0.14776377379894257,0.9517735242843628,0.07408375293016434,-0.0002691116533242166,-0.000524591829162091,-0.0011476678773760796,0.0038308885414153337,0.0006280892994254827,-0.002423972589895129,0.8268915414810181,-3.420943021774292,4.092012941837311,0.008268915414810181,-0.03420943021774292,0.040920129418373107 +karman_re50,ppo,343,137.2,1.0131474733352661,0.1917576640844345,0.9342186450958252,0.23983712494373322,0.9741064310073853,0.1168060377240181,-0.0001333201362285763,-0.00013465667143464088,-0.00019928418623749167,0.004483526572585106,0.00015347774024121463,-0.0025288728065788746,-0.048962056636810296,-2.4607356786727905,4.088975965976715,-0.000489620566368103,-0.024607356786727905,0.04088975965976715 +karman_re50,ppo,344,137.6,0.9533382654190063,0.3157519996166229,0.9866935014724731,0.2826022803783417,1.001093864440918,0.14681844413280487,0.00046042256872169673,0.0002855908533092588,0.0006636737380176783,0.004802254028618336,-0.0006345258443616331,-0.0028107946272939444,-1.0337401628494263,-1.608944892883301,3.799396276473999,-0.010337401628494263,-0.01608944892883301,0.03799396276473999 +karman_re50,ppo,345,138.0,0.9167959690093994,0.3622957468032837,1.0381157398223877,0.28977784514427185,1.0284134149551392,0.17202095687389374,0.0014900347450748086,0.0006996782030910254,0.0010404486674815416,0.004760312847793102,-0.0015305024571716785,-0.003240237245336175,-2.0424749851226807,-1.1744177341461182,3.0606449246406555,-0.020424749851226807,-0.011744177341461182,0.030606449246406556 +karman_re50,ppo,346,138.4,0.9099099040031433,0.33179447054862976,1.0755457878112793,0.2767448127269745,1.0530691146850586,0.19729068875312805,0.002377800177782774,0.001129035372287035,0.0010791041422635317,0.004379468038678169,-0.0019947669934481382,-0.0035269316285848618,-2.864809513092041,-1.3459014892578125,2.2164663076400757,-0.028648095130920412,-0.013459014892578126,0.02216466307640076 +karman_re50,ppo,347,138.8,0.9194632172584534,0.26036712527275085,1.0918067693710327,0.2535335421562195,1.0732344388961792,0.22287683188915253,0.0025358230341225863,0.0015765592688694596,0.001197764533571899,0.00402276823297143,-0.001933872583322227,-0.003328208113089204,-3.3244433403015137,-1.970932960510254,1.7499709129333496,-0.03324443340301514,-0.01970932960510254,0.017499709129333497 +karman_re50,ppo,348,139.2,0.9331201314926147,0.18584904074668884,1.0868405103683472,0.22471193969249725,1.0876179933547974,0.24523746967315674,0.002108293352648616,0.0018667904660105705,0.001493813586421311,0.003979734610766172,-0.0019109846325591207,-0.0028283167630434036,-3.3520159721374507,-2.636748433113098,2.0150176286697388,-0.03352015972137451,-0.02636748433113098,0.020150176286697387 +karman_re50,ppo,349,139.6,0.9441888332366943,0.12557649612426758,1.0677928924560547,0.18885625898838043,1.0949792861938477,0.2546919286251068,0.0015370405744761229,0.0019100707722827792,0.001827854779548943,0.004069202113896608,-0.0022014242131263018,-0.0024049226194620132,-3.1649489402771,-3.1234068274497986,2.7365217208862305,-0.031649489402771,-0.031234068274497987,0.027365217208862307 +karman_re50,ppo,350,140.0,0.949923574924469,0.07249019294977188,1.0448204278945923,0.14186224341392517,1.0934683084487915,0.23709264397621155,0.0010539963841438293,0.0018720085499808192,0.002049872651696205,0.004129667766392231,-0.0026352235581725836,-0.0021798170637339354,-2.9907119274139404,-3.4549316167831416,3.380238890647888,-0.029907119274139405,-0.03454931616783142,0.03380238890647888 +karman_re50,ppo,351,140.4,0.9511871933937073,0.013889987021684647,1.0254411697387695,0.08122365176677704,1.0815081596374512,0.18200041353702545,0.000663441838696599,0.001797705888748169,0.002165623242035508,0.004166940227150917,-0.0030124771874397993,-0.002137301955372095,-2.7971813678741455,-3.6690324544906616,3.7891529202461243,-0.027971813678741457,-0.036690324544906616,0.03789152920246124 +karman_re50,ppo,352,140.8,0.9522516131401062,-0.049170855432748795,1.0111103057861328,0.008465494029223919,1.0597045421600342,0.09210280328989029,0.0003893589600920677,0.0016420588362962008,0.0021991811227053404,0.004196811001747847,-0.0032599670812487602,-0.002271943725645542,-2.442488431930542,-3.7832348495721817,4.0840452909469604,-0.02442488431930542,-0.03783234849572182,0.0408404529094696 +karman_re50,ppo,353,141.2,0.957846999168396,-0.10453227162361145,0.9995365738868713,-0.07006209343671799,1.0330913066864014,-0.015389423817396164,0.0002851788594853133,0.0012983952183276415,0.0021230659913271666,0.004182719625532627,-0.003284913022071123,-0.0026234083343297243,-1.88425350189209,-3.813432812690735,4.25294828414917,-0.0188425350189209,-0.03813432812690735,0.0425294828414917 +karman_re50,ppo,354,141.6,0.9698901176452637,-0.14567352831363678,0.9916253089904785,-0.14268746972084045,1.0122766494750977,-0.11490952223539352,0.00032391943386755884,0.0007406127406284213,0.0019165602279826999,0.004169193096458912,-0.00294226105324924,-0.003194107674062252,-1.1982629299163818,-3.8349677920341487,4.15783029794693,-0.011982629299163819,-0.03834967792034149,0.0415783029794693 +karman_re50,ppo,355,142.0,0.9872952103614807,-0.1778024435043335,0.9908103346824646,-0.19887752830982208,1.0046203136444092,-0.18718931078910828,0.0003801964339800179,8.511437044944614e-06,0.0016175397904589772,0.0042283423244953156,-0.0022088594269007444,-0.003789059817790985,-0.487331748008728,-3.979294449090958,3.854141414165497,-0.00487331748008728,-0.03979294449090958,0.03854141414165497 +karman_re50,ppo,356,142.4,1.0076595544815063,-0.21005553007125854,0.9957964420318604,-0.23915360867977142,1.005174160003662,-0.23034611344337463,0.0003783692664001137,-0.0007847113301977515,0.001267634448595345,0.004336552694439888,-0.0013535034377127886,-0.004101852420717478,0.1752089560031891,-4.278917551040649,3.568264484405518,0.001752089560031891,-0.042789175510406494,0.03568264484405518 +karman_re50,ppo,357,142.8,1.0290757417678833,-0.24679052829742432,1.0007202625274658,-0.27045154571533203,1.004511833190918,-0.24975252151489258,0.00031706615118309855,-0.001415326725691557,0.0008522426360286772,0.0043846420012414455,-0.0006965177599340677,-0.004044577945023775,0.775712251663208,-4.5729047656059265,3.467793047428131,0.00775712251663208,-0.045729047656059264,0.03467793047428131 +karman_re50,ppo,358,143.2,1.0503718852996826,-0.2872965931892395,0.9999082088470459,-0.295998752117157,0.9971463084220886,-0.24934393167495728,0.00023897126084193587,-0.0017389972927048802,0.00036778670619241893,0.004255601670593023,-0.0003131432749796659,-0.0037685974966734648,1.3028753995895386,-4.7507747411727905,3.5722595453262334,0.013028753995895386,-0.047507747411727905,0.03572259545326233 +karman_re50,ppo,359,143.6,1.0703414678573608,-0.32497668266296387,0.9900258779525757,-0.310278058052063,0.981890857219696,-0.23081248998641968,0.00017056154320016503,-0.0017822309164330363,-0.00016189349116757512,0.003933729603886604,-5.799488280899823e-05,-0.003401582594960928,1.722022533416748,-4.875041127204895,3.7845643162727356,0.01722022533416748,-0.04875041127204895,0.03784564316272736 +karman_re50,ppo,360,144.0,1.0873527526855469,-0.34449711441993713,0.9708226919174194,-0.3010101616382599,0.9618663191795349,-0.1950153112411499,0.0001094350591301918,-0.001658487948589027,-0.0006807225290685892,0.003502926789224148,0.0001801650068955496,-0.0030480779241770506,2.026956081390381,-4.987795412540436,4.0300253033638,0.020269560813903808,-0.049877954125404356,0.040300253033638 +karman_re50,ppo,361,144.4,1.099198579788208,-0.3247070014476776,0.945263147354126,-0.2545071840286255,0.943412721157074,-0.1432713270187378,3.297710281913169e-05,-0.0014404432149603963,-0.0011411827290430665,0.003088749013841152,0.0004488647391553968,-0.0027686648536473513,2.179112672805786,-5.0400320291519165,4.240883469581604,0.02179112672805786,-0.05040032029151917,0.04240883469581604 +karman_re50,ppo,362,144.8,1.1036713123321533,-0.2547851502895355,0.9184142351150513,-0.16369420289993286,0.9324615597724915,-0.07908740639686584,-7.158378866733983e-05,-0.0011835884070023894,-0.0014842473901808262,0.002836215775460005,0.0006943505140952766,-0.002586944028735161,2.1078977584838867,-4.904054760932922,4.3297224044799805,0.021078977584838867,-0.04904054760932922,0.043297224044799805 +karman_re50,ppo,363,145.2,1.0985442399978638,-0.14362847805023193,0.8976032137870789,-0.034911978989839554,0.9318550229072571,-0.00942742358893156,-0.00019837627769447863,-0.0009284037514589727,-0.001586080645211041,0.002942979335784912,0.0008002966642379761,-0.002475394867360592,1.7410798072814944,-4.4746997356414795,4.257289171218872,0.017410798072814943,-0.0447469973564148,0.04257289171218872 +karman_re50,ppo,364,145.6,1.0780874490737915,-0.005871564615517855,0.8953680992126465,0.10492127388715744,0.9418821930885315,0.05514693260192871,-0.00030494204838760197,-0.000653125811368227,-0.0012622261419892311,0.003491063369438052,0.0006795422523282468,-0.002424746286123991,1.0836623907089233,-3.7309409976005554,4.138130307197571,0.010836623907089234,-0.037309409976005556,0.04138130307197571 +karman_re50,ppo,365,146.0,1.0333971977233887,0.14991611242294312,0.9222177267074585,0.2140343338251114,0.9613954424858093,0.10477793961763382,-0.00024678994668647647,-0.00030439364491030574,-0.0004572198959067464,0.004224235657602549,0.0002886221627704799,-0.0024756770581007004,0.23196235299110415,-2.7701722383499146,4.0835636258125305,0.0023196235299110415,-0.027701722383499147,0.04083563625812531 +karman_re50,ppo,366,146.4,0.9746177196502686,0.2919674217700958,0.9706372022628784,0.2721202075481415,0.9872371554374695,0.13934656977653503,0.00020823995873797685,0.00010194267088081688,0.000481535418657586,0.0047279223799705505,-0.00041820414480753243,-0.00269096321426332,-0.7351781129837036,-1.8135435581207275,3.8869854211807255,-0.007351781129837036,-0.018135435581207275,0.038869854211807255 +karman_re50,ppo,367,146.8,0.9335196018218994,0.36430811882019043,1.0223472118377686,0.2896539270877838,1.0149651765823364,0.16644605994224548,0.0011767185060307384,0.0005215588607825339,0.0010370302479714155,0.004826297517865896,-0.0013506446266546845,-0.0031007665675133467,-1.748940110206604,-1.1842403411865234,3.2844800949096684,-0.01748940110206604,-0.011842403411865234,0.032844800949096684 +karman_re50,ppo,368,147.2,0.9231205582618713,0.35362231731414795,1.0630923509597778,0.2847002446651459,1.041171669960022,0.19269895553588867,0.0022344139870256186,0.0009576143929734826,0.0011268911184743047,0.004504322074353695,-0.001995900645852089,-0.003501401748508215,-2.641756534576416,-1.1610641479492188,2.4435248374938965,-0.02641756534576416,-0.011610641479492187,0.024435248374938965 +karman_re50,ppo,369,147.6,0.9306468963623047,0.2919856011867523,1.084976077079773,0.2693239748477936,1.0638775825500488,0.2197902798652649,0.0026484448462724686,0.0014251351822167635,0.0011772329453378916,0.004051520489156246,-0.002017317106947303,-0.0034745396114885807,-3.234990119934082,-1.692202091217041,1.7944974899291994,-0.03234990119934082,-0.01692202091217041,0.017944974899291994 +karman_re50,ppo,370,148.0,0.9414694905281067,0.21740779280662537,1.0863893032073975,0.24795067310333252,1.081770420074463,0.24542951583862305,0.002355972770601511,0.0018125277711078525,0.0014092936180531979,0.003907965961843729,-0.0018857753602787852,-0.0030143377371132374,-3.3974900245666504,-2.3811618089675903,1.8101444244384768,-0.0339749002456665,-0.023811618089675905,0.018101444244384767 +karman_re50,ppo,371,148.4,0.9488528370857239,0.15219582617282867,1.0719655752182007,0.21825362741947174,1.0936329364776611,0.26182180643081665,0.0017887772992253304,0.0019421274773776531,0.0017410137224942446,0.003989845979958773,-0.0020619623828679323,-0.002536660758778453,-3.26082181930542,-2.9182978868484497,2.437924861907959,-0.0326082181930542,-0.029182978868484498,0.02437924861907959 +karman_re50,ppo,372,148.8,0.9515411257743835,0.09633756428956985,1.050231695175171,0.17492860555648804,1.0975993871688843,0.2550184726715088,0.0012673252495005727,0.0019096923060715199,0.0020051314495503902,0.004081356339156628,-0.0024810321629047394,-0.0022444073110818863,-3.093967914581299,-3.3111759424209595,3.1465277075767517,-0.030939679145812988,-0.033111759424209596,0.03146527707576752 +karman_re50,ppo,373,149.2,0.9506829977035522,0.0385722741484642,1.0293827056884766,0.1152646467089653,1.0914171934127808,0.21172279119491577,0.0008428037981502712,0.0018294714391231537,0.002169557847082615,0.004143774975091219,-0.0029095944482833147,-0.002121307887136936,-2.9405009746551514,-3.5930493474006653,3.62612783908844,-0.029405009746551514,-0.035930493474006654,0.0362612783908844 +karman_re50,ppo,374,149.6,0.9495086669921875,-0.025265589356422424,1.0133225917816162,0.04126313328742981,1.0743956565856934,0.12978467345237732,0.0005223613115958869,0.0016875001601874828,0.0022642957046628,0.004199298098683357,-0.003245544619858265,-0.0021412333007901907,-2.663332223892212,-3.7533991187810902,3.944804549217224,-0.02663332223892212,-0.0375339911878109,0.03944804549217224 +karman_re50,ppo,375,150.0,0.9523897767066956,-0.08580329269170761,1.0009230375289917,-0.0406898632645607,1.0496280193328857,0.022879209369421005,0.00037059502210468054,0.0014011225430294871,0.002262638183310628,0.0042142788879573345,-0.003419613465666771,-0.002351155038923025,-2.1786179542541504,-3.792483940720558,4.1536765694618225,-0.021786179542541504,-0.037924839407205584,0.04153676569461823 +karman_re50,ppo,376,150.4,0.9620147943496704,-0.1330307275056839,0.9916945099830627,-0.11992170661687851,1.0263975858688354,-0.08405911177396774,0.00037928708479739726,0.00091946916654706,0.0021287172567099333,0.004206880461424589,-0.0032941163517534733,-0.002815475221723318,-1.5326310396194458,-3.7713719457387924,4.136747717857361,-0.015326310396194458,-0.037713719457387926,0.04136747717857361 +karman_re50,ppo,377,150.8,0.9780001044273376,-0.16788062453269958,0.9888730049133301,-0.1839490830898285,1.0145888328552246,-0.16733330488204956,0.00045884723658673465,0.0002575606922619045,0.0018863017903640866,0.004269295837730169,-0.002759265713393688,-0.0034469207748770714,-0.8244707584381102,-3.828125759959221,3.893089532852173,-0.008244707584381103,-0.03828125759959221,0.03893089532852173 +karman_re50,ppo,378,151.2,0.997964084148407,-0.19934040307998657,0.9930912256240845,-0.2293403446674347,1.0129011869430542,-0.22014693915843964,0.00046883654431439936,-0.0005466641741804779,0.0015999540919438004,0.004415327683091164,-0.0019520370988175273,-0.003944546449929476,-0.14555290341377258,-4.068574443459511,3.6147025227546696,-0.001455529034137726,-0.040685744434595106,0.036147025227546696 +karman_re50,ppo,379,151.6,1.01954984664917,-0.23414313793182373,0.9993945956230164,-0.2625772953033447,1.0122909545898438,-0.2471223771572113,0.0003896264242939651,-0.0012784280115738511,0.0012729469453915954,0.004546787589788437,-0.0012077286373823881,-0.004070508759468794,0.4746093451976776,-4.404341161251068,3.4879247546195984,0.004746093451976776,-0.04404341161251068,0.034879247546195986 +karman_re50,ppo,380,152.0,1.0413334369659424,-0.2734694182872772,1.0015559196472168,-0.28961706161499023,1.0062799453735352,-0.2527035176753998,0.00026060439995490015,-0.0017391566652804613,0.0008786543621681631,0.004508370067924261,-0.0007027187384665012,-0.0038822803180664778,1.0327348709106445,-4.659759223461151,3.5718875527381897,0.010327348709106446,-0.04659759223461151,0.0357188755273819 +karman_re50,ppo,381,152.4,1.0622084140777588,-0.3132714033126831,0.9953138828277588,-0.30837780237197876,0.9925803542137146,-0.23938560485839844,0.0001295545371249318,-0.0018776400247588754,0.0004111504531465471,0.004229568410664797,-0.0003709465963765979,-0.003536753123626113,1.500152349472046,-4.82886266708374,3.796413898468018,0.01500152349472046,-0.0482886266708374,0.03796413898468018 +karman_re50,ppo,382,152.8,1.0807620286941528,-0.34164363145828247,0.9792324304580688,-0.30852198600769043,0.9728420972824097,-0.20846080780029297,1.784086271072738e-05,-0.0017920068930834532,-0.00010706513421609998,0.0037567871622741222,-7.35850480850786e-05,-0.003148551331833005,1.8563551902770998,-4.972750127315521,4.0661585330963135,0.018563551902770998,-0.049727501273155214,0.04066158533096314 +karman_re50,ppo,383,153.2,1.094954013824463,-0.33836811780929565,0.9551354050636292,-0.2760557234287262,0.9525955319404602,-0.16126994788646698,-8.153895032592118e-05,-0.0015773745253682137,-0.0006254051113501191,0.0032268345821648836,0.00024536848650313914,-0.0028038376476615667,2.0797786712646484,-5.072856664657593,4.30534303188324,0.020797786712646486,-0.05072856664657593,0.0430534303188324 +karman_re50,ppo,384,153.6,1.1024117469787598,-0.2867564857006073,0.9274051189422607,-0.20051772892475128,0.9382117390632629,-0.10040687769651413,-0.00018414946680422872,-0.0013065800303593278,-0.0010929158888757229,0.0028022057376801968,0.0005595213733613491,-0.0025555365718901157,2.1049866676330566,-5.021748900413513,4.428002119064331,0.02104986667633057,-0.050217489004135134,0.04428002119064331 +karman_re50,ppo,385,154.0,1.1010653972625732,-0.18920664489269257,0.9023684859275818,-0.08281631767749786,0.933560848236084,-0.03154898062348366,-0.00028800961445085704,-0.0010400554165244102,-0.0013926586834713817,0.002708201762288809,0.0007518333732150495,-0.002393729519098997,1.8498589992523196,-4.700916588306427,4.363460183143616,0.018498589992523195,-0.04700916588306427,0.04363460183143616 +karman_re50,ppo,386,154.4,1.086879014968872,-0.060528840869665146,0.8909375071525574,0.058208007365465164,0.9396424889564514,0.0359572097659111,-0.0003682631941046566,-0.0007801170577295125,-0.0013214156497269869,0.003129552351310849,0.0007144107948988676,-0.002303086454048753,1.2864365577697754,-4.055751487612724,4.186798810958862,0.012864365577697753,-0.04055751487612724,0.041867988109588625 +karman_re50,ppo,387,154.8,1.0503593683242798,0.0903484895825386,0.9068604111671448,0.18283279240131378,0.9559594988822937,0.09103884547948837,-0.0003429481294006109,-0.0004721591540146619,-0.0007115688640624285,0.003917166497558355,0.0003948133671656251,-0.0023178057745099068,0.4913981258869171,-3.138365626335144,4.0758994817733765,0.004913981258869171,-0.03138365626335144,0.04075899481773376 +karman_re50,ppo,388,155.2,0.9916035532951355,0.24567165970802307,0.9498198628425598,0.25952479243278503,0.9801071286201477,0.13001695275306702,-1.7840849977801554e-05,-7.45475699659437e-05,0.0002361084334552288,0.004601527936756611,-0.00022630943567492068,-0.0024804528802633286,-0.4383184611797332,-2.1319998502731323,3.96342933177948,-0.0043831846117973325,-0.021319998502731325,0.0396342933177948 +karman_re50,ppo,389,155.6,0.9389045834541321,0.3509701192378998,1.0029194355010986,0.2903709411621094,1.0077788829803467,0.1589224636554718,0.0008273627026937902,0.0003509715897962451,0.0009675059700384736,0.004867266863584518,-0.0011455889325588942,-0.0028494568541646004,-1.4552764892578125,-1.3295204639434814,3.505178451538086,-0.014552764892578125,-0.013295204639434816,0.03505178451538086 +karman_re50,ppo,390,156.0,0.9167231917381287,0.3701784908771515,1.0496617555618286,0.2929491698741913,1.0350276231765747,0.18525131046772003,0.001983690308406949,0.0007910279091447592,0.0011775702005252242,0.004673381801694632,-0.001968726282939315,-0.0033139700535684824,-2.4334557056427,-1.0675592422485352,2.6659961938858032,-0.024334557056427,-0.010675592422485352,0.026659961938858032 +karman_re50,ppo,391,156.4,0.9189651608467102,0.32252490520477295,1.079978346824646,0.28088992834091187,1.0593876838684082,0.21208852529525757,0.002687700791284442,0.001259476994164288,0.001201453385874629,0.0041876137256622314,-0.00215473142452538,-0.0034641800448298454,-3.1693153381347656,-1.4332318305969238,1.8441071510314944,-0.031693153381347657,-0.014332318305969238,0.018441071510314943 +karman_re50,ppo,392,156.8,0.9293262958526611,0.24682854115962982,1.089655876159668,0.26013460755348206,1.0792402029037476,0.23823192715644836,0.002579137682914734,0.0017220585141330957,0.0013870318653061986,0.00392581382766366,-0.001961168134585023,-0.003084361320361495,-3.483000755310059,-2.1170082092285156,1.58594274520874,-0.03483000755310059,-0.021170082092285155,0.0158594274520874 +karman_re50,ppo,393,157.2,0.9385486841201782,0.17373159527778625,1.0807801485061646,0.2306382954120636,1.093214511871338,0.25799673795700073,0.0020418642088770866,0.0019427398219704628,0.001720451982691884,0.003977264743298292,-0.0020089545287191868,-0.002544882707297802,-3.395472526550293,-2.7172317504882812,2.0889147520065308,-0.03395472526550293,-0.027172317504882814,0.020889147520065307 +karman_re50,ppo,394,157.6,0.9439710974693298,0.11283066868782043,1.0608503818511963,0.1887073963880539,1.0995362997055054,0.2591347396373749,0.0014790541026741266,0.0019357413984835148,0.002027761423960328,0.00409294106066227,-0.0023970953188836575,-0.002158494433388114,-3.1970169544219975,-3.1596070528030396,2.862308979034424,-0.031970169544219974,-0.031596070528030394,0.02862308979034424 +karman_re50,ppo,395,158.0,0.9456206560134888,0.05570703372359276,1.0389915704727173,0.13192646205425262,1.0958149433135986,0.22738993167877197,0.0010246665915474296,0.0018598638707771897,0.00221351720392704,0.004170096013695002,-0.0028732363134622574,-0.001958918059244752,-3.0342977046966553,-3.476912796497345,3.438536763191223,-0.030342977046966552,-0.03476912796497345,0.03438536763191223 +karman_re50,ppo,396,158.4,0.9455825686454773,-0.006580356974154711,1.021217703819275,0.06136004999279976,1.0807548761367798,0.156372532248497,0.0006608199910260737,0.0017595854587852955,0.0023099195677787066,0.004234858322888613,-0.0032692435197532177,-0.0019204585114493966,-2.8060061931610107,-3.6611172556877136,3.786247968673706,-0.02806006193161011,-0.03661117255687714,0.03786247968673706 +karman_re50,ppo,397,158.8,0.9479303956031799,-0.06932312250137329,1.0077567100524902,-0.018346579745411873,1.0563573837280273,0.055086567997932434,0.000440178468124941,0.0015570734394714236,0.002316984347999096,0.00427623838186264,-0.0035184493754059076,-0.002077680779621005,-2.380945920944214,-3.7132990956306453,4.036347389221191,-0.02380945920944214,-0.037132990956306455,0.04036347389221191 +karman_re50,ppo,398,159.2,0.9561684131622314,-0.12110257893800735,0.997101902961731,-0.09874258190393448,1.0305395126342773,-0.054188746958971024,0.00040761264972388744,0.0011671087704598904,0.0022000682074576616,0.004276847001165152,-0.0035097047220915556,-0.002514879684895277,-1.763620376586914,-3.6849961280822754,4.127925395965576,-0.017636203765869142,-0.036849961280822754,0.04127925395965576 +karman_re50,ppo,399,159.6,0.9709003567695618,-0.15873362123966217,0.9916717410087585,-0.16737037897109985,1.0146840810775757,-0.1456395983695984,0.0004716518160421401,0.0005593177047558129,0.001965874107554555,0.004320931620895863,-0.0030811240430921316,-0.0031933251302689314,-1.0558604001998901,-3.7083383798599248,3.9749590754508968,-0.010558604001998902,-0.03708338379859925,0.03974959075450897 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_long.csv new file mode 100644 index 0000000..f3f8ef3 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,target,0,0.0,velocity,upper_ux,1.1062400341033936 +karman_re50,target,0,0.0,velocity,upper_uy,-0.31701016426086426 +karman_re50,target,0,0.0,velocity,center_ux,1.0570125579833984 +karman_re50,target,0,0.0,velocity,center_uy,-0.39401671290397644 +karman_re50,target,0,0.0,velocity,lower_ux,1.0145970582962036 +karman_re50,target,0,0.0,velocity,lower_uy,-0.3077220618724823 +karman_re50,target,1,0.4,velocity,upper_ux,1.1470513343811035 +karman_re50,target,1,0.4,velocity,upper_uy,-0.3409535884857178 +karman_re50,target,1,0.4,velocity,center_ux,1.0518462657928467 +karman_re50,target,1,0.4,velocity,center_uy,-0.4053593575954437 +karman_re50,target,1,0.4,velocity,lower_ux,0.9777860045433044 +karman_re50,target,1,0.4,velocity,lower_uy,-0.30409595370292664 +karman_re50,target,2,0.8,velocity,upper_ux,1.1820671558380127 +karman_re50,target,2,0.8,velocity,upper_uy,-0.32598480582237244 +karman_re50,target,2,0.8,velocity,center_ux,1.0434269905090332 +karman_re50,target,2,0.8,velocity,center_uy,-0.3671301007270813 +karman_re50,target,2,0.8,velocity,lower_ux,0.9408755302429199 +karman_re50,target,2,0.8,velocity,lower_uy,-0.27021315693855286 +karman_re50,target,3,1.2,velocity,upper_ux,1.2026925086975098 +karman_re50,target,3,1.2,velocity,upper_uy,-0.25111982226371765 +karman_re50,target,3,1.2,velocity,center_ux,1.0364530086517334 +karman_re50,target,3,1.2,velocity,center_uy,-0.2653695344924927 +karman_re50,target,3,1.2,velocity,lower_ux,0.9113318920135498 +karman_re50,target,3,1.2,velocity,lower_uy,-0.2000708132982254 +karman_re50,target,4,1.6,velocity,upper_ux,1.2061848640441895 +karman_re50,target,4,1.6,velocity,upper_uy,-0.13063736259937286 +karman_re50,target,4,1.6,velocity,center_ux,1.034691333770752 +karman_re50,target,4,1.6,velocity,center_uy,-0.11878702044487 +karman_re50,target,4,1.6,velocity,lower_ux,0.8968793749809265 +karman_re50,target,4,1.6,velocity,lower_uy,-0.10103648155927658 +karman_re50,target,5,2.0,velocity,upper_ux,1.194709300994873 +karman_re50,target,5,2.0,velocity,upper_uy,-0.0013547932030633092 +karman_re50,target,5,2.0,velocity,center_ux,1.0373958349227905 +karman_re50,target,5,2.0,velocity,center_uy,0.03554558381438255 +karman_re50,target,5,2.0,velocity,lower_ux,0.9003467559814453 +karman_re50,target,5,2.0,velocity,lower_uy,0.007982620969414711 +karman_re50,target,6,2.4,velocity,upper_ux,1.1720081567764282 +karman_re50,target,6,2.4,velocity,upper_uy,0.1078057661652565 +karman_re50,target,6,2.4,velocity,center_ux,1.041974663734436 +karman_re50,target,6,2.4,velocity,center_uy,0.16415193676948547 +karman_re50,target,6,2.4,velocity,lower_ux,0.9196719527244568 +karman_re50,target,6,2.4,velocity,lower_uy,0.10477402806282043 +karman_re50,target,7,2.8,velocity,upper_ux,1.1429706811904907 +karman_re50,target,7,2.8,velocity,upper_uy,0.18535389006137848 +karman_re50,target,7,2.8,velocity,center_ux,1.046545147895813 +karman_re50,target,7,2.8,velocity,center_uy,0.2501302659511566 +karman_re50,target,7,2.8,velocity,lower_ux,0.9500439167022705 +karman_re50,target,7,2.8,velocity,lower_uy,0.17373648285865784 +karman_re50,target,8,3.2,velocity,upper_ux,1.112095832824707 +karman_re50,target,8,3.2,velocity,upper_uy,0.23479528725147247 +karman_re50,target,8,3.2,velocity,center_ux,1.0505386590957642 +karman_re50,target,8,3.2,velocity,center_uy,0.29829907417297363 +karman_re50,target,8,3.2,velocity,lower_ux,0.9857262969017029 +karman_re50,target,8,3.2,velocity,lower_uy,0.2155943512916565 +karman_re50,target,9,3.6,velocity,upper_ux,1.081985592842102 +karman_re50,target,9,3.6,velocity,upper_uy,0.26707684993743896 +karman_re50,target,9,3.6,velocity,center_ux,1.0544562339782715 +karman_re50,target,9,3.6,velocity,center_uy,0.32873764634132385 +karman_re50,target,9,3.6,velocity,lower_ux,1.0231267213821411 +karman_re50,target,9,3.6,velocity,lower_uy,0.2456635683774948 +karman_re50,target,10,4.0,velocity,upper_ux,1.0518383979797363 +karman_re50,target,10,4.0,velocity,upper_uy,0.2908973693847656 +karman_re50,target,10,4.0,velocity,center_ux,1.0575023889541626 +karman_re50,target,10,4.0,velocity,center_uy,0.3590238690376282 +karman_re50,target,10,4.0,velocity,lower_ux,1.0614489316940308 +karman_re50,target,10,4.0,velocity,lower_uy,0.27757176756858826 +karman_re50,target,11,4.4,velocity,upper_ux,1.0189664363861084 +karman_re50,target,11,4.4,velocity,upper_uy,0.3066403865814209 +karman_re50,target,11,4.4,velocity,center_ux,1.0574759244918823 +karman_re50,target,11,4.4,velocity,center_uy,0.3907131254673004 +karman_re50,target,11,4.4,velocity,lower_ux,1.101345419883728 +karman_re50,target,11,4.4,velocity,lower_uy,0.31284961104393005 +karman_re50,target,12,4.8,velocity,upper_ux,0.9824524521827698 +karman_re50,target,12,4.8,velocity,upper_uy,0.30590683221817017 +karman_re50,target,12,4.8,velocity,center_ux,1.0528661012649536 +karman_re50,target,12,4.8,velocity,center_uy,0.4060553312301636 +karman_re50,target,12,4.8,velocity,lower_ux,1.1422959566116333 +karman_re50,target,12,4.8,velocity,lower_uy,0.3394168019294739 +karman_re50,target,13,5.2,velocity,upper_ux,0.9452080726623535 +karman_re50,target,13,5.2,velocity,upper_uy,0.27627310156822205 +karman_re50,target,13,5.2,velocity,center_ux,1.0446621179580688 +karman_re50,target,13,5.2,velocity,center_uy,0.3752092123031616 +karman_re50,target,13,5.2,velocity,lower_ux,1.1785472631454468 +karman_re50,target,13,5.2,velocity,lower_uy,0.33078423142433167 +karman_re50,target,14,5.6,velocity,upper_ux,0.9143072366714478 +karman_re50,target,14,5.6,velocity,upper_uy,0.21044869720935822 +karman_re50,target,14,5.6,velocity,center_ux,1.0372710227966309 +karman_re50,target,14,5.6,velocity,center_uy,0.2807973027229309 +karman_re50,target,14,5.6,velocity,lower_ux,1.201256275177002 +karman_re50,target,14,5.6,velocity,lower_uy,0.26325616240501404 +karman_re50,target,15,6.0,velocity,upper_ux,0.8977464437484741 +karman_re50,target,15,6.0,velocity,upper_uy,0.11408235877752304 +karman_re50,target,15,6.0,velocity,center_ux,1.0348464250564575 +karman_re50,target,15,6.0,velocity,center_uy,0.13781696557998657 +karman_re50,target,15,6.0,velocity,lower_ux,1.206774353981018 +karman_re50,target,15,6.0,velocity,lower_uy,0.1465056836605072 +karman_re50,target,16,6.4,velocity,upper_ux,0.8990594744682312 +karman_re50,target,16,6.4,velocity,upper_uy,0.00506121851503849 +karman_re50,target,16,6.4,velocity,center_ux,1.0371296405792236 +karman_re50,target,16,6.4,velocity,center_uy,-0.01758403144776821 +karman_re50,target,16,6.4,velocity,lower_ux,1.1969313621520996 +karman_re50,target,16,6.4,velocity,lower_uy,0.016470203176140785 +karman_re50,target,17,6.8,velocity,upper_ux,0.9166716933250427 +karman_re50,target,17,6.8,velocity,upper_uy,-0.09429317712783813 +karman_re50,target,17,6.8,velocity,center_ux,1.0415785312652588 +karman_re50,target,17,6.8,velocity,center_uy,-0.15062037110328674 +karman_re50,target,17,6.8,velocity,lower_ux,1.1753307580947876 +karman_re50,target,17,6.8,velocity,lower_uy,-0.09605594724416733 +karman_re50,target,18,7.2,velocity,upper_ux,0.9460099935531616 +karman_re50,target,18,7.2,velocity,upper_uy,-0.16700011491775513 +karman_re50,target,18,7.2,velocity,center_ux,1.0461795330047607 +karman_re50,target,18,7.2,velocity,center_uy,-0.24195344746112823 +karman_re50,target,18,7.2,velocity,lower_ux,1.1467796564102173 +karman_re50,target,18,7.2,velocity,lower_uy,-0.17749185860157013 +karman_re50,target,19,7.6,velocity,upper_ux,0.9813204407691956 +karman_re50,target,19,7.6,velocity,upper_uy,-0.21150921285152435 +karman_re50,target,19,7.6,velocity,center_ux,1.0502095222473145 +karman_re50,target,19,7.6,velocity,center_uy,-0.29381266236305237 +karman_re50,target,19,7.6,velocity,lower_ux,1.1159363985061646 +karman_re50,target,19,7.6,velocity,lower_uy,-0.22982853651046753 +karman_re50,target,20,8.0,velocity,upper_ux,1.01861572265625 +karman_re50,target,20,8.0,velocity,upper_uy,-0.24208879470825195 +karman_re50,target,20,8.0,velocity,center_ux,1.0541287660598755 +karman_re50,target,20,8.0,velocity,center_uy,-0.3252556622028351 +karman_re50,target,20,8.0,velocity,lower_ux,1.0857032537460327 +karman_re50,target,20,8.0,velocity,lower_uy,-0.2636301517486572 +karman_re50,target,21,8.4,velocity,upper_ux,1.0568026304244995 +karman_re50,target,21,8.4,velocity,upper_uy,-0.2734181582927704 +karman_re50,target,21,8.4,velocity,center_ux,1.057370662689209 +karman_re50,target,21,8.4,velocity,center_uy,-0.3551081120967865 +karman_re50,target,21,8.4,velocity,lower_ux,1.0556788444519043 +karman_re50,target,21,8.4,velocity,lower_uy,-0.2882934808731079 +karman_re50,target,22,8.8,velocity,upper_ux,1.0964710712432861 +karman_re50,target,22,8.8,velocity,upper_uy,-0.3086247146129608 +karman_re50,target,22,8.8,velocity,center_ux,1.057815670967102 +karman_re50,target,22,8.8,velocity,center_uy,-0.38720834255218506 +karman_re50,target,22,8.8,velocity,lower_ux,1.0232237577438354 +karman_re50,target,22,8.8,velocity,lower_uy,-0.3053373396396637 +karman_re50,target,23,9.2,velocity,upper_ux,1.1374691724777222 +karman_re50,target,23,9.2,velocity,upper_uy,-0.33739522099494934 +karman_re50,target,23,9.2,velocity,center_ux,1.0537689924240112 +karman_re50,target,23,9.2,velocity,center_uy,-0.40604981780052185 +karman_re50,target,23,9.2,velocity,lower_ux,0.9870550036430359 +karman_re50,target,23,9.2,velocity,lower_uy,-0.3072768747806549 +karman_re50,target,24,9.6,velocity,upper_ux,1.174794316291809 +karman_re50,target,24,9.6,velocity,upper_uy,-0.33466118574142456 +karman_re50,target,24,9.6,velocity,center_ux,1.0458366870880127 +karman_re50,target,24,9.6,velocity,center_uy,-0.38226118683815 +karman_re50,target,24,9.6,velocity,lower_ux,0.9495860934257507 +karman_re50,target,24,9.6,velocity,lower_uy,-0.28174522519111633 +karman_re50,target,25,10.0,velocity,upper_ux,1.1995192766189575 +karman_re50,target,25,10.0,velocity,upper_uy,-0.274573415517807 +karman_re50,target,25,10.0,velocity,center_ux,1.0380933284759521 +karman_re50,target,25,10.0,velocity,center_uy,-0.29539966583251953 +karman_re50,target,25,10.0,velocity,lower_ux,0.9174619317054749 +karman_re50,target,25,10.0,velocity,lower_uy,-0.22029981017112732 +karman_re50,target,26,10.4,velocity,upper_ux,1.2070921659469604 +karman_re50,target,26,10.4,velocity,upper_uy,-0.16209425032138824 +karman_re50,target,26,10.4,velocity,center_ux,1.0350074768066406 +karman_re50,target,26,10.4,velocity,center_uy,-0.1565619856119156 +karman_re50,target,26,10.4,velocity,lower_ux,0.8988617062568665 +karman_re50,target,26,10.4,velocity,lower_uy,-0.12686261534690857 +karman_re50,target,27,10.8,velocity,upper_ux,1.198925495147705 +karman_re50,target,27,10.8,velocity,upper_uy,-0.0317566841840744 +karman_re50,target,27,10.8,velocity,center_ux,1.0368343591690063 +karman_re50,target,27,10.8,velocity,center_uy,-0.000620992504991591 +karman_re50,target,27,10.8,velocity,lower_ux,0.8980054259300232 +karman_re50,target,27,10.8,velocity,lower_uy,-0.018181167542934418 +karman_re50,target,28,11.2,velocity,upper_ux,1.1784964799880981 +karman_re50,target,28,11.2,velocity,upper_uy,0.08392862975597382 +karman_re50,target,28,11.2,velocity,center_ux,1.0411317348480225 +karman_re50,target,28,11.2,velocity,center_uy,0.13653261959552765 +karman_re50,target,28,11.2,velocity,lower_ux,0.9138413071632385 +karman_re50,target,28,11.2,velocity,lower_uy,0.08345595002174377 +karman_re50,target,29,11.6,velocity,upper_ux,1.1505024433135986 +karman_re50,target,29,11.6,velocity,upper_uy,0.16926860809326172 +karman_re50,target,29,11.6,velocity,center_ux,1.0457576513290405 +karman_re50,target,29,11.6,velocity,center_uy,0.2332286685705185 +karman_re50,target,29,11.6,velocity,lower_ux,0.9420612454414368 +karman_re50,target,29,11.6,velocity,lower_uy,0.15985830128192902 +karman_re50,target,30,12.0,velocity,upper_ux,1.1197353601455688 +karman_re50,target,30,12.0,velocity,upper_uy,0.2246466875076294 +karman_re50,target,30,12.0,velocity,center_ux,1.0498371124267578 +karman_re50,target,30,12.0,velocity,center_uy,0.2890588939189911 +karman_re50,target,30,12.0,velocity,lower_ux,0.9769352674484253 +karman_re50,target,30,12.0,velocity,lower_uy,0.20723731815814972 +karman_re50,target,31,12.4,velocity,upper_ux,1.0893816947937012 +karman_re50,target,31,12.4,velocity,upper_uy,0.2600979506969452 +karman_re50,target,31,12.4,velocity,center_ux,1.0537593364715576 +karman_re50,target,31,12.4,velocity,center_uy,0.32179251313209534 +karman_re50,target,31,12.4,velocity,lower_ux,1.0141152143478394 +karman_re50,target,31,12.4,velocity,lower_uy,0.2385593056678772 +karman_re50,target,32,12.8,velocity,upper_ux,1.0594439506530762 +karman_re50,target,32,12.8,velocity,upper_uy,0.28561538457870483 +karman_re50,target,32,12.8,velocity,center_ux,1.0571666955947876 +karman_re50,target,32,12.8,velocity,center_uy,0.3512703776359558 +karman_re50,target,32,12.8,velocity,lower_ux,1.0521817207336426 +karman_re50,target,32,12.8,velocity,lower_uy,0.26936256885528564 +karman_re50,target,33,13.2,velocity,upper_ux,1.0273860692977905 +karman_re50,target,33,13.2,velocity,upper_uy,0.30383312702178955 +karman_re50,target,33,13.2,velocity,center_ux,1.058053731918335 +karman_re50,target,33,13.2,velocity,center_uy,0.38354599475860596 +karman_re50,target,33,13.2,velocity,lower_ux,1.09162175655365 +karman_re50,target,33,13.2,velocity,lower_uy,0.3043566942214966 +karman_re50,target,34,13.6,velocity,upper_ux,0.9916014671325684 +karman_re50,target,34,13.6,velocity,upper_uy,0.30823642015457153 +karman_re50,target,34,13.6,velocity,center_ux,1.054571509361267 +karman_re50,target,34,13.6,velocity,center_uy,0.4054122567176819 +karman_re50,target,34,13.6,velocity,lower_ux,1.1325932741165161 +karman_re50,target,34,13.6,velocity,lower_uy,0.3349456787109375 +karman_re50,target,35,14.0,velocity,upper_ux,0.9540056586265564 +karman_re50,target,35,14.0,velocity,upper_uy,0.28665220737457275 +karman_re50,target,35,14.0,velocity,center_ux,1.0469632148742676 +karman_re50,target,35,14.0,velocity,center_uy,0.3883199393749237 +karman_re50,target,35,14.0,velocity,lower_ux,1.170833706855774 +karman_re50,target,35,14.0,velocity,lower_uy,0.3376573920249939 +karman_re50,target,36,14.4,velocity,upper_ux,0.9207926392555237 +karman_re50,target,36,14.4,velocity,upper_uy,0.22962509095668793 +karman_re50,target,36,14.4,velocity,center_ux,1.038936734199524 +karman_re50,target,36,14.4,velocity,center_uy,0.3091573119163513 +karman_re50,target,36,14.4,velocity,lower_ux,1.197495460510254 +karman_re50,target,36,14.4,velocity,lower_uy,0.2850491404533386 +karman_re50,target,37,14.8,velocity,upper_ux,0.9002274870872498 +karman_re50,target,37,14.8,velocity,upper_uy,0.13936109840869904 +karman_re50,target,37,14.8,velocity,center_ux,1.0351943969726562 +karman_re50,target,37,14.8,velocity,center_uy,0.17498521506786346 +karman_re50,target,37,14.8,velocity,lower_ux,1.2071459293365479 +karman_re50,target,37,14.8,velocity,lower_uy,0.17736536264419556 +karman_re50,target,38,15.2,velocity,upper_ux,0.8971908688545227 +karman_re50,target,38,15.2,velocity,upper_uy,0.03135546296834946 +karman_re50,target,38,15.2,velocity,center_ux,1.036531925201416 +karman_re50,target,38,15.2,velocity,center_uy,0.019043251872062683 +karman_re50,target,38,15.2,velocity,lower_ux,1.200704574584961 +karman_re50,target,38,15.2,velocity,lower_uy,0.04720277711749077 +karman_re50,target,39,15.6,velocity,upper_ux,0.911193311214447 +karman_re50,target,39,15.6,velocity,upper_uy,-0.07227513939142227 +karman_re50,target,39,15.6,velocity,center_ux,1.0406514406204224 +karman_re50,target,39,15.6,velocity,center_uy,-0.12189076095819473 +karman_re50,target,39,15.6,velocity,lower_ux,1.1815167665481567 +karman_re50,target,39,15.6,velocity,lower_uy,-0.07141044735908508 +karman_re50,target,40,16.0,velocity,upper_ux,0.9382089376449585 +karman_re50,target,40,16.0,velocity,upper_uy,-0.1522950828075409 +karman_re50,target,40,16.0,velocity,center_ux,1.0452942848205566 +karman_re50,target,40,16.0,velocity,center_uy,-0.22392605245113373 +karman_re50,target,40,16.0,velocity,lower_ux,1.1541485786437988 +karman_re50,target,40,16.0,velocity,lower_uy,-0.16065365076065063 +karman_re50,target,41,16.4,velocity,upper_ux,0.9725778698921204 +karman_re50,target,41,16.4,velocity,upper_uy,-0.20274242758750916 +karman_re50,target,41,16.4,velocity,center_ux,1.0494309663772583 +karman_re50,target,41,16.4,velocity,center_uy,-0.2839905619621277 +karman_re50,target,41,16.4,velocity,lower_ux,1.1235042810440063 +karman_re50,target,41,16.4,velocity,lower_uy,-0.2192162722349167 +karman_re50,target,42,16.8,velocity,upper_ux,1.0096263885498047 +karman_re50,target,42,16.8,velocity,upper_uy,-0.23505045473575592 +karman_re50,target,42,16.8,velocity,center_ux,1.053359031677246 +karman_re50,target,42,16.8,velocity,center_uy,-0.3183170557022095 +karman_re50,target,42,16.8,velocity,lower_ux,1.093036413192749 +karman_re50,target,42,16.8,velocity,lower_uy,-0.2564597725868225 +karman_re50,target,43,17.2,velocity,upper_ux,1.0475831031799316 +karman_re50,target,43,17.2,velocity,upper_uy,-0.26540037989616394 +karman_re50,target,43,17.2,velocity,center_ux,1.0569050312042236 +karman_re50,target,43,17.2,velocity,center_uy,-0.3475119471549988 +karman_re50,target,43,17.2,velocity,lower_ux,1.0631505250930786 +karman_re50,target,43,17.2,velocity,lower_uy,-0.2828628122806549 +karman_re50,target,44,17.6,velocity,upper_ux,1.0868034362792969 +karman_re50,target,44,17.6,velocity,upper_uy,-0.3000655770301819 +karman_re50,target,44,17.6,velocity,center_ux,1.0582009553909302 +karman_re50,target,44,17.6,velocity,center_uy,-0.3797668516635895 +karman_re50,target,44,17.6,velocity,lower_ux,1.0314651727676392 +karman_re50,target,44,17.6,velocity,lower_uy,-0.30214744806289673 +karman_re50,target,45,18.0,velocity,upper_ux,1.1276867389678955 +karman_re50,target,45,18.0,velocity,upper_uy,-0.33212172985076904 +karman_re50,target,45,18.0,velocity,center_ux,1.055283546447754 +karman_re50,target,45,18.0,velocity,center_uy,-0.4042082130908966 +karman_re50,target,45,18.0,velocity,lower_ux,0.9960939884185791 +karman_re50,target,45,18.0,velocity,lower_uy,-0.308816134929657 +karman_re50,target,46,18.4,velocity,upper_ux,1.1666914224624634 +karman_re50,target,46,18.4,velocity,upper_uy,-0.33981597423553467 +karman_re50,target,46,18.4,velocity,center_ux,1.0480486154556274 +karman_re50,target,46,18.4,velocity,center_uy,-0.39341971278190613 +karman_re50,target,46,18.4,velocity,lower_ux,0.9584625363349915 +karman_re50,target,46,18.4,velocity,lower_uy,-0.2910156548023224 +karman_re50,target,47,18.8,velocity,upper_ux,1.1951977014541626 +karman_re50,target,47,18.8,velocity,upper_uy,-0.29465678334236145 +karman_re50,target,47,18.8,velocity,center_ux,1.0398108959197998 +karman_re50,target,47,18.8,velocity,center_uy,-0.3220452070236206 +karman_re50,target,47,18.8,velocity,lower_ux,0.9242899417877197 +karman_re50,target,47,18.8,velocity,lower_uy,-0.2384233921766281 +karman_re50,target,48,19.2,velocity,upper_ux,1.2069470882415771 +karman_re50,target,48,19.2,velocity,upper_uy,-0.1922684907913208 +karman_re50,target,48,19.2,velocity,center_ux,1.035428524017334 +karman_re50,target,48,19.2,velocity,center_uy,-0.19303825497627258 +karman_re50,target,48,19.2,velocity,lower_ux,0.9018435478210449 +karman_re50,target,48,19.2,velocity,lower_uy,-0.15155813097953796 +karman_re50,target,49,19.6,velocity,upper_ux,1.2022746801376343 +karman_re50,target,49,19.6,velocity,upper_uy,-0.06278292089700699 +karman_re50,target,49,19.6,velocity,center_ux,1.0362435579299927 +karman_re50,target,49,19.6,velocity,center_uy,-0.03764432668685913 +karman_re50,target,49,19.6,velocity,lower_ux,0.8966238498687744 +karman_re50,target,49,19.6,velocity,lower_uy,-0.04455805942416191 +karman_re50,target,50,20.0,velocity,upper_ux,1.184390902519226 +karman_re50,target,50,20.0,velocity,upper_uy,0.05849871784448624 +karman_re50,target,50,20.0,velocity,center_ux,1.0401549339294434 +karman_re50,target,50,20.0,velocity,center_uy,0.10670612007379532 +karman_re50,target,50,20.0,velocity,lower_ux,0.9087352752685547 +karman_re50,target,50,20.0,velocity,lower_uy,0.06076803803443909 +karman_re50,target,51,20.4,velocity,upper_ux,1.1577248573303223 +karman_re50,target,51,20.4,velocity,upper_uy,0.15162219107151031 +karman_re50,target,51,20.4,velocity,center_ux,1.0448018312454224 +karman_re50,target,51,20.4,velocity,center_uy,0.21402154862880707 +karman_re50,target,51,20.4,velocity,lower_ux,0.9344657063484192 +karman_re50,target,51,20.4,velocity,lower_uy,0.1442994922399521 +karman_re50,target,52,20.8,velocity,upper_ux,1.1272507905960083 +karman_re50,target,52,20.8,velocity,upper_uy,0.21350491046905518 +karman_re50,target,52,20.8,velocity,center_ux,1.0490002632141113 +karman_re50,target,52,20.8,velocity,center_uy,0.2785625159740448 +karman_re50,target,52,20.8,velocity,lower_ux,0.9682541489601135 +karman_re50,target,52,20.8,velocity,lower_uy,0.19798916578292847 +karman_re50,target,53,21.2,velocity,upper_ux,1.096679925918579 +karman_re50,target,53,21.2,velocity,upper_uy,0.2526933550834656 +karman_re50,target,53,21.2,velocity,center_ux,1.0529382228851318 +karman_re50,target,53,21.2,velocity,center_uy,0.3147958219051361 +karman_re50,target,53,21.2,velocity,lower_ux,1.0051487684249878 +karman_re50,target,53,21.2,velocity,lower_uy,0.23153652250766754 +karman_re50,target,54,21.6,velocity,upper_ux,1.0668127536773682 +karman_re50,target,54,21.6,velocity,upper_uy,0.280032753944397 +karman_re50,target,54,21.6,velocity,center_ux,1.0565987825393677 +karman_re50,target,54,21.6,velocity,center_uy,0.34383177757263184 +karman_re50,target,54,21.6,velocity,lower_ux,1.0430076122283936 +karman_re50,target,54,21.6,velocity,lower_uy,0.2615278661251068 +karman_re50,target,55,22.0,velocity,upper_ux,1.035469651222229 +karman_re50,target,55,22.0,velocity,upper_uy,0.30029579997062683 +karman_re50,target,55,22.0,velocity,center_ux,1.0582728385925293 +karman_re50,target,55,22.0,velocity,center_uy,0.375906765460968 +karman_re50,target,55,22.0,velocity,lower_ux,1.0820162296295166 +karman_re50,target,55,22.0,velocity,lower_uy,0.29577094316482544 +karman_re50,target,56,22.4,velocity,upper_ux,1.0005335807800293 +karman_re50,target,56,22.4,velocity,upper_uy,0.30904096364974976 +karman_re50,target,56,22.4,velocity,center_ux,1.055912733078003 +karman_re50,target,56,22.4,velocity,center_uy,0.40249884128570557 +karman_re50,target,56,22.4,velocity,lower_ux,1.1227641105651855 +karman_re50,target,56,22.4,velocity,lower_uy,0.3289748430252075 +karman_re50,target,57,22.8,velocity,upper_ux,0.9629489779472351 +karman_re50,target,57,22.8,velocity,upper_uy,0.294852077960968 +karman_re50,target,57,22.8,velocity,center_ux,1.0490942001342773 +karman_re50,target,57,22.8,velocity,center_uy,0.3975955545902252 +karman_re50,target,57,22.8,velocity,lower_ux,1.162390947341919 +karman_re50,target,57,22.8,velocity,lower_uy,0.34118378162384033 +karman_re50,target,58,23.2,velocity,upper_ux,0.9279441833496094 +karman_re50,target,58,23.2,velocity,upper_uy,0.24668920040130615 +karman_re50,target,58,23.2,velocity,center_ux,1.0407195091247559 +karman_re50,target,58,23.2,velocity,center_uy,0.33403849601745605 +karman_re50,target,58,23.2,velocity,lower_ux,1.1926360130310059 +karman_re50,target,58,23.2,velocity,lower_uy,0.3033747673034668 +karman_re50,target,59,23.6,velocity,upper_ux,0.9037069082260132 +karman_re50,target,59,23.6,velocity,upper_uy,0.16342848539352417 +karman_re50,target,59,23.6,velocity,center_ux,1.035719871520996 +karman_re50,target,59,23.6,velocity,center_uy,0.21066831052303314 +karman_re50,target,59,23.6,velocity,lower_ux,1.2064963579177856 +karman_re50,target,59,23.6,velocity,lower_uy,0.20674897730350494 +karman_re50,target,60,24.0,velocity,upper_ux,0.8963083624839783 +karman_re50,target,60,24.0,velocity,upper_uy,0.057758089154958725 +karman_re50,target,60,24.0,velocity,center_ux,1.0359811782836914 +karman_re50,target,60,24.0,velocity,center_uy,0.05637892335653305 +karman_re50,target,60,24.0,velocity,lower_ux,1.2036395072937012 +karman_re50,target,60,24.0,velocity,lower_uy,0.07846395671367645 +karman_re50,target,61,24.4,velocity,upper_ux,0.906475841999054 +karman_re50,target,61,24.4,velocity,upper_uy,-0.04895688593387604 +karman_re50,target,61,24.4,velocity,center_ux,1.039650321006775 +karman_re50,target,61,24.4,velocity,center_uy,-0.09099843353033066 +karman_re50,target,61,24.4,velocity,lower_ux,1.1871230602264404 +karman_re50,target,61,24.4,velocity,lower_uy,-0.045198388397693634 +karman_re50,target,62,24.8,velocity,upper_ux,0.9308398365974426 +karman_re50,target,62,24.8,velocity,upper_uy,-0.13586516678333282 +karman_re50,target,62,24.8,velocity,center_ux,1.044286847114563 +karman_re50,target,62,24.8,velocity,center_uy,-0.20349931716918945 +karman_re50,target,62,24.8,velocity,lower_ux,1.1612308025360107 +karman_re50,target,62,24.8,velocity,lower_uy,-0.14215700328350067 +karman_re50,target,63,25.2,velocity,upper_ux,0.9639695882797241 +karman_re50,target,63,25.2,velocity,upper_uy,-0.19294562935829163 +karman_re50,target,63,25.2,velocity,center_ux,1.0485501289367676 +karman_re50,target,63,25.2,velocity,center_uy,-0.2727319598197937 +karman_re50,target,63,25.2,velocity,lower_ux,1.1309794187545776 +karman_re50,target,63,25.2,velocity,lower_uy,-0.20748651027679443 +karman_re50,target,64,25.6,velocity,upper_ux,1.0006816387176514 +karman_re50,target,64,25.6,velocity,upper_uy,-0.22799132764339447 +karman_re50,target,64,25.6,velocity,center_ux,1.0525027513504028 +karman_re50,target,64,25.6,velocity,center_uy,-0.31119513511657715 +karman_re50,target,64,25.6,velocity,lower_ux,1.1003202199935913 +karman_re50,target,64,25.6,velocity,lower_uy,-0.24877998232841492 +karman_re50,target,65,26.0,velocity,upper_ux,1.0384496450424194 +karman_re50,target,65,26.0,velocity,upper_uy,-0.2577403485774994 +karman_re50,target,65,26.0,velocity,center_ux,1.0562547445297241 +karman_re50,target,65,26.0,velocity,center_uy,-0.34022653102874756 +karman_re50,target,65,26.0,velocity,lower_ux,1.0704412460327148 +karman_re50,target,65,26.0,velocity,lower_uy,-0.2771231532096863 +karman_re50,target,66,26.4,velocity,upper_ux,1.0772619247436523 +karman_re50,target,66,26.4,velocity,upper_uy,-0.29149001836776733 +karman_re50,target,66,26.4,velocity,center_ux,1.0582751035690308 +karman_re50,target,66,26.4,velocity,center_uy,-0.3719986379146576 +karman_re50,target,66,26.4,velocity,lower_ux,1.0394080877304077 +karman_re50,target,66,26.4,velocity,lower_uy,-0.29829350113868713 +karman_re50,target,67,26.8,velocity,upper_ux,1.117835521697998 +karman_re50,target,67,26.8,velocity,upper_uy,-0.32555386424064636 +karman_re50,target,67,26.8,velocity,center_ux,1.0564634799957275 +karman_re50,target,67,26.8,velocity,center_uy,-0.40034475922584534 +karman_re50,target,67,26.8,velocity,lower_ux,1.0049208402633667 +karman_re50,target,67,26.8,velocity,lower_uy,-0.3089372217655182 +karman_re50,target,68,27.2,velocity,upper_ux,1.1579504013061523 +karman_re50,target,68,27.2,velocity,upper_uy,-0.341811865568161 +karman_re50,target,68,27.2,velocity,center_ux,1.05009925365448 +karman_re50,target,68,27.2,velocity,center_uy,-0.40088778734207153 +karman_re50,target,68,27.2,velocity,lower_ux,0.9674566388130188 +karman_re50,target,68,27.2,velocity,lower_uy,-0.29818201065063477 +karman_re50,target,69,27.6,velocity,upper_ux,1.1898205280303955 +karman_re50,target,69,27.6,velocity,upper_uy,-0.3111867606639862 +karman_re50,target,69,27.6,velocity,center_ux,1.041661024093628 +karman_re50,target,69,27.6,velocity,center_uy,-0.34511512517929077 +karman_re50,target,69,27.6,velocity,lower_ux,0.9317427277565002 +karman_re50,target,69,27.6,velocity,lower_uy,-0.25441956520080566 +karman_re50,target,70,28.0,velocity,upper_ux,1.2057909965515137 +karman_re50,target,70,28.0,velocity,upper_uy,-0.22074639797210693 +karman_re50,target,70,28.0,velocity,center_ux,1.036076545715332 +karman_re50,target,70,28.0,velocity,center_uy,-0.22782018780708313 +karman_re50,target,70,28.0,velocity,lower_ux,0.9058125019073486 +karman_re50,target,70,28.0,velocity,lower_uy,-0.17494803667068481 +karman_re50,target,71,28.4,velocity,upper_ux,1.2047977447509766 +karman_re50,target,71,28.4,velocity,upper_uy,-0.09420531988143921 +karman_re50,target,71,28.4,velocity,center_ux,1.0357553958892822 +karman_re50,target,71,28.4,velocity,center_uy,-0.07519793510437012 +karman_re50,target,71,28.4,velocity,lower_ux,0.8962476253509521 +karman_re50,target,71,28.4,velocity,lower_uy,-0.07092368602752686 +karman_re50,target,72,28.8,velocity,upper_ux,1.1897071599960327 +karman_re50,target,72,28.8,velocity,upper_uy,0.031520482152700424 +karman_re50,target,72,28.8,velocity,center_ux,1.039147138595581 +karman_re50,target,72,28.8,velocity,center_uy,0.0747910812497139 +karman_re50,target,72,28.8,velocity,lower_ux,0.9044229984283447 +karman_re50,target,72,28.8,velocity,lower_uy,0.036866337060928345 +karman_re50,target,73,29.2,velocity,upper_ux,1.164664387702942 +karman_re50,target,73,29.2,velocity,upper_uy,0.13224448263645172 +karman_re50,target,73,29.2,velocity,center_ux,1.0437557697296143 +karman_re50,target,73,29.2,velocity,center_uy,0.1923472285270691 +karman_re50,target,73,29.2,velocity,lower_ux,0.9273419976234436 +karman_re50,target,73,29.2,velocity,lower_uy,0.12699010968208313 +karman_re50,target,74,29.6,velocity,upper_ux,1.1346896886825562 +karman_re50,target,74,29.6,velocity,upper_uy,0.20113568007946014 +karman_re50,target,74,29.6,velocity,center_ux,1.0480835437774658 +karman_re50,target,74,29.6,velocity,center_uy,0.26645928621292114 +karman_re50,target,74,29.6,velocity,lower_ux,0.9597317576408386 +karman_re50,target,74,29.6,velocity,lower_uy,0.187578946352005 +karman_re50,target,75,30.0,velocity,upper_ux,1.10396146774292 +karman_re50,target,75,30.0,velocity,upper_uy,0.2446993589401245 +karman_re50,target,75,30.0,velocity,center_ux,1.052056908607483 +karman_re50,target,75,30.0,velocity,center_uy,0.30747848749160767 +karman_re50,target,75,30.0,velocity,lower_ux,0.9962252974510193 +karman_re50,target,75,30.0,velocity,lower_uy,0.22438575327396393 +karman_re50,target,76,30.4,velocity,upper_ux,1.0740455389022827 +karman_re50,target,76,30.4,velocity,upper_uy,0.27413037419319153 +karman_re50,target,76,30.4,velocity,center_ux,1.0558816194534302 +karman_re50,target,76,30.4,velocity,center_uy,0.33668848872184753 +karman_re50,target,76,30.4,velocity,lower_ux,1.0339092016220093 +karman_re50,target,76,30.4,velocity,lower_uy,0.25403153896331787 +karman_re50,target,77,30.8,velocity,upper_ux,1.043286919593811 +karman_re50,target,77,30.8,velocity,upper_uy,0.2961559593677521 +karman_re50,target,77,30.8,velocity,center_ux,1.058217167854309 +karman_re50,target,77,30.8,velocity,center_uy,0.36807000637054443 +karman_re50,target,77,30.8,velocity,lower_ux,1.0725390911102295 +karman_re50,target,77,30.8,velocity,lower_uy,0.28723767399787903 +karman_re50,target,78,31.2,velocity,upper_ux,1.0092530250549316 +karman_re50,target,78,31.2,velocity,upper_uy,0.3085300326347351 +karman_re50,target,78,31.2,velocity,center_ux,1.0569393634796143 +karman_re50,target,78,31.2,velocity,center_uy,0.39780381321907043 +karman_re50,target,78,31.2,velocity,lower_ux,1.1129119396209717 +karman_re50,target,78,31.2,velocity,lower_uy,0.3219037353992462 +karman_re50,target,79,31.6,velocity,upper_ux,0.9719774723052979 +karman_re50,target,79,31.6,velocity,upper_uy,0.30102410912513733 +karman_re50,target,79,31.6,velocity,center_ux,1.051060676574707 +karman_re50,target,79,31.6,velocity,center_uy,0.40333759784698486 +karman_re50,target,79,31.6,velocity,lower_ux,1.1533920764923096 +karman_re50,target,79,31.6,velocity,lower_uy,0.3417530357837677 +karman_re50,target,80,32.0,velocity,upper_ux,0.9356744289398193 +karman_re50,target,80,32.0,velocity,upper_uy,0.26161110401153564 +karman_re50,target,80,32.0,velocity,center_ux,1.0426336526870728 +karman_re50,target,80,32.0,velocity,center_uy,0.35525569319725037 +karman_re50,target,80,32.0,velocity,lower_ux,1.1867581605911255 +karman_re50,target,80,32.0,velocity,lower_uy,0.3180822432041168 +karman_re50,target,81,32.4,velocity,upper_ux,0.9081553816795349 +karman_re50,target,81,32.4,velocity,upper_uy,0.18609100580215454 +karman_re50,target,81,32.4,velocity,center_ux,1.0365039110183716 +karman_re50,target,81,32.4,velocity,center_uy,0.24443498253822327 +karman_re50,target,81,32.4,velocity,lower_ux,1.2048348188400269 +karman_re50,target,81,32.4,velocity,lower_uy,0.23419824242591858 +karman_re50,target,82,32.8,velocity,upper_ux,0.8964473605155945 +karman_re50,target,82,32.8,velocity,upper_uy,0.08401990681886673 +karman_re50,target,82,32.8,velocity,center_ux,1.0355767011642456 +karman_re50,target,82,32.8,velocity,center_uy,0.09404513984918594 +karman_re50,target,82,32.8,velocity,lower_ux,1.2057489156723022 +karman_re50,target,82,32.8,velocity,lower_uy,0.10995864123106003 +karman_re50,target,83,33.2,velocity,upper_ux,0.9025856256484985 +karman_re50,target,83,33.2,velocity,upper_uy,-0.024525336921215057 +karman_re50,target,83,33.2,velocity,center_ux,1.0386536121368408 +karman_re50,target,83,33.2,velocity,center_uy,-0.05811518803238869 +karman_re50,target,83,33.2,velocity,lower_ux,1.1921409368515015 +karman_re50,target,83,33.2,velocity,lower_uy,-0.01748264580965042 +karman_re50,target,84,33.6,velocity,upper_ux,0.9239842295646667 +karman_re50,target,84,33.6,velocity,upper_uy,-0.11767803132534027 +karman_re50,target,84,33.6,velocity,center_ux,1.0432143211364746 +karman_re50,target,84,33.6,velocity,center_uy,-0.1805589348077774 +karman_re50,target,84,33.6,velocity,lower_ux,1.1680216789245605 +karman_re50,target,84,33.6,velocity,lower_uy,-0.1218750923871994 +karman_re50,target,85,34.0,velocity,upper_ux,0.9555497169494629 +karman_re50,target,85,34.0,velocity,upper_uy,-0.18186216056346893 +karman_re50,target,85,34.0,velocity,center_ux,1.0476032495498657 +karman_re50,target,85,34.0,velocity,center_uy,-0.2597055435180664 +karman_re50,target,85,34.0,velocity,lower_ux,1.138382077217102 +karman_re50,target,85,34.0,velocity,lower_uy,-0.19442716240882874 +karman_re50,target,86,34.4,velocity,upper_ux,0.9917820692062378 +karman_re50,target,86,34.4,velocity,upper_uy,-0.22069038450717926 +karman_re50,target,86,34.4,velocity,center_ux,1.0516029596328735 +karman_re50,target,86,34.4,velocity,center_uy,-0.3036070764064789 +karman_re50,target,86,34.4,velocity,lower_ux,1.107608675956726 +karman_re50,target,86,34.4,velocity,lower_uy,-0.24042920768260956 +karman_re50,target,87,34.8,velocity,upper_ux,1.0293830633163452 +karman_re50,target,87,34.8,velocity,upper_uy,-0.2503930926322937 +karman_re50,target,87,34.8,velocity,center_ux,1.055484414100647 +karman_re50,target,87,34.8,velocity,center_uy,-0.33320724964141846 +karman_re50,target,87,34.8,velocity,lower_ux,1.077633023262024 +karman_re50,target,87,34.8,velocity,lower_uy,-0.2710472345352173 +karman_re50,target,88,35.2,velocity,upper_ux,1.0678480863571167 +karman_re50,target,88,35.2,velocity,upper_uy,-0.2830270528793335 +karman_re50,target,88,35.2,velocity,center_ux,1.0581016540527344 +karman_re50,target,88,35.2,velocity,center_uy,-0.3641444444656372 +karman_re50,target,88,35.2,velocity,lower_ux,1.0471103191375732 +karman_re50,target,88,35.2,velocity,lower_uy,-0.2938922047615051 +karman_re50,target,89,35.6,velocity,upper_ux,1.1080012321472168 +karman_re50,target,89,35.6,velocity,upper_uy,-0.31806680560112 +karman_re50,target,89,35.6,velocity,center_ux,1.0573409795761108 +karman_re50,target,89,35.6,velocity,center_uy,-0.39493048191070557 +karman_re50,target,89,35.6,velocity,lower_ux,1.0135293006896973 +karman_re50,target,89,35.6,velocity,lower_uy,-0.30784091353416443 +karman_re50,target,90,36.0,velocity,upper_ux,1.1487354040145874 +karman_re50,target,90,36.0,velocity,upper_uy,-0.3410617411136627 +karman_re50,target,90,36.0,velocity,center_ux,1.0519752502441406 +karman_re50,target,90,36.0,velocity,center_uy,-0.4049917459487915 +karman_re50,target,90,36.0,velocity,lower_ux,0.9765012264251709 +karman_re50,target,90,36.0,velocity,lower_uy,-0.30339619517326355 +karman_re50,target,91,36.4,velocity,upper_ux,1.1834640502929688 +karman_re50,target,91,36.4,velocity,upper_uy,-0.3240605592727661 +karman_re50,target,91,36.4,velocity,center_ux,1.0436302423477173 +karman_re50,target,91,36.4,velocity,center_uy,-0.3644474446773529 +karman_re50,target,91,36.4,velocity,lower_ux,0.9397222995758057 +karman_re50,target,91,36.4,velocity,lower_uy,-0.268261581659317 +karman_re50,target,92,36.8,velocity,upper_ux,1.2036231756210327 +karman_re50,target,92,36.8,velocity,upper_uy,-0.24704429507255554 +karman_re50,target,92,36.8,velocity,center_ux,1.0370005369186401 +karman_re50,target,92,36.8,velocity,center_uy,-0.2604551911354065 +karman_re50,target,92,36.8,velocity,lower_ux,0.9107258319854736 +karman_re50,target,92,36.8,velocity,lower_uy,-0.1968318372964859 +karman_re50,target,93,37.2,velocity,upper_ux,1.2064876556396484 +karman_re50,target,93,37.2,velocity,upper_uy,-0.12567095458507538 +karman_re50,target,93,37.2,velocity,center_ux,1.0354504585266113 +karman_re50,target,93,37.2,velocity,center_uy,-0.11286206543445587 +karman_re50,target,93,37.2,velocity,lower_ux,0.8969064354896545 +karman_re50,target,93,37.2,velocity,lower_uy,-0.09701133519411087 +karman_re50,target,94,37.6,velocity,upper_ux,1.1944187879562378 +karman_re50,target,94,37.6,velocity,upper_uy,0.00310765509493649 +karman_re50,target,94,37.6,velocity,center_ux,1.0381746292114258 +karman_re50,target,94,37.6,velocity,center_uy,0.041005924344062805 +karman_re50,target,94,37.6,velocity,lower_ux,0.9009688496589661 +karman_re50,target,94,37.6,velocity,lower_uy,0.011964123696088791 +karman_re50,target,95,38.0,velocity,upper_ux,1.1712967157363892 +karman_re50,target,95,38.0,velocity,upper_uy,0.11104530096054077 +karman_re50,target,95,38.0,velocity,center_ux,1.0426636934280396 +karman_re50,target,95,38.0,velocity,center_uy,0.1681346744298935 +karman_re50,target,95,38.0,velocity,lower_ux,0.9207730293273926 +karman_re50,target,95,38.0,velocity,lower_uy,0.10793579369783401 +karman_re50,target,96,38.4,velocity,upper_ux,1.1420544385910034 +karman_re50,target,96,38.4,velocity,upper_uy,0.1873416304588318 +karman_re50,target,96,38.4,velocity,center_ux,1.0471104383468628 +karman_re50,target,96,38.4,velocity,center_uy,0.25243741273880005 +karman_re50,target,96,38.4,velocity,lower_ux,0.9514291882514954 +karman_re50,target,96,38.4,velocity,lower_uy,0.1757684201002121 +karman_re50,target,97,38.8,velocity,upper_ux,1.1112637519836426 +karman_re50,target,97,38.8,velocity,upper_uy,0.2359514683485031 +karman_re50,target,97,38.8,velocity,center_ux,1.051142692565918 +karman_re50,target,97,38.8,velocity,center_uy,0.2995433509349823 +karman_re50,target,97,38.8,velocity,lower_ux,0.9873509407043457 +karman_re50,target,97,38.8,velocity,lower_uy,0.21687424182891846 +karman_re50,target,98,39.2,velocity,upper_ux,1.0812098979949951 +karman_re50,target,98,39.2,velocity,upper_uy,0.26786935329437256 +karman_re50,target,98,39.2,velocity,center_ux,1.055068016052246 +karman_re50,target,98,39.2,velocity,center_uy,0.3297697901725769 +karman_re50,target,98,39.2,velocity,lower_ux,1.0248687267303467 +karman_re50,target,98,39.2,velocity,lower_uy,0.24681533873081207 +karman_re50,target,99,39.6,velocity,upper_ux,1.0508863925933838 +karman_re50,target,99,39.6,velocity,upper_uy,0.29151636362075806 +karman_re50,target,99,39.6,velocity,center_ux,1.0579355955123901 +karman_re50,target,99,39.6,velocity,center_uy,0.3602435290813446 +karman_re50,target,99,39.6,velocity,lower_ux,1.0631846189498901 +karman_re50,target,99,39.6,velocity,lower_uy,0.27886995673179626 +karman_re50,target,100,40.0,velocity,upper_ux,1.0177487134933472 +karman_re50,target,100,40.0,velocity,upper_uy,0.30689579248428345 +karman_re50,target,100,40.0,velocity,center_ux,1.0576715469360352 +karman_re50,target,100,40.0,velocity,center_uy,0.39177849888801575 +karman_re50,target,100,40.0,velocity,lower_ux,1.1031079292297363 +karman_re50,target,100,40.0,velocity,lower_uy,0.31408193707466125 +karman_re50,target,101,40.4,velocity,upper_ux,0.9810211062431335 +karman_re50,target,101,40.4,velocity,upper_uy,0.30532151460647583 +karman_re50,target,101,40.4,velocity,center_ux,1.052839756011963 +karman_re50,target,101,40.4,velocity,center_uy,0.40590131282806396 +karman_re50,target,101,40.4,velocity,lower_ux,1.1439979076385498 +karman_re50,target,101,40.4,velocity,lower_uy,0.33979687094688416 +karman_re50,target,102,40.8,velocity,upper_ux,0.9438771605491638 +karman_re50,target,102,40.8,velocity,upper_uy,0.27437248826026917 +karman_re50,target,102,40.8,velocity,center_ux,1.0446457862854004 +karman_re50,target,102,40.8,velocity,center_uy,0.3726826012134552 +karman_re50,target,102,40.8,velocity,lower_ux,1.1799477338790894 +karman_re50,target,102,40.8,velocity,lower_uy,0.3291279077529907 +karman_re50,target,103,41.2,velocity,upper_ux,0.9135167598724365 +karman_re50,target,103,41.2,velocity,upper_uy,0.2071467936038971 +karman_re50,target,103,41.2,velocity,center_ux,1.037570595741272 +karman_re50,target,103,41.2,velocity,center_uy,0.2758236527442932 +karman_re50,target,103,41.2,velocity,lower_ux,1.2021538019180298 +karman_re50,target,103,41.2,velocity,lower_uy,0.2592235803604126 +karman_re50,target,104,41.6,velocity,upper_ux,0.8976293802261353 +karman_re50,target,104,41.6,velocity,upper_uy,0.1098613366484642 +karman_re50,target,104,41.6,velocity,center_ux,1.0353859663009644 +karman_re50,target,104,41.6,velocity,center_uy,0.13158650696277618 +karman_re50,target,104,41.6,velocity,lower_ux,1.2070116996765137 +karman_re50,target,104,41.6,velocity,lower_uy,0.14128433167934418 +karman_re50,target,105,42.0,velocity,upper_ux,0.8995819687843323 +karman_re50,target,105,42.0,velocity,upper_uy,0.0007832127739675343 +karman_re50,target,105,42.0,velocity,center_ux,1.0377177000045776 +karman_re50,target,105,42.0,velocity,center_uy,-0.02350376360118389 +karman_re50,target,105,42.0,velocity,lower_ux,1.1965346336364746 +karman_re50,target,105,42.0,velocity,lower_uy,0.011576834134757519 +karman_re50,target,106,42.4,velocity,upper_ux,0.9177208542823792 +karman_re50,target,106,42.4,velocity,upper_uy,-0.09777583181858063 +karman_re50,target,106,42.4,velocity,center_ux,1.042109727859497 +karman_re50,target,106,42.4,velocity,center_uy,-0.15507863461971283 +karman_re50,target,106,42.4,velocity,lower_ux,1.1744822263717651 +karman_re50,target,106,42.4,velocity,lower_uy,-0.09975354373455048 +karman_re50,target,107,42.8,velocity,upper_ux,0.9473820328712463 +karman_re50,target,107,42.8,velocity,upper_uy,-0.1692761778831482 +karman_re50,target,107,42.8,velocity,center_ux,1.0466067790985107 +karman_re50,target,107,42.8,velocity,center_uy,-0.24462252855300903 +karman_re50,target,107,42.8,velocity,lower_ux,1.1457022428512573 +karman_re50,target,107,42.8,velocity,lower_uy,-0.17985723912715912 +karman_re50,target,108,43.2,velocity,upper_ux,0.9829390645027161 +karman_re50,target,108,43.2,velocity,upper_uy,-0.21290479600429535 +karman_re50,target,108,43.2,velocity,center_ux,1.0506775379180908 +karman_re50,target,108,43.2,velocity,center_uy,-0.29524552822113037 +karman_re50,target,108,43.2,velocity,lower_ux,1.1149260997772217 +karman_re50,target,108,43.2,velocity,lower_uy,-0.23124203085899353 +karman_re50,target,109,43.6,velocity,upper_ux,1.0203651189804077 +karman_re50,target,109,43.6,velocity,upper_uy,-0.2432856410741806 +karman_re50,target,109,43.6,velocity,center_ux,1.0546361207962036 +karman_re50,target,109,43.6,velocity,center_uy,-0.3263580799102783 +karman_re50,target,109,43.6,velocity,lower_ux,1.084782361984253 +karman_re50,target,109,43.6,velocity,lower_uy,-0.26458606123924255 +karman_re50,target,110,44.0,velocity,upper_ux,1.0585486888885498 +karman_re50,target,110,44.0,velocity,upper_uy,-0.27477484941482544 +karman_re50,target,110,44.0,velocity,center_ux,1.0577255487442017 +karman_re50,target,110,44.0,velocity,center_uy,-0.3563827574253082 +karman_re50,target,110,44.0,velocity,lower_ux,1.0546183586120605 +karman_re50,target,110,44.0,velocity,lower_uy,-0.28903424739837646 +karman_re50,target,111,44.4,velocity,upper_ux,1.0982381105422974 +karman_re50,target,111,44.4,velocity,upper_uy,-0.3099842369556427 +karman_re50,target,111,44.4,velocity,center_ux,1.0579326152801514 +karman_re50,target,111,44.4,velocity,center_uy,-0.3883969783782959 +karman_re50,target,111,44.4,velocity,lower_ux,1.0219106674194336 +karman_re50,target,111,44.4,velocity,lower_uy,-0.30571413040161133 +karman_re50,target,112,44.8,velocity,upper_ux,1.139195442199707 +karman_re50,target,112,44.8,velocity,upper_uy,-0.33801406621932983 +karman_re50,target,112,44.8,velocity,center_ux,1.0536490678787231 +karman_re50,target,112,44.8,velocity,center_uy,-0.4061180353164673 +karman_re50,target,112,44.8,velocity,lower_ux,0.9855278134346008 +karman_re50,target,112,44.8,velocity,lower_uy,-0.3068198263645172 +karman_re50,target,113,45.2,velocity,upper_ux,1.1762239933013916 +karman_re50,target,113,45.2,velocity,upper_uy,-0.3332999050617218 +karman_re50,target,113,45.2,velocity,center_ux,1.0456725358963013 +karman_re50,target,113,45.2,velocity,center_uy,-0.37996169924736023 +karman_re50,target,113,45.2,velocity,lower_ux,0.9481216669082642 +karman_re50,target,113,45.2,velocity,lower_uy,-0.2799452543258667 +karman_re50,target,114,45.6,velocity,upper_ux,1.2004271745681763 +karman_re50,target,114,45.6,velocity,upper_uy,-0.27068033814430237 +karman_re50,target,114,45.6,velocity,center_ux,1.0382111072540283 +karman_re50,target,114,45.6,velocity,center_uy,-0.2904864549636841 +karman_re50,target,114,45.6,velocity,lower_ux,0.9165161848068237 +karman_re50,target,114,45.6,velocity,lower_uy,-0.21701344847679138 +karman_re50,target,115,46.0,velocity,upper_ux,1.207314133644104 +karman_re50,target,115,46.0,velocity,upper_uy,-0.15673686563968658 +karman_re50,target,115,46.0,velocity,center_ux,1.035382866859436 +karman_re50,target,115,46.0,velocity,center_uy,-0.15015381574630737 +karman_re50,target,115,46.0,velocity,lower_ux,0.8986135125160217 +karman_re50,target,115,46.0,velocity,lower_uy,-0.12253338098526001 +karman_re50,target,116,46.4,velocity,upper_ux,1.1984816789627075 +karman_re50,target,116,46.4,velocity,upper_uy,-0.026538901031017303 +karman_re50,target,116,46.4,velocity,center_ux,1.0372875928878784 +karman_re50,target,116,46.4,velocity,center_uy,0.005653588566929102 +karman_re50,target,116,46.4,velocity,lower_ux,0.8984307050704956 +karman_re50,target,116,46.4,velocity,lower_uy,-0.013682223856449127 +karman_re50,target,117,46.8,velocity,upper_ux,1.1775686740875244 +karman_re50,target,117,46.8,velocity,upper_uy,0.08800376951694489 +karman_re50,target,117,46.8,velocity,center_ux,1.0415533781051636 +karman_re50,target,117,46.8,velocity,center_uy,0.14140205085277557 +karman_re50,target,117,46.8,velocity,lower_ux,0.9148362874984741 +karman_re50,target,117,46.8,velocity,lower_uy,0.08721393346786499 +karman_re50,target,118,47.2,velocity,upper_ux,1.149319052696228 +karman_re50,target,118,47.2,velocity,upper_uy,0.1719585657119751 +karman_re50,target,118,47.2,velocity,center_ux,1.0460922718048096 +karman_re50,target,118,47.2,velocity,center_uy,0.23623499274253845 +karman_re50,target,118,47.2,velocity,lower_ux,0.943417489528656 +karman_re50,target,118,47.2,velocity,lower_uy,0.1623673290014267 +karman_re50,target,119,47.6,velocity,upper_ux,1.1185954809188843 +karman_re50,target,119,47.6,velocity,upper_uy,0.2262813150882721 +karman_re50,target,119,47.6,velocity,center_ux,1.0502065420150757 +karman_re50,target,119,47.6,velocity,center_uy,0.290674090385437 +karman_re50,target,119,47.6,velocity,lower_ux,0.9785453677177429 +karman_re50,target,119,47.6,velocity,lower_uy,0.20874978601932526 +karman_re50,target,120,48.0,velocity,upper_ux,1.0883537530899048 +karman_re50,target,120,48.0,velocity,upper_uy,0.2611887454986572 +karman_re50,target,120,48.0,velocity,center_ux,1.054190993309021 +karman_re50,target,120,48.0,velocity,center_uy,0.3229527175426483 +karman_re50,target,120,48.0,velocity,lower_ux,1.0158698558807373 +karman_re50,target,120,48.0,velocity,lower_uy,0.2397889643907547 +karman_re50,target,121,48.4,velocity,upper_ux,1.058311104774475 +karman_re50,target,121,48.4,velocity,upper_uy,0.286454439163208 +karman_re50,target,121,48.4,velocity,center_ux,1.0574731826782227 +karman_re50,target,121,48.4,velocity,center_uy,0.3525756597518921 +karman_re50,target,121,48.4,velocity,lower_ux,1.0539376735687256 +karman_re50,target,121,48.4,velocity,lower_uy,0.2707500457763672 +karman_re50,target,122,48.8,velocity,upper_ux,1.0260142087936401 +karman_re50,target,122,48.8,velocity,upper_uy,0.30431681871414185 +karman_re50,target,122,48.8,velocity,center_ux,1.0581259727478027 +karman_re50,target,122,48.8,velocity,center_uy,0.3848312497138977 +karman_re50,target,122,48.8,velocity,lower_ux,1.0933952331542969 +karman_re50,target,122,48.8,velocity,lower_uy,0.3058065176010132 +karman_re50,target,123,49.2,velocity,upper_ux,0.9900128841400146 +karman_re50,target,123,49.2,velocity,upper_uy,0.30791351199150085 +karman_re50,target,123,49.2,velocity,center_ux,1.0543991327285767 +karman_re50,target,123,49.2,velocity,center_uy,0.40569770336151123 +karman_re50,target,123,49.2,velocity,lower_ux,1.1343454122543335 +karman_re50,target,123,49.2,velocity,lower_uy,0.33577102422714233 +karman_re50,target,124,49.6,velocity,upper_ux,0.9524427056312561 +karman_re50,target,124,49.6,velocity,upper_uy,0.284986674785614 +karman_re50,target,124,49.6,velocity,center_ux,1.0467009544372559 +karman_re50,target,124,49.6,velocity,center_uy,0.38629135489463806 +karman_re50,target,124,49.6,velocity,lower_ux,1.172308087348938 +karman_re50,target,124,49.6,velocity,lower_uy,0.3366008698940277 +karman_re50,target,125,50.0,velocity,upper_ux,0.9197120070457458 +karman_re50,target,125,50.0,velocity,upper_uy,0.2264116406440735 +karman_re50,target,125,50.0,velocity,center_ux,1.038917899131775 +karman_re50,target,125,50.0,velocity,center_uy,0.3043917417526245 +karman_re50,target,125,50.0,velocity,lower_ux,1.1984410285949707 +karman_re50,target,125,50.0,velocity,lower_uy,0.2813636064529419 +karman_re50,target,126,50.4,velocity,upper_ux,0.8998546600341797 +karman_re50,target,126,50.4,velocity,upper_uy,0.13499177992343903 +karman_re50,target,126,50.4,velocity,center_ux,1.0354520082473755 +karman_re50,target,126,50.4,velocity,center_uy,0.16849838197231293 +karman_re50,target,126,50.4,velocity,lower_ux,1.2073915004730225 +karman_re50,target,126,50.4,velocity,lower_uy,0.17196212708950043 +karman_re50,target,127,50.8,velocity,upper_ux,0.8975198864936829 +karman_re50,target,127,50.8,velocity,upper_uy,0.026696786284446716 +karman_re50,target,127,50.8,velocity,center_ux,1.0368897914886475 +karman_re50,target,127,50.8,velocity,center_uy,0.012496250681579113 +karman_re50,target,127,50.8,velocity,lower_ux,1.2002559900283813 +karman_re50,target,127,50.8,velocity,lower_uy,0.041740354150533676 +karman_re50,target,128,51.2,velocity,upper_ux,0.9121282696723938 +karman_re50,target,128,51.2,velocity,upper_uy,-0.0762687623500824 +karman_re50,target,128,51.2,velocity,center_ux,1.040998935699463 +karman_re50,target,128,51.2,velocity,center_uy,-0.12711942195892334 +karman_re50,target,128,51.2,velocity,lower_ux,1.1805520057678223 +karman_re50,target,128,51.2,velocity,lower_uy,-0.07580330222845078 +karman_re50,target,129,51.6,velocity,upper_ux,0.9395436644554138 +karman_re50,target,129,51.6,velocity,upper_uy,-0.1550261676311493 +karman_re50,target,129,51.6,velocity,center_ux,1.0455693006515503 +karman_re50,target,129,51.6,velocity,center_uy,-0.22725015878677368 +karman_re50,target,129,51.6,velocity,lower_ux,1.1529024839401245 +karman_re50,target,129,51.6,velocity,lower_uy,-0.16362938284873962 +karman_re50,target,130,52.0,velocity,upper_ux,0.9741756916046143 +karman_re50,target,130,52.0,velocity,upper_uy,-0.2043752521276474 +karman_re50,target,130,52.0,velocity,center_ux,1.0497312545776367 +karman_re50,target,130,52.0,velocity,center_uy,-0.28578659892082214 +karman_re50,target,130,52.0,velocity,lower_ux,1.12227201461792 +karman_re50,target,130,52.0,velocity,lower_uy,-0.22104810178279877 +karman_re50,target,131,52.4,velocity,upper_ux,1.0113825798034668 +karman_re50,target,131,52.4,velocity,upper_uy,-0.23630714416503906 +karman_re50,target,131,52.4,velocity,center_ux,1.0537371635437012 +karman_re50,target,131,52.4,velocity,center_uy,-0.3195294141769409 +karman_re50,target,131,52.4,velocity,lower_ux,1.0919302701950073 +karman_re50,target,131,52.4,velocity,lower_uy,-0.2576656639575958 +karman_re50,target,132,52.8,velocity,upper_ux,1.0493495464324951 +karman_re50,target,132,52.8,velocity,upper_uy,-0.26679885387420654 +karman_re50,target,132,52.8,velocity,center_ux,1.0571845769882202 +karman_re50,target,132,52.8,velocity,center_uy,-0.34883013367652893 +karman_re50,target,132,52.8,velocity,lower_ux,1.0619723796844482 +karman_re50,target,132,52.8,velocity,lower_uy,-0.2837822437286377 +karman_re50,target,133,53.2,velocity,upper_ux,1.0885798931121826 +karman_re50,target,133,53.2,velocity,upper_uy,-0.30157625675201416 +karman_re50,target,133,53.2,velocity,center_ux,1.0582544803619385 +karman_re50,target,133,53.2,velocity,center_uy,-0.3811258375644684 +karman_re50,target,133,53.2,velocity,lower_ux,1.0300613641738892 +karman_re50,target,133,53.2,velocity,lower_uy,-0.30272576212882996 +karman_re50,target,134,53.6,velocity,upper_ux,1.129460096359253 +karman_re50,target,134,53.6,velocity,upper_uy,-0.3331230878829956 +karman_re50,target,134,53.6,velocity,center_ux,1.0550881624221802 +karman_re50,target,134,53.6,velocity,center_uy,-0.4046977758407593 +karman_re50,target,134,53.6,velocity,lower_ux,0.9944714903831482 +karman_re50,target,134,53.6,velocity,lower_uy,-0.3086266815662384 +karman_re50,target,135,54.0,velocity,upper_ux,1.1682155132293701 +karman_re50,target,135,54.0,velocity,upper_uy,-0.3390621244907379 +karman_re50,target,135,54.0,velocity,center_ux,1.0477252006530762 +karman_re50,target,135,54.0,velocity,center_uy,-0.3916865289211273 +karman_re50,target,135,54.0,velocity,lower_ux,0.9568283557891846 +karman_re50,target,135,54.0,velocity,lower_uy,-0.2895035445690155 +karman_re50,target,136,54.4,velocity,upper_ux,1.1961981058120728 +karman_re50,target,136,54.4,velocity,upper_uy,-0.2912292182445526 +karman_re50,target,136,54.4,velocity,center_ux,1.039689540863037 +karman_re50,target,136,54.4,velocity,center_uy,-0.3174925148487091 +karman_re50,target,136,54.4,velocity,lower_ux,0.9230939745903015 +karman_re50,target,136,54.4,velocity,lower_uy,-0.23532307147979736 +karman_re50,target,137,54.8,velocity,upper_ux,1.207237958908081 +karman_re50,target,137,54.8,velocity,upper_uy,-0.18689347803592682 +karman_re50,target,137,54.8,velocity,center_ux,1.0355918407440186 +karman_re50,target,137,54.8,velocity,center_uy,-0.1865513026714325 +karman_re50,target,137,54.8,velocity,lower_ux,0.9013548493385315 +karman_re50,target,137,54.8,velocity,lower_uy,-0.14719948172569275 +karman_re50,target,138,55.2,velocity,upper_ux,1.201849341392517 +karman_re50,target,138,55.2,velocity,upper_uy,-0.0571415089070797 +karman_re50,target,138,55.2,velocity,center_ux,1.0365314483642578 +karman_re50,target,138,55.2,velocity,center_uy,-0.0308927483856678 +karman_re50,target,138,55.2,velocity,lower_ux,0.8968579173088074 +karman_re50,target,138,55.2,velocity,lower_uy,-0.03978772461414337 +karman_re50,target,139,55.6,velocity,upper_ux,1.1834203004837036 +karman_re50,target,139,55.6,velocity,upper_uy,0.06316206604242325 +karman_re50,target,139,55.6,velocity,center_ux,1.040450096130371 +karman_re50,target,139,55.6,velocity,center_uy,0.11225137859582901 +karman_re50,target,139,55.6,velocity,lower_ux,0.9096046686172485 +karman_re50,target,139,55.6,velocity,lower_uy,0.06496496498584747 +karman_re50,target,140,56.0,velocity,upper_ux,1.15644371509552 +karman_re50,target,140,56.0,velocity,upper_uy,0.15485580265522003 +karman_re50,target,140,56.0,velocity,center_ux,1.0450382232666016 +karman_re50,target,140,56.0,velocity,center_uy,0.21764959394931793 +karman_re50,target,140,56.0,velocity,lower_ux,0.935772716999054 +karman_re50,target,140,56.0,velocity,lower_uy,0.14724399149417877 +karman_re50,target,141,56.4,velocity,upper_ux,1.125951886177063 +karman_re50,target,141,56.4,velocity,upper_uy,0.21551835536956787 +karman_re50,target,141,56.4,velocity,center_ux,1.0492514371871948 +karman_re50,target,141,56.4,velocity,center_uy,0.28054261207580566 +karman_re50,target,141,56.4,velocity,lower_ux,0.9698389172554016 +karman_re50,target,141,56.4,velocity,lower_uy,0.19974851608276367 +karman_re50,target,142,56.8,velocity,upper_ux,1.0955122709274292 +karman_re50,target,142,56.8,velocity,upper_uy,0.2540023922920227 +karman_re50,target,142,56.8,velocity,center_ux,1.0532760620117188 +karman_re50,target,142,56.8,velocity,center_uy,0.31606030464172363 +karman_re50,target,142,56.8,velocity,lower_ux,1.0069025754928589 +karman_re50,target,142,56.8,velocity,lower_uy,0.23282043635845184 +karman_re50,target,143,57.2,velocity,upper_ux,1.0656038522720337 +karman_re50,target,143,57.2,velocity,upper_uy,0.28101933002471924 +karman_re50,target,143,57.2,velocity,center_ux,1.0568628311157227 +karman_re50,target,143,57.2,velocity,center_uy,0.3451511263847351 +karman_re50,target,143,57.2,velocity,lower_ux,1.0447795391082764 +karman_re50,target,143,57.2,velocity,lower_uy,0.2629244327545166 +karman_re50,target,144,57.6,velocity,upper_ux,1.0340505838394165 +karman_re50,target,144,57.6,velocity,upper_uy,0.30095553398132324 +karman_re50,target,144,57.6,velocity,center_ux,1.0583208799362183 +karman_re50,target,144,57.6,velocity,center_uy,0.37731772661209106 +karman_re50,target,144,57.6,velocity,lower_ux,1.0837963819503784 +karman_re50,target,144,57.6,velocity,lower_uy,0.2973196506500244 +karman_re50,target,145,58.0,velocity,upper_ux,0.9988934993743896 +karman_re50,target,145,58.0,velocity,upper_uy,0.308979868888855 +karman_re50,target,145,58.0,velocity,center_ux,1.0557118654251099 +karman_re50,target,145,58.0,velocity,center_uy,0.4031751751899719 +karman_re50,target,145,58.0,velocity,lower_ux,1.1245546340942383 +karman_re50,target,145,58.0,velocity,lower_uy,0.33012399077415466 +karman_re50,target,146,58.4,velocity,upper_ux,0.9612631797790527 +karman_re50,target,146,58.4,velocity,upper_uy,0.29350489377975464 +karman_re50,target,146,58.4,velocity,center_ux,1.0487343072891235 +karman_re50,target,146,58.4,velocity,center_uy,0.39616844058036804 +karman_re50,target,146,58.4,velocity,lower_ux,1.1639658212661743 +karman_re50,target,146,58.4,velocity,lower_uy,0.3407234847545624 +karman_re50,target,147,58.8,velocity,upper_ux,0.9266468286514282 +karman_re50,target,147,58.8,velocity,upper_uy,0.24373096227645874 +karman_re50,target,147,58.8,velocity,center_ux,1.0405179262161255 +karman_re50,target,147,58.8,velocity,center_uy,0.3297460079193115 +karman_re50,target,147,58.8,velocity,lower_ux,1.1937012672424316 +karman_re50,target,147,58.8,velocity,lower_uy,0.3002389967441559 +karman_re50,target,148,59.2,velocity,upper_ux,0.9031063318252563 +karman_re50,target,148,59.2,velocity,upper_uy,0.15912136435508728 +karman_re50,target,148,59.2,velocity,center_ux,1.03580641746521 +karman_re50,target,148,59.2,velocity,center_uy,0.20424537360668182 +karman_re50,target,148,59.2,velocity,lower_ux,1.2068473100662231 +karman_re50,target,148,59.2,velocity,lower_uy,0.20145973563194275 +karman_re50,target,149,59.6,velocity,upper_ux,0.8964457511901855 +karman_re50,target,149,59.6,velocity,upper_uy,0.05291659012436867 +karman_re50,target,149,59.6,velocity,center_ux,1.0362155437469482 +karman_re50,target,149,59.6,velocity,center_uy,0.04947967454791069 +karman_re50,target,149,59.6,velocity,lower_ux,1.2032573223114014 +karman_re50,target,149,59.6,velocity,lower_uy,0.0726950392127037 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_wide.csv new file mode 100644 index 0000000..d715898 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re50,target,0,0.0,1.1062400341033936,-0.31701016426086426,1.0570125579833984,-0.39401671290397644,1.0145970582962036,-0.3077220618724823 +karman_re50,target,1,0.4,1.1470513343811035,-0.3409535884857178,1.0518462657928467,-0.4053593575954437,0.9777860045433044,-0.30409595370292664 +karman_re50,target,2,0.8,1.1820671558380127,-0.32598480582237244,1.0434269905090332,-0.3671301007270813,0.9408755302429199,-0.27021315693855286 +karman_re50,target,3,1.2,1.2026925086975098,-0.25111982226371765,1.0364530086517334,-0.2653695344924927,0.9113318920135498,-0.2000708132982254 +karman_re50,target,4,1.6,1.2061848640441895,-0.13063736259937286,1.034691333770752,-0.11878702044487,0.8968793749809265,-0.10103648155927658 +karman_re50,target,5,2.0,1.194709300994873,-0.0013547932030633092,1.0373958349227905,0.03554558381438255,0.9003467559814453,0.007982620969414711 +karman_re50,target,6,2.4,1.1720081567764282,0.1078057661652565,1.041974663734436,0.16415193676948547,0.9196719527244568,0.10477402806282043 +karman_re50,target,7,2.8,1.1429706811904907,0.18535389006137848,1.046545147895813,0.2501302659511566,0.9500439167022705,0.17373648285865784 +karman_re50,target,8,3.2,1.112095832824707,0.23479528725147247,1.0505386590957642,0.29829907417297363,0.9857262969017029,0.2155943512916565 +karman_re50,target,9,3.6,1.081985592842102,0.26707684993743896,1.0544562339782715,0.32873764634132385,1.0231267213821411,0.2456635683774948 +karman_re50,target,10,4.0,1.0518383979797363,0.2908973693847656,1.0575023889541626,0.3590238690376282,1.0614489316940308,0.27757176756858826 +karman_re50,target,11,4.4,1.0189664363861084,0.3066403865814209,1.0574759244918823,0.3907131254673004,1.101345419883728,0.31284961104393005 +karman_re50,target,12,4.8,0.9824524521827698,0.30590683221817017,1.0528661012649536,0.4060553312301636,1.1422959566116333,0.3394168019294739 +karman_re50,target,13,5.2,0.9452080726623535,0.27627310156822205,1.0446621179580688,0.3752092123031616,1.1785472631454468,0.33078423142433167 +karman_re50,target,14,5.6,0.9143072366714478,0.21044869720935822,1.0372710227966309,0.2807973027229309,1.201256275177002,0.26325616240501404 +karman_re50,target,15,6.0,0.8977464437484741,0.11408235877752304,1.0348464250564575,0.13781696557998657,1.206774353981018,0.1465056836605072 +karman_re50,target,16,6.4,0.8990594744682312,0.00506121851503849,1.0371296405792236,-0.01758403144776821,1.1969313621520996,0.016470203176140785 +karman_re50,target,17,6.8,0.9166716933250427,-0.09429317712783813,1.0415785312652588,-0.15062037110328674,1.1753307580947876,-0.09605594724416733 +karman_re50,target,18,7.2,0.9460099935531616,-0.16700011491775513,1.0461795330047607,-0.24195344746112823,1.1467796564102173,-0.17749185860157013 +karman_re50,target,19,7.6,0.9813204407691956,-0.21150921285152435,1.0502095222473145,-0.29381266236305237,1.1159363985061646,-0.22982853651046753 +karman_re50,target,20,8.0,1.01861572265625,-0.24208879470825195,1.0541287660598755,-0.3252556622028351,1.0857032537460327,-0.2636301517486572 +karman_re50,target,21,8.4,1.0568026304244995,-0.2734181582927704,1.057370662689209,-0.3551081120967865,1.0556788444519043,-0.2882934808731079 +karman_re50,target,22,8.8,1.0964710712432861,-0.3086247146129608,1.057815670967102,-0.38720834255218506,1.0232237577438354,-0.3053373396396637 +karman_re50,target,23,9.2,1.1374691724777222,-0.33739522099494934,1.0537689924240112,-0.40604981780052185,0.9870550036430359,-0.3072768747806549 +karman_re50,target,24,9.6,1.174794316291809,-0.33466118574142456,1.0458366870880127,-0.38226118683815,0.9495860934257507,-0.28174522519111633 +karman_re50,target,25,10.0,1.1995192766189575,-0.274573415517807,1.0380933284759521,-0.29539966583251953,0.9174619317054749,-0.22029981017112732 +karman_re50,target,26,10.4,1.2070921659469604,-0.16209425032138824,1.0350074768066406,-0.1565619856119156,0.8988617062568665,-0.12686261534690857 +karman_re50,target,27,10.8,1.198925495147705,-0.0317566841840744,1.0368343591690063,-0.000620992504991591,0.8980054259300232,-0.018181167542934418 +karman_re50,target,28,11.2,1.1784964799880981,0.08392862975597382,1.0411317348480225,0.13653261959552765,0.9138413071632385,0.08345595002174377 +karman_re50,target,29,11.6,1.1505024433135986,0.16926860809326172,1.0457576513290405,0.2332286685705185,0.9420612454414368,0.15985830128192902 +karman_re50,target,30,12.0,1.1197353601455688,0.2246466875076294,1.0498371124267578,0.2890588939189911,0.9769352674484253,0.20723731815814972 +karman_re50,target,31,12.4,1.0893816947937012,0.2600979506969452,1.0537593364715576,0.32179251313209534,1.0141152143478394,0.2385593056678772 +karman_re50,target,32,12.8,1.0594439506530762,0.28561538457870483,1.0571666955947876,0.3512703776359558,1.0521817207336426,0.26936256885528564 +karman_re50,target,33,13.2,1.0273860692977905,0.30383312702178955,1.058053731918335,0.38354599475860596,1.09162175655365,0.3043566942214966 +karman_re50,target,34,13.6,0.9916014671325684,0.30823642015457153,1.054571509361267,0.4054122567176819,1.1325932741165161,0.3349456787109375 +karman_re50,target,35,14.0,0.9540056586265564,0.28665220737457275,1.0469632148742676,0.3883199393749237,1.170833706855774,0.3376573920249939 +karman_re50,target,36,14.4,0.9207926392555237,0.22962509095668793,1.038936734199524,0.3091573119163513,1.197495460510254,0.2850491404533386 +karman_re50,target,37,14.8,0.9002274870872498,0.13936109840869904,1.0351943969726562,0.17498521506786346,1.2071459293365479,0.17736536264419556 +karman_re50,target,38,15.2,0.8971908688545227,0.03135546296834946,1.036531925201416,0.019043251872062683,1.200704574584961,0.04720277711749077 +karman_re50,target,39,15.6,0.911193311214447,-0.07227513939142227,1.0406514406204224,-0.12189076095819473,1.1815167665481567,-0.07141044735908508 +karman_re50,target,40,16.0,0.9382089376449585,-0.1522950828075409,1.0452942848205566,-0.22392605245113373,1.1541485786437988,-0.16065365076065063 +karman_re50,target,41,16.4,0.9725778698921204,-0.20274242758750916,1.0494309663772583,-0.2839905619621277,1.1235042810440063,-0.2192162722349167 +karman_re50,target,42,16.8,1.0096263885498047,-0.23505045473575592,1.053359031677246,-0.3183170557022095,1.093036413192749,-0.2564597725868225 +karman_re50,target,43,17.2,1.0475831031799316,-0.26540037989616394,1.0569050312042236,-0.3475119471549988,1.0631505250930786,-0.2828628122806549 +karman_re50,target,44,17.6,1.0868034362792969,-0.3000655770301819,1.0582009553909302,-0.3797668516635895,1.0314651727676392,-0.30214744806289673 +karman_re50,target,45,18.0,1.1276867389678955,-0.33212172985076904,1.055283546447754,-0.4042082130908966,0.9960939884185791,-0.308816134929657 +karman_re50,target,46,18.4,1.1666914224624634,-0.33981597423553467,1.0480486154556274,-0.39341971278190613,0.9584625363349915,-0.2910156548023224 +karman_re50,target,47,18.8,1.1951977014541626,-0.29465678334236145,1.0398108959197998,-0.3220452070236206,0.9242899417877197,-0.2384233921766281 +karman_re50,target,48,19.2,1.2069470882415771,-0.1922684907913208,1.035428524017334,-0.19303825497627258,0.9018435478210449,-0.15155813097953796 +karman_re50,target,49,19.6,1.2022746801376343,-0.06278292089700699,1.0362435579299927,-0.03764432668685913,0.8966238498687744,-0.04455805942416191 +karman_re50,target,50,20.0,1.184390902519226,0.05849871784448624,1.0401549339294434,0.10670612007379532,0.9087352752685547,0.06076803803443909 +karman_re50,target,51,20.4,1.1577248573303223,0.15162219107151031,1.0448018312454224,0.21402154862880707,0.9344657063484192,0.1442994922399521 +karman_re50,target,52,20.8,1.1272507905960083,0.21350491046905518,1.0490002632141113,0.2785625159740448,0.9682541489601135,0.19798916578292847 +karman_re50,target,53,21.2,1.096679925918579,0.2526933550834656,1.0529382228851318,0.3147958219051361,1.0051487684249878,0.23153652250766754 +karman_re50,target,54,21.6,1.0668127536773682,0.280032753944397,1.0565987825393677,0.34383177757263184,1.0430076122283936,0.2615278661251068 +karman_re50,target,55,22.0,1.035469651222229,0.30029579997062683,1.0582728385925293,0.375906765460968,1.0820162296295166,0.29577094316482544 +karman_re50,target,56,22.4,1.0005335807800293,0.30904096364974976,1.055912733078003,0.40249884128570557,1.1227641105651855,0.3289748430252075 +karman_re50,target,57,22.8,0.9629489779472351,0.294852077960968,1.0490942001342773,0.3975955545902252,1.162390947341919,0.34118378162384033 +karman_re50,target,58,23.2,0.9279441833496094,0.24668920040130615,1.0407195091247559,0.33403849601745605,1.1926360130310059,0.3033747673034668 +karman_re50,target,59,23.6,0.9037069082260132,0.16342848539352417,1.035719871520996,0.21066831052303314,1.2064963579177856,0.20674897730350494 +karman_re50,target,60,24.0,0.8963083624839783,0.057758089154958725,1.0359811782836914,0.05637892335653305,1.2036395072937012,0.07846395671367645 +karman_re50,target,61,24.4,0.906475841999054,-0.04895688593387604,1.039650321006775,-0.09099843353033066,1.1871230602264404,-0.045198388397693634 +karman_re50,target,62,24.8,0.9308398365974426,-0.13586516678333282,1.044286847114563,-0.20349931716918945,1.1612308025360107,-0.14215700328350067 +karman_re50,target,63,25.2,0.9639695882797241,-0.19294562935829163,1.0485501289367676,-0.2727319598197937,1.1309794187545776,-0.20748651027679443 +karman_re50,target,64,25.6,1.0006816387176514,-0.22799132764339447,1.0525027513504028,-0.31119513511657715,1.1003202199935913,-0.24877998232841492 +karman_re50,target,65,26.0,1.0384496450424194,-0.2577403485774994,1.0562547445297241,-0.34022653102874756,1.0704412460327148,-0.2771231532096863 +karman_re50,target,66,26.4,1.0772619247436523,-0.29149001836776733,1.0582751035690308,-0.3719986379146576,1.0394080877304077,-0.29829350113868713 +karman_re50,target,67,26.8,1.117835521697998,-0.32555386424064636,1.0564634799957275,-0.40034475922584534,1.0049208402633667,-0.3089372217655182 +karman_re50,target,68,27.2,1.1579504013061523,-0.341811865568161,1.05009925365448,-0.40088778734207153,0.9674566388130188,-0.29818201065063477 +karman_re50,target,69,27.6,1.1898205280303955,-0.3111867606639862,1.041661024093628,-0.34511512517929077,0.9317427277565002,-0.25441956520080566 +karman_re50,target,70,28.0,1.2057909965515137,-0.22074639797210693,1.036076545715332,-0.22782018780708313,0.9058125019073486,-0.17494803667068481 +karman_re50,target,71,28.4,1.2047977447509766,-0.09420531988143921,1.0357553958892822,-0.07519793510437012,0.8962476253509521,-0.07092368602752686 +karman_re50,target,72,28.8,1.1897071599960327,0.031520482152700424,1.039147138595581,0.0747910812497139,0.9044229984283447,0.036866337060928345 +karman_re50,target,73,29.2,1.164664387702942,0.13224448263645172,1.0437557697296143,0.1923472285270691,0.9273419976234436,0.12699010968208313 +karman_re50,target,74,29.6,1.1346896886825562,0.20113568007946014,1.0480835437774658,0.26645928621292114,0.9597317576408386,0.187578946352005 +karman_re50,target,75,30.0,1.10396146774292,0.2446993589401245,1.052056908607483,0.30747848749160767,0.9962252974510193,0.22438575327396393 +karman_re50,target,76,30.4,1.0740455389022827,0.27413037419319153,1.0558816194534302,0.33668848872184753,1.0339092016220093,0.25403153896331787 +karman_re50,target,77,30.8,1.043286919593811,0.2961559593677521,1.058217167854309,0.36807000637054443,1.0725390911102295,0.28723767399787903 +karman_re50,target,78,31.2,1.0092530250549316,0.3085300326347351,1.0569393634796143,0.39780381321907043,1.1129119396209717,0.3219037353992462 +karman_re50,target,79,31.6,0.9719774723052979,0.30102410912513733,1.051060676574707,0.40333759784698486,1.1533920764923096,0.3417530357837677 +karman_re50,target,80,32.0,0.9356744289398193,0.26161110401153564,1.0426336526870728,0.35525569319725037,1.1867581605911255,0.3180822432041168 +karman_re50,target,81,32.4,0.9081553816795349,0.18609100580215454,1.0365039110183716,0.24443498253822327,1.2048348188400269,0.23419824242591858 +karman_re50,target,82,32.8,0.8964473605155945,0.08401990681886673,1.0355767011642456,0.09404513984918594,1.2057489156723022,0.10995864123106003 +karman_re50,target,83,33.2,0.9025856256484985,-0.024525336921215057,1.0386536121368408,-0.05811518803238869,1.1921409368515015,-0.01748264580965042 +karman_re50,target,84,33.6,0.9239842295646667,-0.11767803132534027,1.0432143211364746,-0.1805589348077774,1.1680216789245605,-0.1218750923871994 +karman_re50,target,85,34.0,0.9555497169494629,-0.18186216056346893,1.0476032495498657,-0.2597055435180664,1.138382077217102,-0.19442716240882874 +karman_re50,target,86,34.4,0.9917820692062378,-0.22069038450717926,1.0516029596328735,-0.3036070764064789,1.107608675956726,-0.24042920768260956 +karman_re50,target,87,34.8,1.0293830633163452,-0.2503930926322937,1.055484414100647,-0.33320724964141846,1.077633023262024,-0.2710472345352173 +karman_re50,target,88,35.2,1.0678480863571167,-0.2830270528793335,1.0581016540527344,-0.3641444444656372,1.0471103191375732,-0.2938922047615051 +karman_re50,target,89,35.6,1.1080012321472168,-0.31806680560112,1.0573409795761108,-0.39493048191070557,1.0135293006896973,-0.30784091353416443 +karman_re50,target,90,36.0,1.1487354040145874,-0.3410617411136627,1.0519752502441406,-0.4049917459487915,0.9765012264251709,-0.30339619517326355 +karman_re50,target,91,36.4,1.1834640502929688,-0.3240605592727661,1.0436302423477173,-0.3644474446773529,0.9397222995758057,-0.268261581659317 +karman_re50,target,92,36.8,1.2036231756210327,-0.24704429507255554,1.0370005369186401,-0.2604551911354065,0.9107258319854736,-0.1968318372964859 +karman_re50,target,93,37.2,1.2064876556396484,-0.12567095458507538,1.0354504585266113,-0.11286206543445587,0.8969064354896545,-0.09701133519411087 +karman_re50,target,94,37.6,1.1944187879562378,0.00310765509493649,1.0381746292114258,0.041005924344062805,0.9009688496589661,0.011964123696088791 +karman_re50,target,95,38.0,1.1712967157363892,0.11104530096054077,1.0426636934280396,0.1681346744298935,0.9207730293273926,0.10793579369783401 +karman_re50,target,96,38.4,1.1420544385910034,0.1873416304588318,1.0471104383468628,0.25243741273880005,0.9514291882514954,0.1757684201002121 +karman_re50,target,97,38.8,1.1112637519836426,0.2359514683485031,1.051142692565918,0.2995433509349823,0.9873509407043457,0.21687424182891846 +karman_re50,target,98,39.2,1.0812098979949951,0.26786935329437256,1.055068016052246,0.3297697901725769,1.0248687267303467,0.24681533873081207 +karman_re50,target,99,39.6,1.0508863925933838,0.29151636362075806,1.0579355955123901,0.3602435290813446,1.0631846189498901,0.27886995673179626 +karman_re50,target,100,40.0,1.0177487134933472,0.30689579248428345,1.0576715469360352,0.39177849888801575,1.1031079292297363,0.31408193707466125 +karman_re50,target,101,40.4,0.9810211062431335,0.30532151460647583,1.052839756011963,0.40590131282806396,1.1439979076385498,0.33979687094688416 +karman_re50,target,102,40.8,0.9438771605491638,0.27437248826026917,1.0446457862854004,0.3726826012134552,1.1799477338790894,0.3291279077529907 +karman_re50,target,103,41.2,0.9135167598724365,0.2071467936038971,1.037570595741272,0.2758236527442932,1.2021538019180298,0.2592235803604126 +karman_re50,target,104,41.6,0.8976293802261353,0.1098613366484642,1.0353859663009644,0.13158650696277618,1.2070116996765137,0.14128433167934418 +karman_re50,target,105,42.0,0.8995819687843323,0.0007832127739675343,1.0377177000045776,-0.02350376360118389,1.1965346336364746,0.011576834134757519 +karman_re50,target,106,42.4,0.9177208542823792,-0.09777583181858063,1.042109727859497,-0.15507863461971283,1.1744822263717651,-0.09975354373455048 +karman_re50,target,107,42.8,0.9473820328712463,-0.1692761778831482,1.0466067790985107,-0.24462252855300903,1.1457022428512573,-0.17985723912715912 +karman_re50,target,108,43.2,0.9829390645027161,-0.21290479600429535,1.0506775379180908,-0.29524552822113037,1.1149260997772217,-0.23124203085899353 +karman_re50,target,109,43.6,1.0203651189804077,-0.2432856410741806,1.0546361207962036,-0.3263580799102783,1.084782361984253,-0.26458606123924255 +karman_re50,target,110,44.0,1.0585486888885498,-0.27477484941482544,1.0577255487442017,-0.3563827574253082,1.0546183586120605,-0.28903424739837646 +karman_re50,target,111,44.4,1.0982381105422974,-0.3099842369556427,1.0579326152801514,-0.3883969783782959,1.0219106674194336,-0.30571413040161133 +karman_re50,target,112,44.8,1.139195442199707,-0.33801406621932983,1.0536490678787231,-0.4061180353164673,0.9855278134346008,-0.3068198263645172 +karman_re50,target,113,45.2,1.1762239933013916,-0.3332999050617218,1.0456725358963013,-0.37996169924736023,0.9481216669082642,-0.2799452543258667 +karman_re50,target,114,45.6,1.2004271745681763,-0.27068033814430237,1.0382111072540283,-0.2904864549636841,0.9165161848068237,-0.21701344847679138 +karman_re50,target,115,46.0,1.207314133644104,-0.15673686563968658,1.035382866859436,-0.15015381574630737,0.8986135125160217,-0.12253338098526001 +karman_re50,target,116,46.4,1.1984816789627075,-0.026538901031017303,1.0372875928878784,0.005653588566929102,0.8984307050704956,-0.013682223856449127 +karman_re50,target,117,46.8,1.1775686740875244,0.08800376951694489,1.0415533781051636,0.14140205085277557,0.9148362874984741,0.08721393346786499 +karman_re50,target,118,47.2,1.149319052696228,0.1719585657119751,1.0460922718048096,0.23623499274253845,0.943417489528656,0.1623673290014267 +karman_re50,target,119,47.6,1.1185954809188843,0.2262813150882721,1.0502065420150757,0.290674090385437,0.9785453677177429,0.20874978601932526 +karman_re50,target,120,48.0,1.0883537530899048,0.2611887454986572,1.054190993309021,0.3229527175426483,1.0158698558807373,0.2397889643907547 +karman_re50,target,121,48.4,1.058311104774475,0.286454439163208,1.0574731826782227,0.3525756597518921,1.0539376735687256,0.2707500457763672 +karman_re50,target,122,48.8,1.0260142087936401,0.30431681871414185,1.0581259727478027,0.3848312497138977,1.0933952331542969,0.3058065176010132 +karman_re50,target,123,49.2,0.9900128841400146,0.30791351199150085,1.0543991327285767,0.40569770336151123,1.1343454122543335,0.33577102422714233 +karman_re50,target,124,49.6,0.9524427056312561,0.284986674785614,1.0467009544372559,0.38629135489463806,1.172308087348938,0.3366008698940277 +karman_re50,target,125,50.0,0.9197120070457458,0.2264116406440735,1.038917899131775,0.3043917417526245,1.1984410285949707,0.2813636064529419 +karman_re50,target,126,50.4,0.8998546600341797,0.13499177992343903,1.0354520082473755,0.16849838197231293,1.2073915004730225,0.17196212708950043 +karman_re50,target,127,50.8,0.8975198864936829,0.026696786284446716,1.0368897914886475,0.012496250681579113,1.2002559900283813,0.041740354150533676 +karman_re50,target,128,51.2,0.9121282696723938,-0.0762687623500824,1.040998935699463,-0.12711942195892334,1.1805520057678223,-0.07580330222845078 +karman_re50,target,129,51.6,0.9395436644554138,-0.1550261676311493,1.0455693006515503,-0.22725015878677368,1.1529024839401245,-0.16362938284873962 +karman_re50,target,130,52.0,0.9741756916046143,-0.2043752521276474,1.0497312545776367,-0.28578659892082214,1.12227201461792,-0.22104810178279877 +karman_re50,target,131,52.4,1.0113825798034668,-0.23630714416503906,1.0537371635437012,-0.3195294141769409,1.0919302701950073,-0.2576656639575958 +karman_re50,target,132,52.8,1.0493495464324951,-0.26679885387420654,1.0571845769882202,-0.34883013367652893,1.0619723796844482,-0.2837822437286377 +karman_re50,target,133,53.2,1.0885798931121826,-0.30157625675201416,1.0582544803619385,-0.3811258375644684,1.0300613641738892,-0.30272576212882996 +karman_re50,target,134,53.6,1.129460096359253,-0.3331230878829956,1.0550881624221802,-0.4046977758407593,0.9944714903831482,-0.3086266815662384 +karman_re50,target,135,54.0,1.1682155132293701,-0.3390621244907379,1.0477252006530762,-0.3916865289211273,0.9568283557891846,-0.2895035445690155 +karman_re50,target,136,54.4,1.1961981058120728,-0.2912292182445526,1.039689540863037,-0.3174925148487091,0.9230939745903015,-0.23532307147979736 +karman_re50,target,137,54.8,1.207237958908081,-0.18689347803592682,1.0355918407440186,-0.1865513026714325,0.9013548493385315,-0.14719948172569275 +karman_re50,target,138,55.2,1.201849341392517,-0.0571415089070797,1.0365314483642578,-0.0308927483856678,0.8968579173088074,-0.03978772461414337 +karman_re50,target,139,55.6,1.1834203004837036,0.06316206604242325,1.040450096130371,0.11225137859582901,0.9096046686172485,0.06496496498584747 +karman_re50,target,140,56.0,1.15644371509552,0.15485580265522003,1.0450382232666016,0.21764959394931793,0.935772716999054,0.14724399149417877 +karman_re50,target,141,56.4,1.125951886177063,0.21551835536956787,1.0492514371871948,0.28054261207580566,0.9698389172554016,0.19974851608276367 +karman_re50,target,142,56.8,1.0955122709274292,0.2540023922920227,1.0532760620117188,0.31606030464172363,1.0069025754928589,0.23282043635845184 +karman_re50,target,143,57.2,1.0656038522720337,0.28101933002471924,1.0568628311157227,0.3451511263847351,1.0447795391082764,0.2629244327545166 +karman_re50,target,144,57.6,1.0340505838394165,0.30095553398132324,1.0583208799362183,0.37731772661209106,1.0837963819503784,0.2973196506500244 +karman_re50,target,145,58.0,0.9988934993743896,0.308979868888855,1.0557118654251099,0.4031751751899719,1.1245546340942383,0.33012399077415466 +karman_re50,target,146,58.4,0.9612631797790527,0.29350489377975464,1.0487343072891235,0.39616844058036804,1.1639658212661743,0.3407234847545624 +karman_re50,target,147,58.8,0.9266468286514282,0.24373096227645874,1.0405179262161255,0.3297460079193115,1.1937012672424316,0.3002389967441559 +karman_re50,target,148,59.2,0.9031063318252563,0.15912136435508728,1.03580641746521,0.20424537360668182,1.2068473100662231,0.20145973563194275 +karman_re50,target,149,59.6,0.8964457511901855,0.05291659012436867,1.0362155437469482,0.04947967454791069,1.2032573223114014,0.0726950392127037 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/manifest.json new file mode 100644 index 0000000..48f6795 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/manifest.json @@ -0,0 +1,364 @@ +{ + "schema_version": "sr-plotting-package-v1", + "source_policy": "immutable article and Article2 artifacts; no scientific refit", + "summary": { + "offline_rows": 1379, + "offline_term_rows": 1379, + "closed_loop_term_rows": 2793, + "ablation_rows": 24, + "scaling_rows": 37, + "steady_timeseries_cases": 7, + "long_ppo_scenes": 7, + "diagnostic_figures": 6 + }, + "artifacts": [ + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/ablation_summary.csv", + "sha256": "66d1f25c217d82a8151b0a53f774f18d3dfac8d1be2c20354ebb441494705056" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.pdf", + "sha256": "7e1c47efe5155dd305be39984ea6e17553904135b47cb97576e2ac34d692fb27" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/01_training_case_performance.png", + "sha256": "bbfb3204a31bab7e59c4c2a8a4d4812acbd7470d144dbb5dff5ada3473805dc4" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.pdf", + "sha256": "ddb5fad80d5ac371279855b2c3cf523cceb850c6b27f593013da4b5316f9487d" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/02_pointwise_generalization.png", + "sha256": "1be86def0f5eb4c66673d6d4f7c80e5e3ae11ad15837647a7e0f23556e16786b" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.pdf", + "sha256": "d2aacd625219fd0382a9ea8ce232343dfa5f98d6cc9444f406e80698923dcbd2" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/03_steady_rotation_calibration.png", + "sha256": "e0815d50108555740ae496dd8617e4c700f89214cd4a704ca5546e2661cd9a5d" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.pdf", + "sha256": "da34af575ceb38b5edf82096ca99c1b1a475de1eddb5c34b14e75590181fe09a" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/04_offline_action_rmse.png", + "sha256": "82fc536d9934f974a67954b4cdb0e0650b4592659027adb5072b6a07b393c7b2" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.pdf", + "sha256": "c04500cedf1fc766ca1897cac5333a78cc79905d95b9d9c85988e24cadf2d92f" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/05_term_deletion.png", + "sha256": "29aa4572d1dbd64c1482203fb7d738980485a59b802d3bb46cf69e6328d29846" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.pdf", + "sha256": "974fa0f6e6f7ab13f33ebcc0b17406f1a1962b65922526fb72520d75df6f7d3e" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/figures/06_example_timeseries_karman_re100.png", + "sha256": "4364cd75135cd72bada98c6fb786e291eead3980fd02f04720daac84cc45599c" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_dtw_convergence.csv", + "sha256": "2f49211f85c44c2b940d131b5178fb7aecbd109a4d1b9910f3a2b7983833e69a" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_long.csv", + "sha256": "e7d7023da3a64a9d27d4ec7237a6e96faaeeba268c75c317b4b64688818e5e59" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/ppo_wide.csv", + "sha256": "f9ecbf75e62ec55229c9623329f08898258f25f3dc47ecfabedd3984f888c764" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_long.csv", + "sha256": "f530a259a0ec6efa5666766070e29f3479f3f7c6854c2e1345b51f777e5a66d6" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_0.75L/target_wide.csv", + "sha256": "7e5e714023817974c460d8eaf517399a96113f27ad1fd524a74c211d0f17fd88" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_dtw_convergence.csv", + "sha256": "05b28809c65fb95a316ca90da3e603d7a3507cae1cbab861fe5b89bc20f26e79" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_long.csv", + "sha256": "a804a82de5ff9fbe5d11637a36fb6faa7df386c87e528a3ba16fcb8e6a3ae872" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/ppo_wide.csv", + "sha256": "68bd8553c94e4d2d2529b9f32503addc9c0a295368049d21312dbba892de824e" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_long.csv", + "sha256": "3618da795a8a462d548c04d570bbdb1572750a07abcf36ef6fff2cdf0a002eb3" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1.5L/target_wide.csv", + "sha256": "0c0f9eb5a1c8a333c10dc3fcf92ba09e098dfa1e53268d33b04ea849abc813c8" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_dtw_convergence.csv", + "sha256": "ca1675823570918a36ff18846ab087ec746b014f3b1c7ea2b5314194b3b243d5" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_long.csv", + "sha256": "55d8024bda6a36a0aaf4536f7a390d9bffb8b2d9daf91e8edcf5d8f555e17528" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/ppo_wide.csv", + "sha256": "1fc1258228acf0a90e089112405e70c274ea07077ca285068f45e69e2b13d203" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_long.csv", + "sha256": "999f5b16c15e6c8adf98d57659be875886adbd52d098d8aac2d5ea7d669bf51c" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/illusion_1L/target_wide.csv", + "sha256": "9ac8ada9234e9e638c877714514b2ef0ef499e40a13877b1291310edd15c1cd1" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_dtw_convergence.csv", + "sha256": "4769c68614a41488c2f8596b40d6fdbf06bf5106f24c5be410de8e8ea82a6800" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_long.csv", + "sha256": "be263dfa5945e6209aed92523b2cbf61f0e7d6cbb20b5357b1f27d2ecbd79529" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/ppo_wide.csv", + "sha256": "23f9bf3a364a8551f2d527ef8d21ce378bcf6abbf833b19b1d4b7314bc53a627" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_long.csv", + "sha256": "6894bdb4d74329574be653080a7010e6104c3798f843373924b79ce4bafb203a" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re100/target_wide.csv", + "sha256": "b871501e93384d4a9bfb5ed29172a171a26fd61415ece3029d65b13558c4125f" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_dtw_convergence.csv", + "sha256": "fcca94b8220a192644eb0103432dd8bcf700020be8115d34d18f05d4dc88faed" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_long.csv", + "sha256": "25383c90882f8b290aaf4643135803e3afd1e492f1658530823b4d3b3dad322d" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/ppo_wide.csv", + "sha256": "a26bd1ebbf67016d7395ce95470b1786e5d87cc46b267078d11b6151086ad118" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_long.csv", + "sha256": "98735c5d9c78e4563df95add8760d2d21b1762c58cf62607aa3cd549b6ff2579" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re200/target_wide.csv", + "sha256": "e474644557b46d7913e3325f6695c3333e35aa444e0e4844040b501105ec50d1" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_dtw_convergence.csv", + "sha256": "9e447f5e9f33415210bcc8115e28a9b22d926d68e163dc5dbc3f5392a8397c37" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_long.csv", + "sha256": "e68e339ca3d89fc881249e13d1c87a4d98de80a1b240af2932a97c46c800edf7" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/ppo_wide.csv", + "sha256": "a429eb0bbf9cfb1307186b00bc6938a0a45e2a3b21b34e92a619d6666665be05" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_long.csv", + "sha256": "e316642eb6d46f801b93bca790ee95f1f3d39ff272db710c4a97566b12227a45" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re400/target_wide.csv", + "sha256": "f917597ef7e2e5ec28fb0b15482f05192cb3eec11bbcdee749727ea2d13d74da" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_dtw_convergence.csv", + "sha256": "586d11b79a2a57e3d6e8c06da4336e8fee9993463a8be1899b6de70be307e525" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_long.csv", + "sha256": "0fec1360f42c713069c10bee8b10a48fc911f394b49ca7e1985cdd64e3862788" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/ppo_wide.csv", + "sha256": "696e8354ab0448afdd66a6a49532f39f3e2a5e65276cc619d7c3fb3a0b1b0097" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_long.csv", + "sha256": "eb77e289a5332cbc3415a04be1f6599bec56642681e21396e3a5af4428f32001" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/long_ppo/karman_re50/target_wide.csv", + "sha256": "e6e0615341adfa94a323b1332ef03274cec7ea3fd87dd704d4a80026507366bc" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/offline_predictions.csv", + "sha256": "1a0d65dc5cf11e7585f869ef320fe79417bc968637b3e75cc1038389046db1fb" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/scaling_summary.csv", + "sha256": "b155a35ed1cf0509a613fa28986cf20310dde58ef763c826440833455a09f34e" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_dtw_convergence.csv", + "sha256": "9f6005dfb191edcbf393e5b2f5da992364aa25bbe1b57d7e2295749e1b3668b4" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_long.csv", + "sha256": "a35741b51c2bb0052de95d8d69a2a5f87f63f7b7f64ad5ee771f0d8cc551ff14" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_wide.csv", + "sha256": "ed2b666f958b54dd8eda1c5fa045bc64782d5be8377954ce17d6fdd91531f1d2" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_long.csv", + "sha256": "686dc1021c77466bb67460bd480384bc18ed0e1f4c84261e8245bfb46e421062" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_wide.csv", + "sha256": "fe7b02dc0d9d4841be19b2f9f7787eed392e0780069b04f22ec0c5066093b4b9" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_dtw_convergence.csv", + "sha256": "b844d6f4e9b8057087471b8b1a069a6c2bbba29530c9b13c696dcd0cbdbc74de" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_long.csv", + "sha256": "e6ca7ac89d155e23454f7d5d979a813da4dacbcfbac5d1e65ef8d7b151295ce6" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_wide.csv", + "sha256": "25e1af504daeb6824435647c049168f234f89995052cc5b01b27f0c5a5eb86da" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_long.csv", + "sha256": "5408f78f02cef617c3832356b741013d1c876c4fe1eef413e3dc9340e1feed0c" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_wide.csv", + "sha256": "b4c1397297dd9f391d33341af5171c26900367ddf82e7ea0a765d154029f61f9" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_dtw_convergence.csv", + "sha256": "174fa9d160ede85b6f77970982c146381da781767461edbad8b60c9ca47b5825" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_long.csv", + "sha256": "9dadea796ab09a2931011d113fd9261e4ee8f87c7d9d90cc006a0c3d98db1dc4" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_wide.csv", + "sha256": "1ec33e173236e843563251d0773214cde9c2c7a3d69481cf6db16201524a2f01" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_long.csv", + "sha256": "7d1bd2d6e75eb8d42dbc1f0ae21cc4bf8fdca14114780414042fd1b4dce85468" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_wide.csv", + "sha256": "5a1d7e1da1c012e472165a02947b0a3abb73fb85778f7702858a7193c6299a8d" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_dtw_convergence.csv", + "sha256": "a00a244abfe1513062ffeb45eee5907648573b2f995e9bbe5d95ac538209efe6" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_long.csv", + "sha256": "23b0399b66f90b01caf0aadddc9d20e80f37f166442d25db9b7563286321fd92" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_wide.csv", + "sha256": "8791f0b37c9f2eeb99b5f54a3cd8178dc4bb182725e6dd81be32df763f7a0ff3" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_long.csv", + "sha256": "34436f99cd043850062565893c31458c1f1b4858b2031e7fed928cafbba8a8d7" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_wide.csv", + "sha256": "02cc2f8c8de82a583d5fca2bbdad8b98288b5647e9edc23145bd067cef7d7daf" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_dtw_convergence.csv", + "sha256": "d1e85efc22599e80cd2854b57f9130ef368bda2f373b7b28f047105d2d7106d1" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_long.csv", + "sha256": "c1e32871d4fdbf9398b270dc58db055b372234de42865e3969f88796a7238a21" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_wide.csv", + "sha256": "6da1d2a148df552f05fd77aaf6c91ad07cf6cc5b31ebc1c9b95db86ecb0dcd34" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_long.csv", + "sha256": "c9710b0fa850428205e8df389ad710b843b726904c92d2961090deaf1fb89c8a" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_wide.csv", + "sha256": "4585f08137b565f56c4db3c673e494c8ae9089b7f683498022a7c9c4f72243e4" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_dtw_convergence.csv", + "sha256": "e1d8b5b1377565d4b1203db05577c30cb741414a6ed640448fa182fb161bd896" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_long.csv", + "sha256": "21d0d26fd3ca7eb1591705593f2b4fb73e0c7c11a29a87e449b6941f3e81e656" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_wide.csv", + "sha256": "4af522b066cecc2f9b69ac94d5e76410e7c830db4ecddf1e07366a21b9dfbc89" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_long.csv", + "sha256": "74483430917e3b5e42ecc71d51334ce38c3cd53ef908d390ee9a4d18b95f312a" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_wide.csv", + "sha256": "c0e5e96f51bfcca6b8a39f4229beb2d5c958806f3099ab4f315cf642dc53ed7c" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_dtw_convergence.csv", + "sha256": "0255e92e88742d7610d93f4e1f7a885e9c897bf4a8d8db0fcea0726323d7437d" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_long.csv", + "sha256": "f63cbc354784920358d87a94b62a821b5b6b1800f8a1b4c76c0e3a3bc47e1205" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_wide.csv", + "sha256": "005321a7a3334e97160e15ef9923618468e5a50d2257c35b35a140fa1ffb4615" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_long.csv", + "sha256": "79369b750da6ced2c6646f8ec662621535e32ecbff1eca16ab8f51c12d3560e2" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_wide.csv", + "sha256": "297917ec804909bb5318b4255885544ca8ecfe22cc138ae3d56c31ef65c5e6fe" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_ppo_states.csv", + "sha256": "13716f661fdae79564cb2c9deb15461eca856adac31bdce32f262a0324eb8cd4" + }, + { + "path": "src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_sr_closed_loop_400.csv", + "sha256": "194bb3c6e597464cdb9d14a6dfcf3d65408a6ad20cf35ba4e7c02a168fa7b84a" + } + ] +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/offline_predictions.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/offline_predictions.csv new file mode 100644 index 0000000..67e210e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/offline_predictions.csv @@ -0,0 +1,1380 @@ +objective,scene,state_step,target_action_step,t_D,feature_Cd_F,feature_Cd_rear_a,feature_Cd_rear_s,feature_Cd_tot,feature_Cl_F,feature_Cl_rear_a,feature_Cl_rear_s,feature_Cl_tot,feature_target_Cd,feature_target_Cl,feature_u_a,feature_u_c,feature_u_s,feature_v_a,feature_v_c,feature_v_s,actual_alpha_front,actual_alpha_upper,actual_alpha_lower,predicted_alpha_front,predicted_alpha_upper,predicted_alpha_lower,residual_alpha_front,residual_alpha_upper,residual_alpha_lower +karman,karman_re50,2,3,0.8,1.7865439876914024,2.6694106636568904,-0.8552622748538852,0.07601943798363209,1.1939260875806212,3.5067799035459757,1.055816886946559,3.305559861473739,,,1.484137773513794,97.24262356758118,101.380056142807,0.8451566100120544,21.61182463169098,19.637785851955414,-2.762601375579834,-1.8706823587417603,2.7702250480651855,-1.0180903604330112,-2.050430585820486,4.811986775200746,-1.7445110151468228,0.17974822707872562,-2.041761727135561 +karman,karman_re50,3,4,1.2000000000000002,1.9157924689352512,2.563018351793289,-0.9352073539048433,0.045377761125564575,1.7359214834868908,3.5788733512163162,0.8085588924586773,3.3530392684042454,,,0.19484162330627441,97.5220263004303,102.01615691184998,-1.0025367140769958,24.500882625579834,22.279050946235657,-3.041179895401001,-2.2382540702819824,2.7787697315216064,-0.9775132440652624,-2.373790087592843,4.488627273428389,-2.0636666513357387,0.1355360173108604,-1.709857541906783 +karman,karman_re50,4,5,1.6,1.7382405931130052,2.3418941418640316,-0.8076683734543622,0.12290384620428085,2.2293294314295053,3.5938482033088803,0.7049705600365996,3.6392705515027046,,,-1.1541306972503662,96.94984555244446,102.52670645713806,-3.162503242492676,26.550808548927307,24.358990788459778,-3.1070656776428223,-2.589663028717041,3.1175732612609863,-0.8931783645908021,-2.5092610220344547,4.353156338986778,-2.21388731305202,-0.08040200668258635,-1.2355830777257912 +karman,karman_re50,5,6,2.0,1.3981356751173735,2.252477628644556,-0.6590316188521683,0.08007243741303682,2.4580261670053005,3.5890606231987476,0.7816669531166553,4.021360073238611,,,-2.562004327774048,95.53852677345276,102.84877419471741,-5.082760751247406,27.034705877304077,25.196407735347748,-3.0807912349700928,-2.853902578353882,3.543027877807617,-0.859075672407963,-2.4089588760695886,4.453458484951644,-2.22171556256213,-0.44494370228429325,-0.9104306071440265 +karman,karman_re50,6,7,2.4000000000000004,1.103803631849587,2.286753326188773,-0.6075015407986939,-0.11119944974780083,2.438979223370552,3.597213071770966,0.8518401300534606,4.142659483477473,,,-3.9616644382476807,93.67379546165466,103.02614569664001,-6.030391901731491,24.892127513885498,23.68372157216072,-3.0156149864196777,-3.0613229274749756,3.788994073867798,-0.8721481298391026,-2.3171876733666528,4.5452296876545795,-2.143466856580575,-0.7441352541083228,-0.7562356137867816 +karman,karman_re50,7,8,2.8000000000000003,0.9352514753118157,2.3631613003090024,-0.6339099491015077,-0.3325684228911996,2.242635004222393,3.614183864556253,0.8520042756572366,3.946643555536866,,,-5.273878574371338,91.91303849220276,102.98901796340942,-5.626913160085678,19.495098292827606,19.142969697713852,-2.860729455947876,-3.214153289794922,3.799384117126465,-0.9012894766431399,-2.3169730067356906,4.545444354285541,-1.9594399793047361,-0.8971802830592313,-0.7460602371590763 +karman,karman_re50,8,9,3.2,0.9288566652685404,2.457455964758992,-0.6747606676071882,-0.42066466994583607,1.8505214247852564,3.6307014524936676,0.837257131934166,3.5250356886535883,,,-6.314057111740112,90.94288349151611,102.66417860984802,-4.203706607222557,11.439239233732224,12.054425850510597,-2.563204050064087,-3.3150875568389893,3.632106065750122,-0.9372526539181143,-2.3362590527004903,4.526158308320742,-1.6259513961459726,-0.978828504138499,-0.8940522425706199 +karman,karman_re50,9,10,3.6,1.1582756415009499,2.5750439963303506,-0.7011746638454497,-0.2440736861899495,1.1892940383404493,3.6297807237133384,0.8377732010558248,2.864840440452099,,,-6.710204482078552,91.20951890945435,102.03149616718292,-2.270213793963194,2.6135291904211044,3.833589795976877,-2.1501333713531494,-3.3532824516296387,3.2918589115142822,-0.982099721877711,-2.3355841469025793,4.526833214118653,-1.1680336494754384,-1.0176983047270594,-1.2349743026043711 +karman,karman_re50,10,11,4.0,1.5476176049560308,2.743639750406146,-0.6873002275824547,0.17301714979112148,0.2989938366226852,3.625151817686856,0.8862371323630214,2.071468101348728,,,-6.184002757072449,92.48284101486206,101.22243463993073,-0.22725369781255722,-5.3309615701437,-4.120125062763691,-1.6558071374893188,-3.300353527069092,2.913698196411133,-1.0464006982585277,-2.272203900233981,4.590213460787251,-0.6094064392307912,-1.028149626835111,-1.6765152643761185 +karman,karman_re50,11,12,4.4,1.9318790873512626,2.936026663519442,-0.6315239006653428,0.668831286020577,-0.6985461222939193,3.6738819908350706,0.9594953153282404,1.2204445083625615,,,-4.951006174087524,94.06425356864929,100.67197680473328,1.207200437784195,-11.6830013692379,-10.523157566785812,-1.1603037118911743,-3.253272533416748,2.6882333755493164,-1.1197754188965978,-2.176398182835661,4.686019178185571,-0.0405282929945765,-1.076874350581087,-1.9977858026362547 +karman,karman_re50,12,13,4.800000000000001,2.078923862427473,3.132981131784618,-0.5276958690956235,1.023532124236226,-1.6208396991714835,3.8228825433179736,1.001153257675469,0.3814668161794543,,,-3.5438358783721924,95.39679884910583,100.6762444972992,1.4098405838012695,-16.574998199939728,-15.089327096939087,-0.7149907946586609,-3.361656665802002,2.797311544418335,-1.1948921659430383,-2.1219186845684312,4.740498676452801,0.4799013712843774,-1.2397379812335707,-1.943187132034466 +karman,karman_re50,13,14,5.2,1.9088637782260776,3.318000817671418,-0.40365708991885185,1.1015495983883739,-2.3744874633848667,4.026301437988877,1.0025396477431059,-0.36940816789865494,,,-2.244582772254944,96.26220464706421,101.1179655790329,0.38297176361083984,-20.288856327533722,-18.37920844554901,-0.33165717124938965,-3.6428604125976562,3.2095704078674316,-1.26545708922601,-2.120105588888909,4.742311772132323,0.9337999179766203,-1.5227548237087474,-1.5327413642648917 +karman,karman_re50,14,15,5.6000000000000005,1.4996373793110251,3.484221175312996,-0.2836978528648615,0.9322416735813022,-2.94288108125329,4.191892337985337,1.0042496724054217,-0.9343817364424467,,,-1.0403692722320557,96.4880883693695,101.73618197441101,-1.4855444431304932,-23.162467777729034,-21.013477444648743,-0.000474393367767334,-4.011297702789307,3.7780699729919434,-1.328852109754919,-2.1178692497809655,4.744548111240267,1.3283777163871517,-1.8934284530083412,-0.9664781382483234 +karman,karman_re50,15,16,6.0,0.9857673430815339,3.604183322750032,-0.1609135651960969,0.6639402126893401,-3.2984500285238028,4.24557738006115,1.0605882853269577,-1.1772734578698874,,,0.15508532524108887,95.82645893096924,102.29527354240417,-3.7812769412994385,-25.221723318099976,-23.088115453720093,0.2954278886318207,-4.351243495941162,4.391265392303467,-1.3746046451685516,-2.0441906379221835,4.818226723099048,1.6700325338003723,-2.3070528580189786,-0.4269613307955815 +karman,karman_re50,16,17,6.4,0.4281451110728085,3.6540438886731863,-0.006217509508132935,0.41571009205654263,-3.4570235293358564,4.149282467551529,1.1403508251532912,-1.176321879029274,,,1.3584375381469727,94.20997500419617,102.71484851837158,-6.001976132392883,-25.881993770599365,-24.035269021987915,0.5215449333190918,-4.581165790557861,4.955134391784668,-1.3936210378964347,-1.9398786410876179,4.922538719933614,1.9151659712155265,-2.6412871494702435,0.03259567185105361 +karman,karman_re50,17,18,6.800000000000001,-0.1293452805839479,3.583795274607837,0.1940779620781541,0.2588106435723603,-3.3964768517762423,3.8913192693144083,1.1876279022544622,-1.0212210472673178,,,2.5427937507629395,91.89395904541016,103.01815271377563,-7.415592670440674,-24.09611940383911,-22.763988375663757,0.6098252534866333,-4.595779895782471,5.35434627532959,-1.3668288182550645,-1.8780505407329608,4.984366820288272,1.9766540717416978,-2.71772935504951,0.36997945504131824 +karman,karman_re50,18,19,7.2,-0.5958564579486847,3.3589124213904142,0.3959371242672205,0.1960177905857563,-3.134439932182431,3.4796769032254815,1.1434279149398208,-0.8475841023027897,,,3.65733802318573,89.34431672096252,103.16733419895172,-7.446298003196716,-19.0634548664093,-18.531212210655212,0.4811815023422241,-4.318649768829346,5.443464279174805,-1.2810604244277601,-1.9358544791091878,4.926562881912044,1.7622419267699843,-2.382795289720158,0.5169013972627603 +karman,karman_re50,19,20,7.6000000000000005,-0.8497951203025877,3.006210899911821,0.5065408768132329,0.16328663332387805,-2.6705521158874035,2.942643652204424,1.0640620603226125,-0.5424279952421784,,,4.589900374412537,87.10460066795349,103.16864550113678,-6.167723052203655,-10.907122492790222,-11.804276891052723,0.10805061459541321,-3.728344440460205,5.143645286560059,-1.1465430854449685,-2.0396476982522618,4.8227696627689705,1.2545937000403817,-1.6886967422079433,0.32087562379108814 +karman,karman_re50,20,21,8.0,-0.7286870968528092,2.6337275048717856,0.43221970554441214,0.13575231423601508,-2.0615230314433575,2.460120595060289,1.030412851832807,-0.0006973277777433395,,,5.067187547683716,85.74624061584473,103.09353470802307,-4.0292077290359885,-0.7624209392815828,-3.9358466339763254,-0.5032846927642822,-2.956103563308716,4.44785213470459,-1.004481109341181,-2.0836535202473563,4.778763840773876,0.5011964165768987,-0.8724500430613595,-0.3309117060692861 +karman,karman_re50,21,22,8.4,-0.19036086450796574,2.3803371004760265,0.14504464343190193,0.09972842235583812,-1.393541693687439,2.2901446791365743,1.076876069419086,0.760210445150733,,,4.711341857910156,85.9549880027771,102.8861403465271,-1.4832140877842903,9.246481209993362,3.711351566016674,-1.2575291395187378,-2.227811574935913,3.5359129905700684,-0.9078401796956316,-2.0228897705430926,4.83952759047814,-0.3496889598231062,-0.20492180439282048,-1.3036145999080713 +karman,karman_re50,22,23,8.8,0.641950755380094,2.2835610434412956,-0.26350514963269234,0.11494045611470938,-0.703965371940285,2.553120139054954,1.1528691975399852,1.6017730231396854,,,3.220471739768982,88.23735117912292,102.30979025363922,1.1970363557338715,16.939450800418854,10.742294788360596,-1.9947985410690308,-1.7145365476608276,2.7123565673828125,-0.8709306205449235,-1.9235073416829365,4.938910019338296,-1.1238679205241073,0.20897079402210883,-2.2265534519554837 +karman,karman_re50,23,24,9.200000000000001,1.5363863203674555,2.2445314680226147,-0.6235730252228677,0.28924026992172003,0.025400902813998982,3.0397953232750297,1.1258093873038888,2.2770196774217766,,,0.7278680801391602,92.0240581035614,101.28504037857056,3.4433580935001373,21.49689644575119,17.035748809576035,-2.6227753162384033,-1.5216996669769287,2.1079492568969727,-0.8560450748150966,-1.958895668657446,4.903521692363786,-1.7667302414233066,0.4371960016805172,-2.7955724354668137 +karman,karman_re50,24,25,9.600000000000001,2.1495092660188675,2.12627713335678,-0.7867317763157189,0.5760457133874297,0.7973619503900409,3.406670759432018,0.9244737448170781,2.646309440024197,,,-1.9781529903411865,95.73675394058228,100.2724826335907,4.1167788207530975,23.84946644306183,21.831021457910538,-3.0664236545562744,-1.686583161354065,1.8197654485702515,-0.8109438845629472,-2.222198754886851,4.640218606134381,-2.255479769993327,0.535615593532786,-2.8204531575641294 +karman,karman_re50,25,26,10.0,2.2519154008477926,1.9328668713569641,-0.6760591641068459,0.8997970726341009,1.5520912129431963,3.5065511474385858,0.7048625266179442,2.9618162661790848,,,-4.066184163093567,97.99973368644714,99.76035058498383,2.5921404361724854,25.135698914527893,24.482589960098267,-3.2425343990325928,-2.090391159057617,2.0177135467529297,-0.737178867425762,-2.509402306171712,4.353015054849521,-2.5053555316068308,0.41901114711409493,-2.335301508096591 +karman,karman_re50,26,27,10.4,1.9403339829295874,1.8239892087876797,-0.4453705623745918,1.0495928581804037,2.1652481518685818,3.4473451087251306,0.6670275470241904,3.4993032459169626,,,-5.323457717895508,98.64270687103271,100.01220703125,-0.4538342356681824,25.587064027786255,25.30072182416916,-3.2071714401245117,-2.532773017883301,2.613896131515503,-0.6956538595888583,-2.5588822033792544,4.303535157641978,-2.5115175805356533,0.026109185495953646,-1.6896390261264749 +karman,karman_re50,27,28,10.8,1.5659966738894582,1.8880035495385528,-0.2963041188195348,0.9733884362503886,2.451758598908782,3.3728251000866294,0.7311614463105798,3.9140814915299416,,,-5.969694256782532,97.74261713027954,100.45630633831024,-3.7002645432949066,24.419334530830383,24.52923133969307,-3.111623764038086,-2.95120906829834,3.2271921634674072,-0.7200683807920728,-2.4750090579915054,4.387408303029726,-2.391555383246013,-0.47620001030683445,-1.1602161395623192 +karman,karman_re50,28,29,11.200000000000001,1.206768094561994,2.086402499116957,-0.30345760751515627,0.5998528795316815,2.433729125186801,3.354793298058212,0.8007950382307172,4.035319201648235,,,-6.248182058334351,95.89613080024719,100.68379044532776,-5.970670282840729,20.685017108917236,21.688754856586456,-2.9646382331848145,-3.2965188026428223,3.6846024990081787,-0.7957360406376734,-2.383943514745668,4.478473846275564,-2.168902192547141,-0.9125752878971545,-0.7938713472673857 +karman,karman_re50,29,30,11.600000000000001,0.9115191060118377,2.2983839153312147,-0.3837959957309067,0.14392711455002427,2.2313909139484167,3.3933513332158327,0.8394091855734587,3.910209285095334,,,-6.296071410179138,93.94468069076538,100.51746666431427,-6.700991466641426,14.055663347244263,16.109487041831017,-2.673065185546875,-3.542456865310669,3.980541944503784,-0.8765839369081639,-2.333444636147325,4.528972724873907,-1.796481248638711,-1.2090122291633438,-0.5484307803701229 +karman,karman_re50,30,31,12.0,0.7069794228300452,2.463643904775381,-0.47631352208554745,-0.24564762134104967,1.8926258198916912,3.4464094787836075,0.8530346676707268,3.5986951552331448,,,-5.999967455863953,92.3247754573822,99.55655634403229,-5.829688441008329,5.247223749756813,7.938805688172579,-2.177324056625366,-3.670064926147461,4.096987247467041,-0.9396126812332795,-2.315625478827432,4.5467918821938,-1.2377113753920868,-1.3544394473200287,-0.4498046347267586 +karman,karman_re50,31,32,12.4,0.640148064121604,2.5847898796200752,-0.550741096958518,-0.4613341297954321,1.3863247586414218,3.510429058223963,0.8357558399438858,3.0578364385291934,,,-5.132400989532471,92.10520386695862,98.65412712097168,-3.5308290272951126,-4.012619331479073,-1.4145076274871826,-1.5302634239196777,-3.663252353668213,3.951749324798584,-0.9858167182792992,-2.3382224150216855,4.524194945999547,-0.5444467056403786,-1.3250299386465274,-0.5724456212009628 +karman,karman_re50,32,33,12.8,0.768227328080684,2.56464711856097,-0.5669045494869351,-0.36558177089318633,0.683946069329977,3.616967354901135,0.7219378603622317,2.1278217900544405,,,-3.6711305379867554,92.6699697971344,97.79273569583893,-0.37200823426246643,-12.246781587600708,-10.230442136526108,-0.8150572180747986,-3.6077184677124023,3.563953161239624,-0.978134441758126,-2.4870714957015165,4.375345865319716,0.16307722368332744,-1.1206469720108858,-0.8113927040800917 +karman,karman_re50,33,34,13.200000000000001,0.8753256406635046,2.3753709392622113,-0.4809069214388728,-0.08648820221424103,-0.11166500189574435,3.851761808618903,0.5495368968695402,0.9874087918433361,,,-2.0917147397994995,93.83240342140198,97.78384864330292,2.3417197167873383,-18.89021545648575,-17.284048348665237,-0.1150195375084877,-3.682227611541748,3.234206199645996,-0.9059461283497756,-2.712534335742481,4.149883025278751,0.7909265908412879,-0.9696932757992669,-0.9156768256327545 +karman,karman_re50,34,35,13.600000000000001,0.8271711994893849,2.0423090318217874,-0.281635788269341,0.2638996229507029,-0.9371946798637509,4.179754760116339,0.37817656993865967,-0.1808415399864316,,,-0.8092820644378662,95.22607922554016,98.61114621162415,3.499457985162735,-23.89921545982361,-22.33579382300377,0.4883061647415161,-4.000672817230225,3.133852958679199,-0.7789191699244264,-2.9366362502414822,3.92578111077975,1.2672253346659426,-1.0640365669887424,-0.7919281521005508 +karman,karman_re50,35,36,14.0,0.5991653888486326,1.6613591578789055,-0.05044316640123725,0.4982790560461581,-1.6789189539849758,4.446712322533131,0.3018854185938835,-1.0751481167972088,,,0.2897709608078003,96.5839684009552,99.83924925327301,3.0308015644550323,-27.666756510734558,-25.956516712903976,0.9922434091567993,-4.428077697753906,3.2651524543762207,-0.6336281512925815,-3.0364084284457964,3.826008932575436,1.6258715604493807,-1.3916692693081099,-0.5608564781992151 +karman,karman_re50,36,37,14.4,0.30520057771354914,1.309761661104858,0.08885911665856838,0.4829188110306859,-2.197990659624338,4.509255522862077,0.3548844251781702,-1.4882218092679977,,,1.583293080329895,97.47545123100281,100.9467214345932,1.2539789080619812,-30.650413036346436,-28.582076728343964,1.436911940574646,-4.7703328132629395,3.582191228866577,-0.49953187787481557,-2.9670972929291457,3.8953200680920865,1.9364438184494617,-1.8032355203337938,-0.3131288392255094 +karman,karman_re50,37,38,14.8,0.0631149232503958,0.9963263000827283,0.10157693759538233,0.26626879844116047,-2.3797214962542057,4.336601588875055,0.4697907716035843,-1.4401399530470371,,,3.2870590686798096,97.47869372367859,101.60107016563416,-1.635754108428955,-32.61083662509918,-29.95751202106476,1.820047378540039,-4.981116771697998,4.045426368713379,-0.37999031612862827,-2.8168248659139508,4.0455924951072815,2.2000376946686675,-2.1642919057840473,-0.0001661263939025659 +karman,karman_re50,38,39,15.200000000000001,-0.12167487875558436,0.6762841949239373,0.054997915867716074,-0.011679047020152211,-2.256595529615879,3.989481250755489,0.5149856442585588,-1.2266242410987616,,,5.343538522720337,96.50027751922607,101.81731581687927,-5.060698091983795,-32.5087696313858,-29.367487132549286,2.0739176273345947,-5.101588726043701,4.53330135345459,-0.25792899876336073,-2.757719834609922,4.104697526411311,2.3318466260979553,-2.3438688914337793,0.42860382704327904 +karman,karman_re50,39,40,15.600000000000001,-0.3051740350201726,0.2867271687136963,0.03193282464053482,-0.24130838573910296,-1.9283569417893887,3.512681112624705,0.4016751190647483,-1.125006703659892,,,7.329928874969482,94.38828825950623,101.45217180252075,-7.721034437417984,-28.851374983787537,-25.90710148215294,2.0992400646209717,-5.073170185089111,4.833499908447266,-0.10935528598726865,-2.9059052756838213,3.956512085337411,2.2085953506082405,-2.16726490940529,0.8769878231098547 +karman,karman_re50,40,41,16.0,-0.4708129563368857,-0.18701387307373807,0.04772013198817149,-0.3753726923605427,-1.4776604948565364,2.96632363460958,0.1768358051776886,-1.1239888845011592,,,8.697611093521118,91.99584722518921,101.27736926078796,-8.481582254171371,-20.936255156993866,-19.53911855816841,1.842176914215088,-4.760219573974609,4.77919340133667,0.07132548919347834,-3.1999460352877396,3.6624713257334927,1.7708514250216096,-1.5602735386868698,1.1167220756031773 +karman,karman_re50,41,42,16.400000000000002,-0.5855771596543491,-0.665207247948274,0.02487297751940787,-0.5358312046155334,-1.0039812186732888,2.453696448355913,-0.012664124369621277,-1.0293094674125314,,,9.064915776252747,89.78020548820496,101.32918059825897,-7.29218814522028,-9.188484400510788,-11.143079958856106,1.2774478197097778,-4.127651691436768,4.361649513244629,0.25370434607410336,-3.4477705917039247,3.4146467693173075,1.0237434736356745,-0.6798810997328428,0.9470027439273214 +karman,karman_re50,42,43,16.8,-0.525275943800807,-0.9530909883324057,-0.06727021536789834,-0.6598163745366037,-0.5923396092839539,2.235939376987517,0.03240222577005625,-0.5275351577438414,,,8.273932337760925,88.62495422363281,101.35815441608429,-4.773448593914509,4.487490281462669,-1.8943248316645622,0.47235530614852905,-3.2766427993774414,3.818880558013916,0.36350073858906046,-3.388833639804564,3.4735837212166683,0.1088545675594686,0.11219084042712257,0.34529683679724776 +karman,karman_re50,43,44,17.2,-0.3137641469947994,-0.8627613424323499,-0.17117924289777875,-0.6561226327903569,-0.25119580095633864,2.5149626890197396,0.3702983958646655,0.4894009907729924,,,6.006711721420288,89.75748419761658,100.73668360710144,-1.0390140116214752,16.558699309825897,7.437853515148163,-0.4022679924964905,-2.366665840148926,3.4479081630706787,0.3290497854239185,-2.946939182806793,3.9154781782144394,-0.731317777920409,0.580273342657867,-0.46757001514376073 +karman,karman_re50,44,45,17.6,-0.018814376744558103,-0.37800634163431823,-0.1411846897099167,-0.3011837561643915,0.15227148833218962,3.147607669234276,0.8241422474384308,1.8005559832090512,,,2.196168899536133,93.4511125087738,99.18957948684692,3.675461560487747,24.12247806787491,16.27761796116829,-1.1916362047195435,-1.596024513244629,3.3228416442871094,0.14416838062422327,-2.3534104597768377,4.509006901244394,-1.3358045853437668,0.7573859465322088,-1.1861652569572847 +karman,karman_re50,45,46,18.0,0.3994758299086243,0.29374653240665793,-0.05033373599871993,0.29880835791118443,0.7080648792907596,3.7289505125954747,1.0322093730792403,2.77248362544924,,,-1.9617468118667603,98.25872778892517,97.63634502887726,7.244198769330978,27.37264335155487,22.984502464532852,-1.8835701942443848,-1.2677888870239258,3.211315155029297,-0.11203241117054329,-2.081304062482104,4.781113298539128,-1.7715377830738415,0.8135151754581784,-1.5697981435098312 +karman,karman_re50,46,47,18.400000000000002,0.990863423794508,0.8277904707938433,-0.1550221350044012,0.6808191537857056,1.3346661580726504,4.0633376920595765,0.8048176532611251,2.9443014645949006,,,-4.952803254127502,102.63854265213013,97.38032519817352,7.4571289122104645,28.121531009674072,26.12275406718254,-2.484020709991455,-1.548253059387207,2.9611728191375732,-0.315712194548212,-2.378682812074562,4.4837345489466705,-2.1683085154432433,0.8304297526873547,-1.5225617298090972 +karman,karman_re50,47,48,18.8,1.5442365547642112,1.0630105098243803,-0.3769032482523471,0.790430058259517,1.7809595447033644,4.1513650212436914,0.31924271024763584,2.419444965198636,,,-6.4484477043151855,105.2247166633606,98.1303334236145,4.486483335494995,27.516865730285645,26.082617044448853,-2.9106831550598145,-2.2798843383789062,2.7480268478393555,-0.405423102494314,-3.0137088785570265,3.8487084824642057,-2.5052600525655,0.7338245401781203,-1.1006816346248502 +karman,karman_re50,48,49,19.200000000000003,1.7071636393666267,1.1062273697461933,-0.4070537688676268,0.8930561016313732,2.063607331365347,4.06638253480196,0.006328802555799484,2.076264936476946,,,-7.036179304122925,106.04346990585327,99.53040480613708,0.07263422012329102,25.98746418952942,24.501150846481323,-3.035226583480835,-3.0551018714904785,2.940758228302002,-0.4219056426645502,-3.4229319877974134,3.439485373223819,-2.6133209408162847,0.36783011630693485,-0.4987271449218169 +karman,karman_re50,49,50,19.6,1.4410059666261077,1.1917059891857207,-0.27868320466950536,0.883639557287097,2.1566858049482107,3.895642003044486,0.07296842522919178,2.3026226554065943,,,-7.164525985717773,105.06160259246826,100.77483654022217,-4.041530191898346,23.25911372900009,22.395502030849457,-2.914299726486206,-3.5808281898498535,3.4791018962860107,-0.45450645589247335,-3.335781903001987,3.5266354580192454,-2.4597932705937327,-0.24504628684786667,-0.04753356173323464 +karman,karman_re50,50,51,20.0,1.0048046242445707,1.4267638325691223,-0.1890389248728752,0.6267267744988203,2.0230021327733994,3.748862072825432,0.31028082594275475,2.643563784658909,,,-7.024675607681274,102.9608964920044,101.48003697395325,-6.800252944231033,18.87241154909134,19.445010274648666,-2.6937026977539062,-3.878629207611084,4.015596389770508,-0.544155503808157,-3.025429067624199,3.836988293397033,-2.1495471939457493,-0.8532001399868849,0.17860809637347463 +karman,karman_re50,51,52,20.400000000000002,0.5860824603587389,1.7208227654919028,-0.19242078997194767,0.20124088041484356,1.80378882214427,3.6234251456335187,0.4733795067295432,2.7505478356033564,,,-6.648799777030945,100.68881511688232,101.42869055271149,-7.883359119296074,12.69465982913971,14.507100358605385,-2.3889949321746826,-4.054755687713623,4.344883918762207,-0.6563070618594665,-2.812131583479437,4.050285777541795,-1.7326878703152162,-1.242624104234186,0.29459814122041195 +karman,karman_re50,52,53,20.8,0.28464270872063935,1.9504887168295681,-0.24270167341455817,-0.200760638108477,1.5644264640286565,3.5169244511052966,0.48538821283727884,2.535202889703214,,,-5.9220850467681885,99.01986122131348,100.66420435905457,-7.2939828503876925,5.193711444735527,7.165403617545962,-1.9426662921905518,-4.153276443481445,4.416290760040283,-0.7438996883368918,-2.796426816351601,4.065990544669631,-1.19876660385366,-1.3568496271298445,0.3503002153706518 +karman,karman_re50,53,54,21.200000000000003,0.13191283505875617,2.060436236206442,-0.28860586462542415,-0.4452988941920921,1.2239370262250304,3.462758264504373,0.39893051143735647,2.0217980490997434,,,-4.682332277297974,98.11860918998718,99.603670835495,-5.143790692090988,-2.898801863193512,-1.5487290918827057,-1.340590000152588,-4.157736778259277,4.21762228012085,-0.7858327303956107,-2.9094946235501755,3.9529227374710567,-0.5547572697569771,-1.2482421547091018,0.2646995426497929 +karman,karman_re50,54,55,21.6,0.1467683759983629,2.005931397434324,-0.2705911756493151,-0.39441397530026734,0.6936827558092773,3.4934496507048607,0.24338788352906704,1.1804585228674114,,,-3.1191200017929077,97.79287576675415,98.99720251560211,-2.0543698221445084,-10.83928644657135,-9.856154397130013,-0.6629393100738525,-4.13483190536499,3.7800421714782715,-0.7650450517868684,-3.1129104393621594,3.749506921659073,0.1021057417130159,-1.0219214660028308,0.03053524981919864 +karman,karman_re50,55,56,22.0,0.26965283905155957,1.756418845616281,-0.18642551731318235,-0.10319819557480514,0.01734850047796499,3.609078237786889,0.06316835060715675,0.1436852016922785,,,-1.7440348863601685,97.65554666519165,99.00293052196503,0.6874494254589081,-17.608559131622314,-16.399752348661423,-0.02973291277885437,-4.19675874710083,3.2968690395355225,-0.6698831018960282,-3.3485982620996033,3.513819098921629,0.6401501891171738,-0.8481604850012268,-0.21695005938610645 +karman,karman_re50,56,57,22.400000000000002,0.3434555255807936,1.3899558689445257,-0.04146608989685774,0.26052334578707814,-0.7401531329378486,3.7981605855748057,-0.052810064516961575,-0.8457732619717717,,,-0.7266610860824585,98.25108051300049,99.93647634983063,2.1288909018039703,-22.648033499717712,-21.18956819176674,0.5259180068969727,-4.373363018035889,3.028409719467163,-0.5301172617858395,-3.500272721032904,3.3621446399883284,1.056035268682812,-0.8730902970029848,-0.33373492052116527 +karman,karman_re50,57,58,22.8,0.32942023244686425,1.0323441529180855,0.06571135600097477,0.4608429444488138,-1.4361031353473663,3.969150595366955,-0.01952890306711197,-1.4751609414815903,,,0.2453327178955078,99.1371750831604,101.12738609313965,2.0508266985416412,-26.290780305862427,-24.731966108083725,1.0195505619049072,-4.563307762145996,3.064202308654785,-0.3937272166641711,-3.4567482242532614,3.405669136767971,1.4132777785690784,-1.1065595378927346,-0.3414668281131856 +karman,karman_re50,58,59,23.200000000000003,0.28129611746408045,0.7731126970611513,0.04517624620348215,0.37164860987104475,-1.9224535208195448,4.038268583826721,0.1348253572359681,-1.6528028063476086,,,1.4693915843963623,99.69019293785095,102.14483141899109,0.4866689443588257,-29.153814911842346,-27.229207754135132,1.4413633346557617,-4.716862201690674,3.3586673736572266,-0.294858560026901,-3.254886533951107,3.6075308270701254,1.7362218946826626,-1.461975667739567,-0.24886345341289884 +karman,karman_re50,59,60,23.6,0.20368063997011632,0.6016737897880375,-0.06258196663111448,0.07851670670788735,-2.116541611030698,3.9839594392105937,0.3094031708315015,-1.4977352693676949,,,3.071877360343933,99.40125942230225,102.73914635181427,-2.319285273551941,-31.187161803245544,-28.588199615478516,1.7727285623550415,-4.87777853012085,3.8275249004364014,-0.22947322937162484,-3.0265768489935763,3.835840512027656,2.0022017917266663,-1.8512016811272733,-0.008315611591254601 +karman,karman_re50,60,61,24.0,0.08016482024686411,0.4496848414419219,-0.15106705541256815,-0.2219692905782722,-2.070849761366844,3.800595412030816,0.41545857675373554,-1.239932607859373,,,4.9873024225234985,98.0120301246643,102.79256999492645,-5.6477561593055725,-31.522265076637268,-28.456293046474457,1.991894006729126,-5.033751010894775,4.346889972686768,-0.1715059464390126,-2.8878795207623575,3.9745378402588747,2.1633999531681387,-2.145871490132418,0.3723521324278929 +karman,karman_re50,61,62,24.400000000000002,-0.10157797805732116,0.2696851770451758,-0.15796898151165806,-0.4175159410806373,-1.8650130368769169,3.496291348710656,0.40247850120067596,-1.060056034475565,,,6.884661316871643,95.68917155265808,102.45849788188934,-8.25556293129921,-28.85686159133911,-26.088031381368637,2.0335581302642822,-5.062437057495117,4.737066745758057,-0.10285561634987692,-2.9048546271588087,3.9575627338624235,2.136413746614159,-2.1575824303363085,0.7795040118956331 +karman,karman_re50,62,63,24.8,-0.32903411192819476,0.02996239891217556,-0.08294682083942462,-0.494927753607044,-1.5551792457699776,3.109509125351906,0.2713517751544714,-1.0124756954610348,,,8.305710554122925,92.98486113548279,102.01197266578674,-9.003885835409164,-22.196760773658752,-20.790833979845047,1.8197851181030273,-4.823153018951416,4.836263656616211,-0.011427402281425563,-3.076339771213146,3.786077589808086,1.831212520384453,-1.7468132477382698,1.0501860668081249 +karman,karman_re50,63,64,25.200000000000003,-0.5478734965436161,-0.2573408273747191,0.009284020052291453,-0.5293054564390332,-1.1948106111958623,2.7028347831219435,0.11790520511567593,-0.9590002009645104,,,8.93007516860962,90.58685898780823,101.60259008407593,-7.738824561238289,-11.603087186813354,-12.75280974805355,1.3163297176361084,-4.252592086791992,4.612208366394043,0.09814758712964085,-3.2770144007198323,3.5854029603014,1.2181821305064675,-0.9755776860721599,1.026805406092643 +karman,karman_re50,64,65,25.6,-0.6337734521366656,-0.45448733726516366,0.028323032893240452,-0.5771273863501847,-0.8381748921237886,2.458902890793979,0.1269719796255231,-0.5842309328727424,,,8.534035086631775,89.4034206867218,101.18255913257599,-4.893673863261938,1.4178426004946232,-2.979908976703882,0.5481809377670288,-3.3859429359436035,4.176041126251221,0.17333757720689308,-3.265157038153017,3.597260322868215,0.37484336056013573,-0.12078589779058646,0.5787808033830055 +karman,karman_re50,65,66,26.0,-0.5146171897649765,-0.3647205885499716,-0.007859780453145504,-0.5303367506712675,-0.5114955711178482,2.583803376182914,0.38597150705754757,0.260447442997247,,,6.749272346496582,90.44718742370605,100.39712190628052,-0.45442916452884674,13.764111697673798,7.587241008877754,-0.3789770305156708,-2.3572583198547363,3.681213855743408,0.13910130820617247,-2.926442173450028,3.9359751875712043,-0.5180783387218433,0.5691838535952916,-0.25476133182779614 +karman,karman_re50,66,67,26.400000000000002,-0.19410015374887735,0.09214404417434707,-0.018786995497066528,-0.2316741447430104,-0.14940844266675413,3.054562024772167,0.7818569429218769,1.4143054431769997,,,3.6329925060272217,93.73432993888855,99.18712973594666,5.077071487903595,22.378015518188477,17.760562896728516,-1.2807385921478271,-1.4111969470977783,3.2535698413848877,-0.03514294912447169,-2.408710410862688,4.453706950158544,-1.2455956430233555,0.9975134637649097,-1.2001371087736565 +karman,karman_re50,67,68,26.8,0.40006302879191935,0.7679842528887093,-0.04396855365484953,0.3121259214822203,0.33193736453540623,3.6187763325870037,1.0102130472660065,2.352363459067419,,,0.589752197265625,97.90287017822266,98.64681959152222,8.806988596916199,26.867130398750305,24.98490810394287,-2.007840871810913,-0.9559874534606934,2.963836908340454,-0.2929026153507719,-2.110070456751869,4.752346904269363,-1.7149382564601412,1.1540830032911757,-1.7885099959289086 +karman,karman_re50,68,69,27.200000000000003,1.2814007932320237,1.322921074461192,-0.24297850904986262,0.7954437751322985,0.9269920992664993,3.9997727144509554,0.8140152785927057,2.5550226564519107,,,-1.2523531913757324,101.71599388122559,99.65144395828247,8.710123598575592,28.82716655731201,28.08133214712143,-2.607090950012207,-1.1675851345062256,2.628624439239502,-0.5045507654028527,-2.3666543251863272,4.495763035834905,-2.1025401846093543,1.1990691906801016,-1.867138596595403 +karman,karman_re50,69,70,27.6,2.082124352455139,1.5186801319941878,-0.49965421203523874,1.0828159283846617,1.4581999275833368,4.077667603269219,0.28112507425248623,2.0204500760883093,,,-2.2830218076705933,104.19578552246094,101.30167305469513,5.779549479484558,29.698827862739563,28.447899222373962,-3.0889370441436768,-1.846040964126587,2.2535362243652344,-0.5792115930361581,-3.063558428658169,3.7988589323630633,-2.509725451107519,1.217517464531582,-1.545322707997829 +karman,karman_re50,70,71,28.0,2.292376011610031,1.4452075702138245,-0.44618576066568494,1.4000044902786613,1.891218707896769,3.9302725344896317,-0.08737761527299881,1.7164634773507714,,,-3.3176809549331665,105.09353876113892,102.62797772884369,1.6225695610046387,29.921874403953552,27.600762248039246,-3.260042905807495,-2.58608341217041,2.369270086288452,-0.5511897873532385,-3.5454795343176033,3.316937826703629,-2.7088531184542566,0.9593961221471932,-0.9476677404151768 +karman,karman_re50,71,72,28.400000000000002,1.9917322788387537,1.412469195201993,-0.2345801331102848,1.522572012618184,2.183058066293597,3.7147870752960443,0.004757894203066826,2.192573854699731,,,-4.694622755050659,104.68528270721436,103.36683392524719,-2.73909792304039,29.022321105003357,26.01865604519844,-3.1907403469085693,-3.1371705532073975,2.940192222595215,-0.53870365156695,-3.424986393129471,3.4374309678917614,-2.6520366953416192,0.2878158399220734,-0.49723874529654655 +karman,karman_re50,72,73,28.8,1.502352301031351,1.6066136886365712,-0.13000803301110864,1.2423362350091338,2.1752917673438787,3.5681186709553003,0.2869965974241495,2.7492849621921778,,,-6.200966238975525,103.18690538406372,103.39448750019073,-6.349495053291321,25.93541443347931,23.210057616233826,-3.060047149658203,-3.5647621154785156,3.5582151412963867,-0.6127486982837858,-3.0558797575949086,3.8065376034263236,-2.4472984513744174,-0.508882357883607,-0.24832246212993692 +karman,karman_re50,73,74,29.200000000000003,1.07489968650043,1.9626247812993824,-0.19633647752925754,0.682226731441915,1.984229777008295,3.4484820207580924,0.5179146537557244,3.020059084519744,,,-7.380583882331848,101.21703147888184,102.9080480337143,-8.274920284748077,19.919931888580322,18.257229030132294,-2.8952651023864746,-3.8684234619140625,3.8978183269500732,-0.748528279365814,-2.7538893293368703,4.108528031684362,-2.1467368230206607,-1.1145341325771922,-0.21070970473428918 +karman,karman_re50,74,75,29.6,0.7242009160108864,2.2855917923152447,-0.24253386072814465,0.23913319455459714,1.6840300522744656,3.4088401589542627,0.6351724732667208,2.954374998807907,,,-7.812529802322388,99.47962760925293,102.08030343055725,-8.086066041141748,11.444451659917831,10.865107085555792,-2.5185394287109375,-4.028477668762207,4.104448318481445,-0.8717051307696618,-2.600541688648767,4.261875672372465,-1.6468342979412758,-1.42793598011344,-0.1574273538910198 +karman,karman_re50,75,76,30.0,0.5316800088621676,2.6049140142276883,-0.32668549101799726,-0.12169097317382693,1.3049024855718017,3.3294805325567722,0.7402142509818077,2.785330987535417,,,-7.347109913825989,98.2394814491272,101.09923779964447,-6.082393601536751,1.4405892230570316,1.6108695417642593,-1.972583293914795,-3.972386360168457,4.007783889770508,-0.993491890831431,-2.4631699649251972,4.399247396096035,-0.979091403083364,-1.5092163952432598,-0.3914635063255272 +karman,karman_re50,76,77,30.400000000000002,0.5386348348110914,2.834402839653194,-0.39723736699670553,-0.25583989918231964,0.7737802807241678,3.280220669694245,0.7615935755893588,2.2969674319028854,,,-6.188371777534485,97.51131534576416,100.38832128047943,-3.0164452269673347,-8.528021723031998,-7.613185606896877,-1.337743878364563,-3.828561305999756,3.643929958343506,-1.0810169630032533,-2.4352104735945095,4.427206887426722,-0.25672691536130965,-1.3933508324052464,-0.7832769290832164 +karman,karman_re50,77,78,30.8,0.6976534496061504,2.8764402959495783,-0.43456489220261574,-0.1714763347990811,0.14578003901988268,3.378849127329886,0.6812888896092772,1.5083578182384372,,,-4.8530131578445435,97.40903973579407,100.39866864681244,-0.05557537078857422,-16.90969467163086,-15.116697549819946,-0.7192845344543457,-3.7636802196502686,3.2228944301605225,-1.0970496887337495,-2.5402314792946,4.322185881726632,0.3777651542794038,-1.2234487403556686,-1.0992914515661099 +karman,karman_re50,78,79,31.200000000000003,0.8237407309934497,2.722810488194227,-0.3473428077995777,0.12905511539429426,-0.566985399927944,3.6897307727485895,0.5694518331438303,0.5719182663597167,,,-3.5782456398010254,98.07712435722351,101.09637975692749,1.832272857427597,-22.698578238487244,-20.467611402273178,-0.133131206035614,-3.8822617530822754,3.0617005825042725,-1.0384565960783725,-2.6864899448024815,4.175927416218751,0.9053253900427585,-1.195771808279794,-1.1142268337144783 +karman,karman_re50,79,80,31.6,0.7835766882635653,2.4896219838410616,-0.15834183432161808,0.46689301962032914,-1.3152612373232841,4.06712363474071,0.5359190981835127,-0.24342304095625877,,,-2.250385284423828,99.16869401931763,102.05005407333374,2.1899938583374023,-26.388895511627197,-24.190741777420044,0.40849313139915466,-4.141012191772461,3.2273006439208984,-0.9495204980557027,-2.730343444837095,4.1320739161841376,1.3580136294548573,-1.4106687469353658,-0.9047732722632391 +karman,karman_re50,80,81,32.0,0.5695692962035537,2.2793366806581616,0.02049549948424101,0.6105602951720357,-1.96339120157063,4.328098380938172,0.5975898820906878,-0.7682114373892546,,,-0.7424533367156982,100.02247095108032,102.91398167610168,0.9236335754394531,-29.050830006599426,-26.680919528007507,0.8725225329399109,-4.464076519012451,3.636108875274658,-0.8693194847661412,-2.649691516880476,4.212725844140756,1.741842017706052,-1.8143850021319752,-0.576616968866098 +karman,karman_re50,81,82,32.4,0.2579129359219223,2.0956593798473477,0.13252871576696634,0.522970367455855,-2.361300168558955,4.378814250230789,0.684625469148159,-0.9920492302626371,,,1.0686278343200684,100.09386539459229,103.44626903533936,-1.7143890261650085,-31.1152845621109,-28.136546909809113,1.2538537979125977,-4.803295612335205,4.183404445648193,-0.7992665356520217,-2.5358679613442447,4.3265493996769875,2.0531203335646193,-2.2674276509909603,-0.14314495402879412 +karman,karman_re50,82,83,32.800000000000004,-0.06878290878375992,1.870372798293829,0.1903497613966465,0.3119166140095331,-2.450611675158143,4.182704957202077,0.7329171057790518,-0.9847774636000395,,,3.1901895999908447,99.04701709747314,103.49178910255432,-5.13114258646965,-31.988316774368286,-28.441495448350906,1.5547724962234497,-5.084771633148193,4.753469944000244,-0.713344163295745,-2.472713038515238,4.389704322505994,2.268116659519195,-2.6120585946329555,0.36376562149424974 +karman,karman_re50,83,84,33.2,-0.416339113144204,1.554054266307503,0.2595671103335917,0.10279510752297938,-2.2947215475142,3.7449473747983575,0.681403442285955,-0.9319146629422903,,,5.349528789520264,96.88689708709717,103.14370393753052,-8.275339007377625,-30.397549271583557,-26.983514428138733,1.721865177154541,-5.21386194229126,5.190330505371094,-0.5927029848416109,-2.540081669390439,4.322335691630793,2.314568161996152,-2.673780272900821,0.8679948137403004 +karman,karman_re50,84,85,33.6,-0.7349292864091694,1.1197431886103004,0.35586630110628903,-0.023196684196591377,-1.9687742460519075,3.1179344514384866,0.5034779896959662,-0.961818266659975,,,7.1033865213394165,93.99756789207458,102.65026986598969,-9.933733940124512,-25.030207633972168,-22.852149605751038,1.6564643383026123,-5.062185287475586,5.302981376647949,-0.4270604602002139,-2.772769335652893,4.089648025368339,2.0835247985028262,-2.289415951822693,1.2133333512796103 +karman,karman_re50,85,86,34.0,-0.9915600530803204,0.5881548786419444,0.41802810301305726,-0.15550384705420583,-1.5553559642285109,2.422971650958061,0.2667021472007036,-1.0219516698271036,,,8.084291219711304,91.02182984352112,102.18208432197571,-9.574160352349281,-15.414281189441681,-15.81755243241787,1.2802832126617432,-4.567865371704102,5.002811908721924,-0.2243172324661008,-3.082420469965359,3.779996891055873,1.5046004451278439,-1.4854449017387426,1.2228150176660506 +karman,karman_re50,86,87,34.4,-1.0637581581249833,0.10660971747711301,0.3599786723498255,-0.3438008134253323,-1.1391908628866076,1.8921081209555268,0.16350357327610254,-0.8121837163344026,,,8.046147227287292,88.83291482925415,101.72241032123566,-7.478640205226839,-2.4356745183467865,-6.706076138652861,0.5767936706542969,-3.7600111961364746,4.371478080749512,-0.04066003300640381,-3.217381685342815,3.6450356756784172,0.6174537036607007,-0.5426295107936596,0.7264424050710945 +karman,karman_re50,87,88,34.800000000000004,-0.8838648209348321,-0.07379054295597598,0.17938068049261346,-0.5251034599496052,-0.7952051819302142,1.845548627898097,0.36285282112658024,-0.06949953967705369,,,6.539115309715271,88.71710896492004,100.90846121311188,-3.620720439357683,11.15994080901146,3.515778697328642,-0.3623262047767639,-2.7397356033325195,3.6479551792144775,0.02814308097941027,-2.9566763698397245,3.9057409911815077,-0.3904692857561742,0.21694076650720495,-0.2577858119670302 +karman,karman_re50,88,89,35.2,-0.45251913252286613,0.23021999368211254,-0.009327057341579348,-0.4711732472060248,-0.49664475955069065,2.3784146760590374,0.8348156115971506,1.1729864636436105,,,3.1877905130386353,91.42561554908752,99.28325116634369,2.2778090089559555,21.63701504468918,14.313918724656105,-1.3532413244247437,-1.6582310199737549,3.0375614166259766,-0.08780393348156411,-2.3394520285287523,4.52296533249248,-1.2654373909431795,0.6812210085549975,-1.4854039158665033 +karman,karman_re50,89,90,35.6,0.23578434775117785,0.9220236097462475,-0.12259470531716943,-0.009405062883161008,-0.08085562876658514,3.1699244282208383,1.2706858688034117,2.4605161088402383,,,-0.8776634931564331,95.90784311294556,97.66672551631927,8.001256734132767,27.593523263931274,23.706652969121933,-2.2017405033111572,-0.9039983153343201,2.6155567169189453,-0.3516519065254466,-1.7694288448516184,5.092988516169614,-1.8500885967857106,0.8654305295172984,-2.4774317992506685 +karman,karman_re50,90,91,36.0,1.2570498511195183,1.613321655895561,-0.31433318508788943,0.6283834809437394,0.5401296075433493,3.748662187717855,1.2496254639700055,3.0393805354833603,,,-3.760802745819092,100.4523515701294,97.55557775497437,10.032433271408081,30.35445809364319,28.9620041847229,-2.8953299522399902,-0.8548507690429688,2.1731810569763184,-0.6153070595346254,-1.7969712587103062,5.065446102310926,-2.280022892705365,0.9421204896673374,-2.8922650453346073 +karman,karman_re50,91,92,36.4,2.3224903270602226,1.915662083774805,-0.587675254791975,1.1471398174762726,1.2038773857057095,3.8794984575361013,0.7142892573028803,2.63245590031147,,,-5.225685238838196,103.9923906326294,98.88671338558197,8.045773953199387,31.527146697044373,30.218762904405594,-3.467991352081299,-1.4456610679626465,1.612628698348999,-0.7306171088214497,-2.497074199475156,4.365343161546076,-2.737374243259849,1.0514131315125095,-2.7527144631970772 +karman,karman_re50,92,93,36.800000000000004,2.75037856772542,1.8495138501748443,-0.5131879588589072,1.7240026500076056,1.8169381655752659,3.6792440805584192,0.2422903198748827,2.3015188053250313,,,-6.235957145690918,106.0714602470398,100.51255226135254,3.7810251116752625,31.61907196044922,29.17015701532364,-3.681290864944458,-2.234679698944092,1.6022257804870605,-0.7053887391649302,-3.114345813118691,3.748071547902541,-2.9759021257795277,0.8796661141745994,-2.1458457674154805 +karman,karman_re50,93,94,37.2,2.496065339073539,1.7632836825214326,-0.19729422638192773,2.1014768863096833,2.2796476259827614,3.3918041735887527,0.3193872980773449,2.918422222137451,,,-7.3570579290390015,106.50945901870728,101.60817205905914,-1.2116432189941406,30.14935851097107,26.82413160800934,-3.5427138805389404,-2.845181465148926,2.2649731636047363,-0.6725012918861383,-3.013519789226775,3.848897571794457,-2.870212588652802,0.16833832407784932,-1.5839244081897208 +karman,karman_re50,94,95,37.6,1.9312857184559107,1.9478502217680216,-0.013617565855383873,1.904050586745143,2.3317381273955107,3.2019014470279217,0.703039113432169,3.7378163542598486,,,-8.468878269195557,105.49213886260986,102.01269388198853,-5.6305378675460815,26.278281211853027,23.30024242401123,-3.3056137561798096,-3.296638250350952,3.091702461242676,-0.7428933889222747,-2.5117869327254403,4.3506304282957915,-2.5627203672575347,-0.7848513176255119,-1.2589279670531157 +karman,karman_re50,95,96,38.0,1.3773452956229448,2.3422451922670007,-0.0740602845326066,1.2292247265577316,2.1013114601373672,3.1113806180655956,1.055099070072174,4.211509600281715,,,-9.11950170993805,103.59748601913452,101.84696614742279,-8.222676441073418,19.54508274793625,18.130050972104073,-3.054903507232666,-3.599372625350952,3.661302089691162,-0.8933122522073292,-2.0513693336548915,4.811048027366341,-2.161591255025337,-1.5480032916960607,-1.1497459376751786 +karman,karman_re50,96,97,38.400000000000006,0.9845492895692587,2.7458673575893044,-0.2756059402599931,0.43333740904927254,1.8173811258748174,3.031000669579953,1.2687629205174744,4.354906966909766,,,-8.950242400169373,101.60629749298096,101.20820105075836,-8.428033627569675,10.5476014316082,10.880274139344692,-2.7088401317596436,-3.694270610809326,3.861262083053589,-1.0472502885560722,-1.771943641596462,5.09047371942477,-1.6615898432035714,-1.9223269692128642,-1.229211636371181 +karman,karman_re50,97,98,38.800000000000004,0.7323850877583027,3.054474713280797,-0.49049477092921734,-0.248604454100132,1.550711807794869,2.9763368074782193,1.366910699289292,4.284533206373453,,,-7.884374260902405,100.09689331054688,100.2549022436142,-6.608331762254238,0.6261039525270462,1.9100690260529518,-2.1626622676849365,-3.591442823410034,3.8369715213775635,-1.1649504904267778,-1.643587764127457,5.218829596893775,-0.9977117772581587,-1.9478550592825772,-1.3818580755162113 +karman,karman_re50,98,99,39.2,0.6627015536651015,3.20610823109746,-0.6614623125642538,-0.6602230714634061,1.232092035934329,3.035458968952298,1.3403294142335653,3.9127508644014597,,,-6.220731139183044,99.18180108070374,99.43278133869171,-3.6178722977638245,-8.855599164962769,-7.250344008207321,-1.4672644138336182,-3.424959659576416,3.656860113143921,-1.222782215200143,-1.6783502845866693,5.184067076434562,-0.2444821986334751,-1.7466093749897467,-1.5272069632906415 +karman,karman_re50,99,100,39.6,0.7673483924008906,3.1512390123680234,-0.7310829823836684,-0.6948175723664463,0.7600851240567863,3.298537922091782,1.1459392262622714,3.051963576581329,,,-4.581695795059204,98.84929656982422,99.34061169624329,-0.6192781031131744,-16.71868860721588,-14.762597531080246,-0.7821140289306641,-3.4178836345672607,3.4107744693756104,-1.2018555651970284,-1.9325702319013074,4.929847129119925,0.41974153626636435,-1.4853134026659534,-1.5190726597443147 +karman,karman_re50,100,101,40.0,0.8915124926716089,2.8586145490407944,-0.6346921436488628,-0.37787179462611675,0.10212244524154812,3.76567046623677,0.8512820350006223,1.8046865152427927,,,-3.2817721366882324,99.22093152999878,100.09970664978027,1.431584358215332,-22.21873253583908,-20.035047829151154,-0.1659805029630661,-3.6717729568481445,3.27986478805542,-1.0902511015615197,-2.317917539911923,4.544499821109309,0.9242705985984536,-1.3538554169362214,-1.2646350330538887 +karman,karman_re50,101,102,40.400000000000006,0.8537157555110753,2.421987825073302,-0.3668972058221698,0.1199213438667357,-0.6978304008953273,4.26458683796227,0.6380046252161264,0.5781788495369256,,,-2.119925618171692,100.12173652648926,101.2520283460617,2.092602103948593,-25.708478689193726,-23.641229420900345,0.40511736273765564,-4.087703704833984,3.375976324081421,-0.9237254092689058,-2.5968378519125666,4.265579509108665,1.3288427720065614,-1.4908658529214178,-0.8896031850272443 +karman,karman_re50,102,103,40.800000000000004,0.651446811389178,1.9891916890628636,-0.07164588896557689,0.5081550334580243,-1.4715215656906366,4.577238345518708,0.624209875240922,-0.2231018152087927,,,-0.8223116397857666,100.985848903656,102.32765078544617,1.189606636762619,-28.17694842815399,-26.067013293504715,0.9290141463279724,-4.4844183921813965,3.703141927719116,-0.7586606704095585,-2.6148783746802744,4.247538986340958,1.6876748167375308,-1.869540017501122,-0.5443970586218416 +karman,karman_re50,103,104,41.2,0.35551772452890873,1.634320302400738,0.11203187750652432,0.5795814795419574,-2.0099536050111055,4.597805207595229,0.7192546036094427,-0.5714443977922201,,,0.7960855960845947,101.23080015182495,103.03704142570496,-1.2411132454872131,-30.108314752578735,-27.4246945977211,1.3712857961654663,-4.802361011505127,4.201348304748535,-0.6233157634332507,-2.4905806100114756,4.371836751009757,1.994601559598717,-2.3117804014936514,-0.1704884462612215 +karman,karman_re50,104,105,41.6,0.02919284816016443,1.2903601163998246,0.19048410467803478,0.410161057516234,-2.1872653160244226,4.32930956594646,0.7606542203575373,-0.6659568753093481,,,2.766883373260498,100.43092966079712,103.22855710983276,-4.74635511636734,-31.08561336994171,-27.67816334962845,1.7055256366729736,-5.0780463218688965,4.733867168426514,-0.4921322949216835,-2.4364389452577946,4.425978415763438,2.197657931594657,-2.641607376611102,0.307888752663076 +karman,karman_re50,105,106,42.0,-0.2776953624561429,0.8636721468064934,0.22917400929145515,0.1806526561267674,-2.0545064471662045,3.798393066972494,0.6658816710114479,-0.7227431051433086,,,4.83003556728363,98.42826128005981,103.00462543964386,-8.30196812748909,-30.01183569431305,-26.531153172254562,1.9002270698547363,-5.253325939178467,5.113411903381348,-0.3293971584100912,-2.5603807591583743,4.302036601862858,2.2296242282648278,-2.6929451800200925,0.8113753015184892 +karman,karman_re50,106,107,42.400000000000006,-0.5735574522987008,0.3390901765669696,0.2756422691163607,-0.02227291406597942,-1.7331200651824474,3.067422891035676,0.4522299859672785,-0.8286600932478905,,,6.504732370376587,95.46271562576294,102.65633463859558,-10.547997057437897,-25.628387928009033,-23.29534739255905,1.8841713666915894,-5.184128284454346,5.165677547454834,-0.1293260886308996,-2.8397905415267783,4.022626819494454,2.013497455322489,-2.3443377429275674,1.1430507279603797 +karman,karman_re50,107,108,42.800000000000004,-0.7966288831084967,-0.23582893845741637,0.2801741175062489,-0.2362806480959989,-1.3385635102167726,2.2922951029613614,0.19716925453394651,-0.9442250011488795,,,7.4172914028167725,92.11377501487732,102.38943696022034,-10.700709745287895,-17.23421812057495,-17.43665225803852,1.5620447397232056,-4.78017520904541,4.790618896484375,0.08994313697156407,-3.173354320561706,3.6890630404595264,1.4721016027516416,-1.6068208884837043,1.1015558560248486 +karman,karman_re50,108,109,43.2,-0.87354687275365,-0.7236470992211252,0.17465444398112595,-0.524237984791398,-0.9797145612537861,1.7560080741532147,0.06965099601075053,-0.840412569232285,,,7.426518201828003,89.21064734458923,102.18997597694397,-9.048567852005363,-5.396219342947006,-9.44783822633326,0.9187095165252686,-4.089522838592529,4.138816833496094,0.2759928047425505,-3.340120376512063,3.522296984509169,0.642716711782718,-0.7494024620804662,0.6165198489869246 +karman,karman_re50,109,110,43.6,-0.739651673939079,-0.9086683276109397,-0.054985517635941505,-0.8496227092109621,-0.7169211166910827,1.773033058270812,0.26583485305309296,-0.1852514105848968,,,6.298792362213135,87.95585036277771,101.80494785308838,-6.034771353006363,7.89245143532753,-0.4119455814361572,0.07138970494270325,-3.1921114921569824,3.562432289123535,0.34655831632295847,-3.083554701455194,3.7788626595660384,-0.2751686113802552,-0.10855679070178859,-0.21643037044250324 +karman,karman_re50,110,111,44.0,-0.43625992839224637,-0.6017785199219361,-0.20944209245499223,-0.8551441133022308,-0.4826685762964189,2.391879039350897,0.7934739696793258,1.1042793630622327,,,3.476092219352722,89.59847092628479,100.64127743244171,-1.4523368328809738,19.22224462032318,8.93883965909481,-0.7872726917266846,-2.2014317512512207,3.3382937908172607,0.22951317254755527,-2.393517874855328,4.468899486165904,-1.0167858642742398,0.19208612360410715,-1.1306056953486436 +karman,karman_re50,111,112,44.400000000000006,-0.043552921852096915,0.12682805026997812,-0.14341949645313434,-0.3303919147583656,-0.08104395965347067,3.2058318611234426,1.319472910836339,2.5579018620192073,,,-1.02788507938385,93.89963746070862,98.49747717380524,4.271263629198074,26.356077194213867,18.111485987901688,-1.60598886013031,-1.370058536529541,3.250986337661743,-0.04837113193947092,-1.7056260398608678,5.156791321160364,-1.5576177281908392,0.3355675033313268,-1.905804983498621 +karman,karman_re50,112,113,44.800000000000004,0.5873366608284414,0.9382109565194696,-0.10090894647873938,0.3855187678709626,0.5323878140188754,3.7351781502366066,1.3938318006694317,3.3200514153577387,,,-5.632445216178894,99.2165207862854,96.588996052742,8.425769209861755,29.672804474830627,25.074321031570435,-2.4260330200195312,-1.073049783706665,2.838040590286255,-0.35782562192082423,-1.6083808380684022,5.2540365229528305,-2.068207398098707,0.5353310543617371,-2.4159959326665756 +karman,karman_re50,113,114,45.2,1.4861866366118193,1.4621797017753124,-0.35447627305984497,0.7772340904921293,1.1698330054059625,3.956501721404493,0.9746887953951955,3.1192105961963534,,,-8.72025191783905,104.0428638458252,96.19801342487335,8.626996725797653,30.396565794944763,27.952463179826736,-3.1463630199432373,-1.4540820121765137,2.1732914447784424,-0.5576628129442431,-2.15652842632965,4.705888934691583,-2.588700206998994,0.7024464141531364,-2.5325974899131403 +karman,karman_re50,114,115,45.6,2.182513242587447,1.6110494616441429,-0.541212793905288,1.1000876547768712,1.677920576184988,3.9375212509185076,0.45185419730842113,2.5816289708018303,,,-10.198426246643066,107.37684965133667,97.14531898498535,5.225230008363724,29.114830493927002,27.1464966237545,-3.5358173847198486,-2.2579469680786133,1.8724552392959595,-0.6144404641111879,-2.8402819910904276,4.022135369930805,-2.921376920608661,0.5823350230118143,-2.149680130634845 +karman,karman_re50,115,116,46.0,2.2390533704310656,1.6023002099245787,-0.3830136265605688,1.473026117309928,2.0823932718485594,3.709699842147529,0.33603853080421686,2.754470333456993,,,-10.638147592544556,108.57264995574951,98.57786297798157,0.08313357830047607,25.874221324920654,24.20739382505417,-3.4719278812408447,-3.0107054710388184,2.3139007091522217,-0.611103574453121,-2.9917436103428168,3.8706737506784155,-2.8608243067877237,-0.018961860696001587,-1.5567730415261938 +karman,karman_re50,116,117,46.400000000000006,1.8215483287349343,1.767422305420041,-0.17065252177417278,1.4802432851865888,2.1864199079573154,3.4676287323236465,0.6508538499474525,3.4881276078522205,,,-10.335880517959595,107.5745701789856,99.89365935325623,-4.6380601823329926,20.802125334739685,20.564059168100357,-3.167919397354126,-3.482433557510376,3.124762535095215,-0.6740797272074269,-2.5800338698375347,4.2823834911836975,-2.493839670146699,-0.9023996876728413,-1.1576209560884827 +karman,karman_re50,117,118,46.800000000000004,1.2812576023861766,2.147279679775238,-0.13406877405941486,1.0131200542673469,1.9861471373587847,3.2993631903082132,1.027868827804923,4.041884792968631,,,-9.443330764770508,105.23638725280762,100.67476034164429,-7.400935888290405,14.411339163780212,16.47888422012329,-2.8435401916503906,-3.6937413215637207,3.7645184993743896,-0.8189540758550906,-2.0869805485355912,4.775436812485641,-2.0245861157953,-1.6067607730281295,-1.010918313111251 +karman,karman_re50,118,119,47.2,0.8186761406250298,2.5361869484186172,-0.26936084032058716,0.2799544599838555,1.7625173786655068,3.156963794026524,1.2355897924862802,4.233696963638067,,,-8.1183522939682,102.91755199432373,100.62587559223175,-8.02275575697422,7.466879487037659,11.008134111762047,-2.494236707687378,-3.7259902954101562,4.057556629180908,-0.9672799766611301,-1.8153268542388474,5.047090506782385,-1.5269567310262477,-1.9106634411713088,-0.9895338776014766 +karman,karman_re50,119,120,47.6,0.503476127050817,2.760092029348016,-0.4673725925385952,-0.4312690580263734,1.6533342422917485,3.08824866078794,1.226096646860242,4.105527536012232,,,-6.410640478134155,101.4428973197937,99.80916380882263,-6.9719091057777405,0.43210885487496853,3.627162426710129,-1.9988343715667725,-3.6775434017181396,4.137117862701416,-1.0526754565135676,-1.8277418171857327,5.034675543835499,-0.9461589150532048,-1.849801584532407,-0.8975576811340833 +karman,karman_re50,120,121,48.0,0.3370494523551315,2.7813228080049157,-0.6243385141715407,-0.91162757598795,1.5016989782452583,3.2054069451987743,1.0493975132703781,3.6004940047860146,,,-4.369473457336426,100.58579444885254,98.72499704360962,-4.634013875329401,-6.680550426244736,-4.662430928146932,-1.3246170282363892,-3.633751153945923,4.101635456085205,-1.0607726936263713,-2.0588257257953115,4.803591635225921,-0.2638443346100179,-1.5749254281506113,-0.7019561791407156 +karman,karman_re50,121,122,48.400000000000006,0.33607680234126747,2.581199281848967,-0.6538942689076066,-0.9717117354739457,1.1210483498871326,3.5133721539750695,0.7341083837673068,2.5892651174217463,,,-2.3958414793014526,99.94537234306335,98.11781942844391,-1.7154641449451447,-13.508403301239014,-12.094797939062119,-0.609336793422699,-3.7315776348114014,3.887086868286133,-0.9844472950471505,-2.4711551068594693,4.391262254161763,0.3751105016244515,-1.260422527951932,-0.5041753858756302 +karman,karman_re50,122,123,48.800000000000004,0.43309637112542987,2.140529453754425,-0.507791293784976,-0.5824862164445221,0.46842521987855434,3.924553166143596,0.3625807585194707,1.1935867369174957,,,-0.9807944297790527,99.73127245903015,98.49151372909546,0.6607837975025177,-19.151712954044342,-17.714015394449234,0.026798726990818977,-4.048786163330078,3.565990686416626,-0.8163795974744884,-2.9570321683621064,3.905385192659126,0.8431783244653074,-1.0917539949679718,-0.3393945062424999 +karman,karman_re50,123,124,49.2,0.4604624700732529,1.5362437698058784,-0.2191912499256432,0.022079970221966505,-0.35153620410710573,4.275358282029629,0.11961301788687706,-0.11231016833335161,,,-0.07744431495666504,100.14467239379883,99.64024424552917,1.7391562461853027,-23.18871319293976,-21.7069074511528,0.5993986129760742,-4.450552940368652,3.371990203857422,-0.5859102140440337,-3.274780954282803,3.5876364067384294,1.185308827020108,-1.1757719860858495,-0.21564620288100755 +karman,karman_re50,124,125,49.6,0.4048399569001049,0.961464480496943,0.03044691402465105,0.465733784949407,-1.146764261648059,4.398783203214407,0.13765180483460426,-0.8714606519788504,,,0.7807433605194092,100.80398321151733,100.96176266670227,1.3365648686885834,-26.18373930454254,-24.617616087198257,1.145518183708191,-4.700454235076904,3.44771409034729,-0.3666943167716688,-3.2511901572609467,3.6112272037602855,1.5122125004798597,-1.4492640778159576,-0.16351311341299546 +karman,karman_re50,125,126,50.0,0.2961907593999058,0.5436859355540946,0.09282921382691711,0.48184918705374,-1.6839971067383885,4.289223812520504,0.2911742776632309,-1.1016485514119267,,,1.923048496246338,101.08134746551514,102.00510025024414,-0.5547612905502319,-28.58845591545105,-26.527070999145508,1.6011041402816772,-4.824919700622559,3.751375675201416,-0.20735715850192366,-3.05041626346817,3.812001097553062,1.8084612987836008,-1.7745034371543884,-0.06062542235164603 +karman,karman_re50,126,127,50.400000000000006,0.1833549322327599,0.21465611644089222,-0.005531284841708839,0.17229236254934222,-1.8706124974414706,4.013804020360112,0.36897161044180393,-1.1326692765578628,,,3.463369607925415,100.47382116317749,102.54561305046082,-3.6485224962234497,-30.213728547096252,-27.385810017585754,1.9134521484375,-4.978821754455566,4.116458892822266,-0.08186800402493187,-2.9486743286174835,3.9137430324037488,1.9953201524624318,-2.030147425838083,0.20271586041851686 +karman,karman_re50,127,128,50.800000000000004,0.05672058978234418,-0.1269409171982261,-0.12393404313115752,-0.19114749647997087,-1.785782747901976,3.6046861205250025,0.33586868084967136,-1.1140453862026334,,,5.253171920776367,98.7403392791748,102.56552696228027,-7.089875638484955,-30.147111415863037,-26.955334842205048,2.094599485397339,-5.1328887939453125,4.435292720794678,0.048414178419064854,-2.991965737019819,3.8704516240014133,2.046185306978274,-2.1409230569254936,0.5648410967932644 +karman,karman_re50,128,129,51.2,-0.0795614905655384,-0.48225732462015003,-0.2053370262729004,-0.4902355431113392,-1.571695669554174,3.129816963337362,0.23847550619393587,-1.0947446571663022,,,6.899666786193848,96.16040587425232,102.41981744766235,-9.567835181951523,-27.194663882255554,-24.642205983400345,2.104152202606201,-5.12214469909668,4.581728458404541,0.18392881250102625,-3.1193347569697494,3.743082604051483,1.9202233901051748,-2.0028099421269303,0.8386458543530582 +karman,karman_re50,129,130,51.6,-0.2344909153180197,-0.8221691241487861,-0.23044052068144083,-0.6953719566809013,-1.2962903128936887,2.685166080482304,0.12055726256221533,-1.055175787769258,,,7.94295072555542,92.94307827949524,102.01722383499146,-9.993825480341911,-20.321069657802582,-19.63345892727375,1.8586231470108032,-4.820830345153809,4.46914529800415,0.3135682610913249,-3.27354608829434,3.5888712727268923,1.5450548859194784,-1.5472842568594687,0.8802740252772581 +karman,karman_re50,130,131,52.0,-0.34145626705139875,-1.0836369765456766,-0.2648451190907508,-0.8711465052329004,-1.0209066094830632,2.408528933301568,0.0700696837157011,-0.880767242051661,,,8.186200261116028,90.21031856536865,101.84325873851776,-8.432428911328316,-9.748383611440659,-12.112494930624962,1.3233311176300049,-4.208889484405518,4.14130163192749,0.41328986021153097,-3.3395728243572727,3.5228445366639596,0.910041257418474,-0.8693166600482449,0.6184570952635307 +karman,karman_re50,131,132,52.400000000000006,-0.3623297088779509,-1.1377784830983728,-0.304368237266317,-0.9710661834105849,-0.7664794684387743,2.445417339913547,0.2299778861925006,-0.30652369605377316,,,7.485061883926392,88.80220055580139,101.61446928977966,-5.489443335682154,3.0326437205076218,-3.029534127563238,0.5735421180725098,-3.354111671447754,3.8385376930236816,0.43393896702415946,-3.130447789636726,3.7319695713845062,0.1396031510483503,-0.22366388181102792,0.1065681216391754 +karman,karman_re50,132,133,52.800000000000004,-0.2791807637549937,-0.8455492788925767,-0.2853143960237503,-0.8498095558024943,-0.4876939347013831,2.838582149706781,0.6182625656947494,0.7488311966881156,,,5.449286103248596,89.86808657646179,100.90431869029999,-1.2711551040410995,14.991289377212524,6.573734804987907,-0.26507294178009033,-2.385385036468506,3.6924448013305664,0.32248525183169935,-2.622656157783787,4.239761203237445,-0.5875581936117897,0.23727112131528116,-0.5473164019068788 +karman,karman_re50,133,134,53.2,-0.07710864156251773,-0.22174720652401447,-0.12005525059066713,-0.317219142743852,-0.07752890815027058,3.3727248664945364,1.011755084618926,1.9459812610875815,,,1.8449872732162476,93.60056519508362,99.37657415866852,4.107729345560074,23.202966153621674,15.929292887449265,-1.1132903099060059,-1.5289738178253174,3.5356082916259766,0.08457248503899169,-2.1080538083875275,4.754363552633705,-1.1978627949449976,0.5790799905622102,-1.2187552610077281 +karman,karman_re50,134,135,53.6,0.3509506641421467,0.5121661524754018,0.001518608769401908,0.3539878816809505,0.4710672365035862,3.779113059863448,1.103447051718831,2.6779613399412483,,,-2.182173728942871,98.64627718925476,97.86492586135864,8.407426625490189,27.139151096343994,23.155417293310165,-1.9251214265823364,-1.122175931930542,3.1531147956848145,-0.19533578324024103,-1.9881407238405047,4.874276637180728,-1.7297856433420953,0.8659647919099627,-1.7211618414959133 +karman,karman_re50,135,136,54.0,1.096902065910399,1.066832453943789,-0.1489028800278902,0.7990963058546185,1.0427951347082853,4.027841961942613,0.8251216495409608,2.693038433790207,,,-5.028146505355835,103.43067646026611,97.60964512825012,9.033457934856415,27.97408401966095,26.384015381336212,-2.5992698669433594,-1.3536484241485596,2.654973268508911,-0.4068807592419473,-2.352129615545431,4.510287745475801,-2.192389107701412,0.9984811913968716,-1.85531447696689 +karman,karman_re50,136,137,54.400000000000006,1.823951955884695,1.289510342758149,-0.3972099511884153,1.0295320535078645,1.5218248590826988,4.1087837889790535,0.3650202415883541,2.251865342259407,,,-6.407284736633301,106.82895183563232,98.6220121383667,6.0491301119327545,26.98112726211548,26.06736645102501,-3.0256452560424805,-2.0681135654449463,2.355720043182373,-0.491808198534073,-2.9538418568360014,3.908575504185231,-2.5338370575084075,0.8857282913910551,-1.5528554610028578 +karman,karman_re50,137,138,54.800000000000004,2.0423056557774544,1.2927041098009795,-0.4027212562505156,1.2368631432764232,1.8956523854285479,3.9675222942605615,0.08828041609376669,2.0722132176160812,,,-6.896314024925232,108.1811785697937,100.11462271213531,1.271098107099533,24.97370094060898,23.963678628206253,-3.108596086502075,-2.857555866241455,2.56740140914917,-0.4930262739257852,-3.315757160233338,3.546660200787894,-2.61556981257629,0.45820129399188314,-0.9792587916387241 +karman,karman_re50,138,139,55.2,1.7429052386432886,1.3403574121184647,-0.25681458646431565,1.2292760657146573,2.1074346732348204,3.7503736093640327,0.19540591165423393,2.4982464965432882,,,-6.977614760398865,107.48043060302734,101.422980427742,-3.358282893896103,22.24956899881363,21.556854993104935,-2.9482624530792236,-3.4067375659942627,3.1896166801452637,-0.511200835222311,-3.1756603882632524,3.68675697275798,-2.4370616178569127,-0.23107717773101033,-0.4971402926127162 +karman,karman_re50,139,140,55.6,1.2240876676514745,1.5684155514463782,-0.17194368410855532,0.8802002994343638,2.051208633929491,3.5932193277403712,0.45840919483453035,2.9680270235985518,,,-6.869614124298096,105.43900728225708,102.17022895812988,-6.605149805545807,18.603068590164185,18.993182480335236,-2.7369916439056396,-3.7266669273376465,3.8211829662323,-0.5981802559720442,-2.8317094847148425,4.03070787630639,-2.1388113879335955,-0.894957442622804,-0.2095249100740899 +karman,karman_re50,140,141,56.0,0.7408503443002701,1.8419082625769079,-0.19833148689940572,0.34418737050145864,1.903118216432631,3.5038149217143655,0.6147258682176471,3.132569952867925,,,-6.595778465270996,103.12319993972778,102.18766927719116,-8.154671639204025,13.653557002544403,15.094282478094101,-2.485456705093384,-3.935478448867798,4.239401340484619,-0.702488033206005,-2.6272813863289106,4.235135974692321,-1.782968671887379,-1.3081970625388872,0.00426536579229797 +karman,karman_re50,141,142,56.400000000000006,0.369259127182886,2.045007247943431,-0.2708669635467231,-0.17247479991056025,1.7548890318721533,3.461213898845017,0.6140818586573005,2.9830527491867542,,,-6.016665697097778,101.33626461029053,101.51404738426208,-8.074652682989836,7.3099397122859955,8.884808886796236,-2.0974977016448975,-4.077819347381592,4.445507526397705,-0.7799482464397826,-2.628123610302302,4.234293750718931,-1.317549455205115,-1.4496957370792898,0.21121377567877442 +karman,karman_re50,142,143,56.800000000000004,0.1292366359848529,2.137557719834149,-0.3279472002759576,-0.5266577645670623,1.5163837233558297,3.4745316952466965,0.5202963948249817,2.556976513005793,,,-4.926425218582153,100.15636682510376,100.42620301246643,-6.415063329041004,-0.1441220985725522,0.8549271151423454,-1.5299261808395386,-4.136744499206543,4.425127983093262,-0.81524620361374,-2.7507745317461962,4.111642829275036,-0.7146799772257986,-1.3859699674603467,0.3134851538182257 +karman,karman_re50,143,144,57.2,0.08623961184639484,2.08146806107834,-0.33294869353994727,-0.5796577752334997,1.0633576894178987,3.5260686418041587,0.35810552071779966,1.779568730853498,,,-3.3784419298171997,99.25678968429565,99.42871034145355,-3.534107096493244,-8.026745170354843,-7.378076575696468,-0.861994743347168,-4.137887954711914,4.087190628051758,-0.7938540882390911,-2.962884802849652,3.8995325581715803,-0.06814065510807688,-1.1750031518622621,0.18765806988017752 +karman,karman_re50,144,145,57.6,0.18078826542478055,1.8407193128950894,-0.23550627520307899,-0.2902242849813774,0.41625346057116985,3.6321518709883094,0.15149579849094152,0.7192450575530529,,,-1.8845826387405396,98.69760274887085,99.14236962795258,-0.5903460085391998,-15.161174535751343,-14.263320714235306,-0.2029503434896469,-4.200397968292236,3.6028716564178467,-0.7020345779821313,-3.233085234503951,3.6293321265172813,0.4990842344924844,-0.9673127337882854,-0.02646047009943464 +karman,karman_re50,145,146,58.0,0.27654480072669685,1.434276404324919,-0.1033287844620645,0.06988723180256784,-0.3345998120494187,3.777219448238611,-0.011376570910215378,-0.35735295386984944,,,-0.8251100778579712,98.79681468009949,99.78031814098358,1.1724844574928284,-20.542314648628235,-19.258978962898254,0.3702332675457001,-4.360743045806885,3.236558675765991,-0.5470207343216817,-3.446086752740493,3.4163306082807394,0.9172540018673818,-0.914656293066392,-0.1797719325147482 +karman,karman_re50,146,147,58.400000000000006,0.31896212021820247,0.9977151348721236,0.03754501813091338,0.3940521564800292,-1.08822132460773,3.9312393637374043,-0.049156020395457745,-1.1865333653986454,,,0.039005279541015625,99.37965273857117,100.90689659118652,1.3543114066123962,-24.38346892595291,-22.845707833766937,0.8782054781913757,-4.576489448547363,3.170614719390869,-0.38052000582027745,-3.4954940286835186,3.3669233323377137,1.258725484011653,-1.0809954198638447,-0.19630861294684454 +karman,karman_re50,147,148,58.800000000000004,0.26945964782498777,0.6562377675436437,0.058711390011012554,0.3868824278470129,-1.6769780777394772,4.002000903710723,0.06064283661544323,-1.5556924045085907,,,1.0945677757263184,99.83177185058594,101.97285413742065,0.053726136684417725,-27.398979663848877,-25.440852344036102,1.3214058876037598,-4.7562055587768555,3.3893020153045654,-0.25028346308207355,-3.3519010832996665,3.5105162777215657,1.5716893506858334,-1.404304475477189,-0.12121426241700028 +karman,karman_re50,148,149,59.2,0.19412297115195543,0.4335968114901334,-0.036271288990974426,0.12158039317000657,-1.9810621161013842,3.949185134842992,0.2190659288316965,-1.5429302584379911,,,2.5320231914520264,99.57131743431091,102.64422297477722,-2.4300888180732727,-29.81915771961212,-27.178974449634552,1.6798087358474731,-4.917026519775391,3.7782175540924072,-0.16537010962856272,-3.1447182487288936,3.7176991122923386,1.8451788454760358,-1.772308271046497,0.0605184418000686 +karman,karman_re50,149,150,59.6,0.10531035513849929,0.2645750864758156,-0.15647608233848587,-0.20764180953847244,-2.0067093428224325,3.752171411179006,0.33181498292833567,-1.3430793769657612,,,4.325211048126221,98.26693534851074,102.79594659805298,-5.514499545097351,-31.031504273414612,-27.874556183815002,1.9381916522979736,-5.061725616455078,4.209649085998535,-0.10090667158074268,-2.997267089329554,3.8651502716916784,2.0390983238787164,-2.0644585271255242,0.3444988143068568 +karman,karman_re50,150,151,60.0,-0.04930765862809494,0.08927784438128583,-0.2006407485168893,-0.4505891556618735,-1.8617399036884308,3.437791019678116,0.3443656023591757,-1.1730086989700794,,,6.1950623989105225,95.9700345993042,102.53531336784363,-8.178002387285233,-29.787766933441162,-26.796182245016098,2.051527738571167,-5.121814727783203,4.559552192687988,-0.03404980507581743,-2.980853617827868,3.881563743193364,2.0855775436469846,-2.140961109955335,0.6779884494946242 +karman,karman_re50,151,152,60.400000000000006,-0.24279301578644663,-0.1280132073588902,-0.17193770872836467,-0.586668433243176,-1.6091767465695739,3.069235826842487,0.2505836309865117,-1.1080094845965505,,,7.736334204673767,93.13746690750122,102.12829411029816,-9.299789369106293,-24.8240128159523,-22.9370579123497,1.9370574951171875,-4.957564353942871,4.684047698974609,0.048823140700898174,-3.1034999718966354,3.758917389124597,1.8882343544162894,-1.8540643820462357,0.9251303098500125 +karman,karman_re50,152,153,60.800000000000004,-0.42269352707080543,-0.38784396019764245,-0.11403192183934152,-0.6507573707494885,-1.2899951543658972,2.71204044111073,0.12051849626004696,-1.0489581618458033,,,8.612552285194397,90.4457151889801,101.77823007106781,-8.4541205316782,-15.659309923648834,-16.00479893386364,1.5378572940826416,-4.4753007888793945,4.528051853179932,0.1479203640733403,-3.2735967861582482,3.588820574862984,1.3899369300093012,-1.2017040027211463,0.9392312783169476 +karman,karman_re50,153,154,61.2,-0.5316062015481293,-0.5928259051870555,-0.1000852498691529,-0.7317767012864351,-0.9602943318895996,2.5059686740860343,0.10393641423434019,-0.7524215034209192,,,8.599534630775452,88.66269588470459,101.46485269069672,-5.996918072924018,-3.1254425644874573,-6.8294277880340815,0.8599743247032166,-3.6878602504730225,4.191528797149658,0.2260987219774934,-3.2952825310146947,3.5671348300065375,0.6338756027257232,-0.39257771945832776,0.6243939671431207 +karman,karman_re50,154,155,61.6,-0.48750583664514124,-0.5629812076222152,-0.11947113671340048,-0.7264481100719422,-0.6311787874437869,2.6012532180175185,0.32469735015183687,0.018215912859886885,,,7.313704490661621,88.88887763023376,100.86591243743896,-2.0269605796784163,10.195886343717575,3.5186123568564653,-0.017636358737945557,-2.678727149963379,3.8036675453186035,0.21471620998168908,-3.0065753998380744,3.855841961183158,-0.23235256871963464,0.3278482498746955,-0.05217441586455429 +karman,karman_re50,155,156,62.0,-0.27793581830337644,-0.17687433864921331,-0.08733998402021825,-0.45261578634381294,-0.2719309413805604,3.009472507983446,0.7095972541719675,1.1472635669633746,,,4.398724436759949,91.8138325214386,99.59280788898468,3.596898168325424,20.469552278518677,14.179406315088272,-0.9507606029510498,-1.6452219486236572,3.4052510261535645,0.0674583576211688,-2.5032103157122414,4.359207045308991,-1.0182189605722185,0.8579883670885842,-0.9539560191554264 +karman,karman_re50,156,157,62.400000000000006,0.166212601470761,0.48456383228767663,-0.025668457965366542,0.11487568554002792,0.18791493494063616,3.5380719928070903,0.9993707062676549,2.186656347475946,,,0.8550673723220825,96.40300273895264,98.38679730892181,8.696207404136658,26.035049557685852,22.984135150909424,-1.7692033052444458,-0.9738285541534424,3.0461318492889404,-0.18480849476743208,-2.1242498728331753,4.738167488188057,-1.5843948104770138,1.150421318679733,-1.6920356388991165 +karman,karman_re50,157,158,62.800000000000004,0.9380792616866529,1.1277180747129023,-0.11442269897088408,0.7092338637448847,0.7573059992864728,3.9505234453827143,0.9265400003641844,2.6103860000148416,,,-1.5939652919769287,100.90054273605347,98.58811497688293,10.02543419599533,28.117263317108154,27.431945502758026,-2.409710645675659,-0.9847891926765442,2.7223875522613525,-0.43010201344533633,-2.2194965435159686,4.642920817505264,-1.9796086322303228,1.2347073508394244,-1.920533265243911 +karman,karman_re50,158,159,63.2,1.8354475032538176,1.451752963475883,-0.38120977114886045,1.0730279609560966,1.3212831690907478,4.108077264390886,0.46773545909672976,2.2567540872842073,,,-2.7397632598876953,104.18612957000732,100.09782314300537,7.581193000078201,28.630051016807556,28.120749443769455,-2.9230313301086426,-1.584399938583374,2.3451433181762695,-0.5536861442742887,-2.8195127661761017,4.0429045948451305,-2.3693451858343537,1.2351128275927277,-1.697761276668861 +karman,karman_re50,159,160,63.6,2.2713569924235344,1.4439169317483902,-0.44621003326028585,1.3789369259029627,1.773300115019083,4.005614668130875,-0.005812384188175201,1.7616753466427326,,,-3.4698486328125,105.82563877105713,101.83672904968262,3.2896019518375397,28.59823703765869,27.082794159650803,-3.1773624420166016,-2.388355255126953,2.302454948425293,-0.5506975488983795,-3.438810010688395,3.423607350332837,-2.626664893118222,1.050454755561442,-1.121152401907544 +karman,karman_re50,160,161,64.0,2.0883912220597267,1.368618686683476,-0.27183385100215673,1.5447235200554132,2.1242257207632065,3.782283514738083,-0.051666051149368286,2.02089361846447,,,-4.410529136657715,105.81955909729004,103.00511121749878,-1.3288289308547974,27.901482582092285,25.46306848526001,-3.1394872665405273,-3.0152974128723145,2.7888083457946777,-0.5219794432498868,-3.4987766011871857,3.3636407598340465,-2.617507823290641,0.48347918831487124,-0.5748324140393688 +karman,karman_re50,161,162,64.4,1.654171384871006,1.4349381672218442,-0.19883457571268082,1.2565022334456444,2.2271196357905865,3.6060435231775045,0.21352199837565422,2.654163632541895,,,-5.59995174407959,104.51052188873291,103.41982841491699,-5.328964442014694,25.679704546928406,23.221129924058914,-3.018695592880249,-3.4496002197265625,3.3780574798583984,-0.5472731250217806,-3.1519685000052555,3.7104488610159767,-2.4714224678584684,-0.297631719721307,-0.33239138115757827 +karman,karman_re50,162,163,64.8,1.1005029082298279,1.7510768375359476,-0.11803762754425406,0.8644276531413198,2.063627587631345,3.5254553658887744,0.4400612087920308,2.9437500052154064,,,-6.6583603620529175,102.58985757827759,103.22771370410919,-7.806166261434555,21.1231991648674,19.54347863793373,-2.828287124633789,-3.8012847900390625,3.9608185291290283,-0.6678457057748588,-2.855704646681262,4.006712714339971,-2.1604414188589303,-0.9455801433578004,-0.04589418521094224 +karman,karman_re50,163,164,65.2,0.7075424655340612,2.0525414729490876,-0.19545492250472307,0.31663262052461505,1.849249005317688,3.479245933704078,0.5695960717275739,2.9884411487728357,,,-7.216408848762512,100.75094699859619,102.5903195142746,-8.397830091416836,14.029218256473541,13.461988605558872,-2.5379815101623535,-4.014886379241943,4.222311019897461,-0.7828217353173179,-2.6863013122097428,4.1761160488114895,-1.7551597748450356,-1.3285850670322006,0.04619497108597148 +karman,karman_re50,164,165,65.60000000000001,0.43495933641679585,2.3323773639276624,-0.28619018848985434,-0.13742104056291282,1.5360485995188355,3.429053002037108,0.610602437518537,2.7572534745559096,,,-6.995981931686401,99.41191077232361,101.63423418998718,-7.128511089831591,5.150370299816132,5.115563701838255,-2.072749137878418,-4.076438903808594,4.227538108825684,-0.8895487470084231,-2.632673933895345,4.229743427125888,-1.1832003908699948,-1.4437649699132487,-0.0022053183002039844 +karman,karman_re50,165,166,66.0,0.3344106371514499,2.5158224161714315,-0.35251607187092304,-0.37062150659039617,1.0898311156779528,3.3861773554235697,0.6100221071392298,2.3098753299564123,,,-5.992138385772705,98.48366379737854,100.65439939498901,-4.452273226343095,-4.351756721735001,-4.050326370634139,-1.4515482187271118,-3.999131202697754,3.967683792114258,-0.9595131185085577,-2.63343287939559,4.228984481625642,-0.4920351002185541,-1.3656983233021638,-0.2613006895113843 +karman,karman_re50,166,167,66.4,0.4336061829235405,2.556760678999126,-0.37453172262758017,-0.31545726233161986,0.47968034050427377,3.4131333231925964,0.542178750038147,1.5640378405805677,,,-4.652148485183716,97.93245196342468,100.21588206291199,-1.3917423784732819,-13.09899389743805,-12.10220530629158,-0.8088232278823853,-3.919847011566162,3.526674747467041,-0.9751266212659986,-2.7221571861514042,4.1402601748698284,0.16630339338361333,-1.1976898254147579,-0.6135854274027874 +karman,karman_re50,167,168,66.8,0.5944286240264773,2.417604671791196,-0.31025707721710205,-0.026085530407726765,-0.2412012399872765,3.601177828386426,0.423019053414464,0.6048368668416515,,,-3.4447044134140015,98.03643226623535,100.62665045261383,0.8459113538265228,-19.783292710781097,-18.031512945890427,-0.2238776832818985,-3.99131178855896,3.199324369430542,-0.9220537121540455,-2.877992067087752,3.98442529393348,0.698176028872147,-1.1133197214712078,-0.7851009245029381 +karman,karman_re50,168,169,67.2,0.6278228829614818,2.1650586277246475,-0.16057700850069523,0.30666886596009135,-1.0066046379506588,3.9088239427655935,0.3509682137519121,-0.30466821044683456,,,-2.313074469566345,98.78055453300476,101.5537291765213,1.6595661640167236,-24.225331842899323,-22.17923402786255,0.3093929588794708,-4.21461820602417,3.181762218475342,-0.825734814305104,-2.9722188429047205,3.8901985181165117,1.1351277731845748,-1.2423993631194494,-0.7084362996411699 +karman,karman_re50,169,170,67.60000000000001,0.5125465104356408,1.9202839466743171,0.013061973731964827,0.5386704578995705,-1.7071685288101435,4.16975375264883,0.3957785665988922,-0.915611395612359,,,-1.011514663696289,99.61124658584595,102.50784158706665,0.9247191250324249,-27.31843590736389,-25.105320662260056,0.7926231622695923,-4.498116970062256,3.4609832763671875,-0.732379847739556,-2.913616679602158,3.9488006814190744,1.5250030100091483,-1.584500290460098,-0.48781740505188687 +karman,karman_re50,170,171,68.0,0.28274962096475065,1.7381036304868758,0.10359700536355376,0.4899436316918582,-2.19130446203053,4.249085206538439,0.5116253159940243,-1.1680538300424814,,,0.6004631519317627,99.8575210571289,103.16312909126282,-1.2087717652320862,-29.7662615776062,-27.06473618745804,1.1996735334396362,-4.775864601135254,3.923485040664673,-0.6628978357373323,-2.7621144107111393,4.100302950310093,1.8625713691769685,-2.0137501904241146,-0.1768179096454201 +karman,karman_re50,171,172,68.4,0.021802017727168277,1.5724480035714805,0.11786568211391568,0.25753338195499964,-2.368069486692548,4.101933562196791,0.5954060470685363,-1.1772573925554752,,,2.5484204292297363,99.07147884368896,103.3490538597107,-4.293468594551086,-31.363552808761597,-28.068283200263977,1.5167094469070435,-5.028544902801514,4.436134338378906,-0.5997181986697969,-2.652547496547295,4.209869864473937,2.1164276455768403,-2.3759974062542186,0.22626447390496907 +karman,karman_re50,172,173,68.8,-0.2673048584256321,1.3390463427640498,0.14353339793160558,0.019761937437579036,-2.2784629836678505,3.735151723958552,0.5897170631214976,-1.0990288574248552,,,4.643943905830383,97.1498191356659,103.10716331005096,-7.466386258602142,-31.046050786972046,-27.64357477426529,1.724251627922058,-5.1936421394348145,4.8763227462768555,-0.5107008046014097,-2.659987446137259,4.202429914883973,2.2349524325234675,-2.5336546932975557,0.673892831392882 +karman,karman_re50,173,174,69.2,-0.5709136021323502,1.010217354632914,0.1935048494488001,-0.18390390323475003,-2.0245681516826153,3.218446276150644,0.47060579527169466,-1.083356561139226,,,6.510022282600403,94.38299536705017,102.6555985212326,-9.547458589076996,-27.45559811592102,-24.851305782794952,1.7382655143737793,-5.146636009216309,5.086820125579834,-0.3852882453406212,-2.8157589928051814,4.04665836821605,2.1235537597144005,-2.330877016411127,1.0401617573637836 +karman,karman_re50,174,175,69.60000000000001,-0.8090853807516396,0.5915973015362397,0.26466154668014497,-0.2797622873913497,-1.6686987364664674,2.647396409884095,0.28342055156826973,-1.101857633329928,,,7.779783010482788,91.35998487472534,102.21437811851501,-9.731866419315338,-19.679635763168335,-19.01993900537491,1.4805517196655273,-4.7795634269714355,4.968745708465576,-0.2256301430695277,-3.0605564452331278,3.8018609157881045,1.7061818627350551,-1.7190069817383078,1.1668847926774717 +karman,karman_re50,175,176,70.0,-0.9605096420273185,0.1618457790755201,0.252273148362292,-0.4559633453027345,-1.2809502659365535,2.169347833842039,0.15581143088638783,-0.9693274041637778,,,8.200624585151672,88.82099986076355,101.82962119579315,-8.110787533223629,-7.983735203742981,-10.621803440153599,0.9103153944015503,-4.083372116088867,4.544197082519531,-0.0617265937372972,-3.227441329059702,3.6349760319615303,0.9720419881388475,-0.8559307870291653,0.909221050558001 +karman,karman_re50,176,177,70.4,-0.8918175008147955,-0.07521398583776318,0.14022391769685782,-0.6113696654210798,-0.9145301301032305,2.011327014770359,0.26666774647310376,-0.38119463715702295,,,7.419934868812561,87.84129619598389,101.26043260097504,-4.899404384195805,5.736283212900162,-0.7367866113781929,0.06923630833625793,-3.122468948364258,3.9591872692108154,0.028685969901038104,-3.0824654586103586,3.7799519024108736,0.04055033843521983,-0.040003489753899224,0.1792353667999418 +karman,karman_re50,177,178,70.8,-0.5983493174426258,0.08482660268782638,-0.002888908056775108,-0.604127133556176,-0.5831897724419832,2.332847157958895,0.6454295362345874,0.7076693000271916,,,4.866224527359009,89.60486650466919,99.97742772102356,0.36153681576251984,17.784327268600464,10.033943131566048,-0.913093090057373,-2.0233678817749023,3.358966112136841,-0.032352139624125406,-2.5871276885158023,4.27528967250543,-0.8807409504332476,0.5637598067409,-0.9163235603685891 +karman,karman_re50,178,179,71.2,-0.05706961383111775,0.6560797628480941,-0.0745817378628999,-0.20623308955691755,-0.19883243658114225,2.9897810891270638,1.0944795794785023,1.9901267223758623,,,0.9737223386764526,93.78792643547058,98.22006523609161,6.669048964977264,25.359272956848145,20.4312726855278,-1.8355607986450195,-1.086087703704834,2.8408403396606445,-0.25022320144468957,-1.99986822070788,4.8625491403133525,-1.58533759720033,0.913780517003046,-2.021708800652708 +karman,karman_re50,179,180,71.60000000000001,0.8071435731835663,1.3726273318752646,-0.19595632329583168,0.41523092659190297,0.3452506789471954,3.624653327278793,1.2461688602343202,2.8375883994158357,,,-2.3200005292892456,98.62905740737915,97.54645526409149,10.287681221961975,28.924155235290527,27.38032639026642,-2.576450824737549,-0.7594482898712158,2.4070358276367188,-0.5235083061872084,-1.8014917421191872,5.060925618902045,-2.0529425185503403,1.0420434522479713,-2.6538897912653265 +karman,karman_re50,180,181,72.0,1.9175962079316378,1.824711449444294,-0.47492072917521,0.9677547495812178,1.0016721207648516,3.921765717677772,0.8782400982454419,2.7581523172557354,,,-4.031556844711304,102.72101163864136,98.61648678779602,9.455988556146622,30.343449115753174,29.788094013929367,-3.188551187515259,-1.1536445617675781,1.8779373168945312,-0.6959293159884385,-2.2826622757994426,4.579755085221789,-2.4926218715268202,1.1290177140318645,-2.701817768327258 +karman,karman_re50,181,182,72.4,2.6331529952585697,1.8606921075843275,-0.5680237081833184,1.497105578891933,1.6090795397758484,3.830729052424431,0.31069060787558556,2.2304607555270195,,,-4.906868934631348,105.46988248825073,100.53908824920654,5.705056339502335,30.800583958625793,29.360537976026535,-3.546825408935547,-1.9290485382080078,1.6141443252563477,-0.7096520307858017,-3.024893162275982,3.83752419874525,-2.8371733781497452,1.0958446240679742,-2.2233798734889025 +karman,karman_re50,182,183,72.8,2.588684670627117,1.721333945170045,-0.31353277154266834,1.9616191275417805,2.150275744497776,3.5447007976472378,0.1717391423881054,2.493754029273987,,,-5.817985534667969,106.27800226211548,101.84519290924072,0.8410438895225525,30.173128843307495,27.535535395145416,-3.5119240283966064,-2.610661029815674,2.0616321563720703,-0.6565020214098464,-3.2066113580561897,3.6558060029650425,-2.85542200698676,0.5959503282405159,-1.5941738465929722 +karman,karman_re50,183,184,73.2,2.1102181635797024,1.7729942337609828,-0.0697813811711967,1.970655401237309,2.374777803197503,3.3044052543118596,0.4629999166354537,3.3007776364684105,,,-6.962788105010986,105.69151639938354,102.52629518508911,-3.841830790042877,27.851754426956177,24.86252933740616,-3.316202402114868,-3.1013216972351074,2.8419687747955322,-0.6762048129464511,-2.8257058223564355,4.036711538664797,-2.6399975891684173,-0.2756158748786719,-1.1947427638692645 +karman,karman_re50,184,185,73.60000000000001,1.5267698327079415,2.083620522171259,-0.04300149157643318,1.4407668495550752,2.2495966404676437,3.1959476182237267,0.8199465228244662,3.889489686116576,,,-7.987552881240845,104.07942533493042,102.53700613975525,-7.205633074045181,22.99654632806778,20.872440189123154,-3.106471061706543,-3.4721312522888184,3.51940655708313,-0.7946750184615343,-2.358897552008398,4.503519809012834,-2.3117960432450086,-1.1132337002804205,-0.9841132519297044 +karman,karman_re50,185,186,74.0,1.0771144879981875,2.454842906445265,-0.19261264242231846,0.6918892031535506,2.0030057057738304,3.1484455103054643,1.0478318436071277,4.098669392988086,,,-8.438193798065186,102.1924376487732,102.04986333847046,-8.45240019261837,15.528954565525055,14.847970381379128,-2.8387022018432617,-3.692692518234253,3.8679935932159424,-0.9362560558612194,-2.0608732800646785,4.801544080956553,-1.9024461459820423,-1.6318192381695744,-0.9335504877406109 +karman,karman_re50,186,187,74.4,0.7732656667940319,2.775138011202216,-0.3914926201105118,-0.009719573426991701,1.7327789682894945,3.1097819446586072,1.1615600087679923,4.055898985825479,,,-8.039605617523193,100.62527656555176,101.18228197097778,-7.555996999144554,6.292244791984558,6.651051715016365,-2.3994669914245605,-3.7179009914398193,3.947164297103882,-1.058413865105982,-1.9121416570485263,4.950275703972705,-1.3410531263185785,-1.805759334391293,-1.0031114068688236 +karman,karman_re50,187,188,74.8,0.614036456681788,2.989150583744049,-0.5623158067464828,-0.5105951568111777,1.4049798483029008,3.122515045106411,1.1891946196556091,3.783369087614119,,,-6.824731826782227,99.50556755065918,100.18233060836792,-5.07991798222065,-3.434183821082115,-2.6201140135526657,-1.7665876150131226,-3.600170612335205,3.8411812782287598,-1.1400364270005336,-1.876001616251056,4.986415744770176,-0.6265511880125889,-1.724168996084149,-1.1452344665414165 +karman,karman_re50,188,189,75.2,0.6671645678579807,3.046115511097014,-0.6643094820901752,-0.6614543963223696,0.936042342800647,3.2572223572060466,1.0903399670496583,3.1167222768999636,,,-5.267071723937988,98.81120324134827,99.6316909790039,-2.0088031888008118,-12.352986633777618,-11.061018705368042,-1.0795766115188599,-3.5138862133026123,3.565777063369751,-1.1617623623204183,-2.0052819304457357,4.857135430575497,0.08218575080155843,-1.5086042828568766,-1.2913583672057456 +karman,karman_re50,189,190,75.60000000000001,0.8271335973404348,2.8926413506269455,-0.6357766687870026,-0.44441974023357034,0.29794848524034023,3.572743386030197,0.8688885718584061,2.0357256289571524,,,-3.922915458679199,98.75117540359497,99.97611045837402,0.4831336438655853,-19.21476721763611,-17.344840615987778,-0.4536656439304352,-3.629563570022583,3.3128843307495117,-1.1032286322063436,-2.2948920316849337,4.5675253293362985,0.6495629882759084,-1.3346715383376493,-1.2546409985867868 +karman,karman_re50,190,191,76.0,0.8690402028150856,2.5585409021005034,-0.4467942053452134,-0.024548207875341177,-0.4698788688983768,4.01997787412256,0.6528339581564069,0.8357890474144369,,,-2.79904305934906,99.39653277397156,100.96730291843414,1.7068304121494293,-23.68863672018051,-21.629273146390915,0.11967867612838745,-3.948840618133545,3.296977996826172,-0.9758055831071301,-2.5774443203864483,4.2849730406347835,1.0954842592355174,-1.3713962977470966,-0.9879950438086116 +karman,karman_re50,191,192,76.4,0.7505331886932254,2.174176275730133,-0.16517005860805511,0.42019307147711515,-1.2705447152256966,4.397438373416662,0.5831862799823284,-0.10417215526103973,,,-1.6004621982574463,100.31046867370605,102.08000540733337,1.4133796095848083,-26.631733775138855,-24.57548826932907,0.6528098583221436,-4.333642482757568,3.5386605262756348,-0.8292122071508679,-2.6685282853786307,4.193889075642601,1.4820220654730114,-1.6651141973789376,-0.6552285493669663 +karman,karman_re50,192,193,76.80000000000001,0.47950982116162777,1.8556352006271482,0.05341856740415096,0.5863469559699297,-1.9186404533684254,4.547442891635001,0.6540267495438457,-0.6105869542807341,,,-0.13140439987182617,100.9475827217102,103.04923057556152,-0.41965246200561523,-28.91072928905487,-26.487579941749573,1.1159915924072266,-4.67836332321167,3.9860639572143555,-0.7077233697907722,-2.5758844095347917,4.286532951486441,1.823714962197999,-2.1024789136768782,-0.3004689942720855 +karman,karman_re50,193,194,77.2,0.15357037773355842,1.572389097418636,0.15163939679041505,0.4568491713143885,-2.242793096229434,4.399662953801453,0.7248682668432593,-0.7930565625429153,,,1.6863048076629639,100.40115118026733,103.27240824699402,-3.4768879413604736,-30.449309945106506,-27.353301644325256,1.4773141145706177,-4.971581935882568,4.504830360412598,-0.5996957323677035,-2.483239163478414,4.379178197542818,2.077009846938321,-2.4883427724041542,0.12565216286977954 +karman,karman_re50,194,195,77.60000000000001,-0.1865371159510687,1.2365472503006458,0.20531564950942993,0.22409418306779116,-2.2324486635625362,3.9901805575937033,0.699576223269105,-0.8332962170243263,,,3.716728091239929,98.80622029304504,103.16262543201447,-6.993360817432404,-30.536484718322754,-27.103205025196075,1.731536626815796,-5.200878143310547,4.958564281463623,-0.4716085287628291,-2.5163156374095497,4.346101723611683,2.203145155578625,-2.684562505900997,0.6124625578519405 +karman,karman_re50,195,196,78.0,-0.5049715982750058,0.805509538622573,0.26431502192281187,0.023658445570617914,-1.9948864355683327,3.3643138594925404,0.557401217520237,-0.8800840005278587,,,5.57350218296051,96.14222645759583,102.82016694545746,-9.753913432359695,-27.875813841819763,-25.064491480588913,1.8187564611434937,-5.243125915527344,5.175965309143066,-0.30721443788084457,-2.70224952043184,4.160167840589392,2.1259708990243382,-2.540876395095504,1.0157974685536741 +karman,karman_re50,196,197,78.4,-0.7799915038049221,0.2959683558856341,0.30323795294862066,-0.17351559790768079,-1.6391894314438105,2.6371304411441088,0.3344693686813116,-0.9702506940811872,,,6.856828927993774,92.88747906684875,102.49860882759094,-10.700442641973495,-21.405668556690216,-20.4275019466877,1.6421165466308594,-4.978818416595459,5.021188735961914,-0.11287979561285706,-2.9937957319873103,3.868621629033922,1.7549963422437165,-1.9850226846081487,1.1525671069279921 +karman,karman_re50,197,198,78.80000000000001,-0.9384489967487752,-0.2159575160476379,0.2679153476492502,-0.4026183014502749,-1.2543057091534138,2.0005885744467378,0.1471614232286811,-0.9599828626960516,,,7.350814342498779,89.75135087966919,102.27102041244507,-9.70778614282608,-11.036743223667145,-13.205575942993164,1.1455518007278442,-4.395453929901123,4.513032913208008,0.08236434668690507,-3.2387536515280466,3.6236637094931856,1.0631874540409392,-1.1567002783730764,0.8893692037148222 +karman,karman_re50,198,199,79.2,-0.8966969908215106,-0.5426673451438546,0.10036147432401776,-0.695974042173475,-0.9192324359901249,1.7445117118768394,0.1916930195875466,-0.5358463968150318,,,6.873467564582825,87.69550323486328,101.97422206401825,-7.256355229765177,1.9018962979316711,-4.438882227987051,0.37605008482933044,-3.5632236003875732,3.888484477996826,0.2069686768448997,-3.1805160408835254,3.681901320137707,0.16908140798443075,-0.3827075595040479,0.2065831578591193 +karman,karman_re100,2,3,0.8,2.5434098206460476,-4.593273741193116,-1.7466581193730235,-0.9499064180999994,0.3902101016137749,2.9981411644257605,-1.2087341747246683,-2.0272582478355616,,,-12.563753128051758,95.55662274360657,105.08719682693481,-2.686323970556259,20.538637042045593,18.784435838460922,1.3112810850143433,-4.715657711029053,1.8277181386947632,1.7518352580237748,-5.011969219006958,1.850448142014274,-0.44055417300943156,0.2963115079779053,-0.022730003319510805 +karman,karman_re100,3,4,1.2000000000000002,1.7849826253950596,-3.8053024909459054,-1.9935756572522223,-2.202168689109385,-1.0302071459591389,3.762856940738857,-0.5201484309509397,-2.070504007861018,,,-13.722997903823853,94.70482468605042,105.68225979804993,-3.6416253075003624,5.98134882748127,9.13544986397028,1.0120980739593506,-3.534660577774048,2.9372262954711914,1.4513097730929385,-4.111449324815496,2.750968036205737,-0.43921169913358793,0.5767887470414479,0.18625825926545447 +karman,karman_re100,4,5,1.6,0.6374265067279339,-2.036701567703858,-1.3506052491720766,-2.0637839916162193,-2.281723078340292,4.855797626078129,0.5400856025516987,-1.2015518732368946,,,-12.59177029132843,94.72340941429138,104.35087382793427,-3.4547060378827155,-8.316131681203842,-3.7121050409041345,0.6309263706207275,-2.352982997894287,5.559906959533691,0.7767805311444655,-2.7248945663107627,4.13752279471047,-0.145854160523738,0.37191156841647555,1.4223841648232218 +karman,karman_re100,5,6,2.0,-0.429347186582163,0.07859324978198856,-0.3772647905861959,-1.1838767677545547,-2.6480110827833414,5.225745495408773,0.8653406985104084,-0.9173296857625246,,,-9.577494859695435,94.96811032295227,103.03094983100891,-2.377067506313324,-20.90418189764023,-14.898079633712769,0.13141797482967377,-2.4106335639953613,7.03110408782959,-0.029974792221940057,-2.2995318758304633,4.562885485190769,0.16139276705161382,-0.11110168816489807,2.468218602638821 +karman,karman_re100,6,7,2.4000000000000004,-0.90946996351704,1.862489734776318,0.08855271153151989,-0.7323645404540002,-2.9564336873590946,5.067643942311406,0.7023068610578775,-1.5518199652433395,,,-6.057429313659668,95.09647488594055,103.21791172027588,-1.4667920768260956,-30.97527027130127,-21.92392572760582,-0.34950539469718933,-2.791900634765625,7.2478108406066895,-0.7103376303980063,-2.5127445590437034,4.349672801977529,0.360832235700817,-0.2791560757219216,2.8981380386291606 +karman,karman_re100,7,8,2.8000000000000003,-0.5774656892754138,3.249786444939673,0.024404958821833134,-0.5286557716317475,-3.5475511103868484,4.604918067343533,1.0111596202477813,-1.525231869891286,,,-2.0921051502227783,95.60368061065674,103.52323651313782,-1.059277355670929,-36.463192105293274,-26.716844737529755,-0.8866881132125854,-2.4229443073272705,7.149287700653076,-1.2394407118035733,-2.1088325458466555,4.753584815174577,0.35275259859098784,-0.31411176148061504,2.3957028854784994 +karman,karman_re100,8,9,3.2,0.5562750739045441,4.496844718232751,-0.5417235661298037,-0.5271720583550632,-3.8017453625798225,4.019135958515108,1.4508824096992612,-0.8999805431813002,,,2.1755754947662354,96.17626070976257,103.52250933647156,-0.8531749248504639,-38.30200433731079,-28.99579107761383,-1.4705945253372192,-1.8637278079986572,6.47968864440918,-1.7150580546962693,-1.533771090667093,5.328646270354139,0.24446352935905002,-0.3299567173315643,1.1510423740550406 +karman,karman_re100,9,10,3.6,2.057035453617573,5.060071009211242,-1.2739544035866857,-0.49087335355579853,-3.3367255236953497,3.716590697877109,1.4191149966791272,-0.49849553033709526,,,6.105139851570129,96.75838947296143,103.70090901851654,-0.7145315408706665,-36.25679314136505,-28.04991602897644,-1.657439947128296,-1.7638616561889648,5.755279541015625,-1.929867737370611,-1.5753159348209211,5.287101426200311,0.2724277902423151,-0.1885457213680437,0.4681781148153137 +karman,karman_re100,10,11,4.0,3.2733094412833452,4.741150070913136,-1.8414355581626296,-0.409561675041914,-2.1556688006967306,3.718135296367109,1.0640217224135995,-0.02762535586953163,,,9.451591968536377,96.53085470199585,104.12144660949707,-1.4320723712444305,-30.363166332244873,-24.48720410466194,-1.4349493980407715,-2.1529524326324463,5.309651851654053,-1.8082340234418772,-2.0397004514349772,4.822716909586255,0.37328462540110574,-0.11325198119746904,0.48693494206779775 +karman,karman_re100,11,12,4.4,3.1002992764115334,3.7198467180132866,-1.7645303159952164,-0.4287613555788994,-0.8191209053620696,4.139000433497131,0.36705436650663614,-0.08501217234879732,,,11.96923553943634,95.25955319404602,104.94389235973358,-2.8845325112342834,-20.030780136585236,-18.467111885547638,-1.096930742263794,-3.2125113010406494,5.004480361938477,-1.4187176733270426,-2.9511816653162866,3.9112356957049457,0.3217869310632486,-0.26132963572436285,1.093244666233531 +karman,karman_re100,12,13,4.800000000000001,1.757805235683918,1.9650416215881705,-0.9903194149956107,-0.22283359430730343,0.5362111260183156,4.849076503887773,-0.4141924437135458,-0.29217376140877604,,,13.108816742897034,94.15746927261353,105.42429387569427,-4.047739878296852,-5.5968619883060455,-8.906346186995506,-0.8209068775177002,-4.780428886413574,4.332826137542725,-0.7494500415488385,-3.972882014529554,2.8895353464916784,-0.07145683596886165,-0.8075468718840204,1.4432907910510462 +karman,karman_re100,13,14,5.2,0.2796921180561185,-0.29357238236116245,0.06698254583170637,0.41365720971953124,1.5925182960927486,5.231794901192188,-0.8965167216956615,-0.20051514729857445,,,12.019169330596924,94.07121539115906,104.26255464553833,-4.0464655321557075,8.756628632545471,3.9006530481856316,-0.5146970748901367,-6.13303279876709,3.391568183898926,0.11196599183499413,-4.603656920489784,2.2587604405314483,-0.6266630667251308,-1.529375878277306,1.1328077433674775 +karman,karman_re100,14,15,5.6000000000000005,-0.684386701323092,-2.453108609188348,0.7568164146505296,0.8292461279779673,2.365105552598834,4.866414703428745,-0.964033417403698,0.4370387177914381,,,8.931547403335571,94.1527009010315,103.0757486820221,-2.9877394437789917,21.5410515666008,15.019716322422028,-0.03636343777179718,-6.7743096351623535,2.91085147857666,0.9355946097437555,-4.6919540254253995,2.1704633355958323,-0.9719580475155527,-2.082355609736954,0.7403881429808279 +karman,karman_re100,15,16,6.0,-0.9911522502079606,-4.067304311320186,0.7688968908041716,0.5466415314003825,3.0203801579773426,4.089703317731619,-1.1016614735126495,0.8170572109520435,,,5.232787132263184,93.90735030174255,103.05510759353638,-2.158239483833313,31.833529472351074,22.116585075855255,0.5091121196746826,-7.086981773376465,2.5878896713256836,1.5512350230256484,-4.871941490524207,1.9904758704970256,-1.0421229033509658,-2.215040282852258,0.597413800828658 +karman,karman_re100,16,17,6.4,-0.5341351497918367,-5.3289353381842375,0.14369445852935314,-0.24674623273313046,3.4687009174376726,3.440556931309402,-1.590550527907908,0.2875998616218567,,,1.0350346565246582,93.93398761749268,102.99880504608154,-1.9013971090316772,37.44255304336548,26.871100068092346,1.1869723796844482,-7.256282806396484,2.229677677154541,2.032410289297301,-5.5113016915103765,1.3511156695108557,-0.8454379096128526,-1.7449811148861079,0.8785620076436853 +karman,karman_re100,17,18,6.800000000000001,0.8421501261182129,-6.353575270622969,-0.9158928878605366,-0.9896356496028602,3.652470652014017,3.2863691449165344,-1.935955137014389,-0.21943962201476097,,,-3.5174965858459473,94.16049122810364,102.86763906478882,-1.811380684375763,39.45947885513306,29.09882813692093,1.8511027097702026,-6.903808116912842,2.026543140411377,2.4231991822664822,-5.963015548293363,0.8994018127278696,-0.5720964724962796,-0.9407925686194787,1.1271413276835074 +karman,karman_re100,18,19,7.2,2.7733915485441685,-6.687071872875094,-1.9383321050554514,-1.1032726615667343,3.3721309155225754,3.548883949406445,-1.7733232816681266,-0.1745156478136778,,,-7.799139618873596,94.1098690032959,102.8875082731247,-1.8737569451332092,37.47028112411499,28.02950292825699,2.0860366821289062,-5.9846391677856445,1.777233362197876,2.550391929569335,-5.750328569957223,1.112088791064009,-0.4643552474404289,-0.23431059782842123,0.665144571133867 +karman,karman_re100,19,20,7.6000000000000005,4.095541313290596,-5.994114908389747,-2.364387852139771,-0.633234390988946,2.5355208199471235,3.8178685354068875,-1.1594606330618262,0.21659955382347107,,,-11.535310745239258,93.12832355499268,103.448486328125,-2.889852225780487,31.446722149848938,24.31952804327011,1.770702838897705,-4.900747299194336,1.5767778158187866,2.286104079317407,-4.9475301786610375,1.9148871823601947,-0.5154012404197017,0.046782879466701566,-0.3381093665414081 +karman,karman_re100,20,21,8.0,3.9238352328538895,-4.4143389677628875,-2.1003863075748086,-0.27693738229572773,0.9920474840328097,4.101006081327796,-0.490840757265687,0.010365969501435757,,,-14.282447099685669,91.07217192649841,104.69254851341248,-4.2934805154800415,20.267808437347412,17.634133994579315,1.1937004327774048,-3.9601614475250244,2.063188076019287,1.683591068227208,-4.073121282963507,2.789296078057725,-0.48989063544980316,0.11295983543848287,-0.7261080020384378 +karman,karman_re100,21,22,8.4,2.4883514270186424,-2.493013977073133,-1.376201049424708,-0.26405067183077335,-0.6244576070457697,4.697860451415181,0.27326797135174274,-0.0779216643422842,,,-15.313315391540527,88.63152265548706,105.47349452972412,-4.626933205872774,3.672696277499199,6.962403189390898,0.74370276927948,-3.0977869033813477,4.019021034240723,0.9508141752179476,-3.073833804726881,3.788583556294351,-0.20711140593846766,-0.023953098654466487,0.2304374779463716 +karman,karman_re100,22,23,8.8,0.6422937149181962,-0.37937208981020376,-0.34171081642853096,-0.04112791793886572,-1.5923172468319535,5.424467148259282,1.0594131890684366,0.5265091313049197,,,-14.2930269241333,87.49072551727295,105.2129864692688,-3.651874139904976,-14.969705045223236,-6.779030337929726,0.3608790934085846,-2.568655490875244,6.627094745635986,0.14468926527924417,-2.045727407406531,4.816689953614701,0.21618982812934043,-0.5229280834687131,1.8104047920212851 +karman,karman_re100,23,24,9.200000000000001,-0.5141334841027856,1.905280107166618,0.44945377158001065,0.3847740590572357,-2.036022488027811,5.608937470242381,1.3218990061432123,0.6077755242586136,,,-10.186457633972168,88.33985328674316,103.93016338348389,-0.4827447235584259,-31.183254718780518,-20.332778245210648,-0.2614800035953522,-2.679436683654785,7.695155620574951,-0.7266575118770978,-1.7024532366060825,5.15996412441515,0.46517750828174564,-0.9769834470487027,2.5351914961598014 +karman,karman_re100,24,25,9.600000000000001,-0.691126799210906,3.738131606951356,0.6071941461414099,0.5232614930719137,-2.798211295157671,5.332132568582892,1.28257111646235,-0.2330690622329712,,,-4.1250914335250854,90.18001556396484,102.58317291736603,2.296161651611328,-42.1967476606369,-29.752591252326965,-0.9540444612503052,-2.6841516494750977,7.469958782196045,-1.425691373336143,-1.7538855344345161,5.108531826586717,0.47164691208583776,-0.9302661150405815,2.3614269556093284 +karman,karman_re100,25,26,10.0,0.07981940871104598,5.116866668686271,0.20743743516504765,0.49469427904114127,-3.6572867538779974,4.618812818080187,1.772778108716011,-0.1117305364459753,,,2.1642446517944336,92.21569895744324,101.78018808364868,2.614790201187134,-47.995758056640625,-34.869641065597534,-1.7347157001495361,-1.9936904907226562,6.700107097625732,-1.951529115371832,-1.1128017583213103,5.749615602699922,0.2168134152222958,-0.8808887324013459,0.9504914949258101 +karman,karman_re100,26,27,10.4,1.8500137375667691,6.222304189577699,-0.7468878757208586,0.356237986125052,-4.005294293165207,3.9687994867563248,2.1805758588016033,0.3558574244379997,,,8.192640542984009,93.85675191879272,101.47349238395691,1.9137665629386902,-49.65104162693024,-35.69270819425583,-2.3594110012054443,-1.2807016372680664,5.560535430908203,-2.373133516449172,-0.5794912881596348,6.282926072861597,0.013722515243727695,-0.7012103491084316,-0.7223906419533943 +karman,karman_re100,27,28,10.8,4.0439339354634285,6.547365104779601,-1.8304691184312105,0.38299569860100746,-3.5973074845969677,3.62285174196586,2.0218161516822875,0.4463248187676072,,,13.917604088783264,94.60339546203613,101.3777107000351,0.8091539144515991,-46.87967598438263,-32.524022459983826,-2.4206035137176514,-1.067385196685791,4.70844841003418,-2.497108964972789,-0.7871143415697168,6.075303019451516,0.07650545125513775,-0.2802708551160742,-1.3668546094173362 +karman,karman_re100,28,29,11.200000000000001,5.3962296806275845,5.965728429146111,-2.472069929353893,0.45208982191979885,-2.4345689453184605,3.474853583611548,1.3792886165902019,0.32400828786194324,,,18.95439624786377,94.13063526153564,101.7967939376831,-0.9235307574272156,-38.81608843803406,-25.3742977976799,-1.9783029556274414,-1.616365909576416,4.405108451843262,-2.275277719297931,-1.6274001493257937,5.235017211695439,0.2969747636704896,0.011034239749377672,-0.8299087598521773 +karman,karman_re100,29,30,11.600000000000001,4.825809504836798,4.65293531306088,-2.250079298391938,0.3256509080529213,-0.8697712328284979,3.8022741209715605,0.49653672613203526,0.12330221943557262,,,21.991929411888123,92.33714938163757,102.2157222032547,-1.679551973938942,-21.997743844985962,-13.035034760832787,-1.4344903230667114,-2.983045816421509,4.351139545440674,-1.774589670461628,-2.781846993717507,4.080570367303725,0.34009934739491654,-0.20119882270400158,0.2705691781369488 +karman,karman_re100,30,31,12.0,2.9010919388383627,2.8042049380019307,-1.3255247613415122,0.2500424161553383,0.46217883937060833,4.582080990076065,-0.30506681650877,-0.14795479364693165,,,22.149181365966797,91.06659889221191,102.77105569839478,-1.2929072603583336,6.582187861204147,2.271571569144726,-1.1933469772338867,-4.668217182159424,3.856999397277832,-1.0694997419945014,-3.8301695068243213,3.032247854196911,-0.12384723523938534,-0.8380476753351025,0.8247515430809211 +karman,karman_re100,31,32,12.4,0.8284067152999341,0.535848390427418,-0.20690342353191227,0.4145998682361096,1.3932656729593873,5.30671514570713,-0.8146576583385468,-0.2360496437177062,,,18.506503105163574,92.08974242210388,102.9472827911377,-0.08468851447105408,33.23241472244263,16.88118353486061,-0.9714488983154297,-6.055218696594238,3.1111814975738525,-0.20436798592852987,-4.49660312836657,2.365814232654662,-0.7670809123868998,-1.5586155682276681,0.7453672649191905 +karman,karman_re100,32,33,12.8,-0.5077321548014879,-1.6803615726530552,0.6023652385920286,0.6969983223825693,2.20820726826787,5.409886362031102,-0.8460127282887697,0.5161818116903305,,,12.269172072410583,93.88285279273987,102.42872536182404,0.9542033076286316,46.94617986679077,27.90452390909195,-0.45377376675605774,-6.731426239013672,2.8428165912628174,0.6408755095090984,-4.537608717763755,2.324808643257477,-1.094649276265156,-2.193817521249917,0.5180079480053403 +karman,karman_re100,33,34,13.200000000000001,-1.1360910721123219,-3.226306405849755,0.8310972480103374,0.5261034239083529,2.8801364824175835,4.99734515324235,-0.7453789003193378,1.3893786817789078,,,5.205705761909485,95.38568258285522,102.05497443675995,1.3187140226364136,52.786052227020264,34.6181184053421,0.13490352034568787,-6.938529014587402,2.8396849632263184,1.2304856260292145,-4.406001630433621,2.4564157305876115,-1.0955821056835267,-2.5325273841537816,0.3832692326387068 +karman,karman_re100,34,35,13.600000000000001,-1.032680505886674,-4.210224375128746,0.5841553211212158,0.1356301363557577,3.3660572953522205,4.476998234167695,-1.0386083740741014,1.2888405472040176,,,-1.8615424633026123,96.52966856956482,102.09985375404358,0.5030617117881775,55.60632944107056,38.104672729969025,0.7131134271621704,-7.135851860046387,2.6107852458953857,1.6057435110814482,-4.78948179549238,2.0729355655288524,-0.8926300839192778,-2.346370064554007,0.5378496803665334 +karman,karman_re100,35,36,14.0,-0.044246509787626565,-4.991414025425911,0.003322027623653412,-0.03760245454031974,3.5611100029200315,4.057628917507827,-1.5245095128193498,0.512090977281332,,,-8.793824911117554,96.86163067817688,102.17322707176208,-0.6826132535934448,56.08623027801514,38.297948241233826,1.3420194387435913,-7.095191955566406,2.3720786571502686,1.9036825518838283,-5.424934454811693,1.4374829062095398,-0.561663113140237,-1.6702575007547136,0.9345957509407288 +karman,karman_re100,36,37,14.4,1.4463802799582481,-5.406796233728528,-0.7707166951149702,-0.09505311027169228,3.2589896582067013,3.841478726826608,-1.7453186446800828,-0.23164763115346432,,,-15.503022074699402,96.06712460517883,102.54760086536407,-2.07950621843338,53.03454399108887,34.45657044649124,1.762679100036621,-6.5337815284729,2.181612014770508,2.0621057678864703,-5.713704615765064,1.148712745256169,-0.29942666784984917,-0.8200769127078367,1.0328992695143389 +karman,karman_re100,37,38,14.8,2.8417124412953854,-5.1583676831796765,-1.4326347736641765,-0.023557106032967567,2.35242722555995,3.766028443351388,-1.5268891584128141,-0.7013510912656784,,,-21.566829085350037,93.46612691879272,103.56792509555817,-3.6624401807785034,43.94037127494812,26.20822787284851,1.747351884841919,-5.525385856628418,1.9741939306259155,1.967357246793936,-5.428046511977291,1.4343708490439417,-0.22000536195201703,-0.09733934465112704,0.5398230815819738 +karman,karman_re100,38,39,15.200000000000001,3.1948857940733433,-4.178702016361058,-1.6547621926292777,-0.11463859118521214,0.9153124410659075,3.9206730434671044,-1.0071926517412066,-1.0990728624165058,,,-25.501403212547302,89.47667479515076,104.50407564640045,-3.646005690097809,21.69811874628067,12.461201846599579,1.4191464185714722,-4.417978286743164,2.2044005393981934,1.5937211534740465,-4.7483968860138255,2.1140204750074068,-0.17457473490257436,0.3304185992706614,0.09038006439078661 +karman,karman_re100,39,40,15.600000000000001,2.318234648555517,-2.6412162696942687,-1.3518381165340543,-0.38544158451259136,-0.6557553424499929,4.436117596924305,-0.22887252271175385,-1.1135003878735006,,,-25.55815875530243,88.48479986190796,105.01390993595123,-2.0155264995992184,-12.391293793916702,-4.26201531663537,1.151934027671814,-3.351814031600952,3.8367297649383545,1.0073372600942745,-3.7305239971568582,3.131893363864374,0.14459676757753948,0.3787099655559061,0.7048364010739805 +karman,karman_re100,40,41,16.0,0.7684135343879461,-0.7811705945641734,-0.5865944185643457,-0.40477530274074525,-1.748944167047739,5.1238397136330605,0.5676201544702053,-0.6137038581073284,,,-20.74943780899048,91.15650653839111,104.55430746078491,0.27067363262176514,-38.91279697418213,-19.32167261838913,0.8500692844390869,-2.672001838684082,6.329621315002441,0.2979317731090521,-2.6888853808106767,4.173531980210555,0.5521375113300349,0.01688354212659471,2.1560893347918864 +karman,karman_re100,41,42,16.400000000000002,-0.5452547338791192,1.2405296438373625,0.2105741878040135,-0.12410635827109218,-2.1055988036096096,5.323487333953381,0.9155264124274254,-0.27454597875475883,,,-13.383233547210693,94.12792921066284,103.41496467590332,1.6585364937782288,-51.32113695144653,-30.140320956707,0.19364075362682343,-2.7818567752838135,7.501190185546875,-0.47312737954378303,-2.2338999132243282,4.628517447796904,0.6667681331706065,-0.5479568620594852,2.872672737749971 +karman,karman_re100,42,43,16.8,-1.0938576888293028,2.9062211979180574,0.543754082173109,-0.006349524483084679,-2.6429377030581236,5.027700448408723,0.8857038337737322,-0.8715300355106592,,,-5.3748250007629395,96.7231035232544,102.87747383117676,2.125835418701172,-56.672388315200806,-36.54153347015381,-0.5262085795402527,-2.9808509349823,7.4451003074646,-1.108407869635587,-2.272901338415851,4.589516022605381,0.5821992900953343,-0.7079495965664488,2.8555842848592183 +karman,karman_re100,43,44,17.2,-0.7559194345958531,4.22039080876857,0.39160146843641996,0.027283502276986837,-3.332023974508047,4.344320739619434,1.4495785580947995,-0.43286685831844807,,,2.6456892490386963,98.69014620780945,102.6048481464386,1.5750735998153687,-59.61102843284607,-39.800503849983215,-1.3334007263183594,-2.442291736602783,6.927313804626465,-1.6096209017840493,-1.5354762440477836,5.326941116973448,0.2762201754656899,-0.9068154925549996,1.6003726876530164 +karman,karman_re100,44,45,17.6,0.7282652659341693,5.525820655748248,-0.34973002038896084,0.028805225156247616,-3.7313327193260193,3.6904829903505743,2.094320545438677,0.45730837155133486,,,10.480031371116638,100.04887580871582,102.33278572559357,0.8002027869224548,-60.100603103637695,-39.414797723293304,-2.154155731201172,-1.6899542808532715,5.815095901489258,-2.107500662858675,-0.692294415969609,6.170122945051624,-0.046655068342496886,-0.9976598648836625,-0.3550270435623659 +karman,karman_re100,45,46,18.0,2.9155912343412638,6.276250118389726,-1.423702808097005,0.06818561814725399,-3.4890458919107914,3.3924717572517693,2.202813688199967,0.9165814844891429,,,17.899009585380554,100.87952613830566,102.32740938663483,-0.06868690252304077,-56.977808475494385,-34.476543962955475,-2.4986820220947266,-1.3247175216674805,4.775747299194336,-2.3937080315868657,-0.5504090598998483,6.312008301121384,-0.10497399050786083,-0.7743084617676321,-1.5362610019270484 +karman,karman_re100,46,47,18.400000000000002,4.847129806876183,6.138669326901436,-2.4277521297335625,-0.008374452590942383,-2.4587863590568304,3.31137579632923,1.7926123109646142,1.126438262872398,,,24.038484692573547,100.99841356277466,102.4892657995224,-1.0617546737194061,-46.15824222564697,-24.3457593023777,-2.257676601409912,-1.5707416534423828,4.211227893829346,-2.3412358962567827,-1.0868629498696598,5.775554411151573,0.08355929484687064,-0.483878703572723,-1.5643265173222272 +karman,karman_re100,47,48,18.8,4.9108886159956455,5.169772426597774,-2.6126118609681726,-0.3143351059406996,-0.9762805420905352,3.601883305236697,0.9231900330632925,0.8700995240360498,,,26.71356201171875,101.25142335891724,101.9894003868103,-1.1325225234031677,-15.439440310001373,-8.700796216726303,-1.769968867301941,-2.660625457763672,4.201745510101318,-1.9717069182383704,-2.2238775697376436,4.638539791283589,0.2017380509364295,-0.43674788802602826,-0.43679428118227026 +karman,karman_re100,48,49,19.200000000000003,3.3219491597265005,3.5333788255229592,-1.9313943339511752,-0.5408395081758499,0.5160364089533687,4.3200894724577665,0.039440346881747246,0.5949171027168632,,,25.251436233520508,102.45517492294312,102.32763290405273,-1.2872673571109772,22.526557743549347,7.525160908699036,-1.4818971157073975,-4.254806995391846,3.879639148712158,-1.3476004164511024,-3.379629313203098,3.482788047818134,-0.13429669925629506,-0.8751776821887476,0.3968511008940241 +karman,karman_re100,49,50,19.6,1.241913065314293,1.4589940838050097,-0.8360983629245311,-0.4302836605347693,1.4735424192622304,5.1113206427544355,-0.642567640170455,0.18840713892132044,,,20.08654773235321,102.85052061080933,103.1138926744461,-0.9664632380008698,43.707239627838135,20.256344228982925,-1.2023048400878906,-5.76853609085083,3.1599135398864746,-0.5564478455389866,-4.271546936957733,2.5908704240634997,-0.645856994548904,-1.4969891538930975,0.569043115822975 +karman,karman_re100,50,51,20.0,-0.3363724099472165,-0.7373983389697969,0.15402433928102255,-0.028323731385171413,2.163778757676482,5.392261082306504,-0.8053130004554987,0.5531527567654848,,,13.261178135871887,102.92278528213501,103.64453494548798,-0.46869218349456787,50.27104616165161,29.36108410358429,-0.6844732761383057,-6.626391410827637,2.8424715995788574,0.28123740978692646,-4.484382354985495,2.378035006035737,-0.9657106859252321,-2.1420090558421414,0.4644365935431205 +karman,karman_re100,51,52,20.400000000000002,-1.1691924883052707,-2.394452574662864,0.6639944622293115,0.15879643615335226,2.713259542360902,5.125790368765593,-0.7055210880935192,1.3022173661738634,,,6.092014908790588,103.29149961471558,104.10526692867279,-0.254194438457489,53.00077199935913,34.787262976169586,-0.1169591024518013,-6.911383628845215,2.874941825866699,0.9132237006346217,-4.353876309552606,2.5085410514686255,-1.030182803086423,-2.5575073192926085,0.3664007743980737 +karman,karman_re100,52,53,20.8,-1.2623434886336327,-3.4999377094209194,0.6380309350788593,0.013718381524085999,3.1963461078703403,4.62662277277559,-0.9516166755929589,1.2931127566844225,,,-1.0256528854370117,103.56589555740356,104.31745052337646,-0.8495822548866272,54.45960760116577,37.40917891263962,0.4335324466228485,-7.164649963378906,2.6359035968780518,1.3348462612328238,-4.67571563663691,2.1867017243843225,-0.9013138146099753,-2.4889343267419965,0.4492018724937292 +karman,karman_re100,53,54,21.200000000000003,-0.4877186147496104,-4.412362352013588,0.17296569421887398,-0.14178722631186247,3.4273830242455006,4.158145049586892,-1.429882599040866,0.5676178261637688,,,-7.946199178695679,103.72785329818726,104.55430150032043,-1.9851848483085632,53.66832613945007,36.9628831744194,1.0531078577041626,-7.200906753540039,2.3278396129608154,1.6828372039124964,-5.301183100453903,1.5612342605673297,-0.6297293462083338,-1.899723653086136,0.7666053523934857 +karman,karman_re100,54,55,21.6,0.9054836118593812,-4.939294653013349,-0.5348173435777426,-0.16415107529610395,3.1410842202603817,3.8944274419918656,-1.6368775395676494,-0.13267085887491703,,,-14.446699619293213,102.73652076721191,104.56496477127075,-3.4992605447769165,49.052950739860535,32.29162395000458,1.4929616451263428,-6.655542850494385,2.1300735473632812,1.8838046697102564,-5.571887313584693,1.2905300474365395,-0.3908430245839136,-1.083655536909692,0.8395434999267417 +karman,karman_re100,55,56,22.0,2.2837496362626553,-4.794857697561383,-1.214646501466632,-0.14554336667060852,2.259082393720746,3.867369960062206,-1.4082567067816854,-0.5574310198426247,,,-20.18941044807434,100.1872181892395,105.03243803977966,-5.525793135166168,38.43425810337067,23.66369515657425,1.5268017053604126,-5.6159868240356445,1.991668939590454,1.8287176521756479,-5.272901152439259,1.5895162085819732,-0.30191594681523526,-0.3430856715963859,0.4021527310084809 +karman,karman_re100,56,57,22.400000000000002,2.8038627933710814,-3.900679759681225,-1.4844546094536781,-0.1650464255362749,0.8814672473818064,4.083727719262242,-0.8752469439059496,-0.8690266404300928,,,-23.703119158744812,96.54461741447449,105.65153658390045,-6.080159544944763,16.268238425254822,10.124306380748749,1.275164008140564,-4.440047740936279,2.384467363357544,1.487685846368541,-4.575840692492242,2.2865766685289906,-0.212521838227977,0.13579295155596238,0.09789069482855339 +karman,karman_re100,57,58,22.8,2.078975783661008,-2.4117110879160464,-1.1776037863455713,-0.2762317890301347,-0.6059735896997154,4.624074790626764,-0.07911166176199913,-0.7641969132237136,,,-23.303917050361633,94.97827887535095,106.10468089580536,-4.175506578758359,-14.430244266986847,-5.673810793086886,1.052129864692688,-3.3440561294555664,4.184351921081543,0.9198059497496378,-3.5346694708673745,3.3277478901538577,0.13232391494305018,0.19061334141180808,0.8566040309276852 +karman,karman_re100,58,59,23.200000000000003,0.6459567230194807,-0.5197451610001735,-0.40792936488287523,-0.16990200674626976,-1.6547718551009893,5.204930901527405,0.6369622424244881,-0.3808473702520132,,,-18.597328662872314,96.22249007225037,105.56529760360718,-1.4632344245910645,-36.37361824512482,-19.648197293281555,0.701640248298645,-2.747272491455078,6.506291389465332,0.19822635216834267,-2.5982010611420936,4.264216299879139,0.5034138961303023,-0.14907143031298453,2.2420750895861934 +karman,karman_re100,59,60,23.6,-0.5521373241208494,1.47893070243299,0.2906392328441143,0.029141141567379236,-2.076296368613839,5.264440551400185,0.8877189829945564,-0.3008584026247263,,,-11.865642666816711,98.26028347015381,104.92802560329437,0.14607906341552734,-46.94458842277527,-29.55111563205719,0.04713413119316101,-2.8879787921905518,7.458131313323975,-0.5640515011027845,-2.2702659629676587,4.5921513980535735,0.6111856322959455,-0.6177128292228931,2.865979915270401 +karman,karman_re100,60,61,24.0,-1.023008837364614,3.1013600528240204,0.5396532360464334,0.05629763472825289,-2.701027086004615,4.869899479672313,0.9468349162489176,-0.8073572535067797,,,-4.619187116622925,99.65878129005432,104.34008240699768,0.7215380668640137,-51.95947885513306,-35.06391942501068,-0.6516400575637817,-2.9514148235321045,7.381661415100098,-1.1828321572997171,-2.1929552221621678,4.669462138859064,0.5311920997359354,-0.7584596013699367,2.7121992762410336 +karman,karman_re100,61,62,24.400000000000002,-0.5652221734635532,4.514090251177549,0.2827639691531658,0.0003057648427784443,-3.4310680348426104,4.141310811974108,1.602301257662475,-0.22646551951766014,,,2.5563597679138184,100.79938173294067,104.15464639663696,0.05939602851867676,-54.70414757728577,-37.82853186130524,-1.4989063739776611,-2.298190116882324,6.773858547210693,-1.7216353532328597,-1.3357482791590556,5.526669081862177,0.22272897925519852,-0.9624418377232686,1.2471894653485167 +karman,karman_re100,62,63,24.8,1.2328661978244781,5.924043245613575,-0.7421737536787987,-0.2514813095331192,-3.8516076747328043,3.45113268122077,2.1700053475797176,0.488403020426631,,,9.934821724891663,101.48948431015015,104.08652722835541,-0.9929686784744263,-54.7112762928009,-37.17540204524994,-2.3222970962524414,-1.485288143157959,5.485260963439941,-2.25937934738193,-0.5933152102102346,6.269102150810998,-0.06291774887051149,-0.8919729329477244,-0.7838411873710562 +karman,karman_re100,63,64,25.200000000000003,3.5339409951120615,6.597525207325816,-1.7817162442952394,-0.029491493478417397,-3.5767301451414824,3.3360784291289747,2.21677782246843,0.8568254997953773,,,16.759425401687622,101.29567384719849,104.35752272605896,-2.2276610136032104,-50.98505616188049,-32.38936364650726,-2.6020667552948,-1.1473147869110107,4.540738582611084,-2.516239598402819,-0.5321470194384887,6.330270341582743,-0.08582715689198084,-0.615167767472522,-1.789531758971659 +karman,karman_re100,64,65,25.6,5.448675714433193,6.299661821685731,-2.742572338320315,-0.03646896220743656,-2.471423940733075,3.258527722209692,1.6605500131845474,0.8496760856360197,,,22.56409525871277,99.14400577545166,104.73091006278992,-3.568001091480255,-39.621102809906006,-22.52730280160904,-2.2484660148620605,-1.5091369152069092,4.0803961753845215,-2.402637054674804,-1.2595716175975618,5.6028457434236705,0.1541710398127436,-0.24956529760934743,-1.522449568039149 +karman,karman_re100,65,66,26.0,5.216344725340605,5.227371701039374,-2.7209747349843383,-0.22560474462807178,-1.0146640706807375,3.5743009066209197,0.728562125004828,0.44246017932891846,,,25.247499346733093,96.81165814399719,105.03762066364288,-3.2117968425154686,-13.894127309322357,-8.19204244762659,-1.7269207239151,-2.746030807495117,4.108991622924805,-1.9936747881039212,-2.4784084030525824,4.38400895796865,0.2667540641888211,-0.2676224044425348,-0.2750173350438452 +karman,karman_re100,66,67,26.400000000000002,3.4226488787680864,3.4837963758036494,-1.888278522528708,-0.35390816628932953,0.4360470629762858,4.30499273352325,-0.10900408960878849,0.21803888375870883,,,23.87646734714508,97.07306623458862,105.20505607128143,-1.6516650095582008,20.095743238925934,7.569344155490398,-1.426629900932312,-4.387010097503662,3.7622385025024414,-1.3286900948609688,-3.5737622435614345,3.2886551174597978,-0.09793980607134323,-0.8132478539422276,0.47358338504264363 +karman,karman_re100,67,68,26.8,1.2998117599636316,1.3233002100605518,-0.7347499195020646,-0.16968807904049754,1.4066003495827317,5.074914777651429,-0.6716859061270952,0.06322853732854128,,,18.823716044425964,99.0305483341217,105.16435205936432,-0.23454725742340088,40.52480459213257,20.43735980987549,-1.1195873022079468,-5.8312506675720215,3.116250991821289,-0.5046953644727,-4.309627274832008,2.5527900861892245,-0.6148919377352468,-1.5216233927400138,0.5634609056320645 +karman,karman_re100,68,69,27.200000000000003,-0.26767730014398694,-0.8590730139985681,0.20766828674823046,0.14765927335247397,2.1622320637106895,5.3458677139133215,-0.7610076572746038,0.6402167491614819,,,12.297847867012024,100.72898864746094,104.92516458034515,0.41202008724212646,48.09901416301727,29.448416829109192,-0.6036595106124878,-6.618534088134766,2.8696792125701904,0.32764308855420565,-4.4264406341262745,2.4359767268949573,-0.9313025991666934,-2.192093454008491,0.4337024856752332 +karman,karman_re100,69,70,27.6,-1.0516337351873517,-2.4932819651439786,0.6500264862552285,0.24841923732310534,2.7794232591986656,5.108939949423075,-0.7133991457521915,1.3526249676942825,,,5.310001969337463,102.06112861633301,104.96351420879364,0.5927205085754395,51.767587661743164,34.70852971076965,-0.04473491013050079,-6.930976390838623,2.8421096801757812,0.9509163835725307,-4.36417908987208,2.498238271149152,-0.9956512937030315,-2.5667973009665435,0.34387140902662905 +karman,karman_re100,70,71,28.0,-1.070602098479867,-3.6224847426638007,0.5637268768623471,0.05685165524482727,3.295290283858776,4.63499256875366,-1.019375049509108,1.25654018484056,,,-1.6278743743896484,102.986741065979,105.01919984817505,-0.20731985569000244,53.56084704399109,37.191927433013916,0.5213966369628906,-7.202509880065918,2.5644493103027344,1.3815846499501763,-4.7643288039313045,2.098088557089928,-0.8601880129872856,-2.4381810761346134,0.46636075321280623 +karman,karman_re100,71,72,28.400000000000002,-0.2107582986354828,-4.538761684671044,0.06900378502905369,-0.07275072857737541,3.537863725796342,4.1897958144545555,-1.4562387950718403,0.6253861356526613,,,-8.411121368408203,103.33492755889893,104.89914417266846,-1.4547035098075867,52.757298946380615,36.53443902730942,1.1429457664489746,-7.175852298736572,2.291560649871826,1.731044826627029,-5.335651253586189,1.526766107435043,-0.5880990601780545,-1.8402010451503834,0.7647945424367832 +karman,karman_re100,72,73,28.8,1.223573461174965,-5.019105970859528,-0.6542662158608437,-0.08495897054672241,3.253750503063202,3.954584477469325,-1.6286566387861967,-0.003562774509191513,,,-14.705464243888855,102.62423753738403,104.72972691059113,-3.0484244227409363,47.982096672058105,31.72498196363449,1.5536452531814575,-6.595933437347412,2.0887856483459473,1.9142440226576731,-5.561136169273601,1.301281191747632,-0.3605987694762156,-1.0347972680738113,0.7875044565983154 +karman,karman_re100,73,74,29.200000000000003,2.5960728526115417,-4.853905411437154,-1.3059752527624369,-0.015877652913331985,2.356146462261677,3.917168010957539,-1.4087873278185725,-0.46142819337546825,,,-20.265790820121765,100.6913423538208,105.32847940921783,-5.19414097070694,37.124159932136536,22.950227558612823,1.5719064474105835,-5.572264671325684,1.9377896785736084,1.8512379444337803,-5.273595088966865,1.5888222720543672,-0.2793314970231968,-0.29866958235881835,0.3489674065192412 +karman,karman_re100,74,75,29.6,2.9972600750625134,-3.916233777999878,-1.5170956030488014,-0.03693113103508949,0.9719253284856677,4.13370318710804,-0.8408208377659321,-0.7097163470461965,,,-23.36372137069702,97.1933126449585,105.50968647003174,-5.872001871466637,14.635235071182251,9.29376371204853,1.286271095275879,-4.403053283691406,2.363901138305664,1.4936180157165595,-4.530818857900179,2.3315985031210524,-0.2073469204406806,0.1277655742087731,0.03230263518461163 +karman,karman_re100,75,76,30.0,2.165453974157572,-2.3819018970243633,-1.1618303251452744,-0.158206676132977,-0.5470463656820357,4.675174597650766,-0.04361709579825401,-0.6342805572785437,,,-22.634252905845642,95.69587111473083,105.83015978336334,-4.258695803582668,-15.907002985477448,-6.382952816784382,1.0443142652511597,-3.3253090381622314,4.219768524169922,0.9084369796948186,-3.4882503239781717,3.3741670370430605,0.13587728555634104,0.16294128581594025,0.8456014871268613 +karman,karman_re100,76,77,30.400000000000002,0.7107194978743792,-0.47114664266700856,-0.38014808160369284,-0.04957666533300653,-1.5925623010843992,5.214689997956157,0.6225805263966322,-0.34740124829113483,,,-17.902937531471252,96.66649103164673,105.40389716625214,-1.8726244568824768,-37.145909667015076,-20.145928859710693,0.6778218746185303,-2.7841694355010986,6.483981132507324,0.179691293580339,-2.6170092074227873,4.245408153598445,0.4981305810381913,-0.16716022807831132,2.238572978908879 +karman,karman_re100,77,78,30.8,-0.44916197657585144,1.535188697744161,0.3037157584913075,0.15826954040676355,-2.0631239749491215,5.243762396275997,0.8375099860131741,-0.38810400292277336,,,-11.067792773246765,98.110032081604,104.54755127429962,-0.19312798976898193,-47.51795530319214,-29.850786924362183,0.020866479724645615,-2.9273009300231934,7.3935041427612305,-0.585507818597645,-2.3359283747413064,4.526488986279926,0.6063742983222906,-0.5913725552818869,2.8670151564813047 +karman,karman_re100,78,79,31.200000000000003,-0.9024098399095237,3.16069764085114,0.5407403223216534,0.179070804733783,-2.725479658693075,4.8641570610925555,0.9691087761893868,-0.7872621063143015,,,-3.734368085861206,99.52790141105652,104.15168404579163,0.45080333948135376,-52.533549070358276,-35.301850736141205,-0.6950311660766602,-2.9179186820983887,7.346688270568848,-1.2054630050760564,-2.1638258738156564,4.698591487205576,0.5104318389993963,-0.7540928082827323,2.648096783363272 +karman,karman_re100,79,80,31.6,-0.40742798591963947,4.596532322466373,0.25584595277905464,0.10426391963846982,-3.4385668113827705,4.145605373196304,1.677070395089686,-0.0844260212033987,,,3.5366296768188477,100.62919855117798,104.00067567825317,-0.1972109079360962,-55.36080002784729,-38.013771176338196,-1.5702050924301147,-2.2275562286376953,6.702549934387207,-1.7530780530077608,-1.2379665630350227,5.62445079798621,0.18287296057764602,-0.9895896656026726,1.078099136400997 +karman,karman_re100,80,81,32.0,1.2174067087471485,5.942658521234989,-0.6110332906246185,-0.004659872502088547,-3.872878849506378,3.5868496051989496,2.233011706266552,0.5931445630267262,,,10.683202743530273,101.13935470581055,103.79502773284912,-1.115301251411438,-55.56858777999878,-37.39335834980011,-2.3694281578063965,-1.4736948013305664,5.524394512176514,-2.266479054041902,-0.5109166418821891,6.351500719139043,-0.10294910376449451,-0.9627781594483773,-0.8271062069625295 +karman,karman_re100,81,82,32.4,3.6429145839065313,6.648536771535873,-1.8341755494475365,-0.025436514988541603,-3.6383485421538353,3.3359425142407417,2.2642668336629868,0.8901851251721382,,,17.50999689102173,100.81155300140381,103.8496732711792,-2.1868139505386353,-52.16673016548157,-32.69461393356323,-2.6480116844177246,-1.0732128620147705,4.475482940673828,-2.535694972017654,-0.4700417555365508,6.392375605484681,-0.1123167124000708,-0.6031711064782197,-1.9168926648108533 +karman,karman_re100,82,83,32.800000000000004,5.5512599647045135,6.429268047213554,-2.7747536078095436,0.0017527490854263306,-2.676957519724965,3.215148171875626,1.6976366168819368,0.7183157140389085,,,23.28556180000305,98.96684885025024,104.2116105556488,-3.3346109092235565,-41.90767705440521,-23.3559288084507,-2.3179731369018555,-1.4094316959381104,3.9965217113494873,-2.4520677588592332,-1.2110704327567845,5.651346928264448,0.13409462195737776,-0.19836126318132585,-1.6548252169149604 +karman,karman_re100,83,84,33.2,5.44197391718626,5.34220552071929,-2.7853059582412243,-0.12863799929618835,-1.1426425771787763,3.4699883544817567,0.7634692592546344,0.3842959413304925,,,26.038801670074463,96.83176279067993,104.29224967956543,-2.8807383030653,-15.530526638031006,-8.795178309082985,-1.761277198791504,-2.6377429962158203,4.044646739959717,-2.037471423241231,-2.432757488659716,4.429659872361516,0.2761942244497271,-0.20498550755610445,-0.3850131324017996 +karman,karman_re100,84,85,33.6,3.708999138325453,3.649812890216708,-1.9756776746362448,-0.24235621094703674,0.33012041239999235,4.151859320700169,-0.0628461129963398,0.20442818640731275,,,24.619513750076294,97.38811254501343,104.51173186302185,-1.4713354408740997,19.780246913433075,6.958099454641342,-1.462108850479126,-4.247464179992676,3.747389078140259,-1.3920073713286814,-3.513397682443258,3.3490196785779744,-0.07010147915044462,-0.734066497549418,0.39836939956228434 +karman,karman_re100,85,86,34.0,1.5237299958243966,1.576729875523597,-0.8539279806427658,-0.1841259654611349,1.2949579395353794,4.953186260536313,-0.6510091479867697,-0.007060356438159943,,,19.5941299200058,99.16167259216309,104.65177595615387,-0.21629780530929565,41.13653302192688,19.554339349269867,-1.1827926635742188,-5.701300144195557,3.1401829719543457,-0.6013512679529945,-4.2825865871310045,2.5798307738902277,-0.5814413956212242,-1.4187135570645522,0.560352198064118 +karman,karman_re100,86,87,34.4,-0.1237257820321247,-0.6074167613405734,0.10812058462761343,0.09251538722310215,2.082443330436945,5.327742779627442,-0.7938824128359556,0.4946785047650337,,,13.027417659759521,100.6981372833252,104.59229946136475,0.3721758723258972,48.55383634567261,28.71772199869156,-0.6808305978775024,-6.57124137878418,2.8432202339172363,0.23166354952636192,-4.46943364068699,2.392983720334242,-0.9124941474038644,-2.1018077380971896,0.4502365135829942 +karman,karman_re100,87,88,34.800000000000004,-1.0242168791592121,-2.277607680298388,0.6031306693330407,0.18204445950686932,2.699356060475111,5.162361077964306,-0.7116217166185379,1.2761126272380352,,,6.002870202064514,101.91060304641724,104.65377271175385,0.5872547626495361,51.98497176170349,34.237462282180786,-0.12639681994915009,-6.8924970626831055,2.8573224544525146,0.8686600588398735,-4.361854600424188,2.500562760597044,-0.9950568787890236,-2.5306424622589176,0.3567596938554707 +karman,karman_re100,88,89,35.2,-1.161649008281529,-3.4078670432791114,0.5960647249594331,0.030480441637337208,3.2428265549242496,4.722708370536566,-0.9282650426030159,1.3862964697182178,,,-1.068270206451416,102.70658731460571,104.62179183959961,-0.084628164768219,53.92223000526428,37.03037649393082,0.4168907701969147,-7.150174617767334,2.6350507736206055,1.2997312978613922,-4.645176796326252,2.21724056469498,-0.8828405276644775,-2.5049978214410817,0.4178102089256255 +karman,karman_re100,89,90,35.6,-0.4745480546262115,-4.296432947739959,0.2145047765225172,-0.045538501581177115,3.4968717955052853,4.2968078050762415,-1.3949142303317785,0.7070433348417282,,,-7.940420508384705,103.03287506103516,104.43550646305084,-1.2572839856147766,53.487974405288696,36.76004558801651,1.0139920711517334,-7.219011306762695,2.3494129180908203,1.6386227221961327,-5.2554521047504785,1.6069652562707537,-0.6246306510443993,-1.9635592020122168,0.7424476618200666 +karman,karman_re100,90,91,36.0,0.8556332322768867,-4.837435204535723,-0.4401574842631817,-0.02468173624947667,3.292956156656146,4.0222289972007275,-1.6161785461008549,0.0605990644544363,,,-14.446893334388733,102.71425247192383,104.44535911083221,-2.7199357748031616,49.337103962898254,32.3839396238327,1.4644503593444824,-6.7416887283325195,2.1580419540405273,1.844956348608538,-5.544817546928716,1.317599814092517,-0.38050598926405566,-1.1968711814038038,0.8404421399480104 +karman,karman_re100,91,92,36.4,2.246925374493003,-4.750311141833663,-1.0910204146057367,0.06488454528152943,2.468750812113285,3.942469018511474,-1.4463408151641488,-0.42393081821501255,,,-20.167163014411926,100.81803798675537,104.73807752132416,-4.768402874469757,39.3620491027832,23.949237167835236,1.5353646278381348,-5.770300388336182,2.0048859119415283,1.8117279774154689,-5.322706855739184,1.5397105052820488,-0.2763633495773341,-0.44759353259699797,0.46517540665947954 +karman,karman_re100,92,93,36.800000000000004,2.834649756550789,-3.9296451723203063,-1.3956279726698995,0.04339381121098995,1.117113628424704,4.084251006133854,-0.9522110922262073,-0.7873085560277104,,,-23.56281876564026,97.7131187915802,105.07254004478455,-5.6396035477519035,17.4525648355484,10.570909269154072,1.2997057437896729,-4.615270614624023,2.304713249206543,1.4987330066257847,-4.6764930038834995,2.1859243571377327,-0.19902726283611183,0.061222389259476095,0.11878889206881027 +karman,karman_re100,93,94,37.2,2.2119078785181046,-2.515051979571581,-1.1656763963401318,-0.11944491416215897,-0.40277757216244936,4.554180428385735,-0.19603455439209938,-0.7948466809466481,,,-23.071330785751343,96.1740791797638,105.34065365791321,-4.371928772889078,-14.00337815284729,-5.050032981671393,1.0750311613082886,-3.5100245475769043,3.9341561794281006,0.959219280589083,-3.687579100280813,3.1748382607404193,0.11581188071920556,0.17755455270390863,0.7593179186876813 +karman,karman_re100,94,95,37.6,0.824921706225723,-0.6818628389737569,-0.46497325092786923,-0.10502479563001543,-1.5369309112429619,5.129244644194841,0.5452800542116165,-0.44637080281972885,,,-18.546956777572632,96.84702157974243,105.00673651695251,-2.243325114250183,-36.49528622627258,-18.854184448719025,0.744854211807251,-2.822686195373535,6.274299621582031,0.26005664581622284,-2.718101357038761,4.144316003982471,0.48479756599102813,-0.10458483833477406,2.12998361759956 +karman,karman_re100,95,96,38.0,-0.42078454862348735,1.300405419897288,0.25432120310142636,0.08785785757936537,-1.9997106865048409,5.249585723504424,0.871917000040412,-0.25587668642401695,,,-11.805826425552368,98.17956686019897,104.34427857398987,-0.6819203495979309,-47.11219668388367,-28.868095576763153,0.1014200747013092,-2.8806376457214355,7.389322280883789,-0.4959634876256121,-2.2909315084666044,4.571485852554628,0.5973835623269212,-0.5897061372548311,2.8178364283291613 +karman,karman_re100,96,97,38.400000000000006,-0.9935233974829316,2.974910312332213,0.5636484129354358,0.13377342838793993,-2.60759680531919,4.9193608574569225,0.9165494702756405,-0.774497864767909,,,-4.44243848323822,99.38661456108093,103.92800867557526,0.06041973829269409,-52.312809228897095,-34.688715636730194,-0.6072068214416504,-2.994757652282715,7.384575366973877,-1.134605309468966,-2.232561976803836,4.629855384217397,0.5273984880273157,-0.7621956754788788,2.7547199827564803 +karman,karman_re100,97,98,38.800000000000004,-0.6417008698917925,4.388113971799612,0.36516599357128143,0.08863111725077033,-3.335387911647558,4.214489250443876,1.5525190392509103,-0.23034983314573765,,,2.940458059310913,100.33795833587646,103.73982787132263,-0.457841157913208,-55.326247215270996,-37.72370517253876,-1.4479695558547974,-2.384122371673584,6.84097957611084,-1.6735890794151798,-1.4008525576922022,5.46156480332903,0.2256195235603824,-0.9832698139813818,1.3794147727818098 +karman,karman_re100,98,99,39.2,0.8486097794957459,5.805314984172583,-0.44163642451167107,-0.034663069527596235,-3.8352643605321646,3.5765120992437005,2.2063780343160033,0.5774917080998421,,,10.20519733428955,100.84280967712402,103.62179279327393,-1.340050995349884,-55.98897337913513,-37.58200854063034,-2.310955286026001,-1.5805747509002686,5.672511100769043,-2.2140974055174834,-0.5457476729683042,6.316669688052928,-0.09685788050851762,-1.0348270779319644,-0.6441585872838846 +karman,karman_re100,99,100,39.6,3.1992588192224503,6.65081525221467,-1.6257879324257374,-0.052317045629024506,-3.705824026837945,3.307772392872721,2.3180487914942205,0.930273556150496,,,17.204901576042175,100.35926103591919,103.54569256305695,-2.2959336638450623,-53.18002104759216,-33.355142176151276,-2.685181140899658,-1.1207828521728516,4.579085826873779,-2.5365639650306426,-0.39970669063937914,6.462710670381853,-0.14861717586901557,-0.7210761615334724,-1.8836248435080734 +karman,karman_re100,100,101,40.0,5.34068001434207,6.551761645823717,-2.694015856832266,-0.04735169932246208,-2.795693464577198,3.179566119797528,1.854263129644096,0.9128327947109938,,,23.26616644859314,98.45826029777527,103.94113659858704,-3.361178934574127,-44.01163458824158,-24.511636793613434,-2.426529884338379,-1.316086769104004,3.995084762573242,-2.4987857680653978,-1.0062371320741823,5.85618022894705,0.07225588372701885,-0.3098496370298216,-1.8610954663738077 +karman,karman_re100,101,102,40.400000000000006,5.566386505961418,5.5777993984520435,-2.8773522935807705,-0.18831808120012283,-1.2960731983184814,3.3791871974244714,0.940395868383348,0.5847185384482145,,,26.403725147247314,96.19459509849548,104.15526628494263,-2.8132930397987366,-18.79296749830246,-10.150569677352905,-1.856438159942627,-2.4322493076324463,4.027906894683838,-2.127324910065984,-2.2013760916835414,4.661041269337691,0.27088675012335717,-0.23087321594890486,-0.6331343746538529 +karman,karman_re100,102,103,40.800000000000004,4.004032351076603,3.940607304684818,-2.1631644340232015,-0.3222965169698,0.2577637496870011,4.022116307169199,0.06600841879844666,0.3897805872838944,,,25.26451349258423,96.61124348640442,104.23736572265625,-1.2661747634410858,17.53462553024292,5.854275822639465,-1.5110297203063965,-4.037414073944092,3.7948899269104004,-1.5029138700058728,-3.344884072646449,3.5175332883747834,-0.008115850300523642,-0.692530001297643,0.277356638535617 +karman,karman_re100,103,104,41.2,1.7617068951949477,1.9250887853559107,-1.0539278446231037,-0.34614879405125976,1.2517751893028617,4.855557810515165,-0.5951607599854469,0.06145366933196783,,,20.341497659683228,98.70747923851013,104.4823944568634,0.04407316446304321,40.738242864608765,18.711037933826447,-1.2469600439071655,-5.558619499206543,3.190786361694336,-0.7342123720535425,-4.209549082494195,2.6528682785270377,-0.512747671853623,-1.3490704167123484,0.5379180831672983 +karman,karman_re100,104,105,41.6,-0.02605239387776237,-0.2857079525711015,-0.023783373762853444,-0.07361914140346926,2.020337153226137,5.323952995240688,-0.8131079375743866,0.39412127807736397,,,13.78055214881897,100.47938823699951,104.49653267860413,0.628700852394104,48.58766198158264,28.158774971961975,-0.7635141611099243,-6.530463218688965,2.843249797821045,0.10896656568128471,-4.494576431776949,2.367840929244283,-0.872480726791209,-2.035886786912016,0.4754088685767619 +karman,karman_re100,105,106,42.0,-1.0135946795344353,-2.0564261940307915,0.56838447926566,0.12317427899688482,2.63447524048388,5.22284978069365,-0.7237440440803766,1.1869871523231268,,,6.730151176452637,101.72336101531982,104.47674989700317,0.838315486907959,51.93129777908325,33.968690037727356,-0.20108847320079803,-6.885330677032471,2.8664751052856445,0.784303334660611,-4.377707959489485,2.484709401531747,-0.985391807861409,-2.5076227175429855,0.3817657037538975 +karman,karman_re100,106,107,42.400000000000006,-1.241154968738556,-3.2418962800875306,0.644977088086307,0.04879920743405819,3.18173342384398,4.806937649846077,-0.8925329893827438,1.3966674450784922,,,-0.33803582191467285,102.72181034088135,104.57988381385803,0.21815747022628784,53.867167234420776,36.955712735652924,0.3387419879436493,-7.146501541137695,2.683938503265381,1.2364314705176376,-4.598447067928424,2.2639702930928083,-0.8976894825739883,-2.5480544732092714,0.4199682101725726 +karman,karman_re100,107,108,42.800000000000004,-0.6030048243701458,-4.17194003239274,0.287703238427639,-0.027598347514867783,3.480929648503661,4.358718055300415,-1.3458459870889783,0.7892376743257046,,,-7.269710302352905,103.41907739639282,104.69490885734558,-0.9842589497566223,53.71183156967163,37.044622004032135,0.9390913844108582,-7.245334625244141,2.379012107849121,1.591142190712987,-5.191281549939098,1.6711358110821346,-0.6520508063021289,-2.0540530753050428,0.7078762967669865 +karman,karman_re100,108,109,43.2,0.6621952634304762,-4.761016927659512,-0.3480762243270874,-0.033957185223698616,3.306241240352392,4.053898388519883,-1.6013088170439005,0.10362360626459122,,,-13.788750767707825,103.06051969528198,104.51502501964569,-2.454864978790283,49.71264600753784,32.90594816207886,1.4123972654342651,-6.815898418426514,2.181553840637207,1.8158110724216248,-5.525371186096963,1.3370461749242688,-0.4034138069873596,-1.2905272323295502,0.8445076657129382 +karman,karman_re100,109,110,43.6,2.0816167816519737,-4.74850635509938,-1.0228935861960053,0.035829609259963036,2.519178669899702,3.944639232940972,-1.4647886855527759,-0.41039870120584965,,,-19.621935486793518,101.42790079116821,104.86876666545868,-4.585008323192596,40.19758701324463,24.74927455186844,1.5239721536636353,-5.866938591003418,2.0199427604675293,1.811039647215164,-5.346832644634231,1.515584716387001,-0.2870674935515287,-0.5201059463691866,0.5043580440805282 +karman,karman_re100,110,111,44.0,2.7840337716042995,-3.995622741058469,-1.3817187864333391,0.020596198737621307,1.2006652541458607,4.0673104813322425,-0.9954810375347733,-0.790296820923686,,,-23.287975788116455,98.3223557472229,105.1209807395935,-5.718657933175564,19.522292912006378,11.713638342916965,1.308302402496338,-4.701861381530762,2.25864577293396,1.5238962861659624,-4.733080650263447,2.1293367107577854,-0.2155938836696245,0.0312192687326851,0.12930906217617455 +karman,karman_re100,111,112,44.400000000000006,2.266035648062825,-2.638626436237246,-1.203778141643852,-0.1415206352248788,-0.3201353829354048,4.5264712534844875,-0.25020167231559753,-0.8205387275665998,,,-23.219454288482666,96.65039777755737,105.5116057395935,-4.657733021304011,-11.478140950202942,-3.911096276715398,1.0840802192687988,-3.571727991104126,3.7862424850463867,1.0063495197987782,-3.758417870531557,3.103999490489675,0.07773069947002065,0.1866898794274312,0.6822429945567117 +karman,karman_re100,112,113,44.800000000000004,0.910507864318788,-0.8284631039714441,-0.5163907917449251,-0.12227371917106211,-1.4932152116671205,5.11875981464982,0.5095833912491798,-0.4740484291687608,,,-18.996259570121765,97.12561964988708,105.22260963916779,-2.4869881570339203,-34.837913513183594,-17.94591173529625,0.7742617130279541,-2.838118076324463,6.152014255523682,0.31596873108024365,-2.7647848027019712,4.097632558319261,0.45829298194771045,-0.07333327362249165,2.0543816972044207 +karman,karman_re100,113,114,45.2,-0.37584989331662655,1.1563986481633037,0.22463666391558945,0.07342343451455235,-1.9829280208796263,5.284128710627556,0.8682478219270706,-0.24643237702548504,,,-12.406039237976074,98.30333590507507,104.48871850967407,-0.831487774848938,-46.181854605674744,-28.283318877220154,0.14883968234062195,-2.858867645263672,7.374504566192627,-0.44104053847600494,-2.2957299927748736,4.566687368246359,0.5898802208166269,-0.5631376524887983,2.8078171979462683 +karman,karman_re100,114,115,45.6,-0.9774324717000127,2.868354436941445,0.5489216418936849,0.12041081208735704,-2.56171147339046,4.963574232533574,0.9012480732053518,-0.7592153269797564,,,-5.112278461456299,99.50518012046814,104.10380363464355,0.0015422701835632324,-51.705753803253174,-34.33963805437088,-0.5557593107223511,-3.000704526901245,7.403229236602783,-1.0939658113730726,-2.252572865201267,4.609844495819965,0.5382065006507215,-0.7481316616999782,2.793384740782818 +karman,karman_re100,115,116,46.0,-0.695494469255209,4.280527005903423,0.3858670825138688,0.07623969577252865,-3.2905233092606068,4.253212828189135,1.4984183944761753,-0.29368652030825615,,,2.204012870788574,100.47177076339722,103.96605730056763,-0.46333223581314087,-54.79605197906494,-37.51459866762161,-1.3774168491363525,-2.4341506958007812,6.9058332443237305,-1.6325563322330383,-1.4716043955696987,5.390812965451533,0.25513948309668577,-0.9625463002310826,1.5150202788721971 +karman,karman_re100,116,117,46.400000000000006,0.7132879109121859,5.712831625714898,-0.37780054844915867,-0.04231318598613143,-3.8105410058051348,3.604690486099571,2.176157257054001,0.5417735083028674,,,9.40280556678772,100.84069967269897,103.76216769218445,-1.3933315873146057,-55.6444525718689,-37.64597028493881,-2.2551755905151367,-1.624770998954773,5.766337871551514,-2.1788250448319784,-0.5852698550472066,6.277147505974026,-0.07635054568315836,-1.0395011439075663,-0.5108096344225119 +karman,karman_re100,117,118,46.800000000000004,3.0017162207514048,6.612439639866352,-1.5451041981577873,-0.08849217556416988,-3.737060818821192,3.326806123368442,2.31674883980304,0.8964368607848883,,,16.35940670967102,100.42285919189453,103.7621796131134,-2.3679614067077637,-53.10794115066528,-33.78760516643524,-2.6702146530151367,-1.1413369178771973,4.6577558517456055,-2.5219278352138788,-0.40140674378451147,6.46101061723672,-0.14828681780125796,-0.7399301740926858,-1.8032547654911149 +karman,karman_re100,118,119,47.2,5.236846394836903,6.566833006218076,-2.6462895330041647,-0.05573267117142677,-2.8779434505850077,3.205336455721408,1.8727133865468204,0.8674833225086331,,,22.555434703826904,98.47269654273987,104.23740148544312,-3.543395549058914,-44.69515681266785,-25.444265455007553,-2.443657398223877,-1.286834955215454,4.030369281768799,-2.504533855815631,-0.9821082221394648,5.880309138881767,0.060876457591754196,-0.3047267330759893,-1.8499398571129682 +karman,karman_re100,119,120,47.6,5.601346027106047,5.6327361380681396,-2.884936169721186,-0.16852631233632565,-1.4207492349669337,3.3744690008461475,0.9813853539526463,0.5420214729383588,,,26.099836826324463,95.67590951919556,104.5380711555481,-3.14154215157032,-21.72241061925888,-11.623340472579002,-1.875072717666626,-2.3463618755340576,4.042372703552246,-2.148277311956874,-2.14777078901559,4.714646572005642,0.2732045942902479,-0.19859108651846746,-0.672273868453396 +karman,karman_re100,120,121,48.0,4.11016121506691,4.024062189273536,-2.215339452959597,-0.32051769085228443,0.15005342720542103,3.9871750632300973,0.09619805496186018,0.3424495371291414,,,25.461357831954956,95.70751190185547,104.75433468818665,-1.4355944469571114,14.149731397628784,4.487073980271816,-1.5135952234268188,-3.949838161468506,3.8312110900878906,-1.5347428480974,-3.305402616329094,3.5570147446921383,0.021147624670581067,-0.6444355451394119,0.27419634539575233 +karman,karman_re100,121,122,48.400000000000006,1.8799242097884417,2.025527966907248,-1.1087087041232735,-0.3374931984581053,1.18350051343441,4.813806852325797,-0.5774658638983965,0.02856878563761711,,,20.81025540828705,97.91205525398254,104.82095777988434,0.11570528149604797,38.98365795612335,17.780110985040665,-1.259844422340393,-5.492762565612793,3.222791910171509,-0.7725190155158543,-4.186408019676496,2.676009341344736,-0.48732540682453873,-1.3063545459362969,0.5467825688267727 +karman,karman_re100,122,123,48.800000000000004,0.06107497029006481,-0.19302914733998477,-0.06598565960302949,-0.07089634891599417,1.9596698693931103,5.314703099429607,-0.8295890875160694,0.30049169436097145,,,14.36743438243866,100.102698802948,104.80342209339142,0.7818669080734253,47.94352650642395,27.575963735580444,-0.7918299436569214,-6.507286548614502,2.8345441818237305,0.07361966327062726,-4.5161301794922295,2.3462871815290023,-0.8654496069275487,-1.9911563691222725,0.4882570002947282 +karman,karman_re100,123,124,49.2,-0.9590315166860819,-2.0049253362230957,0.5584923201240599,0.15795312356203794,2.59210797958076,5.229832837358117,-0.7358917500823736,1.1203244794160128,,,7.329091429710388,101.54339075088501,104.67787086963654,1.0119035840034485,51.526957750320435,33.60696583986282,-0.22545446455478668,-6.879588603973389,2.856447219848633,0.76466134865902,-4.39359450814737,2.468822852873862,-0.9901158132138067,-2.485994095826019,0.38762436697477076 +karman,karman_re100,124,125,49.6,-1.2356056831777096,-3.208580892533064,0.6532084662467241,0.07081124931573868,3.1516605522483587,4.818900488317013,-0.8767135441303253,1.398233463987708,,,0.266873836517334,102.6102066040039,104.68322038650513,0.43232589960098267,53.57967019081116,36.757971346378326,0.3127964437007904,-7.135416030883789,2.6944127082824707,1.2237252670903886,-4.577758685553843,2.284658675467389,-0.9109288233895982,-2.557657345329946,0.4097540328150817 +karman,karman_re100,125,126,50.0,-0.6637070327997208,-4.144742852076888,0.31478493474423885,-0.03413716331124306,3.4708536695688963,4.379651974886656,-1.332270447164774,0.8063127752393484,,,-6.648725271224976,103.42944860458374,104.80558276176453,-0.7804498076438904,53.63079309463501,37.08964139223099,0.9086610078811646,-7.261585712432861,2.3877735137939453,1.5807694191168042,-5.173527706083519,1.6888896549377135,-0.6721084112356397,-2.0880580063493426,0.6988838588562318 +karman,karman_re100,126,127,50.400000000000006,0.5974132218398154,-4.763567121699452,-0.3214606549590826,-0.04550808807834983,3.347662976011634,4.062713007442653,-1.6081604408100247,0.1313420943915844,,,-13.175007700920105,103.25161218643188,104.64755594730377,-2.2415801882743835,49.87778961658478,33.23151022195816,1.4010028839111328,-6.867486953735352,2.180563449859619,1.8167836945830051,-5.534331614866655,1.328085746154577,-0.41578081067187234,-1.3331553388686963,0.8524777037050422 +karman,karman_re100,127,128,50.800000000000004,1.9997351337224245,-4.78883390314877,-0.9985670913010836,0.0026009511202573776,2.5749376509338617,3.9504258893430233,-1.4918004162609577,-0.4086631815880537,,,-19.05786693096161,101.67341232299805,104.85056936740875,-4.395303130149841,40.868666768074036,25.382161140441895,1.5297867059707642,-5.936868667602539,2.018883466720581,1.82642022858766,-5.382158094077828,1.4802592669434045,-0.2966335226168959,-0.5547105735247113,0.5386241997771766 +karman,karman_re100,128,129,51.2,2.7999477460980415,-4.071027738973498,-1.3774267863482237,0.04509417340159416,1.3180626556277275,4.0543078212067485,-1.0285443859174848,-0.739026116207242,,,-22.932207584381104,98.69576096534729,105.17055988311768,-5.747687816619873,21.32601886987686,12.759716808795929,1.3228437900543213,-4.779947757720947,2.2056663036346436,1.5526551064370238,-4.776320295081011,2.086097065940221,-0.22981131638270247,-0.0036274626399359633,0.11956923769442263 +karman,karman_re100,129,130,51.6,2.342723775655031,-2.733330358751118,-1.225655316375196,-0.10858685709536076,-0.21359490347094834,4.496267763897777,-0.2987633924931288,-0.8111216884572059,,,-23.140934109687805,96.71249985694885,105.47356307506561,-4.8674000427126884,-9.23549085855484,-2.797512896358967,1.0867364406585693,-3.6425039768218994,3.6415414810180664,1.042468784593534,-3.821926003703707,3.040491357317525,0.044267656065035244,0.17942202688180764,0.6010501237005412 +karman,karman_re100,130,131,52.0,1.0093242162838578,-0.936437922064215,-0.5565467872656882,-0.10376935824751854,-1.4303188072517514,5.1077986136078835,0.48159994184970856,-0.4671189235523343,,,-19.23118233680725,97.0618486404419,105.28679490089417,-2.7205966413021088,-33.47786366939545,-17.07788035273552,0.792910099029541,-2.8599672317504883,6.035089492797852,0.3571494017677446,-2.8013810481516948,4.061036312869537,0.4357606972617964,-0.05858618359879353,1.9740531799283145 +karman,karman_re100,131,132,52.400000000000006,-0.3161068307235837,1.0596844367682934,0.19828975200653076,0.08047267328947783,-1.9482168136164546,5.303008481860161,0.8725207298994064,-0.20317535381764174,,,-12.737968564033508,98.26581478118896,104.59589660167694,-0.9896218776702881,-45.549869537353516,-27.76411473751068,0.1804123967885971,-2.844501495361328,7.353981971740723,-0.40415456672250466,-2.29014196155301,4.572275399468222,0.5845669635111017,-0.5543595338083183,2.7817065722725003 +karman,karman_re100,132,133,52.800000000000004,-0.9651961736381054,2.8049355605617166,0.5470804171636701,0.12896466068923473,-2.5076461024582386,4.9990525003522635,0.8957043755799532,-0.7162373512983322,,,-5.4641783237457275,99.41125512123108,104.12445664405823,-0.06194859743118286,-51.392799615859985,-34.05052870512009,-0.5248688459396362,-3.0135276317596436,7.41392707824707,-1.0697783951801503,-2.259822811985954,4.602594549035278,0.544909549240514,-0.7537048197736897,2.811332529211792 +karman,karman_re100,133,134,53.2,-0.7437475142069161,4.223046009428799,0.4205856239423156,0.09742373367771506,-3.2506075222045183,4.315197467803955,1.4626849442720413,-0.3252376336604357,,,1.8334686756134033,100.32796859741211,103.90769839286804,-0.45263171195983887,-54.60543632507324,-37.375468015670776,-1.3383249044418335,-2.4782004356384277,6.953454971313477,-1.6106335725709002,-1.5183359509175782,5.344081410103654,0.27230866812906673,-0.9598644847208495,1.6093735612098223 +karman,karman_re100,134,135,53.6,0.6369322072714567,5.675388732925057,-0.3247589338570833,-0.012585660442709923,-3.805197076871991,3.630577295552939,2.1599673782475293,0.5147376796230674,,,9.049692749977112,100.81465244293213,103.79584729671478,-1.3872355222702026,-55.66713809967041,-37.74087727069855,-2.2305893898010254,-1.653507947921753,5.818170547485352,-2.1645446462649622,-0.6064426836769083,6.255974677344324,-0.06604474353606316,-1.0470652642448446,-0.4378041298589723 +karman,karman_re100,135,136,54.0,2.8861453756690025,6.6187221091240644,-1.4782326761633158,-0.07031997665762901,-3.7755370140075684,3.34195391042158,2.3333037388511,0.891070463694632,,,16.01477563381195,100.4063606262207,103.72423231601715,-2.3380666971206665,-53.36652398109436,-34.133437275886536,-2.6792426109313965,-1.143592119216919,4.69655704498291,-2.524323915171929,-0.3797565483311356,6.482660812690097,-0.1549186957594677,-0.7638355708857834,-1.7861037677071865 +karman,karman_re100,136,137,54.400000000000006,5.181627813726664,6.627802737057209,-2.6095127686858177,-0.03739772364497185,-2.963036298751831,3.197759739123285,1.925388933159411,0.8877415675669909,,,22.297382354736328,98.53134155273438,104.17075157165527,-3.5366512835025787,-45.484817028045654,-26.107492297887802,-2.486081838607788,-1.2371277809143066,4.028402805328369,-2.527787188879223,-0.9132201016824792,5.949197259338753,0.04170535027143485,-0.3239076792318274,-1.9207944540103838 +karman,karman_re100,137,138,54.800000000000004,5.676829256117344,5.741861183196306,-2.919993828982115,-0.16315840184688568,-1.534546259790659,3.330618143081665,1.0488824918866158,0.5632187239825726,,,26.045727729797363,95.72854042053223,104.54137325286865,-3.2406162470579147,-23.663990199565887,-12.574649229645729,-1.9174009561538696,-2.2434301376342773,4.022458076477051,-2.1898966693826085,-2.0594992613806844,4.802918099640548,0.2724957132287389,-0.18393087625359295,-0.7804600231634975 +karman,karman_re100,138,139,55.2,4.28219698369503,4.158772469963878,-2.2862922050990164,-0.29038742650300264,0.06257901986828074,3.91389150172472,0.1523657701909542,0.36731056025018916,,,25.667566061019897,95.42598724365234,104.63683009147644,-1.550009474158287,12.157490104436874,3.6067862063646317,-1.5321063995361328,-3.8325276374816895,3.8519985675811768,-1.5861201951984942,-3.231947501359852,3.63046985966138,0.05401379566236142,-0.6005801361218372,0.22152870791979673 +karman,karman_re100,139,140,55.6,2.044821623712778,2.1877522813156247,-1.1953936191275716,-0.3459656145423651,1.1272041592746973,4.742380930110812,-0.536568695679307,0.054066767916083336,,,21.19242548942566,97.61461019515991,104.73824143409729,0.05312412977218628,38.123756647109985,17.127934098243713,-1.2849260568618774,-5.392208099365234,3.2610671520233154,-0.8343899793864965,-4.132923447957731,2.729493913063501,-0.45053607747538094,-1.2592846514075031,0.5315732389598145 +karman,karman_re100,140,141,56.0,0.17592110089026392,-0.031282033887691796,-0.12801789853256196,-0.08011469617486,1.9151538144797087,5.286235129460692,-0.8214630652219057,0.27222768403589725,,,14.752733707427979,99.7897744178772,104.65726852416992,0.7910400629043579,47.73357808589935,27.124208211898804,-0.8304478526115417,-6.455043315887451,2.8436574935913086,0.011930699756840166,-4.50550311553875,2.356914245482482,-0.8423785523683819,-1.949540200348701,0.4867432481088265 +karman,karman_re100,141,142,56.400000000000006,-0.9206741233356297,-1.8865768215619028,0.5240499158389866,0.12742570834234357,2.5546273682266474,5.2580994088202715,-0.7403839845210314,1.0738593991845846,,,7.7315837144851685,101.33041143417358,104.58440482616425,1.0641425848007202,51.5097439289093,33.41290056705475,-0.2656386196613312,-6.862408638000488,2.855483055114746,0.719524238963405,-4.3994693705272,2.4629479904940323,-0.9851628586247362,-2.4629392674732884,0.39253506462071375 +karman,karman_re100,142,143,56.800000000000004,-1.2542317854240537,-3.124480484984815,0.655597192235291,0.05696259904652834,3.123570466414094,4.872575402259827,-0.8523096330463886,1.4189512003213167,,,0.6617426872253418,102.50041484832764,104.65824604034424,0.5518600344657898,53.668761253356934,36.736808717250824,0.2716406285762787,-7.119122505187988,2.7175464630126953,1.1916500920717708,-4.545843695117465,2.3165736659037663,-0.9200094634954921,-2.573278810070523,0.40097279710892897 +karman,karman_re100,143,144,57.2,-0.7375538116320968,-4.070314927957952,0.3518183948472142,-0.033917021937668324,3.4566326066851616,4.4115487253293395,-1.2982586631551385,0.8601152803748846,,,-6.297111511230469,103.21708917617798,104.6414852142334,-0.6441354751586914,53.879690170288086,37.25704550743103,0.863741934299469,-7.2628889083862305,2.409088611602783,1.5523832464217708,-5.1290477144273385,1.7333696465938933,-0.6886413121223018,-2.133841193958892,0.67571896500889 +karman,karman_re100,144,145,57.6,0.5002482794225216,-4.724243888631463,-0.2684097271412611,-0.03657117486000061,3.380236914381385,4.080776358023286,-1.5952691901475191,0.18969853408634663,,,-12.884730100631714,103.18377017974854,104.54468131065369,-2.0636439323425293,50.51540732383728,33.72863829135895,1.3757373094558716,-6.910489082336426,2.197633981704712,1.80178615034126,-5.5174726720442635,1.3449446889769683,-0.4260488408853884,-1.3930164102921623,0.8526892927277436 +karman,karman_re100,145,146,58.0,1.9350667716935277,-4.802523762919009,-0.9426119504496455,0.04984287079423666,2.6755579747259617,3.959176712669432,-1.512547372840345,-0.3495367709547281,,,-18.869978189468384,101.95250511169434,104.95182871818542,-4.17160838842392,42.07141101360321,26.16913467645645,1.5390738248825073,-6.025765419006348,2.030339241027832,1.8316414238340544,-5.409290586018881,1.4531267750023515,-0.29256759895154705,-0.6164748329874667,0.5772124660254805 +karman,karman_re100,146,147,58.400000000000006,2.7811038307845592,-4.1349983075633645,-1.3539571082219481,0.07318961434066296,1.4117215760052204,4.042638698592782,-1.0734724346548319,-0.7352232933044434,,,-22.934412956237793,98.89886379241943,105.12229204177856,-5.624637007713318,23.165953159332275,13.731098175048828,1.3446077108383179,-4.863941192626953,2.169814109802246,1.5770529333129908,-4.835076378925349,2.0273409820958834,-0.23244522247467292,-0.02886481370160432,0.14247312770636267 +karman,karman_re100,147,148,58.800000000000004,2.4122667964547873,-2.8383017051965,-1.2462816666811705,-0.08029653690755367,-0.11277981684543192,4.454755922779441,-0.3587903920561075,-0.830360600957647,,,-23.400887846946716,96.82167172431946,105.38709461688995,-4.91603035479784,-7.441206276416779,-1.8607838079333305,1.1067416667938232,-3.717885732650757,3.4957518577575684,1.0825039569230372,-3.9004282204339558,2.9619891405872765,0.024237709870785995,0.18254248778319893,0.5337627171702919 +karman,karman_re100,148,149,59.2,1.1127579491585493,-1.0772549285320565,-0.6197589245857671,-0.12675990001298487,-1.3681910932064056,5.060984054580331,0.42630243115127087,-0.5155862309038639,,,-19.709092378616333,97.16033935546875,105.32916188240051,-2.8493575751781464,-32.574036717414856,-16.281013935804367,0.8314142823219299,-2.8961892127990723,5.873632431030273,0.4108558017689884,-2.873698125485163,3.9887192355360694,0.42055848055294154,-0.022491087313909475,1.884913195494204 +karman,karman_re100,149,150,59.6,-0.2440012467559427,0.9078833390958607,0.1478928024880588,0.05178435822017491,-1.924957730807364,5.302276229485869,0.8542744908481836,-0.21640874911099672,,,-13.295039534568787,98.23622703552246,104.57454025745392,-1.1111363768577576,-45.19355893135071,-27.235595881938934,0.23740842938423157,-2.828272819519043,7.306269645690918,-0.3462589284276701,-2.3140040606574006,4.548413300363832,0.5836673578119016,-0.5142687588616424,2.7578563453270863 +karman,karman_re100,150,151,60.0,-0.9418409899808466,2.6877927593886852,0.5355305038392544,0.12922001769766212,-2.458962146192789,5.025757942348719,0.8811196312308311,-0.6967228837311268,,,-6.017288565635681,99.37408566474915,104.10549938678741,-0.1256600022315979,-51.271456480026245,-33.7833508849144,-0.4692924916744232,-3.019127368927002,7.425398349761963,-1.0251011342805463,-2.278896475007355,4.583520886013877,0.5558086426061231,-0.7402308939196471,2.8418774637480855 +karman,karman_re100,151,152,60.400000000000006,-0.7903253426775336,4.102691076695919,0.45058783143758774,0.11085032019764185,-3.1985361129045486,4.360579769127071,1.396563951857388,-0.4054082091897726,,,1.317751407623291,100.36417245864868,103.95221710205078,-0.4352107644081116,-54.56646680831909,-37.27071434259415,-1.2633442878723145,-2.5409388542175293,7.0126142501831055,-1.5647312322101075,-1.6048077805066674,5.257609580514565,0.301386944337793,-0.9361310737108619,1.7550046696685406 +karman,karman_re100,152,153,60.800000000000004,0.4628569877240807,5.561119643971324,-0.2506009768694639,-0.03834496601484716,-3.7633543834090233,3.6702686338685453,2.121866273228079,0.4803781630471349,,,8.55872929096222,100.80646276473999,103.7755697965622,-1.3648554682731628,-55.83334565162659,-37.8879114985466,-2.1708898544311523,-1.7184704542160034,5.9162983894348145,-2.120963394589026,-0.6562706148691166,6.206146746152116,-0.04992645984212629,-1.0621998393468868,-0.28984835671730114 +karman,karman_re100,153,154,61.2,2.6781451888382435,6.564592244103551,-1.3693838845938444,-0.06062258034944534,-3.802762134000659,3.359548281878233,2.3370697163045406,0.8713772986084223,,,15.5830979347229,100.50870180130005,103.73260974884033,-2.2942185401916504,-53.795820474624634,-34.54887866973877,-2.664429187774658,-1.174748420715332,4.77894926071167,-2.5036792483399513,-0.3748314716089345,6.487585889412298,-0.16074993943470695,-0.7999169491063975,-1.7086366287006278 +karman,karman_re100,154,155,61.6,5.047851707786322,6.646219175308943,-2.541210036724806,-0.034568365663290024,-3.041696036234498,3.1986936810426414,1.9800009322352707,0.9183058282360435,,,21.97379767894745,98.73234629631042,104.15429174900055,-3.501446545124054,-46.4922308921814,-26.85881108045578,-2.5177483558654785,-1.201096534729004,4.056382179260254,-2.534811060669678,-0.841799523963493,6.020617837057739,0.01706270480419958,-0.3592970107655109,-1.9642356577974853 +karman,karman_re100,155,156,62.0,5.692616105079651,5.828312132507563,-2.931018825620413,-0.16942154616117477,-1.6416384605690837,3.3015229273587465,1.122114947065711,0.6025914335623384,,,25.981780886650085,95.80206274986267,104.46745455265045,-3.321192041039467,-25.802218914031982,-13.617045804858208,-1.9593589305877686,-2.1491029262542725,4.017276763916016,-2.2228683208944444,-1.9637271903124656,4.8986901707087664,0.26350939030667586,-0.1853757359418069,-0.8814134067927508 +karman,karman_re100,156,157,62.400000000000006,4.410811234265566,4.29166667163372,-2.3544919677078724,-0.2981727011501789,-0.030216455343179405,3.8581888657063246,0.2166165504604578,0.4030166455777362,,,25.893545150756836,95.36634087562561,104.63426113128662,-1.6556008718907833,9.85274538397789,2.571673411875963,-1.5536308288574219,-3.7145612239837646,3.8878486156463623,-1.6368049053180522,-3.1479215011511914,3.714495859870041,0.08317407646063035,-0.5666397228325732,0.17335275577632148 +karman,karman_re100,157,158,62.800000000000004,2.2000225726515055,2.34761624597013,-1.2816176749765873,-0.3632127773016691,1.076467800885439,4.696280928328633,-0.49597793258726597,0.08451193571090698,,,21.64910137653351,97.63031601905823,104.87799346446991,-0.012496113777160645,37.130728363990784,16.359427571296692,-1.3114491701126099,-5.297328948974609,3.306731939315796,-0.8953607260802225,-4.079839587283429,2.7825777737378035,-0.4160884440323873,-1.2174893616911806,0.5241541655779924 +karman,karman_re100,158,159,63.2,0.27804801356978714,0.12474682807805948,-0.19580593288992532,-0.11356385221006349,1.8639725167304277,5.273937480524182,-0.8196898270398378,0.22459286265075207,,,15.251657366752625,99.6956467628479,104.65652048587799,0.7743433117866516,47.43043780326843,26.54411643743515,-0.8712698221206665,-6.405383586883545,2.855294704437256,-0.047577371623623174,-4.503184106941011,2.3592332540802214,-0.8236924504970433,-1.9021994799425341,0.4960614503570344 +karman,karman_re100,159,160,63.6,-0.8740724879316986,-1.7762068309821188,0.49582443898543715,0.11757639003917575,2.511670347303152,5.271877162158489,-0.7432275451719761,1.0252152569592,,,8.241942524909973,101.34395360946655,104.64594066143036,1.0721057653427124,51.32949352264404,33.08425545692444,-0.30501365661621094,-6.84410285949707,2.857311248779297,0.677430070006866,-4.403188127355481,2.4592292336657513,-0.9824437266230769,-2.4409147321415894,0.3980820151135456 +karman,karman_re100,160,161,64.0,-1.2537776492536068,-3.0472525395452976,0.6611514836549759,0.06852531805634499,3.08468216098845,4.895331105217338,-0.8306850213557482,1.4233121182769537,,,1.1653661727905273,102.4659514427185,104.64609861373901,0.6314441561698914,53.55708599090576,36.57621890306473,0.23275810480117798,-7.099697113037109,2.7354917526245117,1.1621960152305892,-4.5175634218070355,2.3448539392141967,-0.9294379104294113,-2.582133691230074,0.390637813410315 +karman,karman_re100,161,162,64.4,-0.8007844444364309,-4.010323318652809,0.38558070082217455,-0.029623042792081833,3.4461438190191984,4.432786023244262,-1.2648820411413908,0.9163797367364168,,,-5.802100896835327,103.21916341781616,104.63510155677795,-0.5405530333518982,53.95148992538452,37.328340113162994,0.8212908506393433,-7.265765190124512,2.4266042709350586,1.5295029605324655,-5.085398376060896,1.7770189849603366,-0.7082121098931222,-2.180366814063616,0.649585285974722 +karman,karman_re100,162,163,64.8,0.3940811147913337,-4.6963735949248075,-0.2183259930461645,-0.04257087130099535,3.399135544896126,4.094725125469267,-1.587966806255281,0.22320193238556385,,,-12.417274713516235,103.33877801895142,104.60386872291565,-1.9300922751426697,50.84418058395386,34.08805876970291,1.349334478378296,-6.955918312072754,2.210745096206665,1.7911566590638437,-5.507922747391532,1.3544946136296994,-0.4418221806855478,-1.4479955646812215,0.8562504825769657 +karman,karman_re100,163,164,65.2,1.8402949208393693,-4.819356137886643,-0.9153063874691725,0.009682145901024342,2.737220609560609,3.9642154006287456,-1.5257206978276372,-0.3142207860946655,,,-18.45243275165558,102.04184055328369,104.78807389736176,-4.0045179426670074,42.780911922454834,26.755332201719284,1.5374219417572021,-6.087609767913818,2.03513765335083,1.8380611474573452,-5.426518420505684,1.4358989405155482,-0.300639205700143,-0.6610913474081341,0.5992387128352819 +karman,karman_re100,164,165,65.60000000000001,2.758781658485532,-4.205168108455837,-1.3479815097525716,0.06281863898038864,1.5141419135034084,4.033526522107422,-1.1112353531643748,-0.7083287928253412,,,-22.72169291973114,99.23964738845825,105.13356029987335,-5.596495419740677,24.87173229455948,14.712739735841751,1.3626493215560913,-4.943068981170654,2.1322007179260254,1.6038150942853546,-4.884462035959441,1.9779553250617914,-0.24116577272926332,-0.05860694521121346,0.154245392864234 +karman,karman_re100,165,166,66.0,2.46573518961668,-2.947988745290786,-1.2801244738511741,-0.09451375808566809,-0.012621841051441152,4.418324213474989,-0.41353097185492516,-0.8396837847612915,,,-23.461395502090454,97.0258116722107,105.40507435798645,-5.043758079409599,-5.320418253540993,-0.8022282272577286,1.120184063911438,-3.7889795303344727,3.35636305809021,1.1243376544146928,-3.9720169536805288,2.8904004073407035,-0.0041535905032548115,0.1830374233460561,0.4659626507495065 +karman,karman_re100,166,167,66.4,1.2161025078967214,-1.2110259267501533,-0.6685475236736238,-0.12099253945052624,-1.3011338887736201,5.028946325182915,0.3852131776511669,-0.5307075334712863,,,-20.033401250839233,97.1465528011322,105.3232491016388,-3.01814042031765,-31.26971125602722,-15.384608879685402,0.8586351275444031,-2.926957130432129,5.7262372970581055,0.4618749145812428,-2.9274339028359044,3.934983458185328,0.3967602129631603,0.0004767724037755272,1.7912538388727777 +karman,karman_re100,167,168,66.8,-0.17304760694969445,0.7720072171650827,0.10707881301641464,0.04111001908313483,-1.900013885460794,5.307334708049893,0.8446357678622007,-0.2107423497363925,,,-13.759031891822815,98.24565649032593,104.64846789836884,-1.2447431683540344,-44.514331221580505,-26.60551518201828,0.28359854221343994,-2.81282377243042,7.263399124145508,-0.29443693946429406,-2.3266094070241565,4.535807953997075,0.578035481677734,-0.4862143654062634,2.7275911701484326 +karman,karman_re100,168,169,67.2,-0.9189790580421686,2.581966225989163,0.5283124046400189,0.13764575123786926,-2.409751061350107,5.0703734159469604,0.8770925924181938,-0.6555658765137196,,,-6.519749760627747,99.50277805328369,104.29645478725433,-0.1863732933998108,-50.960421562194824,-33.459703624248505,-0.4228043854236603,-3.0226850509643555,7.441018104553223,-0.98473980097243,-2.2841629630202878,4.5782543980009445,0.5619354155487697,-0.7385220879440677,2.862763706552278 +karman,karman_re100,169,170,67.60000000000001,-0.8511083433404565,4.000274930149317,0.47691212967038155,0.1027159160003066,-3.1482442282140255,4.428489482961595,1.342698116786778,-0.46284799464046955,,,0.8094847202301025,100.33373832702637,103.9608895778656,-0.40636658668518066,-54.302579164505005,-37.07009255886078,-1.2018977403640747,-2.596569538116455,7.068882942199707,-1.5256705912336643,-1.675252538529802,5.187164822491431,0.3237728508695896,-0.921316999586653,1.8817181197082764 +karman,karman_re100,170,171,68.0,0.3527132503222674,5.464301677420735,-0.18391082994639874,-0.015108409570530057,-3.7388778291642666,3.7117425817996264,2.088711364194751,0.438544899225235,,,8.049502968788147,100.86672306060791,103.85110080242157,-1.3317003846168518,-55.7513952255249,-37.92129307985306,-2.1161108016967773,-1.7657504081726074,6.003807067871094,-2.084037851507975,-0.6996300010379239,6.162787359983309,-0.032072950188802185,-1.0661204071346835,-0.15898029211221498 +karman,karman_re100,171,172,68.4,2.5092842988669872,6.53210305608809,-1.2979235034435987,-0.08656270802021027,-3.8316152058541775,3.3683066722005606,2.3438080679625273,0.8560009300708771,,,15.106189250946045,100.69615840911865,103.85650396347046,-2.2516176104545593,-54.01201248168945,-34.90797430276871,-2.6562623977661133,-1.1923959255218506,4.838188648223877,-2.4912881503394946,-0.3660191780391897,6.496398182982043,-0.1649742474266187,-0.8263767474826609,-1.658209534758166 +karman,karman_re100,172,173,68.8,4.918577615171671,6.669772323220968,-2.4792649783194065,-0.039952341467142105,-3.112220671027899,3.2027242705225945,2.0211338996887207,0.9300471283495426,,,21.544694900512695,98.8740861415863,104.09951210021973,-3.4752339124679565,-47.151488065719604,-27.52324938774109,-2.5451817512512207,-1.1733732223510742,4.084147930145264,-2.5437940295225245,-0.788006578300747,6.074410782720485,-0.0013877217286961674,-0.38536664405032717,-1.9902628525752215 +karman,karman_re100,173,174,69.2,5.735775921493769,5.905275233089924,-2.9343366622924805,-0.13289740309119225,-1.7185424221679568,3.278019605204463,1.1875771451741457,0.6566118681803346,,,25.784829258918762,95.9769606590271,104.52391803264618,-3.4464582800865173,-27.83801257610321,-14.694587886333466,-1.9925044775009155,-2.0685157775878906,4.009456157684326,-2.252221388175818,-1.8781169199181378,4.984300441103095,0.25971691067490266,-0.19039885766975284,-0.9748442834187685 +karman,karman_re100,174,175,69.60000000000001,4.5429496094584465,4.409317974932492,-2.416117931716144,-0.28928625397384167,-0.13342624879442155,3.8100408855825663,0.27014571242034435,0.40686517604626715,,,26.017916202545166,95.1914131641388,104.65087890625,-1.8130197888240218,7.294957339763641,1.4630478108301759,-1.5699833631515503,-3.600867986679077,3.9152016639709473,-1.6816761045724864,-3.077917038090285,3.7845003229309473,0.1116927414209361,-0.5229509485887922,0.13070134103999997 +karman,karman_re100,175,176,70.0,2.3407854605466127,2.4769597221165895,-1.3491206336766481,-0.35745580680668354,1.0124946711584926,4.632832016795874,-0.4511880688369274,0.11011853348463774,,,21.9913512468338,97.26566076278687,104.7854632139206,-0.09912103414535522,35.72394549846649,15.504831075668335,-1.327309250831604,-5.1959028244018555,3.35809588432312,-0.9446912199013611,-4.021264219248277,2.8411531417729554,-0.38261803093024294,-1.1746386051535787,0.5169427425501647 +karman,karman_re100,176,177,70.4,0.3755033831112087,0.27016010108127375,-0.2615701991999231,-0.14763701528863749,1.8116625724360347,5.251917988061905,-0.8175913244485855,0.17647992353886366,,,15.710580348968506,99.53915476799011,104.7203779220581,0.7568016648292542,46.964484453201294,25.937770307064056,-0.9067975878715515,-6.356688022613525,2.8680624961853027,-0.10303674830895394,-4.500439723473124,2.361977637548108,-0.8037608395625976,-1.8562482991404012,0.5060848586371947 +karman,karman_re100,177,178,70.8,-0.8305507362820208,-1.6759743448346853,0.4610982723534107,0.09164580842480063,2.474164590239525,5.2840374410152435,-0.7536476477980614,0.9668692946434021,,,8.72393250465393,101.16026401519775,104.60518002510071,1.0830089449882507,51.08631253242493,32.7407643198967,-0.34053781628608704,-6.829787254333496,2.850172996520996,0.6392022584010104,-4.416815347783951,2.445602013237281,-0.9797400746870975,-2.4129719065495454,0.404570983283715 +karman,karman_re100,178,179,71.2,-1.2540466850623488,-2.981459489092231,0.6666351109743118,0.07922353688627481,3.048853250220418,4.921701271086931,-0.813645776361227,1.421561697497964,,,1.652008295059204,102.36923694610596,104.65026497840881,0.708530843257904,53.408533334732056,36.398325860500336,0.19808223843574524,-7.083501815795898,2.7524919509887695,1.1371031093837278,-4.495279807546484,2.3671375534747483,-0.9390208709479826,-2.5882220082494145,0.38535439751402123 +karman,karman_re100,179,180,71.60000000000001,-0.8434352348558605,-3.9595876587554812,0.4164158599451184,-0.010603514965623617,3.437523264437914,4.461321281269193,-1.2338280212134123,0.9698672220110893,,,-5.331382155418396,103.18440198898315,104.667928814888,-0.4429742693901062,54.00228500366211,37.38180845975876,0.7838250994682312,-7.265779495239258,2.443873882293701,1.5101528144590564,-5.044786494399645,1.817630866621587,-0.7263277149908252,-2.220993000839613,0.6262430156721142 +karman,karman_re100,180,181,72.0,0.30529758078046143,-4.670682596042752,-0.1711116638034582,-0.036925746826455,3.4237366635352373,4.115455783903599,-1.578702125698328,0.2663324121385813,,,-11.97604238986969,103.32643985748291,104.58581149578094,-1.8069103360176086,51.16809606552124,34.434182941913605,1.3247489929199219,-6.995982646942139,2.224127769470215,1.781358332164271,-5.495806566900862,1.3666107941203696,-0.4566093392443491,-1.5001760800412764,0.8575169753498453 +karman,karman_re100,181,182,72.4,1.7489693127572536,-4.838320193812251,-0.8620463777333498,0.024876557290554047,2.8073075227439404,3.968553151935339,-1.5449956990778446,-0.2826838754117489,,,-18.061736226081848,102.20236778259277,104.80293929576874,-3.8384318351745605,43.564414978027344,27.392295002937317,1.5403001308441162,-6.166653156280518,2.0478763580322266,1.8452938759376174,-5.451725916076607,1.410691444944625,-0.3049937450935012,-0.7149272402039104,0.6371849130876015 +karman,karman_re100,182,183,72.8,2.7389260940253735,-4.276274936273694,-1.3393594417721033,0.06020721048116684,1.617190195247531,4.015521379187703,-1.151881879195571,-0.686573563143611,,,-22.51843810081482,99.43382740020752,105.1163375377655,-5.539506301283836,26.562759280204773,15.697919204831123,1.383790373802185,-5.024622440338135,2.096116065979004,1.6309346293003069,-4.937618822389935,1.924798538631297,-0.2471442554981218,-0.08700361794819944,0.171317527347707 +karman,karman_re100,183,184,73.2,2.5333359371870756,-3.0521429143846035,-1.3031400740146637,-0.07294421084225178,0.09497337305219844,4.380086902529001,-0.4712226800620556,-0.8474719870719127,,,-23.533234000205994,97.03513383865356,105.34603893756866,-5.136437341570854,-3.192441910505295,0.25530047714710236,1.134570598602295,-3.865870475769043,3.2162365913391113,1.164061162302408,-4.04746511890929,2.814952242111942,-0.02949056370011305,0.1815946431402473,0.4012843492271694 +karman,karman_re100,184,185,73.60000000000001,1.3203760609030724,-1.341159106232226,-0.7317176787182689,-0.14305929653346539,-1.2357216328382492,4.985387669876218,0.33332849852740765,-0.5690646357834339,,,-20.372527837753296,97.1052885055542,105.38660883903503,-3.1584523618221283,-29.951828718185425,-14.478781074285507,0.885511040687561,-2.964323043823242,5.561518669128418,0.5115065944898334,-2.9952877411954146,3.8671296198258176,0.37400444619772766,0.030964697372172445,1.6943890493026004 +karman,karman_re100,185,186,74.0,-0.08272606646642089,0.6364717555698007,0.0658242788631469,0.04892249125987291,-1.874445821158588,5.313780857250094,0.8324549999088049,-0.20953582134097815,,,-14.218530058860779,98.14878106117249,104.68581020832062,-1.3473555445671082,-43.913447856903076,-25.99950283765793,0.3302610218524933,-2.7967047691345215,7.2121734619140625,-0.24274487543471426,-2.342539193499909,4.519878167521323,0.5730058972872075,-0.4541655756346126,2.692295294392739 +karman,karman_re100,186,187,74.4,-0.897994264960289,2.471940591931343,0.5120786372572184,0.12616300955414772,-2.357801888138056,5.100351292639971,0.8739144541323185,-0.6099729798734188,,,-7.003474235534668,99.29351210594177,104.18360233306885,-0.2263471484184265,-50.601500272750854,-33.07717591524124,-0.37539806962013245,-3.020378589630127,7.450379371643066,-0.9427769666435437,-2.2883192743857217,4.5740980866355105,0.5673788970234113,-0.7320593152444053,2.876281285007556 +karman,karman_re100,187,188,74.8,-0.8824015385471284,3.904176759533584,0.49673265311867,0.11106376769021153,-3.0973299872130156,4.486650577746332,1.2898865388706326,-0.5175569094717503,,,0.3242611885070801,100.30955076217651,104.00333404541016,-0.3600656986236572,-54.12939786911011,-36.905479431152344,-1.1415914297103882,-2.6477198600769043,7.114409923553467,-1.4890195721562567,-1.7443185582479783,5.118098802773254,0.3474281424458685,-0.903401301828926,1.9963111207802129 +karman,karman_re100,188,189,75.2,0.22592410095967352,5.371714476495981,-0.1230873167514801,-0.02025053254328668,-3.7043369375169277,3.7502283230423927,2.0530540496110916,0.4017711617052555,,,7.5784832239151,100.7982611656189,103.81186902523041,-1.2780368328094482,-55.759841203689575,-37.98573315143585,-2.0629849433898926,-1.819002628326416,6.0868425369262695,-2.048725886195064,-0.7462619876080381,6.116155373413195,-0.01425905719482845,-1.072740640718378,-0.029312836486925065 +karman,karman_re100,189,190,75.60000000000001,2.3443903774023056,6.480014184489846,-1.2104117777198553,-0.07643317803740501,-3.8517306093126535,3.3751410082913935,2.342369349207729,0.8330080891028047,,,14.627677202224731,100.60527324676514,103.70290875434875,-2.1796584129333496,-54.191941022872925,-35.20774245262146,-2.6352663040161133,-1.2157526016235352,4.912304878234863,-2.471421900915228,-0.3679007082226957,6.494516652798536,-0.16384440310088522,-0.8478518934008394,-1.5822117745636728 +karman,karman_re100,190,191,76.0,4.802836570888758,6.701833801344037,-2.4366339202970266,-0.07043126970529556,-3.186498535797,3.158130683004856,2.04768730327487,0.9088760707527399,,,21.198570728302002,99.03550148010254,104.0806531906128,-3.422154486179352,-47.809040546417236,-28.134886920452118,-2.5687265396118164,-1.1541640758514404,4.093023777008057,-2.5560220026338683,-0.7532805207196307,6.109136840301602,-0.012704536977948155,-0.40088355513180973,-2.0161130632935453 +karman,karman_re100,191,192,76.4,5.74492197483778,5.985447089187801,-2.932682749815285,-0.12044352479279041,-1.8671073485165834,3.263175138272345,1.2483642203733325,0.6296210922300816,,,25.623291730880737,96.1193859577179,104.47446703910828,-3.5194989293813705,-29.76299226284027,-15.723944082856178,-2.0355799198150635,-1.970861554145813,4.005319595336914,-2.2827982473239925,-1.7986206901144492,5.0637966709067825,0.24721832750892903,-0.17224086403136374,-1.0584770755698685 +karman,karman_re100,192,193,76.80000000000001,4.669183399528265,4.524357034824789,-2.466814243234694,-0.264445086941123,-0.23457805218640715,3.7602015072479844,0.3292312612757087,0.4238844703650102,,,26.152831315994263,95.14321684837341,104.6526849269867,-1.9392926711589098,4.832475259900093,0.3909073304384947,-1.5883015394210815,-3.4885802268981934,3.9433741569519043,-1.7255510165686712,-3.0006460334483975,3.8617713275728347,0.13724947714758962,-0.4879341934497958,0.0816028293790696 +karman,karman_re100,193,194,77.2,2.4996893480420113,2.622642379719764,-1.4379394124262035,-0.3761894768103957,0.9540271712467074,4.576209234073758,-0.4133034963160753,0.1274201786145568,,,22.361397743225098,97.09020853042603,104.76789474487305,-0.18881335854530334,34.42753553390503,14.70073089003563,-1.3473387956619263,-5.096250057220459,3.394270420074463,-1.0002533375655163,-3.9717194653139334,2.890697895707299,-0.34708545809641,-1.1245305919065256,0.503572524367164 +karman,karman_re100,194,195,77.60000000000001,0.48784553655423224,0.42426681829965673,-0.32807872412377037,-0.1683119116933085,1.7611798830330372,5.22126629948616,-0.8058082312345505,0.14956342056393623,,,16.16210639476776,99.34613704681396,104.67081367969513,0.731833279132843,46.5834379196167,25.35291165113449,-0.943185567855835,-6.296847343444824,2.8875792026519775,-0.16181173014823302,-4.485030008778482,2.3773873522427498,-0.7813738377076019,-1.8118173346663422,0.5101918504092278 +karman,karman_re100,195,196,78.0,-0.7672843057662249,-1.5603398205712438,0.4285302711650729,0.08977623656392097,2.433632966130972,5.295176757499576,-0.7594076450914145,0.914817675948143,,,9.205788373947144,101.07377767562866,104.6156108379364,1.0857686400413513,50.90354084968567,32.40551799535751,-0.3791944682598114,-6.8101420402526855,2.8466479778289795,0.5951002413945335,-4.424348167334827,2.438069193686405,-0.974294709654345,-2.3857938729178585,0.4085787841425743 +karman,karman_re100,196,197,78.4,-1.2467321939766407,-2.9020882211625576,0.671847490593791,0.09696278721094131,3.014263231307268,4.95774601586163,-0.793324550613761,1.4276141300797462,,,2.1213769912719727,102.28623151779175,104.6346664428711,0.777946412563324,53.316593170166016,36.24452203512192,0.15982894599437714,-7.064330577850342,2.7723939418792725,1.106831587704914,-4.468704078633394,2.393713282387838,-0.9470026417105368,-2.595626499216948,0.3786806594914345 +karman,karman_re100,197,198,78.80000000000001,-0.9126344230026007,-3.893720335327089,0.44597184751182795,-0.02069072797894478,3.4208064898848534,4.496038891375065,-1.1990130878984928,1.0227803140878677,,,-4.874497652053833,103.13079357147217,104.65701222419739,-0.34439563751220703,54.09257411956787,37.448650598526,0.739232063293457,-7.263915538787842,2.4664955139160156,1.4850315815356425,-4.999256158710128,1.8631612023111048,-0.7457995182421855,-2.264659380077714,0.6033343116049108 +karman,karman_re100,198,199,79.2,0.23975806834641844,-4.641940584406257,-0.16256351955235004,-0.08536897075828165,3.443965222686529,4.04791347682476,-1.5501156449317932,0.34373393282294273,,,-11.608734726905823,103.3798098564148,104.62308824062347,-1.7021894454956055,51.49264335632324,34.758350253105164,1.3025544881820679,-7.010113716125488,2.21791410446167,1.7703963751357172,-5.458421688012569,1.4039956730086627,-0.46784188695364937,-1.5516920281129192,0.8139184314530072 +karman,karman_re200,2,3,0.8,4.7850413247942924,7.312195957638323,-3.520579426549375,-2.2561175283044577,-2.3263979237526655,4.596410086378455,0.5078606773167849,-1.3106765691190958,,,-2.9159188270568848,100.89491605758667,104.33354377746582,-1.198124885559082,-46.324774622917175,-32.54152536392212,-1.7390445470809937,-3.177455425262451,4.8443193435668945,-2.7888089005647556,-2.7670377366062087,4.095379624415024,1.049764353483762,-0.4104176886562425,0.7489397191518705 +karman,karman_re200,3,4,1.2000000000000002,3.5518272779881954,6.407412001863122,-3.040302312001586,-2.5287773460149765,-1.3579735532402992,5.6920701172202826,-0.8110690396279097,-2.9801116324961185,,,3.341805934906006,100.87084770202637,104.22636270523071,-1.9582659006118774,-46.962130069732666,-34.12492871284485,-1.4200859069824219,-4.6419572830200195,3.1799685955047607,-2.443732050385671,-4.491909998177894,2.370507362843338,1.023646143403249,-0.1500472848421257,0.8094612326614228 +karman,karman_re200,4,5,1.6,2.5811600498855114,2.8761362773366272,-1.0131850722245872,0.554789905436337,0.8925175643526018,6.0157785192132,-1.1113239452242851,-1.3301303260959685,,,8.926758170127869,99.74466562271118,104.7198086977005,-2.533303201198578,-45.38664221763611,-32.7156737446785,-0.8761156797409058,-5.264764308929443,2.650411367416382,-1.0969337386390519,-4.884577895041826,1.977839465979407,0.2208180588981461,-0.38018641388761765,0.6725719014369749 +karman,karman_re200,5,6,2.0,0.23605162277817726,0.06306819705059752,-0.09857024269877002,0.03891113738063723,2.9629296623170376,5.732957739382982,-0.29805349186062813,2.3668226785957813,,,14.403560757637024,96.85810804367065,106.39444291591644,-3.5723209381103516,-39.849093556404114,-28.33421528339386,-0.467833936214447,-4.493804454803467,2.275334358215332,-0.024053670100778485,-3.8209976085862563,3.041419752434976,-0.44378026611366855,-0.6728068462172105,-0.766085394219644 +karman,karman_re200,6,7,2.4000000000000004,-1.2198538752272725,-1.9920974737033248,0.39425783324986696,-0.4313382087275386,4.096799064427614,5.782940192148089,-0.2945240121334791,3.507751040160656,,,18.81583034992218,93.50675940513611,108.17337930202484,-2.7898311614990234,-22.454576194286346,-17.349538207054138,0.33422422409057617,-4.798018932342529,1.0930614471435547,0.7597689117799197,-3.816381819283061,3.046035541738171,-0.4255446876893435,-0.9816371130594681,-1.9529740945946163 +karman,karman_re200,7,8,2.8000000000000003,-1.3042631326243281,-3.671404207125306,0.4083316307514906,-0.48759987112134695,4.316967912018299,5.445697344839573,-0.6140740588307381,3.088819794356823,,,20.127317309379578,93.96016001701355,107.52197802066803,-1.0738031240180135,4.101224988698959,0.8750819368287921,1.472004771232605,-5.487400054931641,-0.17785310745239258,1.4002421146422426,-4.234283550247814,2.6281338107734182,0.0717626565903624,-1.2531165046838266,-2.805986918225811 +karman,karman_re200,8,9,3.2,0.3088954254053533,-5.118705099448562,-0.37575955502688885,-0.4426236846484244,4.307630937546492,4.774269298650324,-1.065624295733869,2.1763823460787535,,,18.41834783554077,96.52247428894043,106.74817562103271,-1.9796036183834076,26.913058757781982,17.401135712862015,2.4666459560394287,-6.272413730621338,-1.0200557708740234,1.9522302771162179,-4.8248127257861295,2.037604635235103,0.5144156789232108,-1.4476010048352084,-3.0576604061091266 +karman,karman_re200,9,10,3.6,3.819552017375827,-6.207202095538378,-1.9020172767341137,0.01551746390759945,3.345387987792492,3.9113983511924744,-1.2647751718759537,0.8158376440405846,,,11.500096321105957,98.44967126846313,104.95202541351318,0.7579818367958069,43.761059641838074,28.45243364572525,2.862161159515381,-6.209733009338379,-0.3963909149169922,2.3673737071500205,-5.085258614382014,1.7771587466392182,0.49478745236536037,-1.1244743949563647,-2.17354966155621 +karman,karman_re200,10,11,4.0,6.337540689855814,-7.10716936737299,-2.8133634477853775,0.710813794285059,2.0767785608768463,3.4894210984930396,-0.1080069923773408,1.8607645761221647,,,4.278382658958435,100.12720823287964,103.96404564380646,1.451331377029419,47.21568822860718,32.91182518005371,2.6274633407592773,-4.712515354156494,2.3559646606445312,2.7106135153348068,-3.572458257962719,3.2899591030585134,-0.08315017457552942,-1.1400570961937753,-0.9339944424139821 +karman,karman_re200,11,12,4.4,5.674056243151426,-5.551124573685229,-1.8498197896406054,1.9744166638702154,-0.0860506042954512,4.596905084326863,1.790868816897273,3.495687029499095,,,-1.7465651035308838,101.07239484786987,104.01225686073303,0.4807129502296448,47.024935483932495,34.617163240909576,2.2111732959747314,-3.3742785453796387,5.520130634307861,2.117151360401606,-1.089143059655902,5.77327430136533,0.09402193557312533,-2.2851354857237367,-0.2531436670574685 +karman,karman_re200,12,13,4.800000000000001,4.0677315555512905,-2.5330056669190526,-0.3317490918561816,3.4042333718389273,-1.5299621736630797,4.76152787450701,1.127612660638988,0.7252631476148963,,,-6.822893023490906,101.11494064331055,104.91671860218048,-0.4081353545188904,44.4078803062439,33.0714151263237,1.9968701601028442,-3.703744888305664,4.383648872375488,0.966066663148666,-1.9565373806336157,4.905879980387617,1.0308034969541784,-1.7472075076720484,-0.5222311080121287 +karman,karman_re200,13,14,5.2,0.9571907576173544,-0.028467170068324776,0.03767393309317413,1.0325386238037026,-3.754463978111744,4.752567037940025,-0.30448054894804955,-4.363425076007843,,,-11.59658432006836,99.25389885902405,106.53184652328491,-2.3932501673698425,37.48483955860138,28.083889186382294,1.7197352647781372,-3.3559226989746094,2.6264185905456543,0.01085713480879905,-3.8294027967863604,3.033014564234872,1.708878129969338,0.47348009781175104,-0.4065959736892175 +karman,karman_re200,14,15,5.6000000000000005,-1.6934684244915843,0.7758529391139746,0.616254867054522,-0.4609586903825402,-4.213887266814709,4.950969712808728,-0.6942402105778456,-5.6023676879704,,,-16.3851261138916,95.85051536560059,107.8596830368042,-5.861300975084305,19.502079486846924,16.677450388669968,1.0772496461868286,-2.409902811050415,2.320704460144043,-0.29590366487240677,-4.339123383401206,2.5232939776200265,1.3731533110592353,1.9292205723507907,-0.20258951747598353 +karman,karman_re200,15,16,6.0,-2.7616911102086306,1.8579241004772484,0.5058356910012662,-1.750019728206098,-4.9066985957324505,4.838189110159874,-0.10839244350790977,-5.12348348274827,,,-17.619356513023376,94.90335583686829,106.70885145664215,-7.62141440063715,-6.902313232421875,-3.119758330285549,-0.10529162734746933,-0.6786582469940186,3.942622661590576,-0.7085963365864436,-3.5729623439308855,3.2894550170903467,0.6033047092389743,2.894304096936867,0.6531676445002295 +karman,karman_re200,16,17,6.4,-2.2534190211445093,2.7654467849060893,0.37365418393164873,-1.5061106532812119,-4.7195483930408955,4.633453558199108,0.7276601390913129,-3.2642281148582697,,,-14.113867282867432,94.83522772789001,105.05692958831787,-7.367167994379997,-31.77577555179596,-19.479455426335335,-1.1631171703338623,0.4118137061595917,5.736422538757324,-1.0547177144135498,-2.4795880038020104,4.382829357219222,-0.10839945592031253,2.891401709961602,1.353593181538102 +karman,karman_re200,17,18,6.800000000000001,-0.29515509959310293,3.598770941607654,0.09576126467436552,-0.10363257024437189,-3.4804996103048325,4.332475131377578,1.2726390268653631,-0.9352215565741062,,,-6.463778018951416,95.23962140083313,103.03679704666138,-2.898848056793213,-44.92759704589844,-29.11093235015869,-1.7554987668991089,0.1854534149169922,6.415607929229736,-1.3725404093643476,-1.7668745403119275,5.095542820709305,-0.38295835753476126,1.9523279552289197,1.3200651085204314 +karman,karman_re200,18,19,7.2,2.0781392231583595,4.257466061972082,-0.505210948176682,1.0677173268049955,-1.2294630287215114,4.156589391641319,1.5132009284570813,1.7969388281926513,,,1.005011796951294,96.05187773704529,101.79381966590881,-1.891493797302246,-48.111870884895325,-33.900097012519836,-1.838507890701294,-1.2842354774475098,5.835360527038574,-1.6237610857621108,-1.4522720668702804,5.410145294150952,-0.2147468049391832,0.16803658942277067,0.42521523288762264 +karman,karman_re200,19,20,7.6000000000000005,3.276477800682187,4.442479694262147,-1.387489726766944,0.5014983471482992,1.1876601492986083,4.2315439786762,0.8263664785772562,2.8403931064531207,,,7.101622223854065,95.55813670158386,101.67401731014252,-2.931360900402069,-48.980703949928284,-34.76160615682602,-1.4813798666000366,-3.453908681869507,3.858278512954712,-1.6943237002551441,-2.350501650804384,4.511915710216848,0.2129438336551075,-1.1034070310651227,-0.6536371972621362 +karman,karman_re200,20,21,8.0,1.4861572999507189,3.145004971884191,-1.3037180760875344,-1.12127885222435,2.22877599298954,5.388597259297967,-0.5910580512136221,1.046659890562296,,,12.65406608581543,93.55918765068054,102.49207019805908,-4.320739209651947,-47.54340052604675,-32.29454606771469,-0.9785566926002502,-4.881351470947266,1.8799724578857422,-1.199477955558486,-4.204183634686847,2.658233726334386,0.22092126295823578,-0.677167836260419,-0.7782612684486439 +karman,karman_re200,21,22,8.4,-0.3791947674471885,0.320128721796209,-0.21641092826030217,-0.8120166239677928,3.8180160336196423,6.326964590698481,-0.8239373564720154,2.1701413206756115,,,18.363642692565918,88.95828127861023,104.55049276351929,-6.5804459154605865,-41.46876931190491,-26.944302767515182,-0.44979599118232727,-5.330161094665527,1.2013216018676758,-0.12209435220880398,-4.5087389485702865,2.3536784124509462,-0.3277016389735233,-0.8214221460952409,-1.1523568105832704 +karman,karman_re200,22,23,8.8,-1.566579332575202,-1.8111829413101077,0.3659118665382266,-0.8347555994987488,4.619208164513111,6.346779642626643,-0.2584990579634905,4.10221004858613,,,22.95931875705719,82.84677267074585,107.04421699047089,-7.966597750782967,-22.938112914562225,-16.459138318896294,0.1920347362756729,-5.077755451202393,0.9000688195228577,0.6907696588738654,-3.7692690403579276,3.0931483206633046,-0.4987349225981925,-1.308486410844465,-2.193079501140447 +karman,karman_re200,23,24,9.200000000000001,-1.400039647705853,-2.9207023326307535,0.631814356893301,-0.13641093391925097,4.804426338523626,5.856645759195089,-0.17869006842374802,4.44704620167613,,,22.992578148841858,78.62431406974792,107.46781527996063,-6.248925067484379,6.753866374492645,0.7289817556738853,1.23276948928833,-5.662370681762695,-0.21919868886470795,1.113930850366821,-3.6648962974341748,3.1975210635870575,0.11883863892150903,-1.9974743843285205,-3.4167197524517654 +karman,karman_re200,24,25,9.600000000000001,0.0275541369774146,-3.8471966981887817,0.293622724711895,0.6147995864012046,4.4761230237782,4.9262335523962975,-0.7011131383478642,3.073896747082472,,,18.180960416793823,79.17512655258179,105.71455359458923,-2.166864275932312,37.667787075042725,19.94704306125641,2.4300708770751953,-6.62451171875,-1.5790143013000488,1.4672878648615257,-4.348111673159171,2.514305687862061,0.9627830122136696,-2.2764000455908286,-4.09331998916211 +karman,karman_re200,25,26,10.0,2.9444473329931498,-4.866761853918433,-0.6580476183444262,1.6283520963042974,3.3131877426058054,3.866142244078219,-0.8390321163460612,1.635123509913683,,,8.797883987426758,83.75132083892822,103.16189527511597,3.7164822220802307,57.84127712249756,33.61607939004898,3.022137403488159,-6.512508869171143,-1.122884750366211,1.8561412814653786,-4.528479600606045,2.3339377604151874,1.1659961220227806,-1.9840292685650978,-3.4568225107813983 +karman,karman_re200,26,27,10.4,5.485568195581436,-5.760809639468789,-1.3107082340866327,2.8641517274081707,1.4088309835642576,3.1942151254042983,0.24170323740690947,1.8922374583780766,,,-1.1223673820495605,88.9234721660614,101.06016397476196,5.397716164588928,64.67837691307068,40.29400646686554,2.9367547035217285,-4.887861251831055,1.7268950939178467,2.1971234482888087,-3.1151135888775148,3.7473037721437175,0.7396312552329198,-1.77274766295354,-2.020408678225871 +karman,karman_re200,27,28,10.8,4.944161977618933,-4.90013649687171,-0.5226852372288704,3.898791503161192,-0.7692038780078292,4.081343417055905,1.9974795868620276,3.225755295716226,,,-9.965580701828003,93.05673837661743,99.97501969337463,4.7097548842430115,67.5280749797821,40.57951718568802,2.634439468383789,-3.4506165981292725,4.804506301879883,1.8688700843941406,-0.8189412577890653,6.043476103232167,0.7655693839896485,-2.631675340340207,-1.238969801352284 +karman,karman_re200,28,29,11.200000000000001,3.3663460053503513,-2.1985801868140697,0.40583405643701553,4.178014118224382,-2.148349303752184,4.795925575308502,1.4360278146341443,0.7237063255161047,,,-18.29717457294464,97.85693883895874,99.72407519817352,3.3859625458717346,66.9971764087677,35.71929186582565,2.4896323680877686,-4.033602237701416,3.915010929107666,0.8385196497896801,-1.553197659539962,5.30921970148127,1.6511127182980885,-2.480404578161454,-1.394208772373604 +karman,karman_re200,29,30,11.600000000000001,0.9079581359401345,-0.04608745803125203,0.3462526947259903,1.6004635253921151,-4.033061675727367,4.6617204789072275,0.007476424798369408,-4.018108826130629,,,-25.189629197120667,106.21860027313232,99.28461015224457,2.0861871540546417,63.078224658966064,24.72952827811241,2.371039867401123,-4.205699920654297,2.144402503967285,0.017577361699080113,-3.4214311483307305,3.4409862126905018,2.353462505702043,-0.7842687723235664,-1.2965837087232166 +karman,karman_re200,30,31,12.0,-1.6568697756156325,0.626040156930685,0.3659313078969717,-0.9250071598216891,-4.569589160382748,4.706186009570956,-0.3872376400977373,-5.344064440578222,,,-26.755210757255554,114.05150890350342,97.12885916233063,2.5802209973335266,28.63110601902008,6.476932018995285,1.2933554649353027,-2.6241118907928467,2.70802640914917,-0.23876635307283803,-3.9376310133005252,2.924786347720707,1.5321218180081408,1.3135191225076785,-0.21675993857153708 +karman,karman_re200,31,32,12.4,-2.7054513338953257,1.225584710482508,0.21102122263982892,-2.283408888615668,-4.895046819001436,4.777689930051565,0.3076056018471718,-4.279835615307093,,,-25.325575470924377,112.59270906448364,98.16928803920746,-0.7098883390426636,-39.86295461654663,-8.827338367700577,-0.9009665250778198,0.8364276885986328,6.313188552856445,-0.4674275099834182,-3.028927676971366,3.8334896840498662,-0.4335390150944016,3.865355365569999,2.479698868806579 +karman,karman_re200,32,33,12.8,-2.061057835817337,1.8942594761028886,0.11452136095613241,-1.8320151139050722,-4.173389635980129,4.819381749257445,0.9795634541660547,-2.21426272764802,,,-20.38719952106476,106.18100166320801,100.08814036846161,-4.032810777425766,-62.20481991767883,-20.490366965532303,-1.7431343793869019,1.405489444732666,7.562210559844971,-0.722454337594239,-2.1501534363734303,4.712263924647802,-1.0206800417926627,3.5556428811060963,2.8499466351971687 +karman,karman_re200,33,34,13.200000000000001,0.26962056290358305,2.5718655670061707,0.3866873448714614,1.0429952526465058,-2.939097583293915,4.748539882712066,1.022443757392466,-0.8942100685089827,,,-12.332594394683838,101.71585083007812,100.2825379371643,-5.562588572502136,-59.743618965148926,-28.524455428123474,-1.8774815797805786,0.0778350830078125,7.212472915649414,-0.9808874961605064,-2.0940753568118025,4.76834200420943,-0.8965940836200722,2.171910439819615,2.4441309114399843 +karman,karman_re200,34,35,13.600000000000001,2.6508825831115246,3.454647259786725,0.014617573469877243,2.680117730051279,-0.4379519377835095,4.232647363096476,1.5429044142365456,2.6478568906895816,,,-3.967997431755066,98.94084334373474,100.68600475788116,-6.223402917385101,-57.33836889266968,-33.28237682580948,-1.8726388216018677,-1.426513671875,6.327376842498779,-1.3175728717090542,-1.4134263891705827,5.44899097185065,-0.5550659498928134,-0.01308728270441728,0.8783858706481293 +karman,karman_re200,35,36,14.0,3.4268207382410765,4.278302541933954,-1.4141282299533486,0.5985642783343792,1.22411351185292,4.588644951581955,-0.03818655386567116,1.1477404041215777,,,3.0573397874832153,96.1659848690033,101.99709832668304,-7.239773869514465,-55.12306094169617,-34.61948335170746,-1.3749603033065796,-4.183618068695068,3.355394124984741,-1.6317079407302695,-3.481148360147595,3.3812690008736372,0.2567476374236899,-0.7024697085474734,-0.025874875888896032 +karman,karman_re200,36,37,14.4,1.0049594566226006,1.8691056175157428,-0.6756983930245042,-0.3464373294264078,2.3537222295999527,6.5390621311962605,-2.2095567546784878,-2.065391279757023,,,9.497183561325073,91.88809394836426,103.91688942909241,-8.92409011721611,-52.00172662734985,-31.909111887216568,-0.6250023245811462,-6.24503755569458,0.9608745574951172,-0.7128608714018975,-6.32082676064755,0.5415906003736826,0.08785854682075123,0.07578920495296959,0.4192839571214346 +karman,karman_re200,37,38,14.8,-0.4537206841632724,-1.1771890858653933,0.48416582285426557,0.5146109615452588,3.7388664204627275,6.622904445976019,-1.691440586000681,0.3559852484613657,,,15.822631120681763,85.02609133720398,106.82476162910461,-11.266271770000458,-44.31858956813812,-25.925050675868988,-0.20758657157421112,-5.724234104156494,1.0757880210876465,0.44896983332068946,-5.643243871928984,1.2191734890922477,-0.6565564048949006,-0.08099023222751,-0.14338546800460117 +karman,karman_re200,38,39,15.200000000000001,-1.503816805779934,-2.4611232220195234,0.9498729486949742,0.39592909161001444,4.309645388275385,6.376082310453057,-0.8004026021808386,2.7088401839137077,,,21.633389592170715,76.35692358016968,110.37180125713348,-13.223027903586626,-25.256016850471497,-16.161963623017073,0.23346836864948273,-5.148215293884277,0.8675422668457031,0.9386513144228491,-4.477960625557143,2.3844567354640884,-0.7051829457733664,-0.670254668327134,-1.5169144686183853 +karman,karman_re200,39,40,15.600000000000001,-1.0988444555550814,-3.04834998678416,1.0431642876937985,0.9874841198325157,4.231729544699192,5.3009530529379845,-1.2402157299220562,1.7512980848550797,,,27.31163501739502,67.14681386947632,113.94855976104736,-13.379324972629547,4.486310109496117,-1.9441351294517517,1.2232978343963623,-5.8777995109558105,-1.0363473892211914,1.162614572206547,-5.053140223506654,1.8092771375145782,0.060683262189815235,-0.8246592874491565,-2.8456245267357696 +karman,karman_re200,40,41,16.0,0.6178872426971793,-4.1219248669222,0.3343893913552165,1.2866660254076123,3.8053966127336025,4.058727179653943,-1.8799201352521777,0.04555634222924709,,,24.119386076927185,66.19011163711548,113.2262259721756,-4.087812453508377,36.714884638786316,17.98960044980049,2.490227699279785,-6.76336669921875,-2.499680519104004,1.5720668350420604,-5.8897339935789415,0.9726833674422908,0.9181608642377248,-0.8736327056398085,-3.4723638865462947 +karman,karman_re200,41,42,16.400000000000002,3.437607316300273,-5.463293520733714,-0.6960134487599134,2.045580418780446,2.447036327794194,3.066984296310693,-1.252812973689288,-0.05858961958438158,,,12.727516889572144,72.22836017608643,107.73933529853821,3.6596253514289856,55.88952898979187,33.47530514001846,2.9826455116271973,-5.911075592041016,-0.9002719521522522,2.0836533491836096,-5.069614669466283,1.7928026915549489,0.8989921624435877,-0.8414609225747327,-2.693074643707201 +karman,karman_re200,42,43,16.8,5.289145745337009,-6.33691530674696,-0.40377676486968994,4.4815922155976295,0.7833325653336942,3.1940005719661713,0.9989193640649319,2.781171293463558,,,1.7231225967407227,78.0659556388855,103.67602109909058,4.29474413394928,63.73046636581421,40.352559089660645,2.75288724899292,-3.904170513153076,3.2494356632232666,2.4168452147566306,-2.124840129945402,4.73757723107583,0.3360420342362893,-1.7793303832076743,-1.4881415678525638 +karman,karman_re200,43,44,17.2,4.299547988921404,-4.2210464598611,1.0746408952400088,6.4488297794014215,-1.1749289697036147,4.751197760924697,2.580116270110011,3.9853035705164075,,,-7.6127588748931885,80.47322630882263,101.82536244392395,2.2892609238624573,67.29869246482849,40.09269326925278,2.2764506340026855,-3.076730251312256,5.670372009277344,1.6098709614943063,-0.05697961525620876,6.8054377457650235,0.6665796725083792,-3.019750636056047,-1.1350657364876797 +karman,karman_re200,44,45,17.6,2.8515150770545006,-1.2443322043509397,1.2355660733192053,5.322647223692911,-2.4528708308935165,5.097059067338705,0.7024984806776047,-1.0478738695383072,,,-16.047033667564392,79.95109558105469,101.68150961399078,-0.3832817077636719,67.11927056312561,34.788307547569275,2.3442158699035645,-4.572616100311279,2.9953901767730713,0.4745776435501958,-2.5124939623950766,4.349923398626156,1.8696382263533686,-2.0601221379162027,-1.3545332218530843 +karman,karman_re200,45,46,18.0,-0.2938887046184391,0.7407766825053841,0.40589654236100614,0.5179043801035732,-4.440193064510822,4.839919740334153,-0.9122963529080153,-6.264785770326853,,,-21.982580423355103,74.37017560005188,101.68389678001404,0.4308350384235382,63.42722773551941,21.44562527537346,2.2363831996917725,-4.538782119750977,0.8510265946388245,-0.2825258810718582,-4.624293234787918,2.2381241262333145,2.5189090807636307,0.0855111150369412,-1.38709753159449 +karman,karman_re200,46,47,18.400000000000002,-2.3132816422730684,0.8718076278455555,0.40510791586712,-1.5030658105388284,-4.800265654921532,4.4798440067097545,-0.594192766584456,-5.988651188090444,,,-26.685461401939392,58.96114110946655,104.04464304447174,1.4995189383625984,36.23797297477722,5.190619640052319,1.2223148345947266,-2.4639530181884766,2.018372058868408,-0.33249996118829245,-4.208283158354869,2.654134202666363,1.554814795783019,1.7443301401663929,-0.6357621437979546 +karman,karman_re200,47,48,18.8,-2.8385177720338106,1.4065320719964802,0.06827135803177953,-2.7019750559702516,-5.481190513819456,4.69900737516582,0.6582813803106546,-4.164627753198147,,,-27.67440676689148,56.762492656707764,106.86212182044983,2.4015117436647415,-33.02331864833832,-10.890571400523186,-1.1381219625473022,1.5072245597839355,6.79281759262085,-0.536439283634908,-2.570320280909425,4.292097080111807,-0.6016826789123942,4.077544840693361,2.5007205125090426 +karman,karman_re200,48,49,19.200000000000003,-1.8151344265788794,2.037383208516985,0.08766487007960677,-1.6398046864196658,-4.46263374760747,4.982742015272379,1.5449430793523788,-1.3727475889027119,,,-22.10606038570404,70.5211341381073,105.37724792957306,3.3156588673591614,-70.28136253356934,-25.81278830766678,-2.30961012840271,2.29356050491333,8.948265075683594,-0.7770405031115258,-1.4107602600632028,5.4516571009580295,-1.5325696252911842,3.704320764976533,3.4966079747255643 +karman,karman_re200,49,50,19.6,0.6908648647367954,2.8664730489254,0.6573442369699478,2.005553338676691,-2.8182619716972113,5.089443875476718,1.1832055170089006,-0.45185093767941,,,-13.535255193710327,81.14560842514038,103.67031693458557,2.506433427333832,-72.13150262832642,-34.762923419475555,-2.432805299758911,0.4351496696472168,8.166410446166992,-1.093248266100085,-1.8838340556102537,4.978583305410979,-1.339557033658826,2.3189837252574703,3.1878271407560135 +karman,karman_re200,50,51,20.0,3.004992613568902,3.724523587152362,0.7031874265521765,4.411367466673255,0.08958658145274967,4.289568169042468,1.4353597071021795,2.9603059956571087,,,-4.631936550140381,84.93850231170654,102.89250612258911,0.0410422682762146,-69.22522187232971,-39.312224090099335,-2.3063676357269287,-1.4026744365692139,6.618103504180908,-1.4205013911537245,-1.5540713984017283,5.308345962619504,-0.8858662445732042,0.1513969618325144,1.309757541561404 +karman,karman_re200,51,52,20.400000000000002,3.199879312887788,4.326135152950883,-0.8611257653683424,1.477627782151103,1.6847216757014394,5.107320379465818,-0.7204404100775719,0.24384085554629564,,,3.8804203271865845,84.50900316238403,103.41958701610565,-2.663108706474304,-66.68527126312256,-38.63880932331085,-1.6564348936080933,-4.587634563446045,3.067389965057373,-1.6499508888287704,-4.37338752711116,2.4890298339100725,-0.006484004779322872,-0.21424703633488473,0.5783601311473006 +karman,karman_re200,52,53,20.8,0.8172430680133402,0.9422642760910094,0.11738954344764352,1.0520221549086273,2.9262371826916933,6.991499336436391,-2.671964233741164,-2.417691284790635,,,12.073659896850586,80.09697198867798,105.37645816802979,-5.668887495994568,-62.21424341201782,-33.8906854391098,-0.8208730220794678,-6.347416400909424,1.1397957801818848,-0.3593715232838936,-6.925554839734379,-0.06313747871314668,-0.46150149879557417,0.5781384388249551,1.2029332588950314 +karman,karman_re200,53,54,21.200000000000003,-0.7134859333746135,-1.5665417886339128,0.8574468665756285,1.0014077997766435,3.9886627346277237,6.625022506341338,-1.4496494550257921,1.0893638245761395,,,18.241575360298157,69.79488134384155,107.16963708400726,-6.155146658420563,-49.31636452674866,-21.98709100484848,-0.45833683013916016,-5.063780307769775,1.607569694519043,0.5974656188863829,-5.327033834688524,1.5353835263327085,-1.055802449025543,0.26325352691874837,0.0721861681863345 +karman,karman_re200,54,55,21.6,-1.8991214456036687,-2.098801196552813,1.1955284280702472,0.49193541053682566,4.251515492796898,6.348873488605022,-0.7061129435896873,2.839289605617523,,,23.061534762382507,54.49478626251221,108.29695761203766,-5.907846707850695,-14.608694612979889,-4.033743869513273,0.3528883457183838,-5.016493797302246,0.41820141673088074,0.8004647976300793,-4.35465032739077,2.5077670336304623,-0.4475764519116955,-0.6618434699114761,-2.0895656168995815 +karman,karman_re200,55,56,22.0,-1.4649747172370553,-2.5098767364397645,1.2360335094854236,1.0070923017337918,3.9848764427006245,5.033041583374143,-1.636779634281993,0.7113171741366386,,,23.69576394557953,54.9618124961853,107.40168392658234,-3.9921071380376816,36.7783397436142,16.0366702824831,2.1441142559051514,-6.891294956207275,-2.979578971862793,0.9572454871907373,-5.571759274835303,1.2906580861859287,1.186868768714414,-1.3195356813719723,-4.270237058048721 +karman,karman_re200,56,57,22.400000000000002,0.4818682500626892,-4.061255953274667,0.7698388071730733,2.0215458644088358,3.561340505257249,3.648897400125861,-2.131537301465869,-0.701734097674489,,,15.416184067726135,68.28094720840454,104.5078843832016,2.0050689578056335,63.8232946395874,31.250153481960297,3.2697694301605225,-7.458701133728027,-3.8139522075653076,1.5489282310784873,-6.2187943407387944,0.6436230202824373,1.7208411990820351,-1.239906792989233,-4.4575752278477445 +karman,karman_re200,57,58,22.8,4.323503468185663,-6.235623732209206,-0.1543746329843998,4.014754202216864,1.921068993397057,2.657400502357632,-1.3232514611445367,-0.7254339288920164,,,4.494750499725342,78.76800298690796,101.62830352783203,4.321721196174622,73.80152940750122,39.8366779088974,3.3837027549743652,-6.008718967437744,-0.9597978591918945,2.378213475911062,-5.1617328404330225,1.70068452058821,1.0054892790633034,-0.8469861270047216,-2.6604823797801043 +karman,karman_re200,58,59,23.200000000000003,5.8125946670770645,-7.905284408479929,0.5988455377519131,7.010285742580891,0.6446106708608568,4.071474890224636,1.3140897499397397,3.272790170740336,,,-6.534987688064575,86.2000584602356,98.69491457939148,3.3460065722465515,77.9216468334198,42.448969185352325,2.983255624771118,-4.081622123718262,4.134400367736816,3.015007755205878,-1.7126660396355569,5.149751321385676,-0.031752130434759884,-2.368956084082705,-1.0153509536488592 +karman,karman_re200,59,60,23.6,4.84755914658308,-4.39865083899349,1.4843979151919484,7.816354976966977,-1.305294455960393,5.635983543470502,2.632465912029147,3.9596373680979013,,,-17.428341507911682,93.0318295955658,95.23052871227264,1.6237437725067139,78.43328714370728,39.402493834495544,2.535431385040283,-3.9442811012268066,5.872053146362305,1.6776077503020914,0.011482292978522768,6.873899653999755,0.8578236347381918,-3.9557633942053294,-1.0018465076374508 +karman,karman_re200,60,61,24.0,3.4067516680806875,-0.7805647910572588,0.20119879627600312,3.8091492606326938,-2.695290371775627,4.677676595747471,0.34072715789079666,-2.013836055994034,,,-27.44464874267578,103.0793309211731,91.45379066467285,-0.11024177074432373,74.102121591568,31.704416871070862,2.733664035797119,-5.37456750869751,2.295668601989746,0.2977007248409444,-2.98561190923502,3.876805451786212,2.4359633109561747,-2.3889555994624896,-1.581136849796466 +karman,karman_re200,61,62,24.400000000000002,-0.3273230395279825,0.36682198697235435,-0.18222631479147822,-0.6917756691109389,-4.48171328753233,3.892615786753595,-1.310452469624579,-7.1026182267814875,,,-32.36003816127777,115.59087038040161,86.71670258045197,1.4220908284187317,64.65939283370972,14.638519287109375,2.637021541595459,-4.9575910568237305,0.3491225242614746,-0.13990276356348577,-5.1449945524368985,1.7174228085843337,2.776924305158945,0.18740349561316805,-1.368300284322859 +karman,karman_re200,62,63,24.8,-2.106047933921218,-0.12742537364829332,-0.45316274918150157,-3.012373432284221,-5.179684143513441,3.582692239433527,-0.5263672210276127,-6.2324185855686665,,,-32.557499408721924,120.09172439575195,86.46694421768188,1.1815727688372135,-0.7421852555125952,-3.8582651875913143,0.6250584721565247,-0.8623387813568115,4.213698863983154,0.048598945959173266,-4.119582145212203,2.74283521580903,0.5764595261973514,3.257243363855391,1.4708636481741242 +karman,karman_re200,63,64,25.200000000000003,-2.4570035748183727,0.16019790200516582,-0.7853210554458201,-4.027645685710013,-5.6082927621901035,4.699706332758069,1.02429767139256,-3.5596974194049835,,,-27.77520716190338,111.69720888137817,92.81921088695526,-0.13798996806144714,-68.16537976264954,-16.9023297727108,-1.6803532838821411,2.6631946563720703,9.18140983581543,-0.06109810753869634,-2.091650841848633,4.770766519172599,-1.6192551763434448,4.754845498220703,4.4106433166428305 +karman,karman_re200,64,65,25.6,-1.0586099233478308,1.0524476238060743,-0.13539110659621656,-1.329392136540264,-3.6888315808027983,5.392020684666932,1.5914899995550513,-0.5058515816926956,,,-17.930403351783752,101.11438035964966,96.48371636867523,0.13752728700637817,-84.06761288642883,-28.422246873378754,-2.3999440670013428,2.030003547668457,9.72780990600586,-0.40139450825064754,-1.349887045601733,5.512530315419499,-1.9985495587506952,3.37989059327019,4.21527959058636 +karman,karman_re200,65,66,26.0,1.0777191491797566,2.1619537728838623,1.64944730931893,4.3766137678176165,-2.3563308641314507,5.60965808108449,1.2563057243824005,0.15628058463335037,,,-7.921209931373596,95.60005068778992,97.68117368221283,-1.2547105550765991,-78.93842458724976,-36.86695098876953,-2.5723767280578613,0.23421527445316315,8.841802597045898,-0.824550649265613,-1.7882349358135048,5.074182425207727,-1.7478260787922484,2.022450210266668,3.767620171838171 +karman,karman_re200,66,67,26.400000000000002,3.7327397149056196,4.158139345236123,0.2844923874363303,4.30172448977828,0.691611843649298,4.664085921831429,1.1452523758634925,2.982116595376283,,,1.982012391090393,92.75338053703308,98.66501986980438,-2.6417940855026245,-77.70577073097229,-40.28612673282623,-2.4563310146331787,-2.062518358230591,6.456820964813232,-1.5858787268507963,-1.9334684823429213,4.928948878678311,-0.8704522877823824,-0.12904987588766947,1.5278720861349218 +karman,karman_re200,67,68,26.8,2.5174703914672136,3.7807601038366556,-0.4496609326452017,1.6181485261768103,1.4236560091376305,6.546160904690623,-2.6220877189189196,-3.8205194287002087,,,11.21252179145813,90.10260701179504,99.97610449790955,-3.6849647760391235,-77.17679738998413,-37.91022002696991,-1.588883876800537,-5.814050674438477,2.127040386199951,-1.4419495168842842,-6.860327242072808,0.002090118948424813,-0.14693435991625292,1.0462765676343313,2.1249502672515264 +karman,karman_re200,68,69,27.200000000000003,0.9885963518172503,-0.6930556846782565,0.9736970532685518,2.935990458354354,2.8928525280207396,7.41789024323225,-3.095450811088085,-3.298049094155431,,,19.01247799396515,85.62278151512146,101.71715915203094,-4.555541276931763,-77.12417840957642,-30.28610646724701,-1.0306967496871948,-5.859549522399902,2.2612009048461914,0.2643255012878476,-7.47938287244089,-0.6169655114196577,-1.2950222509750424,1.619833350040988,2.878166416265849 +karman,karman_re200,69,70,27.6,-1.114111626520753,-1.9515305466484278,1.1584672902245075,1.202822953928262,3.9116088300943375,6.762888981029391,-1.274338224902749,1.3629323802888393,,,22.699227929115295,75.85775852203369,102.07702815532684,-3.401615098118782,-51.6588568687439,-15.188312157988548,-0.5214755535125732,-4.519156455993652,2.085028648376465,0.7442970333052901,-5.097765000954355,1.7646523600668773,-1.2657725868178633,0.5786085449607024,0.32037628830958753 +karman,karman_re200,70,71,28.0,-2.130343811586499,-1.8625734810484573,1.4354385930346325,0.7405333744827658,3.932524472475052,5.876603536307812,-1.7239972949028015,0.48452988266944885,,,24.05329942703247,72.14778065681458,102.7214765548706,-4.072065651416779,27.337905764579773,2.378934621810913,1.7773414850234985,-7.183185577392578,-2.6918458938598633,0.7103695705088136,-5.685820942861481,1.1765964181597512,1.066971914514685,-1.4973646345310971,-3.8684423120196145 +karman,karman_re200,71,72,28.400000000000002,-1.2118322774767876,-2.964647486805916,1.3955002650618553,1.579168252646923,3.528112545609474,4.168492916505784,-2.749479201156646,-1.9708458567038178,,,20.48397958278656,78.85090112686157,100.79356729984283,-4.466748237609863,71.05434536933899,21.63556218147278,3.3455116748809814,-8.41006088256836,-4.0,1.130691155726576,-7.0269275023060604,-0.16451014128482777,2.2148205191544053,-1.383133380262299,-3.8354898587151722 +karman,karman_re200,72,73,28.8,1.6704886220395565,-5.475790938362479,0.8924829307943583,3.455454483628273,2.8607698623090982,2.9630409262608737,-2.723225887166336,-2.585681912023574,,,11.357364058494568,85.02984642982483,99.45580065250397,-1.592305302619934,77.0350694656372,34.07827019691467,3.7352969646453857,-7.637403964996338,-3.9298624992370605,2.088419757211935,-6.992593896432719,-0.13017653541148633,1.6468772074334508,-0.6448100685636193,-3.799685963825574 +karman,karman_re200,73,74,29.200000000000003,6.658943835645914,-8.536533452570438,-0.3111278638243675,6.036688107997179,1.6138592036440969,3.7302327109500766,-1.4995090896263719,-1.3851589756086469,,,1.4381587505340576,88.94705176353455,99.34543967247009,-1.8772527575492859,79.82009053230286,39.15162831544876,3.209918737411499,-5.9302592277526855,0.5439291000366211,3.2557607332211425,-5.392239356703649,1.4701780043175836,-0.04584199580964343,-0.5380198710490367,-0.9262489042809625 +karman,karman_re200,74,75,29.6,6.106998771429062,-7.5479072984308,0.6661920342594385,7.439382839947939,-0.13120965741109103,6.357847945764661,2.014788566157222,3.8983674749033526,,,-9.332534670829773,92.91120767593384,97.83776104450226,-4.415963590145111,82.37689733505249,37.94046193361282,2.7151682376861572,-4.484391689300537,5.874200344085693,2.8787071867942764,-0.7963048899228835,6.066112471098348,-0.16353894910811917,-3.6880867993776536,-0.19191212701265492 +karman,karman_re200,75,76,30.0,5.113658495247364,-2.5240335380658507,0.27617893647402525,5.6660163681954145,-1.0974491015076637,5.217514233663678,1.5869534108787775,2.0764577202498913,,,-20.989909768104553,99.19326305389404,93.81179511547089,-6.118239462375641,80.47823309898376,32.728950679302216,2.7073497772216797,-5.408656120300293,3.640784502029419,0.9626447700610381,-1.3558199136456737,5.506597447375558,1.7447050071606416,-4.05283620665462,-1.8658129453461392 +karman,karman_re200,76,77,30.400000000000002,2.918260172009468,-0.1471028954256326,-0.448098435299471,2.022063301410526,-3.6346560809761286,3.2851967262104154,-1.1171804508194327,-5.869016982614994,,,-29.92011308670044,109.9522590637207,89.05736207962036,-5.705248564481735,82.11442828178406,23.065070062875748,3.1261613368988037,-6.095123291015625,0.07310819625854492,0.05610378420361011,-4.89223692639204,1.970180434629192,3.0700575526951934,-1.202886364623585,-1.897072238370647 +karman,karman_re200,77,78,30.8,-0.5024965503253043,-0.8639399675303139,-1.0792298926389776,-2.6609563356032595,-4.800983238965273,2.580334316007793,-1.3848926173523068,-7.570768473669887,,,-30.472290515899658,117.20378398895264,85.26400327682495,-0.7263945415616035,37.30586767196655,5.4764339700341225,2.097083568572998,-3.1684060096740723,1.6473275423049927,0.32949930293995244,-5.242346021823982,1.62007133919725,1.7675842656330456,2.07394001214991,0.02725620310774257 +karman,karman_re200,78,79,31.200000000000003,-1.7256863648071885,-1.1169117933604866,-1.7516306543257087,-5.228947673458606,-5.886862985789776,4.0878577856346965,0.5654777633026242,-4.755907459184527,,,-26.893052458763123,111.68597936630249,90.46616852283478,1.7429910600185394,-48.02202582359314,-9.058286994695663,-0.8566150665283203,2.0955519676208496,8.381519317626953,0.42598059030621177,-2.691687160959324,4.170730200061908,-1.282595656834532,4.787239128580174,4.210789117565045 +karman,karman_re200,79,80,31.6,-1.9225615542382002,-0.020122533896937966,-0.6412960647139698,-3.20515368366614,-4.759362433105707,5.892748013138771,2.2005466744303703,-0.3582690842449665,,,-20.13605833053589,100.54974555969238,97.17357158660889,2.024006098508835,-87.34877109527588,-21.515365689992905,-2.4507217407226562,3.2785933017730713,11.223129272460938,0.007674562054792284,-0.5533738192176054,6.309043541803627,-2.4583963027774485,3.8319671209906767,4.914085730657311 +karman,karman_re200,80,81,32.0,-0.8596862899139524,1.6854542654982652,1.6634196626910125,2.4671530354680726,-3.9754589088261127,7.046686019748449,1.3901139609515667,-1.1952309869229794,,,-11.116549372673035,94.46833729743958,98.59955608844757,0.34560710191726685,-84.70543026924133,-32.76432007551193,-2.7978951930999756,1.3622188568115234,10.259937286376953,-0.6428178189352741,-1.6132429611367716,5.249174399884461,-2.1550773741647014,2.975461817948295,5.0107628864924925 +karman,karman_re200,81,82,32.4,2.991695888340473,3.7332619540393353,2.2764387540519238,7.544573396444321,-1.9561436492949724,5.085762473754585,2.0805714884772897,2.204999327659607,,,-0.5998760461807251,92.49425530433655,98.63633811473846,-1.2440681457519531,-82.32013583183289,-38.44250738620758,-3.08646559715271,0.3763723373413086,9.46911334991455,-1.4238341294298829,-0.7102751822460736,6.152142178775159,-1.662631467722827,1.0866475195873821,3.316971171139392 +karman,karman_re200,82,83,32.800000000000004,4.57975547760725,5.717870779335499,-0.530480407178402,3.5187946632504463,0.3212337614968419,5.28121879324317,-0.20674336701631546,-0.09225297253578901,,,9.579318761825562,92.47979521751404,97.99193739891052,-2.203451097011566,-83.17394852638245,-38.1480947136879,-2.531464099884033,-3.3802151679992676,5.24588680267334,-2.1807469348565154,-3.7015838903864355,3.1608334706347967,-0.3507171650275178,0.32136872238716796,2.085053332038543 +karman,karman_re200,83,84,33.2,2.8749152552336454,2.2130568395368755,0.5080230184830725,3.8909612921997905,1.7484427662566304,6.92555436398834,-3.4640623489394784,-5.179681931622326,,,18.56667399406433,95.4745888710022,97.37692475318909,-2.948412299156189,-87.82874345779419,-32.62471556663513,-1.5425387620925903,-6.033371925354004,2.3666980266571045,-0.8440409211283636,-7.961446327958445,-1.0990289669372122,-0.6984978409642267,1.928074402604441,3.4657269935943167 +karman,karman_re200,84,85,33.6,1.3229731703177094,-0.5084986623842269,0.9375260851811618,3.198025340680033,3.00283869728446,6.057709688320756,-1.8193123396486044,-0.6357859820127487,,,24.26939308643341,101.69832706451416,96.43878638744354,-3.127216547727585,-72.52103686332703,-21.109748631715775,-1.06093430519104,-4.50738525390625,2.9343175888061523,0.19393703393589323,-5.810472222365098,1.0519451386561345,-1.2548713391269333,1.3030869684588477,1.8823724501500179 +karman,karman_re200,85,86,34.0,-1.4441971434280276,-0.8060007021413185,0.6264662006287836,-0.19126474217046052,3.8442278746515512,5.9793812688440084,-1.0136945638805628,1.8168387468904257,,,26.616689562797546,103.70270013809204,97.22924530506134,-3.89238940551877,6.910137832164764,-5.942684691399336,1.0708645582199097,-6.4613871574401855,-1.17909574508667,0.3074017634394928,-4.756899968287483,2.10551739273375,0.7634627947804169,-1.7044871891527027,-3.2846131378204197 +karman,karman_re200,86,87,34.4,-1.7565202433615923,-1.501166174421087,0.8880366513039917,0.019553059246391058,3.4800595603883266,5.190232070162892,-2.3145924787968397,-1.1491253972053528,,,25.006240606307983,97.89013862609863,98.50267767906189,-4.442750662565231,67.53366589546204,11.04622557759285,2.994231939315796,-8.675407409667969,-4.0,0.5725319196457103,-6.458190567587566,0.4042267934336663,2.4217000196700855,-2.2172168420804024,-4.404226793433667 +karman,karman_re200,87,88,34.800000000000004,-0.38884818786755204,-3.7655639462172985,1.2611807323992252,2.1335132769308984,3.22495074942708,3.9885503938421607,-2.7856217930093408,-2.3462928365916014,,,17.174071073532104,93.38560700416565,96.84959053993225,-2.454833686351776,74.78051781654358,29.608596861362457,3.5973799228668213,-8.287656784057617,-4.0,1.4361538325414733,-7.07419412565005,-0.21177676462881756,2.161226090325348,-1.2134626584075674,-3.7882232353711824 +karman,karman_re200,88,89,35.2,4.3894099071621895,-7.166300667449832,-0.2617479767650366,3.8659139536321163,2.362980740144849,3.4413831162964925,-3.135517254122533,-3.908053768100217,,,6.274345517158508,93.31604838371277,96.06697261333466,0.5493834614753723,78.32515835762024,39.82832878828049,3.609811305999756,-7.379256248474121,-2.7156429290771484,2.7331656866540124,-7.531781036893545,-0.669363675872312,0.8766456193457435,0.15252478841942363,-2.0462792532048364 +karman,karman_re200,89,90,35.6,6.744463928043842,-9.852098766714334,-0.6518908776342869,5.4406821727752686,2.4107727222144604,5.580284167081118,0.29388628900051117,2.9985453002154827,,,-4.8116534948349,95.8228349685669,95.03470361232758,0.5256295204162598,80.16855120658875,43.972048163414,2.971911907196045,-5.1884002685546875,3.1307318210601807,3.757506074649838,-3.046869544436334,3.8155478165848984,-0.7855941674537932,-2.1415307241183537,-0.6848159955247177 +karman,karman_re200,90,91,36.0,7.366649340838194,-4.87730442546308,0.6400637794286013,8.646776899695396,-0.08802121737971902,5.821323487907648,2.4006138555705547,4.7132064937613904,,,-15.279823541641235,99.97035264968872,93.3967649936676,-0.6378158926963806,80.26238083839417,42.48290807008743,2.4795119762420654,-4.783987522125244,5.621772766113281,1.860162127942809,-0.29172960363427247,6.57068775738696,0.6193498482992563,-4.492257918490972,-0.9489149912736785 +karman,karman_re200,91,92,36.4,5.80168329179287,-1.2249911960680038,-0.2716096059884876,5.258464079815894,-0.9230091236531734,3.6376281641423702,0.3353678621351719,-0.25227339938282967,,,-24.69620704650879,107.67704248428345,91.30624532699585,-2.79601514339447,79.55038547515869,36.241576075553894,2.914278745651245,-6.12315559387207,1.378333330154419,0.46720114866988505,-2.9926206986130093,3.869796662408223,2.44707759698136,-3.130534895259061,-2.491463332253804 +karman,karman_re200,92,93,36.800000000000004,1.5749456360936165,-0.7332927307288628,-0.6443025085900445,0.2863406189135276,-3.7683197297155857,1.1250902898609638,-1.8912744708359241,-7.550868671387434,,,-30.342218279838562,123.36287498474121,88.59227001667023,-5.381187796592712,78.01644206047058,23.132440447807312,3.392610788345337,-5.346921920776367,-1.3594841957092285,0.2796715659732649,-5.9045829868538435,0.9578343741673887,3.1129392223720718,0.5576610660774763,-2.317318569876617 +karman,karman_re200,93,94,37.2,-0.4568567092064768,-2.201367082307115,-2.6392141298856586,-5.735284968977794,-4.971395246684551,2.0744535722769797,-0.8076181984506547,-6.586631643585861,,,-27.759674191474915,132.32438564300537,85.2299302816391,-2.927740942686796,8.006508648395538,1.2781486846506596,1.4036705493927002,-1.0754199028015137,3.9559152126312256,0.8395825478576442,-4.487397050937973,2.3750203100832596,0.564088001535056,3.411977148136459,1.580894902547966 +karman,karman_re200,94,95,37.6,-1.0806232457980514,-1.6002127958927304,-2.5151675508823246,-6.1109583475627005,-6.628815550357103,5.412948084995151,2.215832704678178,-2.1971501410007477,,,-22.096776962280273,120.5315351486206,89.51568603515625,-0.8994154632091522,-75.33721923828125,-15.952029079198837,-2.0129804611206055,3.795830249786377,12.0,0.6103074526225646,-0.533383027270733,6.329034333750499,-2.62328791374317,4.32921327705711,5.670965666249501 +karman,karman_re200,95,96,38.0,-1.6098992200568318,0.569172203540802,-0.03498140722513199,-1.6798620345070958,-4.0485248900949955,6.988828768953681,3.0628510285168886,2.0771771669387817,,,-15.483620762825012,105.57256937026978,94.97444331645966,-1.9956737756729126,-87.52724528312683,-27.999553084373474,-2.8257646560668945,2.9168624877929688,12.0,-0.21707740279177504,0.5743321095272633,7.436749470548495,-2.6086872532751193,2.3425303782657054,4.563250529451505 +karman,karman_re200,96,97,38.400000000000006,-0.14003175601828843,2.0948369055986404,4.585474729537964,9.03091770305764,-3.9492021314799786,7.35916942358017,1.6584862023591995,-0.6322297267615795,,,-5.923819541931152,98.35571050643921,96.85243368148804,-2.8081700205802917,-79.4269859790802,-36.54404431581497,-3.0254058837890625,0.9652203917503357,10.630073547363281,-0.7989528510190375,-1.2622706318058552,5.600146729215377,-2.226453032770025,2.227491023556191,5.029926818147905 +karman,karman_re200,97,98,38.800000000000004,4.117188975214958,4.892690223641694,2.47482571285218,9.066840400919318,-1.3912369031459093,4.556307685561478,2.2102229995653033,3.0292090959846973,,,4.356509447097778,95.14103531837463,97.36236929893494,-3.343166410923004,-80.88081479072571,-39.9271234869957,-3.183126211166382,-0.13055706024169922,8.93212890625,-1.8660301395704226,-0.5407192974453174,6.321698063575915,-1.3170960715959592,0.4101622372036182,2.610430842674085 +karman,karman_re200,98,99,39.2,4.002777393907309,5.317959934473038,-0.0285380519926548,3.945701289921999,0.29353416175581515,5.674342624843121,-1.3426565565168858,-2.3917789512779564,,,13.99606168270111,94.74522471427917,97.46991693973541,-3.459407389163971,-83.68181586265564,-37.56556361913681,-2.3251395225524902,-4.164270401000977,4.1458353996276855,-2.0282243643392706,-5.18711047072742,1.6753068902938115,-0.2969151582132197,1.0228400697264437,2.470528509333874 +karman,karman_re200,99,100,39.6,3.086320823058486,1.3569119037128985,0.6622392102144659,4.410799243487418,1.7616200493648648,6.0232775285840034,-2.342812716960907,-2.924005384556949,,,21.97730839252472,96.6623067855835,97.30720221996307,-3.4828096628189087,-92.96392798423767,-30.214405059814453,-1.8259961605072021,-4.37882137298584,3.8875222206115723,-0.5175145765074656,-6.49509648107089,0.36732087995034224,-1.3084815839997366,2.11627510808505,3.52020134066123 +karman,karman_re200,100,101,40.0,0.9411004139110446,-0.33328444260405377,0.541469307790976,2.0240390294929966,3.764393040910363,4.921045969240367,-1.3200059765949845,1.1243810877203941,,,25.95590651035309,101.16842985153198,96.28177583217621,-3.067696839570999,-53.188127279281616,-16.89453348517418,-0.5160751342773438,-4.702108383178711,1.5090570449829102,0.12711183143047847,-5.15748845485056,1.704928906170673,-0.6431869657078222,0.4553800716718488,-0.19587186118776279 +karman,karman_re200,101,102,40.400000000000006,-1.4600498834624887,-0.6251738814171404,0.18825745792128146,-1.0835349676199257,3.211207687854767,5.393503815867007,-1.5738530782982707,0.06350153125822544,,,26.729121804237366,101.99825763702393,97.78997600078583,-3.896060958504677,39.50726389884949,-1.926920935511589,2.0111613273620605,-7.568153381347656,-3.1105613708496094,0.23843596301265493,-5.489465071028906,1.3729522899923259,1.7727253643494056,-2.07868831031875,-4.483513660841935 +karman,karman_re200,102,103,40.800000000000004,-2.0977191161364317,-2.393128874246031,1.0630532051436603,0.02838729415088892,3.3871070481836796,5.506030633114278,-2.3252280661836267,-1.2633490841835737,,,23.34311306476593,97.15015292167664,98.52697551250458,-4.99640665948391,74.97535943984985,16.35853387415409,3.278820276260376,-8.707999229431152,-4.0,0.9127188526347142,-6.472099595061362,0.3903177659598698,2.3661014236256617,-2.2358996343697903,-4.390317765959869 +karman,karman_re200,103,104,41.2,0.7146592251956463,-4.997188923880458,1.4913117047399282,3.6972826346755028,3.3621257171034813,3.989994409494102,-2.8508646646514535,-2.3396036121994257,,,14.801132678985596,93.05175542831421,97.01521396636963,-3.9055168628692627,75.03964900970459,33.25093388557434,3.6789162158966064,-8.24531364440918,-4.0,1.9058850486855003,-7.1595175648864116,-0.2971002038651793,1.773031167211106,-1.0857960795227681,-3.7028997961348207 +karman,karman_re200,104,105,41.6,7.174707483500242,-8.716886164620519,-1.1470511090010405,4.880605265498161,2.1684288512915373,3.9596694987267256,-2.9310707468539476,-3.693712642416358,,,4.008090496063232,92.17782020568848,96.89493179321289,-2.0264342427253723,78.76772284507751,41.271401941776276,3.171349048614502,-6.7194647789001465,-1.0555329322814941,3.324545712660986,-7.264409618362087,-0.40199225734085475,-0.1531966640464839,0.5449448394619409,-0.6535406749406394 +karman,karman_re200,105,106,42.0,7.316286675632,-8.671785704791546,-0.7799854502081871,5.756315775215626,1.0835160501301289,6.655322620645165,1.6814449336379766,4.446405917406082,,,-6.474965810775757,92.5315797328949,96.53039574623108,-3.1086891889572144,81.07817769050598,43.4408038854599,2.6203694343566895,-4.646454334259033,5.534146785736084,3.3073447836214385,-1.232245621196968,5.630171739824265,-0.686975349264749,-3.4142087130620653,-0.09602495408818079 +karman,karman_re200,106,107,42.400000000000006,7.182361092418432,-3.754666424356401,-0.519590568728745,6.143179954960942,-0.04198942770017311,5.052101449109614,2.029579016380012,4.017168605059851,,,-16.319027543067932,93.53311657905579,95.34445703029633,-4.666584730148315,82.94249773025513,40.39948582649231,2.6354620456695557,-5.1829328536987305,4.255780220031738,1.4319976110539976,-0.7769622085065109,6.085455152514721,1.203464434615558,-4.40597064519222,-1.829674932482983 +karman,karman_re200,107,108,42.800000000000004,5.611348897218704,-1.1377402115613222,-0.5362248048186302,4.538899287581444,-1.9881578627973795,2.8312839567661285,-0.6926951464265585,-3.3735481556504965,,,-24.831753969192505,96.39493823051453,94.22453045845032,-6.783360242843628,85.86673736572266,32.72955119609833,3.1873483657836914,-6.37326192855835,0.1991891860961914,0.4339243705877697,-4.337102776645088,2.525314584376145,2.753423995195922,-2.036159151913262,-2.3261253982799537 +karman,karman_re200,108,109,43.2,0.6845678435638547,-1.0696051904233173,-1.519653873401694,-2.3547399032395333,-4.563465248793364,1.8431021671858616,-1.9944804880651645,-8.552426224923693,,,-28.466695547103882,95.2667236328125,91.80623888969421,-6.842023134231567,78.82441878318787,17.877785861492157,3.3790340423583984,-5.135754585266113,-1.0285401344299316,0.4079382571834448,-6.039553936449538,0.8228634245716937,2.9710957851749535,0.9037993511834248,-1.8514035590016253 +karman,karman_re200,109,110,43.6,-1.0457936441525817,-2.097510325256735,-2.8327740146778524,-6.7113416735082865,-5.792245734483004,3.485666704364121,-0.057571916840970516,-5.907389568164945,,,-25.627198815345764,88.8080894947052,91.00696742534637,-2.3389616748318076,-2.6761846616864204,-1.5656719217076898,0.6888652443885803,0.10603905469179153,5.970192909240723,0.7999724703756073,-3.5065001847725266,3.3559171762487057,-0.11110722598702694,3.612539239464318,2.614275732992017 +karman,karman_re200,110,111,44.0,-1.3505390379577875,-0.9781519183889031,-1.775042968802154,-4.900624975562096,-6.26525841653347,6.158061092719436,2.67064874060452,-0.9239609353244305,,,-22.542566061019897,85.1636290550232,96.89555764198303,-0.18742382526397705,-83.87048244476318,-16.38425886631012,-2.4715089797973633,4.0,12.0,0.37305876263585636,0.06141710074869966,6.923834461769932,-2.8445677424332194,3.9385828992513003,5.076165538230068 +karman,karman_re200,111,112,44.400000000000006,-1.618791720829904,1.486284425482154,0.4413110436871648,-0.7361696334555745,-4.40902728587389,7.616223534569144,2.3835489992052317,0.3580707125365734,,,-15.313342213630676,86.93023920059204,97.35344350337982,0.09425133466720581,-94.07545328140259,-30.504585802555084,-3.1181352138519287,2.543682098388672,11.909772872924805,-0.566856148080328,-0.3140467119790875,6.548370649042145,-2.5512790657716007,2.8577288103677594,5.36140222388266 +karman,karman_re200,112,113,44.800000000000004,0.5218109581619501,2.070029848255217,4.670416819863021,9.862644597887993,-3.6368367727845907,7.112415973097086,1.795386429876089,-0.04606391303241253,,,-4.916799068450928,89.35617804527283,97.14359045028687,0.2675488591194153,-85.35993099212646,-39.19479101896286,-3.2601959705352783,1.141157627105713,11.044239044189453,-0.7894916518502855,-1.0832350076834838,5.779182353337749,-2.4707043186849926,2.2243926347891967,5.265056690851704 +karman,karman_re200,113,114,45.2,4.609846044331789,4.840109148062766,1.7837699269875884,8.177385898306966,-0.7974556647241116,4.448530729860067,2.1325889974832535,3.4677223302423954,,,5.564650893211365,90.9273087978363,97.02775776386261,-0.260278582572937,-85.99516153335571,-42.559462785720825,-3.2471516132354736,-0.35262131690979004,8.863020896911621,-1.845976167764237,-0.6422476313859051,6.220169729635327,-1.4011754454712366,0.2896263144761151,2.6428511672762944 +karman,karman_re200,114,115,45.6,4.004769027233124,4.900156054645777,0.14734407886862755,4.299457184970379,0.8860084926709533,5.637112772092223,-1.7042758408933878,-2.5225431891158223,,,15.528592467308044,93.37762594223022,96.35858833789825,-0.6625816226005554,-88.23338150978088,-40.16169160604477,-2.301624298095703,-4.504244327545166,3.798004627227783,-1.868877543561634,-5.6600295845035085,1.2023877765177233,-0.4327467545340691,1.1557852569583424,2.59561685071006 +karman,karman_re200,115,116,46.0,2.705859951674938,1.3758068671450019,0.8469108724966645,4.399681696668267,1.938902190886438,6.0212420066818595,-2.138379612006247,-2.337857033126056,,,23.835140466690063,98.75940084457397,95.7750141620636,-1.066996157169342,-97.82664775848389,-32.19153732061386,-2.0221822261810303,-3.9988369941711426,4.148578643798828,-0.5247209537025749,-6.2277425898414815,0.6346747711797502,-1.4974612724784553,2.228905595670339,3.513903872619078 +karman,karman_re200,116,117,46.400000000000006,0.8694251882843673,-0.4885100934188813,0.13377834693528712,1.1369818821549416,4.1040293872356415,4.77400713134557,-1.171886338852346,1.7602567095309496,,,28.173086047172546,107.1605920791626,94.27348673343658,-0.9925283491611481,-60.546332597732544,-17.630312591791153,-0.6912481188774109,-4.341096878051758,1.8060355186462402,0.18631356495844087,-4.96378029037902,1.8986370706422124,-0.8775616838358518,0.6226834123272624,-0.0926015519959722 +karman,karman_re200,117,118,46.800000000000004,-1.8562226323410869,-0.5149451462784782,0.15673528832849115,-1.5427520556841046,3.2580248080193996,5.515887518413365,-1.6890311380848289,-0.12003746815025806,,,29.229828715324402,109.38342809677124,95.83975374698639,-2.06263231812045,37.65653669834137,-1.7045060289092362,1.9474413394927979,-7.538736820220947,-3.252718925476074,0.1963956676713384,-5.64009283982897,1.2223245211922618,1.7510456718214595,-1.8986439803919772,-4.4750434466683355 +karman,karman_re200,118,119,47.2,-2.1647741086781025,-2.5497928727418184,1.1449509765952826,0.12512784451246262,3.4089565742760897,5.2034626714885235,-2.3068077862262726,-1.2046589981764555,,,23.541036248207092,103.82064580917358,96.5438574552536,-0.7766105234622955,82.6647698879242,17.553745955228806,3.4673376083374023,-8.764070510864258,-4.0,0.9724691596470315,-6.448009888429818,0.4144074725914151,2.494868448690371,-2.31606062243444,-4.4144074725914155 +karman,karman_re200,119,120,47.6,0.47538074431940913,-4.971923655830324,1.6228618333116174,3.721104410942644,3.212406300008297,4.059917235281318,-2.881497668568045,-2.550589037127793,,,14.243260025978088,100.25346279144287,95.13789117336273,0.09875297546386719,81.95068836212158,34.72338914871216,3.8230862617492676,-8.356281280517578,-4.0,1.89624909187833,-7.19957884947612,-0.3371614884548877,1.9268371698709377,-1.1567024310414578,-3.6628385115451123 +karman,karman_re200,120,121,48.0,6.743387784808874,-8.559630019590259,-1.1027606669813395,4.537866450846195,1.6886667581275105,4.291090648621321,-3.202865831553936,-4.7170649049803615,,,2.40042507648468,102.80681848526001,93.93024146556854,1.6534551978111267,82.79842138290405,42.42823272943497,3.280749559402466,-6.888320446014404,-1.2458276748657227,3.2645695660328617,-7.619858279808993,-0.75744091878776,0.016179993369604073,0.7315378337945884,-0.48838675607796267 +karman,karman_re200,121,122,48.400000000000006,6.767666898667812,-8.744086138904095,-0.9545972570776939,4.8584723845124245,0.5969859194010496,6.897031329572201,1.4598388224840164,3.5166635643690825,,,-10.280576348304749,109.4226598739624,90.7222718000412,1.6883403062820435,80.08389472961426,44.30564641952515,2.6994194984436035,-4.5942301750183105,5.65671443939209,3.3349195498525246,-1.5220580571542859,5.340359303866946,-0.6355000514089211,-3.0721721178640244,0.3163551355251437 +karman,karman_re200,122,123,48.800000000000004,6.600511260330677,-3.681394038721919,-0.5391177255660295,5.522275809198618,-0.6252377643249929,5.4854199988767505,2.109096967615187,3.5929561709053814,,,-22.824227809906006,118.44875812530518,84.8280668258667,1.1933043599128723,70.51206231117249,41.86798185110092,2.4311559200286865,-4.682309150695801,5.417867183685303,1.4040521508383699,-0.6729700801766625,6.18944728084457,1.0271037691903167,-4.009339070519138,-0.7715800971592675 +karman,karman_re200,123,124,49.2,4.989731125533581,-0.7687649049330503,-0.5654530541505665,3.858825017232448,-2.52824486233294,3.4949195105582476,-0.5859460216015577,-3.7001369055360556,,,-33.937688171863556,134.27554368972778,78.46445292234421,-3.0917078256607056,57.134073972702026,32.97708332538605,2.5852508544921875,-5.53439998626709,2.158015727996826,0.2932003493532678,-4.197498215467839,2.664919145553394,2.2920505051389197,-1.3369017707992512,-0.5069034175565679 +karman,karman_re200,124,125,49.6,-0.1990518212551251,-0.8337813487742096,-1.0689755144994706,-2.3370028502540663,-4.634547047317028,2.6515691133681685,-2.132917143171653,-8.900381333660334,,,-39.409339427948,147.29313850402832,74.31737184524536,-12.679752800613642,23.347438871860504,15.546855237334967,2.0593206882476807,-3.4947988986968994,1.5685067176818848,0.31799706409090944,-6.220598872589954,0.6418184884312783,1.741323624156771,2.7257999738930545,0.9266882292506065 +karman,karman_re200,125,126,50.0,-1.8404221627861261,-1.7132764151028823,-1.7693214649625588,-5.379065092711244,-4.943022970110178,3.0456288950517774,-0.308914459310472,-5.560851888731122,,,-31.73610270023346,137.0200514793396,74.86399114131927,-18.375324830412865,-28.170055150985718,-7.2641972452402115,0.08215098083019257,0.4357624053955078,6.05886697769165,0.6534289484645845,-3.835201384001572,3.0272159770196603,-0.571277967634392,4.270963789397079,3.03165100067199 +karman,karman_re200,126,127,50.400000000000006,-2.4559174198657274,-0.16044010408222675,-0.9026051266118884,-4.261127673089504,-5.048805847764015,4.946157336235046,1.5608090907335281,-1.927187666296959,,,-13.269153237342834,116.20098352432251,79.81491386890411,-10.159198939800262,-56.43579363822937,-26.070572435855865,-1.711607813835144,2.186978816986084,9.324653625488281,0.061190481336137754,-1.390010979353598,5.472406381667634,-1.7727982951712817,3.576989796339682,3.8522472438206474 +karman,karman_re200,127,128,50.800000000000004,-0.9581507765688002,1.6885676886886358,0.3386756870895624,-0.2807994023896754,-3.980867564678192,5.272335140034556,1.321782125160098,-1.337303314357996,,,-2.7157098054885864,102.56396532058716,87.63534128665924,-5.335140228271484,-64.82499837875366,-36.7363840341568,-2.2709286212921143,1.1198234558105469,8.753280639648438,-0.644005251869899,-1.7026060914269945,5.159811269594238,-1.6269233694222152,2.822429547237541,3.5934693700541995 +karman,karman_re200,128,129,51.2,1.9846204668283463,3.46680695656687,1.0158744407817721,4.0163693483918905,-2.5377445854246616,4.735320690087974,1.4642506139352918,0.3907566424459219,,,4.567855596542358,96.07558250427246,93.66578459739685,-5.220101773738861,-71.24395966529846,-41.732726991176605,-2.6938343048095703,0.06829357147216797,8.332042694091797,-1.3222104758986977,-1.5162883966482112,5.346128964373021,-1.3716238289108726,1.5845819681203792,2.985913729718776 +karman,karman_re200,129,130,51.6,5.089966580271721,5.58475567959249,-1.586276339367032,1.9174139015376568,0.029209344575065188,4.562692949548364,0.5048753228038549,1.038959990182775,,,13.190922141075134,92.37791299819946,96.42286598682404,-5.393269658088684,-76.28234028816223,-41.79076552391052,-2.514054298400879,-2.836853504180908,5.8036627769470215,-2.129977976104107,-2.77094192886464,4.091475432156592,-0.3840763222967718,-0.06591157531626823,1.7121873447904292 +karman,karman_re200,130,131,52.0,3.194413846358657,3.977626096457243,-1.2727431021630764,0.6489276420325041,1.0617547668516636,6.834162166342139,-3.384147072210908,-5.706539377570152,,,21.566686034202576,89.60214853286743,97.76642620563507,-5.165518820285797,-82.59118795394897,-37.4780997633934,-1.692814826965332,-6.239538192749023,1.948784351348877,-1.5170325200777777,-7.856934584584998,-0.9945172235637663,-0.17578230688755436,1.6173963918359746,2.943301574912643 +karman,karman_re200,131,132,52.400000000000006,1.8626251257956028,-0.21830396144650877,0.5234060517977923,2.9094372293911874,2.4437173269689083,6.730248453095555,-2.745087957009673,-3.046458587050438,,,27.613258361816406,83.64838361740112,98.25245141983032,-3.821168839931488,-90.1893675327301,-27.340896427631378,-1.5936224460601807,-4.665172100067139,3.3995614051818848,0.08325926086193133,-7.021184713190316,-0.1587673521690829,-1.676881706922112,2.356012613123177,3.5583287573509677 +karman,karman_re200,132,133,52.800000000000004,-0.933704839553684,-1.2410760973580182,0.8188168867491186,0.7039289339445531,3.7669583689421415,6.343326764181256,-0.7493498269468546,2.2682587150484324,,,30.263158679008484,78.83185744285583,99.06904995441437,-2.1742619574069977,-31.208503246307373,-12.857498973608017,-0.21557649970054626,-4.768787860870361,1.4487836360931396,0.473335792235535,-4.411194735952849,2.451222625068383,-0.6889122919360813,-0.3575931249175124,-1.0024389889752432 +karman,karman_re200,133,134,53.2,-2.0939717069268227,-1.217696029925719,1.0436478478368372,-0.006676011253148317,3.869036678224802,5.383857758715749,-1.4666656497865915,0.935705378651619,,,28.853636980056763,81.85356259346008,100.82961916923523,-0.7771185599267483,60.980504751205444,2.5891304947435856,2.508941411972046,-8.105122566223145,-4.0,0.46441883479501544,-5.349287304273238,1.5131300567479944,2.0445225771770303,-2.7558352619499065,-5.513130056747994 +karman,karman_re200,134,135,53.6,-1.2272311141714454,-2.5567322736606,1.0333374375477433,0.8394437609240413,3.418741514906287,4.125216510146856,-2.137483563274145,-0.8562256116420031,,,21.438032388687134,88.66936564445496,99.28839802742004,1.4936432242393494,83.65513682365417,21.760644018650055,3.513852596282959,-8.399259567260742,-4.0,0.9751157877132104,-6.22657075362977,0.6358466073914624,2.5387368085697486,-2.1726888136309723,-4.635846607391462 +karman,karman_re200,135,136,54.0,1.8999897874891758,-5.210721166804433,0.6568052340298891,3.213600255548954,3.0926114413887262,3.536775184329599,-2.5585881085135043,-2.0245647756382823,,,12.209609150886536,94.52564120292664,97.82246053218842,2.796068787574768,80.50881028175354,36.56918704509735,3.7384467124938965,-7.892636299133301,-3.8812243938446045,1.987324416978397,-6.777283608131013,0.08513375289021896,1.7511222955154995,-1.115352691002288,-3.9663581467348235 +karman,karman_re200,136,137,54.400000000000006,7.094189524650574,-8.418873883783817,-0.8262144401669502,5.441760644316673,2.370536560192704,4.665413056500256,-1.4754313742741942,-0.5803261883556843,,,0.04540681838989258,101.46538019180298,95.29004096984863,4.301829636096954,81.53981566429138,42.69139915704727,3.077918529510498,-6.303674697875977,0.41193291544914246,3.2108863815804463,-5.360750959104119,1.5016664019171133,-0.1329678520699482,-0.9429237387718574,-1.0897334864679709 +karman,karman_re200,137,138,54.800000000000004,6.827977951616049,-6.382417166605592,0.6650530267506838,8.158084005117416,0.37990938290022314,6.557051558047533,2.2379602305591106,4.855829844018444,,,-13.79745602607727,111.40377521514893,90.16998410224915,4.847325384616852,76.89160108566284,44.07510608434677,2.49082612991333,-4.667544841766357,6.008111953735352,2.43419923432902,-0.5044450519420365,6.357972309079196,0.05662689558430989,-4.1630997898243205,-0.34986035534384463 +karman,karman_re200,138,139,55.2,5.755859427154064,-2.4143561022356153,-0.008282833732664585,5.739293759688735,-0.5786502151750028,4.729446722194552,1.4227612409740686,2.2668722667731345,,,-27.574971318244934,122.16585874557495,82.46816098690033,4.771958291530609,61.68592572212219,40.845148265361786,2.4284260272979736,-4.9508771896362305,4.181133270263672,0.9208147355534194,-1.5705474429426522,5.29186991807858,1.507611291744554,-3.380329746693578,-1.1107366478149086 +karman,karman_re200,139,140,55.6,3.331589512526989,-0.8350182470167056,-0.5056429508840665,2.320303610758856,-3.110199933871627,2.564461436122656,-1.0163439437747002,-5.142887821421027,,,-38.58534395694733,138.7323498725891,75.04009902477264,-0.8831292390823364,43.11499893665314,28.85977327823639,2.4637465476989746,-4.5955095291137695,2.0099587440490723,0.31846880648508885,-4.760364779058711,2.1020525819625213,2.145277741213886,0.16485524994494138,-0.09209383791344905 +karman,karman_re200,140,141,56.0,-0.030299581339932047,-1.544887971249409,-1.6233103087870404,-3.276920198914013,-4.112424794584513,2.538768923841417,-1.0776558192446828,-6.267736433073878,,,-39.518533647060394,142.61430501937866,72.13593870401382,-10.94067245721817,2.9479239135980606,5.177363753318787,1.3843659162521362,-2.12838077545166,3.6708950996398926,0.5892070384267022,-4.840547333098128,2.0218700279231046,0.795158877825434,2.7121665576464675,1.649025071716788 +karman,karman_re200,141,142,56.400000000000006,-2.0820777863264084,-1.1540676568984054,-1.3732680017710663,-4.828613789868541,-4.804741591215134,4.09194640815258,1.0468261316418648,-2.711089327931404,,,-25.471195578575134,129.3413281440735,75.51476061344147,-11.635423079133034,-33.73993933200836,-20.94247005879879,-0.6844428777694702,1.1371269226074219,7.860665798187256,0.44015151837529276,-2.062188531855374,4.800228829165858,-1.1245943961447629,3.1993154544627957,3.0604369690213975 +karman,karman_re200,142,143,56.800000000000004,-1.9113547168672085,0.5939180409768596,-0.2216536522610113,-2.354662021389231,-4.108489025384188,4.724456695839763,1.918592257425189,-0.27130451053380966,,,-10.971176624298096,115.45923948287964,85.77076196670532,-6.483204662799835,-50.857698917388916,-31.036321818828583,-1.7384345531463623,1.6841381788253784,8.736087799072266,-0.22651525321227925,-0.9221086704168422,5.94030869060439,-1.5119192999340831,2.6062468492422206,2.795779108467876 +karman,karman_re200,143,144,57.2,-0.1597767841303721,2.2723443107679486,0.8559302659705281,1.5520837478106841,-3.689558245241642,4.511022358201444,1.6567144775763154,-0.3761292900890112,,,-3.4230560064315796,106.81756734848022,95.05431354045868,-7.58405476808548,-58.252906799316406,-34.84031409025192,-2.176936149597168,1.0641961097717285,8.302438735961914,-0.8666526547880008,-1.264587661207706,5.597829699813526,-1.310283494809167,2.3287837709794346,2.704609036148388 +karman,karman_re200,144,145,57.6,3.3172774128615856,4.636343102902174,-0.0003012828528881073,3.3166748471558094,-1.4034243067726493,3.7684644921682775,2.0452491589821875,2.6870740111917257,,,4.746884107589722,99.86159801483154,99.24711585044861,-7.99136608839035,-62.84310221672058,-36.139245331287384,-2.450270414352417,-0.4445834159851074,7.314352035522461,-1.7682615436391644,-0.7564690814186035,6.105948279602629,-0.6820088707132526,0.31188566543349605,1.2084037559198322 +karman,karman_re200,145,146,58.0,4.825367592275143,6.195708643645048,-1.8987818621098995,1.0278038680553436,-0.09790947660803795,4.754139576107264,-0.767153687775135,-1.632216852158308,,,12.966251373291016,93.34736466407776,101.59229040145874,-7.716110348701477,-67.47509241104126,-33.90902280807495,-1.977392554283142,-4.177584648132324,3.654855489730835,-2.3629902030530263,-4.434478300874506,2.4279390601467266,0.3855976487698842,0.2568936527421819,1.2269164295841084 +karman,karman_re200,146,147,58.400000000000006,2.7563718613237143,2.5162880774587393,-0.23228093050420284,2.2918100003153086,1.6069784760475159,7.029572501778603,-3.4748436883091927,-5.3427089005708694,,,19.466641545295715,83.2834780216217,103.29498946666718,-6.397148221731186,-72.85810708999634,-27.16480866074562,-1.2139472961425781,-6.482146263122559,1.5246977806091309,-0.9596907177345927,-7.975545967220869,-1.1131286061996364,-0.25425657840798543,1.4933997040983105,2.6378263868087672 +karman,karman_re200,147,148,58.800000000000004,0.9404258453287184,-0.6923057808307931,0.8021946559892967,2.544815157307312,3.0478578992187977,6.39322935603559,-1.8435933161526918,-0.639328733086586,,,21.518391370773315,68.7714159488678,103.2747209072113,-3.73682901263237,-40.55755138397217,-15.463542193174362,-0.3245154023170471,-5.62366247177124,1.5010576248168945,0.2640394943842458,-5.84222644119701,1.020190919824222,-0.5885548967012929,0.2185639694257695,0.4808667049926725 +karman,karman_re200,148,149,59.2,-1.400414970703423,-1.4041533431736752,0.926633903873153,0.45285283704288304,3.710058983415365,6.411490263417363,-0.3398547414690256,3.030349500477314,,,20.62169909477234,70.33207416534424,102.70609259605408,-3.443130198866129,37.960484623909,-0.9062237106263638,1.6834659576416016,-6.987874984741211,-1.325040340423584,0.5355320568385392,-3.875664521479525,2.9867528395417073,1.1479339008030625,-3.112210463261686,-4.311793179965291 +karman,karman_re200,149,150,59.6,-1.5851068310439587,-1.720896572805941,1.1443804251030087,0.7036540191620588,3.5220040008425713,5.278921686112881,-0.9384872391819954,1.6450295224785805,,,19.549155235290527,82.09084272384644,101.54842138290405,-7.937031239271164,64.31989073753357,16.566138714551926,2.729066848754883,-7.601921558380127,-3.396583080291748,0.6563352113367931,-4.6585451988308675,2.2038721621903647,2.07273163741809,-2.9433763595492595,-5.600455242482113 +karman,karman_re200,150,151,60.0,1.232624868862331,-3.9129877695813775,0.5052852211520076,2.243195311166346,3.6304877139627934,3.5407000104896724,-1.6933491569943726,0.24378939997404814,,,12.111058831214905,87.65891194343567,100.18247067928314,-6.320672482252121,66.48958325386047,29.34919074177742,3.3275132179260254,-7.60235071182251,-3.4139392375946045,1.4923800159116765,-5.645739866312889,1.216677494708343,1.835133202014349,-1.956610845509621,-4.630616732302947 +karman,karman_re200,151,152,60.400000000000006,7.076798006892204,-7.453347323462367,-1.4733693096786737,4.130059387534857,2.9964970890432596,2.7444999432191253,-1.0618331143632531,0.8728308603167534,,,1.4564037322998047,89.84660506248474,98.89135360717773,-2.8912141919136047,72.44857549667358,37.63658255338669,3.0923526287078857,-6.0013628005981445,-0.17012977600097656,2.8426428223602684,-4.819854687840095,2.042562673181137,0.2497098063476173,-1.1815081127580491,-2.2126924491821134 +karman,karman_re200,152,153,60.800000000000004,7.6509942300617695,-8.08171951211989,-0.6510957609862089,6.348802708089352,2.061392180621624,4.892528289929032,2.559081884101033,7.17955594882369,,,-8.72090458869934,91.99160933494568,97.41474986076355,-2.466152608394623,76.3051986694336,40.7598540186882,2.5892672538757324,-4.1071085929870605,5.435680389404297,3.0822985923570894,-0.08448800217020125,6.777929358851031,-0.49303133848135694,-4.022620590816859,-1.342248969446734 +karman,karman_re200,153,154,61.2,7.871423847973347,-4.061447456479073,-0.06493041291832924,7.741563022136688,1.1659945594146848,4.297027713619173,2.3750324035063386,5.916059366427362,,,-18.018752336502075,95.57890295982361,95.74756026268005,-2.9507070779800415,79.3485939502716,38.5024219751358,2.561868906021118,-5.110959053039551,4.125558853149414,1.5490012687601942,-0.3251845607175867,6.537232800303645,1.012867637260924,-4.7857744923219645,-2.411673947154231 +karman,karman_re200,154,155,61.6,6.33541215211153,-1.5035998076200485,-1.0221058037132025,4.291200544685125,-1.107668154872954,1.9831594545394182,-0.4058554768562317,-1.9193791085854173,,,-25.770574808120728,104.11132574081421,93.8710629940033,-4.018497467041016,86.83747053146362,31.222695112228394,3.2320406436920166,-6.261520862579346,-0.033812522888183594,0.5734600865008236,-3.961979081118413,2.9004382799028194,2.658580557191193,-2.299541781460933,-2.934250802791003 +karman,karman_re200,155,156,62.0,1.525665051303804,-1.5347853332059458,-1.972296551684849,-2.418928052065894,-3.5474884789437056,1.2825510602851864,-1.3642039011756424,-6.27589628129499,,,-28.66370975971222,115.47887325286865,90.86979329586029,-4.026049375534058,70.31990885734558,17.89705753326416,3.2483603954315186,-4.7135396003723145,-0.3711371421813965,0.585353978818068,-5.215289695620852,1.6471276654003804,2.6630064166134506,0.5017500952485374,-2.018264807581777 +karman,karman_re200,156,157,62.400000000000006,-0.33332168823108077,-1.9341131555847824,-3.05792671861127,-6.449175125453621,-5.3099943324923515,3.300438402220607,0.37316372618079185,-4.563666880130768,,,-24.229422211647034,117.59219169616699,88.70590627193451,-0.1368172961520031,-21.773551404476166,-0.12642803776543587,0.197187602519989,0.7900915145874023,7.028473377227783,0.7376541895543413,-2.9431919560068875,3.9192254050143447,-0.5404665870343522,3.73328347059429,3.1092479722134385 +karman,karman_re200,157,158,62.800000000000004,-1.0261061834171414,-0.8624129113741219,-1.8765057320706546,-4.779117647558451,-5.388400051742792,5.685512209311128,2.7648655232042074,0.1413309946656227,,,-20.47244906425476,108.32786560058594,93.3987557888031,1.8628112971782684,-82.89821743965149,-14.769815653562546,-2.316580057144165,3.7934787273406982,12.0,0.3289168968030379,0.18463209302075967,7.047049454041992,-2.645496953947203,3.6088466343199386,4.952950545958008 +karman,karman_re200,158,159,63.2,-1.7073513008654118,1.3097455666866153,0.5304029036778957,-0.6465454935096204,-4.2446088045835495,7.103261537849903,2.1584751084446907,0.07234141230583191,,,-16.488510370254517,100.0728964805603,96.91335558891296,-0.02607107162475586,-75.49275159835815,-27.288171648979187,-2.510986328125,1.9055852890014648,10.61721420288086,-0.49952573960156577,-0.6083942469456924,6.25402311407554,-2.011460588523434,2.5139795359471573,4.363191088805319 +karman,karman_re200,159,160,63.6,0.7235864759422839,2.517406130209565,3.878234652802348,8.48005578154698,-3.7806981708854437,5.804767832159996,2.2679846733808517,0.7552711758762598,,,-8.16817581653595,96.2004542350769,98.61118495464325,-0.8555203676223755,-69.29657459259033,-35.20954251289368,-2.812150001525879,1.3087067604064941,10.2607421875,-0.9601171334763026,-0.4651796324681814,6.397237728553051,-1.8520328680495763,1.7738863928746755,3.8635044589469487 +karman,karman_re200,160,161,64.0,4.78637358173728,5.231415620073676,0.9231988806277514,6.632771342992783,-1.5243958914652467,4.156518494710326,1.8618537578731775,2.1993116242811084,,,0.9651064872741699,93.57658624649048,99.84811544418335,-2.1203845739364624,-70.58491706848145,-38.06118667125702,-2.7589406967163086,-0.8360590934753418,8.004592895507812,-1.995217104182615,-0.9963102467276488,5.866107114293584,-0.7637235925336936,0.160251153252307,2.1384857812142286 +karman,karman_re200,161,162,64.4,4.568017553538084,4.724895115941763,0.07801270112395287,4.72404295578599,0.20732113625854254,4.879332962445915,-1.4546402962878346,-2.7019594563171268,,,9.622570872306824,90.47249555587769,101.22644007205963,-3.181907534599304,-73.34142327308655,-36.53757870197296,-1.9139528274536133,-4.3925461769104,3.7006232738494873,-1.8020345228588697,-5.33356076599063,1.5288565950306021,-0.11191830459474361,0.94101458908023,2.1717666788188854 +karman,karman_re200,162,163,64.8,3.214506432414055,1.5627879765816033,0.5321101634763181,4.278726759366691,1.73699960578233,5.119831301271915,-1.6498109325766563,-1.5626222593709826,,,16.94977879524231,84.6585750579834,103.07926535606384,-3.4035474061965942,-78.53503227233887,-29.818812012672424,-1.612863302230835,-4.063756465911865,3.642810106277466,-0.596033947125509,-5.588801369400281,1.2736159916209506,-1.016829355105326,1.525044903488416,2.369194114656515 +karman,karman_re200,163,164,65.2,0.5626728525385261,0.16033303836593404,0.10083780944114551,0.7643484714208171,3.5561651457101107,4.703647806309164,-0.9463402675464749,1.6634846106171608,,,20.19791603088379,72.87989854812622,103.19803953170776,-2.2939711809158325,-58.16197395324707,-17.5556480884552,-0.8843981623649597,-3.842587471008301,1.9185638427734375,-0.061149647389089255,-4.668815246295265,2.1936021147259677,-0.8232485149758705,0.8262277752869638,-0.27503827195253017 +karman,karman_re200,164,165,65.60000000000001,-1.500287209637463,-0.6707218126393855,0.027170521207153797,-1.4459461672231555,3.6172440741211176,5.227626301348209,-1.4407108537852764,0.7358223665505648,,,19.802001118659973,70.13253569602966,102.6657909154892,-2.63120976742357,23.6076682806015,-2.0988553995266557,1.5796418190002441,-6.928035259246826,-2.572340965270996,0.2558075538084703,-5.3153440947888635,1.5470732662323685,1.3238342651917738,-1.6126911644579627,-4.119414231503365 +karman,karman_re200,165,166,66.0,-2.1248538978397846,-2.523551695048809,0.9792111814022064,-0.16643153503537178,3.6295182071626186,5.338398739695549,-2.143991179764271,-0.6584641523659229,,,18.827471137046814,79.75462079048157,101.69338285923004,-7.034504413604736,69.95657086372375,15.834012627601624,3.16300106048584,-8.462507247924805,-4.0,0.9624609992618984,-6.235081295949467,0.627336065071765,2.2005400612239416,-2.227425951975338,-4.6273360650717645 +karman,karman_re200,166,167,66.4,0.382724916562438,-4.697253927588463,1.1101700365543365,2.603064989671111,3.589014057070017,4.0411995723843575,-2.00052373111248,-0.41203340515494347,,,11.732164025306702,86.93036437034607,99.88922774791718,-6.633125990629196,71.37819528579712,28.048307448625565,3.513922691345215,-7.853649139404297,-3.6535654067993164,1.7914924104006626,-6.047457179638567,0.814960181382665,1.7224302809445522,-1.80619195976573,-4.468525588181981 +karman,karman_re200,167,168,66.8,6.337005645036697,-7.496480597183108,-1.2782367412000895,3.7805321626365185,2.100348239764571,3.7358381086960435,-2.651099464856088,-3.201850689947605,,,1.797601580619812,89.78177905082703,99.02309477329254,-6.165489554405212,74.51590895652771,34.00150239467621,3.2227582931518555,-7.009354591369629,-1.285010814666748,2.8590934834694313,-6.898268275005714,-0.03585091398448137,0.3636648096824242,-0.11108631636391486,-1.2491599006822667 +karman,karman_re200,168,169,67.2,6.796212401241064,-8.671269984915853,-1.258509000763297,4.27919439971447,1.5342016704380512,5.926746409386396,1.2437482364475727,4.021698143333197,,,-9.113621711730957,91.82336926460266,96.78008556365967,-7.469648122787476,78.40925455093384,34.66620147228241,2.767399549484253,-4.995208263397217,4.493372440338135,3.3071480924786045,-1.804657389819607,5.057759971201625,-0.5397485429943516,-3.19055087357761,-0.56438753086349 +karman,karman_re200,169,170,67.60000000000001,7.210938725620508,-4.022683948278427,-0.4779687151312828,6.255001295357943,0.02326648245798424,4.962800303474069,2.29286658577621,4.608999654010404,,,-20.90177834033966,95.87091207504272,91.71956479549408,-6.564196944236755,84.39247608184814,32.73094594478607,2.6277995109558105,-5.202614784240723,4.5937910079956055,1.534217198788143,-0.43263952062277555,6.429777840398456,1.0935823121676675,-4.7699752636179475,-1.8359868324028508 +karman,karman_re200,170,171,68.0,5.754066631197929,-1.2745440762955695,-0.5307246174197644,4.692617396358401,-1.4783750521019101,2.802583621814847,-0.09312806650996208,-1.6646311851218343,,,-29.414120316505432,109.36400890350342,87.32540309429169,-5.060724914073944,84.18933749198914,27.23323255777359,3.0761361122131348,-6.270176887512207,0.8435931205749512,0.48610019270916544,-3.5529998697097995,3.3094174913114327,2.5900359195039693,-2.7171770178024075,-2.4658243707364815 +karman,karman_re200,171,172,68.4,1.2197468895465136,-1.0264031479891855,-1.1178241220477503,-1.015901354548987,-4.002043511718512,1.4285835823102389,-1.5489745965169277,-7.099992704752367,,,-30.645471811294556,121.79677486419678,84.12047028541565,-4.9342237412929535,40.89408218860626,16.280511766672134,2.4463446140289307,-3.677438259124756,0.9639186859130859,0.39146136827608075,-5.456929445678027,1.405487915343206,2.05488324575285,1.7794911865532708,-0.4415692294301201 +karman,karman_re200,172,173,68.8,-0.8599182474426925,-1.7640176811255515,-2.3668486974202096,-5.593615642283112,-5.265213083475828,3.021836164407432,-0.20005751866847277,-5.665328120812774,,,-23.007875680923462,116.00958108901978,82.17102885246277,-3.0930514447391033,-39.74394202232361,-0.24694213643670082,-0.2405794858932495,1.250014305114746,7.0220255851745605,0.6727812326661758,-3.692840259689431,3.169577101331801,-0.9133607185594254,4.942854564804177,3.8524484838427595 +karman,karman_re200,173,174,69.2,-1.838824595324695,-0.6551911064889282,-1.2701469531748444,-4.379118501674384,-4.963661544024944,5.370251601561904,2.0270661916583776,-0.909529160708189,,,-13.969695568084717,101.92689895629883,85.30633449554443,-0.45930445194244385,-77.16130018234253,-17.221634089946747,-2.1489720344543457,3.207397937774658,10.9152193069458,0.2498842755217052,-0.7802484349102796,6.082168926110953,-2.398856309976051,3.987646372684938,4.833050380834848 +karman,karman_re200,174,175,69.60000000000001,-1.5126769430935383,1.3775496336165816,0.7848703244235367,0.05706370575353503,-4.145556595176458,6.382242543622851,1.5376817900687456,-1.0701930150389671,,,-9.25796926021576,93.3533251285553,90.97811281681061,-1.4356672763824463,-77.7432918548584,-30.349555611610413,-2.571939468383789,1.7178573608398438,9.970672607421875,-0.5253856299059622,-1.4202564419352743,5.442160919085958,-2.046553838477827,3.138113802775118,4.528511688335917 +karman,karman_re200,175,176,70.0,1.732428791001439,3.283074707724154,2.435150439850986,6.602729670703411,-3.4301963169127703,5.211719544604421,1.9499312620609999,0.46966620720922947,,,-0.8459776639938354,89.5915687084198,93.95341575145721,-1.2939795851707458,-78.01406383514404,-39.03296738862991,-3.0765702724456787,1.1097841262817383,9.970288276672363,-1.252136570075906,-0.8811240909452409,5.981293270075991,-1.8244337023697728,1.9909082172269792,3.9889950065963724 +karman,karman_re200,176,177,70.4,5.5532436817884445,5.848157685250044,-0.4180027171969414,4.717238247394562,-1.135394093580544,4.338035942055285,1.0644885478541255,0.993583002127707,,,8.580851554870605,87.55207061767578,95.72601318359375,-1.5205919742584229,-80.87751269340515,-41.776642203330994,-2.9560725688934326,-1.6222889423370361,7.454531669616699,-2.230437244709601,-2.0390899456263547,4.8233274153948775,-0.7256353241838318,0.4168010032893186,2.6312042542218217 +karman,karman_re200,177,178,70.8,4.546435084193945,4.429731518030167,-0.3447309136390686,3.8569732569158077,0.5058142123743892,5.795315024442971,-2.769810031168163,-5.0338058499619365,,,17.542719841003418,85.92813014984131,96.83493375778198,-1.2271955609321594,-86.77536249160767,-39.194996654987335,-2.0536253452301025,-5.316246032714844,3.182384490966797,-1.689461655043599,-7.0535157915007485,-0.1910984304795167,-0.3641636901865035,1.7372697587859047,3.3734829214463136 +karman,karman_re200,178,179,71.2,3.239481709897518,0.8768330153543502,0.6743342091795057,4.58815012825653,1.7623640596866608,5.439894739538431,-1.9254493527114391,-2.0885346457362175,,,24.36823844909668,83.72133374214172,97.0027208328247,-0.16403496265411377,-96.09053134918213,-30.309656262397766,-2.059211254119873,-3.4927663803100586,4.63304328918457,-0.33441660093570974,-5.949276274928447,0.9131410860927849,-1.7247946531841634,2.4565098946183888,3.7199022030917854 +karman,karman_re200,179,180,71.60000000000001,0.36832166370004416,0.06821273836976616,-0.09016333660838427,0.18799499048327561,3.8492793682962656,4.561700625345111,-0.7796192076057196,2.2900409530848265,,,27.09866166114807,83.3588182926178,95.62477469444275,0.9892597794532776,-50.55190920829773,-16.583076119422913,-0.6758983731269836,-4.05833101272583,1.5541768074035645,-0.026015754090777908,-4.450780480668934,2.4116368803522983,-0.6498826190362057,0.39244946794310387,-0.8574600729487338 +karman,karman_re200,180,181,72.0,-1.4907227596268058,-0.25824345721048303,-0.17813189697335474,-1.8469865535735153,3.4887436777353287,5.088415578939021,-1.6924625961109996,0.1038184855133295,,,28.022488951683044,88.44708800315857,97.34313786029816,-0.15308456495404243,44.3048894405365,-2.6183352805674076,2.0952255725860596,-7.84882116317749,-3.792555809020996,0.09849184241690025,-5.644580438136938,1.217836922884294,1.9967337301691592,-2.2042407250405525,-5.01039273190529 +karman,karman_re200,181,182,72.4,-2.0997149404138327,-2.1455412497743964,0.8966518798843026,-0.30641118064522743,3.2892629969865084,5.269157234579325,-2.3934845812618732,-1.4977061655372381,,,24.713721871376038,92.48868823051453,99.31096732616425,-1.2831296771764755,75.85303783416748,12.989670410752296,3.2385077476501465,-8.702013969421387,-4.0,0.8182910535444957,-6.561364222294683,0.3010531387265494,2.4202166941056507,-2.1406497471267034,-4.30105313872655 +karman,karman_re200,182,183,72.8,0.7023728103376925,-4.701810074038804,1.318008522503078,3.3383898553438485,3.532486967742443,4.310889053158462,-2.4890784407034516,-1.4456699136644602,,,17.02115535736084,93.48718523979187,97.94197082519531,-2.9660388827323914,72.2597599029541,30.421729385852814,3.5230872631073,-8.19630241394043,-3.929473876953125,1.7932300856279948,-6.68638013057926,0.17603723044197217,1.729857177479305,-1.5099222833611696,-4.105511107395097 +karman,karman_re200,183,184,73.2,6.856028456240892,-7.747892057523131,-1.114564249292016,4.62689995765686,2.0102527923882008,4.407478554639965,-2.8011323302052915,-3.5920118680223823,,,6.840917468070984,94.21266317367554,97.81801998615265,-2.4042099714279175,76.86101794242859,38.74821662902832,3.110417127609253,-7.056619167327881,-1.0328803062438965,2.9549796608041388,-7.09447852369466,-0.2320611626734279,0.15543746680511417,0.03785935636677884,-0.8008191435704686 +karman,karman_re200,184,185,73.60000000000001,6.706856656819582,-7.747595198452473,-0.4273978993296623,5.852060858160257,0.8857165230438113,6.675137672573328,1.6855713911354542,4.25685930531472,,,-4.060542583465576,95.79094052314758,97.17706441879272,-3.4596964716911316,79.42000031471252,40.119726955890656,2.63749098777771,-4.913328647613525,5.258770942687988,2.9548664412975416,-1.2268491152387568,5.635568245782475,-0.31737545351983165,-3.6864795323747686,-0.3767973030944871 +karman,karman_re200,185,186,74.0,6.538875866681337,-3.3786813728511333,-0.21431734785437584,6.110241170972586,-0.35108611336909235,5.0416747108101845,1.8844869919121265,3.4178878704551607,,,-14.843273162841797,99.1934061050415,94.65210437774658,-4.509367048740387,82.4757993221283,37.25204020738602,2.668851137161255,-5.280342102050781,4.005637168884277,1.288600133170234,-0.9667109154805842,5.8957064455406485,1.380251003991021,-4.313631186570197,-1.8900692766563711 +karman,karman_re200,186,187,74.4,4.750935360789299,-1.259328331798315,-0.3222131635993719,4.106509033590555,-2.2272763308137655,2.9095358913764358,-0.5961366696283221,-3.4195496700704098,,,-23.837777972221375,108.69578123092651,91.61724150180817,-5.727371573448181,82.93800354003906,29.526108503341675,3.1428115367889404,-6.088797569274902,0.4799756705760956,0.48029703809890967,-4.2108253593504745,2.651592001670758,2.662514498690031,-1.8779722099244278,-2.1716163310946626 +karman,karman_re200,187,188,74.8,0.7427678210660815,-1.0924196103587747,-1.793839386664331,-2.8449109522625804,-4.571898374706507,2.2199004306457937,-1.3177707442082465,-7.207439863123,,,-27.277448773384094,118.98112297058105,89.0581339597702,-6.238878518342972,56.51971697807312,16.4733849465847,2.7233550548553467,-3.9327774047851562,0.865623950958252,0.4166394815141143,-5.154565258646457,1.7078521023747757,2.3067155733412323,1.2217878538613007,-0.8422281514165237 +karman,karman_re200,188,189,75.2,-1.3292005751281977,-1.513296301709488,-2.211910643381998,-5.7530218618921936,-5.624113138765097,4.063943866640329,0.6413143128156662,-4.341484513133764,,,-21.481570601463318,115.75073003768921,87.27220594882965,-2.044366579502821,-29.344189167022705,-3.1700589694082737,-0.317874014377594,1.383237361907959,7.732048988342285,0.5771582462845005,-2.5925095027506884,4.269907858270544,-0.8950322606620945,3.9757468646586474,3.462141130071741 +karman,karman_re200,189,190,75.60000000000001,-1.8122692126780748,-0.178941321792081,-0.94600286683999,-3.704274946358055,-4.967495799064636,5.87623892351985,2.5227819569408894,0.07806811481714249,,,-16.195425391197205,103.57882976531982,92.42762625217438,-0.4915304481983185,-77.07528471946716,-18.97815838456154,-2.3042569160461426,3.2774739265441895,11.339506149291992,0.06824668728568295,-0.13196038576365554,6.730456975257576,-2.3725036033318254,3.409434312307845,4.609049174034416 +karman,karman_re200,190,191,76.0,-1.546841231174767,1.5844379377085716,1.087187061784789,0.6275328923948109,-4.1769715026021,6.889319978654385,1.492200419306755,-1.1925706639885902,,,-11.088165640830994,96.0788905620575,96.85455858707428,-2.4641871452331543,-77.63930559158325,-31.026160717010498,-2.579016923904419,1.4715299606323242,9.930007934570312,-0.604291056841599,-1.4797361502455426,5.38268121077569,-1.97472586706282,2.951266110877867,4.547326723794622 +karman,karman_re200,191,192,76.4,1.8660249188542366,3.1379341962747276,2.6896296185441315,7.2452841559425,-2.8557172045111656,5.321109900251031,2.2511400748044252,1.6465629450976849,,,-1.445913314819336,92.13235974311829,98.23973178863525,-3.0388638377189636,-76.81533694267273,-37.70291954278946,-3.01941180229187,0.9983963370323181,9.935487747192383,-1.196781222310662,-0.4872086916883296,6.375208669332903,-1.8226305799812081,1.4856050287206477,3.56027907785948 +karman,karman_re200,192,193,76.80000000000001,5.128413438796997,5.788920214399695,-0.4710874054580927,4.186238627880812,-0.5124675808474422,4.552233964204788,1.100628636777401,1.6887896927073598,,,8.601295948028564,88.84625434875488,98.99822473526001,-3.4797057509422302,-79.92666363716125,-38.60482722520828,-2.834473133087158,-1.8547799587249756,6.953559398651123,-2.2078445807668587,-1.9918265955678727,4.870590765453359,-0.6266285523202995,0.13704663684289708,2.0829686331977637 +karman,karman_re200,193,194,77.2,3.8374708965420723,3.9936599787324667,-0.11760159395635128,3.6022677086293697,1.1483537964522839,6.132890935987234,-2.8267321176826954,-4.505110438913107,,,17.44092106819153,84.84801650047302,99.67159628868103,-2.8692975640296936,-87.61836886405945,-33.988676965236664,-1.9372847080230713,-5.417227745056152,2.7722437381744385,-1.5231477054282252,-7.12795745949739,-0.265540098476158,-0.4141370025948461,1.7107297144412374,3.0377838366505965 +karman,karman_re200,194,195,77.60000000000001,2.320815110579133,0.38127964944578707,0.9022386220749468,4.125292354729027,2.2496317978948355,5.888159386813641,-2.012995071709156,-1.7763583455234766,,,22.640642523765564,78.6500096321106,98.97110760211945,-1.2153349816799164,-83.22375416755676,-23.251261562108994,-1.6032682657241821,-4.069974899291992,3.693572998046875,-0.1454167921837325,-6.063766971724874,0.7986503892963586,-1.4578514735404497,1.993792072432882,2.8949226087505164 +karman,karman_re200,195,196,78.0,-0.47967818682082,-0.47369392996188253,0.34152840089518577,0.20337861496955156,3.9658877067267895,5.198394879698753,-0.8513769134879112,2.263133879750967,,,23.827427625656128,78.72428894042969,98.33845496177673,-0.5131572484970093,-4.711407795548439,-9.85187366604805,0.6387929320335388,-5.920623779296875,-0.568488597869873,0.1806628071340505,-4.544623901466922,2.31779345955431,0.45813012489948834,-1.375999877829953,-2.886282057424183 +karman,karman_re200,196,197,78.4,-1.5708996215835214,-1.0443326609674841,0.2769283892121166,-1.0170428431592882,3.407915122807026,5.14222530182451,-1.6102545196190476,0.18740608356893063,,,23.779094219207764,85.33066511154175,100.20697116851807,-2.636120095849037,66.64581894874573,4.619676247239113,2.7463741302490234,-8.321826934814453,-4.0,0.3982995309383434,-5.537070212992715,1.3253471480285177,2.34807459931068,-2.784756721821738,-5.325347148028518 +karman,karman_re200,197,198,78.80000000000001,-1.4223840553313494,-2.7629603282548487,1.0162356193177402,0.610087183304131,3.266766434535384,4.977270611561835,-2.2507229587063193,-1.2346794828772545,,,19.63580846786499,90.24556875228882,99.1093397140503,-5.320370197296143,71.1854636669159,22.425690293312073,3.2844083309173584,-8.29943561553955,-4.0,1.0537694011462329,-6.37466317249692,0.48775418852431285,2.2306389297711258,-1.924772443042631,-4.487754188524313 +karman,karman_re200,198,199,79.2,2.951705828309059,-5.845694337040186,0.24280278012156487,3.437311388552189,3.1545814126729965,3.8809372927062213,-3.1267533195205033,-3.09892522636801,,,9.86979603767395,92.29133725166321,97.67996668815613,-3.268834948539734,73.68345856666565,34.91080701351166,3.593224287033081,-8.150312423706055,-3.6440041065216064,2.2294977448038757,-7.520319722842416,-0.6579023618211841,1.3637265422292053,-0.6299927008636388,-2.9861017447004223 +karman,karman_re400,2,3,0.8,5.441469606012106,-8.321071742102504,-4.2260747868567705,-3.010679967701435,-0.512586731929332,6.111916154623032,0.6824368610978127,0.8522869902662933,,,1.1657536029815674,102.9922366142273,104.99081015586853,-2.321667969226837,46.695175766944885,30.47456592321396,1.5959364175796509,-4.448609828948975,-1.3726816177368164,3.17358548253517,-2.5387301830904043,4.323687177930828,-1.5776490649555193,-1.9098796458585703,-5.696368795667644 +karman,karman_re400,3,4,1.2000000000000002,1.7095879884436727,-4.442546283826232,-0.7450564298778772,0.2194751286879182,-4.645042587071657,7.757003651931882,3.647650359198451,2.650258131325245,,,-5.54957389831543,103.23195457458496,104.33241128921509,-0.49840807914733887,46.57195806503296,33.90889763832092,0.6880942583084106,-1.2617790699005127,3.8584580421447754,1.694349096944467,1.3391220229845033,8.201539384005736,-1.0062548386360564,-2.600901092885016,-4.343081341860961 +karman,karman_re400,4,5,1.6,-1.3923968654125929,-1.6570455336477607,0.8077578677330166,0.22311887005344033,-5.161458160728216,8.424736792221665,5.018819821998477,4.876181483268738,,,-10.573211312294006,100.99246501922607,105.87417781352997,1.2202277779579163,46.917834877967834,33.24393182992935,0.12426899373531342,0.4134817123413086,6.294703483581543,0.6319829719621587,3.1323124727202623,9.994729833741495,-0.5077139782268453,-2.7188307603789537,-3.700026350159952 +karman,karman_re400,5,6,2.0,-2.2442336194217205,1.9958636403316632,1.5710245206719264,0.8978154219221324,-5.622385069727898,8.238262729719281,3.4412366803735495,1.2600882910192013,,,-15.079793334007263,93.83397102355957,109.17464792728424,3.3736824989318848,47.054049372673035,29.599034786224365,-0.8247596621513367,1.0183982849121094,7.596898078918457,-0.7612052954702595,1.0691779733206581,7.931595334341891,-0.06355436668107717,-0.05077968840854874,-0.33469725542343376 +karman,karman_re400,6,7,2.4000000000000004,-2.1790789905935526,4.657267825677991,1.5609886031597853,0.942898215726018,-6.404522806406021,6.744496524333954,1.0450920090079308,-4.31433878839016,,,-15.884056687355042,89.56461548805237,112.17630803585052,4.417373239994049,21.16190195083618,18.014898896217346,-1.455910325050354,1.097907543182373,7.940784454345703,-1.776242053660657,-2.0644563858516927,4.79796097516954,0.3203317286103029,3.1623639290340657,3.1428234791761636 +karman,karman_re400,7,8,2.8000000000000003,0.7023646030575037,3.7853819085285068,2.4320889497175813,5.566542502492666,-5.586670711636543,5.6780558079481125,-0.5241543985903263,-6.634979508817196,,,-17.342138290405273,94.33658719062805,112.44152784347534,-8.069899678230286,-16.97004735469818,-2.9196806252002716,-1.3214879035949707,-0.630061149597168,6.560962677001953,-1.4437122336024872,-4.11668825633183,2.7457291046894023,0.12222433000751654,3.4866271067346624,3.815233572312551 +karman,karman_re400,8,9,3.2,3.5155306104570627,3.025455749593675,1.9515549065545201,7.418640423566103,-2.1350274328142405,2.0387694239616394,0.8597534615546465,-0.41552050970494747,,,-15.51770567893982,99.18474555015564,109.11983847618103,-12.222261726856232,-38.24121356010437,-19.112102687358856,-0.7634793519973755,-0.908266007900238,4.717955112457275,-1.1538829062585398,-2.306838762558398,4.555578598462834,0.39040355426116435,1.3985727546581601,0.16237651399444175 +karman,karman_re400,9,10,3.6,3.4337479155510664,2.958442084491253,-0.6688039284199476,2.096140058711171,1.1825752444565296,2.3855253821238875,0.16186211723834276,1.5062994789332151,,,-6.613510847091675,100.87532997131348,104.25723195075989,-6.085357815027237,-45.228612422943115,-27.37376019358635,-0.5188012719154358,-1.3171796798706055,2.7311840057373047,-1.1283244684404345,-3.2195283516524342,3.642889009368798,0.6095231965249988,1.9023486717818288,-0.9117050036314933 +karman,karman_re400,10,11,4.0,0.6059081642888486,0.7835543365217745,-0.0258146901614964,0.5542787839658558,3.11918742954731,4.82000969350338,-1.5462469309568405,0.026693567633628845,,,0.595778226852417,101.32272243499756,102.72956490516663,-4.053105413913727,-44.735461473464966,-31.66195899248123,0.02390999346971512,-3.7491371631622314,1.0440335273742676,-0.2988409118720886,-5.45336225433872,1.409055106682512,0.32275090534180373,1.7042250911764887,-0.3650215793082445 +karman,karman_re400,11,12,4.4,-0.9574128780514002,-1.7136802052846178,1.2980197934666649,1.6386267088819295,4.218047019094229,5.737184197641909,-2.2788330679759383,-0.3396191168576479,,,5.992195010185242,99.52223896980286,103.04256975650787,-3.6361321806907654,-43.33096742630005,-32.51816779375076,0.6429749131202698,-5.809557914733887,-0.21613122522830963,0.6535829505809541,-6.41142506141791,0.450992299603322,-0.010608037460684283,0.6018671466840235,-0.6671235248316316 +karman,karman_re400,12,13,4.800000000000001,-1.2742966646328568,-3.6307339323684573,1.6112240264192224,1.9481513882055879,4.8186383210122585,6.076907739043236,-2.2805510088801384,0.25753630325198174,,,10.988694429397583,94.75677609443665,104.87057566642761,-3.51344496011734,-43.00837218761444,-30.1819309592247,1.116302490234375,-6.832691669464111,-1.0964879989624023,1.3847308202393849,-6.413671753242808,0.4487456077784242,-0.2684283300050099,-0.41901991622130375,-1.5452336067408265 +karman,karman_re400,13,14,5.2,-0.21178821043577045,-5.202881875447929,1.4081319095566869,2.6044756086776033,5.214150529354811,5.538212601095438,-1.5953709371387959,2.023408655077219,,,16.269975900650024,84.73767638206482,106.72124028205872,-3.2894469797611237,-37.34715282917023,-24.385150521993637,1.5021454095840454,-7.164400100708008,-1.7713675498962402,1.9843345784079054,-5.517605734906293,1.3448116261149394,-0.48218916882386,-1.646794365801715,-3.1161791760111797 +karman,karman_re400,14,15,5.6000000000000005,2.181312534958124,-5.3666578605771065,1.1555543169379234,4.492421168833971,4.2096213437616825,4.07221051864326,-1.2401898857206106,1.7292415723204613,,,19.69439685344696,76.88860297203064,105.62044680118561,-10.838028602302074,-9.718357771635056,-5.528937466442585,1.4655095338821411,-6.7069220542907715,-1.6736012697219849,2.046797336199551,-5.053106424930715,1.8093109360905169,-0.58128780231741,-1.6538156293600563,-3.482912205812502 +karman,karman_re400,15,16,6.0,4.829376004636288,-5.914973793551326,0.6528336089104414,6.1350432224571705,1.9884579814970493,1.609025668585673,-1.1986809258814901,-0.4089038702659309,,,20.160281658172607,76.63136124610901,106.96284770965576,-18.848136067390442,22.371460497379303,9.789946675300598,1.5131089687347412,-6.179040908813477,-1.6189899444580078,2.255920336056061,-4.998821763274105,1.8635955977471277,-0.7428113673213197,-1.1802191455393718,-3.4825855422051353 +karman,karman_re400,16,17,6.4,4.152426030486822,-5.619953852146864,0.2986304461956024,4.749686922878027,-0.90025580720976,1.6191672184504569,0.977006449829787,1.053757092449814,,,15.709763765335083,77.23770141601562,107.81386494636536,-19.035889580845833,41.80503189563751,15.715877339243889,1.459781527519226,-4.123866081237793,0.22530460357666016,2.1434022576020215,-2.1534974400725537,4.708919920948679,-0.6836207300827954,-1.9703686411652392,-4.483615317372019 +karman,karman_re400,17,18,6.800000000000001,2.2517337929457426,-2.960907877422869,1.9156093476340175,6.0829524882137775,-3.01844603382051,2.7193941350560635,2.5425257917959243,2.0666055497713387,,,5.097806453704834,75.2284824848175,102.93680429458618,-17.440959811210632,51.614344120025635,24.066653847694397,0.6917064785957336,-2.053460121154785,3.364860773086548,1.1292649007420958,-0.10613975814341226,6.7562776028778195,-0.4375584221463622,-1.947320363011373,-3.3914168297912717 +karman,karman_re400,18,19,7.2,-0.4292450030334294,-0.30376436188817024,2.87300324998796,5.31676149694249,-4.355199635028839,3.9597583236172795,1.7925006104633212,-0.7701984141021967,,,-3.9756745100021362,71.99466824531555,99.858358502388,-12.271344661712646,53.64031791687012,33.25960040092468,-0.12056054919958115,-1.1638360023498535,5.340305328369141,0.11585312552013585,-1.0870090297508002,5.775408331270432,-0.236413674719717,-0.07682697259905336,-0.43510300290129145 +karman,karman_re400,19,20,7.6000000000000005,-2.021289896219969,0.8818497881293297,3.0351486057043076,4.049007315188646,-5.176017992198467,5.501849111169577,0.7674996741116047,-3.641018643975258,,,-10.450288653373718,65.81007242202759,100.81668198108673,-13.77279981970787,53.101831674575806,36.50734797120094,-0.5772757530212402,-1.0278105735778809,6.1091508865356445,-0.33632995509744534,-2.427486585517493,4.434930775503739,-0.2409457979237949,1.3996760119396123,1.6742201110319055 +karman,karman_re400,20,21,8.0,-2.4680609349161386,3.186258894857019,1.7152578220702708,0.9624547092244029,-5.903175566345453,5.932016531005502,0.7790878880769014,-4.34499979019165,,,-16.201874613761902,59.09980535507202,104.56604063510895,-18.37673857808113,42.517322301864624,34.13626477122307,-1.1283310651779175,0.4900178909301758,7.106048107147217,-1.2152118483912753,-2.4123317303549294,4.450085630666303,0.08688078321335779,2.902349621285105,2.655962476480914 +karman,karman_re400,21,22,8.4,0.21490194194484502,4.709277185611427,0.9250711882486939,2.065044318442233,-5.66027220338583,5.2948330994695425,1.1164385359734297,-3.4273951314389706,,,-23.605424165725708,51.67574882507324,111.54152750968933,-22.648431733250618,21.522842347621918,28.650126978754997,-1.5833854675292969,1.3007612228393555,7.35707950592041,-1.796077978017078,-1.9711506973519726,4.89126666366926,0.21269251048778104,3.271911920191328,2.4658128422511503 +karman,karman_re400,22,23,8.8,3.2404151279479265,5.740857450291514,-0.48795132897794247,2.2645124699920416,-3.323677694424987,3.432435856666416,2.2365740151144564,1.149470335803926,,,-40.28032124042511,43.23701858520508,127.25676000118256,-24.599431082606316,-4.542352259159088,17.040200904011726,-1.8362922668457031,2.018301010131836,6.668835163116455,-2.1895138542508903,-0.5062579192528021,6.35615944176843,0.35322158740518717,2.524558929384638,0.31267572134802535 +karman,karman_re400,23,24,9.200000000000001,5.237868521362543,7.115950575098395,-1.9475847948342562,1.3426989316940308,-0.3014355315826833,2.136260831321124,1.9617829457274638,3.6221303598722443,,,-40.622150897979736,40.11336266994476,129.5172095298767,3.3673912286758423,-33.59532058238983,-24.155259132385254,-2.037409543991089,1.9270200729370117,5.486135959625244,-2.7139625927397604,-0.8656246749061807,5.996792686115052,0.6765530487486715,2.7926447478431924,-0.5106567264898079 +karman,karman_re400,24,25,9.600000000000001,2.581147477030754,6.978681311011314,-1.2482060119509697,0.0847354531288147,2.4916892871260643,3.9619336603209376,-1.042367541231215,0.4069542046636343,,,-21.084415912628174,42.42373704910278,114.56429958343506,21.665525436401367,-57.09481239318848,-52.862387895584106,-1.8508952856063843,-0.48968052864074707,3.853804588317871,-2.661609271291894,-4.794397965833084,2.0680193951881485,0.8107139856855099,4.304717437192337,1.7857851931297226 +karman,karman_re400,25,26,10.0,0.2924608124885708,3.5152523778378963,1.5062903985381126,3.305041609564796,4.775755573064089,5.463568726554513,-3.1349442433565855,-1.4941329136490822,,,-4.718202352523804,47.58201539516449,105.12087941169739,19.718915224075317,-70.56920528411865,-57.73279070854187,-0.9235603213310242,-4.374137878417969,1.5986825227737427,-1.3406871445786603,-7.531031663850337,-0.6686143028291043,0.41712682324763617,3.156893785432368,2.267296825602847 +karman,karman_re400,26,27,10.4,-2.3244500625878572,-0.6917038699612021,3.104491508565843,3.884532954543829,5.5423034355044365,6.444599363021553,-2.7882560389116406,-0.034208642318844795,,,7.4410974979400635,49.10823702812195,102.96621918678284,10.382016003131866,-77.45370268821716,-54.19065207242966,0.3083631098270416,-6.525234222412109,0.15908074378967285,0.2638099307346682,-7.077639144462395,-0.21522178344116316,0.04455317909237344,0.552404922050286,0.374302527230836 +karman,karman_re400,27,28,10.8,-3.0948242638260126,-2.8039856115356088,3.1508038518950343,3.206783439964056,6.093268282711506,7.034967187792063,-0.9739412926137447,4.145385697484016,,,17.182084918022156,44.31233108043671,104.36736643314362,4.515787959098816,-77.82481908798218,-46.8865841627121,1.0062377452850342,-6.581709861755371,-0.19822977483272552,1.069416092759039,-4.7049113641685985,2.157505996852634,-0.06317834747400486,-1.8767984975867726,-2.3557357716853593 +karman,karman_re400,28,29,11.200000000000001,-1.7548581818118691,-4.716055584140122,1.2437956174835563,0.7327330531552434,6.259964779019356,6.788319442421198,0.41934195905923843,7.098648697137833,,,27.525243163108826,29.120856523513794,109.93452370166779,-0.9382784366607666,-69.80564594268799,-36.117374897003174,1.5623940229415894,-6.141887664794922,-1.049168586730957,1.7986632011508552,-2.882800904112975,3.979616456908257,-0.23626917820926585,-3.2590867606819467,-5.028785043639214 +karman,karman_re400,29,30,11.600000000000001,2.3439230863004923,-5.466120317578316,-0.8211806416511536,0.7015618029981852,4.357566125690937,5.329821025952697,0.04453887231647968,4.446643870323896,,,36.11234724521637,6.428109854459763,116.16660058498383,0.2757929265499115,-40.28189182281494,-16.91783145070076,1.5033855438232422,-5.646021366119385,-1.5090641975402832,2.0847314652852544,-3.3729615545012472,3.489455806519985,-0.5813459214620122,-2.2730598116181375,-4.998520004060268 +karman,karman_re400,30,31,12.0,4.555892199277878,-6.533037638291717,-2.063608029857278,0.42867613956332207,1.607449958100915,4.3119643814861774,-0.10842317715287209,1.3906036037951708,,,41.0774827003479,-0.6034653168171644,119.39573287963867,7.212778553366661,16.11604243516922,10.201342776417732,1.4975247383117676,-5.117255210876465,-1.3706631660461426,2.4916445919861467,-3.5730025368320018,3.2894148241892305,-0.9941198536743792,-1.544252674044463,-4.660077990235373 +karman,karman_re400,31,32,12.4,2.6366866659373045,-6.289143348112702,-1.6193937044590712,-0.6021007429808378,-1.6153312753885984,5.6384101044386625,1.846084138378501,2.0768370013684034,,,36.726850271224976,18.883930146694183,117.61937737464905,15.781089663505554,62.45144009590149,35.306426882743835,1.3379127979278564,-3.3169846534729004,0.9822917580604553,2.398625398957321,-1.0169334678837525,5.84548389313748,-1.0607126010294645,-2.300051185589148,-4.863192135077025 +karman,karman_re400,32,33,12.8,0.8319318294525146,-3.3603288466110826,0.08176371920853853,0.9954592678695917,-3.7307366728782654,6.106506567448378,3.143699374049902,2.5566620752215385,,,22.232484817504883,42.6518440246582,110.7445240020752,19.772149622440338,83.65367650985718,48.86231869459152,0.5324419140815735,-1.270728588104248,4.074484825134277,1.281600636873552,0.6800641032887671,7.542481464309999,-0.7491587227919785,-1.9507926913930151,-3.4679966391757215 +karman,karman_re400,33,34,13.200000000000001,-1.4401391381397843,0.0027697242330759764,0.8535549568478018,0.2669707755558193,-4.7164298593997955,6.69348519295454,3.1510740518569946,1.5857182443141937,,,5.487605929374695,57.95248746871948,103.82497608661652,19.29974853992462,96.41520977020264,52.259281277656555,-0.3528852164745331,0.2774629592895508,6.250301361083984,-0.0010563490965041,0.6897085726066234,7.552125933627856,-0.351828867378029,-0.41224561331707266,-1.3018245725438717 +karman,karman_re400,34,35,13.600000000000001,-2.1010106429457664,2.655213640537113,1.4002398238517344,0.6994690047577024,-5.131779704242945,6.517453817650676,2.302744658663869,-0.5262903869152069,,,-11.445611715316772,69.80370283126831,98.96361231803894,15.64282774925232,104.24959659576416,48.929423093795776,-1.095350742340088,0.9000663757324219,7.294172763824463,-1.0126757374295616,-0.41972115681399247,6.442696204207239,-0.08267500491052626,1.3197875325464143,0.8514765596172236 +karman,karman_re400,35,36,14.0,-1.5225893585011363,4.746465012431145,0.7234984077513218,-0.07559254299849272,-5.638852249830961,6.266233744099736,0.3934523556381464,-4.851947538554668,,,-26.158463954925537,81.88632130622864,95.02862691879272,12.723857164382935,106.72075748443604,39.10937309265137,-1.7638734579086304,1.0844879150390625,7.453790664672852,-1.8102610966080335,-2.916658855928315,3.9457585050929174,0.0463876386994031,4.001146770967377,3.508032159579934 +karman,karman_re400,36,37,14.4,1.227056491188705,5.4652581457048655,-0.05100457929074764,1.1250473326072097,-5.002647638320923,5.602260120213032,-0.6262855604290962,-6.255218759179115,,,-34.12905931472778,91.79675579071045,88.13202381134033,14.039948210120201,122.53062725067139,20.441589131951332,-2.087751626968384,0.8601722717285156,6.771042346954346,-2.0844026403182507,-4.250253529624683,2.6121638313965496,-0.0033489866501330567,5.110425801353198,4.158878515557796 +karman,karman_re400,37,38,14.8,4.268711432814598,5.215866258367896,-1.0736493859440088,2.1214126609265804,-2.3838256020098925,4.588974639773369,-0.26658596470952034,-2.916997531428933,,,-41.35931730270386,98.32708239555359,87.66310214996338,6.1804189113900065,58.97185802459717,5.793456849642098,-1.9509605169296265,0.4321284294128418,5.307940483093262,-1.9892867108268568,-3.7798449497099864,3.082572411311246,0.038326193897230354,4.211973379122828,2.225368071782016 +karman,karman_re400,38,39,15.200000000000001,3.9280392229557037,4.997700802050531,-1.6983408713713288,0.5313574802130461,0.3535848227329552,3.576316637918353,-0.6130209658294916,-0.872457108926028,,,-39.943328499794006,97.8452980518341,90.45450389385223,-2.2780947387218475,-81.8948745727539,-7.234580814838409,-1.5147016048431396,-0.4734489619731903,3.7684364318847656,-1.9060802746347192,-4.232906334401231,2.6295110266200012,0.39137866979157954,3.7594573724280407,1.1389254052647644 +karman,karman_re400,39,40,15.600000000000001,2.1881521679461002,3.022413293365389,-1.1424593976698816,-0.09676662739366293,2.955400152131915,3.8173289503902197,-2.0004783291369677,-1.0455565061420202,,,-22.511950135231018,98.93054366111755,89.51738774776459,-1.8878236413002014,-129.1040062904358,-16.90106689929962,-0.7244692444801331,-2.816588878631592,1.6329827308654785,-1.1527225395153375,-6.047397803761918,0.8150195572593142,0.4282532950352045,3.230808925130326,0.8179631736061643 +karman,karman_re400,40,41,16.0,-0.4079485952388495,0.4862155328737572,0.15106504724826664,-0.10581850074231625,4.200824536383152,4.602436092682183,-2.4875005474314094,-0.7741765584796667,,,-1.9428819417953491,104.58261966705322,83.08729231357574,5.591525137424469,-113.79837989807129,-30.956806242465973,0.16961590945720673,-4.731656074523926,0.33957362174987793,-0.18543843922217795,-6.684316590496949,0.1781007705242832,0.3550543486793847,1.9526605159730233,0.16147285122559474 +karman,karman_re400,41,42,16.400000000000002,-2.0132053177803755,-1.5576384757878259,1.1464510316727683,0.2796967455651611,5.114353261888027,5.351820727810264,-1.8336030188947916,1.447147224098444,,,15.463054180145264,113.87633085250854,77.40346789360046,15.056917071342468,-92.19917058944702,-42.19747483730316,0.9053112864494324,-5.725146293640137,-0.30934810638427734,0.5940699716343775,-5.829161312400818,1.033256048620414,0.3112413148150549,0.10401501876068142,-1.3426041550046914 +karman,karman_re400,42,43,16.8,-1.9282907014712691,-2.9721527826040983,1.1600812431424856,0.3918717848137021,5.496297497302294,5.499385762959719,-1.1728201061487198,3.150657285004854,,,30.68283200263977,123.34133386611938,73.95440936088562,18.943236768245697,-63.986921310424805,-42.1504870057106,1.406120777130127,-6.041696548461914,-0.8243284225463867,1.1335536112521938,-4.965001454242103,1.89741590677913,0.27256716587793317,-1.0766950942198115,-2.721744329325517 +karman,karman_re400,43,44,17.2,0.595423043705523,-3.8995675276964903,0.4200709518045187,1.4355649473145604,4.986057989299297,4.797213827259839,-0.9493831312283874,3.0872917268425226,,,50.852444022893906,136.2494945526123,63.819656521081924,17.85130500793457,-33.72308313846588,-28.565236926078796,1.723812222480774,-5.983953952789307,-1.3163657188415527,1.4872616506171565,-4.672794647997452,2.1896227130237804,0.2365505718636174,-1.3111593047918548,-3.505988431865333 +karman,karman_re400,44,45,17.6,4.359413869678974,-4.561608773656189,-0.7855853764340281,2.788243116810918,2.2689304314553738,3.037288086488843,-1.5749915037304163,-0.8810525760054588,,,61.25901825726032,141.31550788879395,55.90604655444622,-2.9595673084259033,-4.554692283272743,8.445733785629272,1.7685611248016357,-5.514436721801758,-1.442866325378418,1.7397585106534,-5.490953883074422,1.37146347794681,0.028802614148235817,-0.02348283872733603,-2.814329803325228 +karman,karman_re400,45,46,18.0,4.101784434169531,-5.888991989195347,-1.6825245693325996,0.7367352955043316,-0.11627525236690417,2.129935659468174,-0.7649057079106569,-1.646086668188218,,,54.74385619163513,133.2961082458496,76.37978196144104,-29.143413668498397,22.05660790205002,29.68464815057814,2.0609073638916016,-4.649646282196045,-1.183260440826416,2.2460110984398294,-4.431538433751189,2.4308789272700424,-0.18510373454822782,-0.21810784844485553,-3.6141393680964584 +karman,karman_re400,46,47,18.400000000000002,2.412260975688696,-4.829096491448581,-0.9900095174089074,0.4322419408708811,-3.012838074937463,3.39290575357154,1.8677028710953891,0.7225676672533154,,,43.72037649154663,118.50055456161499,101.8306016921997,-28.838531114161015,38.24236989021301,26.24377217143774,1.7059117555618286,-2.4003520011901855,1.5454142093658447,1.8417760348681242,-0.9886608829881189,5.873756478033114,-0.13586427930629563,-1.4116911182020666,-4.328342268667269 +karman,karman_re400,47,48,18.8,-0.14329011901281774,-2.068897825665772,1.0901388013735414,2.036987483734265,-4.749910905957222,4.413832328282297,3.0486356699839234,1.3473604340106249,,,17.38501787185669,101.8151044845581,108.12363624572754,-14.145299792289734,48.60999584197998,22.194504737854004,0.7016224265098572,-0.741879940032959,4.634184837341309,0.7890599081317946,0.5557415225484457,7.418158883569678,-0.08743748162193743,-1.2976214625814046,-2.7839740462283693 +karman,karman_re400,48,49,19.200000000000003,-2.342232270166278,0.6357727106660604,2.0022401586174965,1.662248047068715,-5.432901903986931,5.5594302248209715,2.5013454724103212,-0.4302109591662884,,,1.523888111114502,90.4313862323761,108.61355066299438,-12.236496061086655,62.47190237045288,20.95515802502632,-0.16787850856781006,0.0929422378540039,6.341413497924805,-0.24247826569658096,-0.15999462980058654,6.702422731220645,0.0745997571287709,0.25293686765459045,-0.36100923329584056 +karman,karman_re400,49,50,19.6,-2.777306130155921,2.5902723718900234,1.6888745303731412,0.6004429305903614,-6.101891398429871,5.874404916539788,1.445654546841979,-3.2105823047459126,,,-8.388280868530273,89.36009407043457,109.61642265319824,-10.134712234139442,74.89950656890869,16.61710999906063,-0.7917929887771606,0.6178345680236816,7.028162479400635,-0.987907693866973,-1.5406079944944748,5.321809366526757,0.19611470508981232,2.1584425625181565,1.7063531128738774 +karman,karman_re400,50,51,20.0,-1.465133624151349,4.303695866838098,0.49050827510654926,-0.48411707393825054,-6.028221920132637,6.022877525538206,0.08107209578156471,-5.866077728569508,,,-15.546748042106628,96.09410762786865,109.73544418811798,-7.699441350996494,64.49987292289734,9.368372522294521,-1.3454396724700928,0.8639478087425232,6.953232765197754,-1.6413927373245996,-3.3251840702493194,3.537233290771913,0.2959530648545068,4.189131878991843,3.415999474425841 +karman,karman_re400,51,52,20.400000000000002,1.813922543078661,5.089636193588376,-0.22126571275293827,1.3713911175727844,-4.404936451464891,5.105026299133897,-0.5104204174131155,-5.425777286291122,,,-17.02074706554413,93.79765391349792,105.74193298816681,-3.449934592936188,-31.940993666648865,-3.3834004192613065,-1.5339354276657104,0.4088134467601776,6.073112487792969,-1.9411436454309878,-4.098727205891329,2.7636901551299027,0.4072082177652774,4.507540652651507,3.309422332663066 +karman,karman_re400,52,53,20.8,3.5413724835962057,4.877550760284066,-0.8727225940674543,1.795927295461297,-0.7460173219442368,4.411793081089854,-0.20868168212473392,-1.1633806861937046,,,-14.357945322990417,86.97017431259155,101.93115770816803,-1.9436471164226532,-83.57585668563843,-15.128054469823837,-1.307793140411377,-0.3418080806732178,4.441543102264404,-1.8602560779333817,-3.7041187835818374,3.158298577439395,0.5524629375220047,3.3623107029086197,1.2832445248250095 +karman,karman_re400,53,54,21.200000000000003,2.072395756840706,4.333849414251745,-1.236631185747683,-0.4008666146546602,1.9065163796767592,4.469562787562609,-0.7685027085244656,0.3695109626278281,,,-12.095057964324951,84.11668539047241,102.28655338287354,-5.26571050286293,-69.04406547546387,-22.32295200228691,-1.0075995922088623,-1.2349684238433838,3.0377683639526367,-1.6528930420070713,-4.4362425256401705,2.4261748353810617,0.645293449798209,3.2012741017967867,0.611593528571575 +karman,karman_re400,54,55,21.6,-0.07580454257549718,1.9279878470115364,-0.6775365327484906,-1.4308776080724783,3.8984762504696846,5.142996204085648,-1.8610161496326327,0.17644395120441914,,,-8.432096242904663,82.61995911598206,103.3293068408966,-7.876173406839371,-55.15131950378418,-26.502790302038193,-0.34000518918037415,-3.343649387359619,1.173011302947998,-0.7353180493350778,-5.865011705492327,0.997405655528905,0.3953128601547037,2.5213623181327076,0.17560564741909301 +karman,karman_re400,55,56,22.0,-1.697983592748642,-0.7646243029739708,0.48067516763694584,-0.7366332574747503,4.8101902939379215,5.701848422177136,-2.1301888627931476,0.5498125683516264,,,-5.7410478591918945,79.93350028991699,106.66682720184326,-9.217838943004608,-47.00580537319183,-28.91988605260849,0.34846314787864685,-5.127974033355713,-0.03527688980102539,0.2916211592352685,-6.217030877202318,0.6453864838189141,0.05684198864337836,1.0890568438466053,-0.6806633736199394 +karman,karman_re400,56,57,22.400000000000002,-2.0400702487677336,-2.7737956843338907,1.22785015264526,0.4156300565227866,5.127578508108854,5.606976803392172,-1.6876887530088425,1.7522010020911694,,,0.8180320262908936,74.88340735435486,108.32458138465881,-15.202761441469193,-41.44868552684784,-27.342014759778976,0.9204627871513367,-5.9937238693237305,-0.7183279991149902,1.057901913137033,-5.638337293076047,1.2240800679451853,-0.1374391259856964,-0.35538657624768355,-1.9424080670601755 +karman,karman_re400,57,58,22.8,-0.971645291429013,-4.391952883452177,1.0362234897911549,1.1008016881532967,5.372436251491308,5.284649319946766,-0.8235643617808819,3.7253075279295444,,,10.869675874710083,66.07998609542847,108.98624062538147,-20.756475161761045,-34.60651338100433,-23.833720851689577,1.395890712738037,-6.226719379425049,-1.3382720947265625,1.6750532074346116,-4.508251152906738,2.354166208114494,-0.2791624946965745,-1.7184682265183104,-3.6924383028410563 +karman,karman_re400,58,59,23.200000000000003,1.5406912425532937,-5.106710363179445,0.054741278290748596,1.650173799134791,4.133016336709261,4.419722245074809,-0.5490415496751666,3.0349332373589277,,,24.625051021575928,55.04137873649597,116.69492721557617,-28.689520619809628,-21.24740034341812,-24.334616400301456,1.6018346548080444,-5.850415229797363,-1.602891445159912,1.9476555874523973,-4.149235219239926,2.713182141781306,-0.3458209326443529,-1.7011800105574375,-4.316073586941219 +karman,karman_re400,59,60,23.6,4.122002515941858,-5.643255542963743,-1.2599271722137928,1.6021481715142727,1.1788720730692148,3.3320472575724125,-0.7551619783043861,-0.33145188353955746,,,39.46042060852051,44.00530755519867,130.38506507873535,-27.827032655477524,0.010156521602766588,-15.621579438447952,1.6479905843734741,-5.1591033935546875,-1.3835864067077637,2.1522893228728095,-4.418795761638953,2.443621599382279,-0.5042987384993354,-0.7403076319157345,-3.827208006090043 +karman,karman_re400,60,61,24.0,2.9529070015996695,-5.869756219908595,-1.4912427868694067,-0.029578572139143944,-1.175368670374155,3.473133547231555,0.5844614934176207,-0.006445683538913727,,,38.20012807846069,38.50797712802887,130.9665322303772,-1.441403478384018,26.992884278297424,19.591181725263596,1.5228214263916016,-3.9127745628356934,0.1000356674194336,2.2386747408111654,-2.66686058447398,4.195556776547252,-0.7158533144195638,-1.2459139783617132,-4.0955211091278185 +karman,karman_re400,61,62,24.400000000000002,1.1625929037109017,-3.622265299782157,-0.08949241600930691,0.9836080716922879,-3.6072616931051016,4.4260924914851785,2.478672075085342,1.3500824570655823,,,19.0263032913208,42.62982904911041,116.18772745132446,16.035696864128113,50.675225257873535,42.71896183490753,0.6925185918807983,-1.7176542282104492,3.3684022426605225,1.3815009563149072,-0.18964648586160981,6.672770875159623,-0.6889823644341089,-1.5280077423488394,-3.3043686324991004 +karman,karman_re400,62,63,24.8,-1.2010243954136968,-0.5284910148475319,1.184313528938219,1.1676026624627411,-4.72036050632596,5.1689776591956615,2.7204942889511585,0.7206280715763569,,,1.695692539215088,52.17452049255371,105.29588460922241,16.082361340522766,66.14376902580261,45.278534293174744,-0.17426052689552307,-0.24389506876468658,5.734882354736328,0.20156194590705712,0.12660420101747993,6.989021562038712,-0.3758224728025802,-0.3704992697821665,-1.2541392073023836 +karman,karman_re400,63,64,25.200000000000003,-2.3056992795318365,1.907249927171506,1.516825272119604,0.7279512647073716,-5.397328641265631,5.768795497715473,1.740441657602787,-1.9164453260600567,,,-9.864205121994019,61.451852321624756,101.70416235923767,10.214026272296906,78.4629762172699,40.11004418134689,-0.8550863265991211,0.3758702278137207,6.806817054748535,-0.7274087843531045,-1.1550907801291403,5.707326580892092,-0.12767754224601657,1.530961007942861,1.0994904738564433 +karman,karman_re400,64,65,25.6,-1.7561614513397217,4.007481271401048,0.6193097215145826,-0.5175420083105564,-6.027741823345423,5.678842309862375,0.5959789268672466,-4.8357839696109295,,,-18.156683444976807,75.79324841499329,100.43158531188965,5.269695073366165,84.37731266021729,28.84838804602623,-1.410834550857544,1.0422801971435547,7.200657844543457,-1.5284190280561678,-2.6517982947806544,4.210619066240578,0.11758447719862386,3.694078491924209,2.9900387783028792 +karman,karman_re400,65,66,26.0,1.002274570055306,4.928450798615813,0.03631529398262501,1.074905158020556,-5.504244472831488,5.1016181241720915,-0.2917565871030092,-6.087757647037506,,,-23.525574803352356,94.1348135471344,98.95044267177582,6.05158694088459,95.58555483818054,15.052665397524834,-1.7449835538864136,0.899327278137207,6.709697246551514,-1.8796689165335811,-3.8127626312325456,3.0496547297886867,0.13468536264716757,4.712089909369753,3.660042516762827 +karman,karman_re400,66,67,26.400000000000002,3.815061179921031,5.261943209916353,-1.2992704287171364,1.2165203224867582,-2.5243335403501987,4.069545539095998,0.13703037984669209,-2.2502727806568146,,,-29.070711135864258,106.86118602752686,101.03510618209839,1.3532470911741257,80.53579926490784,10.777724906802177,-1.7485179901123047,0.849119246006012,5.373626708984375,-2.0068600654433997,-3.2520028455418513,3.610414515479381,0.258342075331095,4.101122091547863,1.763212193504994 +karman,karman_re400,67,68,26.8,3.9279446937143803,5.731494165956974,-2.100178971886635,-0.2724132500588894,0.3207986301276833,3.65111674182117,0.04003942012786865,0.4008774703834206,,,-26.772183179855347,104.28072214126587,100.02291798591614,1.7597971367649734,-14.794956147670746,2.0246559870429337,-1.5990418195724487,0.41223955154418945,4.272273063659668,-2.185942777813393,-3.378845856123006,3.4835715048982263,0.5869009582409443,3.7910854076671954,0.7887015587614417 +karman,karman_re400,68,69,27.200000000000003,1.707256305962801,4.2086392641067505,-1.5670033171772957,-1.4267503283917904,3.0321714002639055,4.645609296858311,-1.9248942844569683,-0.8176171686500311,,,-23.81514608860016,93.38527917861938,99.15646016597748,5.831233412027359,-101.81083679199219,-12.667199224233627,-1.1158195734024048,-2.1386451721191406,2.258610248565674,-1.6051389633160253,-5.9485503667749535,0.9138669942462787,0.48931938991362056,3.809905194655813,1.3447432543193951 +karman,karman_re400,69,70,27.6,-0.6712637841701508,1.4023654512129724,0.09489065269008279,-0.4814824787899852,4.555003251880407,5.291198962368071,-2.7844648575410247,-1.013926463201642,,,-20.463746786117554,85.86105108261108,98.85897040367126,1.2409411370754242,-104.04613018035889,-20.32369002699852,-0.36118414998054504,-4.535285949707031,0.6945343017578125,-0.534850170160154,-7.072681106516362,-0.21026374549512994,0.17366602017960897,2.537395156809331,0.9047980472529424 +karman,karman_re400,70,71,28.0,-2.292732708156109,-1.2831787826144136,1.0676500605768524,-0.15743258700240403,5.1871235482394695,5.917336093261838,-2.410344546660781,0.3664344549179077,,,-12.550771236419678,81.78041577339172,98.6687421798706,-1.7907477915287018,-74.23739433288574,-24.309592694044113,0.3913383185863495,-5.798250198364258,-0.22860002517700195,0.4893933957326157,-6.583413377965389,0.27900398305584284,-0.09805507714626621,0.7851631796011311,-0.5076040082328448 +karman,karman_re400,71,72,28.400000000000002,-2.2737467661499977,-3.3313845051452518,1.193117001093924,0.11248723603785038,5.607143044471741,5.731208017095923,-1.5674803871661425,2.472182270139456,,,-3.8493603467941284,78.12879681587219,100.10956823825836,-4.733679443597794,-61.28624081611633,-24.33004602789879,1.0092662572860718,-6.318297386169434,-0.9785236716270447,1.2705615129812862,-5.4811309816349425,1.3812863793862893,-0.2612952556952144,-0.8371664045344911,-2.359810051013334 +karman,karman_re400,72,73,28.8,-0.43672454194165766,-4.587018862366676,0.6356448866426945,0.8345652313437313,5.345955491065979,5.345970159396529,-0.42373850010335445,4.49847849085927,,,4.56233024597168,68.95051002502441,102.70233154296875,-7.128512114286423,-56.269025802612305,-20.769456773996353,1.3428852558135986,-6.096965789794922,-1.2881989479064941,1.7494497008198673,-3.985366173209611,2.877051187811621,-0.40656444500626865,-2.111599616585311,-4.165250135718115 +karman,karman_re400,73,74,29.200000000000003,2.533810446038842,-5.223294021561742,-0.5031719338148832,1.5274665784090757,2.9560986440628767,4.349762806668878,-0.3244995605200529,2.307099523022771,,,12.252908945083618,53.97254824638367,105.60370087623596,-8.977773413062096,-51.877230405807495,-14.143583551049232,1.3702257871627808,-5.511904716491699,-1.1734657287597656,1.9921195960813398,-3.8555832955051406,3.0068340655160917,-0.621893808918559,-1.6563214209865587,-4.180299794275857 +karman,karman_re400,74,75,29.6,3.5415426827967167,-5.537347635254264,-1.5474429819732904,0.4466567188501358,-0.07344991172431037,3.979723434895277,-0.037900637835264206,-0.14925118739483878,,,20.005199313163757,32.27497339248657,110.27715504169464,-16.69523809105158,-36.80456876754761,-12.427492998540401,1.3913111686706543,-4.4556779861450195,-0.4791392982006073,2.1118969540999433,-3.4807744443705433,3.381642916650689,-0.720585785429289,-0.9749035417744762,-3.8607822148512962 +karman,karman_re400,75,76,30.0,1.4791705179959536,-4.532714723609388,-1.1986849131062627,-0.9181993082165718,-2.5945899542421103,4.83046262525022,1.6338417772203684,0.6730936001986265,,,22.75061011314392,15.190650522708893,112.45259642601013,-17.315950244665146,7.5307779014110565,-3.8145922124385834,1.145285725593567,-2.4918034076690674,1.7614679336547852,1.728738567477546,-1.294500162142635,5.567917198878597,-0.5834528418839791,-1.1973032455264323,-3.8064492652238116 +karman,karman_re400,76,77,30.400000000000002,-0.4801314207725227,-1.6220754478126764,0.29337091837078333,0.10661041596904397,-4.283488728106022,5.383097101002932,2.7579176239669323,1.2323465198278427,,,13.709139823913574,23.353181779384613,105.62492609024048,-2.926536649465561,53.337955474853516,16.548993438482285,0.2761392593383789,-0.529207706451416,4.72241735458374,0.6186456807851461,0.17554575694340446,7.037963117964637,-0.34250642144676724,-0.7047534633948205,-2.3155457633808965 +karman,karman_re400,77,78,30.8,-2.057404024526477,1.1587991684791632,1.0084131426992826,-0.04057773912791163,-5.012345965951681,5.9134517796337605,2.33943248167634,-0.33348100259900093,,,8.190125226974487,47.454383969306946,105.11251091957092,4.43977490067482,66.33532643318176,27.582650631666183,-0.4345681965351105,0.42584228515625,6.365705490112305,-0.4419560763611545,-0.37174149008978263,6.490675870931449,0.007387879826044053,0.7975837752460326,-0.12497038081914447 +karman,karman_re400,78,79,31.200000000000003,-2.0807739347219467,3.2736988505348563,0.9472650708630681,-0.1862437929958105,-5.624123848974705,5.669198697432876,1.4502762351185083,-2.723571378737688,,,-1.3338565826416016,62.039339542388916,102.79703140258789,6.253938376903534,70.28026580810547,31.111185252666473,-1.037143349647522,0.9968738555908203,7.126004219055176,-1.2485606984593058,-1.5345638347432764,5.327853526277956,0.21141734881178387,2.531437690334097,1.7981506927772202 +karman,karman_re400,79,80,31.6,-0.3741449909284711,4.628912545740604,0.6200890056788921,0.8660330204293132,-5.6466590613126755,5.509048001840711,0.08978438563644886,-5.467090290039778,,,-10.239827632904053,70.48293948173523,99.2568850517273,6.824933737516403,68.61379146575928,26.191437989473343,-1.5573043823242188,0.8723549842834473,7.061666965484619,-1.7654275927893253,-3.313790296257879,3.548627064763353,0.2081232104651065,4.186145280541327,3.513039900721266 +karman,karman_re400,80,81,32.0,2.3535166401416063,5.0618688110262156,-0.014422228559851646,2.324672183021903,-4.1206637397408485,4.619268933311105,-0.20989472977817059,-4.54045319929719,,,-17.788124084472656,70.83972096443176,97.52453565597534,3.2812848687171936,72.66709208488464,20.058614015579224,-1.7658759355545044,0.6659879684448242,6.228294372558594,-1.9305534035825251,-3.70570518520923,3.156712175812002,0.16467746802802075,4.371693153654054,3.0715821967465917 +karman,karman_re400,81,82,32.4,4.313335753977299,5.157611798495054,-1.4708698727190495,1.3715960085391998,-0.7101079681888223,3.664965508505702,0.37664943374693394,0.043190899305045605,,,-32.519957423210144,51.51030421257019,107.37769901752472,-7.071392610669136,83.34041833877563,18.404097482562065,-1.8377857208251953,0.6566753387451172,4.772398948669434,-1.9670689588502748,-2.938633411138616,3.9237839498826164,0.12928323802507946,3.595308749883733,0.8486149987868172 +karman,karman_re400,82,83,32.800000000000004,2.69480817951262,4.872628604061902,-1.9652078626677394,-1.2356075458228588,1.655441359616816,4.051491036079824,-1.2568446109071374,-0.8582478621974587,,,-34.76559519767761,23.635314404964447,109.63844656944275,-7.964951545000076,26.48349404335022,7.46392235159874,-1.7264574766159058,-0.7001354694366455,3.2798731327056885,-1.858378809714386,-5.0748871711898005,1.7875301898314317,0.1319213330984803,4.374751701753155,1.4923429428742567 +karman,karman_re400,83,84,33.2,0.5405183765105903,2.3575000232085586,-0.4701548023149371,-0.3997912281192839,3.900335170328617,4.847327247262001,-2.6949462480843067,-1.4895573258399963,,,-22.355961799621582,30.07941246032715,99.77936744689941,6.930743902921677,-66.69186353683472,-18.78989413380623,-0.8694216012954712,-3.6806063652038574,1.2870540618896484,-0.8991303140526203,-6.955610299510778,-0.0931929384895458,0.029708712757149147,3.2750039343069206,1.3802470003791942 +karman,karman_re400,84,85,33.6,-1.7033731564879417,-0.2833724720403552,0.8779489435255527,0.05252473056316376,4.80631785467267,5.523072904907167,-2.7825121069326997,-0.758706359192729,,,-15.330144762992859,57.37706422805786,97.83137142658234,0.8368544280529022,-86.59061193466187,-21.271861344575882,0.020639590919017792,-5.4343767166137695,0.16297101974487305,0.10807583341303399,-7.070127334837103,-0.20770997381587053,-0.0874362424940162,1.6357506182233337,0.3706809935607436 +karman,karman_re400,85,86,34.0,-2.754227491095662,-2.22102424595505,1.434234087355435,0.11424068361520767,5.21831214427948,5.824473686516285,-1.9150576554238796,1.3881968334317207,,,-9.177953004837036,70.71220874786377,99.92021918296814,-2.8841540217399597,-72.0021665096283,-22.294579446315765,0.6591155529022217,-6.00868034362793,-0.36646366119384766,0.8470796216859179,-5.935686202484343,0.9267311585368896,-0.1879640687836962,-0.07299414114358704,-1.2931948197307372 +karman,karman_re400,86,87,34.4,-2.2824169136583805,-3.751165233552456,0.957027543336153,-0.36836182698607445,5.446314811706543,5.8672556187957525,-0.606021611019969,4.234271589666605,,,-0.7802605628967285,70.6738531589508,102.05821990966797,-3.5900063812732697,-60.505032539367676,-22.525566071271896,1.152735710144043,-5.903075218200684,-0.792607307434082,1.4306622868732475,-4.223752705663673,2.6386646553575592,-0.2779265767292045,-1.679322512537011,-3.4312719627916413 +karman,karman_re400,87,88,34.800000000000004,0.3362573916092515,-4.338777391240001,0.06222096271812916,0.4606993170455098,4.399233032017946,5.02568413503468,-0.17959601245820522,4.040041007101536,,,7.381358742713928,59.69955921173096,103.98124158382416,-2.6349112391471863,-55.645352602005005,-17.246276140213013,1.241119384765625,-5.5146074295043945,-0.9313459992408752,1.6547725302163925,-3.6660810745420798,3.1963362864791525,-0.4136531454507675,-1.8485263549623148,-4.127682285720027 +karman,karman_re400,88,89,35.2,3.1587027478963137,-4.573107114993036,-1.0135836200788617,1.1315355077385902,1.5458619454875588,3.881169017404318,-0.5431119352579117,0.4596380749717355,,,15.109699964523315,41.52540862560272,107.49332308769226,-7.748754322528839,-58.07845592498779,-14.621174335479736,1.1759289503097534,-4.895390033721924,-0.6696748733520508,1.7441438795422675,-4.141480577503723,2.7209367835175096,-0.568214929232514,-0.7539094562182012,-3.3906116568695603 +karman,karman_re400,89,90,35.6,2.515179105103016,-4.754534224048257,-1.5954745467752218,-0.6757699884474277,-0.76928740600124,3.4346894826740026,-0.003929482772946358,-0.7771463715471327,,,24.32117760181427,19.55021321773529,114.12539184093475,-16.24263133853674,-36.598774790763855,-13.84007427841425,1.302158236503601,-3.8382692337036133,0.08482837677001953,1.8133386247963796,-3.4363475865116726,3.4260697745095596,-0.5111803882927786,-0.4019216471919407,-3.34124139773954 +karman,karman_re400,90,91,36.0,0.7707263575866818,-2.973265596665442,-0.8343210211023688,-0.8979156846180558,-3.1935349106788635,4.352123709395528,1.7978877294808626,0.4022405482828617,,,18.042895197868347,9.795167297124863,106.96771442890167,-0.3038570284843445,25.300773978233337,10.09894385933876,0.6484752893447876,-1.6122413873672485,2.9578089714050293,1.1339780290026107,-1.0799638536176337,5.7824535074035985,-0.4855027396578231,-0.5322775337496148,-2.8246445359985692 +karman,karman_re400,91,92,36.4,-1.101310714147985,-0.19320267892908305,0.5831392045365646,0.06496769492514431,-4.509303253144026,4.9342712154611945,2.3307992378249764,0.15229522250592709,,,16.701924800872803,31.2674880027771,106.60145282745361,2.859349548816681,66.95924997329712,18.626195192337036,-0.016537152230739594,-0.11197804659605026,5.3271050453186035,0.07368584673220434,-0.3830318891575186,6.479385471863713,-0.09022299896294393,0.27105384256146836,-1.1522804265451096 +karman,karman_re400,92,93,36.800000000000004,-1.9813801627606153,2.042909007286653,1.3240719272289425,0.6667636916972697,-5.240757018327713,5.34442497882992,1.796756754629314,-1.6472435090690851,,,10.434165596961975,61.29429340362549,104.87007796764374,1.9075371325016022,68.33885312080383,24.405192583799362,-0.5689693689346313,0.4934253692626953,6.565720558166504,-0.7791479954272209,-1.0814429219295456,5.780974439091686,0.21017862649258956,1.574868291192241,0.7847461190748177 +karman,karman_re400,93,94,37.2,-1.264442689716816,4.027296090498567,0.9074441622942686,0.5504456348717213,-5.749099887907505,5.161328474059701,0.9436907712370157,-3.8617183454334736,,,-0.3491640090942383,77.18870639801025,104.20589447021484,0.2465859055519104,74.80044364929199,25.35538822412491,-1.166558027267456,1.0784244537353516,7.117388725280762,-1.5359762303224058,-2.1970670777430334,4.665350283278199,0.36941820305494977,3.275491531478385,2.4520384420025625 +karman,karman_re400,94,95,37.6,1.133778947405517,5.160713801160455,0.12515555135905743,1.384090050123632,-5.1275924779474735,4.826868651434779,0.061570433899760246,-5.004451610147953,,,-11.024278402328491,57.76560306549072,104.99280095100403,1.5812262892723083,118.9335584640503,18.21233183145523,-1.7440669536590576,1.1636357307434082,6.7922234535217285,-1.9682520360945064,-3.350687988465975,3.511729372555257,0.22418508243544877,4.514323719209383,3.2804940809664713 +karman,karman_re400,95,96,38.0,3.6522767040878534,5.577950039878488,-1.3384746853262186,0.9753273334354162,-1.9689388573169708,4.21330682002008,0.18250825814902782,-1.6039223410189152,,,-18.950307369232178,53.07049751281738,105.94404935836792,-0.30520372092723846,81.960928440094,11.169971898198128,-1.8425570726394653,0.9610309600830078,5.41136360168457,-2.1273823634156064,-3.19252770460671,3.6698896564145222,0.28482529077614105,4.153558664689718,1.741473945270048 +karman,karman_re400,96,97,38.400000000000006,3.5774281714111567,5.723987240344286,-1.6721123829483986,0.23320340551435947,0.7843445055186749,4.071211675181985,-0.2873570192605257,0.20963046699762344,,,-24.009335041046143,70.73557376861572,106.41258955001831,-8.912202529609203,-24.913237988948822,8.292493410408497,-1.6572593450546265,0.07117271423339844,4.1812543869018555,-2.183079700690484,-3.8070089565394145,3.0554084044818177,0.5258203556358576,3.878181670772813,1.1258459824200377 +karman,karman_re400,97,98,38.800000000000004,1.299821538850665,3.91818443313241,-0.7332726381719112,-0.1667237374931574,3.569830907508731,4.80723031796515,-1.9987423438578844,-0.4276537802070379,,,-17.466306686401367,82.39334225654602,98.78718852996826,-5.237520951777697,-81.75098896026611,-7.315630000084639,-1.0060440301895142,-2.55476975440979,2.1163861751556396,-1.4943619788744198,-6.045127513832199,0.8172898471890337,0.48831794868490563,3.490357759422409,1.299096327966606 +karman,karman_re400,98,99,39.2,-1.0773164685815573,0.9887266205623746,0.6714880000799894,0.2656595315784216,4.8584360629320145,5.36427041515708,-2.6281182654201984,-0.3978004679083824,,,-10.299155116081238,80.47683835029602,95.01461088657379,0.29418841004371643,-76.91314816474915,-21.869749575853348,-0.17119953036308289,-4.785025596618652,0.5942249298095703,-0.37709186345988344,-6.868213880950178,-0.005796519928944921,0.20589233309680055,2.0831882843315253,0.6000214497385152 +karman,karman_re400,99,100,39.6,-2.4883875157684088,-1.568612853589002,1.4117800383246504,0.335172560880892,5.369263701140881,6.017172941938043,-1.9759598653763533,1.417343970388174,,,-5.461210012435913,75.84996223449707,97.31214642524719,-3.5751961171627045,-66.33545160293579,-23.667622357606888,0.5377872586250305,-5.803140640258789,-0.18301963806152344,0.5982555053191128,-6.01533300342138,0.8470843575998526,-0.06046824669408224,0.2121923631625906,-1.030103995661376 +karman,karman_re400,100,101,40.0,-2.328689908608794,-3.4623583778738976,1.1775624006986618,0.026434892788529396,5.7743145152926445,5.992700811475515,-1.0120267979800701,3.7502609193325043,,,1.1720538139343262,70.58810591697693,100.55625438690186,-7.795563340187073,-59.877920150756836,-23.482054471969604,1.1011817455291748,-6.111189842224121,-0.8839245438575745,1.3205138260925795,-4.754718894418573,2.1076984666026584,-0.2193320805634047,-1.3564709478055477,-2.991623010460233 +karman,karman_re400,101,102,40.400000000000006,-0.2778769703581929,-4.522033268585801,0.6835933309048414,1.08930969145149,5.403259303420782,5.433748010545969,-0.17246278002858162,5.058333743363619,,,8.635702729225159,61.86649203300476,104.76133525371552,-9.398110955953598,-54.75648045539856,-20.470160990953445,1.3563801050186157,-5.968730449676514,-1.1960968971252441,1.7246647520309504,-3.656752363091326,3.2056649979299063,-0.36828464701233465,-2.3119780865851878,-4.4017618950551505 +karman,karman_re400,102,103,40.800000000000004,2.611280418932438,-5.1419842056930065,-0.5142446607351303,1.5827910974621773,3.037017770111561,4.194237757474184,-0.41174376383423805,2.2135302424430847,,,15.217062830924988,50.30294060707092,108.00941288471222,-7.299027405679226,-43.33517849445343,-12.343739904463291,1.3548376560211182,-5.519233226776123,-1.2082014083862305,1.9611087288245428,-3.969679675582282,2.8927376854389504,-0.6062710728034246,-1.5495535511938412,-4.100939093825181 +karman,karman_re400,103,104,41.2,3.687516553327441,-5.681821145117283,-1.5596551820635796,0.5682061892002821,0.14313735300675035,3.529941663146019,-0.28625549748539925,-0.42937364196404815,,,23.30705225467682,35.160893201828,112.72293031215668,-11.012767069041729,-22.462429106235504,-7.703286595642567,1.4291621446609497,-4.663410186767578,-0.7256107330322266,2.1669979131737955,-3.805568406424406,3.056848954596826,-0.7378357685128458,-0.8578417803431719,-3.7824596876290526 +karman,karman_re400,104,105,41.6,1.7246772767975926,-4.871993558481336,-1.480909762904048,-1.2371422490105033,-2.29220581240952,4.513688734732568,1.5727902064099908,0.8533746004104614,,,29.55906391143799,21.39723151922226,117.39886999130249,-9.792156517505646,14.83689397573471,3.2780587673187256,1.2737982273101807,-2.671252965927124,1.4112496376037598,1.858136608769881,-1.3743422944892636,5.488075066531969,-0.5843383814597003,-1.2969106714378604,-4.076825428928209 +karman,karman_re400,105,106,42.0,-0.21931876835878938,-1.9630359602160752,0.20256912102922797,0.18581947369966656,-4.091094247996807,5.333801964297891,2.9212699737399817,1.7514456994831562,,,28.297314047813416,29.76633310317993,117.6173597574234,-0.77705979347229,50.22338628768921,19.611507654190063,0.5146023631095886,-0.6589748859405518,4.480446815490723,0.7486850994824029,0.3891749847682129,7.251592345789446,-0.2340827363728143,-1.0481498707087646,-2.771145530298723 +karman,karman_re400,106,107,42.400000000000006,-2.0040180534124374,0.8856304048094898,1.1190740333404392,0.23413001326844096,-4.844703245908022,5.897323484532535,2.5768225314095616,0.30894181691110134,,,14.948490262031555,49.92789924144745,108.91190469264984,6.3363999128341675,56.865084171295166,32.121798396110535,-0.293136328458786,0.3327336311340332,6.294238567352295,-0.337771849913768,-0.061287106738340924,6.801130254282891,0.04463552145498201,0.3940207378723741,-0.5068916869305964 +karman,karman_re400,107,108,42.800000000000004,-2.365994267165661,3.016013535670936,1.1758707696571946,-0.01425272785127163,-5.381471011787653,5.653938394971192,1.750797382555902,-1.879876246675849,,,0.08502006530761719,57.23410248756409,101.11782550811768,2.0780548453330994,56.4944326877594,31.81024342775345,-0.9136529564857483,0.9360705018043518,7.088402271270752,-1.1502817267522298,-1.141547751648842,5.72086960937239,0.23662877026648155,2.0776182534531937,1.3675326618983616 +karman,karman_re400,108,109,43.2,-1.1132777435705066,4.6039060689508915,0.6570145487785339,0.2007513539865613,-5.524326115846634,5.553544731810689,0.24284585379064083,-5.038634408265352,,,-8.24384093284607,55.268365144729614,101.24534964561462,-3.7122972309589386,56.47224187850952,25.809865444898605,-1.4680452346801758,0.9698724746704102,7.081775665283203,-1.7558903367520238,-3.113619295981847,3.7487980650393853,0.287845102071848,4.083491770652257,3.332977600243818 +karman,karman_re400,109,110,43.6,1.6465666703879833,5.097700748592615,0.09827502071857452,1.8431167118251324,-4.263490904122591,4.775000037625432,-0.3431153018027544,-4.9497215077281,,,-12.733343243598938,47.78535068035126,102.41067111492157,-8.652184158563614,53.3092737197876,22.909631580114365,-1.7144896984100342,0.6763668060302734,6.309425354003906,-1.9442193976270736,-3.879928622897952,2.9824887381232803,0.22972969921703945,4.556295428928225,3.326936615880626 +karman,karman_re400,110,111,44.0,3.8853592704981565,4.925362765789032,-0.9999619796872139,1.8854353111237288,-0.9780366672202945,3.8460976211354136,0.24016026873141527,-0.49771612975746393,,,-12.95689344406128,36.29702627658844,100.96371173858643,-20.237384736537933,43.39067041873932,26.911289989948273,-1.575506567955017,0.4595918655395508,4.832918167114258,-1.8784911672661304,-3.1171314552085567,3.7452859058126755,0.3029845993111133,3.5767233207481075,1.0876322613015823 +karman,karman_re400,111,112,44.400000000000006,2.6216567493975163,4.748090170323849,-1.733564306050539,-0.8454718627035618,1.436237944290042,3.6796140484511852,-0.6565665826201439,0.12310477904975414,,,-12.998077273368835,18.302881717681885,100.29228031635284,0.7038290612399578,20.11505514383316,-2.38151578232646,-1.437228798866272,-0.459654301404953,3.478233575820923,-1.8108809179068954,-4.289854498924523,2.5725628620967087,0.37365211904062345,3.83020019751957,0.9056707137242141 +karman,karman_re400,112,113,44.800000000000004,0.5424133851192892,2.505088981706649,-0.7930106366984546,-1.04360788827762,3.7763381842523813,4.507018718868494,-2.147784922271967,-0.5192316602915525,,,-24.907755851745605,8.16568061709404,112.3714804649353,4.9875568598508835,-23.63782525062561,-14.77213241159916,-0.9914641380310059,-3.082848072052002,1.5358188152313232,-0.955419478548356,-6.240042683303926,0.6223746777173056,-0.0360446594826499,3.1571946112519242,0.9134441375140177 +karman,karman_re400,113,114,45.2,-1.6633026534691453,-0.15961049939505756,0.6159793410915881,-0.431343971285969,4.808023106306791,5.19112404435873,-2.4670553393661976,-0.12608757242560387,,,-25.714418292045593,21.161803603172302,115.68448841571808,10.38741022348404,-58.840352296829224,-24.649931490421295,-0.24513253569602966,-5.103748321533203,0.33467888832092285,0.060874077215004915,-6.657578719766856,0.20483864125437634,-0.3060066129110346,1.5538303982336528,0.1298402470665465 +karman,karman_re400,114,115,45.6,-2.68575013615191,-2.2083488292992115,1.430258620530367,0.17476710490882397,5.345153622329235,5.5176891619339585,-1.8070497317239642,1.7310541588813066,,,-15.390753746032715,48.05006682872772,110.02914905548096,14.712394773960114,-63.49331736564636,-32.635001838207245,0.4965803623199463,-6.024824142456055,-0.3345308303833008,0.8422453263534407,-5.7944354070655395,1.0679819539556927,-0.34566496403349445,-0.2303887353905152,-1.4025127843389935 +karman,karman_re400,115,116,46.0,-2.088243141770363,-3.8273666286841035,1.095651532523334,0.1030599232763052,5.615875590592623,5.490700947120786,-0.8032990153878927,4.009277559816837,,,-2.3746490478515625,64.58961367607117,103.8752794265747,13.342372328042984,-64.86976742744446,-32.02387914061546,1.1018908023834229,-6.1909332275390625,-0.933619499206543,1.459724846220635,-4.481748501995678,2.380668859025554,-0.35783404383721207,-1.709184725543384,-3.3142883582320968 +karman,karman_re400,116,117,46.400000000000006,0.6041636224836111,-4.624820547178388,0.09030732326209545,0.784778269007802,4.596302751451731,4.910491406917572,-0.20915735512971878,4.177988041192293,,,8.785843849182129,65.91281294822693,101.24392509460449,10.862185806035995,-80.92374205589294,-23.956037312746048,1.323891043663025,-5.819750785827637,-1.131960391998291,1.7638669395905433,-3.7047408600741143,3.157676500947118,-0.4399758959275184,-2.1150099257535224,-4.289636892945409 +karman,karman_re400,117,118,46.800000000000004,3.3025655429810286,-4.98292176052928,-1.2654461897909641,0.7716731633991003,1.2947330251336098,4.0450344095006585,-0.5211032694205642,0.2525264862924814,,,17.372334003448486,51.94294452667236,100.8689284324646,6.787922978401184,-92.85964965820312,-14.455574750900269,1.2815521955490112,-5.052876949310303,-0.7311697006225586,1.9004436747986293,-4.1126980451751765,2.749719315846056,-0.6188914792496181,-0.9401789041351263,-3.4808890164686144 +karman,karman_re400,118,119,47.2,2.4994320701807737,-5.163681693375111,-1.5878137201070786,-0.6761953700333834,-1.1853143805637956,3.9606326026842,0.14484778512269258,-0.8956188103184104,,,27.597540616989136,46.66798710823059,106.02913498878479,-6.353435665369034,-27.147075533866882,-12.408503144979477,1.4210094213485718,-3.901859760284424,0.17602086067199707,1.96938396476164,-3.2417793853037473,3.620637975717485,-0.5483745434130682,-0.6600803749806765,-3.444617115045488 +karman,karman_re400,119,120,47.6,0.4011743585579097,-3.1727441819384694,-0.5429304437711835,-0.6846865289844573,-3.6397213116288185,4.978125216439366,1.966744428500533,0.2937675453722477,,,26.97541117668152,58.40942859649658,104.30095791816711,-10.492118820548058,63.516634702682495,-1.912829652428627,0.930380642414093,-1.558969259262085,3.036072254180908,1.2100574526537733,-0.8591361381012343,6.003281222919998,-0.2796768102396803,-0.6998331211608506,-2.96720896873909 +karman,karman_re400,120,121,48.0,-1.533634029328823,-0.17797629698179662,0.8601653680671006,0.1866967068053782,-4.8248437233269215,5.462957313284278,2.4047784972935915,-0.015286728739738464,,,13.861513137817383,69.90144848823547,95.38170099258423,1.5277579426765442,80.76727390289307,20.515885949134827,0.028983529657125473,-0.07406282424926758,5.565718650817871,0.06787863508962882,-0.28628316104134166,6.57613419997989,-0.03889510543250335,0.21222033679207408,-1.010415549162019 +karman,karman_re400,121,122,48.400000000000006,-2.444437937811017,2.1106865897309035,1.4584351156372577,0.47243229346349835,-5.342206917703152,5.832942435517907,1.7440237570554018,-1.854159403592348,,,8.253952860832214,70.5420434474945,98.39076101779938,-1.9019536674022675,72.5757360458374,22.541359812021255,-0.5756622552871704,0.49405908584594727,6.686887264251709,-0.8049977847756365,-1.1504061757073676,5.712011185313864,0.22933552948846614,1.6444652615533148,0.9748760789378448 +karman,karman_re400,122,123,48.800000000000004,-1.755037810653448,4.151227651163936,0.9776100050657988,0.20018219947814941,-5.879744421690702,5.757088074460626,0.6405918393284082,-4.598560743033886,,,0.31991004943847656,65.98982810974121,101.43616199493408,-3.782457113265991,71.45249247550964,22.23251461982727,-1.2221518754959106,1.0007572174072266,7.207309722900391,-1.5832426659385666,-2.593454340418596,4.268963020602636,0.3610907904426559,3.5942115578258225,2.9383467022977543 +karman,karman_re400,123,124,49.2,0.7322965539060533,5.1221041940152645,0.4687397740781307,1.6697761020623147,-5.315823946148157,5.247288383543491,-0.24680420756340027,-5.809432361274958,,,-7.754376530647278,60.98873019218445,105.04184663295746,-3.2452791929244995,76.55754685401917,18.32987815141678,-1.6731053590774536,0.8743739128112793,6.846085548400879,-1.9535266626666599,-3.7539747280081572,3.108442633013075,0.28042130358920625,4.6283486408194365,3.737642915387804 +karman,karman_re400,124,125,49.6,3.3486024476587772,5.2886041812598705,-0.7252683863043785,1.8980656750500202,-2.3026238195598125,4.275216255337,0.1180092804133892,-2.066605258733034,,,-14.735603332519531,58.47978591918945,108.55735540390015,-2.2365503013134003,79.18574810028076,12.344301491975784,-1.7343580722808838,0.7118067741394043,5.507455825805664,-2.017028331530803,-3.2768782929410523,3.58553906808018,0.2826702592499193,3.9886850670804566,1.921916757725484 +karman,karman_re400,125,126,50.0,3.656400367617607,5.574732320383191,-1.5793603379279375,0.4976796917617321,0.4933009040541947,3.5009024431928992,0.11748925317078829,0.7282794103957713,,,-20.397844910621643,49.93663132190704,110.24897992610931,-9.371088817715645,54.588836431503296,12.050799652934074,-1.687899112701416,0.46120786666870117,4.362327575683594,-2.126155152763705,-3.27755837509744,3.584858985923792,0.438256040062289,3.7387662417661414,0.7774685897598017 +karman,karman_re400,126,127,50.400000000000006,1.3238689862191677,4.046282381750643,-1.3004987267777324,-1.277128467336297,3.1763152219355106,4.495769273489714,-1.7482214607298374,-0.3201276995241642,,,-17.370420694351196,41.225746273994446,103.73466610908508,-6.701062619686127,-28.912457823753357,-0.7635079324245453,-1.184587001800537,-1.923607349395752,2.358553886413574,-1.5432174391657214,-5.717500865724663,1.144916495296569,0.3586304373651843,3.793893516328911,1.2136373911170053 +karman,karman_re400,127,128,50.800000000000004,-0.8983107400126755,1.136294158641249,0.5675760912708938,0.2368414425291121,4.596180748194456,5.287551903165877,-2.791047445498407,-0.9859141428023577,,,-11.613774299621582,46.53243124485016,98.16635847091675,1.4159202575683594,-84.1768741607666,-18.290606141090393,-0.3442099392414093,-4.700272560119629,0.7376606464385986,-0.4333728583912215,-7.08128969515545,-0.21887233413421692,0.08916291914981223,2.3810171350358207,0.9565329805728155 +karman,karman_re400,128,129,51.2,-2.513410057872534,-1.4736944358446635,1.670790974458214,0.828171891043894,5.167483817785978,5.961987189948559,-2.2327695041894913,0.7019448094069958,,,-8.198356628417969,57.334041595458984,99.64243173599243,-1.140114665031433,-80.71895837783813,-22.647731006145477,0.4129757285118103,-5.944427490234375,-0.06160354241728783,0.5620544338808645,-6.351183971673996,0.5112333893472361,-0.1490787053690542,0.4067564814396212,-0.5728369317645239 +karman,karman_re400,129,130,51.6,-2.541240770369768,-3.283487807493657,1.5544386697001755,0.5676365690305829,5.4594348184764385,5.920120980590582,-1.2855413369834423,2.888352144509554,,,-1.2936323881149292,62.65828609466553,100.92428028583527,-4.3836526572704315,-67.20278263092041,-24.60927739739418,0.9910364747047424,-6.226015090942383,-0.6862797737121582,1.2522941227893023,-5.112416226886265,1.7500011341349675,-0.26125764808455987,-1.1135988640561179,-2.4362809078471255 +karman,karman_re400,130,131,52.0,-0.8013854967430234,-4.538854584097862,0.670108012855053,0.5388305289670825,5.233498755842447,5.560417892411351,-0.25948253460228443,4.714533686637878,,,7.4339985847473145,59.98884439468384,103.12536954879761,-6.633000820875168,-60.51362752914429,-22.832555323839188,1.3565856218338013,-5.9724016189575195,-1.1237678527832031,1.731080257672623,-3.7705552131936484,3.091862147827584,-0.3744946358388217,-2.201846405763871,-4.215630000610787 +karman,karman_re400,131,132,52.400000000000006,2.24831560626626,-5.111629376187921,-0.6264813710004091,0.9953528642654419,3.0256465543061495,4.4234381057322025,-0.4579988308250904,2.1096488926559687,,,14.708748459815979,52.21044421195984,106.12039268016815,-10.56314930319786,-51.46542191505432,-20.712704211473465,1.3970674276351929,-5.4946393966674805,-1.2336230278015137,1.9495316568766172,-4.030171209728985,2.832246151292247,-0.5524642292414244,-1.464468186938496,-4.065869179093761 +karman,karman_re400,132,133,52.800000000000004,3.5484859254211187,-5.5336118675768375,-1.3616010546684265,0.8252838160842657,0.3500298480503261,3.4892301773652434,-0.46324788127094507,-0.576465914491564,,,18.257638812065125,42.7501916885376,107.20109045505524,-19.064863305538893,-33.18375051021576,-21.33565964177251,1.4470620155334473,-4.796726226806641,-0.8459320664405823,2.110472164309078,-4.037035822298803,2.825381538722429,-0.6634101487756308,-0.7596904045078379,-3.6713136051630113 +karman,karman_re400,133,134,53.2,1.7003389075398445,-4.837330081500113,-1.3025322696194053,-0.904725631698966,-2.2429293021559715,4.222737974487245,1.15671765524894,0.07050600834190845,,,24.99338984489441,29.76781725883484,112.48819231987,-6.52507096529007,-4.679194465279579,0.6810620427131653,1.2556699514389038,-2.980093002319336,1.2636537551879883,1.8449162555832608,-1.9184743987848227,4.9439429622364095,-0.589246304144357,-1.0616186035345132,-3.680289207048421 +karman,karman_re400,134,135,53.6,-0.1525550032965839,-2.0505175343714654,0.19748328486457467,0.24241156643256545,-4.129199311137199,4.986709449440241,2.4755713529884815,0.8219433948397636,,,33.41476321220398,25.65908133983612,122.00478911399841,1.1825419962406158,33.55807065963745,15.795116871595383,0.5912666916847229,-0.9527804255485535,4.22676944732666,0.7820498224812603,-0.19370155374506481,6.668715807276167,-0.19078313079653741,-0.7590788718034887,-2.4419463599495073 +karman,karman_re400,135,136,54.0,-2.0258338190615177,0.8288356475532055,1.175902085378766,0.3259703516960144,-4.92859585210681,5.650054081343114,2.3002723464742303,-0.32805115915834904,,,24.530234932899475,39.22758102416992,117.2285407781601,12.96975091099739,57.28948712348938,32.07660838961601,-0.24187202751636505,0.16268634796142578,6.204689979553223,-0.3161108160110474,-0.42295440166628984,6.439462959354943,0.07423878849468235,0.5856407496277156,-0.23477297980172018 +karman,karman_re400,136,137,54.400000000000006,-2.383085200563073,2.9468463035300374,1.3723921729251742,0.3616991452872753,-5.544746294617653,5.574109731242061,1.5066757332533598,-2.5313948281109333,,,8.377858996391296,54.83248829841614,107.52263367176056,14.229720830917358,62.519437074661255,36.4733099937439,-0.9054875373840332,0.7337236404418945,7.116855621337891,-1.1239019369135193,-1.4608055983114496,5.401611762709782,0.21841439952948605,2.1945292387533444,1.7152438586281082 +karman,karman_re400,137,138,54.800000000000004,-0.9579570032656193,4.601699532940984,0.6411864887923002,0.32441597431898117,-5.665672942996025,5.525177111849189,0.25040912441909313,-5.164854694157839,,,-4.563182592391968,62.59629726409912,103.19018959999084,8.316971361637115,65.33511877059937,29.828615486621857,-1.4864755868911743,0.9677858352661133,7.163269996643066,-1.7550487828194572,-3.1037281884071404,3.758689172614092,0.2685731959282829,4.071514023673254,3.4045808240289746 +karman,karman_re400,138,139,55.2,2.060031984001398,5.2651031874120235,-0.4211375489830971,1.217756886035204,-4.169332329183817,4.836981883272529,-0.22028409875929356,-4.609900526702404,,,-12.779563665390015,66.070157289505,103.25934290885925,4.6832375228405,67.84276366233826,20.78782096505165,-1.7657060623168945,0.8689241409301758,6.283315181732178,-2.0080652537912727,-3.7192922127365837,3.1431251482846485,0.24235919147437812,4.588216353666759,3.1401900334475292 +karman,karman_re400,139,140,55.6,4.096950404345989,5.340850679203868,-1.507915323600173,1.0811197571456432,-0.7785361958667636,4.1804532520473,0.12097600847482681,-0.53658417891711,,,-20.276832580566406,59.627991914749146,105.5967926979065,-8.628541976213455,73.70575666427612,21.874871104955673,-1.761622428894043,0.615234375,4.819914817810059,-2.0369546982930826,-3.272998460016631,3.5894189010046014,0.27533226939903965,3.888232835016631,1.2304959168054572 +karman,karman_re400,140,141,56.0,2.4340911768376827,5.0392578123137355,-1.6567400889471173,-0.8793890010565519,1.848867628723383,4.332708776928484,-0.9403339354321361,-0.03180024214088917,,,-21.225109696388245,38.15953731536865,103.37164103984833,-10.894056549295783,45.91594040393829,11.36257709003985,-1.5904144048690796,-0.5395760536193848,3.464695453643799,-1.921929762363754,-4.660960274552108,2.201457086469124,0.3315153574946743,4.121384220932724,1.263238367174675 +karman,karman_re400,141,142,56.400000000000006,0.3062165342271328,2.581106615252793,-0.5015752976760268,-0.6969340611249208,4.107148386538029,4.989751963876188,-2.349136513657868,-0.5911246407777071,,,-19.237202405929565,24.93138760328293,101.06802582740784,4.820716008543968,-37.225472927093506,-16.302402690052986,-0.9048214554786682,-3.3552918434143066,1.4688935279846191,-0.9844119528011694,-6.503366627213078,0.35905073380815455,0.07959049732250123,3.148074783798771,1.1098427941764646 +karman,karman_re400,142,143,56.800000000000004,-1.926960307173431,-0.2260760811623186,0.8844482072163373,-0.15806389274075627,5.063188262283802,5.655276938341558,-2.580451429821551,-0.09771459735929966,,,-16.125619411468506,39.251407980918884,102.06582546234131,2.306263893842697,-85.8808696269989,-21.122869104146957,-0.040229640901088715,-5.34986686706543,0.2359025478363037,0.08622348074406723,-6.805876061531364,0.056541299489868635,-0.12645312164515593,1.456009194465934,0.17936124834643508 +karman,karman_re400,143,144,57.2,-2.773757791146636,-2.311549207661301,1.5615799347870052,0.34940207842737436,5.443626083433628,5.938780959695578,-1.798134297132492,1.847357489168644,,,-7.450765371322632,57.517993450164795,100.74533820152283,1.839599758386612,-80.69575428962708,-25.048809498548508,0.6610097885131836,-6.107329845428467,-0.37775373458862305,0.8816050666264298,-5.782775964087554,1.0796413969336784,-0.2205952781132462,-0.324553881340913,-1.4573951315223015 +karman,karman_re400,144,145,57.6,-1.9184030825272202,-4.011330078355968,1.1212039971724153,0.32400491181761026,5.7326555252075195,5.872867070138454,-0.6477050483226776,4.437245428562164,,,1.8411874771118164,64.26171660423279,100.9194016456604,0.3379419445991516,-74.02520179748535,-24.780870974063873,1.2061551809310913,-6.204589366912842,-0.9882239699363708,1.5298869300591529,-4.2782655457693295,2.5841518152519027,-0.3237317491280616,-1.9263238211435123,-3.5723757851882736 +karman,karman_re400,145,146,58.0,0.9940871968865395,-4.822495160624385,0.018783146515488625,1.0316534899175167,4.530522041022778,5.029649473726749,-0.1936592161655426,4.143203608691692,,,10.212677717208862,65.41175842285156,102.26115584373474,-0.09629502892494202,-68.85138750076294,-19.64913234114647,1.3717739582061768,-5.817384719848633,-1.2378344535827637,1.8392583438400465,-3.6844726762112043,3.177944684810028,-0.46748438563386974,-2.1329120436374285,-4.415779138392791 +karman,karman_re400,146,147,58.400000000000006,3.545984858646989,-5.30666415579617,-1.34410266764462,0.857779523357749,1.201618928462267,4.063202301040292,-0.4595483187586069,0.2825222909450531,,,17.88182258605957,59.65753793716431,105.17057180404663,-1.4806035906076431,-64.19448852539062,-13.261006399989128,1.367691159248352,-5.056492805480957,-0.8880157470703125,2.0239162511137283,-4.0321976018269305,2.8302197591943017,-0.6562250918653763,-1.0242952036540265,-3.718235506264614 +karman,karman_re400,147,148,58.800000000000004,2.5082784704864025,-5.502292537130415,-1.7138522816821933,-0.919426092877984,-1.2004575692117214,4.115268820896745,0.417554983869195,-0.36534760147333145,,,28.870752453804016,34.79336202144623,112.76907622814178,-12.412705924361944,-50.091224908828735,-14.380055759102106,1.530912160873413,-3.895921230316162,0.09926128387451172,2.098527239964228,-2.885137877719547,3.977279483301685,-0.5676150790908148,-1.010783352596615,-3.8780181994271734 +karman,karman_re400,148,149,59.2,0.49737561494112015,-3.3604296622797847,-0.588765018619597,-0.6801544222980738,-3.62098659388721,5.224903114140034,2.329637296497822,1.0382879991084337,,,26.556450128555298,15.053491294384003,109.2391312122345,-5.72060476988554,12.106943875551224,3.612464852631092,0.861208975315094,-1.534376621246338,3.204362154006958,1.2816390871059884,-0.38455145486222175,6.4778659061590105,-0.4204301117908944,-1.1498251663841161,-3.2735037521520525 +karman,karman_re400,149,150,59.6,-1.5038098208606243,-0.27922639856114984,0.899751263204962,0.2956927055492997,-4.696240648627281,5.761864827945828,2.824542811140418,0.9528449736535549,,,20.460879802703857,28.149759769439697,106.23306035995483,3.9093397557735443,67.45455265045166,21.54499664902687,0.0033791661262512207,0.03181934356689453,5.720905780792236,0.1064945565041288,0.26267696325497303,7.125094324276205,-0.10311539037787758,-0.2308576196880785,-1.4041885434839685 +karman,karman_re400,150,151,60.0,-2.4394821375608444,2.127401385223493,1.4591262734029442,0.478770409245044,-5.219467915594578,6.081183906644583,2.024001907557249,-1.1714641004800797,,,10.57085394859314,48.68942201137543,103.35120558738708,3.916402906179428,77.2950291633606,26.37060359120369,-0.6531449556350708,0.6033287048339844,6.840093612670898,-0.8113726645943536,-0.7842558498465779,6.078161511174654,0.15822770895928284,1.3875845546805623,0.7619321014962441 +karman,karman_re400,151,152,60.400000000000006,-1.8783726263791323,4.252717946656048,0.9192529832944274,-0.03986665979027748,-5.708055570721626,5.889819469302893,0.7446822710335255,-4.218691028654575,,,1.4682352542877197,58.82558226585388,103.42069268226624,1.9447557628154755,76.7102837562561,25.984907895326614,-1.279382586479187,1.0682954788208008,7.281451225280762,-1.6219501952538458,-2.4573267696795806,4.405090591341652,0.34256760877465875,3.5256222485003814,2.87636063393911 +karman,karman_re400,152,153,60.800000000000004,0.49970950931310654,5.165416281670332,0.48558227717876434,1.4708740636706352,-5.275196395814419,5.333935841917992,-0.34493207931518555,-5.96506055444479,,,-6.157276034355164,63.059431314468384,104.61939871311188,1.204153150320053,80.06480932235718,21.369583159685135,-1.6860872507095337,0.8313170075416565,6.869892120361328,-1.9700455218786201,-3.8823045714389393,2.980112789582293,0.28395827116908645,4.713621578980596,3.889779330779035 +karman,karman_re400,153,154,61.2,3.222533268854022,5.111022153869271,-0.45859371311962605,2.30534584261477,-2.4830864276736975,4.278967855498195,0.06756302900612354,-2.3479603696614504,,,-10.998845100402832,70.67329287528992,105.83436489105225,-3.234744071960449,79.24774289131165,20.15959769487381,-1.6471291780471802,0.590703010559082,5.546701431274414,-1.9493000674858676,-3.3428509817316505,3.5195663792895817,0.3021708894386874,3.9335539922907325,2.0271350519848323 +karman,karman_re400,154,155,61.6,3.7292081397026777,5.333617446012795,-1.55587715562433,0.6174538284540176,0.2762664225883782,3.1950132688507438,0.3173028817400336,0.9108721860684454,,,-13.578391075134277,74.96809363365173,103.61472368240356,-11.914782598614693,68.86748671531677,23.253588005900383,-1.5047544240951538,0.5597772598266602,4.360933303833008,-2.0341960051152754,-3.0162457509483165,3.8461716100729157,0.5294415810201216,3.5760230107749766,0.5147616937600921 +karman,karman_re400,155,156,62.0,1.5224273083731532,3.9296800969168544,-1.5023458981886506,-1.482264488004148,2.9043075628578663,4.147409345023334,-1.6416726866737008,-0.37903781048953533,,,-12.874218821525574,67.67991781234741,96.85974419116974,9.672339167445898,-5.822740867733955,-7.700236234813929,-1.08560311794281,-1.8287373781204224,2.338024616241455,-1.4987463265677374,-5.578158319633858,1.284259041387374,0.41314320862492737,3.749420941513436,1.053765574854081 +karman,karman_re400,156,157,62.400000000000006,-0.7049468695186079,1.0890235134866089,0.37592314765788615,0.04689942579716444,4.414623137563467,5.007360712625086,-2.7505665784701705,-1.086510019376874,,,-15.850460529327393,61.574846506118774,98.13798666000366,6.892256438732147,-82.81590342521667,-16.936202347278595,-0.35207149386405945,-4.632295608520508,0.7254886627197266,-0.4153442392586899,-7.028349554551805,-0.16593219353057265,0.06327274539463046,2.396053946031297,0.8914208562502992 +karman,karman_re400,157,158,62.800000000000004,-2.311795484274626,-1.5012568765087053,1.6338594286935404,0.955923373112455,5.043892655521631,5.677057895809412,-2.3081512190401554,0.4275902174413204,,,-12.29962408542633,64.83713388442993,99.57935512065887,2.2976942360401154,-92.52092242240906,-20.778635889291763,0.39161771535873413,-5.9980926513671875,-0.09025955200195312,0.5725665126449564,-6.449766805395279,0.41265055562595343,-0.18094879728622226,0.4516741540280913,-0.5029101076279066 +karman,karman_re400,158,159,63.2,-2.3603634908795357,-3.2400398631580174,1.580123498570174,0.7998835062608123,5.417562555521727,5.641434341669083,-1.3110022991895676,2.7955579571425915,,,-4.65397834777832,67.72303581237793,100.87546110153198,-0.9074755012989044,-81.26335144042969,-22.469335049390793,0.9596328735351562,-6.261660099029541,-0.67779541015625,1.2357234490031461,-5.145713609527702,1.71670375149353,-0.2760905754679899,-1.1159464895018392,-2.39449916164978 +karman,karman_re400,159,160,63.6,-0.6481999298557639,-4.498390015214682,0.507701188325882,0.367202446796,5.206161644309759,5.4006020072847605,-0.2640404272824526,4.678080789744854,,,4.044368863105774,66.66821837425232,103.56437861919403,-2.762959897518158,-76.45955681800842,-20.15184909105301,1.328938603401184,-5.9539337158203125,-1.1345782279968262,1.7156474177278662,-3.776515942225863,3.0859014187953693,-0.38670881432668214,-2.1774177735944495,-4.220479646792196 +karman,karman_re400,160,161,64.0,2.5108850095421076,-5.030906992033124,-0.9639698546379805,0.5829453002661467,2.8539556078612804,4.368520807474852,-0.5482775159180164,1.7574005760252476,,,11.566564440727234,63.65852952003479,106.55702650547028,-2.3682914674282074,-67.9952621459961,-13.417267054319382,1.329626202583313,-5.442336082458496,-1.2020392417907715,1.9187448310434632,-4.148236029808009,2.7141813312132235,-0.5891186284601502,-1.2941000526504869,-3.916220573003995 +karman,karman_re400,161,162,64.4,3.4775715321302414,-5.4987643379718065,-1.6240871045738459,0.22939732298254967,0.31881601898930967,3.5865691024810076,-0.4247643519192934,-0.5307126848492771,,,17.882078886032104,45.94460725784302,108.60194563865662,-10.914442501962185,-58.96931290626526,-13.471233285963535,1.4214791059494019,-4.749961853027344,-0.7792959213256836,2.0971816150283678,-3.9867077635302044,2.875709597491028,-0.6757025090789659,-0.7632540894971394,-3.6550055188167114 +karman,karman_re400,162,163,64.8,1.629468402825296,-4.556634230539203,-1.1293466668576002,-0.6292249308899045,-2.51623778603971,4.328719573095441,1.2731349561363459,0.030032126232981682,,,15.916219353675842,21.694141626358032,103.91910970211029,-5.292453430593014,-4.71125990152359,2.0804421976208687,1.0587382316589355,-2.767601490020752,1.6366018056869507,1.7378612625214753,-1.7662259730439147,5.096191387977317,-0.6791230308625398,-1.0013755169768372,-3.4595895822903664 +karman,karman_re400,163,164,65.2,-0.30928978230804205,-1.7315286677330732,0.47457474283874035,0.6398597033694386,-4.277428612112999,4.9065095372498035,2.414845395833254,0.5522621795535088,,,16.908171772956848,27.13993489742279,105.6831568479538,1.974131166934967,62.68026828765869,17.121203243732452,0.3149734139442444,-0.7974259853363037,4.535414695739746,0.6603902012654289,-0.2731178544840338,6.589299506537198,-0.3454167873211845,-0.5243081308522699,-2.0538848107974523 +karman,karman_re400,164,165,65.60000000000001,-2.0084527786821127,1.1285550135653466,1.3830059033352882,0.7575590279884636,-5.106911528855562,5.606555729173124,2.026967820711434,-1.0529758874326944,,,11.951056122779846,48.359474539756775,105.38429915904999,2.9142990708351135,80.28503656387329,22.789596021175385,-0.3937113583087921,0.20125055313110352,6.278038024902344,-0.43042121475427925,-0.7803770826430192,6.082040278378213,0.03670985644548713,0.9816276357741227,0.1959977465241307 +karman,karman_re400,165,166,66.0,-2.043723128736019,3.2338416785933077,1.3383319019339979,0.6329406751319766,-5.749295931309462,5.538500612601638,1.2095386628061533,-3.330218605697155,,,2.66573429107666,63.77290487289429,103.55803966522217,1.8864013254642487,73.43318462371826,24.638595432043076,-0.9728901982307434,0.7862233519554138,7.071483135223389,-1.2333595145050082,-1.849396047153804,5.013021313867428,0.26046931627426484,2.635619399109218,2.0584618213559605 +karman,karman_re400,166,167,66.4,-0.22231170441955328,4.782806383445859,0.5967386532574892,0.9711656020954251,-5.784618202596903,5.381184862926602,0.08479482494294643,-5.61502855271101,,,-6.281164288520813,69.29710507392883,103.25673520565033,0.4842318594455719,71.53065204620361,21.001531928777695,-1.5237764120101929,0.9857974052429199,7.07699728012085,-1.824121384205864,-3.320315552855772,3.54210180816546,0.300344972195671,4.3061129580986925,3.5348954719553896 +karman,karman_re400,167,168,66.8,2.6946277357637882,5.496946629136801,-0.8141607977449894,1.0663061402738094,-3.8609588518738747,4.55677486024797,-0.04028179682791233,-3.9415224455296993,,,-12.700492143630981,67.02338457107544,103.22914719581604,0.9833533316850662,74.45175051689148,12.627611681818962,-1.771217942237854,1.095573902130127,6.12998104095459,-2.0964883564495405,-3.48388848073203,3.378528880289202,0.32527041421168645,4.5794623828621575,2.7514521606653877 +karman,karman_re400,168,169,67.2,4.32294188067317,5.8949540834873915,-1.9125735852867365,0.4977947100996971,-0.5742133362218738,4.145586164668202,0.09084655903279781,-0.39252021815627813,,,-21.753618121147156,46.3677853345871,107.29755461215973,-4.112784564495087,68.09616088867188,7.471156120300293,-1.9029957056045532,0.8514671921730042,4.846771717071533,-2.2482849901303674,-3.3124012052359664,3.550016155785266,0.3452892845258142,4.1638683974089705,1.2967555612862673 +karman,karman_re400,169,170,67.60000000000001,2.4369710590690374,5.273689515888691,-1.6040010377764702,-0.7710310164839029,2.1542024333029985,4.777180845849216,-1.5079524600878358,-0.861702486872673,,,-29.348909854888916,26.816651225090027,112.26413249969482,-12.513402476906776,-7.974106073379517,3.9781954139471054,-1.7367842197418213,-0.9655233025550842,3.296995162963867,-2.0113400059201303,-5.4032814428103215,1.4591359182109107,0.274555786178309,4.437758140255237,1.8378592447529565 +karman,karman_re400,170,171,68.0,0.2433384070172906,2.5759106501936913,-0.017330283299088478,0.20867784041911364,4.285603296011686,5.3339386358857155,-2.6931604370474815,-1.1007175780832767,,,-17.74457097053528,37.72558271884918,101.9518792629242,-5.383608490228653,-78.28003764152527,-13.92887458205223,-0.8208981156349182,-3.8012490272521973,1.3510513305664062,-0.9824302562372653,-6.953274848362582,-0.09085748734135013,0.1615321406023471,3.152025821110385,1.4419088179077564 +karman,karman_re400,171,172,68.4,-2.0258782897144556,-0.351927854353562,1.0878499306272715,0.14982157154008746,5.095141474157572,6.043058587238193,-2.6652973610907793,-0.23545324802398682,,,-8.873778581619263,58.01393389701843,98.16532731056213,-1.0683290660381317,-80.72660565376282,-24.724671989679337,0.11044815182685852,-5.52547550201416,0.15324091911315918,0.13422226896868616,-6.916836025108897,-0.054418664087664936,-0.023774117141827644,1.391360523094737,0.20765958320082412 +karman,karman_re400,172,173,68.8,-2.8550131246447563,-2.4543463659938425,1.5385897422675043,0.22216635989025235,5.4788244888186455,6.264054914936423,-1.6740274149924517,2.130769658833742,,,-1.9174635410308838,66.17727875709534,99.10406470298767,-3.5649269819259644,-68.17081570625305,-26.676854491233826,0.7825253009796143,-6.078378677368164,-0.4274168014526367,0.936066679586508,-5.620471244038185,1.2419461169830472,-0.15354137860689376,-0.45790743332997863,-1.669362918435684 +karman,karman_re400,173,174,69.2,-2.0729429088532925,-3.996152547188103,1.0508497944101691,0.028756679967045784,5.621845833957195,6.1206279788166285,-0.4144876729696989,4.7928704880177975,,,6.362631916999817,65.16960859298706,101.24443471431732,-6.076916307210922,-63.471078872680664,-25.91196671128273,1.2748684883117676,-5.993819713592529,-0.8881149291992188,1.5240983496853837,-3.9732681099736107,2.8891492510476215,-0.24922986137361614,-2.0205516036189186,-3.7772641802468403 +karman,karman_re400,174,175,69.60000000000001,0.8450682507827878,-4.672496346756816,0.025173882022500038,0.8954160148277879,4.441340453922749,5.074203945696354,-0.10688696056604385,4.227566532790661,,,14.376744627952576,59.39728617668152,104.54027950763702,-6.223991513252258,-57.71190524101257,-20.43500542640686,1.3868969678878784,-5.639919281005859,-1.1354403495788574,1.782050081149677,-3.570993500759538,3.2914238602616943,-0.39515311326179847,-2.0689257802463215,-4.426864209840552 +karman,karman_re400,175,176,70.0,3.5765713546425104,-5.130104371346533,-1.2410794151946902,1.09441252425313,1.411405042745173,3.922065021470189,-0.42506703175604343,0.5612709792330861,,,22.436240315437317,53.2708466053009,109.84203517436981,-11.879339441657066,-43.1808739900589,-18.87952722609043,1.4030301570892334,-4.967533111572266,-0.9498938918113708,1.9565778617697462,-3.987103602707865,2.8753137583133674,-0.5535477046805128,-0.9804295088644008,-3.8252076501247383 +karman,karman_re400,176,177,70.4,2.5750785134732723,-5.391398910433054,-1.850954256951809,-1.1268300004303455,-0.928020803257823,3.9477989776059985,0.45950536150485277,-0.009010080248117447,,,28.08384895324707,36.97654604911804,113.52893114089966,-18.44612220302224,-23.531007766723633,-16.355834808200598,1.5262346267700195,-3.7744181156158447,-0.020401954650878906,2.0562333606780125,-2.830275937908362,4.03214142311287,-0.529998733907993,-0.9441421777074828,-4.052543377763749 +karman,karman_re400,177,178,70.8,0.8359336643479764,-3.322234144434333,-0.778876943513751,-0.7218202226795256,-3.3167803194373846,4.98813996091485,2.380356192588806,1.4439320657402277,,,31.67179524898529,23.343591392040253,116.70352518558502,-5.89806652860716,15.457986295223236,6.042999855708331,0.9305480122566223,-1.5261685848236084,3.0154619216918945,1.2670716437898935,-0.31822220632005394,6.544195154701178,-0.33652363153327114,-1.2079463785035545,-3.5287332330092838 +karman,karman_re400,178,179,71.2,-1.2551989639177918,-0.4137086871196516,0.6534266794915311,0.051654395065270364,-4.5299106277525425,5.518579389899969,2.853814046829939,1.1777174659073353,,,29.71421182155609,31.11599087715149,117.95325577259064,9.07917469739914,52.487313747406006,27.6787206530571,0.1278526335954666,-0.03553199768066406,5.529978275299072,0.15778494935916365,0.3009573521598039,7.163374713181036,-0.029932315763697037,-0.33648934984046797,-1.6333964378819639 +karman,karman_re400,179,180,71.60000000000001,-2.344726584851742,1.9552275480236858,1.2694931647274643,0.19425974460318685,-5.103594623506069,5.853601498529315,2.1734184119850397,-0.7567577995359898,,,13.51827085018158,48.05351495742798,108.2001119852066,16.97496548295021,63.448721170425415,39.922984689474106,-0.6360697150230408,0.5863399505615234,6.8212761878967285,-0.7457070379605879,-0.5888516667446013,6.2735656942766305,0.10963732293754713,1.1751916173061248,0.547710493620098 +karman,karman_re400,180,181,72.0,-1.9753803499042988,4.098328412510455,0.7843066705390811,-0.4067670088261366,-5.607875529676676,5.586775252595544,1.030179439112544,-3.5475166514515877,,,0.7942914962768555,57.120281457901,103.34696769714355,9.132295101881027,68.8833236694336,33.011285215616226,-1.247590184211731,1.1604371070861816,7.292390823364258,-1.5630673494611926,-2.083958773151667,4.778458587869565,0.3154771652494617,3.2443958802378488,2.5139322354946927 +karman,karman_re400,181,182,72.4,0.371010071830824,5.094271851703525,0.43730693869292736,1.2456239492166787,-5.23034855723381,5.215307464823127,-0.23131142370402813,-5.692971404641867,,,-6.669166684150696,63.14500570297241,102.32768952846527,5.439718067646027,74.58741068840027,26.222465932369232,-1.6739232540130615,0.8633394241333008,6.892729759216309,-1.9429116457261655,-3.7337135474537755,3.1287038135674567,0.26898839171310396,4.597052971587076,3.764025945648852 +karman,karman_re400,182,183,72.8,3.1211001332849264,5.105402786284685,-0.3908132202923298,2.339473692700267,-2.532274229452014,4.379088990390301,-0.12115528807044029,-2.7745848055928946,,,-11.001461744308472,72.1753180027008,101.74779295921326,-2.6183687150478363,80.34433126449585,24.945078045129776,-1.670619010925293,0.4979862868785858,5.557626247406006,-1.9471568888256912,-3.5896533595944464,3.272764001426786,0.2765378779003982,4.087639646473033,2.28486224597922 +karman,karman_re400,183,184,73.2,3.7021643947809935,5.101640243083239,-1.3603148981928825,0.9815345983952284,0.39021915290504694,3.4105280647054315,0.23840402718633413,0.8670272072777152,,,-11.38942539691925,82.23313689231873,97.9977935552597,-12.408188730478287,70.07606029510498,25.55363103747368,-1.432365894317627,0.34180641174316406,4.260510444641113,-1.9457218870793291,-3.1194282359140124,3.74298912510722,0.5133559927617022,3.4612346476571765,0.5175213195338935 +karman,karman_re400,184,185,73.60000000000001,1.4331607380881906,3.7391772493720055,-1.4372491277754307,-1.4413375174626708,2.9942651744931936,4.151373170316219,-1.5317914076149464,-0.0693176407366991,,,-12.97195851802826,79.86226677894592,95.50224840641022,13.084167242050171,0.0840724678710103,-10.682643949985504,-1.007154941558838,-1.906830906867981,2.2608084678649902,-1.4260901723982045,-5.434457584197013,1.42795977682422,0.41893523083936657,3.5276266773290317,0.8328486910407702 +karman,karman_re400,185,186,74.0,-0.772703904658556,0.9795049263630062,0.23162734578363597,-0.30944921309128404,4.488215781748295,4.9250287702307105,-2.594266668893397,-0.7003175560384989,,,-16.74264669418335,67.8936779499054,98.47267866134644,8.224575594067574,-81.22531771659851,-17.56635718047619,-0.29919755458831787,-4.573884963989258,0.664379358291626,-0.3735747882870525,-6.823943379566482,0.03847398145475012,0.07437723369873461,2.2500584155772243,0.6259053768368759 +karman,karman_re400,186,187,74.4,-2.290597418323159,-1.542766607599333,1.3874605938326567,0.48432376934215426,5.1547931507229805,5.530802416615188,-2.2280385019257665,0.6987161468714476,,,-12.813010811805725,66.69901013374329,99.50800836086273,3.56404185295105,-94.90490555763245,-20.32819092273712,0.4204683005809784,-5.928781986236572,-0.18173789978027344,0.5883979685025728,-6.344996853081327,0.5174205079399048,-0.16792966792159436,0.41621486684475517,-0.6991584077201782 +karman,karman_re400,187,188,74.8,-2.108233980834484,-3.3025865559466183,1.3694168883375823,0.6305997958406806,5.551770329475403,5.491748685017228,-1.3081466313451529,2.935477066785097,,,-4.96402382850647,71.77574038505554,100.38321614265442,0.939517468214035,-82.52323865890503,-21.504811197519302,0.9790377616882324,-6.27052640914917,-0.8156743049621582,1.259578221845705,-5.1419790191323145,1.7204383418889178,-0.2805404601574726,-1.1285473900168554,-2.536112646851076 +karman,karman_re400,188,189,75.2,-0.24655534070916474,-4.507731180638075,0.5079605616629124,0.76936578261666,5.3128874860703945,5.27328229509294,-0.29095797799527645,4.730971530079842,,,3.315374255180359,74.44735169410706,102.28151381015778,-0.586458295583725,-77.06726789474487,-18.708375841379166,1.320953130722046,-6.026289939880371,-1.21458101272583,1.7192100582021268,-3.811718224786872,3.05069913623436,-0.3982569274800809,-2.214571715093499,-4.265280148960191 +karman,karman_re400,189,190,75.60000000000001,2.7521448209881783,-5.032462766394019,-0.979886157438159,0.7923725061118603,2.7802588883787394,4.287779680453241,-0.5231384420767426,1.733982004225254,,,10.185125470161438,73.75320196151733,103.85722815990448,0.41753165423870087,-74.51977729797363,-10.99158190190792,1.3257560729980469,-5.445034980773926,-1.1831121444702148,1.9193381900576458,-4.115359606907429,2.747057754113803,-0.593582117059599,-1.3296753738664968,-3.9301698985840177 +karman,karman_re400,190,191,76.0,3.534869756549597,-5.5242576636374,-1.7498321831226349,0.03520539030432701,0.011733483006537426,3.665492869913578,-0.30997488647699356,-0.6082162899474497,,,18.07687282562256,56.50613307952881,106.6354513168335,-2.568009588867426,-67.17914342880249,-4.551405366510153,1.4051936864852905,-4.6465349197387695,-0.6063218116760254,2.1069045510564886,-3.836588191335921,3.025829169685311,-0.701710864571198,-0.8099467284028483,-3.6321509813613364 +karman,karman_re400,191,192,76.4,1.5028599882498384,-4.5001726830378175,-1.1241178726777434,-0.7453757571056485,-2.7103303000330925,4.540772992186248,1.5575509751215577,0.4047716502100229,,,26.889526844024658,38.66392970085144,112.65350580215454,-8.125146850943565,13.954387605190277,1.1060025542974472,1.201551079750061,-2.541323184967041,1.7793875932693481,1.7163273119649345,-1.3942718836094365,5.468145477411795,-0.5147762322148735,-1.1470513013576045,-3.688757884142447 +karman,karman_re400,192,193,76.80000000000001,-0.505783420521766,-1.574337511556223,0.60720180044882,0.708620180375874,-4.377529956400394,5.133894854225218,2.6451185112819076,0.9127070661634207,,,20.59551477432251,48.42405021190643,107.80688524246216,-5.742416903376579,81.3174843788147,12.11629994213581,0.40399131178855896,-0.5986499786376953,4.674962997436523,0.6004388408292884,0.028029131833912757,6.890446492855145,-0.19644752904072948,-0.6266791104716081,-2.2154834954186216 +karman,karman_re400,193,194,77.2,-2.17955163680017,1.2249571009306237,1.4030501042725518,0.6265485717449337,-5.104687996208668,5.802495521493256,2.162035438232124,-0.78061711974442,,,9.52276885509491,65.79713225364685,102.09498703479767,-3.079715371131897,77.44303941726685,20.073112845420837,-0.35196369886398315,0.29966259002685547,6.335939407348633,-0.4671881450765538,-0.6037381124955439,6.258679248525688,0.11522444621257066,0.9034007025223993,0.0772601588229449 +karman,karman_re400,194,195,77.60000000000001,-2.272518817335367,3.292268142104149,1.2891804799437523,0.3058421425521374,-5.678845103830099,5.749101284891367,1.279627438634634,-3.119590226560831,,,0.9942471981048584,71.59508466720581,101.30488276481628,-4.43071722984314,65.29529094696045,22.129186987876892,-0.9336960911750793,0.8459587097167969,7.073475360870361,-1.255642867195707,-1.7577352226831005,5.104682138338132,0.3219467760206276,2.6036939323998975,1.9687932225322298 +karman,karman_re400,195,196,78.0,-0.6468319916166365,4.708029562607408,0.7024060469120741,0.7579801022075117,-5.707992240786552,5.5657862685620785,0.028003472834825516,-5.651985295116901,,,-6.420397758483887,69.51565742492676,102.31246948242188,-5.634543299674988,60.37784814834595,20.034965872764587,-1.4617228507995605,0.8958120346069336,7.036468029022217,-1.7956021452907238,-3.3945862487768315,3.4678311122444008,0.33387929449116327,4.290398283383765,3.568636916777816 +karman,karman_re400,196,197,78.4,2.2040694020688534,5.274033872410655,-0.25567389093339443,1.6927216202020645,-4.029483068734407,4.638137994334102,-0.18699676729738712,-4.403476603329182,,,-13.876906037330627,56.945109367370605,104.70422208309174,-5.378406122326851,59.2923641204834,13.506559655070305,-1.7328482866287231,0.8281460404396057,6.190195083618164,-2.011471340547783,-3.67575964692755,3.1866577140936823,0.27862305391905995,4.503905687367156,3.003537369524482 +karman,karman_re400,197,198,78.80000000000001,4.062236752361059,5.47173572704196,-1.3700495474040508,1.3221376575529575,-0.7377477013505995,3.833932336419821,0.25969836860895157,-0.2183509641326964,,,-25.416025519371033,29.80690598487854,112.38003075122833,-10.186810931190848,42.55637228488922,9.299620846286416,-1.8303329944610596,0.6509990692138672,4.883406639099121,-2.0868731343520097,-3.0915798840447444,3.770837476976488,0.25654013989095015,3.7425789532586116,1.1125691621226332 +karman,karman_re400,198,199,79.2,2.4414958897978067,5.045471712946892,-1.6677267849445343,-0.8939576800912619,1.8036391120404005,4.217033740133047,-1.0961038060486317,-0.38856850005686283,,,-26.802092790603638,14.650942385196686,112.34169602394104,-7.133288402110338,-13.43487799167633,-4.398671817034483,-1.634837031364441,-0.7512271404266357,3.383319616317749,-1.9242996908357706,-4.864673274239013,1.9977440867822196,0.28946265947132965,4.113446133812377,1.3855755295355294 +illusion,illusion_0.75L,2,3,0.4,1.7976047238335013,0.10264781303703785,1.1484662536531687,4.094537231139839,0.6286735879257321,3.2602964201942086,-0.4538447828963399,-0.27901597786694765,4.2830402962863445,-0.4196844238322228,-4.077780246734619,84.56646800041199,93.89910101890564,4.404076933860779,50.977301597595215,31.183913350105286,-1.8392200469970703,-1.3251702785491943,1.6840687990188599,1.1103951152140965,-0.8318944181220207,-0.8318944181220207,-2.949615162211167,-0.49327586042717364,2.5159632171408806 +illusion,illusion_0.75L,3,4,0.6000000000000001,1.8861029529944062,0.16069089178927243,1.1181487643625587,4.122400481719524,0.8044134010560811,3.3933939412236214,-0.48708170652389526,-0.16975001199170947,4.272976890206337,-0.1839892938733101,-8.201488852500916,86.75320148468018,92.83323585987091,3.0717626214027405,51.77527666091919,31.567879021167755,-1.8610540628433228,-1.4893643856048584,1.6472628116607666,1.3671869478360759,-1.0276263574185882,-1.0276263574185882,-3.2282410106793984,-0.4617380281862702,2.674889169079355 +illusion,illusion_0.75L,4,5,0.8,2.0636918488889933,0.24865282466635108,1.0930403950624168,4.249772639013827,0.9617903851903975,3.4939702600240707,-0.45822467654943466,0.04534103209152818,4.2630089446902275,0.06024527465342544,-11.621183156967163,88.39743733406067,92.58615374565125,1.0275974869728088,52.8231143951416,31.010745465755463,-1.8109891414642334,-1.6231112480163574,1.684124231338501,1.531418949546743,-1.1577671343617375,-1.1577671343617375,-3.3424080910109764,-0.4653441136546199,2.8418913657002385 +illusion,illusion_0.75L,5,6,1.0,2.2132322192192078,0.40663484833203256,1.0307036864105612,4.27463959204033,1.007769606076181,3.5523828119039536,-0.41164783760905266,0.18447393085807562,4.250259604305029,0.3025163896381855,-14.704090356826782,89.5355761051178,92.8550660610199,-1.3554111123085022,53.813910484313965,29.897575080394745,-1.8178428411483765,-1.6393661499023438,1.6995607614517212,1.337772089741671,-1.0298478830830728,-1.0298478830830728,-3.1556149308900476,-0.6095182668192709,2.729408644534794 +illusion,illusion_0.75L,6,7,1.2000000000000002,2.395238960161805,0.6173411820782349,0.9591262351023033,4.313491430366412,1.00070727057755,3.5786957014352083,-0.38456148467957973,0.23158430121839046,4.240692127496004,0.532164704054594,-17.640063166618347,90.0479257106781,93.41795742511749,-3.9032354950904846,54.246652126312256,28.388263285160065,-1.8307801485061646,-1.6425234079360962,1.7031728029251099,0.9383148776874475,-0.7547377320109163,-0.7547377320109163,-2.769095026193612,-0.8877856759251799,2.457910534936026 +illusion,illusion_0.75L,7,8,1.4000000000000001,2.6503491681069136,0.8511260593877523,0.8693594509168179,4.389068069940549,0.9573642746545374,3.5636750981211662,-0.3791279159486294,0.19910844275727868,4.244009964168072,0.7388596422970295,-20.505300164222717,89.76876735687256,94.22764480113983,-6.544820219278336,53.40266823768616,26.504939049482346,-1.8385695219039917,-1.6802536249160767,1.6755980253219604,0.42180114224933196,-0.3952373989987903,-0.3952373989987903,-2.2603706641533234,-1.2850162259172864,2.0708354243207507 +illusion,illusion_0.75L,8,9,1.6,2.838890766724944,1.08278714469634,0.7639207469765097,4.3667322606779635,0.9069018997251987,3.5371093545109034,-0.36942469887435436,0.16805250197649002,4.262932576239109,0.9131560800597072,-23.228687047958374,88.59350681304932,95.42532563209534,-9.224671125411987,50.383490324020386,24.260058999061584,-1.834902048110962,-1.6648986339569092,1.6518371105194092,-0.10553117189576167,-0.02752229532723227,-0.02752229532723227,-1.7293708762152002,-1.637376338629677,1.6793594058466415 +illusion,illusion_0.75L,9,10,1.8,3.0190064571797848,1.29532883875072,0.649053486995399,4.317113431170583,0.8601483423262835,3.50853952113539,-0.3272026078775525,0.20574312657117844,4.288993775844574,1.0470576817169785,-25.652924180030823,86.40586733818054,97.12167680263519,-11.766745150089264,44.350677728652954,21.71061486005783,-1.782739520072937,-1.6057378053665161,1.6501456499099731,-0.590283099121423,0.3105413375256527,0.3105413375256527,-1.192456420951514,-1.9162791428921688,1.3396043123843204 +illusion,illusion_0.75L,10,11,2.0,3.122299909591675,1.4838900824543089,0.5358656926546246,4.194031294900924,0.8843221585266292,3.4885398345068097,-0.2637159777805209,0.3568902029655874,4.309842362999916,1.1345053790137172,-27.605369687080383,83.27926397323608,99.40771758556366,-13.901840895414352,34.85560119152069,18.94099786877632,-1.646913766860962,-1.497220516204834,1.7068884372711182,-0.8848031894022688,0.5101406515088274,0.5101406515088274,-0.7621105774586932,-2.007361167713661,1.1967477857622908 +illusion,illusion_0.75L,11,12,2.2,3.1846421770751476,1.6549564898014069,0.437537906691432,4.059717990458012,0.8008952718228102,3.462717984803021,-0.18348416779190302,0.43392693623900414,4.32008970528841,1.171716838143766,-28.93272638320923,79.51617240905762,102.18368768692017,-15.313887712545693,22.09879159927368,15.973365190438926,-1.5462419986724854,-1.3141679763793945,1.7347739934921265,-1.3695080052601547,0.8522156096471951,0.8522156096471951,-0.17673399341233065,-2.1663835860265896,0.8825583838449313 +illusion,illusion_0.75L,12,13,2.4000000000000004,3.199318889528513,1.8086910713464022,0.34265383146703243,3.884626552462578,0.792086124420166,3.435007529333234,-0.10893773287534714,0.5742106586694717,4.323912318795919,1.1573332594707608,-29.53658103942871,75.60094594955444,105.1539421081543,-15.711857378482819,6.675231456756592,12.585215270519257,-1.3840023279190063,-1.1129295825958252,1.7967181205749512,-1.6685066565292475,1.0585273944252076,1.0585273944252076,0.2845043286102411,-2.171456977021033,0.7381907261497436 +illusion,illusion_0.75L,13,14,2.6,3.1504107173532248,1.9338479032739997,0.25539088528603315,3.661192487925291,0.8130324422381818,3.4090449335053563,-0.056786113418638706,0.6994602154009044,4.327163565903902,1.0923747904598713,-29.267895221710205,72.11808562278748,107.6417326927185,-14.915291219949722,-10.112693160772324,8.375846594572067,-1.218949794769287,-0.8964970707893372,1.852542519569397,-1.8538751295419666,1.1835215577680094,1.1835215577680094,0.6349253347726795,-2.0800186285573465,0.6690209618013876 +illusion,illusion_0.75L,14,15,2.8000000000000003,3.0731239821761847,2.03078385675326,0.19046751549467444,3.4540590131655335,0.8369989809580147,3.3947249175980687,-0.042749219574034214,0.7515005418099463,4.328709561377764,0.9800454135984182,-27.829840779304504,69.80757713317871,108.98520648479462,-12.781919911503792,-26.41013264656067,2.9357057064771652,-1.080613374710083,-0.6942176818847656,1.8843603134155273,-1.9814600037208299,1.2684992106964752,1.2684992106964752,0.9008466290107469,-1.9627168925812408,0.6158611027190521 +illusion,illusion_0.75L,15,16,3.0,2.9620903078466654,2.094696625135839,0.14910346362739801,3.2602972351014614,0.8879602537490427,3.390818485058844,-0.07355364505201578,0.7408529636450112,4.321355372667313,0.8254538988694549,-24.857577681541443,69.35197710990906,108.69297087192535,-9.35313981026411,-39.813873171806335,-3.8130583241581917,-0.9759493470191956,-0.518761396408081,1.9003267288208008,-1.9929941579124528,1.2708013137957241,1.2708013137957241,1.0170448108932573,-1.7895627102038052,0.6295254150250766 +illusion,illusion_0.75L,16,17,3.2,2.838564570993185,2.121560391969979,0.1580169191583991,3.1545984093099833,0.9398239781148732,3.4023241605609655,-0.15047448687255383,0.6388750043697655,4.301363602280617,0.6353163626044989,-20.251068472862244,71.15615606307983,106.75657093524933,-5.030522122979164,-48.066142201423645,-11.340292915701866,-0.9194991588592529,-0.3928608000278473,1.9103471040725708,-1.9349913459751649,1.2252486676017968,1.2252486676017968,1.015492187115912,-1.6181094676296441,0.685098436470774 +illusion,illusion_0.75L,17,18,3.4000000000000004,2.715574810281396,2.111322886776179,0.20946265431120992,3.1345001189038157,1.0144925909116864,3.4077480668202043,-0.26109640020877123,0.49229979049414396,4.27533034235239,0.4176800139248371,-14.376857876777649,74.75188970565796,103.60202491283417,-0.6387844681739807,-50.95161199569702,-18.681587278842926,-0.8864926099777222,-0.3279842138290405,1.9353972673416138,-1.7621386691672272,1.0983071527808335,1.0983071527808335,0.875646059189505,-1.426291366609874,0.8370901145607803 +illusion,illusion_0.75L,18,19,3.6,2.489108359441161,2.1148332743905485,0.31479011522606015,3.1186885898932815,1.0941486107185483,3.40526329819113,-0.3696432104334235,0.35486218985170126,4.255935084074736,0.181675044586882,-7.767367362976074,79.13557291030884,99.93813037872314,2.882292866706848,-50.7321298122406,-24.949973821640015,-0.8501306176185608,-0.19039571285247803,2.046015501022339,-1.6041014855296907,0.9809904116270822,0.9809904116270822,0.7539708679111299,-1.1713861244795603,1.0650250893952566 +illusion,illusion_0.75L,19,20,3.8000000000000003,2.527276985347271,1.9969811546616256,0.42296835454180837,3.3732136944308877,1.0932283475995064,3.403998096473515,-0.52960857283324,0.034011201933026314,4.25069872289896,-0.06273522740229964,-2.122059464454651,82.68330097198486,97.07954823970795,4.4944144785404205,-50.18881559371948,-28.76165434718132,-0.8653786182403564,-0.41220954060554504,1.9948220252990723,-1.3907321864427171,0.8345582708866588,0.8345582708866588,0.5253535682023607,-1.2467678114922038,1.1602637544124135 +illusion,illusion_0.75L,20,21,4.0,2.465859754011035,1.9095081952400506,0.566129048820585,3.598117851652205,1.1090206680819392,3.3822974655777216,-0.686784042045474,-0.2645474160090089,4.255966749042273,-0.3050520026590675,2.884611487388611,85.60276627540588,95.06612718105316,4.479096829891205,-50.30277967453003,-30.78227788209915,-0.8431166410446167,-0.5904022455215454,2.0280745029449463,-1.1983505817898648,0.700696884985754,0.700696884985754,0.35523394074524806,-1.2910991305072994,1.3273776179591923 +illusion,illusion_0.75L,21,22,4.2,2.4153748527169228,1.7909555463120341,0.7015358423814178,3.8184465374797583,1.1173515813425183,3.3802440157160163,-0.7827772060409188,-0.4482028307393193,4.2625246569514275,-0.5346263060346246,6.938019394874573,87.81089186668396,94.0685361623764,3.202292323112488,-51.03241801261902,-31.28923773765564,-0.8029396533966064,-0.7557735443115234,2.083799362182617,-0.9646027069199739,0.5392494884918906,0.5392494884918906,0.1616630535233674,-1.295023032803414,1.5445498736907266 +illusion,illusion_0.75L,22,23,4.4,2.3745845537632704,1.6630692989565432,0.7954874890856445,3.9655595319345593,1.0840686736628413,3.394132247194648,-0.8537492249161005,-0.6234297761693597,4.266215488314629,-0.7411434198729694,10.324549674987793,89.46138620376587,93.82647275924683,1.2297183275222778,-52.08945274353027,-30.878394842147827,-0.8098617196083069,-0.925324022769928,2.0826427936553955,-0.7997174721134086,0.4296826631944761,0.4296826631944761,-0.010144247494898284,-1.355006685964404,1.6529601304609194 +illusion,illusion_0.75L,23,24,4.6000000000000005,2.331237541511655,1.5362499980255961,0.8540827548131347,4.039403051137924,1.0131665039807558,3.4385474864393473,-0.8972857613116503,-0.7814050186425447,4.271505866199732,-0.915178214199841,13.389226794242859,90.58464169502258,94.02656853199005,-1.053832471370697,-53.16174626350403,-29.930506646633148,-0.8607308864593506,-1.0759741067886353,2.0311295986175537,-0.7144458183507356,0.37893928232911755,0.37893928232911755,-0.14628506810861497,-1.4549133891177528,1.6521903162884362 +illusion,illusion_0.75L,24,25,4.800000000000001,2.2914428263902664,1.413667545421049,0.8916892402339727,4.074821306858212,0.9409287595190108,3.5045663826167583,-0.9001800790429115,-0.8594313985668123,4.28431574255228,-1.04875722900033,16.3564532995224,91.09737277030945,94.46560442447662,-3.5118013620376587,-53.793227672576904,-28.581780195236206,-0.9110516905784607,-1.19587242603302,1.974959135055542,-0.6396704938885382,0.3355516293622085,0.3355516293622085,-0.27138119668992244,-1.5314240553952285,1.6394075056933335 +illusion,illusion_0.75L,25,26,5.0,2.266863826662302,1.2998594611417502,0.9127930097747594,4.092449846211821,0.8693505078554153,3.5856402246281505,-0.8738978067412972,-0.8784451056271791,4.302870947867632,-1.1358453193679452,19.278445839881897,90.86477756500244,95.13806998729706,-6.103380024433136,-53.26865911483765,-26.85067504644394,-0.955004096031189,-1.3090850114822388,1.9150652885437012,-0.5795609492904068,0.3021631379267107,0.3021631379267107,-0.37544314674078216,-1.6112481494089494,1.6129021506169905 +illusion,illusion_0.75L,26,27,5.2,2.249655779451132,1.2021217844448984,0.9148824610747397,4.079420701600611,0.8009108132682741,3.672895603813231,-0.8294986328110099,-0.8580864523537457,4.317605402320623,-1.172684133052826,22.082236409187317,89.72944021224976,96.1577981710434,-8.768049627542496,-50.64194202423096,-24.736111611127853,-0.9930206537246704,-1.4245723485946655,1.8523105382919312,-0.5423261502920949,0.2841380546895189,0.2841380546895189,-0.45069450343257556,-1.7087104032841844,1.5681724836024122 +illusion,illusion_0.75L,27,28,5.4,2.2402957547456026,1.1180146393598989,0.8970144408522174,4.034324636450037,0.7403123890981078,3.7661854876205325,-0.7699719863012433,-0.7996315835043788,4.3205698020756245,-1.1579367564991117,24.60140883922577,87.61972188949585,97.70078957080841,-11.343185603618622,-44.99073028564453,-22.293902933597565,-1.0237343311309814,-1.5506936311721802,1.7883107662200928,-0.5138006918066746,0.2712296074752769,0.2712296074752769,-0.5099336393243068,-1.821923238647457,1.5170811587448159 +illusion,illusion_0.75L,28,29,5.6000000000000005,2.24415585398674,1.0506106773391366,0.8585387840867043,3.9612334221601486,0.6851591751910746,3.849379252642393,-0.6975345313549042,-0.7099098875187337,4.313694778829813,-1.0926421964541078,26.649844646453857,84.5669150352478,99.84608888626099,-13.565642386674881,-35.733792185783386,-19.604244083166122,-1.0496209859848022,-1.6821142435073853,1.725074291229248,-0.5045437405738213,0.2709536098342513,0.2709536098342513,-0.5450772454109809,-1.9530678533416366,1.4541206813949967 +illusion,illusion_0.75L,29,30,5.800000000000001,2.236340893432498,1.0022686692536809,0.804683739261236,3.84570837195497,0.6283455295488238,3.9318633498623967,-0.6198863266035914,-0.611427123658359,4.306355491280556,-0.9800192201510072,28.063148260116577,80.86344003677368,102.54324078559875,-15.085996128618717,-22.88704514503479,-16.688226722180843,-1.088412880897522,-1.799839973449707,1.6574338674545288,-0.5335333834674922,0.2971269458304314,0.2971269458304314,-0.5548794974300297,-2.0969669192801383,1.3603069216240975 +illusion,illusion_0.75L,30,31,6.0,2.24441010504961,0.971088775258977,0.7489434137823991,3.7422969326144084,0.5750372656621039,3.995646722614765,-0.5347346886992455,-0.494432111736387,4.304846283048391,-0.825186783913523,28.69901955127716,77.00660228729248,105.43923079967499,-15.569609496742487,-7.119150459766388,-13.36299767717719,-1.1317323446273804,-1.8952412605285645,1.599747896194458,-0.5866345807657634,0.33947263461198784,0.33947263461198784,-0.545097763861617,-2.234713895140552,1.2602752615824702 +illusion,illusion_0.75L,31,32,6.2,2.2483773063868284,0.9548003581585363,0.6994534487603232,3.647284203907475,0.5384355317801237,4.04667214024812,-0.4455678863450885,-0.35270024091005325,4.305643495172262,-0.6348655442707241,28.373607993125916,73.7022340297699,107.86983072757721,-14.748246781527996,10.114030539989471,-9.219749458134174,-1.1876899003982544,-1.9354573488235474,1.5568912029266357,-0.6324461027029376,0.3749699645146084,0.3749699645146084,-0.5552437976953168,-2.3104273133381557,1.1819212384120275 +illusion,illusion_0.75L,32,33,6.4,2.2597822826355696,0.9548960952088237,0.6502589676529169,3.5603002179414034,0.4998036311008036,4.081498482264578,-0.35060138907283545,-0.20139914704486728,4.300057888031006,-0.41710209916345775,26.75308585166931,71.67710661888123,109.0705931186676,-12.430500984191895,26.9100159406662,-3.728453814983368,-1.2882535457611084,-1.8808696269989014,1.506596565246582,-0.7123762538037219,0.43412247246419533,0.43412247246419533,-0.5758772919573865,-2.3149920994630966,1.0724740927823868 +illusion,illusion_0.75L,33,34,6.6000000000000005,2.2770764771848917,0.9696640627225861,0.6084892811486498,3.494055039482191,0.4910602583549917,4.1002476355060935,-0.2589580835774541,-0.026855908799916506,4.284902475774288,-0.18102116882801056,23.492151498794556,71.69463634490967,108.4892213344574,-8.662233874201775,40.32692313194275,3.145381435751915,-1.425276279449463,-1.7246795892715454,1.4555292129516602,-0.757402114440773,0.4660085188829186,0.4660085188829186,-0.6678741650086899,-2.190688108154464,0.9895206940687415 +illusion,illusion_0.75L,34,35,6.800000000000001,2.314059529453516,0.9982841584132984,0.5807625566376373,3.4755846427287906,0.5034483037889004,4.087609238922596,-0.17858855426311493,0.14627119526267052,4.267012234777212,0.06342367123579606,18.48262846469879,74.07264709472656,106.10338151454926,-3.836340084671974,48.20649325847626,10.920105502009392,-1.5992802381515503,-1.4825215339660645,1.399761438369751,-0.7841046716070406,0.48298084862990287,0.48298084862990287,-0.8151755665445097,-1.9655023825959672,0.9167805897398481 +illusion,illusion_0.75L,35,36,7.0,2.3382536601275206,1.0458244214532897,0.5741510103689507,3.486555680865422,0.5632483516819775,4.0392212104052305,-0.11245883069932461,0.3383306902833283,4.256516695022583,0.30574665288440883,12.200555205345154,78.24046611785889,102.46451199054718,1.0729022324085236,50.60961842536926,18.492718786001205,-1.7630198001861572,-1.1796939373016357,1.3813574314117432,-0.747485152172775,0.45123832756667415,0.45123832756667415,-1.0155346480133822,-1.63093226486831,0.930119103845069 +illusion,illusion_0.75L,36,37,7.2,2.4122237227857113,1.1167974735144526,0.5636015848722309,3.539426892530173,0.6545909564010799,3.948945552110672,-0.058887992054224014,0.5368149722926319,4.256634972989559,0.5353140295483172,5.559229850769043,82.915598154068,98.49357604980469,4.945545643568039,50.206005573272705,24.679983407258987,-1.8840481042861938,-0.902199923992157,1.3945999145507812,-0.6885486846409259,0.4006914580148513,0.4006914580148513,-1.195499419645268,-1.3028913820070083,0.99390845653593 +illusion,illusion_0.75L,37,38,7.4,2.514695515856147,1.1957898386754096,0.577888626139611,3.670472768135369,0.7809273083694279,3.845462459139526,-0.04414294380694628,0.6926414207555354,4.261587280780077,0.7418270106427372,-0.4691094160079956,87.15416193008423,95.16368210315704,7.004128396511078,49.48819875717163,28.72364968061447,-1.929385781288147,-0.7499268054962158,1.457287073135376,-0.5720159918486396,0.3067312896072907,0.3067312896072907,-1.3573697894395074,-1.0566580951035065,1.1505557835280853 +illusion,illusion_0.75L,38,39,7.6000000000000005,2.6868421118706465,1.29544353694655,0.5851940659340471,3.8572302437387407,0.9334965143352747,3.7183158565312624,-0.062605831772089,0.8082848507910967,4.264732822775841,0.9158758912235498,-5.441915988922119,90.76694250106812,92.92839169502258,7.268638163805008,49.21993613243103,30.690845102071762,-1.9056591987609863,-0.732781171798706,1.5463852882385254,-0.4390658407743444,0.1986037685673907,0.1986037685673907,-1.466593357986642,-0.9313849403660968,1.3477815196711347 +illusion,illusion_0.75L,39,40,7.800000000000001,2.8037484735250473,1.4135436504147947,0.5789041169919074,3.961556707508862,1.084637362509966,3.5866169491782784,-0.10454107541590929,0.8755552116781473,4.267173353582621,1.0495007736608386,-9.386923909187317,93.82051229476929,91.74269139766693,6.217174977064133,49.32290017604828,31.10629692673683,-1.8631060123443604,-0.7456996440887451,1.6508046388626099,-0.3427588232226646,0.11579879875755772,0.11579879875755772,-1.5203471891216958,-0.8614984428463028,1.5350058401050521 +illusion,illusion_0.75L,40,41,8.0,2.9745481442660093,1.5440135030075908,0.5472550401464105,4.06905822455883,1.2094434350728989,3.46518331207335,-0.16304198652505875,0.8833594620227814,4.276519641280174,1.1366773396730423,-12.663862109184265,96.39105796813965,91.24596416950226,4.396839439868927,49.6359258890152,30.541206896305084,-1.8150256872177124,-0.8152817487716675,1.7287604808807373,-0.32341437529675776,0.08875241185912275,0.08875241185912275,-1.4916113119209546,-0.9040341606307902,1.6400080690216146 +illusion,illusion_0.75L,41,42,8.200000000000001,3.1341102439910173,1.6629567835479975,0.49661961384117603,4.127349471673369,1.3178327353671193,3.3560023875907063,-0.2431561006233096,0.8315205341205001,4.2969645000994205,1.1736537562683225,-15.590792894363403,98.49074482917786,91.11984372138977,2.121187746524811,49.97435510158539,29.33160811662674,-1.7745051383972168,-0.9180517196655273,1.778951644897461,-0.31690774927770793,0.07233268254357039,0.07233268254357039,-1.4575973891195089,-0.9903844022090977,1.7066189623538905 +illusion,illusion_0.75L,42,43,8.4,3.298019990324974,1.7660619341768324,0.45931845670565963,4.216656903736293,1.386496121995151,3.270501969382167,-0.3229011781513691,0.7406937656924129,4.322068765759468,1.1590953217819333,-18.396195769309998,100.08933544158936,91.18579924106598,-0.5473807454109192,50.05009174346924,27.56403535604477,-1.7243483066558838,-1.025876760482788,1.8350776433944702,-0.3634849880568294,0.09674911982647316,0.09674911982647316,-1.3608633185990544,-1.1226258803092612,1.738328523567997 +illusion,illusion_0.75L,43,44,8.6,3.410843899473548,1.856475428212434,0.42055820813402534,4.251960315741599,1.4215890550985932,3.214947762899101,-0.37993083242326975,0.6617273902520537,4.3388912454247475,1.0940383654087782,-21.100246906280518,101.02390050888062,91.41956567764282,-3.574148565530777,49.396610260009766,25.251009315252304,-1.6658172607421875,-1.07241690158844,1.9091912508010864,-0.4561855503768224,0.15654278460577498,0.15654278460577498,-1.209631710365365,-1.228959686194215,1.7526484661953114 +illusion,illusion_0.75L,44,45,8.8,3.485238179564476,1.931704638991505,0.3825683961622417,4.250374971888959,1.440118532627821,3.1983056105673313,-0.41569978930056095,0.6087189540266991,4.3393815867602825,0.9816939709708095,-23.61922264099121,101.08758211135864,91.93676710128784,-6.892585009336472,47.37027883529663,22.437608987092972,-1.5820515155792236,-1.0787321329116821,2.001539468765259,-0.5553455706109092,0.22259887200603634,0.22259887200603634,-1.0267059449683145,-1.3013310049177185,1.7789405967592224 +illusion,illusion_0.75L,45,46,9.0,3.4678070805966854,1.9961885991506279,0.3534507122822106,4.174708505161107,1.4161873841658235,3.2065429259091616,-0.43180445209145546,0.5525784799829125,4.326771479099989,0.8271691622212529,-25.7572203874588,100.0794529914856,92.95420348644257,-10.265882685780525,43.23057532310486,19.305739924311638,-1.4935128688812256,-1.0102293491363525,2.1060032844543457,-0.7225379239562413,0.34005867909924614,0.34005867909924614,-0.7709749449249843,-1.3502880282355987,1.7659446053550996 +illusion,illusion_0.75L,46,47,9.200000000000001,3.460327163338661,2.0581434364430606,0.3101393231190741,4.080605809576809,1.386600430123508,3.2451108563691378,-0.43338234536349773,0.5198357393965125,4.31040208786726,0.6371686467900872,-27.29620635509491,97.8413999080658,94.7042852640152,-13.355351611971855,36.20994985103607,16.104118898510933,-1.37204909324646,-0.936836838722229,2.196639060974121,-0.8967869402796977,0.4629883449198595,0.4629883449198595,-0.4752621529667622,-1.3998251836420885,1.7336507160542616 +illusion,illusion_0.75L,47,48,9.4,3.400273621082306,2.1051352377980947,0.28739566914737225,3.9750649593770504,1.3357235584408045,3.2987301237881184,-0.45288121327757835,0.4299611318856478,4.295442719012499,0.419720628997311,-28.020000457763672,94.37094330787659,97.28032350540161,-15.657641552388668,25.87355375289917,13.14621064811945,-1.238985300064087,-0.8784232139587402,2.263345718383789,-1.0876572922864205,0.5996803596170732,0.5996803596170732,-0.15132800777766642,-1.4781035735758135,1.6636653587667158 +illusion,illusion_0.75L,48,49,9.600000000000001,3.2836957834661007,2.134115493390709,0.2631176612339914,3.8099311059340835,1.2926631607115269,3.3729070564731956,-0.4756517009809613,0.3413597587496042,4.279371351003647,0.18392973288428038,-27.885115146636963,89.98827934265137,100.52294731140137,-16.77680630236864,12.418289482593536,10.553520731627941,-1.0963579416275024,-0.812114953994751,2.301168441772461,-1.2294906258411258,0.7018338249043774,0.7018338249043774,0.13313268421362334,-1.5139487788991284,1.5993346168680835 +illusion,illusion_0.75L,49,50,9.8,3.149974625557661,2.1441877470351756,0.26116002118214965,3.6722946679219604,1.2406569439917803,3.454281366430223,-0.5227677756920457,0.1951213926076889,4.258827771991491,-0.06027074050507508,-27.01863944530487,85.13824939727783,103.92895042896271,-16.64557233452797,-3.467903658747673,8.002761751413345,-0.9562127590179443,-0.7806117534637451,2.3021225929260254,-1.3552551019389347,0.7939382183628181,0.7939382183628181,0.3990423429209904,-1.5745499718265632,1.5081843745632073 +illusion,illusion_0.75L,50,51,10.0,2.995448186993599,2.1225102827884257,0.27457968099042773,3.5446075489744544,1.180285937152803,3.5405332455411553,-0.5891503533348441,0.0019852304831147194,4.238117020577192,-0.3024140023626387,-25.526291131973267,80.64190149307251,106.67770504951477,-15.407925471663475,-19.823123514652252,4.884535446763039,-0.8487735390663147,-0.772885799407959,2.258606195449829,-1.440294458573061,0.85899652717861,0.85899652717861,0.5915209195067463,-1.631882326586569,1.3996096682712191 +illusion,illusion_0.75L,51,52,10.200000000000001,2.822192618623376,2.0750848343595862,0.3165822708979249,3.4553571604192257,1.1092902859672904,3.627171739935875,-0.6691217422485352,-0.2289531985297799,4.228517413139343,-0.5318826879374683,-23.261433839797974,77.61588096618652,108.08239579200745,-13.270338624715805,-33.669620752334595,0.6603337824344635,-0.7923530340194702,-0.7695646286010742,2.194969892501831,-1.5002369402608502,0.9079907890394407,0.9079907890394407,0.70788390624138,-1.677555417640515,1.2869791034623903 +illusion,illusion_0.75L,52,53,10.4,2.6635609101504087,1.991010271012783,0.3823409788310528,3.4282428678125143,1.0243707802146673,3.706465126015246,-0.7555949268862605,-0.4868190735578537,4.238160792738199,-0.7383906049653888,-19.87261474132538,77.03807950019836,107.83572494983673,-10.324656777083874,-42.153143882751465,-4.738509841263294,-0.8122745156288147,-0.7893370389938354,2.105029582977295,-1.5219816913901703,0.9322876314812949,0.9322876314812949,0.7097071757613556,-1.7216246704751303,1.172741951496 +illusion,illusion_0.75L,53,54,10.600000000000001,2.521792659536004,1.8854659283533692,0.46710402239114046,3.456000704318285,0.9562451159581542,3.7641151575371623,-0.8315049344673753,-0.7067647529765964,4.263404291123152,-0.9125358774326742,-15.245965123176575,78.87864112854004,106.06560409069061,-6.892450153827667,-44.66922879219055,-10.733701288700104,-0.8779053688049316,-0.8115927577018738,2.0272862911224365,-1.4698388903129245,0.9039896953216227,0.9039896953216227,0.5919335215079928,-1.7155824530234964,1.1232965958008139 +illusion,illusion_0.75L,54,55,10.8,2.4135808926075697,1.7560348496772349,0.560743676032871,3.5350682446733117,0.9099565213546157,3.801448503509164,-0.8873308543115854,-0.8647051872685552,4.291406832635403,-1.0463605867698789,-9.608706831932068,81.89956545829773,103.24162542819977,-3.4941941499710083,-43.84733438491821,-16.570846736431122,-0.956396222114563,-0.8560289144515991,1.956823706626892,-1.3289820060136812,0.8123586273082821,0.8123586273082821,0.37258578389911823,-1.6683875417598812,1.14446507931861 +illusion,illusion_0.75L,55,56,11.0,2.3462483659386635,1.6161675157491118,0.646431784844026,3.6391119356267154,0.8850465528666973,3.816438838839531,-0.9223907254636288,-0.9597348980605602,4.311332944780588,-1.133836805820465,-3.6567389965057373,84.6244215965271,100.11301636695862,-0.879146158695221,-42.93055236339569,-21.398064494132996,-1.0189554691314697,-0.9369992017745972,1.884979009628296,-1.1249261963442427,0.6749677794923106,0.6749677794923106,0.10597072721277301,-1.6119669812669077,1.2100112301359853 +illusion,illusion_0.75L,56,57,11.200000000000001,2.321917098015547,1.47799207479693,0.7197250088211149,3.7613671156577766,0.8621781598776579,3.816445590928197,-0.9388888720422983,-1.0155995842069387,4.322164226323366,-1.1712028644979,1.9450753927230835,86.52198910713196,97.43435084819794,0.4993058741092682,-43.294692039489746,-24.765827506780624,-1.0677423477172852,-1.0619618892669678,1.803217887878418,-0.9197459877336807,0.5365796304050405,0.5365796304050405,-0.1479963599836045,-1.5985415196720083,1.2666382574733774 +illusion,illusion_0.75L,57,58,11.4,2.317724982276559,1.3542340020649135,0.7633539498783648,3.8444328820332885,0.8463069098070264,3.8136596558615565,-0.9302395628765225,-1.0141722159460187,4.329250659793615,-1.1571090435609221,6.769487261772156,87.69595623016357,95.6555038690567,0.5822360515594482,-44.72307562828064,-26.639312505722046,-1.111701250076294,-1.2030612230300903,1.7137165069580078,-0.7264550537496812,0.4055850458465129,0.4055850458465129,-0.3852461963266127,-1.6086462688766032,1.308131461111495 +illusion,illusion_0.75L,58,59,11.600000000000001,2.318423939868808,1.2455429678084329,0.785194497439079,3.8888129347469658,0.8282610797323287,3.8086941931396723,-0.8967255707830191,-0.9651900618337095,4.334629978984594,-1.0925711831077933,10.736149549484253,88.34919929504395,94.88175511360168,-0.33286213874816895,-46.66056036949158,-27.311617136001587,-1.1577075719833374,-1.3462328910827637,1.6238939762115479,-0.5651750399322819,0.29681407131515836,0.29681407131515836,-0.5925325320510555,-1.643046962397922,1.3270799048963895 +illusion,illusion_0.75L,59,60,11.8,2.3764625657349825,1.158580169430934,0.7959094509715214,3.9682814676780254,0.799493573140353,3.8097454234957695,-0.8444013074040413,-0.8893090416677296,4.332989454269409,-0.980776734650135,14.081981778144836,88.54917287826538,94.96321380138397,-1.850159466266632,-48.683878779411316,-27.17762440443039,-1.1953370571136475,-1.5169320106506348,1.5321805477142334,-0.4657187358233372,0.23168337476881762,0.23168337476881762,-0.7296183212903102,-1.7486153854194524,1.3004971729454158 +illusion,illusion_0.75L,60,61,12.0,2.4038974661380053,1.0899006156250834,0.7861587218940258,3.976214909926057,0.7640822441317141,3.8179222028702497,-0.7817971054464579,-0.7995119667612016,4.318186081945896,-0.8268061792477965,17.111966013908386,88.20062279701233,95.66884338855743,-3.6532513797283173,-50.35340189933777,-26.520884782075882,-1.246069312095642,-1.6713018417358398,1.4308594465255737,-0.413374805798139,0.1996401588044232,0.1996401588044232,-0.8326945062975031,-1.870942000540263,1.2312192877211505 +illusion,illusion_0.75L,61,62,12.200000000000001,2.4436404928565025,1.0430271504446864,0.7721860893070698,3.988012671470642,0.7306783809326589,3.829628578387201,-0.6989977555349469,-0.6673171301372349,4.292580299079418,-0.6373370415531099,20.066586136817932,87.08811402320862,96.8148797750473,-5.566956102848053,-51.0445237159729,-25.45478492975235,-1.273949146270752,-1.810573697090149,1.3493232727050781,-0.3967175700702459,0.19188380813103856,0.19188380813103856,-0.8772315762005061,-2.0024575052211873,1.1574394645740396 +illusion,illusion_0.75L,62,63,12.4,2.474029315635562,1.0119336657226086,0.759343383833766,3.992716083303094,0.6941436440683901,3.841167548671365,-0.5996834952384233,-0.5052233464084566,4.267786629498005,-0.42037077946588397,23.038089275360107,85.0251317024231,98.3788251876831,-7.481005042791367,-49.829837679862976,-23.9592082798481,-1.2821882963180542,-1.9265501499176025,1.2908833026885986,-0.41534777861526284,0.20870669786458063,0.20870669786458063,-0.8668405177027914,-2.135256847782183,1.082176604824018 +illusion,illusion_0.75L,63,64,12.600000000000001,2.4904562160372734,1.0013561259256676,0.7353059918386862,3.9610681997146457,0.6545704673044384,3.8481163792312145,-0.484672375023365,-0.3147742827422917,4.25508338958025,-0.18498743884265423,25.97966492176056,81.97222352027893,100.44192969799042,-9.23841968178749,-45.48646807670593,-21.92358300089836,-1.277262568473816,-2.0065319538116455,1.2535803318023682,-0.47772533513235294,0.2559085639293204,0.2559085639293204,-0.799537233341463,-2.262440517740966,0.9976717678730478 +illusion,illusion_0.75L,64,65,12.8,2.502082847058773,1.0096774058183655,0.7272408256540075,3.956564498366788,0.6175418966449797,3.852492547594011,-0.35722937900573015,-0.09691686136648059,4.255630075931549,0.05890043030376546,28.673750162124634,78.216552734375,103.03435921669006,-10.508640855550766,-36.86521649360657,-19.17966678738594,-1.2428189516067505,-2.052631378173828,1.2696574926376343,-0.5693702341056244,0.3229295116383005,0.3229295116383005,-0.6734487175011261,-2.3755608898121285,0.9467279809993338 +illusion,illusion_0.75L,65,66,13.0,2.5008523371070623,1.0327502677682787,0.7255695236381143,3.951991384383291,0.6125965155661106,3.8588475435972214,-0.2304455265402794,0.15170546248555183,4.261116497218609,0.3008419007528573,30.7032972574234,74.44795966148376,105.9681385755539,-10.721145384013653,-23.599936068058014,-15.446712262928486,-1.190186619758606,-2.0620267391204834,1.332674264907837,-0.621724923592964,0.35942993371115517,0.35942993371115517,-0.5684616961656419,-2.4214566728316385,0.9732443311966817 +illusion,illusion_0.75L,66,67,13.200000000000001,2.466633217409253,1.079532696167007,0.722599885193631,3.9118329877965152,0.5333382287062705,3.8708983920514584,-0.10390114039182663,0.3255359479226172,4.263867158442736,0.530229473952204,31.446141004562378,71.53192162513733,108.64555239677429,-9.228951623663306,-6.703769415616989,-10.350835928693414,-1.2260127067565918,-1.9464786052703857,1.3778005838394165,-0.8708060588704409,0.5392282116048943,0.5392282116048943,-0.35520664788615086,-2.48570681687528,0.8385723722345222 +illusion,illusion_0.75L,67,68,13.4,2.4363924749195576,1.141778426244855,0.7121916860342026,3.8607758469879627,0.5133289378136396,3.8890811847522855,0.015201861970126629,0.5437326617538929,4.2649442330002785,0.7367802900262177,30.347877740859985,70.21126747131348,110.29481291770935,-5.772559531033039,11.609411984682083,-3.7261856719851494,-1.275559902191162,-1.7330348491668701,1.4473987817764282,-1.0258134054036685,0.6478874046957875,0.6478874046957875,-0.2497464967874936,-2.3809222538626575,0.7995113770806407 +illusion,illusion_0.75L,68,69,13.600000000000001,2.4013726506382227,1.2081835011485964,0.6945921049918979,3.7905568606220186,0.5251518450677395,3.8992312038317323,0.11278258170932531,0.7507170084863901,4.271372687071562,0.9110886021517217,27.350637316703796,70.77536582946777,110.36863625049591,-1.0195464827120304,28.616225719451904,3.9611405692994595,-1.3662933111190796,-1.4332166910171509,1.5112056732177734,-1.122700887538432,0.7131222833915114,0.7131222833915114,-0.2435924235806477,-2.1463389744086623,0.798083389826262 +illusion,illusion_0.75L,69,70,13.8,2.378839300945401,1.2824996665585786,0.6814747757744044,3.74178885249421,0.5723975482396781,3.9000558899715543,0.17986714374274015,0.9321318357251585,4.286208655685186,1.0451863054186106,22.983691096305847,73.11360239982605,108.96269381046295,3.6877095699310303,41.74753427505493,11.613088846206665,-1.4659708738327026,-1.1020328998565674,1.5824627876281738,-1.1609086967206101,0.7341524863090718,0.7341524863090718,-0.3050621771120925,-1.8361853861656392,0.848310301319102 +illusion,illusion_0.75L,70,71,14.0,2.3665963672101498,1.3614556519314647,0.674384762533009,3.715365892276168,0.6630580755881965,3.8856406463310122,0.21501875016838312,1.0930955759249628,4.303319379687309,1.1330286506563425,17.94060468673706,76.891428232193,106.68413639068604,7.097199186682701,49.2444634437561,18.07659901678562,-1.5422570705413818,-0.7936801910400391,1.674680471420288,-1.1179620323777388,0.6946619896248827,0.6946619896248827,-0.424295038163643,-1.4883421806649217,0.9800184817954054 +illusion,illusion_0.75L,71,72,14.200000000000001,2.399848308414221,1.445082831196487,0.6629341514781117,3.7257166113704443,0.798273307736963,3.8538671797141433,0.21508859936147928,1.2284505064599216,4.313130863010883,1.170832198113203,12.837418913841248,81.52014017105103,104.2686015367508,8.581739664077759,50.8342981338501,22.539931535720825,-1.5715092420578003,-0.5733182430267334,1.779992699623108,-0.9915649270202536,0.5929483278416787,0.5929483278416787,-0.5799443150375467,-1.1662665708684121,1.1870443717814292 +illusion,illusion_0.75L,72,73,14.4,2.4430612102150917,1.5383913705591112,0.6516436988022178,3.7463486078195274,0.9545214707031846,3.802579711191356,0.18016679678112268,1.31485506426543,4.312781151384115,1.1572209186851978,8.101701736450195,86.10953688621521,102.2473692893982,8.176899701356888,48.72466027736664,24.864336103200912,-1.5532236099243164,-0.4332517385482788,1.9054276943206787,-0.8394295021881699,0.4712394685625494,0.4712394685625494,-0.7137941077361465,-0.9044912071108282,1.4341882257581293 +illusion,illusion_0.75L,73,74,14.600000000000001,2.524780109524727,1.6411742544732988,0.641292950604111,3.807366010732949,1.107985619455576,3.74115991871804,0.11090945918112993,1.3298045378178358,4.30886959657073,1.0931824799627066,3.9647340774536133,89.86163139343262,100.88632106781006,6.420007348060608,46.1014449596405,25.48830211162567,-1.4900718927383423,-0.38969171047210693,2.039278984069824,-0.7103475318573982,0.3656697830431872,0.3656697830431872,-0.7797243608809441,-0.7553614935152941,1.673609201026637 +illusion,illusion_0.75L,74,75,14.8,2.612865064293146,1.7521957051940262,0.621196290012449,3.855257644318044,1.236181822605431,3.67539853323251,0.0029992079362273216,1.2421802384778857,4.309443756937981,0.9818746475502849,0.3551661968231201,92.54305362701416,100.1222550868988,3.939872980117798,44.4758415222168,25.063839554786682,-1.4183024168014526,-0.4159494936466217,2.1531131267547607,-0.6484796517114924,0.3090461786672576,0.3090461786672576,-0.7698227650899603,-0.7249956723138793,1.8440669480875032 +illusion,illusion_0.75L,75,76,15.0,2.717594150453806,1.8550398526713252,0.6172599969431758,3.9521141443401575,1.337788999080658,3.6151973763480783,-0.12776057701557875,1.0822678450495005,4.314298741519451,0.8283493225462735,-2.8808683156967163,94.2918062210083,99.80649054050446,1.192869246006012,43.71724724769592,24.080507457256317,-1.3263670206069946,-0.4998806416988373,2.266439914703369,-0.6265679269950208,0.2827946471892888,0.2827946471892888,-0.6997990936119738,-0.7826752888881261,1.9836452675140803 +illusion,illusion_0.75L,76,77,15.200000000000001,2.801078837364912,1.9482887582853436,0.6316358922049403,4.064350621774793,1.3767692726105452,3.5636809188872576,-0.28962292708456516,0.7975234184414148,4.314756486564875,0.6392578361555934,-5.924317240715027,95.2311098575592,99.79396164417267,-1.640908420085907,43.249788880348206,22.766560316085815,-1.2563163042068481,-0.6205472946166992,2.3512353897094727,-0.7164222780024194,0.3402050199588271,0.3402050199588271,-0.5398940262044287,-0.9607523145755263,2.0110303697506455 +illusion,illusion_0.75L,77,78,15.4,2.842424437403679,1.983903639484197,0.614519405644387,4.071463248692453,1.4120665146037936,3.5665129544213414,-0.4173618508502841,0.5773428129032254,4.3033817782998085,0.42257944005541503,-8.703610301017761,95.34772634506226,100.05053579807281,-4.372029006481171,42.52088963985443,21.271340548992157,-1.1945490837097168,-0.7258840799331665,2.401775598526001,-0.708605670344769,0.33094493322398044,0.33094493322398044,-0.48594341336494784,-1.056829013157147,2.0708306653020205 +illusion,illusion_0.75L,78,79,15.600000000000001,2.8687536250799894,1.9988047424703836,0.6233742460608482,4.115502117201686,1.3919929042458534,3.5885159159079194,-0.5450242897495627,0.30194432474672794,4.28277300670743,0.1873774453997612,-11.307474970817566,94.58209276199341,100.67278444766998,-7.048484683036804,40.821373462677,19.577977061271667,-1.138950228691101,-0.8429698944091797,2.4374947547912598,-0.7772659097690839,0.38031143408839485,0.38031143408839485,-0.36168431892201713,-1.2232813284975745,2.057183320702865 +illusion,illusion_0.75L,79,80,15.8,2.821782836690545,1.9852730329148471,0.6390344933606684,4.099851823411882,1.3376990100368857,3.6379684461280704,-0.6438820855692029,0.04993483889847994,4.263593349605799,-0.05644609700539149,-13.630849123001099,92.81089305877686,101.7279326915741,-9.53318290412426,37.38051354885101,17.744888737797737,-1.089420199394226,-0.9098714590072632,2.4648730754852295,-0.8646381813106987,0.44630182135950625,0.44630182135950625,-0.22478201808352738,-1.3561732803667694,2.0185712541257232 +illusion,illusion_0.75L,80,81,16.0,2.781853312626481,1.94538728101179,0.6612353608943522,4.1043240344151855,1.2675204779952765,3.7129856646060944,-0.7091471925377846,-0.1507739070802927,4.254181403666735,-0.2984438033308834,-15.645423531532288,89.97563123703003,103.22420299053192,-11.714549362659454,31.4638614654541,15.777091681957245,-1.0165259838104248,-0.9711139798164368,2.4834413528442383,-0.9366657677394743,0.5035055587436996,0.5035055587436996,-0.07986021607095051,-1.4746195385601364,1.9799357941005387 +illusion,illusion_0.75L,81,82,16.2,2.7123144827783108,1.8862007418647408,0.6828861078247428,4.078086698427796,1.179893035441637,3.8030248833820224,-0.7525553228333592,-0.32521761022508144,4.253479186445475,-0.5280044861137867,-17.351236939430237,86.21981143951416,105.10077178478241,-13.471035030670464,22.619885206222534,13.605814310722053,-0.9410570859909058,-1.0161333084106445,2.4787681102752686,-1.0094616039203994,0.5631608538189861,0.5631608538189861,0.06840451792949365,-1.5792941622296306,1.9156072564562825 +illusion,illusion_0.75L,82,83,16.400000000000002,2.624355023726821,1.8165350775234401,0.6988414679653943,4.0220379596576095,1.0965123074129224,3.9053556974977255,-0.7831931579858065,-0.46987400855869055,4.254919942468405,-0.734834757167846,-18.707457184791565,81.991708278656,107.18209445476532,-14.652481861412525,11.038099974393845,11.068531684577465,-0.8635088801383972,-1.0584968328475952,2.448282241821289,-1.0543489149368521,0.6031814238222399,0.6031814238222399,0.1908400347984549,-1.6616782566698352,1.8451008179990491 +illusion,illusion_0.75L,83,84,16.6,2.5537193287163973,1.7328146495856345,0.7125054835341871,3.9787302957847714,0.9534044656902552,4.011551267467439,-0.8085129084065557,-0.6636213511228561,4.256147891283035,-0.9095119894482195,-19.556111097335815,77.9253602027893,109.14440751075745,-15.024199336767197,-2.3788776248693466,7.8780122101306915,-0.8432005047798157,-1.111870527267456,2.3453853130340576,-1.1968699268220893,0.7168386040125434,0.7168386040125434,0.3536694220422736,-1.8287091312799995,1.6285467090215142 +illusion,illusion_0.75L,84,85,16.8,2.449509222060442,1.6374183469451964,0.7178109954111278,3.8851312128826976,0.8535570814274251,4.109997535124421,-0.8337090257555246,-0.8138609700836241,4.262739326804876,-1.044045900925994,-19.533735513687134,74.85330104827881,110.5617105960846,-14.265196025371552,-15.912139415740967,3.697088360786438,-0.8442235589027405,-1.1625730991363525,2.2188496589660645,-1.2287528379200727,0.7497439141976345,0.7497439141976345,0.38452927901733225,-1.912317013333987,1.46910574476843 +illusion,illusion_0.75L,85,86,17.0,2.3562442511320114,1.528444729046896,0.7203649438451976,3.7969741388224065,0.7834508433006704,4.195859422907233,-0.8547764737159014,-0.9261021041311324,4.2811911553144455,-1.1323653161525726,-18.16382110118866,73.492830991745,110.90611517429352,-12.121749296784401,-27.397269010543823,-1.6740825027227402,-0.8822950720787048,-1.219369649887085,2.064833879470825,-1.1744349886466703,0.7201706231059763,0.7201706231059763,0.29213991656796545,-1.9395402729930613,1.3446632563648488 +illusion,illusion_0.75L,86,87,17.2,2.3017586208879948,1.4076716324780136,0.7239411061163992,3.749640833120793,0.676938274409622,4.252656013704836,-0.8710076799616218,-1.0650770855136216,4.309138748794794,-1.1706582736223936,-15.150824189186096,74.0791380405426,109.89199578762054,-8.758346270769835,-35.44924557209015,-8.075954485684633,-1.0007920265197754,-1.2810580730438232,1.8578319549560547,-1.1737247667385966,0.731427173774656,0.731427173774656,0.1729327402188212,-2.0124852468184793,1.1264047811813986 +illusion,illusion_0.75L,87,88,17.400000000000002,2.2638991940766573,1.2842031428590417,0.7327113999053836,3.7293219938874245,0.6160482298582792,4.285293165594339,-0.876124482601881,-1.1362007353454828,4.3344078585505486,-1.1575192911550403,-10.698926448822021,76.05483531951904,107.68877267837524,-4.9243394285440445,-40.2119517326355,-14.749408885836601,-1.123075008392334,-1.349823236465454,1.6665462255477905,-1.0739037595910268,0.6695879131320525,0.6695879131320525,-0.04917124880130719,-2.0194111495975067,0.9969583124157381 +illusion,illusion_0.75L,88,89,17.6,2.2681576665490866,1.1547659960342571,0.7385962671833113,3.745350200915709,0.5933513166382909,4.282829351723194,-0.8601169101893902,-1.1268825037404895,4.344752058386803,-1.0939073981717229,-5.485224723815918,78.43164205551147,104.95580434799194,-1.6706258058547974,-43.08581054210663,-20.647455751895905,-1.2259814739227295,-1.4487040042877197,1.4958950281143188,-0.8843309369055596,0.5418993928023532,0.5418993928023532,-0.34165053701716985,-1.990603397090073,0.9539956353119656 +illusion,illusion_0.75L,89,90,17.8,2.2922116331756115,1.0398688027635217,0.7487096590921283,3.789630951359868,0.5897662485949695,4.251325037330389,-0.8223941549658775,-1.0550220613367856,4.338088445365429,-0.9829543996602297,-0.22121667861938477,80.48880696296692,102.44685411453247,0.2646304666996002,-45.41415870189667,-25.04674419760704,-1.2991183996200562,-1.5601726770401,1.3634519577026367,-0.6818605892106606,0.40324604866857805,0.40324604866857805,-0.6172578104093955,-1.9634187257086781,0.9602059090340587 +illusion,illusion_0.75L,90,91,18.0,2.3348780814558268,0.944733212236315,0.7467744289897382,3.828426939435303,0.5982409929856658,4.20377089176327,-0.7604513084515929,-0.92266162391752,4.322429653257132,-0.829690252430737,4.604730010032654,81.91306591033936,100.65859854221344,0.6875976920127869,-47.733643651008606,-27.744029462337494,-1.3487422466278076,-1.679396629333496,1.256766438484192,-0.49058947299184363,0.2709541539308983,0.2709541539308983,-0.858152773635964,-1.9503507832643945,0.9858122845532936 +illusion,illusion_0.75L,91,92,18.2,2.389652654528618,0.8788686100160703,0.7444356015184894,3.8785238575655967,0.6067770882509649,4.148089908994734,-0.6808502366766334,-0.7549233851023018,4.306267015635967,-0.6407499895431101,8.919820189476013,82.61370062828064,99.70397055149078,-0.13140439987182617,-50.01294016838074,-29.01860773563385,-1.372928261756897,-1.7975997924804688,1.1826863288879395,-0.3526582081996812,0.17528719864787345,0.17528719864787345,-1.0202700535572158,-1.9728869911283422,1.007399130240066 +illusion,illusion_0.75L,92,93,18.400000000000002,2.453107153996825,0.8440781930403318,0.7536253579019103,3.960357869800646,0.6017749547027051,4.084158921614289,-0.5874920170754194,-0.5732090794481337,4.290624521672726,-0.42410247260704637,12.859445810317993,82.54578113555908,99.55031275749207,-1.797078549861908,-51.8593966960907,-29.25446778535843,-1.3705904483795166,-1.906957745552063,1.1470497846603394,-0.299436755066691,0.1392883517032394,0.1392883517032394,-1.0711536933128256,-2.0462460972553025,1.0077614329570999 +illusion,illusion_0.75L,93,94,18.6,2.4987005162984133,0.8448306180071086,0.7602111727464944,4.019122861791402,0.6244969554245472,4.027258255518973,-0.4861409543082118,-0.3477849531918764,4.271544981747866,-0.18880768038798124,16.614258289337158,81.58865571022034,100.10899305343628,-3.969508409500122,-52.571040391922,-28.728866577148438,-1.3242565393447876,-1.9977258443832397,1.1583552360534668,-0.253901732770373,0.10551131982145623,0.10551131982145623,-1.0703548065744146,-2.103237164204696,1.0528439162320105 +illusion,illusion_0.75L,94,95,18.8,2.54167546518147,0.8728693137527443,0.7694479645579122,4.080571394297294,0.5832588067278266,3.9756600745022297,-0.3764941357076168,-0.16972946468740702,4.249318968504667,0.05522884021047503,20.31986713409424,79.61316704750061,101.33038759231567,-6.3915446400642395,-51.13009214401245,-27.529655396938324,-1.291843295097351,-2.0580859184265137,1.1715583801269531,-0.39025318931712616,0.20369912333590712,0.20369912333590712,-0.9015901057802249,-2.261785041762421,0.967859256791046 +illusion,illusion_0.75L,95,96,19.0,2.55206529982388,0.9286524655180983,0.7847654705983587,4.1215962410205975,0.5537238321267068,3.941850969567895,-0.2695892471820116,0.01454533776268363,4.232753999531269,0.29754950082860887,23.959824442863464,76.67418718338013,103.21160852909088,-8.744578063488007,-46.30265831947327,-25.553952157497406,-1.2311633825302124,-2.092648983001709,1.2257152795791626,-0.5531216678255833,0.3188073537182562,0.3188073537182562,-0.6780417147046292,-2.411456336719965,0.9069079258609064 +illusion,illusion_0.75L,96,97,19.200000000000003,2.5465001817792654,1.0014912986662239,0.7908823026809841,4.128264787141234,0.5141280125826597,3.9244143990799785,-0.1626053126528859,0.1889173872768879,4.232520703226328,0.5275269504636526,27.26306915283203,73.18339347839355,105.64082860946655,-10.426170006394386,-37.0042622089386,-22.424965724349022,-1.179673671722412,-2.0864784717559814,1.2903960943222046,-0.7679146664568759,0.4706846247936348,0.4706846247936348,-0.4117590052655362,-2.5571630965496164,0.8197114695285698 +illusion,illusion_0.75L,97,98,19.400000000000002,2.5097522884607315,1.0865774675039575,0.8030107273953035,4.115773743251339,0.4878629115410149,3.9290301501750946,-0.05561811849474907,0.37662667455151677,4.25043236464262,0.7348464569076896,29.544824361801147,69.93725299835205,108.12545418739319,-10.438810661435127,-23.171623051166534,-17.508290335536003,-1.1393946409225464,-1.9945262670516968,1.386662244796753,-0.977557528569823,0.6175551119763214,0.6175551119763214,-0.16183711235272336,-2.612081379028018,0.7691071328204315 +illusion,illusion_0.75L,98,99,19.6,2.4505765177309513,1.1825380061054602,0.8029346208786592,4.05644575948827,0.4683045553974807,3.9545365143567324,0.05578319542109966,0.57987094623968,4.276684485375881,0.910060596652329,30.0197571516037,67.68264174461365,109.88333523273468,-7.951226364821196,-5.889691784977913,-10.267092753201723,-1.1461535692214966,-1.7619096040725708,1.488373041152954,-1.1932175340834459,0.7678184356953324,0.7678184356953324,0.0470639648619493,-2.529728039767903,0.7205546054576217 +illusion,illusion_0.75L,99,100,19.8,2.386414213106036,1.2841482821386307,0.7950028229970485,3.976419859100133,0.483822455862537,3.993844729848206,0.15560060273855925,0.7950236613396555,4.298476967960596,1.045151730068028,28.40191125869751,66.92056059837341,110.37447452545166,-3.280020132660866,12.604410946369171,-1.187770813703537,-1.1859886646270752,-1.4183076620101929,1.597271203994751,-1.3467826975238384,0.8715698904764496,0.8715698904764496,0.1607940328967632,-2.2898775524866424,0.7257013135183014 +illusion,illusion_0.75L,100,101,20.0,2.348859328776598,1.3737229455728084,0.7783160253893584,3.905491379555315,0.5201746243983507,4.0271838661283255,0.22095371969044209,0.9620820637792349,4.310819320380688,1.1340213241055608,25.13275146484375,67.80128479003906,109.68022346496582,2.180766873061657,29.968225955963135,8.416795171797276,-1.2630705833435059,-1.0608744621276855,1.6824002265930176,-1.4353513659804982,0.9283870876905168,0.9283870876905168,0.1722807826369923,-1.9892615498182025,0.7540131389025008 +illusion,illusion_0.75L,101,102,20.200000000000003,2.3035178892314434,1.465297187678516,0.7524102693423629,3.808338427916169,0.6067551439628005,4.046966903842986,0.2554523525759578,1.117659849114716,4.318069666624069,1.172830117866397,20.864546298980713,70.22733092308044,108.172607421875,6.862789019942284,43.86371672153473,17.08298660814762,-1.3351688385009766,-0.705040454864502,1.7816147804260254,-1.423876408579913,0.9109599872101504,0.9109599872101504,0.08870757007893637,-1.6160004420746523,0.870654793215875 +illusion,illusion_0.75L,102,103,20.400000000000002,2.2868954110890627,1.5562557673547417,0.7347314094658941,3.756358230020851,0.738251197617501,4.038136336021125,0.25663443375378847,1.251520065125078,4.3253907933831215,1.1601487640291452,16.111400723457336,73.89864921569824,106.27470910549164,9.757620841264725,52.42871046066284,23.735307902097702,-1.3669449090957642,-0.41515934467315674,1.909833312034607,-1.3185490868210656,0.8241263055331853,0.8241263055331853,-0.04839582227469852,-1.239285650206342,1.0857070065014216 +illusion,illusion_0.75L,103,104,20.6,2.3138902615755796,1.6491825808770955,0.7260545971803367,3.765999455936253,0.8954777731560171,3.9969898061826825,0.21678570192307234,1.3290491770021617,4.330647643655539,1.0969155700877309,11.255940794944763,78.29503417015076,104.44802343845367,10.556279867887497,55.53833246231079,27.939672023057938,-1.3539656400680542,-0.23086629807949066,2.055697202682495,-1.1636964743452178,0.7004435071961714,0.7004435071961714,-0.19026916572283636,-0.9313098052756621,1.3552536954863237 +illusion,illusion_0.75L,104,105,20.8,2.3687337525188923,1.750779920257628,0.7262957515195012,3.8213252555578947,1.077350927516818,3.936060587875545,0.13521278742700815,1.3477765023708344,4.326369613409042,0.9862470906227827,6.582871079444885,82.56649971008301,103.00590693950653,9.569890797138214,55.43543100357056,29.93181198835373,-1.2851264476776123,-0.15120482444763184,2.225486993789673,-0.9737987983688181,0.5499755584542658,0.5499755584542658,-0.3113276493087942,-0.7011803829018977,1.675511435335407 +illusion,illusion_0.75L,105,106,21.0,2.444921061396599,1.8544167396612465,0.7459292537532747,3.936779568903148,1.1956552043557167,3.8660247810184956,0.008111819624900818,1.2118788436055183,4.309413023293018,0.8331635617651045,2.210298180580139,86.02049946784973,102.04858481884003,7.435362786054611,54.71542477607727,30.342642217874527,-1.2173962593078613,-0.16565585136413574,2.3737096786499023,-0.9188639295009766,0.49920397740719324,0.49920397740719324,-0.2985323298068847,-0.664859828771329,1.874505701242709 +illusion,illusion_0.75L,106,107,21.200000000000003,2.5212501641362906,1.9571312586776912,0.775564752984792,4.0723796701058745,1.3402741169556975,3.802231512963772,-0.1540146768093109,1.0322447633370757,4.286780022084713,0.6442960002459586,-1.9346892833709717,88.46395611763,101.50443911552429,4.690095782279968,54.2860209941864,29.756999015808105,-1.100820541381836,-0.25903594493865967,2.5374698638916016,-0.8079180091342897,0.4070647096072175,0.4070647096072175,-0.29290253224754625,-0.6661006545458772,2.130405154284384 +illusion,illusion_0.75L,107,108,21.400000000000002,2.5756426621228456,2.0238152937963605,0.8062483975663781,4.188139457255602,1.355505082756281,3.761957515962422,-0.34236337523907423,0.6707783322781324,4.270263947546482,0.42761577060446143,-5.944505333900452,89.91548418998718,101.28304660320282,1.6249537467956543,53.757452964782715,28.477579355239868,-1.0706143379211426,-0.40064868330955505,2.601642370223999,-0.8982791291348988,0.46744176064157017,0.46744176064157017,-0.17233520878624375,-0.8680904439511252,2.134200609582429 +illusion,illusion_0.75L,108,109,21.6,2.613481367006898,2.0553970243781805,0.8513987995684147,4.316278966143727,1.3510737335309386,3.7554707378149033,-0.5416469648480415,0.26777980383485556,4.2654587887227535,0.19219081150367856,-9.88878309726715,90.35006761550903,101.37475430965424,-1.7026521265506744,52.274781465530396,26.569896191358566,-1.033625841140747,-0.5971261262893677,2.6428520679473877,-0.9651149386943025,0.5138305660249727,0.5138305660249727,-0.06851090244644453,-1.1109566923143404,2.129021501922415 +illusion,illusion_0.75L,109,110,21.8,2.602600958198309,2.031864132732153,0.903567997738719,4.409736953675747,1.3643749989569187,3.784480970352888,-0.7152827456593513,-0.06619049236178398,4.267280455678701,-0.05206031346460804,-13.693079352378845,89.64903950691223,101.86444818973541,-5.185820907354355,48.74390363693237,24.038008600473404,-0.9610109329223633,-0.8072665333747864,2.689066171646118,-0.8946692946999,0.4639846529861056,0.4639846529861056,-0.0663416382224633,-1.271251186360892,2.2250815186600126 +illusion,illusion_0.75L,110,111,22.0,2.5801570154726505,1.958616659976542,0.949995475821197,4.480147967115045,1.260631252080202,3.8626681780442595,-0.8484950521960855,-0.4363588523119688,4.266941454261541,-0.29466304113157094,-17.17248558998108,87.77648210525513,102.87521481513977,-8.570664748549461,42.0022577047348,20.917606726288795,-0.9456853866577148,-1.0017828941345215,2.653099536895752,-0.9750533634685645,0.530628264714113,0.530628264714113,0.029367976810849683,-1.5324111588486344,2.122471272181639 +illusion,illusion_0.75L,111,112,22.200000000000003,2.527218544855714,1.8554752750787884,0.9813616925384849,4.489941929932684,1.1723760981112719,3.9787598652765155,-0.9281175443902612,-0.6838589906692505,4.2623914778232574,-0.5249702953733504,-20.074546337127686,84.9758505821228,104.48724031448364,-11.386008746922016,31.175854802131653,17.210532538592815,-0.9003547430038452,-1.1561365127563477,2.6083171367645264,-0.9688569999127936,0.5361040483767285,0.5361040483767285,0.0685022569089484,-1.6922405611330762,2.072213088387798 +illusion,illusion_0.75L,112,113,22.400000000000002,2.4574948474764824,1.7298884340561926,0.9870847570709884,4.431664361618459,1.0435032891109586,4.11912624258548,-0.9491200326010585,-0.8547367760911584,4.2604319751262665,-0.7326462655328214,-22.02003002166748,81.79218769073486,106.45307302474976,-12.94589865137823,16.37200117111206,12.764400959713385,-0.883129894733429,-1.2378538846969604,2.509272813796997,-1.005516524964829,0.5754901536899171,0.5754901536899171,0.12238663023140006,-1.8133440383868775,1.93378266010708 +illusion,illusion_0.75L,113,114,22.6,2.4052499793469906,1.595791254658252,0.9757796651683748,4.35680930968374,0.9061617311090231,4.264102899469435,-0.9399921400472522,-0.9738225489854813,4.268317017704248,-0.9082225151360035,-22.5276380777359,78.9547860622406,108.11761319637299,-12.571480683982372,-0.9688189253211021,7.188053615391254,-0.8884227871894836,-1.2840862274169922,2.3567237854003906,-1.044114700883649,0.6171414302102458,0.6171414302102458,0.15569191369416546,-1.901227657627238,1.7395823551901448 +illusion,illusion_0.75L,114,115,22.8,2.353842370212078,1.4621816226281226,0.9567266679368913,4.267295706085861,0.7807497750036418,4.388984991237521,-0.9175522718578577,-1.0543547687120736,4.284675698727369,-1.0436619631946087,-21.16360366344452,77.14255452156067,108.71833860874176,-10.010107234120369,-18.442249298095703,0.17429925501346588,-0.9208585619926453,-1.291617512702942,2.1683871746063232,-1.0589748566942345,0.6411749883329025,0.6411749883329025,0.13811629470158926,-1.9327925010358444,1.5272121862734207 +illusion,illusion_0.75L,115,116,23.0,2.2980142384767532,1.331201652646996,0.9188890544464812,4.135792347369716,0.676184834446758,4.479328170418739,-0.8928109891712666,-1.109437143895775,4.3002585880458355,-1.1328490218147635,-17.910298705101013,76.83966755867004,107.92824327945709,-5.905470810830593,-33.09604227542877,-7.793980278074741,-1.0007671117782593,-1.2767910957336426,1.944806694984436,-1.0355998525523042,0.6366515117016374,0.6366515117016374,0.03483274077404497,-1.91344260743528,1.3081551832827987 +illusion,illusion_0.75L,116,117,23.200000000000003,2.280120039358735,1.2029216450173408,0.8849096193443984,4.049939278047532,0.6046683411113918,4.5241016196087,-0.8718048920854926,-1.1389414430595934,4.307628609240055,-1.1719316244125366,-13.325965404510498,78.10521125793457,106.10901117324829,-1.57657191157341,-42.86450147628784,-15.527508407831192,-1.1026932001113892,-1.2987160682678223,1.726022720336914,-0.9489283325197626,0.5850144945844095,0.5850144945844095,-0.15376486759162655,-1.8837305628522318,1.1410082257525045 +illusion,illusion_0.75L,117,118,23.400000000000002,2.2786983754485846,1.0819803283084184,0.8514284563716501,3.9815552881918848,0.5705821677111089,4.519374691881239,-0.8584539173170924,-1.146325666923076,4.308593459427357,-1.1594714596867561,-8.189940452575684,80.4516851902008,103.96596193313599,1.7319127917289734,-47.84761071205139,-21.876688301563263,-1.220051884651184,-1.3723833560943604,1.5262922048568726,-0.7983870733511236,0.4853871152548649,0.4853871152548649,-0.4216648113000605,-1.8577704713492253,1.0409050896020076 +illusion,illusion_0.75L,118,119,23.6,2.2946642711758614,0.975696042587515,0.8254232598119415,3.9455107907997444,0.5594724207185209,4.477230249904096,-0.8443325059488416,-1.1291925911791623,4.310824908316135,-1.0964034590870142,-3.094559907913208,83.04384350776672,102.08532214164734,3.431636095046997,-50.034308433532715,-26.30893886089325,-1.3318120241165161,-1.4927382469177246,1.35777747631073,-0.6271837435179488,0.3690364117355085,0.3690364117355085,-0.7046282805985673,-1.861774658653233,0.9887410645752215 +illusion,illusion_0.75L,119,120,23.8,2.3437768686562777,0.8852479259076063,0.8068391143751796,3.957455097406637,0.5645012715831399,4.405636806041002,-0.8178679272532463,-1.0712345829233527,4.317633807659149,-0.9858451085165143,1.6207575798034668,85.18489599227905,100.80322027206421,3.5488829016685486,-51.41530632972717,-28.87815684080124,-1.4142065048217773,-1.6532641649246216,1.2249855995178223,-0.45158880873579177,0.24789025109207052,0.24789025109207052,-0.9626176960859856,-1.9011544160166922,0.9770953484257517 +illusion,illusion_0.75L,120,121,24.0,2.4122705217450857,0.8188353549485328,0.79834284952085,4.008956220786786,0.5846415879204869,4.322236287407577,-0.7707137847319245,-0.9567859815433621,4.3228743597865105,-0.8328225230798125,5.988892912864685,86.58386468887329,100.16409456729889,2.4875104427337646,-52.89756655693054,-30.025729537010193,-1.452357292175293,-1.8222060203552246,1.139319896697998,-0.28869979211796304,0.13380379100589734,0.13380379100589734,-1.16365750005733,-1.956009811361122,1.0055161056921007 +illusion,illusion_0.75L,121,122,24.200000000000003,2.489726059138775,0.776465330091014,0.795273296716914,4.080272652572603,0.5969624617137015,4.232631530612707,-0.6969114765524864,-0.7968604913912714,4.317156504839659,-0.6439769640564919,10.14091670513153,87.08822727203369,100.08867084980011,0.6477430462837219,-54.449933767318726,-30.14163225889206,-1.4589548110961914,-1.9711990356445312,1.090015172958374,-0.18587017306986597,0.061825942473589524,0.061825942473589524,-1.2730846380263254,-2.033024978118121,1.0281892304847844 +illusion,illusion_0.75L,122,123,24.400000000000002,2.5652111507952213,0.7693276902500656,0.7945360221128794,4.15428319502098,0.5884632118977606,4.148893407545984,-0.604666885919869,-0.6208705599419773,4.298562649637461,-0.42729274719022214,14.26648497581482,86.59567832946777,100.54256319999695,-1.695108413696289,-55.440813302993774,-29.438555240631104,-1.4457852840423584,-2.087233543395996,1.0667973756790161,-0.19037916953880174,0.06585968864935454,0.06585968864935454,-1.2554061145035567,-2.1530932320453506,1.0009376870296616 +illusion,illusion_0.75L,123,124,24.6,2.62133264914155,0.7995908677003172,0.8081487317213032,4.2376301125841564,0.568349496461451,4.074522061273456,-0.4942037630826235,-0.4200580297037959,4.27577830851078,-0.19185301789548248,18.454834818840027,84.97739434242249,101.52997076511383,-4.3546512722969055,-54.605644941329956,-27.93121486902237,-1.3986364603042603,-2.1551735401153564,1.0938605070114136,-0.28718263517421794,0.1345582682685369,0.1345582682685369,-1.1114538251300423,-2.2897318083838933,0.9593022387428767 +illusion,illusion_0.75L,124,125,24.8,2.6640782598406076,0.8607967738498701,0.8283439110527979,4.3207660819462035,0.5382035742513835,4.0105467196553946,-0.3743802662938833,-0.2105569583363831,4.260041750967503,0.05240777682047337,22.65489101409912,82.30448961257935,103.09497117996216,-7.0293329656124115,-50.13773441314697,-25.426898151636124,-1.3294317722320557,-2.1878321170806885,1.1594841480255127,-0.46121763644332536,0.2574025900214647,0.2574025900214647,-0.8682141357887303,-2.445234707102153,0.902081558004048 +illusion,illusion_0.75L,125,126,25.0,2.6417309418320656,0.9543337801005691,0.8493329223711044,4.340396786574274,0.4978511715307832,3.9666235679760575,-0.2497736131772399,-0.0016960548236966133,4.254886880517006,0.2949997433461249,26.473385095596313,79.08783555030823,105.12974858283997,-9.026877582073212,-40.388792753219604,-21.468041837215424,-1.2702832221984863,-2.1344945430755615,1.2619397640228271,-0.7153799652242063,0.43640058523973624,0.43640058523973624,-0.55490325697428,-2.5708951283152977,0.8255391787830909 +illusion,illusion_0.75L,126,127,25.200000000000003,2.6462965179234743,1.0713084193412215,0.8638521831016988,4.374000884126872,0.46138421748764813,3.9536795811727643,-0.12759014498442411,0.2062039275187999,4.254963714629412,0.5252624396234751,29.062774777412415,76.22928023338318,107.1451872587204,-9.215828962624073,-25.125637650489807,-15.414935164153576,-1.2336430549621582,-2.0188019275665283,1.3744205236434937,-1.0043320921292385,0.6388624224695155,0.6388624224695155,-0.22931096283291974,-2.6576643500360437,0.7355581011739781 +illusion,illusion_0.75L,127,128,25.400000000000002,2.600122941657901,1.1985617456957698,0.8706330554559827,4.341389052569866,0.43934903806075454,3.971593454480171,-0.02118293195962906,0.3969831741414964,4.254658240824938,0.7328497595153749,29.519924521446228,74.53466057777405,108.4179550409317,-6.857365637551993,-6.075667217373848,-7.134440273512155,-1.2589983940124512,-1.778645634651184,1.4826984405517578,-1.2822650184581557,0.8321654295233727,0.8321654295233727,0.023266624445704487,-2.6108110641745568,0.6505330110283851 +illusion,illusion_0.75L,128,129,25.6,2.5414112024009228,1.3334140967344865,0.8576053805882111,4.256621963577345,0.44650788186118007,4.00885846465826,0.0761137343943119,0.5987353506498039,4.2560105212032795,0.9082869510166347,27.67033576965332,74.37053918838501,108.62683057785034,-2.5579118926543742,13.983823359012604,2.3774961184244603,-1.3304336071014404,-1.4265508651733398,1.58578360080719,-1.513807506920985,0.9903903200472451,0.9903903200472451,0.18337389981954466,-2.416941185220585,0.5953932807599448 +illusion,illusion_0.75L,129,130,25.8,2.4852072820067406,1.4590748760383576,0.8289963298011571,4.143199941609055,0.5014917114749551,4.051391850225627,0.14878541696816683,0.7990625454112887,4.266428295522928,1.0435355361551046,24.158290028572083,75.66298842430115,107.94865787029266,2.0291443914175034,32.01019763946533,11.427294090390205,-1.4143176078796387,-1.0564942359924316,1.6846179962158203,-1.6298262972848716,1.064004810580486,1.064004810580486,0.21550868940523293,-2.1204990465729177,0.6206131856353343 +illusion,illusion_0.75L,130,131,26.0,2.4489916395395994,1.5764661075081676,0.7921903452370316,4.033372330013663,0.6129653193056583,4.074806347489357,0.191541388630867,0.9960480965673923,4.288712982088327,1.1324833612889051,19.7443425655365,78.13751697540283,106.72407746315002,5.473944544792175,45.5925852060318,18.834537267684937,-1.4700779914855957,-0.7312042713165283,1.7976157665252686,-1.6141171615011287,1.0409250785406088,1.0409250785406088,0.144039170015533,-1.772129349857137,0.7566906879846598 +illusion,illusion_0.75L,131,132,26.200000000000003,2.440498908981681,1.6887873061932623,0.755973334889859,3.952445578761399,0.762845971621573,4.077527206391096,0.20405789837241173,1.1709617683663964,4.315109457820654,1.1712872656062245,15.030023455619812,81.3885509967804,105.3074985742569,7.090352475643158,53.03552746772766,24.000100791454315,-1.481146216392517,-0.47967275977134705,1.9274976253509521,-1.509856019164337,0.9527964817360375,0.9527964817360375,0.028709802771820003,-1.4324692415073845,0.9747011436149147 +illusion,illusion_0.75L,132,133,26.400000000000002,2.474115462973714,1.798966492060572,0.7189176394604146,3.911950741894543,0.9369964827783406,4.0535409934818745,0.18431898206472397,1.3056344469077885,4.33275755494833,1.158522441983223,10.362142324447632,84.87442135810852,104.01416420936584,6.983562558889389,55.104053020477295,27.03493908047676,-1.4433088302612305,-0.31921637058258057,2.0673668384552,-1.3515773205429724,0.8248947134543827,0.8248947134543827,-0.09173150971825805,-1.1441110840369633,1.2424721250008175 +illusion,illusion_0.75L,133,134,26.6,2.50188703648746,1.9123356323689222,0.6937745492905378,3.889436135068536,1.109022763557732,4.003966227173805,0.12569036334753036,1.3604034902527928,4.335022531449795,1.0951414005830884,5.915039777755737,87.97694444656372,103.04691195487976,5.681420117616653,54.64192032814026,28.447815030813217,-1.3720778226852417,-0.22377002239227295,2.221240758895874,-1.203510864199333,0.7042405321679432,0.7042405321679432,-0.16856695848590864,-0.9280105545602162,1.5170002267279308 +illusion,illusion_0.75L,134,135,26.8,2.6112294290214777,2.0275890128687024,0.6822271971032023,3.9756838232278824,1.2559363385662436,3.941083326935768,0.028880778700113297,1.3136978959664702,4.32641664519906,0.9842822328209877,1.6934335231781006,90.30724167823792,102.42108702659607,3.7029847502708435,53.987741470336914,28.805087506771088,-1.2691919803619385,-0.23480238020420074,2.366990089416504,-1.1107311669255182,0.6243240948243844,0.6243240948243844,-0.15846081343642027,-0.8591264750285852,1.7426659945921195 +illusion,illusion_0.75L,135,136,27.0,2.684004371985793,2.1302358363755047,0.6914969417266548,4.066998255439103,1.358947018161416,3.876666771247983,-0.1103163231164217,1.1383143719285727,4.3160272762179375,0.8309936965815723,-2.389153838157654,91.7848289012909,102.0643025636673,1.3544961810112,53.7051796913147,28.452815115451813,-1.176696538925171,-0.29625439643859863,2.4950098991394043,-1.0855614874555153,0.5956803753962232,0.5956803753962232,-0.09113505146965561,-0.8919347718348218,1.899329523743181 +illusion,illusion_0.75L,136,137,27.200000000000003,2.735714428126812,2.2038324386812747,0.717341376002878,4.170397180132568,1.4208084903657436,3.8280526641756296,-0.27633015997707844,0.8681481704115868,4.3072691187262535,0.6419395795091987,-6.4108192920684814,92.40071177482605,101.94446444511414,-1.2847721576690674,53.33258509635925,27.497801184654236,-1.0936282873153687,-0.41195225715637207,2.5966382026672363,-1.092280791009391,0.5934739499277129,0.5934739499277129,-0.0013474963059776357,-1.005426207084085,2.0031642527395235 +illusion,illusion_0.75L,137,138,27.400000000000002,2.757894340902567,2.2280255216173828,0.7674506050534546,4.292795551009476,1.4273907290771604,3.814087831415236,-0.45550696086138487,0.5163768073543906,4.295652266591787,0.4251259670127183,-10.380256175994873,92.07674264907837,102.14201211929321,-4.208606481552124,52.01219916343689,25.933396816253662,-1.0265341997146606,-0.581290602684021,2.6636481285095215,-1.12288299379891,0.613764562965903,0.613764562965903,0.09634879408424935,-1.195055165649924,2.0498835655436185 +illusion,illusion_0.75L,138,139,27.6,2.7334990445524454,2.2059864131733775,0.8340225322172046,4.4015441089868546,1.4022797113284469,3.837509430013597,-0.61846396420151,0.16535178292542696,4.276748280972242,0.18965487834066153,-14.220434427261353,90.64435362815857,102.78339982032776,-7.336539030075073,48.612773418426514,23.75285029411316,-0.9513973593711853,-0.7584434747695923,2.71962833404541,-1.134467779124853,0.6244893305455306,0.6244893305455306,0.18307041975366767,-1.3829328053151229,2.0951390034998796 +illusion,illusion_0.75L,139,140,27.8,2.6746306102722883,2.1356550278142095,0.8981701685115695,4.470970947295427,1.3394660782068968,3.9093545638024807,-0.747237354516983,-0.15500863082706928,4.254611674696207,-0.05452429104479961,-17.780500650405884,88.0595862865448,104.02550101280212,-10.413482040166855,41.8294221162796,20.953575521707535,-0.8793530464172363,-0.9273326992988586,2.739670991897583,-1.1356784637981798,0.6322467461507579,0.6322467461507579,0.2563254173809435,-1.5595794454496166,2.107424245746825 +illusion,illusion_0.75L,140,141,28.0,2.5982263032346964,2.0231642993167043,0.9495503036305308,4.497326910495758,1.2312723556533456,4.021462053060532,-0.8382983505725861,-0.44532434549182653,4.240327514708042,-0.2969120687339455,-20.775726437568665,84.61046814918518,105.86187541484833,-12.884055264294147,30.70363700389862,17.450903169810772,-0.8273481726646423,-1.0788733959197998,2.6995317935943604,-1.1535675795888372,0.6564619552484026,0.6564619552484026,0.3262194069241948,-1.7353353511682024,2.043069838345958 +illusion,illusion_0.75L,141,142,28.200000000000003,2.504858421161771,1.883746823295951,0.9815143421292305,4.467887105420232,1.0958559578284621,4.165124613791704,-0.8852467872202396,-0.6746376166120172,4.241766408085823,-0.5268445238471031,-22.75896966457367,80.99279999732971,107.95271694660187,-13.930625841021538,15.32304733991623,12.869756296277046,-0.7992280125617981,-1.178433895111084,2.603090524673462,-1.1784732002542722,0.6884974531275034,0.6884974531275034,0.37924518769247406,-1.8669313482385874,1.9145930715459585 +illusion,illusion_0.75L,142,143,28.400000000000002,2.3900032974779606,1.7330127011518925,1.0111544106621295,4.41231211880222,0.9528303053230047,4.318094463087618,-0.8968891343101859,-0.8409479632973671,4.255903884768486,-0.7339787553064525,-23.105621337890625,78.03543210029602,109.48166847229004,-12.738867104053497,-2.609819732606411,6.686165928840637,-0.7918657660484314,-1.2044352293014526,2.4747700691223145,-1.1984170385363866,0.7179644074056057,0.7179644074056057,0.4065512724879552,-1.9223996367070584,1.7568056617167087 +illusion,illusion_0.75L,143,144,28.6,2.323327586054802,1.5653402369935066,1.0037212341558188,4.33077005436644,0.8166442275978625,4.458497161976993,-0.8936334634199739,-0.9706226992420852,4.272357560694218,-0.9088502265512943,-21.371150016784668,76.37786865234375,109.6895694732666,-9.189190715551376,-20.517008006572723,-1.2500494718551636,-0.8343170881271362,-1.221887469291687,2.2643768787384033,-1.173300978051749,0.7157318560457666,0.7157318560457666,0.3389838899246127,-1.9376193253374536,1.5486450226926367 +illusion,illusion_0.75L,144,145,28.8,2.250827383249998,1.399083819705993,0.9849927737377584,4.220812930725515,0.698950607329607,4.560751840472221,-0.8922065608203411,-1.0854625143110752,4.284143913537264,-1.043437048792839,-17.732268571853638,76.40639543533325,108.47588181495667,-4.313329420983791,-35.30687391757965,-9.994440712034702,-0.9270139336585999,-1.2226619720458984,2.023832321166992,-1.1125939310664281,0.6870178024656912,0.6870178024656912,0.18557999740782827,-1.9096797745115897,1.336814518701301 +illusion,illusion_0.75L,145,146,29.0,2.2120282519608736,1.2328669108683243,0.9605453669792041,4.133118985919282,0.6154263392090797,4.613554337993264,-0.8899981621652842,-1.1645699851214886,4.293560050427914,-1.1316501768305898,-12.92959451675415,78.06184887886047,106.42226934432983,0.3015279769897461,-44.92497146129608,-18.05345267057419,-1.0495069026947021,-1.2598093748092651,1.7861770391464233,-0.9814166718978963,0.6061400036312887,0.6061400036312887,-0.06809023079680587,-1.8659493784405539,1.1800370355151346 +illusion,illusion_0.75L,146,147,29.200000000000003,2.197406254708767,1.0782780882436782,0.9381991985719651,4.073804651852697,0.5732325371354818,4.616319085471332,-0.8886741707101464,-1.204115804284811,4.306826740503311,-1.1696739820763469,-7.7187180519104,80.72953224182129,104.2252779006958,3.495960682630539,-49.67294931411743,-24.34990480542183,-1.1770975589752197,-1.3484151363372803,1.5817188024520874,-0.7861528777791109,0.4766929173491238,0.4766929173491238,-0.3909446811961088,-1.825108053686404,1.1050258851029637 +illusion,illusion_0.75L,147,148,29.400000000000002,2.229547593742609,0.9366139447593014,0.9198423331326921,4.069232260007993,0.5600929143838584,4.576138453558087,-0.8826747070997953,-1.2052564998157322,4.324088804423809,-1.156114973127842,-2.6732712984085083,83.47783088684082,102.43037641048431,4.845227301120758,-51.66438817977905,-28.47547084093094,-1.285773754119873,-1.5052599906921387,1.4115667343139648,-0.5545152152567734,0.3190621184826893,0.3190621184826893,-0.7312585388630997,-1.8243221091748278,1.0925046158312757 +illusion,illusion_0.75L,148,149,29.6,2.2528611589223146,0.8203805045923218,0.895093908184208,4.043048975290731,0.5642366595566273,4.511262173764408,-0.8598190033808351,-1.1554013472050428,4.336692858487368,-1.091959304176271,2.0240455865859985,85.66402196884155,101.29172503948212,4.580725729465485,-52.97021269798279,-30.72657436132431,-1.3740367889404297,-1.668531060218811,1.276190996170044,-0.33364799482641283,0.166922333021556,0.166922333021556,-1.0403887941140169,-1.8354533932403672,1.1092686631484878 +illusion,illusion_0.75L,149,150,29.8,2.354157157242298,0.731653104594443,0.8786088656052016,4.111374888452701,0.5738832987844944,4.43671562243253,-0.8172158850356936,-1.060548471286893,4.335253965109587,-0.9803788270801306,6.394141912460327,86.9855284690857,100.83302855491638,3.1939923763275146,-54.467105865478516,-31.600922346115112,-1.4132921695709229,-1.8750485181808472,1.1734280586242676,-0.1516627379223343,0.04087838423643042,0.04087838423643042,-1.2616294316485885,-1.9159269024172776,1.1325496743878372 +illusion,illusion_0.75L,150,151,30.0,2.433274406939745,0.6778016686439514,0.8678422309458256,4.168958868831396,0.5742614157497883,4.361544153653085,-0.7540961960330606,-0.9339309763163328,4.319529980421066,-0.8264546049758792,10.639595985412598,87.32109069824219,100.96306800842285,1.101870834827423,-56.132572889328,-31.51164799928665,-1.4291939735412598,-2.0469701290130615,1.1038269996643066,-0.05251685970779829,-0.027252782681765453,-0.027252782681765453,-1.3766771138334615,-2.019717346331296,1.131079782346072 +illusion,illusion_0.75L,151,152,30.200000000000003,2.5101029314100742,0.6653984455624595,0.8590458746766672,4.2281946807634085,0.5596564733423293,4.287599469535053,-0.6613420555368066,-0.7630276377312839,4.298923537135124,-0.6368796457536519,14.946171641349792,86.53938174247742,101.61813795566559,-1.4318615198135376,-57.23036527633667,-30.61339259147644,-1.4156749248504639,-2.167581796646118,1.0714352130889893,-0.060012877628565775,-0.020494441410272124,-0.020494441410272124,-1.355662047221898,-2.147087355235846,1.0919296544992614 +illusion,illusion_0.75L,152,153,30.400000000000002,2.5861216709017754,0.6906225753482431,0.8631843666080385,4.3124904041178524,0.5259303725324571,4.215474589727819,-0.5510371411219239,-0.5761439097113907,4.2830402962863445,-0.4196844238322228,19.422468543052673,84.57086682319641,102.81864702701569,-4.2174190282821655,-56.20577335357666,-28.80426049232483,-1.3730003833770752,-2.254504919052124,1.0791081190109253,-0.1757146680879036,0.06268369224925407,0.06268369224925407,-1.1972857152891716,-2.317188611301378,1.016424426761671 +illusion,illusion_0.75L,153,154,30.6,2.6212993543595076,0.7557138742413372,0.8797258196864277,4.380750993732363,0.4835310683120042,4.151485161855817,-0.4304500762373209,-0.3773690841626376,4.272976890206337,-0.1839892938733101,23.90274703502655,81.6419780254364,104.52165901660919,-6.809858977794647,-50.88707208633423,-25.720588862895966,-1.312597632408142,-2.2805423736572266,1.1375267505645752,-0.38214376187655874,0.20912608188111714,0.20912608188111714,-0.9304538705315833,-2.489668455538344,0.928400668683458 +illusion,illusion_0.75L,154,155,30.8,2.6366752572357655,0.8505847727064975,0.9058910000021569,4.448457257240079,0.43952587293460965,4.107921035028994,-0.305506750009954,-0.1714876270852983,4.2630089446902275,0.06024527465342544,27.79361605644226,78.46890091896057,106.42456412315369,-8.285872638225555,-39.54901397228241,-20.654891431331635,-1.2581502199172974,-2.2387778759002686,1.2337517738342285,-0.6462837475826095,0.39537910267309895,0.39537910267309895,-0.6118664723346878,-2.6341569785733676,0.8383726711611296 +illusion,illusion_0.75L,155,156,31.0,2.6112315244972706,0.974639413470868,0.9222221779054962,4.455675880308263,0.39477937389165163,4.087278852239251,-0.17962348647415638,0.03553240094333887,4.250259604305029,0.3025163896381855,30.050337314605713,76.06449127197266,107.89073705673218,-7.532262057065964,-22.428786754608154,-13.05060014128685,-1.2605125904083252,-2.061769723892212,1.340112566947937,-0.9652612952405127,0.6193741337813363,0.6193741337813363,-0.29525129516781246,-2.6811438576735482,0.7207384331666007 +illusion,illusion_0.75L,156,157,31.200000000000003,2.576504135504365,1.1180088185938075,0.9268728754250333,4.4302498863544315,0.3769325849134475,4.093264462426305,-0.06036204285919666,0.2562084991950542,4.240692127496004,0.532164704054594,29.956847429275513,75.1635491847992,108.48399996757507,-4.424435179680586,-1.8486713990569115,-3.464017529040575,-1.3142015933990479,-1.7647351026535034,1.4506008625030518,-1.2639850170030074,0.8264936174655825,0.8264936174655825,-0.05021657639604049,-2.591228720119086,0.6241072450374693 +illusion,illusion_0.75L,157,158,31.400000000000002,2.527351723983884,1.2613553262781352,0.9105087083298713,4.3483691406436265,0.3998158499598503,4.111020360141993,0.03830995410680771,0.47643575817346573,4.244009964168072,0.7388596422970295,27.69324779510498,75.90793371200562,108.26683044433594,-0.17945729196071625,18.737198412418365,6.336476281285286,-1.4080665111541748,-1.4092216491699219,1.5508103370666504,-1.4785800145145047,0.9713458320547578,0.9713458320547578,0.07051350336032991,-2.3805674812246798,0.5794645050118926 +illusion,illusion_0.75L,158,159,31.6,2.482671057805419,1.4039167144801468,0.8883701229933649,4.259411303792149,0.4694949893746525,4.132089903578162,0.11003552936017513,0.6895660480950028,4.262932576239109,0.9131560800597072,23.949700593948364,78.00445556640625,107.48623013496399,3.686709702014923,36.41728162765503,14.819483458995819,-1.4954131841659546,-1.0617866516113281,1.6628992557525635,-1.5951311679048197,1.0437055922935765,1.0437055922935765,0.09971798373886509,-2.1054922439049046,0.619193663458987 +illusion,illusion_0.75L,159,160,31.8,2.460868563503027,1.5390793269034475,0.8540234121028334,4.168915387708694,0.5918449605815113,4.145764512941241,0.15587243251502514,0.9035898256115615,4.288993775844574,1.0470576817169785,19.464868307113647,80.97066283226013,106.3607394695282,6.109994649887085,48.803481459617615,21.154141426086426,-1.5453722476959229,-0.7718163728713989,1.7859662771224976,-1.5894291380932624,1.0262990945355557,1.0262990945355557,0.04405689039733951,-1.7981154674069546,0.7596671825869419 +illusion,illusion_0.75L,160,161,32.0,2.471538493409753,1.6709827177692205,0.8096689998637885,4.09087649313733,0.7608682499267161,4.14285552687943,0.18014037050306797,1.121148990932852,4.309842362999916,1.1345053790137172,14.7602379322052,84.36130285263062,105.15192151069641,6.829515099525452,54.90620732307434,25.3046452999115,-1.5395653247833252,-0.5481806993484497,1.9255157709121704,-1.4814170753894744,0.9334838057172559,0.9334838057172559,-0.05814824939385077,-1.4816645050657056,0.9920319651949145 +illusion,illusion_0.75L,161,162,32.2,2.5170990265905857,1.803405408281833,0.7651592022739351,4.047417431138456,0.943630700930953,4.120843484997749,0.17442088574171066,1.2924724724143744,4.32008970528841,1.171716838143766,10.143041610717773,87.6838207244873,104.09644842147827,6.177177280187607,56.07248544692993,27.66496017575264,-1.4900447130203247,-0.39783501625061035,2.069704055786133,-1.3459891684817498,0.8203254881915705,0.8203254881915705,-0.14405554453857494,-1.2181605044421808,1.2493785675945623 +illusion,illusion_0.75L,162,163,32.4,2.592253964394331,1.937220455147326,0.7181597175076604,4.028573399409652,1.1144861346110702,4.074755823239684,0.13252557255327702,1.3795372797176242,4.323912318795919,1.1573332594707608,5.728042125701904,90.47328233718872,103.31521034240723,4.687706381082535,55.28338551521301,28.782667964696884,-1.4182300567626953,-0.3169158697128296,2.203312873840332,-1.2376864960083567,0.7271086039143035,0.7271086039143035,-0.18054356075433864,-1.0440244736271331,1.4762042699260285 +illusion,illusion_0.75L,163,164,32.6,2.6959902606904507,2.064617641735822,0.6881486042402685,4.072287469170988,1.258435077033937,4.0161332581192255,0.047712819650769234,1.3538607163354754,4.327163565903902,1.0923747904598713,1.4941930770874023,92.5000250339508,102.8009295463562,2.7475163340568542,54.56801652908325,29.08688336610794,-1.3296968936920166,-0.3169972896575928,2.3279166221618652,-1.1732091881744835,0.6669560169883422,0.6669560169883422,-0.1564877055175331,-0.9839533066459349,1.660960605173523 +illusion,illusion_0.75L,164,165,32.800000000000004,2.759559080004692,2.178613096475601,0.6830017082393169,4.125562496483326,1.4082766138017178,3.953382489271462,-0.07105234544724226,1.2661719229072332,4.328709561377764,0.9800454135984182,-2.651873230934143,93.7351942062378,102.49100625514984,0.5014047026634216,54.27960753440857,28.776516020298004,-1.209062099456787,-0.35769402980804443,2.476869821548462,-1.0720870027248277,0.5809874448134007,0.5809874448134007,-0.1369750967319594,-0.9386814746214451,1.8958823767350612 +illusion,illusion_0.75L,165,166,33.0,2.811329672113061,2.2554247989319265,0.6994254072196782,4.210180486552417,1.4309941325336695,3.9061313727870584,-0.2179149305447936,0.9951642714440823,4.321355372667313,0.8254538988694549,-6.772828102111816,94.13483142852783,102.37635374069214,-2.0693406462669373,53.93848419189453,27.87434607744217,-1.1537166833877563,-0.44589877128601074,2.5571868419647217,-1.165491428345144,0.6426290347044579,0.6426290347044579,0.011774744957387728,-1.0885278059904686,1.9145578072602638 +illusion,illusion_0.75L,166,167,33.2,2.828662982210517,2.291870303452015,0.7344700861722231,4.297603154554963,1.4453998301178217,3.8834052393212914,-0.3786961315199733,0.6880075670778751,4.301363602280617,0.6353163626044989,-10.86021363735199,93.56086254119873,102.54922211170197,-4.987615346908569,52.67406702041626,26.340699195861816,-1.0791081190109253,-0.5818045139312744,2.6336307525634766,-1.2023224819008957,0.6663347452747712,0.6663347452747712,0.12321436288997045,-1.2481392592060456,1.9672960072887054 +illusion,illusion_0.75L,167,168,33.4,2.7987651992589235,2.278066473081708,0.7890509441494942,4.376867087557912,1.430422649718821,3.894378896802664,-0.5299518816173077,0.3705188864842057,4.27533034235239,0.4176800139248371,-14.842760562896729,91.83706045150757,103.18419933319092,-8.182720839977264,49.24793243408203,24.140827357769012,-0.9935768246650696,-0.7350270748138428,2.6994972229003906,-1.2080286273013225,0.671904916517367,0.671904916517367,0.21445180263625296,-1.4069319913312097,2.0275923063830237 +illusion,illusion_0.75L,168,169,33.6,2.739119343459606,2.2158895153552294,0.8516435045748949,4.442406352609396,1.377161592245102,3.9444201393052936,-0.6545042851939797,0.06815302185714245,4.255935084074736,0.181675044586882,-18.52770447731018,88.93102407455444,104.43097949028015,-11.33168637752533,42.21661686897278,21.258702874183655,-0.9026499390602112,-0.8885896801948547,2.7372734546661377,-1.204413000842206,0.6752945248103774,0.6752945248103774,0.30176306178199486,-1.5638842050052322,2.0619789298557603 +illusion,illusion_0.75L,169,170,33.800000000000004,2.6598444674164057,2.1122732432559133,0.9081094758585095,4.476063419133425,1.2806013692170382,4.038671497255564,-0.7447102107107639,-0.2088190522044897,4.25069872289896,-0.06273522740229964,-21.583712100982666,85.22072434425354,106.26519918441772,-13.770346343517303,30.55567443370819,17.55206137895584,-0.8245078325271606,-1.0234495401382446,2.7224597930908203,-1.2144949608800668,0.6928653530872544,0.6928653530872544,0.38998712835290616,-1.716314893225499,2.029594440003566 +illusion,illusion_0.75L,170,171,34.0,2.5551924481987953,1.980722474399954,0.9552479605190456,4.4656883692368865,1.1522005079314113,4.16265579406172,-0.7984888507053256,-0.44477719347923994,4.255966749042273,-0.3050520026590675,-23.460963368415833,81.47377967834473,108.2509845495224,-14.51493687927723,14.44426029920578,12.528390809893608,-0.7696592807769775,-1.1046137809753418,2.6552000045776367,-1.2392864177508596,0.7240488997564405,0.7240488997564405,0.46962713697388203,-1.8286626807317823,1.9311511048211962 +illusion,illusion_0.75L,171,172,34.2,2.4551295209676027,1.8262880621477962,0.9872569935396314,4.4296435080468655,1.011122833006084,4.312962060794234,-0.8315059822052717,-0.6518891314044595,4.2625246569514275,-0.5346263060346246,-23.45273196697235,78.56325507164001,109.51458513736725,-12.675619125366211,-4.219267889857292,5.612257122993469,-0.7544893026351929,-1.1493676900863647,2.5156517028808594,-1.2484497051033463,0.7458974091030708,0.7458974091030708,0.4939604024681534,-1.8952650991894355,1.7697542937777886 +illusion,illusion_0.75L,172,173,34.4,2.351904520764947,1.6578240029048175,1.008895254926756,4.369695030618459,0.8625111659057438,4.449903266504407,-0.851307762786746,-0.8401043596677482,4.266215488314629,-0.7411434198729694,-21.231290698051453,77.08772420883179,109.37598049640656,-8.409596420824528,-22.518496215343475,-3.0544890090823174,-0.7930536866188049,-1.1475141048431396,2.320004463195801,-1.247540252428699,0.7616590723122247,0.7616590723122247,0.454486565809894,-1.9091731771553644,1.558345390883576 +illusion,illusion_0.75L,173,174,34.6,2.27150390855968,1.4808871928835288,1.009678453556262,4.290860815672204,0.7393789128400385,4.559152643196285,-0.8694828720763326,-0.9995868313126266,4.271505866199732,-0.915178214199841,-17.23470687866211,77.3264229297638,107.96208381652832,-3.1429287046194077,-37.301623821258545,-12.163475528359413,-0.8810577392578125,-1.153875470161438,2.0853796005249023,-1.1785523731084453,0.7278577452598367,0.7278577452598367,0.2974946338506328,-1.8817332154212747,1.3575218552650656 +illusion,illusion_0.75L,174,175,34.800000000000004,2.2089602425694466,1.3029702968196943,1.0030211851699278,4.215002612909302,0.6522159092128277,4.6207025879994035,-0.8892141049727798,-1.1262123007327318,4.28431574255228,-1.04875722900033,-12.306353449821472,79.13995385169983,105.94692528247833,1.4268167316913605,-46.640780568122864,-20.141933113336563,-1.0017887353897095,-1.1995034217834473,1.8577836751937866,-1.0335160111948538,0.6378632765479368,0.6378632765479368,0.03172727580514434,-1.837366698331384,1.2199203986458498 +illusion,illusion_0.75L,175,176,35.0,2.189244143664837,1.128771371440962,0.9940338495653123,4.177311842795461,0.6040169391781092,4.634926444850862,-0.9068899089470506,-1.209762878715992,4.302870947867632,-1.1358453193679452,-7.17214047908783,81.85813426971436,103.9834052324295,4.284542798995972,-51.05087757110596,-26.04217529296875,-1.1261860132217407,-1.3167152404785156,1.658636212348938,-0.8148299467272211,0.49299284231638907,0.49299284231638907,-0.31135606649451963,-1.8097080827949048,1.1656433700325488 +illusion,illusion_0.75L,176,177,35.2,2.206341130658984,0.968889996784128,0.9766628850229608,4.159666900704906,0.5811802111566067,4.608662333339453,-0.9180065244436264,-1.2548328377306461,4.317605402320623,-1.172684133052826,-2.2422850131988525,84.5679521560669,102.4735152721405,5.256383121013641,-52.89684534072876,-29.757986962795258,-1.2404639720916748,-1.4939298629760742,1.4831352233886719,-0.5699362165890389,0.32732752306424173,0.32732752306424173,-0.6705277555026359,-1.8212573860403158,1.1558077003244303 +illusion,illusion_0.75L,177,178,35.4,2.247533993795514,0.8334908670803998,0.9514823286735918,4.150498651142698,0.5758062470704317,4.55881399102509,-0.9093352127820253,-1.242864178493619,4.3205698020756245,-1.1579367564991117,2.327510714530945,86.63443922996521,101.59768164157867,4.729655385017395,-54.23004627227783,-31.69938325881958,-1.3275740146636963,-1.6923376321792603,1.3367385864257812,-0.3337101087643064,0.16568930302481155,0.16568930302481155,-0.9938639058993899,-1.8580269352040717,1.1710492834009698 +illusion,illusion_0.75L,178,179,35.6,2.318211831152439,0.7278653574758209,0.9226080946973525,4.163428020547144,0.5762982182204723,4.497125977650285,-0.870491610839963,-1.1646850034594536,4.313694778829813,-1.0926421964541078,6.667935848236084,87.82984018325806,101.33216381072998,3.245122730731964,-55.881619453430176,-32.42918699979782,-1.3802751302719116,-1.8850352764129639,1.2204034328460693,-0.1397584395925897,0.03243670795045683,0.03243670795045683,-1.240516690679322,-1.9174719843634207,1.1879667248956125 +illusion,illusion_0.75L,179,180,35.800000000000004,2.3987034801393747,0.6570392433786765,0.8964742155512795,4.191651911241934,0.566997507121414,4.4308973010629416,-0.8048538584262133,-1.0427102097310126,4.306355491280556,-0.9800192201510072,10.9553724527359,88.0344033241272,101.58734023571014,1.2051448225975037,-57.76344537734985,-32.303278148174286,-1.406391978263855,-2.050632953643799,1.1309263706207275,-0.029588413166697247,-0.04219820050501977,-0.04219820050501977,-1.3768035650971577,-2.008434753138779,1.1731245711257472 +illusion,illusion_0.75L,180,181,36.0,2.4818165693432093,0.6281933601712808,0.8818922942737117,4.245601157890633,0.54548418847844,4.3611262226477265,-0.7159443339332938,-0.8864044793881476,4.304846283048391,-0.825186783913523,15.393376350402832,87.11814880371094,102.31331586837769,-1.1897489428520203,-59.07445549964905,-31.40488713979721,-1.3981907367706299,-2.1801578998565674,1.081120252609253,-0.02131249161185811,-0.04550967229899483,-0.04550967229899483,-1.3768782451587718,-2.1346482275575727,1.1266299249082476 +illusion,illusion_0.75L,181,182,36.2,2.551321405917406,0.6429778804886155,0.8867275973898359,4.324776600697078,0.5119926645420492,4.29087330121547,-0.60943269636482,-0.7068727281875908,4.305643495172262,-0.6348655442707241,20.055121183395386,85.04284620285034,103.54788899421692,-3.770817816257477,-58.07909965515137,-29.547007381916046,-1.3541841506958008,-2.2688522338867188,1.0845749378204346,-0.11746096543800921,0.024214150504214715,0.024214150504214715,-1.2367231852577916,-2.2930663843909334,1.06036078731622 +illusion,illusion_0.75L,182,183,36.4,2.6018000207841396,0.698532079695724,0.9047638304764405,4.411327681737021,0.47111097956076264,4.2269452242180705,-0.4882031353190541,-0.5052952910773456,4.300057888031006,-0.41710209916345775,24.745428562164307,82.11678266525269,105.2348256111145,-6.079942733049393,-52.32618451118469,-26.215829700231552,-1.2905313968658447,-2.304609775543213,1.1399708986282349,-0.3033364391296539,0.15637378936426172,0.15637378936426172,-0.9871949577361908,-2.4609835649074747,0.9835971092639731 +illusion,illusion_0.75L,183,184,36.6,2.60525313206017,0.7921323776827194,0.9275171541958116,4.460287440451793,0.42469907202757895,4.177802591584623,-0.35907013807445765,-0.29344120412133634,4.284902475774288,-0.18102116882801056,28.726881742477417,79.19160723686218,106.95652365684509,-7.132413983345032,-40.061768889427185,-20.593085885047913,-1.2521709203720093,-2.237253189086914,1.232437252998352,-0.5701241803851763,0.34471055335152956,0.34471055335152956,-0.682046739986833,-2.5819637424384436,0.8877266996468225 +illusion,illusion_0.75L,184,185,36.800000000000004,2.597569255158305,0.9167122425424168,0.94874747992435,4.495064215007005,0.37907864316366613,4.156582523137331,-0.23510167375206947,-0.09112470434047282,4.267012234777212,0.06342367123579606,30.927571654319763,77.28181481361389,108.05898010730743,-5.982718244194984,-21.82117998600006,-12.234653159976006,-1.27254056930542,-2.0583300590515137,1.3310463428497314,-0.891865326321984,0.5706998760185772,0.5706998760185772,-0.3806752429834359,-2.6290299350700908,0.7603464668311543 +illusion,illusion_0.75L,185,186,37.0,2.565707080066204,1.0573159706837032,0.9519035193079617,4.4695141186821274,0.3588541876524687,4.15268843062222,-0.12469547800719738,0.10946323163807392,4.256516695022583,0.30574665288440883,30.737820267677307,76.98764204978943,108.28867852687836,-2.8502468951046467,-0.38867818657308817,-2.1281043998897076,-1.3579556941986084,-1.7744431495666504,1.4214497804641724,-1.1904459261530986,0.7779832357941863,0.7779832357941863,-0.16750976804550977,-2.5524263853608367,0.6434665446699861 +illusion,illusion_0.75L,186,187,37.2,2.518495311960578,1.2088393705198541,0.9467488707741722,4.4119930535089225,0.37652612081728876,4.161630989983678,-0.027761096134781837,0.3210039285477251,4.256634972989559,0.5353140295483172,28.39655578136444,78.29470634460449,107.90552198886871,1.0039787739515305,20.6748828291893,7.751538977026939,-1.465773105621338,-1.4312901496887207,1.527145504951477,-1.430735625812221,0.9410561699751544,0.9410561699751544,-0.03503747980911687,-2.372346319663875,0.5860893349763227 +illusion,illusion_0.75L,187,188,37.4,2.496623434126377,1.3527508126571774,0.9255538461729884,4.347731126472354,0.46227278653532267,4.1756294667720795,0.048475805670022964,0.5592243978753686,4.261587280780077,0.7418270106427372,24.586978554725647,80.77136874198914,107.16095864772797,4.263924807310104,38.29796314239502,15.862361341714859,-1.5464433431625366,-1.1255050897598267,1.6456434726715088,-1.5165815024231624,0.990557118626654,0.990557118626654,-0.029861840739374257,-2.116062208386481,0.6550863540448548 +illusion,illusion_0.75L,188,189,37.6,2.479579532518983,1.4925263822078705,0.8895501960068941,4.258679924532771,0.5921513657085598,4.184643039479852,0.10257610119879246,0.7973035681061447,4.264732822775841,0.9158758912235498,20.030951499938965,83.88233780860901,106.18038177490234,6.133199483156204,50.36430358886719,21.683736890554428,-1.5947171449661255,-0.8617900609970093,1.7712647914886475,-1.5037627631463746,0.9674330253987338,0.9674330253987338,-0.0909543818197509,-1.829223086395743,0.8038317660899137 +illusion,illusion_0.75L,189,190,37.800000000000004,2.4977915454655886,1.6348340432159603,0.8368073613382876,4.171406268142164,0.7562884129583836,4.182333592325449,0.14024274423718452,1.0367739014327526,4.267173353582621,1.0495007736608386,15.292781591415405,87.18003630638123,105.14774918556213,6.467576324939728,55.99638223648071,25.391356647014618,-1.5958678722381592,-0.6491312980651855,1.9001672267913818,-1.4248427950639593,0.895135806102842,0.895135806102842,-0.1710250771741999,-1.5442671041680276,1.0050314206885398 +illusion,illusion_0.75L,190,191,38.0,2.552708610892296,1.7776249442249537,0.7743923924863338,4.1014933958649635,0.9309362503699958,4.159683594480157,0.15152967534959316,1.2339956010691822,4.276519641280174,1.1366773396730423,10.664796829223633,90.26545882225037,104.24356460571289,5.649185925722122,56.71560764312744,27.493955940008163,-1.5617761611938477,-0.4984198808670044,2.019930601119995,-1.325106065505014,0.8073835147160953,0.8073835147160953,-0.23667009568883368,-1.3058033955830997,1.2125470864038999 +illusion,illusion_0.75L,191,192,38.2,2.637977944687009,1.9238214008510113,0.7236732635647058,4.0853244718164206,1.095850602723658,4.113879287615418,0.13066246174275875,1.3571755262091756,4.2969645000994205,1.1736537562683225,6.241083145141602,92.7885353565216,103.55305671691895,4.169193655252457,55.59269189834595,28.518524020910263,-1.493614912033081,-0.40494680404663086,2.146667718887329,-1.251684647066988,0.7387767749176379,0.7387767749176379,-0.24193026496609304,-1.1437235789642688,1.4078909439696912 +illusion,illusion_0.75L,192,193,38.400000000000006,2.7282931841909885,2.0631157094612718,0.6863171001896262,4.100927384570241,1.239393255673349,4.050872288644314,0.07469486445188522,1.3887829845771194,4.322068765759468,1.1590953217819333,1.9733071327209473,94.61605548858643,103.07351350784302,2.330005168914795,54.66291904449463,28.826183080673218,-1.4085779190063477,-0.36332643032073975,2.274862289428711,-1.2097774538124622,0.6941692499734595,0.6941692499734595,-0.1988004651938855,-1.0574956802941993,1.5806930394552514 +illusion,illusion_0.75L,193,194,38.6,2.8260573744773865,2.1847645984962583,0.6685223197564483,4.163102013990283,1.3576181372627616,3.9827001746743917,-0.021246494725346565,1.3151251478120685,4.3388912454247475,1.0940383654087782,-2.2235870361328125,95.7384705543518,102.76618003845215,0.20430982112884521,54.27935719490051,28.545978665351868,-1.3121576309204102,-0.39236652851104736,2.3964810371398926,-1.1879074177012963,0.6661140449725118,0.6661140449725118,-0.12425021321911389,-1.0584805734835592,1.7303669921673808 +illusion,illusion_0.75L,194,195,38.800000000000004,2.8902837075293064,2.2769864881411195,0.6761228432878852,4.242529394105077,1.4277184382081032,3.9257629541680217,-0.14786014799028635,1.1319981422275305,4.3393815867602825,0.9816939709708095,-6.4040303230285645,96.09867334365845,102.63502597808838,-2.262677252292633,53.976160287857056,27.657486498355865,-1.2244482040405273,-0.46554791927337646,2.504039764404297,-1.2116387472403147,0.6746823764952161,0.6746823764952161,-0.012809456800212615,-1.1402302957685926,1.8293573879090808 +illusion,illusion_0.75L,195,196,39.0,2.9244408942759037,2.3222280433401465,0.6956433644518256,4.315727623179555,1.4800961362197995,3.8901609368622303,-0.2894545905292034,0.9011869551613927,4.326771479099989,0.8271691622212529,-10.56455671787262,95.52339911460876,102.77646481990814,-5.120323598384857,52.88364887237549,26.103071868419647,-1.1284459829330444,-0.5900546312332153,2.5954277515411377,-1.1861437856703856,0.6513981667117275,0.6513981667117275,0.05769780273734115,-1.2414527979449428,1.9440295848294102 +illusion,illusion_0.75L,196,197,39.2,2.8952390421181917,2.329904353246093,0.7460210472345352,4.387281136587262,1.47736887447536,3.8886484690010548,-0.42883632704615593,0.6196962203830481,4.31040208786726,0.6371686467900872,-14.603164792060852,93.80987286567688,103.37351262569427,-8.283127844333649,49.72662627696991,23.870612680912018,-1.0317273139953613,-0.713781476020813,2.681147336959839,-1.2057957774964483,0.6651950925456105,0.6651950925456105,0.17406846350108696,-1.3789765685664235,2.0159522444142284 +illusion,illusion_0.75L,197,198,39.400000000000006,2.8433757834136486,2.2845157654955983,0.8020572131499648,4.447490209713578,1.4342133654281497,3.9278577314689755,-0.5494136130437255,0.3353861393406987,4.295442719012499,0.419720628997311,-18.35225522518158,90.88329076766968,104.59307730197906,-11.444338038563728,42.92566776275635,20.95399908721447,-0.9301208257675171,-0.8556261658668518,2.7317466735839844,-1.2119830268859442,0.6742026696349845,0.6742026696349845,0.2818622011184271,-1.5298288355018363,2.057544003949 +illusion,illusion_0.75L,198,199,39.6,2.75632506236434,2.1990026580169797,0.8601282024756074,4.476581467315555,1.343499287031591,4.009489784948528,-0.6491286912932992,0.04524190444499254,4.279371351003647,0.18392973288428038,-21.486791968345642,87.08437085151672,106.43015205860138,-13.946500979363918,31.25520646572113,17.21764449030161,-0.8398332595825195,-0.9862957000732422,2.7333385944366455,-1.2430629802705435,0.7055494823767856,0.7055494823767856,0.403229720688024,-1.6918451824500278,2.02778911205986 +illusion,illusion_1L,2,3,0.6,1.933213323354721,-0.3866797196678817,1.711843826342374,5.356900976039469,-0.3436895494814962,2.4916432448662817,0.9215773898176849,1.4994652301538736,5.722800735384226,2.1052337251603603,13.21585476398468,94.19899582862854,96.64212167263031,-1.6181141138076782,-54.75180745124817,-30.207371711730957,1.0165796279907227,-1.4483609199523926,0.7956888675689697,-0.003233774320213767,0.04011677134717356,0.04011677134717356,1.0198134023109364,-1.488477691299566,0.7555720962217962 +illusion,illusion_1L,3,4,0.8999999999999999,2.0271451212465763,-0.4210854531265795,1.6580484225414693,5.343241966329515,-0.5147154442965984,2.521621878258884,1.0661504929885268,1.6175855416804552,5.713127087801695,1.965455012395978,18.15887987613678,94.40651535987854,97.15708196163177,-5.229043215513229,-55.29239773750305,-27.947498112916946,1.0144485235214233,-1.2672500610351562,1.1852527856826782,-0.2934698308673578,0.2582971165885085,0.2582971165885085,1.3079183543887811,-1.5255471776236647,0.9269556690941697 +illusion,illusion_1L,4,5,1.2,2.1572215482592583,-0.4337211139500141,1.528771361336112,5.214764270931482,-0.6328072631731629,2.6392886647954583,1.0966522386297584,1.5604972140863538,5.692195612937212,1.7112427158281207,23.049724102020264,92.56439208984375,98.31960201263428,-9.340913593769073,-51.343244314193726,-24.51515942811966,0.9565014839172363,-1.0150333642959595,1.3979549407958984,-0.5141891792944825,0.42289950705220924,0.42289950705220924,1.4706906632117187,-1.4379328713481687,0.9750554337436892 +illusion,illusion_1L,5,6,1.5,2.2872567642480135,-0.48101693391799927,1.4128399780020118,5.112936720252037,-0.6885279435664415,2.7717832126654685,1.006509584840387,1.3244912261143327,5.6618573144078255,1.357297645881772,27.23238170146942,88.38610649108887,100.76389610767365,-13.321642577648163,-39.49494957923889,-20.08196860551834,0.8439123034477234,-0.7624201774597168,1.4802873134613037,-0.542833374995109,0.4487150908746309,0.4487150908746309,1.3867456784428325,-1.2111352683343477,1.0315722225866728 +illusion,illusion_1L,6,7,1.7999999999999998,2.377364318817854,-0.5547813489101827,1.3385969796217978,5.0545582780614495,-0.6979369791224599,2.864010981284082,0.8213735418394208,0.9448101045563817,5.642481613904238,0.9241479565389454,29.982328414916992,82.61712789535522,104.68969345092773,-15.871444903314114,-18.468743562698364,-14.737244881689548,0.6637389659881592,-0.5080299377441406,1.4794838428497314,-0.42751987089747345,0.37055978910144194,0.37055978910144194,1.0912588368856326,-0.8785897268455826,1.1089240537482894 +illusion,illusion_1L,7,8,2.1,2.3826188407838345,-0.6225813704077154,1.318339811405167,5.019298463594168,-0.6665082182735205,2.903324435465038,0.5750650307163596,0.48362184315919876,5.632458254694939,0.43700356036424637,30.269578099250793,77.35701203346252,108.5647314786911,-15.187166258692741,8.430007845163345,-7.70203210413456,0.4598759114742279,-0.2919694185256958,1.3993465900421143,-0.2387916198897977,0.23748327498457322,0.23748327498457322,0.6986675313640256,-0.529452693510269,1.161863315057541 +illusion,illusion_1L,8,9,2.4,2.307743765413761,-0.6488359067589045,1.362278126180172,5.032300017774105,-0.6240039365366101,2.9076271457597613,0.2811149461194873,-0.061774044297635555,5.603872239589691,-0.07566207932541147,26.738792657852173,75.13853907585144,109.63053107261658,-10.178499668836594,34.16922688484192,2.725706249475479,0.28491419553756714,-0.22416341304779053,1.2204726934432983,-0.10308519393302529,0.13959884648422338,0.13959884648422338,0.3879993894705924,-0.3637622595320139,1.0808738469590748 +illusion,illusion_1L,9,10,2.6999999999999997,2.169084269553423,-0.6225460092537105,1.4451710158027709,5.059426301158965,-0.5957789835520089,2.883151755668223,-0.025533721782267094,-0.646846427116543,5.562879145145416,-0.5837283679284155,18.969330191612244,77.22982168197632,106.29327595233917,-2.4577245116233826,49.33345913887024,15.372323989868164,0.19582365453243256,-0.37619590759277344,0.9790956974029541,-0.09283622111299383,0.12944811305544424,0.12944811305544424,0.2886598756454264,-0.5056440206482177,0.8496475843475099 +illusion,illusion_1L,10,11,3.0,2.0178125705569983,-0.5727712414227426,1.5210670535452664,5.059946677647531,-0.5917053204029799,2.8419331647455692,-0.2973584923893213,-1.1864223051816225,5.55048044770956,-1.057157409377396,9.56403911113739,82.31104016304016,101.20386183261871,3.5762161016464233,52.22650766372681,25.603750348091125,0.16859157383441925,-0.636157751083374,0.7611830234527588,-0.17534497266139382,0.18566269543259906,0.18566269543259906,0.34393654649581307,-0.8218204465159731,0.5755203280201597 +illusion,illusion_1L,11,12,3.3,1.9071499118581414,-0.5375109030865133,1.5681142103858292,5.0433783326298,-0.6146127707324922,2.7925142785534263,-0.503264949657023,-1.6211426700465381,5.573469679802656,-1.4677423750981688,1.5651404857635498,87.36693263053894,97.80836701393127,5.279828608036041,51.50195360183716,30.74108511209488,0.11460626870393753,-0.8256304264068604,0.6437320709228516,-0.287043918630982,0.2648989460485607,0.2648989460485607,0.40165018733491953,-1.090529372455421,0.3788331248742909 +illusion,illusion_1L,12,13,3.5999999999999996,1.845426158979535,-0.5176971899345517,1.5862052096053958,5.017836578190327,-0.6407295004464686,2.73542245849967,-0.6341640837490559,-1.9090576679445803,5.608124658465385,-1.7907777801156044,-4.389318823814392,91.03153347969055,96.61460220813751,3.7728309631347656,51.9726037979126,31.973731517791748,0.02620646357536316,-0.9028537273406982,0.6256673336029053,-0.37715352823180504,0.32966235477141304,0.32966235477141304,0.4033599918071682,-1.2325160821121113,0.29600497883149224 +illusion,illusion_1L,13,14,3.9,1.8184134969487786,-0.4952644812874496,1.596730260644108,5.011874018236995,-0.6366751040332019,2.67912435811013,-0.7040157215669751,-2.044706547167152,5.659202579408884,-2.006553579121828,-9.369489550590515,93.77684593200684,96.80209457874298,1.1053144931793213,53.68818640708923,31.53051733970642,-0.06454113125801086,-0.914879560470581,0.649329423904419,-0.40975893597231794,0.3516074151682106,0.3516074151682106,0.3452178047143071,-1.2664869756387915,0.29772200873620835 +illusion,illusion_1L,14,15,4.2,1.8035449320450425,-0.45534991659224033,1.5919185243546963,4.987381980754435,-0.593087577726692,2.614896686282009,-0.727822829503566,-2.048733236733824,5.730922799557447,-2.101584803313017,-14.238929748535156,95.18494606018066,97.01530933380127,-1.9377529621124268,55.46439290046692,30.08013665676117,-0.14207804203033447,-0.9118171334266663,0.6759622097015381,-0.39268091665560345,0.33507285210970317,0.33507285210970317,0.250602874625269,-1.2468899855363693,0.3408893575918349 +illusion,illusion_1L,15,16,4.5,1.8049635691568255,-0.3980242763645947,1.5854015364311635,4.975766642019153,-0.516963133122772,2.553377009462565,-0.7145132985897362,-1.9459897303022444,5.774288903921843,-2.0694960840046406,-19.360488653182983,95.31441330909729,97.64967560768127,-5.482414364814758,55.64010143280029,27.615150809288025,-0.21607762575149536,-0.9000123739242554,0.6878583431243896,-0.34023381014653264,0.2906606063065139,0.2906606063065139,0.12415618439503728,-1.1906729802307692,0.39719773681787574 +illusion,illusion_1L,16,17,4.8,1.8172512063756585,-0.3232033923268318,1.5846467576920986,4.986544721759856,-0.41530991438776255,2.4962081806734204,-0.6643597735092044,-1.7440294614061713,5.751272197812796,-1.911501633003354,-24.41449463367462,93.25342774391174,98.99708926677704,-9.484252333641052,50.57598352432251,23.88908863067627,-0.26620739698410034,-0.9126079678535461,0.6890585422515869,-0.26703962112981305,0.22918522623177195,0.22918522623177195,0.0008322241457127122,-1.141793194085318,0.45987331601981496 +illusion,illusion_1L,17,18,5.1,1.8335765926167369,-0.2369452267885208,1.590798026882112,5.015172646380961,-0.29957390506751835,2.4516991106793284,-0.5878148367628455,-1.4752035785932094,5.6986394338309765,-1.6364414477720857,-28.73782515525818,88.81731033325195,101.69146656990051,-13.183740340173244,36.80028021335602,19.050478376448154,-0.26876527070999146,-0.969505786895752,0.6507892608642578,-0.18566299988570956,0.16053767621265952,0.16053767621265952,-0.0831022708242819,-1.1300434631084115,0.4902515846515983 +illusion,illusion_1L,18,19,5.3999999999999995,1.8449360504746437,-0.1480388455092907,1.600037794560194,5.045011639595032,-0.18544845806900412,2.429746265988797,-0.4839141038246453,-1.1532766657182947,5.654868204146624,-1.260355580598116,-31.487593054771423,83.23066234588623,105.76702654361725,-15.03564827144146,13.85243684053421,13.15678246319294,-0.2070186734199524,-1.0500409603118896,0.5502111911773682,-0.11244861478302365,0.09767321177195509,0.09767321177195509,-0.09457005863692874,-1.1477141720838446,0.45253797940541307 +illusion,illusion_1L,19,20,5.7,1.8557164585217834,-0.06928271614015102,1.625762670300901,5.107241799123585,-0.08951545896707103,2.4345400743186474,-0.34397467970848083,-0.7774648183840327,5.605330225080252,-0.8056137594394386,-31.468302011489868,78.92112135887146,109.4011127948761,-13.200756907463074,-13.940420746803284,5.255912244319916,-0.07053878903388977,-1.1432905197143555,0.4093756377696991,-0.058251913117274845,0.04987527961781135,0.04987527961781135,-0.012286875916614926,-1.1931657993321667,0.35950035815188774 +illusion,illusion_1L,20,21,6.0,1.8519884906709194,-0.01061515649780631,1.6670430195517838,5.186074529774487,-0.027688649424817413,2.462620032019913,-0.1584837445989251,-0.34465613862266764,5.556699819862843,-0.299636711133644,-27.20530331134796,78.2753586769104,109.50956046581268,-7.159399101510644,-37.74670958518982,-5.7223552372306585,0.1387898176908493,-1.2448821067810059,0.27997124195098877,-0.03777332561634397,0.028994238309123635,0.028994238309123635,0.17656314330719328,-1.2738763450901296,0.25097700364186515 +illusion,illusion_1L,21,22,6.3,1.826219609938562,0.023760483600199223,1.7104374710470438,5.2470945520326495,-0.01707376941340044,2.5148247368633747,0.07134093903005123,0.12560810864670202,5.555659998208284,0.2267197414766997,-19.116079807281494,82.01076984405518,105.66823482513428,0.20585879683494568,-48.79289269447327,-17.396845668554306,0.36053991317749023,-1.309443473815918,0.21572744846343994,-0.07864967139936502,0.05589607950663775,0.05589607950663775,0.43918958457685525,-1.3653395533225556,0.1598313689568022 +illusion,illusion_1L,22,23,6.6,1.7917450750246644,0.0342324492521584,1.7479129019193351,5.287570878863335,-0.055317606893368065,2.5887833908200264,0.34023006446659565,0.6251425220398232,5.592211149632931,0.7410288671962917,-10.368984937667847,87.9219651222229,101.00391507148743,4.559558629989624,-48.62775206565857,-25.270822644233704,0.5330544710159302,-1.2949142456054688,0.25904226303100586,-0.17673193148400052,0.12747195059534094,0.12747195059534094,0.7097864024999307,-1.4223861962008097,0.13157031243566492 +illusion,illusion_1L,23,24,6.8999999999999995,1.768247107975185,0.02579786814749241,1.7716276925057173,5.3115024929866195,-0.12793361383955926,2.674242132343352,0.6182977231219411,1.108661832404323,5.606893915683031,1.2112932745367289,-3.5376012325286865,93.16920042037964,98.03679585456848,4.820576310157776,-46.30160629749298,-28.19719910621643,0.6487786769866943,-1.2239305973052979,0.3883059024810791,-0.3112405074209628,0.22785392604205257,0.22785392604205257,0.9600191844076571,-1.4517845233473503,0.16045197643902653 +illusion,illusion_1L,24,25,7.199999999999999,1.7903365660458803,0.006734160706400871,1.7663381295278668,5.323012825101614,-0.20543308346532285,2.756602189037949,0.8767181425355375,1.548003201605752,5.605695769190788,1.6079578781500459,1.4196008443832397,97.32686281204224,96.65625393390656,2.9025644063949585,-44.88897621631622,-28.29827070236206,0.7303120493888855,-1.1115903854370117,0.5700929164886475,-0.43641574977686526,0.32236459747139107,0.32236459747139107,1.1667277991657508,-1.4339549829084028,0.2477283190172564 +illusion,illusion_1L,25,26,7.5,1.8523454200476408,-0.019174243789166212,1.7183907912112772,5.289127002470195,-0.2783026429824531,2.8124843374826014,1.085475494619459,1.8926483462564647,5.637506954371929,1.9058084581047297,5.522778630256653,100.78681707382202,95.81745564937592,0.3012746572494507,-43.8878059387207,-27.27259397506714,0.7959497570991516,-0.9878544211387634,0.762554407119751,-0.539530024143496,0.4012141632759953,0.4012141632759953,1.3354797812426478,-1.3890685844147588,0.3613402438437557 +illusion,illusion_1L,26,27,7.8,1.9630857277661562,-0.05199114093557,1.6664194990880787,5.295924725942314,-0.34323291038163006,2.8353967936709523,1.2334667844697833,2.1237006585579365,5.6829797104001045,2.0856272894889116,9.289905428886414,103.8203239440918,95.16281187534332,-2.7337826788425446,-42.95908510684967,-25.59371516108513,0.8525607585906982,-0.8951082229614258,0.9716395735740662,-0.6136346061777879,0.4592656143894952,0.4592656143894952,1.466195364768486,-1.3543738373509209,0.512373959184571 +illusion,illusion_1L,27,28,8.1,2.086235210299492,-0.09300996316596866,1.613923639524728,5.314082489348948,-0.41403211071155965,2.8183359536342323,1.2932776589877903,2.172523207264021,5.69962989538908,2.1354956552386284,12.622463703155518,105.84198236465454,94.35222148895264,-6.332340836524963,-41.56695604324341,-23.180261254310608,0.8879126906394958,-0.873159646987915,1.1655378341674805,-0.684873886757929,0.5159964106480598,0.5159964106480598,1.5727865773974248,-1.389156057635975,0.6495414235194207 +illusion,illusion_1L,28,29,8.4,2.2091560531407595,-0.15450804494321346,1.5819206601008773,5.372997373342514,-0.4863457288593054,2.801137510687113,1.2704222463071346,2.054498763754964,5.715371575206518,2.051648451015353,15.156632661819458,107.03669786453247,94.31704878807068,-10.318931937217712,-39.545536041259766,-20.50608992576599,0.8882545828819275,-0.8783764243125916,1.3269178867340088,-0.7218321706082713,0.5493513546856028,0.5493513546856028,1.6100867534901988,-1.4277277789981944,0.777566532048406 +illusion,illusion_1L,29,30,8.7,2.316000172868371,-0.24439138360321522,1.5670615248382092,5.450123222544789,-0.553435122128576,2.8030428220517933,1.1703797499649227,1.7873243778012693,5.750197917222977,1.8388143507763743,16.52989089488983,106.63337707519531,95.30310928821564,-14.198624156415462,-36.28951609134674,-18.17724797874689,0.8385000824928284,-0.8676967620849609,1.4323474168777466,-0.6961564511407918,0.5391157038208417,0.5391157038208417,1.5346565336336202,-1.4068124659058028,0.8932317130569049 +illusion,illusion_1L,30,31,9.0,2.380293793976307,-0.3677660715766251,1.5807151212356985,5.541724036447704,-0.600813131313771,2.8404922923073173,0.9970272658392787,1.3932414003647864,5.742636509239674,1.510008005425334,16.808483004570007,103.81749868392944,97.3568469285965,-17.55408039316535,-31.072765588760376,-16.778102610260248,0.7399653792381287,-0.831091582775116,1.4584940671920776,-0.5686112839340705,0.456746718743137,0.456746718743137,1.3085766631721991,-1.2878383015182528,1.0017473484489408 +illusion,illusion_1L,31,32,9.299999999999999,2.3916529025882483,-0.5096183158457279,1.614079810678959,5.619812523946166,-0.6162354256957769,2.918109646998346,0.7623893907293677,0.9085433557629585,5.665794480592012,1.0857797460630536,16.61224663257599,97.7557897567749,99.99850690364838,-20.461740531027317,-23.027867078781128,-16.326252184808254,0.6077125668525696,-0.7817840576171875,1.4113465547561646,-0.34134259467522665,0.3023680504723779,0.3023680504723779,0.9490551615277962,-1.0841521080895653,1.1089785042837867 +illusion,illusion_1L,32,33,9.6,2.3377789184451103,-0.6476592971011996,1.6532657900825143,5.644310498610139,-0.6137180025689304,3.035681089386344,0.47922576777637005,0.3447335329838097,5.59135852381587,0.5929587059654295,16.616860032081604,88.2355272769928,102.62000262737274,-23.279038444161415,-11.583639681339264,-16.24891124665737,0.44438034296035767,-0.7378225326538086,1.2962141036987305,-0.08399915835018135,0.12535716173265987,0.12535716173265987,0.528379501310539,-0.8631796943864685,1.1708569419660706 +illusion,illusion_1L,33,34,9.9,2.2337823174893856,-0.7593561022076756,1.6816482821013778,5.597078881692141,-0.6025120965205133,3.1758813420310616,0.17012667376548052,-0.26225874898955226,5.558366887271404,0.06296794163063169,16.822436451911926,76.71924829483032,104.73411977291107,-25.78769400715828,2.5105221197009087,-15.627478808164597,0.2616695463657379,-0.7014594078063965,1.1240205764770508,0.14316120513315567,-0.031883194849218977,-0.031883194849218977,0.11850834123258225,-0.6695762129571775,1.1559037713262699 +illusion,illusion_1L,34,35,10.2,2.1034234669059515,-0.8370869036298245,1.7089424945879728,5.521308456081897,-0.5872753099538386,3.3121469896286726,-0.15237019397318363,-0.8920156979002059,5.529783200472593,-0.4701845464296639,16.265562176704407,66.36844277381897,105.72607219219208,-26.770468056201935,17.227977514266968,-12.997795641422272,0.09036552906036377,-0.7103433609008789,0.8935815691947937,0.31660084745317163,-0.15267473448328994,-0.15267473448328994,-0.22623531839280786,-0.557668626417589,1.0462563036780836 +illusion,illusion_1L,35,36,10.5,1.9946102984249592,-0.8718158351257443,1.7348200781270862,5.4642504546791315,-0.5800995277240872,3.3853654749691486,-0.4359995946288109,-1.452098716981709,5.5184559896588326,-0.9721080423332751,13.631466031074524,61.8683397769928,104.61662709712982,-24.554289132356644,28.057825565338135,-7.092603296041489,-0.0092087984085083,-0.7949641346931458,0.6762027740478516,0.39485120932237305,-0.20720521078996368,-0.20720521078996368,-0.40406000773088135,-0.5877589239031821,0.8834079848378152 +illusion,illusion_1L,36,37,10.799999999999999,1.913280924782157,-0.876209931448102,1.7606636974960566,5.43460831977427,-0.5781326326541603,3.3751182490959764,-0.6637162296101451,-1.9055650918744504,5.579106509685516,-1.4102784916758537,7.867616415023804,63.68246674537659,100.66242814064026,-18.072982132434845,34.21396017074585,3.271588683128357,-0.016794174909591675,-0.9728354811668396,0.4771328270435333,0.40693812460919276,-0.21572290107021197,-0.21572290107021197,-0.42373229951878444,-0.7571125800966276,0.6928557281137453 +illusion,illusion_1L,37,38,11.1,1.8723374232649803,-0.8656648569740355,1.7970599583350122,5.466457339935005,-0.5778579507023096,3.265628474764526,-0.7949556456878781,-2.167769242078066,5.670757964253426,-1.756184850819409,-0.5074620246887207,68.29020380973816,94.4257378578186,-8.086736127734184,37.89761960506439,17.229269817471504,0.043836116790771484,-1.2040876150131226,0.3823392391204834,0.38824352628836944,-0.20291447601344192,-0.20291447601344192,-0.34440740949759796,-1.0011731389996807,0.5852537151339253 +illusion,illusion_1L,38,39,11.4,1.8679396016523242,-0.8455833303742111,1.859325508121401,5.586590617895126,-0.583373592235148,3.087653894908726,-0.8168652420863509,-2.21710407640785,5.707974545657635,-1.9872256089001894,-9.448155760765076,72.09610342979431,88.01595270633698,2.466188371181488,42.19953715801239,31.86575621366501,0.11292259395122528,-1.423924446105957,0.44191786646842957,0.34017552393129,-0.16929510329167663,-0.16929510329167663,-0.22725292998006474,-1.2546293428142805,0.6112129697601062 +illusion,illusion_1L,39,40,11.7,1.871571526862681,-0.7994967745617032,1.9328942289575934,5.737359984777868,-0.5883821286261082,2.913302625529468,-0.7469073170796037,-2.0821967627853155,5.710371769964695,-2.088225446641445,-16.33685827255249,74.5303750038147,84.09152030944824,9.440691769123077,47.44791090488434,43.02142113447189,0.1456843614578247,-1.5543450117111206,0.6088975667953491,0.24565354114668336,-0.1038288852835001,-0.1038288852835001,-0.09996917968885866,-1.4505161264276205,0.7127264520788492 +illusion,illusion_1L,40,41,12.0,1.8640379421412945,-0.7052436703816056,1.9988558487966657,5.861749639734626,-0.5811653099954128,2.8258763486519456,-0.6239594658836722,-1.8290842417627573,5.732146557420492,-2.0524656865745783,-19.788727164268494,76.0821521282196,84.18464958667755,10.187321901321411,53.0243456363678,48.130786418914795,0.10647997260093689,-1.5385940074920654,0.7743865251541138,0.08838949568406629,0.0033781106298977903,0.0033781106298977903,0.0180904769168706,-1.5419721181219632,0.771008414524216 +illusion,illusion_1L,41,42,12.299999999999999,1.8506643828004599,-0.563117559067905,2.0370815182104707,5.924827419221401,-0.5525602609850466,2.8595448238775134,-0.4899088526144624,-1.5323779662139714,5.734624341130257,-1.8821575213223696,-21.057483553886414,76.57274603843689,86.99431717395782,6.195925176143646,58.610498905181885,48.6307218670845,-0.005176961421966553,-1.3978393077850342,0.8414602279663086,-0.11216373941118252,0.1379561010479914,0.1379561010479914,0.10698677798921596,-1.5357954088330255,0.7035041269183172 +illusion,illusion_1L,42,43,12.6,1.8345930147916079,-0.40262239053845406,2.0467594731599092,5.928111961111426,-0.48916228115558624,3.0128401704132557,-0.3593200817704201,-1.2078024446964264,5.685302894562483,-1.588319311849773,-22.970783710479736,75.9238600730896,90.36626815795898,0.9556010365486145,64.28302526473999,48.23498576879501,-0.15235307812690735,-1.1836940050125122,0.777901291847229,-0.274440219260655,0.24241078434269958,0.24241078434269958,0.12208714113374763,-1.426104789355212,0.5354905075045294 +illusion,illusion_1L,43,44,12.9,1.8255390459671617,-0.2528690965846181,2.0191731164231896,5.863885278813541,-0.3701983659993857,3.206030698493123,-0.2070318441838026,-0.7842620543669909,5.649800878018141,-1.190069131553173,-26.67311131954193,73.59305620193481,93.31623613834381,-4.244156181812286,68.61547231674194,48.04589003324509,-0.27593696117401123,-0.9420957565307617,0.6716594696044922,-0.3023800774934275,0.24848156089355755,0.24848156089355755,0.02644311631941626,-1.1905773174243193,0.42317790871093464 +illusion,illusion_1L,44,45,13.2,1.820030389353633,-0.11493201600387692,1.9632656476460397,5.746561684645712,-0.20883584511466324,3.346265177242458,-0.01678138505667448,-0.2423986152280122,5.654963199049234,-0.7133737672120333,-31.71069622039795,69.68371868133545,96.0730791091919,-9.03300791978836,67.8076684474945,46.850089728832245,-0.3448081612586975,-0.7181262969970703,0.6047234535217285,-0.22120477835372573,0.17494139446175228,0.17494139446175228,-0.12360338290497178,-0.8930676914588226,0.42978205905997624 +illusion,illusion_1L,45,46,13.5,1.8352949991822243,0.027521862648427486,1.9118001218885183,5.658895242959261,-0.024143946575350128,3.3849996980279684,0.20499597303569317,0.3858479994960362,5.627200473099947,-0.18934083345811814,-36.46436631679535,65.31184315681458,98.10453951358795,-11.030526459217072,57.48690962791443,41.05071872472763,-0.3289932608604431,-0.5680457353591919,0.6044790744781494,-0.1001165513490826,0.07141825797042262,0.07141825797042262,-0.22887670951136052,-0.6394639933296145,0.5330608165077269 +illusion,illusion_1L,46,47,13.799999999999999,1.8556686118245125,0.18225435633212328,1.8938438734039664,5.643356358632445,0.15430407074745744,3.318103845231235,0.4200519761070609,0.9944080229615793,5.556740798056126,0.34783140290528536,-39.06342387199402,61.93177103996277,98.55604767799377,-7.401441037654877,37.269142270088196,27.352143824100494,-0.22514784336090088,-0.5334727764129639,0.6266822814941406,-0.014346941263090718,-0.007160983118948999,-0.007160983118948999,-0.21080090209781016,-0.5263117932940149,0.6338432646130896 +illusion,illusion_1L,47,48,14.1,1.8817250384017825,0.33850304316729307,1.9058127654716372,5.693350569345057,0.2950139460153878,3.171734162606299,0.5922050913795829,1.4794241287745535,5.5304341949522495,0.8631084347143769,-39.69396650791168,60.57933568954468,98.48956763744354,-0.1397702842950821,10.241959989070892,8.119204267859459,-0.08369094133377075,-0.59348464012146,0.63767409324646,-0.009256935176260472,-0.026171569328408473,-0.026171569328408473,-0.07443400615751028,-0.5673130707930515,0.6638456625748684 +illusion,illusion_1L,48,49,14.399999999999999,1.9058154430240393,0.46993530122563243,1.9378045690245926,5.7814245810732245,0.3789706388488412,2.9832751024514437,0.7126806303858757,1.8043318996205926,5.559195764362812,1.322925672866404,-38.387638330459595,61.890971660614014,98.53790402412415,7.223312743008137,-19.10044252872467,-11.880138330161572,0.0732913613319397,-0.729745626449585,0.6342439651489258,-0.07600366784708779,0.010410207516563075,0.010410207516563075,0.14929502917902748,-0.740155833966148,0.6238337576323627 +illusion,illusion_1L,49,50,14.7,1.9301918800920248,0.5423095426522195,1.9782514427788556,5.886694765649736,0.399530166760087,2.794638043269515,0.792710343375802,1.984950853511691,5.579251330345869,1.6973913880065084,-34.51569378376007,65.61639904975891,98.52882325649261,12.368214875459671,-45.45067250728607,-28.06452140212059,0.2539413273334503,-0.9293709993362427,0.6418429613113403,-0.16575776488352278,0.06978284051995887,0.06978284051995887,0.4196990922169731,-0.9991538398562015,0.5720601207913815 +illusion,illusion_1L,50,51,15.0,1.9456122536212206,0.5397587083280087,2.0081852562725544,5.961982766166329,0.35340918111614883,2.6524460990913212,0.8592847152613103,2.0719786116387695,5.611106753349304,1.962239621207118,-28.085634112358093,70.84307074546814,98.50304424762726,14.523997902870178,-64.3090546131134,-37.574759125709534,0.44856879115104675,-1.1277663707733154,0.6919165849685669,-0.2563148389540394,0.1370592621026363,0.1370592621026363,0.7048836301050861,-1.2648256328759517,0.5548573228659306 +illusion,illusion_1L,51,52,15.299999999999999,1.952876104041934,0.46859070425853133,2.0071110338903964,5.967098171822727,0.24421606212854385,2.6005945401266217,0.9402671130374074,2.1247502882033587,5.704183597117662,2.100402722135186,-20.39092183113098,76.4017403125763,98.32211136817932,13.760288059711456,-72.90127277374268,-41.40913337469101,0.6024619340896606,-1.2078306674957275,0.8100345134735107,-0.35174746294384407,0.21463848684054865,0.21463848684054865,0.9542093970335047,-1.4224691543362762,0.5953960266329621 +illusion,illusion_1L,52,53,15.6,1.9685877487063408,0.3564675571396947,1.9790205406025052,5.926628829911351,0.08900611283024773,2.6526697329245508,1.030380662996322,2.1497674388228916,5.787536967545748,2.1031037904322147,-12.847822904586792,81.30722045898438,98.05343747138977,11.039775609970093,-73.09223413467407,-42.775124311447144,0.6720407009124756,-1.1204750537872314,0.9828812479972839,-0.46737266188149873,0.3111590887247322,0.3111590887247322,1.1394133627939742,-1.4316341425119636,0.6717221592725517 +illusion,illusion_1L,53,54,15.899999999999999,2.003411063924432,0.23041514214128256,1.9394996343180537,5.882410332560539,-0.08118015102809295,2.7754062903113663,1.074480067472905,2.067779983917717,5.777969490736723,1.9703952129930258,-5.815812945365906,84.89457964897156,98.01388084888458,7.912912964820862,-71.41465544700623,-43.53421628475189,0.6875909566879272,-0.9677736163139343,1.1312923431396484,-0.5884730940214677,0.4130911850008791,0.4130911850008791,1.276064050709395,-1.3808648013148135,0.7182011581387693 +illusion,illusion_1L,54,55,16.2,2.047616755589843,0.09181187488138676,1.8960349261760712,5.839686607941985,-0.23118723765946925,2.9155274387449026,1.0243847500532866,1.8175822624471039,5.727802868932486,1.711116754449904,1.0095477104187012,86.99970245361328,98.27736020088196,4.930996894836426,-71.57424092292786,-44.09366250038147,0.7037420272827148,-0.8695921897888184,1.1895372867584229,-0.6449883225245336,0.46844371408316837,0.46844371408316837,1.3487303498072485,-1.3380359038719867,0.7210935726752545 +illusion,illusion_1L,55,56,16.5,2.1009657066315413,-0.06069033406674862,1.8457439728081226,5.7924536522477865,-0.35802688216790557,3.0410507461056113,0.8806047262623906,1.4031825703568757,5.697423126548529,1.3422793708741665,8.008778095245361,87.66194581985474,98.83608818054199,1.7717957496643066,-73.29849004745483,-44.143104553222656,0.7305182218551636,-0.8514076471328735,1.1582409143447876,-0.628286670497216,0.47095928859346886,0.47095928859346886,1.3588048923523797,-1.3223669357263423,0.6872816257513188 +illusion,illusion_1L,56,57,16.8,2.1382749546319246,-0.2279814798384905,1.7988088075071573,5.735892569646239,-0.47437369357794523,3.1440150924026966,0.67906454205513,0.8837553905323148,5.641894415020943,0.8879187516868114,15.511789917945862,86.69304251670837,99.80849921703339,-2.1230876445770264,-73.89875054359436,-42.91595816612244,0.7592133283615112,-0.892059326171875,1.0859860181808472,-0.5629091070557768,0.4388892066832198,0.4388892066832198,1.322122435417288,-1.3309485328550947,0.6470968114976274 +illusion,illusion_1L,57,58,17.099999999999998,2.156274626031518,-0.39927050238475204,1.7535596271045506,5.663393880240619,-0.5991602665744722,3.2293667318299413,0.4512757295742631,0.303391192574054,5.55590121075511,0.3775017103180289,23.2283353805542,84.20998454093933,101.2479305267334,-6.472824513912201,-66.79954528808594,-38.716597855091095,0.7423211336135864,-0.92649906873703,1.0194175243377686,-0.5076528314369882,0.4147006117813421,0.4147006117813421,1.2499739650505748,-1.3411996805183721,0.6047169125564265 +illusion,illusion_1L,58,59,17.4,2.1876778919249773,-0.5608900100924075,1.7076036310754716,5.602885154075921,-0.7024467922747135,3.2915156334638596,0.21625938825309277,-0.269928015768528,5.530285649001598,-0.15600657206960022,29.218950867652893,81.49787783622742,102.0956963300705,-8.322951197624207,-46.268296241760254,-27.90626883506775,0.6755601167678833,-0.9150866866111755,0.9541711211204529,-0.42567224117769165,0.3697881715708081,0.3697881715708081,1.101232357945575,-1.2848748581819835,0.5843829495496448 +illusion,illusion_1L,59,60,17.7,2.177533460780978,-0.6963187479414046,1.6627404256723821,5.503014312125742,-0.8089794428087771,3.327165497466922,-0.020916806533932686,-0.8508130558766425,5.57273905724287,-0.6782861310057342,31.092607975006104,80.15699982643127,101.30470991134644,-5.46269491314888,-14.974376559257507,-9.76949855685234,0.5484015941619873,-0.8626410961151123,0.8343302011489868,-0.3982334219192869,0.3626907910538346,0.3626907910538346,0.9466350160812742,-1.225331887168947,0.4716394100951522 +illusion,illusion_1L,60,61,18.0,2.1569719538092613,-0.7977091590873897,1.6458372701890767,5.448646494187415,-0.8867835276760161,3.301665303297341,-0.23677840363234282,-1.3603403349407017,5.589881911873817,-1.1558743426576257,29.0460467338562,80.87029457092285,100.20331144332886,-0.7287722080945969,19.765660166740417,9.661370888352394,0.3812219500541687,-0.7907251715660095,0.7328672409057617,-0.37365923836028436,0.3543930563129103,0.3543930563129103,0.7548811884144531,-1.1451182278789198,0.3784741845928514 +illusion,illusion_1L,61,62,18.3,2.121244091540575,-0.8567533222958446,1.6610004240646958,5.443244939669967,-0.9351797052659094,3.20678623393178,-0.40441122837364674,-1.744002162013203,5.580991506576538,-1.5583039494231343,23.686790466308594,83.34445357322693,99.51577186584473,3.532227873802185,48.349788784980774,24.31378662586212,0.20350712537765503,-0.7293674945831299,0.7044795751571655,-0.36572247842635286,0.3542786686985784,0.3542786686985784,0.5692296038040079,-1.0836461632817083,0.35020090645858715 +illusion,illusion_1L,62,63,18.599999999999998,2.0667784847319126,-0.8665730420034379,1.7143823497463018,5.495543184224516,-0.938309240154922,3.0591345857828856,-0.5155499093234539,-1.9694090588018298,5.622274708002806,-1.8600309267640114,16.50650203227997,86.69574856758118,99.03326332569122,5.807515978813171,63.48947882652283,32.703617215156555,0.08482423424720764,-0.7599146366119385,0.7385427951812744,-0.35424663924318245,0.3467425845992791,0.3467425845992791,0.4390708734903901,-1.1066572212112176,0.3918002105819953 +illusion,illusion_1L,63,64,18.9,2.0118446554988623,-0.826540490379557,1.7885555571410805,5.588955769781023,-0.8974355296231806,2.8945975936949253,-0.5794125609099865,-2.0562606514431536,5.685918498784304,-2.0420316141098738,9.254762530326843,90.00303149223328,98.71383011341095,5.678655207157135,66.27809405326843,36.79065257310867,0.03832203149795532,-0.8896089196205139,0.7848913669586182,-0.34298678823339346,0.3345029409518687,0.3345029409518687,0.3813088197313488,-1.2241118605723826,0.45038842600674944 +illusion,illusion_1L,64,65,19.2,1.9670398905873299,-0.748440099414438,1.855493348557502,5.678026587702334,-0.8238596492446959,2.764313481748104,-0.6008073687553406,-2.025474386755377,5.700573790818453,-2.092971932142973,2.4797171354293823,92.5682783126831,98.71681034564972,4.304206371307373,65.49898386001587,38.89813423156738,0.00900760293006897,-1.0161724090576172,0.8056506514549255,-0.3337484207180925,0.3200457613608112,0.3200457613608112,0.3427560236481615,-1.3362181704184284,0.48560489009411434 +illusion,illusion_1L,65,66,19.5,1.9302238943055272,-0.6460299482569098,1.8951032543554902,5.720430403016508,-0.7360082818195224,2.7010460617020726,-0.5851505557075143,-1.906309393234551,5.708947312086821,-2.0098795648664236,-4.0510594844818115,94.1193163394928,99.03624653816223,2.5287851691246033,66.06270670890808,40.1447668671608,-0.04690513014793396,-1.0700416564941406,0.7772320508956909,-0.3394427240375626,0.3142697049145421,0.3142697049145421,0.29253759388962863,-1.3843113614086828,0.4629623459811488 +illusion,illusion_1L,66,67,19.8,1.8995193531736732,-0.5308252875693142,1.9073543953709304,5.714228143915534,-0.6338927778415382,2.7032222133129835,-0.5351228173822165,-1.704138412605971,5.758476443588734,-1.798283657990396,-10.760825872421265,94.52279806137085,99.60547089576721,0.29752403497695923,68.34660768508911,40.60136824846268,-0.13762632012367249,-1.038233995437622,0.6981791257858276,-0.3390593261054985,0.30274692907134504,0.30274692907134504,0.201433005981826,-1.3409809245089672,0.3954321967144826 +illusion,illusion_1L,67,68,20.099999999999998,1.8773790216073394,-0.41528738802298903,1.9038410973735154,5.68506121635437,-0.5119738634675741,2.7396184159442782,-0.4493639571592212,-1.4107017777860165,5.770137533545494,-1.4718190068379045,-17.995458841323853,93.32399368286133,100.53954720497131,-2.8496354818344116,70.53017020225525,39.71725106239319,-0.251354455947876,-0.9452930092811584,0.6044139862060547,-0.29840062723324623,0.26138110031760764,0.26138110031760764,0.04704617128537025,-1.206674109598766,0.34303288588844705 +illusion,illusion_1L,68,69,20.4,1.8710102885961533,-0.30579097801819444,1.8967256764881313,5.664461641572416,-0.3642900555860251,2.7716184267774224,-0.3239813959226012,-1.0122528474312276,5.691960919648409,-1.0513253509998322,-25.83397626876831,90.02282619476318,102.13474035263062,-7.092338800430298,66.45870804786682,36.39223873615265,-0.3395172953605652,-0.8582601547241211,0.5463472604751587,-0.1935150833839141,0.17306591795841536,0.17306591795841536,-0.1460022119766511,-1.0313260726825364,0.37328134251674333 +illusion,illusion_1L,69,70,20.7,1.8732643220573664,-0.20179868442937732,1.88985193381086,5.652968189679086,-0.1908278209157288,2.7793082408607006,-0.16297982074320316,-0.5167874624021351,5.608741194009781,-0.5635032430291176,-32.83703327178955,85.87695360183716,103.91108989715576,-10.325491428375244,47.98308312892914,28.03957760334015,-0.3169593811035156,-0.8475192785263062,0.507239818572998,-0.025356323199409392,0.03845480428786868,0.03845480428786868,-0.29160305790410623,-0.8859740828141749,0.46878501428512936 +illusion,illusion_1L,70,71,21.0,1.8800902180373669,-0.09883730672299862,1.8816003575921059,5.643290933221579,-0.010906923307629768,2.763649099506438,0.02263521309942007,0.034363502891210373,5.571840330958366,-0.03921425741282292,-35.42873561382294,83.66732001304626,103.67932617664337,-8.198599331080914,15.719443559646606,11.476020701229572,-0.12992370128631592,-0.9278140068054199,0.43264269828796387,0.15801937481899558,-0.10731884748275834,-0.10731884748275834,-0.2879430761053115,-0.8204951593226616,0.5399615457707222 +illusion,illusion_1L,71,72,21.3,1.888597966171801,-0.001280335709452629,1.8794876523315907,5.647573270834982,0.12516223068814725,2.7365521527826786,0.22562453523278236,0.576411301153712,5.528272595256567,0.4884665831923485,-32.562848925590515,84.65394377708435,101.77901089191437,-2.176256477832794,-19.871187210083008,-8.467257022857666,0.15931981801986694,-1.0580968856811523,0.35111236572265625,0.26073517964533105,-0.19286328222964821,-0.19286328222964821,-0.1014153616254641,-0.8652336034515041,0.5439756479523045 +illusion,illusion_1L,72,73,21.599999999999998,1.8846654566004872,0.07843924686312675,1.8846576567739248,5.653980770148337,0.17468517762608826,2.7093435637652874,0.44950051233172417,1.0736862022895366,5.49035519361496,0.9863246232271194,-26.321464776992798,87.90727853775024,100.46946406364441,3.069659322500229,-48.163145780563354,-23.521719127893448,0.442023903131485,-1.1663737297058105,0.34353625774383545,0.21735881919697003,-0.16853461610889983,-0.16853461610889983,0.22466508393451495,-0.9978391135969107,0.5120708738527353 +illusion,illusion_1L,73,74,21.9,1.872649765573442,0.12682576198130846,1.8864794401451945,5.645608645863831,0.1265007012989372,2.7001791168004274,0.6819660775363445,1.4904328563716263,5.540846381336451,1.4230776578187943,-18.91186237335205,91.96674823760986,100.14441013336182,5.624176561832428,-62.26390600204468,-31.635089218616486,0.6225366592407227,-1.1752506494522095,0.43637678027153015,0.029499307777304057,-0.03420719711536091,-0.03420719711536091,0.5930373514634186,-1.1410434523368487,0.47058397738689106 +illusion,illusion_1L,74,75,22.2,1.8821897683665156,0.14202523743733764,1.8662664224393666,5.614722613245249,0.01160632473329315,2.6995879015885293,0.888271548319608,1.788149421372509,5.6466106325387955,1.7713193083181977,-11.902332305908203,95.34814357757568,99.94924068450928,5.717374384403229,-63.40482831001282,-35.25376468896866,0.6780859231948853,-1.0850419998168945,0.6002850532531738,-0.2354627208336562,0.160426762613538,0.160426762613538,0.9135486440285414,-1.2454687624304326,0.43985829063963583 +illusion,illusion_1L,75,76,22.5,1.9255218794569373,0.12544426135718822,1.8389152828603983,5.603352445177734,-0.11888697918038815,2.7034241356886923,1.0451899725012481,1.971492965822108,5.700563546270132,2.0092176273465157,-5.719536542892456,98.1482446193695,100.21809935569763,4.8625752329826355,-61.24574542045593,-37.151049077510834,0.6847200393676758,-0.9632091522216797,0.7805523872375488,-0.4745783153628754,0.3390303828192804,0.3390303828192804,1.1592983547305513,-1.3022395350409601,0.44152200441826844 +illusion,illusion_1L,76,77,22.8,2.0147201139479876,0.07542886305600405,1.8082511378452182,5.631222389638424,-0.2336972247576341,2.6890402077697217,1.1330582783557475,2.032419331953861,5.713463295251131,2.121864352375269,0.029724836349487305,100.23915767669678,100.58812499046326,3.858141601085663,-60.5635404586792,-38.34074288606644,0.7065297365188599,-0.8916959166526794,0.9544150829315186,-0.6202448945658731,0.4517276611487844,0.4517276611487844,1.3267746310847328,-1.3434235778014638,0.5026874217827342 +illusion,illusion_1L,77,78,23.099999999999998,2.0925647113472223,-0.001002743374556303,1.7777514294721186,5.64806757029146,-0.33295585308223963,2.662084822077304,1.1519360705278814,1.9709162879735231,5.7473802007734776,2.102196216583252,5.781733989715576,101.79769992828369,100.89539289474487,2.6172205805778503,-61.743271350860596,-38.89797180891037,0.7582865953445435,-0.882764995098114,1.0935710668563843,-0.6855533168619202,0.5075233753190513,0.5075233753190513,1.4438399122064638,-1.3902883704171654,0.5860476915373329 +illusion,illusion_1L,78,79,23.4,2.1798117086291313,-0.0980981276370585,1.7562979483045638,5.692407605238259,-0.4254781815689057,2.6559469988569617,1.1119545670226216,1.7984309524763376,5.7578058913350105,1.9514315063133836,11.920028924942017,102.8010606765747,101.07284188270569,0.6386503577232361,-64.21993374824524,-38.35838884115219,0.8281499147415161,-0.9213626384735107,1.2009328603744507,-0.699210154086463,0.5271040612487149,0.5271040612487149,1.5273600688279791,-1.4484666997222257,0.6738287991257358 +illusion,illusion_1L,79,80,23.7,2.2518588230013847,-0.2147035556845367,1.7447553691454232,5.741369561292231,-0.5301294731907547,2.703168604057282,1.0129386209882796,1.4957477687858045,5.7006580755114555,1.6789969522505999,18.635976314544678,102.69603729248047,101.28800868988037,-2.7341872453689575,-65.61576724052429,-35.927245020866394,0.889137327671051,-0.9927817583084106,1.2632941007614136,-0.7022700196010045,0.5407445307165635,0.5407445307165635,1.5914073472720556,-1.5335262890249741,0.7225495700448501 +illusion,illusion_1L,80,81,24.0,2.3022855166345835,-0.34908909583464265,1.734286022838205,5.770857562310994,-0.6337114027701318,2.81437486410141,0.8547634351998568,1.0758154676295817,5.651192273944616,1.3019484467804432,25.77611804008484,100.4358172416687,102.01738476753235,-7.860148698091507,-59.34364199638367,-30.753766745328903,0.8954256772994995,-1.0387340784072876,1.2776410579681396,-0.670644967723303,0.5304468581204131,0.5304468581204131,1.5660706450228026,-1.5691809365277007,0.7471941998477265 +illusion,illusion_1L,81,82,24.3,2.3355288431048393,-0.49930019304156303,1.7041778191924095,5.743884481489658,-0.7276830147020519,2.9741781763732433,0.6509874947369099,0.5742919747717679,5.653458181768656,0.8439195225946605,32.2776198387146,96.35921120643616,103.63245010375977,-13.568516075611115,-38.25330436229706,-22.09993153810501,0.7867532968521118,-0.9504090547561646,1.2431117296218872,-0.5902724562877156,0.48561170069927206,0.48561170069927206,1.3770257531398276,-1.4360207554554365,0.7575000289226151 +illusion,illusion_1L,82,83,24.599999999999998,2.340983599424362,-0.6525501958094537,1.6600681119598448,5.661119823344052,-0.7889567059464753,3.1411669915542006,0.40718086529523134,0.025405024643987417,5.631353706121445,0.3336610388942063,35.064005851745605,93.02139282226562,104.90193367004395,-15.714851021766663,-5.237940326333046,-8.849398791790009,0.5974826812744141,-0.7523548603057861,1.1176396608352661,-0.4368444482669007,0.3869995699334018,0.3869995699334018,1.0343271295413148,-1.1393544302391878,0.7306400909018643 +illusion,illusion_1L,83,84,24.9,2.308048540726304,-0.779454130679369,1.6228347085416317,5.5537179578095675,-0.8145665633492172,3.2616383396089077,0.12638862244784832,-0.5617893184535205,5.562247708439827,-0.1967408461496234,30.772018432617188,92.01825857162476,103.59176397323608,-10.886774398386478,27.811285853385925,7.616864703595638,0.3975691497325897,-0.5855858325958252,0.8919068574905396,-0.25791255318583395,0.2669400060235252,0.2669400060235252,0.6554817029184237,-0.8525258386193504,0.6249668514670144 +illusion,illusion_1L,84,85,25.2,2.227156423032284,-0.8613971585873514,1.6185523418243974,5.464261106681079,-0.8239594753831625,3.2952529145404696,-0.1577852526679635,-1.1395299807190895,5.531724542379379,-0.7138615474104881,22.062882781028748,92.94482469558716,100.96140205860138,-3.730570524930954,49.57604110240936,21.040331572294235,0.2339988499879837,-0.5446861982345581,0.6622859239578247,-0.12762667358148527,0.1785004900392264,0.1785004900392264,0.361625523569469,-0.7231866882737845,0.4837854339185983 +illusion,illusion_1L,85,86,25.5,2.1243744995445013,-0.8955027442425489,1.6601269599050283,5.444628419354558,-0.8310321718454361,3.2308109803125262,-0.3919576993212104,-1.6149475704878569,5.556187126785517,-1.1850278824567795,13.83858323097229,94.7968065738678,99.22447800636292,0.025106966495513916,55.744653940200806,28.356842696666718,0.1461460143327713,-0.6509461402893066,0.540458083152771,-0.0799307982531583,0.14652469646756394,0.14652469646756394,0.2260768125859296,-0.7974708367568706,0.39393338668520705 +illusion,illusion_1L,86,87,25.8,2.0343451760709286,-0.8936480735428631,1.7445801640860736,5.523505504243076,-0.8389608119614422,3.0890735797584057,-0.5482831038534641,-1.9355270196683705,5.570359993726015,-1.5803732676431537,7.421121001243591,96.6501772403717,98.69348108768463,0.4022926092147827,54.202014207839966,31.51782751083374,0.10359872877597809,-0.8334581851959229,0.5653951168060303,-0.09968716725824844,0.1609668195009799,0.1609668195009799,0.20328589603422653,-0.9944250046969028,0.40442829730505037 +illusion,illusion_1L,87,88,26.099999999999998,1.974157989025116,-0.8643844339530915,1.840370736317709,5.654899461660534,-0.834727194160223,2.912784810177982,-0.6293280748650432,-2.0933833438903093,5.592581816017628,-1.8747297581285238,2.165430784225464,98.00758957862854,98.82494807243347,-0.45230239629745483,52.827370166778564,33.02930146455765,0.06980007886886597,-1.0063269138336182,0.6911938190460205,-0.14439998082472538,0.1912070068930678,0.1912070068930678,0.21420005969359135,-1.197533920726686,0.4999868121529527 +illusion,illusion_1L,88,89,26.4,1.9336676923558116,-0.8024098933674395,1.9061988568864763,5.746065406128764,-0.8042216068133712,2.756362082436681,-0.6630495190620422,-2.1303206449374557,5.681069567799568,-2.049239818006754,-2.6873767375946045,98.85954856872559,99.06626343727112,-1.4801427721977234,53.105998039245605,34.136323630809784,0.029952317476272583,-1.1265153884887695,0.8017693758010864,-0.19462437352181983,0.2223355258381623,0.2223355258381623,0.2245766909980924,-1.3488509143269318,0.5794338499629241 +illusion,illusion_1L,89,90,26.7,1.9063864601776004,-0.7045822567306459,1.9322403823025525,5.770867224782705,-0.7442481000907719,2.6670158840715885,-0.6731788162142038,-2.0906057325191796,5.775141064077616,-2.0925814751535654,-7.555684447288513,99.26232695579529,99.19680655002594,-2.659425139427185,54.79938983917236,35.01372039318085,-0.03253611922264099,-1.1763396263122559,0.81593918800354,-0.2495018768681616,0.25341042182991125,0.25341042182991125,0.21696575764552062,-1.429750048142167,0.5625287661736288 +illusion,illusion_1L,90,91,27.0,1.8914900720119476,-0.5856314091943204,1.9354601972736418,5.762410466559231,-0.6589702679775655,2.6571130147203803,-0.6561571499332786,-1.9712845678441226,5.78527245670557,-2.00172932818532,-12.69015371799469,99.10640716552734,99.20243918895721,-4.352521896362305,57.585716247558594,35.40258705615997,-0.11802081018686295,-1.1625595092773438,0.7506587505340576,-0.29072253037918716,0.2723162236280007,0.2723162236280007,0.17270172019232422,-1.4348757329053443,0.47834252690605694 +illusion,illusion_1L,91,92,27.3,1.875051879324019,-0.4653887590393424,1.9358735298737884,5.746798939071596,-0.5498474347405136,2.703907317481935,-0.5923950811848044,-1.7346375971101224,5.747079849243164,-1.7821937799453735,-18.24508011341095,97.97924757003784,99.2369145154953,-7.028159499168396,60.448843240737915,34.869298338890076,-0.2081165760755539,-1.1050028800964355,0.6709375381469727,-0.2850749649267854,0.25640558228750765,0.25640558228750765,0.07695838885123152,-1.361408462383943,0.414531955859465 +illusion,illusion_1L,92,93,27.599999999999998,1.8659738125279546,-0.3508746740408242,1.9371788366697729,5.7403314858675,-0.41312514804303646,2.773950924165547,-0.4695773823186755,-1.3522799126803875,5.717074498534203,-1.4477220829576254,-24.24865961074829,95.04159688949585,99.7018575668335,-11.087800562381744,60.24015545845032,32.92517811059952,-0.2814738154411316,-1.0227124691009521,0.626955509185791,-0.21198470783755086,0.19113478832193626,0.19113478832193626,-0.06948910760358074,-1.2138472574228885,0.43582072086385476 +illusion,illusion_1L,93,94,27.9,1.8632977735251188,-0.23789505939930677,1.9380563171580434,5.739410407841206,-0.25486163212917745,2.846031100489199,-0.2972801448777318,-0.849421921884641,5.658670794218779,-1.0194698115810752,-30.32812774181366,89.74979519844055,101.17693245410919,-16.266945749521255,51.330387592315674,29.09211441874504,-0.30740028619766235,-0.9575598239898682,0.6160467863082886,-0.09161987004116323,0.09102249681955682,0.09102249681955682,-0.21578041615649912,-1.048582320809425,0.5250242894887318 +illusion,illusion_1L,94,95,28.2,1.8678444903343916,-0.11835322948172688,1.9284914596937597,5.724827409721911,-0.08807096310192719,2.9115660581737757,-0.09548477828502655,-0.2790405196719803,5.56613877415657,-0.5246902583166957,-34.9764347076416,83.33287835121155,103.54384183883667,-20.07468929514289,29.902753233909607,21.953260991722345,-0.24433809518814087,-0.9378107190132141,0.5971181392669678,0.034362643299110485,-0.01388801455434116,-0.01388801455434116,-0.27870073848725135,-0.9239227044588729,0.611006153821309 +illusion,illusion_1L,95,96,28.5,1.876970287412405,0.005428795702755451,1.9033250864595175,5.68362046033144,0.0631337461527437,2.963650389574468,0.11781149078160524,0.2987567277159542,5.525742657482624,0.004978280685463687,-34.592804312705994,78.46758961677551,104.46026623249054,-16.743051260709763,-0.7182459812611341,8.310530334711075,-0.05250241979956627,-0.9619906544685364,0.5114648342132568,0.12042289784209992,-0.08966295352505164,-0.08966295352505164,-0.1729253176416662,-0.8723277009434848,0.6011277877383084 +illusion,illusion_1L,96,97,28.799999999999997,1.8763269763439894,0.11965417070314288,1.8729824223555624,5.622291821055114,0.16866563237272203,2.989037544466555,0.3398210974410176,0.8483078272547573,5.55749936029315,0.5355245084501803,-28.172168135643005,76.87440514564514,102.67397463321686,-5.676738545298576,-32.13976323604584,-10.37062294781208,0.23996078968048096,-1.007272720336914,0.38130712509155273,0.1296481593527779,-0.10763466979542086,-0.10763466979542086,0.11031263032770305,-0.8996380505414932,0.4889417948869736 +illusion,illusion_1L,97,98,29.099999999999998,1.8739781808108091,0.2018188824877143,1.859226613305509,5.592431407421827,0.19312943913973868,2.972166519612074,0.5696264561265707,1.33238235139288,5.581863224506378,1.0327466297894716,-19.959723949432373,78.74611020088196,100.42716264724731,4.562529921531677,-54.71676588058472,-26.0486900806427,0.49773260951042175,-1.036102056503296,0.3416566848754883,0.030071103390745146,-0.041946510521152336,-0.041946510521152336,0.4676615061196766,-0.9941555459821436,0.3836031953966406 +illusion,illusion_1L,98,99,29.4,1.8749793525785208,0.23933465126901865,1.8670362187549472,5.609051790088415,0.12778022210113704,2.9143725987523794,0.7964035030454397,1.7205872281920165,5.5847326293587685,1.4644662151113153,-12.557557225227356,83.08919668197632,98.86235892772675,8.83123129606247,-62.78098821640015,-34.90722328424454,0.6385623216629028,-1.0285260677337646,0.46707677841186523,-0.17336833933389084,0.10497321112888364,0.10497321112888364,0.8119306609967937,-1.1334992788626483,0.3621035672829816 +illusion,illusion_1L,99,100,29.7,1.9019031897187233,0.23645226610824466,1.8795335781760514,5.660970346070826,0.009941063581209164,2.835790510289371,0.9889219654724002,1.9877849945260095,5.62334805727005,1.8026287434622645,-6.276184320449829,87.83200979232788,98.194020986557,8.337266743183136,-62.31940984725952,-38.35279792547226,0.6942313313484192,-1.007731556892395,0.6914972066879272,-0.41138144647883884,0.28142441346242175,0.28142441346242175,1.105612777827258,-1.2891559703548168,0.4100727932255055 +illusion,illusion_1L,100,101,30.0,1.9660121761262417,0.19934651209041476,1.8803717684932053,5.726755713112652,-0.12067849456798285,2.760509727522731,1.119133085012436,2.117587675456889,5.679276306182146,2.025150926783681,-0.6705254316329956,91.55005812644958,98.14014136791229,6.301763653755188,-61.767059564590454,-39.623406529426575,0.7253242135047913,-0.9991705417633057,0.9134254455566406,-0.613267046596129,0.43447386438627855,0.43447386438627855,1.3385912601009202,-1.4336444061495843,0.4789515811703621 +illusion,illusion_1L,101,102,30.299999999999997,2.060363069176674,0.1256737159565091,1.8544214544817805,5.769205978140235,-0.2521234564483166,2.7075520483776927,1.1759487679228187,2.0997740793973207,5.694660358130932,2.117392374202609,4.959765076637268,94.33130025863647,98.28878343105316,4.32286411523819,-63.03406357765198,-40.531931817531586,0.7583543062210083,-0.9992220401763916,1.082987666130066,-0.7500631743891665,0.5429134461890122,0.5429134461890122,1.5084174806101749,-1.5421354863654038,0.5400742199410538 +illusion,illusion_1L,102,103,30.599999999999998,2.1587202791124582,0.02582691377028823,1.8437652033753693,5.846250685863197,-0.35457481862977147,2.71041935775429,1.1892708716914058,2.02396692475304,5.700740963220596,2.073147101327777,10.578921437263489,96.26411199569702,98.43679368495941,2.575257420539856,-65.67465662956238,-41.17184281349182,0.8214980363845825,-1.0076487064361572,1.230583667755127,-0.779192677808548,0.5742149448429644,0.5742149448429644,1.6006907141931306,-1.5818636512791215,0.6563687229121625 +illusion,illusion_1L,103,104,30.9,2.231973921880126,-0.10655284859240055,1.8120708409696817,5.8561156038194895,-0.46039128210395575,2.770122664514929,1.1363424709998071,1.8122936598956585,5.741024389863014,1.8950875382870436,16.85592234134674,97.41111397743225,98.59467446804047,0.38164108991622925,-69.03706192970276,-41.075800359249115,0.8939526081085205,-1.0208444595336914,1.2946836948394775,-0.7558445669802917,0.5698479330641428,0.5698479330641428,1.6497971750888123,-1.5906923925978342,0.7248357617753347 +illusion,illusion_1L,104,105,31.2,2.2971422877162695,-0.25880959583446383,1.780206395778805,5.8575550792738795,-0.5659632734023035,2.889598603360355,1.0154176270589232,1.464871980715543,5.759721621870995,1.5946251805871725,23.74546527862549,97.06832766532898,98.99473190307617,-2.907341718673706,-70.0888991355896,-39.3656849861145,0.9439670443534851,-1.0362993478775024,1.2841081619262695,-0.6956843612796906,0.5401728718239167,0.5401728718239167,1.6396514056331757,-1.5764722197014192,0.7439352901023528 +illusion,illusion_1L,105,106,31.5,2.3492826148867607,-0.42466825107112527,1.7510102479718626,5.851303110830486,-0.666136562358588,3.049064427614212,0.8356750477105379,1.0052135330624878,5.707558244466782,1.191192539408803,30.96359074115753,94.79699730873108,100.2255767583847,-7.551825046539307,-62.40580677986145,-35.02667248249054,0.9271445870399475,-1.0095933675765991,1.2297283411026,-0.5995332718170924,0.4851854200798863,0.4851854200798863,1.52667785885704,-1.4947787876564855,0.7445429210227138 +illusion,illusion_1L,106,107,31.799999999999997,2.3779403418302536,-0.5947258323431015,1.7036942299455404,5.7853288017213345,-0.7529958966188133,3.201607847586274,0.6021496374160051,0.451303378213197,5.637025460600853,0.710989988874644,36.90554201602936,91.19595289230347,101.56773030757904,-11.859210580587387,-40.585002303123474,-26.107699424028397,0.8199090361595154,-0.9171422719955444,1.136617660522461,-0.46822584403064105,0.4045859580838995,0.4045859580838995,1.2881348801901564,-1.321728230079444,0.7320317024385614 +illusion,illusion_1L,107,108,32.1,2.3804965894669294,-0.7572810864076018,1.6582681564614177,5.697032902389765,-0.8205906488001347,3.3270776038989425,0.33049157354980707,-0.15960750170052052,5.591029301285744,0.1852790010161698,38.259100914001465,88.90573978424072,101.41620635986328,-11.662067053839564,-8.257841318845749,-10.452078701928258,0.6567550301551819,-0.7951712608337402,0.9733213186264038,-0.3108506092473706,0.30396000147348456,0.30396000147348456,0.9676056394025525,-1.0991312623072247,0.6693613171529192 +illusion,illusion_1L,108,109,32.4,2.34407652169466,-0.8919899119064212,1.6244923463091254,5.593061214312911,-0.8706756634637713,3.389095771126449,0.04320999141782522,-0.7842556806281209,5.541773978620768,-0.35166615271009505,33.499327301979065,88.73980641365051,99.10915791988373,-6.438750773668289,25.75235664844513,8.80943015217781,0.47090980410575867,-0.7020406723022461,0.7664172649383545,-0.16819105203869622,0.21150953024798969,0.21150953024798969,0.6391008561444549,-0.9135502025502358,0.5549077346903648 +illusion,illusion_1L,109,110,32.699999999999996,2.275807550176978,-0.9805264417082071,1.6303511802107096,5.536509910598397,-0.910980103071779,3.370093530975282,-0.21663738880306482,-1.3442548806779087,5.501006729900837,-0.8648128714412451,25.64324140548706,90.26532173156738,97.48566150665283,-0.8211463689804077,51.94624066352844,23.48792552947998,0.27581357955932617,-0.6429752111434937,0.6220850944519043,-0.08967807764823843,0.1620339725640978,0.1620339725640978,0.3654916572075646,-0.8050091837075914,0.4600511218878065 +illusion,illusion_1L,110,111,33.0,2.180623123422265,-1.0166410356760025,1.6805196646600962,5.541662452742457,-0.9382260614074767,3.2681943848729134,-0.4153861664235592,-1.768998394254595,5.5308290757238865,-1.320678391493857,17.522454261779785,92.48753786087036,97.20402956008911,2.1943077445030212,63.447558879852295,31.08734041452408,0.1365383118391037,-0.6782861948013306,0.5887391567230225,-0.07996009143543437,0.1583642407750947,0.1583642407750947,0.21649840327453806,-0.8366504355764253,0.43037491594792776 +illusion,illusion_1L,111,112,33.3,2.085373504087329,-1.0003245552070439,1.7678364529274404,5.62104640994221,-0.940348778385669,3.1007163925096393,-0.5462522385641932,-2.0328532555140555,5.6166197173297405,-1.6895371954888105,10.455885529518127,94.6540117263794,97.47582376003265,2.3508086800575256,63.27396035194397,34.43058878183365,0.077117919921875,-0.8301547169685364,0.6521658897399902,-0.11414617674229888,0.18207594981846764,0.18207594981846764,0.19126409666417388,-1.012230666787004,0.4700899399215226 +illusion,illusion_1L,112,113,33.6,2.0059184171259403,-0.9421031572856009,1.8588904640637338,5.723699345253408,-0.909221067558974,2.9124640859663486,-0.6230585277080536,-2.155338122975081,5.681182723492384,-1.947377109900117,4.297718405723572,96.36176824569702,97.90113270282745,1.3346344232559204,61.07046604156494,36.2308144569397,0.045497357845306396,-1.003441333770752,0.7468442916870117,-0.15623069393660782,0.2075457269640164,0.2075457269640164,0.20172805178191422,-1.2109870607347684,0.5392985647229953 +illusion,illusion_1L,113,114,33.9,1.952903694473207,-0.84917270578444,1.9204402342438698,5.793784162960947,-0.8514460641890764,2.7610694523900747,-0.6582764908671379,-2.1679990459233522,5.712814629077911,-2.0774747245013714,-1.4591425657272339,97.50035405158997,98.27449023723602,0.2582937479019165,60.83046197891235,37.60505020618439,0.0011099278926849365,-1.1205029487609863,0.8073640465736389,-0.20670177254846855,0.23583687608030712,0.23583687608030712,0.2078117004411535,-1.3563398248412935,0.5715271704933318 +illusion,illusion_1L,114,115,34.199999999999996,1.9148647552356124,-0.7294500828720629,1.9467486417852342,5.808362038806081,-0.769275997299701,2.684187493287027,-0.6640782812610269,-2.0974325598217547,5.74244000017643,-2.0714811980724335,-7.226759195327759,98.15189838409424,98.54230284690857,-0.8598476648330688,62.47931718826294,38.70700001716614,-0.06686735153198242,-1.1621806621551514,0.7846359610557556,-0.25574811284967014,0.26045971943464963,0.26045971943464963,0.18888076131768772,-1.422640381589801,0.524176241621106 +illusion,illusion_1L,115,116,34.5,1.891853753477335,-0.5977833061479032,1.959641755092889,5.811137263663113,-0.666626903694123,2.6816538302227855,-0.639992649666965,-1.946612203028053,5.747651681303978,-1.9299488049000502,-13.293316960334778,98.22733402252197,98.76442849636078,-2.404986321926117,65.52550196647644,39.22904580831528,-0.16097483038902283,-1.1403071880340576,0.696427583694458,-0.28433289313382026,0.2687723100127346,0.2687723100127346,0.12335806274479744,-1.4090794980467922,0.4276552736817234 +illusion,illusion_1L,116,117,34.8,1.8815204966813326,-0.46970450785011053,1.9739082781597972,5.829337053000927,-0.5425759009085596,2.727614250034094,-0.5662001203745604,-1.6749761416576803,5.704951472580433,-1.6622639959678054,-19.903093576431274,97.23482131958008,99.16405081748962,-4.906979203224182,68.42919588088989,38.58897686004639,-0.2642846703529358,-1.0700716972351074,0.6128480434417725,-0.2621797714687716,0.23988029247930043,0.23988029247930043,-0.002104898884164208,-1.3099519897144078,0.37296775096247203 +illusion,illusion_1L,117,118,35.1,1.8808363238349557,-0.3502356121316552,1.9826892530545592,5.846214829944074,-0.3870637738145888,2.789032645523548,-0.4293052479624748,-1.2456742697395384,5.6606014259159565,-1.2859947746619582,-27.074748277664185,94.27730441093445,100.17692446708679,-8.764879405498505,66.42566919326782,35.994504392147064,-0.3365710377693176,-0.979629635810852,0.5819460153579712,-0.1593485038382414,0.15211273875145448,0.15211273875145448,-0.17722253393107623,-1.1317423745623065,0.4298332766065167 +illusion,illusion_1L,118,119,35.4,1.8779117381200194,-0.23118406534194946,1.975098391994834,5.828108522109687,-0.21068533533252776,2.847057767212391,-0.24593621492385864,-0.702557765180245,5.649200640618801,-0.8256994769908488,-34.125831723213196,89.46107029914856,102.07972228527069,-13.186481595039368,52.23116874694824,30.097728967666626,-0.3366314768791199,-0.9156547784805298,0.5706486701965332,-0.01267655711883442,0.0319363734290965,0.0319363734290965,-0.32395491976028545,-0.9475911519096263,0.5387122967674367 +illusion,illusion_1L,119,120,35.699999999999996,1.8830561311915517,-0.10570755694061518,1.9588266732171178,5.800709477625787,-0.030372089895536192,2.8937291353940964,-0.038926489651203156,-0.1082250691979425,5.6335716508328915,-0.31128202681429684,-38.204360008239746,85.1285457611084,103.3692479133606,-14.13462944328785,23.857955634593964,17.80531518161297,-0.21389780938625336,-0.9168317914009094,0.5231554508209229,0.13038290808769654,-0.0861929424166733,-0.0861929424166733,-0.3442807174739499,-0.8306388489842361,0.6093483932375962 +illusion,illusion_1L,120,121,36.0,1.8831434426829219,0.023281376343220472,1.9192224717698991,5.72158838622272,0.12211836292408407,2.916978672146797,0.18133874982595444,0.48479586257599294,5.592386703938246,0.22399245062842965,-36.02394461631775,83.54998826980591,102.07160115242004,-8.42096135020256,-10.86873859167099,-1.0594002902507782,0.04495728015899658,-0.9710965156555176,0.4211564064025879,0.2095866107035838,-0.15740084104455232,-0.15740084104455232,-0.16462933054458723,-0.8136956746109653,0.5785572474471402 +illusion,illusion_1L,121,122,36.3,1.880598720163107,0.13455137377604842,1.895175373647362,5.670949467457831,0.20507648878265172,2.916025579907,0.41009311098605394,1.0252627107547596,5.563297774642706,0.7456860621459782,-29.315561056137085,84.79799032211304,100.29056668281555,-0.6138704717159271,-42.00282096862793,-18.522859364748,0.3449988067150116,-1.050175666809082,0.3469257354736328,0.17760681351062554,-0.14458551878243805,-0.14458551878243805,0.16739199320438605,-0.905590148026644,0.4915112542560709 +illusion,illusion_1L,122,123,36.6,1.8705407856032252,0.21050649229437113,1.8895120592787862,5.649564904160798,0.19169715233147144,2.8874732088297606,0.6473660469055176,1.4864292461425066,5.562216509133577,1.220431295223534,-21.22541069984436,87.78175115585327,99.42293763160706,4.40283939242363,-60.98896265029907,-29.096440225839615,0.5721310377120972,-1.0905463695526123,0.38749146461486816,0.01124533324759136,-0.02885978781895948,-0.02885978781895948,0.5608857044645058,-1.0616865817336527,0.41635125243382765 +illusion,illusion_1L,123,124,36.9,1.8798329401761293,0.2418014919385314,1.8969407537952065,5.673714447766542,0.09950938692782074,2.8458606684580445,0.8726246887817979,1.8447587644914165,5.566451232880354,1.6180797247216105,-13.694250583648682,91.30923748016357,99.03597831726074,5.435824394226074,-65.10850191116333,-34.005922079086304,0.6712759733200073,-1.059798240661621,0.5604081153869629,-0.2362392140124688,0.1512676483394682,0.1512676483394682,0.9075151873324762,-1.2110658890010892,0.4091404670474947 +illusion,illusion_1L,124,125,37.199999999999996,1.9248747266829014,0.23404957028105855,1.9008153467439115,5.726505420170724,-0.031677071092417464,2.8017511940561235,1.0554469772614539,2.0792168834304903,5.585979204624891,1.913615269586444,-7.1213483810424805,94.47160959243774,99.01344776153564,4.3481215834617615,-62.76686191558838,-36.26188188791275,0.6947428584098816,-0.9966656565666199,0.7944151163101196,-0.4929130079370953,0.34200597535256844,0.34200597535256844,1.187655866346977,-1.3386716319191883,0.4524091409575512 +illusion,illusion_1L,125,126,37.5,2.000071108341217,0.19155076006427407,1.886474376078695,5.773019860498607,-0.16002437041606754,2.759846393018961,1.169352326542139,2.1786802826682106,5.648293998092413,2.088709967210889,-1.1277347803115845,96.84872627258301,99.20231997966766,2.9942482709884644,-61.543452739715576,-37.7009242773056,0.7164804935455322,-0.9536663293838501,1.002204179763794,-0.680256567224266,0.484817982640962,0.484817982640962,1.3967370607697982,-1.438484312024812,0.517386197122832 +illusion,illusion_1L,126,127,37.8,2.0902331452816725,0.1135600614361465,1.858640054706484,5.807513254694641,-0.2701466146390885,2.728520834352821,1.2100935564376414,2.1500404982361943,5.725353490561247,2.132824854925275,4.742714762687683,98.56463670730591,99.39786493778229,1.7701447010040283,-62.42743134498596,-38.828808069229126,0.760411262512207,-0.9426819086074829,1.1544451713562012,-0.7651450010294583,0.5552583211689605,0.5552583211689605,1.5255562635416653,-1.4979402297764435,0.5991868501872407 +illusion,illusion_1L,127,128,38.1,2.1760521922260523,0.0025039189495146275,1.830786990467459,5.83762617316097,-0.3748350718524307,2.7303934330120683,1.1860941303893924,1.997353188926354,5.764068104326725,2.0437927450984716,10.828670859336853,99.6972143650055,99.50559437274933,0.343853235244751,-64.95075225830078,-39.41532373428345,0.8219093084335327,-0.9624688029289246,1.2508561611175537,-0.778417942888645,0.5759168262212805,0.5759168262212805,1.6003272513221778,-1.5383856291502052,0.6749393348962732 +illusion,illusion_1L,128,129,38.4,2.2460203617811203,-0.1348797231912613,1.8077846616506577,5.861589685082436,-0.47256157267838717,2.788675599731505,1.101205707527697,1.729849842377007,5.758943501859903,1.827857457101345,17.379382252693176,99.97844696044922,99.60938394069672,-1.8599867820739746,-67.98798441886902,-38.860929012298584,0.8964057564735413,-1.009418249130249,1.2825655937194824,-0.7292280553683318,0.5529106858915533,0.5529106858915533,1.625633811841873,-1.5623289350218024,0.7296549078279291 +illusion,illusion_1L,129,130,38.699999999999996,2.301751635968685,-0.291699543595314,1.7867523711174726,5.8752563782036304,-0.5751688149757683,2.906642621383071,0.9556752629578114,1.3361817109398544,5.72886411100626,1.499173347838223,24.452856183052063,98.62447381019592,100.04627406597137,-5.4191917181015015,-67.54773259162903,-36.31057143211365,0.9397885203361511,-1.0537691116333008,1.2541699409484863,-0.6546122184094963,0.5129811682546181,0.5129811682546181,1.5944007387456476,-1.566750279887919,0.7411887726938682 +illusion,illusion_1L,130,131,39.0,2.3465987760573626,-0.4654444637708366,1.7615783144719899,5.869755405001342,-0.679856282658875,3.06673941668123,0.7567679276689887,0.8336795726791024,5.6730094365775585,1.0788131039589643,31.582558155059814,95.25597095489502,101.27533674240112,-10.203835368156433,-56.109338998794556,-30.74142634868622,0.8941335082054138,-1.0277694463729858,1.1866087913513184,-0.5533755334555919,0.4549988732786746,0.4549988732786746,1.4475090416610057,-1.4827683196516603,0.7316099180726438 +illusion,illusion_1L,131,132,39.3,2.3755505681037903,-0.6424507009796798,1.7220143345184624,5.819579237140715,-0.769568607211113,3.2355342991650105,0.5178237333893776,0.2660788595676422,5.602148827165365,0.5933574866503477,36.79234981536865,91.51179790496826,102.75230407714844,-13.766426965594292,-30.23172616958618,-20.42522020637989,0.7515702247619629,-0.8981248736381531,1.0770809650421143,-0.4152656392916556,0.3700423227271116,0.3700423227271116,1.1668358640536185,-1.2681671963652645,0.7070386423150027 +illusion,illusion_1L,132,133,39.6,2.3727291263639927,-0.8043443958740681,1.6746979963500053,5.722125119064003,-0.8326355018652976,3.366479300893843,0.24612678680568933,-0.3403819282539189,5.556676536798477,0.07316457777051255,36.41180098056793,89.46714401245117,102.21903026103973,-11.963887885212898,3.964031860232353,-3.9581220597028732,0.5669722557067871,-0.7486188411712646,0.8969969153404236,-0.24975108239403032,0.2633273497955384,0.2633273497955384,0.8167233381008174,-1.011946190966803,0.6336695655448852 +illusion,illusion_1L,133,134,39.9,2.318944549188018,-0.9279367222916335,1.6430358227808028,5.6050161947496235,-0.8753806469030678,3.4162786323577166,-0.03783241845667362,-0.9510454838164151,5.555317271500826,-0.4495618923101574,30.080491304397583,89.62388038635254,99.9960720539093,-5.7915255427360535,36.01389527320862,13.514310121536255,0.3685263693332672,-0.6435400247573853,0.6870937347412109,-0.11224386162540245,0.1736059901449627,0.1736059901449627,0.48077023095866966,-0.817146014902348,0.5134877445962482 +illusion,illusion_1L,134,135,40.199999999999996,2.234707586467266,-0.9994894789997488,1.6564236429985613,5.547554872464389,-0.9081262396648526,3.3652824349701405,-0.28464337810873985,-1.4774129958823323,5.575116723775864,-0.9427812765352428,21.628570556640625,91.24839305877686,98.53003025054932,-0.35415589809417725,56.54183030128479,25.304946303367615,0.1910797357559204,-0.61365807056427,0.5632838010787964,-0.04914833408905661,0.13388507171228015,0.13388507171228015,0.24022806984497702,-0.7475431422765502,0.42939872936651624 +illusion,illusion_1L,135,136,40.5,2.1349915768951178,-1.0173843475058675,1.725259586237371,5.58551074936986,-0.9235366014763713,3.2211800571531057,-0.4622237756848335,-1.8479841528460383,5.596548318862915,-1.3765741605311632,13.873937726020813,93.36329102516174,97.99550473690033,1.7135098576545715,61.91556453704834,31.222327053546906,0.10205401480197906,-0.725830078125,0.573477029800415,-0.04827607196202788,0.13498521588330692,0.13498521588330692,0.15033008676400694,-0.8608152940083069,0.4384918139171081 +illusion,illusion_1L,136,137,40.8,2.04545003362,-0.9866651671472937,1.8254784808959812,5.696406995411962,-0.9153526043519378,3.0233069555833936,-0.5716279847547412,-2.05860857386142,5.621614865958691,-1.7249316442757845,7.407966256141663,95.27150392532349,97.98658788204193,1.2977302074432373,59.8950982093811,34.031906723976135,0.07220667600631714,-0.9191823601722717,0.6839281320571899,-0.08749205307171826,0.1610148185055904,0.1610148185055904,0.1596987290780354,-1.0801971786778621,0.5229133135515995 +illusion,illusion_1L,137,138,41.1,1.9800555892288685,-0.9173188591375947,1.9132044399157166,5.806464469060302,-0.8759070187807083,2.8335946844890714,-0.628846581093967,-2.1336001809686422,5.6482418440282345,-1.9672710914164782,1.7340481281280518,96.59923315048218,98.22168946266174,0.19817650318145752,58.446139097213745,35.73543131351471,0.0467226505279541,-1.0806058645248413,0.8100115656852722,-0.13272518584689608,0.18772979391527245,0.18772979391527245,0.17944783637485018,-1.2683356584401138,0.6222817717699998 +illusion,illusion_1L,138,139,41.4,1.9410050008445978,-0.8120864513330162,1.964700233656913,5.870405468158424,-0.8123545558191836,2.7125541819259524,-0.655427691526711,-2.1232099388726056,5.668891128152609,-2.0895947236567736,-3.686019778251648,97.37830758094788,98.49396049976349,-0.9344667196273804,58.990877866744995,37.128856778144836,-0.0036432743072509766,-1.1651049852371216,0.8690740466117859,-0.1937395461556517,0.22262461764042296,0.22262461764042296,0.19009627184840072,-1.3877296028775445,0.6464494289713629 +illusion,illusion_1L,139,140,41.699999999999996,1.9143595127388835,-0.6812598439864814,1.9854328711517155,5.8852252550423145,-0.7284238236024976,2.6876296615228057,-0.6649590795859694,-2.0583419827744365,5.688424222171307,-2.0852312445640564,-9.179723262786865,97.6518452167511,98.74306917190552,-2.2396117448806763,61.16507053375244,38.2207065820694,-0.08457115292549133,-1.1762193441390991,0.8247787952423096,-0.25943359020329027,0.25848631197151273,0.25848631197151273,0.17486243727779893,-1.4347056561106117,0.5662924832707968 +illusion,illusion_1L,140,141,42.0,1.8933230312541127,-0.5447257426567376,1.9833437982015312,5.860010627657175,-0.6235525943338871,2.7394909411668777,-0.6419715937227011,-1.9074957817792892,5.713468883186579,-1.9551294390112162,-15.05081057548523,97.20526337623596,99.01557564735413,-4.134806990623474,64.43316340446472,38.69106471538544,-0.18580710887908936,-1.1169795989990234,0.7208983898162842,-0.29232146312020024,0.2695090792681416,0.2695090792681416,0.10651435424111089,-1.386488678267165,0.4513893105481426 +illusion,illusion_1L,141,142,42.3,1.8768481677398086,-0.41751714888960123,1.9726069876924157,5.82206214312464,-0.49140595365315676,2.82106245867908,-0.5595632828772068,-1.6105325194075704,5.7329959236085415,-1.707698218524456,-21.506357192993164,95.38791179656982,99.53783750534058,-7.129834592342377,66.8739378452301,37.99491077661514,-0.2824084758758545,-1.0069557428359985,0.6408312320709229,-0.2518654367804233,0.22715470709010777,0.22715470709010777,-0.030543039095431213,-1.2341104499261064,0.4136765249808151 +illusion,illusion_1L,142,143,42.6,1.8697597552090883,-0.29786338564008474,1.9602446118369699,5.790248978883028,-0.33191972761414945,2.8924703365191817,-0.4143764963373542,-1.1606727202888578,5.727000534534454,-1.35821383446455,-28.522127866744995,91.36645793914795,100.7678210735321,-11.479943990707397,63.25414776802063,35.35577356815338,-0.3446028232574463,-0.8942933082580566,0.623509407043457,-0.14116735064770747,0.133546340366077,0.133546340366077,-0.20343547260973882,-1.0278396486241337,0.48996306667738004 +illusion,illusion_1L,143,144,42.9,1.8719061044976115,-0.17485470743849874,1.9392137764953077,5.750333657488227,-0.1543317048344761,2.9382249340415,-0.2280238550156355,-0.6103794148657471,5.687557626515627,-0.9278415236622095,-35.094645619392395,85.75515747070312,102.76375710964203,-15.673880279064178,46.991658210754395,29.035572707653046,-0.3291654586791992,-0.8288860321044922,0.6273221969604492,0.000773661224986455,0.01648562297715131,0.01648562297715131,-0.3299391199041857,-0.8453716550816435,0.6108365739832979 +illusion,illusion_1L,144,145,43.199999999999996,1.8800328252837062,-0.04191469633951783,1.9100822391919792,5.7001973036676645,0.02221495014964603,2.9587680473923683,-0.02603069879114628,-0.029846447432646528,5.626541096717119,-0.44233500375412405,-37.852370738983154,81.19715452194214,103.52096557617188,-14.553324203006923,17.804767191410065,15.167026896961033,-0.1860431432723999,-0.8356091976165771,0.576213002204895,0.12242416259966277,-0.0865255494251416,-0.0865255494251416,-0.30846730587206267,-0.7490836481914356,0.6627385516300366 +illusion,illusion_1L,145,146,43.5,1.892545842565596,0.09054027032107115,1.8845951417461038,5.661736126057804,0.16343114839401096,2.954761148430407,0.17726642545312643,0.5179639993002638,5.567984189838171,0.06950402894290164,-34.504234790802,79.75320219993591,102.0026445388794,-6.409006007015705,-16.398967802524567,-4.915700666606426,0.07437807321548462,-0.9066643118858337,0.4609086513519287,0.1720211777260673,-0.13615762058303987,-0.13615762058303987,-0.09764310451058267,-0.7705066913027938,0.5970662719349686 +illusion,illusion_1L,146,147,43.8,1.8987961811944842,0.19836478168144822,1.878763025160879,5.656322231516242,0.23033474280964583,2.9242353048175573,0.38629607297480106,1.002926888759248,5.532989744096994,0.5775165045633912,-27.630436420440674,81.35931491851807,100.70539712905884,2.387899160385132,-46.099019050598145,-21.96265161037445,0.3545452356338501,-1.0007374286651611,0.3762662410736084,0.11319045666775762,-0.10313193698831927,-0.10313193698831927,0.24135477896609248,-0.8976054916768419,0.47939817806192764 +illusion,illusion_1L,147,148,44.1,1.8940778682008386,0.2625497290864587,1.8875467358157039,5.669171339832246,0.20621549629140645,2.8695412911474705,0.604474451392889,1.4151643990771845,5.53248543292284,1.0519297793507576,-19.766288995742798,84.97771620750427,100.01482367515564,7.252750545740128,-63.316839933395386,-31.92857727408409,0.5654930472373962,-1.0714236497879028,0.4087827205657959,-0.05384404579457791,0.014240204443203675,0.014240204443203675,0.6193370930319742,-1.0856638542311066,0.3945425161225922 +illusion,illusion_1L,148,149,44.4,1.8965776544064283,0.27496315306052566,1.8980349996127188,5.692647653631866,0.10193018533755094,2.8051998233422637,0.8133739465847611,1.7286780785070732,5.570263601839542,1.4650586526840925,-12.426206469535828,89.3145740032196,99.54400360584259,7.68207460641861,-66.40084981918335,-36.404453217983246,0.6591722369194031,-1.0803041458129883,0.5619888305664062,-0.2918147224607716,0.18916779105623113,0.18916779105623113,0.9509869593801747,-1.2694719368692193,0.3728210395101751 +illusion,illusion_1L,149,150,44.699999999999996,1.9304167944937944,0.2459113602526486,1.8977848230861127,5.72598644066602,-0.03173997174599208,2.7494742535054684,0.9908026549965143,1.9498653382470366,5.635685753077269,1.7928724410012364,-5.868440866470337,93.12676787376404,99.38319325447083,6.1608269810676575,-64.39661979675293,-38.356126844882965,0.6958581209182739,-1.0504528284072876,0.7606911659240723,-0.514709661130131,0.3569819918063527,0.3569819918063527,1.2105677820484049,-1.4074348202136404,0.40370917411771956 +illusion,illusion_1L,150,151,45.0,2.000275067985058,0.18206273671239614,1.8823625287041068,5.7650001253932714,-0.16430225514341146,2.709633845370263,1.1153536033816636,2.0664049516199157,5.695981904864311,2.016345737501979,0.26733577251434326,95.96760869026184,99.41914975643158,4.559394717216492,-63.86054754257202,-39.612847566604614,0.7313279509544373,-1.0228855609893799,0.9379693269729614,-0.6717573658660263,0.4794527553864545,0.4794527553864545,1.4030853168204636,-1.5023383163758344,0.45851657158650694 +illusion,illusion_1L,151,152,45.3,2.084567677229643,0.08834118489176035,1.8538635922595859,5.792294861748815,-0.28474986902438104,2.693917660508305,1.1765306699089706,2.06831147079356,5.7229530066251755,2.1225211676210165,6.387662887573242,98.0556845664978,99.48035478591919,3.15236896276474,-65.34563899040222,-40.569789707660675,0.7833960652351379,-1.0137380361557007,1.063414454460144,-0.749228407739584,0.5459376192525824,0.5459376192525824,1.5326244729747218,-1.5596756554082831,0.5174768352075616 +illusion,illusion_1L,152,153,45.6,2.173282206058502,-0.031167117413133383,1.8216679454781115,5.816618097014725,-0.39623831980861723,2.717232215218246,1.178815378807485,1.961392437806353,5.722800735384226,2.1052337251603603,12.834709882736206,99.49445724487305,99.51980710029602,1.5003174543380737,-68.28402280807495,-40.847888588905334,0.8541326522827148,-1.0281428098678589,1.1406971216201782,-0.7611011362367676,0.5663842948429363,0.5663842948429363,1.6152337885194825,-1.5945271047107952,0.5743128267772419 +illusion,illusion_1L,153,154,45.9,2.25433730520308,-0.17109280452132225,1.7923761624842882,5.839089630171657,-0.5069863982498646,2.7920411084778607,1.1206610943190753,1.7343357903882861,5.713127087801695,1.965455012395978,19.81375813484192,99.90298748016357,99.69415068626404,-1.0797396302223206,-70.76174020767212,-39.6514430642128,0.9249374270439148,-1.0629017353057861,1.1661052703857422,-0.73415089081582,0.5600872496214166,0.5600872496214166,1.6590883178597347,-1.6229889849272028,0.6060180207643255 +illusion,illusion_1L,154,155,46.199999999999996,2.323220716789365,-0.32468681456521153,1.7625900800339878,5.84840087685734,-0.6219425122253597,2.9151028720662,1.0008682729676366,1.3797940337099135,5.692195612937212,1.7112427158281207,27.210155129432678,98.47694635391235,100.38914382457733,-5.123642086982727,-66.90180897712708,-35.94721853733063,0.9431966543197632,-1.074459195137024,1.1499993801116943,-0.690921488155106,0.5430743088731544,0.5430743088731544,1.6341181424748692,-1.6175335040101784,0.6069250712385399 +illusion,illusion_1L,155,156,46.5,2.389387460425496,-0.4888914991170168,1.7184929456561804,5.826373351737857,-0.729415740352124,3.063119249418378,0.8269608952105045,0.9245060500688851,5.6618573144078255,1.357297645881772,34.10003185272217,95.54819464683533,101.8080472946167,-9.93446335196495,-49.0882009267807,-28.416285663843155,0.85972660779953,-0.9893312454223633,1.1109542846679688,-0.6128622196896854,0.5013165123988451,0.5013165123988451,1.4725888274892154,-1.4906477578212085,0.6096377722691236 +illusion,illusion_1L,156,157,46.8,2.421724144369364,-0.6532783154398203,1.6635942738503218,5.748912692070007,-0.8328423136845231,3.197331912815571,0.6040460430085659,0.3752497723326087,5.642481613904238,0.9241479565389454,37.57960796356201,93.17917823791504,102.51103639602661,-12.119207344949245,-17.894208431243896,-15.01584593206644,0.6850922703742981,-0.8315134048461914,1.0223028659820557,-0.5261159792373935,0.45314665373155216,0.45314665373155216,1.2112082496116916,-1.2846600585777437,0.5691562122505035 +illusion,illusion_1L,157,158,47.1,2.399253658950329,-0.7935047906357795,1.61850216682069,5.636257992591709,-0.8669530507177114,3.28123033978045,0.3377883695065975,-0.1913763117045164,5.632458254694939,0.43700356036424637,34.603551030159,92.6491916179657,100.69667994976044,-9.035355038940907,17.339935898780823,3.303241543471813,0.5143322944641113,-0.7092623710632324,0.8508479595184326,-0.3403990802302832,0.32936474211367917,0.32936474211367917,0.8547313746943945,-1.0386271131769116,0.5214832174047535 +illusion,illusion_1L,158,159,47.4,2.3323975037783384,-0.8960870909504592,1.6046956297941506,5.54178876336664,-0.8923457935452461,3.2936885254457593,0.06242247764021158,-0.767500838264823,5.603872239589691,-0.07566207932541147,27.066215872764587,93.64964962005615,98.46833050251007,-3.867410123348236,45.997533202171326,19.120797514915466,0.32499960064888,-0.6288739442825317,0.6857438087463379,-0.20544495325501133,0.23948343360552382,0.23948343360552382,0.5304445539038913,-0.8683573778880556,0.44626037514081407 +illusion,illusion_1L,159,160,47.699999999999996,2.2369378712028265,-0.9483784378971905,1.6350251680705696,5.506988207343966,-0.9130479884333909,3.227382665500045,-0.17290422692894936,-1.2588564422912896,5.562879145145416,-0.5837283679284155,18.692797422409058,95.2113151550293,97.64699339866638,-0.29185861349105835,60.11762022972107,28.077657520771027,0.173389732837677,-0.6250448226928711,0.6176036596298218,-0.1526688903384812,0.20552158532918585,0.20552158532918585,0.3260586231761582,-0.830566408022057,0.4120820743006359 +illusion,illusion_1L,160,161,48.0,2.1321892272681,-0.9496830170974135,1.715745427645743,5.563680082559586,-0.9167339303530753,3.0967884231358767,-0.3531617112457752,-1.6230573528446257,5.55048044770956,-1.057157409377396,11.373993754386902,96.7383325099945,97.70319759845734,0.676281750202179,61.16187572479248,32.24370926618576,0.10298421233892441,-0.746497631072998,0.6572394371032715,-0.15789554073645373,0.20951746229547563,0.20951746229547563,0.26087975307537814,-0.9560150933684737,0.44772197480779585 +illusion,illusion_1L,161,162,48.3,2.0426209084689617,-0.9086318023037165,1.8162345804739743,5.67509006941691,-0.8973233052529395,2.9358979081735015,-0.48256467562168837,-1.8624526564963162,5.573469679802656,-1.4677423750981688,5.193310976028442,98.02320599555969,98.10581803321838,0.2061694860458374,58.80728363990784,34.439027309417725,0.06682106852531433,-0.9090174436569214,0.7626488208770752,-0.19280676759078608,0.2313528576975521,0.2313528576975521,0.2596278361161004,-1.1403703013544735,0.5312959631795231 +illusion,illusion_1L,162,163,48.6,1.9760194700211287,-0.8349439012818038,1.8872821819968522,5.750583834014833,-0.8550282218493521,2.791954786516726,-0.5708228563889861,-1.9966739346273243,5.608124658465385,-1.7907777801156044,-0.4123479127883911,98.9428699016571,98.56528341770172,-0.5376815795898438,58.11353325843811,36.009711027145386,0.02433106303215027,-1.0220860242843628,0.8625670671463013,-0.24008750484157404,0.25915985531388674,0.25915985531388674,0.2644185678737243,-1.2812458795982495,0.6034072118324145 +illusion,illusion_1L,163,164,48.9,1.9310330972075462,-0.7326595950871706,1.9183545373380184,5.767742171883583,-0.7879671175032854,2.705253195017576,-0.6327864248305559,-2.0535399671643972,5.659202579408884,-2.006553579121828,-5.887225270271301,99.49952363967896,98.93507659435272,-1.3673141598701477,59.32320952415466,37.279947102069855,-0.03615251183509827,-1.0696139335632324,0.8976809978485107,-0.2884732858323007,0.28499499904956493,0.28499499904956493,0.25232077399720243,-1.3546089326127975,0.6126859987989458 +illusion,illusion_1L,164,165,49.199999999999996,1.9029112299904227,-0.6116835866123438,1.9228188320994377,5.748548894189298,-0.6979060126468539,2.687105326913297,-0.6713784532621503,-2.0406629191711545,5.730922799557447,-2.101584803313017,-11.56984269618988,99.61321949958801,99.19041693210602,-2.566497027873993,62.07001805305481,38.08128088712692,-0.12108173966407776,-1.0561109781265259,0.8561142683029175,-0.3235180750792035,0.2991320472353165,0.2991320472353165,0.20243633541512573,-1.3552430253618424,0.556982221067601 +illusion,illusion_1L,165,166,49.5,1.8854383379220963,-0.48726325621828437,1.9147368730045855,5.714912083931267,-0.5881644319742918,2.7213847497478127,-0.671110232360661,-1.9303848966956139,5.774288903921843,-2.0694960840046406,-17.722544074058533,98.92506003379822,99.45133030414581,-4.593399167060852,65.4775857925415,37.967315316200256,-0.2264728546142578,-0.9867532253265381,0.7772119045257568,-0.3242240782809771,0.287516561599228,0.287516561599228,0.09775122366671929,-1.2742697869257662,0.48969534292652883 +illusion,illusion_1L,166,167,49.8,1.8759651575237513,-0.36779046058654785,1.9050948321819305,5.686154821887612,-0.4536293854471296,2.774545457214117,-0.6143497303128242,-1.682328846072778,5.751272197812796,-1.911501633003354,-24.478527903556824,96.588796377182,100.07543861865997,-7.931086421012878,66.35687947273254,36.27375364303589,-0.3251093626022339,-0.8932092189788818,0.7208367586135864,-0.26470696419787587,0.2318084361568702,0.2318084361568702,-0.060402398404358015,-1.125017655135752,0.48902832245671624 +illusion,illusion_1L,167,168,50.1,1.8808071035891771,-0.25114562595263124,1.8958360305987298,5.672479164786637,-0.2924301370512694,2.8213096084073186,-0.5022258264943957,-1.2968817900400609,5.6986394338309765,-1.6364414477720857,-31.576403975486755,92.00124144554138,101.60311758518219,-12.490943819284439,57.978665828704834,32.10269436240196,-0.3730930685997009,-0.8301687836647034,0.7010059356689453,-0.14497623428000977,0.13180792478589376,0.13180792478589376,-0.22811683431969115,-0.9619767084505971,0.5691980108830516 +illusion,illusion_1L,168,169,50.4,1.8944090697914362,-0.1304436009377241,1.8859347328543663,5.666278535500169,-0.11634789552772418,2.854652120731771,-0.35215599928051233,-0.8206598940887488,5.654868204146624,-1.260355580598116,-37.32016086578369,86.68493628501892,103.63955497741699,-15.749311074614525,35.160547494888306,23.32054413855076,-0.3196961283683777,-0.8365094661712646,0.6621654033660889,-0.001930554462925116,0.014154595717534774,0.014154595717534774,-0.31776557390545257,-0.8506640618887994,0.6480108076485541 +illusion,illusion_1L,169,170,50.699999999999996,1.910471124574542,-0.006255169864743948,1.8663727096281946,5.643216543830931,0.04794530832441524,2.87681445479393,-0.17789029516279697,-0.3078352820011787,5.605330225080252,-0.8056137594394386,-37.71209418773651,83.51341485977173,103.63847315311432,-12.48257178813219,2.0262420177459717,6.972257606685162,-0.12401881814002991,-0.9092099070549011,0.544278621673584,0.11040845908936497,-0.08111072280228547,-0.08111072280228547,-0.23442727722939488,-0.8280991842526156,0.6253893444758695 +illusion,illusion_1L,170,171,51.0,1.9067556131631136,0.10774878319352865,1.8440812127664685,5.594918038696051,0.17032894538715482,2.882800530642271,0.023195287212729454,0.21671951981261373,5.556699819862843,-0.299636711133644,-31.983643770217896,83.56606364250183,101.6680896282196,-3.8119442760944366,-31.344425678253174,-12.274696677923203,0.18052291870117188,-1.0208290815353394,0.39002299308776855,0.15482848764661014,-0.12511092560344028,-0.12511092560344028,0.025694431054561734,-0.8957181559318991,0.5151339186912088 +illusion,illusion_1L,171,172,51.3,1.8959082663059235,0.18814665963873267,1.8383963615633547,5.572700989432633,0.19676405645441264,2.8653432382270694,0.2548136981204152,0.7063914526952431,5.555659998208284,0.2267197414766997,-23.88952076435089,86.06735467910767,100.27564465999603,3.4625619649887085,-55.397748947143555,-25.947150588035583,0.4511496126651764,-1.1106960773468018,0.32405054569244385,0.0625484838778973,-0.06465145390900348,-0.06465145390900348,0.3886011287872791,-1.0460446234377982,0.38870199960144736 +illusion,illusion_1L,172,173,51.6,1.8779619131237268,0.2239546156488359,1.8495310214348137,5.577023955993354,0.1344893389614299,2.830989775247872,0.5080095725134015,1.150508483988233,5.592211149632931,0.7410288671962917,-16.05001986026764,89.76188898086548,99.55316483974457,6.196524202823639,-64.25665020942688,-32.86307007074356,0.6046539545059204,-1.1266705989837646,0.39806437492370605,-0.13142417897967174,0.0754278561936231,0.0754278561936231,0.7360781334855921,-1.2020984551773877,0.3226365187300829 +illusion,illusion_1L,173,174,51.9,1.8777891527861357,0.21872814977541566,1.8633237923495471,5.60443673748523,0.018950802768813446,2.7942723827436566,0.7516032783314586,1.5221573594317306,5.606893915683031,1.2112932745367289,-9.304314851760864,93.43082904815674,99.28815960884094,5.622200667858124,-62.90770769119263,-35.804422199726105,0.6564724445343018,-1.0775692462921143,0.5641998052597046,-0.36040596044751777,0.24542302907869856,0.24542302907869856,1.0168784049818196,-1.3229922753708128,0.318776776181006 +illusion,illusion_1L,174,175,52.199999999999996,1.9164785044267774,0.18094305414706469,1.8654247978702188,5.647328100167215,-0.10595894127618521,2.756887290161103,0.9509651572443545,1.7959713732125238,5.605695769190788,1.6079578781500459,-3.3335477113723755,96.34255170822144,99.3507593870163,4.237867891788483,-60.93350648880005,-37.344761192798615,0.6875020265579224,-1.030869960784912,0.743516206741333,-0.5492628027281523,0.38889526720616535,0.38889526720616535,1.2367648292860747,-1.4197652279910775,0.35462093953516766 +illusion,illusion_1L,175,176,52.5,1.9951609428972006,0.1168777234852314,1.8552469555288553,5.705654853954911,-0.2162922901334241,2.717856434173882,1.0910058626905084,1.9657194352475926,5.637506954371929,1.9058084581047297,2.3480206727981567,98.54376316070557,99.50880706310272,3.0154243111610413,-61.008381843566895,-38.534267246723175,0.7341642379760742,-1.0134831666946411,0.9033464789390564,-0.6600231959739398,0.4771267229150313,0.4771267229150313,1.394187433950014,-1.4906098896096724,0.4262197560240251 +illusion,illusion_1L,176,177,52.8,2.0908815786242485,0.02801883965730667,1.8311863532289863,5.753254285082221,-0.32032723538577557,2.6933025219477713,1.1730763944797218,2.025825553573668,5.6829797104001045,2.0856272894889116,8.127838373184204,100.25639533996582,99.62045550346375,1.7928004264831543,-62.80944347381592,-39.35611546039581,0.795548141002655,-1.013732671737671,1.031823754310608,-0.7124925728046401,0.5246317344301633,0.5246317344301633,1.508040713807295,-1.538364406167834,0.5071920198804446 +illusion,illusion_1L,177,178,53.1,2.184563782066107,-0.07937400368973613,1.7956436495296657,5.775851081125438,-0.4207949968986213,2.707733365241438,1.1954442015849054,1.9700934062711895,5.69962989538908,2.1354956552386284,14.280340075492859,101.41668319702148,99.6578723192215,0.0319942831993103,-65.73034524917603,-39.31168466806412,0.870617687702179,-1.0323967933654785,1.117226481437683,-0.7237433167047699,0.5434360908487927,0.5434360908487927,1.5943610044069487,-1.5758328842142713,0.5737903905888904 +illusion,illusion_1L,178,179,53.4,2.2616072092205286,-0.20413310267031193,1.755064120516181,5.771735450252891,-0.5314504378475249,2.7697549667209387,1.1450641322880983,1.7586778267286718,5.715371575206518,2.051648451015353,20.949271321296692,101.44268274307251,99.78743493556976,-2.9430389404296875,-67.6201581954956,-37.62628734111786,0.9335343241691589,-1.0761605501174927,1.1471428871154785,-0.7243051752640406,0.5560230580712306,0.5560230580712306,1.6578394994331995,-1.6321836081887233,0.5911198290442479 +illusion,illusion_1L,179,180,53.699999999999996,2.33254861086607,-0.34475885331630707,1.7204806208610535,5.773509852588177,-0.6423201994039118,2.874376077670604,1.030447834637016,1.4185754698701203,5.750197917222977,1.8388143507763743,27.96732485294342,99.35897588729858,100.44724643230438,-7.550381124019623,-62.535351514816284,-33.4231361746788,0.9390479326248169,-1.0956438779830933,1.149436354637146,-0.6963274047566913,0.5490337662262978,0.5490337662262978,1.6353753373815083,-1.644677644209391,0.6004025884108481 +illusion,illusion_1L,180,181,54.0,2.39181169308722,-0.5009070155210793,1.6806672210805118,5.753146135248244,-0.7439606124535203,3.010893939062953,0.8633709512650967,0.982781290076673,5.742636509239674,1.510008005425334,34.44876670837402,95.63853740692139,102.12935209274292,-12.900664657354355,-43.66496801376343,-25.775308161973953,0.8373858332633972,-0.99819016456604,1.127455234527588,-0.6209424095425067,0.5084694164104228,0.5084694164104228,1.458328242805904,-1.506659580976463,0.6189858181171651 +illusion,illusion_1L,181,182,54.3,2.4185101501643658,-0.6570230470970273,1.6301149735227227,5.678740097209811,-0.8167498745024204,3.1363049056380987,0.6455322727560997,0.474314671009779,5.665794480592012,1.0857797460630536,37.364041805267334,92.07742214202881,103.0113697052002,-15.187464095652103,-12.124556303024292,-12.829791568219662,0.6615067720413208,-0.8261812329292297,1.0524908304214478,-0.48605311329537226,0.42385867239244046,0.42385867239244046,1.147559885336693,-1.2500399053216702,0.6286321580290073 +illusion,illusion_1L,182,183,54.6,2.405834384262562,-0.790057732956484,1.5973243571352214,5.6004830985330045,-0.8523679571226239,3.2268627546727657,0.38498593494296074,-0.08239608723670244,5.59135852381587,0.5929587059654295,33.52559208869934,90.81010818481445,101.49286389350891,-10.929342545568943,22.22837507724762,4.7227537259459496,0.4696960151195526,-0.6720695495605469,0.898544430732727,-0.316584670796211,0.3114017623640166,0.3114017623640166,0.7862806859157636,-0.9834713119245635,0.5871426683687104 +illusion,illusion_1L,183,184,54.9,2.3356694728136063,-0.8825513068586588,1.5989972744137049,5.533664021641016,-0.8628424257040024,3.255298943258822,0.10683934669941664,-0.6491637323051691,5.558366887271404,0.06296794163063169,24.940350651741028,91.57098531723022,99.05517995357513,-3.684771806001663,48.64123463630676,20.046693831682205,0.2898188531398773,-0.5855872631072998,0.7192902565002441,-0.16925998529154485,0.21137992190157506,0.21137992190157506,0.45907883843142216,-0.7969671850088749,0.5079103345986691 +illusion,illusion_1L,184,185,55.199999999999996,2.2316689137369394,-0.921938888495788,1.6383218171540648,5.508312548045069,-0.8741634082980454,3.21077520493418,-0.1433355500921607,-1.1608345084823668,5.529783200472593,-0.4701845464296639,16.25043749809265,93.4598982334137,97.78522849082947,0.9443208575248718,59.71574783325195,28.849120438098907,0.16194698214530945,-0.6079076528549194,0.6158521175384521,-0.12068654973347814,0.17926987970013752,0.17926987970013752,0.2826335318787876,-0.787177532555057,0.4365822378383146 +illusion,illusion_1L,185,186,55.5,2.114291302859783,-0.9155962034128606,1.7151730717159808,5.544637446291745,-0.8736097952350974,3.0985298799350858,-0.337940058670938,-1.5494899125769734,5.5184559896588326,-0.9721080423332751,9.271439909934998,95.59522271156311,97.58718311786652,1.8995285034179688,59.31086540222168,32.86248743534088,0.11146441102027893,-0.7471849918365479,0.6298521757125854,-0.13112919474226703,0.18638043346534094,0.18638043346534094,0.24259360576254596,-0.9335654253018888,0.4434717422472445 +illusion,illusion_1L,186,187,55.8,2.0197220146656036,-0.8765554812271148,1.8052321102004498,5.630186235066503,-0.8604516624473035,2.9438387136906385,-0.47623366117477417,-1.8129189847968519,5.579106509685516,-1.4102784916758537,3.5353004932403564,97.37678170204163,97.92290329933167,1.2301355600357056,57.28099346160889,34.824249148368835,0.07814836502075195,-0.9072760343551636,0.7316226959228516,-0.17527627218754116,0.21524805956602022,0.21524805956602022,0.2534246372082931,-1.1225240939211838,0.5163746363568313 +illusion,illusion_1L,187,188,56.1,1.9542248919606209,-0.8106133318506181,1.8721039523370564,5.698432796634734,-0.8300349581986666,2.7955443365499377,-0.5694307619705796,-1.9688964821398258,5.670757964253426,-1.756184850819409,-1.6964375972747803,98.66850972175598,98.31884503364563,0.3729820251464844,57.09033012390137,36.221835017204285,0.03148326277732849,-1.0167031288146973,0.8342153429985046,-0.23293141423112784,0.25148952424054016,0.25148952424054016,0.26441467700845633,-1.2681926530552374,0.5827258187579645 +illusion,illusion_1L,188,189,56.4,1.9175080815330148,-0.7170516182668507,1.9021322368644178,5.72177255526185,-0.7718991255387664,2.696100389584899,-0.6339699029922485,-2.0398389315232635,5.707974545657635,-1.9872256089001894,-6.89452588558197,99.58147406578064,98.58081638813019,-0.4924312233924866,58.583974838256836,37.387715280056,-0.03197100758552551,-1.0645712614059448,0.8716495037078857,-0.28381062936799695,0.2800211796020492,0.2800211796020492,0.25183962178247143,-1.3445924410079941,0.5916283241058365 +illusion,illusion_1L,189,190,56.699999999999996,1.899890135973692,-0.6045677000656724,1.9111210713163018,5.722132278606296,-0.689289125148207,2.662400249391794,-0.6734658963978291,-2.036220917943865,5.710371769964695,-2.088225446641445,-12.357106804847717,100.11107921600342,98.71148765087128,-1.698794960975647,61.42444610595703,38.091662526130676,-0.11503410339355469,-1.0646356344223022,0.8383611440658569,-0.31872648181321006,0.2948912537542774,0.2948912537542774,0.20369237841965537,-1.3595268881765796,0.5434698903115796 +illusion,illusion_1L,190,191,57.0,1.8869106424972415,-0.48748066183179617,1.9143976969644427,5.715706036426127,-0.5852899048477411,2.6842975057661533,-0.6709164008498192,-1.9271227065473795,5.732146557420492,-2.0524656865745783,-18.30434501171112,99.94234442710876,98.84795248508453,-3.7549391388893127,64.77915644645691,37.82902508974075,-0.21327388286590576,-1.0180519819259644,0.7708007097244263,-0.3178925239733572,0.2828513485745975,0.2828513485745975,0.10461864110745145,-1.300903330500562,0.4879493611498288 +illusion,illusion_1L,191,192,57.3,1.8837535753846169,-0.3735452191904187,1.915932516567409,5.715618608519435,-0.45562104787677526,2.7360920794308186,-0.609193230047822,-1.6740075079724193,5.734624341130257,-1.8821575213223696,-24.80415403842926,98.20777177810669,99.32219684123993,-7.184532284736633,65.64492583274841,35.92739999294281,-0.3069308400154114,-0.9386156797409058,0.7180297374725342,-0.25830707059566793,0.22763284684270424,0.22763284684270424,-0.048623769419743446,-1.16624852658361,0.49039689062982994 +illusion,illusion_1L,192,193,57.599999999999994,1.885890611447394,-0.26060244999825954,1.9102322403341532,5.7063550921157,-0.30011284979991615,2.7936992701143026,-0.49306126311421394,-1.286235376028344,5.685302894562483,-1.588319311849773,-31.60642385482788,94.11415457725525,100.66990852355957,-12.024622410535812,57.56361484527588,31.61211684346199,-0.35369670391082764,-0.8805968761444092,0.6888132095336914,-0.14356326434090055,0.13168466510976207,0.13168466510976207,-0.21013343956992708,-1.0122815412541712,0.5571285444239293 +illusion,illusion_1L,193,194,57.9,1.8888411577790976,-0.14301936607807875,1.8924808828160167,5.673802923411131,-0.13043850776739419,2.8420533053576946,-0.33839745447039604,-0.8072334167081863,5.649800878018141,-1.190069131553173,-37.275317311286926,88.8537585735321,102.7538150548935,-16.247181221842766,35.336834192276,23.37367720901966,-0.30317223072052,-0.8873937129974365,0.6445415019989014,-0.008049575453211555,0.019910558718865684,0.019910558718865684,-0.29512265526730846,-0.9073042717163022,0.6246309432800357 +illusion,illusion_1L,194,195,58.199999999999996,1.8910988001152873,-0.021128449589014053,1.867832732386887,5.6267642648890615,0.02974779090436641,2.8787361225113273,-0.1554322661831975,-0.2811167414620286,5.654963199049234,-0.7133737672120333,-38.01612854003906,85.21170020103455,103.22152376174927,-14.662895910441875,2.583063393831253,8.420480974018574,-0.11593396216630936,-0.9562932252883911,0.5326290130615234,0.10000741204872005,-0.07196119723634255,-0.07196119723634255,-0.2159413742150294,-0.8843320280520486,0.604590210297866 +illusion,illusion_1L,195,196,58.5,1.8957752035930753,0.08820794755592942,1.8426018650643528,5.580978933721781,0.14415492478292435,2.897996106185019,0.052920193411409855,0.24999531160574406,5.627200473099947,-0.18934083345811814,-32.04153776168823,84.58161354064941,101.12128257751465,-6.3384925946593285,-30.641335248947144,-10.456442274153233,0.18197757005691528,-1.059913158416748,0.37721121311187744,0.13648578509894554,-0.10962787831242525,-0.10962787831242525,0.04549178495796974,-0.9502852801043228,0.4868390914243027 +illusion,illusion_1L,196,197,58.8,1.8841626588255167,0.16836437862366438,1.8372404156252742,5.558643490076065,0.17668961663730443,2.894066390581429,0.29436557088047266,0.7654207583982497,5.556740798056126,0.34783140290528536,-23.342448472976685,86.46189570426941,99.23288226127625,1.8411293625831604,-54.663264751434326,-24.84002858400345,0.46344056725502014,-1.1374861001968384,0.305462121963501,0.05723934654950319,-0.05879189744079316,-0.05879189744079316,0.40620122070551695,-1.0786942027560453,0.36425401940429414 +illusion,illusion_1L,197,198,59.099999999999994,1.8693951424211264,0.20495988428592682,1.8526832573115826,5.5747616570442915,0.11939444812014699,2.8702366398647428,0.5583924939855933,1.2361794360913336,5.5304341949522495,0.8631084347143769,-15.3313547372818,89.7228479385376,98.3826607465744,5.346843600273132,-63.319939374923706,-32.316163182258606,0.6207501888275146,-1.134333848953247,0.3951835632324219,-0.1278916152321074,0.07466622573678083,0.07466622573678083,0.7486418040596221,-1.209000074690028,0.32051733749564104 +illusion,illusion_1L,198,199,59.4,1.8792886985465884,0.20299101015552878,1.8733740434981883,5.626036785542965,0.005458007763081696,2.839181339368224,0.8094483055174351,1.6243546187979518,5.559195764362812,1.322925672866404,-8.705085515975952,93.15017461776733,98.26100468635559,5.085253715515137,-61.95032596588135,-35.455456376075745,0.6690402626991272,-1.0673247575759888,0.5886151790618896,-0.35951621224764346,0.24629972949908155,0.24629972949908155,1.0285564749467706,-1.3136244870750704,0.3423154495628081 +illusion,illusion_1.5L,2,3,0.8,2.0302594639360905,0.4890882410109043,2.755474764853716,7.541208993643522,-0.27335097547620535,1.0639463434927166,-0.1588588929735124,-0.5910687614232302,8.34670290350914,-1.36119918897748,24.06296730041504,92.85329580307007,99.27911758422852,-10.243601351976395,-49.78640675544739,-23.788567632436752,1.1617212295532227,1.7513959407806396,1.3405989408493042,-1.4577017265549768,1.0312322581765772,1.0312322581765772,2.6194229561081994,0.7201636826040625,0.30936668267272704 +illusion,illusion_1.5L,3,4,1.2000000000000002,2.0529136527329683,1.085691386833787,3.3360000234097242,8.724913699552417,-0.6763394339941442,0.6711416062898934,-0.9437865228392184,-2.563912479672581,8.451278321444988,-2.446994185447693,29.266351461410522,86.07962131500244,103.18052172660828,-15.16038253903389,-28.653299808502197,-17.225348204374313,1.6475932598114014,0.07819223403930664,0.17036914825439453,-3.379426267571973,2.395431171365326,2.395431171365326,5.027019527383374,-2.317238937326019,-2.2250620231109313 +illusion,illusion_1.5L,4,5,1.6,1.972357975319028,1.1221736203879118,3.5712087992578745,9.114775573834777,-1.3727023033425212,0.6470562366303056,-1.52237867587246,-4.417459655087441,8.312063291668892,-3.3562262542545795,30.64580261707306,78.68193984031677,108.25818479061127,-15.395912528038025,6.302312016487122,-8.108602464199066,0.06759235262870789,-0.3713243007659912,-0.2048192173242569,-4.883700936895515,3.505290081659928,3.505290081659928,4.951293289524223,-3.8766143824259194,-3.710109298984185 +illusion,illusion_1.5L,5,6,2.0,1.9367921631783247,0.6669075228273869,3.186737420037389,8.310267003253102,-1.8346591386944056,0.659057404845953,-1.4821679797023535,-4.7989950980991125,8.355864323675632,-4.019565414637327,24.95920956134796,76.3318121433258,108.4492176771164,-7.863559108227491,39.287009835243225,6.5843102522194386,-1.501118779182434,0.7230329513549805,0.874076783657074,-5.005816495791889,3.640090572471839,3.640090572471839,3.5046977166094546,-2.9170576211168586,-2.766013788814765 +illusion,illusion_1.5L,6,7,2.4000000000000004,1.9632307812571526,0.14486967120319605,2.8172068996354938,7.59764458052814,-1.3657533563673496,0.6274245970416814,-1.2394744844641536,-3.844702325295657,8.45526996999979,-4.386493470519781,13.208535313606262,81.1646580696106,102.72582471370697,1.785580813884735,51.792699098587036,22.349566221237183,0.13865001499652863,0.9203938841819763,1.3363425731658936,-3.0842073989192165,2.2687027570396707,2.2687027570396707,3.222857413915745,-1.3483088728576944,-0.9323601838737772 +illusion,illusion_1.5L,7,8,2.8000000000000003,1.9766283221542835,-0.11124112643301487,2.5326358154416084,7.0418999530375,-0.5883805570192635,0.6360637489706278,-1.3420076575130224,-3.2723958720453084,8.588939905166626,-4.429016727954149,2.371057868003845,87.80405521392822,98.05592596530914,4.8192426562309265,51.2909471988678,30.168084800243378,3.1060950756073,-0.7425225973129272,0.007433176040649414,-1.0115138643155546,0.7595438832479161,0.7595438832479161,4.117608939922855,-1.5020664805608432,-0.7521107072072667 +illusion,illusion_1.5L,8,9,3.2,1.8226827960461378,-0.0837176339700818,2.470573759637773,6.763830315321684,-1.0176129871979356,1.0488464613445103,-1.420306449290365,-3.8582258857786655,8.836976252496243,-4.143605940043926,-5.268210172653198,92.22124218940735,96.78440690040588,2.4730518460273743,52.00382471084595,31.425298750400543,1.72958505153656,-1.038867473602295,-0.7894325256347656,-1.947935614810226,1.4499694553908915,1.4499694553908915,3.677520666346786,-2.4888369289931864,-2.239401981025657 +illusion,illusion_1.5L,9,10,3.6,1.8619755282998085,-0.05460693500936031,2.2757321130484343,6.413439754396677,-2.238609828054905,1.2778476520907134,-1.0556325141806155,-4.349874856416136,8.733537979424,-3.5512277390807867,-11.911645531654358,94.723379611969,96.83253467082977,-1.310873031616211,54.473304748535156,30.319252610206604,-2.8960652351379395,0.8024281859397888,0.2997243404388428,-4.521848418819568,3.352260868621562,3.352260868621562,1.6257831836816283,-2.549832682681773,-3.0525365281827193 +illusion,illusion_1.5L,10,11,4.0,1.9641483668237925,-0.2583751920610666,2.621454419568181,7.2070572059601545,-1.9638682715594769,1.06075951771345,-0.7578538643429056,-3.479576000245288,8.477425202727318,-2.695498988032341,-18.861639499664307,95.02606391906738,97.2680926322937,-5.927670747041702,55.70058226585388,27.506624907255173,-2.8749313354492188,0.5102958679199219,-0.1385636329650879,-3.582442525814412,2.6768203984741676,2.6768203984741676,0.7075111903651932,-2.1665245305542458,-2.8153840314392555 +illusion,illusion_1.5L,11,12,4.4,2.448857529088855,-0.5179090658202767,2.5228654267266393,7.494588382542133,-0.27221758500672877,0.32329600071534514,-0.5015356582589447,-1.2752889015246183,8.370790630578995,-1.639144727960229,-25.724080204963684,91.60879254341125,98.9040344953537,-11.457278579473495,48.58897030353546,22.560326009988785,2.082700252532959,-1.9510060548782349,-1.7401481866836548,0.3840236488640384,-0.2337169894456786,-0.2337169894456786,1.6986766036689205,-1.7172890654325563,-1.5064311972379762 +illusion,illusion_1.5L,12,13,4.800000000000001,2.488433150574565,-0.7928058039397001,2.5691611226648092,7.626755395904183,0.5254117422737181,-0.0987235143838916,0.18292240201844834,0.8912565463106148,8.236602880060673,-0.4590688622556627,-31.042182445526123,84.46371555328369,102.98044681549072,-16.0265548620373,26.00788176059723,15.685583790764213,3.2977347373962402,-1.7491471767425537,-1.3527135848999023,2.532851115337287,-1.797395169898066,-1.797395169898066,0.7648836220589534,0.0482479931555122,0.44468158499816357 +illusion,illusion_1.5L,13,14,5.2,1.8838070100173354,-0.6701154634356499,3.1197210773825645,8.123249164782465,-0.6436859839595854,0.11103381984867156,0.9704340191092342,1.297182054258883,8.309897966682911,0.759548507630825,-32.364606857299805,77.54445672035217,107.5880765914917,-15.510006248950958,-8.852551132440567,5.645644664764404,-2.2483150959014893,1.2822113037109375,0.6088136434555054,-0.10484931002764841,0.14298055630214834,0.14298055630214834,-2.1434657858738406,1.139230747408789,0.46583308715335703 +illusion,illusion_1.5L,14,15,5.6000000000000005,1.9715989474207163,-0.27548230718821287,3.4080989426001906,8.787796832621098,-1.2102999025955796,0.656812364468351,1.0831640975084156,0.9560282924212515,8.405817672610283,1.9296474056318402,-26.32969319820404,75.83619952201843,106.52782022953033,-7.553337421268225,-39.72598612308502,-10.129605326801538,-4.935033798217773,1.3881111145019531,0.37272727489471436,-1.9954581919302798,1.5038521554834134,1.5038521554834134,-2.9395756062874936,-0.11574104098146032,-1.131124880588699 +illusion,illusion_1.5L,15,16,6.0,2.131805056706071,-0.09315472561866045,2.941480721347034,8.014766499400139,0.5771671421825886,0.7798851365805604,0.5914292632951401,1.7600256687728688,8.243248797953129,2.9686721973121166,-15.443456172943115,80.08736968040466,100.52798986434937,0.3147050738334656,-49.91448521614075,-24.93283897638321,0.7847888469696045,-2.9272146224975586,-2.6953020095825195,1.361714170697598,-0.9988112129249974,-0.9988112129249974,-0.5769253237279934,-1.928403409572561,-1.696490796657522 +illusion,illusion_1.5L,16,17,6.4,2.462418982759118,-0.3675582120195031,2.709611668251455,7.881642319262028,2.0527970045804977,0.42666064109653234,1.0236422531306744,4.1000815108418465,8.251132443547249,3.8044583052396774,-6.639471650123596,85.14645099639893,96.54123485088348,0.7378801703453064,-46.87660336494446,-31.361596286296844,4.467765808105469,-3.532165765762329,-2.7391390800476074,4.909367825006546,-3.5979057794930305,-3.5979057794930305,-0.4416020169010775,0.06574001373070137,0.858766699445423 +illusion,illusion_1.5L,17,18,6.800000000000001,1.8117758445441723,-0.5666654324159026,3.317310125567019,8.44639609567821,0.9371641790494323,0.9103651973418891,2.3281756439246237,5.59351546689868,8.374292403459549,4.380189348012209,-0.9568601846694946,87.16397285461426,95.47930657863617,-3.442510962486267,-44.12388205528259,-32.69954025745392,-1.240140438079834,2.5390729904174805,1.3095413446426392,2.96984207026792,-2.1429040075330623,-2.1429040075330623,-4.209982508347753,4.681976997950542,3.4524453521757015 +illusion,illusion_1.5L,18,19,7.2,2.0154344383627176,0.08440751116722822,3.7019633455201983,9.419361129403114,-0.3233806346543133,1.6343723982572556,2.5708419270813465,4.81830321950838,8.528592064976692,4.65808343142271,3.6934733390808105,86.23248934745789,95.59316039085388,-8.947191387414932,-43.08321475982666,-32.906632870435715,-4.770424842834473,4.806854248046875,2.5702767372131348,-0.8217960769383508,0.6000337401454787,0.6000337401454787,-3.948628765896122,4.206820507901396,1.970242997067656 +illusion,illusion_1.5L,19,20,7.6000000000000005,2.0055773202329874,0.8384524844586849,3.3402545377612114,8.68608639575541,0.8728746906854212,1.0402831921965117,1.0977426336467033,3.068359957978828,8.839370682835579,4.621583968400955,8.432108163833618,82.16429948806763,96.14025950431824,-14.955319464206696,-43.203309178352356,-32.67210274934769,1.6993141174316406,-1.6003327369689941,-1.823062539100647,0.2705226169601682,-0.28202927847626325,-0.28202927847626325,1.4287915004714724,-1.318303458492731,-1.5410332606243837 +illusion,illusion_1.5L,20,21,8.0,2.0893707405775785,1.1846119305118918,4.065693006850779,10.220756754279137,2.166713820770383,0.8058734456426464,0.7409612662740983,3.6486363533185795,8.838828653097153,4.275944549590349,12.940403819084167,74.73500967025757,97.32113182544708,-20.71995623409748,-42.8042858839035,-31.454874202609062,7.140627861022949,-3.895944356918335,-2.799201488494873,2.3093477772861757,-1.8248753691618862,-1.8248753691618862,4.8312800837367735,-2.0710689877564485,-0.9743261193329869 +illusion,illusion_1.5L,21,22,8.4,2.1720232907682657,0.42258319444954395,3.2329175155609846,8.637858321890235,0.15653485024813563,0.8266734075732529,1.5605913358740509,3.2777175219962373,8.61181877553463,3.647242672741413,16.0690039396286,65.60988426208496,98.84417355060577,-25.88163409382105,-37.116578221321106,-29.902168177068233,-1.336065411567688,2.313767433166504,1.3603953123092651,-0.4487271757049878,0.29090824230614976,0.29090824230614976,-0.8873382358627002,2.022859190860354,1.0694870700031154 +illusion,illusion_1.5L,22,23,8.8,3.2992565538734198,0.800785725004971,2.8107998659834266,8.920856285840273,-1.818204764276743,0.6878754356876016,2.0658582216128707,2.3135116789489985,8.512568660080433,2.779964357614517,17.478647828102112,56.747305393218994,100.21468102931976,-31.04670261964202,-23.434831202030182,-28.48815703764558,-6.539678573608398,6.0,4.649063587188721,-5.216389044650598,3.7828891913237292,3.7828891913237292,-1.3232895289578002,2.2171108086762708,0.8661743958649915 +illusion,illusion_1.5L,23,24,9.200000000000001,2.2216865327209234,0.8567103650420904,3.4567646216601133,9.13521577604115,-0.030284199965535663,0.6101008839323185,0.4762764219776727,0.9222686439898098,8.35700798779726,1.733398879878223,16.186538338661194,48.86405169963837,99.61603581905365,-31.954536959528923,-3.176289424300194,-22.428764775395393,0.8633862733840942,0.5897889137268066,0.36819159984588623,-1.6273922517362265,1.1209679504596257,1.1209679504596257,2.4907785251203207,-0.5311790367328191,-0.7527763506137395 +illusion,illusion_1.5L,24,25,9.600000000000001,1.9370517693459988,0.6335610523819923,5.0361244939267635,12.009300757199526,2.033960074186325,1.4300565526355058,-0.5008575681131333,1.0322449379600585,8.34998395293951,0.5771745345555246,10.670274496078491,44.3181037902832,95.31978964805603,-22.11209535598755,20.24828940629959,-4.621315002441406,8.0,-3.6097168922424316,-2.3268938064575195,3.0418304773618408,-2.3132778583145552,-2.3132778583145552,4.958169522638159,-1.2964390339278764,-0.013615948142964296 +illusion,illusion_1.5L,25,26,10.0,1.6905860975384712,0.6291288882493973,4.033223260194063,9.757032617926598,-0.2921183477155864,2.3901259410195053,-0.5147806950844824,-1.3216797378845513,8.401495404541492,-0.6137097952887416,2.297726273536682,45.61518132686615,89.57554996013641,-3.6418482661247253,40.87720513343811,21.883024275302887,2.7576868534088135,-0.2618296146392822,-0.6473937034606934,-1.7522456626547938,1.235582735557218,1.235582735557218,4.509932516063607,-1.4974123501965002,-1.8829764390179113 +illusion,illusion_1.5L,26,27,10.4,3.1635896302759647,0.4484662786126137,2.473853761330247,8.111297152936459,-2.8557844925671816,1.5009381459094584,0.29654725221917033,-2.262689988128841,8.17778054624796,-1.763974200002849,-6.089743971824646,51.13985538482666,85.17179191112518,12.194870412349701,55.07956147193909,45.871223509311676,-4.674729347229004,5.024030685424805,4.650024890899658,-6.714916655162664,4.926424547195726,4.926424547195726,2.0401873079336603,0.09760613822907871,-0.2763996562960678 +illusion,illusion_1.5L,27,28,10.8,2.4231974966824055,0.22570928558707237,2.726250095292926,7.875697687268257,-1.8865939928218722,1.5893276140559465,-0.8005883719306439,-3.48777073668316,8.096658624708652,-2.8029107488691807,-12.757563591003418,57.64610171318054,84.46722030639648,17.62870103120804,64.8333489894867,59.036581218242645,-0.3786667585372925,1.4190990924835205,1.7054944038391113,-4.307141075277544,3.165994324761776,3.165994324761776,3.9284743167402514,-1.7468952322782556,-1.4604999209226648 +illusion,illusion_1.5L,28,29,11.200000000000001,1.8724738620221615,-0.046928063966333866,3.2072366448119283,8.286947151646018,-0.2388741122558713,1.8800142279360443,-2.1308996656443924,-4.500673443544656,8.196541108191013,-3.6686852108687162,-18.49144697189331,61.36064529418945,85.95890998840332,13.761977851390839,74.05665516853333,62.59101778268814,6.174801349639893,-4.017397880554199,-3.041539192199707,-0.4074348656143548,0.3061489495411063,0.3061489495411063,6.582236215254247,-4.323546830095306,-3.3476881417408135 +illusion,illusion_1.5L,29,30,11.600000000000001,1.4456164790317416,-0.3934401320293546,3.105988842435181,7.657594163902104,-1.2636590981855989,2.474458917276934,-1.786403328878805,-4.836465755943209,8.346819318830967,-4.311835393309593,-25.031304359436035,62.88880705833435,89.36947584152222,7.401761412620544,83.85981917381287,62.058618664741516,2.392789363861084,-0.9184668064117432,-1.1114833354949951,-1.8901556053546111,1.4374179950295294,1.4374179950295294,4.282944969215695,-2.3558848014412725,-2.5489013305245245 +illusion,illusion_1.5L,30,31,12.0,2.585663693025708,-0.7460557390004396,2.4399340618401766,7.465531816706061,-3.445099340751767,1.7135000671260059,-0.5210701492615044,-4.487239639274776,8.710415102541447,-4.69779409468174,-32.94039964675903,63.20485472679138,91.74854755401611,2.1537810564041138,86.94407939910889,59.436723589897156,-5.452765941619873,5.279187202453613,4.6669206619262695,-5.7496339429949845,4.328485601451767,4.328485601451767,0.2968680013751115,0.9507016010018461,0.33843506047450234 +illusion,illusion_1.5L,31,32,12.4,2.0687223877757788,-0.5242804763838649,3.06474429089576,8.198210969567299,-2.378669334575534,1.8398721294943243,-0.983071600785479,-4.344812536146492,8.84176604449749,-4.808346275240183,-41.72511398792267,64.75885510444641,94.6247547864914,-2.007770538330078,76.53593420982361,54.673177003860474,-1.5368893146514893,2.5977821350097656,1.9916706085205078,-3.9530925911026404,2.977105080235147,2.977105080235147,2.416203276451151,-0.37932294522538124,-0.985434471714639 +illusion,illusion_1.5L,32,33,12.8,2.245561685413122,-0.42531127110123634,3.116191364824772,8.477944415062666,-0.19130883447360247,1.8041300936602056,-2.5000270106829703,-5.191362855839543,8.70272982865572,-4.642012063413858,-49.213266372680664,61.89578175544739,95.04097700119019,-2.747070789337158,54.76155877113342,42.360687255859375,6.646983623504639,-5.369624137878418,-4.616011619567871,0.381919654943971,-0.2411932208970548,-0.2411932208970548,6.265063968560668,-5.1284309169813636,-4.374818398670817 +illusion,illusion_1.5L,33,34,13.200000000000001,1.4943763380870223,-0.454406370408833,3.328205202706158,8.150786743499339,-1.065180404111743,2.39489866362419,-1.9685375882545486,-5.00225558062084,8.674847893416882,-4.213416017591953,-51.90523862838745,62.76023983955383,95.19553184509277,1.884905993938446,19.664742052555084,19.6603462100029,2.502175807952881,-3.005535840988159,-3.405853748321533,-1.3690366015325182,1.0576493525239143,1.0576493525239143,3.8712124094853992,-4.063185193512074,-4.463503100845448 +illusion,illusion_1.5L,34,35,13.600000000000001,2.219915157184005,-0.7653905777260661,3.277827170677483,8.775569498538971,-3.422849578782916,1.591354375705123,-0.22212928161025047,-3.867108142003417,8.570708334445953,-3.5517665091902018,-49.62272346019745,65.97777605056763,94.02728378772736,6.982414401136339,-19.086457788944244,-6.521877669729292,-7.78192138671875,4.198786735534668,2.845604419708252,-5.668382374154753,4.270231925524673,4.270231925524673,-2.1135390125639972,-0.07144518999000482,-1.4246275058164208 +illusion,illusion_1.5L,35,36,14.0,1.8714717589318752,-1.0887602111324668,4.448511288501322,10.76849433593452,-1.8208849942311645,2.3308321833610535,-0.16410299576818943,-2.1490909857675433,8.535319939255714,-2.6986123993992805,-42.2369509935379,71.98534607887268,93.51700246334076,10.63796579837799,-53.23801636695862,-30.048304796218872,-5.047682762145996,2.685530662536621,0.9756829142570496,-1.7704698374412762,1.416663450606723,1.416663450606723,-3.27721292470472,1.268867211929898,-0.4409805363496735 +illusion,illusion_1.5L,36,37,14.4,2.989733824506402,-0.6968007073737681,2.633851661812514,8.25743714813143,1.2781108962371945,0.9828735128394328,-1.0433253846713342,-0.8085398731054738,8.559806272387505,-1.705055357888341,-31.710100173950195,76.92062258720398,92.11673736572266,10.811421275138855,-76.75595879554749,-45.25403678417206,5.812684535980225,-5.331756591796875,-4.230833053588867,3.911429721472657,-2.8271427453101308,-2.8271427453101308,1.9012548145075674,-2.5046138464867442,-1.4036903082787364 +illusion,illusion_1.5L,37,38,14.8,2.6946065481752157,-0.5903481505811214,2.916021039709449,8.526648627594113,0.8473167545162141,0.6347075541270897,-0.3782375279115513,0.09084169869311154,8.268664591014385,-0.6286250427365303,-20.548173785209656,82.13353157043457,93.34948360919952,9.353610873222351,-85.02906560897827,-51.78416669368744,2.9515912532806396,-3.555356740951538,-2.8793158531188965,2.8276116693354267,-2.035319014675104,-2.035319014675104,0.12397958394521291,-1.520037726276434,-0.8439968384437924 +illusion,illusion_1.5L,38,39,15.200000000000001,1.8350029131397605,-0.4615697544068098,3.394182538613677,8.623367990367115,-1.026335172355175,0.7712927617831156,1.122347850468941,1.218360528582707,8.048145100474358,0.46999973710626364,-10.481470823287964,84.52115058898926,94.75305676460266,6.8736061453819275,-83.71127247810364,-54.40409332513809,-5.49228572845459,3.0450782775878906,1.7320277690887451,-1.275756236455888,0.9893049223349312,0.9893049223349312,-4.216529491998702,2.0557733552529593,0.742722846753814 +illusion,illusion_1.5L,39,40,15.600000000000001,1.5814006328582764,-0.2592821838334203,4.15942573454231,9.900252101942897,-0.46172839938662946,1.9168133148923516,1.4092124765738845,2.3566965537611395,8.044709451496601,1.5302501851692796,-1.0916471481323242,85.74427962303162,97.67376184463501,4.3625205755233765,-83.89923572540283,-55.79141080379486,-4.565585613250732,3.1382665634155273,1.2720472812652588,-0.47962899231809997,0.38030141462296135,0.38030141462296135,-4.085956620932633,2.757965148792566,0.8917458666422975 +illusion,illusion_1.5L,40,41,16.0,2.2688298486173153,0.0767373712733388,2.49017181340605,7.249173475429416,1.9609800074249506,1.1402862728573382,0.4816797445528209,2.9243394965305924,8.106881752610207,2.4947577621787786,8.642345666885376,84.05216932296753,100.05804896354675,2.28579044342041,-89.31483626365662,-55.77288269996643,4.4835381507873535,-3.9344139099121094,-3.2997164726257324,3.9082601299054054,-2.9002605997067876,-2.9002605997067876,0.5752780208819481,-1.0341533102053218,-0.3994558729189448 +illusion,illusion_1.5L,41,42,16.400000000000002,2.2502802312374115,0.036929850466549397,3.069836995564401,8.389954222366214,2.1547027863562107,0.9238121201633476,0.6862444934085943,3.5271917731733993,8.437012322247028,3.3121565356850624,18.86158585548401,83.14383625984192,102.99831032752991,0.9637415409088135,-93.00235509872437,-52.940309047698975,4.216999530792236,-3.8932297229766846,-2.9393491744995117,4.38091197942272,-3.246219516743524,-3.246219516743524,-0.1639124486304837,-0.6470102062331606,0.3068703422440122 +illusion,illusion_1.5L,42,43,16.8,2.0419724751263857,-0.10307040065526962,2.8008476365357637,7.643667748197913,0.06833775114500895,1.1316699674353004,2.146100508980453,4.360538769105915,8.649187162518501,3.9395010098814964,28.82325053215027,85.1870059967041,104.531329870224,-1.1440977454185486,-73.89212846755981,-45.57763785123825,-4.7849836349487305,3.486323356628418,2.142104148864746,0.32935161480181196,-0.23372075263706338,-0.23372075263706338,-5.1143352497505425,3.7200441092654812,2.3758249015018094 +illusion,illusion_1.5L,43,44,17.2,2.01283092610538,0.3676831256598234,3.358850022777915,8.73053097166121,-0.1283995807170868,1.8075056141242385,2.3402116494253278,4.552023718133569,8.595731109380722,4.34423191472888,36.13176941871643,89.8674726486206,104.56811785697937,-4.533465206623077,-27.027520537376404,-30.393938720226288,-4.862180709838867,4.5239763259887695,2.5475692749023438,-0.9366915362020067,0.6574403786612075,0.6574403786612075,-3.9254891736368602,3.866535947327562,1.8901288962411362 +illusion,illusion_1.5L,44,45,17.6,1.9870097748935223,0.7046327227726579,2.8463961789384484,7.679802132770419,2.0598648115992546,1.0408787529740948,0.9436858344997745,3.9472364805988036,8.6716553196311,4.50563570484519,36.5874707698822,93.54161024093628,100.28523802757263,-7.168773747980595,18.65711361169815,-5.482461117208004,5.048116207122803,-3.1425673961639404,-2.7506165504455566,2.96549080809661,-2.2637070989113997,-2.2637070989113997,2.0826253990261927,-0.8788602972525408,-0.486909451534157 +illusion,illusion_1.5L,45,46,18.0,1.911716302856803,0.6616058526560664,3.7167567061260343,9.345229715108871,2.3190700449049473,1.1931909248232841,0.7513484451919794,3.821766935288906,8.69801826775074,4.415767267346382,29.32487726211548,96.59415483474731,94.41219568252563,-7.70476832985878,47.761234641075134,19.84713301062584,6.939489364624023,-3.88944673538208,-3.291231393814087,3.5792111843700978,-2.7137665459120224,-2.7137665459120224,3.3602781802539257,-1.1756801894700577,-0.5774648479020645 +illusion,illusion_1.5L,46,47,18.400000000000002,2.4448379408568144,0.23153680376708508,2.596904756501317,7.638647453859448,-0.27444359147921205,1.083545619621873,1.8327923025935888,3.3911410137079656,8.734594099223614,4.079805221408606,18.71974766254425,98.68184924125671,92.2756165266037,-5.783593654632568,60.89067459106445,32.129085063934326,-2.187124252319336,3.1564512252807617,2.0339341163635254,-0.9895128901558502,0.7098191233366109,0.7098191233366109,-1.1976113621634856,2.446632101944151,1.3241149930269145 +illusion,illusion_1.5L,47,48,18.8,3.248955123126507,0.5897574592381716,2.763542579486966,8.776040282100439,-1.2829023180529475,0.8892324985936284,2.0178986014798284,2.752894884906709,8.82646068930626,3.5158328246325254,9.863808751106262,98.83411526679993,92.77425706386566,-4.663205146789551,58.489108085632324,35.70053279399872,-4.104968547821045,4.942201614379883,3.7803053855895996,-3.72579593143374,2.7001850994168874,2.7001850994168874,-0.3791726163873048,2.2420165149629954,1.0801202861727122 +illusion,illusion_1.5L,48,49,19.200000000000003,2.3894861806184053,0.5786905530840158,2.7619621250778437,7.913410430774093,0.032915511837927625,0.6160552729852498,0.5414262996055186,1.1157681110489648,8.55401810258627,2.754038665443659,3.2825887203216553,98.95422458648682,94.18352842330933,-4.423284530639648,55.22276163101196,37.47634291648865,2.077652931213379,-0.8700082302093506,-0.8654709458351135,-0.9890847541454555,0.6756350261021208,0.6756350261021208,3.0667376853588344,-1.5456432563114713,-1.5411059719372342 +illusion,illusion_1.5L,49,50,19.6,1.6786569030955434,0.46540587209165096,3.757215803489089,9.193088510073721,1.0241968557238579,1.3335482799448073,0.011415628250688314,1.0470281122252345,8.233987726271152,1.8353472696617246,-1.9723117351531982,98.5209584236145,95.05367279052734,-4.557663202285767,54.793381690979004,38.93086612224579,6.176417350769043,-2.574202299118042,-2.5841684341430664,1.264334628721604,-0.9812252377088032,-0.9812252377088032,4.912082722047439,-1.592977061409239,-1.6029431964342633 +illusion,illusion_1.5L,50,51,20.0,2.0368127152323723,0.07728138007223606,2.5547125842422247,7.146237883716822,-0.9305854327976704,1.382172922603786,0.3205097746104002,-0.28956588357686996,8.110440336167812,0.8095093653537333,-6.420817971229553,98.72027039527893,96.18694484233856,-5.3033247590065,56.627440452575684,39.97725695371628,-0.37629634141921997,1.7722406387329102,0.9497917294502258,-2.0623493364947514,1.5189484386784935,1.5189484386784935,1.6860529950755314,0.25329220005441666,-0.5691567092282677 +illusion,illusion_1.5L,51,52,20.400000000000002,3.067307872697711,0.12257543858140707,2.2246179869398475,7.516543846577406,-2.4983736220747232,0.7838753372197971,0.4969724832335487,-1.5044286556076258,8.025186136364937,-0.2672986011020839,-10.988885164260864,99.08801317214966,96.17857336997986,-6.964290142059326,59.31470990180969,40.64922332763672,-4.616179466247559,4.626690864562988,3.9538867473602295,-5.381770944251291,3.9714638198395367,3.9714638198395367,0.7655914780037323,0.6552270447234516,-0.017577072479307176 +illusion,illusion_1.5L,52,53,20.8,2.24987231194973,0.36048772744834423,2.8980893548578024,8.046051021665335,-1.2805529404431581,0.688313946739072,-0.7276543437910732,-2.7358616280253045,8.21420457214117,-1.3352894457057118,-16.379085183143616,99.81200695037842,95.52346169948578,-9.96336042881012,61.86891794204712,41.16031229496002,1.2789175510406494,-0.015967845916748047,-0.10250090807676315,-3.3021606059629223,2.408990035377834,2.408990035377834,4.581078157003572,-2.4249578812945822,-2.5114909434545973 +illusion,illusion_1.5L,53,54,21.200000000000003,1.8925413023680449,0.02075335942208767,3.5944608971476555,9.081463096663356,0.2390064619248733,1.2389190669637173,-1.646223507123068,-3.0534405523212627,8.388136513531208,-2.3341856431216,-22.737064957618713,98.31551909446716,94.00944411754608,-15.833044052124023,63.04342746734619,40.808433294296265,6.972156047821045,-3.7519991397857666,-3.5256190299987793,0.45551892551002304,-0.339185776703027,-0.339185776703027,6.516637122311022,-3.4128133630827397,-3.1864332532957524 +illusion,illusion_1.5L,54,55,21.6,1.6120803775265813,-0.23011304438114166,2.9718726873397827,7.555825752206147,-1.5295202611014247,1.6720556595828384,-1.0861758200917393,-3.7018719012849033,8.321747183799744,-3.206508932635188,-29.86851930618286,93.37770342826843,93.98072957992554,-25.057563185691833,59.59800481796265,39.50473368167877,1.043534517288208,0.9505014419555664,-0.02289605140686035,-2.7373579810909607,2.0485575585210585,2.0485575585210585,3.7808924983791687,-1.098056116565492,-2.071453609927919 +illusion,illusion_1.5L,55,56,22.0,2.870693802833557,-0.34180073998868465,2.856493229046464,8.583680260926485,-3.7342512514442205,0.8746400417294353,-0.3461176820565015,-4.426486615557224,8.427520282566547,-3.900873241946101,-36.343175172805786,83.65634083747864,95.82687020301819,-32.357484826934524,43.2683527469635,32.419853677856736,-6.262017726898193,5.605282783508301,4.55924129486084,-7.084999829937612,5.277444679551832,5.277444679551832,0.8229821030394184,0.32783810395646906,-0.7182033846909919 +illusion,illusion_1.5L,56,57,22.400000000000002,2.2109253332018852,-0.10760524310171604,3.1325651798397303,8.476055692881346,-2.2419767919927835,0.8683405467309058,-1.1924306745640934,-4.62683814112097,8.568542078137398,-4.375095013529062,-36.47206425666809,72.55709767341614,97.09824919700623,-24.668996036052704,8.975788205862045,11.668883264064789,-1.3123713731765747,1.5574955940246582,1.0396419763565063,-4.431992559755027,3.2909226606995294,3.2909226606995294,3.1196211865784527,-1.7334270666748712,-2.251280684343023 +illusion,illusion_1.5L,57,58,22.8,2.273677848279476,-0.3664745017886162,3.374562133103609,9.022802114486694,0.23193996457848698,1.0893370490521193,-2.3861269000917673,-4.540313835605048,8.71978048235178,-4.5989216305315495,-28.186172246932983,64.30043578147888,94.7090208530426,-7.54706971347332,-35.07728576660156,-14.11302424967289,6.186789035797119,-4.970672607421875,-4.021912097930908,1.148242226656754,-0.8141416245400487,-0.8141416245400487,5.038546809140366,-4.156530982881827,-3.2077704733908594 +illusion,illusion_1.5L,58,59,23.200000000000003,1.7755908193066716,-0.3418475389480591,3.1663987319916487,8.108388283289969,-0.7775248377583921,1.7188759575219592,-1.7542065997986356,-4.285938037355663,8.962784893810749,-4.556191619485617,-18.015089631080627,65.62168002128601,92.11225211620331,7.9295143485069275,-63.95658254623413,-35.44232398271561,1.2095974683761597,-1.64272141456604,-1.735213279724121,-0.980774214290697,0.759288557031507,0.759288557031507,2.1903716826668567,-2.402009971597547,-2.494501836755628 +illusion,illusion_1.5L,59,60,23.6,2.050986746326089,-0.4143952392041683,2.9115427751094103,7.8740722965449095,-3.0570959206670523,1.1694113491103053,-0.3971849801018834,-3.851465880870819,8.836515247821808,-4.246238153427839,-9.73173975944519,73.50502014160156,90.41315913200378,14.64756727218628,-69.61948871612549,-47.77789115905762,-7.842334747314453,4.638605117797852,3.6538825035095215,-5.554416168275665,4.151635656155523,4.151635656155523,-2.287918579038788,0.4869694616423281,-0.49775315264600195 +illusion,illusion_1.5L,60,61,24.0,1.5941315796226263,-0.4230830818414688,3.4569103736430407,8.507952326908708,-1.2958437437191606,1.7546414746902883,-0.574635632801801,-2.4451150093227625,8.545846678316593,-3.6844098940491676,-3.953835368156433,81.85133934020996,91.15242063999176,12.217065691947937,-68.14921498298645,-50.02054274082184,-3.191343307495117,2.1452808380126953,1.0273293256759644,-1.9024546351937437,1.4494132308303729,1.4494132308303729,-1.2888886723013735,0.6958676071823224,-0.4220839051544085 +illusion,illusion_1.5L,61,62,24.400000000000002,3.282708814367652,-0.3896004054695368,2.4247278925031424,8.132164599373937,1.4425860717892647,0.7684876909479499,-1.7943087732419372,-2.1460314746946096,8.398630656301975,-2.901609754189849,1.391884684562683,87.72841691970825,91.52285158634186,8.322837948799133,-67.67399311065674,-50.40406286716461,6.536932945251465,-6.453195571899414,-4.873745441436768,3.689854164360643,-2.693108784042069,-2.693108784042069,2.847078780890822,-3.760086787857345,-2.1806366573946985 +illusion,illusion_1.5L,62,63,24.8,2.550545847043395,-0.27994520496577024,2.8961432399228215,8.342832326889038,0.3858356212731451,1.1089898252976127,-0.9508335424470715,-1.515831463620998,8.222403936088085,-1.9428232917562127,7.370835542678833,92.33819842338562,91.80321097373962,6.110002100467682,-67.69800782203674,-52.23674029111862,1.7836202383041382,-3.1361281871795654,-2.8810276985168457,1.3079039122582101,-0.9407598302237346,-0.9407598302237346,0.47571632604592806,-2.195368356955831,-1.9402678682931112 +illusion,illusion_1.5L,63,64,25.200000000000003,1.9039488397538662,0.000721425749361515,3.5223226295784116,8.94859409891069,-1.782048842869699,1.2423950975062326,0.8031012694118544,-0.1758463040459901,8.255818858742714,-0.8646877249702811,13.68027925491333,93.75454783439636,91.54075384140015,3.6977827548980713,-68.52490305900574,-54.19834852218628,-7.212460041046143,4.372986793518066,2.6398568153381348,-3.680344607852163,2.724007885273351,2.724007885273351,-3.5321154331939795,1.6489789082447155,-0.08415106993521615 +illusion,illusion_1.5L,64,65,25.6,1.3709504855796695,-0.17623812891542912,4.116981523111463,9.604913531802595,-0.3364184813108295,2.3959007812663913,0.8533907821401954,1.3703630829695612,8.317413739860058,0.26779170730151236,19.62392032146454,93.18035244941711,93.85460913181305,-0.31826794147491455,-71.37075066566467,-54.619547724723816,-3.896819829940796,2.7165050506591797,0.6868739128112793,-0.3726161982994129,0.292992313643305,0.292992313643305,-3.524203631641383,2.4235127370158747,0.3938815991679743 +illusion,illusion_1.5L,65,66,26.0,2.8254336211830378,0.05345698446035385,2.3266091011464596,7.478651823475957,2.384883351624012,1.10181380296126,-0.0873628887347877,2.2101575741544366,8.129971101880074,1.3851849362254143,26.920244097709656,87.78836727142334,96.38732969760895,-6.340301036834717,-74.80965256690979,-52.019286155700684,6.125576972961426,-5.330362319946289,-4.249595642089844,4.825929546678554,-3.5772202129942583,-3.5772202129942583,1.2996474262828714,-1.7531421069520308,-0.6723754290955855 +illusion,illusion_1.5L,66,67,26.400000000000002,2.292623743414879,-0.047429814003407955,3.091030172072351,8.47468408755958,1.7104989383369684,1.1048538144677877,0.494082341901958,2.6986636221408844,8.126952685415745,2.4179983884096146,36.004844307899475,79.45612072944641,99.60187375545502,-13.219784200191498,-69.30570006370544,-44.149334728717804,2.5952274799346924,-3.124833583831787,-2.607830047607422,3.617948089049331,-2.673267174449612,-2.673267174449612,-1.0227206091146388,-0.45156640938217496,0.06543712684219027 +illusion,illusion_1.5L,67,68,26.8,2.017610240727663,0.009501352906227112,3.0155719723552465,8.048754185438156,-0.44682223233394325,1.3178919616620988,2.1069390058983117,3.76705577946268,8.257587440311909,3.3011636696755886,43.648937344551086,72.3581314086914,99.80219304561615,-20.37811055779457,-39.68281447887421,-29.134073108434677,-6.152360916137695,4.412425994873047,2.723601818084717,-0.939816453239436,0.6946964090716355,0.6946964090716355,-5.21254446289826,3.717729585801411,2.028905409013081 +illusion,illusion_1.5L,68,69,27.200000000000003,1.6188333975151181,0.23577571846544743,3.493387019261718,8.605607436038554,0.2030624309554696,2.0295452559366822,1.9896699814125896,4.182402393780649,8.440481498837471,3.9783427491784096,44.7833389043808,73.33269715309143,98.70873987674713,-24.033290147781372,1.7736002802848816,-9.35811698436737,-3.519594669342041,3.3505465984344482,1.5296449661254883,-0.011448006242182118,-0.014528058040556513,-0.014528058040556513,-3.508146663099859,3.365074656475005,1.5441730241660447 +illusion,illusion_1.5L,69,70,27.6,2.242323709651828,0.5547213368117809,2.721114782616496,7.68455327488482,2.7384290006011724,0.9432045844732784,0.7689601407037117,4.276349282008596,8.800248615443707,4.405742511153221,36.43065392971039,75.57293772697449,94.28252279758453,-18.474183976650238,38.12881410121918,11.637841165065765,7.532464981079102,-4.705203056335449,-3.5526809692382812,4.640210396511941,-3.488658330110783,-3.488658330110783,2.8922545845671603,-1.216544726224666,-0.06402263912749806 +illusion,illusion_1.5L,70,71,28.0,1.7814189195632935,0.48151961527764797,3.5948127042502165,8.971044328063726,1.9116566982120275,1.320286450209096,0.8741747296880931,3.6600061575882137,8.863523602485657,4.555147606879473,21.93181812763214,79.10106182098389,90.23633897304535,-4.867970943450928,64.39285278320312,29.878780245780945,5.614630699157715,-3.4154739379882812,-2.8284897804260254,3.067055574937542,-2.3171160283505032,-2.3171160283505032,2.547575124220173,-1.098357909637778,-0.5113737520755222 +illusion,illusion_1.5L,71,72,28.400000000000002,2.8004697524011135,0.42906205635517836,2.6492165634408593,8.098902879282832,-1.061026006937027,1.1351241846568882,2.389978792052716,3.718931577168405,8.704573847353458,4.415951203554869,9.368515014648438,83.36759805679321,86.68027520179749,4.786787927150726,67.92701482772827,41.68017953634262,-4.455737113952637,4.817193984985352,3.5522584915161133,-2.974207008093782,2.159558943845326,2.159558943845326,-1.4815301058588548,2.6576350411400256,1.3926995476707873 +illusion,illusion_1.5L,72,73,28.8,3.0004463624209166,0.46601006761193275,2.9582756105810404,8.916997583582997,-0.5963611183688045,1.3787006319034845,2.1157141018193215,3.6350670852698386,8.663436397910118,3.9960062131285667,2.2679269313812256,88.43041062355042,88.16983103752136,5.739565193653107,64.11374807357788,45.704810321331024,-2.026003122329712,3.9776554107666016,2.884641170501709,-2.0823991242561433,1.4958655555533693,1.4958655555533693,0.05639600192643135,2.4817898552132323,1.3887756149483397 +illusion,illusion_1.5L,73,74,29.200000000000003,2.1938332356512547,0.5031331675127149,2.791339880786836,7.776512997224927,0.8068406023085117,0.8580151916248724,0.5891955952392891,1.98523179278709,8.541211485862732,3.321231808513403,-2.3253142833709717,91.19751453399658,90.41673541069031,4.209074378013611,63.778501749038696,46.76397144794464,4.626152992248535,-2.192498207092285,-1.8297028541564941,0.7466913917761472,-0.6017621347141647,-0.6017621347141647,3.879461600472388,-1.5907360723781205,-1.2279407194423295 +illusion,illusion_1.5L,74,75,29.6,1.5296167694032192,0.5089747719466686,3.5848948173224926,8.699406404048204,0.4115984193049371,1.6168092261068523,0.34045014763250947,1.092498714569956,8.531142957508564,2.4339796509593725,-6.7895203828811646,94.33429837226868,93.09699237346649,3.4231022000312805,66.4763331413269,47.91984409093857,3.9966626167297363,-1.261883020401001,-1.7028026580810547,-0.07995351364500403,0.009525197005152308,0.009525197005152308,4.07661613037474,-1.2714082174061532,-1.7123278550862069 +illusion,illusion_1.5L,75,76,30.0,2.7534840628504753,0.058556965086609125,1.8829969340004027,6.519477930851281,-1.6517858020961285,1.1251043470110744,0.814914150396362,-0.02195750130340457,8.538627997040749,1.3902769424021244,-11.607274413108826,97.95365333557129,94.47127878665924,2.66096293926239,71.5451180934906,48.37398827075958,-2.872878074645996,3.492812156677246,2.8045825958251953,-3.5170601479618258,2.597507483872674,2.597507483872674,0.6441820733158297,0.8953046728045719,0.20707511195252115 +illusion,illusion_1.5L,76,77,30.400000000000002,2.9074663762003183,0.2004691632464528,2.373572322539985,7.654611021280289,-1.9565322436392307,0.8241133036790416,0.3620710485847667,-1.2323901464696974,8.234775625169277,0.25613215984776616,-17.665845155715942,104.89194393157959,94.65487599372864,1.7459243535995483,76.57426595687866,48.226311802864075,-2.50654935836792,3.1091651916503906,2.6153907775878906,-4.405424371180552,3.241202952932152,3.241202952932152,1.8988750128126322,-0.1320377612817616,-0.6258121753442616 +illusion,illusion_1.5L,77,78,30.8,2.035669516772032,0.3576333401724696,3.090171958319843,8.216013433411717,-0.40579409687779844,0.7873636932345107,-0.9137591550825164,-2.233312407042831,8.051978424191475,-0.8968284237198532,-25.08501708507538,113.03868293762207,92.62186586856842,-0.8233040571212769,75.9320080280304,46.38354480266571,4.720229148864746,-2.1156005859375,-1.9711226224899292,-1.4910135128976536,1.0687129389717904,1.0687129389717904,6.2112426617624,-3.1843135249092906,-3.03983556146172 +illusion,illusion_1.5L,78,79,31.200000000000003,1.586491009220481,0.07039494812488556,3.597790142521262,8.782071294263005,-0.4154423368163407,1.5582228661514819,-1.292661007028073,-3.000764350872487,8.050505071878433,-1.9960836507380009,-32.72620439529419,117.42533445358276,90.45716524124146,-7.348832488059998,67.00570583343506,41.05590283870697,5.067253589630127,-2.10147762298584,-2.6423397064208984,-0.9862613837544397,0.723132939517283,0.723132939517283,6.053514973384567,-2.824610562503123,-3.3654726459381816 +illusion,illusion_1.5L,79,80,31.6,2.209398662671447,-0.3049519145861268,2.4794553173705935,7.168309297412634,-2.7532726526260376,1.241868332726881,-0.48869362217374146,-3.7306598969735205,8.12414288520813,-2.972961403429508,-38.33121359348297,113.71243000030518,90.69460332393646,-18.109717965126038,46.61957025527954,31.946352124214172,-3.2366461753845215,3.8862571716308594,2.7587060928344727,-5.1270848808795995,3.8246611971814506,3.8246611971814506,1.890438705495078,0.061595974449408786,-1.065955104346978 +illusion,illusion_1.5L,80,81,32.0,2.6473409961909056,-0.24289696011692286,3.089828765951097,8.8269985280931,-3.236649092286825,0.8245721983257681,-0.6032719684299082,-4.4431930291466415,8.456713519990444,-3.7670698948204517,-40.681445598602295,102.29220390319824,93.64901781082153,-29.36527170240879,13.977818191051483,20.508750900626183,-4.61189079284668,4.2769575119018555,3.2508440017700195,-6.238361857505154,4.641140469420668,4.641140469420668,1.6264710646584746,-0.36418295751881224,-1.3902964676506482 +illusion,illusion_1.5L,81,82,32.4,2.185553079470992,0.06811239290982485,3.095380845479667,8.376314770430326,-1.043418189510703,0.6199001800268888,-1.8733411561697721,-4.790100501850247,8.614281192421913,-4.330110736191273,-37.43043839931488,90.2812123298645,95.97965776920319,-33.09953361749649,-22.966542840003967,4.981707036495209,3.687344551086426,-2.3472282886505127,-2.2734742164611816,-2.2785436300446547,1.6798633246874326,1.6798633246874326,5.96588818113108,-4.027091613337945,-3.9533375411486142 +illusion,illusion_1.5L,82,83,32.800000000000004,1.973211532458663,-0.3242393722757697,3.417240804992616,8.807693142443895,-0.2590814256109297,1.356148422928527,-2.1842932037543505,-4.627667833119631,8.557140827178955,-4.6288203448057175,-24.952733516693115,83.93034338951111,92.13262796401978,-20.0451772660017,-49.86129701137543,-16.630955412983894,4.586243629455566,-3.5974204540252686,-3.5307960510253906,0.057385280673350914,-0.01084307462283518,-0.01084307462283518,4.528858348782215,-3.586577379402433,-3.5199529764025552 +illusion,illusion_1.5L,83,84,33.2,1.821812242269516,-0.5986334290355444,2.6670030783861876,7.155818399041891,-2.127048559486866,0.9690180049801711,-0.8848056568240281,-3.8966598731349222,8.651274256408215,-4.646855406463146,-10.259068012237549,84.56220030784607,87.30244040489197,-3.1194880604743958,-58.66361856460571,-35.09398251771927,-4.211077690124512,2.9362754821777344,2.235239028930664,-3.297809919956563,2.499338568512268,2.499338568512268,-0.9132677701679488,0.43693691366546616,-0.26409953958160415 +illusion,illusion_1.5L,84,85,33.6,1.862832112237811,-0.5775734316557646,3.534819232299924,8.932470576837659,-2.5793060194700956,1.1014182528015226,-0.5202625470701605,-3.6198311136104167,8.682523854076862,-4.385523032397032,-1.239556074142456,87.36556768417358,85.57677268981934,3.594423830509186,-57.91523456573486,-43.596430122852325,-6.773529529571533,4.349457740783691,3.194859027862549,-4.269960429481618,3.2168400307046743,3.2168400307046743,-2.5035691000899156,1.1326177100790171,-0.021981002842125452 +illusion,illusion_1.5L,85,86,34.0,2.4383922573179007,-0.1439760671928525,2.658009179867804,7.754410617053509,-0.14700356405228376,0.8483203419018537,-1.6403519257437438,-3.4277074155397713,8.763913065195084,-3.863341175019741,2.9428720474243164,90.70550799369812,87.83076405525208,2.797497808933258,-57.8285813331604,-44.80433315038681,2.3119280338287354,-3.0043892860412598,-2.56520938873291,-0.040500499163508785,0.04402307041820219,0.04402307041820219,2.3524285329922443,-3.048412356459462,-2.6092324591511122 +illusion,illusion_1.5L,86,87,34.4,3.223715117201209,-0.45328750275075436,2.901846542954445,9.027408203110099,1.1288339737802744,0.5794024909846485,-1.8312873435206711,-2.533740713261068,8.857103064656258,-3.114501480013132,6.44720196723938,93.31310391426086,89.59716558456421,1.0050281882286072,-58.857661485672,-45.31349986791611,5.544740200042725,-5.899670600891113,-4.52746057510376,3.158446363326714,-2.293563910412496,-2.293563910412496,2.3862938367160105,-3.6061066904786174,-2.233896664691264 +illusion,illusion_1.5L,87,88,34.800000000000004,2.3241695016622543,-0.3143420908600092,2.832986181601882,7.990141864866018,-0.7968612480908632,0.6879363354528323,-0.2597743150545284,-1.31640987819992,8.567268028855324,-2.1863768342882395,10.974317789077759,95.6528902053833,90.48154950141907,0.04675090312957764,-60.09761691093445,-46.82706296443939,-2.6791069507598877,0.846919059753418,0.35624778270721436,-1.0709356591988684,0.8233399517196714,0.8233399517196714,-1.6081712915610193,0.02357910803374652,-0.4670921690124571 +illusion,illusion_1.5L,88,89,35.2,1.5874565578997135,0.009833835065364838,4.243615083396435,10.074686724692583,-1.7121598357334733,1.754954515490681,0.6765045109204948,-0.3591508138924837,8.276951499283314,-1.13628339022398,16.188305616378784,96.21865749359131,90.28181433677673,-0.9756699204444885,-62.290602922439575,-48.69372993707657,-6.851531505584717,4.391024589538574,2.2894816398620605,-3.552704026998845,2.6286432625212672,2.6286432625212672,-3.298827478585872,1.762381327017307,-0.3391616226592067 +illusion,illusion_1.5L,89,90,35.6,1.8671232974156737,-0.074043869972229,2.902708947658539,7.672541192732751,0.5716170999221504,1.8100604647770524,0.14970439951866865,0.8710258989594877,8.14629066735506,-0.027741156372940168,21.270060539245605,95.50195932388306,90.95168113708496,-3.222845494747162,-66.25624299049377,-49.51338917016983,0.42898261547088623,-0.8672080039978027,-1.7287734746932983,1.3153481799187912,-0.966356921463143,-0.966356921463143,-0.8863655644479049,0.09914891746534027,-0.7624165532301553 +illusion,illusion_1.5L,90,91,36.0,2.9043483082205057,-0.07322127930819988,2.4803662672638893,7.865080842748284,2.379251876845956,0.7461739878635854,-0.11391102452762425,2.1514298277907073,8.052270859479904,1.0735015384852886,26.51687264442444,92.89436340332031,92.11046099662781,-7.591323554515839,-71.12723588943481,-48.165591061115265,6.239968776702881,-5.239463806152344,-4.089740753173828,5.045694455306996,-3.7275251376262672,-3.7275251376262672,1.194274321395885,-1.5119386685260765,-0.3622156155475609 +illusion,illusion_1.5L,91,92,36.4,2.054940676316619,-0.3594763111323118,2.999570220708847,8.054081117734313,0.9625934762880206,0.9402401992701925,1.0225135119981132,3.007620500284247,8.233996108174324,2.103414386510849,32.687047123909,87.85715699195862,92.74010360240936,-14.026860892772675,-72.02554941177368,-44.27420049905777,-0.6349695920944214,-0.09992146492004395,-0.6114335060119629,2.6438881522192066,-1.921855613645691,-1.921855613645691,-3.278857744313628,1.821934148725647,1.3104221076337281 +illusion,illusion_1.5L,92,93,36.800000000000004,2.063869731500745,0.24200556799769402,3.3929983619600534,8.849866455420852,-0.8695779251866043,1.4928436721675098,2.191942010540515,3.514306095894426,8.34172498434782,3.003360703587532,39.10655379295349,80.93291521072388,92.8287923336029,-23.14673662185669,-56.75579309463501,-36.7534875869751,-6.946471691131592,5.183399200439453,3.0286364555358887,-2.2372856733618365,1.6323609905346212,1.6323609905346212,-4.709186017769755,3.551038209904832,1.3962754650012674 +illusion,illusion_1.5L,93,94,37.2,1.8848254112526774,0.3539391327649355,2.9716752469539642,7.828175905160606,0.7201681146398187,1.4539651565428358,1.3925058774475474,3.5051798695349135,8.25431663542986,3.7232949398458004,42.18054562807083,74.2666482925415,91.34737700223923,-31.033818796277046,-21.711145341396332,-24.295897409319878,-1.011950135231018,0.48102235794067383,-0.4869401454925537,0.8402751215088184,-0.656475052300598,-0.656475052300598,-1.8522252567398365,1.1374974102412718,0.16953490680804428 +illusion,illusion_1.5L,94,95,37.6,2.532145008444786,0.5597720155492425,3.1778233824297786,8.887791773304343,3.2266806811094284,0.7331736269406974,0.6753879715688527,4.577456624247134,8.376773446798325,4.224325064569712,36.80994212627411,70.61834931373596,87.59306967258453,-27.509183436632156,17.509154975414276,-2.9150597751140594,8.0,-5.557339668273926,-3.891796588897705,5.6389768416099235,-4.228407365603077,-4.228407365603077,2.3610231583900765,-1.3289323026708484,0.3366107767053723 +illusion,illusion_1.5L,95,96,38.0,1.8625750672072172,0.19207003060728312,3.3120984444394708,8.486771956086159,1.4991061761975288,1.124363836424891,1.2371049015200697,3.973315979237668,8.520676754415035,4.480533301830292,25.49741566181183,69.83095407485962,85.21811664104462,-10.842470824718475,51.540184020996094,21.164806187152863,3.1969804763793945,-1.6961616277694702,-1.5051360130310059,2.744057852789053,-2.0498052440218086,-2.0498052440218086,0.45292262359034163,0.3536436162523384,0.5446692309908028 +illusion,illusion_1.5L,96,97,38.400000000000006,2.911363495513797,0.7267438340932131,3.04359570145607,8.998554898425937,-1.2626013485714793,1.1889683664776385,2.7230833075009286,4.183565266430378,8.718762546777725,4.480006173253059,13.601469993591309,72.65949845314026,84.4052791595459,7.508544623851776,72.4069356918335,40.857018530368805,-5.127100944519043,5.6551408767700195,4.230672359466553,-3.9341046140501996,2.8410048505332695,2.8410048505332695,-1.1929963304688433,2.81413602623675,1.3896675089332833 +illusion,illusion_1.5L,97,98,38.800000000000004,2.6996564120054245,0.4177115624770522,2.9722292674705386,8.644114946946502,-0.24503198801539838,1.581506287038792,1.8242837904836051,3.403535592951812,8.977879770100117,4.225077107548714,5.8884501457214355,79.851895570755,85.77045202255249,15.469527244567871,71.309494972229,51.43752098083496,-1.1242821216583252,2.3809452056884766,1.6601214408874512,-1.2688604433176531,0.8984210082337198,0.8984210082337198,0.14457832165932794,1.4825241974547567,0.7617004326537313 +illusion,illusion_1.5L,98,99,39.2,2.0403487142175436,0.5578398704528809,3.0743777751922607,8.189104264602065,1.486192806623876,1.1572888470254838,0.5762455402873456,2.6386838871985674,8.838298730552197,3.731819335371256,2.3197025060653687,86.18471026420593,89.28553760051727,12.041862308979034,67.50122308731079,51.447562873363495,6.445939064025879,-3.4342122077941895,-2.6831512451171875,2.0492815737138783,-1.5712364692505028,-1.5712364692505028,4.396657490312,-1.8629757385436867,-1.1119147758666847 +illusion,illusion_1.5L,99,100,39.6,1.5091855311766267,0.4033180885016918,3.2550727482885122,8.019331027753651,0.23449557193089277,1.777805620804429,0.5220633465796709,1.2786222650902346,8.584593422710896,3.028873587027192,-1.2446314096450806,91.99321269989014,92.64796674251556,8.168631792068481,67.84521341323853,50.387758016586304,2.4730172157287598,-1.0161007642745972,-1.547372817993164,-0.2525881107401282,0.14761156048452628,0.14761156048452628,2.725605326468888,-1.1637123247591235,-1.6949843784776903 +illusion,illusion_1.5L,100,101,40.0,3.272016067057848,0.05045440047979355,1.739195198751986,6.75040646456182,-1.9673856440931559,1.1277485318714753,1.4168219495331869,0.8662582549732178,8.444661274552345,2.1557060535997152,-6.194296479225159,96.9890832901001,93.16998422145844,6.074076890945435,68.88260841369629,50.78745484352112,-4.802555561065674,4.919415473937988,4.131979465484619,-4.153813543224105,3.0696032888277083,3.0696032888277083,-0.6487420178415686,1.84981218511028,1.0623761766569109 +illusion,illusion_1.5L,101,102,40.400000000000006,2.700973767787218,0.1407410018146038,2.511377912014723,7.723729591816664,-1.320274081081152,1.0400364844826981,0.6059022416593507,-0.10846959776245058,8.264164440333843,1.1604140745475888,-12.58549690246582,102.58289575576782,93.0544376373291,4.646274447441101,69.33850646018982,52.01615393161774,-1.381274938583374,2.4742751121520996,1.958897352218628,-2.982774321742665,2.194027882254966,2.194027882254966,1.601499383159291,0.28024722989713347,-0.23513053003633821 +illusion,illusion_1.5L,102,103,40.800000000000004,2.069023670628667,0.1749367220327258,3.3100167056545615,8.68905708193779,0.6207078113220632,1.0346687558921985,-0.8154088936862536,-1.010109976050444,8.302022702991962,0.0971955741988495,-19.781357049942017,104.91291284561157,90.72985053062439,1.262947916984558,69.41787004470825,51.800134778022766,6.945315361022949,-3.6931140422821045,-3.2005105018615723,0.9619066034744044,-0.729040046981628,-0.729040046981628,5.983408757548545,-2.9640739953004767,-2.4714704548799444 +illusion,illusion_1.5L,103,104,41.2,1.3790157390758395,0.040209502913057804,3.53019533213228,8.4394064033404,-0.5071777268312871,1.996342500206083,-0.9280734811909497,-2.3633246892131865,8.305243216454983,-0.9763991693034768,-26.99376940727234,106.35353326797485,91.10303521156311,-6.340011954307556,68.8896656036377,48.404160141944885,3.7614336013793945,-1.4643107652664185,-2.314006805419922,-1.120511567200683,0.8254456051611379,0.8254456051611379,4.881945168580078,-2.2897563704275563,-3.1394524105810597 +illusion,illusion_1.5L,104,105,41.6,2.866828814148903,-0.22304896265268326,2.378987381234765,7.624803576618433,-3.1769576016813517,1.1334109003655612,0.09569345274940133,-2.985570696182549,8.08938778936863,-2.0023230463266373,-34.557315707206726,101.69780254364014,91.81593954563141,-18.714237958192825,62.48215436935425,40.64887687563896,-5.155548095703125,5.312258720397949,4.170213222503662,-6.151383645494066,4.574825556186188,4.574825556186188,0.9958355497909412,0.7374331642117609,-0.40461233368252625 +illusion,illusion_1.5L,105,106,42.0,2.5739946868270636,-0.23892673198133707,3.162571578286588,8.89913784340024,-2.4576743599027395,1.0712953808251768,-0.45294544543139637,-3.3635652507655323,8.10216274112463,-2.9248876962810755,-41.427457332611084,93.70124936103821,97.3739743232727,-30.86597779765725,41.677820682525635,28.7410750053823,-2.3601911067962646,3.5125532150268555,2.406308650970459,-4.637426234999766,3.4557896723715573,3.4557896723715573,2.2772351282035013,0.05676354265529815,-1.0494810214010983 +illusion,illusion_1.5L,106,107,42.400000000000006,2.1578348241746426,-0.07532583549618721,3.0728871934115887,8.30360921099782,-0.278505205642432,0.8945732261054218,-1.9138996140100062,-4.106304433662444,8.227785117924213,-3.693518228828907,-42.302122712135315,83.07003974914551,100.81758201122284,-31.48922324180603,3.657803311944008,9.37705934047699,6.038158893585205,-3.466759443283081,-3.2791333198547363,-0.43738148064292637,0.3310849113569277,0.3310849113569277,6.475540374228132,-3.797844354640009,-3.610218231211664 +illusion,illusion_1.5L,107,108,42.800000000000004,1.5092046232894063,-0.22339005954563618,3.4099742770195007,8.329153177328408,-0.6575097213499248,1.7726377145663719,-1.7924692920132657,-4.242448305376456,8.443349972367287,-4.265311174094677,-32.838645577430725,77.43793725967407,99.23075139522552,-18.32496989518404,-37.14039623737335,-14.148910157382488,3.3796420097351074,-1.7092790603637695,-2.275390148162842,-0.9493788092388743,0.7244943095885443,0.7244943095885443,4.329020818973982,-2.4337733699523136,-2.999884457751386 +illusion,illusion_1.5L,108,109,43.2,2.2553575690835714,-0.44919364154338837,2.48562335036695,7.2266042698174715,-3.2304851338267326,0.8986517641460523,-0.5857995856786147,-4.402084305183962,8.81340354681015,-4.607294220477343,-18.885934352874756,78.16684246063232,93.41356754302979,-3.0669644474983215,-58.72454643249512,-32.63837248086929,-6.886711120605469,4.953680038452148,4.1664323806762695,-5.848814027699273,4.372934747828417,4.372934747828417,-1.0378970929061957,0.5807452906237316,-0.20650236715214731 +illusion,illusion_1.5L,109,110,43.6,1.9273943034932017,-0.32721145544201136,3.4020842285826802,8.731562760658562,-2.3899502120912075,1.1874130723299459,-0.7945254183141515,-3.9790010487195104,8.845353499054909,-4.698297940194607,-7.722193002700806,84.32232141494751,90.17058610916138,4.832559823989868,-60.87249517440796,-42.836371064186096,-5.094846248626709,3.6982364654541016,2.7567849159240723,-4.3363489797100865,3.241554290804216,3.241554290804216,-0.7584972689166225,0.4566821746498855,-0.4847693748801438 +illusion,illusion_1.5L,110,111,44.0,2.577092731371522,-0.16680790577083826,2.974717761389911,8.526528254151344,0.43436262058094144,0.9434706880711019,-2.254134335089475,-4.073906049598008,8.706018328666687,-4.53033484518528,-1.2543201446533203,88.96307945251465,89.85324501991272,4.138205945491791,-59.505534172058105,-44.82380002737045,5.234206199645996,-4.870155334472656,-3.929701089859009,1.2014304840138315,-0.8729887736668451,-0.8729887736668451,4.032775715632164,-3.997166560805811,-3.0567123161921637 +illusion,illusion_1.5L,111,112,44.400000000000006,2.6580088306218386,-0.23285893257707357,3.4466508077457547,9.551310446113348,0.15954826085362583,1.5060292789712548,-2.025340567342937,-3.891132873832248,8.668088354170322,-4.1094026528298855,3.506380319595337,92.56379008293152,91.2251353263855,1.9962936639785767,-59.71478819847107,-45.33061683177948,3.441279888153076,-4.064645767211914,-3.70670485496521,0.7547273234578011,-0.5359090611033297,-0.5359090611033297,2.6865525646952753,-3.5287367061085844,-3.1707957938618803 +illusion,illusion_1.5L,112,113,44.800000000000004,1.965441508218646,-0.2966715255752206,2.767357393167913,7.500156294554472,-1.7375535098835826,1.142667286330834,-0.35617451067082584,-2.4499025312252343,8.535206317901611,-3.4556195605546236,8.638617396354675,94.64941620826721,91.91321432590485,0.9233072400093079,-60.856908559799194,-46.846263110637665,-4.865149021148682,3.0743579864501953,2.0580101013183594,-3.045265106489955,2.2829542059907966,2.2829542059907966,-1.8198839146587265,0.7914037804593987,-0.2249441046724372 +illusion,illusion_1.5L,113,114,45.2,1.5637101605534554,-0.311616575345397,3.7866246420890093,9.136959444731474,-1.4330687699839473,1.879301737062633,-0.042229657992720604,-1.5175280859693885,8.538703434169292,-2.6026417035609484,13.76829743385315,95.18711566925049,92.57578253746033,0.14985203742980957,-64.00798559188843,-48.59965145587921,-5.141905307769775,3.3302810192108154,1.604065179824829,-2.389359889531602,1.798931260863525,1.798931260863525,-2.7525454182381734,1.5313497583472904,-0.19486608103869596 +illusion,illusion_1.5L,114,115,45.6,2.4849427863955498,-0.011819647625088692,2.0716579165309668,6.628258619457483,0.891621399205178,1.1259809252806008,-0.8699283353053033,-0.8482352714054286,8.507398888468742,-1.5963123878464103,18.625783920288086,95.22876739501953,94.49008703231812,-1.4922186732292175,-69.73153948783875,-49.030227959156036,3.463498115539551,-3.7524044513702393,-3.3442633152008057,1.8623356983997028,-1.377290711005303,-1.377290711005303,1.601162417139848,-2.3751137403649363,-1.9669726041955027 +illusion,illusion_1.5L,115,116,46.0,2.6731279212981462,-0.24319987278431654,2.5440462632104754,7.761220447719097,1.5317125944420695,0.653049981337972,-0.5192796670598909,0.4931532603222877,8.188637904822826,-0.4925571847707033,24.223491549491882,94.41474080085754,95.55118381977081,-4.03493195772171,-76.93407535552979,-47.75537699460983,4.214339733123779,-4.38541316986084,-3.4958226680755615,3.606439394537384,-2.6456500937884653,-2.6456500937884653,0.6079003385863953,-1.7397630760723746,-0.8501725742870962 +illusion,illusion_1.5L,116,117,46.400000000000006,1.9830644596368074,-0.3884071484208107,3.0465826857835054,8.076229831203818,-0.23893035540822893,0.7842999912099913,1.0400597675470635,1.8411891796858981,8.048116229474545,0.6454337853938341,30.782562494277954,94.52057480812073,95.78602910041809,-8.419571816921234,-76.158607006073,-43.78241449594498,-4.157251358032227,2.3717803955078125,1.3562793731689453,0.2161961469568811,-0.12213000780659033,-0.12213000780659033,-4.373447504989108,2.493910403314403,1.4784093809755356 +illusion,illusion_1.5L,117,118,46.800000000000004,1.6493777511641383,0.0037103891372680664,3.8229941856116056,9.29536612238735,-0.5707654054276645,1.7496609943918884,1.6160046798177063,2.661243954207748,8.066830225288868,1.7506300937384367,37.355855107307434,93.6735987663269,94.59826648235321,-16.041236370801926,-54.2675256729126,-36.380959302186966,-5.687051296234131,4.17902946472168,2.063704252243042,-1.1851184321160104,0.8768263624166588,0.8768263624166588,-4.50193286411812,3.302203102305021,1.1868778898263832 +illusion,illusion_1.5L,118,119,47.2,1.95821444503963,0.20736944861710072,2.6158257387578487,7.189865922555327,1.6679690452292562,1.241161284269765,0.6536660657729954,2.975301176775247,8.187176659703255,2.7560393791645765,41.58419966697693,89.49389457702637,93.17287802696228,-25.730434455908835,-17.777635157108307,-24.981572828255594,3.0038275718688965,-2.602893352508545,-2.785884380340576,3.0647280342074223,-2.2886480448662456,-2.2886480448662456,-0.06090046233852586,-0.3142453076422993,-0.49723633547433055 +illusion,illusion_1.5L,119,120,47.6,2.370608039200306,0.18103618640452623,3.05848999414593,8.487588027492166,2.799440873786807,0.7335085902013816,0.610152397712227,4.019745669211261,8.544488810002804,3.598828800022602,38.50939869880676,83.22288990020752,89.87218737602234,-29.088877886533737,18.77482384443283,-6.979725509881973,7.039001941680908,-4.822671413421631,-3.817335605621338,5.448743825182628,-4.050654467758778,-4.050654467758778,1.5902581164982799,-0.7720169456628527,0.23331886213744024 +illusion,illusion_1.5L,120,121,48.0,2.0517800003290176,-0.19881431944668293,2.91245523840189,7.876690477132797,0.5110017373226583,0.9634618472773582,1.81743546272628,4.1458726627752185,8.661487139761448,4.224441479891539,26.494130492210388,79.84576225280762,85.80351173877716,-16.214581299573183,51.20351314544678,17.01004011556506,-1.480494499206543,1.5396196842193604,0.6350548267364502,1.4181144312801222,-1.030249146573102,-1.030249146573102,-2.898608930486665,2.5698688307924624,1.6653039733095523 +illusion,illusion_1.5L,121,122,48.400000000000006,2.6160862762480974,0.4764070035889745,3.1808187486603856,8.977723773568869,-0.9153620339930058,1.3244799920357764,2.5072446442209184,4.099127254448831,8.595987223088741,4.590427968651056,13.377165794372559,81.06033205986023,84.04510617256165,1.7841607332229614,68.48047375679016,36.75762116909027,-4.716283321380615,4.621580123901367,3.0834174156188965,-2.7599652764971934,1.9963649603696643,1.9963649603696643,-1.9563180448834219,2.6252151635317027,1.0870524552492322 +illusion,illusion_1.5L,122,123,48.800000000000004,2.280107233673334,0.3673230530694127,2.6750228134915233,7.630152860656381,0.39372185710817575,1.093446284357924,1.323681317444425,3.041084491997026,8.66398774087429,4.669702146202326,4.967120289802551,85.82974076271057,85.07831394672394,10.126994550228119,65.9966230392456,46.512819826602936,1.0155220031738281,-0.8118937015533447,-0.8997654914855957,0.14188207707618294,-0.14085162088139253,-0.14085162088139253,0.8736399260976452,-0.6710420806719521,-0.7589138706042031 +illusion,illusion_1.5L,123,124,49.2,1.8184779910370708,0.460538431070745,3.012336906976998,7.8431518049910665,1.826847088523209,0.9909845612128265,0.8637283972348087,3.5543038829928264,8.641288615763187,4.45295637473464,1.496279239654541,90.82685708999634,89.20565843582153,8.426667749881744,62.82564401626587,47.228704392910004,6.725481986999512,-3.618776559829712,-2.9332199096679688,2.9302910727905696,-2.213840279198222,-2.213840279198222,3.795190914208942,-1.4049362806314898,-0.7193796304697466 +illusion,illusion_1.5L,124,125,49.6,1.897463807836175,-0.03702845424413681,2.399889752268791,6.697243312373757,0.06758887320756912,1.140545129601378,1.3328152635949664,2.733219400397502,8.700589649379253,3.9499872364103794,-1.622462272644043,95.29796838760376,92.27167963981628,5.967162549495697,62.71381974220276,46.466441452503204,0.16486778855323792,1.0007147789001465,0.3543119430541992,0.20717306578789288,-0.14973077583492495,-0.14973077583492495,-0.042305277234654964,1.1504455547350714,0.5040427188891241 +illusion,illusion_1.5L,125,126,50.0,3.378847846761346,0.26575219817459583,2.1496431436389685,7.678134134039283,-1.7719235038384795,0.6651979056186974,1.8693392048589885,1.9667549058794975,8.7357172742486,3.1897714361548424,-6.111407279968262,100.78369379043579,93.73393058776855,4.696202278137207,63.04599642753601,46.69029712677002,-4.785350322723389,5.053610801696777,4.24883508682251,-4.143547238363852,3.0410007234546024,3.0410007234546024,-0.6418030843595366,2.012610078242175,1.2078343633679074 +illusion,illusion_1.5L,126,127,50.400000000000006,2.505772514268756,0.34819229040294886,2.6300583267584443,7.7658891677856445,-0.69179676938802,0.5492383115779376,0.5833040722791338,0.47481137517024763,8.416758850216866,2.2191947791725397,-12.14146614074707,105.54263591766357,92.82026290893555,3.928612172603607,62.55168318748474,47.107864916324615,0.4686962366104126,0.5246052742004395,0.38286852836608887,-2.0642188848529743,1.4939030233212485,1.4939030233212485,2.532915121463387,-0.969297749120809,-1.1110344949551596 +illusion,illusion_1.5L,127,128,50.800000000000004,1.8960864981636405,0.1642883289605379,3.607968334108591,9.112023166380823,1.0965829715132713,0.932622846448794,-0.38747137296013534,0.32164022559300065,8.184477686882019,1.1004460975527763,-18.85910928249359,109.05349254608154,91.16804897785187,1.0445594787597656,62.06510663032532,45.4681932926178,7.531037330627441,-3.542412519454956,-3.1576650142669678,1.963797802910005,-1.4695703788603514,-1.4695703788603514,5.567239527717437,-2.072842140594605,-1.6880946354066164 +illusion,illusion_1.5L,128,129,51.2,1.5596714802086353,0.0460590235888958,3.040734911337495,7.641141302883625,-0.7400301983579993,1.677483378443867,-0.24747272254899144,-1.2349756434559822,8.113646879792213,-0.09281020174967125,-24.923542141914368,110.74596643447876,90.27758538722992,-5.652910470962524,61.43837571144104,39.86561894416809,1.9812729358673096,0.431062251329422,-0.6252193450927734,-1.6119185566124934,1.188599335203951,1.188599335203951,3.5931914924798027,-0.757537083874529,-1.8138186802967244 +illusion,illusion_1.5L,129,130,51.6,3.329353639855981,0.05781254731118679,2.1929475478827953,7.7152487356215715,-3.0762171372771263,0.7781346357660368,0.44878273911308497,-2.1786516590509564,8.114459924399853,-1.2802616693079472,-29.893973469734192,109.24457311630249,90.38278758525848,-15.894335508346558,56.9085955619812,30.27946650981903,-5.15270471572876,5.792956352233887,4.739468574523926,-6.456428501579385,4.773210461865406,4.773210461865406,1.3037237858506252,1.0197458903684806,-0.033741887341480314 +illusion,illusion_1.5L,130,131,52.0,2.574959769845009,0.162215786986053,2.8703900752589107,8.31573992036283,-2.0082572009414434,0.7956068802741356,-0.5600465156021528,-3.128350232145749,8.38505756109953,-2.3804628290235996,-32.915204763412476,103.09226512908936,92.64692664146423,-26.21005680412054,43.517184257507324,20.231745578348637,-0.7461819052696228,2.325904369354248,1.4829413890838623,-4.442336391236289,3.2722559751618268,3.2722559751618268,3.696154485966666,-0.9463516058075787,-1.7893145860779645 +illusion,illusion_1.5L,131,132,52.400000000000006,1.930538914166391,-0.005702138878405094,3.5438627237454057,9.018264361657202,0.06185092206578702,1.1953300854656845,-1.8026662000920624,-3.5434814781183377,8.501009084284306,-3.3166492357850075,-33.292895555496216,90.87425470352173,96.23050093650818,-33.48636105656624,17.151902616024017,12.60175034403801,6.7460784912109375,-3.3833117485046387,-3.502561569213867,0.13810632859815908,-0.10166578871648745,-0.10166578871648745,6.6079721626127785,-3.2816459597881513,-3.40089578049738 +illusion,illusion_1.5L,132,133,52.800000000000004,1.306154765188694,-0.06177835166454315,3.3319315407425165,7.970017846673727,-1.0745811741799116,2.0472502801567316,-1.53065612539649,-4.135893424972892,8.426300249993801,-4.0224166586995125,-30.39856255054474,78.15492749214172,100.56109130382538,-35.0684329867363,-15.58649092912674,8.438865840435028,2.506040573120117,-0.5111896991729736,-1.569555401802063,-2.1056204066159383,1.5645425789066203,1.5645425789066203,4.6116609797360555,-2.075732278079594,-3.1340979807086833 +illusion,illusion_1.5L,133,134,53.2,2.6119884569197893,-0.3485835622996092,2.5514024309813976,7.714793318882585,-3.6862867418676615,0.9459390857955441,-0.6000352004775777,-4.886357142822817,8.525465615093708,-4.446820355951786,-22.86801040172577,70.32920122146606,99.61999952793121,-30.542457103729248,-40.40236175060272,1.4404386281967163,-7.204753398895264,4.945950508117676,4.102532863616943,-6.973587917834561,5.19564270766448,5.19564270766448,-0.23116548106070312,-0.24969219954680444,-1.0931098440475369 +illusion,illusion_1.5L,134,135,53.6,2.0514109637588263,-0.23634661920368671,3.306871047243476,8.665153058245778,-2.418167656287551,1.096421907277545,-0.9981810035242233,-4.414529663335998,8.579546585679054,-4.558473825454712,-9.925249218940735,72.77194857597351,92.97883212566376,-17.96997096389532,-48.45454394817352,-13.969049789011478,-4.222998142242432,2.6243515014648438,1.8805466890335083,-4.560577778118506,3.398657092710758,3.398657092710758,0.3375796358760743,-0.7743055912459145,-1.51811040367725 +illusion,illusion_1.5L,135,136,54.0,2.594669349491596,-0.26114145293831825,3.0579306185245514,8.710530586540699,0.4304597096052021,0.8921349071897566,-2.257772197481245,-4.0850846853572875,8.695491589605808,-4.348290152847767,4.451006650924683,76.77893042564392,82.8770637512207,-1.9265413284301758,-50.12581944465637,-33.509013056755066,4.977088928222656,-5.120923042297363,-4.008866310119629,1.3656830051761255,-0.9853605773163128,-0.9853605773163128,3.6114059230465307,-4.13556246498105,-3.023505732803316 +illusion,illusion_1.5L,136,137,54.400000000000006,2.4977531284093857,-0.3449477953836322,3.114782157354057,8.7273174431175,-0.08463586709694937,1.3247039751149714,-1.8784338026307523,-3.841503472358454,8.829263038933277,-3.830599831417203,13.034188747406006,81.44609928131104,79.99634146690369,7.715645432472229,-52.97624468803406,-46.34244740009308,1.7282131910324097,-3.626065731048584,-3.1659371852874756,0.45535295726671826,-0.30338630274261236,-0.30338630274261236,1.2728602337656914,-3.3226794283059715,-2.862550882544863 +illusion,illusion_1.5L,137,138,54.800000000000004,1.9402620382606983,-0.42973062954843044,2.940374892205,7.821011822670698,-1.7178308917209506,0.91037958918605,-0.4383113555377349,-2.5944536027964205,8.581466972827911,-3.0425097793340683,14.645817875862122,83.95574688911438,82.68687427043915,8.04097056388855,-56.90951347351074,-49.79594349861145,-5.662721157073975,2.216953754425049,1.4565141201019287,-2.7615015883180494,2.0859019665852747,2.0859019665852747,-2.9012195687559252,0.13105178783977411,-0.629387846483346 +illusion,illusion_1.5L,138,139,55.2,1.5414393274113536,-0.5486366571858525,3.9591843960806727,9.459808119572699,-0.762981129810214,1.6576515627093613,-0.09564467472955585,-0.9542704792693257,8.33103060722351,-2.041497267782688,15.358367562294006,87.57182955741882,87.71598041057587,5.907808244228363,-62.03989386558533,-50.42676478624344,-3.8079447746276855,1.755098819732666,0.4909862279891968,-0.5730269655957341,0.4776602239964367,0.4776602239964367,-3.2349178090319515,1.2774385957362293,0.013326003992760072 +illusion,illusion_1.5L,139,140,55.6,2.846037968993187,-0.4374777781777084,2.14289064751938,7.131819264031947,1.4358169864863157,0.9161166672129184,-0.665380124701187,0.1050567370839417,8.234694600105286,-0.9013823582790792,17.51638650894165,90.40034413337708,89.99273777008057,3.554965555667877,-68.39370727539062,-50.576917827129364,4.091566562652588,-4.395839214324951,-3.556473731994629,3.763332446636827,-2.7428243936448418,-2.7428243936448418,0.3282341160157607,-1.6530148206801094,-0.8136493383497871 +illusion,illusion_1.5L,140,141,56.0,2.5408396031707525,-0.5995366955175996,2.6690535014495254,7.878946606069803,1.4586232136934996,0.643093982944265,-0.03195632598362863,1.3947105617262423,8.165549486875534,0.2930406481027603,21.34603261947632,96.19407653808594,91.73531532287598,0.8811444044113159,-74.12329316139221,-50.598910450935364,2.659881353378296,-3.1824076175689697,-2.662221908569336,4.1064332337861655,-2.9809671320931206,-2.9809671320931206,-1.4465518804078696,-0.20144048547584914,0.31874522352378465 +illusion,illusion_1.5L,141,142,56.400000000000006,1.8211979186162353,-0.35329931415617466,3.61594813875854,9.053094196133316,-0.25156818446703255,1.0105942492373288,1.4418663340620697,2.6321644836571068,8.358174934983253,1.4523195568472147,27.09183692932129,101.19357109069824,90.42426347732544,-3.291754424571991,-75.42504668235779,-49.9088779091835,-4.838269233703613,3.2208547592163086,1.7097339630126953,0.1259773238318329,-0.05877780788356424,-0.05877780788356424,-4.964246557535446,3.2796325670998727,1.7685117708962594 +illusion,illusion_1.5L,142,143,56.800000000000004,1.5012564836069942,-0.05781231448054314,3.9357966743409634,9.37284983228892,0.0465130724478513,1.9940178171964362,1.6751263028709218,3.396765678189695,8.45842994749546,2.489121165126562,34.15190875530243,103.4663200378418,89.78994190692902,-10.945838689804077,-70.42151093482971,-47.69375920295715,-4.227099418640137,3.3419573307037354,1.1750530004501343,0.20162611489278276,-0.14359748620441462,-0.14359748620441462,-4.428725533532919,3.48555481690815,1.318650486654549 +illusion,illusion_1.5L,143,144,57.2,2.0531294867396355,0.34635153133422136,2.693158690817654,7.439446868374944,2.2589988075196743,1.2138104939367622,0.7271759968716651,3.7133508012630045,8.34242720156908,3.3249391708523035,41.24910235404968,98.58975410461426,90.43944478034973,-22.327685356140137,-55.19112944602966,-42.28255748748779,4.679538249969482,-3.4365737438201904,-3.3651747703552246,4.031039416540137,-3.017440755080447,-3.017440755080447,0.6484988334293451,-0.41913298873974325,-0.34773401527477743 +illusion,illusion_1.5L,144,145,57.6,2.132234862074256,0.32069883309304714,3.421979723498225,8.976194309070706,2.4883016012609005,0.9821628000281635,0.9781117305465159,4.444525062353932,8.415895514190197,3.896194277331233,45.25027424097061,89.46577310562134,93.12106221914291,-27.65059508383274,-25.612011551856995,-26.655685529112816,5.301715850830078,-3.040194272994995,-2.6566104888916016,4.551290689131849,-3.400012205011338,-3.400012205011338,0.7504251616982289,0.3598179320163428,0.7434017161197364 +illusion,illusion_1.5L,145,146,58.0,2.2860681638121605,0.01771841198205948,2.790845697745681,7.867759559303522,0.23662201419938356,0.9980637114495039,2.276554936543107,4.789731887285598,8.495981805026531,4.159233067184687,41.536206007003784,80.25169968605042,92.30337738990784,-18.426692485809326,14.925570785999298,2.876974642276764,-3.0785815715789795,3.9581563472747803,2.7233829498291016,0.45613989826618034,-0.3393493219840944,-0.3393493219840944,-3.53472146984516,4.297505669258875,3.062732271813196 +illusion,illusion_1.5L,146,147,58.400000000000006,2.5870702229440212,0.5260551115497947,2.8608822030946612,8.308834629133344,-0.4076931218151003,1.1753786820918322,2.200260991230607,3.9928288606461138,8.626007474958897,4.093810450285673,31.902778148651123,76.32685899734497,89.81163501739502,-7.062452286481857,51.73637270927429,26.95288136601448,-3.2335894107818604,4.284923553466797,3.1379988193511963,-1.802573949171544,1.28288973691676,1.28288973691676,-1.4310154616103163,3.002033816550037,1.8551090824344363 +illusion,illusion_1.5L,147,148,58.800000000000004,2.114733448252082,0.9673353051766753,3.149831318296492,8.414396084845066,0.9554560529068112,0.4904646484646946,0.8448005828540772,2.6450572186149657,8.827011100947857,3.7047627847641706,19.904261827468872,79.9376904964447,88.26656937599182,6.052936613559723,68.8448965549469,42.90380924940109,4.332481384277344,-1.9566251039505005,-1.1945443153381348,0.20559333718981754,-0.2465440096444862,-0.2465440096444862,4.126888047087526,-1.7100810943060143,-0.9480003056936486 +illusion,illusion_1.5L,148,149,59.2,1.5554070705547929,1.0036980966106057,4.278473905287683,10.112354881130159,1.136878621764481,1.213428273331374,0.5278412136249244,2.19256104901433,8.654095232486725,3.0217289458960295,11.721861362457275,85.45019030570984,88.40810060501099,9.635178744792938,65.97055196762085,48.042382299900055,5.9256720542907715,-2.272446632385254,-1.8056038618087769,0.5137184812311788,-0.47815623338180724,-0.47815623338180724,5.411953573059593,-1.7942903990034467,-1.3274476284269696 +illusion,illusion_1.5L,149,150,59.6,2.579144900664687,0.5056094378232956,2.485497621819377,7.550140144303441,-1.08238379471004,1.190458089695312,1.0812372056534514,1.0800906165968627,8.403435349464417,2.0969207398593426,7.897159457206726,90.15156030654907,91.77142083644867,4.836532473564148,60.65959334373474,45.61118185520172,-1.885183334350586,3.188735008239746,2.554305076599121,-3.158121772949027,2.288219298733771,2.288219298733771,1.272938438598441,0.9005157095059753,0.26608577786535026 +illusion,illusion_1.5L,150,151,60.0,3.448729170486331,0.6066953064873815,2.3464722326025367,8.141673635691404,-1.9265180453658104,0.7000633195275441,0.9247944544767961,-0.07692913641221821,8.30752868205309,1.0011232225224376,4.22615110874176,92.49055981636047,93.64045560359955,0.8023664355278015,58.331018686294556,44.05211955308914,-3.4763567447662354,4.252728462219238,3.922081708908081,-5.085474652547783,3.704925208656805,3.704925208656805,1.609117907781548,0.5478032535624333,0.21715650025127609 +illusion,illusion_1.5L,151,152,60.400000000000006,2.1299421787261963,0.5193497054278851,3.284648759290576,8.699239697307348,-0.47519474173896015,0.7455582526745275,-0.4980039520887658,-1.4712026459164917,8.207169361412525,-0.18176257435698062,-0.2262800931930542,94.1037654876709,94.66377198696136,-1.7108812928199768,57.16201663017273,43.90392154455185,2.8412699699401855,-0.9421101808547974,-0.6861467361450195,-1.9296824286416512,1.3776256950396086,1.3776256950396086,4.770952398581837,-2.319735875894406,-2.063772431184628 +illusion,illusion_1.5L,152,153,60.800000000000004,1.4836281770840287,0.1828218810260296,4.350645001977682,10.184918181039393,0.24436530657112598,1.9642554398160428,-1.145192451076582,-2.046019595582038,8.34670290350914,-1.36119918897748,-4.755944013595581,93.50264072418213,94.2370355129242,-4.226182401180267,57.364267110824585,44.1323384642601,5.611365795135498,-2.3177223205566406,-2.5577220916748047,0.17054718074648767,-0.14406931056224415,-0.14406931056224415,5.44081861438901,-2.1736530099943963,-2.4136527811125603 +illusion,illusion_1.5L,153,154,61.2,1.9402004545554519,-0.1736283302307129,2.868412993848324,7.6770264422520995,-1.7447177087888122,2.0337459864094853,-0.7577176438644528,-3.260152996517718,8.451278321444988,-2.446994185447693,-9.007078409194946,92.5494909286499,94.67384219169617,-7.549530267715454,59.09043550491333,43.892937898635864,-1.0702911615371704,2.0982751846313477,1.2019729614257812,-3.284806758971869,2.4482518958001562,2.4482518958001562,2.2145155974346986,-0.3499767111688086,-1.246278934374375 +illusion,illusion_1.5L,154,155,61.6,2.5665881112217903,-0.2625454217195511,2.663457067683339,7.8935022465884686,-2.9531631153076887,1.416425744537264,-0.5866130231879652,-4.126389161683619,8.312063291668892,-3.3562262542545795,-13.500165939331055,90.03306031227112,94.17191743850708,-12.20790296792984,61.97386384010315,43.05364936590195,-4.623758316040039,4.255364418029785,3.478353500366211,-5.61721716180132,4.183305046355198,4.183305046355198,0.993458845761281,0.07205937167458742,-0.7049515459889868 +illusion,illusion_1.5L,155,156,62.0,2.0859716460108757,0.012033269740641117,3.077957429923117,8.24188650585711,-1.590769155882299,1.294761270401068,-1.7637146374909207,-5.11819843086414,8.355864323675632,-4.019565414637327,-18.752437829971313,86.73282861709595,93.31867098808289,-18.657278269529343,64.41507935523987,41.67254641652107,1.4775499105453491,-1.0251882076263428,-1.1718993186950684,-3.306111349731231,2.445908351826675,2.445908351826675,4.78366126027658,-3.471096559453018,-3.6178076705217435 +illusion,illusion_1.5L,156,157,62.400000000000006,2.065439010038972,-0.4015156300738454,3.165737143717706,8.396913297474384,-0.20600408606696874,1.5433147782459855,-2.397838863544166,-5.001681813155301,8.45526996999979,-4.386493470519781,-24.70804452896118,80.57735562324524,91.75471067428589,-27.719564363360405,63.35631608963013,39.914416149258614,6.02921724319458,-4.425466537475586,-4.163372039794922,0.3081161975456745,-0.18888759028877694,-0.18888759028877694,5.721101045648906,-4.236578947186809,-3.974484449506145 +illusion,illusion_1.5L,157,158,62.800000000000004,1.701569533906877,-0.8883539121598005,2.958152210339904,7.617873954586685,-1.7412203596904874,1.2157837645645486,-1.249777500561322,-4.240775360813132,8.588939905166626,-4.429016727954149,-30.066755414009094,70.6917941570282,90.98100364208221,-36.914467497263104,53.8628876209259,36.98614271124825,-0.6350182890892029,0.965705931186676,0.23010408878326416,-1.9720657652492906,1.5463275824049612,1.5463275824049612,1.3370474761600877,-0.5806216512182851,-1.316223493621697 +illusion,illusion_1.5L,158,159,63.2,2.404215279966593,-1.0452227434143424,4.093281575478613,10.59077843092382,-3.411737969145179,0.7633177010575309,-0.3752538323169574,-4.162245633779094,8.836976252496243,-4.143605940043926,-31.212282180786133,58.618903160095215,91.26006364822388,-33.94692651927471,30.96364736557007,23.52495677769184,-7.547609806060791,4.556912422180176,3.3229050636291504,-5.1342999309520385,3.902219999023355,3.902219999023355,-2.4133098751087525,0.654692423156821,-0.5793149353942044 +illusion,illusion_1.5L,159,160,63.6,2.200281247496605,-0.7578479126095772,3.639048896729946,9.478379040956497,-1.359933172352612,0.8207042337744497,-0.9578069802955724,-3.275547132943757,8.733537979424,-3.5512277390807867,-27.339351177215576,48.14022779464722,92.26952791213989,-20.76156437397003,-3.613351285457611,4.475304484367371,-1.3893446922302246,-0.13413679599761963,-0.31553125381469727,-1.4232839512853217,1.1274043596101884,1.1274043596101884,0.03393925905509709,-1.261541155607808,-1.4429356134248856 +illusion,illusion_1.5L,160,161,64.0,3.18513298407197,-0.929269299376756,2.881607913877815,8.9483488118276,1.3404105557128787,0.2657719887793064,-1.8307797145098448,-2.321148873306811,8.477425202727318,-2.695498988032341,-20.178362727165222,44.058844447135925,92.00815260410309,-5.640377476811409,-40.79871475696564,-15.204716846346855,6.720551490783691,-7.091591835021973,-4.735194206237793,4.464675018404415,-3.2139590667726745,-3.2139590667726745,2.255876472379277,-3.877632768249298,-1.5212351394651185 +illusion,illusion_1.5L,161,162,64.4,2.3673258256167173,-0.7202308624982834,3.1791729852557182,8.725671796128154,0.01134174544858979,0.8330255604960257,-0.7764397796563571,-1.5415378138641245,8.370790630578995,-1.639144727960229,-11.490392684936523,48.37146699428558,88.68544101715088,13.173982501029968,-66.38229489326477,-39.8777037858963,0.2878105342388153,-2.9135539531707764,-2.021721839904785,1.3389916613676243,-0.920817175446029,-0.920817175446029,-1.051181127128809,-1.9927367777247473,-1.1009046644587561 +illusion,illusion_1.5L,162,163,64.8,1.6342285089194775,-0.056416261941194534,4.731569439172745,11.097367387264967,-2.2528953850269318,1.2944186746608466,0.7889690168667585,-0.6749573512934148,8.236602880060673,-0.4590688622556627,-4.463467001914978,59.70233678817749,86.74266636371613,24.888122081756592,-72.05259799957275,-58.446937799453735,-8.0,3.6041011810302734,2.161280632019043,-4.5480359229222564,3.3718205685542406,3.3718205685542406,-3.4519640770777436,0.23228061247603282,-1.2105399365351976 +illusion,illusion_1.5L,163,164,65.2,1.3687468599528074,-0.518130837008357,4.76555316708982,10.899853194132447,-0.09467093332204968,2.9128919122740626,0.8950509363785386,1.6954309394350275,8.309897966682911,0.759548507630825,-0.8606225252151489,69.71694827079773,87.80888617038727,21.602709591388702,-70.32743692398071,-61.31283491849899,-3.388874053955078,1.9838063716888428,0.4697737991809845,0.7509725054905919,-0.5052996497651453,-0.5052996497651453,-4.13984655944567,2.489106021453988,0.9750734489461298 +illusion,illusion_1.5L,164,165,65.60000000000001,2.923421561717987,-0.24094677064567804,2.599993604235351,8.12340877018869,2.5020528119057417,1.5954762930050492,0.10629999451339245,2.7146528009325266,8.405817672610283,1.9296474056318402,2.4274349212646484,76.30748748779297,89.82884287834167,12.368378043174744,-71.21254205703735,-58.42359960079193,6.40794038772583,-5.3847551345825195,-4.158536911010742,5.605584175859684,-4.125575586608031,-4.125575586608031,0.8023562118661465,-1.2591795479744885,-0.032961324402711156 +illusion,illusion_1.5L,165,166,66.0,2.1067208144813776,-0.1746751368045807,3.0108841601759195,8.128489134833217,1.5370436012744904,1.7504931311123073,0.8231839747168124,3.183411550708115,8.243248797953129,2.9686721973121166,7.304614782333374,80.04422783851624,90.59389233589172,5.718117952346802,-72.56689667701721,-58.49369764328003,2.1137685775756836,-2.3606605529785156,-2.4148387908935547,3.492277649494097,-2.567836122517561,-2.567836122517561,-1.3785090719184132,0.2071755695390456,0.15299733162400653 +illusion,illusion_1.5L,166,167,66.4,1.9872908014804125,0.1394249266013503,3.168220748193562,8.323732297867537,-0.4105840343981981,1.9999872893095016,2.49749468639493,4.584405338391662,8.251132443547249,3.8044583052396774,13.473612070083618,79.92417812347412,90.70467352867126,-0.7855385541915894,-74.12331104278564,-60.336896777153015,-5.730757236480713,5.033844947814941,2.71293306350708,-1.1023219016769696,0.8023030344361729,0.8023030344361729,-4.6284353348037435,4.231541913378768,1.9106300290709073 +illusion,illusion_1.5L,167,168,66.8,1.7166136531159282,0.41351316031068563,3.4744980512186885,8.665609755553305,0.367544824257493,2.1724362924260276,2.1700498581367356,4.707644540530964,8.374292403459549,4.380189348012209,20.520973205566406,75.98291635513306,93.08880567550659,-9.025856852531433,-76.73864960670471,-62.205299735069275,-3.106182813644409,3.141852617263794,1.2821165323257446,0.003468740152631322,-0.042908470084384254,-0.042908470084384254,-3.1096515537970406,3.1847610873481784,1.3250250024101289 +illusion,illusion_1.5L,168,169,67.2,2.258431864902377,1.0995310731232166,3.176330588757992,8.61109304241836,2.716450020670891,0.9543812157062348,1.0188803753408138,4.754210771352518,8.528592064976692,4.65808343142271,29.0895938873291,65.59134721755981,95.90404033660889,-15.325415134429932,-76.83032751083374,-58.72575640678406,6.954889297485352,-4.115093231201172,-2.6798653602600098,3.599683206027751,-2.7716418858975613,-2.7716418858975613,3.3552060914576005,-1.3434513453036105,0.09177652563755156 +illusion,illusion_1.5L,169,170,67.60000000000001,1.923541771247983,1.0266245808452368,4.113271599635482,10.150084970518947,1.9294751109555364,1.2230601059854962,1.0512338121770881,4.031942735309713,8.839370682835579,4.621583968400955,35.914140939712524,55.82995414733887,97.94848561286926,-11.697308719158173,-61.80137395858765,-41.52248054742813,4.313040733337402,-2.6131386756896973,-1.402449607849121,2.1081505445894946,-1.6605426067260936,-1.6605426067260936,2.2048901887479078,-0.9525960689636037,0.25809299887697246 +illusion,illusion_1.5L,170,171,68.0,2.9288188088685274,0.7958522764965892,2.628664835356176,8.18614847958088,-0.9158079046756029,1.1063902056775987,2.3668192443437874,3.817830584011972,8.838828653097153,4.275944549590349,39.028263092041016,52.59600281715393,95.10258436203003,-4.912198334932327,-26.88238024711609,-16.34087786078453,-5.748818397521973,5.008532524108887,3.9038538932800293,-3.344385846948292,2.3977710982175613,2.3977710982175613,-2.4044325505736808,2.6107614258913254,1.506082795062468 +illusion,illusion_1.5L,171,172,68.4,2.725927857682109,0.8148056222125888,2.842085319571197,8.410098496824503,-0.38791802944615483,1.3099464122205973,1.9108513370156288,3.433784644585103,8.61181877553463,3.647242672741413,39.40776288509369,57.48138427734375,94.5417195558548,2.798931300640106,12.216435372829437,11.68990433216095,-2.8587043285369873,3.8725578784942627,3.2282631397247314,-2.2891813074734917,1.614892015753244,1.614892015753244,-0.5695230210634956,2.2576658627410184,1.6133711239714874 +illusion,illusion_1.5L,172,173,68.8,1.9503788789734244,0.7378666196018457,3.816023236140609,9.582425351254642,1.8085385672748089,0.8913070196285844,0.32077624928206205,2.450091065838933,8.512568660080433,2.779964357614517,35.88298559188843,62.831807136535645,93.50892305374146,10.410787165164948,48.4303742647171,35.78106015920639,6.738874435424805,-3.103930711746216,-1.6210312843322754,2.385924433183307,-1.8379720257953427,-1.8379720257953427,4.3529500022414975,-1.2659586859508731,0.2169407414630673 +illusion,illusion_1.5L,173,174,69.2,1.2752949260175228,0.7015676237642765,4.788239486515522,10.851773899048567,0.8521664422005415,2.4089381331577897,-0.14372833538800478,0.5647097714245319,8.35700798779726,1.733398879878223,28.005734086036682,71.25909328460693,94.58471238613129,13.888607919216156,74.15531873703003,47.6150706410408,4.690300464630127,-1.9521948099136353,-1.7727818489074707,0.4778050488512646,-0.42209933365862085,-0.42209933365862085,4.2124954157788626,-1.5300954762550143,-1.3506825152488497 +illusion,illusion_1.5L,174,175,69.60000000000001,2.687174128368497,0.3140413900837302,2.3014346370473504,7.290043402463198,-1.6898374306038022,1.9574904581531882,0.7132372120395303,-0.26336300652474165,8.34998395293951,0.5771745345555246,19.015666842460632,77.34476327896118,93.7724620103836,11.347244679927826,78.98616194725037,49.91859942674637,-3.551675796508789,4.516573905944824,3.7378196716308594,-4.0622863786418115,2.9761429876063588,2.9761429876063588,0.5106105821330225,1.5404309183384655,0.7616766840245006 +illusion,illusion_1.5L,175,176,70.0,2.7221667114645243,0.2789212157949805,2.5645889109000564,7.851344533264637,-1.6510381828993559,1.6605798155069351,0.046489876694977283,-1.5580584295094013,8.401495404541492,-0.6137097952887416,10.844731330871582,83.05942416191101,94.9920654296875,7.352639734745026,74.48117136955261,50.90028494596481,-2.0917716026306152,3.077939987182617,2.6845016479492188,-3.9180349570471655,2.8727987184086796,2.8727987184086796,1.8262633544165503,0.20514126877393757,-0.18829707045946087 +illusion,illusion_1.5L,176,177,70.4,1.858007162809372,0.26900717057287693,3.0947683844715357,8.047543931752443,-0.323313259286806,1.7385193350492045,-1.598276270669885,-3.519865800626576,8.17778054624796,-1.763974200002849,3.6535322666168213,84.66150760650635,95.62886357307434,3.491814434528351,72.51392602920532,51.80506557226181,4.298313617706299,-3.1162967681884766,-2.6995444297790527,-1.1588474921571423,0.8314999165685957,0.8314999165685957,5.457161109863441,-3.9477966847570722,-3.5310443463476484 +illusion,illusion_1.5L,177,178,70.8,1.5964554622769356,-0.1720149302855134,3.6145354388281703,8.825526339933276,-0.5046123405918479,2.4220992054324597,-1.6937398177105933,-3.8920919760130346,8.096658624708652,-2.8029107488691807,-3.482881188392639,84.78171825408936,97.82720506191254,-0.37392377853393555,74.28441047668457,52.21599340438843,3.6505239009857178,-2.01401424407959,-2.279122829437256,-0.7275653072992105,0.555302762196076,0.555302762196076,4.378089208284928,-2.569317006275666,-2.834425591633332 +illusion,illusion_1.5L,178,179,71.2,2.194239990785718,-0.8649113005958498,2.5421938044019043,7.278627599589527,-2.4480349384248257,1.6977883642539382,-0.614261138252914,-3.6765572149306536,8.196541108191013,-3.6686852108687162,-11.40562891960144,81.80176615715027,99.5579183101654,-3.946729004383087,80.0114393234253,52.022264897823334,-3.7666635513305664,4.255541801452637,3.5984652042388916,-3.4740996842768976,2.655800061630127,2.655800061630127,-0.29256386705366877,1.5997417398225098,0.9426651426087647 +illusion,illusion_1.5L,179,180,71.60000000000001,2.143437508493662,-0.7551179733127356,3.270419081673026,8.684275671839714,-2.500315895304084,1.5513347461819649,-0.8495396468788385,-4.199395189061761,8.346819318830967,-4.311835393309593,-20.28128206729889,77.8238832950592,101.45191848278046,-7.029180228710175,85.22492051124573,50.12877732515335,-3.2923665046691895,3.7712879180908203,3.0763192176818848,-3.782582290280099,2.8734183465361607,2.8734183465361607,0.4902157856109097,0.8978695715546596,0.20290087114572408 +illusion,illusion_1.5L,180,181,72.0,2.21642036922276,-0.3003203310072422,3.031219821423292,8.278860012069345,-0.5565022584050894,1.390588644426316,-2.4803602718748152,-5.51722280215472,8.710415102541447,-4.69779409468174,-29.436910152435303,74.68780279159546,103.08922529220581,-10.566988587379456,77.12655067443848,45.32876908779144,5.439076900482178,-4.1089701652526855,-3.4485952854156494,-0.6003284820111081,0.4736430268440925,0.4736430268440925,6.039405382493285,-4.582613192096778,-3.9222383122597417 +illusion,illusion_1.5L,181,182,72.4,1.8858109833672643,-0.5847312277182937,3.549972199834883,8.98575538303703,-0.5502726999111474,2.0611402724171057,-2.5315997045254335,-5.613472108962014,8.84176604449749,-4.808346275240183,-37.22853660583496,71.34919166564941,103.27930450439453,-13.849766552448273,47.33263850212097,34.79755073785782,4.811685085296631,-4.18442440032959,-4.099372863769531,-0.06796146854754204,0.10734749513590824,0.10734749513590824,4.879646553844173,-4.291771895465498,-4.206720358905439 +illusion,illusion_1.5L,182,183,72.8,1.927063800394535,-0.8964748121798038,3.2768105156719685,8.480684831738472,-3.0087612103670835,1.4002998650539666,-0.6931977986823767,-4.395156807731837,8.70272982865572,-4.642012063413858,-39.50212597846985,69.88428235054016,100.72069764137268,-12.809865036979318,1.2309975922107697,14.203275879845023,-5.602540969848633,3.9554834365844727,2.889740467071533,-4.5740609436546125,3.473036903495224,3.473036903495224,-1.0284800261940203,0.4824465330892487,-0.5832964364236908 +illusion,illusion_1.5L,183,184,73.2,2.035403624176979,-1.0068821720778942,4.776360001415014,11.588123627007008,-2.66295881010592,1.8506599008105695,-0.3388950717635453,-3.3407489536330104,8.674847893416882,-4.213416017591953,-34.71803069114685,70.12729048728943,94.78952288627625,-6.30144402384758,-41.12289547920227,-12.907984107732773,-6.288715362548828,4.313451766967773,2.6364312171936035,-3.6584838624230844,2.806125800320518,2.806125800320518,-2.6302315001257437,1.5073259666472554,-0.16969458312691454 +illusion,illusion_1.5L,184,185,73.60000000000001,2.5383003521710634,-0.4735402762889862,2.881679916754365,8.301660185679793,0.02621271414682269,1.2054466787958518,-1.5511477686231956,-3.0760828230995685,8.570708334445953,-3.5517665091902018,-25.044509768486023,74.50138926506042,92.17957556247711,1.8730655312538147,-65.99987149238586,-33.97982865571976,3.3656673431396484,-3.638460636138916,-3.1694581508636475,0.919086609688025,-0.6340826682924241,-0.6340826682924241,2.4465807334516234,-3.0043779678464917,-2.535375482571223 +illusion,illusion_1.5L,185,186,74.0,2.7950569055974483,-0.5021120887249708,2.972999354824424,8.741055615246296,0.8968598558567464,0.9141734335571527,-1.412013778463006,-1.9271677010692656,8.535319939255714,-2.6986123993992805,-14.484640955924988,78.5426914691925,90.66233932971954,5.818502604961395,-76.61377787590027,-44.370950758457184,4.966429710388184,-4.95611572265625,-3.9261646270751953,2.7687206807687055,-2.0003377367387443,-2.0003377367387443,2.197709029619478,-2.9557779859175057,-1.925826890336451 +illusion,illusion_1.5L,186,187,74.4,2.113687340170145,-0.5982207367196679,3.0253593577072024,8.16440605558455,-0.7821914623491466,0.8708474924787879,0.23026810958981514,-0.3216552431695163,8.559806272387505,-1.705055357888341,-5.4283201694488525,83.50467681884766,91.7156457901001,5.039490759372711,-76.3304054737091,-48.532335460186005,-3.192131757736206,1.885509729385376,1.1140215396881104,-0.5221160697293332,0.44481480288964836,0.44481480288964836,-2.670015688006873,1.4406949264957276,0.669206736798462 +illusion,illusion_1.5L,187,188,74.8,1.6830372624099255,-0.24425459560006857,4.076002747751772,9.83504275791347,-1.4328317483887076,1.8018882256001234,0.9526226203888655,0.4724134923890233,8.268664591014385,-0.6286250427365303,2.4742960929870605,86.32035255432129,92.36844778060913,3.335133194923401,-76.99243426322937,-50.58785378932953,-6.299715042114258,4.325700759887695,2.30976939201355,-2.5119142345635006,1.8830706121492138,1.8830706121492138,-3.787800807550757,2.4426301477384813,0.426698779864336 +illusion,illusion_1.5L,188,189,75.2,2.085217507556081,0.07715180981904268,2.817130764015019,7.719479035586119,0.8260198519565165,1.504173269495368,0.15386519953608513,1.1337502510286868,8.048145100474358,0.46999973710626364,10.096186399459839,89.71408009529114,93.50429177284241,1.8857136368751526,-81.8831205368042,-51.623545587062836,1.7408952713012695,-2.037055492401123,-2.3086557388305664,1.564386145331616,-1.1654373543093974,-1.1654373543093974,0.17650912596965362,-0.8716181380917256,-1.143218384521169 +illusion,illusion_1.5L,189,190,75.60000000000001,2.704510698094964,0.0869410578161478,2.875134814530611,8.454780327156186,2.3042336106300354,0.7905185921117663,0.040348328184336424,2.3849302669987082,8.044709451496601,1.5302501851692796,18.1932270526886,94.93438601493835,93.145352602005,0.42878687381744385,-87.30744123458862,-51.70694291591644,6.1237897872924805,-5.210700988769531,-4.043024063110352,4.5982665955114115,-3.4119776736690333,-3.4119776736690333,1.525523191781069,-1.798723315100498,-0.6310463894413183 +illusion,illusion_1.5L,190,191,76.0,1.9861955661326647,-0.26892509777098894,2.9480018420144916,7.882199250161648,0.5211812094785273,0.9780709369806573,1.3512522709788755,3.2236857514362782,8.106881752610207,2.4947577621787786,27.154269814491272,101.84297561645508,91.11964404582977,-1.8735989928245544,-86.4744246006012,-50.64132958650589,-2.403369426727295,1.159691572189331,0.19952893257141113,1.5671945187452272,-1.1337538753600087,-1.1337538753600087,-3.970563945472522,2.29344544754934,1.3332828079314198 +illusion,illusion_1.5L,191,192,76.4,2.175340661779046,0.38378790486603975,3.619753639213741,9.414847940206528,-0.8875148487277329,1.6270275809802115,2.3595489910803735,3.831583133433014,8.437012322247028,3.3121565356850624,36.35728657245636,105.82952499389648,88.8683170080185,-7.491117715835571,-76.92914605140686,-46.80492281913757,-7.114473342895508,5.56760311126709,3.1988918781280518,-2.533296531750385,1.8376273251851016,1.8376273251851016,-4.581176811145123,3.7299757860819884,1.3612645529429501 +illusion,illusion_1.5L,192,193,76.80000000000001,1.8875187961384654,0.4355870187282562,3.1843858305364847,8.256290457211435,1.1653444962576032,1.4236428032745607,1.2538341616163962,3.6730128194903955,8.649187162518501,3.9395010098814964,43.00702065229416,103.9617657661438,87.62461692094803,-16.294627636671066,-52.50757336616516,-38.26952055096626,0.32577770948410034,-0.6525894403457642,-1.5272269248962402,1.6102001463886784,-1.2343152605809167,-1.2343152605809167,-1.284422436904578,0.5817258202351525,-0.29291166431532356 +illusion,illusion_1.5L,193,194,77.2,2.6150124613195658,0.6002209847792983,3.4213491016998887,9.457710664719343,3.3322020899504423,0.7008793322711426,0.7108193099156779,4.753840709781798,8.595731109380722,4.34423191472888,42.226485908031464,99.12567138671875,87.13960200548172,-20.00327999921865,-12.589597702026367,-19.97920577196055,8.0,-5.4627885818481445,-4.1367058753967285,5.782940764483794,-4.33891111983412,-4.33891111983412,2.2170592355162064,-1.1238774620140246,0.2022052444373914 +illusion,illusion_1.5L,194,195,77.60000000000001,2.080010250210762,0.1276186667382717,3.338425885885954,8.75686202198267,1.3297460973262787,0.9570771508151665,1.3759850844508037,4.081716266227886,8.6716553196311,4.50563570484519,33.53069722652435,92.9861843585968,84.50985252857208,-9.51060971710831,30.589649081230164,10.229512839578092,1.8601434230804443,-0.8325689435005188,-1.0739970207214355,2.5121423354887185,-1.8718608190927295,-1.8718608190927295,-0.6519989124082741,1.0392918755922107,0.797863798371294 +illusion,illusion_1.5L,195,196,78.0,2.9433860909193754,0.7530818693339825,3.283785656094551,9.510957403108478,-1.334356958977878,1.1073428904637694,2.630464150570333,3.926571342162788,8.69801826775074,4.415767267346382,25.51434338092804,90.66694378852844,86.27742230892181,0.2918720245361328,59.63996648788452,35.0729376077652,-5.764610767364502,5.883636474609375,4.309146881103516,-4.130352714283328,2.9836922246677293,2.9836922246677293,-1.6342580530811741,2.8999442499416457,1.3254546564357863 +illusion,illusion_1.5L,196,197,78.4,2.503331983461976,0.3607395337894559,3.0355056514963508,8.574343286454678,-0.12062743189744651,1.495611017162446,1.5803344067535363,3.040041381609626,8.734594099223614,4.079805221408606,18.094033002853394,91.41658544540405,89.2579972743988,4.353702068328857,70.80563306808472,45.59953212738037,-1.1112806797027588,2.0301856994628906,1.1742193698883057,-0.9079627976094682,0.6368536414832917,0.6368536414832917,-0.2033178820932906,1.393332057979599,0.537365728405014 +illusion,illusion_1.5L,197,198,78.80000000000001,2.069255569949746,0.5151004297658801,3.3081917790696025,8.685639128088951,1.935678767040372,1.1848630383610725,0.42469112668186426,2.7850610204041004,8.82646068930626,3.5158328246325254,10.95815896987915,94.45452094078064,92.62936115264893,4.288746416568756,69.65188384056091,47.410111129283905,7.6203131675720215,-3.899263620376587,-3.143152952194214,3.055310104544058,-2.311698427536528,-2.311698427536528,4.565003063027964,-1.5875651928400587,-0.8314545246576857 +illusion,illusion_1.5L,198,199,79.2,1.4438311336562037,0.38809969555586576,3.4002462634816766,8.244323660619557,0.3966227232012898,1.8503667088225484,0.48975611571222544,1.3761349546257406,8.55401810258627,2.754038665443659,4.521402716636658,97.26954698562622,94.3933755159378,3.198719024658203,67.26678609848022,48.2047438621521,2.932173728942871,-0.8566336631774902,-1.5224323272705078,0.10992019178307166,-0.11922131558200505,-0.11922131558200505,2.822253537159799,-0.7374123475954852,-1.4032110116885028 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/scaling_summary.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/scaling_summary.csv new file mode 100644 index 0000000..947553f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/scaling_summary.csv @@ -0,0 +1,38 @@ +family,scene,variant,failed,n,action_min_front,action_min_upper,action_min_lower,action_max_front,action_max_upper,action_max_lower,action_rms_front,action_rms_upper,action_rms_lower +karman,karman_re400,parent,,200,-2.7139625927397604,-7.531031663850338,-0.6686143028291043,3.64809775864367,3.1323124727202623,9.994729833741495,1.5845745432483256,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_front__scale_t0_0p5,,200,-1.35698129636988,-7.531031663850338,-0.6686143028291043,1.824048879321835,3.1323124727202623,9.994729833741495,0.7922872716241626,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_front__scale_t0_0p75,,200,-2.0354719445548204,-7.531031663850338,-0.6686143028291043,2.7360733189827533,3.1323124727202623,9.994729833741495,1.1884309074362447,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_front__scale_t0_1p0,,200,-2.7139625927397604,-7.531031663850338,-0.6686143028291043,3.64809775864367,3.1323124727202623,9.994729833741495,1.5845745432483256,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_front__scale_t0_1p25,,200,-3.3924532409247004,-7.531031663850338,-0.6686143028291043,4.560122198304588,3.1323124727202623,9.994729833741495,1.9807181790604074,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_front__scale_t0_1p5,,200,-4.070943889109641,-7.531031663850338,-0.6686143028291043,5.472146637965507,3.1323124727202623,9.994729833741495,2.3768618148724894,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_rear__scale_t0_0p5,,200,-2.7139625927397604,-5.481120172180477,1.381297188840756,3.64809775864367,-0.14944810389517693,6.712969257126054,1.5845745432483256,3.598098404900574,3.5873899625564776 +karman,karman_re400,karman_rear__scale_t0_0p75,,200,-2.7139625927397604,-6.506075918015407,0.3563414430058258,3.64809775864367,1.491432184412543,8.353849545433775,1.5845745432483256,3.7926055046046474,3.777358658072044 +karman,karman_re400,karman_rear__scale_t0_1p0,,200,-2.7139625927397604,-7.531031663850338,-0.6686143028291043,3.64809775864367,3.1323124727202623,9.994729833741495,1.5845745432483256,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_rear__scale_t0_1p25,,200,-2.7139625927397604,-8.555987409685267,-1.6935700486640344,3.64809775864367,4.773192761027982,11.635610122049215,1.5845745432483256,4.35441326934622,4.332268626310667 +karman,karman_re400,karman_rear__scale_t0_1p5,,200,-2.7139625927397604,-9.580943155520197,-2.7185257944989645,3.64809775864367,6.414073049335701,13.276490410356937,1.5845745432483256,4.701109331290859,4.676493641721191 +karman,karman_re400,karman_rear__scale_t1_0p5,,200,-2.7139625927397604,-5.815427323595029,-2.384218643084412,3.64809775864367,4.84791681297557,8.279125493486186,1.5845745432483256,2.742326869467574,2.728261584069009 +karman,karman_re400,karman_rear__scale_t1_0p75,,200,-2.7139625927397604,-6.673229493722682,-1.5264164729567584,3.64809775864367,3.990114642847917,9.13692766361384,1.5845745432483256,3.349435149597116,3.332161121481227 +karman,karman_re400,karman_rear__scale_t1_1p0,,200,-2.7139625927397604,-7.531031663850338,-0.6686143028291043,3.64809775864367,3.1323124727202623,9.994729833741495,1.5845745432483256,4.048298915576876,4.029247241615578 +karman,karman_re400,karman_rear__scale_t1_1p25,,200,-2.7139625927397604,-8.38883383397799,0.18918786729854986,3.64809775864367,2.274510302592608,10.852532003869149,1.5845745432483256,4.798997970880651,4.778913899075174 +karman,karman_re400,karman_rear__scale_t1_1p5,,200,-2.7139625927397604,-9.246636004105644,1.0469900374262036,3.64809775864367,1.4167081324649544,11.710334173996802,1.5845745432483256,5.580653014238004,5.559932724559934 +illusion,illusion_1.5L,parent,,200,-7.084999829937612,-4.33891111983412,-4.33891111983412,5.782940764483794,5.277444679551832,5.277444679551832,3.124129747069443,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t0_0p5,,200,-7.397167161685415,-4.33891111983412,-4.33891111983412,6.331123847071019,5.277444679551832,5.277444679551832,3.181503340685403,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t0_0p75,,200,-7.241083495811513,-4.33891111983412,-4.33891111983412,6.0570323057774065,5.277444679551832,5.277444679551832,3.145513425262957,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t0_1p0,,200,-7.084999829937612,-4.33891111983412,-4.33891111983412,5.782940764483794,5.277444679551832,5.277444679551832,3.124129747069443,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t0_1p25,,200,-6.92891616406371,-4.33891111983412,-4.33891111983412,5.715612771011644,5.277444679551832,5.277444679551832,3.1176528688801204,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t0_1p5,,200,-7.124501846751194,-4.33891111983412,-4.33891111983412,5.825641366163605,5.277444679551832,5.277444679551832,3.126175444764142,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t1_0p5,,200,-3.7670435191698624,-4.33891111983412,-4.33891111983412,3.081041106716933,5.277444679551832,5.277444679551832,1.593763016539683,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t1_0p75,,200,-5.240980087166262,-4.33891111983412,-4.33891111983412,4.314216727046723,5.277444679551832,5.277444679551832,2.3391215556414013,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t1_1p0,,200,-7.084999829937612,-4.33891111983412,-4.33891111983412,5.782940764483794,5.277444679551832,5.277444679551832,3.124129747069443,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t1_1p25,,200,-9.012333453295913,-4.33891111983412,-4.33891111983412,7.502767496898353,5.277444679551832,5.277444679551832,3.9250696333012325,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_front__scale_t1_1p5,,200,-10.93966707665422,-4.33891111983412,-4.33891111983412,9.222594229312918,5.277444679551832,5.277444679551832,4.733861478886358,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_rear__scale_t0_0p5,,200,-7.084999829937612,-4.715381618999938,-4.715381618999938,5.782940764483794,5.491828878808212,5.491828878808212,3.124129747069443,2.3595685568437843,2.3595685568437843 +illusion,illusion_1.5L,illusion_rear__scale_t0_0p75,,200,-7.084999829937612,-4.527146369417029,-4.527146369417029,5.782940764483794,5.384636779180021,5.384636779180021,3.124129747069443,2.3330727388670986,2.3330727388670986 +illusion,illusion_1.5L,illusion_rear__scale_t0_1p0,,200,-7.084999829937612,-4.33891111983412,-4.33891111983412,5.782940764483794,5.277444679551832,5.277444679551832,3.124129747069443,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_rear__scale_t0_1p25,,200,-7.084999829937612,-4.2011388818922875,-4.2011388818922875,5.782940764483794,5.170252579923641,5.170252579923641,3.124129747069443,2.3080406976993144,2.3080406976993144 +illusion,illusion_1.5L,illusion_rear__scale_t0_1p5,,200,-7.084999829937612,-4.276702177176543,-4.276702177176543,5.782940764483794,5.207711486589237,5.207711486589237,3.124129747069443,2.3098075004703063,2.3098075004703063 +illusion,illusion_1.5L,illusion_rear__scale_t1_0p5,,200,-7.084999829937612,-2.213914383872528,-2.213914383872528,5.782940764483794,2.7444992129913737,2.7444992129913737,3.124129747069443,1.1708994982285597,1.1708994982285597 +illusion,illusion_1.5L,illusion_rear__scale_t1_0p75,,200,-7.084999829937612,-3.169744985240279,-3.169744985240279,5.782940764483794,3.850891410035683,3.850891410035683,3.124129747069443,1.7306750581223147,1.7306750581223147 +illusion,illusion_1.5L,illusion_rear__scale_t1_1p0,,200,-7.084999829937612,-4.33891111983412,-4.33891111983412,5.782940764483794,5.277444679551832,5.277444679551832,3.124129747069443,2.315827663588474,2.315827663588474 +illusion,illusion_1.5L,illusion_rear__scale_t1_1p25,,200,-7.084999829937612,-5.611874149375559,-5.611874149375559,5.782940764483794,6.703997949067979,6.703997949067979,3.124129747069443,2.9110943761508006,2.9110943761508006 +illusion,illusion_1.5L,illusion_rear__scale_t1_1p5,,200,-7.084999829937612,-6.884837178916999,-6.884837178916999,5.782940764483794,8.130551218584127,8.130551218584127,3.124129747069443,3.511335110047482,3.511335110047482 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_dtw_convergence.csv new file mode 100644 index 0000000..bd2d181 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.6299139800702703,-18,0.7164446393648783,0.754383032734889,0.38281702498594916,0.47162885653833386,0.7517147103945414,0.70249561640303 +steady,sr,90,36.0,30,0.6348552238804986,-9,0.7274729947249094,0.7305055434278378,0.3775855610768001,0.49664901876658163,0.7380556126435598,0.7388626126433033 +steady,sr,120,48.0,30,0.6369240608467006,-21,0.7608028511206308,0.727515947046777,0.37677204708258316,0.5090809852348702,0.6949020445346832,0.7524704900606594 +steady,sr,150,60.0,30,0.6345361032731607,-13,0.6779652853806813,0.7585471298923949,0.3812981138626734,0.5077385728376103,0.7676850378513336,0.7139824798142702 +steady,sr,180,72.0,30,0.6328277763813984,-4,0.7629661440849305,0.6934701839055681,0.39045538008213043,0.5023148378730793,0.6886674900849661,0.7590926222577158 +steady,sr,200,80.0,30,0.6318295892223583,-5,0.7587425927321116,0.6912140283980989,0.3893680771191915,0.48567866038541296,0.7032804707686107,0.7626937059307238 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_long.csv new file mode 100644 index 0000000..c317f03 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,0.8464792370796204 +steady,sr,0,0.0,velocity,upper_uy,-0.3121224641799927 +steady,sr,0,0.0,velocity,center_ux,0.4523642659187317 +steady,sr,0,0.0,velocity,center_uy,-0.6611638069152832 +steady,sr,0,0.0,velocity,lower_ux,1.2014888525009155 +steady,sr,0,0.0,velocity,lower_uy,-0.0791720300912857 +steady,sr,1,0.4,velocity,upper_ux,0.9097314476966858 +steady,sr,1,0.4,velocity,upper_uy,-0.3735411763191223 +steady,sr,1,0.4,velocity,center_ux,0.5429174304008484 +steady,sr,1,0.4,velocity,center_uy,-0.6704512238502502 +steady,sr,1,0.4,velocity,lower_ux,1.044744849205017 +steady,sr,1,0.4,velocity,lower_uy,-0.2235562652349472 +steady,sr,2,0.8,velocity,upper_ux,0.9810226559638977 +steady,sr,2,0.8,velocity,upper_uy,-0.4222263991832733 +steady,sr,2,0.8,velocity,center_ux,0.603967010974884 +steady,sr,2,0.8,velocity,center_uy,-0.6871379017829895 +steady,sr,2,0.8,velocity,lower_ux,0.8603051900863647 +steady,sr,2,0.8,velocity,lower_uy,-0.31377026438713074 +steady,sr,3,1.2,velocity,upper_ux,1.0584449768066406 +steady,sr,3,1.2,velocity,upper_uy,-0.45744001865386963 +steady,sr,3,1.2,velocity,center_ux,0.6319334506988525 +steady,sr,3,1.2,velocity,center_uy,-0.702849268913269 +steady,sr,3,1.2,velocity,lower_ux,0.7062708139419556 +steady,sr,3,1.2,velocity,lower_uy,-0.316600501537323 +steady,sr,4,1.6,velocity,upper_ux,1.1406806707382202 +steady,sr,4,1.6,velocity,upper_uy,-0.4769006669521332 +steady,sr,4,1.6,velocity,center_ux,0.6372393369674683 +steady,sr,4,1.6,velocity,center_uy,-0.6732199192047119 +steady,sr,4,1.6,velocity,lower_ux,0.6159824132919312 +steady,sr,4,1.6,velocity,lower_uy,-0.2504522502422333 +steady,sr,5,2.0,velocity,upper_ux,1.2240525484085083 +steady,sr,5,2.0,velocity,upper_uy,-0.47604313492774963 +steady,sr,5,2.0,velocity,center_ux,0.6263431310653687 +steady,sr,5,2.0,velocity,center_uy,-0.5596995949745178 +steady,sr,5,2.0,velocity,lower_ux,0.5808199644088745 +steady,sr,5,2.0,velocity,lower_uy,-0.15459546446800232 +steady,sr,6,2.4,velocity,upper_ux,1.299910545349121 +steady,sr,6,2.4,velocity,upper_uy,-0.44837915897369385 +steady,sr,6,2.4,velocity,center_ux,0.6017566323280334 +steady,sr,6,2.4,velocity,center_uy,-0.3669738471508026 +steady,sr,6,2.4,velocity,lower_ux,0.5907140970230103 +steady,sr,6,2.4,velocity,lower_uy,-0.05690506845712662 +steady,sr,7,2.8,velocity,upper_ux,1.3535590171813965 +steady,sr,7,2.8,velocity,upper_uy,-0.387595534324646 +steady,sr,7,2.8,velocity,center_ux,0.5565046072006226 +steady,sr,7,2.8,velocity,center_uy,-0.1283288598060608 +steady,sr,7,2.8,velocity,lower_ux,0.6386150121688843 +steady,sr,7,2.8,velocity,lower_uy,0.026818403974175453 +steady,sr,8,3.2,velocity,upper_ux,1.3698283433914185 +steady,sr,8,3.2,velocity,upper_uy,-0.2919287383556366 +steady,sr,8,3.2,velocity,center_ux,0.4880475103855133 +steady,sr,8,3.2,velocity,center_uy,0.14080435037612915 +steady,sr,8,3.2,velocity,lower_ux,0.7006183862686157 +steady,sr,8,3.2,velocity,lower_uy,0.1018834114074707 +steady,sr,9,3.6,velocity,upper_ux,1.342484951019287 +steady,sr,9,3.6,velocity,upper_uy,-0.16682344675064087 +steady,sr,9,3.6,velocity,center_ux,0.42145875096321106 +steady,sr,9,3.6,velocity,center_uy,0.4140259623527527 +steady,sr,9,3.6,velocity,lower_ux,0.7554320693016052 +steady,sr,9,3.6,velocity,lower_uy,0.18298572301864624 +steady,sr,10,4.0,velocity,upper_ux,1.2720561027526855 +steady,sr,10,4.0,velocity,upper_uy,-0.021442219614982605 +steady,sr,10,4.0,velocity,center_ux,0.41087502241134644 +steady,sr,10,4.0,velocity,center_uy,0.6104516386985779 +steady,sr,10,4.0,velocity,lower_ux,0.8079447746276855 +steady,sr,10,4.0,velocity,lower_uy,0.26432695984840393 +steady,sr,11,4.4,velocity,upper_ux,1.1518700122833252 +steady,sr,11,4.4,velocity,upper_uy,0.13225972652435303 +steady,sr,11,4.4,velocity,center_ux,0.4837174713611603 +steady,sr,11,4.4,velocity,center_uy,0.6675073504447937 +steady,sr,11,4.4,velocity,lower_ux,0.8669479489326477 +steady,sr,11,4.4,velocity,lower_uy,0.33476969599723816 +steady,sr,12,4.8,velocity,upper_ux,0.9809924364089966 +steady,sr,12,4.8,velocity,upper_uy,0.26365670561790466 +steady,sr,12,4.8,velocity,center_ux,0.5686680674552917 +steady,sr,12,4.8,velocity,center_uy,0.6741006970405579 +steady,sr,12,4.8,velocity,lower_ux,0.9336428046226501 +steady,sr,12,4.8,velocity,lower_uy,0.391937255859375 +steady,sr,13,5.2,velocity,upper_ux,0.8003264665603638 +steady,sr,13,5.2,velocity,upper_uy,0.3247840106487274 +steady,sr,13,5.2,velocity,center_ux,0.6166938543319702 +steady,sr,13,5.2,velocity,center_uy,0.694800615310669 +steady,sr,13,5.2,velocity,lower_ux,1.0071625709533691 +steady,sr,13,5.2,velocity,lower_uy,0.43605995178222656 +steady,sr,14,5.6,velocity,upper_ux,0.6676232218742371 +steady,sr,14,5.6,velocity,upper_uy,0.2993249297142029 +steady,sr,14,5.6,velocity,center_ux,0.6361003518104553 +steady,sr,14,5.6,velocity,center_uy,0.700101912021637 +steady,sr,14,5.6,velocity,lower_ux,1.0866055488586426 +steady,sr,14,5.6,velocity,lower_uy,0.4661828279495239 +steady,sr,15,6.0,velocity,upper_ux,0.5984511971473694 +steady,sr,15,6.0,velocity,upper_uy,0.21878524124622345 +steady,sr,15,6.0,velocity,center_ux,0.6352013945579529 +steady,sr,15,6.0,velocity,center_uy,0.6442122459411621 +steady,sr,15,6.0,velocity,lower_ux,1.1700021028518677 +steady,sr,15,6.0,velocity,lower_uy,0.4792281687259674 +steady,sr,16,6.4,velocity,upper_ux,0.5794278979301453 +steady,sr,16,6.4,velocity,upper_uy,0.11972573399543762 +steady,sr,16,6.4,velocity,center_ux,0.619611918926239 +steady,sr,16,6.4,velocity,center_uy,0.4999242424964905 +steady,sr,16,6.4,velocity,lower_ux,1.2520523071289062 +steady,sr,16,6.4,velocity,lower_uy,0.46984294056892395 +steady,sr,17,6.8,velocity,upper_ux,0.6038113832473755 +steady,sr,17,6.8,velocity,upper_uy,0.025904487818479538 +steady,sr,17,6.8,velocity,center_ux,0.5887554883956909 +steady,sr,17,6.8,velocity,center_uy,0.2879287600517273 +steady,sr,17,6.8,velocity,lower_ux,1.3219186067581177 +steady,sr,17,6.8,velocity,lower_uy,0.4312063157558441 +steady,sr,18,7.2,velocity,upper_ux,0.6600341200828552 +steady,sr,18,7.2,velocity,upper_uy,-0.052950143814086914 +steady,sr,18,7.2,velocity,center_ux,0.534632682800293 +steady,sr,18,7.2,velocity,center_uy,0.03772009536623955 +steady,sr,18,7.2,velocity,lower_ux,1.3639167547225952 +steady,sr,18,7.2,velocity,lower_uy,0.3581012487411499 +steady,sr,19,7.6,velocity,upper_ux,0.7206318378448486 +steady,sr,19,7.6,velocity,upper_uy,-0.12920914590358734 +steady,sr,19,7.6,velocity,center_ux,0.46234166622161865 +steady,sr,19,7.6,velocity,center_uy,-0.23819637298583984 +steady,sr,19,7.6,velocity,lower_ux,1.3652026653289795 +steady,sr,19,7.6,velocity,lower_uy,0.2512715458869934 +steady,sr,20,8.0,velocity,upper_ux,0.7734108567237854 +steady,sr,20,8.0,velocity,upper_uy,-0.2119908481836319 +steady,sr,20,8.0,velocity,center_ux,0.40844103693962097 +steady,sr,20,8.0,velocity,center_uy,-0.49649643898010254 +steady,sr,20,8.0,velocity,lower_ux,1.3230949640274048 +steady,sr,20,8.0,velocity,lower_uy,0.11809951812028885 +steady,sr,21,8.4,velocity,upper_ux,0.8277233839035034 +steady,sr,21,8.4,velocity,upper_uy,-0.2903275191783905 +steady,sr,21,8.4,velocity,center_ux,0.428821861743927 +steady,sr,21,8.4,velocity,center_uy,-0.6445023417472839 +steady,sr,21,8.4,velocity,lower_ux,1.2366502285003662 +steady,sr,21,8.4,velocity,lower_uy,-0.032030101865530014 +steady,sr,22,8.8,velocity,upper_ux,0.8893470764160156 +steady,sr,22,8.8,velocity,upper_uy,-0.3561441898345947 +steady,sr,22,8.8,velocity,center_ux,0.5164831280708313 +steady,sr,22,8.8,velocity,center_uy,-0.6692092418670654 +steady,sr,22,8.8,velocity,lower_ux,1.0971628427505493 +steady,sr,22,8.8,velocity,lower_uy,-0.1829145848751068 +steady,sr,23,9.2,velocity,upper_ux,0.9583693146705627 +steady,sr,23,9.2,velocity,upper_uy,-0.408769428730011 +steady,sr,23,9.2,velocity,center_ux,0.5893557071685791 +steady,sr,23,9.2,velocity,center_uy,-0.6803885698318481 +steady,sr,23,9.2,velocity,lower_ux,0.9158161282539368 +steady,sr,23,9.2,velocity,lower_uy,-0.2949275076389313 +steady,sr,24,9.6,velocity,upper_ux,1.0340465307235718 +steady,sr,24,9.6,velocity,upper_uy,-0.44821903109550476 +steady,sr,24,9.6,velocity,center_ux,0.626074492931366 +steady,sr,24,9.6,velocity,center_uy,-0.700661301612854 +steady,sr,24,9.6,velocity,lower_ux,0.7466804385185242 +steady,sr,24,9.6,velocity,lower_uy,-0.32478591799736023 +steady,sr,25,10.0,velocity,upper_ux,1.1153085231781006 +steady,sr,25,10.0,velocity,upper_uy,-0.4728875756263733 +steady,sr,25,10.0,velocity,center_ux,0.6378467679023743 +steady,sr,25,10.0,velocity,center_uy,-0.6898370385169983 +steady,sr,25,10.0,velocity,lower_ux,0.6369668841362 +steady,sr,25,10.0,velocity,lower_uy,-0.2754041254520416 +steady,sr,26,10.4,velocity,upper_ux,1.1992385387420654 +steady,sr,26,10.4,velocity,upper_uy,-0.47886666655540466 +steady,sr,26,10.4,velocity,center_ux,0.631447970867157 +steady,sr,26,10.4,velocity,center_uy,-0.6039501428604126 +steady,sr,26,10.4,velocity,lower_ux,0.586856484413147 +steady,sr,26,10.4,velocity,lower_uy,-0.18499550223350525 +steady,sr,27,10.8,velocity,upper_ux,1.278607964515686 +steady,sr,27,10.8,velocity,upper_uy,-0.4600909948348999 +steady,sr,27,10.8,velocity,center_ux,0.6110953688621521 +steady,sr,27,10.8,velocity,center_uy,-0.43188372254371643 +steady,sr,27,10.8,velocity,lower_ux,0.5833020210266113 +steady,sr,27,10.8,velocity,lower_uy,-0.08556760102510452 +steady,sr,28,11.2,velocity,upper_ux,1.3404972553253174 +steady,sr,28,11.2,velocity,upper_uy,-0.4097980260848999 +steady,sr,28,11.2,velocity,center_ux,0.5727836489677429 +steady,sr,28,11.2,velocity,center_uy,-0.20452682673931122 +steady,sr,28,11.2,velocity,lower_ux,0.6209646463394165 +steady,sr,28,11.2,velocity,lower_uy,0.0030235860031098127 +steady,sr,29,11.6,velocity,upper_ux,1.3692315816879272 +steady,sr,29,11.6,velocity,upper_uy,-0.3244525194168091 +steady,sr,29,11.6,velocity,center_ux,0.510258138179779 +steady,sr,29,11.6,velocity,center_uy,0.0563250333070755 +steady,sr,29,11.6,velocity,lower_ux,0.6818040609359741 +steady,sr,29,11.6,velocity,lower_uy,0.07880899310112 +steady,sr,30,12.0,velocity,upper_ux,1.355323314666748 +steady,sr,30,12.0,velocity,upper_uy,-0.20742645859718323 +steady,sr,30,12.0,velocity,center_ux,0.43861815333366394 +steady,sr,30,12.0,velocity,center_uy,0.33409297466278076 +steady,sr,30,12.0,velocity,lower_ux,0.7394828796386719 +steady,sr,30,12.0,velocity,lower_uy,0.15758711099624634 +steady,sr,31,12.4,velocity,upper_ux,1.2985107898712158 +steady,sr,31,12.4,velocity,upper_uy,-0.06728772819042206 +steady,sr,31,12.4,velocity,center_ux,0.40495654940605164 +steady,sr,31,12.4,velocity,center_uy,0.5650248527526855 +steady,sr,31,12.4,velocity,lower_ux,0.7917036414146423 +steady,sr,31,12.4,velocity,lower_uy,0.2403860092163086 +steady,sr,32,12.8,velocity,upper_ux,1.1946454048156738 +steady,sr,32,12.8,velocity,upper_uy,0.08586642891168594 +steady,sr,32,12.8,velocity,center_ux,0.4560048282146454 +steady,sr,32,12.8,velocity,center_uy,0.6618050932884216 +steady,sr,32,12.8,velocity,lower_ux,0.8484371900558472 +steady,sr,32,12.8,velocity,lower_uy,0.3147464096546173 +steady,sr,33,13.2,velocity,upper_ux,1.0368280410766602 +steady,sr,33,13.2,velocity,upper_uy,0.22897224128246307 +steady,sr,33,13.2,velocity,center_ux,0.5463813543319702 +steady,sr,33,13.2,velocity,center_uy,0.6707814931869507 +steady,sr,33,13.2,velocity,lower_ux,0.9126120209693909 +steady,sr,33,13.2,velocity,lower_uy,0.3759259283542633 +steady,sr,34,13.6,velocity,upper_ux,0.8521780967712402 +steady,sr,34,13.6,velocity,upper_uy,0.31572389602661133 +steady,sr,34,13.6,velocity,center_ux,0.6054794192314148 +steady,sr,34,13.6,velocity,center_uy,0.6881530284881592 +steady,sr,34,13.6,velocity,lower_ux,0.9838851690292358 +steady,sr,34,13.6,velocity,lower_uy,0.4240168035030365 +steady,sr,35,14.0,velocity,upper_ux,0.7007964849472046 +steady,sr,35,14.0,velocity,upper_uy,0.31484031677246094 +steady,sr,35,14.0,velocity,center_ux,0.6325121521949768 +steady,sr,35,14.0,velocity,center_uy,0.7028190493583679 +steady,sr,35,14.0,velocity,lower_ux,1.0616317987442017 +steady,sr,35,14.0,velocity,lower_uy,0.4586125314235687 +steady,sr,36,14.4,velocity,upper_ux,0.6136274933815002 +steady,sr,36,14.4,velocity,upper_uy,0.2466477006673813 +steady,sr,36,14.4,velocity,center_ux,0.6374245285987854 +steady,sr,36,14.4,velocity,center_uy,0.6701798439025879 +steady,sr,36,14.4,velocity,lower_ux,1.1444025039672852 +steady,sr,36,14.4,velocity,lower_uy,0.47735679149627686 +steady,sr,37,14.8,velocity,upper_ux,0.580782949924469 +steady,sr,37,14.8,velocity,upper_uy,0.15019696950912476 +steady,sr,37,14.8,velocity,center_ux,0.6261074542999268 +steady,sr,37,14.8,velocity,center_uy,0.5527605414390564 +steady,sr,37,14.8,velocity,lower_ux,1.2280045747756958 +steady,sr,37,14.8,velocity,lower_uy,0.47553032636642456 +steady,sr,38,15.2,velocity,upper_ux,0.5922990441322327 +steady,sr,38,15.2,velocity,upper_uy,0.052868641912937164 +steady,sr,38,15.2,velocity,center_ux,0.6004182696342468 +steady,sr,38,15.2,velocity,center_uy,0.3573390245437622 +steady,sr,38,15.2,velocity,lower_ux,1.3030589818954468 +steady,sr,38,15.2,velocity,lower_uy,0.44649994373321533 +steady,sr,39,15.6,velocity,upper_ux,0.6410370469093323 +steady,sr,39,15.6,velocity,upper_uy,-0.03016158565878868 +steady,sr,39,15.6,velocity,center_ux,0.553631067276001 +steady,sr,39,15.6,velocity,center_uy,0.11717803031206131 +steady,sr,39,15.6,velocity,lower_ux,1.3549609184265137 +steady,sr,39,15.6,velocity,lower_uy,0.3840731084346771 +steady,sr,40,16.0,velocity,upper_ux,0.7028777599334717 +steady,sr,40,16.0,velocity,upper_uy,-0.1052345484495163 +steady,sr,40,16.0,velocity,center_ux,0.4844661056995392 +steady,sr,40,16.0,velocity,center_uy,-0.15290884673595428 +steady,sr,40,16.0,velocity,lower_ux,1.3692622184753418 +steady,sr,40,16.0,velocity,lower_uy,0.286918967962265 +steady,sr,41,16.4,velocity,upper_ux,0.7575929760932922 +steady,sr,41,16.4,velocity,upper_uy,-0.18659614026546478 +steady,sr,41,16.4,velocity,center_ux,0.41934749484062195 +steady,sr,41,16.4,velocity,center_uy,-0.42484158277511597 +steady,sr,41,16.4,velocity,lower_ux,1.3403223752975464 +steady,sr,41,16.4,velocity,lower_uy,0.16080427169799805 +steady,sr,42,16.8,velocity,upper_ux,0.8106792569160461 +steady,sr,42,16.8,velocity,upper_uy,-0.26764577627182007 +steady,sr,42,16.8,velocity,center_ux,0.41283321380615234 +steady,sr,42,16.8,velocity,center_uy,-0.6157237887382507 +steady,sr,42,16.8,velocity,lower_ux,1.2683651447296143 +steady,sr,42,16.8,velocity,lower_uy,0.01480709109455347 +steady,sr,43,17.2,velocity,upper_ux,0.8700736165046692 +steady,sr,43,17.2,velocity,upper_uy,-0.33754149079322815 +steady,sr,43,17.2,velocity,center_ux,0.4882190227508545 +steady,sr,43,17.2,velocity,center_uy,-0.6679012775421143 +steady,sr,43,17.2,velocity,lower_ux,1.145748257637024 +steady,sr,43,17.2,velocity,lower_uy,-0.1387832760810852 +steady,sr,44,17.6,velocity,upper_ux,0.9367014169692993 +steady,sr,44,17.6,velocity,upper_uy,-0.39413177967071533 +steady,sr,44,17.6,velocity,center_ux,0.5715067386627197 +steady,sr,44,17.6,velocity,center_uy,-0.6747942566871643 +steady,sr,44,17.6,velocity,lower_ux,0.972794771194458 +steady,sr,44,17.6,velocity,lower_uy,-0.2680835723876953 +steady,sr,45,18.0,velocity,upper_ux,1.010168194770813 +steady,sr,45,18.0,velocity,upper_uy,-0.4376467168331146 +steady,sr,45,18.0,velocity,center_ux,0.617745578289032 +steady,sr,45,18.0,velocity,center_uy,-0.6957021355628967 +steady,sr,45,18.0,velocity,lower_ux,0.7929069399833679 +steady,sr,45,18.0,velocity,lower_uy,-0.3253186345100403 +steady,sr,46,18.4,velocity,upper_ux,1.0898540019989014 +steady,sr,46,18.4,velocity,upper_uy,-0.4671075940132141 +steady,sr,46,18.4,velocity,center_ux,0.636300802230835 +steady,sr,46,18.4,velocity,center_uy,-0.6992501020431519 +steady,sr,46,18.4,velocity,lower_ux,0.6631439924240112 +steady,sr,46,18.4,velocity,lower_uy,-0.2966165542602539 +steady,sr,47,18.8,velocity,upper_ux,1.1736711263656616 +steady,sr,47,18.8,velocity,upper_uy,-0.4793604910373688 +steady,sr,47,18.8,velocity,center_ux,0.6350842118263245 +steady,sr,47,18.8,velocity,center_uy,-0.6397776007652283 +steady,sr,47,18.8,velocity,lower_ux,0.5968111157417297 +steady,sr,47,18.8,velocity,lower_uy,-0.21463558077812195 +steady,sr,48,19.2,velocity,upper_ux,1.2558188438415527 +steady,sr,48,19.2,velocity,upper_uy,-0.4689112901687622 +steady,sr,48,19.2,velocity,center_ux,0.619146466255188 +steady,sr,48,19.2,velocity,center_uy,-0.4918370544910431 +steady,sr,48,19.2,velocity,lower_ux,0.5800386667251587 +steady,sr,48,19.2,velocity,lower_uy,-0.11536624282598495 +steady,sr,49,19.6,velocity,upper_ux,1.3246948719024658 +steady,sr,49,19.6,velocity,upper_uy,-0.428822785615921 +steady,sr,49,19.6,velocity,center_ux,0.5871157646179199 +steady,sr,49,19.6,velocity,center_uy,-0.27768585085868835 +steady,sr,49,19.6,velocity,lower_ux,0.6060101389884949 +steady,sr,49,19.6,velocity,lower_uy,-0.022127090021967888 +steady,sr,50,20.0,velocity,upper_ux,1.364739179611206 +steady,sr,50,20.0,velocity,upper_uy,-0.3540685176849365 +steady,sr,50,20.0,velocity,center_ux,0.531451940536499 +steady,sr,50,20.0,velocity,center_uy,-0.026081707328557968 +steady,sr,50,20.0,velocity,lower_ux,0.6626377701759338 +steady,sr,50,20.0,velocity,lower_uy,0.05621235445141792 +steady,sr,51,20.4,velocity,upper_ux,1.3639633655548096 +steady,sr,51,20.4,velocity,upper_uy,-0.24584908783435822 +steady,sr,51,20.4,velocity,center_ux,0.4588613212108612 +steady,sr,51,20.4,velocity,center_uy,0.2503207325935364 +steady,sr,51,20.4,velocity,lower_ux,0.7227505445480347 +steady,sr,51,20.4,velocity,lower_uy,0.13271211087703705 +steady,sr,52,20.8,velocity,upper_ux,1.3202400207519531 +steady,sr,52,20.8,velocity,upper_uy,-0.11179054528474808 +steady,sr,52,20.8,velocity,center_ux,0.4072953760623932 +steady,sr,52,20.8,velocity,center_uy,0.5058706402778625 +steady,sr,52,20.8,velocity,lower_ux,0.7755485773086548 +steady,sr,52,20.8,velocity,lower_uy,0.2155689001083374 +steady,sr,53,21.2,velocity,upper_ux,1.2321003675460815 +steady,sr,53,21.2,velocity,upper_uy,0.03878403082489967 +steady,sr,53,21.2,velocity,center_ux,0.4320194125175476 +steady,sr,53,21.2,velocity,center_uy,0.6474832892417908 +steady,sr,53,21.2,velocity,lower_ux,0.8305249810218811 +steady,sr,53,21.2,velocity,lower_uy,0.2934589684009552 +steady,sr,54,21.6,velocity,upper_ux,1.090261459350586 +steady,sr,54,21.6,velocity,upper_uy,0.18900035321712494 +steady,sr,54,21.6,velocity,center_ux,0.5207735300064087 +steady,sr,54,21.6,velocity,center_uy,0.6693418025970459 +steady,sr,54,21.6,velocity,lower_ux,0.8925960063934326 +steady,sr,54,21.6,velocity,lower_uy,0.35871708393096924 +steady,sr,55,22.0,velocity,upper_ux,0.9076987504959106 +steady,sr,55,22.0,velocity,upper_uy,0.2981163263320923 +steady,sr,55,22.0,velocity,center_ux,0.5915968418121338 +steady,sr,55,22.0,velocity,center_uy,0.6813530921936035 +steady,sr,55,22.0,velocity,lower_ux,0.9615898728370667 +steady,sr,55,22.0,velocity,lower_uy,0.410768061876297 +steady,sr,56,22.4,velocity,upper_ux,0.7402071356773376 +steady,sr,56,22.4,velocity,upper_uy,0.32400181889533997 +steady,sr,56,22.4,velocity,center_ux,0.6267277002334595 +steady,sr,56,22.4,velocity,center_uy,0.7012122273445129 +steady,sr,56,22.4,velocity,lower_ux,1.0371910333633423 +steady,sr,56,22.4,velocity,lower_uy,0.4495908319950104 +steady,sr,57,22.8,velocity,upper_ux,0.6334227323532104 +steady,sr,57,22.8,velocity,upper_uy,0.27199918031692505 +steady,sr,57,22.8,velocity,center_ux,0.6377053260803223 +steady,sr,57,22.8,velocity,center_uy,0.6879090070724487 +steady,sr,57,22.8,velocity,lower_ux,1.1186065673828125 +steady,sr,57,22.8,velocity,lower_uy,0.47353824973106384 +steady,sr,58,23.2,velocity,upper_ux,0.5858659744262695 +steady,sr,58,23.2,velocity,upper_uy,0.18066911399364471 +steady,sr,58,23.2,velocity,center_ux,0.6310507655143738 +steady,sr,58,23.2,velocity,center_uy,0.5981155633926392 +steady,sr,58,23.2,velocity,lower_ux,1.2028098106384277 +steady,sr,58,23.2,velocity,lower_uy,0.4786374270915985 +steady,sr,59,23.6,velocity,upper_ux,0.584537148475647 +steady,sr,59,23.6,velocity,upper_uy,0.08136484026908875 +steady,sr,59,23.6,velocity,center_ux,0.6103546023368835 +steady,sr,59,23.6,velocity,center_uy,0.42288899421691895 +steady,sr,59,23.6,velocity,lower_ux,1.2820965051651 +steady,sr,59,23.6,velocity,lower_uy,0.4586978554725647 +steady,sr,60,24.0,velocity,upper_ux,0.6236317157745361 +steady,sr,60,24.0,velocity,upper_uy,-0.006541090086102486 +steady,sr,60,24.0,velocity,center_ux,0.5707949995994568 +steady,sr,60,24.0,velocity,center_uy,0.19376665353775024 +steady,sr,60,24.0,velocity,lower_ux,1.342795729637146 +steady,sr,60,24.0,velocity,lower_uy,0.4068938195705414 +steady,sr,61,24.4,velocity,upper_ux,0.684414267539978 +steady,sr,61,24.4,velocity,upper_uy,-0.08210290223360062 +steady,sr,61,24.4,velocity,center_ux,0.5068808197975159 +steady,sr,61,24.4,velocity,center_uy,-0.06836866587400436 +steady,sr,61,24.4,velocity,lower_ux,1.369421124458313 +steady,sr,61,24.4,velocity,lower_uy,0.31994131207466125 +steady,sr,62,24.8,velocity,upper_ux,0.7414872050285339 +steady,sr,62,24.8,velocity,upper_uy,-0.16120700538158417 +steady,sr,62,24.8,velocity,center_ux,0.43554604053497314 +steady,sr,62,24.8,velocity,center_uy,-0.34582751989364624 +steady,sr,62,24.8,velocity,lower_ux,1.3534260988235474 +steady,sr,62,24.8,velocity,lower_uy,0.20165444910526276 +steady,sr,63,25.2,velocity,upper_ux,0.793870210647583 +steady,sr,63,25.2,velocity,upper_uy,-0.24385280907154083 +steady,sr,63,25.2,velocity,center_ux,0.40510275959968567 +steady,sr,63,25.2,velocity,center_uy,-0.5723624229431152 +steady,sr,63,25.2,velocity,lower_ux,1.2949293851852417 +steady,sr,63,25.2,velocity,lower_uy,0.060751184821128845 +steady,sr,64,25.6,velocity,upper_ux,0.851296603679657 +steady,sr,64,25.6,velocity,upper_uy,-0.3176794648170471 +steady,sr,64,25.6,velocity,center_ux,0.4600209891796112 +steady,sr,64,25.6,velocity,center_uy,-0.6630322337150574 +steady,sr,64,25.6,velocity,lower_ux,1.189170479774475 +steady,sr,64,25.6,velocity,lower_uy,-0.09259286522865295 +steady,sr,65,26.0,velocity,upper_ux,0.9159616231918335 +steady,sr,65,26.0,velocity,upper_uy,-0.3783017694950104 +steady,sr,65,26.0,velocity,center_ux,0.5501177310943604 +steady,sr,65,26.0,velocity,center_uy,-0.6711320281028748 +steady,sr,65,26.0,velocity,lower_ux,1.0293315649032593 +steady,sr,65,26.0,velocity,lower_uy,-0.2343229055404663 +steady,sr,66,26.4,velocity,upper_ux,0.9872545599937439 +steady,sr,66,26.4,velocity,upper_uy,-0.4258190095424652 +steady,sr,66,26.4,velocity,center_ux,0.6072165966033936 +steady,sr,66,26.4,velocity,center_uy,-0.6891912817955017 +steady,sr,66,26.4,velocity,lower_ux,0.8445059061050415 +steady,sr,66,26.4,velocity,lower_uy,-0.31753674149513245 +steady,sr,67,26.8,velocity,upper_ux,1.0649099349975586 +steady,sr,67,26.8,velocity,upper_uy,-0.4597538709640503 +steady,sr,67,26.8,velocity,center_ux,0.6328191161155701 +steady,sr,67,26.8,velocity,center_uy,-0.7027676105499268 +steady,sr,67,26.8,velocity,lower_ux,0.6953790187835693 +steady,sr,67,26.8,velocity,lower_uy,-0.31293508410453796 +steady,sr,68,27.2,velocity,upper_ux,1.1477357149124146 +steady,sr,68,27.2,velocity,upper_uy,-0.4777047634124756 +steady,sr,68,27.2,velocity,center_ux,0.6369810700416565 +steady,sr,68,27.2,velocity,center_uy,-0.666970431804657 +steady,sr,68,27.2,velocity,lower_ux,0.6109201908111572 +steady,sr,68,27.2,velocity,lower_uy,-0.24277372658252716 +steady,sr,69,27.6,velocity,upper_ux,1.2314339876174927 +steady,sr,69,27.6,velocity,upper_uy,-0.4748963415622711 +steady,sr,69,27.6,velocity,center_ux,0.6254356503486633 +steady,sr,69,27.6,velocity,center_uy,-0.5456336140632629 +steady,sr,69,27.6,velocity,lower_ux,0.5804033279418945 +steady,sr,69,27.6,velocity,lower_uy,-0.1458316594362259 +steady,sr,70,28.0,velocity,upper_ux,1.3061840534210205 +steady,sr,70,28.0,velocity,upper_uy,-0.4446047246456146 +steady,sr,70,28.0,velocity,center_ux,0.5993357300758362 +steady,sr,70,28.0,velocity,center_uy,-0.3476431965827942 +steady,sr,70,28.0,velocity,lower_ux,0.5941063761711121 +steady,sr,70,28.0,velocity,lower_uy,-0.04890652745962143 +steady,sr,71,28.4,velocity,upper_ux,1.3566981554031372 +steady,sr,71,28.4,velocity,upper_uy,-0.38063937425613403 +steady,sr,71,28.4,velocity,center_ux,0.551278293132782 +steady,sr,71,28.4,velocity,center_uy,-0.10592890530824661 +steady,sr,71,28.4,velocity,lower_ux,0.6439826488494873 +steady,sr,71,28.4,velocity,lower_uy,0.03348846361041069 +steady,sr,72,28.8,velocity,upper_ux,1.3688017129898071 +steady,sr,72,28.8,velocity,upper_uy,-0.2819652259349823 +steady,sr,72,28.8,velocity,center_ux,0.4810663163661957 +steady,sr,72,28.8,velocity,center_uy,0.16519398987293243 +steady,sr,72,28.8,velocity,lower_ux,0.7053849101066589 +steady,sr,72,28.8,velocity,lower_uy,0.10864611715078354 +steady,sr,73,29.2,velocity,upper_ux,1.3377772569656372 +steady,sr,73,29.2,velocity,upper_uy,-0.15473319590091705 +steady,sr,73,29.2,velocity,center_ux,0.4170416593551636 +steady,sr,73,29.2,velocity,center_uy,0.43564674258232117 +steady,sr,73,29.2,velocity,lower_ux,0.759553849697113 +steady,sr,73,29.2,velocity,lower_uy,0.1902548372745514 +steady,sr,74,29.6,velocity,upper_ux,1.263994574546814 +steady,sr,74,29.6,velocity,upper_uy,-0.008102420717477798 +steady,sr,74,29.6,velocity,center_ux,0.4144166111946106 +steady,sr,74,29.6,velocity,center_uy,0.6206886172294617 +steady,sr,74,29.6,velocity,lower_ux,0.8129100799560547 +steady,sr,74,29.6,velocity,lower_uy,0.2709501087665558 +steady,sr,75,30.0,velocity,upper_ux,1.1393414735794067 +steady,sr,75,30.0,velocity,upper_uy,0.14528712630271912 +steady,sr,75,30.0,velocity,center_ux,0.49247610569000244 +steady,sr,75,30.0,velocity,center_uy,0.6681932806968689 +steady,sr,75,30.0,velocity,lower_ux,0.8729854822158813 +steady,sr,75,30.0,velocity,lower_uy,0.3402743935585022 +steady,sr,76,30.4,velocity,upper_ux,0.9649844169616699 +steady,sr,76,30.4,velocity,upper_uy,0.27242058515548706 +steady,sr,76,30.4,velocity,center_ux,0.5745900869369507 +steady,sr,76,30.4,velocity,center_uy,0.6754924654960632 +steady,sr,76,30.4,velocity,lower_ux,0.9401381015777588 +steady,sr,76,30.4,velocity,lower_uy,0.396314799785614 +steady,sr,77,30.8,velocity,upper_ux,0.7859842777252197 +steady,sr,77,30.8,velocity,upper_uy,0.3257462978363037 +steady,sr,77,30.8,velocity,center_ux,0.6190701127052307 +steady,sr,77,30.8,velocity,center_uy,0.6965829730033875 +steady,sr,77,30.8,velocity,lower_ux,1.0136756896972656 +steady,sr,77,30.8,velocity,lower_uy,0.43924450874328613 +steady,sr,78,31.2,velocity,upper_ux,0.6587753891944885 +steady,sr,78,31.2,velocity,upper_uy,0.2938297986984253 +steady,sr,78,31.2,velocity,center_ux,0.6363095045089722 +steady,sr,78,31.2,velocity,center_uy,0.6983344554901123 +steady,sr,78,31.2,velocity,lower_ux,1.0932587385177612 +steady,sr,78,31.2,velocity,lower_uy,0.4679999053478241 +steady,sr,79,31.6,velocity,upper_ux,0.594851016998291 +steady,sr,79,31.6,velocity,upper_uy,0.21047018468379974 +steady,sr,79,31.6,velocity,center_ux,0.6343832612037659 +steady,sr,79,31.6,velocity,center_uy,0.635168731212616 +steady,sr,79,31.6,velocity,lower_ux,1.1770178079605103 +steady,sr,79,31.6,velocity,lower_uy,0.47937238216400146 +steady,sr,80,32.0,velocity,upper_ux,0.5802559852600098 +steady,sr,80,32.0,velocity,upper_uy,0.11107470840215683 +steady,sr,80,32.0,velocity,center_ux,0.6181930303573608 +steady,sr,80,32.0,velocity,center_uy,0.4836133122444153 +steady,sr,80,32.0,velocity,lower_ux,1.259050965309143 +steady,sr,80,32.0,velocity,lower_uy,0.4678287208080292 +steady,sr,81,32.4,velocity,upper_ux,0.6082978844642639 +steady,sr,81,32.4,velocity,upper_uy,0.018437601625919342 +steady,sr,81,32.4,velocity,center_ux,0.5856285691261292 +steady,sr,81,32.4,velocity,center_uy,0.26742178201675415 +steady,sr,81,32.4,velocity,lower_ux,1.3273714780807495 +steady,sr,81,32.4,velocity,lower_uy,0.4263925850391388 +steady,sr,82,32.8,velocity,upper_ux,0.6656674146652222 +steady,sr,82,32.8,velocity,upper_uy,-0.05946355313062668 +steady,sr,82,32.8,velocity,center_ux,0.5287771224975586 +steady,sr,82,32.8,velocity,center_uy,0.014367644675076008 +steady,sr,82,32.8,velocity,lower_ux,1.3658546209335327 +steady,sr,82,32.8,velocity,lower_uy,0.35011014342308044 +steady,sr,83,33.2,velocity,upper_ux,0.7251297235488892 +steady,sr,83,33.2,velocity,upper_uy,-0.13626731932163239 +steady,sr,83,33.2,velocity,center_ux,0.45568346977233887 +steady,sr,83,33.2,velocity,center_uy,-0.2625599205493927 +steady,sr,83,33.2,velocity,lower_ux,1.3628615140914917 +steady,sr,83,33.2,velocity,lower_uy,0.24049563705921173 +steady,sr,84,33.6,velocity,upper_ux,0.7775428295135498 +steady,sr,84,33.6,velocity,upper_uy,-0.21918106079101562 +steady,sr,84,33.6,velocity,center_ux,0.40613484382629395 +steady,sr,84,33.6,velocity,center_uy,-0.5151214003562927 +steady,sr,84,33.6,velocity,lower_ux,1.317050576210022 +steady,sr,84,33.6,velocity,lower_uy,0.10546164214611053 +steady,sr,85,34.0,velocity,upper_ux,0.8328404426574707 +steady,sr,85,34.0,velocity,upper_uy,-0.296576589345932 +steady,sr,85,34.0,velocity,center_ux,0.43489110469818115 +steady,sr,85,34.0,velocity,center_uy,-0.6501968502998352 +steady,sr,85,34.0,velocity,lower_ux,1.2268719673156738 +steady,sr,85,34.0,velocity,lower_uy,-0.045568063855171204 +steady,sr,86,34.4,velocity,upper_ux,0.8955565094947815 +steady,sr,86,34.4,velocity,upper_uy,-0.3612557649612427 +steady,sr,86,34.4,velocity,center_ux,0.5247567296028137 +steady,sr,86,34.4,velocity,center_uy,-0.6694538593292236 +steady,sr,86,34.4,velocity,lower_ux,1.0830134153366089 +steady,sr,86,34.4,velocity,lower_uy,-0.1950286477804184 +steady,sr,87,34.8,velocity,upper_ux,0.965104877948761 +steady,sr,87,34.8,velocity,upper_uy,-0.4127589166164398 +steady,sr,87,34.8,velocity,center_ux,0.5940794348716736 +steady,sr,87,34.8,velocity,center_uy,-0.6822923421859741 +steady,sr,87,34.8,velocity,lower_ux,0.8999258279800415 +steady,sr,87,34.8,velocity,lower_uy,-0.30120715498924255 +steady,sr,88,35.2,velocity,upper_ux,1.0408275127410889 +steady,sr,88,35.2,velocity,upper_uy,-0.45097681879997253 +steady,sr,88,35.2,velocity,center_ux,0.6277061700820923 +steady,sr,88,35.2,velocity,center_uy,-0.7017018795013428 +steady,sr,88,35.2,velocity,lower_ux,0.7342401146888733 +steady,sr,88,35.2,velocity,lower_uy,-0.32314571738243103 +steady,sr,89,35.6,velocity,upper_ux,1.1221284866333008 +steady,sr,89,35.6,velocity,upper_uy,-0.47415927052497864 +steady,sr,89,35.6,velocity,center_ux,0.6374590992927551 +steady,sr,89,35.6,velocity,center_uy,-0.6858763098716736 +steady,sr,89,35.6,velocity,lower_ux,0.6300306916236877 +steady,sr,89,35.6,velocity,lower_uy,-0.26855725049972534 +steady,sr,90,36.0,velocity,upper_ux,1.2061442136764526 +steady,sr,90,36.0,velocity,upper_uy,-0.47827738523483276 +steady,sr,90,36.0,velocity,center_ux,0.6301254630088806 +steady,sr,90,36.0,velocity,center_uy,-0.5921005010604858 +steady,sr,90,36.0,velocity,lower_ux,0.5845970511436462 +steady,sr,90,36.0,velocity,lower_uy,-0.17634880542755127 +steady,sr,91,36.4,velocity,upper_ux,1.2850730419158936 +steady,sr,91,36.4,velocity,upper_uy,-0.4571243226528168 +steady,sr,91,36.4,velocity,center_ux,0.6090809106826782 +steady,sr,91,36.4,velocity,center_uy,-0.4137798249721527 +steady,sr,91,36.4,velocity,lower_ux,0.5853437185287476 +steady,sr,91,36.4,velocity,lower_uy,-0.0772341638803482 +steady,sr,92,36.8,velocity,upper_ux,1.3449456691741943 +steady,sr,92,36.8,velocity,upper_uy,-0.4039041996002197 +steady,sr,92,36.8,velocity,center_ux,0.5688544511795044 +steady,sr,92,36.8,velocity,center_uy,-0.18298335373401642 +steady,sr,92,36.8,velocity,lower_ux,0.6262691020965576 +steady,sr,92,36.8,velocity,lower_uy,0.00998658500611782 +steady,sr,93,37.2,velocity,upper_ux,1.3698827028274536 +steady,sr,93,37.2,velocity,upper_uy,-0.3154728412628174 +steady,sr,93,37.2,velocity,center_ux,0.5039880275726318 +steady,sr,93,37.2,velocity,center_uy,0.08047480881214142 +steady,sr,93,37.2,velocity,lower_ux,0.6873782277107239 +steady,sr,93,37.2,velocity,lower_uy,0.08539897948503494 +steady,sr,94,37.6,velocity,upper_ux,1.3517032861709595 +steady,sr,94,37.6,velocity,upper_uy,-0.19593748450279236 +steady,sr,94,37.6,velocity,center_ux,0.43288981914520264 +steady,sr,94,37.6,velocity,center_uy,0.3576018214225769 +steady,sr,94,37.6,velocity,lower_ux,0.7437855005264282 +steady,sr,94,37.6,velocity,lower_uy,0.16486915946006775 +steady,sr,95,38.0,velocity,upper_ux,1.2910655736923218 +steady,sr,95,38.0,velocity,upper_uy,-0.05419962480664253 +steady,sr,95,38.0,velocity,center_ux,0.4053877592086792 +steady,sr,95,38.0,velocity,center_uy,0.5794978737831116 +steady,sr,95,38.0,velocity,lower_ux,0.7959648370742798 +steady,sr,95,38.0,velocity,lower_uy,0.2473464012145996 +steady,sr,96,38.4,velocity,upper_ux,1.1830344200134277 +steady,sr,96,38.4,velocity,upper_uy,0.09932728856801987 +steady,sr,96,38.4,velocity,center_ux,0.46373042464256287 +steady,sr,96,38.4,velocity,center_uy,0.6640908718109131 +steady,sr,96,38.4,velocity,lower_ux,0.8537115454673767 +steady,sr,96,38.4,velocity,lower_uy,0.3206033408641815 +steady,sr,97,38.8,velocity,upper_ux,1.0214438438415527 +steady,sr,97,38.8,velocity,upper_uy,0.239589124917984 +steady,sr,97,38.8,velocity,center_ux,0.5535285472869873 +steady,sr,97,38.8,velocity,center_uy,0.6714974045753479 +steady,sr,97,38.8,velocity,lower_ux,0.9189751148223877 +steady,sr,97,38.8,velocity,lower_uy,0.38064953684806824 +steady,sr,98,39.2,velocity,upper_ux,0.8371279835700989 +steady,sr,98,39.2,velocity,upper_uy,0.3192481994628906 +steady,sr,98,39.2,velocity,center_ux,0.6091954112052917 +steady,sr,98,39.2,velocity,center_uy,0.6901668310165405 +steady,sr,98,39.2,velocity,lower_ux,0.9908438920974731 +steady,sr,98,39.2,velocity,lower_uy,0.4276147782802582 +steady,sr,99,39.6,velocity,upper_ux,0.6904559135437012 +steady,sr,99,39.6,velocity,upper_uy,0.31097447872161865 +steady,sr,99,39.6,velocity,center_ux,0.6334992051124573 +steady,sr,99,39.6,velocity,center_uy,0.7026107311248779 +steady,sr,99,39.6,velocity,lower_ux,1.068666934967041 +steady,sr,99,39.6,velocity,lower_uy,0.4609130024909973 +steady,sr,100,40.0,velocity,upper_ux,0.6084092855453491 +steady,sr,100,40.0,velocity,upper_uy,0.2388673722743988 +steady,sr,100,40.0,velocity,center_ux,0.6365249156951904 +steady,sr,100,40.0,velocity,center_uy,0.6636130809783936 +steady,sr,100,40.0,velocity,lower_ux,1.1513527631759644 +steady,sr,100,40.0,velocity,lower_uy,0.4780285358428955 +steady,sr,101,40.4,velocity,upper_ux,0.5798037052154541 +steady,sr,101,40.4,velocity,upper_uy,0.14146453142166138 +steady,sr,101,40.4,velocity,center_ux,0.6243035197257996 +steady,sr,101,40.4,velocity,center_uy,0.5383205413818359 +steady,sr,101,40.4,velocity,lower_ux,1.2347078323364258 +steady,sr,101,40.4,velocity,lower_uy,0.47412654757499695 +steady,sr,102,40.8,velocity,upper_ux,0.5954767465591431 +steady,sr,102,40.8,velocity,upper_uy,0.044996265321969986 +steady,sr,102,40.8,velocity,center_ux,0.5976899266242981 +steady,sr,102,40.8,velocity,center_uy,0.33782660961151123 +steady,sr,102,40.8,velocity,lower_ux,1.3088291883468628 +steady,sr,102,40.8,velocity,lower_uy,0.4425051212310791 +steady,sr,103,41.2,velocity,upper_ux,0.6468104720115662 +steady,sr,103,41.2,velocity,upper_uy,-0.03677280619740486 +steady,sr,103,41.2,velocity,center_ux,0.5488802194595337 +steady,sr,103,41.2,velocity,center_uy,0.09463796764612198 +steady,sr,103,41.2,velocity,lower_ux,1.3582518100738525 +steady,sr,103,41.2,velocity,lower_uy,0.37708157300949097 +steady,sr,104,41.6,velocity,upper_ux,0.7082025408744812 +steady,sr,104,41.6,velocity,upper_uy,-0.11207028478384018 +steady,sr,104,41.6,velocity,center_ux,0.4781305193901062 +steady,sr,104,41.6,velocity,center_uy,-0.17751573026180267 +steady,sr,104,41.6,velocity,lower_ux,1.3685975074768066 +steady,sr,104,41.6,velocity,lower_uy,0.27701422572135925 +steady,sr,105,42.0,velocity,upper_ux,0.7618483901023865 +steady,sr,105,42.0,velocity,upper_uy,-0.19394703209400177 +steady,sr,105,42.0,velocity,center_ux,0.4152507483959198 +steady,sr,105,42.0,velocity,center_uy,-0.446402907371521 +steady,sr,105,42.0,velocity,lower_ux,1.3354463577270508 +steady,sr,105,42.0,velocity,lower_uy,0.1486872434616089 +steady,sr,106,42.4,velocity,upper_ux,0.8151463866233826 +steady,sr,106,42.4,velocity,upper_uy,-0.27427980303764343 +steady,sr,106,42.4,velocity,center_ux,0.4162423312664032 +steady,sr,106,42.4,velocity,center_uy,-0.6254258155822754 +steady,sr,106,42.4,velocity,lower_ux,1.259397268295288 +steady,sr,106,42.4,velocity,lower_uy,0.0013744138414040208 +steady,sr,107,42.8,velocity,upper_ux,0.8755087852478027 +steady,sr,107,42.8,velocity,upper_uy,-0.34300315380096436 +steady,sr,107,42.8,velocity,center_ux,0.49643000960350037 +steady,sr,107,42.8,velocity,center_uy,-0.6684296131134033 +steady,sr,107,42.8,velocity,lower_ux,1.1323087215423584 +steady,sr,107,42.8,velocity,lower_uy,-0.15177595615386963 +steady,sr,108,43.2,velocity,upper_ux,0.9432105422019958 +steady,sr,108,43.2,velocity,upper_uy,-0.3984730839729309 +steady,sr,108,43.2,velocity,center_ux,0.5773497223854065 +steady,sr,108,43.2,velocity,center_uy,-0.6762084364891052 +steady,sr,108,43.2,velocity,lower_ux,0.9567657709121704 +steady,sr,108,43.2,velocity,lower_uy,-0.27663886547088623 +steady,sr,109,43.6,velocity,upper_ux,1.017334222793579 +steady,sr,109,43.6,velocity,upper_uy,-0.4408385455608368 +steady,sr,109,43.6,velocity,center_ux,0.6206236481666565 +steady,sr,109,43.6,velocity,center_uy,-0.6973733305931091 +steady,sr,109,43.6,velocity,lower_ux,0.7793086767196655 +steady,sr,109,43.6,velocity,lower_uy,-0.32605883479118347 +steady,sr,110,44.0,velocity,upper_ux,1.0971201658248901 +steady,sr,110,44.0,velocity,upper_uy,-0.4689147174358368 +steady,sr,110,44.0,velocity,center_ux,0.6367259621620178 +steady,sr,110,44.0,velocity,center_uy,-0.6972696781158447 +steady,sr,110,44.0,velocity,lower_ux,0.6548853516578674 +steady,sr,110,44.0,velocity,lower_uy,-0.2909816801548004 +steady,sr,111,44.4,velocity,upper_ux,1.1806961297988892 +steady,sr,111,44.4,velocity,upper_uy,-0.4793665409088135 +steady,sr,111,44.4,velocity,center_ux,0.6337553262710571 +steady,sr,111,44.4,velocity,center_uy,-0.6303746700286865 +steady,sr,111,44.4,velocity,lower_ux,0.5931360721588135 +steady,sr,111,44.4,velocity,lower_uy,-0.20625576376914978 +steady,sr,112,44.8,velocity,upper_ux,1.262202501296997 +steady,sr,112,44.8,velocity,upper_uy,-0.466609388589859 +steady,sr,112,44.8,velocity,center_ux,0.6168436408042908 +steady,sr,112,44.8,velocity,center_uy,-0.47518959641456604 +steady,sr,112,44.8,velocity,lower_ux,0.5803278088569641 +steady,sr,112,44.8,velocity,lower_uy,-0.10675913095474243 +steady,sr,113,45.2,velocity,upper_ux,1.329603910446167 +steady,sr,113,45.2,velocity,upper_uy,-0.42373764514923096 +steady,sr,113,45.2,velocity,center_ux,0.5835610032081604 +steady,sr,113,45.2,velocity,center_uy,-0.25701138377189636 +steady,sr,113,45.2,velocity,lower_ux,0.6101668477058411 +steady,sr,113,45.2,velocity,lower_uy,-0.014770252630114555 +steady,sr,114,45.6,velocity,upper_ux,1.3667570352554321 +steady,sr,114,45.6,velocity,upper_uy,-0.34598979353904724 +steady,sr,114,45.6,velocity,center_ux,0.5259784460067749 +steady,sr,114,45.6,velocity,center_uy,-0.0025974013842642307 +steady,sr,114,45.6,velocity,lower_ux,0.6685237884521484 +steady,sr,114,45.6,velocity,lower_uy,0.06270292401313782 +steady,sr,115,46.0,velocity,upper_ux,1.3619979619979858 +steady,sr,115,46.0,velocity,upper_uy,-0.23510083556175232 +steady,sr,115,46.0,velocity,center_ux,0.45294511318206787 +steady,sr,115,46.0,velocity,center_uy,0.2747904062271118 +steady,sr,115,46.0,velocity,lower_ux,0.7277932167053223 +steady,sr,115,46.0,velocity,lower_uy,0.13983674347400665 +steady,sr,116,46.4,velocity,upper_ux,1.3141038417816162 +steady,sr,116,46.4,velocity,upper_uy,-0.09912068396806717 +steady,sr,116,46.4,velocity,center_ux,0.40555453300476074 +steady,sr,116,46.4,velocity,center_uy,0.5242355465888977 +steady,sr,116,46.4,velocity,lower_ux,0.7799094915390015 +steady,sr,116,46.4,velocity,lower_uy,0.222817063331604 +steady,sr,117,46.8,velocity,upper_ux,1.2214714288711548 +steady,sr,117,46.8,velocity,upper_uy,0.05238357558846474 +steady,sr,117,46.8,velocity,center_ux,0.4380379021167755 +steady,sr,117,46.8,velocity,center_uy,0.652716875076294 +steady,sr,117,46.8,velocity,lower_ux,0.8352383971214294 +steady,sr,117,46.8,velocity,lower_uy,0.29971614480018616 +steady,sr,118,47.2,velocity,upper_ux,1.075199842453003 +steady,sr,118,47.2,velocity,upper_uy,0.2010064572095871 +steady,sr,118,47.2,velocity,center_ux,0.5284395217895508 +steady,sr,118,47.2,velocity,center_uy,0.6695929169654846 +steady,sr,118,47.2,velocity,lower_ux,0.8981949687004089 +steady,sr,118,47.2,velocity,lower_uy,0.3637903928756714 +steady,sr,119,47.6,velocity,upper_ux,0.8917568325996399 +steady,sr,119,47.6,velocity,upper_uy,0.3041350543498993 +steady,sr,119,47.6,velocity,center_ux,0.5962386727333069 +steady,sr,119,47.6,velocity,center_uy,0.6832320690155029 +steady,sr,119,47.6,velocity,lower_ux,0.9682398438453674 +steady,sr,119,47.6,velocity,lower_uy,0.4147235155105591 +steady,sr,120,48.0,velocity,upper_ux,0.7284783720970154 +steady,sr,120,48.0,velocity,upper_uy,0.32215359807014465 +steady,sr,120,48.0,velocity,center_ux,0.6288846135139465 +steady,sr,120,48.0,velocity,center_uy,0.7020670175552368 +steady,sr,120,48.0,velocity,lower_ux,1.0445466041564941 +steady,sr,120,48.0,velocity,lower_uy,0.4523560404777527 +steady,sr,121,48.4,velocity,upper_ux,0.6271008849143982 +steady,sr,121,48.4,velocity,upper_uy,0.26503464579582214 +steady,sr,121,48.4,velocity,center_ux,0.6376407742500305 +steady,sr,121,48.4,velocity,center_uy,0.6836481690406799 +steady,sr,121,48.4,velocity,lower_ux,1.1260660886764526 +steady,sr,121,48.4,velocity,lower_uy,0.474803626537323 +steady,sr,122,48.8,velocity,upper_ux,0.5836271643638611 +steady,sr,122,48.8,velocity,upper_uy,0.17195618152618408 +steady,sr,122,48.8,velocity,center_ux,0.6293475031852722 +steady,sr,122,48.8,velocity,center_uy,0.5858753323554993 +steady,sr,122,48.8,velocity,lower_ux,1.2098302841186523 +steady,sr,122,48.8,velocity,lower_uy,0.47790759801864624 +steady,sr,123,49.2,velocity,upper_ux,0.5860913991928101 +steady,sr,123,49.2,velocity,upper_uy,0.07306058704853058 +steady,sr,123,49.2,velocity,center_ux,0.607475996017456 +steady,sr,123,49.2,velocity,center_uy,0.4044622480869293 +steady,sr,123,49.2,velocity,lower_ux,1.288021206855774 +steady,sr,123,49.2,velocity,lower_uy,0.45541831851005554 +steady,sr,124,49.6,velocity,upper_ux,0.6285258531570435 +steady,sr,124,49.6,velocity,upper_uy,-0.013436599634587765 +steady,sr,124,49.6,velocity,center_ux,0.5663363933563232 +steady,sr,124,49.6,velocity,center_uy,0.17203575372695923 +steady,sr,124,49.6,velocity,lower_ux,1.346680760383606 +steady,sr,124,49.6,velocity,lower_uy,0.40067997574806213 +steady,sr,125,50.0,velocity,upper_ux,0.6901358962059021 +steady,sr,125,50.0,velocity,upper_uy,-0.08870414644479752 +steady,sr,125,50.0,velocity,center_ux,0.5009145140647888 +steady,sr,125,50.0,velocity,center_uy,-0.0926220491528511 +steady,sr,125,50.0,velocity,lower_ux,1.3701013326644897 +steady,sr,125,50.0,velocity,lower_uy,0.31081968545913696 +steady,sr,126,50.4,velocity,upper_ux,0.7463465929031372 +steady,sr,126,50.4,velocity,upper_uy,-0.16853904724121094 +steady,sr,126,50.4,velocity,center_ux,0.43064171075820923 +steady,sr,126,50.4,velocity,center_uy,-0.3692936599254608 +steady,sr,126,50.4,velocity,lower_ux,1.3501936197280884 +steady,sr,126,50.4,velocity,lower_uy,0.1901474893093109 +steady,sr,127,50.8,velocity,upper_ux,0.7984572052955627 +steady,sr,127,50.8,velocity,upper_uy,-0.25085246562957764 +steady,sr,127,50.8,velocity,center_ux,0.40627121925354004 +steady,sr,127,50.8,velocity,center_uy,-0.5864168405532837 +steady,sr,127,50.8,velocity,lower_ux,1.2874585390090942 +steady,sr,127,50.8,velocity,lower_uy,0.047609876841306686 +steady,sr,128,51.2,velocity,upper_ux,0.8562785387039185 +steady,sr,128,51.2,velocity,upper_uy,-0.3235423266887665 +steady,sr,128,51.2,velocity,center_ux,0.4676802158355713 +steady,sr,128,51.2,velocity,center_uy,-0.6650367975234985 +steady,sr,128,51.2,velocity,lower_ux,1.1767877340316772 +steady,sr,128,51.2,velocity,lower_uy,-0.10607930272817612 +steady,sr,129,51.6,velocity,upper_ux,0.9217323064804077 +steady,sr,129,51.6,velocity,upper_uy,-0.3829886317253113 +steady,sr,129,51.6,velocity,center_ux,0.5566413402557373 +steady,sr,129,51.6,velocity,center_uy,-0.6719327569007874 +steady,sr,129,51.6,velocity,lower_ux,1.013087511062622 +steady,sr,129,51.6,velocity,lower_uy,-0.24474625289440155 +steady,sr,130,52.0,velocity,upper_ux,0.9940447807312012 +steady,sr,130,52.0,velocity,upper_uy,-0.42937996983528137 +steady,sr,130,52.0,velocity,center_ux,0.6108345985412598 +steady,sr,130,52.0,velocity,center_uy,-0.6911249756813049 +steady,sr,130,52.0,velocity,lower_ux,0.8293977975845337 +steady,sr,130,52.0,velocity,lower_uy,-0.3207496404647827 +steady,sr,131,52.4,velocity,upper_ux,1.0724350214004517 +steady,sr,131,52.4,velocity,upper_uy,-0.46205979585647583 +steady,sr,131,52.4,velocity,center_ux,0.6343283653259277 +steady,sr,131,52.4,velocity,center_uy,-0.7022976875305176 +steady,sr,131,52.4,velocity,lower_ux,0.6857017278671265 +steady,sr,131,52.4,velocity,lower_uy,-0.3088650107383728 +steady,sr,132,52.8,velocity,upper_ux,1.1553336381912231 +steady,sr,132,52.8,velocity,upper_uy,-0.4783743619918823 +steady,sr,132,52.8,velocity,center_ux,0.6364930868148804 +steady,sr,132,52.8,velocity,center_uy,-0.6600313782691956 +steady,sr,132,52.8,velocity,lower_ux,0.6063401699066162 +steady,sr,132,52.8,velocity,lower_uy,-0.23487159609794617 +steady,sr,133,53.2,velocity,upper_ux,1.2383372783660889 +steady,sr,133,53.2,velocity,upper_uy,-0.47335442900657654 +steady,sr,133,53.2,velocity,center_ux,0.6233733296394348 +steady,sr,133,53.2,velocity,center_uy,-0.5307945013046265 +steady,sr,133,53.2,velocity,lower_ux,0.5795576572418213 +steady,sr,133,53.2,velocity,lower_uy,-0.13701999187469482 +steady,sr,134,53.6,velocity,upper_ux,1.3114835023880005 +steady,sr,134,53.6,velocity,upper_uy,-0.4402833580970764 +steady,sr,134,53.6,velocity,center_ux,0.5957779884338379 +steady,sr,134,53.6,velocity,center_uy,-0.327804833650589 +steady,sr,134,53.6,velocity,lower_ux,0.5968732237815857 +steady,sr,134,53.6,velocity,lower_uy,-0.04104071483016014 +steady,sr,135,54.0,velocity,upper_ux,1.359413504600525 +steady,sr,135,54.0,velocity,upper_uy,-0.37329405546188354 +steady,sr,135,54.0,velocity,center_ux,0.5459302663803101 +steady,sr,135,54.0,velocity,center_uy,-0.08318527042865753 +steady,sr,135,54.0,velocity,lower_ux,0.6492976546287537 +steady,sr,135,54.0,velocity,lower_uy,0.04007905349135399 +steady,sr,136,54.4,velocity,upper_ux,1.3681198358535767 +steady,sr,136,54.4,velocity,upper_uy,-0.2718730866909027 +steady,sr,136,54.4,velocity,center_ux,0.47497522830963135 +steady,sr,136,54.4,velocity,center_uy,0.18983574211597443 +steady,sr,136,54.4,velocity,lower_ux,0.7107881307601929 +steady,sr,136,54.4,velocity,lower_uy,0.11551052331924438 +steady,sr,137,54.8,velocity,upper_ux,1.3332940340042114 +steady,sr,137,54.8,velocity,upper_uy,-0.14255227148532867 +steady,sr,137,54.8,velocity,center_ux,0.41382887959480286 +steady,sr,137,54.8,velocity,center_uy,0.45698633790016174 +steady,sr,137,54.8,velocity,lower_ux,0.7643758654594421 +steady,sr,137,54.8,velocity,lower_uy,0.19763171672821045 +steady,sr,138,55.2,velocity,upper_ux,1.255062222480774 +steady,sr,138,55.2,velocity,upper_uy,0.005397312808781862 +steady,sr,138,55.2,velocity,center_ux,0.4186241626739502 +steady,sr,138,55.2,velocity,center_uy,0.6299110054969788 +steady,sr,138,55.2,velocity,lower_ux,0.8177859783172607 +steady,sr,138,55.2,velocity,lower_uy,0.2776082754135132 +steady,sr,139,55.6,velocity,upper_ux,1.1252416372299194 +steady,sr,139,55.6,velocity,upper_uy,0.15824362635612488 +steady,sr,139,55.6,velocity,center_ux,0.5005587339401245 +steady,sr,139,55.6,velocity,center_uy,0.6686480045318604 +steady,sr,139,55.6,velocity,lower_ux,0.87823885679245 +steady,sr,139,55.6,velocity,lower_uy,0.3457370102405548 +steady,sr,140,56.0,velocity,upper_ux,0.9482052326202393 +steady,sr,140,56.0,velocity,upper_uy,0.28068095445632935 +steady,sr,140,56.0,velocity,center_ux,0.579821765422821 +steady,sr,140,56.0,velocity,center_uy,0.6769983172416687 +steady,sr,140,56.0,velocity,lower_ux,0.9460868239402771 +steady,sr,140,56.0,velocity,lower_uy,0.40061429142951965 +steady,sr,141,56.4,velocity,upper_ux,0.772337019443512 +steady,sr,141,56.4,velocity,upper_uy,0.3261355459690094 +steady,sr,141,56.4,velocity,center_ux,0.6218147277832031 +steady,sr,141,56.4,velocity,center_uy,0.6981195211410522 +steady,sr,141,56.4,velocity,lower_ux,1.0206009149551392 +steady,sr,141,56.4,velocity,lower_uy,0.442391037940979 +steady,sr,142,56.8,velocity,upper_ux,0.6511214375495911 +steady,sr,142,56.8,velocity,upper_uy,0.2879900634288788 +steady,sr,142,56.8,velocity,center_ux,0.6372296810150146 +steady,sr,142,56.8,velocity,center_uy,0.6960161328315735 +steady,sr,142,56.8,velocity,lower_ux,1.1009174585342407 +steady,sr,142,56.8,velocity,lower_uy,0.4698055684566498 +steady,sr,143,57.2,velocity,upper_ux,0.5918391942977905 +steady,sr,143,57.2,velocity,upper_uy,0.20195893943309784 +steady,sr,143,57.2,velocity,center_ux,0.6335330605506897 +steady,sr,143,57.2,velocity,center_uy,0.6253489851951599 +steady,sr,143,57.2,velocity,lower_ux,1.1846684217453003 +steady,sr,143,57.2,velocity,lower_uy,0.4793805181980133 +steady,sr,144,57.6,velocity,upper_ux,0.5808004140853882 +steady,sr,144,57.6,velocity,upper_uy,0.10238010436296463 +steady,sr,144,57.6,velocity,center_ux,0.6157381534576416 +steady,sr,144,57.6,velocity,center_uy,0.4665801227092743 +steady,sr,144,57.6,velocity,lower_ux,1.265688419342041 +steady,sr,144,57.6,velocity,lower_uy,0.4653988778591156 +steady,sr,145,58.0,velocity,upper_ux,0.6121332049369812 +steady,sr,145,58.0,velocity,upper_uy,0.011066616512835026 +steady,sr,145,58.0,velocity,center_ux,0.5812982320785522 +steady,sr,145,58.0,velocity,center_uy,0.24641869962215424 +steady,sr,145,58.0,velocity,lower_ux,1.3318617343902588 +steady,sr,145,58.0,velocity,lower_uy,0.4209827780723572 +steady,sr,146,58.4,velocity,upper_ux,0.6710736751556396 +steady,sr,146,58.4,velocity,upper_uy,-0.06597535312175751 +steady,sr,146,58.4,velocity,center_ux,0.5226789712905884 +steady,sr,146,58.4,velocity,center_uy,-0.009305044077336788 +steady,sr,146,58.4,velocity,lower_ux,1.3672845363616943 +steady,sr,146,58.4,velocity,lower_uy,0.34166496992111206 +steady,sr,147,58.8,velocity,upper_ux,0.730205237865448 +steady,sr,147,58.8,velocity,upper_uy,-0.14341700077056885 +steady,sr,147,58.8,velocity,center_ux,0.4499652087688446 +steady,sr,147,58.8,velocity,center_uy,-0.28695085644721985 +steady,sr,147,58.8,velocity,lower_ux,1.3608287572860718 +steady,sr,147,58.8,velocity,lower_uy,0.22953301668167114 +steady,sr,148,59.2,velocity,upper_ux,0.7824674248695374 +steady,sr,148,59.2,velocity,upper_uy,-0.22642795741558075 +steady,sr,148,59.2,velocity,center_ux,0.4052934944629669 +steady,sr,148,59.2,velocity,center_uy,-0.5330780148506165 +steady,sr,148,59.2,velocity,lower_ux,1.3112893104553223 +steady,sr,148,59.2,velocity,lower_uy,0.09269673377275467 +steady,sr,149,59.6,velocity,upper_ux,0.8380289673805237 +steady,sr,149,59.6,velocity,upper_uy,-0.3028418719768524 +steady,sr,149,59.6,velocity,center_ux,0.44163668155670166 +steady,sr,149,59.6,velocity,center_uy,-0.6550173759460449 +steady,sr,149,59.6,velocity,lower_ux,1.2163312435150146 +steady,sr,149,59.6,velocity,lower_uy,-0.05922332778573036 +steady,sr,150,60.0,velocity,upper_ux,0.9010804891586304 +steady,sr,150,60.0,velocity,upper_uy,-0.3663206398487091 +steady,sr,150,60.0,velocity,center_ux,0.5322314500808716 +steady,sr,150,60.0,velocity,center_uy,-0.6697823405265808 +steady,sr,150,60.0,velocity,lower_ux,1.0674464702606201 +steady,sr,150,60.0,velocity,lower_uy,-0.20690372586250305 +steady,sr,151,60.4,velocity,upper_ux,0.9712368845939636 +steady,sr,151,60.4,velocity,upper_uy,-0.41666245460510254 +steady,sr,151,60.4,velocity,center_ux,0.5981223583221436 +steady,sr,151,60.4,velocity,center_uy,-0.6842283606529236 +steady,sr,151,60.4,velocity,lower_ux,0.8833921551704407 +steady,sr,151,60.4,velocity,lower_uy,-0.30683472752571106 +steady,sr,152,60.8,velocity,upper_ux,1.0478802919387817 +steady,sr,152,60.8,velocity,upper_uy,-0.4536829888820648 +steady,sr,152,60.8,velocity,center_ux,0.6296687722206116 +steady,sr,152,60.8,velocity,center_uy,-0.702360987663269 +steady,sr,152,60.8,velocity,lower_ux,0.7224767208099365 +steady,sr,152,60.8,velocity,lower_uy,-0.3209325671195984 +steady,sr,153,61.2,velocity,upper_ux,1.129873275756836 +steady,sr,153,61.2,velocity,upper_uy,-0.4754137694835663 +steady,sr,153,61.2,velocity,center_ux,0.6378360986709595 +steady,sr,153,61.2,velocity,center_uy,-0.6812108755111694 +steady,sr,153,61.2,velocity,lower_ux,0.624247133731842 +steady,sr,153,61.2,velocity,lower_uy,-0.2613988518714905 +steady,sr,154,61.6,velocity,upper_ux,1.2137380838394165 +steady,sr,154,61.6,velocity,upper_uy,-0.47755497694015503 +steady,sr,154,61.6,velocity,center_ux,0.6289355754852295 +steady,sr,154,61.6,velocity,center_uy,-0.57944256067276 +steady,sr,154,61.6,velocity,lower_ux,0.5830475091934204 +steady,sr,154,61.6,velocity,lower_uy,-0.16751165688037872 +steady,sr,155,62.0,velocity,upper_ux,1.2912688255310059 +steady,sr,155,62.0,velocity,upper_uy,-0.4537365436553955 +steady,sr,155,62.0,velocity,center_ux,0.6061404347419739 +steady,sr,155,62.0,velocity,center_uy,-0.39500418305397034 +steady,sr,155,62.0,velocity,lower_ux,0.5872670412063599 +steady,sr,155,62.0,velocity,lower_uy,-0.06885694712400436 +steady,sr,156,62.4,velocity,upper_ux,1.3484491109848022 +steady,sr,156,62.4,velocity,upper_uy,-0.39738714694976807 +steady,sr,156,62.4,velocity,center_ux,0.5636958479881287 +steady,sr,156,62.4,velocity,center_uy,-0.1609359234571457 +steady,sr,156,62.4,velocity,lower_ux,0.630923867225647 +steady,sr,156,62.4,velocity,lower_uy,0.016909712925553322 +steady,sr,157,62.8,velocity,upper_ux,1.369956612586975 +steady,sr,157,62.8,velocity,upper_uy,-0.3059982359409332 +steady,sr,157,62.8,velocity,center_ux,0.49740269780158997 +steady,sr,157,62.8,velocity,center_uy,0.10486061125993729 +steady,sr,157,62.8,velocity,lower_ux,0.6926127672195435 +steady,sr,157,62.8,velocity,lower_uy,0.09204705059528351 +steady,sr,158,63.2,velocity,upper_ux,1.3483456373214722 +steady,sr,158,63.2,velocity,upper_uy,-0.1842118203639984 +steady,sr,158,63.2,velocity,center_ux,0.42814505100250244 +steady,sr,158,63.2,velocity,center_uy,0.38083934783935547 +steady,sr,158,63.2,velocity,lower_ux,0.7486340999603271 +steady,sr,158,63.2,velocity,lower_uy,0.1722051203250885 +steady,sr,159,63.6,velocity,upper_ux,1.2839311361312866 +steady,sr,159,63.6,velocity,upper_uy,-0.04095439985394478 +steady,sr,159,63.6,velocity,center_ux,0.4074065685272217 +steady,sr,159,63.6,velocity,center_uy,0.5930009484291077 +steady,sr,159,63.6,velocity,lower_ux,0.8010842204093933 +steady,sr,159,63.6,velocity,lower_uy,0.25431859493255615 +steady,sr,160,64.0,velocity,upper_ux,1.1707974672317505 +steady,sr,160,64.0,velocity,upper_uy,0.11282431334257126 +steady,sr,160,64.0,velocity,center_ux,0.4719512164592743 +steady,sr,160,64.0,velocity,center_uy,0.6658524870872498 +steady,sr,160,64.0,velocity,lower_ux,0.8592073321342468 +steady,sr,160,64.0,velocity,lower_uy,0.3264578878879547 +steady,sr,161,64.4,velocity,upper_ux,1.0048900842666626 +steady,sr,161,64.4,velocity,upper_uy,0.24977345764636993 +steady,sr,161,64.4,velocity,center_ux,0.559834361076355 +steady,sr,161,64.4,velocity,center_uy,0.6724423170089722 +steady,sr,161,64.4,velocity,lower_ux,0.9247637987136841 +steady,sr,161,64.4,velocity,lower_uy,0.38531598448753357 +steady,sr,162,64.8,velocity,upper_ux,0.8216010332107544 +steady,sr,162,64.8,velocity,upper_uy,0.3220130503177643 +steady,sr,162,64.8,velocity,center_ux,0.612220048904419 +steady,sr,162,64.8,velocity,center_uy,0.6921144127845764 +steady,sr,162,64.8,velocity,lower_ux,0.9971604943275452 +steady,sr,162,64.8,velocity,lower_uy,0.43110984563827515 +steady,sr,163,65.2,velocity,upper_ux,0.6807340383529663 +steady,sr,163,65.2,velocity,upper_uy,0.30656975507736206 +steady,sr,163,65.2,velocity,center_ux,0.6347426176071167 +steady,sr,163,65.2,velocity,center_uy,0.7018845081329346 +steady,sr,163,65.2,velocity,lower_ux,1.075826644897461 +steady,sr,163,65.2,velocity,lower_uy,0.46314266324043274 +steady,sr,164,65.6,velocity,upper_ux,0.6042906641960144 +steady,sr,164,65.6,velocity,upper_uy,0.23080691695213318 +steady,sr,164,65.6,velocity,center_ux,0.6364099979400635 +steady,sr,164,65.6,velocity,center_uy,0.6562375426292419 +steady,sr,164,65.6,velocity,lower_ux,1.159114956855774 +steady,sr,164,65.6,velocity,lower_uy,0.4786716103553772 +steady,sr,165,66.0,velocity,upper_ux,0.5796623826026917 +steady,sr,165,66.0,velocity,upper_uy,0.13256371021270752 +steady,sr,165,66.0,velocity,center_ux,0.6227675676345825 +steady,sr,165,66.0,velocity,center_uy,0.5231128931045532 +steady,sr,165,66.0,velocity,lower_ux,1.2421042919158936 +steady,sr,165,66.0,velocity,lower_uy,0.47259360551834106 +steady,sr,166,66.4,velocity,upper_ux,0.5986963510513306 +steady,sr,166,66.4,velocity,upper_uy,0.037088051438331604 +steady,sr,166,66.4,velocity,center_ux,0.5941572189331055 +steady,sr,166,66.4,velocity,center_uy,0.317696213722229 +steady,sr,166,66.4,velocity,lower_ux,1.3143866062164307 +steady,sr,166,66.4,velocity,lower_uy,0.4380972683429718 +steady,sr,167,66.8,velocity,upper_ux,0.6519435048103333 +steady,sr,167,66.8,velocity,upper_uy,-0.043404970318078995 +steady,sr,167,66.8,velocity,center_ux,0.5429393649101257 +steady,sr,167,66.8,velocity,center_uy,0.07161474972963333 +steady,sr,167,66.8,velocity,lower_ux,1.3606078624725342 +steady,sr,167,66.8,velocity,lower_uy,0.3694715201854706 +steady,sr,168,67.2,velocity,upper_ux,0.7131198644638062 +steady,sr,168,67.2,velocity,upper_uy,-0.11898878961801529 +steady,sr,168,67.2,velocity,center_ux,0.471464604139328 +steady,sr,168,67.2,velocity,center_uy,-0.20219464600086212 +steady,sr,168,67.2,velocity,lower_ux,1.3672938346862793 +steady,sr,168,67.2,velocity,lower_uy,0.2666100859642029 +steady,sr,169,67.6,velocity,upper_ux,0.7666118144989014 +steady,sr,169,67.6,velocity,upper_uy,-0.20129810273647308 +steady,sr,169,67.6,velocity,center_ux,0.41217368841171265 +steady,sr,169,67.6,velocity,center_uy,-0.46733492612838745 +steady,sr,169,67.6,velocity,lower_ux,1.3307756185531616 +steady,sr,169,67.6,velocity,lower_uy,0.13631406426429749 +steady,sr,170,68.0,velocity,upper_ux,0.8204989433288574 +steady,sr,170,68.0,velocity,upper_uy,-0.28088873624801636 +steady,sr,170,68.0,velocity,center_ux,0.4211679697036743 +steady,sr,170,68.0,velocity,center_uy,-0.6340570449829102 +steady,sr,170,68.0,velocity,lower_ux,1.250747561454773 +steady,sr,170,68.0,velocity,lower_uy,-0.012198740616440773 +steady,sr,171,68.4,velocity,upper_ux,0.8812929391860962 +steady,sr,171,68.4,velocity,upper_uy,-0.34844347834587097 +steady,sr,171,68.4,velocity,center_ux,0.5048856139183044 +steady,sr,171,68.4,velocity,center_uy,-0.6688267588615417 +steady,sr,171,68.4,velocity,lower_ux,1.1184333562850952 +steady,sr,171,68.4,velocity,lower_uy,-0.16465473175048828 +steady,sr,172,68.8,velocity,upper_ux,0.9492566585540771 +steady,sr,172,68.8,velocity,upper_uy,-0.40273940563201904 +steady,sr,172,68.8,velocity,center_ux,0.5823725461959839 +steady,sr,172,68.8,velocity,center_uy,-0.6778436303138733 +steady,sr,172,68.8,velocity,lower_ux,0.9399060010910034 +steady,sr,172,68.8,velocity,lower_uy,-0.2845507562160492 +steady,sr,173,69.2,velocity,upper_ux,1.023835301399231 +steady,sr,173,69.2,velocity,upper_uy,-0.44390490651130676 +steady,sr,173,69.2,velocity,center_ux,0.6227719783782959 +steady,sr,173,69.2,velocity,center_uy,-0.6988664269447327 +steady,sr,173,69.2,velocity,lower_ux,0.7654039859771729 +steady,sr,173,69.2,velocity,lower_uy,-0.3259938061237335 +steady,sr,174,69.6,velocity,upper_ux,1.1043611764907837 +steady,sr,174,69.6,velocity,upper_uy,-0.47062385082244873 +steady,sr,174,69.6,velocity,center_ux,0.6373010277748108 +steady,sr,174,69.6,velocity,center_uy,-0.6946322917938232 +steady,sr,174,69.6,velocity,lower_ux,0.6471606492996216 +steady,sr,174,69.6,velocity,lower_uy,-0.2848684787750244 +steady,sr,175,70.0,velocity,upper_ux,1.1883922815322876 +steady,sr,175,70.0,velocity,upper_uy,-0.4793323278427124 +steady,sr,175,70.0,velocity,center_ux,0.6331865191459656 +steady,sr,175,70.0,velocity,center_uy,-0.6201286911964417 +steady,sr,175,70.0,velocity,lower_ux,0.5905091762542725 +steady,sr,175,70.0,velocity,lower_uy,-0.19764432311058044 +steady,sr,176,70.4,velocity,upper_ux,1.2692393064498901 +steady,sr,176,70.4,velocity,upper_uy,-0.46418941020965576 +steady,sr,176,70.4,velocity,center_ux,0.614898145198822 +steady,sr,176,70.4,velocity,center_uy,-0.4578745663166046 +steady,sr,176,70.4,velocity,lower_ux,0.5815706849098206 +steady,sr,176,70.4,velocity,lower_uy,-0.09803466498851776 +steady,sr,177,70.8,velocity,upper_ux,1.3343243598937988 +steady,sr,177,70.8,velocity,upper_uy,-0.41827231645584106 +steady,sr,177,70.8,velocity,center_ux,0.5793288350105286 +steady,sr,177,70.8,velocity,center_uy,-0.2357761263847351 +steady,sr,177,70.8,velocity,lower_ux,0.614494264125824 +steady,sr,177,70.8,velocity,lower_uy,-0.007392780855298042 +steady,sr,178,71.2,velocity,upper_ux,1.3678479194641113 +steady,sr,178,71.2,velocity,upper_uy,-0.33733615279197693 +steady,sr,178,71.2,velocity,center_ux,0.5194112658500671 +steady,sr,178,71.2,velocity,center_uy,0.02130214124917984 +steady,sr,178,71.2,velocity,lower_ux,0.6737841963768005 +steady,sr,178,71.2,velocity,lower_uy,0.06926897168159485 +steady,sr,179,71.6,velocity,upper_ux,1.35933256149292 +steady,sr,179,71.6,velocity,upper_uy,-0.2238866686820984 +steady,sr,179,71.6,velocity,center_ux,0.4467194676399231 +steady,sr,179,71.6,velocity,center_uy,0.29909735918045044 +steady,sr,179,71.6,velocity,lower_ux,0.7323934435844421 +steady,sr,179,71.6,velocity,lower_uy,0.14702734351158142 +steady,sr,180,72.0,velocity,upper_ux,1.3080803155899048 +steady,sr,180,72.0,velocity,upper_uy,-0.08620640635490417 +steady,sr,180,72.0,velocity,center_ux,0.4048265516757965 +steady,sr,180,72.0,velocity,center_uy,0.5416138172149658 +steady,sr,180,72.0,velocity,lower_ux,0.7847163677215576 +steady,sr,180,72.0,velocity,lower_uy,0.2300083190202713 +steady,sr,181,72.4,velocity,upper_ux,1.2111499309539795 +steady,sr,181,72.4,velocity,upper_uy,0.06606057286262512 +steady,sr,181,72.4,velocity,center_ux,0.44528689980506897 +steady,sr,181,72.4,velocity,center_uy,0.6570541262626648 +steady,sr,181,72.4,velocity,lower_ux,0.8408262729644775 +steady,sr,181,72.4,velocity,lower_uy,0.30591702461242676 +steady,sr,182,72.8,velocity,upper_ux,1.0599483251571655 +steady,sr,182,72.8,velocity,upper_uy,0.21271011233329773 +steady,sr,182,72.8,velocity,center_ux,0.5361471772193909 +steady,sr,182,72.8,velocity,center_uy,0.6699908375740051 +steady,sr,182,72.8,velocity,lower_ux,0.904245138168335 +steady,sr,182,72.8,velocity,lower_uy,0.36882102489471436 +steady,sr,183,73.2,velocity,upper_ux,0.87535560131073 +steady,sr,183,73.2,velocity,upper_uy,0.30936264991760254 +steady,sr,183,73.2,velocity,center_ux,0.6001070141792297 +steady,sr,183,73.2,velocity,center_uy,0.685255765914917 +steady,sr,183,73.2,velocity,lower_ux,0.9745328426361084 +steady,sr,183,73.2,velocity,lower_uy,0.4185838997364044 +steady,sr,184,73.6,velocity,upper_ux,0.7165678143501282 +steady,sr,184,73.6,velocity,upper_uy,0.3195495903491974 +steady,sr,184,73.6,velocity,center_ux,0.6302570104598999 +steady,sr,184,73.6,velocity,center_uy,0.7026239633560181 +steady,sr,184,73.6,velocity,lower_ux,1.0512263774871826 +steady,sr,184,73.6,velocity,lower_uy,0.4549693763256073 +steady,sr,185,74.0,velocity,upper_ux,0.6211932897567749 +steady,sr,185,74.0,velocity,upper_uy,0.257696270942688 +steady,sr,185,74.0,velocity,center_ux,0.6376053690910339 +steady,sr,185,74.0,velocity,center_uy,0.6786277890205383 +steady,sr,185,74.0,velocity,lower_ux,1.1333515644073486 +steady,sr,185,74.0,velocity,lower_uy,0.4759407937526703 +steady,sr,186,74.4,velocity,upper_ux,0.5823742151260376 +steady,sr,186,74.4,velocity,upper_uy,0.16309460997581482 +steady,sr,186,74.4,velocity,center_ux,0.6283498406410217 +steady,sr,186,74.4,velocity,center_uy,0.57285475730896 +steady,sr,186,74.4,velocity,lower_ux,1.21735417842865 +steady,sr,186,74.4,velocity,lower_uy,0.477120578289032 +steady,sr,187,74.8,velocity,upper_ux,0.5886683464050293 +steady,sr,187,74.8,velocity,upper_uy,0.06471964716911316 +steady,sr,187,74.8,velocity,center_ux,0.605019211769104 +steady,sr,187,74.8,velocity,center_uy,0.385508269071579 +steady,sr,187,74.8,velocity,lower_ux,1.2945144176483154 +steady,sr,187,74.8,velocity,lower_uy,0.4520394504070282 +steady,sr,188,75.2,velocity,upper_ux,0.6336537003517151 +steady,sr,188,75.2,velocity,upper_uy,-0.020347433164715767 +steady,sr,188,75.2,velocity,center_ux,0.5613563060760498 +steady,sr,188,75.2,velocity,center_uy,0.14981059730052948 +steady,sr,188,75.2,velocity,lower_ux,1.3503787517547607 +steady,sr,188,75.2,velocity,lower_uy,0.39414143562316895 +steady,sr,189,75.6,velocity,upper_ux,0.695243239402771 +steady,sr,189,75.6,velocity,upper_uy,-0.09541758894920349 +steady,sr,189,75.6,velocity,center_ux,0.49400779604911804 +steady,sr,189,75.6,velocity,center_uy,-0.11716583371162415 +steady,sr,189,75.6,velocity,lower_ux,1.3698588609695435 +steady,sr,189,75.6,velocity,lower_uy,0.3012000322341919 +steady,sr,190,76.0,velocity,upper_ux,0.7507334351539612 +steady,sr,190,76.0,velocity,upper_uy,-0.1758904904127121 +steady,sr,190,76.0,velocity,center_ux,0.42549774050712585 +steady,sr,190,76.0,velocity,center_uy,-0.3922988176345825 +steady,sr,190,76.0,velocity,lower_ux,1.3461978435516357 +steady,sr,190,76.0,velocity,lower_uy,0.17823974788188934 +steady,sr,191,76.4,velocity,upper_ux,0.8033910393714905 +steady,sr,191,76.4,velocity,upper_uy,-0.25775012373924255 +steady,sr,191,76.4,velocity,center_ux,0.4083711504936218 +steady,sr,191,76.4,velocity,center_uy,-0.5992370247840881 +steady,sr,191,76.4,velocity,lower_ux,1.279983639717102 +steady,sr,191,76.4,velocity,lower_uy,0.03427146002650261 +steady,sr,192,76.8,velocity,upper_ux,0.8620834946632385 +steady,sr,192,76.8,velocity,upper_uy,-0.32932454347610474 +steady,sr,192,76.8,velocity,center_ux,0.4761665463447571 +steady,sr,192,76.8,velocity,center_uy,-0.6665162444114685 +steady,sr,192,76.8,velocity,lower_ux,1.164707899093628 +steady,sr,192,76.8,velocity,lower_uy,-0.11952546238899231 +steady,sr,193,77.2,velocity,upper_ux,0.9280269145965576 +steady,sr,193,77.2,velocity,upper_uy,-0.3876153230667114 +steady,sr,193,77.2,velocity,center_ux,0.5631216764450073 +steady,sr,193,77.2,velocity,center_uy,-0.6729785799980164 +steady,sr,193,77.2,velocity,lower_ux,0.9969481825828552 +steady,sr,193,77.2,velocity,lower_uy,-0.2546750009059906 +steady,sr,194,77.6,velocity,upper_ux,1.0005782842636108 +steady,sr,194,77.6,velocity,upper_uy,-0.4328248202800751 +steady,sr,194,77.6,velocity,center_ux,0.6137340068817139 +steady,sr,194,77.6,velocity,center_uy,-0.6930949687957764 +steady,sr,194,77.6,velocity,lower_ux,0.8141763210296631 +steady,sr,194,77.6,velocity,lower_uy,-0.323119193315506 +steady,sr,195,78.0,velocity,upper_ux,1.0792820453643799 +steady,sr,195,78.0,velocity,upper_uy,-0.4641851484775543 +steady,sr,195,78.0,velocity,center_ux,0.6350032687187195 +steady,sr,195,78.0,velocity,center_uy,-0.7014040350914001 +steady,sr,195,78.0,velocity,lower_ux,0.6758980751037598 +steady,sr,195,78.0,velocity,lower_uy,-0.30416712164878845 +steady,sr,196,78.4,velocity,upper_ux,1.162611961364746 +steady,sr,196,78.4,velocity,upper_uy,-0.4788775146007538 +steady,sr,196,78.4,velocity,center_ux,0.6359120011329651 +steady,sr,196,78.4,velocity,center_uy,-0.652285099029541 +steady,sr,196,78.4,velocity,lower_ux,0.6020442843437195 +steady,sr,196,78.4,velocity,lower_uy,-0.22672222554683685 +steady,sr,197,78.8,velocity,upper_ux,1.2455620765686035 +steady,sr,197,78.8,velocity,upper_uy,-0.47173333168029785 +steady,sr,197,78.8,velocity,center_ux,0.621932864189148 +steady,sr,197,78.8,velocity,center_uy,-0.5153164267539978 +steady,sr,197,78.8,velocity,lower_ux,0.5796235203742981 +steady,sr,197,78.8,velocity,lower_uy,-0.12816689908504486 +steady,sr,198,79.2,velocity,upper_ux,1.3172426223754883 +steady,sr,198,79.2,velocity,upper_uy,-0.43587926030158997 +steady,sr,198,79.2,velocity,center_ux,0.5926826596260071 +steady,sr,198,79.2,velocity,center_uy,-0.3075789213180542 +steady,sr,198,79.2,velocity,lower_ux,0.600663423538208 +steady,sr,198,79.2,velocity,lower_uy,-0.033217694610357285 +steady,sr,199,79.6,velocity,upper_ux,1.3619368076324463 +steady,sr,199,79.6,velocity,upper_uy,-0.3656931221485138 +steady,sr,199,79.6,velocity,center_ux,0.5402413606643677 +steady,sr,199,79.6,velocity,center_uy,-0.06002046540379524 +steady,sr,199,79.6,velocity,lower_ux,0.6548532247543335 +steady,sr,199,79.6,velocity,lower_uy,0.04670269787311554 +steady,sr,0,0.0,force,front_fx,0.0018943636678159237 +steady,sr,0,0.0,force,front_fy,-1.3707343896385282e-05 +steady,sr,0,0.0,force,upper_fx,0.002203678246587515 +steady,sr,0,0.0,force,upper_fy,0.00031596049666404724 +steady,sr,0,0.0,force,lower_fx,0.002245846902951598 +steady,sr,0,0.0,force,lower_fy,-0.00037633534520864487 +steady,sr,1,0.4,force,front_fx,0.0018962540198117495 +steady,sr,1,0.4,force,front_fy,-1.4550910236721393e-05 +steady,sr,1,0.4,force,upper_fx,0.002204913180321455 +steady,sr,1,0.4,force,upper_fy,0.0003166129463352263 +steady,sr,1,0.4,force,lower_fx,0.0022506939712911844 +steady,sr,1,0.4,force,lower_fy,-0.0003730988537427038 +steady,sr,2,0.8,force,front_fx,0.001896409085020423 +steady,sr,2,0.8,force,front_fy,-1.3983534699946176e-05 +steady,sr,2,0.8,force,upper_fx,0.0022060442715883255 +steady,sr,2,0.8,force,upper_fy,0.0003232407325413078 +steady,sr,2,0.8,force,lower_fx,0.0022515144664794207 +steady,sr,2,0.8,force,lower_fy,-0.0003706693241838366 +steady,sr,3,1.2,force,front_fx,0.001892969710752368 +steady,sr,3,1.2,force,front_fy,-1.2298527508391999e-05 +steady,sr,3,1.2,force,upper_fx,0.002204720163717866 +steady,sr,3,1.2,force,upper_fy,0.0003336047811899334 +steady,sr,3,1.2,force,lower_fx,0.002245811279863119 +steady,sr,3,1.2,force,lower_fy,-0.00036786269629374146 +steady,sr,4,1.6,force,front_fx,0.0018888958729803562 +steady,sr,4,1.6,force,front_fy,-8.885679562808946e-06 +steady,sr,4,1.6,force,upper_fx,0.0022034775465726852 +steady,sr,4,1.6,force,upper_fy,0.0003459418658167124 +steady,sr,4,1.6,force,lower_fx,0.002236652420833707 +steady,sr,4,1.6,force,lower_fy,-0.00036282368819229305 +steady,sr,5,2.0,force,front_fx,0.0018895014654845 +steady,sr,5,2.0,force,front_fy,-4.7953494686225895e-06 +steady,sr,5,2.0,force,upper_fx,0.002208983525633812 +steady,sr,5,2.0,force,upper_fy,0.0003571410779841244 +steady,sr,5,2.0,force,lower_fx,0.0022313669323921204 +steady,sr,5,2.0,force,lower_fy,-0.0003553852147888392 +steady,sr,6,2.4,force,front_fx,0.0018927110359072685 +steady,sr,6,2.4,force,front_fy,-3.12755119580288e-08 +steady,sr,6,2.4,force,upper_fx,0.0022186608985066414 +steady,sr,6,2.4,force,upper_fy,0.0003667480777949095 +steady,sr,6,2.4,force,lower_fx,0.002228433033451438 +steady,sr,6,2.4,force,lower_fy,-0.0003461523447185755 +steady,sr,7,2.8,force,front_fx,0.001896127127110958 +steady,sr,7,2.8,force,front_fy,4.17392902818392e-06 +steady,sr,7,2.8,force,upper_fx,0.0022291282657533884 +steady,sr,7,2.8,force,upper_fy,0.0003735783393494785 +steady,sr,7,2.8,force,lower_fx,0.0022255133371800184 +steady,sr,7,2.8,force,lower_fy,-0.0003370956692378968 +steady,sr,8,3.2,force,front_fx,0.001894723973236978 +steady,sr,8,3.2,force,front_fy,7.612261470058002e-06 +steady,sr,8,3.2,force,upper_fx,0.002233911072835326 +steady,sr,8,3.2,force,upper_fy,0.0003777873935177922 +steady,sr,8,3.2,force,lower_fx,0.0022171807941049337 +steady,sr,8,3.2,force,lower_fy,-0.00032926484709605575 +steady,sr,9,3.6,force,front_fx,0.0018912499072030187 +steady,sr,9,3.6,force,front_fy,1.0584399205981754e-05 +steady,sr,9,3.6,force,upper_fx,0.002235500607639551 +steady,sr,9,3.6,force,upper_fy,0.00037928108940832317 +steady,sr,9,3.6,force,lower_fx,0.00220710807479918 +steady,sr,9,3.6,force,lower_fy,-0.0003225123800802976 +steady,sr,10,4.0,force,front_fx,0.0018895408138632774 +steady,sr,10,4.0,force,front_fy,1.2759493074554484e-05 +steady,sr,10,4.0,force,upper_fx,0.002237832173705101 +steady,sr,10,4.0,force,upper_fy,0.00037807776243425906 +steady,sr,10,4.0,force,lower_fx,0.002200113143771887 +steady,sr,10,4.0,force,lower_fy,-0.00031760192359797657 +steady,sr,11,4.4,force,front_fx,0.00189165398478508 +steady,sr,11,4.4,force,front_fy,1.4076002116780728e-05 +steady,sr,11,4.4,force,upper_fx,0.002243697876110673 +steady,sr,11,4.4,force,upper_fy,0.0003752317279577255 +steady,sr,11,4.4,force,lower_fx,0.0021998595912009478 +steady,sr,11,4.4,force,lower_fy,-0.0003157792380079627 +steady,sr,12,4.8,force,front_fx,0.001895521767437458 +steady,sr,12,4.8,force,front_fy,1.4532362001773436e-05 +steady,sr,12,4.8,force,upper_fx,0.00225017499178648 +steady,sr,12,4.8,force,upper_fy,0.0003722409892361611 +steady,sr,12,4.8,force,lower_fx,0.002204033313319087 +steady,sr,12,4.8,force,lower_fy,-0.00031830871012061834 +steady,sr,13,5.2,force,front_fx,0.0018963570473715663 +steady,sr,13,5.2,force,front_fy,1.355382028123131e-05 +steady,sr,13,5.2,force,upper_fx,0.0022510120179504156 +steady,sr,13,5.2,force,upper_fy,0.0003694262122735381 +steady,sr,13,5.2,force,lower_fx,0.0022066133096814156 +steady,sr,13,5.2,force,lower_fy,-0.0003261177334934473 +steady,sr,14,5.6,force,front_fx,0.001893407548777759 +steady,sr,14,5.6,force,front_fy,1.1267093213973567e-05 +steady,sr,14,5.6,force,upper_fx,0.0022451772820204496 +steady,sr,14,5.6,force,upper_fy,0.0003660586371552199 +steady,sr,14,5.6,force,lower_fx,0.0022064552176743746 +steady,sr,14,5.6,force,lower_fy,-0.0003374834486749023 +steady,sr,15,6.0,force,front_fx,0.0018893543165177107 +steady,sr,15,6.0,force,front_fy,7.541284048784291e-06 +steady,sr,15,6.0,force,upper_fx,0.0022354505490511656 +steady,sr,15,6.0,force,upper_fy,0.0003606262325774878 +steady,sr,15,6.0,force,lower_fx,0.002205759286880493 +steady,sr,15,6.0,force,lower_fy,-0.0003501428000163287 +steady,sr,16,6.4,force,front_fx,0.0018893334781751037 +steady,sr,16,6.4,force,front_fy,3.1573893011227483e-06 +steady,sr,16,6.4,force,upper_fx,0.002228946192190051 +steady,sr,16,6.4,force,upper_fy,0.000352697039488703 +steady,sr,16,6.4,force,lower_fx,0.0022108021657913923 +steady,sr,16,6.4,force,lower_fy,-0.0003611386055126786 +steady,sr,17,6.8,force,front_fx,0.0018921042792499065 +steady,sr,17,6.8,force,front_fy,-1.5260334293998312e-06 +steady,sr,17,6.8,force,upper_fx,0.0022251976188272238 +steady,sr,17,6.8,force,upper_fy,0.0003431737422943115 +steady,sr,17,6.8,force,lower_fx,0.0022200613748282194 +steady,sr,17,6.8,force,lower_fy,-0.00036972371162846684 +steady,sr,18,7.2,force,front_fx,0.0018958279397338629 +steady,sr,18,7.2,force,front_fy,-5.445642727863742e-06 +steady,sr,18,7.2,force,upper_fx,0.002222637413069606 +steady,sr,18,7.2,force,upper_fy,0.00033402114058844745 +steady,sr,18,7.2,force,lower_fx,0.002230897545814514 +steady,sr,18,7.2,force,lower_fy,-0.00037511615664698184 +steady,sr,19,7.6,force,front_fx,0.001895084511488676 +steady,sr,19,7.6,force,front_fy,-8.704665560799185e-06 +steady,sr,19,7.6,force,upper_fx,0.002215348184108734 +steady,sr,19,7.6,force,upper_fy,0.0003263527760282159 +steady,sr,19,7.6,force,lower_fx,0.002236355096101761 +steady,sr,19,7.6,force,lower_fy,-0.00037820651778019965 +steady,sr,20,8.0,force,front_fx,0.0018920567817986012 +steady,sr,20,8.0,force,front_fy,-1.1436927707109135e-05 +steady,sr,20,8.0,force,upper_fx,0.002206342061981559 +steady,sr,20,8.0,force,upper_fy,0.00032037109485827386 +steady,sr,20,8.0,force,lower_fx,0.0022383041214197874 +steady,sr,20,8.0,force,lower_fy,-0.00037897107540629804 +steady,sr,21,8.4,force,front_fx,0.0018897854024544358 +steady,sr,21,8.4,force,front_fy,-1.3316959666553885e-05 +steady,sr,21,8.4,force,upper_fx,0.00219933339394629 +steady,sr,21,8.4,force,upper_fy,0.0003168356488458812 +steady,sr,21,8.4,force,lower_fx,0.002239578403532505 +steady,sr,21,8.4,force,lower_fy,-0.00037748500471934676 +steady,sr,22,8.8,force,front_fx,0.0018913255771622062 +steady,sr,22,8.8,force,front_fy,-1.4349556295201182e-05 +steady,sr,22,8.8,force,upper_fx,0.0021990668028593063 +steady,sr,22,8.8,force,upper_fy,0.0003164969675708562 +steady,sr,22,8.8,force,lower_fx,0.0022441642358899117 +steady,sr,22,8.8,force,lower_fy,-0.00037456038990058005 +steady,sr,23,9.2,force,front_fx,0.0018947673961520195 +steady,sr,23,9.2,force,front_fy,-1.4352831385622267e-05 +steady,sr,23,9.2,force,upper_fx,0.0022033543791621923 +steady,sr,23,9.2,force,upper_fy,0.0003205362008884549 +steady,sr,23,9.2,force,lower_fx,0.002249357756227255 +steady,sr,23,9.2,force,lower_fy,-0.00037131630233488977 +steady,sr,24,9.6,force,front_fx,0.001896240166388452 +steady,sr,24,9.6,force,front_fy,-1.2916596460854635e-05 +steady,sr,24,9.6,force,upper_fx,0.0022073204163461924 +steady,sr,24,9.6,force,upper_fy,0.0003294182533863932 +steady,sr,24,9.6,force,lower_fx,0.002250176388770342 +steady,sr,24,9.6,force,lower_fy,-0.00036804494448006153 +steady,sr,25,10.0,force,front_fx,0.0018937826389446855 +steady,sr,25,10.0,force,front_fy,-1.0108351489179768e-05 +steady,sr,25,10.0,force,upper_fx,0.0022082782816141844 +steady,sr,25,10.0,force,upper_fy,0.0003415333922021091 +steady,sr,25,10.0,force,lower_fx,0.0022442052140831947 +steady,sr,25,10.0,force,lower_fy,-0.00036409019958227873 +steady,sr,26,10.4,force,front_fx,0.0018898495472967625 +steady,sr,26,10.4,force,front_fy,-6.051419859431917e-06 +steady,sr,26,10.4,force,upper_fx,0.002208201913163066 +steady,sr,26,10.4,force,upper_fy,0.00035429600393399596 +steady,sr,26,10.4,force,lower_fx,0.0022341199219226837 +steady,sr,26,10.4,force,lower_fy,-0.0003581720229703933 +steady,sr,27,10.8,force,front_fx,0.0018892146181315184 +steady,sr,27,10.8,force,front_fy,-1.538789319965872e-06 +steady,sr,27,10.8,force,upper_fx,0.002212740248069167 +steady,sr,27,10.8,force,upper_fy,0.00036480373819358647 +steady,sr,27,10.8,force,lower_fx,0.0022264625877141953 +steady,sr,27,10.8,force,lower_fy,-0.00034987085382454097 +steady,sr,28,11.2,force,front_fx,0.0018915784312412143 +steady,sr,28,11.2,force,front_fy,3.032491349586053e-06 +steady,sr,28,11.2,force,upper_fx,0.0022215775679796934 +steady,sr,28,11.2,force,upper_fy,0.000372276728739962 +steady,sr,28,11.2,force,lower_fx,0.002222056034952402 +steady,sr,28,11.2,force,lower_fy,-0.00034013527329079807 +steady,sr,29,11.6,force,front_fx,0.0018954947590827942 +steady,sr,29,11.6,force,front_fy,6.589082659047563e-06 +steady,sr,29,11.6,force,upper_fx,0.002232603495940566 +steady,sr,29,11.6,force,upper_fy,0.0003762387786991894 +steady,sr,29,11.6,force,lower_fx,0.0022197705693542957 +steady,sr,29,11.6,force,lower_fy,-0.0003310639294795692 +steady,sr,30,12.0,force,front_fx,0.0018954192055389285 +steady,sr,30,12.0,force,front_fy,9.763342859514523e-06 +steady,sr,30,12.0,force,upper_fx,0.002238691318780184 +steady,sr,30,12.0,force,upper_fy,0.00037837299169041216 +steady,sr,30,12.0,force,lower_fx,0.002213634317740798 +steady,sr,30,12.0,force,lower_fy,-0.0003236235643271357 +steady,sr,31,12.4,force,front_fx,0.0018927969504147768 +steady,sr,31,12.4,force,front_fy,1.219165187649196e-05 +steady,sr,31,12.4,force,upper_fx,0.00224087736569345 +steady,sr,31,12.4,force,upper_fy,0.0003784727305173874 +steady,sr,31,12.4,force,lower_fx,0.0022056896705180407 +steady,sr,31,12.4,force,lower_fy,-0.0003186097601428628 +steady,sr,32,12.8,force,front_fx,0.0018900636350736022 +steady,sr,32,12.8,force,front_fy,1.3737098925048485e-05 +steady,sr,32,12.8,force,upper_fx,0.002241175388917327 +steady,sr,32,12.8,force,upper_fy,0.00037677178625017405 +steady,sr,32,12.8,force,lower_fx,0.0021988279186189175 +steady,sr,32,12.8,force,lower_fy,-0.0003165625676047057 +steady,sr,33,13.2,force,front_fx,0.0018910112557932734 +steady,sr,33,13.2,force,front_fy,1.4566782738256734e-05 +steady,sr,33,13.2,force,upper_fx,0.002244394738227129 +steady,sr,33,13.2,force,upper_fy,0.0003738845989573747 +steady,sr,33,13.2,force,lower_fx,0.0021985427010804415 +steady,sr,33,13.2,force,lower_fy,-0.00031768661574460566 +steady,sr,34,13.6,force,front_fx,0.0018940225709229708 +steady,sr,34,13.6,force,front_fy,1.3931691682955716e-05 +steady,sr,34,13.6,force,upper_fx,0.0022482944186776876 +steady,sr,34,13.6,force,upper_fy,0.00037024024641141295 +steady,sr,34,13.6,force,lower_fx,0.0022029161918908358 +steady,sr,34,13.6,force,lower_fy,-0.00032332143746316433 +steady,sr,35,14.0,force,front_fx,0.0018960705492645502 +steady,sr,35,14.0,force,front_fy,1.219304158439627e-05 +steady,sr,35,14.0,force,upper_fx,0.0022489959374070168 +steady,sr,35,14.0,force,upper_fy,0.0003665917320176959 +steady,sr,35,14.0,force,lower_fx,0.0022081623319536448 +steady,sr,35,14.0,force,lower_fy,-0.00033299680217169225 +steady,sr,36,14.4,force,front_fx,0.0018940861336886883 +steady,sr,36,14.4,force,front_fy,8.7190364865819e-06 +steady,sr,36,14.4,force,upper_fx,0.0022429144009947777 +steady,sr,36,14.4,force,upper_fy,0.0003618519986048341 +steady,sr,36,14.4,force,lower_fx,0.0022101488430052996 +steady,sr,36,14.4,force,lower_fy,-0.0003457683778833598 +steady,sr,37,14.8,force,front_fx,0.0018903766758739948 +steady,sr,37,14.8,force,front_fy,4.59784359918558e-06 +steady,sr,37,14.8,force,upper_fx,0.0022326374892145395 +steady,sr,37,14.8,force,upper_fy,0.00035559877869673073 +steady,sr,37,14.8,force,lower_fx,0.002210784936323762 +steady,sr,37,14.8,force,lower_fy,-0.00035819425829686224 +steady,sr,38,15.2,force,front_fx,0.00188913953024894 +steady,sr,38,15.2,force,front_fy,-1.6837562100135983e-07 +steady,sr,38,15.2,force,upper_fx,0.0022239636164158583 +steady,sr,38,15.2,force,upper_fy,0.00034682906698435545 +steady,sr,38,15.2,force,lower_fx,0.0022147807758301497 +steady,sr,38,15.2,force,lower_fy,-0.00036819116212427616 +steady,sr,39,15.6,force,front_fx,0.0018911489751189947 +steady,sr,39,15.6,force,front_fy,-4.33791637988179e-06 +steady,sr,39,15.6,force,upper_fx,0.0022190334275364876 +steady,sr,39,15.6,force,upper_fy,0.0003371991333551705 +steady,sr,39,15.6,force,lower_fx,0.002223235322162509 +steady,sr,39,15.6,force,lower_fy,-0.00037427220377139747 +steady,sr,40,16.0,force,front_fx,0.0018951260717585683 +steady,sr,40,16.0,force,front_fy,-7.744506547169294e-06 +steady,sr,40,16.0,force,upper_fx,0.0022169705480337143 +steady,sr,40,16.0,force,upper_fy,0.0003281497920397669 +steady,sr,40,16.0,force,lower_fx,0.0022342419251799583 +steady,sr,40,16.0,force,lower_fy,-0.00037708913441747427 +steady,sr,41,16.4,force,front_fx,0.0018957197898998857 +steady,sr,41,16.4,force,front_fy,-1.0712144103308674e-05 +steady,sr,41,16.4,force,upper_fx,0.0022120357025414705 +steady,sr,41,16.4,force,upper_fy,0.0003212024748791009 +steady,sr,41,16.4,force,lower_fx,0.0022408897057175636 +steady,sr,41,16.4,force,lower_fy,-0.00037825843901373446 +steady,sr,42,16.8,force,front_fx,0.0018934387480840087 +steady,sr,42,16.8,force,front_fy,-1.283336678170599e-05 +steady,sr,42,16.8,force,upper_fx,0.002205125754699111 +steady,sr,42,16.8,force,upper_fy,0.00031728617614135146 +steady,sr,42,16.8,force,lower_fx,0.002243179129436612 +steady,sr,42,16.8,force,lower_fy,-0.0003778201644308865 +steady,sr,43,17.2,force,front_fx,0.0018903547897934914 +steady,sr,43,17.2,force,front_fy,-1.412433721270645e-05 +steady,sr,43,17.2,force,upper_fx,0.0021985615603625774 +steady,sr,43,17.2,force,upper_fy,0.0003167203103657812 +steady,sr,43,17.2,force,lower_fx,0.0022425733041018248 +steady,sr,43,17.2,force,lower_fy,-0.00037604468525387347 +steady,sr,44,17.6,force,front_fx,0.0018907146295532584 +steady,sr,44,17.6,force,front_fy,-1.4508989806927275e-05 +steady,sr,44,17.6,force,upper_fx,0.002198257250711322 +steady,sr,44,17.6,force,upper_fy,0.00031949873664416373 +steady,sr,44,17.6,force,lower_fx,0.0022444019559770823 +steady,sr,44,17.6,force,lower_fy,-0.00037303860881365836 +steady,sr,45,18.0,force,front_fx,0.0018933278042823076 +steady,sr,45,18.0,force,front_fy,-1.3487765500030946e-05 +steady,sr,45,18.0,force,upper_fx,0.002202776260674 +steady,sr,45,18.0,force,upper_fy,0.0003264252736698836 +steady,sr,45,18.0,force,lower_fx,0.002247016876935959 +steady,sr,45,18.0,force,lower_fy,-0.0003691788879223168 +steady,sr,46,18.4,force,front_fx,0.0018958437722176313 +steady,sr,46,18.4,force,front_fy,-1.1135595741507132e-05 +steady,sr,46,18.4,force,upper_fx,0.00220910063944757 +steady,sr,46,18.4,force,upper_fy,0.00033699083724059165 +steady,sr,46,18.4,force,lower_fx,0.0022475088480859995 +steady,sr,46,18.4,force,lower_fy,-0.00036484122392721474 +steady,sr,47,18.8,force,front_fx,0.0018943245522677898 +steady,sr,47,18.8,force,front_fy,-7.355606157943839e-06 +steady,sr,47,18.8,force,upper_fx,0.0022120855282992125 +steady,sr,47,18.8,force,upper_fy,0.00034989326377399266 +steady,sr,47,18.8,force,lower_fx,0.0022413323167711496 +steady,sr,47,18.8,force,lower_fy,-0.0003595507878344506 +steady,sr,48,19.2,force,front_fx,0.0018909038044512272 +steady,sr,48,19.2,force,front_fy,-2.9638188152603107e-06 +steady,sr,48,19.2,force,upper_fx,0.0022134289611130953 +steady,sr,48,19.2,force,upper_fy,0.00036197685403749347 +steady,sr,48,19.2,force,lower_fx,0.0022310155909508467 +steady,sr,48,19.2,force,lower_fy,-0.0003527183143887669 +steady,sr,49,19.6,force,front_fx,0.0018891417421400547 +steady,sr,49,19.6,force,front_fy,1.7332406514469767e-06 +steady,sr,49,19.6,force,upper_fx,0.0022169395815581083 +steady,sr,49,19.6,force,upper_fy,0.00037107308162376285 +steady,sr,49,19.6,force,lower_fx,0.0022214914206415415 +steady,sr,49,19.6,force,lower_fy,-0.0003437773266341537 +steady,sr,50,20.0,force,front_fx,0.001890838029794395 +steady,sr,50,20.0,force,front_fy,5.575908744503977e-06 +steady,sr,50,20.0,force,upper_fx,0.002225032541900873 +steady,sr,50,20.0,force,upper_fy,0.0003758539678528905 +steady,sr,50,20.0,force,lower_fx,0.0022161861415952444 +steady,sr,50,20.0,force,lower_fy,-0.00033426261506974697 +steady,sr,51,20.4,force,front_fx,0.0018947466742247343 +steady,sr,51,20.4,force,front_fy,8.856291970005259e-06 +steady,sr,51,20.4,force,upper_fx,0.002235800726339221 +steady,sr,51,20.4,force,upper_fy,0.00037764437729492784 +steady,sr,51,20.4,force,lower_fx,0.0022142783273011446 +steady,sr,51,20.4,force,lower_fy,-0.0003253898466937244 +steady,sr,52,20.8,force,front_fx,0.001895957044325769 +steady,sr,52,20.8,force,front_fy,1.152829372585984e-05 +steady,sr,52,20.8,force,upper_fx,0.002242930931970477 +steady,sr,52,20.8,force,upper_fy,0.0003779214748647064 +steady,sr,52,20.8,force,lower_fx,0.00221055094152689 +steady,sr,52,20.8,force,lower_fy,-0.00031914192368276417 +steady,sr,53,21.2,force,front_fx,0.0018939755391329527 +steady,sr,53,21.2,force,front_fy,1.3394041161518544e-05 +steady,sr,53,21.2,force,upper_fx,0.0022451812401413918 +steady,sr,53,21.2,force,upper_fy,0.00037707906449213624 +steady,sr,53,21.2,force,lower_fx,0.0022046598605811596 +steady,sr,53,21.2,force,lower_fy,-0.0003164172812830657 +steady,sr,54,21.6,force,front_fx,0.001890647574327886 +steady,sr,54,21.6,force,front_fy,1.4378281775861979e-05 +steady,sr,54,21.6,force,upper_fx,0.002243767725303769 +steady,sr,54,21.6,force,upper_fy,0.0003752466000150889 +steady,sr,54,21.6,force,lower_fx,0.0021985601633787155 +steady,sr,54,21.6,force,lower_fy,-0.00031738990219309926 +steady,sr,55,22.0,force,front_fx,0.00189044582657516 +steady,sr,55,22.0,force,front_fy,1.4311043742054608e-05 +steady,sr,55,22.0,force,upper_fx,0.0022441833280026913 +steady,sr,55,22.0,force,upper_fy,0.00037211747257970273 +steady,sr,55,22.0,force,lower_fx,0.0021982472389936447 +steady,sr,55,22.0,force,lower_fy,-0.0003218015772290528 +steady,sr,56,22.4,force,front_fx,0.0018926976481452584 +steady,sr,56,22.4,force,front_fy,1.284100017073797e-05 +steady,sr,56,22.4,force,upper_fx,0.0022455567959696054 +steady,sr,56,22.4,force,upper_fy,0.0003679596702568233 +steady,sr,56,22.4,force,lower_fx,0.002202925505116582 +steady,sr,56,22.4,force,lower_fy,-0.0003299367381259799 +steady,sr,57,22.8,force,front_fx,0.0018955724081024528 +steady,sr,57,22.8,force,front_fy,9.944803423422854e-06 +steady,sr,57,22.8,force,upper_fx,0.0022457255981862545 +steady,sr,57,22.8,force,upper_fy,0.00036292694858275354 +steady,sr,57,22.8,force,lower_fx,0.002210166770964861 +steady,sr,57,22.8,force,lower_fy,-0.00034116438473574817 +steady,sr,58,23.2,force,front_fx,0.0018945123301818967 +steady,sr,58,23.2,force,front_fy,5.8828136388910934e-06 +steady,sr,58,23.2,force,upper_fx,0.0022395048290491104 +steady,sr,58,23.2,force,upper_fy,0.000357043492840603 +steady,sr,58,23.2,force,lower_fx,0.0022140752989798784 +steady,sr,58,23.2,force,lower_fy,-0.00035395927261561155 +steady,sr,59,23.6,force,front_fx,0.0018913984531536698 +steady,sr,59,23.6,force,front_fy,1.3158542060409673e-06 +steady,sr,59,23.6,force,upper_fx,0.002229242119938135 +steady,sr,59,23.6,force,upper_fy,0.0003496795834507793 +steady,sr,59,23.6,force,lower_fx,0.0022160918451845646 +steady,sr,59,23.6,force,lower_fy,-0.0003654549364000559 +steady,sr,60,24.0,force,front_fx,0.0018892140360549092 +steady,sr,60,24.0,force,front_fy,-3.1969650535756955e-06 +steady,sr,60,24.0,force,upper_fx,0.0022190907038748264 +steady,sr,60,24.0,force,upper_fy,0.0003406981413718313 +steady,sr,60,24.0,force,lower_fx,0.002219212707132101 +steady,sr,60,24.0,force,lower_fy,-0.0003734781639650464 +steady,sr,61,24.4,force,front_fx,0.001890635467134416 +steady,sr,61,24.4,force,front_fy,-6.739000127709005e-06 +steady,sr,61,24.4,force,upper_fx,0.0022135444451123476 +steady,sr,61,24.4,force,upper_fy,0.0003313741472084075 +steady,sr,61,24.4,force,lower_fx,0.0022269512992352247 +steady,sr,61,24.4,force,lower_fy,-0.00037703782436437905 +steady,sr,62,24.8,force,front_fx,0.0018943719333037734 +steady,sr,62,24.8,force,front_fy,-9.88438114291057e-06 +steady,sr,62,24.8,force,upper_fx,0.0022117493208497763 +steady,sr,62,24.8,force,upper_fy,0.00032287053181789815 +steady,sr,62,24.8,force,lower_fx,0.0022372964303940535 +steady,sr,62,24.8,force,lower_fy,-0.0003779177786782384 +steady,sr,63,25.2,force,front_fx,0.001896127127110958 +steady,sr,63,25.2,force,front_fy,-1.2287375284358859e-05 +steady,sr,63,25.2,force,upper_fx,0.0022091884166002274 +steady,sr,63,25.2,force,upper_fy,0.00031745305750519037 +steady,sr,63,25.2,force,lower_fx,0.0022447528317570686 +steady,sr,63,25.2,force,lower_fy,-0.0003774513606913388 +steady,sr,64,25.6,force,front_fx,0.0018943850882351398 +steady,sr,64,25.6,force,front_fy,-1.3792773643217515e-05 +steady,sr,64,25.6,force,upper_fx,0.002204261487349868 +steady,sr,64,25.6,force,upper_fy,0.0003160883206874132 +steady,sr,64,25.6,force,lower_fx,0.0022468427196145058 +steady,sr,64,25.6,force,lower_fy,-0.00037622597301378846 +steady,sr,65,26.0,force,front_fx,0.0018909622449427843 +steady,sr,65,26.0,force,front_fy,-1.4570749954145867e-05 +steady,sr,65,26.0,force,upper_fx,0.0021988137159496546 +steady,sr,65,26.0,force,upper_fy,0.0003185190143994987 +steady,sr,65,26.0,force,lower_fx,0.0022447239607572556 +steady,sr,65,26.0,force,lower_fy,-0.0003744285786524415 +steady,sr,66,26.4,force,front_fx,0.0018902249867096543 +steady,sr,66,26.4,force,front_fy,-1.3878909157938324e-05 +steady,sr,66,26.4,force,upper_fx,0.0021985138300806284 +steady,sr,66,26.4,force,upper_fy,0.0003246234846301377 +steady,sr,66,26.4,force,lower_fx,0.002243773080408573 +steady,sr,66,26.4,force,lower_fy,-0.00037103184149600565 +steady,sr,67,26.8,force,front_fx,0.0018921543378382921 +steady,sr,67,26.8,force,front_fy,-1.2073855941707734e-05 +steady,sr,67,26.8,force,upper_fx,0.002203386975452304 +steady,sr,67,26.8,force,upper_fy,0.00033372140023857355 +steady,sr,67,26.8,force,lower_fx,0.0022439388558268547 +steady,sr,67,26.8,force,lower_fy,-0.000366624619346112 +steady,sr,68,27.2,force,front_fx,0.0018952578539028764 +steady,sr,68,27.2,force,front_fy,-8.556961802241858e-06 +steady,sr,68,27.2,force,upper_fx,0.002211320213973522 +steady,sr,68,27.2,force,upper_fy,0.0003454929683357477 +steady,sr,68,27.2,force,lower_fx,0.0022436745930463076 +steady,sr,68,27.2,force,lower_fy,-0.00036078665289096534 +steady,sr,69,27.6,force,front_fx,0.00189465272706002 +steady,sr,69,27.6,force,front_fy,-4.3948898564849515e-06 +steady,sr,69,27.6,force,upper_fx,0.00221611512824893 +steady,sr,69,27.6,force,upper_fy,0.00035783372004516423 +steady,sr,69,27.6,force,lower_fx,0.0022374549880623817 +steady,sr,69,27.6,force,lower_fy,-0.0003543976054061204 +steady,sr,70,28.0,force,front_fx,0.0018918595742434263 +steady,sr,70,28.0,force,front_fy,3.669146053653094e-07 +steady,sr,70,28.0,force,upper_fx,0.0022187461145222187 +steady,sr,70,28.0,force,upper_fy,0.00036861441913060844 +steady,sr,70,28.0,force,lower_fx,0.002227342687547207 +steady,sr,70,28.0,force,lower_fy,-0.00034647638676688075 +steady,sr,71,28.4,force,front_fx,0.0018893757369369268 +steady,sr,71,28.4,force,front_fy,4.506629011302721e-06 +steady,sr,71,28.4,force,upper_fx,0.002221600152552128 +steady,sr,71,28.4,force,upper_fy,0.00037535541923716664 +steady,sr,71,28.4,force,lower_fx,0.0022168003488332033 +steady,sr,71,28.4,force,lower_fy,-0.00033767029526643455 +steady,sr,72,28.8,force,front_fx,0.00189053057692945 +steady,sr,72,28.8,force,front_fy,7.875179107941221e-06 +steady,sr,72,28.8,force,upper_fx,0.0022289473563432693 +steady,sr,72,28.8,force,upper_fy,0.0003778982500080019 +steady,sr,72,28.8,force,lower_fx,0.0022111202124506235 +steady,sr,72,28.8,force,lower_fy,-0.0003285440325271338 +steady,sr,73,29.2,force,front_fx,0.001894018379971385 +steady,sr,73,29.2,force,front_fy,1.0826089237525593e-05 +steady,sr,73,29.2,force,upper_fx,0.002238743007183075 +steady,sr,73,29.2,force,upper_fy,0.00037794504896737635 +steady,sr,73,29.2,force,lower_fx,0.002209429396316409 +steady,sr,73,29.2,force,lower_fy,-0.00032063943217508495 +steady,sr,74,29.6,force,front_fx,0.001896207220852375 +steady,sr,74,29.6,force,front_fy,1.2901857189717703e-05 +steady,sr,74,29.6,force,upper_fx,0.0022463344503194094 +steady,sr,74,29.6,force,upper_fy,0.0003768213209696114 +steady,sr,74,29.6,force,lower_fx,0.0022079425398260355 +steady,sr,74,29.6,force,lower_fy,-0.0003162483044434339 +steady,sr,75,30.0,force,front_fx,0.0018946744967252016 +steady,sr,75,30.0,force,front_fy,1.417103430867428e-05 +steady,sr,75,30.0,force,upper_fx,0.0022481458727270365 +steady,sr,75,30.0,force,upper_fy,0.00037540349876508117 +steady,sr,75,30.0,force,lower_fx,0.0022039564792066813 +steady,sr,75,30.0,force,lower_fy,-0.00031620042864233255 +steady,sr,76,30.4,force,front_fx,0.0018912878585979342 +steady,sr,76,30.4,force,front_fy,1.4488992746919394e-05 +steady,sr,76,30.4,force,upper_fx,0.002245464129373431 +steady,sr,76,30.4,force,upper_fy,0.0003734271740540862 +steady,sr,76,30.4,force,lower_fx,0.0021993217524141073 +steady,sr,76,30.4,force,lower_fy,-0.00032025933614932 +steady,sr,77,30.8,force,front_fx,0.0018900679424405098 +steady,sr,77,30.8,force,front_fy,1.3412300177151337e-05 +steady,sr,77,30.8,force,upper_fx,0.002243141643702984 +steady,sr,77,30.8,force,upper_fy,0.0003699315420817584 +steady,sr,77,30.8,force,lower_fx,0.0021990875247865915 +steady,sr,77,30.8,force,lower_fy,-0.0003277521173004061 +steady,sr,78,31.2,force,front_fx,0.0018917060224339366 +steady,sr,78,31.2,force,front_fy,1.0998008292517625e-05 +steady,sr,78,31.2,force,upper_fx,0.0022422117181122303 +steady,sr,78,31.2,force,upper_fy,0.00036498132976703346 +steady,sr,78,31.2,force,lower_fx,0.0022041352931410074 +steady,sr,78,31.2,force,lower_fy,-0.00033787291613407433 +steady,sr,79,31.6,force,front_fx,0.0018948932411149144 +steady,sr,79,31.6,force,front_fy,7.169065611378755e-06 +steady,sr,79,31.6,force,upper_fx,0.002241360256448388 +steady,sr,79,31.6,force,upper_fy,0.0003585671365726739 +steady,sr,79,31.6,force,lower_fx,0.0022125618997961283 +steady,sr,79,31.6,force,lower_fy,-0.0003497355792205781 +steady,sr,80,32.0,force,front_fx,0.0018947400385513902 +steady,sr,80,32.0,force,front_fy,2.7703690648195334e-06 +steady,sr,80,32.0,force,upper_fx,0.002235222840681672 +steady,sr,80,32.0,force,upper_fy,0.000351500028045848 +steady,sr,80,32.0,force,lower_fx,0.0022181749809533358 +steady,sr,80,32.0,force,lower_fy,-0.00036157184513285756 +steady,sr,81,32.4,force,front_fx,0.0018922727322205901 +steady,sr,81,32.4,force,front_fy,-1.9373592294869013e-06 +steady,sr,81,32.4,force,upper_fx,0.00222534011118114 +steady,sr,81,32.4,force,upper_fy,0.00034325820161029696 +steady,sr,81,32.4,force,lower_fx,0.002221375238150358 +steady,sr,81,32.4,force,lower_fy,-0.00037130629061721265 +steady,sr,82,32.8,force,front_fx,0.001889628591015935 +steady,sr,82,32.8,force,front_fy,-5.711965059163049e-06 +steady,sr,82,32.8,force,upper_fx,0.002214656677097082 +steady,sr,82,32.8,force,upper_fy,0.0003346677403897047 +steady,sr,82,32.8,force,lower_fx,0.002224094932898879 +steady,sr,82,32.8,force,lower_fy,-0.0003767850575968623 +steady,sr,83,33.2,force,front_fx,0.0018905044998973608 +steady,sr,83,33.2,force,front_fy,-8.995361895358656e-06 +steady,sr,83,33.2,force,upper_fx,0.00220893113873899 +steady,sr,83,33.2,force,upper_fy,0.00032582643325440586 +steady,sr,83,33.2,force,lower_fx,0.0022309781052172184 +steady,sr,83,33.2,force,lower_fy,-0.00037846851046197116 +steady,sr,84,33.6,force,front_fx,0.001893694861792028 +steady,sr,84,33.6,force,front_fy,-1.16172259367886e-05 +steady,sr,84,33.6,force,upper_fx,0.0022073257714509964 +steady,sr,84,33.6,force,upper_fy,0.00031879081507213414 +steady,sr,84,33.6,force,lower_fx,0.002240132773295045 +steady,sr,84,33.6,force,lower_fy,-0.0003777313104365021 +steady,sr,85,34.0,force,front_fx,0.0018961866153404117 +steady,sr,85,34.0,force,front_fy,-1.345895816484699e-05 +steady,sr,85,34.0,force,upper_fx,0.0022068163380026817 +steady,sr,85,34.0,force,upper_fy,0.0003154937585350126 +steady,sr,85,34.0,force,lower_fx,0.002247622236609459 +steady,sr,85,34.0,force,lower_fy,-0.00037613845779560506 +steady,sr,86,34.4,force,front_fx,0.0018948458600789309 +steady,sr,86,34.4,force,front_fy,-1.44128171086777e-05 +steady,sr,86,34.4,force,upper_fx,0.002203751588240266 +steady,sr,86,34.4,force,upper_fy,0.00031686187139712274 +steady,sr,86,34.4,force,lower_fx,0.0022490802221000195 +steady,sr,86,34.4,force,lower_fy,-0.0003745222056750208 +steady,sr,87,34.8,force,front_fx,0.0018916208064183593 +steady,sr,87,34.8,force,front_fy,-1.4266291145759169e-05 +steady,sr,87,34.8,force,upper_fx,0.0022000742610543966 +steady,sr,87,34.8,force,upper_fy,0.00032248013303615153 +steady,sr,87,34.8,force,lower_fx,0.002245943760499358 +steady,sr,87,34.8,force,lower_fy,-0.00037234253250062466 +steady,sr,88,35.2,force,front_fx,0.0018899849383160472 +steady,sr,88,35.2,force,front_fy,-1.2755253010254819e-05 +steady,sr,88,35.2,force,upper_fx,0.002199954818934202 +steady,sr,88,35.2,force,upper_fy,0.0003312567714601755 +steady,sr,88,35.2,force,lower_fx,0.0022423435002565384 +steady,sr,88,35.2,force,lower_fy,-0.00036866115988232195 +steady,sr,89,35.6,force,front_fx,0.0018913601525127888 +steady,sr,89,35.6,force,front_fy,-9.775191756489221e-06 +steady,sr,89,35.6,force,upper_fx,0.0022051804699003696 +steady,sr,89,35.6,force,upper_fy,0.00034218584187328815 +steady,sr,89,35.6,force,lower_fx,0.002240362111479044 +steady,sr,89,35.6,force,lower_fy,-0.0003631379804573953 +steady,sr,90,36.0,force,front_fx,0.001894475193694234 +steady,sr,90,36.0,force,front_fy,-5.705572675651638e-06 +steady,sr,90,36.0,force,upper_fx,0.002213867846876383 +steady,sr,90,36.0,force,upper_fy,0.0003538996970746666 +steady,sr,90,36.0,force,lower_fx,0.002238808898255229 +steady,sr,90,36.0,force,lower_fy,-0.000356176751665771 +steady,sr,91,36.4,force,front_fx,0.0018947775242850184 +steady,sr,91,36.4,force,front_fy,-1.0975247732858406e-06 +steady,sr,91,36.4,force,upper_fx,0.0022202348336577415 +steady,sr,91,36.4,force,upper_fy,0.0003650425060186535 +steady,sr,91,36.4,force,lower_fx,0.002232828177511692 +steady,sr,91,36.4,force,lower_fy,-0.0003484349581412971 +steady,sr,92,36.8,force,front_fx,0.0018926493357867002 +steady,sr,92,36.8,force,front_fy,3.3661244742688723e-06 +steady,sr,92,36.8,force,upper_fx,0.0022239750251173973 +steady,sr,92,36.8,force,upper_fy,0.000373500632122159 +steady,sr,92,36.8,force,lower_fx,0.0022232597693800926 +steady,sr,92,36.8,force,lower_fy,-0.00034006789792329073 +steady,sr,93,37.2,force,front_fx,0.0018899691058322787 +steady,sr,93,37.2,force,front_fy,6.891629709571134e-06 +steady,sr,93,37.2,force,upper_fx,0.0022266777232289314 +steady,sr,93,37.2,force,upper_fy,0.0003778468817472458 +steady,sr,93,37.2,force,lower_fx,0.002212696708738804 +steady,sr,93,37.2,force,lower_fy,-0.00033167348010465503 +steady,sr,94,37.6,force,front_fx,0.0018905493197962642 +steady,sr,94,37.6,force,front_fy,1.0000002475862857e-05 +steady,sr,94,37.6,force,upper_fx,0.0022330230567604303 +steady,sr,94,37.6,force,upper_fy,0.00037871007225476205 +steady,sr,94,37.6,force,lower_fx,0.0022069744300097227 +steady,sr,94,37.6,force,lower_fy,-0.00032336526783183217 +steady,sr,95,38.0,force,front_fx,0.0018933970713987947 +steady,sr,95,38.0,force,front_fy,1.237471224158071e-05 +steady,sr,95,38.0,force,upper_fx,0.0022414233535528183 +steady,sr,95,38.0,force,upper_fy,0.00037739425897598267 +steady,sr,95,38.0,force,lower_fx,0.0022054763976484537 +steady,sr,95,38.0,force,lower_fy,-0.0003172924043610692 +steady,sr,96,38.4,force,front_fx,0.0018960593733936548 +steady,sr,96,38.4,force,front_fy,1.384250572300516e-05 +steady,sr,96,38.4,force,upper_fx,0.0022486119996756315 +steady,sr,96,38.4,force,upper_fy,0.0003753489290829748 +steady,sr,96,38.4,force,lower_fx,0.0022057904861867428 +steady,sr,96,38.4,force,lower_fy,-0.0003153033903799951 +steady,sr,97,38.8,force,front_fx,0.001894934568554163 +steady,sr,97,38.8,force,front_fy,1.4578641639673151e-05 +steady,sr,97,38.8,force,upper_fx,0.0022496734745800495 +steady,sr,97,38.8,force,upper_fy,0.00037363707087934017 +steady,sr,97,38.8,force,lower_fx,0.0022037022281438112 +steady,sr,97,38.8,force,lower_fy,-0.0003180134226568043 +steady,sr,98,39.2,force,front_fx,0.0018919444410130382 +steady,sr,98,39.2,force,front_fy,1.3826457688992377e-05 +steady,sr,98,39.2,force,upper_fx,0.0022461405023932457 +steady,sr,98,39.2,force,upper_fy,0.00037110919947735965 +steady,sr,98,39.2,force,lower_fx,0.0022010134998708963 +steady,sr,98,39.2,force,lower_fy,-0.00032520401873625815 +steady,sr,99,39.6,force,front_fx,0.0018899902934208512 +steady,sr,99,39.6,force,front_fy,1.1944054676860105e-05 +steady,sr,99,39.6,force,upper_fx,0.0022413781844079494 +steady,sr,99,39.6,force,upper_fy,0.0003672340826597065 +steady,sr,99,39.6,force,lower_fx,0.0022011189721524715 +steady,sr,99,39.6,force,lower_fy,-0.0003350411425344646 +steady,sr,100,40.0,force,front_fx,0.0018910988001152873 +steady,sr,100,40.0,force,front_fy,8.390054972551297e-06 +steady,sr,100,40.0,force,upper_fx,0.0022384070325642824 +steady,sr,100,40.0,force,upper_fy,0.0003610730927903205 +steady,sr,100,40.0,force,lower_fx,0.0022064840886741877 +steady,sr,100,40.0,force,lower_fy,-0.0003465859917923808 +steady,sr,101,40.4,force,front_fx,0.0018940151203423738 +steady,sr,101,40.4,force,front_fy,4.187489594187355e-06 +steady,sr,101,40.4,force,upper_fx,0.002236051019281149 +steady,sr,101,40.4,force,upper_fy,0.00035362158087082207 +steady,sr,101,40.4,force,lower_fx,0.0022152308374643326 +steady,sr,101,40.4,force,lower_fy,-0.0003579026379156858 +steady,sr,102,40.8,force,front_fx,0.001894765067845583 +steady,sr,102,40.8,force,front_fy,-5.633867772303347e-07 +steady,sr,102,40.8,force,upper_fx,0.0022303087171167135 +steady,sr,102,40.8,force,upper_fy,0.00034526496892794967 +steady,sr,102,40.8,force,lower_fx,0.0022222804836928844 +steady,sr,102,40.8,force,lower_fy,-0.0003681656380649656 +steady,sr,103,41.2,force,front_fx,0.0018929906655102968 +steady,sr,103,41.2,force,front_fy,-4.675403488363372e-06 +steady,sr,103,41.2,force,upper_fx,0.00222114659845829 +steady,sr,103,41.2,force,upper_fy,0.0003369186306372285 +steady,sr,103,41.2,force,lower_fx,0.0022265296429395676 +steady,sr,103,41.2,force,lower_fy,-0.0003752224438358098 +steady,sr,104,41.6,force,front_fx,0.001890410203486681 +steady,sr,104,41.6,force,front_fy,-8.011958925635554e-06 +steady,sr,104,41.6,force,upper_fx,0.0022109404671937227 +steady,sr,104,41.6,force,upper_fy,0.00032875765464268625 +steady,sr,104,41.6,force,lower_fx,0.0022293219808489084 +steady,sr,104,41.6,force,lower_fy,-0.00037855756818316877 +steady,sr,105,42.0,force,front_fx,0.0018906529294326901 +steady,sr,105,42.0,force,front_fy,-1.0933627891063225e-05 +steady,sr,105,42.0,force,upper_fx,0.002205261029303074 +steady,sr,105,42.0,force,upper_fy,0.00032116513466462493 +steady,sr,105,42.0,force,lower_fx,0.0022350449580699205 +steady,sr,105,42.0,force,lower_fy,-0.00037871237145736814 +steady,sr,106,42.4,force,front_fx,0.0018931120866909623 +steady,sr,106,42.4,force,front_fy,-1.2972677723155357e-05 +steady,sr,106,42.4,force,upper_fx,0.0022038661409169436 +steady,sr,106,42.4,force,upper_fy,0.0003162803186569363 +steady,sr,106,42.4,force,lower_fx,0.002242594724521041 +steady,sr,106,42.4,force,lower_fy,-0.0003768794995266944 +steady,sr,107,42.8,force,front_fx,0.0018958266591653228 +steady,sr,107,42.8,force,front_fy,-1.4208872016752139e-05 +steady,sr,107,42.8,force,upper_fx,0.00220489758066833 +steady,sr,107,42.8,force,upper_fy,0.0003155600279569626 +steady,sr,107,42.8,force,lower_fx,0.002249268814921379 +steady,sr,107,42.8,force,lower_fy,-0.0003746032016351819 +steady,sr,108,43.2,force,front_fx,0.0018949535442516208 +steady,sr,108,43.2,force,front_fy,-1.4476834621746093e-05 +steady,sr,108,43.2,force,upper_fx,0.002203800482675433 +steady,sr,108,43.2,force,upper_fy,0.0003197932383045554 +steady,sr,108,43.2,force,lower_fx,0.0022499440237879753 +steady,sr,108,43.2,force,lower_fy,-0.00037259439704939723 +steady,sr,109,43.6,force,front_fx,0.0018922615563496947 +steady,sr,109,43.6,force,front_fy,-1.3335044059203938e-05 +steady,sr,109,43.6,force,upper_fx,0.0022021678742021322 +steady,sr,109,43.6,force,upper_fy,0.00032824548543430865 +steady,sr,109,43.6,force,lower_fx,0.0022460378240793943 +steady,sr,109,43.6,force,lower_fy,-0.00036984868347644806 +steady,sr,110,44.0,force,front_fx,0.0018900585127994418 +steady,sr,110,44.0,force,front_fy,-1.0853255844267551e-05 +steady,sr,110,44.0,force,upper_fx,0.0022025408688932657 +steady,sr,110,44.0,force,upper_fy,0.0003391559876035899 +steady,sr,110,44.0,force,lower_fx,0.0022402601316571236 +steady,sr,110,44.0,force,lower_fy,-0.00036550324875861406 +steady,sr,111,44.4,force,front_fx,0.0018909014761447906 +steady,sr,111,44.4,force,front_fy,-6.983280400163494e-06 +steady,sr,111,44.4,force,upper_fx,0.002207997487857938 +steady,sr,111,44.4,force,upper_fy,0.000350887916283682 +steady,sr,111,44.4,force,lower_fx,0.002236322732642293 +steady,sr,111,44.4,force,lower_fy,-0.00035888393176719546 +steady,sr,112,44.8,force,front_fx,0.0018935444531962276 +steady,sr,112,44.8,force,front_fy,-2.566795501479646e-06 +steady,sr,112,44.8,force,upper_fx,0.0022166601847857237 +steady,sr,112,44.8,force,upper_fy,0.00036173686385154724 +steady,sr,112,44.8,force,lower_fx,0.0022331587970256805 +steady,sr,112,44.8,force,lower_fy,-0.0003508453955873847 +steady,sr,113,45.2,force,front_fx,0.0018947067437693477 +steady,sr,113,45.2,force,front_fy,2.1332543838070706e-06 +steady,sr,113,45.2,force,upper_fx,0.002224308205768466 +steady,sr,113,45.2,force,upper_fy,0.0003708465665113181 +steady,sr,113,45.2,force,lower_fx,0.0022276975214481354 +steady,sr,113,45.2,force,lower_fy,-0.0003420756256673485 +steady,sr,114,45.6,force,front_fx,0.0018932935781776905 +steady,sr,114,45.6,force,front_fy,5.863997103006113e-06 +steady,sr,114,45.6,force,upper_fx,0.002229039091616869 +steady,sr,114,45.6,force,upper_fy,0.00037650071317330003 +steady,sr,114,45.6,force,lower_fx,0.002219022251665592 +steady,sr,114,45.6,force,lower_fy,-0.0003338354581501335 +steady,sr,115,46.0,force,front_fx,0.0018909130012616515 +steady,sr,115,46.0,force,front_fy,9.138320820056833e-06 +steady,sr,115,46.0,force,upper_fx,0.0022319837007671595 +steady,sr,115,46.0,force,upper_fy,0.0003789822803810239 +steady,sr,115,46.0,force,lower_fx,0.0022094144951552153 +steady,sr,115,46.0,force,lower_fy,-0.0003259413642808795 +steady,sr,116,46.4,force,front_fx,0.0018907916964963078 +steady,sr,116,46.4,force,front_fy,1.171289386547869e-05 +steady,sr,116,46.4,force,upper_fx,0.0022370079532265663 +steady,sr,116,46.4,force,upper_fy,0.00037845384213142097 +steady,sr,116,46.4,force,lower_fx,0.0022037767339497805 +steady,sr,116,46.4,force,lower_fy,-0.0003193464071955532 +steady,sr,117,46.8,force,front_fx,0.0018928329227492213 +steady,sr,117,46.8,force,front_fy,1.3512567420548294e-05 +steady,sr,117,46.8,force,upper_fx,0.0022436014842242002 +steady,sr,117,46.8,force,upper_fy,0.0003763031563721597 +steady,sr,117,46.8,force,lower_fx,0.0022025045473128557 +steady,sr,117,46.8,force,lower_fy,-0.0003157101455144584 +steady,sr,118,47.2,force,front_fx,0.0018954932456836104 +steady,sr,118,47.2,force,front_fy,1.4440288396144751e-05 +steady,sr,118,47.2,force,upper_fx,0.0022495868615806103 +steady,sr,118,47.2,force,upper_fy,0.0003738114610314369 +steady,sr,118,47.2,force,lower_fx,0.0022041373886168003 +steady,sr,118,47.2,force,lower_fy,-0.0003163750807289034 +steady,sr,119,47.6,force,front_fx,0.001894925837405026 +steady,sr,119,47.6,force,front_fy,1.4217763236956671e-05 +steady,sr,119,47.6,force,upper_fx,0.0022498886100947857 +steady,sr,119,47.6,force,upper_fy,0.00037147648981772363 +steady,sr,119,47.6,force,lower_fx,0.002204070333391428 +steady,sr,119,47.6,force,lower_fy,-0.0003220781800337136 +steady,sr,120,48.0,force,front_fx,0.0018925558542832732 +steady,sr,120,48.0,force,front_fy,1.2665483154705726e-05 +steady,sr,120,48.0,force,upper_fx,0.0022456394508481026 +steady,sr,120,48.0,force,upper_fy,0.0003684398252516985 +steady,sr,120,48.0,force,lower_fx,0.002203491283580661 +steady,sr,120,48.0,force,lower_fy,-0.0003316575021017343 +steady,sr,121,48.4,force,front_fx,0.0018901959992945194 +steady,sr,121,48.4,force,front_fy,9.594619768904522e-06 +steady,sr,121,48.4,force,upper_fx,0.0022389800287783146 +steady,sr,121,48.4,force,upper_fy,0.000363551895134151 +steady,sr,121,48.4,force,lower_fx,0.002204203512519598 +steady,sr,121,48.4,force,lower_fy,-0.00034342342405579984 +steady,sr,122,48.8,force,front_fx,0.0018907453631982207 +steady,sr,122,48.8,force,front_fy,5.5205082389875315e-06 +steady,sr,122,48.8,force,upper_fx,0.002234102226793766 +steady,sr,122,48.8,force,upper_fy,0.00035651755752041936 +steady,sr,122,48.8,force,lower_fx,0.002209677593782544 +steady,sr,122,48.8,force,lower_fy,-0.00035506163840182126 +steady,sr,123,49.2,force,front_fx,0.0018930728547275066 +steady,sr,123,49.2,force,front_fy,8.794621066954278e-07 +steady,sr,123,49.2,force,upper_fx,0.0022301829885691404 +steady,sr,123,49.2,force,upper_fy,0.00034788530319929123 +steady,sr,123,49.2,force,lower_fx,0.0022181561216712 +steady,sr,123,49.2,force,lower_fy,-0.00036530938814394176 +steady,sr,124,49.6,force,front_fx,0.0018946154741570354 +steady,sr,124,49.6,force,front_fy,-3.5376003779674647e-06 +steady,sr,124,49.6,force,upper_fx,0.002225024625658989 +steady,sr,124,49.6,force,upper_fy,0.0003389479243196547 +steady,sr,124,49.6,force,lower_fx,0.0022263217251747847 +steady,sr,124,49.6,force,lower_fy,-0.00037302172859199345 +steady,sr,125,50.0,force,front_fx,0.0018935785628855228 +steady,sr,125,50.0,force,front_fy,-7.040865966700949e-06 +steady,sr,125,50.0,force,upper_fx,0.0022169374860823154 +steady,sr,125,50.0,force,upper_fy,0.0003307734150439501 +steady,sr,125,50.0,force,lower_fx,0.002231482183560729 +steady,sr,125,50.0,force,lower_fy,-0.0003774535143747926 +steady,sr,126,50.4,force,front_fx,0.0018914623651653528 +steady,sr,126,50.4,force,front_fy,-1.012633310892852e-05 +steady,sr,126,50.4,force,upper_fx,0.0022080952767282724 +steady,sr,126,50.4,force,upper_fy,0.0003233957977499813 +steady,sr,126,50.4,force,lower_fx,0.0022346319165080786 +steady,sr,126,50.4,force,lower_fy,-0.0003790641494560987 +steady,sr,127,50.8,force,front_fx,0.001890950370579958 +steady,sr,127,50.8,force,front_fy,-1.2455312571546528e-05 +steady,sr,127,50.8,force,upper_fx,0.002202531322836876 +steady,sr,127,50.8,force,upper_fy,0.00031787194893695414 +steady,sr,127,50.8,force,lower_fx,0.0022388582583516836 +steady,sr,127,50.8,force,lower_fy,-0.00037806975888088346 +steady,sr,128,51.2,force,front_fx,0.0018925617914646864 +steady,sr,128,51.2,force,front_fy,-1.389020326314494e-05 +steady,sr,128,51.2,force,upper_fx,0.0022013960406184196 +steady,sr,128,51.2,force,upper_fy,0.0003156797611154616 +steady,sr,128,51.2,force,lower_fx,0.0022444408386945724 +steady,sr,128,51.2,force,lower_fy,-0.00037561182398349047 +steady,sr,129,51.6,force,front_fx,0.0018950902158394456 +steady,sr,129,51.6,force,front_fy,-1.4575270142813679e-05 +steady,sr,129,51.6,force,upper_fx,0.0022035297006368637 +steady,sr,129,51.6,force,upper_fy,0.0003177061735186726 +steady,sr,129,51.6,force,lower_fx,0.002249563578516245 +steady,sr,129,51.6,force,lower_fy,-0.00037300839903764427 +steady,sr,130,52.0,force,front_fx,0.0018948604119941592 +steady,sr,130,52.0,force,front_fy,-1.3774977560387924e-05 +steady,sr,130,52.0,force,upper_fx,0.002204524353146553 +steady,sr,130,52.0,force,upper_fy,0.0003248518332839012 +steady,sr,130,52.0,force,lower_fx,0.0022495295852422714 +steady,sr,130,52.0,force,lower_fy,-0.00037024685298092663 +steady,sr,131,52.4,force,front_fx,0.0018928397912532091 +steady,sr,131,52.4,force,front_fy,-1.1812278899014927e-05 +steady,sr,131,52.4,force,upper_fx,0.002204983728006482 +steady,sr,131,52.4,force,upper_fy,0.0003353787469677627 +steady,sr,131,52.4,force,lower_fx,0.002244953764602542 +steady,sr,131,52.4,force,lower_fy,-0.00036685005761682987 +steady,sr,132,52.8,force,front_fx,0.001890402752906084 +steady,sr,132,52.8,force,front_fy,-8.21406956674764e-06 +steady,sr,132,52.8,force,upper_fx,0.0022060731425881386 +steady,sr,132,52.8,force,upper_fy,0.0003477333812043071 +steady,sr,132,52.8,force,lower_fx,0.0022375464905053377 +steady,sr,132,52.8,force,lower_fy,-0.00036139917210675776 +steady,sr,133,53.2,force,front_fx,0.001890609273687005 +steady,sr,133,53.2,force,front_fy,-3.977426786150318e-06 +steady,sr,133,53.2,force,upper_fx,0.00221148319542408 +steady,sr,133,53.2,force,upper_fy,0.00035907328128814697 +steady,sr,133,53.2,force,lower_fx,0.002231762045994401 +steady,sr,133,53.2,force,lower_fy,-0.00035394172300584614 +steady,sr,134,53.6,force,front_fx,0.0018926337361335754 +steady,sr,134,53.6,force,front_fy,7.653530360585137e-07 +steady,sr,134,53.6,force,upper_fx,0.0022197295911610126 +steady,sr,134,53.6,force,upper_fy,0.00036849782918579876 +steady,sr,134,53.6,force,lower_fx,0.002227174583822489 +steady,sr,134,53.6,force,lower_fy,-0.0003448392963036895 +steady,sr,135,54.0,force,front_fx,0.0018945022020488977 +steady,sr,135,54.0,force,front_fy,4.836461812374182e-06 +steady,sr,135,54.0,force,upper_fx,0.002228315221145749 +steady,sr,135,54.0,force,upper_fy,0.00037474691634997725 +steady,sr,135,54.0,force,lower_fx,0.002222350100055337 +steady,sr,135,54.0,force,lower_fy,-0.00033586015342734754 +steady,sr,136,54.4,force,front_fx,0.0018938450375571847 +steady,sr,136,54.4,force,front_fy,8.16168812889373e-06 +steady,sr,136,54.4,force,upper_fx,0.002233858685940504 +steady,sr,136,54.4,force,upper_fy,0.0003780712140724063 +steady,sr,136,54.4,force,lower_fx,0.0022149409633129835 +steady,sr,136,54.4,force,lower_fy,-0.00032782513881102204 +steady,sr,137,54.8,force,front_fx,0.0018920344300568104 +steady,sr,137,54.8,force,front_fy,1.1043151971534826e-05 +steady,sr,137,54.8,force,upper_fx,0.0022371939849108458 +steady,sr,137,54.8,force,upper_fy,0.00037891219835728407 +steady,sr,137,54.8,force,lower_fx,0.002206961391493678 +steady,sr,137,54.8,force,lower_fy,-0.0003211179282516241 +steady,sr,138,55.2,force,front_fx,0.001891119172796607 +steady,sr,138,55.2,force,front_fy,1.3048958862782456e-05 +steady,sr,138,55.2,force,upper_fx,0.002240564441308379 +steady,sr,138,55.2,force,upper_fy,0.00037750526098534465 +steady,sr,138,55.2,force,lower_fx,0.002201516879722476 +steady,sr,138,55.2,force,lower_fy,-0.0003168745315633714 +steady,sr,139,55.6,force,front_fx,0.001892303698696196 +steady,sr,139,55.6,force,front_fy,1.4240068594517652e-05 +steady,sr,139,55.6,force,upper_fx,0.0022450853139162064 +steady,sr,139,55.6,force,upper_fy,0.00037493903073482215 +steady,sr,139,55.6,force,lower_fx,0.002200547605752945 +steady,sr,139,55.6,force,lower_fy,-0.0003160855558235198 +steady,sr,140,56.0,force,front_fx,0.0018946060445159674 +steady,sr,140,56.0,force,front_fy,1.4455305972660426e-05 +steady,sr,140,56.0,force,upper_fx,0.002249207580462098 +steady,sr,140,56.0,force,upper_fy,0.00037206479464657605 +steady,sr,140,56.0,force,lower_fx,0.0022030710242688656 +steady,sr,140,56.0,force,lower_fy,-0.00031965889502316713 +steady,sr,141,56.4,force,front_fx,0.0018947741482406855 +steady,sr,141,56.4,force,front_fy,1.3255594240035862e-05 +steady,sr,141,56.4,force,upper_fx,0.002248858567327261 +steady,sr,141,56.4,force,upper_fy,0.0003689853474497795 +steady,sr,141,56.4,force,lower_fx,0.0022051685955375433 +steady,sr,141,56.4,force,lower_fy,-0.0003279653610661626 +steady,sr,142,56.8,force,front_fx,0.0018930971855297685 +steady,sr,142,56.8,force,front_fy,1.0705169188440777e-05 +steady,sr,142,56.8,force,upper_fx,0.002243984956294298 +steady,sr,142,56.8,force,upper_fy,0.0003649968421086669 +steady,sr,142,56.8,force,lower_fx,0.002206619596108794 +steady,sr,142,56.8,force,lower_fy,-0.0003394100349396467 +steady,sr,143,57.2,force,front_fx,0.0018906350014731288 +steady,sr,143,57.2,force,front_fy,6.789759027014952e-06 +steady,sr,143,57.2,force,upper_fx,0.0022359646391123533 +steady,sr,143,57.2,force,upper_fy,0.00035909368307329714 +steady,sr,143,57.2,force,lower_fx,0.0022081255447119474 +steady,sr,143,57.2,force,lower_fy,-0.00035194322117604315 +steady,sr,144,57.6,force,front_fx,0.0018905001925304532 +steady,sr,144,57.6,force,front_fy,2.3529084955953294e-06 +steady,sr,144,57.6,force,upper_fx,0.002229321515187621 +steady,sr,144,57.6,force,upper_fy,0.00035114644560962915 +steady,sr,144,57.6,force,lower_fx,0.002213390776887536 +steady,sr,144,57.6,force,lower_fy,-0.00036287237890064716 +steady,sr,145,58.0,force,front_fx,0.0018922296585515141 +steady,sr,145,58.0,force,front_fy,-2.3219070044433465e-06 +steady,sr,145,58.0,force,upper_fx,0.0022241766564548016 +steady,sr,145,58.0,force,upper_fy,0.000341765204211697 +steady,sr,145,58.0,force,lower_fx,0.0022213784977793694 +steady,sr,145,58.0,force,lower_fy,-0.00037123457877896726 +steady,sr,146,58.4,force,front_fx,0.0018943795002996922 +steady,sr,146,58.4,force,front_fy,-6.0132988437544554e-06 +steady,sr,146,58.4,force,upper_fx,0.002219698391854763 +steady,sr,146,58.4,force,upper_fy,0.0003328525344841182 +steady,sr,146,58.4,force,lower_fx,0.002230290090665221 +steady,sr,146,58.4,force,lower_fy,-0.0003760390100069344 +steady,sr,147,58.8,force,front_fx,0.001894111162982881 +steady,sr,147,58.8,force,front_fy,-9.272596798837185e-06 +steady,sr,147,58.8,force,upper_fx,0.0022130808793008327 +steady,sr,147,58.8,force,upper_fy,0.00032500826637260616 +steady,sr,147,58.8,force,lower_fx,0.00223616068251431 +steady,sr,147,58.8,force,lower_fy,-0.0003784245636779815 +steady,sr,148,59.2,force,front_fx,0.0018925820477306843 +steady,sr,148,59.2,force,front_fy,-1.1814739991677925e-05 +steady,sr,148,59.2,force,upper_fx,0.002205978613346815 +steady,sr,148,59.2,force,upper_fy,0.00031922748894430697 +steady,sr,148,59.2,force,lower_fx,0.0022396205458790064 +steady,sr,148,59.2,force,lower_fy,-0.00037851554225198925 +steady,sr,149,59.6,force,front_fx,0.0018912797095254064 +steady,sr,149,59.6,force,front_fy,-1.356439315713942e-05 +steady,sr,149,59.6,force,upper_fx,0.0022007240913808346 +steady,sr,149,59.6,force,upper_fy,0.00031632636091671884 +steady,sr,149,59.6,force,lower_fx,0.0022420843597501516 +steady,sr,149,59.6,force,lower_fy,-0.000376859272364527 +steady,sr,150,60.0,force,front_fx,0.001892063650302589 +steady,sr,150,60.0,force,front_fy,-1.4468211702478584e-05 +steady,sr,150,60.0,force,upper_fx,0.0021999699529260397 +steady,sr,150,60.0,force,upper_fy,0.0003170176933053881 +steady,sr,150,60.0,force,lower_fx,0.0022455183789134026 +steady,sr,150,60.0,force,lower_fy,-0.00037421128945425153 +steady,sr,151,60.4,force,front_fx,0.0018940952140837908 +steady,sr,151,60.4,force,front_fy,-1.416139548382489e-05 +steady,sr,151,60.4,force,upper_fx,0.0022028032690286636 +steady,sr,151,60.4,force,upper_fy,0.00032213079975917935 +steady,sr,151,60.4,force,lower_fx,0.0022485593799501657 +steady,sr,151,60.4,force,lower_fy,-0.0003710369346663356 +steady,sr,152,60.8,force,front_fx,0.0018946670461446047 +steady,sr,152,60.8,force,front_fy,-1.2572812011057977e-05 +steady,sr,152,60.8,force,upper_fx,0.00220599677413702 +steady,sr,152,60.8,force,upper_fy,0.0003314386704005301 +steady,sr,152,60.8,force,lower_fx,0.0022478948812931776 +steady,sr,152,60.8,force,lower_fy,-0.00036759264185093343 +steady,sr,153,61.2,force,front_fx,0.0018933091778308153 +steady,sr,153,61.2,force,front_fy,-9.418163244845346e-06 +steady,sr,153,61.2,force,upper_fx,0.002208343707025051 +steady,sr,153,61.2,force,upper_fy,0.00034361626603640616 +steady,sr,153,61.2,force,lower_fx,0.002242725109681487 +steady,sr,153,61.2,force,lower_fy,-0.0003629237471614033 +steady,sr,154,61.6,force,front_fx,0.0018909252248704433 +steady,sr,154,61.6,force,front_fy,-5.329631221684394e-06 +steady,sr,154,61.6,force,upper_fx,0.002210341626778245 +steady,sr,154,61.6,force,upper_fy,0.000355996162397787 +steady,sr,154,61.6,force,lower_fx,0.0022342463489621878 +steady,sr,154,61.6,force,lower_fy,-0.00035661697620525956 +steady,sr,155,62.0,force,front_fx,0.0018904251046478748 +steady,sr,155,62.0,force,front_fy,-6.6535460518935e-07 +steady,sr,155,62.0,force,upper_fx,0.0022153796162456274 +steady,sr,155,62.0,force,upper_fy,0.00036639400059357285 +steady,sr,155,62.0,force,lower_fx,0.0022268234752118587 +steady,sr,155,62.0,force,lower_fy,-0.0003481554158497602 +steady,sr,156,62.4,force,front_fx,0.0018918827408924699 +steady,sr,156,62.4,force,front_fy,3.7037536912976066e-06 +steady,sr,156,62.4,force,upper_fx,0.0022231293842196465 +steady,sr,156,62.4,force,upper_fy,0.00037344894371926785 +steady,sr,156,62.4,force,lower_fx,0.002221238799393177 +steady,sr,156,62.4,force,lower_fy,-0.0003387517936062068 +steady,sr,157,62.8,force,front_fx,0.0018942354945465922 +steady,sr,157,62.8,force,front_fy,7.183110938058235e-06 +steady,sr,157,62.8,force,upper_fx,0.0022322258446365595 +steady,sr,157,62.8,force,upper_fy,0.0003770205075852573 +steady,sr,157,62.8,force,lower_fx,0.002217122819274664 +steady,sr,157,62.8,force,lower_fy,-0.0003298730298411101 +steady,sr,158,63.2,force,front_fx,0.001894364831969142 +steady,sr,158,63.2,force,front_fy,1.0252368156216107e-05 +steady,sr,158,63.2,force,upper_fx,0.0022383765317499638 +steady,sr,158,63.2,force,upper_fy,0.00037846172926947474 +steady,sr,158,63.2,force,lower_fx,0.0022113618906587362 +steady,sr,158,63.2,force,lower_fy,-0.0003224829270038754 +steady,sr,159,63.6,force,front_fx,0.0018930835649371147 +steady,sr,159,63.6,force,front_fy,1.253666323464131e-05 +steady,sr,159,63.6,force,upper_fx,0.002241844777017832 +steady,sr,159,63.6,force,upper_fy,0.00037799429264850914 +steady,sr,159,63.6,force,lower_fx,0.002205152064561844 +steady,sr,159,63.6,force,lower_fy,-0.00031770102214068174 +steady,sr,160,64.0,force,front_fx,0.0018914287211373448 +steady,sr,160,64.0,force,front_fy,1.3940513781562913e-05 +steady,sr,160,64.0,force,upper_fx,0.002243402414023876 +steady,sr,160,64.0,force,upper_fy,0.00037611572770401835 +steady,sr,160,64.0,force,lower_fx,0.0022001417819410563 +steady,sr,160,64.0,force,lower_fy,-0.0003162918146699667 +steady,sr,161,64.4,force,front_fx,0.0018918233690783381 +steady,sr,161,64.4,force,front_fy,1.4567761354555842e-05 +steady,sr,161,64.4,force,upper_fx,0.0022457041777670383 +steady,sr,161,64.4,force,upper_fy,0.00037342877476476133 +steady,sr,161,64.4,force,lower_fx,0.0021996397990733385 +steady,sr,161,64.4,force,lower_fy,-0.0003184702363796532 +steady,sr,162,64.8,force,front_fx,0.001893581124022603 +steady,sr,162,64.8,force,front_fy,1.3719569324166514e-05 +steady,sr,162,64.8,force,upper_fx,0.0022476378362625837 +steady,sr,162,64.8,force,upper_fy,0.00036992275272496045 +steady,sr,162,64.8,force,lower_fx,0.002202771371230483 +steady,sr,162,64.8,force,lower_fy,-0.00032505724811926484 +steady,sr,163,65.2,force,front_fx,0.001894545741379261 +steady,sr,163,65.2,force,front_fy,1.1680561328830663e-05 +steady,sr,163,65.2,force,upper_fx,0.002246660180389881 +steady,sr,163,65.2,force,upper_fy,0.0003660041547846049 +steady,sr,163,65.2,force,lower_fx,0.0022069946862757206 +steady,sr,163,65.2,force,lower_fy,-0.0003352521744091064 +steady,sr,164,65.6,force,front_fx,0.0018934753024950624 +steady,sr,164,65.6,force,front_fy,8.041553883231245e-06 +steady,sr,164,65.6,force,upper_fx,0.002241177950054407 +steady,sr,164,65.6,force,upper_fy,0.0003606945392675698 +steady,sr,164,65.6,force,lower_fx,0.002210150472819805 +steady,sr,164,65.6,force,lower_fy,-0.0003478448779787868 +steady,sr,165,66.0,force,front_fx,0.0018912320956587791 +steady,sr,165,66.0,force,front_fy,3.7720726595580345e-06 +steady,sr,165,66.0,force,upper_fx,0.0022324088495224714 +steady,sr,165,66.0,force,upper_fy,0.0003539073804859072 +steady,sr,165,66.0,force,lower_fx,0.0022126794792711735 +steady,sr,165,66.0,force,lower_fy,-0.0003598868497647345 +steady,sr,166,66.4,force,front_fx,0.0018903680611401796 +steady,sr,166,66.4,force,front_fy,-9.630573458707659e-07 +steady,sr,166,66.4,force,upper_fx,0.002224292606115341 +steady,sr,166,66.4,force,upper_fy,0.00034508787211962044 +steady,sr,166,66.4,force,lower_fx,0.0022174438927322626 +steady,sr,166,66.4,force,lower_fy,-0.0003694991464726627 +steady,sr,167,66.8,force,front_fx,0.0018916170811280608 +steady,sr,167,66.8,force,front_fy,-4.990959041606402e-06 +steady,sr,167,66.8,force,upper_fx,0.002218416891992092 +steady,sr,167,66.8,force,upper_fy,0.00033576085115782917 +steady,sr,167,66.8,force,lower_fx,0.002224972937256098 +steady,sr,167,66.8,force,lower_fy,-0.00037520885234698653 +steady,sr,168,67.2,force,front_fx,0.0018940962618216872 +steady,sr,168,67.2,force,front_fy,-8.300238732772414e-06 +steady,sr,168,67.2,force,upper_fx,0.002214656211435795 +steady,sr,168,67.2,force,upper_fy,0.0003270191955380142 +steady,sr,168,67.2,force,lower_fx,0.002234111074358225 +steady,sr,168,67.2,force,lower_fy,-0.00037768075708299875 +steady,sr,169,67.6,force,front_fx,0.0018946087220683694 +steady,sr,169,67.6,force,front_fy,-1.1149233614560217e-05 +steady,sr,169,67.6,force,upper_fx,0.002209797501564026 +steady,sr,169,67.6,force,upper_fy,0.0003202555235475302 +steady,sr,169,67.6,force,lower_fx,0.002240476431325078 +steady,sr,169,67.6,force,lower_fy,-0.00037827546475455165 +steady,sr,170,68.0,force,front_fx,0.0018935143016278744 +steady,sr,170,68.0,force,front_fy,-1.3122814380039927e-05 +steady,sr,170,68.0,force,upper_fx,0.002204452408477664 +steady,sr,170,68.0,force,upper_fy,0.00031665622373111546 +steady,sr,170,68.0,force,lower_fx,0.002243809634819627 +steady,sr,170,68.0,force,lower_fy,-0.00037731591146439314 +steady,sr,171,68.4,force,front_fx,0.0018915679538622499 +steady,sr,171,68.4,force,front_fy,-1.427154438715661e-05 +steady,sr,171,68.4,force,upper_fx,0.0021998081356287003 +steady,sr,171,68.4,force,upper_fy,0.00031670377939008176 +steady,sr,171,68.4,force,lower_fx,0.0022444843780249357 +steady,sr,171,68.4,force,lower_fy,-0.00037537087337113917 +steady,sr,172,68.8,force,front_fx,0.0018915890250355005 +steady,sr,172,68.8,force,front_fy,-1.4431185263674706e-05 +steady,sr,172,68.8,force,upper_fx,0.002199544571340084 +steady,sr,172,68.8,force,upper_fy,0.0003205103857908398 +steady,sr,172,68.8,force,lower_fx,0.0022456543520092964 +steady,sr,172,68.8,force,lower_fy,-0.00037250082823447883 +steady,sr,173,69.2,force,front_fx,0.0018931061495095491 +steady,sr,173,69.2,force,front_fy,-1.3173721526982263e-05 +steady,sr,173,69.2,force,upper_fx,0.0022030004765838385 +steady,sr,173,69.2,force,upper_fy,0.0003283364640083164 +steady,sr,173,69.2,force,lower_fx,0.0022464850917458534 +steady,sr,173,69.2,force,lower_fy,-0.00036875117802992463 +steady,sr,174,69.6,force,front_fx,0.0018944175681099296 +steady,sr,174,69.6,force,front_fy,-1.0555744665907696e-05 +steady,sr,174,69.6,force,upper_fx,0.0022081511560827494 +steady,sr,174,69.6,force,upper_fy,0.00033935398096218705 +steady,sr,174,69.6,force,lower_fx,0.0022451647091656923 +steady,sr,174,69.6,force,lower_fy,-0.000364175095455721 +steady,sr,175,70.0,force,front_fx,0.001893606036901474 +steady,sr,175,70.0,force,front_fy,-6.604209829674801e-06 +steady,sr,175,70.0,force,upper_fx,0.0022120277862995863 +steady,sr,175,70.0,force,upper_fy,0.00035199656849727035 +steady,sr,175,70.0,force,lower_fx,0.002239386085420847 +steady,sr,175,70.0,force,lower_fy,-0.0003583177167456597 +steady,sr,176,70.4,force,front_fx,0.0018915405962616205 +steady,sr,176,70.4,force,front_fy,-2.1468347313202685e-06 +steady,sr,176,70.4,force,upper_fx,0.0022150876466184855 +steady,sr,176,70.4,force,upper_fy,0.00036354345502331853 +steady,sr,176,70.4,force,lower_fx,0.0022304474841803312 +steady,sr,176,70.4,force,lower_fy,-0.00035098876105621457 +steady,sr,177,70.8,force,front_fx,0.0018903581658378243 +steady,sr,177,70.8,force,front_fy,2.5064448436751263e-06 +steady,sr,177,70.8,force,upper_fx,0.002219588728621602 +steady,sr,177,70.8,force,upper_fy,0.00037214640178717673 +steady,sr,177,70.8,force,lower_fx,0.0022217838559299707 +steady,sr,177,70.8,force,lower_fy,-0.000341979437507689 +steady,sr,178,71.2,force,front_fx,0.0018914372194558382 +steady,sr,178,71.2,force,front_fy,6.1563046074297745e-06 +steady,sr,178,71.2,force,upper_fx,0.0022269270848482847 +steady,sr,178,71.2,force,upper_fy,0.00037652390892617404 +steady,sr,178,71.2,force,lower_fx,0.002215753076598048 +steady,sr,178,71.2,force,lower_fy,-0.0003328332968521863 +steady,sr,179,71.6,force,front_fx,0.0018939567962661386 +steady,sr,179,71.6,force,front_fy,9.400887392985169e-06 +steady,sr,179,71.6,force,upper_fx,0.0022359162103384733 +steady,sr,179,71.6,force,upper_fy,0.0003780837869271636 +steady,sr,179,71.6,force,lower_fx,0.002212326740846038 +steady,sr,179,71.6,force,lower_fy,-0.0003243204264435917 +steady,sr,180,72.0,force,front_fx,0.0018948061624541879 +steady,sr,180,72.0,force,front_fy,1.19118358270498e-05 +steady,sr,180,72.0,force,upper_fx,0.002242425689473748 +steady,sr,180,72.0,force,upper_fy,0.0003778735117521137 +steady,sr,180,72.0,force,lower_fx,0.0022083811927586794 +steady,sr,180,72.0,force,lower_fy,-0.00031842105090618134 +steady,sr,181,72.4,force,front_fx,0.0018938507419079542 +steady,sr,181,72.4,force,front_fy,1.3614471754408441e-05 +steady,sr,181,72.4,force,upper_fx,0.002245501382276416 +steady,sr,181,72.4,force,upper_fy,0.00037656151107512414 +steady,sr,181,72.4,force,lower_fx,0.0022038754541426897 +steady,sr,181,72.4,force,lower_fy,-0.0003160865162499249 +steady,sr,182,72.8,force,front_fx,0.0018916991539299488 +steady,sr,182,72.8,force,front_fy,1.4494847164314706e-05 +steady,sr,182,72.8,force,upper_fx,0.002245328389108181 +steady,sr,182,72.8,force,upper_fy,0.0003745772410184145 +steady,sr,182,72.8,force,lower_fx,0.0021996949799358845 +steady,sr,182,72.8,force,lower_fy,-0.00031762439175508916 +steady,sr,183,73.2,force,front_fx,0.0018913740059360862 +steady,sr,183,73.2,force,front_fy,1.41070750032668e-05 +steady,sr,183,73.2,force,upper_fx,0.0022453574929386377 +steady,sr,183,73.2,force,upper_fy,0.000371459755115211 +steady,sr,183,73.2,force,lower_fx,0.002199698705226183 +steady,sr,183,73.2,force,lower_fy,-0.0003230591246392578 +steady,sr,184,73.6,force,front_fx,0.0018926815828308463 +steady,sr,184,73.6,force,front_fy,1.2483360478654504e-05 +steady,sr,184,73.6,force,upper_fx,0.002245137467980385 +steady,sr,184,73.6,force,upper_fy,0.00036745064426213503 +steady,sr,184,73.6,force,lower_fx,0.0022035040892660618 +steady,sr,184,73.6,force,lower_fy,-0.0003319438546895981 +steady,sr,185,74.0,force,front_fx,0.0018942583119496703 +steady,sr,185,74.0,force,front_fy,9.245788533007726e-06 +steady,sr,185,74.0,force,upper_fx,0.0022434177808463573 +steady,sr,185,74.0,force,upper_fy,0.00036212679697200656 +steady,sr,185,74.0,force,lower_fx,0.002209434751421213 +steady,sr,185,74.0,force,lower_fy,-0.0003436323022469878 +steady,sr,186,74.4,force,front_fx,0.0018936913693323731 +steady,sr,186,74.4,force,front_fy,5.146017429069616e-06 +steady,sr,186,74.4,force,upper_fx,0.0022373702377080917 +steady,sr,186,74.4,force,upper_fy,0.0003557922027539462 +steady,sr,186,74.4,force,lower_fx,0.0022139791399240494 +steady,sr,186,74.4,force,lower_fy,-0.00035599255352281034 +steady,sr,187,74.8,force,front_fx,0.0018918297719210386 +steady,sr,187,74.8,force,front_fy,4.50868185453146e-07 +steady,sr,187,74.8,force,upper_fx,0.002228383207693696 +steady,sr,187,74.8,force,upper_fy,0.0003478724102023989 +steady,sr,187,74.8,force,lower_fx,0.0022175193298608065 +steady,sr,187,74.8,force,lower_fy,-0.0003669244179036468 +steady,sr,188,75.2,force,front_fx,0.0018903937889263034 +steady,sr,188,75.2,force,front_fy,-3.8710700209776405e-06 +steady,sr,188,75.2,force,upper_fx,0.0022193240001797676 +steady,sr,188,75.2,force,upper_fy,0.0003389314515516162 +steady,sr,188,75.2,force,lower_fx,0.002221814589574933 +steady,sr,188,75.2,force,lower_fy,-0.000374254013877362 +steady,sr,189,75.6,force,front_fx,0.0018913461826741695 +steady,sr,189,75.6,force,front_fy,-7.323917088797316e-06 +steady,sr,189,75.6,force,upper_fx,0.0022132964804768562 +steady,sr,189,75.6,force,upper_fy,0.00032991712214425206 +steady,sr,189,75.6,force,lower_fx,0.002228965051472187 +steady,sr,189,75.6,force,lower_fy,-0.0003775225195568055 +steady,sr,190,76.0,force,front_fx,0.0018938062712550163 +steady,sr,190,76.0,force,front_fy,-1.0370388736191671e-05 +steady,sr,190,76.0,force,upper_fx,0.002210150472819805 +steady,sr,190,76.0,force,upper_fy,0.0003219225618522614 +steady,sr,190,76.0,force,lower_fx,0.002237644512206316 +steady,sr,190,76.0,force,lower_fy,-0.00037818122655153275 +steady,sr,191,76.4,force,front_fx,0.0018949505174532533 +steady,sr,191,76.4,force,front_fy,-1.2615029845619574e-05 +steady,sr,191,76.4,force,upper_fx,0.00220711762085557 +steady,sr,191,76.4,force,upper_fy,0.00031697627855464816 +steady,sr,191,76.4,force,lower_fx,0.002244166564196348 +steady,sr,191,76.4,force,lower_fy,-0.000377349992049858 +steady,sr,192,76.8,force,front_fx,0.001894085668027401 +steady,sr,192,76.8,force,front_fy,-1.3986432350066025e-05 +steady,sr,192,76.8,force,upper_fx,0.002203403040766716 +steady,sr,192,76.8,force,upper_fy,0.0003160272026434541 +steady,sr,192,76.8,force,lower_fx,0.002246858086436987 +steady,sr,192,76.8,force,lower_fy,-0.00037574258749373257 +steady,sr,193,77.2,force,front_fx,0.0018918428104370832 +steady,sr,193,77.2,force,front_fy,-1.4555955203832127e-05 +steady,sr,193,77.2,force,upper_fx,0.002199845854192972 +steady,sr,193,77.2,force,upper_fy,0.0003190785937476903 +steady,sr,193,77.2,force,lower_fx,0.00224594259634614 +steady,sr,193,77.2,force,lower_fy,-0.00037369399797171354 +steady,sr,194,77.6,force,front_fx,0.0018911930965259671 +steady,sr,194,77.6,force,front_fy,-1.3657587260240689e-05 +steady,sr,194,77.6,force,upper_fx,0.00220011780038476 +steady,sr,194,77.6,force,upper_fy,0.0003260202065575868 +steady,sr,194,77.6,force,lower_fx,0.0022448310628533363 +steady,sr,194,77.6,force,lower_fy,-0.0003703433321788907 +steady,sr,195,78.0,force,front_fx,0.001892324537038803 +steady,sr,195,78.0,force,front_fy,-1.155110658146441e-05 +steady,sr,195,78.0,force,upper_fx,0.0022042731288820505 +steady,sr,195,78.0,force,upper_fy,0.00033589586382731795 +steady,sr,195,78.0,force,lower_fx,0.002243624534457922 +steady,sr,195,78.0,force,lower_fy,-0.0003659207432065159 +steady,sr,196,78.4,force,front_fx,0.0018940786831080914 +steady,sr,196,78.4,force,front_fy,-7.866751730034593e-06 +steady,sr,196,78.4,force,upper_fx,0.0022108349949121475 +steady,sr,196,78.4,force,upper_fy,0.00034791071084327996 +steady,sr,196,78.4,force,lower_fx,0.0022414247505366802 +steady,sr,196,78.4,force,lower_fy,-0.0003599439805839211 +steady,sr,197,78.8,force,front_fx,0.001893749926239252 +steady,sr,197,78.8,force,front_fy,-3.570636636140989e-06 +steady,sr,197,78.8,force,upper_fx,0.002215983346104622 +steady,sr,197,78.8,force,upper_fy,0.0003598509356379509 +steady,sr,197,78.8,force,lower_fx,0.002235174411907792 +steady,sr,197,78.8,force,lower_fy,-0.0003530357498675585 +steady,sr,198,79.2,force,front_fx,0.00189210195094347 +steady,sr,198,79.2,force,front_fy,1.1641662922556861e-06 +steady,sr,198,79.2,force,upper_fx,0.0022199656814336777 +steady,sr,198,79.2,force,upper_fy,0.00036987330531701446 +steady,sr,198,79.2,force,lower_fx,0.0022262237034738064 +steady,sr,198,79.2,force,lower_fy,-0.00034470134414732456 +steady,sr,199,79.6,force,front_fx,0.0018905128818005323 +steady,sr,199,79.6,force,front_fy,5.141121164342621e-06 +steady,sr,199,79.6,force,upper_fx,0.002224120544269681 +steady,sr,199,79.6,force,upper_fy,0.000375910138245672 +steady,sr,199,79.6,force,lower_fx,0.0022169689182192087 +steady,sr,199,79.6,force,lower_fy,-0.00033589708618819714 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-0.0 +steady,sr,0,0.0,alpha,lower,0.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-0.0 +steady,sr,1,0.4,alpha,lower,0.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-0.0 +steady,sr,2,0.8,alpha,lower,0.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-0.0 +steady,sr,3,1.2,alpha,lower,0.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-0.0 +steady,sr,4,1.6,alpha,lower,0.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-0.0 +steady,sr,5,2.0,alpha,lower,0.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-0.0 +steady,sr,6,2.4,alpha,lower,0.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-0.0 +steady,sr,7,2.8,alpha,lower,0.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-0.0 +steady,sr,8,3.2,alpha,lower,0.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-0.0 +steady,sr,9,3.6,alpha,lower,0.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-0.0 +steady,sr,10,4.0,alpha,lower,0.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-0.0 +steady,sr,11,4.4,alpha,lower,0.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-0.0 +steady,sr,12,4.8,alpha,lower,0.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-0.0 +steady,sr,13,5.2,alpha,lower,0.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-0.0 +steady,sr,14,5.6,alpha,lower,0.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-0.0 +steady,sr,15,6.0,alpha,lower,0.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-0.0 +steady,sr,16,6.4,alpha,lower,0.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-0.0 +steady,sr,17,6.8,alpha,lower,0.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-0.0 +steady,sr,18,7.2,alpha,lower,0.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-0.0 +steady,sr,19,7.6,alpha,lower,0.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-0.0 +steady,sr,20,8.0,alpha,lower,0.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-0.0 +steady,sr,21,8.4,alpha,lower,0.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-0.0 +steady,sr,22,8.8,alpha,lower,0.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-0.0 +steady,sr,23,9.2,alpha,lower,0.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-0.0 +steady,sr,24,9.6,alpha,lower,0.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-0.0 +steady,sr,25,10.0,alpha,lower,0.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-0.0 +steady,sr,26,10.4,alpha,lower,0.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-0.0 +steady,sr,27,10.8,alpha,lower,0.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-0.0 +steady,sr,28,11.2,alpha,lower,0.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-0.0 +steady,sr,29,11.6,alpha,lower,0.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-0.0 +steady,sr,30,12.0,alpha,lower,0.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-0.0 +steady,sr,31,12.4,alpha,lower,0.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-0.0 +steady,sr,32,12.8,alpha,lower,0.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-0.0 +steady,sr,33,13.2,alpha,lower,0.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-0.0 +steady,sr,34,13.6,alpha,lower,0.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-0.0 +steady,sr,35,14.0,alpha,lower,0.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-0.0 +steady,sr,36,14.4,alpha,lower,0.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-0.0 +steady,sr,37,14.8,alpha,lower,0.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-0.0 +steady,sr,38,15.2,alpha,lower,0.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-0.0 +steady,sr,39,15.6,alpha,lower,0.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-0.0 +steady,sr,40,16.0,alpha,lower,0.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-0.0 +steady,sr,41,16.4,alpha,lower,0.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-0.0 +steady,sr,42,16.8,alpha,lower,0.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-0.0 +steady,sr,43,17.2,alpha,lower,0.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-0.0 +steady,sr,44,17.6,alpha,lower,0.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-0.0 +steady,sr,45,18.0,alpha,lower,0.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-0.0 +steady,sr,46,18.4,alpha,lower,0.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-0.0 +steady,sr,47,18.8,alpha,lower,0.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-0.0 +steady,sr,48,19.2,alpha,lower,0.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-0.0 +steady,sr,49,19.6,alpha,lower,0.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-0.0 +steady,sr,50,20.0,alpha,lower,0.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-0.0 +steady,sr,51,20.4,alpha,lower,0.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-0.0 +steady,sr,52,20.8,alpha,lower,0.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-0.0 +steady,sr,53,21.2,alpha,lower,0.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-0.0 +steady,sr,54,21.6,alpha,lower,0.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-0.0 +steady,sr,55,22.0,alpha,lower,0.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-0.0 +steady,sr,56,22.4,alpha,lower,0.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-0.0 +steady,sr,57,22.8,alpha,lower,0.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-0.0 +steady,sr,58,23.2,alpha,lower,0.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-0.0 +steady,sr,59,23.6,alpha,lower,0.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-0.0 +steady,sr,60,24.0,alpha,lower,0.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-0.0 +steady,sr,61,24.4,alpha,lower,0.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-0.0 +steady,sr,62,24.8,alpha,lower,0.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-0.0 +steady,sr,63,25.2,alpha,lower,0.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-0.0 +steady,sr,64,25.6,alpha,lower,0.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-0.0 +steady,sr,65,26.0,alpha,lower,0.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-0.0 +steady,sr,66,26.4,alpha,lower,0.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-0.0 +steady,sr,67,26.8,alpha,lower,0.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-0.0 +steady,sr,68,27.2,alpha,lower,0.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-0.0 +steady,sr,69,27.6,alpha,lower,0.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-0.0 +steady,sr,70,28.0,alpha,lower,0.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-0.0 +steady,sr,71,28.4,alpha,lower,0.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-0.0 +steady,sr,72,28.8,alpha,lower,0.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-0.0 +steady,sr,73,29.2,alpha,lower,0.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-0.0 +steady,sr,74,29.6,alpha,lower,0.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-0.0 +steady,sr,75,30.0,alpha,lower,0.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-0.0 +steady,sr,76,30.4,alpha,lower,0.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-0.0 +steady,sr,77,30.8,alpha,lower,0.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-0.0 +steady,sr,78,31.2,alpha,lower,0.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-0.0 +steady,sr,79,31.6,alpha,lower,0.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-0.0 +steady,sr,80,32.0,alpha,lower,0.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-0.0 +steady,sr,81,32.4,alpha,lower,0.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-0.0 +steady,sr,82,32.8,alpha,lower,0.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-0.0 +steady,sr,83,33.2,alpha,lower,0.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-0.0 +steady,sr,84,33.6,alpha,lower,0.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-0.0 +steady,sr,85,34.0,alpha,lower,0.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-0.0 +steady,sr,86,34.4,alpha,lower,0.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-0.0 +steady,sr,87,34.8,alpha,lower,0.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-0.0 +steady,sr,88,35.2,alpha,lower,0.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-0.0 +steady,sr,89,35.6,alpha,lower,0.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-0.0 +steady,sr,90,36.0,alpha,lower,0.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-0.0 +steady,sr,91,36.4,alpha,lower,0.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-0.0 +steady,sr,92,36.8,alpha,lower,0.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-0.0 +steady,sr,93,37.2,alpha,lower,0.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-0.0 +steady,sr,94,37.6,alpha,lower,0.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-0.0 +steady,sr,95,38.0,alpha,lower,0.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-0.0 +steady,sr,96,38.4,alpha,lower,0.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-0.0 +steady,sr,97,38.8,alpha,lower,0.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-0.0 +steady,sr,98,39.2,alpha,lower,0.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-0.0 +steady,sr,99,39.6,alpha,lower,0.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-0.0 +steady,sr,100,40.0,alpha,lower,0.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-0.0 +steady,sr,101,40.4,alpha,lower,0.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-0.0 +steady,sr,102,40.8,alpha,lower,0.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-0.0 +steady,sr,103,41.2,alpha,lower,0.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-0.0 +steady,sr,104,41.6,alpha,lower,0.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-0.0 +steady,sr,105,42.0,alpha,lower,0.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-0.0 +steady,sr,106,42.4,alpha,lower,0.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-0.0 +steady,sr,107,42.8,alpha,lower,0.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-0.0 +steady,sr,108,43.2,alpha,lower,0.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-0.0 +steady,sr,109,43.6,alpha,lower,0.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-0.0 +steady,sr,110,44.0,alpha,lower,0.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-0.0 +steady,sr,111,44.4,alpha,lower,0.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-0.0 +steady,sr,112,44.8,alpha,lower,0.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-0.0 +steady,sr,113,45.2,alpha,lower,0.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-0.0 +steady,sr,114,45.6,alpha,lower,0.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-0.0 +steady,sr,115,46.0,alpha,lower,0.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-0.0 +steady,sr,116,46.4,alpha,lower,0.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-0.0 +steady,sr,117,46.8,alpha,lower,0.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-0.0 +steady,sr,118,47.2,alpha,lower,0.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-0.0 +steady,sr,119,47.6,alpha,lower,0.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-0.0 +steady,sr,120,48.0,alpha,lower,0.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-0.0 +steady,sr,121,48.4,alpha,lower,0.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-0.0 +steady,sr,122,48.8,alpha,lower,0.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-0.0 +steady,sr,123,49.2,alpha,lower,0.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-0.0 +steady,sr,124,49.6,alpha,lower,0.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-0.0 +steady,sr,125,50.0,alpha,lower,0.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-0.0 +steady,sr,126,50.4,alpha,lower,0.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-0.0 +steady,sr,127,50.8,alpha,lower,0.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-0.0 +steady,sr,128,51.2,alpha,lower,0.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-0.0 +steady,sr,129,51.6,alpha,lower,0.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-0.0 +steady,sr,130,52.0,alpha,lower,0.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-0.0 +steady,sr,131,52.4,alpha,lower,0.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-0.0 +steady,sr,132,52.8,alpha,lower,0.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-0.0 +steady,sr,133,53.2,alpha,lower,0.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-0.0 +steady,sr,134,53.6,alpha,lower,0.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-0.0 +steady,sr,135,54.0,alpha,lower,0.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-0.0 +steady,sr,136,54.4,alpha,lower,0.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-0.0 +steady,sr,137,54.8,alpha,lower,0.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-0.0 +steady,sr,138,55.2,alpha,lower,0.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-0.0 +steady,sr,139,55.6,alpha,lower,0.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-0.0 +steady,sr,140,56.0,alpha,lower,0.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-0.0 +steady,sr,141,56.4,alpha,lower,0.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-0.0 +steady,sr,142,56.8,alpha,lower,0.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-0.0 +steady,sr,143,57.2,alpha,lower,0.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-0.0 +steady,sr,144,57.6,alpha,lower,0.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-0.0 +steady,sr,145,58.0,alpha,lower,0.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-0.0 +steady,sr,146,58.4,alpha,lower,0.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-0.0 +steady,sr,147,58.8,alpha,lower,0.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-0.0 +steady,sr,148,59.2,alpha,lower,0.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-0.0 +steady,sr,149,59.6,alpha,lower,0.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-0.0 +steady,sr,150,60.0,alpha,lower,0.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-0.0 +steady,sr,151,60.4,alpha,lower,0.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-0.0 +steady,sr,152,60.8,alpha,lower,0.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-0.0 +steady,sr,153,61.2,alpha,lower,0.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-0.0 +steady,sr,154,61.6,alpha,lower,0.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-0.0 +steady,sr,155,62.0,alpha,lower,0.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-0.0 +steady,sr,156,62.4,alpha,lower,0.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-0.0 +steady,sr,157,62.8,alpha,lower,0.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-0.0 +steady,sr,158,63.2,alpha,lower,0.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-0.0 +steady,sr,159,63.6,alpha,lower,0.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-0.0 +steady,sr,160,64.0,alpha,lower,0.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-0.0 +steady,sr,161,64.4,alpha,lower,0.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-0.0 +steady,sr,162,64.8,alpha,lower,0.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-0.0 +steady,sr,163,65.2,alpha,lower,0.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-0.0 +steady,sr,164,65.6,alpha,lower,0.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-0.0 +steady,sr,165,66.0,alpha,lower,0.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-0.0 +steady,sr,166,66.4,alpha,lower,0.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-0.0 +steady,sr,167,66.8,alpha,lower,0.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-0.0 +steady,sr,168,67.2,alpha,lower,0.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-0.0 +steady,sr,169,67.6,alpha,lower,0.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-0.0 +steady,sr,170,68.0,alpha,lower,0.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-0.0 +steady,sr,171,68.4,alpha,lower,0.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-0.0 +steady,sr,172,68.8,alpha,lower,0.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-0.0 +steady,sr,173,69.2,alpha,lower,0.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-0.0 +steady,sr,174,69.6,alpha,lower,0.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-0.0 +steady,sr,175,70.0,alpha,lower,0.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-0.0 +steady,sr,176,70.4,alpha,lower,0.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-0.0 +steady,sr,177,70.8,alpha,lower,0.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-0.0 +steady,sr,178,71.2,alpha,lower,0.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-0.0 +steady,sr,179,71.6,alpha,lower,0.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-0.0 +steady,sr,180,72.0,alpha,lower,0.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-0.0 +steady,sr,181,72.4,alpha,lower,0.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-0.0 +steady,sr,182,72.8,alpha,lower,0.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-0.0 +steady,sr,183,73.2,alpha,lower,0.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-0.0 +steady,sr,184,73.6,alpha,lower,0.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-0.0 +steady,sr,185,74.0,alpha,lower,0.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-0.0 +steady,sr,186,74.4,alpha,lower,0.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-0.0 +steady,sr,187,74.8,alpha,lower,0.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-0.0 +steady,sr,188,75.2,alpha,lower,0.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-0.0 +steady,sr,189,75.6,alpha,lower,0.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-0.0 +steady,sr,190,76.0,alpha,lower,0.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-0.0 +steady,sr,191,76.4,alpha,lower,0.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-0.0 +steady,sr,192,76.8,alpha,lower,0.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-0.0 +steady,sr,193,77.2,alpha,lower,0.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-0.0 +steady,sr,194,77.6,alpha,lower,0.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-0.0 +steady,sr,195,78.0,alpha,lower,0.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-0.0 +steady,sr,196,78.4,alpha,lower,0.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-0.0 +steady,sr,197,78.8,alpha,lower,0.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-0.0 +steady,sr,198,79.2,alpha,lower,0.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-0.0 +steady,sr,199,79.6,alpha,lower,0.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.0 +steady,sr,0,0.0,omega,lower,0.0 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.0 +steady,sr,1,0.4,omega,lower,0.0 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.0 +steady,sr,2,0.8,omega,lower,0.0 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.0 +steady,sr,3,1.2,omega,lower,0.0 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.0 +steady,sr,4,1.6,omega,lower,0.0 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.0 +steady,sr,5,2.0,omega,lower,0.0 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.0 +steady,sr,6,2.4,omega,lower,0.0 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.0 +steady,sr,7,2.8,omega,lower,0.0 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.0 +steady,sr,8,3.2,omega,lower,0.0 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.0 +steady,sr,9,3.6,omega,lower,0.0 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.0 +steady,sr,10,4.0,omega,lower,0.0 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.0 +steady,sr,11,4.4,omega,lower,0.0 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.0 +steady,sr,12,4.8,omega,lower,0.0 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.0 +steady,sr,13,5.2,omega,lower,0.0 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.0 +steady,sr,14,5.6,omega,lower,0.0 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.0 +steady,sr,15,6.0,omega,lower,0.0 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.0 +steady,sr,16,6.4,omega,lower,0.0 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.0 +steady,sr,17,6.8,omega,lower,0.0 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.0 +steady,sr,18,7.2,omega,lower,0.0 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.0 +steady,sr,19,7.6,omega,lower,0.0 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.0 +steady,sr,20,8.0,omega,lower,0.0 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.0 +steady,sr,21,8.4,omega,lower,0.0 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.0 +steady,sr,22,8.8,omega,lower,0.0 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.0 +steady,sr,23,9.2,omega,lower,0.0 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.0 +steady,sr,24,9.6,omega,lower,0.0 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.0 +steady,sr,25,10.0,omega,lower,0.0 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.0 +steady,sr,26,10.4,omega,lower,0.0 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.0 +steady,sr,27,10.8,omega,lower,0.0 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.0 +steady,sr,28,11.2,omega,lower,0.0 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.0 +steady,sr,29,11.6,omega,lower,0.0 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.0 +steady,sr,30,12.0,omega,lower,0.0 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.0 +steady,sr,31,12.4,omega,lower,0.0 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.0 +steady,sr,32,12.8,omega,lower,0.0 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.0 +steady,sr,33,13.2,omega,lower,0.0 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.0 +steady,sr,34,13.6,omega,lower,0.0 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.0 +steady,sr,35,14.0,omega,lower,0.0 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.0 +steady,sr,36,14.4,omega,lower,0.0 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.0 +steady,sr,37,14.8,omega,lower,0.0 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.0 +steady,sr,38,15.2,omega,lower,0.0 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.0 +steady,sr,39,15.6,omega,lower,0.0 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.0 +steady,sr,40,16.0,omega,lower,0.0 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.0 +steady,sr,41,16.4,omega,lower,0.0 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.0 +steady,sr,42,16.8,omega,lower,0.0 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.0 +steady,sr,43,17.2,omega,lower,0.0 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.0 +steady,sr,44,17.6,omega,lower,0.0 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.0 +steady,sr,45,18.0,omega,lower,0.0 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.0 +steady,sr,46,18.4,omega,lower,0.0 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.0 +steady,sr,47,18.8,omega,lower,0.0 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.0 +steady,sr,48,19.2,omega,lower,0.0 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.0 +steady,sr,49,19.6,omega,lower,0.0 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.0 +steady,sr,50,20.0,omega,lower,0.0 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.0 +steady,sr,51,20.4,omega,lower,0.0 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.0 +steady,sr,52,20.8,omega,lower,0.0 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.0 +steady,sr,53,21.2,omega,lower,0.0 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.0 +steady,sr,54,21.6,omega,lower,0.0 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.0 +steady,sr,55,22.0,omega,lower,0.0 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.0 +steady,sr,56,22.4,omega,lower,0.0 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.0 +steady,sr,57,22.8,omega,lower,0.0 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.0 +steady,sr,58,23.2,omega,lower,0.0 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.0 +steady,sr,59,23.6,omega,lower,0.0 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.0 +steady,sr,60,24.0,omega,lower,0.0 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.0 +steady,sr,61,24.4,omega,lower,0.0 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.0 +steady,sr,62,24.8,omega,lower,0.0 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.0 +steady,sr,63,25.2,omega,lower,0.0 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.0 +steady,sr,64,25.6,omega,lower,0.0 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.0 +steady,sr,65,26.0,omega,lower,0.0 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.0 +steady,sr,66,26.4,omega,lower,0.0 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.0 +steady,sr,67,26.8,omega,lower,0.0 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.0 +steady,sr,68,27.2,omega,lower,0.0 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.0 +steady,sr,69,27.6,omega,lower,0.0 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.0 +steady,sr,70,28.0,omega,lower,0.0 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.0 +steady,sr,71,28.4,omega,lower,0.0 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.0 +steady,sr,72,28.8,omega,lower,0.0 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.0 +steady,sr,73,29.2,omega,lower,0.0 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.0 +steady,sr,74,29.6,omega,lower,0.0 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.0 +steady,sr,75,30.0,omega,lower,0.0 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.0 +steady,sr,76,30.4,omega,lower,0.0 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.0 +steady,sr,77,30.8,omega,lower,0.0 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.0 +steady,sr,78,31.2,omega,lower,0.0 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.0 +steady,sr,79,31.6,omega,lower,0.0 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.0 +steady,sr,80,32.0,omega,lower,0.0 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.0 +steady,sr,81,32.4,omega,lower,0.0 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.0 +steady,sr,82,32.8,omega,lower,0.0 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.0 +steady,sr,83,33.2,omega,lower,0.0 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.0 +steady,sr,84,33.6,omega,lower,0.0 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.0 +steady,sr,85,34.0,omega,lower,0.0 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.0 +steady,sr,86,34.4,omega,lower,0.0 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.0 +steady,sr,87,34.8,omega,lower,0.0 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.0 +steady,sr,88,35.2,omega,lower,0.0 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.0 +steady,sr,89,35.6,omega,lower,0.0 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.0 +steady,sr,90,36.0,omega,lower,0.0 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.0 +steady,sr,91,36.4,omega,lower,0.0 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.0 +steady,sr,92,36.8,omega,lower,0.0 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.0 +steady,sr,93,37.2,omega,lower,0.0 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.0 +steady,sr,94,37.6,omega,lower,0.0 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.0 +steady,sr,95,38.0,omega,lower,0.0 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.0 +steady,sr,96,38.4,omega,lower,0.0 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.0 +steady,sr,97,38.8,omega,lower,0.0 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.0 +steady,sr,98,39.2,omega,lower,0.0 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.0 +steady,sr,99,39.6,omega,lower,0.0 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.0 +steady,sr,100,40.0,omega,lower,0.0 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.0 +steady,sr,101,40.4,omega,lower,0.0 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.0 +steady,sr,102,40.8,omega,lower,0.0 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.0 +steady,sr,103,41.2,omega,lower,0.0 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.0 +steady,sr,104,41.6,omega,lower,0.0 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.0 +steady,sr,105,42.0,omega,lower,0.0 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.0 +steady,sr,106,42.4,omega,lower,0.0 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.0 +steady,sr,107,42.8,omega,lower,0.0 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.0 +steady,sr,108,43.2,omega,lower,0.0 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.0 +steady,sr,109,43.6,omega,lower,0.0 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.0 +steady,sr,110,44.0,omega,lower,0.0 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.0 +steady,sr,111,44.4,omega,lower,0.0 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.0 +steady,sr,112,44.8,omega,lower,0.0 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.0 +steady,sr,113,45.2,omega,lower,0.0 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.0 +steady,sr,114,45.6,omega,lower,0.0 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.0 +steady,sr,115,46.0,omega,lower,0.0 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.0 +steady,sr,116,46.4,omega,lower,0.0 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.0 +steady,sr,117,46.8,omega,lower,0.0 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.0 +steady,sr,118,47.2,omega,lower,0.0 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.0 +steady,sr,119,47.6,omega,lower,0.0 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.0 +steady,sr,120,48.0,omega,lower,0.0 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.0 +steady,sr,121,48.4,omega,lower,0.0 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.0 +steady,sr,122,48.8,omega,lower,0.0 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.0 +steady,sr,123,49.2,omega,lower,0.0 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.0 +steady,sr,124,49.6,omega,lower,0.0 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.0 +steady,sr,125,50.0,omega,lower,0.0 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.0 +steady,sr,126,50.4,omega,lower,0.0 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.0 +steady,sr,127,50.8,omega,lower,0.0 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.0 +steady,sr,128,51.2,omega,lower,0.0 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.0 +steady,sr,129,51.6,omega,lower,0.0 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.0 +steady,sr,130,52.0,omega,lower,0.0 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.0 +steady,sr,131,52.4,omega,lower,0.0 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.0 +steady,sr,132,52.8,omega,lower,0.0 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.0 +steady,sr,133,53.2,omega,lower,0.0 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.0 +steady,sr,134,53.6,omega,lower,0.0 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.0 +steady,sr,135,54.0,omega,lower,0.0 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.0 +steady,sr,136,54.4,omega,lower,0.0 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.0 +steady,sr,137,54.8,omega,lower,0.0 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.0 +steady,sr,138,55.2,omega,lower,0.0 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.0 +steady,sr,139,55.6,omega,lower,0.0 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.0 +steady,sr,140,56.0,omega,lower,0.0 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.0 +steady,sr,141,56.4,omega,lower,0.0 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.0 +steady,sr,142,56.8,omega,lower,0.0 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.0 +steady,sr,143,57.2,omega,lower,0.0 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.0 +steady,sr,144,57.6,omega,lower,0.0 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.0 +steady,sr,145,58.0,omega,lower,0.0 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.0 +steady,sr,146,58.4,omega,lower,0.0 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.0 +steady,sr,147,58.8,omega,lower,0.0 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.0 +steady,sr,148,59.2,omega,lower,0.0 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.0 +steady,sr,149,59.6,omega,lower,0.0 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.0 +steady,sr,150,60.0,omega,lower,0.0 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.0 +steady,sr,151,60.4,omega,lower,0.0 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.0 +steady,sr,152,60.8,omega,lower,0.0 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.0 +steady,sr,153,61.2,omega,lower,0.0 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.0 +steady,sr,154,61.6,omega,lower,0.0 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.0 +steady,sr,155,62.0,omega,lower,0.0 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.0 +steady,sr,156,62.4,omega,lower,0.0 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.0 +steady,sr,157,62.8,omega,lower,0.0 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.0 +steady,sr,158,63.2,omega,lower,0.0 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.0 +steady,sr,159,63.6,omega,lower,0.0 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.0 +steady,sr,160,64.0,omega,lower,0.0 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.0 +steady,sr,161,64.4,omega,lower,0.0 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.0 +steady,sr,162,64.8,omega,lower,0.0 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.0 +steady,sr,163,65.2,omega,lower,0.0 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.0 +steady,sr,164,65.6,omega,lower,0.0 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.0 +steady,sr,165,66.0,omega,lower,0.0 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.0 +steady,sr,166,66.4,omega,lower,0.0 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.0 +steady,sr,167,66.8,omega,lower,0.0 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.0 +steady,sr,168,67.2,omega,lower,0.0 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.0 +steady,sr,169,67.6,omega,lower,0.0 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.0 +steady,sr,170,68.0,omega,lower,0.0 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.0 +steady,sr,171,68.4,omega,lower,0.0 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.0 +steady,sr,172,68.8,omega,lower,0.0 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.0 +steady,sr,173,69.2,omega,lower,0.0 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.0 +steady,sr,174,69.6,omega,lower,0.0 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.0 +steady,sr,175,70.0,omega,lower,0.0 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.0 +steady,sr,176,70.4,omega,lower,0.0 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.0 +steady,sr,177,70.8,omega,lower,0.0 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.0 +steady,sr,178,71.2,omega,lower,0.0 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.0 +steady,sr,179,71.6,omega,lower,0.0 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.0 +steady,sr,180,72.0,omega,lower,0.0 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.0 +steady,sr,181,72.4,omega,lower,0.0 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.0 +steady,sr,182,72.8,omega,lower,0.0 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.0 +steady,sr,183,73.2,omega,lower,0.0 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.0 +steady,sr,184,73.6,omega,lower,0.0 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.0 +steady,sr,185,74.0,omega,lower,0.0 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.0 +steady,sr,186,74.4,omega,lower,0.0 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.0 +steady,sr,187,74.8,omega,lower,0.0 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.0 +steady,sr,188,75.2,omega,lower,0.0 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.0 +steady,sr,189,75.6,omega,lower,0.0 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.0 +steady,sr,190,76.0,omega,lower,0.0 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.0 +steady,sr,191,76.4,omega,lower,0.0 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.0 +steady,sr,192,76.8,omega,lower,0.0 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.0 +steady,sr,193,77.2,omega,lower,0.0 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.0 +steady,sr,194,77.6,omega,lower,0.0 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.0 +steady,sr,195,78.0,omega,lower,0.0 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.0 +steady,sr,196,78.4,omega,lower,0.0 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.0 +steady,sr,197,78.8,omega,lower,0.0 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.0 +steady,sr,198,79.2,omega,lower,0.0 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.0 +steady,sr,199,79.6,omega,lower,0.0 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_manifest.json new file mode 100644 index 0000000..edef070 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a0-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_wide.csv new file mode 100644 index 0000000..fac8d36 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,0.8464792370796204,-0.3121224641799927,0.4523642659187317,-0.6611638069152832,1.2014888525009155,-0.0791720300912857,0.0018943636678159237,-1.3707343896385282e-05,0.002203678246587515,0.00031596049666404724,0.002245846902951598,-0.00037633534520864487,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,1,0.4,0.9097314476966858,-0.3735411763191223,0.5429174304008484,-0.6704512238502502,1.044744849205017,-0.2235562652349472,0.0018962540198117495,-1.4550910236721393e-05,0.002204913180321455,0.0003166129463352263,0.0022506939712911844,-0.0003730988537427038,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,2,0.8,0.9810226559638977,-0.4222263991832733,0.603967010974884,-0.6871379017829895,0.8603051900863647,-0.31377026438713074,0.001896409085020423,-1.3983534699946176e-05,0.0022060442715883255,0.0003232407325413078,0.0022515144664794207,-0.0003706693241838366,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,3,1.2,1.0584449768066406,-0.45744001865386963,0.6319334506988525,-0.702849268913269,0.7062708139419556,-0.316600501537323,0.001892969710752368,-1.2298527508391999e-05,0.002204720163717866,0.0003336047811899334,0.002245811279863119,-0.00036786269629374146,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,4,1.6,1.1406806707382202,-0.4769006669521332,0.6372393369674683,-0.6732199192047119,0.6159824132919312,-0.2504522502422333,0.0018888958729803562,-8.885679562808946e-06,0.0022034775465726852,0.0003459418658167124,0.002236652420833707,-0.00036282368819229305,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,5,2.0,1.2240525484085083,-0.47604313492774963,0.6263431310653687,-0.5596995949745178,0.5808199644088745,-0.15459546446800232,0.0018895014654845,-4.7953494686225895e-06,0.002208983525633812,0.0003571410779841244,0.0022313669323921204,-0.0003553852147888392,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,6,2.4,1.299910545349121,-0.44837915897369385,0.6017566323280334,-0.3669738471508026,0.5907140970230103,-0.05690506845712662,0.0018927110359072685,-3.12755119580288e-08,0.0022186608985066414,0.0003667480777949095,0.002228433033451438,-0.0003461523447185755,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,7,2.8,1.3535590171813965,-0.387595534324646,0.5565046072006226,-0.1283288598060608,0.6386150121688843,0.026818403974175453,0.001896127127110958,4.17392902818392e-06,0.0022291282657533884,0.0003735783393494785,0.0022255133371800184,-0.0003370956692378968,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,8,3.2,1.3698283433914185,-0.2919287383556366,0.4880475103855133,0.14080435037612915,0.7006183862686157,0.1018834114074707,0.001894723973236978,7.612261470058002e-06,0.002233911072835326,0.0003777873935177922,0.0022171807941049337,-0.00032926484709605575,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,9,3.6,1.342484951019287,-0.16682344675064087,0.42145875096321106,0.4140259623527527,0.7554320693016052,0.18298572301864624,0.0018912499072030187,1.0584399205981754e-05,0.002235500607639551,0.00037928108940832317,0.00220710807479918,-0.0003225123800802976,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,10,4.0,1.2720561027526855,-0.021442219614982605,0.41087502241134644,0.6104516386985779,0.8079447746276855,0.26432695984840393,0.0018895408138632774,1.2759493074554484e-05,0.002237832173705101,0.00037807776243425906,0.002200113143771887,-0.00031760192359797657,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,11,4.4,1.1518700122833252,0.13225972652435303,0.4837174713611603,0.6675073504447937,0.8669479489326477,0.33476969599723816,0.00189165398478508,1.4076002116780728e-05,0.002243697876110673,0.0003752317279577255,0.0021998595912009478,-0.0003157792380079627,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,12,4.8,0.9809924364089966,0.26365670561790466,0.5686680674552917,0.6741006970405579,0.9336428046226501,0.391937255859375,0.001895521767437458,1.4532362001773436e-05,0.00225017499178648,0.0003722409892361611,0.002204033313319087,-0.00031830871012061834,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,13,5.2,0.8003264665603638,0.3247840106487274,0.6166938543319702,0.694800615310669,1.0071625709533691,0.43605995178222656,0.0018963570473715663,1.355382028123131e-05,0.0022510120179504156,0.0003694262122735381,0.0022066133096814156,-0.0003261177334934473,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,14,5.6,0.6676232218742371,0.2993249297142029,0.6361003518104553,0.700101912021637,1.0866055488586426,0.4661828279495239,0.001893407548777759,1.1267093213973567e-05,0.0022451772820204496,0.0003660586371552199,0.0022064552176743746,-0.0003374834486749023,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,15,6.0,0.5984511971473694,0.21878524124622345,0.6352013945579529,0.6442122459411621,1.1700021028518677,0.4792281687259674,0.0018893543165177107,7.541284048784291e-06,0.0022354505490511656,0.0003606262325774878,0.002205759286880493,-0.0003501428000163287,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,16,6.4,0.5794278979301453,0.11972573399543762,0.619611918926239,0.4999242424964905,1.2520523071289062,0.46984294056892395,0.0018893334781751037,3.1573893011227483e-06,0.002228946192190051,0.000352697039488703,0.0022108021657913923,-0.0003611386055126786,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,17,6.8,0.6038113832473755,0.025904487818479538,0.5887554883956909,0.2879287600517273,1.3219186067581177,0.4312063157558441,0.0018921042792499065,-1.5260334293998312e-06,0.0022251976188272238,0.0003431737422943115,0.0022200613748282194,-0.00036972371162846684,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,18,7.2,0.6600341200828552,-0.052950143814086914,0.534632682800293,0.03772009536623955,1.3639167547225952,0.3581012487411499,0.0018958279397338629,-5.445642727863742e-06,0.002222637413069606,0.00033402114058844745,0.002230897545814514,-0.00037511615664698184,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,19,7.6,0.7206318378448486,-0.12920914590358734,0.46234166622161865,-0.23819637298583984,1.3652026653289795,0.2512715458869934,0.001895084511488676,-8.704665560799185e-06,0.002215348184108734,0.0003263527760282159,0.002236355096101761,-0.00037820651778019965,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,20,8.0,0.7734108567237854,-0.2119908481836319,0.40844103693962097,-0.49649643898010254,1.3230949640274048,0.11809951812028885,0.0018920567817986012,-1.1436927707109135e-05,0.002206342061981559,0.00032037109485827386,0.0022383041214197874,-0.00037897107540629804,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,21,8.4,0.8277233839035034,-0.2903275191783905,0.428821861743927,-0.6445023417472839,1.2366502285003662,-0.032030101865530014,0.0018897854024544358,-1.3316959666553885e-05,0.00219933339394629,0.0003168356488458812,0.002239578403532505,-0.00037748500471934676,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,22,8.8,0.8893470764160156,-0.3561441898345947,0.5164831280708313,-0.6692092418670654,1.0971628427505493,-0.1829145848751068,0.0018913255771622062,-1.4349556295201182e-05,0.0021990668028593063,0.0003164969675708562,0.0022441642358899117,-0.00037456038990058005,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,23,9.2,0.9583693146705627,-0.408769428730011,0.5893557071685791,-0.6803885698318481,0.9158161282539368,-0.2949275076389313,0.0018947673961520195,-1.4352831385622267e-05,0.0022033543791621923,0.0003205362008884549,0.002249357756227255,-0.00037131630233488977,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,24,9.6,1.0340465307235718,-0.44821903109550476,0.626074492931366,-0.700661301612854,0.7466804385185242,-0.32478591799736023,0.001896240166388452,-1.2916596460854635e-05,0.0022073204163461924,0.0003294182533863932,0.002250176388770342,-0.00036804494448006153,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,25,10.0,1.1153085231781006,-0.4728875756263733,0.6378467679023743,-0.6898370385169983,0.6369668841362,-0.2754041254520416,0.0018937826389446855,-1.0108351489179768e-05,0.0022082782816141844,0.0003415333922021091,0.0022442052140831947,-0.00036409019958227873,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,26,10.4,1.1992385387420654,-0.47886666655540466,0.631447970867157,-0.6039501428604126,0.586856484413147,-0.18499550223350525,0.0018898495472967625,-6.051419859431917e-06,0.002208201913163066,0.00035429600393399596,0.0022341199219226837,-0.0003581720229703933,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,27,10.8,1.278607964515686,-0.4600909948348999,0.6110953688621521,-0.43188372254371643,0.5833020210266113,-0.08556760102510452,0.0018892146181315184,-1.538789319965872e-06,0.002212740248069167,0.00036480373819358647,0.0022264625877141953,-0.00034987085382454097,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,28,11.2,1.3404972553253174,-0.4097980260848999,0.5727836489677429,-0.20452682673931122,0.6209646463394165,0.0030235860031098127,0.0018915784312412143,3.032491349586053e-06,0.0022215775679796934,0.000372276728739962,0.002222056034952402,-0.00034013527329079807,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,29,11.6,1.3692315816879272,-0.3244525194168091,0.510258138179779,0.0563250333070755,0.6818040609359741,0.07880899310112,0.0018954947590827942,6.589082659047563e-06,0.002232603495940566,0.0003762387786991894,0.0022197705693542957,-0.0003310639294795692,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,30,12.0,1.355323314666748,-0.20742645859718323,0.43861815333366394,0.33409297466278076,0.7394828796386719,0.15758711099624634,0.0018954192055389285,9.763342859514523e-06,0.002238691318780184,0.00037837299169041216,0.002213634317740798,-0.0003236235643271357,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,31,12.4,1.2985107898712158,-0.06728772819042206,0.40495654940605164,0.5650248527526855,0.7917036414146423,0.2403860092163086,0.0018927969504147768,1.219165187649196e-05,0.00224087736569345,0.0003784727305173874,0.0022056896705180407,-0.0003186097601428628,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,32,12.8,1.1946454048156738,0.08586642891168594,0.4560048282146454,0.6618050932884216,0.8484371900558472,0.3147464096546173,0.0018900636350736022,1.3737098925048485e-05,0.002241175388917327,0.00037677178625017405,0.0021988279186189175,-0.0003165625676047057,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,33,13.2,1.0368280410766602,0.22897224128246307,0.5463813543319702,0.6707814931869507,0.9126120209693909,0.3759259283542633,0.0018910112557932734,1.4566782738256734e-05,0.002244394738227129,0.0003738845989573747,0.0021985427010804415,-0.00031768661574460566,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,34,13.6,0.8521780967712402,0.31572389602661133,0.6054794192314148,0.6881530284881592,0.9838851690292358,0.4240168035030365,0.0018940225709229708,1.3931691682955716e-05,0.0022482944186776876,0.00037024024641141295,0.0022029161918908358,-0.00032332143746316433,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,35,14.0,0.7007964849472046,0.31484031677246094,0.6325121521949768,0.7028190493583679,1.0616317987442017,0.4586125314235687,0.0018960705492645502,1.219304158439627e-05,0.0022489959374070168,0.0003665917320176959,0.0022081623319536448,-0.00033299680217169225,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,36,14.4,0.6136274933815002,0.2466477006673813,0.6374245285987854,0.6701798439025879,1.1444025039672852,0.47735679149627686,0.0018940861336886883,8.7190364865819e-06,0.0022429144009947777,0.0003618519986048341,0.0022101488430052996,-0.0003457683778833598,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,37,14.8,0.580782949924469,0.15019696950912476,0.6261074542999268,0.5527605414390564,1.2280045747756958,0.47553032636642456,0.0018903766758739948,4.59784359918558e-06,0.0022326374892145395,0.00035559877869673073,0.002210784936323762,-0.00035819425829686224,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,38,15.2,0.5922990441322327,0.052868641912937164,0.6004182696342468,0.3573390245437622,1.3030589818954468,0.44649994373321533,0.00188913953024894,-1.6837562100135983e-07,0.0022239636164158583,0.00034682906698435545,0.0022147807758301497,-0.00036819116212427616,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,39,15.6,0.6410370469093323,-0.03016158565878868,0.553631067276001,0.11717803031206131,1.3549609184265137,0.3840731084346771,0.0018911489751189947,-4.33791637988179e-06,0.0022190334275364876,0.0003371991333551705,0.002223235322162509,-0.00037427220377139747,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,40,16.0,0.7028777599334717,-0.1052345484495163,0.4844661056995392,-0.15290884673595428,1.3692622184753418,0.286918967962265,0.0018951260717585683,-7.744506547169294e-06,0.0022169705480337143,0.0003281497920397669,0.0022342419251799583,-0.00037708913441747427,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,41,16.4,0.7575929760932922,-0.18659614026546478,0.41934749484062195,-0.42484158277511597,1.3403223752975464,0.16080427169799805,0.0018957197898998857,-1.0712144103308674e-05,0.0022120357025414705,0.0003212024748791009,0.0022408897057175636,-0.00037825843901373446,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,42,16.8,0.8106792569160461,-0.26764577627182007,0.41283321380615234,-0.6157237887382507,1.2683651447296143,0.01480709109455347,0.0018934387480840087,-1.283336678170599e-05,0.002205125754699111,0.00031728617614135146,0.002243179129436612,-0.0003778201644308865,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,43,17.2,0.8700736165046692,-0.33754149079322815,0.4882190227508545,-0.6679012775421143,1.145748257637024,-0.1387832760810852,0.0018903547897934914,-1.412433721270645e-05,0.0021985615603625774,0.0003167203103657812,0.0022425733041018248,-0.00037604468525387347,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,44,17.6,0.9367014169692993,-0.39413177967071533,0.5715067386627197,-0.6747942566871643,0.972794771194458,-0.2680835723876953,0.0018907146295532584,-1.4508989806927275e-05,0.002198257250711322,0.00031949873664416373,0.0022444019559770823,-0.00037303860881365836,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,45,18.0,1.010168194770813,-0.4376467168331146,0.617745578289032,-0.6957021355628967,0.7929069399833679,-0.3253186345100403,0.0018933278042823076,-1.3487765500030946e-05,0.002202776260674,0.0003264252736698836,0.002247016876935959,-0.0003691788879223168,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,46,18.4,1.0898540019989014,-0.4671075940132141,0.636300802230835,-0.6992501020431519,0.6631439924240112,-0.2966165542602539,0.0018958437722176313,-1.1135595741507132e-05,0.00220910063944757,0.00033699083724059165,0.0022475088480859995,-0.00036484122392721474,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,47,18.8,1.1736711263656616,-0.4793604910373688,0.6350842118263245,-0.6397776007652283,0.5968111157417297,-0.21463558077812195,0.0018943245522677898,-7.355606157943839e-06,0.0022120855282992125,0.00034989326377399266,0.0022413323167711496,-0.0003595507878344506,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,48,19.2,1.2558188438415527,-0.4689112901687622,0.619146466255188,-0.4918370544910431,0.5800386667251587,-0.11536624282598495,0.0018909038044512272,-2.9638188152603107e-06,0.0022134289611130953,0.00036197685403749347,0.0022310155909508467,-0.0003527183143887669,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,49,19.6,1.3246948719024658,-0.428822785615921,0.5871157646179199,-0.27768585085868835,0.6060101389884949,-0.022127090021967888,0.0018891417421400547,1.7332406514469767e-06,0.0022169395815581083,0.00037107308162376285,0.0022214914206415415,-0.0003437773266341537,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,50,20.0,1.364739179611206,-0.3540685176849365,0.531451940536499,-0.026081707328557968,0.6626377701759338,0.05621235445141792,0.001890838029794395,5.575908744503977e-06,0.002225032541900873,0.0003758539678528905,0.0022161861415952444,-0.00033426261506974697,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,51,20.4,1.3639633655548096,-0.24584908783435822,0.4588613212108612,0.2503207325935364,0.7227505445480347,0.13271211087703705,0.0018947466742247343,8.856291970005259e-06,0.002235800726339221,0.00037764437729492784,0.0022142783273011446,-0.0003253898466937244,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,52,20.8,1.3202400207519531,-0.11179054528474808,0.4072953760623932,0.5058706402778625,0.7755485773086548,0.2155689001083374,0.001895957044325769,1.152829372585984e-05,0.002242930931970477,0.0003779214748647064,0.00221055094152689,-0.00031914192368276417,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,53,21.2,1.2321003675460815,0.03878403082489967,0.4320194125175476,0.6474832892417908,0.8305249810218811,0.2934589684009552,0.0018939755391329527,1.3394041161518544e-05,0.0022451812401413918,0.00037707906449213624,0.0022046598605811596,-0.0003164172812830657,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,54,21.6,1.090261459350586,0.18900035321712494,0.5207735300064087,0.6693418025970459,0.8925960063934326,0.35871708393096924,0.001890647574327886,1.4378281775861979e-05,0.002243767725303769,0.0003752466000150889,0.0021985601633787155,-0.00031738990219309926,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,55,22.0,0.9076987504959106,0.2981163263320923,0.5915968418121338,0.6813530921936035,0.9615898728370667,0.410768061876297,0.00189044582657516,1.4311043742054608e-05,0.0022441833280026913,0.00037211747257970273,0.0021982472389936447,-0.0003218015772290528,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,56,22.4,0.7402071356773376,0.32400181889533997,0.6267277002334595,0.7012122273445129,1.0371910333633423,0.4495908319950104,0.0018926976481452584,1.284100017073797e-05,0.0022455567959696054,0.0003679596702568233,0.002202925505116582,-0.0003299367381259799,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,57,22.8,0.6334227323532104,0.27199918031692505,0.6377053260803223,0.6879090070724487,1.1186065673828125,0.47353824973106384,0.0018955724081024528,9.944803423422854e-06,0.0022457255981862545,0.00036292694858275354,0.002210166770964861,-0.00034116438473574817,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,58,23.2,0.5858659744262695,0.18066911399364471,0.6310507655143738,0.5981155633926392,1.2028098106384277,0.4786374270915985,0.0018945123301818967,5.8828136388910934e-06,0.0022395048290491104,0.000357043492840603,0.0022140752989798784,-0.00035395927261561155,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,59,23.6,0.584537148475647,0.08136484026908875,0.6103546023368835,0.42288899421691895,1.2820965051651,0.4586978554725647,0.0018913984531536698,1.3158542060409673e-06,0.002229242119938135,0.0003496795834507793,0.0022160918451845646,-0.0003654549364000559,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,60,24.0,0.6236317157745361,-0.006541090086102486,0.5707949995994568,0.19376665353775024,1.342795729637146,0.4068938195705414,0.0018892140360549092,-3.1969650535756955e-06,0.0022190907038748264,0.0003406981413718313,0.002219212707132101,-0.0003734781639650464,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,61,24.4,0.684414267539978,-0.08210290223360062,0.5068808197975159,-0.06836866587400436,1.369421124458313,0.31994131207466125,0.001890635467134416,-6.739000127709005e-06,0.0022135444451123476,0.0003313741472084075,0.0022269512992352247,-0.00037703782436437905,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,62,24.8,0.7414872050285339,-0.16120700538158417,0.43554604053497314,-0.34582751989364624,1.3534260988235474,0.20165444910526276,0.0018943719333037734,-9.88438114291057e-06,0.0022117493208497763,0.00032287053181789815,0.0022372964303940535,-0.0003779177786782384,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,63,25.2,0.793870210647583,-0.24385280907154083,0.40510275959968567,-0.5723624229431152,1.2949293851852417,0.060751184821128845,0.001896127127110958,-1.2287375284358859e-05,0.0022091884166002274,0.00031745305750519037,0.0022447528317570686,-0.0003774513606913388,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,64,25.6,0.851296603679657,-0.3176794648170471,0.4600209891796112,-0.6630322337150574,1.189170479774475,-0.09259286522865295,0.0018943850882351398,-1.3792773643217515e-05,0.002204261487349868,0.0003160883206874132,0.0022468427196145058,-0.00037622597301378846,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,65,26.0,0.9159616231918335,-0.3783017694950104,0.5501177310943604,-0.6711320281028748,1.0293315649032593,-0.2343229055404663,0.0018909622449427843,-1.4570749954145867e-05,0.0021988137159496546,0.0003185190143994987,0.0022447239607572556,-0.0003744285786524415,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,66,26.4,0.9872545599937439,-0.4258190095424652,0.6072165966033936,-0.6891912817955017,0.8445059061050415,-0.31753674149513245,0.0018902249867096543,-1.3878909157938324e-05,0.0021985138300806284,0.0003246234846301377,0.002243773080408573,-0.00037103184149600565,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,67,26.8,1.0649099349975586,-0.4597538709640503,0.6328191161155701,-0.7027676105499268,0.6953790187835693,-0.31293508410453796,0.0018921543378382921,-1.2073855941707734e-05,0.002203386975452304,0.00033372140023857355,0.0022439388558268547,-0.000366624619346112,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,68,27.2,1.1477357149124146,-0.4777047634124756,0.6369810700416565,-0.666970431804657,0.6109201908111572,-0.24277372658252716,0.0018952578539028764,-8.556961802241858e-06,0.002211320213973522,0.0003454929683357477,0.0022436745930463076,-0.00036078665289096534,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,69,27.6,1.2314339876174927,-0.4748963415622711,0.6254356503486633,-0.5456336140632629,0.5804033279418945,-0.1458316594362259,0.00189465272706002,-4.3948898564849515e-06,0.00221611512824893,0.00035783372004516423,0.0022374549880623817,-0.0003543976054061204,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,70,28.0,1.3061840534210205,-0.4446047246456146,0.5993357300758362,-0.3476431965827942,0.5941063761711121,-0.04890652745962143,0.0018918595742434263,3.669146053653094e-07,0.0022187461145222187,0.00036861441913060844,0.002227342687547207,-0.00034647638676688075,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,71,28.4,1.3566981554031372,-0.38063937425613403,0.551278293132782,-0.10592890530824661,0.6439826488494873,0.03348846361041069,0.0018893757369369268,4.506629011302721e-06,0.002221600152552128,0.00037535541923716664,0.0022168003488332033,-0.00033767029526643455,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,72,28.8,1.3688017129898071,-0.2819652259349823,0.4810663163661957,0.16519398987293243,0.7053849101066589,0.10864611715078354,0.00189053057692945,7.875179107941221e-06,0.0022289473563432693,0.0003778982500080019,0.0022111202124506235,-0.0003285440325271338,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,73,29.2,1.3377772569656372,-0.15473319590091705,0.4170416593551636,0.43564674258232117,0.759553849697113,0.1902548372745514,0.001894018379971385,1.0826089237525593e-05,0.002238743007183075,0.00037794504896737635,0.002209429396316409,-0.00032063943217508495,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,74,29.6,1.263994574546814,-0.008102420717477798,0.4144166111946106,0.6206886172294617,0.8129100799560547,0.2709501087665558,0.001896207220852375,1.2901857189717703e-05,0.0022463344503194094,0.0003768213209696114,0.0022079425398260355,-0.0003162483044434339,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,75,30.0,1.1393414735794067,0.14528712630271912,0.49247610569000244,0.6681932806968689,0.8729854822158813,0.3402743935585022,0.0018946744967252016,1.417103430867428e-05,0.0022481458727270365,0.00037540349876508117,0.0022039564792066813,-0.00031620042864233255,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,76,30.4,0.9649844169616699,0.27242058515548706,0.5745900869369507,0.6754924654960632,0.9401381015777588,0.396314799785614,0.0018912878585979342,1.4488992746919394e-05,0.002245464129373431,0.0003734271740540862,0.0021993217524141073,-0.00032025933614932,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,77,30.8,0.7859842777252197,0.3257462978363037,0.6190701127052307,0.6965829730033875,1.0136756896972656,0.43924450874328613,0.0018900679424405098,1.3412300177151337e-05,0.002243141643702984,0.0003699315420817584,0.0021990875247865915,-0.0003277521173004061,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,78,31.2,0.6587753891944885,0.2938297986984253,0.6363095045089722,0.6983344554901123,1.0932587385177612,0.4679999053478241,0.0018917060224339366,1.0998008292517625e-05,0.0022422117181122303,0.00036498132976703346,0.0022041352931410074,-0.00033787291613407433,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,79,31.6,0.594851016998291,0.21047018468379974,0.6343832612037659,0.635168731212616,1.1770178079605103,0.47937238216400146,0.0018948932411149144,7.169065611378755e-06,0.002241360256448388,0.0003585671365726739,0.0022125618997961283,-0.0003497355792205781,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,80,32.0,0.5802559852600098,0.11107470840215683,0.6181930303573608,0.4836133122444153,1.259050965309143,0.4678287208080292,0.0018947400385513902,2.7703690648195334e-06,0.002235222840681672,0.000351500028045848,0.0022181749809533358,-0.00036157184513285756,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,81,32.4,0.6082978844642639,0.018437601625919342,0.5856285691261292,0.26742178201675415,1.3273714780807495,0.4263925850391388,0.0018922727322205901,-1.9373592294869013e-06,0.00222534011118114,0.00034325820161029696,0.002221375238150358,-0.00037130629061721265,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,82,32.8,0.6656674146652222,-0.05946355313062668,0.5287771224975586,0.014367644675076008,1.3658546209335327,0.35011014342308044,0.001889628591015935,-5.711965059163049e-06,0.002214656677097082,0.0003346677403897047,0.002224094932898879,-0.0003767850575968623,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,83,33.2,0.7251297235488892,-0.13626731932163239,0.45568346977233887,-0.2625599205493927,1.3628615140914917,0.24049563705921173,0.0018905044998973608,-8.995361895358656e-06,0.00220893113873899,0.00032582643325440586,0.0022309781052172184,-0.00037846851046197116,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,84,33.6,0.7775428295135498,-0.21918106079101562,0.40613484382629395,-0.5151214003562927,1.317050576210022,0.10546164214611053,0.001893694861792028,-1.16172259367886e-05,0.0022073257714509964,0.00031879081507213414,0.002240132773295045,-0.0003777313104365021,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,85,34.0,0.8328404426574707,-0.296576589345932,0.43489110469818115,-0.6501968502998352,1.2268719673156738,-0.045568063855171204,0.0018961866153404117,-1.345895816484699e-05,0.0022068163380026817,0.0003154937585350126,0.002247622236609459,-0.00037613845779560506,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,86,34.4,0.8955565094947815,-0.3612557649612427,0.5247567296028137,-0.6694538593292236,1.0830134153366089,-0.1950286477804184,0.0018948458600789309,-1.44128171086777e-05,0.002203751588240266,0.00031686187139712274,0.0022490802221000195,-0.0003745222056750208,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,87,34.8,0.965104877948761,-0.4127589166164398,0.5940794348716736,-0.6822923421859741,0.8999258279800415,-0.30120715498924255,0.0018916208064183593,-1.4266291145759169e-05,0.0022000742610543966,0.00032248013303615153,0.002245943760499358,-0.00037234253250062466,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,88,35.2,1.0408275127410889,-0.45097681879997253,0.6277061700820923,-0.7017018795013428,0.7342401146888733,-0.32314571738243103,0.0018899849383160472,-1.2755253010254819e-05,0.002199954818934202,0.0003312567714601755,0.0022423435002565384,-0.00036866115988232195,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,89,35.6,1.1221284866333008,-0.47415927052497864,0.6374590992927551,-0.6858763098716736,0.6300306916236877,-0.26855725049972534,0.0018913601525127888,-9.775191756489221e-06,0.0022051804699003696,0.00034218584187328815,0.002240362111479044,-0.0003631379804573953,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,90,36.0,1.2061442136764526,-0.47827738523483276,0.6301254630088806,-0.5921005010604858,0.5845970511436462,-0.17634880542755127,0.001894475193694234,-5.705572675651638e-06,0.002213867846876383,0.0003538996970746666,0.002238808898255229,-0.000356176751665771,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,91,36.4,1.2850730419158936,-0.4571243226528168,0.6090809106826782,-0.4137798249721527,0.5853437185287476,-0.0772341638803482,0.0018947775242850184,-1.0975247732858406e-06,0.0022202348336577415,0.0003650425060186535,0.002232828177511692,-0.0003484349581412971,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,92,36.8,1.3449456691741943,-0.4039041996002197,0.5688544511795044,-0.18298335373401642,0.6262691020965576,0.00998658500611782,0.0018926493357867002,3.3661244742688723e-06,0.0022239750251173973,0.000373500632122159,0.0022232597693800926,-0.00034006789792329073,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,93,37.2,1.3698827028274536,-0.3154728412628174,0.5039880275726318,0.08047480881214142,0.6873782277107239,0.08539897948503494,0.0018899691058322787,6.891629709571134e-06,0.0022266777232289314,0.0003778468817472458,0.002212696708738804,-0.00033167348010465503,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,94,37.6,1.3517032861709595,-0.19593748450279236,0.43288981914520264,0.3576018214225769,0.7437855005264282,0.16486915946006775,0.0018905493197962642,1.0000002475862857e-05,0.0022330230567604303,0.00037871007225476205,0.0022069744300097227,-0.00032336526783183217,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,95,38.0,1.2910655736923218,-0.05419962480664253,0.4053877592086792,0.5794978737831116,0.7959648370742798,0.2473464012145996,0.0018933970713987947,1.237471224158071e-05,0.0022414233535528183,0.00037739425897598267,0.0022054763976484537,-0.0003172924043610692,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,96,38.4,1.1830344200134277,0.09932728856801987,0.46373042464256287,0.6640908718109131,0.8537115454673767,0.3206033408641815,0.0018960593733936548,1.384250572300516e-05,0.0022486119996756315,0.0003753489290829748,0.0022057904861867428,-0.0003153033903799951,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,97,38.8,1.0214438438415527,0.239589124917984,0.5535285472869873,0.6714974045753479,0.9189751148223877,0.38064953684806824,0.001894934568554163,1.4578641639673151e-05,0.0022496734745800495,0.00037363707087934017,0.0022037022281438112,-0.0003180134226568043,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,98,39.2,0.8371279835700989,0.3192481994628906,0.6091954112052917,0.6901668310165405,0.9908438920974731,0.4276147782802582,0.0018919444410130382,1.3826457688992377e-05,0.0022461405023932457,0.00037110919947735965,0.0022010134998708963,-0.00032520401873625815,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,99,39.6,0.6904559135437012,0.31097447872161865,0.6334992051124573,0.7026107311248779,1.068666934967041,0.4609130024909973,0.0018899902934208512,1.1944054676860105e-05,0.0022413781844079494,0.0003672340826597065,0.0022011189721524715,-0.0003350411425344646,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,100,40.0,0.6084092855453491,0.2388673722743988,0.6365249156951904,0.6636130809783936,1.1513527631759644,0.4780285358428955,0.0018910988001152873,8.390054972551297e-06,0.0022384070325642824,0.0003610730927903205,0.0022064840886741877,-0.0003465859917923808,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,101,40.4,0.5798037052154541,0.14146453142166138,0.6243035197257996,0.5383205413818359,1.2347078323364258,0.47412654757499695,0.0018940151203423738,4.187489594187355e-06,0.002236051019281149,0.00035362158087082207,0.0022152308374643326,-0.0003579026379156858,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,102,40.8,0.5954767465591431,0.044996265321969986,0.5976899266242981,0.33782660961151123,1.3088291883468628,0.4425051212310791,0.001894765067845583,-5.633867772303347e-07,0.0022303087171167135,0.00034526496892794967,0.0022222804836928844,-0.0003681656380649656,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,103,41.2,0.6468104720115662,-0.03677280619740486,0.5488802194595337,0.09463796764612198,1.3582518100738525,0.37708157300949097,0.0018929906655102968,-4.675403488363372e-06,0.00222114659845829,0.0003369186306372285,0.0022265296429395676,-0.0003752224438358098,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,104,41.6,0.7082025408744812,-0.11207028478384018,0.4781305193901062,-0.17751573026180267,1.3685975074768066,0.27701422572135925,0.001890410203486681,-8.011958925635554e-06,0.0022109404671937227,0.00032875765464268625,0.0022293219808489084,-0.00037855756818316877,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,105,42.0,0.7618483901023865,-0.19394703209400177,0.4152507483959198,-0.446402907371521,1.3354463577270508,0.1486872434616089,0.0018906529294326901,-1.0933627891063225e-05,0.002205261029303074,0.00032116513466462493,0.0022350449580699205,-0.00037871237145736814,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,106,42.4,0.8151463866233826,-0.27427980303764343,0.4162423312664032,-0.6254258155822754,1.259397268295288,0.0013744138414040208,0.0018931120866909623,-1.2972677723155357e-05,0.0022038661409169436,0.0003162803186569363,0.002242594724521041,-0.0003768794995266944,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,107,42.8,0.8755087852478027,-0.34300315380096436,0.49643000960350037,-0.6684296131134033,1.1323087215423584,-0.15177595615386963,0.0018958266591653228,-1.4208872016752139e-05,0.00220489758066833,0.0003155600279569626,0.002249268814921379,-0.0003746032016351819,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,108,43.2,0.9432105422019958,-0.3984730839729309,0.5773497223854065,-0.6762084364891052,0.9567657709121704,-0.27663886547088623,0.0018949535442516208,-1.4476834621746093e-05,0.002203800482675433,0.0003197932383045554,0.0022499440237879753,-0.00037259439704939723,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,109,43.6,1.017334222793579,-0.4408385455608368,0.6206236481666565,-0.6973733305931091,0.7793086767196655,-0.32605883479118347,0.0018922615563496947,-1.3335044059203938e-05,0.0022021678742021322,0.00032824548543430865,0.0022460378240793943,-0.00036984868347644806,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,110,44.0,1.0971201658248901,-0.4689147174358368,0.6367259621620178,-0.6972696781158447,0.6548853516578674,-0.2909816801548004,0.0018900585127994418,-1.0853255844267551e-05,0.0022025408688932657,0.0003391559876035899,0.0022402601316571236,-0.00036550324875861406,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,111,44.4,1.1806961297988892,-0.4793665409088135,0.6337553262710571,-0.6303746700286865,0.5931360721588135,-0.20625576376914978,0.0018909014761447906,-6.983280400163494e-06,0.002207997487857938,0.000350887916283682,0.002236322732642293,-0.00035888393176719546,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,112,44.8,1.262202501296997,-0.466609388589859,0.6168436408042908,-0.47518959641456604,0.5803278088569641,-0.10675913095474243,0.0018935444531962276,-2.566795501479646e-06,0.0022166601847857237,0.00036173686385154724,0.0022331587970256805,-0.0003508453955873847,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,113,45.2,1.329603910446167,-0.42373764514923096,0.5835610032081604,-0.25701138377189636,0.6101668477058411,-0.014770252630114555,0.0018947067437693477,2.1332543838070706e-06,0.002224308205768466,0.0003708465665113181,0.0022276975214481354,-0.0003420756256673485,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,114,45.6,1.3667570352554321,-0.34598979353904724,0.5259784460067749,-0.0025974013842642307,0.6685237884521484,0.06270292401313782,0.0018932935781776905,5.863997103006113e-06,0.002229039091616869,0.00037650071317330003,0.002219022251665592,-0.0003338354581501335,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,115,46.0,1.3619979619979858,-0.23510083556175232,0.45294511318206787,0.2747904062271118,0.7277932167053223,0.13983674347400665,0.0018909130012616515,9.138320820056833e-06,0.0022319837007671595,0.0003789822803810239,0.0022094144951552153,-0.0003259413642808795,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,116,46.4,1.3141038417816162,-0.09912068396806717,0.40555453300476074,0.5242355465888977,0.7799094915390015,0.222817063331604,0.0018907916964963078,1.171289386547869e-05,0.0022370079532265663,0.00037845384213142097,0.0022037767339497805,-0.0003193464071955532,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,117,46.8,1.2214714288711548,0.05238357558846474,0.4380379021167755,0.652716875076294,0.8352383971214294,0.29971614480018616,0.0018928329227492213,1.3512567420548294e-05,0.0022436014842242002,0.0003763031563721597,0.0022025045473128557,-0.0003157101455144584,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,118,47.2,1.075199842453003,0.2010064572095871,0.5284395217895508,0.6695929169654846,0.8981949687004089,0.3637903928756714,0.0018954932456836104,1.4440288396144751e-05,0.0022495868615806103,0.0003738114610314369,0.0022041373886168003,-0.0003163750807289034,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,119,47.6,0.8917568325996399,0.3041350543498993,0.5962386727333069,0.6832320690155029,0.9682398438453674,0.4147235155105591,0.001894925837405026,1.4217763236956671e-05,0.0022498886100947857,0.00037147648981772363,0.002204070333391428,-0.0003220781800337136,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,120,48.0,0.7284783720970154,0.32215359807014465,0.6288846135139465,0.7020670175552368,1.0445466041564941,0.4523560404777527,0.0018925558542832732,1.2665483154705726e-05,0.0022456394508481026,0.0003684398252516985,0.002203491283580661,-0.0003316575021017343,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,121,48.4,0.6271008849143982,0.26503464579582214,0.6376407742500305,0.6836481690406799,1.1260660886764526,0.474803626537323,0.0018901959992945194,9.594619768904522e-06,0.0022389800287783146,0.000363551895134151,0.002204203512519598,-0.00034342342405579984,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,122,48.8,0.5836271643638611,0.17195618152618408,0.6293475031852722,0.5858753323554993,1.2098302841186523,0.47790759801864624,0.0018907453631982207,5.5205082389875315e-06,0.002234102226793766,0.00035651755752041936,0.002209677593782544,-0.00035506163840182126,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,123,49.2,0.5860913991928101,0.07306058704853058,0.607475996017456,0.4044622480869293,1.288021206855774,0.45541831851005554,0.0018930728547275066,8.794621066954278e-07,0.0022301829885691404,0.00034788530319929123,0.0022181561216712,-0.00036530938814394176,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,124,49.6,0.6285258531570435,-0.013436599634587765,0.5663363933563232,0.17203575372695923,1.346680760383606,0.40067997574806213,0.0018946154741570354,-3.5376003779674647e-06,0.002225024625658989,0.0003389479243196547,0.0022263217251747847,-0.00037302172859199345,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,125,50.0,0.6901358962059021,-0.08870414644479752,0.5009145140647888,-0.0926220491528511,1.3701013326644897,0.31081968545913696,0.0018935785628855228,-7.040865966700949e-06,0.0022169374860823154,0.0003307734150439501,0.002231482183560729,-0.0003774535143747926,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,126,50.4,0.7463465929031372,-0.16853904724121094,0.43064171075820923,-0.3692936599254608,1.3501936197280884,0.1901474893093109,0.0018914623651653528,-1.012633310892852e-05,0.0022080952767282724,0.0003233957977499813,0.0022346319165080786,-0.0003790641494560987,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,127,50.8,0.7984572052955627,-0.25085246562957764,0.40627121925354004,-0.5864168405532837,1.2874585390090942,0.047609876841306686,0.001890950370579958,-1.2455312571546528e-05,0.002202531322836876,0.00031787194893695414,0.0022388582583516836,-0.00037806975888088346,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,128,51.2,0.8562785387039185,-0.3235423266887665,0.4676802158355713,-0.6650367975234985,1.1767877340316772,-0.10607930272817612,0.0018925617914646864,-1.389020326314494e-05,0.0022013960406184196,0.0003156797611154616,0.0022444408386945724,-0.00037561182398349047,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,129,51.6,0.9217323064804077,-0.3829886317253113,0.5566413402557373,-0.6719327569007874,1.013087511062622,-0.24474625289440155,0.0018950902158394456,-1.4575270142813679e-05,0.0022035297006368637,0.0003177061735186726,0.002249563578516245,-0.00037300839903764427,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,130,52.0,0.9940447807312012,-0.42937996983528137,0.6108345985412598,-0.6911249756813049,0.8293977975845337,-0.3207496404647827,0.0018948604119941592,-1.3774977560387924e-05,0.002204524353146553,0.0003248518332839012,0.0022495295852422714,-0.00037024685298092663,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,131,52.4,1.0724350214004517,-0.46205979585647583,0.6343283653259277,-0.7022976875305176,0.6857017278671265,-0.3088650107383728,0.0018928397912532091,-1.1812278899014927e-05,0.002204983728006482,0.0003353787469677627,0.002244953764602542,-0.00036685005761682987,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,132,52.8,1.1553336381912231,-0.4783743619918823,0.6364930868148804,-0.6600313782691956,0.6063401699066162,-0.23487159609794617,0.001890402752906084,-8.21406956674764e-06,0.0022060731425881386,0.0003477333812043071,0.0022375464905053377,-0.00036139917210675776,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,133,53.2,1.2383372783660889,-0.47335442900657654,0.6233733296394348,-0.5307945013046265,0.5795576572418213,-0.13701999187469482,0.001890609273687005,-3.977426786150318e-06,0.00221148319542408,0.00035907328128814697,0.002231762045994401,-0.00035394172300584614,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,134,53.6,1.3114835023880005,-0.4402833580970764,0.5957779884338379,-0.327804833650589,0.5968732237815857,-0.04104071483016014,0.0018926337361335754,7.653530360585137e-07,0.0022197295911610126,0.00036849782918579876,0.002227174583822489,-0.0003448392963036895,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,135,54.0,1.359413504600525,-0.37329405546188354,0.5459302663803101,-0.08318527042865753,0.6492976546287537,0.04007905349135399,0.0018945022020488977,4.836461812374182e-06,0.002228315221145749,0.00037474691634997725,0.002222350100055337,-0.00033586015342734754,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,136,54.4,1.3681198358535767,-0.2718730866909027,0.47497522830963135,0.18983574211597443,0.7107881307601929,0.11551052331924438,0.0018938450375571847,8.16168812889373e-06,0.002233858685940504,0.0003780712140724063,0.0022149409633129835,-0.00032782513881102204,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,137,54.8,1.3332940340042114,-0.14255227148532867,0.41382887959480286,0.45698633790016174,0.7643758654594421,0.19763171672821045,0.0018920344300568104,1.1043151971534826e-05,0.0022371939849108458,0.00037891219835728407,0.002206961391493678,-0.0003211179282516241,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,138,55.2,1.255062222480774,0.005397312808781862,0.4186241626739502,0.6299110054969788,0.8177859783172607,0.2776082754135132,0.001891119172796607,1.3048958862782456e-05,0.002240564441308379,0.00037750526098534465,0.002201516879722476,-0.0003168745315633714,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,139,55.6,1.1252416372299194,0.15824362635612488,0.5005587339401245,0.6686480045318604,0.87823885679245,0.3457370102405548,0.001892303698696196,1.4240068594517652e-05,0.0022450853139162064,0.00037493903073482215,0.002200547605752945,-0.0003160855558235198,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,140,56.0,0.9482052326202393,0.28068095445632935,0.579821765422821,0.6769983172416687,0.9460868239402771,0.40061429142951965,0.0018946060445159674,1.4455305972660426e-05,0.002249207580462098,0.00037206479464657605,0.0022030710242688656,-0.00031965889502316713,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,141,56.4,0.772337019443512,0.3261355459690094,0.6218147277832031,0.6981195211410522,1.0206009149551392,0.442391037940979,0.0018947741482406855,1.3255594240035862e-05,0.002248858567327261,0.0003689853474497795,0.0022051685955375433,-0.0003279653610661626,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,142,56.8,0.6511214375495911,0.2879900634288788,0.6372296810150146,0.6960161328315735,1.1009174585342407,0.4698055684566498,0.0018930971855297685,1.0705169188440777e-05,0.002243984956294298,0.0003649968421086669,0.002206619596108794,-0.0003394100349396467,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,143,57.2,0.5918391942977905,0.20195893943309784,0.6335330605506897,0.6253489851951599,1.1846684217453003,0.4793805181980133,0.0018906350014731288,6.789759027014952e-06,0.0022359646391123533,0.00035909368307329714,0.0022081255447119474,-0.00035194322117604315,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,144,57.6,0.5808004140853882,0.10238010436296463,0.6157381534576416,0.4665801227092743,1.265688419342041,0.4653988778591156,0.0018905001925304532,2.3529084955953294e-06,0.002229321515187621,0.00035114644560962915,0.002213390776887536,-0.00036287237890064716,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,145,58.0,0.6121332049369812,0.011066616512835026,0.5812982320785522,0.24641869962215424,1.3318617343902588,0.4209827780723572,0.0018922296585515141,-2.3219070044433465e-06,0.0022241766564548016,0.000341765204211697,0.0022213784977793694,-0.00037123457877896726,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,146,58.4,0.6710736751556396,-0.06597535312175751,0.5226789712905884,-0.009305044077336788,1.3672845363616943,0.34166496992111206,0.0018943795002996922,-6.0132988437544554e-06,0.002219698391854763,0.0003328525344841182,0.002230290090665221,-0.0003760390100069344,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,147,58.8,0.730205237865448,-0.14341700077056885,0.4499652087688446,-0.28695085644721985,1.3608287572860718,0.22953301668167114,0.001894111162982881,-9.272596798837185e-06,0.0022130808793008327,0.00032500826637260616,0.00223616068251431,-0.0003784245636779815,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,148,59.2,0.7824674248695374,-0.22642795741558075,0.4052934944629669,-0.5330780148506165,1.3112893104553223,0.09269673377275467,0.0018925820477306843,-1.1814739991677925e-05,0.002205978613346815,0.00031922748894430697,0.0022396205458790064,-0.00037851554225198925,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,149,59.6,0.8380289673805237,-0.3028418719768524,0.44163668155670166,-0.6550173759460449,1.2163312435150146,-0.05922332778573036,0.0018912797095254064,-1.356439315713942e-05,0.0022007240913808346,0.00031632636091671884,0.0022420843597501516,-0.000376859272364527,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,150,60.0,0.9010804891586304,-0.3663206398487091,0.5322314500808716,-0.6697823405265808,1.0674464702606201,-0.20690372586250305,0.001892063650302589,-1.4468211702478584e-05,0.0021999699529260397,0.0003170176933053881,0.0022455183789134026,-0.00037421128945425153,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,151,60.4,0.9712368845939636,-0.41666245460510254,0.5981223583221436,-0.6842283606529236,0.8833921551704407,-0.30683472752571106,0.0018940952140837908,-1.416139548382489e-05,0.0022028032690286636,0.00032213079975917935,0.0022485593799501657,-0.0003710369346663356,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,152,60.8,1.0478802919387817,-0.4536829888820648,0.6296687722206116,-0.702360987663269,0.7224767208099365,-0.3209325671195984,0.0018946670461446047,-1.2572812011057977e-05,0.00220599677413702,0.0003314386704005301,0.0022478948812931776,-0.00036759264185093343,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,153,61.2,1.129873275756836,-0.4754137694835663,0.6378360986709595,-0.6812108755111694,0.624247133731842,-0.2613988518714905,0.0018933091778308153,-9.418163244845346e-06,0.002208343707025051,0.00034361626603640616,0.002242725109681487,-0.0003629237471614033,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,154,61.6,1.2137380838394165,-0.47755497694015503,0.6289355754852295,-0.57944256067276,0.5830475091934204,-0.16751165688037872,0.0018909252248704433,-5.329631221684394e-06,0.002210341626778245,0.000355996162397787,0.0022342463489621878,-0.00035661697620525956,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,155,62.0,1.2912688255310059,-0.4537365436553955,0.6061404347419739,-0.39500418305397034,0.5872670412063599,-0.06885694712400436,0.0018904251046478748,-6.6535460518935e-07,0.0022153796162456274,0.00036639400059357285,0.0022268234752118587,-0.0003481554158497602,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,156,62.4,1.3484491109848022,-0.39738714694976807,0.5636958479881287,-0.1609359234571457,0.630923867225647,0.016909712925553322,0.0018918827408924699,3.7037536912976066e-06,0.0022231293842196465,0.00037344894371926785,0.002221238799393177,-0.0003387517936062068,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,157,62.8,1.369956612586975,-0.3059982359409332,0.49740269780158997,0.10486061125993729,0.6926127672195435,0.09204705059528351,0.0018942354945465922,7.183110938058235e-06,0.0022322258446365595,0.0003770205075852573,0.002217122819274664,-0.0003298730298411101,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,158,63.2,1.3483456373214722,-0.1842118203639984,0.42814505100250244,0.38083934783935547,0.7486340999603271,0.1722051203250885,0.001894364831969142,1.0252368156216107e-05,0.0022383765317499638,0.00037846172926947474,0.0022113618906587362,-0.0003224829270038754,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,159,63.6,1.2839311361312866,-0.04095439985394478,0.4074065685272217,0.5930009484291077,0.8010842204093933,0.25431859493255615,0.0018930835649371147,1.253666323464131e-05,0.002241844777017832,0.00037799429264850914,0.002205152064561844,-0.00031770102214068174,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,160,64.0,1.1707974672317505,0.11282431334257126,0.4719512164592743,0.6658524870872498,0.8592073321342468,0.3264578878879547,0.0018914287211373448,1.3940513781562913e-05,0.002243402414023876,0.00037611572770401835,0.0022001417819410563,-0.0003162918146699667,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,161,64.4,1.0048900842666626,0.24977345764636993,0.559834361076355,0.6724423170089722,0.9247637987136841,0.38531598448753357,0.0018918233690783381,1.4567761354555842e-05,0.0022457041777670383,0.00037342877476476133,0.0021996397990733385,-0.0003184702363796532,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,162,64.8,0.8216010332107544,0.3220130503177643,0.612220048904419,0.6921144127845764,0.9971604943275452,0.43110984563827515,0.001893581124022603,1.3719569324166514e-05,0.0022476378362625837,0.00036992275272496045,0.002202771371230483,-0.00032505724811926484,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,163,65.2,0.6807340383529663,0.30656975507736206,0.6347426176071167,0.7018845081329346,1.075826644897461,0.46314266324043274,0.001894545741379261,1.1680561328830663e-05,0.002246660180389881,0.0003660041547846049,0.0022069946862757206,-0.0003352521744091064,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,164,65.6,0.6042906641960144,0.23080691695213318,0.6364099979400635,0.6562375426292419,1.159114956855774,0.4786716103553772,0.0018934753024950624,8.041553883231245e-06,0.002241177950054407,0.0003606945392675698,0.002210150472819805,-0.0003478448779787868,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,165,66.0,0.5796623826026917,0.13256371021270752,0.6227675676345825,0.5231128931045532,1.2421042919158936,0.47259360551834106,0.0018912320956587791,3.7720726595580345e-06,0.0022324088495224714,0.0003539073804859072,0.0022126794792711735,-0.0003598868497647345,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,166,66.4,0.5986963510513306,0.037088051438331604,0.5941572189331055,0.317696213722229,1.3143866062164307,0.4380972683429718,0.0018903680611401796,-9.630573458707659e-07,0.002224292606115341,0.00034508787211962044,0.0022174438927322626,-0.0003694991464726627,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,167,66.8,0.6519435048103333,-0.043404970318078995,0.5429393649101257,0.07161474972963333,1.3606078624725342,0.3694715201854706,0.0018916170811280608,-4.990959041606402e-06,0.002218416891992092,0.00033576085115782917,0.002224972937256098,-0.00037520885234698653,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,168,67.2,0.7131198644638062,-0.11898878961801529,0.471464604139328,-0.20219464600086212,1.3672938346862793,0.2666100859642029,0.0018940962618216872,-8.300238732772414e-06,0.002214656211435795,0.0003270191955380142,0.002234111074358225,-0.00037768075708299875,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,169,67.6,0.7666118144989014,-0.20129810273647308,0.41217368841171265,-0.46733492612838745,1.3307756185531616,0.13631406426429749,0.0018946087220683694,-1.1149233614560217e-05,0.002209797501564026,0.0003202555235475302,0.002240476431325078,-0.00037827546475455165,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,170,68.0,0.8204989433288574,-0.28088873624801636,0.4211679697036743,-0.6340570449829102,1.250747561454773,-0.012198740616440773,0.0018935143016278744,-1.3122814380039927e-05,0.002204452408477664,0.00031665622373111546,0.002243809634819627,-0.00037731591146439314,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,171,68.4,0.8812929391860962,-0.34844347834587097,0.5048856139183044,-0.6688267588615417,1.1184333562850952,-0.16465473175048828,0.0018915679538622499,-1.427154438715661e-05,0.0021998081356287003,0.00031670377939008176,0.0022444843780249357,-0.00037537087337113917,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,172,68.8,0.9492566585540771,-0.40273940563201904,0.5823725461959839,-0.6778436303138733,0.9399060010910034,-0.2845507562160492,0.0018915890250355005,-1.4431185263674706e-05,0.002199544571340084,0.0003205103857908398,0.0022456543520092964,-0.00037250082823447883,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,173,69.2,1.023835301399231,-0.44390490651130676,0.6227719783782959,-0.6988664269447327,0.7654039859771729,-0.3259938061237335,0.0018931061495095491,-1.3173721526982263e-05,0.0022030004765838385,0.0003283364640083164,0.0022464850917458534,-0.00036875117802992463,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,174,69.6,1.1043611764907837,-0.47062385082244873,0.6373010277748108,-0.6946322917938232,0.6471606492996216,-0.2848684787750244,0.0018944175681099296,-1.0555744665907696e-05,0.0022081511560827494,0.00033935398096218705,0.0022451647091656923,-0.000364175095455721,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,175,70.0,1.1883922815322876,-0.4793323278427124,0.6331865191459656,-0.6201286911964417,0.5905091762542725,-0.19764432311058044,0.001893606036901474,-6.604209829674801e-06,0.0022120277862995863,0.00035199656849727035,0.002239386085420847,-0.0003583177167456597,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,176,70.4,1.2692393064498901,-0.46418941020965576,0.614898145198822,-0.4578745663166046,0.5815706849098206,-0.09803466498851776,0.0018915405962616205,-2.1468347313202685e-06,0.0022150876466184855,0.00036354345502331853,0.0022304474841803312,-0.00035098876105621457,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,177,70.8,1.3343243598937988,-0.41827231645584106,0.5793288350105286,-0.2357761263847351,0.614494264125824,-0.007392780855298042,0.0018903581658378243,2.5064448436751263e-06,0.002219588728621602,0.00037214640178717673,0.0022217838559299707,-0.000341979437507689,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,178,71.2,1.3678479194641113,-0.33733615279197693,0.5194112658500671,0.02130214124917984,0.6737841963768005,0.06926897168159485,0.0018914372194558382,6.1563046074297745e-06,0.0022269270848482847,0.00037652390892617404,0.002215753076598048,-0.0003328332968521863,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,179,71.6,1.35933256149292,-0.2238866686820984,0.4467194676399231,0.29909735918045044,0.7323934435844421,0.14702734351158142,0.0018939567962661386,9.400887392985169e-06,0.0022359162103384733,0.0003780837869271636,0.002212326740846038,-0.0003243204264435917,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,180,72.0,1.3080803155899048,-0.08620640635490417,0.4048265516757965,0.5416138172149658,0.7847163677215576,0.2300083190202713,0.0018948061624541879,1.19118358270498e-05,0.002242425689473748,0.0003778735117521137,0.0022083811927586794,-0.00031842105090618134,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,181,72.4,1.2111499309539795,0.06606057286262512,0.44528689980506897,0.6570541262626648,0.8408262729644775,0.30591702461242676,0.0018938507419079542,1.3614471754408441e-05,0.002245501382276416,0.00037656151107512414,0.0022038754541426897,-0.0003160865162499249,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,182,72.8,1.0599483251571655,0.21271011233329773,0.5361471772193909,0.6699908375740051,0.904245138168335,0.36882102489471436,0.0018916991539299488,1.4494847164314706e-05,0.002245328389108181,0.0003745772410184145,0.0021996949799358845,-0.00031762439175508916,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,183,73.2,0.87535560131073,0.30936264991760254,0.6001070141792297,0.685255765914917,0.9745328426361084,0.4185838997364044,0.0018913740059360862,1.41070750032668e-05,0.0022453574929386377,0.000371459755115211,0.002199698705226183,-0.0003230591246392578,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,184,73.6,0.7165678143501282,0.3195495903491974,0.6302570104598999,0.7026239633560181,1.0512263774871826,0.4549693763256073,0.0018926815828308463,1.2483360478654504e-05,0.002245137467980385,0.00036745064426213503,0.0022035040892660618,-0.0003319438546895981,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,185,74.0,0.6211932897567749,0.257696270942688,0.6376053690910339,0.6786277890205383,1.1333515644073486,0.4759407937526703,0.0018942583119496703,9.245788533007726e-06,0.0022434177808463573,0.00036212679697200656,0.002209434751421213,-0.0003436323022469878,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,186,74.4,0.5823742151260376,0.16309460997581482,0.6283498406410217,0.57285475730896,1.21735417842865,0.477120578289032,0.0018936913693323731,5.146017429069616e-06,0.0022373702377080917,0.0003557922027539462,0.0022139791399240494,-0.00035599255352281034,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,187,74.8,0.5886683464050293,0.06471964716911316,0.605019211769104,0.385508269071579,1.2945144176483154,0.4520394504070282,0.0018918297719210386,4.50868185453146e-07,0.002228383207693696,0.0003478724102023989,0.0022175193298608065,-0.0003669244179036468,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,188,75.2,0.6336537003517151,-0.020347433164715767,0.5613563060760498,0.14981059730052948,1.3503787517547607,0.39414143562316895,0.0018903937889263034,-3.8710700209776405e-06,0.0022193240001797676,0.0003389314515516162,0.002221814589574933,-0.000374254013877362,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,189,75.6,0.695243239402771,-0.09541758894920349,0.49400779604911804,-0.11716583371162415,1.3698588609695435,0.3012000322341919,0.0018913461826741695,-7.323917088797316e-06,0.0022132964804768562,0.00032991712214425206,0.002228965051472187,-0.0003775225195568055,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,190,76.0,0.7507334351539612,-0.1758904904127121,0.42549774050712585,-0.3922988176345825,1.3461978435516357,0.17823974788188934,0.0018938062712550163,-1.0370388736191671e-05,0.002210150472819805,0.0003219225618522614,0.002237644512206316,-0.00037818122655153275,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,191,76.4,0.8033910393714905,-0.25775012373924255,0.4083711504936218,-0.5992370247840881,1.279983639717102,0.03427146002650261,0.0018949505174532533,-1.2615029845619574e-05,0.00220711762085557,0.00031697627855464816,0.002244166564196348,-0.000377349992049858,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,192,76.8,0.8620834946632385,-0.32932454347610474,0.4761665463447571,-0.6665162444114685,1.164707899093628,-0.11952546238899231,0.001894085668027401,-1.3986432350066025e-05,0.002203403040766716,0.0003160272026434541,0.002246858086436987,-0.00037574258749373257,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,193,77.2,0.9280269145965576,-0.3876153230667114,0.5631216764450073,-0.6729785799980164,0.9969481825828552,-0.2546750009059906,0.0018918428104370832,-1.4555955203832127e-05,0.002199845854192972,0.0003190785937476903,0.00224594259634614,-0.00037369399797171354,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,194,77.6,1.0005782842636108,-0.4328248202800751,0.6137340068817139,-0.6930949687957764,0.8141763210296631,-0.323119193315506,0.0018911930965259671,-1.3657587260240689e-05,0.00220011780038476,0.0003260202065575868,0.0022448310628533363,-0.0003703433321788907,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,195,78.0,1.0792820453643799,-0.4641851484775543,0.6350032687187195,-0.7014040350914001,0.6758980751037598,-0.30416712164878845,0.001892324537038803,-1.155110658146441e-05,0.0022042731288820505,0.00033589586382731795,0.002243624534457922,-0.0003659207432065159,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,196,78.4,1.162611961364746,-0.4788775146007538,0.6359120011329651,-0.652285099029541,0.6020442843437195,-0.22672222554683685,0.0018940786831080914,-7.866751730034593e-06,0.0022108349949121475,0.00034791071084327996,0.0022414247505366802,-0.0003599439805839211,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,197,78.8,1.2455620765686035,-0.47173333168029785,0.621932864189148,-0.5153164267539978,0.5796235203742981,-0.12816689908504486,0.001893749926239252,-3.570636636140989e-06,0.002215983346104622,0.0003598509356379509,0.002235174411907792,-0.0003530357498675585,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,198,79.2,1.3172426223754883,-0.43587926030158997,0.5926826596260071,-0.3075789213180542,0.600663423538208,-0.033217694610357285,0.00189210195094347,1.1641662922556861e-06,0.0022199656814336777,0.00036987330531701446,0.0022262237034738064,-0.00034470134414732456,0.0,-0.0,0.0,0.0,-0.0,0.0 +steady,sr,199,79.6,1.3619368076324463,-0.3656931221485138,0.5402413606643677,-0.06002046540379524,0.6548532247543335,0.04670269787311554,0.0018905128818005323,5.141121164342621e-06,0.002224120544269681,0.000375910138245672,0.0022169689182192087,-0.00033589708618819714,0.0,-0.0,0.0,0.0,-0.0,0.0 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_long.csv new file mode 100644 index 0000000..7970d4f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360453367233276 +steady,target,2,0.8,velocity,upper_uy,-6.0142643633298576e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3026001610683124e-08 +steady,target,2,0.8,velocity,lower_ux,1.136043906211853 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360431909561157 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.164554238319397 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360431909561157 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.136045217514038 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.1360434293746948 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0459883621224435e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.0731130361091346e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.4231513862105203e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360431909561157 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360443830490112 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043667793274 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360431909561157 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.1360450983047485 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.1360450983047485 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.1360450983047485 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645545959472656 +steady,target,40,16.0,velocity,center_uy,1.9440005871729227e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087212386773899e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5632016925337666e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.385502989061706e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512657542614761e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360453367233276 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360431909561157 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.136045217514038 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360430717468262 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360441446304321 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360433101654053 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360431909561157 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.164554476737976 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.1360453367233276 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.1360447406768799 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.616901610963396e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.06691901339218e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.699011206341311e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035814658389427e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.1360448598861694 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113811832619831e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886735496256733e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.812072138653093e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480539104901254e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.136044979095459 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360433101654053 +steady,target,114,45.6,velocity,upper_uy,-6.106505315983668e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088493240800744e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360433101654053 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.136043906211853 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.136043667793274 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.136043667793274 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.164554476737976 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645547151565552 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.1360440254211426 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.136045217514038 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.136045217514038 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360448598861694 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360443830490112 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360435485839844 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360445022583008 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360448598861694 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.1645543575286865 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360433101654053 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.136045217514038 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_wide.csv new file mode 100644 index 0000000..71edfd5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_0/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360453367233276,-6.0142643633298576e-05,1.1645541191101074,1.3026001610683124e-08,1.136043906211853,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360431909561157,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.164554238319397,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360431909561157,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.136045217514038,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.1360434293746948,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.0459883621224435e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.0731130361091346e-05,1.1645539999008179,-2.4231513862105203e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360431909561157,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360443830490112,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043667793274,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360431909561157,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.1360450983047485,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.1360450983047485,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.1360450983047485,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645545959472656,1.9440005871729227e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087212386773899e-05,1.1645541191101074,1.5632016925337666e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.385502989061706e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512657542614761e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360453367233276,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360431909561157,6.118379678810015e-05 +steady,target,54,21.6,1.136045217514038,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360430717468262,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360441446304321,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360433101654053,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360431909561157,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.164554476737976,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.1360453367233276,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.1360447406768799,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.616901610963396e-07,1.1360433101654053,6.06691901339218e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.699011206341311e-08,1.1360431909561157,6.035814658389427e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360431909561157,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.1360448598861694,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113811832619831e-05,1.164554476737976,-4.886735496256733e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.812072138653093e-08,1.1360431909561157,6.0480539104901254e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.136044979095459,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360433101654053,-6.106505315983668e-05,1.1645547151565552,-1.0088493240800744e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360433101654053,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.136043906211853,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.136043667793274,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.136043667793274,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.164554476737976,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645547151565552,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.1360440254211426,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.136045217514038,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.136045217514038,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360448598861694,6.093038246035576e-05 +steady,target,137,54.8,1.1360443830490112,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360435485839844,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360445022583008,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360448598861694,-6.112091068644077e-05,1.1645543575286865,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360433101654053,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.136045217514038,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_dtw_convergence.csv new file mode 100644 index 0000000..828539f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.7231363272417101,-20,0.8019133746623993,0.7598672133722478,0.6765166521072388,0.5488577012118295,0.7736895302931468,0.7779734918033986 +steady,sr,90,36.0,30,0.7278631589356165,-8,0.7834389666716257,0.7835279109781065,0.6665463864803314,0.5781539933236546,0.767914346853892,0.7875973493060883 +steady,sr,120,48.0,30,0.7242585593298614,-13,0.7701889514923096,0.7871533431104277,0.6709511458873749,0.5477448459516314,0.8075898051261902,0.7619232644112344 +steady,sr,150,60.0,30,0.7257879735578943,-18,0.7828264156977336,0.7755647591437689,0.6775744179884593,0.5628770806415329,0.777979165315628,0.7779060025602424 +steady,sr,180,72.0,30,0.727029163333104,-6,0.8042829692363739,0.7720236941257705,0.6629874408245087,0.5655271424927928,0.7632384757200876,0.7941152575990903 +steady,sr,200,80.0,30,0.7238576675223055,-20,0.8050034821033478,0.7597926466505063,0.6769085566202799,0.5473772989159733,0.774307805299759,0.7797562155439663 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_long.csv new file mode 100644 index 0000000..0190cfc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.3729215860366821 +steady,sr,0,0.0,velocity,upper_uy,-0.2649478316307068 +steady,sr,0,0.0,velocity,center_ux,0.7589572072029114 +steady,sr,0,0.0,velocity,center_uy,-0.019610155373811722 +steady,sr,0,0.0,velocity,lower_ux,0.7760208249092102 +steady,sr,0,0.0,velocity,lower_uy,0.043397050350904465 +steady,sr,1,0.4,velocity,upper_ux,1.3924423456192017 +steady,sr,1,0.4,velocity,upper_uy,-0.12838470935821533 +steady,sr,1,0.4,velocity,center_ux,0.705436646938324 +steady,sr,1,0.4,velocity,center_uy,0.3259393274784088 +steady,sr,1,0.4,velocity,lower_ux,0.8273398876190186 +steady,sr,1,0.4,velocity,lower_uy,0.12073257565498352 +steady,sr,2,0.8,velocity,upper_ux,1.2818702459335327 +steady,sr,2,0.8,velocity,upper_uy,0.0941196158528328 +steady,sr,2,0.8,velocity,center_ux,0.7330894470214844 +steady,sr,2,0.8,velocity,center_uy,0.5156344771385193 +steady,sr,2,0.8,velocity,lower_ux,0.8817866444587708 +steady,sr,2,0.8,velocity,lower_uy,0.1899842470884323 +steady,sr,3,1.2,velocity,upper_ux,1.0830072164535522 +steady,sr,3,1.2,velocity,upper_uy,0.2841668725013733 +steady,sr,3,1.2,velocity,center_ux,0.8107929825782776 +steady,sr,3,1.2,velocity,center_uy,0.5338513851165771 +steady,sr,3,1.2,velocity,lower_ux,0.9407636523246765 +steady,sr,3,1.2,velocity,lower_uy,0.24454425275325775 +steady,sr,4,1.6,velocity,upper_ux,0.923523485660553 +steady,sr,4,1.6,velocity,upper_uy,0.3374597430229187 +steady,sr,4,1.6,velocity,center_ux,0.8706572651863098 +steady,sr,4,1.6,velocity,center_uy,0.537545382976532 +steady,sr,4,1.6,velocity,lower_ux,1.0034379959106445 +steady,sr,4,1.6,velocity,lower_uy,0.2846303880214691 +steady,sr,5,2.0,velocity,upper_ux,0.833217442035675 +steady,sr,5,2.0,velocity,upper_uy,0.2977302074432373 +steady,sr,5,2.0,velocity,center_ux,0.9061592817306519 +steady,sr,5,2.0,velocity,center_uy,0.5585746765136719 +steady,sr,5,2.0,velocity,lower_ux,1.0699249505996704 +steady,sr,5,2.0,velocity,lower_uy,0.31285712122917175 +steady,sr,6,2.4,velocity,upper_ux,0.7747238278388977 +steady,sr,6,2.4,velocity,upper_uy,0.2221849411725998 +steady,sr,6,2.4,velocity,center_ux,0.91846764087677 +steady,sr,6,2.4,velocity,center_uy,0.5664740204811096 +steady,sr,6,2.4,velocity,lower_ux,1.1423066854476929 +steady,sr,6,2.4,velocity,lower_uy,0.3300020694732666 +steady,sr,7,2.8,velocity,upper_ux,0.7397915720939636 +steady,sr,7,2.8,velocity,upper_uy,0.12607140839099884 +steady,sr,7,2.8,velocity,center_ux,0.8953841328620911 +steady,sr,7,2.8,velocity,center_uy,0.4973686635494232 +steady,sr,7,2.8,velocity,lower_ux,1.2228596210479736 +steady,sr,7,2.8,velocity,lower_uy,0.33357638120651245 +steady,sr,8,3.2,velocity,upper_ux,0.7443376183509827 +steady,sr,8,3.2,velocity,upper_uy,0.026953183114528656 +steady,sr,8,3.2,velocity,center_ux,0.8306236267089844 +steady,sr,8,3.2,velocity,center_uy,0.2887854278087616 +steady,sr,8,3.2,velocity,lower_ux,1.3102902173995972 +steady,sr,8,3.2,velocity,lower_uy,0.31455308198928833 +steady,sr,9,3.6,velocity,upper_ux,0.7850232124328613 +steady,sr,9,3.6,velocity,upper_uy,-0.05851336941123009 +steady,sr,9,3.6,velocity,center_ux,0.7486850619316101 +steady,sr,9,3.6,velocity,center_uy,-0.044873785227537155 +steady,sr,9,3.6,velocity,lower_ux,1.3847302198410034 +steady,sr,9,3.6,velocity,lower_uy,0.24770690500736237 +steady,sr,10,4.0,velocity,upper_ux,0.8367524147033691 +steady,sr,10,4.0,velocity,upper_uy,-0.13489431142807007 +steady,sr,10,4.0,velocity,center_ux,0.706656813621521 +steady,sr,10,4.0,velocity,center_uy,-0.37728747725486755 +steady,sr,10,4.0,velocity,lower_ux,1.383265733718872 +steady,sr,10,4.0,velocity,lower_uy,0.09141379594802856 +steady,sr,11,4.4,velocity,upper_ux,0.8917306661605835 +steady,sr,11,4.4,velocity,upper_uy,-0.2017705887556076 +steady,sr,11,4.4,velocity,center_ux,0.7483673095703125 +steady,sr,11,4.4,velocity,center_uy,-0.5273211002349854 +steady,sr,11,4.4,velocity,lower_ux,1.246475100517273 +steady,sr,11,4.4,velocity,lower_uy,-0.13867726922035217 +steady,sr,12,4.8,velocity,upper_ux,0.9518215656280518 +steady,sr,12,4.8,velocity,upper_uy,-0.25335684418678284 +steady,sr,12,4.8,velocity,center_ux,0.8257546424865723 +steady,sr,12,4.8,velocity,center_uy,-0.533204197883606 +steady,sr,12,4.8,velocity,lower_ux,1.0467647314071655 +steady,sr,12,4.8,velocity,lower_uy,-0.3061131238937378 +steady,sr,13,5.2,velocity,upper_ux,1.0159423351287842 +steady,sr,13,5.2,velocity,upper_uy,-0.2910003364086151 +steady,sr,13,5.2,velocity,center_ux,0.8808817863464355 +steady,sr,13,5.2,velocity,center_uy,-0.5410066843032837 +steady,sr,13,5.2,velocity,lower_ux,0.9037713408470154 +steady,sr,13,5.2,velocity,lower_uy,-0.3350955843925476 +steady,sr,14,5.6,velocity,upper_ux,1.0839585065841675 +steady,sr,14,5.6,velocity,upper_uy,-0.31713590025901794 +steady,sr,14,5.6,velocity,center_ux,0.9128715991973877 +steady,sr,14,5.6,velocity,center_uy,-0.5629277229309082 +steady,sr,14,5.6,velocity,lower_ux,0.8229848742485046 +steady,sr,14,5.6,velocity,lower_uy,-0.28605303168296814 +steady,sr,15,6.0,velocity,upper_ux,1.1575517654418945 +steady,sr,15,6.0,velocity,upper_uy,-0.3320041596889496 +steady,sr,15,6.0,velocity,center_ux,0.9195051789283752 +steady,sr,15,6.0,velocity,center_uy,-0.562661349773407 +steady,sr,15,6.0,velocity,lower_ux,0.767508327960968 +steady,sr,15,6.0,velocity,lower_uy,-0.20608341693878174 +steady,sr,16,6.4,velocity,upper_ux,1.239159107208252 +steady,sr,16,6.4,velocity,upper_uy,-0.3323378264904022 +steady,sr,16,6.4,velocity,center_ux,0.8878427743911743 +steady,sr,16,6.4,velocity,center_uy,-0.47097647190093994 +steady,sr,16,6.4,velocity,lower_ux,0.737281084060669 +steady,sr,16,6.4,velocity,lower_uy,-0.10739964246749878 +steady,sr,17,6.8,velocity,upper_ux,1.3265624046325684 +steady,sr,17,6.8,velocity,upper_uy,-0.3069101572036743 +steady,sr,17,6.8,velocity,center_ux,0.8165841102600098 +steady,sr,17,6.8,velocity,center_uy,-0.23431342840194702 +steady,sr,17,6.8,velocity,lower_ux,0.7490463852882385 +steady,sr,17,6.8,velocity,lower_uy,-0.009601843543350697 +steady,sr,18,7.2,velocity,upper_ux,1.3933972120285034 +steady,sr,18,7.2,velocity,upper_uy,-0.2260129600763321 +steady,sr,18,7.2,velocity,center_ux,0.7376333475112915 +steady,sr,18,7.2,velocity,center_uy,0.11342643946409225 +steady,sr,18,7.2,velocity,lower_ux,0.7939178943634033 +steady,sr,18,7.2,velocity,lower_uy,0.07383948564529419 +steady,sr,19,7.6,velocity,upper_ux,1.3682101964950562 +steady,sr,19,7.6,velocity,upper_uy,-0.04923166334629059 +steady,sr,19,7.6,velocity,center_ux,0.7109912633895874 +steady,sr,19,7.6,velocity,center_uy,0.4237784445285797 +steady,sr,19,7.6,velocity,lower_ux,0.8471183776855469 +steady,sr,19,7.6,velocity,lower_uy,0.149076446890831 +steady,sr,20,8.0,velocity,upper_ux,1.2080919742584229 +steady,sr,20,8.0,velocity,upper_uy,0.18227970600128174 +steady,sr,20,8.0,velocity,center_ux,0.7660223245620728 +steady,sr,20,8.0,velocity,center_uy,0.5338925719261169 +steady,sr,20,8.0,velocity,lower_ux,0.9034515619277954 +steady,sr,20,8.0,velocity,lower_uy,0.21324561536312103 +steady,sr,21,8.4,velocity,upper_ux,1.0125727653503418 +steady,sr,21,8.4,velocity,upper_uy,0.3225405216217041 +steady,sr,21,8.4,velocity,center_ux,0.8403615355491638 +steady,sr,21,8.4,velocity,center_uy,0.5330393314361572 +steady,sr,21,8.4,velocity,lower_ux,0.9640190005302429 +steady,sr,21,8.4,velocity,lower_uy,0.2619057595729828 +steady,sr,22,8.8,velocity,upper_ux,0.8850425481796265 +steady,sr,22,8.8,velocity,upper_uy,0.3295709490776062 +steady,sr,22,8.8,velocity,center_ux,0.8897686004638672 +steady,sr,22,8.8,velocity,center_uy,0.5449371933937073 +steady,sr,22,8.8,velocity,lower_ux,1.0283398628234863 +steady,sr,22,8.8,velocity,lower_uy,0.29711398482322693 +steady,sr,23,9.2,velocity,upper_ux,0.8115314245223999 +steady,sr,23,9.2,velocity,upper_uy,0.27291491627693176 +steady,sr,23,9.2,velocity,center_ux,0.9175346493721008 +steady,sr,23,9.2,velocity,center_uy,0.5664979815483093 +steady,sr,23,9.2,velocity,lower_ux,1.0973024368286133 +steady,sr,23,9.2,velocity,lower_uy,0.32110676169395447 +steady,sr,24,9.6,velocity,upper_ux,0.7599638104438782 +steady,sr,24,9.6,velocity,upper_uy,0.18865689635276794 +steady,sr,24,9.6,velocity,center_ux,0.9185028672218323 +steady,sr,24,9.6,velocity,center_uy,0.5552569031715393 +steady,sr,24,9.6,velocity,lower_ux,1.1729243993759155 +steady,sr,24,9.6,velocity,lower_uy,0.333596795797348 +steady,sr,25,10.0,velocity,upper_ux,0.7367428541183472 +steady,sr,25,10.0,velocity,upper_uy,0.0879373848438263 +steady,sr,25,10.0,velocity,center_ux,0.8789384961128235 +steady,sr,25,10.0,velocity,center_uy,0.4381648898124695 +steady,sr,25,10.0,velocity,lower_ux,1.2568788528442383 +steady,sr,25,10.0,velocity,lower_uy,0.33025044202804565 +steady,sr,26,10.4,velocity,upper_ux,0.7561530470848083 +steady,sr,26,10.4,velocity,upper_uy,-0.007840768434107304 +steady,sr,26,10.4,velocity,center_ux,0.802193820476532 +steady,sr,26,10.4,velocity,center_uy,0.17351779341697693 +steady,sr,26,10.4,velocity,lower_ux,1.3437217473983765 +steady,sr,26,10.4,velocity,lower_uy,0.29712986946105957 +steady,sr,27,10.8,velocity,upper_ux,0.8035807013511658 +steady,sr,27,10.8,velocity,upper_uy,-0.08939416706562042 +steady,sr,27,10.8,velocity,center_ux,0.7277376651763916 +steady,sr,27,10.8,velocity,center_uy,-0.18318113684654236 +steady,sr,27,10.8,velocity,lower_ux,1.398806095123291 +steady,sr,27,10.8,velocity,lower_uy,0.19960887730121613 +steady,sr,28,11.2,velocity,upper_ux,0.8571019172668457 +steady,sr,28,11.2,velocity,upper_uy,-0.16306361556053162 +steady,sr,28,11.2,velocity,center_ux,0.717247486114502 +steady,sr,28,11.2,velocity,center_uy,-0.46278801560401917 +steady,sr,28,11.2,velocity,lower_ux,1.3458075523376465 +steady,sr,28,11.2,velocity,lower_uy,0.0031503119971603155 +steady,sr,29,11.6,velocity,upper_ux,0.9147605895996094 +steady,sr,29,11.6,velocity,upper_uy,-0.2242249697446823 +steady,sr,29,11.6,velocity,center_ux,0.7828730940818787 +steady,sr,29,11.6,velocity,center_uy,-0.5364944934844971 +steady,sr,29,11.6,velocity,lower_ux,1.166953682899475 +steady,sr,29,11.6,velocity,lower_uy,-0.2224397510290146 +steady,sr,30,12.0,velocity,upper_ux,0.9768719673156738 +steady,sr,30,12.0,velocity,upper_uy,-0.2699420750141144 +steady,sr,30,12.0,velocity,center_ux,0.8537142276763916 +steady,sr,30,12.0,velocity,center_uy,-0.5338093638420105 +steady,sr,30,12.0,velocity,lower_ux,0.9817973971366882 +steady,sr,30,12.0,velocity,lower_uy,-0.33319106698036194 +steady,sr,31,12.4,velocity,upper_ux,1.0423269271850586 +steady,sr,31,12.4,velocity,upper_uy,-0.3028087913990021 +steady,sr,31,12.4,velocity,center_ux,0.8986650705337524 +steady,sr,31,12.4,velocity,center_uy,-0.5495077967643738 +steady,sr,31,12.4,velocity,lower_ux,0.8693207502365112 +steady,sr,31,12.4,velocity,lower_uy,-0.32158413529396057 +steady,sr,32,12.8,velocity,upper_ux,1.1120015382766724 +steady,sr,32,12.8,velocity,upper_uy,-0.32459717988967896 +steady,sr,32,12.8,velocity,center_ux,0.9216455221176147 +steady,sr,32,12.8,velocity,center_uy,-0.5692028999328613 +steady,sr,32,12.8,velocity,lower_ux,0.800971508026123 +steady,sr,32,12.8,velocity,lower_uy,-0.25834640860557556 +steady,sr,33,13.2,velocity,upper_ux,1.1886186599731445 +steady,sr,33,13.2,velocity,upper_uy,-0.3344646692276001 +steady,sr,33,13.2,velocity,center_ux,0.9151508212089539 +steady,sr,33,13.2,velocity,center_uy,-0.5433239340782166 +steady,sr,33,13.2,velocity,lower_ux,0.7526090741157532 +steady,sr,33,13.2,velocity,lower_uy,-0.16977711021900177 +steady,sr,34,13.6,velocity,upper_ux,1.2740026712417603 +steady,sr,34,13.6,velocity,upper_uy,-0.3268623650074005 +steady,sr,34,13.6,velocity,center_ux,0.8669463396072388 +steady,sr,34,13.6,velocity,center_uy,-0.3979753851890564 +steady,sr,34,13.6,velocity,lower_ux,0.7367870211601257 +steady,sr,34,13.6,velocity,lower_uy,-0.06796029955148697 +steady,sr,35,14.0,velocity,upper_ux,1.3594412803649902 +steady,sr,35,14.0,velocity,upper_uy,-0.28455841541290283 +steady,sr,35,14.0,velocity,center_ux,0.7867981195449829 +steady,sr,35,14.0,velocity,center_uy,-0.10677177459001541 +steady,sr,35,14.0,velocity,lower_ux,0.7641408443450928 +steady,sr,35,14.0,velocity,lower_uy,0.025163758546113968 +steady,sr,36,14.4,velocity,upper_ux,1.4002128839492798 +steady,sr,36,14.4,velocity,upper_uy,-0.16831786930561066 +steady,sr,36,14.4,velocity,center_ux,0.7207292914390564 +steady,sr,36,14.4,velocity,center_uy,0.25192591547966003 +steady,sr,36,14.4,velocity,lower_ux,0.8144767880439758 +steady,sr,36,14.4,velocity,lower_uy,0.10501634329557419 +steady,sr,37,14.8,velocity,upper_ux,1.3178150653839111 +steady,sr,37,14.8,velocity,upper_uy,0.04545484483242035 +steady,sr,37,14.8,velocity,center_ux,0.7277759313583374 +steady,sr,37,14.8,velocity,center_uy,0.4932659864425659 +steady,sr,37,14.8,velocity,lower_ux,0.8686931133270264 +steady,sr,37,14.8,velocity,lower_uy,0.1768733412027359 +steady,sr,38,15.2,velocity,upper_ux,1.1249780654907227 +steady,sr,38,15.2,velocity,upper_uy,0.2576524615287781 +steady,sr,38,15.2,velocity,center_ux,0.7998706698417664 +steady,sr,38,15.2,velocity,center_uy,0.5363368391990662 +steady,sr,38,15.2,velocity,lower_ux,0.9268447160720825 +steady,sr,38,15.2,velocity,lower_uy,0.23483820259571075 +steady,sr,39,15.6,velocity,upper_ux,0.9528862833976746 +steady,sr,39,15.6,velocity,upper_uy,0.338491827249527 +steady,sr,39,15.6,velocity,center_ux,0.8650292158126831 +steady,sr,39,15.6,velocity,center_uy,0.5353965163230896 +steady,sr,39,15.6,velocity,lower_ux,0.9893156290054321 +steady,sr,39,15.6,velocity,lower_uy,0.2776957154273987 +steady,sr,40,16.0,velocity,upper_ux,0.8536993265151978 +steady,sr,40,16.0,velocity,upper_uy,0.311662495136261 +steady,sr,40,16.0,velocity,center_ux,0.9055358171463013 +steady,sr,40,16.0,velocity,center_uy,0.5542051196098328 +steady,sr,40,16.0,velocity,lower_ux,1.055719017982483 +steady,sr,40,16.0,velocity,lower_uy,0.30820557475090027 +steady,sr,41,16.4,velocity,upper_ux,0.7904577851295471 +steady,sr,41,16.4,velocity,upper_uy,0.24274547398090363 +steady,sr,41,16.4,velocity,center_ux,0.9242328405380249 +steady,sr,41,16.4,velocity,center_uy,0.5702745318412781 +steady,sr,41,16.4,velocity,lower_ux,1.127231240272522 +steady,sr,41,16.4,velocity,lower_uy,0.32777389883995056 +steady,sr,42,16.8,velocity,upper_ux,0.7469314336776733 +steady,sr,42,16.8,velocity,upper_uy,0.1500394344329834 +steady,sr,42,16.8,velocity,center_ux,0.9103352427482605 +steady,sr,42,16.8,velocity,center_uy,0.5264062285423279 +steady,sr,42,16.8,velocity,lower_ux,1.2060054540634155 +steady,sr,42,16.8,velocity,lower_uy,0.3347781002521515 +steady,sr,43,17.2,velocity,upper_ux,0.7391073703765869 +steady,sr,43,17.2,velocity,upper_uy,0.04798629879951477 +steady,sr,43,17.2,velocity,center_ux,0.8533337116241455 +steady,sr,43,17.2,velocity,center_uy,0.3507671356201172 +steady,sr,43,17.2,velocity,lower_ux,1.2925429344177246 +steady,sr,43,17.2,velocity,lower_uy,0.3221208453178406 +steady,sr,44,17.6,velocity,upper_ux,0.7727516889572144 +steady,sr,44,17.6,velocity,upper_uy,-0.042197179049253464 +steady,sr,44,17.6,velocity,center_ux,0.7707105875015259 +steady,sr,44,17.6,velocity,center_uy,0.03529658913612366 +steady,sr,44,17.6,velocity,lower_ux,1.3737919330596924 +steady,sr,44,17.6,velocity,lower_uy,0.26858651638031006 +steady,sr,45,18.0,velocity,upper_ux,0.8245242238044739 +steady,sr,45,18.0,velocity,upper_uy,-0.12047208845615387 +steady,sr,45,18.0,velocity,center_ux,0.7153775095939636 +steady,sr,45,18.0,velocity,center_uy,-0.3169293701648712 +steady,sr,45,18.0,velocity,lower_ux,1.3953038454055786 +steady,sr,45,18.0,velocity,lower_uy,0.13158585131168365 +steady,sr,46,18.4,velocity,upper_ux,0.8799140453338623 +steady,sr,46,18.4,velocity,upper_uy,-0.1900244951248169 +steady,sr,46,18.4,velocity,center_ux,0.7404415607452393 +steady,sr,46,18.4,velocity,center_uy,-0.5148227214813232 +steady,sr,46,18.4,velocity,lower_ux,1.2837891578674316 +steady,sr,46,18.4,velocity,lower_uy,-0.09506425261497498 +steady,sr,47,18.8,velocity,upper_ux,0.9397002458572388 +steady,sr,47,18.8,velocity,upper_uy,-0.24477997422218323 +steady,sr,47,18.8,velocity,center_ux,0.8166324496269226 +steady,sr,47,18.8,velocity,center_uy,-0.5353056192398071 +steady,sr,47,18.8,velocity,lower_ux,1.0848027467727661 +steady,sr,47,18.8,velocity,lower_uy,-0.2868887484073639 +steady,sr,48,19.2,velocity,upper_ux,1.0030385255813599 +steady,sr,48,19.2,velocity,upper_uy,-0.28488489985466003 +steady,sr,48,19.2,velocity,center_ux,0.8763237595558167 +steady,sr,48,19.2,velocity,center_uy,-0.5380643606185913 +steady,sr,48,19.2,velocity,lower_ux,0.9284490942955017 +steady,sr,48,19.2,velocity,lower_uy,-0.33902525901794434 +steady,sr,49,19.6,velocity,upper_ux,1.069807529449463 +steady,sr,49,19.6,velocity,upper_uy,-0.31313079595565796 +steady,sr,49,19.6,velocity,center_ux,0.9120224714279175 +steady,sr,49,19.6,velocity,center_uy,-0.5590284466743469 +steady,sr,49,19.6,velocity,lower_ux,0.8396742939949036 +steady,sr,49,19.6,velocity,lower_uy,-0.2998710870742798 +steady,sr,50,20.0,velocity,upper_ux,1.142147421836853 +steady,sr,50,20.0,velocity,upper_uy,-0.33035698533058167 +steady,sr,50,20.0,velocity,center_ux,0.9249570965766907 +steady,sr,50,20.0,velocity,center_uy,-0.5688180327415466 +steady,sr,50,20.0,velocity,lower_ux,0.7797319293022156 +steady,sr,50,20.0,velocity,lower_uy,-0.22560743987560272 +steady,sr,51,20.4,velocity,upper_ux,1.2227214574813843 +steady,sr,51,20.4,velocity,upper_uy,-0.3342679738998413 +steady,sr,51,20.4,velocity,center_ux,0.9027867317199707 +steady,sr,51,20.4,velocity,center_uy,-0.5033130049705505 +steady,sr,51,20.4,velocity,lower_ux,0.7417166233062744 +steady,sr,51,20.4,velocity,lower_uy,-0.12931150197982788 +steady,sr,52,20.8,velocity,upper_ux,1.310773491859436 +steady,sr,52,20.8,velocity,upper_uy,-0.31578612327575684 +steady,sr,52,20.8,velocity,center_ux,0.8384177684783936 +steady,sr,52,20.8,velocity,center_uy,-0.2967059910297394 +steady,sr,52,20.8,velocity,lower_ux,0.7433627843856812 +steady,sr,52,20.8,velocity,lower_uy,-0.02816476859152317 +steady,sr,53,21.2,velocity,upper_ux,1.3865302801132202 +steady,sr,53,21.2,velocity,upper_uy,-0.2490859031677246 +steady,sr,53,21.2,velocity,center_ux,0.756358802318573 +steady,sr,53,21.2,velocity,center_uy,0.03908972814679146 +steady,sr,53,21.2,velocity,lower_ux,0.7833135724067688 +steady,sr,53,21.2,velocity,lower_uy,0.05903465300798416 +steady,sr,54,21.6,velocity,upper_ux,1.384742259979248 +steady,sr,54,21.6,velocity,upper_uy,-0.09020969271659851 +steady,sr,54,21.6,velocity,center_ux,0.7141807079315186 +steady,sr,54,21.6,velocity,center_uy,0.3758034110069275 +steady,sr,54,21.6,velocity,lower_ux,0.8359118700027466 +steady,sr,54,21.6,velocity,lower_uy,0.1358807533979416 +steady,sr,55,22.0,velocity,upper_ux,1.2448734045028687 +steady,sr,55,22.0,velocity,upper_uy,0.14349454641342163 +steady,sr,55,22.0,velocity,center_ux,0.7550817131996155 +steady,sr,55,22.0,velocity,center_uy,0.5281224250793457 +steady,sr,55,22.0,velocity,lower_ux,0.8915959000587463 +steady,sr,55,22.0,velocity,lower_uy,0.20277218520641327 +steady,sr,56,22.4,velocity,upper_ux,1.0455657243728638 +steady,sr,56,22.4,velocity,upper_uy,0.3095276653766632 +steady,sr,56,22.4,velocity,center_ux,0.8311883807182312 +steady,sr,56,22.4,velocity,center_uy,0.5340833067893982 +steady,sr,56,22.4,velocity,lower_ux,0.9520317316055298 +steady,sr,56,22.4,velocity,lower_uy,0.25423794984817505 +steady,sr,57,22.8,velocity,upper_ux,0.9060384631156921 +steady,sr,57,22.8,velocity,upper_uy,0.33595240116119385 +steady,sr,57,22.8,velocity,center_ux,0.885611891746521 +steady,sr,57,22.8,velocity,center_uy,0.5415303111076355 +steady,sr,57,22.8,velocity,lower_ux,1.0163899660110474 +steady,sr,57,22.8,velocity,lower_uy,0.2916892170906067 +steady,sr,58,23.2,velocity,upper_ux,0.8266726136207581 +steady,sr,58,23.2,velocity,upper_uy,0.2870040237903595 +steady,sr,58,23.2,velocity,center_ux,0.9175929427146912 +steady,sr,58,23.2,velocity,center_uy,0.5636551380157471 +steady,sr,58,23.2,velocity,lower_ux,1.0847113132476807 +steady,sr,58,23.2,velocity,lower_uy,0.3176528215408325 +steady,sr,59,23.6,velocity,upper_ux,0.7703585624694824 +steady,sr,59,23.6,velocity,upper_uy,0.20759469270706177 +steady,sr,59,23.6,velocity,center_ux,0.9246771335601807 +steady,sr,59,23.6,velocity,center_uy,0.5645308494567871 +steady,sr,59,23.6,velocity,lower_ux,1.1587028503417969 +steady,sr,59,23.6,velocity,lower_uy,0.33246052265167236 +steady,sr,60,24.0,velocity,upper_ux,0.7383061051368713 +steady,sr,60,24.0,velocity,upper_uy,0.10819660127162933 +steady,sr,60,24.0,velocity,center_ux,0.8931992053985596 +steady,sr,60,24.0,velocity,center_uy,0.4737704396247864 +steady,sr,60,24.0,velocity,lower_ux,1.2407045364379883 +steady,sr,60,24.0,velocity,lower_uy,0.33278074860572815 +steady,sr,61,24.4,velocity,upper_ux,0.7485352158546448 +steady,sr,61,24.4,velocity,upper_uy,0.008871727623045444 +steady,sr,61,24.4,velocity,center_ux,0.8214853405952454 +steady,sr,61,24.4,velocity,center_uy,0.23588059842586517 +steady,sr,61,24.4,velocity,lower_ux,1.3285422325134277 +steady,sr,61,24.4,velocity,lower_uy,0.30724260210990906 +steady,sr,62,24.8,velocity,upper_ux,0.7931869626045227 +steady,sr,62,24.8,velocity,upper_uy,-0.07555000483989716 +steady,sr,62,24.8,velocity,center_ux,0.7424326539039612 +steady,sr,62,24.8,velocity,center_uy,-0.11494807153940201 +steady,sr,62,24.8,velocity,lower_ux,1.3953007459640503 +steady,sr,62,24.8,velocity,lower_uy,0.2249780297279358 +steady,sr,63,25.2,velocity,upper_ux,0.8470497131347656 +steady,sr,63,25.2,velocity,upper_uy,-0.15086005628108978 +steady,sr,63,25.2,velocity,center_ux,0.7167055010795593 +steady,sr,63,25.2,velocity,center_uy,-0.42636948823928833 +steady,sr,63,25.2,velocity,lower_ux,1.367297649383545 +steady,sr,63,25.2,velocity,lower_uy,0.04436120018362999 +steady,sr,64,25.6,velocity,upper_ux,0.9041871428489685 +steady,sr,64,25.6,velocity,upper_uy,-0.21480678021907806 +steady,sr,64,25.6,velocity,center_ux,0.7720868587493896 +steady,sr,64,25.6,velocity,center_uy,-0.5349513292312622 +steady,sr,64,25.6,velocity,lower_ux,1.2037806510925293 +steady,sr,64,25.6,velocity,lower_uy,-0.18900209665298462 +steady,sr,65,26.0,velocity,upper_ux,0.9653905630111694 +steady,sr,65,26.0,velocity,upper_uy,-0.2631315588951111 +steady,sr,65,26.0,velocity,center_ux,0.8455749750137329 +steady,sr,65,26.0,velocity,center_uy,-0.5336792469024658 +steady,sr,65,26.0,velocity,lower_ux,1.0102548599243164 +steady,sr,65,26.0,velocity,lower_uy,-0.32537463307380676 +steady,sr,66,26.4,velocity,upper_ux,1.0299731492996216 +steady,sr,66,26.4,velocity,upper_uy,-0.2980259358882904 +steady,sr,66,26.4,velocity,center_ux,0.8942067623138428 +steady,sr,66,26.4,velocity,center_uy,-0.5456244349479675 +steady,sr,66,26.4,velocity,lower_ux,0.8862571120262146 +steady,sr,66,26.4,velocity,lower_uy,-0.32939979434013367 +steady,sr,67,26.8,velocity,upper_ux,1.0989872217178345 +steady,sr,67,26.8,velocity,upper_uy,-0.32174432277679443 +steady,sr,67,26.8,velocity,center_ux,0.9214657545089722 +steady,sr,67,26.8,velocity,center_uy,-0.5673584342002869 +steady,sr,67,26.8,velocity,lower_ux,0.813499391078949 +steady,sr,67,26.8,velocity,lower_uy,-0.27254989743232727 +steady,sr,68,27.2,velocity,upper_ux,1.1747400760650635 +steady,sr,68,27.2,velocity,upper_uy,-0.3339979648590088 +steady,sr,68,27.2,velocity,center_ux,0.9220297932624817 +steady,sr,68,27.2,velocity,center_uy,-0.555986225605011 +steady,sr,68,27.2,velocity,lower_ux,0.7611013054847717 +steady,sr,68,27.2,velocity,lower_uy,-0.18825489282608032 +steady,sr,69,27.6,velocity,upper_ux,1.2591339349746704 +steady,sr,69,27.6,velocity,upper_uy,-0.33039751648902893 +steady,sr,69,27.6,velocity,center_ux,0.8819152116775513 +steady,sr,69,27.6,velocity,center_uy,-0.4373779296875 +steady,sr,69,27.6,velocity,lower_ux,0.7371047139167786 +steady,sr,69,27.6,velocity,lower_uy,-0.08678501844406128 +steady,sr,70,28.0,velocity,upper_ux,1.3465259075164795 +steady,sr,70,28.0,velocity,upper_uy,-0.2964962124824524 +steady,sr,70,28.0,velocity,center_ux,0.8047411441802979 +steady,sr,70,28.0,velocity,center_uy,-0.1694158911705017 +steady,sr,70,28.0,velocity,lower_ux,0.7564404010772705 +steady,sr,70,28.0,velocity,lower_uy,0.009922829456627369 +steady,sr,71,28.4,velocity,upper_ux,1.4005001783370972 +steady,sr,71,28.4,velocity,upper_uy,-0.19629527628421783 +steady,sr,71,28.4,velocity,center_ux,0.7309929728507996 +steady,sr,71,28.4,velocity,center_uy,0.189952552318573 +steady,sr,71,28.4,velocity,lower_ux,0.8042712211608887 +steady,sr,71,28.4,velocity,lower_uy,0.09189349412918091 +steady,sr,72,28.8,velocity,upper_ux,1.342596173286438 +steady,sr,72,28.8,velocity,upper_uy,0.004685649648308754 +steady,sr,72,28.8,velocity,center_ux,0.7223736047744751 +steady,sr,72,28.8,velocity,center_uy,0.46714621782302856 +steady,sr,72,28.8,velocity,lower_ux,0.858224093914032 +steady,sr,72,28.8,velocity,lower_uy,0.16545908153057098 +steady,sr,73,29.2,velocity,upper_ux,1.1603046655654907 +steady,sr,73,29.2,velocity,upper_uy,0.22995813190937042 +steady,sr,73,29.2,velocity,center_ux,0.7883865237236023 +steady,sr,73,29.2,velocity,center_uy,0.5371178984642029 +steady,sr,73,29.2,velocity,lower_ux,0.9162228107452393 +steady,sr,73,29.2,velocity,lower_uy,0.22616448998451233 +steady,sr,74,29.6,velocity,upper_ux,0.9781168103218079 +steady,sr,74,29.6,velocity,upper_uy,0.33528631925582886 +steady,sr,74,29.6,velocity,center_ux,0.8580295443534851 +steady,sr,74,29.6,velocity,center_uy,0.5343493819236755 +steady,sr,74,29.6,velocity,lower_ux,0.978637158870697 +steady,sr,74,29.6,velocity,lower_uy,0.2714134752750397 +steady,sr,75,30.0,velocity,upper_ux,0.869201123714447 +steady,sr,75,30.0,velocity,upper_uy,0.3207831084728241 +steady,sr,75,30.0,velocity,center_ux,0.902304470539093 +steady,sr,75,30.0,velocity,center_uy,0.5503822565078735 +steady,sr,75,30.0,velocity,lower_ux,1.0444835424423218 +steady,sr,75,30.0,velocity,lower_uy,0.30385905504226685 +steady,sr,76,30.4,velocity,upper_ux,0.8017172813415527 +steady,sr,76,30.4,velocity,upper_uy,0.2571341097354889 +steady,sr,76,30.4,velocity,center_ux,0.9249098300933838 +steady,sr,76,30.4,velocity,center_uy,0.5700749158859253 +steady,sr,76,30.4,velocity,lower_ux,1.1146050691604614 +steady,sr,76,30.4,velocity,lower_uy,0.32528820633888245 +steady,sr,77,30.8,velocity,upper_ux,0.7529884576797485 +steady,sr,77,30.8,velocity,upper_uy,0.16807639598846436 +steady,sr,77,30.8,velocity,center_ux,0.9176070690155029 +steady,sr,77,30.8,velocity,center_uy,0.5427827835083008 +steady,sr,77,30.8,velocity,lower_ux,1.1915546655654907 +steady,sr,77,30.8,velocity,lower_uy,0.3347737789154053 +steady,sr,78,31.2,velocity,upper_ux,0.7370014786720276 +steady,sr,78,31.2,velocity,upper_uy,0.0654967650771141 +steady,sr,78,31.2,velocity,center_ux,0.8681089282035828 +steady,sr,78,31.2,velocity,center_uy,0.39373448491096497 +steady,sr,78,31.2,velocity,lower_ux,1.277205467224121 +steady,sr,78,31.2,velocity,lower_uy,0.32655230164527893 +steady,sr,79,31.6,velocity,upper_ux,0.7646650075912476 +steady,sr,79,31.6,velocity,upper_uy,-0.02806461602449417 +steady,sr,79,31.6,velocity,center_ux,0.7873235940933228 +steady,sr,79,31.6,velocity,center_uy,0.09800592064857483 +steady,sr,79,31.6,velocity,lower_ux,1.3624669313430786 +steady,sr,79,31.6,velocity,lower_uy,0.2827024757862091 +steady,sr,80,32.0,velocity,upper_ux,0.8155003190040588 +steady,sr,80,32.0,velocity,upper_uy,-0.10802683234214783 +steady,sr,80,32.0,velocity,center_ux,0.7228042483329773 +steady,sr,80,32.0,velocity,center_uy,-0.2619009017944336 +steady,sr,80,32.0,velocity,lower_ux,1.400596022605896 +steady,sr,80,32.0,velocity,lower_uy,0.16255712509155273 +steady,sr,81,32.4,velocity,upper_ux,0.8704018592834473 +steady,sr,81,32.4,velocity,upper_uy,-0.17954790592193604 +steady,sr,81,32.4,velocity,center_ux,0.732805609703064 +steady,sr,81,32.4,velocity,center_uy,-0.49763283133506775 +steady,sr,81,32.4,velocity,lower_ux,1.3123724460601807 +steady,sr,81,32.4,velocity,lower_uy,-0.05532490834593773 +steady,sr,82,32.8,velocity,upper_ux,0.9291243553161621 +steady,sr,82,32.8,velocity,upper_uy,-0.2369602769613266 +steady,sr,82,32.8,velocity,center_ux,0.8053787350654602 +steady,sr,82,32.8,velocity,center_uy,-0.5366332530975342 +steady,sr,82,32.8,velocity,lower_ux,1.117526650428772 +steady,sr,82,32.8,velocity,lower_uy,-0.2647572457790375 +steady,sr,83,33.2,velocity,upper_ux,0.9918164610862732 +steady,sr,83,33.2,velocity,upper_uy,-0.2792574465274811 +steady,sr,83,33.2,velocity,center_ux,0.8691649436950684 +steady,sr,83,33.2,velocity,center_uy,-0.5360188484191895 +steady,sr,83,33.2,velocity,lower_ux,0.9491761922836304 +steady,sr,83,33.2,velocity,lower_uy,-0.3393534719944 +steady,sr,84,33.6,velocity,upper_ux,1.0583033561706543 +steady,sr,84,33.6,velocity,upper_uy,-0.30931589007377625 +steady,sr,84,33.6,velocity,center_ux,0.9086452722549438 +steady,sr,84,33.6,velocity,center_uy,-0.5552057027816772 +steady,sr,84,33.6,velocity,lower_ux,0.8527753353118896 +steady,sr,84,33.6,velocity,lower_uy,-0.3099760413169861 +steady,sr,85,34.0,velocity,upper_ux,1.1300272941589355 +steady,sr,85,34.0,velocity,upper_uy,-0.3284424841403961 +steady,sr,85,34.0,velocity,center_ux,0.9264692664146423 +steady,sr,85,34.0,velocity,center_uy,-0.5707055926322937 +steady,sr,85,34.0,velocity,lower_ux,0.7899667620658875 +steady,sr,85,34.0,velocity,lower_uy,-0.24045665562152863 +steady,sr,86,34.4,velocity,upper_ux,1.209303855895996 +steady,sr,86,34.4,velocity,upper_uy,-0.3349555730819702 +steady,sr,86,34.4,velocity,center_ux,0.9114102721214294 +steady,sr,86,34.4,velocity,center_uy,-0.52399742603302 +steady,sr,86,34.4,velocity,lower_ux,0.74669349193573 +steady,sr,86,34.4,velocity,lower_uy,-0.14708134531974792 +steady,sr,87,34.8,velocity,upper_ux,1.2964351177215576 +steady,sr,87,34.8,velocity,upper_uy,-0.32139623165130615 +steady,sr,87,34.8,velocity,center_ux,0.8531143665313721 +steady,sr,87,34.8,velocity,center_uy,-0.34313660860061646 +steady,sr,87,34.8,velocity,lower_ux,0.7398116588592529 +steady,sr,87,34.8,velocity,lower_uy,-0.04456065595149994 +steady,sr,88,35.2,velocity,upper_ux,1.377102255821228 +steady,sr,88,35.2,velocity,upper_uy,-0.26552021503448486 +steady,sr,88,35.2,velocity,center_ux,0.7702434659004211 +steady,sr,88,35.2,velocity,center_uy,-0.02282031998038292 +steady,sr,88,35.2,velocity,lower_ux,0.7742946743965149 +steady,sr,88,35.2,velocity,lower_uy,0.04566026106476784 +steady,sr,89,35.6,velocity,upper_ux,1.3942257165908813 +steady,sr,89,35.6,velocity,upper_uy,-0.12361455708742142 +steady,sr,89,35.6,velocity,center_ux,0.7171021103858948 +steady,sr,89,35.6,velocity,center_uy,0.32842200994491577 +steady,sr,89,35.6,velocity,lower_ux,0.82633376121521 +steady,sr,89,35.6,velocity,lower_uy,0.12383376806974411 +steady,sr,90,36.0,velocity,upper_ux,1.2759809494018555 +steady,sr,90,36.0,velocity,upper_uy,0.10619542002677917 +steady,sr,90,36.0,velocity,center_ux,0.745201826095581 +steady,sr,90,36.0,velocity,center_uy,0.5182672739028931 +steady,sr,90,36.0,velocity,lower_ux,0.8819972276687622 +steady,sr,90,36.0,velocity,lower_uy,0.1929047554731369 +steady,sr,91,36.4,velocity,upper_ux,1.076443076133728 +steady,sr,91,36.4,velocity,upper_uy,0.293101042509079 +steady,sr,91,36.4,velocity,center_ux,0.8213483691215515 +steady,sr,91,36.4,velocity,center_uy,0.5353374481201172 +steady,sr,91,36.4,velocity,lower_ux,0.9421583414077759 +steady,sr,91,36.4,velocity,lower_uy,0.24695535004138947 +steady,sr,92,36.8,velocity,upper_ux,0.9245948791503906 +steady,sr,92,36.8,velocity,upper_uy,0.3390440344810486 +steady,sr,92,36.8,velocity,center_ux,0.8798896670341492 +steady,sr,92,36.8,velocity,center_uy,0.5388780832290649 +steady,sr,92,36.8,velocity,lower_ux,1.0059207677841187 +steady,sr,92,36.8,velocity,lower_uy,0.2864800691604614 +steady,sr,93,37.2,velocity,upper_ux,0.8383785486221313 +steady,sr,93,37.2,velocity,upper_uy,0.29770365357398987 +steady,sr,93,37.2,velocity,center_ux,0.9148317575454712 +steady,sr,93,37.2,velocity,center_uy,0.5601789951324463 +steady,sr,93,37.2,velocity,lower_ux,1.0730775594711304 +steady,sr,93,37.2,velocity,lower_uy,0.31420600414276123 +steady,sr,94,37.6,velocity,upper_ux,0.7787927985191345 +steady,sr,94,37.6,velocity,upper_uy,0.22262132167816162 +steady,sr,94,37.6,velocity,center_ux,0.9266563653945923 +steady,sr,94,37.6,velocity,center_uy,0.5687571167945862 +steady,sr,94,37.6,velocity,lower_ux,1.145683765411377 +steady,sr,94,37.6,velocity,lower_uy,0.3309386968612671 +steady,sr,95,38.0,velocity,upper_ux,0.7412150502204895 +steady,sr,95,38.0,velocity,upper_uy,0.1255079209804535 +steady,sr,95,38.0,velocity,center_ux,0.9027041792869568 +steady,sr,95,38.0,velocity,center_uy,0.4988783597946167 +steady,sr,95,38.0,velocity,lower_ux,1.226537823677063 +steady,sr,95,38.0,velocity,lower_uy,0.3341650664806366 +steady,sr,96,38.4,velocity,upper_ux,0.7440559267997742 +steady,sr,96,38.4,velocity,upper_uy,0.024176297709345818 +steady,sr,96,38.4,velocity,center_ux,0.8367421627044678 +steady,sr,96,38.4,velocity,center_uy,0.28587624430656433 +steady,sr,96,38.4,velocity,lower_ux,1.3147692680358887 +steady,sr,96,38.4,velocity,lower_uy,0.3143880367279053 +steady,sr,97,38.8,velocity,upper_ux,0.785025954246521 +steady,sr,97,38.8,velocity,upper_uy,-0.06281967461109161 +steady,sr,97,38.8,velocity,center_ux,0.7551103234291077 +steady,sr,97,38.8,velocity,center_uy,-0.05425458028912544 +steady,sr,97,38.8,velocity,lower_ux,1.3892015218734741 +steady,sr,97,38.8,velocity,lower_uy,0.24452698230743408 +steady,sr,98,39.2,velocity,upper_ux,0.8381820917129517 +steady,sr,98,39.2,velocity,upper_uy,-0.1394495815038681 +steady,sr,98,39.2,velocity,center_ux,0.7163113951683044 +steady,sr,98,39.2,velocity,center_uy,-0.3873104155063629 +steady,sr,98,39.2,velocity,lower_ux,1.3819148540496826 +steady,sr,98,39.2,velocity,lower_uy,0.08022978901863098 +steady,sr,99,39.6,velocity,upper_ux,0.8943122029304504 +steady,sr,99,39.6,velocity,upper_uy,-0.20571447908878326 +steady,sr,99,39.6,velocity,center_ux,0.7603545188903809 +steady,sr,99,39.6,velocity,center_uy,-0.5303032994270325 +steady,sr,99,39.6,velocity,lower_ux,1.235761046409607 +steady,sr,99,39.6,velocity,lower_uy,-0.1548268049955368 +steady,sr,100,40.0,velocity,upper_ux,0.9549582004547119 +steady,sr,100,40.0,velocity,upper_uy,-0.2564584016799927 +steady,sr,100,40.0,velocity,center_ux,0.8357164859771729 +steady,sr,100,40.0,velocity,center_uy,-0.5341090559959412 +steady,sr,100,40.0,velocity,lower_ux,1.0373659133911133 +steady,sr,100,40.0,velocity,lower_uy,-0.3142136335372925 +steady,sr,101,40.4,velocity,upper_ux,1.0194182395935059 +steady,sr,101,40.4,velocity,upper_uy,-0.29328012466430664 +steady,sr,101,40.4,velocity,center_ux,0.8886626958847046 +steady,sr,101,40.4,velocity,center_uy,-0.5424595475196838 +steady,sr,101,40.4,velocity,lower_ux,0.9021022915840149 +steady,sr,101,40.4,velocity,lower_uy,-0.3348690867424011 +steady,sr,102,40.8,velocity,upper_ux,1.087989330291748 +steady,sr,102,40.8,velocity,upper_uy,-0.3187240958213806 +steady,sr,102,40.8,velocity,center_ux,0.9196417331695557 +steady,sr,102,40.8,velocity,center_uy,-0.5646994113922119 +steady,sr,102,40.8,velocity,lower_ux,0.8246367573738098 +steady,sr,102,40.8,velocity,lower_uy,-0.28415626287460327 +steady,sr,103,41.2,velocity,upper_ux,1.162505030632019 +steady,sr,103,41.2,velocity,upper_uy,-0.3329615890979767 +steady,sr,103,41.2,velocity,center_ux,0.9255029559135437 +steady,sr,103,41.2,velocity,center_uy,-0.5634622573852539 +steady,sr,103,41.2,velocity,lower_ux,0.7689772248268127 +steady,sr,103,41.2,velocity,lower_uy,-0.20379725098609924 +steady,sr,104,41.6,velocity,upper_ux,1.2451423406600952 +steady,sr,104,41.6,velocity,upper_uy,-0.33247748017311096 +steady,sr,104,41.6,velocity,center_ux,0.8921759724617004 +steady,sr,104,41.6,velocity,center_uy,-0.467070609331131 +steady,sr,104,41.6,velocity,lower_ux,0.738169252872467 +steady,sr,104,41.6,velocity,lower_uy,-0.10370417684316635 +steady,sr,105,42.0,velocity,upper_ux,1.3330355882644653 +steady,sr,105,42.0,velocity,upper_uy,-0.3051915466785431 +steady,sr,105,42.0,velocity,center_ux,0.8189648985862732 +steady,sr,105,42.0,velocity,center_uy,-0.22214734554290771 +steady,sr,105,42.0,velocity,lower_ux,0.7500092387199402 +steady,sr,105,42.0,velocity,lower_uy,-0.004528190940618515 +steady,sr,106,42.4,velocity,upper_ux,1.3972522020339966 +steady,sr,106,42.4,velocity,upper_uy,-0.21884828805923462 +steady,sr,106,42.4,velocity,center_ux,0.7407956719398499 +steady,sr,106,42.4,velocity,center_uy,0.13187342882156372 +steady,sr,106,42.4,velocity,lower_ux,0.7953815460205078 +steady,sr,106,42.4,velocity,lower_uy,0.07953492552042007 +steady,sr,107,42.8,velocity,upper_ux,1.362176537513733 +steady,sr,107,42.8,velocity,upper_uy,-0.032638587057590485 +steady,sr,107,42.8,velocity,center_ux,0.71893310546875 +steady,sr,107,42.8,velocity,center_uy,0.43674156069755554 +steady,sr,107,42.8,velocity,lower_ux,0.8494287729263306 +steady,sr,107,42.8,velocity,lower_uy,0.15449665486812592 +steady,sr,108,43.2,velocity,upper_ux,1.1933410167694092 +steady,sr,108,43.2,velocity,upper_uy,0.19999322295188904 +steady,sr,108,43.2,velocity,center_ux,0.7770606279373169 +steady,sr,108,43.2,velocity,center_uy,0.5359916090965271 +steady,sr,108,43.2,velocity,lower_ux,0.9069833159446716 +steady,sr,108,43.2,velocity,lower_uy,0.2176966518163681 +steady,sr,109,43.6,velocity,upper_ux,1.0025219917297363 +steady,sr,109,43.6,velocity,upper_uy,0.32866668701171875 +steady,sr,109,43.6,velocity,center_ux,0.849682092666626 +steady,sr,109,43.6,velocity,center_uy,0.5338828563690186 +steady,sr,109,43.6,velocity,lower_ux,0.9686385989189148 +steady,sr,109,43.6,velocity,lower_uy,0.26525554060935974 +steady,sr,110,44.0,velocity,upper_ux,0.8827380537986755 +steady,sr,110,44.0,velocity,upper_uy,0.32767581939697266 +steady,sr,110,44.0,velocity,center_ux,0.897139310836792 +steady,sr,110,44.0,velocity,center_uy,0.5467946529388428 +steady,sr,110,44.0,velocity,lower_ux,1.0335177183151245 +steady,sr,110,44.0,velocity,lower_uy,0.2995432913303375 +steady,sr,111,44.4,velocity,upper_ux,0.8113262057304382 +steady,sr,111,44.4,velocity,upper_uy,0.26922404766082764 +steady,sr,111,44.4,velocity,center_ux,0.923259437084198 +steady,sr,111,44.4,velocity,center_uy,0.5682714581489563 +steady,sr,111,44.4,velocity,lower_ux,1.1027171611785889 +steady,sr,111,44.4,velocity,lower_uy,0.32268714904785156 +steady,sr,112,44.8,velocity,upper_ux,0.7594501376152039 +steady,sr,112,44.8,velocity,upper_uy,0.18386390805244446 +steady,sr,112,44.8,velocity,center_ux,0.9220860004425049 +steady,sr,112,44.8,velocity,center_uy,0.5537295937538147 +steady,sr,112,44.8,velocity,lower_ux,1.1787337064743042 +steady,sr,112,44.8,velocity,lower_uy,0.33431288599967957 +steady,sr,113,45.2,velocity,upper_ux,0.7369635701179504 +steady,sr,113,45.2,velocity,upper_uy,0.0818517655134201 +steady,sr,113,45.2,velocity,center_ux,0.8798200488090515 +steady,sr,113,45.2,velocity,center_uy,0.4283004701137543 +steady,sr,113,45.2,velocity,lower_ux,1.2635418176651 +steady,sr,113,45.2,velocity,lower_uy,0.32969197630882263 +steady,sr,114,45.6,velocity,upper_ux,0.7582179307937622 +steady,sr,114,45.6,velocity,upper_uy,-0.0144218560308218 +steady,sr,114,45.6,velocity,center_ux,0.8016462922096252 +steady,sr,114,45.6,velocity,center_uy,0.1533021628856659 +steady,sr,114,45.6,velocity,lower_ux,1.3507848978042603 +steady,sr,114,45.6,velocity,lower_uy,0.2936003804206848 +steady,sr,115,46.0,velocity,upper_ux,0.8069068193435669 +steady,sr,115,46.0,velocity,upper_uy,-0.0960308089852333 +steady,sr,115,46.0,velocity,center_ux,0.7298299670219421 +steady,sr,115,46.0,velocity,center_uy,-0.20752401649951935 +steady,sr,115,46.0,velocity,lower_ux,1.4013800621032715 +steady,sr,115,46.0,velocity,lower_uy,0.18856386840343475 +steady,sr,116,46.4,velocity,upper_ux,0.8611174821853638 +steady,sr,116,46.4,velocity,upper_uy,-0.16914185881614685 +steady,sr,116,46.4,velocity,center_ux,0.7255951762199402 +steady,sr,116,46.4,velocity,center_uy,-0.4756067395210266 +steady,sr,116,46.4,velocity,lower_ux,1.3357033729553223 +steady,sr,116,46.4,velocity,lower_uy,-0.017460713163018227 +steady,sr,117,46.8,velocity,upper_ux,0.919323742389679 +steady,sr,117,46.8,velocity,upper_uy,-0.22902749478816986 +steady,sr,117,46.8,velocity,center_ux,0.7933767437934875 +steady,sr,117,46.8,velocity,center_uy,-0.5372894406318665 +steady,sr,117,46.8,velocity,lower_ux,1.1493819952011108 +steady,sr,117,46.8,velocity,lower_uy,-0.23970799148082733 +steady,sr,118,47.2,velocity,upper_ux,0.9818758368492126 +steady,sr,118,47.2,velocity,upper_uy,-0.27350956201553345 +steady,sr,118,47.2,velocity,center_ux,0.8615145087242126 +steady,sr,118,47.2,velocity,center_uy,-0.5347411632537842 +steady,sr,118,47.2,velocity,lower_ux,0.9707295298576355 +steady,sr,118,47.2,velocity,lower_uy,-0.3369840681552887 +steady,sr,119,47.6,velocity,upper_ux,1.0479943752288818 +steady,sr,119,47.6,velocity,upper_uy,-0.30532723665237427 +steady,sr,119,47.6,velocity,center_ux,0.9046056866645813 +steady,sr,119,47.6,velocity,center_uy,-0.5516158938407898 +steady,sr,119,47.6,velocity,lower_ux,0.8655352592468262 +steady,sr,119,47.6,velocity,lower_uy,-0.31835871934890747 +steady,sr,120,48.0,velocity,upper_ux,1.1186046600341797 +steady,sr,120,48.0,velocity,upper_uy,-0.32618236541748047 +steady,sr,120,48.0,velocity,center_ux,0.926155149936676 +steady,sr,120,48.0,velocity,center_uy,-0.570598840713501 +steady,sr,120,48.0,velocity,lower_ux,0.7993387579917908 +steady,sr,120,48.0,velocity,lower_uy,-0.2533150017261505 +steady,sr,121,48.4,velocity,upper_ux,1.196115493774414 +steady,sr,121,48.4,velocity,upper_uy,-0.33494216203689575 +steady,sr,121,48.4,velocity,center_ux,0.9169948101043701 +steady,sr,121,48.4,velocity,center_uy,-0.5390220880508423 +steady,sr,121,48.4,velocity,lower_ux,0.7516100406646729 +steady,sr,121,48.4,velocity,lower_uy,-0.1631491333246231 +steady,sr,122,48.8,velocity,upper_ux,1.2821319103240967 +steady,sr,122,48.8,velocity,upper_uy,-0.3254851996898651 +steady,sr,122,48.8,velocity,center_ux,0.865180253982544 +steady,sr,122,48.8,velocity,center_uy,-0.382246196269989 +steady,sr,122,48.8,velocity,lower_ux,0.737470805644989 +steady,sr,122,48.8,velocity,lower_uy,-0.06032243371009827 +steady,sr,123,49.2,velocity,upper_ux,1.3665045499801636 +steady,sr,123,49.2,velocity,upper_uy,-0.2787889242172241 +steady,sr,123,49.2,velocity,center_ux,0.7836109399795532 +steady,sr,123,49.2,velocity,center_uy,-0.07977350056171417 +steady,sr,123,49.2,velocity,lower_ux,0.7667729258537292 +steady,sr,123,49.2,velocity,lower_uy,0.03262120485305786 +steady,sr,124,49.6,velocity,upper_ux,1.3997464179992676 +steady,sr,124,49.6,velocity,upper_uy,-0.15307104587554932 +steady,sr,124,49.6,velocity,center_ux,0.7217543721199036 +steady,sr,124,49.6,velocity,center_uy,0.27921468019485474 +steady,sr,124,49.6,velocity,lower_ux,0.818065881729126 +steady,sr,124,49.6,velocity,lower_uy,0.11217856407165527 +steady,sr,125,50.0,velocity,upper_ux,1.3035343885421753 +steady,sr,125,50.0,velocity,upper_uy,0.06882069259881973 +steady,sr,125,50.0,velocity,center_ux,0.7365068793296814 +steady,sr,125,50.0,velocity,center_uy,0.5038501024246216 +steady,sr,125,50.0,velocity,lower_ux,0.8733313679695129 +steady,sr,125,50.0,velocity,lower_uy,0.18312406539916992 +steady,sr,126,50.4,velocity,upper_ux,1.1067407131195068 +steady,sr,126,50.4,velocity,upper_uy,0.27308589220046997 +steady,sr,126,50.4,velocity,center_ux,0.810260534286499 +steady,sr,126,50.4,velocity,center_uy,0.5364407300949097 +steady,sr,126,50.4,velocity,lower_ux,0.9325219988822937 +steady,sr,126,50.4,velocity,lower_uy,0.23966920375823975 +steady,sr,127,50.8,velocity,upper_ux,0.9427528977394104 +steady,sr,127,50.8,velocity,upper_uy,0.33978375792503357 +steady,sr,127,50.8,velocity,center_ux,0.8725531101226807 +steady,sr,127,50.8,velocity,center_uy,0.5367110967636108 +steady,sr,127,50.8,velocity,lower_ux,0.9954492449760437 +steady,sr,127,50.8,velocity,lower_uy,0.28122732043266296 +steady,sr,128,51.2,velocity,upper_ux,0.8493256568908691 +steady,sr,128,51.2,velocity,upper_uy,0.30703258514404297 +steady,sr,128,51.2,velocity,center_ux,0.9107704758644104 +steady,sr,128,51.2,velocity,center_uy,0.5565281510353088 +steady,sr,128,51.2,velocity,lower_ux,1.062055230140686 +steady,sr,128,51.2,velocity,lower_uy,0.31066828966140747 +steady,sr,129,51.6,velocity,upper_ux,0.7873250842094421 +steady,sr,129,51.6,velocity,upper_uy,0.23614446818828583 +steady,sr,129,51.6,velocity,center_ux,0.9271371960639954 +steady,sr,129,51.6,velocity,center_uy,0.5706055164337158 +steady,sr,129,51.6,velocity,lower_ux,1.1340031623840332 +steady,sr,129,51.6,velocity,lower_uy,0.3291766047477722 +steady,sr,130,52.0,velocity,upper_ux,0.7453019618988037 +steady,sr,130,52.0,velocity,upper_uy,0.14174579083919525 +steady,sr,130,52.0,velocity,center_ux,0.9099580645561218 +steady,sr,130,52.0,velocity,center_uy,0.5184855461120605 +steady,sr,130,52.0,velocity,lower_ux,1.213773250579834 +steady,sr,130,52.0,velocity,lower_uy,0.3348950147628784 +steady,sr,131,52.4,velocity,upper_ux,0.7407809495925903 +steady,sr,131,52.4,velocity,upper_uy,0.039271339774131775 +steady,sr,131,52.4,velocity,center_ux,0.8496654629707336 +steady,sr,131,52.4,velocity,center_uy,0.32941827178001404 +steady,sr,131,52.4,velocity,lower_ux,1.301375389099121 +steady,sr,131,52.4,velocity,lower_uy,0.31984490156173706 +steady,sr,132,52.8,velocity,upper_ux,0.776965320110321 +steady,sr,132,52.8,velocity,upper_uy,-0.05023253336548805 +steady,sr,132,52.8,velocity,center_ux,0.7667953372001648 +steady,sr,132,52.8,velocity,center_uy,0.0032796466257423162 +steady,sr,132,52.8,velocity,lower_ux,1.380746603012085 +steady,sr,132,52.8,velocity,lower_uy,0.26054853200912476 +steady,sr,133,53.2,velocity,upper_ux,0.8293023109436035 +steady,sr,133,53.2,velocity,upper_uy,-0.1280452311038971 +steady,sr,133,53.2,velocity,center_ux,0.7170397043228149 +steady,sr,133,53.2,velocity,center_uy,-0.34451058506965637 +steady,sr,133,53.2,velocity,lower_ux,1.3917498588562012 +steady,sr,133,53.2,velocity,lower_uy,0.11262352019548416 +steady,sr,134,53.6,velocity,upper_ux,0.8851056098937988 +steady,sr,134,53.6,velocity,upper_uy,-0.19640234112739563 +steady,sr,134,53.6,velocity,center_ux,0.7494296431541443 +steady,sr,134,53.6,velocity,center_uy,-0.5222216248512268 +steady,sr,134,53.6,velocity,lower_ux,1.2656291723251343 +steady,sr,134,53.6,velocity,lower_uy,-0.1195361539721489 +steady,sr,135,54.0,velocity,upper_ux,0.9454756379127502 +steady,sr,135,54.0,velocity,upper_uy,-0.2495700865983963 +steady,sr,135,54.0,velocity,center_ux,0.8256178498268127 +steady,sr,135,54.0,velocity,center_uy,-0.5350372791290283 +steady,sr,135,54.0,velocity,lower_ux,1.0658228397369385 +steady,sr,135,54.0,velocity,lower_uy,-0.29957935214042664 +steady,sr,136,54.4,velocity,upper_ux,1.0095360279083252 +steady,sr,136,54.4,velocity,upper_uy,-0.2883569896221161 +steady,sr,136,54.4,velocity,center_ux,0.8827095627784729 +steady,sr,136,54.4,velocity,center_uy,-0.5397882461547852 +steady,sr,136,54.4,velocity,lower_ux,0.9186837077140808 +steady,sr,136,54.4,velocity,lower_uy,-0.3383532762527466 +steady,sr,137,54.8,velocity,upper_ux,1.0771114826202393 +steady,sr,137,54.8,velocity,upper_uy,-0.31546908617019653 +steady,sr,137,54.8,velocity,center_ux,0.9166477918624878 +steady,sr,137,54.8,velocity,center_uy,-0.561479926109314 +steady,sr,137,54.8,velocity,lower_ux,0.8350954651832581 +steady,sr,137,54.8,velocity,lower_uy,-0.29434657096862793 +steady,sr,138,55.2,velocity,upper_ux,1.1501469612121582 +steady,sr,138,55.2,velocity,upper_uy,-0.33155155181884766 +steady,sr,138,55.2,velocity,center_ux,0.9269314408302307 +steady,sr,138,55.2,velocity,center_uy,-0.5678723454475403 +steady,sr,138,55.2,velocity,lower_ux,0.7763810157775879 +steady,sr,138,55.2,velocity,lower_uy,-0.2179086059331894 +steady,sr,139,55.6,velocity,upper_ux,1.2314143180847168 +steady,sr,139,55.6,velocity,upper_uy,-0.3338392674922943 +steady,sr,139,55.6,velocity,center_ux,0.9005125164985657 +steady,sr,139,55.6,velocity,center_uy,-0.49141472578048706 +steady,sr,139,55.6,velocity,lower_ux,0.7402646541595459 +steady,sr,139,55.6,velocity,lower_uy,-0.11988513916730881 +steady,sr,140,56.0,velocity,upper_ux,1.3196711540222168 +steady,sr,140,56.0,velocity,upper_uy,-0.31222689151763916 +steady,sr,140,56.0,velocity,center_ux,0.8325061202049255 +steady,sr,140,56.0,velocity,center_uy,-0.26990818977355957 +steady,sr,140,56.0,velocity,lower_ux,0.7453500628471375 +steady,sr,140,56.0,velocity,lower_uy,-0.018924003466963768 +steady,sr,141,56.4,velocity,upper_ux,1.3918386697769165 +steady,sr,141,56.4,velocity,upper_uy,-0.2382006198167801 +steady,sr,141,56.4,velocity,center_ux,0.7515602707862854 +steady,sr,141,56.4,velocity,center_uy,0.07471859455108643 +steady,sr,141,56.4,velocity,lower_ux,0.7876436114311218 +steady,sr,141,56.4,velocity,lower_uy,0.06736057996749878 +steady,sr,142,56.8,velocity,upper_ux,1.3774583339691162 +steady,sr,142,56.8,velocity,upper_uy,-0.06778916716575623 +steady,sr,142,56.8,velocity,center_ux,0.7171427011489868 +steady,sr,142,56.8,velocity,center_uy,0.4014260172843933 +steady,sr,142,56.8,velocity,lower_ux,0.8411835432052612 +steady,sr,142,56.8,velocity,lower_uy,0.14357519149780273 +steady,sr,143,57.2,velocity,upper_ux,1.2245497703552246 +steady,sr,143,57.2,velocity,upper_uy,0.16759707033634186 +steady,sr,143,57.2,velocity,center_ux,0.7651897668838501 +steady,sr,143,57.2,velocity,center_uy,0.5324143767356873 +steady,sr,143,57.2,velocity,lower_ux,0.897717297077179 +steady,sr,143,57.2,velocity,lower_uy,0.2090580016374588 +steady,sr,144,57.6,velocity,upper_ux,1.0276321172714233 +steady,sr,144,57.6,velocity,upper_uy,0.3188633620738983 +steady,sr,144,57.6,velocity,center_ux,0.8398786783218384 +steady,sr,144,57.6,velocity,center_uy,0.5339782238006592 +steady,sr,144,57.6,velocity,lower_ux,0.958585262298584 +steady,sr,144,57.6,velocity,lower_uy,0.2589229345321655 +steady,sr,145,58.0,velocity,upper_ux,0.8967934250831604 +steady,sr,145,58.0,velocity,upper_uy,0.33323460817337036 +steady,sr,145,58.0,velocity,center_ux,0.8912412524223328 +steady,sr,145,58.0,velocity,center_uy,0.5435720086097717 +steady,sr,145,58.0,velocity,lower_ux,1.023132562637329 +steady,sr,145,58.0,velocity,lower_uy,0.29504963755607605 +steady,sr,146,58.4,velocity,upper_ux,0.8211916089057922 +steady,sr,146,58.4,velocity,upper_uy,0.28034552931785583 +steady,sr,146,58.4,velocity,center_ux,0.9209526181221008 +steady,sr,146,58.4,velocity,center_uy,0.5657879114151001 +steady,sr,146,58.4,velocity,lower_ux,1.0918952226638794 +steady,sr,146,58.4,velocity,lower_uy,0.31986668705940247 +steady,sr,147,58.8,velocity,upper_ux,0.766511857509613 +steady,sr,147,58.8,velocity,upper_uy,0.19866760075092316 +steady,sr,147,58.8,velocity,center_ux,0.9250950813293457 +steady,sr,147,58.8,velocity,center_uy,0.5614356398582458 +steady,sr,147,58.8,velocity,lower_ux,1.1668967008590698 +steady,sr,147,58.8,velocity,lower_uy,0.33342239260673523 +steady,sr,148,59.2,velocity,upper_ux,0.7377602458000183 +steady,sr,148,59.2,velocity,upper_uy,0.09790870547294617 +steady,sr,148,59.2,velocity,center_ux,0.8894239068031311 +steady,sr,148,59.2,velocity,center_uy,0.45759841799736023 +steady,sr,148,59.2,velocity,lower_ux,1.250196933746338 +steady,sr,148,59.2,velocity,lower_uy,0.33188915252685547 +steady,sr,149,59.6,velocity,upper_ux,0.7520347833633423 +steady,sr,149,59.6,velocity,upper_uy,-0.0006511101382784545 +steady,sr,149,59.6,velocity,center_ux,0.8146362900733948 +steady,sr,149,59.6,velocity,center_uy,0.20434977114200592 +steady,sr,149,59.6,velocity,lower_ux,1.338028073310852 +steady,sr,149,59.6,velocity,lower_uy,0.3023829758167267 +steady,sr,150,60.0,velocity,upper_ux,0.7983456254005432 +steady,sr,150,60.0,velocity,upper_uy,-0.08405634015798569 +steady,sr,150,60.0,velocity,center_ux,0.737820029258728 +steady,sr,150,60.0,velocity,center_uy,-0.15241354703903198 +steady,sr,150,60.0,velocity,lower_ux,1.3989108800888062 +steady,sr,150,60.0,velocity,lower_uy,0.2111700177192688 +steady,sr,151,60.4,velocity,upper_ux,0.8524654507637024 +steady,sr,151,60.4,velocity,upper_uy,-0.1585550606250763 +steady,sr,151,60.4,velocity,center_ux,0.7206013202667236 +steady,sr,151,60.4,velocity,center_uy,-0.44830650091171265 +steady,sr,151,60.4,velocity,lower_ux,1.3556331396102905 +steady,sr,151,60.4,velocity,lower_uy,0.019147256389260292 +steady,sr,152,60.8,velocity,upper_ux,0.9102821350097656 +steady,sr,152,60.8,velocity,upper_uy,-0.22086168825626373 +steady,sr,152,60.8,velocity,center_ux,0.7817361950874329 +steady,sr,152,60.8,velocity,center_uy,-0.5367293953895569 +steady,sr,152,60.8,velocity,lower_ux,1.181390643119812 +steady,sr,152,60.8,velocity,lower_uy,-0.2115425318479538 +steady,sr,153,61.2,velocity,upper_ux,0.9722877740859985 +steady,sr,153,61.2,velocity,upper_uy,-0.26757577061653137 +steady,sr,153,61.2,velocity,center_ux,0.8533144593238831 +steady,sr,153,61.2,velocity,center_uy,-0.534050703048706 +steady,sr,153,61.2,velocity,lower_ux,0.9936572909355164 +steady,sr,153,61.2,velocity,lower_uy,-0.33160096406936646 +steady,sr,154,61.6,velocity,upper_ux,1.0375057458877563 +steady,sr,154,61.6,velocity,upper_uy,-0.30117273330688477 +steady,sr,154,61.6,velocity,center_ux,0.8995398879051208 +steady,sr,154,61.6,velocity,center_uy,-0.5480912923812866 +steady,sr,154,61.6,velocity,lower_ux,0.8781315088272095 +steady,sr,154,61.6,velocity,lower_uy,-0.32537445425987244 +steady,sr,155,62.0,velocity,upper_ux,1.1070029735565186 +steady,sr,155,62.0,velocity,upper_uy,-0.32369711995124817 +steady,sr,155,62.0,velocity,center_ux,0.9243926405906677 +steady,sr,155,62.0,velocity,center_uy,-0.5691127181053162 +steady,sr,155,62.0,velocity,lower_ux,0.8081784248352051 +steady,sr,155,62.0,velocity,lower_uy,-0.26507309079170227 +steady,sr,156,62.4,velocity,upper_ux,1.1833688020706177 +steady,sr,156,62.4,velocity,upper_uy,-0.33456382155418396 +steady,sr,156,62.4,velocity,center_ux,0.9211101531982422 +steady,sr,156,62.4,velocity,center_uy,-0.5503696203231812 +steady,sr,156,62.4,velocity,lower_ux,0.7572441101074219 +steady,sr,156,62.4,velocity,lower_uy,-0.17838792502880096 +steady,sr,157,62.8,velocity,upper_ux,1.2685480117797852 +steady,sr,157,62.8,velocity,upper_uy,-0.3287121653556824 +steady,sr,157,62.8,velocity,center_ux,0.8762519359588623 +steady,sr,157,62.8,velocity,center_uy,-0.4166620373725891 +steady,sr,157,62.8,velocity,lower_ux,0.7368742227554321 +steady,sr,157,62.8,velocity,lower_uy,-0.07599899172782898 +steady,sr,158,63.2,velocity,upper_ux,1.3552980422973633 +steady,sr,158,63.2,velocity,upper_uy,-0.28993576765060425 +steady,sr,158,63.2,velocity,center_ux,0.7970074415206909 +steady,sr,158,63.2,velocity,center_uy,-0.13384807109832764 +steady,sr,158,63.2,velocity,lower_ux,0.7604316473007202 +steady,sr,158,63.2,velocity,lower_uy,0.019467037171125412 +steady,sr,159,63.6,velocity,upper_ux,1.4016408920288086 +steady,sr,159,63.6,velocity,upper_uy,-0.17939487099647522 +steady,sr,159,63.6,velocity,center_ux,0.7276292443275452 +steady,sr,159,63.6,velocity,center_uy,0.22751888632774353 +steady,sr,159,63.6,velocity,lower_ux,0.8099856376647949 +steady,sr,159,63.6,velocity,lower_uy,0.10052090883255005 +steady,sr,160,64.0,velocity,upper_ux,1.3274765014648438 +steady,sr,160,64.0,velocity,upper_uy,0.03156557306647301 +steady,sr,160,64.0,velocity,center_ux,0.7285134196281433 +steady,sr,160,64.0,velocity,center_uy,0.48437580466270447 +steady,sr,160,64.0,velocity,lower_ux,0.8644533753395081 +steady,sr,160,64.0,velocity,lower_uy,0.1730780005455017 +steady,sr,161,64.4,velocity,upper_ux,1.1374614238739014 +steady,sr,161,64.4,velocity,upper_uy,0.24965400993824005 +steady,sr,161,64.4,velocity,center_ux,0.798217236995697 +steady,sr,161,64.4,velocity,center_uy,0.5372200608253479 +steady,sr,161,64.4,velocity,lower_ux,0.9228807687759399 +steady,sr,161,64.4,velocity,lower_uy,0.2320549339056015 +steady,sr,162,64.8,velocity,upper_ux,0.9626739025115967 +steady,sr,162,64.8,velocity,upper_uy,0.33829566836357117 +steady,sr,162,64.8,velocity,center_ux,0.8647493124008179 +steady,sr,162,64.8,velocity,center_uy,0.5351797342300415 +steady,sr,162,64.8,velocity,lower_ux,0.9855318665504456 +steady,sr,162,64.8,velocity,lower_uy,0.2757052481174469 +steady,sr,163,65.2,velocity,upper_ux,0.8610572218894958 +steady,sr,163,65.2,velocity,upper_uy,0.3154628276824951 +steady,sr,163,65.2,velocity,center_ux,0.9065107107162476 +steady,sr,163,65.2,velocity,center_uy,0.5529695749282837 +steady,sr,163,65.2,velocity,lower_ux,1.051831841468811 +steady,sr,163,65.2,velocity,lower_uy,0.3068651258945465 +steady,sr,164,65.6,velocity,upper_ux,0.7961524724960327 +steady,sr,164,65.6,velocity,upper_uy,0.24879007041454315 +steady,sr,164,65.6,velocity,center_ux,0.9267668128013611 +steady,sr,164,65.6,velocity,center_uy,0.5708914399147034 +steady,sr,164,65.6,velocity,lower_ux,1.1228866577148438 +steady,sr,164,65.6,velocity,lower_uy,0.3270728290081024 +steady,sr,165,66.0,velocity,upper_ux,0.749835729598999 +steady,sr,165,66.0,velocity,upper_uy,0.15741068124771118 +steady,sr,165,66.0,velocity,center_ux,0.9154823422431946 +steady,sr,165,66.0,velocity,center_uy,0.5341083407402039 +steady,sr,165,66.0,velocity,lower_ux,1.2010281085968018 +steady,sr,165,66.0,velocity,lower_uy,0.33502838015556335 +steady,sr,166,66.4,velocity,upper_ux,0.7381422519683838 +steady,sr,166,66.4,velocity,upper_uy,0.054510556161403656 +steady,sr,166,66.4,velocity,center_ux,0.8612048625946045 +steady,sr,166,66.4,velocity,center_uy,0.3685469925403595 +steady,sr,166,66.4,velocity,lower_ux,1.2874670028686523 +steady,sr,166,66.4,velocity,lower_uy,0.3241150677204132 +steady,sr,167,66.8,velocity,upper_ux,0.7693770527839661 +steady,sr,167,66.8,velocity,upper_uy,-0.037535108625888824 +steady,sr,167,66.8,velocity,center_ux,0.7789970636367798 +steady,sr,167,66.8,velocity,center_uy,0.059078149497509 +steady,sr,167,66.8,velocity,lower_ux,1.3706741333007812 +steady,sr,167,66.8,velocity,lower_uy,0.2741537392139435 +steady,sr,168,67.2,velocity,upper_ux,0.8210495710372925 +steady,sr,168,67.2,velocity,upper_uy,-0.11660157144069672 +steady,sr,168,67.2,velocity,center_ux,0.7202150821685791 +steady,sr,168,67.2,velocity,center_uy,-0.29788488149642944 +steady,sr,168,67.2,velocity,lower_ux,1.3982024192810059 +steady,sr,168,67.2,velocity,lower_uy,0.1423727422952652 +steady,sr,169,67.6,velocity,upper_ux,0.8765477538108826 +steady,sr,169,67.6,velocity,upper_uy,-0.1868739277124405 +steady,sr,169,67.6,velocity,center_ux,0.7400235533714294 +steady,sr,169,67.6,velocity,center_uy,-0.5098627209663391 +steady,sr,169,67.6,velocity,lower_ux,1.2935380935668945 +steady,sr,169,67.6,velocity,lower_uy,-0.08307844400405884 +steady,sr,170,68.0,velocity,upper_ux,0.9361454248428345 +steady,sr,170,68.0,velocity,upper_uy,-0.24248090386390686 +steady,sr,170,68.0,velocity,center_ux,0.8148411512374878 +steady,sr,170,68.0,velocity,center_uy,-0.5360918641090393 +steady,sr,170,68.0,velocity,lower_ux,1.0952539443969727 +steady,sr,170,68.0,velocity,lower_uy,-0.2811996340751648 +steady,sr,171,68.4,velocity,upper_ux,0.9993586540222168 +steady,sr,171,68.4,velocity,upper_uy,-0.28326472640037537 +steady,sr,171,68.4,velocity,center_ux,0.8756422400474548 +steady,sr,171,68.4,velocity,center_uy,-0.537484884262085 +steady,sr,171,68.4,velocity,lower_ux,0.9358809590339661 +steady,sr,171,68.4,velocity,lower_uy,-0.339803546667099 +steady,sr,172,68.8,velocity,upper_ux,1.0661563873291016 +steady,sr,172,68.8,velocity,upper_uy,-0.31204795837402344 +steady,sr,172,68.8,velocity,center_ux,0.9125968217849731 +steady,sr,172,68.8,velocity,center_uy,-0.5579191446304321 +steady,sr,172,68.8,velocity,lower_ux,0.8453672528266907 +steady,sr,172,68.8,velocity,lower_uy,-0.30366289615631104 +steady,sr,173,69.2,velocity,upper_ux,1.1383655071258545 +steady,sr,173,69.2,velocity,upper_uy,-0.3299020826816559 +steady,sr,173,69.2,velocity,center_ux,0.9273316264152527 +steady,sr,173,69.2,velocity,center_uy,-0.5701917409896851 +steady,sr,173,69.2,velocity,lower_ux,0.7842571139335632 +steady,sr,173,69.2,velocity,lower_uy,-0.231246218085289 +steady,sr,174,69.6,velocity,upper_ux,1.218582034111023 +steady,sr,174,69.6,velocity,upper_uy,-0.3347106873989105 +steady,sr,174,69.6,velocity,center_ux,0.9076952934265137 +steady,sr,174,69.6,velocity,center_uy,-0.5117490887641907 +steady,sr,174,69.6,velocity,lower_ux,0.7437556385993958 +steady,sr,174,69.6,velocity,lower_uy,-0.13576720654964447 +steady,sr,175,70.0,velocity,upper_ux,1.3065273761749268 +steady,sr,175,70.0,velocity,upper_uy,-0.31797486543655396 +steady,sr,175,70.0,velocity,center_ux,0.8452333211898804 +steady,sr,175,70.0,velocity,center_uy,-0.31373131275177 +steady,sr,175,70.0,velocity,lower_ux,0.7419126629829407 +steady,sr,175,70.0,velocity,lower_uy,-0.03357752412557602 +steady,sr,176,70.4,velocity,upper_ux,1.3842442035675049 +steady,sr,176,70.4,velocity,upper_uy,-0.2548249661922455 +steady,sr,176,70.4,velocity,center_ux,0.7626148462295532 +steady,sr,176,70.4,velocity,center_uy,0.018146708607673645 +steady,sr,176,70.4,velocity,lower_ux,0.7799236178398132 +steady,sr,176,70.4,velocity,lower_uy,0.05504531040787697 +steady,sr,177,70.8,velocity,upper_ux,1.3885014057159424 +steady,sr,177,70.8,velocity,upper_uy,-0.10060016810894012 +steady,sr,177,70.8,velocity,center_ux,0.7167802453041077 +steady,sr,177,70.8,velocity,center_uy,0.36118456721305847 +steady,sr,177,70.8,velocity,lower_ux,0.8325785994529724 +steady,sr,177,70.8,velocity,lower_uy,0.1324205845594406 +steady,sr,178,71.2,velocity,upper_ux,1.2544502019882202 +steady,sr,178,71.2,velocity,upper_uy,0.13328608870506287 +steady,sr,178,71.2,velocity,center_ux,0.7536953687667847 +steady,sr,178,71.2,velocity,center_uy,0.5257872939109802 +steady,sr,178,71.2,velocity,lower_ux,0.8885324597358704 +steady,sr,178,71.2,velocity,lower_uy,0.2000083178281784 +steady,sr,179,71.6,velocity,upper_ux,1.054831862449646 +steady,sr,179,71.6,velocity,upper_uy,0.3057047128677368 +steady,sr,179,71.6,velocity,center_ux,0.8297362327575684 +steady,sr,179,71.6,velocity,center_uy,0.5346808433532715 +steady,sr,179,71.6,velocity,lower_ux,0.9490511417388916 +steady,sr,179,71.6,velocity,lower_uy,0.2522457242012024 +steady,sr,180,72.0,velocity,upper_ux,0.912395715713501 +steady,sr,180,72.0,velocity,upper_uy,0.33728787302970886 +steady,sr,180,72.0,velocity,center_ux,0.8852604031562805 +steady,sr,180,72.0,velocity,center_uy,0.5407745838165283 +steady,sr,180,72.0,velocity,lower_ux,1.0133148431777954 +steady,sr,180,72.0,velocity,lower_uy,0.2902727425098419 +steady,sr,181,72.4,velocity,upper_ux,0.8313021063804626 +steady,sr,181,72.4,velocity,upper_uy,0.2906273901462555 +steady,sr,181,72.4,velocity,center_ux,0.9180948734283447 +steady,sr,181,72.4,velocity,center_uy,0.5627781748771667 +steady,sr,181,72.4,velocity,lower_ux,1.0812798738479614 +steady,sr,181,72.4,velocity,lower_uy,0.31674763560295105 +steady,sr,182,72.8,velocity,upper_ux,0.7736369371414185 +steady,sr,182,72.8,velocity,upper_uy,0.21271148324012756 +steady,sr,182,72.8,velocity,center_ux,0.9267259836196899 +steady,sr,182,72.8,velocity,center_uy,0.5665381550788879 +steady,sr,182,72.8,velocity,lower_ux,1.1548264026641846 +steady,sr,182,72.8,velocity,lower_uy,0.332132488489151 +steady,sr,183,73.2,velocity,upper_ux,0.7393515110015869 +steady,sr,183,73.2,velocity,upper_uy,0.11382068693637848 +steady,sr,183,73.2,velocity,center_ux,0.8977048993110657 +steady,sr,183,73.2,velocity,center_uy,0.4827883839607239 +steady,sr,183,73.2,velocity,lower_ux,1.236595869064331 +steady,sr,183,73.2,velocity,lower_uy,0.3334061801433563 +steady,sr,184,73.6,velocity,upper_ux,0.7469534277915955 +steady,sr,184,73.6,velocity,upper_uy,0.013404697179794312 +steady,sr,184,73.6,velocity,center_ux,0.8276458978652954 +steady,sr,184,73.6,velocity,center_uy,0.2523118853569031 +steady,sr,184,73.6,velocity,lower_ux,1.324811577796936 +steady,sr,184,73.6,velocity,lower_uy,0.30972975492477417 +steady,sr,185,74.0,velocity,upper_ux,0.7905191779136658 +steady,sr,185,74.0,velocity,upper_uy,-0.07205361872911453 +steady,sr,185,74.0,velocity,center_ux,0.7475880980491638 +steady,sr,185,74.0,velocity,center_uy,-0.09642177820205688 +steady,sr,185,74.0,velocity,lower_ux,1.3942326307296753 +steady,sr,185,74.0,velocity,lower_uy,0.2311592698097229 +steady,sr,186,74.4,velocity,upper_ux,0.8443277478218079 +steady,sr,186,74.4,velocity,upper_uy,-0.14781582355499268 +steady,sr,186,74.4,velocity,center_ux,0.7178622484207153 +steady,sr,186,74.4,velocity,center_uy,-0.4155338406562805 +steady,sr,186,74.4,velocity,lower_ux,1.3721275329589844 +steady,sr,186,74.4,velocity,lower_uy,0.05452186241745949 +steady,sr,187,74.8,velocity,upper_ux,0.9012538194656372 +steady,sr,187,74.8,velocity,upper_uy,-0.21243850886821747 +steady,sr,187,74.8,velocity,center_ux,0.7699154019355774 +steady,sr,187,74.8,velocity,center_uy,-0.5341315269470215 +steady,sr,187,74.8,velocity,lower_ux,1.2126868963241577 +steady,sr,187,74.8,velocity,lower_uy,-0.18040521442890167 +steady,sr,188,75.2,velocity,upper_ux,0.9623973369598389 +steady,sr,188,75.2,velocity,upper_uy,-0.2614120543003082 +steady,sr,188,75.2,velocity,center_ux,0.8438571691513062 +steady,sr,188,75.2,velocity,center_uy,-0.5338937044143677 +steady,sr,188,75.2,velocity,lower_ux,1.0177851915359497 +steady,sr,188,75.2,velocity,lower_uy,-0.3230794072151184 +steady,sr,189,75.6,velocity,upper_ux,1.0270771980285645 +steady,sr,189,75.6,velocity,upper_uy,-0.2968217134475708 +steady,sr,189,75.6,velocity,center_ux,0.8936809301376343 +steady,sr,189,75.6,velocity,center_uy,-0.5447758436203003 +steady,sr,189,75.6,velocity,lower_ux,0.891360342502594 +steady,sr,189,75.6,velocity,lower_uy,-0.3312826156616211 +steady,sr,190,76.0,velocity,upper_ux,1.0960240364074707 +steady,sr,190,76.0,velocity,upper_uy,-0.32099536061286926 +steady,sr,190,76.0,velocity,center_ux,0.9220457673072815 +steady,sr,190,76.0,velocity,center_uy,-0.5668336749076843 +steady,sr,190,76.0,velocity,lower_ux,0.8174934387207031 +steady,sr,190,76.0,velocity,lower_uy,-0.27620938420295715 +steady,sr,191,76.4,velocity,upper_ux,1.1714519262313843 +steady,sr,191,76.4,velocity,upper_uy,-0.33382755517959595 +steady,sr,191,76.4,velocity,center_ux,0.9242458343505859 +steady,sr,191,76.4,velocity,center_uy,-0.5588709115982056 +steady,sr,191,76.4,velocity,lower_ux,0.763844907283783 +steady,sr,191,76.4,velocity,lower_uy,-0.19312921166419983 +steady,sr,192,76.8,velocity,upper_ux,1.255367636680603 +steady,sr,192,76.8,velocity,upper_uy,-0.331147164106369 +steady,sr,192,76.8,velocity,center_ux,0.8860630989074707 +steady,sr,192,76.8,velocity,center_uy,-0.44695788621902466 +steady,sr,192,76.8,velocity,lower_ux,0.7373759746551514 +steady,sr,192,76.8,velocity,lower_uy,-0.09178571403026581 +steady,sr,193,77.2,velocity,upper_ux,1.3430464267730713 +steady,sr,193,77.2,velocity,upper_uy,-0.2992210388183594 +steady,sr,193,77.2,velocity,center_ux,0.8098182678222656 +steady,sr,193,77.2,velocity,center_uy,-0.18520592153072357 +steady,sr,193,77.2,velocity,lower_ux,0.7542779445648193 +steady,sr,193,77.2,velocity,lower_uy,0.005982580594718456 +steady,sr,194,77.6,velocity,upper_ux,1.400211215019226 +steady,sr,194,77.6,velocity,upper_uy,-0.20279483497142792 +steady,sr,194,77.6,velocity,center_ux,0.7347091436386108 +steady,sr,194,77.6,velocity,center_uy,0.1737121194601059 +steady,sr,194,77.6,velocity,lower_ux,0.8015508055686951 +steady,sr,194,77.6,velocity,lower_uy,0.08869978785514832 +steady,sr,195,78.0,velocity,upper_ux,1.3483601808547974 +steady,sr,195,78.0,velocity,upper_uy,-0.005089119542390108 +steady,sr,195,78.0,velocity,center_ux,0.7224322557449341 +steady,sr,195,78.0,velocity,center_uy,0.4594840109348297 +steady,sr,195,78.0,velocity,lower_ux,0.8557371497154236 +steady,sr,195,78.0,velocity,lower_uy,0.16267958283424377 +steady,sr,196,78.4,velocity,upper_ux,1.169030785560608 +steady,sr,196,78.4,velocity,upper_uy,0.2228926420211792 +steady,sr,196,78.4,velocity,center_ux,0.7863733768463135 +steady,sr,196,78.4,velocity,center_uy,0.5371681451797485 +steady,sr,196,78.4,velocity,lower_ux,0.9137441515922546 +steady,sr,196,78.4,velocity,lower_uy,0.22406715154647827 +steady,sr,197,78.8,velocity,upper_ux,0.984668493270874 +steady,sr,197,78.8,velocity,upper_uy,0.33408284187316895 +steady,sr,197,78.8,velocity,center_ux,0.8567197918891907 +steady,sr,197,78.8,velocity,center_uy,0.5342650413513184 +steady,sr,197,78.8,velocity,lower_ux,0.9760102033615112 +steady,sr,197,78.8,velocity,lower_uy,0.26990586519241333 +steady,sr,198,79.2,velocity,upper_ux,0.8732967972755432 +steady,sr,198,79.2,velocity,upper_uy,0.3228176236152649 +steady,sr,198,79.2,velocity,center_ux,0.901700496673584 +steady,sr,198,79.2,velocity,center_uy,0.5494430065155029 +steady,sr,198,79.2,velocity,lower_ux,1.0415643453598022 +steady,sr,198,79.2,velocity,lower_uy,0.3028129041194916 +steady,sr,199,79.6,velocity,upper_ux,0.8048120737075806 +steady,sr,199,79.6,velocity,upper_uy,0.26065361499786377 +steady,sr,199,79.6,velocity,center_ux,0.9252703785896301 +steady,sr,199,79.6,velocity,center_uy,0.5698245167732239 +steady,sr,199,79.6,velocity,lower_ux,1.11143958568573 +steady,sr,199,79.6,velocity,lower_uy,0.32469093799591064 +steady,sr,0,0.0,force,front_fx,0.0017840754007920623 +steady,sr,0,0.0,force,front_fy,8.192734094336629e-05 +steady,sr,0,0.0,force,upper_fx,0.0013445287477225065 +steady,sr,0,0.0,force,upper_fy,0.003192530944943428 +steady,sr,0,0.0,force,lower_fx,0.001338417874649167 +steady,sr,0,0.0,force,lower_fy,-0.0028141504153609276 +steady,sr,1,0.4,force,front_fx,0.0017858962528407574 +steady,sr,1,0.4,force,front_fy,6.211856089066714e-05 +steady,sr,1,0.4,force,upper_fx,0.0013214205391705036 +steady,sr,1,0.4,force,upper_fy,0.003137518186122179 +steady,sr,1,0.4,force,lower_fx,0.0013709621271118522 +steady,sr,1,0.4,force,lower_fy,-0.00290261534973979 +steady,sr,2,0.8,force,front_fx,0.0017836668994277716 +steady,sr,2,0.8,force,front_fy,3.323866621940397e-05 +steady,sr,2,0.8,force,upper_fx,0.0012914090184494853 +steady,sr,2,0.8,force,upper_fy,0.0030679490882903337 +steady,sr,2,0.8,force,lower_fx,0.0013901033671572804 +steady,sr,2,0.8,force,lower_fy,-0.0030084627214819193 +steady,sr,3,1.2,force,front_fx,0.001779544516466558 +steady,sr,3,1.2,force,front_fy,1.5793292504895362e-06 +steady,sr,3,1.2,force,upper_fx,0.0012604260118678212 +steady,sr,3,1.2,force,upper_fy,0.0029859584756195545 +steady,sr,3,1.2,force,lower_fx,0.0013964795507490635 +steady,sr,3,1.2,force,lower_fy,-0.00310740084387362 +steady,sr,4,1.6,force,front_fx,0.00177763809915632 +steady,sr,4,1.6,force,front_fy,-3.131680568912998e-05 +steady,sr,4,1.6,force,upper_fx,0.0012393821962177753 +steady,sr,4,1.6,force,upper_fy,0.0028959820047020912 +steady,sr,4,1.6,force,lower_fx,0.0013958956114947796 +steady,sr,4,1.6,force,lower_fy,-0.0031856121495366096 +steady,sr,5,2.0,force,front_fx,0.0017817307962104678 +steady,sr,5,2.0,force,front_fy,-5.925218283664435e-05 +steady,sr,5,2.0,force,upper_fx,0.0012401123531162739 +steady,sr,5,2.0,force,upper_fy,0.0028153734747320414 +steady,sr,5,2.0,force,lower_fx,0.0013978364877402782 +steady,sr,5,2.0,force,lower_fy,-0.0032350625842809677 +steady,sr,6,2.4,force,front_fx,0.0017884732224047184 +steady,sr,6,2.4,force,front_fy,-8.092950884019956e-05 +steady,sr,6,2.4,force,upper_fx,0.0012608051765710115 +steady,sr,6,2.4,force,upper_fy,0.002760019851848483 +steady,sr,6,2.4,force,lower_fx,0.0013989937724545598 +steady,sr,6,2.4,force,lower_fy,-0.0032600071281194687 +steady,sr,7,2.8,force,front_fx,0.001792854513041675 +steady,sr,7,2.8,force,front_fy,-9.218377090292051e-05 +steady,sr,7,2.8,force,upper_fx,0.0012926582712680101 +steady,sr,7,2.8,force,upper_fy,0.002744105411693454 +steady,sr,7,2.8,force,lower_fx,0.0013941192300990224 +steady,sr,7,2.8,force,lower_fy,-0.0032604828011244535 +steady,sr,8,3.2,force,front_fx,0.0017895528580993414 +steady,sr,8,3.2,force,front_fy,-9.168156248051673e-05 +steady,sr,8,3.2,force,upper_fx,0.0013221697881817818 +steady,sr,8,3.2,force,upper_fy,0.0027707237750291824 +steady,sr,8,3.2,force,lower_fx,0.0013744643656536937 +steady,sr,8,3.2,force,lower_fy,-0.0032381301280111074 +steady,sr,9,3.6,force,front_fx,0.0017830014694482088 +steady,sr,9,3.6,force,front_fy,-7.976973574841395e-05 +steady,sr,9,3.6,force,upper_fx,0.0013471170095726848 +steady,sr,9,3.6,force,upper_fy,0.002834002021700144 +steady,sr,9,3.6,force,lower_fx,0.0013431929983198643 +steady,sr,9,3.6,force,lower_fy,-0.003193737007677555 +steady,sr,10,4.0,force,front_fx,0.0017786022508516908 +steady,sr,10,4.0,force,front_fy,-5.6969598517753184e-05 +steady,sr,10,4.0,force,upper_fx,0.0013681718846783042 +steady,sr,10,4.0,force,upper_fy,0.002924000844359398 +steady,sr,10,4.0,force,lower_fx,0.0013088518753647804 +steady,sr,10,4.0,force,lower_fy,-0.0031291889026761055 +steady,sr,11,4.4,force,front_fx,0.0017798732733353972 +steady,sr,11,4.4,force,front_fy,-2.7746185878640972e-05 +steady,sr,11,4.4,force,upper_fx,0.0013887074310332537 +steady,sr,11,4.4,force,upper_fy,0.003025644924491644 +steady,sr,11,4.4,force,lower_fx,0.0012807983439415693 +steady,sr,11,4.4,force,lower_fy,-0.0030516088008880615 +steady,sr,12,4.8,force,front_fx,0.0017843754030764103 +steady,sr,12,4.8,force,front_fy,5.688018063665368e-06 +steady,sr,12,4.8,force,upper_fx,0.0014048320008441806 +steady,sr,12,4.8,force,upper_fy,0.0031244666315615177 +steady,sr,12,4.8,force,lower_fx,0.0012620879570022225 +steady,sr,12,4.8,force,lower_fy,-0.0029663152527064085 +steady,sr,13,5.2,force,front_fx,0.001786947948858142 +steady,sr,13,5.2,force,front_fy,3.7403031456051394e-05 +steady,sr,13,5.2,force,upper_fx,0.0014113268116489053 +steady,sr,13,5.2,force,upper_fy,0.003203665604814887 +steady,sr,13,5.2,force,lower_fx,0.0012512404937297106 +steady,sr,13,5.2,force,lower_fy,-0.002882560482248664 +steady,sr,14,5.6,force,front_fx,0.0017862324602901936 +steady,sr,14,5.6,force,front_fy,6.536368164233863e-05 +steady,sr,14,5.6,force,upper_fx,0.0014063843991607428 +steady,sr,14,5.6,force,upper_fy,0.0032529172021895647 +steady,sr,14,5.6,force,lower_fx,0.0012499644653871655 +steady,sr,14,5.6,force,lower_fy,-0.0028077682945877314 +steady,sr,15,6.0,force,front_fx,0.0017849247669801116 +steady,sr,15,6.0,force,front_fy,8.477317169308662e-05 +steady,sr,15,6.0,force,upper_fx,0.001395784318447113 +steady,sr,15,6.0,force,upper_fy,0.0032698563300073147 +steady,sr,15,6.0,force,lower_fx,0.0012620160123333335 +steady,sr,15,6.0,force,lower_fy,-0.0027566987555474043 +steady,sr,16,6.4,force,front_fx,0.0017863723915070295 +steady,sr,16,6.4,force,front_fy,9.414879605174065e-05 +steady,sr,16,6.4,force,upper_fx,0.001384221133776009 +steady,sr,16,6.4,force,upper_fy,0.003259588498622179 +steady,sr,16,6.4,force,lower_fx,0.0012903345050290227 +steady,sr,16,6.4,force,lower_fy,-0.0027423962019383907 +steady,sr,17,6.8,force,front_fx,0.0017889946466311812 +steady,sr,17,6.8,force,front_fy,9.122428309638053e-05 +steady,sr,17,6.8,force,upper_fx,0.0013698481488972902 +steady,sr,17,6.8,force,upper_fy,0.003229637397453189 +steady,sr,17,6.8,force,lower_fx,0.0013276833342388272 +steady,sr,17,6.8,force,lower_fy,-0.002774573862552643 +steady,sr,18,7.2,force,front_fx,0.0017899414524435997 +steady,sr,18,7.2,force,front_fy,7.67986275604926e-05 +steady,sr,18,7.2,force,upper_fx,0.0013483822112903 +steady,sr,18,7.2,force,upper_fy,0.003184450324624777 +steady,sr,18,7.2,force,lower_fx,0.0013632363406941295 +steady,sr,18,7.2,force,lower_fy,-0.0028483779169619083 +steady,sr,19,7.6,force,front_fx,0.001785318716429174 +steady,sr,19,7.6,force,front_fy,5.239162055659108e-05 +steady,sr,19,7.6,force,upper_fx,0.0013148796278983355 +steady,sr,19,7.6,force,upper_fy,0.003122390480712056 +steady,sr,19,7.6,force,lower_fx,0.0013853413984179497 +steady,sr,19,7.6,force,lower_fy,-0.002948866691440344 +steady,sr,20,8.0,force,front_fx,0.0017799055203795433 +steady,sr,20,8.0,force,front_fy,2.1315347112249583e-05 +steady,sr,20,8.0,force,upper_fx,0.001278398442082107 +steady,sr,20,8.0,force,upper_fy,0.003042902098968625 +steady,sr,20,8.0,force,lower_fx,0.0013954691821709275 +steady,sr,20,8.0,force,lower_fy,-0.0030539578292518854 +steady,sr,21,8.4,force,front_fx,0.0017782642971724272 +steady,sr,21,8.4,force,front_fy,-1.1803416782640852e-05 +steady,sr,21,8.4,force,upper_fx,0.001250681933015585 +steady,sr,21,8.4,force,upper_fy,0.002952001290395856 +steady,sr,21,8.4,force,lower_fx,0.0014001148520037532 +steady,sr,21,8.4,force,lower_fy,-0.003145673079416156 +steady,sr,22,8.8,force,front_fx,0.0017829625867307186 +steady,sr,22,8.8,force,front_fy,-4.386791624710895e-05 +steady,sr,22,8.8,force,upper_fx,0.001243423786945641 +steady,sr,22,8.8,force,upper_fy,0.002862299792468548 +steady,sr,22,8.8,force,lower_fx,0.0014061122201383114 +steady,sr,22,8.8,force,lower_fy,-0.0032151686027646065 +steady,sr,23,9.2,force,front_fx,0.0017900934908539057 +steady,sr,23,9.2,force,front_fy,-6.999736069701612e-05 +steady,sr,23,9.2,force,upper_fx,0.0012552890693768859 +steady,sr,23,9.2,force,upper_fy,0.0027909106574952602 +steady,sr,23,9.2,force,lower_fx,0.001411646488122642 +steady,sr,23,9.2,force,lower_fy,-0.003257294185459614 +steady,sr,24,9.6,force,front_fx,0.001793560804799199 +steady,sr,24,9.6,force,front_fy,-8.840576629154384e-05 +steady,sr,24,9.6,force,upper_fx,0.001278765150345862 +steady,sr,24,9.6,force,upper_fy,0.0027503566816449165 +steady,sr,24,9.6,force,lower_fx,0.00140737637411803 +steady,sr,24,9.6,force,lower_fy,-0.0032749187666922808 +steady,sr,25,10.0,force,front_fx,0.0017908290028572083 +steady,sr,25,10.0,force,front_fy,-9.477392450207844e-05 +steady,sr,25,10.0,force,upper_fx,0.0013053048169240355 +steady,sr,25,10.0,force,upper_fy,0.0027499287389218807 +steady,sr,25,10.0,force,lower_fx,0.0013909537810832262 +steady,sr,25,10.0,force,lower_fy,-0.0032636707182973623 +steady,sr,26,10.4,force,front_fx,0.001785454573109746 +steady,sr,26,10.4,force,front_fy,-8.980344864539802e-05 +steady,sr,26,10.4,force,upper_fx,0.001332220621407032 +steady,sr,26,10.4,force,upper_fy,0.0027895949315279722 +steady,sr,26,10.4,force,lower_fx,0.0013640811666846275 +steady,sr,26,10.4,force,lower_fy,-0.003229050897061825 +steady,sr,27,10.8,force,front_fx,0.0017825360409915447 +steady,sr,27,10.8,force,front_fy,-7.279159763129428e-05 +steady,sr,27,10.8,force,upper_fx,0.001360301859676838 +steady,sr,27,10.8,force,upper_fy,0.002865643473342061 +steady,sr,27,10.8,force,lower_fx,0.001334170694462955 +steady,sr,27,10.8,force,lower_fy,-0.0031740230042487383 +steady,sr,28,11.2,force,front_fx,0.0017833370948210359 +steady,sr,28,11.2,force,front_fy,-4.66179772047326e-05 +steady,sr,28,11.2,force,upper_fx,0.0013864877400919795 +steady,sr,28,11.2,force,upper_fy,0.0029660407453775406 +steady,sr,28,11.2,force,lower_fx,0.0013058020267635584 +steady,sr,28,11.2,force,lower_fy,-0.0031047374941408634 +steady,sr,29,11.6,force,front_fx,0.0017860163934528828 +steady,sr,29,11.6,force,front_fy,-1.4796642062719911e-05 +steady,sr,29,11.6,force,upper_fx,0.00140631094109267 +steady,sr,29,11.6,force,upper_fy,0.0030731710139662027 +steady,sr,29,11.6,force,lower_fx,0.0012807277962565422 +steady,sr,29,11.6,force,lower_fy,-0.003024623030796647 +steady,sr,30,12.0,force,front_fx,0.0017857393249869347 +steady,sr,30,12.0,force,front_fy,1.9139813957735896e-05 +steady,sr,30,12.0,force,upper_fx,0.0014133057557046413 +steady,sr,30,12.0,force,upper_fy,0.00316780898720026 +steady,sr,30,12.0,force,lower_fx,0.0012589263496920466 +steady,sr,30,12.0,force,lower_fy,-0.002937610726803541 +steady,sr,31,12.4,force,front_fx,0.0017846166156232357 +steady,sr,31,12.4,force,front_fy,4.9875561671797186e-05 +steady,sr,31,12.4,force,upper_fx,0.0014110943302512169 +steady,sr,31,12.4,force,upper_fy,0.0032339554745703936 +steady,sr,31,12.4,force,lower_fx,0.0012469924986362457 +steady,sr,31,12.4,force,lower_fy,-0.002852099947631359 +steady,sr,32,12.8,force,front_fx,0.001784898922778666 +steady,sr,32,12.8,force,front_fy,7.549559813924134e-05 +steady,sr,32,12.8,force,upper_fx,0.0014040309470146894 +steady,sr,32,12.8,force,upper_fy,0.0032677697017788887 +steady,sr,32,12.8,force,lower_fx,0.0012518204748630524 +steady,sr,32,12.8,force,lower_fy,-0.002780874725431204 +steady,sr,33,13.2,force,front_fx,0.0017886710120365024 +steady,sr,33,13.2,force,front_fy,9.089033846976236e-05 +steady,sr,33,13.2,force,upper_fx,0.0013987286947667599 +steady,sr,33,13.2,force,upper_fy,0.0032729313243180513 +steady,sr,33,13.2,force,lower_fx,0.0012772800400853157 +steady,sr,33,13.2,force,lower_fy,-0.002741907024756074 +steady,sr,34,13.6,force,front_fx,0.0017925851279869676 +steady,sr,34,13.6,force,front_fy,9.58237360464409e-05 +steady,sr,34,13.6,force,upper_fx,0.0013894319999963045 +steady,sr,34,13.6,force,upper_fy,0.0032566767185926437 +steady,sr,34,13.6,force,lower_fx,0.0013135564513504505 +steady,sr,34,13.6,force,lower_fy,-0.002749201375991106 +steady,sr,35,14.0,force,front_fx,0.0017925597494468093 +steady,sr,35,14.0,force,front_fy,8.75147306942381e-05 +steady,sr,35,14.0,force,upper_fx,0.001370017882436514 +steady,sr,35,14.0,force,upper_fy,0.00322166015394032 +steady,sr,35,14.0,force,lower_fx,0.0013506443938240409 +steady,sr,35,14.0,force,lower_fy,-0.0028013961855322123 +steady,sr,36,14.4,force,front_fx,0.0017868493450805545 +steady,sr,36,14.4,force,front_fy,6.879771535750479e-05 +steady,sr,36,14.4,force,upper_fx,0.0013369270600378513 +steady,sr,36,14.4,force,upper_fy,0.003168286057189107 +steady,sr,36,14.4,force,lower_fx,0.0013747584307566285 +steady,sr,36,14.4,force,lower_fy,-0.0028895821887999773 +steady,sr,37,14.8,force,front_fx,0.0017806455725803971 +steady,sr,37,14.8,force,front_fy,4.0652084862813354e-05 +steady,sr,37,14.8,force,upper_fx,0.0012982115149497986 +steady,sr,37,14.8,force,upper_fy,0.003095045918598771 +steady,sr,37,14.8,force,lower_fx,0.0013896455056965351 +steady,sr,37,14.8,force,lower_fy,-0.0029932742472738028 +steady,sr,38,15.2,force,front_fx,0.0017792298458516598 +steady,sr,38,15.2,force,front_fy,7.906741302576847e-06 +steady,sr,38,15.2,force,upper_fx,0.0012667063856497407 +steady,sr,38,15.2,force,upper_fy,0.003007325576618314 +steady,sr,38,15.2,force,lower_fx,0.0014003872638568282 +steady,sr,38,15.2,force,lower_fy,-0.0030943804886192083 +steady,sr,39,15.6,force,front_fx,0.0017836318584159017 +steady,sr,39,15.6,force,front_fy,-2.5673205527709797e-05 +steady,sr,39,15.6,force,upper_fx,0.0012512849643826485 +steady,sr,39,15.6,force,upper_fy,0.00291548203676939 +steady,sr,39,15.6,force,lower_fx,0.0014104449655860662 +steady,sr,39,15.6,force,lower_fy,-0.0031806144397705793 +steady,sr,40,16.0,force,front_fx,0.001790244597941637 +steady,sr,40,16.0,force,front_fy,-5.618080103886314e-05 +steady,sr,40,16.0,force,upper_fx,0.001253192313015461 +steady,sr,40,16.0,force,upper_fy,0.0028326723258942366 +steady,sr,40,16.0,force,lower_fx,0.0014175798278301954 +steady,sr,40,16.0,force,lower_fy,-0.0032429047860205173 +steady,sr,41,16.4,force,front_fx,0.0017925921129062772 +steady,sr,41,16.4,force,front_fy,-7.940899376990274e-05 +steady,sr,41,16.4,force,upper_fx,0.0012660345528274775 +steady,sr,41,16.4,force,upper_fy,0.002772436710074544 +steady,sr,41,16.4,force,lower_fx,0.0014150816714391112 +steady,sr,41,16.4,force,lower_fy,-0.003275862894952297 +steady,sr,42,16.8,force,front_fx,0.0017907236469909549 +steady,sr,42,16.8,force,front_fy,-9.355063230032101e-05 +steady,sr,42,16.8,force,upper_fx,0.001287266262806952 +steady,sr,42,16.8,force,upper_fy,0.002744596917182207 +steady,sr,42,16.8,force,lower_fx,0.0014018446672707796 +steady,sr,42,16.8,force,lower_fy,-0.0032788976095616817 +steady,sr,43,17.2,force,front_fx,0.0017872910248115659 +steady,sr,43,17.2,force,front_fy,-9.493655670667067e-05 +steady,sr,43,17.2,force,upper_fx,0.0013148157158866525 +steady,sr,43,17.2,force,upper_fy,0.0027588028460741043 +steady,sr,43,17.2,force,lower_fx,0.0013806564966216683 +steady,sr,43,17.2,force,lower_fy,-0.003254601266235113 +steady,sr,44,17.6,force,front_fx,0.0017862472450360656 +steady,sr,44,17.6,force,front_fy,-8.512230851920322e-05 +steady,sr,44,17.6,force,upper_fx,0.001347944838926196 +steady,sr,44,17.6,force,upper_fy,0.0028144263196736574 +steady,sr,44,17.6,force,lower_fx,0.001356732565909624 +steady,sr,44,17.6,force,lower_fy,-0.003210825379937887 +steady,sr,45,18.0,force,front_fx,0.0017868973081931472 +steady,sr,45,18.0,force,front_fy,-6.34820680716075e-05 +steady,sr,45,18.0,force,upper_fx,0.0013794733677059412 +steady,sr,45,18.0,force,upper_fy,0.0029060065280646086 +steady,sr,45,18.0,force,lower_fx,0.0013301338767632842 +steady,sr,45,18.0,force,lower_fy,-0.0031512314453721046 +steady,sr,46,18.4,force,front_fx,0.0017871842719614506 +steady,sr,46,18.4,force,front_fy,-3.442254455876537e-05 +steady,sr,46,18.4,force,upper_fx,0.0014023631811141968 +steady,sr,46,18.4,force,upper_fy,0.0030147654470056295 +steady,sr,46,18.4,force,lower_fx,0.0013010479742661119 +steady,sr,46,18.4,force,lower_fy,-0.0030787838622927666 +steady,sr,47,18.8,force,front_fx,0.001784633845090866 +steady,sr,47,18.8,force,front_fy,-7.977760674293677e-07 +steady,sr,47,18.8,force,upper_fx,0.0014114612713456154 +steady,sr,47,18.8,force,upper_fy,0.0031194856856018305 +steady,sr,47,18.8,force,lower_fx,0.00127057742793113 +steady,sr,47,18.8,force,lower_fy,-0.0029934949707239866 +steady,sr,48,19.2,force,front_fx,0.001782751176506281 +steady,sr,48,19.2,force,front_fy,3.26219669659622e-05 +steady,sr,48,19.2,force,upper_fx,0.001411615638062358 +steady,sr,48,19.2,force,upper_fy,0.0032015936449170113 +steady,sr,48,19.2,force,lower_fx,0.0012500360608100891 +steady,sr,48,19.2,force,lower_fy,-0.0029013415332883596 +steady,sr,49,19.6,force,front_fx,0.0017843995010480285 +steady,sr,49,19.6,force,front_fy,6.1740618548356e-05 +steady,sr,49,19.6,force,upper_fx,0.0014096611412242055 +steady,sr,49,19.6,force,upper_fy,0.0032531367614865303 +steady,sr,49,19.6,force,lower_fx,0.0012460704892873764 +steady,sr,49,19.6,force,lower_fy,-0.0028179108630865812 +steady,sr,50,20.0,force,front_fx,0.0017897156067192554 +steady,sr,50,20.0,force,front_fy,8.381072257179767e-05 +steady,sr,50,20.0,force,upper_fx,0.0014085274888202548 +steady,sr,50,20.0,force,upper_fy,0.003275974653661251 +steady,sr,50,20.0,force,lower_fx,0.0012648048577830195 +steady,sr,50,20.0,force,lower_fy,-0.0027586626820266247 +steady,sr,51,20.4,force,front_fx,0.0017946644220501184 +steady,sr,51,20.4,force,front_fy,9.499692532699555e-05 +steady,sr,51,20.4,force,upper_fx,0.001403725240379572 +steady,sr,51,20.4,force,upper_fy,0.003273820038884878 +steady,sr,51,20.4,force,lower_fx,0.001297715469263494 +steady,sr,51,20.4,force,lower_fy,-0.0027404639404267073 +steady,sr,52,20.8,force,front_fx,0.0017939008539542556 +steady,sr,52,20.8,force,front_fy,9.458856948185712e-05 +steady,sr,52,20.8,force,upper_fx,0.0013867185916751623 +steady,sr,52,20.8,force,upper_fy,0.0032506403513252735 +steady,sr,52,20.8,force,lower_fx,0.0013320378493517637 +steady,sr,52,20.8,force,lower_fy,-0.0027679884806275368 +steady,sr,53,21.2,force,front_fx,0.0017882041865959764 +steady,sr,53,21.2,force,front_fy,8.146461186697707e-05 +steady,sr,53,21.2,force,upper_fx,0.001356470282189548 +steady,sr,53,21.2,force,upper_fy,0.0032058421056717634 +steady,sr,53,21.2,force,lower_fx,0.0013594499323517084 +steady,sr,53,21.2,force,lower_fy,-0.0028363196179270744 +steady,sr,54,21.6,force,front_fx,0.001782058272510767 +steady,sr,54,21.6,force,front_fy,5.8453577366890386e-05 +steady,sr,54,21.6,force,upper_fx,0.0013189360033720732 +steady,sr,54,21.6,force,upper_fy,0.003141265595331788 +steady,sr,54,21.6,force,lower_fx,0.001380163710564375 +steady,sr,54,21.6,force,lower_fy,-0.0029303294140845537 +steady,sr,55,22.0,force,front_fx,0.0017808820120990276 +steady,sr,55,22.0,force,front_fy,2.7539426810108125e-05 +steady,sr,55,22.0,force,upper_fx,0.0012859931448474526 +steady,sr,55,22.0,force,upper_fy,0.0030599823221564293 +steady,sr,55,22.0,force,lower_fx,0.0013971670996397734 +steady,sr,55,22.0,force,lower_fy,-0.0030357330106198788 +steady,sr,56,22.4,force,front_fx,0.001784455613233149 +steady,sr,56,22.4,force,front_fy,-6.13487463851925e-06 +steady,sr,56,22.4,force,upper_fx,0.0012640462955459952 +steady,sr,56,22.4,force,upper_fy,0.0029706829227507114 +steady,sr,56,22.4,force,lower_fx,0.0014122254215180874 +steady,sr,56,22.4,force,lower_fy,-0.0031337719410657883 +steady,sr,57,22.8,force,front_fx,0.0017892230534926057 +steady,sr,57,22.8,force,front_fy,-3.9237565943039954e-05 +steady,sr,57,22.8,force,upper_fx,0.0012551152613013983 +steady,sr,57,22.8,force,upper_fy,0.002882304834201932 +steady,sr,57,22.8,force,lower_fx,0.0014201116282492876 +steady,sr,57,22.8,force,lower_fy,-0.003214932279661298 +steady,sr,58,23.2,force,front_fx,0.0017905766144394875 +steady,sr,58,23.2,force,front_fy,-6.719049270031974e-05 +steady,sr,58,23.2,force,upper_fx,0.0012568822130560875 +steady,sr,58,23.2,force,upper_fy,0.0028065694496035576 +steady,sr,58,23.2,force,lower_fx,0.001418556086719036 +steady,sr,58,23.2,force,lower_fy,-0.0032653138041496277 +steady,sr,59,23.6,force,front_fx,0.0017896633362397552 +steady,sr,59,23.6,force,front_fy,-8.71721567818895e-05 +steady,sr,59,23.6,force,upper_fx,0.0012707316782325506 +steady,sr,59,23.6,force,upper_fy,0.002755556022748351 +steady,sr,59,23.6,force,lower_fx,0.001408661250025034 +steady,sr,59,23.6,force,lower_fy,-0.0032831700518727303 +steady,sr,60,24.0,force,front_fx,0.001788583118468523 +steady,sr,60,24.0,force,front_fy,-9.623137157177553e-05 +steady,sr,60,24.0,force,upper_fx,0.001296882750466466 +steady,sr,60,24.0,force,upper_fy,0.002742447890341282 +steady,sr,60,24.0,force,lower_fx,0.0013934271410107613 +steady,sr,60,24.0,force,lower_fy,-0.0032722102478146553 +steady,sr,61,24.4,force,front_fx,0.0017894299235194921 +steady,sr,61,24.4,force,front_fy,-9.269649308407679e-05 +steady,sr,61,24.4,force,upper_fx,0.001332422369159758 +steady,sr,61,24.4,force,upper_fy,0.0027751645538955927 +steady,sr,61,24.4,force,lower_fx,0.0013758317800238729 +steady,sr,61,24.4,force,lower_fy,-0.0032396719325333834 +steady,sr,62,24.8,force,front_fx,0.0017902908148244023 +steady,sr,62,24.8,force,front_fy,-7.787613139953464e-05 +steady,sr,62,24.8,force,upper_fx,0.0013682098360732198 +steady,sr,62,24.8,force,upper_fy,0.0028501502238214016 +steady,sr,62,24.8,force,lower_fx,0.0013526651309803128 +steady,sr,62,24.8,force,lower_fy,-0.0031913751736283302 +steady,sr,63,25.2,force,front_fx,0.0017880885861814022 +steady,sr,63,25.2,force,front_fy,-5.223985863267444e-05 +steady,sr,63,25.2,force,upper_fx,0.001393618294969201 +steady,sr,63,25.2,force,upper_fy,0.0029537351801991463 +steady,sr,63,25.2,force,lower_fx,0.0013213811907917261 +steady,sr,63,25.2,force,lower_fy,-0.0031272470951080322 +steady,sr,64,25.6,force,front_fx,0.0017838871572166681 +steady,sr,64,25.6,force,front_fy,-2.093541479553096e-05 +steady,sr,64,25.6,force,upper_fx,0.0014060798566788435 +steady,sr,64,25.6,force,upper_fy,0.003062337636947632 +steady,sr,64,25.6,force,lower_fx,0.0012857919791713357 +steady,sr,64,25.6,force,lower_fy,-0.003047421807423234 +steady,sr,65,26.0,force,front_fx,0.0017813269514590502 +steady,sr,65,26.0,force,front_fy,1.3642313206219114e-05 +steady,sr,65,26.0,force,upper_fx,0.001409810152836144 +steady,sr,65,26.0,force,upper_fy,0.0031576622277498245 +steady,sr,65,26.0,force,lower_fx,0.0012568256352096796 +steady,sr,65,26.0,force,lower_fy,-0.0029550513718277216 +steady,sr,66,26.4,force,front_fx,0.0017837858758866787 +steady,sr,66,26.4,force,front_fy,4.550076846498996e-05 +steady,sr,66,26.4,force,upper_fx,0.0014124028384685516 +steady,sr,66,26.4,force,upper_fy,0.003226652042940259 +steady,sr,66,26.4,force,lower_fx,0.0012457272969186306 +steady,sr,66,26.4,force,lower_fy,-0.0028637447394430637 +steady,sr,67,26.8,force,front_fx,0.0017898774240165949 +steady,sr,67,26.8,force,front_fy,7.250753697007895e-05 +steady,sr,67,26.8,force,upper_fx,0.0014150887727737427 +steady,sr,67,26.8,force,upper_fy,0.0032680651638656855 +steady,sr,67,26.8,force,lower_fx,0.001256312127225101 +steady,sr,67,26.8,force,lower_fy,-0.0027887222822755575 +steady,sr,68,27.2,force,front_fx,0.0017950874753296375 +steady,sr,68,27.2,force,front_fy,9.024107566801831e-05 +steady,sr,68,27.2,force,upper_fx,0.0014131941134110093 +steady,sr,68,27.2,force,upper_fy,0.0032820720225572586 +steady,sr,68,27.2,force,lower_fx,0.0012823675060644746 +steady,sr,68,27.2,force,lower_fy,-0.002747170627117157 +steady,sr,69,27.6,force,front_fx,0.0017942367121577263 +steady,sr,69,27.6,force,front_fy,9.664048411650583e-05 +steady,sr,69,27.6,force,upper_fx,0.0013991340529173613 +steady,sr,69,27.6,force,upper_fy,0.003270952496677637 +steady,sr,69,27.6,force,lower_fx,0.0013125694822520018 +steady,sr,69,27.6,force,lower_fy,-0.0027481403667479753 +steady,sr,70,28.0,force,front_fx,0.0017892647301778197 +steady,sr,70,28.0,force,front_fy,9.088129445444793e-05 +steady,sr,70,28.0,force,upper_fx,0.0013729397905990481 +steady,sr,70,28.0,force,upper_fy,0.003236302174627781 +steady,sr,70,28.0,force,lower_fx,0.0013416388537734747 +steady,sr,70,28.0,force,lower_fy,-0.002791859209537506 +steady,sr,71,28.4,force,front_fx,0.001784106600098312 +steady,sr,71,28.4,force,front_fy,7.31749678379856e-05 +steady,sr,71,28.4,force,upper_fx,0.0013394870329648256 +steady,sr,71,28.4,force,upper_fy,0.0031807476188987494 +steady,sr,71,28.4,force,lower_fx,0.0013672139029949903 +steady,sr,71,28.4,force,lower_fy,-0.002871396252885461 +steady,sr,72,28.8,force,front_fx,0.0017830970464274287 +steady,sr,72,28.8,force,front_fy,4.641497798729688e-05 +steady,sr,72,28.8,force,upper_fx,0.0013072802685201168 +steady,sr,72,28.8,force,upper_fy,0.0031088285613805056 +steady,sr,72,28.8,force,lower_fx,0.0013908130349591374 +steady,sr,72,28.8,force,lower_fy,-0.0029731353279203176 +steady,sr,73,29.2,force,front_fx,0.001785466680303216 +steady,sr,73,29.2,force,front_fy,1.3527280316338874e-05 +steady,sr,73,29.2,force,upper_fx,0.0012807181337848306 +steady,sr,73,29.2,force,upper_fy,0.003024962032213807 +steady,sr,73,29.2,force,lower_fx,0.001409420627169311 +steady,sr,73,29.2,force,lower_fy,-0.003080808324739337 +steady,sr,74,29.6,force,front_fx,0.001787808956578374 +steady,sr,74,29.6,force,front_fy,-2.036620571743697e-05 +steady,sr,74,29.6,force,upper_fx,0.0012616218300536275 +steady,sr,74,29.6,force,upper_fy,0.0029360810294747353 +steady,sr,74,29.6,force,lower_fx,0.0014195425901561975 +steady,sr,74,29.6,force,lower_fy,-0.003175192279741168 +steady,sr,75,30.0,force,front_fx,0.0017881158273667097 +steady,sr,75,30.0,force,front_fy,-5.2054132538614795e-05 +steady,sr,75,30.0,force,upper_fx,0.0012523712357506156 +steady,sr,75,30.0,force,upper_fy,0.002849909709766507 +steady,sr,75,30.0,force,lower_fx,0.001419749460183084 +steady,sr,75,30.0,force,lower_fy,-0.003242542501538992 +steady,sr,76,30.4,force,front_fx,0.0017879005754366517 +steady,sr,76,30.4,force,front_fy,-7.698190165683627e-05 +steady,sr,76,30.4,force,upper_fx,0.0012576163280755281 +steady,sr,76,30.4,force,upper_fy,0.002780323848128319 +steady,sr,76,30.4,force,lower_fx,0.0014125030720606446 +steady,sr,76,30.4,force,lower_fy,-0.003277119714766741 +steady,sr,77,30.8,force,front_fx,0.0017893824260681868 +steady,sr,77,30.8,force,front_fy,-9.27526198211126e-05 +steady,sr,77,30.8,force,upper_fx,0.0012800998520106077 +steady,sr,77,30.8,force,upper_fy,0.002742282347753644 +steady,sr,77,30.8,force,lower_fx,0.001403169590048492 +steady,sr,77,30.8,force,lower_fy,-0.0032811854034662247 +steady,sr,78,31.2,force,front_fx,0.0017919029342010617 +steady,sr,78,31.2,force,front_fy,-9.655737085267901e-05 +steady,sr,78,31.2,force,upper_fx,0.001315458444878459 +steady,sr,78,31.2,force,upper_fy,0.002749491948634386 +steady,sr,78,31.2,force,lower_fx,0.0013912901049479842 +steady,sr,78,31.2,force,lower_fy,-0.003261697245761752 +steady,sr,79,31.6,force,front_fx,0.0017928779125213623 +steady,sr,79,31.6,force,front_fy,-8.812307351035997e-05 +steady,sr,79,31.6,force,upper_fx,0.0013531958684325218 +steady,sr,79,31.6,force,upper_fy,0.002803691430017352 +steady,sr,79,31.6,force,lower_fx,0.0013722225558012724 +steady,sr,79,31.6,force,lower_fy,-0.0032245242036879063 +steady,sr,80,32.0,force,front_fx,0.0017891904572024941 +steady,sr,80,32.0,force,front_fy,-6.844912422820926e-05 +steady,sr,80,32.0,force,upper_fx,0.0013812488177791238 +steady,sr,80,32.0,force,upper_fy,0.0028937237802892923 +steady,sr,80,32.0,force,lower_fx,0.0013412439730018377 +steady,sr,80,32.0,force,lower_fy,-0.0031699680257588625 +steady,sr,81,32.4,force,front_fx,0.0017837929772213101 +steady,sr,81,32.4,force,front_fy,-3.964509232901037e-05 +steady,sr,81,32.4,force,upper_fx,0.0013975336914882064 +steady,sr,81,32.4,force,upper_fy,0.003000768832862377 +steady,sr,81,32.4,force,lower_fx,0.0013035408919677138 +steady,sr,81,32.4,force,lower_fy,-0.003096757223829627 +steady,sr,82,32.8,force,front_fx,0.001780688646249473 +steady,sr,82,32.8,force,front_fy,-6.604078407690395e-06 +steady,sr,82,32.8,force,upper_fx,0.0014060295652598143 +steady,sr,82,32.8,force,upper_fy,0.003103898372501135 +steady,sr,82,32.8,force,lower_fx,0.0012694267788901925 +steady,sr,82,32.8,force,lower_fy,-0.0030085935723036528 +steady,sr,83,33.2,force,front_fx,0.001783372019417584 +steady,sr,83,33.2,force,front_fy,2.769974344118964e-05 +steady,sr,83,33.2,force,upper_fx,0.0014131388161331415 +steady,sr,83,33.2,force,upper_fy,0.0031895360443741083 +steady,sr,83,33.2,force,lower_fx,0.0012514505069702864 +steady,sr,83,33.2,force,lower_fy,-0.0029143912252038717 +steady,sr,84,33.6,force,front_fx,0.001789476373232901 +steady,sr,84,33.6,force,front_fy,5.7801284128800035e-05 +steady,sr,84,33.6,force,upper_fx,0.00141900812741369 +steady,sr,84,33.6,force,upper_fy,0.0032490966841578484 +steady,sr,84,33.6,force,lower_fx,0.0012525699567049742 +steady,sr,84,33.6,force,lower_fy,-0.0028296068776398897 +steady,sr,85,34.0,force,front_fx,0.0017940639518201351 +steady,sr,85,34.0,force,front_fy,8.155416435329244e-05 +steady,sr,85,34.0,force,upper_fx,0.0014188444474712014 +steady,sr,85,34.0,force,upper_fy,0.0032807914540171623 +steady,sr,85,34.0,force,lower_fx,0.0012689742725342512 +steady,sr,85,34.0,force,lower_fy,-0.002768415492027998 +steady,sr,86,34.4,force,front_fx,0.0017936358926817775 +steady,sr,86,34.4,force,front_fy,9.460181172471493e-05 +steady,sr,86,34.4,force,upper_fx,0.0014077492523938417 +steady,sr,86,34.4,force,upper_fy,0.0032830643467605114 +steady,sr,86,34.4,force,lower_fx,0.0012933361576870084 +steady,sr,86,34.4,force,lower_fy,-0.0027434860821813345 +steady,sr,87,34.8,force,front_fx,0.0017899653175845742 +steady,sr,87,34.8,force,front_fy,9.598106407793239e-05 +steady,sr,87,34.8,force,upper_fx,0.0013863592175766826 +steady,sr,87,34.8,force,upper_fy,0.0032594469375908375 +steady,sr,87,34.8,force,lower_fx,0.0013217442901805043 +steady,sr,87,34.8,force,lower_fy,-0.002760556060820818 +steady,sr,88,35.2,force,front_fx,0.0017865115078166127 +steady,sr,88,35.2,force,front_fy,8.499035902787e-05 +steady,sr,88,35.2,force,upper_fx,0.001358659123070538 +steady,sr,88,35.2,force,upper_fy,0.0032141716219484806 +steady,sr,88,35.2,force,lower_fx,0.0013519685016945004 +steady,sr,88,35.2,force,lower_fy,-0.00281947641633451 +steady,sr,89,35.6,force,front_fx,0.0017857758793979883 +steady,sr,89,35.6,force,front_fy,6.296023639151827e-05 +steady,sr,89,35.6,force,upper_fx,0.0013291920768097043 +steady,sr,89,35.6,force,upper_fy,0.003152270568534732 +steady,sr,89,35.6,force,lower_fx,0.0013811944518238306 +steady,sr,89,35.6,force,lower_fy,-0.0029116773512214422 +steady,sr,90,36.0,force,front_fx,0.0017867540009319782 +steady,sr,90,36.0,force,front_fy,3.313389970571734e-05 +steady,sr,90,36.0,force,upper_fx,0.0012999234022572637 +steady,sr,90,36.0,force,upper_fy,0.0030768162105232477 +steady,sr,90,36.0,force,lower_fx,0.0014043161645531654 +steady,sr,90,36.0,force,lower_fy,-0.0030206332448869944 +steady,sr,91,36.4,force,front_fx,0.0017864670371636748 +steady,sr,91,36.4,force,front_fy,-8.755173439567443e-07 +steady,sr,91,36.4,force,upper_fx,0.0012725580018013716 +steady,sr,91,36.4,force,upper_fy,0.00299053848721087 +steady,sr,91,36.4,force,lower_fx,0.001416090759448707 +steady,sr,91,36.4,force,lower_fy,-0.003125955117866397 +steady,sr,92,36.8,force,front_fx,0.0017856924096122384 +steady,sr,92,36.8,force,front_fy,-3.427804767852649e-05 +steady,sr,92,36.8,force,upper_fx,0.001253266935236752 +steady,sr,92,36.8,force,upper_fy,0.0028996975161135197 +steady,sr,92,36.8,force,lower_fx,0.0014179935678839684 +steady,sr,92,36.8,force,lower_fy,-0.00320894131436944 +steady,sr,93,37.2,force,front_fx,0.001786045148037374 +steady,sr,93,37.2,force,front_fy,-6.362199928844348e-05 +steady,sr,93,37.2,force,upper_fx,0.0012494276743382215 +steady,sr,93,37.2,force,upper_fy,0.0028161494992673397 +steady,sr,93,37.2,force,lower_fx,0.0014142926083877683 +steady,sr,93,37.2,force,lower_fy,-0.0032607403118163347 +steady,sr,94,37.6,force,front_fx,0.0017894520424306393 +steady,sr,94,37.6,force,front_fy,-8.500663534505293e-05 +steady,sr,94,37.6,force,upper_fx,0.0012661105720326304 +steady,sr,94,37.6,force,upper_fy,0.0027575723361223936 +steady,sr,94,37.6,force,lower_fx,0.0014102465938776731 +steady,sr,94,37.6,force,lower_fy,-0.0032812037970870733 +steady,sr,95,38.0,force,front_fx,0.0017935531213879585 +steady,sr,95,38.0,force,front_fy,-9.616465104045346e-05 +steady,sr,95,38.0,force,upper_fx,0.001298360526561737 +steady,sr,95,38.0,force,upper_fy,0.0027392553165555 +steady,sr,95,38.0,force,lower_fx,0.0014033893821761012 +steady,sr,95,38.0,force,lower_fy,-0.0032765918876975775 +steady,sr,96,38.4,force,front_fx,0.0017945901490747929 +steady,sr,96,38.4,force,front_fy,-9.456211409997195e-05 +steady,sr,96,38.4,force,upper_fx,0.00133509561419487 +steady,sr,96,38.4,force,upper_fy,0.0027686716057360172 +steady,sr,96,38.4,force,lower_fx,0.001388134784065187 +steady,sr,96,38.4,force,lower_fy,-0.0032508482690900564 +steady,sr,97,38.8,force,front_fx,0.0017902931431308389 +steady,sr,97,38.8,force,front_fy,-8.137287659337744e-05 +steady,sr,97,38.8,force,upper_fx,0.0013653829228132963 +steady,sr,97,38.8,force,upper_fy,0.0028396369889378548 +steady,sr,97,38.8,force,lower_fx,0.0013596111675724387 +steady,sr,97,38.8,force,lower_fy,-0.0032062390819191933 +steady,sr,98,39.2,force,front_fx,0.0017843693494796753 +steady,sr,98,39.2,force,front_fy,-5.7150191423716024e-05 +steady,sr,98,39.2,force,upper_fx,0.0013861455954611301 +steady,sr,98,39.2,force,upper_fy,0.002937839599326253 +steady,sr,98,39.2,force,lower_fx,0.0013223260175436735 +steady,sr,98,39.2,force,lower_fy,-0.003141355235129595 +steady,sr,99,39.6,force,front_fx,0.0017811344005167484 +steady,sr,99,39.6,force,front_fy,-2.6178424377576448e-05 +steady,sr,99,39.6,force,upper_fx,0.0014003007672727108 +steady,sr,99,39.6,force,upper_fy,0.003043979173526168 +steady,sr,99,39.6,force,lower_fx,0.0012864333111792803 +steady,sr,99,39.6,force,lower_fy,-0.0030596796423196793 +steady,sr,100,40.0,force,front_fx,0.0017833503661677241 +steady,sr,100,40.0,force,front_fy,8.051839358813595e-06 +steady,sr,100,40.0,force,upper_fx,0.001412052079103887 +steady,sr,100,40.0,force,upper_fy,0.00314223300665617 +steady,sr,100,40.0,force,lower_fx,0.0012622851645573974 +steady,sr,100,40.0,force,lower_fy,-0.0029679618310183287 +steady,sr,101,40.4,force,front_fx,0.0017886713612824678 +steady,sr,101,40.4,force,front_fy,4.114998955628835e-05 +steady,sr,101,40.4,force,upper_fx,0.0014205208281055093 +steady,sr,101,40.4,force,upper_fy,0.0032198119442909956 +steady,sr,101,40.4,force,lower_fx,0.0012540079187601805 +steady,sr,101,40.4,force,lower_fy,-0.002877740189433098 +steady,sr,102,40.8,force,front_fx,0.0017921662656590343 +steady,sr,102,40.8,force,front_fy,6.886337359901518e-05 +steady,sr,102,40.8,force,upper_fx,0.00142119568772614 +steady,sr,102,40.8,force,upper_fy,0.0032684640027582645 +steady,sr,102,40.8,force,lower_fx,0.0012592582497745752 +steady,sr,102,40.8,force,lower_fy,-0.0028022238984704018 +steady,sr,103,41.2,force,front_fx,0.0017922158585861325 +steady,sr,103,41.2,force,front_fy,8.861530659487471e-05 +steady,sr,103,41.2,force,upper_fx,0.0014132092474028468 +steady,sr,103,41.2,force,upper_fy,0.003286725375801325 +steady,sr,103,41.2,force,lower_fx,0.0012770203175023198 +steady,sr,103,41.2,force,lower_fy,-0.0027524754405021667 +steady,sr,104,41.6,force,front_fx,0.0017901702085509896 +steady,sr,104,41.6,force,front_fy,9.678627247922122e-05 +steady,sr,104,41.6,force,upper_fx,0.0013967822305858135 +steady,sr,104,41.6,force,upper_fy,0.003275256836786866 +steady,sr,104,41.6,force,lower_fx,0.0013017072342336178 +steady,sr,104,41.6,force,lower_fy,-0.0027440572157502174 +steady,sr,105,42.0,force,front_fx,0.0017889138543978333 +steady,sr,105,42.0,force,front_fy,9.30524620343931e-05 +steady,sr,105,42.0,force,upper_fx,0.0013757500564679503 +steady,sr,105,42.0,force,upper_fy,0.0032414791639894247 +steady,sr,105,42.0,force,lower_fx,0.0013348436914384365 +steady,sr,105,42.0,force,lower_fy,-0.0027785240672528744 +steady,sr,106,42.4,force,front_fx,0.001788677996955812 +steady,sr,106,42.4,force,front_fy,7.69055841374211e-05 +steady,sr,106,42.4,force,upper_fx,0.0013503122609108686 +steady,sr,106,42.4,force,upper_fy,0.003190229181200266 +steady,sr,106,42.4,force,lower_fx,0.0013686672318726778 +steady,sr,106,42.4,force,lower_fy,-0.002854962833225727 +steady,sr,107,42.8,force,front_fx,0.0017881568055599928 +steady,sr,107,42.8,force,front_fy,5.126789619680494e-05 +steady,sr,107,42.8,force,upper_fx,0.0013202934060245752 +steady,sr,107,42.8,force,upper_fy,0.003124262671917677 +steady,sr,107,42.8,force,lower_fx,0.0013956145849078894 +steady,sr,107,42.8,force,lower_fy,-0.0029586153104901314 +steady,sr,108,43.2,force,front_fx,0.0017856871709227562 +steady,sr,108,43.2,force,front_fy,1.9040904589928687e-05 +steady,sr,108,43.2,force,upper_fx,0.0012871840735897422 +steady,sr,108,43.2,force,upper_fy,0.0030435938388109207 +steady,sr,108,43.2,force,lower_fx,0.0014101372798904777 +steady,sr,108,43.2,force,lower_fy,-0.0030688391998410225 +steady,sr,109,43.6,force,front_fx,0.001783583895303309 +steady,sr,109,43.6,force,front_fy,-1.5270257790689357e-05 +steady,sr,109,43.6,force,upper_fx,0.0012596403248608112 +steady,sr,109,43.6,force,upper_fy,0.0029522269032895565 +steady,sr,109,43.6,force,lower_fx,0.0014147348701953888 +steady,sr,109,43.6,force,lower_fy,-0.0031646746210753918 +steady,sr,110,44.0,force,front_fx,0.0017843752866610885 +steady,sr,110,44.0,force,front_fy,-4.740358781418763e-05 +steady,sr,110,44.0,force,upper_fx,0.0012471637455746531 +steady,sr,110,44.0,force,upper_fy,0.0028608778957277536 +steady,sr,110,44.0,force,lower_fx,0.001414835569448769 +steady,sr,110,44.0,force,lower_fy,-0.003233409719541669 +steady,sr,111,44.4,force,front_fx,0.0017890348099172115 +steady,sr,111,44.4,force,front_fy,-7.401907350867987e-05 +steady,sr,111,44.4,force,upper_fx,0.0012561326147988439 +steady,sr,111,44.4,force,upper_fy,0.0027859255205839872 +steady,sr,111,44.4,force,lower_fx,0.0014148877235129476 +steady,sr,111,44.4,force,lower_fy,-0.0032721778843551874 +steady,sr,112,44.8,force,front_fx,0.0017941114492714405 +steady,sr,112,44.8,force,front_fy,-9.120173490373418e-05 +steady,sr,112,44.8,force,upper_fx,0.0012823693687096238 +steady,sr,112,44.8,force,upper_fy,0.002744794823229313 +steady,sr,112,44.8,force,lower_fx,0.0014122268185019493 +steady,sr,112,44.8,force,lower_fy,-0.0032833509612828493 +steady,sr,113,45.2,force,front_fx,0.0017951959744095802 +steady,sr,113,45.2,force,front_fy,-9.726540156407282e-05 +steady,sr,113,45.2,force,upper_fx,0.0013158046640455723 +steady,sr,113,45.2,force,upper_fy,0.0027476605027914047 +steady,sr,113,45.2,force,lower_fx,0.0014002756215631962 +steady,sr,113,45.2,force,lower_fy,-0.003270740620791912 +steady,sr,114,45.6,force,front_fx,0.0017912983894348145 +steady,sr,114,45.6,force,front_fy,-9.043694444699213e-05 +steady,sr,114,45.6,force,upper_fx,0.001346812816336751 +steady,sr,114,45.6,force,upper_fy,0.0027952289674431086 +steady,sr,114,45.6,force,lower_fx,0.0013755840482190251 +steady,sr,114,45.6,force,lower_fy,-0.0032357496675103903 +steady,sr,115,46.0,force,front_fx,0.0017854454927146435 +steady,sr,115,46.0,force,front_fy,-7.245296001201496e-05 +steady,sr,115,46.0,force,upper_fx,0.001371935592032969 +steady,sr,115,46.0,force,upper_fy,0.0028777816332876682 +steady,sr,115,46.0,force,lower_fx,0.0013411028776317835 +steady,sr,115,46.0,force,lower_fy,-0.0031806686893105507 +steady,sr,116,46.4,force,front_fx,0.0017825555987656116 +steady,sr,116,46.4,force,front_fy,-4.462536526261829e-05 +steady,sr,116,46.4,force,upper_fx,0.0013924234081059694 +steady,sr,116,46.4,force,upper_fy,0.0029810862615704536 +steady,sr,116,46.4,force,lower_fx,0.0013062250800430775 +steady,sr,116,46.4,force,lower_fy,-0.00310685602016747 +steady,sr,117,46.8,force,front_fx,0.001783978776074946 +steady,sr,117,46.8,force,front_fy,-1.191976207337575e-05 +steady,sr,117,46.8,force,upper_fx,0.0014089772012084723 +steady,sr,117,46.8,force,upper_fy,0.0030870360787957907 +steady,sr,117,46.8,force,lower_fx,0.001277725212275982 +steady,sr,117,46.8,force,lower_fy,-0.003021322889253497 +steady,sr,118,47.2,force,front_fx,0.0017876561032608151 +steady,sr,118,47.2,force,front_fy,2.2493120923172683e-05 +steady,sr,118,47.2,force,upper_fx,0.001419864478521049 +steady,sr,118,47.2,force,upper_fy,0.003180041676387191 +steady,sr,118,47.2,force,lower_fx,0.0012603549985215068 +steady,sr,118,47.2,force,lower_fy,-0.0029305173084139824 +steady,sr,119,47.6,force,front_fx,0.0017897984944283962 +steady,sr,119,47.6,force,front_fy,5.367112680687569e-05 +steady,sr,119,47.6,force,upper_fx,0.0014219543663784862 +steady,sr,119,47.6,force,upper_fy,0.0032464817631989717 +steady,sr,119,47.6,force,lower_fx,0.0012541598407551646 +steady,sr,119,47.6,force,lower_fy,-0.0028453210834413767 +steady,sr,120,48.0,force,front_fx,0.001790215726941824 +steady,sr,120,48.0,force,front_fy,7.844177162041888e-05 +steady,sr,120,48.0,force,upper_fx,0.001416269107721746 +steady,sr,120,48.0,force,upper_fy,0.003280653851106763 +steady,sr,120,48.0,force,lower_fx,0.0012617764296010137 +steady,sr,120,48.0,force,lower_fy,-0.0027778102084994316 +steady,sr,121,48.4,force,front_fx,0.0017899819649755955 +steady,sr,121,48.4,force,front_fy,9.363735443912446e-05 +steady,sr,121,48.4,force,upper_fx,0.001404700567945838 +steady,sr,121,48.4,force,upper_fy,0.003283847589045763 +steady,sr,121,48.4,force,lower_fx,0.0012833131477236748 +steady,sr,121,48.4,force,lower_fy,-0.0027425787411630154 +steady,sr,122,48.8,force,front_fx,0.0017908375011757016 +steady,sr,122,48.8,force,front_fy,9.667651465861127e-05 +steady,sr,122,48.8,force,upper_fx,0.0013900212943553925 +steady,sr,122,48.8,force,upper_fy,0.003262249520048499 +steady,sr,122,48.8,force,lower_fx,0.001316558918915689 +steady,sr,122,48.8,force,lower_fy,-0.0027516321279108524 +steady,sr,123,49.2,force,front_fx,0.0017914708005264401 +steady,sr,123,49.2,force,front_fy,8.776066533755511e-05 +steady,sr,123,49.2,force,upper_fx,0.0013694665394723415 +steady,sr,123,49.2,force,upper_fy,0.0032226117327809334 +steady,sr,123,49.2,force,lower_fx,0.0013533468591049314 +steady,sr,123,49.2,force,lower_fy,-0.0028066181112080812 +steady,sr,124,49.6,force,front_fx,0.00178964261431247 +steady,sr,124,49.6,force,front_fy,6.710781599394977e-05 +steady,sr,124,49.6,force,upper_fx,0.001340431161224842 +steady,sr,124,49.6,force,upper_fy,0.003166312351822853 +steady,sr,124,49.6,force,lower_fx,0.0013834689743816853 +steady,sr,124,49.6,force,lower_fy,-0.002898541046306491 +steady,sr,125,50.0,force,front_fx,0.0017854876350611448 +steady,sr,125,50.0,force,front_fy,3.8268277421593666e-05 +steady,sr,125,50.0,force,upper_fx,0.001304485835134983 +steady,sr,125,50.0,force,upper_fy,0.003093323204666376 +steady,sr,125,50.0,force,lower_fx,0.0014015443157404661 +steady,sr,125,50.0,force,lower_fy,-0.00300702266395092 +steady,sr,126,50.4,force,front_fx,0.0017822992522269487 +steady,sr,126,50.4,force,front_fy,4.4761136450688355e-06 +steady,sr,126,50.4,force,upper_fx,0.0012709102593362331 +steady,sr,126,50.4,force,upper_fy,0.0030051767826080322 +steady,sr,126,50.4,force,lower_fx,0.0014097088715061545 +steady,sr,126,50.4,force,lower_fy,-0.0031115878373384476 +steady,sr,127,50.8,force,front_fx,0.0017831814475357533 +steady,sr,127,50.8,force,front_fy,-2.9346281735342927e-05 +steady,sr,127,50.8,force,upper_fx,0.0012510614469647408 +steady,sr,127,50.8,force,upper_fy,0.002911059185862541 +steady,sr,127,50.8,force,lower_fx,0.0014141164720058441 +steady,sr,127,50.8,force,lower_fy,-0.003195822238922119 +steady,sr,128,51.2,force,front_fx,0.0017882282845675945 +steady,sr,128,51.2,force,front_fy,-5.966627941234037e-05 +steady,sr,128,51.2,force,upper_fx,0.0012511595850810409 +steady,sr,128,51.2,force,upper_fy,0.0028253740165382624 +steady,sr,128,51.2,force,lower_fx,0.0014178006676957011 +steady,sr,128,51.2,force,lower_fy,-0.003253092523664236 +steady,sr,129,51.6,force,front_fx,0.0017936634831130505 +steady,sr,129,51.6,force,front_fy,-8.263438940048218e-05 +steady,sr,129,51.6,force,upper_fx,0.0012691287556663156 +steady,sr,129,51.6,force,upper_fy,0.002764760283753276 +steady,sr,129,51.6,force,lower_fx,0.0014180798316374421 +steady,sr,129,51.6,force,lower_fy,-0.003281610319390893 +steady,sr,130,52.0,force,front_fx,0.001794847077690065 +steady,sr,130,52.0,force,front_fy,-9.535975550534204e-05 +steady,sr,130,52.0,force,upper_fx,0.0012965031201019883 +steady,sr,130,52.0,force,upper_fy,0.0027420378755778074 +steady,sr,130,52.0,force,lower_fx,0.0014089994365349412 +steady,sr,130,52.0,force,lower_fy,-0.003282909281551838 +steady,sr,131,52.4,force,front_fx,0.001791840884834528 +steady,sr,131,52.4,force,front_fy,-9.588322427589446e-05 +steady,sr,131,52.4,force,upper_fx,0.0013267388567328453 +steady,sr,131,52.4,force,upper_fy,0.0027630210388451815 +steady,sr,131,52.4,force,lower_fx,0.0013883474748581648 +steady,sr,131,52.4,force,lower_fy,-0.0032593223731964827 +steady,sr,132,52.8,force,front_fx,0.0017870697192847729 +steady,sr,132,52.8,force,front_fy,-8.408771827816963e-05 +steady,sr,132,52.8,force,upper_fx,0.001355451182462275 +steady,sr,132,52.8,force,upper_fy,0.0028251982294023037 +steady,sr,132,52.8,force,lower_fx,0.001359066809527576 +steady,sr,132,52.8,force,lower_fy,-0.0032136081717908382 +steady,sr,133,53.2,force,front_fx,0.0017847061390057206 +steady,sr,133,53.2,force,front_fy,-6.168813706608489e-05 +steady,sr,133,53.2,force,upper_fx,0.0013820400927215815 +steady,sr,133,53.2,force,upper_fy,0.0029184799641370773 +steady,sr,133,53.2,force,lower_fx,0.0013267756439745426 +steady,sr,133,53.2,force,lower_fy,-0.0031500854529440403 +steady,sr,134,53.6,force,front_fx,0.0017852501478046179 +steady,sr,134,53.6,force,front_fy,-3.1197661883197725e-05 +steady,sr,134,53.6,force,upper_fx,0.001403485657647252 +steady,sr,134,53.6,force,upper_fy,0.0030268423724919558 +steady,sr,134,53.6,force,lower_fx,0.0012964088236913085 +steady,sr,134,53.6,force,lower_fy,-0.0030722524970769882 +steady,sr,135,54.0,force,front_fx,0.0017867254791781306 +steady,sr,135,54.0,force,front_fy,2.6640971100277966e-06 +steady,sr,135,54.0,force,upper_fx,0.001416924991644919 +steady,sr,135,54.0,force,upper_fy,0.003130753291770816 +steady,sr,135,54.0,force,lower_fx,0.0012713102623820305 +steady,sr,135,54.0,force,lower_fy,-0.0029847121331840754 +steady,sr,136,54.4,force,front_fx,0.0017873654142022133 +steady,sr,136,54.4,force,front_fy,3.6338438803795725e-05 +steady,sr,136,54.4,force,upper_fx,0.001420586253516376 +steady,sr,136,54.4,force,upper_fy,0.003213481279090047 +steady,sr,136,54.4,force,lower_fx,0.0012551180552691221 +steady,sr,136,54.4,force,lower_fy,-0.0028942343778908253 +steady,sr,137,54.8,force,front_fx,0.0017879020888358355 +steady,sr,137,54.8,force,front_fy,6.510977254947647e-05 +steady,sr,137,54.8,force,upper_fx,0.0014172503724694252 +steady,sr,137,54.8,force,upper_fy,0.003264583647251129 +steady,sr,137,54.8,force,lower_fx,0.0012525602942332625 +steady,sr,137,54.8,force,lower_fy,-0.0028131611179560423 +steady,sr,138,55.2,force,front_fx,0.0017894405173137784 +steady,sr,138,55.2,force,front_fy,8.635222911834717e-05 +steady,sr,138,55.2,force,upper_fx,0.0014105730224400759 +steady,sr,138,55.2,force,upper_fy,0.0032840389758348465 +steady,sr,138,55.2,force,lower_fx,0.0012678164057433605 +steady,sr,138,55.2,force,lower_fy,-0.00275623076595366 +steady,sr,139,55.6,force,front_fx,0.0017921573016792536 +steady,sr,139,55.6,force,front_fy,9.650368156144395e-05 +steady,sr,139,55.6,force,upper_fx,0.0014013356994837523 +steady,sr,139,55.6,force,upper_fy,0.003276604227721691 +steady,sr,139,55.6,force,lower_fx,0.0012986266519874334 +steady,sr,139,55.6,force,lower_fy,-0.00273966696113348 +steady,sr,140,56.0,force,front_fx,0.0017936053918674588 +steady,sr,140,56.0,force,front_fy,9.441483416594565e-05 +steady,sr,140,56.0,force,upper_fx,0.0013858010061085224 +steady,sr,140,56.0,force,upper_fy,0.0032486962154507637 +steady,sr,140,56.0,force,lower_fx,0.0013356523122638464 +steady,sr,140,56.0,force,lower_fy,-0.0027705389074981213 +steady,sr,141,56.4,force,front_fx,0.001791014103218913 +steady,sr,141,56.4,force,front_fy,8.035819337237626e-05 +steady,sr,141,56.4,force,upper_fx,0.0013590141898021102 +steady,sr,141,56.4,force,upper_fy,0.003202754072844982 +steady,sr,141,56.4,force,lower_fx,0.0013681483687832952 +steady,sr,141,56.4,force,lower_fy,-0.00284373015165329 +steady,sr,142,56.8,force,front_fx,0.0017859756480902433 +steady,sr,142,56.8,force,front_fy,5.560380304814316e-05 +steady,sr,142,56.8,force,upper_fx,0.0013231649063527584 +steady,sr,142,56.8,force,upper_fy,0.0031381025910377502 +steady,sr,142,56.8,force,lower_fx,0.001390120480209589 +steady,sr,142,56.8,force,lower_fy,-0.0029443036764860153 +steady,sr,143,57.2,force,front_fx,0.0017819516360759735 +steady,sr,143,57.2,force,front_fy,2.4361936084460467e-05 +steady,sr,143,57.2,force,upper_fx,0.001286385697312653 +steady,sr,143,57.2,force,upper_fy,0.003056466579437256 +steady,sr,143,57.2,force,lower_fx,0.001402940135449171 +steady,sr,143,57.2,force,lower_fy,-0.003051765263080597 +steady,sr,144,57.6,force,front_fx,0.001782656298018992 +steady,sr,144,57.6,force,front_fy,-1.0118225873156916e-05 +steady,sr,144,57.6,force,upper_fx,0.0012605995871126652 +steady,sr,144,57.6,force,upper_fy,0.0029637091793119907 +steady,sr,144,57.6,force,lower_fx,0.0014120771083980799 +steady,sr,144,57.6,force,lower_fy,-0.0031489082612097263 +steady,sr,145,58.0,force,front_fx,0.001787342014722526 +steady,sr,145,58.0,force,front_fy,-4.2741936340462416e-05 +steady,sr,145,58.0,force,upper_fx,0.0012517172144725919 +steady,sr,145,58.0,force,upper_fy,0.0028727715834975243 +steady,sr,145,58.0,force,lower_fx,0.001419013598933816 +steady,sr,145,58.0,force,lower_fy,-0.003223532112315297 +steady,sr,146,58.4,force,front_fx,0.001792270690202713 +steady,sr,146,58.4,force,front_fy,-7.061415089992806e-05 +steady,sr,146,58.4,force,upper_fx,0.00125956314150244 +steady,sr,146,58.4,force,upper_fy,0.0027971696108579636 +steady,sr,146,58.4,force,lower_fx,0.0014212856767699122 +steady,sr,146,58.4,force,lower_fy,-0.0032704086042940617 +steady,sr,147,58.8,force,front_fx,0.001793692004866898 +steady,sr,147,58.8,force,front_fy,-8.936758968047798e-05 +steady,sr,147,58.8,force,upper_fx,0.0012789673637598753 +steady,sr,147,58.8,force,upper_fy,0.0027512640226632357 +steady,sr,147,58.8,force,lower_fx,0.0014149185735732317 +steady,sr,147,58.8,force,lower_fy,-0.0032867451664060354 +steady,sr,148,59.2,force,front_fx,0.001791771617718041 +steady,sr,148,59.2,force,front_fy,-9.717297507449985e-05 +steady,sr,148,59.2,force,upper_fx,0.0013062310172244906 +steady,sr,148,59.2,force,upper_fy,0.0027451682835817337 +steady,sr,148,59.2,force,lower_fx,0.0013986873673275113 +steady,sr,148,59.2,force,lower_fy,-0.0032755988650023937 +steady,sr,149,59.6,force,front_fx,0.001788807101547718 +steady,sr,149,59.6,force,front_fy,-9.23068801057525e-05 +steady,sr,149,59.6,force,upper_fx,0.0013373758411034942 +steady,sr,149,59.6,force,upper_fy,0.0027831823099404573 +steady,sr,149,59.6,force,lower_fx,0.0013751158257946372 +steady,sr,149,59.6,force,lower_fy,-0.0032407331746071577 +steady,sr,150,60.0,force,front_fx,0.001787248533219099 +steady,sr,150,60.0,force,front_fy,-7.587251457152888e-05 +steady,sr,150,60.0,force,upper_fx,0.0013689456973224878 +steady,sr,150,60.0,force,upper_fy,0.0028606003616005182 +steady,sr,150,60.0,force,lower_fx,0.0013472114223986864 +steady,sr,150,60.0,force,lower_fy,-0.0031878387089818716 +steady,sr,151,60.4,force,front_fx,0.0017869678558781743 +steady,sr,151,60.4,force,front_fy,-4.951902519678697e-05 +steady,sr,151,60.4,force,upper_fx,0.0013952463632449508 +steady,sr,151,60.4,force,upper_fy,0.002964374143630266 +steady,sr,151,60.4,force,lower_fx,0.001316774170845747 +steady,sr,151,60.4,force,lower_fy,-0.003119447035714984 +steady,sr,152,60.8,force,front_fx,0.0017862500390037894 +steady,sr,152,60.8,force,front_fy,-1.7054617273970507e-05 +steady,sr,152,60.8,force,upper_fx,0.0014115163357928395 +steady,sr,152,60.8,force,upper_fy,0.003074275329709053 +steady,sr,152,60.8,force,lower_fx,0.0012861286522820592 +steady,sr,152,60.8,force,lower_fy,-0.003037902759388089 +steady,sr,153,61.2,force,front_fx,0.001785317319445312 +steady,sr,153,61.2,force,front_fy,1.722376146062743e-05 +steady,sr,153,61.2,force,upper_fx,0.0014175279065966606 +steady,sr,153,61.2,force,upper_fy,0.0031700702384114265 +steady,sr,153,61.2,force,lower_fx,0.0012608993565663695 +steady,sr,153,61.2,force,lower_fy,-0.002947139786556363 +steady,sr,154,61.6,force,front_fx,0.001785575645044446 +steady,sr,154,61.6,force,front_fy,4.935872129863128e-05 +steady,sr,154,61.6,force,upper_fx,0.0014168928610160947 +steady,sr,154,61.6,force,upper_fy,0.003238320117816329 +steady,sr,154,61.6,force,lower_fx,0.0012489798245951533 +steady,sr,154,61.6,force,lower_fy,-0.002857079729437828 +steady,sr,155,62.0,force,front_fx,0.0017885364359244704 +steady,sr,155,62.0,force,front_fy,7.518728671129793e-05 +steady,sr,155,62.0,force,upper_fx,0.0014145048335194588 +steady,sr,155,62.0,force,upper_fy,0.0032749646343290806 +steady,sr,155,62.0,force,lower_fx,0.0012565817451104522 +steady,sr,155,62.0,force,lower_fy,-0.0027834982611238956 +steady,sr,156,62.4,force,front_fx,0.0017927646404132247 +steady,sr,156,62.4,force,front_fy,9.217705519404262e-05 +steady,sr,156,62.4,force,upper_fx,0.0014099330874159932 +steady,sr,156,62.4,force,upper_fy,0.0032836133614182472 +steady,sr,156,62.4,force,lower_fx,0.001282164128497243 +steady,sr,156,62.4,force,lower_fy,-0.0027431780472397804 +steady,sr,157,62.8,force,front_fx,0.0017948149470612407 +steady,sr,157,62.8,force,front_fy,9.710697486298159e-05 +steady,sr,157,62.8,force,upper_fx,0.0013986523263156414 +steady,sr,157,62.8,force,upper_fy,0.0032684579491615295 +steady,sr,157,62.8,force,lower_fx,0.0013170093297958374 +steady,sr,157,62.8,force,lower_fy,-0.0027481659781187773 +steady,sr,158,63.2,force,front_fx,0.0017921925755217671 +steady,sr,158,63.2,force,front_fy,8.991807408165187e-05 +steady,sr,158,63.2,force,upper_fx,0.0013754687970504165 +steady,sr,158,63.2,force,upper_fy,0.0032331100665032864 +steady,sr,158,63.2,force,lower_fx,0.0013501017820090055 +steady,sr,158,63.2,force,lower_fy,-0.0027983570471405983 +steady,sr,159,63.6,force,front_fx,0.0017869151197373867 +steady,sr,159,63.6,force,front_fy,7.098985224729404e-05 +steady,sr,159,63.6,force,upper_fx,0.0013417701702564955 +steady,sr,159,63.6,force,upper_fy,0.003177726874127984 +steady,sr,159,63.6,force,lower_fx,0.0013759800931438804 +steady,sr,159,63.6,force,lower_fy,-0.0028842685278505087 +steady,sr,160,64.0,force,front_fx,0.001782668987289071 +steady,sr,160,64.0,force,front_fy,4.3047497456427664e-05 +steady,sr,160,64.0,force,upper_fx,0.0013049152912572026 +steady,sr,160,64.0,force,upper_fy,0.003103995230048895 +steady,sr,160,64.0,force,lower_fx,0.0013943143421784043 +steady,sr,160,64.0,force,lower_fy,-0.0029886949341744184 +steady,sr,161,64.4,force,front_fx,0.0017828786512836814 +steady,sr,161,64.4,force,front_fy,9.85975748335477e-06 +steady,sr,161,64.4,force,upper_fx,0.0012748995795845985 +steady,sr,161,64.4,force,upper_fy,0.0030167601071298122 +steady,sr,161,64.4,force,lower_fx,0.0014084752183407545 +steady,sr,161,64.4,force,lower_fy,-0.0030938005074858665 +steady,sr,162,64.8,force,front_fx,0.001786569831892848 +steady,sr,162,64.8,force,front_fy,-2.4460017812089063e-05 +steady,sr,162,64.8,force,upper_fx,0.0012577867601066828 +steady,sr,162,64.8,force,upper_fy,0.002924624364823103 +steady,sr,162,64.8,force,lower_fx,0.0014184759929776192 +steady,sr,162,64.8,force,lower_fy,-0.003184314351528883 +steady,sr,163,65.2,force,front_fx,0.0017903086263686419 +steady,sr,163,65.2,force,front_fy,-5.5351345508825034e-05 +steady,sr,163,65.2,force,upper_fx,0.0012547314399853349 +steady,sr,163,65.2,force,upper_fy,0.002839615335687995 +steady,sr,163,65.2,force,lower_fx,0.0014224180486053228 +steady,sr,163,65.2,force,lower_fy,-0.0032486869022250175 +steady,sr,164,65.6,force,front_fx,0.0017917649820446968 +steady,sr,164,65.6,force,front_fy,-7.984005787875503e-05 +steady,sr,164,65.6,force,upper_fx,0.0012649336131289601 +steady,sr,164,65.6,force,upper_fy,0.002774335676804185 +steady,sr,164,65.6,force,lower_fx,0.0014180360594764352 +steady,sr,164,65.6,force,lower_fy,-0.0032820552587509155 +steady,sr,165,66.0,force,front_fx,0.001791162882000208 +steady,sr,165,66.0,force,front_fy,-9.411846986040473e-05 +steady,sr,165,66.0,force,upper_fx,0.001286921789869666 +steady,sr,165,66.0,force,upper_fy,0.0027428565081208944 +steady,sr,165,66.0,force,lower_fx,0.001406135968863964 +steady,sr,165,66.0,force,lower_fy,-0.0032845691312104464 +steady,sr,166,66.4,force,front_fx,0.001790348906069994 +steady,sr,166,66.4,force,front_fy,-9.668946586316451e-05 +steady,sr,166,66.4,force,upper_fx,0.0013184293638914824 +steady,sr,166,66.4,force,upper_fy,0.002754392335191369 +steady,sr,166,66.4,force,lower_fx,0.0013887380482628942 +steady,sr,166,66.4,force,lower_fy,-0.003261913312599063 +steady,sr,167,66.8,force,front_fx,0.0017898714868351817 +steady,sr,167,66.8,force,front_fy,-8.673690899740905e-05 +steady,sr,167,66.8,force,upper_fx,0.0013533852761611342 +steady,sr,167,66.8,force,upper_fy,0.002811155281960964 +steady,sr,167,66.8,force,lower_fx,0.0013661107514053583 +steady,sr,167,66.8,force,lower_fy,-0.003219878301024437 +steady,sr,168,67.2,force,front_fx,0.0017888476140797138 +steady,sr,168,67.2,force,front_fy,-6.57727214274928e-05 +steady,sr,168,67.2,force,upper_fx,0.0013839235762134194 +steady,sr,168,67.2,force,upper_fy,0.002903477754443884 +steady,sr,168,67.2,force,lower_fx,0.001337421708740294 +steady,sr,168,67.2,force,lower_fy,-0.0031618454959243536 +steady,sr,169,67.6,force,front_fx,0.001786284614354372 +steady,sr,169,67.6,force,front_fy,-3.624451346695423e-05 +steady,sr,169,67.6,force,upper_fx,0.0014035232597962022 +steady,sr,169,67.6,force,upper_fy,0.003012977307662368 +steady,sr,169,67.6,force,lower_fx,0.0013036401942372322 +steady,sr,169,67.6,force,lower_fy,-0.0030878090765327215 +steady,sr,170,68.0,force,front_fx,0.0017838464118540287 +steady,sr,170,68.0,force,front_fy,-2.547790700191399e-06 +steady,sr,170,68.0,force,upper_fx,0.0014126141322776675 +steady,sr,170,68.0,force,upper_fy,0.0031177669297903776 +steady,sr,170,68.0,force,lower_fx,0.001271535293199122 +steady,sr,170,68.0,force,lower_fy,-0.0030005783773958683 +steady,sr,171,68.4,force,front_fx,0.0017837355844676495 +steady,sr,171,68.4,force,front_fy,3.134825237793848e-05 +steady,sr,171,68.4,force,upper_fx,0.0014153807424008846 +steady,sr,171,68.4,force,upper_fy,0.0032015168108046055 +steady,sr,171,68.4,force,lower_fx,0.0012513638939708471 +steady,sr,171,68.4,force,lower_fy,-0.002906889421865344 +steady,sr,172,68.8,force,front_fx,0.0017874321201816201 +steady,sr,172,68.8,force,front_fy,6.125566869741306e-05 +steady,sr,172,68.8,force,upper_fx,0.0014168081106618047 +steady,sr,172,68.8,force,upper_fy,0.003256384748965502 +steady,sr,172,68.8,force,lower_fx,0.0012505210470408201 +steady,sr,172,68.8,force,lower_fy,-0.002821585861966014 +steady,sr,173,69.2,force,front_fx,0.001792520983144641 +steady,sr,173,69.2,force,front_fy,8.364162204088643e-05 +steady,sr,173,69.2,force,upper_fx,0.0014159656129777431 +steady,sr,173,69.2,force,upper_fy,0.0032820687629282475 +steady,sr,173,69.2,force,lower_fx,0.0012684814864769578 +steady,sr,173,69.2,force,lower_fy,-0.0027616319712251425 +steady,sr,174,69.6,force,front_fx,0.0017950076144188643 +steady,sr,174,69.6,force,front_fy,9.58690361585468e-05 +steady,sr,174,69.6,force,upper_fx,0.0014081575209274888 +steady,sr,174,69.6,force,upper_fy,0.0032814503647387028 +steady,sr,174,69.6,force,lower_fx,0.0012982632033526897 +steady,sr,174,69.6,force,lower_fy,-0.002740834141150117 +steady,sr,175,70.0,force,front_fx,0.0017929456662386656 +steady,sr,175,70.0,force,front_fy,9.543618216412142e-05 +steady,sr,175,70.0,force,upper_fx,0.0013890635455027223 +steady,sr,175,70.0,force,upper_fy,0.003256926778703928 +steady,sr,175,70.0,force,lower_fx,0.001330253086052835 +steady,sr,175,70.0,force,lower_fy,-0.002765430836006999 +steady,sr,176,70.4,force,front_fx,0.0017881086096167564 +steady,sr,176,70.4,force,front_fy,8.32744044600986e-05 +steady,sr,176,70.4,force,upper_fx,0.0013593122130259871 +steady,sr,176,70.4,force,upper_fy,0.003211629344150424 +steady,sr,176,70.4,force,lower_fx,0.0013592466711997986 +steady,sr,176,70.4,force,lower_fy,-0.0028306616004556417 +steady,sr,177,70.8,force,front_fx,0.00178425177000463 +steady,sr,177,70.8,force,front_fy,5.990839417790994e-05 +steady,sr,177,70.8,force,upper_fx,0.001324823941104114 +steady,sr,177,70.8,force,upper_fy,0.0031469890382140875 +steady,sr,177,70.8,force,lower_fx,0.001383374910801649 +steady,sr,177,70.8,force,lower_fy,-0.0029258483555167913 +steady,sr,178,71.2,force,front_fx,0.0017839017091318965 +steady,sr,178,71.2,force,front_fy,2.9469731089193374e-05 +steady,sr,178,71.2,force,upper_fx,0.001292887725867331 +steady,sr,178,71.2,force,upper_fy,0.0030676431488245726 +steady,sr,178,71.2,force,lower_fx,0.0014027596917003393 +steady,sr,178,71.2,force,lower_fy,-0.0030333122704178095 +steady,sr,179,71.6,force,front_fx,0.0017860494554042816 +steady,sr,179,71.6,force,front_fy,-4.800670922122663e-06 +steady,sr,179,71.6,force,upper_fx,0.001268732245080173 +steady,sr,179,71.6,force,upper_fy,0.0029785120859742165 +steady,sr,179,71.6,force,lower_fx,0.0014162634033709764 +steady,sr,179,71.6,force,lower_fy,-0.0031355961691588163 +steady,sr,180,72.0,force,front_fx,0.0017881924286484718 +steady,sr,180,72.0,force,front_fy,-3.8085745472926646e-05 +steady,sr,180,72.0,force,upper_fx,0.001255196169950068 +steady,sr,180,72.0,force,upper_fy,0.0028885407373309135 +steady,sr,180,72.0,force,lower_fx,0.0014214403927326202 +steady,sr,180,72.0,force,lower_fy,-0.0032167730387300253 +steady,sr,181,72.4,force,front_fx,0.0017894789343699813 +steady,sr,181,72.4,force,front_fy,-6.67342173983343e-05 +steady,sr,181,72.4,force,upper_fx,0.0012552348198369145 +steady,sr,181,72.4,force,upper_fy,0.002809101715683937 +steady,sr,181,72.4,force,lower_fx,0.00141934584826231 +steady,sr,181,72.4,force,lower_fy,-0.003267170861363411 +steady,sr,182,72.8,force,front_fx,0.0017901088576763868 +steady,sr,182,72.8,force,front_fy,-8.72601376613602e-05 +steady,sr,182,72.8,force,upper_fx,0.0012703968677669764 +steady,sr,182,72.8,force,upper_fy,0.002755099441856146 +steady,sr,182,72.8,force,lower_fx,0.0014112803619354963 +steady,sr,182,72.8,force,lower_fy,-0.0032855942845344543 +steady,sr,183,73.2,force,front_fx,0.001791379414498806 +steady,sr,183,73.2,force,front_fy,-9.671904263086617e-05 +steady,sr,183,73.2,force,upper_fx,0.0012997448211535811 +steady,sr,183,73.2,force,upper_fy,0.002740758005529642 +steady,sr,183,73.2,force,lower_fx,0.001399775268509984 +steady,sr,183,73.2,force,lower_fy,-0.0032762864138931036 +steady,sr,184,73.6,force,front_fx,0.0017921399557963014 +steady,sr,184,73.6,force,front_fy,-9.402458817930892e-05 +steady,sr,184,73.6,force,upper_fx,0.001335966750048101 +steady,sr,184,73.6,force,upper_fy,0.0027731433510780334 +steady,sr,184,73.6,force,lower_fx,0.0013825692003592849 +steady,sr,184,73.6,force,lower_fy,-0.0032461746595799923 +steady,sr,185,74.0,force,front_fx,0.0017907327273860574 +steady,sr,185,74.0,force,front_fy,-7.903209188953042e-05 +steady,sr,185,74.0,force,upper_fx,0.0013693784130737185 +steady,sr,185,74.0,force,upper_fy,0.0028481564950197935 +steady,sr,185,74.0,force,lower_fx,0.0013567903079092503 +steady,sr,185,74.0,force,lower_fy,-0.0031986054964363575 +steady,sr,186,74.4,force,front_fx,0.0017869160510599613 +steady,sr,186,74.4,force,front_fy,-5.406642230809666e-05 +steady,sr,186,74.4,force,upper_fx,0.0013927534455433488 +steady,sr,186,74.4,force,upper_fy,0.002950207097455859 +steady,sr,186,74.4,force,lower_fx,0.0013224771246314049 +steady,sr,186,74.4,force,lower_fy,-0.0031335982494056225 +steady,sr,187,74.8,force,front_fx,0.0017831653822213411 +steady,sr,187,74.8,force,front_fy,-2.2211899704416282e-05 +steady,sr,187,74.8,force,upper_fx,0.0014057657681405544 +steady,sr,187,74.8,force,upper_fy,0.003058819565922022 +steady,sr,187,74.8,force,lower_fx,0.001286577433347702 +steady,sr,187,74.8,force,lower_fy,-0.0030519310384988785 +steady,sr,188,75.2,force,front_fx,0.0017826281255111098 +steady,sr,188,75.2,force,front_fy,1.2054082617396489e-05 +steady,sr,188,75.2,force,upper_fx,0.001412767800502479 +steady,sr,188,75.2,force,upper_fy,0.0031551250722259283 +steady,sr,188,75.2,force,lower_fx,0.0012596974847838283 +steady,sr,188,75.2,force,lower_fy,-0.0029593436047434807 +steady,sr,189,75.6,force,front_fx,0.0017863388638943434 +steady,sr,189,75.6,force,front_fy,4.4741678721038625e-05 +steady,sr,189,75.6,force,upper_fx,0.0014176906552165747 +steady,sr,189,75.6,force,upper_fy,0.0032276168931275606 +steady,sr,189,75.6,force,lower_fx,0.0012500378070399165 +steady,sr,189,75.6,force,lower_fy,-0.0028678143862634897 +steady,sr,190,76.0,force,front_fx,0.001791546936146915 +steady,sr,190,76.0,force,front_fy,7.18509400030598e-05 +steady,sr,190,76.0,force,upper_fx,0.0014197200071066618 +steady,sr,190,76.0,force,upper_fy,0.0032714414410293102 +steady,sr,190,76.0,force,lower_fx,0.001258897129446268 +steady,sr,190,76.0,force,lower_fy,-0.0027927157934755087 +steady,sr,191,76.4,force,front_fx,0.0017942088888958097 +steady,sr,191,76.4,force,front_fy,9.024063911056146e-05 +steady,sr,191,76.4,force,upper_fx,0.001414637896232307 +steady,sr,191,76.4,force,upper_fy,0.0032863726373761892 +steady,sr,191,76.4,force,lower_fx,0.0012809978798031807 +steady,sr,191,76.4,force,lower_fy,-0.0027488875202834606 +steady,sr,192,76.8,force,front_fx,0.0017931141192093492 +steady,sr,192,76.8,force,front_fy,9.728522127261385e-05 +steady,sr,192,76.8,force,upper_fx,0.0013995969202369452 +steady,sr,192,76.8,force,upper_fy,0.003274372313171625 +steady,sr,192,76.8,force,lower_fx,0.0013100975193083286 +steady,sr,192,76.8,force,lower_fy,-0.0027462763246148825 +steady,sr,193,77.2,force,front_fx,0.0017893393523991108 +steady,sr,193,77.2,force,front_fy,9.17070938157849e-05 +steady,sr,193,77.2,force,upper_fx,0.0013749762438237667 +steady,sr,193,77.2,force,upper_fy,0.003239300800487399 +steady,sr,193,77.2,force,lower_fx,0.0013404710916802287 +steady,sr,193,77.2,force,lower_fy,-0.0027878291439265013 +steady,sr,194,77.6,force,front_fx,0.001786409062333405 +steady,sr,194,77.6,force,front_fy,7.460450433427468e-05 +steady,sr,194,77.6,force,upper_fx,0.0013447285164147615 +steady,sr,194,77.6,force,upper_fy,0.003185090608894825 +steady,sr,194,77.6,force,lower_fx,0.0013699927367269993 +steady,sr,194,77.6,force,lower_fy,-0.0028669333551079035 +steady,sr,195,78.0,force,front_fx,0.001785553409717977 +steady,sr,195,78.0,force,front_fy,4.7665907914051786e-05 +steady,sr,195,78.0,force,upper_fx,0.0013130544684827328 +steady,sr,195,78.0,force,upper_fy,0.003114660969004035 +steady,sr,195,78.0,force,lower_fx,0.0013946234248578548 +steady,sr,195,78.0,force,lower_fy,-0.002970767905935645 +steady,sr,196,78.4,force,front_fx,0.001785928849130869 +steady,sr,196,78.4,force,front_fy,1.5204211194941308e-05 +steady,sr,196,78.4,force,upper_fx,0.0012836537789553404 +steady,sr,196,78.4,force,upper_fy,0.00303186709061265 +steady,sr,196,78.4,force,lower_fx,0.0014114945661276579 +steady,sr,196,78.4,force,lower_fy,-0.0030795440543442965 +steady,sr,197,78.8,force,front_fx,0.0017863053362816572 +steady,sr,197,78.8,force,front_fy,-1.9387778593227267e-05 +steady,sr,197,78.8,force,upper_fx,0.0012610098347067833 +steady,sr,197,78.8,force,upper_fy,0.0029410747811198235 +steady,sr,197,78.8,force,lower_fx,0.0014189116191118956 +steady,sr,197,78.8,force,lower_fy,-0.0031746155582368374 +steady,sr,198,79.2,force,front_fx,0.001787034678272903 +steady,sr,198,79.2,force,front_fy,-5.096355016576126e-05 +steady,sr,198,79.2,force,upper_fx,0.0012508640065789223 +steady,sr,198,79.2,force,upper_fy,0.0028527402319014072 +steady,sr,198,79.2,force,lower_fx,0.001418869593180716 +steady,sr,198,79.2,force,lower_fy,-0.003241998143494129 +steady,sr,199,79.6,force,front_fx,0.001788781606592238 +steady,sr,199,79.6,force,front_fy,-7.665630255360156e-05 +steady,sr,199,79.6,force,upper_fx,0.0012580319307744503 +steady,sr,199,79.6,force,upper_fy,0.002780918963253498 +steady,sr,199,79.6,force,lower_fx,0.0014147290494292974 +steady,sr,199,79.6,force,lower_fy,-0.0032775436993688345 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-1.0 +steady,sr,0,0.0,alpha,lower,1.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-1.0 +steady,sr,1,0.4,alpha,lower,1.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-1.0 +steady,sr,2,0.8,alpha,lower,1.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-1.0 +steady,sr,3,1.2,alpha,lower,1.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-1.0 +steady,sr,4,1.6,alpha,lower,1.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-1.0 +steady,sr,5,2.0,alpha,lower,1.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-1.0 +steady,sr,6,2.4,alpha,lower,1.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-1.0 +steady,sr,7,2.8,alpha,lower,1.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-1.0 +steady,sr,8,3.2,alpha,lower,1.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-1.0 +steady,sr,9,3.6,alpha,lower,1.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-1.0 +steady,sr,10,4.0,alpha,lower,1.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-1.0 +steady,sr,11,4.4,alpha,lower,1.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-1.0 +steady,sr,12,4.8,alpha,lower,1.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-1.0 +steady,sr,13,5.2,alpha,lower,1.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-1.0 +steady,sr,14,5.6,alpha,lower,1.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-1.0 +steady,sr,15,6.0,alpha,lower,1.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-1.0 +steady,sr,16,6.4,alpha,lower,1.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-1.0 +steady,sr,17,6.8,alpha,lower,1.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-1.0 +steady,sr,18,7.2,alpha,lower,1.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-1.0 +steady,sr,19,7.6,alpha,lower,1.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-1.0 +steady,sr,20,8.0,alpha,lower,1.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-1.0 +steady,sr,21,8.4,alpha,lower,1.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-1.0 +steady,sr,22,8.8,alpha,lower,1.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-1.0 +steady,sr,23,9.2,alpha,lower,1.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-1.0 +steady,sr,24,9.6,alpha,lower,1.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-1.0 +steady,sr,25,10.0,alpha,lower,1.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-1.0 +steady,sr,26,10.4,alpha,lower,1.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-1.0 +steady,sr,27,10.8,alpha,lower,1.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-1.0 +steady,sr,28,11.2,alpha,lower,1.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-1.0 +steady,sr,29,11.6,alpha,lower,1.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-1.0 +steady,sr,30,12.0,alpha,lower,1.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-1.0 +steady,sr,31,12.4,alpha,lower,1.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-1.0 +steady,sr,32,12.8,alpha,lower,1.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-1.0 +steady,sr,33,13.2,alpha,lower,1.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-1.0 +steady,sr,34,13.6,alpha,lower,1.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-1.0 +steady,sr,35,14.0,alpha,lower,1.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-1.0 +steady,sr,36,14.4,alpha,lower,1.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-1.0 +steady,sr,37,14.8,alpha,lower,1.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-1.0 +steady,sr,38,15.2,alpha,lower,1.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-1.0 +steady,sr,39,15.6,alpha,lower,1.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-1.0 +steady,sr,40,16.0,alpha,lower,1.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-1.0 +steady,sr,41,16.4,alpha,lower,1.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-1.0 +steady,sr,42,16.8,alpha,lower,1.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-1.0 +steady,sr,43,17.2,alpha,lower,1.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-1.0 +steady,sr,44,17.6,alpha,lower,1.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-1.0 +steady,sr,45,18.0,alpha,lower,1.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-1.0 +steady,sr,46,18.4,alpha,lower,1.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-1.0 +steady,sr,47,18.8,alpha,lower,1.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-1.0 +steady,sr,48,19.2,alpha,lower,1.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-1.0 +steady,sr,49,19.6,alpha,lower,1.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-1.0 +steady,sr,50,20.0,alpha,lower,1.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-1.0 +steady,sr,51,20.4,alpha,lower,1.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-1.0 +steady,sr,52,20.8,alpha,lower,1.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-1.0 +steady,sr,53,21.2,alpha,lower,1.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-1.0 +steady,sr,54,21.6,alpha,lower,1.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-1.0 +steady,sr,55,22.0,alpha,lower,1.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-1.0 +steady,sr,56,22.4,alpha,lower,1.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-1.0 +steady,sr,57,22.8,alpha,lower,1.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-1.0 +steady,sr,58,23.2,alpha,lower,1.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-1.0 +steady,sr,59,23.6,alpha,lower,1.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-1.0 +steady,sr,60,24.0,alpha,lower,1.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-1.0 +steady,sr,61,24.4,alpha,lower,1.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-1.0 +steady,sr,62,24.8,alpha,lower,1.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-1.0 +steady,sr,63,25.2,alpha,lower,1.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-1.0 +steady,sr,64,25.6,alpha,lower,1.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-1.0 +steady,sr,65,26.0,alpha,lower,1.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-1.0 +steady,sr,66,26.4,alpha,lower,1.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-1.0 +steady,sr,67,26.8,alpha,lower,1.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-1.0 +steady,sr,68,27.2,alpha,lower,1.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-1.0 +steady,sr,69,27.6,alpha,lower,1.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-1.0 +steady,sr,70,28.0,alpha,lower,1.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-1.0 +steady,sr,71,28.4,alpha,lower,1.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-1.0 +steady,sr,72,28.8,alpha,lower,1.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-1.0 +steady,sr,73,29.2,alpha,lower,1.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-1.0 +steady,sr,74,29.6,alpha,lower,1.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-1.0 +steady,sr,75,30.0,alpha,lower,1.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-1.0 +steady,sr,76,30.4,alpha,lower,1.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-1.0 +steady,sr,77,30.8,alpha,lower,1.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-1.0 +steady,sr,78,31.2,alpha,lower,1.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-1.0 +steady,sr,79,31.6,alpha,lower,1.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-1.0 +steady,sr,80,32.0,alpha,lower,1.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-1.0 +steady,sr,81,32.4,alpha,lower,1.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-1.0 +steady,sr,82,32.8,alpha,lower,1.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-1.0 +steady,sr,83,33.2,alpha,lower,1.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-1.0 +steady,sr,84,33.6,alpha,lower,1.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-1.0 +steady,sr,85,34.0,alpha,lower,1.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-1.0 +steady,sr,86,34.4,alpha,lower,1.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-1.0 +steady,sr,87,34.8,alpha,lower,1.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-1.0 +steady,sr,88,35.2,alpha,lower,1.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-1.0 +steady,sr,89,35.6,alpha,lower,1.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-1.0 +steady,sr,90,36.0,alpha,lower,1.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-1.0 +steady,sr,91,36.4,alpha,lower,1.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-1.0 +steady,sr,92,36.8,alpha,lower,1.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-1.0 +steady,sr,93,37.2,alpha,lower,1.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-1.0 +steady,sr,94,37.6,alpha,lower,1.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-1.0 +steady,sr,95,38.0,alpha,lower,1.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-1.0 +steady,sr,96,38.4,alpha,lower,1.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-1.0 +steady,sr,97,38.8,alpha,lower,1.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-1.0 +steady,sr,98,39.2,alpha,lower,1.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-1.0 +steady,sr,99,39.6,alpha,lower,1.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-1.0 +steady,sr,100,40.0,alpha,lower,1.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-1.0 +steady,sr,101,40.4,alpha,lower,1.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-1.0 +steady,sr,102,40.8,alpha,lower,1.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-1.0 +steady,sr,103,41.2,alpha,lower,1.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-1.0 +steady,sr,104,41.6,alpha,lower,1.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-1.0 +steady,sr,105,42.0,alpha,lower,1.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-1.0 +steady,sr,106,42.4,alpha,lower,1.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-1.0 +steady,sr,107,42.8,alpha,lower,1.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-1.0 +steady,sr,108,43.2,alpha,lower,1.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-1.0 +steady,sr,109,43.6,alpha,lower,1.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-1.0 +steady,sr,110,44.0,alpha,lower,1.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-1.0 +steady,sr,111,44.4,alpha,lower,1.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-1.0 +steady,sr,112,44.8,alpha,lower,1.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-1.0 +steady,sr,113,45.2,alpha,lower,1.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-1.0 +steady,sr,114,45.6,alpha,lower,1.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-1.0 +steady,sr,115,46.0,alpha,lower,1.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-1.0 +steady,sr,116,46.4,alpha,lower,1.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-1.0 +steady,sr,117,46.8,alpha,lower,1.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-1.0 +steady,sr,118,47.2,alpha,lower,1.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-1.0 +steady,sr,119,47.6,alpha,lower,1.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-1.0 +steady,sr,120,48.0,alpha,lower,1.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-1.0 +steady,sr,121,48.4,alpha,lower,1.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-1.0 +steady,sr,122,48.8,alpha,lower,1.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-1.0 +steady,sr,123,49.2,alpha,lower,1.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-1.0 +steady,sr,124,49.6,alpha,lower,1.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-1.0 +steady,sr,125,50.0,alpha,lower,1.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-1.0 +steady,sr,126,50.4,alpha,lower,1.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-1.0 +steady,sr,127,50.8,alpha,lower,1.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-1.0 +steady,sr,128,51.2,alpha,lower,1.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-1.0 +steady,sr,129,51.6,alpha,lower,1.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-1.0 +steady,sr,130,52.0,alpha,lower,1.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-1.0 +steady,sr,131,52.4,alpha,lower,1.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-1.0 +steady,sr,132,52.8,alpha,lower,1.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-1.0 +steady,sr,133,53.2,alpha,lower,1.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-1.0 +steady,sr,134,53.6,alpha,lower,1.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-1.0 +steady,sr,135,54.0,alpha,lower,1.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-1.0 +steady,sr,136,54.4,alpha,lower,1.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-1.0 +steady,sr,137,54.8,alpha,lower,1.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-1.0 +steady,sr,138,55.2,alpha,lower,1.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-1.0 +steady,sr,139,55.6,alpha,lower,1.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-1.0 +steady,sr,140,56.0,alpha,lower,1.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-1.0 +steady,sr,141,56.4,alpha,lower,1.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-1.0 +steady,sr,142,56.8,alpha,lower,1.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-1.0 +steady,sr,143,57.2,alpha,lower,1.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-1.0 +steady,sr,144,57.6,alpha,lower,1.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-1.0 +steady,sr,145,58.0,alpha,lower,1.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-1.0 +steady,sr,146,58.4,alpha,lower,1.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-1.0 +steady,sr,147,58.8,alpha,lower,1.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-1.0 +steady,sr,148,59.2,alpha,lower,1.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-1.0 +steady,sr,149,59.6,alpha,lower,1.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-1.0 +steady,sr,150,60.0,alpha,lower,1.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-1.0 +steady,sr,151,60.4,alpha,lower,1.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-1.0 +steady,sr,152,60.8,alpha,lower,1.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-1.0 +steady,sr,153,61.2,alpha,lower,1.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-1.0 +steady,sr,154,61.6,alpha,lower,1.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-1.0 +steady,sr,155,62.0,alpha,lower,1.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-1.0 +steady,sr,156,62.4,alpha,lower,1.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-1.0 +steady,sr,157,62.8,alpha,lower,1.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-1.0 +steady,sr,158,63.2,alpha,lower,1.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-1.0 +steady,sr,159,63.6,alpha,lower,1.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-1.0 +steady,sr,160,64.0,alpha,lower,1.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-1.0 +steady,sr,161,64.4,alpha,lower,1.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-1.0 +steady,sr,162,64.8,alpha,lower,1.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-1.0 +steady,sr,163,65.2,alpha,lower,1.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-1.0 +steady,sr,164,65.6,alpha,lower,1.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-1.0 +steady,sr,165,66.0,alpha,lower,1.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-1.0 +steady,sr,166,66.4,alpha,lower,1.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-1.0 +steady,sr,167,66.8,alpha,lower,1.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-1.0 +steady,sr,168,67.2,alpha,lower,1.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-1.0 +steady,sr,169,67.6,alpha,lower,1.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-1.0 +steady,sr,170,68.0,alpha,lower,1.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-1.0 +steady,sr,171,68.4,alpha,lower,1.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-1.0 +steady,sr,172,68.8,alpha,lower,1.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-1.0 +steady,sr,173,69.2,alpha,lower,1.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-1.0 +steady,sr,174,69.6,alpha,lower,1.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-1.0 +steady,sr,175,70.0,alpha,lower,1.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-1.0 +steady,sr,176,70.4,alpha,lower,1.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-1.0 +steady,sr,177,70.8,alpha,lower,1.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-1.0 +steady,sr,178,71.2,alpha,lower,1.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-1.0 +steady,sr,179,71.6,alpha,lower,1.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-1.0 +steady,sr,180,72.0,alpha,lower,1.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-1.0 +steady,sr,181,72.4,alpha,lower,1.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-1.0 +steady,sr,182,72.8,alpha,lower,1.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-1.0 +steady,sr,183,73.2,alpha,lower,1.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-1.0 +steady,sr,184,73.6,alpha,lower,1.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-1.0 +steady,sr,185,74.0,alpha,lower,1.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-1.0 +steady,sr,186,74.4,alpha,lower,1.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-1.0 +steady,sr,187,74.8,alpha,lower,1.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-1.0 +steady,sr,188,75.2,alpha,lower,1.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-1.0 +steady,sr,189,75.6,alpha,lower,1.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-1.0 +steady,sr,190,76.0,alpha,lower,1.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-1.0 +steady,sr,191,76.4,alpha,lower,1.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-1.0 +steady,sr,192,76.8,alpha,lower,1.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-1.0 +steady,sr,193,77.2,alpha,lower,1.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-1.0 +steady,sr,194,77.6,alpha,lower,1.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-1.0 +steady,sr,195,78.0,alpha,lower,1.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-1.0 +steady,sr,196,78.4,alpha,lower,1.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-1.0 +steady,sr,197,78.8,alpha,lower,1.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-1.0 +steady,sr,198,79.2,alpha,lower,1.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-1.0 +steady,sr,199,79.6,alpha,lower,1.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.01 +steady,sr,0,0.0,omega,lower,0.01 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.01 +steady,sr,1,0.4,omega,lower,0.01 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.01 +steady,sr,2,0.8,omega,lower,0.01 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.01 +steady,sr,3,1.2,omega,lower,0.01 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.01 +steady,sr,4,1.6,omega,lower,0.01 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.01 +steady,sr,5,2.0,omega,lower,0.01 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.01 +steady,sr,6,2.4,omega,lower,0.01 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.01 +steady,sr,7,2.8,omega,lower,0.01 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.01 +steady,sr,8,3.2,omega,lower,0.01 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.01 +steady,sr,9,3.6,omega,lower,0.01 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.01 +steady,sr,10,4.0,omega,lower,0.01 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.01 +steady,sr,11,4.4,omega,lower,0.01 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.01 +steady,sr,12,4.8,omega,lower,0.01 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.01 +steady,sr,13,5.2,omega,lower,0.01 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.01 +steady,sr,14,5.6,omega,lower,0.01 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.01 +steady,sr,15,6.0,omega,lower,0.01 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.01 +steady,sr,16,6.4,omega,lower,0.01 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.01 +steady,sr,17,6.8,omega,lower,0.01 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.01 +steady,sr,18,7.2,omega,lower,0.01 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.01 +steady,sr,19,7.6,omega,lower,0.01 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.01 +steady,sr,20,8.0,omega,lower,0.01 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.01 +steady,sr,21,8.4,omega,lower,0.01 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.01 +steady,sr,22,8.8,omega,lower,0.01 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.01 +steady,sr,23,9.2,omega,lower,0.01 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.01 +steady,sr,24,9.6,omega,lower,0.01 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.01 +steady,sr,25,10.0,omega,lower,0.01 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.01 +steady,sr,26,10.4,omega,lower,0.01 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.01 +steady,sr,27,10.8,omega,lower,0.01 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.01 +steady,sr,28,11.2,omega,lower,0.01 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.01 +steady,sr,29,11.6,omega,lower,0.01 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.01 +steady,sr,30,12.0,omega,lower,0.01 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.01 +steady,sr,31,12.4,omega,lower,0.01 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.01 +steady,sr,32,12.8,omega,lower,0.01 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.01 +steady,sr,33,13.2,omega,lower,0.01 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.01 +steady,sr,34,13.6,omega,lower,0.01 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.01 +steady,sr,35,14.0,omega,lower,0.01 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.01 +steady,sr,36,14.4,omega,lower,0.01 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.01 +steady,sr,37,14.8,omega,lower,0.01 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.01 +steady,sr,38,15.2,omega,lower,0.01 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.01 +steady,sr,39,15.6,omega,lower,0.01 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.01 +steady,sr,40,16.0,omega,lower,0.01 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.01 +steady,sr,41,16.4,omega,lower,0.01 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.01 +steady,sr,42,16.8,omega,lower,0.01 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.01 +steady,sr,43,17.2,omega,lower,0.01 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.01 +steady,sr,44,17.6,omega,lower,0.01 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.01 +steady,sr,45,18.0,omega,lower,0.01 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.01 +steady,sr,46,18.4,omega,lower,0.01 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.01 +steady,sr,47,18.8,omega,lower,0.01 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.01 +steady,sr,48,19.2,omega,lower,0.01 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.01 +steady,sr,49,19.6,omega,lower,0.01 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.01 +steady,sr,50,20.0,omega,lower,0.01 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.01 +steady,sr,51,20.4,omega,lower,0.01 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.01 +steady,sr,52,20.8,omega,lower,0.01 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.01 +steady,sr,53,21.2,omega,lower,0.01 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.01 +steady,sr,54,21.6,omega,lower,0.01 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.01 +steady,sr,55,22.0,omega,lower,0.01 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.01 +steady,sr,56,22.4,omega,lower,0.01 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.01 +steady,sr,57,22.8,omega,lower,0.01 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.01 +steady,sr,58,23.2,omega,lower,0.01 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.01 +steady,sr,59,23.6,omega,lower,0.01 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.01 +steady,sr,60,24.0,omega,lower,0.01 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.01 +steady,sr,61,24.4,omega,lower,0.01 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.01 +steady,sr,62,24.8,omega,lower,0.01 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.01 +steady,sr,63,25.2,omega,lower,0.01 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.01 +steady,sr,64,25.6,omega,lower,0.01 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.01 +steady,sr,65,26.0,omega,lower,0.01 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.01 +steady,sr,66,26.4,omega,lower,0.01 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.01 +steady,sr,67,26.8,omega,lower,0.01 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.01 +steady,sr,68,27.2,omega,lower,0.01 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.01 +steady,sr,69,27.6,omega,lower,0.01 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.01 +steady,sr,70,28.0,omega,lower,0.01 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.01 +steady,sr,71,28.4,omega,lower,0.01 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.01 +steady,sr,72,28.8,omega,lower,0.01 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.01 +steady,sr,73,29.2,omega,lower,0.01 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.01 +steady,sr,74,29.6,omega,lower,0.01 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.01 +steady,sr,75,30.0,omega,lower,0.01 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.01 +steady,sr,76,30.4,omega,lower,0.01 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.01 +steady,sr,77,30.8,omega,lower,0.01 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.01 +steady,sr,78,31.2,omega,lower,0.01 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.01 +steady,sr,79,31.6,omega,lower,0.01 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.01 +steady,sr,80,32.0,omega,lower,0.01 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.01 +steady,sr,81,32.4,omega,lower,0.01 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.01 +steady,sr,82,32.8,omega,lower,0.01 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.01 +steady,sr,83,33.2,omega,lower,0.01 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.01 +steady,sr,84,33.6,omega,lower,0.01 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.01 +steady,sr,85,34.0,omega,lower,0.01 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.01 +steady,sr,86,34.4,omega,lower,0.01 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.01 +steady,sr,87,34.8,omega,lower,0.01 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.01 +steady,sr,88,35.2,omega,lower,0.01 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.01 +steady,sr,89,35.6,omega,lower,0.01 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.01 +steady,sr,90,36.0,omega,lower,0.01 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.01 +steady,sr,91,36.4,omega,lower,0.01 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.01 +steady,sr,92,36.8,omega,lower,0.01 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.01 +steady,sr,93,37.2,omega,lower,0.01 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.01 +steady,sr,94,37.6,omega,lower,0.01 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.01 +steady,sr,95,38.0,omega,lower,0.01 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.01 +steady,sr,96,38.4,omega,lower,0.01 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.01 +steady,sr,97,38.8,omega,lower,0.01 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.01 +steady,sr,98,39.2,omega,lower,0.01 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.01 +steady,sr,99,39.6,omega,lower,0.01 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.01 +steady,sr,100,40.0,omega,lower,0.01 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.01 +steady,sr,101,40.4,omega,lower,0.01 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.01 +steady,sr,102,40.8,omega,lower,0.01 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.01 +steady,sr,103,41.2,omega,lower,0.01 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.01 +steady,sr,104,41.6,omega,lower,0.01 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.01 +steady,sr,105,42.0,omega,lower,0.01 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.01 +steady,sr,106,42.4,omega,lower,0.01 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.01 +steady,sr,107,42.8,omega,lower,0.01 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.01 +steady,sr,108,43.2,omega,lower,0.01 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.01 +steady,sr,109,43.6,omega,lower,0.01 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.01 +steady,sr,110,44.0,omega,lower,0.01 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.01 +steady,sr,111,44.4,omega,lower,0.01 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.01 +steady,sr,112,44.8,omega,lower,0.01 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.01 +steady,sr,113,45.2,omega,lower,0.01 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.01 +steady,sr,114,45.6,omega,lower,0.01 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.01 +steady,sr,115,46.0,omega,lower,0.01 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.01 +steady,sr,116,46.4,omega,lower,0.01 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.01 +steady,sr,117,46.8,omega,lower,0.01 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.01 +steady,sr,118,47.2,omega,lower,0.01 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.01 +steady,sr,119,47.6,omega,lower,0.01 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.01 +steady,sr,120,48.0,omega,lower,0.01 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.01 +steady,sr,121,48.4,omega,lower,0.01 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.01 +steady,sr,122,48.8,omega,lower,0.01 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.01 +steady,sr,123,49.2,omega,lower,0.01 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.01 +steady,sr,124,49.6,omega,lower,0.01 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.01 +steady,sr,125,50.0,omega,lower,0.01 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.01 +steady,sr,126,50.4,omega,lower,0.01 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.01 +steady,sr,127,50.8,omega,lower,0.01 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.01 +steady,sr,128,51.2,omega,lower,0.01 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.01 +steady,sr,129,51.6,omega,lower,0.01 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.01 +steady,sr,130,52.0,omega,lower,0.01 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.01 +steady,sr,131,52.4,omega,lower,0.01 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.01 +steady,sr,132,52.8,omega,lower,0.01 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.01 +steady,sr,133,53.2,omega,lower,0.01 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.01 +steady,sr,134,53.6,omega,lower,0.01 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.01 +steady,sr,135,54.0,omega,lower,0.01 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.01 +steady,sr,136,54.4,omega,lower,0.01 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.01 +steady,sr,137,54.8,omega,lower,0.01 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.01 +steady,sr,138,55.2,omega,lower,0.01 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.01 +steady,sr,139,55.6,omega,lower,0.01 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.01 +steady,sr,140,56.0,omega,lower,0.01 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.01 +steady,sr,141,56.4,omega,lower,0.01 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.01 +steady,sr,142,56.8,omega,lower,0.01 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.01 +steady,sr,143,57.2,omega,lower,0.01 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.01 +steady,sr,144,57.6,omega,lower,0.01 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.01 +steady,sr,145,58.0,omega,lower,0.01 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.01 +steady,sr,146,58.4,omega,lower,0.01 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.01 +steady,sr,147,58.8,omega,lower,0.01 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.01 +steady,sr,148,59.2,omega,lower,0.01 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.01 +steady,sr,149,59.6,omega,lower,0.01 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.01 +steady,sr,150,60.0,omega,lower,0.01 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.01 +steady,sr,151,60.4,omega,lower,0.01 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.01 +steady,sr,152,60.8,omega,lower,0.01 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.01 +steady,sr,153,61.2,omega,lower,0.01 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.01 +steady,sr,154,61.6,omega,lower,0.01 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.01 +steady,sr,155,62.0,omega,lower,0.01 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.01 +steady,sr,156,62.4,omega,lower,0.01 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.01 +steady,sr,157,62.8,omega,lower,0.01 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.01 +steady,sr,158,63.2,omega,lower,0.01 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.01 +steady,sr,159,63.6,omega,lower,0.01 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.01 +steady,sr,160,64.0,omega,lower,0.01 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.01 +steady,sr,161,64.4,omega,lower,0.01 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.01 +steady,sr,162,64.8,omega,lower,0.01 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.01 +steady,sr,163,65.2,omega,lower,0.01 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.01 +steady,sr,164,65.6,omega,lower,0.01 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.01 +steady,sr,165,66.0,omega,lower,0.01 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.01 +steady,sr,166,66.4,omega,lower,0.01 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.01 +steady,sr,167,66.8,omega,lower,0.01 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.01 +steady,sr,168,67.2,omega,lower,0.01 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.01 +steady,sr,169,67.6,omega,lower,0.01 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.01 +steady,sr,170,68.0,omega,lower,0.01 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.01 +steady,sr,171,68.4,omega,lower,0.01 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.01 +steady,sr,172,68.8,omega,lower,0.01 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.01 +steady,sr,173,69.2,omega,lower,0.01 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.01 +steady,sr,174,69.6,omega,lower,0.01 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.01 +steady,sr,175,70.0,omega,lower,0.01 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.01 +steady,sr,176,70.4,omega,lower,0.01 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.01 +steady,sr,177,70.8,omega,lower,0.01 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.01 +steady,sr,178,71.2,omega,lower,0.01 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.01 +steady,sr,179,71.6,omega,lower,0.01 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.01 +steady,sr,180,72.0,omega,lower,0.01 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.01 +steady,sr,181,72.4,omega,lower,0.01 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.01 +steady,sr,182,72.8,omega,lower,0.01 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.01 +steady,sr,183,73.2,omega,lower,0.01 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.01 +steady,sr,184,73.6,omega,lower,0.01 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.01 +steady,sr,185,74.0,omega,lower,0.01 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.01 +steady,sr,186,74.4,omega,lower,0.01 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.01 +steady,sr,187,74.8,omega,lower,0.01 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.01 +steady,sr,188,75.2,omega,lower,0.01 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.01 +steady,sr,189,75.6,omega,lower,0.01 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.01 +steady,sr,190,76.0,omega,lower,0.01 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.01 +steady,sr,191,76.4,omega,lower,0.01 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.01 +steady,sr,192,76.8,omega,lower,0.01 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.01 +steady,sr,193,77.2,omega,lower,0.01 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.01 +steady,sr,194,77.6,omega,lower,0.01 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.01 +steady,sr,195,78.0,omega,lower,0.01 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.01 +steady,sr,196,78.4,omega,lower,0.01 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.01 +steady,sr,197,78.8,omega,lower,0.01 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.01 +steady,sr,198,79.2,omega,lower,0.01 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.01 +steady,sr,199,79.6,omega,lower,0.01 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_manifest.json new file mode 100644 index 0000000..7c0e327 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a1-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_wide.csv new file mode 100644 index 0000000..3b90163 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.3729215860366821,-0.2649478316307068,0.7589572072029114,-0.019610155373811722,0.7760208249092102,0.043397050350904465,0.0017840754007920623,8.192734094336629e-05,0.0013445287477225065,0.003192530944943428,0.001338417874649167,-0.0028141504153609276,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,1,0.4,1.3924423456192017,-0.12838470935821533,0.705436646938324,0.3259393274784088,0.8273398876190186,0.12073257565498352,0.0017858962528407574,6.211856089066714e-05,0.0013214205391705036,0.003137518186122179,0.0013709621271118522,-0.00290261534973979,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,2,0.8,1.2818702459335327,0.0941196158528328,0.7330894470214844,0.5156344771385193,0.8817866444587708,0.1899842470884323,0.0017836668994277716,3.323866621940397e-05,0.0012914090184494853,0.0030679490882903337,0.0013901033671572804,-0.0030084627214819193,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,3,1.2,1.0830072164535522,0.2841668725013733,0.8107929825782776,0.5338513851165771,0.9407636523246765,0.24454425275325775,0.001779544516466558,1.5793292504895362e-06,0.0012604260118678212,0.0029859584756195545,0.0013964795507490635,-0.00310740084387362,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,4,1.6,0.923523485660553,0.3374597430229187,0.8706572651863098,0.537545382976532,1.0034379959106445,0.2846303880214691,0.00177763809915632,-3.131680568912998e-05,0.0012393821962177753,0.0028959820047020912,0.0013958956114947796,-0.0031856121495366096,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,5,2.0,0.833217442035675,0.2977302074432373,0.9061592817306519,0.5585746765136719,1.0699249505996704,0.31285712122917175,0.0017817307962104678,-5.925218283664435e-05,0.0012401123531162739,0.0028153734747320414,0.0013978364877402782,-0.0032350625842809677,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,6,2.4,0.7747238278388977,0.2221849411725998,0.91846764087677,0.5664740204811096,1.1423066854476929,0.3300020694732666,0.0017884732224047184,-8.092950884019956e-05,0.0012608051765710115,0.002760019851848483,0.0013989937724545598,-0.0032600071281194687,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,7,2.8,0.7397915720939636,0.12607140839099884,0.8953841328620911,0.4973686635494232,1.2228596210479736,0.33357638120651245,0.001792854513041675,-9.218377090292051e-05,0.0012926582712680101,0.002744105411693454,0.0013941192300990224,-0.0032604828011244535,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,8,3.2,0.7443376183509827,0.026953183114528656,0.8306236267089844,0.2887854278087616,1.3102902173995972,0.31455308198928833,0.0017895528580993414,-9.168156248051673e-05,0.0013221697881817818,0.0027707237750291824,0.0013744643656536937,-0.0032381301280111074,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,9,3.6,0.7850232124328613,-0.05851336941123009,0.7486850619316101,-0.044873785227537155,1.3847302198410034,0.24770690500736237,0.0017830014694482088,-7.976973574841395e-05,0.0013471170095726848,0.002834002021700144,0.0013431929983198643,-0.003193737007677555,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,10,4.0,0.8367524147033691,-0.13489431142807007,0.706656813621521,-0.37728747725486755,1.383265733718872,0.09141379594802856,0.0017786022508516908,-5.6969598517753184e-05,0.0013681718846783042,0.002924000844359398,0.0013088518753647804,-0.0031291889026761055,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,11,4.4,0.8917306661605835,-0.2017705887556076,0.7483673095703125,-0.5273211002349854,1.246475100517273,-0.13867726922035217,0.0017798732733353972,-2.7746185878640972e-05,0.0013887074310332537,0.003025644924491644,0.0012807983439415693,-0.0030516088008880615,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,12,4.8,0.9518215656280518,-0.25335684418678284,0.8257546424865723,-0.533204197883606,1.0467647314071655,-0.3061131238937378,0.0017843754030764103,5.688018063665368e-06,0.0014048320008441806,0.0031244666315615177,0.0012620879570022225,-0.0029663152527064085,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,13,5.2,1.0159423351287842,-0.2910003364086151,0.8808817863464355,-0.5410066843032837,0.9037713408470154,-0.3350955843925476,0.001786947948858142,3.7403031456051394e-05,0.0014113268116489053,0.003203665604814887,0.0012512404937297106,-0.002882560482248664,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,14,5.6,1.0839585065841675,-0.31713590025901794,0.9128715991973877,-0.5629277229309082,0.8229848742485046,-0.28605303168296814,0.0017862324602901936,6.536368164233863e-05,0.0014063843991607428,0.0032529172021895647,0.0012499644653871655,-0.0028077682945877314,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,15,6.0,1.1575517654418945,-0.3320041596889496,0.9195051789283752,-0.562661349773407,0.767508327960968,-0.20608341693878174,0.0017849247669801116,8.477317169308662e-05,0.001395784318447113,0.0032698563300073147,0.0012620160123333335,-0.0027566987555474043,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,16,6.4,1.239159107208252,-0.3323378264904022,0.8878427743911743,-0.47097647190093994,0.737281084060669,-0.10739964246749878,0.0017863723915070295,9.414879605174065e-05,0.001384221133776009,0.003259588498622179,0.0012903345050290227,-0.0027423962019383907,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,17,6.8,1.3265624046325684,-0.3069101572036743,0.8165841102600098,-0.23431342840194702,0.7490463852882385,-0.009601843543350697,0.0017889946466311812,9.122428309638053e-05,0.0013698481488972902,0.003229637397453189,0.0013276833342388272,-0.002774573862552643,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,18,7.2,1.3933972120285034,-0.2260129600763321,0.7376333475112915,0.11342643946409225,0.7939178943634033,0.07383948564529419,0.0017899414524435997,7.67986275604926e-05,0.0013483822112903,0.003184450324624777,0.0013632363406941295,-0.0028483779169619083,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,19,7.6,1.3682101964950562,-0.04923166334629059,0.7109912633895874,0.4237784445285797,0.8471183776855469,0.149076446890831,0.001785318716429174,5.239162055659108e-05,0.0013148796278983355,0.003122390480712056,0.0013853413984179497,-0.002948866691440344,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,20,8.0,1.2080919742584229,0.18227970600128174,0.7660223245620728,0.5338925719261169,0.9034515619277954,0.21324561536312103,0.0017799055203795433,2.1315347112249583e-05,0.001278398442082107,0.003042902098968625,0.0013954691821709275,-0.0030539578292518854,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,21,8.4,1.0125727653503418,0.3225405216217041,0.8403615355491638,0.5330393314361572,0.9640190005302429,0.2619057595729828,0.0017782642971724272,-1.1803416782640852e-05,0.001250681933015585,0.002952001290395856,0.0014001148520037532,-0.003145673079416156,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,22,8.8,0.8850425481796265,0.3295709490776062,0.8897686004638672,0.5449371933937073,1.0283398628234863,0.29711398482322693,0.0017829625867307186,-4.386791624710895e-05,0.001243423786945641,0.002862299792468548,0.0014061122201383114,-0.0032151686027646065,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,23,9.2,0.8115314245223999,0.27291491627693176,0.9175346493721008,0.5664979815483093,1.0973024368286133,0.32110676169395447,0.0017900934908539057,-6.999736069701612e-05,0.0012552890693768859,0.0027909106574952602,0.001411646488122642,-0.003257294185459614,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,24,9.6,0.7599638104438782,0.18865689635276794,0.9185028672218323,0.5552569031715393,1.1729243993759155,0.333596795797348,0.001793560804799199,-8.840576629154384e-05,0.001278765150345862,0.0027503566816449165,0.00140737637411803,-0.0032749187666922808,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,25,10.0,0.7367428541183472,0.0879373848438263,0.8789384961128235,0.4381648898124695,1.2568788528442383,0.33025044202804565,0.0017908290028572083,-9.477392450207844e-05,0.0013053048169240355,0.0027499287389218807,0.0013909537810832262,-0.0032636707182973623,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,26,10.4,0.7561530470848083,-0.007840768434107304,0.802193820476532,0.17351779341697693,1.3437217473983765,0.29712986946105957,0.001785454573109746,-8.980344864539802e-05,0.001332220621407032,0.0027895949315279722,0.0013640811666846275,-0.003229050897061825,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,27,10.8,0.8035807013511658,-0.08939416706562042,0.7277376651763916,-0.18318113684654236,1.398806095123291,0.19960887730121613,0.0017825360409915447,-7.279159763129428e-05,0.001360301859676838,0.002865643473342061,0.001334170694462955,-0.0031740230042487383,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,28,11.2,0.8571019172668457,-0.16306361556053162,0.717247486114502,-0.46278801560401917,1.3458075523376465,0.0031503119971603155,0.0017833370948210359,-4.66179772047326e-05,0.0013864877400919795,0.0029660407453775406,0.0013058020267635584,-0.0031047374941408634,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,29,11.6,0.9147605895996094,-0.2242249697446823,0.7828730940818787,-0.5364944934844971,1.166953682899475,-0.2224397510290146,0.0017860163934528828,-1.4796642062719911e-05,0.00140631094109267,0.0030731710139662027,0.0012807277962565422,-0.003024623030796647,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,30,12.0,0.9768719673156738,-0.2699420750141144,0.8537142276763916,-0.5338093638420105,0.9817973971366882,-0.33319106698036194,0.0017857393249869347,1.9139813957735896e-05,0.0014133057557046413,0.00316780898720026,0.0012589263496920466,-0.002937610726803541,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,31,12.4,1.0423269271850586,-0.3028087913990021,0.8986650705337524,-0.5495077967643738,0.8693207502365112,-0.32158413529396057,0.0017846166156232357,4.9875561671797186e-05,0.0014110943302512169,0.0032339554745703936,0.0012469924986362457,-0.002852099947631359,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,32,12.8,1.1120015382766724,-0.32459717988967896,0.9216455221176147,-0.5692028999328613,0.800971508026123,-0.25834640860557556,0.001784898922778666,7.549559813924134e-05,0.0014040309470146894,0.0032677697017788887,0.0012518204748630524,-0.002780874725431204,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,33,13.2,1.1886186599731445,-0.3344646692276001,0.9151508212089539,-0.5433239340782166,0.7526090741157532,-0.16977711021900177,0.0017886710120365024,9.089033846976236e-05,0.0013987286947667599,0.0032729313243180513,0.0012772800400853157,-0.002741907024756074,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,34,13.6,1.2740026712417603,-0.3268623650074005,0.8669463396072388,-0.3979753851890564,0.7367870211601257,-0.06796029955148697,0.0017925851279869676,9.58237360464409e-05,0.0013894319999963045,0.0032566767185926437,0.0013135564513504505,-0.002749201375991106,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,35,14.0,1.3594412803649902,-0.28455841541290283,0.7867981195449829,-0.10677177459001541,0.7641408443450928,0.025163758546113968,0.0017925597494468093,8.75147306942381e-05,0.001370017882436514,0.00322166015394032,0.0013506443938240409,-0.0028013961855322123,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,36,14.4,1.4002128839492798,-0.16831786930561066,0.7207292914390564,0.25192591547966003,0.8144767880439758,0.10501634329557419,0.0017868493450805545,6.879771535750479e-05,0.0013369270600378513,0.003168286057189107,0.0013747584307566285,-0.0028895821887999773,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,37,14.8,1.3178150653839111,0.04545484483242035,0.7277759313583374,0.4932659864425659,0.8686931133270264,0.1768733412027359,0.0017806455725803971,4.0652084862813354e-05,0.0012982115149497986,0.003095045918598771,0.0013896455056965351,-0.0029932742472738028,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,38,15.2,1.1249780654907227,0.2576524615287781,0.7998706698417664,0.5363368391990662,0.9268447160720825,0.23483820259571075,0.0017792298458516598,7.906741302576847e-06,0.0012667063856497407,0.003007325576618314,0.0014003872638568282,-0.0030943804886192083,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,39,15.6,0.9528862833976746,0.338491827249527,0.8650292158126831,0.5353965163230896,0.9893156290054321,0.2776957154273987,0.0017836318584159017,-2.5673205527709797e-05,0.0012512849643826485,0.00291548203676939,0.0014104449655860662,-0.0031806144397705793,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,40,16.0,0.8536993265151978,0.311662495136261,0.9055358171463013,0.5542051196098328,1.055719017982483,0.30820557475090027,0.001790244597941637,-5.618080103886314e-05,0.001253192313015461,0.0028326723258942366,0.0014175798278301954,-0.0032429047860205173,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,41,16.4,0.7904577851295471,0.24274547398090363,0.9242328405380249,0.5702745318412781,1.127231240272522,0.32777389883995056,0.0017925921129062772,-7.940899376990274e-05,0.0012660345528274775,0.002772436710074544,0.0014150816714391112,-0.003275862894952297,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,42,16.8,0.7469314336776733,0.1500394344329834,0.9103352427482605,0.5264062285423279,1.2060054540634155,0.3347781002521515,0.0017907236469909549,-9.355063230032101e-05,0.001287266262806952,0.002744596917182207,0.0014018446672707796,-0.0032788976095616817,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,43,17.2,0.7391073703765869,0.04798629879951477,0.8533337116241455,0.3507671356201172,1.2925429344177246,0.3221208453178406,0.0017872910248115659,-9.493655670667067e-05,0.0013148157158866525,0.0027588028460741043,0.0013806564966216683,-0.003254601266235113,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,44,17.6,0.7727516889572144,-0.042197179049253464,0.7707105875015259,0.03529658913612366,1.3737919330596924,0.26858651638031006,0.0017862472450360656,-8.512230851920322e-05,0.001347944838926196,0.0028144263196736574,0.001356732565909624,-0.003210825379937887,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,45,18.0,0.8245242238044739,-0.12047208845615387,0.7153775095939636,-0.3169293701648712,1.3953038454055786,0.13158585131168365,0.0017868973081931472,-6.34820680716075e-05,0.0013794733677059412,0.0029060065280646086,0.0013301338767632842,-0.0031512314453721046,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,46,18.4,0.8799140453338623,-0.1900244951248169,0.7404415607452393,-0.5148227214813232,1.2837891578674316,-0.09506425261497498,0.0017871842719614506,-3.442254455876537e-05,0.0014023631811141968,0.0030147654470056295,0.0013010479742661119,-0.0030787838622927666,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,47,18.8,0.9397002458572388,-0.24477997422218323,0.8166324496269226,-0.5353056192398071,1.0848027467727661,-0.2868887484073639,0.001784633845090866,-7.977760674293677e-07,0.0014114612713456154,0.0031194856856018305,0.00127057742793113,-0.0029934949707239866,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,48,19.2,1.0030385255813599,-0.28488489985466003,0.8763237595558167,-0.5380643606185913,0.9284490942955017,-0.33902525901794434,0.001782751176506281,3.26219669659622e-05,0.001411615638062358,0.0032015936449170113,0.0012500360608100891,-0.0029013415332883596,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,49,19.6,1.069807529449463,-0.31313079595565796,0.9120224714279175,-0.5590284466743469,0.8396742939949036,-0.2998710870742798,0.0017843995010480285,6.1740618548356e-05,0.0014096611412242055,0.0032531367614865303,0.0012460704892873764,-0.0028179108630865812,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,50,20.0,1.142147421836853,-0.33035698533058167,0.9249570965766907,-0.5688180327415466,0.7797319293022156,-0.22560743987560272,0.0017897156067192554,8.381072257179767e-05,0.0014085274888202548,0.003275974653661251,0.0012648048577830195,-0.0027586626820266247,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,51,20.4,1.2227214574813843,-0.3342679738998413,0.9027867317199707,-0.5033130049705505,0.7417166233062744,-0.12931150197982788,0.0017946644220501184,9.499692532699555e-05,0.001403725240379572,0.003273820038884878,0.001297715469263494,-0.0027404639404267073,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,52,20.8,1.310773491859436,-0.31578612327575684,0.8384177684783936,-0.2967059910297394,0.7433627843856812,-0.02816476859152317,0.0017939008539542556,9.458856948185712e-05,0.0013867185916751623,0.0032506403513252735,0.0013320378493517637,-0.0027679884806275368,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,53,21.2,1.3865302801132202,-0.2490859031677246,0.756358802318573,0.03908972814679146,0.7833135724067688,0.05903465300798416,0.0017882041865959764,8.146461186697707e-05,0.001356470282189548,0.0032058421056717634,0.0013594499323517084,-0.0028363196179270744,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,54,21.6,1.384742259979248,-0.09020969271659851,0.7141807079315186,0.3758034110069275,0.8359118700027466,0.1358807533979416,0.001782058272510767,5.8453577366890386e-05,0.0013189360033720732,0.003141265595331788,0.001380163710564375,-0.0029303294140845537,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,55,22.0,1.2448734045028687,0.14349454641342163,0.7550817131996155,0.5281224250793457,0.8915959000587463,0.20277218520641327,0.0017808820120990276,2.7539426810108125e-05,0.0012859931448474526,0.0030599823221564293,0.0013971670996397734,-0.0030357330106198788,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,56,22.4,1.0455657243728638,0.3095276653766632,0.8311883807182312,0.5340833067893982,0.9520317316055298,0.25423794984817505,0.001784455613233149,-6.13487463851925e-06,0.0012640462955459952,0.0029706829227507114,0.0014122254215180874,-0.0031337719410657883,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,57,22.8,0.9060384631156921,0.33595240116119385,0.885611891746521,0.5415303111076355,1.0163899660110474,0.2916892170906067,0.0017892230534926057,-3.9237565943039954e-05,0.0012551152613013983,0.002882304834201932,0.0014201116282492876,-0.003214932279661298,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,58,23.2,0.8266726136207581,0.2870040237903595,0.9175929427146912,0.5636551380157471,1.0847113132476807,0.3176528215408325,0.0017905766144394875,-6.719049270031974e-05,0.0012568822130560875,0.0028065694496035576,0.001418556086719036,-0.0032653138041496277,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,59,23.6,0.7703585624694824,0.20759469270706177,0.9246771335601807,0.5645308494567871,1.1587028503417969,0.33246052265167236,0.0017896633362397552,-8.71721567818895e-05,0.0012707316782325506,0.002755556022748351,0.001408661250025034,-0.0032831700518727303,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,60,24.0,0.7383061051368713,0.10819660127162933,0.8931992053985596,0.4737704396247864,1.2407045364379883,0.33278074860572815,0.001788583118468523,-9.623137157177553e-05,0.001296882750466466,0.002742447890341282,0.0013934271410107613,-0.0032722102478146553,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,61,24.4,0.7485352158546448,0.008871727623045444,0.8214853405952454,0.23588059842586517,1.3285422325134277,0.30724260210990906,0.0017894299235194921,-9.269649308407679e-05,0.001332422369159758,0.0027751645538955927,0.0013758317800238729,-0.0032396719325333834,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,62,24.8,0.7931869626045227,-0.07555000483989716,0.7424326539039612,-0.11494807153940201,1.3953007459640503,0.2249780297279358,0.0017902908148244023,-7.787613139953464e-05,0.0013682098360732198,0.0028501502238214016,0.0013526651309803128,-0.0031913751736283302,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,63,25.2,0.8470497131347656,-0.15086005628108978,0.7167055010795593,-0.42636948823928833,1.367297649383545,0.04436120018362999,0.0017880885861814022,-5.223985863267444e-05,0.001393618294969201,0.0029537351801991463,0.0013213811907917261,-0.0031272470951080322,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,64,25.6,0.9041871428489685,-0.21480678021907806,0.7720868587493896,-0.5349513292312622,1.2037806510925293,-0.18900209665298462,0.0017838871572166681,-2.093541479553096e-05,0.0014060798566788435,0.003062337636947632,0.0012857919791713357,-0.003047421807423234,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,65,26.0,0.9653905630111694,-0.2631315588951111,0.8455749750137329,-0.5336792469024658,1.0102548599243164,-0.32537463307380676,0.0017813269514590502,1.3642313206219114e-05,0.001409810152836144,0.0031576622277498245,0.0012568256352096796,-0.0029550513718277216,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,66,26.4,1.0299731492996216,-0.2980259358882904,0.8942067623138428,-0.5456244349479675,0.8862571120262146,-0.32939979434013367,0.0017837858758866787,4.550076846498996e-05,0.0014124028384685516,0.003226652042940259,0.0012457272969186306,-0.0028637447394430637,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,67,26.8,1.0989872217178345,-0.32174432277679443,0.9214657545089722,-0.5673584342002869,0.813499391078949,-0.27254989743232727,0.0017898774240165949,7.250753697007895e-05,0.0014150887727737427,0.0032680651638656855,0.001256312127225101,-0.0027887222822755575,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,68,27.2,1.1747400760650635,-0.3339979648590088,0.9220297932624817,-0.555986225605011,0.7611013054847717,-0.18825489282608032,0.0017950874753296375,9.024107566801831e-05,0.0014131941134110093,0.0032820720225572586,0.0012823675060644746,-0.002747170627117157,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,69,27.6,1.2591339349746704,-0.33039751648902893,0.8819152116775513,-0.4373779296875,0.7371047139167786,-0.08678501844406128,0.0017942367121577263,9.664048411650583e-05,0.0013991340529173613,0.003270952496677637,0.0013125694822520018,-0.0027481403667479753,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,70,28.0,1.3465259075164795,-0.2964962124824524,0.8047411441802979,-0.1694158911705017,0.7564404010772705,0.009922829456627369,0.0017892647301778197,9.088129445444793e-05,0.0013729397905990481,0.003236302174627781,0.0013416388537734747,-0.002791859209537506,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,71,28.4,1.4005001783370972,-0.19629527628421783,0.7309929728507996,0.189952552318573,0.8042712211608887,0.09189349412918091,0.001784106600098312,7.31749678379856e-05,0.0013394870329648256,0.0031807476188987494,0.0013672139029949903,-0.002871396252885461,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,72,28.8,1.342596173286438,0.004685649648308754,0.7223736047744751,0.46714621782302856,0.858224093914032,0.16545908153057098,0.0017830970464274287,4.641497798729688e-05,0.0013072802685201168,0.0031088285613805056,0.0013908130349591374,-0.0029731353279203176,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,73,29.2,1.1603046655654907,0.22995813190937042,0.7883865237236023,0.5371178984642029,0.9162228107452393,0.22616448998451233,0.001785466680303216,1.3527280316338874e-05,0.0012807181337848306,0.003024962032213807,0.001409420627169311,-0.003080808324739337,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,74,29.6,0.9781168103218079,0.33528631925582886,0.8580295443534851,0.5343493819236755,0.978637158870697,0.2714134752750397,0.001787808956578374,-2.036620571743697e-05,0.0012616218300536275,0.0029360810294747353,0.0014195425901561975,-0.003175192279741168,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,75,30.0,0.869201123714447,0.3207831084728241,0.902304470539093,0.5503822565078735,1.0444835424423218,0.30385905504226685,0.0017881158273667097,-5.2054132538614795e-05,0.0012523712357506156,0.002849909709766507,0.001419749460183084,-0.003242542501538992,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,76,30.4,0.8017172813415527,0.2571341097354889,0.9249098300933838,0.5700749158859253,1.1146050691604614,0.32528820633888245,0.0017879005754366517,-7.698190165683627e-05,0.0012576163280755281,0.002780323848128319,0.0014125030720606446,-0.003277119714766741,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,77,30.8,0.7529884576797485,0.16807639598846436,0.9176070690155029,0.5427827835083008,1.1915546655654907,0.3347737789154053,0.0017893824260681868,-9.27526198211126e-05,0.0012800998520106077,0.002742282347753644,0.001403169590048492,-0.0032811854034662247,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,78,31.2,0.7370014786720276,0.0654967650771141,0.8681089282035828,0.39373448491096497,1.277205467224121,0.32655230164527893,0.0017919029342010617,-9.655737085267901e-05,0.001315458444878459,0.002749491948634386,0.0013912901049479842,-0.003261697245761752,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,79,31.6,0.7646650075912476,-0.02806461602449417,0.7873235940933228,0.09800592064857483,1.3624669313430786,0.2827024757862091,0.0017928779125213623,-8.812307351035997e-05,0.0013531958684325218,0.002803691430017352,0.0013722225558012724,-0.0032245242036879063,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,80,32.0,0.8155003190040588,-0.10802683234214783,0.7228042483329773,-0.2619009017944336,1.400596022605896,0.16255712509155273,0.0017891904572024941,-6.844912422820926e-05,0.0013812488177791238,0.0028937237802892923,0.0013412439730018377,-0.0031699680257588625,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,81,32.4,0.8704018592834473,-0.17954790592193604,0.732805609703064,-0.49763283133506775,1.3123724460601807,-0.05532490834593773,0.0017837929772213101,-3.964509232901037e-05,0.0013975336914882064,0.003000768832862377,0.0013035408919677138,-0.003096757223829627,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,82,32.8,0.9291243553161621,-0.2369602769613266,0.8053787350654602,-0.5366332530975342,1.117526650428772,-0.2647572457790375,0.001780688646249473,-6.604078407690395e-06,0.0014060295652598143,0.003103898372501135,0.0012694267788901925,-0.0030085935723036528,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,83,33.2,0.9918164610862732,-0.2792574465274811,0.8691649436950684,-0.5360188484191895,0.9491761922836304,-0.3393534719944,0.001783372019417584,2.769974344118964e-05,0.0014131388161331415,0.0031895360443741083,0.0012514505069702864,-0.0029143912252038717,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,84,33.6,1.0583033561706543,-0.30931589007377625,0.9086452722549438,-0.5552057027816772,0.8527753353118896,-0.3099760413169861,0.001789476373232901,5.7801284128800035e-05,0.00141900812741369,0.0032490966841578484,0.0012525699567049742,-0.0028296068776398897,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,85,34.0,1.1300272941589355,-0.3284424841403961,0.9264692664146423,-0.5707055926322937,0.7899667620658875,-0.24045665562152863,0.0017940639518201351,8.155416435329244e-05,0.0014188444474712014,0.0032807914540171623,0.0012689742725342512,-0.002768415492027998,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,86,34.4,1.209303855895996,-0.3349555730819702,0.9114102721214294,-0.52399742603302,0.74669349193573,-0.14708134531974792,0.0017936358926817775,9.460181172471493e-05,0.0014077492523938417,0.0032830643467605114,0.0012933361576870084,-0.0027434860821813345,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,87,34.8,1.2964351177215576,-0.32139623165130615,0.8531143665313721,-0.34313660860061646,0.7398116588592529,-0.04456065595149994,0.0017899653175845742,9.598106407793239e-05,0.0013863592175766826,0.0032594469375908375,0.0013217442901805043,-0.002760556060820818,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,88,35.2,1.377102255821228,-0.26552021503448486,0.7702434659004211,-0.02282031998038292,0.7742946743965149,0.04566026106476784,0.0017865115078166127,8.499035902787e-05,0.001358659123070538,0.0032141716219484806,0.0013519685016945004,-0.00281947641633451,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,89,35.6,1.3942257165908813,-0.12361455708742142,0.7171021103858948,0.32842200994491577,0.82633376121521,0.12383376806974411,0.0017857758793979883,6.296023639151827e-05,0.0013291920768097043,0.003152270568534732,0.0013811944518238306,-0.0029116773512214422,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,90,36.0,1.2759809494018555,0.10619542002677917,0.745201826095581,0.5182672739028931,0.8819972276687622,0.1929047554731369,0.0017867540009319782,3.313389970571734e-05,0.0012999234022572637,0.0030768162105232477,0.0014043161645531654,-0.0030206332448869944,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,91,36.4,1.076443076133728,0.293101042509079,0.8213483691215515,0.5353374481201172,0.9421583414077759,0.24695535004138947,0.0017864670371636748,-8.755173439567443e-07,0.0012725580018013716,0.00299053848721087,0.001416090759448707,-0.003125955117866397,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,92,36.8,0.9245948791503906,0.3390440344810486,0.8798896670341492,0.5388780832290649,1.0059207677841187,0.2864800691604614,0.0017856924096122384,-3.427804767852649e-05,0.001253266935236752,0.0028996975161135197,0.0014179935678839684,-0.00320894131436944,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,93,37.2,0.8383785486221313,0.29770365357398987,0.9148317575454712,0.5601789951324463,1.0730775594711304,0.31420600414276123,0.001786045148037374,-6.362199928844348e-05,0.0012494276743382215,0.0028161494992673397,0.0014142926083877683,-0.0032607403118163347,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,94,37.6,0.7787927985191345,0.22262132167816162,0.9266563653945923,0.5687571167945862,1.145683765411377,0.3309386968612671,0.0017894520424306393,-8.500663534505293e-05,0.0012661105720326304,0.0027575723361223936,0.0014102465938776731,-0.0032812037970870733,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,95,38.0,0.7412150502204895,0.1255079209804535,0.9027041792869568,0.4988783597946167,1.226537823677063,0.3341650664806366,0.0017935531213879585,-9.616465104045346e-05,0.001298360526561737,0.0027392553165555,0.0014033893821761012,-0.0032765918876975775,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,96,38.4,0.7440559267997742,0.024176297709345818,0.8367421627044678,0.28587624430656433,1.3147692680358887,0.3143880367279053,0.0017945901490747929,-9.456211409997195e-05,0.00133509561419487,0.0027686716057360172,0.001388134784065187,-0.0032508482690900564,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,97,38.8,0.785025954246521,-0.06281967461109161,0.7551103234291077,-0.05425458028912544,1.3892015218734741,0.24452698230743408,0.0017902931431308389,-8.137287659337744e-05,0.0013653829228132963,0.0028396369889378548,0.0013596111675724387,-0.0032062390819191933,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,98,39.2,0.8381820917129517,-0.1394495815038681,0.7163113951683044,-0.3873104155063629,1.3819148540496826,0.08022978901863098,0.0017843693494796753,-5.7150191423716024e-05,0.0013861455954611301,0.002937839599326253,0.0013223260175436735,-0.003141355235129595,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,99,39.6,0.8943122029304504,-0.20571447908878326,0.7603545188903809,-0.5303032994270325,1.235761046409607,-0.1548268049955368,0.0017811344005167484,-2.6178424377576448e-05,0.0014003007672727108,0.003043979173526168,0.0012864333111792803,-0.0030596796423196793,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,100,40.0,0.9549582004547119,-0.2564584016799927,0.8357164859771729,-0.5341090559959412,1.0373659133911133,-0.3142136335372925,0.0017833503661677241,8.051839358813595e-06,0.001412052079103887,0.00314223300665617,0.0012622851645573974,-0.0029679618310183287,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,101,40.4,1.0194182395935059,-0.29328012466430664,0.8886626958847046,-0.5424595475196838,0.9021022915840149,-0.3348690867424011,0.0017886713612824678,4.114998955628835e-05,0.0014205208281055093,0.0032198119442909956,0.0012540079187601805,-0.002877740189433098,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,102,40.8,1.087989330291748,-0.3187240958213806,0.9196417331695557,-0.5646994113922119,0.8246367573738098,-0.28415626287460327,0.0017921662656590343,6.886337359901518e-05,0.00142119568772614,0.0032684640027582645,0.0012592582497745752,-0.0028022238984704018,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,103,41.2,1.162505030632019,-0.3329615890979767,0.9255029559135437,-0.5634622573852539,0.7689772248268127,-0.20379725098609924,0.0017922158585861325,8.861530659487471e-05,0.0014132092474028468,0.003286725375801325,0.0012770203175023198,-0.0027524754405021667,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,104,41.6,1.2451423406600952,-0.33247748017311096,0.8921759724617004,-0.467070609331131,0.738169252872467,-0.10370417684316635,0.0017901702085509896,9.678627247922122e-05,0.0013967822305858135,0.003275256836786866,0.0013017072342336178,-0.0027440572157502174,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,105,42.0,1.3330355882644653,-0.3051915466785431,0.8189648985862732,-0.22214734554290771,0.7500092387199402,-0.004528190940618515,0.0017889138543978333,9.30524620343931e-05,0.0013757500564679503,0.0032414791639894247,0.0013348436914384365,-0.0027785240672528744,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,106,42.4,1.3972522020339966,-0.21884828805923462,0.7407956719398499,0.13187342882156372,0.7953815460205078,0.07953492552042007,0.001788677996955812,7.69055841374211e-05,0.0013503122609108686,0.003190229181200266,0.0013686672318726778,-0.002854962833225727,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,107,42.8,1.362176537513733,-0.032638587057590485,0.71893310546875,0.43674156069755554,0.8494287729263306,0.15449665486812592,0.0017881568055599928,5.126789619680494e-05,0.0013202934060245752,0.003124262671917677,0.0013956145849078894,-0.0029586153104901314,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,108,43.2,1.1933410167694092,0.19999322295188904,0.7770606279373169,0.5359916090965271,0.9069833159446716,0.2176966518163681,0.0017856871709227562,1.9040904589928687e-05,0.0012871840735897422,0.0030435938388109207,0.0014101372798904777,-0.0030688391998410225,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,109,43.6,1.0025219917297363,0.32866668701171875,0.849682092666626,0.5338828563690186,0.9686385989189148,0.26525554060935974,0.001783583895303309,-1.5270257790689357e-05,0.0012596403248608112,0.0029522269032895565,0.0014147348701953888,-0.0031646746210753918,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,110,44.0,0.8827380537986755,0.32767581939697266,0.897139310836792,0.5467946529388428,1.0335177183151245,0.2995432913303375,0.0017843752866610885,-4.740358781418763e-05,0.0012471637455746531,0.0028608778957277536,0.001414835569448769,-0.003233409719541669,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,111,44.4,0.8113262057304382,0.26922404766082764,0.923259437084198,0.5682714581489563,1.1027171611785889,0.32268714904785156,0.0017890348099172115,-7.401907350867987e-05,0.0012561326147988439,0.0027859255205839872,0.0014148877235129476,-0.0032721778843551874,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,112,44.8,0.7594501376152039,0.18386390805244446,0.9220860004425049,0.5537295937538147,1.1787337064743042,0.33431288599967957,0.0017941114492714405,-9.120173490373418e-05,0.0012823693687096238,0.002744794823229313,0.0014122268185019493,-0.0032833509612828493,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,113,45.2,0.7369635701179504,0.0818517655134201,0.8798200488090515,0.4283004701137543,1.2635418176651,0.32969197630882263,0.0017951959744095802,-9.726540156407282e-05,0.0013158046640455723,0.0027476605027914047,0.0014002756215631962,-0.003270740620791912,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,114,45.6,0.7582179307937622,-0.0144218560308218,0.8016462922096252,0.1533021628856659,1.3507848978042603,0.2936003804206848,0.0017912983894348145,-9.043694444699213e-05,0.001346812816336751,0.0027952289674431086,0.0013755840482190251,-0.0032357496675103903,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,115,46.0,0.8069068193435669,-0.0960308089852333,0.7298299670219421,-0.20752401649951935,1.4013800621032715,0.18856386840343475,0.0017854454927146435,-7.245296001201496e-05,0.001371935592032969,0.0028777816332876682,0.0013411028776317835,-0.0031806686893105507,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,116,46.4,0.8611174821853638,-0.16914185881614685,0.7255951762199402,-0.4756067395210266,1.3357033729553223,-0.017460713163018227,0.0017825555987656116,-4.462536526261829e-05,0.0013924234081059694,0.0029810862615704536,0.0013062250800430775,-0.00310685602016747,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,117,46.8,0.919323742389679,-0.22902749478816986,0.7933767437934875,-0.5372894406318665,1.1493819952011108,-0.23970799148082733,0.001783978776074946,-1.191976207337575e-05,0.0014089772012084723,0.0030870360787957907,0.001277725212275982,-0.003021322889253497,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,118,47.2,0.9818758368492126,-0.27350956201553345,0.8615145087242126,-0.5347411632537842,0.9707295298576355,-0.3369840681552887,0.0017876561032608151,2.2493120923172683e-05,0.001419864478521049,0.003180041676387191,0.0012603549985215068,-0.0029305173084139824,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,119,47.6,1.0479943752288818,-0.30532723665237427,0.9046056866645813,-0.5516158938407898,0.8655352592468262,-0.31835871934890747,0.0017897984944283962,5.367112680687569e-05,0.0014219543663784862,0.0032464817631989717,0.0012541598407551646,-0.0028453210834413767,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,120,48.0,1.1186046600341797,-0.32618236541748047,0.926155149936676,-0.570598840713501,0.7993387579917908,-0.2533150017261505,0.001790215726941824,7.844177162041888e-05,0.001416269107721746,0.003280653851106763,0.0012617764296010137,-0.0027778102084994316,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,121,48.4,1.196115493774414,-0.33494216203689575,0.9169948101043701,-0.5390220880508423,0.7516100406646729,-0.1631491333246231,0.0017899819649755955,9.363735443912446e-05,0.001404700567945838,0.003283847589045763,0.0012833131477236748,-0.0027425787411630154,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,122,48.8,1.2821319103240967,-0.3254851996898651,0.865180253982544,-0.382246196269989,0.737470805644989,-0.06032243371009827,0.0017908375011757016,9.667651465861127e-05,0.0013900212943553925,0.003262249520048499,0.001316558918915689,-0.0027516321279108524,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,123,49.2,1.3665045499801636,-0.2787889242172241,0.7836109399795532,-0.07977350056171417,0.7667729258537292,0.03262120485305786,0.0017914708005264401,8.776066533755511e-05,0.0013694665394723415,0.0032226117327809334,0.0013533468591049314,-0.0028066181112080812,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,124,49.6,1.3997464179992676,-0.15307104587554932,0.7217543721199036,0.27921468019485474,0.818065881729126,0.11217856407165527,0.00178964261431247,6.710781599394977e-05,0.001340431161224842,0.003166312351822853,0.0013834689743816853,-0.002898541046306491,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,125,50.0,1.3035343885421753,0.06882069259881973,0.7365068793296814,0.5038501024246216,0.8733313679695129,0.18312406539916992,0.0017854876350611448,3.8268277421593666e-05,0.001304485835134983,0.003093323204666376,0.0014015443157404661,-0.00300702266395092,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,126,50.4,1.1067407131195068,0.27308589220046997,0.810260534286499,0.5364407300949097,0.9325219988822937,0.23966920375823975,0.0017822992522269487,4.4761136450688355e-06,0.0012709102593362331,0.0030051767826080322,0.0014097088715061545,-0.0031115878373384476,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,127,50.8,0.9427528977394104,0.33978375792503357,0.8725531101226807,0.5367110967636108,0.9954492449760437,0.28122732043266296,0.0017831814475357533,-2.9346281735342927e-05,0.0012510614469647408,0.002911059185862541,0.0014141164720058441,-0.003195822238922119,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,128,51.2,0.8493256568908691,0.30703258514404297,0.9107704758644104,0.5565281510353088,1.062055230140686,0.31066828966140747,0.0017882282845675945,-5.966627941234037e-05,0.0012511595850810409,0.0028253740165382624,0.0014178006676957011,-0.003253092523664236,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,129,51.6,0.7873250842094421,0.23614446818828583,0.9271371960639954,0.5706055164337158,1.1340031623840332,0.3291766047477722,0.0017936634831130505,-8.263438940048218e-05,0.0012691287556663156,0.002764760283753276,0.0014180798316374421,-0.003281610319390893,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,130,52.0,0.7453019618988037,0.14174579083919525,0.9099580645561218,0.5184855461120605,1.213773250579834,0.3348950147628784,0.001794847077690065,-9.535975550534204e-05,0.0012965031201019883,0.0027420378755778074,0.0014089994365349412,-0.003282909281551838,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,131,52.4,0.7407809495925903,0.039271339774131775,0.8496654629707336,0.32941827178001404,1.301375389099121,0.31984490156173706,0.001791840884834528,-9.588322427589446e-05,0.0013267388567328453,0.0027630210388451815,0.0013883474748581648,-0.0032593223731964827,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,132,52.8,0.776965320110321,-0.05023253336548805,0.7667953372001648,0.0032796466257423162,1.380746603012085,0.26054853200912476,0.0017870697192847729,-8.408771827816963e-05,0.001355451182462275,0.0028251982294023037,0.001359066809527576,-0.0032136081717908382,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,133,53.2,0.8293023109436035,-0.1280452311038971,0.7170397043228149,-0.34451058506965637,1.3917498588562012,0.11262352019548416,0.0017847061390057206,-6.168813706608489e-05,0.0013820400927215815,0.0029184799641370773,0.0013267756439745426,-0.0031500854529440403,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,134,53.6,0.8851056098937988,-0.19640234112739563,0.7494296431541443,-0.5222216248512268,1.2656291723251343,-0.1195361539721489,0.0017852501478046179,-3.1197661883197725e-05,0.001403485657647252,0.0030268423724919558,0.0012964088236913085,-0.0030722524970769882,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,135,54.0,0.9454756379127502,-0.2495700865983963,0.8256178498268127,-0.5350372791290283,1.0658228397369385,-0.29957935214042664,0.0017867254791781306,2.6640971100277966e-06,0.001416924991644919,0.003130753291770816,0.0012713102623820305,-0.0029847121331840754,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,136,54.4,1.0095360279083252,-0.2883569896221161,0.8827095627784729,-0.5397882461547852,0.9186837077140808,-0.3383532762527466,0.0017873654142022133,3.6338438803795725e-05,0.001420586253516376,0.003213481279090047,0.0012551180552691221,-0.0028942343778908253,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,137,54.8,1.0771114826202393,-0.31546908617019653,0.9166477918624878,-0.561479926109314,0.8350954651832581,-0.29434657096862793,0.0017879020888358355,6.510977254947647e-05,0.0014172503724694252,0.003264583647251129,0.0012525602942332625,-0.0028131611179560423,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,138,55.2,1.1501469612121582,-0.33155155181884766,0.9269314408302307,-0.5678723454475403,0.7763810157775879,-0.2179086059331894,0.0017894405173137784,8.635222911834717e-05,0.0014105730224400759,0.0032840389758348465,0.0012678164057433605,-0.00275623076595366,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,139,55.6,1.2314143180847168,-0.3338392674922943,0.9005125164985657,-0.49141472578048706,0.7402646541595459,-0.11988513916730881,0.0017921573016792536,9.650368156144395e-05,0.0014013356994837523,0.003276604227721691,0.0012986266519874334,-0.00273966696113348,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,140,56.0,1.3196711540222168,-0.31222689151763916,0.8325061202049255,-0.26990818977355957,0.7453500628471375,-0.018924003466963768,0.0017936053918674588,9.441483416594565e-05,0.0013858010061085224,0.0032486962154507637,0.0013356523122638464,-0.0027705389074981213,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,141,56.4,1.3918386697769165,-0.2382006198167801,0.7515602707862854,0.07471859455108643,0.7876436114311218,0.06736057996749878,0.001791014103218913,8.035819337237626e-05,0.0013590141898021102,0.003202754072844982,0.0013681483687832952,-0.00284373015165329,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,142,56.8,1.3774583339691162,-0.06778916716575623,0.7171427011489868,0.4014260172843933,0.8411835432052612,0.14357519149780273,0.0017859756480902433,5.560380304814316e-05,0.0013231649063527584,0.0031381025910377502,0.001390120480209589,-0.0029443036764860153,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,143,57.2,1.2245497703552246,0.16759707033634186,0.7651897668838501,0.5324143767356873,0.897717297077179,0.2090580016374588,0.0017819516360759735,2.4361936084460467e-05,0.001286385697312653,0.003056466579437256,0.001402940135449171,-0.003051765263080597,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,144,57.6,1.0276321172714233,0.3188633620738983,0.8398786783218384,0.5339782238006592,0.958585262298584,0.2589229345321655,0.001782656298018992,-1.0118225873156916e-05,0.0012605995871126652,0.0029637091793119907,0.0014120771083980799,-0.0031489082612097263,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,145,58.0,0.8967934250831604,0.33323460817337036,0.8912412524223328,0.5435720086097717,1.023132562637329,0.29504963755607605,0.001787342014722526,-4.2741936340462416e-05,0.0012517172144725919,0.0028727715834975243,0.001419013598933816,-0.003223532112315297,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,146,58.4,0.8211916089057922,0.28034552931785583,0.9209526181221008,0.5657879114151001,1.0918952226638794,0.31986668705940247,0.001792270690202713,-7.061415089992806e-05,0.00125956314150244,0.0027971696108579636,0.0014212856767699122,-0.0032704086042940617,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,147,58.8,0.766511857509613,0.19866760075092316,0.9250950813293457,0.5614356398582458,1.1668967008590698,0.33342239260673523,0.001793692004866898,-8.936758968047798e-05,0.0012789673637598753,0.0027512640226632357,0.0014149185735732317,-0.0032867451664060354,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,148,59.2,0.7377602458000183,0.09790870547294617,0.8894239068031311,0.45759841799736023,1.250196933746338,0.33188915252685547,0.001791771617718041,-9.717297507449985e-05,0.0013062310172244906,0.0027451682835817337,0.0013986873673275113,-0.0032755988650023937,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,149,59.6,0.7520347833633423,-0.0006511101382784545,0.8146362900733948,0.20434977114200592,1.338028073310852,0.3023829758167267,0.001788807101547718,-9.23068801057525e-05,0.0013373758411034942,0.0027831823099404573,0.0013751158257946372,-0.0032407331746071577,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,150,60.0,0.7983456254005432,-0.08405634015798569,0.737820029258728,-0.15241354703903198,1.3989108800888062,0.2111700177192688,0.001787248533219099,-7.587251457152888e-05,0.0013689456973224878,0.0028606003616005182,0.0013472114223986864,-0.0031878387089818716,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,151,60.4,0.8524654507637024,-0.1585550606250763,0.7206013202667236,-0.44830650091171265,1.3556331396102905,0.019147256389260292,0.0017869678558781743,-4.951902519678697e-05,0.0013952463632449508,0.002964374143630266,0.001316774170845747,-0.003119447035714984,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,152,60.8,0.9102821350097656,-0.22086168825626373,0.7817361950874329,-0.5367293953895569,1.181390643119812,-0.2115425318479538,0.0017862500390037894,-1.7054617273970507e-05,0.0014115163357928395,0.003074275329709053,0.0012861286522820592,-0.003037902759388089,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,153,61.2,0.9722877740859985,-0.26757577061653137,0.8533144593238831,-0.534050703048706,0.9936572909355164,-0.33160096406936646,0.001785317319445312,1.722376146062743e-05,0.0014175279065966606,0.0031700702384114265,0.0012608993565663695,-0.002947139786556363,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,154,61.6,1.0375057458877563,-0.30117273330688477,0.8995398879051208,-0.5480912923812866,0.8781315088272095,-0.32537445425987244,0.001785575645044446,4.935872129863128e-05,0.0014168928610160947,0.003238320117816329,0.0012489798245951533,-0.002857079729437828,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,155,62.0,1.1070029735565186,-0.32369711995124817,0.9243926405906677,-0.5691127181053162,0.8081784248352051,-0.26507309079170227,0.0017885364359244704,7.518728671129793e-05,0.0014145048335194588,0.0032749646343290806,0.0012565817451104522,-0.0027834982611238956,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,156,62.4,1.1833688020706177,-0.33456382155418396,0.9211101531982422,-0.5503696203231812,0.7572441101074219,-0.17838792502880096,0.0017927646404132247,9.217705519404262e-05,0.0014099330874159932,0.0032836133614182472,0.001282164128497243,-0.0027431780472397804,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,157,62.8,1.2685480117797852,-0.3287121653556824,0.8762519359588623,-0.4166620373725891,0.7368742227554321,-0.07599899172782898,0.0017948149470612407,9.710697486298159e-05,0.0013986523263156414,0.0032684579491615295,0.0013170093297958374,-0.0027481659781187773,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,158,63.2,1.3552980422973633,-0.28993576765060425,0.7970074415206909,-0.13384807109832764,0.7604316473007202,0.019467037171125412,0.0017921925755217671,8.991807408165187e-05,0.0013754687970504165,0.0032331100665032864,0.0013501017820090055,-0.0027983570471405983,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,159,63.6,1.4016408920288086,-0.17939487099647522,0.7276292443275452,0.22751888632774353,0.8099856376647949,0.10052090883255005,0.0017869151197373867,7.098985224729404e-05,0.0013417701702564955,0.003177726874127984,0.0013759800931438804,-0.0028842685278505087,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,160,64.0,1.3274765014648438,0.03156557306647301,0.7285134196281433,0.48437580466270447,0.8644533753395081,0.1730780005455017,0.001782668987289071,4.3047497456427664e-05,0.0013049152912572026,0.003103995230048895,0.0013943143421784043,-0.0029886949341744184,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,161,64.4,1.1374614238739014,0.24965400993824005,0.798217236995697,0.5372200608253479,0.9228807687759399,0.2320549339056015,0.0017828786512836814,9.85975748335477e-06,0.0012748995795845985,0.0030167601071298122,0.0014084752183407545,-0.0030938005074858665,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,162,64.8,0.9626739025115967,0.33829566836357117,0.8647493124008179,0.5351797342300415,0.9855318665504456,0.2757052481174469,0.001786569831892848,-2.4460017812089063e-05,0.0012577867601066828,0.002924624364823103,0.0014184759929776192,-0.003184314351528883,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,163,65.2,0.8610572218894958,0.3154628276824951,0.9065107107162476,0.5529695749282837,1.051831841468811,0.3068651258945465,0.0017903086263686419,-5.5351345508825034e-05,0.0012547314399853349,0.002839615335687995,0.0014224180486053228,-0.0032486869022250175,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,164,65.6,0.7961524724960327,0.24879007041454315,0.9267668128013611,0.5708914399147034,1.1228866577148438,0.3270728290081024,0.0017917649820446968,-7.984005787875503e-05,0.0012649336131289601,0.002774335676804185,0.0014180360594764352,-0.0032820552587509155,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,165,66.0,0.749835729598999,0.15741068124771118,0.9154823422431946,0.5341083407402039,1.2010281085968018,0.33502838015556335,0.001791162882000208,-9.411846986040473e-05,0.001286921789869666,0.0027428565081208944,0.001406135968863964,-0.0032845691312104464,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,166,66.4,0.7381422519683838,0.054510556161403656,0.8612048625946045,0.3685469925403595,1.2874670028686523,0.3241150677204132,0.001790348906069994,-9.668946586316451e-05,0.0013184293638914824,0.002754392335191369,0.0013887380482628942,-0.003261913312599063,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,167,66.8,0.7693770527839661,-0.037535108625888824,0.7789970636367798,0.059078149497509,1.3706741333007812,0.2741537392139435,0.0017898714868351817,-8.673690899740905e-05,0.0013533852761611342,0.002811155281960964,0.0013661107514053583,-0.003219878301024437,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,168,67.2,0.8210495710372925,-0.11660157144069672,0.7202150821685791,-0.29788488149642944,1.3982024192810059,0.1423727422952652,0.0017888476140797138,-6.57727214274928e-05,0.0013839235762134194,0.002903477754443884,0.001337421708740294,-0.0031618454959243536,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,169,67.6,0.8765477538108826,-0.1868739277124405,0.7400235533714294,-0.5098627209663391,1.2935380935668945,-0.08307844400405884,0.001786284614354372,-3.624451346695423e-05,0.0014035232597962022,0.003012977307662368,0.0013036401942372322,-0.0030878090765327215,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,170,68.0,0.9361454248428345,-0.24248090386390686,0.8148411512374878,-0.5360918641090393,1.0952539443969727,-0.2811996340751648,0.0017838464118540287,-2.547790700191399e-06,0.0014126141322776675,0.0031177669297903776,0.001271535293199122,-0.0030005783773958683,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,171,68.4,0.9993586540222168,-0.28326472640037537,0.8756422400474548,-0.537484884262085,0.9358809590339661,-0.339803546667099,0.0017837355844676495,3.134825237793848e-05,0.0014153807424008846,0.0032015168108046055,0.0012513638939708471,-0.002906889421865344,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,172,68.8,1.0661563873291016,-0.31204795837402344,0.9125968217849731,-0.5579191446304321,0.8453672528266907,-0.30366289615631104,0.0017874321201816201,6.125566869741306e-05,0.0014168081106618047,0.003256384748965502,0.0012505210470408201,-0.002821585861966014,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,173,69.2,1.1383655071258545,-0.3299020826816559,0.9273316264152527,-0.5701917409896851,0.7842571139335632,-0.231246218085289,0.001792520983144641,8.364162204088643e-05,0.0014159656129777431,0.0032820687629282475,0.0012684814864769578,-0.0027616319712251425,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,174,69.6,1.218582034111023,-0.3347106873989105,0.9076952934265137,-0.5117490887641907,0.7437556385993958,-0.13576720654964447,0.0017950076144188643,9.58690361585468e-05,0.0014081575209274888,0.0032814503647387028,0.0012982632033526897,-0.002740834141150117,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,175,70.0,1.3065273761749268,-0.31797486543655396,0.8452333211898804,-0.31373131275177,0.7419126629829407,-0.03357752412557602,0.0017929456662386656,9.543618216412142e-05,0.0013890635455027223,0.003256926778703928,0.001330253086052835,-0.002765430836006999,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,176,70.4,1.3842442035675049,-0.2548249661922455,0.7626148462295532,0.018146708607673645,0.7799236178398132,0.05504531040787697,0.0017881086096167564,8.32744044600986e-05,0.0013593122130259871,0.003211629344150424,0.0013592466711997986,-0.0028306616004556417,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,177,70.8,1.3885014057159424,-0.10060016810894012,0.7167802453041077,0.36118456721305847,0.8325785994529724,0.1324205845594406,0.00178425177000463,5.990839417790994e-05,0.001324823941104114,0.0031469890382140875,0.001383374910801649,-0.0029258483555167913,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,178,71.2,1.2544502019882202,0.13328608870506287,0.7536953687667847,0.5257872939109802,0.8885324597358704,0.2000083178281784,0.0017839017091318965,2.9469731089193374e-05,0.001292887725867331,0.0030676431488245726,0.0014027596917003393,-0.0030333122704178095,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,179,71.6,1.054831862449646,0.3057047128677368,0.8297362327575684,0.5346808433532715,0.9490511417388916,0.2522457242012024,0.0017860494554042816,-4.800670922122663e-06,0.001268732245080173,0.0029785120859742165,0.0014162634033709764,-0.0031355961691588163,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,180,72.0,0.912395715713501,0.33728787302970886,0.8852604031562805,0.5407745838165283,1.0133148431777954,0.2902727425098419,0.0017881924286484718,-3.8085745472926646e-05,0.001255196169950068,0.0028885407373309135,0.0014214403927326202,-0.0032167730387300253,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,181,72.4,0.8313021063804626,0.2906273901462555,0.9180948734283447,0.5627781748771667,1.0812798738479614,0.31674763560295105,0.0017894789343699813,-6.67342173983343e-05,0.0012552348198369145,0.002809101715683937,0.00141934584826231,-0.003267170861363411,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,182,72.8,0.7736369371414185,0.21271148324012756,0.9267259836196899,0.5665381550788879,1.1548264026641846,0.332132488489151,0.0017901088576763868,-8.72601376613602e-05,0.0012703968677669764,0.002755099441856146,0.0014112803619354963,-0.0032855942845344543,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,183,73.2,0.7393515110015869,0.11382068693637848,0.8977048993110657,0.4827883839607239,1.236595869064331,0.3334061801433563,0.001791379414498806,-9.671904263086617e-05,0.0012997448211535811,0.002740758005529642,0.001399775268509984,-0.0032762864138931036,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,184,73.6,0.7469534277915955,0.013404697179794312,0.8276458978652954,0.2523118853569031,1.324811577796936,0.30972975492477417,0.0017921399557963014,-9.402458817930892e-05,0.001335966750048101,0.0027731433510780334,0.0013825692003592849,-0.0032461746595799923,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,185,74.0,0.7905191779136658,-0.07205361872911453,0.7475880980491638,-0.09642177820205688,1.3942326307296753,0.2311592698097229,0.0017907327273860574,-7.903209188953042e-05,0.0013693784130737185,0.0028481564950197935,0.0013567903079092503,-0.0031986054964363575,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,186,74.4,0.8443277478218079,-0.14781582355499268,0.7178622484207153,-0.4155338406562805,1.3721275329589844,0.05452186241745949,0.0017869160510599613,-5.406642230809666e-05,0.0013927534455433488,0.002950207097455859,0.0013224771246314049,-0.0031335982494056225,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,187,74.8,0.9012538194656372,-0.21243850886821747,0.7699154019355774,-0.5341315269470215,1.2126868963241577,-0.18040521442890167,0.0017831653822213411,-2.2211899704416282e-05,0.0014057657681405544,0.003058819565922022,0.001286577433347702,-0.0030519310384988785,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,188,75.2,0.9623973369598389,-0.2614120543003082,0.8438571691513062,-0.5338937044143677,1.0177851915359497,-0.3230794072151184,0.0017826281255111098,1.2054082617396489e-05,0.001412767800502479,0.0031551250722259283,0.0012596974847838283,-0.0029593436047434807,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,189,75.6,1.0270771980285645,-0.2968217134475708,0.8936809301376343,-0.5447758436203003,0.891360342502594,-0.3312826156616211,0.0017863388638943434,4.4741678721038625e-05,0.0014176906552165747,0.0032276168931275606,0.0012500378070399165,-0.0028678143862634897,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,190,76.0,1.0960240364074707,-0.32099536061286926,0.9220457673072815,-0.5668336749076843,0.8174934387207031,-0.27620938420295715,0.001791546936146915,7.18509400030598e-05,0.0014197200071066618,0.0032714414410293102,0.001258897129446268,-0.0027927157934755087,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,191,76.4,1.1714519262313843,-0.33382755517959595,0.9242458343505859,-0.5588709115982056,0.763844907283783,-0.19312921166419983,0.0017942088888958097,9.024063911056146e-05,0.001414637896232307,0.0032863726373761892,0.0012809978798031807,-0.0027488875202834606,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,192,76.8,1.255367636680603,-0.331147164106369,0.8860630989074707,-0.44695788621902466,0.7373759746551514,-0.09178571403026581,0.0017931141192093492,9.728522127261385e-05,0.0013995969202369452,0.003274372313171625,0.0013100975193083286,-0.0027462763246148825,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,193,77.2,1.3430464267730713,-0.2992210388183594,0.8098182678222656,-0.18520592153072357,0.7542779445648193,0.005982580594718456,0.0017893393523991108,9.17070938157849e-05,0.0013749762438237667,0.003239300800487399,0.0013404710916802287,-0.0027878291439265013,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,194,77.6,1.400211215019226,-0.20279483497142792,0.7347091436386108,0.1737121194601059,0.8015508055686951,0.08869978785514832,0.001786409062333405,7.460450433427468e-05,0.0013447285164147615,0.003185090608894825,0.0013699927367269993,-0.0028669333551079035,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,195,78.0,1.3483601808547974,-0.005089119542390108,0.7224322557449341,0.4594840109348297,0.8557371497154236,0.16267958283424377,0.001785553409717977,4.7665907914051786e-05,0.0013130544684827328,0.003114660969004035,0.0013946234248578548,-0.002970767905935645,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,196,78.4,1.169030785560608,0.2228926420211792,0.7863733768463135,0.5371681451797485,0.9137441515922546,0.22406715154647827,0.001785928849130869,1.5204211194941308e-05,0.0012836537789553404,0.00303186709061265,0.0014114945661276579,-0.0030795440543442965,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,197,78.8,0.984668493270874,0.33408284187316895,0.8567197918891907,0.5342650413513184,0.9760102033615112,0.26990586519241333,0.0017863053362816572,-1.9387778593227267e-05,0.0012610098347067833,0.0029410747811198235,0.0014189116191118956,-0.0031746155582368374,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,198,79.2,0.8732967972755432,0.3228176236152649,0.901700496673584,0.5494430065155029,1.0415643453598022,0.3028129041194916,0.001787034678272903,-5.096355016576126e-05,0.0012508640065789223,0.0028527402319014072,0.001418869593180716,-0.003241998143494129,0.0,-1.0,1.0,0.0,-0.01,0.01 +steady,sr,199,79.6,0.8048120737075806,0.26065361499786377,0.9252703785896301,0.5698245167732239,1.11143958568573,0.32469093799591064,0.001788781606592238,-7.665630255360156e-05,0.0012580319307744503,0.002780918963253498,0.0014147290494292974,-0.0032775436993688345,0.0,-1.0,1.0,0.0,-0.01,0.01 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_long.csv new file mode 100644 index 0000000..4276568 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360453367233276 +steady,target,2,0.8,velocity,upper_uy,-6.0142643633298576e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3026001610683124e-08 +steady,target,2,0.8,velocity,lower_ux,1.1360440254211426 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360433101654053 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.1645541191101074 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360431909561157 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360453367233276 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.1360435485839844 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0459883621224435e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360431909561157 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360442638397217 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043906211853 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095369826653041e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642516557851195e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.074458724469878e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360431909561157 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.136045217514038 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172285065986216e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1872907634824514e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.1360450983047485 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.136045217514038 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645545959472656 +steady,target,40,16.0,velocity,center_uy,1.9439161746959144e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077744546928443e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.8849998184577998e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.08630471106153e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3958349465734727e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.164554238319397 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045023837941699e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.513137869504135e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360454559326172 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360433101654053 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.1360453367233276 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360431909561157 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.136043906211853 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360431909561157 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360431909561157 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.164554476737976 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.096560537116602e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234364325839124e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007860429235734e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.136045217514038 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.1360447406768799 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.014396211005078e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.070026574889198e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.6995057440854e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035815385985188e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.136044979095459 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.239392446450438e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049206422176212e-05 +steady,target,105,42.0,velocity,upper_ux,1.136044979095459 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360431909561157 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360431909561157 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.1360437870025635 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0544055584205125e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.136043667793274 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.1360434293746948 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.1645543575286865 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645545959472656 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.136043906211853 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.136045217514038 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.1360450983047485 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360447406768799 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360445022583008 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.136043667793274 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360443830490112 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360447406768799 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.164554476737976 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360434293746948 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.136045217514038 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_wide.csv new file mode 100644 index 0000000..21cc852 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_1/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360453367233276,-6.0142643633298576e-05,1.1645541191101074,1.3026001610683124e-08,1.1360440254211426,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360433101654053,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.1645541191101074,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360431909561157,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360453367233276,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.1360435485839844,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.0459883621224435e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360431909561157,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360442638397217,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043906211853,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095369826653041e-05,1.1645541191101074,-4.642516557851195e-07,1.1360430717468262,6.074458724469878e-05 +steady,target,29,11.6,1.1360431909561157,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.136045217514038,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172285065986216e-05,1.1645541191101074,1.1872907634824514e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.1360450983047485,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.136045217514038,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645545959472656,1.9439161746959144e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077744546928443e-05,1.1645541191101074,-1.8849998184577998e-07,1.1360431909561157,6.08630471106153e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.3958349465734727e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.164554238319397,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045023837941699e-05,1.1645541191101074,3.513137869504135e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360454559326172,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360433101654053,6.118379678810015e-05 +steady,target,54,21.6,1.1360453367233276,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360431909561157,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.136043906211853,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360431909561157,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360431909561157,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.164554476737976,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.096560537116602e-05,1.1645547151565552,-4.234364325839124e-07,1.1360433101654053,6.007860429235734e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.136045217514038,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.1360447406768799,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.014396211005078e-07,1.1360433101654053,6.070026574889198e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.6995057440854e-08,1.1360431909561157,6.035815385985188e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360431909561157,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.136044979095459,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.164554476737976,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.239392446450438e-07,1.1360431909561157,6.049206422176212e-05 +steady,target,105,42.0,1.136044979095459,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360431909561157,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360431909561157,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.1360437870025635,-6.077167927287519e-05,1.1645547151565552,-1.0544055584205125e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.136043667793274,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.1360434293746948,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.1645543575286865,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645545959472656,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.136043906211853,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.136045217514038,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.1360450983047485,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360447406768799,6.093038246035576e-05 +steady,target,137,54.8,1.1360445022583008,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.136043667793274,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360443830490112,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360447406768799,-6.112091068644077e-05,1.164554476737976,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360434293746948,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.136045217514038,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_dtw_convergence.csv new file mode 100644 index 0000000..9f14725 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.8610672180455174,-17,0.9130078216393789,0.9134198438173674,0.7143660942713419,0.8046677545466134,0.9131347874800364,0.9078070065183662 +steady,sr,90,36.0,30,0.8580315304257674,-21,0.9176459650198618,0.9025236909559075,0.7234842876593273,0.7833993473121227,0.9074347972869873,0.913701094320398 +steady,sr,120,48.0,30,0.8595480220865072,-9,0.9096228857835134,0.9037152671740235,0.7316496690114339,0.7944422875190204,0.9107583661874136,0.9070996568436385 +steady,sr,150,60.0,30,0.8565732540777445,-14,0.9027002394199372,0.9132316178360876,0.7250229001045227,0.7814628961005259,0.9141959389050802,0.9028259321003134 +steady,sr,180,72.0,30,0.8588143129032795,-19,0.9124579588572184,0.902835418672718,0.7387354950110118,0.7873773512748844,0.9092698792616526,0.902209774342191 +steady,sr,200,80.0,30,0.8572862976242573,-16,0.9020505885283152,0.9119135420764602,0.7230260630448659,0.7928708146790501,0.9072279493014017,0.9066288281154509 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_long.csv new file mode 100644 index 0000000..4e8fa71 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.240221619606018 +steady,sr,0,0.0,velocity,upper_uy,0.007947985082864761 +steady,sr,0,0.0,velocity,center_ux,0.8033638000488281 +steady,sr,0,0.0,velocity,center_uy,0.2513802647590637 +steady,sr,0,0.0,velocity,lower_ux,1.0358582735061646 +steady,sr,0,0.0,velocity,lower_uy,0.08160460740327835 +steady,sr,1,0.4,velocity,upper_ux,1.1999691724777222 +steady,sr,1,0.4,velocity,upper_uy,0.06378006935119629 +steady,sr,1,0.4,velocity,center_ux,0.8795057535171509 +steady,sr,1,0.4,velocity,center_uy,0.24600227177143097 +steady,sr,1,0.4,velocity,lower_ux,1.0584205389022827 +steady,sr,1,0.4,velocity,lower_uy,0.10644500702619553 +steady,sr,2,0.8,velocity,upper_ux,1.1398619413375854 +steady,sr,2,0.8,velocity,upper_uy,0.09924766421318054 +steady,sr,2,0.8,velocity,center_ux,0.9287842512130737 +steady,sr,2,0.8,velocity,center_uy,0.24431148171424866 +steady,sr,2,0.8,velocity,lower_ux,1.085428237915039 +steady,sr,2,0.8,velocity,lower_uy,0.12451053410768509 +steady,sr,3,1.2,velocity,upper_ux,1.0823254585266113 +steady,sr,3,1.2,velocity,upper_uy,0.10515472292900085 +steady,sr,3,1.2,velocity,center_ux,0.9483830332756042 +steady,sr,3,1.2,velocity,center_uy,0.23709072172641754 +steady,sr,3,1.2,velocity,lower_ux,1.1155762672424316 +steady,sr,3,1.2,velocity,lower_uy,0.13566768169403076 +steady,sr,4,1.6,velocity,upper_ux,1.0412700176239014 +steady,sr,4,1.6,velocity,upper_uy,0.08676686882972717 +steady,sr,4,1.6,velocity,center_ux,0.9359895586967468 +steady,sr,4,1.6,velocity,center_uy,0.2041449397802353 +steady,sr,4,1.6,velocity,lower_ux,1.147894263267517 +steady,sr,4,1.6,velocity,lower_uy,0.13912279903888702 +steady,sr,5,2.0,velocity,upper_ux,1.0177524089813232 +steady,sr,5,2.0,velocity,upper_uy,0.05386026203632355 +steady,sr,5,2.0,velocity,center_ux,0.8861666917800903 +steady,sr,5,2.0,velocity,center_uy,0.12263430655002594 +steady,sr,5,2.0,velocity,lower_ux,1.1819231510162354 +steady,sr,5,2.0,velocity,lower_uy,0.13323885202407837 +steady,sr,6,2.4,velocity,upper_ux,1.008195161819458 +steady,sr,6,2.4,velocity,upper_uy,0.014142492786049843 +steady,sr,6,2.4,velocity,center_ux,0.8078836798667908 +steady,sr,6,2.4,velocity,center_uy,-0.015143074095249176 +steady,sr,6,2.4,velocity,lower_ux,1.2157058715820312 +steady,sr,6,2.4,velocity,lower_uy,0.11523539572954178 +steady,sr,7,2.8,velocity,upper_ux,1.0102243423461914 +steady,sr,7,2.8,velocity,upper_uy,-0.026136064901947975 +steady,sr,7,2.8,velocity,center_ux,0.746929943561554 +steady,sr,7,2.8,velocity,center_uy,-0.16483120620250702 +steady,sr,7,2.8,velocity,lower_ux,1.2432985305786133 +steady,sr,7,2.8,velocity,lower_uy,0.08171886205673218 +steady,sr,8,3.2,velocity,upper_ux,1.0221620798110962 +steady,sr,8,3.2,velocity,upper_uy,-0.062288571149110794 +steady,sr,8,3.2,velocity,center_ux,0.7619942426681519 +steady,sr,8,3.2,velocity,center_uy,-0.24581852555274963 +steady,sr,8,3.2,velocity,lower_ux,1.253437876701355 +steady,sr,8,3.2,velocity,lower_uy,0.031244859099388123 +steady,sr,9,3.6,velocity,upper_ux,1.0413117408752441 +steady,sr,9,3.6,velocity,upper_uy,-0.09208312630653381 +steady,sr,9,3.6,velocity,center_ux,0.8370262384414673 +steady,sr,9,3.6,velocity,center_uy,-0.253508597612381 +steady,sr,9,3.6,velocity,lower_ux,1.2327659130096436 +steady,sr,9,3.6,velocity,lower_uy,-0.02955922856926918 +steady,sr,10,4.0,velocity,upper_ux,1.0654430389404297 +steady,sr,10,4.0,velocity,upper_uy,-0.11496918648481369 +steady,sr,10,4.0,velocity,center_ux,0.9053716063499451 +steady,sr,10,4.0,velocity,center_uy,-0.24865008890628815 +steady,sr,10,4.0,velocity,lower_ux,1.180222749710083 +steady,sr,10,4.0,velocity,lower_uy,-0.08233185857534409 +steady,sr,11,4.4,velocity,upper_ux,1.0936959981918335 +steady,sr,11,4.4,velocity,upper_uy,-0.13099133968353271 +steady,sr,11,4.4,velocity,center_ux,0.9441925883293152 +steady,sr,11,4.4,velocity,center_uy,-0.24796701967716217 +steady,sr,11,4.4,velocity,lower_ux,1.115429401397705 +steady,sr,11,4.4,velocity,lower_uy,-0.10839381814002991 +steady,sr,12,4.8,velocity,upper_ux,1.1253156661987305 +steady,sr,12,4.8,velocity,upper_uy,-0.13986432552337646 +steady,sr,12,4.8,velocity,center_ux,0.954561173915863 +steady,sr,12,4.8,velocity,center_uy,-0.23597465455532074 +steady,sr,12,4.8,velocity,lower_ux,1.0615676641464233 +steady,sr,12,4.8,velocity,lower_uy,-0.10427022725343704 +steady,sr,13,5.2,velocity,upper_ux,1.1595910787582397 +steady,sr,13,5.2,velocity,upper_uy,-0.14060862362384796 +steady,sr,13,5.2,velocity,center_ux,0.9315937757492065 +steady,sr,13,5.2,velocity,center_uy,-0.19055961072444916 +steady,sr,13,5.2,velocity,lower_ux,1.0275201797485352 +steady,sr,13,5.2,velocity,lower_uy,-0.0789589136838913 +steady,sr,14,5.6,velocity,upper_ux,1.1951285600662231 +steady,sr,14,5.6,velocity,upper_uy,-0.13107864558696747 +steady,sr,14,5.6,velocity,center_ux,0.8702627420425415 +steady,sr,14,5.6,velocity,center_uy,-0.08892607688903809 +steady,sr,14,5.6,velocity,lower_ux,1.0101068019866943 +steady,sr,14,5.6,velocity,lower_uy,-0.04205452278256416 +steady,sr,15,6.0,velocity,upper_ux,1.2283167839050293 +steady,sr,15,6.0,velocity,upper_uy,-0.10802480578422546 +steady,sr,15,6.0,velocity,center_ux,0.7889258861541748 +steady,sr,15,6.0,velocity,center_uy,0.06456253677606583 +steady,sr,15,6.0,velocity,lower_ux,1.0048117637634277 +steady,sr,15,6.0,velocity,lower_uy,-0.0006465422920882702 +steady,sr,16,6.4,velocity,upper_ux,1.2517805099487305 +steady,sr,16,6.4,velocity,upper_uy,-0.06793050467967987 +steady,sr,16,6.4,velocity,center_ux,0.7465883493423462 +steady,sr,16,6.4,velocity,center_uy,0.2036489099264145 +steady,sr,16,6.4,velocity,lower_ux,1.0102595090866089 +steady,sr,16,6.4,velocity,lower_uy,0.03937116637825966 +steady,sr,17,6.8,velocity,upper_ux,1.252595067024231 +steady,sr,17,6.8,velocity,upper_uy,-0.011008501052856445 +steady,sr,17,6.8,velocity,center_ux,0.7880760431289673 +steady,sr,17,6.8,velocity,center_uy,0.25650084018707275 +steady,sr,17,6.8,velocity,lower_ux,1.025192379951477 +steady,sr,17,6.8,velocity,lower_uy,0.0740392878651619 +steady,sr,18,7.2,velocity,upper_ux,1.2190707921981812 +steady,sr,18,7.2,velocity,upper_uy,0.05160563066601753 +steady,sr,18,7.2,velocity,center_ux,0.8678009510040283 +steady,sr,18,7.2,velocity,center_uy,0.25409772992134094 +steady,sr,18,7.2,velocity,lower_ux,1.0471277236938477 +steady,sr,18,7.2,velocity,lower_uy,0.10186150670051575 +steady,sr,19,7.6,velocity,upper_ux,1.1574809551239014 +steady,sr,19,7.6,velocity,upper_uy,0.09818975627422333 +steady,sr,19,7.6,velocity,center_ux,0.9272119402885437 +steady,sr,19,7.6,velocity,center_uy,0.2518150806427002 +steady,sr,19,7.6,velocity,lower_ux,1.0739072561264038 +steady,sr,19,7.6,velocity,lower_uy,0.12269814312458038 +steady,sr,20,8.0,velocity,upper_ux,1.0922354459762573 +steady,sr,20,8.0,velocity,upper_uy,0.1134178414940834 +steady,sr,20,8.0,velocity,center_ux,0.9568525552749634 +steady,sr,20,8.0,velocity,center_uy,0.25050458312034607 +steady,sr,20,8.0,velocity,lower_ux,1.1038799285888672 +steady,sr,20,8.0,velocity,lower_uy,0.1365531086921692 +steady,sr,21,8.4,velocity,upper_ux,1.043670892715454 +steady,sr,21,8.4,velocity,upper_uy,0.1000242829322815 +steady,sr,21,8.4,velocity,center_ux,0.9570737481117249 +steady,sr,21,8.4,velocity,center_uy,0.23138286173343658 +steady,sr,21,8.4,velocity,lower_ux,1.136344313621521 +steady,sr,21,8.4,velocity,lower_uy,0.14301344752311707 +steady,sr,22,8.8,velocity,upper_ux,1.0157654285430908 +steady,sr,22,8.8,velocity,upper_uy,0.068977490067482 +steady,sr,22,8.8,velocity,center_ux,0.9215021729469299 +steady,sr,22,8.8,velocity,center_uy,0.17014920711517334 +steady,sr,22,8.8,velocity,lower_ux,1.1713058948516846 +steady,sr,22,8.8,velocity,lower_uy,0.14069052040576935 +steady,sr,23,9.2,velocity,upper_ux,1.0034594535827637 +steady,sr,23,9.2,velocity,upper_uy,0.02910667471587658 +steady,sr,23,9.2,velocity,center_ux,0.8493354320526123 +steady,sr,23,9.2,velocity,center_uy,0.04706861451268196 +steady,sr,23,9.2,velocity,lower_ux,1.207306981086731 +steady,sr,23,9.2,velocity,lower_uy,0.1270519196987152 +steady,sr,24,9.6,velocity,upper_ux,1.0030194520950317 +steady,sr,24,9.6,velocity,upper_uy,-0.013133428059518337 +steady,sr,24,9.6,velocity,center_ux,0.7723209261894226 +steady,sr,24,9.6,velocity,center_uy,-0.11562681198120117 +steady,sr,24,9.6,velocity,lower_ux,1.239756464958191 +steady,sr,24,9.6,velocity,lower_uy,0.0983295738697052 +steady,sr,25,10.0,velocity,upper_ux,1.0128482580184937 +steady,sr,25,10.0,velocity,upper_uy,-0.05225820094347 +steady,sr,25,10.0,velocity,center_ux,0.756317675113678 +steady,sr,25,10.0,velocity,center_uy,-0.2335624098777771 +steady,sr,25,10.0,velocity,lower_ux,1.2583750486373901 +steady,sr,25,10.0,velocity,lower_uy,0.05129672586917877 +steady,sr,26,10.4,velocity,upper_ux,1.0306124687194824 +steady,sr,26,10.4,velocity,upper_uy,-0.085120290517807 +steady,sr,26,10.4,velocity,center_ux,0.8189918994903564 +steady,sr,26,10.4,velocity,center_uy,-0.2605695128440857 +steady,sr,26,10.4,velocity,lower_ux,1.2476919889450073 +steady,sr,26,10.4,velocity,lower_uy,-0.011085608042776585 +steady,sr,27,10.8,velocity,upper_ux,1.0541834831237793 +steady,sr,27,10.8,velocity,upper_uy,-0.11084167659282684 +steady,sr,27,10.8,velocity,center_ux,0.8950629234313965 +steady,sr,27,10.8,velocity,center_uy,-0.25483986735343933 +steady,sr,27,10.8,velocity,lower_ux,1.2003436088562012 +steady,sr,27,10.8,velocity,lower_uy,-0.07247338443994522 +steady,sr,28,11.2,velocity,upper_ux,1.0822457075119019 +steady,sr,28,11.2,velocity,upper_uy,-0.1295013278722763 +steady,sr,28,11.2,velocity,center_ux,0.9438332915306091 +steady,sr,28,11.2,velocity,center_uy,-0.25497889518737793 +steady,sr,28,11.2,velocity,lower_ux,1.1319504976272583 +steady,sr,28,11.2,velocity,lower_uy,-0.10990150272846222 +steady,sr,29,11.6,velocity,upper_ux,1.1137899160385132 +steady,sr,29,11.6,velocity,upper_uy,-0.1411110758781433 +steady,sr,29,11.6,velocity,center_ux,0.9647085666656494 +steady,sr,29,11.6,velocity,center_uy,-0.2509985566139221 +steady,sr,29,11.6,velocity,lower_ux,1.0699477195739746 +steady,sr,29,11.6,velocity,lower_uy,-0.11402042210102081 +steady,sr,30,12.0,velocity,upper_ux,1.1482453346252441 +steady,sr,30,12.0,velocity,upper_uy,-0.14495842158794403 +steady,sr,30,12.0,velocity,center_ux,0.9552238583564758 +steady,sr,30,12.0,velocity,center_uy,-0.22188951075077057 +steady,sr,30,12.0,velocity,lower_ux,1.0292025804519653 +steady,sr,30,12.0,velocity,lower_uy,-0.09268396347761154 +steady,sr,31,12.4,velocity,upper_ux,1.184509038925171 +steady,sr,31,12.4,velocity,upper_uy,-0.13929405808448792 +steady,sr,31,12.4,velocity,center_ux,0.9070296287536621 +steady,sr,31,12.4,velocity,center_uy,-0.14164288341999054 +steady,sr,31,12.4,velocity,lower_ux,1.007786512374878 +steady,sr,31,12.4,velocity,lower_uy,-0.05718355253338814 +steady,sr,32,12.8,velocity,upper_ux,1.220196008682251 +steady,sr,32,12.8,velocity,upper_uy,-0.12097559869289398 +steady,sr,32,12.8,velocity,center_ux,0.8263378739356995 +steady,sr,32,12.8,velocity,center_uy,0.0022437169682234526 +steady,sr,32,12.8,velocity,lower_ux,0.9996958374977112 +steady,sr,32,12.8,velocity,lower_uy,-0.015219011344015598 +steady,sr,33,13.2,velocity,upper_ux,1.2496845722198486 +steady,sr,33,13.2,velocity,upper_uy,-0.08594571053981781 +steady,sr,33,13.2,velocity,center_ux,0.7606199383735657 +steady,sr,33,13.2,velocity,center_uy,0.16432766616344452 +steady,sr,33,13.2,velocity,lower_ux,1.0027767419815063 +steady,sr,33,13.2,velocity,lower_uy,0.027013979852199554 +steady,sr,34,13.6,velocity,upper_ux,1.260449767112732 +steady,sr,34,13.6,velocity,upper_uy,-0.03186316043138504 +steady,sr,34,13.6,velocity,center_ux,0.7737040519714355 +steady,sr,34,13.6,velocity,center_uy,0.25309258699417114 +steady,sr,34,13.6,velocity,lower_ux,1.0158807039260864 +steady,sr,34,13.6,velocity,lower_uy,0.06466743350028992 +steady,sr,35,14.0,velocity,upper_ux,1.237013339996338 +steady,sr,35,14.0,velocity,upper_uy,0.0342232808470726 +steady,sr,35,14.0,velocity,center_ux,0.8498707413673401 +steady,sr,35,14.0,velocity,center_uy,0.2609485685825348 +steady,sr,35,14.0,velocity,lower_ux,1.036718726158142 +steady,sr,35,14.0,velocity,lower_uy,0.09543275833129883 +steady,sr,36,14.4,velocity,upper_ux,1.1782664060592651 +steady,sr,36,14.4,velocity,upper_uy,0.09107138961553574 +steady,sr,36,14.4,velocity,center_ux,0.9187793135643005 +steady,sr,36,14.4,velocity,center_uy,0.2564398944377899 +steady,sr,36,14.4,velocity,lower_ux,1.062829852104187 +steady,sr,36,14.4,velocity,lower_uy,0.11896820366382599 +steady,sr,37,14.8,velocity,upper_ux,1.1071419715881348 +steady,sr,37,14.8,velocity,upper_uy,0.11740756034851074 +steady,sr,37,14.8,velocity,center_ux,0.9577831029891968 +steady,sr,37,14.8,velocity,center_uy,0.2577831745147705 +steady,sr,37,14.8,velocity,lower_ux,1.0923011302947998 +steady,sr,37,14.8,velocity,lower_uy,0.13542667031288147 +steady,sr,38,15.2,velocity,upper_ux,1.0503144264221191 +steady,sr,38,15.2,velocity,upper_uy,0.11097516119480133 +steady,sr,38,15.2,velocity,center_ux,0.9691451191902161 +steady,sr,38,15.2,velocity,center_uy,0.24891380965709686 +steady,sr,38,15.2,velocity,lower_ux,1.124598503112793 +steady,sr,38,15.2,velocity,lower_uy,0.1446545273065567 +steady,sr,39,15.6,velocity,upper_ux,1.016634464263916 +steady,sr,39,15.6,velocity,upper_uy,0.08310675621032715 +steady,sr,39,15.6,velocity,center_ux,0.9478209614753723 +steady,sr,39,15.6,velocity,center_uy,0.20660947263240814 +steady,sr,39,15.6,velocity,lower_ux,1.159794569015503 +steady,sr,39,15.6,velocity,lower_uy,0.1456659585237503 +steady,sr,40,16.0,velocity,upper_ux,1.0010031461715698 +steady,sr,40,16.0,velocity,upper_uy,0.044169921427965164 +steady,sr,40,16.0,velocity,center_ux,0.887004017829895 +steady,sr,40,16.0,velocity,center_uy,0.10467254370450974 +steady,sr,40,16.0,velocity,lower_ux,1.1969009637832642 +steady,sr,40,16.0,velocity,lower_uy,0.13622251152992249 +steady,sr,41,16.4,velocity,upper_ux,0.9978845715522766 +steady,sr,41,16.4,velocity,upper_uy,0.000979528995230794 +steady,sr,41,16.4,velocity,center_ux,0.8037472367286682 +steady,sr,41,16.4,velocity,center_uy,-0.056214336305856705 +steady,sr,41,16.4,velocity,lower_ux,1.232662558555603 +steady,sr,41,16.4,velocity,lower_uy,0.11269960552453995 +steady,sr,42,16.8,velocity,upper_ux,1.0051109790802002 +steady,sr,42,16.8,velocity,upper_uy,-0.040611788630485535 +steady,sr,42,16.8,velocity,center_ux,0.7583485245704651 +steady,sr,42,16.8,velocity,center_uy,-0.2059934288263321 +steady,sr,42,16.8,velocity,lower_ux,1.2584115266799927 +steady,sr,42,16.8,velocity,lower_uy,0.07081334292888641 +steady,sr,43,17.2,velocity,upper_ux,1.021004557609558 +steady,sr,43,17.2,velocity,upper_uy,-0.07640554010868073 +steady,sr,43,17.2,velocity,center_ux,0.7989364862442017 +steady,sr,43,17.2,velocity,center_uy,-0.2629692554473877 +steady,sr,43,17.2,velocity,lower_ux,1.2587424516677856 +steady,sr,43,17.2,velocity,lower_uy,0.010185898281633854 +steady,sr,44,17.6,velocity,upper_ux,1.0436530113220215 +steady,sr,44,17.6,velocity,upper_uy,-0.10494150966405869 +steady,sr,44,17.6,velocity,center_ux,0.8785211443901062 +steady,sr,44,17.6,velocity,center_uy,-0.26019877195358276 +steady,sr,44,17.6,velocity,lower_ux,1.2207157611846924 +steady,sr,44,17.6,velocity,lower_uy,-0.05695045366883278 +steady,sr,45,18.0,velocity,upper_ux,1.071182131767273 +steady,sr,45,18.0,velocity,upper_uy,-0.12620651721954346 +steady,sr,45,18.0,velocity,center_ux,0.9372557997703552 +steady,sr,45,18.0,velocity,center_uy,-0.2586687207221985 +steady,sr,45,18.0,velocity,lower_ux,1.1526108980178833 +steady,sr,45,18.0,velocity,lower_uy,-0.10590312629938126 +steady,sr,46,18.4,velocity,upper_ux,1.1023449897766113 +steady,sr,46,18.4,velocity,upper_uy,-0.14040058851242065 +steady,sr,46,18.4,velocity,center_ux,0.9676036834716797 +steady,sr,46,18.4,velocity,center_uy,-0.2593550682067871 +steady,sr,46,18.4,velocity,lower_ux,1.0832812786102295 +steady,sr,46,18.4,velocity,lower_uy,-0.12032998353242874 +steady,sr,47,18.8,velocity,upper_ux,1.13650381565094 +steady,sr,47,18.8,velocity,upper_uy,-0.14714793860912323 +steady,sr,47,18.8,velocity,center_ux,0.9700807929039001 +steady,sr,47,18.8,velocity,center_uy,-0.24312721192836761 +steady,sr,47,18.8,velocity,lower_ux,1.034494161605835 +steady,sr,47,18.8,velocity,lower_uy,-0.10472976416349411 +steady,sr,48,19.2,velocity,upper_ux,1.1727920770645142 +steady,sr,48,19.2,velocity,upper_uy,-0.14505088329315186 +steady,sr,48,19.2,velocity,center_ux,0.9361647963523865 +steady,sr,48,19.2,velocity,center_uy,-0.18419231474399567 +steady,sr,48,19.2,velocity,lower_ux,1.0078871250152588 +steady,sr,48,19.2,velocity,lower_uy,-0.07170109450817108 +steady,sr,49,19.6,velocity,upper_ux,1.2098793983459473 +steady,sr,49,19.6,velocity,upper_uy,-0.13137617707252502 +steady,sr,49,19.6,velocity,center_ux,0.8632656335830688 +steady,sr,49,19.6,velocity,center_uy,-0.059208888560533524 +steady,sr,49,19.6,velocity,lower_ux,0.9967221021652222 +steady,sr,49,19.6,velocity,lower_uy,-0.030244290828704834 +steady,sr,50,20.0,velocity,upper_ux,1.2437041997909546 +steady,sr,50,20.0,velocity,upper_uy,-0.10195624083280563 +steady,sr,50,20.0,velocity,center_ux,0.7831981778144836 +steady,sr,50,20.0,velocity,center_uy,0.11144112795591354 +steady,sr,50,20.0,velocity,lower_ux,0.9971479177474976 +steady,sr,50,20.0,velocity,lower_uy,0.013405169360339642 +steady,sr,51,20.4,velocity,upper_ux,1.2634015083312988 +steady,sr,51,20.4,velocity,upper_uy,-0.05287652835249901 +steady,sr,51,20.4,velocity,center_ux,0.7647519707679749 +steady,sr,51,20.4,velocity,center_uy,0.23733901977539062 +steady,sr,51,20.4,velocity,lower_ux,1.0079210996627808 +steady,sr,51,20.4,velocity,lower_uy,0.05368279293179512 +steady,sr,52,20.8,velocity,upper_ux,1.2519749402999878 +steady,sr,52,20.8,velocity,upper_uy,0.0131722092628479 +steady,sr,52,20.8,velocity,center_ux,0.827953040599823 +steady,sr,52,20.8,velocity,center_uy,0.2659693956375122 +steady,sr,52,20.8,velocity,lower_ux,1.027198314666748 +steady,sr,52,20.8,velocity,lower_uy,0.08735216408967972 +steady,sr,53,21.2,velocity,upper_ux,1.2005321979522705 +steady,sr,53,21.2,velocity,upper_uy,0.07814545929431915 +steady,sr,53,21.2,velocity,center_ux,0.9045042991638184 +steady,sr,53,21.2,velocity,center_uy,0.2600383460521698 +steady,sr,53,21.2,velocity,lower_ux,1.0522384643554688 +steady,sr,53,21.2,velocity,lower_uy,0.11358026415109634 +steady,sr,54,21.6,velocity,upper_ux,1.126682996749878 +steady,sr,54,21.6,velocity,upper_uy,0.11659622192382812 +steady,sr,54,21.6,velocity,center_ux,0.9528997540473938 +steady,sr,54,21.6,velocity,center_uy,0.2612273693084717 +steady,sr,54,21.6,velocity,lower_ux,1.0809729099273682 +steady,sr,54,21.6,velocity,lower_uy,0.1325877159833908 +steady,sr,55,22.0,velocity,upper_ux,1.061590313911438 +steady,sr,55,22.0,velocity,upper_uy,0.11927711218595505 +steady,sr,55,22.0,velocity,center_ux,0.9741269946098328 +steady,sr,55,22.0,velocity,center_uy,0.2591961920261383 +steady,sr,55,22.0,velocity,lower_ux,1.1128896474838257 +steady,sr,55,22.0,velocity,lower_uy,0.14443741738796234 +steady,sr,56,22.4,velocity,upper_ux,1.020642876625061 +steady,sr,56,22.4,velocity,upper_uy,0.09601153433322906 +steady,sr,56,22.4,velocity,center_ux,0.9658944606781006 +steady,sr,56,22.4,velocity,center_uy,0.23265928030014038 +steady,sr,56,22.4,velocity,lower_ux,1.1478652954101562 +steady,sr,56,22.4,velocity,lower_uy,0.14851438999176025 +steady,sr,57,22.8,velocity,upper_ux,1.0007293224334717 +steady,sr,57,22.8,velocity,upper_uy,0.05899737775325775 +steady,sr,57,22.8,velocity,center_ux,0.9190099239349365 +steady,sr,57,22.8,velocity,center_uy,0.15377290546894073 +steady,sr,57,22.8,velocity,lower_ux,1.1853046417236328 +steady,sr,57,22.8,velocity,lower_uy,0.14299482107162476 +steady,sr,58,23.2,velocity,upper_ux,0.9946262240409851 +steady,sr,58,23.2,velocity,upper_uy,0.015798361971974373 +steady,sr,58,23.2,velocity,center_ux,0.8381067514419556 +steady,sr,58,23.2,velocity,center_uy,0.0067314221523702145 +steady,sr,58,23.2,velocity,lower_ux,1.2229925394058228 +steady,sr,58,23.2,velocity,lower_uy,0.12457581609487534 +steady,sr,59,23.6,velocity,upper_ux,0.9989258646965027 +steady,sr,59,23.6,velocity,upper_uy,-0.02759060077369213 +steady,sr,59,23.6,velocity,center_ux,0.7699199914932251 +steady,sr,59,23.6,velocity,center_uy,-0.1631007194519043 +steady,sr,59,23.6,velocity,lower_ux,1.2541539669036865 +steady,sr,59,23.6,velocity,lower_uy,0.08868930488824844 +steady,sr,60,24.0,velocity,upper_ux,1.012555480003357 +steady,sr,60,24.0,velocity,upper_uy,-0.06613686680793762 +steady,sr,60,24.0,velocity,center_ux,0.781158983707428 +steady,sr,60,24.0,velocity,center_uy,-0.2571224272251129 +steady,sr,60,24.0,velocity,lower_ux,1.2650984525680542 +steady,sr,60,24.0,velocity,lower_uy,0.03240976482629776 +steady,sr,61,24.4,velocity,upper_ux,1.0338488817214966 +steady,sr,61,24.4,velocity,upper_uy,-0.09746994823217392 +steady,sr,61,24.4,velocity,center_ux,0.8570075035095215 +steady,sr,61,24.4,velocity,center_uy,-0.2652634382247925 +steady,sr,61,24.4,velocity,lower_ux,1.2392473220825195 +steady,sr,61,24.4,velocity,lower_uy,-0.03697774559259415 +steady,sr,62,24.8,velocity,upper_ux,1.0605353116989136 +steady,sr,62,24.8,velocity,upper_uy,-0.12135651707649231 +steady,sr,62,24.8,velocity,center_ux,0.9254395961761475 +steady,sr,62,24.8,velocity,center_uy,-0.26088663935661316 +steady,sr,62,24.8,velocity,lower_ux,1.1759350299835205 +steady,sr,62,24.8,velocity,lower_uy,-0.09627420455217361 +steady,sr,63,25.2,velocity,upper_ux,1.0911083221435547 +steady,sr,63,25.2,velocity,upper_uy,-0.13805751502513885 +steady,sr,63,25.2,velocity,center_ux,0.9649333953857422 +steady,sr,63,25.2,velocity,center_uy,-0.26333096623420715 +steady,sr,63,25.2,velocity,lower_ux,1.1014049053192139 +steady,sr,63,25.2,velocity,lower_uy,-0.12265011668205261 +steady,sr,64,25.6,velocity,upper_ux,1.1246415376663208 +steady,sr,64,25.6,velocity,upper_uy,-0.1475171148777008 +steady,sr,64,25.6,velocity,center_ux,0.9777995347976685 +steady,sr,64,25.6,velocity,center_uy,-0.256407231092453 +steady,sr,64,25.6,velocity,lower_ux,1.0437650680541992 +steady,sr,64,25.6,velocity,lower_uy,-0.11476103961467743 +steady,sr,65,26.0,velocity,upper_ux,1.1605168581008911 +steady,sr,65,26.0,velocity,upper_uy,-0.1487099826335907 +steady,sr,65,26.0,velocity,center_ux,0.9577252864837646 +steady,sr,65,26.0,velocity,center_uy,-0.21629256010055542 +steady,sr,65,26.0,velocity,lower_ux,1.0105557441711426 +steady,sr,65,26.0,velocity,lower_uy,-0.08536849915981293 +steady,sr,66,26.4,velocity,upper_ux,1.1981979608535767 +steady,sr,66,26.4,velocity,upper_uy,-0.1393553763628006 +steady,sr,66,26.4,velocity,center_ux,0.897066056728363 +steady,sr,66,26.4,velocity,center_uy,-0.11465798318386078 +steady,sr,66,26.4,velocity,lower_ux,0.9957216382026672 +steady,sr,66,26.4,velocity,lower_uy,-0.04530194774270058 +steady,sr,67,26.8,velocity,upper_ux,1.2348203659057617 +steady,sr,67,26.8,velocity,upper_uy,-0.11558051407337189 +steady,sr,67,26.8,velocity,center_ux,0.8122002482414246 +steady,sr,67,26.8,velocity,center_uy,0.050371140241622925 +steady,sr,67,26.8,velocity,lower_ux,0.9932716488838196 +steady,sr,67,26.8,velocity,lower_uy,-0.0011271752882748842 +steady,sr,68,27.2,velocity,upper_ux,1.2617515325546265 +steady,sr,68,27.2,velocity,upper_uy,-0.07267746329307556 +steady,sr,68,27.2,velocity,center_ux,0.7647151947021484 +steady,sr,68,27.2,velocity,center_uy,0.206771582365036 +steady,sr,68,27.2,velocity,lower_ux,1.001339316368103 +steady,sr,68,27.2,velocity,lower_uy,0.0413275808095932 +steady,sr,69,27.6,velocity,upper_ux,1.2625614404678345 +steady,sr,69,27.6,velocity,upper_uy,-0.009777503088116646 +steady,sr,69,27.6,velocity,center_ux,0.805205225944519 +steady,sr,69,27.6,velocity,center_uy,0.2666851878166199 +steady,sr,69,27.6,velocity,lower_ux,1.0185637474060059 +steady,sr,69,27.6,velocity,lower_uy,0.07778281718492508 +steady,sr,70,28.0,velocity,upper_ux,1.222171425819397 +steady,sr,70,28.0,velocity,upper_uy,0.06019454821944237 +steady,sr,70,28.0,velocity,center_ux,0.8850803375244141 +steady,sr,70,28.0,velocity,center_uy,0.26377204060554504 +steady,sr,70,28.0,velocity,lower_ux,1.042168378829956 +steady,sr,70,28.0,velocity,lower_uy,0.1067473292350769 +steady,sr,71,28.4,velocity,upper_ux,1.1498051881790161 +steady,sr,71,28.4,velocity,upper_uy,0.11056618392467499 +steady,sr,71,28.4,velocity,center_ux,0.9432731866836548 +steady,sr,71,28.4,velocity,center_uy,0.26263120770454407 +steady,sr,71,28.4,velocity,lower_ux,1.0700069665908813 +steady,sr,71,28.4,velocity,lower_uy,0.1282784789800644 +steady,sr,72,28.8,velocity,upper_ux,1.077521800994873 +steady,sr,72,28.8,velocity,upper_uy,0.12438258528709412 +steady,sr,72,28.8,velocity,center_ux,0.9735745787620544 +steady,sr,72,28.8,velocity,center_uy,0.2644480764865875 +steady,sr,72,28.8,velocity,lower_ux,1.101341962814331 +steady,sr,72,28.8,velocity,lower_uy,0.14266347885131836 +steady,sr,73,29.2,velocity,upper_ux,1.028096079826355 +steady,sr,73,29.2,velocity,upper_uy,0.10741365700960159 +steady,sr,73,29.2,velocity,center_ux,0.9768946170806885 +steady,sr,73,29.2,velocity,center_uy,0.2500157058238983 +steady,sr,73,29.2,velocity,lower_ux,1.1358143091201782 +steady,sr,73,29.2,velocity,lower_uy,0.14957588911056519 +steady,sr,74,29.6,velocity,upper_ux,1.0026570558547974 +steady,sr,74,29.6,velocity,upper_uy,0.07327184826135635 +steady,sr,74,29.6,velocity,center_ux,0.9445252418518066 +steady,sr,74,29.6,velocity,center_uy,0.192846417427063 +steady,sr,74,29.6,velocity,lower_ux,1.1730897426605225 +steady,sr,74,29.6,velocity,lower_uy,0.1476505547761917 +steady,sr,75,30.0,velocity,upper_ux,0.9930840134620667 +steady,sr,75,30.0,velocity,upper_uy,0.03094356320798397 +steady,sr,75,30.0,velocity,center_ux,0.8722801804542542 +steady,sr,75,30.0,velocity,center_uy,0.06724804639816284 +steady,sr,75,30.0,velocity,lower_ux,1.211613655090332 +steady,sr,75,30.0,velocity,lower_uy,0.13402368128299713 +steady,sr,76,30.4,velocity,upper_ux,0.9942694902420044 +steady,sr,76,30.4,velocity,upper_uy,-0.013505987823009491 +steady,sr,76,30.4,velocity,center_ux,0.7905493974685669 +steady,sr,76,30.4,velocity,center_uy,-0.10803220421075821 +steady,sr,76,30.4,velocity,lower_ux,1.2464929819107056 +steady,sr,76,30.4,velocity,lower_uy,0.10429041087627411 +steady,sr,77,30.8,velocity,upper_ux,1.0053050518035889 +steady,sr,77,30.8,velocity,upper_uy,-0.05447915196418762 +steady,sr,77,30.8,velocity,center_ux,0.7699694037437439 +steady,sr,77,30.8,velocity,center_uy,-0.23910851776599884 +steady,sr,77,30.8,velocity,lower_ux,1.2666105031967163 +steady,sr,77,30.8,velocity,lower_uy,0.05405396968126297 +steady,sr,78,31.2,velocity,upper_ux,1.0248045921325684 +steady,sr,78,31.2,velocity,upper_uy,-0.08860883861780167 +steady,sr,78,31.2,velocity,center_ux,0.8324585556983948 +steady,sr,78,31.2,velocity,center_uy,-0.2690258026123047 +steady,sr,78,31.2,velocity,lower_ux,1.254150152206421 +steady,sr,78,31.2,velocity,lower_uy,-0.014148137532174587 +steady,sr,79,31.6,velocity,upper_ux,1.050358533859253 +steady,sr,79,31.6,velocity,upper_uy,-0.11512890458106995 +steady,sr,79,31.6,velocity,center_ux,0.9088587164878845 +steady,sr,79,31.6,velocity,center_uy,-0.26298561692237854 +steady,sr,79,31.6,velocity,lower_ux,1.1999952793121338 +steady,sr,79,31.6,velocity,lower_uy,-0.0812835693359375 +steady,sr,80,32.0,velocity,upper_ux,1.080124855041504 +steady,sr,80,32.0,velocity,upper_uy,-0.1343362033367157 +steady,sr,80,32.0,velocity,center_ux,0.9577400088310242 +steady,sr,80,32.0,velocity,center_uy,-0.26470205187797546 +steady,sr,80,32.0,velocity,lower_ux,1.1236025094985962 +steady,sr,80,32.0,velocity,lower_uy,-0.12038585543632507 +steady,sr,81,32.4,velocity,upper_ux,1.1128350496292114 +steady,sr,81,32.4,velocity,upper_uy,-0.1463581919670105 +steady,sr,81,32.4,velocity,center_ux,0.9798202514648438 +steady,sr,81,32.4,velocity,center_uy,-0.2638554871082306 +steady,sr,81,32.4,velocity,lower_ux,1.0572514533996582 +steady,sr,81,32.4,velocity,lower_uy,-0.12227831780910492 +steady,sr,82,32.8,velocity,upper_ux,1.1480740308761597 +steady,sr,82,32.8,velocity,upper_uy,-0.1505925953388214 +steady,sr,82,32.8,velocity,center_ux,0.9723703861236572 +steady,sr,82,32.8,velocity,center_uy,-0.23901675641536713 +steady,sr,82,32.8,velocity,lower_ux,1.0161092281341553 +steady,sr,82,32.8,velocity,lower_uy,-0.09791550785303116 +steady,sr,83,33.2,velocity,upper_ux,1.1857550144195557 +steady,sr,83,33.2,velocity,upper_uy,-0.14518022537231445 +steady,sr,83,33.2,velocity,center_ux,0.9259811639785767 +steady,sr,83,33.2,velocity,center_uy,-0.16125501692295074 +steady,sr,83,33.2,velocity,lower_ux,0.9966250061988831 +steady,sr,83,33.2,velocity,lower_uy,-0.06006021425127983 +steady,sr,84,33.6,velocity,upper_ux,1.2239447832107544 +steady,sr,84,33.6,velocity,upper_uy,-0.12674932181835175 +steady,sr,84,33.6,velocity,center_ux,0.8445175886154175 +steady,sr,84,33.6,velocity,center_uy,-0.012730495072901249 +steady,sr,84,33.6,velocity,lower_ux,0.9910370707511902 +steady,sr,84,33.6,velocity,lower_uy,-0.01620880514383316 +steady,sr,85,34.0,velocity,upper_ux,1.2562392950057983 +steady,sr,85,34.0,velocity,upper_uy,-0.0904388427734375 +steady,sr,85,34.0,velocity,center_ux,0.7750226855278015 +steady,sr,85,34.0,velocity,center_uy,0.16166114807128906 +steady,sr,85,34.0,velocity,lower_ux,0.9961662292480469 +steady,sr,85,34.0,velocity,lower_uy,0.02781536802649498 +steady,sr,86,34.4,velocity,upper_ux,1.2681381702423096 +steady,sr,86,34.4,velocity,upper_uy,-0.03292949125170708 +steady,sr,86,34.4,velocity,center_ux,0.785624086856842 +steady,sr,86,34.4,velocity,center_uy,0.2592531144618988 +steady,sr,86,34.4,velocity,lower_ux,1.0108548402786255 +steady,sr,86,34.4,velocity,lower_uy,0.0668860524892807 +steady,sr,87,34.8,velocity,upper_ux,1.2411631345748901 +steady,sr,87,34.8,velocity,upper_uy,0.03844854235649109 +steady,sr,87,34.8,velocity,center_ux,0.8614013195037842 +steady,sr,87,34.8,velocity,center_uy,0.2677766680717468 +steady,sr,87,34.8,velocity,lower_ux,1.032676339149475 +steady,sr,87,34.8,velocity,lower_uy,0.09859336912631989 +steady,sr,88,35.2,velocity,upper_ux,1.1748991012573242 +steady,sr,88,35.2,velocity,upper_uy,0.09922249615192413 +steady,sr,88,35.2,velocity,center_ux,0.9293643236160278 +steady,sr,88,35.2,velocity,center_uy,0.2634167969226837 +steady,sr,88,35.2,velocity,lower_ux,1.0594682693481445 +steady,sr,88,35.2,velocity,lower_uy,0.12269618362188339 +steady,sr,89,35.6,velocity,upper_ux,1.0977638959884644 +steady,sr,89,35.6,velocity,upper_uy,0.12563477456569672 +steady,sr,89,35.6,velocity,center_ux,0.9685957431793213 +steady,sr,89,35.6,velocity,center_uy,0.26644906401634216 +steady,sr,89,35.6,velocity,lower_ux,1.0900498628616333 +steady,sr,89,35.6,velocity,lower_uy,0.13955168426036835 +steady,sr,90,36.0,velocity,upper_ux,1.039283275604248 +steady,sr,90,36.0,velocity,upper_uy,0.1169244572520256 +steady,sr,90,36.0,velocity,center_ux,0.9820442795753479 +steady,sr,90,36.0,velocity,center_uy,0.26067444682121277 +steady,sr,90,36.0,velocity,lower_ux,1.123847246170044 +steady,sr,90,36.0,velocity,lower_uy,0.1491456776857376 +steady,sr,91,36.4,velocity,upper_ux,1.0069106817245483 +steady,sr,91,36.4,velocity,upper_uy,0.08672424405813217 +steady,sr,91,36.4,velocity,center_ux,0.9634642601013184 +steady,sr,91,36.4,velocity,center_uy,0.22210828959941864 +steady,sr,91,36.4,velocity,lower_ux,1.1606184244155884 +steady,sr,91,36.4,velocity,lower_uy,0.15048746764659882 +steady,sr,92,36.8,velocity,upper_ux,0.9931507706642151 +steady,sr,92,36.8,velocity,upper_uy,0.04605573043227196 +steady,sr,92,36.8,velocity,center_ux,0.9037211537361145 +steady,sr,92,36.8,velocity,center_uy,0.12110867351293564 +steady,sr,92,36.8,velocity,lower_ux,1.199223279953003 +steady,sr,92,36.8,velocity,lower_uy,0.14125080406665802 +steady,sr,93,37.2,velocity,upper_ux,0.9911157488822937 +steady,sr,93,37.2,velocity,upper_uy,0.0013312111841514707 +steady,sr,93,37.2,velocity,center_ux,0.8179397583007812 +steady,sr,93,37.2,velocity,center_uy,-0.046071454882621765 +steady,sr,93,37.2,velocity,lower_ux,1.2364072799682617 +steady,sr,93,37.2,velocity,lower_uy,0.11741414666175842 +steady,sr,94,37.6,velocity,upper_ux,0.9992721676826477 +steady,sr,94,37.6,velocity,upper_uy,-0.041625868529081345 +steady,sr,94,37.6,velocity,center_ux,0.7685277462005615 +steady,sr,94,37.6,velocity,center_uy,-0.2066023051738739 +steady,sr,94,37.6,velocity,lower_ux,1.2637288570404053 +steady,sr,94,37.6,velocity,lower_uy,0.07400835305452347 +steady,sr,95,38.0,velocity,upper_ux,1.0165715217590332 +steady,sr,95,38.0,velocity,upper_uy,-0.07846911251544952 +steady,sr,95,38.0,velocity,center_ux,0.807895839214325 +steady,sr,95,38.0,velocity,center_uy,-0.26869669556617737 +steady,sr,95,38.0,velocity,lower_ux,1.2642947435379028 +steady,sr,95,38.0,velocity,lower_uy,0.009853433817625046 +steady,sr,96,38.4,velocity,upper_ux,1.0407090187072754 +steady,sr,96,38.4,velocity,upper_uy,-0.10767648369073868 +steady,sr,96,38.4,velocity,center_ux,0.887859046459198 +steady,sr,96,38.4,velocity,center_uy,-0.26580533385276794 +steady,sr,96,38.4,velocity,lower_ux,1.2227084636688232 +steady,sr,96,38.4,velocity,lower_uy,-0.06177086383104324 +steady,sr,97,38.8,velocity,upper_ux,1.0694293975830078 +steady,sr,97,38.8,velocity,upper_uy,-0.12939263880252838 +steady,sr,97,38.8,velocity,center_ux,0.9465696215629578 +steady,sr,97,38.8,velocity,center_uy,-0.26483088731765747 +steady,sr,97,38.8,velocity,lower_ux,1.1486457586288452 +steady,sr,97,38.8,velocity,lower_uy,-0.1131054013967514 +steady,sr,98,39.2,velocity,upper_ux,1.1011966466903687 +steady,sr,98,39.2,velocity,upper_uy,-0.1439143419265747 +steady,sr,98,39.2,velocity,center_ux,0.9772710204124451 +steady,sr,98,39.2,velocity,center_uy,-0.2673112154006958 +steady,sr,98,39.2,velocity,lower_ux,1.0749099254608154 +steady,sr,98,39.2,velocity,lower_uy,-0.12669087946414948 +steady,sr,99,39.6,velocity,upper_ux,1.135704755783081 +steady,sr,99,39.6,velocity,upper_uy,-0.1509568691253662 +steady,sr,99,39.6,velocity,center_ux,0.981019139289856 +steady,sr,99,39.6,velocity,center_uy,-0.2540379464626312 +steady,sr,99,39.6,velocity,lower_ux,1.0248667001724243 +steady,sr,99,39.6,velocity,lower_uy,-0.10900289565324783 +steady,sr,100,40.0,velocity,upper_ux,1.1729846000671387 +steady,sr,100,40.0,velocity,upper_uy,-0.14914445579051971 +steady,sr,100,40.0,velocity,center_ux,0.9491497278213501 +steady,sr,100,40.0,velocity,center_uy,-0.19810408353805542 +steady,sr,100,40.0,velocity,lower_ux,0.9994858503341675 +steady,sr,100,40.0,velocity,lower_uy,-0.07424956560134888 +steady,sr,101,40.4,velocity,upper_ux,1.2118356227874756 +steady,sr,101,40.4,velocity,upper_uy,-0.1355963796377182 +steady,sr,101,40.4,velocity,center_ux,0.8770440816879272 +steady,sr,101,40.4,velocity,center_uy,-0.07252451777458191 +steady,sr,101,40.4,velocity,lower_ux,0.9903334975242615 +steady,sr,101,40.4,velocity,lower_uy,-0.03147822618484497 +steady,sr,102,40.8,velocity,upper_ux,1.2477562427520752 +steady,sr,102,40.8,velocity,upper_uy,-0.10577088594436646 +steady,sr,102,40.8,velocity,center_ux,0.7948356866836548 +steady,sr,102,40.8,velocity,center_uy,0.10527164489030838 +steady,sr,102,40.8,velocity,lower_ux,0.9923644065856934 +steady,sr,102,40.8,velocity,lower_uy,0.013400502502918243 +steady,sr,103,41.2,velocity,upper_ux,1.26880943775177 +steady,sr,103,41.2,velocity,upper_uy,-0.05495782941579819 +steady,sr,103,41.2,velocity,center_ux,0.7733052968978882 +steady,sr,103,41.2,velocity,center_uy,0.23976099491119385 +steady,sr,103,41.2,velocity,lower_ux,1.004135251045227 +steady,sr,103,41.2,velocity,lower_uy,0.054797347635030746 +steady,sr,104,41.6,velocity,upper_ux,1.2559707164764404 +steady,sr,104,41.6,velocity,upper_uy,0.01445852406322956 +steady,sr,104,41.6,velocity,center_ux,0.835248589515686 +steady,sr,104,41.6,velocity,center_uy,0.2707573175430298 +steady,sr,104,41.6,velocity,lower_ux,1.0238490104675293 +steady,sr,104,41.6,velocity,lower_uy,0.08923129737377167 +steady,sr,105,42.0,velocity,upper_ux,1.2000199556350708 +steady,sr,105,42.0,velocity,upper_uy,0.08288996666669846 +steady,sr,105,42.0,velocity,center_ux,0.9112821817398071 +steady,sr,105,42.0,velocity,center_uy,0.2646496891975403 +steady,sr,105,42.0,velocity,lower_ux,1.0493797063827515 +steady,sr,105,42.0,velocity,lower_uy,0.11595197767019272 +steady,sr,106,42.4,velocity,upper_ux,1.121555209159851 +steady,sr,106,42.4,velocity,upper_uy,0.12243955582380295 +steady,sr,106,42.4,velocity,center_ux,0.9598671197891235 +steady,sr,106,42.4,velocity,center_uy,0.2666005492210388 +steady,sr,106,42.4,velocity,lower_ux,1.0790629386901855 +steady,sr,106,42.4,velocity,lower_uy,0.13527971506118774 +steady,sr,107,42.8,velocity,upper_ux,1.0543878078460693 +steady,sr,107,42.8,velocity,upper_uy,0.12399522960186005 +steady,sr,107,42.8,velocity,center_ux,0.9824404716491699 +steady,sr,107,42.8,velocity,center_uy,0.26644930243492126 +steady,sr,107,42.8,velocity,lower_ux,1.1120929718017578 +steady,sr,107,42.8,velocity,lower_uy,0.14742422103881836 +steady,sr,108,43.2,velocity,upper_ux,1.0137314796447754 +steady,sr,108,43.2,velocity,upper_uy,0.09909255802631378 +steady,sr,108,43.2,velocity,center_ux,0.9762626886367798 +steady,sr,108,43.2,velocity,center_uy,0.24277116358280182 +steady,sr,108,43.2,velocity,lower_ux,1.1481114625930786 +steady,sr,108,43.2,velocity,lower_uy,0.1517833024263382 +steady,sr,109,43.6,velocity,upper_ux,0.9948194622993469 +steady,sr,109,43.6,velocity,upper_uy,0.060815583914518356 +steady,sr,109,43.6,velocity,center_ux,0.9307254552841187 +steady,sr,109,43.6,velocity,center_uy,0.16605323553085327 +steady,sr,109,43.6,velocity,lower_ux,1.186310887336731 +steady,sr,109,43.6,velocity,lower_uy,0.14650210738182068 +steady,sr,110,44.0,velocity,upper_ux,0.9894126653671265 +steady,sr,110,44.0,velocity,upper_uy,0.016601599752902985 +steady,sr,110,44.0,velocity,center_ux,0.848926842212677 +steady,sr,110,44.0,velocity,center_uy,0.017009349539875984 +steady,sr,110,44.0,velocity,lower_ux,1.2247384786605835 +steady,sr,110,44.0,velocity,lower_uy,0.12812697887420654 +steady,sr,111,44.4,velocity,upper_ux,0.9944882988929749 +steady,sr,111,44.4,velocity,upper_uy,-0.027782415971159935 +steady,sr,111,44.4,velocity,center_ux,0.7779639959335327 +steady,sr,111,44.4,velocity,center_uy,-0.16008752584457397 +steady,sr,111,44.4,velocity,lower_ux,1.2572540044784546 +steady,sr,111,44.4,velocity,lower_uy,0.0916576087474823 +steady,sr,112,44.8,velocity,upper_ux,1.0092166662216187 +steady,sr,112,44.8,velocity,upper_uy,-0.06715802848339081 +steady,sr,112,44.8,velocity,center_ux,0.7872455716133118 +steady,sr,112,44.8,velocity,center_uy,-0.26023876667022705 +steady,sr,112,44.8,velocity,lower_ux,1.2693110704421997 +steady,sr,112,44.8,velocity,lower_uy,0.033534079790115356 +steady,sr,113,45.2,velocity,upper_ux,1.0316203832626343 +steady,sr,113,45.2,velocity,upper_uy,-0.09909205138683319 +steady,sr,113,45.2,velocity,center_ux,0.8631380200386047 +steady,sr,113,45.2,velocity,center_uy,-0.2692450284957886 +steady,sr,113,45.2,velocity,lower_ux,1.2422066926956177 +steady,sr,113,45.2,velocity,lower_uy,-0.038964398205280304 +steady,sr,114,45.6,velocity,upper_ux,1.059064269065857 +steady,sr,114,45.6,velocity,upper_uy,-0.12335386127233505 +steady,sr,114,45.6,velocity,center_ux,0.931580662727356 +steady,sr,114,45.6,velocity,center_uy,-0.26484158635139465 +steady,sr,114,45.6,velocity,lower_ux,1.1749544143676758 +steady,sr,114,45.6,velocity,lower_uy,-0.10072045028209686 +steady,sr,115,46.0,velocity,upper_ux,1.0898160934448242 +steady,sr,115,46.0,velocity,upper_uy,-0.14034000039100647 +steady,sr,115,46.0,velocity,center_ux,0.9709479808807373 +steady,sr,115,46.0,velocity,center_uy,-0.26820921897888184 +steady,sr,115,46.0,velocity,lower_ux,1.096419095993042 +steady,sr,115,46.0,velocity,lower_uy,-0.1273198127746582 +steady,sr,116,46.4,velocity,upper_ux,1.1235289573669434 +steady,sr,116,46.4,velocity,upper_uy,-0.15003284811973572 +steady,sr,116,46.4,velocity,center_ux,0.9845936298370361 +steady,sr,116,46.4,velocity,center_uy,-0.2631499767303467 +steady,sr,116,46.4,velocity,lower_ux,1.0371029376983643 +steady,sr,116,46.4,velocity,lower_uy,-0.1182192787528038 +steady,sr,117,46.8,velocity,upper_ux,1.160166621208191 +steady,sr,117,46.8,velocity,upper_uy,-0.15148966014385223 +steady,sr,117,46.8,velocity,center_ux,0.9664026498794556 +steady,sr,117,46.8,velocity,center_uy,-0.22563327848911285 +steady,sr,117,46.8,velocity,lower_ux,1.0044989585876465 +steady,sr,117,46.8,velocity,lower_uy,-0.08760717511177063 +steady,sr,118,47.2,velocity,upper_ux,1.199070930480957 +steady,sr,118,47.2,velocity,upper_uy,-0.14236216247081757 +steady,sr,118,47.2,velocity,center_ux,0.9072363972663879 +steady,sr,118,47.2,velocity,center_uy,-0.12533876299858093 +steady,sr,118,47.2,velocity,lower_ux,0.9911213517189026 +steady,sr,118,47.2,velocity,lower_uy,-0.0466378889977932 +steady,sr,119,47.6,velocity,upper_ux,1.2371509075164795 +steady,sr,119,47.6,velocity,upper_uy,-0.118588887155056 +steady,sr,119,47.6,velocity,center_ux,0.8216073513031006 +steady,sr,119,47.6,velocity,center_uy,0.04278979450464249 +steady,sr,119,47.6,velocity,lower_ux,0.9898779988288879 +steady,sr,119,47.6,velocity,lower_uy,-0.001632425468415022 +steady,sr,120,48.0,velocity,upper_ux,1.26517915725708 +steady,sr,120,48.0,velocity,upper_uy,-0.07499515265226364 +steady,sr,120,48.0,velocity,center_ux,0.7712075114250183 +steady,sr,120,48.0,velocity,center_uy,0.20596455037593842 +steady,sr,120,48.0,velocity,lower_ux,0.9984697103500366 +steady,sr,120,48.0,velocity,lower_uy,0.04164401441812515 +steady,sr,121,48.4,velocity,upper_ux,1.2657424211502075 +steady,sr,121,48.4,velocity,upper_uy,-0.010202530771493912 +steady,sr,121,48.4,velocity,center_ux,0.8095860481262207 +steady,sr,121,48.4,velocity,center_uy,0.2697383761405945 +steady,sr,121,48.4,velocity,lower_ux,1.015781044960022 +steady,sr,121,48.4,velocity,lower_uy,0.0787452906370163 +steady,sr,122,48.8,velocity,upper_ux,1.22321355342865 +steady,sr,122,48.8,velocity,upper_uy,0.06237931177020073 +steady,sr,122,48.8,velocity,center_ux,0.8891468048095703 +steady,sr,122,48.8,velocity,center_uy,0.2669430077075958 +steady,sr,122,48.8,velocity,lower_ux,1.0397772789001465 +steady,sr,122,48.8,velocity,lower_uy,0.10812268406152725 +steady,sr,123,49.2,velocity,upper_ux,1.1477365493774414 +steady,sr,123,49.2,velocity,upper_uy,0.11436749249696732 +steady,sr,123,49.2,velocity,center_ux,0.9476776719093323 +steady,sr,123,49.2,velocity,center_uy,0.26600584387779236 +steady,sr,123,49.2,velocity,lower_ux,1.068414568901062 +steady,sr,123,49.2,velocity,lower_uy,0.1299557089805603 +steady,sr,124,49.6,velocity,upper_ux,1.0733702182769775 +steady,sr,124,49.6,velocity,upper_uy,0.12798736989498138 +steady,sr,124,49.6,velocity,center_ux,0.9789095520973206 +steady,sr,124,49.6,velocity,center_uy,0.2688629627227783 +steady,sr,124,49.6,velocity,lower_ux,1.100602149963379 +steady,sr,124,49.6,velocity,lower_uy,0.14457643032073975 +steady,sr,125,50.0,velocity,upper_ux,1.023458480834961 +steady,sr,125,50.0,velocity,upper_uy,0.11002275347709656 +steady,sr,125,50.0,velocity,center_ux,0.9836272597312927 +steady,sr,125,50.0,velocity,center_uy,0.25640174746513367 +steady,sr,125,50.0,velocity,lower_ux,1.135707974433899 +steady,sr,125,50.0,velocity,lower_uy,0.15173844993114471 +steady,sr,126,50.4,velocity,upper_ux,0.9982319474220276 +steady,sr,126,50.4,velocity,upper_uy,0.07497522979974747 +steady,sr,126,50.4,velocity,center_ux,0.9524234533309937 +steady,sr,126,50.4,velocity,center_uy,0.2014862298965454 +steady,sr,126,50.4,velocity,lower_ux,1.1732146739959717 +steady,sr,126,50.4,velocity,lower_uy,0.15003842115402222 +steady,sr,127,50.8,velocity,upper_ux,0.9890944957733154 +steady,sr,127,50.8,velocity,upper_uy,0.031976595520973206 +steady,sr,127,50.8,velocity,center_ux,0.8803538680076599 +steady,sr,127,50.8,velocity,center_uy,0.07627992331981659 +steady,sr,127,50.8,velocity,lower_ux,1.2121074199676514 +steady,sr,127,50.8,velocity,lower_uy,0.13659654557704926 +steady,sr,128,51.2,velocity,upper_ux,0.9909722805023193 +steady,sr,128,51.2,velocity,upper_uy,-0.01314890943467617 +steady,sr,128,51.2,velocity,center_ux,0.7972056865692139 +steady,sr,128,51.2,velocity,center_uy,-0.10286488384008408 +steady,sr,128,51.2,velocity,lower_ux,1.248069405555725 +steady,sr,128,51.2,velocity,lower_uy,0.1067829355597496 +steady,sr,129,51.6,velocity,upper_ux,1.0028369426727295 +steady,sr,129,51.6,velocity,upper_uy,-0.05478141829371452 +steady,sr,129,51.6,velocity,center_ux,0.7744635939598083 +steady,sr,129,51.6,velocity,center_uy,-0.23972280323505402 +steady,sr,129,51.6,velocity,lower_ux,1.2694830894470215 +steady,sr,129,51.6,velocity,lower_uy,0.055754370987415314 +steady,sr,130,52.0,velocity,upper_ux,1.0231338739395142 +steady,sr,130,52.0,velocity,upper_uy,-0.08942031860351562 +steady,sr,130,52.0,velocity,center_ux,0.8363121151924133 +steady,sr,130,52.0,velocity,center_uy,-0.27177584171295166 +steady,sr,130,52.0,velocity,lower_ux,1.2571238279342651 +steady,sr,130,52.0,velocity,lower_uy,-0.014300866983830929 +steady,sr,131,52.4,velocity,upper_ux,1.0490728616714478 +steady,sr,131,52.4,velocity,upper_uy,-0.11629574745893478 +steady,sr,131,52.4,velocity,center_ux,0.9126877784729004 +steady,sr,131,52.4,velocity,center_uy,-0.26562121510505676 +steady,sr,131,52.4,velocity,lower_ux,1.200735092163086 +steady,sr,131,52.4,velocity,lower_uy,-0.08356155455112457 +steady,sr,132,52.8,velocity,upper_ux,1.0787619352340698 +steady,sr,132,52.8,velocity,upper_uy,-0.13573592901229858 +steady,sr,132,52.8,velocity,center_ux,0.9613010287284851 +steady,sr,132,52.8,velocity,center_uy,-0.26767197251319885 +steady,sr,132,52.8,velocity,lower_ux,1.1211239099502563 +steady,sr,132,52.8,velocity,lower_uy,-0.1235315129160881 +steady,sr,133,53.2,velocity,upper_ux,1.1116113662719727 +steady,sr,133,53.2,velocity,upper_uy,-0.1479758620262146 +steady,sr,133,53.2,velocity,center_ux,0.9839054942131042 +steady,sr,133,53.2,velocity,center_uy,-0.2679382264614105 +steady,sr,133,53.2,velocity,lower_ux,1.0530296564102173 +steady,sr,133,53.2,velocity,lower_uy,-0.1250057816505432 +steady,sr,134,53.6,velocity,upper_ux,1.1474689245224 +steady,sr,134,53.6,velocity,upper_uy,-0.15242955088615417 +steady,sr,134,53.6,velocity,center_ux,0.9780353307723999 +steady,sr,134,53.6,velocity,center_uy,-0.24503156542778015 +steady,sr,134,53.6,velocity,lower_ux,1.0119836330413818 +steady,sr,134,53.6,velocity,lower_uy,-0.09986356645822525 +steady,sr,135,54.0,velocity,upper_ux,1.1860253810882568 +steady,sr,135,54.0,velocity,upper_uy,-0.1472768783569336 +steady,sr,135,54.0,velocity,center_ux,0.9333299398422241 +steady,sr,135,54.0,velocity,center_uy,-0.16923195123672485 +steady,sr,135,54.0,velocity,lower_ux,0.9934439063072205 +steady,sr,135,54.0,velocity,lower_uy,-0.061408963054418564 +steady,sr,136,54.4,velocity,upper_ux,1.2251418828964233 +steady,sr,136,54.4,velocity,upper_uy,-0.12901638448238373 +steady,sr,136,54.4,velocity,center_ux,0.8520398736000061 +steady,sr,136,54.4,velocity,center_uy,-0.020248081535100937 +steady,sr,136,54.4,velocity,lower_ux,0.9886645674705505 +steady,sr,136,54.4,velocity,lower_uy,-0.01701173558831215 +steady,sr,137,54.8,velocity,upper_ux,1.2581020593643188 +steady,sr,137,54.8,velocity,upper_uy,-0.09257353842258453 +steady,sr,137,54.8,velocity,center_ux,0.7802638411521912 +steady,sr,137,54.8,velocity,center_uy,0.15846475958824158 +steady,sr,137,54.8,velocity,lower_ux,0.9939358234405518 +steady,sr,137,54.8,velocity,lower_uy,0.02758891135454178 +steady,sr,138,55.2,velocity,upper_ux,1.2702947854995728 +steady,sr,138,55.2,velocity,upper_uy,-0.034196916967630386 +steady,sr,138,55.2,velocity,center_ux,0.7882731556892395 +steady,sr,138,55.2,velocity,center_uy,0.26055437326431274 +steady,sr,138,55.2,velocity,lower_ux,1.0085560083389282 +steady,sr,138,55.2,velocity,lower_uy,0.0671815574169159 +steady,sr,139,55.6,velocity,upper_ux,1.2427951097488403 +steady,sr,139,55.6,velocity,upper_uy,0.038893330842256546 +steady,sr,139,55.6,velocity,center_ux,0.8635540008544922 +steady,sr,139,55.6,velocity,center_uy,0.2700498104095459 +steady,sr,139,55.6,velocity,lower_ux,1.0307209491729736 +steady,sr,139,55.6,velocity,lower_uy,0.09926427155733109 +steady,sr,140,56.0,velocity,upper_ux,1.1748219728469849 +steady,sr,140,56.0,velocity,upper_uy,0.10130856186151505 +steady,sr,140,56.0,velocity,center_ux,0.9320085048675537 +steady,sr,140,56.0,velocity,center_uy,0.2655920088291168 +steady,sr,140,56.0,velocity,lower_ux,1.058156132698059 +steady,sr,140,56.0,velocity,lower_uy,0.12363747507333755 +steady,sr,141,56.4,velocity,upper_ux,1.0959128141403198 +steady,sr,141,56.4,velocity,upper_uy,0.1282159686088562 +steady,sr,141,56.4,velocity,center_ux,0.9719775915145874 +steady,sr,141,56.4,velocity,center_uy,0.26913222670555115 +steady,sr,141,56.4,velocity,lower_ux,1.0893909931182861 +steady,sr,141,56.4,velocity,lower_uy,0.1407191902399063 +steady,sr,142,56.8,velocity,upper_ux,1.0364327430725098 +steady,sr,142,56.8,velocity,upper_uy,0.11906357109546661 +steady,sr,142,56.8,velocity,center_ux,0.9863014221191406 +steady,sr,142,56.8,velocity,center_uy,0.2645952105522156 +steady,sr,142,56.8,velocity,lower_ux,1.1234976053237915 +steady,sr,142,56.8,velocity,lower_uy,0.1505146324634552 +steady,sr,143,57.2,velocity,upper_ux,1.003674030303955 +steady,sr,143,57.2,velocity,upper_uy,0.08828789740800858 +steady,sr,143,57.2,velocity,center_ux,0.9685871005058289 +steady,sr,143,57.2,velocity,center_uy,0.22792093455791473 +steady,sr,143,57.2,velocity,lower_ux,1.1601779460906982 +steady,sr,143,57.2,velocity,lower_uy,0.1520794928073883 +steady,sr,144,57.6,velocity,upper_ux,0.9901491403579712 +steady,sr,144,57.6,velocity,upper_uy,0.047170039266347885 +steady,sr,144,57.6,velocity,center_ux,0.9096193909645081 +steady,sr,144,57.6,velocity,center_uy,0.12835365533828735 +steady,sr,144,57.6,velocity,lower_ux,1.1989761590957642 +steady,sr,144,57.6,velocity,lower_uy,0.1430574357509613 +steady,sr,145,58.0,velocity,upper_ux,0.9887243509292603 +steady,sr,145,58.0,velocity,upper_uy,0.00202190806157887 +steady,sr,145,58.0,velocity,center_ux,0.8235576748847961 +steady,sr,145,58.0,velocity,center_uy,-0.04007193073630333 +steady,sr,145,58.0,velocity,lower_ux,1.2369974851608276 +steady,sr,145,58.0,velocity,lower_uy,0.11938514560461044 +steady,sr,146,58.4,velocity,upper_ux,0.9975208044052124 +steady,sr,146,58.4,velocity,upper_uy,-0.04143812507390976 +steady,sr,146,58.4,velocity,center_ux,0.7723178267478943 +steady,sr,146,58.4,velocity,center_uy,-0.20500510931015015 +steady,sr,146,58.4,velocity,lower_ux,1.2654969692230225 +steady,sr,146,58.4,velocity,lower_uy,0.07578977942466736 +steady,sr,147,58.8,velocity,upper_ux,1.015323519706726 +steady,sr,147,58.8,velocity,upper_uy,-0.07871567457914352 +steady,sr,147,58.8,velocity,center_ux,0.8102676272392273 +steady,sr,147,58.8,velocity,center_uy,-0.27027785778045654 +steady,sr,147,58.8,velocity,lower_ux,1.2667502164840698 +steady,sr,147,58.8,velocity,lower_uy,0.010728074237704277 +steady,sr,148,59.2,velocity,upper_ux,1.0395216941833496 +steady,sr,148,59.2,velocity,upper_uy,-0.10824575275182724 +steady,sr,148,59.2,velocity,center_ux,0.8899146914482117 +steady,sr,148,59.2,velocity,center_uy,-0.2676438093185425 +steady,sr,148,59.2,velocity,lower_ux,1.2241668701171875 +steady,sr,148,59.2,velocity,lower_uy,-0.06243610009551048 +steady,sr,149,59.6,velocity,upper_ux,1.068071722984314 +steady,sr,149,59.6,velocity,upper_uy,-0.130181685090065 +steady,sr,149,59.6,velocity,center_ux,0.9484566450119019 +steady,sr,149,59.6,velocity,center_uy,-0.266662061214447 +steady,sr,149,59.6,velocity,lower_ux,1.14790678024292 +steady,sr,149,59.6,velocity,lower_uy,-0.11492663621902466 +steady,sr,150,60.0,velocity,upper_ux,1.0999985933303833 +steady,sr,150,60.0,velocity,upper_uy,-0.14489106833934784 +steady,sr,150,60.0,velocity,center_ux,0.9796115756034851 +steady,sr,150,60.0,velocity,center_uy,-0.2697281539440155 +steady,sr,150,60.0,velocity,lower_ux,1.072635531425476 +steady,sr,150,60.0,velocity,lower_uy,-0.12870609760284424 +steady,sr,151,60.4,velocity,upper_ux,1.1350092887878418 +steady,sr,151,60.4,velocity,upper_uy,-0.15214277803897858 +steady,sr,151,60.4,velocity,center_ux,0.9846206903457642 +steady,sr,151,60.4,velocity,center_uy,-0.25779759883880615 +steady,sr,151,60.4,velocity,lower_ux,1.0223112106323242 +steady,sr,151,60.4,velocity,lower_uy,-0.11068170517683029 +steady,sr,152,60.8,velocity,upper_ux,1.172935962677002 +steady,sr,152,60.8,velocity,upper_uy,-0.15056174993515015 +steady,sr,152,60.8,velocity,center_ux,0.9543429613113403 +steady,sr,152,60.8,velocity,center_uy,-0.2037382274866104 +steady,sr,152,60.8,velocity,lower_ux,0.9974209070205688 +steady,sr,152,60.8,velocity,lower_uy,-0.07554364949464798 +steady,sr,153,61.2,velocity,upper_ux,1.212296724319458 +steady,sr,153,61.2,velocity,upper_uy,-0.13725772500038147 +steady,sr,153,61.2,velocity,center_ux,0.8829134106636047 +steady,sr,153,61.2,velocity,center_uy,-0.07913661748170853 +steady,sr,153,61.2,velocity,lower_ux,0.9886915683746338 +steady,sr,153,61.2,velocity,lower_uy,-0.03244688734412193 +steady,sr,154,61.6,velocity,upper_ux,1.248487949371338 +steady,sr,154,61.6,velocity,upper_uy,-0.10755126923322678 +steady,sr,154,61.6,velocity,center_ux,0.7992556095123291 +steady,sr,154,61.6,velocity,center_uy,0.10067170113325119 +steady,sr,154,61.6,velocity,lower_ux,0.9905970096588135 +steady,sr,154,61.6,velocity,lower_uy,0.012825947254896164 +steady,sr,155,62.0,velocity,upper_ux,1.2700077295303345 +steady,sr,155,62.0,velocity,upper_uy,-0.05650629103183746 +steady,sr,155,62.0,velocity,center_ux,0.7751797437667847 +steady,sr,155,62.0,velocity,center_uy,0.23928242921829224 +steady,sr,155,62.0,velocity,lower_ux,1.0022574663162231 +steady,sr,155,62.0,velocity,lower_uy,0.05461965128779411 +steady,sr,156,62.4,velocity,upper_ux,1.2575695514678955 +steady,sr,156,62.4,velocity,upper_uy,0.013841859064996243 +steady,sr,156,62.4,velocity,center_ux,0.8361389636993408 +steady,sr,156,62.4,velocity,center_uy,0.27231159806251526 +steady,sr,156,62.4,velocity,lower_ux,1.0222777128219604 +steady,sr,156,62.4,velocity,lower_uy,0.08939912915229797 +steady,sr,157,62.8,velocity,upper_ux,1.2010782957077026 +steady,sr,157,62.8,velocity,upper_uy,0.08362798392772675 +steady,sr,157,62.8,velocity,center_ux,0.9126864075660706 +steady,sr,157,62.8,velocity,center_uy,0.2661452889442444 +steady,sr,157,62.8,velocity,lower_ux,1.0483295917510986 +steady,sr,157,62.8,velocity,lower_uy,0.11637448519468307 +steady,sr,158,63.2,velocity,upper_ux,1.1213300228118896 +steady,sr,158,63.2,velocity,upper_uy,0.12405476719141006 +steady,sr,158,63.2,velocity,center_ux,0.9619252681732178 +steady,sr,158,63.2,velocity,center_uy,0.26822876930236816 +steady,sr,158,63.2,velocity,lower_ux,1.0784733295440674 +steady,sr,158,63.2,velocity,lower_uy,0.13591545820236206 +steady,sr,159,63.6,velocity,upper_ux,1.052889347076416 +steady,sr,159,63.6,velocity,upper_uy,0.12566612660884857 +steady,sr,159,63.6,velocity,center_ux,0.9849851131439209 +steady,sr,159,63.6,velocity,center_uy,0.2688036262989044 +steady,sr,159,63.6,velocity,lower_ux,1.1115391254425049 +steady,sr,159,63.6,velocity,lower_uy,0.14824552834033966 +steady,sr,160,64.0,velocity,upper_ux,1.011497974395752 +steady,sr,160,64.0,velocity,upper_uy,0.10047419369220734 +steady,sr,160,64.0,velocity,center_ux,0.9794407486915588 +steady,sr,160,64.0,velocity,center_uy,0.24651890993118286 +steady,sr,160,64.0,velocity,lower_ux,1.1473349332809448 +steady,sr,160,64.0,velocity,lower_uy,0.15279695391654968 +steady,sr,161,64.4,velocity,upper_ux,0.9926515221595764 +steady,sr,161,64.4,velocity,upper_uy,0.06193889304995537 +steady,sr,161,64.4,velocity,center_ux,0.9349529147148132 +steady,sr,161,64.4,velocity,center_uy,0.17150689661502838 +steady,sr,161,64.4,velocity,lower_ux,1.1856683492660522 +steady,sr,161,64.4,velocity,lower_uy,0.14774781465530396 +steady,sr,162,64.8,velocity,upper_ux,0.9877376556396484 +steady,sr,162,64.8,velocity,upper_uy,0.01746402680873871 +steady,sr,162,64.8,velocity,center_ux,0.8536608815193176 +steady,sr,162,64.8,velocity,center_uy,0.02287519909441471 +steady,sr,162,64.8,velocity,lower_ux,1.2247233390808105 +steady,sr,162,64.8,velocity,lower_uy,0.1296135038137436 +steady,sr,163,65.2,velocity,upper_ux,0.9933144450187683 +steady,sr,163,65.2,velocity,upper_uy,-0.027259355410933495 +steady,sr,163,65.2,velocity,center_ux,0.7815195322036743 +steady,sr,163,65.2,velocity,center_uy,-0.1568068563938141 +steady,sr,163,65.2,velocity,lower_ux,1.258204698562622 +steady,sr,163,65.2,velocity,lower_uy,0.09328430891036987 +steady,sr,164,65.6,velocity,upper_ux,1.0082801580429077 +steady,sr,164,65.6,velocity,upper_uy,-0.06701184064149857 +steady,sr,164,65.6,velocity,center_ux,0.7888226509094238 +steady,sr,164,65.6,velocity,center_uy,-0.26053935289382935 +steady,sr,164,65.6,velocity,lower_ux,1.2710460424423218 +steady,sr,164,65.6,velocity,lower_uy,0.03486861661076546 +steady,sr,165,66.0,velocity,upper_ux,1.0304921865463257 +steady,sr,165,66.0,velocity,upper_uy,-0.09922736138105392 +steady,sr,165,66.0,velocity,center_ux,0.8638392686843872 +steady,sr,165,66.0,velocity,center_uy,-0.2705518901348114 +steady,sr,165,66.0,velocity,lower_ux,1.2437162399291992 +steady,sr,165,66.0,velocity,lower_uy,-0.03853268921375275 +steady,sr,166,66.4,velocity,upper_ux,1.057766318321228 +steady,sr,166,66.4,velocity,upper_uy,-0.12370651215314865 +steady,sr,166,66.4,velocity,center_ux,0.9322767853736877 +steady,sr,166,66.4,velocity,center_uy,-0.26601243019104004 +steady,sr,166,66.4,velocity,lower_ux,1.17531156539917 +steady,sr,166,66.4,velocity,lower_uy,-0.10141832381486893 +steady,sr,167,66.8,velocity,upper_ux,1.0887113809585571 +steady,sr,167,66.8,velocity,upper_uy,-0.14086337387561798 +steady,sr,167,66.8,velocity,center_ux,0.9721475839614868 +steady,sr,167,66.8,velocity,center_uy,-0.2696110010147095 +steady,sr,167,66.8,velocity,lower_ux,1.0956474542617798 +steady,sr,167,66.8,velocity,lower_uy,-0.1286410093307495 +steady,sr,168,67.2,velocity,upper_ux,1.122848629951477 +steady,sr,168,67.2,velocity,upper_uy,-0.15074820816516876 +steady,sr,168,67.2,velocity,center_ux,0.9868156313896179 +steady,sr,168,67.2,velocity,center_uy,-0.2654203176498413 +steady,sr,168,67.2,velocity,lower_ux,1.0358408689498901 +steady,sr,168,67.2,velocity,lower_uy,-0.11960005760192871 +steady,sr,169,67.6,velocity,upper_ux,1.1599454879760742 +steady,sr,169,67.6,velocity,upper_uy,-0.15241818130016327 +steady,sr,169,67.6,velocity,center_ux,0.9699770212173462 +steady,sr,169,67.6,velocity,center_uy,-0.22944019734859467 +steady,sr,169,67.6,velocity,lower_ux,1.0033169984817505 +steady,sr,169,67.6,velocity,lower_uy,-0.08881653100252151 +steady,sr,170,68.0,velocity,upper_ux,1.1990224123001099 +steady,sr,170,68.0,velocity,upper_uy,-0.1435319185256958 +steady,sr,170,68.0,velocity,center_ux,0.9116430878639221 +steady,sr,170,68.0,velocity,center_uy,-0.13067516684532166 +steady,sr,170,68.0,velocity,lower_ux,0.989978551864624 +steady,sr,170,68.0,velocity,lower_uy,-0.04766080901026726 +steady,sr,171,68.4,velocity,upper_ux,1.237123727798462 +steady,sr,171,68.4,velocity,upper_uy,-0.11999678611755371 +steady,sr,171,68.4,velocity,center_ux,0.8253868222236633 +steady,sr,171,68.4,velocity,center_uy,0.037684451788663864 +steady,sr,171,68.4,velocity,lower_ux,0.9884768724441528 +steady,sr,171,68.4,velocity,lower_uy,-0.0024282170925289392 +steady,sr,172,68.8,velocity,upper_ux,1.2656188011169434 +steady,sr,172,68.8,velocity,upper_uy,-0.0764985978603363 +steady,sr,172,68.8,velocity,center_ux,0.772956371307373 +steady,sr,172,68.8,velocity,center_uy,0.20387262105941772 +steady,sr,172,68.8,velocity,lower_ux,0.9969767928123474 +steady,sr,172,68.8,velocity,lower_uy,0.041152339428663254 +steady,sr,173,69.2,velocity,upper_ux,1.2669779062271118 +steady,sr,173,69.2,velocity,upper_uy,-0.011375844478607178 +steady,sr,173,69.2,velocity,center_ux,0.8098122477531433 +steady,sr,173,69.2,velocity,center_uy,0.2704779803752899 +steady,sr,173,69.2,velocity,lower_ux,1.0145411491394043 +steady,sr,173,69.2,velocity,lower_uy,0.07854752242565155 +steady,sr,174,69.6,velocity,upper_ux,1.224753737449646 +steady,sr,174,69.6,velocity,upper_uy,0.06213518604636192 +steady,sr,174,69.6,velocity,center_ux,0.8896486163139343 +steady,sr,174,69.6,velocity,center_uy,0.2680598199367523 +steady,sr,174,69.6,velocity,lower_ux,1.0389673709869385 +steady,sr,174,69.6,velocity,lower_uy,0.10818378627300262 +steady,sr,175,70.0,velocity,upper_ux,1.1485543251037598 +steady,sr,175,70.0,velocity,upper_uy,0.115099236369133 +steady,sr,175,70.0,velocity,center_ux,0.9487791657447815 +steady,sr,175,70.0,velocity,center_uy,0.26700860261917114 +steady,sr,175,70.0,velocity,lower_ux,1.067873477935791 +steady,sr,175,70.0,velocity,lower_uy,0.13021379709243774 +steady,sr,176,70.4,velocity,upper_ux,1.0728859901428223 +steady,sr,176,70.4,velocity,upper_uy,0.1291680932044983 +steady,sr,176,70.4,velocity,center_ux,0.980247437953949 +steady,sr,176,70.4,velocity,center_uy,0.27023810148239136 +steady,sr,176,70.4,velocity,lower_ux,1.0998849868774414 +steady,sr,176,70.4,velocity,lower_uy,0.1450154036283493 +steady,sr,177,70.8,velocity,upper_ux,1.0220876932144165 +steady,sr,177,70.8,velocity,upper_uy,0.1111985370516777 +steady,sr,177,70.8,velocity,center_ux,0.9854578971862793 +steady,sr,177,70.8,velocity,center_uy,0.25872451066970825 +steady,sr,177,70.8,velocity,lower_ux,1.1347602605819702 +steady,sr,177,70.8,velocity,lower_uy,0.15234850347042084 +steady,sr,178,71.2,velocity,upper_ux,0.9967803359031677 +steady,sr,178,71.2,velocity,upper_uy,0.07604745775461197 +steady,sr,178,71.2,velocity,center_ux,0.9553678035736084 +steady,sr,178,71.2,velocity,center_uy,0.20536938309669495 +steady,sr,178,71.2,velocity,lower_ux,1.1724019050598145 +steady,sr,178,71.2,velocity,lower_uy,0.1508689820766449 +steady,sr,179,71.6,velocity,upper_ux,0.9880033135414124 +steady,sr,179,71.6,velocity,upper_uy,0.032920680940151215 +steady,sr,179,71.6,velocity,center_ux,0.884277880191803 +steady,sr,179,71.6,velocity,center_uy,0.08144176751375198 +steady,sr,179,71.6,velocity,lower_ux,1.2117773294448853 +steady,sr,179,71.6,velocity,lower_uy,0.13769283890724182 +steady,sr,180,72.0,velocity,upper_ux,0.9902447462081909 +steady,sr,180,72.0,velocity,upper_uy,-0.012426014989614487 +steady,sr,180,72.0,velocity,center_ux,0.8006600737571716 +steady,sr,180,72.0,velocity,center_uy,-0.0986192598938942 +steady,sr,180,72.0,velocity,lower_ux,1.2484652996063232 +steady,sr,180,72.0,velocity,lower_uy,0.1081443503499031 +steady,sr,181,72.4,velocity,upper_ux,1.0021034479141235 +steady,sr,181,72.4,velocity,upper_uy,-0.05435037985444069 +steady,sr,181,72.4,velocity,center_ux,0.7757800817489624 +steady,sr,181,72.4,velocity,center_uy,-0.23866087198257446 +steady,sr,181,72.4,velocity,lower_ux,1.2704914808273315 +steady,sr,181,72.4,velocity,lower_uy,0.05719567462801933 +steady,sr,182,72.8,velocity,upper_ux,1.0220725536346436 +steady,sr,182,72.8,velocity,upper_uy,-0.08925438672304153 +steady,sr,182,72.8,velocity,center_ux,0.8361070156097412 +steady,sr,182,72.8,velocity,center_uy,-0.2726132273674011 +steady,sr,182,72.8,velocity,lower_ux,1.2583165168762207 +steady,sr,182,72.8,velocity,lower_uy,-0.013250992633402348 +steady,sr,183,73.2,velocity,upper_ux,1.0478811264038086 +steady,sr,183,73.2,velocity,upper_uy,-0.11632600426673889 +steady,sr,183,73.2,velocity,center_ux,0.9125241041183472 +steady,sr,183,73.2,velocity,center_uy,-0.2664397358894348 +steady,sr,183,73.2,velocity,lower_ux,1.2016483545303345 +steady,sr,183,73.2,velocity,lower_uy,-0.08338336646556854 +steady,sr,184,73.6,velocity,upper_ux,1.0777746438980103 +steady,sr,184,73.6,velocity,upper_uy,-0.13594570755958557 +steady,sr,184,73.6,velocity,center_ux,0.9617341756820679 +steady,sr,184,73.6,velocity,center_uy,-0.2684919834136963 +steady,sr,184,73.6,velocity,lower_ux,1.1214064359664917 +steady,sr,184,73.6,velocity,lower_uy,-0.1242096871137619 +steady,sr,185,74.0,velocity,upper_ux,1.1110069751739502 +steady,sr,185,74.0,velocity,upper_uy,-0.14835339784622192 +steady,sr,185,74.0,velocity,center_ux,0.9852288961410522 +steady,sr,185,74.0,velocity,center_uy,-0.2692660391330719 +steady,sr,185,74.0,velocity,lower_ux,1.0527859926223755 +steady,sr,185,74.0,velocity,lower_uy,-0.1260642111301422 +steady,sr,186,74.4,velocity,upper_ux,1.1471495628356934 +steady,sr,186,74.4,velocity,upper_uy,-0.15300773084163666 +steady,sr,186,74.4,velocity,center_ux,0.9804198741912842 +steady,sr,186,74.4,velocity,center_uy,-0.24751117825508118 +steady,sr,186,74.4,velocity,lower_ux,1.0114796161651611 +steady,sr,186,74.4,velocity,lower_uy,-0.10095781087875366 +steady,sr,187,74.8,velocity,upper_ux,1.1856197118759155 +steady,sr,187,74.8,velocity,upper_uy,-0.14807389676570892 +steady,sr,187,74.8,velocity,center_ux,0.9364890456199646 +steady,sr,187,74.8,velocity,center_uy,-0.17328281700611115 +steady,sr,187,74.8,velocity,lower_ux,0.9926308393478394 +steady,sr,187,74.8,velocity,lower_uy,-0.062423743307590485 +steady,sr,188,75.2,velocity,upper_ux,1.2246451377868652 +steady,sr,188,75.2,velocity,upper_uy,-0.1300821751356125 +steady,sr,188,75.2,velocity,center_ux,0.8552365899085999 +steady,sr,188,75.2,velocity,center_uy,-0.025160346180200577 +steady,sr,188,75.2,velocity,lower_ux,0.9875563979148865 +steady,sr,188,75.2,velocity,lower_uy,-0.017916850745677948 +steady,sr,189,75.6,velocity,upper_ux,1.2580139636993408 +steady,sr,189,75.6,velocity,upper_uy,-0.09389465302228928 +steady,sr,189,75.6,velocity,center_ux,0.7822009921073914 +steady,sr,189,75.6,velocity,center_uy,0.15515199303627014 +steady,sr,189,75.6,velocity,lower_ux,0.9927845001220703 +steady,sr,189,75.6,velocity,lower_uy,0.026890017092227936 +steady,sr,190,76.0,velocity,upper_ux,1.271080732345581 +steady,sr,190,76.0,velocity,upper_uy,-0.035562220960855484 +steady,sr,190,76.0,velocity,center_ux,0.7884004712104797 +steady,sr,190,76.0,velocity,center_uy,0.2603037357330322 +steady,sr,190,76.0,velocity,lower_ux,1.0076115131378174 +steady,sr,190,76.0,velocity,lower_uy,0.06673989444971085 +steady,sr,191,76.4,velocity,upper_ux,1.2443591356277466 +steady,sr,191,76.4,velocity,upper_uy,0.037999171763658524 +steady,sr,191,76.4,velocity,center_ux,0.8634306192398071 +steady,sr,191,76.4,velocity,center_uy,0.2708859145641327 +steady,sr,191,76.4,velocity,lower_ux,1.0301063060760498 +steady,sr,191,76.4,velocity,lower_uy,0.09906186908483505 +steady,sr,192,76.8,velocity,upper_ux,1.1761736869812012 +steady,sr,192,76.8,velocity,upper_uy,0.10129240155220032 +steady,sr,192,76.8,velocity,center_ux,0.9323561191558838 +steady,sr,192,76.8,velocity,center_uy,0.26625773310661316 +steady,sr,192,76.8,velocity,lower_ux,1.0576176643371582 +steady,sr,192,76.8,velocity,lower_uy,0.12363870441913605 +steady,sr,193,77.2,velocity,upper_ux,1.0961742401123047 +steady,sr,193,77.2,velocity,upper_uy,0.12888509035110474 +steady,sr,193,77.2,velocity,center_ux,0.9724709391593933 +steady,sr,193,77.2,velocity,center_uy,0.26989802718162537 +steady,sr,193,77.2,velocity,lower_ux,1.0885627269744873 +steady,sr,193,77.2,velocity,lower_uy,0.14088107645511627 +steady,sr,194,77.6,velocity,upper_ux,1.0358105897903442 +steady,sr,194,77.6,velocity,upper_uy,0.12001296877861023 +steady,sr,194,77.6,velocity,center_ux,0.9872239828109741 +steady,sr,194,77.6,velocity,center_uy,0.2659749388694763 +steady,sr,194,77.6,velocity,lower_ux,1.1224876642227173 +steady,sr,194,77.6,velocity,lower_uy,0.15084652602672577 +steady,sr,195,78.0,velocity,upper_ux,1.0028347969055176 +steady,sr,195,78.0,velocity,upper_uy,0.08927487581968307 +steady,sr,195,78.0,velocity,center_ux,0.9705644249916077 +steady,sr,195,78.0,velocity,center_uy,0.23055654764175415 +steady,sr,195,78.0,velocity,lower_ux,1.1593106985092163 +steady,sr,195,78.0,velocity,lower_uy,0.15260444581508636 +steady,sr,196,78.4,velocity,upper_ux,0.9895440936088562 +steady,sr,196,78.4,velocity,upper_uy,0.04813693091273308 +steady,sr,196,78.4,velocity,center_ux,0.9128127098083496 +steady,sr,196,78.4,velocity,center_uy,0.13257841765880585 +steady,sr,196,78.4,velocity,lower_ux,1.1985135078430176 +steady,sr,196,78.4,velocity,lower_uy,0.1438484489917755 +steady,sr,197,78.8,velocity,upper_ux,0.9883292317390442 +steady,sr,197,78.8,velocity,upper_uy,0.0028641256503760815 +steady,sr,197,78.8,velocity,center_ux,0.8268686532974243 +steady,sr,197,78.8,velocity,center_uy,-0.03550257906317711 +steady,sr,197,78.8,velocity,lower_ux,1.2370262145996094 +steady,sr,197,78.8,velocity,lower_uy,0.12047477811574936 +steady,sr,198,79.2,velocity,upper_ux,0.9969051480293274 +steady,sr,198,79.2,velocity,upper_uy,-0.040809016674757004 +steady,sr,198,79.2,velocity,center_ux,0.7737083435058594 +steady,sr,198,79.2,velocity,center_uy,-0.20266857743263245 +steady,sr,198,79.2,velocity,lower_ux,1.2658684253692627 +steady,sr,198,79.2,velocity,lower_uy,0.07714510709047318 +steady,sr,199,79.6,velocity,upper_ux,1.0143425464630127 +steady,sr,199,79.6,velocity,upper_uy,-0.07831986993551254 +steady,sr,199,79.6,velocity,center_ux,0.8096128106117249 +steady,sr,199,79.6,velocity,center_uy,-0.2704988420009613 +steady,sr,199,79.6,velocity,lower_ux,1.2674862146377563 +steady,sr,199,79.6,velocity,lower_uy,0.012071621604263783 +steady,sr,0,0.0,force,front_fx,0.001547904801554978 +steady,sr,0,0.0,force,front_fy,2.6546284061623737e-05 +steady,sr,0,0.0,force,upper_fx,0.0001496699551353231 +steady,sr,0,0.0,force,upper_fy,0.004933747462928295 +steady,sr,0,0.0,force,lower_fx,0.0003971574769821018 +steady,sr,0,0.0,force,lower_fy,-0.004948754329234362 +steady,sr,1,0.4,force,front_fx,0.0015525487251579762 +steady,sr,1,0.4,force,front_fy,-5.810110451420769e-06 +steady,sr,1,0.4,force,upper_fx,0.00014979970001149923 +steady,sr,1,0.4,force,upper_fy,0.004829373210668564 +steady,sr,1,0.4,force,lower_fx,0.0004100519872736186 +steady,sr,1,0.4,force,lower_fy,-0.005059248302131891 +steady,sr,2,0.8,force,front_fx,0.0015526380157098174 +steady,sr,2,0.8,force,front_fy,-3.808919427683577e-05 +steady,sr,2,0.8,force,upper_fx,0.00016304041491821408 +steady,sr,2,0.8,force,upper_fy,0.004740082658827305 +steady,sr,2,0.8,force,lower_fx,0.0004016235179733485 +steady,sr,2,0.8,force,lower_fy,-0.005156900733709335 +steady,sr,3,1.2,force,front_fx,0.0015499290311709046 +steady,sr,3,1.2,force,front_fy,-6.50496149319224e-05 +steady,sr,3,1.2,force,upper_fx,0.00018656847532838583 +steady,sr,3,1.2,force,upper_fy,0.00467213150113821 +steady,sr,3,1.2,force,lower_fx,0.0003730022581294179 +steady,sr,3,1.2,force,lower_fy,-0.00522294407710433 +steady,sr,4,1.6,force,front_fx,0.0015472962986677885 +steady,sr,4,1.6,force,front_fy,-8.470203465549275e-05 +steady,sr,4,1.6,force,upper_fx,0.0002219408779637888 +steady,sr,4,1.6,force,upper_fy,0.004634631797671318 +steady,sr,4,1.6,force,lower_fx,0.0003310404426883906 +steady,sr,4,1.6,force,lower_fy,-0.00525068212300539 +steady,sr,5,2.0,force,front_fx,0.0015475547406822443 +steady,sr,5,2.0,force,front_fy,-9.267719724448398e-05 +steady,sr,5,2.0,force,upper_fx,0.00027037004474550486 +steady,sr,5,2.0,force,upper_fy,0.004639262333512306 +steady,sr,5,2.0,force,lower_fx,0.00028776482213288546 +steady,sr,5,2.0,force,lower_fy,-0.005238939076662064 +steady,sr,6,2.4,force,front_fx,0.0015509984223172069 +steady,sr,6,2.4,force,front_fy,-8.949187758844346e-05 +steady,sr,6,2.4,force,upper_fx,0.00032415808527730405 +steady,sr,6,2.4,force,upper_fy,0.004689076915383339 +steady,sr,6,2.4,force,lower_fx,0.0002463539130985737 +steady,sr,6,2.4,force,lower_fy,-0.005196045618504286 +steady,sr,7,2.8,force,front_fx,0.0015534645644947886 +steady,sr,7,2.8,force,front_fy,-7.350502710323781e-05 +steady,sr,7,2.8,force,upper_fx,0.0003708733129315078 +steady,sr,7,2.8,force,upper_fy,0.004778324160724878 +steady,sr,7,2.8,force,lower_fx,0.00020750334078911692 +steady,sr,7,2.8,force,lower_fy,-0.005124533083289862 +steady,sr,8,3.2,force,front_fx,0.0015508076176047325 +steady,sr,8,3.2,force,front_fy,-4.8433535994263366e-05 +steady,sr,8,3.2,force,upper_fx,0.00039848583401180804 +steady,sr,8,3.2,force,upper_fy,0.004887464456260204 +steady,sr,8,3.2,force,lower_fx,0.00017123256111517549 +steady,sr,8,3.2,force,lower_fy,-0.005027160048484802 +steady,sr,9,3.6,force,front_fx,0.001547786989249289 +steady,sr,9,3.6,force,front_fy,-1.6741276340326294e-05 +steady,sr,9,3.6,force,upper_fx,0.00040869961958378553 +steady,sr,9,3.6,force,upper_fy,0.004999062977731228 +steady,sr,9,3.6,force,lower_fx,0.0001454979064874351 +steady,sr,9,3.6,force,lower_fy,-0.004912885371595621 +steady,sr,10,4.0,force,front_fx,0.0015467884950339794 +steady,sr,10,4.0,force,front_fy,1.6997131751850247e-05 +steady,sr,10,4.0,force,upper_fx,0.00040562672074884176 +steady,sr,10,4.0,force,upper_fy,0.005099939182400703 +steady,sr,10,4.0,force,lower_fx,0.0001408501120749861 +steady,sr,10,4.0,force,lower_fy,-0.00479804677888751 +steady,sr,11,4.4,force,front_fx,0.0015502828173339367 +steady,sr,11,4.4,force,front_fy,4.883998553850688e-05 +steady,sr,11,4.4,force,upper_fx,0.0003949766105506569 +steady,sr,11,4.4,force,upper_fy,0.005184084177017212 +steady,sr,11,4.4,force,lower_fx,0.00016225125000346452 +steady,sr,11,4.4,force,lower_fy,-0.004703574348241091 +steady,sr,12,4.8,force,front_fx,0.0015545880887657404 +steady,sr,12,4.8,force,front_fy,7.493242446798831e-05 +steady,sr,12,4.8,force,upper_fx,0.0003730003663804382 +steady,sr,12,4.8,force,upper_fy,0.0052443938329815865 +steady,sr,12,4.8,force,lower_fx,0.00020349329861346632 +steady,sr,12,4.8,force,lower_fy,-0.004646342247724533 +steady,sr,13,5.2,force,front_fx,0.0015547844814136624 +steady,sr,13,5.2,force,front_fy,9.124031203100458e-05 +steady,sr,13,5.2,force,upper_fx,0.000335292104864493 +steady,sr,13,5.2,force,upper_fy,0.0052705626003444195 +steady,sr,13,5.2,force,lower_fx,0.00025116075994446874 +steady,sr,13,5.2,force,lower_fy,-0.004632271360605955 +steady,sr,14,5.6,force,front_fx,0.0015514049446210265 +steady,sr,14,5.6,force,front_fy,9.629991109250113e-05 +steady,sr,14,5.6,force,upper_fx,0.0002835580089595169 +steady,sr,14,5.6,force,upper_fy,0.005253123585134745 +steady,sr,14,5.6,force,lower_fx,0.0002969331690110266 +steady,sr,14,5.6,force,lower_fy,-0.004656728357076645 +steady,sr,15,6.0,force,front_fx,0.0015478790737688541 +steady,sr,15,6.0,force,front_fy,8.814573084237054e-05 +steady,sr,15,6.0,force,upper_fx,0.0002290822594659403 +steady,sr,15,6.0,force,upper_fy,0.005191901698708534 +steady,sr,15,6.0,force,lower_fx,0.000338319456204772 +steady,sr,15,6.0,force,lower_fy,-0.0047166310250759125 +steady,sr,16,6.4,force,front_fx,0.0015473985113203526 +steady,sr,16,6.4,force,front_fy,6.883212336106226e-05 +steady,sr,16,6.4,force,upper_fx,0.00018554538837634027 +steady,sr,16,6.4,force,upper_fy,0.0050985380075871944 +steady,sr,16,6.4,force,lower_fx,0.00037696826620958745 +steady,sr,16,6.4,force,lower_fy,-0.004805850330740213 +steady,sr,17,6.8,force,front_fx,0.0015510388184338808 +steady,sr,17,6.8,force,front_fy,3.998426109319553e-05 +steady,sr,17,6.8,force,upper_fx,0.00015979773888830096 +steady,sr,17,6.8,force,upper_fy,0.004988696426153183 +steady,sr,17,6.8,force,lower_fx,0.00040888096555136144 +steady,sr,17,6.8,force,lower_fy,-0.004918334074318409 +steady,sr,18,7.2,force,front_fx,0.0015547685325145721 +steady,sr,18,7.2,force,front_fy,6.674096766801085e-06 +steady,sr,18,7.2,force,upper_fx,0.00015131353575270623 +steady,sr,18,7.2,force,upper_fy,0.004877472296357155 +steady,sr,18,7.2,force,lower_fx,0.0004264176241122186 +steady,sr,18,7.2,force,lower_fy,-0.005038446746766567 +steady,sr,19,7.6,force,front_fx,0.0015535871498286724 +steady,sr,19,7.6,force,front_fy,-2.8136546461610124e-05 +steady,sr,19,7.6,force,upper_fx,0.00015491663361899555 +steady,sr,19,7.6,force,upper_fy,0.004773561842739582 +steady,sr,19,7.6,force,lower_fx,0.00042083029984496534 +steady,sr,19,7.6,force,lower_fy,-0.005147331394255161 +steady,sr,20,8.0,force,front_fx,0.0015510056400671601 +steady,sr,20,8.0,force,front_fy,-5.919080649618991e-05 +steady,sr,20,8.0,force,upper_fx,0.0001737325801514089 +steady,sr,20,8.0,force,upper_fy,0.004687703680247068 +steady,sr,20,8.0,force,lower_fx,0.0003956416330765933 +steady,sr,20,8.0,force,lower_fy,-0.005226640030741692 +steady,sr,21,8.4,force,front_fx,0.001549325417727232 +steady,sr,21,8.4,force,front_fy,-8.305600931635126e-05 +steady,sr,21,8.4,force,upper_fx,0.00020882919488940388 +steady,sr,21,8.4,force,upper_fy,0.0046331449411809444 +steady,sr,21,8.4,force,lower_fx,0.00035784259671345353 +steady,sr,21,8.4,force,lower_fy,-0.005268671549856663 +steady,sr,22,8.8,force,front_fx,0.0015512274112552404 +steady,sr,22,8.8,force,front_fy,-9.636176400817931e-05 +steady,sr,22,8.8,force,upper_fx,0.00026074633933603764 +steady,sr,22,8.8,force,upper_fy,0.004623060580343008 +steady,sr,22,8.8,force,lower_fx,0.0003164753725286573 +steady,sr,22,8.8,force,lower_fy,-0.005273344926536083 +steady,sr,23,9.2,force,front_fx,0.0015545074129477143 +steady,sr,23,9.2,force,front_fy,-9.705674165161327e-05 +steady,sr,23,9.2,force,upper_fx,0.0003181558568030596 +steady,sr,23,9.2,force,upper_fy,0.004662899766117334 +steady,sr,23,9.2,force,lower_fx,0.0002732652355916798 +steady,sr,23,9.2,force,lower_fy,-0.005243021063506603 +steady,sr,24,9.6,force,front_fx,0.001554798218421638 +steady,sr,24,9.6,force,front_fy,-8.508902101311833e-05 +steady,sr,24,9.6,force,upper_fx,0.0003678143839351833 +steady,sr,24,9.6,force,upper_fy,0.0047446652315557 +steady,sr,24,9.6,force,lower_fx,0.00022749022173229605 +steady,sr,24,9.6,force,lower_fy,-0.005178979132324457 +steady,sr,25,10.0,force,front_fx,0.0015517995925620198 +steady,sr,25,10.0,force,front_fy,-6.136641604825854e-05 +steady,sr,25,10.0,force,upper_fx,0.0004001493798568845 +steady,sr,25,10.0,force,upper_fy,0.004851515870541334 +steady,sr,25,10.0,force,lower_fx,0.00018286560953129083 +steady,sr,25,10.0,force,lower_fy,-0.005081875715404749 +steady,sr,26,10.4,force,front_fx,0.0015489006182178855 +steady,sr,26,10.4,force,front_fy,-3.0512916055158712e-05 +steady,sr,26,10.4,force,upper_fx,0.00041669351048767567 +steady,sr,26,10.4,force,upper_fy,0.004965952131897211 +steady,sr,26,10.4,force,lower_fx,0.00014970758638810366 +steady,sr,26,10.4,force,lower_fy,-0.0049628932029008865 +steady,sr,27,10.8,force,front_fx,0.0015489730285480618 +steady,sr,27,10.8,force,front_fy,5.050907475379063e-06 +steady,sr,27,10.8,force,upper_fx,0.00042187864892184734 +steady,sr,27,10.8,force,upper_fy,0.005077131558209658 +steady,sr,27,10.8,force,lower_fx,0.00013971222506370395 +steady,sr,27,10.8,force,lower_fy,-0.0048394412733614445 +steady,sr,28,11.2,force,front_fx,0.001553103793412447 +steady,sr,28,11.2,force,front_fy,3.9461436244891956e-05 +steady,sr,28,11.2,force,upper_fx,0.0004172995686531067 +steady,sr,28,11.2,force,upper_fy,0.005175859201699495 +steady,sr,28,11.2,force,lower_fx,0.00015620034537278116 +steady,sr,28,11.2,force,lower_fy,-0.004733857698738575 +steady,sr,29,11.6,force,front_fx,0.0015571190742775798 +steady,sr,29,11.6,force,front_fy,6.95695707690902e-05 +steady,sr,29,11.6,force,upper_fx,0.0003984237846452743 +steady,sr,29,11.6,force,upper_fy,0.005252360831946135 +steady,sr,29,11.6,force,lower_fx,0.0001923827949212864 +steady,sr,29,11.6,force,lower_fy,-0.004661221988499165 +steady,sr,30,12.0,force,front_fx,0.0015558123122900724 +steady,sr,30,12.0,force,front_fy,9.064863115781918e-05 +steady,sr,30,12.0,force,upper_fx,0.0003598927578423172 +steady,sr,30,12.0,force,upper_fy,0.005292494315654039 +steady,sr,30,12.0,force,lower_fx,0.00023648333444725722 +steady,sr,30,12.0,force,lower_fy,-0.0046288566663861275 +steady,sr,31,12.4,force,front_fx,0.0015525061171501875 +steady,sr,31,12.4,force,front_fy,0.00010028528777183965 +steady,sr,31,12.4,force,upper_fx,0.0003076182911172509 +steady,sr,31,12.4,force,upper_fy,0.005287053529173136 +steady,sr,31,12.4,force,lower_fx,0.00028316694078966975 +steady,sr,31,12.4,force,lower_fy,-0.004636599216610193 +steady,sr,32,12.8,force,front_fx,0.0015495008556172252 +steady,sr,32,12.8,force,front_fy,9.684454562375322e-05 +steady,sr,32,12.8,force,upper_fx,0.0002502086863387376 +steady,sr,32,12.8,force,upper_fy,0.005235180724412203 +steady,sr,32,12.8,force,lower_fx,0.00032989392639137805 +steady,sr,32,12.8,force,lower_fy,-0.004684013314545155 +steady,sr,33,13.2,force,front_fx,0.001550445449538529 +steady,sr,33,13.2,force,front_fy,8.011481986613944e-05 +steady,sr,33,13.2,force,upper_fx,0.00020509395108092576 +steady,sr,33,13.2,force,upper_fy,0.0051504033617675304 +steady,sr,33,13.2,force,lower_fx,0.00037589308340102434 +steady,sr,33,13.2,force,lower_fy,-0.0047691501677036285 +steady,sr,34,13.6,force,front_fx,0.001553884008899331 +steady,sr,34,13.6,force,front_fy,5.355943358154036e-05 +steady,sr,34,13.6,force,upper_fx,0.0001728148927213624 +steady,sr,34,13.6,force,upper_fy,0.005043866578489542 +steady,sr,34,13.6,force,lower_fx,0.00041504218825139105 +steady,sr,34,13.6,force,lower_fy,-0.004882209002971649 +steady,sr,35,14.0,force,front_fx,0.0015556940343230963 +steady,sr,35,14.0,force,front_fy,1.9657360098790377e-05 +steady,sr,35,14.0,force,upper_fx,0.00015465787146240473 +steady,sr,35,14.0,force,upper_fy,0.004927983041852713 +steady,sr,35,14.0,force,lower_fx,0.00043586004176177084 +steady,sr,35,14.0,force,lower_fy,-0.005009546410292387 +steady,sr,36,14.4,force,front_fx,0.0015540819149464369 +steady,sr,36,14.4,force,front_fy,-1.6262258213828318e-05 +steady,sr,36,14.4,force,upper_fx,0.00014944880967959762 +steady,sr,36,14.4,force,upper_fy,0.004812980070710182 +steady,sr,36,14.4,force,lower_fx,0.00043458276195451617 +steady,sr,36,14.4,force,lower_fy,-0.005126289092004299 +steady,sr,37,14.8,force,front_fx,0.0015518676955252886 +steady,sr,37,14.8,force,front_fy,-5.088679608888924e-05 +steady,sr,37,14.8,force,upper_fx,0.00016218975360970944 +steady,sr,37,14.8,force,upper_fy,0.00471118651330471 +steady,sr,37,14.8,force,lower_fx,0.00041411674465052783 +steady,sr,37,14.8,force,lower_fy,-0.005218076519668102 +steady,sr,38,15.2,force,front_fx,0.0015512974932789803 +steady,sr,38,15.2,force,front_fy,-7.858104800106958e-05 +steady,sr,38,15.2,force,upper_fx,0.00019594593322835863 +steady,sr,38,15.2,force,upper_fy,0.004640388302505016 +steady,sr,38,15.2,force,lower_fx,0.00038172860513441265 +steady,sr,38,15.2,force,lower_fy,-0.005274765659123659 +steady,sr,39,15.6,force,front_fx,0.0015541784232482314 +steady,sr,39,15.6,force,front_fy,-9.67960586422123e-05 +steady,sr,39,15.6,force,upper_fx,0.0002487048914190382 +steady,sr,39,15.6,force,upper_fy,0.004615406971424818 +steady,sr,39,15.6,force,lower_fx,0.0003434871614445001 +steady,sr,39,15.6,force,lower_fy,-0.005296410992741585 +steady,sr,40,16.0,force,front_fx,0.0015571456169709563 +steady,sr,40,16.0,force,front_fy,-0.00010222629498457536 +steady,sr,40,16.0,force,upper_fx,0.00030770155717618763 +steady,sr,40,16.0,force,upper_fy,0.004641652572900057 +steady,sr,40,16.0,force,lower_fx,0.00029909415752626956 +steady,sr,40,16.0,force,lower_fy,-0.005280743818730116 +steady,sr,41,16.4,force,front_fx,0.0015556159196421504 +steady,sr,41,16.4,force,front_fy,-9.426641918253154e-05 +steady,sr,41,16.4,force,upper_fx,0.0003588931285776198 +steady,sr,41,16.4,force,upper_fy,0.004712587688118219 +steady,sr,41,16.4,force,lower_fx,0.00024774292251095176 +steady,sr,41,16.4,force,lower_fy,-0.005226036533713341 +steady,sr,42,16.8,force,front_fx,0.001552314730361104 +steady,sr,42,16.8,force,front_fy,-7.37876835046336e-05 +steady,sr,42,16.8,force,upper_fx,0.0003967128577642143 +steady,sr,42,16.8,force,upper_fy,0.004813240375369787 +steady,sr,42,16.8,force,lower_fx,0.00019680826517287642 +steady,sr,42,16.8,force,lower_fy,-0.005133096128702164 +steady,sr,43,17.2,force,front_fx,0.0015498340362682939 +steady,sr,43,17.2,force,front_fy,-4.363814878161065e-05 +steady,sr,43,17.2,force,upper_fx,0.00041953695472329855 +steady,sr,43,17.2,force,upper_fy,0.004927986767143011 +steady,sr,43,17.2,force,lower_fx,0.00015769856690894812 +steady,sr,43,17.2,force,lower_fy,-0.00501310545951128 +steady,sr,44,17.6,force,front_fx,0.001551243243739009 +steady,sr,44,17.6,force,front_fy,-8.375532161153387e-06 +steady,sr,44,17.6,force,upper_fx,0.00043316889787092805 +steady,sr,44,17.6,force,upper_fy,0.0050462232902646065 +steady,sr,44,17.6,force,lower_fx,0.0001418836909579113 +steady,sr,44,17.6,force,lower_fy,-0.004885590169578791 +steady,sr,45,18.0,force,front_fx,0.0015554187120869756 +steady,sr,45,18.0,force,front_fy,2.8699196263914928e-05 +steady,sr,45,18.0,force,upper_fx,0.00043444932089187205 +steady,sr,45,18.0,force,upper_fy,0.005157966632395983 +steady,sr,45,18.0,force,lower_fx,0.00015183896175585687 +steady,sr,45,18.0,force,lower_fy,-0.0047703636810183525 +steady,sr,46,18.4,force,front_fx,0.0015580966137349606 +steady,sr,46,18.4,force,front_fy,6.156229937914759e-05 +steady,sr,46,18.4,force,upper_fx,0.00041871017310768366 +steady,sr,46,18.4,force,upper_fy,0.005248229019343853 +steady,sr,46,18.4,force,lower_fx,0.000181045921635814 +steady,sr,46,18.4,force,lower_fy,-0.004683899227529764 +steady,sr,47,18.8,force,front_fx,0.0015565147623419762 +steady,sr,47,18.8,force,front_fy,8.740411431062967e-05 +steady,sr,47,18.8,force,upper_fx,0.00038170014158822596 +steady,sr,47,18.8,force,upper_fy,0.00530236354097724 +steady,sr,47,18.8,force,lower_fx,0.00022053132124710828 +steady,sr,47,18.8,force,lower_fy,-0.004632703959941864 +steady,sr,48,19.2,force,front_fx,0.0015533695695921779 +steady,sr,48,19.2,force,front_fy,0.00010146977729164064 +steady,sr,48,19.2,force,upper_fx,0.0003302367404103279 +steady,sr,48,19.2,force,upper_fy,0.0053099761717021465 +steady,sr,48,19.2,force,lower_fx,0.00026693844120018184 +steady,sr,48,19.2,force,lower_fy,-0.004622734617441893 +steady,sr,49,19.6,force,front_fx,0.001551262685097754 +steady,sr,49,19.6,force,front_fy,0.00010278580884914845 +steady,sr,49,19.6,force,upper_fx,0.0002747083199210465 +steady,sr,49,19.6,force,upper_fy,0.005272208247333765 +steady,sr,49,19.6,force,lower_fx,0.00031783521990291774 +steady,sr,49,19.6,force,lower_fy,-0.0046561602503061295 +steady,sr,50,20.0,force,front_fx,0.001552992733195424 +steady,sr,50,20.0,force,front_fy,9.018609125632793e-05 +steady,sr,50,20.0,force,upper_fx,0.00022669794270768762 +steady,sr,50,20.0,force,upper_fy,0.0051977611146867275 +steady,sr,50,20.0,force,lower_fx,0.00037012420943938196 +steady,sr,50,20.0,force,lower_fy,-0.004733840003609657 +steady,sr,51,20.4,force,front_fx,0.0015560575993731618 +steady,sr,51,20.4,force,front_fy,6.586400559172034e-05 +steady,sr,51,20.4,force,upper_fx,0.0001882072101579979 +steady,sr,51,20.4,force,upper_fy,0.0050965361297130585 +steady,sr,51,20.4,force,lower_fx,0.00041408988181501627 +steady,sr,51,20.4,force,lower_fy,-0.004845594055950642 +steady,sr,52,20.8,force,front_fx,0.0015559636522084475 +steady,sr,52,20.8,force,front_fy,3.324399585835636e-05 +steady,sr,52,20.8,force,upper_fx,0.00016016900190152228 +steady,sr,52,20.8,force,upper_fy,0.004979460965842009 +steady,sr,52,20.8,force,lower_fx,0.00043943861965090036 +steady,sr,52,20.8,force,lower_fy,-0.004973926115781069 +steady,sr,53,21.2,force,front_fx,0.0015541129978373647 +steady,sr,53,21.2,force,front_fy,-3.9024075704219285e-06 +steady,sr,53,21.2,force,upper_fx,0.00014645856572315097 +steady,sr,53,21.2,force,upper_fy,0.004855790175497532 +steady,sr,53,21.2,force,lower_fx,0.00044294996769167483 +steady,sr,53,21.2,force,lower_fy,-0.005097001791000366 +steady,sr,54,21.6,force,front_fx,0.0015523538459092379 +steady,sr,54,21.6,force,front_fy,-4.009699114249088e-05 +steady,sr,54,21.6,force,upper_fx,0.00015292874013539404 +steady,sr,54,21.6,force,upper_fy,0.00474180793389678 +steady,sr,54,21.6,force,lower_fx,0.00042861548718065023 +steady,sr,54,21.6,force,lower_fy,-0.00519875343888998 +steady,sr,55,22.0,force,front_fx,0.0015533241676166654 +steady,sr,55,22.0,force,front_fy,-7.195645594038069e-05 +steady,sr,55,22.0,force,upper_fx,0.0001838575699366629 +steady,sr,55,22.0,force,upper_fy,0.004655529744923115 +steady,sr,55,22.0,force,lower_fx,0.00040270897443406284 +steady,sr,55,22.0,force,lower_fy,-0.005270800553262234 +steady,sr,56,22.4,force,front_fx,0.0015566546935588121 +steady,sr,56,22.4,force,front_fy,-9.40922909649089e-05 +steady,sr,56,22.4,force,upper_fx,0.00023472729662898928 +steady,sr,56,22.4,force,upper_fy,0.0046153017319738865 +steady,sr,56,22.4,force,lower_fx,0.0003677128697745502 +steady,sr,56,22.4,force,lower_fy,-0.005309190135449171 +steady,sr,57,22.8,force,front_fx,0.0015584860229864717 +steady,sr,57,22.8,force,front_fy,-0.00010478877811692655 +steady,sr,57,22.8,force,upper_fx,0.0002934144577011466 +steady,sr,57,22.8,force,upper_fy,0.004626154433935881 +steady,sr,57,22.8,force,lower_fx,0.00032319099409505725 +steady,sr,57,22.8,force,lower_fy,-0.005308893509209156 +steady,sr,58,23.2,force,front_fx,0.0015562251210212708 +steady,sr,58,23.2,force,front_fy,-0.00010110634320881218 +steady,sr,58,23.2,force,upper_fx,0.0003460066800471395 +steady,sr,58,23.2,force,upper_fy,0.004683254286646843 +steady,sr,58,23.2,force,lower_fx,0.00026827867259271443 +steady,sr,58,23.2,force,lower_fy,-0.005264952313154936 +steady,sr,59,23.6,force,front_fx,0.0015528174117207527 +steady,sr,59,23.6,force,front_fy,-8.441031241090968e-05 +steady,sr,59,23.6,force,upper_fx,0.00038768647937104106 +steady,sr,59,23.6,force,upper_fy,0.00477399118244648 +steady,sr,59,23.6,force,lower_fx,0.00021280536020640284 +steady,sr,59,23.6,force,lower_fy,-0.005179040599614382 +steady,sr,60,24.0,force,front_fx,0.0015507165808230639 +steady,sr,60,24.0,force,front_fy,-5.649735976476222e-05 +steady,sr,60,24.0,force,upper_fx,0.0004181587719358504 +steady,sr,60,24.0,force,upper_fy,0.004886774346232414 +steady,sr,60,24.0,force,lower_fx,0.0001686589966993779 +steady,sr,60,24.0,force,lower_fy,-0.005062045995146036 +steady,sr,61,24.4,force,front_fx,0.0015530999517068267 +steady,sr,61,24.4,force,front_fy,-2.1556064893957227e-05 +steady,sr,61,24.4,force,upper_fx,0.0004394811694510281 +steady,sr,61,24.4,force,upper_fy,0.005010135006159544 +steady,sr,61,24.4,force,lower_fx,0.00014752197603229433 +steady,sr,61,24.4,force,lower_fy,-0.004933448042720556 +steady,sr,62,24.8,force,front_fx,0.001557189621962607 +steady,sr,62,24.8,force,front_fy,1.608854472578969e-05 +steady,sr,62,24.8,force,upper_fx,0.0004480188072193414 +steady,sr,62,24.8,force,upper_fy,0.005131521727889776 +steady,sr,62,24.8,force,lower_fx,0.00014965572336222976 +steady,sr,62,24.8,force,lower_fy,-0.004812018945813179 +steady,sr,63,25.2,force,front_fx,0.0015583443455398083 +steady,sr,63,25.2,force,front_fy,5.203483669902198e-05 +steady,sr,63,25.2,force,upper_fx,0.000434102927101776 +steady,sr,63,25.2,force,upper_fy,0.0052343024872243404 +steady,sr,63,25.2,force,lower_fx,0.00017031301103997976 +steady,sr,63,25.2,force,lower_fy,-0.004711996763944626 +steady,sr,64,25.6,force,front_fx,0.0015566236106678843 +steady,sr,64,25.6,force,front_fy,8.103275467874482e-05 +steady,sr,64,25.6,force,upper_fx,0.00040020272717811167 +steady,sr,64,25.6,force,upper_fy,0.005300977732986212 +steady,sr,64,25.6,force,lower_fx,0.00020419653446879238 +steady,sr,64,25.6,force,lower_fy,-0.004644062370061874 +steady,sr,65,26.0,force,front_fx,0.0015539817977696657 +steady,sr,65,26.0,force,front_fy,0.00010033860598923638 +steady,sr,65,26.0,force,upper_fx,0.00035140334512107074 +steady,sr,65,26.0,force,upper_fy,0.0053231134079396725 +steady,sr,65,26.0,force,lower_fx,0.0002494966029189527 +steady,sr,65,26.0,force,lower_fy,-0.004615562967956066 +steady,sr,66,26.4,force,front_fx,0.0015531465178355575 +steady,sr,66,26.4,force,front_fy,0.00010604284761939198 +steady,sr,66,26.4,force,upper_fx,0.00029825756791979074 +steady,sr,66,26.4,force,upper_fy,0.005299624055624008 +steady,sr,66,26.4,force,lower_fx,0.00030375149799510837 +steady,sr,66,26.4,force,lower_fy,-0.0046339514665305614 +steady,sr,67,26.8,force,front_fx,0.0015551932156085968 +steady,sr,67,26.8,force,front_fy,9.831349598243833e-05 +steady,sr,67,26.8,force,upper_fx,0.00024827432935126126 +steady,sr,67,26.8,force,upper_fy,0.005238238722085953 +steady,sr,67,26.8,force,lower_fx,0.0003605737292673439 +steady,sr,67,26.8,force,lower_fy,-0.004701249301433563 +steady,sr,68,27.2,force,front_fx,0.0015572101110592484 +steady,sr,68,27.2,force,front_fy,7.690714846830815e-05 +steady,sr,68,27.2,force,upper_fx,0.0002045636938419193 +steady,sr,68,27.2,force,upper_fy,0.005145526956766844 +steady,sr,68,27.2,force,lower_fx,0.00040869577787816525 +steady,sr,68,27.2,force,lower_fy,-0.004807904828339815 +steady,sr,69,27.6,force,front_fx,0.001556068193167448 +steady,sr,69,27.6,force,front_fy,4.625886504072696e-05 +steady,sr,69,27.6,force,upper_fx,0.00016814189439173788 +steady,sr,69,27.6,force,upper_fy,0.005029752384871244 +steady,sr,69,27.6,force,lower_fx,0.00043746805749833584 +steady,sr,69,27.6,force,lower_fy,-0.0049346755258738995 +steady,sr,70,28.0,force,front_fx,0.0015540069434791803 +steady,sr,70,28.0,force,front_fy,9.530859642836731e-06 +steady,sr,70,28.0,force,upper_fx,0.0001461506908526644 +steady,sr,70,28.0,force,upper_fy,0.004900941625237465 +steady,sr,70,28.0,force,lower_fx,0.0004470429557841271 +steady,sr,70,28.0,force,lower_fy,-0.0050608916208148 +steady,sr,71,28.4,force,front_fx,0.001552680740132928 +steady,sr,71,28.4,force,front_fy,-2.8405322154867463e-05 +steady,sr,71,28.4,force,upper_fx,0.00014604419993702322 +steady,sr,71,28.4,force,upper_fy,0.004776887129992247 +steady,sr,71,28.4,force,lower_fx,0.0004392807895783335 +steady,sr,71,28.4,force,lower_fy,-0.005171635188162327 +steady,sr,72,28.8,force,front_fx,0.0015550616662949324 +steady,sr,72,28.8,force,front_fy,-6.28327252343297e-05 +steady,sr,72,28.8,force,upper_fx,0.0001729657524265349 +steady,sr,72,28.8,force,upper_fy,0.004678359255194664 +steady,sr,72,28.8,force,lower_fx,0.0004205672303214669 +steady,sr,72,28.8,force,lower_fy,-0.005257668439298868 +steady,sr,73,29.2,force,front_fx,0.0015585076762363315 +steady,sr,73,29.2,force,front_fy,-8.946237358031794e-05 +steady,sr,73,29.2,force,upper_fx,0.00022060085029806942 +steady,sr,73,29.2,force,upper_fy,0.004622733686119318 +steady,sr,73,29.2,force,lower_fx,0.0003898879513144493 +steady,sr,73,29.2,force,lower_fy,-0.005311816465109587 +steady,sr,74,29.6,force,front_fx,0.0015591345727443695 +steady,sr,74,29.6,force,front_fy,-0.00010445215593790635 +steady,sr,74,29.6,force,upper_fx,0.000276547740213573 +steady,sr,74,29.6,force,upper_fy,0.0046171387657523155 +steady,sr,74,29.6,force,lower_fx,0.00034528490505181253 +steady,sr,74,29.6,force,lower_fy,-0.005327275954186916 +steady,sr,75,30.0,force,front_fx,0.0015565298963338137 +steady,sr,75,30.0,force,front_fy,-0.00010609986202325672 +steady,sr,75,30.0,force,upper_fx,0.00032984939753077924 +steady,sr,75,30.0,force,upper_fy,0.004657603334635496 +steady,sr,75,30.0,force,lower_fx,0.0002886237052734941 +steady,sr,75,30.0,force,lower_fy,-0.005296017974615097 +steady,sr,76,30.4,force,front_fx,0.0015531632816419005 +steady,sr,76,30.4,force,front_fy,-9.309028246207163e-05 +steady,sr,76,30.4,force,upper_fx,0.0003755535581149161 +steady,sr,76,30.4,force,upper_fy,0.0047370437532663345 +steady,sr,76,30.4,force,lower_fx,0.00023018794308882207 +steady,sr,76,30.4,force,lower_fy,-0.005219439044594765 +steady,sr,77,30.8,force,front_fx,0.0015519047155976295 +steady,sr,77,30.8,force,front_fy,-6.85053164488636e-05 +steady,sr,77,30.8,force,upper_fx,0.00041333248373121023 +steady,sr,77,30.8,force,upper_fy,0.004844598937779665 +steady,sr,77,30.8,force,lower_fx,0.00018450137577019632 +steady,sr,77,30.8,force,lower_fy,-0.005107319913804531 +steady,sr,78,31.2,force,front_fx,0.001554615912027657 +steady,sr,78,31.2,force,front_fy,-3.480600571492687e-05 +steady,sr,78,31.2,force,upper_fx,0.00044163831626065075 +steady,sr,78,31.2,force,upper_fy,0.004970540292561054 +steady,sr,78,31.2,force,lower_fx,0.00015687798440922052 +steady,sr,78,31.2,force,lower_fy,-0.004981057718396187 +steady,sr,79,31.6,force,front_fx,0.0015580346807837486 +steady,sr,79,31.6,force,front_fy,2.849782731573214e-06 +steady,sr,79,31.6,force,upper_fx,0.0004545183037407696 +steady,sr,79,31.6,force,upper_fy,0.005098946858197451 +steady,sr,79,31.6,force,lower_fx,0.00014953745994716883 +steady,sr,79,31.6,force,lower_fy,-0.004857177846133709 +steady,sr,80,32.0,force,front_fx,0.0015582414343953133 +steady,sr,80,32.0,force,front_fy,4.062761217937805e-05 +steady,sr,80,32.0,force,upper_fx,0.0004454498994164169 +steady,sr,80,32.0,force,upper_fy,0.005211593583226204 +steady,sr,80,32.0,force,lower_fx,0.0001608646271051839 +steady,sr,80,32.0,force,lower_fy,-0.0047459229826927185 +steady,sr,81,32.4,force,front_fx,0.0015564996283501387 +steady,sr,81,32.4,force,front_fy,7.308711064979434e-05 +steady,sr,81,32.4,force,upper_fx,0.0004156470240559429 +steady,sr,81,32.4,force,upper_fy,0.005290497560054064 +steady,sr,81,32.4,force,lower_fx,0.00018889797502197325 +steady,sr,81,32.4,force,lower_fy,-0.0046615381725132465 +steady,sr,82,32.8,force,front_fx,0.0015544112538918853 +steady,sr,82,32.8,force,front_fy,9.63997736107558e-05 +steady,sr,82,32.8,force,upper_fx,0.00037108935066498816 +steady,sr,82,32.8,force,upper_fy,0.005326850339770317 +steady,sr,82,32.8,force,lower_fx,0.0002317326288903132 +steady,sr,82,32.8,force,lower_fy,-0.004615503363311291 +steady,sr,83,33.2,force,front_fx,0.0015550553798675537 +steady,sr,83,33.2,force,front_fy,0.00010734367970144376 +steady,sr,83,33.2,force,upper_fx,0.0003212302690371871 +steady,sr,83,33.2,force,upper_fy,0.005319642368704081 +steady,sr,83,33.2,force,lower_fx,0.0002880688989534974 +steady,sr,83,33.2,force,lower_fy,-0.0046181026846170425 +steady,sr,84,33.6,force,front_fx,0.0015571581898257136 +steady,sr,84,33.6,force,front_fy,0.00010400595783721656 +steady,sr,84,33.6,force,upper_fx,0.0002708220563363284 +steady,sr,84,33.6,force,upper_fy,0.005272619891911745 +steady,sr,84,33.6,force,lower_fx,0.00034787069307640195 +steady,sr,84,33.6,force,lower_fy,-0.004672839771956205 +steady,sr,85,34.0,force,front_fx,0.0015577413141727448 +steady,sr,85,34.0,force,front_fy,8.707861707080156e-05 +steady,sr,85,34.0,force,upper_fx,0.00022187933791428804 +steady,sr,85,34.0,force,upper_fy,0.005190347321331501 +steady,sr,85,34.0,force,lower_fx,0.00039898755494505167 +steady,sr,85,34.0,force,lower_fy,-0.004770465195178986 +steady,sr,86,34.4,force,front_fx,0.0015559452585875988 +steady,sr,86,34.4,force,front_fy,5.850339221069589e-05 +steady,sr,86,34.4,force,upper_fx,0.00017829805437941104 +steady,sr,86,34.4,force,upper_fy,0.005077764857560396 +steady,sr,86,34.4,force,lower_fx,0.0004321938322391361 +steady,sr,86,34.4,force,lower_fy,-0.0048926817253232 +steady,sr,87,34.8,force,front_fx,0.0015536877326667309 +steady,sr,87,34.8,force,front_fy,2.3043376131681725e-05 +steady,sr,87,34.8,force,upper_fx,0.00014872458996251225 +steady,sr,87,34.8,force,upper_fy,0.004947164561599493 +steady,sr,87,34.8,force,lower_fx,0.00044715346302837133 +steady,sr,87,34.8,force,lower_fy,-0.0050200228579342365 +steady,sr,88,35.2,force,front_fx,0.001553265145048499 +steady,sr,88,35.2,force,front_fy,-1.5709412764408626e-05 +steady,sr,88,35.2,force,upper_fx,0.00014252788969315588 +steady,sr,88,35.2,force,upper_fy,0.004816402681171894 +steady,sr,88,35.2,force,lower_fx,0.0004470797721296549 +steady,sr,88,35.2,force,lower_fy,-0.005138440057635307 +steady,sr,89,35.6,force,front_fx,0.0015563872875645757 +steady,sr,89,35.6,force,front_fy,-5.22074697073549e-05 +steady,sr,89,35.6,force,upper_fx,0.00016385271737817675 +steady,sr,89,35.6,force,upper_fy,0.004707436077296734 +steady,sr,89,35.6,force,lower_fx,0.00043527595698833466 +steady,sr,89,35.6,force,lower_fy,-0.0052369763143360615 +steady,sr,90,36.0,force,front_fx,0.0015596839366480708 +steady,sr,90,36.0,force,front_fy,-8.237774454755709e-05 +steady,sr,90,36.0,force,upper_fx,0.00020625955949071795 +steady,sr,90,36.0,force,upper_fy,0.004637282341718674 +steady,sr,90,36.0,force,lower_fx,0.0004086276749148965 +steady,sr,90,36.0,force,lower_fy,-0.005307099316269159 +steady,sr,91,36.4,force,front_fx,0.0015593692660331726 +steady,sr,91,36.4,force,front_fy,-0.00010205237049376592 +steady,sr,91,36.4,force,upper_fx,0.0002585845941212028 +steady,sr,91,36.4,force,upper_fy,0.004614293575286865 +steady,sr,91,36.4,force,lower_fx,0.00036514492239803076 +steady,sr,91,36.4,force,lower_fy,-0.005336862988770008 +steady,sr,92,36.8,force,front_fx,0.0015567095251753926 +steady,sr,92,36.8,force,front_fy,-0.00010846153600141406 +steady,sr,92,36.8,force,upper_fx,0.00031185740954242647 +steady,sr,92,36.8,force,upper_fy,0.004637155681848526 +steady,sr,92,36.8,force,lower_fx,0.00030892351060174406 +steady,sr,92,36.8,force,lower_fy,-0.0053189778700470924 +steady,sr,93,37.2,force,front_fx,0.0015534365084022284 +steady,sr,93,37.2,force,front_fy,-0.00010042350913863629 +steady,sr,93,37.2,force,upper_fx,0.0003610915446188301 +steady,sr,93,37.2,force,upper_fy,0.0047027976252138615 +steady,sr,93,37.2,force,lower_fx,0.00024884974118322134 +steady,sr,93,37.2,force,lower_fy,-0.005254293791949749 +steady,sr,94,37.6,force,front_fx,0.0015533625846728683 +steady,sr,94,37.6,force,front_fy,-7.906978134997189e-05 +steady,sr,94,37.6,force,upper_fx,0.0004054048622492701 +steady,sr,94,37.6,force,upper_fy,0.004803577437996864 +steady,sr,94,37.6,force,lower_fx,0.000199146059458144 +steady,sr,94,37.6,force,lower_fy,-0.005152976606041193 +steady,sr,95,38.0,force,front_fx,0.001556014409288764 +steady,sr,95,38.0,force,front_fy,-4.786037970916368e-05 +steady,sr,95,38.0,force,upper_fx,0.0004400712496135384 +steady,sr,95,38.0,force,upper_fy,0.004928741604089737 +steady,sr,95,38.0,force,lower_fx,0.00016609247541055083 +steady,sr,95,38.0,force,lower_fy,-0.00503145344555378 +steady,sr,96,38.4,force,front_fx,0.001558154122903943 +steady,sr,96,38.4,force,front_fy,-1.0307968295819592e-05 +steady,sr,96,38.4,force,upper_fx,0.00045769993448629975 +steady,sr,96,38.4,force,upper_fy,0.005061928182840347 +steady,sr,96,38.4,force,lower_fx,0.00015136208094190806 +steady,sr,96,38.4,force,lower_fy,-0.0049039265140891075 +steady,sr,97,38.8,force,front_fx,0.001557792886160314 +steady,sr,97,38.8,force,front_fy,2.8224307243363e-05 +steady,sr,97,38.8,force,upper_fx,0.0004531931772362441 +steady,sr,97,38.8,force,upper_fy,0.005181674845516682 +steady,sr,97,38.8,force,lower_fx,0.00015366128354799002 +steady,sr,97,38.8,force,lower_fy,-0.004784261807799339 +steady,sr,98,39.2,force,front_fx,0.0015562139451503754 +steady,sr,98,39.2,force,front_fy,6.364045839291066e-05 +steady,sr,98,39.2,force,upper_fx,0.00042827773722819984 +steady,sr,98,39.2,force,upper_fy,0.005272287875413895 +steady,sr,98,39.2,force,lower_fx,0.00017424592806492 +steady,sr,98,39.2,force,lower_fy,-0.00468540471047163 +steady,sr,99,39.6,force,front_fx,0.0015550106763839722 +steady,sr,99,39.6,force,front_fy,9.062838944373652e-05 +steady,sr,99,39.6,force,upper_fx,0.00038928136928007007 +steady,sr,99,39.6,force,upper_fy,0.005322818178683519 +steady,sr,99,39.6,force,lower_fx,0.00021496249246411026 +steady,sr,99,39.6,force,lower_fy,-0.004622335080057383 +steady,sr,100,40.0,force,front_fx,0.0015566248912364244 +steady,sr,100,40.0,force,front_fy,0.0001063169984263368 +steady,sr,100,40.0,force,upper_fx,0.00034337371471337974 +steady,sr,100,40.0,force,upper_fy,0.005332268308848143 +steady,sr,100,40.0,force,lower_fx,0.00027112304815091193 +steady,sr,100,40.0,force,lower_fy,-0.00460906932130456 +steady,sr,101,40.4,force,front_fx,0.001558654010295868 +steady,sr,101,40.4,force,front_fy,0.00010783492325572297 +steady,sr,101,40.4,force,upper_fx,0.0002929527254309505 +steady,sr,101,40.4,force,upper_fy,0.0053007774986326694 +steady,sr,101,40.4,force,lower_fx,0.0003326460428070277 +steady,sr,101,40.4,force,lower_fy,-0.00464951666072011 +steady,sr,102,40.8,force,front_fx,0.0015579232713207603 +steady,sr,102,40.8,force,front_fy,9.523052722215652e-05 +steady,sr,102,40.8,force,upper_fx,0.00023988299653865397 +steady,sr,102,40.8,force,upper_fy,0.005229759030044079 +steady,sr,102,40.8,force,lower_fx,0.000385727034881711 +steady,sr,102,40.8,force,lower_fy,-0.004735313821583986 +steady,sr,103,41.2,force,front_fx,0.0015556165017187595 +steady,sr,103,41.2,force,front_fy,7.011201523710042e-05 +steady,sr,103,41.2,force,upper_fx,0.0001903805386973545 +steady,sr,103,41.2,force,upper_fy,0.005123378708958626 +steady,sr,103,41.2,force,lower_fx,0.000423309626057744 +steady,sr,103,41.2,force,lower_fy,-0.004850555211305618 +steady,sr,104,41.6,force,front_fx,0.0015533746918663383 +steady,sr,104,41.6,force,front_fy,3.59840523742605e-05 +steady,sr,104,41.6,force,upper_fx,0.00015431213250849396 +steady,sr,104,41.6,force,upper_fy,0.004993496462702751 +steady,sr,104,41.6,force,lower_fx,0.0004437303578015417 +steady,sr,104,41.6,force,lower_fy,-0.004976963624358177 +steady,sr,105,42.0,force,front_fx,0.0015541602624580264 +steady,sr,105,42.0,force,front_fy,-2.2617737158725504e-06 +steady,sr,105,42.0,force,upper_fx,0.00014208740321919322 +steady,sr,105,42.0,force,upper_fy,0.004859243519604206 +steady,sr,105,42.0,force,lower_fx,0.0004520511720329523 +steady,sr,105,42.0,force,lower_fy,-0.005100431386381388 +steady,sr,106,42.4,force,front_fx,0.0015574396820738912 +steady,sr,106,42.4,force,front_fy,-4.071588773513213e-05 +steady,sr,106,42.4,force,upper_fx,0.00015677185729146004 +steady,sr,106,42.4,force,upper_fy,0.004741613753139973 +steady,sr,106,42.4,force,lower_fx,0.0004462786018848419 +steady,sr,106,42.4,force,lower_fy,-0.005211174488067627 +steady,sr,107,42.8,force,front_fx,0.001560042961500585 +steady,sr,107,42.8,force,front_fy,-7.372957043116912e-05 +steady,sr,107,42.8,force,upper_fx,0.00019245629664510489 +steady,sr,107,42.8,force,upper_fy,0.004658150020986795 +steady,sr,107,42.8,force,lower_fx,0.00042438862146809697 +steady,sr,107,42.8,force,lower_fy,-0.005294312722980976 +steady,sr,108,43.2,force,front_fx,0.0015593069838359952 +steady,sr,108,43.2,force,front_fy,-9.758494707057253e-05 +steady,sr,108,43.2,force,upper_fx,0.00023978445096872747 +steady,sr,108,43.2,force,upper_fy,0.004617141094058752 +steady,sr,108,43.2,force,lower_fx,0.00038310536183416843 +steady,sr,108,43.2,force,lower_fy,-0.005338691640645266 +steady,sr,109,43.6,force,front_fx,0.001556637929752469 +steady,sr,109,43.6,force,front_fy,-0.00010878107423195615 +steady,sr,109,43.6,force,upper_fx,0.00029212498338893056 +steady,sr,109,43.6,force,upper_fy,0.004622063133865595 +steady,sr,109,43.6,force,lower_fx,0.00032989110331982374 +steady,sr,109,43.6,force,lower_fy,-0.005332789849489927 +steady,sr,110,44.0,force,front_fx,0.0015540249878540635 +steady,sr,110,44.0,force,front_fy,-0.00010559619113337249 +steady,sr,110,44.0,force,upper_fx,0.0003447808267083019 +steady,sr,110,44.0,force,upper_fy,0.004672495182603598 +steady,sr,110,44.0,force,lower_fx,0.0002686902298592031 +steady,sr,110,44.0,force,lower_fy,-0.0052838074043393135 +steady,sr,111,44.4,force,front_fx,0.0015547440852969885 +steady,sr,111,44.4,force,front_fy,-8.852298196870834e-05 +steady,sr,111,44.4,force,upper_fx,0.00039493918302468956 +steady,sr,111,44.4,force,upper_fy,0.004764443263411522 +steady,sr,111,44.4,force,lower_fx,0.00021694021415896714 +steady,sr,111,44.4,force,lower_fy,-0.005193723365664482 +steady,sr,112,44.8,force,front_fx,0.0015571170952171087 +steady,sr,112,44.8,force,front_fy,-5.978804620099254e-05 +steady,sr,112,44.8,force,upper_fx,0.0004350387607701123 +steady,sr,112,44.8,force,upper_fy,0.004886683076620102 +steady,sr,112,44.8,force,lower_fx,0.00017886163550429046 +steady,sr,112,44.8,force,lower_fy,-0.005078980699181557 +steady,sr,113,45.2,force,front_fx,0.0015579120954498649 +steady,sr,113,45.2,force,front_fy,-2.389307519479189e-05 +steady,sr,113,45.2,force,upper_fx,0.0004480814968701452 +steady,sr,113,45.2,force,upper_fy,0.0050211213529109955 +steady,sr,113,45.2,force,lower_fx,0.00015535569400526583 +steady,sr,113,45.2,force,lower_fy,-0.004951568320393562 +steady,sr,114,45.6,force,front_fx,0.00155713374260813 +steady,sr,114,45.6,force,front_fy,1.532571877760347e-05 +steady,sr,114,45.6,force,upper_fx,0.0004575621569529176 +steady,sr,114,45.6,force,upper_fy,0.005146922077983618 +steady,sr,114,45.6,force,lower_fx,0.00015094366972334683 +steady,sr,114,45.6,force,lower_fy,-0.004822615068405867 +steady,sr,115,46.0,force,front_fx,0.0015557307051494718 +steady,sr,115,46.0,force,front_fy,5.233379124547355e-05 +steady,sr,115,46.0,force,upper_fx,0.00043847053893841803 +steady,sr,115,46.0,force,upper_fy,0.005247056484222412 +steady,sr,115,46.0,force,lower_fx,0.00016278293333016336 +steady,sr,115,46.0,force,lower_fy,-0.004713596310466528 +steady,sr,116,46.4,force,front_fx,0.001555779599584639 +steady,sr,116,46.4,force,front_fy,8.314660954056308e-05 +steady,sr,116,46.4,force,upper_fx,0.00040581871871836483 +steady,sr,116,46.4,force,upper_fy,0.005312070716172457 +steady,sr,116,46.4,force,lower_fx,0.00019947451073676348 +steady,sr,116,46.4,force,lower_fy,-0.004635704681277275 +steady,sr,117,46.8,force,front_fx,0.0015580464387312531 +steady,sr,117,46.8,force,front_fy,0.00010304855095455423 +steady,sr,117,46.8,force,upper_fx,0.00036422713310457766 +steady,sr,117,46.8,force,upper_fy,0.005337977781891823 +steady,sr,117,46.8,force,lower_fx,0.00025427283253520727 +steady,sr,117,46.8,force,lower_fy,-0.0046066767536103725 +steady,sr,118,47.2,force,front_fx,0.0015594417927786708 +steady,sr,118,47.2,force,front_fy,0.00010976571502396837 +steady,sr,118,47.2,force,upper_fx,0.0003143494250252843 +steady,sr,118,47.2,force,upper_fy,0.0053226882591843605 +steady,sr,118,47.2,force,lower_fx,0.00031537486938759685 +steady,sr,118,47.2,force,lower_fy,-0.00463104946538806 +steady,sr,119,47.6,force,front_fx,0.0015580867184326053 +steady,sr,119,47.6,force,front_fy,0.00010164111881749704 +steady,sr,119,47.6,force,upper_fx,0.00025475514121353626 +steady,sr,119,47.6,force,upper_fy,0.005260219797492027 +steady,sr,119,47.6,force,lower_fx,0.00036995921982452273 +steady,sr,119,47.6,force,lower_fy,-0.004703176207840443 +steady,sr,120,48.0,force,front_fx,0.0015553607372567058 +steady,sr,120,48.0,force,front_fy,8.059350511757657e-05 +steady,sr,120,48.0,force,upper_fx,0.00020430581935215741 +steady,sr,120,48.0,force,upper_fy,0.0051655955612659454 +steady,sr,120,48.0,force,lower_fx,0.0004114910261705518 +steady,sr,120,48.0,force,lower_fy,-0.004808370489627123 +steady,sr,121,48.4,force,front_fx,0.0015532909892499447 +steady,sr,121,48.4,force,front_fy,4.880209598923102e-05 +steady,sr,121,48.4,force,upper_fx,0.00016284501180052757 +steady,sr,121,48.4,force,upper_fy,0.00503931799903512 +steady,sr,121,48.4,force,lower_fx,0.00043888125219382346 +steady,sr,121,48.4,force,lower_fy,-0.004931960254907608 +steady,sr,122,48.8,force,front_fx,0.0015548944938927889 +steady,sr,122,48.8,force,front_fy,1.1126174285891466e-05 +steady,sr,122,48.8,force,upper_fx,0.00014476437354460359 +steady,sr,122,48.8,force,upper_fy,0.004904178902506828 +steady,sr,122,48.8,force,lower_fx,0.0004542202514130622 +steady,sr,122,48.8,force,lower_fy,-0.005059617571532726 +steady,sr,123,49.2,force,front_fx,0.0015582165215164423 +steady,sr,123,49.2,force,front_fy,-2.8026806830894202e-05 +steady,sr,123,49.2,force,upper_fx,0.00015183698269538581 +steady,sr,123,49.2,force,upper_fy,0.004780387505888939 +steady,sr,123,49.2,force,lower_fx,0.0004550427838694304 +steady,sr,123,49.2,force,lower_fy,-0.005179207772016525 +steady,sr,124,49.6,force,front_fx,0.001559958211146295 +steady,sr,124,49.6,force,front_fy,-6.358139216899872e-05 +steady,sr,124,49.6,force,upper_fx,0.00017984256555791944 +steady,sr,124,49.6,force,upper_fy,0.004684200044721365 +steady,sr,124,49.6,force,lower_fx,0.00043714363710023463 +steady,sr,124,49.6,force,lower_fy,-0.005275140516459942 +steady,sr,125,50.0,force,front_fx,0.0015589846298098564 +steady,sr,125,50.0,force,front_fy,-9.111308463616297e-05 +steady,sr,125,50.0,force,upper_fx,0.00022139381326269358 +steady,sr,125,50.0,force,upper_fy,0.004626181907951832 +steady,sr,125,50.0,force,lower_fx,0.00039921802817843854 +steady,sr,125,50.0,force,lower_fy,-0.00533268041908741 +steady,sr,126,50.4,force,front_fx,0.001556472503580153 +steady,sr,126,50.4,force,front_fy,-0.00010726907930802554 +steady,sr,126,50.4,force,upper_fx,0.00027197995223104954 +steady,sr,126,50.4,force,upper_fy,0.004612622782588005 +steady,sr,126,50.4,force,lower_fx,0.00034653066541068256 +steady,sr,126,50.4,force,lower_fy,-0.005343550816178322 +steady,sr,127,50.8,force,front_fx,0.0015549561940133572 +steady,sr,127,50.8,force,front_fy,-0.00010900374763878062 +steady,sr,127,50.8,force,upper_fx,0.00032742982148192823 +steady,sr,127,50.8,force,upper_fy,0.004647440742701292 +steady,sr,127,50.8,force,lower_fx,0.00028923165518790483 +steady,sr,127,50.8,force,lower_fy,-0.005306839477270842 +steady,sr,128,51.2,force,front_fx,0.0015561017207801342 +steady,sr,128,51.2,force,front_fy,-9.642627992434427e-05 +steady,sr,128,51.2,force,upper_fx,0.00038219353882595897 +steady,sr,128,51.2,force,upper_fy,0.004728326108306646 +steady,sr,128,51.2,force,lower_fx,0.000236543346545659 +steady,sr,128,51.2,force,lower_fy,-0.005230505019426346 +steady,sr,129,51.6,force,front_fx,0.0015576393343508244 +steady,sr,129,51.6,force,front_fy,-7.106076373020187e-05 +steady,sr,129,51.6,force,upper_fx,0.00042699321056716144 +steady,sr,129,51.6,force,upper_fy,0.004845051560550928 +steady,sr,129,51.6,force,lower_fx,0.0001931882870849222 +steady,sr,129,51.6,force,lower_fy,-0.005124611314386129 +steady,sr,130,52.0,force,front_fx,0.0015576009172946215 +steady,sr,130,52.0,force,front_fy,-3.700491652125493e-05 +steady,sr,130,52.0,force,upper_fx,0.0004534689651336521 +steady,sr,130,52.0,force,upper_fy,0.004978144075721502 +steady,sr,130,52.0,force,lower_fx,0.00016281363787129521 +steady,sr,130,52.0,force,lower_fy,-0.004998123273253441 +steady,sr,131,52.4,force,front_fx,0.0015564836794510484 +steady,sr,131,52.4,force,front_fy,1.8349616084378795e-06 +steady,sr,131,52.4,force,upper_fx,0.0004591911274474114 +steady,sr,131,52.4,force,upper_fy,0.005107581615447998 +steady,sr,131,52.4,force,lower_fx,0.00014653278049081564 +steady,sr,131,52.4,force,lower_fy,-0.004867443349212408 +steady,sr,132,52.8,force,front_fx,0.001555195776745677 +steady,sr,132,52.8,force,front_fy,4.047118636663072e-05 +steady,sr,132,52.8,force,upper_fx,0.000446406687842682 +steady,sr,132,52.8,force,upper_fy,0.005216603167355061 +steady,sr,132,52.8,force,lower_fx,0.00015348159649875015 +steady,sr,132,52.8,force,lower_fy,-0.004746651276946068 +steady,sr,133,53.2,force,front_fx,0.001556596951559186 +steady,sr,133,53.2,force,front_fy,7.392355473712087e-05 +steady,sr,133,53.2,force,upper_fx,0.0004207864112686366 +steady,sr,133,53.2,force,upper_fy,0.005295260343700647 +steady,sr,133,53.2,force,lower_fx,0.00018560228636488318 +steady,sr,133,53.2,force,lower_fy,-0.004655557684600353 +steady,sr,134,53.6,force,front_fx,0.0015591512201353908 +steady,sr,134,53.6,force,front_fy,9.822146967053413e-05 +steady,sr,134,53.6,force,upper_fx,0.0003834657836705446 +steady,sr,134,53.6,force,upper_fy,0.0053374553099274635 +steady,sr,134,53.6,force,lower_fx,0.00023737271840218455 +steady,sr,134,53.6,force,lower_fy,-0.004610580857843161 +steady,sr,135,54.0,force,front_fx,0.001559871481731534 +steady,sr,135,54.0,force,front_fy,0.00010964031389448792 +steady,sr,135,54.0,force,upper_fx,0.00033470711787231266 +steady,sr,135,54.0,force,upper_fy,0.005337836220860481 +steady,sr,135,54.0,force,lower_fx,0.00029665746842511 +steady,sr,135,54.0,force,lower_fy,-0.004618505015969276 +steady,sr,136,54.4,force,front_fx,0.0015579990576952696 +steady,sr,136,54.4,force,front_fy,0.00010675265366444364 +steady,sr,136,54.4,force,upper_fx,0.0002771787403617054 +steady,sr,136,54.4,force,upper_fy,0.005292500834912062 +steady,sr,136,54.4,force,lower_fx,0.00035218457924202085 +steady,sr,136,54.4,force,lower_fy,-0.004674511030316353 +steady,sr,137,54.8,force,front_fx,0.0015550917014479637 +steady,sr,137,54.8,force,front_fy,8.93328688107431e-05 +steady,sr,137,54.8,force,upper_fx,0.0002197963185608387 +steady,sr,137,54.8,force,upper_fy,0.005203890614211559 +steady,sr,137,54.8,force,lower_fx,0.00039743687375448644 +steady,sr,137,54.8,force,lower_fy,-0.004768462851643562 +steady,sr,138,55.2,force,front_fx,0.0015536502469331026 +steady,sr,138,55.2,force,front_fy,6.0871156165376306e-05 +steady,sr,138,55.2,force,upper_fx,0.0001742391032166779 +steady,sr,138,55.2,force,upper_fy,0.005083954893052578 +steady,sr,138,55.2,force,lower_fx,0.0004308882635086775 +steady,sr,138,55.2,force,lower_fy,-0.00488724559545517 +steady,sr,139,55.6,force,front_fx,0.001555583905428648 +steady,sr,139,55.6,force,front_fy,2.4515571567462757e-05 +steady,sr,139,55.6,force,upper_fx,0.00014834452304057777 +steady,sr,139,55.6,force,upper_fy,0.004948699381202459 +steady,sr,139,55.6,force,lower_fx,0.00045369312283582985 +steady,sr,139,55.6,force,lower_fy,-0.005016871728003025 +steady,sr,140,56.0,force,front_fx,0.0015585189685225487 +steady,sr,140,56.0,force,front_fy,-1.4794632079428993e-05 +steady,sr,140,56.0,force,upper_fx,0.00014935029321350157 +steady,sr,140,56.0,force,upper_fy,0.004822509363293648 +steady,sr,140,56.0,force,lower_fx,0.0004604732966981828 +steady,sr,140,56.0,force,lower_fy,-0.005143636837601662 +steady,sr,141,56.4,force,front_fx,0.001559584867209196 +steady,sr,141,56.4,force,front_fy,-5.253643757896498e-05 +steady,sr,141,56.4,force,upper_fx,0.00016854163550306112 +steady,sr,141,56.4,force,upper_fy,0.004715159069746733 +steady,sr,141,56.4,force,lower_fx,0.000446943158749491 +steady,sr,141,56.4,force,lower_fy,-0.005249802954494953 +steady,sr,142,56.8,force,front_fx,0.0015585317742079496 +steady,sr,142,56.8,force,front_fy,-8.32775331218727e-05 +steady,sr,142,56.8,force,upper_fx,0.00020410760771483183 +steady,sr,142,56.8,force,upper_fy,0.004640916828066111 +steady,sr,142,56.8,force,lower_fx,0.0004132376634515822 +steady,sr,142,56.8,force,lower_fy,-0.005320397205650806 +steady,sr,143,57.2,force,front_fx,0.0015563714550808072 +steady,sr,143,57.2,force,front_fy,-0.00010364141053287312 +steady,sr,143,57.2,force,upper_fx,0.00025214310153387487 +steady,sr,143,57.2,force,upper_fy,0.0046094260178506374 +steady,sr,143,57.2,force,lower_fx,0.000364435079973191 +steady,sr,143,57.2,force,lower_fy,-0.0053456318564713 +steady,sr,144,57.6,force,front_fx,0.001555992173962295 +steady,sr,144,57.6,force,front_fy,-0.00011052977060899138 +steady,sr,144,57.6,force,upper_fx,0.000309440481942147 +steady,sr,144,57.6,force,upper_fy,0.00462780287489295 +steady,sr,144,57.6,force,lower_fx,0.00031012584804557264 +steady,sr,144,57.6,force,lower_fy,-0.005324768368154764 +steady,sr,145,58.0,force,front_fx,0.001557328854687512 +steady,sr,145,58.0,force,front_fy,-0.00010261442366754636 +steady,sr,145,58.0,force,upper_fx,0.00036754668690264225 +steady,sr,145,58.0,force,upper_fy,0.004696318879723549 +steady,sr,145,58.0,force,lower_fx,0.000256852013990283 +steady,sr,145,58.0,force,lower_fy,-0.0052629075944423676 +steady,sr,146,58.4,force,front_fx,0.0015579850878566504 +steady,sr,146,58.4,force,front_fy,-8.130543574225157e-05 +steady,sr,146,58.4,force,upper_fx,0.00041602522833272815 +steady,sr,146,58.4,force,upper_fy,0.004804493859410286 +steady,sr,146,58.4,force,lower_fx,0.00020873970061074942 +steady,sr,146,58.4,force,lower_fy,-0.005167245399206877 +steady,sr,147,58.8,force,front_fx,0.0015571488765999675 +steady,sr,147,58.8,force,front_fy,-4.9481677706353366e-05 +steady,sr,147,58.8,force,upper_fx,0.0004467601829674095 +steady,sr,147,58.8,force,upper_fy,0.004934106487780809 +steady,sr,147,58.8,force,lower_fx,0.00017015081539284438 +steady,sr,147,58.8,force,lower_fy,-0.005045426543802023 +steady,sr,148,59.2,force,front_fx,0.0015557376900687814 +steady,sr,148,59.2,force,front_fy,-1.1819643077615183e-05 +steady,sr,148,59.2,force,upper_fx,0.00045809513540007174 +steady,sr,148,59.2,force,upper_fy,0.005065036937594414 +steady,sr,148,59.2,force,lower_fx,0.00014694883429910988 +steady,sr,148,59.2,force,lower_fy,-0.004912263713777065 +steady,sr,149,59.6,force,front_fx,0.0015551145188510418 +steady,sr,149,59.6,force,front_fy,2.766838952084072e-05 +steady,sr,149,59.6,force,upper_fx,0.0004524566465988755 +steady,sr,149,59.6,force,upper_fy,0.005181750748306513 +steady,sr,149,59.6,force,lower_fx,0.00014692771947011352 +steady,sr,149,59.6,force,lower_fy,-0.004782891366630793 +steady,sr,150,60.0,force,front_fx,0.0015573051059618592 +steady,sr,150,60.0,force,front_fy,6.35269534541294e-05 +steady,sr,150,60.0,force,upper_fx,0.0004334678524173796 +steady,sr,150,60.0,force,upper_fy,0.005273046903312206 +steady,sr,150,60.0,force,lower_fx,0.00017381574434693903 +steady,sr,150,60.0,force,lower_fy,-0.004681549966335297 +steady,sr,151,60.4,force,front_fx,0.0015598173486068845 +steady,sr,151,60.4,force,front_fy,9.14639385882765e-05 +steady,sr,151,60.4,force,upper_fx,0.00040092269773595035 +steady,sr,151,60.4,force,upper_fy,0.005330877378582954 +steady,sr,151,60.4,force,lower_fx,0.00022085962700657547 +steady,sr,151,60.4,force,lower_fy,-0.004621131811290979 +steady,sr,152,60.8,force,front_fx,0.001560063217766583 +steady,sr,152,60.8,force,front_fy,0.00010766660125227645 +steady,sr,152,60.8,force,upper_fx,0.00035380953340791166 +steady,sr,152,60.8,force,upper_fy,0.005346773192286491 +steady,sr,152,60.8,force,lower_fx,0.0002773213491309434 +steady,sr,152,60.8,force,lower_fy,-0.004611614625900984 +steady,sr,153,61.2,force,front_fx,0.001557869021780789 +steady,sr,153,61.2,force,front_fy,0.00010963311069644988 +steady,sr,153,61.2,force,upper_fx,0.0002961131394840777 +steady,sr,153,61.2,force,upper_fy,0.005315275397151709 +steady,sr,153,61.2,force,lower_fx,0.00033294237800873816 +steady,sr,153,61.2,force,lower_fy,-0.004650445189327002 +steady,sr,154,61.6,force,front_fx,0.0015549190575256944 +steady,sr,154,61.6,force,front_fy,9.717064676806331e-05 +steady,sr,154,61.6,force,upper_fx,0.00023669275105930865 +steady,sr,154,61.6,force,upper_fy,0.00523831183090806 +steady,sr,154,61.6,force,lower_fx,0.0003816453681793064 +steady,sr,154,61.6,force,lower_fy,-0.004731310065835714 +steady,sr,155,62.0,force,front_fx,0.0015543000772595406 +steady,sr,155,62.0,force,front_fy,7.187049050116912e-05 +steady,sr,155,62.0,force,upper_fx,0.00018836409435607493 +steady,sr,155,62.0,force,upper_fy,0.00512682506814599 +steady,sr,155,62.0,force,lower_fx,0.00042186540667898953 +steady,sr,155,62.0,force,lower_fy,-0.004842972382903099 +steady,sr,156,62.4,force,front_fx,0.0015563196502625942 +steady,sr,156,62.4,force,front_fy,3.766192094190046e-05 +steady,sr,156,62.4,force,upper_fx,0.0001581456745043397 +steady,sr,156,62.4,force,upper_fy,0.00499747134745121 +steady,sr,156,62.4,force,lower_fx,0.0004509554128162563 +steady,sr,156,62.4,force,lower_fy,-0.004972666501998901 +steady,sr,157,62.8,force,front_fx,0.0015584707725793123 +steady,sr,157,62.8,force,front_fy,-1.389570797982742e-06 +steady,sr,157,62.8,force,upper_fx,0.00014898329391144216 +steady,sr,157,62.8,force,upper_fy,0.004866858944296837 +steady,sr,157,62.8,force,lower_fx,0.0004631386836990714 +steady,sr,157,62.8,force,lower_fy,-0.005104660987854004 +steady,sr,158,63.2,force,front_fx,0.0015590820694342256 +steady,sr,158,63.2,force,front_fy,-4.0116123273037374e-05 +steady,sr,158,63.2,force,upper_fx,0.00015934558177832514 +steady,sr,158,63.2,force,upper_fy,0.004750200547277927 +steady,sr,158,63.2,force,lower_fx,0.00045422426774166524 +steady,sr,158,63.2,force,lower_fy,-0.005219847429543734 +steady,sr,159,63.6,force,front_fx,0.0015579723985865712 +steady,sr,159,63.6,force,front_fy,-7.3998722655233e-05 +steady,sr,159,63.6,force,upper_fx,0.00018815897055901587 +steady,sr,159,63.6,force,upper_fy,0.004660970997065306 +steady,sr,159,63.6,force,lower_fx,0.00042524150921963155 +steady,sr,159,63.6,force,lower_fy,-0.0053022075444459915 +steady,sr,160,64.0,force,front_fx,0.0015564459608867764 +steady,sr,160,64.0,force,front_fy,-9.828173642745242e-05 +steady,sr,160,64.0,force,upper_fx,0.0002332991425646469 +steady,sr,160,64.0,force,upper_fy,0.004612465389072895 +steady,sr,160,64.0,force,lower_fx,0.00038142583798617125 +steady,sr,160,64.0,force,lower_fy,-0.00534183019772172 +steady,sr,161,64.4,force,front_fx,0.0015570491086691618 +steady,sr,161,64.4,force,front_fy,-0.00011014944175258279 +steady,sr,161,64.4,force,upper_fx,0.0002910777984652668 +steady,sr,161,64.4,force,upper_fy,0.004614229314029217 +steady,sr,161,64.4,force,lower_fx,0.00033041081042028964 +steady,sr,161,64.4,force,lower_fy,-0.005337702576071024 +steady,sr,162,64.8,force,front_fx,0.0015582649502903223 +steady,sr,162,64.8,force,front_fy,-0.0001068937053787522 +steady,sr,162,64.8,force,upper_fx,0.00035123576526530087 +steady,sr,162,64.8,force,upper_fy,0.0046686134301126 +steady,sr,162,64.8,force,lower_fx,0.0002773538581095636 +steady,sr,162,64.8,force,lower_fy,-0.0052907830104231834 +steady,sr,163,65.2,force,front_fx,0.0015581527259200811 +steady,sr,163,65.2,force,front_fy,-9.014287206809968e-05 +steady,sr,163,65.2,force,upper_fx,0.0004025863017886877 +steady,sr,163,65.2,force,upper_fy,0.004766215570271015 +steady,sr,163,65.2,force,lower_fx,0.00022542133228853345 +steady,sr,163,65.2,force,lower_fy,-0.0052064224146306515 +steady,sr,164,65.6,force,front_fx,0.001556741539388895 +steady,sr,164,65.6,force,front_fy,-6.149357795948163e-05 +steady,sr,164,65.6,force,upper_fx,0.0004377136647235602 +steady,sr,164,65.6,force,upper_fy,0.004889649339020252 +steady,sr,164,65.6,force,lower_fx,0.00018028095655608922 +steady,sr,164,65.6,force,lower_fy,-0.005091041326522827 +steady,sr,165,66.0,force,front_fx,0.0015549645759165287 +steady,sr,165,66.0,force,front_fy,-2.495587250450626e-05 +steady,sr,165,66.0,force,upper_fx,0.00045471382327377796 +steady,sr,165,66.0,force,upper_fy,0.005020589102059603 +steady,sr,165,66.0,force,lower_fx,0.00015014069504104555 +steady,sr,165,66.0,force,lower_fy,-0.0049573928117752075 +steady,sr,166,66.4,force,front_fx,0.0015552883269265294 +steady,sr,166,66.4,force,front_fy,1.4314136024040636e-05 +steady,sr,166,66.4,force,upper_fx,0.0004565691633615643 +steady,sr,166,66.4,force,upper_fy,0.005143275950103998 +steady,sr,166,66.4,force,lower_fx,0.00014389565330930054 +steady,sr,166,66.4,force,lower_fy,-0.004823967348784208 +steady,sr,167,66.8,force,front_fx,0.0015579414321109653 +steady,sr,167,66.8,force,front_fy,5.22189584444277e-05 +steady,sr,167,66.8,force,upper_fx,0.00044419540790840983 +steady,sr,167,66.8,force,upper_fy,0.005246398039162159 +steady,sr,167,66.8,force,lower_fx,0.00016409598174504936 +steady,sr,167,66.8,force,lower_fy,-0.004711679648607969 +steady,sr,168,67.2,force,front_fx,0.0015601158374920487 +steady,sr,168,67.2,force,front_fy,8.314628212247044e-05 +steady,sr,168,67.2,force,upper_fx,0.000416280614444986 +steady,sr,168,67.2,force,upper_fy,0.005318441428244114 +steady,sr,168,67.2,force,lower_fx,0.00020515552023425698 +steady,sr,168,67.2,force,lower_fy,-0.004637794103473425 +steady,sr,169,67.6,force,front_fx,0.0015599558828398585 +steady,sr,169,67.6,force,front_fy,0.00010395398567197844 +steady,sr,169,67.6,force,upper_fx,0.00037204392720013857 +steady,sr,169,67.6,force,upper_fy,0.0053498814813792706 +steady,sr,169,67.6,force,lower_fx,0.00026144011644646525 +steady,sr,169,67.6,force,lower_fy,-0.004606550559401512 +steady,sr,170,68.0,force,front_fx,0.0015576640143990517 +steady,sr,170,68.0,force,front_fy,0.00011086131416959688 +steady,sr,170,68.0,force,upper_fx,0.00031479104654863477 +steady,sr,170,68.0,force,upper_fy,0.0053323060274124146 +steady,sr,170,68.0,force,lower_fx,0.0003127805539406836 +steady,sr,170,68.0,force,lower_fy,-0.0046316636726260185 +steady,sr,171,68.4,force,front_fx,0.001555049093440175 +steady,sr,171,68.4,force,front_fy,0.00010318018757971004 +steady,sr,171,68.4,force,upper_fx,0.0002550247882027179 +steady,sr,171,68.4,force,upper_fy,0.005268420558422804 +steady,sr,171,68.4,force,lower_fx,0.00036480408743955195 +steady,sr,171,68.4,force,lower_fy,-0.004697840660810471 +steady,sr,172,68.8,force,front_fx,0.0015550587559118867 +steady,sr,172,68.8,force,front_fy,8.179413998732343e-05 +steady,sr,172,68.8,force,upper_fx,0.00020395638421177864 +steady,sr,172,68.8,force,upper_fy,0.005167290568351746 +steady,sr,172,68.8,force,lower_fx,0.00041094000334851444 +steady,sr,172,68.8,force,lower_fy,-0.004800831899046898 +steady,sr,173,69.2,force,front_fx,0.0015569759998470545 +steady,sr,173,69.2,force,front_fy,5.018266529077664e-05 +steady,sr,173,69.2,force,upper_fx,0.00016835363931022584 +steady,sr,173,69.2,force,upper_fy,0.00504386005923152 +steady,sr,173,69.2,force,lower_fx,0.0004455106391105801 +steady,sr,173,69.2,force,lower_fy,-0.004928378853946924 +steady,sr,174,69.6,force,front_fx,0.001558309537358582 +steady,sr,174,69.6,force,front_fy,1.227665961778257e-05 +steady,sr,174,69.6,force,upper_fx,0.00015088300278875977 +steady,sr,174,69.6,force,upper_fy,0.004912856966257095 +steady,sr,174,69.6,force,lower_fx,0.0004629944742191583 +steady,sr,174,69.6,force,lower_fy,-0.005063086282461882 +steady,sr,175,70.0,force,front_fx,0.0015582999913021922 +steady,sr,175,70.0,force,front_fy,-2.733429937507026e-05 +steady,sr,175,70.0,force,upper_fx,0.00015249215357471257 +steady,sr,175,70.0,force,upper_fy,0.004788532853126526 +steady,sr,175,70.0,force,lower_fx,0.0004590802709572017 +steady,sr,175,70.0,force,lower_fy,-0.005185160785913467 +steady,sr,176,70.4,force,front_fx,0.0015572054544463754 +steady,sr,176,70.4,force,front_fy,-6.334616045933217e-05 +steady,sr,176,70.4,force,upper_fx,0.00017419758660253137 +steady,sr,176,70.4,force,upper_fy,0.004686275497078896 +steady,sr,176,70.4,force,lower_fx,0.00043552275747060776 +steady,sr,176,70.4,force,lower_fy,-0.005278265569359064 +steady,sr,177,70.8,force,front_fx,0.0015568657545372844 +steady,sr,177,70.8,force,front_fy,-9.158939792541787e-05 +steady,sr,177,70.8,force,upper_fx,0.00021577671577688307 +steady,sr,177,70.8,force,upper_fy,0.004621563013643026 +steady,sr,177,70.8,force,lower_fx,0.0003973965358454734 +steady,sr,177,70.8,force,lower_fy,-0.005332615226507187 +steady,sr,178,71.2,force,front_fx,0.001558020361699164 +steady,sr,178,71.2,force,front_fy,-0.00010783331526909024 +steady,sr,178,71.2,force,upper_fx,0.00027248612605035305 +steady,sr,178,71.2,force,upper_fy,0.004607009701430798 +steady,sr,178,71.2,force,lower_fx,0.00035060555092059076 +steady,sr,178,71.2,force,lower_fy,-0.005344542209059 +steady,sr,179,71.6,force,front_fx,0.0015589733375236392 +steady,sr,179,71.6,force,front_fy,-0.00011015187919838354 +steady,sr,179,71.6,force,upper_fx,0.0003334906359668821 +steady,sr,179,71.6,force,upper_fy,0.004645791370421648 +steady,sr,179,71.6,force,lower_fx,0.00029788073152303696 +steady,sr,179,71.6,force,lower_fy,-0.005313830450177193 +steady,sr,180,72.0,force,front_fx,0.001558247022330761 +steady,sr,180,72.0,force,front_fy,-9.75789807853289e-05 +steady,sr,180,72.0,force,upper_fx,0.00038715105620212853 +steady,sr,180,72.0,force,upper_fy,0.004730736371129751 +steady,sr,180,72.0,force,lower_fx,0.00024244612723123282 +steady,sr,180,72.0,force,lower_fy,-0.0052419984713196754 +steady,sr,181,72.4,force,front_fx,0.001556207425892353 +steady,sr,181,72.4,force,front_fy,-7.246997120091692e-05 +steady,sr,181,72.4,force,upper_fx,0.0004263096197973937 +steady,sr,181,72.4,force,upper_fy,0.004845981486141682 +steady,sr,181,72.4,force,lower_fx,0.0001926106633618474 +steady,sr,181,72.4,force,lower_fy,-0.005133810453116894 +steady,sr,182,72.8,force,front_fx,0.0015545188216492534 +steady,sr,182,72.8,force,front_fy,-3.808410110650584e-05 +steady,sr,182,72.8,force,upper_fx,0.0004495593602769077 +steady,sr,182,72.8,force,upper_fy,0.004974876530468464 +steady,sr,182,72.8,force,lower_fx,0.00015629826521035284 +steady,sr,182,72.8,force,lower_fy,-0.0050028651021420956 +steady,sr,183,73.2,force,front_fx,0.0015556260477751493 +steady,sr,183,73.2,force,front_fy,7.81976496000425e-07 +steady,sr,183,73.2,force,upper_fx,0.0004586382128763944 +steady,sr,183,73.2,force,upper_fy,0.005102229304611683 +steady,sr,183,73.2,force,lower_fx,0.00014793859736528248 +steady,sr,183,73.2,force,lower_fy,-0.004866873845458031 +steady,sr,184,73.6,force,front_fx,0.0015583266504108906 +steady,sr,184,73.6,force,front_fy,3.9799204387236387e-05 +steady,sr,184,73.6,force,upper_fx,0.0004527089768089354 +steady,sr,184,73.6,force,upper_fy,0.005215438548475504 +steady,sr,184,73.6,force,lower_fx,0.00015652044385205954 +steady,sr,184,73.6,force,lower_fy,-0.0047470987774431705 +steady,sr,185,74.0,force,front_fx,0.001560121774673462 +steady,sr,185,74.0,force,front_fy,7.379425369435921e-05 +steady,sr,185,74.0,force,upper_fx,0.0004294571408536285 +steady,sr,185,74.0,force,upper_fy,0.005300724413245916 +steady,sr,185,74.0,force,lower_fx,0.00019085225358139724 +steady,sr,185,74.0,force,lower_fy,-0.004659619182348251 +steady,sr,186,74.4,force,front_fx,0.0015597306191921234 +steady,sr,186,74.4,force,front_fy,9.833122021518648e-05 +steady,sr,186,74.4,force,upper_fx,0.00038815144216641784 +steady,sr,186,74.4,force,upper_fy,0.005345955025404692 +steady,sr,186,74.4,force,lower_fx,0.00023826352844480425 +steady,sr,186,74.4,force,lower_fy,-0.00461498461663723 +steady,sr,187,74.8,force,front_fx,0.0015573479468002915 +steady,sr,187,74.8,force,front_fy,0.00011034718772862107 +steady,sr,187,74.8,force,upper_fx,0.00033319025533273816 +steady,sr,187,74.8,force,upper_fy,0.005343717988580465 +steady,sr,187,74.8,force,lower_fx,0.0002921950363088399 +steady,sr,187,74.8,force,lower_fy,-0.004618021659553051 +steady,sr,188,75.2,force,front_fx,0.0015554720303043723 +steady,sr,188,75.2,force,front_fy,0.00010749607463367283 +steady,sr,188,75.2,force,upper_fx,0.0002743162331171334 +steady,sr,188,75.2,force,upper_fy,0.005293864756822586 +steady,sr,188,75.2,force,lower_fx,0.00034705124562606215 +steady,sr,188,75.2,force,lower_fy,-0.004668525420129299 +steady,sr,189,75.6,force,front_fx,0.001555970753543079 +steady,sr,189,75.6,force,front_fy,9.076151036424562e-05 +steady,sr,189,75.6,force,upper_fx,0.00022152985911816359 +steady,sr,189,75.6,force,upper_fy,0.005205092951655388 +steady,sr,189,75.6,force,lower_fx,0.00039807838038541377 +steady,sr,189,75.6,force,lower_fy,-0.004761469550430775 +steady,sr,190,76.0,force,front_fx,0.0015573069686070085 +steady,sr,190,76.0,force,front_fy,6.198804476298392e-05 +steady,sr,190,76.0,force,upper_fx,0.00018060914590023458 +steady,sr,190,76.0,force,upper_fy,0.005089226178824902 +steady,sr,190,76.0,force,lower_fx,0.00043783080764114857 +steady,sr,190,76.0,force,lower_fy,-0.004884584341198206 +steady,sr,191,76.4,force,front_fx,0.0015579587779939175 +steady,sr,191,76.4,force,front_fy,2.5760396965779364e-05 +steady,sr,191,76.4,force,upper_fx,0.00015514210099354386 +steady,sr,191,76.4,force,upper_fy,0.00495953718200326 +steady,sr,191,76.4,force,lower_fx,0.000460117676993832 +steady,sr,191,76.4,force,lower_fy,-0.005019578151404858 +steady,sr,192,76.8,force,front_fx,0.0015575842699036002 +steady,sr,192,76.8,force,front_fy,-1.3926101019023918e-05 +steady,sr,192,76.8,force,upper_fx,0.00014803599333390594 +steady,sr,192,76.8,force,upper_fy,0.004829447716474533 +steady,sr,192,76.8,force,lower_fx,0.0004615079378709197 +steady,sr,192,76.8,force,lower_fy,-0.005146997980773449 +steady,sr,193,77.2,force,front_fx,0.0015566356014460325 +steady,sr,193,77.2,force,front_fy,-5.180624430067837e-05 +steady,sr,193,77.2,force,upper_fx,0.00016262276039924473 +steady,sr,193,77.2,force,upper_fy,0.004716049879789352 +steady,sr,193,77.2,force,lower_fx,0.0004434930451679975 +steady,sr,193,77.2,force,lower_fy,-0.005250140558928251 +steady,sr,194,77.6,force,front_fx,0.001557189621962607 +steady,sr,194,77.6,force,front_fy,-8.317491301568225e-05 +steady,sr,194,77.6,force,upper_fx,0.00019985988910775632 +steady,sr,194,77.6,force,upper_fy,0.004636833444237709 +steady,sr,194,77.6,force,lower_fx,0.0004122729296796024 +steady,sr,194,77.6,force,lower_fy,-0.0053179264068603516 +steady,sr,195,78.0,force,front_fx,0.0015588453970849514 +steady,sr,195,78.0,force,front_fy,-0.00010403315536677837 +steady,sr,195,78.0,force,upper_fx,0.0002542081056162715 +steady,sr,195,78.0,force,upper_fy,0.004605946596711874 +steady,sr,195,78.0,force,lower_fx,0.00036963497404940426 +steady,sr,195,78.0,force,lower_fy,-0.00534638948738575 +steady,sr,196,78.4,force,front_fx,0.0015594428405165672 +steady,sr,196,78.4,force,front_fy,-0.00011099496623501182 +steady,sr,196,78.4,force,upper_fx,0.00031469372333958745 +steady,sr,196,78.4,force,upper_fy,0.00462835980579257 +steady,sr,196,78.4,force,lower_fx,0.00031793079688213766 +steady,sr,196,78.4,force,lower_fy,-0.005331624764949083 +steady,sr,197,78.8,force,front_fx,0.001558162271976471 +steady,sr,197,78.8,force,front_fy,-0.00010359912266721949 +steady,sr,197,78.8,force,upper_fx,0.00037005546619184315 +steady,sr,197,78.8,force,upper_fy,0.004698817618191242 +steady,sr,197,78.8,force,lower_fx,0.00026080466341227293 +steady,sr,197,78.8,force,lower_fy,-0.005272692069411278 +steady,sr,198,79.2,force,front_fx,0.00155582744628191 +steady,sr,198,79.2,force,front_fy,-8.227835496654734e-05 +steady,sr,198,79.2,force,upper_fx,0.0004130724410060793 +steady,sr,198,79.2,force,upper_fy,0.004803895950317383 +steady,sr,198,79.2,force,lower_fx,0.00020676566055044532 +steady,sr,198,79.2,force,lower_fy,-0.005173748824745417 +steady,sr,199,79.6,force,front_fx,0.0015544472262263298 +steady,sr,199,79.6,force,front_fy,-5.061442425358109e-05 +steady,sr,199,79.6,force,upper_fx,0.00044250398059375584 +steady,sr,199,79.6,force,upper_fy,0.004928771406412125 +steady,sr,199,79.6,force,lower_fx,0.00016537282499484718 +steady,sr,199,79.6,force,lower_fy,-0.005047464277595282 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-2.0 +steady,sr,0,0.0,alpha,lower,2.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-2.0 +steady,sr,1,0.4,alpha,lower,2.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-2.0 +steady,sr,2,0.8,alpha,lower,2.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-2.0 +steady,sr,3,1.2,alpha,lower,2.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-2.0 +steady,sr,4,1.6,alpha,lower,2.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-2.0 +steady,sr,5,2.0,alpha,lower,2.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-2.0 +steady,sr,6,2.4,alpha,lower,2.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-2.0 +steady,sr,7,2.8,alpha,lower,2.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-2.0 +steady,sr,8,3.2,alpha,lower,2.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-2.0 +steady,sr,9,3.6,alpha,lower,2.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-2.0 +steady,sr,10,4.0,alpha,lower,2.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-2.0 +steady,sr,11,4.4,alpha,lower,2.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-2.0 +steady,sr,12,4.8,alpha,lower,2.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-2.0 +steady,sr,13,5.2,alpha,lower,2.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-2.0 +steady,sr,14,5.6,alpha,lower,2.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-2.0 +steady,sr,15,6.0,alpha,lower,2.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-2.0 +steady,sr,16,6.4,alpha,lower,2.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-2.0 +steady,sr,17,6.8,alpha,lower,2.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-2.0 +steady,sr,18,7.2,alpha,lower,2.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-2.0 +steady,sr,19,7.6,alpha,lower,2.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-2.0 +steady,sr,20,8.0,alpha,lower,2.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-2.0 +steady,sr,21,8.4,alpha,lower,2.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-2.0 +steady,sr,22,8.8,alpha,lower,2.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-2.0 +steady,sr,23,9.2,alpha,lower,2.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-2.0 +steady,sr,24,9.6,alpha,lower,2.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-2.0 +steady,sr,25,10.0,alpha,lower,2.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-2.0 +steady,sr,26,10.4,alpha,lower,2.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-2.0 +steady,sr,27,10.8,alpha,lower,2.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-2.0 +steady,sr,28,11.2,alpha,lower,2.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-2.0 +steady,sr,29,11.6,alpha,lower,2.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-2.0 +steady,sr,30,12.0,alpha,lower,2.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-2.0 +steady,sr,31,12.4,alpha,lower,2.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-2.0 +steady,sr,32,12.8,alpha,lower,2.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-2.0 +steady,sr,33,13.2,alpha,lower,2.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-2.0 +steady,sr,34,13.6,alpha,lower,2.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-2.0 +steady,sr,35,14.0,alpha,lower,2.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-2.0 +steady,sr,36,14.4,alpha,lower,2.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-2.0 +steady,sr,37,14.8,alpha,lower,2.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-2.0 +steady,sr,38,15.2,alpha,lower,2.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-2.0 +steady,sr,39,15.6,alpha,lower,2.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-2.0 +steady,sr,40,16.0,alpha,lower,2.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-2.0 +steady,sr,41,16.4,alpha,lower,2.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-2.0 +steady,sr,42,16.8,alpha,lower,2.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-2.0 +steady,sr,43,17.2,alpha,lower,2.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-2.0 +steady,sr,44,17.6,alpha,lower,2.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-2.0 +steady,sr,45,18.0,alpha,lower,2.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-2.0 +steady,sr,46,18.4,alpha,lower,2.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-2.0 +steady,sr,47,18.8,alpha,lower,2.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-2.0 +steady,sr,48,19.2,alpha,lower,2.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-2.0 +steady,sr,49,19.6,alpha,lower,2.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-2.0 +steady,sr,50,20.0,alpha,lower,2.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-2.0 +steady,sr,51,20.4,alpha,lower,2.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-2.0 +steady,sr,52,20.8,alpha,lower,2.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-2.0 +steady,sr,53,21.2,alpha,lower,2.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-2.0 +steady,sr,54,21.6,alpha,lower,2.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-2.0 +steady,sr,55,22.0,alpha,lower,2.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-2.0 +steady,sr,56,22.4,alpha,lower,2.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-2.0 +steady,sr,57,22.8,alpha,lower,2.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-2.0 +steady,sr,58,23.2,alpha,lower,2.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-2.0 +steady,sr,59,23.6,alpha,lower,2.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-2.0 +steady,sr,60,24.0,alpha,lower,2.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-2.0 +steady,sr,61,24.4,alpha,lower,2.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-2.0 +steady,sr,62,24.8,alpha,lower,2.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-2.0 +steady,sr,63,25.2,alpha,lower,2.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-2.0 +steady,sr,64,25.6,alpha,lower,2.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-2.0 +steady,sr,65,26.0,alpha,lower,2.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-2.0 +steady,sr,66,26.4,alpha,lower,2.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-2.0 +steady,sr,67,26.8,alpha,lower,2.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-2.0 +steady,sr,68,27.2,alpha,lower,2.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-2.0 +steady,sr,69,27.6,alpha,lower,2.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-2.0 +steady,sr,70,28.0,alpha,lower,2.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-2.0 +steady,sr,71,28.4,alpha,lower,2.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-2.0 +steady,sr,72,28.8,alpha,lower,2.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-2.0 +steady,sr,73,29.2,alpha,lower,2.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-2.0 +steady,sr,74,29.6,alpha,lower,2.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-2.0 +steady,sr,75,30.0,alpha,lower,2.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-2.0 +steady,sr,76,30.4,alpha,lower,2.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-2.0 +steady,sr,77,30.8,alpha,lower,2.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-2.0 +steady,sr,78,31.2,alpha,lower,2.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-2.0 +steady,sr,79,31.6,alpha,lower,2.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-2.0 +steady,sr,80,32.0,alpha,lower,2.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-2.0 +steady,sr,81,32.4,alpha,lower,2.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-2.0 +steady,sr,82,32.8,alpha,lower,2.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-2.0 +steady,sr,83,33.2,alpha,lower,2.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-2.0 +steady,sr,84,33.6,alpha,lower,2.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-2.0 +steady,sr,85,34.0,alpha,lower,2.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-2.0 +steady,sr,86,34.4,alpha,lower,2.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-2.0 +steady,sr,87,34.8,alpha,lower,2.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-2.0 +steady,sr,88,35.2,alpha,lower,2.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-2.0 +steady,sr,89,35.6,alpha,lower,2.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-2.0 +steady,sr,90,36.0,alpha,lower,2.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-2.0 +steady,sr,91,36.4,alpha,lower,2.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-2.0 +steady,sr,92,36.8,alpha,lower,2.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-2.0 +steady,sr,93,37.2,alpha,lower,2.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-2.0 +steady,sr,94,37.6,alpha,lower,2.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-2.0 +steady,sr,95,38.0,alpha,lower,2.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-2.0 +steady,sr,96,38.4,alpha,lower,2.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-2.0 +steady,sr,97,38.8,alpha,lower,2.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-2.0 +steady,sr,98,39.2,alpha,lower,2.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-2.0 +steady,sr,99,39.6,alpha,lower,2.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-2.0 +steady,sr,100,40.0,alpha,lower,2.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-2.0 +steady,sr,101,40.4,alpha,lower,2.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-2.0 +steady,sr,102,40.8,alpha,lower,2.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-2.0 +steady,sr,103,41.2,alpha,lower,2.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-2.0 +steady,sr,104,41.6,alpha,lower,2.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-2.0 +steady,sr,105,42.0,alpha,lower,2.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-2.0 +steady,sr,106,42.4,alpha,lower,2.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-2.0 +steady,sr,107,42.8,alpha,lower,2.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-2.0 +steady,sr,108,43.2,alpha,lower,2.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-2.0 +steady,sr,109,43.6,alpha,lower,2.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-2.0 +steady,sr,110,44.0,alpha,lower,2.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-2.0 +steady,sr,111,44.4,alpha,lower,2.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-2.0 +steady,sr,112,44.8,alpha,lower,2.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-2.0 +steady,sr,113,45.2,alpha,lower,2.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-2.0 +steady,sr,114,45.6,alpha,lower,2.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-2.0 +steady,sr,115,46.0,alpha,lower,2.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-2.0 +steady,sr,116,46.4,alpha,lower,2.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-2.0 +steady,sr,117,46.8,alpha,lower,2.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-2.0 +steady,sr,118,47.2,alpha,lower,2.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-2.0 +steady,sr,119,47.6,alpha,lower,2.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-2.0 +steady,sr,120,48.0,alpha,lower,2.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-2.0 +steady,sr,121,48.4,alpha,lower,2.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-2.0 +steady,sr,122,48.8,alpha,lower,2.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-2.0 +steady,sr,123,49.2,alpha,lower,2.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-2.0 +steady,sr,124,49.6,alpha,lower,2.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-2.0 +steady,sr,125,50.0,alpha,lower,2.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-2.0 +steady,sr,126,50.4,alpha,lower,2.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-2.0 +steady,sr,127,50.8,alpha,lower,2.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-2.0 +steady,sr,128,51.2,alpha,lower,2.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-2.0 +steady,sr,129,51.6,alpha,lower,2.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-2.0 +steady,sr,130,52.0,alpha,lower,2.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-2.0 +steady,sr,131,52.4,alpha,lower,2.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-2.0 +steady,sr,132,52.8,alpha,lower,2.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-2.0 +steady,sr,133,53.2,alpha,lower,2.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-2.0 +steady,sr,134,53.6,alpha,lower,2.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-2.0 +steady,sr,135,54.0,alpha,lower,2.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-2.0 +steady,sr,136,54.4,alpha,lower,2.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-2.0 +steady,sr,137,54.8,alpha,lower,2.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-2.0 +steady,sr,138,55.2,alpha,lower,2.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-2.0 +steady,sr,139,55.6,alpha,lower,2.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-2.0 +steady,sr,140,56.0,alpha,lower,2.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-2.0 +steady,sr,141,56.4,alpha,lower,2.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-2.0 +steady,sr,142,56.8,alpha,lower,2.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-2.0 +steady,sr,143,57.2,alpha,lower,2.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-2.0 +steady,sr,144,57.6,alpha,lower,2.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-2.0 +steady,sr,145,58.0,alpha,lower,2.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-2.0 +steady,sr,146,58.4,alpha,lower,2.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-2.0 +steady,sr,147,58.8,alpha,lower,2.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-2.0 +steady,sr,148,59.2,alpha,lower,2.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-2.0 +steady,sr,149,59.6,alpha,lower,2.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-2.0 +steady,sr,150,60.0,alpha,lower,2.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-2.0 +steady,sr,151,60.4,alpha,lower,2.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-2.0 +steady,sr,152,60.8,alpha,lower,2.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-2.0 +steady,sr,153,61.2,alpha,lower,2.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-2.0 +steady,sr,154,61.6,alpha,lower,2.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-2.0 +steady,sr,155,62.0,alpha,lower,2.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-2.0 +steady,sr,156,62.4,alpha,lower,2.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-2.0 +steady,sr,157,62.8,alpha,lower,2.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-2.0 +steady,sr,158,63.2,alpha,lower,2.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-2.0 +steady,sr,159,63.6,alpha,lower,2.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-2.0 +steady,sr,160,64.0,alpha,lower,2.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-2.0 +steady,sr,161,64.4,alpha,lower,2.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-2.0 +steady,sr,162,64.8,alpha,lower,2.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-2.0 +steady,sr,163,65.2,alpha,lower,2.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-2.0 +steady,sr,164,65.6,alpha,lower,2.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-2.0 +steady,sr,165,66.0,alpha,lower,2.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-2.0 +steady,sr,166,66.4,alpha,lower,2.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-2.0 +steady,sr,167,66.8,alpha,lower,2.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-2.0 +steady,sr,168,67.2,alpha,lower,2.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-2.0 +steady,sr,169,67.6,alpha,lower,2.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-2.0 +steady,sr,170,68.0,alpha,lower,2.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-2.0 +steady,sr,171,68.4,alpha,lower,2.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-2.0 +steady,sr,172,68.8,alpha,lower,2.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-2.0 +steady,sr,173,69.2,alpha,lower,2.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-2.0 +steady,sr,174,69.6,alpha,lower,2.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-2.0 +steady,sr,175,70.0,alpha,lower,2.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-2.0 +steady,sr,176,70.4,alpha,lower,2.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-2.0 +steady,sr,177,70.8,alpha,lower,2.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-2.0 +steady,sr,178,71.2,alpha,lower,2.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-2.0 +steady,sr,179,71.6,alpha,lower,2.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-2.0 +steady,sr,180,72.0,alpha,lower,2.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-2.0 +steady,sr,181,72.4,alpha,lower,2.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-2.0 +steady,sr,182,72.8,alpha,lower,2.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-2.0 +steady,sr,183,73.2,alpha,lower,2.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-2.0 +steady,sr,184,73.6,alpha,lower,2.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-2.0 +steady,sr,185,74.0,alpha,lower,2.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-2.0 +steady,sr,186,74.4,alpha,lower,2.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-2.0 +steady,sr,187,74.8,alpha,lower,2.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-2.0 +steady,sr,188,75.2,alpha,lower,2.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-2.0 +steady,sr,189,75.6,alpha,lower,2.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-2.0 +steady,sr,190,76.0,alpha,lower,2.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-2.0 +steady,sr,191,76.4,alpha,lower,2.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-2.0 +steady,sr,192,76.8,alpha,lower,2.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-2.0 +steady,sr,193,77.2,alpha,lower,2.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-2.0 +steady,sr,194,77.6,alpha,lower,2.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-2.0 +steady,sr,195,78.0,alpha,lower,2.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-2.0 +steady,sr,196,78.4,alpha,lower,2.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-2.0 +steady,sr,197,78.8,alpha,lower,2.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-2.0 +steady,sr,198,79.2,alpha,lower,2.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-2.0 +steady,sr,199,79.6,alpha,lower,2.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.02 +steady,sr,0,0.0,omega,lower,0.02 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.02 +steady,sr,1,0.4,omega,lower,0.02 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.02 +steady,sr,2,0.8,omega,lower,0.02 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.02 +steady,sr,3,1.2,omega,lower,0.02 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.02 +steady,sr,4,1.6,omega,lower,0.02 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.02 +steady,sr,5,2.0,omega,lower,0.02 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.02 +steady,sr,6,2.4,omega,lower,0.02 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.02 +steady,sr,7,2.8,omega,lower,0.02 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.02 +steady,sr,8,3.2,omega,lower,0.02 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.02 +steady,sr,9,3.6,omega,lower,0.02 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.02 +steady,sr,10,4.0,omega,lower,0.02 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.02 +steady,sr,11,4.4,omega,lower,0.02 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.02 +steady,sr,12,4.8,omega,lower,0.02 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.02 +steady,sr,13,5.2,omega,lower,0.02 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.02 +steady,sr,14,5.6,omega,lower,0.02 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.02 +steady,sr,15,6.0,omega,lower,0.02 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.02 +steady,sr,16,6.4,omega,lower,0.02 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.02 +steady,sr,17,6.8,omega,lower,0.02 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.02 +steady,sr,18,7.2,omega,lower,0.02 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.02 +steady,sr,19,7.6,omega,lower,0.02 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.02 +steady,sr,20,8.0,omega,lower,0.02 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.02 +steady,sr,21,8.4,omega,lower,0.02 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.02 +steady,sr,22,8.8,omega,lower,0.02 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.02 +steady,sr,23,9.2,omega,lower,0.02 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.02 +steady,sr,24,9.6,omega,lower,0.02 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.02 +steady,sr,25,10.0,omega,lower,0.02 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.02 +steady,sr,26,10.4,omega,lower,0.02 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.02 +steady,sr,27,10.8,omega,lower,0.02 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.02 +steady,sr,28,11.2,omega,lower,0.02 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.02 +steady,sr,29,11.6,omega,lower,0.02 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.02 +steady,sr,30,12.0,omega,lower,0.02 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.02 +steady,sr,31,12.4,omega,lower,0.02 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.02 +steady,sr,32,12.8,omega,lower,0.02 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.02 +steady,sr,33,13.2,omega,lower,0.02 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.02 +steady,sr,34,13.6,omega,lower,0.02 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.02 +steady,sr,35,14.0,omega,lower,0.02 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.02 +steady,sr,36,14.4,omega,lower,0.02 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.02 +steady,sr,37,14.8,omega,lower,0.02 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.02 +steady,sr,38,15.2,omega,lower,0.02 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.02 +steady,sr,39,15.6,omega,lower,0.02 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.02 +steady,sr,40,16.0,omega,lower,0.02 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.02 +steady,sr,41,16.4,omega,lower,0.02 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.02 +steady,sr,42,16.8,omega,lower,0.02 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.02 +steady,sr,43,17.2,omega,lower,0.02 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.02 +steady,sr,44,17.6,omega,lower,0.02 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.02 +steady,sr,45,18.0,omega,lower,0.02 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.02 +steady,sr,46,18.4,omega,lower,0.02 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.02 +steady,sr,47,18.8,omega,lower,0.02 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.02 +steady,sr,48,19.2,omega,lower,0.02 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.02 +steady,sr,49,19.6,omega,lower,0.02 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.02 +steady,sr,50,20.0,omega,lower,0.02 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.02 +steady,sr,51,20.4,omega,lower,0.02 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.02 +steady,sr,52,20.8,omega,lower,0.02 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.02 +steady,sr,53,21.2,omega,lower,0.02 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.02 +steady,sr,54,21.6,omega,lower,0.02 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.02 +steady,sr,55,22.0,omega,lower,0.02 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.02 +steady,sr,56,22.4,omega,lower,0.02 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.02 +steady,sr,57,22.8,omega,lower,0.02 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.02 +steady,sr,58,23.2,omega,lower,0.02 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.02 +steady,sr,59,23.6,omega,lower,0.02 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.02 +steady,sr,60,24.0,omega,lower,0.02 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.02 +steady,sr,61,24.4,omega,lower,0.02 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.02 +steady,sr,62,24.8,omega,lower,0.02 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.02 +steady,sr,63,25.2,omega,lower,0.02 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.02 +steady,sr,64,25.6,omega,lower,0.02 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.02 +steady,sr,65,26.0,omega,lower,0.02 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.02 +steady,sr,66,26.4,omega,lower,0.02 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.02 +steady,sr,67,26.8,omega,lower,0.02 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.02 +steady,sr,68,27.2,omega,lower,0.02 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.02 +steady,sr,69,27.6,omega,lower,0.02 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.02 +steady,sr,70,28.0,omega,lower,0.02 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.02 +steady,sr,71,28.4,omega,lower,0.02 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.02 +steady,sr,72,28.8,omega,lower,0.02 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.02 +steady,sr,73,29.2,omega,lower,0.02 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.02 +steady,sr,74,29.6,omega,lower,0.02 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.02 +steady,sr,75,30.0,omega,lower,0.02 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.02 +steady,sr,76,30.4,omega,lower,0.02 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.02 +steady,sr,77,30.8,omega,lower,0.02 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.02 +steady,sr,78,31.2,omega,lower,0.02 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.02 +steady,sr,79,31.6,omega,lower,0.02 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.02 +steady,sr,80,32.0,omega,lower,0.02 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.02 +steady,sr,81,32.4,omega,lower,0.02 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.02 +steady,sr,82,32.8,omega,lower,0.02 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.02 +steady,sr,83,33.2,omega,lower,0.02 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.02 +steady,sr,84,33.6,omega,lower,0.02 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.02 +steady,sr,85,34.0,omega,lower,0.02 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.02 +steady,sr,86,34.4,omega,lower,0.02 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.02 +steady,sr,87,34.8,omega,lower,0.02 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.02 +steady,sr,88,35.2,omega,lower,0.02 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.02 +steady,sr,89,35.6,omega,lower,0.02 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.02 +steady,sr,90,36.0,omega,lower,0.02 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.02 +steady,sr,91,36.4,omega,lower,0.02 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.02 +steady,sr,92,36.8,omega,lower,0.02 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.02 +steady,sr,93,37.2,omega,lower,0.02 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.02 +steady,sr,94,37.6,omega,lower,0.02 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.02 +steady,sr,95,38.0,omega,lower,0.02 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.02 +steady,sr,96,38.4,omega,lower,0.02 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.02 +steady,sr,97,38.8,omega,lower,0.02 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.02 +steady,sr,98,39.2,omega,lower,0.02 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.02 +steady,sr,99,39.6,omega,lower,0.02 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.02 +steady,sr,100,40.0,omega,lower,0.02 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.02 +steady,sr,101,40.4,omega,lower,0.02 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.02 +steady,sr,102,40.8,omega,lower,0.02 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.02 +steady,sr,103,41.2,omega,lower,0.02 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.02 +steady,sr,104,41.6,omega,lower,0.02 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.02 +steady,sr,105,42.0,omega,lower,0.02 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.02 +steady,sr,106,42.4,omega,lower,0.02 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.02 +steady,sr,107,42.8,omega,lower,0.02 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.02 +steady,sr,108,43.2,omega,lower,0.02 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.02 +steady,sr,109,43.6,omega,lower,0.02 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.02 +steady,sr,110,44.0,omega,lower,0.02 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.02 +steady,sr,111,44.4,omega,lower,0.02 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.02 +steady,sr,112,44.8,omega,lower,0.02 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.02 +steady,sr,113,45.2,omega,lower,0.02 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.02 +steady,sr,114,45.6,omega,lower,0.02 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.02 +steady,sr,115,46.0,omega,lower,0.02 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.02 +steady,sr,116,46.4,omega,lower,0.02 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.02 +steady,sr,117,46.8,omega,lower,0.02 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.02 +steady,sr,118,47.2,omega,lower,0.02 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.02 +steady,sr,119,47.6,omega,lower,0.02 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.02 +steady,sr,120,48.0,omega,lower,0.02 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.02 +steady,sr,121,48.4,omega,lower,0.02 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.02 +steady,sr,122,48.8,omega,lower,0.02 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.02 +steady,sr,123,49.2,omega,lower,0.02 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.02 +steady,sr,124,49.6,omega,lower,0.02 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.02 +steady,sr,125,50.0,omega,lower,0.02 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.02 +steady,sr,126,50.4,omega,lower,0.02 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.02 +steady,sr,127,50.8,omega,lower,0.02 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.02 +steady,sr,128,51.2,omega,lower,0.02 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.02 +steady,sr,129,51.6,omega,lower,0.02 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.02 +steady,sr,130,52.0,omega,lower,0.02 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.02 +steady,sr,131,52.4,omega,lower,0.02 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.02 +steady,sr,132,52.8,omega,lower,0.02 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.02 +steady,sr,133,53.2,omega,lower,0.02 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.02 +steady,sr,134,53.6,omega,lower,0.02 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.02 +steady,sr,135,54.0,omega,lower,0.02 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.02 +steady,sr,136,54.4,omega,lower,0.02 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.02 +steady,sr,137,54.8,omega,lower,0.02 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.02 +steady,sr,138,55.2,omega,lower,0.02 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.02 +steady,sr,139,55.6,omega,lower,0.02 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.02 +steady,sr,140,56.0,omega,lower,0.02 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.02 +steady,sr,141,56.4,omega,lower,0.02 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.02 +steady,sr,142,56.8,omega,lower,0.02 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.02 +steady,sr,143,57.2,omega,lower,0.02 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.02 +steady,sr,144,57.6,omega,lower,0.02 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.02 +steady,sr,145,58.0,omega,lower,0.02 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.02 +steady,sr,146,58.4,omega,lower,0.02 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.02 +steady,sr,147,58.8,omega,lower,0.02 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.02 +steady,sr,148,59.2,omega,lower,0.02 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.02 +steady,sr,149,59.6,omega,lower,0.02 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.02 +steady,sr,150,60.0,omega,lower,0.02 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.02 +steady,sr,151,60.4,omega,lower,0.02 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.02 +steady,sr,152,60.8,omega,lower,0.02 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.02 +steady,sr,153,61.2,omega,lower,0.02 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.02 +steady,sr,154,61.6,omega,lower,0.02 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.02 +steady,sr,155,62.0,omega,lower,0.02 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.02 +steady,sr,156,62.4,omega,lower,0.02 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.02 +steady,sr,157,62.8,omega,lower,0.02 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.02 +steady,sr,158,63.2,omega,lower,0.02 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.02 +steady,sr,159,63.6,omega,lower,0.02 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.02 +steady,sr,160,64.0,omega,lower,0.02 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.02 +steady,sr,161,64.4,omega,lower,0.02 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.02 +steady,sr,162,64.8,omega,lower,0.02 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.02 +steady,sr,163,65.2,omega,lower,0.02 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.02 +steady,sr,164,65.6,omega,lower,0.02 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.02 +steady,sr,165,66.0,omega,lower,0.02 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.02 +steady,sr,166,66.4,omega,lower,0.02 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.02 +steady,sr,167,66.8,omega,lower,0.02 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.02 +steady,sr,168,67.2,omega,lower,0.02 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.02 +steady,sr,169,67.6,omega,lower,0.02 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.02 +steady,sr,170,68.0,omega,lower,0.02 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.02 +steady,sr,171,68.4,omega,lower,0.02 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.02 +steady,sr,172,68.8,omega,lower,0.02 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.02 +steady,sr,173,69.2,omega,lower,0.02 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.02 +steady,sr,174,69.6,omega,lower,0.02 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.02 +steady,sr,175,70.0,omega,lower,0.02 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.02 +steady,sr,176,70.4,omega,lower,0.02 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.02 +steady,sr,177,70.8,omega,lower,0.02 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.02 +steady,sr,178,71.2,omega,lower,0.02 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.02 +steady,sr,179,71.6,omega,lower,0.02 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.02 +steady,sr,180,72.0,omega,lower,0.02 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.02 +steady,sr,181,72.4,omega,lower,0.02 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.02 +steady,sr,182,72.8,omega,lower,0.02 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.02 +steady,sr,183,73.2,omega,lower,0.02 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.02 +steady,sr,184,73.6,omega,lower,0.02 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.02 +steady,sr,185,74.0,omega,lower,0.02 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.02 +steady,sr,186,74.4,omega,lower,0.02 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.02 +steady,sr,187,74.8,omega,lower,0.02 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.02 +steady,sr,188,75.2,omega,lower,0.02 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.02 +steady,sr,189,75.6,omega,lower,0.02 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.02 +steady,sr,190,76.0,omega,lower,0.02 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.02 +steady,sr,191,76.4,omega,lower,0.02 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.02 +steady,sr,192,76.8,omega,lower,0.02 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.02 +steady,sr,193,77.2,omega,lower,0.02 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.02 +steady,sr,194,77.6,omega,lower,0.02 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.02 +steady,sr,195,78.0,omega,lower,0.02 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.02 +steady,sr,196,78.4,omega,lower,0.02 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.02 +steady,sr,197,78.8,omega,lower,0.02 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.02 +steady,sr,198,79.2,omega,lower,0.02 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.02 +steady,sr,199,79.6,omega,lower,0.02 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_manifest.json new file mode 100644 index 0000000..579e0bb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a2-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_wide.csv new file mode 100644 index 0000000..8d434b9 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.240221619606018,0.007947985082864761,0.8033638000488281,0.2513802647590637,1.0358582735061646,0.08160460740327835,0.001547904801554978,2.6546284061623737e-05,0.0001496699551353231,0.004933747462928295,0.0003971574769821018,-0.004948754329234362,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,1,0.4,1.1999691724777222,0.06378006935119629,0.8795057535171509,0.24600227177143097,1.0584205389022827,0.10644500702619553,0.0015525487251579762,-5.810110451420769e-06,0.00014979970001149923,0.004829373210668564,0.0004100519872736186,-0.005059248302131891,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,2,0.8,1.1398619413375854,0.09924766421318054,0.9287842512130737,0.24431148171424866,1.085428237915039,0.12451053410768509,0.0015526380157098174,-3.808919427683577e-05,0.00016304041491821408,0.004740082658827305,0.0004016235179733485,-0.005156900733709335,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,3,1.2,1.0823254585266113,0.10515472292900085,0.9483830332756042,0.23709072172641754,1.1155762672424316,0.13566768169403076,0.0015499290311709046,-6.50496149319224e-05,0.00018656847532838583,0.00467213150113821,0.0003730022581294179,-0.00522294407710433,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,4,1.6,1.0412700176239014,0.08676686882972717,0.9359895586967468,0.2041449397802353,1.147894263267517,0.13912279903888702,0.0015472962986677885,-8.470203465549275e-05,0.0002219408779637888,0.004634631797671318,0.0003310404426883906,-0.00525068212300539,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,5,2.0,1.0177524089813232,0.05386026203632355,0.8861666917800903,0.12263430655002594,1.1819231510162354,0.13323885202407837,0.0015475547406822443,-9.267719724448398e-05,0.00027037004474550486,0.004639262333512306,0.00028776482213288546,-0.005238939076662064,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,6,2.4,1.008195161819458,0.014142492786049843,0.8078836798667908,-0.015143074095249176,1.2157058715820312,0.11523539572954178,0.0015509984223172069,-8.949187758844346e-05,0.00032415808527730405,0.004689076915383339,0.0002463539130985737,-0.005196045618504286,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,7,2.8,1.0102243423461914,-0.026136064901947975,0.746929943561554,-0.16483120620250702,1.2432985305786133,0.08171886205673218,0.0015534645644947886,-7.350502710323781e-05,0.0003708733129315078,0.004778324160724878,0.00020750334078911692,-0.005124533083289862,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,8,3.2,1.0221620798110962,-0.062288571149110794,0.7619942426681519,-0.24581852555274963,1.253437876701355,0.031244859099388123,0.0015508076176047325,-4.8433535994263366e-05,0.00039848583401180804,0.004887464456260204,0.00017123256111517549,-0.005027160048484802,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,9,3.6,1.0413117408752441,-0.09208312630653381,0.8370262384414673,-0.253508597612381,1.2327659130096436,-0.02955922856926918,0.001547786989249289,-1.6741276340326294e-05,0.00040869961958378553,0.004999062977731228,0.0001454979064874351,-0.004912885371595621,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,10,4.0,1.0654430389404297,-0.11496918648481369,0.9053716063499451,-0.24865008890628815,1.180222749710083,-0.08233185857534409,0.0015467884950339794,1.6997131751850247e-05,0.00040562672074884176,0.005099939182400703,0.0001408501120749861,-0.00479804677888751,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,11,4.4,1.0936959981918335,-0.13099133968353271,0.9441925883293152,-0.24796701967716217,1.115429401397705,-0.10839381814002991,0.0015502828173339367,4.883998553850688e-05,0.0003949766105506569,0.005184084177017212,0.00016225125000346452,-0.004703574348241091,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,12,4.8,1.1253156661987305,-0.13986432552337646,0.954561173915863,-0.23597465455532074,1.0615676641464233,-0.10427022725343704,0.0015545880887657404,7.493242446798831e-05,0.0003730003663804382,0.0052443938329815865,0.00020349329861346632,-0.004646342247724533,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,13,5.2,1.1595910787582397,-0.14060862362384796,0.9315937757492065,-0.19055961072444916,1.0275201797485352,-0.0789589136838913,0.0015547844814136624,9.124031203100458e-05,0.000335292104864493,0.0052705626003444195,0.00025116075994446874,-0.004632271360605955,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,14,5.6,1.1951285600662231,-0.13107864558696747,0.8702627420425415,-0.08892607688903809,1.0101068019866943,-0.04205452278256416,0.0015514049446210265,9.629991109250113e-05,0.0002835580089595169,0.005253123585134745,0.0002969331690110266,-0.004656728357076645,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,15,6.0,1.2283167839050293,-0.10802480578422546,0.7889258861541748,0.06456253677606583,1.0048117637634277,-0.0006465422920882702,0.0015478790737688541,8.814573084237054e-05,0.0002290822594659403,0.005191901698708534,0.000338319456204772,-0.0047166310250759125,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,16,6.4,1.2517805099487305,-0.06793050467967987,0.7465883493423462,0.2036489099264145,1.0102595090866089,0.03937116637825966,0.0015473985113203526,6.883212336106226e-05,0.00018554538837634027,0.0050985380075871944,0.00037696826620958745,-0.004805850330740213,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,17,6.8,1.252595067024231,-0.011008501052856445,0.7880760431289673,0.25650084018707275,1.025192379951477,0.0740392878651619,0.0015510388184338808,3.998426109319553e-05,0.00015979773888830096,0.004988696426153183,0.00040888096555136144,-0.004918334074318409,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,18,7.2,1.2190707921981812,0.05160563066601753,0.8678009510040283,0.25409772992134094,1.0471277236938477,0.10186150670051575,0.0015547685325145721,6.674096766801085e-06,0.00015131353575270623,0.004877472296357155,0.0004264176241122186,-0.005038446746766567,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,19,7.6,1.1574809551239014,0.09818975627422333,0.9272119402885437,0.2518150806427002,1.0739072561264038,0.12269814312458038,0.0015535871498286724,-2.8136546461610124e-05,0.00015491663361899555,0.004773561842739582,0.00042083029984496534,-0.005147331394255161,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,20,8.0,1.0922354459762573,0.1134178414940834,0.9568525552749634,0.25050458312034607,1.1038799285888672,0.1365531086921692,0.0015510056400671601,-5.919080649618991e-05,0.0001737325801514089,0.004687703680247068,0.0003956416330765933,-0.005226640030741692,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,21,8.4,1.043670892715454,0.1000242829322815,0.9570737481117249,0.23138286173343658,1.136344313621521,0.14301344752311707,0.001549325417727232,-8.305600931635126e-05,0.00020882919488940388,0.0046331449411809444,0.00035784259671345353,-0.005268671549856663,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,22,8.8,1.0157654285430908,0.068977490067482,0.9215021729469299,0.17014920711517334,1.1713058948516846,0.14069052040576935,0.0015512274112552404,-9.636176400817931e-05,0.00026074633933603764,0.004623060580343008,0.0003164753725286573,-0.005273344926536083,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,23,9.2,1.0034594535827637,0.02910667471587658,0.8493354320526123,0.04706861451268196,1.207306981086731,0.1270519196987152,0.0015545074129477143,-9.705674165161327e-05,0.0003181558568030596,0.004662899766117334,0.0002732652355916798,-0.005243021063506603,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,24,9.6,1.0030194520950317,-0.013133428059518337,0.7723209261894226,-0.11562681198120117,1.239756464958191,0.0983295738697052,0.001554798218421638,-8.508902101311833e-05,0.0003678143839351833,0.0047446652315557,0.00022749022173229605,-0.005178979132324457,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,25,10.0,1.0128482580184937,-0.05225820094347,0.756317675113678,-0.2335624098777771,1.2583750486373901,0.05129672586917877,0.0015517995925620198,-6.136641604825854e-05,0.0004001493798568845,0.004851515870541334,0.00018286560953129083,-0.005081875715404749,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,26,10.4,1.0306124687194824,-0.085120290517807,0.8189918994903564,-0.2605695128440857,1.2476919889450073,-0.011085608042776585,0.0015489006182178855,-3.0512916055158712e-05,0.00041669351048767567,0.004965952131897211,0.00014970758638810366,-0.0049628932029008865,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,27,10.8,1.0541834831237793,-0.11084167659282684,0.8950629234313965,-0.25483986735343933,1.2003436088562012,-0.07247338443994522,0.0015489730285480618,5.050907475379063e-06,0.00042187864892184734,0.005077131558209658,0.00013971222506370395,-0.0048394412733614445,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,28,11.2,1.0822457075119019,-0.1295013278722763,0.9438332915306091,-0.25497889518737793,1.1319504976272583,-0.10990150272846222,0.001553103793412447,3.9461436244891956e-05,0.0004172995686531067,0.005175859201699495,0.00015620034537278116,-0.004733857698738575,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,29,11.6,1.1137899160385132,-0.1411110758781433,0.9647085666656494,-0.2509985566139221,1.0699477195739746,-0.11402042210102081,0.0015571190742775798,6.95695707690902e-05,0.0003984237846452743,0.005252360831946135,0.0001923827949212864,-0.004661221988499165,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,30,12.0,1.1482453346252441,-0.14495842158794403,0.9552238583564758,-0.22188951075077057,1.0292025804519653,-0.09268396347761154,0.0015558123122900724,9.064863115781918e-05,0.0003598927578423172,0.005292494315654039,0.00023648333444725722,-0.0046288566663861275,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,31,12.4,1.184509038925171,-0.13929405808448792,0.9070296287536621,-0.14164288341999054,1.007786512374878,-0.05718355253338814,0.0015525061171501875,0.00010028528777183965,0.0003076182911172509,0.005287053529173136,0.00028316694078966975,-0.004636599216610193,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,32,12.8,1.220196008682251,-0.12097559869289398,0.8263378739356995,0.0022437169682234526,0.9996958374977112,-0.015219011344015598,0.0015495008556172252,9.684454562375322e-05,0.0002502086863387376,0.005235180724412203,0.00032989392639137805,-0.004684013314545155,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,33,13.2,1.2496845722198486,-0.08594571053981781,0.7606199383735657,0.16432766616344452,1.0027767419815063,0.027013979852199554,0.001550445449538529,8.011481986613944e-05,0.00020509395108092576,0.0051504033617675304,0.00037589308340102434,-0.0047691501677036285,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,34,13.6,1.260449767112732,-0.03186316043138504,0.7737040519714355,0.25309258699417114,1.0158807039260864,0.06466743350028992,0.001553884008899331,5.355943358154036e-05,0.0001728148927213624,0.005043866578489542,0.00041504218825139105,-0.004882209002971649,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,35,14.0,1.237013339996338,0.0342232808470726,0.8498707413673401,0.2609485685825348,1.036718726158142,0.09543275833129883,0.0015556940343230963,1.9657360098790377e-05,0.00015465787146240473,0.004927983041852713,0.00043586004176177084,-0.005009546410292387,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,36,14.4,1.1782664060592651,0.09107138961553574,0.9187793135643005,0.2564398944377899,1.062829852104187,0.11896820366382599,0.0015540819149464369,-1.6262258213828318e-05,0.00014944880967959762,0.004812980070710182,0.00043458276195451617,-0.005126289092004299,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,37,14.8,1.1071419715881348,0.11740756034851074,0.9577831029891968,0.2577831745147705,1.0923011302947998,0.13542667031288147,0.0015518676955252886,-5.088679608888924e-05,0.00016218975360970944,0.00471118651330471,0.00041411674465052783,-0.005218076519668102,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,38,15.2,1.0503144264221191,0.11097516119480133,0.9691451191902161,0.24891380965709686,1.124598503112793,0.1446545273065567,0.0015512974932789803,-7.858104800106958e-05,0.00019594593322835863,0.004640388302505016,0.00038172860513441265,-0.005274765659123659,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,39,15.6,1.016634464263916,0.08310675621032715,0.9478209614753723,0.20660947263240814,1.159794569015503,0.1456659585237503,0.0015541784232482314,-9.67960586422123e-05,0.0002487048914190382,0.004615406971424818,0.0003434871614445001,-0.005296410992741585,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,40,16.0,1.0010031461715698,0.044169921427965164,0.887004017829895,0.10467254370450974,1.1969009637832642,0.13622251152992249,0.0015571456169709563,-0.00010222629498457536,0.00030770155717618763,0.004641652572900057,0.00029909415752626956,-0.005280743818730116,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,41,16.4,0.9978845715522766,0.000979528995230794,0.8037472367286682,-0.056214336305856705,1.232662558555603,0.11269960552453995,0.0015556159196421504,-9.426641918253154e-05,0.0003588931285776198,0.004712587688118219,0.00024774292251095176,-0.005226036533713341,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,42,16.8,1.0051109790802002,-0.040611788630485535,0.7583485245704651,-0.2059934288263321,1.2584115266799927,0.07081334292888641,0.001552314730361104,-7.37876835046336e-05,0.0003967128577642143,0.004813240375369787,0.00019680826517287642,-0.005133096128702164,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,43,17.2,1.021004557609558,-0.07640554010868073,0.7989364862442017,-0.2629692554473877,1.2587424516677856,0.010185898281633854,0.0015498340362682939,-4.363814878161065e-05,0.00041953695472329855,0.004927986767143011,0.00015769856690894812,-0.00501310545951128,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,44,17.6,1.0436530113220215,-0.10494150966405869,0.8785211443901062,-0.26019877195358276,1.2207157611846924,-0.05695045366883278,0.001551243243739009,-8.375532161153387e-06,0.00043316889787092805,0.0050462232902646065,0.0001418836909579113,-0.004885590169578791,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,45,18.0,1.071182131767273,-0.12620651721954346,0.9372557997703552,-0.2586687207221985,1.1526108980178833,-0.10590312629938126,0.0015554187120869756,2.8699196263914928e-05,0.00043444932089187205,0.005157966632395983,0.00015183896175585687,-0.0047703636810183525,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,46,18.4,1.1023449897766113,-0.14040058851242065,0.9676036834716797,-0.2593550682067871,1.0832812786102295,-0.12032998353242874,0.0015580966137349606,6.156229937914759e-05,0.00041871017310768366,0.005248229019343853,0.000181045921635814,-0.004683899227529764,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,47,18.8,1.13650381565094,-0.14714793860912323,0.9700807929039001,-0.24312721192836761,1.034494161605835,-0.10472976416349411,0.0015565147623419762,8.740411431062967e-05,0.00038170014158822596,0.00530236354097724,0.00022053132124710828,-0.004632703959941864,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,48,19.2,1.1727920770645142,-0.14505088329315186,0.9361647963523865,-0.18419231474399567,1.0078871250152588,-0.07170109450817108,0.0015533695695921779,0.00010146977729164064,0.0003302367404103279,0.0053099761717021465,0.00026693844120018184,-0.004622734617441893,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,49,19.6,1.2098793983459473,-0.13137617707252502,0.8632656335830688,-0.059208888560533524,0.9967221021652222,-0.030244290828704834,0.001551262685097754,0.00010278580884914845,0.0002747083199210465,0.005272208247333765,0.00031783521990291774,-0.0046561602503061295,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,50,20.0,1.2437041997909546,-0.10195624083280563,0.7831981778144836,0.11144112795591354,0.9971479177474976,0.013405169360339642,0.001552992733195424,9.018609125632793e-05,0.00022669794270768762,0.0051977611146867275,0.00037012420943938196,-0.004733840003609657,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,51,20.4,1.2634015083312988,-0.05287652835249901,0.7647519707679749,0.23733901977539062,1.0079210996627808,0.05368279293179512,0.0015560575993731618,6.586400559172034e-05,0.0001882072101579979,0.0050965361297130585,0.00041408988181501627,-0.004845594055950642,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,52,20.8,1.2519749402999878,0.0131722092628479,0.827953040599823,0.2659693956375122,1.027198314666748,0.08735216408967972,0.0015559636522084475,3.324399585835636e-05,0.00016016900190152228,0.004979460965842009,0.00043943861965090036,-0.004973926115781069,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,53,21.2,1.2005321979522705,0.07814545929431915,0.9045042991638184,0.2600383460521698,1.0522384643554688,0.11358026415109634,0.0015541129978373647,-3.9024075704219285e-06,0.00014645856572315097,0.004855790175497532,0.00044294996769167483,-0.005097001791000366,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,54,21.6,1.126682996749878,0.11659622192382812,0.9528997540473938,0.2612273693084717,1.0809729099273682,0.1325877159833908,0.0015523538459092379,-4.009699114249088e-05,0.00015292874013539404,0.00474180793389678,0.00042861548718065023,-0.00519875343888998,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,55,22.0,1.061590313911438,0.11927711218595505,0.9741269946098328,0.2591961920261383,1.1128896474838257,0.14443741738796234,0.0015533241676166654,-7.195645594038069e-05,0.0001838575699366629,0.004655529744923115,0.00040270897443406284,-0.005270800553262234,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,56,22.4,1.020642876625061,0.09601153433322906,0.9658944606781006,0.23265928030014038,1.1478652954101562,0.14851438999176025,0.0015566546935588121,-9.40922909649089e-05,0.00023472729662898928,0.0046153017319738865,0.0003677128697745502,-0.005309190135449171,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,57,22.8,1.0007293224334717,0.05899737775325775,0.9190099239349365,0.15377290546894073,1.1853046417236328,0.14299482107162476,0.0015584860229864717,-0.00010478877811692655,0.0002934144577011466,0.004626154433935881,0.00032319099409505725,-0.005308893509209156,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,58,23.2,0.9946262240409851,0.015798361971974373,0.8381067514419556,0.0067314221523702145,1.2229925394058228,0.12457581609487534,0.0015562251210212708,-0.00010110634320881218,0.0003460066800471395,0.004683254286646843,0.00026827867259271443,-0.005264952313154936,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,59,23.6,0.9989258646965027,-0.02759060077369213,0.7699199914932251,-0.1631007194519043,1.2541539669036865,0.08868930488824844,0.0015528174117207527,-8.441031241090968e-05,0.00038768647937104106,0.00477399118244648,0.00021280536020640284,-0.005179040599614382,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,60,24.0,1.012555480003357,-0.06613686680793762,0.781158983707428,-0.2571224272251129,1.2650984525680542,0.03240976482629776,0.0015507165808230639,-5.649735976476222e-05,0.0004181587719358504,0.004886774346232414,0.0001686589966993779,-0.005062045995146036,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,61,24.4,1.0338488817214966,-0.09746994823217392,0.8570075035095215,-0.2652634382247925,1.2392473220825195,-0.03697774559259415,0.0015530999517068267,-2.1556064893957227e-05,0.0004394811694510281,0.005010135006159544,0.00014752197603229433,-0.004933448042720556,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,62,24.8,1.0605353116989136,-0.12135651707649231,0.9254395961761475,-0.26088663935661316,1.1759350299835205,-0.09627420455217361,0.001557189621962607,1.608854472578969e-05,0.0004480188072193414,0.005131521727889776,0.00014965572336222976,-0.004812018945813179,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,63,25.2,1.0911083221435547,-0.13805751502513885,0.9649333953857422,-0.26333096623420715,1.1014049053192139,-0.12265011668205261,0.0015583443455398083,5.203483669902198e-05,0.000434102927101776,0.0052343024872243404,0.00017031301103997976,-0.004711996763944626,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,64,25.6,1.1246415376663208,-0.1475171148777008,0.9777995347976685,-0.256407231092453,1.0437650680541992,-0.11476103961467743,0.0015566236106678843,8.103275467874482e-05,0.00040020272717811167,0.005300977732986212,0.00020419653446879238,-0.004644062370061874,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,65,26.0,1.1605168581008911,-0.1487099826335907,0.9577252864837646,-0.21629256010055542,1.0105557441711426,-0.08536849915981293,0.0015539817977696657,0.00010033860598923638,0.00035140334512107074,0.0053231134079396725,0.0002494966029189527,-0.004615562967956066,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,66,26.4,1.1981979608535767,-0.1393553763628006,0.897066056728363,-0.11465798318386078,0.9957216382026672,-0.04530194774270058,0.0015531465178355575,0.00010604284761939198,0.00029825756791979074,0.005299624055624008,0.00030375149799510837,-0.0046339514665305614,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,67,26.8,1.2348203659057617,-0.11558051407337189,0.8122002482414246,0.050371140241622925,0.9932716488838196,-0.0011271752882748842,0.0015551932156085968,9.831349598243833e-05,0.00024827432935126126,0.005238238722085953,0.0003605737292673439,-0.004701249301433563,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,68,27.2,1.2617515325546265,-0.07267746329307556,0.7647151947021484,0.206771582365036,1.001339316368103,0.0413275808095932,0.0015572101110592484,7.690714846830815e-05,0.0002045636938419193,0.005145526956766844,0.00040869577787816525,-0.004807904828339815,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,69,27.6,1.2625614404678345,-0.009777503088116646,0.805205225944519,0.2666851878166199,1.0185637474060059,0.07778281718492508,0.001556068193167448,4.625886504072696e-05,0.00016814189439173788,0.005029752384871244,0.00043746805749833584,-0.0049346755258738995,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,70,28.0,1.222171425819397,0.06019454821944237,0.8850803375244141,0.26377204060554504,1.042168378829956,0.1067473292350769,0.0015540069434791803,9.530859642836731e-06,0.0001461506908526644,0.004900941625237465,0.0004470429557841271,-0.0050608916208148,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,71,28.4,1.1498051881790161,0.11056618392467499,0.9432731866836548,0.26263120770454407,1.0700069665908813,0.1282784789800644,0.001552680740132928,-2.8405322154867463e-05,0.00014604419993702322,0.004776887129992247,0.0004392807895783335,-0.005171635188162327,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,72,28.8,1.077521800994873,0.12438258528709412,0.9735745787620544,0.2644480764865875,1.101341962814331,0.14266347885131836,0.0015550616662949324,-6.28327252343297e-05,0.0001729657524265349,0.004678359255194664,0.0004205672303214669,-0.005257668439298868,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,73,29.2,1.028096079826355,0.10741365700960159,0.9768946170806885,0.2500157058238983,1.1358143091201782,0.14957588911056519,0.0015585076762363315,-8.946237358031794e-05,0.00022060085029806942,0.004622733686119318,0.0003898879513144493,-0.005311816465109587,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,74,29.6,1.0026570558547974,0.07327184826135635,0.9445252418518066,0.192846417427063,1.1730897426605225,0.1476505547761917,0.0015591345727443695,-0.00010445215593790635,0.000276547740213573,0.0046171387657523155,0.00034528490505181253,-0.005327275954186916,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,75,30.0,0.9930840134620667,0.03094356320798397,0.8722801804542542,0.06724804639816284,1.211613655090332,0.13402368128299713,0.0015565298963338137,-0.00010609986202325672,0.00032984939753077924,0.004657603334635496,0.0002886237052734941,-0.005296017974615097,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,76,30.4,0.9942694902420044,-0.013505987823009491,0.7905493974685669,-0.10803220421075821,1.2464929819107056,0.10429041087627411,0.0015531632816419005,-9.309028246207163e-05,0.0003755535581149161,0.0047370437532663345,0.00023018794308882207,-0.005219439044594765,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,77,30.8,1.0053050518035889,-0.05447915196418762,0.7699694037437439,-0.23910851776599884,1.2666105031967163,0.05405396968126297,0.0015519047155976295,-6.85053164488636e-05,0.00041333248373121023,0.004844598937779665,0.00018450137577019632,-0.005107319913804531,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,78,31.2,1.0248045921325684,-0.08860883861780167,0.8324585556983948,-0.2690258026123047,1.254150152206421,-0.014148137532174587,0.001554615912027657,-3.480600571492687e-05,0.00044163831626065075,0.004970540292561054,0.00015687798440922052,-0.004981057718396187,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,79,31.6,1.050358533859253,-0.11512890458106995,0.9088587164878845,-0.26298561692237854,1.1999952793121338,-0.0812835693359375,0.0015580346807837486,2.849782731573214e-06,0.0004545183037407696,0.005098946858197451,0.00014953745994716883,-0.004857177846133709,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,80,32.0,1.080124855041504,-0.1343362033367157,0.9577400088310242,-0.26470205187797546,1.1236025094985962,-0.12038585543632507,0.0015582414343953133,4.062761217937805e-05,0.0004454498994164169,0.005211593583226204,0.0001608646271051839,-0.0047459229826927185,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,81,32.4,1.1128350496292114,-0.1463581919670105,0.9798202514648438,-0.2638554871082306,1.0572514533996582,-0.12227831780910492,0.0015564996283501387,7.308711064979434e-05,0.0004156470240559429,0.005290497560054064,0.00018889797502197325,-0.0046615381725132465,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,82,32.8,1.1480740308761597,-0.1505925953388214,0.9723703861236572,-0.23901675641536713,1.0161092281341553,-0.09791550785303116,0.0015544112538918853,9.63997736107558e-05,0.00037108935066498816,0.005326850339770317,0.0002317326288903132,-0.004615503363311291,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,83,33.2,1.1857550144195557,-0.14518022537231445,0.9259811639785767,-0.16125501692295074,0.9966250061988831,-0.06006021425127983,0.0015550553798675537,0.00010734367970144376,0.0003212302690371871,0.005319642368704081,0.0002880688989534974,-0.0046181026846170425,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,84,33.6,1.2239447832107544,-0.12674932181835175,0.8445175886154175,-0.012730495072901249,0.9910370707511902,-0.01620880514383316,0.0015571581898257136,0.00010400595783721656,0.0002708220563363284,0.005272619891911745,0.00034787069307640195,-0.004672839771956205,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,85,34.0,1.2562392950057983,-0.0904388427734375,0.7750226855278015,0.16166114807128906,0.9961662292480469,0.02781536802649498,0.0015577413141727448,8.707861707080156e-05,0.00022187933791428804,0.005190347321331501,0.00039898755494505167,-0.004770465195178986,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,86,34.4,1.2681381702423096,-0.03292949125170708,0.785624086856842,0.2592531144618988,1.0108548402786255,0.0668860524892807,0.0015559452585875988,5.850339221069589e-05,0.00017829805437941104,0.005077764857560396,0.0004321938322391361,-0.0048926817253232,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,87,34.8,1.2411631345748901,0.03844854235649109,0.8614013195037842,0.2677766680717468,1.032676339149475,0.09859336912631989,0.0015536877326667309,2.3043376131681725e-05,0.00014872458996251225,0.004947164561599493,0.00044715346302837133,-0.0050200228579342365,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,88,35.2,1.1748991012573242,0.09922249615192413,0.9293643236160278,0.2634167969226837,1.0594682693481445,0.12269618362188339,0.001553265145048499,-1.5709412764408626e-05,0.00014252788969315588,0.004816402681171894,0.0004470797721296549,-0.005138440057635307,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,89,35.6,1.0977638959884644,0.12563477456569672,0.9685957431793213,0.26644906401634216,1.0900498628616333,0.13955168426036835,0.0015563872875645757,-5.22074697073549e-05,0.00016385271737817675,0.004707436077296734,0.00043527595698833466,-0.0052369763143360615,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,90,36.0,1.039283275604248,0.1169244572520256,0.9820442795753479,0.26067444682121277,1.123847246170044,0.1491456776857376,0.0015596839366480708,-8.237774454755709e-05,0.00020625955949071795,0.004637282341718674,0.0004086276749148965,-0.005307099316269159,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,91,36.4,1.0069106817245483,0.08672424405813217,0.9634642601013184,0.22210828959941864,1.1606184244155884,0.15048746764659882,0.0015593692660331726,-0.00010205237049376592,0.0002585845941212028,0.004614293575286865,0.00036514492239803076,-0.005336862988770008,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,92,36.8,0.9931507706642151,0.04605573043227196,0.9037211537361145,0.12110867351293564,1.199223279953003,0.14125080406665802,0.0015567095251753926,-0.00010846153600141406,0.00031185740954242647,0.004637155681848526,0.00030892351060174406,-0.0053189778700470924,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,93,37.2,0.9911157488822937,0.0013312111841514707,0.8179397583007812,-0.046071454882621765,1.2364072799682617,0.11741414666175842,0.0015534365084022284,-0.00010042350913863629,0.0003610915446188301,0.0047027976252138615,0.00024884974118322134,-0.005254293791949749,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,94,37.6,0.9992721676826477,-0.041625868529081345,0.7685277462005615,-0.2066023051738739,1.2637288570404053,0.07400835305452347,0.0015533625846728683,-7.906978134997189e-05,0.0004054048622492701,0.004803577437996864,0.000199146059458144,-0.005152976606041193,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,95,38.0,1.0165715217590332,-0.07846911251544952,0.807895839214325,-0.26869669556617737,1.2642947435379028,0.009853433817625046,0.001556014409288764,-4.786037970916368e-05,0.0004400712496135384,0.004928741604089737,0.00016609247541055083,-0.00503145344555378,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,96,38.4,1.0407090187072754,-0.10767648369073868,0.887859046459198,-0.26580533385276794,1.2227084636688232,-0.06177086383104324,0.001558154122903943,-1.0307968295819592e-05,0.00045769993448629975,0.005061928182840347,0.00015136208094190806,-0.0049039265140891075,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,97,38.8,1.0694293975830078,-0.12939263880252838,0.9465696215629578,-0.26483088731765747,1.1486457586288452,-0.1131054013967514,0.001557792886160314,2.8224307243363e-05,0.0004531931772362441,0.005181674845516682,0.00015366128354799002,-0.004784261807799339,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,98,39.2,1.1011966466903687,-0.1439143419265747,0.9772710204124451,-0.2673112154006958,1.0749099254608154,-0.12669087946414948,0.0015562139451503754,6.364045839291066e-05,0.00042827773722819984,0.005272287875413895,0.00017424592806492,-0.00468540471047163,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,99,39.6,1.135704755783081,-0.1509568691253662,0.981019139289856,-0.2540379464626312,1.0248667001724243,-0.10900289565324783,0.0015550106763839722,9.062838944373652e-05,0.00038928136928007007,0.005322818178683519,0.00021496249246411026,-0.004622335080057383,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,100,40.0,1.1729846000671387,-0.14914445579051971,0.9491497278213501,-0.19810408353805542,0.9994858503341675,-0.07424956560134888,0.0015566248912364244,0.0001063169984263368,0.00034337371471337974,0.005332268308848143,0.00027112304815091193,-0.00460906932130456,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,101,40.4,1.2118356227874756,-0.1355963796377182,0.8770440816879272,-0.07252451777458191,0.9903334975242615,-0.03147822618484497,0.001558654010295868,0.00010783492325572297,0.0002929527254309505,0.0053007774986326694,0.0003326460428070277,-0.00464951666072011,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,102,40.8,1.2477562427520752,-0.10577088594436646,0.7948356866836548,0.10527164489030838,0.9923644065856934,0.013400502502918243,0.0015579232713207603,9.523052722215652e-05,0.00023988299653865397,0.005229759030044079,0.000385727034881711,-0.004735313821583986,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,103,41.2,1.26880943775177,-0.05495782941579819,0.7733052968978882,0.23976099491119385,1.004135251045227,0.054797347635030746,0.0015556165017187595,7.011201523710042e-05,0.0001903805386973545,0.005123378708958626,0.000423309626057744,-0.004850555211305618,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,104,41.6,1.2559707164764404,0.01445852406322956,0.835248589515686,0.2707573175430298,1.0238490104675293,0.08923129737377167,0.0015533746918663383,3.59840523742605e-05,0.00015431213250849396,0.004993496462702751,0.0004437303578015417,-0.004976963624358177,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,105,42.0,1.2000199556350708,0.08288996666669846,0.9112821817398071,0.2646496891975403,1.0493797063827515,0.11595197767019272,0.0015541602624580264,-2.2617737158725504e-06,0.00014208740321919322,0.004859243519604206,0.0004520511720329523,-0.005100431386381388,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,106,42.4,1.121555209159851,0.12243955582380295,0.9598671197891235,0.2666005492210388,1.0790629386901855,0.13527971506118774,0.0015574396820738912,-4.071588773513213e-05,0.00015677185729146004,0.004741613753139973,0.0004462786018848419,-0.005211174488067627,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,107,42.8,1.0543878078460693,0.12399522960186005,0.9824404716491699,0.26644930243492126,1.1120929718017578,0.14742422103881836,0.001560042961500585,-7.372957043116912e-05,0.00019245629664510489,0.004658150020986795,0.00042438862146809697,-0.005294312722980976,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,108,43.2,1.0137314796447754,0.09909255802631378,0.9762626886367798,0.24277116358280182,1.1481114625930786,0.1517833024263382,0.0015593069838359952,-9.758494707057253e-05,0.00023978445096872747,0.004617141094058752,0.00038310536183416843,-0.005338691640645266,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,109,43.6,0.9948194622993469,0.060815583914518356,0.9307254552841187,0.16605323553085327,1.186310887336731,0.14650210738182068,0.001556637929752469,-0.00010878107423195615,0.00029212498338893056,0.004622063133865595,0.00032989110331982374,-0.005332789849489927,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,110,44.0,0.9894126653671265,0.016601599752902985,0.848926842212677,0.017009349539875984,1.2247384786605835,0.12812697887420654,0.0015540249878540635,-0.00010559619113337249,0.0003447808267083019,0.004672495182603598,0.0002686902298592031,-0.0052838074043393135,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,111,44.4,0.9944882988929749,-0.027782415971159935,0.7779639959335327,-0.16008752584457397,1.2572540044784546,0.0916576087474823,0.0015547440852969885,-8.852298196870834e-05,0.00039493918302468956,0.004764443263411522,0.00021694021415896714,-0.005193723365664482,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,112,44.8,1.0092166662216187,-0.06715802848339081,0.7872455716133118,-0.26023876667022705,1.2693110704421997,0.033534079790115356,0.0015571170952171087,-5.978804620099254e-05,0.0004350387607701123,0.004886683076620102,0.00017886163550429046,-0.005078980699181557,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,113,45.2,1.0316203832626343,-0.09909205138683319,0.8631380200386047,-0.2692450284957886,1.2422066926956177,-0.038964398205280304,0.0015579120954498649,-2.389307519479189e-05,0.0004480814968701452,0.0050211213529109955,0.00015535569400526583,-0.004951568320393562,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,114,45.6,1.059064269065857,-0.12335386127233505,0.931580662727356,-0.26484158635139465,1.1749544143676758,-0.10072045028209686,0.00155713374260813,1.532571877760347e-05,0.0004575621569529176,0.005146922077983618,0.00015094366972334683,-0.004822615068405867,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,115,46.0,1.0898160934448242,-0.14034000039100647,0.9709479808807373,-0.26820921897888184,1.096419095993042,-0.1273198127746582,0.0015557307051494718,5.233379124547355e-05,0.00043847053893841803,0.005247056484222412,0.00016278293333016336,-0.004713596310466528,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,116,46.4,1.1235289573669434,-0.15003284811973572,0.9845936298370361,-0.2631499767303467,1.0371029376983643,-0.1182192787528038,0.001555779599584639,8.314660954056308e-05,0.00040581871871836483,0.005312070716172457,0.00019947451073676348,-0.004635704681277275,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,117,46.8,1.160166621208191,-0.15148966014385223,0.9664026498794556,-0.22563327848911285,1.0044989585876465,-0.08760717511177063,0.0015580464387312531,0.00010304855095455423,0.00036422713310457766,0.005337977781891823,0.00025427283253520727,-0.0046066767536103725,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,118,47.2,1.199070930480957,-0.14236216247081757,0.9072363972663879,-0.12533876299858093,0.9911213517189026,-0.0466378889977932,0.0015594417927786708,0.00010976571502396837,0.0003143494250252843,0.0053226882591843605,0.00031537486938759685,-0.00463104946538806,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,119,47.6,1.2371509075164795,-0.118588887155056,0.8216073513031006,0.04278979450464249,0.9898779988288879,-0.001632425468415022,0.0015580867184326053,0.00010164111881749704,0.00025475514121353626,0.005260219797492027,0.00036995921982452273,-0.004703176207840443,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,120,48.0,1.26517915725708,-0.07499515265226364,0.7712075114250183,0.20596455037593842,0.9984697103500366,0.04164401441812515,0.0015553607372567058,8.059350511757657e-05,0.00020430581935215741,0.0051655955612659454,0.0004114910261705518,-0.004808370489627123,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,121,48.4,1.2657424211502075,-0.010202530771493912,0.8095860481262207,0.2697383761405945,1.015781044960022,0.0787452906370163,0.0015532909892499447,4.880209598923102e-05,0.00016284501180052757,0.00503931799903512,0.00043888125219382346,-0.004931960254907608,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,122,48.8,1.22321355342865,0.06237931177020073,0.8891468048095703,0.2669430077075958,1.0397772789001465,0.10812268406152725,0.0015548944938927889,1.1126174285891466e-05,0.00014476437354460359,0.004904178902506828,0.0004542202514130622,-0.005059617571532726,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,123,49.2,1.1477365493774414,0.11436749249696732,0.9476776719093323,0.26600584387779236,1.068414568901062,0.1299557089805603,0.0015582165215164423,-2.8026806830894202e-05,0.00015183698269538581,0.004780387505888939,0.0004550427838694304,-0.005179207772016525,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,124,49.6,1.0733702182769775,0.12798736989498138,0.9789095520973206,0.2688629627227783,1.100602149963379,0.14457643032073975,0.001559958211146295,-6.358139216899872e-05,0.00017984256555791944,0.004684200044721365,0.00043714363710023463,-0.005275140516459942,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,125,50.0,1.023458480834961,0.11002275347709656,0.9836272597312927,0.25640174746513367,1.135707974433899,0.15173844993114471,0.0015589846298098564,-9.111308463616297e-05,0.00022139381326269358,0.004626181907951832,0.00039921802817843854,-0.00533268041908741,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,126,50.4,0.9982319474220276,0.07497522979974747,0.9524234533309937,0.2014862298965454,1.1732146739959717,0.15003842115402222,0.001556472503580153,-0.00010726907930802554,0.00027197995223104954,0.004612622782588005,0.00034653066541068256,-0.005343550816178322,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,127,50.8,0.9890944957733154,0.031976595520973206,0.8803538680076599,0.07627992331981659,1.2121074199676514,0.13659654557704926,0.0015549561940133572,-0.00010900374763878062,0.00032742982148192823,0.004647440742701292,0.00028923165518790483,-0.005306839477270842,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,128,51.2,0.9909722805023193,-0.01314890943467617,0.7972056865692139,-0.10286488384008408,1.248069405555725,0.1067829355597496,0.0015561017207801342,-9.642627992434427e-05,0.00038219353882595897,0.004728326108306646,0.000236543346545659,-0.005230505019426346,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,129,51.6,1.0028369426727295,-0.05478141829371452,0.7744635939598083,-0.23972280323505402,1.2694830894470215,0.055754370987415314,0.0015576393343508244,-7.106076373020187e-05,0.00042699321056716144,0.004845051560550928,0.0001931882870849222,-0.005124611314386129,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,130,52.0,1.0231338739395142,-0.08942031860351562,0.8363121151924133,-0.27177584171295166,1.2571238279342651,-0.014300866983830929,0.0015576009172946215,-3.700491652125493e-05,0.0004534689651336521,0.004978144075721502,0.00016281363787129521,-0.004998123273253441,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,131,52.4,1.0490728616714478,-0.11629574745893478,0.9126877784729004,-0.26562121510505676,1.200735092163086,-0.08356155455112457,0.0015564836794510484,1.8349616084378795e-06,0.0004591911274474114,0.005107581615447998,0.00014653278049081564,-0.004867443349212408,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,132,52.8,1.0787619352340698,-0.13573592901229858,0.9613010287284851,-0.26767197251319885,1.1211239099502563,-0.1235315129160881,0.001555195776745677,4.047118636663072e-05,0.000446406687842682,0.005216603167355061,0.00015348159649875015,-0.004746651276946068,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,133,53.2,1.1116113662719727,-0.1479758620262146,0.9839054942131042,-0.2679382264614105,1.0530296564102173,-0.1250057816505432,0.001556596951559186,7.392355473712087e-05,0.0004207864112686366,0.005295260343700647,0.00018560228636488318,-0.004655557684600353,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,134,53.6,1.1474689245224,-0.15242955088615417,0.9780353307723999,-0.24503156542778015,1.0119836330413818,-0.09986356645822525,0.0015591512201353908,9.822146967053413e-05,0.0003834657836705446,0.0053374553099274635,0.00023737271840218455,-0.004610580857843161,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,135,54.0,1.1860253810882568,-0.1472768783569336,0.9333299398422241,-0.16923195123672485,0.9934439063072205,-0.061408963054418564,0.001559871481731534,0.00010964031389448792,0.00033470711787231266,0.005337836220860481,0.00029665746842511,-0.004618505015969276,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,136,54.4,1.2251418828964233,-0.12901638448238373,0.8520398736000061,-0.020248081535100937,0.9886645674705505,-0.01701173558831215,0.0015579990576952696,0.00010675265366444364,0.0002771787403617054,0.005292500834912062,0.00035218457924202085,-0.004674511030316353,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,137,54.8,1.2581020593643188,-0.09257353842258453,0.7802638411521912,0.15846475958824158,0.9939358234405518,0.02758891135454178,0.0015550917014479637,8.93328688107431e-05,0.0002197963185608387,0.005203890614211559,0.00039743687375448644,-0.004768462851643562,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,138,55.2,1.2702947854995728,-0.034196916967630386,0.7882731556892395,0.26055437326431274,1.0085560083389282,0.0671815574169159,0.0015536502469331026,6.0871156165376306e-05,0.0001742391032166779,0.005083954893052578,0.0004308882635086775,-0.00488724559545517,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,139,55.6,1.2427951097488403,0.038893330842256546,0.8635540008544922,0.2700498104095459,1.0307209491729736,0.09926427155733109,0.001555583905428648,2.4515571567462757e-05,0.00014834452304057777,0.004948699381202459,0.00045369312283582985,-0.005016871728003025,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,140,56.0,1.1748219728469849,0.10130856186151505,0.9320085048675537,0.2655920088291168,1.058156132698059,0.12363747507333755,0.0015585189685225487,-1.4794632079428993e-05,0.00014935029321350157,0.004822509363293648,0.0004604732966981828,-0.005143636837601662,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,141,56.4,1.0959128141403198,0.1282159686088562,0.9719775915145874,0.26913222670555115,1.0893909931182861,0.1407191902399063,0.001559584867209196,-5.253643757896498e-05,0.00016854163550306112,0.004715159069746733,0.000446943158749491,-0.005249802954494953,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,142,56.8,1.0364327430725098,0.11906357109546661,0.9863014221191406,0.2645952105522156,1.1234976053237915,0.1505146324634552,0.0015585317742079496,-8.32775331218727e-05,0.00020410760771483183,0.004640916828066111,0.0004132376634515822,-0.005320397205650806,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,143,57.2,1.003674030303955,0.08828789740800858,0.9685871005058289,0.22792093455791473,1.1601779460906982,0.1520794928073883,0.0015563714550808072,-0.00010364141053287312,0.00025214310153387487,0.0046094260178506374,0.000364435079973191,-0.0053456318564713,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,144,57.6,0.9901491403579712,0.047170039266347885,0.9096193909645081,0.12835365533828735,1.1989761590957642,0.1430574357509613,0.001555992173962295,-0.00011052977060899138,0.000309440481942147,0.00462780287489295,0.00031012584804557264,-0.005324768368154764,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,145,58.0,0.9887243509292603,0.00202190806157887,0.8235576748847961,-0.04007193073630333,1.2369974851608276,0.11938514560461044,0.001557328854687512,-0.00010261442366754636,0.00036754668690264225,0.004696318879723549,0.000256852013990283,-0.0052629075944423676,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,146,58.4,0.9975208044052124,-0.04143812507390976,0.7723178267478943,-0.20500510931015015,1.2654969692230225,0.07578977942466736,0.0015579850878566504,-8.130543574225157e-05,0.00041602522833272815,0.004804493859410286,0.00020873970061074942,-0.005167245399206877,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,147,58.8,1.015323519706726,-0.07871567457914352,0.8102676272392273,-0.27027785778045654,1.2667502164840698,0.010728074237704277,0.0015571488765999675,-4.9481677706353366e-05,0.0004467601829674095,0.004934106487780809,0.00017015081539284438,-0.005045426543802023,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,148,59.2,1.0395216941833496,-0.10824575275182724,0.8899146914482117,-0.2676438093185425,1.2241668701171875,-0.06243610009551048,0.0015557376900687814,-1.1819643077615183e-05,0.00045809513540007174,0.005065036937594414,0.00014694883429910988,-0.004912263713777065,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,149,59.6,1.068071722984314,-0.130181685090065,0.9484566450119019,-0.266662061214447,1.14790678024292,-0.11492663621902466,0.0015551145188510418,2.766838952084072e-05,0.0004524566465988755,0.005181750748306513,0.00014692771947011352,-0.004782891366630793,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,150,60.0,1.0999985933303833,-0.14489106833934784,0.9796115756034851,-0.2697281539440155,1.072635531425476,-0.12870609760284424,0.0015573051059618592,6.35269534541294e-05,0.0004334678524173796,0.005273046903312206,0.00017381574434693903,-0.004681549966335297,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,151,60.4,1.1350092887878418,-0.15214277803897858,0.9846206903457642,-0.25779759883880615,1.0223112106323242,-0.11068170517683029,0.0015598173486068845,9.14639385882765e-05,0.00040092269773595035,0.005330877378582954,0.00022085962700657547,-0.004621131811290979,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,152,60.8,1.172935962677002,-0.15056174993515015,0.9543429613113403,-0.2037382274866104,0.9974209070205688,-0.07554364949464798,0.001560063217766583,0.00010766660125227645,0.00035380953340791166,0.005346773192286491,0.0002773213491309434,-0.004611614625900984,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,153,61.2,1.212296724319458,-0.13725772500038147,0.8829134106636047,-0.07913661748170853,0.9886915683746338,-0.03244688734412193,0.001557869021780789,0.00010963311069644988,0.0002961131394840777,0.005315275397151709,0.00033294237800873816,-0.004650445189327002,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,154,61.6,1.248487949371338,-0.10755126923322678,0.7992556095123291,0.10067170113325119,0.9905970096588135,0.012825947254896164,0.0015549190575256944,9.717064676806331e-05,0.00023669275105930865,0.00523831183090806,0.0003816453681793064,-0.004731310065835714,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,155,62.0,1.2700077295303345,-0.05650629103183746,0.7751797437667847,0.23928242921829224,1.0022574663162231,0.05461965128779411,0.0015543000772595406,7.187049050116912e-05,0.00018836409435607493,0.00512682506814599,0.00042186540667898953,-0.004842972382903099,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,156,62.4,1.2575695514678955,0.013841859064996243,0.8361389636993408,0.27231159806251526,1.0222777128219604,0.08939912915229797,0.0015563196502625942,3.766192094190046e-05,0.0001581456745043397,0.00499747134745121,0.0004509554128162563,-0.004972666501998901,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,157,62.8,1.2010782957077026,0.08362798392772675,0.9126864075660706,0.2661452889442444,1.0483295917510986,0.11637448519468307,0.0015584707725793123,-1.389570797982742e-06,0.00014898329391144216,0.004866858944296837,0.0004631386836990714,-0.005104660987854004,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,158,63.2,1.1213300228118896,0.12405476719141006,0.9619252681732178,0.26822876930236816,1.0784733295440674,0.13591545820236206,0.0015590820694342256,-4.0116123273037374e-05,0.00015934558177832514,0.004750200547277927,0.00045422426774166524,-0.005219847429543734,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,159,63.6,1.052889347076416,0.12566612660884857,0.9849851131439209,0.2688036262989044,1.1115391254425049,0.14824552834033966,0.0015579723985865712,-7.3998722655233e-05,0.00018815897055901587,0.004660970997065306,0.00042524150921963155,-0.0053022075444459915,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,160,64.0,1.011497974395752,0.10047419369220734,0.9794407486915588,0.24651890993118286,1.1473349332809448,0.15279695391654968,0.0015564459608867764,-9.828173642745242e-05,0.0002332991425646469,0.004612465389072895,0.00038142583798617125,-0.00534183019772172,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,161,64.4,0.9926515221595764,0.06193889304995537,0.9349529147148132,0.17150689661502838,1.1856683492660522,0.14774781465530396,0.0015570491086691618,-0.00011014944175258279,0.0002910777984652668,0.004614229314029217,0.00033041081042028964,-0.005337702576071024,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,162,64.8,0.9877376556396484,0.01746402680873871,0.8536608815193176,0.02287519909441471,1.2247233390808105,0.1296135038137436,0.0015582649502903223,-0.0001068937053787522,0.00035123576526530087,0.0046686134301126,0.0002773538581095636,-0.0052907830104231834,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,163,65.2,0.9933144450187683,-0.027259355410933495,0.7815195322036743,-0.1568068563938141,1.258204698562622,0.09328430891036987,0.0015581527259200811,-9.014287206809968e-05,0.0004025863017886877,0.004766215570271015,0.00022542133228853345,-0.0052064224146306515,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,164,65.6,1.0082801580429077,-0.06701184064149857,0.7888226509094238,-0.26053935289382935,1.2710460424423218,0.03486861661076546,0.001556741539388895,-6.149357795948163e-05,0.0004377136647235602,0.004889649339020252,0.00018028095655608922,-0.005091041326522827,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,165,66.0,1.0304921865463257,-0.09922736138105392,0.8638392686843872,-0.2705518901348114,1.2437162399291992,-0.03853268921375275,0.0015549645759165287,-2.495587250450626e-05,0.00045471382327377796,0.005020589102059603,0.00015014069504104555,-0.0049573928117752075,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,166,66.4,1.057766318321228,-0.12370651215314865,0.9322767853736877,-0.26601243019104004,1.17531156539917,-0.10141832381486893,0.0015552883269265294,1.4314136024040636e-05,0.0004565691633615643,0.005143275950103998,0.00014389565330930054,-0.004823967348784208,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,167,66.8,1.0887113809585571,-0.14086337387561798,0.9721475839614868,-0.2696110010147095,1.0956474542617798,-0.1286410093307495,0.0015579414321109653,5.22189584444277e-05,0.00044419540790840983,0.005246398039162159,0.00016409598174504936,-0.004711679648607969,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,168,67.2,1.122848629951477,-0.15074820816516876,0.9868156313896179,-0.2654203176498413,1.0358408689498901,-0.11960005760192871,0.0015601158374920487,8.314628212247044e-05,0.000416280614444986,0.005318441428244114,0.00020515552023425698,-0.004637794103473425,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,169,67.6,1.1599454879760742,-0.15241818130016327,0.9699770212173462,-0.22944019734859467,1.0033169984817505,-0.08881653100252151,0.0015599558828398585,0.00010395398567197844,0.00037204392720013857,0.0053498814813792706,0.00026144011644646525,-0.004606550559401512,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,170,68.0,1.1990224123001099,-0.1435319185256958,0.9116430878639221,-0.13067516684532166,0.989978551864624,-0.04766080901026726,0.0015576640143990517,0.00011086131416959688,0.00031479104654863477,0.0053323060274124146,0.0003127805539406836,-0.0046316636726260185,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,171,68.4,1.237123727798462,-0.11999678611755371,0.8253868222236633,0.037684451788663864,0.9884768724441528,-0.0024282170925289392,0.001555049093440175,0.00010318018757971004,0.0002550247882027179,0.005268420558422804,0.00036480408743955195,-0.004697840660810471,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,172,68.8,1.2656188011169434,-0.0764985978603363,0.772956371307373,0.20387262105941772,0.9969767928123474,0.041152339428663254,0.0015550587559118867,8.179413998732343e-05,0.00020395638421177864,0.005167290568351746,0.00041094000334851444,-0.004800831899046898,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,173,69.2,1.2669779062271118,-0.011375844478607178,0.8098122477531433,0.2704779803752899,1.0145411491394043,0.07854752242565155,0.0015569759998470545,5.018266529077664e-05,0.00016835363931022584,0.00504386005923152,0.0004455106391105801,-0.004928378853946924,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,174,69.6,1.224753737449646,0.06213518604636192,0.8896486163139343,0.2680598199367523,1.0389673709869385,0.10818378627300262,0.001558309537358582,1.227665961778257e-05,0.00015088300278875977,0.004912856966257095,0.0004629944742191583,-0.005063086282461882,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,175,70.0,1.1485543251037598,0.115099236369133,0.9487791657447815,0.26700860261917114,1.067873477935791,0.13021379709243774,0.0015582999913021922,-2.733429937507026e-05,0.00015249215357471257,0.004788532853126526,0.0004590802709572017,-0.005185160785913467,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,176,70.4,1.0728859901428223,0.1291680932044983,0.980247437953949,0.27023810148239136,1.0998849868774414,0.1450154036283493,0.0015572054544463754,-6.334616045933217e-05,0.00017419758660253137,0.004686275497078896,0.00043552275747060776,-0.005278265569359064,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,177,70.8,1.0220876932144165,0.1111985370516777,0.9854578971862793,0.25872451066970825,1.1347602605819702,0.15234850347042084,0.0015568657545372844,-9.158939792541787e-05,0.00021577671577688307,0.004621563013643026,0.0003973965358454734,-0.005332615226507187,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,178,71.2,0.9967803359031677,0.07604745775461197,0.9553678035736084,0.20536938309669495,1.1724019050598145,0.1508689820766449,0.001558020361699164,-0.00010783331526909024,0.00027248612605035305,0.004607009701430798,0.00035060555092059076,-0.005344542209059,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,179,71.6,0.9880033135414124,0.032920680940151215,0.884277880191803,0.08144176751375198,1.2117773294448853,0.13769283890724182,0.0015589733375236392,-0.00011015187919838354,0.0003334906359668821,0.004645791370421648,0.00029788073152303696,-0.005313830450177193,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,180,72.0,0.9902447462081909,-0.012426014989614487,0.8006600737571716,-0.0986192598938942,1.2484652996063232,0.1081443503499031,0.001558247022330761,-9.75789807853289e-05,0.00038715105620212853,0.004730736371129751,0.00024244612723123282,-0.0052419984713196754,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,181,72.4,1.0021034479141235,-0.05435037985444069,0.7757800817489624,-0.23866087198257446,1.2704914808273315,0.05719567462801933,0.001556207425892353,-7.246997120091692e-05,0.0004263096197973937,0.004845981486141682,0.0001926106633618474,-0.005133810453116894,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,182,72.8,1.0220725536346436,-0.08925438672304153,0.8361070156097412,-0.2726132273674011,1.2583165168762207,-0.013250992633402348,0.0015545188216492534,-3.808410110650584e-05,0.0004495593602769077,0.004974876530468464,0.00015629826521035284,-0.0050028651021420956,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,183,73.2,1.0478811264038086,-0.11632600426673889,0.9125241041183472,-0.2664397358894348,1.2016483545303345,-0.08338336646556854,0.0015556260477751493,7.81976496000425e-07,0.0004586382128763944,0.005102229304611683,0.00014793859736528248,-0.004866873845458031,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,184,73.6,1.0777746438980103,-0.13594570755958557,0.9617341756820679,-0.2684919834136963,1.1214064359664917,-0.1242096871137619,0.0015583266504108906,3.9799204387236387e-05,0.0004527089768089354,0.005215438548475504,0.00015652044385205954,-0.0047470987774431705,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,185,74.0,1.1110069751739502,-0.14835339784622192,0.9852288961410522,-0.2692660391330719,1.0527859926223755,-0.1260642111301422,0.001560121774673462,7.379425369435921e-05,0.0004294571408536285,0.005300724413245916,0.00019085225358139724,-0.004659619182348251,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,186,74.4,1.1471495628356934,-0.15300773084163666,0.9804198741912842,-0.24751117825508118,1.0114796161651611,-0.10095781087875366,0.0015597306191921234,9.833122021518648e-05,0.00038815144216641784,0.005345955025404692,0.00023826352844480425,-0.00461498461663723,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,187,74.8,1.1856197118759155,-0.14807389676570892,0.9364890456199646,-0.17328281700611115,0.9926308393478394,-0.062423743307590485,0.0015573479468002915,0.00011034718772862107,0.00033319025533273816,0.005343717988580465,0.0002921950363088399,-0.004618021659553051,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,188,75.2,1.2246451377868652,-0.1300821751356125,0.8552365899085999,-0.025160346180200577,0.9875563979148865,-0.017916850745677948,0.0015554720303043723,0.00010749607463367283,0.0002743162331171334,0.005293864756822586,0.00034705124562606215,-0.004668525420129299,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,189,75.6,1.2580139636993408,-0.09389465302228928,0.7822009921073914,0.15515199303627014,0.9927845001220703,0.026890017092227936,0.001555970753543079,9.076151036424562e-05,0.00022152985911816359,0.005205092951655388,0.00039807838038541377,-0.004761469550430775,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,190,76.0,1.271080732345581,-0.035562220960855484,0.7884004712104797,0.2603037357330322,1.0076115131378174,0.06673989444971085,0.0015573069686070085,6.198804476298392e-05,0.00018060914590023458,0.005089226178824902,0.00043783080764114857,-0.004884584341198206,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,191,76.4,1.2443591356277466,0.037999171763658524,0.8634306192398071,0.2708859145641327,1.0301063060760498,0.09906186908483505,0.0015579587779939175,2.5760396965779364e-05,0.00015514210099354386,0.00495953718200326,0.000460117676993832,-0.005019578151404858,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,192,76.8,1.1761736869812012,0.10129240155220032,0.9323561191558838,0.26625773310661316,1.0576176643371582,0.12363870441913605,0.0015575842699036002,-1.3926101019023918e-05,0.00014803599333390594,0.004829447716474533,0.0004615079378709197,-0.005146997980773449,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,193,77.2,1.0961742401123047,0.12888509035110474,0.9724709391593933,0.26989802718162537,1.0885627269744873,0.14088107645511627,0.0015566356014460325,-5.180624430067837e-05,0.00016262276039924473,0.004716049879789352,0.0004434930451679975,-0.005250140558928251,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,194,77.6,1.0358105897903442,0.12001296877861023,0.9872239828109741,0.2659749388694763,1.1224876642227173,0.15084652602672577,0.001557189621962607,-8.317491301568225e-05,0.00019985988910775632,0.004636833444237709,0.0004122729296796024,-0.0053179264068603516,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,195,78.0,1.0028347969055176,0.08927487581968307,0.9705644249916077,0.23055654764175415,1.1593106985092163,0.15260444581508636,0.0015588453970849514,-0.00010403315536677837,0.0002542081056162715,0.004605946596711874,0.00036963497404940426,-0.00534638948738575,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,196,78.4,0.9895440936088562,0.04813693091273308,0.9128127098083496,0.13257841765880585,1.1985135078430176,0.1438484489917755,0.0015594428405165672,-0.00011099496623501182,0.00031469372333958745,0.00462835980579257,0.00031793079688213766,-0.005331624764949083,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,197,78.8,0.9883292317390442,0.0028641256503760815,0.8268686532974243,-0.03550257906317711,1.2370262145996094,0.12047477811574936,0.001558162271976471,-0.00010359912266721949,0.00037005546619184315,0.004698817618191242,0.00026080466341227293,-0.005272692069411278,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,198,79.2,0.9969051480293274,-0.040809016674757004,0.7737083435058594,-0.20266857743263245,1.2658684253692627,0.07714510709047318,0.00155582744628191,-8.227835496654734e-05,0.0004130724410060793,0.004803895950317383,0.00020676566055044532,-0.005173748824745417,0.0,-2.0,2.0,0.0,-0.02,0.02 +steady,sr,199,79.6,1.0143425464630127,-0.07831986993551254,0.8096128106117249,-0.2704988420009613,1.2674862146377563,0.012071621604263783,0.0015544472262263298,-5.061442425358109e-05,0.00044250398059375584,0.004928771406412125,0.00016537282499484718,-0.005047464277595282,0.0,-2.0,2.0,0.0,-0.02,0.02 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_long.csv new file mode 100644 index 0000000..17e3765 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360454559326172 +steady,target,2,0.8,velocity,upper_uy,-6.0142632719362155e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3022217970615202e-08 +steady,target,2,0.8,velocity,lower_ux,1.136043906211853 +steady,target,2,0.8,velocity,lower_uy,5.990688077872619e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.164554238319397 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360433101654053 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.1645541191101074 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360431909561157 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360450983047485 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.1360435485839844 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0459883621224435e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360433101654053 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360445022583008 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043906211853 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360431909561157 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.1360450983047485 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.136045217514038 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.2619947515067906e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513350035762414e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.1360453367233276 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645545959472656 +steady,target,40,16.0,velocity,center_uy,1.943962644190833e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3958349465734727e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512657542614761e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360454559326172 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360433101654053 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.1360453367233276 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.455101650866709e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360430717468262 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360441446304321 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360431909561157 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360431909561157 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.164554476737976 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.136045217514038 +steady,target,70,28.0,velocity,upper_uy,-6.115892756497487e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.228221825997025e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.136044979095459 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.6995057440854e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035815385985188e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8659979161839146e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.043549728929065e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.1645545959472656 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.1360447406768799 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.1645543575286865 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.1360447406768799 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360433101654053 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360433101654053 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.136043906211853 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.136043667793274 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.1360434293746948 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.2551321876562724e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.164554476737976 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645547151565552 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.136043906211853 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.1360450983047485 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.1360450983047485 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360446214675903 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360443830490112 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634706543693028e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.1225718544192205e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133592978585511e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360435485839844 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360445022583008 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.136044979095459 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.1645543575286865 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360434293746948 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360454559326172 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.1360453367233276 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_wide.csv new file mode 100644 index 0000000..d382154 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_2/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360454559326172,-6.0142632719362155e-05,1.1645541191101074,1.3022217970615202e-08,1.136043906211853,5.990688077872619e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.164554238319397,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360433101654053,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.1645541191101074,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360431909561157,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360450983047485,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.1360435485839844,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.0459883621224435e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360433101654053,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360445022583008,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043906211853,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360431909561157,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.1360450983047485,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.136045217514038,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.2619947515067906e-07,1.1360431909561157,6.0513350035762414e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.1360453367233276,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645545959472656,1.943962644190833e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.3958349465734727e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512657542614761e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360454559326172,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360433101654053,6.118379678810015e-05 +steady,target,54,21.6,1.1360453367233276,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.455101650866709e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360430717468262,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360441446304321,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360431909561157,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360431909561157,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.164554476737976,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.136045217514038,-6.115892756497487e-05,1.1645547151565552,-4.228221825997025e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.136044979095459,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.6995057440854e-08,1.1360431909561157,6.035815385985188e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8659979161839146e-07,1.1360431909561157,6.043549728929065e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.1645545959472656,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.1360447406768799,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.1645543575286865,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.1360447406768799,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360433101654053,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360433101654053,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.136043906211853,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.136043667793274,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.1360434293746948,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.2551321876562724e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.164554476737976,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645547151565552,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.136043906211853,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.1360450983047485,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.1360450983047485,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360446214675903,6.093038246035576e-05 +steady,target,137,54.8,1.1360443830490112,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634706543693028e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.1225718544192205e-07,1.1360454559326172,6.133592978585511e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360435485839844,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360445022583008,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.136044979095459,-6.112091068644077e-05,1.1645543575286865,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360434293746948,6.049521834938787e-05 +steady,target,149,59.6,1.1360454559326172,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.1360453367233276,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_dtw_convergence.csv new file mode 100644 index 0000000..714c4fc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.9550409907017685,0,0.9869354128837585,0.9835929547257062,0.7891701658566793,0.9999795027105982,0.9869450767834981,0.9836228312503711 +steady,sr,90,36.0,30,0.955023247378258,1,0.9868933121363322,0.9836089475235591,0.7891245047251383,0.9999941329369344,0.9868994275728862,0.9836191593746965 +steady,sr,120,48.0,30,0.9550269563249758,-2,0.9868999004364014,0.9836142036743695,0.7891289571921031,0.9999982649290045,0.9869023720423381,0.983618039675639 +steady,sr,150,60.0,30,0.9550295795494813,0,0.9869053800900777,0.9836156594387527,0.7891333301862081,0.9999991970269616,0.9869068821271261,0.9836170284277614 +steady,sr,180,72.0,30,0.9550214176581148,-20,0.9868903954823812,0.983615566768761,0.7891178766886393,0.9999976935040668,0.9868895173072815,0.9836174561975591 +steady,sr,200,80.0,30,0.9550287728501439,0,0.9869052410125733,0.9836166929584579,0.7891331136226654,0.999995442939324,0.9869061509768168,0.9836159955910262 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_long.csv new file mode 100644 index 0000000..eed3b54 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.1228212118148804 +steady,sr,0,0.0,velocity,upper_uy,-0.016614682972431183 +steady,sr,0,0.0,velocity,center_ux,0.953492283821106 +steady,sr,0,0.0,velocity,center_uy,-0.00011907452426385134 +steady,sr,0,0.0,velocity,lower_ux,1.1226993799209595 +steady,sr,0,0.0,velocity,lower_uy,0.016317425295710564 +steady,sr,1,0.4,velocity,upper_ux,1.1229294538497925 +steady,sr,1,0.4,velocity,upper_uy,-0.01658819615840912 +steady,sr,1,0.4,velocity,center_ux,0.9535909295082092 +steady,sr,1,0.4,velocity,center_uy,-6.993954593781382e-05 +steady,sr,1,0.4,velocity,lower_ux,1.1227761507034302 +steady,sr,1,0.4,velocity,lower_uy,0.016342677175998688 +steady,sr,2,0.8,velocity,upper_ux,1.1232283115386963 +steady,sr,2,0.8,velocity,upper_uy,-0.01657157950103283 +steady,sr,2,0.8,velocity,center_ux,0.9538888335227966 +steady,sr,2,0.8,velocity,center_uy,-3.260914672864601e-05 +steady,sr,2,0.8,velocity,lower_ux,1.1230571269989014 +steady,sr,2,0.8,velocity,lower_uy,0.016363881528377533 +steady,sr,3,1.2,velocity,upper_ux,1.1235041618347168 +steady,sr,3,1.2,velocity,upper_uy,-0.016547029837965965 +steady,sr,3,1.2,velocity,center_ux,0.9541618227958679 +steady,sr,3,1.2,velocity,center_uy,1.0943605957436375e-05 +steady,sr,3,1.2,velocity,lower_ux,1.123326063156128 +steady,sr,3,1.2,velocity,lower_uy,0.01639789529144764 +steady,sr,4,1.6,velocity,upper_ux,1.123162865638733 +steady,sr,4,1.6,velocity,upper_uy,-0.016528405249118805 +steady,sr,4,1.6,velocity,center_ux,0.9538171887397766 +steady,sr,4,1.6,velocity,center_uy,3.912028478225693e-05 +steady,sr,4,1.6,velocity,lower_ux,1.1229884624481201 +steady,sr,4,1.6,velocity,lower_uy,0.016418149694800377 +steady,sr,5,2.0,velocity,upper_ux,1.122850775718689 +steady,sr,5,2.0,velocity,upper_uy,-0.01649750955402851 +steady,sr,5,2.0,velocity,center_ux,0.953502893447876 +steady,sr,5,2.0,velocity,center_uy,6.975095311645418e-05 +steady,sr,5,2.0,velocity,lower_ux,1.1226897239685059 +steady,sr,5,2.0,velocity,lower_uy,0.016440359875559807 +steady,sr,6,2.4,velocity,upper_ux,1.1228502988815308 +steady,sr,6,2.4,velocity,upper_uy,-0.01647631824016571 +steady,sr,6,2.4,velocity,center_ux,0.953514575958252 +steady,sr,6,2.4,velocity,center_uy,8.578153210692108e-05 +steady,sr,6,2.4,velocity,lower_ux,1.1227118968963623 +steady,sr,6,2.4,velocity,lower_uy,0.01645328477025032 +steady,sr,7,2.8,velocity,upper_ux,1.1229631900787354 +steady,sr,7,2.8,velocity,upper_uy,-0.016455724835395813 +steady,sr,7,2.8,velocity,center_ux,0.9536508917808533 +steady,sr,7,2.8,velocity,center_uy,9.965488425223157e-05 +steady,sr,7,2.8,velocity,lower_ux,1.122853398323059 +steady,sr,7,2.8,velocity,lower_uy,0.016471201553940773 +steady,sr,8,3.2,velocity,upper_ux,1.1233668327331543 +steady,sr,8,3.2,velocity,upper_uy,-0.01644628681242466 +steady,sr,8,3.2,velocity,center_ux,0.9540773630142212 +steady,sr,8,3.2,velocity,center_uy,0.00010301096335751936 +steady,sr,8,3.2,velocity,lower_ux,1.1232891082763672 +steady,sr,8,3.2,velocity,lower_uy,0.01648646779358387 +steady,sr,9,3.6,velocity,upper_ux,1.12334406375885 +steady,sr,9,3.6,velocity,upper_uy,-0.01643933355808258 +steady,sr,9,3.6,velocity,center_ux,0.954069972038269 +steady,sr,9,3.6,velocity,center_uy,9.975551802199334e-05 +steady,sr,9,3.6,velocity,lower_ux,1.1232991218566895 +steady,sr,9,3.6,velocity,lower_uy,0.0164982657879591 +steady,sr,10,4.0,velocity,upper_ux,1.1228625774383545 +steady,sr,10,4.0,velocity,upper_uy,-0.016431588679552078 +steady,sr,10,4.0,velocity,center_ux,0.9535965919494629 +steady,sr,10,4.0,velocity,center_uy,9.098640293814242e-05 +steady,sr,10,4.0,velocity,lower_ux,1.122859001159668 +steady,sr,10,4.0,velocity,lower_uy,0.01650288887321949 +steady,sr,11,4.4,velocity,upper_ux,1.1227471828460693 +steady,sr,11,4.4,velocity,upper_uy,-0.016428807750344276 +steady,sr,11,4.4,velocity,center_ux,0.9534966945648193 +steady,sr,11,4.4,velocity,center_uy,7.367130456259474e-05 +steady,sr,11,4.4,velocity,lower_ux,1.1227794885635376 +steady,sr,11,4.4,velocity,lower_uy,0.01649836264550686 +steady,sr,12,4.8,velocity,upper_ux,1.1227858066558838 +steady,sr,12,4.8,velocity,upper_uy,-0.01642720028758049 +steady,sr,12,4.8,velocity,center_ux,0.9535564184188843 +steady,sr,12,4.8,velocity,center_uy,5.665430217050016e-05 +steady,sr,12,4.8,velocity,lower_ux,1.1228528022766113 +steady,sr,12,4.8,velocity,lower_uy,0.01649635098874569 +steady,sr,13,5.2,velocity,upper_ux,1.1230190992355347 +steady,sr,13,5.2,velocity,upper_uy,-0.016437890008091927 +steady,sr,13,5.2,velocity,center_ux,0.9538152813911438 +steady,sr,13,5.2,velocity,center_uy,3.118006861768663e-05 +steady,sr,13,5.2,velocity,lower_ux,1.123115062713623 +steady,sr,13,5.2,velocity,lower_uy,0.016489464789628983 +steady,sr,14,5.6,velocity,upper_ux,1.1233224868774414 +steady,sr,14,5.6,velocity,upper_uy,-0.016447639092803 +steady,sr,14,5.6,velocity,center_ux,0.9541307091712952 +steady,sr,14,5.6,velocity,center_uy,1.0197292795055546e-05 +steady,sr,14,5.6,velocity,lower_ux,1.1234396696090698 +steady,sr,14,5.6,velocity,lower_uy,0.016487540677189827 +steady,sr,15,6.0,velocity,upper_ux,1.123045802116394 +steady,sr,15,6.0,velocity,upper_uy,-0.01646234653890133 +steady,sr,15,6.0,velocity,center_ux,0.9538581371307373 +steady,sr,15,6.0,velocity,center_uy,-1.648523539188318e-05 +steady,sr,15,6.0,velocity,lower_ux,1.123181700706482 +steady,sr,15,6.0,velocity,lower_uy,0.016475999727845192 +steady,sr,16,6.4,velocity,upper_ux,1.1227132081985474 +steady,sr,16,6.4,velocity,upper_uy,-0.016468072310090065 +steady,sr,16,6.4,velocity,center_ux,0.9535189867019653 +steady,sr,16,6.4,velocity,center_uy,-3.7680118111893535e-05 +steady,sr,16,6.4,velocity,lower_ux,1.1228572130203247 +steady,sr,16,6.4,velocity,lower_uy,0.01646164059638977 +steady,sr,17,6.8,velocity,upper_ux,1.12269127368927 +steady,sr,17,6.8,velocity,upper_uy,-0.016477057710289955 +steady,sr,17,6.8,velocity,center_ux,0.9534975290298462 +steady,sr,17,6.8,velocity,center_uy,-5.916224836255424e-05 +steady,sr,17,6.8,velocity,lower_ux,1.1228384971618652 +steady,sr,17,6.8,velocity,lower_uy,0.016443956643342972 +steady,sr,18,7.2,velocity,upper_ux,1.1227867603302002 +steady,sr,18,7.2,velocity,upper_uy,-0.016488056629896164 +steady,sr,18,7.2,velocity,center_ux,0.9536026120185852 +steady,sr,18,7.2,velocity,center_uy,-7.673995423829183e-05 +steady,sr,18,7.2,velocity,lower_ux,1.1229342222213745 +steady,sr,18,7.2,velocity,lower_uy,0.016430111601948738 +steady,sr,19,7.6,velocity,upper_ux,1.1231898069381714 +steady,sr,19,7.6,velocity,upper_uy,-0.016500309109687805 +steady,sr,19,7.6,velocity,center_ux,0.9540084004402161 +steady,sr,19,7.6,velocity,center_uy,-8.96131168701686e-05 +steady,sr,19,7.6,velocity,lower_ux,1.1233303546905518 +steady,sr,19,7.6,velocity,lower_uy,0.016421601176261902 +steady,sr,20,8.0,velocity,upper_ux,1.1232577562332153 +steady,sr,20,8.0,velocity,upper_uy,-0.016515936702489853 +steady,sr,20,8.0,velocity,center_ux,0.9540702104568481 +steady,sr,20,8.0,velocity,center_uy,-0.00010162652324652299 +steady,sr,20,8.0,velocity,lower_ux,1.1233831644058228 +steady,sr,20,8.0,velocity,lower_uy,0.01641244813799858 +steady,sr,21,8.4,velocity,upper_ux,1.1228399276733398 +steady,sr,21,8.4,velocity,upper_uy,-0.01652040332555771 +steady,sr,21,8.4,velocity,center_ux,0.9536337852478027 +steady,sr,21,8.4,velocity,center_uy,-0.00010440921323606744 +steady,sr,21,8.4,velocity,lower_ux,1.122948408126831 +steady,sr,21,8.4,velocity,lower_uy,0.01640576310455799 +steady,sr,22,8.8,velocity,upper_ux,1.1227248907089233 +steady,sr,22,8.8,velocity,upper_uy,-0.01652730442583561 +steady,sr,22,8.8,velocity,center_ux,0.953500509262085 +steady,sr,22,8.8,velocity,center_uy,-0.00010972845484502614 +steady,sr,22,8.8,velocity,lower_ux,1.1228119134902954 +steady,sr,22,8.8,velocity,lower_uy,0.016392536461353302 +steady,sr,23,9.2,velocity,upper_ux,1.1227574348449707 +steady,sr,23,9.2,velocity,upper_uy,-0.016525646671652794 +steady,sr,23,9.2,velocity,center_ux,0.9535276293754578 +steady,sr,23,9.2,velocity,center_uy,-0.00010351095261285082 +steady,sr,23,9.2,velocity,lower_ux,1.1228257417678833 +steady,sr,23,9.2,velocity,lower_uy,0.01638965681195259 +steady,sr,24,9.6,velocity,upper_ux,1.1229740381240845 +steady,sr,24,9.6,velocity,upper_uy,-0.016532309353351593 +steady,sr,24,9.6,velocity,center_ux,0.9537407159805298 +steady,sr,24,9.6,velocity,center_uy,-0.00010096525511471555 +steady,sr,24,9.6,velocity,lower_ux,1.1230183839797974 +steady,sr,24,9.6,velocity,lower_uy,0.016385184600949287 +steady,sr,25,10.0,velocity,upper_ux,1.1233280897140503 +steady,sr,25,10.0,velocity,upper_uy,-0.016532713547348976 +steady,sr,25,10.0,velocity,center_ux,0.95409095287323 +steady,sr,25,10.0,velocity,center_uy,-8.858693763613701e-05 +steady,sr,25,10.0,velocity,lower_ux,1.1233545541763306 +steady,sr,25,10.0,velocity,lower_uy,0.016392789781093597 +steady,sr,26,10.4,velocity,upper_ux,1.1231402158737183 +steady,sr,26,10.4,velocity,upper_uy,-0.016534369438886642 +steady,sr,26,10.4,velocity,center_ux,0.9538887143135071 +steady,sr,26,10.4,velocity,center_uy,-7.983087562024593e-05 +steady,sr,26,10.4,velocity,lower_ux,1.1231449842453003 +steady,sr,26,10.4,velocity,lower_uy,0.01639382913708687 +steady,sr,27,10.8,velocity,upper_ux,1.1228070259094238 +steady,sr,27,10.8,velocity,upper_uy,-0.01652502827346325 +steady,sr,27,10.8,velocity,center_ux,0.9535347819328308 +steady,sr,27,10.8,velocity,center_uy,-6.496962305391207e-05 +steady,sr,27,10.8,velocity,lower_ux,1.1227967739105225 +steady,sr,27,10.8,velocity,lower_uy,0.016396038234233856 +steady,sr,28,11.2,velocity,upper_ux,1.1227680444717407 +steady,sr,28,11.2,velocity,upper_uy,-0.01651531457901001 +steady,sr,28,11.2,velocity,center_ux,0.9534869194030762 +steady,sr,28,11.2,velocity,center_uy,-5.0803617341443896e-05 +steady,sr,28,11.2,velocity,lower_ux,1.1227413415908813 +steady,sr,28,11.2,velocity,lower_uy,0.016397196799516678 +steady,sr,29,11.6,velocity,upper_ux,1.1228374242782593 +steady,sr,29,11.6,velocity,upper_uy,-0.016507253050804138 +steady,sr,29,11.6,velocity,center_ux,0.9535596966743469 +steady,sr,29,11.6,velocity,center_uy,-3.69342124031391e-05 +steady,sr,29,11.6,velocity,lower_ux,1.1228015422821045 +steady,sr,29,11.6,velocity,lower_uy,0.01640145666897297 +steady,sr,30,12.0,velocity,upper_ux,1.1232134103775024 +steady,sr,30,12.0,velocity,upper_uy,-0.016499683260917664 +steady,sr,30,12.0,velocity,center_ux,0.9539396166801453 +steady,sr,30,12.0,velocity,center_uy,-2.0839617718593217e-05 +steady,sr,30,12.0,velocity,lower_ux,1.1231693029403687 +steady,sr,30,12.0,velocity,lower_uy,0.016413087025284767 +steady,sr,31,12.4,velocity,upper_ux,1.123333215713501 +steady,sr,31,12.4,velocity,upper_uy,-0.01649744249880314 +steady,sr,31,12.4,velocity,center_ux,0.9540565013885498 +steady,sr,31,12.4,velocity,center_uy,-1.0923703484877478e-05 +steady,sr,31,12.4,velocity,lower_ux,1.1232850551605225 +steady,sr,31,12.4,velocity,lower_uy,0.016421547159552574 +steady,sr,32,12.8,velocity,upper_ux,1.1229530572891235 +steady,sr,32,12.8,velocity,upper_uy,-0.016485927626490593 +steady,sr,32,12.8,velocity,center_ux,0.9536712765693665 +steady,sr,32,12.8,velocity,center_uy,3.7429322219395544e-06 +steady,sr,32,12.8,velocity,lower_ux,1.1229095458984375 +steady,sr,32,12.8,velocity,lower_uy,0.016432974487543106 +steady,sr,33,13.2,velocity,upper_ux,1.122796654701233 +steady,sr,33,13.2,velocity,upper_uy,-0.016478970646858215 +steady,sr,33,13.2,velocity,center_ux,0.9535070657730103 +steady,sr,33,13.2,velocity,center_uy,8.919075298763346e-06 +steady,sr,33,13.2,velocity,lower_ux,1.1227521896362305 +steady,sr,33,13.2,velocity,lower_uy,0.01643376797437668 +steady,sr,34,13.6,velocity,upper_ux,1.122785210609436 +steady,sr,34,13.6,velocity,upper_uy,-0.016465846449136734 +steady,sr,34,13.6,velocity,center_ux,0.9535031318664551 +steady,sr,34,13.6,velocity,center_uy,1.9559684005798772e-05 +steady,sr,34,13.6,velocity,lower_ux,1.1227506399154663 +steady,sr,34,13.6,velocity,lower_uy,0.01644175313413143 +steady,sr,35,14.0,velocity,upper_ux,1.122950792312622 +steady,sr,35,14.0,velocity,upper_uy,-0.01646381802856922 +steady,sr,35,14.0,velocity,center_ux,0.9536776542663574 +steady,sr,35,14.0,velocity,center_uy,2.0012157619930804e-05 +steady,sr,35,14.0,velocity,lower_ux,1.1229182481765747 +steady,sr,35,14.0,velocity,lower_uy,0.01644439622759819 +steady,sr,36,14.4,velocity,upper_ux,1.1233086585998535 +steady,sr,36,14.4,velocity,upper_uy,-0.016459321603178978 +steady,sr,36,14.4,velocity,center_ux,0.954048216342926 +steady,sr,36,14.4,velocity,center_uy,2.483472962921951e-05 +steady,sr,36,14.4,velocity,lower_ux,1.1232889890670776 +steady,sr,36,14.4,velocity,lower_uy,0.01645534485578537 +steady,sr,37,14.8,velocity,upper_ux,1.1231709718704224 +steady,sr,37,14.8,velocity,upper_uy,-0.016460135579109192 +steady,sr,37,14.8,velocity,center_ux,0.9539122581481934 +steady,sr,37,14.8,velocity,center_uy,2.271496305183973e-05 +steady,sr,37,14.8,velocity,lower_ux,1.123161792755127 +steady,sr,37,14.8,velocity,lower_uy,0.016458861529827118 +steady,sr,38,15.2,velocity,upper_ux,1.1228208541870117 +steady,sr,38,15.2,velocity,upper_uy,-0.016453253105282784 +steady,sr,38,15.2,velocity,center_ux,0.9535588026046753 +steady,sr,38,15.2,velocity,center_uy,2.219922680524178e-05 +steady,sr,38,15.2,velocity,lower_ux,1.1228216886520386 +steady,sr,38,15.2,velocity,lower_uy,0.01645950973033905 +steady,sr,39,15.6,velocity,upper_ux,1.122746467590332 +steady,sr,39,15.6,velocity,upper_uy,-0.01644815132021904 +steady,sr,39,15.6,velocity,center_ux,0.953484058380127 +steady,sr,39,15.6,velocity,center_uy,1.8768296285998076e-05 +steady,sr,39,15.6,velocity,lower_ux,1.1227582693099976 +steady,sr,39,15.6,velocity,lower_uy,0.016456570476293564 +steady,sr,40,16.0,velocity,upper_ux,1.1227773427963257 +steady,sr,40,16.0,velocity,upper_uy,-0.016446880996227264 +steady,sr,40,16.0,velocity,center_ux,0.9535261392593384 +steady,sr,40,16.0,velocity,center_uy,1.3465530173562001e-05 +steady,sr,40,16.0,velocity,lower_ux,1.1227991580963135 +steady,sr,40,16.0,velocity,lower_uy,0.016453908756375313 +steady,sr,41,16.4,velocity,upper_ux,1.123108983039856 +steady,sr,41,16.4,velocity,upper_uy,-0.016447575762867928 +steady,sr,41,16.4,velocity,center_ux,0.9538718461990356 +steady,sr,41,16.4,velocity,center_uy,9.456242878513876e-06 +steady,sr,41,16.4,velocity,lower_ux,1.1231436729431152 +steady,sr,41,16.4,velocity,lower_uy,0.016455618664622307 +steady,sr,42,16.8,velocity,upper_ux,1.1232750415802002 +steady,sr,42,16.8,velocity,upper_uy,-0.016454774886369705 +steady,sr,42,16.8,velocity,center_ux,0.9540422558784485 +steady,sr,42,16.8,velocity,center_uy,8.889468290362856e-07 +steady,sr,42,16.8,velocity,lower_ux,1.1233162879943848 +steady,sr,42,16.8,velocity,lower_uy,0.01645524799823761 +steady,sr,43,17.2,velocity,upper_ux,1.1229442358016968 +steady,sr,43,17.2,velocity,upper_uy,-0.016455918550491333 +steady,sr,43,17.2,velocity,center_ux,0.9537075161933899 +steady,sr,43,17.2,velocity,center_uy,-4.0230397644336335e-06 +steady,sr,43,17.2,velocity,lower_ux,1.1229922771453857 +steady,sr,43,17.2,velocity,lower_uy,0.016455484554171562 +steady,sr,44,17.6,velocity,upper_ux,1.1227631568908691 +steady,sr,44,17.6,velocity,upper_uy,-0.016458449885249138 +steady,sr,44,17.6,velocity,center_ux,0.9535212516784668 +steady,sr,44,17.6,velocity,center_uy,-1.3392016626312397e-05 +steady,sr,44,17.6,velocity,lower_ux,1.1228121519088745 +steady,sr,44,17.6,velocity,lower_uy,0.016447052359580994 +steady,sr,45,18.0,velocity,upper_ux,1.122727394104004 +steady,sr,45,18.0,velocity,upper_uy,-0.016457321122288704 +steady,sr,45,18.0,velocity,center_ux,0.9534881711006165 +steady,sr,45,18.0,velocity,center_uy,-1.8256465409649536e-05 +steady,sr,45,18.0,velocity,lower_ux,1.1227818727493286 +steady,sr,45,18.0,velocity,lower_uy,0.016442937776446342 +steady,sr,46,18.4,velocity,upper_ux,1.1228564977645874 +steady,sr,46,18.4,velocity,upper_uy,-0.01646244525909424 +steady,sr,46,18.4,velocity,center_ux,0.9536238312721252 +steady,sr,46,18.4,velocity,center_uy,-2.582744309620466e-05 +steady,sr,46,18.4,velocity,lower_ux,1.1229091882705688 +steady,sr,46,18.4,velocity,lower_uy,0.01643737405538559 +steady,sr,47,18.8,velocity,upper_ux,1.1232305765151978 +steady,sr,47,18.8,velocity,upper_uy,-0.016468340530991554 +steady,sr,47,18.8,velocity,center_ux,0.9540026187896729 +steady,sr,47,18.8,velocity,center_uy,-2.98556151392404e-05 +steady,sr,47,18.8,velocity,lower_ux,1.1232821941375732 +steady,sr,47,18.8,velocity,lower_uy,0.01643809676170349 +steady,sr,48,19.2,velocity,upper_ux,1.123164415359497 +steady,sr,48,19.2,velocity,upper_uy,-0.016473790630698204 +steady,sr,48,19.2,velocity,center_ux,0.9539298415184021 +steady,sr,48,19.2,velocity,center_uy,-3.3748146961443126e-05 +steady,sr,48,19.2,velocity,lower_ux,1.1232091188430786 +steady,sr,48,19.2,velocity,lower_uy,0.016436822712421417 +steady,sr,49,19.6,velocity,upper_ux,1.1228259801864624 +steady,sr,49,19.6,velocity,upper_uy,-0.016474826261401176 +steady,sr,49,19.6,velocity,center_ux,0.9535854458808899 +steady,sr,49,19.6,velocity,center_uy,-3.708167059812695e-05 +steady,sr,49,19.6,velocity,lower_ux,1.1228712797164917 +steady,sr,49,19.6,velocity,lower_uy,0.016430776566267014 +steady,sr,50,20.0,velocity,upper_ux,1.1227415800094604 +steady,sr,50,20.0,velocity,upper_uy,-0.016471827402710915 +steady,sr,50,20.0,velocity,center_ux,0.9534914493560791 +steady,sr,50,20.0,velocity,center_uy,-3.704266782733612e-05 +steady,sr,50,20.0,velocity,lower_ux,1.1227772235870361 +steady,sr,50,20.0,velocity,lower_uy,0.016426129266619682 +steady,sr,51,20.4,velocity,upper_ux,1.1227489709854126 +steady,sr,51,20.4,velocity,upper_uy,-0.016473393887281418 +steady,sr,51,20.4,velocity,center_ux,0.9535007476806641 +steady,sr,51,20.4,velocity,center_uy,-3.903598917531781e-05 +steady,sr,51,20.4,velocity,lower_ux,1.1227809190750122 +steady,sr,51,20.4,velocity,lower_uy,0.016420278698205948 +steady,sr,52,20.8,velocity,upper_ux,1.1230522394180298 +steady,sr,52,20.8,velocity,upper_uy,-0.01647292450070381 +steady,sr,52,20.8,velocity,center_ux,0.9538089036941528 +steady,sr,52,20.8,velocity,center_uy,-3.463856774033047e-05 +steady,sr,52,20.8,velocity,lower_ux,1.1230762004852295 +steady,sr,52,20.8,velocity,lower_uy,0.016423484310507774 +steady,sr,53,21.2,velocity,upper_ux,1.123268961906433 +steady,sr,53,21.2,velocity,upper_uy,-0.016479430720210075 +steady,sr,53,21.2,velocity,center_ux,0.9540244936943054 +steady,sr,53,21.2,velocity,center_uy,-3.510925671434961e-05 +steady,sr,53,21.2,velocity,lower_ux,1.1232852935791016 +steady,sr,53,21.2,velocity,lower_uy,0.01642339676618576 +steady,sr,54,21.6,velocity,upper_ux,1.122997760772705 +steady,sr,54,21.6,velocity,upper_uy,-0.016476918011903763 +steady,sr,54,21.6,velocity,center_ux,0.9537468552589417 +steady,sr,54,21.6,velocity,center_uy,-2.8363730962155387e-05 +steady,sr,54,21.6,velocity,lower_ux,1.1230086088180542 +steady,sr,54,21.6,velocity,lower_uy,0.01642851158976555 +steady,sr,55,22.0,velocity,upper_ux,1.1228026151657104 +steady,sr,55,22.0,velocity,upper_uy,-0.016476213932037354 +steady,sr,55,22.0,velocity,center_ux,0.953539252281189 +steady,sr,55,22.0,velocity,center_uy,-2.7192763809580356e-05 +steady,sr,55,22.0,velocity,lower_ux,1.1228052377700806 +steady,sr,55,22.0,velocity,lower_uy,0.016424475237727165 +steady,sr,56,22.4,velocity,upper_ux,1.122749924659729 +steady,sr,56,22.4,velocity,upper_uy,-0.016469178721308708 +steady,sr,56,22.4,velocity,center_ux,0.9534832835197449 +steady,sr,56,22.4,velocity,center_uy,-1.9715034795808606e-05 +steady,sr,56,22.4,velocity,lower_ux,1.1227474212646484 +steady,sr,56,22.4,velocity,lower_uy,0.016426291316747665 +steady,sr,57,22.8,velocity,upper_ux,1.1228410005569458 +steady,sr,57,22.8,velocity,upper_uy,-0.01646849326789379 +steady,sr,57,22.8,velocity,center_ux,0.9535778760910034 +steady,sr,57,22.8,velocity,center_uy,-1.7023925465764478e-05 +steady,sr,57,22.8,velocity,lower_ux,1.1228346824645996 +steady,sr,57,22.8,velocity,lower_uy,0.016425928100943565 +steady,sr,58,23.2,velocity,upper_ux,1.1232151985168457 +steady,sr,58,23.2,velocity,upper_uy,-0.016467347741127014 +steady,sr,58,23.2,velocity,center_ux,0.9539581537246704 +steady,sr,58,23.2,velocity,center_uy,-1.0991783710778691e-05 +steady,sr,58,23.2,velocity,lower_ux,1.1232069730758667 +steady,sr,58,23.2,velocity,lower_uy,0.01643228344619274 +steady,sr,59,23.6,velocity,upper_ux,1.1232067346572876 +steady,sr,59,23.6,velocity,upper_uy,-0.016467293724417686 +steady,sr,59,23.6,velocity,center_ux,0.9539439678192139 +steady,sr,59,23.6,velocity,center_uy,-6.921839030837873e-06 +steady,sr,59,23.6,velocity,lower_ux,1.1231930255889893 +steady,sr,59,23.6,velocity,lower_uy,0.016437290236353874 +steady,sr,60,24.0,velocity,upper_ux,1.1228837966918945 +steady,sr,60,24.0,velocity,upper_uy,-0.01646364852786064 +steady,sr,60,24.0,velocity,center_ux,0.9536144137382507 +steady,sr,60,24.0,velocity,center_uy,-3.7329039059841307e-06 +steady,sr,60,24.0,velocity,lower_ux,1.1228723526000977 +steady,sr,60,24.0,velocity,lower_uy,0.016437629237771034 +steady,sr,61,24.4,velocity,upper_ux,1.1227762699127197 +steady,sr,61,24.4,velocity,upper_uy,-0.016456270590424538 +steady,sr,61,24.4,velocity,center_ux,0.9535039663314819 +steady,sr,61,24.4,velocity,center_uy,9.316457862951211e-07 +steady,sr,61,24.4,velocity,lower_ux,1.1227645874023438 +steady,sr,61,24.4,velocity,lower_uy,0.016438359394669533 +steady,sr,62,24.8,velocity,upper_ux,1.1227567195892334 +steady,sr,62,24.8,velocity,upper_uy,-0.0164534542709589 +steady,sr,62,24.8,velocity,center_ux,0.9534869194030762 +steady,sr,62,24.8,velocity,center_uy,1.856873950600857e-06 +steady,sr,62,24.8,velocity,lower_ux,1.122745156288147 +steady,sr,62,24.8,velocity,lower_uy,0.016436435282230377 +steady,sr,63,25.2,velocity,upper_ux,1.1230113506317139 +steady,sr,63,25.2,velocity,upper_uy,-0.016449717804789543 +steady,sr,63,25.2,velocity,center_ux,0.9537490606307983 +steady,sr,63,25.2,velocity,center_uy,6.3669322116766125e-06 +steady,sr,63,25.2,velocity,lower_ux,1.1230030059814453 +steady,sr,63,25.2,velocity,lower_uy,0.01644177734851837 +steady,sr,64,25.6,velocity,upper_ux,1.123258352279663 +steady,sr,64,25.6,velocity,upper_uy,-0.016454048454761505 +steady,sr,64,25.6,velocity,center_ux,0.9540023803710938 +steady,sr,64,25.6,velocity,center_uy,4.955559234076645e-06 +steady,sr,64,25.6,velocity,lower_ux,1.1232537031173706 +steady,sr,64,25.6,velocity,lower_uy,0.016444262117147446 +steady,sr,65,26.0,velocity,upper_ux,1.1230385303497314 +steady,sr,65,26.0,velocity,upper_uy,-0.016451535746455193 +steady,sr,65,26.0,velocity,center_ux,0.9537786841392517 +steady,sr,65,26.0,velocity,center_uy,7.818078302079812e-06 +steady,sr,65,26.0,velocity,lower_ux,1.1230355501174927 +steady,sr,65,26.0,velocity,lower_uy,0.016450075432658195 +steady,sr,66,26.4,velocity,upper_ux,1.1228268146514893 +steady,sr,66,26.4,velocity,upper_uy,-0.016450755298137665 +steady,sr,66,26.4,velocity,center_ux,0.9535603523254395 +steady,sr,66,26.4,velocity,center_uy,4.648694357456407e-06 +steady,sr,66,26.4,velocity,lower_ux,1.1228276491165161 +steady,sr,66,26.4,velocity,lower_uy,0.016446847468614578 +steady,sr,67,26.8,velocity,upper_ux,1.1227476596832275 +steady,sr,67,26.8,velocity,upper_uy,-0.016445817425847054 +steady,sr,67,26.8,velocity,center_ux,0.953484296798706 +steady,sr,67,26.8,velocity,center_uy,5.340644293028163e-06 +steady,sr,67,26.8,velocity,lower_ux,1.1227535009384155 +steady,sr,67,26.8,velocity,lower_uy,0.0164464320987463 +steady,sr,68,27.2,velocity,upper_ux,1.1227998733520508 +steady,sr,68,27.2,velocity,upper_uy,-0.01644548401236534 +steady,sr,68,27.2,velocity,center_ux,0.9535426497459412 +steady,sr,68,27.2,velocity,center_uy,2.9678099053853657e-06 +steady,sr,68,27.2,velocity,lower_ux,1.1228066682815552 +steady,sr,68,27.2,velocity,lower_uy,0.016444401815533638 +steady,sr,69,27.6,velocity,upper_ux,1.1231590509414673 +steady,sr,69,27.6,velocity,upper_uy,-0.016447393223643303 +steady,sr,69,27.6,velocity,center_ux,0.9539100527763367 +steady,sr,69,27.6,velocity,center_uy,1.8385483144811587e-06 +steady,sr,69,27.6,velocity,lower_ux,1.1231694221496582 +steady,sr,69,27.6,velocity,lower_uy,0.016446812078356743 +steady,sr,70,28.0,velocity,upper_ux,1.1231991052627563 +steady,sr,70,28.0,velocity,upper_uy,-0.016450216993689537 +steady,sr,70,28.0,velocity,center_ux,0.9539514780044556 +steady,sr,70,28.0,velocity,center_uy,3.1083777685125824e-07 +steady,sr,70,28.0,velocity,lower_ux,1.123212456703186 +steady,sr,70,28.0,velocity,lower_uy,0.016449514776468277 +steady,sr,71,28.4,velocity,upper_ux,1.1229002475738525 +steady,sr,71,28.4,velocity,upper_uy,-0.016451183706521988 +steady,sr,71,28.4,velocity,center_ux,0.9536455273628235 +steady,sr,71,28.4,velocity,center_uy,-2.6577640710456762e-06 +steady,sr,71,28.4,velocity,lower_ux,1.1229143142700195 +steady,sr,71,28.4,velocity,lower_uy,0.016446959227323532 +steady,sr,72,28.8,velocity,upper_ux,1.122779369354248 +steady,sr,72,28.8,velocity,upper_uy,-0.01644713617861271 +steady,sr,72,28.8,velocity,center_ux,0.9535211324691772 +steady,sr,72,28.8,velocity,center_uy,-2.9416230518108932e-06 +steady,sr,72,28.8,velocity,lower_ux,1.1227977275848389 +steady,sr,72,28.8,velocity,lower_uy,0.016444778069853783 +steady,sr,73,29.2,velocity,upper_ux,1.1227350234985352 +steady,sr,73,29.2,velocity,upper_uy,-0.01644756831228733 +steady,sr,73,29.2,velocity,center_ux,0.9534786939620972 +steady,sr,73,29.2,velocity,center_uy,-6.510192633868428e-06 +steady,sr,73,29.2,velocity,lower_ux,1.1227518320083618 +steady,sr,73,29.2,velocity,lower_uy,0.01643955521285534 +steady,sr,74,29.6,velocity,upper_ux,1.1229461431503296 +steady,sr,74,29.6,velocity,upper_uy,-0.016446877270936966 +steady,sr,74,29.6,velocity,center_ux,0.9536951184272766 +steady,sr,74,29.6,velocity,center_uy,-5.9368489928601775e-06 +steady,sr,74,29.6,velocity,lower_ux,1.1229621171951294 +steady,sr,74,29.6,velocity,lower_uy,0.01644102670252323 +steady,sr,75,30.0,velocity,upper_ux,1.1232236623764038 +steady,sr,75,30.0,velocity,upper_uy,-0.016452906653285027 +steady,sr,75,30.0,velocity,center_ux,0.9539770483970642 +steady,sr,75,30.0,velocity,center_uy,-9.130551006819587e-06 +steady,sr,75,30.0,velocity,lower_ux,1.1232413053512573 +steady,sr,75,30.0,velocity,lower_uy,0.016441648826003075 +steady,sr,76,30.4,velocity,upper_ux,1.1230597496032715 +steady,sr,76,30.4,velocity,upper_uy,-0.01645432785153389 +steady,sr,76,30.4,velocity,center_ux,0.9538108706474304 +steady,sr,76,30.4,velocity,center_uy,-8.792624612397049e-06 +steady,sr,76,30.4,velocity,lower_ux,1.1230762004852295 +steady,sr,76,30.4,velocity,lower_uy,0.016444912180304527 +steady,sr,77,30.8,velocity,upper_ux,1.1228443384170532 +steady,sr,77,30.8,velocity,upper_uy,-0.016454873606562614 +steady,sr,77,30.8,velocity,center_ux,0.953586220741272 +steady,sr,77,30.8,velocity,center_uy,-1.1203152098460123e-05 +steady,sr,77,30.8,velocity,lower_ux,1.122857928276062 +steady,sr,77,30.8,velocity,lower_uy,0.01644130051136017 +steady,sr,78,31.2,velocity,upper_ux,1.1227504014968872 +steady,sr,78,31.2,velocity,upper_uy,-0.0164528526365757 +steady,sr,78,31.2,velocity,center_ux,0.9534918069839478 +steady,sr,78,31.2,velocity,center_uy,-1.1665117199299857e-05 +steady,sr,78,31.2,velocity,lower_ux,1.1227667331695557 +steady,sr,78,31.2,velocity,lower_uy,0.016438229009509087 +steady,sr,79,31.6,velocity,upper_ux,1.1227701902389526 +steady,sr,79,31.6,velocity,upper_uy,-0.016451837494969368 +steady,sr,79,31.6,velocity,center_ux,0.9535149931907654 +steady,sr,79,31.6,velocity,center_uy,-1.1678993359964807e-05 +steady,sr,79,31.6,velocity,lower_ux,1.12278413772583 +steady,sr,79,31.6,velocity,lower_uy,0.016436627134680748 +steady,sr,80,32.0,velocity,upper_ux,1.1231145858764648 +steady,sr,80,32.0,velocity,upper_uy,-0.016454877331852913 +steady,sr,80,32.0,velocity,center_ux,0.9538632035255432 +steady,sr,80,32.0,velocity,center_uy,-1.2694500583165791e-05 +steady,sr,80,32.0,velocity,lower_ux,1.123125433921814 +steady,sr,80,32.0,velocity,lower_uy,0.01643674075603485 +steady,sr,81,32.4,velocity,upper_ux,1.1232043504714966 +steady,sr,81,32.4,velocity,upper_uy,-0.016456063836812973 +steady,sr,81,32.4,velocity,center_ux,0.9539512395858765 +steady,sr,81,32.4,velocity,center_uy,-1.0299659152224194e-05 +steady,sr,81,32.4,velocity,lower_ux,1.123212218284607 +steady,sr,81,32.4,velocity,lower_uy,0.01644109934568405 +steady,sr,82,32.8,velocity,upper_ux,1.1229352951049805 +steady,sr,82,32.8,velocity,upper_uy,-0.0164574533700943 +steady,sr,82,32.8,velocity,center_ux,0.9536772966384888 +steady,sr,82,32.8,velocity,center_uy,-1.1409741091483738e-05 +steady,sr,82,32.8,velocity,lower_ux,1.1229417324066162 +steady,sr,82,32.8,velocity,lower_uy,0.01643877662718296 +steady,sr,83,33.2,velocity,upper_ux,1.122807502746582 +steady,sr,83,33.2,velocity,upper_uy,-0.01645197533071041 +steady,sr,83,33.2,velocity,center_ux,0.9535408616065979 +steady,sr,83,33.2,velocity,center_uy,-7.607221505168127e-06 +steady,sr,83,33.2,velocity,lower_ux,1.1228119134902954 +steady,sr,83,33.2,velocity,lower_uy,0.01643878035247326 +steady,sr,84,33.6,velocity,upper_ux,1.1227405071258545 +steady,sr,84,33.6,velocity,upper_uy,-0.016451625153422356 +steady,sr,84,33.6,velocity,center_ux,0.9534745216369629 +steady,sr,84,33.6,velocity,center_uy,-8.668980626680423e-06 +steady,sr,84,33.6,velocity,lower_ux,1.1227428913116455 +steady,sr,84,33.6,velocity,lower_uy,0.016433974727988243 +steady,sr,85,34.0,velocity,upper_ux,1.1229069232940674 +steady,sr,85,34.0,velocity,upper_uy,-0.016448449343442917 +steady,sr,85,34.0,velocity,center_ux,0.9536486268043518 +steady,sr,85,34.0,velocity,center_uy,-4.3351942622393835e-06 +steady,sr,85,34.0,velocity,lower_ux,1.1229089498519897 +steady,sr,85,34.0,velocity,lower_uy,0.016437046229839325 +steady,sr,86,34.4,velocity,upper_ux,1.1232030391693115 +steady,sr,86,34.4,velocity,upper_uy,-0.016453184187412262 +steady,sr,86,34.4,velocity,center_ux,0.9539506435394287 +steady,sr,86,34.4,velocity,center_uy,-4.779830760526238e-06 +steady,sr,86,34.4,velocity,lower_ux,1.1232036352157593 +steady,sr,86,34.4,velocity,lower_uy,0.01643843948841095 +steady,sr,87,34.8,velocity,upper_ux,1.1230900287628174 +steady,sr,87,34.8,velocity,upper_uy,-0.01645294576883316 +steady,sr,87,34.8,velocity,center_ux,0.9538352489471436 +steady,sr,87,34.8,velocity,center_uy,-1.392426611346309e-06 +steady,sr,87,34.8,velocity,lower_ux,1.1230902671813965 +steady,sr,87,34.8,velocity,lower_uy,0.016443666070699692 +steady,sr,88,35.2,velocity,upper_ux,1.1228750944137573 +steady,sr,88,35.2,velocity,upper_uy,-0.016452591866254807 +steady,sr,88,35.2,velocity,center_ux,0.9536110758781433 +steady,sr,88,35.2,velocity,center_uy,-2.1835535335412715e-06 +steady,sr,88,35.2,velocity,lower_ux,1.1228759288787842 +steady,sr,88,35.2,velocity,lower_uy,0.01644199900329113 +steady,sr,89,35.6,velocity,upper_ux,1.1227691173553467 +steady,sr,89,35.6,velocity,upper_uy,-0.01644868403673172 +steady,sr,89,35.6,velocity,center_ux,0.9535048604011536 +steady,sr,89,35.6,velocity,center_uy,-1.7530489913042402e-06 +steady,sr,89,35.6,velocity,lower_ux,1.122769832611084 +steady,sr,89,35.6,velocity,lower_uy,0.01644052565097809 +steady,sr,90,36.0,velocity,upper_ux,1.1227595806121826 +steady,sr,90,36.0,velocity,upper_uy,-0.016446968540549278 +steady,sr,90,36.0,velocity,center_ux,0.9534968733787537 +steady,sr,90,36.0,velocity,center_uy,-2.778886027954286e-06 +steady,sr,90,36.0,velocity,lower_ux,1.122760534286499 +steady,sr,90,36.0,velocity,lower_uy,0.016439173370599747 +steady,sr,91,36.4,velocity,upper_ux,1.1230734586715698 +steady,sr,91,36.4,velocity,upper_uy,-0.0164487324655056 +steady,sr,91,36.4,velocity,center_ux,0.9538182616233826 +steady,sr,91,36.4,velocity,center_uy,-4.069282567797927e-06 +steady,sr,91,36.4,velocity,lower_ux,1.1230740547180176 +steady,sr,91,36.4,velocity,lower_uy,0.016439877450466156 +steady,sr,92,36.8,velocity,upper_ux,1.1232022047042847 +steady,sr,92,36.8,velocity,upper_uy,-0.016450587660074234 +steady,sr,92,36.8,velocity,center_ux,0.9539503455162048 +steady,sr,92,36.8,velocity,center_uy,-3.276676352470531e-06 +steady,sr,92,36.8,velocity,lower_ux,1.123203158378601 +steady,sr,92,36.8,velocity,lower_uy,0.016443636268377304 +steady,sr,93,37.2,velocity,upper_ux,1.1229664087295532 +steady,sr,93,37.2,velocity,upper_uy,-0.016452083364129066 +steady,sr,93,37.2,velocity,center_ux,0.9537073373794556 +steady,sr,93,37.2,velocity,center_uy,-5.00250007462455e-06 +steady,sr,93,37.2,velocity,lower_ux,1.12296724319458 +steady,sr,93,37.2,velocity,lower_uy,0.01644260250031948 +steady,sr,94,37.6,velocity,upper_ux,1.1228320598602295 +steady,sr,94,37.6,velocity,upper_uy,-0.016447747126221657 +steady,sr,94,37.6,velocity,center_ux,0.9535641670227051 +steady,sr,94,37.6,velocity,center_uy,-2.7564112770050997e-06 +steady,sr,94,37.6,velocity,lower_ux,1.1228318214416504 +steady,sr,94,37.6,velocity,lower_uy,0.01644246280193329 +steady,sr,95,38.0,velocity,upper_ux,1.1227456331253052 +steady,sr,95,38.0,velocity,upper_uy,-0.016447249799966812 +steady,sr,95,38.0,velocity,center_ux,0.9534798264503479 +steady,sr,95,38.0,velocity,center_uy,-4.1993057493527886e-06 +steady,sr,95,38.0,velocity,lower_ux,1.1227458715438843 +steady,sr,95,38.0,velocity,lower_uy,0.01643863134086132 +steady,sr,96,38.4,velocity,upper_ux,1.122869610786438 +steady,sr,96,38.4,velocity,upper_uy,-0.016444381326436996 +steady,sr,96,38.4,velocity,center_ux,0.9536083936691284 +steady,sr,96,38.4,velocity,center_uy,-1.348155251434946e-06 +steady,sr,96,38.4,velocity,lower_ux,1.1228687763214111 +steady,sr,96,38.4,velocity,lower_uy,0.0164402537047863 +steady,sr,97,38.8,velocity,upper_ux,1.1231764554977417 +steady,sr,97,38.8,velocity,upper_uy,-0.016448087990283966 +steady,sr,97,38.8,velocity,center_ux,0.9539211988449097 +steady,sr,97,38.8,velocity,center_uy,-1.9509977846610127e-06 +steady,sr,97,38.8,velocity,lower_ux,1.1231752634048462 +steady,sr,97,38.8,velocity,lower_uy,0.016441989690065384 +steady,sr,98,39.2,velocity,upper_ux,1.1231129169464111 +steady,sr,98,39.2,velocity,upper_uy,-0.01644957810640335 +steady,sr,98,39.2,velocity,center_ux,0.9538566470146179 +steady,sr,98,39.2,velocity,center_uy,-1.291430038463659e-07 +steady,sr,98,39.2,velocity,lower_ux,1.1231123208999634 +steady,sr,98,39.2,velocity,lower_uy,0.01644585095345974 +steady,sr,99,39.6,velocity,upper_ux,1.1229028701782227 +steady,sr,99,39.6,velocity,upper_uy,-0.016448810696601868 +steady,sr,99,39.6,velocity,center_ux,0.9536367654800415 +steady,sr,99,39.6,velocity,center_uy,1.015873536402978e-07 +steady,sr,99,39.6,velocity,lower_ux,1.1229016780853271 +steady,sr,99,39.6,velocity,lower_uy,0.01644546166062355 +steady,sr,100,40.0,velocity,upper_ux,1.1227890253067017 +steady,sr,100,40.0,velocity,upper_uy,-0.016446227207779884 +steady,sr,100,40.0,velocity,center_ux,0.9535210132598877 +steady,sr,100,40.0,velocity,center_uy,3.088322273470112e-07 +steady,sr,100,40.0,velocity,lower_ux,1.122788906097412 +steady,sr,100,40.0,velocity,lower_uy,0.016443204134702682 +steady,sr,101,40.4,velocity,upper_ux,1.1227469444274902 +steady,sr,101,40.4,velocity,upper_uy,-0.01644345559179783 +steady,sr,101,40.4,velocity,center_ux,0.9534835815429688 +steady,sr,101,40.4,velocity,center_uy,1.109718482439348e-06 +steady,sr,101,40.4,velocity,lower_ux,1.1227470636367798 +steady,sr,101,40.4,velocity,lower_uy,0.016442174091935158 +steady,sr,102,40.8,velocity,upper_ux,1.1230286359786987 +steady,sr,102,40.8,velocity,upper_uy,-0.016445424407720566 +steady,sr,102,40.8,velocity,center_ux,0.9537703990936279 +steady,sr,102,40.8,velocity,center_uy,-2.7982548544969177e-07 +steady,sr,102,40.8,velocity,lower_ux,1.1230294704437256 +steady,sr,102,40.8,velocity,lower_uy,0.01644178479909897 +steady,sr,103,41.2,velocity,upper_ux,1.123194932937622 +steady,sr,103,41.2,velocity,upper_uy,-0.016446102410554886 +steady,sr,103,41.2,velocity,center_ux,0.9539391994476318 +steady,sr,103,41.2,velocity,center_uy,8.728829357096402e-07 +steady,sr,103,41.2,velocity,lower_ux,1.1231956481933594 +steady,sr,103,41.2,velocity,lower_uy,0.016446009278297424 +steady,sr,104,41.6,velocity,upper_ux,1.1229952573776245 +steady,sr,104,41.6,velocity,upper_uy,-0.016448764130473137 +steady,sr,104,41.6,velocity,center_ux,0.9537347555160522 +steady,sr,104,41.6,velocity,center_uy,-1.3787223451799946e-06 +steady,sr,104,41.6,velocity,lower_ux,1.1229960918426514 +steady,sr,104,41.6,velocity,lower_uy,0.016445429995656013 +steady,sr,105,42.0,velocity,upper_ux,1.1228559017181396 +steady,sr,105,42.0,velocity,upper_uy,-0.01644507423043251 +steady,sr,105,42.0,velocity,center_ux,0.9535898566246033 +steady,sr,105,42.0,velocity,center_uy,5.9492304416153274e-08 +steady,sr,105,42.0,velocity,lower_ux,1.1228573322296143 +steady,sr,105,42.0,velocity,lower_uy,0.016445325687527657 +steady,sr,106,42.4,velocity,upper_ux,1.1227540969848633 +steady,sr,106,42.4,velocity,upper_uy,-0.016444191336631775 +steady,sr,106,42.4,velocity,center_ux,0.9534860253334045 +steady,sr,106,42.4,velocity,center_uy,-1.8575026388134575e-06 +steady,sr,106,42.4,velocity,lower_ux,1.1227558851242065 +steady,sr,106,42.4,velocity,lower_uy,0.01644112542271614 +steady,sr,107,42.8,velocity,upper_ux,1.1228344440460205 +steady,sr,107,42.8,velocity,upper_uy,-0.01644209399819374 +steady,sr,107,42.8,velocity,center_ux,0.9535729289054871 +steady,sr,107,42.8,velocity,center_uy,-6.473623415104157e-08 +steady,sr,107,42.8,velocity,lower_ux,1.122836947441101 +steady,sr,107,42.8,velocity,lower_uy,0.01644201949238777 +steady,sr,108,43.2,velocity,upper_ux,1.1231434345245361 +steady,sr,108,43.2,velocity,upper_uy,-0.016445420682430267 +steady,sr,108,43.2,velocity,center_ux,0.9538849592208862 +steady,sr,108,43.2,velocity,center_uy,-7.621836175530916e-07 +steady,sr,108,43.2,velocity,lower_ux,1.1231465339660645 +steady,sr,108,43.2,velocity,lower_uy,0.016443483531475067 +steady,sr,109,43.6,velocity,upper_ux,1.1231235265731812 +steady,sr,109,43.6,velocity,upper_uy,-0.016447745263576508 +steady,sr,109,43.6,velocity,center_ux,0.9538686871528625 +steady,sr,109,43.6,velocity,center_uy,2.365792184377824e-08 +steady,sr,109,43.6,velocity,lower_ux,1.1231274604797363 +steady,sr,109,43.6,velocity,lower_uy,0.016446294263005257 +steady,sr,110,44.0,velocity,upper_ux,1.1229214668273926 +steady,sr,110,44.0,velocity,upper_uy,-0.01644722744822502 +steady,sr,110,44.0,velocity,center_ux,0.9536611437797546 +steady,sr,110,44.0,velocity,center_uy,2.932715972292499e-07 +steady,sr,110,44.0,velocity,lower_ux,1.1229255199432373 +steady,sr,110,44.0,velocity,lower_uy,0.016446499153971672 +steady,sr,111,44.4,velocity,upper_ux,1.1228052377700806 +steady,sr,111,44.4,velocity,upper_uy,-0.016445795074105263 +steady,sr,111,44.4,velocity,center_ux,0.9535391330718994 +steady,sr,111,44.4,velocity,center_uy,-1.2900392221126822e-06 +steady,sr,111,44.4,velocity,lower_ux,1.122809648513794 +steady,sr,111,44.4,velocity,lower_uy,0.01644318550825119 +steady,sr,112,44.8,velocity,upper_ux,1.1227409839630127 +steady,sr,112,44.8,velocity,upper_uy,-0.016442717984318733 +steady,sr,112,44.8,velocity,center_ux,0.9534781575202942 +steady,sr,112,44.8,velocity,center_uy,-5.036464472141233e-07 +steady,sr,112,44.8,velocity,lower_ux,1.1227449178695679 +steady,sr,112,44.8,velocity,lower_uy,0.016442300751805305 +steady,sr,113,45.2,velocity,upper_ux,1.1229867935180664 +steady,sr,113,45.2,velocity,upper_uy,-0.016445260494947433 +steady,sr,113,45.2,velocity,center_ux,0.9537292718887329 +steady,sr,113,45.2,velocity,center_uy,-3.0149844860716257e-06 +steady,sr,113,45.2,velocity,lower_ux,1.1229918003082275 +steady,sr,113,45.2,velocity,lower_uy,0.016440754756331444 +steady,sr,114,45.6,velocity,upper_ux,1.123178243637085 +steady,sr,114,45.6,velocity,upper_uy,-0.016445960849523544 +steady,sr,114,45.6,velocity,center_ux,0.953925371170044 +steady,sr,114,45.6,velocity,center_uy,-1.3196304280427285e-06 +steady,sr,114,45.6,velocity,lower_ux,1.1231834888458252 +steady,sr,114,45.6,velocity,lower_uy,0.016445286571979523 +steady,sr,115,46.0,velocity,upper_ux,1.1230159997940063 +steady,sr,115,46.0,velocity,upper_uy,-0.01644931733608246 +steady,sr,115,46.0,velocity,center_ux,0.9537597894668579 +steady,sr,115,46.0,velocity,center_uy,-4.114826879231259e-06 +steady,sr,115,46.0,velocity,lower_ux,1.1230206489562988 +steady,sr,115,46.0,velocity,lower_uy,0.016443833708763123 +steady,sr,116,46.4,velocity,upper_ux,1.122875690460205 +steady,sr,116,46.4,velocity,upper_uy,-0.01644623465836048 +steady,sr,116,46.4,velocity,center_ux,0.9536138772964478 +steady,sr,116,46.4,velocity,center_uy,-2.59224680121406e-06 +steady,sr,116,46.4,velocity,lower_ux,1.1228809356689453 +steady,sr,116,46.4,velocity,lower_uy,0.016443897038698196 +steady,sr,117,46.8,velocity,upper_ux,1.1227645874023438 +steady,sr,117,46.8,velocity,upper_uy,-0.01644616574048996 +steady,sr,117,46.8,velocity,center_ux,0.953499436378479 +steady,sr,117,46.8,velocity,center_uy,-4.796806024387479e-06 +steady,sr,117,46.8,velocity,lower_ux,1.122767448425293 +steady,sr,117,46.8,velocity,lower_uy,0.016439897939562798 +steady,sr,118,47.2,velocity,upper_ux,1.1228069067001343 +steady,sr,118,47.2,velocity,upper_uy,-0.016443999484181404 +steady,sr,118,47.2,velocity,center_ux,0.9535458087921143 +steady,sr,118,47.2,velocity,center_uy,-3.504119604258449e-06 +steady,sr,118,47.2,velocity,lower_ux,1.122809648513794 +steady,sr,118,47.2,velocity,lower_uy,0.01643998548388481 +steady,sr,119,47.6,velocity,upper_ux,1.123109221458435 +steady,sr,119,47.6,velocity,upper_uy,-0.016447072848677635 +steady,sr,119,47.6,velocity,center_ux,0.9538530111312866 +steady,sr,119,47.6,velocity,center_uy,-4.066002929903334e-06 +steady,sr,119,47.6,velocity,lower_ux,1.1231110095977783 +steady,sr,119,47.6,velocity,lower_uy,0.016441280022263527 +steady,sr,120,48.0,velocity,upper_ux,1.1231337785720825 +steady,sr,120,48.0,velocity,upper_uy,-0.016449138522148132 +steady,sr,120,48.0,velocity,center_ux,0.9538795351982117 +steady,sr,120,48.0,velocity,center_uy,-3.2166142318601487e-06 +steady,sr,120,48.0,velocity,lower_ux,1.123134970664978 +steady,sr,120,48.0,velocity,lower_uy,0.0164444949477911 +steady,sr,121,48.4,velocity,upper_ux,1.1229480504989624 +steady,sr,121,48.4,velocity,upper_uy,-0.016448931768536568 +steady,sr,121,48.4,velocity,center_ux,0.9536844491958618 +steady,sr,121,48.4,velocity,center_uy,-2.3071052055456676e-06 +steady,sr,121,48.4,velocity,lower_ux,1.122948408126831 +steady,sr,121,48.4,velocity,lower_uy,0.01644453965127468 +steady,sr,122,48.8,velocity,upper_ux,1.122828722000122 +steady,sr,122,48.8,velocity,upper_uy,-0.016447294503450394 +steady,sr,122,48.8,velocity,center_ux,0.9535601735115051 +steady,sr,122,48.8,velocity,center_uy,-2.2845972580398666e-06 +steady,sr,122,48.8,velocity,lower_ux,1.1228277683258057 +steady,sr,122,48.8,velocity,lower_uy,0.016441909596323967 +steady,sr,123,49.2,velocity,upper_ux,1.1227449178695679 +steady,sr,123,49.2,velocity,upper_uy,-0.016443954780697823 +steady,sr,123,49.2,velocity,center_ux,0.9534785747528076 +steady,sr,123,49.2,velocity,center_uy,-7.052857995404338e-07 +steady,sr,123,49.2,velocity,lower_ux,1.1227445602416992 +steady,sr,123,49.2,velocity,lower_uy,0.01644086092710495 +steady,sr,124,49.6,velocity,upper_ux,1.122948169708252 +steady,sr,124,49.6,velocity,upper_uy,-0.016445204615592957 +steady,sr,124,49.6,velocity,center_ux,0.953687310218811 +steady,sr,124,49.6,velocity,center_uy,-1.5800228538864758e-06 +steady,sr,124,49.6,velocity,lower_ux,1.122947335243225 +steady,sr,124,49.6,velocity,lower_uy,0.016440346837043762 +steady,sr,125,50.0,velocity,upper_ux,1.1231635808944702 +steady,sr,125,50.0,velocity,upper_uy,-0.016445863991975784 +steady,sr,125,50.0,velocity,center_ux,0.9539066553115845 +steady,sr,125,50.0,velocity,center_uy,3.1388000820697926e-07 +steady,sr,125,50.0,velocity,lower_ux,1.1231622695922852 +steady,sr,125,50.0,velocity,lower_uy,0.016444219276309013 +steady,sr,126,50.4,velocity,upper_ux,1.123040795326233 +steady,sr,126,50.4,velocity,upper_uy,-0.01644819788634777 +steady,sr,126,50.4,velocity,center_ux,0.9537805318832397 +steady,sr,126,50.4,velocity,center_uy,-6.631117344113591e-07 +steady,sr,126,50.4,velocity,lower_ux,1.123039960861206 +steady,sr,126,50.4,velocity,lower_uy,0.016444586217403412 +steady,sr,127,50.8,velocity,upper_ux,1.1229037046432495 +steady,sr,127,50.8,velocity,upper_uy,-0.016445636749267578 +steady,sr,127,50.8,velocity,center_ux,0.9536364674568176 +steady,sr,127,50.8,velocity,center_uy,5.297566758599714e-07 +steady,sr,127,50.8,velocity,lower_ux,1.1229026317596436 +steady,sr,127,50.8,velocity,lower_uy,0.01644492708146572 +steady,sr,128,51.2,velocity,upper_ux,1.1227829456329346 +steady,sr,128,51.2,velocity,upper_uy,-0.01644403487443924 +steady,sr,128,51.2,velocity,center_ux,0.9535155296325684 +steady,sr,128,51.2,velocity,center_uy,-2.794277804696321e-07 +steady,sr,128,51.2,velocity,lower_ux,1.1227818727493286 +steady,sr,128,51.2,velocity,lower_uy,0.016442378982901573 +steady,sr,129,51.6,velocity,upper_ux,1.1227879524230957 +steady,sr,129,51.6,velocity,upper_uy,-0.01644243486225605 +steady,sr,129,51.6,velocity,center_ux,0.9535239338874817 +steady,sr,129,51.6,velocity,center_uy,1.0641073799888545e-07 +steady,sr,129,51.6,velocity,lower_ux,1.122787594795227 +steady,sr,129,51.6,velocity,lower_uy,0.01644158735871315 +steady,sr,130,52.0,velocity,upper_ux,1.123077392578125 +steady,sr,130,52.0,velocity,upper_uy,-0.016443898901343346 +steady,sr,130,52.0,velocity,center_ux,0.9538173675537109 +steady,sr,130,52.0,velocity,center_uy,1.9771120207678905e-07 +steady,sr,130,52.0,velocity,lower_ux,1.1230775117874146 +steady,sr,130,52.0,velocity,lower_uy,0.016443073749542236 +steady,sr,131,52.4,velocity,upper_ux,1.1231389045715332 +steady,sr,131,52.4,velocity,upper_uy,-0.01644708216190338 +steady,sr,131,52.4,velocity,center_ux,0.9538806676864624 +steady,sr,131,52.4,velocity,center_uy,-1.2385470427034306e-07 +steady,sr,131,52.4,velocity,lower_ux,1.1231396198272705 +steady,sr,131,52.4,velocity,lower_uy,0.016445530578494072 +steady,sr,132,52.8,velocity,upper_ux,1.1229690313339233 +steady,sr,132,52.8,velocity,upper_uy,-0.016446158289909363 +steady,sr,132,52.8,velocity,center_ux,0.953708827495575 +steady,sr,132,52.8,velocity,center_uy,8.44726741888735e-07 +steady,sr,132,52.8,velocity,lower_ux,1.1229702234268188 +steady,sr,132,52.8,velocity,lower_uy,0.0164467953145504 +steady,sr,133,53.2,velocity,upper_ux,1.1228495836257935 +steady,sr,133,53.2,velocity,upper_uy,-0.016445791348814964 +steady,sr,133,53.2,velocity,center_ux,0.9535850286483765 +steady,sr,133,53.2,velocity,center_uy,-5.931594841968035e-07 +steady,sr,133,53.2,velocity,lower_ux,1.122851848602295 +steady,sr,133,53.2,velocity,lower_uy,0.016443543136119843 +steady,sr,134,53.6,velocity,upper_ux,1.1227473020553589 +steady,sr,134,53.6,velocity,upper_uy,-0.016442295163869858 +steady,sr,134,53.6,velocity,center_ux,0.9534821510314941 +steady,sr,134,53.6,velocity,center_uy,7.027771857792686e-07 +steady,sr,134,53.6,velocity,lower_ux,1.1227489709854126 +steady,sr,134,53.6,velocity,lower_uy,0.016443006694316864 +steady,sr,135,54.0,velocity,upper_ux,1.1229121685028076 +steady,sr,135,54.0,velocity,upper_uy,-0.016443395987153053 +steady,sr,135,54.0,velocity,center_ux,0.9536522626876831 +steady,sr,135,54.0,velocity,center_uy,-1.1528181858011521e-06 +steady,sr,135,54.0,velocity,lower_ux,1.1229135990142822 +steady,sr,135,54.0,velocity,lower_uy,0.016440875828266144 +steady,sr,136,54.4,velocity,upper_ux,1.1231412887573242 +steady,sr,136,54.4,velocity,upper_uy,-0.016443969681859016 +steady,sr,136,54.4,velocity,center_ux,0.9538872241973877 +steady,sr,136,54.4,velocity,center_uy,8.148825259013392e-08 +steady,sr,136,54.4,velocity,lower_ux,1.1231424808502197 +steady,sr,136,54.4,velocity,lower_uy,0.016444643959403038 +steady,sr,137,54.8,velocity,upper_ux,1.1230580806732178 +steady,sr,137,54.8,velocity,upper_uy,-0.016447043046355247 +steady,sr,137,54.8,velocity,center_ux,0.95380038022995 +steady,sr,137,54.8,velocity,center_uy,-1.4495652749246801e-06 +steady,sr,137,54.8,velocity,lower_ux,1.1230591535568237 +steady,sr,137,54.8,velocity,lower_uy,0.016445009037852287 +steady,sr,138,55.2,velocity,upper_ux,1.1229232549667358 +steady,sr,138,55.2,velocity,upper_uy,-0.016445385292172432 +steady,sr,138,55.2,velocity,center_ux,0.9536606669425964 +steady,sr,138,55.2,velocity,center_uy,-4.1277291984442854e-07 +steady,sr,138,55.2,velocity,lower_ux,1.1229249238967896 +steady,sr,138,55.2,velocity,lower_uy,0.01644560694694519 +steady,sr,139,55.6,velocity,upper_ux,1.122799038887024 +steady,sr,139,55.6,velocity,upper_uy,-0.016444385051727295 +steady,sr,139,55.6,velocity,center_ux,0.9535312056541443 +steady,sr,139,55.6,velocity,center_uy,-6.537225090141874e-07 +steady,sr,139,55.6,velocity,lower_ux,1.1227995157241821 +steady,sr,139,55.6,velocity,lower_uy,0.016443174332380295 +steady,sr,140,56.0,velocity,upper_ux,1.1227720975875854 +steady,sr,140,56.0,velocity,upper_uy,-0.01644297130405903 +steady,sr,140,56.0,velocity,center_ux,0.9535083174705505 +steady,sr,140,56.0,velocity,center_uy,-1.3082608774084292e-08 +steady,sr,140,56.0,velocity,lower_ux,1.1227738857269287 +steady,sr,140,56.0,velocity,lower_uy,0.016441911458969116 +steady,sr,141,56.4,velocity,upper_ux,1.1230418682098389 +steady,sr,141,56.4,velocity,upper_uy,-0.0164431594312191 +steady,sr,141,56.4,velocity,center_ux,0.9537830352783203 +steady,sr,141,56.4,velocity,center_uy,5.895979029446607e-07 +steady,sr,141,56.4,velocity,lower_ux,1.123043179512024 +steady,sr,141,56.4,velocity,lower_uy,0.016443341970443726 +steady,sr,142,56.8,velocity,upper_ux,1.1231368780136108 +steady,sr,142,56.8,velocity,upper_uy,-0.01644665002822876 +steady,sr,142,56.8,velocity,center_ux,0.9538775086402893 +steady,sr,142,56.8,velocity,center_uy,2.2602121418913157e-07 +steady,sr,142,56.8,velocity,lower_ux,1.1231387853622437 +steady,sr,142,56.8,velocity,lower_uy,0.01644553616642952 +steady,sr,143,57.2,velocity,upper_ux,1.1229873895645142 +steady,sr,143,57.2,velocity,upper_uy,-0.016445860266685486 +steady,sr,143,57.2,velocity,center_ux,0.9537269473075867 +steady,sr,143,57.2,velocity,center_uy,1.1901825018867385e-06 +steady,sr,143,57.2,velocity,lower_ux,1.122989535331726 +steady,sr,143,57.2,velocity,lower_uy,0.016447139903903008 +steady,sr,144,57.6,velocity,upper_ux,1.1228718757629395 +steady,sr,144,57.6,velocity,upper_uy,-0.016445444896817207 +steady,sr,144,57.6,velocity,center_ux,0.9536076188087463 +steady,sr,144,57.6,velocity,center_uy,-2.8837516197199875e-07 +steady,sr,144,57.6,velocity,lower_ux,1.1228736639022827 +steady,sr,144,57.6,velocity,lower_uy,0.016444111242890358 +steady,sr,145,58.0,velocity,upper_ux,1.1227571964263916 +steady,sr,145,58.0,velocity,upper_uy,-0.016441918909549713 +steady,sr,145,58.0,velocity,center_ux,0.9534904956817627 +steady,sr,145,58.0,velocity,center_uy,1.0073714520331123e-06 +steady,sr,145,58.0,velocity,lower_ux,1.1227582693099976 +steady,sr,145,58.0,velocity,lower_uy,0.01644372195005417 +steady,sr,146,58.4,velocity,upper_ux,1.122880458831787 +steady,sr,146,58.4,velocity,upper_uy,-0.01644272729754448 +steady,sr,146,58.4,velocity,center_ux,0.9536184668540955 +steady,sr,146,58.4,velocity,center_uy,-7.862018378546054e-07 +steady,sr,146,58.4,velocity,lower_ux,1.1228824853897095 +steady,sr,146,58.4,velocity,lower_uy,0.016441548243165016 +steady,sr,147,58.8,velocity,upper_ux,1.1231192350387573 +steady,sr,147,58.8,velocity,upper_uy,-0.016443340107798576 +steady,sr,147,58.8,velocity,center_ux,0.9538633227348328 +steady,sr,147,58.8,velocity,center_uy,3.802367416483321e-07 +steady,sr,147,58.8,velocity,lower_ux,1.1231213808059692 +steady,sr,147,58.8,velocity,lower_uy,0.016444357112050056 +steady,sr,148,59.2,velocity,upper_ux,1.1230679750442505 +steady,sr,148,59.2,velocity,upper_uy,-0.016446541994810104 +steady,sr,148,59.2,velocity,center_ux,0.9538124203681946 +steady,sr,148,59.2,velocity,center_uy,-1.5862657392062829e-06 +steady,sr,148,59.2,velocity,lower_ux,1.123070240020752 +steady,sr,148,59.2,velocity,lower_uy,0.016444910317659378 +steady,sr,149,59.6,velocity,upper_ux,1.1229432821273804 +steady,sr,149,59.6,velocity,upper_uy,-0.01644604280591011 +steady,sr,149,59.6,velocity,center_ux,0.9536803364753723 +steady,sr,149,59.6,velocity,center_uy,-1.1140546121168882e-06 +steady,sr,149,59.6,velocity,lower_ux,1.12294602394104 +steady,sr,149,59.6,velocity,lower_uy,0.016445597633719444 +steady,sr,150,60.0,velocity,upper_ux,1.1228153705596924 +steady,sr,150,60.0,velocity,upper_uy,-0.0164446160197258 +steady,sr,150,60.0,velocity,center_ux,0.9535505175590515 +steady,sr,150,60.0,velocity,center_uy,-2.1291441498760832e-06 +steady,sr,150,60.0,velocity,lower_ux,1.1228187084197998 +steady,sr,150,60.0,velocity,lower_uy,0.016443105414509773 +steady,sr,151,60.4,velocity,upper_ux,1.1227641105651855 +steady,sr,151,60.4,velocity,upper_uy,-0.016443202272057533 +steady,sr,151,60.4,velocity,center_ux,0.9534996747970581 +steady,sr,151,60.4,velocity,center_uy,-2.109270326400292e-06 +steady,sr,151,60.4,velocity,lower_ux,1.1227660179138184 +steady,sr,151,60.4,velocity,lower_uy,0.01644124463200569 +steady,sr,152,60.8,velocity,upper_ux,1.1230082511901855 +steady,sr,152,60.8,velocity,upper_uy,-0.016444168984889984 +steady,sr,152,60.8,velocity,center_ux,0.9537490010261536 +steady,sr,152,60.8,velocity,center_uy,-1.4379127151187276e-06 +steady,sr,152,60.8,velocity,lower_ux,1.123010277748108 +steady,sr,152,60.8,velocity,lower_uy,0.016442464664578438 +steady,sr,153,61.2,velocity,upper_ux,1.123130440711975 +steady,sr,153,61.2,velocity,upper_uy,-0.016447031870484352 +steady,sr,153,61.2,velocity,center_ux,0.9538735151290894 +steady,sr,153,61.2,velocity,center_uy,-1.7491997823526617e-06 +steady,sr,153,61.2,velocity,lower_ux,1.1231324672698975 +steady,sr,153,61.2,velocity,lower_uy,0.016444161534309387 +steady,sr,154,61.6,velocity,upper_ux,1.123002529144287 +steady,sr,154,61.6,velocity,upper_uy,-0.016446812078356743 +steady,sr,154,61.6,velocity,center_ux,0.9537437558174133 +steady,sr,154,61.6,velocity,center_uy,-2.780734291718545e-07 +steady,sr,154,61.6,velocity,lower_ux,1.1230045557022095 +steady,sr,154,61.6,velocity,lower_uy,0.016445744782686234 +steady,sr,155,62.0,velocity,upper_ux,1.1228950023651123 +steady,sr,155,62.0,velocity,upper_uy,-0.016446677967905998 +steady,sr,155,62.0,velocity,center_ux,0.9536295533180237 +steady,sr,155,62.0,velocity,center_uy,-1.21557502552605e-06 +steady,sr,155,62.0,velocity,lower_ux,1.1228961944580078 +steady,sr,155,62.0,velocity,lower_uy,0.01644335314631462 +steady,sr,156,62.4,velocity,upper_ux,1.1227675676345825 +steady,sr,156,62.4,velocity,upper_uy,-0.01644360087811947 +steady,sr,156,62.4,velocity,center_ux,0.9535040259361267 +steady,sr,156,62.4,velocity,center_uy,2.972529955513892e-07 +steady,sr,156,62.4,velocity,lower_ux,1.1227691173553467 +steady,sr,156,62.4,velocity,lower_uy,0.016443127766251564 +steady,sr,157,62.8,velocity,upper_ux,1.1228506565093994 +steady,sr,157,62.8,velocity,upper_uy,-0.0164431594312191 +steady,sr,157,62.8,velocity,center_ux,0.9535903334617615 +steady,sr,157,62.8,velocity,center_uy,-3.049291308343527e-07 +steady,sr,157,62.8,velocity,lower_ux,1.1228522062301636 +steady,sr,157,62.8,velocity,lower_uy,0.01644100621342659 +steady,sr,158,63.2,velocity,upper_ux,1.123094081878662 +steady,sr,158,63.2,velocity,upper_uy,-0.016443796455860138 +steady,sr,158,63.2,velocity,center_ux,0.9538353681564331 +steady,sr,158,63.2,velocity,center_uy,9.025654890137957e-07 +steady,sr,158,63.2,velocity,lower_ux,1.123095989227295 +steady,sr,158,63.2,velocity,lower_uy,0.016443582251667976 +steady,sr,159,63.6,velocity,upper_ux,1.1230778694152832 +steady,sr,159,63.6,velocity,upper_uy,-0.01644594594836235 +steady,sr,159,63.6,velocity,center_ux,0.9538217186927795 +steady,sr,159,63.6,velocity,center_uy,2.3289948103411007e-07 +steady,sr,159,63.6,velocity,lower_ux,1.1230807304382324 +steady,sr,159,63.6,velocity,lower_uy,0.016444964334368706 +steady,sr,160,64.0,velocity,upper_ux,1.1229627132415771 +steady,sr,160,64.0,velocity,upper_uy,-0.016446741297841072 +steady,sr,160,64.0,velocity,center_ux,0.953702449798584 +steady,sr,160,64.0,velocity,center_uy,-3.705253845964762e-07 +steady,sr,160,64.0,velocity,lower_ux,1.1229660511016846 +steady,sr,160,64.0,velocity,lower_uy,0.01644480973482132 +steady,sr,161,64.4,velocity,upper_ux,1.1228358745574951 +steady,sr,161,64.4,velocity,upper_uy,-0.016445443034172058 +steady,sr,161,64.4,velocity,center_ux,0.9535715579986572 +steady,sr,161,64.4,velocity,center_uy,-1.7020034874803969e-06 +steady,sr,161,64.4,velocity,lower_ux,1.122839093208313 +steady,sr,161,64.4,velocity,lower_uy,0.01644309237599373 +steady,sr,162,64.8,velocity,upper_ux,1.1227613687515259 +steady,sr,162,64.8,velocity,upper_uy,-0.016444360837340355 +steady,sr,162,64.8,velocity,center_ux,0.9534980058670044 +steady,sr,162,64.8,velocity,center_uy,-3.826058673439547e-06 +steady,sr,162,64.8,velocity,lower_ux,1.122763752937317 +steady,sr,162,64.8,velocity,lower_uy,0.016440315172076225 +steady,sr,163,65.2,velocity,upper_ux,1.1229742765426636 +steady,sr,163,65.2,velocity,upper_uy,-0.01644446887075901 +steady,sr,163,65.2,velocity,center_ux,0.9537165760993958 +steady,sr,163,65.2,velocity,center_uy,-4.199920113023836e-06 +steady,sr,163,65.2,velocity,lower_ux,1.1229751110076904 +steady,sr,163,65.2,velocity,lower_uy,0.016441233456134796 +steady,sr,164,65.6,velocity,upper_ux,1.1231178045272827 +steady,sr,164,65.6,velocity,upper_uy,-0.016448594629764557 +steady,sr,164,65.6,velocity,center_ux,0.9538652896881104 +steady,sr,164,65.6,velocity,center_uy,-6.232482064660871e-06 +steady,sr,164,65.6,velocity,lower_ux,1.1231189966201782 +steady,sr,164,65.6,velocity,lower_uy,0.01644192822277546 +steady,sr,165,66.0,velocity,upper_ux,1.1230170726776123 +steady,sr,165,66.0,velocity,upper_uy,-0.016448957845568657 +steady,sr,165,66.0,velocity,center_ux,0.9537618160247803 +steady,sr,165,66.0,velocity,center_uy,-4.812638053408591e-06 +steady,sr,165,66.0,velocity,lower_ux,1.1230170726776123 +steady,sr,165,66.0,velocity,lower_uy,0.01644413359463215 +steady,sr,166,66.4,velocity,upper_ux,1.122918963432312 +steady,sr,166,66.4,velocity,upper_uy,-0.016449224203824997 +steady,sr,166,66.4,velocity,center_ux,0.9536547660827637 +steady,sr,166,66.4,velocity,center_uy,-5.7707843552634586e-06 +steady,sr,166,66.4,velocity,lower_ux,1.122917652130127 +steady,sr,166,66.4,velocity,lower_uy,0.01644122041761875 +steady,sr,167,66.8,velocity,upper_ux,1.1227859258651733 +steady,sr,167,66.8,velocity,upper_uy,-0.016446171328425407 +steady,sr,167,66.8,velocity,center_ux,0.953519880771637 +steady,sr,167,66.8,velocity,center_uy,-4.03566264139954e-06 +steady,sr,167,66.8,velocity,lower_ux,1.1227824687957764 +steady,sr,167,66.8,velocity,lower_uy,0.016440648585557938 +steady,sr,168,67.2,velocity,upper_ux,1.1228338479995728 +steady,sr,168,67.2,velocity,upper_uy,-0.016445841640233994 +steady,sr,168,67.2,velocity,center_ux,0.9535667896270752 +steady,sr,168,67.2,velocity,center_uy,-4.059836101077963e-06 +steady,sr,168,67.2,velocity,lower_ux,1.1228294372558594 +steady,sr,168,67.2,velocity,lower_uy,0.016438839957118034 +steady,sr,169,67.6,velocity,upper_ux,1.1230701208114624 +steady,sr,169,67.6,velocity,upper_uy,-0.0164460688829422 +steady,sr,169,67.6,velocity,center_ux,0.9538107514381409 +steady,sr,169,67.6,velocity,center_uy,-2.23232791540795e-06 +steady,sr,169,67.6,velocity,lower_ux,1.1230649948120117 +steady,sr,169,67.6,velocity,lower_uy,0.01644098199903965 +steady,sr,170,68.0,velocity,upper_ux,1.1230871677398682 +steady,sr,170,68.0,velocity,upper_uy,-0.01644831709563732 +steady,sr,170,68.0,velocity,center_ux,0.9538255333900452 +steady,sr,170,68.0,velocity,center_uy,-2.1743187517131446e-06 +steady,sr,170,68.0,velocity,lower_ux,1.1230812072753906 +steady,sr,170,68.0,velocity,lower_uy,0.016442811116576195 +steady,sr,171,68.4,velocity,upper_ux,1.1229816675186157 +steady,sr,171,68.4,velocity,upper_uy,-0.01644810661673546 +steady,sr,171,68.4,velocity,center_ux,0.9537178874015808 +steady,sr,171,68.4,velocity,center_uy,-1.0793439741973998e-06 +steady,sr,171,68.4,velocity,lower_ux,1.1229759454727173 +steady,sr,171,68.4,velocity,lower_uy,0.016443919390439987 +steady,sr,172,68.8,velocity,upper_ux,1.122863531112671 +steady,sr,172,68.8,velocity,upper_uy,-0.016446124762296677 +steady,sr,172,68.8,velocity,center_ux,0.9535936713218689 +steady,sr,172,68.8,velocity,center_uy,-8.200440504424478e-08 +steady,sr,172,68.8,velocity,lower_ux,1.1228569746017456 +steady,sr,172,68.8,velocity,lower_uy,0.016443511471152306 +steady,sr,173,69.2,velocity,upper_ux,1.1227666139602661 +steady,sr,173,69.2,velocity,upper_uy,-0.01644415780901909 +steady,sr,173,69.2,velocity,center_ux,0.9534963965415955 +steady,sr,173,69.2,velocity,center_uy,2.898793809436029e-07 +steady,sr,173,69.2,velocity,lower_ux,1.1227580308914185 +steady,sr,173,69.2,velocity,lower_uy,0.01644149236381054 +steady,sr,174,69.6,velocity,upper_ux,1.122951865196228 +steady,sr,174,69.6,velocity,upper_uy,-0.01644297130405903 +steady,sr,174,69.6,velocity,center_ux,0.9536844491958618 +steady,sr,174,69.6,velocity,center_uy,2.238320575997932e-06 +steady,sr,174,69.6,velocity,lower_ux,1.1229431629180908 +steady,sr,174,69.6,velocity,lower_uy,0.016443124040961266 +steady,sr,175,70.0,velocity,upper_ux,1.1231099367141724 +steady,sr,175,70.0,velocity,upper_uy,-0.01644509844481945 +steady,sr,175,70.0,velocity,center_ux,0.9538484811782837 +steady,sr,175,70.0,velocity,center_uy,2.1367143290262902e-06 +steady,sr,175,70.0,velocity,lower_ux,1.1231023073196411 +steady,sr,175,70.0,velocity,lower_uy,0.016444727778434753 +steady,sr,176,70.4,velocity,upper_ux,1.1230343580245972 +steady,sr,176,70.4,velocity,upper_uy,-0.016444234177470207 +steady,sr,176,70.4,velocity,center_ux,0.9537708759307861 +steady,sr,176,70.4,velocity,center_uy,4.1880230128299445e-06 +steady,sr,176,70.4,velocity,lower_ux,1.1230263710021973 +steady,sr,176,70.4,velocity,lower_uy,0.016447564586997032 +steady,sr,177,70.8,velocity,upper_ux,1.1229389905929565 +steady,sr,177,70.8,velocity,upper_uy,-0.01644401252269745 +steady,sr,177,70.8,velocity,center_ux,0.9536731243133545 +steady,sr,177,70.8,velocity,center_uy,3.5764182939601596e-06 +steady,sr,177,70.8,velocity,lower_ux,1.1229327917099 +steady,sr,177,70.8,velocity,lower_uy,0.016446154564619064 +steady,sr,178,71.2,velocity,upper_ux,1.1228049993515015 +steady,sr,178,71.2,velocity,upper_uy,-0.0164404958486557 +steady,sr,178,71.2,velocity,center_ux,0.953535795211792 +steady,sr,178,71.2,velocity,center_uy,5.1981360229547136e-06 +steady,sr,178,71.2,velocity,lower_ux,1.1228001117706299 +steady,sr,178,71.2,velocity,lower_uy,0.01644599810242653 +steady,sr,179,71.6,velocity,upper_ux,1.122813105583191 +steady,sr,179,71.6,velocity,upper_uy,-0.01643930748105049 +steady,sr,179,71.6,velocity,center_ux,0.9535495042800903 +steady,sr,179,71.6,velocity,center_uy,5.079809398012003e-06 +steady,sr,179,71.6,velocity,lower_ux,1.1228089332580566 +steady,sr,179,71.6,velocity,lower_uy,0.01644444279372692 +steady,sr,180,72.0,velocity,upper_ux,1.1230427026748657 +steady,sr,180,72.0,velocity,upper_uy,-0.01643938571214676 +steady,sr,180,72.0,velocity,center_ux,0.9537842273712158 +steady,sr,180,72.0,velocity,center_uy,6.799282800784567e-06 +steady,sr,180,72.0,velocity,lower_ux,1.123039722442627 +steady,sr,180,72.0,velocity,lower_uy,0.016446776688098907 +steady,sr,181,72.4,velocity,upper_ux,1.1230872869491577 +steady,sr,181,72.4,velocity,upper_uy,-0.0164411049336195 +steady,sr,181,72.4,velocity,center_ux,0.9538295865058899 +steady,sr,181,72.4,velocity,center_uy,8.019757842703257e-06 +steady,sr,181,72.4,velocity,lower_ux,1.1230844259262085 +steady,sr,181,72.4,velocity,lower_uy,0.016449563205242157 +steady,sr,182,72.8,velocity,upper_ux,1.122995376586914 +steady,sr,182,72.8,velocity,upper_uy,-0.016441339626908302 +steady,sr,182,72.8,velocity,center_ux,0.953732967376709 +steady,sr,182,72.8,velocity,center_uy,8.506824087817222e-06 +steady,sr,182,72.8,velocity,lower_ux,1.1229934692382812 +steady,sr,182,72.8,velocity,lower_uy,0.016450604423880577 +steady,sr,183,73.2,velocity,upper_ux,1.122878074645996 +steady,sr,183,73.2,velocity,upper_uy,-0.016439490020275116 +steady,sr,183,73.2,velocity,center_ux,0.9536159634590149 +steady,sr,183,73.2,velocity,center_uy,8.875496860127896e-06 +steady,sr,183,73.2,velocity,lower_ux,1.122879147529602 +steady,sr,183,73.2,velocity,lower_uy,0.016450362280011177 +steady,sr,184,73.6,velocity,upper_ux,1.1227651834487915 +steady,sr,184,73.6,velocity,upper_uy,-0.016438448801636696 +steady,sr,184,73.6,velocity,center_ux,0.9535031914710999 +steady,sr,184,73.6,velocity,center_uy,7.162461315601831e-06 +steady,sr,184,73.6,velocity,lower_ux,1.1227699518203735 +steady,sr,184,73.6,velocity,lower_uy,0.016447894275188446 +steady,sr,185,74.0,velocity,upper_ux,1.1229137182235718 +steady,sr,185,74.0,velocity,upper_uy,-0.01643763668835163 +steady,sr,185,74.0,velocity,center_ux,0.9536558389663696 +steady,sr,185,74.0,velocity,center_uy,6.154424227133859e-06 +steady,sr,185,74.0,velocity,lower_ux,1.122918963432312 +steady,sr,185,74.0,velocity,lower_uy,0.016448264941573143 +steady,sr,186,74.4,velocity,upper_ux,1.1230837106704712 +steady,sr,186,74.4,velocity,upper_uy,-0.016441112384200096 +steady,sr,186,74.4,velocity,center_ux,0.9538336396217346 +steady,sr,186,74.4,velocity,center_uy,3.1395384212373756e-06 +steady,sr,186,74.4,velocity,lower_ux,1.1230926513671875 +steady,sr,186,74.4,velocity,lower_uy,0.01644815318286419 +steady,sr,187,74.8,velocity,upper_ux,1.1230357885360718 +steady,sr,187,74.8,velocity,upper_uy,-0.016442514955997467 +steady,sr,187,74.8,velocity,center_ux,0.9537802338600159 +steady,sr,187,74.8,velocity,center_uy,1.7166497627840727e-06 +steady,sr,187,74.8,velocity,lower_ux,1.1230441331863403 +steady,sr,187,74.8,velocity,lower_uy,0.01644998975098133 +steady,sr,188,75.2,velocity,upper_ux,1.1229515075683594 +steady,sr,188,75.2,velocity,upper_uy,-0.01644383743405342 +steady,sr,188,75.2,velocity,center_ux,0.9536923766136169 +steady,sr,188,75.2,velocity,center_uy,-1.2840645240430604e-06 +steady,sr,188,75.2,velocity,lower_ux,1.1229629516601562 +steady,sr,188,75.2,velocity,lower_uy,0.016447843983769417 +steady,sr,189,75.6,velocity,upper_ux,1.122814416885376 +steady,sr,189,75.6,velocity,upper_uy,-0.016442449763417244 +steady,sr,189,75.6,velocity,center_ux,0.9535545110702515 +steady,sr,189,75.6,velocity,center_uy,-2.8285148800932802e-06 +steady,sr,189,75.6,velocity,lower_ux,1.1228259801864624 +steady,sr,189,75.6,velocity,lower_uy,0.01644532009959221 +steady,sr,190,76.0,velocity,upper_ux,1.122796893119812 +steady,sr,190,76.0,velocity,upper_uy,-0.01644248329102993 +steady,sr,190,76.0,velocity,center_ux,0.953535795211792 +steady,sr,190,76.0,velocity,center_uy,-4.990327397536021e-06 +steady,sr,190,76.0,velocity,lower_ux,1.1228058338165283 +steady,sr,190,76.0,velocity,lower_uy,0.016442246735095978 +steady,sr,191,76.4,velocity,upper_ux,1.123010277748108 +steady,sr,191,76.4,velocity,upper_uy,-0.016444426029920578 +steady,sr,191,76.4,velocity,center_ux,0.9537544846534729 +steady,sr,191,76.4,velocity,center_uy,-6.618608040298568e-06 +steady,sr,191,76.4,velocity,lower_ux,1.1230207681655884 +steady,sr,191,76.4,velocity,lower_uy,0.016441600397229195 +steady,sr,192,76.8,velocity,upper_ux,1.1230785846710205 +steady,sr,192,76.8,velocity,upper_uy,-0.016447538509964943 +steady,sr,192,76.8,velocity,center_ux,0.9538244009017944 +steady,sr,192,76.8,velocity,center_uy,-7.139206445572199e-06 +steady,sr,192,76.8,velocity,lower_ux,1.1230864524841309 +steady,sr,192,76.8,velocity,lower_uy,0.016443122178316116 +steady,sr,193,77.2,velocity,upper_ux,1.123002052307129 +steady,sr,193,77.2,velocity,upper_uy,-0.01644984446465969 +steady,sr,193,77.2,velocity,center_ux,0.9537461996078491 +steady,sr,193,77.2,velocity,center_uy,-8.60225463839015e-06 +steady,sr,193,77.2,velocity,lower_ux,1.123007893562317 +steady,sr,193,77.2,velocity,lower_uy,0.01644258201122284 +steady,sr,194,77.6,velocity,upper_ux,1.1228998899459839 +steady,sr,194,77.6,velocity,upper_uy,-0.016448719426989555 +steady,sr,194,77.6,velocity,center_ux,0.9536350965499878 +steady,sr,194,77.6,velocity,center_uy,-7.58657506594318e-06 +steady,sr,194,77.6,velocity,lower_ux,1.1229033470153809 +steady,sr,194,77.6,velocity,lower_uy,0.01644204929471016 +steady,sr,195,78.0,velocity,upper_ux,1.1227765083312988 +steady,sr,195,78.0,velocity,upper_uy,-0.01644834876060486 +steady,sr,195,78.0,velocity,center_ux,0.9535105228424072 +steady,sr,195,78.0,velocity,center_uy,-8.225612873502541e-06 +steady,sr,195,78.0,velocity,lower_ux,1.1227784156799316 +steady,sr,195,78.0,velocity,lower_uy,0.0164388008415699 +steady,sr,196,78.4,velocity,upper_ux,1.122894525527954 +steady,sr,196,78.4,velocity,upper_uy,-0.01644662767648697 +steady,sr,196,78.4,velocity,center_ux,0.9536292552947998 +steady,sr,196,78.4,velocity,center_uy,-5.957911525911186e-06 +steady,sr,196,78.4,velocity,lower_ux,1.1228944063186646 +steady,sr,196,78.4,velocity,lower_uy,0.01643921434879303 +steady,sr,197,78.8,velocity,upper_ux,1.123072624206543 +steady,sr,197,78.8,velocity,upper_uy,-0.016448670998215675 +steady,sr,197,78.8,velocity,center_ux,0.9538127183914185 +steady,sr,197,78.8,velocity,center_uy,-5.110766323923599e-06 +steady,sr,197,78.8,velocity,lower_ux,1.1230714321136475 +steady,sr,197,78.8,velocity,lower_uy,0.016439827159047127 +steady,sr,198,79.2,velocity,upper_ux,1.1230465173721313 +steady,sr,198,79.2,velocity,upper_uy,-0.016448527574539185 +steady,sr,198,79.2,velocity,center_ux,0.9537846446037292 +steady,sr,198,79.2,velocity,center_uy,-1.8643777366378345e-06 +steady,sr,198,79.2,velocity,lower_ux,1.1230437755584717 +steady,sr,198,79.2,velocity,lower_uy,0.01644297130405903 +steady,sr,199,79.6,velocity,upper_ux,1.1229748725891113 +steady,sr,199,79.6,velocity,upper_uy,-0.01644841581583023 +steady,sr,199,79.6,velocity,center_ux,0.9537095427513123 +steady,sr,199,79.6,velocity,center_uy,-3.530978460730694e-07 +steady,sr,199,79.6,velocity,lower_ux,1.1229711771011353 +steady,sr,199,79.6,velocity,lower_uy,0.016443338245153427 +steady,sr,0,0.0,force,front_fx,0.0012187107931822538 +steady,sr,0,0.0,force,front_fy,-1.476564648328349e-07 +steady,sr,0,0.0,force,upper_fx,-0.0001961737434612587 +steady,sr,0,0.0,force,upper_fy,0.006428936030715704 +steady,sr,0,0.0,force,lower_fx,-0.00019733321096282452 +steady,sr,0,0.0,force,lower_fy,-0.006429444067180157 +steady,sr,1,0.4,force,front_fx,0.0012227703118696809 +steady,sr,1,0.4,force,front_fy,-3.3260269560742017e-07 +steady,sr,1,0.4,force,upper_fx,-0.00018907705089077353 +steady,sr,1,0.4,force,upper_fy,0.00643369322642684 +steady,sr,1,0.4,force,lower_fx,-0.00019025534857064486 +steady,sr,1,0.4,force,lower_fy,-0.006433878559619188 +steady,sr,2,0.8,force,front_fx,0.001222174265421927 +steady,sr,2,0.8,force,front_fy,-2.9546805535574094e-07 +steady,sr,2,0.8,force,upper_fx,-0.0001864258956629783 +steady,sr,2,0.8,force,upper_fy,0.006443154066801071 +steady,sr,2,0.8,force,lower_fx,-0.00018851306231226772 +steady,sr,2,0.8,force,lower_fy,-0.006442421115934849 +steady,sr,3,1.2,force,front_fx,0.0012199166230857372 +steady,sr,3,1.2,force,front_fy,-1.2366494672733097e-07 +steady,sr,3,1.2,force,upper_fx,-0.00019185413839295506 +steady,sr,3,1.2,force,upper_fy,0.006444234866648912 +steady,sr,3,1.2,force,lower_fx,-0.00019359152065590024 +steady,sr,3,1.2,force,lower_fy,-0.0064432150684297085 +steady,sr,4,1.6,force,front_fx,0.0012174785370007157 +steady,sr,4,1.6,force,front_fy,-1.1951283340749796e-07 +steady,sr,4,1.6,force,upper_fx,-0.00019807969511020929 +steady,sr,4,1.6,force,upper_fy,0.006438596174120903 +steady,sr,4,1.6,force,lower_fx,-0.0001993918267544359 +steady,sr,4,1.6,force,lower_fy,-0.006437814328819513 +steady,sr,5,2.0,force,front_fx,0.0012164328945800662 +steady,sr,5,2.0,force,front_fy,-1.5404373243654845e-07 +steady,sr,5,2.0,force,upper_fx,-0.0001992795296246186 +steady,sr,5,2.0,force,upper_fy,0.006431028712540865 +steady,sr,5,2.0,force,lower_fx,-0.00020047837460879236 +steady,sr,5,2.0,force,lower_fy,-0.0064299385994672775 +steady,sr,6,2.4,force,front_fx,0.0012202743673697114 +steady,sr,6,2.4,force,front_fy,-1.2576887797877134e-07 +steady,sr,6,2.4,force,upper_fx,-0.00019327562768012285 +steady,sr,6,2.4,force,upper_fy,0.006430721841752529 +steady,sr,6,2.4,force,lower_fx,-0.00019451438856776804 +steady,sr,6,2.4,force,lower_fy,-0.006429607979953289 +steady,sr,7,2.8,force,front_fx,0.0012233349261805415 +steady,sr,7,2.8,force,front_fy,1.3365026063638652e-07 +steady,sr,7,2.8,force,upper_fx,-0.00018720270600169897 +steady,sr,7,2.8,force,upper_fy,0.006438427604734898 +steady,sr,7,2.8,force,lower_fx,-0.00018821976846084 +steady,sr,7,2.8,force,lower_fy,-0.0064370958134531975 +steady,sr,8,3.2,force,front_fx,0.0012212340952828526 +steady,sr,8,3.2,force,front_fy,-2.006910335694556e-07 +steady,sr,8,3.2,force,upper_fx,-0.0001890453859232366 +steady,sr,8,3.2,force,upper_fy,0.006444425787776709 +steady,sr,8,3.2,force,lower_fx,-0.00019010489631909877 +steady,sr,8,3.2,force,lower_fy,-0.006443224381655455 +steady,sr,9,3.6,force,front_fx,0.0012187790125608444 +steady,sr,9,3.6,force,front_fy,8.663587891533098e-08 +steady,sr,9,3.6,force,upper_fx,-0.00019484477525111288 +steady,sr,9,3.6,force,upper_fy,0.00644287932664156 +steady,sr,9,3.6,force,lower_fx,-0.00019569600408431143 +steady,sr,9,3.6,force,lower_fy,-0.006441407836973667 +steady,sr,10,4.0,force,front_fx,0.0012161927297711372 +steady,sr,10,4.0,force,front_fy,-4.876077497328879e-08 +steady,sr,10,4.0,force,upper_fx,-0.00020010398293379694 +steady,sr,10,4.0,force,upper_fy,0.00643520662561059 +steady,sr,10,4.0,force,lower_fx,-0.0002007839793805033 +steady,sr,10,4.0,force,lower_fy,-0.006433895789086819 +steady,sr,11,4.4,force,front_fx,0.0012184081133455038 +steady,sr,11,4.4,force,front_fy,1.1981130398908135e-07 +steady,sr,11,4.4,force,upper_fx,-0.0001971979800146073 +steady,sr,11,4.4,force,upper_fy,0.006430330686271191 +steady,sr,11,4.4,force,lower_fx,-0.00019778597925323993 +steady,sr,11,4.4,force,lower_fy,-0.006429041735827923 +steady,sr,12,4.8,force,front_fx,0.0012221072101965547 +steady,sr,12,4.8,force,front_fy,-1.4232378475753649e-07 +steady,sr,12,4.8,force,upper_fx,-0.00019054627045989037 +steady,sr,12,4.8,force,upper_fy,0.006433354690670967 +steady,sr,12,4.8,force,lower_fx,-0.00019089708803221583 +steady,sr,12,4.8,force,lower_fy,-0.006432197522372007 +steady,sr,13,5.2,force,front_fx,0.0012223328230902553 +steady,sr,13,5.2,force,front_fy,-6.238951755221933e-08 +steady,sr,13,5.2,force,upper_fx,-0.00018767840811051428 +steady,sr,13,5.2,force,upper_fy,0.0064416020177304745 +steady,sr,13,5.2,force,lower_fx,-0.00018804632418323308 +steady,sr,13,5.2,force,lower_fy,-0.006440570577979088 +steady,sr,14,5.6,force,front_fx,0.0012203269870951772 +steady,sr,14,5.6,force,front_fy,-4.939975895013049e-08 +steady,sr,14,5.6,force,upper_fx,-0.0001917287881951779 +steady,sr,14,5.6,force,upper_fy,0.006444249302148819 +steady,sr,14,5.6,force,lower_fx,-0.00019183207768946886 +steady,sr,14,5.6,force,lower_fy,-0.006443341262638569 +steady,sr,15,6.0,force,front_fx,0.0012177064782008529 +steady,sr,15,6.0,force,front_fy,-8.219983982371559e-08 +steady,sr,15,6.0,force,upper_fx,-0.0001978948712348938 +steady,sr,15,6.0,force,upper_fy,0.006439434830099344 +steady,sr,15,6.0,force,lower_fx,-0.00019806594355031848 +steady,sr,15,6.0,force,lower_fy,-0.006438830401748419 +steady,sr,16,6.4,force,front_fx,0.0012163695646449924 +steady,sr,16,6.4,force,front_fy,5.443238393354477e-08 +steady,sr,16,6.4,force,upper_fx,-0.00019999686628580093 +steady,sr,16,6.4,force,upper_fy,0.006431714165955782 +steady,sr,16,6.4,force,lower_fx,-0.00019996595801785588 +steady,sr,16,6.4,force,lower_fy,-0.006431879475712776 +steady,sr,17,6.8,force,front_fx,0.0012197174364700913 +steady,sr,17,6.8,force,front_fy,-1.933874216319964e-07 +steady,sr,17,6.8,force,upper_fx,-0.00019482630887068808 +steady,sr,17,6.8,force,upper_fy,0.006430074106901884 +steady,sr,17,6.8,force,lower_fx,-0.0001948912104126066 +steady,sr,17,6.8,force,lower_fy,-0.0064297993667423725 +steady,sr,18,7.2,force,front_fx,0.0012232016306370497 +steady,sr,18,7.2,force,front_fy,-9.699997605139288e-08 +steady,sr,18,7.2,force,upper_fx,-0.00018846038437914103 +steady,sr,18,7.2,force,upper_fy,0.006436529103666544 +steady,sr,18,7.2,force,lower_fx,-0.00018841195560526103 +steady,sr,18,7.2,force,lower_fy,-0.006436143536120653 +steady,sr,19,7.6,force,front_fx,0.00122140534222126 +steady,sr,19,7.6,force,front_fy,-1.726659633050076e-07 +steady,sr,19,7.6,force,upper_fx,-0.00018893634842243046 +steady,sr,19,7.6,force,upper_fy,0.006443241145461798 +steady,sr,19,7.6,force,lower_fx,-0.00018920427828561515 +steady,sr,19,7.6,force,lower_fy,-0.0064429412595927715 +steady,sr,20,8.0,force,front_fx,0.0012190882116556168 +steady,sr,20,8.0,force,front_fy,-7.319857076026892e-08 +steady,sr,20,8.0,force,upper_fx,-0.00019437080482020974 +steady,sr,20,8.0,force,upper_fy,0.006442384794354439 +steady,sr,20,8.0,force,lower_fx,-0.00019437362789176404 +steady,sr,20,8.0,force,lower_fy,-0.006442731246352196 +steady,sr,21,8.4,force,front_fx,0.0012165431398898363 +steady,sr,21,8.4,force,front_fy,-1.5027592326077865e-07 +steady,sr,21,8.4,force,upper_fx,-0.0001998123771045357 +steady,sr,21,8.4,force,upper_fy,0.006435522809624672 +steady,sr,21,8.4,force,lower_fx,-0.00019985051767434925 +steady,sr,21,8.4,force,lower_fy,-0.006435914430767298 +steady,sr,22,8.8,force,front_fx,0.0012179042678326368 +steady,sr,22,8.8,force,front_fy,-2.710487478907453e-07 +steady,sr,22,8.8,force,upper_fx,-0.00019798420544248074 +steady,sr,22,8.8,force,upper_fy,0.006429709028452635 +steady,sr,22,8.8,force,lower_fx,-0.0001981361274374649 +steady,sr,22,8.8,force,lower_fy,-0.006430074572563171 +steady,sr,23,9.2,force,front_fx,0.0012215209426358342 +steady,sr,23,9.2,force,front_fy,-1.2243181402027403e-07 +steady,sr,23,9.2,force,upper_fx,-0.0001917458139359951 +steady,sr,23,9.2,force,upper_fy,0.00643189437687397 +steady,sr,23,9.2,force,lower_fx,-0.00019181617244612426 +steady,sr,23,9.2,force,lower_fy,-0.006432169582694769 +steady,sr,24,9.6,force,front_fx,0.0012224747333675623 +steady,sr,24,9.6,force,front_fy,-1.9531886152890365e-07 +steady,sr,24,9.6,force,upper_fx,-0.00018793564231600612 +steady,sr,24,9.6,force,upper_fy,0.006439751945436001 +steady,sr,24,9.6,force,lower_fx,-0.00018817366799339652 +steady,sr,24,9.6,force,lower_fy,-0.006440307013690472 +steady,sr,25,10.0,force,front_fx,0.001220613601617515 +steady,sr,25,10.0,force,front_fy,-1.6680264991464355e-07 +steady,sr,25,10.0,force,upper_fx,-0.00019100523786619306 +steady,sr,25,10.0,force,upper_fy,0.006443400867283344 +steady,sr,25,10.0,force,lower_fx,-0.00019125109247397631 +steady,sr,25,10.0,force,lower_fy,-0.006443641148507595 +steady,sr,26,10.4,force,front_fx,0.0012182033387944102 +steady,sr,26,10.4,force,front_fy,-9.189825789235329e-08 +steady,sr,26,10.4,force,upper_fx,-0.00019690535555128008 +steady,sr,26,10.4,force,upper_fy,0.00643977802246809 +steady,sr,26,10.4,force,lower_fx,-0.00019658645032905042 +steady,sr,26,10.4,force,lower_fy,-0.0064392900094389915 +steady,sr,27,10.8,force,front_fx,0.001216176082380116 +steady,sr,27,10.8,force,front_fy,-9.124813260541487e-08 +steady,sr,27,10.8,force,upper_fx,-0.00019980911747552454 +steady,sr,27,10.8,force,upper_fy,0.006432326510548592 +steady,sr,27,10.8,force,lower_fx,-0.0002002514956984669 +steady,sr,27,10.8,force,lower_fy,-0.006432485766708851 +steady,sr,28,11.2,force,front_fx,0.0012193501461297274 +steady,sr,28,11.2,force,front_fy,-2.3917374392112833e-07 +steady,sr,28,11.2,force,upper_fx,-0.00019540968060027808 +steady,sr,28,11.2,force,upper_fy,0.006429849658161402 +steady,sr,28,11.2,force,lower_fx,-0.00019585115660447627 +steady,sr,28,11.2,force,lower_fy,-0.006430023815482855 +steady,sr,29,11.6,force,front_fx,0.0012227039551362395 +steady,sr,29,11.6,force,front_fy,-3.3449577330202374e-08 +steady,sr,29,11.6,force,upper_fx,-0.00018899414862971753 +steady,sr,29,11.6,force,upper_fy,0.006435338407754898 +steady,sr,29,11.6,force,lower_fx,-0.00018945361080113798 +steady,sr,29,11.6,force,lower_fy,-0.006435228977352381 +steady,sr,30,12.0,force,front_fx,0.0012215696042403579 +steady,sr,30,12.0,force,front_fy,-1.931029629531622e-07 +steady,sr,30,12.0,force,upper_fx,-0.00018881082360167056 +steady,sr,30,12.0,force,upper_fy,0.006442167330533266 +steady,sr,30,12.0,force,lower_fx,-0.00018929455836769193 +steady,sr,30,12.0,force,lower_fy,-0.006442205980420113 +steady,sr,31,12.4,force,front_fx,0.0012194913579151034 +steady,sr,31,12.4,force,front_fy,-8.221974212574423e-08 +steady,sr,31,12.4,force,upper_fx,-0.00019723577133845538 +steady,sr,31,12.4,force,upper_fy,0.006442836485803127 +steady,sr,31,12.4,force,lower_fx,-0.0001938179339049384 +steady,sr,31,12.4,force,lower_fy,-0.006441818084567785 +steady,sr,32,12.8,force,front_fx,0.0012169149704277515 +steady,sr,32,12.8,force,front_fy,-1.949271251078244e-07 +steady,sr,32,12.8,force,upper_fx,-0.00019894972501788288 +steady,sr,32,12.8,force,upper_fy,0.0064369915053248405 +steady,sr,32,12.8,force,lower_fx,-0.00019940920174121857 +steady,sr,32,12.8,force,lower_fy,-0.006436663679778576 +steady,sr,33,13.2,force,front_fx,0.001217523356899619 +steady,sr,33,13.2,force,front_fy,-3.807966919566752e-08 +steady,sr,33,13.2,force,upper_fx,-0.00019817083375528455 +steady,sr,33,13.2,force,upper_fy,0.00643059192225337 +steady,sr,33,13.2,force,lower_fx,-0.00019867424271069467 +steady,sr,33,13.2,force,lower_fy,-0.006430221721529961 +steady,sr,34,13.6,force,front_fx,0.0012210140703245997 +steady,sr,34,13.6,force,front_fy,-4.444151358029558e-08 +steady,sr,34,13.6,force,upper_fx,-0.0001926583208842203 +steady,sr,34,13.6,force,upper_fy,0.0064317286014556885 +steady,sr,34,13.6,force,lower_fx,-0.00019307319598738104 +steady,sr,34,13.6,force,lower_fy,-0.006431211717426777 +steady,sr,35,14.0,force,front_fx,0.001222332357428968 +steady,sr,35,14.0,force,front_fy,-6.379573846970743e-08 +steady,sr,35,14.0,force,upper_fx,-0.00018809744506143034 +steady,sr,35,14.0,force,upper_fy,0.006438891403377056 +steady,sr,35,14.0,force,lower_fx,-0.00018864423327613622 +steady,sr,35,14.0,force,lower_fy,-0.006438171956688166 +steady,sr,36,14.4,force,front_fx,0.001220934558659792 +steady,sr,36,14.4,force,front_fy,3.860332142835432e-08 +steady,sr,36,14.4,force,upper_fx,-0.00019047597015742213 +steady,sr,36,14.4,force,upper_fy,0.006443735212087631 +steady,sr,36,14.4,force,lower_fx,-0.00019094230083283037 +steady,sr,36,14.4,force,lower_fy,-0.006442890036851168 +steady,sr,37,14.8,force,front_fx,0.001218449673615396 +steady,sr,37,14.8,force,front_fy,-1.339297455160704e-07 +steady,sr,37,14.8,force,upper_fx,-0.00019585189875215292 +steady,sr,37,14.8,force,upper_fy,0.0064407046884298325 +steady,sr,37,14.8,force,lower_fx,-0.00019626352877821773 +steady,sr,37,14.8,force,lower_fy,-0.006439683493226767 +steady,sr,38,15.2,force,front_fx,0.0012163183419033885 +steady,sr,38,15.2,force,front_fy,3.0275877804797346e-08 +steady,sr,38,15.2,force,upper_fx,-0.00019981466175522655 +steady,sr,38,15.2,force,upper_fy,0.006433687638491392 +steady,sr,38,15.2,force,lower_fx,-0.00020024065452162176 +steady,sr,38,15.2,force,lower_fy,-0.00643323315307498 +steady,sr,39,15.6,force,front_fx,0.0012189541012048721 +steady,sr,39,15.6,force,front_fy,-1.3119664288296917e-07 +steady,sr,39,15.6,force,upper_fx,-0.00019607438298407942 +steady,sr,39,15.6,force,upper_fy,0.0064302473329007626 +steady,sr,39,15.6,force,lower_fx,-0.0001963480026461184 +steady,sr,39,15.6,force,lower_fy,-0.006429804023355246 +steady,sr,40,16.0,force,front_fx,0.0012224174570292234 +steady,sr,40,16.0,force,front_fy,1.1825235901596898e-07 +steady,sr,40,16.0,force,upper_fx,-0.00019002630142495036 +steady,sr,40,16.0,force,upper_fy,0.006434603128582239 +steady,sr,40,16.0,force,lower_fx,-0.000190273582120426 +steady,sr,40,16.0,force,lower_fy,-0.006434017326682806 +steady,sr,41,16.4,force,front_fx,0.0012216430623084307 +steady,sr,41,16.4,force,front_fy,-4.6674323073148116e-08 +steady,sr,41,16.4,force,upper_fx,-0.00018886303587350994 +steady,sr,41,16.4,force,upper_fy,0.006441408768296242 +steady,sr,41,16.4,force,lower_fx,-0.00018895963148679584 +steady,sr,41,16.4,force,lower_fy,-0.006441196426749229 +steady,sr,42,16.8,force,front_fx,0.0012198913609609008 +steady,sr,42,16.8,force,front_fy,6.406044139595224e-09 +steady,sr,42,16.8,force,upper_fx,-0.00019277518731541932 +steady,sr,42,16.8,force,upper_fy,0.006442802492529154 +steady,sr,42,16.8,force,lower_fx,-0.0001929566788021475 +steady,sr,42,16.8,force,lower_fy,-0.006442442070692778 +steady,sr,43,17.2,force,front_fx,0.0012172715505585074 +steady,sr,43,17.2,force,front_fy,-9.996956151780978e-09 +steady,sr,43,17.2,force,upper_fx,-0.00019836478168144822 +steady,sr,43,17.2,force,upper_fy,0.006437806412577629 +steady,sr,43,17.2,force,lower_fx,-0.00019833170517813414 +steady,sr,43,17.2,force,lower_fy,-0.006437432020902634 +steady,sr,44,17.6,force,front_fx,0.0012172880815342069 +steady,sr,44,17.6,force,front_fy,3.719542363000983e-08 +steady,sr,44,17.6,force,upper_fx,-0.0001986909774132073 +steady,sr,44,17.6,force,upper_fy,0.006431175861507654 +steady,sr,44,17.6,force,lower_fx,-0.00019881803018506616 +steady,sr,44,17.6,force,lower_fy,-0.006431090645492077 +steady,sr,45,18.0,force,front_fx,0.001220416626892984 +steady,sr,45,18.0,force,front_fy,3.730339770413593e-08 +steady,sr,45,18.0,force,upper_fx,-0.00019369646906852722 +steady,sr,45,18.0,force,upper_fy,0.006431266199797392 +steady,sr,45,18.0,force,lower_fx,-0.00019375886768102646 +steady,sr,45,18.0,force,lower_fy,-0.006431075278669596 +steady,sr,46,18.4,force,front_fx,0.00122234714217484 +steady,sr,46,18.4,force,front_fy,-4.0427622138849983e-08 +steady,sr,46,18.4,force,upper_fx,-0.00018882349831983447 +steady,sr,46,18.4,force,upper_fy,0.006437514442950487 +steady,sr,46,18.4,force,lower_fx,-0.00018891823128797114 +steady,sr,46,18.4,force,lower_fy,-0.006437550764530897 +steady,sr,47,18.8,force,front_fx,0.0012211407301947474 +steady,sr,47,18.8,force,front_fy,4.696630862000006e-10 +steady,sr,47,18.8,force,upper_fx,-0.00019025370420422405 +steady,sr,47,18.8,force,upper_fy,0.006442489102482796 +steady,sr,47,18.8,force,lower_fx,-0.0001902585499919951 +steady,sr,47,18.8,force,lower_fy,-0.006442728452384472 +steady,sr,48,19.2,force,front_fx,0.0012189263943582773 +steady,sr,48,19.2,force,front_fy,-1.0379051929021443e-07 +steady,sr,48,19.2,force,upper_fx,-0.00019504666852299124 +steady,sr,48,19.2,force,upper_fy,0.006441101897507906 +steady,sr,48,19.2,force,lower_fx,-0.00019528722623363137 +steady,sr,48,19.2,force,lower_fy,-0.006441293749958277 +steady,sr,49,19.6,force,front_fx,0.0012164455838501453 +steady,sr,49,19.6,force,front_fy,-9.441773585194824e-08 +steady,sr,49,19.6,force,upper_fx,-0.00019960204372182488 +steady,sr,49,19.6,force,upper_fy,0.006434369832277298 +steady,sr,49,19.6,force,lower_fx,-0.00019999159849248827 +steady,sr,49,19.6,force,lower_fy,-0.0064347535371780396 +steady,sr,50,20.0,force,front_fx,0.0012186099775135517 +steady,sr,50,20.0,force,front_fy,-1.228809622944027e-07 +steady,sr,50,20.0,force,upper_fx,-0.00019678093667607754 +steady,sr,50,20.0,force,upper_fy,0.006430222187191248 +steady,sr,50,20.0,force,lower_fx,-0.0001973967591766268 +steady,sr,50,20.0,force,lower_fy,-0.006430764216929674 +steady,sr,51,20.4,force,front_fx,0.0012219136115163565 +steady,sr,51,20.4,force,front_fy,-1.0348659884584777e-07 +steady,sr,51,20.4,force,upper_fx,-0.00019089915440417826 +steady,sr,51,20.4,force,upper_fy,0.006433519534766674 +steady,sr,51,20.4,force,lower_fx,-0.00019132820307277143 +steady,sr,51,20.4,force,lower_fy,-0.0064338194206357 +steady,sr,52,20.8,force,front_fx,0.0012217143084853888 +steady,sr,52,20.8,force,front_fy,-5.748588449705494e-08 +steady,sr,52,20.8,force,upper_fx,-0.00018891890067607164 +steady,sr,52,20.8,force,upper_fy,0.006440355908125639 +steady,sr,52,20.8,force,lower_fx,-0.00018894633103627712 +steady,sr,52,20.8,force,lower_fy,-0.006440235301852226 +steady,sr,53,21.2,force,front_fx,0.0012201392091810703 +steady,sr,53,21.2,force,front_fy,-5.0420894126546045e-08 +steady,sr,53,21.2,force,upper_fx,-0.00019217623048461974 +steady,sr,53,21.2,force,upper_fy,0.006442462094128132 +steady,sr,53,21.2,force,lower_fx,-0.0001924250682350248 +steady,sr,53,21.2,force,lower_fy,-0.006442672107368708 +steady,sr,54,21.6,force,front_fx,0.0012178111355751753 +steady,sr,54,21.6,force,front_fy,-3.949029547811733e-08 +steady,sr,54,21.6,force,upper_fx,-0.00019763731688726693 +steady,sr,54,21.6,force,upper_fy,0.0064384303987026215 +steady,sr,54,21.6,force,lower_fx,-0.00019772251835092902 +steady,sr,54,21.6,force,lower_fy,-0.006438432261347771 +steady,sr,55,22.0,force,front_fx,0.0012171133421361446 +steady,sr,55,22.0,force,front_fy,-9.516301702205965e-08 +steady,sr,55,22.0,force,upper_fx,-0.0001988078438444063 +steady,sr,55,22.0,force,upper_fy,0.006431763991713524 +steady,sr,55,22.0,force,lower_fx,-0.00019916979363188148 +steady,sr,55,22.0,force,lower_fy,-0.006432021968066692 +steady,sr,56,22.4,force,front_fx,0.0012199499178677797 +steady,sr,56,22.4,force,front_fy,-2.9208942464720167e-07 +steady,sr,56,22.4,force,upper_fx,-0.00019441456242930144 +steady,sr,56,22.4,force,upper_fy,0.0064310054294764996 +steady,sr,56,22.4,force,lower_fx,-0.00019454270659480244 +steady,sr,56,22.4,force,lower_fy,-0.006431057583540678 +steady,sr,57,22.8,force,front_fx,0.0012221743818372488 +steady,sr,57,22.8,force,front_fy,-1.1886439921227065e-07 +steady,sr,57,22.8,force,upper_fx,-0.00018927101336885244 +steady,sr,57,22.8,force,upper_fy,0.006436539348214865 +steady,sr,57,22.8,force,lower_fx,-0.00018944329349324107 +steady,sr,57,22.8,force,lower_fy,-0.006436767056584358 +steady,sr,58,23.2,force,front_fx,0.0012212583096697927 +steady,sr,58,23.2,force,front_fy,8.789604066805623e-08 +steady,sr,58,23.2,force,upper_fx,-0.00018994073616340756 +steady,sr,58,23.2,force,upper_fy,0.006441864185035229 +steady,sr,58,23.2,force,lower_fx,-0.0001901926298160106 +steady,sr,58,23.2,force,lower_fy,-0.006442068610340357 +steady,sr,59,23.6,force,front_fx,0.0012192877475172281 +steady,sr,59,23.6,force,front_fy,3.873432419254641e-08 +steady,sr,59,23.6,force,upper_fx,-0.00019433391571510583 +steady,sr,59,23.6,force,upper_fy,0.006441259756684303 +steady,sr,59,23.6,force,lower_fx,-0.00019450823310762644 +steady,sr,59,23.6,force,lower_fy,-0.0064412630163133144 +steady,sr,60,24.0,force,front_fx,0.0012166473316028714 +steady,sr,60,24.0,force,front_fy,-9.497714614781216e-08 +steady,sr,60,24.0,force,upper_fx,-0.00019913639698643237 +steady,sr,60,24.0,force,upper_fy,0.006435409188270569 +steady,sr,60,24.0,force,lower_fx,-0.00019941938808187842 +steady,sr,60,24.0,force,lower_fy,-0.006435255985707045 +steady,sr,61,24.4,force,front_fx,0.001218333374708891 +steady,sr,61,24.4,force,front_fy,-1.1145686329427917e-07 +steady,sr,61,24.4,force,upper_fx,-0.00019716743554454297 +steady,sr,61,24.4,force,upper_fy,0.00643071299418807 +steady,sr,61,24.4,force,lower_fx,-0.0001973272446775809 +steady,sr,61,24.4,force,lower_fy,-0.006430715788155794 +steady,sr,62,24.8,force,front_fx,0.0012214502785354853 +steady,sr,62,24.8,force,front_fy,-6.510938277415335e-08 +steady,sr,62,24.8,force,upper_fx,-0.000191377941519022 +steady,sr,62,24.8,force,upper_fy,0.00643322104588151 +steady,sr,62,24.8,force,lower_fx,-0.00019206182332709432 +steady,sr,62,24.8,force,lower_fy,-0.006432726513594389 +steady,sr,63,25.2,force,front_fx,0.0012217717012390494 +steady,sr,63,25.2,force,front_fy,-5.1014538371418894e-08 +steady,sr,63,25.2,force,upper_fx,-0.0001890161947812885 +steady,sr,63,25.2,force,upper_fy,0.0064395153895020485 +steady,sr,63,25.2,force,lower_fx,-0.00018912095401901752 +steady,sr,63,25.2,force,lower_fy,-0.006439254153519869 +steady,sr,64,25.6,force,front_fx,0.001220444100908935 +steady,sr,64,25.6,force,front_fy,-1.1800144505969001e-07 +steady,sr,64,25.6,force,upper_fx,-0.00019159528892487288 +steady,sr,64,25.6,force,upper_fy,0.0064424071460962296 +steady,sr,64,25.6,force,lower_fx,-0.00019179140508640558 +steady,sr,64,25.6,force,lower_fy,-0.006442320998758078 +steady,sr,65,26.0,force,front_fx,0.0012181822676211596 +steady,sr,65,26.0,force,front_fy,8.041268273473179e-08 +steady,sr,65,26.0,force,upper_fx,-0.0001968389260582626 +steady,sr,65,26.0,force,upper_fy,0.006439291872084141 +steady,sr,65,26.0,force,lower_fx,-0.00019693849026225507 +steady,sr,65,26.0,force,lower_fy,-0.00643902225419879 +steady,sr,66,26.4,force,front_fx,0.0012169668916612864 +steady,sr,66,26.4,force,front_fy,-8.456474631657329e-08 +steady,sr,66,26.4,force,upper_fx,-0.0001988810981856659 +steady,sr,66,26.4,force,upper_fy,0.006432699039578438 +steady,sr,66,26.4,force,lower_fx,-0.0001990782329812646 +steady,sr,66,26.4,force,lower_fy,-0.006432670168578625 +steady,sr,67,26.8,force,front_fx,0.0012194957816973329 +steady,sr,67,26.8,force,front_fy,1.3860494618711527e-07 +steady,sr,67,26.8,force,upper_fx,-0.00019513223378453404 +steady,sr,67,26.8,force,upper_fy,0.006431095767766237 +steady,sr,67,26.8,force,lower_fx,-0.00019516122119966894 +steady,sr,67,26.8,force,lower_fy,-0.006430263631045818 +steady,sr,68,27.2,force,front_fx,0.0012220193166285753 +steady,sr,68,27.2,force,front_fy,-5.447811446401829e-08 +steady,sr,68,27.2,force,upper_fx,-0.00018992494733538479 +steady,sr,68,27.2,force,upper_fy,0.006435723975300789 +steady,sr,68,27.2,force,lower_fx,-0.00019013923883903772 +steady,sr,68,27.2,force,lower_fy,-0.00643566669896245 +steady,sr,69,27.6,force,front_fx,0.001221424201503396 +steady,sr,69,27.6,force,front_fy,-1.2820419392767235e-08 +steady,sr,69,27.6,force,upper_fx,-0.00018975883722305298 +steady,sr,69,27.6,force,upper_fy,0.006441348232328892 +steady,sr,69,27.6,force,lower_fx,-0.00018987306975759566 +steady,sr,69,27.6,force,lower_fy,-0.0064412071369588375 +steady,sr,70,28.0,force,front_fx,0.001219539437443018 +steady,sr,70,28.0,force,front_fy,-5.4273403549132126e-08 +steady,sr,70,28.0,force,upper_fx,-0.00019325045286677778 +steady,sr,70,28.0,force,upper_fy,0.00644200574606657 +steady,sr,70,28.0,force,lower_fx,-0.00019380492449272424 +steady,sr,70,28.0,force,lower_fy,-0.006441548466682434 +steady,sr,71,28.4,force,front_fx,0.0012168959947302938 +steady,sr,71,28.4,force,front_fy,2.9245347477058203e-08 +steady,sr,71,28.4,force,upper_fx,-0.0001984949631150812 +steady,sr,71,28.4,force,upper_fy,0.006436643656343222 +steady,sr,71,28.4,force,lower_fx,-0.0001986935531022027 +steady,sr,71,28.4,force,lower_fy,-0.006436079740524292 +steady,sr,72,28.8,force,front_fx,0.0012180701596662402 +steady,sr,72,28.8,force,front_fy,-2.951936117767673e-08 +steady,sr,72,28.8,force,upper_fx,-0.0001975462946575135 +steady,sr,72,28.8,force,upper_fy,0.006431227549910545 +steady,sr,72,28.8,force,lower_fx,-0.00019762224110309035 +steady,sr,72,28.8,force,lower_fy,-0.006431308574974537 +steady,sr,73,29.2,force,front_fx,0.001220949343405664 +steady,sr,73,29.2,force,front_fy,-2.4503242102014156e-08 +steady,sr,73,29.2,force,upper_fx,-0.0001926577097037807 +steady,sr,73,29.2,force,upper_fy,0.00643259147182107 +steady,sr,73,29.2,force,lower_fx,-0.00019295322999823838 +steady,sr,73,29.2,force,lower_fy,-0.006432291120290756 +steady,sr,74,29.6,force,front_fx,0.0012218115152791142 +steady,sr,74,29.6,force,front_fy,4.943649378752468e-10 +steady,sr,74,29.6,force,upper_fx,-0.0001894459710456431 +steady,sr,74,29.6,force,upper_fy,0.0064385272562503815 +steady,sr,74,29.6,force,lower_fx,-0.00018935734988190234 +steady,sr,74,29.6,force,lower_fy,-0.006438504438847303 +steady,sr,75,30.0,force,front_fx,0.0012207620311528444 +steady,sr,75,30.0,force,front_fy,3.5845221901809055e-08 +steady,sr,75,30.0,force,upper_fx,-0.00019115513714496046 +steady,sr,75,30.0,force,upper_fy,0.006442076992243528 +steady,sr,75,30.0,force,lower_fx,-0.00019143716781400144 +steady,sr,75,30.0,force,lower_fy,-0.006441923789680004 +steady,sr,76,30.4,force,front_fx,0.0012185084633529186 +steady,sr,76,30.4,force,front_fy,-4.818670262807245e-08 +steady,sr,76,30.4,force,upper_fx,-0.0001960970985237509 +steady,sr,76,30.4,force,upper_fy,0.006439832504838705 +steady,sr,76,30.4,force,lower_fx,-0.00019620329840108752 +steady,sr,76,30.4,force,lower_fy,-0.006439637392759323 +steady,sr,77,30.8,force,front_fx,0.0012169023975729942 +steady,sr,77,30.8,force,front_fy,-1.5613106540968147e-07 +steady,sr,77,30.8,force,upper_fx,-0.0001987637224374339 +steady,sr,77,30.8,force,upper_fy,0.006433484610170126 +steady,sr,77,30.8,force,lower_fx,-0.0001989461889024824 +steady,sr,77,30.8,force,lower_fy,-0.006433451548218727 +steady,sr,78,31.2,force,front_fx,0.001219135127030313 +steady,sr,78,31.2,force,front_fy,4.397006758694033e-09 +steady,sr,78,31.2,force,upper_fx,-0.0001957290805876255 +steady,sr,78,31.2,force,upper_fy,0.006431087385863066 +steady,sr,78,31.2,force,lower_fx,-0.00019575381884351373 +steady,sr,78,31.2,force,lower_fy,-0.006431247107684612 +steady,sr,79,31.6,force,front_fx,0.0012217409675940871 +steady,sr,79,31.6,force,front_fy,-1.0632437152935381e-07 +steady,sr,79,31.6,force,upper_fx,-0.00019064737716689706 +steady,sr,79,31.6,force,upper_fy,0.006434847135096788 +steady,sr,79,31.6,force,lower_fx,-0.00019070148118771613 +steady,sr,79,31.6,force,lower_fy,-0.006434845272451639 +steady,sr,80,32.0,force,front_fx,0.0012214749585837126 +steady,sr,80,32.0,force,front_fy,7.551054181931249e-08 +steady,sr,80,32.0,force,upper_fx,-0.0001897230977192521 +steady,sr,80,32.0,force,upper_fy,0.006440519820898771 +steady,sr,80,32.0,force,lower_fx,-0.00018971972167491913 +steady,sr,80,32.0,force,lower_fy,-0.006440447177737951 +steady,sr,81,32.4,force,front_fx,0.0012198679614812136 +steady,sr,81,32.4,force,front_fy,5.175948913915818e-08 +steady,sr,81,32.4,force,upper_fx,-0.00019313055963721126 +steady,sr,81,32.4,force,upper_fy,0.006441580597311258 +steady,sr,81,32.4,force,lower_fx,-0.000193145708180964 +steady,sr,81,32.4,force,lower_fy,-0.006441646255552769 +steady,sr,82,32.8,force,front_fx,0.0012172919232398272 +steady,sr,82,32.8,force,front_fy,1.3713950863802893e-07 +steady,sr,82,32.8,force,upper_fx,-0.00019804880139417946 +steady,sr,82,32.8,force,upper_fy,0.006437158677726984 +steady,sr,82,32.8,force,lower_fx,-0.0001981186360353604 +steady,sr,82,32.8,force,lower_fy,-0.006436781492084265 +steady,sr,83,33.2,force,front_fx,0.001217869808897376 +steady,sr,83,33.2,force,front_fy,-6.496775029063429e-08 +steady,sr,83,33.2,force,upper_fx,-0.00019786730990745127 +steady,sr,83,33.2,force,upper_fy,0.006431701593101025 +steady,sr,83,33.2,force,lower_fx,-0.00019782775780186057 +steady,sr,83,33.2,force,lower_fy,-0.006431492976844311 +steady,sr,84,33.6,force,front_fx,0.0012205681996420026 +steady,sr,84,33.6,force,front_fy,5.6538556059138045e-09 +steady,sr,84,33.6,force,upper_fx,-0.00019342181622050703 +steady,sr,84,33.6,force,upper_fy,0.006432161200791597 +steady,sr,84,33.6,force,lower_fx,-0.0001936233602464199 +steady,sr,84,33.6,force,lower_fy,-0.006432634778320789 +steady,sr,85,34.0,force,front_fx,0.0012216279283165932 +steady,sr,85,34.0,force,front_fy,-4.98321597319773e-08 +steady,sr,85,34.0,force,upper_fx,-0.0001897096517495811 +steady,sr,85,34.0,force,upper_fy,0.006437632255256176 +steady,sr,85,34.0,force,lower_fx,-0.0001897551555885002 +steady,sr,85,34.0,force,lower_fy,-0.006437595933675766 +steady,sr,86,34.4,force,front_fx,0.0012210509739816189 +steady,sr,86,34.4,force,front_fy,-2.3657412029365332e-08 +steady,sr,86,34.4,force,upper_fx,-0.00019084999803453684 +steady,sr,86,34.4,force,upper_fy,0.006441567558795214 +steady,sr,86,34.4,force,lower_fx,-0.00019090554269496351 +steady,sr,86,34.4,force,lower_fy,-0.006441572681069374 +steady,sr,87,34.8,force,front_fx,0.001218871446326375 +steady,sr,87,34.8,force,front_fy,7.004855717696046e-08 +steady,sr,87,34.8,force,upper_fx,-0.0001953266328200698 +steady,sr,87,34.8,force,upper_fy,0.006440224125981331 +steady,sr,87,34.8,force,lower_fx,-0.00019531957514118403 +steady,sr,87,34.8,force,lower_fy,-0.006440278142690659 +steady,sr,88,35.2,force,front_fx,0.0012168845860287547 +steady,sr,88,35.2,force,front_fy,-9.168216053012657e-08 +steady,sr,88,35.2,force,upper_fx,-0.00019869247626047581 +steady,sr,88,35.2,force,upper_fy,0.006434302777051926 +steady,sr,88,35.2,force,lower_fx,-0.00019884368521161377 +steady,sr,88,35.2,force,lower_fy,-0.006434441078454256 +steady,sr,89,35.6,force,front_fx,0.0012188846012577415 +steady,sr,89,35.6,force,front_fy,4.293993782766847e-08 +steady,sr,89,35.6,force,upper_fx,-0.00019615908968262374 +steady,sr,89,35.6,force,upper_fy,0.006431220564991236 +steady,sr,89,35.6,force,lower_fx,-0.0001962193491635844 +steady,sr,89,35.6,force,lower_fy,-0.006430871319025755 +steady,sr,90,36.0,force,front_fx,0.0012214580783620477 +steady,sr,90,36.0,force,front_fy,-1.2136439409005106e-07 +steady,sr,90,36.0,force,upper_fx,-0.00019143600366078317 +steady,sr,90,36.0,force,upper_fy,0.006434207782149315 +steady,sr,90,36.0,force,lower_fx,-0.00019150413572788239 +steady,sr,90,36.0,force,lower_fy,-0.006434347480535507 +steady,sr,91,36.4,force,front_fx,0.0012215346796438098 +steady,sr,91,36.4,force,front_fy,3.4312325425389645e-08 +steady,sr,91,36.4,force,upper_fx,-0.00018972327234223485 +steady,sr,91,36.4,force,upper_fy,0.006439840421080589 +steady,sr,91,36.4,force,lower_fx,-0.00018970260862261057 +steady,sr,91,36.4,force,lower_fy,-0.0064397393725812435 +steady,sr,92,36.8,force,front_fx,0.001220184494741261 +steady,sr,92,36.8,force,front_fy,5.984635009781414e-08 +steady,sr,92,36.8,force,upper_fx,-0.0001938152126967907 +steady,sr,92,36.8,force,upper_fy,0.0064413235522806644 +steady,sr,92,36.8,force,lower_fx,-0.00019257435633335263 +steady,sr,92,36.8,force,lower_fy,-0.006441584788262844 +steady,sr,93,37.2,force,front_fx,0.0012175767915323377 +steady,sr,93,37.2,force,front_fy,-1.0875810474431091e-08 +steady,sr,93,37.2,force,upper_fx,-0.0001973591570276767 +steady,sr,93,37.2,force,upper_fy,0.006437978707253933 +steady,sr,93,37.2,force,lower_fx,-0.00019740201241802424 +steady,sr,93,37.2,force,lower_fy,-0.00643884064629674 +steady,sr,94,37.6,force,front_fx,0.0012175926240161061 +steady,sr,94,37.6,force,front_fy,-3.927747371790247e-08 +steady,sr,94,37.6,force,upper_fx,-0.00019799766596406698 +steady,sr,94,37.6,force,upper_fy,0.006432396825402975 +steady,sr,94,37.6,force,lower_fx,-0.0001988858712138608 +steady,sr,94,37.6,force,lower_fy,-0.006433190777897835 +steady,sr,95,38.0,force,front_fx,0.0012202545767650008 +steady,sr,95,38.0,force,front_fy,-6.754644399364906e-09 +steady,sr,95,38.0,force,upper_fx,-0.00019407892250455916 +steady,sr,95,38.0,force,upper_fy,0.006431879010051489 +steady,sr,95,38.0,force,lower_fx,-0.00019414405687712133 +steady,sr,95,38.0,force,lower_fy,-0.006431971210986376 +steady,sr,96,38.4,force,front_fx,0.0012215725146234035 +steady,sr,96,38.4,force,front_fy,8.626258818367205e-08 +steady,sr,96,38.4,force,upper_fx,-0.00019016802252735943 +steady,sr,96,38.4,force,upper_fy,0.006436869036406279 +steady,sr,96,38.4,force,lower_fx,-0.00019014402641914785 +steady,sr,96,38.4,force,lower_fy,-0.006436317693442106 +steady,sr,97,38.8,force,front_fx,0.0012210357235744596 +steady,sr,97,38.8,force,front_fy,-1.6931881674508986e-08 +steady,sr,97,38.8,force,upper_fx,-0.00019062650972045958 +steady,sr,97,38.8,force,upper_fy,0.006441137287765741 +steady,sr,97,38.8,force,lower_fx,-0.0001910419960040599 +steady,sr,97,38.8,force,lower_fy,-0.006441471166908741 +steady,sr,98,39.2,force,front_fx,0.0012193321017548442 +steady,sr,98,39.2,force,front_fy,-7.02202651581274e-09 +steady,sr,98,39.2,force,upper_fx,-0.00019446307851467282 +steady,sr,98,39.2,force,upper_fy,0.006440476980060339 +steady,sr,98,39.2,force,lower_fx,-0.00019456809968687594 +steady,sr,98,39.2,force,lower_fy,-0.006440530531108379 +steady,sr,99,39.6,force,front_fx,0.0012170065892860293 +steady,sr,99,39.6,force,front_fy,5.777137701556967e-08 +steady,sr,99,39.6,force,upper_fx,-0.00019845239876303822 +steady,sr,99,39.6,force,upper_fy,0.006435257848352194 +steady,sr,99,39.6,force,lower_fx,-0.00019850237003993243 +steady,sr,99,39.6,force,lower_fy,-0.006435235030949116 +steady,sr,100,40.0,force,front_fx,0.0012185981031507254 +steady,sr,100,40.0,force,front_fy,6.823545817269405e-08 +steady,sr,100,40.0,force,upper_fx,-0.00019652335322462022 +steady,sr,100,40.0,force,upper_fy,0.006431585643440485 +steady,sr,100,40.0,force,lower_fx,-0.0001966492272913456 +steady,sr,100,40.0,force,lower_fy,-0.006431467365473509 +steady,sr,101,40.4,force,front_fx,0.0012212852016091347 +steady,sr,101,40.4,force,front_fy,-3.678898963244137e-08 +steady,sr,101,40.4,force,upper_fx,-0.0001920656650327146 +steady,sr,101,40.4,force,upper_fy,0.006433610804378986 +steady,sr,101,40.4,force,lower_fx,-0.00019210175378248096 +steady,sr,101,40.4,force,lower_fy,-0.006433612201362848 +steady,sr,102,40.8,force,front_fx,0.0012213605223223567 +steady,sr,102,40.8,force,front_fy,-6.185502599009851e-08 +steady,sr,102,40.8,force,upper_fx,-0.00018983925110660493 +steady,sr,102,40.8,force,upper_fy,0.006439075339585543 +steady,sr,102,40.8,force,lower_fx,-0.00019009842071682215 +steady,sr,102,40.8,force,lower_fy,-0.006439156364649534 +steady,sr,103,41.2,force,front_fx,0.0012204000959172845 +steady,sr,103,41.2,force,front_fy,-1.645516078951914e-08 +steady,sr,103,41.2,force,upper_fx,-0.00019215457723475993 +steady,sr,103,41.2,force,upper_fy,0.006441421341150999 +steady,sr,103,41.2,force,lower_fx,-0.000192166306078434 +steady,sr,103,41.2,force,lower_fy,-0.006441405043005943 +steady,sr,104,41.6,force,front_fx,0.0012180013582110405 +steady,sr,104,41.6,force,front_fy,-7.78505615528502e-09 +steady,sr,104,41.6,force,upper_fx,-0.00019617890939116478 +steady,sr,104,41.6,force,upper_fy,0.006438983138650656 +steady,sr,104,41.6,force,lower_fx,-0.00019664375577121973 +steady,sr,104,41.6,force,lower_fy,-0.006438486743718386 +steady,sr,105,42.0,force,front_fx,0.0012175263836979866 +steady,sr,105,42.0,force,front_fy,-1.4798570147078749e-09 +steady,sr,105,42.0,force,upper_fx,-0.00019814544066321105 +steady,sr,105,42.0,force,upper_fy,0.0064330752938985825 +steady,sr,105,42.0,force,lower_fx,-0.00019812794926110655 +steady,sr,105,42.0,force,lower_fy,-0.0064330929890275 +steady,sr,106,42.4,force,front_fx,0.001219817204400897 +steady,sr,106,42.4,force,front_fy,-9.149567858912633e-08 +steady,sr,106,42.4,force,upper_fx,-0.000194738749996759 +steady,sr,106,42.4,force,upper_fy,0.006431895308196545 +steady,sr,106,42.4,force,lower_fx,-0.00019481810159049928 +steady,sr,106,42.4,force,lower_fy,-0.006431846413761377 +steady,sr,107,42.8,force,front_fx,0.0012214418966323137 +steady,sr,107,42.8,force,front_fy,6.079746839304789e-08 +steady,sr,107,42.8,force,upper_fx,-0.00019062953651882708 +steady,sr,107,42.8,force,upper_fy,0.006436055526137352 +steady,sr,107,42.8,force,lower_fx,-0.00019093796436209232 +steady,sr,107,42.8,force,lower_fy,-0.0064356327056884766 +steady,sr,108,43.2,force,front_fx,0.0012211567955091596 +steady,sr,108,43.2,force,front_fy,-1.1747746953005844e-07 +steady,sr,108,43.2,force,upper_fx,-0.0001904934470076114 +steady,sr,108,43.2,force,upper_fy,0.006440563127398491 +steady,sr,108,43.2,force,lower_fx,-0.0001905234094010666 +steady,sr,108,43.2,force,lower_fy,-0.006440563593059778 +steady,sr,109,43.6,force,front_fx,0.0012195699382573366 +steady,sr,109,43.6,force,front_fy,-7.620815978270912e-08 +steady,sr,109,43.6,force,upper_fx,-0.00019391925889067352 +steady,sr,109,43.6,force,upper_fy,0.006440791301429272 +steady,sr,109,43.6,force,lower_fx,-0.0001938889326993376 +steady,sr,109,43.6,force,lower_fy,-0.006440707948058844 +steady,sr,110,44.0,force,front_fx,0.001217205193825066 +steady,sr,110,44.0,force,front_fy,-3.656445102251382e-08 +steady,sr,110,44.0,force,upper_fx,-0.00019800076552201062 +steady,sr,110,44.0,force,upper_fy,0.006435986142605543 +steady,sr,110,44.0,force,lower_fx,-0.00019806547788903117 +steady,sr,110,44.0,force,lower_fy,-0.006436075549572706 +steady,sr,111,44.4,force,front_fx,0.0012184155639261007 +steady,sr,111,44.4,force,front_fy,-4.2440596814685705e-08 +steady,sr,111,44.4,force,upper_fx,-0.00019685857114382088 +steady,sr,111,44.4,force,upper_fy,0.006432035937905312 +steady,sr,111,44.4,force,lower_fx,-0.0001971457968465984 +steady,sr,111,44.4,force,lower_fy,-0.0064318422228097916 +steady,sr,112,44.8,force,front_fx,0.0012208472471684217 +steady,sr,112,44.8,force,front_fy,1.8988139061093534e-08 +steady,sr,112,44.8,force,upper_fx,-0.00019277234969194978 +steady,sr,112,44.8,force,upper_fy,0.006433203350752592 +steady,sr,112,44.8,force,lower_fx,-0.00019274784426670521 +steady,sr,112,44.8,force,lower_fy,-0.006433433853089809 +steady,sr,113,45.2,force,front_fx,0.001221489510498941 +steady,sr,113,45.2,force,front_fy,3.247289015462229e-08 +steady,sr,113,45.2,force,upper_fx,-0.0001900341740110889 +steady,sr,113,45.2,force,upper_fy,0.006438347510993481 +steady,sr,113,45.2,force,lower_fx,-0.00019006748334504664 +steady,sr,113,45.2,force,lower_fy,-0.006438322830945253 +steady,sr,114,45.6,force,front_fx,0.0012205173261463642 +steady,sr,114,45.6,force,front_fy,2.1493274005024432e-07 +steady,sr,114,45.6,force,upper_fx,-0.0001917380723170936 +steady,sr,114,45.6,force,upper_fy,0.0064411526545882225 +steady,sr,114,45.6,force,lower_fx,-0.00019179504306521267 +steady,sr,114,45.6,force,lower_fy,-0.006441193167120218 +steady,sr,115,46.0,force,front_fx,0.0012184621300548315 +steady,sr,115,46.0,force,front_fy,-1.261063857782574e-07 +steady,sr,115,46.0,force,upper_fx,-0.00019598966173361987 +steady,sr,115,46.0,force,upper_fy,0.0064391023479402065 +steady,sr,115,46.0,force,lower_fx,-0.0001960688387043774 +steady,sr,115,46.0,force,lower_fy,-0.006439033895730972 +steady,sr,116,46.4,force,front_fx,0.0012174219591543078 +steady,sr,116,46.4,force,front_fy,6.916830841419142e-08 +steady,sr,116,46.4,force,upper_fx,-0.0001980789384106174 +steady,sr,116,46.4,force,upper_fy,0.006433742120862007 +steady,sr,116,46.4,force,lower_fx,-0.00019804740441031754 +steady,sr,116,46.4,force,lower_fy,-0.006433791480958462 +steady,sr,117,46.8,force,front_fx,0.0012194635346531868 +steady,sr,117,46.8,force,front_fy,4.481831794578284e-08 +steady,sr,117,46.8,force,upper_fx,-0.00019525950483512133 +steady,sr,117,46.8,force,upper_fy,0.006431898567825556 +steady,sr,117,46.8,force,lower_fx,-0.00019531353609636426 +steady,sr,117,46.8,force,lower_fy,-0.006431546062231064 +steady,sr,118,47.2,force,front_fx,0.0012212551664561033 +steady,sr,118,47.2,force,front_fy,4.261882935452377e-08 +steady,sr,118,47.2,force,upper_fx,-0.00019113477901555598 +steady,sr,118,47.2,force,upper_fy,0.006435352377593517 +steady,sr,118,47.2,force,lower_fx,-0.00019111105939373374 +steady,sr,118,47.2,force,lower_fy,-0.006435337010771036 +steady,sr,119,47.6,force,front_fx,0.001221317914314568 +steady,sr,119,47.6,force,front_fy,-1.7453494649544155e-08 +steady,sr,119,47.6,force,upper_fx,-0.0001904370146803558 +steady,sr,119,47.6,force,upper_fy,0.006439989432692528 +steady,sr,119,47.6,force,lower_fx,-0.0001904968376038596 +steady,sr,119,47.6,force,lower_fy,-0.006440143566578627 +steady,sr,120,48.0,force,front_fx,0.0012199119664728642 +steady,sr,120,48.0,force,front_fy,-2.8932335638387485e-08 +steady,sr,120,48.0,force,upper_fx,-0.00019336381228640676 +steady,sr,120,48.0,force,upper_fy,0.006440859287977219 +steady,sr,120,48.0,force,lower_fx,-0.00019262832938693464 +steady,sr,120,48.0,force,lower_fy,-0.006440829019993544 +steady,sr,121,48.4,force,front_fx,0.0012174007715657353 +steady,sr,121,48.4,force,front_fy,-1.005282683763653e-07 +steady,sr,121,48.4,force,upper_fx,-0.0001975805062102154 +steady,sr,121,48.4,force,upper_fy,0.0064367628656327724 +steady,sr,121,48.4,force,lower_fx,-0.0001975804625544697 +steady,sr,121,48.4,force,lower_fy,-0.006436682306230068 +steady,sr,122,48.8,force,front_fx,0.0012181892525404692 +steady,sr,122,48.8,force,front_fy,-1.6834830773859721e-07 +steady,sr,122,48.8,force,upper_fx,-0.00019715726375579834 +steady,sr,122,48.8,force,upper_fy,0.00643239077180624 +steady,sr,122,48.8,force,lower_fx,-0.00019719844567589462 +steady,sr,122,48.8,force,lower_fy,-0.00643240986391902 +steady,sr,123,49.2,force,front_fx,0.0012204803060740232 +steady,sr,123,49.2,force,front_fy,4.9771696097877793e-08 +steady,sr,123,49.2,force,upper_fx,-0.00019340172002557665 +steady,sr,123,49.2,force,upper_fy,0.006432975642383099 +steady,sr,123,49.2,force,lower_fx,-0.00019329023780301213 +steady,sr,123,49.2,force,lower_fy,-0.006432283669710159 +steady,sr,124,49.6,force,front_fx,0.0012213254813104868 +steady,sr,124,49.6,force,front_fy,5.277998837982523e-08 +steady,sr,124,49.6,force,upper_fx,-0.00019037691527046263 +steady,sr,124,49.6,force,upper_fy,0.006437542848289013 +steady,sr,124,49.6,force,lower_fx,-0.00019039033213630319 +steady,sr,124,49.6,force,lower_fy,-0.006437565200030804 +steady,sr,125,50.0,force,front_fx,0.0012208031257614493 +steady,sr,125,50.0,force,front_fy,-1.2072079869085428e-07 +steady,sr,125,50.0,force,upper_fx,-0.0001914677704917267 +steady,sr,125,50.0,force,upper_fy,0.006440907716751099 +steady,sr,125,50.0,force,lower_fx,-0.00019132251327391714 +steady,sr,125,50.0,force,lower_fy,-0.006440880708396435 +steady,sr,126,50.4,force,front_fx,0.0012187224347144365 +steady,sr,126,50.4,force,front_fy,-9.018203961375093e-09 +steady,sr,126,50.4,force,upper_fx,-0.000195396612980403 +steady,sr,126,50.4,force,upper_fy,0.006439546123147011 +steady,sr,126,50.4,force,lower_fx,-0.00019549396529328078 +steady,sr,126,50.4,force,lower_fy,-0.006439650431275368 +steady,sr,127,50.8,force,front_fx,0.001217426615767181 +steady,sr,127,50.8,force,front_fy,7.434434934339151e-08 +steady,sr,127,50.8,force,upper_fx,-0.00019797096319962293 +steady,sr,127,50.8,force,upper_fy,0.006434587761759758 +steady,sr,127,50.8,force,lower_fx,-0.0001979054941330105 +steady,sr,127,50.8,force,lower_fy,-0.006434463895857334 +steady,sr,128,51.2,force,front_fx,0.0012192187132313848 +steady,sr,128,51.2,force,front_fy,-1.6296540650273528e-07 +steady,sr,128,51.2,force,upper_fx,-0.00019563769455999136 +steady,sr,128,51.2,force,upper_fy,0.006431990768760443 +steady,sr,128,51.2,force,lower_fx,-0.00019568858260754496 +steady,sr,128,51.2,force,lower_fy,-0.006431999150663614 +steady,sr,129,51.6,force,front_fx,0.0012210182612761855 +steady,sr,129,51.6,force,front_fy,2.011089250686382e-08 +steady,sr,129,51.6,force,upper_fx,-0.00019175512716174126 +steady,sr,129,51.6,force,upper_fy,0.0064348746091127396 +steady,sr,129,51.6,force,lower_fx,-0.00019178535148967057 +steady,sr,129,51.6,force,lower_fy,-0.006434927694499493 +steady,sr,130,52.0,force,front_fx,0.0012212601723149419 +steady,sr,130,52.0,force,front_fy,-7.826412939948568e-08 +steady,sr,130,52.0,force,upper_fx,-0.00019036348385270685 +steady,sr,130,52.0,force,upper_fy,0.0064393095672130585 +steady,sr,130,52.0,force,lower_fx,-0.00019045571389142424 +steady,sr,130,52.0,force,lower_fy,-0.006439423654228449 +steady,sr,131,52.4,force,front_fx,0.0012202360667288303 +steady,sr,131,52.4,force,front_fy,1.3447998981064302e-07 +steady,sr,131,52.4,force,upper_fx,-0.00019286845054011792 +steady,sr,131,52.4,force,upper_fy,0.006440984550863504 +steady,sr,131,52.4,force,lower_fx,-0.00019286133465357125 +steady,sr,131,52.4,force,lower_fy,-0.0064409454353153706 +steady,sr,132,52.8,force,front_fx,0.0012176152085885406 +steady,sr,132,52.8,force,front_fy,-1.2097515877940168e-07 +steady,sr,132,52.8,force,upper_fx,-0.0001970085722859949 +steady,sr,132,52.8,force,upper_fy,0.006437427364289761 +steady,sr,132,52.8,force,lower_fx,-0.00019716136739589274 +steady,sr,132,52.8,force,lower_fy,-0.006437344942241907 +steady,sr,133,53.2,force,front_fx,0.001218266668729484 +steady,sr,133,53.2,force,front_fy,5.5918736308058214e-08 +steady,sr,133,53.2,force,upper_fx,-0.0001974019396584481 +steady,sr,133,53.2,force,upper_fy,0.006432949099689722 +steady,sr,133,53.2,force,lower_fx,-0.00019740853167604655 +steady,sr,133,53.2,force,lower_fy,-0.006432951893657446 +steady,sr,134,53.6,force,front_fx,0.0012200699420645833 +steady,sr,134,53.6,force,front_fy,4.940775255590779e-08 +steady,sr,134,53.6,force,upper_fx,-0.00019385058840271086 +steady,sr,134,53.6,force,upper_fy,0.006432780064642429 +steady,sr,134,53.6,force,lower_fx,-0.00019380122830625623 +steady,sr,134,53.6,force,lower_fy,-0.006432827096432447 +steady,sr,135,54.0,force,front_fx,0.0012211911380290985 +steady,sr,135,54.0,force,front_fy,-7.785013877992242e-08 +steady,sr,135,54.0,force,upper_fx,-0.00019073890871368349 +steady,sr,135,54.0,force,upper_fy,0.006436783820390701 +steady,sr,135,54.0,force,lower_fx,-0.00019082431390415877 +steady,sr,135,54.0,force,lower_fy,-0.006436929572373629 +steady,sr,136,54.4,force,front_fx,0.0012209725100547075 +steady,sr,136,54.4,force,front_fy,3.062186726410232e-09 +steady,sr,136,54.4,force,upper_fx,-0.00019115032046101987 +steady,sr,136,54.4,force,upper_fy,0.006440361030399799 +steady,sr,136,54.4,force,lower_fx,-0.00019108290143776685 +steady,sr,136,54.4,force,lower_fy,-0.006440646480768919 +steady,sr,137,54.8,force,front_fx,0.0012190802954137325 +steady,sr,137,54.8,force,front_fy,-1.0818897777653547e-07 +steady,sr,137,54.8,force,upper_fx,-0.00019482873904053122 +steady,sr,137,54.8,force,upper_fy,0.0064398362301290035 +steady,sr,137,54.8,force,lower_fx,-0.00019490013073664159 +steady,sr,137,54.8,force,lower_fy,-0.006439455319195986 +steady,sr,138,55.2,force,front_fx,0.00121748773381114 +steady,sr,138,55.2,force,front_fy,4.521185559269725e-08 +steady,sr,138,55.2,force,upper_fx,-0.00019766378682106733 +steady,sr,138,55.2,force,upper_fy,0.006435352377593517 +steady,sr,138,55.2,force,lower_fx,-0.00019762507872655988 +steady,sr,138,55.2,force,lower_fy,-0.006435264367610216 +steady,sr,139,55.6,force,front_fx,0.001218994613736868 +steady,sr,139,55.6,force,front_fy,8.314701460676588e-08 +steady,sr,139,55.6,force,upper_fx,-0.00019607927242759615 +steady,sr,139,55.6,force,upper_fy,0.006432224530726671 +steady,sr,139,55.6,force,lower_fx,-0.00019615469500422478 +steady,sr,139,55.6,force,lower_fy,-0.006432239431887865 +steady,sr,140,56.0,force,front_fx,0.0012208214029669762 +steady,sr,140,56.0,force,front_fy,6.393725726638877e-08 +steady,sr,140,56.0,force,upper_fx,-0.0001923188683576882 +steady,sr,140,56.0,force,upper_fy,0.006434358190745115 +steady,sr,140,56.0,force,lower_fx,-0.00019230967154726386 +steady,sr,140,56.0,force,lower_fy,-0.006434351671487093 +steady,sr,141,56.4,force,front_fx,0.0012212805449962616 +steady,sr,141,56.4,force,front_fy,1.541505412205879e-07 +steady,sr,141,56.4,force,upper_fx,-0.0001904931996250525 +steady,sr,141,56.4,force,upper_fy,0.006438886746764183 +steady,sr,141,56.4,force,lower_fx,-0.0001904292730614543 +steady,sr,141,56.4,force,lower_fy,-0.006438847165554762 +steady,sr,142,56.8,force,front_fx,0.0012203908991068602 +steady,sr,142,56.8,force,front_fy,4.345245585568591e-08 +steady,sr,142,56.8,force,upper_fx,-0.00019229680765420198 +steady,sr,142,56.8,force,upper_fy,0.006440757308155298 +steady,sr,142,56.8,force,lower_fx,-0.00019249311299063265 +steady,sr,142,56.8,force,lower_fy,-0.006440731231123209 +steady,sr,143,57.2,force,front_fx,0.0012180889025330544 +steady,sr,143,57.2,force,front_fy,7.916750810466056e-09 +steady,sr,143,57.2,force,upper_fx,-0.0001965891133295372 +steady,sr,143,57.2,force,upper_fy,0.006437976844608784 +steady,sr,143,57.2,force,lower_fx,-0.00019651955517474562 +steady,sr,143,57.2,force,lower_fy,-0.006438082549721003 +steady,sr,144,57.6,force,front_fx,0.0012178275501355529 +steady,sr,144,57.6,force,front_fy,-1.2561089590690244e-07 +steady,sr,144,57.6,force,upper_fx,-0.00019743773736990988 +steady,sr,144,57.6,force,upper_fy,0.006433552596718073 +steady,sr,144,57.6,force,lower_fx,-0.00019753744709305465 +steady,sr,144,57.6,force,lower_fy,-0.006433448754251003 +steady,sr,145,58.0,force,front_fx,0.0012199289631098509 +steady,sr,145,58.0,force,front_fy,1.8028782733381377e-07 +steady,sr,145,58.0,force,upper_fx,-0.0001943223032867536 +steady,sr,145,58.0,force,upper_fy,0.006432769820094109 +steady,sr,145,58.0,force,lower_fx,-0.00019427247752901167 +steady,sr,145,58.0,force,lower_fy,-0.006432471796870232 +steady,sr,146,58.4,force,front_fx,0.001221082522533834 +steady,sr,146,58.4,force,front_fy,-2.3462780163185926e-08 +steady,sr,146,58.4,force,upper_fx,-0.00019112064910586923 +steady,sr,146,58.4,force,upper_fy,0.006436173804104328 +steady,sr,146,58.4,force,lower_fx,-0.00019115881877951324 +steady,sr,146,58.4,force,lower_fy,-0.006436163559556007 +steady,sr,147,58.8,force,front_fx,0.0012209658743813634 +steady,sr,147,58.8,force,front_fy,-7.12122414370242e-08 +steady,sr,147,58.8,force,upper_fx,-0.00019109300046693534 +steady,sr,147,58.8,force,upper_fy,0.006440232507884502 +steady,sr,147,58.8,force,lower_fx,-0.00019118389172945172 +steady,sr,147,58.8,force,lower_fy,-0.006440231576561928 +steady,sr,148,59.2,force,front_fx,0.0012194598093628883 +steady,sr,148,59.2,force,front_fy,2.0161023073228534e-08 +steady,sr,148,59.2,force,upper_fx,-0.00019419653108343482 +steady,sr,148,59.2,force,upper_fy,0.006440115626901388 +steady,sr,148,59.2,force,lower_fx,-0.00019421368779148906 +steady,sr,148,59.2,force,lower_fy,-0.00643991818651557 +steady,sr,149,59.6,force,front_fx,0.0012176367454230785 +steady,sr,149,59.6,force,front_fy,7.396781853685752e-08 +steady,sr,149,59.6,force,upper_fx,-0.00019732833607122302 +steady,sr,149,59.6,force,upper_fy,0.006435850169509649 +steady,sr,149,59.6,force,lower_fx,-0.00019740326388273388 +steady,sr,149,59.6,force,lower_fy,-0.006435813382267952 +steady,sr,150,60.0,force,front_fx,0.00121879274956882 +steady,sr,150,60.0,force,front_fy,3.0462214084536754e-08 +steady,sr,150,60.0,force,upper_fx,-0.00019637135847005993 +steady,sr,150,60.0,force,upper_fy,0.006432592868804932 +steady,sr,150,60.0,force,lower_fx,-0.00019712300854735076 +steady,sr,150,60.0,force,lower_fy,-0.006433622445911169 +steady,sr,151,60.4,force,front_fx,0.0012204722734168172 +steady,sr,151,60.4,force,front_fy,-1.1180963932488908e-09 +steady,sr,151,60.4,force,upper_fx,-0.00019289027841296047 +steady,sr,151,60.4,force,upper_fy,0.006433980073779821 +steady,sr,151,60.4,force,lower_fx,-0.00019286641327198595 +steady,sr,151,60.4,force,lower_fy,-0.0064340997487306595 +steady,sr,152,60.8,force,front_fx,0.0012212948640808463 +steady,sr,152,60.8,force,front_fy,2.628841677676519e-08 +steady,sr,152,60.8,force,upper_fx,-0.00019055037409998477 +steady,sr,152,60.8,force,upper_fy,0.006438143085688353 +steady,sr,152,60.8,force,lower_fx,-0.00019086999236606061 +steady,sr,152,60.8,force,lower_fy,-0.006438455078750849 +steady,sr,153,61.2,force,front_fx,0.0012205122038722038 +steady,sr,153,61.2,force,front_fy,7.294147508218884e-10 +steady,sr,153,61.2,force,upper_fx,-0.00019210563914384693 +steady,sr,153,61.2,force,upper_fy,0.00644057709723711 +steady,sr,153,61.2,force,lower_fx,-0.00019214976055081934 +steady,sr,153,61.2,force,lower_fy,-0.006440396886318922 +steady,sr,154,61.6,force,front_fx,0.0012183320941403508 +steady,sr,154,61.6,force,front_fy,-3.854672314673735e-08 +steady,sr,154,61.6,force,upper_fx,-0.00019606105342973024 +steady,sr,154,61.6,force,upper_fy,0.006438604090362787 +steady,sr,154,61.6,force,lower_fx,-0.00019602663815021515 +steady,sr,154,61.6,force,lower_fy,-0.006439406890422106 +steady,sr,155,62.0,force,front_fx,0.0012178983306512237 +steady,sr,155,62.0,force,front_fy,-4.925576035930135e-08 +steady,sr,155,62.0,force,upper_fx,-0.00019739297567866743 +steady,sr,155,62.0,force,upper_fy,0.006434030365198851 +steady,sr,155,62.0,force,lower_fx,-0.0001973665494006127 +steady,sr,155,62.0,force,lower_fy,-0.006433979142457247 +steady,sr,156,62.4,force,front_fx,0.0012197198811918497 +steady,sr,156,62.4,force,front_fy,3.9490551273502206e-08 +steady,sr,156,62.4,force,upper_fx,-0.00019485456869006157 +steady,sr,156,62.4,force,upper_fy,0.006432675290852785 +steady,sr,156,62.4,force,lower_fx,-0.00019480899209156632 +steady,sr,156,62.4,force,lower_fy,-0.006432539317756891 +steady,sr,157,62.8,force,front_fx,0.001220829552039504 +steady,sr,157,62.8,force,front_fy,-3.75662594365167e-08 +steady,sr,157,62.8,force,upper_fx,-0.0001915463071782142 +steady,sr,157,62.8,force,upper_fy,0.006435604766011238 +steady,sr,157,62.8,force,lower_fx,-0.0001916293113026768 +steady,sr,157,62.8,force,lower_fy,-0.006435731425881386 +steady,sr,158,63.2,force,front_fx,0.0012211190769448876 +steady,sr,158,63.2,force,front_fy,9.397947309253141e-08 +steady,sr,158,63.2,force,upper_fx,-0.0001910097198560834 +steady,sr,158,63.2,force,upper_fy,0.006438761483877897 +steady,sr,158,63.2,force,lower_fx,-0.00019157910719513893 +steady,sr,158,63.2,force,lower_fy,-0.006440088618546724 +steady,sr,159,63.6,force,front_fx,0.0012197501491755247 +steady,sr,159,63.6,force,front_fy,-3.2122699167302926e-08 +steady,sr,159,63.6,force,upper_fx,-0.00019364460604265332 +steady,sr,159,63.6,force,upper_fy,0.006440171040594578 +steady,sr,159,63.6,force,lower_fx,-0.0001936118642333895 +steady,sr,159,63.6,force,lower_fy,-0.006438956130295992 +steady,sr,160,64.0,force,front_fx,0.0012177112512290478 +steady,sr,160,64.0,force,front_fy,-1.6460326435208117e-08 +steady,sr,160,64.0,force,upper_fx,-0.00019712172797881067 +steady,sr,160,64.0,force,upper_fy,0.0064365798607468605 +steady,sr,160,64.0,force,lower_fx,-0.0001970919402083382 +steady,sr,160,64.0,force,lower_fy,-0.006436570081859827 +steady,sr,161,64.4,force,front_fx,0.0012186230160295963 +steady,sr,161,64.4,force,front_fy,-3.78910058884685e-08 +steady,sr,161,64.4,force,upper_fx,-0.00019656440417747945 +steady,sr,161,64.4,force,upper_fy,0.006432875990867615 +steady,sr,161,64.4,force,lower_fx,-0.0001965277479030192 +steady,sr,161,64.4,force,lower_fy,-0.006432969588786364 +steady,sr,162,64.8,force,front_fx,0.0012202992802485824 +steady,sr,162,64.8,force,front_fy,1.3948010746389627e-08 +steady,sr,162,64.8,force,upper_fx,-0.00019344378961250186 +steady,sr,162,64.8,force,upper_fy,0.006433607544749975 +steady,sr,162,64.8,force,lower_fx,-0.00019355535914655775 +steady,sr,162,64.8,force,lower_fy,-0.0064339651726186275 +steady,sr,163,65.2,force,front_fx,0.0012211529538035393 +steady,sr,163,65.2,force,front_fy,1.1414383749297485e-07 +steady,sr,163,65.2,force,upper_fx,-0.0001908852718770504 +steady,sr,163,65.2,force,upper_fy,0.006437493953853846 +steady,sr,163,65.2,force,lower_fx,-0.0001907602563733235 +steady,sr,163,65.2,force,lower_fy,-0.0064384364522993565 +steady,sr,164,65.6,force,front_fx,0.001220619771629572 +steady,sr,164,65.6,force,front_fy,-5.855487117401026e-08 +steady,sr,164,65.6,force,upper_fx,-0.00019174230692442507 +steady,sr,164,65.6,force,upper_fy,0.006440183613449335 +steady,sr,164,65.6,force,lower_fx,-0.00019175661145709455 +steady,sr,164,65.6,force,lower_fy,-0.00644032284617424 +steady,sr,165,66.0,force,front_fx,0.0012185873929411173 +steady,sr,165,66.0,force,front_fy,1.8671389767632718e-08 +steady,sr,165,66.0,force,upper_fx,-0.0001954924809979275 +steady,sr,165,66.0,force,upper_fy,0.006438903976231813 +steady,sr,165,66.0,force,lower_fx,-0.000195418149814941 +steady,sr,165,66.0,force,lower_fy,-0.006439000368118286 +steady,sr,166,66.4,force,front_fx,0.0012178763281553984 +steady,sr,166,66.4,force,front_fy,-5.081543363871788e-08 +steady,sr,166,66.4,force,upper_fx,-0.00019726318714674562 +steady,sr,166,66.4,force,upper_fy,0.006434545386582613 +steady,sr,166,66.4,force,lower_fx,-0.00019724205776583403 +steady,sr,166,66.4,force,lower_fy,-0.0064347051084041595 +steady,sr,167,66.8,force,front_fx,0.0012193951988592744 +steady,sr,167,66.8,force,front_fy,-5.453362916796323e-08 +steady,sr,167,66.8,force,upper_fx,-0.00019535563478711993 +steady,sr,167,66.8,force,upper_fy,0.006432699970901012 +steady,sr,167,66.8,force,lower_fx,-0.00019533174054231495 +steady,sr,167,66.8,force,lower_fy,-0.006433031987398863 +steady,sr,168,67.2,force,front_fx,0.00122073944658041 +steady,sr,168,67.2,force,front_fy,-3.1191738969482685e-08 +steady,sr,168,67.2,force,upper_fx,-0.00019197310029994696 +steady,sr,168,67.2,force,upper_fy,0.006435074377804995 +steady,sr,168,67.2,force,lower_fx,-0.00019191850151401013 +steady,sr,168,67.2,force,lower_fy,-0.006435336545109749 +steady,sr,169,67.6,force,front_fx,0.0012210772838443518 +steady,sr,169,67.6,force,front_fy,-1.0457297250354713e-08 +steady,sr,169,67.6,force,upper_fx,-0.00019106075342278928 +steady,sr,169,67.6,force,upper_fy,0.006439040414988995 +steady,sr,169,67.6,force,lower_fx,-0.0001910422433866188 +steady,sr,169,67.6,force,lower_fy,-0.006439134478569031 +steady,sr,170,68.0,force,front_fx,0.0012199784396216273 +steady,sr,170,68.0,force,front_fy,8.125578432327529e-08 +steady,sr,170,68.0,force,upper_fx,-0.00019314224482513964 +steady,sr,170,68.0,force,upper_fy,0.006440138444304466 +steady,sr,170,68.0,force,lower_fx,-0.00019316733232699335 +steady,sr,170,68.0,force,lower_fy,-0.006440342869609594 +steady,sr,171,68.4,force,front_fx,0.0012179504847154021 +steady,sr,171,68.4,force,front_fy,-8.95331311312475e-08 +steady,sr,171,68.4,force,upper_fx,-0.00019667568267323077 +steady,sr,171,68.4,force,upper_fy,0.0064371987245976925 +steady,sr,171,68.4,force,lower_fx,-0.00019667991728056222 +steady,sr,171,68.4,force,lower_fy,-0.0064371065236628056 +steady,sr,172,68.8,force,front_fx,0.001218469813466072 +steady,sr,172,68.8,force,front_fy,6.691283260806813e-08 +steady,sr,172,68.8,force,upper_fx,-0.00019666999287437648 +steady,sr,172,68.8,force,upper_fy,0.006433427799493074 +steady,sr,172,68.8,force,lower_fx,-0.0001966448180610314 +steady,sr,172,68.8,force,lower_fy,-0.006433072034269571 +steady,sr,173,69.2,force,front_fx,0.0012201000936329365 +steady,sr,173,69.2,force,front_fy,-3.2168845365276866e-08 +steady,sr,173,69.2,force,upper_fx,-0.0001938383065862581 +steady,sr,173,69.2,force,upper_fy,0.006433418020606041 +steady,sr,173,69.2,force,lower_fx,-0.00019400817109271884 +steady,sr,173,69.2,force,lower_fy,-0.006433425005525351 +steady,sr,174,69.6,force,front_fx,0.0012210486456751823 +steady,sr,174,69.6,force,front_fy,-6.016074394210591e-08 +steady,sr,174,69.6,force,upper_fx,-0.00019112411246169358 +steady,sr,174,69.6,force,upper_fy,0.0064369007013738155 +steady,sr,174,69.6,force,lower_fx,-0.00019127941050101072 +steady,sr,174,69.6,force,lower_fy,-0.006436982192099094 +steady,sr,175,70.0,force,front_fx,0.0012207085965201259 +steady,sr,175,70.0,force,front_fy,-1.0258379035121834e-07 +steady,sr,175,70.0,force,upper_fx,-0.00019159159273840487 +steady,sr,175,70.0,force,upper_fy,0.006439984310418367 +steady,sr,175,70.0,force,lower_fx,-0.00019160201190970838 +steady,sr,175,70.0,force,lower_fy,-0.006440012250095606 +steady,sr,176,70.4,force,front_fx,0.001218931982293725 +steady,sr,176,70.4,force,front_fy,2.016218836331518e-08 +steady,sr,176,70.4,force,upper_fx,-0.00019483381765894592 +steady,sr,176,70.4,force,upper_fy,0.006439311895519495 +steady,sr,176,70.4,force,lower_fx,-0.00019485231314320117 +steady,sr,176,70.4,force,lower_fy,-0.0064393640495836735 +steady,sr,177,70.8,force,front_fx,0.0012179241748526692 +steady,sr,177,70.8,force,front_fy,-3.4601161047476126e-08 +steady,sr,177,70.8,force,upper_fx,-0.00019704902661032975 +steady,sr,177,70.8,force,upper_fy,0.006435210816562176 +steady,sr,177,70.8,force,lower_fx,-0.00019713476649485528 +steady,sr,177,70.8,force,lower_fy,-0.0064351861365139484 +steady,sr,178,71.2,force,front_fx,0.0012191814603284001 +steady,sr,178,71.2,force,front_fy,-7.306385896299616e-08 +steady,sr,178,71.2,force,upper_fx,-0.0001957315398612991 +steady,sr,178,71.2,force,upper_fy,0.0064329481683671474 +steady,sr,178,71.2,force,lower_fx,-0.00019608069851528853 +steady,sr,178,71.2,force,lower_fy,-0.006432853173464537 +steady,sr,179,71.6,force,front_fx,0.0012205357197672129 +steady,sr,179,71.6,force,front_fy,-1.5677214193487998e-08 +steady,sr,179,71.6,force,upper_fx,-0.00019236968364566565 +steady,sr,179,71.6,force,upper_fy,0.0064347428269684315 +steady,sr,179,71.6,force,lower_fx,-0.0001925099641084671 +steady,sr,179,71.6,force,lower_fy,-0.006434583105146885 +steady,sr,180,72.0,force,front_fx,0.001221094629727304 +steady,sr,180,72.0,force,front_fy,8.745060853243558e-08 +steady,sr,180,72.0,force,upper_fx,-0.0001907936530187726 +steady,sr,180,72.0,force,upper_fy,0.006438347510993481 +steady,sr,180,72.0,force,lower_fx,-0.00019100873032584786 +steady,sr,180,72.0,force,lower_fy,-0.006438451819121838 +steady,sr,181,72.4,force,front_fx,0.0012202064972370863 +steady,sr,181,72.4,force,front_fy,-3.249973801189299e-08 +steady,sr,181,72.4,force,upper_fx,-0.00019276485545560718 +steady,sr,181,72.4,force,upper_fy,0.006440176162868738 +steady,sr,181,72.4,force,lower_fx,-0.00019278941908851266 +steady,sr,181,72.4,force,lower_fy,-0.006440063007175922 +steady,sr,182,72.8,force,front_fx,0.001218052813783288 +steady,sr,182,72.8,force,front_fy,4.842235412638729e-08 +steady,sr,182,72.8,force,upper_fx,-0.00019626827270258218 +steady,sr,182,72.8,force,upper_fy,0.0064377374947071075 +steady,sr,182,72.8,force,lower_fx,-0.00019668143067974597 +steady,sr,182,72.8,force,lower_fy,-0.006435532588511705 +steady,sr,183,73.2,force,front_fx,0.0012184384977445006 +steady,sr,183,73.2,force,front_fy,-3.1153977175790715e-08 +steady,sr,183,73.2,force,upper_fx,-0.0001967992284335196 +steady,sr,183,73.2,force,upper_fy,0.006433833856135607 +steady,sr,183,73.2,force,lower_fx,-0.0001967285352293402 +steady,sr,183,73.2,force,lower_fy,-0.006433898117393255 +steady,sr,184,73.6,force,front_fx,0.0012198713375255466 +steady,sr,184,73.6,force,front_fy,1.0835952934939996e-07 +steady,sr,184,73.6,force,upper_fx,-0.00019427816732786596 +steady,sr,184,73.6,force,upper_fy,0.00643340777605772 +steady,sr,184,73.6,force,lower_fx,-0.0001942764938576147 +steady,sr,184,73.6,force,lower_fy,-0.006434271112084389 +steady,sr,185,74.0,force,front_fx,0.0012208704138174653 +steady,sr,185,74.0,force,front_fy,3.134962867079594e-08 +steady,sr,185,74.0,force,upper_fx,-0.0001916135079227388 +steady,sr,185,74.0,force,upper_fy,0.006436428986489773 +steady,sr,185,74.0,force,lower_fx,-0.00019157024507876486 +steady,sr,185,74.0,force,lower_fy,-0.006436422932893038 +steady,sr,186,74.4,force,front_fx,0.0012209496926516294 +steady,sr,186,74.4,force,front_fy,-2.5797708858021906e-08 +steady,sr,186,74.4,force,upper_fx,-0.00019143031386192888 +steady,sr,186,74.4,force,upper_fy,0.006439553573727608 +steady,sr,186,74.4,force,lower_fx,-0.00019146980775985867 +steady,sr,186,74.4,force,lower_fy,-0.0064395093359053135 +steady,sr,187,74.8,force,front_fx,0.0012191602727398276 +steady,sr,187,74.8,force,front_fy,-2.154747491545095e-09 +steady,sr,187,74.8,force,upper_fx,-0.0001943601673701778 +steady,sr,187,74.8,force,upper_fy,0.006439476739615202 +steady,sr,187,74.8,force,lower_fx,-0.00019428068480920047 +steady,sr,187,74.8,force,lower_fy,-0.006438873242586851 +steady,sr,188,75.2,force,front_fx,0.0012179369805380702 +steady,sr,188,75.2,force,front_fy,-4.8866766633182124e-08 +steady,sr,188,75.2,force,upper_fx,-0.00019690560293383896 +steady,sr,188,75.2,force,upper_fy,0.006435811519622803 +steady,sr,188,75.2,force,lower_fx,-0.00019686948508024216 +steady,sr,188,75.2,force,lower_fy,-0.006436575204133987 +steady,sr,189,75.6,force,front_fx,0.001218997174873948 +steady,sr,189,75.6,force,front_fy,3.679342697182619e-08 +steady,sr,189,75.6,force,upper_fx,-0.00019594733021222055 +steady,sr,189,75.6,force,upper_fy,0.0064332312904298306 +steady,sr,189,75.6,force,lower_fx,-0.00019582720415201038 +steady,sr,189,75.6,force,lower_fy,-0.00643331091850996 +steady,sr,190,76.0,force,front_fx,0.0012203832156956196 +steady,sr,190,76.0,force,front_fy,4.89652940416363e-08 +steady,sr,190,76.0,force,upper_fx,-0.00019304148736409843 +steady,sr,190,76.0,force,upper_fy,0.006434366572648287 +steady,sr,190,76.0,force,lower_fx,-0.00019305148452986032 +steady,sr,190,76.0,force,lower_fy,-0.006434442475438118 +steady,sr,191,76.4,force,front_fx,0.0012210187269374728 +steady,sr,191,76.4,force,front_fy,3.1259624222457205e-08 +steady,sr,191,76.4,force,upper_fx,-0.00019116626936011016 +steady,sr,191,76.4,force,upper_fy,0.0064379931427538395 +steady,sr,191,76.4,force,lower_fx,-0.00019110292487312108 +steady,sr,191,76.4,force,lower_fy,-0.006438151467591524 +steady,sr,192,76.8,force,front_fx,0.0012203934602439404 +steady,sr,192,76.8,force,front_fy,-2.2174498681692967e-08 +steady,sr,192,76.8,force,upper_fx,-0.00019245894509367645 +steady,sr,192,76.8,force,upper_fy,0.006439973600208759 +steady,sr,192,76.8,force,lower_fx,-0.0001932127051986754 +steady,sr,192,76.8,force,lower_fy,-0.006440690718591213 +steady,sr,193,77.2,force,front_fx,0.001218333374708891 +steady,sr,193,77.2,force,front_fy,9.943578049842472e-08 +steady,sr,193,77.2,force,upper_fx,-0.0001957850909093395 +steady,sr,193,77.2,force,upper_fy,0.00643805880099535 +steady,sr,193,77.2,force,lower_fx,-0.00019574741600081325 +steady,sr,193,77.2,force,lower_fy,-0.006438118871301413 +steady,sr,194,77.6,force,front_fx,0.0012182982172816992 +steady,sr,194,77.6,force,front_fy,-2.8216819103477064e-08 +steady,sr,194,77.6,force,upper_fx,-0.00019684428116306663 +steady,sr,194,77.6,force,upper_fy,0.006434299983084202 +steady,sr,194,77.6,force,lower_fx,-0.00019685007282532752 +steady,sr,194,77.6,force,lower_fy,-0.006434340961277485 +steady,sr,195,78.0,force,front_fx,0.0012196905445307493 +steady,sr,195,78.0,force,front_fy,-6.272762931303077e-08 +steady,sr,195,78.0,force,upper_fx,-0.0001946261472767219 +steady,sr,195,78.0,force,upper_fy,0.006433289498090744 +steady,sr,195,78.0,force,lower_fx,-0.0001946239499375224 +steady,sr,195,78.0,force,lower_fy,-0.006433417089283466 +steady,sr,196,78.4,force,front_fx,0.0012207634281367064 +steady,sr,196,78.4,force,front_fy,1.191277334555707e-07 +steady,sr,196,78.4,force,upper_fx,-0.00019152034656144679 +steady,sr,196,78.4,force,upper_fy,0.006436292547732592 +steady,sr,196,78.4,force,lower_fx,-0.00019190844614058733 +steady,sr,196,78.4,force,lower_fy,-0.0064359502866864204 +steady,sr,197,78.8,force,front_fx,0.001220897538587451 +steady,sr,197,78.8,force,front_fy,2.0557585855840443e-07 +steady,sr,197,78.8,force,upper_fx,-0.00019164920377079397 +steady,sr,197,78.8,force,upper_fy,0.006438927259296179 +steady,sr,197,78.8,force,lower_fx,-0.00019149176659993827 +steady,sr,197,78.8,force,lower_fy,-0.006439130287617445 +steady,sr,198,79.2,force,front_fx,0.0012195567833259702 +steady,sr,198,79.2,force,front_fy,-1.4407850912334652e-08 +steady,sr,198,79.2,force,upper_fx,-0.00019387988140806556 +steady,sr,198,79.2,force,upper_fy,0.006439575459808111 +steady,sr,198,79.2,force,lower_fx,-0.00019382579193916172 +steady,sr,198,79.2,force,lower_fy,-0.006439757999032736 +steady,sr,199,79.6,force,front_fx,0.0012180618941783905 +steady,sr,199,79.6,force,front_fy,2.8028734888607687e-08 +steady,sr,199,79.6,force,upper_fx,-0.00019652470655273646 +steady,sr,199,79.6,force,upper_fy,0.006436011753976345 +steady,sr,199,79.6,force,lower_fx,-0.00019660651742015034 +steady,sr,199,79.6,force,lower_fy,-0.00643462548032403 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-3.0 +steady,sr,0,0.0,alpha,lower,3.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-3.0 +steady,sr,1,0.4,alpha,lower,3.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-3.0 +steady,sr,2,0.8,alpha,lower,3.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-3.0 +steady,sr,3,1.2,alpha,lower,3.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-3.0 +steady,sr,4,1.6,alpha,lower,3.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-3.0 +steady,sr,5,2.0,alpha,lower,3.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-3.0 +steady,sr,6,2.4,alpha,lower,3.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-3.0 +steady,sr,7,2.8,alpha,lower,3.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-3.0 +steady,sr,8,3.2,alpha,lower,3.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-3.0 +steady,sr,9,3.6,alpha,lower,3.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-3.0 +steady,sr,10,4.0,alpha,lower,3.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-3.0 +steady,sr,11,4.4,alpha,lower,3.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-3.0 +steady,sr,12,4.8,alpha,lower,3.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-3.0 +steady,sr,13,5.2,alpha,lower,3.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-3.0 +steady,sr,14,5.6,alpha,lower,3.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-3.0 +steady,sr,15,6.0,alpha,lower,3.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-3.0 +steady,sr,16,6.4,alpha,lower,3.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-3.0 +steady,sr,17,6.8,alpha,lower,3.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-3.0 +steady,sr,18,7.2,alpha,lower,3.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-3.0 +steady,sr,19,7.6,alpha,lower,3.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-3.0 +steady,sr,20,8.0,alpha,lower,3.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-3.0 +steady,sr,21,8.4,alpha,lower,3.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-3.0 +steady,sr,22,8.8,alpha,lower,3.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-3.0 +steady,sr,23,9.2,alpha,lower,3.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-3.0 +steady,sr,24,9.6,alpha,lower,3.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-3.0 +steady,sr,25,10.0,alpha,lower,3.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-3.0 +steady,sr,26,10.4,alpha,lower,3.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-3.0 +steady,sr,27,10.8,alpha,lower,3.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-3.0 +steady,sr,28,11.2,alpha,lower,3.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-3.0 +steady,sr,29,11.6,alpha,lower,3.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-3.0 +steady,sr,30,12.0,alpha,lower,3.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-3.0 +steady,sr,31,12.4,alpha,lower,3.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-3.0 +steady,sr,32,12.8,alpha,lower,3.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-3.0 +steady,sr,33,13.2,alpha,lower,3.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-3.0 +steady,sr,34,13.6,alpha,lower,3.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-3.0 +steady,sr,35,14.0,alpha,lower,3.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-3.0 +steady,sr,36,14.4,alpha,lower,3.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-3.0 +steady,sr,37,14.8,alpha,lower,3.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-3.0 +steady,sr,38,15.2,alpha,lower,3.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-3.0 +steady,sr,39,15.6,alpha,lower,3.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-3.0 +steady,sr,40,16.0,alpha,lower,3.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-3.0 +steady,sr,41,16.4,alpha,lower,3.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-3.0 +steady,sr,42,16.8,alpha,lower,3.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-3.0 +steady,sr,43,17.2,alpha,lower,3.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-3.0 +steady,sr,44,17.6,alpha,lower,3.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-3.0 +steady,sr,45,18.0,alpha,lower,3.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-3.0 +steady,sr,46,18.4,alpha,lower,3.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-3.0 +steady,sr,47,18.8,alpha,lower,3.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-3.0 +steady,sr,48,19.2,alpha,lower,3.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-3.0 +steady,sr,49,19.6,alpha,lower,3.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-3.0 +steady,sr,50,20.0,alpha,lower,3.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-3.0 +steady,sr,51,20.4,alpha,lower,3.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-3.0 +steady,sr,52,20.8,alpha,lower,3.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-3.0 +steady,sr,53,21.2,alpha,lower,3.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-3.0 +steady,sr,54,21.6,alpha,lower,3.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-3.0 +steady,sr,55,22.0,alpha,lower,3.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-3.0 +steady,sr,56,22.4,alpha,lower,3.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-3.0 +steady,sr,57,22.8,alpha,lower,3.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-3.0 +steady,sr,58,23.2,alpha,lower,3.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-3.0 +steady,sr,59,23.6,alpha,lower,3.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-3.0 +steady,sr,60,24.0,alpha,lower,3.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-3.0 +steady,sr,61,24.4,alpha,lower,3.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-3.0 +steady,sr,62,24.8,alpha,lower,3.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-3.0 +steady,sr,63,25.2,alpha,lower,3.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-3.0 +steady,sr,64,25.6,alpha,lower,3.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-3.0 +steady,sr,65,26.0,alpha,lower,3.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-3.0 +steady,sr,66,26.4,alpha,lower,3.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-3.0 +steady,sr,67,26.8,alpha,lower,3.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-3.0 +steady,sr,68,27.2,alpha,lower,3.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-3.0 +steady,sr,69,27.6,alpha,lower,3.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-3.0 +steady,sr,70,28.0,alpha,lower,3.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-3.0 +steady,sr,71,28.4,alpha,lower,3.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-3.0 +steady,sr,72,28.8,alpha,lower,3.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-3.0 +steady,sr,73,29.2,alpha,lower,3.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-3.0 +steady,sr,74,29.6,alpha,lower,3.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-3.0 +steady,sr,75,30.0,alpha,lower,3.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-3.0 +steady,sr,76,30.4,alpha,lower,3.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-3.0 +steady,sr,77,30.8,alpha,lower,3.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-3.0 +steady,sr,78,31.2,alpha,lower,3.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-3.0 +steady,sr,79,31.6,alpha,lower,3.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-3.0 +steady,sr,80,32.0,alpha,lower,3.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-3.0 +steady,sr,81,32.4,alpha,lower,3.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-3.0 +steady,sr,82,32.8,alpha,lower,3.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-3.0 +steady,sr,83,33.2,alpha,lower,3.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-3.0 +steady,sr,84,33.6,alpha,lower,3.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-3.0 +steady,sr,85,34.0,alpha,lower,3.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-3.0 +steady,sr,86,34.4,alpha,lower,3.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-3.0 +steady,sr,87,34.8,alpha,lower,3.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-3.0 +steady,sr,88,35.2,alpha,lower,3.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-3.0 +steady,sr,89,35.6,alpha,lower,3.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-3.0 +steady,sr,90,36.0,alpha,lower,3.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-3.0 +steady,sr,91,36.4,alpha,lower,3.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-3.0 +steady,sr,92,36.8,alpha,lower,3.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-3.0 +steady,sr,93,37.2,alpha,lower,3.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-3.0 +steady,sr,94,37.6,alpha,lower,3.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-3.0 +steady,sr,95,38.0,alpha,lower,3.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-3.0 +steady,sr,96,38.4,alpha,lower,3.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-3.0 +steady,sr,97,38.8,alpha,lower,3.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-3.0 +steady,sr,98,39.2,alpha,lower,3.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-3.0 +steady,sr,99,39.6,alpha,lower,3.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-3.0 +steady,sr,100,40.0,alpha,lower,3.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-3.0 +steady,sr,101,40.4,alpha,lower,3.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-3.0 +steady,sr,102,40.8,alpha,lower,3.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-3.0 +steady,sr,103,41.2,alpha,lower,3.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-3.0 +steady,sr,104,41.6,alpha,lower,3.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-3.0 +steady,sr,105,42.0,alpha,lower,3.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-3.0 +steady,sr,106,42.4,alpha,lower,3.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-3.0 +steady,sr,107,42.8,alpha,lower,3.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-3.0 +steady,sr,108,43.2,alpha,lower,3.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-3.0 +steady,sr,109,43.6,alpha,lower,3.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-3.0 +steady,sr,110,44.0,alpha,lower,3.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-3.0 +steady,sr,111,44.4,alpha,lower,3.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-3.0 +steady,sr,112,44.8,alpha,lower,3.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-3.0 +steady,sr,113,45.2,alpha,lower,3.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-3.0 +steady,sr,114,45.6,alpha,lower,3.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-3.0 +steady,sr,115,46.0,alpha,lower,3.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-3.0 +steady,sr,116,46.4,alpha,lower,3.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-3.0 +steady,sr,117,46.8,alpha,lower,3.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-3.0 +steady,sr,118,47.2,alpha,lower,3.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-3.0 +steady,sr,119,47.6,alpha,lower,3.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-3.0 +steady,sr,120,48.0,alpha,lower,3.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-3.0 +steady,sr,121,48.4,alpha,lower,3.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-3.0 +steady,sr,122,48.8,alpha,lower,3.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-3.0 +steady,sr,123,49.2,alpha,lower,3.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-3.0 +steady,sr,124,49.6,alpha,lower,3.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-3.0 +steady,sr,125,50.0,alpha,lower,3.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-3.0 +steady,sr,126,50.4,alpha,lower,3.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-3.0 +steady,sr,127,50.8,alpha,lower,3.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-3.0 +steady,sr,128,51.2,alpha,lower,3.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-3.0 +steady,sr,129,51.6,alpha,lower,3.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-3.0 +steady,sr,130,52.0,alpha,lower,3.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-3.0 +steady,sr,131,52.4,alpha,lower,3.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-3.0 +steady,sr,132,52.8,alpha,lower,3.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-3.0 +steady,sr,133,53.2,alpha,lower,3.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-3.0 +steady,sr,134,53.6,alpha,lower,3.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-3.0 +steady,sr,135,54.0,alpha,lower,3.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-3.0 +steady,sr,136,54.4,alpha,lower,3.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-3.0 +steady,sr,137,54.8,alpha,lower,3.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-3.0 +steady,sr,138,55.2,alpha,lower,3.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-3.0 +steady,sr,139,55.6,alpha,lower,3.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-3.0 +steady,sr,140,56.0,alpha,lower,3.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-3.0 +steady,sr,141,56.4,alpha,lower,3.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-3.0 +steady,sr,142,56.8,alpha,lower,3.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-3.0 +steady,sr,143,57.2,alpha,lower,3.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-3.0 +steady,sr,144,57.6,alpha,lower,3.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-3.0 +steady,sr,145,58.0,alpha,lower,3.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-3.0 +steady,sr,146,58.4,alpha,lower,3.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-3.0 +steady,sr,147,58.8,alpha,lower,3.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-3.0 +steady,sr,148,59.2,alpha,lower,3.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-3.0 +steady,sr,149,59.6,alpha,lower,3.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-3.0 +steady,sr,150,60.0,alpha,lower,3.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-3.0 +steady,sr,151,60.4,alpha,lower,3.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-3.0 +steady,sr,152,60.8,alpha,lower,3.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-3.0 +steady,sr,153,61.2,alpha,lower,3.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-3.0 +steady,sr,154,61.6,alpha,lower,3.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-3.0 +steady,sr,155,62.0,alpha,lower,3.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-3.0 +steady,sr,156,62.4,alpha,lower,3.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-3.0 +steady,sr,157,62.8,alpha,lower,3.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-3.0 +steady,sr,158,63.2,alpha,lower,3.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-3.0 +steady,sr,159,63.6,alpha,lower,3.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-3.0 +steady,sr,160,64.0,alpha,lower,3.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-3.0 +steady,sr,161,64.4,alpha,lower,3.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-3.0 +steady,sr,162,64.8,alpha,lower,3.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-3.0 +steady,sr,163,65.2,alpha,lower,3.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-3.0 +steady,sr,164,65.6,alpha,lower,3.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-3.0 +steady,sr,165,66.0,alpha,lower,3.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-3.0 +steady,sr,166,66.4,alpha,lower,3.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-3.0 +steady,sr,167,66.8,alpha,lower,3.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-3.0 +steady,sr,168,67.2,alpha,lower,3.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-3.0 +steady,sr,169,67.6,alpha,lower,3.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-3.0 +steady,sr,170,68.0,alpha,lower,3.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-3.0 +steady,sr,171,68.4,alpha,lower,3.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-3.0 +steady,sr,172,68.8,alpha,lower,3.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-3.0 +steady,sr,173,69.2,alpha,lower,3.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-3.0 +steady,sr,174,69.6,alpha,lower,3.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-3.0 +steady,sr,175,70.0,alpha,lower,3.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-3.0 +steady,sr,176,70.4,alpha,lower,3.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-3.0 +steady,sr,177,70.8,alpha,lower,3.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-3.0 +steady,sr,178,71.2,alpha,lower,3.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-3.0 +steady,sr,179,71.6,alpha,lower,3.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-3.0 +steady,sr,180,72.0,alpha,lower,3.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-3.0 +steady,sr,181,72.4,alpha,lower,3.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-3.0 +steady,sr,182,72.8,alpha,lower,3.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-3.0 +steady,sr,183,73.2,alpha,lower,3.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-3.0 +steady,sr,184,73.6,alpha,lower,3.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-3.0 +steady,sr,185,74.0,alpha,lower,3.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-3.0 +steady,sr,186,74.4,alpha,lower,3.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-3.0 +steady,sr,187,74.8,alpha,lower,3.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-3.0 +steady,sr,188,75.2,alpha,lower,3.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-3.0 +steady,sr,189,75.6,alpha,lower,3.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-3.0 +steady,sr,190,76.0,alpha,lower,3.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-3.0 +steady,sr,191,76.4,alpha,lower,3.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-3.0 +steady,sr,192,76.8,alpha,lower,3.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-3.0 +steady,sr,193,77.2,alpha,lower,3.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-3.0 +steady,sr,194,77.6,alpha,lower,3.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-3.0 +steady,sr,195,78.0,alpha,lower,3.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-3.0 +steady,sr,196,78.4,alpha,lower,3.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-3.0 +steady,sr,197,78.8,alpha,lower,3.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-3.0 +steady,sr,198,79.2,alpha,lower,3.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-3.0 +steady,sr,199,79.6,alpha,lower,3.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.03 +steady,sr,0,0.0,omega,lower,0.03 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.03 +steady,sr,1,0.4,omega,lower,0.03 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.03 +steady,sr,2,0.8,omega,lower,0.03 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.03 +steady,sr,3,1.2,omega,lower,0.03 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.03 +steady,sr,4,1.6,omega,lower,0.03 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.03 +steady,sr,5,2.0,omega,lower,0.03 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.03 +steady,sr,6,2.4,omega,lower,0.03 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.03 +steady,sr,7,2.8,omega,lower,0.03 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.03 +steady,sr,8,3.2,omega,lower,0.03 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.03 +steady,sr,9,3.6,omega,lower,0.03 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.03 +steady,sr,10,4.0,omega,lower,0.03 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.03 +steady,sr,11,4.4,omega,lower,0.03 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.03 +steady,sr,12,4.8,omega,lower,0.03 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.03 +steady,sr,13,5.2,omega,lower,0.03 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.03 +steady,sr,14,5.6,omega,lower,0.03 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.03 +steady,sr,15,6.0,omega,lower,0.03 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.03 +steady,sr,16,6.4,omega,lower,0.03 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.03 +steady,sr,17,6.8,omega,lower,0.03 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.03 +steady,sr,18,7.2,omega,lower,0.03 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.03 +steady,sr,19,7.6,omega,lower,0.03 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.03 +steady,sr,20,8.0,omega,lower,0.03 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.03 +steady,sr,21,8.4,omega,lower,0.03 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.03 +steady,sr,22,8.8,omega,lower,0.03 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.03 +steady,sr,23,9.2,omega,lower,0.03 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.03 +steady,sr,24,9.6,omega,lower,0.03 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.03 +steady,sr,25,10.0,omega,lower,0.03 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.03 +steady,sr,26,10.4,omega,lower,0.03 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.03 +steady,sr,27,10.8,omega,lower,0.03 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.03 +steady,sr,28,11.2,omega,lower,0.03 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.03 +steady,sr,29,11.6,omega,lower,0.03 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.03 +steady,sr,30,12.0,omega,lower,0.03 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.03 +steady,sr,31,12.4,omega,lower,0.03 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.03 +steady,sr,32,12.8,omega,lower,0.03 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.03 +steady,sr,33,13.2,omega,lower,0.03 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.03 +steady,sr,34,13.6,omega,lower,0.03 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.03 +steady,sr,35,14.0,omega,lower,0.03 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.03 +steady,sr,36,14.4,omega,lower,0.03 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.03 +steady,sr,37,14.8,omega,lower,0.03 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.03 +steady,sr,38,15.2,omega,lower,0.03 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.03 +steady,sr,39,15.6,omega,lower,0.03 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.03 +steady,sr,40,16.0,omega,lower,0.03 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.03 +steady,sr,41,16.4,omega,lower,0.03 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.03 +steady,sr,42,16.8,omega,lower,0.03 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.03 +steady,sr,43,17.2,omega,lower,0.03 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.03 +steady,sr,44,17.6,omega,lower,0.03 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.03 +steady,sr,45,18.0,omega,lower,0.03 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.03 +steady,sr,46,18.4,omega,lower,0.03 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.03 +steady,sr,47,18.8,omega,lower,0.03 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.03 +steady,sr,48,19.2,omega,lower,0.03 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.03 +steady,sr,49,19.6,omega,lower,0.03 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.03 +steady,sr,50,20.0,omega,lower,0.03 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.03 +steady,sr,51,20.4,omega,lower,0.03 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.03 +steady,sr,52,20.8,omega,lower,0.03 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.03 +steady,sr,53,21.2,omega,lower,0.03 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.03 +steady,sr,54,21.6,omega,lower,0.03 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.03 +steady,sr,55,22.0,omega,lower,0.03 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.03 +steady,sr,56,22.4,omega,lower,0.03 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.03 +steady,sr,57,22.8,omega,lower,0.03 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.03 +steady,sr,58,23.2,omega,lower,0.03 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.03 +steady,sr,59,23.6,omega,lower,0.03 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.03 +steady,sr,60,24.0,omega,lower,0.03 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.03 +steady,sr,61,24.4,omega,lower,0.03 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.03 +steady,sr,62,24.8,omega,lower,0.03 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.03 +steady,sr,63,25.2,omega,lower,0.03 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.03 +steady,sr,64,25.6,omega,lower,0.03 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.03 +steady,sr,65,26.0,omega,lower,0.03 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.03 +steady,sr,66,26.4,omega,lower,0.03 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.03 +steady,sr,67,26.8,omega,lower,0.03 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.03 +steady,sr,68,27.2,omega,lower,0.03 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.03 +steady,sr,69,27.6,omega,lower,0.03 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.03 +steady,sr,70,28.0,omega,lower,0.03 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.03 +steady,sr,71,28.4,omega,lower,0.03 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.03 +steady,sr,72,28.8,omega,lower,0.03 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.03 +steady,sr,73,29.2,omega,lower,0.03 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.03 +steady,sr,74,29.6,omega,lower,0.03 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.03 +steady,sr,75,30.0,omega,lower,0.03 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.03 +steady,sr,76,30.4,omega,lower,0.03 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.03 +steady,sr,77,30.8,omega,lower,0.03 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.03 +steady,sr,78,31.2,omega,lower,0.03 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.03 +steady,sr,79,31.6,omega,lower,0.03 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.03 +steady,sr,80,32.0,omega,lower,0.03 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.03 +steady,sr,81,32.4,omega,lower,0.03 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.03 +steady,sr,82,32.8,omega,lower,0.03 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.03 +steady,sr,83,33.2,omega,lower,0.03 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.03 +steady,sr,84,33.6,omega,lower,0.03 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.03 +steady,sr,85,34.0,omega,lower,0.03 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.03 +steady,sr,86,34.4,omega,lower,0.03 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.03 +steady,sr,87,34.8,omega,lower,0.03 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.03 +steady,sr,88,35.2,omega,lower,0.03 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.03 +steady,sr,89,35.6,omega,lower,0.03 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.03 +steady,sr,90,36.0,omega,lower,0.03 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.03 +steady,sr,91,36.4,omega,lower,0.03 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.03 +steady,sr,92,36.8,omega,lower,0.03 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.03 +steady,sr,93,37.2,omega,lower,0.03 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.03 +steady,sr,94,37.6,omega,lower,0.03 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.03 +steady,sr,95,38.0,omega,lower,0.03 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.03 +steady,sr,96,38.4,omega,lower,0.03 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.03 +steady,sr,97,38.8,omega,lower,0.03 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.03 +steady,sr,98,39.2,omega,lower,0.03 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.03 +steady,sr,99,39.6,omega,lower,0.03 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.03 +steady,sr,100,40.0,omega,lower,0.03 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.03 +steady,sr,101,40.4,omega,lower,0.03 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.03 +steady,sr,102,40.8,omega,lower,0.03 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.03 +steady,sr,103,41.2,omega,lower,0.03 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.03 +steady,sr,104,41.6,omega,lower,0.03 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.03 +steady,sr,105,42.0,omega,lower,0.03 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.03 +steady,sr,106,42.4,omega,lower,0.03 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.03 +steady,sr,107,42.8,omega,lower,0.03 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.03 +steady,sr,108,43.2,omega,lower,0.03 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.03 +steady,sr,109,43.6,omega,lower,0.03 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.03 +steady,sr,110,44.0,omega,lower,0.03 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.03 +steady,sr,111,44.4,omega,lower,0.03 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.03 +steady,sr,112,44.8,omega,lower,0.03 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.03 +steady,sr,113,45.2,omega,lower,0.03 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.03 +steady,sr,114,45.6,omega,lower,0.03 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.03 +steady,sr,115,46.0,omega,lower,0.03 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.03 +steady,sr,116,46.4,omega,lower,0.03 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.03 +steady,sr,117,46.8,omega,lower,0.03 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.03 +steady,sr,118,47.2,omega,lower,0.03 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.03 +steady,sr,119,47.6,omega,lower,0.03 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.03 +steady,sr,120,48.0,omega,lower,0.03 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.03 +steady,sr,121,48.4,omega,lower,0.03 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.03 +steady,sr,122,48.8,omega,lower,0.03 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.03 +steady,sr,123,49.2,omega,lower,0.03 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.03 +steady,sr,124,49.6,omega,lower,0.03 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.03 +steady,sr,125,50.0,omega,lower,0.03 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.03 +steady,sr,126,50.4,omega,lower,0.03 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.03 +steady,sr,127,50.8,omega,lower,0.03 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.03 +steady,sr,128,51.2,omega,lower,0.03 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.03 +steady,sr,129,51.6,omega,lower,0.03 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.03 +steady,sr,130,52.0,omega,lower,0.03 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.03 +steady,sr,131,52.4,omega,lower,0.03 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.03 +steady,sr,132,52.8,omega,lower,0.03 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.03 +steady,sr,133,53.2,omega,lower,0.03 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.03 +steady,sr,134,53.6,omega,lower,0.03 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.03 +steady,sr,135,54.0,omega,lower,0.03 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.03 +steady,sr,136,54.4,omega,lower,0.03 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.03 +steady,sr,137,54.8,omega,lower,0.03 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.03 +steady,sr,138,55.2,omega,lower,0.03 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.03 +steady,sr,139,55.6,omega,lower,0.03 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.03 +steady,sr,140,56.0,omega,lower,0.03 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.03 +steady,sr,141,56.4,omega,lower,0.03 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.03 +steady,sr,142,56.8,omega,lower,0.03 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.03 +steady,sr,143,57.2,omega,lower,0.03 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.03 +steady,sr,144,57.6,omega,lower,0.03 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.03 +steady,sr,145,58.0,omega,lower,0.03 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.03 +steady,sr,146,58.4,omega,lower,0.03 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.03 +steady,sr,147,58.8,omega,lower,0.03 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.03 +steady,sr,148,59.2,omega,lower,0.03 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.03 +steady,sr,149,59.6,omega,lower,0.03 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.03 +steady,sr,150,60.0,omega,lower,0.03 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.03 +steady,sr,151,60.4,omega,lower,0.03 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.03 +steady,sr,152,60.8,omega,lower,0.03 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.03 +steady,sr,153,61.2,omega,lower,0.03 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.03 +steady,sr,154,61.6,omega,lower,0.03 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.03 +steady,sr,155,62.0,omega,lower,0.03 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.03 +steady,sr,156,62.4,omega,lower,0.03 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.03 +steady,sr,157,62.8,omega,lower,0.03 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.03 +steady,sr,158,63.2,omega,lower,0.03 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.03 +steady,sr,159,63.6,omega,lower,0.03 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.03 +steady,sr,160,64.0,omega,lower,0.03 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.03 +steady,sr,161,64.4,omega,lower,0.03 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.03 +steady,sr,162,64.8,omega,lower,0.03 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.03 +steady,sr,163,65.2,omega,lower,0.03 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.03 +steady,sr,164,65.6,omega,lower,0.03 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.03 +steady,sr,165,66.0,omega,lower,0.03 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.03 +steady,sr,166,66.4,omega,lower,0.03 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.03 +steady,sr,167,66.8,omega,lower,0.03 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.03 +steady,sr,168,67.2,omega,lower,0.03 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.03 +steady,sr,169,67.6,omega,lower,0.03 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.03 +steady,sr,170,68.0,omega,lower,0.03 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.03 +steady,sr,171,68.4,omega,lower,0.03 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.03 +steady,sr,172,68.8,omega,lower,0.03 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.03 +steady,sr,173,69.2,omega,lower,0.03 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.03 +steady,sr,174,69.6,omega,lower,0.03 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.03 +steady,sr,175,70.0,omega,lower,0.03 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.03 +steady,sr,176,70.4,omega,lower,0.03 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.03 +steady,sr,177,70.8,omega,lower,0.03 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.03 +steady,sr,178,71.2,omega,lower,0.03 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.03 +steady,sr,179,71.6,omega,lower,0.03 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.03 +steady,sr,180,72.0,omega,lower,0.03 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.03 +steady,sr,181,72.4,omega,lower,0.03 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.03 +steady,sr,182,72.8,omega,lower,0.03 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.03 +steady,sr,183,73.2,omega,lower,0.03 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.03 +steady,sr,184,73.6,omega,lower,0.03 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.03 +steady,sr,185,74.0,omega,lower,0.03 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.03 +steady,sr,186,74.4,omega,lower,0.03 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.03 +steady,sr,187,74.8,omega,lower,0.03 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.03 +steady,sr,188,75.2,omega,lower,0.03 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.03 +steady,sr,189,75.6,omega,lower,0.03 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.03 +steady,sr,190,76.0,omega,lower,0.03 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.03 +steady,sr,191,76.4,omega,lower,0.03 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.03 +steady,sr,192,76.8,omega,lower,0.03 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.03 +steady,sr,193,77.2,omega,lower,0.03 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.03 +steady,sr,194,77.6,omega,lower,0.03 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.03 +steady,sr,195,78.0,omega,lower,0.03 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.03 +steady,sr,196,78.4,omega,lower,0.03 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.03 +steady,sr,197,78.8,omega,lower,0.03 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.03 +steady,sr,198,79.2,omega,lower,0.03 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.03 +steady,sr,199,79.6,omega,lower,0.03 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_manifest.json new file mode 100644 index 0000000..f9be929 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a3-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_wide.csv new file mode 100644 index 0000000..5e115c8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.1228212118148804,-0.016614682972431183,0.953492283821106,-0.00011907452426385134,1.1226993799209595,0.016317425295710564,0.0012187107931822538,-1.476564648328349e-07,-0.0001961737434612587,0.006428936030715704,-0.00019733321096282452,-0.006429444067180157,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,1,0.4,1.1229294538497925,-0.01658819615840912,0.9535909295082092,-6.993954593781382e-05,1.1227761507034302,0.016342677175998688,0.0012227703118696809,-3.3260269560742017e-07,-0.00018907705089077353,0.00643369322642684,-0.00019025534857064486,-0.006433878559619188,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,2,0.8,1.1232283115386963,-0.01657157950103283,0.9538888335227966,-3.260914672864601e-05,1.1230571269989014,0.016363881528377533,0.001222174265421927,-2.9546805535574094e-07,-0.0001864258956629783,0.006443154066801071,-0.00018851306231226772,-0.006442421115934849,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,3,1.2,1.1235041618347168,-0.016547029837965965,0.9541618227958679,1.0943605957436375e-05,1.123326063156128,0.01639789529144764,0.0012199166230857372,-1.2366494672733097e-07,-0.00019185413839295506,0.006444234866648912,-0.00019359152065590024,-0.0064432150684297085,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,4,1.6,1.123162865638733,-0.016528405249118805,0.9538171887397766,3.912028478225693e-05,1.1229884624481201,0.016418149694800377,0.0012174785370007157,-1.1951283340749796e-07,-0.00019807969511020929,0.006438596174120903,-0.0001993918267544359,-0.006437814328819513,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,5,2.0,1.122850775718689,-0.01649750955402851,0.953502893447876,6.975095311645418e-05,1.1226897239685059,0.016440359875559807,0.0012164328945800662,-1.5404373243654845e-07,-0.0001992795296246186,0.006431028712540865,-0.00020047837460879236,-0.0064299385994672775,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,6,2.4,1.1228502988815308,-0.01647631824016571,0.953514575958252,8.578153210692108e-05,1.1227118968963623,0.01645328477025032,0.0012202743673697114,-1.2576887797877134e-07,-0.00019327562768012285,0.006430721841752529,-0.00019451438856776804,-0.006429607979953289,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,7,2.8,1.1229631900787354,-0.016455724835395813,0.9536508917808533,9.965488425223157e-05,1.122853398323059,0.016471201553940773,0.0012233349261805415,1.3365026063638652e-07,-0.00018720270600169897,0.006438427604734898,-0.00018821976846084,-0.0064370958134531975,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,8,3.2,1.1233668327331543,-0.01644628681242466,0.9540773630142212,0.00010301096335751936,1.1232891082763672,0.01648646779358387,0.0012212340952828526,-2.006910335694556e-07,-0.0001890453859232366,0.006444425787776709,-0.00019010489631909877,-0.006443224381655455,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,9,3.6,1.12334406375885,-0.01643933355808258,0.954069972038269,9.975551802199334e-05,1.1232991218566895,0.0164982657879591,0.0012187790125608444,8.663587891533098e-08,-0.00019484477525111288,0.00644287932664156,-0.00019569600408431143,-0.006441407836973667,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,10,4.0,1.1228625774383545,-0.016431588679552078,0.9535965919494629,9.098640293814242e-05,1.122859001159668,0.01650288887321949,0.0012161927297711372,-4.876077497328879e-08,-0.00020010398293379694,0.00643520662561059,-0.0002007839793805033,-0.006433895789086819,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,11,4.4,1.1227471828460693,-0.016428807750344276,0.9534966945648193,7.367130456259474e-05,1.1227794885635376,0.01649836264550686,0.0012184081133455038,1.1981130398908135e-07,-0.0001971979800146073,0.006430330686271191,-0.00019778597925323993,-0.006429041735827923,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,12,4.8,1.1227858066558838,-0.01642720028758049,0.9535564184188843,5.665430217050016e-05,1.1228528022766113,0.01649635098874569,0.0012221072101965547,-1.4232378475753649e-07,-0.00019054627045989037,0.006433354690670967,-0.00019089708803221583,-0.006432197522372007,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,13,5.2,1.1230190992355347,-0.016437890008091927,0.9538152813911438,3.118006861768663e-05,1.123115062713623,0.016489464789628983,0.0012223328230902553,-6.238951755221933e-08,-0.00018767840811051428,0.0064416020177304745,-0.00018804632418323308,-0.006440570577979088,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,14,5.6,1.1233224868774414,-0.016447639092803,0.9541307091712952,1.0197292795055546e-05,1.1234396696090698,0.016487540677189827,0.0012203269870951772,-4.939975895013049e-08,-0.0001917287881951779,0.006444249302148819,-0.00019183207768946886,-0.006443341262638569,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,15,6.0,1.123045802116394,-0.01646234653890133,0.9538581371307373,-1.648523539188318e-05,1.123181700706482,0.016475999727845192,0.0012177064782008529,-8.219983982371559e-08,-0.0001978948712348938,0.006439434830099344,-0.00019806594355031848,-0.006438830401748419,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,16,6.4,1.1227132081985474,-0.016468072310090065,0.9535189867019653,-3.7680118111893535e-05,1.1228572130203247,0.01646164059638977,0.0012163695646449924,5.443238393354477e-08,-0.00019999686628580093,0.006431714165955782,-0.00019996595801785588,-0.006431879475712776,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,17,6.8,1.12269127368927,-0.016477057710289955,0.9534975290298462,-5.916224836255424e-05,1.1228384971618652,0.016443956643342972,0.0012197174364700913,-1.933874216319964e-07,-0.00019482630887068808,0.006430074106901884,-0.0001948912104126066,-0.0064297993667423725,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,18,7.2,1.1227867603302002,-0.016488056629896164,0.9536026120185852,-7.673995423829183e-05,1.1229342222213745,0.016430111601948738,0.0012232016306370497,-9.699997605139288e-08,-0.00018846038437914103,0.006436529103666544,-0.00018841195560526103,-0.006436143536120653,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,19,7.6,1.1231898069381714,-0.016500309109687805,0.9540084004402161,-8.96131168701686e-05,1.1233303546905518,0.016421601176261902,0.00122140534222126,-1.726659633050076e-07,-0.00018893634842243046,0.006443241145461798,-0.00018920427828561515,-0.0064429412595927715,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,20,8.0,1.1232577562332153,-0.016515936702489853,0.9540702104568481,-0.00010162652324652299,1.1233831644058228,0.01641244813799858,0.0012190882116556168,-7.319857076026892e-08,-0.00019437080482020974,0.006442384794354439,-0.00019437362789176404,-0.006442731246352196,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,21,8.4,1.1228399276733398,-0.01652040332555771,0.9536337852478027,-0.00010440921323606744,1.122948408126831,0.01640576310455799,0.0012165431398898363,-1.5027592326077865e-07,-0.0001998123771045357,0.006435522809624672,-0.00019985051767434925,-0.006435914430767298,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,22,8.8,1.1227248907089233,-0.01652730442583561,0.953500509262085,-0.00010972845484502614,1.1228119134902954,0.016392536461353302,0.0012179042678326368,-2.710487478907453e-07,-0.00019798420544248074,0.006429709028452635,-0.0001981361274374649,-0.006430074572563171,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,23,9.2,1.1227574348449707,-0.016525646671652794,0.9535276293754578,-0.00010351095261285082,1.1228257417678833,0.01638965681195259,0.0012215209426358342,-1.2243181402027403e-07,-0.0001917458139359951,0.00643189437687397,-0.00019181617244612426,-0.006432169582694769,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,24,9.6,1.1229740381240845,-0.016532309353351593,0.9537407159805298,-0.00010096525511471555,1.1230183839797974,0.016385184600949287,0.0012224747333675623,-1.9531886152890365e-07,-0.00018793564231600612,0.006439751945436001,-0.00018817366799339652,-0.006440307013690472,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,25,10.0,1.1233280897140503,-0.016532713547348976,0.95409095287323,-8.858693763613701e-05,1.1233545541763306,0.016392789781093597,0.001220613601617515,-1.6680264991464355e-07,-0.00019100523786619306,0.006443400867283344,-0.00019125109247397631,-0.006443641148507595,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,26,10.4,1.1231402158737183,-0.016534369438886642,0.9538887143135071,-7.983087562024593e-05,1.1231449842453003,0.01639382913708687,0.0012182033387944102,-9.189825789235329e-08,-0.00019690535555128008,0.00643977802246809,-0.00019658645032905042,-0.0064392900094389915,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,27,10.8,1.1228070259094238,-0.01652502827346325,0.9535347819328308,-6.496962305391207e-05,1.1227967739105225,0.016396038234233856,0.001216176082380116,-9.124813260541487e-08,-0.00019980911747552454,0.006432326510548592,-0.0002002514956984669,-0.006432485766708851,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,28,11.2,1.1227680444717407,-0.01651531457901001,0.9534869194030762,-5.0803617341443896e-05,1.1227413415908813,0.016397196799516678,0.0012193501461297274,-2.3917374392112833e-07,-0.00019540968060027808,0.006429849658161402,-0.00019585115660447627,-0.006430023815482855,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,29,11.6,1.1228374242782593,-0.016507253050804138,0.9535596966743469,-3.69342124031391e-05,1.1228015422821045,0.01640145666897297,0.0012227039551362395,-3.3449577330202374e-08,-0.00018899414862971753,0.006435338407754898,-0.00018945361080113798,-0.006435228977352381,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,30,12.0,1.1232134103775024,-0.016499683260917664,0.9539396166801453,-2.0839617718593217e-05,1.1231693029403687,0.016413087025284767,0.0012215696042403579,-1.931029629531622e-07,-0.00018881082360167056,0.006442167330533266,-0.00018929455836769193,-0.006442205980420113,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,31,12.4,1.123333215713501,-0.01649744249880314,0.9540565013885498,-1.0923703484877478e-05,1.1232850551605225,0.016421547159552574,0.0012194913579151034,-8.221974212574423e-08,-0.00019723577133845538,0.006442836485803127,-0.0001938179339049384,-0.006441818084567785,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,32,12.8,1.1229530572891235,-0.016485927626490593,0.9536712765693665,3.7429322219395544e-06,1.1229095458984375,0.016432974487543106,0.0012169149704277515,-1.949271251078244e-07,-0.00019894972501788288,0.0064369915053248405,-0.00019940920174121857,-0.006436663679778576,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,33,13.2,1.122796654701233,-0.016478970646858215,0.9535070657730103,8.919075298763346e-06,1.1227521896362305,0.01643376797437668,0.001217523356899619,-3.807966919566752e-08,-0.00019817083375528455,0.00643059192225337,-0.00019867424271069467,-0.006430221721529961,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,34,13.6,1.122785210609436,-0.016465846449136734,0.9535031318664551,1.9559684005798772e-05,1.1227506399154663,0.01644175313413143,0.0012210140703245997,-4.444151358029558e-08,-0.0001926583208842203,0.0064317286014556885,-0.00019307319598738104,-0.006431211717426777,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,35,14.0,1.122950792312622,-0.01646381802856922,0.9536776542663574,2.0012157619930804e-05,1.1229182481765747,0.01644439622759819,0.001222332357428968,-6.379573846970743e-08,-0.00018809744506143034,0.006438891403377056,-0.00018864423327613622,-0.006438171956688166,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,36,14.4,1.1233086585998535,-0.016459321603178978,0.954048216342926,2.483472962921951e-05,1.1232889890670776,0.01645534485578537,0.001220934558659792,3.860332142835432e-08,-0.00019047597015742213,0.006443735212087631,-0.00019094230083283037,-0.006442890036851168,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,37,14.8,1.1231709718704224,-0.016460135579109192,0.9539122581481934,2.271496305183973e-05,1.123161792755127,0.016458861529827118,0.001218449673615396,-1.339297455160704e-07,-0.00019585189875215292,0.0064407046884298325,-0.00019626352877821773,-0.006439683493226767,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,38,15.2,1.1228208541870117,-0.016453253105282784,0.9535588026046753,2.219922680524178e-05,1.1228216886520386,0.01645950973033905,0.0012163183419033885,3.0275877804797346e-08,-0.00019981466175522655,0.006433687638491392,-0.00020024065452162176,-0.00643323315307498,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,39,15.6,1.122746467590332,-0.01644815132021904,0.953484058380127,1.8768296285998076e-05,1.1227582693099976,0.016456570476293564,0.0012189541012048721,-1.3119664288296917e-07,-0.00019607438298407942,0.0064302473329007626,-0.0001963480026461184,-0.006429804023355246,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,40,16.0,1.1227773427963257,-0.016446880996227264,0.9535261392593384,1.3465530173562001e-05,1.1227991580963135,0.016453908756375313,0.0012224174570292234,1.1825235901596898e-07,-0.00019002630142495036,0.006434603128582239,-0.000190273582120426,-0.006434017326682806,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,41,16.4,1.123108983039856,-0.016447575762867928,0.9538718461990356,9.456242878513876e-06,1.1231436729431152,0.016455618664622307,0.0012216430623084307,-4.6674323073148116e-08,-0.00018886303587350994,0.006441408768296242,-0.00018895963148679584,-0.006441196426749229,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,42,16.8,1.1232750415802002,-0.016454774886369705,0.9540422558784485,8.889468290362856e-07,1.1233162879943848,0.01645524799823761,0.0012198913609609008,6.406044139595224e-09,-0.00019277518731541932,0.006442802492529154,-0.0001929566788021475,-0.006442442070692778,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,43,17.2,1.1229442358016968,-0.016455918550491333,0.9537075161933899,-4.0230397644336335e-06,1.1229922771453857,0.016455484554171562,0.0012172715505585074,-9.996956151780978e-09,-0.00019836478168144822,0.006437806412577629,-0.00019833170517813414,-0.006437432020902634,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,44,17.6,1.1227631568908691,-0.016458449885249138,0.9535212516784668,-1.3392016626312397e-05,1.1228121519088745,0.016447052359580994,0.0012172880815342069,3.719542363000983e-08,-0.0001986909774132073,0.006431175861507654,-0.00019881803018506616,-0.006431090645492077,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,45,18.0,1.122727394104004,-0.016457321122288704,0.9534881711006165,-1.8256465409649536e-05,1.1227818727493286,0.016442937776446342,0.001220416626892984,3.730339770413593e-08,-0.00019369646906852722,0.006431266199797392,-0.00019375886768102646,-0.006431075278669596,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,46,18.4,1.1228564977645874,-0.01646244525909424,0.9536238312721252,-2.582744309620466e-05,1.1229091882705688,0.01643737405538559,0.00122234714217484,-4.0427622138849983e-08,-0.00018882349831983447,0.006437514442950487,-0.00018891823128797114,-0.006437550764530897,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,47,18.8,1.1232305765151978,-0.016468340530991554,0.9540026187896729,-2.98556151392404e-05,1.1232821941375732,0.01643809676170349,0.0012211407301947474,4.696630862000006e-10,-0.00019025370420422405,0.006442489102482796,-0.0001902585499919951,-0.006442728452384472,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,48,19.2,1.123164415359497,-0.016473790630698204,0.9539298415184021,-3.3748146961443126e-05,1.1232091188430786,0.016436822712421417,0.0012189263943582773,-1.0379051929021443e-07,-0.00019504666852299124,0.006441101897507906,-0.00019528722623363137,-0.006441293749958277,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,49,19.6,1.1228259801864624,-0.016474826261401176,0.9535854458808899,-3.708167059812695e-05,1.1228712797164917,0.016430776566267014,0.0012164455838501453,-9.441773585194824e-08,-0.00019960204372182488,0.006434369832277298,-0.00019999159849248827,-0.0064347535371780396,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,50,20.0,1.1227415800094604,-0.016471827402710915,0.9534914493560791,-3.704266782733612e-05,1.1227772235870361,0.016426129266619682,0.0012186099775135517,-1.228809622944027e-07,-0.00019678093667607754,0.006430222187191248,-0.0001973967591766268,-0.006430764216929674,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,51,20.4,1.1227489709854126,-0.016473393887281418,0.9535007476806641,-3.903598917531781e-05,1.1227809190750122,0.016420278698205948,0.0012219136115163565,-1.0348659884584777e-07,-0.00019089915440417826,0.006433519534766674,-0.00019132820307277143,-0.0064338194206357,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,52,20.8,1.1230522394180298,-0.01647292450070381,0.9538089036941528,-3.463856774033047e-05,1.1230762004852295,0.016423484310507774,0.0012217143084853888,-5.748588449705494e-08,-0.00018891890067607164,0.006440355908125639,-0.00018894633103627712,-0.006440235301852226,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,53,21.2,1.123268961906433,-0.016479430720210075,0.9540244936943054,-3.510925671434961e-05,1.1232852935791016,0.01642339676618576,0.0012201392091810703,-5.0420894126546045e-08,-0.00019217623048461974,0.006442462094128132,-0.0001924250682350248,-0.006442672107368708,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,54,21.6,1.122997760772705,-0.016476918011903763,0.9537468552589417,-2.8363730962155387e-05,1.1230086088180542,0.01642851158976555,0.0012178111355751753,-3.949029547811733e-08,-0.00019763731688726693,0.0064384303987026215,-0.00019772251835092902,-0.006438432261347771,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,55,22.0,1.1228026151657104,-0.016476213932037354,0.953539252281189,-2.7192763809580356e-05,1.1228052377700806,0.016424475237727165,0.0012171133421361446,-9.516301702205965e-08,-0.0001988078438444063,0.006431763991713524,-0.00019916979363188148,-0.006432021968066692,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,56,22.4,1.122749924659729,-0.016469178721308708,0.9534832835197449,-1.9715034795808606e-05,1.1227474212646484,0.016426291316747665,0.0012199499178677797,-2.9208942464720167e-07,-0.00019441456242930144,0.0064310054294764996,-0.00019454270659480244,-0.006431057583540678,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,57,22.8,1.1228410005569458,-0.01646849326789379,0.9535778760910034,-1.7023925465764478e-05,1.1228346824645996,0.016425928100943565,0.0012221743818372488,-1.1886439921227065e-07,-0.00018927101336885244,0.006436539348214865,-0.00018944329349324107,-0.006436767056584358,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,58,23.2,1.1232151985168457,-0.016467347741127014,0.9539581537246704,-1.0991783710778691e-05,1.1232069730758667,0.01643228344619274,0.0012212583096697927,8.789604066805623e-08,-0.00018994073616340756,0.006441864185035229,-0.0001901926298160106,-0.006442068610340357,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,59,23.6,1.1232067346572876,-0.016467293724417686,0.9539439678192139,-6.921839030837873e-06,1.1231930255889893,0.016437290236353874,0.0012192877475172281,3.873432419254641e-08,-0.00019433391571510583,0.006441259756684303,-0.00019450823310762644,-0.0064412630163133144,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,60,24.0,1.1228837966918945,-0.01646364852786064,0.9536144137382507,-3.7329039059841307e-06,1.1228723526000977,0.016437629237771034,0.0012166473316028714,-9.497714614781216e-08,-0.00019913639698643237,0.006435409188270569,-0.00019941938808187842,-0.006435255985707045,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,61,24.4,1.1227762699127197,-0.016456270590424538,0.9535039663314819,9.316457862951211e-07,1.1227645874023438,0.016438359394669533,0.001218333374708891,-1.1145686329427917e-07,-0.00019716743554454297,0.00643071299418807,-0.0001973272446775809,-0.006430715788155794,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,62,24.8,1.1227567195892334,-0.0164534542709589,0.9534869194030762,1.856873950600857e-06,1.122745156288147,0.016436435282230377,0.0012214502785354853,-6.510938277415335e-08,-0.000191377941519022,0.00643322104588151,-0.00019206182332709432,-0.006432726513594389,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,63,25.2,1.1230113506317139,-0.016449717804789543,0.9537490606307983,6.3669322116766125e-06,1.1230030059814453,0.01644177734851837,0.0012217717012390494,-5.1014538371418894e-08,-0.0001890161947812885,0.0064395153895020485,-0.00018912095401901752,-0.006439254153519869,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,64,25.6,1.123258352279663,-0.016454048454761505,0.9540023803710938,4.955559234076645e-06,1.1232537031173706,0.016444262117147446,0.001220444100908935,-1.1800144505969001e-07,-0.00019159528892487288,0.0064424071460962296,-0.00019179140508640558,-0.006442320998758078,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,65,26.0,1.1230385303497314,-0.016451535746455193,0.9537786841392517,7.818078302079812e-06,1.1230355501174927,0.016450075432658195,0.0012181822676211596,8.041268273473179e-08,-0.0001968389260582626,0.006439291872084141,-0.00019693849026225507,-0.00643902225419879,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,66,26.4,1.1228268146514893,-0.016450755298137665,0.9535603523254395,4.648694357456407e-06,1.1228276491165161,0.016446847468614578,0.0012169668916612864,-8.456474631657329e-08,-0.0001988810981856659,0.006432699039578438,-0.0001990782329812646,-0.006432670168578625,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,67,26.8,1.1227476596832275,-0.016445817425847054,0.953484296798706,5.340644293028163e-06,1.1227535009384155,0.0164464320987463,0.0012194957816973329,1.3860494618711527e-07,-0.00019513223378453404,0.006431095767766237,-0.00019516122119966894,-0.006430263631045818,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,68,27.2,1.1227998733520508,-0.01644548401236534,0.9535426497459412,2.9678099053853657e-06,1.1228066682815552,0.016444401815533638,0.0012220193166285753,-5.447811446401829e-08,-0.00018992494733538479,0.006435723975300789,-0.00019013923883903772,-0.00643566669896245,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,69,27.6,1.1231590509414673,-0.016447393223643303,0.9539100527763367,1.8385483144811587e-06,1.1231694221496582,0.016446812078356743,0.001221424201503396,-1.2820419392767235e-08,-0.00018975883722305298,0.006441348232328892,-0.00018987306975759566,-0.0064412071369588375,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,70,28.0,1.1231991052627563,-0.016450216993689537,0.9539514780044556,3.1083777685125824e-07,1.123212456703186,0.016449514776468277,0.001219539437443018,-5.4273403549132126e-08,-0.00019325045286677778,0.00644200574606657,-0.00019380492449272424,-0.006441548466682434,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,71,28.4,1.1229002475738525,-0.016451183706521988,0.9536455273628235,-2.6577640710456762e-06,1.1229143142700195,0.016446959227323532,0.0012168959947302938,2.9245347477058203e-08,-0.0001984949631150812,0.006436643656343222,-0.0001986935531022027,-0.006436079740524292,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,72,28.8,1.122779369354248,-0.01644713617861271,0.9535211324691772,-2.9416230518108932e-06,1.1227977275848389,0.016444778069853783,0.0012180701596662402,-2.951936117767673e-08,-0.0001975462946575135,0.006431227549910545,-0.00019762224110309035,-0.006431308574974537,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,73,29.2,1.1227350234985352,-0.01644756831228733,0.9534786939620972,-6.510192633868428e-06,1.1227518320083618,0.01643955521285534,0.001220949343405664,-2.4503242102014156e-08,-0.0001926577097037807,0.00643259147182107,-0.00019295322999823838,-0.006432291120290756,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,74,29.6,1.1229461431503296,-0.016446877270936966,0.9536951184272766,-5.9368489928601775e-06,1.1229621171951294,0.01644102670252323,0.0012218115152791142,4.943649378752468e-10,-0.0001894459710456431,0.0064385272562503815,-0.00018935734988190234,-0.006438504438847303,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,75,30.0,1.1232236623764038,-0.016452906653285027,0.9539770483970642,-9.130551006819587e-06,1.1232413053512573,0.016441648826003075,0.0012207620311528444,3.5845221901809055e-08,-0.00019115513714496046,0.006442076992243528,-0.00019143716781400144,-0.006441923789680004,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,76,30.4,1.1230597496032715,-0.01645432785153389,0.9538108706474304,-8.792624612397049e-06,1.1230762004852295,0.016444912180304527,0.0012185084633529186,-4.818670262807245e-08,-0.0001960970985237509,0.006439832504838705,-0.00019620329840108752,-0.006439637392759323,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,77,30.8,1.1228443384170532,-0.016454873606562614,0.953586220741272,-1.1203152098460123e-05,1.122857928276062,0.01644130051136017,0.0012169023975729942,-1.5613106540968147e-07,-0.0001987637224374339,0.006433484610170126,-0.0001989461889024824,-0.006433451548218727,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,78,31.2,1.1227504014968872,-0.0164528526365757,0.9534918069839478,-1.1665117199299857e-05,1.1227667331695557,0.016438229009509087,0.001219135127030313,4.397006758694033e-09,-0.0001957290805876255,0.006431087385863066,-0.00019575381884351373,-0.006431247107684612,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,79,31.6,1.1227701902389526,-0.016451837494969368,0.9535149931907654,-1.1678993359964807e-05,1.12278413772583,0.016436627134680748,0.0012217409675940871,-1.0632437152935381e-07,-0.00019064737716689706,0.006434847135096788,-0.00019070148118771613,-0.006434845272451639,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,80,32.0,1.1231145858764648,-0.016454877331852913,0.9538632035255432,-1.2694500583165791e-05,1.123125433921814,0.01643674075603485,0.0012214749585837126,7.551054181931249e-08,-0.0001897230977192521,0.006440519820898771,-0.00018971972167491913,-0.006440447177737951,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,81,32.4,1.1232043504714966,-0.016456063836812973,0.9539512395858765,-1.0299659152224194e-05,1.123212218284607,0.01644109934568405,0.0012198679614812136,5.175948913915818e-08,-0.00019313055963721126,0.006441580597311258,-0.000193145708180964,-0.006441646255552769,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,82,32.8,1.1229352951049805,-0.0164574533700943,0.9536772966384888,-1.1409741091483738e-05,1.1229417324066162,0.01643877662718296,0.0012172919232398272,1.3713950863802893e-07,-0.00019804880139417946,0.006437158677726984,-0.0001981186360353604,-0.006436781492084265,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,83,33.2,1.122807502746582,-0.01645197533071041,0.9535408616065979,-7.607221505168127e-06,1.1228119134902954,0.01643878035247326,0.001217869808897376,-6.496775029063429e-08,-0.00019786730990745127,0.006431701593101025,-0.00019782775780186057,-0.006431492976844311,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,84,33.6,1.1227405071258545,-0.016451625153422356,0.9534745216369629,-8.668980626680423e-06,1.1227428913116455,0.016433974727988243,0.0012205681996420026,5.6538556059138045e-09,-0.00019342181622050703,0.006432161200791597,-0.0001936233602464199,-0.006432634778320789,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,85,34.0,1.1229069232940674,-0.016448449343442917,0.9536486268043518,-4.3351942622393835e-06,1.1229089498519897,0.016437046229839325,0.0012216279283165932,-4.98321597319773e-08,-0.0001897096517495811,0.006437632255256176,-0.0001897551555885002,-0.006437595933675766,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,86,34.4,1.1232030391693115,-0.016453184187412262,0.9539506435394287,-4.779830760526238e-06,1.1232036352157593,0.01643843948841095,0.0012210509739816189,-2.3657412029365332e-08,-0.00019084999803453684,0.006441567558795214,-0.00019090554269496351,-0.006441572681069374,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,87,34.8,1.1230900287628174,-0.01645294576883316,0.9538352489471436,-1.392426611346309e-06,1.1230902671813965,0.016443666070699692,0.001218871446326375,7.004855717696046e-08,-0.0001953266328200698,0.006440224125981331,-0.00019531957514118403,-0.006440278142690659,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,88,35.2,1.1228750944137573,-0.016452591866254807,0.9536110758781433,-2.1835535335412715e-06,1.1228759288787842,0.01644199900329113,0.0012168845860287547,-9.168216053012657e-08,-0.00019869247626047581,0.006434302777051926,-0.00019884368521161377,-0.006434441078454256,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,89,35.6,1.1227691173553467,-0.01644868403673172,0.9535048604011536,-1.7530489913042402e-06,1.122769832611084,0.01644052565097809,0.0012188846012577415,4.293993782766847e-08,-0.00019615908968262374,0.006431220564991236,-0.0001962193491635844,-0.006430871319025755,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,90,36.0,1.1227595806121826,-0.016446968540549278,0.9534968733787537,-2.778886027954286e-06,1.122760534286499,0.016439173370599747,0.0012214580783620477,-1.2136439409005106e-07,-0.00019143600366078317,0.006434207782149315,-0.00019150413572788239,-0.006434347480535507,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,91,36.4,1.1230734586715698,-0.0164487324655056,0.9538182616233826,-4.069282567797927e-06,1.1230740547180176,0.016439877450466156,0.0012215346796438098,3.4312325425389645e-08,-0.00018972327234223485,0.006439840421080589,-0.00018970260862261057,-0.0064397393725812435,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,92,36.8,1.1232022047042847,-0.016450587660074234,0.9539503455162048,-3.276676352470531e-06,1.123203158378601,0.016443636268377304,0.001220184494741261,5.984635009781414e-08,-0.0001938152126967907,0.0064413235522806644,-0.00019257435633335263,-0.006441584788262844,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,93,37.2,1.1229664087295532,-0.016452083364129066,0.9537073373794556,-5.00250007462455e-06,1.12296724319458,0.01644260250031948,0.0012175767915323377,-1.0875810474431091e-08,-0.0001973591570276767,0.006437978707253933,-0.00019740201241802424,-0.00643884064629674,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,94,37.6,1.1228320598602295,-0.016447747126221657,0.9535641670227051,-2.7564112770050997e-06,1.1228318214416504,0.01644246280193329,0.0012175926240161061,-3.927747371790247e-08,-0.00019799766596406698,0.006432396825402975,-0.0001988858712138608,-0.006433190777897835,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,95,38.0,1.1227456331253052,-0.016447249799966812,0.9534798264503479,-4.1993057493527886e-06,1.1227458715438843,0.01643863134086132,0.0012202545767650008,-6.754644399364906e-09,-0.00019407892250455916,0.006431879010051489,-0.00019414405687712133,-0.006431971210986376,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,96,38.4,1.122869610786438,-0.016444381326436996,0.9536083936691284,-1.348155251434946e-06,1.1228687763214111,0.0164402537047863,0.0012215725146234035,8.626258818367205e-08,-0.00019016802252735943,0.006436869036406279,-0.00019014402641914785,-0.006436317693442106,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,97,38.8,1.1231764554977417,-0.016448087990283966,0.9539211988449097,-1.9509977846610127e-06,1.1231752634048462,0.016441989690065384,0.0012210357235744596,-1.6931881674508986e-08,-0.00019062650972045958,0.006441137287765741,-0.0001910419960040599,-0.006441471166908741,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,98,39.2,1.1231129169464111,-0.01644957810640335,0.9538566470146179,-1.291430038463659e-07,1.1231123208999634,0.01644585095345974,0.0012193321017548442,-7.02202651581274e-09,-0.00019446307851467282,0.006440476980060339,-0.00019456809968687594,-0.006440530531108379,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,99,39.6,1.1229028701782227,-0.016448810696601868,0.9536367654800415,1.015873536402978e-07,1.1229016780853271,0.01644546166062355,0.0012170065892860293,5.777137701556967e-08,-0.00019845239876303822,0.006435257848352194,-0.00019850237003993243,-0.006435235030949116,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,100,40.0,1.1227890253067017,-0.016446227207779884,0.9535210132598877,3.088322273470112e-07,1.122788906097412,0.016443204134702682,0.0012185981031507254,6.823545817269405e-08,-0.00019652335322462022,0.006431585643440485,-0.0001966492272913456,-0.006431467365473509,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,101,40.4,1.1227469444274902,-0.01644345559179783,0.9534835815429688,1.109718482439348e-06,1.1227470636367798,0.016442174091935158,0.0012212852016091347,-3.678898963244137e-08,-0.0001920656650327146,0.006433610804378986,-0.00019210175378248096,-0.006433612201362848,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,102,40.8,1.1230286359786987,-0.016445424407720566,0.9537703990936279,-2.7982548544969177e-07,1.1230294704437256,0.01644178479909897,0.0012213605223223567,-6.185502599009851e-08,-0.00018983925110660493,0.006439075339585543,-0.00019009842071682215,-0.006439156364649534,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,103,41.2,1.123194932937622,-0.016446102410554886,0.9539391994476318,8.728829357096402e-07,1.1231956481933594,0.016446009278297424,0.0012204000959172845,-1.645516078951914e-08,-0.00019215457723475993,0.006441421341150999,-0.000192166306078434,-0.006441405043005943,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,104,41.6,1.1229952573776245,-0.016448764130473137,0.9537347555160522,-1.3787223451799946e-06,1.1229960918426514,0.016445429995656013,0.0012180013582110405,-7.78505615528502e-09,-0.00019617890939116478,0.006438983138650656,-0.00019664375577121973,-0.006438486743718386,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,105,42.0,1.1228559017181396,-0.01644507423043251,0.9535898566246033,5.9492304416153274e-08,1.1228573322296143,0.016445325687527657,0.0012175263836979866,-1.4798570147078749e-09,-0.00019814544066321105,0.0064330752938985825,-0.00019812794926110655,-0.0064330929890275,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,106,42.4,1.1227540969848633,-0.016444191336631775,0.9534860253334045,-1.8575026388134575e-06,1.1227558851242065,0.01644112542271614,0.001219817204400897,-9.149567858912633e-08,-0.000194738749996759,0.006431895308196545,-0.00019481810159049928,-0.006431846413761377,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,107,42.8,1.1228344440460205,-0.01644209399819374,0.9535729289054871,-6.473623415104157e-08,1.122836947441101,0.01644201949238777,0.0012214418966323137,6.079746839304789e-08,-0.00019062953651882708,0.006436055526137352,-0.00019093796436209232,-0.0064356327056884766,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,108,43.2,1.1231434345245361,-0.016445420682430267,0.9538849592208862,-7.621836175530916e-07,1.1231465339660645,0.016443483531475067,0.0012211567955091596,-1.1747746953005844e-07,-0.0001904934470076114,0.006440563127398491,-0.0001905234094010666,-0.006440563593059778,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,109,43.6,1.1231235265731812,-0.016447745263576508,0.9538686871528625,2.365792184377824e-08,1.1231274604797363,0.016446294263005257,0.0012195699382573366,-7.620815978270912e-08,-0.00019391925889067352,0.006440791301429272,-0.0001938889326993376,-0.006440707948058844,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,110,44.0,1.1229214668273926,-0.01644722744822502,0.9536611437797546,2.932715972292499e-07,1.1229255199432373,0.016446499153971672,0.001217205193825066,-3.656445102251382e-08,-0.00019800076552201062,0.006435986142605543,-0.00019806547788903117,-0.006436075549572706,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,111,44.4,1.1228052377700806,-0.016445795074105263,0.9535391330718994,-1.2900392221126822e-06,1.122809648513794,0.01644318550825119,0.0012184155639261007,-4.2440596814685705e-08,-0.00019685857114382088,0.006432035937905312,-0.0001971457968465984,-0.0064318422228097916,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,112,44.8,1.1227409839630127,-0.016442717984318733,0.9534781575202942,-5.036464472141233e-07,1.1227449178695679,0.016442300751805305,0.0012208472471684217,1.8988139061093534e-08,-0.00019277234969194978,0.006433203350752592,-0.00019274784426670521,-0.006433433853089809,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,113,45.2,1.1229867935180664,-0.016445260494947433,0.9537292718887329,-3.0149844860716257e-06,1.1229918003082275,0.016440754756331444,0.001221489510498941,3.247289015462229e-08,-0.0001900341740110889,0.006438347510993481,-0.00019006748334504664,-0.006438322830945253,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,114,45.6,1.123178243637085,-0.016445960849523544,0.953925371170044,-1.3196304280427285e-06,1.1231834888458252,0.016445286571979523,0.0012205173261463642,2.1493274005024432e-07,-0.0001917380723170936,0.0064411526545882225,-0.00019179504306521267,-0.006441193167120218,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,115,46.0,1.1230159997940063,-0.01644931733608246,0.9537597894668579,-4.114826879231259e-06,1.1230206489562988,0.016443833708763123,0.0012184621300548315,-1.261063857782574e-07,-0.00019598966173361987,0.0064391023479402065,-0.0001960688387043774,-0.006439033895730972,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,116,46.4,1.122875690460205,-0.01644623465836048,0.9536138772964478,-2.59224680121406e-06,1.1228809356689453,0.016443897038698196,0.0012174219591543078,6.916830841419142e-08,-0.0001980789384106174,0.006433742120862007,-0.00019804740441031754,-0.006433791480958462,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,117,46.8,1.1227645874023438,-0.01644616574048996,0.953499436378479,-4.796806024387479e-06,1.122767448425293,0.016439897939562798,0.0012194635346531868,4.481831794578284e-08,-0.00019525950483512133,0.006431898567825556,-0.00019531353609636426,-0.006431546062231064,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,118,47.2,1.1228069067001343,-0.016443999484181404,0.9535458087921143,-3.504119604258449e-06,1.122809648513794,0.01643998548388481,0.0012212551664561033,4.261882935452377e-08,-0.00019113477901555598,0.006435352377593517,-0.00019111105939373374,-0.006435337010771036,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,119,47.6,1.123109221458435,-0.016447072848677635,0.9538530111312866,-4.066002929903334e-06,1.1231110095977783,0.016441280022263527,0.001221317914314568,-1.7453494649544155e-08,-0.0001904370146803558,0.006439989432692528,-0.0001904968376038596,-0.006440143566578627,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,120,48.0,1.1231337785720825,-0.016449138522148132,0.9538795351982117,-3.2166142318601487e-06,1.123134970664978,0.0164444949477911,0.0012199119664728642,-2.8932335638387485e-08,-0.00019336381228640676,0.006440859287977219,-0.00019262832938693464,-0.006440829019993544,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,121,48.4,1.1229480504989624,-0.016448931768536568,0.9536844491958618,-2.3071052055456676e-06,1.122948408126831,0.01644453965127468,0.0012174007715657353,-1.005282683763653e-07,-0.0001975805062102154,0.0064367628656327724,-0.0001975804625544697,-0.006436682306230068,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,122,48.8,1.122828722000122,-0.016447294503450394,0.9535601735115051,-2.2845972580398666e-06,1.1228277683258057,0.016441909596323967,0.0012181892525404692,-1.6834830773859721e-07,-0.00019715726375579834,0.00643239077180624,-0.00019719844567589462,-0.00643240986391902,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,123,49.2,1.1227449178695679,-0.016443954780697823,0.9534785747528076,-7.052857995404338e-07,1.1227445602416992,0.01644086092710495,0.0012204803060740232,4.9771696097877793e-08,-0.00019340172002557665,0.006432975642383099,-0.00019329023780301213,-0.006432283669710159,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,124,49.6,1.122948169708252,-0.016445204615592957,0.953687310218811,-1.5800228538864758e-06,1.122947335243225,0.016440346837043762,0.0012213254813104868,5.277998837982523e-08,-0.00019037691527046263,0.006437542848289013,-0.00019039033213630319,-0.006437565200030804,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,125,50.0,1.1231635808944702,-0.016445863991975784,0.9539066553115845,3.1388000820697926e-07,1.1231622695922852,0.016444219276309013,0.0012208031257614493,-1.2072079869085428e-07,-0.0001914677704917267,0.006440907716751099,-0.00019132251327391714,-0.006440880708396435,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,126,50.4,1.123040795326233,-0.01644819788634777,0.9537805318832397,-6.631117344113591e-07,1.123039960861206,0.016444586217403412,0.0012187224347144365,-9.018203961375093e-09,-0.000195396612980403,0.006439546123147011,-0.00019549396529328078,-0.006439650431275368,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,127,50.8,1.1229037046432495,-0.016445636749267578,0.9536364674568176,5.297566758599714e-07,1.1229026317596436,0.01644492708146572,0.001217426615767181,7.434434934339151e-08,-0.00019797096319962293,0.006434587761759758,-0.0001979054941330105,-0.006434463895857334,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,128,51.2,1.1227829456329346,-0.01644403487443924,0.9535155296325684,-2.794277804696321e-07,1.1227818727493286,0.016442378982901573,0.0012192187132313848,-1.6296540650273528e-07,-0.00019563769455999136,0.006431990768760443,-0.00019568858260754496,-0.006431999150663614,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,129,51.6,1.1227879524230957,-0.01644243486225605,0.9535239338874817,1.0641073799888545e-07,1.122787594795227,0.01644158735871315,0.0012210182612761855,2.011089250686382e-08,-0.00019175512716174126,0.0064348746091127396,-0.00019178535148967057,-0.006434927694499493,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,130,52.0,1.123077392578125,-0.016443898901343346,0.9538173675537109,1.9771120207678905e-07,1.1230775117874146,0.016443073749542236,0.0012212601723149419,-7.826412939948568e-08,-0.00019036348385270685,0.0064393095672130585,-0.00019045571389142424,-0.006439423654228449,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,131,52.4,1.1231389045715332,-0.01644708216190338,0.9538806676864624,-1.2385470427034306e-07,1.1231396198272705,0.016445530578494072,0.0012202360667288303,1.3447998981064302e-07,-0.00019286845054011792,0.006440984550863504,-0.00019286133465357125,-0.0064409454353153706,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,132,52.8,1.1229690313339233,-0.016446158289909363,0.953708827495575,8.44726741888735e-07,1.1229702234268188,0.0164467953145504,0.0012176152085885406,-1.2097515877940168e-07,-0.0001970085722859949,0.006437427364289761,-0.00019716136739589274,-0.006437344942241907,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,133,53.2,1.1228495836257935,-0.016445791348814964,0.9535850286483765,-5.931594841968035e-07,1.122851848602295,0.016443543136119843,0.001218266668729484,5.5918736308058214e-08,-0.0001974019396584481,0.006432949099689722,-0.00019740853167604655,-0.006432951893657446,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,134,53.6,1.1227473020553589,-0.016442295163869858,0.9534821510314941,7.027771857792686e-07,1.1227489709854126,0.016443006694316864,0.0012200699420645833,4.940775255590779e-08,-0.00019385058840271086,0.006432780064642429,-0.00019380122830625623,-0.006432827096432447,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,135,54.0,1.1229121685028076,-0.016443395987153053,0.9536522626876831,-1.1528181858011521e-06,1.1229135990142822,0.016440875828266144,0.0012211911380290985,-7.785013877992242e-08,-0.00019073890871368349,0.006436783820390701,-0.00019082431390415877,-0.006436929572373629,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,136,54.4,1.1231412887573242,-0.016443969681859016,0.9538872241973877,8.148825259013392e-08,1.1231424808502197,0.016444643959403038,0.0012209725100547075,3.062186726410232e-09,-0.00019115032046101987,0.006440361030399799,-0.00019108290143776685,-0.006440646480768919,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,137,54.8,1.1230580806732178,-0.016447043046355247,0.95380038022995,-1.4495652749246801e-06,1.1230591535568237,0.016445009037852287,0.0012190802954137325,-1.0818897777653547e-07,-0.00019482873904053122,0.0064398362301290035,-0.00019490013073664159,-0.006439455319195986,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,138,55.2,1.1229232549667358,-0.016445385292172432,0.9536606669425964,-4.1277291984442854e-07,1.1229249238967896,0.01644560694694519,0.00121748773381114,4.521185559269725e-08,-0.00019766378682106733,0.006435352377593517,-0.00019762507872655988,-0.006435264367610216,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,139,55.6,1.122799038887024,-0.016444385051727295,0.9535312056541443,-6.537225090141874e-07,1.1227995157241821,0.016443174332380295,0.001218994613736868,8.314701460676588e-08,-0.00019607927242759615,0.006432224530726671,-0.00019615469500422478,-0.006432239431887865,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,140,56.0,1.1227720975875854,-0.01644297130405903,0.9535083174705505,-1.3082608774084292e-08,1.1227738857269287,0.016441911458969116,0.0012208214029669762,6.393725726638877e-08,-0.0001923188683576882,0.006434358190745115,-0.00019230967154726386,-0.006434351671487093,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,141,56.4,1.1230418682098389,-0.0164431594312191,0.9537830352783203,5.895979029446607e-07,1.123043179512024,0.016443341970443726,0.0012212805449962616,1.541505412205879e-07,-0.0001904931996250525,0.006438886746764183,-0.0001904292730614543,-0.006438847165554762,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,142,56.8,1.1231368780136108,-0.01644665002822876,0.9538775086402893,2.2602121418913157e-07,1.1231387853622437,0.01644553616642952,0.0012203908991068602,4.345245585568591e-08,-0.00019229680765420198,0.006440757308155298,-0.00019249311299063265,-0.006440731231123209,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,143,57.2,1.1229873895645142,-0.016445860266685486,0.9537269473075867,1.1901825018867385e-06,1.122989535331726,0.016447139903903008,0.0012180889025330544,7.916750810466056e-09,-0.0001965891133295372,0.006437976844608784,-0.00019651955517474562,-0.006438082549721003,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,144,57.6,1.1228718757629395,-0.016445444896817207,0.9536076188087463,-2.8837516197199875e-07,1.1228736639022827,0.016444111242890358,0.0012178275501355529,-1.2561089590690244e-07,-0.00019743773736990988,0.006433552596718073,-0.00019753744709305465,-0.006433448754251003,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,145,58.0,1.1227571964263916,-0.016441918909549713,0.9534904956817627,1.0073714520331123e-06,1.1227582693099976,0.01644372195005417,0.0012199289631098509,1.8028782733381377e-07,-0.0001943223032867536,0.006432769820094109,-0.00019427247752901167,-0.006432471796870232,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,146,58.4,1.122880458831787,-0.01644272729754448,0.9536184668540955,-7.862018378546054e-07,1.1228824853897095,0.016441548243165016,0.001221082522533834,-2.3462780163185926e-08,-0.00019112064910586923,0.006436173804104328,-0.00019115881877951324,-0.006436163559556007,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,147,58.8,1.1231192350387573,-0.016443340107798576,0.9538633227348328,3.802367416483321e-07,1.1231213808059692,0.016444357112050056,0.0012209658743813634,-7.12122414370242e-08,-0.00019109300046693534,0.006440232507884502,-0.00019118389172945172,-0.006440231576561928,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,148,59.2,1.1230679750442505,-0.016446541994810104,0.9538124203681946,-1.5862657392062829e-06,1.123070240020752,0.016444910317659378,0.0012194598093628883,2.0161023073228534e-08,-0.00019419653108343482,0.006440115626901388,-0.00019421368779148906,-0.00643991818651557,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,149,59.6,1.1229432821273804,-0.01644604280591011,0.9536803364753723,-1.1140546121168882e-06,1.12294602394104,0.016445597633719444,0.0012176367454230785,7.396781853685752e-08,-0.00019732833607122302,0.006435850169509649,-0.00019740326388273388,-0.006435813382267952,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,150,60.0,1.1228153705596924,-0.0164446160197258,0.9535505175590515,-2.1291441498760832e-06,1.1228187084197998,0.016443105414509773,0.00121879274956882,3.0462214084536754e-08,-0.00019637135847005993,0.006432592868804932,-0.00019712300854735076,-0.006433622445911169,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,151,60.4,1.1227641105651855,-0.016443202272057533,0.9534996747970581,-2.109270326400292e-06,1.1227660179138184,0.01644124463200569,0.0012204722734168172,-1.1180963932488908e-09,-0.00019289027841296047,0.006433980073779821,-0.00019286641327198595,-0.0064340997487306595,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,152,60.8,1.1230082511901855,-0.016444168984889984,0.9537490010261536,-1.4379127151187276e-06,1.123010277748108,0.016442464664578438,0.0012212948640808463,2.628841677676519e-08,-0.00019055037409998477,0.006438143085688353,-0.00019086999236606061,-0.006438455078750849,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,153,61.2,1.123130440711975,-0.016447031870484352,0.9538735151290894,-1.7491997823526617e-06,1.1231324672698975,0.016444161534309387,0.0012205122038722038,7.294147508218884e-10,-0.00019210563914384693,0.00644057709723711,-0.00019214976055081934,-0.006440396886318922,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,154,61.6,1.123002529144287,-0.016446812078356743,0.9537437558174133,-2.780734291718545e-07,1.1230045557022095,0.016445744782686234,0.0012183320941403508,-3.854672314673735e-08,-0.00019606105342973024,0.006438604090362787,-0.00019602663815021515,-0.006439406890422106,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,155,62.0,1.1228950023651123,-0.016446677967905998,0.9536295533180237,-1.21557502552605e-06,1.1228961944580078,0.01644335314631462,0.0012178983306512237,-4.925576035930135e-08,-0.00019739297567866743,0.006434030365198851,-0.0001973665494006127,-0.006433979142457247,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,156,62.4,1.1227675676345825,-0.01644360087811947,0.9535040259361267,2.972529955513892e-07,1.1227691173553467,0.016443127766251564,0.0012197198811918497,3.9490551273502206e-08,-0.00019485456869006157,0.006432675290852785,-0.00019480899209156632,-0.006432539317756891,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,157,62.8,1.1228506565093994,-0.0164431594312191,0.9535903334617615,-3.049291308343527e-07,1.1228522062301636,0.01644100621342659,0.001220829552039504,-3.75662594365167e-08,-0.0001915463071782142,0.006435604766011238,-0.0001916293113026768,-0.006435731425881386,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,158,63.2,1.123094081878662,-0.016443796455860138,0.9538353681564331,9.025654890137957e-07,1.123095989227295,0.016443582251667976,0.0012211190769448876,9.397947309253141e-08,-0.0001910097198560834,0.006438761483877897,-0.00019157910719513893,-0.006440088618546724,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,159,63.6,1.1230778694152832,-0.01644594594836235,0.9538217186927795,2.3289948103411007e-07,1.1230807304382324,0.016444964334368706,0.0012197501491755247,-3.2122699167302926e-08,-0.00019364460604265332,0.006440171040594578,-0.0001936118642333895,-0.006438956130295992,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,160,64.0,1.1229627132415771,-0.016446741297841072,0.953702449798584,-3.705253845964762e-07,1.1229660511016846,0.01644480973482132,0.0012177112512290478,-1.6460326435208117e-08,-0.00019712172797881067,0.0064365798607468605,-0.0001970919402083382,-0.006436570081859827,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,161,64.4,1.1228358745574951,-0.016445443034172058,0.9535715579986572,-1.7020034874803969e-06,1.122839093208313,0.01644309237599373,0.0012186230160295963,-3.78910058884685e-08,-0.00019656440417747945,0.006432875990867615,-0.0001965277479030192,-0.006432969588786364,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,162,64.8,1.1227613687515259,-0.016444360837340355,0.9534980058670044,-3.826058673439547e-06,1.122763752937317,0.016440315172076225,0.0012202992802485824,1.3948010746389627e-08,-0.00019344378961250186,0.006433607544749975,-0.00019355535914655775,-0.0064339651726186275,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,163,65.2,1.1229742765426636,-0.01644446887075901,0.9537165760993958,-4.199920113023836e-06,1.1229751110076904,0.016441233456134796,0.0012211529538035393,1.1414383749297485e-07,-0.0001908852718770504,0.006437493953853846,-0.0001907602563733235,-0.0064384364522993565,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,164,65.6,1.1231178045272827,-0.016448594629764557,0.9538652896881104,-6.232482064660871e-06,1.1231189966201782,0.01644192822277546,0.001220619771629572,-5.855487117401026e-08,-0.00019174230692442507,0.006440183613449335,-0.00019175661145709455,-0.00644032284617424,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,165,66.0,1.1230170726776123,-0.016448957845568657,0.9537618160247803,-4.812638053408591e-06,1.1230170726776123,0.01644413359463215,0.0012185873929411173,1.8671389767632718e-08,-0.0001954924809979275,0.006438903976231813,-0.000195418149814941,-0.006439000368118286,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,166,66.4,1.122918963432312,-0.016449224203824997,0.9536547660827637,-5.7707843552634586e-06,1.122917652130127,0.01644122041761875,0.0012178763281553984,-5.081543363871788e-08,-0.00019726318714674562,0.006434545386582613,-0.00019724205776583403,-0.0064347051084041595,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,167,66.8,1.1227859258651733,-0.016446171328425407,0.953519880771637,-4.03566264139954e-06,1.1227824687957764,0.016440648585557938,0.0012193951988592744,-5.453362916796323e-08,-0.00019535563478711993,0.006432699970901012,-0.00019533174054231495,-0.006433031987398863,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,168,67.2,1.1228338479995728,-0.016445841640233994,0.9535667896270752,-4.059836101077963e-06,1.1228294372558594,0.016438839957118034,0.00122073944658041,-3.1191738969482685e-08,-0.00019197310029994696,0.006435074377804995,-0.00019191850151401013,-0.006435336545109749,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,169,67.6,1.1230701208114624,-0.0164460688829422,0.9538107514381409,-2.23232791540795e-06,1.1230649948120117,0.01644098199903965,0.0012210772838443518,-1.0457297250354713e-08,-0.00019106075342278928,0.006439040414988995,-0.0001910422433866188,-0.006439134478569031,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,170,68.0,1.1230871677398682,-0.01644831709563732,0.9538255333900452,-2.1743187517131446e-06,1.1230812072753906,0.016442811116576195,0.0012199784396216273,8.125578432327529e-08,-0.00019314224482513964,0.006440138444304466,-0.00019316733232699335,-0.006440342869609594,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,171,68.4,1.1229816675186157,-0.01644810661673546,0.9537178874015808,-1.0793439741973998e-06,1.1229759454727173,0.016443919390439987,0.0012179504847154021,-8.95331311312475e-08,-0.00019667568267323077,0.0064371987245976925,-0.00019667991728056222,-0.0064371065236628056,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,172,68.8,1.122863531112671,-0.016446124762296677,0.9535936713218689,-8.200440504424478e-08,1.1228569746017456,0.016443511471152306,0.001218469813466072,6.691283260806813e-08,-0.00019666999287437648,0.006433427799493074,-0.0001966448180610314,-0.006433072034269571,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,173,69.2,1.1227666139602661,-0.01644415780901909,0.9534963965415955,2.898793809436029e-07,1.1227580308914185,0.01644149236381054,0.0012201000936329365,-3.2168845365276866e-08,-0.0001938383065862581,0.006433418020606041,-0.00019400817109271884,-0.006433425005525351,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,174,69.6,1.122951865196228,-0.01644297130405903,0.9536844491958618,2.238320575997932e-06,1.1229431629180908,0.016443124040961266,0.0012210486456751823,-6.016074394210591e-08,-0.00019112411246169358,0.0064369007013738155,-0.00019127941050101072,-0.006436982192099094,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,175,70.0,1.1231099367141724,-0.01644509844481945,0.9538484811782837,2.1367143290262902e-06,1.1231023073196411,0.016444727778434753,0.0012207085965201259,-1.0258379035121834e-07,-0.00019159159273840487,0.006439984310418367,-0.00019160201190970838,-0.006440012250095606,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,176,70.4,1.1230343580245972,-0.016444234177470207,0.9537708759307861,4.1880230128299445e-06,1.1230263710021973,0.016447564586997032,0.001218931982293725,2.016218836331518e-08,-0.00019483381765894592,0.006439311895519495,-0.00019485231314320117,-0.0064393640495836735,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,177,70.8,1.1229389905929565,-0.01644401252269745,0.9536731243133545,3.5764182939601596e-06,1.1229327917099,0.016446154564619064,0.0012179241748526692,-3.4601161047476126e-08,-0.00019704902661032975,0.006435210816562176,-0.00019713476649485528,-0.0064351861365139484,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,178,71.2,1.1228049993515015,-0.0164404958486557,0.953535795211792,5.1981360229547136e-06,1.1228001117706299,0.01644599810242653,0.0012191814603284001,-7.306385896299616e-08,-0.0001957315398612991,0.0064329481683671474,-0.00019608069851528853,-0.006432853173464537,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,179,71.6,1.122813105583191,-0.01643930748105049,0.9535495042800903,5.079809398012003e-06,1.1228089332580566,0.01644444279372692,0.0012205357197672129,-1.5677214193487998e-08,-0.00019236968364566565,0.0064347428269684315,-0.0001925099641084671,-0.006434583105146885,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,180,72.0,1.1230427026748657,-0.01643938571214676,0.9537842273712158,6.799282800784567e-06,1.123039722442627,0.016446776688098907,0.001221094629727304,8.745060853243558e-08,-0.0001907936530187726,0.006438347510993481,-0.00019100873032584786,-0.006438451819121838,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,181,72.4,1.1230872869491577,-0.0164411049336195,0.9538295865058899,8.019757842703257e-06,1.1230844259262085,0.016449563205242157,0.0012202064972370863,-3.249973801189299e-08,-0.00019276485545560718,0.006440176162868738,-0.00019278941908851266,-0.006440063007175922,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,182,72.8,1.122995376586914,-0.016441339626908302,0.953732967376709,8.506824087817222e-06,1.1229934692382812,0.016450604423880577,0.001218052813783288,4.842235412638729e-08,-0.00019626827270258218,0.0064377374947071075,-0.00019668143067974597,-0.006435532588511705,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,183,73.2,1.122878074645996,-0.016439490020275116,0.9536159634590149,8.875496860127896e-06,1.122879147529602,0.016450362280011177,0.0012184384977445006,-3.1153977175790715e-08,-0.0001967992284335196,0.006433833856135607,-0.0001967285352293402,-0.006433898117393255,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,184,73.6,1.1227651834487915,-0.016438448801636696,0.9535031914710999,7.162461315601831e-06,1.1227699518203735,0.016447894275188446,0.0012198713375255466,1.0835952934939996e-07,-0.00019427816732786596,0.00643340777605772,-0.0001942764938576147,-0.006434271112084389,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,185,74.0,1.1229137182235718,-0.01643763668835163,0.9536558389663696,6.154424227133859e-06,1.122918963432312,0.016448264941573143,0.0012208704138174653,3.134962867079594e-08,-0.0001916135079227388,0.006436428986489773,-0.00019157024507876486,-0.006436422932893038,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,186,74.4,1.1230837106704712,-0.016441112384200096,0.9538336396217346,3.1395384212373756e-06,1.1230926513671875,0.01644815318286419,0.0012209496926516294,-2.5797708858021906e-08,-0.00019143031386192888,0.006439553573727608,-0.00019146980775985867,-0.0064395093359053135,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,187,74.8,1.1230357885360718,-0.016442514955997467,0.9537802338600159,1.7166497627840727e-06,1.1230441331863403,0.01644998975098133,0.0012191602727398276,-2.154747491545095e-09,-0.0001943601673701778,0.006439476739615202,-0.00019428068480920047,-0.006438873242586851,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,188,75.2,1.1229515075683594,-0.01644383743405342,0.9536923766136169,-1.2840645240430604e-06,1.1229629516601562,0.016447843983769417,0.0012179369805380702,-4.8866766633182124e-08,-0.00019690560293383896,0.006435811519622803,-0.00019686948508024216,-0.006436575204133987,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,189,75.6,1.122814416885376,-0.016442449763417244,0.9535545110702515,-2.8285148800932802e-06,1.1228259801864624,0.01644532009959221,0.001218997174873948,3.679342697182619e-08,-0.00019594733021222055,0.0064332312904298306,-0.00019582720415201038,-0.00643331091850996,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,190,76.0,1.122796893119812,-0.01644248329102993,0.953535795211792,-4.990327397536021e-06,1.1228058338165283,0.016442246735095978,0.0012203832156956196,4.89652940416363e-08,-0.00019304148736409843,0.006434366572648287,-0.00019305148452986032,-0.006434442475438118,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,191,76.4,1.123010277748108,-0.016444426029920578,0.9537544846534729,-6.618608040298568e-06,1.1230207681655884,0.016441600397229195,0.0012210187269374728,3.1259624222457205e-08,-0.00019116626936011016,0.0064379931427538395,-0.00019110292487312108,-0.006438151467591524,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,192,76.8,1.1230785846710205,-0.016447538509964943,0.9538244009017944,-7.139206445572199e-06,1.1230864524841309,0.016443122178316116,0.0012203934602439404,-2.2174498681692967e-08,-0.00019245894509367645,0.006439973600208759,-0.0001932127051986754,-0.006440690718591213,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,193,77.2,1.123002052307129,-0.01644984446465969,0.9537461996078491,-8.60225463839015e-06,1.123007893562317,0.01644258201122284,0.001218333374708891,9.943578049842472e-08,-0.0001957850909093395,0.00643805880099535,-0.00019574741600081325,-0.006438118871301413,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,194,77.6,1.1228998899459839,-0.016448719426989555,0.9536350965499878,-7.58657506594318e-06,1.1229033470153809,0.01644204929471016,0.0012182982172816992,-2.8216819103477064e-08,-0.00019684428116306663,0.006434299983084202,-0.00019685007282532752,-0.006434340961277485,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,195,78.0,1.1227765083312988,-0.01644834876060486,0.9535105228424072,-8.225612873502541e-06,1.1227784156799316,0.0164388008415699,0.0012196905445307493,-6.272762931303077e-08,-0.0001946261472767219,0.006433289498090744,-0.0001946239499375224,-0.006433417089283466,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,196,78.4,1.122894525527954,-0.01644662767648697,0.9536292552947998,-5.957911525911186e-06,1.1228944063186646,0.01643921434879303,0.0012207634281367064,1.191277334555707e-07,-0.00019152034656144679,0.006436292547732592,-0.00019190844614058733,-0.0064359502866864204,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,197,78.8,1.123072624206543,-0.016448670998215675,0.9538127183914185,-5.110766323923599e-06,1.1230714321136475,0.016439827159047127,0.001220897538587451,2.0557585855840443e-07,-0.00019164920377079397,0.006438927259296179,-0.00019149176659993827,-0.006439130287617445,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,198,79.2,1.1230465173721313,-0.016448527574539185,0.9537846446037292,-1.8643777366378345e-06,1.1230437755584717,0.01644297130405903,0.0012195567833259702,-1.4407850912334652e-08,-0.00019387988140806556,0.006439575459808111,-0.00019382579193916172,-0.006439757999032736,0.0,-3.0,3.0,0.0,-0.03,0.03 +steady,sr,199,79.6,1.1229748725891113,-0.01644841581583023,0.9537095427513123,-3.530978460730694e-07,1.1229711771011353,0.016443338245153427,0.0012180618941783905,2.8028734888607687e-08,-0.00019652470655273646,0.006436011753976345,-0.00019660651742015034,-0.00643462548032403,0.0,-3.0,3.0,0.0,-0.03,0.03 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_long.csv new file mode 100644 index 0000000..df12db5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360453367233276 +steady,target,2,0.8,velocity,upper_uy,-6.014265090925619e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3027747769456255e-08 +steady,target,2,0.8,velocity,lower_ux,1.1360441446304321 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360433101654053 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360433101654053 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.1645541191101074 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360433101654053 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360453367233276 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.1360434293746948 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100593600422144e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0460145100951195e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360433101654053 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360445022583008 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043667793274 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360431909561157 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.1360450983047485 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.136044979095459 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.1360450983047485 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645545959472656 +steady,target,40,16.0,velocity,center_uy,1.943962644190833e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.0618338466156274e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3996183645967903e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512657542614761e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360453367233276 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360433101654053 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.136045217514038 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360430717468262 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360441446304321 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360431909561157 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360431909561157 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.1645543575286865 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.1360453367233276 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886774983257e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872810078713428e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.136044979095459 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.4974123985211918e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058961298549548e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.6995057440854e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035815385985188e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.136044979095459 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.1360448598861694 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.4932186331861885e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.49001175234298e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360431909561157 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360431909561157 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.136043667793274 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.1360435485839844 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.1360435485839844 +steady,target,122,48.8,velocity,upper_uy,-6.114740244811401e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.575972644081048e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.1645543575286865 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645547151565552 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.136043906211853 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.1360450983047485 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.136045217514038 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360447406768799 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360445022583008 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360435485839844 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360443830490112 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360448598861694 +steady,target,147,58.8,velocity,upper_uy,-6.112089613452554e-05 +steady,target,147,58.8,velocity,center_ux,1.164554476737976 +steady,target,147,58.8,velocity,center_uy,-3.734195956894837e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.033318641129881e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360434293746948 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.1360453367233276 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_wide.csv new file mode 100644 index 0000000..c71b9cf --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_3/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360453367233276,-6.014265090925619e-05,1.1645541191101074,1.3027747769456255e-08,1.1360441446304321,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360433101654053,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360433101654053,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.1645541191101074,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360433101654053,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360453367233276,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.1360434293746948,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100593600422144e-05,1.1645541191101074,-4.0460145100951195e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360433101654053,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360445022583008,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043667793274,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360431909561157,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.1360450983047485,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.136044979095459,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.1360450983047485,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645545959472656,1.943962644190833e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.0618338466156274e-05,1.1645541191101074,3.3996183645967903e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512657542614761e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360453367233276,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360433101654053,6.118379678810015e-05 +steady,target,54,21.6,1.136045217514038,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360430717468262,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360441446304321,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360431909561157,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360431909561157,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.1645543575286865,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.1360453367233276,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886774983257e-05,1.1645547151565552,2.872810078713428e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.136044979095459,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.4974123985211918e-07,1.1360431909561157,6.058961298549548e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.6995057440854e-08,1.1360431909561157,6.035815385985188e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360431909561157,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.136044979095459,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.164554476737976,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.1360448598861694,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.4932186331861885e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.49001175234298e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360431909561157,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360431909561157,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.136043667793274,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.1360435485839844,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.1360435485839844,-6.114740244811401e-05,1.1645547151565552,-2.575972644081048e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.1645543575286865,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645547151565552,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.136043906211853,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.1360450983047485,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.136045217514038,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360447406768799,6.093038246035576e-05 +steady,target,137,54.8,1.1360445022583008,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360435485839844,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360443830490112,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360448598861694,-6.112089613452554e-05,1.164554476737976,-3.734195956894837e-07,1.1360433101654053,6.033318641129881e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360434293746948,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.1360453367233276,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_dtw_convergence.csv new file mode 100644 index 0000000..831b963 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.9763912177220911,5,0.9826656301816304,0.9853897946742411,0.9222746729850769,0.9999891945167392,0.9826600154240926,0.9853679985507673 +steady,sr,90,36.0,30,0.976372108312204,-15,0.9826186100641886,0.9853878457493314,0.9222280184427897,0.9999971831820869,0.982616925239563,0.985384067195264 +steady,sr,120,48.0,30,0.9763736189520761,-7,0.9826170722643535,0.9853881823830306,0.9222298781077067,0.9999989379836862,0.9826194405555725,0.9853882024181075 +steady,sr,150,60.0,30,0.9763759872158196,1,0.9826226671536763,0.9853876461116063,0.9222343683242797,0.999997850209052,0.9826240976651509,0.9853892938311523 +steady,sr,180,72.0,30,0.9763687624429164,-13,0.9826084097226461,0.9853884673942958,0.9222200433413188,0.9999988181189405,0.9826081434885661,0.9853886925917322 +steady,sr,200,80.0,30,0.9763759468879135,-27,0.9826220154762269,0.9853886983437405,0.9222342570622762,0.9999991251041556,0.9826235095659892,0.9853880757750934 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_long.csv new file mode 100644 index 0000000..0453429 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.1185922622680664 +steady,sr,0,0.0,velocity,upper_uy,-0.014652044512331486 +steady,sr,0,0.0,velocity,center_ux,1.0866903066635132 +steady,sr,0,0.0,velocity,center_uy,4.2027575545944273e-05 +steady,sr,0,0.0,velocity,lower_ux,1.118560791015625 +steady,sr,0,0.0,velocity,lower_uy,0.014737102203071117 +steady,sr,1,0.4,velocity,upper_ux,1.1185925006866455 +steady,sr,1,0.4,velocity,upper_uy,-0.01465823408216238 +steady,sr,1,0.4,velocity,center_ux,1.0867060422897339 +steady,sr,1,0.4,velocity,center_uy,3.750972609850578e-05 +steady,sr,1,0.4,velocity,lower_ux,1.1185622215270996 +steady,sr,1,0.4,velocity,lower_uy,0.014733662828803062 +steady,sr,2,0.8,velocity,upper_ux,1.118827223777771 +steady,sr,2,0.8,velocity,upper_uy,-0.014658845961093903 +steady,sr,2,0.8,velocity,center_ux,1.086946964263916 +steady,sr,2,0.8,velocity,center_uy,4.069640635862015e-05 +steady,sr,2,0.8,velocity,lower_ux,1.1188011169433594 +steady,sr,2,0.8,velocity,lower_uy,0.014739496633410454 +steady,sr,3,1.2,velocity,upper_ux,1.1191803216934204 +steady,sr,3,1.2,velocity,upper_uy,-0.014666683971881866 +steady,sr,3,1.2,velocity,center_ux,1.087290644645691 +steady,sr,3,1.2,velocity,center_uy,3.784281216212548e-05 +steady,sr,3,1.2,velocity,lower_ux,1.1191531419754028 +steady,sr,3,1.2,velocity,lower_uy,0.014741922728717327 +steady,sr,4,1.6,velocity,upper_ux,1.1187829971313477 +steady,sr,4,1.6,velocity,upper_uy,-0.014666948467493057 +steady,sr,4,1.6,velocity,center_ux,1.0868812799453735 +steady,sr,4,1.6,velocity,center_uy,3.727502189576626e-05 +steady,sr,4,1.6,velocity,lower_ux,1.1187576055526733 +steady,sr,4,1.6,velocity,lower_uy,0.014741428196430206 +steady,sr,5,2.0,velocity,upper_ux,1.118552565574646 +steady,sr,5,2.0,velocity,upper_uy,-0.014661390334367752 +steady,sr,5,2.0,velocity,center_ux,1.0866492986679077 +steady,sr,5,2.0,velocity,center_uy,3.7313242501113564e-05 +steady,sr,5,2.0,velocity,lower_ux,1.118526816368103 +steady,sr,5,2.0,velocity,lower_uy,0.014736312441527843 +steady,sr,6,2.4,velocity,upper_ux,1.118585467338562 +steady,sr,6,2.4,velocity,upper_uy,-0.014661493711173534 +steady,sr,6,2.4,velocity,center_ux,1.0866962671279907 +steady,sr,6,2.4,velocity,center_uy,3.339452086947858e-05 +steady,sr,6,2.4,velocity,lower_ux,1.1185632944107056 +steady,sr,6,2.4,velocity,lower_uy,0.014729085378348827 +steady,sr,7,2.8,velocity,upper_ux,1.1185715198516846 +steady,sr,7,2.8,velocity,upper_uy,-0.014657605439424515 +steady,sr,7,2.8,velocity,center_ux,1.0866941213607788 +steady,sr,7,2.8,velocity,center_uy,3.599021874833852e-05 +steady,sr,7,2.8,velocity,lower_ux,1.1185470819473267 +steady,sr,7,2.8,velocity,lower_uy,0.014730993658304214 +steady,sr,8,3.2,velocity,upper_ux,1.1190731525421143 +steady,sr,8,3.2,velocity,upper_uy,-0.014665809459984303 +steady,sr,8,3.2,velocity,center_ux,1.087194561958313 +steady,sr,8,3.2,velocity,center_uy,2.9790051485178992e-05 +steady,sr,8,3.2,velocity,lower_ux,1.1190515756607056 +steady,sr,8,3.2,velocity,lower_uy,0.014727482572197914 +steady,sr,9,3.6,velocity,upper_ux,1.1190775632858276 +steady,sr,9,3.6,velocity,upper_uy,-0.014662754721939564 +steady,sr,9,3.6,velocity,center_ux,1.0871843099594116 +steady,sr,9,3.6,velocity,center_uy,3.4955253795487806e-05 +steady,sr,9,3.6,velocity,lower_ux,1.1190521717071533 +steady,sr,9,3.6,velocity,lower_uy,0.014733782038092613 +steady,sr,10,4.0,velocity,upper_ux,1.1185569763183594 +steady,sr,10,4.0,velocity,upper_uy,-0.014666061848402023 +steady,sr,10,4.0,velocity,center_ux,1.0866543054580688 +steady,sr,10,4.0,velocity,center_uy,2.8416923669283278e-05 +steady,sr,10,4.0,velocity,lower_ux,1.1185330152511597 +steady,sr,10,4.0,velocity,lower_uy,0.014724106527864933 +steady,sr,11,4.4,velocity,upper_ux,1.118585228919983 +steady,sr,11,4.4,velocity,upper_uy,-0.014657949097454548 +steady,sr,11,4.4,velocity,center_ux,1.0866894721984863 +steady,sr,11,4.4,velocity,center_uy,3.3609925594646484e-05 +steady,sr,11,4.4,velocity,lower_ux,1.1185603141784668 +steady,sr,11,4.4,velocity,lower_uy,0.01472595613449812 +steady,sr,12,4.8,velocity,upper_ux,1.1185657978057861 +steady,sr,12,4.8,velocity,upper_uy,-0.014663143083453178 +steady,sr,12,4.8,velocity,center_ux,1.0866844654083252 +steady,sr,12,4.8,velocity,center_uy,2.789069367281627e-05 +steady,sr,12,4.8,velocity,lower_ux,1.1185466051101685 +steady,sr,12,4.8,velocity,lower_uy,0.014720556326210499 +steady,sr,13,5.2,velocity,upper_ux,1.1187442541122437 +steady,sr,13,5.2,velocity,upper_uy,-0.01466302014887333 +steady,sr,13,5.2,velocity,center_ux,1.086868405342102 +steady,sr,13,5.2,velocity,center_uy,3.0909028282621875e-05 +steady,sr,13,5.2,velocity,lower_ux,1.1187204122543335 +steady,sr,13,5.2,velocity,lower_uy,0.014726579189300537 +steady,sr,14,5.6,velocity,upper_ux,1.1191378831863403 +steady,sr,14,5.6,velocity,upper_uy,-0.014670232310891151 +steady,sr,14,5.6,velocity,center_ux,1.087257742881775 +steady,sr,14,5.6,velocity,center_uy,2.8102847863920033e-05 +steady,sr,14,5.6,velocity,lower_ux,1.1191201210021973 +steady,sr,14,5.6,velocity,lower_uy,0.014727574773132801 +steady,sr,15,6.0,velocity,upper_ux,1.1188232898712158 +steady,sr,15,6.0,velocity,upper_uy,-0.01467019785195589 +steady,sr,15,6.0,velocity,center_ux,1.0869290828704834 +steady,sr,15,6.0,velocity,center_uy,2.89124836854171e-05 +steady,sr,15,6.0,velocity,lower_ux,1.1188045740127563 +steady,sr,15,6.0,velocity,lower_uy,0.014728182926774025 +steady,sr,16,6.4,velocity,upper_ux,1.118550181388855 +steady,sr,16,6.4,velocity,upper_uy,-0.014665287919342518 +steady,sr,16,6.4,velocity,center_ux,1.0866514444351196 +steady,sr,16,6.4,velocity,center_uy,2.8952437787665986e-05 +steady,sr,16,6.4,velocity,lower_ux,1.1185284852981567 +steady,sr,16,6.4,velocity,lower_uy,0.014722773805260658 +steady,sr,17,6.8,velocity,upper_ux,1.1185694932937622 +steady,sr,17,6.8,velocity,upper_uy,-0.014663657173514366 +steady,sr,17,6.8,velocity,center_ux,1.0866810083389282 +steady,sr,17,6.8,velocity,center_uy,2.7006957679986954e-05 +steady,sr,17,6.8,velocity,lower_ux,1.1185486316680908 +steady,sr,17,6.8,velocity,lower_uy,0.01471676491200924 +steady,sr,18,7.2,velocity,upper_ux,1.1185328960418701 +steady,sr,18,7.2,velocity,upper_uy,-0.014660835266113281 +steady,sr,18,7.2,velocity,center_ux,1.0866566896438599 +steady,sr,18,7.2,velocity,center_uy,2.9071532480884343e-05 +steady,sr,18,7.2,velocity,lower_ux,1.1185117959976196 +steady,sr,18,7.2,velocity,lower_uy,0.0147177092730999 +steady,sr,19,7.6,velocity,upper_ux,1.1189942359924316 +steady,sr,19,7.6,velocity,upper_uy,-0.014666169881820679 +steady,sr,19,7.6,velocity,center_ux,1.0871163606643677 +steady,sr,19,7.6,velocity,center_uy,2.4818173187668435e-05 +steady,sr,19,7.6,velocity,lower_ux,1.1189754009246826 +steady,sr,19,7.6,velocity,lower_uy,0.014715594239532948 +steady,sr,20,8.0,velocity,upper_ux,1.119066834449768 +steady,sr,20,8.0,velocity,upper_uy,-0.014666109345853329 +steady,sr,20,8.0,velocity,center_ux,1.0871782302856445 +steady,sr,20,8.0,velocity,center_uy,2.6881269150180742e-05 +steady,sr,20,8.0,velocity,lower_ux,1.1190510988235474 +steady,sr,20,8.0,velocity,lower_uy,0.014720790088176727 +steady,sr,21,8.4,velocity,upper_ux,1.1185822486877441 +steady,sr,21,8.4,velocity,upper_uy,-0.014667754992842674 +steady,sr,21,8.4,velocity,center_ux,1.086686134338379 +steady,sr,21,8.4,velocity,center_uy,2.253952516184654e-05 +steady,sr,21,8.4,velocity,lower_ux,1.1185672283172607 +steady,sr,21,8.4,velocity,lower_uy,0.014714720658957958 +steady,sr,22,8.8,velocity,upper_ux,1.1185784339904785 +steady,sr,22,8.8,velocity,upper_uy,-0.014662222936749458 +steady,sr,22,8.8,velocity,center_ux,1.086683750152588 +steady,sr,22,8.8,velocity,center_uy,2.5107652618316934e-05 +steady,sr,22,8.8,velocity,lower_ux,1.1185606718063354 +steady,sr,22,8.8,velocity,lower_uy,0.014713560231029987 +steady,sr,23,9.2,velocity,upper_ux,1.1185462474822998 +steady,sr,23,9.2,velocity,upper_uy,-0.014664733782410622 +steady,sr,23,9.2,velocity,center_ux,1.0866632461547852 +steady,sr,23,9.2,velocity,center_uy,2.286649396410212e-05 +steady,sr,23,9.2,velocity,lower_ux,1.1185282468795776 +steady,sr,23,9.2,velocity,lower_uy,0.01471049152314663 +steady,sr,24,9.6,velocity,upper_ux,1.1186643838882446 +steady,sr,24,9.6,velocity,upper_uy,-0.014666005037724972 +steady,sr,24,9.6,velocity,center_ux,1.086790919303894 +steady,sr,24,9.6,velocity,center_uy,2.344861422898248e-05 +steady,sr,24,9.6,velocity,lower_ux,1.1186492443084717 +steady,sr,24,9.6,velocity,lower_uy,0.014712457545101643 +steady,sr,25,10.0,velocity,upper_ux,1.1190946102142334 +steady,sr,25,10.0,velocity,upper_uy,-0.014670545235276222 +steady,sr,25,10.0,velocity,center_ux,1.0872139930725098 +steady,sr,25,10.0,velocity,center_uy,2.3103561034076847e-05 +steady,sr,25,10.0,velocity,lower_ux,1.1190801858901978 +steady,sr,25,10.0,velocity,lower_uy,0.014716411009430885 +steady,sr,26,10.4,velocity,upper_ux,1.118852972984314 +steady,sr,26,10.4,velocity,upper_uy,-0.014673404395580292 +steady,sr,26,10.4,velocity,center_ux,1.0869598388671875 +steady,sr,26,10.4,velocity,center_uy,2.0932708139298484e-05 +steady,sr,26,10.4,velocity,lower_ux,1.1188386678695679 +steady,sr,26,10.4,velocity,lower_uy,0.0147146200761199 +steady,sr,27,10.8,velocity,upper_ux,1.1185458898544312 +steady,sr,27,10.8,velocity,upper_uy,-0.01466676127165556 +steady,sr,27,10.8,velocity,center_ux,1.0866498947143555 +steady,sr,27,10.8,velocity,center_uy,2.2990079742157832e-05 +steady,sr,27,10.8,velocity,lower_ux,1.1185327768325806 +steady,sr,27,10.8,velocity,lower_uy,0.01471185777336359 +steady,sr,28,11.2,velocity,upper_ux,1.1185557842254639 +steady,sr,28,11.2,velocity,upper_uy,-0.014666927978396416 +steady,sr,28,11.2,velocity,center_ux,1.0866683721542358 +steady,sr,28,11.2,velocity,center_uy,1.8640961570781656e-05 +steady,sr,28,11.2,velocity,lower_ux,1.118540644645691 +steady,sr,28,11.2,velocity,lower_uy,0.014703851193189621 +steady,sr,29,11.6,velocity,upper_ux,1.118499755859375 +steady,sr,29,11.6,velocity,upper_uy,-0.014662261120975018 +steady,sr,29,11.6,velocity,center_ux,1.086625576019287 +steady,sr,29,11.6,velocity,center_uy,2.169201798096765e-05 +steady,sr,29,11.6,velocity,lower_ux,1.1184883117675781 +steady,sr,29,11.6,velocity,lower_uy,0.014705810695886612 +steady,sr,30,12.0,velocity,upper_ux,1.118914008140564 +steady,sr,30,12.0,velocity,upper_uy,-0.014669022522866726 +steady,sr,30,12.0,velocity,center_ux,1.087040662765503 +steady,sr,30,12.0,velocity,center_uy,1.6355706975446083e-05 +steady,sr,30,12.0,velocity,lower_ux,1.118901252746582 +steady,sr,30,12.0,velocity,lower_uy,0.014702653512358665 +steady,sr,31,12.4,velocity,upper_ux,1.1190519332885742 +steady,sr,31,12.4,velocity,upper_uy,-0.014668469317257404 +steady,sr,31,12.4,velocity,center_ux,1.0871686935424805 +steady,sr,31,12.4,velocity,center_uy,1.9945644453400746e-05 +steady,sr,31,12.4,velocity,lower_ux,1.1190413236618042 +steady,sr,31,12.4,velocity,lower_uy,0.014708583243191242 +steady,sr,32,12.8,velocity,upper_ux,1.1186140775680542 +steady,sr,32,12.8,velocity,upper_uy,-0.014671498909592628 +steady,sr,32,12.8,velocity,center_ux,1.0867199897766113 +steady,sr,32,12.8,velocity,center_uy,1.6108548152260482e-05 +steady,sr,32,12.8,velocity,lower_ux,1.1186012029647827 +steady,sr,32,12.8,velocity,lower_uy,0.01470367331057787 +steady,sr,33,13.2,velocity,upper_ux,1.11857271194458 +steady,sr,33,13.2,velocity,upper_uy,-0.014666145667433739 +steady,sr,33,13.2,velocity,center_ux,1.0866804122924805 +steady,sr,33,13.2,velocity,center_uy,1.8332106265006587e-05 +steady,sr,33,13.2,velocity,lower_ux,1.1185615062713623 +steady,sr,33,13.2,velocity,lower_uy,0.014702503569424152 +steady,sr,34,13.6,velocity,upper_ux,1.118525505065918 +steady,sr,34,13.6,velocity,upper_uy,-0.014667213894426823 +steady,sr,34,13.6,velocity,center_ux,1.086647629737854 +steady,sr,34,13.6,velocity,center_uy,1.6339827197953127e-05 +steady,sr,34,13.6,velocity,lower_ux,1.1185178756713867 +steady,sr,34,13.6,velocity,lower_uy,0.014699270948767662 +steady,sr,35,14.0,velocity,upper_ux,1.1185957193374634 +steady,sr,35,14.0,velocity,upper_uy,-0.01466905977576971 +steady,sr,35,14.0,velocity,center_ux,1.0867259502410889 +steady,sr,35,14.0,velocity,center_uy,1.595193680259399e-05 +steady,sr,35,14.0,velocity,lower_ux,1.1185884475708008 +steady,sr,35,14.0,velocity,lower_uy,0.014700327068567276 +steady,sr,36,14.4,velocity,upper_ux,1.1190434694290161 +steady,sr,36,14.4,velocity,upper_uy,-0.014672107994556427 +steady,sr,36,14.4,velocity,center_ux,1.0871683359146118 +steady,sr,36,14.4,velocity,center_uy,1.613731546967756e-05 +steady,sr,36,14.4,velocity,lower_ux,1.119036078453064 +steady,sr,36,14.4,velocity,lower_uy,0.014704440720379353 +steady,sr,37,14.8,velocity,upper_ux,1.1188751459121704 +steady,sr,37,14.8,velocity,upper_uy,-0.01467597484588623 +steady,sr,37,14.8,velocity,center_ux,1.0869874954223633 +steady,sr,37,14.8,velocity,center_uy,1.3115821275277995e-05 +steady,sr,37,14.8,velocity,lower_ux,1.1188685894012451 +steady,sr,37,14.8,velocity,lower_uy,0.01470251102000475 +steady,sr,38,15.2,velocity,upper_ux,1.1185473203659058 +steady,sr,38,15.2,velocity,upper_uy,-0.014668925665318966 +steady,sr,38,15.2,velocity,center_ux,1.086654543876648 +steady,sr,38,15.2,velocity,center_uy,1.5659925338695757e-05 +steady,sr,38,15.2,velocity,lower_ux,1.11854088306427 +steady,sr,38,15.2,velocity,lower_uy,0.014700349420309067 +steady,sr,39,15.6,velocity,upper_ux,1.1185476779937744 +steady,sr,39,15.6,velocity,upper_uy,-0.014669624157249928 +steady,sr,39,15.6,velocity,center_ux,1.0866628885269165 +steady,sr,39,15.6,velocity,center_uy,1.0819692761288024e-05 +steady,sr,39,15.6,velocity,lower_ux,1.118542194366455 +steady,sr,39,15.6,velocity,lower_uy,0.014691471122205257 +steady,sr,40,16.0,velocity,upper_ux,1.1184756755828857 +steady,sr,40,16.0,velocity,upper_uy,-0.014664747752249241 +steady,sr,40,16.0,velocity,center_ux,1.0866044759750366 +steady,sr,40,16.0,velocity,center_uy,1.3945860700914636e-05 +steady,sr,40,16.0,velocity,lower_ux,1.1184680461883545 +steady,sr,40,16.0,velocity,lower_uy,0.01469346322119236 +steady,sr,41,16.4,velocity,upper_ux,1.1188344955444336 +steady,sr,41,16.4,velocity,upper_uy,-0.01467137224972248 +steady,sr,41,16.4,velocity,center_ux,1.0869648456573486 +steady,sr,41,16.4,velocity,center_uy,8.357585102203302e-06 +steady,sr,41,16.4,velocity,lower_ux,1.11882746219635 +steady,sr,41,16.4,velocity,lower_uy,0.014690165407955647 +steady,sr,42,16.8,velocity,upper_ux,1.1190325021743774 +steady,sr,42,16.8,velocity,upper_uy,-0.014671665616333485 +steady,sr,42,16.8,velocity,center_ux,1.0871546268463135 +steady,sr,42,16.8,velocity,center_uy,1.1224062291148584e-05 +steady,sr,42,16.8,velocity,lower_ux,1.119024395942688 +steady,sr,42,16.8,velocity,lower_uy,0.014696705155074596 +steady,sr,43,17.2,velocity,upper_ux,1.1186450719833374 +steady,sr,43,17.2,velocity,upper_uy,-0.014674565754830837 +steady,sr,43,17.2,velocity,center_ux,1.0867571830749512 +steady,sr,43,17.2,velocity,center_uy,7.511711828556145e-06 +steady,sr,43,17.2,velocity,lower_ux,1.1186397075653076 +steady,sr,43,17.2,velocity,lower_uy,0.014692498371005058 +steady,sr,44,17.6,velocity,upper_ux,1.1185733079910278 +steady,sr,44,17.6,velocity,upper_uy,-0.014670010656118393 +steady,sr,44,17.6,velocity,center_ux,1.0866824388504028 +steady,sr,44,17.6,velocity,center_uy,1.0015201041824184e-05 +steady,sr,44,17.6,velocity,lower_ux,1.1185665130615234 +steady,sr,44,17.6,velocity,lower_uy,0.014691781252622604 +steady,sr,45,18.0,velocity,upper_ux,1.118518590927124 +steady,sr,45,18.0,velocity,upper_uy,-0.014670087955892086 +steady,sr,45,18.0,velocity,center_ux,1.0866382122039795 +steady,sr,45,18.0,velocity,center_uy,8.999620149552356e-06 +steady,sr,45,18.0,velocity,lower_ux,1.1185123920440674 +steady,sr,45,18.0,velocity,lower_uy,0.014688990078866482 +steady,sr,46,18.4,velocity,upper_ux,1.1185444593429565 +steady,sr,46,18.4,velocity,upper_uy,-0.014670709148049355 +steady,sr,46,18.4,velocity,center_ux,1.086674690246582 +steady,sr,46,18.4,velocity,center_uy,9.639878953748848e-06 +steady,sr,46,18.4,velocity,lower_ux,1.1185376644134521 +steady,sr,46,18.4,velocity,lower_uy,0.014689327217638493 +steady,sr,47,18.8,velocity,upper_ux,1.1189942359924316 +steady,sr,47,18.8,velocity,upper_uy,-0.014673391357064247 +steady,sr,47,18.8,velocity,center_ux,1.0871223211288452 +steady,sr,47,18.8,velocity,center_uy,1.0635814760462381e-05 +steady,sr,47,18.8,velocity,lower_ux,1.1189874410629272 +steady,sr,47,18.8,velocity,lower_uy,0.014693724922835827 +steady,sr,48,19.2,velocity,upper_ux,1.1188985109329224 +steady,sr,48,19.2,velocity,upper_uy,-0.014676707796752453 +steady,sr,48,19.2,velocity,center_ux,1.0870121717453003 +steady,sr,48,19.2,velocity,center_uy,9.238282473233994e-06 +steady,sr,48,19.2,velocity,lower_ux,1.1188914775848389 +steady,sr,48,19.2,velocity,lower_uy,0.014692800119519234 +steady,sr,49,19.6,velocity,upper_ux,1.1185601949691772 +steady,sr,49,19.6,velocity,upper_uy,-0.014670615084469318 +steady,sr,49,19.6,velocity,center_ux,1.086668848991394 +steady,sr,49,19.6,velocity,center_uy,1.1304193321848288e-05 +steady,sr,49,19.6,velocity,lower_ux,1.118556022644043 +steady,sr,49,19.6,velocity,lower_uy,0.014691298827528954 +steady,sr,50,20.0,velocity,upper_ux,1.1185498237609863 +steady,sr,50,20.0,velocity,upper_uy,-0.014669729396700859 +steady,sr,50,20.0,velocity,center_ux,1.086664080619812 +steady,sr,50,20.0,velocity,center_uy,7.425112471537432e-06 +steady,sr,50,20.0,velocity,lower_ux,1.1185452938079834 +steady,sr,50,20.0,velocity,lower_uy,0.014683883637189865 +steady,sr,51,20.4,velocity,upper_ux,1.1184606552124023 +steady,sr,51,20.4,velocity,upper_uy,-0.014666233211755753 +steady,sr,51,20.4,velocity,center_ux,1.0865899324417114 +steady,sr,51,20.4,velocity,center_uy,9.027829946717247e-06 +steady,sr,51,20.4,velocity,lower_ux,1.1184577941894531 +steady,sr,51,20.4,velocity,lower_uy,0.014684638008475304 +steady,sr,52,20.8,velocity,upper_ux,1.1187645196914673 +steady,sr,52,20.8,velocity,upper_uy,-0.014670324511826038 +steady,sr,52,20.8,velocity,center_ux,1.0868946313858032 +steady,sr,52,20.8,velocity,center_uy,5.518195848708274e-06 +steady,sr,52,20.8,velocity,lower_ux,1.1187610626220703 +steady,sr,52,20.8,velocity,lower_uy,0.01468266174197197 +steady,sr,53,21.2,velocity,upper_ux,1.119011640548706 +steady,sr,53,21.2,velocity,upper_uy,-0.014672485180199146 +steady,sr,53,21.2,velocity,center_ux,1.0871360301971436 +steady,sr,53,21.2,velocity,center_uy,6.831953214714304e-06 +steady,sr,53,21.2,velocity,lower_ux,1.1190086603164673 +steady,sr,53,21.2,velocity,lower_uy,0.014687580987811089 +steady,sr,54,21.6,velocity,upper_ux,1.1186814308166504 +steady,sr,54,21.6,velocity,upper_uy,-0.014674404636025429 +steady,sr,54,21.6,velocity,center_ux,1.086794137954712 +steady,sr,54,21.6,velocity,center_uy,5.707062882720493e-06 +steady,sr,54,21.6,velocity,lower_ux,1.1186786890029907 +steady,sr,54,21.6,velocity,lower_uy,0.014686997048556805 +steady,sr,55,22.0,velocity,upper_ux,1.118576169013977 +steady,sr,55,22.0,velocity,upper_uy,-0.01467184443026781 +steady,sr,55,22.0,velocity,center_ux,1.0866891145706177 +steady,sr,55,22.0,velocity,center_uy,5.865344974154141e-06 +steady,sr,55,22.0,velocity,lower_ux,1.1185740232467651 +steady,sr,55,22.0,velocity,lower_uy,0.014683966524899006 +steady,sr,56,22.4,velocity,upper_ux,1.1185153722763062 +steady,sr,56,22.4,velocity,upper_uy,-0.014669548720121384 +steady,sr,56,22.4,velocity,center_ux,1.0866343975067139 +steady,sr,56,22.4,velocity,center_uy,7.153271781135118e-06 +steady,sr,56,22.4,velocity,lower_ux,1.1185128688812256 +steady,sr,56,22.4,velocity,lower_uy,0.01468324102461338 +steady,sr,57,22.8,velocity,upper_ux,1.1185016632080078 +steady,sr,57,22.8,velocity,upper_uy,-0.014671999961137772 +steady,sr,57,22.8,velocity,center_ux,1.0866299867630005 +steady,sr,57,22.8,velocity,center_uy,5.314067038852954e-06 +steady,sr,57,22.8,velocity,lower_ux,1.1184985637664795 +steady,sr,57,22.8,velocity,lower_uy,0.01468136440962553 +steady,sr,58,23.2,velocity,upper_ux,1.1189450025558472 +steady,sr,58,23.2,velocity,upper_uy,-0.014672432094812393 +steady,sr,58,23.2,velocity,center_ux,1.0870720148086548 +steady,sr,58,23.2,velocity,center_uy,7.279269539139932e-06 +steady,sr,58,23.2,velocity,lower_ux,1.118942141532898 +steady,sr,58,23.2,velocity,lower_uy,0.01468647737056017 +steady,sr,59,23.6,velocity,upper_ux,1.118909478187561 +steady,sr,59,23.6,velocity,upper_uy,-0.014677510596811771 +steady,sr,59,23.6,velocity,center_ux,1.087028980255127 +steady,sr,59,23.6,velocity,center_uy,2.8803060558857396e-06 +steady,sr,59,23.6,velocity,lower_ux,1.1189072132110596 +steady,sr,59,23.6,velocity,lower_uy,0.014684362336993217 +steady,sr,60,24.0,velocity,upper_ux,1.1185773611068726 +steady,sr,60,24.0,velocity,upper_uy,-0.014671176671981812 +steady,sr,60,24.0,velocity,center_ux,1.0866882801055908 +steady,sr,60,24.0,velocity,center_uy,6.207249953149585e-06 +steady,sr,60,24.0,velocity,lower_ux,1.1185755729675293 +steady,sr,60,24.0,velocity,lower_uy,0.014684442430734634 +steady,sr,61,24.4,velocity,upper_ux,1.118557095527649 +steady,sr,61,24.4,velocity,upper_uy,-0.014671571552753448 +steady,sr,61,24.4,velocity,center_ux,1.0866724252700806 +steady,sr,61,24.4,velocity,center_uy,2.2335643734550104e-06 +steady,sr,61,24.4,velocity,lower_ux,1.1185564994812012 +steady,sr,61,24.4,velocity,lower_uy,0.014676624909043312 +steady,sr,62,24.8,velocity,upper_ux,1.118458867073059 +steady,sr,62,24.8,velocity,upper_uy,-0.01466686837375164 +steady,sr,62,24.8,velocity,center_ux,1.086584448814392 +steady,sr,62,24.8,velocity,center_uy,5.706025604013121e-06 +steady,sr,62,24.8,velocity,lower_ux,1.1184566020965576 +steady,sr,62,24.8,velocity,lower_uy,0.014678377658128738 +steady,sr,63,25.2,velocity,upper_ux,1.1186999082565308 +steady,sr,63,25.2,velocity,upper_uy,-0.014671065844595432 +steady,sr,63,25.2,velocity,center_ux,1.0868291854858398 +steady,sr,63,25.2,velocity,center_uy,2.7142828002979513e-06 +steady,sr,63,25.2,velocity,lower_ux,1.118698000907898 +steady,sr,63,25.2,velocity,lower_uy,0.014676565304398537 +steady,sr,64,25.6,velocity,upper_ux,1.1189897060394287 +steady,sr,64,25.6,velocity,upper_uy,-0.014673417434096336 +steady,sr,64,25.6,velocity,center_ux,1.087113857269287 +steady,sr,64,25.6,velocity,center_uy,4.539303063211264e-06 +steady,sr,64,25.6,velocity,lower_ux,1.118989109992981 +steady,sr,64,25.6,velocity,lower_uy,0.01468203030526638 +steady,sr,65,26.0,velocity,upper_ux,1.118715763092041 +steady,sr,65,26.0,velocity,upper_uy,-0.014675859361886978 +steady,sr,65,26.0,velocity,center_ux,1.0868297815322876 +steady,sr,65,26.0,velocity,center_uy,2.953808916572598e-06 +steady,sr,65,26.0,velocity,lower_ux,1.1187151670455933 +steady,sr,65,26.0,velocity,lower_uy,0.01468169130384922 +steady,sr,66,26.4,velocity,upper_ux,1.1185860633850098 +steady,sr,66,26.4,velocity,upper_uy,-0.014673796482384205 +steady,sr,66,26.4,velocity,center_ux,1.0866978168487549 +steady,sr,66,26.4,velocity,center_uy,2.5726935746206436e-06 +steady,sr,66,26.4,velocity,lower_ux,1.118585467338562 +steady,sr,66,26.4,velocity,lower_uy,0.01467898953706026 +steady,sr,67,26.8,velocity,upper_ux,1.1185189485549927 +steady,sr,67,26.8,velocity,upper_uy,-0.014671889133751392 +steady,sr,67,26.8,velocity,center_ux,1.0866373777389526 +steady,sr,67,26.8,velocity,center_uy,2.7140026759298053e-06 +steady,sr,67,26.8,velocity,lower_ux,1.1185188293457031 +steady,sr,67,26.8,velocity,lower_uy,0.014677593484520912 +steady,sr,68,27.2,velocity,upper_ux,1.1184687614440918 +steady,sr,68,27.2,velocity,upper_uy,-0.014673607423901558 +steady,sr,68,27.2,velocity,center_ux,1.0865976810455322 +steady,sr,68,27.2,velocity,center_uy,-3.035718805222132e-07 +steady,sr,68,27.2,velocity,lower_ux,1.118468165397644 +steady,sr,68,27.2,velocity,lower_uy,0.01467475201934576 +steady,sr,69,27.6,velocity,upper_ux,1.1188925504684448 +steady,sr,69,27.6,velocity,upper_uy,-0.01467442512512207 +steady,sr,69,27.6,velocity,center_ux,1.0870224237442017 +steady,sr,69,27.6,velocity,center_uy,1.4898896552040242e-06 +steady,sr,69,27.6,velocity,lower_ux,1.118891716003418 +steady,sr,69,27.6,velocity,lower_uy,0.01467925775796175 +steady,sr,70,28.0,velocity,upper_ux,1.1189181804656982 +steady,sr,70,28.0,velocity,upper_uy,-0.014679590240120888 +steady,sr,70,28.0,velocity,center_ux,1.0870394706726074 +steady,sr,70,28.0,velocity,center_uy,-2.1206578821875155e-06 +steady,sr,70,28.0,velocity,lower_ux,1.1189168691635132 +steady,sr,70,28.0,velocity,lower_uy,0.014677830971777439 +steady,sr,71,28.4,velocity,upper_ux,1.1185998916625977 +steady,sr,71,28.4,velocity,upper_uy,-0.014674660749733448 +steady,sr,71,28.4,velocity,center_ux,1.0867103338241577 +steady,sr,71,28.4,velocity,center_uy,9.988160627472098e-07 +steady,sr,71,28.4,velocity,lower_ux,1.118597388267517 +steady,sr,71,28.4,velocity,lower_uy,0.014678522013127804 +steady,sr,72,28.8,velocity,upper_ux,1.1185716390609741 +steady,sr,72,28.8,velocity,upper_uy,-0.014674589969217777 +steady,sr,72,28.8,velocity,center_ux,1.0866847038269043 +steady,sr,72,28.8,velocity,center_uy,-2.3693683033343405e-06 +steady,sr,72,28.8,velocity,lower_ux,1.1185693740844727 +steady,sr,72,28.8,velocity,lower_uy,0.014671694487333298 +steady,sr,73,29.2,velocity,upper_ux,1.118463158607483 +steady,sr,73,29.2,velocity,upper_uy,-0.01467038318514824 +steady,sr,73,29.2,velocity,center_ux,1.0865845680236816 +steady,sr,73,29.2,velocity,center_uy,-3.5750446158999694e-07 +steady,sr,73,29.2,velocity,lower_ux,1.1184601783752441 +steady,sr,73,29.2,velocity,lower_uy,0.014672024175524712 +steady,sr,74,29.6,velocity,upper_ux,1.1186447143554688 +steady,sr,74,29.6,velocity,upper_uy,-0.014673671685159206 +steady,sr,74,29.6,velocity,center_ux,1.0867729187011719 +steady,sr,74,29.6,velocity,center_uy,-3.5330001537658973e-06 +steady,sr,74,29.6,velocity,lower_ux,1.118641972541809 +steady,sr,74,29.6,velocity,lower_uy,0.014670807868242264 +steady,sr,75,30.0,velocity,upper_ux,1.1189645528793335 +steady,sr,75,30.0,velocity,upper_uy,-0.014676056802272797 +steady,sr,75,30.0,velocity,center_ux,1.0870894193649292 +steady,sr,75,30.0,velocity,center_uy,-2.820330564645701e-06 +steady,sr,75,30.0,velocity,lower_ux,1.118960976600647 +steady,sr,75,30.0,velocity,lower_uy,0.014675457030534744 +steady,sr,76,30.4,velocity,upper_ux,1.118750810623169 +steady,sr,76,30.4,velocity,upper_uy,-0.014677987433969975 +steady,sr,76,30.4,velocity,center_ux,1.0868638753890991 +steady,sr,76,30.4,velocity,center_uy,-2.1706703137169825e-06 +steady,sr,76,30.4,velocity,lower_ux,1.1187440156936646 +steady,sr,76,30.4,velocity,lower_uy,0.014677363447844982 +steady,sr,77,30.8,velocity,upper_ux,1.1186020374298096 +steady,sr,77,30.8,velocity,upper_uy,-0.014675774611532688 +steady,sr,77,30.8,velocity,center_ux,1.0867094993591309 +steady,sr,77,30.8,velocity,center_uy,-9.249958452528517e-07 +steady,sr,77,30.8,velocity,lower_ux,1.1185957193374634 +steady,sr,77,30.8,velocity,lower_uy,0.014675076119601727 +steady,sr,78,31.2,velocity,upper_ux,1.1185307502746582 +steady,sr,78,31.2,velocity,upper_uy,-0.014671997167170048 +steady,sr,78,31.2,velocity,center_ux,1.0866471529006958 +steady,sr,78,31.2,velocity,center_uy,2.4236462650151225e-06 +steady,sr,78,31.2,velocity,lower_ux,1.1185256242752075 +steady,sr,78,31.2,velocity,lower_uy,0.014674749225378036 +steady,sr,79,31.6,velocity,upper_ux,1.1184526681900024 +steady,sr,79,31.6,velocity,upper_uy,-0.014672735705971718 +steady,sr,79,31.6,velocity,center_ux,1.0865789651870728 +steady,sr,79,31.6,velocity,center_uy,1.7622618315726868e-06 +steady,sr,79,31.6,velocity,lower_ux,1.118447184562683 +steady,sr,79,31.6,velocity,lower_uy,0.014672670513391495 +steady,sr,80,32.0,velocity,upper_ux,1.1188459396362305 +steady,sr,80,32.0,velocity,upper_uy,-0.014672350138425827 +steady,sr,80,32.0,velocity,center_ux,1.0869725942611694 +steady,sr,80,32.0,velocity,center_uy,4.145802449784242e-06 +steady,sr,80,32.0,velocity,lower_ux,1.1188398599624634 +steady,sr,80,32.0,velocity,lower_uy,0.014677358791232109 +steady,sr,81,32.4,velocity,upper_ux,1.1189255714416504 +steady,sr,81,32.4,velocity,upper_uy,-0.014676792547106743 +steady,sr,81,32.4,velocity,center_ux,1.0870435237884521 +steady,sr,81,32.4,velocity,center_uy,1.4039945881449967e-06 +steady,sr,81,32.4,velocity,lower_ux,1.1189203262329102 +steady,sr,81,32.4,velocity,lower_uy,0.014677551575005054 +steady,sr,82,32.8,velocity,upper_ux,1.1186251640319824 +steady,sr,82,32.8,velocity,upper_uy,-0.014672142453491688 +steady,sr,82,32.8,velocity,center_ux,1.0867365598678589 +steady,sr,82,32.8,velocity,center_uy,4.048560640512733e-06 +steady,sr,82,32.8,velocity,lower_ux,1.1186211109161377 +steady,sr,82,32.8,velocity,lower_uy,0.01467814575880766 +steady,sr,83,33.2,velocity,upper_ux,1.1185894012451172 +steady,sr,83,33.2,velocity,upper_uy,-0.01467079296708107 +steady,sr,83,33.2,velocity,center_ux,1.086701512336731 +steady,sr,83,33.2,velocity,center_uy,2.4547825887566432e-06 +steady,sr,83,33.2,velocity,lower_ux,1.1185870170593262 +steady,sr,83,33.2,velocity,lower_uy,0.01467321440577507 +steady,sr,84,33.6,velocity,upper_ux,1.1184715032577515 +steady,sr,84,33.6,velocity,upper_uy,-0.01466769352555275 +steady,sr,84,33.6,velocity,center_ux,1.0865923166275024 +steady,sr,84,33.6,velocity,center_uy,4.4762537072529085e-06 +steady,sr,84,33.6,velocity,lower_ux,1.1184691190719604 +steady,sr,84,33.6,velocity,lower_uy,0.01467319019138813 +steady,sr,85,34.0,velocity,upper_ux,1.1185944080352783 +steady,sr,85,34.0,velocity,upper_uy,-0.01466903556138277 +steady,sr,85,34.0,velocity,center_ux,1.0867245197296143 +steady,sr,85,34.0,velocity,center_uy,3.6162796277494635e-06 +steady,sr,85,34.0,velocity,lower_ux,1.1185928583145142 +steady,sr,85,34.0,velocity,lower_uy,0.014673369936645031 +steady,sr,86,34.4,velocity,upper_ux,1.1189351081848145 +steady,sr,86,34.4,velocity,upper_uy,-0.01467261090874672 +steady,sr,86,34.4,velocity,center_ux,1.087063193321228 +steady,sr,86,34.4,velocity,center_uy,3.5849154755851487e-06 +steady,sr,86,34.4,velocity,lower_ux,1.1189345121383667 +steady,sr,86,34.4,velocity,lower_uy,0.014676681719720364 +steady,sr,87,34.8,velocity,upper_ux,1.1187742948532104 +steady,sr,87,34.8,velocity,upper_uy,-0.014673905447125435 +steady,sr,87,34.8,velocity,center_ux,1.0868932008743286 +steady,sr,87,34.8,velocity,center_uy,4.175302819930948e-06 +steady,sr,87,34.8,velocity,lower_ux,1.1187745332717896 +steady,sr,87,34.8,velocity,lower_uy,0.014679602347314358 +steady,sr,88,35.2,velocity,upper_ux,1.1186132431030273 +steady,sr,88,35.2,velocity,upper_uy,-0.014673901721835136 +steady,sr,88,35.2,velocity,center_ux,1.086725115776062 +steady,sr,88,35.2,velocity,center_uy,1.450235458833049e-06 +steady,sr,88,35.2,velocity,lower_ux,1.1186141967773438 +steady,sr,88,35.2,velocity,lower_uy,0.014675557613372803 +steady,sr,89,35.6,velocity,upper_ux,1.1185405254364014 +steady,sr,89,35.6,velocity,upper_uy,-0.014669401571154594 +steady,sr,89,35.6,velocity,center_ux,1.0866591930389404 +steady,sr,89,35.6,velocity,center_uy,3.212443289157818e-06 +steady,sr,89,35.6,velocity,lower_ux,1.1185413599014282 +steady,sr,89,35.6,velocity,lower_uy,0.014675954356789589 +steady,sr,90,36.0,velocity,upper_ux,1.118438720703125 +steady,sr,90,36.0,velocity,upper_uy,-0.014671679586172104 +steady,sr,90,36.0,velocity,center_ux,1.0865665674209595 +steady,sr,90,36.0,velocity,center_uy,-3.657864056094695e-07 +steady,sr,90,36.0,velocity,lower_ux,1.1184401512145996 +steady,sr,90,36.0,velocity,lower_uy,0.014671743847429752 +steady,sr,91,36.4,velocity,upper_ux,1.1187937259674072 +steady,sr,91,36.4,velocity,upper_uy,-0.014670494943857193 +steady,sr,91,36.4,velocity,center_ux,1.0869247913360596 +steady,sr,91,36.4,velocity,center_uy,2.4105670490826014e-06 +steady,sr,91,36.4,velocity,lower_ux,1.1187950372695923 +steady,sr,91,36.4,velocity,lower_uy,0.014675931073725224 +steady,sr,92,36.8,velocity,upper_ux,1.1189178228378296 +steady,sr,92,36.8,velocity,upper_uy,-0.014676210470497608 +steady,sr,92,36.8,velocity,center_ux,1.0870434045791626 +steady,sr,92,36.8,velocity,center_uy,-9.402371006217436e-07 +steady,sr,92,36.8,velocity,lower_ux,1.1189208030700684 +steady,sr,92,36.8,velocity,lower_uy,0.014674886129796505 +steady,sr,93,37.2,velocity,upper_ux,1.1186461448669434 +steady,sr,93,37.2,velocity,upper_uy,-0.01467250008136034 +steady,sr,93,37.2,velocity,center_ux,1.086763858795166 +steady,sr,93,37.2,velocity,center_uy,1.7407087398169097e-06 +steady,sr,93,37.2,velocity,lower_ux,1.118647813796997 +steady,sr,93,37.2,velocity,lower_uy,0.01467645913362503 +steady,sr,94,37.6,velocity,upper_ux,1.1186023950576782 +steady,sr,94,37.6,velocity,upper_uy,-0.014672336168587208 +steady,sr,94,37.6,velocity,center_ux,1.0867180824279785 +steady,sr,94,37.6,velocity,center_uy,-9.973803116736235e-07 +steady,sr,94,37.6,velocity,lower_ux,1.1186037063598633 +steady,sr,94,37.6,velocity,lower_uy,0.014671090990304947 +steady,sr,95,38.0,velocity,upper_ux,1.118481159210205 +steady,sr,95,38.0,velocity,upper_uy,-0.014669112861156464 +steady,sr,95,38.0,velocity,center_ux,1.0866032838821411 +steady,sr,95,38.0,velocity,center_uy,7.199025731097208e-07 +steady,sr,95,38.0,velocity,lower_ux,1.1184824705123901 +steady,sr,95,38.0,velocity,lower_uy,0.014670925214886665 +steady,sr,96,38.4,velocity,upper_ux,1.118551254272461 +steady,sr,96,38.4,velocity,upper_uy,-0.014670583419501781 +steady,sr,96,38.4,velocity,center_ux,1.086682677268982 +steady,sr,96,38.4,velocity,center_uy,-1.5669051833810954e-07 +steady,sr,96,38.4,velocity,lower_ux,1.1185526847839355 +steady,sr,96,38.4,velocity,lower_uy,0.014670353382825851 +steady,sr,97,38.8,velocity,upper_ux,1.1189050674438477 +steady,sr,97,38.8,velocity,upper_uy,-0.014673834666609764 +steady,sr,97,38.8,velocity,center_ux,1.087033748626709 +steady,sr,97,38.8,velocity,center_uy,-5.426279585662996e-07 +steady,sr,97,38.8,velocity,lower_ux,1.1189061403274536 +steady,sr,97,38.8,velocity,lower_uy,0.014673551544547081 +steady,sr,98,39.2,velocity,upper_ux,1.1188007593154907 +steady,sr,98,39.2,velocity,upper_uy,-0.014675607904791832 +steady,sr,98,39.2,velocity,center_ux,1.0869182348251343 +steady,sr,98,39.2,velocity,center_uy,-3.2246521186607424e-07 +steady,sr,98,39.2,velocity,lower_ux,1.118801236152649 +steady,sr,98,39.2,velocity,lower_uy,0.014676264487206936 +steady,sr,99,39.6,velocity,upper_ux,1.118626356124878 +steady,sr,99,39.6,velocity,upper_uy,-0.014675471931695938 +steady,sr,99,39.6,velocity,center_ux,1.0867401361465454 +steady,sr,99,39.6,velocity,center_uy,-2.2927065401745494e-06 +steady,sr,99,39.6,velocity,lower_ux,1.1186261177062988 +steady,sr,99,39.6,velocity,lower_uy,0.014673102647066116 +steady,sr,100,40.0,velocity,upper_ux,1.1185564994812012 +steady,sr,100,40.0,velocity,upper_uy,-0.014671187847852707 +steady,sr,100,40.0,velocity,center_ux,1.0866752862930298 +steady,sr,100,40.0,velocity,center_uy,-1.7094279769480636e-08 +steady,sr,100,40.0,velocity,lower_ux,1.118556261062622 +steady,sr,100,40.0,velocity,lower_uy,0.014673035591840744 +steady,sr,101,40.4,velocity,upper_ux,1.1184356212615967 +steady,sr,101,40.4,velocity,upper_uy,-0.01467203814536333 +steady,sr,101,40.4,velocity,center_ux,1.0865622758865356 +steady,sr,101,40.4,velocity,center_uy,-1.4411380107048899e-06 +steady,sr,101,40.4,velocity,lower_ux,1.1184356212615967 +steady,sr,101,40.4,velocity,lower_uy,0.014669779688119888 +steady,sr,102,40.8,velocity,upper_ux,1.1187459230422974 +steady,sr,102,40.8,velocity,upper_uy,-0.014670786447823048 +steady,sr,102,40.8,velocity,center_ux,1.0868768692016602 +steady,sr,102,40.8,velocity,center_uy,1.8715595615503844e-06 +steady,sr,102,40.8,velocity,lower_ux,1.1187461614608765 +steady,sr,102,40.8,velocity,lower_uy,0.014673033729195595 +steady,sr,103,41.2,velocity,upper_ux,1.1189125776290894 +steady,sr,103,41.2,velocity,upper_uy,-0.014675038866698742 +steady,sr,103,41.2,velocity,center_ux,1.0870367288589478 +steady,sr,103,41.2,velocity,center_uy,1.6308128181208303e-07 +steady,sr,103,41.2,velocity,lower_ux,1.1189130544662476 +steady,sr,103,41.2,velocity,lower_uy,0.014673777855932713 +steady,sr,104,41.6,velocity,upper_ux,1.1186747550964355 +steady,sr,104,41.6,velocity,upper_uy,-0.01467305887490511 +steady,sr,104,41.6,velocity,center_ux,1.0867902040481567 +steady,sr,104,41.6,velocity,center_uy,1.938333753059851e-06 +steady,sr,104,41.6,velocity,lower_ux,1.118675947189331 +steady,sr,104,41.6,velocity,lower_uy,0.01467562559992075 +steady,sr,105,42.0,velocity,upper_ux,1.11862051486969 +steady,sr,105,42.0,velocity,upper_uy,-0.014671598561108112 +steady,sr,105,42.0,velocity,center_ux,1.0867353677749634 +steady,sr,105,42.0,velocity,center_uy,5.003049068363907e-07 +steady,sr,105,42.0,velocity,lower_ux,1.118621826171875 +steady,sr,105,42.0,velocity,lower_uy,0.014671921730041504 +steady,sr,106,42.4,velocity,upper_ux,1.118493676185608 +steady,sr,106,42.4,velocity,upper_uy,-0.014669465832412243 +steady,sr,106,42.4,velocity,center_ux,1.08661687374115 +steady,sr,106,42.4,velocity,center_uy,1.015523253045103e-06 +steady,sr,106,42.4,velocity,lower_ux,1.1184953451156616 +steady,sr,106,42.4,velocity,lower_uy,0.014670691452920437 +steady,sr,107,42.8,velocity,upper_ux,1.1185170412063599 +steady,sr,107,42.8,velocity,upper_uy,-0.01466923113912344 +steady,sr,107,42.8,velocity,center_ux,1.0866469144821167 +steady,sr,107,42.8,velocity,center_uy,1.3415061630439595e-06 +steady,sr,107,42.8,velocity,lower_ux,1.1185187101364136 +steady,sr,107,42.8,velocity,lower_uy,0.014670982025563717 +steady,sr,108,43.2,velocity,upper_ux,1.1188712120056152 +steady,sr,108,43.2,velocity,upper_uy,-0.014673348516225815 +steady,sr,108,43.2,velocity,center_ux,1.0870018005371094 +steady,sr,108,43.2,velocity,center_uy,6.818094675509201e-07 +steady,sr,108,43.2,velocity,lower_ux,1.1188726425170898 +steady,sr,108,43.2,velocity,lower_uy,0.014673233963549137 +steady,sr,109,43.6,velocity,upper_ux,1.1188148260116577 +steady,sr,109,43.6,velocity,upper_uy,-0.014674460515379906 +steady,sr,109,43.6,velocity,center_ux,1.086938500404358 +steady,sr,109,43.6,velocity,center_uy,2.1373341496655485e-06 +steady,sr,109,43.6,velocity,lower_ux,1.1188169717788696 +steady,sr,109,43.6,velocity,lower_uy,0.01467699185013771 +steady,sr,110,44.0,velocity,upper_ux,1.1186401844024658 +steady,sr,110,44.0,velocity,upper_uy,-0.014675433747470379 +steady,sr,110,44.0,velocity,center_ux,1.0867544412612915 +steady,sr,110,44.0,velocity,center_uy,-2.267600223149202e-07 +steady,sr,110,44.0,velocity,lower_ux,1.1186420917510986 +steady,sr,110,44.0,velocity,lower_uy,0.014673726633191109 +steady,sr,111,44.4,velocity,upper_ux,1.118577480316162 +steady,sr,111,44.4,velocity,upper_uy,-0.014671077951788902 +steady,sr,111,44.4,velocity,center_ux,1.0866928100585938 +steady,sr,111,44.4,velocity,center_uy,1.2972368494956754e-06 +steady,sr,111,44.4,velocity,lower_ux,1.1185810565948486 +steady,sr,111,44.4,velocity,lower_uy,0.01467349287122488 +steady,sr,112,44.8,velocity,upper_ux,1.1184377670288086 +steady,sr,112,44.8,velocity,upper_uy,-0.0146720502525568 +steady,sr,112,44.8,velocity,center_ux,1.0865633487701416 +steady,sr,112,44.8,velocity,center_uy,-1.771311076481652e-06 +steady,sr,112,44.8,velocity,lower_ux,1.1184409856796265 +steady,sr,112,44.8,velocity,lower_uy,0.01466930378228426 +steady,sr,113,45.2,velocity,upper_ux,1.1186977624893188 +steady,sr,113,45.2,velocity,upper_uy,-0.014670873992145061 +steady,sr,113,45.2,velocity,center_ux,1.0868290662765503 +steady,sr,113,45.2,velocity,center_uy,2.962406142614782e-08 +steady,sr,113,45.2,velocity,lower_ux,1.1187019348144531 +steady,sr,113,45.2,velocity,lower_uy,0.014671734534204006 +steady,sr,114,45.6,velocity,upper_ux,1.1188974380493164 +steady,sr,114,45.6,velocity,upper_uy,-0.014675064012408257 +steady,sr,114,45.6,velocity,center_ux,1.0870250463485718 +steady,sr,114,45.6,velocity,center_uy,-1.7499399973530672e-06 +steady,sr,114,45.6,velocity,lower_ux,1.1189005374908447 +steady,sr,114,45.6,velocity,lower_uy,0.01467239111661911 +steady,sr,115,46.0,velocity,upper_ux,1.1186957359313965 +steady,sr,115,46.0,velocity,upper_uy,-0.014674805104732513 +steady,sr,115,46.0,velocity,center_ux,1.0868126153945923 +steady,sr,115,46.0,velocity,center_uy,-1.186639565275982e-06 +steady,sr,115,46.0,velocity,lower_ux,1.1186985969543457 +steady,sr,115,46.0,velocity,lower_uy,0.014673484489321709 +steady,sr,116,46.4,velocity,upper_ux,1.118639349937439 +steady,sr,116,46.4,velocity,upper_uy,-0.014672904275357723 +steady,sr,116,46.4,velocity,center_ux,1.086751937866211 +steady,sr,116,46.4,velocity,center_uy,-1.6629345509500126e-06 +steady,sr,116,46.4,velocity,lower_ux,1.1186414957046509 +steady,sr,116,46.4,velocity,lower_uy,0.014671016484498978 +steady,sr,117,46.8,velocity,upper_ux,1.1185110807418823 +steady,sr,117,46.8,velocity,upper_uy,-0.01467183604836464 +steady,sr,117,46.8,velocity,center_ux,1.0866317749023438 +steady,sr,117,46.8,velocity,center_uy,-2.0879342628177255e-06 +steady,sr,117,46.8,velocity,lower_ux,1.1185141801834106 +steady,sr,117,46.8,velocity,lower_uy,0.01466889027506113 +steady,sr,118,47.2,velocity,upper_ux,1.1184906959533691 +steady,sr,118,47.2,velocity,upper_uy,-0.01467058900743723 +steady,sr,118,47.2,velocity,center_ux,1.0866185426712036 +steady,sr,118,47.2,velocity,center_uy,-8.221969096666726e-07 +steady,sr,118,47.2,velocity,lower_ux,1.118492841720581 +steady,sr,118,47.2,velocity,lower_uy,0.01466936431825161 +steady,sr,119,47.6,velocity,upper_ux,1.1188374757766724 +steady,sr,119,47.6,velocity,upper_uy,-0.01467521209269762 +steady,sr,119,47.6,velocity,center_ux,1.086967945098877 +steady,sr,119,47.6,velocity,center_uy,-2.5589129108993802e-06 +steady,sr,119,47.6,velocity,lower_ux,1.1188397407531738 +steady,sr,119,47.6,velocity,lower_uy,0.014670410193502903 +steady,sr,120,48.0,velocity,upper_ux,1.1188302040100098 +steady,sr,120,48.0,velocity,upper_uy,-0.014675882644951344 +steady,sr,120,48.0,velocity,center_ux,1.0869531631469727 +steady,sr,120,48.0,velocity,center_uy,-1.1258198355790228e-06 +steady,sr,120,48.0,velocity,lower_ux,1.1188323497772217 +steady,sr,120,48.0,velocity,lower_uy,0.014675063081085682 +steady,sr,121,48.4,velocity,upper_ux,1.1186541318893433 +steady,sr,121,48.4,velocity,upper_uy,-0.014677423052489758 +steady,sr,121,48.4,velocity,center_ux,1.0867717266082764 +steady,sr,121,48.4,velocity,center_uy,-4.378012818051502e-06 +steady,sr,121,48.4,velocity,lower_ux,1.1186554431915283 +steady,sr,121,48.4,velocity,lower_uy,0.014671539887785912 +steady,sr,122,48.8,velocity,upper_ux,1.1185981035232544 +steady,sr,122,48.8,velocity,upper_uy,-0.014672786928713322 +steady,sr,122,48.8,velocity,center_ux,1.0867133140563965 +steady,sr,122,48.8,velocity,center_uy,-1.9188182704965584e-06 +steady,sr,122,48.8,velocity,lower_ux,1.1185991764068604 +steady,sr,122,48.8,velocity,lower_uy,0.01467157807201147 +steady,sr,123,49.2,velocity,upper_ux,1.1184464693069458 +steady,sr,123,49.2,velocity,upper_uy,-0.014673450030386448 +steady,sr,123,49.2,velocity,center_ux,1.086571455001831 +steady,sr,123,49.2,velocity,center_uy,-3.632685320553719e-06 +steady,sr,123,49.2,velocity,lower_ux,1.1184464693069458 +steady,sr,123,49.2,velocity,lower_uy,0.014667588286101818 +steady,sr,124,49.6,velocity,upper_ux,1.118658185005188 +steady,sr,124,49.6,velocity,upper_uy,-0.014671064913272858 +steady,sr,124,49.6,velocity,center_ux,1.086787462234497 +steady,sr,124,49.6,velocity,center_uy,-3.2259646332022385e-07 +steady,sr,124,49.6,velocity,lower_ux,1.1186579465866089 +steady,sr,124,49.6,velocity,lower_uy,0.014670265838503838 +steady,sr,125,50.0,velocity,upper_ux,1.118882417678833 +steady,sr,125,50.0,velocity,upper_uy,-0.014675183221697807 +steady,sr,125,50.0,velocity,center_ux,1.0870096683502197 +steady,sr,125,50.0,velocity,center_uy,-1.4967022252676543e-06 +steady,sr,125,50.0,velocity,lower_ux,1.118882179260254 +steady,sr,125,50.0,velocity,lower_uy,0.014671428129076958 +steady,sr,126,50.4,velocity,upper_ux,1.1187149286270142 +steady,sr,126,50.4,velocity,upper_uy,-0.014675343409180641 +steady,sr,126,50.4,velocity,center_ux,1.0868351459503174 +steady,sr,126,50.4,velocity,center_uy,-6.459875976361218e-07 +steady,sr,126,50.4,velocity,lower_ux,1.1187149286270142 +steady,sr,126,50.4,velocity,lower_uy,0.014672752469778061 +steady,sr,127,50.8,velocity,upper_ux,1.1186530590057373 +steady,sr,127,50.8,velocity,upper_uy,-0.01467397715896368 +steady,sr,127,50.8,velocity,center_ux,1.086768627166748 +steady,sr,127,50.8,velocity,center_uy,-1.844492999225622e-06 +steady,sr,127,50.8,velocity,lower_ux,1.1186530590057373 +steady,sr,127,50.8,velocity,lower_uy,0.014670777134597301 +steady,sr,128,51.2,velocity,upper_ux,1.118535041809082 +steady,sr,128,51.2,velocity,upper_uy,-0.014672258868813515 +steady,sr,128,51.2,velocity,center_ux,1.0866498947143555 +steady,sr,128,51.2,velocity,center_uy,-3.139098907922744e-06 +steady,sr,128,51.2,velocity,lower_ux,1.1185333728790283 +steady,sr,128,51.2,velocity,lower_uy,0.014668804593384266 +steady,sr,129,51.6,velocity,upper_ux,1.1184736490249634 +steady,sr,129,51.6,velocity,upper_uy,-0.014671090058982372 +steady,sr,129,51.6,velocity,center_ux,1.0866003036499023 +steady,sr,129,51.6,velocity,center_uy,-2.544298240536591e-06 +steady,sr,129,51.6,velocity,lower_ux,1.1184719800949097 +steady,sr,129,51.6,velocity,lower_uy,0.014668869785964489 +steady,sr,130,52.0,velocity,upper_ux,1.1188052892684937 +steady,sr,130,52.0,velocity,upper_uy,-0.014674140140414238 +steady,sr,130,52.0,velocity,center_ux,1.0869325399398804 +steady,sr,130,52.0,velocity,center_uy,-2.2220822302188026e-06 +steady,sr,130,52.0,velocity,lower_ux,1.1188035011291504 +steady,sr,130,52.0,velocity,lower_uy,0.014671028591692448 +steady,sr,131,52.4,velocity,upper_ux,1.1188385486602783 +steady,sr,131,52.4,velocity,upper_uy,-0.014674503356218338 +steady,sr,131,52.4,velocity,center_ux,1.0869603157043457 +steady,sr,131,52.4,velocity,center_uy,5.091488333164307e-07 +steady,sr,131,52.4,velocity,lower_ux,1.1188360452651978 +steady,sr,131,52.4,velocity,lower_uy,0.014675460755825043 +steady,sr,132,52.8,velocity,upper_ux,1.1186707019805908 +steady,sr,132,52.8,velocity,upper_uy,-0.014674859121441841 +steady,sr,132,52.8,velocity,center_ux,1.0867857933044434 +steady,sr,132,52.8,velocity,center_uy,6.621041279686324e-07 +steady,sr,132,52.8,velocity,lower_ux,1.118667483329773 +steady,sr,132,52.8,velocity,lower_uy,0.014674083329737186 +steady,sr,133,53.2,velocity,upper_ux,1.1186156272888184 +steady,sr,133,53.2,velocity,upper_uy,-0.014670779928565025 +steady,sr,133,53.2,velocity,center_ux,1.086731195449829 +steady,sr,133,53.2,velocity,center_uy,3.786119577853242e-06 +steady,sr,133,53.2,velocity,lower_ux,1.1186145544052124 +steady,sr,133,53.2,velocity,lower_uy,0.014673753641545773 +steady,sr,134,53.6,velocity,upper_ux,1.1184589862823486 +steady,sr,134,53.6,velocity,upper_uy,-0.014669734053313732 +steady,sr,134,53.6,velocity,center_ux,1.0865827798843384 +steady,sr,134,53.6,velocity,center_uy,2.9343268579395954e-06 +steady,sr,134,53.6,velocity,lower_ux,1.1184587478637695 +steady,sr,134,53.6,velocity,lower_uy,0.014671060256659985 +steady,sr,135,54.0,velocity,upper_ux,1.118618369102478 +steady,sr,135,54.0,velocity,upper_uy,-0.014668344520032406 +steady,sr,135,54.0,velocity,center_ux,1.0867480039596558 +steady,sr,135,54.0,velocity,center_uy,3.956880846089916e-06 +steady,sr,135,54.0,velocity,lower_ux,1.1186190843582153 +steady,sr,135,54.0,velocity,lower_uy,0.014671700075268745 +steady,sr,136,54.4,velocity,upper_ux,1.1188639402389526 +steady,sr,136,54.4,velocity,upper_uy,-0.014671645127236843 +steady,sr,136,54.4,velocity,center_ux,1.0869923830032349 +steady,sr,136,54.4,velocity,center_uy,3.1250920073944144e-06 +steady,sr,136,54.4,velocity,lower_ux,1.1188660860061646 +steady,sr,136,54.4,velocity,lower_uy,0.014673725701868534 +steady,sr,137,54.8,velocity,upper_ux,1.1187351942062378 +steady,sr,137,54.8,velocity,upper_uy,-0.014673054218292236 +steady,sr,137,54.8,velocity,center_ux,1.0868544578552246 +steady,sr,137,54.8,velocity,center_uy,2.0412317098816857e-06 +steady,sr,137,54.8,velocity,lower_ux,1.118738055229187 +steady,sr,137,54.8,velocity,lower_uy,0.014674421399831772 +steady,sr,138,55.2,velocity,upper_ux,1.1186658143997192 +steady,sr,138,55.2,velocity,upper_uy,-0.014671362936496735 +steady,sr,138,55.2,velocity,center_ux,1.0867820978164673 +steady,sr,138,55.2,velocity,center_uy,1.49392860748776e-06 +steady,sr,138,55.2,velocity,lower_ux,1.11867094039917 +steady,sr,138,55.2,velocity,lower_uy,0.01467288937419653 +steady,sr,139,55.6,velocity,upper_ux,1.1185498237609863 +steady,sr,139,55.6,velocity,upper_uy,-0.014671184122562408 +steady,sr,139,55.6,velocity,center_ux,1.086670160293579 +steady,sr,139,55.6,velocity,center_uy,-1.0141865232071723e-06 +steady,sr,139,55.6,velocity,lower_ux,1.1185531616210938 +steady,sr,139,55.6,velocity,lower_uy,0.014669614844024181 +steady,sr,140,56.0,velocity,upper_ux,1.11846125125885 +steady,sr,140,56.0,velocity,upper_uy,-0.014669550582766533 +steady,sr,140,56.0,velocity,center_ux,1.0865890979766846 +steady,sr,140,56.0,velocity,center_uy,-5.647055445479054e-07 +steady,sr,140,56.0,velocity,lower_ux,1.118465781211853 +steady,sr,140,56.0,velocity,lower_uy,0.01466988306492567 +steady,sr,141,56.4,velocity,upper_ux,1.1187671422958374 +steady,sr,141,56.4,velocity,upper_uy,-0.014674399979412556 +steady,sr,141,56.4,velocity,center_ux,1.0868998765945435 +steady,sr,141,56.4,velocity,center_uy,-3.984954219049541e-06 +steady,sr,141,56.4,velocity,lower_ux,1.1187713146209717 +steady,sr,141,56.4,velocity,lower_uy,0.014669619500637054 +steady,sr,142,56.8,velocity,upper_ux,1.1188369989395142 +steady,sr,142,56.8,velocity,upper_uy,-0.014675137586891651 +steady,sr,142,56.8,velocity,center_ux,1.0869637727737427 +steady,sr,142,56.8,velocity,center_uy,-2.15933459912776e-06 +steady,sr,142,56.8,velocity,lower_ux,1.1188395023345947 +steady,sr,142,56.8,velocity,lower_uy,0.014674277044832706 +steady,sr,143,57.2,velocity,upper_ux,1.1186827421188354 +steady,sr,143,57.2,velocity,upper_uy,-0.014676813036203384 +steady,sr,143,57.2,velocity,center_ux,1.0868008136749268 +steady,sr,143,57.2,velocity,center_uy,-4.1207576941815205e-06 +steady,sr,143,57.2,velocity,lower_ux,1.1186845302581787 +steady,sr,143,57.2,velocity,lower_uy,0.014671764336526394 +steady,sr,144,57.6,velocity,upper_ux,1.1186373233795166 +steady,sr,144,57.6,velocity,upper_uy,-0.014673257246613503 +steady,sr,144,57.6,velocity,center_ux,1.086751103401184 +steady,sr,144,57.6,velocity,center_uy,-2.1012176603107946e-06 +steady,sr,144,57.6,velocity,lower_ux,1.1186392307281494 +steady,sr,144,57.6,velocity,lower_uy,0.014671066775918007 +steady,sr,145,58.0,velocity,upper_ux,1.118476390838623 +steady,sr,145,58.0,velocity,upper_uy,-0.014672650024294853 +steady,sr,145,58.0,velocity,center_ux,1.0865978002548218 +steady,sr,145,58.0,velocity,center_uy,-2.6108841666427907e-06 +steady,sr,145,58.0,velocity,lower_ux,1.1184786558151245 +steady,sr,145,58.0,velocity,lower_uy,0.01466812938451767 +steady,sr,146,58.4,velocity,upper_ux,1.1185858249664307 +steady,sr,146,58.4,velocity,upper_uy,-0.01467165071517229 +steady,sr,146,58.4,velocity,center_ux,1.0867136716842651 +steady,sr,146,58.4,velocity,center_uy,-1.3633303979077027e-06 +steady,sr,146,58.4,velocity,lower_ux,1.1185870170593262 +steady,sr,146,58.4,velocity,lower_uy,0.014668690040707588 +steady,sr,147,58.8,velocity,upper_ux,1.1188442707061768 +steady,sr,147,58.8,velocity,upper_uy,-0.014673910103738308 +steady,sr,147,58.8,velocity,center_ux,1.0869717597961426 +steady,sr,147,58.8,velocity,center_uy,-1.7656649333730456e-06 +steady,sr,147,58.8,velocity,lower_ux,1.1188446283340454 +steady,sr,147,58.8,velocity,lower_uy,0.014670826494693756 +steady,sr,148,59.2,velocity,upper_ux,1.1187504529953003 +steady,sr,148,59.2,velocity,upper_uy,-0.014675558544695377 +steady,sr,148,59.2,velocity,center_ux,1.0868726968765259 +steady,sr,148,59.2,velocity,center_uy,-2.279930868098745e-06 +steady,sr,148,59.2,velocity,lower_ux,1.118750810623169 +steady,sr,148,59.2,velocity,lower_uy,0.014672006480395794 +steady,sr,149,59.6,velocity,upper_ux,1.1186835765838623 +steady,sr,149,59.6,velocity,upper_uy,-0.014673803001642227 +steady,sr,149,59.6,velocity,center_ux,1.0867979526519775 +steady,sr,149,59.6,velocity,center_uy,-1.7747645415511215e-06 +steady,sr,149,59.6,velocity,lower_ux,1.1186832189559937 +steady,sr,149,59.6,velocity,lower_uy,0.014671930111944675 +steady,sr,150,60.0,velocity,upper_ux,1.1185736656188965 +steady,sr,150,60.0,velocity,upper_uy,-0.01467357762157917 +steady,sr,150,60.0,velocity,center_ux,1.0866897106170654 +steady,sr,150,60.0,velocity,center_uy,-3.4780632631736808e-06 +steady,sr,150,60.0,velocity,lower_ux,1.1185729503631592 +steady,sr,150,60.0,velocity,lower_uy,0.014668700285255909 +steady,sr,151,60.4,velocity,upper_ux,1.1184571981430054 +steady,sr,151,60.4,velocity,upper_uy,-0.014670821838080883 +steady,sr,151,60.4,velocity,center_ux,1.0865833759307861 +steady,sr,151,60.4,velocity,center_uy,-1.2186890216980828e-06 +steady,sr,151,60.4,velocity,lower_ux,1.1184566020965576 +steady,sr,151,60.4,velocity,lower_uy,0.014669694937765598 +steady,sr,152,60.8,velocity,upper_ux,1.1187341213226318 +steady,sr,152,60.8,velocity,upper_uy,-0.014674303121864796 +steady,sr,152,60.8,velocity,center_ux,1.0868631601333618 +steady,sr,152,60.8,velocity,center_uy,-3.1274744287657086e-06 +steady,sr,152,60.8,velocity,lower_ux,1.1187329292297363 +steady,sr,152,60.8,velocity,lower_uy,0.014668958261609077 +steady,sr,153,61.2,velocity,upper_ux,1.1188348531723022 +steady,sr,153,61.2,velocity,upper_uy,-0.014674723148345947 +steady,sr,153,61.2,velocity,center_ux,1.0869618654251099 +steady,sr,153,61.2,velocity,center_uy,1.711261603531966e-07 +steady,sr,153,61.2,velocity,lower_ux,1.1188342571258545 +steady,sr,153,61.2,velocity,lower_uy,0.014674436300992966 +steady,sr,154,61.6,velocity,upper_ux,1.1186957359313965 +steady,sr,154,61.6,velocity,upper_uy,-0.014676009304821491 +steady,sr,154,61.6,velocity,center_ux,1.0868124961853027 +steady,sr,154,61.6,velocity,center_uy,-1.1851099088744377e-06 +steady,sr,154,61.6,velocity,lower_ux,1.1186957359313965 +steady,sr,154,61.6,velocity,lower_uy,0.014672262594103813 +steady,sr,155,62.0,velocity,upper_ux,1.118656873703003 +steady,sr,155,62.0,velocity,upper_uy,-0.014672685414552689 +steady,sr,155,62.0,velocity,center_ux,1.0867702960968018 +steady,sr,155,62.0,velocity,center_uy,1.901241262203257e-07 +steady,sr,155,62.0,velocity,lower_ux,1.1186559200286865 +steady,sr,155,62.0,velocity,lower_uy,0.014671972021460533 +steady,sr,156,62.4,velocity,upper_ux,1.118494987487793 +steady,sr,156,62.4,velocity,upper_uy,-0.014672312885522842 +steady,sr,156,62.4,velocity,center_ux,1.086614727973938 +steady,sr,156,62.4,velocity,center_uy,-9.446058584217099e-07 +steady,sr,156,62.4,velocity,lower_ux,1.1184937953948975 +steady,sr,156,62.4,velocity,lower_uy,0.014669813215732574 +steady,sr,157,62.8,velocity,upper_ux,1.118557333946228 +steady,sr,157,62.8,velocity,upper_uy,-0.014671317301690578 +steady,sr,157,62.8,velocity,center_ux,1.0866830348968506 +steady,sr,157,62.8,velocity,center_uy,-1.443535552425601e-06 +steady,sr,157,62.8,velocity,lower_ux,1.1185554265975952 +steady,sr,157,62.8,velocity,lower_uy,0.01466907374560833 +steady,sr,158,63.2,velocity,upper_ux,1.118818759918213 +steady,sr,158,63.2,velocity,upper_uy,-0.014672861434519291 +steady,sr,158,63.2,velocity,center_ux,1.0869481563568115 +steady,sr,158,63.2,velocity,center_uy,-1.5384889593406115e-06 +steady,sr,158,63.2,velocity,lower_ux,1.1188164949417114 +steady,sr,158,63.2,velocity,lower_uy,0.01467142067849636 +steady,sr,159,63.6,velocity,upper_ux,1.1187613010406494 +steady,sr,159,63.6,velocity,upper_uy,-0.014675365760922432 +steady,sr,159,63.6,velocity,center_ux,1.086883783340454 +steady,sr,159,63.6,velocity,center_uy,-2.617015070427442e-06 +steady,sr,159,63.6,velocity,lower_ux,1.1187578439712524 +steady,sr,159,63.6,velocity,lower_uy,0.014672189950942993 +steady,sr,160,64.0,velocity,upper_ux,1.1186935901641846 +steady,sr,160,64.0,velocity,upper_uy,-0.014673599973320961 +steady,sr,160,64.0,velocity,center_ux,1.0868080854415894 +steady,sr,160,64.0,velocity,center_uy,-8.969898317445768e-07 +steady,sr,160,64.0,velocity,lower_ux,1.1186920404434204 +steady,sr,160,64.0,velocity,lower_uy,0.014672879129648209 +steady,sr,161,64.4,velocity,upper_ux,1.118595838546753 +steady,sr,161,64.4,velocity,upper_uy,-0.014673160389065742 +steady,sr,161,64.4,velocity,center_ux,1.0867093801498413 +steady,sr,161,64.4,velocity,center_uy,-1.7619663594814483e-06 +steady,sr,161,64.4,velocity,lower_ux,1.1185933351516724 +steady,sr,161,64.4,velocity,lower_uy,0.014670047909021378 +steady,sr,162,64.8,velocity,upper_ux,1.1184601783752441 +steady,sr,162,64.8,velocity,upper_uy,-0.014670800417661667 +steady,sr,162,64.8,velocity,center_ux,1.0865817070007324 +steady,sr,162,64.8,velocity,center_uy,2.9908377996434865e-07 +steady,sr,162,64.8,velocity,lower_ux,1.1184576749801636 +steady,sr,162,64.8,velocity,lower_uy,0.014670789241790771 +steady,sr,163,65.2,velocity,upper_ux,1.1187020540237427 +steady,sr,163,65.2,velocity,upper_uy,-0.014672783203423023 +steady,sr,163,65.2,velocity,center_ux,1.0868289470672607 +steady,sr,163,65.2,velocity,center_uy,-1.2129302149332943e-06 +steady,sr,163,65.2,velocity,lower_ux,1.1186996698379517 +steady,sr,163,65.2,velocity,lower_uy,0.01467047818005085 +steady,sr,164,65.6,velocity,upper_ux,1.1188300848007202 +steady,sr,164,65.6,velocity,upper_uy,-0.014673917554318905 +steady,sr,164,65.6,velocity,center_ux,1.086954951286316 +steady,sr,164,65.6,velocity,center_uy,-6.182060729997829e-08 +steady,sr,164,65.6,velocity,lower_ux,1.1188278198242188 +steady,sr,164,65.6,velocity,lower_uy,0.014674040488898754 +steady,sr,165,66.0,velocity,upper_ux,1.1187067031860352 +steady,sr,165,66.0,velocity,upper_uy,-0.014674765057861805 +steady,sr,165,66.0,velocity,center_ux,1.08682382106781 +steady,sr,165,66.0,velocity,center_uy,-2.0898033881167066e-07 +steady,sr,165,66.0,velocity,lower_ux,1.1187031269073486 +steady,sr,165,66.0,velocity,lower_uy,0.01467408798635006 +steady,sr,166,66.4,velocity,upper_ux,1.1186714172363281 +steady,sr,166,66.4,velocity,upper_uy,-0.014672540128231049 +steady,sr,166,66.4,velocity,center_ux,1.0867880582809448 +steady,sr,166,66.4,velocity,center_uy,4.5657944980348475e-08 +steady,sr,166,66.4,velocity,lower_ux,1.118669867515564 +steady,sr,166,66.4,velocity,lower_uy,0.01467244140803814 +steady,sr,167,66.8,velocity,upper_ux,1.118514060974121 +steady,sr,167,66.8,velocity,upper_uy,-0.014670456759631634 +steady,sr,167,66.8,velocity,center_ux,1.0866354703903198 +steady,sr,167,66.8,velocity,center_uy,9.786765531316632e-07 +steady,sr,167,66.8,velocity,lower_ux,1.1185117959976196 +steady,sr,167,66.8,velocity,lower_uy,0.014671283774077892 +steady,sr,168,67.2,velocity,upper_ux,1.1185327768325806 +steady,sr,168,67.2,velocity,upper_uy,-0.014669937081634998 +steady,sr,168,67.2,velocity,center_ux,1.0866597890853882 +steady,sr,168,67.2,velocity,center_uy,1.584659571562952e-06 +steady,sr,168,67.2,velocity,lower_ux,1.1185307502746582 +steady,sr,168,67.2,velocity,lower_uy,0.014670777134597301 +steady,sr,169,67.6,velocity,upper_ux,1.1187952756881714 +steady,sr,169,67.6,velocity,upper_uy,-0.01467063743621111 +steady,sr,169,67.6,velocity,center_ux,1.0869238376617432 +steady,sr,169,67.6,velocity,center_uy,2.7155601856065914e-06 +steady,sr,169,67.6,velocity,lower_ux,1.1187938451766968 +steady,sr,169,67.6,velocity,lower_uy,0.014673488214612007 +steady,sr,170,68.0,velocity,upper_ux,1.1187717914581299 +steady,sr,170,68.0,velocity,upper_uy,-0.014673179015517235 +steady,sr,170,68.0,velocity,center_ux,1.0868934392929077 +steady,sr,170,68.0,velocity,center_uy,1.927873881868436e-06 +steady,sr,170,68.0,velocity,lower_ux,1.1187702417373657 +steady,sr,170,68.0,velocity,lower_uy,0.01467389427125454 +steady,sr,171,68.4,velocity,upper_ux,1.118700623512268 +steady,sr,171,68.4,velocity,upper_uy,-0.014671603217720985 +steady,sr,171,68.4,velocity,center_ux,1.0868172645568848 +steady,sr,171,68.4,velocity,center_uy,3.0175124265952036e-06 +steady,sr,171,68.4,velocity,lower_ux,1.1187000274658203 +steady,sr,171,68.4,velocity,lower_uy,0.014675600454211235 +steady,sr,172,68.8,velocity,upper_ux,1.1186139583587646 +steady,sr,172,68.8,velocity,upper_uy,-0.014671594835817814 +steady,sr,172,68.8,velocity,center_ux,1.0867313146591187 +steady,sr,172,68.8,velocity,center_uy,9.83109202934429e-07 +steady,sr,172,68.8,velocity,lower_ux,1.1186139583587646 +steady,sr,172,68.8,velocity,lower_uy,0.014672397635877132 +steady,sr,173,69.2,velocity,upper_ux,1.1184637546539307 +steady,sr,173,69.2,velocity,upper_uy,-0.014668535441160202 +steady,sr,173,69.2,velocity,center_ux,1.0865864753723145 +steady,sr,173,69.2,velocity,center_uy,2.5668157377367606e-06 +steady,sr,173,69.2,velocity,lower_ux,1.118464469909668 +steady,sr,173,69.2,velocity,lower_uy,0.014672495424747467 +steady,sr,174,69.6,velocity,upper_ux,1.118667483329773 +steady,sr,174,69.6,velocity,upper_uy,-0.01467097643762827 +steady,sr,174,69.6,velocity,center_ux,1.0867952108383179 +steady,sr,174,69.6,velocity,center_uy,6.723038836753403e-07 +steady,sr,174,69.6,velocity,lower_ux,1.1186680793762207 +steady,sr,174,69.6,velocity,lower_uy,0.01467164233326912 +steady,sr,175,70.0,velocity,upper_ux,1.1188178062438965 +steady,sr,175,70.0,velocity,upper_uy,-0.014672016724944115 +steady,sr,175,70.0,velocity,center_ux,1.0869460105895996 +steady,sr,175,70.0,velocity,center_uy,1.5831406017241534e-06 +steady,sr,175,70.0,velocity,lower_ux,1.1188188791275024 +steady,sr,175,70.0,velocity,lower_uy,0.014674949459731579 +steady,sr,176,70.4,velocity,upper_ux,1.118714690208435 +steady,sr,176,70.4,velocity,upper_uy,-0.014673428609967232 +steady,sr,176,70.4,velocity,center_ux,1.0868332386016846 +steady,sr,176,70.4,velocity,center_uy,6.879787406433024e-07 +steady,sr,176,70.4,velocity,lower_ux,1.1187158823013306 +steady,sr,176,70.4,velocity,lower_uy,0.0146744754165411 +steady,sr,177,70.8,velocity,upper_ux,1.118686318397522 +steady,sr,177,70.8,velocity,upper_uy,-0.014672093093395233 +steady,sr,177,70.8,velocity,center_ux,1.0868034362792969 +steady,sr,177,70.8,velocity,center_uy,7.377023507615377e-07 +steady,sr,177,70.8,velocity,lower_ux,1.1186884641647339 +steady,sr,177,70.8,velocity,lower_uy,0.014673429541289806 +steady,sr,178,71.2,velocity,upper_ux,1.1185373067855835 +steady,sr,178,71.2,velocity,upper_uy,-0.014670364558696747 +steady,sr,178,71.2,velocity,center_ux,1.0866550207138062 +steady,sr,178,71.2,velocity,center_uy,3.803522758971667e-07 +steady,sr,178,71.2,velocity,lower_ux,1.1185383796691895 +steady,sr,178,71.2,velocity,lower_uy,0.014671538025140762 +steady,sr,179,71.6,velocity,upper_ux,1.1185141801834106 +steady,sr,179,71.6,velocity,upper_uy,-0.014670060947537422 +steady,sr,179,71.6,velocity,center_ux,1.0866405963897705 +steady,sr,179,71.6,velocity,center_uy,-3.952760039283021e-07 +steady,sr,179,71.6,velocity,lower_ux,1.1185154914855957 +steady,sr,179,71.6,velocity,lower_uy,0.01466983463615179 +steady,sr,180,72.0,velocity,upper_ux,1.1187688112258911 +steady,sr,180,72.0,velocity,upper_uy,-0.014670785516500473 +steady,sr,180,72.0,velocity,center_ux,1.0868970155715942 +steady,sr,180,72.0,velocity,center_uy,4.776126161232241e-07 +steady,sr,180,72.0,velocity,lower_ux,1.1187703609466553 +steady,sr,180,72.0,velocity,lower_uy,0.014672164805233479 +steady,sr,181,72.4,velocity,upper_ux,1.1187752485275269 +steady,sr,181,72.4,velocity,upper_uy,-0.014674121513962746 +steady,sr,181,72.4,velocity,center_ux,1.0868974924087524 +steady,sr,181,72.4,velocity,center_uy,-6.76347383432585e-07 +steady,sr,181,72.4,velocity,lower_ux,1.118776798248291 +steady,sr,181,72.4,velocity,lower_uy,0.014672921970486641 +steady,sr,182,72.8,velocity,upper_ux,1.1187065839767456 +steady,sr,182,72.8,velocity,upper_uy,-0.014672582969069481 +steady,sr,182,72.8,velocity,center_ux,1.086825966835022 +steady,sr,182,72.8,velocity,center_uy,5.141514520801138e-07 +steady,sr,182,72.8,velocity,lower_ux,1.118707537651062 +steady,sr,182,72.8,velocity,lower_uy,0.014674322679638863 +steady,sr,183,73.2,velocity,upper_ux,1.1186336278915405 +steady,sr,183,73.2,velocity,upper_uy,-0.014673050493001938 +steady,sr,183,73.2,velocity,center_ux,1.0867515802383423 +steady,sr,183,73.2,velocity,center_uy,-1.046940042215283e-06 +steady,sr,183,73.2,velocity,lower_ux,1.1186352968215942 +steady,sr,183,73.2,velocity,lower_uy,0.014671440236270428 +steady,sr,184,73.6,velocity,upper_ux,1.118475317955017 +steady,sr,184,73.6,velocity,upper_uy,-0.014670424163341522 +steady,sr,184,73.6,velocity,center_ux,1.086595892906189 +steady,sr,184,73.6,velocity,center_uy,-7.16697812208622e-08 +steady,sr,184,73.6,velocity,lower_ux,1.1184767484664917 +steady,sr,184,73.6,velocity,lower_uy,0.014671068638563156 +steady,sr,185,74.0,velocity,upper_ux,1.1186375617980957 +steady,sr,185,74.0,velocity,upper_uy,-0.01467155572026968 +steady,sr,185,74.0,velocity,center_ux,1.086766242980957 +steady,sr,185,74.0,velocity,center_uy,-1.4461427326750709e-06 +steady,sr,185,74.0,velocity,lower_ux,1.1186381578445435 +steady,sr,185,74.0,velocity,lower_uy,0.014670115895569324 +steady,sr,186,74.4,velocity,upper_ux,1.1188061237335205 +steady,sr,186,74.4,velocity,upper_uy,-0.014673154801130295 +steady,sr,186,74.4,velocity,center_ux,1.0869343280792236 +steady,sr,186,74.4,velocity,center_uy,-6.756669677088212e-07 +steady,sr,186,74.4,velocity,lower_ux,1.1188064813613892 +steady,sr,186,74.4,velocity,lower_uy,0.014673197641968727 +steady,sr,187,74.8,velocity,upper_ux,1.1187225580215454 +steady,sr,187,74.8,velocity,upper_uy,-0.014674334786832333 +steady,sr,187,74.8,velocity,center_ux,1.0868425369262695 +steady,sr,187,74.8,velocity,center_uy,-5.773354700977507e-07 +steady,sr,187,74.8,velocity,lower_ux,1.1187222003936768 +steady,sr,187,74.8,velocity,lower_uy,0.014673731289803982 +steady,sr,188,75.2,velocity,upper_ux,1.1187025308609009 +steady,sr,188,75.2,velocity,upper_uy,-0.0146733233705163 +steady,sr,188,75.2,velocity,center_ux,1.0868182182312012 +steady,sr,188,75.2,velocity,center_uy,5.158275371286436e-07 +steady,sr,188,75.2,velocity,lower_ux,1.1187024116516113 +steady,sr,188,75.2,velocity,lower_uy,0.014672837220132351 +steady,sr,189,75.6,velocity,upper_ux,1.1185576915740967 +steady,sr,189,75.6,velocity,upper_uy,-0.014670716598629951 +steady,sr,189,75.6,velocity,center_ux,1.086677074432373 +steady,sr,189,75.6,velocity,center_uy,1.5031141629151534e-06 +steady,sr,189,75.6,velocity,lower_ux,1.1185575723648071 +steady,sr,189,75.6,velocity,lower_uy,0.014671939425170422 +steady,sr,190,76.0,velocity,upper_ux,1.1185014247894287 +steady,sr,190,76.0,velocity,upper_uy,-0.01467036735266447 +steady,sr,190,76.0,velocity,center_ux,1.0866271257400513 +steady,sr,190,76.0,velocity,center_uy,7.457217634510016e-07 +steady,sr,190,76.0,velocity,lower_ux,1.1185020208358765 +steady,sr,190,76.0,velocity,lower_uy,0.014669538475573063 +steady,sr,191,76.4,velocity,upper_ux,1.1187423467636108 +steady,sr,191,76.4,velocity,upper_uy,-0.01467074640095234 +steady,sr,191,76.4,velocity,center_ux,1.0868700742721558 +steady,sr,191,76.4,velocity,center_uy,1.2796558621630538e-06 +steady,sr,191,76.4,velocity,lower_ux,1.1187435388565063 +steady,sr,191,76.4,velocity,lower_uy,0.01467205211520195 +steady,sr,192,76.8,velocity,upper_ux,1.1187764406204224 +steady,sr,192,76.8,velocity,upper_uy,-0.014674270525574684 +steady,sr,192,76.8,velocity,center_ux,1.086900234222412 +steady,sr,192,76.8,velocity,center_uy,-7.372026402663323e-07 +steady,sr,192,76.8,velocity,lower_ux,1.1187769174575806 +steady,sr,192,76.8,velocity,lower_uy,0.014672902412712574 +steady,sr,193,77.2,velocity,upper_ux,1.1187117099761963 +steady,sr,193,77.2,velocity,upper_uy,-0.014672908000648022 +steady,sr,193,77.2,velocity,center_ux,1.0868321657180786 +steady,sr,193,77.2,velocity,center_uy,-1.5530356733961526e-07 +steady,sr,193,77.2,velocity,lower_ux,1.1187127828598022 +steady,sr,193,77.2,velocity,lower_uy,0.014674283564090729 +steady,sr,194,77.6,velocity,upper_ux,1.1186543703079224 +steady,sr,194,77.6,velocity,upper_uy,-0.014673298224806786 +steady,sr,194,77.6,velocity,center_ux,1.0867706537246704 +steady,sr,194,77.6,velocity,center_uy,-2.104557324855705e-06 +steady,sr,194,77.6,velocity,lower_ux,1.1186546087265015 +steady,sr,194,77.6,velocity,lower_uy,0.014671554788947105 +steady,sr,195,78.0,velocity,upper_ux,1.118489146232605 +steady,sr,195,78.0,velocity,upper_uy,-0.014671249315142632 +steady,sr,195,78.0,velocity,center_ux,1.0866093635559082 +steady,sr,195,78.0,velocity,center_uy,-1.232879753843008e-06 +steady,sr,195,78.0,velocity,lower_ux,1.1184896230697632 +steady,sr,195,78.0,velocity,lower_uy,0.014670949429273605 +steady,sr,196,78.4,velocity,upper_ux,1.1186106204986572 +steady,sr,196,78.4,velocity,upper_uy,-0.014671500772237778 +steady,sr,196,78.4,velocity,center_ux,1.0867382287979126 +steady,sr,196,78.4,velocity,center_uy,-9.557988960295916e-07 +steady,sr,196,78.4,velocity,lower_ux,1.1186107397079468 +steady,sr,196,78.4,velocity,lower_uy,0.014670399017632008 +steady,sr,197,78.8,velocity,upper_ux,1.118790626525879 +steady,sr,197,78.8,velocity,upper_uy,-0.014673314057290554 +steady,sr,197,78.8,velocity,center_ux,1.0869178771972656 +steady,sr,197,78.8,velocity,center_uy,-1.6726320950510853e-07 +steady,sr,197,78.8,velocity,lower_ux,1.1187914609909058 +steady,sr,197,78.8,velocity,lower_uy,0.014672096818685532 +steady,sr,198,79.2,velocity,upper_ux,1.1187270879745483 +steady,sr,198,79.2,velocity,upper_uy,-0.014674225822091103 +steady,sr,198,79.2,velocity,center_ux,1.0868487358093262 +steady,sr,198,79.2,velocity,center_uy,8.570161185161851e-07 +steady,sr,198,79.2,velocity,lower_ux,1.1187273263931274 +steady,sr,198,79.2,velocity,lower_uy,0.014673640951514244 +steady,sr,199,79.6,velocity,upper_ux,1.1187098026275635 +steady,sr,199,79.6,velocity,upper_uy,-0.014674026519060135 +steady,sr,199,79.6,velocity,center_ux,1.0868290662765503 +steady,sr,199,79.6,velocity,center_uy,5.9043085087751024e-08 +steady,sr,199,79.6,velocity,lower_ux,1.1187105178833008 +steady,sr,199,79.6,velocity,lower_uy,0.014671985991299152 +steady,sr,0,0.0,force,front_fx,0.0007702608127146959 +steady,sr,0,0.0,force,front_fy,-2.4090695660561323e-07 +steady,sr,0,0.0,force,upper_fx,-0.00026421286747790873 +steady,sr,0,0.0,force,upper_fy,0.005826100241392851 +steady,sr,0,0.0,force,lower_fx,-0.0002583624445833266 +steady,sr,0,0.0,force,lower_fy,-0.005821987986564636 +steady,sr,1,0.4,force,front_fx,0.0007740825531072915 +steady,sr,1,0.4,force,front_fy,1.8702802151437936e-07 +steady,sr,1,0.4,force,upper_fx,-0.0002572694211266935 +steady,sr,1,0.4,force,upper_fy,0.005831676535308361 +steady,sr,1,0.4,force,lower_fx,-0.0002564504975453019 +steady,sr,1,0.4,force,lower_fy,-0.005832193419337273 +steady,sr,2,0.8,force,front_fx,0.0007727239863015711 +steady,sr,2,0.8,force,front_fy,1.9198752454485657e-07 +steady,sr,2,0.8,force,upper_fx,-0.00025582819944247603 +steady,sr,2,0.8,force,upper_fy,0.005842843558639288 +steady,sr,2,0.8,force,lower_fx,-0.0002549423079472035 +steady,sr,2,0.8,force,lower_fy,-0.0058431802317500114 +steady,sr,3,1.2,force,front_fx,0.0007715747342444956 +steady,sr,3,1.2,force,front_fy,-8.343908319830007e-08 +steady,sr,3,1.2,force,upper_fx,-0.00025948983966372907 +steady,sr,3,1.2,force,upper_fy,0.00584489107131958 +steady,sr,3,1.2,force,lower_fx,-0.0002588184142950922 +steady,sr,3,1.2,force,lower_fy,-0.005845718551427126 +steady,sr,4,1.6,force,front_fx,0.0007696936372667551 +steady,sr,4,1.6,force,front_fy,-8.61673488117276e-09 +steady,sr,4,1.6,force,upper_fx,-0.00026457960484549403 +steady,sr,4,1.6,force,upper_fy,0.00583941163495183 +steady,sr,4,1.6,force,lower_fx,-0.00026651055668480694 +steady,sr,4,1.6,force,lower_fy,-0.005838853772729635 +steady,sr,5,2.0,force,front_fx,0.0007678468246012926 +steady,sr,5,2.0,force,front_fy,-8.290424347023873e-08 +steady,sr,5,2.0,force,upper_fx,-0.0002670560497790575 +steady,sr,5,2.0,force,upper_fy,0.005828029941767454 +steady,sr,5,2.0,force,lower_fx,-0.00026631640503183007 +steady,sr,5,2.0,force,lower_fy,-0.005828754976391792 +steady,sr,6,2.4,force,front_fx,0.0007715171086601913 +steady,sr,6,2.4,force,front_fy,-4.734232916803194e-08 +steady,sr,6,2.4,force,upper_fx,-0.000261697918176651 +steady,sr,6,2.4,force,upper_fy,0.0058274720795452595 +steady,sr,6,2.4,force,lower_fx,-0.0002609312650747597 +steady,sr,6,2.4,force,lower_fy,-0.005827799439430237 +steady,sr,7,2.8,force,front_fx,0.0007743819151073694 +steady,sr,7,2.8,force,front_fy,2.9244548116480473e-08 +steady,sr,7,2.8,force,upper_fx,-0.0002554832899477333 +steady,sr,7,2.8,force,upper_fy,0.005836975760757923 +steady,sr,7,2.8,force,lower_fx,-0.00025469070533290505 +steady,sr,7,2.8,force,lower_fy,-0.0058374954387545586 +steady,sr,8,3.2,force,front_fx,0.0007723064627498388 +steady,sr,8,3.2,force,front_fy,-2.0132857159183004e-08 +steady,sr,8,3.2,force,upper_fx,-0.00025707733584567904 +steady,sr,8,3.2,force,upper_fy,0.005844558589160442 +steady,sr,8,3.2,force,lower_fx,-0.0002569833304733038 +steady,sr,8,3.2,force,lower_fy,-0.00584552763029933 +steady,sr,9,3.6,force,front_fx,0.0007705911411903799 +steady,sr,9,3.6,force,front_fy,4.5576820184578537e-07 +steady,sr,9,3.6,force,upper_fx,-0.0002621212333906442 +steady,sr,9,3.6,force,upper_fy,0.005842918064445257 +steady,sr,9,3.6,force,lower_fx,-0.00026190257631242275 +steady,sr,9,3.6,force,lower_fy,-0.005843949504196644 +steady,sr,10,4.0,force,front_fx,0.0007678003748878837 +steady,sr,10,4.0,force,front_fy,-2.6271587216797343e-07 +steady,sr,10,4.0,force,upper_fx,-0.00026726743089966476 +steady,sr,10,4.0,force,upper_fy,0.005833763629198074 +steady,sr,10,4.0,force,lower_fx,-0.00026682636234909296 +steady,sr,10,4.0,force,lower_fy,-0.005834349896758795 +steady,sr,11,4.4,force,front_fx,0.0007699701236560941 +steady,sr,11,4.4,force,front_fy,5.610912978681881e-08 +steady,sr,11,4.4,force,upper_fx,-0.00026469750446267426 +steady,sr,11,4.4,force,upper_fy,0.005826572887599468 +steady,sr,11,4.4,force,lower_fx,-0.00026404194068163633 +steady,sr,11,4.4,force,lower_fy,-0.005826298147439957 +steady,sr,12,4.8,force,front_fx,0.0007735482067801058 +steady,sr,12,4.8,force,front_fy,1.5717978385509923e-07 +steady,sr,12,4.8,force,upper_fx,-0.00025824844487942755 +steady,sr,12,4.8,force,upper_fy,0.005830851849168539 +steady,sr,12,4.8,force,lower_fx,-0.00025782178272493184 +steady,sr,12,4.8,force,lower_fy,-0.005831314716488123 +steady,sr,13,5.2,force,front_fx,0.0007729674689471722 +steady,sr,13,5.2,force,front_fy,8.724353506295301e-08 +steady,sr,13,5.2,force,upper_fx,-0.00025563567760400474 +steady,sr,13,5.2,force,upper_fy,0.005841245874762535 +steady,sr,13,5.2,force,lower_fx,-0.00025536303292028606 +steady,sr,13,5.2,force,lower_fy,-0.005841935984790325 +steady,sr,14,5.6,force,front_fx,0.0007720307912677526 +steady,sr,14,5.6,force,front_fy,-7.43470991437789e-08 +steady,sr,14,5.6,force,upper_fx,-0.00025878974702209234 +steady,sr,14,5.6,force,upper_fy,0.005844657309353352 +steady,sr,14,5.6,force,lower_fx,-0.00025839247973635793 +steady,sr,14,5.6,force,lower_fy,-0.005845093168318272 +steady,sr,15,6.0,force,front_fx,0.0007696850807406008 +steady,sr,15,6.0,force,front_fy,2.2562598900321973e-08 +steady,sr,15,6.0,force,upper_fx,-0.000264481408521533 +steady,sr,15,6.0,force,upper_fy,0.0058395834639668465 +steady,sr,15,6.0,force,lower_fx,-0.00026408012490719557 +steady,sr,15,6.0,force,lower_fy,-0.005839897319674492 +steady,sr,16,6.4,force,front_fx,0.0007676130044274032 +steady,sr,16,6.4,force,front_fy,-6.400972552000894e-08 +steady,sr,16,6.4,force,upper_fx,-0.00026714810519479215 +steady,sr,16,6.4,force,upper_fy,0.005829302128404379 +steady,sr,16,6.4,force,lower_fx,-0.0002666768559720367 +steady,sr,16,6.4,force,lower_fy,-0.0058302306570112705 +steady,sr,17,6.8,force,front_fx,0.0007711337530054152 +steady,sr,17,6.8,force,front_fy,1.2621629252862476e-07 +steady,sr,17,6.8,force,upper_fx,-0.00026214102399535477 +steady,sr,17,6.8,force,upper_fy,0.005827164277434349 +steady,sr,17,6.8,force,lower_fx,-0.00026013777824118733 +steady,sr,17,6.8,force,lower_fy,-0.005827700719237328 +steady,sr,18,7.2,force,front_fx,0.000774302170611918 +steady,sr,18,7.2,force,front_fy,-7.744336727455448e-08 +steady,sr,18,7.2,force,upper_fx,-0.000256195169640705 +steady,sr,18,7.2,force,upper_fy,0.005835406947880983 +steady,sr,18,7.2,force,lower_fx,-0.00025588623248040676 +steady,sr,18,7.2,force,lower_fy,-0.005837734322994947 +steady,sr,19,7.6,force,front_fx,0.0007723051239736378 +steady,sr,19,7.6,force,front_fy,-6.33881782619028e-08 +steady,sr,19,7.6,force,upper_fx,-0.0002566977927926928 +steady,sr,19,7.6,force,upper_fy,0.0058436645194888115 +steady,sr,19,7.6,force,lower_fx,-0.00025637217913754284 +steady,sr,19,7.6,force,lower_fy,-0.005844044499099255 +steady,sr,20,8.0,force,front_fx,0.0007710384670644999 +steady,sr,20,8.0,force,front_fy,-7.71658932308128e-08 +steady,sr,20,8.0,force,upper_fx,-0.00026113950298167765 +steady,sr,20,8.0,force,upper_fy,0.00584424426779151 +steady,sr,20,8.0,force,lower_fx,-0.00026066257851198316 +steady,sr,20,8.0,force,lower_fy,-0.005843907594680786 +steady,sr,21,8.4,force,front_fx,0.0007681759307160974 +steady,sr,21,8.4,force,front_fy,6.934573093531071e-08 +steady,sr,21,8.4,force,upper_fx,-0.00026654035900719464 +steady,sr,21,8.4,force,upper_fy,0.005835224408656359 +steady,sr,21,8.4,force,lower_fx,-0.0002669689420145005 +steady,sr,21,8.4,force,lower_fy,-0.00583634153008461 +steady,sr,22,8.8,force,front_fx,0.0007695244275964797 +steady,sr,22,8.8,force,front_fy,3.056920760968751e-08 +steady,sr,22,8.8,force,upper_fx,-0.0002651766699273139 +steady,sr,22,8.8,force,upper_fy,0.005827365908771753 +steady,sr,22,8.8,force,lower_fx,-0.00026497594080865383 +steady,sr,22,8.8,force,lower_fy,-0.00582762761041522 +steady,sr,23,9.2,force,front_fx,0.0007729472708888352 +steady,sr,23,9.2,force,front_fy,3.843708284989589e-08 +steady,sr,23,9.2,force,upper_fx,-0.00025914341676980257 +steady,sr,23,9.2,force,upper_fy,0.005829765927046537 +steady,sr,23,9.2,force,lower_fx,-0.0002588295319583267 +steady,sr,23,9.2,force,lower_fy,-0.005830045789480209 +steady,sr,24,9.6,force,front_fx,0.0007731646182946861 +steady,sr,24,9.6,force,front_fy,1.2357052980860317e-07 +steady,sr,24,9.6,force,upper_fx,-0.00025571489823050797 +steady,sr,24,9.6,force,upper_fy,0.005840045865625143 +steady,sr,24,9.6,force,lower_fx,-0.00025538186309859157 +steady,sr,24,9.6,force,lower_fy,-0.005839386023581028 +steady,sr,25,10.0,force,front_fx,0.0007721145520918071 +steady,sr,25,10.0,force,front_fy,-1.0611940837179645e-07 +steady,sr,25,10.0,force,upper_fx,-0.0002581658773124218 +steady,sr,25,10.0,force,upper_fy,0.005844343453645706 +steady,sr,25,10.0,force,lower_fx,-0.00025807382189668715 +steady,sr,25,10.0,force,lower_fy,-0.005844701547175646 +steady,sr,26,10.4,force,front_fx,0.0007702993461862206 +steady,sr,26,10.4,force,front_fy,-2.5055269858853535e-08 +steady,sr,26,10.4,force,upper_fx,-0.00026344144134782255 +steady,sr,26,10.4,force,upper_fy,0.005840580444782972 +steady,sr,26,10.4,force,lower_fx,-0.0002632447867654264 +steady,sr,26,10.4,force,lower_fy,-0.005839950405061245 +steady,sr,27,10.8,force,front_fx,0.000767442281357944 +steady,sr,27,10.8,force,front_fy,4.3084437351126326e-08 +steady,sr,27,10.8,force,upper_fx,-0.0002670327667146921 +steady,sr,27,10.8,force,upper_fy,0.005830688402056694 +steady,sr,27,10.8,force,lower_fx,-0.0002674433053471148 +steady,sr,27,10.8,force,lower_fy,-0.005831823218613863 +steady,sr,28,11.2,force,front_fx,0.0007708118646405637 +steady,sr,28,11.2,force,front_fy,7.602189810995696e-08 +steady,sr,28,11.2,force,upper_fx,-0.00026270505622960627 +steady,sr,28,11.2,force,upper_fy,0.005827116779983044 +steady,sr,28,11.2,force,lower_fx,-0.0002626097702886909 +steady,sr,28,11.2,force,lower_fy,-0.00582774356007576 +steady,sr,29,11.6,force,front_fx,0.0007740227738395333 +steady,sr,29,11.6,force,front_fy,-1.304719265959875e-08 +steady,sr,29,11.6,force,upper_fx,-0.00025671717594377697 +steady,sr,29,11.6,force,upper_fy,0.005833897739648819 +steady,sr,29,11.6,force,lower_fx,-0.0002563944144640118 +steady,sr,29,11.6,force,lower_fy,-0.005834508687257767 +steady,sr,30,12.0,force,front_fx,0.0007723282906226814 +steady,sr,30,12.0,force,front_fy,-6.619247727712718e-08 +steady,sr,30,12.0,force,upper_fx,-0.00025657747755758464 +steady,sr,30,12.0,force,upper_fy,0.005842501297593117 +steady,sr,30,12.0,force,lower_fx,-0.0002564293972682208 +steady,sr,30,12.0,force,lower_fy,-0.005843179300427437 +steady,sr,31,12.4,force,front_fx,0.0007712758961133659 +steady,sr,31,12.4,force,front_fy,3.513741830829531e-08 +steady,sr,31,12.4,force,upper_fx,-0.0002603805623948574 +steady,sr,31,12.4,force,upper_fy,0.0058433725498616695 +steady,sr,31,12.4,force,lower_fx,-0.0002602808235678822 +steady,sr,31,12.4,force,lower_fy,-0.005843956023454666 +steady,sr,32,12.8,force,front_fx,0.0007685537566430867 +steady,sr,32,12.8,force,front_fy,-4.43783164882916e-07 +steady,sr,32,12.8,force,upper_fx,-0.0002658807497937232 +steady,sr,32,12.8,force,upper_fy,0.005836480297148228 +steady,sr,32,12.8,force,lower_fx,-0.00026565324515104294 +steady,sr,32,12.8,force,lower_fy,-0.005836949218064547 +steady,sr,33,13.2,force,front_fx,0.0007691102218814194 +steady,sr,33,13.2,force,front_fy,1.542871927995293e-07 +steady,sr,33,13.2,force,upper_fx,-0.00026543447165749967 +steady,sr,33,13.2,force,upper_fy,0.0058282590471208096 +steady,sr,33,13.2,force,lower_fx,-0.0002658173907548189 +steady,sr,33,13.2,force,lower_fy,-0.005827916786074638 +steady,sr,34,13.6,force,front_fx,0.0007722853333689272 +steady,sr,34,13.6,force,front_fy,-1.8990158423548564e-07 +steady,sr,34,13.6,force,upper_fx,-0.00026005483232438564 +steady,sr,34,13.6,force,upper_fy,0.005829252768307924 +steady,sr,34,13.6,force,lower_fx,-0.000260119850281626 +steady,sr,34,13.6,force,lower_fy,-0.005828545894473791 +steady,sr,35,14.0,force,front_fx,0.0007732855738140643 +steady,sr,35,14.0,force,front_fy,9.521600397022212e-09 +steady,sr,35,14.0,force,upper_fx,-0.0002559241547714919 +steady,sr,35,14.0,force,upper_fy,0.0058384062722325325 +steady,sr,35,14.0,force,lower_fx,-0.0002559589338488877 +steady,sr,35,14.0,force,lower_fy,-0.005838898476213217 +steady,sr,36,14.4,force,front_fx,0.0007723912131041288 +steady,sr,36,14.4,force,front_fy,-7.367670917801661e-09 +steady,sr,36,14.4,force,upper_fx,-0.00025775504764169455 +steady,sr,36,14.4,force,upper_fy,0.005843790248036385 +steady,sr,36,14.4,force,lower_fx,-0.0002575207327026874 +steady,sr,36,14.4,force,lower_fy,-0.005843392573297024 +steady,sr,37,14.8,force,front_fx,0.0007704666932113469 +steady,sr,37,14.8,force,front_fy,5.04567481129925e-08 +steady,sr,37,14.8,force,upper_fx,-0.00026249399525113404 +steady,sr,37,14.8,force,upper_fy,0.005841381382197142 +steady,sr,37,14.8,force,lower_fx,-0.0002625063934829086 +steady,sr,37,14.8,force,lower_fy,-0.005841640289872885 +steady,sr,38,15.2,force,front_fx,0.0007676721434108913 +steady,sr,38,15.2,force,front_fy,1.0575895714737271e-08 +steady,sr,38,15.2,force,upper_fx,-0.0002667618973646313 +steady,sr,38,15.2,force,upper_fy,0.005832061171531677 +steady,sr,38,15.2,force,lower_fx,-0.00026665168115869164 +steady,sr,38,15.2,force,lower_fy,-0.005832264199852943 +steady,sr,39,15.6,force,front_fx,0.000770371058024466 +steady,sr,39,15.6,force,front_fy,-1.232489044156182e-08 +steady,sr,39,15.6,force,upper_fx,-0.00026337263989262283 +steady,sr,39,15.6,force,upper_fy,0.005827388260513544 +steady,sr,39,15.6,force,lower_fx,-0.00026328759850002825 +steady,sr,39,15.6,force,lower_fy,-0.005827457178384066 +steady,sr,40,16.0,force,front_fx,0.0007736352272331715 +steady,sr,40,16.0,force,front_fy,-1.7399724994149324e-09 +steady,sr,40,16.0,force,upper_fx,-0.00025763773010112345 +steady,sr,40,16.0,force,upper_fy,0.00583257433027029 +steady,sr,40,16.0,force,lower_fx,-0.0002572676457930356 +steady,sr,40,16.0,force,lower_fy,-0.005834666080772877 +steady,sr,41,16.4,force,front_fx,0.0007724612951278687 +steady,sr,41,16.4,force,front_fy,-5.7866827773978e-08 +steady,sr,41,16.4,force,upper_fx,-0.00025633673067204654 +steady,sr,41,16.4,force,upper_fy,0.005841366481035948 +steady,sr,41,16.4,force,lower_fx,-0.00025632375036366284 +steady,sr,41,16.4,force,lower_fy,-0.005841734819114208 +steady,sr,42,16.8,force,front_fx,0.0007716767722740769 +steady,sr,42,16.8,force,front_fy,7.713401117825924e-08 +steady,sr,42,16.8,force,upper_fx,-0.0002597553248051554 +steady,sr,42,16.8,force,upper_fy,0.005843587685376406 +steady,sr,42,16.8,force,lower_fx,-0.00025951789575628936 +steady,sr,42,16.8,force,lower_fy,-0.005843447986990213 +steady,sr,43,17.2,force,front_fx,0.0007690662750974298 +steady,sr,43,17.2,force,front_fy,-1.2095841839254717e-07 +steady,sr,43,17.2,force,upper_fx,-0.00026492730830796063 +steady,sr,43,17.2,force,upper_fy,0.005837663542479277 +steady,sr,43,17.2,force,lower_fx,-0.00026489392621442676 +steady,sr,43,17.2,force,lower_fy,-0.00583762489259243 +steady,sr,44,17.6,force,front_fx,0.000768862955737859 +steady,sr,44,17.6,force,front_fy,1.4792967739651885e-08 +steady,sr,44,17.6,force,upper_fx,-0.0002656654396560043 +steady,sr,44,17.6,force,upper_fy,0.0058290292508900166 +steady,sr,44,17.6,force,lower_fx,-0.00026550027541816235 +steady,sr,44,17.6,force,lower_fy,-0.005829037632793188 +steady,sr,45,18.0,force,front_fx,0.0007717726402916014 +steady,sr,45,18.0,force,front_fy,-2.3166234086602344e-07 +steady,sr,45,18.0,force,upper_fx,-0.0002608569629956037 +steady,sr,45,18.0,force,upper_fy,0.005828642752021551 +steady,sr,45,18.0,force,lower_fx,-0.00026069156592711806 +steady,sr,45,18.0,force,lower_fy,-0.005828970577567816 +steady,sr,46,18.4,force,front_fx,0.0007730934303253889 +steady,sr,46,18.4,force,front_fy,1.5295663047254493e-07 +steady,sr,46,18.4,force,upper_fx,-0.0002564723836258054 +steady,sr,46,18.4,force,upper_fy,0.005837110336869955 +steady,sr,46,18.4,force,lower_fx,-0.00025637855287641287 +steady,sr,46,18.4,force,lower_fy,-0.005837155971676111 +steady,sr,47,18.8,force,front_fx,0.0007724384777247906 +steady,sr,47,18.8,force,front_fy,-8.743794666088434e-08 +steady,sr,47,18.8,force,upper_fx,-0.00025738112162798643 +steady,sr,47,18.8,force,upper_fy,0.005843033082783222 +steady,sr,47,18.8,force,lower_fx,-0.00025745670427568257 +steady,sr,47,18.8,force,lower_fy,-0.005843107122927904 +steady,sr,48,19.2,force,front_fx,0.0007709324127063155 +steady,sr,48,19.2,force,front_fy,-1.4223551225711617e-08 +steady,sr,48,19.2,force,upper_fx,-0.00026176709798164666 +steady,sr,48,19.2,force,upper_fy,0.0058416943065822124 +steady,sr,48,19.2,force,lower_fx,-0.00026173144578933716 +steady,sr,48,19.2,force,lower_fy,-0.005841927137225866 +steady,sr,49,19.6,force,front_fx,0.0007678820402361453 +steady,sr,49,19.6,force,front_fy,-7.82691529366275e-08 +steady,sr,49,19.6,force,upper_fx,-0.00026651800726540387 +steady,sr,49,19.6,force,upper_fy,0.005833434406667948 +steady,sr,49,19.6,force,lower_fx,-0.00026627088664099574 +steady,sr,49,19.6,force,lower_fy,-0.005833504721522331 +steady,sr,50,20.0,force,front_fx,0.0007702267030254006 +steady,sr,50,20.0,force,front_fy,-6.08238792665361e-08 +steady,sr,50,20.0,force,upper_fx,-0.0002638018049765378 +steady,sr,50,20.0,force,upper_fy,0.00582849932834506 +steady,sr,50,20.0,force,lower_fx,-0.00026371199055574834 +steady,sr,50,20.0,force,lower_fy,-0.005827942863106728 +steady,sr,51,20.4,force,front_fx,0.0007732813828624785 +steady,sr,51,20.4,force,front_fy,1.4096745815095346e-07 +steady,sr,51,20.4,force,upper_fx,-0.0002582866291049868 +steady,sr,51,20.4,force,upper_fy,0.005831900984048843 +steady,sr,51,20.4,force,lower_fx,-0.0002581452135927975 +steady,sr,51,20.4,force,lower_fy,-0.005831860471516848 +steady,sr,52,20.8,force,front_fx,0.0007725481409579515 +steady,sr,52,20.8,force,front_fy,3.506472978642705e-08 +steady,sr,52,20.8,force,upper_fx,-0.00025639968225732446 +steady,sr,52,20.8,force,upper_fy,0.005840316414833069 +steady,sr,52,20.8,force,lower_fx,-0.0002563878078944981 +steady,sr,52,20.8,force,lower_fy,-0.0058404249139130116 +steady,sr,53,21.2,force,front_fx,0.0007717091357335448 +steady,sr,53,21.2,force,front_fy,2.5368844802642343e-08 +steady,sr,53,21.2,force,upper_fx,-0.00025918250321410596 +steady,sr,53,21.2,force,upper_fy,0.005843363236635923 +steady,sr,53,21.2,force,lower_fx,-0.00025905788061209023 +steady,sr,53,21.2,force,lower_fy,-0.005843537859618664 +steady,sr,54,21.6,force,front_fx,0.0007695660460740328 +steady,sr,54,21.6,force,front_fy,-2.5519657498307424e-08 +steady,sr,54,21.6,force,upper_fx,-0.0002641309692990035 +steady,sr,54,21.6,force,upper_fy,0.005839556455612183 +steady,sr,54,21.6,force,lower_fx,-0.0002641128667164594 +steady,sr,54,21.6,force,lower_fy,-0.0058389646001160145 +steady,sr,55,22.0,force,front_fx,0.0007685742457397282 +steady,sr,55,22.0,force,front_fy,-9.9371447959129e-08 +steady,sr,55,22.0,force,upper_fx,-0.00026585932937450707 +steady,sr,55,22.0,force,upper_fy,0.00583000248298049 +steady,sr,55,22.0,force,lower_fx,-0.0002664990024641156 +steady,sr,55,22.0,force,lower_fy,-0.0058307945728302 +steady,sr,56,22.4,force,front_fx,0.0007713657687418163 +steady,sr,56,22.4,force,front_fy,-1.7063001678252476e-07 +steady,sr,56,22.4,force,upper_fx,-0.0002616272249724716 +steady,sr,56,22.4,force,upper_fy,0.005828637629747391 +steady,sr,56,22.4,force,lower_fx,-0.00026146453456021845 +steady,sr,56,22.4,force,lower_fy,-0.005828723777085543 +steady,sr,57,22.8,force,front_fx,0.0007730024517513812 +steady,sr,57,22.8,force,front_fy,-1.7308629196577385e-08 +steady,sr,57,22.8,force,upper_fx,-0.00025696304510347545 +steady,sr,57,22.8,force,upper_fy,0.005835785064846277 +steady,sr,57,22.8,force,lower_fx,-0.00025687189190648496 +steady,sr,57,22.8,force,lower_fy,-0.005835817661136389 +steady,sr,58,23.2,force,front_fx,0.0007725578616373241 +steady,sr,58,23.2,force,front_fy,1.3040735780123214e-07 +steady,sr,58,23.2,force,upper_fx,-0.0002571718650870025 +steady,sr,58,23.2,force,upper_fy,0.005842306651175022 +steady,sr,58,23.2,force,lower_fx,-0.00025699727120809257 +steady,sr,58,23.2,force,lower_fy,-0.005842498503625393 +steady,sr,59,23.6,force,front_fx,0.0007711438229307532 +steady,sr,59,23.6,force,front_fy,5.565971239462897e-09 +steady,sr,59,23.6,force,upper_fx,-0.0002610048686619848 +steady,sr,59,23.6,force,upper_fy,0.005842097569257021 +steady,sr,59,23.6,force,lower_fx,-0.00026099319802597165 +steady,sr,59,23.6,force,lower_fy,-0.005842164158821106 +steady,sr,60,24.0,force,front_fx,0.0007680744747631252 +steady,sr,60,24.0,force,front_fy,-3.6966184779885225e-08 +steady,sr,60,24.0,force,upper_fx,-0.00026615653769113123 +steady,sr,60,24.0,force,upper_fy,0.005834775976836681 +steady,sr,60,24.0,force,lower_fx,-0.0002659655874595046 +steady,sr,60,24.0,force,lower_fy,-0.005835671443492174 +steady,sr,61,24.4,force,front_fx,0.0007699794950895011 +steady,sr,61,24.4,force,front_fy,-1.935854214707433e-07 +steady,sr,61,24.4,force,upper_fx,-0.00026423102826811373 +steady,sr,61,24.4,force,upper_fy,0.005828338675200939 +steady,sr,61,24.4,force,lower_fx,-0.00026399182388558984 +steady,sr,61,24.4,force,lower_fy,-0.005828486289829016 +steady,sr,62,24.8,force,front_fx,0.0007728600758127868 +steady,sr,62,24.8,force,front_fy,3.074674070902006e-09 +steady,sr,62,24.8,force,upper_fx,-0.00025926620583049953 +steady,sr,62,24.8,force,upper_fy,0.0058311293832957745 +steady,sr,62,24.8,force,lower_fx,-0.0002588963834568858 +steady,sr,62,24.8,force,lower_fy,-0.00583134638145566 +steady,sr,63,25.2,force,front_fx,0.0007726147305220366 +steady,sr,63,25.2,force,front_fy,-4.409121245885217e-08 +steady,sr,63,25.2,force,upper_fx,-0.00025657808873802423 +steady,sr,63,25.2,force,upper_fy,0.005839304532855749 +steady,sr,63,25.2,force,lower_fx,-0.0002564592577982694 +steady,sr,63,25.2,force,lower_fy,-0.005839227233082056 +steady,sr,64,25.6,force,front_fx,0.0007719181012362242 +steady,sr,64,25.6,force,front_fy,3.3867203796944523e-07 +steady,sr,64,25.6,force,upper_fx,-0.00025873800041154027 +steady,sr,64,25.6,force,upper_fy,0.005843035411089659 +steady,sr,64,25.6,force,lower_fx,-0.0002586625050753355 +steady,sr,64,25.6,force,lower_fy,-0.005843309219926596 +steady,sr,65,26.0,force,front_fx,0.0007700970745645463 +steady,sr,65,26.0,force,front_fy,-7.77148514430337e-08 +steady,sr,65,26.0,force,upper_fx,-0.0002633742697071284 +steady,sr,65,26.0,force,upper_fy,0.005839562509208918 +steady,sr,65,26.0,force,lower_fx,-0.0002632909454405308 +steady,sr,65,26.0,force,lower_fy,-0.005839827004820108 +steady,sr,66,26.4,force,front_fx,0.0007683061994612217 +steady,sr,66,26.4,force,front_fy,2.2025851365015114e-07 +steady,sr,66,26.4,force,upper_fx,-0.0002655263524502516 +steady,sr,66,26.4,force,upper_fy,0.005831375252455473 +steady,sr,66,26.4,force,lower_fx,-0.00026572225033305585 +steady,sr,66,26.4,force,lower_fy,-0.005830835085362196 +steady,sr,67,26.8,force,front_fx,0.0007710100035183132 +steady,sr,67,26.8,force,front_fy,-2.450411606957914e-08 +steady,sr,67,26.8,force,upper_fx,-0.00026227510534226894 +steady,sr,67,26.8,force,upper_fy,0.00582850119099021 +steady,sr,67,26.8,force,lower_fx,-0.00026212178636342287 +steady,sr,67,26.8,force,lower_fy,-0.0058287885040044785 +steady,sr,68,27.2,force,front_fx,0.0007729508797638118 +steady,sr,68,27.2,force,front_fy,1.4142318605081527e-07 +steady,sr,68,27.2,force,upper_fx,-0.00025743042351678014 +steady,sr,68,27.2,force,upper_fy,0.0058344947174191475 +steady,sr,68,27.2,force,lower_fx,-0.00025734613882377744 +steady,sr,68,27.2,force,lower_fy,-0.0058347322046756744 +steady,sr,69,27.6,force,front_fx,0.0007725816103629768 +steady,sr,69,27.6,force,front_fy,-8.287577912824418e-08 +steady,sr,69,27.6,force,upper_fx,-0.0002572099328972399 +steady,sr,69,27.6,force,upper_fy,0.0058413962833583355 +steady,sr,69,27.6,force,lower_fx,-0.00025701351114548743 +steady,sr,69,27.6,force,lower_fy,-0.005841546226292849 +steady,sr,70,28.0,force,front_fx,0.0007714667008258402 +steady,sr,70,28.0,force,front_fy,-1.2685363515174686e-07 +steady,sr,70,28.0,force,upper_fx,-0.0002603950269985944 +steady,sr,70,28.0,force,upper_fy,0.005842188373208046 +steady,sr,70,28.0,force,lower_fx,-0.00026021586381830275 +steady,sr,70,28.0,force,lower_fy,-0.005842071957886219 +steady,sr,71,28.4,force,front_fx,0.0007683885633014143 +steady,sr,71,28.4,force,front_fy,9.921386379119213e-08 +steady,sr,71,28.4,force,upper_fx,-0.00026556153898127377 +steady,sr,71,28.4,force,upper_fy,0.005835918243974447 +steady,sr,71,28.4,force,lower_fx,-0.0002658891025930643 +steady,sr,71,28.4,force,lower_fy,-0.005836079828441143 +steady,sr,72,28.8,force,front_fx,0.0007696805987507105 +steady,sr,72,28.8,force,front_fy,-5.023460403208446e-08 +steady,sr,72,28.8,force,upper_fx,-0.0002644251799210906 +steady,sr,72,28.8,force,upper_fy,0.005828945431858301 +steady,sr,72,28.8,force,lower_fx,-0.0002644836495164782 +steady,sr,72,28.8,force,lower_fy,-0.005829182919114828 +steady,sr,73,29.2,force,front_fx,0.0007723808521404862 +steady,sr,73,29.2,force,front_fy,2.4198598680413852e-08 +steady,sr,73,29.2,force,upper_fx,-0.000259981257840991 +steady,sr,73,29.2,force,upper_fy,0.005830470472574234 +steady,sr,73,29.2,force,lower_fx,-0.0002598797727841884 +steady,sr,73,29.2,force,lower_fy,-0.00583080155774951 +steady,sr,74,29.6,force,front_fx,0.0007725188625045121 +steady,sr,74,29.6,force,front_fy,-8.363589643067826e-08 +steady,sr,74,29.6,force,upper_fx,-0.0002567788469605148 +steady,sr,74,29.6,force,upper_fy,0.005837981589138508 +steady,sr,74,29.6,force,lower_fx,-0.0002567789051681757 +steady,sr,74,29.6,force,lower_fy,-0.005838169250637293 +steady,sr,75,30.0,force,front_fx,0.000772158382460475 +steady,sr,75,30.0,force,front_fy,1.4725831931627908e-07 +steady,sr,75,30.0,force,upper_fx,-0.0002582545857876539 +steady,sr,75,30.0,force,upper_fy,0.005842550192028284 +steady,sr,75,30.0,force,lower_fx,-0.00025821776944212615 +steady,sr,75,30.0,force,lower_fy,-0.005842619575560093 +steady,sr,76,30.4,force,front_fx,0.0007704237941652536 +steady,sr,76,30.4,force,front_fy,-2.8113499084270188e-08 +steady,sr,76,30.4,force,upper_fx,-0.00026257106219418347 +steady,sr,76,30.4,force,upper_fy,0.005840416997671127 +steady,sr,76,30.4,force,lower_fx,-0.00026349921245127916 +steady,sr,76,30.4,force,lower_fy,-0.005840960890054703 +steady,sr,77,30.8,force,front_fx,0.0007683425210416317 +steady,sr,77,30.8,force,front_fy,-1.3938948484337743e-07 +steady,sr,77,30.8,force,upper_fx,-0.0002656799915712327 +steady,sr,77,30.8,force,upper_fy,0.005832189228385687 +steady,sr,77,30.8,force,lower_fx,-0.0002659071469679475 +steady,sr,77,30.8,force,lower_fy,-0.005832442082464695 +steady,sr,78,31.2,force,front_fx,0.0007707305485382676 +steady,sr,78,31.2,force,front_fy,-5.787027390624644e-08 +steady,sr,78,31.2,force,upper_fx,-0.00026277691358700395 +steady,sr,78,31.2,force,upper_fy,0.005828647408634424 +steady,sr,78,31.2,force,lower_fx,-0.0002628114598337561 +steady,sr,78,31.2,force,lower_fy,-0.005828803405165672 +steady,sr,79,31.6,force,front_fx,0.0007728024502284825 +steady,sr,79,31.6,force,front_fy,6.766313287442927e-09 +steady,sr,79,31.6,force,upper_fx,-0.00025795388501137495 +steady,sr,79,31.6,force,upper_fy,0.005833762232214212 +steady,sr,79,31.6,force,lower_fx,-0.00025803883909247816 +steady,sr,79,31.6,force,lower_fy,-0.005833681672811508 +steady,sr,80,32.0,force,front_fx,0.0007725083851255476 +steady,sr,80,32.0,force,front_fy,2.3341482346950215e-07 +steady,sr,80,32.0,force,upper_fx,-0.0002570403157733381 +steady,sr,80,32.0,force,upper_fy,0.005840528756380081 +steady,sr,80,32.0,force,lower_fx,-0.00025694980286061764 +steady,sr,80,32.0,force,lower_fy,-0.005841823294758797 +steady,sr,81,32.4,force,front_fx,0.0007716558175161481 +steady,sr,81,32.4,force,front_fy,8.402057716239142e-09 +steady,sr,81,32.4,force,upper_fx,-0.00025968896807171404 +steady,sr,81,32.4,force,upper_fy,0.005842310842126608 +steady,sr,81,32.4,force,lower_fx,-0.000259739113971591 +steady,sr,81,32.4,force,lower_fy,-0.005841708742082119 +steady,sr,82,32.8,force,front_fx,0.000768703524954617 +steady,sr,82,32.8,force,front_fy,-1.4915741530785454e-07 +steady,sr,82,32.8,force,upper_fx,-0.0002648377849254757 +steady,sr,82,32.8,force,upper_fy,0.005837060045450926 +steady,sr,82,32.8,force,lower_fx,-0.0002649631642270833 +steady,sr,82,32.8,force,lower_fy,-0.00583726866170764 +steady,sr,83,33.2,force,front_fx,0.0007696339744143188 +steady,sr,83,33.2,force,front_fy,3.9089108838652464e-08 +steady,sr,83,33.2,force,upper_fx,-0.000264578266069293 +steady,sr,83,33.2,force,upper_fy,0.00582976033911109 +steady,sr,83,33.2,force,lower_fx,-0.000264838250586763 +steady,sr,83,33.2,force,lower_fy,-0.005830107256770134 +steady,sr,84,33.6,force,front_fx,0.0007719916757196188 +steady,sr,84,33.6,force,front_fy,4.615103676997023e-08 +steady,sr,84,33.6,force,upper_fx,-0.00026066345162689686 +steady,sr,84,33.6,force,upper_fy,0.005830014124512672 +steady,sr,84,33.6,force,lower_fx,-0.00026069351588375866 +steady,sr,84,33.6,force,lower_fy,-0.005830112844705582 +steady,sr,85,34.0,force,front_fx,0.0007724250317551196 +steady,sr,85,34.0,force,front_fy,-5.845822670380585e-08 +steady,sr,85,34.0,force,upper_fx,-0.00025713237118907273 +steady,sr,85,34.0,force,upper_fy,0.005836839787662029 +steady,sr,85,34.0,force,lower_fx,-0.00025711284251883626 +steady,sr,85,34.0,force,lower_fy,-0.005836994852870703 +steady,sr,86,34.4,force,front_fx,0.0007723047747276723 +steady,sr,86,34.4,force,front_fy,7.408976898659603e-08 +steady,sr,86,34.4,force,upper_fx,-0.00025794998509809375 +steady,sr,86,34.4,force,upper_fy,0.005841997917741537 +steady,sr,86,34.4,force,lower_fx,-0.0002578645362518728 +steady,sr,86,34.4,force,lower_fy,-0.005842010490596294 +steady,sr,87,34.8,force,front_fx,0.0007707828190177679 +steady,sr,87,34.8,force,front_fy,2.774373619729431e-08 +steady,sr,87,34.8,force,upper_fx,-0.00026181989233009517 +steady,sr,87,34.8,force,upper_fy,0.005840742960572243 +steady,sr,87,34.8,force,lower_fx,-0.0002617794380057603 +steady,sr,87,34.8,force,lower_fy,-0.005840882193297148 +steady,sr,88,35.2,force,front_fx,0.000768373254686594 +steady,sr,88,35.2,force,front_fy,1.4783036306198483e-07 +steady,sr,88,35.2,force,upper_fx,-0.0002655779244378209 +steady,sr,88,35.2,force,upper_fy,0.005833371076732874 +steady,sr,88,35.2,force,lower_fx,-0.0002655937278177589 +steady,sr,88,35.2,force,lower_fy,-0.005833377130329609 +steady,sr,89,35.6,force,front_fx,0.0007703794399276376 +steady,sr,89,35.6,force,front_fy,-1.4489283728380542e-07 +steady,sr,89,35.6,force,upper_fx,-0.0002621564199216664 +steady,sr,89,35.6,force,upper_fy,0.0058290292508900166 +steady,sr,89,35.6,force,lower_fx,-0.00026373297441750765 +steady,sr,89,35.6,force,lower_fy,-0.00582965649664402 +steady,sr,90,36.0,force,front_fx,0.0007726914482191205 +steady,sr,90,36.0,force,front_fy,2.8873728408207455e-10 +steady,sr,90,36.0,force,upper_fx,-0.0002586001355666667 +steady,sr,90,36.0,force,upper_fy,0.005832789000123739 +steady,sr,90,36.0,force,lower_fx,-0.00025867082877084613 +steady,sr,90,36.0,force,lower_fy,-0.005833050701767206 +steady,sr,91,36.4,force,front_fx,0.0007724238676019013 +steady,sr,91,36.4,force,front_fy,-1.1552637957379375e-08 +steady,sr,91,36.4,force,upper_fx,-0.00025710099725984037 +steady,sr,91,36.4,force,upper_fy,0.005839499644935131 +steady,sr,91,36.4,force,lower_fx,-0.00025701906997710466 +steady,sr,91,36.4,force,lower_fy,-0.005839544348418713 +steady,sr,92,36.8,force,front_fx,0.0007717970293015242 +steady,sr,92,36.8,force,front_fy,4.985455248629478e-08 +steady,sr,92,36.8,force,upper_fx,-0.0002592877426650375 +steady,sr,92,36.8,force,upper_fy,0.005842119455337524 +steady,sr,92,36.8,force,lower_fx,-0.0002595871628727764 +steady,sr,92,36.8,force,lower_fy,-0.005842333659529686 +steady,sr,93,37.2,force,front_fx,0.0007692094659432769 +steady,sr,93,37.2,force,front_fy,7.329166606950821e-08 +steady,sr,93,37.2,force,upper_fx,-0.0002641163591761142 +steady,sr,93,37.2,force,upper_fy,0.005838163662701845 +steady,sr,93,37.2,force,lower_fx,-0.0002640313177835196 +steady,sr,93,37.2,force,lower_fy,-0.005838070530444384 +steady,sr,94,37.6,force,front_fx,0.0007694057421758771 +steady,sr,94,37.6,force,front_fy,-1.094215420494038e-07 +steady,sr,94,37.6,force,upper_fx,-0.0002648642403073609 +steady,sr,94,37.6,force,upper_fy,0.005830632988363504 +steady,sr,94,37.6,force,lower_fx,-0.0002649349917192012 +steady,sr,94,37.6,force,lower_fy,-0.005831005517393351 +steady,sr,95,38.0,force,front_fx,0.0007716278778389096 +steady,sr,95,38.0,force,front_fy,-2.3567627849274686e-08 +steady,sr,95,38.0,force,upper_fx,-0.00026129273464903235 +steady,sr,95,38.0,force,upper_fy,0.005829951725900173 +steady,sr,95,38.0,force,lower_fx,-0.0002617455320432782 +steady,sr,95,38.0,force,lower_fy,-0.005830582231283188 +steady,sr,96,38.4,force,front_fx,0.0007724231691099703 +steady,sr,96,38.4,force,front_fy,-1.1662043419846668e-07 +steady,sr,96,38.4,force,upper_fx,-0.00025759267737157643 +steady,sr,96,38.4,force,upper_fy,0.005835862830281258 +steady,sr,96,38.4,force,lower_fx,-0.0002586207410786301 +steady,sr,96,38.4,force,lower_fy,-0.005836244206875563 +steady,sr,97,38.8,force,front_fx,0.0007723030284978449 +steady,sr,97,38.8,force,front_fy,-1.2473996946482657e-07 +steady,sr,97,38.8,force,upper_fx,-0.0002576344704721123 +steady,sr,97,38.8,force,upper_fy,0.005841387435793877 +steady,sr,97,38.8,force,lower_fx,-0.0002576634578872472 +steady,sr,97,38.8,force,lower_fy,-0.0058412677608430386 +steady,sr,98,39.2,force,front_fx,0.0007711005164310336 +steady,sr,98,39.2,force,front_fy,1.806141938232031e-07 +steady,sr,98,39.2,force,upper_fx,-0.00026076097856275737 +steady,sr,98,39.2,force,upper_fy,0.005841491278260946 +steady,sr,98,39.2,force,lower_fx,-0.00026106281438842416 +steady,sr,98,39.2,force,lower_fy,-0.0058410996571183205 +steady,sr,99,39.6,force,front_fx,0.0007684204610995948 +steady,sr,99,39.6,force,front_fy,-8.530914641369236e-08 +steady,sr,99,39.6,force,upper_fx,-0.00026520888786762953 +steady,sr,99,39.6,force,upper_fy,0.00583454268053174 +steady,sr,99,39.6,force,lower_fx,-0.00026530298055149615 +steady,sr,99,39.6,force,lower_fy,-0.005834468174725771 +steady,sr,100,40.0,force,front_fx,0.0007703090668655932 +steady,sr,100,40.0,force,front_fy,3.6225756616659055e-08 +steady,sr,100,40.0,force,upper_fx,-0.000263655703747645 +steady,sr,100,40.0,force,upper_fy,0.00582944555208087 +steady,sr,100,40.0,force,lower_fx,-0.0002636161516420543 +steady,sr,100,40.0,force,lower_fy,-0.00582969980314374 +steady,sr,101,40.4,force,front_fx,0.0007723751477897167 +steady,sr,101,40.4,force,front_fy,-9.811068935050571e-08 +steady,sr,101,40.4,force,upper_fx,-0.0002592880337033421 +steady,sr,101,40.4,force,upper_fy,0.005832073278725147 +steady,sr,101,40.4,force,lower_fx,-0.0002593677490949631 +steady,sr,101,40.4,force,lower_fy,-0.0058321598917245865 +steady,sr,102,40.8,force,front_fx,0.0007724192109890282 +steady,sr,102,40.8,force,front_fy,3.3545148880875786e-08 +steady,sr,102,40.8,force,upper_fx,-0.0002572131925262511 +steady,sr,102,40.8,force,upper_fy,0.005838800687342882 +steady,sr,102,40.8,force,lower_fx,-0.000256764906225726 +steady,sr,102,40.8,force,lower_fy,-0.005838134326040745 +steady,sr,103,41.2,force,front_fx,0.0007719136192463338 +steady,sr,103,41.2,force,front_fy,1.7326200918432733e-08 +steady,sr,103,41.2,force,upper_fx,-0.0002588795614428818 +steady,sr,103,41.2,force,upper_fy,0.005841867998242378 +steady,sr,103,41.2,force,lower_fx,-0.0002589765063021332 +steady,sr,103,41.2,force,lower_fy,-0.005841750651597977 +steady,sr,104,41.6,force,front_fx,0.0007696450338698924 +steady,sr,104,41.6,force,front_fy,1.3829210843141482e-07 +steady,sr,104,41.6,force,upper_fx,-0.00026334705762565136 +steady,sr,104,41.6,force,upper_fy,0.005839021876454353 +steady,sr,104,41.6,force,lower_fx,-0.00026331559638492763 +steady,sr,104,41.6,force,lower_fy,-0.0058381701819598675 +steady,sr,105,42.0,force,front_fx,0.0007691087666898966 +steady,sr,105,42.0,force,front_fy,-7.891613051924651e-08 +steady,sr,105,42.0,force,upper_fx,-0.0002647569344844669 +steady,sr,105,42.0,force,upper_fy,0.005831453017890453 +steady,sr,105,42.0,force,lower_fx,-0.0002650724200066179 +steady,sr,105,42.0,force,lower_fy,-0.005831494927406311 +steady,sr,106,42.4,force,front_fx,0.0007714253151789308 +steady,sr,106,42.4,force,front_fy,-7.236449217629115e-09 +steady,sr,106,42.4,force,upper_fx,-0.0002617793215904385 +steady,sr,106,42.4,force,upper_fy,0.005830028560012579 +steady,sr,106,42.4,force,lower_fx,-0.0002618894213810563 +steady,sr,106,42.4,force,lower_fy,-0.005830034613609314 +steady,sr,107,42.8,force,front_fx,0.0007722930749878287 +steady,sr,107,42.8,force,front_fy,5.660796986717287e-08 +steady,sr,107,42.8,force,upper_fx,-0.0002580467553343624 +steady,sr,107,42.8,force,upper_fy,0.0058348397724330425 +steady,sr,107,42.8,force,lower_fx,-0.00025813980028033257 +steady,sr,107,42.8,force,lower_fy,-0.005835006944835186 +steady,sr,108,43.2,force,front_fx,0.0007724849856458604 +steady,sr,108,43.2,force,front_fy,-1.755142875481397e-08 +steady,sr,108,43.2,force,upper_fx,-0.000257631967542693 +steady,sr,108,43.2,force,upper_fy,0.005840682424604893 +steady,sr,108,43.2,force,lower_fx,-0.00025761761935427785 +steady,sr,108,43.2,force,lower_fy,-0.00584067776799202 +steady,sr,109,43.6,force,front_fx,0.0007713392842561007 +steady,sr,109,43.6,force,front_fy,-2.2300882918102616e-08 +steady,sr,109,43.6,force,upper_fx,-0.00026051123859360814 +steady,sr,109,43.6,force,upper_fy,0.005841333884745836 +steady,sr,109,43.6,force,lower_fx,-0.00026056618662551045 +steady,sr,109,43.6,force,lower_fy,-0.005840403027832508 +steady,sr,110,44.0,force,front_fx,0.0007686587632633746 +steady,sr,110,44.0,force,front_fy,3.500603185102591e-08 +steady,sr,110,44.0,force,upper_fx,-0.00026489057927392423 +steady,sr,110,44.0,force,upper_fy,0.0058357552625238895 +steady,sr,110,44.0,force,lower_fx,-0.00026484730187803507 +steady,sr,110,44.0,force,lower_fy,-0.005836301948875189 +steady,sr,111,44.4,force,front_fx,0.0007699821726419032 +steady,sr,111,44.4,force,front_fy,8.65331628574495e-08 +steady,sr,111,44.4,force,upper_fx,-0.00026371332933194935 +steady,sr,111,44.4,force,upper_fy,0.005830019246786833 +steady,sr,111,44.4,force,lower_fx,-0.0002639008453115821 +steady,sr,111,44.4,force,lower_fy,-0.005830235313624144 +steady,sr,112,44.8,force,front_fx,0.0007722321315668523 +steady,sr,112,44.8,force,front_fy,-1.0202318634355834e-07 +steady,sr,112,44.8,force,upper_fx,-0.00025998198543675244 +steady,sr,112,44.8,force,upper_fy,0.0058315210044384 +steady,sr,112,44.8,force,lower_fx,-0.00026016481569968164 +steady,sr,112,44.8,force,lower_fy,-0.005831718444824219 +steady,sr,113,45.2,force,front_fx,0.0007722793379798532 +steady,sr,113,45.2,force,front_fy,2.8361027304413255e-08 +steady,sr,113,45.2,force,upper_fx,-0.0002574263489805162 +steady,sr,113,45.2,force,upper_fy,0.005837665870785713 +steady,sr,113,45.2,force,lower_fx,-0.00025736508541740477 +steady,sr,113,45.2,force,lower_fy,-0.005837913602590561 +steady,sr,114,45.6,force,front_fx,0.000771993538364768 +steady,sr,114,45.6,force,front_fy,-1.1343272632302615e-07 +steady,sr,114,45.6,force,upper_fx,-0.00025856716092675924 +steady,sr,114,45.6,force,upper_fy,0.005841157399117947 +steady,sr,114,45.6,force,lower_fx,-0.00025863124756142497 +steady,sr,114,45.6,force,lower_fy,-0.0058416337706148624 +steady,sr,115,46.0,force,front_fx,0.0007699518464505672 +steady,sr,115,46.0,force,front_fy,-2.261156595295688e-07 +steady,sr,115,46.0,force,upper_fx,-0.00026271084789186716 +steady,sr,115,46.0,force,upper_fy,0.0058394791558384895 +steady,sr,115,46.0,force,lower_fx,-0.0002625176857691258 +steady,sr,115,46.0,force,lower_fy,-0.0058380113914608955 +steady,sr,116,46.4,force,front_fx,0.0007691114442422986 +steady,sr,116,46.4,force,front_fy,-6.0698241099999e-08 +steady,sr,116,46.4,force,upper_fx,-0.0002650330716278404 +steady,sr,116,46.4,force,upper_fy,0.005832542199641466 +steady,sr,116,46.4,force,lower_fx,-0.0002648540248628706 +steady,sr,116,46.4,force,lower_fy,-0.005832627881318331 +steady,sr,117,46.8,force,front_fx,0.0007709756609983742 +steady,sr,117,46.8,force,front_fy,-4.092726157978177e-09 +steady,sr,117,46.8,force,upper_fx,-0.0002623314503580332 +steady,sr,117,46.8,force,upper_fy,0.005829923786222935 +steady,sr,117,46.8,force,lower_fx,-0.0002623393665999174 +steady,sr,117,46.8,force,lower_fy,-0.005829908885061741 +steady,sr,118,47.2,force,front_fx,0.0007723105954937637 +steady,sr,118,47.2,force,front_fy,-1.1471478700286752e-07 +steady,sr,118,47.2,force,upper_fx,-0.0002586622431408614 +steady,sr,118,47.2,force,upper_fy,0.005834036506712437 +steady,sr,118,47.2,force,lower_fx,-0.00025861599715426564 +steady,sr,118,47.2,force,lower_fy,-0.005834673065692186 +steady,sr,119,47.6,force,front_fx,0.0007725291652604938 +steady,sr,119,47.6,force,front_fy,5.3181139492153306e-08 +steady,sr,119,47.6,force,upper_fx,-0.0002575950347818434 +steady,sr,119,47.6,force,upper_fy,0.005839953199028969 +steady,sr,119,47.6,force,lower_fx,-0.0002575620310381055 +steady,sr,119,47.6,force,lower_fy,-0.005839956924319267 +steady,sr,120,48.0,force,front_fx,0.0007715286919847131 +steady,sr,120,48.0,force,front_fy,-2.2794148435423267e-07 +steady,sr,120,48.0,force,upper_fx,-0.0002602231106720865 +steady,sr,120,48.0,force,upper_fy,0.005841528065502644 +steady,sr,120,48.0,force,lower_fx,-0.0002600152511149645 +steady,sr,120,48.0,force,lower_fy,-0.005841107573360205 +steady,sr,121,48.4,force,front_fx,0.0007688964251428843 +steady,sr,121,48.4,force,front_fy,-2.030237311601013e-07 +steady,sr,121,48.4,force,upper_fx,-0.00026423370582051575 +steady,sr,121,48.4,force,upper_fy,0.0058365510776638985 +steady,sr,121,48.4,force,lower_fx,-0.00026422642986290157 +steady,sr,121,48.4,force,lower_fy,-0.005836529191583395 +steady,sr,122,48.8,force,front_fx,0.0007697955588810146 +steady,sr,122,48.8,force,front_fy,1.3489047034909163e-07 +steady,sr,122,48.8,force,upper_fx,-0.0002640158636495471 +steady,sr,122,48.8,force,upper_fy,0.005830688867717981 +steady,sr,122,48.8,force,lower_fx,-0.00026404522941447794 +steady,sr,122,48.8,force,lower_fy,-0.005830658599734306 +steady,sr,123,49.2,force,front_fx,0.000772050756495446 +steady,sr,123,49.2,force,front_fy,6.016556852728172e-08 +steady,sr,123,49.2,force,upper_fx,-0.0002605006447993219 +steady,sr,123,49.2,force,upper_fy,0.005831399001181126 +steady,sr,123,49.2,force,lower_fx,-0.0002613948890939355 +steady,sr,123,49.2,force,lower_fy,-0.005830919370055199 +steady,sr,124,49.6,force,front_fx,0.0007723341695964336 +steady,sr,124,49.6,force,front_fy,8.900802583866607e-08 +steady,sr,124,49.6,force,upper_fx,-0.00025768368504941463 +steady,sr,124,49.6,force,upper_fy,0.0058367629535496235 +steady,sr,124,49.6,force,lower_fx,-0.0002579046704340726 +steady,sr,124,49.6,force,lower_fy,-0.005836767144501209 +steady,sr,125,50.0,force,front_fx,0.0007721944712102413 +steady,sr,125,50.0,force,front_fy,-3.326858788454956e-09 +steady,sr,125,50.0,force,upper_fx,-0.000258381653111428 +steady,sr,125,50.0,force,upper_fy,0.0058545637875795364 +steady,sr,125,50.0,force,lower_fx,-0.00025924009969457984 +steady,sr,125,50.0,force,lower_fy,-0.005841863341629505 +steady,sr,126,50.4,force,front_fx,0.0007704017916694283 +steady,sr,126,50.4,force,front_fy,-1.2095780732579442e-07 +steady,sr,126,50.4,force,upper_fx,-0.0002617320278659463 +steady,sr,126,50.4,force,upper_fy,0.005839754361659288 +steady,sr,126,50.4,force,lower_fx,-0.00026196896214969456 +steady,sr,126,50.4,force,lower_fy,-0.00583981815725565 +steady,sr,127,50.8,force,front_fx,0.0007690333295613527 +steady,sr,127,50.8,force,front_fy,6.564659926766581e-09 +steady,sr,127,50.8,force,upper_fx,-0.00026463594986125827 +steady,sr,127,50.8,force,upper_fy,0.0058332993648946285 +steady,sr,127,50.8,force,lower_fx,-0.00026473135221749544 +steady,sr,127,50.8,force,lower_fy,-0.005833467468619347 +steady,sr,128,51.2,force,front_fx,0.0007707167533226311 +steady,sr,128,51.2,force,front_fy,2.091437600881818e-08 +steady,sr,128,51.2,force,upper_fx,-0.00026261675520800054 +steady,sr,128,51.2,force,upper_fy,0.0058301701210439205 +steady,sr,128,51.2,force,lower_fx,-0.00026274475385434926 +steady,sr,128,51.2,force,lower_fy,-0.005830336827784777 +steady,sr,129,51.6,force,front_fx,0.0007720317225903273 +steady,sr,129,51.6,force,front_fy,-1.5882993409377377e-07 +steady,sr,129,51.6,force,upper_fx,-0.0002586780465207994 +steady,sr,129,51.6,force,upper_fy,0.005833928007632494 +steady,sr,129,51.6,force,lower_fx,-0.0002592416713014245 +steady,sr,129,51.6,force,lower_fy,-0.005833442788571119 +steady,sr,130,52.0,force,front_fx,0.0007725507603026927 +steady,sr,130,52.0,force,front_fy,-1.788121863910419e-07 +steady,sr,130,52.0,force,upper_fx,-0.0002575521939434111 +steady,sr,130,52.0,force,upper_fy,0.005839182063937187 +steady,sr,130,52.0,force,lower_fx,-0.00025754296802915633 +steady,sr,130,52.0,force,lower_fy,-0.0058390856720507145 +steady,sr,131,52.4,force,front_fx,0.0007717623375356197 +steady,sr,131,52.4,force,front_fy,-9.767136077698524e-08 +steady,sr,131,52.4,force,upper_fx,-0.0002597130951471627 +steady,sr,131,52.4,force,upper_fy,0.005841248203068972 +steady,sr,131,52.4,force,lower_fx,-0.00025976079632528126 +steady,sr,131,52.4,force,lower_fy,-0.005841515492647886 +steady,sr,132,52.8,force,front_fx,0.0007691361824981868 +steady,sr,132,52.8,force,front_fy,3.903362255641696e-08 +steady,sr,132,52.8,force,upper_fx,-0.0002637583529576659 +steady,sr,132,52.8,force,upper_fy,0.00583738274872303 +steady,sr,132,52.8,force,lower_fx,-0.0002638264268171042 +steady,sr,132,52.8,force,lower_fy,-0.005837392993271351 +steady,sr,133,53.2,force,front_fx,0.0007697805995121598 +steady,sr,133,53.2,force,front_fy,2.4141917265296797e-07 +steady,sr,133,53.2,force,upper_fx,-0.0002641333849169314 +steady,sr,133,53.2,force,upper_fy,0.005831201560795307 +steady,sr,133,53.2,force,lower_fx,-0.0002640920865815133 +steady,sr,133,53.2,force,lower_fy,-0.005831209011375904 +steady,sr,134,53.6,force,front_fx,0.0007716710679233074 +steady,sr,134,53.6,force,front_fy,1.4690063210309745e-07 +steady,sr,134,53.6,force,upper_fx,-0.00026090710889548063 +steady,sr,134,53.6,force,upper_fy,0.005831191316246986 +steady,sr,134,53.6,force,lower_fx,-0.0002610579249449074 +steady,sr,134,53.6,force,lower_fy,-0.005830606911331415 +steady,sr,135,54.0,force,front_fx,0.0007721210131421685 +steady,sr,135,54.0,force,front_fy,1.8288578473857342e-07 +steady,sr,135,54.0,force,upper_fx,-0.00025800825096666813 +steady,sr,135,54.0,force,upper_fy,0.005835937336087227 +steady,sr,135,54.0,force,lower_fx,-0.00025839428417384624 +steady,sr,135,54.0,force,lower_fy,-0.005835745483636856 +steady,sr,136,54.4,force,front_fx,0.0007722952868789434 +steady,sr,136,54.4,force,front_fy,-3.346329435771622e-08 +steady,sr,136,54.4,force,upper_fx,-0.00025829466176219285 +steady,sr,136,54.4,force,upper_fy,0.005840703379362822 +steady,sr,136,54.4,force,lower_fx,-0.0002583968744147569 +steady,sr,136,54.4,force,lower_fy,-0.005840481724590063 +steady,sr,137,54.8,force,front_fx,0.0007708249031566083 +steady,sr,137,54.8,force,front_fy,1.3153670863630396e-07 +steady,sr,137,54.8,force,upper_fx,-0.0002613315300550312 +steady,sr,137,54.8,force,upper_fy,0.00584029546007514 +steady,sr,137,54.8,force,lower_fx,-0.00026129555772058666 +steady,sr,137,54.8,force,lower_fy,-0.005839657969772816 +steady,sr,138,55.2,force,front_fx,0.0007691038190387189 +steady,sr,138,55.2,force,front_fy,2.9303993187568267e-07 +steady,sr,138,55.2,force,upper_fx,-0.000264603178948164 +steady,sr,138,55.2,force,upper_fy,0.005834403447806835 +steady,sr,138,55.2,force,lower_fx,-0.00026454185717739165 +steady,sr,138,55.2,force,lower_fy,-0.005835931282490492 +steady,sr,139,55.6,force,front_fx,0.0007704410818405449 +steady,sr,139,55.6,force,front_fy,2.1691194618256304e-08 +steady,sr,139,55.6,force,upper_fx,-0.0002629180671647191 +steady,sr,139,55.6,force,upper_fy,0.005830541718751192 +steady,sr,139,55.6,force,lower_fx,-0.00026341332704760134 +steady,sr,139,55.6,force,lower_fy,-0.005830851849168539 +steady,sr,140,56.0,force,front_fx,0.0007719224086031318 +steady,sr,140,56.0,force,front_fy,-1.0344177781007602e-07 +steady,sr,140,56.0,force,upper_fx,-0.0002597425482235849 +steady,sr,140,56.0,force,upper_fy,0.005832934286445379 +steady,sr,140,56.0,force,lower_fx,-0.0002596968843135983 +steady,sr,140,56.0,force,lower_fy,-0.005833130329847336 +steady,sr,141,56.4,force,front_fx,0.0007724293391220272 +steady,sr,141,56.4,force,front_fy,5.1579945647972636e-08 +steady,sr,141,56.4,force,upper_fx,-0.0002576051920186728 +steady,sr,141,56.4,force,upper_fy,0.005838328972458839 +steady,sr,141,56.4,force,lower_fx,-0.00025772364460863173 +steady,sr,141,56.4,force,lower_fy,-0.0058382130227983 +steady,sr,142,56.8,force,front_fx,0.0007719539571553469 +steady,sr,142,56.8,force,front_fy,2.487554411345627e-07 +steady,sr,142,56.8,force,upper_fx,-0.00025935593293979764 +steady,sr,142,56.8,force,upper_fy,0.005841358099132776 +steady,sr,142,56.8,force,lower_fx,-0.00025735373492352664 +steady,sr,142,56.8,force,lower_fy,-0.005839684046804905 +steady,sr,143,57.2,force,front_fx,0.000769418606068939 +steady,sr,143,57.2,force,front_fy,-1.9463412570530636e-07 +steady,sr,143,57.2,force,upper_fx,-0.00026327886735089123 +steady,sr,143,57.2,force,upper_fy,0.005836380645632744 +steady,sr,143,57.2,force,lower_fx,-0.0002632797113619745 +steady,sr,143,57.2,force,lower_fy,-0.00583763187751174 +steady,sr,144,57.6,force,front_fx,0.0007697779801674187 +steady,sr,144,57.6,force,front_fy,1.4524115954372974e-07 +steady,sr,144,57.6,force,upper_fx,-0.00026434805477038026 +steady,sr,144,57.6,force,upper_fy,0.005832095630466938 +steady,sr,144,57.6,force,lower_fx,-0.0002642999170348048 +steady,sr,144,57.6,force,lower_fy,-0.005832238122820854 +steady,sr,145,58.0,force,front_fx,0.0007711764192208648 +steady,sr,145,58.0,force,front_fy,4.3481762190822337e-07 +steady,sr,145,58.0,force,upper_fx,-0.0002609916846267879 +steady,sr,145,58.0,force,upper_fy,0.005831648595631123 +steady,sr,145,58.0,force,lower_fx,-0.00026132335187867284 +steady,sr,145,58.0,force,lower_fy,-0.0058320737443864346 +steady,sr,146,58.4,force,front_fx,0.0007720565772615373 +steady,sr,146,58.4,force,front_fy,-1.7726524959016388e-07 +steady,sr,146,58.4,force,upper_fx,-0.00025842880131676793 +steady,sr,146,58.4,force,upper_fy,0.005835157819092274 +steady,sr,146,58.4,force,lower_fx,-0.00025839300360530615 +steady,sr,146,58.4,force,lower_fy,-0.005835114046931267 +steady,sr,147,58.8,force,front_fx,0.0007724830647930503 +steady,sr,147,58.8,force,front_fy,-1.9763604086620035e-07 +steady,sr,147,58.8,force,upper_fx,-0.0002580561558715999 +steady,sr,147,58.8,force,upper_fy,0.00583997555077076 +steady,sr,147,58.8,force,lower_fx,-0.0002557002298999578 +steady,sr,147,58.8,force,lower_fy,-0.005837553180754185 +steady,sr,148,59.2,force,front_fx,0.0007710384088568389 +steady,sr,148,59.2,force,front_fy,-1.5286241605849682e-08 +steady,sr,148,59.2,force,upper_fx,-0.00026075803907588124 +steady,sr,148,59.2,force,upper_fy,0.005840955767780542 +steady,sr,148,59.2,force,lower_fx,-0.0002609110379125923 +steady,sr,148,59.2,force,lower_fy,-0.005839601159095764 +steady,sr,149,59.6,force,front_fx,0.0007690734346397221 +steady,sr,149,59.6,force,front_fy,-1.913142142484503e-07 +steady,sr,149,59.6,force,upper_fx,-0.0002639800950419158 +steady,sr,149,59.6,force,upper_fy,0.005835224408656359 +steady,sr,149,59.6,force,lower_fx,-0.00026423268718644977 +steady,sr,149,59.6,force,lower_fy,-0.005835309159010649 +steady,sr,150,60.0,force,front_fx,0.0007704555173404515 +steady,sr,150,60.0,force,front_fy,1.9031750753129018e-07 +steady,sr,150,60.0,force,upper_fx,-0.00026318570598959923 +steady,sr,150,60.0,force,upper_fy,0.005830792710185051 +steady,sr,150,60.0,force,lower_fx,-0.00026319705648347735 +steady,sr,150,60.0,force,lower_fy,-0.005830998998135328 +steady,sr,151,60.4,force,front_fx,0.0007715452229604125 +steady,sr,151,60.4,force,front_fy,-8.798857464853427e-08 +steady,sr,151,60.4,force,upper_fx,-0.00025963192456401885 +steady,sr,151,60.4,force,upper_fy,0.005833036731928587 +steady,sr,151,60.4,force,lower_fx,-0.0002602561726234853 +steady,sr,151,60.4,force,lower_fy,-0.005832652561366558 +steady,sr,152,60.8,force,front_fx,0.0007723937160335481 +steady,sr,152,60.8,force,front_fy,5.2708202247231384e-08 +steady,sr,152,60.8,force,upper_fx,-0.0002578479761723429 +steady,sr,152,60.8,force,upper_fy,0.00583749171346426 +steady,sr,152,60.8,force,lower_fx,-0.0002579825813882053 +steady,sr,152,60.8,force,lower_fy,-0.005837625358253717 +steady,sr,153,61.2,force,front_fx,0.0007721699075773358 +steady,sr,153,61.2,force,front_fy,5.953414117243483e-08 +steady,sr,153,61.2,force,upper_fx,-0.00025898206513375044 +steady,sr,153,61.2,force,upper_fy,0.005840761121362448 +steady,sr,153,61.2,force,lower_fx,-0.0002588653878774494 +steady,sr,153,61.2,force,lower_fy,-0.005840858444571495 +steady,sr,154,61.6,force,front_fx,0.0007698058616369963 +steady,sr,154,61.6,force,front_fy,-4.473695369711095e-08 +steady,sr,154,61.6,force,upper_fx,-0.0002627687936183065 +steady,sr,154,61.6,force,upper_fy,0.005838726181536913 +steady,sr,154,61.6,force,lower_fx,-0.00026294292183592916 +steady,sr,154,61.6,force,lower_fy,-0.005838944111019373 +steady,sr,155,62.0,force,front_fx,0.0007694839732721448 +steady,sr,155,62.0,force,front_fy,5.7840225053951144e-08 +steady,sr,155,62.0,force,upper_fx,-0.00026429019635543227 +steady,sr,155,62.0,force,upper_fy,0.005832776892930269 +steady,sr,155,62.0,force,lower_fx,-0.00026424790848977864 +steady,sr,155,62.0,force,lower_fy,-0.005832963157445192 +steady,sr,156,62.4,force,front_fx,0.0007713907980360091 +steady,sr,156,62.4,force,front_fy,-5.727275365075002e-08 +steady,sr,156,62.4,force,upper_fx,-0.00026178776170127094 +steady,sr,156,62.4,force,upper_fy,0.005831030197441578 +steady,sr,156,62.4,force,lower_fx,-0.0002617842401377857 +steady,sr,156,62.4,force,lower_fy,-0.005830792244523764 +steady,sr,157,62.8,force,front_fx,0.000771734572481364 +steady,sr,157,62.8,force,front_fy,-4.3148503436896135e-08 +steady,sr,157,62.8,force,upper_fx,-0.0002589789219200611 +steady,sr,157,62.8,force,upper_fy,0.005834583193063736 +steady,sr,157,62.8,force,lower_fx,-0.00025903378264047205 +steady,sr,157,62.8,force,lower_fy,-0.0058346218429505825 +steady,sr,158,63.2,force,front_fx,0.0007723968592472374 +steady,sr,158,63.2,force,front_fy,1.9174112253494968e-07 +steady,sr,158,63.2,force,upper_fx,-0.00025809722137637436 +steady,sr,158,63.2,force,upper_fy,0.005839396733790636 +steady,sr,158,63.2,force,lower_fx,-0.0002582827291917056 +steady,sr,158,63.2,force,lower_fy,-0.005840012803673744 +steady,sr,159,63.6,force,front_fx,0.0007713569211773574 +steady,sr,159,63.6,force,front_fy,-8.424904329729088e-09 +steady,sr,159,63.6,force,upper_fx,-0.00026029295986518264 +steady,sr,159,63.6,force,upper_fy,0.0058404868468642235 +steady,sr,159,63.6,force,lower_fx,-0.00026031507877632976 +steady,sr,159,63.6,force,lower_fy,-0.0058406805619597435 +steady,sr,160,64.0,force,front_fx,0.000769201316870749 +steady,sr,160,64.0,force,front_fy,2.0068408446149988e-07 +steady,sr,160,64.0,force,upper_fx,-0.0002639510203152895 +steady,sr,160,64.0,force,upper_fy,0.005836213938891888 +steady,sr,160,64.0,force,lower_fx,-0.00026397311012260616 +steady,sr,160,64.0,force,lower_fy,-0.005836931057274342 +steady,sr,161,64.4,force,front_fx,0.0007702797884121537 +steady,sr,161,64.4,force,front_fy,-6.402602537036728e-08 +steady,sr,161,64.4,force,upper_fx,-0.0002632855321280658 +steady,sr,161,64.4,force,upper_fy,0.005831308197230101 +steady,sr,161,64.4,force,lower_fx,-0.0002633511903695762 +steady,sr,161,64.4,force,lower_fy,-0.005831424612551928 +steady,sr,162,64.8,force,front_fx,0.0007716226391494274 +steady,sr,162,64.8,force,front_fy,-1.2887204547951114e-07 +steady,sr,162,64.8,force,upper_fx,-0.0002607440110296011 +steady,sr,162,64.8,force,upper_fy,0.0058321296237409115 +steady,sr,162,64.8,force,lower_fx,-0.00026072957552969456 +steady,sr,162,64.8,force,lower_fy,-0.005832705646753311 +steady,sr,163,65.2,force,front_fx,0.0007722325390204787 +steady,sr,163,65.2,force,front_fy,1.9351682567503303e-07 +steady,sr,163,65.2,force,upper_fx,-0.0002581074950285256 +steady,sr,163,65.2,force,upper_fy,0.005836695432662964 +steady,sr,163,65.2,force,lower_fx,-0.00025815932895056903 +steady,sr,163,65.2,force,lower_fy,-0.005836850963532925 +steady,sr,164,65.6,force,front_fx,0.0007722040172666311 +steady,sr,164,65.6,force,front_fy,7.80443230041783e-08 +steady,sr,164,65.6,force,upper_fx,-0.000258775835391134 +steady,sr,164,65.6,force,upper_fy,0.005840280093252659 +steady,sr,164,65.6,force,lower_fx,-0.00025877327425405383 +steady,sr,164,65.6,force,lower_fy,-0.005840705707669258 +steady,sr,165,66.0,force,front_fx,0.0007702430593781173 +steady,sr,165,66.0,force,front_fy,-1.9033984699490247e-07 +steady,sr,165,66.0,force,upper_fx,-0.0002668972301762551 +steady,sr,165,66.0,force,upper_fy,0.005838912911713123 +steady,sr,165,66.0,force,lower_fx,-0.00026204693131148815 +steady,sr,165,66.0,force,lower_fy,-0.005839071236550808 +steady,sr,166,66.4,force,front_fx,0.0007695212843827903 +steady,sr,166,66.4,force,front_fy,1.349931721961184e-07 +steady,sr,166,66.4,force,upper_fx,-0.00026424703537486494 +steady,sr,166,66.4,force,upper_fy,0.005833545699715614 +steady,sr,166,66.4,force,lower_fx,-0.0002642478793859482 +steady,sr,166,66.4,force,lower_fy,-0.005833563860505819 +steady,sr,167,66.8,force,front_fx,0.0007710810168646276 +steady,sr,167,66.8,force,front_fy,-2.9334769280353612e-08 +steady,sr,167,66.8,force,upper_fx,-0.00026215804973617196 +steady,sr,167,66.8,force,upper_fy,0.005831094924360514 +steady,sr,167,66.8,force,lower_fx,-0.0002621544408611953 +steady,sr,167,66.8,force,lower_fy,-0.005831401329487562 +steady,sr,168,67.2,force,front_fx,0.0007717811968177557 +steady,sr,168,67.2,force,front_fy,4.32931045679652e-07 +steady,sr,168,67.2,force,upper_fx,-0.00025935060693882406 +steady,sr,168,67.2,force,upper_fy,0.005834068171679974 +steady,sr,168,67.2,force,lower_fx,-0.00025935916346497834 +steady,sr,168,67.2,force,lower_fy,-0.00583299994468689 +steady,sr,169,67.6,force,front_fx,0.0007722934242337942 +steady,sr,169,67.6,force,front_fy,-6.941598229559531e-08 +steady,sr,169,67.6,force,upper_fx,-0.000258012383710593 +steady,sr,169,67.6,force,upper_fy,0.005838689859956503 +steady,sr,169,67.6,force,lower_fx,-0.0002582410234026611 +steady,sr,169,67.6,force,lower_fy,-0.005838353186845779 +steady,sr,170,68.0,force,front_fx,0.0007717000553384423 +steady,sr,170,68.0,force,front_fy,9.822331747955104e-08 +steady,sr,170,68.0,force,upper_fx,-0.000259963097050786 +steady,sr,170,68.0,force,upper_fy,0.00584045983850956 +steady,sr,170,68.0,force,lower_fx,-0.0002600502921268344 +steady,sr,170,68.0,force,lower_fy,-0.005840511526912451 +steady,sr,171,68.4,force,front_fx,0.00076928740600124 +steady,sr,171,68.4,force,front_fy,-9.071962381312915e-08 +steady,sr,171,68.4,force,upper_fx,-0.0002634712727740407 +steady,sr,171,68.4,force,upper_fy,0.005836795549839735 +steady,sr,171,68.4,force,lower_fx,-0.00026348489336669445 +steady,sr,171,68.4,force,lower_fy,-0.005836802069097757 +steady,sr,172,68.8,force,front_fx,0.0007701169815845788 +steady,sr,172,68.8,force,front_fy,-2.5651308988017263e-07 +steady,sr,172,68.8,force,upper_fx,-0.00026350151165388525 +steady,sr,172,68.8,force,upper_fy,0.005831902846693993 +steady,sr,172,68.8,force,lower_fx,-0.0002635032869875431 +steady,sr,172,68.8,force,lower_fy,-0.005831650923937559 +steady,sr,173,69.2,force,front_fx,0.0007713867234997451 +steady,sr,173,69.2,force,front_fy,-8.939008466768428e-08 +steady,sr,173,69.2,force,upper_fx,-0.0002610681694932282 +steady,sr,173,69.2,force,upper_fy,0.00583196897059679 +steady,sr,173,69.2,force,lower_fx,-0.00026098135276697576 +steady,sr,173,69.2,force,lower_fy,-0.005831967573612928 +steady,sr,174,69.6,force,front_fx,0.0007721817237325013 +steady,sr,174,69.6,force,front_fy,-3.3454162462476233e-07 +steady,sr,174,69.6,force,upper_fx,-0.0002585171605460346 +steady,sr,174,69.6,force,upper_fy,0.005836018826812506 +steady,sr,174,69.6,force,lower_fx,-0.0002586035698186606 +steady,sr,174,69.6,force,lower_fy,-0.005835928954184055 +steady,sr,175,70.0,force,front_fx,0.0007722907466813922 +steady,sr,175,70.0,force,front_fy,-5.3065814853425763e-08 +steady,sr,175,70.0,force,upper_fx,-0.0002586859336588532 +steady,sr,175,70.0,force,upper_fy,0.00584001699462533 +steady,sr,175,70.0,force,lower_fx,-0.00025871998514048755 +steady,sr,175,70.0,force,lower_fy,-0.005840103607624769 +steady,sr,176,70.4,force,front_fx,0.0007703721057623625 +steady,sr,176,70.4,force,front_fy,-1.7078745884191449e-07 +steady,sr,176,70.4,force,upper_fx,-0.0002615754201542586 +steady,sr,176,70.4,force,upper_fy,0.005839511752128601 +steady,sr,176,70.4,force,lower_fx,-0.00026161837740801275 +steady,sr,176,70.4,force,lower_fy,-0.0058397711254656315 +steady,sr,177,70.8,force,front_fx,0.0007695085369050503 +steady,sr,177,70.8,force,front_fy,2.7009372516317853e-08 +steady,sr,177,70.8,force,upper_fx,-0.0002638701116666198 +steady,sr,177,70.8,force,upper_fy,0.005834480747580528 +steady,sr,177,70.8,force,lower_fx,-0.00026390733546577394 +steady,sr,177,70.8,force,lower_fy,-0.005834062583744526 +steady,sr,178,71.2,force,front_fx,0.0007707064505666494 +steady,sr,178,71.2,force,front_fy,-2.522315014630294e-07 +steady,sr,178,71.2,force,upper_fx,-0.00026232466916553676 +steady,sr,178,71.2,force,upper_fy,0.005831548478454351 +steady,sr,178,71.2,force,lower_fx,-0.00026268267538398504 +steady,sr,178,71.2,force,lower_fy,-0.005831337533891201 +steady,sr,179,71.6,force,front_fx,0.0007716561085544527 +steady,sr,179,71.6,force,front_fy,2.0576353065848707e-08 +steady,sr,179,71.6,force,upper_fx,-0.0002598197606857866 +steady,sr,179,71.6,force,upper_fy,0.005833439063280821 +steady,sr,179,71.6,force,lower_fx,-0.0002598903374746442 +steady,sr,179,71.6,force,lower_fy,-0.005833874456584454 +steady,sr,180,72.0,force,front_fx,0.0007722670561634004 +steady,sr,180,72.0,force,front_fy,-5.230205601947091e-08 +steady,sr,180,72.0,force,upper_fx,-0.0002581161679700017 +steady,sr,180,72.0,force,upper_fy,0.005838119424879551 +steady,sr,180,72.0,force,lower_fx,-0.00025813517277128994 +steady,sr,180,72.0,force,lower_fy,-0.0058381580747663975 +steady,sr,181,72.4,force,front_fx,0.0007717162952758372 +steady,sr,181,72.4,force,front_fy,-1.4627852351623005e-07 +steady,sr,181,72.4,force,upper_fx,-0.00025875744177028537 +steady,sr,181,72.4,force,upper_fy,0.005840834230184555 +steady,sr,181,72.4,force,lower_fx,-0.0002596568374428898 +steady,sr,181,72.4,force,lower_fy,-0.005840235855430365 +steady,sr,182,72.8,force,front_fx,0.0007695992826484144 +steady,sr,182,72.8,force,front_fy,-3.4203985421754624e-08 +steady,sr,182,72.8,force,upper_fx,-0.0002630647213663906 +steady,sr,182,72.8,force,upper_fy,0.005837460048496723 +steady,sr,182,72.8,force,lower_fx,-0.0002613430260680616 +steady,sr,182,72.8,force,lower_fy,-0.005837408360093832 +steady,sr,183,73.2,force,front_fx,0.000769993057474494 +steady,sr,183,73.2,force,front_fy,-1.4881734067273555e-08 +steady,sr,183,73.2,force,upper_fx,-0.00026363279903307557 +steady,sr,183,73.2,force,upper_fy,0.005832481198012829 +steady,sr,183,73.2,force,lower_fx,-0.00026372968568466604 +steady,sr,183,73.2,force,lower_fy,-0.005832303781062365 +steady,sr,184,73.6,force,front_fx,0.0007713266531936824 +steady,sr,184,73.6,force,front_fy,1.6185476070518234e-08 +steady,sr,184,73.6,force,upper_fx,-0.0002615146804600954 +steady,sr,184,73.6,force,upper_fy,0.005832085385918617 +steady,sr,184,73.6,force,lower_fx,-0.0002613997785374522 +steady,sr,184,73.6,force,lower_fy,-0.005831905175000429 +steady,sr,185,74.0,force,front_fx,0.0007719122804701328 +steady,sr,185,74.0,force,front_fy,-4.670422626418258e-08 +steady,sr,185,74.0,force,upper_fx,-0.0002586740010883659 +steady,sr,185,74.0,force,upper_fy,0.005835479125380516 +steady,sr,185,74.0,force,lower_fx,-0.0002588314237073064 +steady,sr,185,74.0,force,lower_fy,-0.005836906377226114 +steady,sr,186,74.4,force,front_fx,0.0007721041911281645 +steady,sr,186,74.4,force,front_fy,1.33588038409016e-08 +steady,sr,186,74.4,force,upper_fx,-0.00025845583877526224 +steady,sr,186,74.4,force,upper_fy,0.005839603953063488 +steady,sr,186,74.4,force,lower_fx,-0.00025856835418380797 +steady,sr,186,74.4,force,lower_fy,-0.005839488469064236 +steady,sr,187,74.8,force,front_fx,0.0007708566845394671 +steady,sr,187,74.8,force,front_fy,5.866269958687553e-08 +steady,sr,187,74.8,force,upper_fx,-0.00026100550894625485 +steady,sr,187,74.8,force,upper_fy,0.005839687772095203 +steady,sr,187,74.8,force,lower_fx,-0.00026110498583875597 +steady,sr,187,74.8,force,lower_fy,-0.005836409516632557 +steady,sr,188,75.2,force,front_fx,0.0007695328677073121 +steady,sr,188,75.2,force,front_fy,2.016600753051989e-08 +steady,sr,188,75.2,force,upper_fx,-0.00026386178797110915 +steady,sr,188,75.2,force,upper_fy,0.0058342874981462955 +steady,sr,188,75.2,force,lower_fx,-0.0002636646095197648 +steady,sr,188,75.2,force,lower_fy,-0.005835243035107851 +steady,sr,189,75.6,force,front_fx,0.0007706875330768526 +steady,sr,189,75.6,force,front_fy,3.800116132879339e-08 +steady,sr,189,75.6,force,upper_fx,-0.0002628906222525984 +steady,sr,189,75.6,force,upper_fy,0.005832451395690441 +steady,sr,189,75.6,force,lower_fx,-0.0002632413525134325 +steady,sr,189,75.6,force,lower_fy,-0.005833834409713745 +steady,sr,190,76.0,force,front_fx,0.0007713533123023808 +steady,sr,190,76.0,force,front_fy,1.051312210620381e-07 +steady,sr,190,76.0,force,upper_fx,-0.0002602570748422295 +steady,sr,190,76.0,force,upper_fy,0.005832914728671312 +steady,sr,190,76.0,force,lower_fx,-0.0002602764870971441 +steady,sr,190,76.0,force,lower_fy,-0.005833348724991083 +steady,sr,191,76.4,force,front_fx,0.0007724379538558424 +steady,sr,191,76.4,force,front_fy,-1.9405182172249624e-07 +steady,sr,191,76.4,force,upper_fx,-0.0002584046742413193 +steady,sr,191,76.4,force,upper_fy,0.005837504286319017 +steady,sr,191,76.4,force,lower_fx,-0.00025822638417594135 +steady,sr,191,76.4,force,lower_fy,-0.005839077290147543 +steady,sr,192,76.8,force,front_fx,0.0007719311397522688 +steady,sr,192,76.8,force,front_fy,3.553548566515019e-08 +steady,sr,192,76.8,force,upper_fx,-0.00025933649158105254 +steady,sr,192,76.8,force,upper_fy,0.005840432830154896 +steady,sr,192,76.8,force,lower_fx,-0.0002593320677988231 +steady,sr,192,76.8,force,lower_fy,-0.005840829107910395 +steady,sr,193,77.2,force,front_fx,0.0007697138353250921 +steady,sr,193,77.2,force,front_fy,-4.010725973557783e-08 +steady,sr,193,77.2,force,upper_fx,-0.0002626435016281903 +steady,sr,193,77.2,force,upper_fy,0.005838145036250353 +steady,sr,193,77.2,force,lower_fx,-0.00026267298380844295 +steady,sr,193,77.2,force,lower_fy,-0.005838338285684586 +steady,sr,194,77.6,force,front_fx,0.0007701639551669359 +steady,sr,194,77.6,force,front_fy,-9.964751690461071e-09 +steady,sr,194,77.6,force,upper_fx,-0.00026357948081567883 +steady,sr,194,77.6,force,upper_fy,0.00583315035328269 +steady,sr,194,77.6,force,lower_fx,-0.0002642847830429673 +steady,sr,194,77.6,force,lower_fy,-0.005834193434566259 +steady,sr,195,78.0,force,front_fx,0.0007708932389505208 +steady,sr,195,78.0,force,front_fy,-2.562253875737497e-08 +steady,sr,195,78.0,force,upper_fx,-0.00026176817482337356 +steady,sr,195,78.0,force,upper_fy,0.005832091439515352 +steady,sr,195,78.0,force,lower_fx,-0.0002617324935272336 +steady,sr,195,78.0,force,lower_fy,-0.005831816699355841 +steady,sr,196,78.4,force,front_fx,0.0007717746775597334 +steady,sr,196,78.4,force,front_fy,1.9251223193350597e-07 +steady,sr,196,78.4,force,upper_fx,-0.0002590084623079747 +steady,sr,196,78.4,force,upper_fy,0.005834826268255711 +steady,sr,196,78.4,force,lower_fx,-0.0002590458607301116 +steady,sr,196,78.4,force,lower_fy,-0.005834116134792566 +steady,sr,197,78.8,force,front_fx,0.0007722065784037113 +steady,sr,197,78.8,force,front_fy,1.4013494809006488e-09 +steady,sr,197,78.8,force,upper_fx,-0.00025847821962088346 +steady,sr,197,78.8,force,upper_fy,0.005838913377374411 +steady,sr,197,78.8,force,lower_fx,-0.0002583976020105183 +steady,sr,197,78.8,force,lower_fy,-0.005839019548147917 +steady,sr,198,79.2,force,front_fx,0.0007710114005021751 +steady,sr,198,79.2,force,front_fy,-2.6331323965678166e-07 +steady,sr,198,79.2,force,upper_fx,-0.00026076522772200406 +steady,sr,198,79.2,force,upper_fy,0.005839901976287365 +steady,sr,198,79.2,force,lower_fx,-0.00026071834145113826 +steady,sr,198,79.2,force,lower_fy,-0.005839386954903603 +steady,sr,199,79.6,force,front_fx,0.0007697176188230515 +steady,sr,199,79.6,force,front_fy,7.08781442426698e-08 +steady,sr,199,79.6,force,upper_fx,-0.00026333643472753465 +steady,sr,199,79.6,force,upper_fy,0.005835803225636482 +steady,sr,199,79.6,force,lower_fx,-0.00026265173801220953 +steady,sr,199,79.6,force,lower_fy,-0.005834279116243124 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-4.0 +steady,sr,0,0.0,alpha,lower,4.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-4.0 +steady,sr,1,0.4,alpha,lower,4.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-4.0 +steady,sr,2,0.8,alpha,lower,4.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-4.0 +steady,sr,3,1.2,alpha,lower,4.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-4.0 +steady,sr,4,1.6,alpha,lower,4.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-4.0 +steady,sr,5,2.0,alpha,lower,4.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-4.0 +steady,sr,6,2.4,alpha,lower,4.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-4.0 +steady,sr,7,2.8,alpha,lower,4.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-4.0 +steady,sr,8,3.2,alpha,lower,4.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-4.0 +steady,sr,9,3.6,alpha,lower,4.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-4.0 +steady,sr,10,4.0,alpha,lower,4.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-4.0 +steady,sr,11,4.4,alpha,lower,4.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-4.0 +steady,sr,12,4.8,alpha,lower,4.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-4.0 +steady,sr,13,5.2,alpha,lower,4.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-4.0 +steady,sr,14,5.6,alpha,lower,4.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-4.0 +steady,sr,15,6.0,alpha,lower,4.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-4.0 +steady,sr,16,6.4,alpha,lower,4.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-4.0 +steady,sr,17,6.8,alpha,lower,4.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-4.0 +steady,sr,18,7.2,alpha,lower,4.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-4.0 +steady,sr,19,7.6,alpha,lower,4.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-4.0 +steady,sr,20,8.0,alpha,lower,4.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-4.0 +steady,sr,21,8.4,alpha,lower,4.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-4.0 +steady,sr,22,8.8,alpha,lower,4.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-4.0 +steady,sr,23,9.2,alpha,lower,4.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-4.0 +steady,sr,24,9.6,alpha,lower,4.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-4.0 +steady,sr,25,10.0,alpha,lower,4.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-4.0 +steady,sr,26,10.4,alpha,lower,4.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-4.0 +steady,sr,27,10.8,alpha,lower,4.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-4.0 +steady,sr,28,11.2,alpha,lower,4.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-4.0 +steady,sr,29,11.6,alpha,lower,4.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-4.0 +steady,sr,30,12.0,alpha,lower,4.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-4.0 +steady,sr,31,12.4,alpha,lower,4.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-4.0 +steady,sr,32,12.8,alpha,lower,4.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-4.0 +steady,sr,33,13.2,alpha,lower,4.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-4.0 +steady,sr,34,13.6,alpha,lower,4.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-4.0 +steady,sr,35,14.0,alpha,lower,4.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-4.0 +steady,sr,36,14.4,alpha,lower,4.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-4.0 +steady,sr,37,14.8,alpha,lower,4.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-4.0 +steady,sr,38,15.2,alpha,lower,4.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-4.0 +steady,sr,39,15.6,alpha,lower,4.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-4.0 +steady,sr,40,16.0,alpha,lower,4.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-4.0 +steady,sr,41,16.4,alpha,lower,4.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-4.0 +steady,sr,42,16.8,alpha,lower,4.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-4.0 +steady,sr,43,17.2,alpha,lower,4.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-4.0 +steady,sr,44,17.6,alpha,lower,4.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-4.0 +steady,sr,45,18.0,alpha,lower,4.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-4.0 +steady,sr,46,18.4,alpha,lower,4.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-4.0 +steady,sr,47,18.8,alpha,lower,4.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-4.0 +steady,sr,48,19.2,alpha,lower,4.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-4.0 +steady,sr,49,19.6,alpha,lower,4.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-4.0 +steady,sr,50,20.0,alpha,lower,4.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-4.0 +steady,sr,51,20.4,alpha,lower,4.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-4.0 +steady,sr,52,20.8,alpha,lower,4.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-4.0 +steady,sr,53,21.2,alpha,lower,4.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-4.0 +steady,sr,54,21.6,alpha,lower,4.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-4.0 +steady,sr,55,22.0,alpha,lower,4.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-4.0 +steady,sr,56,22.4,alpha,lower,4.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-4.0 +steady,sr,57,22.8,alpha,lower,4.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-4.0 +steady,sr,58,23.2,alpha,lower,4.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-4.0 +steady,sr,59,23.6,alpha,lower,4.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-4.0 +steady,sr,60,24.0,alpha,lower,4.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-4.0 +steady,sr,61,24.4,alpha,lower,4.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-4.0 +steady,sr,62,24.8,alpha,lower,4.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-4.0 +steady,sr,63,25.2,alpha,lower,4.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-4.0 +steady,sr,64,25.6,alpha,lower,4.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-4.0 +steady,sr,65,26.0,alpha,lower,4.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-4.0 +steady,sr,66,26.4,alpha,lower,4.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-4.0 +steady,sr,67,26.8,alpha,lower,4.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-4.0 +steady,sr,68,27.2,alpha,lower,4.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-4.0 +steady,sr,69,27.6,alpha,lower,4.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-4.0 +steady,sr,70,28.0,alpha,lower,4.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-4.0 +steady,sr,71,28.4,alpha,lower,4.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-4.0 +steady,sr,72,28.8,alpha,lower,4.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-4.0 +steady,sr,73,29.2,alpha,lower,4.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-4.0 +steady,sr,74,29.6,alpha,lower,4.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-4.0 +steady,sr,75,30.0,alpha,lower,4.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-4.0 +steady,sr,76,30.4,alpha,lower,4.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-4.0 +steady,sr,77,30.8,alpha,lower,4.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-4.0 +steady,sr,78,31.2,alpha,lower,4.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-4.0 +steady,sr,79,31.6,alpha,lower,4.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-4.0 +steady,sr,80,32.0,alpha,lower,4.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-4.0 +steady,sr,81,32.4,alpha,lower,4.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-4.0 +steady,sr,82,32.8,alpha,lower,4.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-4.0 +steady,sr,83,33.2,alpha,lower,4.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-4.0 +steady,sr,84,33.6,alpha,lower,4.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-4.0 +steady,sr,85,34.0,alpha,lower,4.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-4.0 +steady,sr,86,34.4,alpha,lower,4.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-4.0 +steady,sr,87,34.8,alpha,lower,4.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-4.0 +steady,sr,88,35.2,alpha,lower,4.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-4.0 +steady,sr,89,35.6,alpha,lower,4.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-4.0 +steady,sr,90,36.0,alpha,lower,4.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-4.0 +steady,sr,91,36.4,alpha,lower,4.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-4.0 +steady,sr,92,36.8,alpha,lower,4.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-4.0 +steady,sr,93,37.2,alpha,lower,4.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-4.0 +steady,sr,94,37.6,alpha,lower,4.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-4.0 +steady,sr,95,38.0,alpha,lower,4.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-4.0 +steady,sr,96,38.4,alpha,lower,4.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-4.0 +steady,sr,97,38.8,alpha,lower,4.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-4.0 +steady,sr,98,39.2,alpha,lower,4.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-4.0 +steady,sr,99,39.6,alpha,lower,4.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-4.0 +steady,sr,100,40.0,alpha,lower,4.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-4.0 +steady,sr,101,40.4,alpha,lower,4.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-4.0 +steady,sr,102,40.8,alpha,lower,4.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-4.0 +steady,sr,103,41.2,alpha,lower,4.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-4.0 +steady,sr,104,41.6,alpha,lower,4.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-4.0 +steady,sr,105,42.0,alpha,lower,4.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-4.0 +steady,sr,106,42.4,alpha,lower,4.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-4.0 +steady,sr,107,42.8,alpha,lower,4.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-4.0 +steady,sr,108,43.2,alpha,lower,4.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-4.0 +steady,sr,109,43.6,alpha,lower,4.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-4.0 +steady,sr,110,44.0,alpha,lower,4.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-4.0 +steady,sr,111,44.4,alpha,lower,4.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-4.0 +steady,sr,112,44.8,alpha,lower,4.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-4.0 +steady,sr,113,45.2,alpha,lower,4.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-4.0 +steady,sr,114,45.6,alpha,lower,4.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-4.0 +steady,sr,115,46.0,alpha,lower,4.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-4.0 +steady,sr,116,46.4,alpha,lower,4.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-4.0 +steady,sr,117,46.8,alpha,lower,4.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-4.0 +steady,sr,118,47.2,alpha,lower,4.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-4.0 +steady,sr,119,47.6,alpha,lower,4.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-4.0 +steady,sr,120,48.0,alpha,lower,4.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-4.0 +steady,sr,121,48.4,alpha,lower,4.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-4.0 +steady,sr,122,48.8,alpha,lower,4.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-4.0 +steady,sr,123,49.2,alpha,lower,4.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-4.0 +steady,sr,124,49.6,alpha,lower,4.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-4.0 +steady,sr,125,50.0,alpha,lower,4.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-4.0 +steady,sr,126,50.4,alpha,lower,4.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-4.0 +steady,sr,127,50.8,alpha,lower,4.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-4.0 +steady,sr,128,51.2,alpha,lower,4.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-4.0 +steady,sr,129,51.6,alpha,lower,4.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-4.0 +steady,sr,130,52.0,alpha,lower,4.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-4.0 +steady,sr,131,52.4,alpha,lower,4.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-4.0 +steady,sr,132,52.8,alpha,lower,4.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-4.0 +steady,sr,133,53.2,alpha,lower,4.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-4.0 +steady,sr,134,53.6,alpha,lower,4.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-4.0 +steady,sr,135,54.0,alpha,lower,4.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-4.0 +steady,sr,136,54.4,alpha,lower,4.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-4.0 +steady,sr,137,54.8,alpha,lower,4.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-4.0 +steady,sr,138,55.2,alpha,lower,4.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-4.0 +steady,sr,139,55.6,alpha,lower,4.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-4.0 +steady,sr,140,56.0,alpha,lower,4.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-4.0 +steady,sr,141,56.4,alpha,lower,4.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-4.0 +steady,sr,142,56.8,alpha,lower,4.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-4.0 +steady,sr,143,57.2,alpha,lower,4.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-4.0 +steady,sr,144,57.6,alpha,lower,4.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-4.0 +steady,sr,145,58.0,alpha,lower,4.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-4.0 +steady,sr,146,58.4,alpha,lower,4.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-4.0 +steady,sr,147,58.8,alpha,lower,4.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-4.0 +steady,sr,148,59.2,alpha,lower,4.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-4.0 +steady,sr,149,59.6,alpha,lower,4.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-4.0 +steady,sr,150,60.0,alpha,lower,4.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-4.0 +steady,sr,151,60.4,alpha,lower,4.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-4.0 +steady,sr,152,60.8,alpha,lower,4.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-4.0 +steady,sr,153,61.2,alpha,lower,4.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-4.0 +steady,sr,154,61.6,alpha,lower,4.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-4.0 +steady,sr,155,62.0,alpha,lower,4.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-4.0 +steady,sr,156,62.4,alpha,lower,4.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-4.0 +steady,sr,157,62.8,alpha,lower,4.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-4.0 +steady,sr,158,63.2,alpha,lower,4.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-4.0 +steady,sr,159,63.6,alpha,lower,4.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-4.0 +steady,sr,160,64.0,alpha,lower,4.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-4.0 +steady,sr,161,64.4,alpha,lower,4.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-4.0 +steady,sr,162,64.8,alpha,lower,4.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-4.0 +steady,sr,163,65.2,alpha,lower,4.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-4.0 +steady,sr,164,65.6,alpha,lower,4.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-4.0 +steady,sr,165,66.0,alpha,lower,4.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-4.0 +steady,sr,166,66.4,alpha,lower,4.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-4.0 +steady,sr,167,66.8,alpha,lower,4.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-4.0 +steady,sr,168,67.2,alpha,lower,4.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-4.0 +steady,sr,169,67.6,alpha,lower,4.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-4.0 +steady,sr,170,68.0,alpha,lower,4.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-4.0 +steady,sr,171,68.4,alpha,lower,4.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-4.0 +steady,sr,172,68.8,alpha,lower,4.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-4.0 +steady,sr,173,69.2,alpha,lower,4.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-4.0 +steady,sr,174,69.6,alpha,lower,4.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-4.0 +steady,sr,175,70.0,alpha,lower,4.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-4.0 +steady,sr,176,70.4,alpha,lower,4.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-4.0 +steady,sr,177,70.8,alpha,lower,4.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-4.0 +steady,sr,178,71.2,alpha,lower,4.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-4.0 +steady,sr,179,71.6,alpha,lower,4.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-4.0 +steady,sr,180,72.0,alpha,lower,4.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-4.0 +steady,sr,181,72.4,alpha,lower,4.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-4.0 +steady,sr,182,72.8,alpha,lower,4.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-4.0 +steady,sr,183,73.2,alpha,lower,4.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-4.0 +steady,sr,184,73.6,alpha,lower,4.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-4.0 +steady,sr,185,74.0,alpha,lower,4.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-4.0 +steady,sr,186,74.4,alpha,lower,4.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-4.0 +steady,sr,187,74.8,alpha,lower,4.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-4.0 +steady,sr,188,75.2,alpha,lower,4.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-4.0 +steady,sr,189,75.6,alpha,lower,4.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-4.0 +steady,sr,190,76.0,alpha,lower,4.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-4.0 +steady,sr,191,76.4,alpha,lower,4.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-4.0 +steady,sr,192,76.8,alpha,lower,4.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-4.0 +steady,sr,193,77.2,alpha,lower,4.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-4.0 +steady,sr,194,77.6,alpha,lower,4.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-4.0 +steady,sr,195,78.0,alpha,lower,4.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-4.0 +steady,sr,196,78.4,alpha,lower,4.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-4.0 +steady,sr,197,78.8,alpha,lower,4.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-4.0 +steady,sr,198,79.2,alpha,lower,4.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-4.0 +steady,sr,199,79.6,alpha,lower,4.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.04 +steady,sr,0,0.0,omega,lower,0.04 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.04 +steady,sr,1,0.4,omega,lower,0.04 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.04 +steady,sr,2,0.8,omega,lower,0.04 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.04 +steady,sr,3,1.2,omega,lower,0.04 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.04 +steady,sr,4,1.6,omega,lower,0.04 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.04 +steady,sr,5,2.0,omega,lower,0.04 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.04 +steady,sr,6,2.4,omega,lower,0.04 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.04 +steady,sr,7,2.8,omega,lower,0.04 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.04 +steady,sr,8,3.2,omega,lower,0.04 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.04 +steady,sr,9,3.6,omega,lower,0.04 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.04 +steady,sr,10,4.0,omega,lower,0.04 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.04 +steady,sr,11,4.4,omega,lower,0.04 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.04 +steady,sr,12,4.8,omega,lower,0.04 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.04 +steady,sr,13,5.2,omega,lower,0.04 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.04 +steady,sr,14,5.6,omega,lower,0.04 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.04 +steady,sr,15,6.0,omega,lower,0.04 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.04 +steady,sr,16,6.4,omega,lower,0.04 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.04 +steady,sr,17,6.8,omega,lower,0.04 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.04 +steady,sr,18,7.2,omega,lower,0.04 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.04 +steady,sr,19,7.6,omega,lower,0.04 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.04 +steady,sr,20,8.0,omega,lower,0.04 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.04 +steady,sr,21,8.4,omega,lower,0.04 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.04 +steady,sr,22,8.8,omega,lower,0.04 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.04 +steady,sr,23,9.2,omega,lower,0.04 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.04 +steady,sr,24,9.6,omega,lower,0.04 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.04 +steady,sr,25,10.0,omega,lower,0.04 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.04 +steady,sr,26,10.4,omega,lower,0.04 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.04 +steady,sr,27,10.8,omega,lower,0.04 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.04 +steady,sr,28,11.2,omega,lower,0.04 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.04 +steady,sr,29,11.6,omega,lower,0.04 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.04 +steady,sr,30,12.0,omega,lower,0.04 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.04 +steady,sr,31,12.4,omega,lower,0.04 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.04 +steady,sr,32,12.8,omega,lower,0.04 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.04 +steady,sr,33,13.2,omega,lower,0.04 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.04 +steady,sr,34,13.6,omega,lower,0.04 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.04 +steady,sr,35,14.0,omega,lower,0.04 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.04 +steady,sr,36,14.4,omega,lower,0.04 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.04 +steady,sr,37,14.8,omega,lower,0.04 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.04 +steady,sr,38,15.2,omega,lower,0.04 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.04 +steady,sr,39,15.6,omega,lower,0.04 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.04 +steady,sr,40,16.0,omega,lower,0.04 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.04 +steady,sr,41,16.4,omega,lower,0.04 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.04 +steady,sr,42,16.8,omega,lower,0.04 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.04 +steady,sr,43,17.2,omega,lower,0.04 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.04 +steady,sr,44,17.6,omega,lower,0.04 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.04 +steady,sr,45,18.0,omega,lower,0.04 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.04 +steady,sr,46,18.4,omega,lower,0.04 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.04 +steady,sr,47,18.8,omega,lower,0.04 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.04 +steady,sr,48,19.2,omega,lower,0.04 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.04 +steady,sr,49,19.6,omega,lower,0.04 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.04 +steady,sr,50,20.0,omega,lower,0.04 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.04 +steady,sr,51,20.4,omega,lower,0.04 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.04 +steady,sr,52,20.8,omega,lower,0.04 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.04 +steady,sr,53,21.2,omega,lower,0.04 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.04 +steady,sr,54,21.6,omega,lower,0.04 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.04 +steady,sr,55,22.0,omega,lower,0.04 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.04 +steady,sr,56,22.4,omega,lower,0.04 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.04 +steady,sr,57,22.8,omega,lower,0.04 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.04 +steady,sr,58,23.2,omega,lower,0.04 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.04 +steady,sr,59,23.6,omega,lower,0.04 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.04 +steady,sr,60,24.0,omega,lower,0.04 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.04 +steady,sr,61,24.4,omega,lower,0.04 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.04 +steady,sr,62,24.8,omega,lower,0.04 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.04 +steady,sr,63,25.2,omega,lower,0.04 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.04 +steady,sr,64,25.6,omega,lower,0.04 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.04 +steady,sr,65,26.0,omega,lower,0.04 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.04 +steady,sr,66,26.4,omega,lower,0.04 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.04 +steady,sr,67,26.8,omega,lower,0.04 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.04 +steady,sr,68,27.2,omega,lower,0.04 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.04 +steady,sr,69,27.6,omega,lower,0.04 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.04 +steady,sr,70,28.0,omega,lower,0.04 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.04 +steady,sr,71,28.4,omega,lower,0.04 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.04 +steady,sr,72,28.8,omega,lower,0.04 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.04 +steady,sr,73,29.2,omega,lower,0.04 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.04 +steady,sr,74,29.6,omega,lower,0.04 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.04 +steady,sr,75,30.0,omega,lower,0.04 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.04 +steady,sr,76,30.4,omega,lower,0.04 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.04 +steady,sr,77,30.8,omega,lower,0.04 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.04 +steady,sr,78,31.2,omega,lower,0.04 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.04 +steady,sr,79,31.6,omega,lower,0.04 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.04 +steady,sr,80,32.0,omega,lower,0.04 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.04 +steady,sr,81,32.4,omega,lower,0.04 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.04 +steady,sr,82,32.8,omega,lower,0.04 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.04 +steady,sr,83,33.2,omega,lower,0.04 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.04 +steady,sr,84,33.6,omega,lower,0.04 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.04 +steady,sr,85,34.0,omega,lower,0.04 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.04 +steady,sr,86,34.4,omega,lower,0.04 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.04 +steady,sr,87,34.8,omega,lower,0.04 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.04 +steady,sr,88,35.2,omega,lower,0.04 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.04 +steady,sr,89,35.6,omega,lower,0.04 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.04 +steady,sr,90,36.0,omega,lower,0.04 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.04 +steady,sr,91,36.4,omega,lower,0.04 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.04 +steady,sr,92,36.8,omega,lower,0.04 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.04 +steady,sr,93,37.2,omega,lower,0.04 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.04 +steady,sr,94,37.6,omega,lower,0.04 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.04 +steady,sr,95,38.0,omega,lower,0.04 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.04 +steady,sr,96,38.4,omega,lower,0.04 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.04 +steady,sr,97,38.8,omega,lower,0.04 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.04 +steady,sr,98,39.2,omega,lower,0.04 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.04 +steady,sr,99,39.6,omega,lower,0.04 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.04 +steady,sr,100,40.0,omega,lower,0.04 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.04 +steady,sr,101,40.4,omega,lower,0.04 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.04 +steady,sr,102,40.8,omega,lower,0.04 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.04 +steady,sr,103,41.2,omega,lower,0.04 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.04 +steady,sr,104,41.6,omega,lower,0.04 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.04 +steady,sr,105,42.0,omega,lower,0.04 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.04 +steady,sr,106,42.4,omega,lower,0.04 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.04 +steady,sr,107,42.8,omega,lower,0.04 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.04 +steady,sr,108,43.2,omega,lower,0.04 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.04 +steady,sr,109,43.6,omega,lower,0.04 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.04 +steady,sr,110,44.0,omega,lower,0.04 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.04 +steady,sr,111,44.4,omega,lower,0.04 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.04 +steady,sr,112,44.8,omega,lower,0.04 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.04 +steady,sr,113,45.2,omega,lower,0.04 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.04 +steady,sr,114,45.6,omega,lower,0.04 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.04 +steady,sr,115,46.0,omega,lower,0.04 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.04 +steady,sr,116,46.4,omega,lower,0.04 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.04 +steady,sr,117,46.8,omega,lower,0.04 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.04 +steady,sr,118,47.2,omega,lower,0.04 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.04 +steady,sr,119,47.6,omega,lower,0.04 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.04 +steady,sr,120,48.0,omega,lower,0.04 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.04 +steady,sr,121,48.4,omega,lower,0.04 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.04 +steady,sr,122,48.8,omega,lower,0.04 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.04 +steady,sr,123,49.2,omega,lower,0.04 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.04 +steady,sr,124,49.6,omega,lower,0.04 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.04 +steady,sr,125,50.0,omega,lower,0.04 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.04 +steady,sr,126,50.4,omega,lower,0.04 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.04 +steady,sr,127,50.8,omega,lower,0.04 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.04 +steady,sr,128,51.2,omega,lower,0.04 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.04 +steady,sr,129,51.6,omega,lower,0.04 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.04 +steady,sr,130,52.0,omega,lower,0.04 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.04 +steady,sr,131,52.4,omega,lower,0.04 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.04 +steady,sr,132,52.8,omega,lower,0.04 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.04 +steady,sr,133,53.2,omega,lower,0.04 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.04 +steady,sr,134,53.6,omega,lower,0.04 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.04 +steady,sr,135,54.0,omega,lower,0.04 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.04 +steady,sr,136,54.4,omega,lower,0.04 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.04 +steady,sr,137,54.8,omega,lower,0.04 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.04 +steady,sr,138,55.2,omega,lower,0.04 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.04 +steady,sr,139,55.6,omega,lower,0.04 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.04 +steady,sr,140,56.0,omega,lower,0.04 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.04 +steady,sr,141,56.4,omega,lower,0.04 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.04 +steady,sr,142,56.8,omega,lower,0.04 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.04 +steady,sr,143,57.2,omega,lower,0.04 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.04 +steady,sr,144,57.6,omega,lower,0.04 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.04 +steady,sr,145,58.0,omega,lower,0.04 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.04 +steady,sr,146,58.4,omega,lower,0.04 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.04 +steady,sr,147,58.8,omega,lower,0.04 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.04 +steady,sr,148,59.2,omega,lower,0.04 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.04 +steady,sr,149,59.6,omega,lower,0.04 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.04 +steady,sr,150,60.0,omega,lower,0.04 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.04 +steady,sr,151,60.4,omega,lower,0.04 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.04 +steady,sr,152,60.8,omega,lower,0.04 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.04 +steady,sr,153,61.2,omega,lower,0.04 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.04 +steady,sr,154,61.6,omega,lower,0.04 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.04 +steady,sr,155,62.0,omega,lower,0.04 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.04 +steady,sr,156,62.4,omega,lower,0.04 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.04 +steady,sr,157,62.8,omega,lower,0.04 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.04 +steady,sr,158,63.2,omega,lower,0.04 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.04 +steady,sr,159,63.6,omega,lower,0.04 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.04 +steady,sr,160,64.0,omega,lower,0.04 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.04 +steady,sr,161,64.4,omega,lower,0.04 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.04 +steady,sr,162,64.8,omega,lower,0.04 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.04 +steady,sr,163,65.2,omega,lower,0.04 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.04 +steady,sr,164,65.6,omega,lower,0.04 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.04 +steady,sr,165,66.0,omega,lower,0.04 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.04 +steady,sr,166,66.4,omega,lower,0.04 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.04 +steady,sr,167,66.8,omega,lower,0.04 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.04 +steady,sr,168,67.2,omega,lower,0.04 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.04 +steady,sr,169,67.6,omega,lower,0.04 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.04 +steady,sr,170,68.0,omega,lower,0.04 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.04 +steady,sr,171,68.4,omega,lower,0.04 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.04 +steady,sr,172,68.8,omega,lower,0.04 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.04 +steady,sr,173,69.2,omega,lower,0.04 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.04 +steady,sr,174,69.6,omega,lower,0.04 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.04 +steady,sr,175,70.0,omega,lower,0.04 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.04 +steady,sr,176,70.4,omega,lower,0.04 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.04 +steady,sr,177,70.8,omega,lower,0.04 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.04 +steady,sr,178,71.2,omega,lower,0.04 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.04 +steady,sr,179,71.6,omega,lower,0.04 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.04 +steady,sr,180,72.0,omega,lower,0.04 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.04 +steady,sr,181,72.4,omega,lower,0.04 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.04 +steady,sr,182,72.8,omega,lower,0.04 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.04 +steady,sr,183,73.2,omega,lower,0.04 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.04 +steady,sr,184,73.6,omega,lower,0.04 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.04 +steady,sr,185,74.0,omega,lower,0.04 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.04 +steady,sr,186,74.4,omega,lower,0.04 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.04 +steady,sr,187,74.8,omega,lower,0.04 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.04 +steady,sr,188,75.2,omega,lower,0.04 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.04 +steady,sr,189,75.6,omega,lower,0.04 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.04 +steady,sr,190,76.0,omega,lower,0.04 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.04 +steady,sr,191,76.4,omega,lower,0.04 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.04 +steady,sr,192,76.8,omega,lower,0.04 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.04 +steady,sr,193,77.2,omega,lower,0.04 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.04 +steady,sr,194,77.6,omega,lower,0.04 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.04 +steady,sr,195,78.0,omega,lower,0.04 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.04 +steady,sr,196,78.4,omega,lower,0.04 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.04 +steady,sr,197,78.8,omega,lower,0.04 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.04 +steady,sr,198,79.2,omega,lower,0.04 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.04 +steady,sr,199,79.6,omega,lower,0.04 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_manifest.json new file mode 100644 index 0000000..1aaac91 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a4-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_wide.csv new file mode 100644 index 0000000..9e92c3b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.1185922622680664,-0.014652044512331486,1.0866903066635132,4.2027575545944273e-05,1.118560791015625,0.014737102203071117,0.0007702608127146959,-2.4090695660561323e-07,-0.00026421286747790873,0.005826100241392851,-0.0002583624445833266,-0.005821987986564636,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,1,0.4,1.1185925006866455,-0.01465823408216238,1.0867060422897339,3.750972609850578e-05,1.1185622215270996,0.014733662828803062,0.0007740825531072915,1.8702802151437936e-07,-0.0002572694211266935,0.005831676535308361,-0.0002564504975453019,-0.005832193419337273,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,2,0.8,1.118827223777771,-0.014658845961093903,1.086946964263916,4.069640635862015e-05,1.1188011169433594,0.014739496633410454,0.0007727239863015711,1.9198752454485657e-07,-0.00025582819944247603,0.005842843558639288,-0.0002549423079472035,-0.0058431802317500114,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,3,1.2,1.1191803216934204,-0.014666683971881866,1.087290644645691,3.784281216212548e-05,1.1191531419754028,0.014741922728717327,0.0007715747342444956,-8.343908319830007e-08,-0.00025948983966372907,0.00584489107131958,-0.0002588184142950922,-0.005845718551427126,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,4,1.6,1.1187829971313477,-0.014666948467493057,1.0868812799453735,3.727502189576626e-05,1.1187576055526733,0.014741428196430206,0.0007696936372667551,-8.61673488117276e-09,-0.00026457960484549403,0.00583941163495183,-0.00026651055668480694,-0.005838853772729635,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,5,2.0,1.118552565574646,-0.014661390334367752,1.0866492986679077,3.7313242501113564e-05,1.118526816368103,0.014736312441527843,0.0007678468246012926,-8.290424347023873e-08,-0.0002670560497790575,0.005828029941767454,-0.00026631640503183007,-0.005828754976391792,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,6,2.4,1.118585467338562,-0.014661493711173534,1.0866962671279907,3.339452086947858e-05,1.1185632944107056,0.014729085378348827,0.0007715171086601913,-4.734232916803194e-08,-0.000261697918176651,0.0058274720795452595,-0.0002609312650747597,-0.005827799439430237,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,7,2.8,1.1185715198516846,-0.014657605439424515,1.0866941213607788,3.599021874833852e-05,1.1185470819473267,0.014730993658304214,0.0007743819151073694,2.9244548116480473e-08,-0.0002554832899477333,0.005836975760757923,-0.00025469070533290505,-0.0058374954387545586,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,8,3.2,1.1190731525421143,-0.014665809459984303,1.087194561958313,2.9790051485178992e-05,1.1190515756607056,0.014727482572197914,0.0007723064627498388,-2.0132857159183004e-08,-0.00025707733584567904,0.005844558589160442,-0.0002569833304733038,-0.00584552763029933,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,9,3.6,1.1190775632858276,-0.014662754721939564,1.0871843099594116,3.4955253795487806e-05,1.1190521717071533,0.014733782038092613,0.0007705911411903799,4.5576820184578537e-07,-0.0002621212333906442,0.005842918064445257,-0.00026190257631242275,-0.005843949504196644,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,10,4.0,1.1185569763183594,-0.014666061848402023,1.0866543054580688,2.8416923669283278e-05,1.1185330152511597,0.014724106527864933,0.0007678003748878837,-2.6271587216797343e-07,-0.00026726743089966476,0.005833763629198074,-0.00026682636234909296,-0.005834349896758795,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,11,4.4,1.118585228919983,-0.014657949097454548,1.0866894721984863,3.3609925594646484e-05,1.1185603141784668,0.01472595613449812,0.0007699701236560941,5.610912978681881e-08,-0.00026469750446267426,0.005826572887599468,-0.00026404194068163633,-0.005826298147439957,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,12,4.8,1.1185657978057861,-0.014663143083453178,1.0866844654083252,2.789069367281627e-05,1.1185466051101685,0.014720556326210499,0.0007735482067801058,1.5717978385509923e-07,-0.00025824844487942755,0.005830851849168539,-0.00025782178272493184,-0.005831314716488123,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,13,5.2,1.1187442541122437,-0.01466302014887333,1.086868405342102,3.0909028282621875e-05,1.1187204122543335,0.014726579189300537,0.0007729674689471722,8.724353506295301e-08,-0.00025563567760400474,0.005841245874762535,-0.00025536303292028606,-0.005841935984790325,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,14,5.6,1.1191378831863403,-0.014670232310891151,1.087257742881775,2.8102847863920033e-05,1.1191201210021973,0.014727574773132801,0.0007720307912677526,-7.43470991437789e-08,-0.00025878974702209234,0.005844657309353352,-0.00025839247973635793,-0.005845093168318272,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,15,6.0,1.1188232898712158,-0.01467019785195589,1.0869290828704834,2.89124836854171e-05,1.1188045740127563,0.014728182926774025,0.0007696850807406008,2.2562598900321973e-08,-0.000264481408521533,0.0058395834639668465,-0.00026408012490719557,-0.005839897319674492,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,16,6.4,1.118550181388855,-0.014665287919342518,1.0866514444351196,2.8952437787665986e-05,1.1185284852981567,0.014722773805260658,0.0007676130044274032,-6.400972552000894e-08,-0.00026714810519479215,0.005829302128404379,-0.0002666768559720367,-0.0058302306570112705,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,17,6.8,1.1185694932937622,-0.014663657173514366,1.0866810083389282,2.7006957679986954e-05,1.1185486316680908,0.01471676491200924,0.0007711337530054152,1.2621629252862476e-07,-0.00026214102399535477,0.005827164277434349,-0.00026013777824118733,-0.005827700719237328,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,18,7.2,1.1185328960418701,-0.014660835266113281,1.0866566896438599,2.9071532480884343e-05,1.1185117959976196,0.0147177092730999,0.000774302170611918,-7.744336727455448e-08,-0.000256195169640705,0.005835406947880983,-0.00025588623248040676,-0.005837734322994947,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,19,7.6,1.1189942359924316,-0.014666169881820679,1.0871163606643677,2.4818173187668435e-05,1.1189754009246826,0.014715594239532948,0.0007723051239736378,-6.33881782619028e-08,-0.0002566977927926928,0.0058436645194888115,-0.00025637217913754284,-0.005844044499099255,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,20,8.0,1.119066834449768,-0.014666109345853329,1.0871782302856445,2.6881269150180742e-05,1.1190510988235474,0.014720790088176727,0.0007710384670644999,-7.71658932308128e-08,-0.00026113950298167765,0.00584424426779151,-0.00026066257851198316,-0.005843907594680786,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,21,8.4,1.1185822486877441,-0.014667754992842674,1.086686134338379,2.253952516184654e-05,1.1185672283172607,0.014714720658957958,0.0007681759307160974,6.934573093531071e-08,-0.00026654035900719464,0.005835224408656359,-0.0002669689420145005,-0.00583634153008461,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,22,8.8,1.1185784339904785,-0.014662222936749458,1.086683750152588,2.5107652618316934e-05,1.1185606718063354,0.014713560231029987,0.0007695244275964797,3.056920760968751e-08,-0.0002651766699273139,0.005827365908771753,-0.00026497594080865383,-0.00582762761041522,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,23,9.2,1.1185462474822998,-0.014664733782410622,1.0866632461547852,2.286649396410212e-05,1.1185282468795776,0.01471049152314663,0.0007729472708888352,3.843708284989589e-08,-0.00025914341676980257,0.005829765927046537,-0.0002588295319583267,-0.005830045789480209,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,24,9.6,1.1186643838882446,-0.014666005037724972,1.086790919303894,2.344861422898248e-05,1.1186492443084717,0.014712457545101643,0.0007731646182946861,1.2357052980860317e-07,-0.00025571489823050797,0.005840045865625143,-0.00025538186309859157,-0.005839386023581028,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,25,10.0,1.1190946102142334,-0.014670545235276222,1.0872139930725098,2.3103561034076847e-05,1.1190801858901978,0.014716411009430885,0.0007721145520918071,-1.0611940837179645e-07,-0.0002581658773124218,0.005844343453645706,-0.00025807382189668715,-0.005844701547175646,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,26,10.4,1.118852972984314,-0.014673404395580292,1.0869598388671875,2.0932708139298484e-05,1.1188386678695679,0.0147146200761199,0.0007702993461862206,-2.5055269858853535e-08,-0.00026344144134782255,0.005840580444782972,-0.0002632447867654264,-0.005839950405061245,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,27,10.8,1.1185458898544312,-0.01466676127165556,1.0866498947143555,2.2990079742157832e-05,1.1185327768325806,0.01471185777336359,0.000767442281357944,4.3084437351126326e-08,-0.0002670327667146921,0.005830688402056694,-0.0002674433053471148,-0.005831823218613863,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,28,11.2,1.1185557842254639,-0.014666927978396416,1.0866683721542358,1.8640961570781656e-05,1.118540644645691,0.014703851193189621,0.0007708118646405637,7.602189810995696e-08,-0.00026270505622960627,0.005827116779983044,-0.0002626097702886909,-0.00582774356007576,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,29,11.6,1.118499755859375,-0.014662261120975018,1.086625576019287,2.169201798096765e-05,1.1184883117675781,0.014705810695886612,0.0007740227738395333,-1.304719265959875e-08,-0.00025671717594377697,0.005833897739648819,-0.0002563944144640118,-0.005834508687257767,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,30,12.0,1.118914008140564,-0.014669022522866726,1.087040662765503,1.6355706975446083e-05,1.118901252746582,0.014702653512358665,0.0007723282906226814,-6.619247727712718e-08,-0.00025657747755758464,0.005842501297593117,-0.0002564293972682208,-0.005843179300427437,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,31,12.4,1.1190519332885742,-0.014668469317257404,1.0871686935424805,1.9945644453400746e-05,1.1190413236618042,0.014708583243191242,0.0007712758961133659,3.513741830829531e-08,-0.0002603805623948574,0.0058433725498616695,-0.0002602808235678822,-0.005843956023454666,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,32,12.8,1.1186140775680542,-0.014671498909592628,1.0867199897766113,1.6108548152260482e-05,1.1186012029647827,0.01470367331057787,0.0007685537566430867,-4.43783164882916e-07,-0.0002658807497937232,0.005836480297148228,-0.00026565324515104294,-0.005836949218064547,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,33,13.2,1.11857271194458,-0.014666145667433739,1.0866804122924805,1.8332106265006587e-05,1.1185615062713623,0.014702503569424152,0.0007691102218814194,1.542871927995293e-07,-0.00026543447165749967,0.0058282590471208096,-0.0002658173907548189,-0.005827916786074638,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,34,13.6,1.118525505065918,-0.014667213894426823,1.086647629737854,1.6339827197953127e-05,1.1185178756713867,0.014699270948767662,0.0007722853333689272,-1.8990158423548564e-07,-0.00026005483232438564,0.005829252768307924,-0.000260119850281626,-0.005828545894473791,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,35,14.0,1.1185957193374634,-0.01466905977576971,1.0867259502410889,1.595193680259399e-05,1.1185884475708008,0.014700327068567276,0.0007732855738140643,9.521600397022212e-09,-0.0002559241547714919,0.0058384062722325325,-0.0002559589338488877,-0.005838898476213217,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,36,14.4,1.1190434694290161,-0.014672107994556427,1.0871683359146118,1.613731546967756e-05,1.119036078453064,0.014704440720379353,0.0007723912131041288,-7.367670917801661e-09,-0.00025775504764169455,0.005843790248036385,-0.0002575207327026874,-0.005843392573297024,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,37,14.8,1.1188751459121704,-0.01467597484588623,1.0869874954223633,1.3115821275277995e-05,1.1188685894012451,0.01470251102000475,0.0007704666932113469,5.04567481129925e-08,-0.00026249399525113404,0.005841381382197142,-0.0002625063934829086,-0.005841640289872885,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,38,15.2,1.1185473203659058,-0.014668925665318966,1.086654543876648,1.5659925338695757e-05,1.11854088306427,0.014700349420309067,0.0007676721434108913,1.0575895714737271e-08,-0.0002667618973646313,0.005832061171531677,-0.00026665168115869164,-0.005832264199852943,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,39,15.6,1.1185476779937744,-0.014669624157249928,1.0866628885269165,1.0819692761288024e-05,1.118542194366455,0.014691471122205257,0.000770371058024466,-1.232489044156182e-08,-0.00026337263989262283,0.005827388260513544,-0.00026328759850002825,-0.005827457178384066,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,40,16.0,1.1184756755828857,-0.014664747752249241,1.0866044759750366,1.3945860700914636e-05,1.1184680461883545,0.01469346322119236,0.0007736352272331715,-1.7399724994149324e-09,-0.00025763773010112345,0.00583257433027029,-0.0002572676457930356,-0.005834666080772877,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,41,16.4,1.1188344955444336,-0.01467137224972248,1.0869648456573486,8.357585102203302e-06,1.11882746219635,0.014690165407955647,0.0007724612951278687,-5.7866827773978e-08,-0.00025633673067204654,0.005841366481035948,-0.00025632375036366284,-0.005841734819114208,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,42,16.8,1.1190325021743774,-0.014671665616333485,1.0871546268463135,1.1224062291148584e-05,1.119024395942688,0.014696705155074596,0.0007716767722740769,7.713401117825924e-08,-0.0002597553248051554,0.005843587685376406,-0.00025951789575628936,-0.005843447986990213,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,43,17.2,1.1186450719833374,-0.014674565754830837,1.0867571830749512,7.511711828556145e-06,1.1186397075653076,0.014692498371005058,0.0007690662750974298,-1.2095841839254717e-07,-0.00026492730830796063,0.005837663542479277,-0.00026489392621442676,-0.00583762489259243,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,44,17.6,1.1185733079910278,-0.014670010656118393,1.0866824388504028,1.0015201041824184e-05,1.1185665130615234,0.014691781252622604,0.000768862955737859,1.4792967739651885e-08,-0.0002656654396560043,0.0058290292508900166,-0.00026550027541816235,-0.005829037632793188,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,45,18.0,1.118518590927124,-0.014670087955892086,1.0866382122039795,8.999620149552356e-06,1.1185123920440674,0.014688990078866482,0.0007717726402916014,-2.3166234086602344e-07,-0.0002608569629956037,0.005828642752021551,-0.00026069156592711806,-0.005828970577567816,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,46,18.4,1.1185444593429565,-0.014670709148049355,1.086674690246582,9.639878953748848e-06,1.1185376644134521,0.014689327217638493,0.0007730934303253889,1.5295663047254493e-07,-0.0002564723836258054,0.005837110336869955,-0.00025637855287641287,-0.005837155971676111,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,47,18.8,1.1189942359924316,-0.014673391357064247,1.0871223211288452,1.0635814760462381e-05,1.1189874410629272,0.014693724922835827,0.0007724384777247906,-8.743794666088434e-08,-0.00025738112162798643,0.005843033082783222,-0.00025745670427568257,-0.005843107122927904,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,48,19.2,1.1188985109329224,-0.014676707796752453,1.0870121717453003,9.238282473233994e-06,1.1188914775848389,0.014692800119519234,0.0007709324127063155,-1.4223551225711617e-08,-0.00026176709798164666,0.0058416943065822124,-0.00026173144578933716,-0.005841927137225866,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,49,19.6,1.1185601949691772,-0.014670615084469318,1.086668848991394,1.1304193321848288e-05,1.118556022644043,0.014691298827528954,0.0007678820402361453,-7.82691529366275e-08,-0.00026651800726540387,0.005833434406667948,-0.00026627088664099574,-0.005833504721522331,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,50,20.0,1.1185498237609863,-0.014669729396700859,1.086664080619812,7.425112471537432e-06,1.1185452938079834,0.014683883637189865,0.0007702267030254006,-6.08238792665361e-08,-0.0002638018049765378,0.00582849932834506,-0.00026371199055574834,-0.005827942863106728,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,51,20.4,1.1184606552124023,-0.014666233211755753,1.0865899324417114,9.027829946717247e-06,1.1184577941894531,0.014684638008475304,0.0007732813828624785,1.4096745815095346e-07,-0.0002582866291049868,0.005831900984048843,-0.0002581452135927975,-0.005831860471516848,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,52,20.8,1.1187645196914673,-0.014670324511826038,1.0868946313858032,5.518195848708274e-06,1.1187610626220703,0.01468266174197197,0.0007725481409579515,3.506472978642705e-08,-0.00025639968225732446,0.005840316414833069,-0.0002563878078944981,-0.0058404249139130116,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,53,21.2,1.119011640548706,-0.014672485180199146,1.0871360301971436,6.831953214714304e-06,1.1190086603164673,0.014687580987811089,0.0007717091357335448,2.5368844802642343e-08,-0.00025918250321410596,0.005843363236635923,-0.00025905788061209023,-0.005843537859618664,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,54,21.6,1.1186814308166504,-0.014674404636025429,1.086794137954712,5.707062882720493e-06,1.1186786890029907,0.014686997048556805,0.0007695660460740328,-2.5519657498307424e-08,-0.0002641309692990035,0.005839556455612183,-0.0002641128667164594,-0.0058389646001160145,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,55,22.0,1.118576169013977,-0.01467184443026781,1.0866891145706177,5.865344974154141e-06,1.1185740232467651,0.014683966524899006,0.0007685742457397282,-9.9371447959129e-08,-0.00026585932937450707,0.00583000248298049,-0.0002664990024641156,-0.0058307945728302,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,56,22.4,1.1185153722763062,-0.014669548720121384,1.0866343975067139,7.153271781135118e-06,1.1185128688812256,0.01468324102461338,0.0007713657687418163,-1.7063001678252476e-07,-0.0002616272249724716,0.005828637629747391,-0.00026146453456021845,-0.005828723777085543,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,57,22.8,1.1185016632080078,-0.014671999961137772,1.0866299867630005,5.314067038852954e-06,1.1184985637664795,0.01468136440962553,0.0007730024517513812,-1.7308629196577385e-08,-0.00025696304510347545,0.005835785064846277,-0.00025687189190648496,-0.005835817661136389,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,58,23.2,1.1189450025558472,-0.014672432094812393,1.0870720148086548,7.279269539139932e-06,1.118942141532898,0.01468647737056017,0.0007725578616373241,1.3040735780123214e-07,-0.0002571718650870025,0.005842306651175022,-0.00025699727120809257,-0.005842498503625393,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,59,23.6,1.118909478187561,-0.014677510596811771,1.087028980255127,2.8803060558857396e-06,1.1189072132110596,0.014684362336993217,0.0007711438229307532,5.565971239462897e-09,-0.0002610048686619848,0.005842097569257021,-0.00026099319802597165,-0.005842164158821106,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,60,24.0,1.1185773611068726,-0.014671176671981812,1.0866882801055908,6.207249953149585e-06,1.1185755729675293,0.014684442430734634,0.0007680744747631252,-3.6966184779885225e-08,-0.00026615653769113123,0.005834775976836681,-0.0002659655874595046,-0.005835671443492174,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,61,24.4,1.118557095527649,-0.014671571552753448,1.0866724252700806,2.2335643734550104e-06,1.1185564994812012,0.014676624909043312,0.0007699794950895011,-1.935854214707433e-07,-0.00026423102826811373,0.005828338675200939,-0.00026399182388558984,-0.005828486289829016,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,62,24.8,1.118458867073059,-0.01466686837375164,1.086584448814392,5.706025604013121e-06,1.1184566020965576,0.014678377658128738,0.0007728600758127868,3.074674070902006e-09,-0.00025926620583049953,0.0058311293832957745,-0.0002588963834568858,-0.00583134638145566,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,63,25.2,1.1186999082565308,-0.014671065844595432,1.0868291854858398,2.7142828002979513e-06,1.118698000907898,0.014676565304398537,0.0007726147305220366,-4.409121245885217e-08,-0.00025657808873802423,0.005839304532855749,-0.0002564592577982694,-0.005839227233082056,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,64,25.6,1.1189897060394287,-0.014673417434096336,1.087113857269287,4.539303063211264e-06,1.118989109992981,0.01468203030526638,0.0007719181012362242,3.3867203796944523e-07,-0.00025873800041154027,0.005843035411089659,-0.0002586625050753355,-0.005843309219926596,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,65,26.0,1.118715763092041,-0.014675859361886978,1.0868297815322876,2.953808916572598e-06,1.1187151670455933,0.01468169130384922,0.0007700970745645463,-7.77148514430337e-08,-0.0002633742697071284,0.005839562509208918,-0.0002632909454405308,-0.005839827004820108,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,66,26.4,1.1185860633850098,-0.014673796482384205,1.0866978168487549,2.5726935746206436e-06,1.118585467338562,0.01467898953706026,0.0007683061994612217,2.2025851365015114e-07,-0.0002655263524502516,0.005831375252455473,-0.00026572225033305585,-0.005830835085362196,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,67,26.8,1.1185189485549927,-0.014671889133751392,1.0866373777389526,2.7140026759298053e-06,1.1185188293457031,0.014677593484520912,0.0007710100035183132,-2.450411606957914e-08,-0.00026227510534226894,0.00582850119099021,-0.00026212178636342287,-0.0058287885040044785,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,68,27.2,1.1184687614440918,-0.014673607423901558,1.0865976810455322,-3.035718805222132e-07,1.118468165397644,0.01467475201934576,0.0007729508797638118,1.4142318605081527e-07,-0.00025743042351678014,0.0058344947174191475,-0.00025734613882377744,-0.0058347322046756744,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,69,27.6,1.1188925504684448,-0.01467442512512207,1.0870224237442017,1.4898896552040242e-06,1.118891716003418,0.01467925775796175,0.0007725816103629768,-8.287577912824418e-08,-0.0002572099328972399,0.0058413962833583355,-0.00025701351114548743,-0.005841546226292849,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,70,28.0,1.1189181804656982,-0.014679590240120888,1.0870394706726074,-2.1206578821875155e-06,1.1189168691635132,0.014677830971777439,0.0007714667008258402,-1.2685363515174686e-07,-0.0002603950269985944,0.005842188373208046,-0.00026021586381830275,-0.005842071957886219,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,71,28.4,1.1185998916625977,-0.014674660749733448,1.0867103338241577,9.988160627472098e-07,1.118597388267517,0.014678522013127804,0.0007683885633014143,9.921386379119213e-08,-0.00026556153898127377,0.005835918243974447,-0.0002658891025930643,-0.005836079828441143,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,72,28.8,1.1185716390609741,-0.014674589969217777,1.0866847038269043,-2.3693683033343405e-06,1.1185693740844727,0.014671694487333298,0.0007696805987507105,-5.023460403208446e-08,-0.0002644251799210906,0.005828945431858301,-0.0002644836495164782,-0.005829182919114828,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,73,29.2,1.118463158607483,-0.01467038318514824,1.0865845680236816,-3.5750446158999694e-07,1.1184601783752441,0.014672024175524712,0.0007723808521404862,2.4198598680413852e-08,-0.000259981257840991,0.005830470472574234,-0.0002598797727841884,-0.00583080155774951,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,74,29.6,1.1186447143554688,-0.014673671685159206,1.0867729187011719,-3.5330001537658973e-06,1.118641972541809,0.014670807868242264,0.0007725188625045121,-8.363589643067826e-08,-0.0002567788469605148,0.005837981589138508,-0.0002567789051681757,-0.005838169250637293,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,75,30.0,1.1189645528793335,-0.014676056802272797,1.0870894193649292,-2.820330564645701e-06,1.118960976600647,0.014675457030534744,0.000772158382460475,1.4725831931627908e-07,-0.0002582545857876539,0.005842550192028284,-0.00025821776944212615,-0.005842619575560093,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,76,30.4,1.118750810623169,-0.014677987433969975,1.0868638753890991,-2.1706703137169825e-06,1.1187440156936646,0.014677363447844982,0.0007704237941652536,-2.8113499084270188e-08,-0.00026257106219418347,0.005840416997671127,-0.00026349921245127916,-0.005840960890054703,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,77,30.8,1.1186020374298096,-0.014675774611532688,1.0867094993591309,-9.249958452528517e-07,1.1185957193374634,0.014675076119601727,0.0007683425210416317,-1.3938948484337743e-07,-0.0002656799915712327,0.005832189228385687,-0.0002659071469679475,-0.005832442082464695,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,78,31.2,1.1185307502746582,-0.014671997167170048,1.0866471529006958,2.4236462650151225e-06,1.1185256242752075,0.014674749225378036,0.0007707305485382676,-5.787027390624644e-08,-0.00026277691358700395,0.005828647408634424,-0.0002628114598337561,-0.005828803405165672,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,79,31.6,1.1184526681900024,-0.014672735705971718,1.0865789651870728,1.7622618315726868e-06,1.118447184562683,0.014672670513391495,0.0007728024502284825,6.766313287442927e-09,-0.00025795388501137495,0.005833762232214212,-0.00025803883909247816,-0.005833681672811508,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,80,32.0,1.1188459396362305,-0.014672350138425827,1.0869725942611694,4.145802449784242e-06,1.1188398599624634,0.014677358791232109,0.0007725083851255476,2.3341482346950215e-07,-0.0002570403157733381,0.005840528756380081,-0.00025694980286061764,-0.005841823294758797,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,81,32.4,1.1189255714416504,-0.014676792547106743,1.0870435237884521,1.4039945881449967e-06,1.1189203262329102,0.014677551575005054,0.0007716558175161481,8.402057716239142e-09,-0.00025968896807171404,0.005842310842126608,-0.000259739113971591,-0.005841708742082119,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,82,32.8,1.1186251640319824,-0.014672142453491688,1.0867365598678589,4.048560640512733e-06,1.1186211109161377,0.01467814575880766,0.000768703524954617,-1.4915741530785454e-07,-0.0002648377849254757,0.005837060045450926,-0.0002649631642270833,-0.00583726866170764,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,83,33.2,1.1185894012451172,-0.01467079296708107,1.086701512336731,2.4547825887566432e-06,1.1185870170593262,0.01467321440577507,0.0007696339744143188,3.9089108838652464e-08,-0.000264578266069293,0.00582976033911109,-0.000264838250586763,-0.005830107256770134,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,84,33.6,1.1184715032577515,-0.01466769352555275,1.0865923166275024,4.4762537072529085e-06,1.1184691190719604,0.01467319019138813,0.0007719916757196188,4.615103676997023e-08,-0.00026066345162689686,0.005830014124512672,-0.00026069351588375866,-0.005830112844705582,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,85,34.0,1.1185944080352783,-0.01466903556138277,1.0867245197296143,3.6162796277494635e-06,1.1185928583145142,0.014673369936645031,0.0007724250317551196,-5.845822670380585e-08,-0.00025713237118907273,0.005836839787662029,-0.00025711284251883626,-0.005836994852870703,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,86,34.4,1.1189351081848145,-0.01467261090874672,1.087063193321228,3.5849154755851487e-06,1.1189345121383667,0.014676681719720364,0.0007723047747276723,7.408976898659603e-08,-0.00025794998509809375,0.005841997917741537,-0.0002578645362518728,-0.005842010490596294,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,87,34.8,1.1187742948532104,-0.014673905447125435,1.0868932008743286,4.175302819930948e-06,1.1187745332717896,0.014679602347314358,0.0007707828190177679,2.774373619729431e-08,-0.00026181989233009517,0.005840742960572243,-0.0002617794380057603,-0.005840882193297148,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,88,35.2,1.1186132431030273,-0.014673901721835136,1.086725115776062,1.450235458833049e-06,1.1186141967773438,0.014675557613372803,0.000768373254686594,1.4783036306198483e-07,-0.0002655779244378209,0.005833371076732874,-0.0002655937278177589,-0.005833377130329609,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,89,35.6,1.1185405254364014,-0.014669401571154594,1.0866591930389404,3.212443289157818e-06,1.1185413599014282,0.014675954356789589,0.0007703794399276376,-1.4489283728380542e-07,-0.0002621564199216664,0.0058290292508900166,-0.00026373297441750765,-0.00582965649664402,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,90,36.0,1.118438720703125,-0.014671679586172104,1.0865665674209595,-3.657864056094695e-07,1.1184401512145996,0.014671743847429752,0.0007726914482191205,2.8873728408207455e-10,-0.0002586001355666667,0.005832789000123739,-0.00025867082877084613,-0.005833050701767206,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,91,36.4,1.1187937259674072,-0.014670494943857193,1.0869247913360596,2.4105670490826014e-06,1.1187950372695923,0.014675931073725224,0.0007724238676019013,-1.1552637957379375e-08,-0.00025710099725984037,0.005839499644935131,-0.00025701906997710466,-0.005839544348418713,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,92,36.8,1.1189178228378296,-0.014676210470497608,1.0870434045791626,-9.402371006217436e-07,1.1189208030700684,0.014674886129796505,0.0007717970293015242,4.985455248629478e-08,-0.0002592877426650375,0.005842119455337524,-0.0002595871628727764,-0.005842333659529686,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,93,37.2,1.1186461448669434,-0.01467250008136034,1.086763858795166,1.7407087398169097e-06,1.118647813796997,0.01467645913362503,0.0007692094659432769,7.329166606950821e-08,-0.0002641163591761142,0.005838163662701845,-0.0002640313177835196,-0.005838070530444384,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,94,37.6,1.1186023950576782,-0.014672336168587208,1.0867180824279785,-9.973803116736235e-07,1.1186037063598633,0.014671090990304947,0.0007694057421758771,-1.094215420494038e-07,-0.0002648642403073609,0.005830632988363504,-0.0002649349917192012,-0.005831005517393351,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,95,38.0,1.118481159210205,-0.014669112861156464,1.0866032838821411,7.199025731097208e-07,1.1184824705123901,0.014670925214886665,0.0007716278778389096,-2.3567627849274686e-08,-0.00026129273464903235,0.005829951725900173,-0.0002617455320432782,-0.005830582231283188,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,96,38.4,1.118551254272461,-0.014670583419501781,1.086682677268982,-1.5669051833810954e-07,1.1185526847839355,0.014670353382825851,0.0007724231691099703,-1.1662043419846668e-07,-0.00025759267737157643,0.005835862830281258,-0.0002586207410786301,-0.005836244206875563,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,97,38.8,1.1189050674438477,-0.014673834666609764,1.087033748626709,-5.426279585662996e-07,1.1189061403274536,0.014673551544547081,0.0007723030284978449,-1.2473996946482657e-07,-0.0002576344704721123,0.005841387435793877,-0.0002576634578872472,-0.0058412677608430386,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,98,39.2,1.1188007593154907,-0.014675607904791832,1.0869182348251343,-3.2246521186607424e-07,1.118801236152649,0.014676264487206936,0.0007711005164310336,1.806141938232031e-07,-0.00026076097856275737,0.005841491278260946,-0.00026106281438842416,-0.0058410996571183205,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,99,39.6,1.118626356124878,-0.014675471931695938,1.0867401361465454,-2.2927065401745494e-06,1.1186261177062988,0.014673102647066116,0.0007684204610995948,-8.530914641369236e-08,-0.00026520888786762953,0.00583454268053174,-0.00026530298055149615,-0.005834468174725771,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,100,40.0,1.1185564994812012,-0.014671187847852707,1.0866752862930298,-1.7094279769480636e-08,1.118556261062622,0.014673035591840744,0.0007703090668655932,3.6225756616659055e-08,-0.000263655703747645,0.00582944555208087,-0.0002636161516420543,-0.00582969980314374,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,101,40.4,1.1184356212615967,-0.01467203814536333,1.0865622758865356,-1.4411380107048899e-06,1.1184356212615967,0.014669779688119888,0.0007723751477897167,-9.811068935050571e-08,-0.0002592880337033421,0.005832073278725147,-0.0002593677490949631,-0.0058321598917245865,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,102,40.8,1.1187459230422974,-0.014670786447823048,1.0868768692016602,1.8715595615503844e-06,1.1187461614608765,0.014673033729195595,0.0007724192109890282,3.3545148880875786e-08,-0.0002572131925262511,0.005838800687342882,-0.000256764906225726,-0.005838134326040745,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,103,41.2,1.1189125776290894,-0.014675038866698742,1.0870367288589478,1.6308128181208303e-07,1.1189130544662476,0.014673777855932713,0.0007719136192463338,1.7326200918432733e-08,-0.0002588795614428818,0.005841867998242378,-0.0002589765063021332,-0.005841750651597977,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,104,41.6,1.1186747550964355,-0.01467305887490511,1.0867902040481567,1.938333753059851e-06,1.118675947189331,0.01467562559992075,0.0007696450338698924,1.3829210843141482e-07,-0.00026334705762565136,0.005839021876454353,-0.00026331559638492763,-0.0058381701819598675,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,105,42.0,1.11862051486969,-0.014671598561108112,1.0867353677749634,5.003049068363907e-07,1.118621826171875,0.014671921730041504,0.0007691087666898966,-7.891613051924651e-08,-0.0002647569344844669,0.005831453017890453,-0.0002650724200066179,-0.005831494927406311,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,106,42.4,1.118493676185608,-0.014669465832412243,1.08661687374115,1.015523253045103e-06,1.1184953451156616,0.014670691452920437,0.0007714253151789308,-7.236449217629115e-09,-0.0002617793215904385,0.005830028560012579,-0.0002618894213810563,-0.005830034613609314,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,107,42.8,1.1185170412063599,-0.01466923113912344,1.0866469144821167,1.3415061630439595e-06,1.1185187101364136,0.014670982025563717,0.0007722930749878287,5.660796986717287e-08,-0.0002580467553343624,0.0058348397724330425,-0.00025813980028033257,-0.005835006944835186,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,108,43.2,1.1188712120056152,-0.014673348516225815,1.0870018005371094,6.818094675509201e-07,1.1188726425170898,0.014673233963549137,0.0007724849856458604,-1.755142875481397e-08,-0.000257631967542693,0.005840682424604893,-0.00025761761935427785,-0.00584067776799202,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,109,43.6,1.1188148260116577,-0.014674460515379906,1.086938500404358,2.1373341496655485e-06,1.1188169717788696,0.01467699185013771,0.0007713392842561007,-2.2300882918102616e-08,-0.00026051123859360814,0.005841333884745836,-0.00026056618662551045,-0.005840403027832508,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,110,44.0,1.1186401844024658,-0.014675433747470379,1.0867544412612915,-2.267600223149202e-07,1.1186420917510986,0.014673726633191109,0.0007686587632633746,3.500603185102591e-08,-0.00026489057927392423,0.0058357552625238895,-0.00026484730187803507,-0.005836301948875189,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,111,44.4,1.118577480316162,-0.014671077951788902,1.0866928100585938,1.2972368494956754e-06,1.1185810565948486,0.01467349287122488,0.0007699821726419032,8.65331628574495e-08,-0.00026371332933194935,0.005830019246786833,-0.0002639008453115821,-0.005830235313624144,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,112,44.8,1.1184377670288086,-0.0146720502525568,1.0865633487701416,-1.771311076481652e-06,1.1184409856796265,0.01466930378228426,0.0007722321315668523,-1.0202318634355834e-07,-0.00025998198543675244,0.0058315210044384,-0.00026016481569968164,-0.005831718444824219,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,113,45.2,1.1186977624893188,-0.014670873992145061,1.0868290662765503,2.962406142614782e-08,1.1187019348144531,0.014671734534204006,0.0007722793379798532,2.8361027304413255e-08,-0.0002574263489805162,0.005837665870785713,-0.00025736508541740477,-0.005837913602590561,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,114,45.6,1.1188974380493164,-0.014675064012408257,1.0870250463485718,-1.7499399973530672e-06,1.1189005374908447,0.01467239111661911,0.000771993538364768,-1.1343272632302615e-07,-0.00025856716092675924,0.005841157399117947,-0.00025863124756142497,-0.0058416337706148624,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,115,46.0,1.1186957359313965,-0.014674805104732513,1.0868126153945923,-1.186639565275982e-06,1.1186985969543457,0.014673484489321709,0.0007699518464505672,-2.261156595295688e-07,-0.00026271084789186716,0.0058394791558384895,-0.0002625176857691258,-0.0058380113914608955,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,116,46.4,1.118639349937439,-0.014672904275357723,1.086751937866211,-1.6629345509500126e-06,1.1186414957046509,0.014671016484498978,0.0007691114442422986,-6.0698241099999e-08,-0.0002650330716278404,0.005832542199641466,-0.0002648540248628706,-0.005832627881318331,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,117,46.8,1.1185110807418823,-0.01467183604836464,1.0866317749023438,-2.0879342628177255e-06,1.1185141801834106,0.01466889027506113,0.0007709756609983742,-4.092726157978177e-09,-0.0002623314503580332,0.005829923786222935,-0.0002623393665999174,-0.005829908885061741,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,118,47.2,1.1184906959533691,-0.01467058900743723,1.0866185426712036,-8.221969096666726e-07,1.118492841720581,0.01466936431825161,0.0007723105954937637,-1.1471478700286752e-07,-0.0002586622431408614,0.005834036506712437,-0.00025861599715426564,-0.005834673065692186,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,119,47.6,1.1188374757766724,-0.01467521209269762,1.086967945098877,-2.5589129108993802e-06,1.1188397407531738,0.014670410193502903,0.0007725291652604938,5.3181139492153306e-08,-0.0002575950347818434,0.005839953199028969,-0.0002575620310381055,-0.005839956924319267,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,120,48.0,1.1188302040100098,-0.014675882644951344,1.0869531631469727,-1.1258198355790228e-06,1.1188323497772217,0.014675063081085682,0.0007715286919847131,-2.2794148435423267e-07,-0.0002602231106720865,0.005841528065502644,-0.0002600152511149645,-0.005841107573360205,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,121,48.4,1.1186541318893433,-0.014677423052489758,1.0867717266082764,-4.378012818051502e-06,1.1186554431915283,0.014671539887785912,0.0007688964251428843,-2.030237311601013e-07,-0.00026423370582051575,0.0058365510776638985,-0.00026422642986290157,-0.005836529191583395,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,122,48.8,1.1185981035232544,-0.014672786928713322,1.0867133140563965,-1.9188182704965584e-06,1.1185991764068604,0.01467157807201147,0.0007697955588810146,1.3489047034909163e-07,-0.0002640158636495471,0.005830688867717981,-0.00026404522941447794,-0.005830658599734306,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,123,49.2,1.1184464693069458,-0.014673450030386448,1.086571455001831,-3.632685320553719e-06,1.1184464693069458,0.014667588286101818,0.000772050756495446,6.016556852728172e-08,-0.0002605006447993219,0.005831399001181126,-0.0002613948890939355,-0.005830919370055199,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,124,49.6,1.118658185005188,-0.014671064913272858,1.086787462234497,-3.2259646332022385e-07,1.1186579465866089,0.014670265838503838,0.0007723341695964336,8.900802583866607e-08,-0.00025768368504941463,0.0058367629535496235,-0.0002579046704340726,-0.005836767144501209,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,125,50.0,1.118882417678833,-0.014675183221697807,1.0870096683502197,-1.4967022252676543e-06,1.118882179260254,0.014671428129076958,0.0007721944712102413,-3.326858788454956e-09,-0.000258381653111428,0.0058545637875795364,-0.00025924009969457984,-0.005841863341629505,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,126,50.4,1.1187149286270142,-0.014675343409180641,1.0868351459503174,-6.459875976361218e-07,1.1187149286270142,0.014672752469778061,0.0007704017916694283,-1.2095780732579442e-07,-0.0002617320278659463,0.005839754361659288,-0.00026196896214969456,-0.00583981815725565,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,127,50.8,1.1186530590057373,-0.01467397715896368,1.086768627166748,-1.844492999225622e-06,1.1186530590057373,0.014670777134597301,0.0007690333295613527,6.564659926766581e-09,-0.00026463594986125827,0.0058332993648946285,-0.00026473135221749544,-0.005833467468619347,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,128,51.2,1.118535041809082,-0.014672258868813515,1.0866498947143555,-3.139098907922744e-06,1.1185333728790283,0.014668804593384266,0.0007707167533226311,2.091437600881818e-08,-0.00026261675520800054,0.0058301701210439205,-0.00026274475385434926,-0.005830336827784777,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,129,51.6,1.1184736490249634,-0.014671090058982372,1.0866003036499023,-2.544298240536591e-06,1.1184719800949097,0.014668869785964489,0.0007720317225903273,-1.5882993409377377e-07,-0.0002586780465207994,0.005833928007632494,-0.0002592416713014245,-0.005833442788571119,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,130,52.0,1.1188052892684937,-0.014674140140414238,1.0869325399398804,-2.2220822302188026e-06,1.1188035011291504,0.014671028591692448,0.0007725507603026927,-1.788121863910419e-07,-0.0002575521939434111,0.005839182063937187,-0.00025754296802915633,-0.0058390856720507145,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,131,52.4,1.1188385486602783,-0.014674503356218338,1.0869603157043457,5.091488333164307e-07,1.1188360452651978,0.014675460755825043,0.0007717623375356197,-9.767136077698524e-08,-0.0002597130951471627,0.005841248203068972,-0.00025976079632528126,-0.005841515492647886,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,132,52.8,1.1186707019805908,-0.014674859121441841,1.0867857933044434,6.621041279686324e-07,1.118667483329773,0.014674083329737186,0.0007691361824981868,3.903362255641696e-08,-0.0002637583529576659,0.00583738274872303,-0.0002638264268171042,-0.005837392993271351,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,133,53.2,1.1186156272888184,-0.014670779928565025,1.086731195449829,3.786119577853242e-06,1.1186145544052124,0.014673753641545773,0.0007697805995121598,2.4141917265296797e-07,-0.0002641333849169314,0.005831201560795307,-0.0002640920865815133,-0.005831209011375904,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,134,53.6,1.1184589862823486,-0.014669734053313732,1.0865827798843384,2.9343268579395954e-06,1.1184587478637695,0.014671060256659985,0.0007716710679233074,1.4690063210309745e-07,-0.00026090710889548063,0.005831191316246986,-0.0002610579249449074,-0.005830606911331415,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,135,54.0,1.118618369102478,-0.014668344520032406,1.0867480039596558,3.956880846089916e-06,1.1186190843582153,0.014671700075268745,0.0007721210131421685,1.8288578473857342e-07,-0.00025800825096666813,0.005835937336087227,-0.00025839428417384624,-0.005835745483636856,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,136,54.4,1.1188639402389526,-0.014671645127236843,1.0869923830032349,3.1250920073944144e-06,1.1188660860061646,0.014673725701868534,0.0007722952868789434,-3.346329435771622e-08,-0.00025829466176219285,0.005840703379362822,-0.0002583968744147569,-0.005840481724590063,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,137,54.8,1.1187351942062378,-0.014673054218292236,1.0868544578552246,2.0412317098816857e-06,1.118738055229187,0.014674421399831772,0.0007708249031566083,1.3153670863630396e-07,-0.0002613315300550312,0.00584029546007514,-0.00026129555772058666,-0.005839657969772816,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,138,55.2,1.1186658143997192,-0.014671362936496735,1.0867820978164673,1.49392860748776e-06,1.11867094039917,0.01467288937419653,0.0007691038190387189,2.9303993187568267e-07,-0.000264603178948164,0.005834403447806835,-0.00026454185717739165,-0.005835931282490492,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,139,55.6,1.1185498237609863,-0.014671184122562408,1.086670160293579,-1.0141865232071723e-06,1.1185531616210938,0.014669614844024181,0.0007704410818405449,2.1691194618256304e-08,-0.0002629180671647191,0.005830541718751192,-0.00026341332704760134,-0.005830851849168539,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,140,56.0,1.11846125125885,-0.014669550582766533,1.0865890979766846,-5.647055445479054e-07,1.118465781211853,0.01466988306492567,0.0007719224086031318,-1.0344177781007602e-07,-0.0002597425482235849,0.005832934286445379,-0.0002596968843135983,-0.005833130329847336,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,141,56.4,1.1187671422958374,-0.014674399979412556,1.0868998765945435,-3.984954219049541e-06,1.1187713146209717,0.014669619500637054,0.0007724293391220272,5.1579945647972636e-08,-0.0002576051920186728,0.005838328972458839,-0.00025772364460863173,-0.0058382130227983,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,142,56.8,1.1188369989395142,-0.014675137586891651,1.0869637727737427,-2.15933459912776e-06,1.1188395023345947,0.014674277044832706,0.0007719539571553469,2.487554411345627e-07,-0.00025935593293979764,0.005841358099132776,-0.00025735373492352664,-0.005839684046804905,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,143,57.2,1.1186827421188354,-0.014676813036203384,1.0868008136749268,-4.1207576941815205e-06,1.1186845302581787,0.014671764336526394,0.000769418606068939,-1.9463412570530636e-07,-0.00026327886735089123,0.005836380645632744,-0.0002632797113619745,-0.00583763187751174,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,144,57.6,1.1186373233795166,-0.014673257246613503,1.086751103401184,-2.1012176603107946e-06,1.1186392307281494,0.014671066775918007,0.0007697779801674187,1.4524115954372974e-07,-0.00026434805477038026,0.005832095630466938,-0.0002642999170348048,-0.005832238122820854,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,145,58.0,1.118476390838623,-0.014672650024294853,1.0865978002548218,-2.6108841666427907e-06,1.1184786558151245,0.01466812938451767,0.0007711764192208648,4.3481762190822337e-07,-0.0002609916846267879,0.005831648595631123,-0.00026132335187867284,-0.0058320737443864346,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,146,58.4,1.1185858249664307,-0.01467165071517229,1.0867136716842651,-1.3633303979077027e-06,1.1185870170593262,0.014668690040707588,0.0007720565772615373,-1.7726524959016388e-07,-0.00025842880131676793,0.005835157819092274,-0.00025839300360530615,-0.005835114046931267,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,147,58.8,1.1188442707061768,-0.014673910103738308,1.0869717597961426,-1.7656649333730456e-06,1.1188446283340454,0.014670826494693756,0.0007724830647930503,-1.9763604086620035e-07,-0.0002580561558715999,0.00583997555077076,-0.0002557002298999578,-0.005837553180754185,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,148,59.2,1.1187504529953003,-0.014675558544695377,1.0868726968765259,-2.279930868098745e-06,1.118750810623169,0.014672006480395794,0.0007710384088568389,-1.5286241605849682e-08,-0.00026075803907588124,0.005840955767780542,-0.0002609110379125923,-0.005839601159095764,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,149,59.6,1.1186835765838623,-0.014673803001642227,1.0867979526519775,-1.7747645415511215e-06,1.1186832189559937,0.014671930111944675,0.0007690734346397221,-1.913142142484503e-07,-0.0002639800950419158,0.005835224408656359,-0.00026423268718644977,-0.005835309159010649,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,150,60.0,1.1185736656188965,-0.01467357762157917,1.0866897106170654,-3.4780632631736808e-06,1.1185729503631592,0.014668700285255909,0.0007704555173404515,1.9031750753129018e-07,-0.00026318570598959923,0.005830792710185051,-0.00026319705648347735,-0.005830998998135328,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,151,60.4,1.1184571981430054,-0.014670821838080883,1.0865833759307861,-1.2186890216980828e-06,1.1184566020965576,0.014669694937765598,0.0007715452229604125,-8.798857464853427e-08,-0.00025963192456401885,0.005833036731928587,-0.0002602561726234853,-0.005832652561366558,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,152,60.8,1.1187341213226318,-0.014674303121864796,1.0868631601333618,-3.1274744287657086e-06,1.1187329292297363,0.014668958261609077,0.0007723937160335481,5.2708202247231384e-08,-0.0002578479761723429,0.00583749171346426,-0.0002579825813882053,-0.005837625358253717,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,153,61.2,1.1188348531723022,-0.014674723148345947,1.0869618654251099,1.711261603531966e-07,1.1188342571258545,0.014674436300992966,0.0007721699075773358,5.953414117243483e-08,-0.00025898206513375044,0.005840761121362448,-0.0002588653878774494,-0.005840858444571495,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,154,61.6,1.1186957359313965,-0.014676009304821491,1.0868124961853027,-1.1851099088744377e-06,1.1186957359313965,0.014672262594103813,0.0007698058616369963,-4.473695369711095e-08,-0.0002627687936183065,0.005838726181536913,-0.00026294292183592916,-0.005838944111019373,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,155,62.0,1.118656873703003,-0.014672685414552689,1.0867702960968018,1.901241262203257e-07,1.1186559200286865,0.014671972021460533,0.0007694839732721448,5.7840225053951144e-08,-0.00026429019635543227,0.005832776892930269,-0.00026424790848977864,-0.005832963157445192,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,156,62.4,1.118494987487793,-0.014672312885522842,1.086614727973938,-9.446058584217099e-07,1.1184937953948975,0.014669813215732574,0.0007713907980360091,-5.727275365075002e-08,-0.00026178776170127094,0.005831030197441578,-0.0002617842401377857,-0.005830792244523764,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,157,62.8,1.118557333946228,-0.014671317301690578,1.0866830348968506,-1.443535552425601e-06,1.1185554265975952,0.01466907374560833,0.000771734572481364,-4.3148503436896135e-08,-0.0002589789219200611,0.005834583193063736,-0.00025903378264047205,-0.0058346218429505825,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,158,63.2,1.118818759918213,-0.014672861434519291,1.0869481563568115,-1.5384889593406115e-06,1.1188164949417114,0.01467142067849636,0.0007723968592472374,1.9174112253494968e-07,-0.00025809722137637436,0.005839396733790636,-0.0002582827291917056,-0.005840012803673744,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,159,63.6,1.1187613010406494,-0.014675365760922432,1.086883783340454,-2.617015070427442e-06,1.1187578439712524,0.014672189950942993,0.0007713569211773574,-8.424904329729088e-09,-0.00026029295986518264,0.0058404868468642235,-0.00026031507877632976,-0.0058406805619597435,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,160,64.0,1.1186935901641846,-0.014673599973320961,1.0868080854415894,-8.969898317445768e-07,1.1186920404434204,0.014672879129648209,0.000769201316870749,2.0068408446149988e-07,-0.0002639510203152895,0.005836213938891888,-0.00026397311012260616,-0.005836931057274342,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,161,64.4,1.118595838546753,-0.014673160389065742,1.0867093801498413,-1.7619663594814483e-06,1.1185933351516724,0.014670047909021378,0.0007702797884121537,-6.402602537036728e-08,-0.0002632855321280658,0.005831308197230101,-0.0002633511903695762,-0.005831424612551928,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,162,64.8,1.1184601783752441,-0.014670800417661667,1.0865817070007324,2.9908377996434865e-07,1.1184576749801636,0.014670789241790771,0.0007716226391494274,-1.2887204547951114e-07,-0.0002607440110296011,0.0058321296237409115,-0.00026072957552969456,-0.005832705646753311,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,163,65.2,1.1187020540237427,-0.014672783203423023,1.0868289470672607,-1.2129302149332943e-06,1.1186996698379517,0.01467047818005085,0.0007722325390204787,1.9351682567503303e-07,-0.0002581074950285256,0.005836695432662964,-0.00025815932895056903,-0.005836850963532925,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,164,65.6,1.1188300848007202,-0.014673917554318905,1.086954951286316,-6.182060729997829e-08,1.1188278198242188,0.014674040488898754,0.0007722040172666311,7.80443230041783e-08,-0.000258775835391134,0.005840280093252659,-0.00025877327425405383,-0.005840705707669258,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,165,66.0,1.1187067031860352,-0.014674765057861805,1.08682382106781,-2.0898033881167066e-07,1.1187031269073486,0.01467408798635006,0.0007702430593781173,-1.9033984699490247e-07,-0.0002668972301762551,0.005838912911713123,-0.00026204693131148815,-0.005839071236550808,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,166,66.4,1.1186714172363281,-0.014672540128231049,1.0867880582809448,4.5657944980348475e-08,1.118669867515564,0.01467244140803814,0.0007695212843827903,1.349931721961184e-07,-0.00026424703537486494,0.005833545699715614,-0.0002642478793859482,-0.005833563860505819,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,167,66.8,1.118514060974121,-0.014670456759631634,1.0866354703903198,9.786765531316632e-07,1.1185117959976196,0.014671283774077892,0.0007710810168646276,-2.9334769280353612e-08,-0.00026215804973617196,0.005831094924360514,-0.0002621544408611953,-0.005831401329487562,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,168,67.2,1.1185327768325806,-0.014669937081634998,1.0866597890853882,1.584659571562952e-06,1.1185307502746582,0.014670777134597301,0.0007717811968177557,4.32931045679652e-07,-0.00025935060693882406,0.005834068171679974,-0.00025935916346497834,-0.00583299994468689,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,169,67.6,1.1187952756881714,-0.01467063743621111,1.0869238376617432,2.7155601856065914e-06,1.1187938451766968,0.014673488214612007,0.0007722934242337942,-6.941598229559531e-08,-0.000258012383710593,0.005838689859956503,-0.0002582410234026611,-0.005838353186845779,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,170,68.0,1.1187717914581299,-0.014673179015517235,1.0868934392929077,1.927873881868436e-06,1.1187702417373657,0.01467389427125454,0.0007717000553384423,9.822331747955104e-08,-0.000259963097050786,0.00584045983850956,-0.0002600502921268344,-0.005840511526912451,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,171,68.4,1.118700623512268,-0.014671603217720985,1.0868172645568848,3.0175124265952036e-06,1.1187000274658203,0.014675600454211235,0.00076928740600124,-9.071962381312915e-08,-0.0002634712727740407,0.005836795549839735,-0.00026348489336669445,-0.005836802069097757,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,172,68.8,1.1186139583587646,-0.014671594835817814,1.0867313146591187,9.83109202934429e-07,1.1186139583587646,0.014672397635877132,0.0007701169815845788,-2.5651308988017263e-07,-0.00026350151165388525,0.005831902846693993,-0.0002635032869875431,-0.005831650923937559,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,173,69.2,1.1184637546539307,-0.014668535441160202,1.0865864753723145,2.5668157377367606e-06,1.118464469909668,0.014672495424747467,0.0007713867234997451,-8.939008466768428e-08,-0.0002610681694932282,0.00583196897059679,-0.00026098135276697576,-0.005831967573612928,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,174,69.6,1.118667483329773,-0.01467097643762827,1.0867952108383179,6.723038836753403e-07,1.1186680793762207,0.01467164233326912,0.0007721817237325013,-3.3454162462476233e-07,-0.0002585171605460346,0.005836018826812506,-0.0002586035698186606,-0.005835928954184055,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,175,70.0,1.1188178062438965,-0.014672016724944115,1.0869460105895996,1.5831406017241534e-06,1.1188188791275024,0.014674949459731579,0.0007722907466813922,-5.3065814853425763e-08,-0.0002586859336588532,0.00584001699462533,-0.00025871998514048755,-0.005840103607624769,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,176,70.4,1.118714690208435,-0.014673428609967232,1.0868332386016846,6.879787406433024e-07,1.1187158823013306,0.0146744754165411,0.0007703721057623625,-1.7078745884191449e-07,-0.0002615754201542586,0.005839511752128601,-0.00026161837740801275,-0.0058397711254656315,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,177,70.8,1.118686318397522,-0.014672093093395233,1.0868034362792969,7.377023507615377e-07,1.1186884641647339,0.014673429541289806,0.0007695085369050503,2.7009372516317853e-08,-0.0002638701116666198,0.005834480747580528,-0.00026390733546577394,-0.005834062583744526,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,178,71.2,1.1185373067855835,-0.014670364558696747,1.0866550207138062,3.803522758971667e-07,1.1185383796691895,0.014671538025140762,0.0007707064505666494,-2.522315014630294e-07,-0.00026232466916553676,0.005831548478454351,-0.00026268267538398504,-0.005831337533891201,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,179,71.6,1.1185141801834106,-0.014670060947537422,1.0866405963897705,-3.952760039283021e-07,1.1185154914855957,0.01466983463615179,0.0007716561085544527,2.0576353065848707e-08,-0.0002598197606857866,0.005833439063280821,-0.0002598903374746442,-0.005833874456584454,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,180,72.0,1.1187688112258911,-0.014670785516500473,1.0868970155715942,4.776126161232241e-07,1.1187703609466553,0.014672164805233479,0.0007722670561634004,-5.230205601947091e-08,-0.0002581161679700017,0.005838119424879551,-0.00025813517277128994,-0.0058381580747663975,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,181,72.4,1.1187752485275269,-0.014674121513962746,1.0868974924087524,-6.76347383432585e-07,1.118776798248291,0.014672921970486641,0.0007717162952758372,-1.4627852351623005e-07,-0.00025875744177028537,0.005840834230184555,-0.0002596568374428898,-0.005840235855430365,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,182,72.8,1.1187065839767456,-0.014672582969069481,1.086825966835022,5.141514520801138e-07,1.118707537651062,0.014674322679638863,0.0007695992826484144,-3.4203985421754624e-08,-0.0002630647213663906,0.005837460048496723,-0.0002613430260680616,-0.005837408360093832,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,183,73.2,1.1186336278915405,-0.014673050493001938,1.0867515802383423,-1.046940042215283e-06,1.1186352968215942,0.014671440236270428,0.000769993057474494,-1.4881734067273555e-08,-0.00026363279903307557,0.005832481198012829,-0.00026372968568466604,-0.005832303781062365,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,184,73.6,1.118475317955017,-0.014670424163341522,1.086595892906189,-7.16697812208622e-08,1.1184767484664917,0.014671068638563156,0.0007713266531936824,1.6185476070518234e-08,-0.0002615146804600954,0.005832085385918617,-0.0002613997785374522,-0.005831905175000429,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,185,74.0,1.1186375617980957,-0.01467155572026968,1.086766242980957,-1.4461427326750709e-06,1.1186381578445435,0.014670115895569324,0.0007719122804701328,-4.670422626418258e-08,-0.0002586740010883659,0.005835479125380516,-0.0002588314237073064,-0.005836906377226114,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,186,74.4,1.1188061237335205,-0.014673154801130295,1.0869343280792236,-6.756669677088212e-07,1.1188064813613892,0.014673197641968727,0.0007721041911281645,1.33588038409016e-08,-0.00025845583877526224,0.005839603953063488,-0.00025856835418380797,-0.005839488469064236,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,187,74.8,1.1187225580215454,-0.014674334786832333,1.0868425369262695,-5.773354700977507e-07,1.1187222003936768,0.014673731289803982,0.0007708566845394671,5.866269958687553e-08,-0.00026100550894625485,0.005839687772095203,-0.00026110498583875597,-0.005836409516632557,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,188,75.2,1.1187025308609009,-0.0146733233705163,1.0868182182312012,5.158275371286436e-07,1.1187024116516113,0.014672837220132351,0.0007695328677073121,2.016600753051989e-08,-0.00026386178797110915,0.0058342874981462955,-0.0002636646095197648,-0.005835243035107851,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,189,75.6,1.1185576915740967,-0.014670716598629951,1.086677074432373,1.5031141629151534e-06,1.1185575723648071,0.014671939425170422,0.0007706875330768526,3.800116132879339e-08,-0.0002628906222525984,0.005832451395690441,-0.0002632413525134325,-0.005833834409713745,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,190,76.0,1.1185014247894287,-0.01467036735266447,1.0866271257400513,7.457217634510016e-07,1.1185020208358765,0.014669538475573063,0.0007713533123023808,1.051312210620381e-07,-0.0002602570748422295,0.005832914728671312,-0.0002602764870971441,-0.005833348724991083,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,191,76.4,1.1187423467636108,-0.01467074640095234,1.0868700742721558,1.2796558621630538e-06,1.1187435388565063,0.01467205211520195,0.0007724379538558424,-1.9405182172249624e-07,-0.0002584046742413193,0.005837504286319017,-0.00025822638417594135,-0.005839077290147543,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,192,76.8,1.1187764406204224,-0.014674270525574684,1.086900234222412,-7.372026402663323e-07,1.1187769174575806,0.014672902412712574,0.0007719311397522688,3.553548566515019e-08,-0.00025933649158105254,0.005840432830154896,-0.0002593320677988231,-0.005840829107910395,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,193,77.2,1.1187117099761963,-0.014672908000648022,1.0868321657180786,-1.5530356733961526e-07,1.1187127828598022,0.014674283564090729,0.0007697138353250921,-4.010725973557783e-08,-0.0002626435016281903,0.005838145036250353,-0.00026267298380844295,-0.005838338285684586,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,194,77.6,1.1186543703079224,-0.014673298224806786,1.0867706537246704,-2.104557324855705e-06,1.1186546087265015,0.014671554788947105,0.0007701639551669359,-9.964751690461071e-09,-0.00026357948081567883,0.00583315035328269,-0.0002642847830429673,-0.005834193434566259,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,195,78.0,1.118489146232605,-0.014671249315142632,1.0866093635559082,-1.232879753843008e-06,1.1184896230697632,0.014670949429273605,0.0007708932389505208,-2.562253875737497e-08,-0.00026176817482337356,0.005832091439515352,-0.0002617324935272336,-0.005831816699355841,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,196,78.4,1.1186106204986572,-0.014671500772237778,1.0867382287979126,-9.557988960295916e-07,1.1186107397079468,0.014670399017632008,0.0007717746775597334,1.9251223193350597e-07,-0.0002590084623079747,0.005834826268255711,-0.0002590458607301116,-0.005834116134792566,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,197,78.8,1.118790626525879,-0.014673314057290554,1.0869178771972656,-1.6726320950510853e-07,1.1187914609909058,0.014672096818685532,0.0007722065784037113,1.4013494809006488e-09,-0.00025847821962088346,0.005838913377374411,-0.0002583976020105183,-0.005839019548147917,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,198,79.2,1.1187270879745483,-0.014674225822091103,1.0868487358093262,8.570161185161851e-07,1.1187273263931274,0.014673640951514244,0.0007710114005021751,-2.6331323965678166e-07,-0.00026076522772200406,0.005839901976287365,-0.00026071834145113826,-0.005839386954903603,0.0,-4.0,4.0,0.0,-0.04,0.04 +steady,sr,199,79.6,1.1187098026275635,-0.014674026519060135,1.0868290662765503,5.9043085087751024e-08,1.1187105178833008,0.014671985991299152,0.0007697176188230515,7.08781442426698e-08,-0.00026333643472753465,0.005835803225636482,-0.00026265173801220953,-0.005834279116243124,0.0,-4.0,4.0,0.0,-0.04,0.04 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_long.csv new file mode 100644 index 0000000..ada46a9 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360454559326172 +steady,target,2,0.8,velocity,upper_uy,-6.0142643633298576e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3026001610683124e-08 +steady,target,2,0.8,velocity,lower_ux,1.1360441446304321 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360431909561157 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.164554238319397 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360431909561157 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360454559326172 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.1360435485839844 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0459883621224435e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360433101654053 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360443830490112 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043906211853 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360433101654053 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.1360450983047485 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.1360450983047485 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1570042463281425e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.1360453367233276 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.164554476737976 +steady,target,40,16.0,velocity,center_uy,1.943962644190833e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3958349465734727e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512657542614761e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360454559326172 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360433101654053 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.1360453367233276 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360430717468262 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360433101654053 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360442638397217 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360433101654053 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360430717468262 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.1645543575286865 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.1360453367233276 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.116325675975531e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688843787615042e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.1360450983047485 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.6995057440854e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035815385985188e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360433101654053 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.136044979095459 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.136044979095459 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360433101654053 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360431909561157 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.071504685678519e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.737172952853143e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.136043906211853 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.1360437870025635 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.1360437870025635 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.1360434293746948 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.164554476737976 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645545959472656 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.1360440254211426 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.136045217514038 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130481779109687e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410433914221358e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099172242102213e-05 +steady,target,136,54.4,velocity,upper_ux,1.1360453367233276 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360447406768799 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360445022583008 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360453367233276 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360434293746948 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360445022583008 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360447406768799 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.164554238319397 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360433101654053 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.136045217514038 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_wide.csv new file mode 100644 index 0000000..8c14508 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_4/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360454559326172,-6.0142643633298576e-05,1.1645541191101074,1.3026001610683124e-08,1.1360441446304321,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360431909561157,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.164554238319397,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360431909561157,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360454559326172,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.1360435485839844,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.0459883621224435e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360433101654053,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360443830490112,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043906211853,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360433101654053,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.1360450983047485,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.1360450983047485,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1570042463281425e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.1360453367233276,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.164554476737976,1.943962644190833e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.3958349465734727e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512657542614761e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360454559326172,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360433101654053,6.118379678810015e-05 +steady,target,54,21.6,1.1360453367233276,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360430717468262,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360433101654053,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360442638397217,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360433101654053,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360430717468262,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.1645543575286865,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.1360453367233276,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.116325675975531e-05,1.1645547151565552,-2.1688843787615042e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.1360450983047485,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.6995057440854e-08,1.1360431909561157,6.035815385985188e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360433101654053,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.136044979095459,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.164554476737976,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.136044979095459,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360433101654053,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360431909561157,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.071504685678519e-05,1.1645547151565552,-6.737172952853143e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.136043906211853,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.1360437870025635,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.1360437870025635,6.025691982358694e-05 +steady,target,122,48.8,1.1360434293746948,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.164554476737976,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645545959472656,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.1360440254211426,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.136045217514038,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130481779109687e-05,1.1645547151565552,-5.410433914221358e-07,1.1360454559326172,6.099172242102213e-05 +steady,target,136,54.4,1.1360453367233276,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360447406768799,6.093038246035576e-05 +steady,target,137,54.8,1.1360445022583008,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360453367233276,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360434293746948,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360445022583008,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360447406768799,-6.112091068644077e-05,1.164554238319397,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360433101654053,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.136045217514038,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_dtw_convergence.csv new file mode 100644 index 0000000..db7d4e2 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.9872204754321082,5,0.9798471490542094,0.9853745523075,0.9931523919105529,0.9999467502880394,0.9797295530637106,0.985272455968637 +steady,sr,90,36.0,30,0.987204925829657,6,0.9797794103622437,0.9853571397477936,0.9931098302205403,0.9999714855592563,0.9797084967295329,0.9853031923585756 +steady,sr,120,48.0,30,0.9872067888116373,4,0.9797627011934916,0.9853473611668354,0.9931089083353678,0.9999839685554194,0.9797208984692891,0.9853168951494202 +steady,sr,150,60.0,30,0.9872110971440723,6,0.9797593871752421,0.985340878948773,0.9931137522061666,0.9999911120870149,0.9797377149264018,0.9853237375208361 +steady,sr,180,72.0,30,0.987204454146748,-24,0.9797395785649617,0.9853375916627556,0.9931009928385417,0.999994557032355,0.9797266324361166,0.9853273723457581 +steady,sr,200,80.0,30,0.9872116243063841,-26,0.9797519405682882,0.9853361809544974,0.9931141853332519,0.9999960137851986,0.9797428846359253,0.9853285405611435 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_long.csv new file mode 100644 index 0000000..6297f17 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.1158822774887085 +steady,sr,0,0.0,velocity,upper_uy,-0.014644530601799488 +steady,sr,0,0.0,velocity,center_ux,1.1576557159423828 +steady,sr,0,0.0,velocity,center_uy,0.00010924614616669714 +steady,sr,0,0.0,velocity,lower_ux,1.1156481504440308 +steady,sr,0,0.0,velocity,lower_uy,0.01485555898398161 +steady,sr,1,0.4,velocity,upper_ux,1.1157796382904053 +steady,sr,1,0.4,velocity,upper_uy,-0.014654580503702164 +steady,sr,1,0.4,velocity,center_ux,1.1575658321380615 +steady,sr,1,0.4,velocity,center_uy,0.00010337194544263184 +steady,sr,1,0.4,velocity,lower_ux,1.1155495643615723 +steady,sr,1,0.4,velocity,lower_uy,0.01485568005591631 +steady,sr,2,0.8,velocity,upper_ux,1.1159881353378296 +steady,sr,2,0.8,velocity,upper_uy,-0.01465668436139822 +steady,sr,2,0.8,velocity,center_ux,1.1577545404434204 +steady,sr,2,0.8,velocity,center_uy,0.00010522165393922478 +steady,sr,2,0.8,velocity,lower_ux,1.1157615184783936 +steady,sr,2,0.8,velocity,lower_uy,0.014860059134662151 +steady,sr,3,1.2,velocity,upper_ux,1.1164721250534058 +steady,sr,3,1.2,velocity,upper_uy,-0.014662235043942928 +steady,sr,3,1.2,velocity,center_ux,1.1582094430923462 +steady,sr,3,1.2,velocity,center_uy,0.00010246074089081958 +steady,sr,3,1.2,velocity,lower_ux,1.1162452697753906 +steady,sr,3,1.2,velocity,lower_uy,0.014861922711133957 +steady,sr,4,1.6,velocity,upper_ux,1.1159931421279907 +steady,sr,4,1.6,velocity,upper_uy,-0.014661959372460842 +steady,sr,4,1.6,velocity,center_ux,1.1577322483062744 +steady,sr,4,1.6,velocity,center_uy,0.0001004557780106552 +steady,sr,4,1.6,velocity,lower_ux,1.115771770477295 +steady,sr,4,1.6,velocity,lower_uy,0.014857661910355091 +steady,sr,5,2.0,velocity,upper_ux,1.1158075332641602 +steady,sr,5,2.0,velocity,upper_uy,-0.014654641039669514 +steady,sr,5,2.0,velocity,center_ux,1.1575747728347778 +steady,sr,5,2.0,velocity,center_uy,0.00010138569632545114 +steady,sr,5,2.0,velocity,lower_ux,1.115588665008545 +steady,sr,5,2.0,velocity,lower_uy,0.01485341228544712 +steady,sr,6,2.4,velocity,upper_ux,1.1158422231674194 +steady,sr,6,2.4,velocity,upper_uy,-0.014658238738775253 +steady,sr,6,2.4,velocity,center_ux,1.1576331853866577 +steady,sr,6,2.4,velocity,center_uy,9.738211520016193e-05 +steady,sr,6,2.4,velocity,lower_ux,1.1156240701675415 +steady,sr,6,2.4,velocity,lower_uy,0.01484805066138506 +steady,sr,7,2.8,velocity,upper_ux,1.1156800985336304 +steady,sr,7,2.8,velocity,upper_uy,-0.014654283411800861 +steady,sr,7,2.8,velocity,center_ux,1.1574703454971313 +steady,sr,7,2.8,velocity,center_uy,0.00010134241892956197 +steady,sr,7,2.8,velocity,lower_ux,1.1154686212539673 +steady,sr,7,2.8,velocity,lower_uy,0.014850562438368797 +steady,sr,8,3.2,velocity,upper_ux,1.1163206100463867 +steady,sr,8,3.2,velocity,upper_uy,-0.01465991698205471 +steady,sr,8,3.2,velocity,center_ux,1.1580841541290283 +steady,sr,8,3.2,velocity,center_uy,9.793254866963252e-05 +steady,sr,8,3.2,velocity,lower_ux,1.1161141395568848 +steady,sr,8,3.2,velocity,lower_uy,0.014846750535070896 +steady,sr,9,3.6,velocity,upper_ux,1.1163437366485596 +steady,sr,9,3.6,velocity,upper_uy,-0.014655640348792076 +steady,sr,9,3.6,velocity,center_ux,1.1580899953842163 +steady,sr,9,3.6,velocity,center_uy,0.00010196764196734875 +steady,sr,9,3.6,velocity,lower_ux,1.1161413192749023 +steady,sr,9,3.6,velocity,lower_uy,0.014848284423351288 +steady,sr,10,4.0,velocity,upper_ux,1.115729570388794 +steady,sr,10,4.0,velocity,upper_uy,-0.014655165374279022 +steady,sr,10,4.0,velocity,center_ux,1.1574879884719849 +steady,sr,10,4.0,velocity,center_uy,9.7516858659219e-05 +steady,sr,10,4.0,velocity,lower_ux,1.1155279874801636 +steady,sr,10,4.0,velocity,lower_uy,0.014838949777185917 +steady,sr,11,4.4,velocity,upper_ux,1.115861415863037 +steady,sr,11,4.4,velocity,upper_uy,-0.014653733000159264 +steady,sr,11,4.4,velocity,center_ux,1.1576517820358276 +steady,sr,11,4.4,velocity,center_uy,9.666246478445828e-05 +steady,sr,11,4.4,velocity,lower_ux,1.115665078163147 +steady,sr,11,4.4,velocity,lower_uy,0.01483844593167305 +steady,sr,12,4.8,velocity,upper_ux,1.1157546043395996 +steady,sr,12,4.8,velocity,upper_uy,-0.014658876694738865 +steady,sr,12,4.8,velocity,center_ux,1.1575566530227661 +steady,sr,12,4.8,velocity,center_uy,9.36300857574679e-05 +steady,sr,12,4.8,velocity,lower_ux,1.1155580282211304 +steady,sr,12,4.8,velocity,lower_uy,0.014839939773082733 +steady,sr,13,5.2,velocity,upper_ux,1.115877389907837 +steady,sr,13,5.2,velocity,upper_uy,-0.014665570110082626 +steady,sr,13,5.2,velocity,center_ux,1.1576632261276245 +steady,sr,13,5.2,velocity,center_uy,9.064706682693213e-05 +steady,sr,13,5.2,velocity,lower_ux,1.1156858205795288 +steady,sr,13,5.2,velocity,lower_uy,0.014841487631201744 +steady,sr,14,5.6,velocity,upper_ux,1.11640465259552 +steady,sr,14,5.6,velocity,upper_uy,-0.014666754752397537 +steady,sr,14,5.6,velocity,center_ux,1.1581647396087646 +steady,sr,14,5.6,velocity,center_uy,9.131172555498779e-05 +steady,sr,14,5.6,velocity,lower_ux,1.116215705871582 +steady,sr,14,5.6,velocity,lower_uy,0.014844706282019615 +steady,sr,15,6.0,velocity,upper_ux,1.1160281896591187 +steady,sr,15,6.0,velocity,upper_uy,-0.014669924974441528 +steady,sr,15,6.0,velocity,center_ux,1.1577833890914917 +steady,sr,15,6.0,velocity,center_uy,8.666249777888879e-05 +steady,sr,15,6.0,velocity,lower_ux,1.1158404350280762 +steady,sr,15,6.0,velocity,lower_uy,0.01483851671218872 +steady,sr,16,6.4,velocity,upper_ux,1.1157774925231934 +steady,sr,16,6.4,velocity,upper_uy,-0.01466057263314724 +steady,sr,16,6.4,velocity,center_ux,1.1575582027435303 +steady,sr,16,6.4,velocity,center_uy,9.000666614156216e-05 +steady,sr,16,6.4,velocity,lower_ux,1.1155935525894165 +steady,sr,16,6.4,velocity,lower_uy,0.014835256151854992 +steady,sr,17,6.8,velocity,upper_ux,1.1158158779144287 +steady,sr,17,6.8,velocity,upper_uy,-0.01466430351138115 +steady,sr,17,6.8,velocity,center_ux,1.1576226949691772 +steady,sr,17,6.8,velocity,center_uy,8.455456554656848e-05 +steady,sr,17,6.8,velocity,lower_ux,1.1156352758407593 +steady,sr,17,6.8,velocity,lower_uy,0.014827478677034378 +steady,sr,18,7.2,velocity,upper_ux,1.1156364679336548 +steady,sr,18,7.2,velocity,upper_uy,-0.014661859720945358 +steady,sr,18,7.2,velocity,center_ux,1.1574455499649048 +steady,sr,18,7.2,velocity,center_uy,8.801358490018174e-05 +steady,sr,18,7.2,velocity,lower_ux,1.115456461906433 +steady,sr,18,7.2,velocity,lower_uy,0.01483103260397911 +steady,sr,19,7.6,velocity,upper_ux,1.1162104606628418 +steady,sr,19,7.6,velocity,upper_uy,-0.014666339382529259 +steady,sr,19,7.6,velocity,center_ux,1.157994270324707 +steady,sr,19,7.6,velocity,center_uy,8.41196088003926e-05 +steady,sr,19,7.6,velocity,lower_ux,1.116036057472229 +steady,sr,19,7.6,velocity,lower_uy,0.014826646074652672 +steady,sr,20,8.0,velocity,upper_ux,1.1163182258605957 +steady,sr,20,8.0,velocity,upper_uy,-0.014665909111499786 +steady,sr,20,8.0,velocity,center_ux,1.1580824851989746 +steady,sr,20,8.0,velocity,center_uy,8.57093182276003e-05 +steady,sr,20,8.0,velocity,lower_ux,1.1161460876464844 +steady,sr,20,8.0,velocity,lower_uy,0.014828098937869072 +steady,sr,21,8.4,velocity,upper_ux,1.1157420873641968 +steady,sr,21,8.4,velocity,upper_uy,-0.014664197340607643 +steady,sr,21,8.4,velocity,center_ux,1.1575136184692383 +steady,sr,21,8.4,velocity,center_uy,8.345824608113617e-05 +steady,sr,21,8.4,velocity,lower_ux,1.1155707836151123 +steady,sr,21,8.4,velocity,lower_uy,0.014821358025074005 +steady,sr,22,8.8,velocity,upper_ux,1.115839958190918 +steady,sr,22,8.8,velocity,upper_uy,-0.014664373360574245 +steady,sr,22,8.8,velocity,center_ux,1.1576424837112427 +steady,sr,22,8.8,velocity,center_uy,8.022065594559535e-05 +steady,sr,22,8.8,velocity,lower_ux,1.1156736612319946 +steady,sr,22,8.8,velocity,lower_uy,0.014817966148257256 +steady,sr,23,9.2,velocity,upper_ux,1.115733027458191 +steady,sr,23,9.2,velocity,upper_uy,-0.014667876996099949 +steady,sr,23,9.2,velocity,center_ux,1.1575514078140259 +steady,sr,23,9.2,velocity,center_uy,7.861320045776665e-05 +steady,sr,23,9.2,velocity,lower_ux,1.1155710220336914 +steady,sr,23,9.2,velocity,lower_uy,0.014821006916463375 +steady,sr,24,9.6,velocity,upper_ux,1.1157784461975098 +steady,sr,24,9.6,velocity,upper_uy,-0.014675050042569637 +steady,sr,24,9.6,velocity,center_ux,1.1575837135314941 +steady,sr,24,9.6,velocity,center_uy,7.429573452100158e-05 +steady,sr,24,9.6,velocity,lower_ux,1.115614891052246 +steady,sr,24,9.6,velocity,lower_uy,0.014819754287600517 +steady,sr,25,10.0,velocity,upper_ux,1.1163411140441895 +steady,sr,25,10.0,velocity,upper_uy,-0.014675975777208805 +steady,sr,25,10.0,velocity,center_ux,1.1581203937530518 +steady,sr,25,10.0,velocity,center_uy,7.648398604942486e-05 +steady,sr,25,10.0,velocity,lower_ux,1.116180181503296 +steady,sr,25,10.0,velocity,lower_uy,0.014825302176177502 +steady,sr,26,10.4,velocity,upper_ux,1.1160496473312378 +steady,sr,26,10.4,velocity,upper_uy,-0.01467980071902275 +steady,sr,26,10.4,velocity,center_ux,1.1578195095062256 +steady,sr,26,10.4,velocity,center_uy,7.145028212107718e-05 +steady,sr,26,10.4,velocity,lower_ux,1.115891933441162 +steady,sr,26,10.4,velocity,lower_uy,0.01481842901557684 +steady,sr,27,10.8,velocity,upper_ux,1.1157513856887817 +steady,sr,27,10.8,velocity,upper_uy,-0.014669987373054028 +steady,sr,27,10.8,velocity,center_ux,1.157543659210205 +steady,sr,27,10.8,velocity,center_uy,7.49559621908702e-05 +steady,sr,27,10.8,velocity,lower_ux,1.1155961751937866 +steady,sr,27,10.8,velocity,lower_uy,0.014814991503953934 +steady,sr,28,11.2,velocity,upper_ux,1.115797519683838 +steady,sr,28,11.2,velocity,upper_uy,-0.014673731289803982 +steady,sr,28,11.2,velocity,center_ux,1.1576149463653564 +steady,sr,28,11.2,velocity,center_uy,6.889376527396962e-05 +steady,sr,28,11.2,velocity,lower_ux,1.1156436204910278 +steady,sr,28,11.2,velocity,lower_uy,0.014806784689426422 +steady,sr,29,11.6,velocity,upper_ux,1.1156097650527954 +steady,sr,29,11.6,velocity,upper_uy,-0.014670797623693943 +steady,sr,29,11.6,velocity,center_ux,1.157429814338684 +steady,sr,29,11.6,velocity,center_uy,7.171263132477179e-05 +steady,sr,29,11.6,velocity,lower_ux,1.115453839302063 +steady,sr,29,11.6,velocity,lower_uy,0.01481060404330492 +steady,sr,30,12.0,velocity,upper_ux,1.1161065101623535 +steady,sr,30,12.0,velocity,upper_uy,-0.014676980674266815 +steady,sr,30,12.0,velocity,center_ux,1.157907247543335 +steady,sr,30,12.0,velocity,center_uy,6.613684672629461e-05 +steady,sr,30,12.0,velocity,lower_ux,1.1159569025039673 +steady,sr,30,12.0,velocity,lower_uy,0.014806443825364113 +steady,sr,31,12.4,velocity,upper_ux,1.1162900924682617 +steady,sr,31,12.4,velocity,upper_uy,-0.01467572245746851 +steady,sr,31,12.4,velocity,center_ux,1.1580697298049927 +steady,sr,31,12.4,velocity,center_uy,6.845250027254224e-05 +steady,sr,31,12.4,velocity,lower_ux,1.1161408424377441 +steady,sr,31,12.4,velocity,lower_uy,0.014809074811637402 +steady,sr,32,12.8,velocity,upper_ux,1.115761160850525 +steady,sr,32,12.8,velocity,upper_uy,-0.014675912447273731 +steady,sr,32,12.8,velocity,center_ux,1.1575480699539185 +steady,sr,32,12.8,velocity,center_uy,6.631365249631926e-05 +steady,sr,32,12.8,velocity,lower_ux,1.1156176328659058 +steady,sr,32,12.8,velocity,lower_uy,0.014803334139287472 +steady,sr,33,13.2,velocity,upper_ux,1.1158231496810913 +steady,sr,33,13.2,velocity,upper_uy,-0.014674123376607895 +steady,sr,33,13.2,velocity,center_ux,1.1576324701309204 +steady,sr,33,13.2,velocity,center_uy,6.745688006049022e-05 +steady,sr,33,13.2,velocity,lower_ux,1.1156784296035767 +steady,sr,33,13.2,velocity,lower_uy,0.014801756478846073 +steady,sr,34,13.6,velocity,upper_ux,1.1157203912734985 +steady,sr,34,13.6,velocity,upper_uy,-0.014677239581942558 +steady,sr,34,13.6,velocity,center_ux,1.1575478315353394 +steady,sr,34,13.6,velocity,center_uy,6.623099761782214e-05 +steady,sr,34,13.6,velocity,lower_ux,1.1155787706375122 +steady,sr,34,13.6,velocity,lower_uy,0.014802477322518826 +steady,sr,35,14.0,velocity,upper_ux,1.1157002449035645 +steady,sr,35,14.0,velocity,upper_uy,-0.014682101085782051 +steady,sr,35,14.0,velocity,center_ux,1.1575199365615845 +steady,sr,35,14.0,velocity,center_uy,6.370353366946802e-05 +steady,sr,35,14.0,velocity,lower_ux,1.1155606508255005 +steady,sr,35,14.0,velocity,lower_uy,0.01480360422283411 +steady,sr,36,14.4,velocity,upper_ux,1.1162737607955933 +steady,sr,36,14.4,velocity,upper_uy,-0.014684672467410564 +steady,sr,36,14.4,velocity,center_ux,1.1580705642700195 +steady,sr,36,14.4,velocity,center_uy,6.33522795396857e-05 +steady,sr,36,14.4,velocity,lower_ux,1.1161386966705322 +steady,sr,36,14.4,velocity,lower_uy,0.014806469902396202 +steady,sr,37,14.8,velocity,upper_ux,1.1160699129104614 +steady,sr,37,14.8,velocity,upper_uy,-0.014687169343233109 +steady,sr,37,14.8,velocity,center_ux,1.1578556299209595 +steady,sr,37,14.8,velocity,center_uy,5.956847599009052e-05 +steady,sr,37,14.8,velocity,lower_ux,1.1159355640411377 +steady,sr,37,14.8,velocity,lower_uy,0.014802024699747562 +steady,sr,38,15.2,velocity,upper_ux,1.1157336235046387 +steady,sr,38,15.2,velocity,upper_uy,-0.014678887091577053 +steady,sr,38,15.2,velocity,center_ux,1.157536506652832 +steady,sr,38,15.2,velocity,center_uy,6.17905825492926e-05 +steady,sr,38,15.2,velocity,lower_ux,1.1156030893325806 +steady,sr,38,15.2,velocity,lower_uy,0.014797801151871681 +steady,sr,39,15.6,velocity,upper_ux,1.1157829761505127 +steady,sr,39,15.6,velocity,upper_uy,-0.014680279418826103 +steady,sr,39,15.6,velocity,center_ux,1.1576124429702759 +steady,sr,39,15.6,velocity,center_uy,5.803739986731671e-05 +steady,sr,39,15.6,velocity,lower_ux,1.1156551837921143 +steady,sr,39,15.6,velocity,lower_uy,0.01479086373001337 +steady,sr,40,16.0,velocity,upper_ux,1.1155884265899658 +steady,sr,40,16.0,velocity,upper_uy,-0.01467907801270485 +steady,sr,40,16.0,velocity,center_ux,1.157425880432129 +steady,sr,40,16.0,velocity,center_uy,5.979596244287677e-05 +steady,sr,40,16.0,velocity,lower_ux,1.1154636144638062 +steady,sr,40,16.0,velocity,lower_uy,0.0147928511723876 +steady,sr,41,16.4,velocity,upper_ux,1.1160048246383667 +steady,sr,41,16.4,velocity,upper_uy,-0.014682961627840996 +steady,sr,41,16.4,velocity,center_ux,1.157821774482727 +steady,sr,41,16.4,velocity,center_uy,5.674024214386009e-05 +steady,sr,41,16.4,velocity,lower_ux,1.1158807277679443 +steady,sr,41,16.4,velocity,lower_uy,0.014791023917496204 +steady,sr,42,16.8,velocity,upper_ux,1.1162583827972412 +steady,sr,42,16.8,velocity,upper_uy,-0.014685247093439102 +steady,sr,42,16.8,velocity,center_ux,1.1580523252487183 +steady,sr,42,16.8,velocity,center_uy,5.575810428126715e-05 +steady,sr,42,16.8,velocity,lower_ux,1.1161370277404785 +steady,sr,42,16.8,velocity,lower_uy,0.014792468398809433 +steady,sr,43,17.2,velocity,upper_ux,1.1157896518707275 +steady,sr,43,17.2,velocity,upper_uy,-0.014682851731777191 +steady,sr,43,17.2,velocity,center_ux,1.1575844287872314 +steady,sr,43,17.2,velocity,center_uy,5.524842708837241e-05 +steady,sr,43,17.2,velocity,lower_ux,1.1156697273254395 +steady,sr,43,17.2,velocity,lower_uy,0.014789397828280926 +steady,sr,44,17.6,velocity,upper_ux,1.115807294845581 +steady,sr,44,17.6,velocity,upper_uy,-0.014683935791254044 +steady,sr,44,17.6,velocity,center_ux,1.1576275825500488 +steady,sr,44,17.6,velocity,center_uy,5.239904567133635e-05 +steady,sr,44,17.6,velocity,lower_ux,1.1156898736953735 +steady,sr,44,17.6,velocity,lower_uy,0.014784843660891056 +steady,sr,45,18.0,velocity,upper_ux,1.1157100200653076 +steady,sr,45,18.0,velocity,upper_uy,-0.014683873392641544 +steady,sr,45,18.0,velocity,center_ux,1.157549262046814 +steady,sr,45,18.0,velocity,center_uy,5.4851960157975554e-05 +steady,sr,45,18.0,velocity,lower_ux,1.1155953407287598 +steady,sr,45,18.0,velocity,lower_uy,0.014788542874157429 +steady,sr,46,18.4,velocity,upper_ux,1.1156342029571533 +steady,sr,46,18.4,velocity,upper_uy,-0.014690449461340904 +steady,sr,46,18.4,velocity,center_ux,1.157468318939209 +steady,sr,46,18.4,velocity,center_uy,5.071346095064655e-05 +steady,sr,46,18.4,velocity,lower_ux,1.115521788597107 +steady,sr,46,18.4,velocity,lower_uy,0.014785915613174438 +steady,sr,47,18.8,velocity,upper_ux,1.1162077188491821 +steady,sr,47,18.8,velocity,upper_uy,-0.014690148644149303 +steady,sr,47,18.8,velocity,center_ux,1.1580196619033813 +steady,sr,47,18.8,velocity,center_uy,5.4281648772303015e-05 +steady,sr,47,18.8,velocity,lower_ux,1.1160985231399536 +steady,sr,47,18.8,velocity,lower_uy,0.014791815541684628 +steady,sr,48,19.2,velocity,upper_ux,1.1160835027694702 +steady,sr,48,19.2,velocity,upper_uy,-0.01469464786350727 +steady,sr,48,19.2,velocity,center_ux,1.157881736755371 +steady,sr,48,19.2,velocity,center_uy,4.855878069065511e-05 +steady,sr,48,19.2,velocity,lower_ux,1.1159751415252686 +steady,sr,48,19.2,velocity,lower_uy,0.014785426668822765 +steady,sr,49,19.6,velocity,upper_ux,1.1157265901565552 +steady,sr,49,19.6,velocity,upper_uy,-0.014685925096273422 +steady,sr,49,19.6,velocity,center_ux,1.1575376987457275 +steady,sr,49,19.6,velocity,center_uy,5.092532956041396e-05 +steady,sr,49,19.6,velocity,lower_ux,1.11561918258667 +steady,sr,49,19.6,velocity,lower_uy,0.014782666228711605 +steady,sr,50,20.0,velocity,upper_ux,1.1157801151275635 +steady,sr,50,20.0,velocity,upper_uy,-0.014687430113554 +steady,sr,50,20.0,velocity,center_ux,1.1576164960861206 +steady,sr,50,20.0,velocity,center_uy,4.542397437035106e-05 +steady,sr,50,20.0,velocity,lower_ux,1.1156764030456543 +steady,sr,50,20.0,velocity,lower_uy,0.014774504117667675 +steady,sr,51,20.4,velocity,upper_ux,1.1155813932418823 +steady,sr,51,20.4,velocity,upper_uy,-0.014686938375234604 +steady,sr,51,20.4,velocity,center_ux,1.1574286222457886 +steady,sr,51,20.4,velocity,center_uy,4.64933218609076e-05 +steady,sr,51,20.4,velocity,lower_ux,1.1154813766479492 +steady,sr,51,20.4,velocity,lower_uy,0.014776441268622875 +steady,sr,52,20.8,velocity,upper_ux,1.1159141063690186 +steady,sr,52,20.8,velocity,upper_uy,-0.014690389856696129 +steady,sr,52,20.8,velocity,center_ux,1.1577447652816772 +steady,sr,52,20.8,velocity,center_uy,4.46179838036187e-05 +steady,sr,52,20.8,velocity,lower_ux,1.1158133745193481 +steady,sr,52,20.8,velocity,lower_uy,0.014775527641177177 +steady,sr,53,21.2,velocity,upper_ux,1.1162235736846924 +steady,sr,53,21.2,velocity,upper_uy,-0.014693770557641983 +steady,sr,53,21.2,velocity,center_ux,1.1580336093902588 +steady,sr,53,21.2,velocity,center_uy,4.298527346691117e-05 +steady,sr,53,21.2,velocity,lower_ux,1.1161259412765503 +steady,sr,53,21.2,velocity,lower_uy,0.014776439405977726 +steady,sr,54,21.6,velocity,upper_ux,1.1158175468444824 +steady,sr,54,21.6,velocity,upper_uy,-0.01469257939606905 +steady,sr,54,21.6,velocity,center_ux,1.1576253175735474 +steady,sr,54,21.6,velocity,center_uy,4.253665611031465e-05 +steady,sr,54,21.6,velocity,lower_ux,1.1157220602035522 +steady,sr,54,21.6,velocity,lower_uy,0.014775196090340614 +steady,sr,55,22.0,velocity,upper_ux,1.115799903869629 +steady,sr,55,22.0,velocity,upper_uy,-0.014692869037389755 +steady,sr,55,22.0,velocity,center_ux,1.1576244831085205 +steady,sr,55,22.0,velocity,center_uy,3.8502810639329255e-05 +steady,sr,55,22.0,velocity,lower_ux,1.115699052810669 +steady,sr,55,22.0,velocity,lower_uy,0.014769465662539005 +steady,sr,56,22.4,velocity,upper_ux,1.1157095432281494 +steady,sr,56,22.4,velocity,upper_uy,-0.014692271128296852 +steady,sr,56,22.4,velocity,center_ux,1.1575545072555542 +steady,sr,56,22.4,velocity,center_uy,4.0542654460296035e-05 +steady,sr,56,22.4,velocity,lower_ux,1.115610957145691 +steady,sr,56,22.4,velocity,lower_uy,0.014772908762097359 +steady,sr,57,22.8,velocity,upper_ux,1.115587592124939 +steady,sr,57,22.8,velocity,upper_uy,-0.01469816081225872 +steady,sr,57,22.8,velocity,center_ux,1.157431960105896 +steady,sr,57,22.8,velocity,center_uy,3.656905028037727e-05 +steady,sr,57,22.8,velocity,lower_ux,1.1154894828796387 +steady,sr,57,22.8,velocity,lower_uy,0.01477053202688694 +steady,sr,58,23.2,velocity,upper_ux,1.1161437034606934 +steady,sr,58,23.2,velocity,upper_uy,-0.014697814360260963 +steady,sr,58,23.2,velocity,center_ux,1.157968521118164 +steady,sr,58,23.2,velocity,center_uy,4.045199602842331e-05 +steady,sr,58,23.2,velocity,lower_ux,1.11604642868042 +steady,sr,58,23.2,velocity,lower_uy,0.014775998890399933 +steady,sr,59,23.6,velocity,upper_ux,1.1160955429077148 +steady,sr,59,23.6,velocity,upper_uy,-0.014701269567012787 +steady,sr,59,23.6,velocity,center_ux,1.157904028892517 +steady,sr,59,23.6,velocity,center_uy,3.7528181564994156e-05 +steady,sr,59,23.6,velocity,lower_ux,1.1160011291503906 +steady,sr,59,23.6,velocity,lower_uy,0.014772173017263412 +steady,sr,60,24.0,velocity,upper_ux,1.1157290935516357 +steady,sr,60,24.0,velocity,upper_uy,-0.014693720266222954 +steady,sr,60,24.0,velocity,center_ux,1.157546877861023 +steady,sr,60,24.0,velocity,center_uy,4.1145562136080116e-05 +steady,sr,60,24.0,velocity,lower_ux,1.1156386137008667 +steady,sr,60,24.0,velocity,lower_uy,0.01476884726434946 +steady,sr,61,24.4,velocity,upper_ux,1.1157842874526978 +steady,sr,61,24.4,velocity,upper_uy,-0.014693750999867916 +steady,sr,61,24.4,velocity,center_ux,1.1576262712478638 +steady,sr,61,24.4,velocity,center_uy,3.915398701792583e-05 +steady,sr,61,24.4,velocity,lower_ux,1.115695595741272 +steady,sr,61,24.4,velocity,lower_uy,0.01476347167044878 +steady,sr,62,24.8,velocity,upper_ux,1.115585446357727 +steady,sr,62,24.8,velocity,upper_uy,-0.014693503268063068 +steady,sr,62,24.8,velocity,center_ux,1.1574403047561646 +steady,sr,62,24.8,velocity,center_uy,3.957981607527472e-05 +steady,sr,62,24.8,velocity,lower_ux,1.1154991388320923 +steady,sr,62,24.8,velocity,lower_uy,0.014764135703444481 +steady,sr,63,25.2,velocity,upper_ux,1.1158301830291748 +steady,sr,63,25.2,velocity,upper_uy,-0.014697466976940632 +steady,sr,63,25.2,velocity,center_ux,1.1576751470565796 +steady,sr,63,25.2,velocity,center_uy,3.519783422234468e-05 +steady,sr,63,25.2,velocity,lower_ux,1.115747332572937 +steady,sr,63,25.2,velocity,lower_uy,0.014763426035642624 +steady,sr,64,25.6,velocity,upper_ux,1.116189956665039 +steady,sr,64,25.6,velocity,upper_uy,-0.01470162719488144 +steady,sr,64,25.6,velocity,center_ux,1.158012866973877 +steady,sr,64,25.6,velocity,center_uy,3.13160489895381e-05 +steady,sr,64,25.6,velocity,lower_ux,1.1161086559295654 +steady,sr,64,25.6,velocity,lower_uy,0.01476499903947115 +steady,sr,65,26.0,velocity,upper_ux,1.1158477067947388 +steady,sr,65,26.0,velocity,upper_uy,-0.01470174454152584 +steady,sr,65,26.0,velocity,center_ux,1.1576660871505737 +steady,sr,65,26.0,velocity,center_uy,2.821520138240885e-05 +steady,sr,65,26.0,velocity,lower_ux,1.115768551826477 +steady,sr,65,26.0,velocity,lower_uy,0.014763341285288334 +steady,sr,66,26.4,velocity,upper_ux,1.11579430103302 +steady,sr,66,26.4,velocity,upper_uy,-0.01470131054520607 +steady,sr,66,26.4,velocity,center_ux,1.157626748085022 +steady,sr,66,26.4,velocity,center_uy,2.654609488672577e-05 +steady,sr,66,26.4,velocity,lower_ux,1.1157104969024658 +steady,sr,66,26.4,velocity,lower_uy,0.014759212732315063 +steady,sr,67,26.8,velocity,upper_ux,1.115715503692627 +steady,sr,67,26.8,velocity,upper_uy,-0.01470104604959488 +steady,sr,67,26.8,velocity,center_ux,1.1575675010681152 +steady,sr,67,26.8,velocity,center_uy,2.949260851892177e-05 +steady,sr,67,26.8,velocity,lower_ux,1.1156333684921265 +steady,sr,67,26.8,velocity,lower_uy,0.014761027880012989 +steady,sr,68,27.2,velocity,upper_ux,1.1155544519424438 +steady,sr,68,27.2,velocity,upper_uy,-0.014704547822475433 +steady,sr,68,27.2,velocity,center_ux,1.1574101448059082 +steady,sr,68,27.2,velocity,center_uy,2.9120965336915106e-05 +steady,sr,68,27.2,velocity,lower_ux,1.115472674369812 +steady,sr,68,27.2,velocity,lower_uy,0.014760718680918217 +steady,sr,69,27.6,velocity,upper_ux,1.1160768270492554 +steady,sr,69,27.6,velocity,upper_uy,-0.014704566448926926 +steady,sr,69,27.6,velocity,center_ux,1.157913088798523 +steady,sr,69,27.6,velocity,center_uy,3.226879925932735e-05 +steady,sr,69,27.6,velocity,lower_ux,1.115997552871704 +steady,sr,69,27.6,velocity,lower_uy,0.014765002764761448 +steady,sr,70,28.0,velocity,upper_ux,1.116098403930664 +steady,sr,70,28.0,velocity,upper_uy,-0.014706917107105255 +steady,sr,70,28.0,velocity,center_ux,1.15791654586792 +steady,sr,70,28.0,velocity,center_uy,2.930467417172622e-05 +steady,sr,70,28.0,velocity,lower_ux,1.1160211563110352 +steady,sr,70,28.0,velocity,lower_uy,0.014762078411877155 +steady,sr,71,28.4,velocity,upper_ux,1.1157383918762207 +steady,sr,71,28.4,velocity,upper_uy,-0.014701572246849537 +steady,sr,71,28.4,velocity,center_ux,1.1575605869293213 +steady,sr,71,28.4,velocity,center_uy,3.0346123821800575e-05 +steady,sr,71,28.4,velocity,lower_ux,1.1156606674194336 +steady,sr,71,28.4,velocity,lower_uy,0.014759311452507973 +steady,sr,72,28.8,velocity,upper_ux,1.1157923936843872 +steady,sr,72,28.8,velocity,upper_uy,-0.014699951745569706 +steady,sr,72,28.8,velocity,center_ux,1.1576356887817383 +steady,sr,72,28.8,velocity,center_uy,2.8247399313841015e-05 +steady,sr,72,28.8,velocity,lower_ux,1.115715503692627 +steady,sr,72,28.8,velocity,lower_uy,0.01475463155657053 +steady,sr,73,29.2,velocity,upper_ux,1.1155966520309448 +steady,sr,73,29.2,velocity,upper_uy,-0.01470080018043518 +steady,sr,73,29.2,velocity,center_ux,1.157456636428833 +steady,sr,73,29.2,velocity,center_uy,2.797149500111118e-05 +steady,sr,73,29.2,velocity,lower_ux,1.1155229806900024 +steady,sr,73,29.2,velocity,lower_uy,0.01475432887673378 +steady,sr,74,29.6,velocity,upper_ux,1.1157622337341309 +steady,sr,74,29.6,velocity,upper_uy,-0.014702226966619492 +steady,sr,74,29.6,velocity,center_ux,1.1576130390167236 +steady,sr,74,29.6,velocity,center_uy,2.8571041184477508e-05 +steady,sr,74,29.6,velocity,lower_ux,1.1156895160675049 +steady,sr,74,29.6,velocity,lower_uy,0.014756466262042522 +steady,sr,75,30.0,velocity,upper_ux,1.1161539554595947 +steady,sr,75,30.0,velocity,upper_uy,-0.014707126654684544 +steady,sr,75,30.0,velocity,center_ux,1.157984733581543 +steady,sr,75,30.0,velocity,center_uy,2.6944533601636067e-05 +steady,sr,75,30.0,velocity,lower_ux,1.1160826683044434 +steady,sr,75,30.0,velocity,lower_uy,0.014757521450519562 +steady,sr,76,30.4,velocity,upper_ux,1.1158798933029175 +steady,sr,76,30.4,velocity,upper_uy,-0.014705037698149681 +steady,sr,76,30.4,velocity,center_ux,1.1577017307281494 +steady,sr,76,30.4,velocity,center_uy,2.8918222596985288e-05 +steady,sr,76,30.4,velocity,lower_ux,1.1158092021942139 +steady,sr,76,30.4,velocity,lower_uy,0.014759260229766369 +steady,sr,77,30.8,velocity,upper_ux,1.1157917976379395 +steady,sr,77,30.8,velocity,upper_uy,-0.014705874025821686 +steady,sr,77,30.8,velocity,center_ux,1.157625436782837 +steady,sr,77,30.8,velocity,center_uy,2.5284831281169318e-05 +steady,sr,77,30.8,velocity,lower_ux,1.115721583366394 +steady,sr,77,30.8,velocity,lower_uy,0.014752966351807117 +steady,sr,78,31.2,velocity,upper_ux,1.1157257556915283 +steady,sr,78,31.2,velocity,upper_uy,-0.014703276567161083 +steady,sr,78,31.2,velocity,center_ux,1.1575806140899658 +steady,sr,78,31.2,velocity,center_uy,2.7785810743807815e-05 +steady,sr,78,31.2,velocity,lower_ux,1.115657925605774 +steady,sr,78,31.2,velocity,lower_uy,0.01475611887872219 +steady,sr,79,31.6,velocity,upper_ux,1.1155359745025635 +steady,sr,79,31.6,velocity,upper_uy,-0.014707911759614944 +steady,sr,79,31.6,velocity,center_ux,1.1573975086212158 +steady,sr,79,31.6,velocity,center_uy,2.3050592062645592e-05 +steady,sr,79,31.6,velocity,lower_ux,1.115470051765442 +steady,sr,79,31.6,velocity,lower_uy,0.014753132127225399 +steady,sr,80,32.0,velocity,upper_ux,1.116012454032898 +steady,sr,80,32.0,velocity,upper_uy,-0.014707423746585846 +steady,sr,80,32.0,velocity,center_ux,1.1578598022460938 +steady,sr,80,32.0,velocity,center_uy,2.621939711389132e-05 +steady,sr,80,32.0,velocity,lower_ux,1.1159478425979614 +steady,sr,80,32.0,velocity,lower_uy,0.01475903857499361 +steady,sr,81,32.4,velocity,upper_ux,1.1160968542099 +steady,sr,81,32.4,velocity,upper_uy,-0.014710669405758381 +steady,sr,81,32.4,velocity,center_ux,1.1579252481460571 +steady,sr,81,32.4,velocity,center_uy,2.413175934634637e-05 +steady,sr,81,32.4,velocity,lower_ux,1.116032600402832 +steady,sr,81,32.4,velocity,lower_uy,0.014755794778466225 +steady,sr,82,32.8,velocity,upper_ux,1.115749716758728 +steady,sr,82,32.8,velocity,upper_uy,-0.014704792760312557 +steady,sr,82,32.8,velocity,center_ux,1.1575794219970703 +steady,sr,82,32.8,velocity,center_uy,2.739129377005156e-05 +steady,sr,82,32.8,velocity,lower_ux,1.1156865358352661 +steady,sr,82,32.8,velocity,lower_uy,0.014753804542124271 +steady,sr,83,33.2,velocity,upper_ux,1.1157996654510498 +steady,sr,83,33.2,velocity,upper_uy,-0.014703351072967052 +steady,sr,83,33.2,velocity,center_ux,1.1576478481292725 +steady,sr,83,33.2,velocity,center_uy,2.5889670723699965e-05 +steady,sr,83,33.2,velocity,lower_ux,1.1157385110855103 +steady,sr,83,33.2,velocity,lower_uy,0.014749385416507721 +steady,sr,84,33.6,velocity,upper_ux,1.1156072616577148 +steady,sr,84,33.6,velocity,upper_uy,-0.01470429077744484 +steady,sr,84,33.6,velocity,center_ux,1.1574746370315552 +steady,sr,84,33.6,velocity,center_uy,2.5155180992442183e-05 +steady,sr,84,33.6,velocity,lower_ux,1.115548849105835 +steady,sr,84,33.6,velocity,lower_uy,0.014749393798410892 +steady,sr,85,34.0,velocity,upper_ux,1.1156980991363525 +steady,sr,85,34.0,velocity,upper_uy,-0.014705441892147064 +steady,sr,85,34.0,velocity,center_ux,1.1575593948364258 +steady,sr,85,34.0,velocity,center_uy,2.4752935132710263e-05 +steady,sr,85,34.0,velocity,lower_ux,1.1156405210494995 +steady,sr,85,34.0,velocity,lower_uy,0.014751407317817211 +steady,sr,86,34.4,velocity,upper_ux,1.1161190271377563 +steady,sr,86,34.4,velocity,upper_uy,-0.014711100608110428 +steady,sr,86,34.4,velocity,center_ux,1.1579606533050537 +steady,sr,86,34.4,velocity,center_uy,2.250976649520453e-05 +steady,sr,86,34.4,velocity,lower_ux,1.1160634756088257 +steady,sr,86,34.4,velocity,lower_uy,0.01475252490490675 +steady,sr,87,34.8,velocity,upper_ux,1.1159061193466187 +steady,sr,87,34.8,velocity,upper_uy,-0.014709580689668655 +steady,sr,87,34.8,velocity,center_ux,1.1577363014221191 +steady,sr,87,34.8,velocity,center_uy,2.4131131795002148e-05 +steady,sr,87,34.8,velocity,lower_ux,1.115851640701294 +steady,sr,87,34.8,velocity,lower_uy,0.01475505344569683 +steady,sr,88,35.2,velocity,upper_ux,1.1157852411270142 +steady,sr,88,35.2,velocity,upper_uy,-0.01471020933240652 +steady,sr,88,35.2,velocity,center_ux,1.157627820968628 +steady,sr,88,35.2,velocity,center_uy,2.102055623254273e-05 +steady,sr,88,35.2,velocity,lower_ux,1.1157342195510864 +steady,sr,88,35.2,velocity,lower_uy,0.014749132096767426 +steady,sr,89,35.6,velocity,upper_ux,1.1157357692718506 +steady,sr,89,35.6,velocity,upper_uy,-0.014707640744745731 +steady,sr,89,35.6,velocity,center_ux,1.1575959920883179 +steady,sr,89,35.6,velocity,center_uy,2.3563648937852122e-05 +steady,sr,89,35.6,velocity,lower_ux,1.1156837940216064 +steady,sr,89,35.6,velocity,lower_uy,0.014750107191503048 +steady,sr,90,36.0,velocity,upper_ux,1.1155245304107666 +steady,sr,90,36.0,velocity,upper_uy,-0.014711114577949047 +steady,sr,90,36.0,velocity,center_ux,1.157392978668213 +steady,sr,90,36.0,velocity,center_uy,2.0317449525464326e-05 +steady,sr,90,36.0,velocity,lower_ux,1.1154764890670776 +steady,sr,90,36.0,velocity,lower_uy,0.01474796887487173 +steady,sr,91,36.4,velocity,upper_ux,1.1159504652023315 +steady,sr,91,36.4,velocity,upper_uy,-0.014711379073560238 +steady,sr,91,36.4,velocity,center_ux,1.1578052043914795 +steady,sr,91,36.4,velocity,center_uy,2.0273568225093186e-05 +steady,sr,91,36.4,velocity,lower_ux,1.1159000396728516 +steady,sr,91,36.4,velocity,lower_uy,0.014750703237950802 +steady,sr,92,36.8,velocity,upper_ux,1.1160871982574463 +steady,sr,92,36.8,velocity,upper_uy,-0.014714394696056843 +steady,sr,92,36.8,velocity,center_ux,1.1579246520996094 +steady,sr,92,36.8,velocity,center_uy,1.72033287526574e-05 +steady,sr,92,36.8,velocity,lower_ux,1.1160380840301514 +steady,sr,92,36.8,velocity,lower_uy,0.01474857609719038 +steady,sr,93,37.2,velocity,upper_ux,1.11576509475708 +steady,sr,93,37.2,velocity,upper_uy,-0.01471127849072218 +steady,sr,93,37.2,velocity,center_ux,1.157601237297058 +steady,sr,93,37.2,velocity,center_uy,1.6302772564813495e-05 +steady,sr,93,37.2,velocity,lower_ux,1.1157166957855225 +steady,sr,93,37.2,velocity,lower_uy,0.014745447784662247 +steady,sr,94,37.6,velocity,upper_ux,1.1158056259155273 +steady,sr,94,37.6,velocity,upper_uy,-0.014708914794027805 +steady,sr,94,37.6,velocity,center_ux,1.1576603651046753 +steady,sr,94,37.6,velocity,center_uy,1.549929402244743e-05 +steady,sr,94,37.6,velocity,lower_ux,1.1157573461532593 +steady,sr,94,37.6,velocity,lower_uy,0.014742221683263779 +steady,sr,95,38.0,velocity,upper_ux,1.1156281232833862 +steady,sr,95,38.0,velocity,upper_uy,-0.014710650779306889 +steady,sr,95,38.0,velocity,center_ux,1.1574968099594116 +steady,sr,95,38.0,velocity,center_uy,1.4059153727430385e-05 +steady,sr,95,38.0,velocity,lower_ux,1.1155787706375122 +steady,sr,95,38.0,velocity,lower_uy,0.014741117134690285 +steady,sr,96,38.4,velocity,upper_ux,1.1156498193740845 +steady,sr,96,38.4,velocity,upper_uy,-0.014711069874465466 +steady,sr,96,38.4,velocity,center_ux,1.1575157642364502 +steady,sr,96,38.4,velocity,center_uy,1.5210888705041725e-05 +steady,sr,96,38.4,velocity,lower_ux,1.1155996322631836 +steady,sr,96,38.4,velocity,lower_uy,0.014743677340447903 +steady,sr,97,38.8,velocity,upper_ux,1.116080641746521 +steady,sr,97,38.8,velocity,upper_uy,-0.014716105535626411 +steady,sr,97,38.8,velocity,center_ux,1.1579300165176392 +steady,sr,97,38.8,velocity,center_uy,1.3468681572703645e-05 +steady,sr,97,38.8,velocity,lower_ux,1.116033673286438 +steady,sr,97,38.8,velocity,lower_uy,0.014744993299245834 +steady,sr,98,39.2,velocity,upper_ux,1.1159303188323975 +steady,sr,98,39.2,velocity,upper_uy,-0.014715013094246387 +steady,sr,98,39.2,velocity,center_ux,1.1577651500701904 +steady,sr,98,39.2,velocity,center_uy,1.6891230188775808e-05 +steady,sr,98,39.2,velocity,lower_ux,1.1158827543258667 +steady,sr,98,39.2,velocity,lower_uy,0.01474833395332098 +steady,sr,99,39.6,velocity,upper_ux,1.1157901287078857 +steady,sr,99,39.6,velocity,upper_uy,-0.014713837765157223 +steady,sr,99,39.6,velocity,center_ux,1.1576305627822876 +steady,sr,99,39.6,velocity,center_uy,1.6197569493670017e-05 +steady,sr,99,39.6,velocity,lower_ux,1.1157410144805908 +steady,sr,99,39.6,velocity,lower_uy,0.01474312786012888 +steady,sr,100,40.0,velocity,upper_ux,1.1157505512237549 +steady,sr,100,40.0,velocity,upper_uy,-0.01471130270510912 +steady,sr,100,40.0,velocity,center_ux,1.1576136350631714 +steady,sr,100,40.0,velocity,center_uy,1.831887311709579e-05 +steady,sr,100,40.0,velocity,lower_ux,1.115705132484436 +steady,sr,100,40.0,velocity,lower_uy,0.014743885025382042 +steady,sr,101,40.4,velocity,upper_ux,1.1155312061309814 +steady,sr,101,40.4,velocity,upper_uy,-0.014713633805513382 +steady,sr,101,40.4,velocity,center_ux,1.15740168094635 +steady,sr,101,40.4,velocity,center_uy,1.525969673821237e-05 +steady,sr,101,40.4,velocity,lower_ux,1.1154847145080566 +steady,sr,101,40.4,velocity,lower_uy,0.01474305521696806 +steady,sr,102,40.8,velocity,upper_ux,1.1158936023712158 +steady,sr,102,40.8,velocity,upper_uy,-0.014714482240378857 +steady,sr,102,40.8,velocity,center_ux,1.1577552556991577 +steady,sr,102,40.8,velocity,center_uy,1.3991655578138307e-05 +steady,sr,102,40.8,velocity,lower_ux,1.1158467531204224 +steady,sr,102,40.8,velocity,lower_uy,0.014744797721505165 +steady,sr,103,41.2,velocity,upper_ux,1.1160800457000732 +steady,sr,103,41.2,velocity,upper_uy,-0.014716007746756077 +steady,sr,103,41.2,velocity,center_ux,1.1579231023788452 +steady,sr,103,41.2,velocity,center_uy,1.3711189239984378e-05 +steady,sr,103,41.2,velocity,lower_ux,1.1160318851470947 +steady,sr,103,41.2,velocity,lower_uy,0.014745899476110935 +steady,sr,104,41.6,velocity,upper_ux,1.1157869100570679 +steady,sr,104,41.6,velocity,upper_uy,-0.014713283628225327 +steady,sr,104,41.6,velocity,center_ux,1.1576250791549683 +steady,sr,104,41.6,velocity,center_uy,1.545902887301054e-05 +steady,sr,104,41.6,velocity,lower_ux,1.1157402992248535 +steady,sr,104,41.6,velocity,lower_uy,0.014742927625775337 +steady,sr,105,42.0,velocity,upper_ux,1.1158186197280884 +steady,sr,105,42.0,velocity,upper_uy,-0.014709715731441975 +steady,sr,105,42.0,velocity,center_ux,1.1576719284057617 +steady,sr,105,42.0,velocity,center_uy,1.8402322893962264e-05 +steady,sr,105,42.0,velocity,lower_ux,1.1157755851745605 +steady,sr,105,42.0,velocity,lower_uy,0.014741556718945503 +steady,sr,106,42.4,velocity,upper_ux,1.115648627281189 +steady,sr,106,42.4,velocity,upper_uy,-0.01471103448420763 +steady,sr,106,42.4,velocity,center_ux,1.157518982887268 +steady,sr,106,42.4,velocity,center_uy,1.7337664758088067e-05 +steady,sr,106,42.4,velocity,lower_ux,1.1156072616577148 +steady,sr,106,42.4,velocity,lower_uy,0.01474007684737444 +steady,sr,107,42.8,velocity,upper_ux,1.1156105995178223 +steady,sr,107,42.8,velocity,upper_uy,-0.014710677787661552 +steady,sr,107,42.8,velocity,center_ux,1.1574822664260864 +steady,sr,107,42.8,velocity,center_uy,1.8158430975745432e-05 +steady,sr,107,42.8,velocity,lower_ux,1.1155686378479004 +steady,sr,107,42.8,velocity,lower_uy,0.014743288978934288 +steady,sr,108,43.2,velocity,upper_ux,1.1160423755645752 +steady,sr,108,43.2,velocity,upper_uy,-0.014716875739395618 +steady,sr,108,43.2,velocity,center_ux,1.1578984260559082 +steady,sr,108,43.2,velocity,center_uy,1.4274972272687592e-05 +steady,sr,108,43.2,velocity,lower_ux,1.1160012483596802 +steady,sr,108,43.2,velocity,lower_uy,0.014744342304766178 +steady,sr,109,43.6,velocity,upper_ux,1.1159491539001465 +steady,sr,109,43.6,velocity,upper_uy,-0.01471535675227642 +steady,sr,109,43.6,velocity,center_ux,1.1577913761138916 +steady,sr,109,43.6,velocity,center_uy,1.6513273294549435e-05 +steady,sr,109,43.6,velocity,lower_ux,1.1159087419509888 +steady,sr,109,43.6,velocity,lower_uy,0.014747828245162964 +steady,sr,110,44.0,velocity,upper_ux,1.1157901287078857 +steady,sr,110,44.0,velocity,upper_uy,-0.014715668745338917 +steady,sr,110,44.0,velocity,center_ux,1.157637357711792 +steady,sr,110,44.0,velocity,center_uy,1.3963573110231664e-05 +steady,sr,110,44.0,velocity,lower_ux,1.1157501935958862 +steady,sr,110,44.0,velocity,lower_uy,0.014742587693035603 +steady,sr,111,44.4,velocity,upper_ux,1.115766167640686 +steady,sr,111,44.4,velocity,upper_uy,-0.014711780473589897 +steady,sr,111,44.4,velocity,center_ux,1.1576327085494995 +steady,sr,111,44.4,velocity,center_uy,1.75377990672132e-05 +steady,sr,111,44.4,velocity,lower_ux,1.1157313585281372 +steady,sr,111,44.4,velocity,lower_uy,0.014743673615157604 +steady,sr,112,44.8,velocity,upper_ux,1.1155405044555664 +steady,sr,112,44.8,velocity,upper_uy,-0.014714146964251995 +steady,sr,112,44.8,velocity,center_ux,1.1574150323867798 +steady,sr,112,44.8,velocity,center_uy,1.6364250768674538e-05 +steady,sr,112,44.8,velocity,lower_ux,1.1155004501342773 +steady,sr,112,44.8,velocity,lower_uy,0.01474156603217125 +steady,sr,113,45.2,velocity,upper_ux,1.115835189819336 +steady,sr,113,45.2,velocity,upper_uy,-0.014713751152157784 +steady,sr,113,45.2,velocity,center_ux,1.1577035188674927 +steady,sr,113,45.2,velocity,center_uy,1.7293627024628222e-05 +steady,sr,113,45.2,velocity,lower_ux,1.115800380706787 +steady,sr,113,45.2,velocity,lower_uy,0.014743622392416 +steady,sr,114,45.6,velocity,upper_ux,1.116061806678772 +steady,sr,114,45.6,velocity,upper_uy,-0.01471644639968872 +steady,sr,114,45.6,velocity,center_ux,1.157913088798523 +steady,sr,114,45.6,velocity,center_uy,1.5097739378688857e-05 +steady,sr,114,45.6,velocity,lower_ux,1.1160260438919067 +steady,sr,114,45.6,velocity,lower_uy,0.014743982814252377 +steady,sr,115,46.0,velocity,upper_ux,1.11580228805542 +steady,sr,115,46.0,velocity,upper_uy,-0.014715074561536312 +steady,sr,115,46.0,velocity,center_ux,1.1576488018035889 +steady,sr,115,46.0,velocity,center_uy,1.4496186850010417e-05 +steady,sr,115,46.0,velocity,lower_ux,1.115770936012268 +steady,sr,115,46.0,velocity,lower_uy,0.014742482453584671 +steady,sr,116,46.4,velocity,upper_ux,1.1158249378204346 +steady,sr,116,46.4,velocity,upper_uy,-0.014712040312588215 +steady,sr,116,46.4,velocity,center_ux,1.1576817035675049 +steady,sr,116,46.4,velocity,center_uy,1.5285499102901667e-05 +steady,sr,116,46.4,velocity,lower_ux,1.1157920360565186 +steady,sr,116,46.4,velocity,lower_uy,0.014740492217242718 +steady,sr,117,46.8,velocity,upper_ux,1.1156704425811768 +steady,sr,117,46.8,velocity,upper_uy,-0.014713799580931664 +steady,sr,117,46.8,velocity,center_ux,1.1575430631637573 +steady,sr,117,46.8,velocity,center_uy,1.4116189049673267e-05 +steady,sr,117,46.8,velocity,lower_ux,1.1156363487243652 +steady,sr,117,46.8,velocity,lower_uy,0.014739270322024822 +steady,sr,118,47.2,velocity,upper_ux,1.1155788898468018 +steady,sr,118,47.2,velocity,upper_uy,-0.014713369309902191 +steady,sr,118,47.2,velocity,center_ux,1.157455563545227 +steady,sr,118,47.2,velocity,center_uy,1.5830235497560352e-05 +steady,sr,118,47.2,velocity,lower_ux,1.1155502796173096 +steady,sr,118,47.2,velocity,lower_uy,0.014741741120815277 +steady,sr,119,47.6,velocity,upper_ux,1.1159980297088623 +steady,sr,119,47.6,velocity,upper_uy,-0.014719283208251 +steady,sr,119,47.6,velocity,center_ux,1.157861590385437 +steady,sr,119,47.6,velocity,center_uy,1.3167361430532765e-05 +steady,sr,119,47.6,velocity,lower_ux,1.115970492362976 +steady,sr,119,47.6,velocity,lower_uy,0.014741949737071991 +steady,sr,120,48.0,velocity,upper_ux,1.1159590482711792 +steady,sr,120,48.0,velocity,upper_uy,-0.014718408696353436 +steady,sr,120,48.0,velocity,center_ux,1.1578081846237183 +steady,sr,120,48.0,velocity,center_uy,1.4976914826547727e-05 +steady,sr,120,48.0,velocity,lower_ux,1.1159323453903198 +steady,sr,120,48.0,velocity,lower_uy,0.014745006337761879 +steady,sr,121,48.4,velocity,upper_ux,1.1157903671264648 +steady,sr,121,48.4,velocity,upper_uy,-0.014718299731612206 +steady,sr,121,48.4,velocity,center_ux,1.1576403379440308 +steady,sr,121,48.4,velocity,center_uy,1.16707824417972e-05 +steady,sr,121,48.4,velocity,lower_ux,1.1157641410827637 +steady,sr,121,48.4,velocity,lower_uy,0.01473990362137556 +steady,sr,122,48.8,velocity,upper_ux,1.1157841682434082 +steady,sr,122,48.8,velocity,upper_uy,-0.01471611950546503 +steady,sr,122,48.8,velocity,center_ux,1.1576497554779053 +steady,sr,122,48.8,velocity,center_uy,1.1456360880401917e-05 +steady,sr,122,48.8,velocity,lower_ux,1.1157561540603638 +steady,sr,122,48.8,velocity,lower_uy,0.01473955623805523 +steady,sr,123,49.2,velocity,upper_ux,1.1155526638031006 +steady,sr,123,49.2,velocity,upper_uy,-0.014717234298586845 +steady,sr,123,49.2,velocity,center_ux,1.1574326753616333 +steady,sr,123,49.2,velocity,center_uy,9.543477972329129e-06 +steady,sr,123,49.2,velocity,lower_ux,1.1155273914337158 +steady,sr,123,49.2,velocity,lower_uy,0.014738286845386028 +steady,sr,124,49.6,velocity,upper_ux,1.115783452987671 +steady,sr,124,49.6,velocity,upper_uy,-0.014718231745064259 +steady,sr,124,49.6,velocity,center_ux,1.1576560735702515 +steady,sr,124,49.6,velocity,center_uy,9.301300451625139e-06 +steady,sr,124,49.6,velocity,lower_ux,1.1157574653625488 +steady,sr,124,49.6,velocity,lower_uy,0.014738514088094234 +steady,sr,125,50.0,velocity,upper_ux,1.116040825843811 +steady,sr,125,50.0,velocity,upper_uy,-0.014719069004058838 +steady,sr,125,50.0,velocity,center_ux,1.157899022102356 +steady,sr,125,50.0,velocity,center_uy,1.0656722224666737e-05 +steady,sr,125,50.0,velocity,lower_ux,1.1160162687301636 +steady,sr,125,50.0,velocity,lower_uy,0.014740828424692154 +steady,sr,126,50.4,velocity,upper_ux,1.1158186197280884 +steady,sr,126,50.4,velocity,upper_uy,-0.014719557017087936 +steady,sr,126,50.4,velocity,center_ux,1.1576690673828125 +steady,sr,126,50.4,velocity,center_uy,9.86774011835223e-06 +steady,sr,126,50.4,velocity,lower_ux,1.1157960891723633 +steady,sr,126,50.4,velocity,lower_uy,0.014738085679709911 +steady,sr,127,50.8,velocity,upper_ux,1.1158300638198853 +steady,sr,127,50.8,velocity,upper_uy,-0.014715118333697319 +steady,sr,127,50.8,velocity,center_ux,1.1576875448226929 +steady,sr,127,50.8,velocity,center_uy,1.2255715773790143e-05 +steady,sr,127,50.8,velocity,lower_ux,1.1158047914505005 +steady,sr,127,50.8,velocity,lower_uy,0.014737512916326523 +steady,sr,128,51.2,velocity,upper_ux,1.1156920194625854 +steady,sr,128,51.2,velocity,upper_uy,-0.01471760869026184 +steady,sr,128,51.2,velocity,center_ux,1.1575664281845093 +steady,sr,128,51.2,velocity,center_uy,9.981369657907635e-06 +steady,sr,128,51.2,velocity,lower_ux,1.115669846534729 +steady,sr,128,51.2,velocity,lower_uy,0.014734994620084763 +steady,sr,129,51.6,velocity,upper_ux,1.1155591011047363 +steady,sr,129,51.6,velocity,upper_uy,-0.014716842211782932 +steady,sr,129,51.6,velocity,center_ux,1.1574386358261108 +steady,sr,129,51.6,velocity,center_uy,1.1667535545711871e-05 +steady,sr,129,51.6,velocity,lower_ux,1.1155356168746948 +steady,sr,129,51.6,velocity,lower_uy,0.014737843535840511 +steady,sr,130,52.0,velocity,upper_ux,1.115957498550415 +steady,sr,130,52.0,velocity,upper_uy,-0.014721930027008057 +steady,sr,130,52.0,velocity,center_ux,1.1578246355056763 +steady,sr,130,52.0,velocity,center_uy,8.232766049331985e-06 +steady,sr,130,52.0,velocity,lower_ux,1.115933895111084 +steady,sr,130,52.0,velocity,lower_uy,0.014738054014742374 +steady,sr,131,52.4,velocity,upper_ux,1.1159688234329224 +steady,sr,131,52.4,velocity,upper_uy,-0.01472195889800787 +steady,sr,131,52.4,velocity,center_ux,1.1578205823898315 +steady,sr,131,52.4,velocity,center_uy,8.857270586304367e-06 +steady,sr,131,52.4,velocity,lower_ux,1.1159452199935913 +steady,sr,131,52.4,velocity,lower_uy,0.014741153456270695 +steady,sr,132,52.8,velocity,upper_ux,1.1157939434051514 +steady,sr,132,52.8,velocity,upper_uy,-0.014721537008881569 +steady,sr,132,52.8,velocity,center_ux,1.1576465368270874 +steady,sr,132,52.8,velocity,center_uy,6.7592773120850325e-06 +steady,sr,132,52.8,velocity,lower_ux,1.1157723665237427 +steady,sr,132,52.8,velocity,lower_uy,0.014737077057361603 +steady,sr,133,53.2,velocity,upper_ux,1.1158024072647095 +steady,sr,133,53.2,velocity,upper_uy,-0.014719057828187943 +steady,sr,133,53.2,velocity,center_ux,1.157669186592102 +steady,sr,133,53.2,velocity,center_uy,7.695005479035899e-06 +steady,sr,133,53.2,velocity,lower_ux,1.115779161453247 +steady,sr,133,53.2,velocity,lower_uy,0.014735884964466095 +steady,sr,134,53.6,velocity,upper_ux,1.1155747175216675 +steady,sr,134,53.6,velocity,upper_uy,-0.014718391001224518 +steady,sr,134,53.6,velocity,center_ux,1.1574535369873047 +steady,sr,134,53.6,velocity,center_uy,8.71772863320075e-06 +steady,sr,134,53.6,velocity,lower_ux,1.1155496835708618 +steady,sr,134,53.6,velocity,lower_uy,0.014735821634531021 +steady,sr,135,54.0,velocity,upper_ux,1.1157375574111938 +steady,sr,135,54.0,velocity,upper_uy,-0.014719344675540924 +steady,sr,135,54.0,velocity,center_ux,1.157616138458252 +steady,sr,135,54.0,velocity,center_uy,9.247432899428532e-06 +steady,sr,135,54.0,velocity,lower_ux,1.1157145500183105 +steady,sr,135,54.0,velocity,lower_uy,0.014735901728272438 +steady,sr,136,54.4,velocity,upper_ux,1.1160191297531128 +steady,sr,136,54.4,velocity,upper_uy,-0.014720778912305832 +steady,sr,136,54.4,velocity,center_ux,1.1578830480575562 +steady,sr,136,54.4,velocity,center_uy,1.0390640454716049e-05 +steady,sr,136,54.4,velocity,lower_ux,1.1159995794296265 +steady,sr,136,54.4,velocity,lower_uy,0.014738645404577255 +steady,sr,137,54.8,velocity,upper_ux,1.1158397197723389 +steady,sr,137,54.8,velocity,upper_uy,-0.014721977524459362 +steady,sr,137,54.8,velocity,center_ux,1.1576900482177734 +steady,sr,137,54.8,velocity,center_uy,8.345946298504714e-06 +steady,sr,137,54.8,velocity,lower_ux,1.1158149242401123 +steady,sr,137,54.8,velocity,lower_uy,0.014735991135239601 +steady,sr,138,55.2,velocity,upper_ux,1.1158355474472046 +steady,sr,138,55.2,velocity,upper_uy,-0.014718037098646164 +steady,sr,138,55.2,velocity,center_ux,1.1576945781707764 +steady,sr,138,55.2,velocity,center_uy,9.289972695114557e-06 +steady,sr,138,55.2,velocity,lower_ux,1.1158149242401123 +steady,sr,138,55.2,velocity,lower_uy,0.014735579490661621 +steady,sr,139,55.6,velocity,upper_ux,1.115715742111206 +steady,sr,139,55.6,velocity,upper_uy,-0.014719984494149685 +steady,sr,139,55.6,velocity,center_ux,1.157590389251709 +steady,sr,139,55.6,velocity,center_uy,6.4264581851603e-06 +steady,sr,139,55.6,velocity,lower_ux,1.1156940460205078 +steady,sr,139,55.6,velocity,lower_uy,0.014732737094163895 +steady,sr,140,56.0,velocity,upper_ux,1.1155505180358887 +steady,sr,140,56.0,velocity,upper_uy,-0.01471884734928608 +steady,sr,140,56.0,velocity,center_ux,1.1574314832687378 +steady,sr,140,56.0,velocity,center_uy,8.667348993185442e-06 +steady,sr,140,56.0,velocity,lower_ux,1.1155285835266113 +steady,sr,140,56.0,velocity,lower_uy,0.014735549688339233 +steady,sr,141,56.4,velocity,upper_ux,1.1159170866012573 +steady,sr,141,56.4,velocity,upper_uy,-0.014723498374223709 +steady,sr,141,56.4,velocity,center_ux,1.157788872718811 +steady,sr,141,56.4,velocity,center_uy,6.6689053710433654e-06 +steady,sr,141,56.4,velocity,lower_ux,1.1158965826034546 +steady,sr,141,56.4,velocity,lower_uy,0.014735938049852848 +steady,sr,142,56.8,velocity,upper_ux,1.115971326828003 +steady,sr,142,56.8,velocity,upper_uy,-0.014723573811352253 +steady,sr,142,56.8,velocity,center_ux,1.1578282117843628 +steady,sr,142,56.8,velocity,center_uy,8.212584361899644e-06 +steady,sr,142,56.8,velocity,lower_ux,1.1159520149230957 +steady,sr,142,56.8,velocity,lower_uy,0.014739158563315868 +steady,sr,143,57.2,velocity,upper_ux,1.1157993078231812 +steady,sr,143,57.2,velocity,upper_uy,-0.014723049476742744 +steady,sr,143,57.2,velocity,center_ux,1.1576534509658813 +steady,sr,143,57.2,velocity,center_uy,6.324694368231576e-06 +steady,sr,143,57.2,velocity,lower_ux,1.115781307220459 +steady,sr,143,57.2,velocity,lower_uy,0.014735487289726734 +steady,sr,144,57.6,velocity,upper_ux,1.1158162355422974 +steady,sr,144,57.6,velocity,upper_uy,-0.014720351435244083 +steady,sr,144,57.6,velocity,center_ux,1.157684326171875 +steady,sr,144,57.6,velocity,center_uy,6.685878815915203e-06 +steady,sr,144,57.6,velocity,lower_ux,1.1157993078231812 +steady,sr,144,57.6,velocity,lower_uy,0.014734459109604359 +steady,sr,145,58.0,velocity,upper_ux,1.1155962944030762 +steady,sr,145,58.0,velocity,upper_uy,-0.014720209874212742 +steady,sr,145,58.0,velocity,center_ux,1.157475471496582 +steady,sr,145,58.0,velocity,center_uy,6.349673640215769e-06 +steady,sr,145,58.0,velocity,lower_ux,1.1155792474746704 +steady,sr,145,58.0,velocity,lower_uy,0.014733669348061085 +steady,sr,146,58.4,velocity,upper_ux,1.1156971454620361 +steady,sr,146,58.4,velocity,upper_uy,-0.014720963314175606 +steady,sr,146,58.4,velocity,center_ux,1.157576322555542 +steady,sr,146,58.4,velocity,center_uy,6.293018941505579e-06 +steady,sr,146,58.4,velocity,lower_ux,1.1156789064407349 +steady,sr,146,58.4,velocity,lower_uy,0.014733023941516876 +steady,sr,147,58.8,velocity,upper_ux,1.1159987449645996 +steady,sr,147,58.8,velocity,upper_uy,-0.014722256921231747 +steady,sr,147,58.8,velocity,center_ux,1.157861590385437 +steady,sr,147,58.8,velocity,center_uy,7.33652859707945e-06 +steady,sr,147,58.8,velocity,lower_ux,1.115977168083191 +steady,sr,147,58.8,velocity,lower_uy,0.014735868200659752 +steady,sr,148,59.2,velocity,upper_ux,1.1158533096313477 +steady,sr,148,59.2,velocity,upper_uy,-0.014723848551511765 +steady,sr,148,59.2,velocity,center_ux,1.1577085256576538 +steady,sr,148,59.2,velocity,center_uy,5.843940925842617e-06 +steady,sr,148,59.2,velocity,lower_ux,1.115835428237915 +steady,sr,148,59.2,velocity,lower_uy,0.014734630472958088 +steady,sr,149,59.6,velocity,upper_ux,1.1158373355865479 +steady,sr,149,59.6,velocity,upper_uy,-0.014720218256115913 +steady,sr,149,59.6,velocity,center_ux,1.1576976776123047 +steady,sr,149,59.6,velocity,center_uy,6.708156888635131e-06 +steady,sr,149,59.6,velocity,lower_ux,1.1158207654953003 +steady,sr,149,59.6,velocity,lower_uy,0.014734122902154922 +steady,sr,150,60.0,velocity,upper_ux,1.1157406568527222 +steady,sr,150,60.0,velocity,upper_uy,-0.014720987528562546 +steady,sr,150,60.0,velocity,center_ux,1.1576149463653564 +steady,sr,150,60.0,velocity,center_uy,4.358083060651552e-06 +steady,sr,150,60.0,velocity,lower_ux,1.11572265625 +steady,sr,150,60.0,velocity,lower_uy,0.014731032773852348 +steady,sr,151,60.4,velocity,upper_ux,1.1155482530593872 +steady,sr,151,60.4,velocity,upper_uy,-0.014720209874212742 +steady,sr,151,60.4,velocity,center_ux,1.1574324369430542 +steady,sr,151,60.4,velocity,center_uy,5.873055670235772e-06 +steady,sr,151,60.4,velocity,lower_ux,1.1155297756195068 +steady,sr,151,60.4,velocity,lower_uy,0.014733821153640747 +steady,sr,152,60.8,velocity,upper_ux,1.1158777475357056 +steady,sr,152,60.8,velocity,upper_uy,-0.014723612926900387 +steady,sr,152,60.8,velocity,center_ux,1.1577531099319458 +steady,sr,152,60.8,velocity,center_uy,6.192859018483432e-06 +steady,sr,152,60.8,velocity,lower_ux,1.115859866142273 +steady,sr,152,60.8,velocity,lower_uy,0.014735412783920765 +steady,sr,153,61.2,velocity,upper_ux,1.1159688234329224 +steady,sr,153,61.2,velocity,upper_uy,-0.014724966138601303 +steady,sr,153,61.2,velocity,center_ux,1.157829999923706 +steady,sr,153,61.2,velocity,center_uy,8.473246452922467e-06 +steady,sr,153,61.2,velocity,lower_ux,1.1159541606903076 +steady,sr,153,61.2,velocity,lower_uy,0.01473766565322876 +steady,sr,154,61.6,velocity,upper_ux,1.1158043146133423 +steady,sr,154,61.6,velocity,upper_uy,-0.014723232947289944 +steady,sr,154,61.6,velocity,center_ux,1.1576594114303589 +steady,sr,154,61.6,velocity,center_uy,9.162997230305336e-06 +steady,sr,154,61.6,velocity,lower_ux,1.1157889366149902 +steady,sr,154,61.6,velocity,lower_uy,0.014735857024788857 +steady,sr,155,62.0,velocity,upper_ux,1.1158323287963867 +steady,sr,155,62.0,velocity,upper_uy,-0.014722499065101147 +steady,sr,155,62.0,velocity,center_ux,1.157697319984436 +steady,sr,155,62.0,velocity,center_uy,7.179274234658806e-06 +steady,sr,155,62.0,velocity,lower_ux,1.1158151626586914 +steady,sr,155,62.0,velocity,lower_uy,0.014733398333191872 +steady,sr,156,62.4,velocity,upper_ux,1.115621566772461 +steady,sr,156,62.4,velocity,upper_uy,-0.014720887877047062 +steady,sr,156,62.4,velocity,center_ux,1.1575018167495728 +steady,sr,156,62.4,velocity,center_uy,6.1401187849696726e-06 +steady,sr,156,62.4,velocity,lower_ux,1.1156035661697388 +steady,sr,156,62.4,velocity,lower_uy,0.014733067713677883 +steady,sr,157,62.8,velocity,upper_ux,1.1156630516052246 +steady,sr,157,62.8,velocity,upper_uy,-0.014722702093422413 +steady,sr,157,62.8,velocity,center_ux,1.1575459241867065 +steady,sr,157,62.8,velocity,center_uy,3.6492572235147236e-06 +steady,sr,157,62.8,velocity,lower_ux,1.1156492233276367 +steady,sr,157,62.8,velocity,lower_uy,0.014731373637914658 +steady,sr,158,63.2,velocity,upper_ux,1.1159706115722656 +steady,sr,158,63.2,velocity,upper_uy,-0.014723078347742558 +steady,sr,158,63.2,velocity,center_ux,1.1578401327133179 +steady,sr,158,63.2,velocity,center_uy,5.5047553360054735e-06 +steady,sr,158,63.2,velocity,lower_ux,1.1159546375274658 +steady,sr,158,63.2,velocity,lower_uy,0.01473493967205286 +steady,sr,159,63.6,velocity,upper_ux,1.1158666610717773 +steady,sr,159,63.6,velocity,upper_uy,-0.014725599437952042 +steady,sr,159,63.6,velocity,center_ux,1.157723307609558 +steady,sr,159,63.6,velocity,center_uy,4.075736342201708e-06 +steady,sr,159,63.6,velocity,lower_ux,1.115851879119873 +steady,sr,159,63.6,velocity,lower_uy,0.01473331917077303 +steady,sr,160,64.0,velocity,upper_ux,1.1158384084701538 +steady,sr,160,64.0,velocity,upper_uy,-0.014721945859491825 +steady,sr,160,64.0,velocity,center_ux,1.1577001810073853 +steady,sr,160,64.0,velocity,center_uy,5.3812150326848496e-06 +steady,sr,160,64.0,velocity,lower_ux,1.1158243417739868 +steady,sr,160,64.0,velocity,lower_uy,0.014733034186065197 +steady,sr,161,64.4,velocity,upper_ux,1.1157609224319458 +steady,sr,161,64.4,velocity,upper_uy,-0.014723088592290878 +steady,sr,161,64.4,velocity,center_ux,1.15763521194458 +steady,sr,161,64.4,velocity,center_uy,2.9670407002413413e-06 +steady,sr,161,64.4,velocity,lower_ux,1.1157469749450684 +steady,sr,161,64.4,velocity,lower_uy,0.014730926603078842 +steady,sr,162,64.8,velocity,upper_ux,1.115552544593811 +steady,sr,162,64.8,velocity,upper_uy,-0.014722171239554882 +steady,sr,162,64.8,velocity,center_ux,1.1574362516403198 +steady,sr,162,64.8,velocity,center_uy,4.8949455049296375e-06 +steady,sr,162,64.8,velocity,lower_ux,1.1155390739440918 +steady,sr,162,64.8,velocity,lower_uy,0.01473301649093628 +steady,sr,163,65.2,velocity,upper_ux,1.115837812423706 +steady,sr,163,65.2,velocity,upper_uy,-0.014724532142281532 +steady,sr,163,65.2,velocity,center_ux,1.1577162742614746 +steady,sr,163,65.2,velocity,center_uy,5.119329216540791e-06 +steady,sr,163,65.2,velocity,lower_ux,1.1158238649368286 +steady,sr,163,65.2,velocity,lower_uy,0.014733651652932167 +steady,sr,164,65.6,velocity,upper_ux,1.1159645318984985 +steady,sr,164,65.6,velocity,upper_uy,-0.014726033434271812 +steady,sr,164,65.6,velocity,center_ux,1.1578279733657837 +steady,sr,164,65.6,velocity,center_uy,5.818519184686011e-06 +steady,sr,164,65.6,velocity,lower_ux,1.115950107574463 +steady,sr,164,65.6,velocity,lower_uy,0.014736020937561989 +steady,sr,165,66.0,velocity,upper_ux,1.1158089637756348 +steady,sr,165,66.0,velocity,upper_uy,-0.014724412932991982 +steady,sr,165,66.0,velocity,center_ux,1.1576664447784424 +steady,sr,165,66.0,velocity,center_uy,6.185287929838523e-06 +steady,sr,165,66.0,velocity,lower_ux,1.1157971620559692 +steady,sr,165,66.0,velocity,lower_uy,0.014734680764377117 +steady,sr,166,66.4,velocity,upper_ux,1.1158454418182373 +steady,sr,166,66.4,velocity,upper_uy,-0.014723258092999458 +steady,sr,166,66.4,velocity,center_ux,1.1577110290527344 +steady,sr,166,66.4,velocity,center_uy,5.210018571233377e-06 +steady,sr,166,66.4,velocity,lower_ux,1.1158334016799927 +steady,sr,166,66.4,velocity,lower_uy,0.014731734991073608 +steady,sr,167,66.8,velocity,upper_ux,1.1156463623046875 +steady,sr,167,66.8,velocity,upper_uy,-0.014720993116497993 +steady,sr,167,66.8,velocity,center_ux,1.1575263738632202 +steady,sr,167,66.8,velocity,center_uy,5.669458914780989e-06 +steady,sr,167,66.8,velocity,lower_ux,1.1156352758407593 +steady,sr,167,66.8,velocity,lower_uy,0.014731879346072674 +steady,sr,168,67.2,velocity,upper_ux,1.115637183189392 +steady,sr,168,67.2,velocity,upper_uy,-0.014722708612680435 +steady,sr,168,67.2,velocity,center_ux,1.1575210094451904 +steady,sr,168,67.2,velocity,center_uy,3.02359467241331e-06 +steady,sr,168,67.2,velocity,lower_ux,1.1156232357025146 +steady,sr,168,67.2,velocity,lower_uy,0.014730356633663177 +steady,sr,169,67.6,velocity,upper_ux,1.115942120552063 +steady,sr,169,67.6,velocity,upper_uy,-0.014723559841513634 +steady,sr,169,67.6,velocity,center_ux,1.1578172445297241 +steady,sr,169,67.6,velocity,center_uy,4.186461410427e-06 +steady,sr,169,67.6,velocity,lower_ux,1.1159312725067139 +steady,sr,169,67.6,velocity,lower_uy,0.014734051190316677 +steady,sr,170,68.0,velocity,upper_ux,1.115878939628601 +steady,sr,170,68.0,velocity,upper_uy,-0.014725804328918457 +steady,sr,170,68.0,velocity,center_ux,1.157737374305725 +steady,sr,170,68.0,velocity,center_uy,3.3900560083566234e-06 +steady,sr,170,68.0,velocity,lower_ux,1.1158653497695923 +steady,sr,170,68.0,velocity,lower_uy,0.014733239077031612 +steady,sr,171,68.4,velocity,upper_ux,1.1158376932144165 +steady,sr,171,68.4,velocity,upper_uy,-0.014722606167197227 +steady,sr,171,68.4,velocity,center_ux,1.1577000617980957 +steady,sr,171,68.4,velocity,center_uy,5.3575158744934015e-06 +steady,sr,171,68.4,velocity,lower_ux,1.1158268451690674 +steady,sr,171,68.4,velocity,lower_uy,0.014733511954545975 +steady,sr,172,68.8,velocity,upper_ux,1.1157824993133545 +steady,sr,172,68.8,velocity,upper_uy,-0.014723245985805988 +steady,sr,172,68.8,velocity,center_ux,1.157655119895935 +steady,sr,172,68.8,velocity,center_uy,4.495676876103971e-06 +steady,sr,172,68.8,velocity,lower_ux,1.115768551826477 +steady,sr,172,68.8,velocity,lower_uy,0.014731118455529213 +steady,sr,173,69.2,velocity,upper_ux,1.115563988685608 +steady,sr,173,69.2,velocity,upper_uy,-0.0147227318957448 +steady,sr,173,69.2,velocity,center_ux,1.1574472188949585 +steady,sr,173,69.2,velocity,center_uy,5.101897841086611e-06 +steady,sr,173,69.2,velocity,lower_ux,1.1155500411987305 +steady,sr,173,69.2,velocity,lower_uy,0.014732271432876587 +steady,sr,174,69.6,velocity,upper_ux,1.1158028841018677 +steady,sr,174,69.6,velocity,upper_uy,-0.014724072068929672 +steady,sr,174,69.6,velocity,center_ux,1.1576836109161377 +steady,sr,174,69.6,velocity,center_uy,4.970737336407183e-06 +steady,sr,174,69.6,velocity,lower_ux,1.115790843963623 +steady,sr,174,69.6,velocity,lower_uy,0.014733106829226017 +steady,sr,175,70.0,velocity,upper_ux,1.1159557104110718 +steady,sr,175,70.0,velocity,upper_uy,-0.01472614798694849 +steady,sr,175,70.0,velocity,center_ux,1.1578221321105957 +steady,sr,175,70.0,velocity,center_uy,4.8223050725937355e-06 +steady,sr,175,70.0,velocity,lower_ux,1.1159435510635376 +steady,sr,175,70.0,velocity,lower_uy,0.014735189266502857 +steady,sr,176,70.4,velocity,upper_ux,1.115814208984375 +steady,sr,176,70.4,velocity,upper_uy,-0.014725131914019585 +steady,sr,176,70.4,velocity,center_ux,1.1576743125915527 +steady,sr,176,70.4,velocity,center_uy,5.3551084420178086e-06 +steady,sr,176,70.4,velocity,lower_ux,1.1158053874969482 +steady,sr,176,70.4,velocity,lower_uy,0.014734113588929176 +steady,sr,177,70.8,velocity,upper_ux,1.1158560514450073 +steady,sr,177,70.8,velocity,upper_uy,-0.014723628759384155 +steady,sr,177,70.8,velocity,center_ux,1.157721757888794 +steady,sr,177,70.8,velocity,center_uy,5.035528829466784e-06 +steady,sr,177,70.8,velocity,lower_ux,1.1158450841903687 +steady,sr,177,70.8,velocity,lower_uy,0.01473167259246111 +steady,sr,178,71.2,velocity,upper_ux,1.1156748533248901 +steady,sr,178,71.2,velocity,upper_uy,-0.014721659012138844 +steady,sr,178,71.2,velocity,center_ux,1.1575541496276855 +steady,sr,178,71.2,velocity,center_uy,6.5295280364807695e-06 +steady,sr,178,71.2,velocity,lower_ux,1.1156631708145142 +steady,sr,178,71.2,velocity,lower_uy,0.01473176572471857 +steady,sr,179,71.6,velocity,upper_ux,1.115616798400879 +steady,sr,179,71.6,velocity,upper_uy,-0.01472270768135786 +steady,sr,179,71.6,velocity,center_ux,1.1575016975402832 +steady,sr,179,71.6,velocity,center_uy,5.467976279760478e-06 +steady,sr,179,71.6,velocity,lower_ux,1.1156072616577148 +steady,sr,179,71.6,velocity,lower_uy,0.01473044790327549 +steady,sr,180,72.0,velocity,upper_ux,1.1159148216247559 +steady,sr,180,72.0,velocity,upper_uy,-0.01472400687634945 +steady,sr,180,72.0,velocity,center_ux,1.157790184020996 +steady,sr,180,72.0,velocity,center_uy,5.899949883314548e-06 +steady,sr,180,72.0,velocity,lower_ux,1.1159064769744873 +steady,sr,180,72.0,velocity,lower_uy,0.014733373187482357 +steady,sr,181,72.4,velocity,upper_ux,1.1158827543258667 +steady,sr,181,72.4,velocity,upper_uy,-0.014726260676980019 +steady,sr,181,72.4,velocity,center_ux,1.1577481031417847 +steady,sr,181,72.4,velocity,center_uy,3.372976834725705e-06 +steady,sr,181,72.4,velocity,lower_ux,1.1158753633499146 +steady,sr,181,72.4,velocity,lower_uy,0.01473233848810196 +steady,sr,182,72.8,velocity,upper_ux,1.115837812423706 +steady,sr,182,72.8,velocity,upper_uy,-0.014724372886121273 +steady,sr,182,72.8,velocity,center_ux,1.1577014923095703 +steady,sr,182,72.8,velocity,center_uy,2.7115277134726057e-06 +steady,sr,182,72.8,velocity,lower_ux,1.1158291101455688 +steady,sr,182,72.8,velocity,lower_uy,0.01473184023052454 +steady,sr,183,73.2,velocity,upper_ux,1.1158021688461304 +steady,sr,183,73.2,velocity,upper_uy,-0.014724543318152428 +steady,sr,183,73.2,velocity,center_ux,1.1576740741729736 +steady,sr,183,73.2,velocity,center_uy,1.428368705091998e-06 +steady,sr,183,73.2,velocity,lower_ux,1.1157928705215454 +steady,sr,183,73.2,velocity,lower_uy,0.014729911461472511 +steady,sr,184,73.6,velocity,upper_ux,1.1155816316604614 +steady,sr,184,73.6,velocity,upper_uy,-0.014724543318152428 +steady,sr,184,73.6,velocity,center_ux,1.1574629545211792 +steady,sr,184,73.6,velocity,center_uy,1.373722739117511e-06 +steady,sr,184,73.6,velocity,lower_ux,1.1155680418014526 +steady,sr,184,73.6,velocity,lower_uy,0.014730237424373627 +steady,sr,185,74.0,velocity,upper_ux,1.1157680749893188 +steady,sr,185,74.0,velocity,upper_uy,-0.014725204557180405 +steady,sr,185,74.0,velocity,center_ux,1.1576513051986694 +steady,sr,185,74.0,velocity,center_uy,1.5702754581070621e-06 +steady,sr,185,74.0,velocity,lower_ux,1.1157582998275757 +steady,sr,185,74.0,velocity,lower_uy,0.01473167259246111 +steady,sr,186,74.4,velocity,upper_ux,1.1159440279006958 +steady,sr,186,74.4,velocity,upper_uy,-0.014727936126291752 +steady,sr,186,74.4,velocity,center_ux,1.1578136682510376 +steady,sr,186,74.4,velocity,center_uy,1.280838432649034e-06 +steady,sr,186,74.4,velocity,lower_ux,1.1159327030181885 +steady,sr,186,74.4,velocity,lower_uy,0.01473294012248516 +steady,sr,187,74.8,velocity,upper_ux,1.1158198118209839 +steady,sr,187,74.8,velocity,upper_uy,-0.01472597848623991 +steady,sr,187,74.8,velocity,center_ux,1.1576820611953735 +steady,sr,187,74.8,velocity,center_uy,4.021673703391571e-06 +steady,sr,187,74.8,velocity,lower_ux,1.1158100366592407 +steady,sr,187,74.8,velocity,lower_uy,0.014733877964317799 +steady,sr,188,75.2,velocity,upper_ux,1.1158617734909058 +steady,sr,188,75.2,velocity,upper_uy,-0.014724740758538246 +steady,sr,188,75.2,velocity,center_ux,1.1577284336090088 +steady,sr,188,75.2,velocity,center_uy,4.16814236814389e-06 +steady,sr,188,75.2,velocity,lower_ux,1.1158524751663208 +steady,sr,188,75.2,velocity,lower_uy,0.014730477705597878 +steady,sr,189,75.6,velocity,upper_ux,1.115700125694275 +steady,sr,189,75.6,velocity,upper_uy,-0.014722260646522045 +steady,sr,189,75.6,velocity,center_ux,1.157578468322754 +steady,sr,189,75.6,velocity,center_uy,6.847606073279167e-06 +steady,sr,189,75.6,velocity,lower_ux,1.1156909465789795 +steady,sr,189,75.6,velocity,lower_uy,0.01473156362771988 +steady,sr,190,76.0,velocity,upper_ux,1.1156035661697388 +steady,sr,190,76.0,velocity,upper_uy,-0.014723217114806175 +steady,sr,190,76.0,velocity,center_ux,1.1574891805648804 +steady,sr,190,76.0,velocity,center_uy,5.305894774210174e-06 +steady,sr,190,76.0,velocity,lower_ux,1.115594506263733 +steady,sr,190,76.0,velocity,lower_uy,0.014729943126440048 +steady,sr,191,76.4,velocity,upper_ux,1.1158862113952637 +steady,sr,191,76.4,velocity,upper_uy,-0.014723950996994972 +steady,sr,191,76.4,velocity,center_ux,1.1577651500701904 +steady,sr,191,76.4,velocity,center_uy,6.0242973631829955e-06 +steady,sr,191,76.4,velocity,lower_ux,1.1158779859542847 +steady,sr,191,76.4,velocity,lower_uy,0.014732914976775646 +steady,sr,192,76.8,velocity,upper_ux,1.115885615348816 +steady,sr,192,76.8,velocity,upper_uy,-0.014726785011589527 +steady,sr,192,76.8,velocity,center_ux,1.157753348350525 +steady,sr,192,76.8,velocity,center_uy,3.4515621791797457e-06 +steady,sr,192,76.8,velocity,lower_ux,1.115878701210022 +steady,sr,192,76.8,velocity,lower_uy,0.014732953161001205 +steady,sr,193,77.2,velocity,upper_ux,1.1158359050750732 +steady,sr,193,77.2,velocity,upper_uy,-0.01472518965601921 +steady,sr,193,77.2,velocity,center_ux,1.1576989889144897 +steady,sr,193,77.2,velocity,center_uy,3.143669800920179e-06 +steady,sr,193,77.2,velocity,lower_ux,1.1158294677734375 +steady,sr,193,77.2,velocity,lower_uy,0.01473222766071558 +steady,sr,194,77.6,velocity,upper_ux,1.115818977355957 +steady,sr,194,77.6,velocity,upper_uy,-0.014724909327924252 +steady,sr,194,77.6,velocity,center_ux,1.1576915979385376 +steady,sr,194,77.6,velocity,center_uy,2.123200601999997e-06 +steady,sr,194,77.6,velocity,lower_ux,1.1158115863800049 +steady,sr,194,77.6,velocity,lower_uy,0.014730577357113361 +steady,sr,195,78.0,velocity,upper_ux,1.1155974864959717 +steady,sr,195,78.0,velocity,upper_uy,-0.01472446694970131 +steady,sr,195,78.0,velocity,center_ux,1.1574801206588745 +steady,sr,195,78.0,velocity,center_uy,1.972436393771204e-06 +steady,sr,195,78.0,velocity,lower_ux,1.1155911684036255 +steady,sr,195,78.0,velocity,lower_uy,0.014730274677276611 +steady,sr,196,78.4,velocity,upper_ux,1.1157386302947998 +steady,sr,196,78.4,velocity,upper_uy,-0.01472526229918003 +steady,sr,196,78.4,velocity,center_ux,1.1576215028762817 +steady,sr,196,78.4,velocity,center_uy,1.855810523920809e-06 +steady,sr,196,78.4,velocity,lower_ux,1.1157305240631104 +steady,sr,196,78.4,velocity,lower_uy,0.014731061644852161 +steady,sr,197,78.8,velocity,upper_ux,1.1159297227859497 +steady,sr,197,78.8,velocity,upper_uy,-0.014727412723004818 +steady,sr,197,78.8,velocity,center_ux,1.1578007936477661 +steady,sr,197,78.8,velocity,center_uy,1.4643578651885036e-06 +steady,sr,197,78.8,velocity,lower_ux,1.1159189939498901 +steady,sr,197,78.8,velocity,lower_uy,0.014732024632394314 +steady,sr,198,79.2,velocity,upper_ux,1.1158241033554077 +steady,sr,198,79.2,velocity,upper_uy,-0.01472646463662386 +steady,sr,198,79.2,velocity,center_ux,1.1576884984970093 +steady,sr,198,79.2,velocity,center_uy,3.1807396680960665e-06 +steady,sr,198,79.2,velocity,lower_ux,1.1158162355422974 +steady,sr,198,79.2,velocity,lower_uy,0.014732872135937214 +steady,sr,199,79.6,velocity,upper_ux,1.1158663034439087 +steady,sr,199,79.6,velocity,upper_uy,-0.014725100249052048 +steady,sr,199,79.6,velocity,center_ux,1.157732367515564 +steady,sr,199,79.6,velocity,center_uy,3.2726163681218168e-06 +steady,sr,199,79.6,velocity,lower_ux,1.1158567667007446 +steady,sr,199,79.6,velocity,lower_uy,0.014730621129274368 +steady,sr,0,0.0,force,front_fx,0.0003557269519660622 +steady,sr,0,0.0,force,front_fy,2.1295691112754866e-06 +steady,sr,0,0.0,force,upper_fx,-0.0002458425296936184 +steady,sr,0,0.0,force,upper_fy,0.003487398847937584 +steady,sr,0,0.0,force,lower_fx,-0.00023968852474354208 +steady,sr,0,0.0,force,lower_fy,-0.0034841764718294144 +steady,sr,1,0.4,force,front_fx,0.000359432480763644 +steady,sr,1,0.4,force,front_fy,2.022026137638022e-06 +steady,sr,1,0.4,force,upper_fx,-0.00023890765442047268 +steady,sr,1,0.4,force,upper_fy,0.003494077129289508 +steady,sr,1,0.4,force,lower_fx,-0.0002330785500817001 +steady,sr,1,0.4,force,lower_fy,-0.0034916838631033897 +steady,sr,2,0.8,force,front_fx,0.000357641838490963 +steady,sr,2,0.8,force,front_fy,2.095298441417981e-06 +steady,sr,2,0.8,force,upper_fx,-0.0002361878869123757 +steady,sr,2,0.8,force,upper_fy,0.003508857684209943 +steady,sr,2,0.8,force,lower_fx,-0.0002304648660356179 +steady,sr,2,0.8,force,lower_fy,-0.003506170818582177 +steady,sr,3,1.2,force,front_fx,0.0003570444823708385 +steady,sr,3,1.2,force,front_fy,2.256766720165615e-06 +steady,sr,3,1.2,force,upper_fx,-0.0002389040164416656 +steady,sr,3,1.2,force,upper_fy,0.0035121580585837364 +steady,sr,3,1.2,force,lower_fx,-0.00023311069526243955 +steady,sr,3,1.2,force,lower_fy,-0.003509348025545478 +steady,sr,4,1.6,force,front_fx,0.00035547465085983276 +steady,sr,4,1.6,force,front_fy,1.4779166122025345e-06 +steady,sr,4,1.6,force,upper_fx,-0.0002448768063914031 +steady,sr,4,1.6,force,upper_fy,0.0035045603290200233 +steady,sr,4,1.6,force,lower_fx,-0.00023909971059765667 +steady,sr,4,1.6,force,lower_fy,-0.0035021312069147825 +steady,sr,5,2.0,force,front_fx,0.000352543022017926 +steady,sr,5,2.0,force,front_fy,1.8882396943808999e-06 +steady,sr,5,2.0,force,upper_fx,-0.00024829639005474746 +steady,sr,5,2.0,force,upper_fy,0.0034903299529105425 +steady,sr,5,2.0,force,lower_fx,-0.00024219954502768815 +steady,sr,5,2.0,force,lower_fy,-0.0034902000334113836 +steady,sr,6,2.4,force,front_fx,0.0003565882216207683 +steady,sr,6,2.4,force,front_fy,2.0708466763608158e-06 +steady,sr,6,2.4,force,upper_fx,-0.0002431510220048949 +steady,sr,6,2.4,force,upper_fy,0.00348855322226882 +steady,sr,6,2.4,force,lower_fx,-0.0002379507350269705 +steady,sr,6,2.4,force,lower_fy,-0.0034857485443353653 +steady,sr,7,2.8,force,front_fx,0.00035974435741081834 +steady,sr,7,2.8,force,front_fy,1.7982919189307722e-06 +steady,sr,7,2.8,force,upper_fx,-0.00023658647842239588 +steady,sr,7,2.8,force,upper_fy,0.003501015715301037 +steady,sr,7,2.8,force,lower_fx,-0.0002310563431819901 +steady,sr,7,2.8,force,lower_fy,-0.003498627571389079 +steady,sr,8,3.2,force,front_fx,0.00035741322790272534 +steady,sr,8,3.2,force,front_fy,1.5719010661996435e-06 +steady,sr,8,3.2,force,upper_fx,-0.00023679867445025593 +steady,sr,8,3.2,force,upper_fy,0.0035108381416648626 +steady,sr,8,3.2,force,lower_fx,-0.00023180247808340937 +steady,sr,8,3.2,force,lower_fy,-0.003508344991132617 +steady,sr,9,3.6,force,front_fx,0.0003563284408301115 +steady,sr,9,3.6,force,front_fy,1.958896518772235e-06 +steady,sr,9,3.6,force,upper_fx,-0.00024101350572891533 +steady,sr,9,3.6,force,upper_fy,0.0035098183434456587 +steady,sr,9,3.6,force,lower_fx,-0.0002356650511501357 +steady,sr,9,3.6,force,lower_fy,-0.003506612963974476 +steady,sr,10,4.0,force,front_fx,0.00035267547355033457 +steady,sr,10,4.0,force,front_fy,1.7280356132687302e-06 +steady,sr,10,4.0,force,upper_fx,-0.000247311225393787 +steady,sr,10,4.0,force,upper_fy,0.0034983777441084385 +steady,sr,10,4.0,force,lower_fx,-0.00024237195611931384 +steady,sr,10,4.0,force,lower_fy,-0.003496012883260846 +steady,sr,11,4.4,force,front_fx,0.00035535224014893174 +steady,sr,11,4.4,force,front_fy,1.9220640297135105e-06 +steady,sr,11,4.4,force,upper_fx,-0.0002456545189488679 +steady,sr,11,4.4,force,upper_fy,0.0034877369180321693 +steady,sr,11,4.4,force,lower_fx,-0.00023774597502779216 +steady,sr,11,4.4,force,lower_fy,-0.0034824300091713667 +steady,sr,12,4.8,force,front_fx,0.0003589215048123151 +steady,sr,12,4.8,force,front_fy,1.8579580682853702e-06 +steady,sr,12,4.8,force,upper_fx,-0.00023952178889885545 +steady,sr,12,4.8,force,upper_fy,0.003492471296340227 +steady,sr,12,4.8,force,lower_fx,-0.00023460443480871618 +steady,sr,12,4.8,force,lower_fy,-0.003490451257675886 +steady,sr,13,5.2,force,front_fx,0.000357772340066731 +steady,sr,13,5.2,force,front_fy,1.7548860569149838e-06 +steady,sr,13,5.2,force,upper_fx,-0.00023597831022925675 +steady,sr,13,5.2,force,upper_fy,0.003506855573505163 +steady,sr,13,5.2,force,lower_fx,-0.0002312186552444473 +steady,sr,13,5.2,force,lower_fy,-0.003503137268126011 +steady,sr,14,5.6,force,front_fx,0.00035742908949032426 +steady,sr,14,5.6,force,front_fy,1.4961448187023052e-06 +steady,sr,14,5.6,force,upper_fx,-0.00023781033814884722 +steady,sr,14,5.6,force,upper_fy,0.003511471441015601 +steady,sr,14,5.6,force,lower_fx,-0.00023340452753473073 +steady,sr,14,5.6,force,lower_fy,-0.00350951193831861 +steady,sr,15,6.0,force,front_fx,0.0003558097523637116 +steady,sr,15,6.0,force,front_fy,1.7069257864932297e-06 +steady,sr,15,6.0,force,upper_fx,-0.00024349470913875848 +steady,sr,15,6.0,force,upper_fy,0.003506151959300041 +steady,sr,15,6.0,force,lower_fx,-0.00023928898735903203 +steady,sr,15,6.0,force,lower_fy,-0.0035063489340245724 +steady,sr,16,6.4,force,front_fx,0.0003523344057612121 +steady,sr,16,6.4,force,front_fy,1.4795996321481653e-06 +steady,sr,16,6.4,force,upper_fx,-0.0002476327063050121 +steady,sr,16,6.4,force,upper_fy,0.0034918682649731636 +steady,sr,16,6.4,force,lower_fx,-0.00024303048849105835 +steady,sr,16,6.4,force,lower_fy,-0.0034899807069450617 +steady,sr,17,6.8,force,front_fx,0.0003564855724107474 +steady,sr,17,6.8,force,front_fy,1.4658550071544596e-06 +steady,sr,17,6.8,force,upper_fx,-0.00024261539510916919 +steady,sr,17,6.8,force,upper_fy,0.003488775808364153 +steady,sr,17,6.8,force,lower_fx,-0.00023893435718491673 +steady,sr,17,6.8,force,lower_fy,-0.003485880559310317 +steady,sr,18,7.2,force,front_fx,0.000359396479325369 +steady,sr,18,7.2,force,front_fy,1.514230916654924e-06 +steady,sr,18,7.2,force,upper_fx,-0.00023681488528382033 +steady,sr,18,7.2,force,upper_fy,0.003498865058645606 +steady,sr,18,7.2,force,lower_fx,-0.0002321290667168796 +steady,sr,18,7.2,force,lower_fy,-0.0034954503644257784 +steady,sr,19,7.6,force,front_fx,0.00035729623050428927 +steady,sr,19,7.6,force,front_fy,1.686525365585112e-06 +steady,sr,19,7.6,force,upper_fx,-0.0002364830143051222 +steady,sr,19,7.6,force,upper_fy,0.0035093799233436584 +steady,sr,19,7.6,force,lower_fx,-0.00023215058899950236 +steady,sr,19,7.6,force,lower_fy,-0.003507485380396247 +steady,sr,20,8.0,force,front_fx,0.0003567792591638863 +steady,sr,20,8.0,force,front_fy,1.6745140101193101e-06 +steady,sr,20,8.0,force,upper_fx,-0.00023981410777196288 +steady,sr,20,8.0,force,upper_fy,0.0035111538600176573 +steady,sr,20,8.0,force,lower_fx,-0.00023546459851786494 +steady,sr,20,8.0,force,lower_fy,-0.0035079887602478266 +steady,sr,21,8.4,force,front_fx,0.000353144365362823 +steady,sr,21,8.4,force,front_fy,1.1684497849273612e-06 +steady,sr,21,8.4,force,upper_fx,-0.0002462263801135123 +steady,sr,21,8.4,force,upper_fy,0.0035002308432012796 +steady,sr,21,8.4,force,lower_fx,-0.0002421871031401679 +steady,sr,21,8.4,force,lower_fy,-0.003498621052131057 +steady,sr,22,8.8,force,front_fx,0.0003549320681486279 +steady,sr,22,8.8,force,front_fy,1.6021025430745794e-06 +steady,sr,22,8.8,force,upper_fx,-0.00024571665562689304 +steady,sr,22,8.8,force,upper_fy,0.0034895888529717922 +steady,sr,22,8.8,force,lower_fx,-0.00024164422939065844 +steady,sr,22,8.8,force,lower_fy,-0.003486731555312872 +steady,sr,23,9.2,force,front_fx,0.0003581759810913354 +steady,sr,23,9.2,force,front_fy,1.3483348766385461e-06 +steady,sr,23,9.2,force,upper_fx,-0.00024021620629355311 +steady,sr,23,9.2,force,upper_fy,0.003491217503324151 +steady,sr,23,9.2,force,lower_fx,-0.00023597512335982174 +steady,sr,23,9.2,force,lower_fy,-0.0034898286685347557 +steady,sr,24,9.6,force,front_fx,0.00035793110146187246 +steady,sr,24,9.6,force,front_fy,1.4108497907727724e-06 +steady,sr,24,9.6,force,upper_fx,-0.00023607589537277818 +steady,sr,24,9.6,force,upper_fy,0.0035045223776251078 +steady,sr,24,9.6,force,lower_fx,-0.00023215146211441606 +steady,sr,24,9.6,force,lower_fy,-0.0035031535662710667 +steady,sr,25,10.0,force,front_fx,0.0003575808950699866 +steady,sr,25,10.0,force,front_fy,1.4593191508538439e-06 +steady,sr,25,10.0,force,upper_fx,-0.0002372009475948289 +steady,sr,25,10.0,force,upper_fy,0.0035105806309729815 +steady,sr,25,10.0,force,lower_fx,-0.00023304046771954745 +steady,sr,25,10.0,force,lower_fy,-0.003509099828079343 +steady,sr,26,10.4,force,front_fx,0.0003560516925062984 +steady,sr,26,10.4,force,front_fy,1.605931288395368e-06 +steady,sr,26,10.4,force,upper_fx,-0.0002421374956611544 +steady,sr,26,10.4,force,upper_fy,0.0035066702403128147 +steady,sr,26,10.4,force,lower_fx,-0.00023832380247768015 +steady,sr,26,10.4,force,lower_fy,-0.0035047566052526236 +steady,sr,27,10.8,force,front_fx,0.00035244598984718323 +steady,sr,27,10.8,force,front_fy,1.5200639609247446e-06 +steady,sr,27,10.8,force,upper_fx,-0.0002468596794642508 +steady,sr,27,10.8,force,upper_fy,0.003493922296911478 +steady,sr,27,10.8,force,lower_fx,-0.000243192829657346 +steady,sr,27,10.8,force,lower_fy,-0.003492319956421852 +steady,sr,28,11.2,force,front_fx,0.00035588390892371535 +steady,sr,28,11.2,force,front_fy,1.3178301969674067e-06 +steady,sr,28,11.2,force,upper_fx,-0.00024369024322368205 +steady,sr,28,11.2,force,upper_fy,0.003487916197627783 +steady,sr,28,11.2,force,lower_fx,-0.0002400978992227465 +steady,sr,28,11.2,force,lower_fy,-0.0034863040782511234 +steady,sr,29,11.6,force,front_fx,0.00035953932092525065 +steady,sr,29,11.6,force,front_fy,1.1472443475213367e-06 +steady,sr,29,11.6,force,upper_fx,-0.0002371691371081397 +steady,sr,29,11.6,force,upper_fy,0.00349676376208663 +steady,sr,29,11.6,force,lower_fx,-0.0002333076117793098 +steady,sr,29,11.6,force,lower_fy,-0.0034953171852976084 +steady,sr,30,12.0,force,front_fx,0.00035728272632695735 +steady,sr,30,12.0,force,front_fy,1.1057562687710742e-06 +steady,sr,30,12.0,force,upper_fx,-0.00023616412363480777 +steady,sr,30,12.0,force,upper_fy,0.0035076471976935863 +steady,sr,30,12.0,force,lower_fx,-0.00023254244297277182 +steady,sr,30,12.0,force,lower_fy,-0.0035061833914369345 +steady,sr,31,12.4,force,front_fx,0.0003567220701370388 +steady,sr,31,12.4,force,front_fy,1.4223285234038485e-06 +steady,sr,31,12.4,force,upper_fx,-0.00023890726151876152 +steady,sr,31,12.4,force,upper_fy,0.003509935224428773 +steady,sr,31,12.4,force,lower_fx,-0.00023513578344136477 +steady,sr,31,12.4,force,lower_fy,-0.0035072851460427046 +steady,sr,32,12.8,force,front_fx,0.0003539503668434918 +steady,sr,32,12.8,force,front_fy,1.1120081353510614e-06 +steady,sr,32,12.8,force,upper_fx,-0.0002448098675813526 +steady,sr,32,12.8,force,upper_fy,0.0035015016328543425 +steady,sr,32,12.8,force,lower_fx,-0.00024119188310578465 +steady,sr,32,12.8,force,lower_fy,-0.0034998280461877584 +steady,sr,33,13.2,force,front_fx,0.0003543078782968223 +steady,sr,33,13.2,force,front_fy,1.402373186465411e-06 +steady,sr,33,13.2,force,upper_fx,-0.00024570009554736316 +steady,sr,33,13.2,force,upper_fy,0.0034897681325674057 +steady,sr,33,13.2,force,lower_fx,-0.0002422334800940007 +steady,sr,33,13.2,force,lower_fy,-0.003488464979454875 +steady,sr,34,13.6,force,front_fx,0.00035758872400037944 +steady,sr,34,13.6,force,front_fy,1.060179783962667e-06 +steady,sr,34,13.6,force,upper_fx,-0.00024074065731838346 +steady,sr,34,13.6,force,upper_fy,0.0034904310014098883 +steady,sr,34,13.6,force,lower_fx,-0.00023748284729663283 +steady,sr,34,13.6,force,lower_fy,-0.003486929927021265 +steady,sr,35,14.0,force,front_fx,0.00035816998570226133 +steady,sr,35,14.0,force,front_fy,9.61360456130933e-07 +steady,sr,35,14.0,force,upper_fx,-0.00023613794473931193 +steady,sr,35,14.0,force,upper_fy,0.0035022494848817587 +steady,sr,35,14.0,force,lower_fx,-0.00023279126617126167 +steady,sr,35,14.0,force,lower_fy,-0.003500484861433506 +steady,sr,36,14.4,force,front_fx,0.00035771532566286623 +steady,sr,36,14.4,force,front_fy,9.72979705693433e-07 +steady,sr,36,14.4,force,upper_fx,-0.00023653337848372757 +steady,sr,36,14.4,force,upper_fy,0.00350950937718153 +steady,sr,36,14.4,force,lower_fx,-0.0002331521245650947 +steady,sr,36,14.4,force,lower_fy,-0.003508063266053796 +steady,sr,37,14.8,force,front_fx,0.00035634374944493175 +steady,sr,37,14.8,force,front_fy,1.0482357311047963e-06 +steady,sr,37,14.8,force,upper_fx,-0.0002409188455203548 +steady,sr,37,14.8,force,upper_fy,0.003507158486172557 +steady,sr,37,14.8,force,lower_fx,-0.00023781266645528376 +steady,sr,37,14.8,force,lower_fy,-0.0035054581239819527 +steady,sr,38,15.2,force,front_fx,0.0003525263164192438 +steady,sr,38,15.2,force,front_fy,1.206130377795489e-06 +steady,sr,38,15.2,force,upper_fx,-0.00024632076383568347 +steady,sr,38,15.2,force,upper_fy,0.0034954326692968607 +steady,sr,38,15.2,force,lower_fx,-0.00024303811369463801 +steady,sr,38,15.2,force,lower_fy,-0.003493971424177289 +steady,sr,39,15.6,force,front_fx,0.00035563274286687374 +steady,sr,39,15.6,force,front_fy,8.74801571626449e-07 +steady,sr,39,15.6,force,upper_fx,-0.00024394252977799624 +steady,sr,39,15.6,force,upper_fy,0.003488473827019334 +steady,sr,39,15.6,force,lower_fx,-0.00024087926431093365 +steady,sr,39,15.6,force,lower_fy,-0.003486767178401351 +steady,sr,40,16.0,force,front_fx,0.0003591252025216818 +steady,sr,40,16.0,force,front_fy,1.2184731303932494e-06 +steady,sr,40,16.0,force,upper_fx,-0.00023771575069986284 +steady,sr,40,16.0,force,upper_fy,0.003495448501780629 +steady,sr,40,16.0,force,lower_fx,-0.000234694016398862 +steady,sr,40,16.0,force,lower_fy,-0.003493581898510456 +steady,sr,41,16.4,force,front_fx,0.00035734064294956625 +steady,sr,41,16.4,force,front_fy,1.0435995818625088e-06 +steady,sr,41,16.4,force,upper_fx,-0.00023584473819937557 +steady,sr,41,16.4,force,upper_fy,0.0035061996895819902 +steady,sr,41,16.4,force,lower_fx,-0.00023312255507335067 +steady,sr,41,16.4,force,lower_fy,-0.0035027170088142157 +steady,sr,42,16.8,force,front_fx,0.0003571873821783811 +steady,sr,42,16.8,force,front_fy,1.288952603317739e-06 +steady,sr,42,16.8,force,upper_fx,-0.00023810453421901911 +steady,sr,42,16.8,force,upper_fy,0.0035095394123345613 +steady,sr,42,16.8,force,lower_fx,-0.00023515823704656214 +steady,sr,42,16.8,force,lower_fy,-0.0035078730434179306 +steady,sr,43,17.2,force,front_fx,0.00035449001006782055 +steady,sr,43,17.2,force,front_fy,1.0928289384537493e-06 +steady,sr,43,17.2,force,upper_fx,-0.00024336330534424633 +steady,sr,43,17.2,force,upper_fy,0.003502681851387024 +steady,sr,43,17.2,force,lower_fx,-0.00024054797540884465 +steady,sr,43,17.2,force,lower_fy,-0.003501561935991049 +steady,sr,44,17.6,force,front_fx,0.00035392044810578227 +steady,sr,44,17.6,force,front_fy,9.88564806903014e-07 +steady,sr,44,17.6,force,upper_fx,-0.00024548894725739956 +steady,sr,44,17.6,force,upper_fy,0.0034906461369246244 +steady,sr,44,17.6,force,lower_fx,-0.0002425495913485065 +steady,sr,44,17.6,force,lower_fy,-0.0034881988540291786 +steady,sr,45,18.0,force,front_fx,0.00035721194581128657 +steady,sr,45,18.0,force,front_fy,7.45053910122806e-07 +steady,sr,45,18.0,force,upper_fx,-0.00024129556550178677 +steady,sr,45,18.0,force,upper_fy,0.003488778369501233 +steady,sr,45,18.0,force,lower_fx,-0.00023772659187670797 +steady,sr,45,18.0,force,lower_fy,-0.003487734589725733 +steady,sr,46,18.4,force,front_fx,0.00035797792952507734 +steady,sr,46,18.4,force,front_fy,1.4263926004787209e-06 +steady,sr,46,18.4,force,upper_fx,-0.0002367167908232659 +steady,sr,46,18.4,force,upper_fy,0.0035005370154976845 +steady,sr,46,18.4,force,lower_fx,-0.00023367950052488595 +steady,sr,46,18.4,force,lower_fy,-0.0034991472493857145 +steady,sr,47,18.8,force,front_fx,0.0003578333416953683 +steady,sr,47,18.8,force,front_fy,7.86411931130715e-07 +steady,sr,47,18.8,force,upper_fx,-0.00023624516325071454 +steady,sr,47,18.8,force,upper_fy,0.0035084702540189028 +steady,sr,47,18.8,force,lower_fx,-0.00023329797841142863 +steady,sr,47,18.8,force,lower_fy,-0.003506951965391636 +steady,sr,48,19.2,force,front_fx,0.00035669165663421154 +steady,sr,48,19.2,force,front_fy,1.030801627166511e-06 +steady,sr,48,19.2,force,upper_fx,-0.000239854896790348 +steady,sr,48,19.2,force,upper_fy,0.003507646033540368 +steady,sr,48,19.2,force,lower_fx,-0.00023742140911053866 +steady,sr,48,19.2,force,lower_fy,-0.003505387809127569 +steady,sr,49,19.6,force,front_fx,0.00035266336635686457 +steady,sr,49,19.6,force,front_fy,8.647581921650271e-07 +steady,sr,49,19.6,force,upper_fx,-0.0002453586785122752 +steady,sr,49,19.6,force,upper_fy,0.003497034078463912 +steady,sr,49,19.6,force,lower_fx,-0.00024317885981872678 +steady,sr,49,19.6,force,lower_fy,-0.0034958042670041323 +steady,sr,50,20.0,force,front_fx,0.00035554301575757563 +steady,sr,50,20.0,force,front_fy,8.275956702163967e-07 +steady,sr,50,20.0,force,upper_fx,-0.0002434927155263722 +steady,sr,50,20.0,force,upper_fy,0.003488830989226699 +steady,sr,50,20.0,force,lower_fx,-0.00024137040600180626 +steady,sr,50,20.0,force,lower_fy,-0.0034872991964221 +steady,sr,51,20.4,force,front_fx,0.000358531775418669 +steady,sr,51,20.4,force,front_fy,8.531296202818339e-07 +steady,sr,51,20.4,force,upper_fx,-0.00023833091836422682 +steady,sr,51,20.4,force,upper_fy,0.0034937879536300898 +steady,sr,51,20.4,force,lower_fx,-0.00023599561245646328 +steady,sr,51,20.4,force,lower_fy,-0.00349270342849195 +steady,sr,52,20.8,force,front_fx,0.00035756477154791355 +steady,sr,52,20.8,force,front_fy,8.268089004559442e-07 +steady,sr,52,20.8,force,upper_fx,-0.00023580374545417726 +steady,sr,52,20.8,force,upper_fy,0.0035044774413108826 +steady,sr,52,20.8,force,lower_fx,-0.00023337718448601663 +steady,sr,52,20.8,force,lower_fy,-0.003503918880596757 +steady,sr,53,21.2,force,front_fx,0.00035715673584491014 +steady,sr,53,21.2,force,front_fy,9.031307968143665e-07 +steady,sr,53,21.2,force,upper_fx,-0.00023750482068862766 +steady,sr,53,21.2,force,upper_fy,0.0035088916774839163 +steady,sr,53,21.2,force,lower_fx,-0.00023494436754845083 +steady,sr,53,21.2,force,lower_fy,-0.0035077312495559454 +steady,sr,54,21.6,force,front_fx,0.00035507342545315623 +steady,sr,54,21.6,force,front_fy,1.0942613926090416e-06 +steady,sr,54,21.6,force,upper_fx,-0.0002426345890853554 +steady,sr,54,21.6,force,upper_fy,0.0035051724407821894 +steady,sr,54,21.6,force,lower_fx,-0.00023992046772036701 +steady,sr,54,21.6,force,lower_fy,-0.003502899780869484 +steady,sr,55,22.0,force,front_fx,0.0003536701260600239 +steady,sr,55,22.0,force,front_fy,1.0168062090087915e-06 +steady,sr,55,22.0,force,upper_fx,-0.00024515867698937654 +steady,sr,55,22.0,force,upper_fy,0.0034916072618216276 +steady,sr,55,22.0,force,lower_fx,-0.00024410775222349912 +steady,sr,55,22.0,force,lower_fy,-0.003491772338747978 +steady,sr,56,22.4,force,front_fx,0.00035660111461766064 +steady,sr,56,22.4,force,front_fy,6.590217367374862e-07 +steady,sr,56,22.4,force,upper_fx,-0.00024161161854863167 +steady,sr,56,22.4,force,upper_fy,0.0034895436838269234 +steady,sr,56,22.4,force,lower_fx,-0.00023929089365992695 +steady,sr,56,22.4,force,lower_fy,-0.0034880200400948524 +steady,sr,57,22.8,force,front_fx,0.00035815348383039236 +steady,sr,57,22.8,force,front_fy,9.095024324778933e-07 +steady,sr,57,22.8,force,upper_fx,-0.000236706473515369 +steady,sr,57,22.8,force,upper_fy,0.0034986159298568964 +steady,sr,57,22.8,force,lower_fx,-0.0002345606917515397 +steady,sr,57,22.8,force,lower_fy,-0.003497150493785739 +steady,sr,58,23.2,force,front_fx,0.0003579039475880563 +steady,sr,58,23.2,force,front_fy,6.442538165174483e-07 +steady,sr,58,23.2,force,upper_fx,-0.00023603923909831792 +steady,sr,58,23.2,force,upper_fy,0.0035070241428911686 +steady,sr,58,23.2,force,lower_fx,-0.00023385505483020097 +steady,sr,58,23.2,force,lower_fy,-0.003506113775074482 +steady,sr,59,23.6,force,front_fx,0.00035683586611412466 +steady,sr,59,23.6,force,front_fy,9.011039310280466e-07 +steady,sr,59,23.6,force,upper_fx,-0.0002391042362432927 +steady,sr,59,23.6,force,upper_fy,0.003507565939798951 +steady,sr,59,23.6,force,lower_fx,-0.00023688393412157893 +steady,sr,59,23.6,force,lower_fy,-0.0035066117998212576 +steady,sr,60,24.0,force,front_fx,0.00035306168138049543 +steady,sr,60,24.0,force,front_fy,8.099148089968367e-07 +steady,sr,60,24.0,force,upper_fx,-0.00024471175856888294 +steady,sr,60,24.0,force,upper_fy,0.003498435253277421 +steady,sr,60,24.0,force,lower_fx,-0.0002424602280370891 +steady,sr,60,24.0,force,lower_fy,-0.0034973404835909605 +steady,sr,61,24.4,force,front_fx,0.0003552133566699922 +steady,sr,61,24.4,force,front_fy,8.384672582906205e-07 +steady,sr,61,24.4,force,upper_fx,-0.00024377954832743853 +steady,sr,61,24.4,force,upper_fy,0.003489741124212742 +steady,sr,61,24.4,force,lower_fx,-0.00024168197705876082 +steady,sr,61,24.4,force,lower_fy,-0.0034905867651104927 +steady,sr,62,24.8,force,front_fx,0.00035827766987495124 +steady,sr,62,24.8,force,front_fy,7.434080089296913e-07 +steady,sr,62,24.8,force,upper_fx,-0.00023897280334495008 +steady,sr,62,24.8,force,upper_fy,0.0034927427768707275 +steady,sr,62,24.8,force,lower_fx,-0.0002375790645601228 +steady,sr,62,24.8,force,lower_fy,-0.003492419607937336 +steady,sr,63,25.2,force,front_fx,0.00035751634277403355 +steady,sr,63,25.2,force,front_fy,6.246680186450249e-07 +steady,sr,63,25.2,force,upper_fx,-0.0002359205245738849 +steady,sr,63,25.2,force,upper_fy,0.0035030285362154245 +steady,sr,63,25.2,force,lower_fx,-0.000233970393310301 +steady,sr,63,25.2,force,lower_fy,-0.003501037135720253 +steady,sr,64,25.6,force,front_fx,0.00035734244738705456 +steady,sr,64,25.6,force,front_fy,5.896641823710524e-07 +steady,sr,64,25.6,force,upper_fx,-0.00023678093566559255 +steady,sr,64,25.6,force,upper_fy,0.003508355701342225 +steady,sr,64,25.6,force,lower_fx,-0.0002351029252167791 +steady,sr,64,25.6,force,lower_fy,-0.0035073631443083286 +steady,sr,65,26.0,force,front_fx,0.0003557786112651229 +steady,sr,65,26.0,force,front_fy,5.003548722015694e-07 +steady,sr,65,26.0,force,upper_fx,-0.0002414101327303797 +steady,sr,65,26.0,force,upper_fy,0.003504663472995162 +steady,sr,65,26.0,force,lower_fx,-0.00023938907543197274 +steady,sr,65,26.0,force,lower_fy,-0.003503960557281971 +steady,sr,66,26.4,force,front_fx,0.0003534348215907812 +steady,sr,66,26.4,force,front_fy,8.626785756860045e-07 +steady,sr,66,26.4,force,upper_fx,-0.0002449740713927895 +steady,sr,66,26.4,force,upper_fy,0.00349318515509367 +steady,sr,66,26.4,force,lower_fx,-0.00024288622080348432 +steady,sr,66,26.4,force,lower_fy,-0.003492109477519989 +steady,sr,67,26.8,force,front_fx,0.0003563869104254991 +steady,sr,67,26.8,force,front_fy,6.962985139580269e-07 +steady,sr,67,26.8,force,upper_fx,-0.0002420873352093622 +steady,sr,67,26.8,force,upper_fy,0.0034897122532129288 +steady,sr,67,26.8,force,lower_fx,-0.00023994766524992883 +steady,sr,67,26.8,force,lower_fy,-0.0034913313575088978 +steady,sr,68,27.2,force,front_fx,0.0003579782205633819 +steady,sr,68,27.2,force,front_fy,4.979785330760933e-07 +steady,sr,68,27.2,force,upper_fx,-0.00023708789376541972 +steady,sr,68,27.2,force,upper_fy,0.0034971681889146566 +steady,sr,68,27.2,force,lower_fx,-0.00023535174841526896 +steady,sr,68,27.2,force,lower_fy,-0.00349693326279521 +steady,sr,69,27.6,force,front_fx,0.00035788887180387974 +steady,sr,69,27.6,force,front_fy,6.936163003956608e-07 +steady,sr,69,27.6,force,upper_fx,-0.00023597234394401312 +steady,sr,69,27.6,force,upper_fy,0.0035059237852692604 +steady,sr,69,27.6,force,lower_fx,-0.0002353185263928026 +steady,sr,69,27.6,force,lower_fy,-0.0035067019052803516 +steady,sr,70,28.0,force,front_fx,0.0003568516403902322 +steady,sr,70,28.0,force,front_fy,5.513949759006209e-07 +steady,sr,70,28.0,force,upper_fx,-0.00023826284450478852 +steady,sr,70,28.0,force,upper_fy,0.0035075887572020292 +steady,sr,70,28.0,force,lower_fx,-0.00023656064877286553 +steady,sr,70,28.0,force,lower_fy,-0.003506819251924753 +steady,sr,71,28.4,force,front_fx,0.0003535896248649806 +steady,sr,71,28.4,force,front_fy,7.44586714063189e-07 +steady,sr,71,28.4,force,upper_fx,-0.00024383384152315557 +steady,sr,71,28.4,force,upper_fy,0.00350027228705585 +steady,sr,71,28.4,force,lower_fx,-0.00024292239686474204 +steady,sr,71,28.4,force,lower_fy,-0.0034989737905561924 +steady,sr,72,28.8,force,front_fx,0.00035481355735100806 +steady,sr,72,28.8,force,front_fy,3.410599731523689e-07 +steady,sr,72,28.8,force,upper_fx,-0.00024351004685740918 +steady,sr,72,28.8,force,upper_fy,0.003490168834105134 +steady,sr,72,28.8,force,lower_fx,-0.00024208921240642667 +steady,sr,72,28.8,force,lower_fy,-0.0034877697471529245 +steady,sr,73,29.2,force,front_fx,0.0003578978357836604 +steady,sr,73,29.2,force,front_fy,5.789490273855336e-07 +steady,sr,73,29.2,force,upper_fx,-0.00023977576347533613 +steady,sr,73,29.2,force,upper_fy,0.0034919085446745157 +steady,sr,73,29.2,force,lower_fx,-0.0002377904747845605 +steady,sr,73,29.2,force,lower_fy,-0.0034907746594399214 +steady,sr,74,29.6,force,front_fx,0.0003574035072233528 +steady,sr,74,29.6,force,front_fy,5.429909037957259e-07 +steady,sr,74,29.6,force,upper_fx,-0.00023606976901646703 +steady,sr,74,29.6,force,upper_fy,0.0035011968575417995 +steady,sr,74,29.6,force,lower_fx,-0.00023421885271091014 +steady,sr,74,29.6,force,lower_fy,-0.0035003996454179287 +steady,sr,75,30.0,force,front_fx,0.0003576366580091417 +steady,sr,75,30.0,force,front_fy,6.303001214291726e-07 +steady,sr,75,30.0,force,upper_fx,-0.0002365870022913441 +steady,sr,75,30.0,force,upper_fy,0.0035075857304036617 +steady,sr,75,30.0,force,lower_fx,-0.00023513798078056425 +steady,sr,75,30.0,force,lower_fy,-0.0035066730342805386 +steady,sr,76,30.4,force,front_fx,0.00035606566234491765 +steady,sr,76,30.4,force,front_fy,4.409157554619014e-07 +steady,sr,76,30.4,force,upper_fx,-0.00024037294497247785 +steady,sr,76,30.4,force,upper_fy,0.003505651606246829 +steady,sr,76,30.4,force,lower_fx,-0.0002387704880675301 +steady,sr,76,30.4,force,lower_fy,-0.003503547515720129 +steady,sr,77,30.8,force,front_fx,0.000353440351318568 +steady,sr,77,30.8,force,front_fy,5.828244979966257e-07 +steady,sr,77,30.8,force,upper_fx,-0.00024428468896076083 +steady,sr,77,30.8,force,upper_fy,0.0034950776025652885 +steady,sr,77,30.8,force,lower_fx,-0.0002431968750897795 +steady,sr,77,30.8,force,lower_fy,-0.0034938985481858253 +steady,sr,78,31.2,force,front_fx,0.00035609121550805867 +steady,sr,78,31.2,force,front_fy,6.852990850347851e-07 +steady,sr,78,31.2,force,upper_fx,-0.0002422999095870182 +steady,sr,78,31.2,force,upper_fy,0.0034888177178800106 +steady,sr,78,31.2,force,lower_fx,-0.00024050513457041234 +steady,sr,78,31.2,force,lower_fy,-0.0034890391398221254 +steady,sr,79,31.6,force,front_fx,0.00035785307409241796 +steady,sr,79,31.6,force,front_fy,5.194189043322694e-07 +steady,sr,79,31.6,force,upper_fx,-0.00023742971825413406 +steady,sr,79,31.6,force,upper_fy,0.003495940240100026 +steady,sr,79,31.6,force,lower_fx,-0.00023679016157984734 +steady,sr,79,31.6,force,lower_fy,-0.003495869692414999 +steady,sr,80,32.0,force,front_fx,0.0003576135204639286 +steady,sr,80,32.0,force,front_fy,6.376196779456222e-07 +steady,sr,80,32.0,force,upper_fx,-0.00023557618260383606 +steady,sr,80,32.0,force,upper_fy,0.0035048138815909624 +steady,sr,80,32.0,force,lower_fx,-0.00023418347700498998 +steady,sr,80,32.0,force,lower_fy,-0.0035030446015298367 +steady,sr,81,32.4,force,front_fx,0.0003572135465219617 +steady,sr,81,32.4,force,front_fy,6.082653953853878e-07 +steady,sr,81,32.4,force,upper_fx,-0.00023761099146213382 +steady,sr,81,32.4,force,upper_fy,0.0035072152968496084 +steady,sr,81,32.4,force,lower_fx,-0.0002371331793256104 +steady,sr,81,32.4,force,lower_fy,-0.0035070437006652355 +steady,sr,82,32.8,force,front_fx,0.000354066927684471 +steady,sr,82,32.8,force,front_fy,9.049097116076155e-07 +steady,sr,82,32.8,force,upper_fx,-0.00024289179418701679 +steady,sr,82,32.8,force,upper_fy,0.0035012783482670784 +steady,sr,82,32.8,force,lower_fx,-0.00024148965894710273 +steady,sr,82,32.8,force,lower_fy,-0.0035006627440452576 +steady,sr,83,33.2,force,front_fx,0.00035480104270391166 +steady,sr,83,33.2,force,front_fy,4.489367029236746e-07 +steady,sr,83,33.2,force,upper_fx,-0.00024375421344302595 +steady,sr,83,33.2,force,upper_fy,0.0034911816474050283 +steady,sr,83,33.2,force,lower_fx,-0.00024387626035604626 +steady,sr,83,33.2,force,lower_fy,-0.003490905510261655 +steady,sr,84,33.6,force,front_fx,0.0003574707079678774 +steady,sr,84,33.6,force,front_fy,5.836506602463487e-07 +steady,sr,84,33.6,force,upper_fx,-0.00024009124899748713 +steady,sr,84,33.6,force,upper_fy,0.003491360927000642 +steady,sr,84,33.6,force,lower_fx,-0.00023860415967646986 +steady,sr,84,33.6,force,lower_fy,-0.0034905706997960806 +steady,sr,85,34.0,force,front_fx,0.00035743656917475164 +steady,sr,85,34.0,force,front_fy,6.102055181145261e-07 +steady,sr,85,34.0,force,upper_fx,-0.0002364153478993103 +steady,sr,85,34.0,force,upper_fy,0.0035000620409846306 +steady,sr,85,34.0,force,lower_fx,-0.00023487521684728563 +steady,sr,85,34.0,force,lower_fy,-0.003498220117762685 +steady,sr,86,34.4,force,front_fx,0.00035759140155278146 +steady,sr,86,34.4,force,front_fy,5.038931476519792e-07 +steady,sr,86,34.4,force,upper_fx,-0.0002363079838687554 +steady,sr,86,34.4,force,upper_fy,0.0035059216897934675 +steady,sr,86,34.4,force,lower_fx,-0.00023511267499998212 +steady,sr,86,34.4,force,lower_fy,-0.0035045582335442305 +steady,sr,87,34.8,force,front_fx,0.00035654488601721823 +steady,sr,87,34.8,force,front_fy,3.61524939762603e-07 +steady,sr,87,34.8,force,upper_fx,-0.0002386972919339314 +steady,sr,87,34.8,force,upper_fy,0.003505865577608347 +steady,sr,87,34.8,force,lower_fx,-0.0002384111867286265 +steady,sr,87,34.8,force,lower_fy,-0.0035055680200457573 +steady,sr,88,35.2,force,front_fx,0.0003533190756570548 +steady,sr,88,35.2,force,front_fy,4.5062847675580997e-07 +steady,sr,88,35.2,force,upper_fx,-0.0002440045354887843 +steady,sr,88,35.2,force,upper_fy,0.003496022429317236 +steady,sr,88,35.2,force,lower_fx,-0.0002429240703349933 +steady,sr,88,35.2,force,lower_fy,-0.0034958759788423777 +steady,sr,89,35.6,force,front_fx,0.00035564976860769093 +steady,sr,89,35.6,force,front_fy,2.3151100947416126e-07 +steady,sr,89,35.6,force,upper_fx,-0.00024264770036097616 +steady,sr,89,35.6,force,upper_fy,0.003489952301606536 +steady,sr,89,35.6,force,lower_fx,-0.00024102961469907314 +steady,sr,89,35.6,force,lower_fy,-0.0034891495015472174 +steady,sr,90,36.0,force,front_fx,0.00035796151496469975 +steady,sr,90,36.0,force,front_fy,4.362266849966545e-07 +steady,sr,90,36.0,force,upper_fx,-0.00023803533986210823 +steady,sr,90,36.0,force,upper_fy,0.0034948112443089485 +steady,sr,90,36.0,force,lower_fx,-0.00023480130766984075 +steady,sr,90,36.0,force,lower_fy,-0.003491038689389825 +steady,sr,91,36.4,force,front_fx,0.00035745248897001147 +steady,sr,91,36.4,force,front_fy,2.8204601676407037e-07 +steady,sr,91,36.4,force,upper_fx,-0.0002359270438319072 +steady,sr,91,36.4,force,upper_fy,0.0035033302847296 +steady,sr,91,36.4,force,lower_fx,-0.00023470765154343098 +steady,sr,91,36.4,force,lower_fy,-0.003502951469272375 +steady,sr,92,36.8,force,front_fx,0.0003573982685338706 +steady,sr,92,36.8,force,front_fy,3.13669602292066e-07 +steady,sr,92,36.8,force,upper_fx,-0.00023717871226835996 +steady,sr,92,36.8,force,upper_fy,0.003507007611915469 +steady,sr,92,36.8,force,lower_fx,-0.00023565111041534692 +steady,sr,92,36.8,force,lower_fy,-0.0035066050477325916 +steady,sr,93,37.2,force,front_fx,0.0003544516512192786 +steady,sr,93,37.2,force,front_fy,5.272348175822117e-07 +steady,sr,93,37.2,force,upper_fx,-0.0002421202079858631 +steady,sr,93,37.2,force,upper_fy,0.0035024508833885193 +steady,sr,93,37.2,force,lower_fx,-0.00024086255871225148 +steady,sr,93,37.2,force,lower_fy,-0.0035013952292501926 +steady,sr,94,37.6,force,front_fx,0.0003544812207110226 +steady,sr,94,37.6,force,front_fy,2.8759657766386226e-07 +steady,sr,94,37.6,force,upper_fx,-0.00024348152510356158 +steady,sr,94,37.6,force,upper_fy,0.0034917655866593122 +steady,sr,94,37.6,force,lower_fx,-0.0002425185521133244 +steady,sr,94,37.6,force,lower_fy,-0.0034921697806566954 +steady,sr,95,38.0,force,front_fx,0.00035708778887055814 +steady,sr,95,38.0,force,front_fy,5.992239948682254e-07 +steady,sr,95,38.0,force,upper_fx,-0.00024045203463174403 +steady,sr,95,38.0,force,upper_fy,0.0034909825772047043 +steady,sr,95,38.0,force,lower_fx,-0.0002392774767940864 +steady,sr,95,38.0,force,lower_fy,-0.0034884396009147167 +steady,sr,96,38.4,force,front_fx,0.0003572988207451999 +steady,sr,96,38.4,force,front_fy,4.553841392862523e-07 +steady,sr,96,38.4,force,upper_fx,-0.0002368804271100089 +steady,sr,96,38.4,force,upper_fy,0.0034984827507287264 +steady,sr,96,38.4,force,lower_fx,-0.00023551518097519875 +steady,sr,96,38.4,force,lower_fy,-0.003498072735965252 +steady,sr,97,38.8,force,front_fx,0.00035770959220826626 +steady,sr,97,38.8,force,front_fy,4.4333262394502526e-07 +steady,sr,97,38.8,force,upper_fx,-0.00023608520859852433 +steady,sr,97,38.8,force,upper_fy,0.0035058993380516768 +steady,sr,97,38.8,force,lower_fx,-0.0002349030110053718 +steady,sr,97,38.8,force,lower_fy,-0.0035044634714722633 +steady,sr,98,39.2,force,front_fx,0.00035684704198502004 +steady,sr,98,39.2,force,front_fy,1.8116101330178935e-07 +steady,sr,98,39.2,force,upper_fx,-0.00023886967392172664 +steady,sr,98,39.2,force,upper_fy,0.0035063184332102537 +steady,sr,98,39.2,force,lower_fx,-0.0002381457161391154 +steady,sr,98,39.2,force,lower_fy,-0.0035069331061095 +steady,sr,99,39.6,force,front_fx,0.0003537320008035749 +steady,sr,99,39.6,force,front_fy,4.960429009770451e-07 +steady,sr,99,39.6,force,upper_fx,-0.00024354411289095879 +steady,sr,99,39.6,force,upper_fy,0.003497489495202899 +steady,sr,99,39.6,force,lower_fx,-0.00024259017664007843 +steady,sr,99,39.6,force,lower_fy,-0.0034972375724464655 +steady,sr,100,40.0,force,front_fx,0.00035538975498639047 +steady,sr,100,40.0,force,front_fy,3.16862923455119e-07 +steady,sr,100,40.0,force,upper_fx,-0.00024275390023831278 +steady,sr,100,40.0,force,upper_fy,0.003491179319098592 +steady,sr,100,40.0,force,lower_fx,-0.00024177679733838886 +steady,sr,100,40.0,force,lower_fy,-0.0034905122593045235 +steady,sr,101,40.4,force,front_fx,0.00035758581361733377 +steady,sr,101,40.4,force,front_fy,1.734144490228573e-07 +steady,sr,101,40.4,force,upper_fx,-0.00023831389262340963 +steady,sr,101,40.4,force,upper_fy,0.003493859199807048 +steady,sr,101,40.4,force,lower_fx,-0.00023732069530524313 +steady,sr,101,40.4,force,lower_fy,-0.0034940296318382025 +steady,sr,102,40.8,force,front_fx,0.00035737548023462296 +steady,sr,102,40.8,force,front_fy,6.139641754998593e-07 +steady,sr,102,40.8,force,upper_fx,-0.0002358955389354378 +steady,sr,102,40.8,force,upper_fy,0.0035018716007471085 +steady,sr,102,40.8,force,lower_fx,-0.00023486079589929432 +steady,sr,102,40.8,force,lower_fy,-0.003500570310279727 +steady,sr,103,41.2,force,front_fx,0.0003573255380615592 +steady,sr,103,41.2,force,front_fy,1.8656763245417096e-07 +steady,sr,103,41.2,force,upper_fx,-0.0002370053407503292 +steady,sr,103,41.2,force,upper_fy,0.0035064765252172947 +steady,sr,103,41.2,force,lower_fx,-0.0002361265942454338 +steady,sr,103,41.2,force,lower_fy,-0.003506538225337863 +steady,sr,104,41.6,force,front_fx,0.000355041614966467 +steady,sr,104,41.6,force,front_fy,2.2790176501530368e-07 +steady,sr,104,41.6,force,upper_fx,-0.00024119141744449735 +steady,sr,104,41.6,force,upper_fy,0.003503222484141588 +steady,sr,104,41.6,force,lower_fx,-0.00024016000679694116 +steady,sr,104,41.6,force,lower_fy,-0.0035026720724999905 +steady,sr,105,42.0,force,front_fx,0.000354498450178653 +steady,sr,105,42.0,force,front_fy,2.6158136279264e-07 +steady,sr,105,42.0,force,upper_fx,-0.00024354929337278008 +steady,sr,105,42.0,force,upper_fy,0.003493299474939704 +steady,sr,105,42.0,force,lower_fx,-0.00024254088930319995 +steady,sr,105,42.0,force,lower_fy,-0.0034933111164718866 +steady,sr,106,42.4,force,front_fx,0.00035681432927958667 +steady,sr,106,42.4,force,front_fy,2.993110683746636e-07 +steady,sr,106,42.4,force,upper_fx,-0.0002408083382761106 +steady,sr,106,42.4,force,upper_fy,0.0034911909606307745 +steady,sr,106,42.4,force,lower_fx,-0.0002402979735052213 +steady,sr,106,42.4,force,lower_fy,-0.0034909574314951897 +steady,sr,107,42.8,force,front_fx,0.0003571419510990381 +steady,sr,107,42.8,force,front_fy,4.669171573823405e-07 +steady,sr,107,42.8,force,upper_fx,-0.0002372187445871532 +steady,sr,107,42.8,force,upper_fy,0.0034974715672433376 +steady,sr,107,42.8,force,lower_fx,-0.0002364009851589799 +steady,sr,107,42.8,force,lower_fy,-0.0034971991553902626 +steady,sr,108,43.2,force,front_fx,0.0003577421884983778 +steady,sr,108,43.2,force,front_fy,3.4078948374371976e-07 +steady,sr,108,43.2,force,upper_fx,-0.00023579804110340774 +steady,sr,108,43.2,force,upper_fy,0.003504652762785554 +steady,sr,108,43.2,force,lower_fx,-0.00023502275871578604 +steady,sr,108,43.2,force,lower_fy,-0.0035040155053138733 +steady,sr,109,43.6,force,front_fx,0.0003570114786271006 +steady,sr,109,43.6,force,front_fy,2.929815536845126e-07 +steady,sr,109,43.6,force,upper_fx,-0.00023814698215574026 +steady,sr,109,43.6,force,upper_fy,0.003506123088300228 +steady,sr,109,43.6,force,lower_fx,-0.0002381575177423656 +steady,sr,109,43.6,force,lower_fy,-0.003506898181512952 +steady,sr,110,44.0,force,front_fx,0.0003536755684763193 +steady,sr,110,44.0,force,front_fy,2.431403345326544e-07 +steady,sr,110,44.0,force,upper_fx,-0.00024292364832945168 +steady,sr,110,44.0,force,upper_fy,0.0034987730905413628 +steady,sr,110,44.0,force,lower_fx,-0.00024213366850744933 +steady,sr,110,44.0,force,lower_fy,-0.003498490434139967 +steady,sr,111,44.4,force,front_fx,0.000355380994733423 +steady,sr,111,44.4,force,front_fy,3.364223175594816e-07 +steady,sr,111,44.4,force,upper_fx,-0.0002426797873340547 +steady,sr,111,44.4,force,upper_fy,0.003491416573524475 +steady,sr,111,44.4,force,lower_fx,-0.000241750807617791 +steady,sr,111,44.4,force,lower_fy,-0.0034907683730125427 +steady,sr,112,44.8,force,front_fx,0.00035746878711506724 +steady,sr,112,44.8,force,front_fy,2.712214950406633e-07 +steady,sr,112,44.8,force,upper_fx,-0.00023904969566501677 +steady,sr,112,44.8,force,upper_fy,0.0034931174013763666 +steady,sr,112,44.8,force,lower_fx,-0.00023817579494789243 +steady,sr,112,44.8,force,lower_fy,-0.003492603311315179 +steady,sr,113,45.2,force,front_fx,0.00035743709304369986 +steady,sr,113,45.2,force,front_fy,3.432994617469376e-07 +steady,sr,113,45.2,force,upper_fx,-0.0002363297389820218 +steady,sr,113,45.2,force,upper_fy,0.003500624792650342 +steady,sr,113,45.2,force,lower_fx,-0.0002352763112867251 +steady,sr,113,45.2,force,lower_fy,-0.0035005637910217047 +steady,sr,114,45.6,force,front_fx,0.0003575017617549747 +steady,sr,114,45.6,force,front_fy,1.3835160928010737e-07 +steady,sr,114,45.6,force,upper_fx,-0.00023661095474381 +steady,sr,114,45.6,force,upper_fy,0.003505914006382227 +steady,sr,114,45.6,force,lower_fx,-0.0002358156634727493 +steady,sr,114,45.6,force,lower_fy,-0.0035047484561800957 +steady,sr,115,46.0,force,front_fx,0.0003555183357093483 +steady,sr,115,46.0,force,front_fy,2.7184563577975496e-07 +steady,sr,115,46.0,force,upper_fx,-0.00024031283101066947 +steady,sr,115,46.0,force,upper_fy,0.003504169639199972 +steady,sr,115,46.0,force,lower_fx,-0.00023957995290402323 +steady,sr,115,46.0,force,lower_fy,-0.0035026229452341795 +steady,sr,116,46.4,force,front_fx,0.0003542368358466774 +steady,sr,116,46.4,force,front_fy,1.889538481236741e-07 +steady,sr,116,46.4,force,upper_fx,-0.00024314163601957262 +steady,sr,116,46.4,force,upper_fy,0.0034945369698107243 +steady,sr,116,46.4,force,lower_fx,-0.00024267319531645626 +steady,sr,116,46.4,force,lower_fy,-0.003494484117254615 +steady,sr,117,46.8,force,front_fx,0.00035659215063787997 +steady,sr,117,46.8,force,front_fy,3.979653513397352e-07 +steady,sr,117,46.8,force,upper_fx,-0.00024101362214423716 +steady,sr,117,46.8,force,upper_fy,0.00349133531562984 +steady,sr,117,46.8,force,lower_fx,-0.00024044209567364305 +steady,sr,117,46.8,force,lower_fy,-0.0034899692982435226 +steady,sr,118,47.2,force,front_fx,0.00035697765997610986 +steady,sr,118,47.2,force,front_fy,2.381031691811586e-07 +steady,sr,118,47.2,force,upper_fx,-0.00023774315195623785 +steady,sr,118,47.2,force,upper_fy,0.0034966173116117716 +steady,sr,118,47.2,force,lower_fx,-0.00023707568470854312 +steady,sr,118,47.2,force,lower_fy,-0.0034972382709383965 +steady,sr,119,47.6,force,front_fx,0.0003577760944608599 +steady,sr,119,47.6,force,front_fy,2.702676340504695e-07 +steady,sr,119,47.6,force,upper_fx,-0.0002359722857363522 +steady,sr,119,47.6,force,upper_fy,0.0035033542662858963 +steady,sr,119,47.6,force,lower_fx,-0.00023522968695033342 +steady,sr,119,47.6,force,lower_fy,-0.0035035640466958284 +steady,sr,120,48.0,force,front_fx,0.0003573045541997999 +steady,sr,120,48.0,force,front_fy,3.036180089566187e-07 +steady,sr,120,48.0,force,upper_fx,-0.00023771238920744509 +steady,sr,120,48.0,force,upper_fy,0.0035058900248259306 +steady,sr,120,48.0,force,lower_fx,-0.00023680087178945541 +steady,sr,120,48.0,force,lower_fy,-0.0035052329767495394 +steady,sr,121,48.4,force,front_fx,0.0003537250740919262 +steady,sr,121,48.4,force,front_fy,1.76130512841155e-07 +steady,sr,121,48.4,force,upper_fx,-0.0002423605474177748 +steady,sr,121,48.4,force,upper_fy,0.00350006390362978 +steady,sr,121,48.4,force,lower_fx,-0.00024169003881979734 +steady,sr,121,48.4,force,lower_fy,-0.0034998878836631775 +steady,sr,122,48.8,force,front_fx,0.00035526041756384075 +steady,sr,122,48.8,force,front_fy,4.320578455008217e-07 +steady,sr,122,48.8,force,upper_fx,-0.0002424300037091598 +steady,sr,122,48.8,force,upper_fy,0.0034921353217214346 +steady,sr,122,48.8,force,lower_fx,-0.00024220791237894446 +steady,sr,122,48.8,force,lower_fy,-0.0034931416157633066 +steady,sr,123,49.2,force,front_fx,0.0003572198620531708 +steady,sr,123,49.2,force,front_fy,-5.422683813094409e-08 +steady,sr,123,49.2,force,upper_fx,-0.00023948465241119266 +steady,sr,123,49.2,force,upper_fy,0.003493074793368578 +steady,sr,123,49.2,force,lower_fx,-0.0002388685243204236 +steady,sr,123,49.2,force,lower_fy,-0.00349243963137269 +steady,sr,124,49.6,force,front_fx,0.0003571525157894939 +steady,sr,124,49.6,force,front_fy,1.7643513672283007e-07 +steady,sr,124,49.6,force,upper_fx,-0.0002366029511904344 +steady,sr,124,49.6,force,upper_fy,0.003499611048027873 +steady,sr,124,49.6,force,lower_fx,-0.0002360799117013812 +steady,sr,124,49.6,force,lower_fy,-0.0034992932341992855 +steady,sr,125,50.0,force,front_fx,0.0003576441085897386 +steady,sr,125,50.0,force,front_fy,2.411936179669283e-07 +steady,sr,125,50.0,force,upper_fx,-0.0002364550600759685 +steady,sr,125,50.0,force,upper_fy,0.0035055046901106834 +steady,sr,125,50.0,force,lower_fx,-0.00023574111401103437 +steady,sr,125,50.0,force,lower_fy,-0.0035053910687565804 +steady,sr,126,50.4,force,front_fx,0.0003558349562808871 +steady,sr,126,50.4,force,front_fy,4.535908999514504e-07 +steady,sr,126,50.4,force,upper_fx,-0.0002395462797721848 +steady,sr,126,50.4,force,upper_fy,0.003504579421132803 +steady,sr,126,50.4,force,lower_fx,-0.0002391507150605321 +steady,sr,126,50.4,force,lower_fy,-0.0035042506642639637 +steady,sr,127,50.8,force,front_fx,0.0003542723134160042 +steady,sr,127,50.8,force,front_fy,1.3387617059379409e-07 +steady,sr,127,50.8,force,upper_fx,-0.0002429416199447587 +steady,sr,127,50.8,force,upper_fy,0.0034958263859152794 +steady,sr,127,50.8,force,lower_fx,-0.00024256150936707854 +steady,sr,127,50.8,force,lower_fy,-0.0034953600261360407 +steady,sr,128,51.2,force,front_fx,0.00035617724643088877 +steady,sr,128,51.2,force,front_fy,1.1503230723519664e-07 +steady,sr,128,51.2,force,upper_fx,-0.0002413368783891201 +steady,sr,128,51.2,force,upper_fy,0.0034914722200483084 +steady,sr,128,51.2,force,lower_fx,-0.0002409270964562893 +steady,sr,128,51.2,force,lower_fy,-0.0034911534748971462 +steady,sr,129,51.6,force,front_fx,0.00035712451790459454 +steady,sr,129,51.6,force,front_fy,3.848910239412362e-07 +steady,sr,129,51.6,force,upper_fx,-0.00023781620257068425 +steady,sr,129,51.6,force,upper_fy,0.0034957120660692453 +steady,sr,129,51.6,force,lower_fx,-0.00023730765678919852 +steady,sr,129,51.6,force,lower_fy,-0.003495855024084449 +steady,sr,130,52.0,force,front_fx,0.00035763176856562495 +steady,sr,130,52.0,force,front_fy,2.0495470209880295e-07 +steady,sr,130,52.0,force,upper_fx,-0.0002360505604883656 +steady,sr,130,52.0,force,upper_fy,0.0035026997793465853 +steady,sr,130,52.0,force,lower_fx,-0.00023545336443930864 +steady,sr,130,52.0,force,lower_fy,-0.003502550069242716 +steady,sr,131,52.4,force,front_fx,0.0003573165740817785 +steady,sr,131,52.4,force,front_fy,1.9624172864496359e-07 +steady,sr,131,52.4,force,upper_fx,-0.00023729007807560265 +steady,sr,131,52.4,force,upper_fy,0.0035058835055679083 +steady,sr,131,52.4,force,lower_fx,-0.0002367513079661876 +steady,sr,131,52.4,force,lower_fy,-0.0035053840838372707 +steady,sr,132,52.8,force,front_fx,0.0003543127968441695 +steady,sr,132,52.8,force,front_fy,8.921226424263295e-08 +steady,sr,132,52.8,force,upper_fx,-0.00024167652009055018 +steady,sr,132,52.8,force,upper_fy,0.0035014417953789234 +steady,sr,132,52.8,force,lower_fx,-0.00024102148017846048 +steady,sr,132,52.8,force,lower_fy,-0.003500803140923381 +steady,sr,133,53.2,force,front_fx,0.0003551423142198473 +steady,sr,133,53.2,force,front_fy,2.1367740998812224e-07 +steady,sr,133,53.2,force,upper_fx,-0.0002426741848466918 +steady,sr,133,53.2,force,upper_fy,0.003493187017738819 +steady,sr,133,53.2,force,lower_fx,-0.0002418285730527714 +steady,sr,133,53.2,force,lower_fy,-0.003492180025205016 +steady,sr,134,53.6,force,front_fx,0.0003570831613615155 +steady,sr,134,53.6,force,front_fy,3.1341943440565956e-07 +steady,sr,134,53.6,force,upper_fx,-0.00023986819724086672 +steady,sr,134,53.6,force,upper_fy,0.0034928331151604652 +steady,sr,134,53.6,force,lower_fx,-0.00023925278219394386 +steady,sr,134,53.6,force,lower_fy,-0.00349148060195148 +steady,sr,135,54.0,force,front_fx,0.0003570533881429583 +steady,sr,135,54.0,force,front_fy,1.5381360185529047e-07 +steady,sr,135,54.0,force,upper_fx,-0.0002368142013438046 +steady,sr,135,54.0,force,upper_fy,0.003498583333566785 +steady,sr,135,54.0,force,lower_fx,-0.0002367481793044135 +steady,sr,135,54.0,force,lower_fy,-0.0034982161596417427 +steady,sr,136,54.4,force,front_fx,0.00035764771746471524 +steady,sr,136,54.4,force,front_fy,2.189044501221815e-09 +steady,sr,136,54.4,force,upper_fx,-0.00023621007858309895 +steady,sr,136,54.4,force,upper_fy,0.0035044951364398003 +steady,sr,136,54.4,force,lower_fx,-0.00023573372163809836 +steady,sr,136,54.4,force,lower_fy,-0.0035047975834459066 +steady,sr,137,54.8,force,front_fx,0.0003561612975317985 +steady,sr,137,54.8,force,front_fy,1.5899175309641578e-07 +steady,sr,137,54.8,force,upper_fx,-0.00023904693080112338 +steady,sr,137,54.8,force,upper_fy,0.0035051959566771984 +steady,sr,137,54.8,force,lower_fx,-0.0002383744576945901 +steady,sr,137,54.8,force,lower_fy,-0.003504508174955845 +steady,sr,138,55.2,force,front_fx,0.0003542326157912612 +steady,sr,138,55.2,force,front_fy,1.6680816372627305e-07 +steady,sr,138,55.2,force,upper_fx,-0.00024252448929473758 +steady,sr,138,55.2,force,upper_fy,0.003496988443657756 +steady,sr,138,55.2,force,lower_fx,-0.00024190550902858377 +steady,sr,138,55.2,force,lower_fy,-0.003496662713587284 +steady,sr,139,55.6,force,front_fx,0.0003560007316991687 +steady,sr,139,55.6,force,front_fy,-3.11812620168439e-08 +steady,sr,139,55.6,force,upper_fx,-0.00024164048954844475 +steady,sr,139,55.6,force,upper_fy,0.0034919448662549257 +steady,sr,139,55.6,force,lower_fx,-0.0002410693996353075 +steady,sr,139,55.6,force,lower_fy,-0.003491828450933099 +steady,sr,140,56.0,force,front_fx,0.0003569546388462186 +steady,sr,140,56.0,force,front_fy,1.6258952939551818e-07 +steady,sr,140,56.0,force,upper_fx,-0.00023859435168560594 +steady,sr,140,56.0,force,upper_fy,0.0034952261485159397 +steady,sr,140,56.0,force,lower_fx,-0.00023891091404948384 +steady,sr,140,56.0,force,lower_fy,-0.0034954561851918697 +steady,sr,141,56.4,force,front_fx,0.00035753921838477254 +steady,sr,141,56.4,force,front_fy,5.029887617524764e-08 +steady,sr,141,56.4,force,upper_fx,-0.00023592039360664785 +steady,sr,141,56.4,force,upper_fy,0.0035015547182410955 +steady,sr,141,56.4,force,lower_fx,-0.0002357556513743475 +steady,sr,141,56.4,force,lower_fy,-0.0034990522544831038 +steady,sr,142,56.8,force,front_fx,0.0003576180315576494 +steady,sr,142,56.8,force,front_fy,4.290946264973172e-07 +steady,sr,142,56.8,force,upper_fx,-0.0002370158617850393 +steady,sr,142,56.8,force,upper_fy,0.003505460685119033 +steady,sr,142,56.8,force,lower_fx,-0.00023655818949919194 +steady,sr,142,56.8,force,lower_fy,-0.0035050043370574713 +steady,sr,143,57.2,force,front_fx,0.0003544562205206603 +steady,sr,143,57.2,force,front_fy,1.4791963565130573e-07 +steady,sr,143,57.2,force,upper_fx,-0.00024088639474939555 +steady,sr,143,57.2,force,upper_fy,0.003501865779981017 +steady,sr,143,57.2,force,lower_fx,-0.0002404905972070992 +steady,sr,143,57.2,force,lower_fy,-0.0035017100162804127 +steady,sr,144,57.6,force,front_fx,0.00035506024141795933 +steady,sr,144,57.6,force,front_fy,2.6009854536823696e-07 +steady,sr,144,57.6,force,upper_fx,-0.0002425108541501686 +steady,sr,144,57.6,force,upper_fy,0.0034943511709570885 +steady,sr,144,57.6,force,lower_fx,-0.0002420041273580864 +steady,sr,144,57.6,force,lower_fy,-0.003495440585538745 +steady,sr,145,58.0,force,front_fx,0.0003567926469258964 +steady,sr,145,58.0,force,front_fy,-1.8445265936861688e-07 +steady,sr,145,58.0,force,upper_fx,-0.00024003633006941527 +steady,sr,145,58.0,force,upper_fy,0.003492521122097969 +steady,sr,145,58.0,force,lower_fx,-0.00023995294759515673 +steady,sr,145,58.0,force,lower_fy,-0.0034919804893434048 +steady,sr,146,58.4,force,front_fx,0.0003570515546016395 +steady,sr,146,58.4,force,front_fy,1.843797576839279e-07 +steady,sr,146,58.4,force,upper_fx,-0.00023736657749395818 +steady,sr,146,58.4,force,upper_fy,0.0034976934548467398 +steady,sr,146,58.4,force,lower_fx,-0.0002371813025092706 +steady,sr,146,58.4,force,lower_fy,-0.0034980871714651585 +steady,sr,147,58.8,force,front_fx,0.000357537908712402 +steady,sr,147,58.8,force,front_fy,3.399989623176225e-07 +steady,sr,147,58.8,force,upper_fx,-0.00023624711320735514 +steady,sr,147,58.8,force,upper_fy,0.0035036709159612656 +steady,sr,147,58.8,force,lower_fx,-0.00023569287441205233 +steady,sr,147,58.8,force,lower_fy,-0.003503447398543358 +steady,sr,148,59.2,force,front_fx,0.0003566097002476454 +steady,sr,148,59.2,force,front_fy,-5.5432902712482246e-08 +steady,sr,148,59.2,force,upper_fx,-0.00023834493185859174 +steady,sr,148,59.2,force,upper_fy,0.0035050711594522 +steady,sr,148,59.2,force,lower_fx,-0.00023793242871761322 +steady,sr,148,59.2,force,lower_fy,-0.003504917025566101 +steady,sr,149,59.6,force,front_fx,0.0003543284838087857 +steady,sr,149,59.6,force,front_fy,1.1204139838127958e-07 +steady,sr,149,59.6,force,upper_fx,-0.00024217837199103087 +steady,sr,149,59.6,force,upper_fy,0.0034980818163603544 +steady,sr,149,59.6,force,lower_fx,-0.0002417919458821416 +steady,sr,149,59.6,force,lower_fy,-0.003498132573440671 +steady,sr,150,60.0,force,front_fx,0.0003557445015758276 +steady,sr,150,60.0,force,front_fy,1.9888000224455027e-07 +steady,sr,150,60.0,force,upper_fx,-0.0002418830554233864 +steady,sr,150,60.0,force,upper_fy,0.003492408897727728 +steady,sr,150,60.0,force,lower_fx,-0.0002414887712802738 +steady,sr,150,60.0,force,lower_fy,-0.0034923034254461527 +steady,sr,151,60.4,force,front_fx,0.0003569101099856198 +steady,sr,151,60.4,force,front_fy,2.850366627171752e-07 +steady,sr,151,60.4,force,upper_fx,-0.0002389334695180878 +steady,sr,151,60.4,force,upper_fy,0.0034945844672620296 +steady,sr,151,60.4,force,lower_fx,-0.00023840906214900315 +steady,sr,151,60.4,force,lower_fy,-0.0034939430188387632 +steady,sr,152,60.8,force,front_fx,0.0003575122682377696 +steady,sr,152,60.8,force,front_fy,5.5096023743317346e-08 +steady,sr,152,60.8,force,upper_fx,-0.00023635744582861662 +steady,sr,152,60.8,force,upper_fy,0.003500388003885746 +steady,sr,152,60.8,force,lower_fx,-0.00023617474653292447 +steady,sr,152,60.8,force,lower_fy,-0.003500057850033045 +steady,sr,153,61.2,force,front_fx,0.0003575192531570792 +steady,sr,153,61.2,force,front_fy,1.724561968785565e-07 +steady,sr,153,61.2,force,upper_fx,-0.00023671530652791262 +steady,sr,153,61.2,force,upper_fy,0.0035050001461058855 +steady,sr,153,61.2,force,lower_fx,-0.0002364601823501289 +steady,sr,153,61.2,force,lower_fy,-0.0035046052653342485 +steady,sr,154,61.6,force,front_fx,0.0003548958629835397 +steady,sr,154,61.6,force,front_fy,6.120637152662312e-08 +steady,sr,154,61.6,force,upper_fx,-0.00024040699645411223 +steady,sr,154,61.6,force,upper_fy,0.0035025733523070812 +steady,sr,154,61.6,force,lower_fx,-0.00023998298274818808 +steady,sr,154,61.6,force,lower_fy,-0.0035026189871132374 +steady,sr,155,62.0,force,front_fx,0.0003549200191628188 +steady,sr,155,62.0,force,front_fy,1.3899072826006886e-07 +steady,sr,155,62.0,force,upper_fx,-0.00024216569727286696 +steady,sr,155,62.0,force,upper_fy,0.0034948750399053097 +steady,sr,155,62.0,force,lower_fx,-0.00024178229796234518 +steady,sr,155,62.0,force,lower_fy,-0.003494489239528775 +steady,sr,156,62.4,force,front_fx,0.0003566057712305337 +steady,sr,156,62.4,force,front_fy,2.466354658281489e-07 +steady,sr,156,62.4,force,upper_fx,-0.0002404482220299542 +steady,sr,156,62.4,force,upper_fy,0.003492527874186635 +steady,sr,156,62.4,force,lower_fx,-0.00024012834182940423 +steady,sr,156,62.4,force,lower_fy,-0.0034925215877592564 +steady,sr,157,62.8,force,front_fx,0.00035682294401340187 +steady,sr,157,62.8,force,front_fy,2.7188247031517676e-07 +steady,sr,157,62.8,force,upper_fx,-0.00023799054906703532 +steady,sr,157,62.8,force,upper_fy,0.003496883437037468 +steady,sr,157,62.8,force,lower_fx,-0.00023776014859322459 +steady,sr,157,62.8,force,lower_fy,-0.0034969362895935774 +steady,sr,158,63.2,force,front_fx,0.00035769521491602063 +steady,sr,158,63.2,force,front_fy,1.7054407663863458e-08 +steady,sr,158,63.2,force,upper_fx,-0.0002362739178352058 +steady,sr,158,63.2,force,upper_fy,0.003502785926684737 +steady,sr,158,63.2,force,lower_fx,-0.00023646432964596897 +steady,sr,158,63.2,force,lower_fy,-0.0035029854625463486 +steady,sr,159,63.6,force,front_fx,0.0003569915425032377 +steady,sr,159,63.6,force,front_fy,1.4875070064590545e-07 +steady,sr,159,63.6,force,upper_fx,-0.00023797573521733284 +steady,sr,159,63.6,force,upper_fy,0.003504903521388769 +steady,sr,159,63.6,force,lower_fx,-0.00023779105686116964 +steady,sr,159,63.6,force,lower_fy,-0.0035050876904278994 +steady,sr,160,64.0,force,front_fx,0.00035440438659861684 +steady,sr,160,64.0,force,front_fy,2.583388436505629e-07 +steady,sr,160,64.0,force,upper_fx,-0.00024169332755263895 +steady,sr,160,64.0,force,upper_fy,0.003499217564240098 +steady,sr,160,64.0,force,lower_fx,-0.00024126943026203662 +steady,sr,160,64.0,force,lower_fy,-0.0034992205910384655 +steady,sr,161,64.4,force,front_fx,0.000355562282493338 +steady,sr,161,64.4,force,front_fy,2.987739122772837e-08 +steady,sr,161,64.4,force,upper_fx,-0.00024182643392123282 +steady,sr,161,64.4,force,upper_fy,0.0034930212423205376 +steady,sr,161,64.4,force,lower_fx,-0.00024147849762812257 +steady,sr,161,64.4,force,lower_fy,-0.0034915003925561905 +steady,sr,162,64.8,force,front_fx,0.00035681205918081105 +steady,sr,162,64.8,force,front_fy,8.087736347306418e-08 +steady,sr,162,64.8,force,upper_fx,-0.00023923894332256168 +steady,sr,162,64.8,force,upper_fy,0.0034939583856612444 +steady,sr,162,64.8,force,lower_fx,-0.00023883109679445624 +steady,sr,162,64.8,force,lower_fy,-0.0034937579184770584 +steady,sr,163,65.2,force,front_fx,0.0003572979476302862 +steady,sr,163,65.2,force,front_fy,-9.13168705096723e-08 +steady,sr,163,65.2,force,upper_fx,-0.00023674860130995512 +steady,sr,163,65.2,force,upper_fy,0.0034993889275938272 +steady,sr,163,65.2,force,lower_fx,-0.00023691562819294631 +steady,sr,163,65.2,force,lower_fy,-0.0034995581954717636 +steady,sr,164,65.6,force,front_fx,0.00035756948636844754 +steady,sr,164,65.6,force,front_fy,1.600863441808542e-07 +steady,sr,164,65.6,force,upper_fx,-0.00023674851399846375 +steady,sr,164,65.6,force,upper_fy,0.0035045885015279055 +steady,sr,164,65.6,force,lower_fx,-0.00023627652262803167 +steady,sr,164,65.6,force,lower_fy,-0.0035044190008193254 +steady,sr,165,66.0,force,front_fx,0.0003553301212377846 +steady,sr,165,66.0,force,front_fy,9.734794303994931e-09 +steady,sr,165,66.0,force,upper_fx,-0.00023983459686860442 +steady,sr,165,66.0,force,upper_fy,0.0035031489096581936 +steady,sr,165,66.0,force,lower_fx,-0.00023952046467456967 +steady,sr,165,66.0,force,lower_fy,-0.0035031253937631845 +steady,sr,166,66.4,force,front_fx,0.00035490255686454475 +steady,sr,166,66.4,force,front_fy,2.782665262657247e-07 +steady,sr,166,66.4,force,upper_fx,-0.00024216983001679182 +steady,sr,166,66.4,force,upper_fy,0.00349652161821723 +steady,sr,166,66.4,force,lower_fx,-0.00024187144299503416 +steady,sr,166,66.4,force,lower_fy,-0.003495589131489396 +steady,sr,167,66.8,force,front_fx,0.00035639372072182596 +steady,sr,167,66.8,force,front_fy,3.415143794427422e-07 +steady,sr,167,66.8,force,upper_fx,-0.00024043643497861922 +steady,sr,167,66.8,force,upper_fy,0.003492885036394 +steady,sr,167,66.8,force,lower_fx,-0.00024046875478234142 +steady,sr,167,66.8,force,lower_fy,-0.0034929218236356974 +steady,sr,168,67.2,force,front_fx,0.0003565346705727279 +steady,sr,168,67.2,force,front_fy,5.352363530164439e-08 +steady,sr,168,67.2,force,upper_fx,-0.00023707938089501113 +steady,sr,168,67.2,force,upper_fy,0.003497010562568903 +steady,sr,168,67.2,force,lower_fx,-0.0002380531805101782 +steady,sr,168,67.2,force,lower_fy,-0.003495855024084449 +steady,sr,169,67.6,force,front_fx,0.0003578858741093427 +steady,sr,169,67.6,force,front_fy,3.1346672813015175e-07 +steady,sr,169,67.6,force,upper_fx,-0.00023626815527677536 +steady,sr,169,67.6,force,upper_fy,0.0035020443610846996 +steady,sr,169,67.6,force,lower_fx,-0.00023602726287208498 +steady,sr,169,67.6,force,lower_fy,-0.00350085087120533 +steady,sr,170,68.0,force,front_fx,0.00035691671655513346 +steady,sr,170,68.0,force,front_fy,-8.036935383870514e-08 +steady,sr,170,68.0,force,upper_fx,-0.00023763415811117738 +steady,sr,170,68.0,force,upper_fy,0.0035051831509917974 +steady,sr,170,68.0,force,lower_fx,-0.00023758869792800397 +steady,sr,170,68.0,force,lower_fy,-0.003505222499370575 +steady,sr,171,68.4,force,front_fx,0.0003546047955751419 +steady,sr,171,68.4,force,front_fy,-2.7422692028267193e-07 +steady,sr,171,68.4,force,upper_fx,-0.00024106321507133543 +steady,sr,171,68.4,force,upper_fy,0.0034999840427190065 +steady,sr,171,68.4,force,lower_fx,-0.00024098325229715556 +steady,sr,171,68.4,force,lower_fy,-0.0034998743794858456 +steady,sr,172,68.8,force,front_fx,0.0003553360002115369 +steady,sr,172,68.8,force,front_fy,-1.9876898349480143e-08 +steady,sr,172,68.8,force,upper_fx,-0.0002416280476609245 +steady,sr,172,68.8,force,upper_fy,0.0034935956355184317 +steady,sr,172,68.8,force,lower_fx,-0.00024145859060809016 +steady,sr,172,68.8,force,lower_fy,-0.003493935102596879 +steady,sr,173,69.2,force,front_fx,0.000356704113073647 +steady,sr,173,69.2,force,front_fy,1.7371567651025543e-07 +steady,sr,173,69.2,force,upper_fx,-0.00023980882542673498 +steady,sr,173,69.2,force,upper_fy,0.0034937364980578423 +steady,sr,173,69.2,force,lower_fx,-0.00023938676167745143 +steady,sr,173,69.2,force,lower_fy,-0.003493845695629716 +steady,sr,174,69.6,force,front_fx,0.0003572009736672044 +steady,sr,174,69.6,force,front_fy,1.0250689541635438e-07 +steady,sr,174,69.6,force,upper_fx,-0.00023703082115389407 +steady,sr,174,69.6,force,upper_fy,0.003498454112559557 +steady,sr,174,69.6,force,lower_fx,-0.00023675010015722364 +steady,sr,174,69.6,force,lower_fy,-0.00349872256629169 +steady,sr,175,70.0,force,front_fx,0.0003575845330487937 +steady,sr,175,70.0,force,front_fy,1.9462619604837528e-07 +steady,sr,175,70.0,force,upper_fx,-0.00023679167497903109 +steady,sr,175,70.0,force,upper_fy,0.0035039347130805254 +steady,sr,175,70.0,force,lower_fx,-0.0002363389212405309 +steady,sr,175,70.0,force,lower_fy,-0.003504321677610278 +steady,sr,176,70.4,force,front_fx,0.0003557694726623595 +steady,sr,176,70.4,force,front_fy,1.4042452534113181e-08 +steady,sr,176,70.4,force,upper_fx,-0.00023908732691779733 +steady,sr,176,70.4,force,upper_fy,0.003503532614558935 +steady,sr,176,70.4,force,lower_fx,-0.00023883621906861663 +steady,sr,176,70.4,force,lower_fy,-0.003503279760479927 +steady,sr,177,70.8,force,front_fx,0.00035482467501424253 +steady,sr,177,70.8,force,front_fy,1.2838602003739652e-07 +steady,sr,177,70.8,force,upper_fx,-0.00024216916062869132 +steady,sr,177,70.8,force,upper_fy,0.0034965858794748783 +steady,sr,177,70.8,force,lower_fx,-0.00024180611944757402 +steady,sr,177,70.8,force,lower_fy,-0.0034967754036188126 +steady,sr,178,71.2,force,front_fx,0.00035615425440482795 +steady,sr,178,71.2,force,front_fy,5.344791276229444e-09 +steady,sr,178,71.2,force,upper_fx,-0.00024063506862148643 +steady,sr,178,71.2,force,upper_fy,0.0034931835252791643 +steady,sr,178,71.2,force,lower_fx,-0.000240536144701764 +steady,sr,178,71.2,force,lower_fy,-0.003493065480142832 +steady,sr,179,71.6,force,front_fx,0.0003565455263014883 +steady,sr,179,71.6,force,front_fy,1.0010131745730177e-07 +steady,sr,179,71.6,force,upper_fx,-0.00023850001161918044 +steady,sr,179,71.6,force,upper_fy,0.0034956049639731646 +steady,sr,179,71.6,force,lower_fx,-0.00023834030434954911 +steady,sr,179,71.6,force,lower_fy,-0.003493391675874591 +steady,sr,180,72.0,force,front_fx,0.00035758779267780483 +steady,sr,180,72.0,force,front_fy,4.697756494920213e-08 +steady,sr,180,72.0,force,upper_fx,-0.00023635012621525675 +steady,sr,180,72.0,force,upper_fy,0.0035010690335184336 +steady,sr,180,72.0,force,lower_fx,-0.00023626562324352562 +steady,sr,180,72.0,force,lower_fy,-0.003501398954540491 +steady,sr,181,72.4,force,front_fx,0.00035737676080316305 +steady,sr,181,72.4,force,front_fy,3.598776032731621e-08 +steady,sr,181,72.4,force,upper_fx,-0.00023736170260235667 +steady,sr,181,72.4,force,upper_fy,0.0035045782569795847 +steady,sr,181,72.4,force,lower_fx,-0.00023733025591354817 +steady,sr,181,72.4,force,lower_fy,-0.003503997577354312 +steady,sr,182,72.8,force,front_fx,0.0003546259831637144 +steady,sr,182,72.8,force,front_fy,-1.0943404049612582e-07 +steady,sr,182,72.8,force,upper_fx,-0.00024652155116200447 +steady,sr,182,72.8,force,upper_fy,0.0034956568852066994 +steady,sr,182,72.8,force,lower_fx,-0.00024063317687250674 +steady,sr,182,72.8,force,lower_fy,-0.0035011889412999153 +steady,sr,183,73.2,force,front_fx,0.0003556832380127162 +steady,sr,183,73.2,force,front_fy,-1.0813397466336028e-07 +steady,sr,183,73.2,force,upper_fx,-0.00024154515995178372 +steady,sr,183,73.2,force,upper_fy,0.0034945050720125437 +steady,sr,183,73.2,force,lower_fx,-0.00024124354240484536 +steady,sr,183,73.2,force,lower_fy,-0.003494494827464223 +steady,sr,184,73.6,force,front_fx,0.00035634211963042617 +steady,sr,184,73.6,force,front_fy,7.748836594601016e-08 +steady,sr,184,73.6,force,upper_fx,-0.00023998718825168908 +steady,sr,184,73.6,force,upper_fy,0.003493744181469083 +steady,sr,184,73.6,force,lower_fx,-0.0002397712814854458 +steady,sr,184,73.6,force,lower_fy,-0.003493630327284336 +steady,sr,185,74.0,force,front_fx,0.0003570045519154519 +steady,sr,185,74.0,force,front_fy,3.007007620681179e-08 +steady,sr,185,74.0,force,upper_fx,-0.00023741832410451025 +steady,sr,185,74.0,force,upper_fy,0.003497637575492263 +steady,sr,185,74.0,force,lower_fx,-0.0002371107111684978 +steady,sr,185,74.0,force,lower_fy,-0.003497806843370199 +steady,sr,186,74.4,force,front_fx,0.0003575440205167979 +steady,sr,186,74.4,force,front_fy,-6.426758858424364e-08 +steady,sr,186,74.4,force,upper_fx,-0.00023648467322345823 +steady,sr,186,74.4,force,upper_fy,0.0035025635734200478 +steady,sr,186,74.4,force,lower_fx,-0.00023628976487088948 +steady,sr,186,74.4,force,lower_fy,-0.003502657637000084 +steady,sr,187,74.8,force,front_fx,0.00035609581391327083 +steady,sr,187,74.8,force,front_fy,-7.527443557364677e-08 +steady,sr,187,74.8,force,upper_fx,-0.00023878607316873968 +steady,sr,187,74.8,force,upper_fy,0.0035038187634199858 +steady,sr,187,74.8,force,lower_fx,-0.00023853853053878993 +steady,sr,187,74.8,force,lower_fy,-0.003503926796838641 +steady,sr,188,75.2,force,front_fx,0.0003547919914126396 +steady,sr,188,75.2,force,front_fy,9.487717989031808e-08 +steady,sr,188,75.2,force,upper_fx,-0.00024043563462328166 +steady,sr,188,75.2,force,upper_fy,0.0034988499246537685 +steady,sr,188,75.2,force,lower_fx,-0.00024142164329532534 +steady,sr,188,75.2,force,lower_fy,-0.0034974259324371815 +steady,sr,189,75.6,force,front_fx,0.000356168340658769 +steady,sr,189,75.6,force,front_fy,6.2778782172756564e-09 +steady,sr,189,75.6,force,upper_fx,-0.0002402102545602247 +steady,sr,189,75.6,force,upper_fy,0.003493569791316986 +steady,sr,189,75.6,force,lower_fx,-0.00024080464208964258 +steady,sr,189,75.6,force,lower_fy,-0.003492017276585102 +steady,sr,190,76.0,force,front_fx,0.00035644526360556483 +steady,sr,190,76.0,force,front_fy,2.8368958737701178e-08 +steady,sr,190,76.0,force,upper_fx,-0.00023867236450314522 +steady,sr,190,76.0,force,upper_fy,0.0034950384870171547 +steady,sr,190,76.0,force,lower_fx,-0.0002388458524364978 +steady,sr,190,76.0,force,lower_fy,-0.0034949094988405704 +steady,sr,191,76.4,force,front_fx,0.00035750135430134833 +steady,sr,191,76.4,force,front_fy,1.6249657619482605e-07 +steady,sr,191,76.4,force,upper_fx,-0.00024100947484839708 +steady,sr,191,76.4,force,upper_fy,0.0034959595650434494 +steady,sr,191,76.4,force,lower_fx,-0.00023652732488699257 +steady,sr,191,76.4,force,lower_fy,-0.0035006566904485226 +steady,sr,192,76.8,force,front_fx,0.00035735912388190627 +steady,sr,192,76.8,force,front_fy,1.2076343480771357e-08 +steady,sr,192,76.8,force,upper_fx,-0.00023708651133347303 +steady,sr,192,76.8,force,upper_fy,0.0035039717331528664 +steady,sr,192,76.8,force,lower_fx,-0.0002372076705796644 +steady,sr,192,76.8,force,lower_fy,-0.003504557302221656 +steady,sr,193,77.2,force,front_fx,0.0003549614630173892 +steady,sr,193,77.2,force,front_fy,1.8752710673197726e-07 +steady,sr,193,77.2,force,upper_fx,-0.00024042848963290453 +steady,sr,193,77.2,force,upper_fy,0.0035015325993299484 +steady,sr,193,77.2,force,lower_fx,-0.00024010932247620076 +steady,sr,193,77.2,force,lower_fy,-0.0035014331806451082 +steady,sr,194,77.6,force,front_fx,0.00035532598849385977 +steady,sr,194,77.6,force,front_fy,-6.534973806537892e-08 +steady,sr,194,77.6,force,upper_fx,-0.0002415383787592873 +steady,sr,194,77.6,force,upper_fy,0.003495175624266267 +steady,sr,194,77.6,force,lower_fx,-0.00024120828311424702 +steady,sr,194,77.6,force,lower_fy,-0.0034942906349897385 +steady,sr,195,78.0,force,front_fx,0.00035640213172882795 +steady,sr,195,78.0,force,front_fy,-1.4197139464044994e-08 +steady,sr,195,78.0,force,upper_fx,-0.00023970488109625876 +steady,sr,195,78.0,force,upper_fy,0.003494198666885495 +steady,sr,195,78.0,force,lower_fx,-0.00023998461256269366 +steady,sr,195,78.0,force,lower_fy,-0.0034936408046633005 +steady,sr,196,78.4,force,front_fx,0.00035677748383022845 +steady,sr,196,78.4,force,front_fy,2.0834812985981443e-08 +steady,sr,196,78.4,force,upper_fx,-0.00023771909764036536 +steady,sr,196,78.4,force,upper_fy,0.003497184021398425 +steady,sr,196,78.4,force,lower_fx,-0.00023771623091306537 +steady,sr,196,78.4,force,lower_fy,-0.003497182624414563 +steady,sr,197,78.8,force,front_fx,0.00035762242623604834 +steady,sr,197,78.8,force,front_fy,1.5859201596413186e-07 +steady,sr,197,78.8,force,upper_fx,-0.0002366372209507972 +steady,sr,197,78.8,force,upper_fy,0.0035025496035814285 +steady,sr,197,78.8,force,lower_fx,-0.00023673534451518208 +steady,sr,197,78.8,force,lower_fy,-0.003502862760797143 +steady,sr,198,79.2,force,front_fx,0.0003564259095583111 +steady,sr,198,79.2,force,front_fy,9.551644097882672e-08 +steady,sr,198,79.2,force,upper_fx,-0.000238574983086437 +steady,sr,198,79.2,force,upper_fy,0.0035014725290238857 +steady,sr,198,79.2,force,lower_fx,-0.000237996137002483 +steady,sr,198,79.2,force,lower_fy,-0.003503634827211499 +steady,sr,199,79.6,force,front_fx,0.0003548796521499753 +steady,sr,199,79.6,force,front_fy,-5.148074677663317e-08 +steady,sr,199,79.6,force,upper_fx,-0.00024118514556903392 +steady,sr,199,79.6,force,upper_fy,0.0034988168627023697 +steady,sr,199,79.6,force,lower_fx,-0.0002411635359749198 +steady,sr,199,79.6,force,lower_fy,-0.003498614067211747 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-5.0 +steady,sr,0,0.0,alpha,lower,5.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-5.0 +steady,sr,1,0.4,alpha,lower,5.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-5.0 +steady,sr,2,0.8,alpha,lower,5.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-5.0 +steady,sr,3,1.2,alpha,lower,5.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-5.0 +steady,sr,4,1.6,alpha,lower,5.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-5.0 +steady,sr,5,2.0,alpha,lower,5.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-5.0 +steady,sr,6,2.4,alpha,lower,5.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-5.0 +steady,sr,7,2.8,alpha,lower,5.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-5.0 +steady,sr,8,3.2,alpha,lower,5.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-5.0 +steady,sr,9,3.6,alpha,lower,5.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-5.0 +steady,sr,10,4.0,alpha,lower,5.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-5.0 +steady,sr,11,4.4,alpha,lower,5.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-5.0 +steady,sr,12,4.8,alpha,lower,5.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-5.0 +steady,sr,13,5.2,alpha,lower,5.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-5.0 +steady,sr,14,5.6,alpha,lower,5.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-5.0 +steady,sr,15,6.0,alpha,lower,5.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-5.0 +steady,sr,16,6.4,alpha,lower,5.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-5.0 +steady,sr,17,6.8,alpha,lower,5.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-5.0 +steady,sr,18,7.2,alpha,lower,5.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-5.0 +steady,sr,19,7.6,alpha,lower,5.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-5.0 +steady,sr,20,8.0,alpha,lower,5.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-5.0 +steady,sr,21,8.4,alpha,lower,5.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-5.0 +steady,sr,22,8.8,alpha,lower,5.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-5.0 +steady,sr,23,9.2,alpha,lower,5.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-5.0 +steady,sr,24,9.6,alpha,lower,5.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-5.0 +steady,sr,25,10.0,alpha,lower,5.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-5.0 +steady,sr,26,10.4,alpha,lower,5.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-5.0 +steady,sr,27,10.8,alpha,lower,5.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-5.0 +steady,sr,28,11.2,alpha,lower,5.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-5.0 +steady,sr,29,11.6,alpha,lower,5.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-5.0 +steady,sr,30,12.0,alpha,lower,5.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-5.0 +steady,sr,31,12.4,alpha,lower,5.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-5.0 +steady,sr,32,12.8,alpha,lower,5.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-5.0 +steady,sr,33,13.2,alpha,lower,5.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-5.0 +steady,sr,34,13.6,alpha,lower,5.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-5.0 +steady,sr,35,14.0,alpha,lower,5.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-5.0 +steady,sr,36,14.4,alpha,lower,5.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-5.0 +steady,sr,37,14.8,alpha,lower,5.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-5.0 +steady,sr,38,15.2,alpha,lower,5.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-5.0 +steady,sr,39,15.6,alpha,lower,5.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-5.0 +steady,sr,40,16.0,alpha,lower,5.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-5.0 +steady,sr,41,16.4,alpha,lower,5.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-5.0 +steady,sr,42,16.8,alpha,lower,5.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-5.0 +steady,sr,43,17.2,alpha,lower,5.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-5.0 +steady,sr,44,17.6,alpha,lower,5.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-5.0 +steady,sr,45,18.0,alpha,lower,5.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-5.0 +steady,sr,46,18.4,alpha,lower,5.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-5.0 +steady,sr,47,18.8,alpha,lower,5.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-5.0 +steady,sr,48,19.2,alpha,lower,5.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-5.0 +steady,sr,49,19.6,alpha,lower,5.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-5.0 +steady,sr,50,20.0,alpha,lower,5.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-5.0 +steady,sr,51,20.4,alpha,lower,5.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-5.0 +steady,sr,52,20.8,alpha,lower,5.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-5.0 +steady,sr,53,21.2,alpha,lower,5.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-5.0 +steady,sr,54,21.6,alpha,lower,5.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-5.0 +steady,sr,55,22.0,alpha,lower,5.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-5.0 +steady,sr,56,22.4,alpha,lower,5.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-5.0 +steady,sr,57,22.8,alpha,lower,5.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-5.0 +steady,sr,58,23.2,alpha,lower,5.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-5.0 +steady,sr,59,23.6,alpha,lower,5.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-5.0 +steady,sr,60,24.0,alpha,lower,5.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-5.0 +steady,sr,61,24.4,alpha,lower,5.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-5.0 +steady,sr,62,24.8,alpha,lower,5.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-5.0 +steady,sr,63,25.2,alpha,lower,5.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-5.0 +steady,sr,64,25.6,alpha,lower,5.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-5.0 +steady,sr,65,26.0,alpha,lower,5.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-5.0 +steady,sr,66,26.4,alpha,lower,5.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-5.0 +steady,sr,67,26.8,alpha,lower,5.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-5.0 +steady,sr,68,27.2,alpha,lower,5.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-5.0 +steady,sr,69,27.6,alpha,lower,5.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-5.0 +steady,sr,70,28.0,alpha,lower,5.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-5.0 +steady,sr,71,28.4,alpha,lower,5.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-5.0 +steady,sr,72,28.8,alpha,lower,5.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-5.0 +steady,sr,73,29.2,alpha,lower,5.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-5.0 +steady,sr,74,29.6,alpha,lower,5.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-5.0 +steady,sr,75,30.0,alpha,lower,5.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-5.0 +steady,sr,76,30.4,alpha,lower,5.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-5.0 +steady,sr,77,30.8,alpha,lower,5.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-5.0 +steady,sr,78,31.2,alpha,lower,5.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-5.0 +steady,sr,79,31.6,alpha,lower,5.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-5.0 +steady,sr,80,32.0,alpha,lower,5.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-5.0 +steady,sr,81,32.4,alpha,lower,5.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-5.0 +steady,sr,82,32.8,alpha,lower,5.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-5.0 +steady,sr,83,33.2,alpha,lower,5.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-5.0 +steady,sr,84,33.6,alpha,lower,5.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-5.0 +steady,sr,85,34.0,alpha,lower,5.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-5.0 +steady,sr,86,34.4,alpha,lower,5.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-5.0 +steady,sr,87,34.8,alpha,lower,5.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-5.0 +steady,sr,88,35.2,alpha,lower,5.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-5.0 +steady,sr,89,35.6,alpha,lower,5.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-5.0 +steady,sr,90,36.0,alpha,lower,5.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-5.0 +steady,sr,91,36.4,alpha,lower,5.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-5.0 +steady,sr,92,36.8,alpha,lower,5.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-5.0 +steady,sr,93,37.2,alpha,lower,5.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-5.0 +steady,sr,94,37.6,alpha,lower,5.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-5.0 +steady,sr,95,38.0,alpha,lower,5.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-5.0 +steady,sr,96,38.4,alpha,lower,5.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-5.0 +steady,sr,97,38.8,alpha,lower,5.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-5.0 +steady,sr,98,39.2,alpha,lower,5.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-5.0 +steady,sr,99,39.6,alpha,lower,5.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-5.0 +steady,sr,100,40.0,alpha,lower,5.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-5.0 +steady,sr,101,40.4,alpha,lower,5.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-5.0 +steady,sr,102,40.8,alpha,lower,5.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-5.0 +steady,sr,103,41.2,alpha,lower,5.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-5.0 +steady,sr,104,41.6,alpha,lower,5.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-5.0 +steady,sr,105,42.0,alpha,lower,5.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-5.0 +steady,sr,106,42.4,alpha,lower,5.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-5.0 +steady,sr,107,42.8,alpha,lower,5.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-5.0 +steady,sr,108,43.2,alpha,lower,5.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-5.0 +steady,sr,109,43.6,alpha,lower,5.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-5.0 +steady,sr,110,44.0,alpha,lower,5.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-5.0 +steady,sr,111,44.4,alpha,lower,5.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-5.0 +steady,sr,112,44.8,alpha,lower,5.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-5.0 +steady,sr,113,45.2,alpha,lower,5.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-5.0 +steady,sr,114,45.6,alpha,lower,5.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-5.0 +steady,sr,115,46.0,alpha,lower,5.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-5.0 +steady,sr,116,46.4,alpha,lower,5.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-5.0 +steady,sr,117,46.8,alpha,lower,5.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-5.0 +steady,sr,118,47.2,alpha,lower,5.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-5.0 +steady,sr,119,47.6,alpha,lower,5.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-5.0 +steady,sr,120,48.0,alpha,lower,5.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-5.0 +steady,sr,121,48.4,alpha,lower,5.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-5.0 +steady,sr,122,48.8,alpha,lower,5.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-5.0 +steady,sr,123,49.2,alpha,lower,5.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-5.0 +steady,sr,124,49.6,alpha,lower,5.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-5.0 +steady,sr,125,50.0,alpha,lower,5.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-5.0 +steady,sr,126,50.4,alpha,lower,5.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-5.0 +steady,sr,127,50.8,alpha,lower,5.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-5.0 +steady,sr,128,51.2,alpha,lower,5.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-5.0 +steady,sr,129,51.6,alpha,lower,5.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-5.0 +steady,sr,130,52.0,alpha,lower,5.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-5.0 +steady,sr,131,52.4,alpha,lower,5.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-5.0 +steady,sr,132,52.8,alpha,lower,5.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-5.0 +steady,sr,133,53.2,alpha,lower,5.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-5.0 +steady,sr,134,53.6,alpha,lower,5.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-5.0 +steady,sr,135,54.0,alpha,lower,5.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-5.0 +steady,sr,136,54.4,alpha,lower,5.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-5.0 +steady,sr,137,54.8,alpha,lower,5.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-5.0 +steady,sr,138,55.2,alpha,lower,5.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-5.0 +steady,sr,139,55.6,alpha,lower,5.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-5.0 +steady,sr,140,56.0,alpha,lower,5.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-5.0 +steady,sr,141,56.4,alpha,lower,5.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-5.0 +steady,sr,142,56.8,alpha,lower,5.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-5.0 +steady,sr,143,57.2,alpha,lower,5.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-5.0 +steady,sr,144,57.6,alpha,lower,5.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-5.0 +steady,sr,145,58.0,alpha,lower,5.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-5.0 +steady,sr,146,58.4,alpha,lower,5.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-5.0 +steady,sr,147,58.8,alpha,lower,5.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-5.0 +steady,sr,148,59.2,alpha,lower,5.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-5.0 +steady,sr,149,59.6,alpha,lower,5.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-5.0 +steady,sr,150,60.0,alpha,lower,5.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-5.0 +steady,sr,151,60.4,alpha,lower,5.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-5.0 +steady,sr,152,60.8,alpha,lower,5.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-5.0 +steady,sr,153,61.2,alpha,lower,5.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-5.0 +steady,sr,154,61.6,alpha,lower,5.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-5.0 +steady,sr,155,62.0,alpha,lower,5.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-5.0 +steady,sr,156,62.4,alpha,lower,5.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-5.0 +steady,sr,157,62.8,alpha,lower,5.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-5.0 +steady,sr,158,63.2,alpha,lower,5.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-5.0 +steady,sr,159,63.6,alpha,lower,5.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-5.0 +steady,sr,160,64.0,alpha,lower,5.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-5.0 +steady,sr,161,64.4,alpha,lower,5.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-5.0 +steady,sr,162,64.8,alpha,lower,5.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-5.0 +steady,sr,163,65.2,alpha,lower,5.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-5.0 +steady,sr,164,65.6,alpha,lower,5.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-5.0 +steady,sr,165,66.0,alpha,lower,5.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-5.0 +steady,sr,166,66.4,alpha,lower,5.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-5.0 +steady,sr,167,66.8,alpha,lower,5.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-5.0 +steady,sr,168,67.2,alpha,lower,5.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-5.0 +steady,sr,169,67.6,alpha,lower,5.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-5.0 +steady,sr,170,68.0,alpha,lower,5.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-5.0 +steady,sr,171,68.4,alpha,lower,5.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-5.0 +steady,sr,172,68.8,alpha,lower,5.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-5.0 +steady,sr,173,69.2,alpha,lower,5.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-5.0 +steady,sr,174,69.6,alpha,lower,5.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-5.0 +steady,sr,175,70.0,alpha,lower,5.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-5.0 +steady,sr,176,70.4,alpha,lower,5.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-5.0 +steady,sr,177,70.8,alpha,lower,5.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-5.0 +steady,sr,178,71.2,alpha,lower,5.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-5.0 +steady,sr,179,71.6,alpha,lower,5.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-5.0 +steady,sr,180,72.0,alpha,lower,5.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-5.0 +steady,sr,181,72.4,alpha,lower,5.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-5.0 +steady,sr,182,72.8,alpha,lower,5.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-5.0 +steady,sr,183,73.2,alpha,lower,5.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-5.0 +steady,sr,184,73.6,alpha,lower,5.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-5.0 +steady,sr,185,74.0,alpha,lower,5.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-5.0 +steady,sr,186,74.4,alpha,lower,5.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-5.0 +steady,sr,187,74.8,alpha,lower,5.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-5.0 +steady,sr,188,75.2,alpha,lower,5.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-5.0 +steady,sr,189,75.6,alpha,lower,5.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-5.0 +steady,sr,190,76.0,alpha,lower,5.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-5.0 +steady,sr,191,76.4,alpha,lower,5.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-5.0 +steady,sr,192,76.8,alpha,lower,5.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-5.0 +steady,sr,193,77.2,alpha,lower,5.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-5.0 +steady,sr,194,77.6,alpha,lower,5.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-5.0 +steady,sr,195,78.0,alpha,lower,5.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-5.0 +steady,sr,196,78.4,alpha,lower,5.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-5.0 +steady,sr,197,78.8,alpha,lower,5.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-5.0 +steady,sr,198,79.2,alpha,lower,5.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-5.0 +steady,sr,199,79.6,alpha,lower,5.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.05 +steady,sr,0,0.0,omega,lower,0.05 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.05 +steady,sr,1,0.4,omega,lower,0.05 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.05 +steady,sr,2,0.8,omega,lower,0.05 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.05 +steady,sr,3,1.2,omega,lower,0.05 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.05 +steady,sr,4,1.6,omega,lower,0.05 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.05 +steady,sr,5,2.0,omega,lower,0.05 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.05 +steady,sr,6,2.4,omega,lower,0.05 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.05 +steady,sr,7,2.8,omega,lower,0.05 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.05 +steady,sr,8,3.2,omega,lower,0.05 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.05 +steady,sr,9,3.6,omega,lower,0.05 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.05 +steady,sr,10,4.0,omega,lower,0.05 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.05 +steady,sr,11,4.4,omega,lower,0.05 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.05 +steady,sr,12,4.8,omega,lower,0.05 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.05 +steady,sr,13,5.2,omega,lower,0.05 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.05 +steady,sr,14,5.6,omega,lower,0.05 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.05 +steady,sr,15,6.0,omega,lower,0.05 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.05 +steady,sr,16,6.4,omega,lower,0.05 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.05 +steady,sr,17,6.8,omega,lower,0.05 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.05 +steady,sr,18,7.2,omega,lower,0.05 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.05 +steady,sr,19,7.6,omega,lower,0.05 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.05 +steady,sr,20,8.0,omega,lower,0.05 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.05 +steady,sr,21,8.4,omega,lower,0.05 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.05 +steady,sr,22,8.8,omega,lower,0.05 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.05 +steady,sr,23,9.2,omega,lower,0.05 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.05 +steady,sr,24,9.6,omega,lower,0.05 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.05 +steady,sr,25,10.0,omega,lower,0.05 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.05 +steady,sr,26,10.4,omega,lower,0.05 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.05 +steady,sr,27,10.8,omega,lower,0.05 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.05 +steady,sr,28,11.2,omega,lower,0.05 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.05 +steady,sr,29,11.6,omega,lower,0.05 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.05 +steady,sr,30,12.0,omega,lower,0.05 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.05 +steady,sr,31,12.4,omega,lower,0.05 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.05 +steady,sr,32,12.8,omega,lower,0.05 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.05 +steady,sr,33,13.2,omega,lower,0.05 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.05 +steady,sr,34,13.6,omega,lower,0.05 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.05 +steady,sr,35,14.0,omega,lower,0.05 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.05 +steady,sr,36,14.4,omega,lower,0.05 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.05 +steady,sr,37,14.8,omega,lower,0.05 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.05 +steady,sr,38,15.2,omega,lower,0.05 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.05 +steady,sr,39,15.6,omega,lower,0.05 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.05 +steady,sr,40,16.0,omega,lower,0.05 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.05 +steady,sr,41,16.4,omega,lower,0.05 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.05 +steady,sr,42,16.8,omega,lower,0.05 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.05 +steady,sr,43,17.2,omega,lower,0.05 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.05 +steady,sr,44,17.6,omega,lower,0.05 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.05 +steady,sr,45,18.0,omega,lower,0.05 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.05 +steady,sr,46,18.4,omega,lower,0.05 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.05 +steady,sr,47,18.8,omega,lower,0.05 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.05 +steady,sr,48,19.2,omega,lower,0.05 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.05 +steady,sr,49,19.6,omega,lower,0.05 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.05 +steady,sr,50,20.0,omega,lower,0.05 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.05 +steady,sr,51,20.4,omega,lower,0.05 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.05 +steady,sr,52,20.8,omega,lower,0.05 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.05 +steady,sr,53,21.2,omega,lower,0.05 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.05 +steady,sr,54,21.6,omega,lower,0.05 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.05 +steady,sr,55,22.0,omega,lower,0.05 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.05 +steady,sr,56,22.4,omega,lower,0.05 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.05 +steady,sr,57,22.8,omega,lower,0.05 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.05 +steady,sr,58,23.2,omega,lower,0.05 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.05 +steady,sr,59,23.6,omega,lower,0.05 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.05 +steady,sr,60,24.0,omega,lower,0.05 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.05 +steady,sr,61,24.4,omega,lower,0.05 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.05 +steady,sr,62,24.8,omega,lower,0.05 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.05 +steady,sr,63,25.2,omega,lower,0.05 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.05 +steady,sr,64,25.6,omega,lower,0.05 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.05 +steady,sr,65,26.0,omega,lower,0.05 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.05 +steady,sr,66,26.4,omega,lower,0.05 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.05 +steady,sr,67,26.8,omega,lower,0.05 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.05 +steady,sr,68,27.2,omega,lower,0.05 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.05 +steady,sr,69,27.6,omega,lower,0.05 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.05 +steady,sr,70,28.0,omega,lower,0.05 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.05 +steady,sr,71,28.4,omega,lower,0.05 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.05 +steady,sr,72,28.8,omega,lower,0.05 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.05 +steady,sr,73,29.2,omega,lower,0.05 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.05 +steady,sr,74,29.6,omega,lower,0.05 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.05 +steady,sr,75,30.0,omega,lower,0.05 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.05 +steady,sr,76,30.4,omega,lower,0.05 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.05 +steady,sr,77,30.8,omega,lower,0.05 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.05 +steady,sr,78,31.2,omega,lower,0.05 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.05 +steady,sr,79,31.6,omega,lower,0.05 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.05 +steady,sr,80,32.0,omega,lower,0.05 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.05 +steady,sr,81,32.4,omega,lower,0.05 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.05 +steady,sr,82,32.8,omega,lower,0.05 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.05 +steady,sr,83,33.2,omega,lower,0.05 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.05 +steady,sr,84,33.6,omega,lower,0.05 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.05 +steady,sr,85,34.0,omega,lower,0.05 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.05 +steady,sr,86,34.4,omega,lower,0.05 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.05 +steady,sr,87,34.8,omega,lower,0.05 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.05 +steady,sr,88,35.2,omega,lower,0.05 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.05 +steady,sr,89,35.6,omega,lower,0.05 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.05 +steady,sr,90,36.0,omega,lower,0.05 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.05 +steady,sr,91,36.4,omega,lower,0.05 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.05 +steady,sr,92,36.8,omega,lower,0.05 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.05 +steady,sr,93,37.2,omega,lower,0.05 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.05 +steady,sr,94,37.6,omega,lower,0.05 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.05 +steady,sr,95,38.0,omega,lower,0.05 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.05 +steady,sr,96,38.4,omega,lower,0.05 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.05 +steady,sr,97,38.8,omega,lower,0.05 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.05 +steady,sr,98,39.2,omega,lower,0.05 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.05 +steady,sr,99,39.6,omega,lower,0.05 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.05 +steady,sr,100,40.0,omega,lower,0.05 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.05 +steady,sr,101,40.4,omega,lower,0.05 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.05 +steady,sr,102,40.8,omega,lower,0.05 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.05 +steady,sr,103,41.2,omega,lower,0.05 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.05 +steady,sr,104,41.6,omega,lower,0.05 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.05 +steady,sr,105,42.0,omega,lower,0.05 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.05 +steady,sr,106,42.4,omega,lower,0.05 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.05 +steady,sr,107,42.8,omega,lower,0.05 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.05 +steady,sr,108,43.2,omega,lower,0.05 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.05 +steady,sr,109,43.6,omega,lower,0.05 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.05 +steady,sr,110,44.0,omega,lower,0.05 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.05 +steady,sr,111,44.4,omega,lower,0.05 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.05 +steady,sr,112,44.8,omega,lower,0.05 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.05 +steady,sr,113,45.2,omega,lower,0.05 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.05 +steady,sr,114,45.6,omega,lower,0.05 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.05 +steady,sr,115,46.0,omega,lower,0.05 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.05 +steady,sr,116,46.4,omega,lower,0.05 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.05 +steady,sr,117,46.8,omega,lower,0.05 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.05 +steady,sr,118,47.2,omega,lower,0.05 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.05 +steady,sr,119,47.6,omega,lower,0.05 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.05 +steady,sr,120,48.0,omega,lower,0.05 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.05 +steady,sr,121,48.4,omega,lower,0.05 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.05 +steady,sr,122,48.8,omega,lower,0.05 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.05 +steady,sr,123,49.2,omega,lower,0.05 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.05 +steady,sr,124,49.6,omega,lower,0.05 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.05 +steady,sr,125,50.0,omega,lower,0.05 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.05 +steady,sr,126,50.4,omega,lower,0.05 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.05 +steady,sr,127,50.8,omega,lower,0.05 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.05 +steady,sr,128,51.2,omega,lower,0.05 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.05 +steady,sr,129,51.6,omega,lower,0.05 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.05 +steady,sr,130,52.0,omega,lower,0.05 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.05 +steady,sr,131,52.4,omega,lower,0.05 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.05 +steady,sr,132,52.8,omega,lower,0.05 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.05 +steady,sr,133,53.2,omega,lower,0.05 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.05 +steady,sr,134,53.6,omega,lower,0.05 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.05 +steady,sr,135,54.0,omega,lower,0.05 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.05 +steady,sr,136,54.4,omega,lower,0.05 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.05 +steady,sr,137,54.8,omega,lower,0.05 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.05 +steady,sr,138,55.2,omega,lower,0.05 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.05 +steady,sr,139,55.6,omega,lower,0.05 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.05 +steady,sr,140,56.0,omega,lower,0.05 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.05 +steady,sr,141,56.4,omega,lower,0.05 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.05 +steady,sr,142,56.8,omega,lower,0.05 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.05 +steady,sr,143,57.2,omega,lower,0.05 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.05 +steady,sr,144,57.6,omega,lower,0.05 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.05 +steady,sr,145,58.0,omega,lower,0.05 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.05 +steady,sr,146,58.4,omega,lower,0.05 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.05 +steady,sr,147,58.8,omega,lower,0.05 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.05 +steady,sr,148,59.2,omega,lower,0.05 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.05 +steady,sr,149,59.6,omega,lower,0.05 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.05 +steady,sr,150,60.0,omega,lower,0.05 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.05 +steady,sr,151,60.4,omega,lower,0.05 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.05 +steady,sr,152,60.8,omega,lower,0.05 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.05 +steady,sr,153,61.2,omega,lower,0.05 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.05 +steady,sr,154,61.6,omega,lower,0.05 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.05 +steady,sr,155,62.0,omega,lower,0.05 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.05 +steady,sr,156,62.4,omega,lower,0.05 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.05 +steady,sr,157,62.8,omega,lower,0.05 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.05 +steady,sr,158,63.2,omega,lower,0.05 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.05 +steady,sr,159,63.6,omega,lower,0.05 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.05 +steady,sr,160,64.0,omega,lower,0.05 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.05 +steady,sr,161,64.4,omega,lower,0.05 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.05 +steady,sr,162,64.8,omega,lower,0.05 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.05 +steady,sr,163,65.2,omega,lower,0.05 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.05 +steady,sr,164,65.6,omega,lower,0.05 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.05 +steady,sr,165,66.0,omega,lower,0.05 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.05 +steady,sr,166,66.4,omega,lower,0.05 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.05 +steady,sr,167,66.8,omega,lower,0.05 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.05 +steady,sr,168,67.2,omega,lower,0.05 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.05 +steady,sr,169,67.6,omega,lower,0.05 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.05 +steady,sr,170,68.0,omega,lower,0.05 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.05 +steady,sr,171,68.4,omega,lower,0.05 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.05 +steady,sr,172,68.8,omega,lower,0.05 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.05 +steady,sr,173,69.2,omega,lower,0.05 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.05 +steady,sr,174,69.6,omega,lower,0.05 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.05 +steady,sr,175,70.0,omega,lower,0.05 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.05 +steady,sr,176,70.4,omega,lower,0.05 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.05 +steady,sr,177,70.8,omega,lower,0.05 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.05 +steady,sr,178,71.2,omega,lower,0.05 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.05 +steady,sr,179,71.6,omega,lower,0.05 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.05 +steady,sr,180,72.0,omega,lower,0.05 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.05 +steady,sr,181,72.4,omega,lower,0.05 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.05 +steady,sr,182,72.8,omega,lower,0.05 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.05 +steady,sr,183,73.2,omega,lower,0.05 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.05 +steady,sr,184,73.6,omega,lower,0.05 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.05 +steady,sr,185,74.0,omega,lower,0.05 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.05 +steady,sr,186,74.4,omega,lower,0.05 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.05 +steady,sr,187,74.8,omega,lower,0.05 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.05 +steady,sr,188,75.2,omega,lower,0.05 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.05 +steady,sr,189,75.6,omega,lower,0.05 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.05 +steady,sr,190,76.0,omega,lower,0.05 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.05 +steady,sr,191,76.4,omega,lower,0.05 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.05 +steady,sr,192,76.8,omega,lower,0.05 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.05 +steady,sr,193,77.2,omega,lower,0.05 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.05 +steady,sr,194,77.6,omega,lower,0.05 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.05 +steady,sr,195,78.0,omega,lower,0.05 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.05 +steady,sr,196,78.4,omega,lower,0.05 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.05 +steady,sr,197,78.8,omega,lower,0.05 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.05 +steady,sr,198,79.2,omega,lower,0.05 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.05 +steady,sr,199,79.6,omega,lower,0.05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_manifest.json new file mode 100644 index 0000000..6807407 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a5-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_wide.csv new file mode 100644 index 0000000..b831d91 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.1158822774887085,-0.014644530601799488,1.1576557159423828,0.00010924614616669714,1.1156481504440308,0.01485555898398161,0.0003557269519660622,2.1295691112754866e-06,-0.0002458425296936184,0.003487398847937584,-0.00023968852474354208,-0.0034841764718294144,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,1,0.4,1.1157796382904053,-0.014654580503702164,1.1575658321380615,0.00010337194544263184,1.1155495643615723,0.01485568005591631,0.000359432480763644,2.022026137638022e-06,-0.00023890765442047268,0.003494077129289508,-0.0002330785500817001,-0.0034916838631033897,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,2,0.8,1.1159881353378296,-0.01465668436139822,1.1577545404434204,0.00010522165393922478,1.1157615184783936,0.014860059134662151,0.000357641838490963,2.095298441417981e-06,-0.0002361878869123757,0.003508857684209943,-0.0002304648660356179,-0.003506170818582177,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,3,1.2,1.1164721250534058,-0.014662235043942928,1.1582094430923462,0.00010246074089081958,1.1162452697753906,0.014861922711133957,0.0003570444823708385,2.256766720165615e-06,-0.0002389040164416656,0.0035121580585837364,-0.00023311069526243955,-0.003509348025545478,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,4,1.6,1.1159931421279907,-0.014661959372460842,1.1577322483062744,0.0001004557780106552,1.115771770477295,0.014857661910355091,0.00035547465085983276,1.4779166122025345e-06,-0.0002448768063914031,0.0035045603290200233,-0.00023909971059765667,-0.0035021312069147825,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,5,2.0,1.1158075332641602,-0.014654641039669514,1.1575747728347778,0.00010138569632545114,1.115588665008545,0.01485341228544712,0.000352543022017926,1.8882396943808999e-06,-0.00024829639005474746,0.0034903299529105425,-0.00024219954502768815,-0.0034902000334113836,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,6,2.4,1.1158422231674194,-0.014658238738775253,1.1576331853866577,9.738211520016193e-05,1.1156240701675415,0.01484805066138506,0.0003565882216207683,2.0708466763608158e-06,-0.0002431510220048949,0.00348855322226882,-0.0002379507350269705,-0.0034857485443353653,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,7,2.8,1.1156800985336304,-0.014654283411800861,1.1574703454971313,0.00010134241892956197,1.1154686212539673,0.014850562438368797,0.00035974435741081834,1.7982919189307722e-06,-0.00023658647842239588,0.003501015715301037,-0.0002310563431819901,-0.003498627571389079,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,8,3.2,1.1163206100463867,-0.01465991698205471,1.1580841541290283,9.793254866963252e-05,1.1161141395568848,0.014846750535070896,0.00035741322790272534,1.5719010661996435e-06,-0.00023679867445025593,0.0035108381416648626,-0.00023180247808340937,-0.003508344991132617,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,9,3.6,1.1163437366485596,-0.014655640348792076,1.1580899953842163,0.00010196764196734875,1.1161413192749023,0.014848284423351288,0.0003563284408301115,1.958896518772235e-06,-0.00024101350572891533,0.0035098183434456587,-0.0002356650511501357,-0.003506612963974476,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,10,4.0,1.115729570388794,-0.014655165374279022,1.1574879884719849,9.7516858659219e-05,1.1155279874801636,0.014838949777185917,0.00035267547355033457,1.7280356132687302e-06,-0.000247311225393787,0.0034983777441084385,-0.00024237195611931384,-0.003496012883260846,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,11,4.4,1.115861415863037,-0.014653733000159264,1.1576517820358276,9.666246478445828e-05,1.115665078163147,0.01483844593167305,0.00035535224014893174,1.9220640297135105e-06,-0.0002456545189488679,0.0034877369180321693,-0.00023774597502779216,-0.0034824300091713667,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,12,4.8,1.1157546043395996,-0.014658876694738865,1.1575566530227661,9.36300857574679e-05,1.1155580282211304,0.014839939773082733,0.0003589215048123151,1.8579580682853702e-06,-0.00023952178889885545,0.003492471296340227,-0.00023460443480871618,-0.003490451257675886,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,13,5.2,1.115877389907837,-0.014665570110082626,1.1576632261276245,9.064706682693213e-05,1.1156858205795288,0.014841487631201744,0.000357772340066731,1.7548860569149838e-06,-0.00023597831022925675,0.003506855573505163,-0.0002312186552444473,-0.003503137268126011,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,14,5.6,1.11640465259552,-0.014666754752397537,1.1581647396087646,9.131172555498779e-05,1.116215705871582,0.014844706282019615,0.00035742908949032426,1.4961448187023052e-06,-0.00023781033814884722,0.003511471441015601,-0.00023340452753473073,-0.00350951193831861,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,15,6.0,1.1160281896591187,-0.014669924974441528,1.1577833890914917,8.666249777888879e-05,1.1158404350280762,0.01483851671218872,0.0003558097523637116,1.7069257864932297e-06,-0.00024349470913875848,0.003506151959300041,-0.00023928898735903203,-0.0035063489340245724,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,16,6.4,1.1157774925231934,-0.01466057263314724,1.1575582027435303,9.000666614156216e-05,1.1155935525894165,0.014835256151854992,0.0003523344057612121,1.4795996321481653e-06,-0.0002476327063050121,0.0034918682649731636,-0.00024303048849105835,-0.0034899807069450617,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,17,6.8,1.1158158779144287,-0.01466430351138115,1.1576226949691772,8.455456554656848e-05,1.1156352758407593,0.014827478677034378,0.0003564855724107474,1.4658550071544596e-06,-0.00024261539510916919,0.003488775808364153,-0.00023893435718491673,-0.003485880559310317,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,18,7.2,1.1156364679336548,-0.014661859720945358,1.1574455499649048,8.801358490018174e-05,1.115456461906433,0.01483103260397911,0.000359396479325369,1.514230916654924e-06,-0.00023681488528382033,0.003498865058645606,-0.0002321290667168796,-0.0034954503644257784,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,19,7.6,1.1162104606628418,-0.014666339382529259,1.157994270324707,8.41196088003926e-05,1.116036057472229,0.014826646074652672,0.00035729623050428927,1.686525365585112e-06,-0.0002364830143051222,0.0035093799233436584,-0.00023215058899950236,-0.003507485380396247,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,20,8.0,1.1163182258605957,-0.014665909111499786,1.1580824851989746,8.57093182276003e-05,1.1161460876464844,0.014828098937869072,0.0003567792591638863,1.6745140101193101e-06,-0.00023981410777196288,0.0035111538600176573,-0.00023546459851786494,-0.0035079887602478266,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,21,8.4,1.1157420873641968,-0.014664197340607643,1.1575136184692383,8.345824608113617e-05,1.1155707836151123,0.014821358025074005,0.000353144365362823,1.1684497849273612e-06,-0.0002462263801135123,0.0035002308432012796,-0.0002421871031401679,-0.003498621052131057,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,22,8.8,1.115839958190918,-0.014664373360574245,1.1576424837112427,8.022065594559535e-05,1.1156736612319946,0.014817966148257256,0.0003549320681486279,1.6021025430745794e-06,-0.00024571665562689304,0.0034895888529717922,-0.00024164422939065844,-0.003486731555312872,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,23,9.2,1.115733027458191,-0.014667876996099949,1.1575514078140259,7.861320045776665e-05,1.1155710220336914,0.014821006916463375,0.0003581759810913354,1.3483348766385461e-06,-0.00024021620629355311,0.003491217503324151,-0.00023597512335982174,-0.0034898286685347557,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,24,9.6,1.1157784461975098,-0.014675050042569637,1.1575837135314941,7.429573452100158e-05,1.115614891052246,0.014819754287600517,0.00035793110146187246,1.4108497907727724e-06,-0.00023607589537277818,0.0035045223776251078,-0.00023215146211441606,-0.0035031535662710667,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,25,10.0,1.1163411140441895,-0.014675975777208805,1.1581203937530518,7.648398604942486e-05,1.116180181503296,0.014825302176177502,0.0003575808950699866,1.4593191508538439e-06,-0.0002372009475948289,0.0035105806309729815,-0.00023304046771954745,-0.003509099828079343,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,26,10.4,1.1160496473312378,-0.01467980071902275,1.1578195095062256,7.145028212107718e-05,1.115891933441162,0.01481842901557684,0.0003560516925062984,1.605931288395368e-06,-0.0002421374956611544,0.0035066702403128147,-0.00023832380247768015,-0.0035047566052526236,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,27,10.8,1.1157513856887817,-0.014669987373054028,1.157543659210205,7.49559621908702e-05,1.1155961751937866,0.014814991503953934,0.00035244598984718323,1.5200639609247446e-06,-0.0002468596794642508,0.003493922296911478,-0.000243192829657346,-0.003492319956421852,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,28,11.2,1.115797519683838,-0.014673731289803982,1.1576149463653564,6.889376527396962e-05,1.1156436204910278,0.014806784689426422,0.00035588390892371535,1.3178301969674067e-06,-0.00024369024322368205,0.003487916197627783,-0.0002400978992227465,-0.0034863040782511234,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,29,11.6,1.1156097650527954,-0.014670797623693943,1.157429814338684,7.171263132477179e-05,1.115453839302063,0.01481060404330492,0.00035953932092525065,1.1472443475213367e-06,-0.0002371691371081397,0.00349676376208663,-0.0002333076117793098,-0.0034953171852976084,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,30,12.0,1.1161065101623535,-0.014676980674266815,1.157907247543335,6.613684672629461e-05,1.1159569025039673,0.014806443825364113,0.00035728272632695735,1.1057562687710742e-06,-0.00023616412363480777,0.0035076471976935863,-0.00023254244297277182,-0.0035061833914369345,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,31,12.4,1.1162900924682617,-0.01467572245746851,1.1580697298049927,6.845250027254224e-05,1.1161408424377441,0.014809074811637402,0.0003567220701370388,1.4223285234038485e-06,-0.00023890726151876152,0.003509935224428773,-0.00023513578344136477,-0.0035072851460427046,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,32,12.8,1.115761160850525,-0.014675912447273731,1.1575480699539185,6.631365249631926e-05,1.1156176328659058,0.014803334139287472,0.0003539503668434918,1.1120081353510614e-06,-0.0002448098675813526,0.0035015016328543425,-0.00024119188310578465,-0.0034998280461877584,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,33,13.2,1.1158231496810913,-0.014674123376607895,1.1576324701309204,6.745688006049022e-05,1.1156784296035767,0.014801756478846073,0.0003543078782968223,1.402373186465411e-06,-0.00024570009554736316,0.0034897681325674057,-0.0002422334800940007,-0.003488464979454875,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,34,13.6,1.1157203912734985,-0.014677239581942558,1.1575478315353394,6.623099761782214e-05,1.1155787706375122,0.014802477322518826,0.00035758872400037944,1.060179783962667e-06,-0.00024074065731838346,0.0034904310014098883,-0.00023748284729663283,-0.003486929927021265,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,35,14.0,1.1157002449035645,-0.014682101085782051,1.1575199365615845,6.370353366946802e-05,1.1155606508255005,0.01480360422283411,0.00035816998570226133,9.61360456130933e-07,-0.00023613794473931193,0.0035022494848817587,-0.00023279126617126167,-0.003500484861433506,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,36,14.4,1.1162737607955933,-0.014684672467410564,1.1580705642700195,6.33522795396857e-05,1.1161386966705322,0.014806469902396202,0.00035771532566286623,9.72979705693433e-07,-0.00023653337848372757,0.00350950937718153,-0.0002331521245650947,-0.003508063266053796,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,37,14.8,1.1160699129104614,-0.014687169343233109,1.1578556299209595,5.956847599009052e-05,1.1159355640411377,0.014802024699747562,0.00035634374944493175,1.0482357311047963e-06,-0.0002409188455203548,0.003507158486172557,-0.00023781266645528376,-0.0035054581239819527,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,38,15.2,1.1157336235046387,-0.014678887091577053,1.157536506652832,6.17905825492926e-05,1.1156030893325806,0.014797801151871681,0.0003525263164192438,1.206130377795489e-06,-0.00024632076383568347,0.0034954326692968607,-0.00024303811369463801,-0.003493971424177289,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,39,15.6,1.1157829761505127,-0.014680279418826103,1.1576124429702759,5.803739986731671e-05,1.1156551837921143,0.01479086373001337,0.00035563274286687374,8.74801571626449e-07,-0.00024394252977799624,0.003488473827019334,-0.00024087926431093365,-0.003486767178401351,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,40,16.0,1.1155884265899658,-0.01467907801270485,1.157425880432129,5.979596244287677e-05,1.1154636144638062,0.0147928511723876,0.0003591252025216818,1.2184731303932494e-06,-0.00023771575069986284,0.003495448501780629,-0.000234694016398862,-0.003493581898510456,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,41,16.4,1.1160048246383667,-0.014682961627840996,1.157821774482727,5.674024214386009e-05,1.1158807277679443,0.014791023917496204,0.00035734064294956625,1.0435995818625088e-06,-0.00023584473819937557,0.0035061996895819902,-0.00023312255507335067,-0.0035027170088142157,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,42,16.8,1.1162583827972412,-0.014685247093439102,1.1580523252487183,5.575810428126715e-05,1.1161370277404785,0.014792468398809433,0.0003571873821783811,1.288952603317739e-06,-0.00023810453421901911,0.0035095394123345613,-0.00023515823704656214,-0.0035078730434179306,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,43,17.2,1.1157896518707275,-0.014682851731777191,1.1575844287872314,5.524842708837241e-05,1.1156697273254395,0.014789397828280926,0.00035449001006782055,1.0928289384537493e-06,-0.00024336330534424633,0.003502681851387024,-0.00024054797540884465,-0.003501561935991049,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,44,17.6,1.115807294845581,-0.014683935791254044,1.1576275825500488,5.239904567133635e-05,1.1156898736953735,0.014784843660891056,0.00035392044810578227,9.88564806903014e-07,-0.00024548894725739956,0.0034906461369246244,-0.0002425495913485065,-0.0034881988540291786,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,45,18.0,1.1157100200653076,-0.014683873392641544,1.157549262046814,5.4851960157975554e-05,1.1155953407287598,0.014788542874157429,0.00035721194581128657,7.45053910122806e-07,-0.00024129556550178677,0.003488778369501233,-0.00023772659187670797,-0.003487734589725733,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,46,18.4,1.1156342029571533,-0.014690449461340904,1.157468318939209,5.071346095064655e-05,1.115521788597107,0.014785915613174438,0.00035797792952507734,1.4263926004787209e-06,-0.0002367167908232659,0.0035005370154976845,-0.00023367950052488595,-0.0034991472493857145,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,47,18.8,1.1162077188491821,-0.014690148644149303,1.1580196619033813,5.4281648772303015e-05,1.1160985231399536,0.014791815541684628,0.0003578333416953683,7.86411931130715e-07,-0.00023624516325071454,0.0035084702540189028,-0.00023329797841142863,-0.003506951965391636,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,48,19.2,1.1160835027694702,-0.01469464786350727,1.157881736755371,4.855878069065511e-05,1.1159751415252686,0.014785426668822765,0.00035669165663421154,1.030801627166511e-06,-0.000239854896790348,0.003507646033540368,-0.00023742140911053866,-0.003505387809127569,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,49,19.6,1.1157265901565552,-0.014685925096273422,1.1575376987457275,5.092532956041396e-05,1.11561918258667,0.014782666228711605,0.00035266336635686457,8.647581921650271e-07,-0.0002453586785122752,0.003497034078463912,-0.00024317885981872678,-0.0034958042670041323,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,50,20.0,1.1157801151275635,-0.014687430113554,1.1576164960861206,4.542397437035106e-05,1.1156764030456543,0.014774504117667675,0.00035554301575757563,8.275956702163967e-07,-0.0002434927155263722,0.003488830989226699,-0.00024137040600180626,-0.0034872991964221,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,51,20.4,1.1155813932418823,-0.014686938375234604,1.1574286222457886,4.64933218609076e-05,1.1154813766479492,0.014776441268622875,0.000358531775418669,8.531296202818339e-07,-0.00023833091836422682,0.0034937879536300898,-0.00023599561245646328,-0.00349270342849195,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,52,20.8,1.1159141063690186,-0.014690389856696129,1.1577447652816772,4.46179838036187e-05,1.1158133745193481,0.014775527641177177,0.00035756477154791355,8.268089004559442e-07,-0.00023580374545417726,0.0035044774413108826,-0.00023337718448601663,-0.003503918880596757,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,53,21.2,1.1162235736846924,-0.014693770557641983,1.1580336093902588,4.298527346691117e-05,1.1161259412765503,0.014776439405977726,0.00035715673584491014,9.031307968143665e-07,-0.00023750482068862766,0.0035088916774839163,-0.00023494436754845083,-0.0035077312495559454,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,54,21.6,1.1158175468444824,-0.01469257939606905,1.1576253175735474,4.253665611031465e-05,1.1157220602035522,0.014775196090340614,0.00035507342545315623,1.0942613926090416e-06,-0.0002426345890853554,0.0035051724407821894,-0.00023992046772036701,-0.003502899780869484,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,55,22.0,1.115799903869629,-0.014692869037389755,1.1576244831085205,3.8502810639329255e-05,1.115699052810669,0.014769465662539005,0.0003536701260600239,1.0168062090087915e-06,-0.00024515867698937654,0.0034916072618216276,-0.00024410775222349912,-0.003491772338747978,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,56,22.4,1.1157095432281494,-0.014692271128296852,1.1575545072555542,4.0542654460296035e-05,1.115610957145691,0.014772908762097359,0.00035660111461766064,6.590217367374862e-07,-0.00024161161854863167,0.0034895436838269234,-0.00023929089365992695,-0.0034880200400948524,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,57,22.8,1.115587592124939,-0.01469816081225872,1.157431960105896,3.656905028037727e-05,1.1154894828796387,0.01477053202688694,0.00035815348383039236,9.095024324778933e-07,-0.000236706473515369,0.0034986159298568964,-0.0002345606917515397,-0.003497150493785739,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,58,23.2,1.1161437034606934,-0.014697814360260963,1.157968521118164,4.045199602842331e-05,1.11604642868042,0.014775998890399933,0.0003579039475880563,6.442538165174483e-07,-0.00023603923909831792,0.0035070241428911686,-0.00023385505483020097,-0.003506113775074482,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,59,23.6,1.1160955429077148,-0.014701269567012787,1.157904028892517,3.7528181564994156e-05,1.1160011291503906,0.014772173017263412,0.00035683586611412466,9.011039310280466e-07,-0.0002391042362432927,0.003507565939798951,-0.00023688393412157893,-0.0035066117998212576,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,60,24.0,1.1157290935516357,-0.014693720266222954,1.157546877861023,4.1145562136080116e-05,1.1156386137008667,0.01476884726434946,0.00035306168138049543,8.099148089968367e-07,-0.00024471175856888294,0.003498435253277421,-0.0002424602280370891,-0.0034973404835909605,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,61,24.4,1.1157842874526978,-0.014693750999867916,1.1576262712478638,3.915398701792583e-05,1.115695595741272,0.01476347167044878,0.0003552133566699922,8.384672582906205e-07,-0.00024377954832743853,0.003489741124212742,-0.00024168197705876082,-0.0034905867651104927,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,62,24.8,1.115585446357727,-0.014693503268063068,1.1574403047561646,3.957981607527472e-05,1.1154991388320923,0.014764135703444481,0.00035827766987495124,7.434080089296913e-07,-0.00023897280334495008,0.0034927427768707275,-0.0002375790645601228,-0.003492419607937336,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,63,25.2,1.1158301830291748,-0.014697466976940632,1.1576751470565796,3.519783422234468e-05,1.115747332572937,0.014763426035642624,0.00035751634277403355,6.246680186450249e-07,-0.0002359205245738849,0.0035030285362154245,-0.000233970393310301,-0.003501037135720253,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,64,25.6,1.116189956665039,-0.01470162719488144,1.158012866973877,3.13160489895381e-05,1.1161086559295654,0.01476499903947115,0.00035734244738705456,5.896641823710524e-07,-0.00023678093566559255,0.003508355701342225,-0.0002351029252167791,-0.0035073631443083286,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,65,26.0,1.1158477067947388,-0.01470174454152584,1.1576660871505737,2.821520138240885e-05,1.115768551826477,0.014763341285288334,0.0003557786112651229,5.003548722015694e-07,-0.0002414101327303797,0.003504663472995162,-0.00023938907543197274,-0.003503960557281971,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,66,26.4,1.11579430103302,-0.01470131054520607,1.157626748085022,2.654609488672577e-05,1.1157104969024658,0.014759212732315063,0.0003534348215907812,8.626785756860045e-07,-0.0002449740713927895,0.00349318515509367,-0.00024288622080348432,-0.003492109477519989,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,67,26.8,1.115715503692627,-0.01470104604959488,1.1575675010681152,2.949260851892177e-05,1.1156333684921265,0.014761027880012989,0.0003563869104254991,6.962985139580269e-07,-0.0002420873352093622,0.0034897122532129288,-0.00023994766524992883,-0.0034913313575088978,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,68,27.2,1.1155544519424438,-0.014704547822475433,1.1574101448059082,2.9120965336915106e-05,1.115472674369812,0.014760718680918217,0.0003579782205633819,4.979785330760933e-07,-0.00023708789376541972,0.0034971681889146566,-0.00023535174841526896,-0.00349693326279521,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,69,27.6,1.1160768270492554,-0.014704566448926926,1.157913088798523,3.226879925932735e-05,1.115997552871704,0.014765002764761448,0.00035788887180387974,6.936163003956608e-07,-0.00023597234394401312,0.0035059237852692604,-0.0002353185263928026,-0.0035067019052803516,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,70,28.0,1.116098403930664,-0.014706917107105255,1.15791654586792,2.930467417172622e-05,1.1160211563110352,0.014762078411877155,0.0003568516403902322,5.513949759006209e-07,-0.00023826284450478852,0.0035075887572020292,-0.00023656064877286553,-0.003506819251924753,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,71,28.4,1.1157383918762207,-0.014701572246849537,1.1575605869293213,3.0346123821800575e-05,1.1156606674194336,0.014759311452507973,0.0003535896248649806,7.44586714063189e-07,-0.00024383384152315557,0.00350027228705585,-0.00024292239686474204,-0.0034989737905561924,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,72,28.8,1.1157923936843872,-0.014699951745569706,1.1576356887817383,2.8247399313841015e-05,1.115715503692627,0.01475463155657053,0.00035481355735100806,3.410599731523689e-07,-0.00024351004685740918,0.003490168834105134,-0.00024208921240642667,-0.0034877697471529245,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,73,29.2,1.1155966520309448,-0.01470080018043518,1.157456636428833,2.797149500111118e-05,1.1155229806900024,0.01475432887673378,0.0003578978357836604,5.789490273855336e-07,-0.00023977576347533613,0.0034919085446745157,-0.0002377904747845605,-0.0034907746594399214,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,74,29.6,1.1157622337341309,-0.014702226966619492,1.1576130390167236,2.8571041184477508e-05,1.1156895160675049,0.014756466262042522,0.0003574035072233528,5.429909037957259e-07,-0.00023606976901646703,0.0035011968575417995,-0.00023421885271091014,-0.0035003996454179287,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,75,30.0,1.1161539554595947,-0.014707126654684544,1.157984733581543,2.6944533601636067e-05,1.1160826683044434,0.014757521450519562,0.0003576366580091417,6.303001214291726e-07,-0.0002365870022913441,0.0035075857304036617,-0.00023513798078056425,-0.0035066730342805386,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,76,30.4,1.1158798933029175,-0.014705037698149681,1.1577017307281494,2.8918222596985288e-05,1.1158092021942139,0.014759260229766369,0.00035606566234491765,4.409157554619014e-07,-0.00024037294497247785,0.003505651606246829,-0.0002387704880675301,-0.003503547515720129,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,77,30.8,1.1157917976379395,-0.014705874025821686,1.157625436782837,2.5284831281169318e-05,1.115721583366394,0.014752966351807117,0.000353440351318568,5.828244979966257e-07,-0.00024428468896076083,0.0034950776025652885,-0.0002431968750897795,-0.0034938985481858253,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,78,31.2,1.1157257556915283,-0.014703276567161083,1.1575806140899658,2.7785810743807815e-05,1.115657925605774,0.01475611887872219,0.00035609121550805867,6.852990850347851e-07,-0.0002422999095870182,0.0034888177178800106,-0.00024050513457041234,-0.0034890391398221254,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,79,31.6,1.1155359745025635,-0.014707911759614944,1.1573975086212158,2.3050592062645592e-05,1.115470051765442,0.014753132127225399,0.00035785307409241796,5.194189043322694e-07,-0.00023742971825413406,0.003495940240100026,-0.00023679016157984734,-0.003495869692414999,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,80,32.0,1.116012454032898,-0.014707423746585846,1.1578598022460938,2.621939711389132e-05,1.1159478425979614,0.01475903857499361,0.0003576135204639286,6.376196779456222e-07,-0.00023557618260383606,0.0035048138815909624,-0.00023418347700498998,-0.0035030446015298367,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,81,32.4,1.1160968542099,-0.014710669405758381,1.1579252481460571,2.413175934634637e-05,1.116032600402832,0.014755794778466225,0.0003572135465219617,6.082653953853878e-07,-0.00023761099146213382,0.0035072152968496084,-0.0002371331793256104,-0.0035070437006652355,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,82,32.8,1.115749716758728,-0.014704792760312557,1.1575794219970703,2.739129377005156e-05,1.1156865358352661,0.014753804542124271,0.000354066927684471,9.049097116076155e-07,-0.00024289179418701679,0.0035012783482670784,-0.00024148965894710273,-0.0035006627440452576,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,83,33.2,1.1157996654510498,-0.014703351072967052,1.1576478481292725,2.5889670723699965e-05,1.1157385110855103,0.014749385416507721,0.00035480104270391166,4.489367029236746e-07,-0.00024375421344302595,0.0034911816474050283,-0.00024387626035604626,-0.003490905510261655,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,84,33.6,1.1156072616577148,-0.01470429077744484,1.1574746370315552,2.5155180992442183e-05,1.115548849105835,0.014749393798410892,0.0003574707079678774,5.836506602463487e-07,-0.00024009124899748713,0.003491360927000642,-0.00023860415967646986,-0.0034905706997960806,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,85,34.0,1.1156980991363525,-0.014705441892147064,1.1575593948364258,2.4752935132710263e-05,1.1156405210494995,0.014751407317817211,0.00035743656917475164,6.102055181145261e-07,-0.0002364153478993103,0.0035000620409846306,-0.00023487521684728563,-0.003498220117762685,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,86,34.4,1.1161190271377563,-0.014711100608110428,1.1579606533050537,2.250976649520453e-05,1.1160634756088257,0.01475252490490675,0.00035759140155278146,5.038931476519792e-07,-0.0002363079838687554,0.0035059216897934675,-0.00023511267499998212,-0.0035045582335442305,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,87,34.8,1.1159061193466187,-0.014709580689668655,1.1577363014221191,2.4131131795002148e-05,1.115851640701294,0.01475505344569683,0.00035654488601721823,3.61524939762603e-07,-0.0002386972919339314,0.003505865577608347,-0.0002384111867286265,-0.0035055680200457573,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,88,35.2,1.1157852411270142,-0.01471020933240652,1.157627820968628,2.102055623254273e-05,1.1157342195510864,0.014749132096767426,0.0003533190756570548,4.5062847675580997e-07,-0.0002440045354887843,0.003496022429317236,-0.0002429240703349933,-0.0034958759788423777,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,89,35.6,1.1157357692718506,-0.014707640744745731,1.1575959920883179,2.3563648937852122e-05,1.1156837940216064,0.014750107191503048,0.00035564976860769093,2.3151100947416126e-07,-0.00024264770036097616,0.003489952301606536,-0.00024102961469907314,-0.0034891495015472174,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,90,36.0,1.1155245304107666,-0.014711114577949047,1.157392978668213,2.0317449525464326e-05,1.1154764890670776,0.01474796887487173,0.00035796151496469975,4.362266849966545e-07,-0.00023803533986210823,0.0034948112443089485,-0.00023480130766984075,-0.003491038689389825,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,91,36.4,1.1159504652023315,-0.014711379073560238,1.1578052043914795,2.0273568225093186e-05,1.1159000396728516,0.014750703237950802,0.00035745248897001147,2.8204601676407037e-07,-0.0002359270438319072,0.0035033302847296,-0.00023470765154343098,-0.003502951469272375,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,92,36.8,1.1160871982574463,-0.014714394696056843,1.1579246520996094,1.72033287526574e-05,1.1160380840301514,0.01474857609719038,0.0003573982685338706,3.13669602292066e-07,-0.00023717871226835996,0.003507007611915469,-0.00023565111041534692,-0.0035066050477325916,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,93,37.2,1.11576509475708,-0.01471127849072218,1.157601237297058,1.6302772564813495e-05,1.1157166957855225,0.014745447784662247,0.0003544516512192786,5.272348175822117e-07,-0.0002421202079858631,0.0035024508833885193,-0.00024086255871225148,-0.0035013952292501926,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,94,37.6,1.1158056259155273,-0.014708914794027805,1.1576603651046753,1.549929402244743e-05,1.1157573461532593,0.014742221683263779,0.0003544812207110226,2.8759657766386226e-07,-0.00024348152510356158,0.0034917655866593122,-0.0002425185521133244,-0.0034921697806566954,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,95,38.0,1.1156281232833862,-0.014710650779306889,1.1574968099594116,1.4059153727430385e-05,1.1155787706375122,0.014741117134690285,0.00035708778887055814,5.992239948682254e-07,-0.00024045203463174403,0.0034909825772047043,-0.0002392774767940864,-0.0034884396009147167,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,96,38.4,1.1156498193740845,-0.014711069874465466,1.1575157642364502,1.5210888705041725e-05,1.1155996322631836,0.014743677340447903,0.0003572988207451999,4.553841392862523e-07,-0.0002368804271100089,0.0034984827507287264,-0.00023551518097519875,-0.003498072735965252,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,97,38.8,1.116080641746521,-0.014716105535626411,1.1579300165176392,1.3468681572703645e-05,1.116033673286438,0.014744993299245834,0.00035770959220826626,4.4333262394502526e-07,-0.00023608520859852433,0.0035058993380516768,-0.0002349030110053718,-0.0035044634714722633,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,98,39.2,1.1159303188323975,-0.014715013094246387,1.1577651500701904,1.6891230188775808e-05,1.1158827543258667,0.01474833395332098,0.00035684704198502004,1.8116101330178935e-07,-0.00023886967392172664,0.0035063184332102537,-0.0002381457161391154,-0.0035069331061095,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,99,39.6,1.1157901287078857,-0.014713837765157223,1.1576305627822876,1.6197569493670017e-05,1.1157410144805908,0.01474312786012888,0.0003537320008035749,4.960429009770451e-07,-0.00024354411289095879,0.003497489495202899,-0.00024259017664007843,-0.0034972375724464655,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,100,40.0,1.1157505512237549,-0.01471130270510912,1.1576136350631714,1.831887311709579e-05,1.115705132484436,0.014743885025382042,0.00035538975498639047,3.16862923455119e-07,-0.00024275390023831278,0.003491179319098592,-0.00024177679733838886,-0.0034905122593045235,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,101,40.4,1.1155312061309814,-0.014713633805513382,1.15740168094635,1.525969673821237e-05,1.1154847145080566,0.01474305521696806,0.00035758581361733377,1.734144490228573e-07,-0.00023831389262340963,0.003493859199807048,-0.00023732069530524313,-0.0034940296318382025,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,102,40.8,1.1158936023712158,-0.014714482240378857,1.1577552556991577,1.3991655578138307e-05,1.1158467531204224,0.014744797721505165,0.00035737548023462296,6.139641754998593e-07,-0.0002358955389354378,0.0035018716007471085,-0.00023486079589929432,-0.003500570310279727,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,103,41.2,1.1160800457000732,-0.014716007746756077,1.1579231023788452,1.3711189239984378e-05,1.1160318851470947,0.014745899476110935,0.0003573255380615592,1.8656763245417096e-07,-0.0002370053407503292,0.0035064765252172947,-0.0002361265942454338,-0.003506538225337863,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,104,41.6,1.1157869100570679,-0.014713283628225327,1.1576250791549683,1.545902887301054e-05,1.1157402992248535,0.014742927625775337,0.000355041614966467,2.2790176501530368e-07,-0.00024119141744449735,0.003503222484141588,-0.00024016000679694116,-0.0035026720724999905,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,105,42.0,1.1158186197280884,-0.014709715731441975,1.1576719284057617,1.8402322893962264e-05,1.1157755851745605,0.014741556718945503,0.000354498450178653,2.6158136279264e-07,-0.00024354929337278008,0.003493299474939704,-0.00024254088930319995,-0.0034933111164718866,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,106,42.4,1.115648627281189,-0.01471103448420763,1.157518982887268,1.7337664758088067e-05,1.1156072616577148,0.01474007684737444,0.00035681432927958667,2.993110683746636e-07,-0.0002408083382761106,0.0034911909606307745,-0.0002402979735052213,-0.0034909574314951897,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,107,42.8,1.1156105995178223,-0.014710677787661552,1.1574822664260864,1.8158430975745432e-05,1.1155686378479004,0.014743288978934288,0.0003571419510990381,4.669171573823405e-07,-0.0002372187445871532,0.0034974715672433376,-0.0002364009851589799,-0.0034971991553902626,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,108,43.2,1.1160423755645752,-0.014716875739395618,1.1578984260559082,1.4274972272687592e-05,1.1160012483596802,0.014744342304766178,0.0003577421884983778,3.4078948374371976e-07,-0.00023579804110340774,0.003504652762785554,-0.00023502275871578604,-0.0035040155053138733,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,109,43.6,1.1159491539001465,-0.01471535675227642,1.1577913761138916,1.6513273294549435e-05,1.1159087419509888,0.014747828245162964,0.0003570114786271006,2.929815536845126e-07,-0.00023814698215574026,0.003506123088300228,-0.0002381575177423656,-0.003506898181512952,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,110,44.0,1.1157901287078857,-0.014715668745338917,1.157637357711792,1.3963573110231664e-05,1.1157501935958862,0.014742587693035603,0.0003536755684763193,2.431403345326544e-07,-0.00024292364832945168,0.0034987730905413628,-0.00024213366850744933,-0.003498490434139967,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,111,44.4,1.115766167640686,-0.014711780473589897,1.1576327085494995,1.75377990672132e-05,1.1157313585281372,0.014743673615157604,0.000355380994733423,3.364223175594816e-07,-0.0002426797873340547,0.003491416573524475,-0.000241750807617791,-0.0034907683730125427,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,112,44.8,1.1155405044555664,-0.014714146964251995,1.1574150323867798,1.6364250768674538e-05,1.1155004501342773,0.01474156603217125,0.00035746878711506724,2.712214950406633e-07,-0.00023904969566501677,0.0034931174013763666,-0.00023817579494789243,-0.003492603311315179,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,113,45.2,1.115835189819336,-0.014713751152157784,1.1577035188674927,1.7293627024628222e-05,1.115800380706787,0.014743622392416,0.00035743709304369986,3.432994617469376e-07,-0.0002363297389820218,0.003500624792650342,-0.0002352763112867251,-0.0035005637910217047,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,114,45.6,1.116061806678772,-0.01471644639968872,1.157913088798523,1.5097739378688857e-05,1.1160260438919067,0.014743982814252377,0.0003575017617549747,1.3835160928010737e-07,-0.00023661095474381,0.003505914006382227,-0.0002358156634727493,-0.0035047484561800957,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,115,46.0,1.11580228805542,-0.014715074561536312,1.1576488018035889,1.4496186850010417e-05,1.115770936012268,0.014742482453584671,0.0003555183357093483,2.7184563577975496e-07,-0.00024031283101066947,0.003504169639199972,-0.00023957995290402323,-0.0035026229452341795,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,116,46.4,1.1158249378204346,-0.014712040312588215,1.1576817035675049,1.5285499102901667e-05,1.1157920360565186,0.014740492217242718,0.0003542368358466774,1.889538481236741e-07,-0.00024314163601957262,0.0034945369698107243,-0.00024267319531645626,-0.003494484117254615,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,117,46.8,1.1156704425811768,-0.014713799580931664,1.1575430631637573,1.4116189049673267e-05,1.1156363487243652,0.014739270322024822,0.00035659215063787997,3.979653513397352e-07,-0.00024101362214423716,0.00349133531562984,-0.00024044209567364305,-0.0034899692982435226,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,118,47.2,1.1155788898468018,-0.014713369309902191,1.157455563545227,1.5830235497560352e-05,1.1155502796173096,0.014741741120815277,0.00035697765997610986,2.381031691811586e-07,-0.00023774315195623785,0.0034966173116117716,-0.00023707568470854312,-0.0034972382709383965,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,119,47.6,1.1159980297088623,-0.014719283208251,1.157861590385437,1.3167361430532765e-05,1.115970492362976,0.014741949737071991,0.0003577760944608599,2.702676340504695e-07,-0.0002359722857363522,0.0035033542662858963,-0.00023522968695033342,-0.0035035640466958284,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,120,48.0,1.1159590482711792,-0.014718408696353436,1.1578081846237183,1.4976914826547727e-05,1.1159323453903198,0.014745006337761879,0.0003573045541997999,3.036180089566187e-07,-0.00023771238920744509,0.0035058900248259306,-0.00023680087178945541,-0.0035052329767495394,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,121,48.4,1.1157903671264648,-0.014718299731612206,1.1576403379440308,1.16707824417972e-05,1.1157641410827637,0.01473990362137556,0.0003537250740919262,1.76130512841155e-07,-0.0002423605474177748,0.00350006390362978,-0.00024169003881979734,-0.0034998878836631775,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,122,48.8,1.1157841682434082,-0.01471611950546503,1.1576497554779053,1.1456360880401917e-05,1.1157561540603638,0.01473955623805523,0.00035526041756384075,4.320578455008217e-07,-0.0002424300037091598,0.0034921353217214346,-0.00024220791237894446,-0.0034931416157633066,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,123,49.2,1.1155526638031006,-0.014717234298586845,1.1574326753616333,9.543477972329129e-06,1.1155273914337158,0.014738286845386028,0.0003572198620531708,-5.422683813094409e-08,-0.00023948465241119266,0.003493074793368578,-0.0002388685243204236,-0.00349243963137269,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,124,49.6,1.115783452987671,-0.014718231745064259,1.1576560735702515,9.301300451625139e-06,1.1157574653625488,0.014738514088094234,0.0003571525157894939,1.7643513672283007e-07,-0.0002366029511904344,0.003499611048027873,-0.0002360799117013812,-0.0034992932341992855,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,125,50.0,1.116040825843811,-0.014719069004058838,1.157899022102356,1.0656722224666737e-05,1.1160162687301636,0.014740828424692154,0.0003576441085897386,2.411936179669283e-07,-0.0002364550600759685,0.0035055046901106834,-0.00023574111401103437,-0.0035053910687565804,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,126,50.4,1.1158186197280884,-0.014719557017087936,1.1576690673828125,9.86774011835223e-06,1.1157960891723633,0.014738085679709911,0.0003558349562808871,4.535908999514504e-07,-0.0002395462797721848,0.003504579421132803,-0.0002391507150605321,-0.0035042506642639637,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,127,50.8,1.1158300638198853,-0.014715118333697319,1.1576875448226929,1.2255715773790143e-05,1.1158047914505005,0.014737512916326523,0.0003542723134160042,1.3387617059379409e-07,-0.0002429416199447587,0.0034958263859152794,-0.00024256150936707854,-0.0034953600261360407,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,128,51.2,1.1156920194625854,-0.01471760869026184,1.1575664281845093,9.981369657907635e-06,1.115669846534729,0.014734994620084763,0.00035617724643088877,1.1503230723519664e-07,-0.0002413368783891201,0.0034914722200483084,-0.0002409270964562893,-0.0034911534748971462,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,129,51.6,1.1155591011047363,-0.014716842211782932,1.1574386358261108,1.1667535545711871e-05,1.1155356168746948,0.014737843535840511,0.00035712451790459454,3.848910239412362e-07,-0.00023781620257068425,0.0034957120660692453,-0.00023730765678919852,-0.003495855024084449,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,130,52.0,1.115957498550415,-0.014721930027008057,1.1578246355056763,8.232766049331985e-06,1.115933895111084,0.014738054014742374,0.00035763176856562495,2.0495470209880295e-07,-0.0002360505604883656,0.0035026997793465853,-0.00023545336443930864,-0.003502550069242716,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,131,52.4,1.1159688234329224,-0.01472195889800787,1.1578205823898315,8.857270586304367e-06,1.1159452199935913,0.014741153456270695,0.0003573165740817785,1.9624172864496359e-07,-0.00023729007807560265,0.0035058835055679083,-0.0002367513079661876,-0.0035053840838372707,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,132,52.8,1.1157939434051514,-0.014721537008881569,1.1576465368270874,6.7592773120850325e-06,1.1157723665237427,0.014737077057361603,0.0003543127968441695,8.921226424263295e-08,-0.00024167652009055018,0.0035014417953789234,-0.00024102148017846048,-0.003500803140923381,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,133,53.2,1.1158024072647095,-0.014719057828187943,1.157669186592102,7.695005479035899e-06,1.115779161453247,0.014735884964466095,0.0003551423142198473,2.1367740998812224e-07,-0.0002426741848466918,0.003493187017738819,-0.0002418285730527714,-0.003492180025205016,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,134,53.6,1.1155747175216675,-0.014718391001224518,1.1574535369873047,8.71772863320075e-06,1.1155496835708618,0.014735821634531021,0.0003570831613615155,3.1341943440565956e-07,-0.00023986819724086672,0.0034928331151604652,-0.00023925278219394386,-0.00349148060195148,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,135,54.0,1.1157375574111938,-0.014719344675540924,1.157616138458252,9.247432899428532e-06,1.1157145500183105,0.014735901728272438,0.0003570533881429583,1.5381360185529047e-07,-0.0002368142013438046,0.003498583333566785,-0.0002367481793044135,-0.0034982161596417427,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,136,54.4,1.1160191297531128,-0.014720778912305832,1.1578830480575562,1.0390640454716049e-05,1.1159995794296265,0.014738645404577255,0.00035764771746471524,2.189044501221815e-09,-0.00023621007858309895,0.0035044951364398003,-0.00023573372163809836,-0.0035047975834459066,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,137,54.8,1.1158397197723389,-0.014721977524459362,1.1576900482177734,8.345946298504714e-06,1.1158149242401123,0.014735991135239601,0.0003561612975317985,1.5899175309641578e-07,-0.00023904693080112338,0.0035051959566771984,-0.0002383744576945901,-0.003504508174955845,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,138,55.2,1.1158355474472046,-0.014718037098646164,1.1576945781707764,9.289972695114557e-06,1.1158149242401123,0.014735579490661621,0.0003542326157912612,1.6680816372627305e-07,-0.00024252448929473758,0.003496988443657756,-0.00024190550902858377,-0.003496662713587284,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,139,55.6,1.115715742111206,-0.014719984494149685,1.157590389251709,6.4264581851603e-06,1.1156940460205078,0.014732737094163895,0.0003560007316991687,-3.11812620168439e-08,-0.00024164048954844475,0.0034919448662549257,-0.0002410693996353075,-0.003491828450933099,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,140,56.0,1.1155505180358887,-0.01471884734928608,1.1574314832687378,8.667348993185442e-06,1.1155285835266113,0.014735549688339233,0.0003569546388462186,1.6258952939551818e-07,-0.00023859435168560594,0.0034952261485159397,-0.00023891091404948384,-0.0034954561851918697,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,141,56.4,1.1159170866012573,-0.014723498374223709,1.157788872718811,6.6689053710433654e-06,1.1158965826034546,0.014735938049852848,0.00035753921838477254,5.029887617524764e-08,-0.00023592039360664785,0.0035015547182410955,-0.0002357556513743475,-0.0034990522544831038,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,142,56.8,1.115971326828003,-0.014723573811352253,1.1578282117843628,8.212584361899644e-06,1.1159520149230957,0.014739158563315868,0.0003576180315576494,4.290946264973172e-07,-0.0002370158617850393,0.003505460685119033,-0.00023655818949919194,-0.0035050043370574713,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,143,57.2,1.1157993078231812,-0.014723049476742744,1.1576534509658813,6.324694368231576e-06,1.115781307220459,0.014735487289726734,0.0003544562205206603,1.4791963565130573e-07,-0.00024088639474939555,0.003501865779981017,-0.0002404905972070992,-0.0035017100162804127,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,144,57.6,1.1158162355422974,-0.014720351435244083,1.157684326171875,6.685878815915203e-06,1.1157993078231812,0.014734459109604359,0.00035506024141795933,2.6009854536823696e-07,-0.0002425108541501686,0.0034943511709570885,-0.0002420041273580864,-0.003495440585538745,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,145,58.0,1.1155962944030762,-0.014720209874212742,1.157475471496582,6.349673640215769e-06,1.1155792474746704,0.014733669348061085,0.0003567926469258964,-1.8445265936861688e-07,-0.00024003633006941527,0.003492521122097969,-0.00023995294759515673,-0.0034919804893434048,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,146,58.4,1.1156971454620361,-0.014720963314175606,1.157576322555542,6.293018941505579e-06,1.1156789064407349,0.014733023941516876,0.0003570515546016395,1.843797576839279e-07,-0.00023736657749395818,0.0034976934548467398,-0.0002371813025092706,-0.0034980871714651585,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,147,58.8,1.1159987449645996,-0.014722256921231747,1.157861590385437,7.33652859707945e-06,1.115977168083191,0.014735868200659752,0.000357537908712402,3.399989623176225e-07,-0.00023624711320735514,0.0035036709159612656,-0.00023569287441205233,-0.003503447398543358,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,148,59.2,1.1158533096313477,-0.014723848551511765,1.1577085256576538,5.843940925842617e-06,1.115835428237915,0.014734630472958088,0.0003566097002476454,-5.5432902712482246e-08,-0.00023834493185859174,0.0035050711594522,-0.00023793242871761322,-0.003504917025566101,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,149,59.6,1.1158373355865479,-0.014720218256115913,1.1576976776123047,6.708156888635131e-06,1.1158207654953003,0.014734122902154922,0.0003543284838087857,1.1204139838127958e-07,-0.00024217837199103087,0.0034980818163603544,-0.0002417919458821416,-0.003498132573440671,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,150,60.0,1.1157406568527222,-0.014720987528562546,1.1576149463653564,4.358083060651552e-06,1.11572265625,0.014731032773852348,0.0003557445015758276,1.9888000224455027e-07,-0.0002418830554233864,0.003492408897727728,-0.0002414887712802738,-0.0034923034254461527,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,151,60.4,1.1155482530593872,-0.014720209874212742,1.1574324369430542,5.873055670235772e-06,1.1155297756195068,0.014733821153640747,0.0003569101099856198,2.850366627171752e-07,-0.0002389334695180878,0.0034945844672620296,-0.00023840906214900315,-0.0034939430188387632,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,152,60.8,1.1158777475357056,-0.014723612926900387,1.1577531099319458,6.192859018483432e-06,1.115859866142273,0.014735412783920765,0.0003575122682377696,5.5096023743317346e-08,-0.00023635744582861662,0.003500388003885746,-0.00023617474653292447,-0.003500057850033045,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,153,61.2,1.1159688234329224,-0.014724966138601303,1.157829999923706,8.473246452922467e-06,1.1159541606903076,0.01473766565322876,0.0003575192531570792,1.724561968785565e-07,-0.00023671530652791262,0.0035050001461058855,-0.0002364601823501289,-0.0035046052653342485,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,154,61.6,1.1158043146133423,-0.014723232947289944,1.1576594114303589,9.162997230305336e-06,1.1157889366149902,0.014735857024788857,0.0003548958629835397,6.120637152662312e-08,-0.00024040699645411223,0.0035025733523070812,-0.00023998298274818808,-0.0035026189871132374,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,155,62.0,1.1158323287963867,-0.014722499065101147,1.157697319984436,7.179274234658806e-06,1.1158151626586914,0.014733398333191872,0.0003549200191628188,1.3899072826006886e-07,-0.00024216569727286696,0.0034948750399053097,-0.00024178229796234518,-0.003494489239528775,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,156,62.4,1.115621566772461,-0.014720887877047062,1.1575018167495728,6.1401187849696726e-06,1.1156035661697388,0.014733067713677883,0.0003566057712305337,2.466354658281489e-07,-0.0002404482220299542,0.003492527874186635,-0.00024012834182940423,-0.0034925215877592564,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,157,62.8,1.1156630516052246,-0.014722702093422413,1.1575459241867065,3.6492572235147236e-06,1.1156492233276367,0.014731373637914658,0.00035682294401340187,2.7188247031517676e-07,-0.00023799054906703532,0.003496883437037468,-0.00023776014859322459,-0.0034969362895935774,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,158,63.2,1.1159706115722656,-0.014723078347742558,1.1578401327133179,5.5047553360054735e-06,1.1159546375274658,0.01473493967205286,0.00035769521491602063,1.7054407663863458e-08,-0.0002362739178352058,0.003502785926684737,-0.00023646432964596897,-0.0035029854625463486,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,159,63.6,1.1158666610717773,-0.014725599437952042,1.157723307609558,4.075736342201708e-06,1.115851879119873,0.01473331917077303,0.0003569915425032377,1.4875070064590545e-07,-0.00023797573521733284,0.003504903521388769,-0.00023779105686116964,-0.0035050876904278994,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,160,64.0,1.1158384084701538,-0.014721945859491825,1.1577001810073853,5.3812150326848496e-06,1.1158243417739868,0.014733034186065197,0.00035440438659861684,2.583388436505629e-07,-0.00024169332755263895,0.003499217564240098,-0.00024126943026203662,-0.0034992205910384655,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,161,64.4,1.1157609224319458,-0.014723088592290878,1.15763521194458,2.9670407002413413e-06,1.1157469749450684,0.014730926603078842,0.000355562282493338,2.987739122772837e-08,-0.00024182643392123282,0.0034930212423205376,-0.00024147849762812257,-0.0034915003925561905,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,162,64.8,1.115552544593811,-0.014722171239554882,1.1574362516403198,4.8949455049296375e-06,1.1155390739440918,0.01473301649093628,0.00035681205918081105,8.087736347306418e-08,-0.00023923894332256168,0.0034939583856612444,-0.00023883109679445624,-0.0034937579184770584,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,163,65.2,1.115837812423706,-0.014724532142281532,1.1577162742614746,5.119329216540791e-06,1.1158238649368286,0.014733651652932167,0.0003572979476302862,-9.13168705096723e-08,-0.00023674860130995512,0.0034993889275938272,-0.00023691562819294631,-0.0034995581954717636,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,164,65.6,1.1159645318984985,-0.014726033434271812,1.1578279733657837,5.818519184686011e-06,1.115950107574463,0.014736020937561989,0.00035756948636844754,1.600863441808542e-07,-0.00023674851399846375,0.0035045885015279055,-0.00023627652262803167,-0.0035044190008193254,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,165,66.0,1.1158089637756348,-0.014724412932991982,1.1576664447784424,6.185287929838523e-06,1.1157971620559692,0.014734680764377117,0.0003553301212377846,9.734794303994931e-09,-0.00023983459686860442,0.0035031489096581936,-0.00023952046467456967,-0.0035031253937631845,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,166,66.4,1.1158454418182373,-0.014723258092999458,1.1577110290527344,5.210018571233377e-06,1.1158334016799927,0.014731734991073608,0.00035490255686454475,2.782665262657247e-07,-0.00024216983001679182,0.00349652161821723,-0.00024187144299503416,-0.003495589131489396,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,167,66.8,1.1156463623046875,-0.014720993116497993,1.1575263738632202,5.669458914780989e-06,1.1156352758407593,0.014731879346072674,0.00035639372072182596,3.415143794427422e-07,-0.00024043643497861922,0.003492885036394,-0.00024046875478234142,-0.0034929218236356974,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,168,67.2,1.115637183189392,-0.014722708612680435,1.1575210094451904,3.02359467241331e-06,1.1156232357025146,0.014730356633663177,0.0003565346705727279,5.352363530164439e-08,-0.00023707938089501113,0.003497010562568903,-0.0002380531805101782,-0.003495855024084449,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,169,67.6,1.115942120552063,-0.014723559841513634,1.1578172445297241,4.186461410427e-06,1.1159312725067139,0.014734051190316677,0.0003578858741093427,3.1346672813015175e-07,-0.00023626815527677536,0.0035020443610846996,-0.00023602726287208498,-0.00350085087120533,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,170,68.0,1.115878939628601,-0.014725804328918457,1.157737374305725,3.3900560083566234e-06,1.1158653497695923,0.014733239077031612,0.00035691671655513346,-8.036935383870514e-08,-0.00023763415811117738,0.0035051831509917974,-0.00023758869792800397,-0.003505222499370575,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,171,68.4,1.1158376932144165,-0.014722606167197227,1.1577000617980957,5.3575158744934015e-06,1.1158268451690674,0.014733511954545975,0.0003546047955751419,-2.7422692028267193e-07,-0.00024106321507133543,0.0034999840427190065,-0.00024098325229715556,-0.0034998743794858456,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,172,68.8,1.1157824993133545,-0.014723245985805988,1.157655119895935,4.495676876103971e-06,1.115768551826477,0.014731118455529213,0.0003553360002115369,-1.9876898349480143e-08,-0.0002416280476609245,0.0034935956355184317,-0.00024145859060809016,-0.003493935102596879,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,173,69.2,1.115563988685608,-0.0147227318957448,1.1574472188949585,5.101897841086611e-06,1.1155500411987305,0.014732271432876587,0.000356704113073647,1.7371567651025543e-07,-0.00023980882542673498,0.0034937364980578423,-0.00023938676167745143,-0.003493845695629716,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,174,69.6,1.1158028841018677,-0.014724072068929672,1.1576836109161377,4.970737336407183e-06,1.115790843963623,0.014733106829226017,0.0003572009736672044,1.0250689541635438e-07,-0.00023703082115389407,0.003498454112559557,-0.00023675010015722364,-0.00349872256629169,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,175,70.0,1.1159557104110718,-0.01472614798694849,1.1578221321105957,4.8223050725937355e-06,1.1159435510635376,0.014735189266502857,0.0003575845330487937,1.9462619604837528e-07,-0.00023679167497903109,0.0035039347130805254,-0.0002363389212405309,-0.003504321677610278,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,176,70.4,1.115814208984375,-0.014725131914019585,1.1576743125915527,5.3551084420178086e-06,1.1158053874969482,0.014734113588929176,0.0003557694726623595,1.4042452534113181e-08,-0.00023908732691779733,0.003503532614558935,-0.00023883621906861663,-0.003503279760479927,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,177,70.8,1.1158560514450073,-0.014723628759384155,1.157721757888794,5.035528829466784e-06,1.1158450841903687,0.01473167259246111,0.00035482467501424253,1.2838602003739652e-07,-0.00024216916062869132,0.0034965858794748783,-0.00024180611944757402,-0.0034967754036188126,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,178,71.2,1.1156748533248901,-0.014721659012138844,1.1575541496276855,6.5295280364807695e-06,1.1156631708145142,0.01473176572471857,0.00035615425440482795,5.344791276229444e-09,-0.00024063506862148643,0.0034931835252791643,-0.000240536144701764,-0.003493065480142832,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,179,71.6,1.115616798400879,-0.01472270768135786,1.1575016975402832,5.467976279760478e-06,1.1156072616577148,0.01473044790327549,0.0003565455263014883,1.0010131745730177e-07,-0.00023850001161918044,0.0034956049639731646,-0.00023834030434954911,-0.003493391675874591,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,180,72.0,1.1159148216247559,-0.01472400687634945,1.157790184020996,5.899949883314548e-06,1.1159064769744873,0.014733373187482357,0.00035758779267780483,4.697756494920213e-08,-0.00023635012621525675,0.0035010690335184336,-0.00023626562324352562,-0.003501398954540491,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,181,72.4,1.1158827543258667,-0.014726260676980019,1.1577481031417847,3.372976834725705e-06,1.1158753633499146,0.01473233848810196,0.00035737676080316305,3.598776032731621e-08,-0.00023736170260235667,0.0035045782569795847,-0.00023733025591354817,-0.003503997577354312,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,182,72.8,1.115837812423706,-0.014724372886121273,1.1577014923095703,2.7115277134726057e-06,1.1158291101455688,0.01473184023052454,0.0003546259831637144,-1.0943404049612582e-07,-0.00024652155116200447,0.0034956568852066994,-0.00024063317687250674,-0.0035011889412999153,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,183,73.2,1.1158021688461304,-0.014724543318152428,1.1576740741729736,1.428368705091998e-06,1.1157928705215454,0.014729911461472511,0.0003556832380127162,-1.0813397466336028e-07,-0.00024154515995178372,0.0034945050720125437,-0.00024124354240484536,-0.003494494827464223,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,184,73.6,1.1155816316604614,-0.014724543318152428,1.1574629545211792,1.373722739117511e-06,1.1155680418014526,0.014730237424373627,0.00035634211963042617,7.748836594601016e-08,-0.00023998718825168908,0.003493744181469083,-0.0002397712814854458,-0.003493630327284336,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,185,74.0,1.1157680749893188,-0.014725204557180405,1.1576513051986694,1.5702754581070621e-06,1.1157582998275757,0.01473167259246111,0.0003570045519154519,3.007007620681179e-08,-0.00023741832410451025,0.003497637575492263,-0.0002371107111684978,-0.003497806843370199,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,186,74.4,1.1159440279006958,-0.014727936126291752,1.1578136682510376,1.280838432649034e-06,1.1159327030181885,0.01473294012248516,0.0003575440205167979,-6.426758858424364e-08,-0.00023648467322345823,0.0035025635734200478,-0.00023628976487088948,-0.003502657637000084,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,187,74.8,1.1158198118209839,-0.01472597848623991,1.1576820611953735,4.021673703391571e-06,1.1158100366592407,0.014733877964317799,0.00035609581391327083,-7.527443557364677e-08,-0.00023878607316873968,0.0035038187634199858,-0.00023853853053878993,-0.003503926796838641,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,188,75.2,1.1158617734909058,-0.014724740758538246,1.1577284336090088,4.16814236814389e-06,1.1158524751663208,0.014730477705597878,0.0003547919914126396,9.487717989031808e-08,-0.00024043563462328166,0.0034988499246537685,-0.00024142164329532534,-0.0034974259324371815,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,189,75.6,1.115700125694275,-0.014722260646522045,1.157578468322754,6.847606073279167e-06,1.1156909465789795,0.01473156362771988,0.000356168340658769,6.2778782172756564e-09,-0.0002402102545602247,0.003493569791316986,-0.00024080464208964258,-0.003492017276585102,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,190,76.0,1.1156035661697388,-0.014723217114806175,1.1574891805648804,5.305894774210174e-06,1.115594506263733,0.014729943126440048,0.00035644526360556483,2.8368958737701178e-08,-0.00023867236450314522,0.0034950384870171547,-0.0002388458524364978,-0.0034949094988405704,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,191,76.4,1.1158862113952637,-0.014723950996994972,1.1577651500701904,6.0242973631829955e-06,1.1158779859542847,0.014732914976775646,0.00035750135430134833,1.6249657619482605e-07,-0.00024100947484839708,0.0034959595650434494,-0.00023652732488699257,-0.0035006566904485226,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,192,76.8,1.115885615348816,-0.014726785011589527,1.157753348350525,3.4515621791797457e-06,1.115878701210022,0.014732953161001205,0.00035735912388190627,1.2076343480771357e-08,-0.00023708651133347303,0.0035039717331528664,-0.0002372076705796644,-0.003504557302221656,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,193,77.2,1.1158359050750732,-0.01472518965601921,1.1576989889144897,3.143669800920179e-06,1.1158294677734375,0.01473222766071558,0.0003549614630173892,1.8752710673197726e-07,-0.00024042848963290453,0.0035015325993299484,-0.00024010932247620076,-0.0035014331806451082,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,194,77.6,1.115818977355957,-0.014724909327924252,1.1576915979385376,2.123200601999997e-06,1.1158115863800049,0.014730577357113361,0.00035532598849385977,-6.534973806537892e-08,-0.0002415383787592873,0.003495175624266267,-0.00024120828311424702,-0.0034942906349897385,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,195,78.0,1.1155974864959717,-0.01472446694970131,1.1574801206588745,1.972436393771204e-06,1.1155911684036255,0.014730274677276611,0.00035640213172882795,-1.4197139464044994e-08,-0.00023970488109625876,0.003494198666885495,-0.00023998461256269366,-0.0034936408046633005,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,196,78.4,1.1157386302947998,-0.01472526229918003,1.1576215028762817,1.855810523920809e-06,1.1157305240631104,0.014731061644852161,0.00035677748383022845,2.0834812985981443e-08,-0.00023771909764036536,0.003497184021398425,-0.00023771623091306537,-0.003497182624414563,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,197,78.8,1.1159297227859497,-0.014727412723004818,1.1578007936477661,1.4643578651885036e-06,1.1159189939498901,0.014732024632394314,0.00035762242623604834,1.5859201596413186e-07,-0.0002366372209507972,0.0035025496035814285,-0.00023673534451518208,-0.003502862760797143,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,198,79.2,1.1158241033554077,-0.01472646463662386,1.1576884984970093,3.1807396680960665e-06,1.1158162355422974,0.014732872135937214,0.0003564259095583111,9.551644097882672e-08,-0.000238574983086437,0.0035014725290238857,-0.000237996137002483,-0.003503634827211499,0.0,-5.0,5.0,0.0,-0.05,0.05 +steady,sr,199,79.6,1.1158663034439087,-0.014725100249052048,1.157732367515564,3.2726163681218168e-06,1.1158567667007446,0.014730621129274368,0.0003548796521499753,-5.148074677663317e-08,-0.00024118514556903392,0.0034988168627023697,-0.0002411635359749198,-0.003498614067211747,0.0,-5.0,5.0,0.0,-0.05,0.05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_long.csv new file mode 100644 index 0000000..4a981a0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.3491593026392366e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360453367233276 +steady,target,2,0.8,velocity,upper_uy,-6.0142643633298576e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3026001610683124e-08 +steady,target,2,0.8,velocity,lower_ux,1.1360440254211426 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360433101654053 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.164554238319397 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.6998284852197685e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360431909561157 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429893808970519e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360430717468262 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360453367233276 +steady,target,16,6.4,velocity,upper_uy,-6.100009704823606e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.513318572207936e-07 +steady,target,16,6.4,velocity,lower_ux,1.136043667793274 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360454559326172 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.0459883621224435e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360433101654053 +steady,target,21,8.4,velocity,upper_uy,-6.0808335547335446e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7600905266590416e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360445022583008 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043906211853 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360431909561157 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.1360450983047485 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.1360450983047485 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094121272326447e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.0452983423856494e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084866981836967e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.1360450983047485 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645545959472656 +steady,target,40,16.0,velocity,center_uy,1.943962644190833e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3958349465734727e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062805186957121e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785231304069384e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577263360843e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512526802751381e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106685032136738e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079913509893231e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2159662427820876e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255894469097e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360454559326172 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360431909561157 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.1360453367233276 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360431909561157 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360441446304321 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360433101654053 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360431909561157 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.164554476737976 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.1360453367233276 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.1360447406768799 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360434293746948 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.6995057440854e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035815385985188e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.842164879117263e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063623004592955e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.1360446214675903 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120755278971046e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.820454139713547e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.0962283896515146e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.108000525273383e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.695147879374417e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077806028770283e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.1360448598861694 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360433101654053 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360433101654053 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.136043906211853 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.136043667793274 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.1360434293746948 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.164554476737976 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645547151565552 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.1360437870025635 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.1360453367233276 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.136045217514038 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360448598861694 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360442638397217 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360435485839844 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360442638397217 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.917616701684892e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360445022583008 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.1645543575286865 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360434293746948 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.1360450983047485 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_wide.csv new file mode 100644 index 0000000..0746b8a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_5/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.3491593026392366e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360453367233276,-6.0142643633298576e-05,1.1645541191101074,1.3026001610683124e-08,1.1360440254211426,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360433101654053,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.164554238319397,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.6998284852197685e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360431909561157,-6.070997551432811e-05,1.1645539999008179,-3.429893808970519e-07,1.1360430717468262,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360453367233276,-6.100009704823606e-05,1.1645541191101074,-4.513318572207936e-07,1.136043667793274,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360454559326172,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.0459883621224435e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360433101654053,-6.0808335547335446e-05,1.1645539999008179,-1.7600905266590416e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360445022583008,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043906211853,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360431909561157,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.1360450983047485,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.1360450983047485,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094121272326447e-05,1.1645541191101074,3.0452983423856494e-07,1.1360431909561157,6.084866981836967e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.1360450983047485,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645545959472656,1.943962644190833e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.3958349465734727e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062805186957121e-05,1.1645541191101074,7.785231304069384e-08,1.1360430717468262,6.114577263360843e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512526802751381e-08,1.1360430717468262,6.106685032136738e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079913509893231e-05,1.1645547151565552,-4.2159662427820876e-08,1.1360431909561157,6.144255894469097e-05 +steady,target,53,21.2,1.1360454559326172,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360431909561157,6.118379678810015e-05 +steady,target,54,21.6,1.1360453367233276,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360431909561157,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360441446304321,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360433101654053,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360431909561157,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.164554476737976,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.1360453367233276,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.1360447406768799,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360434293746948,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.6995057440854e-08,1.1360431909561157,6.035815385985188e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360431909561157,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.842164879117263e-08,1.1360431909561157,6.063623004592955e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.1360446214675903,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120755278971046e-05,1.1645547151565552,-3.820454139713547e-07,1.1360433101654053,6.0962283896515146e-05 +steady,target,98,39.2,1.1360454559326172,-6.108000525273383e-05,1.1645547151565552,-4.695147879374417e-07,1.1360433101654053,6.077806028770283e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.164554476737976,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.1360448598861694,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360433101654053,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360433101654053,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.136043906211853,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.136043667793274,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.1360434293746948,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.164554476737976,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645547151565552,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.1360437870025635,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.1360453367233276,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.136045217514038,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360448598861694,6.093038246035576e-05 +steady,target,137,54.8,1.1360442638397217,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360435485839844,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360442638397217,-6.106043292675167e-05,1.1645547151565552,-6.917616701684892e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360445022583008,-6.112091068644077e-05,1.1645543575286865,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360434293746948,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.1360450983047485,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_dtw_convergence.csv new file mode 100644 index 0000000..d082a5b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +steady,sr,60,24.0,30,0.9786652506709976,6,0.9775575200716654,0.9851369761156092,0.9472764174143473,0.9999036257142383,0.9771585424741109,0.9849584222360136 +steady,sr,90,36.0,30,0.9786658200579444,5,0.9774420062700907,0.985104241393977,0.947314981619517,0.9999458173599127,0.9771830598513286,0.9850048138528412 +steady,sr,120,48.0,30,0.9786697282508613,5,0.9773897449175517,0.9850849058024324,0.9473219275474548,0.999968719831062,0.9772254387537639,0.9850276326529032 +steady,sr,150,60.0,30,0.97867237719302,-25,0.9773663600285848,0.985075746894169,0.9473129192988078,0.9999791008301108,0.9772624731063843,0.9850376630000635 +steady,sr,180,72.0,30,0.9786712346599925,-28,0.9773325641949971,0.985067895193303,0.9473262389500936,0.9999875193958992,0.9772680123647054,0.9850451778609568 +steady,sr,200,80.0,30,0.9786742288121729,-25,0.9773375789324442,0.9850655153843643,0.9473141113917033,0.9999900654449714,0.9772901574770609,0.9850479442424936 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_long.csv new file mode 100644 index 0000000..b5a5385 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,sr,0,0.0,velocity,upper_ux,1.1137615442276 +steady,sr,0,0.0,velocity,upper_uy,-0.014865590259432793 +steady,sr,0,0.0,velocity,center_ux,1.2173374891281128 +steady,sr,0,0.0,velocity,center_uy,0.00017411468434147537 +steady,sr,0,0.0,velocity,lower_ux,1.1130485534667969 +steady,sr,0,0.0,velocity,lower_uy,0.015191499143838882 +steady,sr,1,0.4,velocity,upper_ux,1.1135481595993042 +steady,sr,1,0.4,velocity,upper_uy,-0.014867562800645828 +steady,sr,1,0.4,velocity,center_ux,1.2170906066894531 +steady,sr,1,0.4,velocity,center_uy,0.0001810451940400526 +steady,sr,1,0.4,velocity,lower_ux,1.112844705581665 +steady,sr,1,0.4,velocity,lower_uy,0.01520621869713068 +steady,sr,2,0.8,velocity,upper_ux,1.1137229204177856 +steady,sr,2,0.8,velocity,upper_uy,-0.014874965883791447 +steady,sr,2,0.8,velocity,center_ux,1.217210292816162 +steady,sr,2,0.8,velocity,center_uy,0.00017238642612937838 +steady,sr,2,0.8,velocity,lower_ux,1.113029956817627 +steady,sr,2,0.8,velocity,lower_uy,0.015196766704320908 +steady,sr,3,1.2,velocity,upper_ux,1.114343523979187 +steady,sr,3,1.2,velocity,upper_uy,-0.01487010158598423 +steady,sr,3,1.2,velocity,center_ux,1.2178212404251099 +steady,sr,3,1.2,velocity,center_uy,0.00017621050938032568 +steady,sr,3,1.2,velocity,lower_ux,1.1136585474014282 +steady,sr,3,1.2,velocity,lower_uy,0.015201716683804989 +steady,sr,4,1.6,velocity,upper_ux,1.1137641668319702 +steady,sr,4,1.6,velocity,upper_uy,-0.014873411506414413 +steady,sr,4,1.6,velocity,center_ux,1.2172925472259521 +steady,sr,4,1.6,velocity,center_uy,0.0001702609151834622 +steady,sr,4,1.6,velocity,lower_ux,1.1130863428115845 +steady,sr,4,1.6,velocity,lower_uy,0.015193655155599117 +steady,sr,5,2.0,velocity,upper_ux,1.1136306524276733 +steady,sr,5,2.0,velocity,upper_uy,-0.014870012179017067 +steady,sr,5,2.0,velocity,center_ux,1.2172216176986694 +steady,sr,5,2.0,velocity,center_uy,0.00017284184286836535 +steady,sr,5,2.0,velocity,lower_ux,1.1129618883132935 +steady,sr,5,2.0,velocity,lower_uy,0.015193003229796886 +steady,sr,6,2.4,velocity,upper_ux,1.1136780977249146 +steady,sr,6,2.4,velocity,upper_uy,-0.014876275323331356 +steady,sr,6,2.4,velocity,center_ux,1.2172706127166748 +steady,sr,6,2.4,velocity,center_uy,0.00017151031352113932 +steady,sr,6,2.4,velocity,lower_ux,1.1130177974700928 +steady,sr,6,2.4,velocity,lower_uy,0.015194042585790157 +steady,sr,7,2.8,velocity,upper_ux,1.1133475303649902 +steady,sr,7,2.8,velocity,upper_uy,-0.01487679686397314 +steady,sr,7,2.8,velocity,center_ux,1.2168843746185303 +steady,sr,7,2.8,velocity,center_uy,0.00016894126019906253 +steady,sr,7,2.8,velocity,lower_ux,1.1126964092254639 +steady,sr,7,2.8,velocity,lower_uy,0.015189199708402157 +steady,sr,8,3.2,velocity,upper_ux,1.114145040512085 +steady,sr,8,3.2,velocity,upper_uy,-0.014871006831526756 +steady,sr,8,3.2,velocity,center_ux,1.2176443338394165 +steady,sr,8,3.2,velocity,center_uy,0.0001684531889623031 +steady,sr,8,3.2,velocity,lower_ux,1.1135034561157227 +steady,sr,8,3.2,velocity,lower_uy,0.015184463001787663 +steady,sr,9,3.6,velocity,upper_ux,1.1141878366470337 +steady,sr,9,3.6,velocity,upper_uy,-0.014870885759592056 +steady,sr,9,3.6,velocity,center_ux,1.217704176902771 +steady,sr,9,3.6,velocity,center_uy,0.00015946771600283682 +steady,sr,9,3.6,velocity,lower_ux,1.1135528087615967 +steady,sr,9,3.6,velocity,lower_uy,0.015172227285802364 +steady,sr,10,4.0,velocity,upper_ux,1.113451361656189 +steady,sr,10,4.0,velocity,upper_uy,-0.014864194206893444 +steady,sr,10,4.0,velocity,center_ux,1.2170348167419434 +steady,sr,10,4.0,velocity,center_uy,0.00016200440586544573 +steady,sr,10,4.0,velocity,lower_ux,1.1128264665603638 +steady,sr,10,4.0,velocity,lower_uy,0.015172098763287067 +steady,sr,11,4.4,velocity,upper_ux,1.1137144565582275 +steady,sr,11,4.4,velocity,upper_uy,-0.014876071363687515 +steady,sr,11,4.4,velocity,center_ux,1.2173367738723755 +steady,sr,11,4.4,velocity,center_uy,0.00015587234520353377 +steady,sr,11,4.4,velocity,lower_ux,1.1130961179733276 +steady,sr,11,4.4,velocity,lower_uy,0.015170097351074219 +steady,sr,12,4.8,velocity,upper_ux,1.1135131120681763 +steady,sr,12,4.8,velocity,upper_uy,-0.014879681169986725 +steady,sr,12,4.8,velocity,center_ux,1.2171093225479126 +steady,sr,12,4.8,velocity,center_uy,0.00015965040074661374 +steady,sr,12,4.8,velocity,lower_ux,1.112900733947754 +steady,sr,12,4.8,velocity,lower_uy,0.015180893242359161 +steady,sr,13,5.2,velocity,upper_ux,1.113571286201477 +steady,sr,13,5.2,velocity,upper_uy,-0.014886472374200821 +steady,sr,13,5.2,velocity,center_ux,1.2171140909194946 +steady,sr,13,5.2,velocity,center_uy,0.00015311413153540343 +steady,sr,13,5.2,velocity,lower_ux,1.1129673719406128 +steady,sr,13,5.2,velocity,lower_uy,0.015175844542682171 +steady,sr,14,5.6,velocity,upper_ux,1.1142460107803345 +steady,sr,14,5.6,velocity,upper_uy,-0.014882765710353851 +steady,sr,14,5.6,velocity,center_ux,1.2177692651748657 +steady,sr,14,5.6,velocity,center_uy,0.000156433874508366 +steady,sr,14,5.6,velocity,lower_ux,1.1136488914489746 +steady,sr,14,5.6,velocity,lower_uy,0.015175951644778252 +steady,sr,15,6.0,velocity,upper_ux,1.1137813329696655 +steady,sr,15,6.0,velocity,upper_uy,-0.01488465815782547 +steady,sr,15,6.0,velocity,center_ux,1.2173503637313843 +steady,sr,15,6.0,velocity,center_uy,0.00015490649093408138 +steady,sr,15,6.0,velocity,lower_ux,1.113196849822998 +steady,sr,15,6.0,velocity,lower_uy,0.015170062892138958 +steady,sr,16,6.4,velocity,upper_ux,1.113563060760498 +steady,sr,16,6.4,velocity,upper_uy,-0.014882308430969715 +steady,sr,16,6.4,velocity,center_ux,1.2171907424926758 +steady,sr,16,6.4,velocity,center_uy,0.0001544046390336007 +steady,sr,16,6.4,velocity,lower_ux,1.112983226776123 +steady,sr,16,6.4,velocity,lower_uy,0.015164910815656185 +steady,sr,17,6.8,velocity,upper_ux,1.1136353015899658 +steady,sr,17,6.8,velocity,upper_uy,-0.014886371791362762 +steady,sr,17,6.8,velocity,center_ux,1.2172715663909912 +steady,sr,17,6.8,velocity,center_uy,0.0001508693676441908 +steady,sr,17,6.8,velocity,lower_ux,1.1130598783493042 +steady,sr,17,6.8,velocity,lower_uy,0.01516597718000412 +steady,sr,18,7.2,velocity,upper_ux,1.1132948398590088 +steady,sr,18,7.2,velocity,upper_uy,-0.014890952967107296 +steady,sr,18,7.2,velocity,center_ux,1.2168855667114258 +steady,sr,18,7.2,velocity,center_uy,0.00014446386194322258 +steady,sr,18,7.2,velocity,lower_ux,1.112727165222168 +steady,sr,18,7.2,velocity,lower_uy,0.015162204392254353 +steady,sr,19,7.6,velocity,upper_ux,1.113992691040039 +steady,sr,19,7.6,velocity,upper_uy,-0.014884843491017818 +steady,sr,19,7.6,velocity,center_ux,1.2175403833389282 +steady,sr,19,7.6,velocity,center_uy,0.00014379042841028422 +steady,sr,19,7.6,velocity,lower_ux,1.1134312152862549 +steady,sr,19,7.6,velocity,lower_uy,0.015157436951994896 +steady,sr,20,8.0,velocity,upper_ux,1.1141347885131836 +steady,sr,20,8.0,velocity,upper_uy,-0.014886138029396534 +steady,sr,20,8.0,velocity,center_ux,1.2176929712295532 +steady,sr,20,8.0,velocity,center_uy,0.00013771795784123242 +steady,sr,20,8.0,velocity,lower_ux,1.1135821342468262 +steady,sr,20,8.0,velocity,lower_uy,0.015148243866860867 +steady,sr,21,8.4,velocity,upper_ux,1.1134419441223145 +steady,sr,21,8.4,velocity,upper_uy,-0.014880462549626827 +steady,sr,21,8.4,velocity,center_ux,1.2170568704605103 +steady,sr,21,8.4,velocity,center_uy,0.00014072727935854346 +steady,sr,21,8.4,velocity,lower_ux,1.1128966808319092 +steady,sr,21,8.4,velocity,lower_uy,0.015147071331739426 +steady,sr,22,8.8,velocity,upper_ux,1.1136677265167236 +steady,sr,22,8.8,velocity,upper_uy,-0.014890855178236961 +steady,sr,22,8.8,velocity,center_ux,1.2173269987106323 +steady,sr,22,8.8,velocity,center_uy,0.0001365119096590206 +steady,sr,22,8.8,velocity,lower_ux,1.1131279468536377 +steady,sr,22,8.8,velocity,lower_uy,0.01514609344303608 +steady,sr,23,9.2,velocity,upper_ux,1.113486886024475 +steady,sr,23,9.2,velocity,upper_uy,-0.014895699918270111 +steady,sr,23,9.2,velocity,center_ux,1.2171282768249512 +steady,sr,23,9.2,velocity,center_uy,0.0001394977152813226 +steady,sr,23,9.2,velocity,lower_ux,1.1129522323608398 +steady,sr,23,9.2,velocity,lower_uy,0.015155465342104435 +steady,sr,24,9.6,velocity,upper_ux,1.1134384870529175 +steady,sr,24,9.6,velocity,upper_uy,-0.014900658279657364 +steady,sr,24,9.6,velocity,center_ux,1.2170277833938599 +steady,sr,24,9.6,velocity,center_uy,0.00013516214676201344 +steady,sr,24,9.6,velocity,lower_ux,1.112911581993103 +steady,sr,24,9.6,velocity,lower_uy,0.015151248313486576 +steady,sr,25,10.0,velocity,upper_ux,1.114145278930664 +steady,sr,25,10.0,velocity,upper_uy,-0.014900241047143936 +steady,sr,25,10.0,velocity,center_ux,1.2177109718322754 +steady,sr,25,10.0,velocity,center_uy,0.00013569489237852395 +steady,sr,25,10.0,velocity,lower_ux,1.1136252880096436 +steady,sr,25,10.0,velocity,lower_uy,0.01515080314129591 +steady,sr,26,10.4,velocity,upper_ux,1.1137900352478027 +steady,sr,26,10.4,velocity,upper_uy,-0.01489940844476223 +steady,sr,26,10.4,velocity,center_ux,1.2173889875411987 +steady,sr,26,10.4,velocity,center_uy,0.00013217612286098301 +steady,sr,26,10.4,velocity,lower_ux,1.1132774353027344 +steady,sr,26,10.4,velocity,lower_uy,0.01514431368559599 +steady,sr,27,10.8,velocity,upper_ux,1.1135013103485107 +steady,sr,27,10.8,velocity,upper_uy,-0.014897221699357033 +steady,sr,27,10.8,velocity,center_ux,1.217161774635315 +steady,sr,27,10.8,velocity,center_uy,0.0001292664819629863 +steady,sr,27,10.8,velocity,lower_ux,1.1129975318908691 +steady,sr,27,10.8,velocity,lower_uy,0.015138250775635242 +steady,sr,28,11.2,velocity,upper_ux,1.1135988235473633 +steady,sr,28,11.2,velocity,upper_uy,-0.014899671077728271 +steady,sr,28,11.2,velocity,center_ux,1.2172763347625732 +steady,sr,28,11.2,velocity,center_uy,0.00012891342339571565 +steady,sr,28,11.2,velocity,lower_ux,1.1131010055541992 +steady,sr,28,11.2,velocity,lower_uy,0.015140381641685963 +steady,sr,29,11.6,velocity,upper_ux,1.1132540702819824 +steady,sr,29,11.6,velocity,upper_uy,-0.014905900694429874 +steady,sr,29,11.6,velocity,center_ux,1.2168974876403809 +steady,sr,29,11.6,velocity,center_uy,0.00012399247498251498 +steady,sr,29,11.6,velocity,lower_ux,1.1127638816833496 +steady,sr,29,11.6,velocity,lower_uy,0.01513606682419777 +steady,sr,30,12.0,velocity,upper_ux,1.113845944404602 +steady,sr,30,12.0,velocity,upper_uy,-0.014899618923664093 +steady,sr,30,12.0,velocity,center_ux,1.2174410820007324 +steady,sr,30,12.0,velocity,center_uy,0.0001275648537557572 +steady,sr,30,12.0,velocity,lower_ux,1.1133629083633423 +steady,sr,30,12.0,velocity,lower_uy,0.015134718269109726 +steady,sr,31,12.4,velocity,upper_ux,1.1140726804733276 +steady,sr,31,12.4,velocity,upper_uy,-0.014903171919286251 +steady,sr,31,12.4,velocity,center_ux,1.2176681756973267 +steady,sr,31,12.4,velocity,center_uy,0.00012055895058438182 +steady,sr,31,12.4,velocity,lower_ux,1.113600492477417 +steady,sr,31,12.4,velocity,lower_uy,0.015123715624213219 +steady,sr,32,12.8,velocity,upper_ux,1.1134353876113892 +steady,sr,32,12.8,velocity,upper_uy,-0.0148975420743227 +steady,sr,32,12.8,velocity,center_ux,1.217081904411316 +steady,sr,32,12.8,velocity,center_uy,0.00012384283763822168 +steady,sr,32,12.8,velocity,lower_ux,1.1129664182662964 +steady,sr,32,12.8,velocity,lower_uy,0.015124913305044174 +steady,sr,33,13.2,velocity,upper_ux,1.1136176586151123 +steady,sr,33,13.2,velocity,upper_uy,-0.014908785931766033 +steady,sr,33,13.2,velocity,center_ux,1.2173124551773071 +steady,sr,33,13.2,velocity,center_uy,0.0001133017212850973 +steady,sr,33,13.2,velocity,lower_ux,1.1131558418273926 +steady,sr,33,13.2,velocity,lower_uy,0.015119826421141624 +steady,sr,34,13.6,velocity,upper_ux,1.1134610176086426 +steady,sr,34,13.6,velocity,upper_uy,-0.014912286773324013 +steady,sr,34,13.6,velocity,center_ux,1.2171443700790405 +steady,sr,34,13.6,velocity,center_uy,0.00011386338883312419 +steady,sr,34,13.6,velocity,lower_ux,1.1130019426345825 +steady,sr,34,13.6,velocity,lower_uy,0.01512911356985569 +steady,sr,35,14.0,velocity,upper_ux,1.113330602645874 +steady,sr,35,14.0,velocity,upper_uy,-0.014919345267117023 +steady,sr,35,14.0,velocity,center_ux,1.2169653177261353 +steady,sr,35,14.0,velocity,center_uy,0.00010812471009558067 +steady,sr,35,14.0,velocity,lower_ux,1.1128767728805542 +steady,sr,35,14.0,velocity,lower_uy,0.015124965459108353 +steady,sr,36,14.4,velocity,upper_ux,1.1140477657318115 +steady,sr,36,14.4,velocity,upper_uy,-0.014917292632162571 +steady,sr,36,14.4,velocity,center_ux,1.2176527976989746 +steady,sr,36,14.4,velocity,center_uy,0.00011021588579751551 +steady,sr,36,14.4,velocity,lower_ux,1.113600730895996 +steady,sr,36,14.4,velocity,lower_uy,0.01512446254491806 +steady,sr,37,14.8,velocity,upper_ux,1.1137934923171997 +steady,sr,37,14.8,velocity,upper_uy,-0.014916371554136276 +steady,sr,37,14.8,velocity,center_ux,1.2174245119094849 +steady,sr,37,14.8,velocity,center_uy,0.00010893798753386363 +steady,sr,37,14.8,velocity,lower_ux,1.1133500337600708 +steady,sr,37,14.8,velocity,lower_uy,0.015118756331503391 +steady,sr,38,15.2,velocity,upper_ux,1.1134483814239502 +steady,sr,38,15.2,velocity,upper_uy,-0.014913498423993587 +steady,sr,38,15.2,velocity,center_ux,1.217136025428772 +steady,sr,38,15.2,velocity,center_uy,0.00010710657807067037 +steady,sr,38,15.2,velocity,lower_ux,1.1130114793777466 +steady,sr,38,15.2,velocity,lower_uy,0.01511151809245348 +steady,sr,39,15.6,velocity,upper_ux,1.1135687828063965 +steady,sr,39,15.6,velocity,upper_uy,-0.014914672821760178 +steady,sr,39,15.6,velocity,center_ux,1.217280387878418 +steady,sr,39,15.6,velocity,center_uy,0.00010805876809172332 +steady,sr,39,15.6,velocity,lower_ux,1.113139271736145 +steady,sr,39,15.6,velocity,lower_uy,0.015114071778953075 +steady,sr,40,16.0,velocity,upper_ux,1.1132358312606812 +steady,sr,40,16.0,velocity,upper_uy,-0.014922006987035275 +steady,sr,40,16.0,velocity,center_ux,1.2169163227081299 +steady,sr,40,16.0,velocity,center_uy,0.00010241371637675911 +steady,sr,40,16.0,velocity,lower_ux,1.1128121614456177 +steady,sr,40,16.0,velocity,lower_uy,0.015110286884009838 +steady,sr,41,16.4,velocity,upper_ux,1.1137109994888306 +steady,sr,41,16.4,velocity,upper_uy,-0.014916224405169487 +steady,sr,41,16.4,velocity,center_ux,1.2173449993133545 +steady,sr,41,16.4,velocity,center_uy,0.00010453166760271415 +steady,sr,41,16.4,velocity,lower_ux,1.1132928133010864 +steady,sr,41,16.4,velocity,lower_uy,0.015109571628272533 +steady,sr,42,16.8,velocity,upper_ux,1.114020586013794 +steady,sr,42,16.8,velocity,upper_uy,-0.014919927343726158 +steady,sr,42,16.8,velocity,center_ux,1.2176474332809448 +steady,sr,42,16.8,velocity,center_uy,9.779878746485338e-05 +steady,sr,42,16.8,velocity,lower_ux,1.1136081218719482 +steady,sr,42,16.8,velocity,lower_uy,0.015101630240678787 +steady,sr,43,17.2,velocity,upper_ux,1.113444209098816 +steady,sr,43,17.2,velocity,upper_uy,-0.014915474690496922 +steady,sr,43,17.2,velocity,center_ux,1.217116355895996 +steady,sr,43,17.2,velocity,center_uy,9.966035577235743e-05 +steady,sr,43,17.2,velocity,lower_ux,1.1130396127700806 +steady,sr,43,17.2,velocity,lower_uy,0.015100831165909767 +steady,sr,44,17.6,velocity,upper_ux,1.1135754585266113 +steady,sr,44,17.6,velocity,upper_uy,-0.0149226738139987 +steady,sr,44,17.6,velocity,center_ux,1.217296838760376 +steady,sr,44,17.6,velocity,center_uy,9.567459346726537e-05 +steady,sr,44,17.6,velocity,lower_ux,1.1131775379180908 +steady,sr,44,17.6,velocity,lower_uy,0.015098256058990955 +steady,sr,45,18.0,velocity,upper_ux,1.113441824913025 +steady,sr,45,18.0,velocity,upper_uy,-0.014928306452929974 +steady,sr,45,18.0,velocity,center_ux,1.217161774635315 +steady,sr,45,18.0,velocity,center_uy,9.643429075367749e-05 +steady,sr,45,18.0,velocity,lower_ux,1.113049030303955 +steady,sr,45,18.0,velocity,lower_uy,0.015104650519788265 +steady,sr,46,18.4,velocity,upper_ux,1.113244652748108 +steady,sr,46,18.4,velocity,upper_uy,-0.014932367950677872 +steady,sr,46,18.4,velocity,center_ux,1.2169203758239746 +steady,sr,46,18.4,velocity,center_uy,9.246854460798204e-05 +steady,sr,46,18.4,velocity,lower_ux,1.1128555536270142 +steady,sr,46,18.4,velocity,lower_uy,0.01510319858789444 +steady,sr,47,18.8,velocity,upper_ux,1.1139527559280396 +steady,sr,47,18.8,velocity,upper_uy,-0.01493300311267376 +steady,sr,47,18.8,velocity,center_ux,1.2175966501235962 +steady,sr,47,18.8,velocity,center_uy,8.9282140834257e-05 +steady,sr,47,18.8,velocity,lower_ux,1.113571047782898 +steady,sr,47,18.8,velocity,lower_uy,0.015099983662366867 +steady,sr,48,19.2,velocity,upper_ux,1.1137933731079102 +steady,sr,48,19.2,velocity,upper_uy,-0.014928548596799374 +steady,sr,48,19.2,velocity,center_ux,1.217454433441162 +steady,sr,48,19.2,velocity,center_uy,8.913149940781295e-05 +steady,sr,48,19.2,velocity,lower_ux,1.113416314125061 +steady,sr,48,19.2,velocity,lower_uy,0.015096109360456467 +steady,sr,49,19.6,velocity,upper_ux,1.113410472869873 +steady,sr,49,19.6,velocity,upper_uy,-0.014927767217159271 +steady,sr,49,19.6,velocity,center_ux,1.217120885848999 +steady,sr,49,19.6,velocity,center_uy,8.575544779887423e-05 +steady,sr,49,19.6,velocity,lower_ux,1.1130355596542358 +steady,sr,49,19.6,velocity,lower_uy,0.015087262727320194 +steady,sr,50,20.0,velocity,upper_ux,1.1135462522506714 +steady,sr,50,20.0,velocity,upper_uy,-0.01492737140506506 +steady,sr,50,20.0,velocity,center_ux,1.2172882556915283 +steady,sr,50,20.0,velocity,center_uy,8.829126454656944e-05 +steady,sr,50,20.0,velocity,lower_ux,1.113176941871643 +steady,sr,50,20.0,velocity,lower_uy,0.015089931897819042 +steady,sr,51,20.4,velocity,upper_ux,1.113226056098938 +steady,sr,51,20.4,velocity,upper_uy,-0.014935111626982689 +steady,sr,51,20.4,velocity,center_ux,1.2169439792633057 +steady,sr,51,20.4,velocity,center_uy,8.271550905192271e-05 +steady,sr,51,20.4,velocity,lower_ux,1.1128621101379395 +steady,sr,51,20.4,velocity,lower_uy,0.015087130479514599 +steady,sr,52,20.8,velocity,upper_ux,1.1135865449905396 +steady,sr,52,20.8,velocity,upper_uy,-0.014930668286979198 +steady,sr,52,20.8,velocity,center_ux,1.2172603607177734 +steady,sr,52,20.8,velocity,center_uy,8.505120786139742e-05 +steady,sr,52,20.8,velocity,lower_ux,1.1132287979125977 +steady,sr,52,20.8,velocity,lower_uy,0.01508758682757616 +steady,sr,53,21.2,velocity,upper_ux,1.113964557647705 +steady,sr,53,21.2,velocity,upper_uy,-0.014933462254703045 +steady,sr,53,21.2,velocity,center_ux,1.2176246643066406 +steady,sr,53,21.2,velocity,center_uy,8.019494998734444e-05 +steady,sr,53,21.2,velocity,lower_ux,1.1136099100112915 +steady,sr,53,21.2,velocity,lower_uy,0.015080885961651802 +steady,sr,54,21.6,velocity,upper_ux,1.1134605407714844 +steady,sr,54,21.6,velocity,upper_uy,-0.01493039634078741 +steady,sr,54,21.6,velocity,center_ux,1.2171580791473389 +steady,sr,54,21.6,velocity,center_uy,8.152487862389535e-05 +steady,sr,54,21.6,velocity,lower_ux,1.113112449645996 +steady,sr,54,21.6,velocity,lower_uy,0.015080282464623451 +steady,sr,55,22.0,velocity,upper_ux,1.113539695739746 +steady,sr,55,22.0,velocity,upper_uy,-0.014935016632080078 +steady,sr,55,22.0,velocity,center_ux,1.2172856330871582 +steady,sr,55,22.0,velocity,center_uy,7.780150190228596e-05 +steady,sr,55,22.0,velocity,lower_ux,1.1131978034973145 +steady,sr,55,22.0,velocity,lower_uy,0.015078135766088963 +steady,sr,56,22.4,velocity,upper_ux,1.1134299039840698 +steady,sr,56,22.4,velocity,upper_uy,-0.014941513538360596 +steady,sr,56,22.4,velocity,center_ux,1.2171845436096191 +steady,sr,56,22.4,velocity,center_uy,7.58896567276679e-05 +steady,sr,56,22.4,velocity,lower_ux,1.1130940914154053 +steady,sr,56,22.4,velocity,lower_uy,0.01508362963795662 +steady,sr,57,22.8,velocity,upper_ux,1.1131811141967773 +steady,sr,57,22.8,velocity,upper_uy,-0.014944848604500294 +steady,sr,57,22.8,velocity,center_ux,1.2168948650360107 +steady,sr,57,22.8,velocity,center_uy,7.37999434932135e-05 +steady,sr,57,22.8,velocity,lower_ux,1.112845540046692 +steady,sr,57,22.8,velocity,lower_uy,0.015084108337759972 +steady,sr,58,23.2,velocity,upper_ux,1.1138592958450317 +steady,sr,58,23.2,velocity,upper_uy,-0.014945125207304955 +steady,sr,58,23.2,velocity,center_ux,1.2175378799438477 +steady,sr,58,23.2,velocity,center_uy,7.312132220249623e-05 +steady,sr,58,23.2,velocity,lower_ux,1.1135318279266357 +steady,sr,58,23.2,velocity,lower_uy,0.015081027522683144 +steady,sr,59,23.6,velocity,upper_ux,1.1137908697128296 +steady,sr,59,23.6,velocity,upper_uy,-0.014940988272428513 +steady,sr,59,23.6,velocity,center_ux,1.2174760103225708 +steady,sr,59,23.6,velocity,center_uy,7.590538007207215e-05 +steady,sr,59,23.6,velocity,lower_ux,1.1134693622589111 +steady,sr,59,23.6,velocity,lower_uy,0.015078183263540268 +steady,sr,60,24.0,velocity,upper_ux,1.113383412361145 +steady,sr,60,24.0,velocity,upper_uy,-0.014939608983695507 +steady,sr,60,24.0,velocity,center_ux,1.2171169519424438 +steady,sr,60,24.0,velocity,center_uy,7.295385148609057e-05 +steady,sr,60,24.0,velocity,lower_ux,1.1130664348602295 +steady,sr,60,24.0,velocity,lower_uy,0.01506864558905363 +steady,sr,61,24.4,velocity,upper_ux,1.1135309934616089 +steady,sr,61,24.4,velocity,upper_uy,-0.01493916753679514 +steady,sr,61,24.4,velocity,center_ux,1.2172973155975342 +steady,sr,61,24.4,velocity,center_uy,7.438788452418521e-05 +steady,sr,61,24.4,velocity,lower_ux,1.1132179498672485 +steady,sr,61,24.4,velocity,lower_uy,0.015071654692292213 +steady,sr,62,24.8,velocity,upper_ux,1.1132264137268066 +steady,sr,62,24.8,velocity,upper_uy,-0.014947120100259781 +steady,sr,62,24.8,velocity,center_ux,1.216976523399353 +steady,sr,62,24.8,velocity,center_uy,6.701084203086793e-05 +steady,sr,62,24.8,velocity,lower_ux,1.1129190921783447 +steady,sr,62,24.8,velocity,lower_uy,0.015069280751049519 +steady,sr,63,25.2,velocity,upper_ux,1.113473892211914 +steady,sr,63,25.2,velocity,upper_uy,-0.014943856745958328 +steady,sr,63,25.2,velocity,center_ux,1.2171802520751953 +steady,sr,63,25.2,velocity,center_uy,6.718312215525657e-05 +steady,sr,63,25.2,velocity,lower_ux,1.1131703853607178 +steady,sr,63,25.2,velocity,lower_uy,0.015069948509335518 +steady,sr,64,25.6,velocity,upper_ux,1.1139060258865356 +steady,sr,64,25.6,velocity,upper_uy,-0.014947907999157906 +steady,sr,64,25.6,velocity,center_ux,1.2175955772399902 +steady,sr,64,25.6,velocity,center_uy,6.204321834957227e-05 +steady,sr,64,25.6,velocity,lower_ux,1.1136069297790527 +steady,sr,64,25.6,velocity,lower_uy,0.015064538456499577 +steady,sr,65,26.0,velocity,upper_ux,1.1134809255599976 +steady,sr,65,26.0,velocity,upper_uy,-0.014943690039217472 +steady,sr,65,26.0,velocity,center_ux,1.217195987701416 +steady,sr,65,26.0,velocity,center_uy,6.601710629183799e-05 +steady,sr,65,26.0,velocity,lower_ux,1.1131855249404907 +steady,sr,65,26.0,velocity,lower_uy,0.015065241605043411 +steady,sr,66,26.4,velocity,upper_ux,1.1135092973709106 +steady,sr,66,26.4,velocity,upper_uy,-0.014948239549994469 +steady,sr,66,26.4,velocity,center_ux,1.2172725200653076 +steady,sr,66,26.4,velocity,center_uy,6.341561675071716e-05 +steady,sr,66,26.4,velocity,lower_ux,1.1132168769836426 +steady,sr,66,26.4,velocity,lower_uy,0.015062055550515652 +steady,sr,67,26.8,velocity,upper_ux,1.1134260892868042 +steady,sr,67,26.8,velocity,upper_uy,-0.014953422360122204 +steady,sr,67,26.8,velocity,center_ux,1.2172033786773682 +steady,sr,67,26.8,velocity,center_uy,6.340476829791442e-05 +steady,sr,67,26.8,velocity,lower_ux,1.1131417751312256 +steady,sr,67,26.8,velocity,lower_uy,0.015067634172737598 +steady,sr,68,27.2,velocity,upper_ux,1.113136649131775 +steady,sr,68,27.2,velocity,upper_uy,-0.01495713833719492 +steady,sr,68,27.2,velocity,center_ux,1.2168800830841064 +steady,sr,68,27.2,velocity,center_uy,5.9873251302633435e-05 +steady,sr,68,27.2,velocity,lower_ux,1.1128535270690918 +steady,sr,68,27.2,velocity,lower_uy,0.015067603439092636 +steady,sr,69,27.6,velocity,upper_ux,1.1137675046920776 +steady,sr,69,27.6,velocity,upper_uy,-0.014957823790609837 +steady,sr,69,27.6,velocity,center_ux,1.217475175857544 +steady,sr,69,27.6,velocity,center_uy,5.7802433730103076e-05 +steady,sr,69,27.6,velocity,lower_ux,1.1134905815124512 +steady,sr,69,27.6,velocity,lower_uy,0.015064889565110207 +steady,sr,70,28.0,velocity,upper_ux,1.1137770414352417 +steady,sr,70,28.0,velocity,upper_uy,-0.014953997917473316 +steady,sr,70,28.0,velocity,center_ux,1.2174865007400513 +steady,sr,70,28.0,velocity,center_uy,5.780564606538974e-05 +steady,sr,70,28.0,velocity,lower_ux,1.1135047674179077 +steady,sr,70,28.0,velocity,lower_uy,0.015061241574585438 +steady,sr,71,28.4,velocity,upper_ux,1.1133677959442139 +steady,sr,71,28.4,velocity,upper_uy,-0.014951849356293678 +steady,sr,71,28.4,velocity,center_ux,1.2171189785003662 +steady,sr,71,28.4,velocity,center_uy,5.387565033743158e-05 +steady,sr,71,28.4,velocity,lower_ux,1.1130977869033813 +steady,sr,71,28.4,velocity,lower_uy,0.015052877366542816 +steady,sr,72,28.8,velocity,upper_ux,1.1135212182998657 +steady,sr,72,28.8,velocity,upper_uy,-0.01495130080729723 +steady,sr,72,28.8,velocity,center_ux,1.217308759689331 +steady,sr,72,28.8,velocity,center_uy,5.5331616749754176e-05 +steady,sr,72,28.8,velocity,lower_ux,1.113254189491272 +steady,sr,72,28.8,velocity,lower_uy,0.015055235475301743 +steady,sr,73,29.2,velocity,upper_ux,1.1132371425628662 +steady,sr,73,29.2,velocity,upper_uy,-0.01495860144495964 +steady,sr,73,29.2,velocity,center_ux,1.2170138359069824 +steady,sr,73,29.2,velocity,center_uy,5.179094659979455e-05 +steady,sr,73,29.2,velocity,lower_ux,1.1129740476608276 +steady,sr,73,29.2,velocity,lower_uy,0.015054266899824142 +steady,sr,74,29.6,velocity,upper_ux,1.1133778095245361 +steady,sr,74,29.6,velocity,upper_uy,-0.01495642215013504 +steady,sr,74,29.6,velocity,center_ux,1.2171164751052856 +steady,sr,74,29.6,velocity,center_uy,5.440228778752498e-05 +steady,sr,74,29.6,velocity,lower_ux,1.1131188869476318 +steady,sr,74,29.6,velocity,lower_uy,0.01505613885819912 +steady,sr,75,30.0,velocity,upper_ux,1.1138523817062378 +steady,sr,75,30.0,velocity,upper_uy,-0.014959254302084446 +steady,sr,75,30.0,velocity,center_ux,1.2175647020339966 +steady,sr,75,30.0,velocity,center_uy,5.060188414063305e-05 +steady,sr,75,30.0,velocity,lower_ux,1.1135934591293335 +steady,sr,75,30.0,velocity,lower_uy,0.015052773989737034 +steady,sr,76,30.4,velocity,upper_ux,1.1134990453720093 +steady,sr,76,30.4,velocity,upper_uy,-0.014957432635128498 +steady,sr,76,30.4,velocity,center_ux,1.2172359228134155 +steady,sr,76,30.4,velocity,center_uy,4.9784597649704665e-05 +steady,sr,76,30.4,velocity,lower_ux,1.113246202468872 +steady,sr,76,30.4,velocity,lower_uy,0.015052080154418945 +steady,sr,77,30.8,velocity,upper_ux,1.113478183746338 +steady,sr,77,30.8,velocity,upper_uy,-0.014957801438868046 +steady,sr,77,30.8,velocity,center_ux,1.2172609567642212 +steady,sr,77,30.8,velocity,center_uy,4.738695497508161e-05 +steady,sr,77,30.8,velocity,lower_ux,1.1132285594940186 +steady,sr,77,30.8,velocity,lower_uy,0.015049736946821213 +steady,sr,78,31.2,velocity,upper_ux,1.1134283542633057 +steady,sr,78,31.2,velocity,upper_uy,-0.014963376335799694 +steady,sr,78,31.2,velocity,center_ux,1.2172271013259888 +steady,sr,78,31.2,velocity,center_uy,4.7709614591440186e-05 +steady,sr,78,31.2,velocity,lower_ux,1.1131821870803833 +steady,sr,78,31.2,velocity,lower_uy,0.015053731389343739 +steady,sr,79,31.6,velocity,upper_ux,1.113113284111023 +steady,sr,79,31.6,velocity,upper_uy,-0.014965006150305271 +steady,sr,79,31.6,velocity,center_ux,1.2168844938278198 +steady,sr,79,31.6,velocity,center_uy,5.1119808631483465e-05 +steady,sr,79,31.6,velocity,lower_ux,1.1128699779510498 +steady,sr,79,31.6,velocity,lower_uy,0.015056606382131577 +steady,sr,80,32.0,velocity,upper_ux,1.1136842966079712 +steady,sr,80,32.0,velocity,upper_uy,-0.014966905117034912 +steady,sr,80,32.0,velocity,center_ux,1.217416524887085 +steady,sr,80,32.0,velocity,center_uy,4.927226837025955e-05 +steady,sr,80,32.0,velocity,lower_ux,1.1134454011917114 +steady,sr,80,32.0,velocity,lower_uy,0.015052628703415394 +steady,sr,81,32.4,velocity,upper_ux,1.113766074180603 +steady,sr,81,32.4,velocity,upper_uy,-0.014961781911551952 +steady,sr,81,32.4,velocity,center_ux,1.2174917459487915 +steady,sr,81,32.4,velocity,center_uy,5.0441543862689286e-05 +steady,sr,81,32.4,velocity,lower_ux,1.1135309934616089 +steady,sr,81,32.4,velocity,lower_uy,0.015051765367388725 +steady,sr,82,32.8,velocity,upper_ux,1.1133586168289185 +steady,sr,82,32.8,velocity,upper_uy,-0.014960318803787231 +steady,sr,82,32.8,velocity,center_ux,1.217125654220581 +steady,sr,82,32.8,velocity,center_uy,4.4999687816016376e-05 +steady,sr,82,32.8,velocity,lower_ux,1.1131287813186646 +steady,sr,82,32.8,velocity,lower_uy,0.015042107552289963 +steady,sr,83,33.2,velocity,upper_ux,1.113513469696045 +steady,sr,83,33.2,velocity,upper_uy,-0.014958377927541733 +steady,sr,83,33.2,velocity,center_ux,1.2173157930374146 +steady,sr,83,33.2,velocity,center_uy,4.6944351197453216e-05 +steady,sr,83,33.2,velocity,lower_ux,1.113285779953003 +steady,sr,83,33.2,velocity,lower_uy,0.01504519209265709 +steady,sr,84,33.6,velocity,upper_ux,1.1132514476776123 +steady,sr,84,33.6,velocity,upper_uy,-0.014965607784688473 +steady,sr,84,33.6,velocity,center_ux,1.2170528173446655 +steady,sr,84,33.6,velocity,center_uy,4.292386438464746e-05 +steady,sr,84,33.6,velocity,lower_ux,1.113030195236206 +steady,sr,84,33.6,velocity,lower_uy,0.01504475250840187 +steady,sr,85,34.0,velocity,upper_ux,1.1132982969284058 +steady,sr,85,34.0,velocity,upper_uy,-0.014964287169277668 +steady,sr,85,34.0,velocity,center_ux,1.2170631885528564 +steady,sr,85,34.0,velocity,center_uy,4.3768839532276616e-05 +steady,sr,85,34.0,velocity,lower_ux,1.1130768060684204 +steady,sr,85,34.0,velocity,lower_uy,0.01504672970622778 +steady,sr,86,34.4,velocity,upper_ux,1.1137993335723877 +steady,sr,86,34.4,velocity,upper_uy,-0.014966797083616257 +steady,sr,86,34.4,velocity,center_ux,1.2175370454788208 +steady,sr,86,34.4,velocity,center_uy,4.05820355808828e-05 +steady,sr,86,34.4,velocity,lower_ux,1.1135801076889038 +steady,sr,86,34.4,velocity,lower_uy,0.015045080333948135 +steady,sr,87,34.8,velocity,upper_ux,1.1135201454162598 +steady,sr,87,34.8,velocity,upper_uy,-0.01496474351733923 +steady,sr,87,34.8,velocity,center_ux,1.217272400856018 +steady,sr,87,34.8,velocity,center_uy,4.260802234057337e-05 +steady,sr,87,34.8,velocity,lower_ux,1.1133050918579102 +steady,sr,87,34.8,velocity,lower_uy,0.015044454485177994 +steady,sr,88,35.2,velocity,upper_ux,1.1134529113769531 +steady,sr,88,35.2,velocity,upper_uy,-0.014964180998504162 +steady,sr,88,35.2,velocity,center_ux,1.2172460556030273 +steady,sr,88,35.2,velocity,center_uy,4.454622103367001e-05 +steady,sr,88,35.2,velocity,lower_ux,1.1132405996322632 +steady,sr,88,35.2,velocity,lower_uy,0.01504314411431551 +steady,sr,89,35.6,velocity,upper_ux,1.1134331226348877 +steady,sr,89,35.6,velocity,upper_uy,-0.014969008974730968 +steady,sr,89,35.6,velocity,center_ux,1.2172476053237915 +steady,sr,89,35.6,velocity,center_uy,4.396792792249471e-05 +steady,sr,89,35.6,velocity,lower_ux,1.1132252216339111 +steady,sr,89,35.6,velocity,lower_uy,0.01504521630704403 +steady,sr,90,36.0,velocity,upper_ux,1.1131024360656738 +steady,sr,90,36.0,velocity,upper_uy,-0.014970568008720875 +steady,sr,90,36.0,velocity,center_ux,1.2168967723846436 +steady,sr,90,36.0,velocity,center_uy,4.452514986041933e-05 +steady,sr,90,36.0,velocity,lower_ux,1.1129013299942017 +steady,sr,90,36.0,velocity,lower_uy,0.015048175118863583 +steady,sr,91,36.4,velocity,upper_ux,1.113602638244629 +steady,sr,91,36.4,velocity,upper_uy,-0.014972405508160591 +steady,sr,91,36.4,velocity,center_ux,1.217359185218811 +steady,sr,91,36.4,velocity,center_uy,4.034811718156561e-05 +steady,sr,91,36.4,velocity,lower_ux,1.1134010553359985 +steady,sr,91,36.4,velocity,lower_uy,0.01504418347030878 +steady,sr,92,36.8,velocity,upper_ux,1.1137479543685913 +steady,sr,92,36.8,velocity,upper_uy,-0.014968004077672958 +steady,sr,92,36.8,velocity,center_ux,1.2174938917160034 +steady,sr,92,36.8,velocity,center_uy,4.0628114220453426e-05 +steady,sr,92,36.8,velocity,lower_ux,1.1135491132736206 +steady,sr,92,36.8,velocity,lower_uy,0.015042668208479881 +steady,sr,93,37.2,velocity,upper_ux,1.1133583784103394 +steady,sr,93,37.2,velocity,upper_uy,-0.014966834336519241 +steady,sr,93,37.2,velocity,center_ux,1.2171378135681152 +steady,sr,93,37.2,velocity,center_uy,3.811130955000408e-05 +steady,sr,93,37.2,velocity,lower_ux,1.1131659746170044 +steady,sr,93,37.2,velocity,lower_uy,0.015035484917461872 +steady,sr,94,37.6,velocity,upper_ux,1.1135050058364868 +steady,sr,94,37.6,velocity,upper_uy,-0.014965054579079151 +steady,sr,94,37.6,velocity,center_ux,1.217322826385498 +steady,sr,94,37.6,velocity,center_uy,4.089622598257847e-05 +steady,sr,94,37.6,velocity,lower_ux,1.1133151054382324 +steady,sr,94,37.6,velocity,lower_uy,0.0150368120521307 +steady,sr,95,38.0,velocity,upper_ux,1.1132711172103882 +steady,sr,95,38.0,velocity,upper_uy,-0.014971708878874779 +steady,sr,95,38.0,velocity,center_ux,1.217088222503662 +steady,sr,95,38.0,velocity,center_uy,3.7673624319722876e-05 +steady,sr,95,38.0,velocity,lower_ux,1.1130846738815308 +steady,sr,95,38.0,velocity,lower_uy,0.01503712497651577 +steady,sr,96,38.4,velocity,upper_ux,1.1132315397262573 +steady,sr,96,38.4,velocity,upper_uy,-0.014971386641263962 +steady,sr,96,38.4,velocity,center_ux,1.2170178890228271 +steady,sr,96,38.4,velocity,center_uy,3.72521644749213e-05 +steady,sr,96,38.4,velocity,lower_ux,1.1130481958389282 +steady,sr,96,38.4,velocity,lower_uy,0.015039198100566864 +steady,sr,97,38.8,velocity,upper_ux,1.1137443780899048 +steady,sr,97,38.8,velocity,upper_uy,-0.014974461868405342 +steady,sr,97,38.8,velocity,center_ux,1.2175008058547974 +steady,sr,97,38.8,velocity,center_uy,3.246908090659417e-05 +steady,sr,97,38.8,velocity,lower_ux,1.113563060760498 +steady,sr,97,38.8,velocity,lower_uy,0.015036839060485363 +steady,sr,98,39.2,velocity,upper_ux,1.113537311553955 +steady,sr,98,39.2,velocity,upper_uy,-0.014972668141126633 +steady,sr,98,39.2,velocity,center_ux,1.2173030376434326 +steady,sr,98,39.2,velocity,center_uy,3.246474443585612e-05 +steady,sr,98,39.2,velocity,lower_ux,1.1133586168289185 +steady,sr,98,39.2,velocity,lower_uy,0.015035719610750675 +steady,sr,99,39.6,velocity,upper_ux,1.1134285926818848 +steady,sr,99,39.6,velocity,upper_uy,-0.01497181411832571 +steady,sr,99,39.6,velocity,center_ux,1.2172327041625977 +steady,sr,99,39.6,velocity,center_uy,3.280150122009218e-05 +steady,sr,99,39.6,velocity,lower_ux,1.1132514476776123 +steady,sr,99,39.6,velocity,lower_uy,0.015033426694571972 +steady,sr,100,40.0,velocity,upper_ux,1.1134387254714966 +steady,sr,100,40.0,velocity,upper_uy,-0.01497559156268835 +steady,sr,100,40.0,velocity,center_ux,1.217268943786621 +steady,sr,100,40.0,velocity,center_uy,3.3777145290514454e-05 +steady,sr,100,40.0,velocity,lower_ux,1.113263726234436 +steady,sr,100,40.0,velocity,lower_uy,0.015035700052976608 +steady,sr,101,40.4,velocity,upper_ux,1.1131056547164917 +steady,sr,101,40.4,velocity,upper_uy,-0.014977555721998215 +steady,sr,101,40.4,velocity,center_ux,1.2169181108474731 +steady,sr,101,40.4,velocity,center_uy,3.439724969211966e-05 +steady,sr,101,40.4,velocity,lower_ux,1.1129339933395386 +steady,sr,101,40.4,velocity,lower_uy,0.01503798458725214 +steady,sr,102,40.8,velocity,upper_ux,1.1135246753692627 +steady,sr,102,40.8,velocity,upper_uy,-0.01497877761721611 +steady,sr,102,40.8,velocity,center_ux,1.217302680015564 +steady,sr,102,40.8,velocity,center_uy,2.9917089705122635e-05 +steady,sr,102,40.8,velocity,lower_ux,1.1133546829223633 +steady,sr,102,40.8,velocity,lower_uy,0.01503475196659565 +steady,sr,103,41.2,velocity,upper_ux,1.1137237548828125 +steady,sr,103,41.2,velocity,upper_uy,-0.014975364319980145 +steady,sr,103,41.2,velocity,center_ux,1.2174901962280273 +steady,sr,103,41.2,velocity,center_uy,2.94669735012576e-05 +steady,sr,103,41.2,velocity,lower_ux,1.1135601997375488 +steady,sr,103,41.2,velocity,lower_uy,0.015033703297376633 +steady,sr,104,41.6,velocity,upper_ux,1.1133661270141602 +steady,sr,104,41.6,velocity,upper_uy,-0.014973772689700127 +steady,sr,104,41.6,velocity,center_ux,1.2171540260314941 +steady,sr,104,41.6,velocity,center_uy,2.7004651201423258e-05 +steady,sr,104,41.6,velocity,lower_ux,1.1131993532180786 +steady,sr,104,41.6,velocity,lower_uy,0.015026804991066456 +steady,sr,105,42.0,velocity,upper_ux,1.1135003566741943 +steady,sr,105,42.0,velocity,upper_uy,-0.01497170701622963 +steady,sr,105,42.0,velocity,center_ux,1.2173259258270264 +steady,sr,105,42.0,velocity,center_uy,3.0461418646154925e-05 +steady,sr,105,42.0,velocity,lower_ux,1.1133372783660889 +steady,sr,105,42.0,velocity,lower_uy,0.015028711408376694 +steady,sr,106,42.4,velocity,upper_ux,1.1132932901382446 +steady,sr,106,42.4,velocity,upper_uy,-0.014977443031966686 +steady,sr,106,42.4,velocity,center_ux,1.217125654220581 +steady,sr,106,42.4,velocity,center_uy,2.935908742074389e-05 +steady,sr,106,42.4,velocity,lower_ux,1.1131328344345093 +steady,sr,106,42.4,velocity,lower_uy,0.01503028068691492 +steady,sr,107,42.8,velocity,upper_ux,1.1131811141967773 +steady,sr,107,42.8,velocity,upper_uy,-0.014977555721998215 +steady,sr,107,42.8,velocity,center_ux,1.2169872522354126 +steady,sr,107,42.8,velocity,center_uy,3.0237799364840612e-05 +steady,sr,107,42.8,velocity,lower_ux,1.1130238771438599 +steady,sr,107,42.8,velocity,lower_uy,0.01503210049122572 +steady,sr,108,43.2,velocity,upper_ux,1.1136910915374756 +steady,sr,108,43.2,velocity,upper_uy,-0.014979604631662369 +steady,sr,108,43.2,velocity,center_ux,1.2174679040908813 +steady,sr,108,43.2,velocity,center_uy,2.8471129553508945e-05 +steady,sr,108,43.2,velocity,lower_ux,1.1135374307632446 +steady,sr,108,43.2,velocity,lower_uy,0.015032128430902958 +steady,sr,109,43.6,velocity,upper_ux,1.1135516166687012 +steady,sr,109,43.6,velocity,upper_uy,-0.014978831633925438 +steady,sr,109,43.6,velocity,center_ux,1.2173293828964233 +steady,sr,109,43.6,velocity,center_uy,2.7653335564536974e-05 +steady,sr,109,43.6,velocity,lower_ux,1.1133989095687866 +steady,sr,109,43.6,velocity,lower_uy,0.0150303915143013 +steady,sr,110,44.0,velocity,upper_ux,1.1134114265441895 +steady,sr,110,44.0,velocity,upper_uy,-0.014976048842072487 +steady,sr,110,44.0,velocity,center_ux,1.217224359512329 +steady,sr,110,44.0,velocity,center_uy,2.851697354344651e-05 +steady,sr,110,44.0,velocity,lower_ux,1.1132590770721436 +steady,sr,110,44.0,velocity,lower_uy,0.015029064379632473 +steady,sr,111,44.4,velocity,upper_ux,1.1134480237960815 +steady,sr,111,44.4,velocity,upper_uy,-0.014980795793235302 +steady,sr,111,44.4,velocity,center_ux,1.217288613319397 +steady,sr,111,44.4,velocity,center_uy,2.6448200515005738e-05 +steady,sr,111,44.4,velocity,lower_ux,1.1132988929748535 +steady,sr,111,44.4,velocity,lower_uy,0.015029294416308403 +steady,sr,112,44.8,velocity,upper_ux,1.1131190061569214 +steady,sr,112,44.8,velocity,upper_uy,-0.014980871230363846 +steady,sr,112,44.8,velocity,center_ux,1.2169488668441772 +steady,sr,112,44.8,velocity,center_uy,2.9058035579510033e-05 +steady,sr,112,44.8,velocity,lower_ux,1.1129701137542725 +steady,sr,112,44.8,velocity,lower_uy,0.015034068375825882 +steady,sr,113,45.2,velocity,upper_ux,1.1134523153305054 +steady,sr,113,45.2,velocity,upper_uy,-0.014983152970671654 +steady,sr,113,45.2,velocity,center_ux,1.217248558998108 +steady,sr,113,45.2,velocity,center_uy,2.5991583243012428e-05 +steady,sr,113,45.2,velocity,lower_ux,1.1133064031600952 +steady,sr,113,45.2,velocity,lower_uy,0.015030443668365479 +steady,sr,114,45.6,velocity,upper_ux,1.1137001514434814 +steady,sr,114,45.6,velocity,upper_uy,-0.01497883815318346 +steady,sr,114,45.6,velocity,center_ux,1.2174782752990723 +steady,sr,114,45.6,velocity,center_uy,2.8220452804816887e-05 +steady,sr,114,45.6,velocity,lower_ux,1.1135590076446533 +steady,sr,114,45.6,velocity,lower_uy,0.015030000358819962 +steady,sr,115,46.0,velocity,upper_ux,1.1133755445480347 +steady,sr,115,46.0,velocity,upper_uy,-0.01497826911509037 +steady,sr,115,46.0,velocity,center_ux,1.2171722650527954 +steady,sr,115,46.0,velocity,center_uy,2.4381199182244018e-05 +steady,sr,115,46.0,velocity,lower_ux,1.1132347583770752 +steady,sr,115,46.0,velocity,lower_uy,0.015022912994027138 +steady,sr,116,46.4,velocity,upper_ux,1.1134936809539795 +steady,sr,116,46.4,velocity,upper_uy,-0.014976291917264462 +steady,sr,116,46.4,velocity,center_ux,1.21732759475708 +steady,sr,116,46.4,velocity,center_uy,2.5887335141305812e-05 +steady,sr,116,46.4,velocity,lower_ux,1.1133521795272827 +steady,sr,116,46.4,velocity,lower_uy,0.015023920685052872 +steady,sr,117,46.8,velocity,upper_ux,1.113315463066101 +steady,sr,117,46.8,velocity,upper_uy,-0.014981931075453758 +steady,sr,117,46.8,velocity,center_ux,1.2171621322631836 +steady,sr,117,46.8,velocity,center_uy,2.3602910005138256e-05 +steady,sr,117,46.8,velocity,lower_ux,1.1131798028945923 +steady,sr,117,46.8,velocity,lower_uy,0.015025271102786064 +steady,sr,118,47.2,velocity,upper_ux,1.1131442785263062 +steady,sr,118,47.2,velocity,upper_uy,-0.014983012340962887 +steady,sr,118,47.2,velocity,center_ux,1.216967225074768 +steady,sr,118,47.2,velocity,center_uy,2.3675816919421777e-05 +steady,sr,118,47.2,velocity,lower_ux,1.1130115985870361 +steady,sr,118,47.2,velocity,lower_uy,0.015027379617094994 +steady,sr,119,47.6,velocity,upper_ux,1.1136376857757568 +steady,sr,119,47.6,velocity,upper_uy,-0.014984773471951485 +steady,sr,119,47.6,velocity,center_ux,1.217430830001831 +steady,sr,119,47.6,velocity,center_uy,2.3183310986496508e-05 +steady,sr,119,47.6,velocity,lower_ux,1.11350679397583 +steady,sr,119,47.6,velocity,lower_uy,0.015028143301606178 +steady,sr,120,48.0,velocity,upper_ux,1.1135610342025757 +steady,sr,120,48.0,velocity,upper_uy,-0.014984527602791786 +steady,sr,120,48.0,velocity,center_ux,1.2173502445220947 +steady,sr,120,48.0,velocity,center_uy,2.1881422071601264e-05 +steady,sr,120,48.0,velocity,lower_ux,1.1134299039840698 +steady,sr,120,48.0,velocity,lower_uy,0.015026457607746124 +steady,sr,121,48.4,velocity,upper_ux,1.1133960485458374 +steady,sr,121,48.4,velocity,upper_uy,-0.014980820007622242 +steady,sr,121,48.4,velocity,center_ux,1.2172166109085083 +steady,sr,121,48.4,velocity,center_uy,2.238197521364782e-05 +steady,sr,121,48.4,velocity,lower_ux,1.1132657527923584 +steady,sr,121,48.4,velocity,lower_uy,0.015024528838694096 +steady,sr,122,48.8,velocity,upper_ux,1.1134568452835083 +steady,sr,122,48.8,velocity,upper_uy,-0.014984386041760445 +steady,sr,122,48.8,velocity,center_ux,1.2173070907592773 +steady,sr,122,48.8,velocity,center_uy,2.0943916752003133e-05 +steady,sr,122,48.8,velocity,lower_ux,1.1133294105529785 +steady,sr,122,48.8,velocity,lower_uy,0.015024522319436073 +steady,sr,123,49.2,velocity,upper_ux,1.113140344619751 +steady,sr,123,49.2,velocity,upper_uy,-0.014984292909502983 +steady,sr,123,49.2,velocity,center_ux,1.216984510421753 +steady,sr,123,49.2,velocity,center_uy,2.3579194021294825e-05 +steady,sr,123,49.2,velocity,lower_ux,1.1130132675170898 +steady,sr,123,49.2,velocity,lower_uy,0.015028382651507854 +steady,sr,124,49.6,velocity,upper_ux,1.113387942314148 +steady,sr,124,49.6,velocity,upper_uy,-0.0149857047945261 +steady,sr,124,49.6,velocity,center_ux,1.2172013521194458 +steady,sr,124,49.6,velocity,center_uy,2.13971270568436e-05 +steady,sr,124,49.6,velocity,lower_ux,1.1132631301879883 +steady,sr,124,49.6,velocity,lower_uy,0.015025262720882893 +steady,sr,125,50.0,velocity,upper_ux,1.1136741638183594 +steady,sr,125,50.0,velocity,upper_uy,-0.014982705004513264 +steady,sr,125,50.0,velocity,center_ux,1.2174668312072754 +steady,sr,125,50.0,velocity,center_uy,2.3103786588762887e-05 +steady,sr,125,50.0,velocity,lower_ux,1.1135503053665161 +steady,sr,125,50.0,velocity,lower_uy,0.015025404281914234 +steady,sr,126,50.4,velocity,upper_ux,1.113386869430542 +steady,sr,126,50.4,velocity,upper_uy,-0.01498141884803772 +steady,sr,126,50.4,velocity,center_ux,1.2171927690505981 +steady,sr,126,50.4,velocity,center_uy,2.0908926671836525e-05 +steady,sr,126,50.4,velocity,lower_ux,1.113265037536621 +steady,sr,126,50.4,velocity,lower_uy,0.01502075046300888 +steady,sr,127,50.8,velocity,upper_ux,1.1134854555130005 +steady,sr,127,50.8,velocity,upper_uy,-0.014979341998696327 +steady,sr,127,50.8,velocity,center_ux,1.2173261642456055 +steady,sr,127,50.8,velocity,center_uy,2.09659574466059e-05 +steady,sr,127,50.8,velocity,lower_ux,1.1133649349212646 +steady,sr,127,50.8,velocity,lower_uy,0.015020891092717648 +steady,sr,128,51.2,velocity,upper_ux,1.1133372783660889 +steady,sr,128,51.2,velocity,upper_uy,-0.014983201399445534 +steady,sr,128,51.2,velocity,center_ux,1.2171962261199951 +steady,sr,128,51.2,velocity,center_uy,1.94009280676255e-05 +steady,sr,128,51.2,velocity,lower_ux,1.1132183074951172 +steady,sr,128,51.2,velocity,lower_uy,0.015023884363472462 +steady,sr,129,51.6,velocity,upper_ux,1.1131231784820557 +steady,sr,129,51.6,velocity,upper_uy,-0.014984531328082085 +steady,sr,129,51.6,velocity,center_ux,1.2169601917266846 +steady,sr,129,51.6,velocity,center_uy,2.1563511836575344e-05 +steady,sr,129,51.6,velocity,lower_ux,1.1130053997039795 +steady,sr,129,51.6,velocity,lower_uy,0.015026697888970375 +steady,sr,130,52.0,velocity,upper_ux,1.1135903596878052 +steady,sr,130,52.0,velocity,upper_uy,-0.014985369518399239 +steady,sr,130,52.0,velocity,center_ux,1.2173964977264404 +steady,sr,130,52.0,velocity,center_uy,2.4638211471028626e-05 +steady,sr,130,52.0,velocity,lower_ux,1.1134753227233887 +steady,sr,130,52.0,velocity,lower_uy,0.015028314664959908 +steady,sr,131,52.4,velocity,upper_ux,1.1135669946670532 +steady,sr,131,52.4,velocity,upper_uy,-0.014984775334596634 +steady,sr,131,52.4,velocity,center_ux,1.2173645496368408 +steady,sr,131,52.4,velocity,center_uy,2.6509978852118365e-05 +steady,sr,131,52.4,velocity,lower_ux,1.1134542226791382 +steady,sr,131,52.4,velocity,lower_uy,0.015026885084807873 +steady,sr,132,52.8,velocity,upper_ux,1.1133824586868286 +steady,sr,132,52.8,velocity,upper_uy,-0.014981272630393505 +steady,sr,132,52.8,velocity,center_ux,1.217207431793213 +steady,sr,132,52.8,velocity,center_uy,2.7568528821575455e-05 +steady,sr,132,52.8,velocity,lower_ux,1.1132745742797852 +steady,sr,132,52.8,velocity,lower_uy,0.015024615451693535 +steady,sr,133,53.2,velocity,upper_ux,1.1134650707244873 +steady,sr,133,53.2,velocity,upper_uy,-0.014983569271862507 +steady,sr,133,53.2,velocity,center_ux,1.2173212766647339 +steady,sr,133,53.2,velocity,center_uy,2.4175011276383884e-05 +steady,sr,133,53.2,velocity,lower_ux,1.1133618354797363 +steady,sr,133,53.2,velocity,lower_uy,0.015023537911474705 +steady,sr,134,53.6,velocity,upper_ux,1.1131627559661865 +steady,sr,134,53.6,velocity,upper_uy,-0.014984743669629097 +steady,sr,134,53.6,velocity,center_ux,1.2170181274414062 +steady,sr,134,53.6,velocity,center_uy,2.297565333719831e-05 +steady,sr,134,53.6,velocity,lower_ux,1.1130602359771729 +steady,sr,134,53.6,velocity,lower_uy,0.015026377514004707 +steady,sr,135,54.0,velocity,upper_ux,1.113328456878662 +steady,sr,135,54.0,velocity,upper_uy,-0.014986444264650345 +steady,sr,135,54.0,velocity,center_ux,1.2171577215194702 +steady,sr,135,54.0,velocity,center_uy,1.9994366084574722e-05 +steady,sr,135,54.0,velocity,lower_ux,1.1132270097732544 +steady,sr,135,54.0,velocity,lower_uy,0.01502403523772955 +steady,sr,136,54.4,velocity,upper_ux,1.1136445999145508 +steady,sr,136,54.4,velocity,upper_uy,-0.01498429849743843 +steady,sr,136,54.4,velocity,center_ux,1.2174512147903442 +steady,sr,136,54.4,velocity,center_uy,2.2069658371037804e-05 +steady,sr,136,54.4,velocity,lower_ux,1.1135436296463013 +steady,sr,136,54.4,velocity,lower_uy,0.015024643391370773 +steady,sr,137,54.8,velocity,upper_ux,1.113395094871521 +steady,sr,137,54.8,velocity,upper_uy,-0.014983505941927433 +steady,sr,137,54.8,velocity,center_ux,1.2172120809555054 +steady,sr,137,54.8,velocity,center_uy,2.095312265737448e-05 +steady,sr,137,54.8,velocity,lower_ux,1.11329984664917 +steady,sr,137,54.8,velocity,lower_uy,0.015020018443465233 +steady,sr,138,55.2,velocity,upper_ux,1.1134713888168335 +steady,sr,138,55.2,velocity,upper_uy,-0.014981793239712715 +steady,sr,138,55.2,velocity,center_ux,1.2173182964324951 +steady,sr,138,55.2,velocity,center_uy,2.1991550966049545e-05 +steady,sr,138,55.2,velocity,lower_ux,1.1133753061294556 +steady,sr,138,55.2,velocity,lower_uy,0.015019487589597702 +steady,sr,139,55.6,velocity,upper_ux,1.1133590936660767 +steady,sr,139,55.6,velocity,upper_uy,-0.014985647052526474 +steady,sr,139,55.6,velocity,center_ux,1.2172231674194336 +steady,sr,139,55.6,velocity,center_uy,2.0658750145230442e-05 +steady,sr,139,55.6,velocity,lower_ux,1.1132618188858032 +steady,sr,139,55.6,velocity,lower_uy,0.015021548606455326 +steady,sr,140,56.0,velocity,upper_ux,1.1131062507629395 +steady,sr,140,56.0,velocity,upper_uy,-0.014988144859671593 +steady,sr,140,56.0,velocity,center_ux,1.216957449913025 +steady,sr,140,56.0,velocity,center_uy,1.9114388123853132e-05 +steady,sr,140,56.0,velocity,lower_ux,1.1130151748657227 +steady,sr,140,56.0,velocity,lower_uy,0.01502284500747919 +steady,sr,141,56.4,velocity,upper_ux,1.1135363578796387 +steady,sr,141,56.4,velocity,upper_uy,-0.014989441260695457 +steady,sr,141,56.4,velocity,center_ux,1.2173571586608887 +steady,sr,141,56.4,velocity,center_uy,1.9309583876747638e-05 +steady,sr,141,56.4,velocity,lower_ux,1.113444447517395 +steady,sr,141,56.4,velocity,lower_uy,0.015024217776954174 +steady,sr,142,56.8,velocity,upper_ux,1.1135636568069458 +steady,sr,142,56.8,velocity,upper_uy,-0.014990094117820263 +steady,sr,142,56.8,velocity,center_ux,1.2173724174499512 +steady,sr,142,56.8,velocity,center_uy,1.695048740657512e-05 +steady,sr,142,56.8,velocity,lower_ux,1.1134761571884155 +steady,sr,142,56.8,velocity,lower_uy,0.015021327883005142 +steady,sr,143,57.2,velocity,upper_ux,1.1133723258972168 +steady,sr,143,57.2,velocity,upper_uy,-0.014985375106334686 +steady,sr,143,57.2,velocity,center_ux,1.2172036170959473 +steady,sr,143,57.2,velocity,center_uy,1.8713251847657375e-05 +steady,sr,143,57.2,velocity,lower_ux,1.1132839918136597 +steady,sr,143,57.2,velocity,lower_uy,0.015020230785012245 +steady,sr,144,57.6,velocity,upper_ux,1.1134717464447021 +steady,sr,144,57.6,velocity,upper_uy,-0.014988293871283531 +steady,sr,144,57.6,velocity,center_ux,1.2173324823379517 +steady,sr,144,57.6,velocity,center_uy,1.622653508093208e-05 +steady,sr,144,57.6,velocity,lower_ux,1.1133838891983032 +steady,sr,144,57.6,velocity,lower_uy,0.015017692930996418 +steady,sr,145,58.0,velocity,upper_ux,1.1131882667541504 +steady,sr,145,58.0,velocity,upper_uy,-0.014987736940383911 +steady,sr,145,58.0,velocity,center_ux,1.2170543670654297 +steady,sr,145,58.0,velocity,center_uy,1.839647848100867e-05 +steady,sr,145,58.0,velocity,lower_ux,1.113105058670044 +steady,sr,145,58.0,velocity,lower_uy,0.015021673403680325 +steady,sr,146,58.4,velocity,upper_ux,1.113277792930603 +steady,sr,146,58.4,velocity,upper_uy,-0.014990117400884628 +steady,sr,146,58.4,velocity,center_ux,1.2171196937561035 +steady,sr,146,58.4,velocity,center_uy,1.5253786841640249e-05 +steady,sr,146,58.4,velocity,lower_ux,1.1131941080093384 +steady,sr,146,58.4,velocity,lower_uy,0.01501895859837532 +steady,sr,147,58.8,velocity,upper_ux,1.1136155128479004 +steady,sr,147,58.8,velocity,upper_uy,-0.014988208189606667 +steady,sr,147,58.8,velocity,center_ux,1.2174313068389893 +steady,sr,147,58.8,velocity,center_uy,1.7220143490703776e-05 +steady,sr,147,58.8,velocity,lower_ux,1.113529086112976 +steady,sr,147,58.8,velocity,lower_uy,0.01502053253352642 +steady,sr,148,59.2,velocity,upper_ux,1.1134092807769775 +steady,sr,148,59.2,velocity,upper_uy,-0.014987744390964508 +steady,sr,148,59.2,velocity,center_ux,1.217228651046753 +steady,sr,148,59.2,velocity,center_uy,1.6218451492022723e-05 +steady,sr,148,59.2,velocity,lower_ux,1.1133263111114502 +steady,sr,148,59.2,velocity,lower_uy,0.015017000027000904 +steady,sr,149,59.6,velocity,upper_ux,1.1134589910507202 +steady,sr,149,59.6,velocity,upper_uy,-0.014986238442361355 +steady,sr,149,59.6,velocity,center_ux,1.2173070907592773 +steady,sr,149,59.6,velocity,center_uy,1.787366454664152e-05 +steady,sr,149,59.6,velocity,lower_ux,1.1133784055709839 +steady,sr,149,59.6,velocity,lower_uy,0.015016245655715466 +steady,sr,150,60.0,velocity,upper_ux,1.1133774518966675 +steady,sr,150,60.0,velocity,upper_uy,-0.014989208430051804 +steady,sr,150,60.0,velocity,center_ux,1.2172460556030273 +steady,sr,150,60.0,velocity,center_uy,1.7850099538918585e-05 +steady,sr,150,60.0,velocity,lower_ux,1.1133002042770386 +steady,sr,150,60.0,velocity,lower_uy,0.015017876401543617 +steady,sr,151,60.4,velocity,upper_ux,1.113105058670044 +steady,sr,151,60.4,velocity,upper_uy,-0.014991926029324532 +steady,sr,151,60.4,velocity,center_ux,1.2169644832611084 +steady,sr,151,60.4,velocity,center_uy,1.5709787476225756e-05 +steady,sr,151,60.4,velocity,lower_ux,1.1130287647247314 +steady,sr,151,60.4,velocity,lower_uy,0.015018172562122345 +steady,sr,152,60.8,velocity,upper_ux,1.1134867668151855 +steady,sr,152,60.8,velocity,upper_uy,-0.014992333948612213 +steady,sr,152,60.8,velocity,center_ux,1.2173196077346802 +steady,sr,152,60.8,velocity,center_uy,1.4649532204202842e-05 +steady,sr,152,60.8,velocity,lower_ux,1.1134123802185059 +steady,sr,152,60.8,velocity,lower_uy,0.015020469203591347 +steady,sr,153,61.2,velocity,upper_ux,1.1135605573654175 +steady,sr,153,61.2,velocity,upper_uy,-0.014993958175182343 +steady,sr,153,61.2,velocity,center_ux,1.2173784971237183 +steady,sr,153,61.2,velocity,center_uy,1.2044289178447798e-05 +steady,sr,153,61.2,velocity,lower_ux,1.1134839057922363 +steady,sr,153,61.2,velocity,lower_uy,0.015017788857221603 +steady,sr,154,61.6,velocity,upper_ux,1.1133664846420288 +steady,sr,154,61.6,velocity,upper_uy,-0.014989696443080902 +steady,sr,154,61.6,velocity,center_ux,1.2171999216079712 +steady,sr,154,61.6,velocity,center_uy,1.3515311366063543e-05 +steady,sr,154,61.6,velocity,lower_ux,1.1132919788360596 +steady,sr,154,61.6,velocity,lower_uy,0.015016484074294567 +steady,sr,155,62.0,velocity,upper_ux,1.113478660583496 +steady,sr,155,62.0,velocity,upper_uy,-0.014990981668233871 +steady,sr,155,62.0,velocity,center_ux,1.2173395156860352 +steady,sr,155,62.0,velocity,center_uy,1.1789422387664672e-05 +steady,sr,155,62.0,velocity,lower_ux,1.1134047508239746 +steady,sr,155,62.0,velocity,lower_uy,0.015014585107564926 +steady,sr,156,62.4,velocity,upper_ux,1.1132205724716187 +steady,sr,156,62.4,velocity,upper_uy,-0.0149918207898736 +steady,sr,156,62.4,velocity,center_ux,1.2170895338058472 +steady,sr,156,62.4,velocity,center_uy,1.3030370610067621e-05 +steady,sr,156,62.4,velocity,lower_ux,1.113146424293518 +steady,sr,156,62.4,velocity,lower_uy,0.015017474070191383 +steady,sr,157,62.8,velocity,upper_ux,1.1132361888885498 +steady,sr,157,62.8,velocity,upper_uy,-0.014993350952863693 +steady,sr,157,62.8,velocity,center_ux,1.217086672782898 +steady,sr,157,62.8,velocity,center_uy,1.242701182491146e-05 +steady,sr,157,62.8,velocity,lower_ux,1.113165259361267 +steady,sr,157,62.8,velocity,lower_uy,0.015016262419521809 +steady,sr,158,63.2,velocity,upper_ux,1.1135832071304321 +steady,sr,158,63.2,velocity,upper_uy,-0.01499174814671278 +steady,sr,158,63.2,velocity,center_ux,1.2174090147018433 +steady,sr,158,63.2,velocity,center_uy,1.3586167369794566e-05 +steady,sr,158,63.2,velocity,lower_ux,1.1135129928588867 +steady,sr,158,63.2,velocity,lower_uy,0.015016107819974422 +steady,sr,159,63.6,velocity,upper_ux,1.1134212017059326 +steady,sr,159,63.6,velocity,upper_uy,-0.014990810304880142 +steady,sr,159,63.6,velocity,center_ux,1.2172471284866333 +steady,sr,159,63.6,velocity,center_uy,1.2194672308396548e-05 +steady,sr,159,63.6,velocity,lower_ux,1.113350749015808 +steady,sr,159,63.6,velocity,lower_uy,0.015013588592410088 +steady,sr,160,64.0,velocity,upper_ux,1.11344575881958 +steady,sr,160,64.0,velocity,upper_uy,-0.014990047551691532 +steady,sr,160,64.0,velocity,center_ux,1.217298984527588 +steady,sr,160,64.0,velocity,center_uy,1.1060622455261182e-05 +steady,sr,160,64.0,velocity,lower_ux,1.113375186920166 +steady,sr,160,64.0,velocity,lower_uy,0.01501159556210041 +steady,sr,161,64.4,velocity,upper_ux,1.1133983135223389 +steady,sr,161,64.4,velocity,upper_uy,-0.014992105774581432 +steady,sr,161,64.4,velocity,center_ux,1.217273235321045 +steady,sr,161,64.4,velocity,center_uy,1.0478966032678727e-05 +steady,sr,161,64.4,velocity,lower_ux,1.1133277416229248 +steady,sr,161,64.4,velocity,lower_uy,0.015014645643532276 +steady,sr,162,64.8,velocity,upper_ux,1.1131138801574707 +steady,sr,162,64.8,velocity,upper_uy,-0.014995157718658447 +steady,sr,162,64.8,velocity,center_ux,1.21697998046875 +steady,sr,162,64.8,velocity,center_uy,9.258518730348442e-06 +steady,sr,162,64.8,velocity,lower_ux,1.1130449771881104 +steady,sr,162,64.8,velocity,lower_uy,0.015016213990747929 +steady,sr,163,65.2,velocity,upper_ux,1.113443374633789 +steady,sr,163,65.2,velocity,upper_uy,-0.014994686469435692 +steady,sr,163,65.2,velocity,center_ux,1.2172836065292358 +steady,sr,163,65.2,velocity,center_uy,1.1750104931707028e-05 +steady,sr,163,65.2,velocity,lower_ux,1.1133729219436646 +steady,sr,163,65.2,velocity,lower_uy,0.015018351376056671 +steady,sr,164,65.6,velocity,upper_ux,1.1135563850402832 +steady,sr,164,65.6,velocity,upper_uy,-0.014995379373431206 +steady,sr,164,65.6,velocity,center_ux,1.217380404472351 +steady,sr,164,65.6,velocity,center_uy,1.2067525858583394e-05 +steady,sr,164,65.6,velocity,lower_ux,1.1134870052337646 +steady,sr,164,65.6,velocity,lower_uy,0.015017089433968067 +steady,sr,165,66.0,velocity,upper_ux,1.1133637428283691 +steady,sr,165,66.0,velocity,upper_uy,-0.01499080192297697 +steady,sr,165,66.0,velocity,center_ux,1.217198371887207 +steady,sr,165,66.0,velocity,center_uy,1.496544064139016e-05 +steady,sr,165,66.0,velocity,lower_ux,1.1132982969284058 +steady,sr,165,66.0,velocity,lower_uy,0.015015512704849243 +steady,sr,166,66.4,velocity,upper_ux,1.113481879234314 +steady,sr,166,66.4,velocity,upper_uy,-0.014991678297519684 +steady,sr,166,66.4,velocity,center_ux,1.2173457145690918 +steady,sr,166,66.4,velocity,center_uy,1.3194619896239601e-05 +steady,sr,166,66.4,velocity,lower_ux,1.1134178638458252 +steady,sr,166,66.4,velocity,lower_uy,0.015012801624834538 +steady,sr,167,66.8,velocity,upper_ux,1.1132514476776123 +steady,sr,167,66.8,velocity,upper_uy,-0.014992312528192997 +steady,sr,167,66.8,velocity,center_ux,1.2171263694763184 +steady,sr,167,66.8,velocity,center_uy,1.3408714039542247e-05 +steady,sr,167,66.8,velocity,lower_ux,1.1131867170333862 +steady,sr,167,66.8,velocity,lower_uy,0.015015902929008007 +steady,sr,168,67.2,velocity,upper_ux,1.1132049560546875 +steady,sr,168,67.2,velocity,upper_uy,-0.014994625002145767 +steady,sr,168,67.2,velocity,center_ux,1.217064619064331 +steady,sr,168,67.2,velocity,center_uy,1.0191587534791324e-05 +steady,sr,168,67.2,velocity,lower_ux,1.113141655921936 +steady,sr,168,67.2,velocity,lower_uy,0.015014933422207832 +steady,sr,169,67.6,velocity,upper_ux,1.1135551929473877 +steady,sr,169,67.6,velocity,upper_uy,-0.01499384269118309 +steady,sr,169,67.6,velocity,center_ux,1.2173866033554077 +steady,sr,169,67.6,velocity,center_uy,1.0231501619273331e-05 +steady,sr,169,67.6,velocity,lower_ux,1.1134929656982422 +steady,sr,169,67.6,velocity,lower_uy,0.015015479177236557 +steady,sr,170,68.0,velocity,upper_ux,1.113431453704834 +steady,sr,170,68.0,velocity,upper_uy,-0.014992944896221161 +steady,sr,170,68.0,velocity,center_ux,1.2172616720199585 +steady,sr,170,68.0,velocity,center_uy,1.123953734349925e-05 +steady,sr,170,68.0,velocity,lower_ux,1.1133705377578735 +steady,sr,170,68.0,velocity,lower_uy,0.015014066360890865 +steady,sr,171,68.4,velocity,upper_ux,1.1134343147277832 +steady,sr,171,68.4,velocity,upper_uy,-0.014990909025073051 +steady,sr,171,68.4,velocity,center_ux,1.2172855138778687 +steady,sr,171,68.4,velocity,center_uy,1.2305628843023442e-05 +steady,sr,171,68.4,velocity,lower_ux,1.1133745908737183 +steady,sr,171,68.4,velocity,lower_uy,0.015011833049356937 +steady,sr,172,68.8,velocity,upper_ux,1.1134179830551147 +steady,sr,172,68.8,velocity,upper_uy,-0.014991670846939087 +steady,sr,172,68.8,velocity,center_ux,1.2172932624816895 +steady,sr,172,68.8,velocity,center_uy,1.304622128373012e-05 +steady,sr,172,68.8,velocity,lower_ux,1.1133594512939453 +steady,sr,172,68.8,velocity,lower_uy,0.015014474280178547 +steady,sr,173,69.2,velocity,upper_ux,1.1131261587142944 +steady,sr,173,69.2,velocity,upper_uy,-0.014995752833783627 +steady,sr,173,69.2,velocity,center_ux,1.2170016765594482 +steady,sr,173,69.2,velocity,center_uy,1.0919153282884508e-05 +steady,sr,173,69.2,velocity,lower_ux,1.1130690574645996 +steady,sr,173,69.2,velocity,lower_uy,0.015015183947980404 +steady,sr,174,69.6,velocity,upper_ux,1.1134002208709717 +steady,sr,174,69.6,velocity,upper_uy,-0.014994633384048939 +steady,sr,174,69.6,velocity,center_ux,1.2172505855560303 +steady,sr,174,69.6,velocity,center_uy,1.3940085409558378e-05 +steady,sr,174,69.6,velocity,lower_ux,1.1133440732955933 +steady,sr,174,69.6,velocity,lower_uy,0.015018386766314507 +steady,sr,175,70.0,velocity,upper_ux,1.1135449409484863 +steady,sr,175,70.0,velocity,upper_uy,-0.014996775425970554 +steady,sr,175,70.0,velocity,center_ux,1.2173763513565063 +steady,sr,175,70.0,velocity,center_uy,1.3620381650980562e-05 +steady,sr,175,70.0,velocity,lower_ux,1.1134895086288452 +steady,sr,175,70.0,velocity,lower_uy,0.015016117133200169 +steady,sr,176,70.4,velocity,upper_ux,1.1133590936660767 +steady,sr,176,70.4,velocity,upper_uy,-0.014992643147706985 +steady,sr,176,70.4,velocity,center_ux,1.2171987295150757 +steady,sr,176,70.4,velocity,center_uy,1.4968582036090083e-05 +steady,sr,176,70.4,velocity,lower_ux,1.1133086681365967 +steady,sr,176,70.4,velocity,lower_uy,0.01501386146992445 +steady,sr,177,70.8,velocity,upper_ux,1.1134798526763916 +steady,sr,177,70.8,velocity,upper_uy,-0.014993331395089626 +steady,sr,177,70.8,velocity,center_ux,1.2173446416854858 +steady,sr,177,70.8,velocity,center_uy,1.0933069461316336e-05 +steady,sr,177,70.8,velocity,lower_ux,1.1134271621704102 +steady,sr,177,70.8,velocity,lower_uy,0.0150102898478508 +steady,sr,178,71.2,velocity,upper_ux,1.1132802963256836 +steady,sr,178,71.2,velocity,upper_uy,-0.014994651079177856 +steady,sr,178,71.2,velocity,center_ux,1.2171591520309448 +steady,sr,178,71.2,velocity,center_uy,8.800317118584644e-06 +steady,sr,178,71.2,velocity,lower_ux,1.1132280826568604 +steady,sr,178,71.2,velocity,lower_uy,0.015012397430837154 +steady,sr,179,71.6,velocity,upper_ux,1.113179087638855 +steady,sr,179,71.6,velocity,upper_uy,-0.014996732585132122 +steady,sr,179,71.6,velocity,center_ux,1.217047095298767 +steady,sr,179,71.6,velocity,center_uy,6.127707820269279e-06 +steady,sr,179,71.6,velocity,lower_ux,1.1131291389465332 +steady,sr,179,71.6,velocity,lower_uy,0.015011446550488472 +steady,sr,180,72.0,velocity,upper_ux,1.113520622253418 +steady,sr,180,72.0,velocity,upper_uy,-0.014997010119259357 +steady,sr,180,72.0,velocity,center_ux,1.2173646688461304 +steady,sr,180,72.0,velocity,center_uy,5.09070878251805e-06 +steady,sr,180,72.0,velocity,lower_ux,1.1134686470031738 +steady,sr,180,72.0,velocity,lower_uy,0.015011931769549847 +steady,sr,181,72.4,velocity,upper_ux,1.1134414672851562 +steady,sr,181,72.4,velocity,upper_uy,-0.014995494857430458 +steady,sr,181,72.4,velocity,center_ux,1.2172744274139404 +steady,sr,181,72.4,velocity,center_uy,6.370136816258309e-06 +steady,sr,181,72.4,velocity,lower_ux,1.1133884191513062 +steady,sr,181,72.4,velocity,lower_uy,0.015011677518486977 +steady,sr,182,72.8,velocity,upper_ux,1.1134212017059326 +steady,sr,182,72.8,velocity,upper_uy,-0.014994285069406033 +steady,sr,182,72.8,velocity,center_ux,1.2172741889953613 +steady,sr,182,72.8,velocity,center_uy,6.254369964153739e-06 +steady,sr,182,72.8,velocity,lower_ux,1.1133686304092407 +steady,sr,182,72.8,velocity,lower_uy,0.015008785761892796 +steady,sr,183,73.2,velocity,upper_ux,1.1134341955184937 +steady,sr,183,73.2,velocity,upper_uy,-0.01499467995017767 +steady,sr,183,73.2,velocity,center_ux,1.2173103094100952 +steady,sr,183,73.2,velocity,center_uy,8.161122423189227e-06 +steady,sr,183,73.2,velocity,lower_ux,1.1133816242218018 +steady,sr,183,73.2,velocity,lower_uy,0.015011786483228207 +steady,sr,184,73.6,velocity,upper_ux,1.1131449937820435 +steady,sr,184,73.6,velocity,upper_uy,-0.014997555874288082 +steady,sr,184,73.6,velocity,center_ux,1.2170250415802002 +steady,sr,184,73.6,velocity,center_uy,8.132190487231128e-06 +steady,sr,184,73.6,velocity,lower_ux,1.1130955219268799 +steady,sr,184,73.6,velocity,lower_uy,0.015012740157544613 +steady,sr,185,74.0,velocity,upper_ux,1.1133604049682617 +steady,sr,185,74.0,velocity,upper_uy,-0.01499700453132391 +steady,sr,185,74.0,velocity,center_ux,1.2172189950942993 +steady,sr,185,74.0,velocity,center_uy,1.1180146429978777e-05 +steady,sr,185,74.0,velocity,lower_ux,1.113310694694519 +steady,sr,185,74.0,velocity,lower_uy,0.015015126205980778 +steady,sr,186,74.4,velocity,upper_ux,1.113534688949585 +steady,sr,186,74.4,velocity,upper_uy,-0.014998133294284344 +steady,sr,186,74.4,velocity,center_ux,1.217373251914978 +steady,sr,186,74.4,velocity,center_uy,9.72229645412881e-06 +steady,sr,186,74.4,velocity,lower_ux,1.1134856939315796 +steady,sr,186,74.4,velocity,lower_uy,0.015013725496828556 +steady,sr,187,74.8,velocity,upper_ux,1.1133627891540527 +steady,sr,187,74.8,velocity,upper_uy,-0.01499481312930584 +steady,sr,187,74.8,velocity,center_ux,1.217203974723816 +steady,sr,187,74.8,velocity,center_uy,9.732292710395996e-06 +steady,sr,187,74.8,velocity,lower_ux,1.113313913345337 +steady,sr,187,74.8,velocity,lower_uy,0.015012264251708984 +steady,sr,188,75.2,velocity,upper_ux,1.1134775876998901 +steady,sr,188,75.2,velocity,upper_uy,-0.014993986114859581 +steady,sr,188,75.2,velocity,center_ux,1.2173444032669067 +steady,sr,188,75.2,velocity,center_uy,7.549237125203945e-06 +steady,sr,188,75.2,velocity,lower_ux,1.1134318113327026 +steady,sr,188,75.2,velocity,lower_uy,0.01501032430678606 +steady,sr,189,75.6,velocity,upper_ux,1.1133116483688354 +steady,sr,189,75.6,velocity,upper_uy,-0.014995317906141281 +steady,sr,189,75.6,velocity,center_ux,1.2171905040740967 +steady,sr,189,75.6,velocity,center_uy,7.005661245784722e-06 +steady,sr,189,75.6,velocity,lower_ux,1.113263726234436 +steady,sr,189,75.6,velocity,lower_uy,0.015011179260909557 +steady,sr,190,76.0,velocity,upper_ux,1.1131669282913208 +steady,sr,190,76.0,velocity,upper_uy,-0.01499549113214016 +steady,sr,190,76.0,velocity,center_ux,1.2170387506484985 +steady,sr,190,76.0,velocity,center_uy,8.239599083026405e-06 +steady,sr,190,76.0,velocity,lower_ux,1.1131198406219482 +steady,sr,190,76.0,velocity,lower_uy,0.015012937597930431 +steady,sr,191,76.4,velocity,upper_ux,1.113491177558899 +steady,sr,191,76.4,velocity,upper_uy,-0.014996387995779514 +steady,sr,191,76.4,velocity,center_ux,1.217340350151062 +steady,sr,191,76.4,velocity,center_uy,9.68315544014331e-06 +steady,sr,191,76.4,velocity,lower_ux,1.1134463548660278 +steady,sr,191,76.4,velocity,lower_uy,0.01501340139657259 +steady,sr,192,76.8,velocity,upper_ux,1.1134456396102905 +steady,sr,192,76.8,velocity,upper_uy,-0.014994111843407154 +steady,sr,192,76.8,velocity,center_ux,1.2172846794128418 +steady,sr,192,76.8,velocity,center_uy,1.2445276297512464e-05 +steady,sr,192,76.8,velocity,lower_ux,1.1134017705917358 +steady,sr,192,76.8,velocity,lower_uy,0.015013842843472958 +steady,sr,193,77.2,velocity,upper_ux,1.1134049892425537 +steady,sr,193,77.2,velocity,upper_uy,-0.014993315562605858 +steady,sr,193,77.2,velocity,center_ux,1.2172613143920898 +steady,sr,193,77.2,velocity,center_uy,1.188662281492725e-05 +steady,sr,193,77.2,velocity,lower_ux,1.1133661270141602 +steady,sr,193,77.2,velocity,lower_uy,0.015010381117463112 +steady,sr,194,77.6,velocity,upper_ux,1.1134440898895264 +steady,sr,194,77.6,velocity,upper_uy,-0.014994028955698013 +steady,sr,194,77.6,velocity,center_ux,1.2173265218734741 +steady,sr,194,77.6,velocity,center_uy,1.2894307474198285e-05 +steady,sr,194,77.6,velocity,lower_ux,1.1134068965911865 +steady,sr,194,77.6,velocity,lower_uy,0.01501252967864275 +steady,sr,195,78.0,velocity,upper_ux,1.113166332244873 +steady,sr,195,78.0,velocity,upper_uy,-0.014997717924416065 +steady,sr,195,78.0,velocity,center_ux,1.2170509099960327 +steady,sr,195,78.0,velocity,center_uy,1.1357103176123928e-05 +steady,sr,195,78.0,velocity,lower_ux,1.1131274700164795 +steady,sr,195,78.0,velocity,lower_uy,0.015012848190963268 +steady,sr,196,78.4,velocity,upper_ux,1.1133209466934204 +steady,sr,196,78.4,velocity,upper_uy,-0.014998013153672218 +steady,sr,196,78.4,velocity,center_ux,1.2171897888183594 +steady,sr,196,78.4,velocity,center_uy,1.0935796126432251e-05 +steady,sr,196,78.4,velocity,lower_ux,1.1132845878601074 +steady,sr,196,78.4,velocity,lower_uy,0.015014490112662315 +steady,sr,197,78.8,velocity,upper_ux,1.1135200262069702 +steady,sr,197,78.8,velocity,upper_uy,-0.014999879524111748 +steady,sr,197,78.8,velocity,center_ux,1.2173640727996826 +steady,sr,197,78.8,velocity,center_uy,8.214528861572035e-06 +steady,sr,197,78.8,velocity,lower_ux,1.113480806350708 +steady,sr,197,78.8,velocity,lower_uy,0.015012787654995918 +steady,sr,198,79.2,velocity,upper_ux,1.1133601665496826 +steady,sr,198,79.2,velocity,upper_uy,-0.014997225254774094 +steady,sr,198,79.2,velocity,center_ux,1.217207908630371 +steady,sr,198,79.2,velocity,center_uy,7.697388355154544e-06 +steady,sr,198,79.2,velocity,lower_ux,1.1133266687393188 +steady,sr,198,79.2,velocity,lower_uy,0.015010062605142593 +steady,sr,199,79.6,velocity,upper_ux,1.113468885421753 +steady,sr,199,79.6,velocity,upper_uy,-0.014996192418038845 +steady,sr,199,79.6,velocity,center_ux,1.2173380851745605 +steady,sr,199,79.6,velocity,center_uy,5.547278760786867e-06 +steady,sr,199,79.6,velocity,lower_ux,1.1134369373321533 +steady,sr,199,79.6,velocity,lower_uy,0.015007654204964638 +steady,sr,0,0.0,force,front_fx,-1.3616536307381466e-05 +steady,sr,0,0.0,force,front_fy,7.886225830588955e-06 +steady,sr,0,0.0,force,upper_fx,-0.00024002678401302546 +steady,sr,0,0.0,force,upper_fy,6.19686979916878e-05 +steady,sr,0,0.0,force,lower_fx,-0.00022430680110119283 +steady,sr,0,0.0,force,lower_fy,-4.693047594628297e-05 +steady,sr,1,0.4,force,front_fx,-9.316642717749346e-06 +steady,sr,1,0.4,force,front_fy,7.569469744339585e-06 +steady,sr,1,0.4,force,upper_fx,-0.00023323565255850554 +steady,sr,1,0.4,force,upper_fy,7.11561951902695e-05 +steady,sr,1,0.4,force,lower_fx,-0.00021754353656433523 +steady,sr,1,0.4,force,lower_fy,-5.5532713304273784e-05 +steady,sr,2,0.8,force,front_fx,-1.2299340596655384e-05 +steady,sr,2,0.8,force,front_fy,7.532575182267465e-06 +steady,sr,2,0.8,force,upper_fx,-0.00022851071844343096 +steady,sr,2,0.8,force,upper_fy,8.98192374734208e-05 +steady,sr,2,0.8,force,lower_fx,-0.00021337138605304062 +steady,sr,2,0.8,force,lower_fy,-7.345501944655553e-05 +steady,sr,3,1.2,force,front_fx,-1.200724727823399e-05 +steady,sr,3,1.2,force,front_fy,7.710320460319053e-06 +steady,sr,3,1.2,force,upper_fx,-0.0002295006561325863 +steady,sr,3,1.2,force,upper_fy,9.407332981936634e-05 +steady,sr,3,1.2,force,lower_fx,-0.00021461874712258577 +steady,sr,3,1.2,force,lower_fy,-7.827076478861272e-05 +steady,sr,4,1.6,force,front_fx,-1.2871063518105075e-05 +steady,sr,4,1.6,force,front_fy,7.413752427964937e-06 +steady,sr,4,1.6,force,upper_fx,-0.00023526159930042922 +steady,sr,4,1.6,force,upper_fy,8.515757508575916e-05 +steady,sr,4,1.6,force,lower_fx,-0.00022098392946645617 +steady,sr,4,1.6,force,lower_fy,-6.93609326845035e-05 +steady,sr,5,2.0,force,front_fx,-1.7006863345159218e-05 +steady,sr,5,2.0,force,front_fy,7.387348432530416e-06 +steady,sr,5,2.0,force,upper_fx,-0.00024150843091774732 +steady,sr,5,2.0,force,upper_fy,6.610633136006072e-05 +steady,sr,5,2.0,force,lower_fx,-0.0002269056421937421 +steady,sr,5,2.0,force,lower_fy,-5.11752296006307e-05 +steady,sr,6,2.4,force,front_fx,-1.265722585230833e-05 +steady,sr,6,2.4,force,front_fy,6.9005727709736675e-06 +steady,sr,6,2.4,force,upper_fx,-0.00023743843485135585 +steady,sr,6,2.4,force,upper_fy,6.314750498859212e-05 +steady,sr,6,2.4,force,lower_fx,-0.00022323204029817134 +steady,sr,6,2.4,force,lower_fy,-4.867500683758408e-05 +steady,sr,7,2.8,force,front_fx,-9.690320439403877e-06 +steady,sr,7,2.8,force,front_fy,7.2663306127651595e-06 +steady,sr,7,2.8,force,upper_fx,-0.00022937922040000558 +steady,sr,7,2.8,force,upper_fy,7.957879279274493e-05 +steady,sr,7,2.8,force,lower_fx,-0.00021538032160606235 +steady,sr,7,2.8,force,lower_fy,-6.491060048574582e-05 +steady,sr,8,3.2,force,front_fx,-1.1764396731450688e-05 +steady,sr,8,3.2,force,front_fy,6.796808520448394e-06 +steady,sr,8,3.2,force,upper_fx,-0.00022808750509284437 +steady,sr,8,3.2,force,upper_fy,9.165102528641e-05 +steady,sr,8,3.2,force,lower_fx,-0.00021385228319559246 +steady,sr,8,3.2,force,lower_fy,-7.728509808657691e-05 +steady,sr,9,3.6,force,front_fx,-1.2469618923205417e-05 +steady,sr,9,3.6,force,front_fy,6.961653525650036e-06 +steady,sr,9,3.6,force,upper_fx,-0.0002312420547241345 +steady,sr,9,3.6,force,upper_fy,9.082527685677633e-05 +steady,sr,9,3.6,force,lower_fx,-0.00021756887144874781 +steady,sr,9,3.6,force,lower_fy,-7.576810457976535e-05 +steady,sr,10,4.0,force,front_fx,-1.654496736591682e-05 +steady,sr,10,4.0,force,front_fy,6.568516710103722e-06 +steady,sr,10,4.0,force,upper_fx,-0.00023883947869762778 +steady,sr,10,4.0,force,upper_fy,7.733002712484449e-05 +steady,sr,10,4.0,force,lower_fx,-0.00022554364113602787 +steady,sr,10,4.0,force,lower_fy,-6.0255712014622986e-05 +steady,sr,11,4.4,force,front_fx,-1.3601413229480386e-05 +steady,sr,11,4.4,force,front_fy,6.5412559706601314e-06 +steady,sr,11,4.4,force,upper_fx,-0.0002385069092269987 +steady,sr,11,4.4,force,upper_fy,6.222366937436163e-05 +steady,sr,11,4.4,force,lower_fx,-0.00022575038019567728 +steady,sr,11,4.4,force,lower_fy,-4.803939373232424e-05 +steady,sr,12,4.8,force,front_fx,-1.0104000466526486e-05 +steady,sr,12,4.8,force,front_fy,6.785530331399059e-06 +steady,sr,12,4.8,force,upper_fx,-0.0002332642616238445 +steady,sr,12,4.8,force,upper_fy,6.828942423453555e-05 +steady,sr,12,4.8,force,lower_fx,-0.0002199462614953518 +steady,sr,12,4.8,force,lower_fy,-5.411928577814251e-05 +steady,sr,13,5.2,force,front_fx,-1.2033411621814594e-05 +steady,sr,13,5.2,force,front_fy,6.344203029584605e-06 +steady,sr,13,5.2,force,upper_fx,-0.00022799060388933867 +steady,sr,13,5.2,force,upper_fy,8.59120482346043e-05 +steady,sr,13,5.2,force,lower_fx,-0.00021521683083847165 +steady,sr,13,5.2,force,lower_fy,-7.336816634051502e-05 +steady,sr,14,5.6,force,front_fx,-1.1672370419546496e-05 +steady,sr,14,5.6,force,front_fy,6.591329110960942e-06 +steady,sr,14,5.6,force,upper_fx,-0.00022781053849030286 +steady,sr,14,5.6,force,upper_fy,9.23510524444282e-05 +steady,sr,14,5.6,force,lower_fx,-0.00021522320457734168 +steady,sr,14,5.6,force,lower_fy,-7.831665425328538e-05 +steady,sr,15,6.0,force,front_fx,-1.2811043234250974e-05 +steady,sr,15,6.0,force,front_fy,6.053053766663652e-06 +steady,sr,15,6.0,force,upper_fx,-0.00023365986999124289 +steady,sr,15,6.0,force,upper_fy,8.560772403143346e-05 +steady,sr,15,6.0,force,lower_fx,-0.00022088861442171037 +steady,sr,15,6.0,force,lower_fy,-7.295945397345349e-05 +steady,sr,16,6.4,force,front_fx,-1.729245559545234e-05 +steady,sr,16,6.4,force,front_fy,6.228120582818519e-06 +steady,sr,16,6.4,force,upper_fx,-0.00023906677961349487 +steady,sr,16,6.4,force,upper_fy,6.983671482885256e-05 +steady,sr,16,6.4,force,lower_fx,-0.00022736791288480163 +steady,sr,16,6.4,force,lower_fy,-5.216695717535913e-05 +steady,sr,17,6.8,force,front_fx,-1.2966576832695864e-05 +steady,sr,17,6.8,force,front_fy,6.148903139546746e-06 +steady,sr,17,6.8,force,upper_fx,-0.00023688952205702662 +steady,sr,17,6.8,force,upper_fy,6.214181485120207e-05 +steady,sr,17,6.8,force,lower_fx,-0.00022468298266176134 +steady,sr,17,6.8,force,lower_fy,-4.8580393922748044e-05 +steady,sr,18,7.2,force,front_fx,-9.496291568211745e-06 +steady,sr,18,7.2,force,front_fy,5.867807885806542e-06 +steady,sr,18,7.2,force,upper_fx,-0.00022916575835552067 +steady,sr,18,7.2,force,upper_fy,7.613941852468997e-05 +steady,sr,18,7.2,force,lower_fx,-0.00021755887428298593 +steady,sr,18,7.2,force,lower_fy,-6.313421908998862e-05 +steady,sr,19,7.6,force,front_fx,-1.1873865332745481e-05 +steady,sr,19,7.6,force,front_fy,5.738364961871412e-06 +steady,sr,19,7.6,force,upper_fx,-0.00022754896781407297 +steady,sr,19,7.6,force,upper_fy,8.558361878385767e-05 +steady,sr,19,7.6,force,lower_fx,-0.00021539675071835518 +steady,sr,19,7.6,force,lower_fy,-7.647558231838048e-05 +steady,sr,20,8.0,force,front_fx,-1.2546648576972075e-05 +steady,sr,20,8.0,force,front_fy,5.907588729314739e-06 +steady,sr,20,8.0,force,upper_fx,-0.00022949103731662035 +steady,sr,20,8.0,force,upper_fy,9.019114077091217e-05 +steady,sr,20,8.0,force,lower_fx,-0.0002182753523811698 +steady,sr,20,8.0,force,lower_fy,-7.824971544323489e-05 +steady,sr,21,8.4,force,front_fx,-1.5858950064284727e-05 +steady,sr,21,8.4,force,front_fy,5.762545242760098e-06 +steady,sr,21,8.4,force,upper_fx,-0.00023694995616097003 +steady,sr,21,8.4,force,upper_fy,7.816980360075831e-05 +steady,sr,21,8.4,force,lower_fx,-0.0002248420350952074 +steady,sr,21,8.4,force,lower_fy,-6.528704398078844e-05 +steady,sr,22,8.8,force,front_fx,-1.416821305610938e-05 +steady,sr,22,8.8,force,front_fy,5.637019512505503e-06 +steady,sr,22,8.8,force,upper_fx,-0.00023819581838324666 +steady,sr,22,8.8,force,upper_fy,6.27939443802461e-05 +steady,sr,22,8.8,force,lower_fx,-0.00022673382773064077 +steady,sr,22,8.8,force,lower_fy,-5.1844253903254867e-05 +steady,sr,23,9.2,force,front_fx,-1.0791812201205175e-05 +steady,sr,23,9.2,force,front_fy,5.697972937923623e-06 +steady,sr,23,9.2,force,upper_fx,-0.00023350809351541102 +steady,sr,23,9.2,force,upper_fy,6.638821650994942e-05 +steady,sr,23,9.2,force,lower_fx,-0.00021618696337100118 +steady,sr,23,9.2,force,lower_fy,-4.83484473079443e-05 +steady,sr,24,9.6,force,front_fx,-1.165418143500574e-05 +steady,sr,24,9.6,force,front_fy,5.408942797657801e-06 +steady,sr,24,9.6,force,upper_fx,-0.00022765921312384307 +steady,sr,24,9.6,force,upper_fy,8.257833542302251e-05 +steady,sr,24,9.6,force,lower_fx,-0.00021658344485331327 +steady,sr,24,9.6,force,lower_fy,-7.026797538856044e-05 +steady,sr,25,10.0,force,front_fx,-1.1403219104977325e-05 +steady,sr,25,10.0,force,front_fy,5.772948497906327e-06 +steady,sr,25,10.0,force,upper_fx,-0.00022660855029243976 +steady,sr,25,10.0,force,upper_fy,9.03187392395921e-05 +steady,sr,25,10.0,force,lower_fx,-0.00021588221716228873 +steady,sr,25,10.0,force,lower_fy,-7.805398490745574e-05 +steady,sr,26,10.4,force,front_fx,-1.2590641745191533e-05 +steady,sr,26,10.4,force,front_fy,5.110580787004437e-06 +steady,sr,26,10.4,force,upper_fx,-0.00023171500652097166 +steady,sr,26,10.4,force,upper_fy,8.231520041590557e-05 +steady,sr,26,10.4,force,lower_fx,-0.00022081690258346498 +steady,sr,26,10.4,force,lower_fy,-7.38590897526592e-05 +steady,sr,27,10.8,force,front_fx,-1.7261325410800055e-05 +steady,sr,27,10.8,force,front_fy,5.706152478524018e-06 +steady,sr,27,10.8,force,upper_fx,-0.00023861629597377032 +steady,sr,27,10.8,force,upper_fy,6.932715768925846e-05 +steady,sr,27,10.8,force,lower_fx,-0.00022813187388237566 +steady,sr,27,10.8,force,lower_fy,-5.7773726439336315e-05 +steady,sr,28,11.2,force,front_fx,-1.3201762158132624e-05 +steady,sr,28,11.2,force,front_fy,4.9434543143433984e-06 +steady,sr,28,11.2,force,upper_fx,-0.00023641246662009507 +steady,sr,28,11.2,force,upper_fy,6.153884896775708e-05 +steady,sr,28,11.2,force,lower_fx,-0.00022600794909521937 +steady,sr,28,11.2,force,lower_fy,-5.0672901124926284e-05 +steady,sr,29,11.6,force,front_fx,-9.526763278699946e-06 +steady,sr,29,11.6,force,front_fy,4.986492967873346e-06 +steady,sr,29,11.6,force,upper_fx,-0.00022965166135691106 +steady,sr,29,11.6,force,upper_fy,7.301296864170581e-05 +steady,sr,29,11.6,force,lower_fx,-0.0002213008119724691 +steady,sr,29,11.6,force,lower_fy,-6.165077502373606e-05 +steady,sr,30,12.0,force,front_fx,-1.2136358236602973e-05 +steady,sr,30,12.0,force,front_fy,5.057175258116331e-06 +steady,sr,30,12.0,force,upper_fx,-0.00022681236441712826 +steady,sr,30,12.0,force,upper_fy,8.650377276353538e-05 +steady,sr,30,12.0,force,lower_fx,-0.0002166560443583876 +steady,sr,30,12.0,force,lower_fy,-7.485016249120235e-05 +steady,sr,31,12.4,force,front_fx,-1.2074300684616901e-05 +steady,sr,31,12.4,force,front_fy,5.1196157073718496e-06 +steady,sr,31,12.4,force,upper_fx,-0.00022806790366303176 +steady,sr,31,12.4,force,upper_fy,8.896188228391111e-05 +steady,sr,31,12.4,force,lower_fx,-0.00021872887737117708 +steady,sr,31,12.4,force,lower_fy,-7.834412826923653e-05 +steady,sr,32,12.8,force,front_fx,-1.5137746231630445e-05 +steady,sr,32,12.8,force,front_fy,5.735776539950166e-06 +steady,sr,32,12.8,force,upper_fx,-0.0002347273548366502 +steady,sr,32,12.8,force,upper_fy,7.949991413624957e-05 +steady,sr,32,12.8,force,lower_fx,-0.00022649587481282651 +steady,sr,32,12.8,force,lower_fy,-7.093243766576052e-05 +steady,sr,33,13.2,force,front_fx,-1.4821386685071047e-05 +steady,sr,33,13.2,force,front_fy,4.8922420319286175e-06 +steady,sr,33,13.2,force,upper_fx,-0.00023718430020380765 +steady,sr,33,13.2,force,upper_fy,6.311068136710674e-05 +steady,sr,33,13.2,force,lower_fx,-0.00022764975437894464 +steady,sr,33,13.2,force,lower_fy,-5.3108789870748296e-05 +steady,sr,34,13.6,force,front_fx,-1.1466040632512886e-05 +steady,sr,34,13.6,force,front_fy,4.989710760128219e-06 +steady,sr,34,13.6,force,upper_fx,-0.0002335558965569362 +steady,sr,34,13.6,force,upper_fy,6.442455924116075e-05 +steady,sr,34,13.6,force,lower_fx,-0.00022356559929903597 +steady,sr,34,13.6,force,lower_fy,-5.384527685237117e-05 +steady,sr,35,14.0,force,front_fx,-1.1525560694281012e-05 +steady,sr,35,14.0,force,front_fy,4.665063897846267e-06 +steady,sr,35,14.0,force,upper_fx,-0.00022765606991015375 +steady,sr,35,14.0,force,upper_fy,7.953467138577253e-05 +steady,sr,35,14.0,force,lower_fx,-0.00021829198522027582 +steady,sr,35,14.0,force,lower_fy,-7.000021287240088e-05 +steady,sr,36,14.4,force,front_fx,-1.1250393072259612e-05 +steady,sr,36,14.4,force,front_fy,4.68945836473722e-06 +steady,sr,36,14.4,force,upper_fx,-0.00022625729616265744 +steady,sr,36,14.4,force,upper_fy,8.814976899884641e-05 +steady,sr,36,14.4,force,lower_fx,-0.0002168193313991651 +steady,sr,36,14.4,force,lower_fy,-7.823747728252783e-05 +steady,sr,37,14.8,force,front_fx,-1.2311912541917991e-05 +steady,sr,37,14.8,force,front_fy,4.526757493295008e-06 +steady,sr,37,14.8,force,upper_fx,-0.00023006083210930228 +steady,sr,37,14.8,force,upper_fy,8.561652794014663e-05 +steady,sr,37,14.8,force,lower_fx,-0.00022083519434090704 +steady,sr,37,14.8,force,lower_fy,-7.596413342980668e-05 +steady,sr,38,15.2,force,front_fx,-1.7084332284866832e-05 +steady,sr,38,15.2,force,front_fy,4.414384420670103e-06 +steady,sr,38,15.2,force,upper_fx,-0.0002371590817347169 +steady,sr,38,15.2,force,upper_fy,7.059156632749364e-05 +steady,sr,38,15.2,force,lower_fx,-0.0002282093046233058 +steady,sr,38,15.2,force,lower_fy,-6.121111800894141e-05 +steady,sr,39,15.6,force,front_fx,-1.355269705527462e-05 +steady,sr,39,15.6,force,front_fy,4.338038706919178e-06 +steady,sr,39,15.6,force,upper_fx,-0.00023582327412441373 +steady,sr,39,15.6,force,upper_fy,6.153000867925584e-05 +steady,sr,39,15.6,force,lower_fx,-0.00022590930166188627 +steady,sr,39,15.6,force,lower_fy,-5.1272556447656825e-05 +steady,sr,40,16.0,force,front_fx,-9.887991836876608e-06 +steady,sr,40,16.0,force,front_fy,4.293126039556228e-06 +steady,sr,40,16.0,force,upper_fx,-0.00022956148313824087 +steady,sr,40,16.0,force,upper_fy,7.005008228588849e-05 +steady,sr,40,16.0,force,lower_fx,-0.00022091649589128792 +steady,sr,40,16.0,force,lower_fy,-6.442473386414349e-05 +steady,sr,41,16.4,force,front_fx,-1.2153132047387771e-05 +steady,sr,41,16.4,force,front_fy,4.484804321691627e-06 +steady,sr,41,16.4,force,upper_fx,-0.0002265290531795472 +steady,sr,41,16.4,force,upper_fy,8.396562770940363e-05 +steady,sr,41,16.4,force,lower_fx,-0.0002180087030865252 +steady,sr,41,16.4,force,lower_fy,-7.454158912878484e-05 +steady,sr,42,16.8,force,front_fx,-1.1876900316565298e-05 +steady,sr,42,16.8,force,front_fy,4.242454906489002e-06 +steady,sr,42,16.8,force,upper_fx,-0.00022712690406478941 +steady,sr,42,16.8,force,upper_fy,8.772922592470422e-05 +steady,sr,42,16.8,force,lower_fx,-0.00021912083320785314 +steady,sr,42,16.8,force,lower_fy,-7.924694364191964e-05 +steady,sr,43,17.2,force,front_fx,-1.4255771020543762e-05 +steady,sr,43,17.2,force,front_fy,4.2551318983896635e-06 +steady,sr,43,17.2,force,upper_fx,-0.000232947277254425 +steady,sr,43,17.2,force,upper_fy,8.031482138903812e-05 +steady,sr,43,17.2,force,lower_fx,-0.00022504100343212485 +steady,sr,43,17.2,force,lower_fy,-7.151441968744621e-05 +steady,sr,44,17.6,force,front_fx,-1.538915603305213e-05 +steady,sr,44,17.6,force,front_fy,3.9358119465759955e-06 +steady,sr,44,17.6,force,upper_fx,-0.00023661153682041913 +steady,sr,44,17.6,force,upper_fy,6.42551458440721e-05 +steady,sr,44,17.6,force,lower_fx,-0.00022819511650595814 +steady,sr,44,17.6,force,lower_fy,-5.539371704799123e-05 +steady,sr,45,18.0,force,front_fx,-1.2005716598650906e-05 +steady,sr,45,18.0,force,front_fy,4.388647994346684e-06 +steady,sr,45,18.0,force,upper_fx,-0.00023341886117123067 +steady,sr,45,18.0,force,upper_fy,6.336135265883058e-05 +steady,sr,45,18.0,force,lower_fx,-0.00022506255481857806 +steady,sr,45,18.0,force,lower_fy,-5.4940035624895245e-05 +steady,sr,46,18.4,force,front_fx,-1.1507710041769315e-05 +steady,sr,46,18.4,force,front_fy,4.07787638323498e-06 +steady,sr,46,18.4,force,upper_fx,-0.0002315393794560805 +steady,sr,46,18.4,force,upper_fy,7.251716306200251e-05 +steady,sr,46,18.4,force,lower_fx,-0.00021968282817397267 +steady,sr,46,18.4,force,lower_fy,-6.798501999583095e-05 +steady,sr,47,18.8,force,front_fx,-1.1226892638660502e-05 +steady,sr,47,18.8,force,front_fy,3.7829956909263274e-06 +steady,sr,47,18.8,force,upper_fx,-0.00022569294378627092 +steady,sr,47,18.8,force,upper_fy,8.611477824160829e-05 +steady,sr,47,18.8,force,lower_fx,-0.00021968015062157065 +steady,sr,47,18.8,force,lower_fy,-7.752302917651832e-05 +steady,sr,48,19.2,force,front_fx,-1.201865597977303e-05 +steady,sr,48,19.2,force,front_fy,3.869839929393493e-06 +steady,sr,48,19.2,force,upper_fx,-0.00022855447605252266 +steady,sr,48,19.2,force,upper_fy,8.526397868990898e-05 +steady,sr,48,19.2,force,lower_fx,-0.00022146130504552275 +steady,sr,48,19.2,force,lower_fy,-7.760956941638142e-05 +steady,sr,49,19.6,force,front_fx,-1.6758791389293037e-05 +steady,sr,49,19.6,force,front_fy,3.7297659218893386e-06 +steady,sr,49,19.6,force,upper_fx,-0.00023559613327961415 +steady,sr,49,19.6,force,upper_fy,7.251380156958476e-05 +steady,sr,49,19.6,force,lower_fx,-0.00022821727907285094 +steady,sr,49,19.6,force,lower_fy,-6.379238038789481e-05 +steady,sr,50,20.0,force,front_fx,-1.368953144265106e-05 +steady,sr,50,20.0,force,front_fy,3.876519713230664e-06 +steady,sr,50,20.0,force,upper_fx,-0.00023525740834884346 +steady,sr,50,20.0,force,upper_fy,6.149645923869684e-05 +steady,sr,50,20.0,force,lower_fx,-0.00022745842579752207 +steady,sr,50,20.0,force,lower_fy,-5.348056947696023e-05 +steady,sr,51,20.4,force,front_fx,-1.0315660802007187e-05 +steady,sr,51,20.4,force,front_fy,3.6812257349083666e-06 +steady,sr,51,20.4,force,upper_fx,-0.0002299638872500509 +steady,sr,51,20.4,force,upper_fy,6.835017120465636e-05 +steady,sr,51,20.4,force,lower_fx,-0.0002226969663752243 +steady,sr,51,20.4,force,lower_fy,-6.026362461852841e-05 +steady,sr,52,20.8,force,front_fx,-1.2211862667754758e-05 +steady,sr,52,20.8,force,front_fy,4.082639406988164e-06 +steady,sr,52,20.8,force,upper_fx,-0.00022623933909926564 +steady,sr,52,20.8,force,upper_fy,8.180864824680611e-05 +steady,sr,52,20.8,force,lower_fx,-0.00021893858502153307 +steady,sr,52,20.8,force,lower_fy,-7.323902536882088e-05 +steady,sr,53,21.2,force,front_fx,-1.1744020412152167e-05 +steady,sr,53,21.2,force,front_fy,3.442064326009131e-06 +steady,sr,53,21.2,force,upper_fx,-0.00022616989735979587 +steady,sr,53,21.2,force,upper_fy,8.645518391858786e-05 +steady,sr,53,21.2,force,lower_fx,-0.00021947166533209383 +steady,sr,53,21.2,force,lower_fy,-7.787648792145774e-05 +steady,sr,54,21.6,force,front_fx,-1.3634731658385135e-05 +steady,sr,54,21.6,force,front_fy,3.7281995446392102e-06 +steady,sr,54,21.6,force,upper_fx,-0.00023135248920880258 +steady,sr,54,21.6,force,upper_fy,8.118650293909013e-05 +steady,sr,54,21.6,force,lower_fx,-0.0002240680914837867 +steady,sr,54,21.6,force,lower_fy,-7.122076931409538e-05 +steady,sr,55,22.0,force,front_fx,-1.549968328617979e-05 +steady,sr,55,22.0,force,front_fy,3.467237320364802e-06 +steady,sr,55,22.0,force,upper_fx,-0.00023564547882415354 +steady,sr,55,22.0,force,upper_fy,6.508154910989106e-05 +steady,sr,55,22.0,force,lower_fx,-0.00022887437080498785 +steady,sr,55,22.0,force,lower_fy,-5.736920138588175e-05 +steady,sr,56,22.4,force,front_fx,-1.245326166099403e-05 +steady,sr,56,22.4,force,front_fy,3.5037448924413184e-06 +steady,sr,56,22.4,force,upper_fx,-0.00023310190590564162 +steady,sr,56,22.4,force,upper_fy,6.260953523451462e-05 +steady,sr,56,22.4,force,lower_fx,-0.00022635415371041745 +steady,sr,56,22.4,force,lower_fy,-5.449151649372652e-05 +steady,sr,57,22.8,force,front_fx,-1.1520348380145151e-05 +steady,sr,57,22.8,force,front_fy,3.2332463888451457e-06 +steady,sr,57,22.8,force,upper_fx,-0.00023285174393095076 +steady,sr,57,22.8,force,upper_fy,6.867016782052815e-05 +steady,sr,57,22.8,force,lower_fx,-0.00022104071103967726 +steady,sr,57,22.8,force,lower_fy,-6.690761802019551e-05 +steady,sr,58,23.2,force,front_fx,-1.1358989468135405e-05 +steady,sr,58,23.2,force,front_fy,3.388604682186269e-06 +steady,sr,58,23.2,force,upper_fx,-0.0002253249695058912 +steady,sr,58,23.2,force,upper_fy,8.391808660235256e-05 +steady,sr,58,23.2,force,lower_fx,-0.00021862186258658767 +steady,sr,58,23.2,force,lower_fy,-7.636346708750352e-05 +steady,sr,59,23.6,force,front_fx,-1.1889650522789452e-05 +steady,sr,59,23.6,force,front_fy,3.2012433166528353e-06 +steady,sr,59,23.6,force,upper_fx,-0.0002275013248436153 +steady,sr,59,23.6,force,upper_fy,8.488100866088644e-05 +steady,sr,59,23.6,force,lower_fx,-0.00022095580061431974 +steady,sr,59,23.6,force,lower_fy,-7.776914571877569e-05 +steady,sr,60,24.0,force,front_fx,-1.6270552805508487e-05 +steady,sr,60,24.0,force,front_fy,3.320679525131709e-06 +steady,sr,60,24.0,force,upper_fx,-0.00023423245875164866 +steady,sr,60,24.0,force,upper_fy,7.406093936879188e-05 +steady,sr,60,24.0,force,lower_fx,-0.00022809693473391235 +steady,sr,60,24.0,force,lower_fy,-6.692978786304593e-05 +steady,sr,61,24.4,force,front_fx,-1.3734452295466326e-05 +steady,sr,61,24.4,force,front_fy,3.3229862310690805e-06 +steady,sr,61,24.4,force,upper_fx,-0.00023456809867639095 +steady,sr,61,24.4,force,upper_fy,6.229581049410626e-05 +steady,sr,61,24.4,force,lower_fx,-0.00022833008551970124 +steady,sr,61,24.4,force,lower_fy,-5.3452989959623665e-05 +steady,sr,62,24.8,force,front_fx,-1.082050584955141e-05 +steady,sr,62,24.8,force,front_fy,2.8771619327017106e-06 +steady,sr,62,24.8,force,upper_fx,-0.00022964418167248368 +steady,sr,62,24.8,force,upper_fy,6.661185761913657e-05 +steady,sr,62,24.8,force,lower_fx,-0.00022510586131829768 +steady,sr,62,24.8,force,lower_fy,-6.094516720622778e-05 +steady,sr,63,25.2,force,front_fx,-1.2153792340541258e-05 +steady,sr,63,25.2,force,front_fy,3.1741667498863535e-06 +steady,sr,63,25.2,force,upper_fx,-0.0002262820489704609 +steady,sr,63,25.2,force,upper_fy,7.859987817937508e-05 +steady,sr,63,25.2,force,lower_fx,-0.00021991626999806613 +steady,sr,63,25.2,force,lower_fy,-7.17180737410672e-05 +steady,sr,64,25.6,force,front_fx,-1.1837185411422979e-05 +steady,sr,64,25.6,force,front_fy,2.976513997055008e-06 +steady,sr,64,25.6,force,upper_fx,-0.00022583427198696882 +steady,sr,64,25.6,force,upper_fy,8.492648339597508e-05 +steady,sr,64,25.6,force,lower_fx,-0.00021954945987090468 +steady,sr,64,25.6,force,lower_fy,-7.831052789697424e-05 +steady,sr,65,26.0,force,front_fx,-1.3101853255648166e-05 +steady,sr,65,26.0,force,front_fy,3.1276340450858697e-06 +steady,sr,65,26.0,force,upper_fx,-0.00023005538969300687 +steady,sr,65,26.0,force,upper_fy,8.188695937860757e-05 +steady,sr,65,26.0,force,lower_fx,-0.00022307051403913647 +steady,sr,65,26.0,force,lower_fy,-7.826824730727822e-05 +steady,sr,66,26.4,force,front_fx,-1.572185465192888e-05 +steady,sr,66,26.4,force,front_fy,2.7557775865716394e-06 +steady,sr,66,26.4,force,upper_fx,-0.00023479288211092353 +steady,sr,66,26.4,force,upper_fy,6.676295743091032e-05 +steady,sr,66,26.4,force,lower_fx,-0.00022906219237484038 +steady,sr,66,26.4,force,lower_fy,-6.083568587200716e-05 +steady,sr,67,26.8,force,front_fx,-1.2706330380751751e-05 +steady,sr,67,26.8,force,front_fy,3.1529839361610357e-06 +steady,sr,67,26.8,force,upper_fx,-0.0002330638817511499 +steady,sr,67,26.8,force,upper_fy,6.227087578736246e-05 +steady,sr,67,26.8,force,lower_fx,-0.00022729604097548872 +steady,sr,67,26.8,force,lower_fy,-5.574116585194133e-05 +steady,sr,68,27.2,force,front_fx,-1.1431796338001732e-05 +steady,sr,68,27.2,force,front_fy,2.820978352247039e-06 +steady,sr,68,27.2,force,upper_fx,-0.00022787527996115386 +steady,sr,68,27.2,force,upper_fy,7.171546167228371e-05 +steady,sr,68,27.2,force,lower_fx,-0.0002222193288616836 +steady,sr,68,27.2,force,lower_fy,-6.577979365829378e-05 +steady,sr,69,27.6,force,front_fx,-1.1441816241131164e-05 +steady,sr,69,27.6,force,front_fy,3.0839009923511185e-06 +steady,sr,69,27.6,force,upper_fx,-0.00022515069576911628 +steady,sr,69,27.6,force,upper_fy,8.181065641110763e-05 +steady,sr,69,27.6,force,lower_fx,-0.0002195334673160687 +steady,sr,69,27.6,force,lower_fy,-7.532104064011946e-05 +steady,sr,70,28.0,force,front_fx,-1.1764713235606905e-05 +steady,sr,70,28.0,force,front_fy,2.8391909836500417e-06 +steady,sr,70,28.0,force,upper_fx,-0.0002266966039314866 +steady,sr,70,28.0,force,upper_fy,8.471838373225182e-05 +steady,sr,70,28.0,force,lower_fx,-0.00022263526625465602 +steady,sr,70,28.0,force,lower_fy,-8.193831308744848e-05 +steady,sr,71,28.4,force,front_fx,-1.6053018043749034e-05 +steady,sr,71,28.4,force,front_fy,2.4959754227893427e-06 +steady,sr,71,28.4,force,upper_fx,-0.00023275415878742933 +steady,sr,71,28.4,force,upper_fy,7.581781392218545e-05 +steady,sr,71,28.4,force,lower_fx,-0.0002280383196193725 +steady,sr,71,28.4,force,lower_fy,-7.011253183009103e-05 +steady,sr,72,28.8,force,front_fx,-1.3710947314393707e-05 +steady,sr,72,28.8,force,front_fy,2.818126176862279e-06 +steady,sr,72,28.8,force,upper_fx,-0.00023398519260808825 +steady,sr,72,28.8,force,upper_fy,6.245340773602948e-05 +steady,sr,72,28.8,force,lower_fx,-0.00022832064132671803 +steady,sr,72,28.8,force,lower_fy,-5.731383498641662e-05 +steady,sr,73,29.2,force,front_fx,-1.1216133316338528e-05 +steady,sr,73,29.2,force,front_fy,2.6545760647422867e-06 +steady,sr,73,29.2,force,upper_fx,-0.00023049682204145938 +steady,sr,73,29.2,force,upper_fy,6.492805550806224e-05 +steady,sr,73,29.2,force,lower_fx,-0.00022493762662634254 +steady,sr,73,29.2,force,lower_fy,-5.867452273378149e-05 +steady,sr,74,29.6,force,front_fx,-1.2392942153383046e-05 +steady,sr,74,29.6,force,front_fy,2.672730488484376e-06 +steady,sr,74,29.6,force,upper_fx,-0.0002264753420604393 +steady,sr,74,29.6,force,upper_fy,7.631211337866262e-05 +steady,sr,74,29.6,force,lower_fx,-0.00022098400222603232 +steady,sr,74,29.6,force,lower_fy,-7.112679304555058e-05 +steady,sr,75,30.0,force,front_fx,-1.148040155385388e-05 +steady,sr,75,30.0,force,front_fy,2.7892203888768563e-06 +steady,sr,75,30.0,force,upper_fx,-0.00022460574109572917 +steady,sr,75,30.0,force,upper_fy,8.38681953609921e-05 +steady,sr,75,30.0,force,lower_fx,-0.00022137085034046322 +steady,sr,75,30.0,force,lower_fy,-7.910910790087655e-05 +steady,sr,76,30.4,force,front_fx,-1.2701586456387304e-05 +steady,sr,76,30.4,force,front_fy,2.650763235578779e-06 +steady,sr,76,30.4,force,upper_fx,-0.000228817094466649 +steady,sr,76,30.4,force,upper_fy,8.176301344064996e-05 +steady,sr,76,30.4,force,lower_fx,-0.0002235668944194913 +steady,sr,76,30.4,force,lower_fy,-8.056615479290485e-05 +steady,sr,77,30.8,force,front_fx,-1.580714524607174e-05 +steady,sr,77,30.8,force,front_fy,2.575781536506838e-06 +steady,sr,77,30.8,force,upper_fx,-0.00023403730301652104 +steady,sr,77,30.8,force,upper_fy,6.844292511232197e-05 +steady,sr,77,30.8,force,lower_fx,-0.00022743185400031507 +steady,sr,77,30.8,force,lower_fy,-6.107822264311835e-05 +steady,sr,78,31.2,force,front_fx,-1.2947225513926242e-05 +steady,sr,78,31.2,force,front_fy,2.47262778430013e-06 +steady,sr,78,31.2,force,upper_fx,-0.00023273281112778932 +steady,sr,78,31.2,force,upper_fy,6.201877113198861e-05 +steady,sr,78,31.2,force,lower_fx,-0.00022798798454459757 +steady,sr,78,31.2,force,lower_fy,-5.356700057745911e-05 +steady,sr,79,31.6,force,front_fx,-1.1511141565279104e-05 +steady,sr,79,31.6,force,front_fy,2.044646862486843e-06 +steady,sr,79,31.6,force,upper_fx,-0.00022822184837423265 +steady,sr,79,31.6,force,upper_fy,6.947520887479186e-05 +steady,sr,79,31.6,force,lower_fx,-0.00022300108685158193 +steady,sr,79,31.6,force,lower_fy,-6.463589670602232e-05 +steady,sr,80,32.0,force,front_fx,-1.16164565042709e-05 +steady,sr,80,32.0,force,front_fy,2.2808410449215444e-06 +steady,sr,80,32.0,force,upper_fx,-0.00022509229893330485 +steady,sr,80,32.0,force,upper_fy,7.980595546541736e-05 +steady,sr,80,32.0,force,lower_fx,-0.00022017130686435848 +steady,sr,80,32.0,force,lower_fy,-7.437871681759134e-05 +steady,sr,81,32.4,force,front_fx,-1.171649455500301e-05 +steady,sr,81,32.4,force,front_fy,2.5688323148642667e-06 +steady,sr,81,32.4,force,upper_fx,-0.00022584025282412767 +steady,sr,81,32.4,force,upper_fy,8.347976108780131e-05 +steady,sr,81,32.4,force,lower_fx,-0.00022119790082797408 +steady,sr,81,32.4,force,lower_fy,-7.81732815084979e-05 +steady,sr,82,32.8,force,front_fx,-1.517029340902809e-05 +steady,sr,82,32.8,force,front_fy,2.4057778773567406e-06 +steady,sr,82,32.8,force,upper_fx,-0.00023144306032918394 +steady,sr,82,32.8,force,upper_fy,7.681980059714988e-05 +steady,sr,82,32.8,force,lower_fx,-0.0002272768906550482 +steady,sr,82,32.8,force,lower_fy,-7.153909973567352e-05 +steady,sr,83,33.2,force,front_fx,-1.409690230502747e-05 +steady,sr,83,33.2,force,front_fy,2.3977172531886026e-06 +steady,sr,83,33.2,force,upper_fx,-0.00023345644876826555 +steady,sr,83,33.2,force,upper_fy,6.359875987982377e-05 +steady,sr,83,33.2,force,lower_fx,-0.00022994707978796214 +steady,sr,83,33.2,force,lower_fy,-5.964626689092256e-05 +steady,sr,84,33.6,force,front_fx,-1.1532883945619687e-05 +steady,sr,84,33.6,force,front_fy,1.9338965557835763e-06 +steady,sr,84,33.6,force,upper_fx,-0.0002305928064743057 +steady,sr,84,33.6,force,upper_fy,6.413236405933276e-05 +steady,sr,84,33.6,force,lower_fx,-0.0002261740737594664 +steady,sr,84,33.6,force,lower_fy,-5.794489698018879e-05 +steady,sr,85,34.0,force,front_fx,-1.2501634046202525e-05 +steady,sr,85,34.0,force,front_fy,2.3299855911318446e-06 +steady,sr,85,34.0,force,upper_fx,-0.0002266660303575918 +steady,sr,85,34.0,force,upper_fy,7.438957982230932e-05 +steady,sr,85,34.0,force,lower_fx,-0.00022188510047271848 +steady,sr,85,34.0,force,lower_fy,-6.60316800349392e-05 +steady,sr,86,34.4,force,front_fx,-1.1328594155202154e-05 +steady,sr,86,34.4,force,front_fy,2.241200490971096e-06 +steady,sr,86,34.4,force,upper_fx,-0.0002248293167212978 +steady,sr,86,34.4,force,upper_fy,8.220218296628445e-05 +steady,sr,86,34.4,force,lower_fx,-0.00022047283709980547 +steady,sr,86,34.4,force,lower_fy,-7.740125147392973e-05 +steady,sr,87,34.8,force,front_fx,-1.2317923392402008e-05 +steady,sr,87,34.8,force,front_fy,2.236921091025579e-06 +steady,sr,87,34.8,force,upper_fx,-0.00022727450414095074 +steady,sr,87,34.8,force,upper_fy,8.180698205251247e-05 +steady,sr,87,34.8,force,lower_fx,-0.00022334407549351454 +steady,sr,87,34.8,force,lower_fy,-7.681841816520318e-05 +steady,sr,88,35.2,force,front_fx,-1.5952073226799257e-05 +steady,sr,88,35.2,force,front_fy,2.124954335158691e-06 +steady,sr,88,35.2,force,upper_fx,-0.00023314848658628762 +steady,sr,88,35.2,force,upper_fy,6.976502481848001e-05 +steady,sr,88,35.2,force,lower_fx,-0.00022922534844838083 +steady,sr,88,35.2,force,lower_fy,-6.35529650026001e-05 +steady,sr,89,35.6,force,front_fx,-1.332649389951257e-05 +steady,sr,89,35.6,force,front_fy,2.1444604954012902e-06 +steady,sr,89,35.6,force,upper_fx,-0.00023258522560354322 +steady,sr,89,35.6,force,upper_fy,6.225123070180416e-05 +steady,sr,89,35.6,force,lower_fx,-0.00022850690584164113 +steady,sr,89,35.6,force,lower_fy,-5.753550794906914e-05 +steady,sr,90,36.0,force,front_fx,-1.1391882253519725e-05 +steady,sr,90,36.0,force,front_fy,2.0220079477439867e-06 +steady,sr,90,36.0,force,upper_fx,-0.00022852412075735629 +steady,sr,90,36.0,force,upper_fy,6.81479214108549e-05 +steady,sr,90,36.0,force,lower_fx,-0.00022431767138186842 +steady,sr,90,36.0,force,lower_fy,-6.459657743107527e-05 +steady,sr,91,36.4,force,front_fx,-8.9913319243351e-06 +steady,sr,91,36.4,force,front_fy,2.340331320738187e-06 +steady,sr,91,36.4,force,upper_fx,-0.0002227932563982904 +steady,sr,91,36.4,force,upper_fy,7.949108112370595e-05 +steady,sr,91,36.4,force,lower_fx,-0.00022073369473218918 +steady,sr,91,36.4,force,lower_fy,-7.335527334362268e-05 +steady,sr,92,36.8,force,front_fx,-1.1666059435810894e-05 +steady,sr,92,36.8,force,front_fy,1.7929314708453603e-06 +steady,sr,92,36.8,force,upper_fx,-0.0002254932769574225 +steady,sr,92,36.8,force,upper_fy,8.269734826171771e-05 +steady,sr,92,36.8,force,lower_fx,-0.00022128848650027066 +steady,sr,92,36.8,force,lower_fy,-7.817913865437731e-05 +steady,sr,93,37.2,force,front_fx,-1.4696206562803127e-05 +steady,sr,93,37.2,force,front_fy,1.8856107999454252e-06 +steady,sr,93,37.2,force,upper_fx,-0.00022933066065888852 +steady,sr,93,37.2,force,upper_fy,7.840961188776419e-05 +steady,sr,93,37.2,force,lower_fx,-0.00022633193293586373 +steady,sr,93,37.2,force,lower_fy,-7.324429316213354e-05 +steady,sr,94,37.6,force,front_fx,-1.436989987269044e-05 +steady,sr,94,37.6,force,front_fy,2.0402446807565866e-06 +steady,sr,94,37.6,force,upper_fx,-0.00023295734717976302 +steady,sr,94,37.6,force,upper_fy,6.475437839981169e-05 +steady,sr,94,37.6,force,lower_fx,-0.00022910270490683615 +steady,sr,94,37.6,force,lower_fy,-6.057238351786509e-05 +steady,sr,95,38.0,force,front_fx,-1.193930165754864e-05 +steady,sr,95,38.0,force,front_fy,1.7972271280086716e-06 +steady,sr,95,38.0,force,upper_fx,-0.0002307274262420833 +steady,sr,95,38.0,force,upper_fy,6.393086368916556e-05 +steady,sr,95,38.0,force,lower_fx,-0.00022693777282256633 +steady,sr,95,38.0,force,lower_fy,-5.75734993617516e-05 +steady,sr,96,38.4,force,front_fx,-1.2355550097709056e-05 +steady,sr,96,38.4,force,front_fy,1.9515605345077347e-06 +steady,sr,96,38.4,force,upper_fx,-0.00022690703917760402 +steady,sr,96,38.4,force,upper_fy,7.297137926798314e-05 +steady,sr,96,38.4,force,lower_fx,-0.00022315651585813612 +steady,sr,96,38.4,force,lower_fy,-6.848404882475734e-05 +steady,sr,97,38.8,force,front_fx,-1.1263593478361145e-05 +steady,sr,97,38.8,force,front_fy,1.7787216393116978e-06 +steady,sr,97,38.8,force,upper_fx,-0.0002246551011921838 +steady,sr,97,38.8,force,upper_fy,8.05455565568991e-05 +steady,sr,97,38.8,force,lower_fx,-0.00022097479086369276 +steady,sr,97,38.8,force,lower_fy,-7.682372233830392e-05 +steady,sr,98,39.2,force,front_fx,-1.2096973478037398e-05 +steady,sr,98,39.2,force,front_fy,1.6819842585391598e-06 +steady,sr,98,39.2,force,upper_fx,-0.00022667943267151713 +steady,sr,98,39.2,force,upper_fy,8.17059917608276e-05 +steady,sr,98,39.2,force,lower_fx,-0.00022291942150332034 +steady,sr,98,39.2,force,lower_fy,-7.708050543442369e-05 +steady,sr,99,39.6,force,front_fx,-1.5663334124838002e-05 +steady,sr,99,39.6,force,front_fy,1.7849952200776897e-06 +steady,sr,99,39.6,force,upper_fx,-0.00023222636082209647 +steady,sr,99,39.6,force,upper_fy,7.133323379093781e-05 +steady,sr,99,39.6,force,lower_fx,-0.00022865744540467858 +steady,sr,99,39.6,force,lower_fy,-6.747858424205333e-05 +steady,sr,100,40.0,force,front_fx,-1.3335251423995942e-05 +steady,sr,100,40.0,force,front_fy,1.8264398704559426e-06 +steady,sr,100,40.0,force,upper_fx,-0.00023220032744575292 +steady,sr,100,40.0,force,upper_fy,6.2700011767447e-05 +steady,sr,100,40.0,force,lower_fx,-0.00022872145927976817 +steady,sr,100,40.0,force,lower_fy,-5.8719633670989424e-05 +steady,sr,101,40.4,force,front_fx,-1.1617988093348686e-05 +steady,sr,101,40.4,force,front_fy,1.6364797374990303e-06 +steady,sr,101,40.4,force,upper_fx,-0.00022886529040988535 +steady,sr,101,40.4,force,upper_fy,6.712073081871495e-05 +steady,sr,101,40.4,force,lower_fx,-0.00022535622701980174 +steady,sr,101,40.4,force,lower_fy,-6.436381954699755e-05 +steady,sr,102,40.8,force,front_fx,-1.1964018995058723e-05 +steady,sr,102,40.8,force,front_fy,1.6996751810438582e-06 +steady,sr,102,40.8,force,upper_fx,-0.0002252384292660281 +steady,sr,102,40.8,force,upper_fy,7.637045200681314e-05 +steady,sr,102,40.8,force,lower_fx,-0.00022191432071849704 +steady,sr,102,40.8,force,lower_fy,-7.192102930275723e-05 +steady,sr,103,41.2,force,front_fx,-1.1694688510033302e-05 +steady,sr,103,41.2,force,front_fy,1.9320118553878274e-06 +steady,sr,103,41.2,force,upper_fx,-0.0002251346450066194 +steady,sr,103,41.2,force,upper_fy,8.172667730832472e-05 +steady,sr,103,41.2,force,lower_fx,-0.00022171276214066893 +steady,sr,103,41.2,force,lower_fy,-7.738808926660568e-05 +steady,sr,104,41.6,force,front_fx,-1.4080534128879663e-05 +steady,sr,104,41.6,force,front_fy,1.5876883026066935e-06 +steady,sr,104,41.6,force,upper_fx,-0.00022912256827112287 +steady,sr,104,41.6,force,upper_fy,7.831471157260239e-05 +steady,sr,104,41.6,force,lower_fx,-0.0002261683694086969 +steady,sr,104,41.6,force,lower_fy,-7.503206143155694e-05 +steady,sr,105,42.0,force,front_fx,-1.447075374017004e-05 +steady,sr,105,42.0,force,front_fy,1.8081226471622358e-06 +steady,sr,105,42.0,force,upper_fx,-0.00023233047977555543 +steady,sr,105,42.0,force,upper_fy,6.635695172008127e-05 +steady,sr,105,42.0,force,lower_fx,-0.00022915619774721563 +steady,sr,105,42.0,force,lower_fy,-6.088816007832065e-05 +steady,sr,106,42.4,force,front_fx,-1.2265094483154826e-05 +steady,sr,106,42.4,force,front_fy,1.405189777869964e-06 +steady,sr,106,42.4,force,upper_fx,-0.00023058090300764889 +steady,sr,106,42.4,force,upper_fy,6.334421050269157e-05 +steady,sr,106,42.4,force,lower_fx,-0.00022847884974908084 +steady,sr,106,42.4,force,lower_fy,-6.099605525378138e-05 +steady,sr,107,42.8,force,front_fx,-1.2315273124841042e-05 +steady,sr,107,42.8,force,front_fy,1.6704394738553674e-06 +steady,sr,107,42.8,force,upper_fx,-0.00022717166575603187 +steady,sr,107,42.8,force,upper_fy,7.085628749337047e-05 +steady,sr,107,42.8,force,lower_fx,-0.0002238639135612175 +steady,sr,107,42.8,force,lower_fy,-6.790305633330718e-05 +steady,sr,108,43.2,force,front_fx,-1.151096512330696e-05 +steady,sr,108,43.2,force,front_fy,1.6430368532383e-06 +steady,sr,108,43.2,force,upper_fx,-0.00022466055816039443 +steady,sr,108,43.2,force,upper_fy,7.911583088571206e-05 +steady,sr,108,43.2,force,lower_fx,-0.00022151674784254283 +steady,sr,108,43.2,force,lower_fy,-7.553541217930615e-05 +steady,sr,109,43.6,force,front_fx,-1.1754938896046951e-05 +steady,sr,109,43.6,force,front_fy,1.516302972959238e-06 +steady,sr,109,43.6,force,upper_fx,-0.00022595909831579775 +steady,sr,109,43.6,force,upper_fy,8.157879346981645e-05 +steady,sr,109,43.6,force,lower_fx,-0.0002229873207397759 +steady,sr,109,43.6,force,lower_fy,-7.833893323550001e-05 +steady,sr,110,44.0,force,front_fx,-1.535320006951224e-05 +steady,sr,110,44.0,force,front_fy,1.7985515796681284e-06 +steady,sr,110,44.0,force,upper_fx,-0.0002314134471816942 +steady,sr,110,44.0,force,upper_fy,7.261826249305159e-05 +steady,sr,110,44.0,force,lower_fx,-0.00022826474742032588 +steady,sr,110,44.0,force,lower_fy,-6.93994079483673e-05 +steady,sr,111,44.4,force,front_fx,-1.3760181900579482e-05 +steady,sr,111,44.4,force,front_fy,1.827922119446157e-06 +steady,sr,111,44.4,force,upper_fx,-0.00022904184879735112 +steady,sr,111,44.4,force,upper_fy,6.362187559716403e-05 +steady,sr,111,44.4,force,lower_fx,-0.0002291320270160213 +steady,sr,111,44.4,force,lower_fy,-6.056653000996448e-05 +steady,sr,112,44.8,force,front_fx,-1.16651908683707e-05 +steady,sr,112,44.8,force,front_fy,1.9736544345505536e-06 +steady,sr,112,44.8,force,upper_fx,-0.00022893505229149014 +steady,sr,112,44.8,force,upper_fy,6.64310937281698e-05 +steady,sr,112,44.8,force,lower_fx,-0.00022688668104819953 +steady,sr,112,44.8,force,lower_fy,-6.195080641191453e-05 +steady,sr,113,45.2,force,front_fx,-1.2054834769514855e-05 +steady,sr,113,45.2,force,front_fy,1.3408608765530516e-06 +steady,sr,113,45.2,force,upper_fx,-0.00022535929747391492 +steady,sr,113,45.2,force,upper_fy,7.45828147046268e-05 +steady,sr,113,45.2,force,lower_fx,-0.00022290865308605134 +steady,sr,113,45.2,force,lower_fy,-7.181883120210841e-05 +steady,sr,114,45.6,force,front_fx,-1.174470889964141e-05 +steady,sr,114,45.6,force,front_fy,1.2917461162942345e-06 +steady,sr,114,45.6,force,upper_fx,-0.00022486559464596212 +steady,sr,114,45.6,force,upper_fy,8.057808736339211e-05 +steady,sr,114,45.6,force,lower_fx,-0.00022194645134732127 +steady,sr,114,45.6,force,lower_fy,-7.79935362515971e-05 +steady,sr,115,46.0,force,front_fx,-1.361845716019161e-05 +steady,sr,115,46.0,force,front_fy,1.3792761137665366e-06 +steady,sr,115,46.0,force,upper_fx,-0.00022820057347416878 +steady,sr,115,46.0,force,upper_fy,7.923673547338694e-05 +steady,sr,115,46.0,force,lower_fx,-0.00022508722031489015 +steady,sr,115,46.0,force,lower_fy,-7.633269706275314e-05 +steady,sr,116,46.4,force,front_fx,-1.4774974260944873e-05 +steady,sr,116,46.4,force,front_fy,1.7361313666697242e-06 +steady,sr,116,46.4,force,upper_fx,-0.0002318882616236806 +steady,sr,116,46.4,force,upper_fy,6.707075226586312e-05 +steady,sr,116,46.4,force,lower_fx,-0.00022873962006997317 +steady,sr,116,46.4,force,lower_fy,-6.445609324146062e-05 +steady,sr,117,46.8,force,front_fx,-1.2641061402973719e-05 +steady,sr,117,46.8,force,front_fy,1.0573638746791403e-06 +steady,sr,117,46.8,force,upper_fx,-0.0002308751572854817 +steady,sr,117,46.8,force,upper_fy,6.395718082785606e-05 +steady,sr,117,46.8,force,lower_fx,-0.00022804277250543237 +steady,sr,117,46.8,force,lower_fy,-6.035835394868627e-05 +steady,sr,118,47.2,force,front_fx,-1.2459884601412341e-05 +steady,sr,118,47.2,force,front_fy,1.6587001709922333e-06 +steady,sr,118,47.2,force,upper_fx,-0.0002275888400617987 +steady,sr,118,47.2,force,upper_fy,6.963744817767292e-05 +steady,sr,118,47.2,force,lower_fx,-0.00022469426039606333 +steady,sr,118,47.2,force,lower_fy,-6.662288797087967e-05 +steady,sr,119,47.6,force,front_fx,-1.1480569810373709e-05 +steady,sr,119,47.6,force,front_fy,1.28752697037271e-06 +steady,sr,119,47.6,force,upper_fx,-0.00022462484776042402 +steady,sr,119,47.6,force,upper_fy,7.748586358502507e-05 +steady,sr,119,47.6,force,lower_fx,-0.00022203147818800062 +steady,sr,119,47.6,force,lower_fy,-7.535675831604749e-05 +steady,sr,120,48.0,force,front_fx,-1.1549893315532245e-05 +steady,sr,120,48.0,force,front_fy,1.2590356845976203e-06 +steady,sr,120,48.0,force,upper_fx,-0.00022540087229572237 +steady,sr,120,48.0,force,upper_fy,8.085556328296661e-05 +steady,sr,120,48.0,force,lower_fx,-0.00022294458176475018 +steady,sr,120,48.0,force,lower_fy,-7.825930515537038e-05 +steady,sr,121,48.4,force,front_fx,-1.545277700643055e-05 +steady,sr,121,48.4,force,front_fy,1.1900629033334553e-06 +steady,sr,121,48.4,force,upper_fx,-0.00023059015802573413 +steady,sr,121,48.4,force,upper_fy,7.45190482120961e-05 +steady,sr,121,48.4,force,lower_fx,-0.0002278900210512802 +steady,sr,121,48.4,force,lower_fy,-7.254567026393488e-05 +steady,sr,122,48.8,force,front_fx,-1.3745513570029289e-05 +steady,sr,122,48.8,force,front_fy,1.5700846915933653e-06 +steady,sr,122,48.8,force,upper_fx,-0.0002314786979695782 +steady,sr,122,48.8,force,upper_fy,6.420303543563932e-05 +steady,sr,122,48.8,force,lower_fx,-0.00022896731388755143 +steady,sr,122,48.8,force,lower_fy,-6.162476347526535e-05 +steady,sr,123,49.2,force,front_fx,-1.1659404663078021e-05 +steady,sr,123,49.2,force,front_fy,1.262353521269688e-06 +steady,sr,123,49.2,force,upper_fx,-0.0002292848948854953 +steady,sr,123,49.2,force,upper_fy,6.535144348163158e-05 +steady,sr,123,49.2,force,lower_fx,-0.00022723274014424533 +steady,sr,123,49.2,force,lower_fy,-6.312408368103206e-05 +steady,sr,124,49.6,force,front_fx,-1.2417399375408422e-05 +steady,sr,124,49.6,force,front_fy,1.3621804555441486e-06 +steady,sr,124,49.6,force,upper_fx,-0.00022583099780604243 +steady,sr,124,49.6,force,upper_fy,7.313989772228524e-05 +steady,sr,124,49.6,force,lower_fx,-0.00022344836906995624 +steady,sr,124,49.6,force,lower_fy,-7.023120997473598e-05 +steady,sr,125,50.0,force,front_fx,-1.1689046914398205e-05 +steady,sr,125,50.0,force,front_fy,1.2224925285408972e-06 +steady,sr,125,50.0,force,upper_fx,-0.00022465437359642237 +steady,sr,125,50.0,force,upper_fy,7.942638330860063e-05 +steady,sr,125,50.0,force,lower_fx,-0.0002234415296697989 +steady,sr,125,50.0,force,lower_fy,-7.763679604977369e-05 +steady,sr,126,50.4,force,front_fx,-1.3096641851007007e-05 +steady,sr,126,50.4,force,front_fy,8.980276220427186e-07 +steady,sr,126,50.4,force,upper_fx,-0.00022722686117049307 +steady,sr,126,50.4,force,upper_fy,7.926568650873378e-05 +steady,sr,126,50.4,force,lower_fx,-0.00022490420087706298 +steady,sr,126,50.4,force,lower_fy,-7.679659756831825e-05 +steady,sr,127,50.8,force,front_fx,-1.4860822375339922e-05 +steady,sr,127,50.8,force,front_fy,1.1326884532536496e-06 +steady,sr,127,50.8,force,upper_fx,-0.0002313346922164783 +steady,sr,127,50.8,force,upper_fy,6.839101843070239e-05 +steady,sr,127,50.8,force,lower_fx,-0.00022946239914745092 +steady,sr,127,50.8,force,lower_fy,-6.595085142180324e-05 +steady,sr,128,51.2,force,front_fx,-1.2797486306226347e-05 +steady,sr,128,51.2,force,front_fy,1.018747866510239e-06 +steady,sr,128,51.2,force,upper_fx,-0.00023031927412375808 +steady,sr,128,51.2,force,upper_fy,6.384059088304639e-05 +steady,sr,128,51.2,force,lower_fx,-0.00022877978335600346 +steady,sr,128,51.2,force,lower_fy,-6.1014936363790184e-05 +steady,sr,129,51.6,force,front_fx,-1.2318070730543695e-05 +steady,sr,129,51.6,force,front_fy,1.3325862937563215e-06 +steady,sr,129,51.6,force,upper_fx,-0.0002276781597174704 +steady,sr,129,51.6,force,upper_fy,6.842197763035074e-05 +steady,sr,129,51.6,force,lower_fx,-0.00022548073320649564 +steady,sr,129,51.6,force,lower_fy,-6.610900891246274e-05 +steady,sr,130,52.0,force,front_fx,-1.1588973393372726e-05 +steady,sr,130,52.0,force,front_fy,1.0772115501822555e-06 +steady,sr,130,52.0,force,upper_fx,-0.0002248285454697907 +steady,sr,130,52.0,force,upper_fy,7.62992785894312e-05 +steady,sr,130,52.0,force,lower_fx,-0.00022257762611843646 +steady,sr,130,52.0,force,lower_fy,-7.766299677314237e-05 +steady,sr,131,52.4,force,front_fx,-1.1619800716289319e-05 +steady,sr,131,52.4,force,front_fy,8.094087320387189e-07 +steady,sr,131,52.4,force,upper_fx,-0.00022499795886687934 +steady,sr,131,52.4,force,upper_fy,8.006759162526578e-05 +steady,sr,131,52.4,force,lower_fx,-0.00022301562421489507 +steady,sr,131,52.4,force,lower_fy,-7.79299734858796e-05 +steady,sr,132,52.8,force,front_fx,-1.4817900591879152e-05 +steady,sr,132,52.8,force,front_fy,1.1169573781444342e-06 +steady,sr,132,52.8,force,upper_fx,-0.0002295588346896693 +steady,sr,132,52.8,force,upper_fy,7.500562787754461e-05 +steady,sr,132,52.8,force,lower_fx,-0.00022776538389734924 +steady,sr,132,52.8,force,lower_fy,-7.329598884098232e-05 +steady,sr,133,53.2,force,front_fx,-1.3964637219032738e-05 +steady,sr,133,53.2,force,front_fy,1.345379473605135e-06 +steady,sr,133,53.2,force,upper_fx,-0.00023112513008527458 +steady,sr,133,53.2,force,upper_fy,6.499681330751628e-05 +steady,sr,133,53.2,force,lower_fx,-0.00023002363741397858 +steady,sr,133,53.2,force,lower_fy,-6.425890023820102e-05 +steady,sr,134,53.6,force,front_fx,-1.2054810213157907e-05 +steady,sr,134,53.6,force,front_fy,9.99161102299695e-07 +steady,sr,134,53.6,force,upper_fx,-0.00022949057165533304 +steady,sr,134,53.6,force,upper_fy,6.487916834885255e-05 +steady,sr,134,53.6,force,lower_fx,-0.00022692681523039937 +steady,sr,134,53.6,force,lower_fy,-6.207614933373407e-05 +steady,sr,135,54.0,force,front_fx,-1.2416488061717246e-05 +steady,sr,135,54.0,force,front_fy,1.1688448466884438e-06 +steady,sr,135,54.0,force,upper_fx,-0.00022704320144839585 +steady,sr,135,54.0,force,upper_fy,7.069254934322089e-05 +steady,sr,135,54.0,force,lower_fx,-0.000224671617615968 +steady,sr,135,54.0,force,lower_fy,-7.02032120898366e-05 +steady,sr,136,54.4,force,front_fx,-1.1623404134297743e-05 +steady,sr,136,54.4,force,front_fy,9.67379151006753e-07 +steady,sr,136,54.4,force,upper_fx,-0.0002246217627543956 +steady,sr,136,54.4,force,upper_fy,7.8627846960444e-05 +steady,sr,136,54.4,force,lower_fx,-0.0002230385725852102 +steady,sr,136,54.4,force,lower_fy,-7.642851414857432e-05 +steady,sr,137,54.8,force,front_fx,-1.2727889952657279e-05 +steady,sr,137,54.8,force,front_fy,8.621565825706057e-07 +steady,sr,137,54.8,force,upper_fx,-0.00022639155213255435 +steady,sr,137,54.8,force,upper_fy,7.962003292050213e-05 +steady,sr,137,54.8,force,lower_fx,-0.0002256199368275702 +steady,sr,137,54.8,force,lower_fy,-7.848997483961284e-05 +steady,sr,138,55.2,force,front_fx,-1.4803759768255986e-05 +steady,sr,138,55.2,force,front_fy,1.1233267969146254e-06 +steady,sr,138,55.2,force,upper_fx,-0.0002308240655111149 +steady,sr,138,55.2,force,upper_fy,6.982676859479398e-05 +steady,sr,138,55.2,force,lower_fx,-0.0002287351671839133 +steady,sr,138,55.2,force,lower_fy,-6.755953654646873e-05 +steady,sr,139,55.6,force,front_fx,-1.3007228517381009e-05 +steady,sr,139,55.6,force,front_fy,7.892308531154413e-07 +steady,sr,139,55.6,force,upper_fx,-0.000230585370445624 +steady,sr,139,55.6,force,upper_fy,6.403036240953952e-05 +steady,sr,139,55.6,force,lower_fx,-0.0002288114483235404 +steady,sr,139,55.6,force,lower_fy,-6.192270666360855e-05 +steady,sr,140,56.0,force,front_fx,-1.23968175103073e-05 +steady,sr,140,56.0,force,front_fy,1.0631010809447616e-06 +steady,sr,140,56.0,force,upper_fx,-0.00022794425603933632 +steady,sr,140,56.0,force,upper_fy,6.751665205229074e-05 +steady,sr,140,56.0,force,lower_fx,-0.00022633788466919214 +steady,sr,140,56.0,force,lower_fy,-6.596003368031234e-05 +steady,sr,141,56.4,force,front_fx,-1.1769900083891116e-05 +steady,sr,141,56.4,force,front_fy,7.863827136134205e-07 +steady,sr,141,56.4,force,upper_fx,-0.0002246997901238501 +steady,sr,141,56.4,force,upper_fy,7.5051277235616e-05 +steady,sr,141,56.4,force,lower_fx,-0.00022298448311630636 +steady,sr,141,56.4,force,lower_fy,-6.936439604032785e-05 +steady,sr,142,56.8,force,front_fx,-1.1548801921890117e-05 +steady,sr,142,56.8,force,front_fy,9.651962500356603e-07 +steady,sr,142,56.8,force,upper_fx,-0.00022484469809569418 +steady,sr,142,56.8,force,upper_fy,7.943838863866404e-05 +steady,sr,142,56.8,force,lower_fx,-0.00022097863256931305 +steady,sr,142,56.8,force,lower_fy,-7.558862853329629e-05 +steady,sr,143,57.2,force,front_fx,-1.4891425053065177e-05 +steady,sr,143,57.2,force,front_fy,9.150005553237861e-07 +steady,sr,143,57.2,force,upper_fx,-0.0002287149545736611 +steady,sr,143,57.2,force,upper_fy,7.571107562398538e-05 +steady,sr,143,57.2,force,lower_fx,-0.00022690827609039843 +steady,sr,143,57.2,force,lower_fy,-7.291891961358488e-05 +steady,sr,144,57.6,force,front_fx,-1.3925063285569195e-05 +steady,sr,144,57.6,force,front_fy,1.2711550425592577e-06 +steady,sr,144,57.6,force,upper_fx,-0.00023090046306606382 +steady,sr,144,57.6,force,upper_fy,6.637944170506671e-05 +steady,sr,144,57.6,force,lower_fx,-0.00022922223433852196 +steady,sr,144,57.6,force,lower_fy,-6.47034466965124e-05 +steady,sr,145,58.0,force,front_fx,-1.212935421790462e-05 +steady,sr,145,58.0,force,front_fy,9.652284234107356e-07 +steady,sr,145,58.0,force,upper_fx,-0.0002295838057762012 +steady,sr,145,58.0,force,upper_fy,6.510801904369146e-05 +steady,sr,145,58.0,force,lower_fx,-0.00022786136833019555 +steady,sr,145,58.0,force,lower_fy,-6.437426782213151e-05 +steady,sr,146,58.4,force,front_fx,-1.2237072951393202e-05 +steady,sr,146,58.4,force,front_fy,6.890039117024571e-07 +steady,sr,146,58.4,force,upper_fx,-0.00022645413991995156 +steady,sr,146,58.4,force,upper_fy,7.045116217341274e-05 +steady,sr,146,58.4,force,lower_fx,-0.00022490082483273 +steady,sr,146,58.4,force,lower_fy,-6.837043474661186e-05 +steady,sr,147,58.8,force,front_fx,-1.1681197975121904e-05 +steady,sr,147,58.8,force,front_fy,9.043931186170084e-07 +steady,sr,147,58.8,force,upper_fx,-0.00022461546177510172 +steady,sr,147,58.8,force,upper_fy,7.811595423845574e-05 +steady,sr,147,58.8,force,lower_fx,-0.0002229672099929303 +steady,sr,147,58.8,force,lower_fy,-7.572502363473177e-05 +steady,sr,148,59.2,force,front_fx,-1.2477405107347295e-05 +steady,sr,148,59.2,force,front_fy,6.79016977755964e-07 +steady,sr,148,59.2,force,upper_fx,-0.00022553946473635733 +steady,sr,148,59.2,force,upper_fy,7.886714593041688e-05 +steady,sr,148,59.2,force,lower_fx,-0.00022051508130971342 +steady,sr,148,59.2,force,lower_fy,-7.742127490928397e-05 +steady,sr,149,59.6,force,front_fx,-1.4963140529289376e-05 +steady,sr,149,59.6,force,front_fy,3.0082969715294894e-07 +steady,sr,149,59.6,force,upper_fx,-0.0002300800260854885 +steady,sr,149,59.6,force,upper_fy,7.131903112167493e-05 +steady,sr,149,59.6,force,lower_fx,-0.00022830329544376582 +steady,sr,149,59.6,force,lower_fy,-6.920820305822417e-05 +steady,sr,150,60.0,force,front_fx,-1.3180807400203776e-05 +steady,sr,150,60.0,force,front_fy,8.361566870007664e-07 +steady,sr,150,60.0,force,upper_fx,-0.00023061853426042944 +steady,sr,150,60.0,force,upper_fy,6.453829701058567e-05 +steady,sr,150,60.0,force,lower_fx,-0.00022866734070703387 +steady,sr,150,60.0,force,lower_fy,-6.27677800366655e-05 +steady,sr,151,60.4,force,front_fx,-1.2446619621186983e-05 +steady,sr,151,60.4,force,front_fy,6.582450282621721e-07 +steady,sr,151,60.4,force,upper_fx,-0.00022849871311336756 +steady,sr,151,60.4,force,upper_fy,6.840618152637035e-05 +steady,sr,151,60.4,force,lower_fx,-0.00022675716900266707 +steady,sr,151,60.4,force,lower_fy,-6.513018888654187e-05 +steady,sr,152,60.8,force,front_fx,-1.1862205610668752e-05 +steady,sr,152,60.8,force,front_fy,7.995100759217166e-07 +steady,sr,152,60.8,force,upper_fx,-0.00022537412587553263 +steady,sr,152,60.8,force,upper_fy,7.357876893365756e-05 +steady,sr,152,60.8,force,lower_fx,-0.00022399118461180478 +steady,sr,152,60.8,force,lower_fy,-7.208592433016747e-05 +steady,sr,153,61.2,force,front_fx,-1.1196703781024553e-05 +steady,sr,153,61.2,force,front_fy,7.374794108727656e-07 +steady,sr,153,61.2,force,upper_fx,-0.00022458234161604196 +steady,sr,153,61.2,force,upper_fy,7.879422628320754e-05 +steady,sr,153,61.2,force,lower_fx,-0.00022325580357573926 +steady,sr,153,61.2,force,lower_fy,-7.749079668428749e-05 +steady,sr,154,61.6,force,front_fx,-1.418691135768313e-05 +steady,sr,154,61.6,force,front_fy,1.2328522416282794e-06 +steady,sr,154,61.6,force,upper_fx,-0.000228051096200943 +steady,sr,154,61.6,force,upper_fy,7.806816574884579e-05 +steady,sr,154,61.6,force,lower_fx,-0.0002265181246912107 +steady,sr,154,61.6,force,lower_fy,-7.520106737501919e-05 +steady,sr,155,62.0,force,front_fx,-1.4116440070210956e-05 +steady,sr,155,62.0,force,front_fy,9.523722042104055e-07 +steady,sr,155,62.0,force,upper_fx,-0.00023002648958936334 +steady,sr,155,62.0,force,upper_fy,6.680095248157158e-05 +steady,sr,155,62.0,force,lower_fx,-0.00022892594279255718 +steady,sr,155,62.0,force,lower_fy,-6.54584146104753e-05 +steady,sr,156,62.4,force,front_fx,-1.2360997061477974e-05 +steady,sr,156,62.4,force,front_fy,6.713029847560392e-07 +steady,sr,156,62.4,force,upper_fx,-0.0002296590682817623 +steady,sr,156,62.4,force,upper_fy,6.523078627651557e-05 +steady,sr,156,62.4,force,lower_fx,-0.00022785220062360168 +steady,sr,156,62.4,force,lower_fy,-6.681038212263957e-05 +steady,sr,157,62.8,force,front_fx,-1.2606410564330872e-05 +steady,sr,157,62.8,force,front_fy,9.259820217266679e-07 +steady,sr,157,62.8,force,upper_fx,-0.00022708899632561952 +steady,sr,157,62.8,force,upper_fy,6.977783777983859e-05 +steady,sr,157,62.8,force,lower_fx,-0.0002256005391245708 +steady,sr,157,62.8,force,lower_fy,-6.6511842305772e-05 +steady,sr,158,63.2,force,front_fx,-1.154496112576453e-05 +steady,sr,158,63.2,force,front_fy,8.810212648313609e-07 +steady,sr,158,63.2,force,upper_fx,-0.000224652438191697 +steady,sr,158,63.2,force,upper_fy,7.61249684728682e-05 +steady,sr,158,63.2,force,lower_fx,-0.00022417664877139032 +steady,sr,158,63.2,force,lower_fy,-7.428165554301813e-05 +steady,sr,159,63.6,force,front_fx,-1.1155028914799914e-05 +steady,sr,159,63.6,force,front_fy,7.676488849028829e-07 +steady,sr,159,63.6,force,upper_fx,-0.00022612346219830215 +steady,sr,159,63.6,force,upper_fy,7.908971747383475e-05 +steady,sr,159,63.6,force,lower_fx,-0.00022440119937527925 +steady,sr,159,63.6,force,lower_fy,-7.808403461240232e-05 +steady,sr,160,64.0,force,front_fx,-1.4958137398934923e-05 +steady,sr,160,64.0,force,front_fy,1.0020650051956181e-06 +steady,sr,160,64.0,force,upper_fx,-0.00022937715402804315 +steady,sr,160,64.0,force,upper_fy,7.220071711344644e-05 +steady,sr,160,64.0,force,lower_fx,-0.00022760109277442098 +steady,sr,160,64.0,force,lower_fy,-7.028491381788626e-05 +steady,sr,161,64.4,force,front_fx,-1.3459932233672589e-05 +steady,sr,161,64.4,force,front_fy,7.009392675172421e-07 +steady,sr,161,64.4,force,upper_fx,-0.00023038644576445222 +steady,sr,161,64.4,force,upper_fy,6.51504160487093e-05 +steady,sr,161,64.4,force,lower_fx,-0.00022864846687298268 +steady,sr,161,64.4,force,lower_fy,-6.306209252215922e-05 +steady,sr,162,64.8,force,front_fx,-1.24873595268582e-05 +steady,sr,162,64.8,force,front_fy,5.608920901067904e-07 +steady,sr,162,64.8,force,upper_fx,-0.00022834594710730016 +steady,sr,162,64.8,force,upper_fy,6.643323285970837e-05 +steady,sr,162,64.8,force,lower_fx,-0.0002271737321279943 +steady,sr,162,64.8,force,lower_fy,-6.234450120246038e-05 +steady,sr,163,65.2,force,front_fx,-1.2077615792804863e-05 +steady,sr,163,65.2,force,front_fy,5.401088856160641e-07 +steady,sr,163,65.2,force,upper_fx,-0.00022564987011719495 +steady,sr,163,65.2,force,upper_fy,7.239799742819741e-05 +steady,sr,163,65.2,force,lower_fx,-0.0002245539944851771 +steady,sr,163,65.2,force,lower_fy,-7.020758494036272e-05 +steady,sr,164,65.6,force,front_fx,-1.143016925198026e-05 +steady,sr,164,65.6,force,front_fy,7.486856929972419e-07 +steady,sr,164,65.6,force,upper_fx,-0.0002242850314360112 +steady,sr,164,65.6,force,upper_fy,7.810827810317278e-05 +steady,sr,164,65.6,force,lower_fx,-0.00022307957988232374 +steady,sr,164,65.6,force,lower_fy,-7.491320138797164e-05 +steady,sr,165,66.0,force,front_fx,-1.3933230547991116e-05 +steady,sr,165,66.0,force,front_fy,5.250026333669666e-07 +steady,sr,165,66.0,force,upper_fx,-0.00022746123431716114 +steady,sr,165,66.0,force,upper_fy,7.68902973504737e-05 +steady,sr,165,66.0,force,lower_fx,-0.00022646527213510126 +steady,sr,165,66.0,force,lower_fy,-7.592180190840736e-05 +steady,sr,166,66.4,force,front_fx,-1.4080057553655934e-05 +steady,sr,166,66.4,force,front_fy,5.002195848646807e-07 +steady,sr,166,66.4,force,upper_fx,-0.0002299671759828925 +steady,sr,166,66.4,force,upper_fy,6.819752888986841e-05 +steady,sr,166,66.4,force,lower_fx,-0.00022886291844770312 +steady,sr,166,66.4,force,lower_fy,-6.654840399278328e-05 +steady,sr,167,66.8,force,front_fx,-1.250841796718305e-05 +steady,sr,167,66.8,force,front_fy,7.390912060145638e-07 +steady,sr,167,66.8,force,upper_fx,-0.00022938329493626952 +steady,sr,167,66.8,force,upper_fy,6.536185537697747e-05 +steady,sr,167,66.8,force,lower_fx,-0.0002281919150846079 +steady,sr,167,66.8,force,lower_fy,-6.197196489665657e-05 +steady,sr,168,67.2,force,front_fx,-1.2968481314601377e-05 +steady,sr,168,67.2,force,front_fy,5.459129397422657e-07 +steady,sr,168,67.2,force,upper_fx,-0.00022716261446475983 +steady,sr,168,67.2,force,upper_fy,6.865170871606097e-05 +steady,sr,168,67.2,force,lower_fx,-0.0002261284680571407 +steady,sr,168,67.2,force,lower_fy,-6.762249540770426e-05 +steady,sr,169,67.6,force,front_fx,-1.1568010449991561e-05 +steady,sr,169,67.6,force,front_fy,6.382314268194023e-07 +steady,sr,169,67.6,force,upper_fx,-0.00022372201783582568 +steady,sr,169,67.6,force,upper_fy,7.616373477503657e-05 +steady,sr,169,67.6,force,lower_fx,-0.00022349078790284693 +steady,sr,169,67.6,force,lower_fy,-7.42187476134859e-05 +steady,sr,170,68.0,force,front_fx,-1.2015326319669839e-05 +steady,sr,170,68.0,force,front_fy,6.720318310726725e-07 +steady,sr,170,68.0,force,upper_fx,-0.00022290089691523463 +steady,sr,170,68.0,force,upper_fy,7.850822294130921e-05 +steady,sr,170,68.0,force,lower_fx,-0.00022392887331079692 +steady,sr,170,68.0,force,lower_fy,-7.745299080852419e-05 +steady,sr,171,68.4,force,front_fx,-1.4601644579670392e-05 +steady,sr,171,68.4,force,front_fy,7.83036227858247e-07 +steady,sr,171,68.4,force,upper_fx,-0.0002289537515025586 +steady,sr,171,68.4,force,upper_fy,7.308885687962174e-05 +steady,sr,171,68.4,force,lower_fx,-0.0002277174062328413 +steady,sr,171,68.4,force,lower_fy,-7.145221024984494e-05 +steady,sr,172,68.8,force,front_fx,-1.3403656339505687e-05 +steady,sr,172,68.8,force,front_fy,6.461834232140973e-07 +steady,sr,172,68.8,force,upper_fx,-0.0002291274577146396 +steady,sr,172,68.8,force,upper_fy,6.665486580459401e-05 +steady,sr,172,68.8,force,lower_fx,-0.00022882591292727739 +steady,sr,172,68.8,force,lower_fy,-6.311335164355114e-05 +steady,sr,173,69.2,force,front_fx,-1.2452966984710656e-05 +steady,sr,173,69.2,force,front_fy,6.582928335774341e-07 +steady,sr,173,69.2,force,upper_fx,-0.00022871320834383368 +steady,sr,173,69.2,force,upper_fy,6.508324440801516e-05 +steady,sr,173,69.2,force,lower_fx,-0.00022750085918232799 +steady,sr,173,69.2,force,lower_fy,-6.195264722919092e-05 +steady,sr,174,69.6,force,front_fx,-1.2311220416449942e-05 +steady,sr,174,69.6,force,front_fy,8.829351259009854e-07 +steady,sr,174,69.6,force,upper_fx,-0.00022575513867195696 +steady,sr,174,69.6,force,upper_fy,7.149754674173892e-05 +steady,sr,174,69.6,force,lower_fx,-0.00022481619089376181 +steady,sr,174,69.6,force,lower_fy,-6.990062684053555e-05 +steady,sr,175,70.0,force,front_fx,-1.15114989966969e-05 +steady,sr,175,70.0,force,front_fy,6.288866529757797e-07 +steady,sr,175,70.0,force,upper_fx,-0.0002243929193355143 +steady,sr,175,70.0,force,upper_fy,7.746763003524393e-05 +steady,sr,175,70.0,force,lower_fx,-0.00022342774900607765 +steady,sr,175,70.0,force,lower_fy,-7.666397868888453e-05 +steady,sr,176,70.4,force,front_fx,-1.3418911294138525e-05 +steady,sr,176,70.4,force,front_fy,6.962161478440976e-07 +steady,sr,176,70.4,force,upper_fx,-0.00022695650113746524 +steady,sr,176,70.4,force,upper_fy,7.700831338297576e-05 +steady,sr,176,70.4,force,lower_fx,-0.00022552740119863302 +steady,sr,176,70.4,force,lower_fy,-7.63231873861514e-05 +steady,sr,177,70.8,force,front_fx,-1.4157863006403204e-05 +steady,sr,177,70.8,force,front_fy,5.688951887350413e-07 +steady,sr,177,70.8,force,upper_fx,-0.00022991326113697141 +steady,sr,177,70.8,force,upper_fy,6.890322401886806e-05 +steady,sr,177,70.8,force,lower_fx,-0.00022930779960006475 +steady,sr,177,70.8,force,lower_fy,-6.894313992233947e-05 +steady,sr,178,71.2,force,front_fx,-1.2751404028676916e-05 +steady,sr,178,71.2,force,front_fy,6.705377018079162e-07 +steady,sr,178,71.2,force,upper_fx,-0.00022959487978368998 +steady,sr,178,71.2,force,upper_fy,6.512405525427312e-05 +steady,sr,178,71.2,force,lower_fx,-0.00022835435811430216 +steady,sr,178,71.2,force,lower_fy,-6.18870762991719e-05 +steady,sr,179,71.6,force,front_fx,-1.2648286428884603e-05 +steady,sr,179,71.6,force,front_fy,2.418231019873929e-07 +steady,sr,179,71.6,force,upper_fx,-0.00022766366600990295 +steady,sr,179,71.6,force,upper_fy,6.632112490478903e-05 +steady,sr,179,71.6,force,lower_fx,-0.0002264357899548486 +steady,sr,179,71.6,force,lower_fy,-7.089341670507565e-05 +steady,sr,180,72.0,force,front_fx,-1.1930600521736778e-05 +steady,sr,180,72.0,force,front_fy,5.376639933274419e-07 +steady,sr,180,72.0,force,upper_fx,-0.0002253123529953882 +steady,sr,180,72.0,force,upper_fy,7.462997018592432e-05 +steady,sr,180,72.0,force,lower_fx,-0.00022391355014406145 +steady,sr,180,72.0,force,lower_fy,-7.306933548534289e-05 +steady,sr,181,72.4,force,front_fx,-1.1566412467800546e-05 +steady,sr,181,72.4,force,front_fy,6.161520786918118e-07 +steady,sr,181,72.4,force,upper_fx,-0.00022475705191027373 +steady,sr,181,72.4,force,upper_fy,7.835183350834996e-05 +steady,sr,181,72.4,force,lower_fx,-0.0002239866298623383 +steady,sr,181,72.4,force,lower_fy,-7.667338650207967e-05 +steady,sr,182,72.8,force,front_fx,-1.4572954569302965e-05 +steady,sr,182,72.8,force,front_fy,5.707895525119966e-07 +steady,sr,182,72.8,force,upper_fx,-0.00022827931388746947 +steady,sr,182,72.8,force,upper_fy,7.373672269750386e-05 +steady,sr,182,72.8,force,lower_fx,-0.00022729687043465674 +steady,sr,182,72.8,force,lower_fy,-7.291176007129252e-05 +steady,sr,183,73.2,force,front_fx,-1.3461826711136382e-05 +steady,sr,183,73.2,force,front_fy,9.530389775136427e-07 +steady,sr,183,73.2,force,upper_fx,-0.0002298775943927467 +steady,sr,183,73.2,force,upper_fy,6.676928023807704e-05 +steady,sr,183,73.2,force,lower_fx,-0.00022860309400130063 +steady,sr,183,73.2,force,lower_fy,-6.548427336383611e-05 +steady,sr,184,73.6,force,front_fx,-1.2645621609408408e-05 +steady,sr,184,73.6,force,front_fy,5.054472467236337e-07 +steady,sr,184,73.6,force,upper_fx,-0.00022860884200781584 +steady,sr,184,73.6,force,upper_fy,6.614077574340627e-05 +steady,sr,184,73.6,force,lower_fx,-0.00022800115402787924 +steady,sr,184,73.6,force,lower_fy,-6.556551670655608e-05 +steady,sr,185,74.0,force,front_fx,-1.233649436471751e-05 +steady,sr,185,74.0,force,front_fy,5.189888270251686e-07 +steady,sr,185,74.0,force,upper_fx,-0.00022627238649874926 +steady,sr,185,74.0,force,upper_fy,7.032256689853966e-05 +steady,sr,185,74.0,force,lower_fx,-0.0002255481667816639 +steady,sr,185,74.0,force,lower_fy,-6.982075137784705e-05 +steady,sr,186,74.4,force,front_fx,-1.1642192475846969e-05 +steady,sr,186,74.4,force,front_fy,6.873830216136412e-07 +steady,sr,186,74.4,force,upper_fx,-0.00022429449018090963 +steady,sr,186,74.4,force,upper_fy,7.58541573304683e-05 +steady,sr,186,74.4,force,lower_fx,-0.00022367660130839795 +steady,sr,186,74.4,force,lower_fy,-7.583419210277498e-05 +steady,sr,187,74.8,force,front_fx,-1.3077092262392398e-05 +steady,sr,187,74.8,force,front_fy,5.009704864278319e-07 +steady,sr,187,74.8,force,upper_fx,-0.00022634092601947486 +steady,sr,187,74.8,force,upper_fy,7.771255332045257e-05 +steady,sr,187,74.8,force,lower_fx,-0.00022061918571125716 +steady,sr,187,74.8,force,lower_fy,-7.618388190167025e-05 +steady,sr,188,75.2,force,front_fx,-1.4130645467957947e-05 +steady,sr,188,75.2,force,front_fy,5.0804811735361e-07 +steady,sr,188,75.2,force,upper_fx,-0.0002282031055074185 +steady,sr,188,75.2,force,upper_fy,7.103141979314387e-05 +steady,sr,188,75.2,force,lower_fx,-0.00022881563927512616 +steady,sr,188,75.2,force,lower_fy,-6.942384061403573e-05 +steady,sr,189,75.6,force,front_fx,-1.2924533621117007e-05 +steady,sr,189,75.6,force,front_fy,3.3295435741820256e-07 +steady,sr,189,75.6,force,upper_fx,-0.0002295701706316322 +steady,sr,189,75.6,force,upper_fy,6.534497515531257e-05 +steady,sr,189,75.6,force,lower_fx,-0.00022865035862196237 +steady,sr,189,75.6,force,lower_fy,-6.454076356021687e-05 +steady,sr,190,76.0,force,front_fx,-1.3028151442995295e-05 +steady,sr,190,76.0,force,front_fy,4.784740212926408e-07 +steady,sr,190,76.0,force,upper_fx,-0.0002277485327795148 +steady,sr,190,76.0,force,upper_fy,6.734728231094778e-05 +steady,sr,190,76.0,force,lower_fx,-0.00022681760310661048 +steady,sr,190,76.0,force,lower_fy,-6.67725398670882e-05 +steady,sr,191,76.4,force,front_fx,-1.1849135262309574e-05 +steady,sr,191,76.4,force,front_fy,5.677542276316672e-07 +steady,sr,191,76.4,force,upper_fx,-0.00022523316147271544 +steady,sr,191,76.4,force,upper_fy,7.316632400033996e-05 +steady,sr,191,76.4,force,lower_fx,-0.00022422462643589824 +steady,sr,191,76.4,force,lower_fy,-7.287682819878682e-05 +steady,sr,192,76.8,force,front_fx,-1.1694147360685747e-05 +steady,sr,192,76.8,force,front_fy,6.57208602206083e-07 +steady,sr,192,76.8,force,upper_fx,-0.00022491419804282486 +steady,sr,192,76.8,force,upper_fy,7.762561290292069e-05 +steady,sr,192,76.8,force,lower_fx,-0.00022381845337804407 +steady,sr,192,76.8,force,lower_fy,-7.683108560740948e-05 +steady,sr,193,77.2,force,front_fx,-1.42044918902684e-05 +steady,sr,193,77.2,force,front_fy,3.7493242643904523e-07 +steady,sr,193,77.2,force,upper_fx,-0.000227058058953844 +steady,sr,193,77.2,force,upper_fy,7.539726357208565e-05 +steady,sr,193,77.2,force,lower_fx,-0.000227203534450382 +steady,sr,193,77.2,force,lower_fy,-7.308163912966847e-05 +steady,sr,194,77.6,force,front_fx,-1.353251082036877e-05 +steady,sr,194,77.6,force,front_fy,4.6411062726292585e-07 +steady,sr,194,77.6,force,upper_fx,-0.00022944975353311747 +steady,sr,194,77.6,force,upper_fy,6.741427932865918e-05 +steady,sr,194,77.6,force,lower_fx,-0.0002286394010297954 +steady,sr,194,77.6,force,lower_fy,-6.648497947026044e-05 +steady,sr,195,78.0,force,front_fx,-1.2612777027243283e-05 +steady,sr,195,78.0,force,front_fy,3.280134137639834e-07 +steady,sr,195,78.0,force,upper_fx,-0.00022875070862937719 +steady,sr,195,78.0,force,upper_fy,6.58905555610545e-05 +steady,sr,195,78.0,force,lower_fx,-0.00022798855206929147 +steady,sr,195,78.0,force,lower_fy,-6.58932258374989e-05 +steady,sr,196,78.4,force,front_fx,-1.2654465535888448e-05 +steady,sr,196,78.4,force,front_fy,8.422129553764535e-07 +steady,sr,196,78.4,force,upper_fx,-0.00022671330953016877 +steady,sr,196,78.4,force,upper_fy,6.939307786524296e-05 +steady,sr,196,78.4,force,lower_fx,-0.00022571765293832868 +steady,sr,196,78.4,force,lower_fy,-6.821649003541097e-05 +steady,sr,197,78.8,force,front_fx,-1.165747016784735e-05 +steady,sr,197,78.8,force,front_fy,4.716096668744285e-07 +steady,sr,197,78.8,force,upper_fx,-0.00022479234030470252 +steady,sr,197,78.8,force,upper_fy,7.503582310164347e-05 +steady,sr,197,78.8,force,lower_fx,-0.00022386784257832915 +steady,sr,197,78.8,force,lower_fy,-7.3871502536349e-05 +steady,sr,198,79.2,force,front_fx,-1.2738728401018307e-05 +steady,sr,198,79.2,force,front_fy,1.731731771315026e-07 +steady,sr,198,79.2,force,upper_fx,-0.00022594699112232774 +steady,sr,198,79.2,force,upper_fy,7.735282997600734e-05 +steady,sr,198,79.2,force,lower_fx,-0.00022501566854771227 +steady,sr,198,79.2,force,lower_fy,-7.652659405721352e-05 +steady,sr,199,79.6,force,front_fx,-1.4025667042005807e-05 +steady,sr,199,79.6,force,front_fy,4.108543976144574e-07 +steady,sr,199,79.6,force,upper_fx,-0.0002287489187438041 +steady,sr,199,79.6,force,upper_fy,7.105722033884376e-05 +steady,sr,199,79.6,force,lower_fx,-0.00022802117746323347 +steady,sr,199,79.6,force,lower_fy,-7.002360507613048e-05 +steady,sr,0,0.0,alpha,front,0.0 +steady,sr,0,0.0,alpha,upper,-6.0 +steady,sr,0,0.0,alpha,lower,6.0 +steady,sr,1,0.4,alpha,front,0.0 +steady,sr,1,0.4,alpha,upper,-6.0 +steady,sr,1,0.4,alpha,lower,6.0 +steady,sr,2,0.8,alpha,front,0.0 +steady,sr,2,0.8,alpha,upper,-6.0 +steady,sr,2,0.8,alpha,lower,6.0 +steady,sr,3,1.2,alpha,front,0.0 +steady,sr,3,1.2,alpha,upper,-6.0 +steady,sr,3,1.2,alpha,lower,6.0 +steady,sr,4,1.6,alpha,front,0.0 +steady,sr,4,1.6,alpha,upper,-6.0 +steady,sr,4,1.6,alpha,lower,6.0 +steady,sr,5,2.0,alpha,front,0.0 +steady,sr,5,2.0,alpha,upper,-6.0 +steady,sr,5,2.0,alpha,lower,6.0 +steady,sr,6,2.4,alpha,front,0.0 +steady,sr,6,2.4,alpha,upper,-6.0 +steady,sr,6,2.4,alpha,lower,6.0 +steady,sr,7,2.8,alpha,front,0.0 +steady,sr,7,2.8,alpha,upper,-6.0 +steady,sr,7,2.8,alpha,lower,6.0 +steady,sr,8,3.2,alpha,front,0.0 +steady,sr,8,3.2,alpha,upper,-6.0 +steady,sr,8,3.2,alpha,lower,6.0 +steady,sr,9,3.6,alpha,front,0.0 +steady,sr,9,3.6,alpha,upper,-6.0 +steady,sr,9,3.6,alpha,lower,6.0 +steady,sr,10,4.0,alpha,front,0.0 +steady,sr,10,4.0,alpha,upper,-6.0 +steady,sr,10,4.0,alpha,lower,6.0 +steady,sr,11,4.4,alpha,front,0.0 +steady,sr,11,4.4,alpha,upper,-6.0 +steady,sr,11,4.4,alpha,lower,6.0 +steady,sr,12,4.8,alpha,front,0.0 +steady,sr,12,4.8,alpha,upper,-6.0 +steady,sr,12,4.8,alpha,lower,6.0 +steady,sr,13,5.2,alpha,front,0.0 +steady,sr,13,5.2,alpha,upper,-6.0 +steady,sr,13,5.2,alpha,lower,6.0 +steady,sr,14,5.6,alpha,front,0.0 +steady,sr,14,5.6,alpha,upper,-6.0 +steady,sr,14,5.6,alpha,lower,6.0 +steady,sr,15,6.0,alpha,front,0.0 +steady,sr,15,6.0,alpha,upper,-6.0 +steady,sr,15,6.0,alpha,lower,6.0 +steady,sr,16,6.4,alpha,front,0.0 +steady,sr,16,6.4,alpha,upper,-6.0 +steady,sr,16,6.4,alpha,lower,6.0 +steady,sr,17,6.8,alpha,front,0.0 +steady,sr,17,6.8,alpha,upper,-6.0 +steady,sr,17,6.8,alpha,lower,6.0 +steady,sr,18,7.2,alpha,front,0.0 +steady,sr,18,7.2,alpha,upper,-6.0 +steady,sr,18,7.2,alpha,lower,6.0 +steady,sr,19,7.6,alpha,front,0.0 +steady,sr,19,7.6,alpha,upper,-6.0 +steady,sr,19,7.6,alpha,lower,6.0 +steady,sr,20,8.0,alpha,front,0.0 +steady,sr,20,8.0,alpha,upper,-6.0 +steady,sr,20,8.0,alpha,lower,6.0 +steady,sr,21,8.4,alpha,front,0.0 +steady,sr,21,8.4,alpha,upper,-6.0 +steady,sr,21,8.4,alpha,lower,6.0 +steady,sr,22,8.8,alpha,front,0.0 +steady,sr,22,8.8,alpha,upper,-6.0 +steady,sr,22,8.8,alpha,lower,6.0 +steady,sr,23,9.2,alpha,front,0.0 +steady,sr,23,9.2,alpha,upper,-6.0 +steady,sr,23,9.2,alpha,lower,6.0 +steady,sr,24,9.6,alpha,front,0.0 +steady,sr,24,9.6,alpha,upper,-6.0 +steady,sr,24,9.6,alpha,lower,6.0 +steady,sr,25,10.0,alpha,front,0.0 +steady,sr,25,10.0,alpha,upper,-6.0 +steady,sr,25,10.0,alpha,lower,6.0 +steady,sr,26,10.4,alpha,front,0.0 +steady,sr,26,10.4,alpha,upper,-6.0 +steady,sr,26,10.4,alpha,lower,6.0 +steady,sr,27,10.8,alpha,front,0.0 +steady,sr,27,10.8,alpha,upper,-6.0 +steady,sr,27,10.8,alpha,lower,6.0 +steady,sr,28,11.2,alpha,front,0.0 +steady,sr,28,11.2,alpha,upper,-6.0 +steady,sr,28,11.2,alpha,lower,6.0 +steady,sr,29,11.6,alpha,front,0.0 +steady,sr,29,11.6,alpha,upper,-6.0 +steady,sr,29,11.6,alpha,lower,6.0 +steady,sr,30,12.0,alpha,front,0.0 +steady,sr,30,12.0,alpha,upper,-6.0 +steady,sr,30,12.0,alpha,lower,6.0 +steady,sr,31,12.4,alpha,front,0.0 +steady,sr,31,12.4,alpha,upper,-6.0 +steady,sr,31,12.4,alpha,lower,6.0 +steady,sr,32,12.8,alpha,front,0.0 +steady,sr,32,12.8,alpha,upper,-6.0 +steady,sr,32,12.8,alpha,lower,6.0 +steady,sr,33,13.2,alpha,front,0.0 +steady,sr,33,13.2,alpha,upper,-6.0 +steady,sr,33,13.2,alpha,lower,6.0 +steady,sr,34,13.6,alpha,front,0.0 +steady,sr,34,13.6,alpha,upper,-6.0 +steady,sr,34,13.6,alpha,lower,6.0 +steady,sr,35,14.0,alpha,front,0.0 +steady,sr,35,14.0,alpha,upper,-6.0 +steady,sr,35,14.0,alpha,lower,6.0 +steady,sr,36,14.4,alpha,front,0.0 +steady,sr,36,14.4,alpha,upper,-6.0 +steady,sr,36,14.4,alpha,lower,6.0 +steady,sr,37,14.8,alpha,front,0.0 +steady,sr,37,14.8,alpha,upper,-6.0 +steady,sr,37,14.8,alpha,lower,6.0 +steady,sr,38,15.2,alpha,front,0.0 +steady,sr,38,15.2,alpha,upper,-6.0 +steady,sr,38,15.2,alpha,lower,6.0 +steady,sr,39,15.6,alpha,front,0.0 +steady,sr,39,15.6,alpha,upper,-6.0 +steady,sr,39,15.6,alpha,lower,6.0 +steady,sr,40,16.0,alpha,front,0.0 +steady,sr,40,16.0,alpha,upper,-6.0 +steady,sr,40,16.0,alpha,lower,6.0 +steady,sr,41,16.4,alpha,front,0.0 +steady,sr,41,16.4,alpha,upper,-6.0 +steady,sr,41,16.4,alpha,lower,6.0 +steady,sr,42,16.8,alpha,front,0.0 +steady,sr,42,16.8,alpha,upper,-6.0 +steady,sr,42,16.8,alpha,lower,6.0 +steady,sr,43,17.2,alpha,front,0.0 +steady,sr,43,17.2,alpha,upper,-6.0 +steady,sr,43,17.2,alpha,lower,6.0 +steady,sr,44,17.6,alpha,front,0.0 +steady,sr,44,17.6,alpha,upper,-6.0 +steady,sr,44,17.6,alpha,lower,6.0 +steady,sr,45,18.0,alpha,front,0.0 +steady,sr,45,18.0,alpha,upper,-6.0 +steady,sr,45,18.0,alpha,lower,6.0 +steady,sr,46,18.4,alpha,front,0.0 +steady,sr,46,18.4,alpha,upper,-6.0 +steady,sr,46,18.4,alpha,lower,6.0 +steady,sr,47,18.8,alpha,front,0.0 +steady,sr,47,18.8,alpha,upper,-6.0 +steady,sr,47,18.8,alpha,lower,6.0 +steady,sr,48,19.2,alpha,front,0.0 +steady,sr,48,19.2,alpha,upper,-6.0 +steady,sr,48,19.2,alpha,lower,6.0 +steady,sr,49,19.6,alpha,front,0.0 +steady,sr,49,19.6,alpha,upper,-6.0 +steady,sr,49,19.6,alpha,lower,6.0 +steady,sr,50,20.0,alpha,front,0.0 +steady,sr,50,20.0,alpha,upper,-6.0 +steady,sr,50,20.0,alpha,lower,6.0 +steady,sr,51,20.4,alpha,front,0.0 +steady,sr,51,20.4,alpha,upper,-6.0 +steady,sr,51,20.4,alpha,lower,6.0 +steady,sr,52,20.8,alpha,front,0.0 +steady,sr,52,20.8,alpha,upper,-6.0 +steady,sr,52,20.8,alpha,lower,6.0 +steady,sr,53,21.2,alpha,front,0.0 +steady,sr,53,21.2,alpha,upper,-6.0 +steady,sr,53,21.2,alpha,lower,6.0 +steady,sr,54,21.6,alpha,front,0.0 +steady,sr,54,21.6,alpha,upper,-6.0 +steady,sr,54,21.6,alpha,lower,6.0 +steady,sr,55,22.0,alpha,front,0.0 +steady,sr,55,22.0,alpha,upper,-6.0 +steady,sr,55,22.0,alpha,lower,6.0 +steady,sr,56,22.4,alpha,front,0.0 +steady,sr,56,22.4,alpha,upper,-6.0 +steady,sr,56,22.4,alpha,lower,6.0 +steady,sr,57,22.8,alpha,front,0.0 +steady,sr,57,22.8,alpha,upper,-6.0 +steady,sr,57,22.8,alpha,lower,6.0 +steady,sr,58,23.2,alpha,front,0.0 +steady,sr,58,23.2,alpha,upper,-6.0 +steady,sr,58,23.2,alpha,lower,6.0 +steady,sr,59,23.6,alpha,front,0.0 +steady,sr,59,23.6,alpha,upper,-6.0 +steady,sr,59,23.6,alpha,lower,6.0 +steady,sr,60,24.0,alpha,front,0.0 +steady,sr,60,24.0,alpha,upper,-6.0 +steady,sr,60,24.0,alpha,lower,6.0 +steady,sr,61,24.4,alpha,front,0.0 +steady,sr,61,24.4,alpha,upper,-6.0 +steady,sr,61,24.4,alpha,lower,6.0 +steady,sr,62,24.8,alpha,front,0.0 +steady,sr,62,24.8,alpha,upper,-6.0 +steady,sr,62,24.8,alpha,lower,6.0 +steady,sr,63,25.2,alpha,front,0.0 +steady,sr,63,25.2,alpha,upper,-6.0 +steady,sr,63,25.2,alpha,lower,6.0 +steady,sr,64,25.6,alpha,front,0.0 +steady,sr,64,25.6,alpha,upper,-6.0 +steady,sr,64,25.6,alpha,lower,6.0 +steady,sr,65,26.0,alpha,front,0.0 +steady,sr,65,26.0,alpha,upper,-6.0 +steady,sr,65,26.0,alpha,lower,6.0 +steady,sr,66,26.4,alpha,front,0.0 +steady,sr,66,26.4,alpha,upper,-6.0 +steady,sr,66,26.4,alpha,lower,6.0 +steady,sr,67,26.8,alpha,front,0.0 +steady,sr,67,26.8,alpha,upper,-6.0 +steady,sr,67,26.8,alpha,lower,6.0 +steady,sr,68,27.2,alpha,front,0.0 +steady,sr,68,27.2,alpha,upper,-6.0 +steady,sr,68,27.2,alpha,lower,6.0 +steady,sr,69,27.6,alpha,front,0.0 +steady,sr,69,27.6,alpha,upper,-6.0 +steady,sr,69,27.6,alpha,lower,6.0 +steady,sr,70,28.0,alpha,front,0.0 +steady,sr,70,28.0,alpha,upper,-6.0 +steady,sr,70,28.0,alpha,lower,6.0 +steady,sr,71,28.4,alpha,front,0.0 +steady,sr,71,28.4,alpha,upper,-6.0 +steady,sr,71,28.4,alpha,lower,6.0 +steady,sr,72,28.8,alpha,front,0.0 +steady,sr,72,28.8,alpha,upper,-6.0 +steady,sr,72,28.8,alpha,lower,6.0 +steady,sr,73,29.2,alpha,front,0.0 +steady,sr,73,29.2,alpha,upper,-6.0 +steady,sr,73,29.2,alpha,lower,6.0 +steady,sr,74,29.6,alpha,front,0.0 +steady,sr,74,29.6,alpha,upper,-6.0 +steady,sr,74,29.6,alpha,lower,6.0 +steady,sr,75,30.0,alpha,front,0.0 +steady,sr,75,30.0,alpha,upper,-6.0 +steady,sr,75,30.0,alpha,lower,6.0 +steady,sr,76,30.4,alpha,front,0.0 +steady,sr,76,30.4,alpha,upper,-6.0 +steady,sr,76,30.4,alpha,lower,6.0 +steady,sr,77,30.8,alpha,front,0.0 +steady,sr,77,30.8,alpha,upper,-6.0 +steady,sr,77,30.8,alpha,lower,6.0 +steady,sr,78,31.2,alpha,front,0.0 +steady,sr,78,31.2,alpha,upper,-6.0 +steady,sr,78,31.2,alpha,lower,6.0 +steady,sr,79,31.6,alpha,front,0.0 +steady,sr,79,31.6,alpha,upper,-6.0 +steady,sr,79,31.6,alpha,lower,6.0 +steady,sr,80,32.0,alpha,front,0.0 +steady,sr,80,32.0,alpha,upper,-6.0 +steady,sr,80,32.0,alpha,lower,6.0 +steady,sr,81,32.4,alpha,front,0.0 +steady,sr,81,32.4,alpha,upper,-6.0 +steady,sr,81,32.4,alpha,lower,6.0 +steady,sr,82,32.8,alpha,front,0.0 +steady,sr,82,32.8,alpha,upper,-6.0 +steady,sr,82,32.8,alpha,lower,6.0 +steady,sr,83,33.2,alpha,front,0.0 +steady,sr,83,33.2,alpha,upper,-6.0 +steady,sr,83,33.2,alpha,lower,6.0 +steady,sr,84,33.6,alpha,front,0.0 +steady,sr,84,33.6,alpha,upper,-6.0 +steady,sr,84,33.6,alpha,lower,6.0 +steady,sr,85,34.0,alpha,front,0.0 +steady,sr,85,34.0,alpha,upper,-6.0 +steady,sr,85,34.0,alpha,lower,6.0 +steady,sr,86,34.4,alpha,front,0.0 +steady,sr,86,34.4,alpha,upper,-6.0 +steady,sr,86,34.4,alpha,lower,6.0 +steady,sr,87,34.8,alpha,front,0.0 +steady,sr,87,34.8,alpha,upper,-6.0 +steady,sr,87,34.8,alpha,lower,6.0 +steady,sr,88,35.2,alpha,front,0.0 +steady,sr,88,35.2,alpha,upper,-6.0 +steady,sr,88,35.2,alpha,lower,6.0 +steady,sr,89,35.6,alpha,front,0.0 +steady,sr,89,35.6,alpha,upper,-6.0 +steady,sr,89,35.6,alpha,lower,6.0 +steady,sr,90,36.0,alpha,front,0.0 +steady,sr,90,36.0,alpha,upper,-6.0 +steady,sr,90,36.0,alpha,lower,6.0 +steady,sr,91,36.4,alpha,front,0.0 +steady,sr,91,36.4,alpha,upper,-6.0 +steady,sr,91,36.4,alpha,lower,6.0 +steady,sr,92,36.8,alpha,front,0.0 +steady,sr,92,36.8,alpha,upper,-6.0 +steady,sr,92,36.8,alpha,lower,6.0 +steady,sr,93,37.2,alpha,front,0.0 +steady,sr,93,37.2,alpha,upper,-6.0 +steady,sr,93,37.2,alpha,lower,6.0 +steady,sr,94,37.6,alpha,front,0.0 +steady,sr,94,37.6,alpha,upper,-6.0 +steady,sr,94,37.6,alpha,lower,6.0 +steady,sr,95,38.0,alpha,front,0.0 +steady,sr,95,38.0,alpha,upper,-6.0 +steady,sr,95,38.0,alpha,lower,6.0 +steady,sr,96,38.4,alpha,front,0.0 +steady,sr,96,38.4,alpha,upper,-6.0 +steady,sr,96,38.4,alpha,lower,6.0 +steady,sr,97,38.8,alpha,front,0.0 +steady,sr,97,38.8,alpha,upper,-6.0 +steady,sr,97,38.8,alpha,lower,6.0 +steady,sr,98,39.2,alpha,front,0.0 +steady,sr,98,39.2,alpha,upper,-6.0 +steady,sr,98,39.2,alpha,lower,6.0 +steady,sr,99,39.6,alpha,front,0.0 +steady,sr,99,39.6,alpha,upper,-6.0 +steady,sr,99,39.6,alpha,lower,6.0 +steady,sr,100,40.0,alpha,front,0.0 +steady,sr,100,40.0,alpha,upper,-6.0 +steady,sr,100,40.0,alpha,lower,6.0 +steady,sr,101,40.4,alpha,front,0.0 +steady,sr,101,40.4,alpha,upper,-6.0 +steady,sr,101,40.4,alpha,lower,6.0 +steady,sr,102,40.8,alpha,front,0.0 +steady,sr,102,40.8,alpha,upper,-6.0 +steady,sr,102,40.8,alpha,lower,6.0 +steady,sr,103,41.2,alpha,front,0.0 +steady,sr,103,41.2,alpha,upper,-6.0 +steady,sr,103,41.2,alpha,lower,6.0 +steady,sr,104,41.6,alpha,front,0.0 +steady,sr,104,41.6,alpha,upper,-6.0 +steady,sr,104,41.6,alpha,lower,6.0 +steady,sr,105,42.0,alpha,front,0.0 +steady,sr,105,42.0,alpha,upper,-6.0 +steady,sr,105,42.0,alpha,lower,6.0 +steady,sr,106,42.4,alpha,front,0.0 +steady,sr,106,42.4,alpha,upper,-6.0 +steady,sr,106,42.4,alpha,lower,6.0 +steady,sr,107,42.8,alpha,front,0.0 +steady,sr,107,42.8,alpha,upper,-6.0 +steady,sr,107,42.8,alpha,lower,6.0 +steady,sr,108,43.2,alpha,front,0.0 +steady,sr,108,43.2,alpha,upper,-6.0 +steady,sr,108,43.2,alpha,lower,6.0 +steady,sr,109,43.6,alpha,front,0.0 +steady,sr,109,43.6,alpha,upper,-6.0 +steady,sr,109,43.6,alpha,lower,6.0 +steady,sr,110,44.0,alpha,front,0.0 +steady,sr,110,44.0,alpha,upper,-6.0 +steady,sr,110,44.0,alpha,lower,6.0 +steady,sr,111,44.4,alpha,front,0.0 +steady,sr,111,44.4,alpha,upper,-6.0 +steady,sr,111,44.4,alpha,lower,6.0 +steady,sr,112,44.8,alpha,front,0.0 +steady,sr,112,44.8,alpha,upper,-6.0 +steady,sr,112,44.8,alpha,lower,6.0 +steady,sr,113,45.2,alpha,front,0.0 +steady,sr,113,45.2,alpha,upper,-6.0 +steady,sr,113,45.2,alpha,lower,6.0 +steady,sr,114,45.6,alpha,front,0.0 +steady,sr,114,45.6,alpha,upper,-6.0 +steady,sr,114,45.6,alpha,lower,6.0 +steady,sr,115,46.0,alpha,front,0.0 +steady,sr,115,46.0,alpha,upper,-6.0 +steady,sr,115,46.0,alpha,lower,6.0 +steady,sr,116,46.4,alpha,front,0.0 +steady,sr,116,46.4,alpha,upper,-6.0 +steady,sr,116,46.4,alpha,lower,6.0 +steady,sr,117,46.8,alpha,front,0.0 +steady,sr,117,46.8,alpha,upper,-6.0 +steady,sr,117,46.8,alpha,lower,6.0 +steady,sr,118,47.2,alpha,front,0.0 +steady,sr,118,47.2,alpha,upper,-6.0 +steady,sr,118,47.2,alpha,lower,6.0 +steady,sr,119,47.6,alpha,front,0.0 +steady,sr,119,47.6,alpha,upper,-6.0 +steady,sr,119,47.6,alpha,lower,6.0 +steady,sr,120,48.0,alpha,front,0.0 +steady,sr,120,48.0,alpha,upper,-6.0 +steady,sr,120,48.0,alpha,lower,6.0 +steady,sr,121,48.4,alpha,front,0.0 +steady,sr,121,48.4,alpha,upper,-6.0 +steady,sr,121,48.4,alpha,lower,6.0 +steady,sr,122,48.8,alpha,front,0.0 +steady,sr,122,48.8,alpha,upper,-6.0 +steady,sr,122,48.8,alpha,lower,6.0 +steady,sr,123,49.2,alpha,front,0.0 +steady,sr,123,49.2,alpha,upper,-6.0 +steady,sr,123,49.2,alpha,lower,6.0 +steady,sr,124,49.6,alpha,front,0.0 +steady,sr,124,49.6,alpha,upper,-6.0 +steady,sr,124,49.6,alpha,lower,6.0 +steady,sr,125,50.0,alpha,front,0.0 +steady,sr,125,50.0,alpha,upper,-6.0 +steady,sr,125,50.0,alpha,lower,6.0 +steady,sr,126,50.4,alpha,front,0.0 +steady,sr,126,50.4,alpha,upper,-6.0 +steady,sr,126,50.4,alpha,lower,6.0 +steady,sr,127,50.8,alpha,front,0.0 +steady,sr,127,50.8,alpha,upper,-6.0 +steady,sr,127,50.8,alpha,lower,6.0 +steady,sr,128,51.2,alpha,front,0.0 +steady,sr,128,51.2,alpha,upper,-6.0 +steady,sr,128,51.2,alpha,lower,6.0 +steady,sr,129,51.6,alpha,front,0.0 +steady,sr,129,51.6,alpha,upper,-6.0 +steady,sr,129,51.6,alpha,lower,6.0 +steady,sr,130,52.0,alpha,front,0.0 +steady,sr,130,52.0,alpha,upper,-6.0 +steady,sr,130,52.0,alpha,lower,6.0 +steady,sr,131,52.4,alpha,front,0.0 +steady,sr,131,52.4,alpha,upper,-6.0 +steady,sr,131,52.4,alpha,lower,6.0 +steady,sr,132,52.8,alpha,front,0.0 +steady,sr,132,52.8,alpha,upper,-6.0 +steady,sr,132,52.8,alpha,lower,6.0 +steady,sr,133,53.2,alpha,front,0.0 +steady,sr,133,53.2,alpha,upper,-6.0 +steady,sr,133,53.2,alpha,lower,6.0 +steady,sr,134,53.6,alpha,front,0.0 +steady,sr,134,53.6,alpha,upper,-6.0 +steady,sr,134,53.6,alpha,lower,6.0 +steady,sr,135,54.0,alpha,front,0.0 +steady,sr,135,54.0,alpha,upper,-6.0 +steady,sr,135,54.0,alpha,lower,6.0 +steady,sr,136,54.4,alpha,front,0.0 +steady,sr,136,54.4,alpha,upper,-6.0 +steady,sr,136,54.4,alpha,lower,6.0 +steady,sr,137,54.8,alpha,front,0.0 +steady,sr,137,54.8,alpha,upper,-6.0 +steady,sr,137,54.8,alpha,lower,6.0 +steady,sr,138,55.2,alpha,front,0.0 +steady,sr,138,55.2,alpha,upper,-6.0 +steady,sr,138,55.2,alpha,lower,6.0 +steady,sr,139,55.6,alpha,front,0.0 +steady,sr,139,55.6,alpha,upper,-6.0 +steady,sr,139,55.6,alpha,lower,6.0 +steady,sr,140,56.0,alpha,front,0.0 +steady,sr,140,56.0,alpha,upper,-6.0 +steady,sr,140,56.0,alpha,lower,6.0 +steady,sr,141,56.4,alpha,front,0.0 +steady,sr,141,56.4,alpha,upper,-6.0 +steady,sr,141,56.4,alpha,lower,6.0 +steady,sr,142,56.8,alpha,front,0.0 +steady,sr,142,56.8,alpha,upper,-6.0 +steady,sr,142,56.8,alpha,lower,6.0 +steady,sr,143,57.2,alpha,front,0.0 +steady,sr,143,57.2,alpha,upper,-6.0 +steady,sr,143,57.2,alpha,lower,6.0 +steady,sr,144,57.6,alpha,front,0.0 +steady,sr,144,57.6,alpha,upper,-6.0 +steady,sr,144,57.6,alpha,lower,6.0 +steady,sr,145,58.0,alpha,front,0.0 +steady,sr,145,58.0,alpha,upper,-6.0 +steady,sr,145,58.0,alpha,lower,6.0 +steady,sr,146,58.4,alpha,front,0.0 +steady,sr,146,58.4,alpha,upper,-6.0 +steady,sr,146,58.4,alpha,lower,6.0 +steady,sr,147,58.8,alpha,front,0.0 +steady,sr,147,58.8,alpha,upper,-6.0 +steady,sr,147,58.8,alpha,lower,6.0 +steady,sr,148,59.2,alpha,front,0.0 +steady,sr,148,59.2,alpha,upper,-6.0 +steady,sr,148,59.2,alpha,lower,6.0 +steady,sr,149,59.6,alpha,front,0.0 +steady,sr,149,59.6,alpha,upper,-6.0 +steady,sr,149,59.6,alpha,lower,6.0 +steady,sr,150,60.0,alpha,front,0.0 +steady,sr,150,60.0,alpha,upper,-6.0 +steady,sr,150,60.0,alpha,lower,6.0 +steady,sr,151,60.4,alpha,front,0.0 +steady,sr,151,60.4,alpha,upper,-6.0 +steady,sr,151,60.4,alpha,lower,6.0 +steady,sr,152,60.8,alpha,front,0.0 +steady,sr,152,60.8,alpha,upper,-6.0 +steady,sr,152,60.8,alpha,lower,6.0 +steady,sr,153,61.2,alpha,front,0.0 +steady,sr,153,61.2,alpha,upper,-6.0 +steady,sr,153,61.2,alpha,lower,6.0 +steady,sr,154,61.6,alpha,front,0.0 +steady,sr,154,61.6,alpha,upper,-6.0 +steady,sr,154,61.6,alpha,lower,6.0 +steady,sr,155,62.0,alpha,front,0.0 +steady,sr,155,62.0,alpha,upper,-6.0 +steady,sr,155,62.0,alpha,lower,6.0 +steady,sr,156,62.4,alpha,front,0.0 +steady,sr,156,62.4,alpha,upper,-6.0 +steady,sr,156,62.4,alpha,lower,6.0 +steady,sr,157,62.8,alpha,front,0.0 +steady,sr,157,62.8,alpha,upper,-6.0 +steady,sr,157,62.8,alpha,lower,6.0 +steady,sr,158,63.2,alpha,front,0.0 +steady,sr,158,63.2,alpha,upper,-6.0 +steady,sr,158,63.2,alpha,lower,6.0 +steady,sr,159,63.6,alpha,front,0.0 +steady,sr,159,63.6,alpha,upper,-6.0 +steady,sr,159,63.6,alpha,lower,6.0 +steady,sr,160,64.0,alpha,front,0.0 +steady,sr,160,64.0,alpha,upper,-6.0 +steady,sr,160,64.0,alpha,lower,6.0 +steady,sr,161,64.4,alpha,front,0.0 +steady,sr,161,64.4,alpha,upper,-6.0 +steady,sr,161,64.4,alpha,lower,6.0 +steady,sr,162,64.8,alpha,front,0.0 +steady,sr,162,64.8,alpha,upper,-6.0 +steady,sr,162,64.8,alpha,lower,6.0 +steady,sr,163,65.2,alpha,front,0.0 +steady,sr,163,65.2,alpha,upper,-6.0 +steady,sr,163,65.2,alpha,lower,6.0 +steady,sr,164,65.6,alpha,front,0.0 +steady,sr,164,65.6,alpha,upper,-6.0 +steady,sr,164,65.6,alpha,lower,6.0 +steady,sr,165,66.0,alpha,front,0.0 +steady,sr,165,66.0,alpha,upper,-6.0 +steady,sr,165,66.0,alpha,lower,6.0 +steady,sr,166,66.4,alpha,front,0.0 +steady,sr,166,66.4,alpha,upper,-6.0 +steady,sr,166,66.4,alpha,lower,6.0 +steady,sr,167,66.8,alpha,front,0.0 +steady,sr,167,66.8,alpha,upper,-6.0 +steady,sr,167,66.8,alpha,lower,6.0 +steady,sr,168,67.2,alpha,front,0.0 +steady,sr,168,67.2,alpha,upper,-6.0 +steady,sr,168,67.2,alpha,lower,6.0 +steady,sr,169,67.6,alpha,front,0.0 +steady,sr,169,67.6,alpha,upper,-6.0 +steady,sr,169,67.6,alpha,lower,6.0 +steady,sr,170,68.0,alpha,front,0.0 +steady,sr,170,68.0,alpha,upper,-6.0 +steady,sr,170,68.0,alpha,lower,6.0 +steady,sr,171,68.4,alpha,front,0.0 +steady,sr,171,68.4,alpha,upper,-6.0 +steady,sr,171,68.4,alpha,lower,6.0 +steady,sr,172,68.8,alpha,front,0.0 +steady,sr,172,68.8,alpha,upper,-6.0 +steady,sr,172,68.8,alpha,lower,6.0 +steady,sr,173,69.2,alpha,front,0.0 +steady,sr,173,69.2,alpha,upper,-6.0 +steady,sr,173,69.2,alpha,lower,6.0 +steady,sr,174,69.6,alpha,front,0.0 +steady,sr,174,69.6,alpha,upper,-6.0 +steady,sr,174,69.6,alpha,lower,6.0 +steady,sr,175,70.0,alpha,front,0.0 +steady,sr,175,70.0,alpha,upper,-6.0 +steady,sr,175,70.0,alpha,lower,6.0 +steady,sr,176,70.4,alpha,front,0.0 +steady,sr,176,70.4,alpha,upper,-6.0 +steady,sr,176,70.4,alpha,lower,6.0 +steady,sr,177,70.8,alpha,front,0.0 +steady,sr,177,70.8,alpha,upper,-6.0 +steady,sr,177,70.8,alpha,lower,6.0 +steady,sr,178,71.2,alpha,front,0.0 +steady,sr,178,71.2,alpha,upper,-6.0 +steady,sr,178,71.2,alpha,lower,6.0 +steady,sr,179,71.6,alpha,front,0.0 +steady,sr,179,71.6,alpha,upper,-6.0 +steady,sr,179,71.6,alpha,lower,6.0 +steady,sr,180,72.0,alpha,front,0.0 +steady,sr,180,72.0,alpha,upper,-6.0 +steady,sr,180,72.0,alpha,lower,6.0 +steady,sr,181,72.4,alpha,front,0.0 +steady,sr,181,72.4,alpha,upper,-6.0 +steady,sr,181,72.4,alpha,lower,6.0 +steady,sr,182,72.8,alpha,front,0.0 +steady,sr,182,72.8,alpha,upper,-6.0 +steady,sr,182,72.8,alpha,lower,6.0 +steady,sr,183,73.2,alpha,front,0.0 +steady,sr,183,73.2,alpha,upper,-6.0 +steady,sr,183,73.2,alpha,lower,6.0 +steady,sr,184,73.6,alpha,front,0.0 +steady,sr,184,73.6,alpha,upper,-6.0 +steady,sr,184,73.6,alpha,lower,6.0 +steady,sr,185,74.0,alpha,front,0.0 +steady,sr,185,74.0,alpha,upper,-6.0 +steady,sr,185,74.0,alpha,lower,6.0 +steady,sr,186,74.4,alpha,front,0.0 +steady,sr,186,74.4,alpha,upper,-6.0 +steady,sr,186,74.4,alpha,lower,6.0 +steady,sr,187,74.8,alpha,front,0.0 +steady,sr,187,74.8,alpha,upper,-6.0 +steady,sr,187,74.8,alpha,lower,6.0 +steady,sr,188,75.2,alpha,front,0.0 +steady,sr,188,75.2,alpha,upper,-6.0 +steady,sr,188,75.2,alpha,lower,6.0 +steady,sr,189,75.6,alpha,front,0.0 +steady,sr,189,75.6,alpha,upper,-6.0 +steady,sr,189,75.6,alpha,lower,6.0 +steady,sr,190,76.0,alpha,front,0.0 +steady,sr,190,76.0,alpha,upper,-6.0 +steady,sr,190,76.0,alpha,lower,6.0 +steady,sr,191,76.4,alpha,front,0.0 +steady,sr,191,76.4,alpha,upper,-6.0 +steady,sr,191,76.4,alpha,lower,6.0 +steady,sr,192,76.8,alpha,front,0.0 +steady,sr,192,76.8,alpha,upper,-6.0 +steady,sr,192,76.8,alpha,lower,6.0 +steady,sr,193,77.2,alpha,front,0.0 +steady,sr,193,77.2,alpha,upper,-6.0 +steady,sr,193,77.2,alpha,lower,6.0 +steady,sr,194,77.6,alpha,front,0.0 +steady,sr,194,77.6,alpha,upper,-6.0 +steady,sr,194,77.6,alpha,lower,6.0 +steady,sr,195,78.0,alpha,front,0.0 +steady,sr,195,78.0,alpha,upper,-6.0 +steady,sr,195,78.0,alpha,lower,6.0 +steady,sr,196,78.4,alpha,front,0.0 +steady,sr,196,78.4,alpha,upper,-6.0 +steady,sr,196,78.4,alpha,lower,6.0 +steady,sr,197,78.8,alpha,front,0.0 +steady,sr,197,78.8,alpha,upper,-6.0 +steady,sr,197,78.8,alpha,lower,6.0 +steady,sr,198,79.2,alpha,front,0.0 +steady,sr,198,79.2,alpha,upper,-6.0 +steady,sr,198,79.2,alpha,lower,6.0 +steady,sr,199,79.6,alpha,front,0.0 +steady,sr,199,79.6,alpha,upper,-6.0 +steady,sr,199,79.6,alpha,lower,6.0 +steady,sr,0,0.0,omega,front,0.0 +steady,sr,0,0.0,omega,upper,-0.06 +steady,sr,0,0.0,omega,lower,0.06 +steady,sr,1,0.4,omega,front,0.0 +steady,sr,1,0.4,omega,upper,-0.06 +steady,sr,1,0.4,omega,lower,0.06 +steady,sr,2,0.8,omega,front,0.0 +steady,sr,2,0.8,omega,upper,-0.06 +steady,sr,2,0.8,omega,lower,0.06 +steady,sr,3,1.2,omega,front,0.0 +steady,sr,3,1.2,omega,upper,-0.06 +steady,sr,3,1.2,omega,lower,0.06 +steady,sr,4,1.6,omega,front,0.0 +steady,sr,4,1.6,omega,upper,-0.06 +steady,sr,4,1.6,omega,lower,0.06 +steady,sr,5,2.0,omega,front,0.0 +steady,sr,5,2.0,omega,upper,-0.06 +steady,sr,5,2.0,omega,lower,0.06 +steady,sr,6,2.4,omega,front,0.0 +steady,sr,6,2.4,omega,upper,-0.06 +steady,sr,6,2.4,omega,lower,0.06 +steady,sr,7,2.8,omega,front,0.0 +steady,sr,7,2.8,omega,upper,-0.06 +steady,sr,7,2.8,omega,lower,0.06 +steady,sr,8,3.2,omega,front,0.0 +steady,sr,8,3.2,omega,upper,-0.06 +steady,sr,8,3.2,omega,lower,0.06 +steady,sr,9,3.6,omega,front,0.0 +steady,sr,9,3.6,omega,upper,-0.06 +steady,sr,9,3.6,omega,lower,0.06 +steady,sr,10,4.0,omega,front,0.0 +steady,sr,10,4.0,omega,upper,-0.06 +steady,sr,10,4.0,omega,lower,0.06 +steady,sr,11,4.4,omega,front,0.0 +steady,sr,11,4.4,omega,upper,-0.06 +steady,sr,11,4.4,omega,lower,0.06 +steady,sr,12,4.8,omega,front,0.0 +steady,sr,12,4.8,omega,upper,-0.06 +steady,sr,12,4.8,omega,lower,0.06 +steady,sr,13,5.2,omega,front,0.0 +steady,sr,13,5.2,omega,upper,-0.06 +steady,sr,13,5.2,omega,lower,0.06 +steady,sr,14,5.6,omega,front,0.0 +steady,sr,14,5.6,omega,upper,-0.06 +steady,sr,14,5.6,omega,lower,0.06 +steady,sr,15,6.0,omega,front,0.0 +steady,sr,15,6.0,omega,upper,-0.06 +steady,sr,15,6.0,omega,lower,0.06 +steady,sr,16,6.4,omega,front,0.0 +steady,sr,16,6.4,omega,upper,-0.06 +steady,sr,16,6.4,omega,lower,0.06 +steady,sr,17,6.8,omega,front,0.0 +steady,sr,17,6.8,omega,upper,-0.06 +steady,sr,17,6.8,omega,lower,0.06 +steady,sr,18,7.2,omega,front,0.0 +steady,sr,18,7.2,omega,upper,-0.06 +steady,sr,18,7.2,omega,lower,0.06 +steady,sr,19,7.6,omega,front,0.0 +steady,sr,19,7.6,omega,upper,-0.06 +steady,sr,19,7.6,omega,lower,0.06 +steady,sr,20,8.0,omega,front,0.0 +steady,sr,20,8.0,omega,upper,-0.06 +steady,sr,20,8.0,omega,lower,0.06 +steady,sr,21,8.4,omega,front,0.0 +steady,sr,21,8.4,omega,upper,-0.06 +steady,sr,21,8.4,omega,lower,0.06 +steady,sr,22,8.8,omega,front,0.0 +steady,sr,22,8.8,omega,upper,-0.06 +steady,sr,22,8.8,omega,lower,0.06 +steady,sr,23,9.2,omega,front,0.0 +steady,sr,23,9.2,omega,upper,-0.06 +steady,sr,23,9.2,omega,lower,0.06 +steady,sr,24,9.6,omega,front,0.0 +steady,sr,24,9.6,omega,upper,-0.06 +steady,sr,24,9.6,omega,lower,0.06 +steady,sr,25,10.0,omega,front,0.0 +steady,sr,25,10.0,omega,upper,-0.06 +steady,sr,25,10.0,omega,lower,0.06 +steady,sr,26,10.4,omega,front,0.0 +steady,sr,26,10.4,omega,upper,-0.06 +steady,sr,26,10.4,omega,lower,0.06 +steady,sr,27,10.8,omega,front,0.0 +steady,sr,27,10.8,omega,upper,-0.06 +steady,sr,27,10.8,omega,lower,0.06 +steady,sr,28,11.2,omega,front,0.0 +steady,sr,28,11.2,omega,upper,-0.06 +steady,sr,28,11.2,omega,lower,0.06 +steady,sr,29,11.6,omega,front,0.0 +steady,sr,29,11.6,omega,upper,-0.06 +steady,sr,29,11.6,omega,lower,0.06 +steady,sr,30,12.0,omega,front,0.0 +steady,sr,30,12.0,omega,upper,-0.06 +steady,sr,30,12.0,omega,lower,0.06 +steady,sr,31,12.4,omega,front,0.0 +steady,sr,31,12.4,omega,upper,-0.06 +steady,sr,31,12.4,omega,lower,0.06 +steady,sr,32,12.8,omega,front,0.0 +steady,sr,32,12.8,omega,upper,-0.06 +steady,sr,32,12.8,omega,lower,0.06 +steady,sr,33,13.2,omega,front,0.0 +steady,sr,33,13.2,omega,upper,-0.06 +steady,sr,33,13.2,omega,lower,0.06 +steady,sr,34,13.6,omega,front,0.0 +steady,sr,34,13.6,omega,upper,-0.06 +steady,sr,34,13.6,omega,lower,0.06 +steady,sr,35,14.0,omega,front,0.0 +steady,sr,35,14.0,omega,upper,-0.06 +steady,sr,35,14.0,omega,lower,0.06 +steady,sr,36,14.4,omega,front,0.0 +steady,sr,36,14.4,omega,upper,-0.06 +steady,sr,36,14.4,omega,lower,0.06 +steady,sr,37,14.8,omega,front,0.0 +steady,sr,37,14.8,omega,upper,-0.06 +steady,sr,37,14.8,omega,lower,0.06 +steady,sr,38,15.2,omega,front,0.0 +steady,sr,38,15.2,omega,upper,-0.06 +steady,sr,38,15.2,omega,lower,0.06 +steady,sr,39,15.6,omega,front,0.0 +steady,sr,39,15.6,omega,upper,-0.06 +steady,sr,39,15.6,omega,lower,0.06 +steady,sr,40,16.0,omega,front,0.0 +steady,sr,40,16.0,omega,upper,-0.06 +steady,sr,40,16.0,omega,lower,0.06 +steady,sr,41,16.4,omega,front,0.0 +steady,sr,41,16.4,omega,upper,-0.06 +steady,sr,41,16.4,omega,lower,0.06 +steady,sr,42,16.8,omega,front,0.0 +steady,sr,42,16.8,omega,upper,-0.06 +steady,sr,42,16.8,omega,lower,0.06 +steady,sr,43,17.2,omega,front,0.0 +steady,sr,43,17.2,omega,upper,-0.06 +steady,sr,43,17.2,omega,lower,0.06 +steady,sr,44,17.6,omega,front,0.0 +steady,sr,44,17.6,omega,upper,-0.06 +steady,sr,44,17.6,omega,lower,0.06 +steady,sr,45,18.0,omega,front,0.0 +steady,sr,45,18.0,omega,upper,-0.06 +steady,sr,45,18.0,omega,lower,0.06 +steady,sr,46,18.4,omega,front,0.0 +steady,sr,46,18.4,omega,upper,-0.06 +steady,sr,46,18.4,omega,lower,0.06 +steady,sr,47,18.8,omega,front,0.0 +steady,sr,47,18.8,omega,upper,-0.06 +steady,sr,47,18.8,omega,lower,0.06 +steady,sr,48,19.2,omega,front,0.0 +steady,sr,48,19.2,omega,upper,-0.06 +steady,sr,48,19.2,omega,lower,0.06 +steady,sr,49,19.6,omega,front,0.0 +steady,sr,49,19.6,omega,upper,-0.06 +steady,sr,49,19.6,omega,lower,0.06 +steady,sr,50,20.0,omega,front,0.0 +steady,sr,50,20.0,omega,upper,-0.06 +steady,sr,50,20.0,omega,lower,0.06 +steady,sr,51,20.4,omega,front,0.0 +steady,sr,51,20.4,omega,upper,-0.06 +steady,sr,51,20.4,omega,lower,0.06 +steady,sr,52,20.8,omega,front,0.0 +steady,sr,52,20.8,omega,upper,-0.06 +steady,sr,52,20.8,omega,lower,0.06 +steady,sr,53,21.2,omega,front,0.0 +steady,sr,53,21.2,omega,upper,-0.06 +steady,sr,53,21.2,omega,lower,0.06 +steady,sr,54,21.6,omega,front,0.0 +steady,sr,54,21.6,omega,upper,-0.06 +steady,sr,54,21.6,omega,lower,0.06 +steady,sr,55,22.0,omega,front,0.0 +steady,sr,55,22.0,omega,upper,-0.06 +steady,sr,55,22.0,omega,lower,0.06 +steady,sr,56,22.4,omega,front,0.0 +steady,sr,56,22.4,omega,upper,-0.06 +steady,sr,56,22.4,omega,lower,0.06 +steady,sr,57,22.8,omega,front,0.0 +steady,sr,57,22.8,omega,upper,-0.06 +steady,sr,57,22.8,omega,lower,0.06 +steady,sr,58,23.2,omega,front,0.0 +steady,sr,58,23.2,omega,upper,-0.06 +steady,sr,58,23.2,omega,lower,0.06 +steady,sr,59,23.6,omega,front,0.0 +steady,sr,59,23.6,omega,upper,-0.06 +steady,sr,59,23.6,omega,lower,0.06 +steady,sr,60,24.0,omega,front,0.0 +steady,sr,60,24.0,omega,upper,-0.06 +steady,sr,60,24.0,omega,lower,0.06 +steady,sr,61,24.4,omega,front,0.0 +steady,sr,61,24.4,omega,upper,-0.06 +steady,sr,61,24.4,omega,lower,0.06 +steady,sr,62,24.8,omega,front,0.0 +steady,sr,62,24.8,omega,upper,-0.06 +steady,sr,62,24.8,omega,lower,0.06 +steady,sr,63,25.2,omega,front,0.0 +steady,sr,63,25.2,omega,upper,-0.06 +steady,sr,63,25.2,omega,lower,0.06 +steady,sr,64,25.6,omega,front,0.0 +steady,sr,64,25.6,omega,upper,-0.06 +steady,sr,64,25.6,omega,lower,0.06 +steady,sr,65,26.0,omega,front,0.0 +steady,sr,65,26.0,omega,upper,-0.06 +steady,sr,65,26.0,omega,lower,0.06 +steady,sr,66,26.4,omega,front,0.0 +steady,sr,66,26.4,omega,upper,-0.06 +steady,sr,66,26.4,omega,lower,0.06 +steady,sr,67,26.8,omega,front,0.0 +steady,sr,67,26.8,omega,upper,-0.06 +steady,sr,67,26.8,omega,lower,0.06 +steady,sr,68,27.2,omega,front,0.0 +steady,sr,68,27.2,omega,upper,-0.06 +steady,sr,68,27.2,omega,lower,0.06 +steady,sr,69,27.6,omega,front,0.0 +steady,sr,69,27.6,omega,upper,-0.06 +steady,sr,69,27.6,omega,lower,0.06 +steady,sr,70,28.0,omega,front,0.0 +steady,sr,70,28.0,omega,upper,-0.06 +steady,sr,70,28.0,omega,lower,0.06 +steady,sr,71,28.4,omega,front,0.0 +steady,sr,71,28.4,omega,upper,-0.06 +steady,sr,71,28.4,omega,lower,0.06 +steady,sr,72,28.8,omega,front,0.0 +steady,sr,72,28.8,omega,upper,-0.06 +steady,sr,72,28.8,omega,lower,0.06 +steady,sr,73,29.2,omega,front,0.0 +steady,sr,73,29.2,omega,upper,-0.06 +steady,sr,73,29.2,omega,lower,0.06 +steady,sr,74,29.6,omega,front,0.0 +steady,sr,74,29.6,omega,upper,-0.06 +steady,sr,74,29.6,omega,lower,0.06 +steady,sr,75,30.0,omega,front,0.0 +steady,sr,75,30.0,omega,upper,-0.06 +steady,sr,75,30.0,omega,lower,0.06 +steady,sr,76,30.4,omega,front,0.0 +steady,sr,76,30.4,omega,upper,-0.06 +steady,sr,76,30.4,omega,lower,0.06 +steady,sr,77,30.8,omega,front,0.0 +steady,sr,77,30.8,omega,upper,-0.06 +steady,sr,77,30.8,omega,lower,0.06 +steady,sr,78,31.2,omega,front,0.0 +steady,sr,78,31.2,omega,upper,-0.06 +steady,sr,78,31.2,omega,lower,0.06 +steady,sr,79,31.6,omega,front,0.0 +steady,sr,79,31.6,omega,upper,-0.06 +steady,sr,79,31.6,omega,lower,0.06 +steady,sr,80,32.0,omega,front,0.0 +steady,sr,80,32.0,omega,upper,-0.06 +steady,sr,80,32.0,omega,lower,0.06 +steady,sr,81,32.4,omega,front,0.0 +steady,sr,81,32.4,omega,upper,-0.06 +steady,sr,81,32.4,omega,lower,0.06 +steady,sr,82,32.8,omega,front,0.0 +steady,sr,82,32.8,omega,upper,-0.06 +steady,sr,82,32.8,omega,lower,0.06 +steady,sr,83,33.2,omega,front,0.0 +steady,sr,83,33.2,omega,upper,-0.06 +steady,sr,83,33.2,omega,lower,0.06 +steady,sr,84,33.6,omega,front,0.0 +steady,sr,84,33.6,omega,upper,-0.06 +steady,sr,84,33.6,omega,lower,0.06 +steady,sr,85,34.0,omega,front,0.0 +steady,sr,85,34.0,omega,upper,-0.06 +steady,sr,85,34.0,omega,lower,0.06 +steady,sr,86,34.4,omega,front,0.0 +steady,sr,86,34.4,omega,upper,-0.06 +steady,sr,86,34.4,omega,lower,0.06 +steady,sr,87,34.8,omega,front,0.0 +steady,sr,87,34.8,omega,upper,-0.06 +steady,sr,87,34.8,omega,lower,0.06 +steady,sr,88,35.2,omega,front,0.0 +steady,sr,88,35.2,omega,upper,-0.06 +steady,sr,88,35.2,omega,lower,0.06 +steady,sr,89,35.6,omega,front,0.0 +steady,sr,89,35.6,omega,upper,-0.06 +steady,sr,89,35.6,omega,lower,0.06 +steady,sr,90,36.0,omega,front,0.0 +steady,sr,90,36.0,omega,upper,-0.06 +steady,sr,90,36.0,omega,lower,0.06 +steady,sr,91,36.4,omega,front,0.0 +steady,sr,91,36.4,omega,upper,-0.06 +steady,sr,91,36.4,omega,lower,0.06 +steady,sr,92,36.8,omega,front,0.0 +steady,sr,92,36.8,omega,upper,-0.06 +steady,sr,92,36.8,omega,lower,0.06 +steady,sr,93,37.2,omega,front,0.0 +steady,sr,93,37.2,omega,upper,-0.06 +steady,sr,93,37.2,omega,lower,0.06 +steady,sr,94,37.6,omega,front,0.0 +steady,sr,94,37.6,omega,upper,-0.06 +steady,sr,94,37.6,omega,lower,0.06 +steady,sr,95,38.0,omega,front,0.0 +steady,sr,95,38.0,omega,upper,-0.06 +steady,sr,95,38.0,omega,lower,0.06 +steady,sr,96,38.4,omega,front,0.0 +steady,sr,96,38.4,omega,upper,-0.06 +steady,sr,96,38.4,omega,lower,0.06 +steady,sr,97,38.8,omega,front,0.0 +steady,sr,97,38.8,omega,upper,-0.06 +steady,sr,97,38.8,omega,lower,0.06 +steady,sr,98,39.2,omega,front,0.0 +steady,sr,98,39.2,omega,upper,-0.06 +steady,sr,98,39.2,omega,lower,0.06 +steady,sr,99,39.6,omega,front,0.0 +steady,sr,99,39.6,omega,upper,-0.06 +steady,sr,99,39.6,omega,lower,0.06 +steady,sr,100,40.0,omega,front,0.0 +steady,sr,100,40.0,omega,upper,-0.06 +steady,sr,100,40.0,omega,lower,0.06 +steady,sr,101,40.4,omega,front,0.0 +steady,sr,101,40.4,omega,upper,-0.06 +steady,sr,101,40.4,omega,lower,0.06 +steady,sr,102,40.8,omega,front,0.0 +steady,sr,102,40.8,omega,upper,-0.06 +steady,sr,102,40.8,omega,lower,0.06 +steady,sr,103,41.2,omega,front,0.0 +steady,sr,103,41.2,omega,upper,-0.06 +steady,sr,103,41.2,omega,lower,0.06 +steady,sr,104,41.6,omega,front,0.0 +steady,sr,104,41.6,omega,upper,-0.06 +steady,sr,104,41.6,omega,lower,0.06 +steady,sr,105,42.0,omega,front,0.0 +steady,sr,105,42.0,omega,upper,-0.06 +steady,sr,105,42.0,omega,lower,0.06 +steady,sr,106,42.4,omega,front,0.0 +steady,sr,106,42.4,omega,upper,-0.06 +steady,sr,106,42.4,omega,lower,0.06 +steady,sr,107,42.8,omega,front,0.0 +steady,sr,107,42.8,omega,upper,-0.06 +steady,sr,107,42.8,omega,lower,0.06 +steady,sr,108,43.2,omega,front,0.0 +steady,sr,108,43.2,omega,upper,-0.06 +steady,sr,108,43.2,omega,lower,0.06 +steady,sr,109,43.6,omega,front,0.0 +steady,sr,109,43.6,omega,upper,-0.06 +steady,sr,109,43.6,omega,lower,0.06 +steady,sr,110,44.0,omega,front,0.0 +steady,sr,110,44.0,omega,upper,-0.06 +steady,sr,110,44.0,omega,lower,0.06 +steady,sr,111,44.4,omega,front,0.0 +steady,sr,111,44.4,omega,upper,-0.06 +steady,sr,111,44.4,omega,lower,0.06 +steady,sr,112,44.8,omega,front,0.0 +steady,sr,112,44.8,omega,upper,-0.06 +steady,sr,112,44.8,omega,lower,0.06 +steady,sr,113,45.2,omega,front,0.0 +steady,sr,113,45.2,omega,upper,-0.06 +steady,sr,113,45.2,omega,lower,0.06 +steady,sr,114,45.6,omega,front,0.0 +steady,sr,114,45.6,omega,upper,-0.06 +steady,sr,114,45.6,omega,lower,0.06 +steady,sr,115,46.0,omega,front,0.0 +steady,sr,115,46.0,omega,upper,-0.06 +steady,sr,115,46.0,omega,lower,0.06 +steady,sr,116,46.4,omega,front,0.0 +steady,sr,116,46.4,omega,upper,-0.06 +steady,sr,116,46.4,omega,lower,0.06 +steady,sr,117,46.8,omega,front,0.0 +steady,sr,117,46.8,omega,upper,-0.06 +steady,sr,117,46.8,omega,lower,0.06 +steady,sr,118,47.2,omega,front,0.0 +steady,sr,118,47.2,omega,upper,-0.06 +steady,sr,118,47.2,omega,lower,0.06 +steady,sr,119,47.6,omega,front,0.0 +steady,sr,119,47.6,omega,upper,-0.06 +steady,sr,119,47.6,omega,lower,0.06 +steady,sr,120,48.0,omega,front,0.0 +steady,sr,120,48.0,omega,upper,-0.06 +steady,sr,120,48.0,omega,lower,0.06 +steady,sr,121,48.4,omega,front,0.0 +steady,sr,121,48.4,omega,upper,-0.06 +steady,sr,121,48.4,omega,lower,0.06 +steady,sr,122,48.8,omega,front,0.0 +steady,sr,122,48.8,omega,upper,-0.06 +steady,sr,122,48.8,omega,lower,0.06 +steady,sr,123,49.2,omega,front,0.0 +steady,sr,123,49.2,omega,upper,-0.06 +steady,sr,123,49.2,omega,lower,0.06 +steady,sr,124,49.6,omega,front,0.0 +steady,sr,124,49.6,omega,upper,-0.06 +steady,sr,124,49.6,omega,lower,0.06 +steady,sr,125,50.0,omega,front,0.0 +steady,sr,125,50.0,omega,upper,-0.06 +steady,sr,125,50.0,omega,lower,0.06 +steady,sr,126,50.4,omega,front,0.0 +steady,sr,126,50.4,omega,upper,-0.06 +steady,sr,126,50.4,omega,lower,0.06 +steady,sr,127,50.8,omega,front,0.0 +steady,sr,127,50.8,omega,upper,-0.06 +steady,sr,127,50.8,omega,lower,0.06 +steady,sr,128,51.2,omega,front,0.0 +steady,sr,128,51.2,omega,upper,-0.06 +steady,sr,128,51.2,omega,lower,0.06 +steady,sr,129,51.6,omega,front,0.0 +steady,sr,129,51.6,omega,upper,-0.06 +steady,sr,129,51.6,omega,lower,0.06 +steady,sr,130,52.0,omega,front,0.0 +steady,sr,130,52.0,omega,upper,-0.06 +steady,sr,130,52.0,omega,lower,0.06 +steady,sr,131,52.4,omega,front,0.0 +steady,sr,131,52.4,omega,upper,-0.06 +steady,sr,131,52.4,omega,lower,0.06 +steady,sr,132,52.8,omega,front,0.0 +steady,sr,132,52.8,omega,upper,-0.06 +steady,sr,132,52.8,omega,lower,0.06 +steady,sr,133,53.2,omega,front,0.0 +steady,sr,133,53.2,omega,upper,-0.06 +steady,sr,133,53.2,omega,lower,0.06 +steady,sr,134,53.6,omega,front,0.0 +steady,sr,134,53.6,omega,upper,-0.06 +steady,sr,134,53.6,omega,lower,0.06 +steady,sr,135,54.0,omega,front,0.0 +steady,sr,135,54.0,omega,upper,-0.06 +steady,sr,135,54.0,omega,lower,0.06 +steady,sr,136,54.4,omega,front,0.0 +steady,sr,136,54.4,omega,upper,-0.06 +steady,sr,136,54.4,omega,lower,0.06 +steady,sr,137,54.8,omega,front,0.0 +steady,sr,137,54.8,omega,upper,-0.06 +steady,sr,137,54.8,omega,lower,0.06 +steady,sr,138,55.2,omega,front,0.0 +steady,sr,138,55.2,omega,upper,-0.06 +steady,sr,138,55.2,omega,lower,0.06 +steady,sr,139,55.6,omega,front,0.0 +steady,sr,139,55.6,omega,upper,-0.06 +steady,sr,139,55.6,omega,lower,0.06 +steady,sr,140,56.0,omega,front,0.0 +steady,sr,140,56.0,omega,upper,-0.06 +steady,sr,140,56.0,omega,lower,0.06 +steady,sr,141,56.4,omega,front,0.0 +steady,sr,141,56.4,omega,upper,-0.06 +steady,sr,141,56.4,omega,lower,0.06 +steady,sr,142,56.8,omega,front,0.0 +steady,sr,142,56.8,omega,upper,-0.06 +steady,sr,142,56.8,omega,lower,0.06 +steady,sr,143,57.2,omega,front,0.0 +steady,sr,143,57.2,omega,upper,-0.06 +steady,sr,143,57.2,omega,lower,0.06 +steady,sr,144,57.6,omega,front,0.0 +steady,sr,144,57.6,omega,upper,-0.06 +steady,sr,144,57.6,omega,lower,0.06 +steady,sr,145,58.0,omega,front,0.0 +steady,sr,145,58.0,omega,upper,-0.06 +steady,sr,145,58.0,omega,lower,0.06 +steady,sr,146,58.4,omega,front,0.0 +steady,sr,146,58.4,omega,upper,-0.06 +steady,sr,146,58.4,omega,lower,0.06 +steady,sr,147,58.8,omega,front,0.0 +steady,sr,147,58.8,omega,upper,-0.06 +steady,sr,147,58.8,omega,lower,0.06 +steady,sr,148,59.2,omega,front,0.0 +steady,sr,148,59.2,omega,upper,-0.06 +steady,sr,148,59.2,omega,lower,0.06 +steady,sr,149,59.6,omega,front,0.0 +steady,sr,149,59.6,omega,upper,-0.06 +steady,sr,149,59.6,omega,lower,0.06 +steady,sr,150,60.0,omega,front,0.0 +steady,sr,150,60.0,omega,upper,-0.06 +steady,sr,150,60.0,omega,lower,0.06 +steady,sr,151,60.4,omega,front,0.0 +steady,sr,151,60.4,omega,upper,-0.06 +steady,sr,151,60.4,omega,lower,0.06 +steady,sr,152,60.8,omega,front,0.0 +steady,sr,152,60.8,omega,upper,-0.06 +steady,sr,152,60.8,omega,lower,0.06 +steady,sr,153,61.2,omega,front,0.0 +steady,sr,153,61.2,omega,upper,-0.06 +steady,sr,153,61.2,omega,lower,0.06 +steady,sr,154,61.6,omega,front,0.0 +steady,sr,154,61.6,omega,upper,-0.06 +steady,sr,154,61.6,omega,lower,0.06 +steady,sr,155,62.0,omega,front,0.0 +steady,sr,155,62.0,omega,upper,-0.06 +steady,sr,155,62.0,omega,lower,0.06 +steady,sr,156,62.4,omega,front,0.0 +steady,sr,156,62.4,omega,upper,-0.06 +steady,sr,156,62.4,omega,lower,0.06 +steady,sr,157,62.8,omega,front,0.0 +steady,sr,157,62.8,omega,upper,-0.06 +steady,sr,157,62.8,omega,lower,0.06 +steady,sr,158,63.2,omega,front,0.0 +steady,sr,158,63.2,omega,upper,-0.06 +steady,sr,158,63.2,omega,lower,0.06 +steady,sr,159,63.6,omega,front,0.0 +steady,sr,159,63.6,omega,upper,-0.06 +steady,sr,159,63.6,omega,lower,0.06 +steady,sr,160,64.0,omega,front,0.0 +steady,sr,160,64.0,omega,upper,-0.06 +steady,sr,160,64.0,omega,lower,0.06 +steady,sr,161,64.4,omega,front,0.0 +steady,sr,161,64.4,omega,upper,-0.06 +steady,sr,161,64.4,omega,lower,0.06 +steady,sr,162,64.8,omega,front,0.0 +steady,sr,162,64.8,omega,upper,-0.06 +steady,sr,162,64.8,omega,lower,0.06 +steady,sr,163,65.2,omega,front,0.0 +steady,sr,163,65.2,omega,upper,-0.06 +steady,sr,163,65.2,omega,lower,0.06 +steady,sr,164,65.6,omega,front,0.0 +steady,sr,164,65.6,omega,upper,-0.06 +steady,sr,164,65.6,omega,lower,0.06 +steady,sr,165,66.0,omega,front,0.0 +steady,sr,165,66.0,omega,upper,-0.06 +steady,sr,165,66.0,omega,lower,0.06 +steady,sr,166,66.4,omega,front,0.0 +steady,sr,166,66.4,omega,upper,-0.06 +steady,sr,166,66.4,omega,lower,0.06 +steady,sr,167,66.8,omega,front,0.0 +steady,sr,167,66.8,omega,upper,-0.06 +steady,sr,167,66.8,omega,lower,0.06 +steady,sr,168,67.2,omega,front,0.0 +steady,sr,168,67.2,omega,upper,-0.06 +steady,sr,168,67.2,omega,lower,0.06 +steady,sr,169,67.6,omega,front,0.0 +steady,sr,169,67.6,omega,upper,-0.06 +steady,sr,169,67.6,omega,lower,0.06 +steady,sr,170,68.0,omega,front,0.0 +steady,sr,170,68.0,omega,upper,-0.06 +steady,sr,170,68.0,omega,lower,0.06 +steady,sr,171,68.4,omega,front,0.0 +steady,sr,171,68.4,omega,upper,-0.06 +steady,sr,171,68.4,omega,lower,0.06 +steady,sr,172,68.8,omega,front,0.0 +steady,sr,172,68.8,omega,upper,-0.06 +steady,sr,172,68.8,omega,lower,0.06 +steady,sr,173,69.2,omega,front,0.0 +steady,sr,173,69.2,omega,upper,-0.06 +steady,sr,173,69.2,omega,lower,0.06 +steady,sr,174,69.6,omega,front,0.0 +steady,sr,174,69.6,omega,upper,-0.06 +steady,sr,174,69.6,omega,lower,0.06 +steady,sr,175,70.0,omega,front,0.0 +steady,sr,175,70.0,omega,upper,-0.06 +steady,sr,175,70.0,omega,lower,0.06 +steady,sr,176,70.4,omega,front,0.0 +steady,sr,176,70.4,omega,upper,-0.06 +steady,sr,176,70.4,omega,lower,0.06 +steady,sr,177,70.8,omega,front,0.0 +steady,sr,177,70.8,omega,upper,-0.06 +steady,sr,177,70.8,omega,lower,0.06 +steady,sr,178,71.2,omega,front,0.0 +steady,sr,178,71.2,omega,upper,-0.06 +steady,sr,178,71.2,omega,lower,0.06 +steady,sr,179,71.6,omega,front,0.0 +steady,sr,179,71.6,omega,upper,-0.06 +steady,sr,179,71.6,omega,lower,0.06 +steady,sr,180,72.0,omega,front,0.0 +steady,sr,180,72.0,omega,upper,-0.06 +steady,sr,180,72.0,omega,lower,0.06 +steady,sr,181,72.4,omega,front,0.0 +steady,sr,181,72.4,omega,upper,-0.06 +steady,sr,181,72.4,omega,lower,0.06 +steady,sr,182,72.8,omega,front,0.0 +steady,sr,182,72.8,omega,upper,-0.06 +steady,sr,182,72.8,omega,lower,0.06 +steady,sr,183,73.2,omega,front,0.0 +steady,sr,183,73.2,omega,upper,-0.06 +steady,sr,183,73.2,omega,lower,0.06 +steady,sr,184,73.6,omega,front,0.0 +steady,sr,184,73.6,omega,upper,-0.06 +steady,sr,184,73.6,omega,lower,0.06 +steady,sr,185,74.0,omega,front,0.0 +steady,sr,185,74.0,omega,upper,-0.06 +steady,sr,185,74.0,omega,lower,0.06 +steady,sr,186,74.4,omega,front,0.0 +steady,sr,186,74.4,omega,upper,-0.06 +steady,sr,186,74.4,omega,lower,0.06 +steady,sr,187,74.8,omega,front,0.0 +steady,sr,187,74.8,omega,upper,-0.06 +steady,sr,187,74.8,omega,lower,0.06 +steady,sr,188,75.2,omega,front,0.0 +steady,sr,188,75.2,omega,upper,-0.06 +steady,sr,188,75.2,omega,lower,0.06 +steady,sr,189,75.6,omega,front,0.0 +steady,sr,189,75.6,omega,upper,-0.06 +steady,sr,189,75.6,omega,lower,0.06 +steady,sr,190,76.0,omega,front,0.0 +steady,sr,190,76.0,omega,upper,-0.06 +steady,sr,190,76.0,omega,lower,0.06 +steady,sr,191,76.4,omega,front,0.0 +steady,sr,191,76.4,omega,upper,-0.06 +steady,sr,191,76.4,omega,lower,0.06 +steady,sr,192,76.8,omega,front,0.0 +steady,sr,192,76.8,omega,upper,-0.06 +steady,sr,192,76.8,omega,lower,0.06 +steady,sr,193,77.2,omega,front,0.0 +steady,sr,193,77.2,omega,upper,-0.06 +steady,sr,193,77.2,omega,lower,0.06 +steady,sr,194,77.6,omega,front,0.0 +steady,sr,194,77.6,omega,upper,-0.06 +steady,sr,194,77.6,omega,lower,0.06 +steady,sr,195,78.0,omega,front,0.0 +steady,sr,195,78.0,omega,upper,-0.06 +steady,sr,195,78.0,omega,lower,0.06 +steady,sr,196,78.4,omega,front,0.0 +steady,sr,196,78.4,omega,upper,-0.06 +steady,sr,196,78.4,omega,lower,0.06 +steady,sr,197,78.8,omega,front,0.0 +steady,sr,197,78.8,omega,upper,-0.06 +steady,sr,197,78.8,omega,lower,0.06 +steady,sr,198,79.2,omega,front,0.0 +steady,sr,198,79.2,omega,upper,-0.06 +steady,sr,198,79.2,omega,lower,0.06 +steady,sr,199,79.6,omega,front,0.0 +steady,sr,199,79.6,omega,upper,-0.06 +steady,sr,199,79.6,omega,lower,0.06 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_manifest.json b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_manifest.json new file mode 100644 index 0000000..13fca34 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "steady", + "source": "sr", + "input": "/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a6-20260720/telemetry/steady__constant__f-none__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_wide.csv new file mode 100644 index 0000000..cadf00c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +steady,sr,0,0.0,1.1137615442276,-0.014865590259432793,1.2173374891281128,0.00017411468434147537,1.1130485534667969,0.015191499143838882,-1.3616536307381466e-05,7.886225830588955e-06,-0.00024002678401302546,6.19686979916878e-05,-0.00022430680110119283,-4.693047594628297e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,1,0.4,1.1135481595993042,-0.014867562800645828,1.2170906066894531,0.0001810451940400526,1.112844705581665,0.01520621869713068,-9.316642717749346e-06,7.569469744339585e-06,-0.00023323565255850554,7.11561951902695e-05,-0.00021754353656433523,-5.5532713304273784e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,2,0.8,1.1137229204177856,-0.014874965883791447,1.217210292816162,0.00017238642612937838,1.113029956817627,0.015196766704320908,-1.2299340596655384e-05,7.532575182267465e-06,-0.00022851071844343096,8.98192374734208e-05,-0.00021337138605304062,-7.345501944655553e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,3,1.2,1.114343523979187,-0.01487010158598423,1.2178212404251099,0.00017621050938032568,1.1136585474014282,0.015201716683804989,-1.200724727823399e-05,7.710320460319053e-06,-0.0002295006561325863,9.407332981936634e-05,-0.00021461874712258577,-7.827076478861272e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,4,1.6,1.1137641668319702,-0.014873411506414413,1.2172925472259521,0.0001702609151834622,1.1130863428115845,0.015193655155599117,-1.2871063518105075e-05,7.413752427964937e-06,-0.00023526159930042922,8.515757508575916e-05,-0.00022098392946645617,-6.93609326845035e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,5,2.0,1.1136306524276733,-0.014870012179017067,1.2172216176986694,0.00017284184286836535,1.1129618883132935,0.015193003229796886,-1.7006863345159218e-05,7.387348432530416e-06,-0.00024150843091774732,6.610633136006072e-05,-0.0002269056421937421,-5.11752296006307e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,6,2.4,1.1136780977249146,-0.014876275323331356,1.2172706127166748,0.00017151031352113932,1.1130177974700928,0.015194042585790157,-1.265722585230833e-05,6.9005727709736675e-06,-0.00023743843485135585,6.314750498859212e-05,-0.00022323204029817134,-4.867500683758408e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,7,2.8,1.1133475303649902,-0.01487679686397314,1.2168843746185303,0.00016894126019906253,1.1126964092254639,0.015189199708402157,-9.690320439403877e-06,7.2663306127651595e-06,-0.00022937922040000558,7.957879279274493e-05,-0.00021538032160606235,-6.491060048574582e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,8,3.2,1.114145040512085,-0.014871006831526756,1.2176443338394165,0.0001684531889623031,1.1135034561157227,0.015184463001787663,-1.1764396731450688e-05,6.796808520448394e-06,-0.00022808750509284437,9.165102528641e-05,-0.00021385228319559246,-7.728509808657691e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,9,3.6,1.1141878366470337,-0.014870885759592056,1.217704176902771,0.00015946771600283682,1.1135528087615967,0.015172227285802364,-1.2469618923205417e-05,6.961653525650036e-06,-0.0002312420547241345,9.082527685677633e-05,-0.00021756887144874781,-7.576810457976535e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,10,4.0,1.113451361656189,-0.014864194206893444,1.2170348167419434,0.00016200440586544573,1.1128264665603638,0.015172098763287067,-1.654496736591682e-05,6.568516710103722e-06,-0.00023883947869762778,7.733002712484449e-05,-0.00022554364113602787,-6.0255712014622986e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,11,4.4,1.1137144565582275,-0.014876071363687515,1.2173367738723755,0.00015587234520353377,1.1130961179733276,0.015170097351074219,-1.3601413229480386e-05,6.5412559706601314e-06,-0.0002385069092269987,6.222366937436163e-05,-0.00022575038019567728,-4.803939373232424e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,12,4.8,1.1135131120681763,-0.014879681169986725,1.2171093225479126,0.00015965040074661374,1.112900733947754,0.015180893242359161,-1.0104000466526486e-05,6.785530331399059e-06,-0.0002332642616238445,6.828942423453555e-05,-0.0002199462614953518,-5.411928577814251e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,13,5.2,1.113571286201477,-0.014886472374200821,1.2171140909194946,0.00015311413153540343,1.1129673719406128,0.015175844542682171,-1.2033411621814594e-05,6.344203029584605e-06,-0.00022799060388933867,8.59120482346043e-05,-0.00021521683083847165,-7.336816634051502e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,14,5.6,1.1142460107803345,-0.014882765710353851,1.2177692651748657,0.000156433874508366,1.1136488914489746,0.015175951644778252,-1.1672370419546496e-05,6.591329110960942e-06,-0.00022781053849030286,9.23510524444282e-05,-0.00021522320457734168,-7.831665425328538e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,15,6.0,1.1137813329696655,-0.01488465815782547,1.2173503637313843,0.00015490649093408138,1.113196849822998,0.015170062892138958,-1.2811043234250974e-05,6.053053766663652e-06,-0.00023365986999124289,8.560772403143346e-05,-0.00022088861442171037,-7.295945397345349e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,16,6.4,1.113563060760498,-0.014882308430969715,1.2171907424926758,0.0001544046390336007,1.112983226776123,0.015164910815656185,-1.729245559545234e-05,6.228120582818519e-06,-0.00023906677961349487,6.983671482885256e-05,-0.00022736791288480163,-5.216695717535913e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,17,6.8,1.1136353015899658,-0.014886371791362762,1.2172715663909912,0.0001508693676441908,1.1130598783493042,0.01516597718000412,-1.2966576832695864e-05,6.148903139546746e-06,-0.00023688952205702662,6.214181485120207e-05,-0.00022468298266176134,-4.8580393922748044e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,18,7.2,1.1132948398590088,-0.014890952967107296,1.2168855667114258,0.00014446386194322258,1.112727165222168,0.015162204392254353,-9.496291568211745e-06,5.867807885806542e-06,-0.00022916575835552067,7.613941852468997e-05,-0.00021755887428298593,-6.313421908998862e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,19,7.6,1.113992691040039,-0.014884843491017818,1.2175403833389282,0.00014379042841028422,1.1134312152862549,0.015157436951994896,-1.1873865332745481e-05,5.738364961871412e-06,-0.00022754896781407297,8.558361878385767e-05,-0.00021539675071835518,-7.647558231838048e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,20,8.0,1.1141347885131836,-0.014886138029396534,1.2176929712295532,0.00013771795784123242,1.1135821342468262,0.015148243866860867,-1.2546648576972075e-05,5.907588729314739e-06,-0.00022949103731662035,9.019114077091217e-05,-0.0002182753523811698,-7.824971544323489e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,21,8.4,1.1134419441223145,-0.014880462549626827,1.2170568704605103,0.00014072727935854346,1.1128966808319092,0.015147071331739426,-1.5858950064284727e-05,5.762545242760098e-06,-0.00023694995616097003,7.816980360075831e-05,-0.0002248420350952074,-6.528704398078844e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,22,8.8,1.1136677265167236,-0.014890855178236961,1.2173269987106323,0.0001365119096590206,1.1131279468536377,0.01514609344303608,-1.416821305610938e-05,5.637019512505503e-06,-0.00023819581838324666,6.27939443802461e-05,-0.00022673382773064077,-5.1844253903254867e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,23,9.2,1.113486886024475,-0.014895699918270111,1.2171282768249512,0.0001394977152813226,1.1129522323608398,0.015155465342104435,-1.0791812201205175e-05,5.697972937923623e-06,-0.00023350809351541102,6.638821650994942e-05,-0.00021618696337100118,-4.83484473079443e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,24,9.6,1.1134384870529175,-0.014900658279657364,1.2170277833938599,0.00013516214676201344,1.112911581993103,0.015151248313486576,-1.165418143500574e-05,5.408942797657801e-06,-0.00022765921312384307,8.257833542302251e-05,-0.00021658344485331327,-7.026797538856044e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,25,10.0,1.114145278930664,-0.014900241047143936,1.2177109718322754,0.00013569489237852395,1.1136252880096436,0.01515080314129591,-1.1403219104977325e-05,5.772948497906327e-06,-0.00022660855029243976,9.03187392395921e-05,-0.00021588221716228873,-7.805398490745574e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,26,10.4,1.1137900352478027,-0.01489940844476223,1.2173889875411987,0.00013217612286098301,1.1132774353027344,0.01514431368559599,-1.2590641745191533e-05,5.110580787004437e-06,-0.00023171500652097166,8.231520041590557e-05,-0.00022081690258346498,-7.38590897526592e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,27,10.8,1.1135013103485107,-0.014897221699357033,1.217161774635315,0.0001292664819629863,1.1129975318908691,0.015138250775635242,-1.7261325410800055e-05,5.706152478524018e-06,-0.00023861629597377032,6.932715768925846e-05,-0.00022813187388237566,-5.7773726439336315e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,28,11.2,1.1135988235473633,-0.014899671077728271,1.2172763347625732,0.00012891342339571565,1.1131010055541992,0.015140381641685963,-1.3201762158132624e-05,4.9434543143433984e-06,-0.00023641246662009507,6.153884896775708e-05,-0.00022600794909521937,-5.0672901124926284e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,29,11.6,1.1132540702819824,-0.014905900694429874,1.2168974876403809,0.00012399247498251498,1.1127638816833496,0.01513606682419777,-9.526763278699946e-06,4.986492967873346e-06,-0.00022965166135691106,7.301296864170581e-05,-0.0002213008119724691,-6.165077502373606e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,30,12.0,1.113845944404602,-0.014899618923664093,1.2174410820007324,0.0001275648537557572,1.1133629083633423,0.015134718269109726,-1.2136358236602973e-05,5.057175258116331e-06,-0.00022681236441712826,8.650377276353538e-05,-0.0002166560443583876,-7.485016249120235e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,31,12.4,1.1140726804733276,-0.014903171919286251,1.2176681756973267,0.00012055895058438182,1.113600492477417,0.015123715624213219,-1.2074300684616901e-05,5.1196157073718496e-06,-0.00022806790366303176,8.896188228391111e-05,-0.00021872887737117708,-7.834412826923653e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,32,12.8,1.1134353876113892,-0.0148975420743227,1.217081904411316,0.00012384283763822168,1.1129664182662964,0.015124913305044174,-1.5137746231630445e-05,5.735776539950166e-06,-0.0002347273548366502,7.949991413624957e-05,-0.00022649587481282651,-7.093243766576052e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,33,13.2,1.1136176586151123,-0.014908785931766033,1.2173124551773071,0.0001133017212850973,1.1131558418273926,0.015119826421141624,-1.4821386685071047e-05,4.8922420319286175e-06,-0.00023718430020380765,6.311068136710674e-05,-0.00022764975437894464,-5.3108789870748296e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,34,13.6,1.1134610176086426,-0.014912286773324013,1.2171443700790405,0.00011386338883312419,1.1130019426345825,0.01512911356985569,-1.1466040632512886e-05,4.989710760128219e-06,-0.0002335558965569362,6.442455924116075e-05,-0.00022356559929903597,-5.384527685237117e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,35,14.0,1.113330602645874,-0.014919345267117023,1.2169653177261353,0.00010812471009558067,1.1128767728805542,0.015124965459108353,-1.1525560694281012e-05,4.665063897846267e-06,-0.00022765606991015375,7.953467138577253e-05,-0.00021829198522027582,-7.000021287240088e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,36,14.4,1.1140477657318115,-0.014917292632162571,1.2176527976989746,0.00011021588579751551,1.113600730895996,0.01512446254491806,-1.1250393072259612e-05,4.68945836473722e-06,-0.00022625729616265744,8.814976899884641e-05,-0.0002168193313991651,-7.823747728252783e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,37,14.8,1.1137934923171997,-0.014916371554136276,1.2174245119094849,0.00010893798753386363,1.1133500337600708,0.015118756331503391,-1.2311912541917991e-05,4.526757493295008e-06,-0.00023006083210930228,8.561652794014663e-05,-0.00022083519434090704,-7.596413342980668e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,38,15.2,1.1134483814239502,-0.014913498423993587,1.217136025428772,0.00010710657807067037,1.1130114793777466,0.01511151809245348,-1.7084332284866832e-05,4.414384420670103e-06,-0.0002371590817347169,7.059156632749364e-05,-0.0002282093046233058,-6.121111800894141e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,39,15.6,1.1135687828063965,-0.014914672821760178,1.217280387878418,0.00010805876809172332,1.113139271736145,0.015114071778953075,-1.355269705527462e-05,4.338038706919178e-06,-0.00023582327412441373,6.153000867925584e-05,-0.00022590930166188627,-5.1272556447656825e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,40,16.0,1.1132358312606812,-0.014922006987035275,1.2169163227081299,0.00010241371637675911,1.1128121614456177,0.015110286884009838,-9.887991836876608e-06,4.293126039556228e-06,-0.00022956148313824087,7.005008228588849e-05,-0.00022091649589128792,-6.442473386414349e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,41,16.4,1.1137109994888306,-0.014916224405169487,1.2173449993133545,0.00010453166760271415,1.1132928133010864,0.015109571628272533,-1.2153132047387771e-05,4.484804321691627e-06,-0.0002265290531795472,8.396562770940363e-05,-0.0002180087030865252,-7.454158912878484e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,42,16.8,1.114020586013794,-0.014919927343726158,1.2176474332809448,9.779878746485338e-05,1.1136081218719482,0.015101630240678787,-1.1876900316565298e-05,4.242454906489002e-06,-0.00022712690406478941,8.772922592470422e-05,-0.00021912083320785314,-7.924694364191964e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,43,17.2,1.113444209098816,-0.014915474690496922,1.217116355895996,9.966035577235743e-05,1.1130396127700806,0.015100831165909767,-1.4255771020543762e-05,4.2551318983896635e-06,-0.000232947277254425,8.031482138903812e-05,-0.00022504100343212485,-7.151441968744621e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,44,17.6,1.1135754585266113,-0.0149226738139987,1.217296838760376,9.567459346726537e-05,1.1131775379180908,0.015098256058990955,-1.538915603305213e-05,3.9358119465759955e-06,-0.00023661153682041913,6.42551458440721e-05,-0.00022819511650595814,-5.539371704799123e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,45,18.0,1.113441824913025,-0.014928306452929974,1.217161774635315,9.643429075367749e-05,1.113049030303955,0.015104650519788265,-1.2005716598650906e-05,4.388647994346684e-06,-0.00023341886117123067,6.336135265883058e-05,-0.00022506255481857806,-5.4940035624895245e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,46,18.4,1.113244652748108,-0.014932367950677872,1.2169203758239746,9.246854460798204e-05,1.1128555536270142,0.01510319858789444,-1.1507710041769315e-05,4.07787638323498e-06,-0.0002315393794560805,7.251716306200251e-05,-0.00021968282817397267,-6.798501999583095e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,47,18.8,1.1139527559280396,-0.01493300311267376,1.2175966501235962,8.9282140834257e-05,1.113571047782898,0.015099983662366867,-1.1226892638660502e-05,3.7829956909263274e-06,-0.00022569294378627092,8.611477824160829e-05,-0.00021968015062157065,-7.752302917651832e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,48,19.2,1.1137933731079102,-0.014928548596799374,1.217454433441162,8.913149940781295e-05,1.113416314125061,0.015096109360456467,-1.201865597977303e-05,3.869839929393493e-06,-0.00022855447605252266,8.526397868990898e-05,-0.00022146130504552275,-7.760956941638142e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,49,19.6,1.113410472869873,-0.014927767217159271,1.217120885848999,8.575544779887423e-05,1.1130355596542358,0.015087262727320194,-1.6758791389293037e-05,3.7297659218893386e-06,-0.00023559613327961415,7.251380156958476e-05,-0.00022821727907285094,-6.379238038789481e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,50,20.0,1.1135462522506714,-0.01492737140506506,1.2172882556915283,8.829126454656944e-05,1.113176941871643,0.015089931897819042,-1.368953144265106e-05,3.876519713230664e-06,-0.00023525740834884346,6.149645923869684e-05,-0.00022745842579752207,-5.348056947696023e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,51,20.4,1.113226056098938,-0.014935111626982689,1.2169439792633057,8.271550905192271e-05,1.1128621101379395,0.015087130479514599,-1.0315660802007187e-05,3.6812257349083666e-06,-0.0002299638872500509,6.835017120465636e-05,-0.0002226969663752243,-6.026362461852841e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,52,20.8,1.1135865449905396,-0.014930668286979198,1.2172603607177734,8.505120786139742e-05,1.1132287979125977,0.01508758682757616,-1.2211862667754758e-05,4.082639406988164e-06,-0.00022623933909926564,8.180864824680611e-05,-0.00021893858502153307,-7.323902536882088e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,53,21.2,1.113964557647705,-0.014933462254703045,1.2176246643066406,8.019494998734444e-05,1.1136099100112915,0.015080885961651802,-1.1744020412152167e-05,3.442064326009131e-06,-0.00022616989735979587,8.645518391858786e-05,-0.00021947166533209383,-7.787648792145774e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,54,21.6,1.1134605407714844,-0.01493039634078741,1.2171580791473389,8.152487862389535e-05,1.113112449645996,0.015080282464623451,-1.3634731658385135e-05,3.7281995446392102e-06,-0.00023135248920880258,8.118650293909013e-05,-0.0002240680914837867,-7.122076931409538e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,55,22.0,1.113539695739746,-0.014935016632080078,1.2172856330871582,7.780150190228596e-05,1.1131978034973145,0.015078135766088963,-1.549968328617979e-05,3.467237320364802e-06,-0.00023564547882415354,6.508154910989106e-05,-0.00022887437080498785,-5.736920138588175e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,56,22.4,1.1134299039840698,-0.014941513538360596,1.2171845436096191,7.58896567276679e-05,1.1130940914154053,0.01508362963795662,-1.245326166099403e-05,3.5037448924413184e-06,-0.00023310190590564162,6.260953523451462e-05,-0.00022635415371041745,-5.449151649372652e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,57,22.8,1.1131811141967773,-0.014944848604500294,1.2168948650360107,7.37999434932135e-05,1.112845540046692,0.015084108337759972,-1.1520348380145151e-05,3.2332463888451457e-06,-0.00023285174393095076,6.867016782052815e-05,-0.00022104071103967726,-6.690761802019551e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,58,23.2,1.1138592958450317,-0.014945125207304955,1.2175378799438477,7.312132220249623e-05,1.1135318279266357,0.015081027522683144,-1.1358989468135405e-05,3.388604682186269e-06,-0.0002253249695058912,8.391808660235256e-05,-0.00021862186258658767,-7.636346708750352e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,59,23.6,1.1137908697128296,-0.014940988272428513,1.2174760103225708,7.590538007207215e-05,1.1134693622589111,0.015078183263540268,-1.1889650522789452e-05,3.2012433166528353e-06,-0.0002275013248436153,8.488100866088644e-05,-0.00022095580061431974,-7.776914571877569e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,60,24.0,1.113383412361145,-0.014939608983695507,1.2171169519424438,7.295385148609057e-05,1.1130664348602295,0.01506864558905363,-1.6270552805508487e-05,3.320679525131709e-06,-0.00023423245875164866,7.406093936879188e-05,-0.00022809693473391235,-6.692978786304593e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,61,24.4,1.1135309934616089,-0.01493916753679514,1.2172973155975342,7.438788452418521e-05,1.1132179498672485,0.015071654692292213,-1.3734452295466326e-05,3.3229862310690805e-06,-0.00023456809867639095,6.229581049410626e-05,-0.00022833008551970124,-5.3452989959623665e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,62,24.8,1.1132264137268066,-0.014947120100259781,1.216976523399353,6.701084203086793e-05,1.1129190921783447,0.015069280751049519,-1.082050584955141e-05,2.8771619327017106e-06,-0.00022964418167248368,6.661185761913657e-05,-0.00022510586131829768,-6.094516720622778e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,63,25.2,1.113473892211914,-0.014943856745958328,1.2171802520751953,6.718312215525657e-05,1.1131703853607178,0.015069948509335518,-1.2153792340541258e-05,3.1741667498863535e-06,-0.0002262820489704609,7.859987817937508e-05,-0.00021991626999806613,-7.17180737410672e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,64,25.6,1.1139060258865356,-0.014947907999157906,1.2175955772399902,6.204321834957227e-05,1.1136069297790527,0.015064538456499577,-1.1837185411422979e-05,2.976513997055008e-06,-0.00022583427198696882,8.492648339597508e-05,-0.00021954945987090468,-7.831052789697424e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,65,26.0,1.1134809255599976,-0.014943690039217472,1.217195987701416,6.601710629183799e-05,1.1131855249404907,0.015065241605043411,-1.3101853255648166e-05,3.1276340450858697e-06,-0.00023005538969300687,8.188695937860757e-05,-0.00022307051403913647,-7.826824730727822e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,66,26.4,1.1135092973709106,-0.014948239549994469,1.2172725200653076,6.341561675071716e-05,1.1132168769836426,0.015062055550515652,-1.572185465192888e-05,2.7557775865716394e-06,-0.00023479288211092353,6.676295743091032e-05,-0.00022906219237484038,-6.083568587200716e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,67,26.8,1.1134260892868042,-0.014953422360122204,1.2172033786773682,6.340476829791442e-05,1.1131417751312256,0.015067634172737598,-1.2706330380751751e-05,3.1529839361610357e-06,-0.0002330638817511499,6.227087578736246e-05,-0.00022729604097548872,-5.574116585194133e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,68,27.2,1.113136649131775,-0.01495713833719492,1.2168800830841064,5.9873251302633435e-05,1.1128535270690918,0.015067603439092636,-1.1431796338001732e-05,2.820978352247039e-06,-0.00022787527996115386,7.171546167228371e-05,-0.0002222193288616836,-6.577979365829378e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,69,27.6,1.1137675046920776,-0.014957823790609837,1.217475175857544,5.7802433730103076e-05,1.1134905815124512,0.015064889565110207,-1.1441816241131164e-05,3.0839009923511185e-06,-0.00022515069576911628,8.181065641110763e-05,-0.0002195334673160687,-7.532104064011946e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,70,28.0,1.1137770414352417,-0.014953997917473316,1.2174865007400513,5.780564606538974e-05,1.1135047674179077,0.015061241574585438,-1.1764713235606905e-05,2.8391909836500417e-06,-0.0002266966039314866,8.471838373225182e-05,-0.00022263526625465602,-8.193831308744848e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,71,28.4,1.1133677959442139,-0.014951849356293678,1.2171189785003662,5.387565033743158e-05,1.1130977869033813,0.015052877366542816,-1.6053018043749034e-05,2.4959754227893427e-06,-0.00023275415878742933,7.581781392218545e-05,-0.0002280383196193725,-7.011253183009103e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,72,28.8,1.1135212182998657,-0.01495130080729723,1.217308759689331,5.5331616749754176e-05,1.113254189491272,0.015055235475301743,-1.3710947314393707e-05,2.818126176862279e-06,-0.00023398519260808825,6.245340773602948e-05,-0.00022832064132671803,-5.731383498641662e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,73,29.2,1.1132371425628662,-0.01495860144495964,1.2170138359069824,5.179094659979455e-05,1.1129740476608276,0.015054266899824142,-1.1216133316338528e-05,2.6545760647422867e-06,-0.00023049682204145938,6.492805550806224e-05,-0.00022493762662634254,-5.867452273378149e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,74,29.6,1.1133778095245361,-0.01495642215013504,1.2171164751052856,5.440228778752498e-05,1.1131188869476318,0.01505613885819912,-1.2392942153383046e-05,2.672730488484376e-06,-0.0002264753420604393,7.631211337866262e-05,-0.00022098400222603232,-7.112679304555058e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,75,30.0,1.1138523817062378,-0.014959254302084446,1.2175647020339966,5.060188414063305e-05,1.1135934591293335,0.015052773989737034,-1.148040155385388e-05,2.7892203888768563e-06,-0.00022460574109572917,8.38681953609921e-05,-0.00022137085034046322,-7.910910790087655e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,76,30.4,1.1134990453720093,-0.014957432635128498,1.2172359228134155,4.9784597649704665e-05,1.113246202468872,0.015052080154418945,-1.2701586456387304e-05,2.650763235578779e-06,-0.000228817094466649,8.176301344064996e-05,-0.0002235668944194913,-8.056615479290485e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,77,30.8,1.113478183746338,-0.014957801438868046,1.2172609567642212,4.738695497508161e-05,1.1132285594940186,0.015049736946821213,-1.580714524607174e-05,2.575781536506838e-06,-0.00023403730301652104,6.844292511232197e-05,-0.00022743185400031507,-6.107822264311835e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,78,31.2,1.1134283542633057,-0.014963376335799694,1.2172271013259888,4.7709614591440186e-05,1.1131821870803833,0.015053731389343739,-1.2947225513926242e-05,2.47262778430013e-06,-0.00023273281112778932,6.201877113198861e-05,-0.00022798798454459757,-5.356700057745911e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,79,31.6,1.113113284111023,-0.014965006150305271,1.2168844938278198,5.1119808631483465e-05,1.1128699779510498,0.015056606382131577,-1.1511141565279104e-05,2.044646862486843e-06,-0.00022822184837423265,6.947520887479186e-05,-0.00022300108685158193,-6.463589670602232e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,80,32.0,1.1136842966079712,-0.014966905117034912,1.217416524887085,4.927226837025955e-05,1.1134454011917114,0.015052628703415394,-1.16164565042709e-05,2.2808410449215444e-06,-0.00022509229893330485,7.980595546541736e-05,-0.00022017130686435848,-7.437871681759134e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,81,32.4,1.113766074180603,-0.014961781911551952,1.2174917459487915,5.0441543862689286e-05,1.1135309934616089,0.015051765367388725,-1.171649455500301e-05,2.5688323148642667e-06,-0.00022584025282412767,8.347976108780131e-05,-0.00022119790082797408,-7.81732815084979e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,82,32.8,1.1133586168289185,-0.014960318803787231,1.217125654220581,4.4999687816016376e-05,1.1131287813186646,0.015042107552289963,-1.517029340902809e-05,2.4057778773567406e-06,-0.00023144306032918394,7.681980059714988e-05,-0.0002272768906550482,-7.153909973567352e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,83,33.2,1.113513469696045,-0.014958377927541733,1.2173157930374146,4.6944351197453216e-05,1.113285779953003,0.01504519209265709,-1.409690230502747e-05,2.3977172531886026e-06,-0.00023345644876826555,6.359875987982377e-05,-0.00022994707978796214,-5.964626689092256e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,84,33.6,1.1132514476776123,-0.014965607784688473,1.2170528173446655,4.292386438464746e-05,1.113030195236206,0.01504475250840187,-1.1532883945619687e-05,1.9338965557835763e-06,-0.0002305928064743057,6.413236405933276e-05,-0.0002261740737594664,-5.794489698018879e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,85,34.0,1.1132982969284058,-0.014964287169277668,1.2170631885528564,4.3768839532276616e-05,1.1130768060684204,0.01504672970622778,-1.2501634046202525e-05,2.3299855911318446e-06,-0.0002266660303575918,7.438957982230932e-05,-0.00022188510047271848,-6.60316800349392e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,86,34.4,1.1137993335723877,-0.014966797083616257,1.2175370454788208,4.05820355808828e-05,1.1135801076889038,0.015045080333948135,-1.1328594155202154e-05,2.241200490971096e-06,-0.0002248293167212978,8.220218296628445e-05,-0.00022047283709980547,-7.740125147392973e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,87,34.8,1.1135201454162598,-0.01496474351733923,1.217272400856018,4.260802234057337e-05,1.1133050918579102,0.015044454485177994,-1.2317923392402008e-05,2.236921091025579e-06,-0.00022727450414095074,8.180698205251247e-05,-0.00022334407549351454,-7.681841816520318e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,88,35.2,1.1134529113769531,-0.014964180998504162,1.2172460556030273,4.454622103367001e-05,1.1132405996322632,0.01504314411431551,-1.5952073226799257e-05,2.124954335158691e-06,-0.00023314848658628762,6.976502481848001e-05,-0.00022922534844838083,-6.35529650026001e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,89,35.6,1.1134331226348877,-0.014969008974730968,1.2172476053237915,4.396792792249471e-05,1.1132252216339111,0.01504521630704403,-1.332649389951257e-05,2.1444604954012902e-06,-0.00023258522560354322,6.225123070180416e-05,-0.00022850690584164113,-5.753550794906914e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,90,36.0,1.1131024360656738,-0.014970568008720875,1.2168967723846436,4.452514986041933e-05,1.1129013299942017,0.015048175118863583,-1.1391882253519725e-05,2.0220079477439867e-06,-0.00022852412075735629,6.81479214108549e-05,-0.00022431767138186842,-6.459657743107527e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,91,36.4,1.113602638244629,-0.014972405508160591,1.217359185218811,4.034811718156561e-05,1.1134010553359985,0.01504418347030878,-8.9913319243351e-06,2.340331320738187e-06,-0.0002227932563982904,7.949108112370595e-05,-0.00022073369473218918,-7.335527334362268e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,92,36.8,1.1137479543685913,-0.014968004077672958,1.2174938917160034,4.0628114220453426e-05,1.1135491132736206,0.015042668208479881,-1.1666059435810894e-05,1.7929314708453603e-06,-0.0002254932769574225,8.269734826171771e-05,-0.00022128848650027066,-7.817913865437731e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,93,37.2,1.1133583784103394,-0.014966834336519241,1.2171378135681152,3.811130955000408e-05,1.1131659746170044,0.015035484917461872,-1.4696206562803127e-05,1.8856107999454252e-06,-0.00022933066065888852,7.840961188776419e-05,-0.00022633193293586373,-7.324429316213354e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,94,37.6,1.1135050058364868,-0.014965054579079151,1.217322826385498,4.089622598257847e-05,1.1133151054382324,0.0150368120521307,-1.436989987269044e-05,2.0402446807565866e-06,-0.00023295734717976302,6.475437839981169e-05,-0.00022910270490683615,-6.057238351786509e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,95,38.0,1.1132711172103882,-0.014971708878874779,1.217088222503662,3.7673624319722876e-05,1.1130846738815308,0.01503712497651577,-1.193930165754864e-05,1.7972271280086716e-06,-0.0002307274262420833,6.393086368916556e-05,-0.00022693777282256633,-5.75734993617516e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,96,38.4,1.1132315397262573,-0.014971386641263962,1.2170178890228271,3.72521644749213e-05,1.1130481958389282,0.015039198100566864,-1.2355550097709056e-05,1.9515605345077347e-06,-0.00022690703917760402,7.297137926798314e-05,-0.00022315651585813612,-6.848404882475734e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,97,38.8,1.1137443780899048,-0.014974461868405342,1.2175008058547974,3.246908090659417e-05,1.113563060760498,0.015036839060485363,-1.1263593478361145e-05,1.7787216393116978e-06,-0.0002246551011921838,8.05455565568991e-05,-0.00022097479086369276,-7.682372233830392e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,98,39.2,1.113537311553955,-0.014972668141126633,1.2173030376434326,3.246474443585612e-05,1.1133586168289185,0.015035719610750675,-1.2096973478037398e-05,1.6819842585391598e-06,-0.00022667943267151713,8.17059917608276e-05,-0.00022291942150332034,-7.708050543442369e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,99,39.6,1.1134285926818848,-0.01497181411832571,1.2172327041625977,3.280150122009218e-05,1.1132514476776123,0.015033426694571972,-1.5663334124838002e-05,1.7849952200776897e-06,-0.00023222636082209647,7.133323379093781e-05,-0.00022865744540467858,-6.747858424205333e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,100,40.0,1.1134387254714966,-0.01497559156268835,1.217268943786621,3.3777145290514454e-05,1.113263726234436,0.015035700052976608,-1.3335251423995942e-05,1.8264398704559426e-06,-0.00023220032744575292,6.2700011767447e-05,-0.00022872145927976817,-5.8719633670989424e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,101,40.4,1.1131056547164917,-0.014977555721998215,1.2169181108474731,3.439724969211966e-05,1.1129339933395386,0.01503798458725214,-1.1617988093348686e-05,1.6364797374990303e-06,-0.00022886529040988535,6.712073081871495e-05,-0.00022535622701980174,-6.436381954699755e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,102,40.8,1.1135246753692627,-0.01497877761721611,1.217302680015564,2.9917089705122635e-05,1.1133546829223633,0.01503475196659565,-1.1964018995058723e-05,1.6996751810438582e-06,-0.0002252384292660281,7.637045200681314e-05,-0.00022191432071849704,-7.192102930275723e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,103,41.2,1.1137237548828125,-0.014975364319980145,1.2174901962280273,2.94669735012576e-05,1.1135601997375488,0.015033703297376633,-1.1694688510033302e-05,1.9320118553878274e-06,-0.0002251346450066194,8.172667730832472e-05,-0.00022171276214066893,-7.738808926660568e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,104,41.6,1.1133661270141602,-0.014973772689700127,1.2171540260314941,2.7004651201423258e-05,1.1131993532180786,0.015026804991066456,-1.4080534128879663e-05,1.5876883026066935e-06,-0.00022912256827112287,7.831471157260239e-05,-0.0002261683694086969,-7.503206143155694e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,105,42.0,1.1135003566741943,-0.01497170701622963,1.2173259258270264,3.0461418646154925e-05,1.1133372783660889,0.015028711408376694,-1.447075374017004e-05,1.8081226471622358e-06,-0.00023233047977555543,6.635695172008127e-05,-0.00022915619774721563,-6.088816007832065e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,106,42.4,1.1132932901382446,-0.014977443031966686,1.217125654220581,2.935908742074389e-05,1.1131328344345093,0.01503028068691492,-1.2265094483154826e-05,1.405189777869964e-06,-0.00023058090300764889,6.334421050269157e-05,-0.00022847884974908084,-6.099605525378138e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,107,42.8,1.1131811141967773,-0.014977555721998215,1.2169872522354126,3.0237799364840612e-05,1.1130238771438599,0.01503210049122572,-1.2315273124841042e-05,1.6704394738553674e-06,-0.00022717166575603187,7.085628749337047e-05,-0.0002238639135612175,-6.790305633330718e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,108,43.2,1.1136910915374756,-0.014979604631662369,1.2174679040908813,2.8471129553508945e-05,1.1135374307632446,0.015032128430902958,-1.151096512330696e-05,1.6430368532383e-06,-0.00022466055816039443,7.911583088571206e-05,-0.00022151674784254283,-7.553541217930615e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,109,43.6,1.1135516166687012,-0.014978831633925438,1.2173293828964233,2.7653335564536974e-05,1.1133989095687866,0.0150303915143013,-1.1754938896046951e-05,1.516302972959238e-06,-0.00022595909831579775,8.157879346981645e-05,-0.0002229873207397759,-7.833893323550001e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,110,44.0,1.1134114265441895,-0.014976048842072487,1.217224359512329,2.851697354344651e-05,1.1132590770721436,0.015029064379632473,-1.535320006951224e-05,1.7985515796681284e-06,-0.0002314134471816942,7.261826249305159e-05,-0.00022826474742032588,-6.93994079483673e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,111,44.4,1.1134480237960815,-0.014980795793235302,1.217288613319397,2.6448200515005738e-05,1.1132988929748535,0.015029294416308403,-1.3760181900579482e-05,1.827922119446157e-06,-0.00022904184879735112,6.362187559716403e-05,-0.0002291320270160213,-6.056653000996448e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,112,44.8,1.1131190061569214,-0.014980871230363846,1.2169488668441772,2.9058035579510033e-05,1.1129701137542725,0.015034068375825882,-1.16651908683707e-05,1.9736544345505536e-06,-0.00022893505229149014,6.64310937281698e-05,-0.00022688668104819953,-6.195080641191453e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,113,45.2,1.1134523153305054,-0.014983152970671654,1.217248558998108,2.5991583243012428e-05,1.1133064031600952,0.015030443668365479,-1.2054834769514855e-05,1.3408608765530516e-06,-0.00022535929747391492,7.45828147046268e-05,-0.00022290865308605134,-7.181883120210841e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,114,45.6,1.1137001514434814,-0.01497883815318346,1.2174782752990723,2.8220452804816887e-05,1.1135590076446533,0.015030000358819962,-1.174470889964141e-05,1.2917461162942345e-06,-0.00022486559464596212,8.057808736339211e-05,-0.00022194645134732127,-7.79935362515971e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,115,46.0,1.1133755445480347,-0.01497826911509037,1.2171722650527954,2.4381199182244018e-05,1.1132347583770752,0.015022912994027138,-1.361845716019161e-05,1.3792761137665366e-06,-0.00022820057347416878,7.923673547338694e-05,-0.00022508722031489015,-7.633269706275314e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,116,46.4,1.1134936809539795,-0.014976291917264462,1.21732759475708,2.5887335141305812e-05,1.1133521795272827,0.015023920685052872,-1.4774974260944873e-05,1.7361313666697242e-06,-0.0002318882616236806,6.707075226586312e-05,-0.00022873962006997317,-6.445609324146062e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,117,46.8,1.113315463066101,-0.014981931075453758,1.2171621322631836,2.3602910005138256e-05,1.1131798028945923,0.015025271102786064,-1.2641061402973719e-05,1.0573638746791403e-06,-0.0002308751572854817,6.395718082785606e-05,-0.00022804277250543237,-6.035835394868627e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,118,47.2,1.1131442785263062,-0.014983012340962887,1.216967225074768,2.3675816919421777e-05,1.1130115985870361,0.015027379617094994,-1.2459884601412341e-05,1.6587001709922333e-06,-0.0002275888400617987,6.963744817767292e-05,-0.00022469426039606333,-6.662288797087967e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,119,47.6,1.1136376857757568,-0.014984773471951485,1.217430830001831,2.3183310986496508e-05,1.11350679397583,0.015028143301606178,-1.1480569810373709e-05,1.28752697037271e-06,-0.00022462484776042402,7.748586358502507e-05,-0.00022203147818800062,-7.535675831604749e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,120,48.0,1.1135610342025757,-0.014984527602791786,1.2173502445220947,2.1881422071601264e-05,1.1134299039840698,0.015026457607746124,-1.1549893315532245e-05,1.2590356845976203e-06,-0.00022540087229572237,8.085556328296661e-05,-0.00022294458176475018,-7.825930515537038e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,121,48.4,1.1133960485458374,-0.014980820007622242,1.2172166109085083,2.238197521364782e-05,1.1132657527923584,0.015024528838694096,-1.545277700643055e-05,1.1900629033334553e-06,-0.00023059015802573413,7.45190482120961e-05,-0.0002278900210512802,-7.254567026393488e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,122,48.8,1.1134568452835083,-0.014984386041760445,1.2173070907592773,2.0943916752003133e-05,1.1133294105529785,0.015024522319436073,-1.3745513570029289e-05,1.5700846915933653e-06,-0.0002314786979695782,6.420303543563932e-05,-0.00022896731388755143,-6.162476347526535e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,123,49.2,1.113140344619751,-0.014984292909502983,1.216984510421753,2.3579194021294825e-05,1.1130132675170898,0.015028382651507854,-1.1659404663078021e-05,1.262353521269688e-06,-0.0002292848948854953,6.535144348163158e-05,-0.00022723274014424533,-6.312408368103206e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,124,49.6,1.113387942314148,-0.0149857047945261,1.2172013521194458,2.13971270568436e-05,1.1132631301879883,0.015025262720882893,-1.2417399375408422e-05,1.3621804555441486e-06,-0.00022583099780604243,7.313989772228524e-05,-0.00022344836906995624,-7.023120997473598e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,125,50.0,1.1136741638183594,-0.014982705004513264,1.2174668312072754,2.3103786588762887e-05,1.1135503053665161,0.015025404281914234,-1.1689046914398205e-05,1.2224925285408972e-06,-0.00022465437359642237,7.942638330860063e-05,-0.0002234415296697989,-7.763679604977369e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,126,50.4,1.113386869430542,-0.01498141884803772,1.2171927690505981,2.0908926671836525e-05,1.113265037536621,0.01502075046300888,-1.3096641851007007e-05,8.980276220427186e-07,-0.00022722686117049307,7.926568650873378e-05,-0.00022490420087706298,-7.679659756831825e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,127,50.8,1.1134854555130005,-0.014979341998696327,1.2173261642456055,2.09659574466059e-05,1.1133649349212646,0.015020891092717648,-1.4860822375339922e-05,1.1326884532536496e-06,-0.0002313346922164783,6.839101843070239e-05,-0.00022946239914745092,-6.595085142180324e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,128,51.2,1.1133372783660889,-0.014983201399445534,1.2171962261199951,1.94009280676255e-05,1.1132183074951172,0.015023884363472462,-1.2797486306226347e-05,1.018747866510239e-06,-0.00023031927412375808,6.384059088304639e-05,-0.00022877978335600346,-6.1014936363790184e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,129,51.6,1.1131231784820557,-0.014984531328082085,1.2169601917266846,2.1563511836575344e-05,1.1130053997039795,0.015026697888970375,-1.2318070730543695e-05,1.3325862937563215e-06,-0.0002276781597174704,6.842197763035074e-05,-0.00022548073320649564,-6.610900891246274e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,130,52.0,1.1135903596878052,-0.014985369518399239,1.2173964977264404,2.4638211471028626e-05,1.1134753227233887,0.015028314664959908,-1.1588973393372726e-05,1.0772115501822555e-06,-0.0002248285454697907,7.62992785894312e-05,-0.00022257762611843646,-7.766299677314237e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,131,52.4,1.1135669946670532,-0.014984775334596634,1.2173645496368408,2.6509978852118365e-05,1.1134542226791382,0.015026885084807873,-1.1619800716289319e-05,8.094087320387189e-07,-0.00022499795886687934,8.006759162526578e-05,-0.00022301562421489507,-7.79299734858796e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,132,52.8,1.1133824586868286,-0.014981272630393505,1.217207431793213,2.7568528821575455e-05,1.1132745742797852,0.015024615451693535,-1.4817900591879152e-05,1.1169573781444342e-06,-0.0002295588346896693,7.500562787754461e-05,-0.00022776538389734924,-7.329598884098232e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,133,53.2,1.1134650707244873,-0.014983569271862507,1.2173212766647339,2.4175011276383884e-05,1.1133618354797363,0.015023537911474705,-1.3964637219032738e-05,1.345379473605135e-06,-0.00023112513008527458,6.499681330751628e-05,-0.00023002363741397858,-6.425890023820102e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,134,53.6,1.1131627559661865,-0.014984743669629097,1.2170181274414062,2.297565333719831e-05,1.1130602359771729,0.015026377514004707,-1.2054810213157907e-05,9.99161102299695e-07,-0.00022949057165533304,6.487916834885255e-05,-0.00022692681523039937,-6.207614933373407e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,135,54.0,1.113328456878662,-0.014986444264650345,1.2171577215194702,1.9994366084574722e-05,1.1132270097732544,0.01502403523772955,-1.2416488061717246e-05,1.1688448466884438e-06,-0.00022704320144839585,7.069254934322089e-05,-0.000224671617615968,-7.02032120898366e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,136,54.4,1.1136445999145508,-0.01498429849743843,1.2174512147903442,2.2069658371037804e-05,1.1135436296463013,0.015024643391370773,-1.1623404134297743e-05,9.67379151006753e-07,-0.0002246217627543956,7.8627846960444e-05,-0.0002230385725852102,-7.642851414857432e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,137,54.8,1.113395094871521,-0.014983505941927433,1.2172120809555054,2.095312265737448e-05,1.11329984664917,0.015020018443465233,-1.2727889952657279e-05,8.621565825706057e-07,-0.00022639155213255435,7.962003292050213e-05,-0.0002256199368275702,-7.848997483961284e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,138,55.2,1.1134713888168335,-0.014981793239712715,1.2173182964324951,2.1991550966049545e-05,1.1133753061294556,0.015019487589597702,-1.4803759768255986e-05,1.1233267969146254e-06,-0.0002308240655111149,6.982676859479398e-05,-0.0002287351671839133,-6.755953654646873e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,139,55.6,1.1133590936660767,-0.014985647052526474,1.2172231674194336,2.0658750145230442e-05,1.1132618188858032,0.015021548606455326,-1.3007228517381009e-05,7.892308531154413e-07,-0.000230585370445624,6.403036240953952e-05,-0.0002288114483235404,-6.192270666360855e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,140,56.0,1.1131062507629395,-0.014988144859671593,1.216957449913025,1.9114388123853132e-05,1.1130151748657227,0.01502284500747919,-1.23968175103073e-05,1.0631010809447616e-06,-0.00022794425603933632,6.751665205229074e-05,-0.00022633788466919214,-6.596003368031234e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,141,56.4,1.1135363578796387,-0.014989441260695457,1.2173571586608887,1.9309583876747638e-05,1.113444447517395,0.015024217776954174,-1.1769900083891116e-05,7.863827136134205e-07,-0.0002246997901238501,7.5051277235616e-05,-0.00022298448311630636,-6.936439604032785e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,142,56.8,1.1135636568069458,-0.014990094117820263,1.2173724174499512,1.695048740657512e-05,1.1134761571884155,0.015021327883005142,-1.1548801921890117e-05,9.651962500356603e-07,-0.00022484469809569418,7.943838863866404e-05,-0.00022097863256931305,-7.558862853329629e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,143,57.2,1.1133723258972168,-0.014985375106334686,1.2172036170959473,1.8713251847657375e-05,1.1132839918136597,0.015020230785012245,-1.4891425053065177e-05,9.150005553237861e-07,-0.0002287149545736611,7.571107562398538e-05,-0.00022690827609039843,-7.291891961358488e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,144,57.6,1.1134717464447021,-0.014988293871283531,1.2173324823379517,1.622653508093208e-05,1.1133838891983032,0.015017692930996418,-1.3925063285569195e-05,1.2711550425592577e-06,-0.00023090046306606382,6.637944170506671e-05,-0.00022922223433852196,-6.47034466965124e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,145,58.0,1.1131882667541504,-0.014987736940383911,1.2170543670654297,1.839647848100867e-05,1.113105058670044,0.015021673403680325,-1.212935421790462e-05,9.652284234107356e-07,-0.0002295838057762012,6.510801904369146e-05,-0.00022786136833019555,-6.437426782213151e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,146,58.4,1.113277792930603,-0.014990117400884628,1.2171196937561035,1.5253786841640249e-05,1.1131941080093384,0.01501895859837532,-1.2237072951393202e-05,6.890039117024571e-07,-0.00022645413991995156,7.045116217341274e-05,-0.00022490082483273,-6.837043474661186e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,147,58.8,1.1136155128479004,-0.014988208189606667,1.2174313068389893,1.7220143490703776e-05,1.113529086112976,0.01502053253352642,-1.1681197975121904e-05,9.043931186170084e-07,-0.00022461546177510172,7.811595423845574e-05,-0.0002229672099929303,-7.572502363473177e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,148,59.2,1.1134092807769775,-0.014987744390964508,1.217228651046753,1.6218451492022723e-05,1.1133263111114502,0.015017000027000904,-1.2477405107347295e-05,6.79016977755964e-07,-0.00022553946473635733,7.886714593041688e-05,-0.00022051508130971342,-7.742127490928397e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,149,59.6,1.1134589910507202,-0.014986238442361355,1.2173070907592773,1.787366454664152e-05,1.1133784055709839,0.015016245655715466,-1.4963140529289376e-05,3.0082969715294894e-07,-0.0002300800260854885,7.131903112167493e-05,-0.00022830329544376582,-6.920820305822417e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,150,60.0,1.1133774518966675,-0.014989208430051804,1.2172460556030273,1.7850099538918585e-05,1.1133002042770386,0.015017876401543617,-1.3180807400203776e-05,8.361566870007664e-07,-0.00023061853426042944,6.453829701058567e-05,-0.00022866734070703387,-6.27677800366655e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,151,60.4,1.113105058670044,-0.014991926029324532,1.2169644832611084,1.5709787476225756e-05,1.1130287647247314,0.015018172562122345,-1.2446619621186983e-05,6.582450282621721e-07,-0.00022849871311336756,6.840618152637035e-05,-0.00022675716900266707,-6.513018888654187e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,152,60.8,1.1134867668151855,-0.014992333948612213,1.2173196077346802,1.4649532204202842e-05,1.1134123802185059,0.015020469203591347,-1.1862205610668752e-05,7.995100759217166e-07,-0.00022537412587553263,7.357876893365756e-05,-0.00022399118461180478,-7.208592433016747e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,153,61.2,1.1135605573654175,-0.014993958175182343,1.2173784971237183,1.2044289178447798e-05,1.1134839057922363,0.015017788857221603,-1.1196703781024553e-05,7.374794108727656e-07,-0.00022458234161604196,7.879422628320754e-05,-0.00022325580357573926,-7.749079668428749e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,154,61.6,1.1133664846420288,-0.014989696443080902,1.2171999216079712,1.3515311366063543e-05,1.1132919788360596,0.015016484074294567,-1.418691135768313e-05,1.2328522416282794e-06,-0.000228051096200943,7.806816574884579e-05,-0.0002265181246912107,-7.520106737501919e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,155,62.0,1.113478660583496,-0.014990981668233871,1.2173395156860352,1.1789422387664672e-05,1.1134047508239746,0.015014585107564926,-1.4116440070210956e-05,9.523722042104055e-07,-0.00023002648958936334,6.680095248157158e-05,-0.00022892594279255718,-6.54584146104753e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,156,62.4,1.1132205724716187,-0.0149918207898736,1.2170895338058472,1.3030370610067621e-05,1.113146424293518,0.015017474070191383,-1.2360997061477974e-05,6.713029847560392e-07,-0.0002296590682817623,6.523078627651557e-05,-0.00022785220062360168,-6.681038212263957e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,157,62.8,1.1132361888885498,-0.014993350952863693,1.217086672782898,1.242701182491146e-05,1.113165259361267,0.015016262419521809,-1.2606410564330872e-05,9.259820217266679e-07,-0.00022708899632561952,6.977783777983859e-05,-0.0002256005391245708,-6.6511842305772e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,158,63.2,1.1135832071304321,-0.01499174814671278,1.2174090147018433,1.3586167369794566e-05,1.1135129928588867,0.015016107819974422,-1.154496112576453e-05,8.810212648313609e-07,-0.000224652438191697,7.61249684728682e-05,-0.00022417664877139032,-7.428165554301813e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,159,63.6,1.1134212017059326,-0.014990810304880142,1.2172471284866333,1.2194672308396548e-05,1.113350749015808,0.015013588592410088,-1.1155028914799914e-05,7.676488849028829e-07,-0.00022612346219830215,7.908971747383475e-05,-0.00022440119937527925,-7.808403461240232e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,160,64.0,1.11344575881958,-0.014990047551691532,1.217298984527588,1.1060622455261182e-05,1.113375186920166,0.01501159556210041,-1.4958137398934923e-05,1.0020650051956181e-06,-0.00022937715402804315,7.220071711344644e-05,-0.00022760109277442098,-7.028491381788626e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,161,64.4,1.1133983135223389,-0.014992105774581432,1.217273235321045,1.0478966032678727e-05,1.1133277416229248,0.015014645643532276,-1.3459932233672589e-05,7.009392675172421e-07,-0.00023038644576445222,6.51504160487093e-05,-0.00022864846687298268,-6.306209252215922e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,162,64.8,1.1131138801574707,-0.014995157718658447,1.21697998046875,9.258518730348442e-06,1.1130449771881104,0.015016213990747929,-1.24873595268582e-05,5.608920901067904e-07,-0.00022834594710730016,6.643323285970837e-05,-0.0002271737321279943,-6.234450120246038e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,163,65.2,1.113443374633789,-0.014994686469435692,1.2172836065292358,1.1750104931707028e-05,1.1133729219436646,0.015018351376056671,-1.2077615792804863e-05,5.401088856160641e-07,-0.00022564987011719495,7.239799742819741e-05,-0.0002245539944851771,-7.020758494036272e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,164,65.6,1.1135563850402832,-0.014995379373431206,1.217380404472351,1.2067525858583394e-05,1.1134870052337646,0.015017089433968067,-1.143016925198026e-05,7.486856929972419e-07,-0.0002242850314360112,7.810827810317278e-05,-0.00022307957988232374,-7.491320138797164e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,165,66.0,1.1133637428283691,-0.01499080192297697,1.217198371887207,1.496544064139016e-05,1.1132982969284058,0.015015512704849243,-1.3933230547991116e-05,5.250026333669666e-07,-0.00022746123431716114,7.68902973504737e-05,-0.00022646527213510126,-7.592180190840736e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,166,66.4,1.113481879234314,-0.014991678297519684,1.2173457145690918,1.3194619896239601e-05,1.1134178638458252,0.015012801624834538,-1.4080057553655934e-05,5.002195848646807e-07,-0.0002299671759828925,6.819752888986841e-05,-0.00022886291844770312,-6.654840399278328e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,167,66.8,1.1132514476776123,-0.014992312528192997,1.2171263694763184,1.3408714039542247e-05,1.1131867170333862,0.015015902929008007,-1.250841796718305e-05,7.390912060145638e-07,-0.00022938329493626952,6.536185537697747e-05,-0.0002281919150846079,-6.197196489665657e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,168,67.2,1.1132049560546875,-0.014994625002145767,1.217064619064331,1.0191587534791324e-05,1.113141655921936,0.015014933422207832,-1.2968481314601377e-05,5.459129397422657e-07,-0.00022716261446475983,6.865170871606097e-05,-0.0002261284680571407,-6.762249540770426e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,169,67.6,1.1135551929473877,-0.01499384269118309,1.2173866033554077,1.0231501619273331e-05,1.1134929656982422,0.015015479177236557,-1.1568010449991561e-05,6.382314268194023e-07,-0.00022372201783582568,7.616373477503657e-05,-0.00022349078790284693,-7.42187476134859e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,170,68.0,1.113431453704834,-0.014992944896221161,1.2172616720199585,1.123953734349925e-05,1.1133705377578735,0.015014066360890865,-1.2015326319669839e-05,6.720318310726725e-07,-0.00022290089691523463,7.850822294130921e-05,-0.00022392887331079692,-7.745299080852419e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,171,68.4,1.1134343147277832,-0.014990909025073051,1.2172855138778687,1.2305628843023442e-05,1.1133745908737183,0.015011833049356937,-1.4601644579670392e-05,7.83036227858247e-07,-0.0002289537515025586,7.308885687962174e-05,-0.0002277174062328413,-7.145221024984494e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,172,68.8,1.1134179830551147,-0.014991670846939087,1.2172932624816895,1.304622128373012e-05,1.1133594512939453,0.015014474280178547,-1.3403656339505687e-05,6.461834232140973e-07,-0.0002291274577146396,6.665486580459401e-05,-0.00022882591292727739,-6.311335164355114e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,173,69.2,1.1131261587142944,-0.014995752833783627,1.2170016765594482,1.0919153282884508e-05,1.1130690574645996,0.015015183947980404,-1.2452966984710656e-05,6.582928335774341e-07,-0.00022871320834383368,6.508324440801516e-05,-0.00022750085918232799,-6.195264722919092e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,174,69.6,1.1134002208709717,-0.014994633384048939,1.2172505855560303,1.3940085409558378e-05,1.1133440732955933,0.015018386766314507,-1.2311220416449942e-05,8.829351259009854e-07,-0.00022575513867195696,7.149754674173892e-05,-0.00022481619089376181,-6.990062684053555e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,175,70.0,1.1135449409484863,-0.014996775425970554,1.2173763513565063,1.3620381650980562e-05,1.1134895086288452,0.015016117133200169,-1.15114989966969e-05,6.288866529757797e-07,-0.0002243929193355143,7.746763003524393e-05,-0.00022342774900607765,-7.666397868888453e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,176,70.4,1.1133590936660767,-0.014992643147706985,1.2171987295150757,1.4968582036090083e-05,1.1133086681365967,0.01501386146992445,-1.3418911294138525e-05,6.962161478440976e-07,-0.00022695650113746524,7.700831338297576e-05,-0.00022552740119863302,-7.63231873861514e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,177,70.8,1.1134798526763916,-0.014993331395089626,1.2173446416854858,1.0933069461316336e-05,1.1134271621704102,0.0150102898478508,-1.4157863006403204e-05,5.688951887350413e-07,-0.00022991326113697141,6.890322401886806e-05,-0.00022930779960006475,-6.894313992233947e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,178,71.2,1.1132802963256836,-0.014994651079177856,1.2171591520309448,8.800317118584644e-06,1.1132280826568604,0.015012397430837154,-1.2751404028676916e-05,6.705377018079162e-07,-0.00022959487978368998,6.512405525427312e-05,-0.00022835435811430216,-6.18870762991719e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,179,71.6,1.113179087638855,-0.014996732585132122,1.217047095298767,6.127707820269279e-06,1.1131291389465332,0.015011446550488472,-1.2648286428884603e-05,2.418231019873929e-07,-0.00022766366600990295,6.632112490478903e-05,-0.0002264357899548486,-7.089341670507565e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,180,72.0,1.113520622253418,-0.014997010119259357,1.2173646688461304,5.09070878251805e-06,1.1134686470031738,0.015011931769549847,-1.1930600521736778e-05,5.376639933274419e-07,-0.0002253123529953882,7.462997018592432e-05,-0.00022391355014406145,-7.306933548534289e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,181,72.4,1.1134414672851562,-0.014995494857430458,1.2172744274139404,6.370136816258309e-06,1.1133884191513062,0.015011677518486977,-1.1566412467800546e-05,6.161520786918118e-07,-0.00022475705191027373,7.835183350834996e-05,-0.0002239866298623383,-7.667338650207967e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,182,72.8,1.1134212017059326,-0.014994285069406033,1.2172741889953613,6.254369964153739e-06,1.1133686304092407,0.015008785761892796,-1.4572954569302965e-05,5.707895525119966e-07,-0.00022827931388746947,7.373672269750386e-05,-0.00022729687043465674,-7.291176007129252e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,183,73.2,1.1134341955184937,-0.01499467995017767,1.2173103094100952,8.161122423189227e-06,1.1133816242218018,0.015011786483228207,-1.3461826711136382e-05,9.530389775136427e-07,-0.0002298775943927467,6.676928023807704e-05,-0.00022860309400130063,-6.548427336383611e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,184,73.6,1.1131449937820435,-0.014997555874288082,1.2170250415802002,8.132190487231128e-06,1.1130955219268799,0.015012740157544613,-1.2645621609408408e-05,5.054472467236337e-07,-0.00022860884200781584,6.614077574340627e-05,-0.00022800115402787924,-6.556551670655608e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,185,74.0,1.1133604049682617,-0.01499700453132391,1.2172189950942993,1.1180146429978777e-05,1.113310694694519,0.015015126205980778,-1.233649436471751e-05,5.189888270251686e-07,-0.00022627238649874926,7.032256689853966e-05,-0.0002255481667816639,-6.982075137784705e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,186,74.4,1.113534688949585,-0.014998133294284344,1.217373251914978,9.72229645412881e-06,1.1134856939315796,0.015013725496828556,-1.1642192475846969e-05,6.873830216136412e-07,-0.00022429449018090963,7.58541573304683e-05,-0.00022367660130839795,-7.583419210277498e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,187,74.8,1.1133627891540527,-0.01499481312930584,1.217203974723816,9.732292710395996e-06,1.113313913345337,0.015012264251708984,-1.3077092262392398e-05,5.009704864278319e-07,-0.00022634092601947486,7.771255332045257e-05,-0.00022061918571125716,-7.618388190167025e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,188,75.2,1.1134775876998901,-0.014993986114859581,1.2173444032669067,7.549237125203945e-06,1.1134318113327026,0.01501032430678606,-1.4130645467957947e-05,5.0804811735361e-07,-0.0002282031055074185,7.103141979314387e-05,-0.00022881563927512616,-6.942384061403573e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,189,75.6,1.1133116483688354,-0.014995317906141281,1.2171905040740967,7.005661245784722e-06,1.113263726234436,0.015011179260909557,-1.2924533621117007e-05,3.3295435741820256e-07,-0.0002295701706316322,6.534497515531257e-05,-0.00022865035862196237,-6.454076356021687e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,190,76.0,1.1131669282913208,-0.01499549113214016,1.2170387506484985,8.239599083026405e-06,1.1131198406219482,0.015012937597930431,-1.3028151442995295e-05,4.784740212926408e-07,-0.0002277485327795148,6.734728231094778e-05,-0.00022681760310661048,-6.67725398670882e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,191,76.4,1.113491177558899,-0.014996387995779514,1.217340350151062,9.68315544014331e-06,1.1134463548660278,0.01501340139657259,-1.1849135262309574e-05,5.677542276316672e-07,-0.00022523316147271544,7.316632400033996e-05,-0.00022422462643589824,-7.287682819878682e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,192,76.8,1.1134456396102905,-0.014994111843407154,1.2172846794128418,1.2445276297512464e-05,1.1134017705917358,0.015013842843472958,-1.1694147360685747e-05,6.57208602206083e-07,-0.00022491419804282486,7.762561290292069e-05,-0.00022381845337804407,-7.683108560740948e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,193,77.2,1.1134049892425537,-0.014993315562605858,1.2172613143920898,1.188662281492725e-05,1.1133661270141602,0.015010381117463112,-1.42044918902684e-05,3.7493242643904523e-07,-0.000227058058953844,7.539726357208565e-05,-0.000227203534450382,-7.308163912966847e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,194,77.6,1.1134440898895264,-0.014994028955698013,1.2173265218734741,1.2894307474198285e-05,1.1134068965911865,0.01501252967864275,-1.353251082036877e-05,4.6411062726292585e-07,-0.00022944975353311747,6.741427932865918e-05,-0.0002286394010297954,-6.648497947026044e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,195,78.0,1.113166332244873,-0.014997717924416065,1.2170509099960327,1.1357103176123928e-05,1.1131274700164795,0.015012848190963268,-1.2612777027243283e-05,3.280134137639834e-07,-0.00022875070862937719,6.58905555610545e-05,-0.00022798855206929147,-6.58932258374989e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,196,78.4,1.1133209466934204,-0.014998013153672218,1.2171897888183594,1.0935796126432251e-05,1.1132845878601074,0.015014490112662315,-1.2654465535888448e-05,8.422129553764535e-07,-0.00022671330953016877,6.939307786524296e-05,-0.00022571765293832868,-6.821649003541097e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,197,78.8,1.1135200262069702,-0.014999879524111748,1.2173640727996826,8.214528861572035e-06,1.113480806350708,0.015012787654995918,-1.165747016784735e-05,4.716096668744285e-07,-0.00022479234030470252,7.503582310164347e-05,-0.00022386784257832915,-7.3871502536349e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,198,79.2,1.1133601665496826,-0.014997225254774094,1.217207908630371,7.697388355154544e-06,1.1133266687393188,0.015010062605142593,-1.2738728401018307e-05,1.731731771315026e-07,-0.00022594699112232774,7.735282997600734e-05,-0.00022501566854771227,-7.652659405721352e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 +steady,sr,199,79.6,1.113468885421753,-0.014996192418038845,1.2173380851745605,5.547278760786867e-06,1.1134369373321533,0.015007654204964638,-1.4025667042005807e-05,4.108543976144574e-07,-0.0002287489187438041,7.105722033884376e-05,-0.00022802117746323347,-7.002360507613048e-05,0.0,-6.0,6.0,0.0,-0.06,0.06 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_long.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_long.csv new file mode 100644 index 0000000..0db6680 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +steady,target,0,0.0,velocity,upper_ux,1.1360431909561157 +steady,target,0,0.0,velocity,upper_uy,-6.069301161915064e-05 +steady,target,0,0.0,velocity,center_ux,1.1645539999008179 +steady,target,0,0.0,velocity,center_uy,-2.349157881553765e-07 +steady,target,0,0.0,velocity,lower_ux,1.1360430717468262 +steady,target,0,0.0,velocity,lower_uy,6.0079586546635255e-05 +steady,target,1,0.4,velocity,upper_ux,1.1360433101654053 +steady,target,1,0.4,velocity,upper_uy,-6.040649168426171e-05 +steady,target,1,0.4,velocity,center_ux,1.1645541191101074 +steady,target,1,0.4,velocity,center_uy,-1.4980265916619828e-07 +steady,target,1,0.4,velocity,lower_ux,1.1360431909561157 +steady,target,1,0.4,velocity,lower_uy,5.999155837344006e-05 +steady,target,2,0.8,velocity,upper_ux,1.1360454559326172 +steady,target,2,0.8,velocity,upper_uy,-6.0142643633298576e-05 +steady,target,2,0.8,velocity,center_ux,1.1645541191101074 +steady,target,2,0.8,velocity,center_uy,1.3026001610683124e-08 +steady,target,2,0.8,velocity,lower_ux,1.1360440254211426 +steady,target,2,0.8,velocity,lower_uy,5.9906873502768576e-05 +steady,target,3,1.2,velocity,upper_ux,1.1360454559326172 +steady,target,3,1.2,velocity,upper_uy,-6.0092195781180635e-05 +steady,target,3,1.2,velocity,center_ux,1.1645541191101074 +steady,target,3,1.2,velocity,center_uy,-2.018932718783617e-07 +steady,target,3,1.2,velocity,lower_ux,1.1360434293746948 +steady,target,3,1.2,velocity,lower_uy,6.030806980561465e-05 +steady,target,4,1.6,velocity,upper_ux,1.1360434293746948 +steady,target,4,1.6,velocity,upper_uy,-6.05615132371895e-05 +steady,target,4,1.6,velocity,center_ux,1.1645541191101074 +steady,target,4,1.6,velocity,center_uy,-2.491708528395975e-07 +steady,target,4,1.6,velocity,lower_ux,1.1360433101654053 +steady,target,4,1.6,velocity,lower_uy,6.034489706507884e-05 +steady,target,5,2.0,velocity,upper_ux,1.1360431909561157 +steady,target,5,2.0,velocity,upper_uy,-6.065537309041247e-05 +steady,target,5,2.0,velocity,center_ux,1.1645541191101074 +steady,target,5,2.0,velocity,center_uy,-1.1309966652106596e-07 +steady,target,5,2.0,velocity,lower_ux,1.1360431909561157 +steady,target,5,2.0,velocity,lower_uy,6.052618846297264e-05 +steady,target,6,2.4,velocity,upper_ux,1.1360431909561157 +steady,target,6,2.4,velocity,upper_uy,-6.074534758226946e-05 +steady,target,6,2.4,velocity,center_ux,1.1645539999008179 +steady,target,6,2.4,velocity,center_uy,-3.771812728814439e-08 +steady,target,6,2.4,velocity,lower_ux,1.1360430717468262 +steady,target,6,2.4,velocity,lower_uy,6.05615641688928e-05 +steady,target,7,2.8,velocity,upper_ux,1.1360431909561157 +steady,target,7,2.8,velocity,upper_uy,-6.050430238246918e-05 +steady,target,7,2.8,velocity,center_ux,1.1645539999008179 +steady,target,7,2.8,velocity,center_uy,2.765416873273807e-08 +steady,target,7,2.8,velocity,lower_ux,1.1360430717468262 +steady,target,7,2.8,velocity,lower_uy,6.0608042986132205e-05 +steady,target,8,3.2,velocity,upper_ux,1.1360433101654053 +steady,target,8,3.2,velocity,upper_uy,-6.0686124925268814e-05 +steady,target,8,3.2,velocity,center_ux,1.1645541191101074 +steady,target,8,3.2,velocity,center_uy,1.6125588331306062e-07 +steady,target,8,3.2,velocity,lower_ux,1.1360431909561157 +steady,target,8,3.2,velocity,lower_uy,6.035928163328208e-05 +steady,target,9,3.6,velocity,upper_ux,1.1360454559326172 +steady,target,9,3.6,velocity,upper_uy,-6.061003659851849e-05 +steady,target,9,3.6,velocity,center_ux,1.1645541191101074 +steady,target,9,3.6,velocity,center_uy,-4.279208809521151e-08 +steady,target,9,3.6,velocity,lower_ux,1.1360433101654053 +steady,target,9,3.6,velocity,lower_uy,6.017985288053751e-05 +steady,target,10,4.0,velocity,upper_ux,1.1360454559326172 +steady,target,10,4.0,velocity,upper_uy,-6.073986514820717e-05 +steady,target,10,4.0,velocity,center_ux,1.164554238319397 +steady,target,10,4.0,velocity,center_uy,2.7986024520032515e-07 +steady,target,10,4.0,velocity,lower_ux,1.1360433101654053 +steady,target,10,4.0,velocity,lower_uy,6.036718696122989e-05 +steady,target,11,4.4,velocity,upper_ux,1.1360454559326172 +steady,target,11,4.4,velocity,upper_uy,-6.058522922103293e-05 +steady,target,11,4.4,velocity,center_ux,1.1645541191101074 +steady,target,11,4.4,velocity,center_uy,2.699783294701774e-07 +steady,target,11,4.4,velocity,lower_ux,1.1360433101654053 +steady,target,11,4.4,velocity,lower_uy,6.016475163050927e-05 +steady,target,12,4.8,velocity,upper_ux,1.1360433101654053 +steady,target,12,4.8,velocity,upper_uy,-6.055221820133738e-05 +steady,target,12,4.8,velocity,center_ux,1.1645541191101074 +steady,target,12,4.8,velocity,center_uy,4.4350745298515903e-08 +steady,target,12,4.8,velocity,lower_ux,1.1360431909561157 +steady,target,12,4.8,velocity,lower_uy,6.0159218264743686e-05 +steady,target,13,5.2,velocity,upper_ux,1.1360433101654053 +steady,target,13,5.2,velocity,upper_uy,-6.070997551432811e-05 +steady,target,13,5.2,velocity,center_ux,1.1645539999008179 +steady,target,13,5.2,velocity,center_uy,-3.429951789257757e-07 +steady,target,13,5.2,velocity,lower_ux,1.1360431909561157 +steady,target,13,5.2,velocity,lower_uy,6.0399881476769224e-05 +steady,target,14,5.6,velocity,upper_ux,1.1360431909561157 +steady,target,14,5.6,velocity,upper_uy,-6.09630806138739e-05 +steady,target,14,5.6,velocity,center_ux,1.1645539999008179 +steady,target,14,5.6,velocity,center_uy,-3.7674371355933545e-07 +steady,target,14,5.6,velocity,lower_ux,1.1360431909561157 +steady,target,14,5.6,velocity,lower_uy,6.029620271874592e-05 +steady,target,15,6.0,velocity,upper_ux,1.1360433101654053 +steady,target,15,6.0,velocity,upper_uy,-6.0851267335237935e-05 +steady,target,15,6.0,velocity,center_ux,1.1645541191101074 +steady,target,15,6.0,velocity,center_uy,-5.82433983709052e-07 +steady,target,15,6.0,velocity,lower_ux,1.1360431909561157 +steady,target,15,6.0,velocity,lower_uy,6.022924208082259e-05 +steady,target,16,6.4,velocity,upper_ux,1.1360453367233276 +steady,target,16,6.4,velocity,upper_uy,-6.1000086134299636e-05 +steady,target,16,6.4,velocity,center_ux,1.1645541191101074 +steady,target,16,6.4,velocity,center_uy,-4.5133245407669165e-07 +steady,target,16,6.4,velocity,lower_ux,1.136043667793274 +steady,target,16,6.4,velocity,lower_uy,6.038951687514782e-05 +steady,target,17,6.8,velocity,upper_ux,1.1360454559326172 +steady,target,17,6.8,velocity,upper_uy,-6.112260598456487e-05 +steady,target,17,6.8,velocity,center_ux,1.1645541191101074 +steady,target,17,6.8,velocity,center_uy,-2.3628744827419723e-07 +steady,target,17,6.8,velocity,lower_ux,1.1360453367233276 +steady,target,17,6.8,velocity,lower_uy,6.0540092817973346e-05 +steady,target,18,7.2,velocity,upper_ux,1.1360454559326172 +steady,target,18,7.2,velocity,upper_uy,-6.100592509028502e-05 +steady,target,18,7.2,velocity,center_ux,1.1645541191101074 +steady,target,18,7.2,velocity,center_uy,-4.04591418146083e-07 +steady,target,18,7.2,velocity,lower_ux,1.1360433101654053 +steady,target,18,7.2,velocity,lower_uy,6.080770253902301e-05 +steady,target,19,7.6,velocity,upper_ux,1.1360433101654053 +steady,target,19,7.6,velocity,upper_uy,-6.071158350096084e-05 +steady,target,19,7.6,velocity,center_ux,1.1645541191101074 +steady,target,19,7.6,velocity,center_uy,-2.7269649649497296e-07 +steady,target,19,7.6,velocity,lower_ux,1.1360431909561157 +steady,target,19,7.6,velocity,lower_uy,6.080421735532582e-05 +steady,target,20,8.0,velocity,upper_ux,1.1360433101654053 +steady,target,20,8.0,velocity,upper_uy,-6.073112308513373e-05 +steady,target,20,8.0,velocity,center_ux,1.1645539999008179 +steady,target,20,8.0,velocity,center_uy,-2.423149965125049e-07 +steady,target,20,8.0,velocity,lower_ux,1.1360431909561157 +steady,target,20,8.0,velocity,lower_uy,6.096361539675854e-05 +steady,target,21,8.4,velocity,upper_ux,1.1360431909561157 +steady,target,21,8.4,velocity,upper_uy,-6.080834646127187e-05 +steady,target,21,8.4,velocity,center_ux,1.1645539999008179 +steady,target,21,8.4,velocity,center_uy,-1.7601050217308511e-07 +steady,target,21,8.4,velocity,lower_ux,1.1360431909561157 +steady,target,21,8.4,velocity,lower_uy,6.0511774790938944e-05 +steady,target,22,8.8,velocity,upper_ux,1.1360445022583008 +steady,target,22,8.8,velocity,upper_uy,-6.070379458833486e-05 +steady,target,22,8.8,velocity,center_ux,1.1645541191101074 +steady,target,22,8.8,velocity,center_uy,-8.231712911310751e-08 +steady,target,22,8.8,velocity,lower_ux,1.1360431909561157 +steady,target,22,8.8,velocity,lower_uy,6.0086367739131674e-05 +steady,target,23,9.2,velocity,upper_ux,1.1360454559326172 +steady,target,23,9.2,velocity,upper_uy,-6.0487956943688914e-05 +steady,target,23,9.2,velocity,center_ux,1.1645541191101074 +steady,target,23,9.2,velocity,center_uy,-1.802328881694848e-07 +steady,target,23,9.2,velocity,lower_ux,1.136043906211853 +steady,target,23,9.2,velocity,lower_uy,6.0219899751245975e-05 +steady,target,24,9.6,velocity,upper_ux,1.1360455751419067 +steady,target,24,9.6,velocity,upper_uy,-6.0512098571052775e-05 +steady,target,24,9.6,velocity,center_ux,1.1645547151565552 +steady,target,24,9.6,velocity,center_uy,-2.50518922939591e-07 +steady,target,24,9.6,velocity,lower_ux,1.1360454559326172 +steady,target,24,9.6,velocity,lower_uy,6.0400780057534575e-05 +steady,target,25,10.0,velocity,upper_ux,1.1360454559326172 +steady,target,25,10.0,velocity,upper_uy,-6.071371171856299e-05 +steady,target,25,10.0,velocity,center_ux,1.1645547151565552 +steady,target,25,10.0,velocity,center_uy,-1.404000755655943e-07 +steady,target,25,10.0,velocity,lower_ux,1.1360433101654053 +steady,target,25,10.0,velocity,lower_uy,6.067900903872214e-05 +steady,target,26,10.4,velocity,upper_ux,1.1360433101654053 +steady,target,26,10.4,velocity,upper_uy,-6.0882215620949864e-05 +steady,target,26,10.4,velocity,center_ux,1.1645541191101074 +steady,target,26,10.4,velocity,center_uy,-2.062576811567851e-07 +steady,target,26,10.4,velocity,lower_ux,1.1360431909561157 +steady,target,26,10.4,velocity,lower_uy,6.0547859902726486e-05 +steady,target,27,10.8,velocity,upper_ux,1.1360433101654053 +steady,target,27,10.8,velocity,upper_uy,-6.107732042437419e-05 +steady,target,27,10.8,velocity,center_ux,1.1645541191101074 +steady,target,27,10.8,velocity,center_uy,-5.108570348966168e-07 +steady,target,27,10.8,velocity,lower_ux,1.1360431909561157 +steady,target,27,10.8,velocity,lower_uy,6.062956163077615e-05 +steady,target,28,11.2,velocity,upper_ux,1.1360431909561157 +steady,target,28,11.2,velocity,upper_uy,-6.095368735259399e-05 +steady,target,28,11.2,velocity,center_ux,1.1645541191101074 +steady,target,28,11.2,velocity,center_uy,-4.642597843940166e-07 +steady,target,28,11.2,velocity,lower_ux,1.1360430717468262 +steady,target,28,11.2,velocity,lower_uy,6.0744579968741164e-05 +steady,target,29,11.6,velocity,upper_ux,1.1360433101654053 +steady,target,29,11.6,velocity,upper_uy,-6.105590728111565e-05 +steady,target,29,11.6,velocity,center_ux,1.1645541191101074 +steady,target,29,11.6,velocity,center_uy,-3.838658528820815e-07 +steady,target,29,11.6,velocity,lower_ux,1.1360430717468262 +steady,target,29,11.6,velocity,lower_uy,6.0900227254023775e-05 +steady,target,30,12.0,velocity,upper_ux,1.136045217514038 +steady,target,30,12.0,velocity,upper_uy,-6.148425745777786e-05 +steady,target,30,12.0,velocity,center_ux,1.1645541191101074 +steady,target,30,12.0,velocity,center_uy,-7.923969036482958e-08 +steady,target,30,12.0,velocity,lower_ux,1.1360431909561157 +steady,target,30,12.0,velocity,lower_uy,6.114930874900892e-05 +steady,target,31,12.4,velocity,upper_ux,1.1360454559326172 +steady,target,31,12.4,velocity,upper_uy,-6.172284338390455e-05 +steady,target,31,12.4,velocity,center_ux,1.1645541191101074 +steady,target,31,12.4,velocity,center_uy,1.1873111560589678e-07 +steady,target,31,12.4,velocity,lower_ux,1.1360431909561157 +steady,target,31,12.4,velocity,lower_uy,6.0941871197428554e-05 +steady,target,32,12.8,velocity,upper_ux,1.1360450983047485 +steady,target,32,12.8,velocity,upper_uy,-6.153012509457767e-05 +steady,target,32,12.8,velocity,center_ux,1.1645541191101074 +steady,target,32,12.8,velocity,center_uy,2.1285610785071185e-07 +steady,target,32,12.8,velocity,lower_ux,1.1360433101654053 +steady,target,32,12.8,velocity,lower_uy,6.085305358283222e-05 +steady,target,33,13.2,velocity,upper_ux,1.1360433101654053 +steady,target,33,13.2,velocity,upper_uy,-6.11031282460317e-05 +steady,target,33,13.2,velocity,center_ux,1.1645541191101074 +steady,target,33,13.2,velocity,center_uy,1.209984503702799e-07 +steady,target,33,13.2,velocity,lower_ux,1.1360433101654053 +steady,target,33,13.2,velocity,lower_uy,6.0991216741967946e-05 +steady,target,34,13.6,velocity,upper_ux,1.1360431909561157 +steady,target,34,13.6,velocity,upper_uy,-6.094122363720089e-05 +steady,target,34,13.6,velocity,center_ux,1.1645541191101074 +steady,target,34,13.6,velocity,center_uy,3.045323069272854e-07 +steady,target,34,13.6,velocity,lower_ux,1.1360431909561157 +steady,target,34,13.6,velocity,lower_uy,6.084865890443325e-05 +steady,target,35,14.0,velocity,upper_ux,1.1360431909561157 +steady,target,35,14.0,velocity,upper_uy,-6.0470407333923504e-05 +steady,target,35,14.0,velocity,center_ux,1.1645539999008179 +steady,target,35,14.0,velocity,center_uy,2.262013794052109e-07 +steady,target,35,14.0,velocity,lower_ux,1.1360431909561157 +steady,target,35,14.0,velocity,lower_uy,6.0513360949698836e-05 +steady,target,36,14.4,velocity,upper_ux,1.1360431909561157 +steady,target,36,14.4,velocity,upper_uy,-6.023498281138018e-05 +steady,target,36,14.4,velocity,center_ux,1.1645541191101074 +steady,target,36,14.4,velocity,center_uy,-1.0880597756113275e-07 +steady,target,36,14.4,velocity,lower_ux,1.1360430717468262 +steady,target,36,14.4,velocity,lower_uy,6.051714444765821e-05 +steady,target,37,14.8,velocity,upper_ux,1.1360431909561157 +steady,target,37,14.8,velocity,upper_uy,-6.017530904500745e-05 +steady,target,37,14.8,velocity,center_ux,1.1645541191101074 +steady,target,37,14.8,velocity,center_uy,-2.1569604768956196e-07 +steady,target,37,14.8,velocity,lower_ux,1.1360431909561157 +steady,target,37,14.8,velocity,lower_uy,6.057512655388564e-05 +steady,target,38,15.2,velocity,upper_ux,1.1360433101654053 +steady,target,38,15.2,velocity,upper_uy,-6.022593515808694e-05 +steady,target,38,15.2,velocity,center_ux,1.1645541191101074 +steady,target,38,15.2,velocity,center_uy,-1.8287420289198053e-07 +steady,target,38,15.2,velocity,lower_ux,1.1360431909561157 +steady,target,38,15.2,velocity,lower_uy,6.059910083422437e-05 +steady,target,39,15.6,velocity,upper_ux,1.136045217514038 +steady,target,39,15.6,velocity,upper_uy,-6.0657392168650404e-05 +steady,target,39,15.6,velocity,center_ux,1.1645547151565552 +steady,target,39,15.6,velocity,center_uy,-2.398349181476078e-07 +steady,target,39,15.6,velocity,lower_ux,1.1360433101654053 +steady,target,39,15.6,velocity,lower_uy,6.055985068087466e-05 +steady,target,40,16.0,velocity,upper_ux,1.1360433101654053 +steady,target,40,16.0,velocity,upper_uy,-6.0839622165076435e-05 +steady,target,40,16.0,velocity,center_ux,1.1645547151565552 +steady,target,40,16.0,velocity,center_uy,1.943962644190833e-07 +steady,target,40,16.0,velocity,lower_ux,1.1360433101654053 +steady,target,40,16.0,velocity,lower_uy,6.032743112882599e-05 +steady,target,41,16.4,velocity,upper_ux,1.1360433101654053 +steady,target,41,16.4,velocity,upper_uy,-6.087211295380257e-05 +steady,target,41,16.4,velocity,center_ux,1.1645541191101074 +steady,target,41,16.4,velocity,center_uy,1.5631317751285678e-07 +steady,target,41,16.4,velocity,lower_ux,1.1360431909561157 +steady,target,41,16.4,velocity,lower_uy,6.05797758908011e-05 +steady,target,42,16.8,velocity,upper_ux,1.1360431909561157 +steady,target,42,16.8,velocity,upper_uy,-6.077745638322085e-05 +steady,target,42,16.8,velocity,center_ux,1.1645541191101074 +steady,target,42,16.8,velocity,center_uy,-1.885018718894571e-07 +steady,target,42,16.8,velocity,lower_ux,1.1360431909561157 +steady,target,42,16.8,velocity,lower_uy,6.0863039834657684e-05 +steady,target,43,17.2,velocity,upper_ux,1.1360431909561157 +steady,target,43,17.2,velocity,upper_uy,-6.085353379603475e-05 +steady,target,43,17.2,velocity,center_ux,1.1645541191101074 +steady,target,43,17.2,velocity,center_uy,-2.773624174778888e-08 +steady,target,43,17.2,velocity,lower_ux,1.1360431909561157 +steady,target,43,17.2,velocity,lower_uy,6.073349140933715e-05 +steady,target,44,17.6,velocity,upper_ux,1.1360433101654053 +steady,target,44,17.6,velocity,upper_uy,-6.061832755221985e-05 +steady,target,44,17.6,velocity,center_ux,1.1645541191101074 +steady,target,44,17.6,velocity,center_uy,3.3958349465734727e-09 +steady,target,44,17.6,velocity,lower_ux,1.1360431909561157 +steady,target,44,17.6,velocity,lower_uy,6.0656228015432134e-05 +steady,target,45,18.0,velocity,upper_ux,1.1360454559326172 +steady,target,45,18.0,velocity,upper_uy,-6.051602395018563e-05 +steady,target,45,18.0,velocity,center_ux,1.1645541191101074 +steady,target,45,18.0,velocity,center_uy,2.686283417929758e-10 +steady,target,45,18.0,velocity,lower_ux,1.1360433101654053 +steady,target,45,18.0,velocity,lower_uy,6.059039878891781e-05 +steady,target,46,18.4,velocity,upper_ux,1.1360454559326172 +steady,target,46,18.4,velocity,upper_uy,-6.06615976721514e-05 +steady,target,46,18.4,velocity,center_ux,1.1645541191101074 +steady,target,46,18.4,velocity,center_uy,1.0835093888772462e-07 +steady,target,46,18.4,velocity,lower_ux,1.1360433101654053 +steady,target,46,18.4,velocity,lower_uy,6.073565236874856e-05 +steady,target,47,18.8,velocity,upper_ux,1.1360454559326172 +steady,target,47,18.8,velocity,upper_uy,-6.066752757760696e-05 +steady,target,47,18.8,velocity,center_ux,1.1645547151565552 +steady,target,47,18.8,velocity,center_uy,-6.412927433530058e-08 +steady,target,47,18.8,velocity,lower_ux,1.1360433101654053 +steady,target,47,18.8,velocity,lower_uy,6.1032947996864095e-05 +steady,target,48,19.2,velocity,upper_ux,1.1360433101654053 +steady,target,48,19.2,velocity,upper_uy,-6.0807549743913114e-05 +steady,target,48,19.2,velocity,center_ux,1.1645541191101074 +steady,target,48,19.2,velocity,center_uy,-1.5284749466104586e-08 +steady,target,48,19.2,velocity,lower_ux,1.1360431909561157 +steady,target,48,19.2,velocity,lower_uy,6.111897528171539e-05 +steady,target,49,19.6,velocity,upper_ux,1.1360431909561157 +steady,target,49,19.6,velocity,upper_uy,-6.062804095563479e-05 +steady,target,49,19.6,velocity,center_ux,1.1645541191101074 +steady,target,49,19.6,velocity,center_uy,7.785317990283147e-08 +steady,target,49,19.6,velocity,lower_ux,1.1360430717468262 +steady,target,49,19.6,velocity,lower_uy,6.114577990956604e-05 +steady,target,50,20.0,velocity,upper_ux,1.1360431909561157 +steady,target,50,20.0,velocity,upper_uy,-6.045024929335341e-05 +steady,target,50,20.0,velocity,center_ux,1.1645541191101074 +steady,target,50,20.0,velocity,center_uy,3.512657542614761e-08 +steady,target,50,20.0,velocity,lower_ux,1.1360430717468262 +steady,target,50,20.0,velocity,lower_uy,6.106684304540977e-05 +steady,target,51,20.4,velocity,upper_ux,1.1360431909561157 +steady,target,51,20.4,velocity,upper_uy,-6.06450776103884e-05 +steady,target,51,20.4,velocity,center_ux,1.1645541191101074 +steady,target,51,20.4,velocity,center_uy,2.8764043591422706e-08 +steady,target,51,20.4,velocity,lower_ux,1.1360430717468262 +steady,target,51,20.4,velocity,lower_uy,6.130544352345169e-05 +steady,target,52,20.8,velocity,upper_ux,1.1360433101654053 +steady,target,52,20.8,velocity,upper_uy,-6.079914601286873e-05 +steady,target,52,20.8,velocity,center_ux,1.1645547151565552 +steady,target,52,20.8,velocity,center_uy,-4.2154280066597494e-08 +steady,target,52,20.8,velocity,lower_ux,1.1360431909561157 +steady,target,52,20.8,velocity,lower_uy,6.144255166873336e-05 +steady,target,53,21.2,velocity,upper_ux,1.1360454559326172 +steady,target,53,21.2,velocity,upper_uy,-6.087187648518011e-05 +steady,target,53,21.2,velocity,center_ux,1.1645547151565552 +steady,target,53,21.2,velocity,center_uy,1.0862800792210692e-07 +steady,target,53,21.2,velocity,lower_ux,1.1360433101654053 +steady,target,53,21.2,velocity,lower_uy,6.118379678810015e-05 +steady,target,54,21.6,velocity,upper_ux,1.1360453367233276 +steady,target,54,21.6,velocity,upper_uy,-6.099474194343202e-05 +steady,target,54,21.6,velocity,center_ux,1.1645547151565552 +steady,target,54,21.6,velocity,center_uy,6.274800057326502e-08 +steady,target,54,21.6,velocity,lower_ux,1.1360433101654053 +steady,target,54,21.6,velocity,lower_uy,6.0865051636938006e-05 +steady,target,55,22.0,velocity,upper_ux,1.1360433101654053 +steady,target,55,22.0,velocity,upper_uy,-6.091291652410291e-05 +steady,target,55,22.0,velocity,center_ux,1.1645547151565552 +steady,target,55,22.0,velocity,center_uy,-1.650276004738771e-07 +steady,target,55,22.0,velocity,lower_ux,1.1360431909561157 +steady,target,55,22.0,velocity,lower_uy,6.0628866776824e-05 +steady,target,56,22.4,velocity,upper_ux,1.1360431909561157 +steady,target,56,22.4,velocity,upper_uy,-6.1014387028990313e-05 +steady,target,56,22.4,velocity,center_ux,1.1645541191101074 +steady,target,56,22.4,velocity,center_uy,-2.4551292199248564e-07 +steady,target,56,22.4,velocity,lower_ux,1.1360431909561157 +steady,target,56,22.4,velocity,lower_uy,6.063072942197323e-05 +steady,target,57,22.8,velocity,upper_ux,1.1360431909561157 +steady,target,57,22.8,velocity,upper_uy,-6.110309914220124e-05 +steady,target,57,22.8,velocity,center_ux,1.1645541191101074 +steady,target,57,22.8,velocity,center_uy,1.1285636247748698e-07 +steady,target,57,22.8,velocity,lower_ux,1.1360430717468262 +steady,target,57,22.8,velocity,lower_uy,6.08011287113186e-05 +steady,target,58,23.2,velocity,upper_ux,1.1360431909561157 +steady,target,58,23.2,velocity,upper_uy,-6.0879137890879065e-05 +steady,target,58,23.2,velocity,center_ux,1.1645541191101074 +steady,target,58,23.2,velocity,center_uy,4.414518457451777e-07 +steady,target,58,23.2,velocity,lower_ux,1.1360431909561157 +steady,target,58,23.2,velocity,lower_uy,6.047893475624733e-05 +steady,target,59,23.6,velocity,upper_ux,1.1360431909561157 +steady,target,59,23.6,velocity,upper_uy,-6.107965600676835e-05 +steady,target,59,23.6,velocity,center_ux,1.1645541191101074 +steady,target,59,23.6,velocity,center_uy,1.9411410789871297e-07 +steady,target,59,23.6,velocity,lower_ux,1.1360431909561157 +steady,target,59,23.6,velocity,lower_uy,6.040351581759751e-05 +steady,target,60,24.0,velocity,upper_ux,1.1360433101654053 +steady,target,60,24.0,velocity,upper_uy,-6.112856499385089e-05 +steady,target,60,24.0,velocity,center_ux,1.1645547151565552 +steady,target,60,24.0,velocity,center_uy,-2.8838985599577427e-07 +steady,target,60,24.0,velocity,lower_ux,1.1360433101654053 +steady,target,60,24.0,velocity,lower_uy,6.042344102752395e-05 +steady,target,61,24.4,velocity,upper_ux,1.1360440254211426 +steady,target,61,24.4,velocity,upper_uy,-6.079506056266837e-05 +steady,target,61,24.4,velocity,center_ux,1.1645547151565552 +steady,target,61,24.4,velocity,center_uy,-2.877021358926868e-07 +steady,target,61,24.4,velocity,lower_ux,1.1360433101654053 +steady,target,61,24.4,velocity,lower_uy,6.039049549144693e-05 +steady,target,62,24.8,velocity,upper_ux,1.1360433101654053 +steady,target,62,24.8,velocity,upper_uy,-6.087750807637349e-05 +steady,target,62,24.8,velocity,center_ux,1.1645547151565552 +steady,target,62,24.8,velocity,center_uy,-6.132499947852921e-07 +steady,target,62,24.8,velocity,lower_ux,1.1360433101654053 +steady,target,62,24.8,velocity,lower_uy,6.0467053117463365e-05 +steady,target,63,25.2,velocity,upper_ux,1.1360433101654053 +steady,target,63,25.2,velocity,upper_uy,-6.0826561821158975e-05 +steady,target,63,25.2,velocity,center_ux,1.164554476737976 +steady,target,63,25.2,velocity,center_uy,-3.099221714819578e-07 +steady,target,63,25.2,velocity,lower_ux,1.1360431909561157 +steady,target,63,25.2,velocity,lower_uy,6.0563474107766524e-05 +steady,target,64,25.6,velocity,upper_ux,1.1360431909561157 +steady,target,64,25.6,velocity,upper_uy,-6.088528607506305e-05 +steady,target,64,25.6,velocity,center_ux,1.1645541191101074 +steady,target,64,25.6,velocity,center_uy,-2.7898423127226124e-07 +steady,target,64,25.6,velocity,lower_ux,1.1360431909561157 +steady,target,64,25.6,velocity,lower_uy,6.0468493757070974e-05 +steady,target,65,26.0,velocity,upper_ux,1.1360433101654053 +steady,target,65,26.0,velocity,upper_uy,-6.0873848269693553e-05 +steady,target,65,26.0,velocity,center_ux,1.1645541191101074 +steady,target,65,26.0,velocity,center_uy,-4.566931011140696e-07 +steady,target,65,26.0,velocity,lower_ux,1.1360430717468262 +steady,target,65,26.0,velocity,lower_uy,6.025670882081613e-05 +steady,target,66,26.4,velocity,upper_ux,1.1360433101654053 +steady,target,66,26.4,velocity,upper_uy,-6.104397471062839e-05 +steady,target,66,26.4,velocity,center_ux,1.1645543575286865 +steady,target,66,26.4,velocity,center_uy,-3.877925394135673e-07 +steady,target,66,26.4,velocity,lower_ux,1.1360431909561157 +steady,target,66,26.4,velocity,lower_uy,6.023197784088552e-05 +steady,target,67,26.8,velocity,upper_ux,1.1360454559326172 +steady,target,67,26.8,velocity,upper_uy,-6.118568126112223e-05 +steady,target,67,26.8,velocity,center_ux,1.1645547151565552 +steady,target,67,26.8,velocity,center_uy,-3.6032375305694586e-07 +steady,target,67,26.8,velocity,lower_ux,1.1360433101654053 +steady,target,67,26.8,velocity,lower_uy,6.00251805735752e-05 +steady,target,68,27.2,velocity,upper_ux,1.1360454559326172 +steady,target,68,27.2,velocity,upper_uy,-6.0965612647123635e-05 +steady,target,68,27.2,velocity,center_ux,1.1645547151565552 +steady,target,68,27.2,velocity,center_uy,-4.234374557654519e-07 +steady,target,68,27.2,velocity,lower_ux,1.1360433101654053 +steady,target,68,27.2,velocity,lower_uy,6.007859337842092e-05 +steady,target,69,27.6,velocity,upper_ux,1.1360454559326172 +steady,target,69,27.6,velocity,upper_uy,-6.108415982453153e-05 +steady,target,69,27.6,velocity,center_ux,1.1645547151565552 +steady,target,69,27.6,velocity,center_uy,-4.219796494453476e-07 +steady,target,69,27.6,velocity,lower_ux,1.1360433101654053 +steady,target,69,27.6,velocity,lower_uy,6.0719721659552306e-05 +steady,target,70,28.0,velocity,upper_ux,1.136045217514038 +steady,target,70,28.0,velocity,upper_uy,-6.115891301305965e-05 +steady,target,70,28.0,velocity,center_ux,1.1645547151565552 +steady,target,70,28.0,velocity,center_uy,-4.2283062384740333e-07 +steady,target,70,28.0,velocity,lower_ux,1.1360431909561157 +steady,target,70,28.0,velocity,lower_uy,6.0762347857235e-05 +steady,target,71,28.4,velocity,upper_ux,1.1360433101654053 +steady,target,71,28.4,velocity,upper_uy,-6.078958176658489e-05 +steady,target,71,28.4,velocity,center_ux,1.1645541191101074 +steady,target,71,28.4,velocity,center_uy,-5.642707492370391e-07 +steady,target,71,28.4,velocity,lower_ux,1.1360430717468262 +steady,target,71,28.4,velocity,lower_uy,6.087137808208354e-05 +steady,target,72,28.8,velocity,upper_ux,1.1360433101654053 +steady,target,72,28.8,velocity,upper_uy,-6.092286639614031e-05 +steady,target,72,28.8,velocity,center_ux,1.1645541191101074 +steady,target,72,28.8,velocity,center_uy,-3.8773157484683907e-07 +steady,target,72,28.8,velocity,lower_ux,1.1360430717468262 +steady,target,72,28.8,velocity,lower_uy,6.0867980209877715e-05 +steady,target,73,29.2,velocity,upper_ux,1.1360433101654053 +steady,target,73,29.2,velocity,upper_uy,-6.0964099247939885e-05 +steady,target,73,29.2,velocity,center_ux,1.1645541191101074 +steady,target,73,29.2,velocity,center_uy,-2.8105583282922453e-07 +steady,target,73,29.2,velocity,lower_ux,1.1360431909561157 +steady,target,73,29.2,velocity,lower_uy,6.0568800108740106e-05 +steady,target,74,29.6,velocity,upper_ux,1.1360454559326172 +steady,target,74,29.6,velocity,upper_uy,-6.093197953305207e-05 +steady,target,74,29.6,velocity,center_ux,1.1645541191101074 +steady,target,74,29.6,velocity,center_uy,-2.6745459535959526e-07 +steady,target,74,29.6,velocity,lower_ux,1.1360431909561157 +steady,target,74,29.6,velocity,lower_uy,6.055698759155348e-05 +steady,target,75,30.0,velocity,upper_ux,1.1360454559326172 +steady,target,75,30.0,velocity,upper_uy,-6.11632494837977e-05 +steady,target,75,30.0,velocity,center_ux,1.1645547151565552 +steady,target,75,30.0,velocity,center_uy,-2.1688974527478422e-07 +steady,target,75,30.0,velocity,lower_ux,1.1360433101654053 +steady,target,75,30.0,velocity,lower_uy,6.100163227529265e-05 +steady,target,76,30.4,velocity,upper_ux,1.1360454559326172 +steady,target,76,30.4,velocity,upper_uy,-6.113886047387496e-05 +steady,target,76,30.4,velocity,center_ux,1.1645547151565552 +steady,target,76,30.4,velocity,center_uy,2.872475235449201e-08 +steady,target,76,30.4,velocity,lower_ux,1.1360433101654053 +steady,target,76,30.4,velocity,lower_uy,6.092788316891529e-05 +steady,target,77,30.8,velocity,upper_ux,1.1360454559326172 +steady,target,77,30.8,velocity,upper_uy,-6.128109816927463e-05 +steady,target,77,30.8,velocity,center_ux,1.1645547151565552 +steady,target,77,30.8,velocity,center_uy,1.8683640234939958e-07 +steady,target,77,30.8,velocity,lower_ux,1.1360431909561157 +steady,target,77,30.8,velocity,lower_uy,6.102164843468927e-05 +steady,target,78,31.2,velocity,upper_ux,1.1360433101654053 +steady,target,78,31.2,velocity,upper_uy,-6.097506411606446e-05 +steady,target,78,31.2,velocity,center_ux,1.1645541191101074 +steady,target,78,31.2,velocity,center_uy,1.9191793043660255e-08 +steady,target,78,31.2,velocity,lower_ux,1.1360431909561157 +steady,target,78,31.2,velocity,lower_uy,6.109304376877844e-05 +steady,target,79,31.6,velocity,upper_ux,1.1360433101654053 +steady,target,79,31.6,velocity,upper_uy,-6.077235593693331e-05 +steady,target,79,31.6,velocity,center_ux,1.1645541191101074 +steady,target,79,31.6,velocity,center_uy,-3.9807156326787663e-07 +steady,target,79,31.6,velocity,lower_ux,1.1360430717468262 +steady,target,79,31.6,velocity,lower_uy,6.117711018305272e-05 +steady,target,80,32.0,velocity,upper_ux,1.1360433101654053 +steady,target,80,32.0,velocity,upper_uy,-6.078672595322132e-05 +steady,target,80,32.0,velocity,center_ux,1.1645541191101074 +steady,target,80,32.0,velocity,center_uy,-4.899820282844303e-07 +steady,target,80,32.0,velocity,lower_ux,1.1360430717468262 +steady,target,80,32.0,velocity,lower_uy,6.115659925853834e-05 +steady,target,81,32.4,velocity,upper_ux,1.1360450983047485 +steady,target,81,32.4,velocity,upper_uy,-6.073784606996924e-05 +steady,target,81,32.4,velocity,center_ux,1.1645541191101074 +steady,target,81,32.4,velocity,center_uy,-3.7974808719809516e-07 +steady,target,81,32.4,velocity,lower_ux,1.1360431909561157 +steady,target,81,32.4,velocity,lower_uy,6.082611798774451e-05 +steady,target,82,32.8,velocity,upper_ux,1.1360454559326172 +steady,target,82,32.8,velocity,upper_uy,-6.082196705392562e-05 +steady,target,82,32.8,velocity,center_ux,1.1645541191101074 +steady,target,82,32.8,velocity,center_uy,-4.0144527702068444e-07 +steady,target,82,32.8,velocity,lower_ux,1.1360433101654053 +steady,target,82,32.8,velocity,lower_uy,6.0700258472934365e-05 +steady,target,83,33.2,velocity,upper_ux,1.1360454559326172 +steady,target,83,33.2,velocity,upper_uy,-6.086824578233063e-05 +steady,target,83,33.2,velocity,center_ux,1.1645541191101074 +steady,target,83,33.2,velocity,center_uy,-2.6169161060352053e-07 +steady,target,83,33.2,velocity,lower_ux,1.1360433101654053 +steady,target,83,33.2,velocity,lower_uy,6.066919377190061e-05 +steady,target,84,33.6,velocity,upper_ux,1.1360454559326172 +steady,target,84,33.6,velocity,upper_uy,-6.085194036131725e-05 +steady,target,84,33.6,velocity,center_ux,1.1645541191101074 +steady,target,84,33.6,velocity,center_uy,-1.4943056214633543e-07 +steady,target,84,33.6,velocity,lower_ux,1.1360433101654053 +steady,target,84,33.6,velocity,lower_uy,6.066233981982805e-05 +steady,target,85,34.0,velocity,upper_ux,1.1360454559326172 +steady,target,85,34.0,velocity,upper_uy,-6.0874983319081366e-05 +steady,target,85,34.0,velocity,center_ux,1.1645541191101074 +steady,target,85,34.0,velocity,center_uy,-6.804955887673714e-08 +steady,target,85,34.0,velocity,lower_ux,1.1360431909561157 +steady,target,85,34.0,velocity,lower_uy,6.065259367460385e-05 +steady,target,86,34.4,velocity,upper_ux,1.1360433101654053 +steady,target,86,34.4,velocity,upper_uy,-6.109281093813479e-05 +steady,target,86,34.4,velocity,center_ux,1.1645541191101074 +steady,target,86,34.4,velocity,center_uy,1.7058074774922716e-07 +steady,target,86,34.4,velocity,lower_ux,1.1360431909561157 +steady,target,86,34.4,velocity,lower_uy,6.0562546423170716e-05 +steady,target,87,34.8,velocity,upper_ux,1.1360433101654053 +steady,target,87,34.8,velocity,upper_uy,-6.090597162256017e-05 +steady,target,87,34.8,velocity,center_ux,1.1645541191101074 +steady,target,87,34.8,velocity,center_uy,1.497464836575091e-07 +steady,target,87,34.8,velocity,lower_ux,1.1360431909561157 +steady,target,87,34.8,velocity,lower_uy,6.058962026145309e-05 +steady,target,88,35.2,velocity,upper_ux,1.1360454559326172 +steady,target,88,35.2,velocity,upper_uy,-6.0810136346844956e-05 +steady,target,88,35.2,velocity,center_ux,1.1645541191101074 +steady,target,88,35.2,velocity,center_uy,-7.698967152691694e-08 +steady,target,88,35.2,velocity,lower_ux,1.1360431909561157 +steady,target,88,35.2,velocity,lower_uy,6.035814658389427e-05 +steady,target,89,35.6,velocity,upper_ux,1.1360454559326172 +steady,target,89,35.6,velocity,upper_uy,-6.095430217101239e-05 +steady,target,89,35.6,velocity,center_ux,1.1645541191101074 +steady,target,89,35.6,velocity,center_uy,-2.8755312797557053e-08 +steady,target,89,35.6,velocity,lower_ux,1.1360433101654053 +steady,target,89,35.6,velocity,lower_uy,6.0256075812503695e-05 +steady,target,90,36.0,velocity,upper_ux,1.1360454559326172 +steady,target,90,36.0,velocity,upper_uy,-6.0870042943861336e-05 +steady,target,90,36.0,velocity,center_ux,1.1645547151565552 +steady,target,90,36.0,velocity,center_uy,3.675498021493695e-07 +steady,target,90,36.0,velocity,lower_ux,1.1360433101654053 +steady,target,90,36.0,velocity,lower_uy,6.026812843629159e-05 +steady,target,91,36.4,velocity,upper_ux,1.1360454559326172 +steady,target,91,36.4,velocity,upper_uy,-6.0829377616755664e-05 +steady,target,91,36.4,velocity,center_ux,1.1645547151565552 +steady,target,91,36.4,velocity,center_uy,1.8658960243556066e-07 +steady,target,91,36.4,velocity,lower_ux,1.1360431909561157 +steady,target,91,36.4,velocity,lower_uy,6.0435479099396616e-05 +steady,target,92,36.8,velocity,upper_ux,1.1360454559326172 +steady,target,92,36.8,velocity,upper_uy,-6.037569255568087e-05 +steady,target,92,36.8,velocity,center_ux,1.1645547151565552 +steady,target,92,36.8,velocity,center_uy,6.841248278988132e-08 +steady,target,92,36.8,velocity,lower_ux,1.1360431909561157 +steady,target,92,36.8,velocity,lower_uy,6.063621913199313e-05 +steady,target,93,37.2,velocity,upper_ux,1.1360433101654053 +steady,target,93,37.2,velocity,upper_uy,-6.047002534614876e-05 +steady,target,93,37.2,velocity,center_ux,1.164554476737976 +steady,target,93,37.2,velocity,center_uy,1.6040328887356736e-07 +steady,target,93,37.2,velocity,lower_ux,1.1360431909561157 +steady,target,93,37.2,velocity,lower_uy,6.0643931647064164e-05 +steady,target,94,37.6,velocity,upper_ux,1.1360433101654053 +steady,target,94,37.6,velocity,upper_uy,-6.091194154578261e-05 +steady,target,94,37.6,velocity,center_ux,1.1645541191101074 +steady,target,94,37.6,velocity,center_uy,1.2308228747315297e-07 +steady,target,94,37.6,velocity,lower_ux,1.1360431909561157 +steady,target,94,37.6,velocity,lower_uy,6.0441947425715625e-05 +steady,target,95,38.0,velocity,upper_ux,1.1360448598861694 +steady,target,95,38.0,velocity,upper_uy,-6.1004753661109135e-05 +steady,target,95,38.0,velocity,center_ux,1.1645541191101074 +steady,target,95,38.0,velocity,center_uy,6.820540932039876e-08 +steady,target,95,38.0,velocity,lower_ux,1.1360431909561157 +steady,target,95,38.0,velocity,lower_uy,6.046825728844851e-05 +steady,target,96,38.4,velocity,upper_ux,1.1360454559326172 +steady,target,96,38.4,velocity,upper_uy,-6.110955291660503e-05 +steady,target,96,38.4,velocity,center_ux,1.1645541191101074 +steady,target,96,38.4,velocity,center_uy,-1.0832503960500617e-07 +steady,target,96,38.4,velocity,lower_ux,1.1360433101654053 +steady,target,96,38.4,velocity,lower_uy,6.071908865123987e-05 +steady,target,97,38.8,velocity,upper_ux,1.1360454559326172 +steady,target,97,38.8,velocity,upper_uy,-6.120756006566808e-05 +steady,target,97,38.8,velocity,center_ux,1.1645547151565552 +steady,target,97,38.8,velocity,center_uy,-3.82045101332551e-07 +steady,target,97,38.8,velocity,lower_ux,1.1360433101654053 +steady,target,97,38.8,velocity,lower_uy,6.096227662055753e-05 +steady,target,98,39.2,velocity,upper_ux,1.1360454559326172 +steady,target,98,39.2,velocity,upper_uy,-6.107999797677621e-05 +steady,target,98,39.2,velocity,center_ux,1.1645547151565552 +steady,target,98,39.2,velocity,center_uy,-4.6952118282206357e-07 +steady,target,98,39.2,velocity,lower_ux,1.1360433101654053 +steady,target,98,39.2,velocity,lower_uy,6.077804937376641e-05 +steady,target,99,39.6,velocity,upper_ux,1.1360454559326172 +steady,target,99,39.6,velocity,upper_uy,-6.133702117949724e-05 +steady,target,99,39.6,velocity,center_ux,1.1645547151565552 +steady,target,99,39.6,velocity,center_uy,-4.57092113492763e-07 +steady,target,99,39.6,velocity,lower_ux,1.1360433101654053 +steady,target,99,39.6,velocity,lower_uy,6.055495759937912e-05 +steady,target,100,40.0,velocity,upper_ux,1.1360454559326172 +steady,target,100,40.0,velocity,upper_uy,-6.113812560215592e-05 +steady,target,100,40.0,velocity,center_ux,1.164554476737976 +steady,target,100,40.0,velocity,center_uy,-4.886716737928509e-07 +steady,target,100,40.0,velocity,lower_ux,1.1360431909561157 +steady,target,100,40.0,velocity,lower_uy,6.0934551584068686e-05 +steady,target,101,40.4,velocity,upper_ux,1.1360433101654053 +steady,target,101,40.4,velocity,upper_uy,-6.091882096370682e-05 +steady,target,101,40.4,velocity,center_ux,1.1645541191101074 +steady,target,101,40.4,velocity,center_uy,-3.6931567137798993e-07 +steady,target,101,40.4,velocity,lower_ux,1.1360431909561157 +steady,target,101,40.4,velocity,lower_uy,6.112511618994176e-05 +steady,target,102,40.8,velocity,upper_ux,1.1360433101654053 +steady,target,102,40.8,velocity,upper_uy,-6.067988942959346e-05 +steady,target,102,40.8,velocity,center_ux,1.1645541191101074 +steady,target,102,40.8,velocity,center_uy,-2.63294509750267e-07 +steady,target,102,40.8,velocity,lower_ux,1.1360431909561157 +steady,target,102,40.8,velocity,lower_uy,6.093129195505753e-05 +steady,target,103,41.2,velocity,upper_ux,1.1360454559326172 +steady,target,103,41.2,velocity,upper_uy,-6.074965131119825e-05 +steady,target,103,41.2,velocity,center_ux,1.1645547151565552 +steady,target,103,41.2,velocity,center_uy,-8.811810658926333e-08 +steady,target,103,41.2,velocity,lower_ux,1.1360431909561157 +steady,target,103,41.2,velocity,lower_uy,6.0480550018837675e-05 +steady,target,104,41.6,velocity,upper_ux,1.1360454559326172 +steady,target,104,41.6,velocity,upper_uy,-6.098175799706951e-05 +steady,target,104,41.6,velocity,center_ux,1.1645547151565552 +steady,target,104,41.6,velocity,center_uy,-1.2394127679726807e-07 +steady,target,104,41.6,velocity,lower_ux,1.1360431909561157 +steady,target,104,41.6,velocity,lower_uy,6.049207513569854e-05 +steady,target,105,42.0,velocity,upper_ux,1.1360450983047485 +steady,target,105,42.0,velocity,upper_uy,-6.112193659646437e-05 +steady,target,105,42.0,velocity,center_ux,1.1645547151565552 +steady,target,105,42.0,velocity,center_uy,-2.556693061706028e-07 +steady,target,105,42.0,velocity,lower_ux,1.1360431909561157 +steady,target,105,42.0,velocity,lower_uy,6.0738348111044616e-05 +steady,target,106,42.4,velocity,upper_ux,1.1360433101654053 +steady,target,106,42.4,velocity,upper_uy,-6.115015276009217e-05 +steady,target,106,42.4,velocity,center_ux,1.1645547151565552 +steady,target,106,42.4,velocity,center_uy,-2.7142058911522327e-07 +steady,target,106,42.4,velocity,lower_ux,1.1360431909561157 +steady,target,106,42.4,velocity,lower_uy,6.0983638832112774e-05 +steady,target,107,42.8,velocity,upper_ux,1.1360433101654053 +steady,target,107,42.8,velocity,upper_uy,-6.11851064604707e-05 +steady,target,107,42.8,velocity,center_ux,1.1645547151565552 +steady,target,107,42.8,velocity,center_uy,-1.2657591241804766e-07 +steady,target,107,42.8,velocity,lower_ux,1.1360431909561157 +steady,target,107,42.8,velocity,lower_uy,6.088776353863068e-05 +steady,target,108,43.2,velocity,upper_ux,1.1360433101654053 +steady,target,108,43.2,velocity,upper_uy,-6.0934700741199777e-05 +steady,target,108,43.2,velocity,center_ux,1.1645547151565552 +steady,target,108,43.2,velocity,center_uy,6.048983891560056e-08 +steady,target,108,43.2,velocity,lower_ux,1.1360431909561157 +steady,target,108,43.2,velocity,lower_uy,6.093199044698849e-05 +steady,target,109,43.6,velocity,upper_ux,1.1360433101654053 +steady,target,109,43.6,velocity,upper_uy,-6.0984752053627744e-05 +steady,target,109,43.6,velocity,center_ux,1.1645547151565552 +steady,target,109,43.6,velocity,center_uy,-8.512448346209567e-08 +steady,target,109,43.6,velocity,lower_ux,1.1360431909561157 +steady,target,109,43.6,velocity,lower_uy,6.069471419323236e-05 +steady,target,110,44.0,velocity,upper_ux,1.1360433101654053 +steady,target,110,44.0,velocity,upper_uy,-6.121761543909088e-05 +steady,target,110,44.0,velocity,center_ux,1.1645547151565552 +steady,target,110,44.0,velocity,center_uy,-8.377246274449135e-08 +steady,target,110,44.0,velocity,lower_ux,1.1360431909561157 +steady,target,110,44.0,velocity,lower_uy,6.0490932810353115e-05 +steady,target,111,44.4,velocity,upper_ux,1.1360433101654053 +steady,target,111,44.4,velocity,upper_uy,-6.150481203803793e-05 +steady,target,111,44.4,velocity,center_ux,1.1645547151565552 +steady,target,111,44.4,velocity,center_uy,-3.092427425244182e-09 +steady,target,111,44.4,velocity,lower_ux,1.1360433101654053 +steady,target,111,44.4,velocity,lower_uy,6.06580069870688e-05 +steady,target,112,44.8,velocity,upper_ux,1.1360433101654053 +steady,target,112,44.8,velocity,upper_uy,-6.13280208199285e-05 +steady,target,112,44.8,velocity,center_ux,1.1645547151565552 +steady,target,112,44.8,velocity,center_uy,-1.493190922019494e-07 +steady,target,112,44.8,velocity,lower_ux,1.1360433101654053 +steady,target,112,44.8,velocity,lower_uy,6.109671085141599e-05 +steady,target,113,45.2,velocity,upper_ux,1.1360433101654053 +steady,target,113,45.2,velocity,upper_uy,-6.112392293289304e-05 +steady,target,113,45.2,velocity,center_ux,1.1645547151565552 +steady,target,113,45.2,velocity,center_uy,-2.48999128871219e-07 +steady,target,113,45.2,velocity,lower_ux,1.1360433101654053 +steady,target,113,45.2,velocity,lower_uy,6.108806701377034e-05 +steady,target,114,45.6,velocity,upper_ux,1.1360433101654053 +steady,target,114,45.6,velocity,upper_uy,-6.106504588387907e-05 +steady,target,114,45.6,velocity,center_ux,1.1645547151565552 +steady,target,114,45.6,velocity,center_uy,-1.0088319157830483e-07 +steady,target,114,45.6,velocity,lower_ux,1.1360433101654053 +steady,target,114,45.6,velocity,lower_uy,6.104800559114665e-05 +steady,target,115,46.0,velocity,upper_ux,1.1360431909561157 +steady,target,115,46.0,velocity,upper_uy,-6.10898932791315e-05 +steady,target,115,46.0,velocity,center_ux,1.1645547151565552 +steady,target,115,46.0,velocity,center_uy,-2.417272355614841e-07 +steady,target,115,46.0,velocity,lower_ux,1.1360431909561157 +steady,target,115,46.0,velocity,lower_uy,6.109564856160432e-05 +steady,target,116,46.4,velocity,upper_ux,1.1360431909561157 +steady,target,116,46.4,velocity,upper_uy,-6.0768958064727485e-05 +steady,target,116,46.4,velocity,center_ux,1.1645547151565552 +steady,target,116,46.4,velocity,center_uy,-3.881903865021741e-07 +steady,target,116,46.4,velocity,lower_ux,1.1360431909561157 +steady,target,116,46.4,velocity,lower_uy,6.0970527556492016e-05 +steady,target,117,46.8,velocity,upper_ux,1.1360431909561157 +steady,target,117,46.8,velocity,upper_uy,-6.0925809520995244e-05 +steady,target,117,46.8,velocity,center_ux,1.1645547151565552 +steady,target,117,46.8,velocity,center_uy,-3.2028722785071295e-07 +steady,target,117,46.8,velocity,lower_ux,1.1360431909561157 +steady,target,117,46.8,velocity,lower_uy,6.0607053455896676e-05 +steady,target,118,47.2,velocity,upper_ux,1.1360431909561157 +steady,target,118,47.2,velocity,upper_uy,-6.093435877119191e-05 +steady,target,118,47.2,velocity,center_ux,1.1645547151565552 +steady,target,118,47.2,velocity,center_uy,-2.8714785571537504e-07 +steady,target,118,47.2,velocity,lower_ux,1.1360431909561157 +steady,target,118,47.2,velocity,lower_uy,6.035780825186521e-05 +steady,target,119,47.6,velocity,upper_ux,1.1360433101654053 +steady,target,119,47.6,velocity,upper_uy,-6.0715043218806386e-05 +steady,target,119,47.6,velocity,center_ux,1.1645547151565552 +steady,target,119,47.6,velocity,center_uy,-6.736983948485431e-08 +steady,target,119,47.6,velocity,lower_ux,1.1360433101654053 +steady,target,119,47.6,velocity,lower_uy,6.023113746778108e-05 +steady,target,120,48.0,velocity,upper_ux,1.1360437870025635 +steady,target,120,48.0,velocity,upper_uy,-6.077167927287519e-05 +steady,target,120,48.0,velocity,center_ux,1.1645547151565552 +steady,target,120,48.0,velocity,center_uy,-1.0543968187448627e-07 +steady,target,120,48.0,velocity,lower_ux,1.1360433101654053 +steady,target,120,48.0,velocity,lower_uy,6.0188340285094455e-05 +steady,target,121,48.4,velocity,upper_ux,1.136043667793274 +steady,target,121,48.4,velocity,upper_uy,-6.107733497628942e-05 +steady,target,121,48.4,velocity,center_ux,1.1645547151565552 +steady,target,121,48.4,velocity,center_uy,-2.0703082270756568e-07 +steady,target,121,48.4,velocity,lower_ux,1.136043906211853 +steady,target,121,48.4,velocity,lower_uy,6.025691982358694e-05 +steady,target,122,48.8,velocity,upper_ux,1.136043667793274 +steady,target,122,48.8,velocity,upper_uy,-6.114741700002924e-05 +steady,target,122,48.8,velocity,center_ux,1.1645547151565552 +steady,target,122,48.8,velocity,center_uy,-2.5759231903066393e-07 +steady,target,122,48.8,velocity,lower_ux,1.1360433101654053 +steady,target,122,48.8,velocity,lower_uy,6.012579251546413e-05 +steady,target,123,49.2,velocity,upper_ux,1.1360433101654053 +steady,target,123,49.2,velocity,upper_uy,-6.098342055338435e-05 +steady,target,123,49.2,velocity,center_ux,1.1645547151565552 +steady,target,123,49.2,velocity,center_uy,-1.0617368317866749e-08 +steady,target,123,49.2,velocity,lower_ux,1.1360433101654053 +steady,target,123,49.2,velocity,lower_uy,6.0019232478225604e-05 +steady,target,124,49.6,velocity,upper_ux,1.1360433101654053 +steady,target,124,49.6,velocity,upper_uy,-6.126931111793965e-05 +steady,target,124,49.6,velocity,center_ux,1.1645547151565552 +steady,target,124,49.6,velocity,center_uy,8.851638710893894e-08 +steady,target,124,49.6,velocity,lower_ux,1.1360433101654053 +steady,target,124,49.6,velocity,lower_uy,6.014637983753346e-05 +steady,target,125,50.0,velocity,upper_ux,1.1360433101654053 +steady,target,125,50.0,velocity,upper_uy,-6.150330591481179e-05 +steady,target,125,50.0,velocity,center_ux,1.1645547151565552 +steady,target,125,50.0,velocity,center_uy,-2.421524527562724e-07 +steady,target,125,50.0,velocity,lower_ux,1.1360454559326172 +steady,target,125,50.0,velocity,lower_uy,6.026750270393677e-05 +steady,target,126,50.4,velocity,upper_ux,1.1360454559326172 +steady,target,126,50.4,velocity,upper_uy,-6.148131797090173e-05 +steady,target,126,50.4,velocity,center_ux,1.1645547151565552 +steady,target,126,50.4,velocity,center_uy,-4.5452236463461304e-07 +steady,target,126,50.4,velocity,lower_ux,1.1360454559326172 +steady,target,126,50.4,velocity,lower_uy,6.054932237020694e-05 +steady,target,127,50.8,velocity,upper_ux,1.1360454559326172 +steady,target,127,50.8,velocity,upper_uy,-6.141788617242128e-05 +steady,target,127,50.8,velocity,center_ux,1.1645547151565552 +steady,target,127,50.8,velocity,center_uy,-4.1662846683721e-07 +steady,target,127,50.8,velocity,lower_ux,1.1360454559326172 +steady,target,127,50.8,velocity,lower_uy,6.070718518458307e-05 +steady,target,128,51.2,velocity,upper_ux,1.1360454559326172 +steady,target,128,51.2,velocity,upper_uy,-6.144338840385899e-05 +steady,target,128,51.2,velocity,center_ux,1.1645547151565552 +steady,target,128,51.2,velocity,center_uy,-3.443581135798013e-07 +steady,target,128,51.2,velocity,lower_ux,1.1360454559326172 +steady,target,128,51.2,velocity,lower_uy,6.055662379367277e-05 +steady,target,129,51.6,velocity,upper_ux,1.1360454559326172 +steady,target,129,51.6,velocity,upper_uy,-6.144549115560949e-05 +steady,target,129,51.6,velocity,center_ux,1.1645547151565552 +steady,target,129,51.6,velocity,center_uy,-2.255100071124616e-07 +steady,target,129,51.6,velocity,lower_ux,1.1360454559326172 +steady,target,129,51.6,velocity,lower_uy,6.049504372640513e-05 +steady,target,130,52.0,velocity,upper_ux,1.1360433101654053 +steady,target,130,52.0,velocity,upper_uy,-6.164376100059599e-05 +steady,target,130,52.0,velocity,center_ux,1.164554476737976 +steady,target,130,52.0,velocity,center_uy,-2.2479929384644493e-07 +steady,target,130,52.0,velocity,lower_ux,1.1360433101654053 +steady,target,130,52.0,velocity,lower_uy,6.023275636835024e-05 +steady,target,131,52.4,velocity,upper_ux,1.1360433101654053 +steady,target,131,52.4,velocity,upper_uy,-6.131978443590924e-05 +steady,target,131,52.4,velocity,center_ux,1.1645545959472656 +steady,target,131,52.4,velocity,center_uy,2.2881140537833744e-08 +steady,target,131,52.4,velocity,lower_ux,1.1360433101654053 +steady,target,131,52.4,velocity,lower_uy,6.0412912716856226e-05 +steady,target,132,52.8,velocity,upper_ux,1.1360433101654053 +steady,target,132,52.8,velocity,upper_uy,-6.112748087616637e-05 +steady,target,132,52.8,velocity,center_ux,1.1645547151565552 +steady,target,132,52.8,velocity,center_uy,-1.1347830763952516e-07 +steady,target,132,52.8,velocity,lower_ux,1.1360433101654053 +steady,target,132,52.8,velocity,lower_uy,6.0546622989932075e-05 +steady,target,133,53.2,velocity,upper_ux,1.1360433101654053 +steady,target,133,53.2,velocity,upper_uy,-6.113625568104908e-05 +steady,target,133,53.2,velocity,center_ux,1.1645547151565552 +steady,target,133,53.2,velocity,center_uy,-4.4043278535355057e-07 +steady,target,133,53.2,velocity,lower_ux,1.1360433101654053 +steady,target,133,53.2,velocity,lower_uy,6.0906470025656745e-05 +steady,target,134,53.6,velocity,upper_ux,1.1360440254211426 +steady,target,134,53.6,velocity,upper_uy,-6.132272392278537e-05 +steady,target,134,53.6,velocity,center_ux,1.1645547151565552 +steady,target,134,53.6,velocity,center_uy,-4.441416194822523e-07 +steady,target,134,53.6,velocity,lower_ux,1.1360450983047485 +steady,target,134,53.6,velocity,lower_uy,6.0878363001393154e-05 +steady,target,135,54.0,velocity,upper_ux,1.1360454559326172 +steady,target,135,54.0,velocity,upper_uy,-6.130480323918164e-05 +steady,target,135,54.0,velocity,center_ux,1.1645547151565552 +steady,target,135,54.0,velocity,center_uy,-5.410492462942784e-07 +steady,target,135,54.0,velocity,lower_ux,1.1360454559326172 +steady,target,135,54.0,velocity,lower_uy,6.099173333495855e-05 +steady,target,136,54.4,velocity,upper_ux,1.1360453367233276 +steady,target,136,54.4,velocity,upper_uy,-6.104857311584055e-05 +steady,target,136,54.4,velocity,center_ux,1.1645547151565552 +steady,target,136,54.4,velocity,center_uy,-6.499043934127258e-07 +steady,target,136,54.4,velocity,lower_ux,1.1360447406768799 +steady,target,136,54.4,velocity,lower_uy,6.093038246035576e-05 +steady,target,137,54.8,velocity,upper_ux,1.1360442638397217 +steady,target,137,54.8,velocity,upper_uy,-6.1007729527773336e-05 +steady,target,137,54.8,velocity,center_ux,1.1645547151565552 +steady,target,137,54.8,velocity,center_uy,-6.09076380442275e-07 +steady,target,137,54.8,velocity,lower_ux,1.1360433101654053 +steady,target,137,54.8,velocity,lower_uy,6.0959420807193965e-05 +steady,target,138,55.2,velocity,upper_ux,1.1360433101654053 +steady,target,138,55.2,velocity,upper_uy,-6.0970916820224375e-05 +steady,target,138,55.2,velocity,center_ux,1.1645547151565552 +steady,target,138,55.2,velocity,center_uy,-7.745504149170301e-08 +steady,target,138,55.2,velocity,lower_ux,1.1360433101654053 +steady,target,138,55.2,velocity,lower_uy,6.079395461711101e-05 +steady,target,139,55.6,velocity,upper_ux,1.1360433101654053 +steady,target,139,55.6,velocity,upper_uy,-6.1013521190034226e-05 +steady,target,139,55.6,velocity,center_ux,1.1645547151565552 +steady,target,139,55.6,velocity,center_uy,-3.1051023086092755e-08 +steady,target,139,55.6,velocity,lower_ux,1.1360433101654053 +steady,target,139,55.6,velocity,lower_uy,6.0877286159666255e-05 +steady,target,140,56.0,velocity,upper_ux,1.1360454559326172 +steady,target,140,56.0,velocity,upper_uy,-6.083715197746642e-05 +steady,target,140,56.0,velocity,center_ux,1.1645547151565552 +steady,target,140,56.0,velocity,center_uy,-9.634023001581227e-08 +steady,target,140,56.0,velocity,lower_ux,1.1360433101654053 +steady,target,140,56.0,velocity,lower_uy,6.105887587182224e-05 +steady,target,141,56.4,velocity,upper_ux,1.1360454559326172 +steady,target,141,56.4,velocity,upper_uy,-6.144142389530316e-05 +steady,target,141,56.4,velocity,center_ux,1.1645547151565552 +steady,target,141,56.4,velocity,center_uy,-1.653972105941648e-07 +steady,target,141,56.4,velocity,lower_ux,1.1360454559326172 +steady,target,141,56.4,velocity,lower_uy,6.120235775597394e-05 +steady,target,142,56.8,velocity,upper_ux,1.1360454559326172 +steady,target,142,56.8,velocity,upper_uy,-6.155090522952378e-05 +steady,target,142,56.8,velocity,center_ux,1.1645547151565552 +steady,target,142,56.8,velocity,center_uy,-3.122536895716621e-07 +steady,target,142,56.8,velocity,lower_ux,1.1360454559326172 +steady,target,142,56.8,velocity,lower_uy,6.133593706181273e-05 +steady,target,143,57.2,velocity,upper_ux,1.1360455751419067 +steady,target,143,57.2,velocity,upper_uy,-6.143681821413338e-05 +steady,target,143,57.2,velocity,center_ux,1.1645547151565552 +steady,target,143,57.2,velocity,center_uy,-3.967934674165008e-07 +steady,target,143,57.2,velocity,lower_ux,1.1360454559326172 +steady,target,143,57.2,velocity,lower_uy,6.09134222031571e-05 +steady,target,144,57.6,velocity,upper_ux,1.1360455751419067 +steady,target,144,57.6,velocity,upper_uy,-6.10997449257411e-05 +steady,target,144,57.6,velocity,center_ux,1.1645547151565552 +steady,target,144,57.6,velocity,center_uy,-4.86735928006965e-07 +steady,target,144,57.6,velocity,lower_ux,1.1360435485839844 +steady,target,144,57.6,velocity,lower_uy,6.081469473429024e-05 +steady,target,145,58.0,velocity,upper_ux,1.1360454559326172 +steady,target,145,58.0,velocity,upper_uy,-6.093843694543466e-05 +steady,target,145,58.0,velocity,center_ux,1.1645547151565552 +steady,target,145,58.0,velocity,center_uy,-2.4369145990021934e-07 +steady,target,145,58.0,velocity,lower_ux,1.1360433101654053 +steady,target,145,58.0,velocity,lower_uy,6.0566238971659914e-05 +steady,target,146,58.4,velocity,upper_ux,1.1360445022583008 +steady,target,146,58.4,velocity,upper_uy,-6.106043292675167e-05 +steady,target,146,58.4,velocity,center_ux,1.1645547151565552 +steady,target,146,58.4,velocity,center_uy,-6.91742769731718e-08 +steady,target,146,58.4,velocity,lower_ux,1.1360433101654053 +steady,target,146,58.4,velocity,lower_uy,6.035643309587613e-05 +steady,target,147,58.8,velocity,upper_ux,1.1360446214675903 +steady,target,147,58.8,velocity,upper_uy,-6.112091068644077e-05 +steady,target,147,58.8,velocity,center_ux,1.164554476737976 +steady,target,147,58.8,velocity,center_uy,-3.7341786196520843e-07 +steady,target,147,58.8,velocity,lower_ux,1.1360433101654053 +steady,target,147,58.8,velocity,lower_uy,6.0333193687256426e-05 +steady,target,148,59.2,velocity,upper_ux,1.1360454559326172 +steady,target,148,59.2,velocity,upper_uy,-6.095490243751556e-05 +steady,target,148,59.2,velocity,center_ux,1.1645547151565552 +steady,target,148,59.2,velocity,center_uy,-7.270713240359328e-07 +steady,target,148,59.2,velocity,lower_ux,1.1360434293746948 +steady,target,148,59.2,velocity,lower_uy,6.049521834938787e-05 +steady,target,149,59.6,velocity,upper_ux,1.1360455751419067 +steady,target,149,59.6,velocity,upper_uy,-6.098280573496595e-05 +steady,target,149,59.6,velocity,center_ux,1.1645547151565552 +steady,target,149,59.6,velocity,center_uy,-6.123326556917164e-07 +steady,target,149,59.6,velocity,lower_ux,1.1360453367233276 +steady,target,149,59.6,velocity,lower_uy,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_wide.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_wide.csv new file mode 100644 index 0000000..e274382 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/steady_timeseries/alpha_6/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +steady,target,0,0.0,1.1360431909561157,-6.069301161915064e-05,1.1645539999008179,-2.349157881553765e-07,1.1360430717468262,6.0079586546635255e-05 +steady,target,1,0.4,1.1360433101654053,-6.040649168426171e-05,1.1645541191101074,-1.4980265916619828e-07,1.1360431909561157,5.999155837344006e-05 +steady,target,2,0.8,1.1360454559326172,-6.0142643633298576e-05,1.1645541191101074,1.3026001610683124e-08,1.1360440254211426,5.9906873502768576e-05 +steady,target,3,1.2,1.1360454559326172,-6.0092195781180635e-05,1.1645541191101074,-2.018932718783617e-07,1.1360434293746948,6.030806980561465e-05 +steady,target,4,1.6,1.1360434293746948,-6.05615132371895e-05,1.1645541191101074,-2.491708528395975e-07,1.1360433101654053,6.034489706507884e-05 +steady,target,5,2.0,1.1360431909561157,-6.065537309041247e-05,1.1645541191101074,-1.1309966652106596e-07,1.1360431909561157,6.052618846297264e-05 +steady,target,6,2.4,1.1360431909561157,-6.074534758226946e-05,1.1645539999008179,-3.771812728814439e-08,1.1360430717468262,6.05615641688928e-05 +steady,target,7,2.8,1.1360431909561157,-6.050430238246918e-05,1.1645539999008179,2.765416873273807e-08,1.1360430717468262,6.0608042986132205e-05 +steady,target,8,3.2,1.1360433101654053,-6.0686124925268814e-05,1.1645541191101074,1.6125588331306062e-07,1.1360431909561157,6.035928163328208e-05 +steady,target,9,3.6,1.1360454559326172,-6.061003659851849e-05,1.1645541191101074,-4.279208809521151e-08,1.1360433101654053,6.017985288053751e-05 +steady,target,10,4.0,1.1360454559326172,-6.073986514820717e-05,1.164554238319397,2.7986024520032515e-07,1.1360433101654053,6.036718696122989e-05 +steady,target,11,4.4,1.1360454559326172,-6.058522922103293e-05,1.1645541191101074,2.699783294701774e-07,1.1360433101654053,6.016475163050927e-05 +steady,target,12,4.8,1.1360433101654053,-6.055221820133738e-05,1.1645541191101074,4.4350745298515903e-08,1.1360431909561157,6.0159218264743686e-05 +steady,target,13,5.2,1.1360433101654053,-6.070997551432811e-05,1.1645539999008179,-3.429951789257757e-07,1.1360431909561157,6.0399881476769224e-05 +steady,target,14,5.6,1.1360431909561157,-6.09630806138739e-05,1.1645539999008179,-3.7674371355933545e-07,1.1360431909561157,6.029620271874592e-05 +steady,target,15,6.0,1.1360433101654053,-6.0851267335237935e-05,1.1645541191101074,-5.82433983709052e-07,1.1360431909561157,6.022924208082259e-05 +steady,target,16,6.4,1.1360453367233276,-6.1000086134299636e-05,1.1645541191101074,-4.5133245407669165e-07,1.136043667793274,6.038951687514782e-05 +steady,target,17,6.8,1.1360454559326172,-6.112260598456487e-05,1.1645541191101074,-2.3628744827419723e-07,1.1360453367233276,6.0540092817973346e-05 +steady,target,18,7.2,1.1360454559326172,-6.100592509028502e-05,1.1645541191101074,-4.04591418146083e-07,1.1360433101654053,6.080770253902301e-05 +steady,target,19,7.6,1.1360433101654053,-6.071158350096084e-05,1.1645541191101074,-2.7269649649497296e-07,1.1360431909561157,6.080421735532582e-05 +steady,target,20,8.0,1.1360433101654053,-6.073112308513373e-05,1.1645539999008179,-2.423149965125049e-07,1.1360431909561157,6.096361539675854e-05 +steady,target,21,8.4,1.1360431909561157,-6.080834646127187e-05,1.1645539999008179,-1.7601050217308511e-07,1.1360431909561157,6.0511774790938944e-05 +steady,target,22,8.8,1.1360445022583008,-6.070379458833486e-05,1.1645541191101074,-8.231712911310751e-08,1.1360431909561157,6.0086367739131674e-05 +steady,target,23,9.2,1.1360454559326172,-6.0487956943688914e-05,1.1645541191101074,-1.802328881694848e-07,1.136043906211853,6.0219899751245975e-05 +steady,target,24,9.6,1.1360455751419067,-6.0512098571052775e-05,1.1645547151565552,-2.50518922939591e-07,1.1360454559326172,6.0400780057534575e-05 +steady,target,25,10.0,1.1360454559326172,-6.071371171856299e-05,1.1645547151565552,-1.404000755655943e-07,1.1360433101654053,6.067900903872214e-05 +steady,target,26,10.4,1.1360433101654053,-6.0882215620949864e-05,1.1645541191101074,-2.062576811567851e-07,1.1360431909561157,6.0547859902726486e-05 +steady,target,27,10.8,1.1360433101654053,-6.107732042437419e-05,1.1645541191101074,-5.108570348966168e-07,1.1360431909561157,6.062956163077615e-05 +steady,target,28,11.2,1.1360431909561157,-6.095368735259399e-05,1.1645541191101074,-4.642597843940166e-07,1.1360430717468262,6.0744579968741164e-05 +steady,target,29,11.6,1.1360433101654053,-6.105590728111565e-05,1.1645541191101074,-3.838658528820815e-07,1.1360430717468262,6.0900227254023775e-05 +steady,target,30,12.0,1.136045217514038,-6.148425745777786e-05,1.1645541191101074,-7.923969036482958e-08,1.1360431909561157,6.114930874900892e-05 +steady,target,31,12.4,1.1360454559326172,-6.172284338390455e-05,1.1645541191101074,1.1873111560589678e-07,1.1360431909561157,6.0941871197428554e-05 +steady,target,32,12.8,1.1360450983047485,-6.153012509457767e-05,1.1645541191101074,2.1285610785071185e-07,1.1360433101654053,6.085305358283222e-05 +steady,target,33,13.2,1.1360433101654053,-6.11031282460317e-05,1.1645541191101074,1.209984503702799e-07,1.1360433101654053,6.0991216741967946e-05 +steady,target,34,13.6,1.1360431909561157,-6.094122363720089e-05,1.1645541191101074,3.045323069272854e-07,1.1360431909561157,6.084865890443325e-05 +steady,target,35,14.0,1.1360431909561157,-6.0470407333923504e-05,1.1645539999008179,2.262013794052109e-07,1.1360431909561157,6.0513360949698836e-05 +steady,target,36,14.4,1.1360431909561157,-6.023498281138018e-05,1.1645541191101074,-1.0880597756113275e-07,1.1360430717468262,6.051714444765821e-05 +steady,target,37,14.8,1.1360431909561157,-6.017530904500745e-05,1.1645541191101074,-2.1569604768956196e-07,1.1360431909561157,6.057512655388564e-05 +steady,target,38,15.2,1.1360433101654053,-6.022593515808694e-05,1.1645541191101074,-1.8287420289198053e-07,1.1360431909561157,6.059910083422437e-05 +steady,target,39,15.6,1.136045217514038,-6.0657392168650404e-05,1.1645547151565552,-2.398349181476078e-07,1.1360433101654053,6.055985068087466e-05 +steady,target,40,16.0,1.1360433101654053,-6.0839622165076435e-05,1.1645547151565552,1.943962644190833e-07,1.1360433101654053,6.032743112882599e-05 +steady,target,41,16.4,1.1360433101654053,-6.087211295380257e-05,1.1645541191101074,1.5631317751285678e-07,1.1360431909561157,6.05797758908011e-05 +steady,target,42,16.8,1.1360431909561157,-6.077745638322085e-05,1.1645541191101074,-1.885018718894571e-07,1.1360431909561157,6.0863039834657684e-05 +steady,target,43,17.2,1.1360431909561157,-6.085353379603475e-05,1.1645541191101074,-2.773624174778888e-08,1.1360431909561157,6.073349140933715e-05 +steady,target,44,17.6,1.1360433101654053,-6.061832755221985e-05,1.1645541191101074,3.3958349465734727e-09,1.1360431909561157,6.0656228015432134e-05 +steady,target,45,18.0,1.1360454559326172,-6.051602395018563e-05,1.1645541191101074,2.686283417929758e-10,1.1360433101654053,6.059039878891781e-05 +steady,target,46,18.4,1.1360454559326172,-6.06615976721514e-05,1.1645541191101074,1.0835093888772462e-07,1.1360433101654053,6.073565236874856e-05 +steady,target,47,18.8,1.1360454559326172,-6.066752757760696e-05,1.1645547151565552,-6.412927433530058e-08,1.1360433101654053,6.1032947996864095e-05 +steady,target,48,19.2,1.1360433101654053,-6.0807549743913114e-05,1.1645541191101074,-1.5284749466104586e-08,1.1360431909561157,6.111897528171539e-05 +steady,target,49,19.6,1.1360431909561157,-6.062804095563479e-05,1.1645541191101074,7.785317990283147e-08,1.1360430717468262,6.114577990956604e-05 +steady,target,50,20.0,1.1360431909561157,-6.045024929335341e-05,1.1645541191101074,3.512657542614761e-08,1.1360430717468262,6.106684304540977e-05 +steady,target,51,20.4,1.1360431909561157,-6.06450776103884e-05,1.1645541191101074,2.8764043591422706e-08,1.1360430717468262,6.130544352345169e-05 +steady,target,52,20.8,1.1360433101654053,-6.079914601286873e-05,1.1645547151565552,-4.2154280066597494e-08,1.1360431909561157,6.144255166873336e-05 +steady,target,53,21.2,1.1360454559326172,-6.087187648518011e-05,1.1645547151565552,1.0862800792210692e-07,1.1360433101654053,6.118379678810015e-05 +steady,target,54,21.6,1.1360453367233276,-6.099474194343202e-05,1.1645547151565552,6.274800057326502e-08,1.1360433101654053,6.0865051636938006e-05 +steady,target,55,22.0,1.1360433101654053,-6.091291652410291e-05,1.1645547151565552,-1.650276004738771e-07,1.1360431909561157,6.0628866776824e-05 +steady,target,56,22.4,1.1360431909561157,-6.1014387028990313e-05,1.1645541191101074,-2.4551292199248564e-07,1.1360431909561157,6.063072942197323e-05 +steady,target,57,22.8,1.1360431909561157,-6.110309914220124e-05,1.1645541191101074,1.1285636247748698e-07,1.1360430717468262,6.08011287113186e-05 +steady,target,58,23.2,1.1360431909561157,-6.0879137890879065e-05,1.1645541191101074,4.414518457451777e-07,1.1360431909561157,6.047893475624733e-05 +steady,target,59,23.6,1.1360431909561157,-6.107965600676835e-05,1.1645541191101074,1.9411410789871297e-07,1.1360431909561157,6.040351581759751e-05 +steady,target,60,24.0,1.1360433101654053,-6.112856499385089e-05,1.1645547151565552,-2.8838985599577427e-07,1.1360433101654053,6.042344102752395e-05 +steady,target,61,24.4,1.1360440254211426,-6.079506056266837e-05,1.1645547151565552,-2.877021358926868e-07,1.1360433101654053,6.039049549144693e-05 +steady,target,62,24.8,1.1360433101654053,-6.087750807637349e-05,1.1645547151565552,-6.132499947852921e-07,1.1360433101654053,6.0467053117463365e-05 +steady,target,63,25.2,1.1360433101654053,-6.0826561821158975e-05,1.164554476737976,-3.099221714819578e-07,1.1360431909561157,6.0563474107766524e-05 +steady,target,64,25.6,1.1360431909561157,-6.088528607506305e-05,1.1645541191101074,-2.7898423127226124e-07,1.1360431909561157,6.0468493757070974e-05 +steady,target,65,26.0,1.1360433101654053,-6.0873848269693553e-05,1.1645541191101074,-4.566931011140696e-07,1.1360430717468262,6.025670882081613e-05 +steady,target,66,26.4,1.1360433101654053,-6.104397471062839e-05,1.1645543575286865,-3.877925394135673e-07,1.1360431909561157,6.023197784088552e-05 +steady,target,67,26.8,1.1360454559326172,-6.118568126112223e-05,1.1645547151565552,-3.6032375305694586e-07,1.1360433101654053,6.00251805735752e-05 +steady,target,68,27.2,1.1360454559326172,-6.0965612647123635e-05,1.1645547151565552,-4.234374557654519e-07,1.1360433101654053,6.007859337842092e-05 +steady,target,69,27.6,1.1360454559326172,-6.108415982453153e-05,1.1645547151565552,-4.219796494453476e-07,1.1360433101654053,6.0719721659552306e-05 +steady,target,70,28.0,1.136045217514038,-6.115891301305965e-05,1.1645547151565552,-4.2283062384740333e-07,1.1360431909561157,6.0762347857235e-05 +steady,target,71,28.4,1.1360433101654053,-6.078958176658489e-05,1.1645541191101074,-5.642707492370391e-07,1.1360430717468262,6.087137808208354e-05 +steady,target,72,28.8,1.1360433101654053,-6.092286639614031e-05,1.1645541191101074,-3.8773157484683907e-07,1.1360430717468262,6.0867980209877715e-05 +steady,target,73,29.2,1.1360433101654053,-6.0964099247939885e-05,1.1645541191101074,-2.8105583282922453e-07,1.1360431909561157,6.0568800108740106e-05 +steady,target,74,29.6,1.1360454559326172,-6.093197953305207e-05,1.1645541191101074,-2.6745459535959526e-07,1.1360431909561157,6.055698759155348e-05 +steady,target,75,30.0,1.1360454559326172,-6.11632494837977e-05,1.1645547151565552,-2.1688974527478422e-07,1.1360433101654053,6.100163227529265e-05 +steady,target,76,30.4,1.1360454559326172,-6.113886047387496e-05,1.1645547151565552,2.872475235449201e-08,1.1360433101654053,6.092788316891529e-05 +steady,target,77,30.8,1.1360454559326172,-6.128109816927463e-05,1.1645547151565552,1.8683640234939958e-07,1.1360431909561157,6.102164843468927e-05 +steady,target,78,31.2,1.1360433101654053,-6.097506411606446e-05,1.1645541191101074,1.9191793043660255e-08,1.1360431909561157,6.109304376877844e-05 +steady,target,79,31.6,1.1360433101654053,-6.077235593693331e-05,1.1645541191101074,-3.9807156326787663e-07,1.1360430717468262,6.117711018305272e-05 +steady,target,80,32.0,1.1360433101654053,-6.078672595322132e-05,1.1645541191101074,-4.899820282844303e-07,1.1360430717468262,6.115659925853834e-05 +steady,target,81,32.4,1.1360450983047485,-6.073784606996924e-05,1.1645541191101074,-3.7974808719809516e-07,1.1360431909561157,6.082611798774451e-05 +steady,target,82,32.8,1.1360454559326172,-6.082196705392562e-05,1.1645541191101074,-4.0144527702068444e-07,1.1360433101654053,6.0700258472934365e-05 +steady,target,83,33.2,1.1360454559326172,-6.086824578233063e-05,1.1645541191101074,-2.6169161060352053e-07,1.1360433101654053,6.066919377190061e-05 +steady,target,84,33.6,1.1360454559326172,-6.085194036131725e-05,1.1645541191101074,-1.4943056214633543e-07,1.1360433101654053,6.066233981982805e-05 +steady,target,85,34.0,1.1360454559326172,-6.0874983319081366e-05,1.1645541191101074,-6.804955887673714e-08,1.1360431909561157,6.065259367460385e-05 +steady,target,86,34.4,1.1360433101654053,-6.109281093813479e-05,1.1645541191101074,1.7058074774922716e-07,1.1360431909561157,6.0562546423170716e-05 +steady,target,87,34.8,1.1360433101654053,-6.090597162256017e-05,1.1645541191101074,1.497464836575091e-07,1.1360431909561157,6.058962026145309e-05 +steady,target,88,35.2,1.1360454559326172,-6.0810136346844956e-05,1.1645541191101074,-7.698967152691694e-08,1.1360431909561157,6.035814658389427e-05 +steady,target,89,35.6,1.1360454559326172,-6.095430217101239e-05,1.1645541191101074,-2.8755312797557053e-08,1.1360433101654053,6.0256075812503695e-05 +steady,target,90,36.0,1.1360454559326172,-6.0870042943861336e-05,1.1645547151565552,3.675498021493695e-07,1.1360433101654053,6.026812843629159e-05 +steady,target,91,36.4,1.1360454559326172,-6.0829377616755664e-05,1.1645547151565552,1.8658960243556066e-07,1.1360431909561157,6.0435479099396616e-05 +steady,target,92,36.8,1.1360454559326172,-6.037569255568087e-05,1.1645547151565552,6.841248278988132e-08,1.1360431909561157,6.063621913199313e-05 +steady,target,93,37.2,1.1360433101654053,-6.047002534614876e-05,1.164554476737976,1.6040328887356736e-07,1.1360431909561157,6.0643931647064164e-05 +steady,target,94,37.6,1.1360433101654053,-6.091194154578261e-05,1.1645541191101074,1.2308228747315297e-07,1.1360431909561157,6.0441947425715625e-05 +steady,target,95,38.0,1.1360448598861694,-6.1004753661109135e-05,1.1645541191101074,6.820540932039876e-08,1.1360431909561157,6.046825728844851e-05 +steady,target,96,38.4,1.1360454559326172,-6.110955291660503e-05,1.1645541191101074,-1.0832503960500617e-07,1.1360433101654053,6.071908865123987e-05 +steady,target,97,38.8,1.1360454559326172,-6.120756006566808e-05,1.1645547151565552,-3.82045101332551e-07,1.1360433101654053,6.096227662055753e-05 +steady,target,98,39.2,1.1360454559326172,-6.107999797677621e-05,1.1645547151565552,-4.6952118282206357e-07,1.1360433101654053,6.077804937376641e-05 +steady,target,99,39.6,1.1360454559326172,-6.133702117949724e-05,1.1645547151565552,-4.57092113492763e-07,1.1360433101654053,6.055495759937912e-05 +steady,target,100,40.0,1.1360454559326172,-6.113812560215592e-05,1.164554476737976,-4.886716737928509e-07,1.1360431909561157,6.0934551584068686e-05 +steady,target,101,40.4,1.1360433101654053,-6.091882096370682e-05,1.1645541191101074,-3.6931567137798993e-07,1.1360431909561157,6.112511618994176e-05 +steady,target,102,40.8,1.1360433101654053,-6.067988942959346e-05,1.1645541191101074,-2.63294509750267e-07,1.1360431909561157,6.093129195505753e-05 +steady,target,103,41.2,1.1360454559326172,-6.074965131119825e-05,1.1645547151565552,-8.811810658926333e-08,1.1360431909561157,6.0480550018837675e-05 +steady,target,104,41.6,1.1360454559326172,-6.098175799706951e-05,1.1645547151565552,-1.2394127679726807e-07,1.1360431909561157,6.049207513569854e-05 +steady,target,105,42.0,1.1360450983047485,-6.112193659646437e-05,1.1645547151565552,-2.556693061706028e-07,1.1360431909561157,6.0738348111044616e-05 +steady,target,106,42.4,1.1360433101654053,-6.115015276009217e-05,1.1645547151565552,-2.7142058911522327e-07,1.1360431909561157,6.0983638832112774e-05 +steady,target,107,42.8,1.1360433101654053,-6.11851064604707e-05,1.1645547151565552,-1.2657591241804766e-07,1.1360431909561157,6.088776353863068e-05 +steady,target,108,43.2,1.1360433101654053,-6.0934700741199777e-05,1.1645547151565552,6.048983891560056e-08,1.1360431909561157,6.093199044698849e-05 +steady,target,109,43.6,1.1360433101654053,-6.0984752053627744e-05,1.1645547151565552,-8.512448346209567e-08,1.1360431909561157,6.069471419323236e-05 +steady,target,110,44.0,1.1360433101654053,-6.121761543909088e-05,1.1645547151565552,-8.377246274449135e-08,1.1360431909561157,6.0490932810353115e-05 +steady,target,111,44.4,1.1360433101654053,-6.150481203803793e-05,1.1645547151565552,-3.092427425244182e-09,1.1360433101654053,6.06580069870688e-05 +steady,target,112,44.8,1.1360433101654053,-6.13280208199285e-05,1.1645547151565552,-1.493190922019494e-07,1.1360433101654053,6.109671085141599e-05 +steady,target,113,45.2,1.1360433101654053,-6.112392293289304e-05,1.1645547151565552,-2.48999128871219e-07,1.1360433101654053,6.108806701377034e-05 +steady,target,114,45.6,1.1360433101654053,-6.106504588387907e-05,1.1645547151565552,-1.0088319157830483e-07,1.1360433101654053,6.104800559114665e-05 +steady,target,115,46.0,1.1360431909561157,-6.10898932791315e-05,1.1645547151565552,-2.417272355614841e-07,1.1360431909561157,6.109564856160432e-05 +steady,target,116,46.4,1.1360431909561157,-6.0768958064727485e-05,1.1645547151565552,-3.881903865021741e-07,1.1360431909561157,6.0970527556492016e-05 +steady,target,117,46.8,1.1360431909561157,-6.0925809520995244e-05,1.1645547151565552,-3.2028722785071295e-07,1.1360431909561157,6.0607053455896676e-05 +steady,target,118,47.2,1.1360431909561157,-6.093435877119191e-05,1.1645547151565552,-2.8714785571537504e-07,1.1360431909561157,6.035780825186521e-05 +steady,target,119,47.6,1.1360433101654053,-6.0715043218806386e-05,1.1645547151565552,-6.736983948485431e-08,1.1360433101654053,6.023113746778108e-05 +steady,target,120,48.0,1.1360437870025635,-6.077167927287519e-05,1.1645547151565552,-1.0543968187448627e-07,1.1360433101654053,6.0188340285094455e-05 +steady,target,121,48.4,1.136043667793274,-6.107733497628942e-05,1.1645547151565552,-2.0703082270756568e-07,1.136043906211853,6.025691982358694e-05 +steady,target,122,48.8,1.136043667793274,-6.114741700002924e-05,1.1645547151565552,-2.5759231903066393e-07,1.1360433101654053,6.012579251546413e-05 +steady,target,123,49.2,1.1360433101654053,-6.098342055338435e-05,1.1645547151565552,-1.0617368317866749e-08,1.1360433101654053,6.0019232478225604e-05 +steady,target,124,49.6,1.1360433101654053,-6.126931111793965e-05,1.1645547151565552,8.851638710893894e-08,1.1360433101654053,6.014637983753346e-05 +steady,target,125,50.0,1.1360433101654053,-6.150330591481179e-05,1.1645547151565552,-2.421524527562724e-07,1.1360454559326172,6.026750270393677e-05 +steady,target,126,50.4,1.1360454559326172,-6.148131797090173e-05,1.1645547151565552,-4.5452236463461304e-07,1.1360454559326172,6.054932237020694e-05 +steady,target,127,50.8,1.1360454559326172,-6.141788617242128e-05,1.1645547151565552,-4.1662846683721e-07,1.1360454559326172,6.070718518458307e-05 +steady,target,128,51.2,1.1360454559326172,-6.144338840385899e-05,1.1645547151565552,-3.443581135798013e-07,1.1360454559326172,6.055662379367277e-05 +steady,target,129,51.6,1.1360454559326172,-6.144549115560949e-05,1.1645547151565552,-2.255100071124616e-07,1.1360454559326172,6.049504372640513e-05 +steady,target,130,52.0,1.1360433101654053,-6.164376100059599e-05,1.164554476737976,-2.2479929384644493e-07,1.1360433101654053,6.023275636835024e-05 +steady,target,131,52.4,1.1360433101654053,-6.131978443590924e-05,1.1645545959472656,2.2881140537833744e-08,1.1360433101654053,6.0412912716856226e-05 +steady,target,132,52.8,1.1360433101654053,-6.112748087616637e-05,1.1645547151565552,-1.1347830763952516e-07,1.1360433101654053,6.0546622989932075e-05 +steady,target,133,53.2,1.1360433101654053,-6.113625568104908e-05,1.1645547151565552,-4.4043278535355057e-07,1.1360433101654053,6.0906470025656745e-05 +steady,target,134,53.6,1.1360440254211426,-6.132272392278537e-05,1.1645547151565552,-4.441416194822523e-07,1.1360450983047485,6.0878363001393154e-05 +steady,target,135,54.0,1.1360454559326172,-6.130480323918164e-05,1.1645547151565552,-5.410492462942784e-07,1.1360454559326172,6.099173333495855e-05 +steady,target,136,54.4,1.1360453367233276,-6.104857311584055e-05,1.1645547151565552,-6.499043934127258e-07,1.1360447406768799,6.093038246035576e-05 +steady,target,137,54.8,1.1360442638397217,-6.1007729527773336e-05,1.1645547151565552,-6.09076380442275e-07,1.1360433101654053,6.0959420807193965e-05 +steady,target,138,55.2,1.1360433101654053,-6.0970916820224375e-05,1.1645547151565552,-7.745504149170301e-08,1.1360433101654053,6.079395461711101e-05 +steady,target,139,55.6,1.1360433101654053,-6.1013521190034226e-05,1.1645547151565552,-3.1051023086092755e-08,1.1360433101654053,6.0877286159666255e-05 +steady,target,140,56.0,1.1360454559326172,-6.083715197746642e-05,1.1645547151565552,-9.634023001581227e-08,1.1360433101654053,6.105887587182224e-05 +steady,target,141,56.4,1.1360454559326172,-6.144142389530316e-05,1.1645547151565552,-1.653972105941648e-07,1.1360454559326172,6.120235775597394e-05 +steady,target,142,56.8,1.1360454559326172,-6.155090522952378e-05,1.1645547151565552,-3.122536895716621e-07,1.1360454559326172,6.133593706181273e-05 +steady,target,143,57.2,1.1360455751419067,-6.143681821413338e-05,1.1645547151565552,-3.967934674165008e-07,1.1360454559326172,6.09134222031571e-05 +steady,target,144,57.6,1.1360455751419067,-6.10997449257411e-05,1.1645547151565552,-4.86735928006965e-07,1.1360435485839844,6.081469473429024e-05 +steady,target,145,58.0,1.1360454559326172,-6.093843694543466e-05,1.1645547151565552,-2.4369145990021934e-07,1.1360433101654053,6.0566238971659914e-05 +steady,target,146,58.4,1.1360445022583008,-6.106043292675167e-05,1.1645547151565552,-6.91742769731718e-08,1.1360433101654053,6.035643309587613e-05 +steady,target,147,58.8,1.1360446214675903,-6.112091068644077e-05,1.164554476737976,-3.7341786196520843e-07,1.1360433101654053,6.0333193687256426e-05 +steady,target,148,59.2,1.1360454559326172,-6.095490243751556e-05,1.1645547151565552,-7.270713240359328e-07,1.1360434293746948,6.049521834938787e-05 +steady,target,149,59.6,1.1360455751419067,-6.098280573496595e-05,1.1645547151565552,-6.123326556917164e-07,1.1360453367233276,6.079689774196595e-05 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_ppo_states.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_ppo_states.csv new file mode 100644 index 0000000..64d84a1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_ppo_states.csv @@ -0,0 +1,1380 @@ +objective,scene,source,step,t_D,term_front_t0__0_3813914338074549_Cd_rear_a,term_front_t0__1_8266041890847688_Cd_rear_a,term_front_t1_2_064492712013321_Cl_F,term_lower_t0_1_2544396437730243_Cd_rear_a,term_lower_t0_1_3077817865589976_Cl_rear_s,term_lower_t1__1_5280742226055937_Cl_F,term_lower_t1__3_431208680510616,term_upper_t0_1_2544396437730243_Cd_rear_a,term_upper_t0_1_3077817865589976_Cl_rear_s,term_upper_t1__1_5280742226055937_Cl_F,term_upper_t1__3_431208680510616,predicted_alpha_front,predicted_alpha_upper,predicted_alpha_lower +karman,karman_re50,ppo_state_offline,2,0.8,-1.0180903604330112,,,,1.38077809469013,,3.431208680510616,,1.38077809469013,,-3.431208680510616,-1.0180903604330112,-2.050430585820486,4.811986775200746 +karman,karman_re50,ppo_state_offline,3,1.2000000000000002,-0.9775132440652624,,,,1.0574185929177733,,3.431208680510616,,1.0574185929177733,,-3.431208680510616,-0.9775132440652624,-2.373790087592843,4.488627273428389 +karman,karman_re50,ppo_state_offline,4,1.6,-0.8931783645908021,,,,0.9219476584761613,,3.431208680510616,,0.9219476584761613,,-3.431208680510616,-0.8931783645908021,-2.5092610220344547,4.353156338986778 +karman,karman_re50,ppo_state_offline,5,2.0,-0.859075672407963,,,,1.0222498044410278,,3.431208680510616,,1.0222498044410278,,-3.431208680510616,-0.859075672407963,-2.4089588760695886,4.453458484951644 +karman,karman_re50,ppo_state_offline,6,2.4000000000000004,-0.8721481298391026,,,,1.1140210071439636,,3.431208680510616,,1.1140210071439636,,-3.431208680510616,-0.8721481298391026,-2.3171876733666528,4.5452296876545795 +karman,karman_re50,ppo_state_offline,7,2.8000000000000003,-0.9012894766431399,,,,1.1142356737749255,,3.431208680510616,,1.1142356737749255,,-3.431208680510616,-0.9012894766431399,-2.3169730067356906,4.545444354285541 +karman,karman_re50,ppo_state_offline,8,3.2,-0.9372526539181143,,,,1.0949496278101258,,3.431208680510616,,1.0949496278101258,,-3.431208680510616,-0.9372526539181143,-2.3362590527004903,4.526158308320742 +karman,karman_re50,ppo_state_offline,9,3.6,-0.982099721877711,,,,1.0956245336080368,,3.431208680510616,,1.0956245336080368,,-3.431208680510616,-0.982099721877711,-2.3355841469025793,4.526833214118653 +karman,karman_re50,ppo_state_offline,10,4.0,-1.0464006982585277,,,,1.159004780276635,,3.431208680510616,,1.159004780276635,,-3.431208680510616,-1.0464006982585277,-2.272203900233981,4.590213460787251 +karman,karman_re50,ppo_state_offline,11,4.4,-1.1197754188965978,,,,1.254810497674955,,3.431208680510616,,1.254810497674955,,-3.431208680510616,-1.1197754188965978,-2.176398182835661,4.686019178185571 +karman,karman_re50,ppo_state_offline,12,4.800000000000001,-1.1948921659430383,,,,1.309289995942185,,3.431208680510616,,1.309289995942185,,-3.431208680510616,-1.1948921659430383,-2.1219186845684312,4.740498676452801 +karman,karman_re50,ppo_state_offline,13,5.2,-1.26545708922601,,,,1.311103091621707,,3.431208680510616,,1.311103091621707,,-3.431208680510616,-1.26545708922601,-2.120105588888909,4.742311772132323 +karman,karman_re50,ppo_state_offline,14,5.6000000000000005,-1.328852109754919,,,,1.3133394307296504,,3.431208680510616,,1.3133394307296504,,-3.431208680510616,-1.328852109754919,-2.1178692497809655,4.744548111240267 +karman,karman_re50,ppo_state_offline,15,6.0,-1.3746046451685516,,,,1.3870180425884326,,3.431208680510616,,1.3870180425884326,,-3.431208680510616,-1.3746046451685516,-2.0441906379221835,4.818226723099048 +karman,karman_re50,ppo_state_offline,16,6.4,-1.3936210378964347,,,,1.4913300394229982,,3.431208680510616,,1.4913300394229982,,-3.431208680510616,-1.3936210378964347,-1.9398786410876179,4.922538719933614 +karman,karman_re50,ppo_state_offline,17,6.800000000000001,-1.3668288182550645,,,,1.5531581397776553,,3.431208680510616,,1.5531581397776553,,-3.431208680510616,-1.3668288182550645,-1.8780505407329608,4.984366820288272 +karman,karman_re50,ppo_state_offline,18,7.2,-1.2810604244277601,,,,1.4953542014014283,,3.431208680510616,,1.4953542014014283,,-3.431208680510616,-1.2810604244277601,-1.9358544791091878,4.926562881912044 +karman,karman_re50,ppo_state_offline,19,7.6000000000000005,-1.1465430854449685,,,,1.3915609822583541,,3.431208680510616,,1.3915609822583541,,-3.431208680510616,-1.1465430854449685,-2.0396476982522618,4.8227696627689705 +karman,karman_re50,ppo_state_offline,20,8.0,-1.004481109341181,,,,1.34755516026326,,3.431208680510616,,1.34755516026326,,-3.431208680510616,-1.004481109341181,-2.0836535202473563,4.778763840773876 +karman,karman_re50,ppo_state_offline,21,8.4,-0.9078401796956316,,,,1.4083189099675233,,3.431208680510616,,1.4083189099675233,,-3.431208680510616,-0.9078401796956316,-2.0228897705430926,4.83952759047814 +karman,karman_re50,ppo_state_offline,22,8.8,-0.8709306205449235,,,,1.5077013388276796,,3.431208680510616,,1.5077013388276796,,-3.431208680510616,-0.8709306205449235,-1.9235073416829365,4.938910019338296 +karman,karman_re50,ppo_state_offline,23,9.200000000000001,-0.8560450748150966,,,,1.4723130118531702,,3.431208680510616,,1.4723130118531702,,-3.431208680510616,-0.8560450748150966,-1.958895668657446,4.903521692363786 +karman,karman_re50,ppo_state_offline,24,9.600000000000001,-0.8109438845629472,,,,1.2090099256237652,,3.431208680510616,,1.2090099256237652,,-3.431208680510616,-0.8109438845629472,-2.222198754886851,4.640218606134381 +karman,karman_re50,ppo_state_offline,25,10.0,-0.737178867425762,,,,0.9218063743389041,,3.431208680510616,,0.9218063743389041,,-3.431208680510616,-0.737178867425762,-2.509402306171712,4.353015054849521 +karman,karman_re50,ppo_state_offline,26,10.4,-0.6956538595888583,,,,0.8723264771313615,,3.431208680510616,,0.8723264771313615,,-3.431208680510616,-0.6956538595888583,-2.5588822033792544,4.303535157641978 +karman,karman_re50,ppo_state_offline,27,10.8,-0.7200683807920728,,,,0.9561996225191106,,3.431208680510616,,0.9561996225191106,,-3.431208680510616,-0.7200683807920728,-2.4750090579915054,4.387408303029726 +karman,karman_re50,ppo_state_offline,28,11.200000000000001,-0.7957360406376734,,,,1.047265165764948,,3.431208680510616,,1.047265165764948,,-3.431208680510616,-0.7957360406376734,-2.383943514745668,4.478473846275564 +karman,karman_re50,ppo_state_offline,29,11.600000000000001,-0.8765839369081639,,,,1.097764044363291,,3.431208680510616,,1.097764044363291,,-3.431208680510616,-0.8765839369081639,-2.333444636147325,4.528972724873907 +karman,karman_re50,ppo_state_offline,30,12.0,-0.9396126812332795,,,,1.115583201683184,,3.431208680510616,,1.115583201683184,,-3.431208680510616,-0.9396126812332795,-2.315625478827432,4.5467918821938 +karman,karman_re50,ppo_state_offline,31,12.4,-0.9858167182792992,,,,1.0929862654889306,,3.431208680510616,,1.0929862654889306,,-3.431208680510616,-0.9858167182792992,-2.3382224150216855,4.524194945999547 +karman,karman_re50,ppo_state_offline,32,12.8,-0.978134441758126,,,,0.9441371848090996,,3.431208680510616,,0.9441371848090996,,-3.431208680510616,-0.978134441758126,-2.4870714957015165,4.375345865319716 +karman,karman_re50,ppo_state_offline,33,13.200000000000001,-0.9059461283497756,,,,0.7186743447681349,,3.431208680510616,,0.7186743447681349,,-3.431208680510616,-0.9059461283497756,-2.712534335742481,4.149883025278751 +karman,karman_re50,ppo_state_offline,34,13.600000000000001,-0.7789191699244264,,,,0.49457243026913406,,3.431208680510616,,0.49457243026913406,,-3.431208680510616,-0.7789191699244264,-2.9366362502414822,3.92578111077975 +karman,karman_re50,ppo_state_offline,35,14.0,-0.6336281512925815,,,,0.39480025206481983,,3.431208680510616,,0.39480025206481983,,-3.431208680510616,-0.6336281512925815,-3.0364084284457964,3.826008932575436 +karman,karman_re50,ppo_state_offline,36,14.4,-0.49953187787481557,,,,0.4641113875814703,,3.431208680510616,,0.4641113875814703,,-3.431208680510616,-0.49953187787481557,-2.9670972929291457,3.8953200680920865 +karman,karman_re50,ppo_state_offline,37,14.8,-0.37999031612862827,,,,0.6143838145966655,,3.431208680510616,,0.6143838145966655,,-3.431208680510616,-0.37999031612862827,-2.8168248659139508,4.0455924951072815 +karman,karman_re50,ppo_state_offline,38,15.200000000000001,-0.25792899876336073,,,,0.6734888459006944,,3.431208680510616,,0.6734888459006944,,-3.431208680510616,-0.25792899876336073,-2.757719834609922,4.104697526411311 +karman,karman_re50,ppo_state_offline,39,15.600000000000001,-0.10935528598726865,,,,0.5253034048267946,,3.431208680510616,,0.5253034048267946,,-3.431208680510616,-0.10935528598726865,-2.9059052756838213,3.956512085337411 +karman,karman_re50,ppo_state_offline,40,16.0,0.07132548919347834,,,,0.23126264522287643,,3.431208680510616,,0.23126264522287643,,-3.431208680510616,0.07132548919347834,-3.1999460352877396,3.6624713257334927 +karman,karman_re50,ppo_state_offline,41,16.400000000000002,0.25370434607410336,,,,-0.016561911193308652,,3.431208680510616,,-0.016561911193308652,,-3.431208680510616,0.25370434607410336,-3.4477705917039247,3.4146467693173075 +karman,karman_re50,ppo_state_offline,42,16.8,0.36350073858906046,,,,0.04237504070605215,,3.431208680510616,,0.04237504070605215,,-3.431208680510616,0.36350073858906046,-3.388833639804564,3.4735837212166683 +karman,karman_re50,ppo_state_offline,43,17.2,0.3290497854239185,,,,0.48426949770382316,,3.431208680510616,,0.48426949770382316,,-3.431208680510616,0.3290497854239185,-2.946939182806793,3.9154781782144394 +karman,karman_re50,ppo_state_offline,44,17.6,0.14416838062422327,,,,1.0777982207337784,,3.431208680510616,,1.0777982207337784,,-3.431208680510616,0.14416838062422327,-2.3534104597768377,4.509006901244394 +karman,karman_re50,ppo_state_offline,45,18.0,-0.11203241117054329,,,,1.3499046180285117,,3.431208680510616,,1.3499046180285117,,-3.431208680510616,-0.11203241117054329,-2.081304062482104,4.781113298539128 +karman,karman_re50,ppo_state_offline,46,18.400000000000002,-0.315712194548212,,,,1.0525258684360541,,3.431208680510616,,1.0525258684360541,,-3.431208680510616,-0.315712194548212,-2.378682812074562,4.4837345489466705 +karman,karman_re50,ppo_state_offline,47,18.8,-0.405423102494314,,,,0.4174998019535896,,3.431208680510616,,0.4174998019535896,,-3.431208680510616,-0.405423102494314,-3.0137088785570265,3.8487084824642057 +karman,karman_re50,ppo_state_offline,48,19.200000000000003,-0.4219056426645502,,,,0.0082766927132026,,3.431208680510616,,0.0082766927132026,,-3.431208680510616,-0.4219056426645502,-3.4229319877974134,3.439485373223819 +karman,karman_re50,ppo_state_offline,49,19.6,-0.45450645589247335,,,,0.09542677750862906,,3.431208680510616,,0.09542677750862906,,-3.431208680510616,-0.45450645589247335,-3.335781903001987,3.5266354580192454 +karman,karman_re50,ppo_state_offline,50,20.0,-0.544155503808157,,,,0.4057796128864172,,3.431208680510616,,0.4057796128864172,,-3.431208680510616,-0.544155503808157,-3.025429067624199,3.836988293397033 +karman,karman_re50,ppo_state_offline,51,20.400000000000002,-0.6563070618594665,,,,0.6190770970311791,,3.431208680510616,,0.6190770970311791,,-3.431208680510616,-0.6563070618594665,-2.812131583479437,4.050285777541795 +karman,karman_re50,ppo_state_offline,52,20.8,-0.7438996883368918,,,,0.6347818641590155,,3.431208680510616,,0.6347818641590155,,-3.431208680510616,-0.7438996883368918,-2.796426816351601,4.065990544669631 +karman,karman_re50,ppo_state_offline,53,21.200000000000003,-0.7858327303956107,,,,0.5217140569604407,,3.431208680510616,,0.5217140569604407,,-3.431208680510616,-0.7858327303956107,-2.9094946235501755,3.9529227374710567 +karman,karman_re50,ppo_state_offline,54,21.6,-0.7650450517868684,,,,0.3182982411484565,,3.431208680510616,,0.3182982411484565,,-3.431208680510616,-0.7650450517868684,-3.1129104393621594,3.749506921659073 +karman,karman_re50,ppo_state_offline,55,22.0,-0.6698831018960282,,,,0.0826104184110126,,3.431208680510616,,0.0826104184110126,,-3.431208680510616,-0.6698831018960282,-3.3485982620996033,3.513819098921629 +karman,karman_re50,ppo_state_offline,56,22.400000000000002,-0.5301172617858395,,,,-0.06906404052228793,,3.431208680510616,,-0.06906404052228793,,-3.431208680510616,-0.5301172617858395,-3.500272721032904,3.3621446399883284 +karman,karman_re50,ppo_state_offline,57,22.8,-0.3937272166641711,,,,-0.02553954374264518,,3.431208680510616,,-0.02553954374264518,,-3.431208680510616,-0.3937272166641711,-3.4567482242532614,3.405669136767971 +karman,karman_re50,ppo_state_offline,58,23.200000000000003,-0.294858560026901,,,,0.17632214655950945,,3.431208680510616,,0.17632214655950945,,-3.431208680510616,-0.294858560026901,-3.254886533951107,3.6075308270701254 +karman,karman_re50,ppo_state_offline,59,23.6,-0.22947322937162484,,,,0.40463183151703974,,3.431208680510616,,0.40463183151703974,,-3.431208680510616,-0.22947322937162484,-3.0265768489935763,3.835840512027656 +karman,karman_re50,ppo_state_offline,60,24.0,-0.1715059464390126,,,,0.5433291597482587,,3.431208680510616,,0.5433291597482587,,-3.431208680510616,-0.1715059464390126,-2.8878795207623575,3.9745378402588747 +karman,karman_re50,ppo_state_offline,61,24.400000000000002,-0.10285561634987692,,,,0.5263540533518076,,3.431208680510616,,0.5263540533518076,,-3.431208680510616,-0.10285561634987692,-2.9048546271588087,3.9575627338624235 +karman,karman_re50,ppo_state_offline,62,24.8,-0.011427402281425563,,,,0.35486890929747,,3.431208680510616,,0.35486890929747,,-3.431208680510616,-0.011427402281425563,-3.076339771213146,3.786077589808086 +karman,karman_re50,ppo_state_offline,63,25.200000000000003,0.09814758712964085,,,,0.15419427979078373,,3.431208680510616,,0.15419427979078373,,-3.431208680510616,0.09814758712964085,-3.2770144007198323,3.5854029603014 +karman,karman_re50,ppo_state_offline,64,25.6,0.17333757720689308,,,,0.16605164235759923,,3.431208680510616,,0.16605164235759923,,-3.431208680510616,0.17333757720689308,-3.265157038153017,3.597260322868215 +karman,karman_re50,ppo_state_offline,65,26.0,0.13910130820617247,,,,0.5047665070605883,,3.431208680510616,,0.5047665070605883,,-3.431208680510616,0.13910130820617247,-2.926442173450028,3.9359751875712043 +karman,karman_re50,ppo_state_offline,66,26.400000000000002,-0.03514294912447169,,,,1.0224982696479283,,3.431208680510616,,1.0224982696479283,,-3.431208680510616,-0.03514294912447169,-2.408710410862688,4.453706950158544 +karman,karman_re50,ppo_state_offline,67,26.8,-0.2929026153507719,,,,1.321138223758747,,3.431208680510616,,1.321138223758747,,-3.431208680510616,-0.2929026153507719,-2.110070456751869,4.752346904269363 +karman,karman_re50,ppo_state_offline,68,27.200000000000003,-0.5045507654028527,,,,1.0645543553242889,,3.431208680510616,,1.0645543553242889,,-3.431208680510616,-0.5045507654028527,-2.3666543251863272,4.495763035834905 +karman,karman_re50,ppo_state_offline,69,27.6,-0.5792115930361581,,,,0.36765025185244726,,3.431208680510616,,0.36765025185244726,,-3.431208680510616,-0.5792115930361581,-3.063558428658169,3.7988589323630633 +karman,karman_re50,ppo_state_offline,70,28.0,-0.5511897873532385,,,,-0.11427085380698714,,3.431208680510616,,-0.11427085380698714,,-3.431208680510616,-0.5511897873532385,-3.5454795343176033,3.316937826703629 +karman,karman_re50,ppo_state_offline,71,28.400000000000002,-0.53870365156695,,,,0.006222287381145431,,3.431208680510616,,0.006222287381145431,,-3.431208680510616,-0.53870365156695,-3.424986393129471,3.4374309678917614 +karman,karman_re50,ppo_state_offline,72,28.8,-0.6127486982837858,,,,0.37532892291570763,,3.431208680510616,,0.37532892291570763,,-3.431208680510616,-0.6127486982837858,-3.0558797575949086,3.8065376034263236 +karman,karman_re50,ppo_state_offline,73,29.200000000000003,-0.748528279365814,,,,0.677319351173746,,3.431208680510616,,0.677319351173746,,-3.431208680510616,-0.748528279365814,-2.7538893293368703,4.108528031684362 +karman,karman_re50,ppo_state_offline,74,29.6,-0.8717051307696618,,,,0.8306669918618492,,3.431208680510616,,0.8306669918618492,,-3.431208680510616,-0.8717051307696618,-2.600541688648767,4.261875672372465 +karman,karman_re50,ppo_state_offline,75,30.0,-0.993491890831431,,,,0.9680387155854188,,3.431208680510616,,0.9680387155854188,,-3.431208680510616,-0.993491890831431,-2.4631699649251972,4.399247396096035 +karman,karman_re50,ppo_state_offline,76,30.400000000000002,-1.0810169630032533,,,,0.9959982069161066,,3.431208680510616,,0.9959982069161066,,-3.431208680510616,-1.0810169630032533,-2.4352104735945095,4.427206887426722 +karman,karman_re50,ppo_state_offline,77,30.8,-1.0970496887337495,,,,0.8909772012160163,,3.431208680510616,,0.8909772012160163,,-3.431208680510616,-1.0970496887337495,-2.5402314792946,4.322185881726632 +karman,karman_re50,ppo_state_offline,78,31.200000000000003,-1.0384565960783725,,,,0.7447187357081346,,3.431208680510616,,0.7447187357081346,,-3.431208680510616,-1.0384565960783725,-2.6864899448024815,4.175927416218751 +karman,karman_re50,ppo_state_offline,79,31.6,-0.9495204980557027,,,,0.7008652356735211,,3.431208680510616,,0.7008652356735211,,-3.431208680510616,-0.9495204980557027,-2.730343444837095,4.1320739161841376 +karman,karman_re50,ppo_state_offline,80,32.0,-0.8693194847661412,,,,0.7815171636301403,,3.431208680510616,,0.7815171636301403,,-3.431208680510616,-0.8693194847661412,-2.649691516880476,4.212725844140756 +karman,karman_re50,ppo_state_offline,81,32.4,-0.7992665356520217,,,,0.8953407191663713,,3.431208680510616,,0.8953407191663713,,-3.431208680510616,-0.7992665356520217,-2.5358679613442447,4.3265493996769875 +karman,karman_re50,ppo_state_offline,82,32.800000000000004,-0.713344163295745,,,,0.9584956419953782,,3.431208680510616,,0.9584956419953782,,-3.431208680510616,-0.713344163295745,-2.472713038515238,4.389704322505994 +karman,karman_re50,ppo_state_offline,83,33.2,-0.5927029848416109,,,,0.891127011120177,,3.431208680510616,,0.891127011120177,,-3.431208680510616,-0.5927029848416109,-2.540081669390439,4.322335691630793 +karman,karman_re50,ppo_state_offline,84,33.6,-0.4270604602002139,,,,0.6584393448577233,,3.431208680510616,,0.6584393448577233,,-3.431208680510616,-0.4270604602002139,-2.772769335652893,4.089648025368339 +karman,karman_re50,ppo_state_offline,85,34.0,-0.2243172324661008,,,,0.34878821054525694,,3.431208680510616,,0.34878821054525694,,-3.431208680510616,-0.2243172324661008,-3.082420469965359,3.779996891055873 +karman,karman_re50,ppo_state_offline,86,34.4,-0.04066003300640381,,,,0.21382699516780135,,3.431208680510616,,0.21382699516780135,,-3.431208680510616,-0.04066003300640381,-3.217381685342815,3.6450356756784172 +karman,karman_re50,ppo_state_offline,87,34.800000000000004,0.02814308097941027,,,,0.47453231067089147,,3.431208680510616,,0.47453231067089147,,-3.431208680510616,0.02814308097941027,-2.9566763698397245,3.9057409911815077 +karman,karman_re50,ppo_state_offline,88,35.2,-0.08780393348156411,,,,1.0917566519818638,,3.431208680510616,,1.0917566519818638,,-3.431208680510616,-0.08780393348156411,-2.3394520285287523,4.52296533249248 +karman,karman_re50,ppo_state_offline,89,35.6,-0.3516519065254466,,,,1.6617798356589977,,3.431208680510616,,1.6617798356589977,,-3.431208680510616,-0.3516519065254466,-1.7694288448516184,5.092988516169614 +karman,karman_re50,ppo_state_offline,90,36.0,-0.6153070595346254,,,,1.63423742180031,,3.431208680510616,,1.63423742180031,,-3.431208680510616,-0.6153070595346254,-1.7969712587103062,5.065446102310926 +karman,karman_re50,ppo_state_offline,91,36.4,-0.7306171088214497,,,,0.9341344810354603,,3.431208680510616,,0.9341344810354603,,-3.431208680510616,-0.7306171088214497,-2.497074199475156,4.365343161546076 +karman,karman_re50,ppo_state_offline,92,36.800000000000004,-0.7053887391649302,,,,0.3168628673919251,,3.431208680510616,,0.3168628673919251,,-3.431208680510616,-0.7053887391649302,-3.114345813118691,3.748071547902541 +karman,karman_re50,ppo_state_offline,93,37.2,-0.6725012918861383,,,,0.4176888912838412,,3.431208680510616,,0.4176888912838412,,-3.431208680510616,-0.6725012918861383,-3.013519789226775,3.848897571794457 +karman,karman_re50,ppo_state_offline,94,37.6,-0.7428933889222747,,,,0.9194217477851757,,3.431208680510616,,0.9194217477851757,,-3.431208680510616,-0.7428933889222747,-2.5117869327254403,4.3506304282957915 +karman,karman_re50,ppo_state_offline,95,38.0,-0.8933122522073292,,,,1.3798393468557248,,3.431208680510616,,1.3798393468557248,,-3.431208680510616,-0.8933122522073292,-2.0513693336548915,4.811048027366341 +karman,karman_re50,ppo_state_offline,96,38.400000000000006,-1.0472502885560722,,,,1.6592650389141541,,3.431208680510616,,1.6592650389141541,,-3.431208680510616,-1.0472502885560722,-1.771943641596462,5.09047371942477 +karman,karman_re50,ppo_state_offline,97,38.800000000000004,-1.1649504904267778,,,,1.7876209163831591,,3.431208680510616,,1.7876209163831591,,-3.431208680510616,-1.1649504904267778,-1.643587764127457,5.218829596893775 +karman,karman_re50,ppo_state_offline,98,39.2,-1.222782215200143,,,,1.7528583959239468,,3.431208680510616,,1.7528583959239468,,-3.431208680510616,-1.222782215200143,-1.6783502845866693,5.184067076434562 +karman,karman_re50,ppo_state_offline,99,39.6,-1.2018555651970284,,,,1.4986384486093087,,3.431208680510616,,1.4986384486093087,,-3.431208680510616,-1.2018555651970284,-1.9325702319013074,4.929847129119925 +karman,karman_re50,ppo_state_offline,100,40.0,-1.0902511015615197,,,,1.113291140598693,,3.431208680510616,,1.113291140598693,,-3.431208680510616,-1.0902511015615197,-2.317917539911923,4.544499821109309 +karman,karman_re50,ppo_state_offline,101,40.400000000000006,-0.9237254092689058,,,,0.8343708285980496,,3.431208680510616,,0.8343708285980496,,-3.431208680510616,-0.9237254092689058,-2.5968378519125666,4.265579509108665 +karman,karman_re50,ppo_state_offline,102,40.800000000000004,-0.7586606704095585,,,,0.8163303058303419,,3.431208680510616,,0.8163303058303419,,-3.431208680510616,-0.7586606704095585,-2.6148783746802744,4.247538986340958 +karman,karman_re50,ppo_state_offline,103,41.2,-0.6233157634332507,,,,0.9406280704991407,,3.431208680510616,,0.9406280704991407,,-3.431208680510616,-0.6233157634332507,-2.4905806100114756,4.371836751009757 +karman,karman_re50,ppo_state_offline,104,41.6,-0.4921322949216835,,,,0.9947697352528215,,3.431208680510616,,0.9947697352528215,,-3.431208680510616,-0.4921322949216835,-2.4364389452577946,4.425978415763438 +karman,karman_re50,ppo_state_offline,105,42.0,-0.3293971584100912,,,,0.870827921352242,,3.431208680510616,,0.870827921352242,,-3.431208680510616,-0.3293971584100912,-2.5603807591583743,4.302036601862858 +karman,karman_re50,ppo_state_offline,106,42.400000000000006,-0.1293260886308996,,,,0.5914181389838379,,3.431208680510616,,0.5914181389838379,,-3.431208680510616,-0.1293260886308996,-2.8397905415267783,4.022626819494454 +karman,karman_re50,ppo_state_offline,107,42.800000000000004,0.08994313697156407,,,,0.2578543599489103,,3.431208680510616,,0.2578543599489103,,-3.431208680510616,0.08994313697156407,-3.173354320561706,3.6890630404595264 +karman,karman_re50,ppo_state_offline,108,43.2,0.2759928047425505,,,,0.09108830399855294,,3.431208680510616,,0.09108830399855294,,-3.431208680510616,0.2759928047425505,-3.340120376512063,3.522296984509169 +karman,karman_re50,ppo_state_offline,109,43.6,0.34655831632295847,,,,0.3476539790554225,,3.431208680510616,,0.3476539790554225,,-3.431208680510616,0.34655831632295847,-3.083554701455194,3.7788626595660384 +karman,karman_re50,ppo_state_offline,110,44.0,0.22951317254755527,,,,1.0376908056552885,,3.431208680510616,,1.0376908056552885,,-3.431208680510616,0.22951317254755527,-2.393517874855328,4.468899486165904 +karman,karman_re50,ppo_state_offline,111,44.400000000000006,-0.04837113193947092,,,,1.7255826406497483,,3.431208680510616,,1.7255826406497483,,-3.431208680510616,-0.04837113193947092,-1.7056260398608678,5.156791321160364 +karman,karman_re50,ppo_state_offline,112,44.800000000000004,-0.35782562192082423,,,,1.822827842442214,,3.431208680510616,,1.822827842442214,,-3.431208680510616,-0.35782562192082423,-1.6083808380684022,5.2540365229528305 +karman,karman_re50,ppo_state_offline,113,45.2,-0.5576628129442431,,,,1.274680254180966,,3.431208680510616,,1.274680254180966,,-3.431208680510616,-0.5576628129442431,-2.15652842632965,4.705888934691583 +karman,karman_re50,ppo_state_offline,114,45.6,-0.6144404641111879,,,,0.5909266894201888,,3.431208680510616,,0.5909266894201888,,-3.431208680510616,-0.6144404641111879,-2.8402819910904276,4.022135369930805 +karman,karman_re50,ppo_state_offline,115,46.0,-0.611103574453121,,,,0.43946507016779945,,3.431208680510616,,0.43946507016779945,,-3.431208680510616,-0.611103574453121,-2.9917436103428168,3.8706737506784155 +karman,karman_re50,ppo_state_offline,116,46.400000000000006,-0.6740797272074269,,,,0.8511748106730812,,3.431208680510616,,0.8511748106730812,,-3.431208680510616,-0.6740797272074269,-2.5800338698375347,4.2823834911836975 +karman,karman_re50,ppo_state_offline,117,46.800000000000004,-0.8189540758550906,,,,1.3442281319750249,,3.431208680510616,,1.3442281319750249,,-3.431208680510616,-0.8189540758550906,-2.0869805485355912,4.775436812485641 +karman,karman_re50,ppo_state_offline,118,47.2,-0.9672799766611301,,,,1.6158818262717687,,3.431208680510616,,1.6158818262717687,,-3.431208680510616,-0.9672799766611301,-1.8153268542388474,5.047090506782385 +karman,karman_re50,ppo_state_offline,119,47.6,-1.0526754565135676,,,,1.6034668633248834,,3.431208680510616,,1.6034668633248834,,-3.431208680510616,-1.0526754565135676,-1.8277418171857327,5.034675543835499 +karman,karman_re50,ppo_state_offline,120,48.0,-1.0607726936263713,,,,1.3723829547153044,,3.431208680510616,,1.3723829547153044,,-3.431208680510616,-1.0607726936263713,-2.0588257257953115,4.803591635225921 +karman,karman_re50,ppo_state_offline,121,48.400000000000006,-0.9844472950471505,,,,0.9600535736511467,,3.431208680510616,,0.9600535736511467,,-3.431208680510616,-0.9844472950471505,-2.4711551068594693,4.391262254161763 +karman,karman_re50,ppo_state_offline,122,48.800000000000004,-0.8163795974744884,,,,0.47417651214850987,,3.431208680510616,,0.47417651214850987,,-3.431208680510616,-0.8163795974744884,-2.9570321683621064,3.905385192659126 +karman,karman_re50,ppo_state_offline,123,49.2,-0.5859102140440337,,,,0.15642772622781342,,3.431208680510616,,0.15642772622781342,,-3.431208680510616,-0.5859102140440337,-3.274780954282803,3.5876364067384294 +karman,karman_re50,ppo_state_offline,124,49.6,-0.3666943167716688,,,,0.18001852324966922,,3.431208680510616,,0.18001852324966922,,-3.431208680510616,-0.3666943167716688,-3.2511901572609467,3.6112272037602855 +karman,karman_re50,ppo_state_offline,125,50.0,-0.20735715850192366,,,,0.3807924170424457,,3.431208680510616,,0.3807924170424457,,-3.431208680510616,-0.20735715850192366,-3.05041626346817,3.812001097553062 +karman,karman_re50,ppo_state_offline,126,50.400000000000006,-0.08186800402493187,,,,0.4825343518931328,,3.431208680510616,,0.4825343518931328,,-3.431208680510616,-0.08186800402493187,-2.9486743286174835,3.9137430324037488 +karman,karman_re50,ppo_state_offline,127,50.800000000000004,0.048414178419064854,,,,0.439242943490797,,3.431208680510616,,0.439242943490797,,-3.431208680510616,0.048414178419064854,-2.991965737019819,3.8704516240014133 +karman,karman_re50,ppo_state_offline,128,51.2,0.18392881250102625,,,,0.31187392354086674,,3.431208680510616,,0.31187392354086674,,-3.431208680510616,0.18392881250102625,-3.1193347569697494,3.743082604051483 +karman,karman_re50,ppo_state_offline,129,51.6,0.3135682610913249,,,,0.15766259221627613,,3.431208680510616,,0.15766259221627613,,-3.431208680510616,0.3135682610913249,-3.27354608829434,3.5888712727268923 +karman,karman_re50,ppo_state_offline,130,52.0,0.41328986021153097,,,,0.09163585615334349,,3.431208680510616,,0.09163585615334349,,-3.431208680510616,0.41328986021153097,-3.3395728243572727,3.5228445366639596 +karman,karman_re50,ppo_state_offline,131,52.400000000000006,0.43393896702415946,,,,0.30076089087389024,,3.431208680510616,,0.30076089087389024,,-3.431208680510616,0.43393896702415946,-3.130447789636726,3.7319695713845062 +karman,karman_re50,ppo_state_offline,132,52.800000000000004,0.32248525183169935,,,,0.8085525227268289,,3.431208680510616,,0.8085525227268289,,-3.431208680510616,0.32248525183169935,-2.622656157783787,4.239761203237445 +karman,karman_re50,ppo_state_offline,133,53.2,0.08457248503899169,,,,1.3231548721230888,,3.431208680510616,,1.3231548721230888,,-3.431208680510616,0.08457248503899169,-2.1080538083875275,4.754363552633705 +karman,karman_re50,ppo_state_offline,134,53.6,-0.19533578324024103,,,,1.4430679566701115,,3.431208680510616,,1.4430679566701115,,-3.431208680510616,-0.19533578324024103,-1.9881407238405047,4.874276637180728 +karman,karman_re50,ppo_state_offline,135,54.0,-0.4068807592419473,,,,1.0790790649651847,,3.431208680510616,,1.0790790649651847,,-3.431208680510616,-0.4068807592419473,-2.352129615545431,4.510287745475801 +karman,karman_re50,ppo_state_offline,136,54.400000000000006,-0.491808198534073,,,,0.47736682367461464,,3.431208680510616,,0.47736682367461464,,-3.431208680510616,-0.491808198534073,-2.9538418568360014,3.908575504185231 +karman,karman_re50,ppo_state_offline,137,54.800000000000004,-0.4930262739257852,,,,0.11545152027727788,,3.431208680510616,,0.11545152027727788,,-3.431208680510616,-0.4930262739257852,-3.315757160233338,3.546660200787894 +karman,karman_re50,ppo_state_offline,138,55.2,-0.511200835222311,,,,0.2555482922473637,,3.431208680510616,,0.2555482922473637,,-3.431208680510616,-0.511200835222311,-3.1756603882632524,3.68675697275798 +karman,karman_re50,ppo_state_offline,139,55.6,-0.5981802559720442,,,,0.5994991957957737,,3.431208680510616,,0.5994991957957737,,-3.431208680510616,-0.5981802559720442,-2.8317094847148425,4.03070787630639 +karman,karman_re50,ppo_state_offline,140,56.0,-0.702488033206005,,,,0.8039272941817054,,3.431208680510616,,0.8039272941817054,,-3.431208680510616,-0.702488033206005,-2.6272813863289106,4.235135974692321 +karman,karman_re50,ppo_state_offline,141,56.400000000000006,-0.7799482464397826,,,,0.8030850702083142,,3.431208680510616,,0.8030850702083142,,-3.431208680510616,-0.7799482464397826,-2.628123610302302,4.234293750718931 +karman,karman_re50,ppo_state_offline,142,56.800000000000004,-0.81524620361374,,,,0.6804341487644201,,3.431208680510616,,0.6804341487644201,,-3.431208680510616,-0.81524620361374,-2.7507745317461962,4.111642829275036 +karman,karman_re50,ppo_state_offline,143,57.2,-0.7938540882390911,,,,0.46832387766096417,,3.431208680510616,,0.46832387766096417,,-3.431208680510616,-0.7938540882390911,-2.962884802849652,3.8995325581715803 +karman,karman_re50,ppo_state_offline,144,57.6,-0.7020345779821313,,,,0.1981234460066654,,3.431208680510616,,0.1981234460066654,,-3.431208680510616,-0.7020345779821313,-3.233085234503951,3.6293321265172813 +karman,karman_re50,ppo_state_offline,145,58.0,-0.5470207343216817,,,,-0.014878072229876587,,3.431208680510616,,-0.014878072229876587,,-3.431208680510616,-0.5470207343216817,-3.446086752740493,3.4163306082807394 +karman,karman_re50,ppo_state_offline,146,58.400000000000006,-0.38052000582027745,,,,-0.06428534817290225,,3.431208680510616,,-0.06428534817290225,,-3.431208680510616,-0.38052000582027745,-3.4954940286835186,3.3669233323377137 +karman,karman_re50,ppo_state_offline,147,58.800000000000004,-0.25028346308207355,,,,0.07930759721094974,,3.431208680510616,,0.07930759721094974,,-3.431208680510616,-0.25028346308207355,-3.3519010832996665,3.5105162777215657 +karman,karman_re50,ppo_state_offline,148,59.2,-0.16537010962856272,,,,0.2864904317817223,,3.431208680510616,,0.2864904317817223,,-3.431208680510616,-0.16537010962856272,-3.1447182487288936,3.7176991122923386 +karman,karman_re50,ppo_state_offline,149,59.6,-0.10090667158074268,,,,0.4339415911810621,,3.431208680510616,,0.4339415911810621,,-3.431208680510616,-0.10090667158074268,-2.997267089329554,3.8651502716916784 +karman,karman_re50,ppo_state_offline,150,60.0,-0.03404980507581743,,,,0.4503550626827481,,3.431208680510616,,0.4503550626827481,,-3.431208680510616,-0.03404980507581743,-2.980853617827868,3.881563743193364 +karman,karman_re50,ppo_state_offline,151,60.400000000000006,0.048823140700898174,,,,0.3277087086139809,,3.431208680510616,,0.3277087086139809,,-3.431208680510616,0.048823140700898174,-3.1034999718966354,3.758917389124597 +karman,karman_re50,ppo_state_offline,152,60.800000000000004,0.1479203640733403,,,,0.15761189435236808,,3.431208680510616,,0.15761189435236808,,-3.431208680510616,0.1479203640733403,-3.2735967861582482,3.588820574862984 +karman,karman_re50,ppo_state_offline,153,61.2,0.2260987219774934,,,,0.13592614949592144,,3.431208680510616,,0.13592614949592144,,-3.431208680510616,0.2260987219774934,-3.2952825310146947,3.5671348300065375 +karman,karman_re50,ppo_state_offline,154,61.6,0.21471620998168908,,,,0.42463328067254164,,3.431208680510616,,0.42463328067254164,,-3.431208680510616,0.21471620998168908,-3.0065753998380744,3.855841961183158 +karman,karman_re50,ppo_state_offline,155,62.0,0.0674583576211688,,,,0.9279983647983747,,3.431208680510616,,0.9279983647983747,,-3.431208680510616,0.0674583576211688,-2.5032103157122414,4.359207045308991 +karman,karman_re50,ppo_state_offline,156,62.400000000000006,-0.18480849476743208,,,,1.306958807677441,,3.431208680510616,,1.306958807677441,,-3.431208680510616,-0.18480849476743208,-2.1242498728331753,4.738167488188057 +karman,karman_re50,ppo_state_offline,157,62.800000000000004,-0.43010201344533633,,,,1.2117121369946473,,3.431208680510616,,1.2117121369946473,,-3.431208680510616,-0.43010201344533633,-2.2194965435159686,4.642920817505264 +karman,karman_re50,ppo_state_offline,158,63.2,-0.5536861442742887,,,,0.6116959143345142,,3.431208680510616,,0.6116959143345142,,-3.431208680510616,-0.5536861442742887,-2.8195127661761017,4.0429045948451305 +karman,karman_re50,ppo_state_offline,159,63.6,-0.5506975488983795,,,,-0.007601330177779034,,3.431208680510616,,-0.007601330177779034,,-3.431208680510616,-0.5506975488983795,-3.438810010688395,3.423607350332837 +karman,karman_re50,ppo_state_offline,160,64.0,-0.5219794432498868,,,,-0.0675679206765694,,3.431208680510616,,-0.0675679206765694,,-3.431208680510616,-0.5219794432498868,-3.4987766011871857,3.3636407598340465 +karman,karman_re50,ppo_state_offline,161,64.4,-0.5472731250217806,,,,0.2792401805053605,,3.431208680510616,,0.2792401805053605,,-3.431208680510616,-0.5472731250217806,-3.1519685000052555,3.7104488610159767 +karman,karman_re50,ppo_state_offline,162,64.8,-0.6678457057748588,,,,0.5755040338293541,,3.431208680510616,,0.5755040338293541,,-3.431208680510616,-0.6678457057748588,-2.855704646681262,4.006712714339971 +karman,karman_re50,ppo_state_offline,163,65.2,-0.7828217353173179,,,,0.7449073683008735,,3.431208680510616,,0.7449073683008735,,-3.431208680510616,-0.7828217353173179,-2.6863013122097428,4.1761160488114895 +karman,karman_re50,ppo_state_offline,164,65.60000000000001,-0.8895487470084231,,,,0.798534746615271,,3.431208680510616,,0.798534746615271,,-3.431208680510616,-0.8895487470084231,-2.632673933895345,4.229743427125888 +karman,karman_re50,ppo_state_offline,165,66.0,-0.9595131185085577,,,,0.7977758011150261,,3.431208680510616,,0.7977758011150261,,-3.431208680510616,-0.9595131185085577,-2.63343287939559,4.228984481625642 +karman,karman_re50,ppo_state_offline,166,66.4,-0.9751266212659986,,,,0.709051494359212,,3.431208680510616,,0.709051494359212,,-3.431208680510616,-0.9751266212659986,-2.7221571861514042,4.1402601748698284 +karman,karman_re50,ppo_state_offline,167,66.8,-0.9220537121540455,,,,0.5532166134228638,,3.431208680510616,,0.5532166134228638,,-3.431208680510616,-0.9220537121540455,-2.877992067087752,3.98442529393348 +karman,karman_re50,ppo_state_offline,168,67.2,-0.825734814305104,,,,0.4589898376058958,,3.431208680510616,,0.4589898376058958,,-3.431208680510616,-0.825734814305104,-2.9722188429047205,3.8901985181165117 +karman,karman_re50,ppo_state_offline,169,67.60000000000001,-0.732379847739556,,,,0.5175920009084585,,3.431208680510616,,0.5175920009084585,,-3.431208680510616,-0.732379847739556,-2.913616679602158,3.9488006814190744 +karman,karman_re50,ppo_state_offline,170,68.0,-0.6628978357373323,,,,0.6690942697994767,,3.431208680510616,,0.6690942697994767,,-3.431208680510616,-0.6628978357373323,-2.7621144107111393,4.100302950310093 +karman,karman_re50,ppo_state_offline,171,68.4,-0.5997181986697969,,,,0.778661183963321,,3.431208680510616,,0.778661183963321,,-3.431208680510616,-0.5997181986697969,-2.652547496547295,4.209869864473937 +karman,karman_re50,ppo_state_offline,172,68.8,-0.5107008046014097,,,,0.7712212343733573,,3.431208680510616,,0.7712212343733573,,-3.431208680510616,-0.5107008046014097,-2.659987446137259,4.202429914883973 +karman,karman_re50,ppo_state_offline,173,69.2,-0.3852882453406212,,,,0.6154496877054347,,3.431208680510616,,0.6154496877054347,,-3.431208680510616,-0.3852882453406212,-2.8157589928051814,4.04665836821605 +karman,karman_re50,ppo_state_offline,174,69.60000000000001,-0.2256301430695277,,,,0.3706522352774883,,3.431208680510616,,0.3706522352774883,,-3.431208680510616,-0.2256301430695277,-3.0605564452331278,3.8018609157881045 +karman,karman_re50,ppo_state_offline,175,70.0,-0.0617265937372972,,,,0.20376735145091404,,3.431208680510616,,0.20376735145091404,,-3.431208680510616,-0.0617265937372972,-3.227441329059702,3.6349760319615303 +karman,karman_re50,ppo_state_offline,176,70.4,0.028685969901038104,,,,0.34874322190025747,,3.431208680510616,,0.34874322190025747,,-3.431208680510616,0.028685969901038104,-3.0824654586103586,3.7799519024108736 +karman,karman_re50,ppo_state_offline,177,70.8,-0.032352139624125406,,,,0.844080991994814,,3.431208680510616,,0.844080991994814,,-3.431208680510616,-0.032352139624125406,-2.5871276885158023,4.27528967250543 +karman,karman_re50,ppo_state_offline,178,71.2,-0.25022320144468957,,,,1.4313404598027362,,3.431208680510616,,1.4313404598027362,,-3.431208680510616,-0.25022320144468957,-1.99986822070788,4.8625491403133525 +karman,karman_re50,ppo_state_offline,179,71.60000000000001,-0.5235083061872084,,,,1.629716938391429,,3.431208680510616,,1.629716938391429,,-3.431208680510616,-0.5235083061872084,-1.8014917421191872,5.060925618902045 +karman,karman_re50,ppo_state_offline,180,72.0,-0.6959293159884385,,,,1.1485464047111735,,3.431208680510616,,1.1485464047111735,,-3.431208680510616,-0.6959293159884385,-2.2826622757994426,4.579755085221789 +karman,karman_re50,ppo_state_offline,181,72.4,-0.7096520307858017,,,,0.40631551823463424,,3.431208680510616,,0.40631551823463424,,-3.431208680510616,-0.7096520307858017,-3.024893162275982,3.83752419874525 +karman,karman_re50,ppo_state_offline,182,72.8,-0.6565020214098464,,,,0.22459732245442654,,3.431208680510616,,0.22459732245442654,,-3.431208680510616,-0.6565020214098464,-3.2066113580561897,3.6558060029650425 +karman,karman_re50,ppo_state_offline,183,73.2,-0.6762048129464511,,,,0.6055028581541806,,3.431208680510616,,0.6055028581541806,,-3.431208680510616,-0.6762048129464511,-2.8257058223564355,4.036711538664797 +karman,karman_re50,ppo_state_offline,184,73.60000000000001,-0.7946750184615343,,,,1.0723111285022182,,3.431208680510616,,1.0723111285022182,,-3.431208680510616,-0.7946750184615343,-2.358897552008398,4.503519809012834 +karman,karman_re50,ppo_state_offline,185,74.0,-0.9362560558612194,,,,1.3703354004459376,,3.431208680510616,,1.3703354004459376,,-3.431208680510616,-0.9362560558612194,-2.0608732800646785,4.801544080956553 +karman,karman_re50,ppo_state_offline,186,74.4,-1.058413865105982,,,,1.5190670234620898,,3.431208680510616,,1.5190670234620898,,-3.431208680510616,-1.058413865105982,-1.9121416570485263,4.950275703972705 +karman,karman_re50,ppo_state_offline,187,74.8,-1.1400364270005336,,,,1.5552070642595601,,3.431208680510616,,1.5552070642595601,,-3.431208680510616,-1.1400364270005336,-1.876001616251056,4.986415744770176 +karman,karman_re50,ppo_state_offline,188,75.2,-1.1617623623204183,,,,1.4259267500648807,,3.431208680510616,,1.4259267500648807,,-3.431208680510616,-1.1617623623204183,-2.0052819304457357,4.857135430575497 +karman,karman_re50,ppo_state_offline,189,75.60000000000001,-1.1032286322063436,,,,1.1363166488256822,,3.431208680510616,,1.1363166488256822,,-3.431208680510616,-1.1032286322063436,-2.2948920316849337,4.5675253293362985 +karman,karman_re50,ppo_state_offline,190,76.0,-0.9758055831071301,,,,0.8537643601241677,,3.431208680510616,,0.8537643601241677,,-3.431208680510616,-0.9758055831071301,-2.5774443203864483,4.2849730406347835 +karman,karman_re50,ppo_state_offline,191,76.4,-0.8292122071508679,,,,0.7626803951319853,,3.431208680510616,,0.7626803951319853,,-3.431208680510616,-0.8292122071508679,-2.6685282853786307,4.193889075642601 +karman,karman_re50,ppo_state_offline,192,76.80000000000001,-0.7077233697907722,,,,0.8553242709758245,,3.431208680510616,,0.8553242709758245,,-3.431208680510616,-0.7077233697907722,-2.5758844095347917,4.286532951486441 +karman,karman_re50,ppo_state_offline,193,77.2,-0.5996957323677035,,,,0.9479695170322019,,3.431208680510616,,0.9479695170322019,,-3.431208680510616,-0.5996957323677035,-2.483239163478414,4.379178197542818 +karman,karman_re50,ppo_state_offline,194,77.60000000000001,-0.4716085287628291,,,,0.9148930431010662,,3.431208680510616,,0.9148930431010662,,-3.431208680510616,-0.4716085287628291,-2.5163156374095497,4.346101723611683 +karman,karman_re50,ppo_state_offline,195,78.0,-0.30721443788084457,,,,0.7289591600787759,,3.431208680510616,,0.7289591600787759,,-3.431208680510616,-0.30721443788084457,-2.70224952043184,4.160167840589392 +karman,karman_re50,ppo_state_offline,196,78.4,-0.11287979561285706,,,,0.4374129485233057,,3.431208680510616,,0.4374129485233057,,-3.431208680510616,-0.11287979561285706,-2.9937957319873103,3.868621629033922 +karman,karman_re50,ppo_state_offline,197,78.80000000000001,0.08236434668690507,,,,0.1924550289825693,,3.431208680510616,,0.1924550289825693,,-3.431208680510616,0.08236434668690507,-3.2387536515280466,3.6236637094931856 +karman,karman_re50,ppo_state_offline,198,79.2,0.2069686768448997,,,,0.2506926396270906,,3.431208680510616,,0.2506926396270906,,-3.431208680510616,0.2069686768448997,-3.1805160408835254,3.681901320137707 +karman,karman_re100,ppo_state_offline,2,0.8,1.7518352580237748,,,,-1.5807605384963421,,3.431208680510616,,-1.5807605384963421,,-3.431208680510616,1.7518352580237748,-5.011969219006958,1.850448142014274 +karman,karman_re100,ppo_state_offline,3,1.2000000000000002,1.4513097730929385,,,,-0.6802406443048793,,3.431208680510616,,-0.6802406443048793,,-3.431208680510616,1.4513097730929385,-4.111449324815496,2.750968036205737 +karman,karman_re100,ppo_state_offline,4,1.6,0.7767805311444655,,,,0.7063141141998532,,3.431208680510616,,0.7063141141998532,,-3.431208680510616,0.7767805311444655,-2.7248945663107627,4.13752279471047 +karman,karman_re100,ppo_state_offline,5,2.0,-0.029974792221940057,,,,1.1316768046801529,,3.431208680510616,,1.1316768046801529,,-3.431208680510616,-0.029974792221940057,-2.2995318758304633,4.562885485190769 +karman,karman_re100,ppo_state_offline,6,2.4000000000000004,-0.7103376303980063,,,,0.9184641214669128,,3.431208680510616,,0.9184641214669128,,-3.431208680510616,-0.7103376303980063,-2.5127445590437034,4.349672801977529 +karman,karman_re100,ppo_state_offline,7,2.8000000000000003,-1.2394407118035733,,,,1.3223761346639609,,3.431208680510616,,1.3223761346639609,,-3.431208680510616,-1.2394407118035733,-2.1088325458466555,4.753584815174577 +karman,karman_re100,ppo_state_offline,8,3.2,-1.7150580546962693,,,,1.8974375898435232,,3.431208680510616,,1.8974375898435232,,-3.431208680510616,-1.7150580546962693,-1.533771090667093,5.328646270354139 +karman,karman_re100,ppo_state_offline,9,3.6,-1.929867737370611,,,,1.855892745689695,,3.431208680510616,,1.855892745689695,,-3.431208680510616,-1.929867737370611,-1.5753159348209211,5.287101426200311 +karman,karman_re100,ppo_state_offline,10,4.0,-1.8082340234418772,,,,1.3915082290756389,,3.431208680510616,,1.3915082290756389,,-3.431208680510616,-1.8082340234418772,-2.0397004514349772,4.822716909586255 +karman,karman_re100,ppo_state_offline,11,4.4,-1.4187176733270426,,,,0.4800270151943297,,3.431208680510616,,0.4800270151943297,,-3.431208680510616,-1.4187176733270426,-2.9511816653162866,3.9112356957049457 +karman,karman_re100,ppo_state_offline,12,4.800000000000001,-0.7494500415488385,,,,-0.5416733340189379,,3.431208680510616,,-0.5416733340189379,,-3.431208680510616,-0.7494500415488385,-3.972882014529554,2.8895353464916784 +karman,karman_re100,ppo_state_offline,13,5.2,0.11196599183499413,,,,-1.1724482399791678,,3.431208680510616,,-1.1724482399791678,,-3.431208680510616,0.11196599183499413,-4.603656920489784,2.2587604405314483 +karman,karman_re100,ppo_state_offline,14,5.6000000000000005,0.9355946097437555,,,,-1.2607453449147838,,3.431208680510616,,-1.2607453449147838,,-3.431208680510616,0.9355946097437555,-4.6919540254253995,2.1704633355958323 +karman,karman_re100,ppo_state_offline,15,6.0,1.5512350230256484,,,,-1.4407328100135905,,3.431208680510616,,-1.4407328100135905,,-3.431208680510616,1.5512350230256484,-4.871941490524207,1.9904758704970256 +karman,karman_re100,ppo_state_offline,16,6.4,2.032410289297301,,,,-2.0800930109997604,,3.431208680510616,,-2.0800930109997604,,-3.431208680510616,2.032410289297301,-5.5113016915103765,1.3511156695108557 +karman,karman_re100,ppo_state_offline,17,6.800000000000001,2.4231991822664822,,,,-2.5318068677827466,,3.431208680510616,,-2.5318068677827466,,-3.431208680510616,2.4231991822664822,-5.963015548293363,0.8994018127278696 +karman,karman_re100,ppo_state_offline,18,7.2,2.550391929569335,,,,-2.319119889446607,,3.431208680510616,,-2.319119889446607,,-3.431208680510616,2.550391929569335,-5.750328569957223,1.112088791064009 +karman,karman_re100,ppo_state_offline,19,7.6000000000000005,2.286104079317407,,,,-1.5163214981504214,,3.431208680510616,,-1.5163214981504214,,-3.431208680510616,2.286104079317407,-4.9475301786610375,1.9148871823601947 +karman,karman_re100,ppo_state_offline,20,8.0,1.683591068227208,,,,-0.6419126024528914,,3.431208680510616,,-0.6419126024528914,,-3.431208680510616,1.683591068227208,-4.073121282963507,2.789296078057725 +karman,karman_re100,ppo_state_offline,21,8.4,0.9508141752179476,,,,0.3573748757837351,,3.431208680510616,,0.3573748757837351,,-3.431208680510616,0.9508141752179476,-3.073833804726881,3.788583556294351 +karman,karman_re100,ppo_state_offline,22,8.8,0.14468926527924417,,,,1.385481273104085,,3.431208680510616,,1.385481273104085,,-3.431208680510616,0.14468926527924417,-2.045727407406531,4.816689953614701 +karman,karman_re100,ppo_state_offline,23,9.200000000000001,-0.7266575118770978,,,,1.7287554439045336,,3.431208680510616,,1.7287554439045336,,-3.431208680510616,-0.7266575118770978,-1.7024532366060825,5.15996412441515 +karman,karman_re100,ppo_state_offline,24,9.600000000000001,-1.425691373336143,,,,1.6773231460761,,3.431208680510616,,1.6773231460761,,-3.431208680510616,-1.425691373336143,-1.7538855344345161,5.108531826586717 +karman,karman_re100,ppo_state_offline,25,10.0,-1.951529115371832,,,,2.3184069221893058,,3.431208680510616,,2.3184069221893058,,-3.431208680510616,-1.951529115371832,-1.1128017583213103,5.749615602699922 +karman,karman_re100,ppo_state_offline,26,10.4,-2.373133516449172,,,,2.8517173923509813,,3.431208680510616,,2.8517173923509813,,-3.431208680510616,-2.373133516449172,-0.5794912881596348,6.282926072861597 +karman,karman_re100,ppo_state_offline,27,10.8,-2.497108964972789,,,,2.6440943389408993,,3.431208680510616,,2.6440943389408993,,-3.431208680510616,-2.497108964972789,-0.7871143415697168,6.075303019451516 +karman,karman_re100,ppo_state_offline,28,11.200000000000001,-2.275277719297931,,,,1.8038085311848224,,3.431208680510616,,1.8038085311848224,,-3.431208680510616,-2.275277719297931,-1.6274001493257937,5.235017211695439 +karman,karman_re100,ppo_state_offline,29,11.600000000000001,-1.774589670461628,,,,0.6493616867931088,,3.431208680510616,,0.6493616867931088,,-3.431208680510616,-1.774589670461628,-2.781846993717507,4.080570367303725 +karman,karman_re100,ppo_state_offline,30,12.0,-1.0694997419945014,,,,-0.3989608263137051,,3.431208680510616,,-0.3989608263137051,,-3.431208680510616,-1.0694997419945014,-3.8301695068243213,3.032247854196911 +karman,karman_re100,ppo_state_offline,31,12.4,-0.20436798592852987,,,,-1.065394447855954,,3.431208680510616,,-1.065394447855954,,-3.431208680510616,-0.20436798592852987,-4.49660312836657,2.365814232654662 +karman,karman_re100,ppo_state_offline,32,12.8,0.6408755095090984,,,,-1.106400037253139,,3.431208680510616,,-1.106400037253139,,-3.431208680510616,0.6408755095090984,-4.537608717763755,2.324808643257477 +karman,karman_re100,ppo_state_offline,33,13.200000000000001,1.2304856260292145,,,,-0.9747929499230046,,3.431208680510616,,-0.9747929499230046,,-3.431208680510616,1.2304856260292145,-4.406001630433621,2.4564157305876115 +karman,karman_re100,ppo_state_offline,34,13.600000000000001,1.6057435110814482,,,,-1.358273114981764,,3.431208680510616,,-1.358273114981764,,-3.431208680510616,1.6057435110814482,-4.78948179549238,2.0729355655288524 +karman,karman_re100,ppo_state_offline,35,14.0,1.9036825518838283,,,,-1.9937257743010763,,3.431208680510616,,-1.9937257743010763,,-3.431208680510616,1.9036825518838283,-5.424934454811693,1.4374829062095398 +karman,karman_re100,ppo_state_offline,36,14.4,2.0621057678864703,,,,-2.282495935254447,,3.431208680510616,,-2.282495935254447,,-3.431208680510616,2.0621057678864703,-5.713704615765064,1.148712745256169 +karman,karman_re100,ppo_state_offline,37,14.8,1.967357246793936,,,,-1.9968378314666744,,3.431208680510616,,-1.9968378314666744,,-3.431208680510616,1.967357246793936,-5.428046511977291,1.4343708490439417 +karman,karman_re100,ppo_state_offline,38,15.200000000000001,1.5937211534740465,,,,-1.3171882055032096,,3.431208680510616,,-1.3171882055032096,,-3.431208680510616,1.5937211534740465,-4.7483968860138255,2.1140204750074068 +karman,karman_re100,ppo_state_offline,39,15.600000000000001,1.0073372600942745,,,,-0.29931531664624217,,3.431208680510616,,-0.29931531664624217,,-3.431208680510616,1.0073372600942745,-3.7305239971568582,3.131893363864374 +karman,karman_re100,ppo_state_offline,40,16.0,0.2979317731090521,,,,0.7423232996999393,,3.431208680510616,,0.7423232996999393,,-3.431208680510616,0.2979317731090521,-2.6888853808106767,4.173531980210555 +karman,karman_re100,ppo_state_offline,41,16.400000000000002,-0.47312737954378303,,,,1.197308767286288,,3.431208680510616,,1.197308767286288,,-3.431208680510616,-0.47312737954378303,-2.2338999132243282,4.628517447796904 +karman,karman_re100,ppo_state_offline,42,16.8,-1.108407869635587,,,,1.158307342094765,,3.431208680510616,,1.158307342094765,,-3.431208680510616,-1.108407869635587,-2.272901338415851,4.589516022605381 +karman,karman_re100,ppo_state_offline,43,17.2,-1.6096209017840493,,,,1.8957324364628325,,3.431208680510616,,1.8957324364628325,,-3.431208680510616,-1.6096209017840493,-1.5354762440477836,5.326941116973448 +karman,karman_re100,ppo_state_offline,44,17.6,-2.107500662858675,,,,2.738914264541007,,3.431208680510616,,2.738914264541007,,-3.431208680510616,-2.107500662858675,-0.692294415969609,6.170122945051624 +karman,karman_re100,ppo_state_offline,45,18.0,-2.3937080315868657,,,,2.8807996206107678,,3.431208680510616,,2.8807996206107678,,-3.431208680510616,-2.3937080315868657,-0.5504090598998483,6.312008301121384 +karman,karman_re100,ppo_state_offline,46,18.400000000000002,-2.3412358962567827,,,,2.3443457306409563,,3.431208680510616,,2.3443457306409563,,-3.431208680510616,-2.3412358962567827,-1.0868629498696598,5.775554411151573 +karman,karman_re100,ppo_state_offline,47,18.8,-1.9717069182383704,,,,1.2073311107729727,,3.431208680510616,,1.2073311107729727,,-3.431208680510616,-1.9717069182383704,-2.2238775697376436,4.638539791283589 +karman,karman_re100,ppo_state_offline,48,19.200000000000003,-1.3476004164511024,,,,0.051579367307518005,,3.431208680510616,,0.051579367307518005,,-3.431208680510616,-1.3476004164511024,-3.379629313203098,3.482788047818134 +karman,karman_re100,ppo_state_offline,49,19.6,-0.5564478455389866,,,,-0.8403382564471167,,3.431208680510616,,-0.8403382564471167,,-3.431208680510616,-0.5564478455389866,-4.271546936957733,2.5908704240634997 +karman,karman_re100,ppo_state_offline,50,20.0,0.28123740978692646,,,,-1.053173674474879,,3.431208680510616,,-1.053173674474879,,-3.431208680510616,0.28123740978692646,-4.484382354985495,2.378035006035737 +karman,karman_re100,ppo_state_offline,51,20.400000000000002,0.9132237006346217,,,,-0.9226676290419905,,3.431208680510616,,-0.9226676290419905,,-3.431208680510616,0.9132237006346217,-4.353876309552606,2.5085410514686255 +karman,karman_re100,ppo_state_offline,52,20.8,1.3348462612328238,,,,-1.2445069561262938,,3.431208680510616,,-1.2445069561262938,,-3.431208680510616,1.3348462612328238,-4.67571563663691,2.1867017243843225 +karman,karman_re100,ppo_state_offline,53,21.200000000000003,1.6828372039124964,,,,-1.8699744199432864,,3.431208680510616,,-1.8699744199432864,,-3.431208680510616,1.6828372039124964,-5.301183100453903,1.5612342605673297 +karman,karman_re100,ppo_state_offline,54,21.6,1.8838046697102564,,,,-2.1406786330740766,,3.431208680510616,,-2.1406786330740766,,-3.431208680510616,1.8838046697102564,-5.571887313584693,1.2905300474365395 +karman,karman_re100,ppo_state_offline,55,22.0,1.8287176521756479,,,,-1.841692471928643,,3.431208680510616,,-1.841692471928643,,-3.431208680510616,1.8287176521756479,-5.272901152439259,1.5895162085819732 +karman,karman_re100,ppo_state_offline,56,22.400000000000002,1.487685846368541,,,,-1.1446320119816256,,3.431208680510616,,-1.1446320119816256,,-3.431208680510616,1.487685846368541,-4.575840692492242,2.2865766685289906 +karman,karman_re100,ppo_state_offline,57,22.8,0.9198059497496378,,,,-0.10346079035675836,,3.431208680510616,,-0.10346079035675836,,-3.431208680510616,0.9198059497496378,-3.5346694708673745,3.3277478901538577 +karman,karman_re100,ppo_state_offline,58,23.200000000000003,0.19822635216834267,,,,0.8330076193685223,,3.431208680510616,,0.8330076193685223,,-3.431208680510616,0.19822635216834267,-2.5982010611420936,4.264216299879139 +karman,karman_re100,ppo_state_offline,59,23.6,-0.5640515011027845,,,,1.1609427175429574,,3.431208680510616,,1.1609427175429574,,-3.431208680510616,-0.5640515011027845,-2.2702659629676587,4.5921513980535735 +karman,karman_re100,ppo_state_offline,60,24.0,-1.1828321572997171,,,,1.2382534583484484,,3.431208680510616,,1.2382534583484484,,-3.431208680510616,-1.1828321572997171,-2.1929552221621678,4.669462138859064 +karman,karman_re100,ppo_state_offline,61,24.400000000000002,-1.7216353532328597,,,,2.0954604013515605,,3.431208680510616,,2.0954604013515605,,-3.431208680510616,-1.7216353532328597,-1.3357482791590556,5.526669081862177 +karman,karman_re100,ppo_state_offline,62,24.8,-2.25937934738193,,,,2.8378934703003815,,3.431208680510616,,2.8378934703003815,,-3.431208680510616,-2.25937934738193,-0.5933152102102346,6.269102150810998 +karman,karman_re100,ppo_state_offline,63,25.200000000000003,-2.516239598402819,,,,2.8990616610721274,,3.431208680510616,,2.8990616610721274,,-3.431208680510616,-2.516239598402819,-0.5321470194384887,6.330270341582743 +karman,karman_re100,ppo_state_offline,64,25.6,-2.402637054674804,,,,2.1716370629130544,,3.431208680510616,,2.1716370629130544,,-3.431208680510616,-2.402637054674804,-1.2595716175975618,5.6028457434236705 +karman,karman_re100,ppo_state_offline,65,26.0,-1.9936747881039212,,,,0.9528002774580336,,3.431208680510616,,0.9528002774580336,,-3.431208680510616,-1.9936747881039212,-2.4784084030525824,4.38400895796865 +karman,karman_re100,ppo_state_offline,66,26.400000000000002,-1.3286900948609688,,,,-0.14255356305081848,,3.431208680510616,,-0.14255356305081848,,-3.431208680510616,-1.3286900948609688,-3.5737622435614345,3.2886551174597978 +karman,karman_re100,ppo_state_offline,67,26.8,-0.5046953644727,,,,-0.8784185943213917,,3.431208680510616,,-0.8784185943213917,,-3.431208680510616,-0.5046953644727,-4.309627274832008,2.5527900861892245 +karman,karman_re100,ppo_state_offline,68,27.200000000000003,0.32764308855420565,,,,-0.9952319536156587,,3.431208680510616,,-0.9952319536156587,,-3.431208680510616,0.32764308855420565,-4.4264406341262745,2.4359767268949573 +karman,karman_re100,ppo_state_offline,69,27.6,0.9509163835725307,,,,-0.9329704093614638,,3.431208680510616,,-0.9329704093614638,,-3.431208680510616,0.9509163835725307,-4.36417908987208,2.498238271149152 +karman,karman_re100,ppo_state_offline,70,28.0,1.3815846499501763,,,,-1.333120123420688,,3.431208680510616,,-1.333120123420688,,-3.431208680510616,1.3815846499501763,-4.7643288039313045,2.098088557089928 +karman,karman_re100,ppo_state_offline,71,28.400000000000002,1.731044826627029,,,,-1.9044425730755732,,3.431208680510616,,-1.9044425730755732,,-3.431208680510616,1.731044826627029,-5.335651253586189,1.526766107435043 +karman,karman_re100,ppo_state_offline,72,28.8,1.9142440226576731,,,,-2.129927488762984,,3.431208680510616,,-2.129927488762984,,-3.431208680510616,1.9142440226576731,-5.561136169273601,1.301281191747632 +karman,karman_re100,ppo_state_offline,73,29.200000000000003,1.8512379444337803,,,,-1.842386408456249,,3.431208680510616,,-1.842386408456249,,-3.431208680510616,1.8512379444337803,-5.273595088966865,1.5888222720543672 +karman,karman_re100,ppo_state_offline,74,29.6,1.4936180157165595,,,,-1.0996101773895637,,3.431208680510616,,-1.0996101773895637,,-3.431208680510616,1.4936180157165595,-4.530818857900179,2.3315985031210524 +karman,karman_re100,ppo_state_offline,75,30.0,0.9084369796948186,,,,-0.05704164346755558,,3.431208680510616,,-0.05704164346755558,,-3.431208680510616,0.9084369796948186,-3.4882503239781717,3.3741670370430605 +karman,karman_re100,ppo_state_offline,76,30.400000000000002,0.179691293580339,,,,0.8141994730878288,,3.431208680510616,,0.8141994730878288,,-3.431208680510616,0.179691293580339,-2.6170092074227873,4.245408153598445 +karman,karman_re100,ppo_state_offline,77,30.8,-0.585507818597645,,,,1.09528030576931,,3.431208680510616,,1.09528030576931,,-3.431208680510616,-0.585507818597645,-2.3359283747413064,4.526488986279926 +karman,karman_re100,ppo_state_offline,78,31.200000000000003,-1.2054630050760564,,,,1.26738280669496,,3.431208680510616,,1.26738280669496,,-3.431208680510616,-1.2054630050760564,-2.1638258738156564,4.698591487205576 +karman,karman_re100,ppo_state_offline,79,31.6,-1.7530780530077608,,,,2.1932421174755934,,3.431208680510616,,2.1932421174755934,,-3.431208680510616,-1.7530780530077608,-1.2379665630350227,5.62445079798621 +karman,karman_re100,ppo_state_offline,80,32.0,-2.266479054041902,,,,2.920292038628427,,3.431208680510616,,2.920292038628427,,-3.431208680510616,-2.266479054041902,-0.5109166418821891,6.351500719139043 +karman,karman_re100,ppo_state_offline,81,32.4,-2.535694972017654,,,,2.9611669249740653,,3.431208680510616,,2.9611669249740653,,-3.431208680510616,-2.535694972017654,-0.4700417555365508,6.392375605484681 +karman,karman_re100,ppo_state_offline,82,32.800000000000004,-2.4520677588592332,,,,2.2201382477538316,,3.431208680510616,,2.2201382477538316,,-3.431208680510616,-2.4520677588592332,-1.2110704327567845,5.651346928264448 +karman,karman_re100,ppo_state_offline,83,33.2,-2.037471423241231,,,,0.9984511918509003,,3.431208680510616,,0.9984511918509003,,-3.431208680510616,-2.037471423241231,-2.432757488659716,4.429659872361516 +karman,karman_re100,ppo_state_offline,84,33.6,-1.3920073713286814,,,,-0.08218900193264189,,3.431208680510616,,-0.08218900193264189,,-3.431208680510616,-1.3920073713286814,-3.513397682443258,3.3490196785779744 +karman,karman_re100,ppo_state_offline,85,34.0,-0.6013512679529945,,,,-0.8513779066203885,,3.431208680510616,,-0.8513779066203885,,-3.431208680510616,-0.6013512679529945,-4.2825865871310045,2.5798307738902277 +karman,karman_re100,ppo_state_offline,86,34.4,0.23166354952636192,,,,-1.0382249601763738,,3.431208680510616,,-1.0382249601763738,,-3.431208680510616,0.23166354952636192,-4.46943364068699,2.392983720334242 +karman,karman_re100,ppo_state_offline,87,34.800000000000004,0.8686600588398735,,,,-0.9306459199135722,,3.431208680510616,,-0.9306459199135722,,-3.431208680510616,0.8686600588398735,-4.361854600424188,2.500562760597044 +karman,karman_re100,ppo_state_offline,88,35.2,1.2997312978613922,,,,-1.2139681158156361,,3.431208680510616,,-1.2139681158156361,,-3.431208680510616,1.2997312978613922,-4.645176796326252,2.21724056469498 +karman,karman_re100,ppo_state_offline,89,35.6,1.6386227221961327,,,,-1.8242434242398624,,3.431208680510616,,-1.8242434242398624,,-3.431208680510616,1.6386227221961327,-5.2554521047504785,1.6069652562707537 +karman,karman_re100,ppo_state_offline,90,36.0,1.844956348608538,,,,-2.113608866418099,,3.431208680510616,,-2.113608866418099,,-3.431208680510616,1.844956348608538,-5.544817546928716,1.317599814092517 +karman,karman_re100,ppo_state_offline,91,36.4,1.8117279774154689,,,,-1.8914981752285673,,3.431208680510616,,-1.8914981752285673,,-3.431208680510616,1.8117279774154689,-5.322706855739184,1.5397105052820488 +karman,karman_re100,ppo_state_offline,92,36.800000000000004,1.4987330066257847,,,,-1.2452843233728836,,3.431208680510616,,-1.2452843233728836,,-3.431208680510616,1.4987330066257847,-4.6764930038834995,2.1859243571377327 +karman,karman_re100,ppo_state_offline,93,37.2,0.959219280589083,,,,-0.2563704197701967,,3.431208680510616,,-0.2563704197701967,,-3.431208680510616,0.959219280589083,-3.687579100280813,3.1748382607404193 +karman,karman_re100,ppo_state_offline,94,37.6,0.26005664581622284,,,,0.7131073234718549,,3.431208680510616,,0.7131073234718549,,-3.431208680510616,0.26005664581622284,-2.718101357038761,4.144316003982471 +karman,karman_re100,ppo_state_offline,95,38.0,-0.4959634876256121,,,,1.1402771720440115,,3.431208680510616,,1.1402771720440115,,-3.431208680510616,-0.4959634876256121,-2.2909315084666044,4.571485852554628 +karman,karman_re100,ppo_state_offline,96,38.400000000000006,-1.134605309468966,,,,1.19864670370678,,3.431208680510616,,1.19864670370678,,-3.431208680510616,-1.134605309468966,-2.232561976803836,4.629855384217397 +karman,karman_re100,ppo_state_offline,97,38.800000000000004,-1.6735890794151798,,,,2.030356122818414,,3.431208680510616,,2.030356122818414,,-3.431208680510616,-1.6735890794151798,-1.4008525576922022,5.46156480332903 +karman,karman_re100,ppo_state_offline,98,39.2,-2.2140974055174834,,,,2.885461007542312,,3.431208680510616,,2.885461007542312,,-3.431208680510616,-2.2140974055174834,-0.5457476729683042,6.316669688052928 +karman,karman_re100,ppo_state_offline,99,39.6,-2.5365639650306426,,,,3.031501989871237,,3.431208680510616,,3.031501989871237,,-3.431208680510616,-2.5365639650306426,-0.39970669063937914,6.462710670381853 +karman,karman_re100,ppo_state_offline,100,40.0,-2.4987857680653978,,,,2.424971548436434,,3.431208680510616,,2.424971548436434,,-3.431208680510616,-2.4987857680653978,-1.0062371320741823,5.85618022894705 +karman,karman_re100,ppo_state_offline,101,40.400000000000006,-2.127324910065984,,,,1.2298325888270747,,3.431208680510616,,1.2298325888270747,,-3.431208680510616,-2.127324910065984,-2.2013760916835414,4.661041269337691 +karman,karman_re100,ppo_state_offline,102,40.800000000000004,-1.5029138700058728,,,,0.08632460786416708,,3.431208680510616,,0.08632460786416708,,-3.431208680510616,-1.5029138700058728,-3.344884072646449,3.5175332883747834 +karman,karman_re100,ppo_state_offline,103,41.2,-0.7342123720535425,,,,-0.7783404019835786,,3.431208680510616,,-0.7783404019835786,,-3.431208680510616,-0.7342123720535425,-4.209549082494195,2.6528682785270377 +karman,karman_re100,ppo_state_offline,104,41.6,0.10896656568128471,,,,-1.063367751266333,,3.431208680510616,,-1.063367751266333,,-3.431208680510616,0.10896656568128471,-4.494576431776949,2.367840929244283 +karman,karman_re100,ppo_state_offline,105,42.0,0.784303334660611,,,,-0.9464992789788689,,3.431208680510616,,-0.9464992789788689,,-3.431208680510616,0.784303334660611,-4.377707959489485,2.484709401531747 +karman,karman_re100,ppo_state_offline,106,42.400000000000006,1.2364314705176376,,,,-1.1672383874178076,,3.431208680510616,,-1.1672383874178076,,-3.431208680510616,1.2364314705176376,-4.598447067928424,2.2639702930928083 +karman,karman_re100,ppo_state_offline,107,42.800000000000004,1.591142190712987,,,,-1.7600728694284815,,3.431208680510616,,-1.7600728694284815,,-3.431208680510616,1.591142190712987,-5.191281549939098,1.6711358110821346 +karman,karman_re100,ppo_state_offline,108,43.2,1.8158110724216248,,,,-2.0941625055863473,,3.431208680510616,,-2.0941625055863473,,-3.431208680510616,1.8158110724216248,-5.525371186096963,1.3370461749242688 +karman,karman_re100,ppo_state_offline,109,43.6,1.811039647215164,,,,-1.915623964123615,,3.431208680510616,,-1.915623964123615,,-3.431208680510616,1.811039647215164,-5.346832644634231,1.515584716387001 +karman,karman_re100,ppo_state_offline,110,44.0,1.5238962861659624,,,,-1.3018719697528305,,3.431208680510616,,-1.3018719697528305,,-3.431208680510616,1.5238962861659624,-4.733080650263447,2.1293367107577854 +karman,karman_re100,ppo_state_offline,111,44.400000000000006,1.0063495197987782,,,,-0.327209190020941,,3.431208680510616,,-0.327209190020941,,-3.431208680510616,1.0063495197987782,-3.758417870531557,3.103999490489675 +karman,karman_re100,ppo_state_offline,112,44.800000000000004,0.31596873108024365,,,,0.6664238778086451,,3.431208680510616,,0.6664238778086451,,-3.431208680510616,0.31596873108024365,-2.7647848027019712,4.097632558319261 +karman,karman_re100,ppo_state_offline,113,45.2,-0.44104053847600494,,,,1.1354786877357428,,3.431208680510616,,1.1354786877357428,,-3.431208680510616,-0.44104053847600494,-2.2957299927748736,4.566687368246359 +karman,karman_re100,ppo_state_offline,114,45.6,-1.0939658113730726,,,,1.1786358153093492,,3.431208680510616,,1.1786358153093492,,-3.431208680510616,-1.0939658113730726,-2.252572865201267,4.609844495819965 +karman,karman_re100,ppo_state_offline,115,46.0,-1.6325563322330383,,,,1.9596042849409174,,3.431208680510616,,1.9596042849409174,,-3.431208680510616,-1.6325563322330383,-1.4716043955696987,5.390812965451533 +karman,karman_re100,ppo_state_offline,116,46.400000000000006,-2.1788250448319784,,,,2.8459388254634095,,3.431208680510616,,2.8459388254634095,,-3.431208680510616,-2.1788250448319784,-0.5852698550472066,6.277147505974026 +karman,karman_re100,ppo_state_offline,117,46.800000000000004,-2.5219278352138788,,,,3.0298019367261046,,3.431208680510616,,3.0298019367261046,,-3.431208680510616,-2.5219278352138788,-0.40140674378451147,6.46101061723672 +karman,karman_re100,ppo_state_offline,118,47.2,-2.504533855815631,,,,2.4491004583711513,,3.431208680510616,,2.4491004583711513,,-3.431208680510616,-2.504533855815631,-0.9821082221394648,5.880309138881767 +karman,karman_re100,ppo_state_offline,119,47.6,-2.148277311956874,,,,1.283437891495026,,3.431208680510616,,1.283437891495026,,-3.431208680510616,-2.148277311956874,-2.14777078901559,4.714646572005642 +karman,karman_re100,ppo_state_offline,120,48.0,-1.5347428480974,,,,0.12580606418152215,,3.431208680510616,,0.12580606418152215,,-3.431208680510616,-1.5347428480974,-3.305402616329094,3.5570147446921383 +karman,karman_re100,ppo_state_offline,121,48.400000000000006,-0.7725190155158543,,,,-0.7551993391658799,,3.431208680510616,,-0.7551993391658799,,-3.431208680510616,-0.7725190155158543,-4.186408019676496,2.676009341344736 +karman,karman_re100,ppo_state_offline,122,48.800000000000004,0.07361966327062726,,,,-1.0849214989816138,,3.431208680510616,,-1.0849214989816138,,-3.431208680510616,0.07361966327062726,-4.5161301794922295,2.3462871815290023 +karman,karman_re100,ppo_state_offline,123,49.2,0.76466134865902,,,,-0.962385827636754,,3.431208680510616,,-0.962385827636754,,-3.431208680510616,0.76466134865902,-4.39359450814737,2.468822852873862 +karman,karman_re100,ppo_state_offline,124,49.6,1.2237252670903886,,,,-1.1465500050432273,,3.431208680510616,,-1.1465500050432273,,-3.431208680510616,1.2237252670903886,-4.577758685553843,2.284658675467389 +karman,karman_re100,ppo_state_offline,125,50.0,1.5807694191168042,,,,-1.7423190255729026,,3.431208680510616,,-1.7423190255729026,,-3.431208680510616,1.5807694191168042,-5.173527706083519,1.6888896549377135 +karman,karman_re100,ppo_state_offline,126,50.400000000000006,1.8167836945830051,,,,-2.103122934356039,,3.431208680510616,,-2.103122934356039,,-3.431208680510616,1.8167836945830051,-5.534331614866655,1.328085746154577 +karman,karman_re100,ppo_state_offline,127,50.800000000000004,1.82642022858766,,,,-1.9509494135672116,,3.431208680510616,,-1.9509494135672116,,-3.431208680510616,1.82642022858766,-5.382158094077828,1.4802592669434045 +karman,karman_re100,ppo_state_offline,128,51.2,1.5526551064370238,,,,-1.3451116145703952,,3.431208680510616,,-1.3451116145703952,,-3.431208680510616,1.5526551064370238,-4.776320295081011,2.086097065940221 +karman,karman_re100,ppo_state_offline,129,51.6,1.042468784593534,,,,-0.39071732319309094,,3.431208680510616,,-0.39071732319309094,,-3.431208680510616,1.042468784593534,-3.821926003703707,3.040491357317525 +karman,karman_re100,ppo_state_offline,130,52.0,0.3571494017677446,,,,0.6298276323589213,,3.431208680510616,,0.6298276323589213,,-3.431208680510616,0.3571494017677446,-2.8013810481516948,4.061036312869537 +karman,karman_re100,ppo_state_offline,131,52.400000000000006,-0.40415456672250466,,,,1.1410667189576063,,3.431208680510616,,1.1410667189576063,,-3.431208680510616,-0.40415456672250466,-2.29014196155301,4.572275399468222 +karman,karman_re100,ppo_state_offline,132,52.800000000000004,-1.0697783951801503,,,,1.1713858685246625,,3.431208680510616,,1.1713858685246625,,-3.431208680510616,-1.0697783951801503,-2.259822811985954,4.602594549035278 +karman,karman_re100,ppo_state_offline,133,53.2,-1.6106335725709002,,,,1.912872729593038,,3.431208680510616,,1.912872729593038,,-3.431208680510616,-1.6106335725709002,-1.5183359509175782,5.344081410103654 +karman,karman_re100,ppo_state_offline,134,53.6,-2.1645446462649622,,,,2.8247659968337078,,3.431208680510616,,2.8247659968337078,,-3.431208680510616,-2.1645446462649622,-0.6064426836769083,6.255974677344324 +karman,karman_re100,ppo_state_offline,135,54.0,-2.524323915171929,,,,3.0514521321794805,,3.431208680510616,,3.0514521321794805,,-3.431208680510616,-2.524323915171929,-0.3797565483311356,6.482660812690097 +karman,karman_re100,ppo_state_offline,136,54.400000000000006,-2.527787188879223,,,,2.517988578828137,,3.431208680510616,,2.517988578828137,,-3.431208680510616,-2.527787188879223,-0.9132201016824792,5.949197259338753 +karman,karman_re100,ppo_state_offline,137,54.800000000000004,-2.1898966693826085,,,,1.3717094191299317,,3.431208680510616,,1.3717094191299317,,-3.431208680510616,-2.1898966693826085,-2.0594992613806844,4.802918099640548 +karman,karman_re100,ppo_state_offline,138,55.2,-1.5861201951984942,,,,0.19926117915076375,,3.431208680510616,,0.19926117915076375,,-3.431208680510616,-1.5861201951984942,-3.231947501359852,3.63046985966138 +karman,karman_re100,ppo_state_offline,139,55.6,-0.8343899793864965,,,,-0.7017147674471151,,3.431208680510616,,-0.7017147674471151,,-3.431208680510616,-0.8343899793864965,-4.132923447957731,2.729493913063501 +karman,karman_re100,ppo_state_offline,140,56.0,0.011930699756840166,,,,-1.0742944350281343,,3.431208680510616,,-1.0742944350281343,,-3.431208680510616,0.011930699756840166,-4.50550311553875,2.356914245482482 +karman,karman_re100,ppo_state_offline,141,56.400000000000006,0.719524238963405,,,,-0.9682606900165837,,3.431208680510616,,-0.9682606900165837,,-3.431208680510616,0.719524238963405,-4.3994693705272,2.4629479904940323 +karman,karman_re100,ppo_state_offline,142,56.800000000000004,1.1916500920717708,,,,-1.1146350146068498,,3.431208680510616,,-1.1146350146068498,,-3.431208680510616,1.1916500920717708,-4.545843695117465,2.3165736659037663 +karman,karman_re100,ppo_state_offline,143,57.2,1.5523832464217708,,,,-1.6978390339167229,,3.431208680510616,,-1.6978390339167229,,-3.431208680510616,1.5523832464217708,-5.1290477144273385,1.7333696465938933 +karman,karman_re100,ppo_state_offline,144,57.6,1.80178615034126,,,,-2.086263991533648,,3.431208680510616,,-2.086263991533648,,-3.431208680510616,1.80178615034126,-5.5174726720442635,1.3449446889769683 +karman,karman_re100,ppo_state_offline,145,58.0,1.8316414238340544,,,,-1.9780819055082646,,3.431208680510616,,-1.9780819055082646,,-3.431208680510616,1.8316414238340544,-5.409290586018881,1.4531267750023515 +karman,karman_re100,ppo_state_offline,146,58.400000000000006,1.5770529333129908,,,,-1.403867698414733,,3.431208680510616,,-1.403867698414733,,-3.431208680510616,1.5770529333129908,-4.835076378925349,2.0273409820958834 +karman,karman_re100,ppo_state_offline,147,58.800000000000004,1.0825039569230372,,,,-0.4692195399233395,,3.431208680510616,,-0.4692195399233395,,-3.431208680510616,1.0825039569230372,-3.9004282204339558,2.9619891405872765 +karman,karman_re100,ppo_state_offline,148,59.2,0.4108558017689884,,,,0.5575105550254531,,3.431208680510616,,0.5575105550254531,,-3.431208680510616,0.4108558017689884,-2.873698125485163,3.9887192355360694 +karman,karman_re100,ppo_state_offline,149,59.6,-0.3462589284276701,,,,1.1172046198532155,,3.431208680510616,,1.1172046198532155,,-3.431208680510616,-0.3462589284276701,-2.3140040606574006,4.548413300363832 +karman,karman_re100,ppo_state_offline,150,60.0,-1.0251011342805463,,,,1.1523122055032615,,3.431208680510616,,1.1523122055032615,,-3.431208680510616,-1.0251011342805463,-2.278896475007355,4.583520886013877 +karman,karman_re100,ppo_state_offline,151,60.400000000000006,-1.5647312322101075,,,,1.8264009000039487,,3.431208680510616,,1.8264009000039487,,-3.431208680510616,-1.5647312322101075,-1.6048077805066674,5.257609580514565 +karman,karman_re100,ppo_state_offline,152,60.800000000000004,-2.120963394589026,,,,2.7749380656414995,,3.431208680510616,,2.7749380656414995,,-3.431208680510616,-2.120963394589026,-0.6562706148691166,6.206146746152116 +karman,karman_re100,ppo_state_offline,153,61.2,-2.5036792483399513,,,,3.0563772089016816,,3.431208680510616,,3.0563772089016816,,-3.431208680510616,-2.5036792483399513,-0.3748314716089345,6.487585889412298 +karman,karman_re100,ppo_state_offline,154,61.6,-2.534811060669678,,,,2.589409156547123,,3.431208680510616,,2.589409156547123,,-3.431208680510616,-2.534811060669678,-0.841799523963493,6.020617837057739 +karman,karman_re100,ppo_state_offline,155,62.0,-2.2228683208944444,,,,1.4674814901981506,,3.431208680510616,,1.4674814901981506,,-3.431208680510616,-2.2228683208944444,-1.9637271903124656,4.8986901707087664 +karman,karman_re100,ppo_state_offline,156,62.400000000000006,-1.6368049053180522,,,,0.28328717935942477,,3.431208680510616,,0.28328717935942477,,-3.431208680510616,-1.6368049053180522,-3.1479215011511914,3.714495859870041 +karman,karman_re100,ppo_state_offline,157,62.800000000000004,-0.8953607260802225,,,,-0.6486309067728128,,3.431208680510616,,-0.6486309067728128,,-3.431208680510616,-0.8953607260802225,-4.079839587283429,2.7825777737378035 +karman,karman_re100,ppo_state_offline,158,63.2,-0.047577371623623174,,,,-1.071975426430395,,3.431208680510616,,-1.071975426430395,,-3.431208680510616,-0.047577371623623174,-4.503184106941011,2.3592332540802214 +karman,karman_re100,ppo_state_offline,159,63.6,0.677430070006866,,,,-0.9719794468448649,,3.431208680510616,,-0.9719794468448649,,-3.431208680510616,0.677430070006866,-4.403188127355481,2.4592292336657513 +karman,karman_re100,ppo_state_offline,160,64.0,1.1621960152305892,,,,-1.0863547412964194,,3.431208680510616,,-1.0863547412964194,,-3.431208680510616,1.1621960152305892,-4.5175634218070355,2.3448539392141967 +karman,karman_re100,ppo_state_offline,161,64.4,1.5295029605324655,,,,-1.6541896955502795,,3.431208680510616,,-1.6541896955502795,,-3.431208680510616,1.5295029605324655,-5.085398376060896,1.7770189849603366 +karman,karman_re100,ppo_state_offline,162,64.8,1.7911566590638437,,,,-2.0767140668809168,,3.431208680510616,,-2.0767140668809168,,-3.431208680510616,1.7911566590638437,-5.507922747391532,1.3544946136296994 +karman,karman_re100,ppo_state_offline,163,65.2,1.8380611474573452,,,,-1.9953097399950679,,3.431208680510616,,-1.9953097399950679,,-3.431208680510616,1.8380611474573452,-5.426518420505684,1.4358989405155482 +karman,karman_re100,ppo_state_offline,164,65.60000000000001,1.6038150942853546,,,,-1.4532533554488247,,3.431208680510616,,-1.4532533554488247,,-3.431208680510616,1.6038150942853546,-4.884462035959441,1.9779553250617914 +karman,karman_re100,ppo_state_offline,165,66.0,1.1243376544146928,,,,-0.5408082731699125,,3.431208680510616,,-0.5408082731699125,,-3.431208680510616,1.1243376544146928,-3.9720169536805288,2.8904004073407035 +karman,karman_re100,ppo_state_offline,166,66.4,0.4618749145812428,,,,0.5037747776747116,,3.431208680510616,,0.5037747776747116,,-3.431208680510616,0.4618749145812428,-2.9274339028359044,3.934983458185328 +karman,karman_re100,ppo_state_offline,167,66.8,-0.29443693946429406,,,,1.1045992734864596,,3.431208680510616,,1.1045992734864596,,-3.431208680510616,-0.29443693946429406,-2.3266094070241565,4.535807953997075 +karman,karman_re100,ppo_state_offline,168,67.2,-0.98473980097243,,,,1.1470457174903281,,3.431208680510616,,1.1470457174903281,,-3.431208680510616,-0.98473980097243,-2.2841629630202878,4.5782543980009445 +karman,karman_re100,ppo_state_offline,169,67.60000000000001,-1.5256705912336643,,,,1.755956141980814,,3.431208680510616,,1.755956141980814,,-3.431208680510616,-1.5256705912336643,-1.675252538529802,5.187164822491431 +karman,karman_re100,ppo_state_offline,170,68.0,-2.084037851507975,,,,2.731578679472692,,3.431208680510616,,2.731578679472692,,-3.431208680510616,-2.084037851507975,-0.6996300010379239,6.162787359983309 +karman,karman_re100,ppo_state_offline,171,68.4,-2.4912881503394946,,,,3.0651895024714264,,3.431208680510616,,3.0651895024714264,,-3.431208680510616,-2.4912881503394946,-0.3660191780391897,6.496398182982043 +karman,karman_re100,ppo_state_offline,172,68.8,-2.5437940295225245,,,,2.643202102209869,,3.431208680510616,,2.643202102209869,,-3.431208680510616,-2.5437940295225245,-0.788006578300747,6.074410782720485 +karman,karman_re100,ppo_state_offline,173,69.2,-2.252221388175818,,,,1.5530917605924783,,3.431208680510616,,1.5530917605924783,,-3.431208680510616,-2.252221388175818,-1.8781169199181378,4.984300441103095 +karman,karman_re100,ppo_state_offline,174,69.60000000000001,-1.6816761045724864,,,,0.3532916424203311,,3.431208680510616,,0.3532916424203311,,-3.431208680510616,-1.6816761045724864,-3.077917038090285,3.7845003229309473 +karman,karman_re100,ppo_state_offline,175,70.0,-0.9446912199013611,,,,-0.5900555387376609,,3.431208680510616,,-0.5900555387376609,,-3.431208680510616,-0.9446912199013611,-4.021264219248277,2.8411531417729554 +karman,karman_re100,ppo_state_offline,176,70.4,-0.10303674830895394,,,,-1.0692310429625083,,3.431208680510616,,-1.0692310429625083,,-3.431208680510616,-0.10303674830895394,-4.500439723473124,2.361977637548108 +karman,karman_re100,ppo_state_offline,177,70.8,0.6392022584010104,,,,-0.9856066672733349,,3.431208680510616,,-0.9856066672733349,,-3.431208680510616,0.6392022584010104,-4.416815347783951,2.445602013237281 +karman,karman_re100,ppo_state_offline,178,71.2,1.1371031093837278,,,,-1.064071127035868,,3.431208680510616,,-1.064071127035868,,-3.431208680510616,1.1371031093837278,-4.495279807546484,2.3671375534747483 +karman,karman_re100,ppo_state_offline,179,71.60000000000001,1.5101528144590564,,,,-1.613577813889029,,3.431208680510616,,-1.613577813889029,,-3.431208680510616,1.5101528144590564,-5.044786494399645,1.817630866621587 +karman,karman_re100,ppo_state_offline,180,72.0,1.781358332164271,,,,-2.0645978863902466,,3.431208680510616,,-2.0645978863902466,,-3.431208680510616,1.781358332164271,-5.495806566900862,1.3666107941203696 +karman,karman_re100,ppo_state_offline,181,72.4,1.8452938759376174,,,,-2.020517235565991,,3.431208680510616,,-2.020517235565991,,-3.431208680510616,1.8452938759376174,-5.451725916076607,1.410691444944625 +karman,karman_re100,ppo_state_offline,182,72.8,1.6309346293003069,,,,-1.5064101418793192,,3.431208680510616,,-1.5064101418793192,,-3.431208680510616,1.6309346293003069,-4.937618822389935,1.924798538631297 +karman,karman_re100,ppo_state_offline,183,73.2,1.164061162302408,,,,-0.616256438398674,,3.431208680510616,,-0.616256438398674,,-3.431208680510616,1.164061162302408,-4.04746511890929,2.814952242111942 +karman,karman_re100,ppo_state_offline,184,73.60000000000001,0.5115065944898334,,,,0.4359209393152014,,3.431208680510616,,0.4359209393152014,,-3.431208680510616,0.5115065944898334,-2.9952877411954146,3.8671296198258176 +karman,karman_re100,ppo_state_offline,185,74.0,-0.24274487543471426,,,,1.088669487010707,,3.431208680510616,,1.088669487010707,,-3.431208680510616,-0.24274487543471426,-2.342539193499909,4.519878167521323 +karman,karman_re100,ppo_state_offline,186,74.4,-0.9427769666435437,,,,1.1428894061248946,,3.431208680510616,,1.1428894061248946,,-3.431208680510616,-0.9427769666435437,-2.2883192743857217,4.5740980866355105 +karman,karman_re100,ppo_state_offline,187,74.8,-1.4890195721562567,,,,1.6868901222626378,,3.431208680510616,,1.6868901222626378,,-3.431208680510616,-1.4890195721562567,-1.7443185582479783,5.118098802773254 +karman,karman_re100,ppo_state_offline,188,75.2,-2.048725886195064,,,,2.684946692902578,,3.431208680510616,,2.684946692902578,,-3.431208680510616,-2.048725886195064,-0.7462619876080381,6.116155373413195 +karman,karman_re100,ppo_state_offline,189,75.60000000000001,-2.471421900915228,,,,3.0633079722879204,,3.431208680510616,,3.0633079722879204,,-3.431208680510616,-2.471421900915228,-0.3679007082226957,6.494516652798536 +karman,karman_re100,ppo_state_offline,190,76.0,-2.5560220026338683,,,,2.6779281597909854,,3.431208680510616,,2.6779281597909854,,-3.431208680510616,-2.5560220026338683,-0.7532805207196307,6.109136840301602 +karman,karman_re100,ppo_state_offline,191,76.4,-2.2827982473239925,,,,1.6325879903961669,,3.431208680510616,,1.6325879903961669,,-3.431208680510616,-2.2827982473239925,-1.7986206901144492,5.0637966709067825 +karman,karman_re100,ppo_state_offline,192,76.80000000000001,-1.7255510165686712,,,,0.4305626470622184,,3.431208680510616,,0.4305626470622184,,-3.431208680510616,-1.7255510165686712,-3.0006460334483975,3.8617713275728347 +karman,karman_re100,ppo_state_offline,193,77.2,-1.0002533375655163,,,,-0.540510784803317,,3.431208680510616,,-0.540510784803317,,-3.431208680510616,-1.0002533375655163,-3.9717194653139334,2.890697895707299 +karman,karman_re100,ppo_state_offline,194,77.60000000000001,-0.16181173014823302,,,,-1.0538213282678663,,3.431208680510616,,-1.0538213282678663,,-3.431208680510616,-0.16181173014823302,-4.485030008778482,2.3773873522427498 +karman,karman_re100,ppo_state_offline,195,78.0,0.5951002413945335,,,,-0.9931394868242112,,3.431208680510616,,-0.9931394868242112,,-3.431208680510616,0.5951002413945335,-4.424348167334827,2.438069193686405 +karman,karman_re100,ppo_state_offline,196,78.4,1.106831587704914,,,,-1.0374953981227781,,3.431208680510616,,-1.0374953981227781,,-3.431208680510616,1.106831587704914,-4.468704078633394,2.393713282387838 +karman,karman_re100,ppo_state_offline,197,78.80000000000001,1.4850315815356425,,,,-1.5680474781995113,,3.431208680510616,,-1.5680474781995113,,-3.431208680510616,1.4850315815356425,-4.999256158710128,1.8631612023111048 +karman,karman_re100,ppo_state_offline,198,79.2,1.7703963751357172,,,,-2.0272130075019534,,3.431208680510616,,-2.0272130075019534,,-3.431208680510616,1.7703963751357172,-5.458421688012569,1.4039956730086627 +karman,karman_re200,ppo_state_offline,2,0.8,-2.7888089005647556,,,,0.6641709439044075,,3.431208680510616,,0.6641709439044075,,-3.431208680510616,-2.7888089005647556,-2.7670377366062087,4.095379624415024 +karman,karman_re200,ppo_state_offline,3,1.2000000000000002,-2.443732050385671,,,,-1.0607013176672782,,3.431208680510616,,-1.0607013176672782,,-3.431208680510616,-2.443732050385671,-4.491909998177894,2.370507362843338 +karman,karman_re200,ppo_state_offline,4,1.6,-1.0969337386390519,,,,-1.4533692145312092,,3.431208680510616,,-1.4533692145312092,,-3.431208680510616,-1.0969337386390519,-4.884577895041826,1.977839465979407 +karman,karman_re200,ppo_state_offline,5,2.0,-0.024053670100778485,,,,-0.3897889280756399,,3.431208680510616,,-0.3897889280756399,,-3.431208680510616,-0.024053670100778485,-3.8209976085862563,3.041419752434976 +karman,karman_re200,ppo_state_offline,6,2.4000000000000004,0.7597689117799197,,,,-0.3851731387724452,,3.431208680510616,,-0.3851731387724452,,-3.431208680510616,0.7597689117799197,-3.816381819283061,3.046035541738171 +karman,karman_re200,ppo_state_offline,7,2.8000000000000003,1.4002421146422426,,,,-0.8030748697371977,,3.431208680510616,,-0.8030748697371977,,-3.431208680510616,1.4002421146422426,-4.234283550247814,2.6281338107734182 +karman,karman_re200,ppo_state_offline,8,3.2,1.9522302771162179,,,,-1.393604045275513,,3.431208680510616,,-1.393604045275513,,-3.431208680510616,1.9522302771162179,-4.8248127257861295,2.037604635235103 +karman,karman_re200,ppo_state_offline,9,3.6,2.3673737071500205,,,,-1.6540499338713979,,3.431208680510616,,-1.6540499338713979,,-3.431208680510616,2.3673737071500205,-5.085258614382014,1.7771587466392182 +karman,karman_re200,ppo_state_offline,10,4.0,2.7106135153348068,,,,-0.1412495774521028,,3.431208680510616,,-0.1412495774521028,,-3.431208680510616,2.7106135153348068,-3.572458257962719,3.2899591030585134 +karman,karman_re200,ppo_state_offline,11,4.4,2.117151360401606,,,,2.342065620854714,,3.431208680510616,,2.342065620854714,,-3.431208680510616,2.117151360401606,-1.089143059655902,5.77327430136533 +karman,karman_re200,ppo_state_offline,12,4.800000000000001,0.966066663148666,,,,1.4746712998770004,,3.431208680510616,,1.4746712998770004,,-3.431208680510616,0.966066663148666,-1.9565373806336157,4.905879980387617 +karman,karman_re200,ppo_state_offline,13,5.2,0.01085713480879905,,,,-0.3981941162757445,,3.431208680510616,,-0.3981941162757445,,-3.431208680510616,0.01085713480879905,-3.8294027967863604,3.033014564234872 +karman,karman_re200,ppo_state_offline,14,5.6000000000000005,-0.29590366487240677,,,,-0.9079147028905896,,3.431208680510616,,-0.9079147028905896,,-3.431208680510616,-0.29590366487240677,-4.339123383401206,2.5232939776200265 +karman,karman_re200,ppo_state_offline,15,6.0,-0.7085963365864436,,,,-0.14175366342026946,,3.431208680510616,,-0.14175366342026946,,-3.431208680510616,-0.7085963365864436,-3.5729623439308855,3.2894550170903467 +karman,karman_re200,ppo_state_offline,16,6.4,-1.0547177144135498,,,,0.9516206767086058,,3.431208680510616,,0.9516206767086058,,-3.431208680510616,-1.0547177144135498,-2.4795880038020104,4.382829357219222 +karman,karman_re200,ppo_state_offline,17,6.800000000000001,-1.3725404093643476,,,,1.6643341401986886,,3.431208680510616,,1.6643341401986886,,-3.431208680510616,-1.3725404093643476,-1.7668745403119275,5.095542820709305 +karman,karman_re200,ppo_state_offline,18,7.2,-1.6237610857621108,,,,1.9789366136403357,,3.431208680510616,,1.9789366136403357,,-3.431208680510616,-1.6237610857621108,-1.4522720668702804,5.410145294150952 +karman,karman_re200,ppo_state_offline,19,7.6000000000000005,-1.6943237002551441,,,,1.0807070297062318,,3.431208680510616,,1.0807070297062318,,-3.431208680510616,-1.6943237002551441,-2.350501650804384,4.511915710216848 +karman,karman_re200,ppo_state_offline,20,8.0,-1.199477955558486,,,,-0.7729749541762302,,3.431208680510616,,-0.7729749541762302,,-3.431208680510616,-1.199477955558486,-4.204183634686847,2.658233726334386 +karman,karman_re200,ppo_state_offline,21,8.4,-0.12209435220880398,,,,-1.07753026805967,,3.431208680510616,,-1.07753026805967,,-3.431208680510616,-0.12209435220880398,-4.5087389485702865,2.3536784124509462 +karman,karman_re200,ppo_state_offline,22,8.8,0.6907696588738654,,,,-0.3380603598473115,,3.431208680510616,,-0.3380603598473115,,-3.431208680510616,0.6907696588738654,-3.7692690403579276,3.0931483206633046 +karman,karman_re200,ppo_state_offline,23,9.200000000000001,1.113930850366821,,,,-0.2336876169235587,,3.431208680510616,,-0.2336876169235587,,-3.431208680510616,1.113930850366821,-3.6648962974341748,3.1975210635870575 +karman,karman_re200,ppo_state_offline,24,9.600000000000001,1.4672878648615257,,,,-0.9169029926485555,,3.431208680510616,,-0.9169029926485555,,-3.431208680510616,1.4672878648615257,-4.348111673159171,2.514305687862061 +karman,karman_re200,ppo_state_offline,25,10.0,1.8561412814653786,,,,-1.0972709200954287,,3.431208680510616,,-1.0972709200954287,,-3.431208680510616,1.8561412814653786,-4.528479600606045,2.3339377604151874 +karman,karman_re200,ppo_state_offline,26,10.4,2.1971234482888087,,,,0.31609509163310157,,3.431208680510616,,0.31609509163310157,,-3.431208680510616,2.1971234482888087,-3.1151135888775148,3.7473037721437175 +karman,karman_re200,ppo_state_offline,27,10.8,1.8688700843941406,,,,2.6122674227215508,,3.431208680510616,,2.6122674227215508,,-3.431208680510616,1.8688700843941406,-0.8189412577890653,6.043476103232167 +karman,karman_re200,ppo_state_offline,28,11.200000000000001,0.8385196497896801,,,,1.8780110209706542,,3.431208680510616,,1.8780110209706542,,-3.431208680510616,0.8385196497896801,-1.553197659539962,5.30921970148127 +karman,karman_re200,ppo_state_offline,29,11.600000000000001,0.017577361699080113,,,,0.009777532179885537,,3.431208680510616,,0.009777532179885537,,-3.431208680510616,0.017577361699080113,-3.4214311483307305,3.4409862126905018 +karman,karman_re200,ppo_state_offline,30,12.0,-0.23876635307283803,,,,-0.506422332789909,,3.431208680510616,,-0.506422332789909,,-3.431208680510616,-0.23876635307283803,-3.9376310133005252,2.924786347720707 +karman,karman_re200,ppo_state_offline,31,12.4,-0.4674275099834182,,,,0.40228100353925,,3.431208680510616,,0.40228100353925,,-3.431208680510616,-0.4674275099834182,-3.028927676971366,3.8334896840498662 +karman,karman_re200,ppo_state_offline,32,12.8,-0.722454337594239,,,,1.2810552441371859,,3.431208680510616,,1.2810552441371859,,-3.431208680510616,-0.722454337594239,-2.1501534363734303,4.712263924647802 +karman,karman_re200,ppo_state_offline,33,13.200000000000001,-0.9808874961605064,,,,1.3371333236988137,,3.431208680510616,,1.3371333236988137,,-3.431208680510616,-0.9808874961605064,-2.0940753568118025,4.76834200420943 +karman,karman_re200,ppo_state_offline,34,13.600000000000001,-1.3175728717090542,,,,2.0177822913400334,,3.431208680510616,,2.0177822913400334,,-3.431208680510616,-1.3175728717090542,-1.4134263891705827,5.44899097185065 +karman,karman_re200,ppo_state_offline,35,14.0,-1.6317079407302695,,,,-0.049939679636978825,,3.431208680510616,,-0.049939679636978825,,-3.431208680510616,-1.6317079407302695,-3.481148360147595,3.3812690008736372 +karman,karman_re200,ppo_state_offline,36,14.4,-0.7128608714018975,,,,-2.8896180801369336,,3.431208680510616,,-2.8896180801369336,,-3.431208680510616,-0.7128608714018975,-6.32082676064755,0.5415906003736826 +karman,karman_re200,ppo_state_offline,37,14.8,0.44896983332068946,,,,-2.2120351914183685,,3.431208680510616,,-2.2120351914183685,,-3.431208680510616,0.44896983332068946,-5.643243871928984,1.2191734890922477 +karman,karman_re200,ppo_state_offline,38,15.200000000000001,0.9386513144228491,,,,-1.0467519450465277,,3.431208680510616,,-1.0467519450465277,,-3.431208680510616,0.9386513144228491,-4.477960625557143,2.3844567354640884 +karman,karman_re200,ppo_state_offline,39,15.600000000000001,1.162614572206547,,,,-1.621931542996038,,3.431208680510616,,-1.621931542996038,,-3.431208680510616,1.162614572206547,-5.053140223506654,1.8092771375145782 +karman,karman_re200,ppo_state_offline,40,16.0,1.5720668350420604,,,,-2.4585253130683253,,3.431208680510616,,-2.4585253130683253,,-3.431208680510616,1.5720668350420604,-5.8897339935789415,0.9726833674422908 +karman,karman_re200,ppo_state_offline,41,16.400000000000002,2.0836533491836096,,,,-1.6384059889556672,,3.431208680510616,,-1.6384059889556672,,-3.431208680510616,2.0836533491836096,-5.069614669466283,1.7928026915549489 +karman,karman_re200,ppo_state_offline,42,16.8,2.4168452147566306,,,,1.3063685505652143,,3.431208680510616,,1.3063685505652143,,-3.431208680510616,2.4168452147566306,-2.124840129945402,4.73757723107583 +karman,karman_re200,ppo_state_offline,43,17.2,1.6098709614943063,,,,3.3742290652544074,,3.431208680510616,,3.3742290652544074,,-3.431208680510616,1.6098709614943063,-0.05697961525620876,6.8054377457650235 +karman,karman_re200,ppo_state_offline,44,17.6,0.4745776435501958,,,,0.9187147181155393,,3.431208680510616,,0.9187147181155393,,-3.431208680510616,0.4745776435501958,-2.5124939623950766,4.349923398626156 +karman,karman_re200,ppo_state_offline,45,18.0,-0.2825258810718582,,,,-1.1930845542773019,,3.431208680510616,,-1.1930845542773019,,-3.431208680510616,-0.2825258810718582,-4.624293234787918,2.2381241262333145 +karman,karman_re200,ppo_state_offline,46,18.400000000000002,-0.33249996118829245,,,,-0.7770744778442532,,3.431208680510616,,-0.7770744778442532,,-3.431208680510616,-0.33249996118829245,-4.208283158354869,2.654134202666363 +karman,karman_re200,ppo_state_offline,47,18.8,-0.536439283634908,,,,0.8608883996011909,,3.431208680510616,,0.8608883996011909,,-3.431208680510616,-0.536439283634908,-2.570320280909425,4.292097080111807 +karman,karman_re200,ppo_state_offline,48,19.200000000000003,-0.7770405031115258,,,,2.0204484204474134,,3.431208680510616,,2.0204484204474134,,-3.431208680510616,-0.7770405031115258,-1.4107602600632028,5.4516571009580295 +karman,karman_re200,ppo_state_offline,49,19.6,-1.093248266100085,,,,1.5473746249003624,,3.431208680510616,,1.5473746249003624,,-3.431208680510616,-1.093248266100085,-1.8838340556102537,4.978583305410979 +karman,karman_re200,ppo_state_offline,50,20.0,-1.4205013911537245,,,,1.8771372821088879,,3.431208680510616,,1.8771372821088879,,-3.431208680510616,-1.4205013911537245,-1.5540713984017283,5.308345962619504 +karman,karman_re200,ppo_state_offline,51,20.400000000000002,-1.6499508888287704,,,,-0.9421788466005437,,3.431208680510616,,-0.9421788466005437,,-3.431208680510616,-1.6499508888287704,-4.37338752711116,2.4890298339100725 +karman,karman_re200,ppo_state_offline,52,20.8,-0.3593715232838936,,,,-3.494346159223763,,3.431208680510616,,-3.494346159223763,,-3.431208680510616,-0.3593715232838936,-6.925554839734379,-0.06313747871314668 +karman,karman_re200,ppo_state_offline,53,21.200000000000003,0.5974656188863829,,,,-1.8958251541779076,,3.431208680510616,,-1.8958251541779076,,-3.431208680510616,0.5974656188863829,-5.327033834688524,1.5353835263327085 +karman,karman_re200,ppo_state_offline,54,21.6,0.8004647976300793,,,,-0.923441646880154,,3.431208680510616,,-0.923441646880154,,-3.431208680510616,0.8004647976300793,-4.35465032739077,2.5077670336304623 +karman,karman_re200,ppo_state_offline,55,22.0,0.9572454871907373,,,,-2.1405505943246874,,3.431208680510616,,-2.1405505943246874,,-3.431208680510616,0.9572454871907373,-5.571759274835303,1.2906580861859287 +karman,karman_re200,ppo_state_offline,56,22.400000000000002,1.5489282310784873,,,,-2.7875856602281788,,3.431208680510616,,-2.7875856602281788,,-3.431208680510616,1.5489282310784873,-6.2187943407387944,0.6436230202824373 +karman,karman_re200,ppo_state_offline,57,22.8,2.378213475911062,,,,-1.7305241599224062,,3.431208680510616,,-1.7305241599224062,,-3.431208680510616,2.378213475911062,-5.1617328404330225,1.70068452058821 +karman,karman_re200,ppo_state_offline,58,23.200000000000003,3.015007755205878,,,,1.7185426408750593,,3.431208680510616,,1.7185426408750593,,-3.431208680510616,3.015007755205878,-1.7126660396355569,5.149751321385676 +karman,karman_re200,ppo_state_offline,59,23.6,1.6776077503020914,,,,3.442690973489139,,3.431208680510616,,3.442690973489139,,-3.431208680510616,1.6776077503020914,0.011482292978522768,6.873899653999755 +karman,karman_re200,ppo_state_offline,60,24.0,0.2977007248409444,,,,0.4455967712755957,,3.431208680510616,,0.4455967712755957,,-3.431208680510616,0.2977007248409444,-2.98561190923502,3.876805451786212 +karman,karman_re200,ppo_state_offline,61,24.400000000000002,-0.13990276356348577,,,,-1.7137858719262824,,3.431208680510616,,-1.7137858719262824,,-3.431208680510616,-0.13990276356348577,-5.1449945524368985,1.7174228085843337 +karman,karman_re200,ppo_state_offline,62,24.8,0.048598945959173266,,,,-0.6883734647015861,,3.431208680510616,,-0.6883734647015861,,-3.431208680510616,0.048598945959173266,-4.119582145212203,2.74283521580903 +karman,karman_re200,ppo_state_offline,63,25.200000000000003,-0.06109810753869634,,,,1.339557838661983,,3.431208680510616,,1.339557838661983,,-3.431208680510616,-0.06109810753869634,-2.091650841848633,4.770766519172599 +karman,karman_re200,ppo_state_offline,64,25.6,-0.40139450825064754,,,,2.0813216349088832,,3.431208680510616,,2.0813216349088832,,-3.431208680510616,-0.40139450825064754,-1.349887045601733,5.512530315419499 +karman,karman_re200,ppo_state_offline,65,26.0,-0.824550649265613,,,,1.6429737446971113,,3.431208680510616,,1.6429737446971113,,-3.431208680510616,-0.824550649265613,-1.7882349358135048,5.074182425207727 +karman,karman_re200,ppo_state_offline,66,26.400000000000002,-1.5858787268507963,,,,1.4977401981676948,,3.431208680510616,,1.4977401981676948,,-3.431208680510616,-1.5858787268507963,-1.9334684823429213,4.928948878678311 +karman,karman_re200,ppo_state_offline,67,26.8,-1.4419495168842842,,,,-3.4291185615621913,,3.431208680510616,,-3.4291185615621913,,-3.431208680510616,-1.4419495168842842,-6.860327242072808,0.002090118948424813 +karman,karman_re200,ppo_state_offline,68,27.200000000000003,0.2643255012878476,,,,-4.048174191930274,,3.431208680510616,,-4.048174191930274,,-3.431208680510616,0.2643255012878476,-7.47938287244089,-0.6169655114196577 +karman,karman_re200,ppo_state_offline,69,27.6,0.7442970333052901,,,,-1.6665563204437388,,3.431208680510616,,-1.6665563204437388,,-3.431208680510616,0.7442970333052901,-5.097765000954355,1.7646523600668773 +karman,karman_re200,ppo_state_offline,70,28.0,0.7103695705088136,,,,-2.254612262350865,,3.431208680510616,,-2.254612262350865,,-3.431208680510616,0.7103695705088136,-5.685820942861481,1.1765964181597512 +karman,karman_re200,ppo_state_offline,71,28.400000000000002,1.130691155726576,,,,-3.595718821795444,,3.431208680510616,,-3.595718821795444,,-3.431208680510616,1.130691155726576,-7.0269275023060604,-0.16451014128482777 +karman,karman_re200,ppo_state_offline,72,28.8,2.088419757211935,,,,-3.5613852159221024,,3.431208680510616,,-3.5613852159221024,,-3.431208680510616,2.088419757211935,-6.992593896432719,-0.13017653541148633 +karman,karman_re200,ppo_state_offline,73,29.200000000000003,3.2557607332211425,,,,-1.9610306761930325,,3.431208680510616,,-1.9610306761930325,,-3.431208680510616,3.2557607332211425,-5.392239356703649,1.4701780043175836 +karman,karman_re200,ppo_state_offline,74,29.6,2.8787071867942764,,,,2.6349037905877326,,3.431208680510616,,2.6349037905877326,,-3.431208680510616,2.8787071867942764,-0.7963048899228835,6.066112471098348 +karman,karman_re200,ppo_state_offline,75,30.0,0.9626447700610381,,,,2.0753887668649424,,3.431208680510616,,2.0753887668649424,,-3.431208680510616,0.9626447700610381,-1.3558199136456737,5.506597447375558 +karman,karman_re200,ppo_state_offline,76,30.400000000000002,0.05610378420361011,,,,-1.461028245881424,,3.431208680510616,,-1.461028245881424,,-3.431208680510616,0.05610378420361011,-4.89223692639204,1.970180434629192 +karman,karman_re200,ppo_state_offline,77,30.8,0.32949930293995244,,,,-1.811137341313366,,3.431208680510616,,-1.811137341313366,,-3.431208680510616,0.32949930293995244,-5.242346021823982,1.62007133919725 +karman,karman_re200,ppo_state_offline,78,31.200000000000003,0.42598059030621177,,,,0.7395215195512919,,3.431208680510616,,0.7395215195512919,,-3.431208680510616,0.42598059030621177,-2.691687160959324,4.170730200061908 +karman,karman_re200,ppo_state_offline,79,31.6,0.007674562054792284,,,,2.8778348612930107,,3.431208680510616,,2.8778348612930107,,-3.431208680510616,0.007674562054792284,-0.5533738192176054,6.309043541803627 +karman,karman_re200,ppo_state_offline,80,32.0,-0.6428178189352741,,,,1.8179657193738445,,3.431208680510616,,1.8179657193738445,,-3.431208680510616,-0.6428178189352741,-1.6132429611367716,5.249174399884461 +karman,karman_re200,ppo_state_offline,81,32.4,-1.4238341294298829,,,,2.7209334982645426,,3.431208680510616,,2.7209334982645426,,-3.431208680510616,-1.4238341294298829,-0.7102751822460736,6.152142178775159 +karman,karman_re200,ppo_state_offline,82,32.800000000000004,-2.1807469348565154,,,,-0.2703752098758196,,3.431208680510616,,-0.2703752098758196,,-3.431208680510616,-2.1807469348565154,-3.7015838903864355,3.1608334706347967 +karman,karman_re200,ppo_state_offline,83,33.2,-0.8440409211283636,,,,-4.530237647447828,,3.431208680510616,,-4.530237647447828,,-3.431208680510616,-0.8440409211283636,-7.961446327958445,-1.0990289669372122 +karman,karman_re200,ppo_state_offline,84,33.6,0.19393703393589323,,,,-2.3792635418544816,,3.431208680510616,,-2.3792635418544816,,-3.431208680510616,0.19393703393589323,-5.810472222365098,1.0519451386561345 +karman,karman_re200,ppo_state_offline,85,34.0,0.3074017634394928,,,,-1.3256912877768663,,3.431208680510616,,-1.3256912877768663,,-3.431208680510616,0.3074017634394928,-4.756899968287483,2.10551739273375 +karman,karman_re200,ppo_state_offline,86,34.4,0.5725319196457103,,,,-3.02698188707695,,3.431208680510616,,-3.02698188707695,,-3.431208680510616,0.5725319196457103,-6.458190567587566,0.4042267934336663 +karman,karman_re200,ppo_state_offline,87,34.800000000000004,1.4361538325414733,,,,-3.6429854451394337,,3.431208680510616,,-3.6429854451394337,,-3.431208680510616,1.4361538325414733,-7.07419412565005,-0.21177676462881756 +karman,karman_re200,ppo_state_offline,88,35.2,2.7331656866540124,,,,-4.100572356382928,,3.431208680510616,,-4.100572356382928,,-3.431208680510616,2.7331656866540124,-7.531781036893545,-0.669363675872312 +karman,karman_re200,ppo_state_offline,89,35.6,3.757506074649838,,,,0.3843391360742824,,3.431208680510616,,0.3843391360742824,,-3.431208680510616,3.757506074649838,-3.046869544436334,3.8155478165848984 +karman,karman_re200,ppo_state_offline,90,36.0,1.860162127942809,,,,3.1394790768763436,,3.431208680510616,,3.1394790768763436,,-3.431208680510616,1.860162127942809,-0.29172960363427247,6.57068775738696 +karman,karman_re200,ppo_state_offline,91,36.4,0.46720114866988505,,,,0.43858798189760667,,3.431208680510616,,0.43858798189760667,,-3.431208680510616,0.46720114866988505,-2.9926206986130093,3.869796662408223 +karman,karman_re200,ppo_state_offline,92,36.800000000000004,0.2796715659732649,,,,-2.4733743063432274,,3.431208680510616,,-2.4733743063432274,,-3.431208680510616,0.2796715659732649,-5.9045829868538435,0.9578343741673887 +karman,karman_re200,ppo_state_offline,93,37.2,0.8395825478576442,,,,-1.0561883704273562,,3.431208680510616,,-1.0561883704273562,,-3.431208680510616,0.8395825478576442,-4.487397050937973,2.3750203100832596 +karman,karman_re200,ppo_state_offline,94,37.6,0.6103074526225646,,,,2.897825653239883,,3.431208680510616,,2.897825653239883,,-3.431208680510616,0.6103074526225646,-0.533383027270733,6.329034333750499 +karman,karman_re200,ppo_state_offline,95,38.0,-0.21707740279177504,,,,4.005540790037879,,3.431208680510616,,4.005540790037879,,-3.431208680510616,-0.21707740279177504,0.5743321095272633,7.436749470548495 +karman,karman_re200,ppo_state_offline,96,38.400000000000006,-0.7989528510190375,,,,2.168938048704761,,3.431208680510616,,2.168938048704761,,-3.431208680510616,-0.7989528510190375,-1.2622706318058552,5.600146729215377 +karman,karman_re200,ppo_state_offline,97,38.800000000000004,-1.8660301395704226,,,,2.8904893830652987,,3.431208680510616,,2.8904893830652987,,-3.431208680510616,-1.8660301395704226,-0.5407192974453174,6.321698063575915 +karman,karman_re200,ppo_state_offline,98,39.2,-2.0282243643392706,,,,-1.7559017902168046,,3.431208680510616,,-1.7559017902168046,,-3.431208680510616,-2.0282243643392706,-5.18711047072742,1.6753068902938115 +karman,karman_re200,ppo_state_offline,99,39.6,-0.5175145765074656,,,,-3.063887800560274,,3.431208680510616,,-3.063887800560274,,-3.431208680510616,-0.5175145765074656,-6.49509648107089,0.36732087995034224 +karman,karman_re200,ppo_state_offline,100,40.0,0.12711183143047847,,,,-1.7262797743399432,,3.431208680510616,,-1.7262797743399432,,-3.431208680510616,0.12711183143047847,-5.15748845485056,1.704928906170673 +karman,karman_re200,ppo_state_offline,101,40.400000000000006,0.23843596301265493,,,,-2.0582563905182902,,3.431208680510616,,-2.0582563905182902,,-3.431208680510616,0.23843596301265493,-5.489465071028906,1.3729522899923259 +karman,karman_re200,ppo_state_offline,102,40.800000000000004,0.9127188526347142,,,,-3.0408909145507463,,3.431208680510616,,-3.0408909145507463,,-3.431208680510616,0.9127188526347142,-6.472099595061362,0.3903177659598698 +karman,karman_re200,ppo_state_offline,103,41.2,1.9058850486855003,,,,-3.7283088843757954,,3.431208680510616,,-3.7283088843757954,,-3.431208680510616,1.9058850486855003,-7.1595175648864116,-0.2971002038651793 +karman,karman_re200,ppo_state_offline,104,41.6,3.324545712660986,,,,-3.833200937851471,,3.431208680510616,,-3.833200937851471,,-3.431208680510616,3.324545712660986,-7.264409618362087,-0.40199225734085475 +karman,karman_re200,ppo_state_offline,105,42.0,3.3073447836214385,,,,2.198963059313648,,3.431208680510616,,2.198963059313648,,-3.431208680510616,3.3073447836214385,-1.232245621196968,5.630171739824265 +karman,karman_re200,ppo_state_offline,106,42.400000000000006,1.4319976110539976,,,,2.6542464720041052,,3.431208680510616,,2.6542464720041052,,-3.431208680510616,1.4319976110539976,-0.7769622085065109,6.085455152514721 +karman,karman_re200,ppo_state_offline,107,42.800000000000004,0.4339243705877697,,,,-0.9058940961344711,,3.431208680510616,,-0.9058940961344711,,-3.431208680510616,0.4339243705877697,-4.337102776645088,2.525314584376145 +karman,karman_re200,ppo_state_offline,108,43.2,0.4079382571834448,,,,-2.6083452559389224,,3.431208680510616,,-2.6083452559389224,,-3.431208680510616,0.4079382571834448,-6.039553936449538,0.8228634245716937 +karman,karman_re200,ppo_state_offline,109,43.6,0.7999724703756073,,,,-0.07529150426191046,,3.431208680510616,,-0.07529150426191046,,-3.431208680510616,0.7999724703756073,-3.5065001847725266,3.3559171762487057 +karman,karman_re200,ppo_state_offline,110,44.0,0.37305876263585636,,,,3.4926257812593158,,3.431208680510616,,3.4926257812593158,,-3.431208680510616,0.37305876263585636,0.06141710074869966,6.923834461769932 +karman,karman_re200,ppo_state_offline,111,44.400000000000006,-0.566856148080328,,,,3.1171619685315286,,3.431208680510616,,3.1171619685315286,,-3.431208680510616,-0.566856148080328,-0.3140467119790875,6.548370649042145 +karman,karman_re200,ppo_state_offline,112,44.800000000000004,-0.7894916518502855,,,,2.3479736728271323,,3.431208680510616,,2.3479736728271323,,-3.431208680510616,-0.7894916518502855,-1.0832350076834838,5.779182353337749 +karman,karman_re200,ppo_state_offline,113,45.2,-1.845976167764237,,,,2.788961049124711,,3.431208680510616,,2.788961049124711,,-3.431208680510616,-1.845976167764237,-0.6422476313859051,6.220169729635327 +karman,karman_re200,ppo_state_offline,114,45.6,-1.868877543561634,,,,-2.228820903992893,,3.431208680510616,,-2.228820903992893,,-3.431208680510616,-1.868877543561634,-5.6600295845035085,1.2023877765177233 +karman,karman_re200,ppo_state_offline,115,46.0,-0.5247209537025749,,,,-2.796533909330866,,3.431208680510616,,-2.796533909330866,,-3.431208680510616,-0.5247209537025749,-6.2277425898414815,0.6346747711797502 +karman,karman_re200,ppo_state_offline,116,46.400000000000006,0.18631356495844087,,,,-1.5325716098684037,,3.431208680510616,,-1.5325716098684037,,-3.431208680510616,0.18631356495844087,-4.96378029037902,1.8986370706422124 +karman,karman_re200,ppo_state_offline,117,46.800000000000004,0.1963956676713384,,,,-2.2088841593183544,,3.431208680510616,,-2.2088841593183544,,-3.431208680510616,0.1963956676713384,-5.64009283982897,1.2223245211922618 +karman,karman_re200,ppo_state_offline,118,47.2,0.9724691596470315,,,,-3.016801207919201,,3.431208680510616,,-3.016801207919201,,-3.431208680510616,0.9724691596470315,-6.448009888429818,0.4144074725914151 +karman,karman_re200,ppo_state_offline,119,47.6,1.89624909187833,,,,-3.768370168965504,,3.431208680510616,,-3.768370168965504,,-3.431208680510616,1.89624909187833,-7.19957884947612,-0.3371614884548877 +karman,karman_re200,ppo_state_offline,120,48.0,3.2645695660328617,,,,-4.188649599298376,,3.431208680510616,,-4.188649599298376,,-3.431208680510616,3.2645695660328617,-7.619858279808993,-0.75744091878776 +karman,karman_re200,ppo_state_offline,121,48.400000000000006,3.3349195498525246,,,,1.9091506233563302,,3.431208680510616,,1.9091506233563302,,-3.431208680510616,3.3349195498525246,-1.5220580571542859,5.340359303866946 +karman,karman_re200,ppo_state_offline,122,48.800000000000004,1.4040521508383699,,,,2.7582386003339536,,3.431208680510616,,2.7582386003339536,,-3.431208680510616,1.4040521508383699,-0.6729700801766625,6.18944728084457 +karman,karman_re200,ppo_state_offline,123,49.2,0.2932003493532678,,,,-0.7662895349572222,,3.431208680510616,,-0.7662895349572222,,-3.431208680510616,0.2932003493532678,-4.197498215467839,2.664919145553394 +karman,karman_re200,ppo_state_offline,124,49.6,0.31799706409090944,,,,-2.789390192079338,,3.431208680510616,,-2.789390192079338,,-3.431208680510616,0.31799706409090944,-6.220598872589954,0.6418184884312783 +karman,karman_re200,ppo_state_offline,125,50.0,0.6534289484645845,,,,-0.40399270349095584,,3.431208680510616,,-0.40399270349095584,,-3.431208680510616,0.6534289484645845,-3.835201384001572,3.0272159770196603 +karman,karman_re200,ppo_state_offline,126,50.400000000000006,0.061190481336137754,,,,2.041197701157018,,3.431208680510616,,2.041197701157018,,-3.431208680510616,0.061190481336137754,-1.390010979353598,5.472406381667634 +karman,karman_re200,ppo_state_offline,127,50.800000000000004,-0.644005251869899,,,,1.7286025890836216,,3.431208680510616,,1.7286025890836216,,-3.431208680510616,-0.644005251869899,-1.7026060914269945,5.159811269594238 +karman,karman_re200,ppo_state_offline,128,51.2,-1.3222104758986977,,,,1.9149202838624049,,3.431208680510616,,1.9149202838624049,,-3.431208680510616,-1.3222104758986977,-1.5162883966482112,5.346128964373021 +karman,karman_re200,ppo_state_offline,129,51.6,-2.129977976104107,,,,0.660266751645976,,3.431208680510616,,0.660266751645976,,-3.431208680510616,-2.129977976104107,-2.77094192886464,4.091475432156592 +karman,karman_re200,ppo_state_offline,130,52.0,-1.5170325200777777,,,,-4.425725904074382,,3.431208680510616,,-4.425725904074382,,-3.431208680510616,-1.5170325200777777,-7.856934584584998,-0.9945172235637663 +karman,karman_re200,ppo_state_offline,131,52.400000000000006,0.08325926086193133,,,,-3.589976032679699,,3.431208680510616,,-3.589976032679699,,-3.431208680510616,0.08325926086193133,-7.021184713190316,-0.1587673521690829 +karman,karman_re200,ppo_state_offline,132,52.800000000000004,0.473335792235535,,,,-0.9799860554422332,,3.431208680510616,,-0.9799860554422332,,-3.431208680510616,0.473335792235535,-4.411194735952849,2.451222625068383 +karman,karman_re200,ppo_state_offline,133,53.2,0.46441883479501544,,,,-1.9180786237626217,,3.431208680510616,,-1.9180786237626217,,-3.431208680510616,0.46441883479501544,-5.349287304273238,1.5131300567479944 +karman,karman_re200,ppo_state_offline,134,53.6,0.9751157877132104,,,,-2.7953620731191537,,3.431208680510616,,-2.7953620731191537,,-3.431208680510616,0.9751157877132104,-6.22657075362977,0.6358466073914624 +karman,karman_re200,ppo_state_offline,135,54.0,1.987324416978397,,,,-3.346074927620397,,3.431208680510616,,-3.346074927620397,,-3.431208680510616,1.987324416978397,-6.777283608131013,0.08513375289021896 +karman,karman_re200,ppo_state_offline,136,54.400000000000006,3.2108863815804463,,,,-1.9295422785935028,,3.431208680510616,,-1.9295422785935028,,-3.431208680510616,3.2108863815804463,-5.360750959104119,1.5016664019171133 +karman,karman_re200,ppo_state_offline,137,54.800000000000004,2.43419923432902,,,,2.9267636285685796,,3.431208680510616,,2.9267636285685796,,-3.431208680510616,2.43419923432902,-0.5044450519420365,6.357972309079196 +karman,karman_re200,ppo_state_offline,138,55.2,0.9208147355534194,,,,1.8606612375679639,,3.431208680510616,,1.8606612375679639,,-3.431208680510616,0.9208147355534194,-1.5705474429426522,5.29186991807858 +karman,karman_re200,ppo_state_offline,139,55.6,0.31846880648508885,,,,-1.3291560985480948,,3.431208680510616,,-1.3291560985480948,,-3.431208680510616,0.31846880648508885,-4.760364779058711,2.1020525819625213 +karman,karman_re200,ppo_state_offline,140,56.0,0.5892070384267022,,,,-1.4093386525875113,,3.431208680510616,,-1.4093386525875113,,-3.431208680510616,0.5892070384267022,-4.840547333098128,2.0218700279231046 +karman,karman_re200,ppo_state_offline,141,56.400000000000006,0.44015151837529276,,,,1.3690201486552422,,3.431208680510616,,1.3690201486552422,,-3.431208680510616,0.44015151837529276,-2.062188531855374,4.800228829165858 +karman,karman_re200,ppo_state_offline,142,56.800000000000004,-0.22651525321227925,,,,2.509100010093774,,3.431208680510616,,2.509100010093774,,-3.431208680510616,-0.22651525321227925,-0.9221086704168422,5.94030869060439 +karman,karman_re200,ppo_state_offline,143,57.2,-0.8666526547880008,,,,2.16662101930291,,3.431208680510616,,2.16662101930291,,-3.431208680510616,-0.8666526547880008,-1.264587661207706,5.597829699813526 +karman,karman_re200,ppo_state_offline,144,57.6,-1.7682615436391644,,,,2.6747395990920126,,3.431208680510616,,2.6747395990920126,,-3.431208680510616,-1.7682615436391644,-0.7564690814186035,6.105948279602629 +karman,karman_re200,ppo_state_offline,145,58.0,-2.3629902030530263,,,,-1.0032696203638896,,3.431208680510616,,-1.0032696203638896,,-3.431208680510616,-2.3629902030530263,-4.434478300874506,2.4279390601467266 +karman,karman_re200,ppo_state_offline,146,58.400000000000006,-0.9596907177345927,,,,-4.5443372867102525,,3.431208680510616,,-4.5443372867102525,,-3.431208680510616,-0.9596907177345927,-7.975545967220869,-1.1131286061996364 +karman,karman_re200,ppo_state_offline,147,58.800000000000004,0.2640394943842458,,,,-2.411017760686394,,3.431208680510616,,-2.411017760686394,,-3.431208680510616,0.2640394943842458,-5.84222644119701,1.020190919824222 +karman,karman_re200,ppo_state_offline,148,59.2,0.5355320568385392,,,,-0.44445584096890856,,3.431208680510616,,-0.44445584096890856,,-3.431208680510616,0.5355320568385392,-3.875664521479525,2.9867528395417073 +karman,karman_re200,ppo_state_offline,149,59.6,0.6563352113367931,,,,-1.2273365183202511,,3.431208680510616,,-1.2273365183202511,,-3.431208680510616,0.6563352113367931,-4.6585451988308675,2.2038721621903647 +karman,karman_re200,ppo_state_offline,150,60.0,1.4923800159116765,,,,-2.214531185802273,,3.431208680510616,,-2.214531185802273,,-3.431208680510616,1.4923800159116765,-5.645739866312889,1.216677494708343 +karman,karman_re200,ppo_state_offline,151,60.400000000000006,2.8426428223602684,,,,-1.3886460073294795,,3.431208680510616,,-1.3886460073294795,,-3.431208680510616,2.8426428223602684,-4.819854687840095,2.042562673181137 +karman,karman_re200,ppo_state_offline,152,60.800000000000004,3.0822985923570894,,,,3.346720678340415,,3.431208680510616,,3.346720678340415,,-3.431208680510616,3.0822985923570894,-0.08448800217020125,6.777929358851031 +karman,karman_re200,ppo_state_offline,153,61.2,1.5490012687601942,,,,3.1060241197930294,,3.431208680510616,,3.1060241197930294,,-3.431208680510616,1.5490012687601942,-0.3251845607175867,6.537232800303645 +karman,karman_re200,ppo_state_offline,154,61.6,0.5734600865008236,,,,-0.5307704006077966,,3.431208680510616,,-0.5307704006077966,,-3.431208680510616,0.5734600865008236,-3.961979081118413,2.9004382799028194 +karman,karman_re200,ppo_state_offline,155,62.0,0.585353978818068,,,,-1.7840810151102358,,3.431208680510616,,-1.7840810151102358,,-3.431208680510616,0.585353978818068,-5.215289695620852,1.6471276654003804 +karman,karman_re200,ppo_state_offline,156,62.400000000000006,0.7376541895543413,,,,0.48801672450372857,,3.431208680510616,,0.48801672450372857,,-3.431208680510616,0.7376541895543413,-2.9431919560068875,3.9192254050143447 +karman,karman_re200,ppo_state_offline,157,62.800000000000004,0.3289168968030379,,,,3.615840773531376,,3.431208680510616,,3.615840773531376,,-3.431208680510616,0.3289168968030379,0.18463209302075967,7.047049454041992 +karman,karman_re200,ppo_state_offline,158,63.2,-0.49952573960156577,,,,2.8228144335649237,,3.431208680510616,,2.8228144335649237,,-3.431208680510616,-0.49952573960156577,-0.6083942469456924,6.25402311407554 +karman,karman_re200,ppo_state_offline,159,63.6,-0.9601171334763026,,,,2.9660290480424347,,3.431208680510616,,2.9660290480424347,,-3.431208680510616,-0.9601171334763026,-0.4651796324681814,6.397237728553051 +karman,karman_re200,ppo_state_offline,160,64.0,-1.995217104182615,,,,2.4348984337829673,,3.431208680510616,,2.4348984337829673,,-3.431208680510616,-1.995217104182615,-0.9963102467276488,5.866107114293584 +karman,karman_re200,ppo_state_offline,161,64.4,-1.8020345228588697,,,,-1.902352085480014,,3.431208680510616,,-1.902352085480014,,-3.431208680510616,-1.8020345228588697,-5.33356076599063,1.5288565950306021 +karman,karman_re200,ppo_state_offline,162,64.8,-0.596033947125509,,,,-2.1575926888896655,,3.431208680510616,,-2.1575926888896655,,-3.431208680510616,-0.596033947125509,-5.588801369400281,1.2736159916209506 +karman,karman_re200,ppo_state_offline,163,65.2,-0.061149647389089255,,,,-1.2376065657846487,,3.431208680510616,,-1.2376065657846487,,-3.431208680510616,-0.061149647389089255,-4.668815246295265,2.1936021147259677 +karman,karman_re200,ppo_state_offline,164,65.60000000000001,0.2558075538084703,,,,-1.8841354142782476,,3.431208680510616,,-1.8841354142782476,,-3.431208680510616,0.2558075538084703,-5.3153440947888635,1.5470732662323685 +karman,karman_re200,ppo_state_offline,165,66.0,0.9624609992618984,,,,-2.803872615438851,,3.431208680510616,,-2.803872615438851,,-3.431208680510616,0.9624609992618984,-6.235081295949467,0.627336065071765 +karman,karman_re200,ppo_state_offline,166,66.4,1.7914924104006626,,,,-2.616248499127951,,3.431208680510616,,-2.616248499127951,,-3.431208680510616,1.7914924104006626,-6.047457179638567,0.814960181382665 +karman,karman_re200,ppo_state_offline,167,66.8,2.8590934834694313,,,,-3.4670595944950975,,3.431208680510616,,-3.4670595944950975,,-3.431208680510616,2.8590934834694313,-6.898268275005714,-0.03585091398448137 +karman,karman_re200,ppo_state_offline,168,67.2,3.3071480924786045,,,,1.6265512906910091,,3.431208680510616,,1.6265512906910091,,-3.431208680510616,3.3071480924786045,-1.804657389819607,5.057759971201625 +karman,karman_re200,ppo_state_offline,169,67.60000000000001,1.534217198788143,,,,2.9985691598878406,,3.431208680510616,,2.9985691598878406,,-3.431208680510616,1.534217198788143,-0.43263952062277555,6.429777840398456 +karman,karman_re200,ppo_state_offline,170,68.0,0.48610019270916544,,,,-0.12179118919918336,,3.431208680510616,,-0.12179118919918336,,-3.431208680510616,0.48610019270916544,-3.5529998697097995,3.3094174913114327 +karman,karman_re200,ppo_state_offline,171,68.4,0.39146136827608075,,,,-2.02572076516741,,3.431208680510616,,-2.02572076516741,,-3.431208680510616,0.39146136827608075,-5.456929445678027,1.405487915343206 +karman,karman_re200,ppo_state_offline,172,68.8,0.6727812326661758,,,,-0.2616315791788153,,3.431208680510616,,-0.2616315791788153,,-3.431208680510616,0.6727812326661758,-3.692840259689431,3.169577101331801 +karman,karman_re200,ppo_state_offline,173,69.2,0.2498842755217052,,,,2.6509602456003365,,3.431208680510616,,2.6509602456003365,,-3.431208680510616,0.2498842755217052,-0.7802484349102796,6.082168926110953 +karman,karman_re200,ppo_state_offline,174,69.60000000000001,-0.5253856299059622,,,,2.0109522385753418,,3.431208680510616,,2.0109522385753418,,-3.431208680510616,-0.5253856299059622,-1.4202564419352743,5.442160919085958 +karman,karman_re200,ppo_state_offline,175,70.0,-1.252136570075906,,,,2.550084589565375,,3.431208680510616,,2.550084589565375,,-3.431208680510616,-1.252136570075906,-0.8811240909452409,5.981293270075991 +karman,karman_re200,ppo_state_offline,176,70.4,-2.230437244709601,,,,1.3921187348842612,,3.431208680510616,,1.3921187348842612,,-3.431208680510616,-2.230437244709601,-2.0390899456263547,4.8233274153948775 +karman,karman_re200,ppo_state_offline,177,70.8,-1.689461655043599,,,,-3.622307110990133,,3.431208680510616,,-3.622307110990133,,-3.431208680510616,-1.689461655043599,-7.0535157915007485,-0.1910984304795167 +karman,karman_re200,ppo_state_offline,178,71.2,-0.33441660093570974,,,,-2.5180675944178312,,3.431208680510616,,-2.5180675944178312,,-3.431208680510616,-0.33441660093570974,-5.949276274928447,0.9131410860927849 +karman,karman_re200,ppo_state_offline,179,71.60000000000001,-0.026015754090777908,,,,-1.019571800158318,,3.431208680510616,,-1.019571800158318,,-3.431208680510616,-0.026015754090777908,-4.450780480668934,2.4116368803522983 +karman,karman_re200,ppo_state_offline,180,72.0,0.09849184241690025,,,,-2.213371757626322,,3.431208680510616,,-2.213371757626322,,-3.431208680510616,0.09849184241690025,-5.644580438136938,1.217836922884294 +karman,karman_re200,ppo_state_offline,181,72.4,0.8182910535444957,,,,-3.1301555417840667,,3.431208680510616,,-3.1301555417840667,,-3.431208680510616,0.8182910535444957,-6.561364222294683,0.3010531387265494 +karman,karman_re200,ppo_state_offline,182,72.8,1.7932300856279948,,,,-3.255171450068644,,3.431208680510616,,-3.255171450068644,,-3.431208680510616,1.7932300856279948,-6.68638013057926,0.17603723044197217 +karman,karman_re200,ppo_state_offline,183,73.2,2.9549796608041388,,,,-3.663269843184044,,3.431208680510616,,-3.663269843184044,,-3.431208680510616,2.9549796608041388,-7.09447852369466,-0.2320611626734279 +karman,karman_re200,ppo_state_offline,184,73.60000000000001,2.9548664412975416,,,,2.2043595652718593,,3.431208680510616,,2.2043595652718593,,-3.431208680510616,2.9548664412975416,-1.2268491152387568,5.635568245782475 +karman,karman_re200,ppo_state_offline,185,74.0,1.288600133170234,,,,2.464497765030032,,3.431208680510616,,2.464497765030032,,-3.431208680510616,1.288600133170234,-0.9667109154805842,5.8957064455406485 +karman,karman_re200,ppo_state_offline,186,74.4,0.48029703809890967,,,,-0.779616678839858,,3.431208680510616,,-0.779616678839858,,-3.431208680510616,0.48029703809890967,-4.2108253593504745,2.651592001670758 +karman,karman_re200,ppo_state_offline,187,74.8,0.4166394815141143,,,,-1.7233565781358404,,3.431208680510616,,-1.7233565781358404,,-3.431208680510616,0.4166394815141143,-5.154565258646457,1.7078521023747757 +karman,karman_re200,ppo_state_offline,188,75.2,0.5771582462845005,,,,0.8386991777599277,,3.431208680510616,,0.8386991777599277,,-3.431208680510616,0.5771582462845005,-2.5925095027506884,4.269907858270544 +karman,karman_re200,ppo_state_offline,189,75.60000000000001,0.06824668728568295,,,,3.2992482947469606,,3.431208680510616,,3.2992482947469606,,-3.431208680510616,0.06824668728568295,-0.13196038576365554,6.730456975257576 +karman,karman_re200,ppo_state_offline,190,76.0,-0.604291056841599,,,,1.9514725302650735,,3.431208680510616,,1.9514725302650735,,-3.431208680510616,-0.604291056841599,-1.4797361502455426,5.38268121077569 +karman,karman_re200,ppo_state_offline,191,76.4,-1.196781222310662,,,,2.9439999888222865,,3.431208680510616,,2.9439999888222865,,-3.431208680510616,-1.196781222310662,-0.4872086916883296,6.375208669332903 +karman,karman_re200,ppo_state_offline,192,76.80000000000001,-2.2078445807668587,,,,1.4393820849427434,,3.431208680510616,,1.4393820849427434,,-3.431208680510616,-2.2078445807668587,-1.9918265955678727,4.870590765453359 +karman,karman_re200,ppo_state_offline,193,77.2,-1.5231477054282252,,,,-3.696748778986774,,3.431208680510616,,-3.696748778986774,,-3.431208680510616,-1.5231477054282252,-7.12795745949739,-0.265540098476158 +karman,karman_re200,ppo_state_offline,194,77.60000000000001,-0.1454167921837325,,,,-2.6325582912142576,,3.431208680510616,,-2.6325582912142576,,-3.431208680510616,-0.1454167921837325,-6.063766971724874,0.7986503892963586 +karman,karman_re200,ppo_state_offline,195,78.0,0.1806628071340505,,,,-1.1134152209563057,,3.431208680510616,,-1.1134152209563057,,-3.431208680510616,0.1806628071340505,-4.544623901466922,2.31779345955431 +karman,karman_re200,ppo_state_offline,196,78.4,0.3982995309383434,,,,-2.1058615324820984,,3.431208680510616,,-2.1058615324820984,,-3.431208680510616,0.3982995309383434,-5.537070212992715,1.3253471480285177 +karman,karman_re200,ppo_state_offline,197,78.80000000000001,1.0537694011462329,,,,-2.9434544919863033,,3.431208680510616,,-2.9434544919863033,,-3.431208680510616,1.0537694011462329,-6.37466317249692,0.48775418852431285 +karman,karman_re200,ppo_state_offline,198,79.2,2.2294977448038757,,,,-4.0891110423318,,3.431208680510616,,-4.0891110423318,,-3.431208680510616,2.2294977448038757,-7.520319722842416,-0.6579023618211841 +karman,karman_re400,ppo_state_offline,2,0.8,3.17358548253517,,,,0.8924784974202119,,3.431208680510616,,0.8924784974202119,,-3.431208680510616,3.17358548253517,-2.5387301830904043,4.323687177930828 +karman,karman_re400,ppo_state_offline,3,1.2000000000000002,1.694349096944467,,,,4.7703307034951195,,3.431208680510616,,4.7703307034951195,,-3.431208680510616,1.694349096944467,1.3391220229845033,8.201539384005736 +karman,karman_re400,ppo_state_offline,4,1.6,0.6319829719621587,,,,6.563521153230878,,3.431208680510616,,6.563521153230878,,-3.431208680510616,0.6319829719621587,3.1323124727202623,9.994729833741495 +karman,karman_re400,ppo_state_offline,5,2.0,-0.7612052954702595,,,,4.500386653831274,,3.431208680510616,,4.500386653831274,,-3.431208680510616,-0.7612052954702595,1.0691779733206581,7.931595334341891 +karman,karman_re400,ppo_state_offline,6,2.4000000000000004,-1.776242053660657,,,,1.3667522946589237,,3.431208680510616,,1.3667522946589237,,-3.431208680510616,-1.776242053660657,-2.0644563858516927,4.79796097516954 +karman,karman_re400,ppo_state_offline,7,2.8000000000000003,-1.4437122336024872,,,,-0.6854795758212139,,3.431208680510616,,-0.6854795758212139,,-3.431208680510616,-1.4437122336024872,-4.11668825633183,2.7457291046894023 +karman,karman_re400,ppo_state_offline,8,3.2,-1.1538829062585398,,,,1.124369917952218,,3.431208680510616,,1.124369917952218,,-3.431208680510616,-1.1538829062585398,-2.306838762558398,4.555578598462834 +karman,karman_re400,ppo_state_offline,9,3.6,-1.1283244684404345,,,,0.2116803288581818,,3.431208680510616,,0.2116803288581818,,-3.431208680510616,-1.1283244684404345,-3.2195283516524342,3.642889009368798 +karman,karman_re400,ppo_state_offline,10,4.0,-0.2988409118720886,,,,-2.022153573828104,,3.431208680510616,,-2.022153573828104,,-3.431208680510616,-0.2988409118720886,-5.45336225433872,1.409055106682512 +karman,karman_re400,ppo_state_offline,11,4.4,0.6535829505809541,,,,-2.980216380907294,,3.431208680510616,,-2.980216380907294,,-3.431208680510616,0.6535829505809541,-6.41142506141791,0.450992299603322 +karman,karman_re400,ppo_state_offline,12,4.800000000000001,1.3847308202393849,,,,-2.982463072732192,,3.431208680510616,,-2.982463072732192,,-3.431208680510616,1.3847308202393849,-6.413671753242808,0.4487456077784242 +karman,karman_re400,ppo_state_offline,13,5.2,1.9843345784079054,,,,-2.0863970543956767,,3.431208680510616,,-2.0863970543956767,,-3.431208680510616,1.9843345784079054,-5.517605734906293,1.3448116261149394 +karman,karman_re400,ppo_state_offline,14,5.6000000000000005,2.046797336199551,,,,-1.6218977444200993,,3.431208680510616,,-1.6218977444200993,,-3.431208680510616,2.046797336199551,-5.053106424930715,1.8093109360905169 +karman,karman_re400,ppo_state_offline,15,6.0,2.255920336056061,,,,-1.5676130827634884,,3.431208680510616,,-1.5676130827634884,,-3.431208680510616,2.255920336056061,-4.998821763274105,1.8635955977471277 +karman,karman_re400,ppo_state_offline,16,6.4,2.1434022576020215,,,,1.2777112404380624,,3.431208680510616,,1.2777112404380624,,-3.431208680510616,2.1434022576020215,-2.1534974400725537,4.708919920948679 +karman,karman_re400,ppo_state_offline,17,6.800000000000001,1.1292649007420958,,,,3.325068922367204,,3.431208680510616,,3.325068922367204,,-3.431208680510616,1.1292649007420958,-0.10613975814341226,6.7562776028778195 +karman,karman_re400,ppo_state_offline,18,7.2,0.11585312552013585,,,,2.344199650759816,,3.431208680510616,,2.344199650759816,,-3.431208680510616,0.11585312552013585,-1.0870090297508002,5.775408331270432 +karman,karman_re400,ppo_state_offline,19,7.6000000000000005,-0.33632995509744534,,,,1.0037220949931227,,3.431208680510616,,1.0037220949931227,,-3.431208680510616,-0.33632995509744534,-2.427486585517493,4.434930775503739 +karman,karman_re400,ppo_state_offline,20,8.0,-1.2152118483912753,,,,1.0188769501556865,,3.431208680510616,,1.0188769501556865,,-3.431208680510616,-1.2152118483912753,-2.4123317303549294,4.450085630666303 +karman,karman_re400,ppo_state_offline,21,8.4,-1.796077978017078,,,,1.4600579831586435,,3.431208680510616,,1.4600579831586435,,-3.431208680510616,-1.796077978017078,-1.9711506973519726,4.89126666366926 +karman,karman_re400,ppo_state_offline,22,8.8,-2.1895138542508903,,,,2.924950761257814,,3.431208680510616,,2.924950761257814,,-3.431208680510616,-2.1895138542508903,-0.5062579192528021,6.35615944176843 +karman,karman_re400,ppo_state_offline,23,9.200000000000001,-2.7139625927397604,,,,2.5655840056044354,,3.431208680510616,,2.5655840056044354,,-3.431208680510616,-2.7139625927397604,-0.8656246749061807,5.996792686115052 +karman,karman_re400,ppo_state_offline,24,9.600000000000001,-2.661609271291894,,,,-1.3631892853224679,,3.431208680510616,,-1.3631892853224679,,-3.431208680510616,-2.661609271291894,-4.794397965833084,2.0680193951881485 +karman,karman_re400,ppo_state_offline,25,10.0,-1.3406871445786603,,,,-4.09982298333972,,3.431208680510616,,-4.09982298333972,,-3.431208680510616,-1.3406871445786603,-7.531031663850337,-0.6686143028291043 +karman,karman_re400,ppo_state_offline,26,10.4,0.2638099307346682,,,,-3.6464304639517793,,3.431208680510616,,-3.6464304639517793,,-3.431208680510616,0.2638099307346682,-7.077639144462395,-0.21522178344116316 +karman,karman_re400,ppo_state_offline,27,10.8,1.069416092759039,,,,-1.2737026836579826,,3.431208680510616,,-1.2737026836579826,,-3.431208680510616,1.069416092759039,-4.7049113641685985,2.157505996852634 +karman,karman_re400,ppo_state_offline,28,11.200000000000001,1.7986632011508552,,,,0.5484077763976408,,3.431208680510616,,0.5484077763976408,,-3.431208680510616,1.7986632011508552,-2.882800904112975,3.979616456908257 +karman,karman_re400,ppo_state_offline,29,11.600000000000001,2.0847314652852544,,,,0.05824712600936888,,3.431208680510616,,0.05824712600936888,,-3.431208680510616,2.0847314652852544,-3.3729615545012472,3.489455806519985 +karman,karman_re400,ppo_state_offline,30,12.0,2.4916445919861467,,,,-0.14179385632138575,,3.431208680510616,,-0.14179385632138575,,-3.431208680510616,2.4916445919861467,-3.5730025368320018,3.2894148241892305 +karman,karman_re400,ppo_state_offline,31,12.4,2.398625398957321,,,,2.4142752126268636,,3.431208680510616,,2.4142752126268636,,-3.431208680510616,2.398625398957321,-1.0169334678837525,5.84548389313748 +karman,karman_re400,ppo_state_offline,32,12.8,1.281600636873552,,,,4.111272783799383,,3.431208680510616,,4.111272783799383,,-3.431208680510616,1.281600636873552,0.6800641032887671,7.542481464309999 +karman,karman_re400,ppo_state_offline,33,13.200000000000001,-0.0010563490965041,,,,4.1209172531172396,,3.431208680510616,,4.1209172531172396,,-3.431208680510616,-0.0010563490965041,0.6897085726066234,7.552125933627856 +karman,karman_re400,ppo_state_offline,34,13.600000000000001,-1.0126757374295616,,,,3.0114875236966236,,3.431208680510616,,3.0114875236966236,,-3.431208680510616,-1.0126757374295616,-0.41972115681399247,6.442696204207239 +karman,karman_re400,ppo_state_offline,35,14.0,-1.8102610966080335,,,,0.5145498245823011,,3.431208680510616,,0.5145498245823011,,-3.431208680510616,-1.8102610966080335,-2.916658855928315,3.9457585050929174 +karman,karman_re400,ppo_state_offline,36,14.4,-2.0844026403182507,,,,-0.8190448491140665,,3.431208680510616,,-0.8190448491140665,,-3.431208680510616,-2.0844026403182507,-4.250253529624683,2.6121638313965496 +karman,karman_re400,ppo_state_offline,37,14.8,-1.9892867108268568,,,,-0.3486362691993704,,3.431208680510616,,-0.3486362691993704,,-3.431208680510616,-1.9892867108268568,-3.7798449497099864,3.082572411311246 +karman,karman_re400,ppo_state_offline,38,15.200000000000001,-1.9060802746347192,,,,-0.8016976538906148,,3.431208680510616,,-0.8016976538906148,,-3.431208680510616,-1.9060802746347192,-4.232906334401231,2.6295110266200012 +karman,karman_re400,ppo_state_offline,39,15.600000000000001,-1.1527225395153375,,,,-2.616189123251302,,3.431208680510616,,-2.616189123251302,,-3.431208680510616,-1.1527225395153375,-6.047397803761918,0.8150195572593142 +karman,karman_re400,ppo_state_offline,40,16.0,-0.18543843922217795,,,,-3.253107909986333,,3.431208680510616,,-3.253107909986333,,-3.431208680510616,-0.18543843922217795,-6.684316590496949,0.1781007705242832 +karman,karman_re400,ppo_state_offline,41,16.400000000000002,0.5940699716343775,,,,-2.397952631890202,,3.431208680510616,,-2.397952631890202,,-3.431208680510616,0.5940699716343775,-5.829161312400818,1.033256048620414 +karman,karman_re400,ppo_state_offline,42,16.8,1.1335536112521938,,,,-1.533792773731486,,3.431208680510616,,-1.533792773731486,,-3.431208680510616,1.1335536112521938,-4.965001454242103,1.89741590677913 +karman,karman_re400,ppo_state_offline,43,17.2,1.4872616506171565,,,,-1.2415859674868357,,3.431208680510616,,-1.2415859674868357,,-3.431208680510616,1.4872616506171565,-4.672794647997452,2.1896227130237804 +karman,karman_re400,ppo_state_offline,44,17.6,1.7397585106534,,,,-2.059745202563806,,3.431208680510616,,-2.059745202563806,,-3.431208680510616,1.7397585106534,-5.490953883074422,1.37146347794681 +karman,karman_re400,ppo_state_offline,45,18.0,2.2460110984398294,,,,-1.0003297532405737,,3.431208680510616,,-1.0003297532405737,,-3.431208680510616,2.2460110984398294,-4.431538433751189,2.4308789272700424 +karman,karman_re400,ppo_state_offline,46,18.400000000000002,1.8417760348681242,,,,2.442547797522497,,3.431208680510616,,2.442547797522497,,-3.431208680510616,1.8417760348681242,-0.9886608829881189,5.873756478033114 +karman,karman_re400,ppo_state_offline,47,18.8,0.7890599081317946,,,,3.986950203059062,,3.431208680510616,,3.986950203059062,,-3.431208680510616,0.7890599081317946,0.5557415225484457,7.418158883569678 +karman,karman_re400,ppo_state_offline,48,19.200000000000003,-0.24247826569658096,,,,3.2712140507100296,,3.431208680510616,,3.2712140507100296,,-3.431208680510616,-0.24247826569658096,-0.15999462980058654,6.702422731220645 +karman,karman_re400,ppo_state_offline,49,19.6,-0.987907693866973,,,,1.8906006860161413,,3.431208680510616,,1.8906006860161413,,-3.431208680510616,-0.987907693866973,-1.5406079944944748,5.321809366526757 +karman,karman_re400,ppo_state_offline,50,20.0,-1.6413927373245996,,,,0.10602461026129686,,3.431208680510616,,0.10602461026129686,,-3.431208680510616,-1.6413927373245996,-3.3251840702493194,3.537233290771913 +karman,karman_re400,ppo_state_offline,51,20.400000000000002,-1.9411436454309878,,,,-0.6675185253807134,,3.431208680510616,,-0.6675185253807134,,-3.431208680510616,-1.9411436454309878,-4.098727205891329,2.7636901551299027 +karman,karman_re400,ppo_state_offline,52,20.8,-1.8602560779333817,,,,-0.2729101030712214,,3.431208680510616,,-0.2729101030712214,,-3.431208680510616,-1.8602560779333817,-3.7041187835818374,3.158298577439395 +karman,karman_re400,ppo_state_offline,53,21.200000000000003,-1.6528930420070713,,,,-1.0050338451295542,,3.431208680510616,,-1.0050338451295542,,-3.431208680510616,-1.6528930420070713,-4.4362425256401705,2.4261748353810617 +karman,karman_re400,ppo_state_offline,54,21.6,-0.7353180493350778,,,,-2.433803024981711,,3.431208680510616,,-2.433803024981711,,-3.431208680510616,-0.7353180493350778,-5.865011705492327,0.997405655528905 +karman,karman_re400,ppo_state_offline,55,22.0,0.2916211592352685,,,,-2.785822196691702,,3.431208680510616,,-2.785822196691702,,-3.431208680510616,0.2916211592352685,-6.217030877202318,0.6453864838189141 +karman,karman_re400,ppo_state_offline,56,22.400000000000002,1.057901913137033,,,,-2.207128612565431,,3.431208680510616,,-2.207128612565431,,-3.431208680510616,1.057901913137033,-5.638337293076047,1.2240800679451853 +karman,karman_re400,ppo_state_offline,57,22.8,1.6750532074346116,,,,-1.0770424723961223,,3.431208680510616,,-1.0770424723961223,,-3.431208680510616,1.6750532074346116,-4.508251152906738,2.354166208114494 +karman,karman_re400,ppo_state_offline,58,23.200000000000003,1.9476555874523973,,,,-0.71802653872931,,3.431208680510616,,-0.71802653872931,,-3.431208680510616,1.9476555874523973,-4.149235219239926,2.713182141781306 +karman,karman_re400,ppo_state_offline,59,23.6,2.1522893228728095,,,,-0.987587081128337,,3.431208680510616,,-0.987587081128337,,-3.431208680510616,2.1522893228728095,-4.418795761638953,2.443621599382279 +karman,karman_re400,ppo_state_offline,60,24.0,2.2386747408111654,,,,0.7643480960366358,,3.431208680510616,,0.7643480960366358,,-3.431208680510616,2.2386747408111654,-2.66686058447398,4.195556776547252 +karman,karman_re400,ppo_state_offline,61,24.400000000000002,1.3815009563149072,,,,3.2415621946490063,,3.431208680510616,,3.2415621946490063,,-3.431208680510616,1.3815009563149072,-0.18964648586160981,6.672770875159623 +karman,karman_re400,ppo_state_offline,62,24.8,0.20156194590705712,,,,3.557812881528096,,3.431208680510616,,3.557812881528096,,-3.431208680510616,0.20156194590705712,0.12660420101747993,6.989021562038712 +karman,karman_re400,ppo_state_offline,63,25.200000000000003,-0.7274087843531045,,,,2.2761179003814758,,3.431208680510616,,2.2761179003814758,,-3.431208680510616,-0.7274087843531045,-1.1550907801291403,5.707326580892092 +karman,karman_re400,ppo_state_offline,64,25.6,-1.5284190280561678,,,,0.7794103857299619,,3.431208680510616,,0.7794103857299619,,-3.431208680510616,-1.5284190280561678,-2.6517982947806544,4.210619066240578 +karman,karman_re400,ppo_state_offline,65,26.0,-1.8796689165335811,,,,-0.3815539507219292,,3.431208680510616,,-0.3815539507219292,,-3.431208680510616,-1.8796689165335811,-3.8127626312325456,3.0496547297886867 +karman,karman_re400,ppo_state_offline,66,26.400000000000002,-2.0068600654433997,,,,0.17920583496876502,,3.431208680510616,,0.17920583496876502,,-3.431208680510616,-2.0068600654433997,-3.2520028455418513,3.610414515479381 +karman,karman_re400,ppo_state_offline,67,26.8,-2.185942777813393,,,,0.052362824387610356,,3.431208680510616,,0.052362824387610356,,-3.431208680510616,-2.185942777813393,-3.378845856123006,3.4835715048982263 +karman,karman_re400,ppo_state_offline,68,27.200000000000003,-1.6051389633160253,,,,-2.5173416862643374,,3.431208680510616,,-2.5173416862643374,,-3.431208680510616,-1.6051389633160253,-5.9485503667749535,0.9138669942462787 +karman,karman_re400,ppo_state_offline,69,27.6,-0.534850170160154,,,,-3.641472426005746,,3.431208680510616,,-3.641472426005746,,-3.431208680510616,-0.534850170160154,-7.072681106516362,-0.21026374549512994 +karman,karman_re400,ppo_state_offline,70,28.0,0.4893933957326157,,,,-3.1522046974547733,,3.431208680510616,,-3.1522046974547733,,-3.431208680510616,0.4893933957326157,-6.583413377965389,0.27900398305584284 +karman,karman_re400,ppo_state_offline,71,28.400000000000002,1.2705615129812862,,,,-2.049922301124327,,3.431208680510616,,-2.049922301124327,,-3.431208680510616,1.2705615129812862,-5.4811309816349425,1.3812863793862893 +karman,karman_re400,ppo_state_offline,72,28.8,1.7494497008198673,,,,-0.5541574926989948,,3.431208680510616,,-0.5541574926989948,,-3.431208680510616,1.7494497008198673,-3.985366173209611,2.877051187811621 +karman,karman_re400,ppo_state_offline,73,29.200000000000003,1.9921195960813398,,,,-0.42437461499452434,,3.431208680510616,,-0.42437461499452434,,-3.431208680510616,1.9921195960813398,-3.8555832955051406,3.0068340655160917 +karman,karman_re400,ppo_state_offline,74,29.6,2.1118969540999433,,,,-0.049565763859927364,,3.431208680510616,,-0.049565763859927364,,-3.431208680510616,2.1118969540999433,-3.4807744443705433,3.381642916650689 +karman,karman_re400,ppo_state_offline,75,30.0,1.728738567477546,,,,2.136708518367981,,3.431208680510616,,2.136708518367981,,-3.431208680510616,1.728738567477546,-1.294500162142635,5.567917198878597 +karman,karman_re400,ppo_state_offline,76,30.400000000000002,0.6186456807851461,,,,3.6067544374540206,,3.431208680510616,,3.6067544374540206,,-3.431208680510616,0.6186456807851461,0.17554575694340446,7.037963117964637 +karman,karman_re400,ppo_state_offline,77,30.8,-0.4419560763611545,,,,3.0594671904208335,,3.431208680510616,,3.0594671904208335,,-3.431208680510616,-0.4419560763611545,-0.37174149008978263,6.490675870931449 +karman,karman_re400,ppo_state_offline,78,31.200000000000003,-1.2485606984593058,,,,1.8966448457673397,,3.431208680510616,,1.8966448457673397,,-3.431208680510616,-1.2485606984593058,-1.5345638347432764,5.327853526277956 +karman,karman_re400,ppo_state_offline,79,31.6,-1.7654275927893253,,,,0.1174183842527371,,3.431208680510616,,0.1174183842527371,,-3.431208680510616,-1.7654275927893253,-3.313790296257879,3.548627064763353 +karman,karman_re400,ppo_state_offline,80,32.0,-1.9305534035825251,,,,-0.274496504698614,,3.431208680510616,,-0.274496504698614,,-3.431208680510616,-1.9305534035825251,-3.70570518520923,3.156712175812002 +karman,karman_re400,ppo_state_offline,81,32.4,-1.9670689588502748,,,,0.4925752693720001,,3.431208680510616,,0.4925752693720001,,-3.431208680510616,-1.9670689588502748,-2.938633411138616,3.9237839498826164 +karman,karman_re400,ppo_state_offline,82,32.800000000000004,-1.858378809714386,,,,-1.6436784906791844,,3.431208680510616,,-1.6436784906791844,,-3.431208680510616,-1.858378809714386,-5.0748871711898005,1.7875301898314317 +karman,karman_re400,ppo_state_offline,83,33.2,-0.8991303140526203,,,,-3.524401619000162,,3.431208680510616,,-3.524401619000162,,-3.431208680510616,-0.8991303140526203,-6.955610299510778,-0.0931929384895458 +karman,karman_re400,ppo_state_offline,84,33.6,0.10807583341303399,,,,-3.6389186543264866,,3.431208680510616,,-3.6389186543264866,,-3.431208680510616,0.10807583341303399,-7.070127334837103,-0.20770997381587053 +karman,karman_re400,ppo_state_offline,85,34.0,0.8470796216859179,,,,-2.5044775219737265,,3.431208680510616,,-2.5044775219737265,,-3.431208680510616,0.8470796216859179,-5.935686202484343,0.9267311585368896 +karman,karman_re400,ppo_state_offline,86,34.4,1.4306622868732475,,,,-0.7925440251530569,,3.431208680510616,,-0.7925440251530569,,-3.431208680510616,1.4306622868732475,-4.223752705663673,2.6386646553575592 +karman,karman_re400,ppo_state_offline,87,34.800000000000004,1.6547725302163925,,,,-0.23487239403146362,,3.431208680510616,,-0.23487239403146362,,-3.431208680510616,1.6547725302163925,-3.6660810745420798,3.1963362864791525 +karman,karman_re400,ppo_state_offline,88,35.2,1.7441438795422675,,,,-0.7102718969931063,,3.431208680510616,,-0.7102718969931063,,-3.431208680510616,1.7441438795422675,-4.141480577503723,2.7209367835175096 +karman,karman_re400,ppo_state_offline,89,35.6,1.8133386247963796,,,,-0.005138906001056592,,3.431208680510616,,-0.005138906001056592,,-3.431208680510616,1.8133386247963796,-3.4363475865116726,3.4260697745095596 +karman,karman_re400,ppo_state_offline,90,36.0,1.1339780290026107,,,,2.3512448268929824,,3.431208680510616,,2.3512448268929824,,-3.431208680510616,1.1339780290026107,-1.0799638536176337,5.7824535074035985 +karman,karman_re400,ppo_state_offline,91,36.4,0.07368584673220434,,,,3.0481767913530975,,3.431208680510616,,3.0481767913530975,,-3.431208680510616,0.07368584673220434,-0.3830318891575186,6.479385471863713 +karman,karman_re400,ppo_state_offline,92,36.800000000000004,-0.7791479954272209,,,,2.3497657585810705,,3.431208680510616,,2.3497657585810705,,-3.431208680510616,-0.7791479954272209,-1.0814429219295456,5.780974439091686 +karman,karman_re400,ppo_state_offline,93,37.2,-1.5359762303224058,,,,1.2341416027675827,,3.431208680510616,,1.2341416027675827,,-3.431208680510616,-1.5359762303224058,-2.1970670777430334,4.665350283278199 +karman,karman_re400,ppo_state_offline,94,37.6,-1.9682520360945064,,,,0.08052069204464113,,3.431208680510616,,0.08052069204464113,,-3.431208680510616,-1.9682520360945064,-3.350687988465975,3.511729372555257 +karman,karman_re400,ppo_state_offline,95,38.0,-2.1273823634156064,,,,0.23868097590390633,,3.431208680510616,,0.23868097590390633,,-3.431208680510616,-2.1273823634156064,-3.19252770460671,3.6698896564145222 +karman,karman_re400,ppo_state_offline,96,38.400000000000006,-2.183079700690484,,,,-0.37580027602879856,,3.431208680510616,,-0.37580027602879856,,-3.431208680510616,-2.183079700690484,-3.8070089565394145,3.0554084044818177 +karman,karman_re400,ppo_state_offline,97,38.800000000000004,-1.4943619788744198,,,,-2.6139188333215824,,3.431208680510616,,-2.6139188333215824,,-3.431208680510616,-1.4943619788744198,-6.045127513832199,0.8172898471890337 +karman,karman_re400,ppo_state_offline,98,39.2,-0.37709186345988344,,,,-3.437005200439561,,3.431208680510616,,-3.437005200439561,,-3.431208680510616,-0.37709186345988344,-6.868213880950178,-0.005796519928944921 +karman,karman_re400,ppo_state_offline,99,39.6,0.5982555053191128,,,,-2.5841243229107635,,3.431208680510616,,-2.5841243229107635,,-3.431208680510616,0.5982555053191128,-6.01533300342138,0.8470843575998526 +karman,karman_re400,ppo_state_offline,100,40.0,1.3205138260925795,,,,-1.3235102139079578,,3.431208680510616,,-1.3235102139079578,,-3.431208680510616,1.3205138260925795,-4.754718894418573,2.1076984666026584 +karman,karman_re400,ppo_state_offline,101,40.400000000000006,1.7246647520309504,,,,-0.22554368258070986,,3.431208680510616,,-0.22554368258070986,,-3.431208680510616,1.7246647520309504,-3.656752363091326,3.2056649979299063 +karman,karman_re400,ppo_state_offline,102,40.800000000000004,1.9611087288245428,,,,-0.5384709950716658,,3.431208680510616,,-0.5384709950716658,,-3.431208680510616,1.9611087288245428,-3.969679675582282,2.8927376854389504 +karman,karman_re400,ppo_state_offline,103,41.2,2.1669979131737955,,,,-0.3743597259137901,,3.431208680510616,,-0.3743597259137901,,-3.431208680510616,2.1669979131737955,-3.805568406424406,3.056848954596826 +karman,karman_re400,ppo_state_offline,104,41.6,1.858136608769881,,,,2.0568663860213525,,3.431208680510616,,2.0568663860213525,,-3.431208680510616,1.858136608769881,-1.3743422944892636,5.488075066531969 +karman,karman_re400,ppo_state_offline,105,42.0,0.7486850994824029,,,,3.820383665278829,,3.431208680510616,,3.820383665278829,,-3.431208680510616,0.7486850994824029,0.3891749847682129,7.251592345789446 +karman,karman_re400,ppo_state_offline,106,42.400000000000006,-0.337771849913768,,,,3.369921573772275,,3.431208680510616,,3.369921573772275,,-3.431208680510616,-0.337771849913768,-0.061287106738340924,6.801130254282891 +karman,karman_re400,ppo_state_offline,107,42.800000000000004,-1.1502817267522298,,,,2.289660928861774,,3.431208680510616,,2.289660928861774,,-3.431208680510616,-1.1502817267522298,-1.141547751648842,5.72086960937239 +karman,karman_re400,ppo_state_offline,108,43.2,-1.7558903367520238,,,,0.3175893845287694,,3.431208680510616,,0.3175893845287694,,-3.431208680510616,-1.7558903367520238,-3.113619295981847,3.7487980650393853 +karman,karman_re400,ppo_state_offline,109,43.6,-1.9442193976270736,,,,-0.4487199423873358,,3.431208680510616,,-0.4487199423873358,,-3.431208680510616,-1.9442193976270736,-3.879928622897952,2.9824887381232803 +karman,karman_re400,ppo_state_offline,110,44.0,-1.8784911672661304,,,,0.3140772253020592,,3.431208680510616,,0.3140772253020592,,-3.431208680510616,-1.8784911672661304,-3.1171314552085567,3.7452859058126755 +karman,karman_re400,ppo_state_offline,111,44.400000000000006,-1.8108809179068954,,,,-0.8586458184139074,,3.431208680510616,,-0.8586458184139074,,-3.431208680510616,-1.8108809179068954,-4.289854498924523,2.5725628620967087 +karman,karman_re400,ppo_state_offline,112,44.800000000000004,-0.955419478548356,,,,-2.8088340027933105,,3.431208680510616,,-2.8088340027933105,,-3.431208680510616,-0.955419478548356,-6.240042683303926,0.6223746777173056 +karman,karman_re400,ppo_state_offline,113,45.2,0.060874077215004915,,,,-3.2263700392562398,,3.431208680510616,,-3.2263700392562398,,-3.431208680510616,0.060874077215004915,-6.657578719766856,0.20483864125437634 +karman,karman_re400,ppo_state_offline,114,45.6,0.8422453263534407,,,,-2.3632267265549234,,3.431208680510616,,-2.3632267265549234,,-3.431208680510616,0.8422453263534407,-5.7944354070655395,1.0679819539556927 +karman,karman_re400,ppo_state_offline,115,46.0,1.459724846220635,,,,-1.050539821485062,,3.431208680510616,,-1.050539821485062,,-3.431208680510616,1.459724846220635,-4.481748501995678,2.380668859025554 +karman,karman_re400,ppo_state_offline,116,46.400000000000006,1.7638669395905433,,,,-0.27353217956349835,,3.431208680510616,,-0.27353217956349835,,-3.431208680510616,1.7638669395905433,-3.7047408600741143,3.157676500947118 +karman,karman_re400,ppo_state_offline,117,46.800000000000004,1.9004436747986293,,,,-0.6814893646645601,,3.431208680510616,,-0.6814893646645601,,-3.431208680510616,1.9004436747986293,-4.1126980451751765,2.749719315846056 +karman,karman_re400,ppo_state_offline,118,47.2,1.96938396476164,,,,0.1894292952068687,,3.431208680510616,,0.1894292952068687,,-3.431208680510616,1.96938396476164,-3.2417793853037473,3.620637975717485 +karman,karman_re400,ppo_state_offline,119,47.6,1.2100574526537733,,,,2.5720725424093818,,3.431208680510616,,2.5720725424093818,,-3.431208680510616,1.2100574526537733,-0.8591361381012343,6.003281222919998 +karman,karman_re400,ppo_state_offline,120,48.0,0.06787863508962882,,,,3.1449255194692745,,3.431208680510616,,3.1449255194692745,,-3.431208680510616,0.06787863508962882,-0.28628316104134166,6.57613419997989 +karman,karman_re400,ppo_state_offline,121,48.400000000000006,-0.8049977847756365,,,,2.2808025048032485,,3.431208680510616,,2.2808025048032485,,-3.431208680510616,-0.8049977847756365,-1.1504061757073676,5.712011185313864 +karman,karman_re400,ppo_state_offline,122,48.800000000000004,-1.5832426659385666,,,,0.8377543400920201,,3.431208680510616,,0.8377543400920201,,-3.431208680510616,-1.5832426659385666,-2.593454340418596,4.268963020602636 +karman,karman_re400,ppo_state_offline,123,49.2,-1.9535266626666599,,,,-0.3227660474975413,,3.431208680510616,,-0.3227660474975413,,-3.431208680510616,-1.9535266626666599,-3.7539747280081572,3.108442633013075 +karman,karman_re400,ppo_state_offline,124,49.6,-2.017028331530803,,,,0.15433038756956385,,3.431208680510616,,0.15433038756956385,,-3.431208680510616,-2.017028331530803,-3.2768782929410523,3.58553906808018 +karman,karman_re400,ppo_state_offline,125,50.0,-2.126155152763705,,,,0.15365030541317587,,3.431208680510616,,0.15365030541317587,,-3.431208680510616,-2.126155152763705,-3.27755837509744,3.584858985923792 +karman,karman_re400,ppo_state_offline,126,50.400000000000006,-1.5432174391657214,,,,-2.286292185214047,,3.431208680510616,,-2.286292185214047,,-3.431208680510616,-1.5432174391657214,-5.717500865724663,1.144916495296569 +karman,karman_re400,ppo_state_offline,127,50.800000000000004,-0.4333728583912215,,,,-3.650081014644833,,3.431208680510616,,-3.650081014644833,,-3.431208680510616,-0.4333728583912215,-7.08128969515545,-0.21887233413421692 +karman,karman_re400,ppo_state_offline,128,51.2,0.5620544338808645,,,,-2.91997529116338,,3.431208680510616,,-2.91997529116338,,-3.431208680510616,0.5620544338808645,-6.351183971673996,0.5112333893472361 +karman,karman_re400,ppo_state_offline,129,51.6,1.2522941227893023,,,,-1.6812075463756486,,3.431208680510616,,-1.6812075463756486,,-3.431208680510616,1.2522941227893023,-5.112416226886265,1.7500011341349675 +karman,karman_re400,ppo_state_offline,130,52.0,1.731080257672623,,,,-0.33934653268303244,,3.431208680510616,,-0.33934653268303244,,-3.431208680510616,1.731080257672623,-3.7705552131936484,3.091862147827584 +karman,karman_re400,ppo_state_offline,131,52.400000000000006,1.9495316568766172,,,,-0.5989625292183688,,3.431208680510616,,-0.5989625292183688,,-3.431208680510616,1.9495316568766172,-4.030171209728985,2.832246151292247 +karman,karman_re400,ppo_state_offline,132,52.800000000000004,2.110472164309078,,,,-0.605827141788187,,3.431208680510616,,-0.605827141788187,,-3.431208680510616,2.110472164309078,-4.037035822298803,2.825381538722429 +karman,karman_re400,ppo_state_offline,133,53.2,1.8449162555832608,,,,1.5127342817257934,,3.431208680510616,,1.5127342817257934,,-3.431208680510616,1.8449162555832608,-1.9184743987848227,4.9439429622364095 +karman,karman_re400,ppo_state_offline,134,53.6,0.7820498224812603,,,,3.2375071267655513,,3.431208680510616,,3.2375071267655513,,-3.431208680510616,0.7820498224812603,-0.19370155374506481,6.668715807276167 +karman,karman_re400,ppo_state_offline,135,54.0,-0.3161108160110474,,,,3.0082542788443263,,3.431208680510616,,3.0082542788443263,,-3.431208680510616,-0.3161108160110474,-0.42295440166628984,6.439462959354943 +karman,karman_re400,ppo_state_offline,136,54.400000000000006,-1.1239019369135193,,,,1.9704030821991665,,3.431208680510616,,1.9704030821991665,,-3.431208680510616,-1.1239019369135193,-1.4608055983114496,5.401611762709782 +karman,karman_re400,ppo_state_offline,137,54.800000000000004,-1.7550487828194572,,,,0.3274804921034759,,3.431208680510616,,0.3274804921034759,,-3.431208680510616,-1.7550487828194572,-3.1037281884071404,3.758689172614092 +karman,karman_re400,ppo_state_offline,138,55.2,-2.0080652537912727,,,,-0.2880835322259676,,3.431208680510616,,-0.2880835322259676,,-3.431208680510616,-2.0080652537912727,-3.7192922127365837,3.1431251482846485 +karman,karman_re400,ppo_state_offline,139,55.6,-2.0369546982930826,,,,0.15821022049398545,,3.431208680510616,,0.15821022049398545,,-3.431208680510616,-2.0369546982930826,-3.272998460016631,3.5894189010046014 +karman,karman_re400,ppo_state_offline,140,56.0,-1.921929762363754,,,,-1.229751594041492,,3.431208680510616,,-1.229751594041492,,-3.431208680510616,-1.921929762363754,-4.660960274552108,2.201457086469124 +karman,karman_re400,ppo_state_offline,141,56.400000000000006,-0.9844119528011694,,,,-3.0721579467024616,,3.431208680510616,,-3.0721579467024616,,-3.431208680510616,-0.9844119528011694,-6.503366627213078,0.35905073380815455 +karman,karman_re400,ppo_state_offline,142,56.800000000000004,0.08622348074406723,,,,-3.3746673810207475,,3.431208680510616,,-3.3746673810207475,,-3.431208680510616,0.08622348074406723,-6.805876061531364,0.056541299489868635 +karman,karman_re400,ppo_state_offline,143,57.2,0.8816050666264298,,,,-2.3515672835769377,,3.431208680510616,,-2.3515672835769377,,-3.431208680510616,0.8816050666264298,-5.782775964087554,1.0796413969336784 +karman,karman_re400,ppo_state_offline,144,57.6,1.5298869300591529,,,,-0.8470568652587132,,3.431208680510616,,-0.8470568652587132,,-3.431208680510616,1.5298869300591529,-4.2782655457693295,2.5841518152519027 +karman,karman_re400,ppo_state_offline,145,58.0,1.8392583438400465,,,,-0.2532639957005884,,3.431208680510616,,-0.2532639957005884,,-3.431208680510616,1.8392583438400465,-3.6844726762112043,3.177944684810028 +karman,karman_re400,ppo_state_offline,146,58.400000000000006,2.0239162511137283,,,,-0.6009889213163147,,3.431208680510616,,-0.6009889213163147,,-3.431208680510616,2.0239162511137283,-4.0321976018269305,2.8302197591943017 +karman,karman_re400,ppo_state_offline,147,58.800000000000004,2.098527239964228,,,,0.5460708027910692,,3.431208680510616,,0.5460708027910692,,-3.431208680510616,2.098527239964228,-2.885137877719547,3.977279483301685 +karman,karman_re400,ppo_state_offline,148,59.2,1.2816390871059884,,,,3.0466572256483944,,3.431208680510616,,3.0466572256483944,,-3.431208680510616,1.2816390871059884,-0.38455145486222175,6.4778659061590105 +karman,karman_re400,ppo_state_offline,149,59.6,0.1064945565041288,,,,3.693885643765589,,3.431208680510616,,3.693885643765589,,-3.431208680510616,0.1064945565041288,0.26267696325497303,7.125094324276205 +karman,karman_re400,ppo_state_offline,150,60.0,-0.8113726645943536,,,,2.646952830664038,,3.431208680510616,,2.646952830664038,,-3.431208680510616,-0.8113726645943536,-0.7842558498465779,6.078161511174654 +karman,karman_re400,ppo_state_offline,151,60.400000000000006,-1.6219501952538458,,,,0.9738819108310356,,3.431208680510616,,0.9738819108310356,,-3.431208680510616,-1.6219501952538458,-2.4573267696795806,4.405090591341652 +karman,karman_re400,ppo_state_offline,152,60.800000000000004,-1.9700455218786201,,,,-0.4510958909283232,,3.431208680510616,,-0.4510958909283232,,-3.431208680510616,-1.9700455218786201,-3.8823045714389393,2.980112789582293 +karman,karman_re400,ppo_state_offline,153,61.2,-1.9493000674858676,,,,0.08835769877896563,,3.431208680510616,,0.08835769877896563,,-3.431208680510616,-1.9493000674858676,-3.3428509817316505,3.5195663792895817 +karman,karman_re400,ppo_state_offline,154,61.6,-2.0341960051152754,,,,0.4149629295622995,,3.431208680510616,,0.4149629295622995,,-3.431208680510616,-2.0341960051152754,-3.0162457509483165,3.8461716100729157 +karman,karman_re400,ppo_state_offline,155,62.0,-1.4987463265677374,,,,-2.146949639123242,,3.431208680510616,,-2.146949639123242,,-3.431208680510616,-1.4987463265677374,-5.578158319633858,1.284259041387374 +karman,karman_re400,ppo_state_offline,156,62.400000000000006,-0.4153442392586899,,,,-3.5971408740411888,,3.431208680510616,,-3.5971408740411888,,-3.431208680510616,-0.4153442392586899,-7.028349554551805,-0.16593219353057265 +karman,karman_re400,ppo_state_offline,157,62.800000000000004,0.5725665126449564,,,,-3.0185581248846627,,3.431208680510616,,-3.0185581248846627,,-3.431208680510616,0.5725665126449564,-6.449766805395279,0.41265055562595343 +karman,karman_re400,ppo_state_offline,158,63.2,1.2357234490031461,,,,-1.7145049290170862,,3.431208680510616,,-1.7145049290170862,,-3.431208680510616,1.2357234490031461,-5.145713609527702,1.71670375149353 +karman,karman_re400,ppo_state_offline,159,63.6,1.7156474177278662,,,,-0.34530726171524695,,3.431208680510616,,-0.34530726171524695,,-3.431208680510616,1.7156474177278662,-3.776515942225863,3.0859014187953693 +karman,karman_re400,ppo_state_offline,160,64.0,1.9187448310434632,,,,-0.7170273492973928,,3.431208680510616,,-0.7170273492973928,,-3.431208680510616,1.9187448310434632,-4.148236029808009,2.7141813312132235 +karman,karman_re400,ppo_state_offline,161,64.4,2.0971816150283678,,,,-0.5554990830195883,,3.431208680510616,,-0.5554990830195883,,-3.431208680510616,2.0971816150283678,-3.9867077635302044,2.875709597491028 +karman,karman_re400,ppo_state_offline,162,64.8,1.7378612625214753,,,,1.6649827074667014,,3.431208680510616,,1.6649827074667014,,-3.431208680510616,1.7378612625214753,-1.7662259730439147,5.096191387977317 +karman,karman_re400,ppo_state_offline,163,65.2,0.6603902012654289,,,,3.1580908260265823,,3.431208680510616,,3.1580908260265823,,-3.431208680510616,0.6603902012654289,-0.2731178544840338,6.589299506537198 +karman,karman_re400,ppo_state_offline,164,65.60000000000001,-0.43042121475427925,,,,2.650831597867597,,3.431208680510616,,2.650831597867597,,-3.431208680510616,-0.43042121475427925,-0.7803770826430192,6.082040278378213 +karman,karman_re400,ppo_state_offline,165,66.0,-1.2333595145050082,,,,1.581812633356812,,3.431208680510616,,1.581812633356812,,-3.431208680510616,-1.2333595145050082,-1.849396047153804,5.013021313867428 +karman,karman_re400,ppo_state_offline,166,66.4,-1.824121384205864,,,,0.11089312765484394,,3.431208680510616,,0.11089312765484394,,-3.431208680510616,-1.824121384205864,-3.320315552855772,3.54210180816546 +karman,karman_re400,ppo_state_offline,167,66.8,-2.0964883564495405,,,,-0.05267980022141375,,3.431208680510616,,-0.05267980022141375,,-3.431208680510616,-2.0964883564495405,-3.48388848073203,3.378528880289202 +karman,karman_re400,ppo_state_offline,168,67.2,-2.2482849901303674,,,,0.11880747527464976,,3.431208680510616,,0.11880747527464976,,-3.431208680510616,-2.2482849901303674,-3.3124012052359664,3.550016155785266 +karman,karman_re400,ppo_state_offline,169,67.60000000000001,-2.0113400059201303,,,,-1.9720727622997054,,3.431208680510616,,-1.9720727622997054,,-3.431208680510616,-2.0113400059201303,-5.4032814428103215,1.4591359182109107 +karman,karman_re400,ppo_state_offline,170,68.0,-0.9824302562372653,,,,-3.5220661678519662,,3.431208680510616,,-3.5220661678519662,,-3.431208680510616,-0.9824302562372653,-6.953274848362582,-0.09085748734135013 +karman,karman_re400,ppo_state_offline,171,68.4,0.13422226896868616,,,,-3.485627344598281,,3.431208680510616,,-3.485627344598281,,-3.431208680510616,0.13422226896868616,-6.916836025108897,-0.054418664087664936 +karman,karman_re400,ppo_state_offline,172,68.8,0.936066679586508,,,,-2.189262563527569,,3.431208680510616,,-2.189262563527569,,-3.431208680510616,0.936066679586508,-5.620471244038185,1.2419461169830472 +karman,karman_re400,ppo_state_offline,173,69.2,1.5240983496853837,,,,-0.5420594294629943,,3.431208680510616,,-0.5420594294629943,,-3.431208680510616,1.5240983496853837,-3.9732681099736107,2.8891492510476215 +karman,karman_re400,ppo_state_offline,174,69.60000000000001,1.782050081149677,,,,-0.13978482024892194,,3.431208680510616,,-0.13978482024892194,,-3.431208680510616,1.782050081149677,-3.570993500759538,3.2914238602616943 +karman,karman_re400,ppo_state_offline,175,70.0,1.9565778617697462,,,,-0.5558949221972487,,3.431208680510616,,-0.5558949221972487,,-3.431208680510616,1.9565778617697462,-3.987103602707865,2.8753137583133674 +karman,karman_re400,ppo_state_offline,176,70.4,2.0562333606780125,,,,0.6009327426022544,,3.431208680510616,,0.6009327426022544,,-3.431208680510616,2.0562333606780125,-2.830275937908362,4.03214142311287 +karman,karman_re400,ppo_state_offline,177,70.8,1.2670716437898935,,,,3.112986474190562,,3.431208680510616,,3.112986474190562,,-3.431208680510616,1.2670716437898935,-0.31822220632005394,6.544195154701178 +karman,karman_re400,ppo_state_offline,178,71.2,0.15778494935916365,,,,3.73216603267042,,3.431208680510616,,3.73216603267042,,-3.431208680510616,0.15778494935916365,0.3009573521598039,7.163374713181036 +karman,karman_re400,ppo_state_offline,179,71.60000000000001,-0.7457070379605879,,,,2.842357013766015,,3.431208680510616,,2.842357013766015,,-3.431208680510616,-0.7457070379605879,-0.5888516667446013,6.2735656942766305 +karman,karman_re400,ppo_state_offline,180,72.0,-1.5630673494611926,,,,1.347249907358949,,3.431208680510616,,1.347249907358949,,-3.431208680510616,-1.5630673494611926,-2.083958773151667,4.778458587869565 +karman,karman_re400,ppo_state_offline,181,72.4,-1.9429116457261655,,,,-0.30250486694315915,,3.431208680510616,,-0.30250486694315915,,-3.431208680510616,-1.9429116457261655,-3.7337135474537755,3.1287038135674567 +karman,karman_re400,ppo_state_offline,182,72.8,-1.9471568888256912,,,,-0.15844467908383042,,3.431208680510616,,-0.15844467908383042,,-3.431208680510616,-1.9471568888256912,-3.5896533595944464,3.272764001426786 +karman,karman_re400,ppo_state_offline,183,73.2,-1.9457218870793291,,,,0.31178044459660387,,3.431208680510616,,0.31178044459660387,,-3.431208680510616,-1.9457218870793291,-3.1194282359140124,3.74298912510722 +karman,karman_re400,ppo_state_offline,184,73.60000000000001,-1.4260901723982045,,,,-2.003248903686396,,3.431208680510616,,-2.003248903686396,,-3.431208680510616,-1.4260901723982045,-5.434457584197013,1.42795977682422 +karman,karman_re400,ppo_state_offline,185,74.0,-0.3735747882870525,,,,-3.392734699055866,,3.431208680510616,,-3.392734699055866,,-3.431208680510616,-0.3735747882870525,-6.823943379566482,0.03847398145475012 +karman,karman_re400,ppo_state_offline,186,74.4,0.5883979685025728,,,,-2.9137881725707113,,3.431208680510616,,-2.9137881725707113,,-3.431208680510616,0.5883979685025728,-6.344996853081327,0.5174205079399048 +karman,karman_re400,ppo_state_offline,187,74.8,1.259578221845705,,,,-1.7107703386216984,,3.431208680510616,,-1.7107703386216984,,-3.431208680510616,1.259578221845705,-5.1419790191323145,1.7204383418889178 +karman,karman_re400,ppo_state_offline,188,75.2,1.7192100582021268,,,,-0.38050954427625616,,3.431208680510616,,-0.38050954427625616,,-3.431208680510616,1.7192100582021268,-3.811718224786872,3.05069913623436 +karman,karman_re400,ppo_state_offline,189,75.60000000000001,1.9193381900576458,,,,-0.6841509263968132,,3.431208680510616,,-0.6841509263968132,,-3.431208680510616,1.9193381900576458,-4.115359606907429,2.747057754113803 +karman,karman_re400,ppo_state_offline,190,76.0,2.1069045510564886,,,,-0.4053795108253051,,3.431208680510616,,-0.4053795108253051,,-3.431208680510616,2.1069045510564886,-3.836588191335921,3.025829169685311 +karman,karman_re400,ppo_state_offline,191,76.4,1.7163273119649345,,,,2.0369367969011796,,3.431208680510616,,2.0369367969011796,,-3.431208680510616,1.7163273119649345,-1.3942718836094365,5.468145477411795 +karman,karman_re400,ppo_state_offline,192,76.80000000000001,0.6004388408292884,,,,3.459237812344529,,3.431208680510616,,3.459237812344529,,-3.431208680510616,0.6004388408292884,0.028029131833912757,6.890446492855145 +karman,karman_re400,ppo_state_offline,193,77.2,-0.4671881450765538,,,,2.8274705680150722,,3.431208680510616,,2.8274705680150722,,-3.431208680510616,-0.4671881450765538,-0.6037381124955439,6.258679248525688 +karman,karman_re400,ppo_state_offline,194,77.60000000000001,-1.255642867195707,,,,1.6734734578275157,,3.431208680510616,,1.6734734578275157,,-3.431208680510616,-1.255642867195707,-1.7577352226831005,5.104682138338132 +karman,karman_re400,ppo_state_offline,195,78.0,-1.7956021452907238,,,,0.03662243173378447,,3.431208680510616,,0.03662243173378447,,-3.431208680510616,-1.7956021452907238,-3.3945862487768315,3.4678311122444008 +karman,karman_re400,ppo_state_offline,196,78.4,-2.011471340547783,,,,-0.24455096641693405,,3.431208680510616,,-0.24455096641693405,,-3.431208680510616,-2.011471340547783,-3.67575964692755,3.1866577140936823 +karman,karman_re400,ppo_state_offline,197,78.80000000000001,-2.0868731343520097,,,,0.3396287964658718,,3.431208680510616,,0.3396287964658718,,-3.431208680510616,-2.0868731343520097,-3.0915798840447444,3.770837476976488 +karman,karman_re400,ppo_state_offline,198,79.2,-1.9242996908357706,,,,-1.4334645937283965,,3.431208680510616,,-1.4334645937283965,,-3.431208680510616,-1.9242996908357706,-4.864673274239013,1.9977440867822196 +illusion,illusion_0.75L,ppo_state_offline,2,0.4,,-0.18749692529384349,1.29789204050794,0.12876548602026175,,-0.9606599041422824,,0.12876548602026175,,-0.9606599041422824,,1.1103951152140965,-0.8318944181220207,-0.8318944181220207 +illusion,illusion_0.75L,ppo_state_offline,3,0.6000000000000001,,-0.2935186560900523,1.660705603926128,0.2015770250537045,,-1.2292033824722928,,0.2015770250537045,,-1.2292033824722928,,1.3671869478360759,-1.0276263574185882,-1.0276263574185882 +illusion,illusion_0.75L,ppo_state_offline,4,0.8,,-0.45419029116331744,1.9856092407100605,0.3119199607976137,,-1.4696870951593513,,0.3119199607976137,,-1.4696870951593513,,1.531418949546743,-1.1577671343617375,-1.1577671343617375 +illusion,illusion_0.75L,ppo_state_offline,5,1.0,,-0.7427609173911403,2.080533007132811,0.5100988742873327,,-1.5399467573704055,,0.5100988742873327,,-1.5399467573704055,,1.337772089741671,-1.0298478830830728,-1.0298478830830728 +illusion,illusion_0.75L,ppo_state_offline,6,1.2000000000000002,,-1.1276379892786468,2.0659528669660943,0.7744172525326387,,-1.529154984543555,,0.7744172525326387,,-1.529154984543555,,0.9383148776874475,-0.7547377320109163,-0.7547377320109163 +illusion,illusion_0.75L,ppo_state_offline,7,1.4000000000000001,,-1.5546704255168802,1.9764715677662121,1.06768627074431,,-1.4629236697431003,,1.06768627074431,,-1.4629236697431003,,0.42180114224933196,-0.3952373989987903,-0.3952373989987903 +illusion,illusion_0.75L,ppo_state_offline,8,1.6,,-1.9778235343894703,1.8722923624937087,1.3582911200748868,,-1.385813415402119,,1.3582911200748868,,-1.385813415402119,,-0.10553117189576167,-0.02752229532723227,-0.02752229532723227 +illusion,illusion_0.75L,ppo_state_offline,9,1.8,,-2.3660530831043745,1.7757699839829515,1.6249118470513784,,-1.3143705095257256,,1.6249118470513784,,-1.3143705095257256,,-0.590283099121423,0.3105413375256527,0.3105413375256527 +illusion,illusion_0.75L,ppo_state_offline,10,2.0,,-2.7104798407523836,1.8256766513501148,1.8614505464323068,,-1.3513098949234794,,1.8614505464323068,,-1.3513098949234794,,-0.8848031894022688,0.5101406515088274,0.5101406515088274 +illusion,illusion_0.75L,ppo_state_offline,11,2.2,,-3.0229504570242742,1.6534424517641195,2.0760430295263315,,-1.2238274198791363,,2.0760430295263315,,-1.2238274198791363,,-1.3695080052601547,0.8522156096471951,0.8522156096471951 +illusion,illusion_0.75L,ppo_state_offline,12,2.4000000000000004,,-3.303762687681557,1.6352560311523094,2.2688937832352303,,-1.2103663888100227,,2.2688937832352303,,-1.2103663888100227,,-1.6685066565292475,1.0585273944252076,1.0585273944252076 +illusion,illusion_0.75L,ppo_state_offline,13,2.6,,-3.5323746811730845,1.6784995516311179,2.4258954748942463,,-1.242373917126237,,2.4258954748942463,,-1.242373917126237,,-1.8538751295419666,1.1835215577680094,1.1835215577680094 +illusion,illusion_0.75L,ppo_state_offline,14,2.8000000000000003,,-3.709438299871228,1.727978296150398,2.5474957778455676,,-1.2789965671490924,,2.5474957778455676,,-1.2789965671490924,,-1.9814600037208299,1.2684992106964752,1.2684992106964752 +illusion,illusion_0.75L,ppo_state_offline,15,3.0,,-3.826181630334851,1.8331874724223982,2.6276704882479582,,-1.356869174452234,,2.6276704882479582,,-1.356869174452234,,-1.9929941579124528,1.2708013137957241,1.2708013137957241 +illusion,illusion_0.75L,ppo_state_offline,16,3.2,,-3.8752510993686875,1.9402597533935226,2.661369462345778,,-1.4361207947439814,,2.661369462345778,,-1.4361207947439814,,-1.9349913459751649,1.2252486676017968,1.2252486676017968 +illusion,illusion_0.75L,ppo_state_offline,17,3.4000000000000004,,-3.8565512294959157,2.0944125603286885,2.648527129977343,,-1.5502199771965097,,2.648527129977343,,-1.5502199771965097,,-1.7621386691672272,1.0983071527808335,1.0983071527808335 +illusion,illusion_0.75L,ppo_state_offline,18,3.6,,-3.862963318217634,2.2588618326879435,2.652930699365818,,-1.671940287738736,,2.652930699365818,,-1.671940287738736,,-1.6041014855296907,0.9809904116270822,0.9809904116270822 +illusion,illusion_0.75L,ppo_state_offline,19,3.8000000000000003,,-3.647694142628264,2.2569619561855467,2.5050923282751723,,-1.6705340573885135,,2.5050923282751723,,-1.6705340573885135,,-1.3907321864427171,0.8345582708866588,0.8345582708866588 +illusion,illusion_0.75L,ppo_state_offline,20,4.0,,-3.487915668517173,2.289565086727308,2.3953627802185995,,-1.6946658952328455,,2.3953627802185995,,-1.6946658952328455,,-1.1983505817898648,0.700696884985754,0.700696884985754 +illusion,illusion_0.75L,ppo_state_offline,21,4.2,,-3.2713669033581625,2.3067641964381886,2.24664563752899,,-1.7073961490370995,,2.24664563752899,,-1.7073961490370995,,-0.9646027069199739,0.5392494884918906,0.5392494884918906 +illusion,illusion_0.75L,ppo_state_offline,22,4.4,,-3.037769348212292,2.2380518760988832,2.0862200589528994,,-1.6565373957584233,,2.0862200589528994,,-1.6565373957584233,,-0.7997174721134086,0.4296826631944761,0.4296826631944761 +illusion,illusion_0.75L,ppo_state_offline,23,4.6000000000000005,,-2.8061206818750217,2.091674863524286,1.927132900269538,,-1.5481936179404205,,1.927132900269538,,-1.5481936179404205,,-0.7144458183507356,0.37893928232911755,0.37893928232911755 +illusion,illusion_0.75L,ppo_state_offline,24,4.800000000000001,,-2.582211060439271,1.9425405665507327,1.7733606120914664,,-1.437808982729258,,1.7733606120914664,,-1.437808982729258,,-0.6396704938885382,0.3355516293622085,0.3355516293622085 +illusion,illusion_0.75L,ppo_state_offline,25,5.0,,-2.3743287369429913,1.7947677876525845,1.6305952393896526,,-1.3284321014629419,,1.6305952393896526,,-1.3284321014629419,,-0.5795609492904068,0.3021631379267107,0.3021631379267107 +illusion,illusion_0.75L,ppo_state_offline,26,5.2,,-2.1958006872571088,1.653474536965014,1.5079892230508507,,-1.2238511683613318,,1.5079892230508507,,-1.2238511683613318,,-0.5423261502920949,0.2841380546895189,0.2841380546895189 +illusion,illusion_0.75L,ppo_state_offline,27,5.4,,-2.0421702237128883,1.5283695319062136,1.4024818859316577,,-1.1312522784563808,,1.4024818859316577,,-1.1312522784563808,,-0.5138006918066746,0.2712296074752769,0.2712296074752769 +illusion,illusion_0.75L,ppo_state_offline,28,5.6000000000000005,,-1.9190498643248532,1.414506123751032,1.3179276838254423,,-1.046974073991191,,1.3179276838254423,,-1.046974073991191,,-0.5045437405738213,0.2709536098342513,0.2709536098342513 +illusion,illusion_0.75L,ppo_state_offline,29,5.800000000000001,,-1.83074814984719,1.2972147663796978,1.2572855524234505,,-0.9601586065930191,,1.2572855524234505,,-0.9601586065930191,,-0.5335333834674922,0.2971269458304314,0.2971269458304314 +illusion,illusion_0.75L,ppo_state_offline,30,6.0,,-1.773794824861245,1.1871602440954816,1.2181722573078535,,-0.8786996226958657,,1.2181722573078535,,-0.8786996226958657,,-0.5866345807657634,0.33947263461198784,0.33947263461198784 +illusion,illusion_0.75L,ppo_state_offline,31,6.2,,-1.74404233395202,1.1115962312490824,1.1977394211627503,,-0.8227694566481419,,1.1977394211627503,,-0.8227694566481419,,-0.6324461027029376,0.3749699645146084,0.3749699645146084 +illusion,illusion_0.75L,ppo_state_offline,32,6.4,,-1.7442172076491256,1.0318409538454036,1.1978595175140088,,-0.7637370450498134,,1.1978595175140088,,-0.7637370450498134,,-0.7123762538037219,0.43412247246419533,0.43412247246419533 +illusion,illusion_0.75L,ppo_state_offline,33,6.6000000000000005,,-1.771192438974032,1.013790324533259,1.2163850414212245,,-0.7503765225383059,,1.2163850414212245,,-0.7503765225383059,,-0.757402114440773,0.4660085188829186,0.4660085188829186 +illusion,illusion_0.75L,ppo_state_offline,34,6.800000000000001,,-1.8234700256546938,1.0393653540476533,1.2522872240642315,,-0.7693063754343287,,1.2522872240642315,,-0.7693063754343287,,-0.7841046716070406,0.48298084862990287,0.48298084862990287 +illusion,illusion_0.75L,ppo_state_offline,35,7.0,,-1.9103072692737337,1.1628221171009587,1.311923614696994,,-0.8606852871303198,,1.311923614696994,,-0.8606852871303198,,-0.747485152172775,0.45123832756667415,0.45123832756667415 +illusion,illusion_0.75L,ppo_state_offline,36,7.2,,-2.039946943480785,1.3513982588398592,1.4009550248420835,,-1.0002635668272322,,1.4009550248420835,,-1.0002635668272322,,-0.6885486846409259,0.4006914580148513,0.4006914580148513 +illusion,illusion_0.75L,ppo_state_offline,37,7.4,,-2.184234728589503,1.6122187367408634,1.500046179255383,,-1.1933148896480923,,1.500046179255383,,-1.1933148896480923,,-0.5720159918486396,0.3067312896072907,0.3067312896072907 +illusion,illusion_0.75L,ppo_state_offline,38,7.6000000000000005,,-2.366262591309358,1.9271967505350134,1.625055729015297,,-1.4264519604479062,,1.625055729015297,,-1.4264519604479062,,-0.4390658407743444,0.1986037685673907,0.1986037685673907 +illusion,illusion_0.75L,ppo_state_offline,39,7.800000000000001,,-2.58198475330184,2.2392259300791753,1.7732051932839554,,-1.6574063945263977,,1.7732051932839554,,-1.6574063945263977,,-0.3427588232226646,0.11579879875755772,0.11579879875755772 +illusion,illusion_0.75L,ppo_state_offline,40,8.0,,-2.8203015325971137,2.496887157300356,1.9368717486935816,,-1.8481193368344588,,1.9368717486935816,,-1.8481193368344588,,-0.32341437529675776,0.08875241185912275,0.08875241185912275 +illusion,illusion_0.75L,ppo_state_offline,41,8.200000000000001,,-3.0375638270957053,2.7206560778179973,2.0860789151638843,,-2.013746232620314,,2.0860789151638843,,-2.013746232620314,,-0.31690774927770793,0.07233268254357039,0.07233268254357039 +illusion,illusion_0.75L,ppo_state_offline,42,8.4,,-3.2258961271505515,2.862411139093722,2.215418103589884,,-2.1186689837634107,,2.215418103589884,,-2.1186689837634107,,-0.3634849880568294,0.09674911982647316,0.09674911982647316 +illusion,illusion_0.75L,ppo_state_offline,43,8.6,,-3.391045794105772,2.9348602437289495,2.3288363748401784,,-2.1722935902344034,,2.3288363748401784,,-2.1722935902344034,,-0.4561855503768224,0.15654278460577498,0.15654278460577498 +illusion,illusion_0.75L,ppo_state_offline,44,8.8,,-3.5284597856563638,2.9731142150454546,2.423206879211202,,-2.2006080072051657,,2.423206879211202,,-2.2006080072051657,,-0.5553455706109092,0.22259887200603634,0.22259887200603634 +illusion,illusion_0.75L,ppo_state_offline,45,9.0,,-3.6462464574117934,2.923708533455552,2.504098115222286,,-2.1640394361230397,,2.504098115222286,,-2.1640394361230397,,-0.7225379239562413,0.34005867909924614,0.34005867909924614 +illusion,illusion_0.75L,ppo_state_offline,46,9.200000000000001,,-3.7594134227442164,2.8626264824645187,2.581816719245421,,-2.1188283743255614,,2.581816719245421,,-2.1188283743255614,,-0.8967869402796977,0.4629883449198595,0.4629883449198595 +illusion,illusion_0.75L,ppo_state_offline,47,9.4,,-3.845248843951961,2.7575915516655405,2.6407650977974826,,-2.0410847381804094,,2.6407650977974826,,-2.0410847381804094,,-1.0876572922864205,0.5996803596170732,0.5996803596170732 +illusion,illusion_0.75L,ppo_state_offline,48,9.600000000000001,,-3.8981843002181775,2.6686936743770517,2.6771190792995334,,-1.975285254395156,,2.6771190792995334,,-1.975285254395156,,-1.2294906258411258,0.7018338249043774,0.7018338249043774 +illusion,illusion_0.75L,ppo_state_offline,49,9.8,,-3.9165823209186845,2.56132721897975,2.689754113573289,,-1.8958158952104711,,2.689754113573289,,-1.8958158952104711,,-1.3552551019389347,0.7939382183628181,0.7939382183628181 +illusion,illusion_0.75L,ppo_state_offline,50,10.0,,-3.8769861739168356,2.4366917153437746,2.662561043045694,,-1.8035645158670839,,2.662561043045694,,-1.8035645158670839,,-1.440294458573061,0.85899652717861,0.85899652717861 +illusion,illusion_0.75L,ppo_state_offline,51,10.200000000000001,,-3.790358651147494,2.290121710886644,2.6030686804128447,,-1.695077891373404,,2.6030686804128447,,-1.695077891373404,,-1.5002369402608502,0.9079907890394407,0.9079907890394407 +illusion,illusion_0.75L,ppo_state_offline,52,10.4,,-3.6367877015427506,2.1148060101525803,2.497602215117708,,-1.5653145836364133,,2.497602215117708,,-1.5653145836364133,,-1.5219816913901703,0.9322876314812949,0.9322876314812949 +illusion,illusion_0.75L,ppo_state_offline,53,10.600000000000001,,-3.443999963106867,1.9741610727939425,2.365203207509775,,-1.4612135121881522,,2.365203207509775,,-1.4612135121881522,,-1.4698388903129245,0.9039896953216227,0.9039896953216227 +illusion,illusion_0.75L,ppo_state_offline,54,10.8,,-3.2075806125992794,1.8785986065855982,2.202839731282127,,-1.3904811039738447,,2.202839731282127,,-1.3904811039738447,,-1.3289820060136812,0.8123586273082821,0.8123586273082821 +illusion,illusion_0.75L,ppo_state_offline,55,11.0,,-2.952098354530052,1.8271721581858091,2.0273846027338496,,-1.352416823241539,,2.0273846027338496,,-1.352416823241539,,-1.1249261963442427,0.6749677794923106,0.6749677794923106 +illusion,illusion_0.75L,ppo_state_offline,56,11.200000000000001,,-2.6997065152581614,1.7799605275244808,1.854051851807614,,-1.3174722214025734,,1.854051851807614,,-1.3174722214025734,,-0.9197459877336807,0.5365796304050405,0.5365796304050405 +illusion,illusion_0.75L,ppo_state_offline,57,11.4,,-2.4736495011728024,1.7471944474231211,1.698804819135627,,-1.2932197732891142,,1.698804819135627,,-1.2932197732891142,,-0.7264550537496812,0.4055850458465129,0.4055850458465129 +illusion,illusion_0.75L,ppo_state_offline,58,11.600000000000001,,-2.2751140026839587,1.7099389627516768,1.562458476841606,,-1.2656444055264477,,1.562458476841606,,-1.2656444055264477,,-0.5651750399322819,0.29681407131515836,0.29681407131515836 +illusion,illusion_0.75L,ppo_state_offline,59,11.8,,-2.116267390873085,1.650548655049748,1.453368895023431,,-1.2216855202546133,,1.453368895023431,,-1.2216855202546133,,-0.4657187358233372,0.23168337476881762,0.23168337476881762 +illusion,illusion_0.75L,ppo_state_offline,60,12.0,,-1.990817030186846,1.577442224388707,1.3672145400127296,,-1.1675743812083064,,1.3672145400127296,,-1.1675743812083064,,-0.413374805798139,0.1996401588044232,0.1996401588044232 +illusion,illusion_0.75L,ppo_state_offline,61,12.200000000000001,,-1.9051977623314136,1.5084801922611677,1.3084146070494251,,-1.1165307989183866,,1.3084146070494251,,-1.1165307989183866,,-0.3967175700702459,0.19188380813103856,0.19188380813103856 +illusion,illusion_0.75L,ppo_state_offline,62,12.4,,-1.848402272884823,1.4330544942695602,1.2694097071509998,,-1.0607030092864191,,1.2694097071509998,,-1.0607030092864191,,-0.41534777861526284,0.20870669786458063,0.20870669786458063 +illusion,illusion_0.75L,ppo_state_offline,63,12.600000000000001,,-1.8290812943815198,1.3513559592491668,1.25614082189613,,-1.0002322579668097,,1.25614082189613,,-1.0002322579668097,,-0.47772533513235294,0.2559085639293204,0.2559085639293204 +illusion,illusion_0.75L,ppo_state_offline,64,12.8,,-1.8442809790920687,1.2749107449864443,1.2665793652804618,,-0.9436498536421613,,1.2665793652804618,,-0.9436498536421613,,-0.5693702341056244,0.3229295116383005,0.3229295116383005 +illusion,illusion_0.75L,ppo_state_offline,65,13.0,,-1.8864259653839546,1.2647010417909905,1.295522878005735,,-0.9360929442945799,,1.295522878005735,,-0.9360929442945799,,-0.621724923592964,0.35942993371115517,0.35942993371115517 +illusion,illusion_0.75L,ppo_state_offline,66,13.200000000000001,,-1.9718789450726302,1.1010728862021892,1.354208610821073,,-0.8149803992161786,,1.354208610821073,,-0.8149803992161786,,-0.8708060588704409,0.5392282116048943,0.5392282116048943 +illusion,illusion_0.75L,ppo_state_offline,67,13.4,,-2.085577256385467,1.0597638509817984,1.43229212228632,,-0.7844047175905325,,1.43229212228632,,-0.7844047175905325,,-1.0258134054036685,0.6478874046957875,0.6478874046957875 +illusion,illusion_0.75L,ppo_state_offline,68,13.600000000000001,,-2.206873044381129,1.084172156842697,1.5155932807932906,,-0.8024709974017792,,1.5155932807932906,,-0.8024709974017792,,-1.122700887538432,0.7131222833915114,0.7131222833915114 +illusion,illusion_0.75L,ppo_state_offline,69,13.8,,-2.342619263435719,1.1817105667151089,1.6088184248567658,,-0.874665938547694,,1.6088184248567658,,-0.874665938547694,,-1.1609086967206101,0.7341524863090718,0.7341524863090718 +illusion,illusion_0.75L,ppo_state_offline,70,14.0,,-2.4868405970711485,1.3688785646934096,1.707863943021677,,-1.0132019533967944,,1.707863943021677,,-1.0132019533967944,,-1.1179620323777388,0.6946619896248827,0.6946619896248827 +illusion,illusion_0.75L,ppo_state_offline,71,14.200000000000001,,-2.639594353037981,1.6480294260177273,1.8127691919886344,,-1.2198208641469557,,1.8127691919886344,,-1.2198208641469557,,-0.9915649270202536,0.5929483278416787,0.5929483278416787 +illusion,illusion_0.75L,ppo_state_offline,72,14.4,,-2.8100321219151314,1.9706026197269615,1.9298191228676662,,-1.4585796543051168,,1.9298191228676662,,-1.4585796543051168,,-0.8394295021881699,0.4712394685625494,0.4712394685625494 +illusion,illusion_0.75L,ppo_state_offline,73,14.600000000000001,,-2.997775768239,2.2874282363816016,2.0587540471509436,,-1.6930842641077564,,2.0587540471509436,,-1.6930842641077564,,-0.7103475318573982,0.3656697830431872,0.3656697830431872 +illusion,illusion_0.75L,ppo_state_offline,74,14.8,,-3.200568015203749,2.5520883634922567,2.1980237562442175,,-1.88897757757696,,2.1980237562442175,,-1.88897757757696,,-0.6484796517114924,0.3090461786672576,0.3090461786672576 +illusion,illusion_0.75L,ppo_state_offline,75,15.0,,-3.388423565808635,2.761855638813614,2.3270355319697806,,-2.044240884780492,,2.3270355319697806,,-2.044240884780492,,-0.6265679269950208,0.2827946471892888,0.2827946471892888 +illusion,illusion_0.75L,ppo_state_offline,76,15.200000000000001,,-3.5587524074307715,2.842330129428352,2.4440106559104544,,-2.1038056359516273,,2.4440106559104544,,-2.1038056359516273,,-0.7164222780024194,0.3402050199588271,0.3402050199588271 +illusion,illusion_0.75L,ppo_state_offline,77,15.4,,-3.623806698622353,2.915201028277584,2.4886873747945626,,-2.157742441570582,,2.4886873747945626,,-2.157742441570582,,-0.708605670344769,0.33094493322398044,0.33094493322398044 +illusion,illusion_0.75L,ppo_state_offline,78,15.600000000000001,,-3.6510251157589053,2.8737592059898214,2.5073799091163798,,-2.127068475027985,,2.5073799091163798,,-2.127068475027985,,-0.7772659097690839,0.38031143408839485,0.38031143408839485 +illusion,illusion_0.75L,ppo_state_offline,79,15.8,,-3.626308038399284,2.7616698570885854,2.4904051962018925,,-2.0441033748423862,,2.4904051962018925,,-2.0441033748423862,,-0.8646381813106987,0.44630182135950625,0.44630182135950625 +illusion,illusion_0.75L,ppo_state_offline,80,16.0,,-3.553452556888364,2.6167867891488896,2.440370927793002,,-1.9368653690493025,,2.440370927793002,,-1.9368653690493025,,-0.9366657677394743,0.5035055587436996,0.5035055587436996 +illusion,illusion_0.75L,ppo_state_offline,81,16.2,,-3.4453421765449344,2.435880572624535,2.36612498670922,,-1.8029641328902337,,2.36612498670922,,-1.8029641328902337,,-1.0094616039203994,0.5631608538189861,0.5631608538189861 +illusion,illusion_0.75L,ppo_state_offline,82,16.400000000000002,,-3.318090582223741,2.263741667286889,2.278733615549707,,-1.6755521917274672,,2.278733615549707,,-1.6755521917274672,,-1.0543489149368521,0.6031814238222399,0.6031814238222399 +illusion,illusion_0.75L,ppo_state_offline,83,16.6,,-3.1651664978405756,1.9682965710184863,2.1737113917508815,,-1.456872787738338,,2.1737113917508815,,-1.456872787738338,,-1.1968699268220893,0.7168386040125434,0.7168386040125434 +illusion,illusion_0.75L,ppo_state_offline,84,16.8,,-2.990915211814353,1.7621623738942802,2.0540424878493466,,-1.304298573651712,,2.0540424878493466,,-1.304298573651712,,-1.2287528379200727,0.7497439141976345,0.7497439141976345 +illusion,illusion_0.75L,ppo_state_offline,85,17.0,,-2.7918635448615947,1.6174285562149244,1.917341661432345,,-1.1971710383263687,,1.917341661432345,,-1.1971710383263687,,-1.1744349886466703,0.7201706231059763,0.7201706231059763 +illusion,illusion_0.75L,ppo_state_offline,86,17.2,,-2.5712589007401347,1.3975341340015381,1.7658391011951111,,-1.034411927420455,,1.7658391011951111,,-1.034411927420455,,-1.1737247667385966,0.731427173774656,0.731427173774656 +illusion,illusion_0.75L,ppo_state_offline,87,17.400000000000002,,-2.3457308403821515,1.2718270807911247,1.6109553330602946,,-0.9413674199282421,,1.6109553330602946,,-0.9413674199282421,,-1.0739037595910268,0.6695879131320525,0.6695879131320525 +illusion,illusion_0.75L,ppo_state_offline,88,17.6,,-2.1093004057688196,1.22496946886326,1.448584244706415,,-0.9066848519040618,,1.448584244706415,,-0.9066848519040618,,-0.8843309369055596,0.5418993928023532,0.5418993928023532 +illusion,illusion_0.75L,ppo_state_offline,89,17.8,,-1.8994287112264119,1.2175681220157513,1.3044526505093534,,-0.9012066018407754,,1.3044526505093534,,-0.9012066018407754,,-0.6818605892106606,0.40324604866857805,0.40324604866857805 +illusion,illusion_0.75L,ppo_state_offline,90,18.0,,-1.725653643038363,1.2350641700465195,1.185110794218268,,-0.9141566402873696,,1.185110794218268,,-0.9141566402873696,,-0.49058947299184363,0.2709541539308983,0.2709541539308983 +illusion,illusion_0.75L,ppo_state_offline,91,18.2,,-1.605345084710462,1.2526868765107808,1.1024876260718524,,-0.9272004274239789,,1.1024876260718524,,-0.9272004274239789,,-0.3526582081996812,0.17528719864787345,0.17528719864787345 +illusion,illusion_0.75L,ppo_state_offline,92,18.400000000000002,,-1.5417967633225722,1.2423600082558812,1.058845147794092,,-0.9195567960908525,,1.058845147794092,,-0.9195567960908525,,-0.299436755066691,0.1392883517032394,0.1392883517032394 +illusion,illusion_0.75L,ppo_state_offline,93,18.6,,-1.5431711459188586,1.2892694131484856,1.0597890195013813,,-0.954277699679925,,1.0597890195013813,,-0.954277699679925,,-0.253901732770373,0.10551131982145623,0.10551131982145623 +illusion,illusion_0.75L,ppo_state_offline,94,18.8,,-1.5943867450243103,1.2041335557071842,1.094961871004397,,-0.8912627476684898,,1.094961871004397,,-0.8912627476684898,,-0.39025318931712616,0.20369912333590712,0.20369912333590712 +illusion,illusion_0.75L,ppo_state_offline,95,19.0,,-1.6962804837192573,1.143158815893674,1.164938468033464,,-0.8461311143152078,,1.164938468033464,,-0.8461311143152078,,-0.5531216678255833,0.3188073537182562,0.3188073537182562 +illusion,illusion_0.75L,ppo_state_offline,96,19.200000000000003,,-1.82932820147567,1.061413535018794,1.2563103879406414,,-0.7856257631470066,,1.2563103879406414,,-0.7856257631470066,,-0.7679146664568759,0.4706846247936348,0.4706846247936348 +illusion,illusion_0.75L,ppo_state_offline,97,19.400000000000002,,-1.984746953907848,1.007189425338025,1.3630458512674593,,-0.7454907392911378,,1.3630458512674593,,-0.7454907392911378,,-0.977557528569823,0.6175551119763214,0.6175551119763214 +illusion,illusion_0.75L,ppo_state_offline,98,19.6,,-2.1600288757041834,0.9668113416207376,1.483422555126996,,-0.7156041194316636,,1.483422555126996,,-0.7156041194316636,,-1.1932175340834459,0.7678184356953324,0.7678184356953324 +illusion,illusion_0.75L,ppo_state_offline,99,19.8,,-2.3456306315604327,0.9988479340365944,1.610886513597725,,-0.7393166231212754,,1.610886513597725,,-0.7393166231212754,,-1.3467826975238384,0.8715698904764496,0.8715698904764496 +illusion,illusion_0.75L,ppo_state_offline,100,20.0,,-2.50924808702516,1.0738967210446617,1.7232525224871833,,-0.7948654347966665,,1.7232525224871833,,-0.7948654347966665,,-1.4353513659804982,0.9283870876905168,0.9283870876905168 +illusion,illusion_0.75L,ppo_state_offline,101,20.200000000000003,,-2.676517981267708,1.252641572687795,1.8381268821330519,,-0.9271668949229015,,1.8381268821330519,,-0.9271668949229015,,-1.423876408579913,0.9109599872101504,0.9109599872101504 +illusion,illusion_0.75L,ppo_state_offline,102,20.400000000000002,,-2.8426633039375027,1.524114217116437,1.9522289304201967,,-1.1281026248870114,,1.9522289304201967,,-1.1281026248870114,,-1.3185490868210656,0.8241263055331853,0.8241263055331853 +illusion,illusion_0.75L,ppo_state_offline,103,20.6,,-3.012403810795733,1.8487073364505153,2.0688000092721404,,-1.368356502075969,,2.0688000092721404,,-1.368356502075969,,-1.1636964743452178,0.7004435071961714,0.7004435071961714 +illusion,illusion_0.75L,ppo_state_offline,104,20.8,,-3.197981936508081,2.2241831381392627,2.196247739492943,,-1.6462721810386771,,2.196247739492943,,-1.6462721810386771,,-0.9737987983688181,0.5499755584542658,0.5499755584542658 +illusion,illusion_0.75L,ppo_state_offline,105,21.0,,-3.387285384974152,2.4684214554731754,2.3262538743073873,,-1.827049896900194,,2.3262538743073873,,-1.827049896900194,,-0.9188639295009766,0.49920397740719324,0.49920397740719324 +illusion,illusion_0.75L,ppo_state_offline,106,21.200000000000003,,-3.574904155689417,2.7669861465551273,2.4551030389526938,,-2.0480383293454762,,2.4551030389526938,,-2.0480383293454762,,-0.8079180091342897,0.4070647096072175,0.4070647096072175 +illusion,illusion_0.75L,ppo_state_offline,107,21.400000000000002,,-3.6967094935822544,2.7984303644473556,2.538754136212305,,-2.0713123755707348,,2.538754136212305,,-2.0713123755707348,,-0.8982791291348988,0.46744176064157017,0.46744176064157017 +illusion,illusion_0.75L,ppo_state_offline,108,21.6,,-3.754396814961553,2.7892818762672507,2.5783715110730987,,-2.064540945048126,,2.5783715110730987,,-2.064540945048126,,-0.9651149386943025,0.5138305660249727,0.5138305660249727 +illusion,illusion_0.75L,ppo_state_offline,109,21.8,,-3.711411536499641,2.816742241799741,2.548850918859707,,-2.0848662658736012,,2.548850918859707,,-2.0848662658736012,,-0.8946692946999,0.4639846529861056,0.4639846529861056 +illusion,illusion_0.75L,ppo_state_offline,110,22.0,,-3.57761739592437,2.6025640324558053,2.456966385228884,,-1.926338120514771,,2.456966385228884,,-1.926338120514771,,-0.9750533634685645,0.530628264714113,0.530628264714113 +illusion,illusion_0.75L,ppo_state_offline,111,22.200000000000003,,-3.389218910202129,2.4203619102893352,2.3275817430994894,,-1.7914776947227609,,2.3275817430994894,,-1.7914776947227609,,-0.9688569999127936,0.5361040483767285,0.5361040483767285 +illusion,illusion_0.75L,ppo_state_offline,112,22.400000000000002,,-3.1598214602963326,2.1543049353315036,2.1700406309845253,,-1.5945504772946082,,2.1700406309845253,,-1.5945504772946082,,-1.005516524964829,0.5754901536899171,0.5754901536899171 +illusion,illusion_0.75L,ppo_state_offline,113,22.6,,-2.914878990663602,1.870764289779953,2.0018238130296053,,-1.3846823828193595,,2.0018238130296053,,-1.3846823828193595,,-1.044114700883649,0.6171414302102458,0.6171414302102458 +illusion,illusion_0.75L,ppo_state_offline,114,22.8,,-2.6708270770952933,1.6118522204010588,1.8342185938210847,,-1.1930436054881821,,1.8342185938210847,,-1.1930436054881821,,-1.0589748566942345,0.6411749883329025,0.6411749883329025 +illusion,illusion_0.75L,ppo_state_offline,115,23.0,,-2.4315785152415703,1.395978662689266,1.669912126936559,,-1.0332606152349217,,1.669912126936559,,-1.0332606152349217,,-1.0355998525523042,0.6366515117016374,0.6366515117016374 +illusion,illusion_0.75L,ppo_state_offline,116,23.200000000000003,,-2.197261715929416,1.2483333834096533,1.5089925998624134,,-0.923978105278004,,1.5089925998624134,,-0.923978105278004,,-0.9489283325197626,0.5850144945844095,0.5850144945844095 +illusion,illusion_0.75L,ppo_state_offline,117,23.400000000000002,,-1.9763498001954705,1.1779627268443469,1.3572790176126321,,-0.8718919023577673,,1.3572790176126321,,-0.8718919023577673,,-0.7983870733511236,0.4853871152548649,0.4853871152548649 +illusion,illusion_0.75L,ppo_state_offline,118,23.6,,-1.7822104786637858,1.155026735145837,1.2239517960942319,,-0.8549153843587234,,1.2239517960942319,,-0.8549153843587234,,-0.6271837435179488,0.3690364117355085,0.3690364117355085 +illusion,illusion_0.75L,ppo_state_offline,119,23.8,,-1.6169975698414367,1.165408761105645,1.1104900928263461,,-0.8625998417342756,,1.1104900928263461,,-0.8625998417342756,,-0.45158880873579177,0.24789025109207052,0.24789025109207052 +illusion,illusion_0.75L,ppo_state_offline,120,24.0,,-1.4956880895197036,1.2069882974017405,1.0271795309703953,,-0.8933757399644979,,1.0271795309703953,,-0.8933757399644979,,-0.28869979211796304,0.13380379100589734,0.13380379100589734 +illusion,illusion_0.75L,ppo_state_offline,121,24.200000000000003,,-1.418294824623334,1.232424651553468,0.9740288920814754,,-0.9122029496078858,,0.9740288920814754,,-0.9122029496078858,,-0.18587017306986597,0.061825942473589524,0.061825942473589524 +illusion,illusion_0.75L,ppo_state_offline,122,24.400000000000002,,-1.4052571817896793,1.2148780122508775,0.9650751537020159,,-0.8992154650526614,,0.9650751537020159,,-0.8992154650526614,,-0.19037916953880174,0.06585968864935454,0.06585968864935454 +illusion,illusion_0.75L,ppo_state_offline,123,24.6,,-1.4605360284953246,1.1733533933211067,1.0030384832421493,,-0.8684802149736124,,1.0030384832421493,,-0.8684802149736124,,-0.28718263517421794,0.1345582682685369,0.1345582682685369 +illusion,illusion_0.75L,ppo_state_offline,124,24.8,,-1.5723349930648272,1.1111173566215018,1.0798175983491995,,-0.8224150083277348,,1.0798175983491995,,-0.8224150083277348,,-0.46121763644332536,0.2574025900214647,0.2574025900214647 +illusion,illusion_0.75L,ppo_state_offline,125,25.0,,-1.7431900805168021,1.0278101152925958,1.1971541271499218,,-0.7607535419101855,,1.1971541271499218,,-0.7607535419101855,,-0.7153799652242063,0.43640058523973624,0.43640058523973624 +illusion,illusion_0.75L,ppo_state_offline,126,25.200000000000003,,-1.9568564465704572,0.9525243544412187,1.3438917519294435,,-0.705029329459928,,1.3438917519294435,,-0.705029329459928,,-1.0043320921292385,0.6388624224695155,0.6388624224695155 +illusion,illusion_0.75L,ppo_state_offline,127,25.400000000000002,,-2.1892979055646467,0.907032887106491,1.5035233693105756,,-0.6713579397872029,,1.5035233693105756,,-0.6713579397872029,,-1.2822650184581557,0.8321654295233727,0.8321654295233727 +illusion,illusion_0.75L,ppo_state_offline,128,25.6,,-2.4356197748798962,0.9218122679589112,1.6726875045095382,,-0.682297184462293,,1.6726875045095382,,-0.682297184462293,,-1.513807506920985,0.9903903200472451,0.9903903200472451 +illusion,illusion_0.75L,ppo_state_offline,129,25.8,,-2.6651522807600037,1.035325983475132,1.8303213677357268,,-0.7663165571552407,,1.8303213677357268,,-0.7663165571552407,,-1.6298262972848716,1.064004810580486,1.064004810580486 +illusion,illusion_0.75L,ppo_state_offline,130,26.0,,-2.8795795959245787,1.26546243442345,1.977581582322792,,-0.9366565037821833,,1.977581582322792,,-0.9366565037821833,,-1.6141171615011287,1.0409250785406088,1.0409250785406088 +illusion,illusion_0.75L,ppo_state_offline,131,26.200000000000003,,-3.0847459679657954,1.5748899488014583,2.1184817467894814,,-1.165685265053444,,2.1184817467894814,,-1.165685265053444,,-1.509856019164337,0.9527964817360375,0.9527964817360375 +illusion,illusion_0.75L,ppo_state_offline,132,26.400000000000002,,-3.285999730420972,1.9344224098779996,2.256694885460071,,-1.4318001720056883,,2.256694885460071,,-1.4318001720056883,,-1.3515773205429724,0.8248947134543827,0.8248947134543827 +illusion,illusion_0.75L,ppo_state_offline,133,26.6,,-3.4930802770211438,2.2895694128218107,2.398909629443332,,-1.6946690972753886,,2.398909629443332,,-1.6946690972753886,,-1.203510864199333,0.7042405321679432,0.7042405321679432 +illusion,illusion_0.75L,ppo_state_offline,134,26.8,,-3.7036025846482232,2.592871417722705,2.543488039021113,,-1.9191639441967285,,2.543488039021113,,-1.9191639441967285,,-1.1107311669255182,0.6243240948243844,0.6243240948243844 +illusion,illusion_0.75L,ppo_state_offline,135,27.0,,-3.8910977024619933,2.805536215006478,2.6722522837354186,,-2.0765719083391954,,2.6722522837354186,,-2.0765719083391954,,-1.0855614874555153,0.5956803753962232,0.5956803753962232 +illusion,illusion_0.75L,ppo_state_offline,136,27.200000000000003,,-4.025529564536118,2.933248773526727,2.7645747793147737,,-2.171100829387061,,2.7645747793147737,,-2.171100829387061,,-1.092280791009391,0.5934739499277129,0.5934739499277129 +illusion,illusion_0.75L,ppo_state_offline,137,27.400000000000002,,-4.0697207511740885,2.9468377573751785,2.7949235416549163,,-2.1811589786890133,,2.7949235416549163,,-2.1811589786890133,,-1.12288299379891,0.613764562965903,0.613764562965903 +illusion,illusion_0.75L,ppo_state_offline,138,27.6,,-4.029464023366575,2.8949962442417223,2.7672768103093435,,-2.142787479763813,,2.7672768103093435,,-2.142787479763813,,-1.134467779124853,0.6244893305455306,0.6244893305455306 +illusion,illusion_0.75L,ppo_state_offline,139,27.8,,-3.9009964202453835,2.7653179564472037,2.679050332313325,,-2.046803586162567,,2.679050332313325,,-2.046803586162567,,-1.1356784637981798,0.6322467461507579,0.6322467461507579 +illusion,illusion_0.75L,ppo_state_offline,140,28.0,,-3.6955203843386433,2.541952804749806,2.5379375029291467,,-1.881475547680744,,2.5379375029291467,,-1.881475547680744,,-1.1535675795888372,0.6564619552484026,0.6564619552484026 +illusion,illusion_0.75L,ppo_state_offline,141,28.200000000000003,,-3.4408598386075098,2.2623866383532376,2.363046693973939,,-1.6745492408464355,,2.363046693973939,,-1.6745492408464355,,-1.1784732002542722,0.6884974531275034,0.6884974531275034 +illusion,illusion_0.75L,ppo_state_offline,142,28.400000000000002,,-3.1655282596611576,1.967111221124771,2.1739598354871066,,-1.4559954280815008,,2.1739598354871066,,-1.4559954280815008,,-1.1984170385363866,0.7179644074056057,0.7179644074056057 +illusion,illusion_0.75L,ppo_state_offline,143,28.6,,-2.859257034235284,1.685956056183535,1.9636248492777157,,-1.2478929932319491,,1.9636248492777157,,-1.2478929932319491,,-1.173300978051749,0.7157318560457666,0.7157318560457666 +illusion,illusion_0.75L,ppo_state_offline,144,28.8,,-2.5555723659556864,1.4429784348892583,1.755066208400588,,-1.0680484059348967,,1.755066208400588,,-1.0680484059348967,,-1.1125939310664281,0.6870178024656912,0.6870178024656912 +illusion,illusion_0.75L,ppo_state_offline,145,29.0,,-2.2519598639760794,1.2705431920781831,1.5465571284892097,,-0.940417124857921,,1.5465571284892097,,-0.940417124857921,,-0.9814166718978963,0.6061400036312887,0.6061400036312887 +illusion,illusion_0.75L,ppo_state_offline,146,29.200000000000003,,-1.9695872729842188,1.1834343952051078,1.3526347809046573,,-0.8759418635555335,,1.3526347809046573,,-0.8759418635555335,,-0.7861528777791109,0.4766929173491238,0.4766929173491238 +illusion,illusion_0.75L,ppo_state_offline,147,29.400000000000002,,-1.7108229550525502,1.1563077397957768,1.174925663216705,,-0.8558635447340158,,1.174925663216705,,-0.8558635447340158,,-0.5545152152567734,0.3190621184826893,0.3190621184826893 +illusion,illusion_0.75L,ppo_state_offline,148,29.6,,-1.4985104663318114,1.1648624715053986,1.0291178279391262,,-0.8621954949175702,,1.0291178279391262,,-0.8621954949175702,,-0.33364799482641283,0.166922333021556,0.166922333021556 +illusion,illusion_0.75L,ppo_state_offline,149,29.8,,-1.3364406258090862,1.1847778878867519,0.9178146598928804,,-0.8769362756564499,,0.9178146598928804,,-0.8769362756564499,,-0.1516627379223343,0.04087838423643042,0.04087838423643042 +illusion,illusion_0.75L,ppo_state_offline,150,30.0,,-1.2380753673136882,1.1855585076058899,0.8502612837624799,,-0.8775140664442453,,0.8502612837624799,,-0.8775140664442453,,-0.05251685970779829,-0.027252782681765453,-0.027252782681765453 +illusion,illusion_0.75L,ppo_state_offline,151,30.200000000000003,,-1.2154195880748822,1.1554067104463164,0.8347021890184958,,-0.8551966304287679,,0.8347021890184958,,-0.8551966304287679,,-0.060012877628565775,-0.020494441410272124,-0.020494441410272124 +illusion,illusion_0.75L,ppo_state_offline,152,30.400000000000002,,-1.2614940892076123,1.0857794211197087,0.8663443374014588,,-0.8036606451522047,,0.8663443374014588,,-0.8036606451522047,,-0.1757146680879036,0.06268369224925407,0.06268369224925407 +illusion,illusion_0.75L,ppo_state_offline,153,30.6,,-1.3803901284387068,0.998246366562148,0.9479974431976351,,-0.738871361316518,,0.9479974431976351,,-0.738871361316518,,-0.38214376187655874,0.20912608188111714,0.20912608188111714 +illusion,illusion_0.75L,ppo_state_offline,154,30.8,,-1.5536817089974042,0.9073979614147947,1.0670072592726976,,-0.6716281565995986,,1.0670072592726976,,-0.6716281565995986,,-0.6462837475826095,0.39537910267309895,0.39537910267309895 +illusion,illusion_0.75L,ppo_state_offline,155,31.0,,-1.7802804354930095,0.8150191402524968,1.222626318641545,,-0.6032521848602086,,1.222626318641545,,-0.6032521848602086,,-0.9652612952405127,0.6193741337813363,0.6193741337813363 +illusion,illusion_0.75L,ppo_state_offline,156,31.200000000000003,,-2.042159591477162,0.7781745744741547,1.4024745841319157,,-0.5759809666663332,,1.4024745841319157,,-0.5759809666663332,,-1.2639850170030074,0.8264936174655825,0.8264936174655825 +illusion,illusion_0.75L,ppo_state_offline,157,31.400000000000002,,-2.303996922904027,0.8254169083895225,1.5822941261675507,,-0.610948294112793,,1.5822941261675507,,-0.610948294112793,,-1.4785800145145047,0.9713458320547578,0.9713458320547578 +illusion,illusion_0.75L,ppo_state_offline,158,31.6,,-2.5644001517955615,0.9692689838907418,1.76112878319947,,-0.7174231909058936,,1.76112878319947,,-0.7174231909058936,,-1.5951311679048197,1.0437055922935765,1.0437055922935765 +illusion,illusion_0.75L,ppo_state_offline,159,31.8,,-2.8112887458556037,1.2218596077623414,1.9306821225791868,,-0.904383028043631,,1.9306821225791868,,-0.904383028043631,,-1.5894291380932624,1.0262990945355557,1.0262990945355557 +illusion,illusion_0.75L,ppo_state_offline,160,32.0,,-3.05222403216551,1.5708069567760357,2.096146965229301,,-1.1626631595120451,,2.096146965229301,,-1.1626631595120451,,-1.4814170753894744,0.9334838057172559,0.9334838057172559 +illusion,illusion_0.75L,ppo_state_offline,161,32.2,,-3.294107873385724,1.9481187049039743,2.262263237943408,,-1.4419377497518375,,2.262263237943408,,-1.4419377497518375,,-1.3459891684817498,0.8203254881915705,0.8203254881915705 +illusion,illusion_0.75L,ppo_state_offline,162,32.4,,-3.5385349985528083,2.3008485025444516,2.4301261376648275,,-1.703017533750524,,2.4301261376648275,,-1.703017533750524,,-1.2376864960083567,0.7271086039143035,0.7271086039143035 +illusion,illusion_0.75L,ppo_state_offline,163,32.6,,-3.771239233252969,2.5980300450784855,2.589938219026586,,-1.9229822020382437,,2.589938219026586,,-1.9229822020382437,,-1.1732091881744835,0.6669560169883422,0.6669560169883422 +illusion,illusion_0.75L,ppo_state_offline,164,32.800000000000004,,-3.9794638084172727,2.907376805692445,2.7329386366620985,,-2.1519511918486978,,2.7329386366620985,,-2.1519511918486978,,-1.0720870027248277,0.5809874448134007,0.5809874448134007 +illusion,illusion_0.75L,ppo_state_offline,165,33.0,,-4.119768385894729,2.954276957549585,2.8292942813290107,,-2.186665246624553,,2.8292942813290107,,-2.186665246624553,,-1.165491428345144,0.6426290347044579,0.6426290347044579 +illusion,illusion_0.75L,ppo_state_offline,166,33.2,,-4.186339897124431,2.9840174152235353,2.875012967036319,,-2.2086782217615477,,2.875012967036319,,-2.2086782217615477,,-1.2023224819008957,0.6663347452747712,0.6663347452747712 +illusion,illusion_0.75L,ppo_state_offline,167,33.4,,-4.1611257627446125,2.95309713544329,2.8576968949838877,,-2.1857919784665207,,2.8576968949838877,,-2.1857919784665207,,-1.2080286273013225,0.671904916517367,0.671904916517367 +illusion,illusion_0.75L,ppo_state_offline,168,33.6,,-4.04755307129688,2.843140070454674,2.7796996542825934,,-2.104405129472216,,2.7796996542825934,,-2.104405129472216,,-1.204413000842206,0.6752945248103774,0.6752945248103774 +illusion,illusion_0.75L,ppo_state_offline,169,33.800000000000004,,-3.8582871546229223,2.6437921937428555,2.6497192948212387,,-1.9568539417339843,,2.6497192948212387,,-1.9568539417339843,,-1.2144949608800668,0.6928653530872544,0.6928653530872544 +illusion,illusion_0.75L,ppo_state_offline,170,34.0,,-3.617995969153305,2.378709551402445,2.484696795199502,,-1.7606478954430613,,2.484696795199502,,-1.7606478954430613,,-1.2392864177508596,0.7240488997564405,0.7240488997564405 +illusion,illusion_0.75L,ppo_state_offline,171,34.2,,-3.335905424794669,2.087455719691323,2.290968146107608,,-1.5450707370045373,,2.290968146107608,,-1.5450707370045373,,-1.2484497051033463,0.7458974091030708,0.7458974091030708 +illusion,illusion_0.75L,ppo_state_offline,172,34.4,,-3.0281882684712196,1.7806480160425207,2.0796401516422884,,-1.3179810793300637,,2.0796401516422884,,-1.3179810793300637,,-1.247540252428699,0.7616590723122247,0.7616590723122247 +illusion,illusion_0.75L,ppo_state_offline,173,34.6,,-2.7049947500830376,1.5264423769745923,1.8576836027088477,,-1.129825857449011,,1.8576836027088477,,-1.129825857449011,,-1.1785523731084453,0.7278577452598367,0.7278577452598367 +illusion,illusion_0.75L,ppo_state_offline,174,34.800000000000004,,-2.3800110024238785,1.3464949912290247,1.634497594989329,,-0.9966343184413922,,1.634497594989329,,-0.9966343184413922,,-1.0335160111948538,0.6378632765479368,0.6378632765479368 +illusion,illusion_0.75L,ppo_state_offline,175,35.0,,-2.061818515593021,1.2469885688657998,1.4159755570915884,,-0.9229827147751993,,1.4159755570915884,,-0.9229827147751993,,-0.8148299467272211,0.49299284231638907,0.49299284231638907 +illusion,illusion_0.75L,ppo_state_offline,176,35.2,,-1.7697785268882165,1.1998423102991775,1.2154140224211283,,-0.8880864993568865,,1.2154140224211283,,-0.8880864993568865,,-0.5699362165890389,0.32732752306424173,0.32732752306424173 +illusion,illusion_0.75L,ppo_state_offline,177,35.4,,-1.5224579093729544,1.188747800608648,1.0455639863884059,,-0.8798746833635943,,1.0455639863884059,,-0.8798746833635943,,-0.3337101087643064,0.16568930302481155,0.16568930302481155 +illusion,illusion_0.75L,ppo_state_offline,178,35.6,,-1.3295219110550174,1.1897634714624277,0.9130631597466938,,-0.880626451796237,,0.9130631597466938,,-0.880626451796237,,-0.1397584395925897,0.03243670795045683,0.03243670795045683 +illusion,illusion_0.75L,ppo_state_offline,179,35.800000000000004,,-1.2001506343485775,1.1705622211818802,0.8242160744088444,,-0.8664142749138641,,0.8242160744088444,,-0.8664142749138641,,-0.029588413166697247,-0.04219820050501977,-0.04219820050501977 +illusion,illusion_0.75L,ppo_state_offline,180,36.0,,-1.1474606232440985,1.1261481316322404,0.7880306549538406,,-0.8335403272528354,,0.7880306549538406,,-0.8335403272528354,,-0.02131249161185811,-0.04550967229899483,-0.04550967229899483 +illusion,illusion_0.75L,ppo_state_offline,181,36.2,,-1.1744660899893509,1.0570051245513417,0.806576943354073,,-0.7823627928498583,,0.806576943354073,,-0.7823627928498583,,-0.11746096543800921,0.024214150504214715,0.024214150504214715 +illusion,illusion_0.75L,ppo_state_offline,182,36.4,,-1.275941622982305,0.9726051838526512,0.8762663332175338,,-0.7198925438532721,,0.8762663332175338,,-0.7198925438532721,,-0.3033364391296539,0.15637378936426172,0.15637378936426172 +illusion,illusion_0.75L,ppo_state_offline,183,36.6,,-1.4469123193849336,0.8767881389997573,0.9936822576813893,,-0.6489717043298597,,0.9936822576813893,,-0.6489717043298597,,-0.5701241803851763,0.34471055335152956,0.34471055335152956 +illusion,illusion_0.75L,ppo_state_offline,184,36.800000000000004,,-1.6744704224132712,0.7826050960912871,1.1499601789772795,,-0.5792603029587023,,1.1499601789772795,,-0.5792603029587023,,-0.891865326321984,0.5706998760185772,0.5706998760185772 +illusion,illusion_0.75L,ppo_state_offline,185,37.0,,-1.9312977812370808,0.7408518550839823,1.3263390696199941,,-0.5483558338258079,,1.3263390696199941,,-0.5483558338258079,,-1.1904459261530986,0.7779832357941863,0.7779832357941863 +illusion,illusion_0.75L,ppo_state_offline,186,37.2,,-2.2080710581221608,0.7773354323099398,1.5164160293337328,,-0.5753598593585784,,1.5164160293337328,,-0.5753598593585784,,-1.430735625812221,0.9410561699751544,0.9410561699751544 +illusion,illusion_0.75L,ppo_state_offline,187,37.4,,-2.470940301187426,0.9543587987642634,1.6969442475433387,,-0.7063871289166848,,1.6969442475433387,,-0.7063871289166848,,-1.5165815024231624,0.990557118626654,0.990557118626654 +illusion,illusion_0.75L,ppo_state_offline,188,37.6,,-2.726254942060431,1.2224921789140564,1.8722842632186818,,-0.904851237819948,,1.8722842632186818,,-0.904851237819948,,-1.5037627631463746,0.9674330253987338,0.9674330253987338 +illusion,illusion_0.75L,ppo_state_offline,189,37.800000000000004,,-2.986194711796663,1.561351916732704,2.050800634799842,,-1.1556648286970002,,2.050800634799842,,-1.1556648286970002,,-1.4248427950639593,0.895135806102842,0.895135806102842 +illusion,illusion_0.75L,ppo_state_offline,190,38.0,,-3.247017169742879,1.921911104237865,2.229923201795593,,-1.4225396870794977,,2.229923201795593,,-1.4225396870794977,,-1.325106065505014,0.8073835147160953,0.8073835147160953 +illusion,illusion_0.75L,ppo_state_offline,191,38.2,,-3.5140602298453856,2.2623755827783976,2.413317832766463,,-1.6745410578488251,,2.413317832766463,,-1.6745410578488251,,-1.251684647066988,0.7387767749176379,0.7387767749176379 +illusion,illusion_0.75L,ppo_state_offline,192,38.400000000000006,,-3.768495797468554,2.558718343656092,2.588054135639128,,-1.8938848856656685,,2.588054135639128,,-1.8938848856656685,,-1.2097774538124622,0.6941692499734595,0.6941692499734595 +illusion,illusion_0.75L,ppo_state_offline,193,38.6,,-3.9907001677773684,2.802792750076072,2.7406553246655605,,-2.0745412796930487,,2.7406553246655605,,-2.0745412796930487,,-1.1879074177012963,0.6661140449725118,0.6661140449725118 +illusion,illusion_0.75L,ppo_state_offline,194,38.800000000000004,,-4.159153057727985,2.94751431048767,2.8563421190597356,,-2.1816597425645194,,2.8563421190597356,,-2.1816597425645194,,-1.2116387472403147,0.6746823764952161,0.6746823764952161 +illusion,illusion_0.75L,ppo_state_offline,195,39.0,,-4.241791471975238,3.055647686304852,2.9130949194473406,,-2.261696752735613,,2.9130949194473406,,-2.261696752735613,,-1.1861437856703856,0.6513981667117275,0.6513981667117275 +illusion,illusion_0.75L,ppo_state_offline,196,39.2,,-4.255813051806152,3.050017274309704,2.922724386911247,,-2.2575292943656367,,2.922724386911247,,-2.2575292943656367,,-1.2057957774964483,0.6651950925456105,0.6651950925456105 +illusion,illusion_0.75L,ppo_state_offline,197,39.400000000000006,,-4.172906067284457,2.960923040398513,2.8657871430621564,,-2.191584473427172,,2.8657871430621564,,-2.191584473427172,,-1.2119830268859442,0.6742026696349845,0.6742026696349845 +illusion,illusion_0.75L,ppo_state_offline,198,39.6,,-4.016707466942356,2.7736444866718126,2.7585161109787535,,-2.052966628601968,,2.7585161109787535,,-2.052966628601968,,-1.2430629802705435,0.7055494823767856,0.7055494823767856 +illusion,illusion_1L,ppo_state_offline,2,0.6,,0.7063107957794769,-0.7095445700996906,-0.48506636979443046,,0.525183141141604,,-0.48506636979443046,,0.525183141141604,,-0.003233774320213767,0.04011677134717356,0.04011677134717356 +illusion,illusion_1L,ppo_state_offline,3,0.8999999999999999,,0.7691564526436683,-1.062626283511026,-0.5282262858181089,,0.7865234024066174,,-0.5282262858181089,,0.7865234024066174,,-0.2934698308673578,0.2582971165885085,0.2582971165885085 +illusion,illusion_1L,ppo_state_offline,4,1.2,,0.7922368036356081,-1.3064259829300906,-0.544076959680295,,0.9669764667325043,,-0.544076959680295,,0.9669764667325043,,-0.5141891792944825,0.42289950705220924,0.42289950705220924 +illusion,illusion_1L,ppo_state_offline,5,1.5,,0.8786275465153289,-1.421460921510438,-0.6034067112328874,,1.0521218021075183,,-0.6034067112328874,,1.0521218021075183,,-0.542833374995109,0.4487150908746309,0.4487150908746309 +illusion,illusion_1L,ppo_state_offline,6,1.7999999999999998,,1.0133659359454386,-1.440885806842912,-0.6959397176988075,,1.0664995068002494,,-0.6959397176988075,,1.0664995068002494,,-0.42751987089747345,0.37055978910144194,0.37055978910144194 +illusion,illusion_1L,ppo_state_offline,7,2.1,,1.1372097392328693,-1.376001359122667,-0.7809907525139759,,1.018474027498549,,-0.7809907525139759,,1.018474027498549,,-0.2387916198897977,0.23748327498457322,0.23748327498457322 +illusion,illusion_1L,ppo_state_offline,8,2.4,,1.1851663853144294,-1.2882515792474547,-0.8139254837417873,,0.9535243302260107,,-0.8139254837417873,,0.9535243302260107,,-0.10308519393302529,0.13959884648422338,0.13959884648422338 +illusion,illusion_1L,ppo_state_offline,9,2.6999999999999997,,1.1371451484008328,-1.2299813695138266,-0.7809463940805424,,0.9103945071359867,,-0.7809463940805424,,0.9103945071359867,,-0.09283622111299383,0.12944811305544424,0.12944811305544424 +illusion,illusion_1L,ppo_state_offline,10,3.0,,1.0462263489700652,-1.221571321631459,-0.7185069520537781,,0.9041696474863772,,-0.7185069520537781,,0.9041696474863772,,-0.17534497266139382,0.18566269543259906,0.18566269543259906 +illusion,illusion_1L,ppo_state_offline,11,3.3,,0.9818196672565623,-1.2688635858875443,-0.6742749857919623,,0.939173931840523,,-0.6742749857919623,,0.939173931840523,,-0.287043918630982,0.2648989460485607,0.2648989460485607 +illusion,illusion_1L,ppo_state_offline,12,3.5999999999999996,,0.9456278558118654,-1.3227813840436704,-0.6494198785237948,,0.9790822332952078,,-0.6494198785237948,,0.9790822332952078,,-0.37715352823180504,0.32966235477141304,0.32966235477141304 +illusion,illusion_1L,ppo_state_offline,13,3.9,,0.9046521762245505,-1.3144111121968685,-0.6212793994796599,,0.9728868146478705,,-0.6212793994796599,,0.9728868146478705,,-0.40975893597231794,0.3516074151682106,0.3516074151682106 +illusion,illusion_1L,ppo_state_offline,14,4.2,,0.8317440651467863,-1.2244249818023898,-0.5712089871620463,,0.9062818392717494,,-0.5712089871620463,,0.9062818392717494,,-0.39268091665560345,0.33507285210970317,0.33507285210970317 +illusion,illusion_1L,ppo_state_offline,15,4.5,,0.7270328105650025,-1.067266620711535,-0.49929743145581795,,0.7899580377623319,,-0.49929743145581795,,0.7899580377623319,,-0.34023381014653264,0.2906606063065139,0.2906606063065139 +illusion,illusion_1L,ppo_state_offline,16,4.8,,0.590364670350599,-0.8574042914804121,-0.4054391483367039,,0.6346243745684759,,-0.4054391483367039,,0.6346243745684759,,-0.26703962112981305,0.22918522623177195,0.22918522623177195 +illusion,illusion_1L,ppo_state_offline,17,5.1,,0.4328051438355527,-0.6184681437212622,-0.2972334858863105,,0.45777116209897,,-0.2972334858863105,,0.45777116209897,,-0.18566299988570956,0.16053767621265952,0.16053767621265952 +illusion,illusion_1L,ppo_state_offline,18,5.3999999999999995,,0.2704083753545433,-0.38285699013756697,-0.1857057966252444,,0.2833790083971995,,-0.1857057966252444,,0.2833790083971995,,-0.11244861478302365,0.09767321177195509,0.09767321177195509 +illusion,illusion_1L,ppo_state_offline,19,5.7,,0.1265520995327708,-0.18480401265004565,-0.08691098575447861,,0.13678626537228997,,-0.08691098575447861,,0.13678626537228997,,-0.058251913117274845,0.04987527961781135,0.04987527961781135 +illusion,illusion_1L,ppo_state_offline,20,6.0,,0.01938968932668341,-0.05716301494302738,-0.013316073135703052,,0.042310311444826686,,-0.013316073135703052,,0.042310311444826686,,-0.03777332561634397,0.028994238309123635,0.028994238309123635 +illusion,illusion_1L,ppo_state_offline,21,6.3,,-0.04340099887880385,-0.03524867252056117,0.0298060925833087,,0.026089986923329044,,0.0298060925833087,,0.026089986923329044,,-0.07864967139936502,0.05589607950663775,0.05589607950663775 +illusion,illusion_1L,ppo_state_offline,22,6.6,,-0.0625291352066243,-0.11420279627737623,0.04294254144535572,,0.08452940914998523,,0.04294254144535572,,0.08452940914998523,,-0.17673193148400052,0.12747195059534094,0.12747195059534094 +illusion,illusion_1L,ppo_state_offline,23,6.8999999999999995,,-0.04712249402766616,-0.26411801339329666,0.032361868529043825,,0.19549205751300874,,0.032361868529043825,,0.19549205751300874,,-0.3112405074209628,0.22785392604205257,0.22785392604205257 +illusion,illusion_1L,ppo_state_offline,24,7.199999999999999,,-0.012300646156281878,-0.42411510362058336,0.008447598157647807,,0.3139169993137433,,0.008447598157647807,,0.3139169993137433,,-0.43641574977686526,0.32236459747139107,0.32236459747139107 +illusion,illusion_1L,ppo_state_offline,25,7.5,,0.035023754027823616,-0.5745537781713197,-0.024052931548498788,,0.4252670948244941,,-0.024052931548498788,,0.4252670948244941,,-0.539530024143496,0.4012141632759953,0.4012141632759953 +illusion,illusion_1L,ppo_state_offline,26,7.8,,0.09496723582820878,-0.7086018420059966,-0.06521974831456953,,0.5244853627040648,,-0.06521974831456953,,0.5244853627040648,,-0.6136346061777879,0.4592656143894952,0.4592656143894952 +illusion,illusion_1L,ppo_state_offline,27,8.1,,0.1698923883455784,-0.8547662751035074,-0.11667538506125984,,0.6326717957093196,,-0.11667538506125984,,0.6326717957093196,,-0.684873886757929,0.5159964106480598,0.5159964106480598 +illusion,illusion_1L,ppo_state_offline,28,8.4,,0.2822250421405714,-1.0040572127488427,-0.19382101685863112,,0.7431723715442339,,-0.19382101685863112,,0.7431723715442339,,-0.7218321706082713,0.5493513546856028,0.5493513546856028 +illusion,illusion_1L,ppo_state_offline,29,8.7,,0.4464063250658556,-1.1425627762066475,-0.30657424018841384,,0.8456899440092556,,-0.30657424018841384,,0.8456899440092556,,-0.6961564511407918,0.5391157038208417,0.5391157038208417 +illusion,illusion_1L,ppo_state_offline,30,9.0,,0.6717630469451124,-1.2403743308791828,-0.46134033982038614,,0.9180870585635231,,-0.46134033982038614,,0.9180870585635231,,-0.5686112839340705,0.456746718743137,0.456746718743137 +illusion,illusion_1L,ppo_state_offline,31,9.299999999999999,,0.9308709505581314,-1.272213545233358,-0.6392854185897235,,0.9416534690621015,,-0.6392854185897235,,0.9416534690621015,,-0.34134259467522665,0.3023680504723779,0.3023680504723779 +illusion,illusion_1L,ppo_state_offline,32,9.6,,1.1830171851847482,-1.2670163435349295,-0.8124494979419161,,0.937806659674576,,-0.8124494979419161,,0.937806659674576,,-0.08399915835018135,0.12535716173265987,0.12535716173265987 +illusion,illusion_1L,ppo_state_offline,33,9.9,,1.387043037299622,-1.2438818321664664,-0.9525663983502688,,0.9206832035010498,,-0.9525663983502688,,0.9206832035010498,,0.14316120513315567,-0.031883194849218977,-0.031883194849218977 +illusion,illusion_1L,ppo_state_offline,34,10.2,,1.5290264447982356,-1.212425597345064,-1.050074997196461,,0.897400262713171,,-1.050074997196461,,0.897400262713171,,0.31660084745317163,-0.15267473448328994,-0.15267473448328994 +illusion,illusion_1L,ppo_state_offline,35,10.5,,1.5924624565511207,-1.1976112472287477,-1.0936403456508204,,0.8864351348608567,,-1.0936403456508204,,0.8864351348608567,,0.39485120932237305,-0.20720521078996368,-0.20720521078996368 +illusion,illusion_1L,ppo_state_offline,36,10.799999999999999,,1.6004887313007812,-1.1935506066915884,-1.0991524742761432,,0.8834295732059312,,-1.0991524742761432,,0.8834295732059312,,0.40693812460919276,-0.21572290107021197,-0.21572290107021197 +illusion,illusion_1L,ppo_state_offline,37,11.1,,1.5812270540922406,-1.1929835278038712,-1.0859243148093352,,0.8830098387958932,,-1.0859243148093352,,0.8830098387958932,,0.38824352628836944,-0.20291447601344192,-0.20291447601344192 +illusion,illusion_1L,ppo_state_offline,38,11.4,,1.544546053481784,-1.204370529550494,-1.060733251735033,,0.8914381484433563,,-1.060733251735033,,0.8914381484433563,,0.34017552393129,-0.16929510329167663,-0.16929510329167663 +illusion,illusion_1L,ppo_state_offline,39,11.7,,1.4603641575741682,-1.2147106164274848,-1.0029204490788648,,0.8990915637953647,,-1.0029204490788648,,0.8990915637953647,,0.24565354114668336,-0.1038288852835001,-0.1038288852835001 +illusion,illusion_1L,ppo_state_offline,40,12.0,,1.2882010426445587,-1.1998115469604924,-0.8846856186466815,,0.8880637292765793,,-0.8846856186466815,,0.8880637292765793,,0.08838949568406629,0.0033781106298977903,0.0033781106298977903 +illusion,illusion_1L,ppo_state_offline,41,12.299999999999999,,1.028592892340625,-1.1407566317518074,-0.7063969901994777,,0.844353091247469,,-0.7063969901994777,,0.844353091247469,,-0.11216373941118252,0.1379561010479914,0.1379561010479914 +illusion,illusion_1L,ppo_state_offline,42,12.6,,0.7354317451768639,-1.009871964437519,-0.5050654881621017,,0.7474762725048013,,-0.5050654881621017,,0.7474762725048013,,-0.274440219260655,0.24241078434269958,0.24241078434269958 +illusion,illusion_1L,ppo_state_offline,43,12.9,,0.4618917511115444,-0.7642718286049719,-0.3172090194408148,,0.5656905803343724,,-0.3172090194408148,,0.5656905803343724,,-0.3023800774934275,0.24848156089355755,0.24848156089355755 +illusion,illusion_1L,ppo_state_offline,44,13.2,,0.2099353018926393,-0.431140080246365,-0.1441752772140189,,0.3191166716757712,,-0.1441752772140189,,0.3191166716757712,,-0.22120477835372573,0.17494139446175228,0.17494139446175228 +illusion,illusion_1L,ppo_state_offline,45,13.5,,-0.05027154960503328,-0.04984500174404932,0.03452451557666348,,0.03689374239375913,,0.03452451557666348,,0.03689374239375913,,-0.1001165513490826,0.07141825797042262,0.07141825797042262 +illusion,illusion_1L,ppo_state_offline,46,13.799999999999999,,-0.3329065707552045,0.3185596294921138,0.22862708983335056,,-0.23578807295229956,,0.22862708983335056,,-0.23578807295229956,,-0.014346941263090718,-0.007160983118948999,-0.007160983118948999 +illusion,illusion_1L,ppo_state_offline,47,14.1,,-0.6183110766673199,0.6090541414910594,0.4246316368868638,,-0.45080320621527226,,0.4246316368868638,,-0.45080320621527226,,-0.009256935176260472,-0.026171569328408473,-0.026171569328408473 +illusion,illusion_1L,ppo_state_offline,48,14.399999999999999,,-0.8583857898175529,0.7823821219704651,0.5895054718658512,,-0.5790952643492882,,0.5895054718658512,,-0.5790952643492882,,-0.07600366784708779,0.010410207516563075,0.010410207516563075 +illusion,illusion_1L,ppo_state_offline,49,14.7,,-0.9905848823891893,0.8248271175056665,0.6802945894993621,,-0.6105117489794032,,0.6802945894993621,,-0.6105117489794032,,-0.16575776488352278,0.06978284051995887,0.06978284051995887 +illusion,illusion_1L,ppo_state_offline,50,15.0,,-0.9859255177269245,0.7296106787728851,0.6770947217983749,,-0.5400354596957386,,0.6770947217983749,,-0.5400354596957386,,-0.2563148389540394,0.1370592621026363,0.1370592621026363 +illusion,illusion_1L,ppo_state_offline,51,15.299999999999999,,-0.8559297433648153,0.5041822804209712,0.5878187561254227,,-0.373180269284874,,0.5878187561254227,,-0.373180269284874,,-0.35174746294384407,0.21463848684054865,0.21463848684054865 +illusion,illusion_1L,ppo_state_offline,52,15.6,,-0.6511251331441805,0.1837524712626818,0.4471670353949588,,-0.13600794667022656,,0.4471670353949588,,-0.13600794667022656,,-0.46737266188149873,0.3111590887247322,0.3111590887247322 +illusion,illusion_1L,ppo_state_offline,53,15.899999999999999,,-0.4208772638638292,-0.16759583015763863,0.2890418888276213,,0.12404929617325781,,0.2890418888276213,,0.12404929617325781,,-0.5884730940214677,0.4130911850008791,0.4130911850008791 +illusion,illusion_1L,ppo_state_offline,54,16.2,,-0.1677039552660677,-0.4772843672584659,0.11517245562034029,,0.3532712584628281,,0.11517245562034029,,0.3532712584628281,,-0.6449883225245336,0.46844371408316837,0.46844371408316837 +illusion,illusion_1L,ppo_state_offline,55,16.5,,0.11085721844327709,-0.7391438889404931,-0.07613236104715798,,0.5470916496406268,,-0.07613236104715798,,0.5470916496406268,,-0.628286670497216,0.47095928859346886,0.47095928859346886 +illusion,illusion_1L,ppo_state_offline,56,16.8,,0.4164319261067315,-0.9793410331625083,-0.28598900635544294,,0.7248782130386627,,-0.28598900635544294,,0.7248782130386627,,-0.5629091070557768,0.4388892066832198,0.4388892066832198 +illusion,illusion_1L,ppo_state_offline,57,17.099999999999998,,0.7293091722339683,-1.2369620036709565,-0.5008607467806048,,0.9155613585619469,,-0.5008607467806048,,0.9155613585619469,,-0.5076528314369882,0.4147006117813421,0.4147006117813421 +illusion,illusion_1L,ppo_state_offline,58,17.4,,1.0245240420505897,-1.4501962832282813,-0.7036026644561676,,1.0733908360269757,,-0.7036026644561676,,1.0733908360269757,,-0.42567224117769165,0.3697881715708081,0.3697881715708081 +illusion,illusion_1L,ppo_state_offline,59,17.7,,1.2718987419280308,-1.6701321638473177,-0.8734898421200938,,1.2361806331739285,,-0.8734898421200938,,1.2361806331739285,,-0.3982334219192869,0.3626907910538346,0.3626907910538346 +illusion,illusion_1L,ppo_state_offline,60,18.0,,1.4570988916603143,-1.8307581300205986,-1.000677993360064,,1.3550710496729743,,-1.000677993360064,,1.3550710496729743,,-0.37365923836028436,0.3543930563129103,0.3543930563129103 +illusion,illusion_1L,ppo_state_offline,61,18.3,,1.5649492075178828,-1.9306716859442357,-1.0747453324221543,,1.4290240011207327,,-1.0747453324221543,,1.4290240011207327,,-0.36572247842635286,0.3542786686985784,0.3542786686985784 +illusion,illusion_1L,ppo_state_offline,62,18.599999999999998,,1.582885948671411,-1.9371325879145935,-1.0870635781140987,,1.4338061627133778,,-1.0870635781140987,,1.4338061627133778,,-0.35424663924318245,0.3467425845992791,0.3467425845992791 +illusion,illusion_1L,ppo_state_offline,63,18.9,,1.509762322175478,-1.8527491104088714,-1.0368451583157123,,1.371348099267581,,-1.0368451583157123,,1.371348099267581,,-0.34298678823339346,0.3345029409518687,0.3345029409518687 +illusion,illusion_1L,ppo_state_offline,64,19.2,,1.3671038208694333,-1.7008522415875258,-0.9388729316948945,,1.2589186930557057,,-0.9388729316948945,,1.2589186930557057,,-0.3337484207180925,0.3200457613608112,0.3200457613608112 +illusion,illusion_1L,ppo_state_offline,65,19.5,,1.180041009760288,-1.5194837337978506,-0.8104055781581033,,1.1246752830726454,,-0.8104055781581033,,1.1246752830726454,,-0.3394427240375626,0.3142697049145421,0.3142697049145421 +illusion,illusion_1L,ppo_state_offline,66,19.8,,0.9696076939462365,-1.308667020051735,-0.6658882846441637,,0.9686352137155088,,-0.6658882846441637,,0.9686352137155088,,-0.3390593261054985,0.30274692907134504,0.30274692907134504 +illusion,illusion_1L,ppo_state_offline,67,20.099999999999998,,0.7585656826368636,-1.0569663098701099,-0.5209529630949881,,0.7823340634125957,,-0.5209529630949881,,0.7823340634125957,,-0.29840062723324623,0.26138110031760764,0.26138110031760764 +illusion,illusion_1L,ppo_state_offline,68,20.4,,0.5585590814323624,-0.7520741648162765,-0.3835963255341485,,0.5566622434925639,,-0.3835963255341485,,0.5566622434925639,,-0.1935150833839141,0.17306591795841536,0.17306591795841536 +illusion,illusion_1L,ppo_state_offline,69,20.7,,0.36860632233049595,-0.39396264552990534,-0.25314426980945304,,0.2915990740973217,,-0.25314426980945304,,0.2915990740973217,,-0.025356323199409392,0.03845480428786868,0.03845480428786868 +illusion,illusion_1L,ppo_state_offline,70,21.0,,0.18053663849808546,-0.022517263679089884,-0.12398543583708353,,0.016666588354325187,,-0.12398543583708353,,0.016666588354325187,,0.15801937481899558,-0.10731884748275834,-0.10731884748275834 +illusion,illusion_1L,ppo_state_offline,71,21.3,,0.002338666570320992,0.25839651307501005,-0.0016061038712756384,,-0.19125717835837258,,-0.0016061038712756384,,-0.19125717835837258,,0.26073517964533105,-0.19286328222964821,-0.19286328222964821 +illusion,illusion_1L,ppo_state_offline,72,21.599999999999998,,-0.14327745690884164,0.36063627610581167,0.09839730089280505,,-0.2669319170017049,,0.09839730089280505,,-0.2669319170017049,,0.21735881919697003,-0.16853461610889983,-0.16853461610889983 +illusion,illusion_1L,ppo_state_offline,73,21.9,,-0.23166046811892585,0.2611597758962299,0.15909526368107496,,-0.19330246079643587,,0.15909526368107496,,-0.19330246079643587,,0.029499307777304057,-0.03420719711536091,-0.03420719711536091 +illusion,illusion_1L,ppo_state_offline,74,22.2,,-0.25942389365879986,0.02396117282514366,0.17816208825767302,,-0.017735325644135005,,0.17816208825767302,,-0.017735325644135005,,-0.2354627208336562,0.160426762613538,0.160426762613538 +illusion,illusion_1L,ppo_state_offline,75,22.5,,-0.2291370132916846,-0.2454413020711908,0.15736225453028135,,0.18166812828899903,,0.15736225453028135,,0.18166812828899903,,-0.4745783153628754,0.3390303828192804,0.3390303828192804 +illusion,illusion_1L,ppo_state_offline,76,22.8,,-0.13777867723599835,-0.4824662173298747,0.09462095610217795,,0.3571067050466064,,0.09462095610217795,,0.3571067050466064,,-0.6202448945658731,0.4517276611487844,0.4517276611487844 +illusion,illusion_1L,ppo_state_offline,77,23.099999999999998,,0.0018316152485415406,-0.6873849321104618,-0.001257881041574169,,0.5087812563606255,,-0.001257881041574169,,0.5087812563606255,,-0.6855533168619202,0.5075233753190513,0.5075233753190513 +illusion,illusion_1L,ppo_state_offline,78,23.4,,0.17918645088322338,-0.8783966049696864,-0.12305818028783233,,0.6501622415365472,,-0.12305818028783233,,0.6501622415365472,,-0.699210154086463,0.5271040612487149,0.5271040612487149 +illusion,illusion_1L,ppo_state_offline,79,23.7,,0.3921784142247697,-1.0944484338257743,-0.2693326519097119,,0.8100771826262754,,-0.2693326519097119,,0.8100771826262754,,-0.7022700196010045,0.5407445307165635,0.5407445307165635 +illusion,illusion_1L,ppo_state_offline,80,24.0,,0.6376476048153726,-1.3082925725386756,-0.4379112010238563,,0.9683580591442694,,-0.4379112010238563,,0.9683580591442694,,-0.670644967723303,0.5304468581204131,0.5304468581204131 +illusion,illusion_1L,ppo_state_offline,81,24.3,,0.9120238242205528,-1.5022962805082685,-0.6263419562948606,,1.1119536569941326,,-0.6263419562948606,,1.1119536569941326,,-0.5902724562877156,0.48561170069927206,0.48561170069927206 +illusion,illusion_1L,ppo_state_offline,82,24.599999999999998,,1.1919509212536343,-1.628795369520535,-0.8185848351752284,,1.2055844051086302,,-0.8185848351752284,,1.2055844051086302,,-0.4368444482669007,0.3869995699334018,0.3869995699334018 +illusion,illusion_1L,ppo_state_offline,83,24.9,,1.4237541802983622,-1.6816667334841962,-0.97777816202684,,1.2447181680503652,,-0.97777816202684,,1.2447181680503652,,-0.25791255318583395,0.2669400060235252,0.2669400060235252 +illusion,illusion_1L,ppo_state_offline,84,25.2,,1.5734316583413732,-1.7010583319228585,-1.0805707447654125,,1.259071234804639,,-1.0805707447654125,,1.259071234804639,,-0.12762667358148527,0.1785004900392264,0.1785004900392264 +illusion,illusion_1L,ppo_state_offline,85,25.5,,1.6357290639703463,-1.7156598622235046,-1.1233541434853889,,1.2698788399529528,,-1.1233541434853889,,1.2698788399529528,,-0.0799307982531583,0.14652469646756394,0.14652469646756394 +illusion,illusion_1L,ppo_state_offline,86,25.8,,1.6323413147009274,-1.7320284819591758,-1.1210275710335587,,1.2819943905345386,,-1.1210275710335587,,1.2819943905345386,,-0.09968716725824844,0.1609668195009799,0.1609668195009799 +illusion,illusion_1L,ppo_state_offline,87,26.099999999999998,,1.5788882280383836,-1.723288208863109,-1.0843181014110634,,1.2755251083041312,,-1.0843181014110634,,1.2755251083041312,,-0.14439998082472538,0.1912070068930678,0.1912070068930678 +illusion,illusion_1L,ppo_state_offline,88,26.4,,1.4656852725880276,-1.6603096461098474,-1.0065747807958012,,1.2289103066339635,,-1.0065747807958012,,1.2289103066339635,,-0.19462437352181983,0.2223355258381623,0.2223355258381623 +illusion,illusion_1L,ppo_state_offline,89,26.7,,1.2869929016989978,-1.5364947785671594,-0.883855915141985,,1.1372663369718963,,-0.883855915141985,,1.1372663369718963,,-0.2495018768681616,0.25341042182991125,0.25341042182991125 +illusion,illusion_1L,ppo_state_offline,90,27.0,,1.0697167852939622,-1.3604393156731494,-0.7346392563320175,,1.0069554799600182,,-0.7346392563320175,,1.0069554799600182,,-0.29072253037918716,0.2723162236280007,0.2723162236280007 +illusion,illusion_1L,ppo_state_offline,91,27.3,,0.850081056814225,-1.1351560217410104,-0.5838021091052825,,0.8402076913927902,,-0.5838021091052825,,0.8402076913927902,,-0.2850749649267854,0.25640558228750765,0.25640558228750765 +illusion,illusion_1L,ppo_state_offline,92,27.599999999999998,,0.6409091494467223,-0.8528938572842731,-0.4401511011127475,,0.6312858894346838,,-0.4401511011127475,,0.6312858894346838,,-0.21198470783755086,0.19113478832193626,0.19113478832193626 +illusion,illusion_1L,ppo_state_offline,93,27.9,,0.4345401120613437,-0.5261599821025069,-0.2984249935682288,,0.38944749038778564,,-0.2984249935682288,,0.38944749038778564,,-0.09161987004116323,0.09102249681955682,0.09102249681955682 +illusion,illusion_1L,ppo_state_offline,94,28.2,,0.2161845047630333,-0.18182186146392282,-0.14846698303044448,,0.13457896847610332,,-0.14846698303044448,,0.13457896847610332,,0.034362643299110485,-0.01388801455434116,-0.01388801455434116 +illusion,illusion_1L,ppo_state_offline,95,28.5,,-0.0099162609723385,0.13033915881443842,0.006810096547481073,,-0.09647305007253272,,0.006810096547481073,,-0.09647305007253272,,0.12042289784209992,-0.08966295352505164,-0.08966295352505164 +illusion,illusion_1L,ppo_state_offline,96,28.799999999999997,,-0.2185608094478248,0.3482089688006027,0.1500989352728072,,-0.25773360506822807,,0.1500989352728072,,-0.25773360506822807,,0.1296481593527779,-0.10763466979542086,-0.10763466979542086 +illusion,illusion_1L,ppo_state_offline,97,29.099999999999998,,-0.36864321618846563,0.3987143195792108,0.25316960705455815,,-0.2951161175757105,,0.25316960705455815,,-0.2951161175757105,,0.030071103390745146,-0.041946510521152336,-0.041946510521152336 +illusion,illusion_1L,ppo_state_offline,98,29.4,,-0.43716967660113176,0.2638013372672409,0.30023087468044873,,-0.1952576635515651,,0.30023087468044873,,-0.1952576635515651,,-0.17336833933389084,0.10497321112888364,0.10497321112888364 +illusion,illusion_1L,ppo_state_offline,99,29.7,,-0.4319046997919062,0.020523253313067365,0.29661509646615075,,-0.015190683003728972,,0.29661509646615075,,-0.015190683003728972,,-0.41138144647883884,0.28142441346242175,0.28142441346242175 +illusion,illusion_1L,ppo_state_offline,100,30.0,,-0.36412717406378914,-0.24913987253233977,0.2500681676140948,,0.18440569677218377,,0.2500681676140948,,0.18440569677218377,,-0.613267046596129,0.43447386438627855,0.43447386438627855 +illusion,illusion_1L,ppo_state_offline,101,30.299999999999997,,-0.2295561360240089,-0.5205070383651575,0.15765009147611553,,0.3852633547128966,,0.15765009147611553,,0.3852633547128966,,-0.7500631743891665,0.5429134461890122,0.5429134461890122 +illusion,illusion_1L,ppo_state_offline,102,30.599999999999998,,-0.04717554888393958,-0.7320171289246084,0.03239830450975698,,0.5418166403332074,,0.03239830450975698,,0.5418166403332074,,-0.779192677808548,0.5742149448429644,0.5742149448429644 +illusion,illusion_1L,ppo_state_offline,103,30.9,,0.19462987959779396,-0.9504744465780857,-0.13366411743125195,,0.7035120504953948,,-0.13366411743125195,,0.7035120504953948,,-0.7558445669802917,0.5698479330641428,0.5698479330641428 +illusion,illusion_1L,ppo_state_offline,104,31.2,,0.4727426919265676,-1.1684270532062582,-0.3246610172036252,,0.8648338890275419,,-0.3246610172036252,,0.8648338890275419,,-0.6956843612796906,0.5401728718239167,0.5401728718239167 +illusion,illusion_1L,ppo_state_offline,105,31.5,,0.7757008063778198,-1.3752340781949122,-0.5327206895953757,,1.017906109675262,,-0.5327206895953757,,1.017906109675262,,-0.5995332718170924,0.4851854200798863,0.4851854200798863 +illusion,illusion_1L,ppo_state_offline,106,31.799999999999997,,1.0863286967148351,-1.5545545407454762,-0.7460476612670957,,1.1506336193509952,,-0.7460476612670957,,1.1506336193509952,,-0.46822584403064105,0.4045859580838995,0.4045859580838995 +illusion,illusion_1L,ppo_state_offline,107,32.1,,1.3832528047467902,-1.6941034139941609,-0.9499634162692009,,1.2539234177426855,,-0.9499634162692009,,1.2539234177426855,,-0.3108506092473706,0.30396000147348456,0.30396000147348456 +illusion,illusion_1L,ppo_state_offline,108,32.4,,1.6293125097096228,-1.797503561748319,-1.1189475073410222,,1.330457037589012,,-1.1189475073410222,,1.330457037589012,,-0.16819105203869622,0.21150953024798969,0.21150953024798969 +illusion,illusion_1L,ppo_state_offline,109,32.699999999999996,,1.7910337059325936,-1.880711783580832,-1.2300112402464745,,1.3920452128105723,,-1.2300112402464745,,1.3920452128105723,,-0.08967807764823843,0.1620339725640978,0.1620339725640978 +illusion,illusion_1L,ppo_state_offline,110,33.0,,1.857000774561264,-1.9369608659966984,-1.275314818638443,,1.4336790594135378,,-1.275314818638443,,1.4336790594135378,,-0.07996009143543437,0.1583642407750947,0.1583642407750947 +illusion,illusion_1L,ppo_state_offline,111,33.3,,1.8271970229855445,-1.9413431997278434,-1.254846778691333,,1.4369227285098007,,-1.254846778691333,,1.4369227285098007,,-0.11414617674229888,0.18207594981846764,0.18207594981846764 +illusion,illusion_1L,ppo_state_offline,112,33.6,,1.7208495736478655,-1.8770802675844733,-1.1818115490227907,,1.3893572759868071,,-1.1818115490227907,,1.3893572759868071,,-0.15623069393660782,0.2075457269640164,0.2075457269640164 +illusion,illusion_1L,ppo_state_offline,113,33.9,,1.5511024216423062,-1.7578041941907747,-1.0652359065460082,,1.3010727826263153,,-1.0652359065460082,,1.3010727826263153,,-0.20670177254846855,0.23583687608030712,0.23583687608030712 +illusion,illusion_1L,ppo_state_offline,114,34.199999999999996,,1.332416577102342,-1.588164689952012,-0.9150511021082337,,1.1755108215428833,,-0.9150511021082337,,1.1755108215428833,,-0.25574811284967014,0.26045971943464963,0.26045971943464963 +illusion,illusion_1L,ppo_state_offline,115,34.5,,1.0919134911747028,-1.376246384308523,-0.7498830776176364,,1.018655387630371,,-0.7498830776176364,,1.018655387630371,,-0.28433289313382026,0.2687723100127346,0.2687723100127346 +illusion,illusion_1L,ppo_state_offline,116,34.8,,0.8579642216710116,-1.1201439931397832,-0.5892159555060763,,0.8290962479853767,,-0.5892159555060763,,0.8290962479853767,,-0.2621797714687716,0.23988029247930043,0.23988029247930043 +illusion,illusion_1L,ppo_state_offline,117,35.1,,0.6397418362863497,-0.7990903401245911,-0.43934943651906067,,0.5914621752705151,,-0.43934943651906067,,0.5914621752705151,,-0.1593485038382414,0.15211273875145448,0.15211273875145448 +illusion,illusion_1L,ppo_state_offline,118,35.4,,0.4222817822032518,-0.4349583393220862,-0.29000645657355467,,0.32194283000265117,,-0.29000645657355467,,0.32194283000265117,,-0.01267655711883442,0.0319363734290965,0.0319363734290965 +illusion,illusion_1L,ppo_state_offline,119,35.699999999999996,,0.19308586632564442,-0.0627029582379479,-0.13260375007270198,,0.046410807656028674,,-0.13260375007270198,,0.046410807656028674,,0.13038290808769654,-0.0861929424166733,-0.0861929424166733 +illusion,illusion_1L,ppo_state_offline,120,36.0,,-0.042525859556185555,0.25211247025976935,0.029205081446535205,,-0.1866059224910875,,0.029205081446535205,,-0.1866059224910875,,0.2095866107035838,-0.15740084104455232,-0.15740084104455232 +illusion,illusion_1L,ppo_state_offline,121,36.3,,-0.24577210298644056,0.4233789164970661,0.16878657738879724,,-0.3133720961712353,,0.16878657738879724,,-0.3133720961712353,,0.17760681351062554,-0.14458551878243805,-0.14458551878243805 +illusion,illusion_1L,ppo_state_offline,122,36.6,,-0.3845120406544389,0.39575737390203025,0.2640676892056598,,-0.2929274770246193,,0.2640676892056598,,-0.2929274770246193,,0.01124533324759136,-0.02885978781895948,-0.02885978781895948 +illusion,illusion_1L,ppo_state_offline,123,36.9,,-0.4416756181018684,0.2054364040893996,0.3033253774111571,,-0.1520577290716889,,0.3033253774111571,,-0.1520577290716889,,-0.2362392140124688,0.1512676483394682,0.1512676483394682 +illusion,illusion_1L,ppo_state_offline,124,37.199999999999996,,-0.4275159255288716,-0.06539708240822371,0.2936010595686005,,0.04840491578396794,,0.2936010595686005,,0.04840491578396794,,-0.4929130079370953,0.34200597535256844,0.34200597535256844 +illusion,illusion_1L,ppo_state_offline,125,37.5,,-0.34988742075577445,-0.3303691464684916,0.24028886721948,,0.24452911542148198,,0.24028886721948,,0.24452911542148198,,-0.680256567224266,0.484817982640962,0.484817982640962 +illusion,illusion_1L,ppo_state_offline,126,37.8,,-0.2074292839319889,-0.5577157170974694,0.14245424301480236,,0.4128040781541581,,0.14245424301480236,,0.4128040781541581,,-0.7651450010294583,0.5552583211689605,0.5552583211689605 +illusion,illusion_1L,ppo_state_offline,127,38.1,,-0.004573668842312153,-0.7738442740463328,0.0031410151950656546,,0.5727758110262149,,0.0031410151950656546,,0.5727758110262149,,-0.778417942888645,0.5759168262212805,0.5759168262212805 +illusion,illusion_1L,ppo_state_offline,128,38.4,,0.24637186740375192,-0.9755999227720837,-0.16919847191224993,,0.7221091578038032,,-0.16919847191224993,,0.7221091578038032,,-0.7292280553683318,0.5529106858915533,0.5529106858915533 +illusion,illusion_1L,ppo_state_offline,129,38.699999999999996,,0.5328196082853157,-1.187431826694812,-0.3659194715564595,,0.8789006398110777,,-0.3659194715564595,,0.8789006398110777,,-0.6546122184094963,0.5129811682546181,0.5129811682546181 +illusion,illusion_1L,ppo_state_offline,130,39.0,,0.8501828073101241,-1.403558340765716,-0.5838719873288146,,1.0388708606074892,,-0.5838719873288146,,1.0388708606074892,,-0.5533755334555919,0.4549988732786746,0.4549988732786746 +illusion,illusion_1L,ppo_state_offline,131,39.3,,1.1735031416899293,-1.588768780981585,-0.8059156284786794,,1.175957951205791,,-0.8059156284786794,,1.175957951205791,,-0.4152656392916556,0.3700423227271116,0.3700423227271116 +illusion,illusion_1L,ppo_state_offline,132,39.6,,1.4692188429704305,-1.7189699253644608,-1.0090014974310946,,1.272328847226633,,-1.0090014974310946,,1.272328847226633,,-0.24975108239403032,0.2633273497955384,0.2633273497955384 +illusion,illusion_1L,ppo_state_offline,133,39.9,,1.6949731041434875,-1.80721696576889,-1.1640406113554245,,1.3376466015003872,,-1.1640406113554245,,1.3376466015003872,,-0.11224386162540245,0.1736059901449627,0.1736059901449627 +illusion,illusion_1L,ppo_state_offline,134,40.199999999999996,,1.8256716692870942,-1.8748200033761508,-1.2537992259913306,,1.3876842977036108,,-1.2537992259913306,,1.3876842977036108,,-0.04914833408905661,0.13388507171228015,0.13388507171228015 +illusion,illusion_1L,ppo_state_offline,135,40.5,,1.8583585110634917,-1.9066345830255196,-1.2762472584655111,,1.411232474348818,,-1.2762472584655111,,1.411232474348818,,-0.04827607196202788,0.13498521588330692,0.13498521588330692 +illusion,illusion_1L,ppo_state_offline,136,40.8,,1.8022467275352703,-1.8897387806069885,-1.2377119007995026,,1.398726719305093,,-1.2377119007995026,,1.398726719305093,,-0.08749205307171826,0.1610148185055904,0.1610148185055904 +illusion,illusion_1L,ppo_state_offline,137,41.1,,1.6755784708271915,-1.8083036566740875,-1.1507211428828414,,1.3384509367981139,,-1.1507211428828414,,1.3384509367981139,,-0.13272518584689608,0.18772979391527245,0.18772979391527245 +illusion,illusion_1L,ppo_state_offline,138,41.4,,1.4833605139038715,-1.6771000600595232,-1.0187134387230883,,1.2413380563635112,,-1.0187134387230883,,1.2413380563635112,,-0.1937395461556517,0.22262461764042296,0.22262461764042296 +illusion,illusion_1L,ppo_state_offline,139,41.699999999999996,,1.244392084880943,-1.5038256750842334,-0.8545993560072679,,1.1130856679787806,,-0.8545993560072679,,1.1130856679787806,,-0.25943359020329027,0.25848631197151273,0.25848631197151273 +illusion,illusion_1L,ppo_state_offline,140,42.0,,0.9949983234391087,-1.287319786559309,-0.683325566572314,,0.9528346458404556,,-0.683325566572314,,0.9528346458404556,,-0.29232146312020024,0.2695090792681416,0.2695090792681416 +illusion,illusion_1L,ppo_state_offline,141,42.3,,0.7626385731764748,-1.014504009956898,-0.5237500635222001,,0.7509047706123079,,-0.5237500635222001,,0.7509047706123079,,-0.2518654367804233,0.22715470709010777,0.22715470709010777 +illusion,illusion_1L,ppo_state_offline,142,42.6,,0.5440785079851508,-0.6852458586328583,-0.3736516393753749,,0.5071979797414519,,-0.3736516393753749,,0.5071979797414519,,-0.14116735064770747,0.133546340366077,0.133546340366077 +illusion,illusion_1L,ppo_state_offline,143,42.9,,0.31939034108835346,-0.318616679863367,-0.21934467691118673,,0.23583029988833804,,-0.21934467691118673,,0.23583029988833804,,0.000773661224986455,0.01648562297715131,0.01648562297715131 +illusion,illusion_1L,ppo_state_offline,144,43.199999999999996,,0.0765615599179793,0.04586260268168346,-0.05257945674499923,,-0.03394609268014237,,-0.05257945674499923,,-0.03394609268014237,,0.12242416259966277,-0.0865255494251416,-0.0865255494251416 +illusion,illusion_1L,ppo_state_offline,145,43.5,,-0.16538123704933594,0.3374024147754032,0.11357730444867782,,-0.2497349250317177,,0.11357730444867782,,-0.2497349250317177,,0.1720211777260673,-0.13615762058303987,-0.13615762058303987 +illusion,illusion_1L,ppo_state_offline,146,43.8,,-0.3623339411862189,0.47552439785397654,0.24883664606958963,,-0.3519685830579089,,0.24883664606958963,,-0.3519685830579089,,0.11319045666775762,-0.10313193698831927,-0.10313193698831927 +illusion,illusion_1L,ppo_state_offline,147,44.1,,-0.4795744349923966,0.4257303891978187,0.3293527886279213,,-0.3151125841847176,,0.3293527886279213,,-0.3151125841847176,,-0.05384404579457791,0.014240204443203675,0.014240204443203675 +illusion,illusion_1L,ppo_state_offline,148,44.4,,-0.5022488472243126,0.210434124763541,0.34492467977595337,,-0.15575688871972224,,0.34492467977595337,,-0.15575688871972224,,-0.2918147224607716,0.18916779105623113,0.18916779105623113 +illusion,illusion_1L,ppo_state_offline,149,44.699999999999996,,-0.4491827207810216,-0.06552694034910937,0.30848095915507234,,0.048501032651280356,,0.30848095915507234,,0.048501032651280356,,-0.514709661130131,0.3569819918063527,0.3569819918063527 +illusion,illusion_1L,ppo_state_offline,150,45.0,,-0.3325565575551001,-0.3392008083109262,0.22838671458584014,,0.25106604080061434,,0.22838671458584014,,0.25106604080061434,,-0.6717573658660263,0.4794527553864545,0.4794527553864545 +illusion,illusion_1L,ppo_state_offline,151,45.3,,-0.16136437839200155,-0.5878640293475824,0.11081868450610673,,0.43511893474647567,,0.11081868450610673,,0.43511893474647567,,-0.749228407739584,0.5459376192525824,0.5459376192525824 +illusion,illusion_1L,ppo_state_offline,152,45.6,,0.05692998722852628,-0.8180311234652938,-0.03909726766516306,,0.6054815625080994,,-0.03909726766516306,,0.6054815625080994,,-0.7611011362367676,0.5663842948429363,0.5663842948429363 +illusion,illusion_1L,ppo_state_offline,153,45.9,,0.3125188334609087,-1.0466697242767287,-0.21462559675585516,,0.7747128463772718,,-0.21462559675585516,,0.7747128463772718,,-0.73415089081582,0.5600872496214166,0.5600872496214166 +illusion,illusion_1L,ppo_state_offline,154,46.199999999999996,,0.5930742956254049,-1.283995783780511,-0.407300012000982,,0.9503743208741364,,-0.407300012000982,,0.9503743208741364,,-0.690921488155106,0.5430743088731544,0.5430743088731544 +illusion,illusion_1L,ppo_state_offline,155,46.5,,0.8930112602950755,-1.5058734799847608,-0.6132848779960104,,1.1146013903948555,,-0.6132848779960104,,1.1146013903948555,,-0.6128622196896854,0.5013165123988451,0.5013165123988451 +illusion,illusion_1L,ppo_state_offline,156,46.8,,1.1932809076206168,-1.7193968868580103,-0.8194982173049695,,1.2726448710365217,,-0.8194982173049695,,1.2726448710365217,,-0.5261159792373935,0.45314665373155216,0.45314665373155216 +illusion,illusion_1L,ppo_state_offline,157,47.1,,1.4494191746341474,-1.7898182548644306,-0.9954038668973355,,1.3247686090110147,,-0.9954038668973355,,1.3247686090110147,,-0.3403990802302832,0.32936474211367917,0.32936474211367917 +illusion,illusion_1L,ppo_state_offline,158,47.4,,1.636796434114893,-1.8422413873699044,-1.1240871711614997,,1.3635706047670235,,-1.1240871711614997,,1.3635706047670235,,-0.20544495325501133,0.23948343360552382,0.23948343360552382 +illusion,illusion_1L,ppo_state_offline,159,47.699999999999996,,1.7323120275006774,-1.8849809178391586,-1.189683509797769,,1.3952050951269548,,-1.189683509797769,,1.3952050951269548,,-0.1526688903384812,0.20552158532918585,0.20552158532918585 +illusion,illusion_1L,ppo_state_offline,160,48.0,,1.7346949773327978,-1.8925905180692515,-1.1913200256649703,,1.400837487960446,,-1.1913200256649703,,1.400837487960446,,-0.15789554073645373,0.20951746229547563,0.20951746229547563 +illusion,illusion_1L,ppo_state_offline,161,48.3,,1.6597106564236122,-1.8525174240143982,-1.1398237544027152,,1.3711766121002673,,-1.1398237544027152,,1.3711766121002673,,-0.19280676759078608,0.2313528576975521,0.2313528576975521 +illusion,illusion_1L,ppo_state_offline,162,48.6,,1.5251120277321226,-1.7651995325736967,-1.047386730094405,,1.3065465854082918,,-1.047386730094405,,1.3065465854082918,,-0.24008750484157404,0.25915985531388674,0.25915985531388674 +illusion,illusion_1L,ppo_state_offline,163,48.9,,1.3382790855593762,-1.626752371391677,-0.9190772414680385,,1.2040722405176034,,-0.9190772414680385,,1.2040722405176034,,-0.2884732858323007,0.28499499904956493,0.28499499904956493 +illusion,illusion_1L,ppo_state_offline,164,49.199999999999996,,1.1173038017005033,-1.4408218767797067,-0.7673201404917944,,1.066452187727111,,-0.7673201404917944,,1.066452187727111,,-0.3235180750792035,0.2991320472353165,0.2991320472353165 +illusion,illusion_1L,ppo_state_offline,165,49.5,,0.8900371049954032,-1.2142611832763803,-0.6112423455541485,,0.8987589071533765,,-0.6112423455541485,,0.8987589071533765,,-0.3242240782809771,0.287516561599228,0.287516561599228 +illusion,illusion_1L,ppo_state_offline,166,49.8,,0.6718075960128049,-0.9365145602106808,-0.4613709343613056,,0.6931793705181758,,-0.4613709343613056,,0.6931793705181758,,-0.26470696419787587,0.2318084361568702,0.2318084361568702 +illusion,illusion_1L,ppo_state_offline,167,50.1,,0.45874365243539267,-0.6037198867154024,-0.31504702955517194,,0.4468549543410657,,-0.31504702955517194,,0.4468549543410657,,-0.14497623428000977,0.13180792478589376,0.13180792478589376 +illusion,illusion_1L,ppo_state_offline,168,50.4,,0.23826882791214873,-0.24019938237507385,-0.1636336242927892,,0.17778822001032396,,-0.1636336242927892,,0.17778822001032396,,-0.001930554462925116,0.014154595717534774,0.014154595717534774 +illusion,illusion_1L,ppo_state_offline,169,50.699999999999996,,0.011425719478378102,0.09898273961098687,-0.007846733056869155,,-0.07326398974541631,,-0.007846733056869155,,-0.07326398974541631,,0.11040845908936497,-0.08111072280228547,-0.08111072280228547 +illusion,illusion_1L,ppo_state_offline,170,51.0,,-0.19681437875008598,0.3516428663966961,0.1351643452062669,,-0.2602752708097072,,0.1351643452062669,,-0.2602752708097072,,0.15482848764661014,-0.12511092560344028,-0.12511092560344028 +illusion,illusion_1L,ppo_state_offline,171,51.3,,-0.3436694766584153,0.4062179605363126,0.23601862869429627,,-0.30067008260329975,,0.23601862869429627,,-0.30067008260329975,,0.0625484838778973,-0.06465145390900348,-0.06465145390900348 +illusion,illusion_1L,ppo_state_offline,172,51.6,,-0.40907643910903296,0.27765226012936123,0.28093754827585027,,-0.20550969208222716,,0.28093754827585027,,-0.20550969208222716,,-0.13142417897967174,0.0754278561936231,0.0754278561936231 +illusion,illusion_1L,ppo_state_offline,173,51.9,,-0.399529754650535,0.039123794203017224,0.2743812622874051,,-0.028958233208706538,,0.2743812622874051,,-0.028958233208706538,,-0.36040596044751777,0.24542302907869856,0.24542302907869856 +illusion,illusion_1L,ppo_state_offline,174,52.199999999999996,,-0.3305113406908205,-0.21875146203733184,0.22698214038744688,,0.16191312681871847,,0.22698214038744688,,0.16191312681871847,,-0.5492628027281523,0.38889526720616535,0.38889526720616535 +illusion,illusion_1L,ppo_state_offline,175,52.5,,-0.21348933932881495,-0.44653385664512485,0.1466160498138157,,0.33051067310121557,,0.1466160498138157,,0.33051067310121557,,-0.6600231959739398,0.4771267229150313,0.4771267229150313 +illusion,illusion_1L,ppo_state_offline,176,52.8,,-0.05117932989133082,-0.6613132429133093,0.035147943238645264,,0.489483791191518,,0.035147943238645264,,0.489483791191518,,-0.7124925728046401,0.5246317344301633,0.5246317344301633 +illusion,illusion_1L,ppo_state_offline,177,53.1,,0.14498488764410192,-0.8687282043488718,-0.0995698969133913,,0.643005987762184,,-0.0995698969133913,,0.643005987762184,,-0.7237433167047699,0.5434360908487927,0.5434360908487927 +illusion,illusion_1L,ppo_state_offline,178,53.4,,0.372870380468463,-1.0971755557325036,-0.2560726565960283,,0.8120957146672589,,-0.2560726565960283,,0.8120957146672589,,-0.7243051752640406,0.5560230580712306,0.5560230580712306 +illusion,illusion_1L,ppo_state_offline,179,53.699999999999996,,0.6297379656916279,-1.3260653704483192,-0.4324791731417046,,0.9815129393680024,,-0.4324791731417046,,0.9815129393680024,,-0.6963274047566913,0.5490337662262978,0.5490337662262978 +illusion,illusion_1L,ppo_state_offline,180,54.0,,0.9149588528927528,-1.5359012624352595,-0.6283576181136715,,1.1368270345240943,,-0.6283576181136715,,1.1368270345240943,,-0.6209424095425067,0.5084694164104228,0.5084694164104228 +illusion,illusion_1L,ppo_state_offline,181,54.3,,1.2001210501526693,-1.6861741634480416,-0.8241957571510619,,1.2480544295435023,,-0.8241957571510619,,1.2480544295435023,,-0.48605311329537226,0.42385867239244046,0.42385867239244046 +illusion,illusion_1L,ppo_state_offline,182,54.6,,1.4431227646371292,-1.7597074354333402,-0.9910797410900549,,1.3024815034540715,,-0.9910797410900549,,1.3024815034540715,,-0.316584670796211,0.3114017623640166,0.3114017623640166 +illusion,illusion_1L,ppo_state_offline,183,54.9,,1.6120719141902635,-1.7813318994818084,-1.107107346987193,,1.318487268888768,,-1.107107346987193,,1.318487268888768,,-0.16925998529154485,0.21137992190157506,0.21137992190157506 +illusion,illusion_1L,ppo_state_offline,184,55.199999999999996,,1.6840174358065618,-1.80470398554004,-1.1565166908651543,,1.3357865705652918,,-1.1565166908651543,,1.3357865705652918,,-0.12068654973347814,0.17926987970013752,0.17926987970013752 +illusion,illusion_1L,ppo_state_offline,185,55.5,,1.6724318606640414,-1.8035610554063084,-1.1485601752491623,,1.3349406087145033,,-1.1485601752491623,,1.3349406087145033,,-0.13112919474226703,0.18638043346534094,0.18638043346534094 +illusion,illusion_1L,ppo_state_offline,186,55.8,,1.6011199139746632,-1.7763961861622044,-1.0995859456178338,,1.314834005183854,,-1.0995859456178338,,1.314834005183854,,-0.17527627218754116,0.21524805956602022,0.21524805956602022 +illusion,illusion_1L,ppo_state_offline,187,56.1,,1.480669707686301,-1.7136011219174287,-1.0168654992443538,,1.268355023484894,,-1.0168654992443538,,1.268355023484894,,-0.23293141423112784,0.25148952424054016,0.25148952424054016 +illusion,illusion_1L,ppo_state_offline,188,56.4,,1.309769489716242,-1.593580119084239,-0.8994979765855388,,1.179519156187588,,-0.8994979765855388,,1.179519156187588,,-0.28381062936799695,0.2800211796020492,0.2800211796020492 +illusion,illusion_1L,ppo_state_offline,189,56.699999999999996,,1.1043058935253012,-1.4230323753385112,-0.7583936903070587,,1.053284944061336,,-0.7583936903070587,,1.053284944061336,,-0.31872648181321006,0.2948912537542774,0.2948912537542774 +illusion,illusion_1L,ppo_state_offline,190,57.0,,0.8904342189997745,-1.2083267429731317,-0.6115150677745165,,0.894366416349114,,-0.6115150677745165,,0.894366416349114,,-0.3178925239733572,0.2828513485745975,0.2828513485745975 +illusion,illusion_1L,ppo_state_offline,191,57.3,,0.6823192621858071,-0.940626332781475,-0.46858993169434515,,0.6962227785370494,,-0.46858993169434515,,0.6962227785370494,,-0.25830707059566793,0.22763284684270424,0.22763284684270424 +illusion,illusion_1L,ppo_state_offline,192,57.599999999999994,,0.47601752685257487,-0.6195807911934754,-0.3269100445421941,,0.45859470965195615,,-0.3269100445421941,,0.45859470965195615,,-0.14356326434090055,0.13168466510976207,0.13168466510976207 +illusion,illusion_1L,ppo_state_offline,193,57.9,,0.26123977319846675,-0.2692893486516783,-0.17940916263562887,,0.19931972135449455,,-0.17940916263562887,,0.19931972135449455,,-0.008049575453211555,0.019910558718865684,0.019910558718865684 +illusion,illusion_1L,ppo_state_offline,194,58.199999999999996,,0.03859331452815943,0.06141409752056062,-0.026504364775919092,,-0.04545683246042345,,-0.026504364775919092,,-0.04545683246042345,,0.10000741204872005,-0.07196119723634255,-0.07196119723634255 +illusion,illusion_1L,ppo_state_offline,195,58.5,,-0.1611210065162303,0.29760679161517584,0.11065154631000972,,-0.22027942462243497,,0.11065154631000972,,-0.22027942462243497,,0.13648578509894554,-0.10962787831242525,-0.10962787831242525 +illusion,illusion_1L,ppo_state_offline,196,58.8,,-0.3075350792866395,0.36477442583614267,0.21120295114473614,,-0.2699948485855293,,0.21120295114473614,,-0.2699948485855293,,0.05723934654950319,-0.05879189744079316,-0.05879189744079316 +illusion,illusion_1L,ppo_state_offline,197,59.099999999999994,,-0.3743805832310034,0.24648896799889602,0.25710980423139834,,-0.1824435784946175,,0.25710980423139834,,-0.1824435784946175,,-0.1278916152321074,0.07466622573678083,0.07466622573678083 +illusion,illusion_1L,ppo_state_offline,198,59.4,,-0.37078422949663775,0.01126801724899429,0.2546399704686279,,-0.008340240969546357,,0.2546399704686279,,-0.008340240969546357,,-0.35951621224764346,0.24629972949908155,0.24629972949908155 +illusion,illusion_1.5L,ppo_state_offline,2,0.8,,-0.8933706298626188,-0.564331096692358,0.6135316788272939,,0.4177005793492832,,0.6135316788272939,,0.4177005793492832,,-1.4577017265549768,1.0312322581765772,1.0312322581765772 +illusion,illusion_1.5L,ppo_state_offline,3,1.2000000000000002,,-1.9831284352438476,-1.3962978323281254,1.3619343165472164,,1.0334968548181092,,1.3619343165472164,,1.0334968548181092,,-3.379426267571973,2.395431171365326,2.395431171365326 +illusion,illusion_1.5L,ppo_state_offline,4,1.6,,-2.049767035880981,-2.833933901014534,1.407699076610897,,2.097591005049031,,1.407699076610897,,2.097591005049031,,-4.883700936895515,3.505290081659928,3.505290081659928 +illusion,illusion_1.5L,ppo_state_offline,5,2.0,,-1.218176074928651,-3.7876404208632373,0.8365952353651372,,2.803495337106702,,0.8365952353651372,,2.803495337106702,,-5.005816495791889,3.640090572471839,3.640090572471839 +illusion,illusion_1.5L,ppo_state_offline,6,2.4000000000000004,,-0.264619548291091,-2.8195878506281256,0.18173025873765242,,2.086972498302018,,0.18173025873765242,,2.086972498302018,,-3.0842073989192165,2.2687027570396707,2.2687027570396707 +illusion,illusion_1.5L,ppo_state_offline,7,2.8000000000000003,,0.20319350754105336,-1.214707371856608,-0.13954527901554112,,0.8990891622634573,,-0.13954527901554112,,0.8990891622634573,,-1.0115138643155546,0.7595438832479161,0.7595438832479161 +illusion,illusion_1.5L,ppo_state_offline,8,3.2,,0.15291898091001677,-2.100854595720243,-0.10501871893494986,,1.5549881743258414,,-0.10501871893494986,,1.5549881743258414,,-1.947935614810226,1.4499694553908915,1.4499694553908915 +illusion,illusion_1.5L,ppo_state_offline,9,3.6,,0.09974525624117726,-4.621593675060745,-0.06850110410067864,,3.4207619727222407,,-0.06850110410067864,,3.4207619727222407,,-4.521848418819568,3.352260868621562,3.352260868621562 +illusion,illusion_1.5L,ppo_state_offline,10,4.0,,0.471949208174326,-4.054391733988738,-0.32411608388887114,,3.0009364823630387,,-0.32411608388887114,,3.0009364823630387,,-3.582442525814412,2.6768203984741676,2.6768203984741676 +illusion,illusion_1.5L,ppo_state_offline,11,4.4,,0.9460148691922967,-0.5619912203282583,-0.6496856640344078,,0.41596867458872916,,-0.6496856640344078,,0.41596867458872916,,0.3840236488640384,-0.2337169894456786,-0.2337169894456786 +illusion,illusion_1.5L,ppo_state_offline,12,4.800000000000001,,1.4481424026069742,1.0847087127303126,-0.9945270302753035,,-0.8028681396227624,,-0.9945270302753035,,-0.8028681396227624,,2.532851115337287,-1.797395169898066,-1.797395169898066 +illusion,illusion_1.5L,ppo_state_offline,13,5.2,,1.2240357126820394,-1.3288850227096878,-0.8406194032390117,,0.9835999595411601,,-0.8406194032390117,,0.9835999595411601,,-0.10484931002764841,0.14298055630214834,0.14298055630214834 +illusion,illusion_1.5L,ppo_state_offline,14,5.6000000000000005,,0.5031971363287268,-2.4986553282590065,-0.3455759272949526,,1.849428082778366,,-0.3455759272949526,,1.849428082778366,,-1.9954581919302798,1.5038521554834134,1.5038521554834134 +illusion,illusion_1.5L,ppo_state_offline,15,6.0,,0.1701568120480874,1.1915573586495105,-0.11685698082084624,,-0.8819542321041511,,-0.11685698082084624,,-0.8819542321041511,,1.361714170697598,-0.9988112129249974,-0.9988112129249974 +illusion,illusion_1.5L,ppo_state_offline,16,6.4,,0.671383369807332,4.237984455199214,-0.46107959255159525,,-3.1368261869414353,,-0.46107959255159525,,-3.1368261869414353,,4.909367825006546,-3.5979057794930305,-3.5979057794930305 +illusion,illusion_1.5L,ppo_state_offline,17,6.800000000000001,,1.0350734526604197,1.9347686176075,-0.7108475831782917,,-1.4320564243547707,,-0.7108475831782917,,-1.4320564243547707,,2.96984207026792,-2.1429040075330623,-2.1429040075330623 +illusion,illusion_1.5L,ppo_state_offline,18,7.2,,-0.15417911348827848,-0.6676169634500723,0.10588412824038534,,0.4941496119050933,,0.10588412824038534,,0.4941496119050933,,-0.8217960769383508,0.6000337401454787,0.6000337401454787 +illusion,illusion_1.5L,ppo_state_offline,19,7.6000000000000005,,-1.531520820460766,1.8020434374209342,1.0517880359249598,,-1.333817314401223,,1.0517880359249598,,-1.333817314401223,,0.2705226169601682,-0.28202927847626325,-0.28202927847626325 +illusion,illusion_1.5L,ppo_state_offline,20,8.0,,-2.163817114712817,4.473164891998993,1.4860241681206123,,-3.3108995372824985,,1.4860241681206123,,-3.3108995372824985,,2.3093477772861757,-1.8248753691618862,-1.8248753691618862 +illusion,illusion_1.5L,ppo_state_offline,21,8.4,,-0.7718922332183604,0.3231650575133726,0.5301051119097526,,-0.23919686960360287,,0.5301051119097526,,-0.23919686960360287,,-0.4487271757049878,0.29090824230614976,0.29090824230614976 +illusion,illusion_1.5L,ppo_state_offline,22,8.8,,-1.4627185598533639,-3.7536704847972344,1.0045373596137588,,2.7783518317099705,,1.0045373596137588,,2.7783518317099705,,-5.216389044650598,3.7828891913237292,3.7828891913237292 +illusion,illusion_1.5L,ppo_state_offline,23,9.200000000000001,,-1.564870741618224,-0.06252151011800244,1.0746914451400575,,0.046276505319568256,,1.0746914451400575,,0.046276505319568256,,-1.6273922517362265,1.1209679504596257,1.1209679504596257 +illusion,illusion_1.5L,ppo_state_offline,24,9.600000000000001,,-1.157265272321902,4.199095749683742,0.7947641008585289,,-3.108041959173084,,0.7947641008585289,,-3.108041959173084,,3.0418304773618408,-2.3132778583145552,-2.3132778583145552 +illusion,illusion_1.5L,ppo_state_offline,25,10.0,,-1.1491694627505924,-0.6030761999042014,0.7892042184628928,,0.44637851709432524,,0.7892042184628928,,0.44637851709432524,,-1.7522456626547938,1.235582735557218,1.235582735557218 +illusion,illusion_1.5L,ppo_state_offline,26,10.4,,-0.8191703831770573,-5.895746271985607,0.5625738787870209,,4.3638506684087055,,0.5625738787870209,,4.3638506684087055,,-6.714916655162664,4.926424547195726,4.926424547195726 +illusion,illusion_1.5L,ppo_state_offline,27,10.8,,-0.41228152656867684,-3.894859548708867,0.28313867580811086,,2.882855648953665,,0.28313867580811086,,2.882855648953665,,-4.307141075277544,3.165994324761776,3.165994324761776 +illusion,illusion_1.5L,ppo_state_offline,28,11.200000000000001,,0.08571899822654343,-0.49315386384089827,-0.05886842384488555,,0.36501737338599183,,-0.05886842384488555,,0.36501737338599183,,-0.4074348656143548,0.3061489495411063,0.3061489495411063 +illusion,illusion_1.5L,ppo_state_offline,29,11.600000000000001,,0.7186593933188836,-2.6088149986734948,-0.4935468990689152,,1.9309648940984445,,-0.4935468990689152,,1.9309648940984445,,-1.8901556053546111,1.4374179950295294,1.4374179950295294 +illusion,illusion_1.5L,ppo_state_offline,30,12.0,,1.362748538148936,-7.1123824811439205,-0.9358818954665319,,5.264367496918299,,-0.9358818954665319,,5.264367496918299,,-5.7496339429949845,4.328485601451767,4.328485601451767 +illusion,illusion_1.5L,ppo_state_offline,31,12.4,,0.9576529144181258,-4.910745505520766,-0.6576782140321269,,3.6347832942672738,,-0.6576782140321269,,3.6347832942672738,,-3.9530925911026404,2.977105080235147,2.977105080235147 +illusion,illusion_1.5L,ppo_state_offline,32,12.8,,0.7768753494584861,-0.3949556945145151,-0.5335273194128871,,0.2923340985158323,,-0.5335273194128871,,0.2923340985158323,,0.381919654943971,-0.2411932208970548,-0.2411932208970548 +illusion,illusion_1.5L,ppo_state_offline,33,13.200000000000001,,0.8300205797355795,-2.1990571812680977,-0.5700253654238494,,1.6276747179477637,,-0.5700253654238494,,1.6276747179477637,,-1.3690366015325182,1.0576493525239143,1.0576493525239143 +illusion,illusion_1.5L,ppo_state_offline,34,13.600000000000001,,1.3980656355604437,-7.066448009715196,-0.9601362836699157,,5.230368209194588,,-0.9601362836699157,,5.230368209194588,,-5.668382374154753,4.270231925524673,4.270231925524673 +illusion,illusion_1.5L,ppo_state_offline,35,14.0,,1.9887339625633813,-3.7592038000046575,-1.3657839714072544,,2.7824474220139774,,-1.3657839714072544,,2.7824474220139774,,-1.7704698374412762,1.416663450606723,1.416663450606723 +illusion,illusion_1.5L,ppo_state_offline,36,14.4,,1.272779091046155,2.6386506304265023,-0.874094431138741,,-1.9530483141713897,,-0.874094431138741,,-1.9530483141713897,,3.911429721472657,-2.8271427453101308,-2.8271427453101308 +illusion,illusion_1.5L,ppo_state_offline,37,14.8,,1.0783324048699223,1.7492792644655044,-0.7405561237170457,,-1.2947628909580586,,-0.7405561237170457,,-1.2947628909580586,,2.8276116693354267,-2.035319014675104,-2.035319014675104 +illusion,illusion_1.5L,ppo_state_offline,38,15.200000000000001,,0.8431052469543068,-2.118861483410195,-0.5790113982944808,,1.568316320629412,,-0.5790113982944808,,1.568316320629412,,-1.275756236455888,0.9893049223349312,0.9893049223349312 +illusion,illusion_1.5L,ppo_state_offline,39,15.600000000000001,,0.4736059231451726,-0.9532349154632725,-0.3252538503246875,,0.7055552649476489,,-0.3252538503246875,,0.7055552649476489,,-0.47962899231809997,0.38030141462296135,0.38030141462296135 +illusion,illusion_1.5L,ppo_state_offline,40,16.0,,-0.14016880382723385,4.048428933732639,0.09626240068420543,,-2.996523000390993,,0.09626240068420543,,-2.996523000390993,,3.9082601299054054,-2.9002605997067876,-2.9002605997067876 +illusion,illusion_1.5L,ppo_state_offline,41,16.400000000000002,,-0.06745621956447323,4.448368198987193,0.04632626846384928,,-3.2925457852073734,,0.04632626846384928,,-3.2925457852073734,,4.38091197942272,-3.246219516743524,-3.246219516743524 +illusion,illusion_1.5L,ppo_state_offline,42,16.8,,0.188268825607561,0.14108278919425096,-0.1292955966815393,,-0.10442515595552407,,-0.1292955966815393,,-0.10442515595552407,,0.32935161480181196,-0.23372075263706338,-0.23372075263706338 +illusion,illusion_1.5L,ppo_state_offline,43,17.2,,-0.6716115375860149,-0.26507999861599185,0.461236289174061,,0.19620408948714657,,0.461236289174061,,0.19620408948714657,,-0.9366915362020067,0.6574403786612075,0.6574403786612075 +illusion,illusion_1.5L,ppo_state_offline,44,17.6,,-1.2870850831827434,4.252575891279354,0.8839192217457491,,-3.1476263206571486,,0.8839192217457491,,-3.1476263206571486,,2.96549080809661,-2.2637070989113997,-2.2637070989113997 +illusion,illusion_1.5L,ppo_state_offline,45,18.0,,-1.2084920219845712,4.787703206354669,0.829944610124024,,-3.5437111560360464,,0.829944610124024,,-3.5437111560360464,,3.5792111843700978,-2.7137665459120224,-2.7137665459120224 +illusion,illusion_1.5L,ppo_state_offline,46,18.400000000000002,,-0.4229260956882557,-0.5665867944675945,0.29044894563792684,,0.41937017769868407,,0.29044894563792684,,0.41937017769868407,,-0.9895128901558502,0.7098191233366109,0.7098191233366109 +illusion,illusion_1.5L,ppo_state_offline,47,18.8,,-1.077253445588434,-2.648542485845306,0.7398151370792159,,1.9603699623376718,,0.7398151370792159,,1.9603699623376718,,-3.72579593143374,2.7001850994168874,2.7001850994168874 +illusion,illusion_1.5L,ppo_state_offline,48,19.200000000000003,,-1.0570385884470452,0.06795383430158979,0.7259323712655272,,-0.05029734516340647,,0.7259323712655272,,-0.05029734516340647,,-0.9890847541454555,0.6756350261021208,0.6756350261021208 +illusion,illusion_1.5L,ppo_state_offline,49,19.6,,-0.8501123155872597,2.1144469443088636,0.5838235763965244,,-1.5650488141053276,,0.5838235763965244,,-1.5650488141053276,,1.264334628721604,-0.9812252377088032,-0.9812252377088032 +illusion,illusion_1.5L,ppo_state_offline,50,20.0,,-0.14116249257819857,-1.9211868439165527,0.0969448268881035,,1.42200361179039,,0.0969448268881035,,1.42200361179039,,-2.0623493364947514,1.5189484386784935,1.5189484386784935 +illusion,illusion_1.5L,ppo_state_offline,51,20.400000000000002,,-0.22389680959170094,-5.15787413465959,0.1537634895093825,,3.817700330330154,,0.1537634895093825,,3.817700330330154,,-5.381770944251291,3.9714638198395367,3.9714638198395367 +illusion,illusion_1.5L,ppo_state_offline,52,20.8,,-0.658468393070794,-2.6436922128921285,0.452210096404848,,1.956779938972986,,0.452210096404848,,1.956779938972986,,-3.3021606059629223,2.408990035377834,2.408990035377834 +illusion,illusion_1.5L,ppo_state_offline,53,21.200000000000003,,-0.03790817325796719,0.49342709876799024,0.026033836800537193,,-0.3652196135035642,,0.026033836800537193,,-0.3652196135035642,,0.45551892551002304,-0.339185776703027,-0.339185776703027 +illusion,illusion_1.5L,ppo_state_offline,54,21.6,,0.4203254508296427,-3.1576834319206033,-0.28866292542100547,,2.337220483942064,,-0.28866292542100547,,2.337220483942064,,-2.7373579810909607,2.0485575585210585,2.0485575585210585 +illusion,illusion_1.5L,ppo_state_offline,55,22.0,,0.6243346634956053,-7.709334493433217,-0.42876839851276166,,5.706213078064593,,-0.42876839851276166,,5.706213078064593,,-7.084999829937612,5.277444679551832,5.277444679551832 +illusion,illusion_1.5L,ppo_state_offline,56,22.400000000000002,,0.19655218781707945,-4.628544747572107,-0.13498428282462635,,3.4259069435241556,,-0.13498428282462635,,3.4259069435241556,,-4.431992559755027,3.2909226606995294,3.2909226606995294 +illusion,illusion_1.5L,ppo_state_offline,57,22.8,,0.6694038601598399,0.47883836649691425,-0.45972014347560824,,-0.35442148106444044,,-0.45972014347560824,,-0.35442148106444044,,1.148242226656754,-0.8141416245400487,-0.8141416245400487 +illusion,illusion_1.5L,ppo_state_offline,58,23.200000000000003,,0.6244201466708434,-1.6051943609615404,-0.4288271049826883,,1.1881156620141953,,-0.4288271049826883,,1.1881156620141953,,-0.980774214290697,0.759288557031507,0.759288557031507 +illusion,illusion_1.5L,ppo_state_offline,59,23.6,,0.7569360798671186,-6.311352248142784,-0.5198338162485141,,4.671469472404038,,-0.5198338162485141,,4.671469472404038,,-5.554416168275665,4.151635656155523,4.151635656155523 +illusion,illusion_1.5L,ppo_state_offline,60,24.0,,0.772805329622521,-2.6752599648162647,-0.5307321904716055,,1.9801454213019785,,-0.5307321904716055,,1.9801454213019785,,-1.9024546351937437,1.4494132308303729,1.4494132308303729 +illusion,illusion_1.5L,ppo_state_offline,61,24.400000000000002,,0.7116457326997804,2.9782084316608626,-0.48873019385103156,,-2.2043785901910375,,-0.48873019385103156,,-2.2043785901910375,,3.689854164360643,-2.693108784042069,-2.693108784042069 +illusion,illusion_1.5L,ppo_state_offline,62,24.8,,0.5113490841046702,0.79655482815354,-0.3511743631932271,,-0.5895854670305074,,-0.3511743631932271,,-0.5895854670305074,,1.3079039122582101,-0.9407598302237346,-0.9407598302237346 +illusion,illusion_1.5L,ppo_state_offline,63,25.200000000000003,,-0.001317759295897362,-3.6790268485562656,0.000904985060037746,,2.723102900213313,,0.000904985060037746,,2.723102900213313,,-3.680344607852163,2.724007885273351,2.724007885273351 +illusion,illusion_1.5L,ppo_state_offline,64,25.6,,0.32191730455338435,-0.6945335028527972,-0.22108009565589523,,0.5140724092992003,,-0.22108009565589523,,0.5140724092992003,,-0.3726161982994129,0.292992313643305,0.292992313643305 +illusion,illusion_1.5L,ppo_state_offline,65,26.0,,-0.09764475175112174,4.923574298429676,0.06705856054362638,,-3.6442787735378848,,0.06705856054362638,,-3.6442787735378848,,4.825929546678554,-3.5772202129942583,-3.5772202129942583 +illusion,illusion_1.5L,ppo_state_offline,66,26.400000000000002,,0.0866354969461364,3.5313125921031947,-0.05949783898265588,,-2.6137693354669564,,-0.05949783898265588,,-2.6137693354669564,,3.617948089049331,-2.673267174449612,-2.673267174449612 +illusion,illusion_1.5L,ppo_state_offline,67,26.8,,-0.017355211020487184,-0.9224612422189488,0.011918873755049327,,0.6827775353165862,,0.011918873755049327,,0.6827775353165862,,-0.939816453239436,0.6946964090716355,0.6946964090716355 +illusion,illusion_1.5L,ppo_state_offline,68,27.200000000000003,,-0.43066891503345733,0.4192209087912752,0.29576640828212475,,-0.31029446632268126,,0.29576640828212475,,-0.31029446632268126,,-0.011448006242182118,-0.014528058040556513,-0.014528058040556513 +illusion,illusion_1.5L,ppo_state_offline,69,27.6,,-1.013256317595102,5.653466714107044,0.6958644361434663,,-4.18452276625425,,0.6958644361434663,,-4.18452276625425,,4.640210396511941,-3.488658330110783,-3.488658330110783 +illusion,illusion_1.5L,ppo_state_offline,70,28.0,,-0.879545746392638,3.94660132133018,0.6040372946586164,,-2.92115332300912,,0.6040372946586164,,-2.92115332300912,,3.067055574937542,-2.3171160283505032,-2.3171160283505032 +illusion,illusion_1.5L,ppo_state_offline,71,28.400000000000002,,-0.783726549515694,-2.190480458578088,0.5382324531307112,,1.6213264907146148,,0.5382324531307112,,1.6213264907146148,,-2.974207008093782,2.159558943845326,2.159558943845326 +illusion,illusion_1.5L,ppo_state_offline,72,28.8,,-0.8512159416556327,-1.2311831826005104,0.5845815032097559,,0.9112840523436133,,0.5845815032097559,,0.9112840523436133,,-2.0823991242561433,1.4958655555533693,1.4958655555533693 +illusion,illusion_1.5L,ppo_state_offline,73,29.200000000000003,,-0.9190251514462137,1.6657165432223608,0.6311501914250434,,-1.232912326139208,,0.6311501914250434,,-1.232912326139208,,0.7466913917761472,-0.6017621347141647,-0.6017621347141647 +illusion,illusion_1.5L,ppo_state_offline,74,29.6,,-0.9296954505762498,0.8497419369312458,0.6384781316102353,,-0.628952934605083,,0.6384781316102353,,-0.628952934605083,,-0.07995351364500403,0.009525197005152308,0.009525197005152308 +illusion,illusion_1.5L,ppo_state_offline,75,30.0,,-0.10696039772729078,-3.410099750234535,0.07345617842367537,,2.5240513054489986,,0.07345617842367537,,2.5240513054489986,,-3.5170601479618258,2.597507483872674,2.597507483872674 +illusion,illusion_1.5L,ppo_state_offline,76,30.400000000000002,,-0.3661778133682891,-4.039246557812263,0.25147646573035654,,2.9897264872017955,,0.25147646573035654,,2.9897264872017955,,-4.405424371180552,3.241202952932152,3.241202952932152 +illusion,illusion_1.5L,ppo_state_offline,77,30.8,,-0.6532545573154112,-0.8377589555822424,0.44862943984730963,,0.6200834991244808,,0.44862943984730963,,0.6200834991244808,,-1.4910135128976536,1.0687129389717904,1.0687129389717904 +illusion,illusion_1.5L,ppo_state_offline,78,31.200000000000003,,-0.12858370713532097,-0.8576776766191188,0.08830621364920196,,0.634826725868081,,0.08830621364920196,,0.634826725868081,,-0.9862613837544397,0.723132939517283,0.723132939517283 +illusion,illusion_1.5L,ppo_state_offline,79,31.6,,0.5570264446524399,-5.684111325532039,-0.38254377110132265,,4.207204968282773,,-0.38254377110132265,,4.207204968282773,,-5.1270848808795995,3.8246611971814506,3.8246611971814506 +illusion,illusion_1.5L,ppo_state_offline,80,32.0,,0.4436766048655273,-6.682038462370682,-0.3046995761226232,,4.9458400455432905,,-0.3046995761226232,,4.9458400455432905,,-6.238361857505154,4.641140469420668,4.641140469420668 +illusion,illusion_1.5L,ppo_state_offline,81,32.4,,-0.12441438221767377,-2.154129247826981,0.08544288589832895,,1.5944204387891037,,0.08544288589832895,,1.5944204387891037,,-2.2785436300446547,1.6798633246874326,1.6798633246874326 +illusion,illusion_1.5L,ppo_state_offline,82,32.800000000000004,,0.5922569956651368,-0.5348717149917859,-0.4067387226548056,,0.3958956480319704,,-0.4067387226548056,,0.3958956480319704,,0.057385280673350914,-0.01084307462283518,-0.01084307462283518 +illusion,illusion_1.5L,ppo_state_offline,83,33.2,,1.093466329202505,-4.391276249159068,-0.7509495054699723,,3.2502880739822406,,-0.7509495054699723,,3.2502880739822406,,-3.297809919956563,2.499338568512268,2.499338568512268 +illusion,illusion_1.5L,ppo_state_offline,84,33.6,,1.054998049766485,-5.324958479248102,-0.7245310098590205,,3.941371040563695,,-0.7245310098590205,,3.941371040563695,,-4.269960429481618,3.2168400307046743,3.2168400307046743 +illusion,illusion_1.5L,ppo_state_offline,85,34.0,,0.2629872874624145,-0.3034877866259233,-0.1806092864412429,,0.2246323568594451,,-0.1806092864412429,,0.2246323568594451,,-0.040500499163508785,0.04402307041820219,0.04402307041820219 +illusion,illusion_1.5L,ppo_state_offline,86,34.4,,0.8279768513843015,2.330469511942413,-0.56862181347742,,-1.724942096935076,,-0.56862181347742,,-1.724942096935076,,3.158446363326714,-2.293563910412496,-2.293563910412496 +illusion,illusion_1.5L,ppo_state_offline,87,34.800000000000004,,0.5741785799705578,-1.6451142391694262,-0.39432318048129755,,1.217663132200969,,-0.39432318048129755,,1.217663132200969,,-1.0709356591988684,0.8233399517196714,0.8233399517196714 +illusion,illusion_1.5L,ppo_state_offline,88,35.2,,-0.017962524325164105,-3.534741502673681,0.012335952556318941,,2.6163073099649483,,0.012335952556318941,,2.6163073099649483,,-3.552704026998845,2.6286432625212672,2.6286432625212672 +illusion,illusion_1.5L,ppo_state_offline,89,35.6,,0.13524884306732143,1.1800993368514698,-0.09288356587153908,,-0.8734733555916039,,-0.09288356587153908,,-0.8734733555916039,,1.3153481799187912,-0.966356921463143,-0.966356921463143 +illusion,illusion_1.5L,ppo_state_offline,90,36.0,,0.13374629551450382,4.911948159792492,-0.09185167553198338,,-3.635673462094284,,-0.09185167553198338,,-3.635673462094284,,5.045694455306996,-3.7275251376262672,-3.7275251376262672 +illusion,illusion_1.5L,ppo_state_offline,91,36.4,,0.6566209357910205,1.9872672164281862,-0.4509413356816581,,-1.470914277964033,,-0.4509413356816581,,-1.470914277964033,,2.6438881522192066,-1.921855613645691,-1.921855613645691 +illusion,illusion_1.5L,ppo_state_offline,92,36.800000000000004,,-0.4420483842864268,-1.7952372890754096,0.3035813785101157,,1.3287796120245055,,0.3035813785101157,,1.3287796120245055,,-2.2372856733618365,1.6323609905346212,1.6323609905346212 +illusion,illusion_1.5L,ppo_state_offline,93,37.2,,-0.6465067025894613,1.4867818240982797,0.44399527962297886,,-1.100470331923577,,0.44399527962297886,,-1.100470331923577,,0.8402751215088184,-0.656475052300598,-0.656475052300598 +illusion,illusion_1.5L,ppo_state_offline,94,37.6,,-1.0224819085346708,6.661458750144594,0.7022002077796996,,-4.930607573382777,,0.7022002077796996,,-4.930607573382777,,5.6389768416099235,-4.228407365603077,-4.228407365603077 +illusion,illusion_1.5L,ppo_state_offline,95,38.0,,-0.3508359225049031,3.094893775293956,0.2409402607744741,,-2.290745504796283,,0.2409402607744741,,-2.290745504796283,,2.744057852789053,-2.0498052440218086,-2.0498052440218086 +illusion,illusion_1.5L,ppo_state_offline,96,38.400000000000006,,-1.3274733317461893,-2.60663128230401,0.911656276354132,,1.9293485741791374,,0.911656276354132,,1.9293485741791374,,-3.9341046140501996,2.8410048505332695,2.8410048505332695 +illusion,illusion_1.5L,ppo_state_offline,97,38.800000000000004,,-0.7629936898497277,-0.5058667534679254,0.5239939436335868,,0.37442706460013303,,0.5239939436335868,,0.37442706460013303,,-1.2688604433176531,0.8984210082337198,0.8984210082337198 +illusion,illusion_1.5L,ppo_state_offline,98,39.2,,-1.018952644207737,3.0682342179216153,0.6997764483733019,,-2.2710129176238047,,0.6997764483733019,,-2.2710129176238047,,2.0492815737138783,-1.5712364692505028,-1.5712364692505028 +illusion,illusion_1.5L,ppo_state_offline,99,39.6,,-0.7367025099908519,0.48411439925072364,0.5059381992672793,,-0.35832663878275306,,0.5059381992672793,,-0.35832663878275306,,-0.2525881107401282,0.14761156048452628,0.14761156048452628 +illusion,illusion_1.5L,ppo_state_offline,100,40.0,,-0.09216021927415147,-4.061653323949954,0.06329200016465372,,3.0063112886630545,,0.06329200016465372,,3.0063112886630545,,-4.153813543224105,3.0696032888277083,3.0696032888277083 +illusion,illusion_1.5L,ppo_state_offline,101,40.400000000000006,,-0.2570781034905424,-2.7256962182521227,0.17655109218057016,,2.017476790074396,,0.17655109218057016,,2.017476790074396,,-2.982774321742665,2.194027882254966,2.194027882254966 +illusion,illusion_1.5L,ppo_state_offline,102,40.800000000000004,,-0.31954014928973473,1.281446752764139,0.21944755926955314,,-0.9484876062511812,,0.21944755926955314,,-0.9484876062511812,,0.9619066034744044,-0.729040046981628,-0.729040046981628 +illusion,illusion_1.5L,ppo_state_offline,103,41.2,,-0.0734468464620076,-1.0470647207386754,0.05044039451054661,,0.7750052106505912,,0.05044039451054661,,0.7750052106505912,,-1.120511567200683,0.8254456051611379,0.8254456051611379 +illusion,illusion_1.5L,ppo_state_offline,104,41.6,,0.4074221695524034,-6.55880581504647,-0.2798014612539746,,4.854627017440163,,-0.2798014612539746,,4.854627017440163,,-6.151383645494066,4.574825556186188,4.574825556186188 +illusion,illusion_1.5L,ppo_state_offline,105,42.0,,0.4364245695214441,-5.07385080452121,-0.29971916455452136,,3.7555088369260785,,-0.29971916455452136,,3.7555088369260785,,-4.637426234999766,3.4557896723715573,3.4557896723715573 +illusion,illusion_1.5L,ppo_state_offline,106,42.400000000000006,,0.13759048666364573,-0.5749719673065721,-0.09449171424674252,,0.4255766256036702,,-0.09449171424674252,,0.4255766256036702,,-0.43738148064292637,0.3310849113569277,0.3310849113569277 +illusion,illusion_1.5L,ppo_state_offline,107,42.800000000000004,,0.408045218565955,-1.3574240278048293,-0.2802293467188625,,1.004723656307407,,-0.2802293467188625,,1.004723656307407,,-0.9493788092388743,0.7244943095885443,0.7244943095885443 +illusion,illusion_1.5L,ppo_state_offline,108,43.2,,0.8204989873533952,-6.669313015052668,-0.5634863116827957,,4.936421059511212,,-0.5634863116827957,,4.936421059511212,,-5.848814027699273,4.372934747828417,4.372934747828417 +illusion,illusion_1.5L,ppo_state_offline,109,43.6,,0.5976858152269021,-4.934034794936989,-0.41046702160312953,,3.6520213124073457,,-0.41046702160312953,,3.6520213124073457,,-4.3363489797100865,3.241554290804216,3.241554290804216 +illusion,illusion_1.5L,ppo_state_offline,110,44.0,,0.3046920194534706,0.896738464560361,-0.20925044989369454,,-0.6637383237731506,,-0.20925044989369454,,-0.6637383237731506,,1.2014304840138315,-0.8729887736668451,-0.8729887736668451 +illusion,illusion_1.5L,ppo_state_offline,111,44.400000000000006,,0.42534110171109035,0.3293862217467108,-0.2921074764313509,,-0.24380158467197877,,-0.2921074764313509,,-0.24380158467197877,,0.7547273234578011,-0.5359090611033297,-0.5359090611033297 +illusion,illusion_1.5L,ppo_state_offline,112,44.800000000000004,,0.541901451397867,-3.5871665578878225,-0.37215652286017936,,2.655110728850976,,-0.37215652286017936,,2.655110728850976,,-3.045265106489955,2.2829542059907966,2.2829542059907966 +illusion,illusion_1.5L,ppo_state_offline,113,45.2,,0.5692001419141517,-2.958560031445754,-0.3909041857700496,,2.1898354466335745,,-0.3909041857700496,,2.1898354466335745,,-2.389359889531602,1.798931260863525,1.798931260863525 +illusion,illusion_1.5L,ppo_state_offline,114,45.6,,0.021589817865492845,1.84074588053421,-0.014827034556338931,,-1.3624636764489642,,-0.014827034556338931,,-1.3624636764489642,,1.8623356983997028,-1.377290711005303,-1.377290711005303 +illusion,illusion_1.5L,ppo_state_offline,115,46.0,,0.4442299064127155,3.1622094881246685,-0.3050795617812029,,-2.3405705320072623,,-0.3050795617812029,,-2.3405705320072623,,3.606439394537384,-2.6456500937884653,-2.6456500937884653 +illusion,illusion_1.5L,ppo_state_offline,116,46.400000000000006,,0.7094661243759224,-0.4932699774190413,-0.487233324903898,,0.36510331709730764,,-0.487233324903898,,0.36510331709730764,,0.2161961469568811,-0.12213000780659033,-0.12213000780659033 +illusion,illusion_1.5L,ppo_state_offline,117,46.800000000000004,,-0.006777412341268472,-1.178341019774742,0.004654459227613852,,0.8721719031890449,,0.004654459227613852,,0.8721719031890449,,-1.1851184321160104,0.8768263624166588,0.8768263624166588 +illusion,illusion_1.5L,ppo_state_offline,118,47.2,,-0.3787819035321949,3.443509937739617,0.2601324572526443,,-2.54878050211889,,0.2601324572526443,,-2.54878050211889,,3.0647280342074223,-2.2886480448662456,-2.2886480448662456 +illusion,illusion_1.5L,ppo_state_offline,119,47.6,,-0.3306814564624387,5.779425281645067,0.2270989691833207,,-4.277753436942099,,0.2270989691833207,,-4.277753436942099,,5.448743825182628,-4.050654467758778,-4.050654467758778 +illusion,illusion_1.5L,ppo_state_offline,120,48.0,,0.36315506875134845,1.0549593625287736,-0.2494005640636732,,-0.7808485825094289,,-0.2494005640636732,,-0.7808485825094289,,1.4181144312801222,-1.030249146573102,-1.030249146573102 +illusion,illusion_1.5L,ppo_state_offline,121,48.400000000000006,,-0.8702070284649432,-1.8897582480322503,0.5976238318731271,,1.3987411284965372,,0.5976238318731271,,1.3987411284965372,,-2.7599652764971934,1.9963649603696643,1.9963649603696643 +illusion,illusion_1.5L,ppo_state_offline,122,48.800000000000004,,-0.6709538274839961,0.8128359045601791,0.46078459984201375,,-0.6016362207234063,,0.46078459984201375,,-0.6016362207234063,,0.14188207707618294,-0.14085162088139253,-0.14085162088139253 +illusion,illusion_1.5L,ppo_state_offline,123,49.2,,-0.8412214274283498,3.7715125002189196,0.5777176654161729,,-2.7915579446143948,,0.5777176654161729,,-2.7915579446143948,,2.9302910727905696,-2.213840279198222,-2.213840279198222 +illusion,illusion_1.5L,ppo_state_offline,124,49.6,,0.06763632963767399,0.1395367361502189,-0.04644996095148071,,-0.10328081488344422,,-0.04644996095148071,,-0.10328081488344422,,0.20717306578789288,-0.14973077583492495,-0.14973077583492495 +illusion,illusion_1.5L,ppo_state_offline,125,50.0,,-0.48542407844420243,-3.6581231599196493,0.33337009281003815,,2.707630630644564,,0.33337009281003815,,2.707630630644564,,-4.143547238363852,3.0410007234546024,3.0410007234546024 +illusion,illusion_1.5L,ppo_state_offline,126,50.400000000000006,,-0.6360094962570467,-1.4282093885959277,0.4367862127375886,,1.05711681058366,,0.4367862127375886,,1.05711681058366,,-2.0642188848529743,1.4939030233212485,1.4939030233212485 +illusion,illusion_1.5L,ppo_state_offline,127,50.800000000000004,,-0.3000897498970551,2.26388755280706,0.2060897928573226,,-1.675660171717674,,0.2060897928573226,,-1.675660171717674,,1.963797802910005,-1.4695703788603514,-1.4695703788603514 +illusion,illusion_1.5L,ppo_state_offline,128,51.2,,-0.08413160543263125,-1.527786951179862,0.05777826514338777,,1.1308210700605632,,0.05777826514338777,,1.1308210700605632,,-1.6119185566124934,1.188599335203951,1.188599335203951 +illusion,illusion_1.5L,ppo_state_offline,129,51.6,,-0.10560064110027519,-6.35082786047911,0.07252235125465627,,4.700688110610749,,0.07252235125465627,,4.700688110610749,,-6.456428501579385,4.773210461865406,4.773210461865406 +illusion,illusion_1.5L,ppo_state_offline,130,52.0,,-0.2963040360444069,-4.146032355191882,0.2034899140411451,,3.0687660611206815,,0.2034899140411451,,3.0687660611206815,,-4.442336391236289,3.2722559751618268,3.2722559751618268 +illusion,illusion_1.5L,ppo_state_offline,131,52.400000000000006,,0.010415550762037871,0.1276907778361212,-0.007152989063370798,,-0.09451279965311665,,-0.007152989063370798,,-0.09451279965311665,,0.13810632859815908,-0.10166578871648745,-0.10166578871648745 +illusion,illusion_1.5L,ppo_state_offline,132,52.800000000000004,,0.11284459594520653,-2.2184650025611448,-0.07749721345495414,,1.6420397923615744,,-0.07749721345495414,,1.6420397923615744,,-2.1056204066159383,1.5645425789066203,1.5645425789066203 +illusion,illusion_1.5L,ppo_state_offline,133,53.2,,0.6367241951425576,-7.610312112977118,-0.4372770397162536,,5.6329197473807335,,-0.4372770397162536,,5.6329197473807335,,-6.973587917834561,5.19564270766448,5.19564270766448 +illusion,illusion_1.5L,ppo_state_offline,134,53.6,,0.43171172471347685,-4.992289502831983,-0.2964825688008314,,3.6951396615115897,,-0.2964825688008314,,3.6951396615115897,,-4.560577778118506,3.398657092710758,3.398657092710758 +illusion,illusion_1.5L,ppo_state_offline,135,54.0,,0.4770020718808151,0.8886809332953103,-0.32758619119831395,,-0.6577743861179988,,-0.32758619119831395,,-0.6577743861179988,,1.3656830051761255,-0.9853605773163128,-0.9853605773163128 +illusion,illusion_1.5L,ppo_state_offline,136,54.400000000000006,,0.6300830880632983,-0.17473013079658,-0.4327161895613336,,0.12932988681872126,,-0.4327161895613336,,0.12932988681872126,,0.45535295726671826,-0.30338630274261236,-0.30338630274261236 +illusion,illusion_1.5L,ppo_state_offline,137,54.800000000000004,,0.784947768111198,-3.5464493564292474,-0.5390711378490906,,2.6249731044343654,,-0.5390711378490906,,2.6249731044343654,,-2.7615015883180494,2.0859019665852747,2.0859019665852747 +illusion,illusion_1.5L,ppo_state_offline,138,55.2,,1.0021420163011425,-1.5751689818968766,-0.6882315728010437,,1.1658917967974805,,-0.6882315728010437,,1.1658917967974805,,-0.5730269655957341,0.4776602239964367,0.4776602239964367 +illusion,illusion_1.5L,ppo_state_offline,139,55.6,,0.7990987422508994,2.964233704385928,-0.5487894682158586,,-2.194034925428983,,-0.5487894682158586,,-2.194034925428983,,3.763332446636827,-2.7428243936448418,-2.7428243936448418 +illusion,illusion_1.5L,ppo_state_offline,140,56.0,,1.095116239542487,3.011316994243679,-0.7520825987539538,,-2.228884533339167,,-0.7520825987539538,,-2.228884533339167,,4.1064332337861655,-2.9809671320931206,-2.9809671320931206 +illusion,illusion_1.5L,ppo_state_offline,141,56.400000000000006,,0.6453380072384444,-0.5193606834066115,-0.44319266579532557,,0.38441485791176133,,-0.44319266579532557,,0.38441485791176133,,0.1259773238318329,-0.05877780788356424,-0.05877780788356424 +illusion,illusion_1.5L,ppo_state_offline,142,56.800000000000004,,0.10560021581084614,0.09602589908193662,-0.07252205918266659,,-0.07107542702174803,,-0.07252205918266659,,-0.07107542702174803,,0.20162611489278276,-0.14359748620441462,-0.14359748620441462 +illusion,illusion_1.5L,ppo_state_offline,143,57.2,,-0.6326471580310133,4.663686574571151,0.4344770915871421,,-3.4519178466675893,,0.4344770915871421,,-3.4519178466675893,,4.031039416540137,-3.017440755080447,-3.017440755080447 +illusion,illusion_1.5L,ppo_state_offline,144,57.6,,-0.585789831962357,5.137080521094206,0.4022973299436666,,-3.8023095349550045,,0.4022973299436666,,-3.8023095349550045,,4.551290689131849,-3.400012205011338,-3.400012205011338 +illusion,illusion_1.5L,ppo_state_offline,145,58.0,,-0.0323645255503596,0.48850442381653997,0.02222667841499838,,-0.36157600039909277,,0.02222667841499838,,-0.36157600039909277,,0.45613989826618034,-0.3393493219840944,-0.3393493219840944 +illusion,illusion_1.5L,ppo_state_offline,146,58.400000000000006,,-0.9608944704463103,-0.8416794787252337,0.659904386737503,,0.622985350179257,,0.659904386737503,,0.622985350179257,,-1.802573949171544,1.28288973691676,1.28288973691676 +illusion,illusion_1.5L,ppo_state_offline,147,58.800000000000004,,-1.7669387206853084,1.972532057875126,1.2134637556348984,,-1.4600077652793846,,1.2134637556348984,,-1.4600077652793846,,0.20559333718981754,-0.2465440096444862,-0.2465440096444862 +illusion,illusion_1.5L,ppo_state_offline,148,59.2,,-1.8333591478453415,2.3470776290765203,1.2590786827678708,,-1.737234916149678,,1.2590786827678708,,-1.737234916149678,,0.5137184812311788,-0.47815623338180724,-0.47815623338180724 +illusion,illusion_1.5L,ppo_state_offline,149,59.6,,-0.9235483171688267,-2.2345734557802004,0.634256523071334,,1.653962775662437,,0.634256523071334,,1.653962775662437,,-3.158121772949027,2.288219298733771,2.288219298733771 +illusion,illusion_1.5L,ppo_state_offline,150,60.0,,-1.1081921883279187,-3.9772824642198645,0.7610626441487967,,2.9438625645080085,,0.7610626441487967,,2.9438625645080085,,-5.085474652547783,3.704925208656805,3.704925208656805 +illusion,illusion_1.5L,ppo_state_offline,151,60.400000000000006,,-0.9486463475345156,-0.9810360811071356,0.6514928594705812,,0.7261328355690274,,0.6514928594705812,,0.7261328355690274,,-1.9296824286416512,1.3776256950396086,1.3776256950396086 +illusion,illusion_1.5L,ppo_state_offline,152,60.800000000000004,,-0.3339432137385029,0.5044903944849906,0.22933901530820677,,-0.3734083258704509,,0.22933901530820677,,-0.3734083258704509,,0.17054718074648767,-0.14406931056224415,-0.14406931056224415 +illusion,illusion_1.5L,ppo_state_offline,153,61.2,,0.3171502353432138,-3.6019569943150826,-0.2178062607235205,,2.6660581565236767,,-0.2178062607235205,,2.6660581565236767,,-3.284806758971869,2.4482518958001562,2.4482518958001562 +illusion,illusion_1.5L,ppo_state_offline,154,61.6,,0.47956656713795925,-6.096783728939279,-0.3293473852961121,,4.5126524316513095,,-0.3293473852961121,,4.5126524316513095,,-5.61721716180132,4.183305046355198,4.183305046355198 +illusion,illusion_1.5L,ppo_state_offline,155,62.0,,-0.021980020916642053,-3.2841313288145892,0.015095010606874555,,2.4308133412198005,,0.015095010606874555,,2.4308133412198005,,-3.306111349731231,2.445908351826675,2.445908351826675 +illusion,illusion_1.5L,ppo_state_offline,156,62.400000000000006,,0.7334101318758964,-0.42529393433022195,-0.503677123959136,,0.31478953367035906,,-0.503677123959136,,0.31478953367035906,,0.3081161975456745,-0.18888759028877694,-0.18888759028877694 +illusion,illusion_1.5L,ppo_state_offline,157,62.800000000000004,,1.6226709773409345,-3.594736742590225,-1.1143863651141126,,2.6607139475190738,,-1.1143863651141126,,2.6607139475190738,,-1.9720657652492906,1.5463275824049612,1.5463275824049612 +illusion,illusion_1.5L,ppo_state_offline,158,63.2,,1.9092082416473124,-7.043508172599351,-1.3111688459121509,,5.213388844935506,,-1.3111688459121509,,5.213388844935506,,-5.1342999309520385,3.902219999023355,3.902219999023355 +illusion,illusion_1.5L,ppo_state_offline,159,63.6,,1.3842881718618014,-2.807572123147123,-0.9506744655280881,,2.0780788251382765,,-0.9506744655280881,,2.0780788251382765,,-1.4232839512853217,1.1274043596101884,1.1274043596101884 +illusion,illusion_1.5L,ppo_state_offline,160,64.0,,1.6974071950294507,2.7672678233749637,-1.1657122488793856,,-2.048246817893289,,-1.1657122488793856,,-2.048246817893289,,4.464675018404415,-3.2139590667726745,-3.2139590667726745 +illusion,illusion_1.5L,ppo_state_offline,161,64.4,,1.3155767105475005,0.02341495082012388,-0.9034861465866847,,-0.017331028859344375,,-0.9034861465866847,,-0.017331028859344375,,1.3389916613676243,-0.920817175446029,-0.920817175446029 +illusion,illusion_1.5L,ppo_state_offline,162,64.8,,0.10305018039428955,-4.651086103316546,-0.0707707955325177,,3.4425913640867583,,-0.0707707955325177,,3.4425913640867583,,-4.5480359229222564,3.3718205685542406,3.3718205685542406 +illusion,illusion_1.5L,ppo_state_offline,163,65.2,,0.9464199573734625,-0.19544745188287063,-0.6499638626045824,,0.14466421283943706,,-0.6499638626045824,,0.14466421283943706,,0.7509725054905919,-0.5052996497651453,-0.5052996497651453 +illusion,illusion_1.5L,ppo_state_offline,164,65.60000000000001,,0.4401143806078425,5.165469795251841,-0.30225318113702493,,-3.8233224054710058,,-0.30225318113702493,,-3.8233224054710058,,5.605584175859684,-4.125575586608031,-4.125575586608031 +illusion,illusion_1.5L,ppo_state_offline,165,66.0,,0.31906233661620215,3.1732153128778946,-0.21911941638914248,,-2.348716706128419,,-0.21911941638914248,,-2.348716706128419,,3.492277649494097,-2.567836122517561,-2.567836122517561 +illusion,illusion_1.5L,ppo_state_offline,166,66.4,,-0.2546741549928629,-0.8476477466841068,0.17490015525887795,,0.627402879177295,,0.17490015525887795,,0.627402879177295,,-1.1023219016769696,0.8023030344361729,0.8023030344361729 +illusion,illusion_1.5L,ppo_state_offline,167,66.8,,-0.75532487086518,0.7587936110178113,0.518727301515594,,-0.5616357715999782,,0.518727301515594,,-0.5616357715999782,,0.003468740152631322,-0.042908470084384254,-0.042908470084384254 +illusion,illusion_1.5L,ppo_state_offline,168,67.2,,-2.0084080641957387,5.60809127022349,1.379295367686059,,-4.150937253583621,,1.379295367686059,,-4.150937253583621,,3.599683206027751,-2.7716418858975613,-2.7716418858975613 +illusion,illusion_1.5L,ppo_state_offline,169,67.60000000000001,,-1.8752367599893045,3.983387304578799,1.2878385734841291,,-2.9483811802102227,,1.2878385734841291,,-2.9483811802102227,,2.1081505445894946,-1.6605426067260936,-1.6605426067260936 +illusion,illusion_1.5L,ppo_state_offline,170,68.0,,-1.4537071021413195,-1.8906787448069726,0.9983486462243317,,1.3994224519932295,,0.9983486462243317,,1.3994224519932295,,-3.344385846948292,2.3977710982175613,2.3977710982175613 +illusion,illusion_1.5L,ppo_state_offline,171,68.4,,-1.4883273628233362,-0.8008539446501556,1.0221244744726172,,0.5927675412806268,,1.0221244744726172,,0.5927675412806268,,-2.2891813074734917,1.614892015753244,1.614892015753244 +illusion,illusion_1.5L,ppo_state_offline,172,68.8,,-1.347790258350549,3.7337146915338564,0.925609139445345,,-2.7635811652406876,,0.925609139445345,,-2.7635811652406876,,2.385924433183307,-1.8379720257953427,-1.8379720257953427 +illusion,illusion_1.5L,ppo_state_offline,173,69.2,,-1.2814863604940745,1.7592914093453391,0.8800742400375462,,-1.302173573696167,,0.8800742400375462,,-1.302173573696167,,0.4778050488512646,-0.42209933365862085,-0.42209933365862085 +illusion,illusion_1.5L,ppo_state_offline,174,69.60000000000001,,-0.5736293186729456,-3.488657059968866,0.3939459695066199,,2.582197018099739,,0.3939459695066199,,2.582197018099739,,-4.0622863786418115,2.9761429876063588,2.9761429876063588 +illusion,illusion_1.5L,ppo_state_offline,175,70.0,,-0.5094786611957283,-3.408556295851437,0.3498898305825942,,2.5229088878260852,,0.3498898305825942,,2.5229088878260852,,-3.9180349570471655,2.8727987184086796,2.8727987184086796 +illusion,illusion_1.5L,ppo_state_offline,176,70.4,,-0.491369624662258,-0.6674778674948842,0.3374532592258289,,0.4940466573427668,,0.3374532592258289,,0.4940466573427668,,-1.1588474921571423,0.8314999165685957,0.8314999165685957 +illusion,illusion_1.5L,ppo_state_offline,177,70.8,,0.31420319224464327,-1.0417684995438539,-0.21578234787100103,,0.771085110067077,,-0.21578234787100103,,0.771085110067077,,-0.7275653072992105,0.555302762196076,0.555302762196076 +illusion,illusion_1.5L,ppo_state_offline,178,71.2,,1.5798506048551348,-5.0539502891320325,-1.084979023814721,,3.740779085444848,,-1.084979023814721,,3.740779085444848,,-3.4740996842768976,2.655800061630127,2.655800061630127 +illusion,illusion_1.5L,ppo_state_offline,179,71.60000000000001,,1.3793016533062434,-5.161883943586343,-0.9472499214490361,,3.8206682679851967,,-0.9472499214490361,,3.8206682679851967,,-3.782582290280099,2.8734183465361607,2.8734183465361607 +illusion,illusion_1.5L,ppo_state_offline,180,72.0,,0.548566374685153,-1.1488948566962611,-0.37673372904652164,,0.8503767558906141,,-0.37673372904652164,,0.8503767558906141,,-0.6003284820111081,0.4736430268440925,0.4736430268440925 +illusion,illusion_1.5L,ppo_state_offline,181,72.4,,1.068072510038915,-1.136033978586457,-0.7335100330018994,,0.8408575281378077,,-0.7335100330018994,,0.8408575281378077,,-0.06796146854754204,0.10734749513590824,0.10734749513590824 +illusion,illusion_1.5L,ppo_state_offline,182,72.8,,1.637504647336611,-6.211565590991223,-1.124573544042322,,4.597610447537546,,-1.124573544042322,,4.597610447537546,,-4.5740609436546125,3.473036903495224,3.473036903495224 +illusion,illusion_1.5L,ppo_state_offline,183,73.2,,1.8391751934322527,-5.497659055855337,-1.2630729132628025,,4.0691987135833205,,-1.2630729132628025,,4.0691987135833205,,-3.6584838624230844,2.806125800320518,2.806125800320518 +illusion,illusion_1.5L,ppo_state_offline,184,73.60000000000001,,0.8649706523698211,0.05411595731820393,-0.5940276955001353,,-0.04005497279228873,,-0.5940276955001353,,-0.04005497279228873,,0.919086609688025,-0.6340826682924241,-0.6340826682924241 +illusion,illusion_1.5L,ppo_state_offline,185,74.0,,0.9171600446551348,1.8515606361135708,-0.6298693097142816,,-1.3704684270244627,,-0.6298693097142816,,-1.3704684270244627,,2.7687206807687055,-2.0003377367387443,-2.0003377367387443 +illusion,illusion_1.5L,ppo_state_offline,186,74.4,,1.092712503689522,-1.6148285734188552,-0.7504318078682564,,1.1952466107579047,,-0.7504318078682564,,1.1952466107579047,,-0.5221160697293332,0.44481480288964836,0.44481480288964836 +illusion,illusion_1.5L,ppo_state_offline,187,74.8,,0.4461564675262914,-2.958070702089792,-0.30640264789447413,,2.189473260043688,,-0.30640264789447413,,2.189473260043688,,-2.5119142345635006,1.8830706121492138,1.8830706121492138 +illusion,illusion_1.5L,ppo_state_offline,188,75.2,,-0.14092581901093476,1.7053119643425507,0.09678228882584403,,-1.2622196431352415,,0.09678228882584403,,-1.2622196431352415,,1.564386145331616,-1.1654373543093974,-1.1654373543093974 +illusion,illusion_1.5L,ppo_state_offline,189,75.60000000000001,,-0.15880690041043666,4.757073495921849,0.10906230959613836,,-3.5210399832651715,,0.10906230959613836,,-3.5210399832651715,,4.5982665955114115,-3.4119776736690333,-3.4119776736690333 +illusion,illusion_1.5L,ppo_state_offline,190,76.0,,0.49121971013851945,1.0759748086067078,-0.3373503038494651,,-0.7964035715105436,,-0.3373503038494651,,-0.7964035715105436,,1.5671945187452272,-1.1337538753600087,-1.1337538753600087 +illusion,illusion_1.5L,ppo_state_offline,191,76.4,,-0.701028594748375,-1.8322679370020098,0.48143876266455027,,1.3561885625205514,,0.48143876266455027,,1.3561885625205514,,-2.533296531750385,1.8376273251851016,1.8376273251851016 +illusion,illusion_1.5L,ppo_state_offline,192,76.80000000000001,,-0.7956450731199785,2.405845219508657,0.5464176246056274,,-1.780732885186544,,0.5464176246056274,,-1.780732885186544,,1.6102001463886784,-1.2343152605809167,-1.2343152605809167 +illusion,illusion_1.5L,ppo_state_offline,193,77.2,,-1.0963661651744516,6.879306929658245,0.7529409983316369,,-5.091852118165757,,0.7529409983316369,,-5.091852118165757,,5.782940764483794,-4.33891111983412,-4.33891111983412 +illusion,illusion_1.5L,ppo_state_offline,194,77.60000000000001,,-0.23310879126954018,2.7452511267582587,0.16008991484194587,,-2.0319507339346754,,0.16008991484194587,,-2.0319507339346754,,2.5121423354887185,-1.8718608190927295,-1.8718608190927295 +illusion,illusion_1.5L,ppo_state_offline,195,78.0,,-1.375582497249241,-2.7547702170340873,0.9446957518992442,,2.0389964727684853,,0.9446957518992442,,2.0389964727684853,,-4.130352714283328,2.9836922246677293,2.9836922246677293 +illusion,illusion_1.5L,ppo_state_offline,196,78.4,,-0.6589283435883067,-0.24903445402116156,0.4525259722616919,,0.18432766922159977,,0.4525259722616919,,0.18432766922159977,,-0.9079627976094682,0.6368536414832917,0.6368536414832917 +illusion,illusion_1.5L,ppo_state_offline,197,78.80000000000001,,-0.9408846028097214,3.996194707353779,0.6461623996228424,,-2.9578608271593705,,0.6461623996228424,,-2.9578608271593705,,3.055310104544058,-2.311698427536528,-2.311698427536528 +illusion,illusion_1.5L,ppo_state_offline,198,79.2,,-0.7089045296848678,0.8188247214679395,0.4868476438415194,,-0.6060689594235245,,0.4868476438415194,,-0.6060689594235245,,0.10992019178307166,-0.11922131558200505,-0.11922131558200505 diff --git a/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_sr_closed_loop_400.csv b/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_sr_closed_loop_400.csv new file mode 100644 index 0000000..f35a3cb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-plotting-package-20260721/term_contributions_sr_closed_loop_400.csv @@ -0,0 +1,2794 @@ +objective,scene,source,state_step,target_action_step,t_D,term_front_t0_0_3813914338074549_Cd_rear_a,term_front_t0_1_8266041890847688_Cd_rear_a,term_front_t1_2_064492712013321_Cl_F,term_lower_t0_1_2544396437730243_Cd_rear_a,term_lower_t0_1_3077817865589976_Cl_rear_s,term_lower_t1_1_5280742226055937_Cl_F,term_lower_t1_3_431208680510616,term_upper_t0_1_2544396437730243_Cd_rear_a,term_upper_t0_1_3077817865589976_Cl_rear_s,term_upper_t1_1_5280742226055937_Cl_F,term_upper_t1_3_431208680510616,predicted_alpha_front,predicted_alpha_upper,predicted_alpha_lower,target_alpha_front,target_alpha_upper,target_alpha_lower,residual_alpha_front,residual_alpha_upper,residual_alpha_lower +karman,karman_re50,sr_closed_loop_400,0,1,0.0,0.829568915196359,,,,-0.6909433744396271,,3.431208680510616,,-0.6909433744396271,,-3.431208680510616,0.829568915196359,-4.122152054950243,2.740265306070989,0.8295689151963589,-4.122152054950243,2.740265306070989,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,1,2,0.4,0.6267152346185917,,,,-0.7149255955098539,,3.431208680510616,,-0.7149255955098539,,-3.431208680510616,0.6267152346185917,-4.1461342760204705,2.716283085000762,0.6267152346185917,-4.1461342760204705,2.716283085000762,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,2,3,0.8,0.4572095383126281,,,,-0.23562342274815531,,3.431208680510616,,-0.23562342274815531,,-3.431208680510616,0.4572095383126281,-3.6668321032587716,3.1955852577624606,0.45720953831262817,-3.666832103258771,3.1955852577624606,5.551115123125783e-17,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,3,4,1.2000000000000002,0.09667411850091466,,,,0.3718026048261043,,3.431208680510616,,0.3718026048261043,,-3.431208680510616,0.09667411850091466,-3.059406075684512,3.80301128533672,0.09667411850091466,-3.059406075684512,3.80301128533672,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,4,5,1.6,-0.3443940366547387,,,,0.6373546665679701,,3.431208680510616,,0.6373546665679701,,-3.431208680510616,-0.3443940366547387,-2.7938540139426458,4.0685633470785865,-0.3443940366547387,-2.7938540139426458,4.0685633470785865,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,5,6,2.0,-0.7793164149932601,,,,0.7929144392758445,,3.431208680510616,,0.7929144392758445,,-3.431208680510616,-0.7793164149932601,-2.638294241234772,4.22412311978646,-0.7793164149932601,-2.638294241234772,4.22412311978646,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,6,7,2.4000000000000004,-1.186617107605167,,,,0.969916972483417,,3.431208680510616,,0.969916972483417,,-3.431208680510616,-1.186617107605167,-2.461291708027199,4.4011256529940335,-1.186617107605167,-2.461291708027199,4.4011256529940335,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,7,8,2.8000000000000003,-1.5157435492950229,,,,1.0568531518770694,,3.431208680510616,,1.0568531518770694,,-3.431208680510616,-1.5157435492950229,-2.3743555286335467,4.488061832387686,-1.5157435492950229,-2.3743555286335467,4.488061832387686,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,8,9,3.2,-1.7126420392250967,,,,0.9679603089790745,,3.431208680510616,,0.9679603089790745,,-3.431208680510616,-1.7126420392250967,-2.4632483715315416,4.399168989489691,-1.7126420392250967,-2.4632483715315416,4.399168989489691,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,9,10,3.6,-1.7407936477423445,,,,0.7845815678485816,,3.431208680510616,,0.7845815678485816,,-3.431208680510616,-1.7407936477423445,-2.6466271126620344,4.215790248359197,-1.7407936477423442,-2.6466271126620344,4.215790248359197,2.220446049250313e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,10,11,4.0,-1.6039360837580907,,,,0.5711510208417908,,3.431208680510616,,0.5711510208417908,,-3.431208680510616,-1.6039360837580907,-2.860057659668825,4.002359701352407,-1.6039360837580907,-2.860057659668825,4.002359701352407,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,11,12,4.4,-1.3413460821070564,,,,0.35177344692816614,,3.431208680510616,,0.35177344692816614,,-3.431208680510616,-1.3413460821070564,-3.07943523358245,3.7829821274387823,-1.3413460821070564,-3.07943523358245,3.7829821274387823,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,12,13,4.800000000000001,-1.0009084345106494,,,,0.08974100445905095,,3.431208680510616,,0.08974100445905095,,-3.431208680510616,-1.0009084345106494,-3.341467676051565,3.520949684969667,-1.0009084345106494,-3.3414676760515656,3.5209496849696675,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,13,14,5.2,-0.6175836818132637,,,,-0.20285144049214304,,3.431208680510616,,-0.20285144049214304,,-3.431208680510616,-0.6175836818132637,-3.634060121002759,3.228357240018473,-0.6175836818132637,-3.634060121002759,3.228357240018473,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,14,15,5.6000000000000005,-0.21192361477662477,,,,-0.47497138766641933,,3.431208680510616,,-0.47497138766641933,,-3.431208680510616,-0.21192361477662477,-3.9061800681770356,2.9562372928441967,-0.21192361477662475,-3.9061800681770356,2.9562372928441967,2.7755575615628914e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,15,16,6.0,0.19858457258224302,,,,-0.7112206930527907,,3.431208680510616,,-0.7112206930527907,,-3.431208680510616,0.19858457258224302,-4.142429373563407,2.7199879874578254,0.19858457258224302,-4.142429373563407,2.7199879874578254,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,16,17,6.4,0.5990288472739423,,,,-0.8898848373315112,,3.431208680510616,,-0.8898848373315112,,-3.431208680510616,0.5990288472739423,-4.321093517842128,2.541323843179105,0.5990288472739423,-4.321093517842128,2.541323843179105,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,17,18,6.800000000000001,0.9628370656230274,,,,-1.000825313441837,,3.431208680510616,,-1.000825313441837,,-3.431208680510616,0.9628370656230274,-4.432033993952453,2.430383367068779,0.9628370656230274,-4.432033993952453,2.430383367068779,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,18,19,7.2,1.255701519340105,,,,-0.9844626920498964,,3.431208680510616,,-0.9844626920498964,,-3.431208680510616,1.255701519340105,-4.415671372560513,2.4467459884607194,1.255701519340105,-4.415671372560513,2.4467459884607194,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,19,20,7.6000000000000005,1.4323266580200338,,,,-0.8553076761795303,,3.431208680510616,,-0.8553076761795303,,-3.431208680510616,1.4323266580200338,-4.2865163566901465,2.5759010043310857,1.4323266580200338,-4.2865163566901465,2.5759010043310857,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,20,21,8.0,1.4629415234025795,,,,-0.6596414779911103,,3.431208680510616,,-0.6596414779911103,,-3.431208680510616,1.4629415234025795,-4.090850158501726,2.7715672025195057,1.4629415234025795,-4.090850158501726,2.7715672025195057,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,21,22,8.4,1.3480410845307016,,,,-0.4442023516493684,,3.431208680510616,,-0.4442023516493684,,-3.431208680510616,1.3480410845307016,-3.8754110321599846,2.9870063288612476,1.3480410845307016,-3.8754110321599846,2.9870063288612476,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,22,23,8.8,1.1173985640547661,,,,-0.20158977923626947,,3.431208680510616,,-0.20158977923626947,,-3.431208680510616,1.1173985640547661,-3.6327984597468856,3.2296189012743466,1.1173985640547661,-3.632798459746886,3.229618901274347,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,23,24,9.200000000000001,0.8096259873062518,,,,0.06793315844087985,,3.431208680510616,,0.06793315844087985,,-3.431208680510616,0.8096259873062518,-3.363275522069736,3.499141838951496,0.8096259873062518,-3.363275522069736,3.4991418389514966,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,24,25,9.600000000000001,0.4567562717879321,,,,0.3390796457297868,,3.431208680510616,,0.3390796457297868,,-3.431208680510616,0.4567562717879321,-3.0921290347808292,3.770288326240403,0.4567562717879321,-3.0921290347808292,3.770288326240403,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,25,26,10.0,0.08146511046821397,,,,0.5811853917496429,,3.431208680510616,,0.5811853917496429,,-3.431208680510616,0.08146511046821397,-2.850023288760973,4.012394072260259,0.08146511046821397,-2.850023288760973,4.012394072260259,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,26,27,10.4,-0.30198459577213277,,,,0.778290922086371,,3.431208680510616,,0.778290922086371,,-3.431208680510616,-0.30198459577213277,-2.652917758424245,4.209499602596987,-0.30198459577213277,-2.652917758424245,4.209499602596987,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,27,28,10.8,-0.6745398424022769,,,,0.9232703703128972,,3.431208680510616,,0.9232703703128972,,-3.431208680510616,-0.6745398424022769,-2.507938310197719,4.354479050823513,-0.6745398424022769,-2.507938310197719,4.354479050823513,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,28,29,11.200000000000001,-1.0132004765427851,,,,0.9816449260883051,,3.431208680510616,,0.9816449260883051,,-3.431208680510616,-1.0132004765427851,-2.449563754422311,4.4128536065989215,-1.0132004765427851,-2.449563754422311,4.4128536065989215,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,29,30,11.600000000000001,-1.2828263823318384,,,,0.947045232552365,,3.431208680510616,,0.947045232552365,,-3.431208680510616,-1.2828263823318384,-2.484163447958251,4.378253913062981,-1.2828263823318384,-2.484163447958251,4.378253913062981,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,30,31,12.0,-1.4468326964037272,,,,0.8292640464687184,,3.431208680510616,,0.8292640464687184,,-3.431208680510616,-1.4468326964037272,-2.6019446340418977,4.2604727269793345,-1.4468326964037272,-2.6019446340418977,4.2604727269793345,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,31,32,12.4,-1.480226234877009,,,,0.6663944943619956,,3.431208680510616,,0.6663944943619956,,-3.431208680510616,-1.480226234877009,-2.7648141861486204,4.097603174872612,-1.480226234877009,-2.7648141861486204,4.097603174872612,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,32,33,12.8,-1.3796957933816818,,,,0.4659141305440381,,3.431208680510616,,0.4659141305440381,,-3.431208680510616,-1.3796957933816818,-2.965294549966578,3.897122811054654,-1.3796957933816818,-2.965294549966578,3.897122811054654,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,33,34,13.200000000000001,-1.166870560059248,,,,0.21932215642875225,,3.431208680510616,,0.21932215642875225,,-3.431208680510616,-1.166870560059248,-3.211886524081864,3.6505308369393683,-1.166870560059248,-3.211886524081864,3.6505308369393683,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,34,35,13.600000000000001,-0.8722090463736326,,,,-0.05143229782843343,,3.431208680510616,,-0.05143229782843343,,-3.431208680510616,-0.8722090463736326,-3.4826409783390497,3.3797763826821825,-0.8722090463736327,-3.48264097833905,3.3797763826821825,-1.1102230246251565e-16,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,35,36,14.0,-0.5286445646037514,,,,-0.31562967610767556,,3.431208680510616,,-0.31562967610767556,,-3.431208680510616,-0.5286445646037514,-3.7468383566182917,3.1155790044029406,-0.5286445646037514,-3.746838356618292,3.1155790044029406,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,36,37,14.4,-0.1615267624776023,,,,-0.5491207436549421,,3.431208680510616,,-0.5491207436549421,,-3.431208680510616,-0.1615267624776023,-3.980329424165558,2.882087936855674,-0.1615267624776023,-3.980329424165558,2.882087936855674,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,37,38,14.8,0.2160398292634483,,,,-0.7440212975262646,,3.431208680510616,,-0.7440212975262646,,-3.431208680510616,0.2160398292634483,-4.175229978036881,2.6871873829843516,0.2160398292634483,-4.175229978036881,2.6871873829843516,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,38,39,15.200000000000001,0.5868099983228363,,,,-0.8898105413627811,,3.431208680510616,,-0.8898105413627811,,-3.431208680510616,0.5868099983228363,-4.321019221873398,2.541398139147835,0.5868099983228363,-4.321019221873398,2.541398139147835,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,39,40,15.600000000000001,0.9286733681060453,,,,-0.9622976772968057,,3.431208680510616,,-0.9622976772968057,,-3.431208680510616,0.9286733681060453,-4.393506357807421,2.4689110032138104,0.9286733681060453,-4.393506357807421,2.4689110032138104,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,40,41,16.0,1.2095660355953348,,,,-0.9409793016463954,,3.431208680510616,,-0.9409793016463954,,-3.431208680510616,1.2095660355953348,-4.372187982157012,2.4902293788642207,1.2095660355953348,-4.372187982157012,2.4902293788642207,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,41,42,16.400000000000002,1.3941868690305819,,,,-0.8399261269648373,,3.431208680510616,,-0.8399261269648373,,-3.431208680510616,1.3941868690305819,-4.271134807475454,2.5912825535457786,1.3941868690305819,-4.271134807475454,2.5912825535457786,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,42,43,16.8,1.4529229290629169,,,,-0.683536918933927,,3.431208680510616,,-0.683536918933927,,-3.431208680510616,1.4529229290629169,-4.114745599444543,2.7476717615766892,1.4529229290629169,-4.114745599444543,2.7476717615766892,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,43,44,17.2,1.379041073834904,,,,-0.4892219025538667,,3.431208680510616,,-0.4892219025538667,,-3.431208680510616,1.379041073834904,-3.920430583064483,2.9419867779567492,1.379041073834904,-3.920430583064483,2.9419867779567492,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,44,45,17.6,1.186805362784764,,,,-0.2493648275547965,,3.431208680510616,,-0.2493648275547965,,-3.431208680510616,1.186805362784764,-3.6805735080654127,3.1818438529558195,1.186805362784764,-3.6805735080654127,3.181843852955819,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,45,46,18.0,0.9087462465470553,,,,0.017530651457713556,,3.431208680510616,,0.017530651457713556,,-3.431208680510616,0.9087462465470553,-3.4136780290529027,3.4487393319683295,0.9087462465470554,-3.4136780290529027,3.44873933196833,1.1102230246251565e-16,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,46,47,18.400000000000002,0.5758550342638078,,,,0.27675963907396817,,3.431208680510616,,0.27675963907396817,,-3.431208680510616,0.5758550342638078,-3.154449041436648,3.7079683195845843,0.5758550342638078,-3.154449041436648,3.7079683195845843,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,47,48,18.8,0.21416651262723194,,,,0.5152070698630549,,3.431208680510616,,0.5152070698630549,,-3.431208680510616,0.21416651262723194,-2.9160016106475615,3.9464157503736708,0.21416651262723194,-2.9160016106475615,3.946415750373671,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,48,49,19.200000000000003,-0.16012462768800823,,,,0.7147908579436119,,3.431208680510616,,0.7147908579436119,,-3.431208680510616,-0.16012462768800823,-2.716417822567004,4.145999538454228,-0.16012462768800823,-2.716417822567004,4.145999538454228,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,49,50,19.6,-0.5314762066636523,,,,0.8709870182524939,,3.431208680510616,,0.8709870182524939,,-3.431208680510616,-0.5314762066636523,-2.5602216622581224,4.30219569876311,-0.5314762066636523,-2.5602216622581224,4.30219569876311,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,50,51,20.0,-0.8787744235621754,,,,0.9537891141729967,,3.431208680510616,,0.9537891141729967,,-3.431208680510616,-0.8787744235621754,-2.4774195663376193,4.3849977946836125,-0.8787744235621755,-2.4774195663376193,4.3849977946836125,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,51,52,20.400000000000002,-1.172253992198625,,,,0.9510444262134349,,3.431208680510616,,0.9510444262134349,,-3.431208680510616,-1.172253992198625,-2.4801642542971813,4.382253106724051,-1.172253992198625,-2.4801642542971813,4.382253106724051,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,52,53,20.8,-1.3756092795904247,,,,0.8627595009448238,,3.431208680510616,,0.8627595009448238,,-3.431208680510616,-1.3756092795904247,-2.568449179565792,4.29396818145544,-1.3756092795904247,-2.568449179565792,4.29396818145544,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,53,54,21.200000000000003,-1.4583295379012917,,,,0.7165087999746577,,3.431208680510616,,0.7165087999746577,,-3.431208680510616,-1.4583295379012917,-2.7146998805359583,4.147717480485274,-1.4583295379012917,-2.7146998805359583,4.147717480485274,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,54,55,21.6,-1.4075894834229203,,,,0.5317470576557547,,3.431208680510616,,0.5317470576557547,,-3.431208680510616,-1.4075894834229203,-2.8994616228548615,3.9629557381663707,-1.4075894834229203,-2.8994616228548615,3.962955738166371,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,55,56,22.0,-1.2354369592516485,,,,0.2968181804185557,,3.431208680510616,,0.2968181804185557,,-3.431208680510616,-1.2354369592516485,-3.1343905000920604,3.728026860929172,-1.2354369592516485,-3.13439050009206,3.728026860929172,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,56,57,22.400000000000002,-0.9697636796373252,,,,0.03498106935903211,,3.431208680510616,,0.03498106935903211,,-3.431208680510616,-0.9697636796373252,-3.396227611151584,3.466189749869648,-0.9697636796373252,-3.3962276111515846,3.466189749869648,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,57,58,22.8,-0.6447986542123068,,,,-0.23043442786654095,,3.431208680510616,,-0.23043442786654095,,-3.431208680510616,-0.6447986542123068,-3.6616431083771572,3.200774252644075,-0.6447986542123068,-3.6616431083771572,3.200774252644075,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,58,59,23.200000000000003,-0.2866410715881441,,,,-0.46949403916846316,,3.431208680510616,,-0.46949403916846316,,-3.431208680510616,-0.2866410715881441,-3.9007027196790793,2.961714641342153,-0.2866410715881441,-3.900702719679079,2.961714641342153,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,59,60,23.6,0.08627099894323623,,,,-0.6802444504508183,,3.431208680510616,,-0.6802444504508183,,-3.431208680510616,0.08627099894323623,-4.111453130961435,2.7509642300597976,0.08627099894323623,-4.111453130961435,2.7509642300597976,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,60,61,24.0,0.45927792549874064,,,,-0.84342001669104,,3.431208680510616,,-0.84342001669104,,-3.431208680510616,0.45927792549874064,-4.274628697201656,2.587788663819576,0.4592779254987406,-4.274628697201656,2.587788663819576,-5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,61,62,24.400000000000002,0.8129823906792794,,,,-0.9430000606483514,,3.431208680510616,,-0.9430000606483514,,-3.431208680510616,0.8129823906792794,-4.374208741158967,2.488208619862265,0.8129823906792794,-4.374208741158967,2.488208619862265,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,62,63,24.8,1.1185098024120665,,,,-0.95643255865058,,3.431208680510616,,-0.95643255865058,,-3.431208680510616,1.1185098024120665,-4.387641239161196,2.474776121860036,1.1185098024120665,-4.387641239161196,2.474776121860036,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,63,64,25.200000000000003,1.341213193486176,,,,-0.8808954818526825,,3.431208680510616,,-0.8808954818526825,,-3.431208680510616,1.341213193486176,-4.3121041623632985,2.5503131986579337,1.341213193486176,-4.3121041623632985,2.5503131986579337,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,64,65,25.6,1.4471386110705724,,,,-0.7462580933717207,,3.431208680510616,,-0.7462580933717207,,-3.431208680510616,1.4471386110705724,-4.177466773882337,2.6849505871388955,1.4471386110705724,-4.177466773882337,2.6849505871388955,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,65,66,26.0,1.4209150641509662,,,,-0.5644930058735439,,3.431208680510616,,-0.5644930058735439,,-3.431208680510616,1.4209150641509662,-3.99570168638416,2.866715674637072,1.4209150641509662,-3.99570168638416,2.866715674637072,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,66,67,26.400000000000002,1.2691416959687498,,,,-0.3399197382614521,,3.431208680510616,,-0.3399197382614521,,-3.431208680510616,1.2691416959687498,-3.771128418772068,3.091288942249164,1.2691416959687498,-3.771128418772068,3.091288942249164,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,67,68,26.8,1.0179484808513124,,,,-0.08052358471555479,,3.431208680510616,,-0.08052358471555479,,-3.431208680510616,1.0179484808513124,-3.511732265226171,3.350685095795061,1.0179484808513124,-3.5117322652261707,3.350685095795061,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,68,69,27.200000000000003,0.7020466991293082,,,,0.18247759801796531,,3.431208680510616,,0.18247759801796531,,-3.431208680510616,0.7020466991293082,-3.2487310824926507,3.6136862785285815,0.7020466991293082,-3.2487310824926507,3.6136862785285815,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,69,70,27.6,0.3483194013482724,,,,0.4312705902068802,,3.431208680510616,,0.4312705902068802,,-3.431208680510616,0.3483194013482724,-2.999938090303736,3.8624792707174964,0.3483194013482724,-2.999938090303736,3.862479270717496,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,70,71,28.0,-0.022851450989965764,,,,0.6467559992832408,,3.431208680510616,,0.6467559992832408,,-3.431208680510616,-0.022851450989965764,-2.7844526812273753,4.0779646797938565,-0.022851450989965764,-2.7844526812273753,4.0779646797938565,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,71,72,28.400000000000002,-0.39744349156890346,,,,0.8207746663204422,,3.431208680510616,,0.8207746663204422,,-3.431208680510616,-0.39744349156890346,-2.610434014190174,4.251983346831058,-0.39744349156890346,-2.610434014190174,4.251983346831058,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,72,73,28.8,-0.7556481879377476,,,,0.9378241589087674,,3.431208680510616,,0.9378241589087674,,-3.431208680510616,-0.7556481879377476,-2.4933845216018486,4.369032839419384,-0.7556481879377476,-2.4933845216018486,4.369032839419384,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,73,74,29.200000000000003,-1.0733862790572433,,,,0.9606202326585512,,3.431208680510616,,0.9606202326585512,,-3.431208680510616,-1.0733862790572433,-2.470588447852065,4.391828913169167,-1.0733862790572433,-2.470588447852065,4.391828913169167,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,74,75,29.6,-1.3132657352792552,,,,0.9015765564270597,,3.431208680510616,,0.9015765564270597,,-3.431208680510616,-1.3132657352792552,-2.529632124083556,4.332785236937676,-1.3132657352792552,-2.529632124083556,4.332785236937676,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,75,76,30.0,-1.442320432867858,,,,0.7768499152338498,,3.431208680510616,,0.7768499152338498,,-3.431208680510616,-1.442320432867858,-2.654358765276766,4.208058595744466,-1.442320432867858,-2.654358765276766,4.208058595744466,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,76,77,30.400000000000002,-1.4397429353004132,,,,0.6049456383887049,,3.431208680510616,,0.6049456383887049,,-3.431208680510616,-1.4397429353004132,-2.8262630421219113,4.036154318899321,-1.4397429353004132,-2.8262630421219113,4.036154318899321,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,77,78,30.8,-1.3090229341690873,,,,0.38691132949988677,,3.431208680510616,,0.38691132949988677,,-3.431208680510616,-1.3090229341690873,-3.044297351010729,3.818120010010503,-1.3090229341690873,-3.044297351010729,3.8181200100105035,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,78,79,31.200000000000003,-1.0732541452330733,,,,0.13094207751166506,,3.431208680510616,,0.13094207751166506,,-3.431208680510616,-1.0732541452330733,-3.300266602998951,3.5621507580222813,-1.0732541452330733,-3.300266602998951,3.562150758022281,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,79,80,31.6,-0.7658160100270861,,,,-0.1368081096329162,,3.431208680510616,,-0.1368081096329162,,-3.431208680510616,-0.7658160100270861,-3.5680167901435325,3.2944005708776998,-0.7658160100270861,-3.568016790143533,3.2944005708777,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,80,81,32.0,-0.4164046065376831,,,,-0.3835403021645963,,3.431208680510616,,-0.3835403021645963,,-3.431208680510616,-0.4164046065376831,-3.8147489826752126,3.0476683783460197,-0.4164046065376831,-3.8147489826752126,3.0476683783460197,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,81,82,32.4,-0.047357108346015225,,,,-0.6097649803767196,,3.431208680510616,,-0.6097649803767196,,-3.431208680510616,-0.047357108346015225,-4.040973660887335,2.8214437001338966,-0.047357108346015225,-4.040973660887335,2.8214437001338966,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,82,83,32.800000000000004,0.3278397352972328,,,,-0.7939608249174058,,3.431208680510616,,-0.7939608249174058,,-3.431208680510616,0.3278397352972328,-4.225169505428022,2.6372478555932104,0.3278397352972328,-4.225169505428022,2.6372478555932104,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,83,84,33.2,0.69172136872638,,,,-0.9196813269382184,,3.431208680510616,,-0.9196813269382184,,-3.431208680510616,0.69172136872638,-4.350890007448834,2.5115273535723976,0.69172136872638,-4.350890007448834,2.5115273535723976,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,84,85,33.6,1.018427932161897,,,,-0.9653150375514404,,3.431208680510616,,-0.9653150375514404,,-3.431208680510616,1.018427932161897,-4.396523718062056,2.4658936429591756,1.018427932161897,-4.396523718062056,2.4658936429591756,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,85,86,34.0,1.2752754848381247,,,,-0.9188531095818828,,3.431208680510616,,-0.9188531095818828,,-3.431208680510616,1.2752754848381247,-4.350061790092499,2.512355570928733,1.2752754848381247,-4.350061790092499,2.512355570928733,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,86,87,34.4,1.426254229683254,,,,-0.8035032895240961,,3.431208680510616,,-0.8035032895240961,,-3.431208680510616,1.426254229683254,-4.234711970034712,2.6277053909865202,1.426254229683254,-4.234711970034712,2.6277053909865202,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,87,88,34.800000000000004,1.4476972938358719,,,,-0.6375108707973084,,3.431208680510616,,-0.6375108707973084,,-3.431208680510616,1.4476972938358719,-4.068719551307924,2.793697809713308,1.4476972938358719,-4.068719551307924,2.793697809713308,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,88,89,35.2,1.3387535774050117,,,,-0.4286304951377233,,3.431208680510616,,-0.4286304951377233,,-3.431208680510616,1.3387535774050117,-3.8598391756483394,3.002578185372893,1.3387535774050117,-3.859839175648339,3.002578185372893,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,89,90,35.6,1.119239380032618,,,,-0.17672407557067227,,3.431208680510616,,-0.17672407557067227,,-3.431208680510616,1.119239380032618,-3.607932756081288,3.254484604939944,1.119239380032618,-3.607932756081288,3.2544846049399436,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,90,91,36.0,0.8222251649999116,,,,0.09022605969752243,,3.431208680510616,,0.09022605969752243,,-3.431208680510616,0.8222251649999116,-3.3409826208130937,3.5214347402081385,0.8222251649999117,-3.3409826208130937,3.521434740208139,1.1102230246251565e-16,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,91,92,36.4,0.47929754295464,,,,0.3448739700615464,,3.431208680510616,,0.3448739700615464,,-3.431208680510616,0.47929754295464,-3.0863347104490697,3.7760826505721625,0.47929754295464,-3.0863347104490697,3.776082650572163,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,92,93,36.800000000000004,0.11240929892809265,,,,0.5722222225548748,,3.431208680510616,,0.5722222225548748,,-3.431208680510616,0.11240929892809265,-2.8589864579557416,4.003430903065491,0.11240929892809264,-2.8589864579557416,4.003430903065491,-1.3877787807814457e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,93,94,37.2,-0.26291922621629654,,,,0.7638968393741029,,3.431208680510616,,0.7638968393741029,,-3.431208680510616,-0.26291922621629654,-2.667311841136513,4.195105519884719,-0.26291922621629654,-2.667311841136513,4.195105519884719,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,94,95,37.6,-0.6300951476891656,,,,0.9045208386796648,,3.431208680510616,,0.9045208386796648,,-3.431208680510616,-0.6300951476891656,-2.5266878418309515,4.335729519190281,-0.6300951476891656,-2.5266878418309515,4.335729519190281,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,95,96,38.0,-0.9660377588746287,,,,0.9632146539764397,,3.431208680510616,,0.9632146539764397,,-3.431208680510616,-0.9660377588746287,-2.4679940265341767,4.394423334487056,-0.9660377588746287,-2.4679940265341767,4.394423334487056,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,96,97,38.400000000000006,-1.2380437606913892,,,,0.9356954576079801,,3.431208680510616,,0.9356954576079801,,-3.431208680510616,-1.2380437606913892,-2.4955132229026358,4.3669041381185965,-1.2380437606913892,-2.4955132229026358,4.3669041381185965,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,97,98,38.800000000000004,-1.410629182976121,,,,0.8287861467846124,,3.431208680510616,,0.8287861467846124,,-3.431208680510616,-1.410629182976121,-2.6024225337260036,4.259994827295229,-1.410629182976121,-2.6024225337260036,4.259994827295229,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,98,99,39.2,-1.4564930731044774,,,,0.6736005943454646,,3.431208680510616,,0.6736005943454646,,-3.431208680510616,-1.4564930731044774,-2.7576080861651517,4.1048092748560805,-1.4564930731044774,-2.7576080861651517,4.1048092748560805,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,99,100,39.6,-1.3700673845416178,,,,0.47050662623408585,,3.431208680510616,,0.47050662623408585,,-3.431208680510616,-1.3700673845416178,-2.9607020542765303,3.901715306744702,-1.3700673845416178,-2.9607020542765303,3.901715306744702,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,100,101,40.0,-1.1683169281560764,,,,0.2254792825914213,,3.431208680510616,,0.2254792825914213,,-3.431208680510616,-1.1683169281560764,-3.2057293979191948,3.6566879631020375,-1.1683169281560764,-3.2057293979191948,3.656687963102038,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,101,102,40.400000000000006,-0.8826769223553571,,,,-0.0408734400101814,,3.431208680510616,,-0.0408734400101814,,-3.431208680510616,-0.8826769223553571,-3.4720821205207977,3.3903352405004346,-0.8826769223553571,-3.4720821205207972,3.3903352405004346,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,102,103,40.800000000000004,-0.5462535722649207,,,,-0.29868775930381297,,3.431208680510616,,-0.29868775930381297,,-3.431208680510616,-0.5462535722649207,-3.729896439814429,3.1325209212068033,-0.5462535722649207,-3.729896439814429,3.1325209212068037,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,103,104,41.2,-0.18206969270294102,,,,-0.5320893062985933,,3.431208680510616,,-0.5320893062985933,,-3.431208680510616,-0.18206969270294102,-3.9632979868092093,2.899119374212023,-0.18206969270294102,-3.9632979868092097,2.899119374212023,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,104,105,41.6,0.19261082281542907,,,,-0.7332033172924826,,3.431208680510616,,-0.7332033172924826,,-3.431208680510616,0.19261082281542907,-4.164411997803098,2.6980053632181336,0.19261082281542907,-4.164411997803098,2.6980053632181336,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,105,106,42.0,0.5637805290836617,,,,-0.8847721176145154,,3.431208680510616,,-0.8847721176145154,,-3.431208680510616,0.5637805290836617,-4.315980798125132,2.5464365628961008,0.5637805290836617,-4.315980798125132,2.5464365628961008,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,106,107,42.400000000000006,0.906576028404715,,,,-0.9588113998624811,,3.431208680510616,,-0.9588113998624811,,-3.431208680510616,0.906576028404715,-4.390020080373097,2.472397280648135,0.906576028404715,-4.390020080373097,2.472397280648135,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,107,108,42.800000000000004,1.1930703974821784,,,,-0.9446245237351344,,3.431208680510616,,-0.9446245237351344,,-3.431208680510616,1.1930703974821784,-4.37583320424575,2.4865841567754816,1.1930703974821784,-4.37583320424575,2.4865841567754816,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,108,109,43.2,1.386018503427751,,,,-0.8521589277670798,,3.431208680510616,,-0.8521589277670798,,-3.431208680510616,1.386018503427751,-4.283367608277696,2.5790497527435363,1.386018503427751,-4.283367608277696,2.5790497527435363,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,109,110,43.6,1.4558689006245777,,,,-0.7042216474084056,,3.431208680510616,,-0.7042216474084056,,-3.431208680510616,1.4558689006245777,-4.135430327919022,2.7269870331022106,1.4558689006245777,-4.135430327919022,2.7269870331022106,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,110,111,44.0,1.392929155711609,,,,-0.510147483943368,,3.431208680510616,,-0.510147483943368,,-3.431208680510616,1.392929155711609,-3.941356164453984,2.921061196567248,1.392929155711609,-3.9413561644539845,2.921061196567248,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,111,112,44.400000000000006,1.209850416356023,,,,-0.27047097250764585,,3.431208680510616,,-0.27047097250764585,,-3.431208680510616,1.209850416356023,-3.701679653018262,3.16073770800297,1.209850416356023,-3.7016796530182625,3.16073770800297,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,112,113,44.800000000000004,0.936928224531955,,,,-0.004426395481267978,,3.431208680510616,,-0.004426395481267978,,-3.431208680510616,0.936928224531955,-3.435635075991884,3.4267822850293483,0.936928224531955,-3.4356350759918834,3.4267822850293483,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,113,114,45.2,0.6074938701839612,,,,0.254106067428142,,3.431208680510616,,0.254106067428142,,-3.431208680510616,0.6074938701839612,-3.177102613082474,3.685314747938758,0.6074938701839612,-3.177102613082474,3.685314747938758,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,114,115,45.6,0.24741909281479998,,,,0.49236395214946443,,3.431208680510616,,0.49236395214946443,,-3.431208680510616,0.24741909281479998,-2.938844728361152,3.9235726326600804,0.2474190928148,-2.938844728361152,3.923572632660081,2.7755575615628914e-17,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,115,116,46.0,-0.12644449956366433,,,,0.6992561494163317,,3.431208680510616,,0.6992561494163317,,-3.431208680510616,-0.12644449956366433,-2.7319525310942843,4.1304648299269475,-0.12644449956366433,-2.7319525310942843,4.1304648299269475,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,116,117,46.400000000000006,-0.4986925439325745,,,,0.8613702576770735,,3.431208680510616,,0.8613702576770735,,-3.431208680510616,-0.4986925439325745,-2.5698384228335427,4.29257893818769,-0.49869254393257445,-2.5698384228335427,4.29257893818769,5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,117,118,46.800000000000004,-0.8491411269020215,,,,0.9519076601124096,,3.431208680510616,,0.9519076601124096,,-3.431208680510616,-0.8491411269020215,-2.4793010203982067,4.383116340623026,-0.8491411269020215,-2.4793010203982067,4.383116340623026,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,118,119,47.2,-1.1484077441189158,,,,0.9548096180221726,,3.431208680510616,,0.9548096180221726,,-3.431208680510616,-1.1484077441189158,-2.4763990624884435,4.386018298532789,-1.1484077441189158,-2.4763990624884435,4.386018298532789,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,119,120,47.6,-1.361018126777654,,,,0.8759992557166992,,3.431208680510616,,0.8759992557166992,,-3.431208680510616,-1.361018126777654,-2.555209424793917,4.307207936227315,-1.361018126777654,-2.555209424793917,4.307207936227315,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,120,121,48.0,-1.4549276247265928,,,,0.7358791901334665,,3.431208680510616,,0.7358791901334665,,-3.431208680510616,-1.4549276247265928,-2.6953294903771496,4.167087870644083,-1.4549276247265928,-2.6953294903771496,4.167087870644083,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,121,122,48.400000000000006,-1.415470093879768,,,,0.5494891785818414,,3.431208680510616,,0.5494891785818414,,-3.431208680510616,-1.415470093879768,-2.8817195019287745,3.9806978590924578,-1.415470093879768,-2.8817195019287745,3.9806978590924578,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,122,123,48.800000000000004,-1.252393067758107,,,,0.31431259736692957,,3.431208680510616,,0.31431259736692957,,-3.431208680510616,-1.252393067758107,-3.1168960831436867,3.7455212778775455,-1.252393067758107,-3.1168960831436867,3.7455212778775455,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,123,124,49.2,-0.992847805038312,,,,0.05432801365885638,,3.431208680510616,,0.05432801365885638,,-3.431208680510616,-0.992847805038312,-3.37688066685176,3.4855366941694723,-0.992847805038312,-3.37688066685176,3.485536694169472,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,124,125,49.6,-0.6713990000898492,,,,-0.2074777347581295,,3.431208680510616,,-0.2074777347581295,,-3.431208680510616,-0.6713990000898492,-3.6386864152687455,3.2237309457524868,-0.6713990000898492,-3.638686415268746,3.223730945752487,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,125,126,50.0,-0.31541421079680443,,,,-0.44967132662625864,,3.431208680510616,,-0.44967132662625864,,-3.431208680510616,-0.31541421079680443,-3.8808800071368745,2.9815373538843577,-0.31541421079680443,-3.880880007136875,2.9815373538843577,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,126,127,50.400000000000006,0.05692821091081585,,,,-0.6644223017822218,,3.431208680510616,,-0.6644223017822218,,-3.431208680510616,0.05692821091081585,-4.095630982292838,2.766786378728394,0.05692821091081585,-4.095630982292838,2.766786378728394,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,127,128,50.800000000000004,0.43079564942251897,,,,-0.8349068861921042,,3.431208680510616,,-0.8349068861921042,,-3.431208680510616,0.43079564942251897,-4.26611556670272,2.596301794318512,0.4307956494225189,-4.26611556670272,2.596301794318512,-5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,128,129,51.2,0.7871936732647163,,,,-0.9419786433241502,,3.431208680510616,,-0.9419786433241502,,-3.431208680510616,0.7871936732647163,-4.373187323834767,2.489230037186466,0.7871936732647162,-4.373187323834767,2.489230037186466,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,129,130,51.6,1.0983148168204093,,,,-0.9608111489388536,,3.431208680510616,,-0.9608111489388536,,-3.431208680510616,1.0983148168204093,-4.3920198294494694,2.470397531571763,1.0983148168204093,-4.3920198294494694,2.470397531571763,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,130,131,52.0,1.3293393088317393,,,,-0.8944286143535394,,3.431208680510616,,-0.8944286143535394,,-3.431208680510616,1.3293393088317393,-4.325637294864156,2.5367800661570765,1.3293393088317393,-4.325637294864156,2.5367800661570765,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,131,132,52.400000000000006,1.4463446093307768,,,,-0.7638226956512104,,3.431208680510616,,-0.7638226956512104,,-3.431208680510616,1.4463446093307768,-4.195031376161826,2.667385984859406,1.4463446093307768,-4.195031376161826,2.667385984859406,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,132,133,52.800000000000004,1.4309563467917548,,,,-0.5850831896828967,,3.431208680510616,,-0.5850831896828967,,-3.431208680510616,1.4309563467917548,-4.016291870193513,2.8461254908277196,1.4309563467917548,-4.016291870193513,2.8461254908277196,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,133,134,53.2,1.2886215782767776,,,,-0.36134986235663275,,3.431208680510616,,-0.36134986235663275,,-3.431208680510616,1.2886215782767776,-3.792558542867249,3.069858818153983,1.2886215782767776,-3.792558542867249,3.069858818153983,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,134,135,53.6,1.044137506921358,,,,-0.10072812981836395,,3.431208680510616,,-0.10072812981836395,,-3.431208680510616,1.044137506921358,-3.53193681032898,3.3304805506922524,1.044137506921358,-3.5319368103289794,3.3304805506922524,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,135,136,54.0,0.7314972017860657,,,,0.16148107006816034,,3.431208680510616,,0.16148107006816034,,-3.431208680510616,0.7314972017860657,-3.2697276104424557,3.5926897505787765,0.7314972017860657,-3.2697276104424557,3.5926897505787765,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,136,137,54.400000000000006,0.38035389504417666,,,,0.40856601620547084,,3.431208680510616,,0.40856601620547084,,-3.431208680510616,0.38035389504417666,-3.0226426643051454,3.839774696716087,0.38035389504417666,-3.0226426643051454,3.839774696716087,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,137,138,54.800000000000004,0.00989215479067736,,,,0.6288416883148719,,3.431208680510616,,0.6288416883148719,,-3.431208680510616,0.00989215479067736,-2.8023669921957444,4.060050368825488,0.00989215479067736,-2.8023669921957444,4.060050368825488,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,138,139,55.2,-0.36496778589577034,,,,0.8088704120356577,,3.431208680510616,,0.8088704120356577,,-3.431208680510616,-0.36496778589577034,-2.6223382684749583,4.2400790925462735,-0.36496778589577034,-2.6223382684749583,4.2400790925462735,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,139,140,55.6,-0.7261857639329425,,,,0.9280624602959883,,3.431208680510616,,0.9280624602959883,,-3.431208680510616,-0.7261857639329425,-2.503146220214628,4.359271140806604,-0.7261857639329425,-2.503146220214628,4.359271140806604,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,140,141,56.0,-1.0481036972369766,,,,0.9641439625689161,,3.431208680510616,,0.9641439625689161,,-3.431208680510616,-1.0481036972369766,-2.4670647179417,4.395352643079532,-1.0481036972369766,-2.4670647179417,4.395352643079532,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,141,142,56.400000000000006,-1.296183353723086,,,,0.9126793886229195,,3.431208680510616,,0.9126793886229195,,-3.431208680510616,-1.296183353723086,-2.5185292918876967,4.343888069133536,-1.296183353723086,-2.5185292918876967,4.343888069133536,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,142,143,56.800000000000004,-1.4359605601837409,,,,0.7917779240984466,,3.431208680510616,,0.7917779240984466,,-3.431208680510616,-1.4359605601837409,-2.6394307564121693,4.222986604609063,-1.4359605601837409,-2.6394307564121693,4.222986604609063,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,143,144,57.2,-1.4449247923182407,,,,0.6224516260207335,,3.431208680510616,,0.6224516260207335,,-3.431208680510616,-1.4449247923182407,-2.8087570544898828,4.0536603065313495,-1.4449247923182407,-2.8087570544898828,4.0536603065313495,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,144,145,57.6,-1.3241204223752836,,,,0.4046980584563791,,3.431208680510616,,0.4046980584563791,,-3.431208680510616,-1.3241204223752836,-3.026510622054237,3.835906738966995,-1.3241204223752836,-3.026510622054237,3.835906738966995,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,145,146,58.0,-1.0955609188217053,,,,0.1498331977738297,,3.431208680510616,,0.1498331977738297,,-3.431208680510616,-1.0955609188217053,-3.2813754827367863,3.581041878284446,-1.0955609188217053,-3.2813754827367863,3.581041878284446,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,146,147,58.400000000000006,-0.7926987164741209,,,,-0.11513271749342374,,3.431208680510616,,-0.11513271749342374,,-3.431208680510616,-0.7926987164741209,-3.54634139800404,3.3160759630171923,-0.792698716474121,-3.5463413980040404,3.3160759630171928,-1.1102230246251565e-16,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,147,148,58.800000000000004,-0.44670048151036684,,,,-0.364900539780246,,3.431208680510616,,-0.364900539780246,,-3.431208680510616,-0.44670048151036684,-3.796109220290862,3.0663081407303703,-0.44670048151036684,-3.796109220290862,3.0663081407303703,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,148,149,59.2,-0.07859312563412416,,,,-0.5908455423887684,,3.431208680510616,,-0.5908455423887684,,-3.431208680510616,-0.07859312563412416,-4.022054222899385,2.8403631381218477,-0.07859312563412416,-4.022054222899385,2.8403631381218477,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,149,150,59.6,0.29635640969937627,,,,-0.7794482949435149,,3.431208680510616,,-0.7794482949435149,,-3.431208680510616,0.29635640969937627,-4.210656975454131,2.6517603855671013,0.29635640969937627,-4.210656975454131,2.6517603855671013,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,150,151,60.0,0.6622055983540547,,,,-0.9112922767968952,,3.431208680510616,,-0.9112922767968952,,-3.431208680510616,0.6622055983540547,-4.342500957307511,2.519916403713721,0.6622055983540547,-4.342500957307511,2.519916403713721,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,151,152,60.400000000000006,0.9929673071175303,,,,-0.9646587057457121,,3.431208680510616,,-0.9646587057457121,,-3.431208680510616,0.9929673071175303,-4.395867386256328,2.466549974764904,0.9929673071175303,-4.395867386256328,2.466549974764904,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,152,153,60.800000000000004,1.2575640912231463,,,,-0.9277454844621849,,3.431208680510616,,-0.9277454844621849,,-3.431208680510616,1.2575640912231463,-4.3589541649728005,2.5034631960484313,1.2575640912231463,-4.3589541649728005,2.5034631960484313,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,153,154,61.2,1.4189713738214336,,,,-0.8183595905992014,,3.431208680510616,,-0.8183595905992014,,-3.431208680510616,1.4189713738214336,-4.249568271109817,2.612849089911415,1.4189713738214336,-4.249568271109817,2.612849089911415,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,154,155,61.6,1.4523958145600453,,,,-0.6555524592858789,,3.431208680510616,,-0.6555524592858789,,-3.431208680510616,1.4523958145600453,-4.086761139796495,2.7756562212247373,1.4523958145600453,-4.086761139796495,2.7756562212247373,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,155,156,62.0,1.3537783387281468,,,,-0.4469458216422297,,3.431208680510616,,-0.4469458216422297,,-3.431208680510616,1.3537783387281468,-3.878154502152846,2.9842628588683864,1.3537783387281468,-3.878154502152846,2.9842628588683864,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,156,157,62.400000000000006,1.1421628669336563,,,,-0.19686619988008114,,3.431208680510616,,-0.19686619988008114,,-3.431208680510616,1.1421628669336563,-3.628074880390697,3.234342480630535,1.1421628669336563,-3.628074880390697,3.234342480630535,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,157,158,62.800000000000004,0.8503918472514692,,,,0.06797989791301129,,3.431208680510616,,0.06797989791301129,,-3.431208680510616,0.8503918472514692,-3.363228782597605,3.4991885784236274,0.8503918472514691,-3.363228782597605,3.4991885784236274,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,158,159,63.2,0.5100232302542315,,,,0.3221116948877012,,3.431208680510616,,0.3221116948877012,,-3.431208680510616,0.5100232302542315,-3.109096985622915,3.7533203753983173,0.5100232302542315,-3.109096985622915,3.7533203753983173,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,159,160,63.6,0.1450562754673393,,,,0.5522513748127228,,3.431208680510616,,0.5522513748127228,,-3.431208680510616,0.1450562754673393,-2.8789573056978934,3.983460055323339,0.1450562754673393,-2.8789573056978934,3.983460055323339,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,160,161,64.0,-0.22996480182938625,,,,0.749470785035947,,3.431208680510616,,0.749470785035947,,-3.431208680510616,-0.22996480182938625,-2.681737895474669,4.180679465546563,-0.22996480182938625,-2.681737895474669,4.180679465546563,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,161,162,64.4,-0.5985905545839914,,,,0.8942070966598871,,3.431208680510616,,0.8942070966598871,,-3.431208680510616,-0.5985905545839914,-2.537001583850729,4.3254157771705035,-0.5985905545839914,-2.537001583850729,4.3254157771705035,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,162,163,64.8,-0.9382520935626258,,,,0.961677580000417,,3.431208680510616,,0.961677580000417,,-3.431208680510616,-0.9382520935626258,-2.469531100510199,4.392886260511033,-0.9382520935626258,-2.469531100510199,4.392886260511033,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,163,164,65.2,-1.2172076418937459,,,,0.9405689991141667,,3.431208680510616,,0.9405689991141667,,-3.431208680510616,-1.2172076418937459,-2.4906396813964493,4.371777679624783,-1.2172076418937459,-2.4906396813964493,4.371777679624783,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,164,165,65.60000000000001,-1.3996987054103822,,,,0.841804231616998,,3.431208680510616,,0.841804231616998,,-3.431208680510616,-1.3996987054103822,-2.5894044488936183,4.273012912127614,-1.3996987054103822,-2.5894044488936183,4.273012912127614,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,165,166,66.0,-1.4571418874769895,,,,0.6893481425536558,,3.431208680510616,,0.6893481425536558,,-3.431208680510616,-1.4571418874769895,-2.7418605379569603,4.1205568230642715,-1.4571418874769895,-2.7418605379569603,4.1205568230642715,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,166,167,66.4,-1.3815593864602727,,,,0.4884911225335707,,3.431208680510616,,0.4884911225335707,,-3.431208680510616,-1.3815593864602727,-2.9427175579770455,3.9196998030441867,-1.3815593864602727,-2.9427175579770455,3.9196998030441867,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,167,168,66.8,-1.188247779298813,,,,0.24445444255591997,,3.431208680510616,,0.24445444255591997,,-3.431208680510616,-1.188247779298813,-3.186754237954696,3.675663123066536,-1.188247779298813,-3.186754237954696,3.6756631230665358,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,168,169,67.2,-0.9081726898465754,,,,-0.019919997632406396,,3.431208680510616,,-0.019919997632406396,,-3.431208680510616,-0.9081726898465754,-3.4511286781430224,3.41128868287821,-0.9081726898465755,-3.451128678143022,3.41128868287821,-1.1102230246251565e-16,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,169,170,67.60000000000001,-0.5749361802681097,,,,-0.2773865874330471,,3.431208680510616,,-0.2773865874330471,,-3.431208680510616,-0.5749361802681097,-3.708595267943663,3.153822093077569,-0.5749361802681097,-3.708595267943663,3.153822093077569,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,170,171,68.0,-0.2129329278281087,,,,-0.5126022958282123,,3.431208680510616,,-0.5126022958282123,,-3.431208680510616,-0.2129329278281087,-3.9438109763388285,2.9186063846824037,-0.21293292782810871,-3.943810976338829,2.9186063846824037,-2.7755575615628914e-17,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,171,172,68.4,0.16116997395746188,,,,-0.7174810418933265,,3.431208680510616,,-0.7174810418933265,,-3.431208680510616,0.16116997395746188,-4.148689722403943,2.7137276386172897,0.16116997395746188,-4.148689722403943,2.7137276386172897,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,172,173,68.8,0.5325252852918405,,,,-0.8716337585704559,,3.431208680510616,,-0.8716337585704559,,-3.431208680510616,0.5325252852918405,-4.302842439081072,2.5595749219401602,0.5325252852918405,-4.302842439081072,2.5595749219401602,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,173,174,69.2,0.879361744202673,,,,-0.9551539981067371,,3.431208680510616,,-0.9551539981067371,,-3.431208680510616,0.879361744202673,-4.3863626786173535,2.476054682403879,0.879361744202673,-4.3863626786173535,2.476054682403879,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,174,175,69.60000000000001,1.1721431258817727,,,,-0.9507058314706978,,3.431208680510616,,-0.9507058314706978,,-3.431208680510616,1.1721431258817727,-4.381914511981314,2.4805028490399184,1.1721431258817727,-4.381914511981314,2.4805028490399184,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,175,176,70.0,1.3748630076426258,,,,-0.8637032728918685,,3.431208680510616,,-0.8637032728918685,,-3.431208680510616,1.3748630076426258,-4.294911953402485,2.5675054076187473,1.3748630076426258,-4.294911953402485,2.5675054076187473,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,176,177,70.4,1.456017195978317,,,,-0.7212265939890188,,3.431208680510616,,-0.7212265939890188,,-3.431208680510616,1.456017195978317,-4.152435274499635,2.709982086521597,1.456017195978317,-4.152435274499635,2.709982086521597,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,177,178,70.8,1.4042256652822058,,,,-0.5289063025726914,,3.431208680510616,,-0.5289063025726914,,-3.431208680510616,1.4042256652822058,-3.9601149830833076,2.9023023779379247,1.4042256652822058,-3.9601149830833076,2.9023023779379247,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,178,179,71.2,1.230130649576177,,,,-0.2898783584049821,,3.431208680510616,,-0.2898783584049821,,-3.431208680510616,1.230130649576177,-3.721087038915598,3.141330322105634,1.230130649576177,-3.7210870389155986,3.141330322105634,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,179,180,71.60000000000001,0.9631790329327576,,,,-0.02681734305730027,,3.431208680510616,,-0.02681734305730027,,-3.431208680510616,0.9631790329327576,-3.4580260235679163,3.404391337453316,0.9631790329327576,-3.4580260235679163,3.4043913374533155,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,180,181,72.0,0.6372303741943447,,,,0.23214475760570874,,3.431208680510616,,0.23214475760570874,,-3.431208680510616,0.6372303741943447,-3.1990639229049074,3.663353438116325,0.6372303741943447,-3.1990639229049074,3.663353438116325,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,181,182,72.4,0.2788512642855826,,,,0.47224892759914155,,3.431208680510616,,0.47224892759914155,,-3.431208680510616,0.2788512642855826,-2.9589597529114746,3.9034576081097576,0.2788512642855826,-2.9589597529114746,3.903457608109757,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,182,183,72.8,-0.09405460692281395,,,,0.6826756642308406,,3.431208680510616,,0.6826756642308406,,-3.431208680510616,-0.09405460692281395,-2.7485330162797754,4.113884344741456,-0.09405460692281395,-2.7485330162797754,4.113884344741456,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,183,184,73.2,-0.46715105458819156,,,,0.8492161679728504,,3.431208680510616,,0.8492161679728504,,-3.431208680510616,-0.46715105458819156,-2.5819925125377656,4.280424848483467,-0.46715105458819156,-2.5819925125377656,4.280424848483467,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,184,185,73.60000000000001,-0.820510932870416,,,,0.9469560164915538,,3.431208680510616,,0.9469560164915538,,-3.431208680510616,-0.820510932870416,-2.4842526640190625,4.37816469700217,-0.820510932870416,-2.4842526640190625,4.37816469700217,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,185,186,74.0,-1.125656128868873,,,,0.9580452988078707,,3.431208680510616,,0.9580452988078707,,-3.431208680510616,-1.125656128868873,-2.4731633817027454,4.389253979318487,-1.125656128868873,-2.4731633817027454,4.389253979318487,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,186,187,74.4,-1.346969894798872,,,,0.8860371282788152,,3.431208680510616,,0.8860371282788152,,-3.431208680510616,-1.346969894798872,-2.545171552231801,4.317245808789432,-1.346969894798872,-2.545171552231801,4.317245808789432,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,187,188,74.8,-1.451905818295415,,,,0.7491125505801643,,3.431208680510616,,0.7491125505801643,,-3.431208680510616,-1.451905818295415,-2.6820961299304518,4.1803212310907805,-1.451905818295415,-2.6820961299304518,4.1803212310907805,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,188,189,75.2,-1.4237494145990641,,,,0.5666259700577829,,3.431208680510616,,0.5666259700577829,,-3.431208680510616,-1.4237494145990641,-2.864582710452833,3.9978346505683993,-1.4237494145990641,-2.864582710452833,3.9978346505683993,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,189,190,75.60000000000001,-1.2699932842575874,,,,0.3365730702601715,,3.431208680510616,,0.3365730702601715,,-3.431208680510616,-1.2699932842575874,-3.0946356102504446,3.7677817507707876,-1.2699932842575874,-3.0946356102504446,3.7677817507707876,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,190,191,76.0,-1.01712926002142,,,,0.07526897187795134,,3.431208680510616,,0.07526897187795134,,-3.431208680510616,-1.01712926002142,-3.3559397086326648,3.5064776523885675,-1.01712926002142,-3.355939708632665,3.5064776523885675,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,191,192,76.4,-0.6997952515409602,,,,-0.18577828777630231,,3.431208680510616,,-0.18577828777630231,,-3.431208680510616,-0.6997952515409602,-3.6169869682869185,3.2454303927343138,-0.6997952515409602,-3.6169869682869185,3.2454303927343138,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,192,193,76.80000000000001,-0.3460540233206323,,,,-0.43084095245328113,,3.431208680510616,,-0.43084095245328113,,-3.431208680510616,-0.3460540233206323,-3.862049632963897,3.000367728057335,-0.3460540233206323,-3.862049632963897,3.000367728057335,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,193,194,77.2,0.025567073580471368,,,,-0.6470128380112073,,3.431208680510616,,-0.6470128380112073,,-3.431208680510616,0.025567073580471368,-4.078221518521824,2.784195842499409,0.02556707358047137,-4.078221518521824,2.784195842499409,3.469446951953614e-18,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,194,195,77.60000000000001,0.3998642578193725,,,,-0.8228203936397583,,3.431208680510616,,-0.8228203936397583,,-3.431208680510616,0.3998642578193725,-4.254029074150375,2.608388286870858,0.39986425781937246,-4.254029074150375,2.608388286870858,-5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,195,196,78.0,0.7586485270624784,,,,-0.9354507985470185,,3.431208680510616,,-0.9354507985470185,,-3.431208680510616,0.7586485270624784,-4.366659479057635,2.4957578819635975,0.7586485270624784,-4.366659479057635,2.4957578819635975,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,196,197,78.4,1.0749345447100092,,,,-0.9626387079729438,,3.431208680510616,,-0.9626387079729438,,-3.431208680510616,1.0749345447100092,-4.39384738848356,2.468569972537672,1.0749345447100092,-4.39384738848356,2.468569972537672,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,197,198,78.80000000000001,1.3142525209789118,,,,-0.9039764075645443,,3.431208680510616,,-0.9039764075645443,,-3.431208680510616,1.3142525209789118,-4.335185088075161,2.5272322729460717,1.3142525209789118,-4.335185088075161,2.5272322729460717,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,198,199,79.2,1.4420805851130978,,,,-0.7786113995744383,,3.431208680510616,,-0.7786113995744383,,-3.431208680510616,1.4420805851130978,-4.209820080085055,2.652597280936178,1.4420805851130978,-4.209820080085055,2.652597280936178,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,199,200,79.60000000000001,1.437972359816458,,,,-0.602666061462894,,3.431208680510616,,-0.602666061462894,,-3.431208680510616,1.437972359816458,-4.03387474197351,2.828542619047722,1.437972359816458,-4.03387474197351,2.828542619047722,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,200,201,80.0,1.3055360397647306,,,,-0.3802058138303206,,3.431208680510616,,-0.3802058138303206,,-3.431208680510616,1.3055360397647306,-3.8114144943409367,3.0510028666802955,1.3055360397647306,-3.8114144943409367,3.0510028666802955,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,201,202,80.4,1.0681134468358793,,,,-0.12279403253120208,,3.431208680510616,,-0.12279403253120208,,-3.431208680510616,1.0681134468358793,-3.554002713041818,3.308414647979414,1.0681134468358793,-3.5540027130418186,3.308414647979414,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,202,203,80.80000000000001,0.7598431482564023,,,,0.1398807351265858,,3.431208680510616,,0.1398807351265858,,-3.431208680510616,0.7598431482564023,-3.2913279453840305,3.5710894156372017,0.7598431482564023,-3.29132794538403,3.5710894156372017,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,203,204,81.2,0.4110811807368025,,,,0.3876984404800806,,3.431208680510616,,0.3876984404800806,,-3.431208680510616,0.4110811807368025,-3.0435102400305354,3.818907120990697,0.41108118073680244,-3.0435102400305354,3.8189071209906973,-5.551115123125783e-17,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,204,205,81.60000000000001,0.04184380399761216,,,,0.610366046943413,,3.431208680510616,,0.610366046943413,,-3.431208680510616,0.04184380399761216,-2.820842633567203,4.041574727454029,0.04184380399761216,-2.820842633567203,4.041574727454029,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,205,206,82.0,-0.3332260978238395,,,,0.7955992946212446,,3.431208680510616,,0.7955992946212446,,-3.431208680510616,-0.3332260978238395,-2.6356093858893717,4.226807975131861,-0.3332260978238395,-2.6356093858893717,4.226807975131861,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,206,207,82.4,-0.6965179908230346,,,,0.9209294383145489,,3.431208680510616,,0.9209294383145489,,-3.431208680510616,-0.6965179908230346,-2.5102792421960674,4.352138118825165,-0.6965179908230346,-2.5102792421960674,4.352138118825165,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,207,208,82.80000000000001,-1.0228280417865252,,,,0.9645946102480987,,3.431208680510616,,0.9645946102480987,,-3.431208680510616,-1.0228280417865252,-2.4666140702625174,4.395803290758715,-1.0228280417865252,-2.4666140702625174,4.395803290758715,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,208,209,83.2,-1.2787397353411618,,,,0.9204003840290221,,3.431208680510616,,0.9204003840290221,,-3.431208680510616,-1.2787397353411618,-2.510808296481594,4.351609064539638,-1.2787397353411618,-2.510808296481594,4.351609064539638,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,209,210,83.60000000000001,-1.4290998576822054,,,,0.8045999162920529,,3.431208680510616,,0.8045999162920529,,-3.431208680510616,-1.4290998576822054,-2.626608764218563,4.235808596802669,-1.4290998576822054,-2.626608764218563,4.235808596802669,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,210,211,84.0,-1.4492961308682513,,,,0.6393376686022109,,3.431208680510616,,0.6393376686022109,,-3.431208680510616,-1.4492961308682513,-2.7918710119084054,4.070546349112827,-1.4492961308682513,-2.7918710119084054,4.070546349112827,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,211,212,84.4,-1.3386590946167611,,,,0.4238155682789979,,3.431208680510616,,0.4238155682789979,,-3.431208680510616,-1.3386590946167611,-3.007393112231618,3.855024248789614,-1.3386590946167611,-3.007393112231618,3.8550242487896136,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,212,213,84.80000000000001,-1.1176310858414522,,,,0.17062130117201274,,3.431208680510616,,0.17062130117201274,,-3.431208680510616,-1.1176310858414522,-3.2605873793386033,3.601829981682629,-1.1176310858414522,-3.260587379338603,3.601829981682629,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,213,214,85.2,-0.8198780136286341,,,,-0.09375420473717656,,3.431208680510616,,-0.09375420473717656,,-3.431208680510616,-0.8198780136286341,-3.5249628852477928,3.3374544757734395,-0.8198780136286341,-3.5249628852477928,3.3374544757734395,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,214,215,85.60000000000001,-0.4763807753657103,,,,-0.3440346387590689,,3.431208680510616,,-0.3440346387590689,,-3.431208680510616,-0.4763807753657103,-3.775243319269685,3.087174041751547,-0.4763807753657103,-3.7752433192696855,3.087174041751547,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,215,216,86.0,-0.10967274633817352,,,,-0.5717866472136108,,3.431208680510616,,-0.5717866472136108,,-3.431208680510616,-0.10967274633817352,-4.002995327724227,2.8594220332970055,-0.10967274633817352,-4.002995327724227,2.8594220332970055,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,216,217,86.4,0.26535761918994955,,,,-0.7656315284472807,,3.431208680510616,,-0.7656315284472807,,-3.431208680510616,0.26535761918994955,-4.196840208957897,2.6655771520633356,0.26535761918994955,-4.196840208957897,2.6655771520633356,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,217,218,86.80000000000001,0.6324106641983057,,,,-0.9041983819957092,,3.431208680510616,,-0.9041983819957092,,-3.431208680510616,0.6324106641983057,-4.3354070625063255,2.5270102985149068,0.6324106641983057,-4.3354070625063255,2.5270102985149068,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,218,219,87.2,0.9676831713040358,,,,-0.9632789017198907,,3.431208680510616,,-0.9632789017198907,,-3.431208680510616,0.9676831713040358,-4.394487582230507,2.4679297787907255,0.9676831713040358,-4.394487582230507,2.4679297787907255,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,219,220,87.60000000000001,1.2391296911589798,,,,-0.9338225293142964,,3.431208680510616,,-0.9338225293142964,,-3.431208680510616,1.2391296911589798,-4.365031209824912,2.4973861511963196,1.2391296911589798,-4.365031209824912,2.4973861511963196,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,220,221,88.0,1.4104613961073247,,,,-0.830417308688248,,3.431208680510616,,-0.830417308688248,,-3.431208680510616,1.4104613961073247,-4.261625989198864,2.600791371822368,1.4104613961073247,-4.261625989198864,2.600791371822368,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,221,222,88.4,1.455313592244573,,,,-0.672721374633546,,3.431208680510616,,-0.672721374633546,,-3.431208680510616,1.455313592244573,-4.103930055144162,2.75848730587707,1.455313592244573,-4.103930055144162,2.75848730587707,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,222,223,88.80000000000001,1.3673029637887713,,,,-0.4653244824151617,,3.431208680510616,,-0.4653244824151617,,-3.431208680510616,1.3673029637887713,-3.896533162925778,2.9658841980954542,1.3673029637887713,-3.8965331629257784,2.9658841980954542,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,223,224,89.2,1.1639349336525036,,,,-0.2174082740047645,,3.431208680510616,,-0.2174082740047645,,-3.431208680510616,1.1639349336525036,-3.6486169545153806,3.2138004065058516,1.1639349336525036,-3.648616954515381,3.2138004065058516,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,224,225,89.60000000000001,0.8771049020378341,,,,0.04680402436655868,,3.431208680510616,,0.04680402436655868,,-3.431208680510616,0.8771049020378341,-3.3844046561440573,3.478012704877175,0.8771049020378341,-3.384404656144057,3.478012704877175,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,225,226,90.0,0.5403326027680939,,,,0.2999348049592806,,3.431208680510616,,0.2999348049592806,,-3.431208680510616,0.5403326027680939,-3.1312738755513356,3.7311434854698966,0.5403326027680939,-3.131273875551336,3.7311434854698966,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,226,227,90.4,0.17642374670758104,,,,0.5328442934070616,,3.431208680510616,,0.5328442934070616,,-3.431208680510616,0.17642374670758104,-2.8983643871035545,3.9640529739176777,0.17642374670758104,-2.8983643871035545,3.9640529739176777,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,227,228,90.80000000000001,-0.1980143902670579,,,,0.7345787061890147,,3.431208680510616,,0.7345787061890147,,-3.431208680510616,-0.1980143902670579,-2.6966299743216013,4.1657873866996304,-0.19801439026705792,-2.6966299743216013,4.1657873866996304,-2.7755575615628914e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,228,229,91.2,-0.5680325653535834,,,,0.884372472290916,,3.431208680510616,,0.884372472290916,,-3.431208680510616,-0.5680325653535834,-2.5468362082197,4.315581152801532,-0.5680325653535834,-2.5468362082197,4.315581152801532,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,229,230,91.60000000000001,-0.9111983146611129,,,,0.9586410367702496,,3.431208680510616,,0.9586410367702496,,-3.431208680510616,-0.9111983146611129,-2.4725676437403665,4.389849717280866,-0.9111983146611128,-2.4725676437403665,4.389849717280866,1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,230,231,92.0,-1.1967103824193772,,,,0.9458574105277089,,3.431208680510616,,0.9458574105277089,,-3.431208680510616,-1.1967103824193772,-2.4853512699829072,4.377066091038325,-1.1967103824193772,-2.4853512699829072,4.377066091038325,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,231,232,92.4,-1.3887946013297094,,,,0.8538339364719333,,3.431208680510616,,0.8538339364719333,,-3.431208680510616,-1.3887946013297094,-2.577374744038683,4.285042616982549,-1.3887946013297094,-2.577374744038683,4.285042616982549,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,232,233,92.80000000000001,-1.457530740982393,,,,0.7053426335103722,,3.431208680510616,,0.7053426335103722,,-3.431208680510616,-1.457530740982393,-2.725866047000244,4.136551314020989,-1.457530740982393,-2.725866047000244,4.136551314020989,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,233,234,93.2,-1.3928743219505708,,,,0.5061097720853949,,3.431208680510616,,0.5061097720853949,,-3.431208680510616,-1.3928743219505708,-2.9250989084252215,3.9373184525960108,-1.3928743219505708,-2.9250989084252215,3.9373184525960108,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,234,235,93.60000000000001,-1.208120777493669,,,,0.2640349319705638,,3.431208680510616,,0.2640349319705638,,-3.431208680510616,-1.208120777493669,-3.167173748540052,3.69524361248118,-1.208120777493669,-3.167173748540052,3.6952436124811796,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,235,236,94.0,-0.9338817096084552,,,,0.001046994624911601,,3.431208680510616,,0.001046994624911601,,-3.431208680510616,-0.9338817096084552,-3.4301616858857047,3.4322556751355275,-0.9338817096084553,-3.4301616858857047,3.432255675135527,-1.1102230246251565e-16,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,236,237,94.4,-0.6039731875268514,,,,-0.2555403754638105,,3.431208680510616,,-0.2555403754638105,,-3.431208680510616,-0.6039731875268514,-3.6867490559744267,3.1756683050468055,-0.6039731875268514,-3.6867490559744267,3.1756683050468055,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,237,238,94.80000000000001,-0.24378307611030792,,,,-0.49256141500078193,,3.431208680510616,,-0.49256141500078193,,-3.431208680510616,-0.24378307611030792,-3.923770095511398,2.938647265509834,-0.24378307611030792,-3.923770095511398,2.938647265509834,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,238,239,95.2,0.12959888381707713,,,,-0.7004241794821049,,3.431208680510616,,-0.7004241794821049,,-3.431208680510616,0.12959888381707713,-4.131632859992721,2.730784501028511,0.12959888381707713,-4.131632859992721,2.730784501028511,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,239,240,95.60000000000001,0.502028612194221,,,,-0.8620792665425983,,3.431208680510616,,-0.8620792665425983,,-3.431208680510616,0.502028612194221,-4.293287947053214,2.569129413968018,0.502028612194221,-4.293287947053214,2.569129413968018,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,240,241,96.0,0.8518369721537153,,,,-0.9526114926194572,,3.431208680510616,,-0.9526114926194572,,-3.431208680510616,0.8518369721537153,-4.383820173130073,2.478597187891159,0.8518369721537155,-4.383820173130073,2.478597187891159,1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,241,242,96.4,1.150666362276015,,,,-0.9542000256885756,,3.431208680510616,,-0.9542000256885756,,-3.431208680510616,1.150666362276015,-4.3854087061991915,2.4770086548220407,1.150666362276015,-4.3854087061991915,2.4770086548220407,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,242,243,96.80000000000001,1.3621871736830289,,,,-0.8750448265610251,,3.431208680510616,,-0.8750448265610251,,-3.431208680510616,1.3621871736830289,-4.3062535070716415,2.556163853949591,1.3621871736830289,-4.3062535070716415,2.556163853949591,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,243,244,97.2,1.4546579847016652,,,,-0.7354216913915936,,3.431208680510616,,-0.7354216913915936,,-3.431208680510616,1.4546579847016652,-4.16663037190221,2.6957869891190223,1.4546579847016652,-4.16663037190221,2.6957869891190223,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,244,245,97.60000000000001,1.4137215850996476,,,,-0.545823555550869,,3.431208680510616,,-0.545823555550869,,-3.431208680510616,1.4137215850996476,-3.9770322360614854,2.885385124959747,1.4137215850996476,-3.9770322360614854,2.885385124959747,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,245,246,98.0,1.2486611308216284,,,,-0.30936247620444945,,3.431208680510616,,-0.30936247620444945,,-3.431208680510616,1.2486611308216284,-3.7405711567150655,3.1218462043061668,1.2486611308216284,-3.7405711567150655,3.1218462043061668,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,246,247,98.4,0.9881166948561613,,,,-0.0486203172086694,,3.431208680510616,,-0.0486203172086694,,-3.431208680510616,0.9881166948561613,-3.4798289977192853,3.382588363301947,0.9881166948561613,-3.4798289977192858,3.382588363301947,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,247,248,98.80000000000001,0.6660719557047382,,,,0.20993954995150169,,3.431208680510616,,0.20993954995150169,,-3.431208680510616,0.6660719557047382,-3.2212691305591146,3.6411482304621177,0.6660719557047382,-3.2212691305591146,3.6411482304621177,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,248,249,99.2,0.3099628913532755,,,,0.4510141349135526,,3.431208680510616,,0.4510141349135526,,-3.431208680510616,0.3099628913532755,-2.9801945455970635,3.8822228154241687,0.3099628913532755,-2.9801945455970635,3.8822228154241687,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,249,250,99.60000000000001,-0.062232610007113484,,,,0.6664429085383403,,3.431208680510616,,0.6664429085383403,,-3.431208680510616,-0.062232610007113484,-2.764765771972276,4.097651589048956,-0.062232610007113484,-2.764765771972276,4.097651589048956,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,250,251,100.0,-0.43593199663867505,,,,0.8377112545199901,,3.431208680510616,,0.8377112545199901,,-3.431208680510616,-0.43593199663867505,-2.593497425990626,4.268919935030606,-0.43593199663867505,-2.593497425990626,4.268919935030606,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,251,252,100.4,-0.7919561075103592,,,,0.94279909614277,,3.431208680510616,,0.94279909614277,,-3.431208680510616,-0.7919561075103592,-2.488409584367846,4.374007776653386,-0.7919561075103592,-2.488409584367846,4.374007776653386,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,252,253,100.80000000000001,-1.1023730923347268,,,,0.9602941220744942,,3.431208680510616,,0.9602941220744942,,-3.431208680510616,-1.1023730923347268,-2.470914558436122,4.39150280258511,-1.1023730923347268,-2.470914558436122,4.39150280258511,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,253,254,101.2,-1.3322875003837258,,,,0.8949703050435838,,3.431208680510616,,0.8949703050435838,,-3.431208680510616,-1.3322875003837258,-2.5362383754670326,4.3261789855542,-1.3322875003837258,-2.5362383754670326,4.3261789855542,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,254,255,101.60000000000001,-1.4484078683392376,,,,0.7637159713190796,,3.431208680510616,,0.7637159713190796,,-3.431208680510616,-1.4484078683392376,-2.6674927091915364,4.194924651829695,-1.4484078683392376,-2.6674927091915364,4.194924651829695,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,255,256,102.0,-1.4311081941300148,,,,0.5838277705063633,,3.431208680510616,,0.5838277705063633,,-3.431208680510616,-1.4311081941300148,-2.8473809100042526,4.01503645101698,-1.4311081941300148,-2.8473809100042526,4.01503645101698,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,256,257,102.4,-1.2869740790564645,,,,0.35539857256634705,,3.431208680510616,,0.35539857256634705,,-3.431208680510616,-1.2869740790564645,-3.0758101079442692,3.786607253076963,-1.2869740790564645,-3.0758101079442692,3.786607253076963,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,257,258,102.80000000000001,-1.041047768786222,,,,0.09646996598760162,,3.431208680510616,,0.09646996598760162,,-3.431208680510616,-1.041047768786222,-3.3347387145230143,3.527678646498218,-1.041047768786222,-3.3347387145230147,3.527678646498218,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,258,259,103.2,-0.7278395457258765,,,,-0.16494329266015026,,3.431208680510616,,-0.16494329266015026,,-3.431208680510616,-0.7278395457258765,-3.5961519731707665,3.2662653878504657,-0.7278395457258765,-3.5961519731707665,3.2662653878504657,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,259,260,103.60000000000001,-0.3763205056214073,,,,-0.4088942582312538,,3.431208680510616,,-0.4088942582312538,,-3.431208680510616,-0.3763205056214073,-3.84010293874187,3.0223144222793623,-0.3763205056214073,-3.8401029387418695,3.0223144222793623,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,260,261,104.0,-0.00592419125778649,,,,-0.629606419156944,,3.431208680510616,,-0.629606419156944,,-3.431208680510616,-0.00592419125778649,-4.06081509966756,2.801602261353672,-0.00592419125778649,-4.06081509966756,2.801602261353672,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,261,262,104.4,0.3687571872818226,,,,-0.8108760986996951,,3.431208680510616,,-0.8108760986996951,,-3.431208680510616,0.3687571872818226,-4.242084779210312,2.620332581810921,0.3687571872818226,-4.242084779210312,2.620332581810921,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,262,263,104.80000000000001,0.7296869328750918,,,,-0.9291293991256204,,3.431208680510616,,-0.9291293991256204,,-3.431208680510616,0.7296869328750918,-4.360338079636237,2.5020792813849955,0.7296869328750918,-4.360338079636237,2.5020792813849955,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,263,264,105.2,1.050836949325654,,,,-0.9636318075713586,,3.431208680510616,,-0.9636318075713586,,-3.431208680510616,1.050836949325654,-4.394840488081975,2.4675768729392575,1.050836949325654,-4.394840488081975,2.4675768729392575,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,264,265,105.60000000000001,1.2981088845317565,,,,-0.9123266350172892,,3.431208680510616,,-0.9123266350172892,,-3.431208680510616,1.2981088845317565,-4.343535315527905,2.518882045493327,1.2981088845317565,-4.343535315527905,2.518882045493327,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,265,266,106.0,1.4365388676635171,,,,-0.7908629266147009,,3.431208680510616,,-0.7908629266147009,,-3.431208680510616,1.4365388676635171,-4.222071607125317,2.6403457538959154,1.4365388676635171,-4.222071607125317,2.6403457538959154,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,266,267,106.4,1.4439460873833687,,,,-0.6205575355556288,,3.431208680510616,,-0.6205575355556288,,-3.431208680510616,1.4439460873833687,-4.051766216066245,2.8106511449549876,1.4439460873833687,-4.051766216066245,2.8106511449549876,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,267,268,106.80000000000001,1.3213396180938353,,,,-0.4001979759897312,,3.431208680510616,,-0.4001979759897312,,-3.431208680510616,1.3213396180938353,-3.8314066565003473,3.031010704520885,1.3213396180938353,-3.8314066565003473,3.031010704520885,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,268,269,107.2,1.091328906864519,,,,-0.14384186732826532,,3.431208680510616,,-0.14384186732826532,,-3.431208680510616,1.091328906864519,-3.5750505478388814,3.287366813182351,1.091328906864519,-3.5750505478388814,3.2873668131823504,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,269,270,107.60000000000001,0.7877284467342107,,,,0.11821523896653487,,3.431208680510616,,0.11821523896653487,,-3.431208680510616,0.7877284467342107,-3.3129934415440814,3.549423919477151,0.7877284467342107,-3.3129934415440814,3.549423919477151,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,270,271,108.0,0.44209904096312475,,,,0.36898179394776165,,3.431208680510616,,0.36898179394776165,,-3.431208680510616,0.44209904096312475,-3.0622268865628546,3.8001904744583777,0.4420990409631248,-3.0622268865628546,3.800190474458378,5.551115123125783e-17,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,271,272,108.4,0.0733985994090082,,,,0.5913118713892198,,3.431208680510616,,0.5913118713892198,,-3.431208680510616,0.0733985994090082,-2.839896809121396,4.022520551899836,0.0733985994090082,-2.839896809121396,4.022520551899836,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,272,273,108.80000000000001,-0.30158416501718216,,,,0.7806967108115205,,3.431208680510616,,0.7806967108115205,,-3.431208680510616,-0.30158416501718216,-2.6505119696990955,4.211905391322136,-0.30158416501718216,-2.6505119696990955,4.211905391322136,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,273,274,109.2,-0.666590967242922,,,,0.913732320835496,,3.431208680510616,,0.913732320835496,,-3.431208680510616,-0.666590967242922,-2.51747635967512,4.344941001346112,-0.666590967242922,-2.51747635967512,4.344941001346112,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,274,275,109.60000000000001,-0.9972454948734856,,,,0.9643038206983559,,3.431208680510616,,0.9643038206983559,,-3.431208680510616,-0.9972454948734856,-2.46690485981226,4.395512501208972,-0.9972454948734857,-2.46690485981226,4.395512501208972,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,275,276,110.0,-1.2605969088063382,,,,0.927321327558738,,3.431208680510616,,0.927321327558738,,-3.431208680510616,-1.2605969088063382,-2.503887352951878,4.358530008069354,-1.2605969088063382,-2.503887352951878,4.358530008069354,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,276,277,110.4,-1.4209396616437722,,,,0.8181386818888995,,3.431208680510616,,0.8181386818888995,,-3.431208680510616,-1.4209396616437722,-2.6130699986217167,4.249347362399516,-1.4209396616437722,-2.6130699986217167,4.249347362399516,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,277,278,110.80000000000001,-1.4527336082879638,,,,0.6545920925425399,,3.431208680510616,,0.6545920925425399,,-3.431208680510616,-1.4527336082879638,-2.776616587968076,4.0858007730531565,-1.4527336082879638,-2.776616587968076,4.0858007730531565,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,278,279,111.2,-1.3524335129888039,,,,0.4420713666610177,,3.431208680510616,,0.4420713666610177,,-3.431208680510616,-1.3524335129888039,-2.9891373138495982,3.873280047171634,-1.3524335129888039,-2.9891373138495982,3.8732800471716335,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,279,280,111.60000000000001,-1.139359374351082,,,,0.1913290187679632,,3.431208680510616,,0.1913290187679632,,-3.431208680510616,-1.139359374351082,-3.239879661742653,3.6225376992785794,-1.139359374351082,-3.239879661742653,3.6225376992785794,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,280,281,112.0,-0.8465517301864323,,,,-0.07102466241840712,,3.431208680510616,,-0.07102466241840712,,-3.431208680510616,-0.8465517301864323,-3.5022333429290233,3.360184018092209,-0.8465517301864323,-3.502233342929023,3.360184018092209,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,281,282,112.4,-0.5063009613756204,,,,-0.3229335179188591,,3.431208680510616,,-0.3229335179188591,,-3.431208680510616,-0.5063009613756204,-3.7541421984294754,3.108275162591757,-0.5063009613756204,-3.7541421984294754,3.108275162591757,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,282,283,112.80000000000001,-0.1412525620811577,,,,-0.5547626699033025,,3.431208680510616,,-0.5547626699033025,,-3.431208680510616,-0.1412525620811577,-3.9859713504139185,2.8764460106073138,-0.1412525620811577,-3.9859713504139185,2.8764460106073138,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,283,284,113.2,0.23393872881128883,,,,-0.7510448547504971,,3.431208680510616,,-0.7510448547504971,,-3.431208680510616,0.23393872881128883,-4.182253535261113,2.6801638257601192,0.23393872881128883,-4.182253535261113,2.6801638257601192,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,284,285,113.60000000000001,0.6022440592622721,,,,-0.894596846004045,,3.431208680510616,,-0.894596846004045,,-3.431208680510616,0.6022440592622721,-4.325805526514661,2.536611834506571,0.6022440592622721,-4.325805526514661,2.536611834506571,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,285,286,114.0,0.941283623551429,,,,-0.9615102618249367,,3.431208680510616,,-0.9615102618249367,,-3.431208680510616,0.941283623551429,-4.392718942335553,2.469698418685679,0.9412836235514291,-4.392718942335553,2.469698418685679,1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,286,287,114.4,1.2195187406221384,,,,-0.9399572753388439,,3.431208680510616,,-0.9399572753388439,,-3.431208680510616,1.2195187406221384,-4.3711659558494596,2.4912514051717722,1.2195187406221384,-4.3711659558494596,2.4912514051717722,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,287,288,114.80000000000001,1.4008554091695478,,,,-0.8421257748259283,,3.431208680510616,,-0.8421257748259283,,-3.431208680510616,1.4008554091695478,-4.273334455336545,2.5890829056846876,1.4008554091695478,-4.273334455336545,2.5890829056846876,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,288,289,115.2,1.4568146609030201,,,,-0.6879537229274285,,3.431208680510616,,-0.6879537229274285,,-3.431208680510616,1.4568146609030201,-4.119162403438045,2.7432549575831877,1.4568146609030201,-4.119162403438045,2.7432549575831877,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,289,290,115.60000000000001,1.3794598084100878,,,,-0.48390669587291374,,3.431208680510616,,-0.48390669587291374,,-3.431208680510616,1.3794598084100878,-3.91511537638353,2.9473019846377024,1.3794598084100878,-3.9151153763835302,2.9473019846377024,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,290,291,116.0,1.1846658249087212,,,,-0.23812497410513112,,3.431208680510616,,-0.23812497410513112,,-3.431208680510616,1.1846658249087212,-3.6693336546157473,3.193083706405485,1.1846658249087212,-3.6693336546157473,3.193083706405485,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,291,292,116.4,0.9037073791060891,,,,0.024635660205041546,,3.431208680510616,,0.024635660205041546,,-3.431208680510616,0.9037073791060891,-3.4065730203055744,3.455844340715658,0.9037073791060891,-3.406573020305575,3.455844340715658,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,292,293,116.80000000000001,0.5697036963709106,,,,0.27944038378175406,,3.431208680510616,,0.27944038378175406,,-3.431208680510616,0.5697036963709106,-3.151768296728862,3.71064906429237,0.5697036963709106,-3.151768296728862,3.7106490642923697,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,293,294,117.2,0.2079717766984603,,,,0.5138665452633244,,3.431208680510616,,0.5138665452633244,,-3.431208680510616,0.2079717766984603,-2.9173421352472917,3.9450752257739405,0.2079717766984603,-2.9173421352472917,3.9450752257739405,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,294,295,117.60000000000001,-0.16625234488384283,,,,0.718778480921027,,3.431208680510616,,0.718778480921027,,-3.431208680510616,-0.16625234488384283,-2.712430199589589,4.1499871614316435,-0.16625234488384283,-2.712430199589589,4.1499871614316435,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,295,296,118.0,-0.537235860563481,,,,0.8740838508343358,,3.431208680510616,,0.8740838508343358,,-3.431208680510616,-0.537235860563481,-2.5571248296762805,4.305292531344952,-0.537235860563481,-2.5571248296762805,4.305292531344952,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,296,297,118.4,-0.8837103944515575,,,,0.9559363894659665,,3.431208680510616,,0.9559363894659665,,-3.431208680510616,-0.8837103944515575,-2.4752722910446496,4.387145069976583,-0.8837103944515575,-2.4752722910446496,4.387145069976583,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,297,298,118.80000000000001,-1.175592191650984,,,,0.9500021512094877,,3.431208680510616,,0.9500021512094877,,-3.431208680510616,-1.175592191650984,-2.4812065293011285,4.381210831720104,-1.175592191650984,-2.4812065293011285,4.381210831720104,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,298,299,119.2,-1.376887106021746,,,,0.8645887346831272,,3.431208680510616,,0.8645887346831272,,-3.431208680510616,-1.376887106021746,-2.566619945827489,4.295797415193744,-1.376887106021746,-2.566619945827489,4.295797415193744,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,299,300,119.60000000000001,-1.456795879784867,,,,0.7196755133959405,,3.431208680510616,,0.7196755133959405,,-3.431208680510616,-1.456795879784867,-2.7115331671146756,4.150884193906556,-1.456795879784867,-2.7115331671146756,4.150884193906556,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,300,301,120.0,-1.4034928908755857,,,,0.5243198967161462,,3.431208680510616,,0.5243198967161462,,-3.431208680510616,-1.4034928908755857,-2.9068887837944697,3.9555285772267625,-1.4034928908755857,-2.9068887837944697,3.9555285772267625,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,301,302,120.4,-1.2274125822213255,,,,0.284074138093781,,3.431208680510616,,0.284074138093781,,-3.431208680510616,-1.2274125822213255,-3.1471345424168353,3.715282818604397,-1.2274125822213255,-3.147134542416835,3.715282818604397,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,302,303,120.80000000000001,-0.9593929948320483,,,,0.023354206990284974,,3.431208680510616,,0.023354206990284974,,-3.431208680510616,-0.9593929948320483,-3.4078544735203313,3.454562887500901,-0.9593929948320484,-3.4078544735203318,3.454562887500901,-1.1102230246251565e-16,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,303,304,121.2,-0.6331046553739403,,,,-0.2333076113130048,,3.431208680510616,,-0.2333076113130048,,-3.431208680510616,-0.6331046553739403,-3.6645162918236207,3.1979010691976115,-0.6331046553739403,-3.664516291823621,3.1979010691976115,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,304,305,121.60000000000001,-0.2750288682933185,,,,-0.473441164753087,,3.431208680510616,,-0.473441164753087,,-3.431208680510616,-0.2750288682933185,-3.904649845263703,2.957767515757529,-0.2750288682933185,-3.904649845263703,2.957767515757529,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,305,306,122.0,0.09813125701955633,,,,-0.6849161139763981,,3.431208680510616,,-0.6849161139763981,,-3.431208680510616,0.09813125701955633,-4.116124794487014,2.746292566534218,0.09813125701955633,-4.116124794487014,2.746292566534218,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,306,307,122.4,0.4710381688484179,,,,-0.8501874964164938,,3.431208680510616,,-0.8501874964164938,,-3.431208680510616,0.4710381688484179,-4.28139617692711,2.5810211840941224,0.47103816884841787,-4.28139617692711,2.5810211840941224,-5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,307,308,122.80000000000001,0.8239473446947723,,,,-0.9472556362998752,,3.431208680510616,,-0.9472556362998752,,-3.431208680510616,0.8239473446947723,-4.378464316810492,2.483953044210741,0.8239473446947723,-4.378464316810492,2.483953044210741,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,308,309,123.2,1.128243527593169,,,,-0.957874326732289,,3.431208680510616,,-0.957874326732289,,-3.431208680510616,1.128243527593169,-4.389083007242905,2.473334353778327,1.128243527593169,-4.389083007242905,2.473334353778327,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,309,310,123.60000000000001,1.348667166202281,,,,-0.885719391215824,,3.431208680510616,,-0.885719391215824,,-3.431208680510616,1.348667166202281,-4.31692807172644,2.545489289294792,1.348667166202281,-4.31692807172644,2.545489289294792,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,310,311,124.0,1.4521784331073786,,,,-0.7497111812134568,,3.431208680510616,,-0.7497111812134568,,-3.431208680510616,1.4521784331073786,-4.180919861724073,2.6814974992971594,1.4521784331073786,-4.180919861724073,2.6814974992971594,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,311,312,124.4,1.4224136020204425,,,,-0.5629300501051359,,3.431208680510616,,-0.5629300501051359,,-3.431208680510616,1.4224136020204425,-3.994138730615752,2.8682786304054804,1.4224136020204425,-3.994138730615752,2.8682786304054804,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,312,313,124.80000000000001,1.2668690918726004,,,,-0.33002223636156797,,3.431208680510616,,-0.33002223636156797,,-3.431208680510616,1.2668690918726004,-3.7612309168721842,3.101186444149048,1.2668690918726004,-3.7612309168721847,3.101186444149048,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,313,314,125.2,1.0128332457431513,,,,-0.07053245162557023,,3.431208680510616,,-0.07053245162557023,,-3.431208680510616,1.0128332457431513,-3.5017411321361864,3.360676228885046,1.0128332457431513,-3.5017411321361864,3.3606762288850454,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,314,315,125.60000000000001,0.694676686447311,,,,0.1892969935740276,,3.431208680510616,,0.1892969935740276,,-3.431208680510616,0.694676686447311,-3.2419116869365885,3.6205056740846437,0.694676686447311,-3.241911686936588,3.6205056740846437,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,315,316,126.0,0.340840897739071,,,,0.43113128526551125,,3.431208680510616,,0.43113128526551125,,-3.431208680510616,0.340840897739071,-3.0000773952451047,3.8623399657761275,0.340840897739071,-3.0000773952451047,3.862339965776128,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,316,317,126.4,-0.030535631152843,,,,0.6491412348203195,,3.431208680510616,,0.6491412348203195,,-3.431208680510616,-0.030535631152843,-2.7820674456902967,4.0803499153309355,-0.030535631152843,-2.7820674456902967,4.0803499153309355,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,317,318,126.80000000000001,-0.40474131016551756,,,,0.8255388953152595,,3.431208680510616,,0.8255388953152595,,-3.431208680510616,-0.40474131016551756,-2.6056697851953565,4.256747575825876,-0.4047413101655175,-2.6056697851953565,4.256747575825876,5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,318,319,127.2,-0.7630914825003876,,,,0.9363801071394949,,3.431208680510616,,0.9363801071394949,,-3.431208680510616,-0.7630914825003876,-2.4948285733711213,4.367588787650111,-0.7630914825003876,-2.4948285733711213,4.367588787650111,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,319,320,127.60000000000001,-1.078811669013771,,,,0.9617932868369639,,3.431208680510616,,0.9617932868369639,,-3.431208680510616,-1.078811669013771,-2.4694153936736525,4.39300196734758,-1.078811669013771,-2.4694153936736525,4.39300196734758,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,320,321,128.0,-1.3167437941221165,,,,0.903603100770843,,3.431208680510616,,0.903603100770843,,-3.431208680510616,-1.3167437941221165,-2.527605579739773,4.334811781281459,-1.3167437941221165,-2.527605579739773,4.334811781281459,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,321,322,128.4,-1.443319916912176,,,,0.7784542818700747,,3.431208680510616,,0.7784542818700747,,-3.431208680510616,-1.443319916912176,-2.6527543986405413,4.2096629623806905,-1.443319916912176,-2.6527543986405413,4.2096629623806905,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,322,323,128.8,-1.437784903833378,,,,0.6005437544872844,,3.431208680510616,,0.6005437544872844,,-3.431208680510616,-1.437784903833378,-2.830664926023332,4.031752434997901,-1.437784903833378,-2.830664926023332,4.031752434997901,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,323,324,129.20000000000002,-1.3033839811432524,,,,0.3747703329376939,,3.431208680510616,,0.3747703329376939,,-3.431208680510616,-1.3033839811432524,-3.0564383475729224,3.80597901344831,-1.3033839811432524,-3.0564383475729224,3.8059790134483102,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,324,325,129.6,-1.0645344228330171,,,,0.11818950941998695,,3.431208680510616,,0.11818950941998695,,-3.431208680510616,-1.0645344228330171,-3.3130191710906294,3.549398189930603,-1.0645344228330171,-3.3130191710906294,3.5493981899306024,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,325,326,130.0,-0.7556882365632185,,,,-0.1434865255433964,,3.431208680510616,,-0.1434865255433964,,-3.431208680510616,-0.7556882365632185,-3.5746952060540127,3.2877221549672195,-0.7556882365632185,-3.5746952060540127,3.2877221549672195,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,326,327,130.4,-0.40666359978831307,,,,-0.38876035519707325,,3.431208680510616,,-0.38876035519707325,,-3.431208680510616,-0.40666359978831307,-3.819969035707689,3.042448325313543,-0.40666359978831307,-3.8199690357076888,3.042448325313543,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,327,328,130.8,-0.03737877630589232,,,,-0.6120220249185713,,3.431208680510616,,-0.6120220249185713,,-3.431208680510616,-0.03737877630589232,-4.043230705429187,2.819186655592045,-0.03737877630589232,-4.043230705429187,2.819186655592045,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,328,329,131.20000000000002,0.3380727585024293,,,,-0.7958573513159115,,3.431208680510616,,-0.7958573513159115,,-3.431208680510616,0.3380727585024293,-4.227066031826528,2.6353513291947044,0.3380727585024293,-4.227066031826528,2.6353513291947044,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,329,330,131.6,0.7002543233403572,,,,-0.9217033039068748,,3.431208680510616,,-0.9217033039068748,,-3.431208680510616,0.7002543233403572,-4.352911984417491,2.5095053766037414,0.7002543233403572,-4.352911984417491,2.5095053766037414,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,330,331,132.0,1.0263272793370914,,,,-0.9654685013557026,,3.431208680510616,,-0.9654685013557026,,-3.431208680510616,1.0263272793370914,-4.396677181866319,2.4657401791549134,1.0263272793370914,-4.396677181866319,2.4657401791549134,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,331,332,132.4,1.2812750086926168,,,,-0.9203781561367381,,3.431208680510616,,-0.9203781561367381,,-3.431208680510616,1.2812750086926168,-4.351586836647354,2.510830524373878,1.2812750086926168,-4.351586836647354,2.510830524373878,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,332,333,132.8,1.430110663677183,,,,-0.8043686548647967,,3.431208680510616,,-0.8043686548647967,,-3.431208680510616,1.430110663677183,-4.235577335375413,2.6268400256458193,1.430110663677183,-4.235577335375413,2.6268400256458193,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,333,334,133.20000000000002,1.4488164797585374,,,,-0.6360537258860056,,3.431208680510616,,-0.6360537258860056,,-3.431208680510616,1.4488164797585374,-4.067262406396622,2.7951549546246106,1.4488164797585374,-4.067262406396622,2.7951549546246106,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,334,335,133.6,1.3363706397896882,,,,-0.4183137082011943,,3.431208680510616,,-0.4183137082011943,,-3.431208680510616,1.3363706397896882,-3.8495223887118106,3.0128949723094216,1.3363706397896882,-3.849522388711811,3.0128949723094216,0.0,-4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,335,336,134.0,1.11412696431217,,,,-0.166173286781811,,3.431208680510616,,-0.166173286781811,,-3.431208680510616,1.11412696431217,-3.597381967292427,3.2650353937288052,1.11412696431217,-3.597381967292427,3.2650353937288052,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,336,337,134.4,0.8154275546234249,,,,0.09605768425948462,,3.431208680510616,,0.09605768425948462,,-3.431208680510616,0.8154275546234249,-3.3351509962511314,3.527266364770101,0.815427554623425,-3.3351509962511314,3.527266364770101,1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,337,338,134.8,0.47254328898920905,,,,0.34255831087223343,,3.431208680510616,,0.34255831087223343,,-3.431208680510616,0.47254328898920905,-3.0886503696383825,3.7737669913828498,0.47254328898920905,-3.0886503696383825,3.7737669913828498,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,338,339,135.20000000000002,0.10511100112575442,,,,0.574790305342865,,3.431208680510616,,0.574790305342865,,-3.431208680510616,0.10511100112575442,-2.856418375167751,4.0059989858534815,0.10511100112575442,-2.856418375167751,4.0059989858534815,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,339,340,135.6,-0.2697452746688521,,,,0.7684500556380598,,3.431208680510616,,0.7684500556380598,,-3.431208680510616,-0.2697452746688521,-2.6627586248725565,4.199658736148676,-0.2697452746688521,-2.6627586248725565,4.199658736148676,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,340,341,136.0,-0.6362959580664652,,,,0.9039756463353565,,3.431208680510616,,0.9039756463353565,,-3.431208680510616,-0.6362959580664652,-2.52723303417526,4.335184326845972,-0.6362959580664652,-2.52723303417526,4.335184326845972,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,341,342,136.4,-0.9715027534585624,,,,0.9639420845883093,,3.431208680510616,,0.9639420845883093,,-3.431208680510616,-0.9715027534585624,-2.4672665959223066,4.395150765098926,-0.9715027534585625,-2.4672665959223066,4.395150765098926,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,342,343,136.8,-1.242067493156243,,,,0.9349415362203747,,3.431208680510616,,0.9349415362203747,,-3.431208680510616,-1.242067493156243,-2.4962671442902415,4.366150216730991,-1.242067493156243,-2.4962671442902415,4.366150216730991,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,343,344,137.20000000000002,-1.4124394962869016,,,,0.8306162939979412,,3.431208680510616,,0.8306162939979412,,-3.431208680510616,-1.4124394962869016,-2.600592386512675,4.261824974508557,-1.4124394962869016,-2.600592386512675,4.261824974508557,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,344,345,137.6,-1.4552769180043967,,,,0.6702980776370768,,3.431208680510616,,0.6702980776370768,,-3.431208680510616,-1.4552769180043967,-2.7609106028735395,4.101506758147693,-1.4552769180043967,-2.7609106028735395,4.101506758147693,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,345,346,138.0,-1.3656868996314664,,,,0.46136167550926904,,3.431208680510616,,0.46136167550926904,,-3.431208680510616,-1.3656868996314664,-2.969847005001347,3.892570356019885,-1.3656868996314664,-2.969847005001347,3.892570356019885,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,346,347,138.4,-1.160674345061922,,,,0.21228078644152504,,3.431208680510616,,0.21228078644152504,,-3.431208680510616,-1.160674345061922,-3.218927894069091,3.643489466952141,-1.160674345061922,-3.2189278940690906,3.643489466952141,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,347,348,138.8,-0.8730812361726902,,,,-0.04936693079607182,,3.431208680510616,,-0.04936693079607182,,-3.431208680510616,-0.8730812361726902,-3.480575611306688,3.3818417497145443,-0.8730812361726901,-3.4805756113066884,3.3818417497145448,1.1102230246251565e-16,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,348,349,139.20000000000002,-0.5357515972317974,,,,-0.3021254703159555,,3.431208680510616,,-0.3021254703159555,,-3.431208680510616,-0.5357515972317974,-3.733334150826572,3.1290832101946604,-0.5357515972317974,-3.733334150826572,3.12908321019466,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,349,350,139.6,-0.17210154209344816,,,,-0.5351378769499282,,3.431208680510616,,-0.5351378769499282,,-3.431208680510616,-0.17210154209344816,-3.966346557460544,2.896070803560688,-0.17210154209344816,-3.966346557460544,2.896070803560688,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,350,351,140.0,0.20247566062515193,,,,-0.7363919541143742,,3.431208680510616,,-0.7363919541143742,,-3.431208680510616,0.20247566062515193,-4.16760063462499,2.694816726396242,0.20247566062515193,-4.16760063462499,2.694816726396242,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,351,352,140.4,0.572348315345845,,,,-0.8862903131066803,,3.431208680510616,,-0.8862903131066803,,-3.431208680510616,0.572348315345845,-4.3174989936172965,2.5449183674039357,0.572348315345845,-4.3174989936172965,2.5449183674039357,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,352,353,140.8,0.9149558702859468,,,,-0.9592273354906995,,3.431208680510616,,-0.9592273354906995,,-3.431208680510616,0.9149558702859468,-4.390436016001315,2.4719813450199166,0.9149558702859468,-4.390436016001315,2.4719813450199166,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,353,354,141.20000000000002,1.1997004873887076,,,,-0.9459954975023773,,3.431208680510616,,-0.9459954975023773,,-3.431208680510616,1.1997004873887076,-4.3772041780129936,2.4852131830082387,1.1997004873887076,-4.3772041780129936,2.4852131830082387,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,354,355,141.6,1.3902914520065384,,,,-0.8531311696857486,,3.431208680510616,,-0.8531311696857486,,-3.431208680510616,1.3902914520065384,-4.284339850196365,2.5780775108248672,1.3902914520065384,-4.284339850196365,2.5780775108248672,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,355,356,142.0,1.4574666276617945,,,,-0.702718980991672,,3.431208680510616,,-0.702718980991672,,-3.431208680510616,1.4574666276617945,-4.133927661502288,2.7284896995189443,1.4574666276617945,-4.133927661502288,2.7284896995189443,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,356,357,142.4,1.3909976753288662,,,,-0.5021315883499085,,3.431208680510616,,-0.5021315883499085,,-3.431208680510616,1.3909976753288662,-3.9333402688605243,2.929077092160708,1.3909976753288662,-3.9333402688605243,2.929077092160708,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,357,358,142.8,1.204682989275311,,,,-0.2590502510029572,,3.431208680510616,,-0.2590502510029572,,-3.431208680510616,1.204682989275311,-3.6902589315135734,3.172158429507659,1.204682989275311,-3.6902589315135734,3.1721584295076584,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,358,359,143.20000000000002,0.9311908593349936,,,,0.0020505991861181263,,3.431208680510616,,0.0020505991861181263,,-3.431208680510616,0.9311908593349936,-3.429158081324498,3.4332592796967343,0.9311908593349936,-3.429158081324498,3.4332592796967343,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,359,360,143.6,0.5993449738962845,,,,0.25727491229115057,,3.431208680510616,,0.25727491229115057,,-3.431208680510616,0.5993449738962845,-3.1739337682194657,3.6884835928017665,0.5993449738962845,-3.1739337682194653,3.6884835928017665,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,360,361,144.0,0.23933507574438417,,,,0.4942717447399497,,3.431208680510616,,0.4942717447399497,,-3.431208680510616,0.23933507574438417,-2.9369369357706665,3.9254804252505657,0.23933507574438417,-2.9369369357706665,3.9254804252505657,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,361,362,144.4,-0.13419159147737653,,,,0.7034421487200899,,3.431208680510616,,0.7034421487200899,,-3.431208680510616,-0.13419159147737653,-2.727766531790526,4.134650829230706,-0.13419159147737653,-2.727766531790526,4.134650829230706,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,362,363,144.8,-0.5062932358092879,,,,0.863530169374561,,3.431208680510616,,0.863530169374561,,-3.431208680510616,-0.5062932358092879,-2.567678511136055,4.294738849885177,-0.5062932358092879,-2.567678511136055,4.294738849885177,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,363,364,145.20000000000002,-0.8559079904125009,,,,0.9522776174976845,,3.431208680510616,,0.9522776174976845,,-3.431208680510616,-0.8559079904125009,-2.4789310630129315,4.3834862980083,-0.8559079904125008,-2.4789310630129315,4.3834862980083,1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,364,365,145.6,-1.1537892226668065,,,,0.9541397363369012,,3.431208680510616,,0.9541397363369012,,-3.431208680510616,-1.1537892226668065,-2.477068944173715,4.385348416847517,-1.1537892226668065,-2.477068944173715,4.385348416847517,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,365,366,146.0,-1.364347268669485,,,,0.8739095293503277,,3.431208680510616,,0.8739095293503277,,-3.431208680510616,-1.364347268669485,-2.5572991511602883,4.305118209860944,-1.364347268669485,-2.5572991511602883,4.305118209860944,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,366,367,146.4,-1.4551493129604907,,,,0.7346919770921606,,3.431208680510616,,0.7346919770921606,,-3.431208680510616,-1.4551493129604907,-2.6965167034184554,4.165900657602776,-1.4551493129604907,-2.6965167034184554,4.165900657602776,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,367,368,146.8,-1.412584594854572,,,,0.5428349697595335,,3.431208680510616,,0.5428349697595335,,-3.431208680510616,-1.412584594854572,-2.8883737107510825,3.9740436502701497,-1.412584594854572,-2.8883737107510825,3.9740436502701493,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,368,369,147.20000000000002,-1.2461018815746587,,,,0.30522138942277205,,3.431208680510616,,0.30522138942277205,,-3.431208680510616,-1.2461018815746587,-3.125987291087844,3.7364300699333883,-1.2461018815746587,-3.1259872910878435,3.7364300699333883,0.0,4.440892098500626e-16,0.0 +karman,karman_re50,sr_closed_loop_400,369,370,147.6,-0.9844036056375458,,,,0.044394429495470136,,3.431208680510616,,0.044394429495470136,,-3.431208680510616,-0.9844036056375458,-3.3868142510151458,3.4756031100060865,-0.9844036056375458,-3.3868142510151458,3.475603110006086,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,370,371,148.0,-0.6620479568410454,,,,-0.21207266638157823,,3.431208680510616,,-0.21207266638157823,,-3.431208680510616,-0.6620479568410454,-3.6432813468921945,3.2191360141290377,-0.6620479568410454,-3.6432813468921945,3.2191360141290377,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,371,372,148.4,-0.3055150408366987,,,,-0.45328518607246,,3.431208680510616,,-0.45328518607246,,-3.431208680510616,-0.3055150408366987,-3.884493866583076,2.9779234944381563,-0.3055150408366987,-3.884493866583076,2.9779234944381563,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,372,373,148.8,0.06663367006509982,,,,-0.6689167511528799,,3.431208680510616,,-0.6689167511528799,,-3.431208680510616,0.06663367006509982,-4.100125431663496,2.7622919293577364,0.06663367006509982,-4.100125431663496,2.7622919293577364,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,373,374,149.20000000000002,0.4402357142833728,,,,-0.8396030612975314,,3.431208680510616,,-0.8396030612975314,,-3.431208680510616,0.4402357142833728,-4.2708117418081475,2.5916056192130847,0.4402357142833728,-4.2708117418081475,2.5916056192130847,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,374,375,149.6,0.795864733476839,,,,-0.9423925997564804,,3.431208680510616,,-0.9423925997564804,,-3.431208680510616,0.795864733476839,-4.3736012802670965,2.4888160807541357,0.795864733476839,-4.3736012802670965,2.4888160807541357,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,375,376,150.0,1.1056072630404359,,,,-0.9601743046003332,,3.431208680510616,,-0.9601743046003332,,-3.431208680510616,1.1056072630404359,-4.391382985110949,2.471034375910283,1.1056072630404359,-4.391382985110949,2.471034375910283,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,376,377,150.4,1.3347447188753383,,,,-0.8955888798815969,,3.431208680510616,,-0.8955888798815969,,-3.431208680510616,1.3347447188753383,-4.326797560392213,2.535619800629019,1.3347447188753383,-4.326797560392213,2.535619800629019,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,377,378,150.8,1.4486688504018959,,,,-0.7630973964810667,,3.431208680510616,,-0.7630973964810667,,-3.431208680510616,1.4486688504018959,-4.1943060769916825,2.6681112840295493,1.4486688504018959,-4.1943060769916825,2.6681112840295493,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,378,379,151.20000000000002,1.43008526698786,,,,-0.5799319517689977,,3.431208680510616,,-0.5799319517689977,,-3.431208680510616,1.43008526698786,-4.011140632279614,2.8512767287416185,1.43008526698786,-4.011140632279614,2.8512767287416185,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,379,380,151.6,1.2842145866821404,,,,-0.35012097060727176,,3.431208680510616,,-0.35012097060727176,,-3.431208680510616,1.2842145866821404,-3.781329651117888,3.0810877099033442,1.2842145866821404,-3.781329651117888,3.0810877099033442,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,380,381,152.0,1.037056559179636,,,,-0.09236222104435021,,3.431208680510616,,-0.09236222104435021,,-3.431208680510616,1.037056559179636,-3.523570901554966,3.338846459466266,1.037056559179636,-3.523570901554966,3.3388464594662657,0.0,0.0,-4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,381,382,152.4,0.7231593399218879,,,,0.16683875333779305,,3.431208680510616,,0.16683875333779305,,-3.431208680510616,0.7231593399218879,-3.2643699271728233,3.598047433848409,0.7231593399218879,-3.2643699271728233,3.5980474338484094,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,382,383,152.8,0.3715119621767052,,,,0.4113711457625446,,3.431208680510616,,0.4113711457625446,,-3.431208680510616,0.3715119621767052,-3.0198375347480715,3.8425798262731607,0.3715119621767052,-3.0198375347480715,3.842579826273161,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,383,384,153.20000000000002,0.001147918147452544,,,,0.6322865548813797,,3.431208680510616,,0.6322865548813797,,-3.431208680510616,0.001147918147452544,-2.7989221256292365,4.063495235391996,0.001147918147452544,-2.7989221256292365,4.063495235391996,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,384,385,153.60000000000002,-0.37342417304342324,,,,0.8130920368654052,,3.431208680510616,,0.8130920368654052,,-3.431208680510616,-0.37342417304342324,-2.618116643645211,4.244300717376022,-0.37342417304342324,-2.618116643645211,4.244300717376022,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,385,386,154.0,-0.734043841487987,,,,0.9297007777539893,,3.431208680510616,,0.9297007777539893,,-3.431208680510616,-0.734043841487987,-2.501507902756627,4.360909458264605,-0.734043841487987,-2.501507902756627,4.360909458264605,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,386,387,154.4,-1.0544763570653681,,,,0.9637033631150126,,3.431208680510616,,0.9637033631150126,,-3.431208680510616,-1.0544763570653681,-2.4675053173956036,4.394912043625629,-1.0544763570653681,-2.4675053173956036,4.394912043625629,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,387,388,154.8,-1.3006517946499312,,,,0.9128465545525623,,3.431208680510616,,0.9128465545525623,,-3.431208680510616,-1.3006517946499312,-2.518362125958054,4.344055235063179,-1.3006517946499312,-2.518362125958054,4.344055235063179,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,388,389,155.20000000000002,-1.4375270741569819,,,,0.7894101968326875,,3.431208680510616,,0.7894101968326875,,-3.431208680510616,-1.4375270741569819,-2.6417984836779285,4.220618877343304,-1.4375270741569819,-2.6417984836779285,4.220618877343304,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,389,390,155.60000000000002,-1.443210737787971,,,,0.6167824477674495,,3.431208680510616,,0.6167824477674495,,-3.431208680510616,-1.443210737787971,-2.8144262327431666,4.047991128278065,-1.443210737787971,-2.8144262327431666,4.047991128278065,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,390,391,156.0,-1.3189220930292413,,,,0.39526764678613413,,3.431208680510616,,0.39526764678613413,,-3.431208680510616,-1.3189220930292413,-3.035941033724482,3.82647632729675,-1.3189220930292413,-3.035941033724482,3.82647632729675,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,391,392,156.4,-1.0876197026289731,,,,0.14020973838155656,,3.431208680510616,,0.14020973838155656,,-3.431208680510616,-1.0876197026289731,-3.2909989421290597,3.5714184188921725,-1.0876197026289731,-3.2909989421290597,3.571418418892173,0.0,0.0,4.440892098500626e-16 +karman,karman_re50,sr_closed_loop_400,392,393,156.8,-0.7833149061681136,,,,-0.12056119507752264,,3.431208680510616,,-0.12056119507752264,,-3.431208680510616,-0.7833149061681136,-3.5517698755881386,3.3106474854330936,-0.7833149061681137,-3.5517698755881386,3.3106474854330936,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,393,394,157.20000000000002,-0.4369195371350422,,,,-0.3685804739199491,,3.431208680510616,,-0.3685804739199491,,-3.431208680510616,-0.4369195371350422,-3.7997891544305653,3.062628206590667,-0.43691953713504217,-3.7997891544305653,3.062628206590667,5.551115123125783e-17,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,394,395,157.60000000000002,-0.06879465304768625,,,,-0.5946637157489775,,3.431208680510616,,-0.5946637157489775,,-3.431208680510616,-0.06879465304768625,-4.025872396259594,2.8365449647616385,-0.06879465304768625,-4.025872396259594,2.8365449647616385,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,395,396,158.0,0.3061448576420009,,,,-0.7842638307855904,,3.431208680510616,,-0.7842638307855904,,-3.431208680510616,0.3061448576420009,-4.215472511296206,2.646944849725026,0.3061448576420009,-4.215472511296206,2.646944849725026,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,396,397,158.4,0.6710536139950178,,,,-0.914710804833505,,3.431208680510616,,-0.914710804833505,,-3.431208680510616,0.6710536139950178,-4.345919485344121,2.516497875677111,0.6710536139950178,-4.345919485344121,2.516497875677111,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,397,398,158.8,1.001125371965251,,,,-0.9640632722750084,,3.431208680510616,,-0.9640632722750084,,-3.431208680510616,1.001125371965251,-4.395271952785625,2.4671454082356075,1.001125371965251,-4.395271952785625,2.4671454082356075,0.0,0.0,0.0 +karman,karman_re50,sr_closed_loop_400,398,399,159.20000000000002,1.2634349000385696,,,,-0.927111532794578,,3.431208680510616,,-0.927111532794578,,-3.431208680510616,1.2634349000385696,-4.358320213305194,2.5040971477160383,1.2634349000385696,-4.358320213305194,2.5040971477160383,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,0,1,0.0,1.9326127554080132,,,,-1.2205099672098234,,3.431208680510616,,-1.2205099672098234,,-3.431208680510616,1.9326127554080132,-4.65171864772044,2.2106987133007925,1.9326127554080135,-4.65171864772044,2.2106987133007925,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,1,2,0.4,2.251731303111575,,,,-2.111690188250228,,3.431208680510616,,-2.111690188250228,,-3.431208680510616,2.251731303111575,-5.542898868760844,1.319518492260388,2.251731303111575,-5.542898868760844,1.319518492260388,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,2,3,0.8,2.5956187268740973,,,,-2.523814950908703,,3.431208680510616,,-2.523814950908703,,-3.431208680510616,2.5956187268740973,-5.955023631419319,0.907393729601913,2.5956187268740973,-5.955023631419319,0.907393729601913,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,3,4,1.2000000000000002,2.6574730741171537,,,,-1.4043162146521895,,3.431208680510616,,-1.4043162146521895,,-3.431208680510616,2.6574730741171537,-4.835524895162806,2.0268924658584266,2.6574730741171537,-4.835524895162806,2.0268924658584266,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,4,5,1.6,2.1541999797462994,,,,0.16049208110735974,,3.431208680510616,,0.16049208110735974,,-3.431208680510616,2.1541999797462994,-3.2707165994032565,3.5917007616179757,2.1541999797462994,-3.2707165994032565,3.591700761617976,0.0,0.0,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,5,6,2.0,1.3299256082766873,,,,0.2898721163256421,,3.431208680510616,,0.2898721163256421,,-3.431208680510616,1.3299256082766873,-3.141336564184974,3.721080796836258,1.3299256082766873,-3.1413365641849746,3.721080796836258,0.0,-4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,6,7,2.4000000000000004,0.6308023034074302,,,,-0.10268585904356946,,3.431208680510616,,-0.10268585904356946,,-3.431208680510616,0.6308023034074302,-3.5338945395541854,3.328522821467047,0.6308023034074302,-3.5338945395541854,3.328522821467047,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,7,8,2.8000000000000003,0.007957291697676162,,,,0.40790983664558006,,3.431208680510616,,0.40790983664558006,,-3.431208680510616,0.007957291697676162,-3.023298843865036,3.839118517156196,0.007957291697676162,-3.023298843865036,3.839118517156196,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,8,9,3.2,-0.6913321822224278,,,,1.3711561577562326,,3.431208680510616,,1.3711561577562326,,-3.431208680510616,-0.6913321822224278,-2.0600525227543836,4.802364838266849,-0.6913321822224278,-2.0600525227543836,4.802364838266849,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,9,10,3.6,-1.3801707825117122,,,,2.020960423199133,,3.431208680510616,,2.020960423199133,,-3.431208680510616,-1.3801707825117122,-1.410248257311483,5.45216910370975,-1.3801707825117122,-1.410248257311483,5.45216910370975,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,10,11,4.0,-1.8858760094835016,,,,2.3033446324959796,,3.431208680510616,,2.3033446324959796,,-3.431208680510616,-1.8858760094835016,-1.1278640480146365,5.734553313006596,-1.8858760094835016,-1.1278640480146365,5.734553313006596,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,11,12,4.4,-2.1263063341048674,,,,2.0554958689916223,,3.431208680510616,,2.0554958689916223,,-3.431208680510616,-2.1263063341048674,-1.3757128115189938,5.486704549502239,-2.1263063341048674,-1.3757128115189938,5.486704549502239,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,12,13,4.800000000000001,-2.0109305953043135,,,,1.1865985771054997,,3.431208680510616,,1.1865985771054997,,-3.431208680510616,-2.0109305953043135,-2.2446101034051162,4.617807257616116,-2.0109305953043135,-2.2446101034051162,4.617807257616116,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,13,14,5.2,-1.499003490247036,,,,0.5438678055215519,,3.431208680510616,,0.5438678055215519,,-3.431208680510616,-1.499003490247036,-2.8873408749890643,3.975076486032168,-1.499003490247036,-2.8873408749890643,3.9750764860321683,0.0,0.0,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,14,15,5.6000000000000005,-0.8343210264869885,,,,0.4230786984251994,,3.431208680510616,,0.4230786984251994,,-3.431208680510616,-0.8343210264869885,-3.008129982085417,3.8542873789358154,-0.8343210264869885,-3.008129982085417,3.8542873789358154,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,15,16,6.0,-0.17275064506470256,,,,0.09367260096824351,,3.431208680510616,,0.09367260096824351,,-3.431208680510616,-0.17275064506470256,-3.3375360795423727,3.5248812814788595,-0.17275064506470256,-3.3375360795423727,3.5248812814788595,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,16,17,6.4,0.5146769404736861,,,,-0.6632343275117281,,3.431208680510616,,-0.6632343275117281,,-3.431208680510616,0.5146769404736861,-4.094443008022344,2.767974352998888,0.5146769404736861,-4.094443008022344,2.767974352998888,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,17,18,6.800000000000001,1.2369639573970967,,,,-1.5091948704941598,,3.431208680510616,,-1.5091948704941598,,-3.431208680510616,1.2369639573970967,-4.940403551004776,1.9220138100164563,1.2369639573970967,-4.940403551004776,1.9220138100164565,0.0,0.0,2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,18,19,7.2,1.893912374461582,,,,-2.2090351871892158,,3.431208680510616,,-2.2090351871892158,,-3.431208680510616,1.893912374461582,-5.640243867699832,1.2221734933214004,1.8939123744615818,-5.640243867699832,1.2221734933214004,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,19,20,7.6000000000000005,2.3646731333189335,,,,-2.584866369123039,,3.431208680510616,,-2.584866369123039,,-3.431208680510616,2.3646731333189335,-6.016075049633655,0.846342311387577,2.3646731333189335,-6.016075049633655,0.8463423113875769,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,20,21,8.0,2.5524186031372325,,,,-2.1071066750645966,,3.431208680510616,,-2.1071066750645966,,-3.431208680510616,2.5524186031372325,-5.538315355575213,1.3241020054460195,2.5524186031372325,-5.538315355575213,1.3241020054460195,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,21,22,8.4,2.302894887344233,,,,-1.1326644234284153,,3.431208680510616,,-1.1326644234284153,,-3.431208680510616,2.302894887344233,-4.563873103939032,2.2985442570822006,2.302894887344233,-4.563873103939032,2.2985442570822006,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,22,23,8.8,1.6863659673343907,,,,-0.833749970072473,,3.431208680510616,,-0.833749970072473,,-3.431208680510616,1.6863659673343907,-4.264958650583089,2.597458710438143,1.6863659673343907,-4.264958650583089,2.597458710438143,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,23,24,9.200000000000001,1.0139165122223515,,,,-0.9458490370066429,,3.431208680510616,,-0.9458490370066429,,-3.431208680510616,1.0139165122223515,-4.377057717517259,2.485359643503973,1.0139165122223515,-4.377057717517259,2.485359643503973,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,24,25,9.600000000000001,0.35167197523798854,,,,-0.46627845483332314,,3.431208680510616,,-0.46627845483332314,,-3.431208680510616,0.35167197523798854,-3.897487135343939,2.964930225677293,0.35167197523798854,-3.897487135343939,2.964930225677293,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,25,26,10.0,-0.37104139082742243,,,,0.5565547556572409,,3.431208680510616,,0.5565547556572409,,-3.431208680510616,-0.37104139082742243,-2.874653924853375,3.987763436167857,-0.37104139082742243,-2.874653924853375,3.987763436167857,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,26,27,10.4,-1.159184731553554,,,,1.4484026508182724,,3.431208680510616,,1.4484026508182724,,-3.431208680510616,-1.159184731553554,-1.9828060296923438,4.8796113313288885,-1.159184731553554,-1.9828060296923438,4.8796113313288885,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,27,28,10.8,-1.8667150065858198,,,,2.1185279294297166,,3.431208680510616,,2.1185279294297166,,-3.431208680510616,-1.8667150065858198,-1.3126807510808995,5.549736609940332,-1.8667150065858198,-1.3126807510808995,5.549736609940332,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,28,29,11.200000000000001,-2.382280586986875,,,,2.61046300505477,,3.431208680510616,,2.61046300505477,,-3.431208680510616,-2.382280586986875,-0.820745675455846,6.041671685565387,-2.382280586986875,-0.8207456754558459,6.041671685565387,0.0,1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,29,30,11.600000000000001,-2.6294547538190454,,,,2.314357715770597,,3.431208680510616,,2.314357715770597,,-3.431208680510616,-2.6294547538190454,-1.1168509647400193,5.7455663962812125,-2.6294547538190454,-1.1168509647400193,5.7455663962812125,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,30,31,12.0,-2.4433790719239266,,,,1.2768237233279967,,3.431208680510616,,1.2768237233279967,,-3.431208680510616,-2.4433790719239266,-2.1543849571826197,4.7080324038386125,-2.4433790719239266,-2.1543849571826197,4.7080324038386125,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,31,32,12.4,-1.8344732878929877,,,,0.8036544696407949,,3.431208680510616,,0.8036544696407949,,-3.431208680510616,-1.8344732878929877,-2.627554210869821,4.234863150151411,-1.8344732878929875,-2.627554210869821,4.234863150151411,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,32,33,12.8,-1.1390259318042013,,,,0.9783975223731147,,3.431208680510616,,0.9783975223731147,,-3.431208680510616,-1.1390259318042013,-2.4528111581375014,4.409606202883731,-1.1390259318042013,-2.4528111581375014,4.409606202883731,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,33,34,13.200000000000001,-0.47359261181633316,,,,0.6578180295946341,,3.431208680510616,,0.6578180295946341,,-3.431208680510616,-0.47359261181633316,-2.773390650915982,4.08902671010525,-0.4735926118163332,-2.773390650915982,4.08902671010525,-5.551115123125783e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,34,35,13.600000000000001,0.23960240697937324,,,,-0.3422687392891911,,3.431208680510616,,-0.3422687392891911,,-3.431208680510616,0.23960240697937324,-3.773477419799807,3.088939941221425,0.23960240697937324,-3.7734774197998076,3.088939941221425,0.0,-4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,35,36,14.0,1.0362984546834026,,,,-1.324579588670991,,3.431208680510616,,-1.324579588670991,,-3.431208680510616,1.0362984546834026,-4.755788269181608,2.106629091839625,1.0362984546834026,-4.755788269181608,2.106629091839625,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,36,37,14.4,1.7754689642297268,,,,-2.0098980883960644,,3.431208680510616,,-2.0098980883960644,,-3.431208680510616,1.7754689642297268,-5.44110676890668,1.4213105921145517,1.7754689642297268,-5.44110676890668,1.4213105921145517,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,37,38,14.8,2.323576139616774,,,,-2.553714282578683,,3.431208680510616,,-2.553714282578683,,-3.431208680510616,2.323576139616774,-5.984922963089299,0.8774943979319332,2.323576139616774,-5.984922963089299,0.8774943979319333,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,38,39,15.200000000000001,2.6129248834550705,,,,-2.4296715296878,,3.431208680510616,,-2.4296715296878,,-3.431208680510616,2.6129248834550705,-5.860880210198417,1.001537150822816,2.6129248834550705,-5.860880210198417,1.001537150822816,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,39,40,15.600000000000001,2.4988332758583622,,,,-1.4340047619600653,,3.431208680510616,,-1.4340047619600653,,-3.431208680510616,2.4988332758583622,-4.865213442470681,1.9972039185505508,2.4988332758583622,-4.865213442470681,1.9972039185505508,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,40,41,16.0,1.9252349283600705,,,,-0.7670414771489392,,3.431208680510616,,-0.7670414771489392,,-3.431208680510616,1.9252349283600705,-4.1982501576595554,2.664167203361677,1.9252349283600703,-4.1982501576595554,2.664167203361677,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,41,42,16.400000000000002,1.2137648364972524,,,,-0.8716176205116744,,3.431208680510616,,-0.8716176205116744,,-3.431208680510616,1.2137648364972524,-4.30282630102229,2.559591059998942,1.2137648364972524,-4.30282630102229,2.559591059998942,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,42,43,16.8,0.5344308361875822,,,,-0.6790420128257563,,3.431208680510616,,-0.6790420128257563,,-3.431208680510616,0.5344308361875822,-4.110250693336372,2.7521666676848597,0.5344308361875822,-4.110250693336372,2.7521666676848597,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,43,44,17.2,-0.1716458446793458,,,,0.2165590467228455,,3.431208680510616,,0.2165590467228455,,-3.431208680510616,-0.1716458446793458,-3.214649633787771,3.6477677272334614,-0.1716458446793458,-3.214649633787771,3.6477677272334614,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,44,45,17.6,-0.9597031940802216,,,,1.2067190825059748,,3.431208680510616,,1.2067190825059748,,-3.431208680510616,-0.9597031940802216,-2.2244895980046415,4.637927763016591,-0.9597031940802216,-2.2244895980046415,4.637927763016591,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,45,46,18.0,-1.7074647997871462,,,,1.9340277454597448,,3.431208680510616,,1.9340277454597448,,-3.431208680510616,-1.7074647997871462,-1.4971809350508714,5.365236425970361,-1.7074647997871462,-1.4971809350508714,5.365236425970361,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,46,47,18.400000000000002,-2.2732695604493474,,,,2.499341965381096,,3.431208680510616,,2.499341965381096,,-3.431208680510616,-2.2732695604493474,-0.9318667151295199,5.930550645891712,-2.2732695604493474,-0.9318667151295199,5.930550645891712,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,47,48,18.8,-2.5812364751509502,,,,2.4625437658278466,,3.431208680510616,,2.4625437658278466,,-3.431208680510616,-2.5812364751509502,-0.9686649146827695,5.893752446338462,-2.5812364751509502,-0.9686649146827694,5.893752446338462,0.0,1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,48,49,19.200000000000003,-2.5049687963201905,,,,1.5201485017692091,,3.431208680510616,,1.5201485017692091,,-3.431208680510616,-2.5049687963201905,-1.911060178741407,4.951357182279825,-2.5049687963201905,-1.911060178741407,4.951357182279825,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,49,50,19.6,-1.9641633467127304,,,,0.7796949332003648,,3.431208680510616,,0.7796949332003648,,-3.431208680510616,-1.9641633467127304,-2.6515137473102515,4.210903613710981,-1.9641633467127304,-2.6515137473102515,4.210903613710981,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,50,51,20.0,-1.2532817742851856,,,,0.8348464445945921,,3.431208680510616,,0.8348464445945921,,-3.431208680510616,-1.2532817742851856,-2.596362235916024,4.266055125105209,-1.2532817742851856,-2.596362235916024,4.266055125105209,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,51,52,20.400000000000002,-0.5704938908272981,,,,0.684480234143459,,3.431208680510616,,0.684480234143459,,-3.431208680510616,-0.5704938908272981,-2.746728446367157,4.115688914654076,-0.5704938908272981,-2.746728446367157,4.115688914654076,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,52,53,20.8,0.13275412831674102,,,,-0.16156998163729636,,3.431208680510616,,-0.16156998163729636,,-3.431208680510616,0.13275412831674102,-3.5927786621479125,3.2696386988733197,0.13275412831674102,-3.592778662147913,3.26963869887332,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,53,54,21.200000000000003,0.9149743628053577,,,,-1.1573567190850298,,3.431208680510616,,-1.1573567190850298,,-3.431208680510616,0.9149743628053577,-4.588565399595646,2.2738519614255863,0.9149743628053578,-4.588565399595646,2.2738519614255863,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,54,55,21.6,1.6679487055955364,,,,-1.8876079895871916,,3.431208680510616,,-1.8876079895871916,,-3.431208680510616,1.6679487055955364,-5.3188166700978075,1.5436006909234246,1.6679487055955364,-5.3188166700978075,1.5436006909234246,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,55,56,22.0,2.2451994699768494,,,,-2.471991914138168,,3.431208680510616,,-2.471991914138168,,-3.431208680510616,2.2451994699768494,-5.9032005946487836,0.9592167663724482,2.2451994699768494,-5.9032005946487836,0.9592167663724482,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,56,57,22.400000000000002,2.5695262037834987,,,,-2.488528933137035,,3.431208680510616,,-2.488528933137035,,-3.431208680510616,2.5695262037834987,-5.919737613647651,0.9426797473735813,2.5695262037834987,-5.919737613647651,0.9426797473735813,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,57,58,22.8,2.5182415856782976,,,,-1.5703742513349663,,3.431208680510616,,-1.5703742513349663,,-3.431208680510616,2.5182415856782976,-5.001582931845583,1.8608344291756498,2.5182415856782976,-5.001582931845583,1.86083442917565,0.0,0.0,2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,58,59,23.200000000000003,1.9941730427325621,,,,-0.7639170880704986,,3.431208680510616,,-0.7639170880704986,,-3.431208680510616,1.9941730427325621,-4.195125768581114,2.6672915924401175,1.9941730427325621,-4.195125768581114,2.6672915924401175,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,59,60,23.6,1.2808180902838355,,,,-0.7989255616802918,,3.431208680510616,,-0.7989255616802918,,-3.431208680510616,1.2808180902838355,-4.230134242190908,2.6322831188303244,1.2808180902838355,-4.230134242190908,2.6322831188303244,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,60,61,24.0,0.5956608333515128,,,,-0.7053059422635198,,3.431208680510616,,-0.7053059422635198,,-3.431208680510616,0.5956608333515128,-4.136514622774136,2.7259027382470964,0.5956608333515128,-4.136514622774136,2.7259027382470964,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,61,62,24.400000000000002,-0.10154058426819527,,,,0.10273092381148771,,3.431208680510616,,0.10273092381148771,,-3.431208680510616,-0.10154058426819527,-3.3284777566991286,3.5339396043221036,-0.10154058426819526,-3.3284777566991286,3.533939604322104,1.3877787807814457e-17,0.0,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,62,63,24.8,-0.8791630328686431,,,,1.1108236923093309,,3.431208680510616,,1.1108236923093309,,-3.431208680510616,-0.8791630328686431,-2.320384988201285,4.542032372819947,-0.8791630328686431,-2.320384988201285,4.542032372819947,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,63,64,25.200000000000003,-1.6356507767476642,,,,1.8653482779231374,,3.431208680510616,,1.8653482779231374,,-3.431208680510616,-1.6356507767476642,-1.5658604025874787,5.2965569584337535,-1.6356507767476645,-1.5658604025874787,5.2965569584337535,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,64,65,25.6,-2.2211410796216415,,,,2.448533114257478,,3.431208680510616,,2.448533114257478,,-3.431208680510616,-2.2211410796216415,-0.9826755662531381,5.879741794768094,-2.2211410796216415,-0.9826755662531381,5.879741794768094,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,65,66,26.0,-2.554034312096085,,,,2.5044171564991333,,3.431208680510616,,2.5044171564991333,,-3.431208680510616,-2.554034312096085,-0.9267915240114828,5.935625837009749,-2.554034312096085,-0.9267915240114829,5.935625837009749,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,66,67,26.400000000000002,-2.52130428433127,,,,1.6270794315015107,,3.431208680510616,,1.6270794315015107,,-3.431208680510616,-2.52130428433127,-1.8041292490091054,5.058288112012127,-2.52130428433127,-1.8041292490091054,5.058288112012127,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,67,68,26.8,-2.016206091514068,,,,0.7922395334779336,,3.431208680510616,,0.7922395334779336,,-3.431208680510616,-2.016206091514068,-2.6389691470326824,4.22344821398855,-2.016206091514068,-2.6389691470326824,4.22344821398855,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,68,69,27.200000000000003,-1.302941714670619,,,,0.7759572978882258,,3.431208680510616,,0.7759572978882258,,-3.431208680510616,-1.302941714670619,-2.6552513826223905,4.207165978398842,-1.302941714670619,-2.6552513826223905,4.207165978398842,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,69,70,27.6,-0.612476327670758,,,,0.6913547426927187,,3.431208680510616,,0.6913547426927187,,-3.431208680510616,-0.612476327670758,-2.739853937817897,4.122563423203335,-0.612476327670758,-2.739853937817897,4.122563423203335,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,70,71,28.0,0.08630376669418664,,,,-0.08275748789009717,,3.431208680510616,,-0.08275748789009717,,-3.431208680510616,0.08630376669418664,-3.5139661684007133,3.348451192620519,0.08630376669418664,-3.513966168400713,3.348451192620519,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,71,72,28.400000000000002,0.8610575021712867,,,,-1.0778475483851484,,3.431208680510616,,-1.0778475483851484,,-3.431208680510616,0.8610575021712867,-4.509056228895765,2.3533611321254675,0.8610575021712868,-4.509056228895765,2.3533611321254675,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,72,73,28.8,1.6198874246432566,,,,-1.838558795854111,,3.431208680510616,,-1.838558795854111,,-3.431208680510616,1.6198874246432566,-5.269767476364727,1.5926498846565051,1.6198874246432566,-5.269767476364727,1.5926498846565051,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,73,74,29.200000000000003,2.2125624154068637,,,,-2.4400073473540242,,3.431208680510616,,-2.4400073473540242,,-3.431208680510616,2.2125624154068637,-5.871216027864641,0.9912013331565919,2.2125624154068637,-5.871216027864641,0.991201333156592,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,74,75,29.6,2.5555107832617265,,,,-2.5129720023575612,,3.431208680510616,,-2.5129720023575612,,-3.431208680510616,2.5555107832617265,-5.944180682868177,0.9182366781530549,2.5555107832617265,-5.944180682868177,0.9182366781530549,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,75,76,30.0,2.5343643986162,,,,-1.6477254895332487,,3.431208680510616,,-1.6477254895332487,,-3.431208680510616,2.5343643986162,-5.078934170043865,1.7834831909773674,2.5343643986162,-5.078934170043865,1.7834831909773674,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,76,77,30.400000000000002,2.038868418753222,,,,-0.8021612424659901,,3.431208680510616,,-0.8021612424659901,,-3.431208680510616,2.038868418753222,-4.233369922976606,2.6290474380446263,2.038868418753222,-4.233369922976606,2.6290474380446263,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,77,78,30.8,1.3294260660536574,,,,-0.7970407582112784,,3.431208680510616,,-0.7970407582112784,,-3.431208680510616,1.3294260660536574,-4.228249438721894,2.634167922299338,1.3294260660536574,-4.228249438721894,2.634167922299338,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,78,79,31.200000000000003,0.6417666580255352,,,,-0.7293405359018679,,3.431208680510616,,-0.7293405359018679,,-3.431208680510616,0.6417666580255352,-4.160549216412484,2.7018681446087482,0.6417666580255352,-4.160549216412484,2.7018681446087482,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,79,80,31.6,-0.05332132186688747,,,,0.04744345688431769,,3.431208680510616,,0.04744345688431769,,-3.431208680510616,-0.05332132186688747,-3.3837652236262983,3.478652137394934,-0.05332132186688747,-3.3837652236262983,3.4786521373949335,0.0,0.0,-4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,80,81,32.0,-0.82851157820416,,,,1.0600460515824126,,3.431208680510616,,1.0600460515824126,,-3.431208680510616,-0.82851157820416,-2.3711626289282037,4.4912547320930285,-0.8285115782041601,-2.3711626289282037,4.4912547320930285,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,81,82,32.4,-1.591361081759075,,,,1.8205374560619363,,3.431208680510616,,1.8205374560619363,,-3.431208680510616,-1.591361081759075,-1.6106712244486798,5.251746136572552,-1.591361081759075,-1.6106712244486798,5.251746136572552,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,82,83,32.800000000000004,-2.190566040865534,,,,2.4177770191366195,,3.431208680510616,,2.4177770191366195,,-3.431208680510616,-2.190566040865534,-1.0134316613739967,5.848985699647235,-2.190566040865534,-1.0134316613739967,5.848985699647235,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,83,84,33.2,-2.5426086434883546,,,,2.532362032229415,,3.431208680510616,,2.532362032229415,,-3.431208680510616,-2.5426086434883546,-0.898846648281201,5.963570712740031,-2.5426086434883546,-0.898846648281201,5.963570712740031,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,84,85,33.6,-2.539133470632916,,,,1.694177064785852,,3.431208680510616,,1.694177064785852,,-3.431208680510616,-2.539133470632916,-1.737031615724764,5.125385745296468,-2.539133470632916,-1.7370316157247643,5.125385745296468,0.0,-2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,85,86,34.0,-2.058427421516448,,,,0.8085286201303318,,3.431208680510616,,0.8085286201303318,,-3.431208680510616,-2.058427421516448,-2.6226800603802842,4.239737300640948,-2.058427421516448,-2.6226800603802842,4.239737300640948,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,86,87,34.4,-1.3473364152016014,,,,0.7648179266913511,,3.431208680510616,,0.7648179266913511,,-3.431208680510616,-1.3473364152016014,-2.666390753819265,4.196026607201967,-1.3473364152016014,-2.666390753819265,4.196026607201967,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,87,88,34.800000000000004,-0.6566280946604279,,,,0.730287657257339,,3.431208680510616,,0.730287657257339,,-3.431208680510616,-0.6566280946604279,-2.700921023253277,4.1614963377679555,-0.6566280946604279,-2.700921023253277,4.1614963377679555,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,88,89,35.2,0.03613133599215046,,,,-0.006402546452818448,,3.431208680510616,,-0.006402546452818448,,-3.431208680510616,0.03613133599215046,-3.4376112269634347,3.4248061340577975,0.03613133599215046,-3.437611226963435,3.424806134057798,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,89,90,35.6,0.8057224007178106,,,,-1.018781948753048,,3.431208680510616,,-1.018781948753048,,-3.431208680510616,0.8057224007178106,-4.449990629263664,2.4124267317575683,0.8057224007178106,-4.449990629263664,2.4124267317575683,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,90,91,36.0,1.5713682040866455,,,,-1.8002371483273008,,3.431208680510616,,-1.8002371483273008,,-3.431208680510616,1.5713682040866455,-5.231445828837916,1.6309715321833154,1.5713682040866455,-5.231445828837916,1.6309715321833151,0.0,0.0,-2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,91,92,36.4,2.17836071165551,,,,-2.409444147709357,,3.431208680510616,,-2.409444147709357,,-3.431208680510616,2.17836071165551,-5.840652828219973,1.0217645328012592,2.17836071165551,-5.840652828219973,1.0217645328012592,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,92,93,36.800000000000004,2.540050415436934,,,,-2.540915507875305,,3.431208680510616,,-2.540915507875305,,-3.431208680510616,2.540050415436934,-5.972124188385921,0.8902931726353112,2.540050415436934,-5.972124188385921,0.8902931726353113,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,93,94,37.2,2.550325685058024,,,,-1.729316926553461,,3.431208680510616,,-1.729316926553461,,-3.431208680510616,2.550325685058024,-5.160525607064077,1.7018917539571552,2.550325685058024,-5.160525607064077,1.7018917539571552,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,94,95,37.6,2.0837692770784035,,,,-0.8369533747406082,,3.431208680510616,,-0.8369533747406082,,-3.431208680510616,2.0837692770784035,-4.268162055251224,2.594255305770008,2.0837692770784035,-4.268162055251224,2.594255305770008,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,95,96,38.0,1.3773454896241422,,,,-0.7768450433670478,,3.431208680510616,,-0.7768450433670478,,-3.431208680510616,1.3773454896241422,-4.208053723877664,2.654363637143568,1.3773454896241422,-4.208053723877664,2.654363637143568,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,96,97,38.400000000000006,0.6852872817656835,,,,-0.7410805169279233,,3.431208680510616,,-0.7410805169279233,,-3.431208680510616,0.6852872817656835,-4.172289197438539,2.690128163582693,0.6852872817656835,-4.172289197438539,2.690128163582693,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,97,98,38.800000000000004,-0.007826618904639107,,,,-0.014453306343079531,,3.431208680510616,,-0.014453306343079531,,-3.431208680510616,-0.007826618904639107,-3.4456619868536955,3.4167553741675367,-0.007826618904639107,-3.445661986853696,3.416755374167537,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,98,99,39.2,-0.7778860530266781,,,,0.9946138355151584,,3.431208680510616,,0.9946138355151584,,-3.431208680510616,-0.7778860530266781,-2.436594844995458,4.425822516025774,-0.7778860530266781,-2.436594844995458,4.425822516025774,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,99,100,39.6,-1.5459167698022263,,,,1.7721203870464117,,3.431208680510616,,1.7721203870464117,,-3.431208680510616,-1.5459167698022263,-1.6590882934642044,5.203329067557028,-1.5459167698022263,-1.6590882934642046,5.203329067557028,0.0,-2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,100,101,40.0,-2.159579504702704,,,,2.386996716927589,,3.431208680510616,,2.386996716927589,,-3.431208680510616,-2.159579504702704,-1.044211963583027,5.818205397438206,-2.159579504702704,-1.044211963583027,5.818205397438206,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,101,102,40.400000000000006,-2.5299780529315896,,,,2.551622424770586,,3.431208680510616,,2.551622424770586,,-3.431208680510616,-2.5299780529315896,-0.8795862557400302,5.9828311052812015,-2.5299780529315896,-0.8795862557400302,5.9828311052812015,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,102,103,40.800000000000004,-2.554668252533417,,,,1.7600413545401064,,3.431208680510616,,1.7600413545401064,,-3.431208680510616,-2.554668252533417,-1.6711673259705098,5.1912500350507225,-2.554668252533417,-1.6711673259705098,5.1912500350507225,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,103,104,41.2,-2.101769802233367,,,,0.84354364031114,,3.431208680510616,,0.84354364031114,,-3.431208680510616,-2.101769802233367,-2.587665040199476,4.274752320821756,-2.101769802233367,-2.587665040199476,4.274752320821756,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,104,105,41.6,-1.397487994644506,,,,0.768575049470698,,3.431208680510616,,0.768575049470698,,-3.431208680510616,-1.397487994644506,-2.662633631039918,4.1997837299813146,-1.397487994644506,-2.662633631039918,4.1997837299813146,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,105,106,42.0,-0.7067003538490045,,,,0.7665812379819903,,3.431208680510616,,0.7665812379819903,,-3.431208680510616,-0.7067003538490045,-2.6646274425286256,4.197789918492607,-0.7067003538490045,-2.6646274425286256,4.197789918492607,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,106,107,42.400000000000006,-0.017822076782628798,,,,0.05871695666408419,,3.431208680510616,,0.05871695666408419,,-3.431208680510616,-0.017822076782628798,-3.3724917238465317,3.4899256371747005,-0.017822076782628798,-3.3724917238465317,3.4899256371747005,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,107,108,42.800000000000004,0.7483376487965688,,,,-0.9632167854181655,,3.431208680510616,,-0.9632167854181655,,-3.431208680510616,0.7483376487965688,-4.394425465928782,2.4679918950924504,0.7483376487965688,-4.394425465928782,2.4679918950924504,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,108,109,43.2,1.5202313485375059,,,,-1.7548126234948884,,3.431208680510616,,-1.7548126234948884,,-3.431208680510616,1.5202313485375059,-5.1860213040055045,1.6763960570157277,1.5202313485375059,-5.1860213040055045,1.6763960570157277,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,109,110,43.6,2.141071267760313,,,,-2.3716848963064994,,3.431208680510616,,-2.3716848963064994,,-3.431208680510616,2.141071267760313,-5.802893576817116,1.0595237842041167,2.141071267760313,-5.802893576817116,1.0595237842041167,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,110,111,44.0,2.5222484906164846,,,,-2.56471678476759,,3.431208680510616,,-2.56471678476759,,-3.431208680510616,2.5222484906164846,-5.995925465278206,0.8664918957430263,2.5222484906164846,-5.995925465278206,0.8664918957430264,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,111,112,44.400000000000006,2.5635258363326825,,,,-1.8097888999300824,,3.431208680510616,,-1.8097888999300824,,-3.431208680510616,2.5635258363326825,-5.240997580440698,1.6214197805805337,2.5635258363326825,-5.240997580440698,1.621419780580534,0.0,0.0,2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,112,113,44.800000000000004,2.1277205567417834,,,,-0.8629260578911162,,3.431208680510616,,-0.8629260578911162,,-3.431208680510616,2.1277205567417834,-4.294134738401732,2.5682826226195,2.1277205567417834,-4.294134738401732,2.5682826226195,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,113,114,45.2,1.4236556422077178,,,,-0.7510325228376545,,3.431208680510616,,-0.7510325228376545,,-3.431208680510616,1.4236556422077178,-4.182241203348271,2.6801761576729617,1.4236556422077178,-4.182241203348271,2.6801761576729617,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,114,115,45.6,0.7284276655628911,,,,-0.7612302535292104,,3.431208680510616,,-0.7612302535292104,,-3.431208680510616,0.7284276655628911,-4.192438934039826,2.6699784269814058,0.7284276655628911,-4.192438934039826,2.6699784269814058,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,115,116,46.0,0.03951256163200426,,,,-0.09063042464208622,,3.431208680510616,,-0.09063042464208622,,-3.431208680510616,0.03951256163200426,-3.5218391051527025,3.3405782558685297,0.03951256163200426,-3.5218391051527025,3.34057825586853,0.0,0.0,4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,116,117,46.400000000000006,-0.7236093541607571,,,,0.9242126198015663,,3.431208680510616,,0.9242126198015663,,-3.431208680510616,-0.7236093541607571,-2.50699606070905,4.355421300312182,-0.7236093541607571,-2.50699606070905,4.355421300312182,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,117,118,46.800000000000004,-1.4970562479329825,,,,1.727282922163637,,3.431208680510616,,1.727282922163637,,-3.431208680510616,-1.4970562479329825,-1.7039257583469791,5.158491602674253,-1.4970562479329825,-1.7039257583469791,5.158491602674253,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,118,119,47.2,-2.1250525279688675,,,,2.355439960946994,,3.431208680510616,,2.355439960946994,,-3.431208680510616,-2.1250525279688675,-1.075768719563622,5.78664864145761,-2.1250525279688675,-1.075768719563622,5.78664864145761,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,119,120,47.6,-2.514551162560905,,,,2.5692103206632226,,3.431208680510616,,2.5692103206632226,,-3.431208680510616,-2.514551162560905,-0.8619983598473935,6.000419001173839,-2.514551162560905,-0.8619983598473935,6.000419001173839,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,120,121,48.0,-2.568465137207553,,,,1.8385804147630447,,3.431208680510616,,1.8385804147630447,,-3.431208680510616,-2.568465137207553,-1.5926282657475714,5.26978909527366,-2.568465137207553,-1.5926282657475717,5.26978909527366,0.0,-2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,121,122,48.400000000000006,-2.1472530084207175,,,,0.8901177734629806,,3.431208680510616,,0.8901177734629806,,-3.431208680510616,-2.1472530084207175,-2.5410909070476357,4.3213264539735965,-2.1472530084207175,-2.5410909070476357,4.3213264539735965,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,122,123,48.800000000000004,-1.4492704677800892,,,,0.7632290891305574,,3.431208680510616,,0.7632290891305574,,-3.431208680510616,-1.4492704677800892,-2.6679795913800586,4.194437769641174,-1.4492704677800892,-2.6679795913800586,4.194437769641174,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,123,124,49.2,-0.754603793489146,,,,0.7818722009233341,,3.431208680510616,,0.7818722009233341,,-3.431208680510616,-0.754603793489146,-2.649336479587282,4.21308088143395,-0.754603793489146,-2.649336479587282,4.21308088143395,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,124,125,49.6,-0.0669582576255698,,,,0.11598483744625641,,3.431208680510616,,0.11598483744625641,,-3.431208680510616,-0.0669582576255698,-3.3152238430643597,3.5471935179568725,-0.0669582576255698,-3.3152238430643597,3.5471935179568725,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,125,126,50.0,0.6952027131549231,,,,-0.9003681812143327,,3.431208680510616,,-0.9003681812143327,,-3.431208680510616,0.6952027131549231,-4.331576861724949,2.5308404992962834,0.6952027131549231,-4.331576861724949,2.5308404992962834,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,126,127,50.400000000000006,1.4719394105904129,,,,-1.7052678695605445,,3.431208680510616,,-1.7052678695605445,,-3.431208680510616,1.4719394105904129,-5.13647655007116,1.7259408109500716,1.4719394105904129,-5.13647655007116,1.7259408109500713,0.0,0.0,-2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,127,128,50.800000000000004,2.106366425401603,,,,-2.3339816713718644,,3.431208680510616,,-2.3339816713718644,,-3.431208680510616,2.106366425401603,-5.765190351882481,1.0972270091387517,2.106366425401603,-5.765190351882481,1.0972270091387517,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,128,129,51.2,2.505890713902538,,,,-2.578040731487637,,3.431208680510616,,-2.578040731487637,,-3.431208680510616,2.505890713902538,-6.009249411998253,0.8531679490229793,2.505890713902538,-6.009249411998253,0.8531679490229793,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,129,130,51.6,2.575345420023759,,,,-1.8778062503191337,,3.431208680510616,,-1.8778062503191337,,-3.431208680510616,2.575345420023759,-5.30901493082975,1.5534024301914824,2.575345420023759,-5.30901493082975,1.5534024301914824,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,130,131,52.0,2.1693193570571045,,,,-0.899436893425968,,3.431208680510616,,-0.899436893425968,,-3.431208680510616,2.1693193570571045,-4.330645573936584,2.531771787084648,2.1693193570571045,-4.330645573936584,2.531771787084648,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,131,132,52.400000000000006,1.4721952866753227,,,,-0.7468299287376022,,3.431208680510616,,-0.7468299287376022,,-3.431208680510616,1.4721952866753227,-4.178038609248218,2.6843787517730138,1.4721952866753227,-4.178038609248218,2.6843787517730138,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,132,133,52.800000000000004,0.7764295395740624,,,,-0.7926265423970154,,3.431208680510616,,-0.7926265423970154,,-3.431208680510616,0.7764295395740624,-4.223835222907631,2.638582138113601,0.7764295395740624,-4.223835222907631,2.638582138113601,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,133,134,53.2,0.09165263358419672,,,,-0.16238480135992642,,3.431208680510616,,-0.16238480135992642,,-3.431208680510616,0.09165263358419672,-3.5935934818705424,3.26882387915069,0.09165263358419672,-3.5935934818705424,3.2688238791506894,0.0,0.0,-4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,134,135,53.6,-0.6658603684268208,,,,0.8612799758953995,,3.431208680510616,,0.8612799758953995,,-3.431208680510616,-0.6658603684268208,-2.569928704615217,4.292488656406015,-0.6658603684268208,-2.569928704615217,4.292488656406015,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,135,136,54.0,-1.4448840776956722,,,,1.6833233067802431,,3.431208680510616,,1.6833233067802431,,-3.431208680510616,-1.4448840776956722,-1.747885373730373,5.114531987290859,-1.4448840776956722,-1.747885373730373,5.114531987290859,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,136,137,54.400000000000006,-2.0869001294343668,,,,2.316740743743031,,3.431208680510616,,2.316740743743031,,-3.431208680510616,-2.0869001294343668,-1.1144679367675852,5.7479494242536475,-2.0869001294343668,-1.1144679367675852,5.7479494242536475,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,137,138,54.800000000000004,-2.4952353819377335,,,,2.5839088950506137,,3.431208680510616,,2.5839088950506137,,-3.431208680510616,-2.4952353819377335,-0.8472997854600024,6.01511757556123,-2.4952353819377335,-0.8472997854600024,6.01511757556123,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,138,139,55.2,-2.5794627028809267,,,,1.9214694430567951,,3.431208680510616,,1.9214694430567951,,-3.431208680510616,-2.5794627028809267,-1.509739237453821,5.3526781235674115,-2.5794627028809267,-1.509739237453821,5.3526781235674115,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,139,140,55.6,-2.191637940994268,,,,0.9331089530736448,,3.431208680510616,,0.9331089530736448,,-3.431208680510616,-2.191637940994268,-2.4980997274369714,4.364317633584261,-2.191637940994268,-2.4980997274369714,4.364317633584261,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,140,141,56.0,-1.4989867515199822,,,,0.7408224602332564,,3.431208680510616,,0.7408224602332564,,-3.431208680510616,-1.4989867515199822,-2.6903862202773596,4.172031140743872,-1.4989867515199822,-2.6903862202773596,4.172031140743872,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,141,142,56.400000000000006,-0.7993578438541069,,,,0.7887349865431015,,3.431208680510616,,0.7887349865431015,,-3.431208680510616,-0.7993578438541069,-2.6424736939675144,4.219943667053718,-0.7993578438541069,-2.6424736939675144,4.219943667053718,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,142,143,56.800000000000004,-0.11368324592632022,,,,0.18383258597226418,,3.431208680510616,,0.18383258597226418,,-3.431208680510616,-0.11368324592632022,-3.247376094538352,3.6150412664828804,-0.11368324592632023,-3.247376094538352,3.6150412664828804,-1.3877787807814457e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,143,144,57.2,0.6420263080939983,,,,-0.8273644751534615,,3.431208680510616,,-0.8273644751534615,,-3.431208680510616,0.6420263080939983,-4.258573155664077,2.603844205357155,0.6420263080939983,-4.258573155664077,2.603844205357155,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,144,145,57.6,1.422355527073529,,,,-1.655641055119755,,3.431208680510616,,-1.655641055119755,,-3.431208680510616,1.422355527073529,-5.086849735630371,1.7755676253908612,1.422355527073529,-5.086849735630371,1.775567625390861,0.0,0.0,-2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,145,146,58.0,2.0708223379002644,,,,-2.2972739819690458,,3.431208680510616,,-2.2972739819690458,,-3.431208680510616,2.0708223379002644,-5.728482662479662,1.1339346985415704,2.0708223379002644,-5.728482662479662,1.1339346985415704,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,146,147,58.400000000000006,2.488752832588233,,,,-2.588536331160382,,3.431208680510616,,-2.588536331160382,,-3.431208680510616,2.488752832588233,-6.019745011670999,0.8426723493502339,2.488752832588233,-6.019745011670999,0.842672349350234,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,147,148,58.800000000000004,2.5856579854823156,,,,-1.9472857697321275,,3.431208680510616,,-1.9472857697321275,,-3.431208680510616,2.5856579854823156,-5.378494450242743,1.4839229107784886,2.5856579854823156,-5.378494450242743,1.4839229107784886,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,148,149,59.2,2.2115795812899863,,,,-0.9506947175245558,,3.431208680510616,,-0.9506947175245558,,-3.431208680510616,2.2115795812899863,-4.381903398035172,2.4805139629860604,2.2115795812899863,-4.381903398035172,2.4805139629860604,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,149,150,59.6,1.5238736866644496,,,,-0.7480555077299736,,3.431208680510616,,-0.7480555077299736,,-3.431208680510616,1.5238736866644496,-4.17926418824059,2.6831531727806426,1.5238736866644496,-4.17926418824059,2.6831531727806426,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,150,151,60.0,0.8262222353809568,,,,-0.8126377352861212,,3.431208680510616,,-0.8126377352861212,,-3.431208680510616,0.8262222353809568,-4.243846415796737,2.618570945224495,0.8262222353809567,-4.243846415796737,2.618570945224495,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,151,152,60.400000000000006,0.14298687402314686,,,,-0.22127470929548065,,3.431208680510616,,-0.22127470929548065,,-3.431208680510616,0.14298687402314686,-3.652483389806097,3.2099339712151354,0.14298687402314686,-3.6524833898060973,3.2099339712151354,0.0,-4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,152,153,60.800000000000004,-0.6102473241846001,,,,0.799812241438251,,3.431208680510616,,0.799812241438251,,-3.431208680510616,-0.6102473241846001,-2.631396439072365,4.2310209219488675,-0.6102473241846001,-2.631396439072365,4.2310209219488675,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,153,154,61.2,-1.393775460423472,,,,1.6336864441141743,,3.431208680510616,,1.6336864441141743,,-3.431208680510616,-1.393775460423472,-1.7975222363964418,5.06489512462479,-1.393775460423472,-1.797522236396442,5.06489512462479,0.0,-2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,154,155,61.6,-2.048520226291316,,,,2.2762100091132007,,3.431208680510616,,2.2762100091132007,,-3.431208680510616,-2.048520226291316,-1.1549986713974154,5.707418689623816,-2.048520226291316,-1.1549986713974154,5.707418689623816,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,155,156,62.0,-2.4756101346631967,,,,2.5914454446245103,,3.431208680510616,,2.5914454446245103,,-3.431208680510616,-2.4756101346631967,-0.8397632358861058,6.022654125135126,-2.4756101346631967,-0.8397632358861057,6.022654125135126,0.0,1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,156,157,62.400000000000006,-2.587653579185657,,,,1.993848484446151,,3.431208680510616,,1.993848484446151,,-3.431208680510616,-2.587653579185657,-1.437360196064465,5.425057164956767,-2.587653579185657,-1.437360196064465,5.425057164956767,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,157,158,62.800000000000004,-2.231907988300202,,,,0.9746203031432097,,3.431208680510616,,0.9746203031432097,,-3.431208680510616,-2.231907988300202,-2.4565883773674067,4.405828983653826,-2.231907988300202,-2.4565883773674067,4.405828983653826,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,158,159,63.2,-1.5472282512868811,,,,0.7268902913921504,,3.431208680510616,,0.7268902913921504,,-3.431208680510616,-1.5472282512868811,-2.7043183891184657,4.158098971902767,-1.5472282512868811,-2.7043183891184657,4.158098971902767,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,159,160,63.6,-0.8454620923349982,,,,0.8060777666372639,,3.431208680510616,,0.8060777666372639,,-3.431208680510616,-0.8454620923349982,-2.625130913873352,4.23728644714788,-0.8454620923349982,-2.625130913873352,4.23728644714788,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,160,161,64.0,-0.16304959814119038,,,,0.2546744011397597,,3.431208680510616,,0.2546744011397597,,-3.431208680510616,-0.16304959814119038,-3.1765342793708564,3.685883081650376,-0.16304959814119038,-3.1765342793708564,3.6858830816503754,0.0,0.0,-4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,161,162,64.4,0.5856653713110412,,,,-0.7557084492466861,,3.431208680510616,,-0.7557084492466861,,-3.431208680510616,0.5856653713110412,-4.186917129757302,2.67550023126393,0.5856653713110412,-4.186917129757302,2.67550023126393,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,162,163,64.8,1.3693937506772673,,,,-1.6087991215396433,,3.431208680510616,,-1.6087991215396433,,-3.431208680510616,1.3693937506772673,-5.040007802050259,1.8224095589709728,1.3693937506772673,-5.040007802050259,1.8224095589709728,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,163,164,65.2,2.03162805350623,,,,-2.258603386982544,,3.431208680510616,,-2.258603386982544,,-3.431208680510616,2.03162805350623,-5.68981206749316,1.172605293528072,2.03162805350623,-5.68981206749316,1.172605293528072,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,164,165,65.60000000000001,2.468030821293317,,,,-2.593752197432326,,3.431208680510616,,-2.593752197432326,,-3.431208680510616,2.468030821293317,-6.0249608779429416,0.8374564830782902,2.468030821293317,-6.0249608779429416,0.8374564830782901,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,165,166,66.0,2.5923385579688456,,,,-2.026239547616584,,3.431208680510616,,-2.026239547616584,,-3.431208680510616,2.5923385579688456,-5.4574482281272,1.4049691328940321,2.5923385579688456,-5.4574482281272,1.4049691328940321,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,166,167,66.4,2.2533329373317645,,,,-1.006760465173341,,3.431208680510616,,-1.006760465173341,,-3.431208680510616,2.2533329373317645,-4.437969145683957,2.424448215337275,2.2533329373317645,-4.437969145683957,2.424448215337275,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,167,168,66.8,1.5751776186854816,,,,-0.7353480044062138,,3.431208680510616,,-0.7353480044062138,,-3.431208680510616,1.5751776186854816,-4.16655668491683,2.6958606761044024,1.5751776186854816,-4.16655668491683,2.6958606761044024,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,168,169,67.2,0.8728978205720026,,,,-0.8140589501797594,,3.431208680510616,,-0.8140589501797594,,-3.431208680510616,0.8728978205720026,-4.245267630690376,2.6171497303308566,0.8728978205720026,-4.245267630690376,2.6171497303308566,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,169,170,67.60000000000001,0.1895950880577914,,,,-0.2775877041844661,,3.431208680510616,,-0.2775877041844661,,-3.431208680510616,0.1895950880577914,-3.7087963846950824,3.15362097632615,0.1895950880577914,-3.7087963846950824,3.15362097632615,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,170,171,68.0,-0.5577496589657742,,,,0.7277013049688414,,3.431208680510616,,0.7277013049688414,,-3.431208680510616,-0.5577496589657742,-2.7035073755417747,4.158909985479458,-0.5577496589657742,-2.7035073755417747,4.158909985479458,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,171,172,68.4,-1.3436805351336725,,,,1.5814317142712329,,3.431208680510616,,1.5814317142712329,,-3.431208680510616,-1.3436805351336725,-1.8497769662393833,5.012640394781849,-1.3436805351336725,-1.849776966239383,5.012640394781849,0.0,2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,172,173,68.8,-2.0114414150781963,,,,2.2357287543805784,,3.431208680510616,,2.2357287543805784,,-3.431208680510616,-2.0114414150781963,-1.1954799261300377,5.666937434891194,-2.0114414150781963,-1.1954799261300377,5.666937434891194,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,173,174,69.2,-2.4565192834597984,,,,2.5950308340990875,,3.431208680510616,,2.5950308340990875,,-3.431208680510616,-2.4565192834597984,-0.8361778464115286,6.026239514609704,-2.4565192834597984,-0.8361778464115286,6.026239514609704,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,174,175,69.60000000000001,-2.594477474247597,,,,2.0577864076177375,,3.431208680510616,,2.0577864076177375,,-3.431208680510616,-2.594477474247597,-1.3734222728928787,5.488995088128354,-2.594477474247597,-1.3734222728928787,5.488995088128354,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,175,176,70.0,-2.271371823919551,,,,1.0219816995210815,,3.431208680510616,,1.0219816995210815,,-3.431208680510616,-2.271371823919551,-2.4092269809895344,4.453190380031698,-2.271371823919551,-2.4092269809895344,4.453190380031698,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,176,177,70.4,-1.5978256935867463,,,,0.7291895080310067,,3.431208680510616,,0.7291895080310067,,-3.431208680510616,-1.5978256935867463,-2.702019172479609,4.160398188541623,-1.5978256935867463,-2.702019172479609,4.160398188541623,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,177,178,70.8,-0.8954411119299066,,,,0.8278875918513233,,3.431208680510616,,0.8278875918513233,,-3.431208680510616,-0.8954411119299066,-2.6033210886592926,4.25909627236194,-0.8954411119299066,-2.6033210886592926,4.25909627236194,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,178,179,71.2,-0.21527655218975672,,,,0.3184751508117032,,3.431208680510616,,0.3184751508117032,,-3.431208680510616,-0.21527655218975672,-3.1127335296989127,3.7496838313223195,-0.21527655218975672,-3.1127335296989127,3.7496838313223195,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,179,180,71.60000000000001,0.5280565224663981,,,,-0.6910968382438892,,3.431208680510616,,-0.6910968382438892,,-3.431208680510616,0.5280565224663981,-4.122305518754505,2.7401118422667268,0.5280565224663981,-4.122305518754505,2.7401118422667268,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,180,181,72.0,1.3151868705070815,,,,-1.5605703806251827,,3.431208680510616,,-1.5605703806251827,,-3.431208680510616,1.3151868705070815,-4.991779061135799,1.8706382998854334,1.3151868705070815,-4.991779061135799,1.8706382998854332,0.0,0.0,-2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,181,182,72.4,1.9900598002577867,,,,-2.2154541761924906,,3.431208680510616,,-2.2154541761924906,,-3.431208680510616,1.9900598002577867,-5.646662856703107,1.2157545043181255,1.9900598002577867,-5.646662856703107,1.2157545043181255,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,182,183,72.8,2.4439685237551365,,,,-2.5959672221230106,,3.431208680510616,,-2.5959672221230106,,-3.431208680510616,2.4439685237551365,-6.027175902633626,0.8352414583876056,2.4439685237551365,-6.027175902633626,0.8352414583876056,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,183,184,73.2,2.5962801063918515,,,,-2.099210977559892,,3.431208680510616,,-2.099210977559892,,-3.431208680510616,2.5962801063918515,-5.5304196580705085,1.3319977029507242,2.5962801063918515,-5.5304196580705085,1.3319977029507242,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,184,185,73.60000000000001,2.293213243136165,,,,-1.0636542779326241,,3.431208680510616,,-1.0636542779326241,,-3.431208680510616,2.293213243136165,-4.494862958443241,2.367554402577992,2.293213243136165,-4.494862958443241,2.367554402577992,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,185,186,74.0,1.6240107902739158,,,,-0.7157040284773067,,3.431208680510616,,-0.7157040284773067,,-3.431208680510616,1.6240107902739158,-4.146912708987923,2.7155046520333093,1.6240107902739158,-4.146912708987923,2.7155046520333093,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,186,187,74.4,0.91773063619371,,,,-0.8153419258528916,,3.431208680510616,,-0.8153419258528916,,-3.431208680510616,0.91773063619371,-4.246550606363508,2.6158667546577243,0.91773063619371,-4.246550606363508,2.6158667546577243,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,187,188,74.8,0.236241946574026,,,,-0.34173405190767453,,3.431208680510616,,-0.34173405190767453,,-3.431208680510616,0.236241946574026,-3.7729427324182905,3.0894746286029418,0.23624194657402597,-3.7729427324182905,3.0894746286029418,-2.7755575615628914e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,188,189,75.2,-0.5038958127570908,,,,0.6520381686174429,,3.431208680510616,,0.6520381686174429,,-3.431208680510616,-0.5038958127570908,-2.7791705118931733,4.083246849128059,-0.5038958127570908,-2.7791705118931733,4.083246849128059,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,189,190,75.60000000000001,-1.291293381033247,,,,1.5299720121920384,,3.431208680510616,,1.5299720121920384,,-3.431208680510616,-1.291293381033247,-1.9012366683185777,4.961180692702655,-1.291293381033247,-1.9012366683185777,4.961180692702655,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,190,191,76.0,-1.9719402392215737,,,,2.1968990624938245,,3.431208680510616,,2.1968990624938245,,-3.431208680510616,-1.9719402392215737,-1.2343096180167916,5.62810774300444,-1.9719402392215735,-1.2343096180167916,5.62810774300444,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,191,192,76.4,-2.434730522413704,,,,2.5941156843695046,,3.431208680510616,,2.5941156843695046,,-3.431208680510616,-2.434730522413704,-0.8370929961411115,6.02532436488012,-2.434730522413704,-0.8370929961411114,6.02532436488012,0.0,1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,192,193,76.80000000000001,-2.5983762212571286,,,,2.1261950298093226,,3.431208680510616,,2.1261950298093226,,-3.431208680510616,-2.5983762212571286,-1.3050136507012935,5.557403710319939,-2.5983762212571286,-1.3050136507012935,5.557403710319939,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,193,194,77.2,-2.309807360020158,,,,1.0872018371366126,,3.431208680510616,,1.0872018371366126,,-3.431208680510616,-2.309807360020158,-2.344006843374004,4.5184105176472285,-2.309807360020158,-2.344006843374004,4.5184105176472285,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,194,195,77.60000000000001,-1.6493847468959775,,,,0.7269897079240781,,3.431208680510616,,0.7269897079240781,,-3.431208680510616,-1.6493847468959775,-2.704218972586538,4.158198388434695,-1.6493847468959777,-2.704218972586538,4.158198388434695,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,195,196,78.0,-0.9427804298284513,,,,0.8343055151337355,,3.431208680510616,,0.8343055151337355,,-3.431208680510616,-0.9427804298284513,-2.5969031653768804,4.265514195644352,-0.9427804298284513,-2.5969031653768804,4.265514195644352,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,196,197,78.4,-0.26334728475084723,,,,0.3688505580357835,,3.431208680510616,,0.3688505580357835,,-3.431208680510616,-0.26334728475084723,-3.0623581224748326,3.8000592385463996,-0.26334728475084723,-3.0623581224748326,3.800059238546399,0.0,0.0,-4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,197,198,78.80000000000001,0.475202182501936,,,,-0.6255300368562304,,3.431208680510616,,-0.6255300368562304,,-3.431208680510616,0.475202182501936,-4.056738717366846,2.8056786436543857,0.475202182501936,-4.056738717366846,2.8056786436543857,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,198,199,79.2,1.2639031403980108,,,,-1.507730417782654,,3.431208680510616,,-1.507730417782654,,-3.431208680510616,1.2639031403980108,-4.93893909829327,1.923478262727962,1.2639031403980108,-4.93893909829327,1.9234782627279619,0.0,0.0,-2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,199,200,79.60000000000001,1.9507783146437694,,,,-2.1728151412041066,,3.431208680510616,,-2.1728151412041066,,-3.431208680510616,1.9507783146437694,-5.604023821714723,1.2583935393065095,1.9507783146437692,-5.604023821714723,1.2583935393065095,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,200,201,80.0,2.4220602384299204,,,,-2.59140426212545,,3.431208680510616,,-2.59140426212545,,-3.431208680510616,2.4220602384299204,-6.022612942636066,0.8398044183851661,2.4220602384299204,-6.022612942636066,0.8398044183851662,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,201,202,80.4,2.5989027141627092,,,,-2.160176681367681,,3.431208680510616,,-2.160176681367681,,-3.431208680510616,2.5989027141627092,-5.591385361878297,1.2710319991429353,2.5989027141627092,-5.591385361878297,1.2710319991429353,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,202,203,80.80000000000001,2.32748780697,,,,-1.1129600059019962,,3.431208680510616,,-1.1129600059019962,,-3.431208680510616,2.32748780697,-4.544168686412612,2.31824867460862,2.32748780697,-4.544168686412612,2.31824867460862,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,203,204,81.2,1.6730466469790626,,,,-0.7160066932023793,,3.431208680510616,,-0.7160066932023793,,-3.431208680510616,1.6730466469790626,-4.147215373712996,2.715201987308237,1.6730466469790626,-4.147215373712996,2.715201987308237,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,204,205,81.60000000000001,0.9657701390408974,,,,-0.8306697322869253,,3.431208680510616,,-0.8306697322869253,,-3.431208680510616,0.9657701390408974,-4.261878412797541,2.600538948223691,0.9657701390408974,-4.261878412797541,2.600538948223691,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,205,206,82.0,0.28612480728798806,,,,-0.40544406306043124,,3.431208680510616,,-0.40544406306043124,,-3.431208680510616,0.28612480728798806,-3.8366527435710474,3.025764617450185,0.28612480728798806,-3.8366527435710474,3.025764617450185,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,206,207,82.4,-0.4479067021537412,,,,0.5814877519830404,,3.431208680510616,,0.5814877519830404,,-3.431208680510616,-0.4479067021537412,-2.8497209285275757,4.012696432493657,-0.44790670215374123,-2.8497209285275757,4.012696432493657,-5.551115123125783e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,207,208,82.80000000000001,-1.2365517051936632,,,,1.482115055612903,,3.431208680510616,,1.482115055612903,,-3.431208680510616,-1.2365517051936632,-1.949093624897713,4.91332373612352,-1.2365517051936632,-1.949093624897713,4.91332373612352,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,208,209,83.2,-1.9296625658647342,,,,2.1538338914061055,,3.431208680510616,,2.1538338914061055,,-3.431208680510616,-1.9296625658647342,-1.2773747891045106,5.585042571916722,-1.9296625658647342,-1.2773747891045106,5.585042571916722,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,209,210,83.60000000000001,-2.4098375932953577,,,,2.5872166642403975,,3.431208680510616,,2.5872166642403975,,-3.431208680510616,-2.4098375932953577,-0.8439920162702186,6.018425344751014,-2.4098375932953577,-0.8439920162702187,6.018425344751014,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,210,211,84.0,-2.599363850553109,,,,2.195686881135159,,3.431208680510616,,2.195686881135159,,-3.431208680510616,-2.599363850553109,-1.2355217993754573,5.6268955616457745,-2.599363850553109,-1.2355217993754573,5.6268955616457745,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,211,212,84.4,-2.3467172299695114,,,,1.1529901562179237,,3.431208680510616,,1.1529901562179237,,-3.431208680510616,-2.3467172299695114,-2.2782185242926927,4.58419883672854,-2.3467172299695114,-2.2782185242926927,4.58419883672854,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,212,213,84.80000000000001,-1.7000534508852891,,,,0.7170716528361232,,3.431208680510616,,0.7170716528361232,,-3.431208680510616,-1.7000534508852891,-2.714137027674493,4.148280333346739,-1.7000534508852891,-2.714137027674493,4.148280333346739,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,213,214,85.2,-0.9905029846568763,,,,0.8233387907166558,,3.431208680510616,,0.8233387907166558,,-3.431208680510616,-0.9905029846568763,-2.6078698897939603,4.254547471227272,-0.9905029846568763,-2.6078698897939603,4.254547471227272,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,214,215,85.60000000000001,-0.3094391012859162,,,,0.4247549250967534,,3.431208680510616,,0.4247549250967534,,-3.431208680510616,-0.3094391012859162,-3.0064537554138626,3.8559636056073696,-0.3094391012859162,-3.0064537554138626,3.8559636056073696,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,215,216,86.0,0.42226892188140464,,,,-0.5476340630511525,,3.431208680510616,,-0.5476340630511525,,-3.431208680510616,0.42226892188140464,-3.978842743561769,2.8835746174594634,0.42226892188140464,-3.978842743561769,2.8835746174594634,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,216,217,86.4,1.2112923444722006,,,,-1.4516122975657475,,3.431208680510616,,-1.4516122975657475,,-3.431208680510616,1.2112923444722006,-4.882820978076364,1.9795963829448686,1.2112923444722006,-4.882820978076364,1.9795963829448686,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,217,218,86.80000000000001,1.9099756916587627,,,,-2.1307318035228224,,3.431208680510616,,-2.1307318035228224,,-3.431208680510616,1.9099756916587627,-5.561940484033439,1.3004768769877937,1.9099756916587627,-5.561940484033439,1.3004768769877937,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,218,219,87.2,2.3986287733426157,,,,-2.5835553040928767,,3.431208680510616,,-2.5835553040928767,,-3.431208680510616,2.3986287733426157,-6.014763984603492,0.8476533764177394,2.3986287733426157,-6.014763984603492,0.8476533764177394,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,219,220,87.60000000000001,2.6001044393256745,,,,-2.221283669312727,,3.431208680510616,,-2.221283669312727,,-3.431208680510616,2.6001044393256745,-5.652492349823343,1.209925011197889,2.6001044393256745,-5.652492349823343,1.209925011197889,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,220,221,88.0,2.363272674622035,,,,-1.1787343183662518,,3.431208680510616,,-1.1787343183662518,,-3.431208680510616,2.363272674622035,-4.609942998876868,2.2524743621443646,2.363272674622035,-4.609942998876868,2.2524743621443646,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,221,222,88.4,1.7245121942957864,,,,-0.7202651615248168,,3.431208680510616,,-0.7202651615248168,,-3.431208680510616,1.7245121942957864,-4.151473842035433,2.7109435189857995,1.7245121942957864,-4.151473842035433,2.7109435189857995,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,222,223,88.80000000000001,1.0156512126626476,,,,-0.8365305880496994,,3.431208680510616,,-0.8365305880496994,,-3.431208680510616,1.0156512126626476,-4.267739268560316,2.5946780924609167,1.0156512126626476,-4.267739268560316,2.5946780924609167,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,223,224,89.2,0.3361257714872633,,,,-0.4576044004840846,,3.431208680510616,,-0.4576044004840846,,-3.431208680510616,0.3361257714872633,-3.8888130809947006,2.9736042800265317,0.3361257714872633,-3.8888130809947006,2.9736042800265317,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,224,225,89.60000000000001,-0.39237372186260727,,,,0.5136314776901292,,3.431208680510616,,0.5136314776901292,,-3.431208680510616,-0.39237372186260727,-2.917577202820487,3.944840158200745,-0.39237372186260727,-2.917577202820487,3.944840158200745,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,225,226,90.0,-1.1822321827143647,,,,1.4298773773037685,,3.431208680510616,,1.4298773773037685,,-3.431208680510616,-1.1822321827143647,-2.0013313032068476,4.861086057814385,-1.1822321827143647,-2.0013313032068476,4.861086057814385,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,226,227,90.4,-1.886726709776209,,,,2.108252705606842,,3.431208680510616,,2.108252705606842,,-3.431208680510616,-1.886726709776209,-1.322955974903774,5.539461386117458,-1.886726709776209,-1.322955974903774,5.539461386117458,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,227,228,90.80000000000001,-2.3838344026154545,,,,2.5763323809443572,,3.431208680510616,,2.5763323809443572,,-3.431208680510616,-2.3838344026154545,-0.8548762995662589,6.007541061454973,-2.3838344026154545,-0.8548762995662589,6.007541061454973,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,228,229,91.2,-2.5980299027663607,,,,2.2568249272310674,,3.431208680510616,,2.2568249272310674,,-3.431208680510616,-2.5980299027663607,-1.1743837532795487,5.6880336077416835,-2.5980299027663607,-1.1743837532795487,5.6880336077416835,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,229,230,91.60000000000001,-2.380004475306011,,,,1.2138661111044697,,3.431208680510616,,1.2138661111044697,,-3.431208680510616,-2.380004475306011,-2.2173425694061466,4.645074791615086,-2.380004475306011,-2.2173425694061466,4.645074791615086,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,230,231,92.0,-1.7489825260557823,,,,0.7114749436015186,,3.431208680510616,,0.7114749436015186,,-3.431208680510616,-1.7489825260557823,-2.7197337369090975,4.142683624112134,-1.7489825260557823,-2.7197337369090975,4.142683624112134,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,231,232,92.4,-1.0375094816058315,,,,0.8258680508160678,,3.431208680510616,,0.8258680508160678,,-3.431208680510616,-1.0375094816058315,-2.605340629694548,4.257076731326684,-1.0375094816058315,-2.605340629694548,4.257076731326684,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,232,233,92.80000000000001,-0.3574158783064584,,,,0.4820416843627833,,3.431208680510616,,0.4820416843627833,,-3.431208680510616,-0.3574158783064584,-2.9491669961478326,3.9132503648733996,-0.3574158783064584,-2.9491669961478326,3.9132503648733996,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,233,234,93.2,0.36717513337630353,,,,-0.47304578231293937,,3.431208680510616,,-0.47304578231293937,,-3.431208680510616,0.36717513337630353,-3.9042544628235554,2.958162898197677,0.36717513337630353,-3.9042544628235554,2.958162898197677,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,234,235,93.60000000000001,1.156133665649887,,,,-1.3986931668876867,,3.431208680510616,,-1.3986931668876867,,-3.431208680510616,1.156133665649887,-4.829901847398303,2.032515513622929,1.156133665649887,-4.829901847398303,2.032515513622929,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,235,236,94.0,1.865963761859692,,,,-2.0882855117647914,,3.431208680510616,,-2.0882855117647914,,-3.431208680510616,1.865963761859692,-5.519494192275408,1.3429231687458247,1.865963761859692,-5.519494192275408,1.3429231687458247,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,236,237,94.4,2.3728157026341825,,,,-2.5689394753182,,3.431208680510616,,-2.5689394753182,,-3.431208680510616,2.3728157026341825,-6.000148155828816,0.8622692051924159,2.3728157026341825,-6.000148155828816,0.8622692051924159,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,237,238,94.80000000000001,2.5973075179144636,,,,-2.2823494747587127,,3.431208680510616,,-2.2823494747587127,,-3.431208680510616,2.5973075179144636,-5.713558155269329,1.1488592057519034,2.5973075179144636,-5.713558155269329,1.1488592057519034,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,238,239,95.2,2.3964618851857633,,,,-1.2524187155668611,,3.431208680510616,,-1.2524187155668611,,-3.431208680510616,2.3964618851857633,-4.683627396077477,2.178789964943755,2.3964618851857633,-4.683627396077477,2.178789964943755,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,239,240,95.60000000000001,1.775635507903941,,,,-0.7224538476856034,,3.431208680510616,,-0.7224538476856034,,-3.431208680510616,1.775635507903941,-4.15366252819622,2.708754832825013,1.7756355079039412,-4.15366252819622,2.708754832825013,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,240,241,96.0,1.0639966745764866,,,,-0.8280498859141641,,3.431208680510616,,-0.8280498859141641,,-3.431208680510616,1.0639966745764866,-4.25925856642478,2.6031587945964523,1.0639966745764866,-4.25925856642478,2.6031587945964523,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,241,242,96.4,0.38276346144345386,,,,-0.5019536129657989,,3.431208680510616,,-0.5019536129657989,,-3.431208680510616,0.38276346144345386,-3.933162293476415,2.9292550675448172,0.38276346144345386,-3.933162293476415,2.9292550675448172,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,242,243,96.80000000000001,-0.34076609516505546,,,,0.44054951726875125,,3.431208680510616,,0.44054951726875125,,-3.431208680510616,-0.34076609516505546,-2.990659163241865,3.8717581977793674,-0.34076609516505546,-2.990659163241865,3.8717581977793674,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,243,244,97.2,-1.1293600939272508,,,,1.3732291370804721,,3.431208680510616,,1.3732291370804721,,-3.431208680510616,-1.1293600939272508,-2.057979543430144,4.804437817591088,-1.1293600939272508,-2.057979543430144,4.804437817591088,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,244,245,97.60000000000001,-1.8445151033314544,,,,2.0644138211726344,,3.431208680510616,,2.0644138211726344,,-3.431208680510616,-1.8445151033314544,-1.3667948593379817,5.4956225016832505,-1.8445151033314544,-1.3667948593379817,5.4956225016832505,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,245,246,98.0,-2.3585954214051794,,,,2.561884859943105,,3.431208680510616,,2.561884859943105,,-3.431208680510616,-2.3585954214051794,-0.8693238205675109,5.993093540453721,-2.3585954214051794,-0.8693238205675109,5.993093540453721,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,246,247,98.4,-2.595668632256613,,,,2.3085897299687352,,3.431208680510616,,2.3085897299687352,,-3.431208680510616,-2.595668632256613,-1.1226189505418809,5.739798410479351,-2.595668632256613,-1.1226189505418809,5.739798410479351,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,247,248,98.80000000000001,-2.4114323455455384,,,,1.2794367186380677,,3.431208680510616,,1.2794367186380677,,-3.431208680510616,-2.4114323455455384,-2.1517719618725484,4.710645399148683,-2.4114323455455384,-2.1517719618725484,4.710645399148683,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,248,249,99.2,-1.7985280037400362,,,,0.7210769363306956,,3.431208680510616,,0.7210769363306956,,-3.431208680510616,-1.7985280037400362,-2.7101317441799204,4.152285616841311,-1.7985280037400364,-2.7101317441799204,4.152285616841311,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,249,250,99.60000000000001,-1.0868065645725722,,,,0.8309480376779881,,3.431208680510616,,0.8309480376779881,,-3.431208680510616,-1.0868065645725722,-2.600260642832628,4.262156718188605,-1.0868065645725722,-2.600260642832628,4.262156718188605,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,250,251,100.0,-0.40689954036010045,,,,0.5348773843218602,,3.431208680510616,,0.5348773843218602,,-3.431208680510616,-0.40689954036010045,-2.896331296188756,3.966086064832476,-0.40689954036010045,-2.896331296188756,3.966086064832476,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,251,252,100.4,0.3122679572579586,,,,-0.40207303572514075,,3.431208680510616,,-0.40207303572514075,,-3.431208680510616,0.3122679572579586,-3.833281716235757,3.0291356447854754,0.3122679572579586,-3.833281716235757,3.0291356447854754,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,252,253,100.80000000000001,1.1007892624369473,,,,-1.3478083450911251,,3.431208680510616,,-1.3478083450911251,,-3.431208680510616,1.1007892624369473,-4.779017025601741,2.083400335419491,1.1007892624369473,-4.779017025601741,2.083400335419491,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,253,254,101.2,1.8215271035115588,,,,-2.04491143387266,,3.431208680510616,,-2.04491143387266,,-3.431208680510616,1.8215271035115588,-5.476120114383276,1.3862972466379562,1.8215271035115588,-5.476120114383276,1.3862972466379562,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,254,255,101.60000000000001,2.3436902287609724,,,,-2.5527214874719433,,3.431208680510616,,-2.5527214874719433,,-3.431208680510616,2.3436902287609724,-5.983930167982559,0.8784871930386728,2.3436902287609724,-5.983930167982559,0.8784871930386728,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,255,256,102.0,2.592666050941654,,,,-2.338401291913361,,3.431208680510616,,-2.338401291913361,,-3.431208680510616,2.592666050941654,-5.769609972423977,1.092807388597255,2.592666050941654,-5.769609972423977,1.092807388597255,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,256,257,102.4,2.426626136932052,,,,-1.3206452517367222,,3.431208680510616,,-1.3206452517367222,,-3.431208680510616,2.426626136932052,-4.7518539322473385,2.1105634287738937,2.426626136932052,-4.7518539322473385,2.1105634287738937,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,257,258,102.80000000000001,1.824217731785988,,,,-0.7208837363628299,,3.431208680510616,,-0.7208837363628299,,-3.431208680510616,1.824217731785988,-4.152092416873446,2.710324944147786,1.8242177317859878,-4.152092416873446,2.710324944147786,-2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,258,259,103.2,1.1101712967506943,,,,-0.8195381256277663,,3.431208680510616,,-0.8195381256277663,,-3.431208680510616,1.1101712967506943,-4.250746806138382,2.61167055488285,1.1101712967506943,-4.250746806138382,2.61167055488285,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,259,260,103.60000000000001,0.42803843253827845,,,,-0.5501019680780271,,3.431208680510616,,-0.5501019680780271,,-3.431208680510616,0.42803843253827845,-3.9813106485886434,2.881106712432589,0.4280384325382785,-3.9813106485886434,2.881106712432589,5.551115123125783e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,260,261,104.0,-0.2883510024863842,,,,0.36359594519818,,3.431208680510616,,0.36359594519818,,-3.431208680510616,-0.2883510024863842,-3.0676127353124363,3.794804625708796,-0.2883510024863842,-3.0676127353124363,3.794804625708796,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,261,262,104.4,-1.075314695853337,,,,1.3163382169921027,,3.431208680510616,,1.3163382169921027,,-3.431208680510616,-1.075314695853337,-2.114870463518513,4.747546897502719,-1.075314695853337,-2.114870463518513,4.747546897502719,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,262,263,104.80000000000001,-1.8007960346561152,,,,2.0217190642077028,,3.431208680510616,,2.0217190642077028,,-3.431208680510616,-1.8007960346561152,-1.4094896163029134,5.452927744718319,-1.8007960346561152,-1.4094896163029134,5.452927744718319,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,263,264,105.2,-2.331403026307746,,,,2.5439667428287973,,3.431208680510616,,2.5439667428287973,,-3.431208680510616,-2.331403026307746,-0.8872419376818188,5.975175423339413,-2.331403026307746,-0.8872419376818189,5.975175423339413,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,264,265,105.60000000000001,-2.590885885099493,,,,2.360143215483868,,3.431208680510616,,2.360143215483868,,-3.431208680510616,-2.590885885099493,-1.0710654650267482,5.7913518959944845,-2.590885885099493,-1.0710654650267482,5.7913518959944845,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,265,266,106.0,-2.44092749220774,,,,1.3542207875233851,,3.431208680510616,,1.3542207875233851,,-3.431208680510616,-2.44092749220774,-2.0769878929872307,4.7854294680340015,-2.44092749220774,-2.0769878929872307,4.7854294680340015,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,266,267,106.4,-1.8491212280582832,,,,0.7329758620111655,,3.431208680510616,,0.7329758620111655,,-3.431208680510616,-1.8491212280582832,-2.6982328184994504,4.164184542521782,-1.8491212280582832,-2.6982328184994504,4.164184542521782,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,267,268,106.80000000000001,-1.1360988745601133,,,,0.8250477502432856,,3.431208680510616,,0.8250477502432856,,-3.431208680510616,-1.1360988745601133,-2.6061609302673308,4.2562564307539015,-1.1360988745601133,-2.6061609302673308,4.2562564307539015,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,268,269,107.2,-0.45404748399264094,,,,0.576899975913957,,3.431208680510616,,0.576899975913957,,-3.431208680510616,-0.45404748399264094,-2.854308704596659,4.008108656424573,-0.45404748399264094,-2.854308704596659,4.008108656424573,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,269,270,107.60000000000001,0.25995725407436515,,,,-0.3333882395842189,,3.431208680510616,,-0.3333882395842189,,-3.431208680510616,0.25995725407436515,-3.764596920094835,3.097820440926397,0.25995725407436515,-3.764596920094835,3.097820440926397,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,270,271,108.0,1.0471479914018762,,,,-1.2912666769541221,,3.431208680510616,,-1.2912666769541221,,-3.431208680510616,1.0471479914018762,-4.722475357464738,2.139942003556494,1.0471479914018762,-4.722475357464738,2.139942003556494,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,271,272,108.4,1.7774963481945285,,,,-1.9983149205826976,,3.431208680510616,,-1.9983149205826976,,-3.431208680510616,1.7774963481945285,-5.4295236010933134,1.4328937599279186,1.7774963481945287,-5.4295236010933134,1.4328937599279186,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,272,273,108.80000000000001,2.315958997611749,,,,-2.5324734000595917,,3.431208680510616,,-2.5324734000595917,,-3.431208680510616,2.315958997611749,-5.963682080570208,0.8987352804510245,2.315958997611749,-5.963682080570208,0.8987352804510246,0.0,0.0,1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,273,274,109.2,2.5870483210233304,,,,-2.386169489169198,,3.431208680510616,,-2.386169489169198,,-3.431208680510616,2.5870483210233304,-5.817378169679814,1.0450391913414183,2.5870483210233304,-5.817378169679814,1.0450391913414183,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,274,275,109.60000000000001,2.4543059087055314,,,,-1.3889530871838414,,3.431208680510616,,-1.3889530871838414,,-3.431208680510616,2.4543059087055314,-4.820161767694458,2.0422555933267748,2.4543059087055314,-4.820161767694458,2.0422555933267748,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,275,276,110.0,1.8728039516506207,,,,-0.7302415267685579,,3.431208680510616,,-0.7302415267685579,,-3.431208680510616,1.8728039516506207,-4.161450207279174,2.700967153742058,1.8728039516506207,-4.161450207279174,2.700967153742058,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,276,277,110.4,1.1587276355455467,,,,-0.8180118611062106,,3.431208680510616,,-0.8180118611062106,,-3.431208680510616,1.1587276355455467,-4.249220541616827,2.6131968194044055,1.1587276355455467,-4.249220541616827,2.6131968194044055,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,277,278,110.80000000000001,0.4767901526816724,,,,-0.6012102867641294,,3.431208680510616,,-0.6012102867641294,,-3.431208680510616,0.4767901526816724,-4.0324189672747455,2.8299983937464868,0.47679015268167246,-4.0324189672747455,2.8299983937464868,5.551115123125783e-17,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,278,279,111.2,-0.23378213624370836,,,,0.29010505245711143,,3.431208680510616,,0.29010505245711143,,-3.431208680510616,-0.23378213624370836,-3.1411036280535045,3.7213137329677277,-0.23378213624370836,-3.141103628053504,3.7213137329677277,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,279,280,111.60000000000001,-1.0191476530254036,,,,1.261594876688378,,3.431208680510616,,1.261594876688378,,-3.431208680510616,-1.0191476530254036,-2.169613803822238,4.692803557198994,-1.0191476530254036,-2.169613803822238,4.692803557198994,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,280,281,112.0,-1.754691808375127,,,,1.9775249902344638,,3.431208680510616,,1.9775249902344638,,-3.431208680510616,-1.754691808375127,-1.4536836902761523,5.40873367074508,-1.754691808375127,-1.4536836902761523,5.40873367074508,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,281,282,112.4,-2.301206717901158,,,,2.5214870359294665,,3.431208680510616,,2.5214870359294665,,-3.431208680510616,-2.301206717901158,-0.9097216445811496,5.952695716440083,-2.301206717901158,-0.9097216445811496,5.952695716440083,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,282,283,112.80000000000001,-2.583131547692356,,,,2.4098109079320427,,3.431208680510616,,2.4098109079320427,,-3.431208680510616,-2.583131547692356,-1.0213977725785734,5.841019588442659,-2.583131547692356,-1.0213977725785734,5.841019588442659,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,283,284,113.2,-2.4682993069232753,,,,1.430587147398481,,3.431208680510616,,1.430587147398481,,-3.431208680510616,-2.4682993069232753,-2.000621533112135,4.861795827909097,-2.4682993069232753,-2.000621533112135,4.861795827909097,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,284,285,113.60000000000001,-1.898612093980531,,,,0.7406901586004152,,3.431208680510616,,0.7406901586004152,,-3.431208680510616,-1.898612093980531,-2.690518521910201,4.171898839111031,-1.898612093980531,-2.690518521910201,4.171898839111031,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,285,286,114.0,-1.1840573699603256,,,,0.812152223310137,,3.431208680510616,,0.812152223310137,,-3.431208680510616,-1.1840573699603256,-2.619056457200479,4.243360903820753,-1.1840573699603256,-2.619056457200479,4.243360903820753,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,286,287,114.4,-0.5004948208783769,,,,0.6149684386129023,,3.431208680510616,,0.6149684386129023,,-3.431208680510616,-0.5004948208783769,-2.816240241897714,4.046177119123518,-0.5004948208783769,-2.816240241897714,4.046177119123518,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,287,288,114.80000000000001,0.2085507751502253,,,,-0.25709845936541664,,3.431208680510616,,-0.25709845936541664,,-3.431208680510616,0.2085507751502253,-3.6883071398760325,3.1741102211451997,0.2085507751502253,-3.6883071398760325,3.1741102211451993,0.0,0.0,-4.440892098500626e-16 +karman,karman_re100,sr_closed_loop_400,288,289,115.2,0.9925910631571754,,,,-1.2310915096578723,,3.431208680510616,,-1.2310915096578723,,-3.431208680510616,0.9925910631571754,-4.662300190168488,2.200117170852744,0.9925910631571755,-4.662300190168488,2.200117170852744,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,289,290,115.60000000000001,1.7321096227867214,,,,-1.95322914273886,,3.431208680510616,,-1.95322914273886,,-3.431208680510616,1.7321096227867214,-5.384437823249476,1.4779795377717562,1.7321096227867216,-5.384437823249476,1.4779795377717562,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,290,291,116.0,2.286896127465716,,,,-2.5086084082842874,,3.431208680510616,,-2.5086084082842874,,-3.431208680510616,2.286896127465716,-5.9398170887949036,0.9226002722263287,2.286896127465716,-5.9398170887949036,0.9226002722263286,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re100,sr_closed_loop_400,291,292,116.4,2.5796066470536276,,,,-2.428355592790836,,3.431208680510616,,-2.428355592790836,,-3.431208680510616,2.5796066470536276,-5.8595642733014515,1.0028530877197803,2.5796066470536276,-5.8595642733014515,1.0028530877197803,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,292,293,116.80000000000001,2.4801862007210187,,,,-1.4648418518665063,,3.431208680510616,,-1.4648418518665063,,-3.431208680510616,2.4801862007210187,-4.896050532377123,1.9663668286441098,2.4801862007210187,-4.896050532377123,1.9663668286441098,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,293,294,117.2,1.922191588022736,,,,-0.7491385846183874,,3.431208680510616,,-0.7491385846183874,,-3.431208680510616,1.922191588022736,-4.1803472651290035,2.682070095892229,1.9221915880227363,-4.1803472651290035,2.682070095892229,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,294,295,117.60000000000001,1.2098168501023026,,,,-0.8186797635955936,,3.431208680510616,,-0.8186797635955936,,-3.431208680510616,1.2098168501023026,-4.24988844410621,2.6125289169150223,1.2098168501023026,-4.24988844410621,2.6125289169150223,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,295,296,118.0,0.525390014386855,,,,-0.6399894330328124,,3.431208680510616,,-0.6399894330328124,,-3.431208680510616,0.525390014386855,-4.071198113543429,2.7912192474778035,0.525390014386855,-4.071198113543429,2.7912192474778035,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,296,297,118.4,-0.18062848053364342,,,,0.22140290029070758,,3.431208680510616,,0.22140290029070758,,-3.431208680510616,-0.18062848053364342,-3.2098057802199085,3.6526115808013238,-0.18062848053364342,-3.2098057802199085,3.6526115808013238,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,297,298,118.80000000000001,-0.9635923951313539,,,,1.2051241551116787,,3.431208680510616,,1.2051241551116787,,-3.431208680510616,-0.9635923951313539,-2.2260845253989374,4.636332835622294,-0.963592395131354,-2.2260845253989374,4.636332835622294,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,298,299,119.2,-1.7078855323536228,,,,1.9320945278143866,,3.431208680510616,,1.9320945278143866,,-3.431208680510616,-1.7078855323536228,-1.4991141526962295,5.363303208325003,-1.7078855323536228,-1.4991141526962295,5.363303208325003,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,299,300,119.60000000000001,-2.270592074517645,,,,2.494902476757798,,3.431208680510616,,2.494902476757798,,-3.431208680510616,-2.270592074517645,-0.9363062037528183,5.926111157268414,-2.270592074517645,-0.9363062037528181,5.926111157268414,0.0,1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,300,301,120.0,-2.5737752652663843,,,,2.4516397666958425,,3.431208680510616,,2.4516397666958425,,-3.431208680510616,-2.5737752652663843,-0.9795689138147736,5.882848447206459,-2.5737752652663843,-0.9795689138147736,5.882848447206459,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,301,302,120.4,-2.492071940123793,,,,1.50544977513598,,3.431208680510616,,1.50544977513598,,-3.431208680510616,-2.492071940123793,-1.925758905374636,4.936658455646596,-2.492071940123793,-1.925758905374636,4.936658455646596,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,302,303,120.80000000000001,-1.9461859538569584,,,,0.7515769539527751,,3.431208680510616,,0.7515769539527751,,-3.431208680510616,-1.9461859538569584,-2.679631726557841,4.182785634463391,-1.9461859538569581,-2.679631726557841,4.182785634463391,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,303,304,121.2,-1.2312355387611469,,,,0.8043161300508379,,3.431208680510616,,0.8043161300508379,,-3.431208680510616,-1.2312355387611469,-2.626892550459778,4.235524810561454,-1.2312355387611469,-2.626892550459778,4.235524810561454,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,304,305,121.60000000000001,-0.5469806190965011,,,,0.6569206926280456,,3.431208680510616,,0.6569206926280456,,-3.431208680510616,-0.5469806190965011,-2.7742879878825706,4.088129373138662,-0.5469806190965011,-2.7742879878825706,4.088129373138662,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,305,306,122.0,0.15634993928783775,,,,-0.18151753576630142,,3.431208680510616,,-0.18151753576630142,,-3.431208680510616,0.15634993928783775,-3.6127262162769176,3.2496911447443146,0.15634993928783775,-3.612726216276917,3.2496911447443146,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,306,307,122.4,0.9371984195544639,,,,-1.1720103809503406,,3.431208680510616,,-1.1720103809503406,,-3.431208680510616,0.9371984195544639,-4.6032190614609565,2.2591982995602757,0.9371984195544639,-4.6032190614609565,2.2591982995602757,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,307,308,122.80000000000001,1.685142042268171,,,,-1.9104329900461123,,3.431208680510616,,-1.9104329900461123,,-3.431208680510616,1.685142042268171,-5.3416416705567284,1.5207756904645038,1.685142042268171,-5.3416416705567284,1.5207756904645038,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,308,309,123.2,2.2559428911577672,,,,-2.4822459757896214,,3.431208680510616,,-2.4822459757896214,,-3.431208680510616,2.2559428911577672,-5.913454656300237,0.9489627047209948,2.2559428911577672,-5.913454656300237,0.9489627047209948,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,309,310,123.60000000000001,2.5693162814983252,,,,-2.4690359089560703,,3.431208680510616,,-2.4690359089560703,,-3.431208680510616,2.5693162814983252,-5.900244589466686,0.9621727715545458,2.5693162814983252,-5.900244589466686,0.9621727715545458,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,310,311,124.0,2.5036499444676554,,,,-1.5438178576432466,,3.431208680510616,,-1.5438178576432466,,-3.431208680510616,2.5036499444676554,-4.9750265381538625,1.8873908228673695,2.5036499444676554,-4.9750265381538625,1.8873908228673697,0.0,0.0,2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,311,312,124.4,1.9708250048816873,,,,-0.7686307714472455,,3.431208680510616,,-0.7686307714472455,,-3.431208680510616,1.9708250048816873,-4.199839451957861,2.6625779090633706,1.9708250048816873,-4.199839451957861,2.6625779090633706,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,312,313,124.80000000000001,1.2576650119833406,,,,-0.8011348010291492,,3.431208680510616,,-0.8011348010291492,,-3.431208680510616,1.2576650119833406,-4.232343481539766,2.6300738794814666,1.2576650119833406,-4.232343481539766,2.6300738794814666,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,313,314,125.2,0.5715900776501922,,,,-0.6738650453653092,,3.431208680510616,,-0.6738650453653092,,-3.431208680510616,0.5715900776501922,-4.105073725875926,2.7573436351453067,0.5715900776501922,-4.105073725875926,2.7573436351453067,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,314,315,125.60000000000001,-0.13002168929952024,,,,0.15036438350108236,,3.431208680510616,,0.15036438350108236,,-3.431208680510616,-0.13002168929952024,-3.280844297009534,3.5815730640116983,-0.13002168929952024,-3.2808442970095335,3.5815730640116983,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,315,316,126.0,-0.9097294358623845,,,,1.143722495348032,,3.431208680510616,,1.143722495348032,,-3.431208680510616,-0.9097294358623845,-2.2874861851625843,4.574931175858648,-0.9097294358623844,-2.2874861851625843,4.574931175858648,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,316,317,126.4,-1.6612843390383825,,,,1.888046609845207,,3.431208680510616,,1.888046609845207,,-3.431208680510616,-1.6612843390383825,-1.5431620706654092,5.319255290355823,-1.6612843390383825,-1.5431620706654092,5.319255290355823,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,317,318,126.80000000000001,-2.2398946698947992,,,,2.466142020075698,,3.431208680510616,,2.466142020075698,,-3.431208680510616,-2.2398946698947992,-0.9650666604349181,5.897350700586314,-2.2398946698947992,-0.9650666604349181,5.897350700586314,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,318,319,127.2,-2.5635220179493228,,,,2.485126162544613,,3.431208680510616,,2.485126162544613,,-3.431208680510616,-2.5635220179493228,-0.9460825179660031,5.916334843055229,-2.5635220179493228,-0.9460825179660031,5.916334843055229,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,319,320,127.60000000000001,-2.5137080102353044,,,,1.5785095076650741,,3.431208680510616,,1.5785095076650741,,-3.431208680510616,-2.5137080102353044,-1.852699172845542,5.0097181881756905,-2.5137080102353044,-1.852699172845542,5.0097181881756905,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,320,321,128.0,-1.9932779426333462,,,,0.775774146145639,,3.431208680510616,,0.775774146145639,,-3.431208680510616,-1.9932779426333462,-2.6554345343649772,4.2069828266562554,-1.9932779426333462,-2.6554345343649772,4.2069828266562554,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,321,322,128.4,-1.281197175831807,,,,0.7992719209607446,,3.431208680510616,,0.7992719209607446,,-3.431208680510616,-1.281197175831807,-2.6319367595498715,4.230480601471361,-1.281197175831807,-2.6319367595498715,4.230480601471361,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,322,323,128.8,-0.5952731564409818,,,,0.6942906514242579,,3.431208680510616,,0.6942906514242579,,-3.431208680510616,-0.5952731564409818,-2.7369180290863584,4.125499331934874,-0.5952731564409818,-2.7369180290863584,4.125499331934874,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,323,324,129.20000000000002,0.10347388226801704,,,,-0.11043030030865646,,3.431208680510616,,-0.11043030030865646,,-3.431208680510616,0.10347388226801704,-3.5416389808192728,3.3207783802019595,0.10347388226801704,-3.5416389808192728,3.3207783802019595,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,324,325,129.6,0.8815606224201146,,,,-1.1124085714783478,,3.431208680510616,,-1.1124085714783478,,-3.431208680510616,0.8815606224201146,-4.543617251988964,2.318800109032268,0.8815606224201146,-4.543617251988964,2.318800109032268,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,325,326,130.0,1.6373745548355594,,,,-1.8648116113457327,,3.431208680510616,,-1.8648116113457327,,-3.431208680510616,1.6373745548355594,-5.296020291856349,1.5663970691648834,1.6373745548355596,-5.296020291856349,1.5663970691648834,2.220446049250313e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,326,327,130.4,2.2231435108951856,,,,-2.4527850360089003,,3.431208680510616,,-2.4527850360089003,,-3.431208680510616,2.2231435108951856,-5.883993716519516,0.9784236445017158,2.2231435108951856,-5.883993716519516,0.9784236445017158,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,327,328,130.8,2.55726599641263,,,,-2.5053159398011786,,3.431208680510616,,-2.5053159398011786,,-3.431208680510616,2.55726599641263,-5.936524620311795,0.9258927407094375,2.55726599641263,-5.936524620311795,0.9258927407094375,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,328,329,131.20000000000002,2.524494499228535,,,,-1.621761332149644,,3.431208680510616,,-1.621761332149644,,-3.431208680510616,2.524494499228535,-5.052970012660261,1.809447348360972,2.524494499228535,-5.052970012660261,1.809447348360972,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,329,330,131.6,2.0180981004688245,,,,-0.7879207758038217,,3.431208680510616,,-0.7879207758038217,,-3.431208680510616,2.0180981004688245,-4.2191294563144375,2.6432879047067943,2.0180981004688245,-4.2191294563144375,2.6432879047067943,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,330,331,132.0,1.3057940470403528,,,,-0.7860985453740461,,3.431208680510616,,-0.7860985453740461,,-3.431208680510616,1.3057940470403528,-4.217307225884662,2.6451101351365702,1.3057940470403528,-4.217307225884662,2.6451101351365702,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,331,332,132.4,0.6174778770743535,,,,-0.706666715559646,,3.431208680510616,,-0.706666715559646,,-3.431208680510616,0.6174778770743535,-4.137875396070262,2.72454196495097,0.6174778770743535,-4.137875396070262,2.72454196495097,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,332,333,132.8,-0.07937560284914287,,,,0.07552733306429349,,3.431208680510616,,0.07552733306429349,,-3.431208680510616,-0.07937560284914287,-3.3556813474463225,3.5067360135749097,-0.07937560284914287,-3.355681347446322,3.5067360135749097,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,333,334,133.20000000000002,-0.8536851806993511,,,,1.077382589597235,,3.431208680510616,,1.077382589597235,,-3.431208680510616,-0.8536851806993511,-2.353826090913381,4.508591270107852,-0.853685180699351,-2.353826090913381,4.508591270107852,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,334,335,133.6,-1.6142977110028398,,,,1.8418288841990982,,3.431208680510616,,1.8418288841990982,,-3.431208680510616,-1.6142977110028398,-1.589379796311518,5.273037564709714,-1.6142977110028398,-1.589379796311518,5.273037564709714,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,335,336,134.0,-2.207768035500438,,,,2.4383154393612014,,3.431208680510616,,2.4383154393612014,,-3.431208680510616,-2.207768035500438,-0.9928932411494147,5.8695241198718175,-2.207768035500438,-0.9928932411494147,5.8695241198718175,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,336,337,134.4,-2.5515278542190543,,,,2.5175281874153503,,3.431208680510616,,2.5175281874153503,,-3.431208680510616,-2.5515278542190543,-0.9136804930952658,5.948736867925966,-2.5515278542190543,-0.9136804930952659,5.948736867925966,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re100,sr_closed_loop_400,337,338,134.8,-2.5338427896893356,,,,1.6575255540970932,,3.431208680510616,,1.6575255540970932,,-3.431208680510616,-2.5338427896893356,-1.7736831264135229,5.08873423460771,-2.5338427896893356,-1.7736831264135229,5.08873423460771,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,338,339,135.20000000000002,-2.041317290081211,,,,0.8044032146699232,,3.431208680510616,,0.8044032146699232,,-3.431208680510616,-2.041317290081211,-2.626805465840693,4.235611895180539,-2.041317290081211,-2.626805465840693,4.235611895180539,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,339,340,135.6,-1.331424368145196,,,,0.7870790085679432,,3.431208680510616,,0.7870790085679432,,-3.431208680510616,-1.331424368145196,-2.644129671942673,4.21828768907856,-1.331424368145196,-2.644129671942673,4.21828768907856,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,340,341,136.0,-0.6427290682314185,,,,0.724428171707103,,3.431208680510616,,0.724428171707103,,-3.431208680510616,-0.6427290682314185,-2.7067805088035133,4.155636852217719,-0.6427290682314185,-2.7067805088035133,4.155636852217719,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,341,342,136.4,0.05217616344490824,,,,-0.04237397498518922,,3.431208680510616,,-0.04237397498518922,,-3.431208680510616,0.05217616344490824,-3.473582655495805,3.388834705525427,0.05217616344490824,-3.4735826554958047,3.388834705525427,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,342,343,136.8,0.825824701713381,,,,-1.051219142412262,,3.431208680510616,,-1.051219142412262,,-3.431208680510616,0.825824701713381,-4.482427822922878,2.379989538098354,0.825824701713381,-4.482427822922878,2.379989538098354,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,343,344,137.20000000000002,1.5891303910802699,,,,-1.8164971560247247,,3.431208680510616,,-1.8164971560247247,,-3.431208680510616,1.5891303910802699,-5.24770583653534,1.6147115244858914,1.5891303910802699,-5.24770583653534,1.6147115244858914,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,344,345,137.6,2.190774364757673,,,,-2.4162840964534897,,3.431208680510616,,-2.4162840964534897,,-3.431208680510616,2.190774364757673,-5.847492776964106,1.0149245840571264,2.190774364757673,-5.847492776964106,1.0149245840571264,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,345,346,138.0,2.544220090065782,,,,-2.5334660429204936,,3.431208680510616,,-2.5334660429204936,,-3.431208680510616,2.544220090065782,-5.964674723431109,0.8977426375901225,2.544220090065782,-5.964674723431109,0.8977426375901225,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,346,347,138.4,2.542688918338522,,,,-1.7002999356350696,,3.431208680510616,,-1.7002999356350696,,-3.431208680510616,2.542688918338522,-5.131508616145686,1.7309087448755465,2.542688918338522,-5.131508616145686,1.7309087448755465,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,347,348,138.8,2.065418925847958,,,,-0.8191474628085831,,3.431208680510616,,-0.8191474628085831,,-3.431208680510616,2.065418925847958,-4.250356143319199,2.612061217702033,2.065418925847958,-4.250356143319199,2.612061217702033,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,348,349,139.20000000000002,1.3560989834149386,,,,-0.7749645027814861,,3.431208680510616,,-0.7749645027814861,,-3.431208680510616,1.3560989834149386,-4.206173183292102,2.65624417772913,1.3560989834149386,-4.206173183292102,2.65624417772913,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,349,350,139.6,0.6656681838643478,,,,-0.7369298386584796,,3.431208680510616,,-0.7369298386584796,,-3.431208680510616,0.6656681838643478,-4.168138519169096,2.6942788418521366,0.6656681838643478,-4.168138519169096,2.6942788418521366,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,350,351,140.0,-0.0271575672648355,,,,0.0034724230631065574,,3.431208680510616,,0.0034724230631065574,,-3.431208680510616,-0.0271575672648355,-3.4277362574475094,3.434681103573723,-0.0271575672648355,-3.42773625744751,3.434681103573723,0.0,-4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,351,352,140.4,-0.7978850800723091,,,,1.0158180267873975,,3.431208680510616,,1.0158180267873975,,-3.431208680510616,-0.7978850800723091,-2.4153906537232186,4.447026707298013,-0.7978850800723091,-2.4153906537232186,4.447026707298013,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,352,353,140.8,-1.5643414019089608,,,,1.7944163332198055,,3.431208680510616,,1.7944163332198055,,-3.431208680510616,-1.5643414019089608,-1.6367923472908106,5.225625013730422,-1.5643414019089605,-1.6367923472908104,5.225625013730422,2.220446049250313e-16,2.220446049250313e-16,0.0 +karman,karman_re100,sr_closed_loop_400,353,354,141.20000000000002,-2.1727692664226397,,,,2.4031662905975013,,3.431208680510616,,2.4031662905975013,,-3.431208680510616,-2.1727692664226397,-1.0280423899131148,5.834374971108117,-2.1727692664226397,-1.0280423899131148,5.834374971108117,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,354,355,141.6,-2.5367065772091486,,,,2.5432932072434244,,3.431208680510616,,2.5432932072434244,,-3.431208680510616,-2.5367065772091486,-0.8879154732671917,5.974501887754041,-2.5367065772091486,-0.8879154732671917,5.974501887754041,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,355,356,142.0,-2.5508766866567973,,,,1.7405782466662225,,3.431208680510616,,1.7405782466662225,,-3.431208680510616,-2.5508766866567973,-1.6906304338443936,5.171786927176838,-2.5508766866567973,-1.6906304338443936,5.171786927176838,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,356,357,142.4,-2.0882334556238242,,,,0.8349793552107835,,3.431208680510616,,0.8349793552107835,,-3.431208680510616,-2.0882334556238242,-2.5962293252998325,4.2661880357214,-2.0882334556238242,-2.5962293252998325,4.2661880357214,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,357,358,142.8,-1.3813434258014143,,,,0.7711731246886878,,3.431208680510616,,0.7711731246886878,,-3.431208680510616,-1.3813434258014143,-2.660035555821928,4.202381805199304,-1.3813434258014143,-2.660035555821928,4.202381805199304,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,358,359,143.20000000000002,-0.6894824418834675,,,,0.7468635750677034,,3.431208680510616,,0.7468635750677034,,-3.431208680510616,-0.6894824418834675,-2.6843451054429126,4.17807225557832,-0.6894824418834675,-2.6843451054429126,4.17807225557832,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,359,360,143.6,0.0022150841468173334,,,,0.02845900992372775,,3.431208680510616,,0.02845900992372775,,-3.431208680510616,0.0022150841468173334,-3.4027496705868883,3.459667690434344,0.0022150841468173334,-3.4027496705868883,3.459667690434344,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,360,361,144.0,0.7707265398273387,,,,-0.9850935988007521,,3.431208680510616,,-0.9850935988007521,,-3.431208680510616,0.7707265398273387,-4.416302279311369,2.446115081709864,0.7707265398273387,-4.416302279311369,2.446115081709864,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,361,362,144.4,1.54002424948142,,,,-1.7690643563490362,,3.431208680510616,,-1.7690643563490362,,-3.431208680510616,1.54002424948142,-5.200273036859652,1.6621443241615799,1.54002424948142,-5.200273036859652,1.6621443241615799,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,362,363,144.8,2.155532906337498,,,,-2.3850945574330935,,3.431208680510616,,-2.3850945574330935,,-3.431208680510616,2.155532906337498,-5.81630323794371,1.0461141230775226,2.155532906337498,-5.81630323794371,1.0461141230775226,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,363,364,145.20000000000002,2.5290662585051265,,,,-2.5544570138972276,,3.431208680510616,,-2.5544570138972276,,-3.431208680510616,2.5290662585051265,-5.985665694407844,0.8767516666133885,2.5290662585051265,-5.985665694407844,0.8767516666133885,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,364,365,145.6,2.557927997527675,,,,-1.774240714826133,,3.431208680510616,,-1.774240714826133,,-3.431208680510616,2.557927997527675,-5.205449395336749,1.6569679656844831,2.557927997527675,-5.205449395336749,1.6569679656844831,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,365,366,146.0,2.1097485806624054,,,,-0.852146748100075,,3.431208680510616,,-0.852146748100075,,-3.431208680510616,2.1097485806624054,-4.283355428610691,2.579061932410541,2.1097485806624054,-4.283355428610691,2.579061932410541,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,366,367,146.4,1.4058107827743742,,,,-0.767502477545076,,3.431208680510616,,-0.767502477545076,,-3.431208680510616,1.4058107827743742,-4.198711158055692,2.6637062029655403,1.4058107827743742,-4.198711158055692,2.6637062029655403,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,367,368,146.8,0.7134031262387887,,,,-0.7638057963632411,,3.431208680510616,,-0.7638057963632411,,-3.431208680510616,0.7134031262387887,-4.195014476873857,2.667402884147375,0.7134031262387887,-4.195014476873857,2.667402884147375,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,368,369,147.20000000000002,0.02512546477997181,,,,-0.06429798457741986,,3.431208680510616,,-0.06429798457741986,,-3.431208680510616,0.02512546477997181,-3.495506665088036,3.3669106959331963,0.025125464779971806,-3.4955066650880364,3.3669106959331963,-3.469446951953614e-18,-4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,369,370,147.6,-0.7420715707037013,,,,0.9539657193445682,,3.431208680510616,,0.9539657193445682,,-3.431208680510616,-0.7420715707037013,-2.477242961166048,4.385174399855185,-0.7420715707037013,-2.477242961166048,4.385174399855185,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,370,371,148.0,-1.5143347434345007,,,,1.747035297128888,,3.431208680510616,,1.747035297128888,,-3.431208680510616,-1.5143347434345007,-1.684173383381728,5.178243977639504,-1.5143347434345007,-1.684173383381728,5.178243977639504,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,371,372,148.4,-2.1369699688334887,,,,2.3665502531888944,,3.431208680510616,,2.3665502531888944,,-3.431208680510616,-2.1369699688334887,-1.0646584273217217,5.797758933699511,-2.1369699688334887,-1.0646584273217217,5.797758933699511,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,372,373,148.8,-2.5201216510851037,,,,2.565398769996947,,3.431208680510616,,2.565398769996947,,-3.431208680510616,-2.5201216510851037,-0.865809910513669,5.996607450507563,-2.5201216510851037,-0.865809910513669,5.996607450507563,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,373,374,149.20000000000002,-2.564533711940431,,,,1.813560638309835,,3.431208680510616,,1.813560638309835,,-3.431208680510616,-2.564533711940431,-1.617648042200781,5.244769318820451,-2.564533711940431,-1.617648042200781,5.244769318820451,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,374,375,149.6,-2.132221498326993,,,,0.870022845363216,,3.431208680510616,,0.870022845363216,,-3.431208680510616,-2.132221498326993,-2.5611858351474,4.301231525873832,-2.132221498326993,-2.5611858351474,4.301231525873832,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,375,376,150.0,-1.430329021925593,,,,0.7586627797245703,,3.431208680510616,,0.7586627797245703,,-3.431208680510616,-1.430329021925593,-2.6725459007860457,4.189871460235186,-1.430329021925593,-2.6725459007860457,4.189871460235186,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,376,377,150.4,-0.7358757331047308,,,,0.7691931675711983,,3.431208680510616,,0.7691931675711983,,-3.431208680510616,-0.7358757331047308,-2.662015512939418,4.200401848081814,-0.7358757331047308,-2.662015512939418,4.200401848081814,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,377,378,150.8,-0.04723003887477514,,,,0.09717608218221264,,3.431208680510616,,0.09717608218221264,,-3.431208680510616,-0.04723003887477514,-3.3340325983284034,3.528384762692829,-0.04723003887477514,-3.3340325983284034,3.528384762692829,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,378,379,151.20000000000002,0.714996812893613,,,,-0.9171621150640854,,3.431208680510616,,-0.9171621150640854,,-3.431208680510616,0.714996812893613,-4.348370795574701,2.514046565446531,0.714996812893613,-4.348370795574701,2.514046565446531,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,379,380,151.6,1.4896801080776871,,,,-1.7227379271749086,,3.431208680510616,,-1.7227379271749086,,-3.431208680510616,1.4896801080776871,-5.1539466076855245,1.7084707533357075,1.4896801080776871,-5.1539466076855245,1.7084707533357075,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,380,381,152.0,2.1197389367251285,,,,-2.3490386324608763,,3.431208680510616,,-2.3490386324608763,,-3.431208680510616,2.1197389367251285,-5.780247312971492,1.0821700480497398,2.1197389367251285,-5.780247312971492,1.0821700480497398,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,381,382,152.4,2.512334191422311,,,,-2.573145418826679,,3.431208680510616,,-2.573145418826679,,-3.431208680510616,2.512334191422311,-6.004354099337295,0.8580632616839372,2.512334191422311,-6.004354099337295,0.8580632616839372,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,382,383,152.8,2.570968220699289,,,,-1.852216617695931,,3.431208680510616,,-1.852216617695931,,-3.431208680510616,2.570968220699289,-5.283425298206547,1.5789920628146852,2.570968220699289,-5.283425298206547,1.5789920628146852,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,383,384,153.20000000000002,2.154353558677013,,,,-0.8922496719263567,,3.431208680510616,,-0.8922496719263567,,-3.431208680510616,2.154353558677013,-4.3234583524369725,2.5389590085842593,2.154353558677013,-4.3234583524369725,2.5389590085842593,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,384,385,153.60000000000002,1.4558695666216754,,,,-0.7549794961764409,,3.431208680510616,,-0.7549794961764409,,-3.431208680510616,1.4558695666216754,-4.1861881766870574,2.6762291843341752,1.4558695666216754,-4.1861881766870574,2.6762291843341752,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,385,386,154.0,0.7602137978411372,,,,-0.7810805225680134,,3.431208680510616,,-0.7810805225680134,,-3.431208680510616,0.7602137978411372,-4.21228920307863,2.6501281579426026,0.7602137978411372,-4.21228920307863,2.6501281579426026,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,386,387,154.4,0.07322334782274242,,,,-0.129900106999393,,3.431208680510616,,-0.129900106999393,,-3.431208680510616,0.07322334782274242,-3.561108787510009,3.301308573511223,0.07322334782274242,-3.5611087875100087,3.301308573511223,0.0,4.440892098500626e-16,0.0 +karman,karman_re100,sr_closed_loop_400,387,388,154.8,-0.6874682668611022,,,,0.8874364197718445,,3.431208680510616,,0.8874364197718445,,-3.431208680510616,-0.6874682668611022,-2.5437722607387716,4.318645100282461,-0.6874682668611022,-2.5437722607387716,4.318645100282461,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,388,389,155.20000000000002,-1.4646862137993402,,,,1.698422439966259,,3.431208680510616,,1.698422439966259,,-3.431208680510616,-1.4646862137993402,-1.732786240544357,5.129631120476875,-1.4646862137993402,-1.732786240544357,5.129631120476875,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,389,390,155.60000000000002,-2.101348448069599,,,,2.329619523634048,,3.431208680510616,,2.329619523634048,,-3.431208680510616,-2.101348448069599,-1.1015891568765683,5.760828204144664,-2.101348448069599,-1.1015891568765683,5.760828204144664,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,390,391,156.0,-2.5033568169450846,,,,2.580017415319619,,3.431208680510616,,2.580017415319619,,-3.431208680510616,-2.5033568169450846,-0.8511912651909972,6.011226095830235,-2.5033568169450846,-0.8511912651909972,6.011226095830235,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,391,392,156.4,-2.5765998921568567,,,,1.889192716510371,,3.431208680510616,,1.889192716510371,,-3.431208680510616,-2.5765998921568567,-1.542015964000245,5.320401397020987,-2.5765998921568567,-1.542015964000245,5.320401397020987,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,392,393,156.8,-2.1753895654035587,,,,0.9103538334541651,,3.431208680510616,,0.9103538334541651,,-3.431208680510616,-2.1753895654035587,-2.520854847056451,4.3415625139647815,-2.1753895654035587,-2.520854847056451,4.3415625139647815,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,393,394,157.20000000000002,-1.4791867466070265,,,,0.7516759137471902,,3.431208680510616,,0.7516759137471902,,-3.431208680510616,-1.4791867466070265,-2.679532766763426,4.182884594257806,-1.4791867466070265,-2.679532766763426,4.182884594257806,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,394,395,157.60000000000002,-0.7835034943462594,,,,0.7922649585328064,,3.431208680510616,,0.7922649585328064,,-3.431208680510616,-0.7835034943462594,-2.63894372197781,4.223473639043423,-0.7835034943462593,-2.63894372197781,4.223473639043423,1.1102230246251565e-16,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,395,396,158.0,-0.09817689377692451,,,,0.16453238114457133,,3.431208680510616,,0.16453238114457133,,-3.431208680510616,-0.09817689377692451,-3.2666762993660448,3.5957410616551875,-0.09817689377692451,-3.2666762993660448,3.5957410616551875,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,396,397,158.4,0.6594959669624398,,,,-0.8535166561464548,,3.431208680510616,,-0.8535166561464548,,-3.431208680510616,0.6594959669624398,-4.284725336657071,2.5776920243641612,0.6594959669624398,-4.284725336657071,2.5776920243641612,0.0,0.0,0.0 +karman,karman_re100,sr_closed_loop_400,397,398,158.8,1.439063929059475,,,,-1.6758771151109393,,3.431208680510616,,-1.6758771151109393,,-3.431208680510616,1.439063929059475,-5.107085795621556,1.7553315653996768,1.439063929059475,-5.107085795621556,1.755331565399677,0.0,0.0,2.220446049250313e-16 +karman,karman_re100,sr_closed_loop_400,398,399,159.20000000000002,2.082669360671763,,,,-2.3112279219649228,,3.431208680510616,,-2.3112279219649228,,-3.431208680510616,2.082669360671763,-5.742436602475539,1.1199807585456933,2.082669360671763,-5.742436602475539,1.1199807585456933,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,0,1,0.0,2.2493591990490396,,,,-0.5811208395145168,,3.431208680510616,,-0.5811208395145168,,-3.431208680510616,2.2493591990490396,-4.0123295200251325,2.8500878409960992,2.2493591990490396,-4.0123295200251325,2.8500878409960992,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,1,2,0.4,1.2168573718201985,,,,-0.698608647869182,,3.431208680510616,,-0.698608647869182,,-3.431208680510616,1.2168573718201985,-4.129817328379798,2.732600032641434,1.2168573718201985,-4.129817328379798,2.732600032641434,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,2,3,0.8,0.5714366874186562,,,,-1.34417286673599,,3.431208680510616,,-1.34417286673599,,-3.431208680510616,0.5714366874186562,-4.775381547246607,2.087035813774626,0.5714366874186562,-4.775381547246607,2.087035813774626,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,3,4,1.2000000000000002,0.17234642263565078,,,,-0.4995612218743548,,3.431208680510616,,-0.4995612218743548,,-3.431208680510616,0.17234642263565078,-3.930769902384971,2.9316474586362613,0.17234642263565078,-3.930769902384971,2.9316474586362613,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,4,5,1.6,-0.5312685931684175,,,,1.3750136105425326,,3.431208680510616,,1.3750136105425326,,-3.431208680510616,-0.5312685931684175,-2.0561950699680835,4.806222291053149,-0.5312685931684175,-2.0561950699680835,4.806222291053149,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,5,6,2.0,-1.4847862282048752,,,,2.8341826302556536,,3.431208680510616,,2.8341826302556536,,-3.431208680510616,-1.4847862282048752,-0.5970260502549625,6.26539131076627,-1.4847862282048752,-0.5970260502549625,6.265391310766271,0.0,0.0,8.881784197001252e-16 +karman,karman_re200,sr_closed_loop_400,6,7,2.4000000000000004,-2.264170175303835,,,,3.25333414730095,,3.431208680510616,,3.25333414730095,,-3.431208680510616,-2.264170175303835,-0.17787453320966629,6.6845428278115655,-2.264170175303835,-0.17787453320966629,6.6845428278115655,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,7,8,2.8000000000000003,-2.509200364279312,,,,3.075719661949298,,3.431208680510616,,3.075719661949298,,-3.431208680510616,-2.509200364279312,-0.3554890185613182,6.506928342459914,-2.509200364279312,-0.3554890185613182,6.506928342459914,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,8,9,3.2,-2.424087444795496,,,,1.2106911764079586,,3.431208680510616,,1.2106911764079586,,-3.431208680510616,-2.424087444795496,-2.2205175041026575,4.641899856918575,-2.424087444795496,-2.2205175041026575,4.641899856918575,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,9,10,3.6,-1.5205170612923895,,,,-1.004216589473523,,3.431208680510616,,-1.004216589473523,,-3.431208680510616,-1.5205170612923895,-4.435425269984139,2.426992091037093,-1.5205170612923895,-4.435425269984139,2.426992091037093,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,10,11,4.0,-0.21111557437300865,,,,-0.7975501727837597,,3.431208680510616,,-0.7975501727837597,,-3.431208680510616,-0.21111557437300865,-4.228758853294376,2.6336585077268566,-0.21111557437300865,-4.228758853294376,2.6336585077268566,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,11,12,4.4,0.7007995085644779,,,,-0.12879327976031965,,3.431208680510616,,-0.12879327976031965,,-3.431208680510616,0.7007995085644779,-3.560001960270936,3.3024154007502964,0.7007995085644779,-3.560001960270936,3.3024154007502964,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,12,13,4.800000000000001,1.352757764775737,,,,-0.8521966847347952,,3.431208680510616,,-0.8521966847347952,,-3.431208680510616,1.352757764775737,-4.283405365245411,2.579011995775821,1.352757764775737,-4.283405365245411,2.579011995775821,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,13,14,5.2,2.1333256327152523,,,,-2.4351971401162635,,3.431208680510616,,-2.4351971401162635,,-3.431208680510616,2.1333256327152523,-5.86640582062688,0.9960115403943526,2.1333256327152523,-5.86640582062688,0.9960115403943526,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,14,15,5.6000000000000005,2.83103182896017,,,,-3.3578394202262998,,3.431208680510616,,-3.3578394202262998,,-3.431208680510616,2.83103182896017,-6.789048100736916,0.07336926028431634,2.83103182896017,-6.789048100736916,0.07336926028431634,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,15,16,6.0,3.0193102740558,,,,-2.840498701072737,,3.431208680510616,,-2.840498701072737,,-3.431208680510616,3.0193102740558,-6.271707381583353,0.5907099794378792,3.0193102740558,-6.271707381583353,0.5907099794378792,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,16,17,6.4,2.592346461134404,,,,-0.9239498434859349,,3.431208680510616,,-0.9239498434859349,,-3.431208680510616,2.592346461134404,-4.355158523996551,2.5072588370246813,2.592346461134404,-4.355158523996551,2.5072588370246813,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,17,18,6.800000000000001,1.510123554986567,,,,0.3981974656841709,,3.431208680510616,,0.3981974656841709,,-3.431208680510616,1.510123554986567,-3.033011214826445,3.829406146194787,1.510123554986567,-3.033011214826445,3.829406146194787,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,18,19,7.2,0.3225061308407101,,,,-0.1182977562104933,,3.431208680510616,,-0.1182977562104933,,-3.431208680510616,0.3225061308407101,-3.5495064367211095,3.3129109243001227,0.3225061308407101,-3.5495064367211095,3.3129109243001227,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,19,20,7.6000000000000005,-0.5448563769538006,,,,-0.4517883049975537,,3.431208680510616,,-0.4517883049975537,,-3.431208680510616,-0.5448563769538006,-3.8829969855081696,2.9794203755130626,-0.5448563769538006,-3.8829969855081696,2.9794203755130626,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,20,21,8.0,-1.2950886320938066,,,,0.4685837613056819,,3.431208680510616,,0.4685837613056819,,-3.431208680510616,-1.2950886320938066,-2.9626249192049343,3.899792441816298,-1.2950886320938066,-2.9626249192049343,3.899792441816298,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,21,22,8.4,-2.2036464014622323,,,,2.0041637489243045,,3.431208680510616,,2.0041637489243045,,-3.431208680510616,-2.2036464014622323,-1.4270449315863116,5.435372429434921,-2.2036464014622323,-1.4270449315863116,5.435372429434921,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,22,23,8.8,-2.9520395944167435,,,,3.1247231058081915,,3.431208680510616,,3.1247231058081915,,-3.431208680510616,-2.9520395944167435,-0.30648557470242466,6.555931786318808,-2.9520395944167435,-0.30648557470242466,6.5559317863188085,0.0,0.0,8.881784197001252e-16 +karman,karman_re200,sr_closed_loop_400,23,24,9.200000000000001,-3.1476819250210726,,,,3.196040993709742,,3.431208680510616,,3.196040993709742,,-3.431208680510616,-3.1476819250210726,-0.23516768680087408,6.627249674220359,-3.147681925021072,-0.23516768680087408,6.627249674220359,4.440892098500626e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,24,25,9.600000000000001,-2.812570211814614,,,,1.6475217846025911,,3.431208680510616,,1.6475217846025911,,-3.431208680510616,-2.812570211814614,-1.783686895908025,5.078730465113207,-2.812570211814614,-1.7836868959080252,5.078730465113207,0.0,-2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,25,26,10.0,-1.859404134446092,,,,-0.27108741590393304,,3.431208680510616,,-0.27108741590393304,,-3.431208680510616,-1.859404134446092,-3.7022960964145493,3.160121264606683,-1.859404134446092,-3.7022960964145493,3.160121264606683,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,26,27,10.4,-0.6057920256004815,,,,-0.24267651566487478,,3.431208680510616,,-0.24267651566487478,,-3.431208680510616,-0.6057920256004815,-3.673885196175491,3.1885321648457414,-0.6057920256004815,-3.673885196175491,3.1885321648457414,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,27,28,10.8,0.33687185751087234,,,,0.3627278394324034,,3.431208680510616,,0.3627278394324034,,-3.431208680510616,0.33687185751087234,-3.0684808410782125,3.7939365199430197,0.33687185751087234,-3.0684808410782125,3.7939365199430197,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,28,29,11.200000000000001,1.0779550191469918,,,,-0.2907530107417739,,3.431208680510616,,-0.2907530107417739,,-3.431208680510616,1.0779550191469918,-3.72196169125239,3.1404556697688424,1.0779550191469918,-3.72196169125239,3.140455669768842,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,29,30,11.600000000000001,1.933604025488127,,,,-1.7077461273043735,,3.431208680510616,,-1.7077461273043735,,-3.431208680510616,1.933604025488127,-5.13895480781499,1.7234625532062426,1.933604025488127,-5.13895480781499,1.7234625532062424,0.0,0.0,-2.220446049250313e-16 +karman,karman_re200,sr_closed_loop_400,30,31,12.0,2.684323146706405,,,,-2.6987853827994215,,3.431208680510616,,-2.6987853827994215,,-3.431208680510616,2.684323146706405,-6.129994063310038,0.7324232977111946,2.684323146706405,-6.129994063310038,0.7324232977111946,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,31,32,12.4,2.8873599098863107,,,,-2.7227435490273133,,3.431208680510616,,-2.7227435490273133,,-3.431208680510616,2.8873599098863107,-6.153952229537929,0.7084651314833028,2.8873599098863107,-6.153952229537929,0.7084651314833028,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,32,33,12.8,2.5228222249161907,,,,-1.67673684735565,,3.431208680510616,,-1.67673684735565,,-3.431208680510616,2.5228222249161907,-5.107945527866266,1.754471833154966,2.5228222249161907,-5.107945527866266,1.754471833154966,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,33,34,13.200000000000001,1.731927006382551,,,,-0.2199288560914355,,3.431208680510616,,-0.2199288560914355,,-3.431208680510616,1.731927006382551,-3.6511375366020515,3.2112798244191807,1.731927006382551,-3.6511375366020515,3.211279824419181,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,34,35,13.600000000000001,0.6366853887693533,,,,0.18967943511798252,,3.431208680510616,,0.18967943511798252,,-3.431208680510616,0.6366853887693533,-3.2415292453926337,3.6208881156285986,0.6366853887693533,-3.2415292453926337,3.620888115628599,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,35,36,14.0,-0.2968601310541937,,,,-0.08750573107197052,,3.431208680510616,,-0.08750573107197052,,-3.431208680510616,-0.2968601310541937,-3.518714411582587,3.3437029494386454,-0.2968601310541937,-3.5187144115825864,3.3437029494386454,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,36,37,14.4,-1.0710915638574525,,,,0.4338838900086262,,3.431208680510616,,0.4338838900086262,,-3.431208680510616,-1.0710915638574525,-2.99732479050199,3.8650925705192423,-1.0710915638574525,-2.99732479050199,3.865092570519242,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,37,38,14.8,-1.869447193079141,,,,1.5896493355994614,,3.431208680510616,,1.5896493355994614,,-3.431208680510616,-1.869447193079141,-1.8415593449111547,5.020858016110077,-1.869447193079141,-1.8415593449111547,5.020858016110077,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,38,39,15.200000000000001,-2.5213543673130117,,,,2.4783997891953007,,3.431208680510616,,2.4783997891953007,,-3.431208680510616,-2.5213543673130117,-0.9528088913153154,5.909608469705917,-2.5213543673130117,-0.9528088913153154,5.909608469705917,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,39,40,15.600000000000001,-2.6987175639765355,,,,2.496459494938541,,3.431208680510616,,2.496459494938541,,-3.431208680510616,-2.6987175639765355,-0.9347491855720751,5.927668175449157,-2.6987175639765355,-0.9347491855720751,5.927668175449157,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,40,41,16.0,-2.3351322104562207,,,,1.4971595325432345,,3.431208680510616,,1.4971595325432345,,-3.431208680510616,-2.3351322104562207,-1.9340491479673816,4.928368213053851,-2.3351322104562207,-1.9340491479673816,4.928368213053851,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,41,42,16.400000000000002,-1.5677707541640822,,,,0.20736827000092264,,3.431208680510616,,0.20736827000092264,,-3.431208680510616,-1.5677707541640822,-3.2238404105096934,3.638576950511539,-1.5677707541640822,-3.2238404105096934,3.6385769505115393,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,42,43,16.8,-0.5552283049536597,,,,-0.19577231353720054,,3.431208680510616,,-0.19577231353720054,,-3.431208680510616,-0.5552283049536597,-3.6269809940478166,3.2354363669734156,-0.5552283049536597,-3.6269809940478166,3.235436366973415,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,43,44,17.2,0.33662553570932563,,,,-0.06235471870678272,,3.431208680510616,,-0.06235471870678272,,-3.431208680510616,0.33662553570932563,-3.4935633992173987,3.3688539618038336,0.33662553570932563,-3.4935633992173987,3.368853961803834,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,44,45,17.6,1.1005905289030142,,,,-0.6227384571786996,,3.431208680510616,,-0.6227384571786996,,-3.431208680510616,1.1005905289030142,-4.053947137689316,2.8084702233319163,1.1005905289030142,-4.053947137689316,2.8084702233319163,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,45,46,18.0,1.858503173572417,,,,-1.698065423477177,,3.431208680510616,,-1.698065423477177,,-3.431208680510616,1.858503173572417,-5.129274103987793,1.733143257033439,1.8585031735724171,-5.129274103987793,1.733143257033439,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,46,47,18.400000000000002,2.4302053829339467,,,,-2.4568404083840303,,3.431208680510616,,-2.4568404083840303,,-3.431208680510616,2.4302053829339467,-5.888049088894647,0.9743682721265858,2.4302053829339467,-5.888049088894647,0.9743682721265857,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,47,48,18.8,2.539550740014485,,,,-2.3281278189176184,,3.431208680510616,,-2.3281278189176184,,-3.431208680510616,2.539550740014485,-5.759336499428235,1.1030808615929977,2.539550740014485,-5.759336499428235,1.1030808615929977,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,48,49,19.200000000000003,2.142888818239555,,,,-1.2904850468240805,,3.431208680510616,,-1.2904850468240805,,-3.431208680510616,2.142888818239555,-4.721693727334697,2.1407236336865356,2.142888818239555,-4.721693727334697,2.1407236336865356,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,49,50,19.6,1.3671535584398693,,,,-0.11670313330787237,,3.431208680510616,,-0.11670313330787237,,-3.431208680510616,1.3671535584398693,-3.5479118138184886,3.3145055472027436,1.3671535584398693,-3.547911813818488,3.3145055472027436,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,50,51,20.0,0.3933950839115825,,,,0.22268481024297684,,3.431208680510616,,0.22268481024297684,,-3.431208680510616,0.3933950839115825,-3.2085238702676393,3.653893490753593,0.39339508391158245,-3.208523870267639,3.653893490753593,-5.551115123125783e-17,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,51,52,20.400000000000002,-0.4650034026475094,,,,0.201209621379878,,3.431208680510616,,0.201209621379878,,-3.431208680510616,-0.4650034026475094,-3.229999059130738,3.6324183018904943,-0.4650034026475094,-3.229999059130738,3.6324183018904943,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,52,53,20.8,-1.2257132240270106,,,,0.8465291811857244,,3.431208680510616,,0.8465291811857244,,-3.431208680510616,-1.2257132240270106,-2.5846794993248916,4.27773786169634,-1.2257132240270106,-2.5846794993248916,4.27773786169634,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,53,54,21.200000000000003,-1.9606025710303432,,,,1.9064379070226565,,3.431208680510616,,1.9064379070226565,,-3.431208680510616,-1.9606025710303432,-1.5247707734879596,5.337646587533273,-1.9606025710303432,-1.5247707734879596,5.337646587533273,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,54,55,21.6,-2.4716852805674376,,,,2.5731333914055114,,3.431208680510616,,2.5731333914055114,,-3.431208680510616,-2.4716852805674376,-0.8580752891051047,6.004342071916128,-2.4716852805674376,-0.8580752891051048,6.004342071916128,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,55,56,22.0,-2.511709663743959,,,,2.245585758887671,,3.431208680510616,,2.245585758887671,,-3.431208680510616,-2.511709663743959,-1.185622921622945,5.676794439398288,-2.511709663743959,-1.185622921622945,5.676794439398288,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,56,57,22.400000000000002,-2.0556789846939445,,,,0.9880249401571645,,3.431208680510616,,0.9880249401571645,,-3.431208680510616,-2.0556789846939445,-2.4431837403534518,4.4192336206677805,-2.0556789846939445,-2.4431837403534518,4.4192336206677805,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,57,58,22.8,-1.1951939958276845,,,,-0.15866299961489386,,3.431208680510616,,-0.15866299961489386,,-3.431208680510616,-1.1951939958276845,-3.58987168012551,3.272545680895722,-1.1951939958276845,-3.58987168012551,3.272545680895722,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,58,59,23.200000000000003,-0.1960989271145131,,,,-0.23696821023133754,,3.431208680510616,,-0.23696821023133754,,-3.431208680510616,-0.1960989271145131,-3.668176890741954,3.1942404702792784,-0.19609892711451307,-3.668176890741954,3.1942404702792784,2.7755575615628914e-17,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,59,60,23.6,0.6251577782058785,,,,-0.2140500353198292,,3.431208680510616,,-0.2140500353198292,,-3.431208680510616,0.6251577782058785,-3.6452587158304453,3.217158645190787,0.6251577782058785,-3.6452587158304453,3.2171586451907865,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,60,61,24.0,1.3680556293087074,,,,-1.0144322851739112,,3.431208680510616,,-1.0144322851739112,,-3.431208680510616,1.3680556293087074,-4.445640965684527,2.416776395336705,1.3680556293087074,-4.445640965684527,2.416776395336705,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,61,62,24.400000000000002,2.087125147653753,,,,-2.1219220981323166,,3.431208680510616,,-2.1219220981323166,,-3.431208680510616,2.087125147653753,-5.553130778642933,1.3092865823782995,2.087125147653753,-5.553130778642933,1.3092865823782995,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,62,63,24.8,2.546759936597308,,,,-2.6649076390251984,,3.431208680510616,,-2.6649076390251984,,-3.431208680510616,2.546759936597308,-6.096116319535815,0.7663010414854177,2.546759936597308,-6.096116319535815,0.7663010414854177,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,63,64,25.200000000000003,2.5044021659895264,,,,-2.1381158788904013,,3.431208680510616,,-2.1381158788904013,,-3.431208680510616,2.5044021659895264,-5.569324559401018,1.2930928016202148,2.5044021659895264,-5.569324559401018,1.2930928016202148,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,64,65,25.6,1.9783452221091038,,,,-0.8017880879181264,,3.431208680510616,,-0.8017880879181264,,-3.431208680510616,1.9783452221091038,-4.232996768428743,2.62942059259249,1.9783452221091038,-4.232996768428743,2.62942059259249,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,65,66,26.0,1.0591236626127338,,,,0.22316895200642295,,3.431208680510616,,0.22316895200642295,,-3.431208680510616,1.0591236626127338,-3.2080397285041933,3.654377632517039,1.0591236626127338,-3.208039728504193,3.654377632517039,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,66,67,26.400000000000002,0.06067093422528794,,,,0.1659567932007983,,3.431208680510616,,0.1659567932007983,,-3.431208680510616,0.06067093422528794,-3.2652518873098177,3.5971654737114145,0.06067093422528793,-3.2652518873098173,3.5971654737114145,-6.938893903907228e-18,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,67,68,26.8,-0.7428142684670762,,,,0.24240856299076624,,3.431208680510616,,0.24240856299076624,,-3.431208680510616,-0.7428142684670762,-3.18880011751985,3.6736172435013823,-0.7428142684670762,-3.18880011751985,3.673617243501382,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,68,69,27.200000000000003,-1.4991758946957092,,,,1.142406482328149,,3.431208680510616,,1.142406482328149,,-3.431208680510616,-1.4991758946957092,-2.2888021981824673,4.573615162838765,-1.4991758946957092,-2.2888021981824673,4.573615162838765,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,69,70,27.6,-2.220614053918383,,,,2.245364393439856,,3.431208680510616,,2.245364393439856,,-3.431208680510616,-2.220614053918383,-1.18584428707076,5.676573073950472,-2.220614053918383,-1.18584428707076,5.676573073950472,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,70,71,28.0,-2.6419605809195206,,,,2.7177731791684376,,3.431208680510616,,2.7177731791684376,,-3.431208680510616,-2.6419605809195206,-0.7134355013421785,6.148981859679054,-2.6419605809195206,-0.7134355013421785,6.148981859679054,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,71,72,28.400000000000002,-2.5400744801320623,,,,2.06039681474857,,3.431208680510616,,2.06039681474857,,-3.431208680510616,-2.5400744801320623,-1.3708118657620463,5.491605495259186,-2.5400744801320623,-1.3708118657620463,5.491605495259186,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,72,73,28.8,-1.958025384261544,,,,0.6207705274823775,,3.431208680510616,,0.6207705274823775,,-3.431208680510616,-1.958025384261544,-2.8104381530282385,4.051979207992994,-1.958025384261544,-2.8104381530282385,4.051979207992994,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,73,74,29.200000000000003,-0.9818022875739091,,,,-0.31744383750806043,,3.431208680510616,,-0.31744383750806043,,-3.431208680510616,-0.9818022875739091,-3.7486525180186767,3.1137648430025555,-0.9818022875739091,-3.7486525180186767,3.1137648430025555,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,74,75,29.6,0.01711166392230864,,,,-0.1354552531203432,,3.431208680510616,,-0.1354552531203432,,-3.431208680510616,0.01711166392230864,-3.5666639336309593,3.295753427390273,0.01711166392230864,-3.566663933630959,3.295753427390273,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,75,76,30.0,0.8021879097208766,,,,-0.26629288998744094,,3.431208680510616,,-0.26629288998744094,,-3.431208680510616,0.8021879097208766,-3.697501570498057,3.164915790523175,0.8021879097208766,-3.697501570498057,3.1649157905231746,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,76,77,30.400000000000002,1.558358927580168,,,,-1.2492526111289286,,3.431208680510616,,-1.2492526111289286,,-3.431208680510616,1.558358927580168,-4.680461291639545,2.1819560693816875,1.558358927580168,-4.680461291639545,2.1819560693816875,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,77,78,30.8,2.2671824357766135,,,,-2.312013814978416,,3.431208680510616,,-2.312013814978416,,-3.431208680510616,2.2671824357766135,-5.743222495489032,1.1191948655322,2.2671824357766135,-5.743222495489032,1.1191948655322,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,78,79,31.200000000000003,2.638876481559811,,,,-2.641551300593188,,3.431208680510616,,-2.641551300593188,,-3.431208680510616,2.638876481559811,-6.072759981103804,0.7896573799174282,2.638876481559811,-6.072759981103804,0.7896573799174282,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,79,80,31.6,2.469088779882807,,,,-1.8791271352058188,,3.431208680510616,,-1.8791271352058188,,-3.431208680510616,2.469088779882807,-5.310335815716435,1.5520815453047974,2.469088779882807,-5.310335815716435,1.5520815453047974,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,80,81,32.0,1.838136893527249,,,,-0.5020693198023458,,3.431208680510616,,-0.5020693198023458,,-3.431208680510616,1.838136893527249,-3.9332780003129617,2.9291393607082705,1.838136893527249,-3.9332780003129617,2.9291393607082705,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,81,82,32.4,0.8591065524733899,,,,0.2654247842216643,,3.431208680510616,,0.2654247842216643,,-3.431208680510616,0.8591065524733899,-3.1657838962889517,3.6966334647322805,0.8591065524733899,-3.1657838962889517,3.69663346473228,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,82,83,32.800000000000004,-0.10124723197160419,,,,0.08451470934723396,,3.431208680510616,,0.08451470934723396,,-3.431208680510616,-0.10124723197160419,-3.3466939711633823,3.51572338985785,-0.10124723197160419,-3.3466939711633823,3.51572338985785,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,83,84,33.2,-0.8744852690540125,,,,0.3454646839112857,,3.431208680510616,,0.3454646839112857,,-3.431208680510616,-0.8744852690540125,-3.0857439965993305,3.7766733644219017,-0.8744852690540124,-3.0857439965993305,3.7766733644219013,1.1102230246251565e-16,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,84,85,33.6,-1.6387413140793177,,,,1.3735656003814836,,3.431208680510616,,1.3735656003814836,,-3.431208680510616,-1.6387413140793177,-2.0576430801291323,4.8047742808921,-1.6387413140793174,-2.0576430801291323,4.8047742808921,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,85,86,34.0,-2.324599377557574,,,,2.3830629889766706,,3.431208680510616,,2.3830629889766706,,-3.431208680510616,-2.324599377557574,-1.0481456915339455,5.814271669487287,-2.324599377557574,-1.0481456915339455,5.814271669487287,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,86,87,34.4,-2.6402881290079496,,,,2.6249434111569356,,3.431208680510616,,2.6249434111569356,,-3.431208680510616,-2.6402881290079496,-0.8062652693536805,6.056152091667552,-2.6402881290079496,-0.8062652693536804,6.056152091667552,0.0,1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,87,88,34.800000000000004,-2.4233605755631413,,,,1.781587489963509,,3.431208680510616,,1.781587489963509,,-3.431208680510616,-2.4233605755631413,-1.6496211905471072,5.212796170474125,-2.4233605755631413,-1.6496211905471072,5.212796170474125,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,88,89,35.2,-1.7572934594373126,,,,0.38959405340356096,,3.431208680510616,,0.38959405340356096,,-3.431208680510616,-1.7572934594373126,-3.041614627107055,3.820802733914177,-1.7572934594373124,-3.041614627107055,3.820802733914177,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,89,90,35.6,-0.759679135371159,,,,-0.2974545680195635,,3.431208680510616,,-0.2974545680195635,,-3.431208680510616,-0.759679135371159,-3.7286632485301796,3.1337541124910526,-0.759679135371159,-3.7286632485301796,3.133754112491053,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,90,91,36.0,0.18697068209477008,,,,-0.10958107302673747,,3.431208680510616,,-0.10958107302673747,,-3.431208680510616,0.18697068209477008,-3.5407897535373536,3.3216276074838786,0.18697068209477008,-3.5407897535373536,3.321627607483878,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,91,92,36.4,0.9551414913598049,,,,-0.4451467325797634,,3.431208680510616,,-0.4451467325797634,,-3.431208680510616,0.9551414913598049,-3.8763554130903795,2.9860619479308528,0.9551414913598049,-3.8763554130903795,2.9860619479308528,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,92,93,36.800000000000004,1.715976420294096,,,,-1.4962181965295909,,3.431208680510616,,-1.4962181965295909,,-3.431208680510616,1.715976420294096,-4.927426877040207,1.9349904839810252,1.715976420294096,-4.927426877040207,1.9349904839810252,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,93,94,37.2,2.3721044177339126,,,,-2.4464797746462836,,3.431208680510616,,-2.4464797746462836,,-3.431208680510616,2.3721044177339126,-5.8776884551569,0.9847289058643325,2.3721044177339126,-5.8776884551569,0.9847289058643325,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,94,95,37.6,2.630984327153271,,,,-2.561904347410313,,3.431208680510616,,-2.561904347410313,,-3.431208680510616,2.630984327153271,-5.993113027920929,0.869304333100303,2.630984327153271,-5.993113027920929,0.869304333100303,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,95,96,38.0,2.354637533853378,,,,-1.5926657823790709,,3.431208680510616,,-1.5926657823790709,,-3.431208680510616,2.354637533853378,-5.023874462889687,1.8385428981315453,2.354637533853378,-5.023874462889687,1.838542898131545,0.0,0.0,-2.220446049250313e-16 +karman,karman_re200,sr_closed_loop_400,96,97,38.400000000000006,1.634580741410804,,,,-0.22252342965516148,,3.431208680510616,,-0.22252342965516148,,-3.431208680510616,1.634580741410804,-3.6537321101657776,3.2086852508554546,1.634580741410804,-3.6537321101657776,3.208685250855454,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,97,98,38.800000000000004,0.6247312958644589,,,,0.28893093255783586,,3.431208680510616,,0.28893093255783586,,-3.431208680510616,0.6247312958644589,-3.14227774795278,3.720139613068452,0.6247312958644589,-3.1422777479527806,3.720139613068452,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,98,99,39.2,-0.2878782555465825,,,,0.0899087793720439,,3.431208680510616,,0.0899087793720439,,-3.431208680510616,-0.2878782555465825,-3.341299901138572,3.5211174598826602,-0.2878782555465825,-3.3412999011385716,3.5211174598826602,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,99,100,39.6,-1.043488426150007,,,,0.5505906772166,,3.431208680510616,,0.5505906772166,,-3.431208680510616,-1.043488426150007,-2.880618003294016,3.9817993577272164,-1.043488426150007,-2.880618003294016,3.9817993577272164,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,100,101,40.0,-1.801705431493027,,,,1.645421857765103,,3.431208680510616,,1.645421857765103,,-3.431208680510616,-1.801705431493027,-1.7857868227455131,5.076630538275719,-1.801705431493027,-1.7857868227455134,5.076630538275719,0.0,-2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,101,102,40.400000000000006,-2.424749801108993,,,,2.528115667451064,,3.431208680510616,,2.528115667451064,,-3.431208680510616,-2.424749801108993,-0.9030930130595523,5.9593243479616795,-2.424749801108993,-0.9030930130595524,5.9593243479616795,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,102,103,40.800000000000004,-2.6197397209564826,,,,2.5088459117908832,,3.431208680510616,,2.5088459117908832,,-3.431208680510616,-2.6197397209564826,-0.9223627687197329,5.940054592301499,-2.6197397209564826,-0.9223627687197328,5.940054592301499,0.0,1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,103,104,41.2,-2.289181163507688,,,,1.4469873735122991,,3.431208680510616,,1.4469873735122991,,-3.431208680510616,-2.289181163507688,-1.984221306998317,4.878196054022915,-2.289181163507688,-1.984221306998317,4.878196054022915,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,104,105,41.6,-1.5252376043205913,,,,0.11077742081829707,,3.431208680510616,,0.11077742081829707,,-3.431208680510616,-1.5252376043205913,-3.320431259692319,3.5419861013289133,-1.5252376043205913,-3.320431259692319,3.541986101328914,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,105,106,42.0,-0.506208498778566,,,,-0.2720054583044299,,3.431208680510616,,-0.2720054583044299,,-3.431208680510616,-0.506208498778566,-3.703214138815046,3.159203222206186,-0.506208498778566,-3.703214138815046,3.159203222206186,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,106,107,42.400000000000006,0.38440699798103595,,,,-0.10629317191875566,,3.431208680510616,,-0.10629317191875566,,-3.431208680510616,0.38440699798103595,-3.5375018524293718,3.3249155085918605,0.38440699798103595,-3.537501852429372,3.324915508591861,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,107,108,42.800000000000004,1.137612463963996,,,,-0.6665091354776796,,3.431208680510616,,-0.6665091354776796,,-3.431208680510616,1.137612463963996,-4.097717815988296,2.7646995450329364,1.137612463963996,-4.097717815988296,2.7646995450329364,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,108,109,43.2,1.8955468201387813,,,,-1.7748545700431817,,3.431208680510616,,-1.7748545700431817,,-3.431208680510616,1.8955468201387813,-5.206063250553798,1.6563541104674344,1.8955468201387813,-5.206063250553798,1.6563541104674342,0.0,0.0,-2.220446049250313e-16 +karman,karman_re200,sr_closed_loop_400,109,110,43.6,2.483435778159586,,,,-2.5919643745618393,,3.431208680510616,,-2.5919643745618393,,-3.431208680510616,2.483435778159586,-6.023173055072455,0.8392443059487769,2.483435778159586,-6.023173055072455,0.8392443059487769,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,110,111,44.0,2.617391503989849,,,,-2.444019177419612,,3.431208680510616,,-2.444019177419612,,-3.431208680510616,2.617391503989849,-5.875227857930228,0.9871895030910043,2.617391503989849,-5.875227857930228,0.9871895030910042,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,111,112,44.400000000000006,2.2326433822954064,,,,-1.2707331285963421,,3.431208680510616,,-1.2707331285963421,,-3.431208680510616,2.2326433822954064,-4.701941809106958,2.160475551914274,2.2326433822954064,-4.701941809106958,2.160475551914274,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,112,113,44.800000000000004,1.4162172982235035,,,,0.036693378294088204,,3.431208680510616,,0.036693378294088204,,-3.431208680510616,1.4162172982235035,-3.394515302216528,3.4679020588047043,1.4162172982235035,-3.394515302216528,3.4679020588047047,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,113,114,45.2,0.3859122291213433,,,,0.2676935516930083,,3.431208680510616,,0.2676935516930083,,-3.431208680510616,0.3859122291213433,-3.163515128817608,3.6989022322036242,0.3859122291213433,-3.163515128817608,3.6989022322036242,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,114,115,45.6,-0.4780952960939482,,,,0.11266983657918862,,3.431208680510616,,0.11266983657918862,,-3.431208680510616,-0.4780952960939482,-3.3185388439314276,3.5438785170898046,-0.47809529609394824,-3.3185388439314276,3.5438785170898046,-5.551115123125783e-17,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,115,116,46.0,-1.2254962421726023,,,,0.7798394145002108,,3.431208680510616,,0.7798394145002108,,-3.431208680510616,-1.2254962421726023,-2.6513692660104056,4.211048095010827,-1.2254962421726023,-2.6513692660104056,4.211048095010827,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,116,117,46.400000000000006,-1.9778745397603046,,,,1.9074903824977203,,3.431208680510616,,1.9074903824977203,,-3.431208680510616,-1.9778745397603046,-1.5237182980128958,5.338699063008336,-1.9778745397603044,-1.5237182980128958,5.338699063008336,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,117,118,46.800000000000004,-2.5264155012569423,,,,2.6327979261625796,,3.431208680510616,,2.6327979261625796,,-3.431208680510616,-2.5264155012569423,-0.7984107543480365,6.064006606673196,-2.5264155012569423,-0.7984107543480365,6.064006606673196,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,118,119,47.2,-2.5947545290402116,,,,2.3362480029098074,,3.431208680510616,,2.3362480029098074,,-3.431208680510616,-2.5947545290402116,-1.0949606776008087,5.7674566834204235,-2.5947545290402116,-1.0949606776008087,5.7674566834204235,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,119,120,47.6,-2.152207094431155,,,,1.0923510958546234,,3.431208680510616,,1.0923510958546234,,-3.431208680510616,-2.152207094431155,-2.338857584655993,4.523559776365239,-2.152207094431155,-2.338857584655993,4.523559776365239,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,120,121,48.0,-1.2933412555087525,,,,-0.11082857541971779,,3.431208680510616,,-0.11082857541971779,,-3.431208680510616,-1.2933412555087525,-3.542037255930334,3.3203801050908983,-1.2933412555087525,-3.542037255930334,3.3203801050908983,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,121,122,48.400000000000006,-0.2721984305781693,,,,-0.20790021695736313,,3.431208680510616,,-0.20790021695736313,,-3.431208680510616,-0.2721984305781693,-3.6391088974679793,3.223308463553253,-0.2721984305781693,-3.639108897467979,3.223308463553253,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,122,123,48.800000000000004,0.5650646158877007,,,,-0.1329282767084946,,3.431208680510616,,-0.1329282767084946,,-3.431208680510616,0.5650646158877007,-3.5641369572191106,3.2982804038021216,0.5650646158877007,-3.5641369572191106,3.2982804038021216,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,123,124,49.2,1.3150058524959454,,,,-0.9025419472830383,,3.431208680510616,,-0.9025419472830383,,-3.431208680510616,1.3150058524959454,-4.333750627793655,2.5286667332275776,1.3150058524959454,-4.333750627793655,2.5286667332275776,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,124,125,49.6,2.061815570751129,,,,-2.025760582211615,,3.431208680510616,,-2.025760582211615,,-3.431208680510616,2.061815570751129,-5.456969262722231,1.4054480982990012,2.061815570751129,-5.456969262722231,1.4054480982990012,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,125,126,50.0,2.566603897318707,,,,-2.663081602449484,,3.431208680510616,,-2.663081602449484,,-3.431208680510616,2.566603897318707,-6.094290282960101,0.768127078061132,2.566603897318707,-6.094290282960101,0.768127078061132,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,126,127,50.400000000000006,2.5727127778966303,,,,-2.256553396779776,,3.431208680510616,,-2.256553396779776,,-3.431208680510616,2.5727127778966303,-5.687762077290392,1.1746552837308402,2.5727127778966303,-5.687762077290392,1.1746552837308402,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,127,128,50.800000000000004,2.084851522362054,,,,-0.953488885381325,,3.431208680510616,,-0.953488885381325,,-3.431208680510616,2.084851522362054,-4.384697565891941,2.477719795129291,2.084851522362054,-4.384697565891941,2.477719795129291,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,128,129,51.2,1.1889579764038236,,,,0.19079052524050757,,3.431208680510616,,0.19079052524050757,,-3.431208680510616,1.1889579764038236,-3.2404181552701083,3.621999205751124,1.1889579764038236,-3.2404181552701083,3.621999205751124,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,129,130,51.6,0.17074689289691514,,,,0.20210817631316697,,3.431208680510616,,0.20210817631316697,,-3.431208680510616,0.17074689289691514,-3.229100504197449,3.6333168568237832,0.17074689289691514,-3.229100504197449,3.633316856823783,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,130,131,52.0,-0.6503530478066457,,,,0.18602005416635023,,3.431208680510616,,0.18602005416635023,,-3.431208680510616,-0.6503530478066457,-3.245188626344266,3.6172287346769663,-0.6503530478066457,-3.2451886263442664,3.6172287346769667,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,131,132,52.400000000000006,-1.4018655047676214,,,,1.021245895388146,,3.431208680510616,,1.021245895388146,,-3.431208680510616,-1.4018655047676214,-2.4099627851224703,4.452454575898762,-1.4018655047676214,-2.4099627851224703,4.452454575898762,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,132,133,52.800000000000004,-2.135597837213143,,,,2.1279216498531093,,3.431208680510616,,2.1279216498531093,,-3.431208680510616,-2.135597837213143,-1.3032870306575068,5.559130330363725,-2.135597837213143,-1.3032870306575068,5.559130330363725,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,133,134,53.2,-2.5961134295182178,,,,2.6632591210960808,,3.431208680510616,,2.6632591210960808,,-3.431208680510616,-2.5961134295182178,-0.7679495594145354,6.094467801606697,-2.5961134295182178,-0.7679495594145354,6.094467801606697,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,134,135,53.6,-2.5396306596662006,,,,2.11314177618846,,3.431208680510616,,2.11314177618846,,-3.431208680510616,-2.5396306596662006,-1.3180669043221562,5.5443504566990764,-2.5396306596662006,-1.3180669043221562,5.5443504566990764,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,135,136,54.0,-1.9948006783973695,,,,0.7561179905497271,,3.431208680510616,,0.7561179905497271,,-3.431208680510616,-1.9948006783973695,-2.6750906899608893,4.187326671060343,-1.9948006783973695,-2.6750906899608893,4.187326671060343,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,136,137,54.400000000000006,-1.0619997710788531,,,,-0.2417033602711806,,3.431208680510616,,-0.2417033602711806,,-3.431208680510616,-1.0619997710788531,-3.672912040781797,3.1895053202394354,-1.0619997710788531,-3.6729120407817972,3.189505320239436,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,137,138,54.800000000000004,-0.0646634813760451,,,,-0.1421324510641229,,3.431208680510616,,-0.1421324510641229,,-3.431208680510616,-0.0646634813760451,-3.573341131574739,3.289076229446493,-0.0646634813760451,-3.573341131574739,3.2890762294464926,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,138,139,55.2,0.7307275311402369,,,,-0.23110857243526403,,3.431208680510616,,-0.23110857243526403,,-3.431208680510616,0.7307275311402369,-3.66231725294588,3.200100108075352,0.7307275311402369,-3.6623172529458796,3.200100108075352,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,139,140,55.6,1.4844787595448021,,,,-1.1538288785370507,,3.431208680510616,,-1.1538288785370507,,-3.431208680510616,1.4844787595448021,-4.585037559047667,2.2773798019735656,1.4844787595448021,-4.585037559047667,2.2773798019735656,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,140,141,56.0,2.202020569347496,,,,-2.2365647362746293,,3.431208680510616,,-2.2365647362746293,,-3.431208680510616,2.202020569347496,-5.667773416785245,1.1946439442359869,2.202020569347496,-5.667773416785245,1.1946439442359869,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,141,142,56.400000000000006,2.6080017441097696,,,,-2.653688643255279,,3.431208680510616,,-2.653688643255279,,-3.431208680510616,2.6080017441097696,-6.084897323765896,0.777520037255337,2.6080017441097696,-6.084897323765896,0.777520037255337,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,142,143,56.800000000000004,2.4889531645152005,,,,-2.005686207299921,,3.431208680510616,,-2.005686207299921,,-3.431208680510616,2.4889531645152005,-5.436894887810537,1.425522473210695,2.4889531645152005,-5.436894887810537,1.425522473210695,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,143,144,57.2,1.9035322141389897,,,,-0.6380985397302965,,3.431208680510616,,-0.6380985397302965,,-3.431208680510616,1.9035322141389897,-4.069307220240913,2.7931101407803194,1.9035322141389897,-4.069307220240913,2.7931101407803194,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,144,145,57.6,0.9490708168153823,,,,0.2609100861546106,,3.431208680510616,,0.2609100861546106,,-3.431208680510616,0.9490708168153823,-3.1702985943560056,3.6921187666652266,0.9490708168153823,-3.170298594356006,3.6921187666652266,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,145,146,58.0,-0.031687382946088784,,,,0.13789149101300502,,3.431208680510616,,0.13789149101300502,,-3.431208680510616,-0.031687382946088784,-3.293317189497611,3.5691001715236212,-0.031687382946088784,-3.293317189497611,3.569100171523621,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,146,147,58.400000000000006,-0.8184995106360542,,,,0.3155215815630068,,3.431208680510616,,0.3155215815630068,,-3.431208680510616,-0.8184995106360542,-3.1156870989476095,3.7467302620736227,-0.8184995106360542,-3.1156870989476095,3.7467302620736227,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,147,148,58.800000000000004,-1.5773108073891937,,,,1.2778946205494055,,3.431208680510616,,1.2778946205494055,,-3.431208680510616,-1.5773108073891937,-2.1533140599612106,4.709103301060022,-1.577310807389194,-2.1533140599612106,4.709103301060022,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,148,149,59.2,-2.2752667525457233,,,,2.3243091888198966,,3.431208680510616,,2.3243091888198966,,-3.431208680510616,-2.2752667525457233,-1.1068994916907196,5.755517869330513,-2.2752667525457233,-1.1068994916907196,5.755517869330513,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,149,150,59.6,-2.630426576783908,,,,2.6369572824447642,,3.431208680510616,,2.6369572824447642,,-3.431208680510616,-2.630426576783908,-0.7942513980658519,6.06816596295538,-2.630426576783908,-0.794251398065852,6.06816596295538,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,150,151,60.0,-2.4532846687560244,,,,1.8532598061749035,,3.431208680510616,,1.8532598061749035,,-3.431208680510616,-2.4532846687560244,-1.5779488743357126,5.28446848668552,-2.4532846687560244,-1.5779488743357126,5.28446848668552,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,151,152,60.400000000000006,-1.8134185888479017,,,,0.44330942981206917,,3.431208680510616,,0.44330942981206917,,-3.431208680510616,-1.8134185888479017,-2.987899250698547,3.8745181103226853,-1.8134185888479015,-2.987899250698547,3.8745181103226853,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,152,153,60.800000000000004,-0.8260553365082905,,,,-0.30342077790193017,,3.431208680510616,,-0.30342077790193017,,-3.431208680510616,-0.8260553365082905,-3.734629458412546,3.127787902608686,-0.8260553365082905,-3.7346294584125466,3.127787902608686,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,153,154,61.2,0.13098032274686233,,,,-0.10527495175714321,,3.431208680510616,,-0.10527495175714321,,-3.431208680510616,0.13098032274686233,-3.5364836322677595,3.3259337287534727,0.13098032274686233,-3.5364836322677595,3.3259337287534723,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,154,155,61.6,0.8981947213298683,,,,-0.38670320943993997,,3.431208680510616,,-0.38670320943993997,,-3.431208680510616,0.8981947213298683,-3.817911889950556,3.0445054710706763,0.8981947213298683,-3.817911889950556,3.0445054710706763,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,155,156,62.0,1.6559070340723037,,,,-1.418090504559744,,3.431208680510616,,-1.418090504559744,,-3.431208680510616,1.6559070340723037,-4.84929918507036,2.013118175950872,1.6559070340723034,-4.84929918507036,2.013118175950872,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,156,157,62.400000000000006,2.3271796279130226,,,,-2.412332099002064,,3.431208680510616,,-2.412332099002064,,-3.431208680510616,2.3271796279130226,-5.84354077951268,1.018876581508552,2.3271796279130226,-5.84354077951268,1.018876581508552,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,157,158,62.800000000000004,2.6228348314682064,,,,-2.5869376737430656,,3.431208680510616,,-2.5869376737430656,,-3.431208680510616,2.6228348314682064,-6.018146354253682,0.8442710067675505,2.6228348314682064,-6.018146354253682,0.8442710067675505,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,158,159,63.2,2.382628770269516,,,,-1.703630770069244,,3.431208680510616,,-1.703630770069244,,-3.431208680510616,2.382628770269516,-5.13483945057986,1.7275779104413722,2.382628770269516,-5.13483945057986,1.7275779104413722,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,159,160,63.6,1.6991516464152905,,,,-0.3274253791102786,,3.431208680510616,,-0.3274253791102786,,-3.431208680510616,1.6991516464152905,-3.7586340596208947,3.1037833014003375,1.6991516464152905,-3.7586340596208947,3.1037833014003375,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,160,161,64.0,0.7022575982102247,,,,0.280162485789309,,3.431208680510616,,0.280162485789309,,-3.431208680510616,0.7022575982102247,-3.151046194721307,3.711371166299925,0.7022575982102247,-3.1510461947213066,3.711371166299925,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,161,162,64.4,-0.22773660863969722,,,,0.09778537002413444,,3.431208680510616,,0.09778537002413444,,-3.431208680510616,-0.22773660863969722,-3.3334233104864817,3.5289940505347506,-0.22773660863969722,-3.3334233104864817,3.5289940505347506,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,162,163,64.8,-0.9900484194378398,,,,0.4899060953478689,,3.431208680510616,,0.4899060953478689,,-3.431208680510616,-0.9900484194378398,-2.941302585162747,3.9211147758584852,-0.9900484194378398,-2.941302585162747,3.9211147758584857,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,163,164,65.2,-1.7522139439734878,,,,1.5509045968900674,,3.431208680510616,,1.5509045968900674,,-3.431208680510616,-1.7522139439734878,-1.8803040836205487,4.982113277400684,-1.7522139439734878,-1.8803040836205487,4.982113277400684,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,164,165,65.60000000000001,-2.3952971006618133,,,,2.4903314477308465,,3.431208680510616,,2.4903314477308465,,-3.431208680510616,-2.3952971006618133,-0.9408772327797696,5.921540128241462,-2.3952971006618133,-0.9408772327797696,5.921540128241462,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,165,166,66.0,-2.634143284586754,,,,2.557010100470218,,3.431208680510616,,2.557010100470218,,-3.431208680510616,-2.634143284586754,-0.8741985800403982,5.988218780980834,-2.634143284586754,-0.8741985800403982,5.988218780980834,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,166,167,66.4,-2.340832968012716,,,,1.5559507851760488,,3.431208680510616,,1.5559507851760488,,-3.431208680510616,-2.340832968012716,-1.8752578953345673,4.9871594656866645,-2.340832968012716,-1.875257895334567,4.9871594656866645,0.0,2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,167,168,66.8,-1.6072051527117157,,,,0.16517759900415768,,3.431208680510616,,0.16517759900415768,,-3.431208680510616,-1.6072051527117157,-3.2660310815064584,3.596386279514774,-1.6072051527117155,-3.2660310815064584,3.596386279514774,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,168,169,67.2,-0.5863163612740723,,,,-0.3033425235414235,,3.431208680510616,,-0.3033425235414235,,-3.431208680510616,-0.5863163612740723,-3.7345512040520394,3.127866156969193,-0.5863163612740723,-3.7345512040520394,3.1278661569691932,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,169,170,67.60000000000001,0.3217754765248508,,,,-0.09718673939084196,,3.431208680510616,,-0.09718673939084196,,-3.431208680510616,0.3217754765248508,-3.528395419901458,3.334021941119774,0.3217754765248508,-3.528395419901458,3.334021941119774,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,170,171,68.0,1.0736355395709833,,,,-0.5863486570847094,,3.431208680510616,,-0.5863486570847094,,-3.431208680510616,1.0736355395709833,-4.017557337595326,2.8448600234259067,1.0736355395709833,-4.017557337595326,2.8448600234259067,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,171,172,68.4,1.8324089632891707,,,,-1.6898079137395072,,3.431208680510616,,-1.6898079137395072,,-3.431208680510616,1.8324089632891707,-5.121016594250124,1.7414007667711089,1.8324089632891705,-5.121016594250124,1.7414007667711089,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,172,173,68.8,2.4425863577785196,,,,-2.5494055731298504,,3.431208680510616,,-2.5494055731298504,,-3.431208680510616,2.4425863577785196,-5.980614253640466,0.8818031073807657,2.4425863577785196,-5.980614253640466,0.8818031073807656,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,173,174,69.2,2.6179708326651747,,,,-2.4722469259160835,,3.431208680510616,,-2.4722469259160835,,-3.431208680510616,2.6179708326651747,-5.9034556064267,0.9589617545945326,2.6179708326651747,-5.9034556064267,0.9589617545945325,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,174,175,69.60000000000001,2.2634905474656057,,,,-1.3689458526865121,,3.431208680510616,,-1.3689458526865121,,-3.431208680510616,2.2634905474656057,-4.800154533197128,2.062262827824104,2.2634905474656057,-4.800154533197128,2.062262827824104,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,175,176,70.0,1.481586245350178,,,,-0.05254369244263361,,3.431208680510616,,-0.05254369244263361,,-3.431208680510616,1.481586245350178,-3.4837523729532496,3.3786649880679827,1.481586245350178,-3.48375237295325,3.378664988067983,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,176,177,70.4,0.4600880887681054,,,,0.25647668736481477,,3.431208680510616,,0.25647668736481477,,-3.431208680510616,0.4600880887681054,-3.1747319931458016,3.6876853678754307,0.4600880887681054,-3.1747319931458016,3.687685367875431,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,177,178,70.8,-0.4160889683132125,,,,0.09786240641794064,,3.431208680510616,,0.09786240641794064,,-3.431208680510616,-0.4160889683132125,-3.3333462740926754,3.529071086928557,-0.41608896831321257,-3.333346274092675,3.529071086928557,-5.551115123125783e-17,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,178,179,71.2,-1.1661837394523644,,,,0.7028730537792843,,3.431208680510616,,0.7028730537792843,,-3.431208680510616,-1.1661837394523644,-2.7283356267313317,4.1340817342899,-1.1661837394523644,-2.7283356267313317,4.1340817342899,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,179,180,71.60000000000001,-1.9236619320150792,,,,1.8249431461092958,,3.431208680510616,,1.8249431461092958,,-3.431208680510616,-1.9236619320150792,-1.6062655344013204,5.256151826619912,-1.9236619320150792,-1.6062655344013206,5.256151826619912,0.0,-2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,180,181,72.0,-2.496655731747948,,,,2.6069305971316643,,3.431208680510616,,2.6069305971316643,,-3.431208680510616,-2.496655731747948,-0.8242780833789518,6.03813927764228,-2.496655731747948,-0.8242780833789518,6.03813927764228,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,181,182,72.4,-2.6091668838321715,,,,2.415048925973352,,3.431208680510616,,2.415048925973352,,-3.431208680510616,-2.6091668838321715,-1.0161597545372643,5.846257606483968,-2.6091668838321715,-1.0161597545372643,5.846257606483968,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,182,183,72.8,-2.2059159419717327,,,,1.2257549885596606,,3.431208680510616,,1.2257549885596606,,-3.431208680510616,-2.2059159419717327,-2.2054536919509555,4.656963669070277,-2.2059159419717327,-2.2054536919509555,4.656963669070277,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,183,184,73.2,-1.379746009562843,,,,-0.053778406185258754,,3.431208680510616,,-0.053778406185258754,,-3.431208680510616,-1.379746009562843,-3.4849870866958748,3.3774302743253575,-1.379746009562843,-3.4849870866958743,3.3774302743253575,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,184,185,73.60000000000001,-0.35091703422796894,,,,-0.25181217939360034,,3.431208680510616,,-0.25181217939360034,,-3.431208680510616,-0.35091703422796894,-3.6830208599042162,3.179396501117016,-0.35091703422796894,-3.6830208599042167,3.179396501117016,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,185,186,74.0,0.505907612389808,,,,-0.128569478379104,,3.431208680510616,,-0.128569478379104,,-3.431208680510616,0.505907612389808,-3.55977815888972,3.302639202131512,0.505907612389808,-3.55977815888972,3.3026392021315116,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,186,187,74.4,1.255638604814282,,,,-0.817374712276015,,3.431208680510616,,-0.817374712276015,,-3.431208680510616,1.255638604814282,-4.248583392786631,2.613833968234601,1.255638604814282,-4.248583392786631,2.613833968234601,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,187,188,74.8,2.0069779913294865,,,,-1.9458249709207234,,3.431208680510616,,-1.9458249709207234,,-3.431208680510616,2.0069779913294865,-5.37703365143134,1.4853837095898927,2.0069779913294865,-5.37703365143134,1.4853837095898927,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,188,189,75.2,2.5405139494168854,,,,-2.63736027717679,,3.431208680510616,,-2.63736027717679,,-3.431208680510616,2.5405139494168854,-6.068568957687406,0.793848403333826,2.5405139494168854,-6.068568957687406,0.793848403333826,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,189,190,75.60000000000001,2.5894492849600965,,,,-2.306967169954922,,3.431208680510616,,-2.306967169954922,,-3.431208680510616,2.5894492849600965,-5.738175850465538,1.1242415105556942,2.5894492849600965,-5.738175850465538,1.1242415105556942,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,190,191,76.0,2.1292259765812687,,,,-1.0301151289011388,,3.431208680510616,,-1.0301151289011388,,-3.431208680510616,2.1292259765812687,-4.461323809411755,2.4010935516094776,2.1292259765812687,-4.461323809411755,2.4010935516094776,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,191,192,76.4,1.2558315441734658,,,,0.14936169241490121,,3.431208680510616,,0.14936169241490121,,-3.431208680510616,1.2558315441734658,-3.281846988095715,3.5805703729255174,1.2558315441734658,-3.281846988095715,3.580570372925517,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,192,193,76.80000000000001,0.23505237030811663,,,,0.20361662807172798,,3.431208680510616,,0.20361662807172798,,-3.431208680510616,0.23505237030811663,-3.2275920524388884,3.634825308582344,0.23505237030811663,-3.2275920524388884,3.6348253085823443,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,193,194,77.2,-0.5931690052107266,,,,0.14979011220179975,,3.431208680510616,,0.14979011220179975,,-3.431208680510616,-0.5931690052107266,-3.2814185683088164,3.580998792712416,-0.5931690052107266,-3.2814185683088164,3.5809987927124154,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,194,195,77.60000000000001,-1.34275537636545,,,,0.942201683476178,,3.431208680510616,,0.942201683476178,,-3.431208680510616,-1.34275537636545,-2.489006997034438,4.373410363986794,-1.34275537636545,-2.489006997034438,4.373410363986794,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,195,196,78.0,-2.0839534030759954,,,,2.0708787884188533,,3.431208680510616,,2.0708787884188533,,-3.431208680510616,-2.0839534030759954,-1.3603298920917628,5.502087468929469,-2.0839534030759954,-1.3603298920917628,5.502087468929469,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,196,197,78.4,-2.5718134154159893,,,,2.6596719046714528,,3.431208680510616,,2.6596719046714528,,-3.431208680510616,-2.5718134154159893,-0.7715367758391634,6.090880585182068,-2.5718134154159893,-0.7715367758391634,6.090880585182068,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,197,198,78.80000000000001,-2.555090405893702,,,,2.2065240443444734,,3.431208680510616,,2.2065240443444734,,-3.431208680510616,-2.555090405893702,-1.2246846361661428,5.6377327248550895,-2.555090405893702,-1.2246846361661428,5.6377327248550895,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,198,199,79.2,-2.0480352472048207,,,,0.8843537460528959,,3.431208680510616,,0.8843537460528959,,-3.431208680510616,-2.0480352472048207,-2.5468549344577203,4.3155624265635115,-2.0480352472048207,-2.5468549344577203,4.3155624265635115,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,199,200,79.60000000000001,-1.1412841725629452,,,,-0.19779566071839513,,3.431208680510616,,-0.19779566071839513,,-3.431208680510616,-1.1412841725629452,-3.6290043412290114,3.233413019792221,-1.1412841725629452,-3.6290043412290114,3.233413019792221,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,200,201,80.0,-0.13170869324767434,,,,-0.17601902509692416,,3.431208680510616,,-0.17601902509692416,,-3.431208680510616,-0.13170869324767434,-3.6072277056075404,3.255189655413692,-0.13170869324767434,-3.60722770560754,3.255189655413692,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,201,202,80.4,0.6798360733216708,,,,-0.20582480169972245,,3.431208680510616,,-0.20582480169972245,,-3.431208680510616,0.6798360733216708,-3.6370334822103385,3.2253838788108937,0.6798360733216708,-3.637033482210338,3.2253838788108937,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,202,203,80.80000000000001,1.434750221458313,,,,-1.0674537250548133,,3.431208680510616,,-1.0674537250548133,,-3.431208680510616,1.434750221458313,-4.49866240556543,2.3637549554558026,1.434750221458313,-4.49866240556543,2.3637549554558026,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,203,204,81.2,2.163302783676913,,,,-2.1731024290995853,,3.431208680510616,,-2.1731024290995853,,-3.431208680510616,2.163302783676913,-5.604311109610201,1.2581062514110308,2.163302783676913,-5.604311109610201,1.2581062514110308,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,204,205,81.60000000000001,2.605228265796395,,,,-2.6623992366055327,,3.431208680510616,,-2.6623992366055327,,-3.431208680510616,2.605228265796395,-6.093607917116149,0.7688094439050834,2.605228265796395,-6.093607917116149,0.7688094439050834,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,205,206,82.0,2.526689980860779,,,,-2.0882412082260613,,3.431208680510616,,-2.0882412082260613,,-3.431208680510616,2.526689980860779,-5.519449888736677,1.3429674722845548,2.526689980860779,-5.519449888736677,1.3429674722845548,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,206,207,82.4,1.9693843643598987,,,,-0.7076663617290759,,3.431208680510616,,-0.7076663617290759,,-3.431208680510616,1.9693843643598987,-4.138875042239692,2.72354231878154,1.969384364359899,-4.138875042239692,2.72354231878154,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,207,208,82.80000000000001,1.0239433649260246,,,,0.2624355894469785,,3.431208680510616,,0.2624355894469785,,-3.431208680510616,1.0239433649260246,-3.168773091063638,3.6936442699575944,1.0239433649260246,-3.1687730910636374,3.6936442699575944,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,208,209,83.2,0.029791683257416192,,,,0.14739345822690395,,3.431208680510616,,0.14739345822690395,,-3.431208680510616,0.029791683257416192,-3.283815222283712,3.57860213873752,0.029791683257416192,-3.283815222283712,3.57860213873752,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,209,210,83.60000000000001,-0.7614855414989667,,,,0.2579613887727162,,3.431208680510616,,0.2579613887727162,,-3.431208680510616,-0.7614855414989667,-3.1732472917379,3.6891700692833322,-0.7614855414989667,-3.1732472917379004,3.6891700692833322,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,210,211,84.0,-1.517041355639273,,,,1.1968885687746178,,3.431208680510616,,1.1968885687746178,,-3.431208680510616,-1.517041355639273,-2.2343201117359985,4.628097249285234,-1.517041355639273,-2.2343201117359985,4.628097249285234,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,211,212,84.4,-2.2268168844868788,,,,2.2717645829022377,,3.431208680510616,,2.2717645829022377,,-3.431208680510616,-2.2268168844868788,-1.1594440976083784,5.702973263412854,-2.2268168844868788,-1.1594440976083784,5.702973263412854,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,212,213,84.80000000000001,-2.6159556142473566,,,,2.642062846607395,,3.431208680510616,,2.642062846607395,,-3.431208680510616,-2.6159556142473566,-0.7891458339032211,6.0732715271180115,-2.6159556142473566,-0.789145833903221,6.0732715271180115,0.0,1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,213,214,85.2,-2.474065376595145,,,,1.9407401121920012,,3.431208680510616,,1.9407401121920012,,-3.431208680510616,-2.474065376595145,-1.490468568318615,5.371948792702617,-2.474065376595145,-1.490468568318615,5.371948792702617,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,214,215,85.60000000000001,-1.8683558014353498,,,,0.5615922659304814,,3.431208680510616,,0.5615922659304814,,-3.431208680510616,-1.8683558014353498,-2.869616414580135,3.9928009464410974,-1.86835580143535,-2.869616414580135,3.9928009464410974,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,215,216,86.0,-0.9014163934900451,,,,-0.26630446067109564,,3.431208680510616,,-0.26630446067109564,,-3.431208680510616,-0.9014163934900451,-3.697513141181712,3.1649042198395203,-0.9014163934900451,-3.6975131411817124,3.1649042198395203,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,216,217,86.4,0.0680289811594311,,,,-0.11567821432940721,,3.431208680510616,,-0.11567821432940721,,-3.431208680510616,0.0680289811594311,-3.546886894840023,3.315530466181209,0.0680289811594311,-3.546886894840023,3.3155304661812086,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,217,218,86.80000000000001,0.8462338941715395,,,,-0.3357745408421606,,3.431208680510616,,-0.3357745408421606,,-3.431208680510616,0.8462338941715395,-3.7669832213527767,3.0954341396684555,0.8462338941715395,-3.7669832213527763,3.0954341396684555,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,218,219,87.2,1.6060317990251094,,,,-1.3290842385127657,,3.431208680510616,,-1.3290842385127657,,-3.431208680510616,1.6060317990251094,-4.760292919023382,2.1021244419978506,1.6060317990251094,-4.760292919023382,2.1021244419978506,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,219,220,87.60000000000001,2.2942630321612576,,,,-2.3578411822970167,,3.431208680510616,,-2.3578411822970167,,-3.431208680510616,2.2942630321612576,-5.789049862807633,1.0733674982135994,2.2942630321612576,-5.789049862807633,1.0733674982135994,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,220,221,88.0,2.629470737749388,,,,-2.626189543337378,,3.431208680510616,,-2.626189543337378,,-3.431208680510616,2.629470737749388,-6.0573982238479935,0.8050191371732383,2.629470737749388,-6.0573982238479935,0.8050191371732383,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,221,222,88.4,2.430174125470165,,,,-1.8152371694730642,,3.431208680510616,,-1.8152371694730642,,-3.431208680510616,2.430174125470165,-5.24644584998368,1.6159715110375519,2.430174125470165,-5.24644584998368,1.6159715110375519,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,222,223,88.80000000000001,1.7790399962674175,,,,-0.4121745470473575,,3.431208680510616,,-0.4121745470473575,,-3.431208680510616,1.7790399962674175,-3.8433832275579736,3.0190341334632587,1.7790399962674175,-3.843383227557973,3.0190341334632587,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,223,224,89.2,0.787190232279712,,,,0.30017063376166364,,3.431208680510616,,0.30017063376166364,,-3.431208680510616,0.787190232279712,-3.1310380467489525,3.7313793142722798,0.7871902322797119,-3.1310380467489525,3.7313793142722798,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,224,225,89.60000000000001,-0.16302962932821308,,,,0.11354555463684335,,3.431208680510616,,0.11354555463684335,,-3.431208680510616,-0.16302962932821308,-3.3176631258737728,3.5447542351474595,-0.16302962932821308,-3.317663125873773,3.54475423514746,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,225,226,90.0,-0.9303072143858568,,,,0.42114487179649107,,3.431208680510616,,0.42114487179649107,,-3.431208680510616,-0.9303072143858568,-3.010063808714125,3.852353552307107,-0.9303072143858568,-3.010063808714125,3.852353552307107,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,226,227,90.4,-1.6896770385049729,,,,1.4622819903537445,,3.431208680510616,,1.4622819903537445,,-3.431208680510616,-1.6896770385049729,-1.9689266901568716,4.89349067086436,-1.689677038504973,-1.9689266901568716,4.89349067086436,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,227,228,90.80000000000001,-2.351654222054443,,,,2.4349835392061645,,3.431208680510616,,2.4349835392061645,,-3.431208680510616,-2.351654222054443,-0.9962251413044516,5.866192219716781,-2.351654222054443,-0.9962251413044517,5.866192219716781,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,228,229,91.2,-2.629296779307487,,,,2.576078282641467,,3.431208680510616,,2.576078282641467,,-3.431208680510616,-2.629296779307487,-0.8551303978691491,6.007286963152083,-2.629296779307487,-0.8551303978691492,6.007286963152083,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,229,230,91.60000000000001,-2.36917296490898,,,,1.6386437208310198,,3.431208680510616,,1.6386437208310198,,-3.431208680510616,-2.36917296490898,-1.7925649596795963,5.069852401341636,-2.36917296490898,-1.792564959679596,5.069852401341636,0.0,2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,230,231,92.0,-1.6658722598445428,,,,0.25704943620572174,,3.431208680510616,,0.25704943620572174,,-3.431208680510616,-1.6658722598445428,-3.1741592443048945,3.6882581167163377,-1.665872259844543,-3.1741592443048945,3.6882581167163377,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,231,232,92.4,-0.6589613710921715,,,,-0.2872038557765363,,3.431208680510616,,-0.2872038557765363,,-3.431208680510616,-0.6589613710921715,-3.7184125362871523,3.14400482473408,-0.6589613710921715,-3.7184125362871523,3.14400482473408,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,232,233,92.80000000000001,0.2603415232997466,,,,-0.09201373032217156,,3.431208680510616,,-0.09201373032217156,,-3.431208680510616,0.2603415232997466,-3.523222410832788,3.3391949501884444,0.2603415232997466,-3.523222410832788,3.339194950188445,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,233,234,93.2,1.0174351080885553,,,,-0.5199916998001055,,3.431208680510616,,-0.5199916998001055,,-3.431208680510616,1.0174351080885553,-3.9512003803107216,2.9112169807105106,1.0174351080885553,-3.9512003803107216,2.9112169807105106,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,234,235,93.60000000000001,1.7772929970807185,,,,-1.6045554210634494,,3.431208680510616,,-1.6045554210634494,,-3.431208680510616,1.7772929970807185,-5.035764101574065,1.8266532594471667,1.7772929970807183,-5.035764101574065,1.8266532594471667,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,235,236,94.0,2.408169670164051,,,,-2.5097558851619897,,3.431208680510616,,-2.5097558851619897,,-3.431208680510616,2.408169670164051,-5.940964565672606,0.9214527953486265,2.408169670164051,-5.940964565672606,0.9214527953486263,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,236,237,94.4,2.6233638995625643,,,,-2.5309206447623,,3.431208680510616,,-2.5309206447623,,-3.431208680510616,2.6233638995625643,-5.962129325272916,0.9002880357483161,2.6233638995625643,-5.962129325272916,0.9002880357483161,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,237,238,94.80000000000001,2.308709352805197,,,,-1.4953100501085355,,3.431208680510616,,-1.4953100501085355,,-3.431208680510616,2.308709352805197,-4.926518730619152,1.9358986304020807,2.308709352805197,-4.926518730619152,1.9358986304020807,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,238,239,95.2,1.56083319559748,,,,-0.13924769693400438,,3.431208680510616,,-0.13924769693400438,,-3.431208680510616,1.56083319559748,-3.5704563774446205,3.2919609835766117,1.56083319559748,-3.57045637744462,3.2919609835766117,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,239,240,95.60000000000001,0.5421786912229688,,,,0.28482821172722395,,3.431208680510616,,0.28482821172722395,,-3.431208680510616,0.5421786912229688,-3.1463804687833923,3.71603689223784,0.5421786912229688,-3.1463804687833927,3.71603689223784,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,240,241,96.0,-0.3553508766055922,,,,0.10675234536484166,,3.431208680510616,,0.10675234536484166,,-3.431208680510616,-0.3553508766055922,-3.3244563351457743,3.537961025875458,-0.3553508766055922,-3.3244563351457743,3.537961025875458,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,241,242,96.4,-1.109526211961929,,,,0.6291641449988274,,3.431208680510616,,0.6291641449988274,,-3.431208680510616,-1.109526211961929,-2.8020445355117887,4.060372825509443,-1.109526211961929,-2.8020445355117887,4.060372825509443,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,242,243,96.80000000000001,-1.8679242797158915,,,,1.7367346482511405,,3.431208680510616,,1.7367346482511405,,-3.431208680510616,-1.8679242797158915,-1.6944740322594756,5.167943328761757,-1.8679242797158913,-1.6944740322594756,5.167943328761757,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,243,244,97.2,-2.4658806274637124,,,,2.5696009834824056,,3.431208680510616,,2.5696009834824056,,-3.431208680510616,-2.4658806274637124,-0.8616076970282105,6.000809663993022,-2.4658806274637124,-0.8616076970282105,6.000809663993022,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,244,245,97.60000000000001,-2.6196757852351102,,,,2.460513948198556,,3.431208680510616,,2.460513948198556,,-3.431208680510616,-2.6196757852351102,-0.9706947323120603,5.8917226287091715,-2.6196757852351102,-0.9706947323120604,5.8917226287091715,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,245,246,98.0,-2.2488994390526416,,,,1.3094506153008127,,3.431208680510616,,1.3094506153008127,,-3.431208680510616,-2.2488994390526416,-2.1217580652098036,4.740659295811429,-2.2488994390526416,-2.1217580652098036,4.740659295811429,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,246,247,98.4,-1.4472159999333172,,,,-0.0020352223565243974,,3.431208680510616,,-0.0020352223565243974,,-3.431208680510616,-1.4472159999333172,-3.4332439028671407,3.4291734581540916,-1.4472159999333172,-3.43324390286714,3.4291734581540916,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,247,248,98.80000000000001,-0.4202660466097958,,,,-0.26296327351996723,,3.431208680510616,,-0.26296327351996723,,-3.431208680510616,-0.4202660466097958,-3.6941719540305833,3.168245406990649,-0.4202660466097957,-3.6941719540305833,3.168245406990649,5.551115123125783e-17,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,248,249,99.2,0.4480324424057739,,,,-0.10468149748232783,,3.431208680510616,,-0.10468149748232783,,-3.431208680510616,0.4480324424057739,-3.535890177992944,3.326527183028288,0.44803244240577395,-3.5358901779929446,3.326527183028288,5.551115123125783e-17,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,249,250,99.60000000000001,1.1964272892530776,,,,-0.7433217279026687,,3.431208680510616,,-0.7433217279026687,,-3.431208680510616,1.1964272892530776,-4.174530408413284,2.6878869526079474,1.1964272892530776,-4.174530408413284,2.6878869526079474,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,250,251,100.0,1.950242231379983,,,,-1.8735768609516705,,3.431208680510616,,-1.8735768609516705,,-3.431208680510616,1.950242231379983,-5.304785541462286,1.5576318195589456,1.9502422313799832,-5.304785541462286,1.5576318195589456,2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,251,252,100.4,2.5097629986273904,,,,-2.615450730939128,,3.431208680510616,,-2.615450730939128,,-3.431208680510616,2.5097629986273904,-6.046659411449744,0.8157579495714882,2.5097629986273904,-6.046659411449744,0.8157579495714882,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,252,253,100.80000000000001,2.5968699134215134,,,,-2.3730106530599864,,3.431208680510616,,-2.3730106530599864,,-3.431208680510616,2.5968699134215134,-5.804219333570602,1.0581980274506297,2.5968699134215134,-5.804219333570602,1.0581980274506297,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,253,254,101.2,2.1726888139732456,,,,-1.1523490489959514,,3.431208680510616,,-1.1523490489959514,,-3.431208680510616,2.1726888139732456,-4.583557729506568,2.2788596315146648,2.1726888139732456,-4.583557729506568,2.2788596315146648,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,254,255,101.60000000000001,1.3298393172527374,,,,0.07839838506903145,,3.431208680510616,,0.07839838506903145,,-3.431208680510616,1.3298393172527374,-3.352810295441585,3.5096070655796474,1.3298393172527374,-3.352810295441585,3.5096070655796474,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,255,256,102.0,0.3068325218452081,,,,0.227077102656631,,3.431208680510616,,0.227077102656631,,-3.431208680510616,0.3068325218452081,-3.204131577853985,3.6582857831672473,0.3068325218452081,-3.204131577853985,3.658285783167247,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,256,257,102.4,-0.5389052266884996,,,,0.13525337513973643,,3.431208680510616,,0.13525337513973643,,-3.431208680510616,-0.5389052266884996,-3.29595530537088,3.5664620556503523,-0.5389052266884996,-3.2959553053708794,3.5664620556503523,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,257,258,102.80000000000001,-1.2903284400383928,,,,0.8643413351970896,,3.431208680510616,,0.8643413351970896,,-3.431208680510616,-1.2903284400383928,-2.5668673453135264,4.295550015707706,-1.2903284400383928,-2.5668673453135264,4.295550015707706,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,258,259,103.2,-2.038564635277089,,,,1.9922537092976924,,3.431208680510616,,1.9922537092976924,,-3.431208680510616,-2.038564635277089,-1.4389549712129237,5.423462389808309,-2.038564635277089,-1.4389549712129237,5.423462389808309,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,259,260,103.60000000000001,-2.556348874009385,,,,2.651624950927131,,3.431208680510616,,2.651624950927131,,-3.431208680510616,-2.556348874009385,-0.7795837295834853,6.082833631437747,-2.556348874009385,-0.7795837295834853,6.082833631437747,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,260,261,104.0,-2.5823103288711704,,,,2.285164043557715,,3.431208680510616,,2.285164043557715,,-3.431208680510616,-2.5823103288711704,-1.146044636952901,5.716372724068331,-2.5823103288711704,-1.146044636952901,5.716372724068331,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,261,262,104.4,-2.107871090444377,,,,0.9789978277106204,,3.431208680510616,,0.9789978277106204,,-3.431208680510616,-2.107871090444377,-2.452210852799996,4.410206508221236,-2.107871090444377,-2.452210852799996,4.410206508221236,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,262,263,104.80000000000001,-1.2197855612593527,,,,-0.176692560682297,,3.431208680510616,,-0.176692560682297,,-3.431208680510616,-1.2197855612593527,-3.607901241192913,3.254516119828319,-1.2197855612593527,-3.6079012411929128,3.254516119828319,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,263,264,105.2,-0.1995816146372031,,,,-0.20321987541904227,,3.431208680510616,,-0.20321987541904227,,-3.431208680510616,-0.1995816146372031,-3.6344285559296585,3.2279888050915737,-0.1995816146372031,-3.6344285559296585,3.2279888050915737,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,264,265,105.60000000000001,0.6237785870162977,,,,-0.16819998337143194,,3.431208680510616,,-0.16819998337143194,,-3.431208680510616,0.6237785870162977,-3.599408663882048,3.2630086971391843,0.6237785870162977,-3.5994086638820475,3.2630086971391843,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,265,266,106.0,1.3745316074868448,,,,-0.9861124279457147,,3.431208680510616,,-0.9861124279457147,,-3.431208680510616,1.3745316074868448,-4.417321108456331,2.4450962525649014,1.3745316074868448,-4.417321108456331,2.4450962525649014,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,266,267,106.4,2.1113886651150313,,,,-2.1052825415618517,,3.431208680510616,,-2.1052825415618517,,-3.431208680510616,2.1113886651150313,-5.536491222072468,1.3259261389487644,2.1113886651150313,-5.536491222072468,1.3259261389487644,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,267,268,106.80000000000001,2.584473576243889,,,,-2.6572668771754913,,3.431208680510616,,-2.6572668771754913,,-3.431208680510616,2.584473576243889,-6.088475557686108,0.7739418033351249,2.584473576243889,-6.088475557686108,0.7739418033351249,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,268,269,107.2,2.5441634359126772,,,,-2.1553618306318745,,3.431208680510616,,-2.1553618306318745,,-3.431208680510616,2.5441634359126772,-5.58657051114249,1.2758468498787416,2.5441634359126772,-5.58657051114249,1.2758468498787416,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,269,270,107.60000000000001,2.0173249666380877,,,,-0.8156214492106548,,3.431208680510616,,-0.8156214492106548,,-3.431208680510616,2.0173249666380877,-4.246830129721271,2.615587231299961,2.0173249666380877,-4.246830129721271,2.615587231299961,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,270,271,108.0,1.0960028744956931,,,,0.2167143374771584,,3.431208680510616,,0.2167143374771584,,-3.431208680510616,1.0960028744956931,-3.214494343033458,3.6479230179877744,1.0960028744956931,-3.2144943430334574,3.6479230179877744,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,271,272,108.4,0.09443975651310882,,,,0.15735794829531521,,3.431208680510616,,0.15735794829531521,,-3.431208680510616,0.09443975651310882,-3.2738507322153008,3.5885666288059315,0.09443975651310882,-3.2738507322153003,3.5885666288059315,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,272,273,108.80000000000001,-0.7086155839025652,,,,0.21821943982729308,,3.431208680510616,,0.21821943982729308,,-3.431208680510616,-0.7086155839025652,-3.212989240683323,3.6494281203379093,-0.7086155839025652,-3.2129892406833225,3.6494281203379093,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,273,274,109.2,-1.4634200201173242,,,,1.1149659970577088,,3.431208680510616,,1.1149659970577088,,-3.431208680510616,-1.4634200201173242,-2.3162426834529075,4.546174677568325,-1.4634200201173242,-2.3162426834529075,4.546174677568325,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,274,275,109.60000000000001,-2.1860512021408876,,,,2.207793774629738,,3.431208680510616,,2.207793774629738,,-3.431208680510616,-2.1860512021408876,-1.2234149058808783,5.6390024551403535,-2.1860512021408876,-1.2234149058808783,5.6390024551403535,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,275,276,110.0,-2.6094141019548123,,,,2.662021514682542,,3.431208680510616,,2.662021514682542,,-3.431208680510616,-2.6094141019548123,-0.769187165828074,6.093230195193158,-2.6094141019548123,-0.769187165828074,6.093230195193158,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,276,277,110.4,-2.508474249843668,,,,2.0459996871195507,,3.431208680510616,,2.0459996871195507,,-3.431208680510616,-2.508474249843668,-1.3852089933910654,5.477208367630167,-2.508474249843668,-1.3852089933910654,5.477208367630167,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,277,278,110.80000000000001,-1.9367783896544688,,,,0.6674213925363491,,3.431208680510616,,0.6674213925363491,,-3.431208680510616,-1.9367783896544688,-2.763787287974267,4.098630073046965,-1.9367783896544688,-2.763787287974267,4.098630073046965,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,278,279,111.2,-0.9846296450524817,,,,-0.2651373440803479,,3.431208680510616,,-0.2651373440803479,,-3.431208680510616,-0.9846296450524817,-3.696346024590964,3.166071336430268,-0.9846296450524817,-3.696346024590964,3.1660713364302686,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,279,280,111.60000000000001,0.0030149641781832834,,,,-0.1431384915587304,,3.431208680510616,,-0.1431384915587304,,-3.431208680510616,0.0030149641781832834,-3.5743471720693467,3.2880701889518855,0.0030149641781832834,-3.5743471720693467,3.288070188951885,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,280,281,112.0,0.7924117161248485,,,,-0.28451732572692306,,3.431208680510616,,-0.28451732572692306,,-3.431208680510616,0.7924117161248485,-3.715726006237539,3.146691354783693,0.7924117161248484,-3.7157260062375395,3.146691354783693,-1.1102230246251565e-16,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,281,282,112.4,1.5485315188073319,,,,-1.2428875171521503,,3.431208680510616,,-1.2428875171521503,,-3.431208680510616,1.5485315188073319,-4.674096197662767,2.1883211633584656,1.5485315188073319,-4.674096197662767,2.1883211633584656,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,282,283,112.80000000000001,2.2518657457256834,,,,-2.2996042567587645,,3.431208680510616,,-2.2996042567587645,,-3.431208680510616,2.2518657457256834,-5.730812937269381,1.1316044237518517,2.2518657457256834,-5.730812937269381,1.1316044237518517,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,283,284,113.2,2.6231867443345944,,,,-2.637924043513281,,3.431208680510616,,-2.637924043513281,,-3.431208680510616,2.6231867443345944,-6.069132724023897,0.7932846369973352,2.6231867443345944,-6.069132724023897,0.7932846369973352,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,284,285,113.60000000000001,2.4610779891932757,,,,-1.8934362647407275,,3.431208680510616,,-1.8934362647407275,,-3.431208680510616,2.4610779891932757,-5.324644945251343,1.5377724157698887,2.4610779891932757,-5.324644945251343,1.5377724157698887,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,285,286,114.0,1.8368270104356286,,,,-0.49779029829183746,,3.431208680510616,,-0.49779029829183746,,-3.431208680510616,1.8368270104356286,-3.9289989788024537,2.9334183822187785,1.8368270104356286,-3.9289989788024537,2.9334183822187785,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,286,287,114.4,0.8590166428652097,,,,0.2858628744392931,,3.431208680510616,,0.2858628744392931,,-3.431208680510616,0.8590166428652097,-3.145345806071323,3.7170715549499094,0.8590166428652097,-3.145345806071323,3.717071554949909,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,287,288,114.80000000000001,-0.10277311457191393,,,,0.10999548619658034,,3.431208680510616,,0.10999548619658034,,-3.431208680510616,-0.10277311457191393,-3.3212131943140357,3.5412041667071965,-0.10277311457191393,-3.3212131943140357,3.5412041667071965,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,288,289,115.2,-0.8751968203531214,,,,0.3623807189227628,,3.431208680510616,,0.3623807189227628,,-3.431208680510616,-0.8751968203531214,-3.0688279615878535,3.7935893994333787,-0.8751968203531215,-3.0688279615878535,3.7935893994333787,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,289,290,115.60000000000001,-1.6338341586643597,,,,1.37959301309055,,3.431208680510616,,1.37959301309055,,-3.431208680510616,-1.6338341586643597,-2.051615667420066,4.810801693601166,-1.6338341586643597,-2.051615667420066,4.810801693601166,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,290,291,116.0,-2.313156570624531,,,,2.3866823292730244,,3.431208680510616,,2.3866823292730244,,-3.431208680510616,-2.313156570624531,-1.0445263512375917,5.81789100978364,-2.313156570624531,-1.0445263512375917,5.81789100978364,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,291,292,116.4,-2.6268729050705626,,,,2.6075863199540423,,3.431208680510616,,2.6075863199540423,,-3.431208680510616,-2.6268729050705626,-0.8236223605565738,6.038795000464658,-2.6268729050705626,-0.8236223605565737,6.038795000464658,0.0,1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,292,293,116.80000000000001,-2.4050874355962146,,,,1.7545863861802717,,3.431208680510616,,1.7545863861802717,,-3.431208680510616,-2.4050874355962146,-1.6766222943303444,5.185795066690888,-2.4050874355962146,-1.6766222943303444,5.185795066690888,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,293,294,117.2,-1.7357149758748434,,,,0.3689470818967976,,3.431208680510616,,0.3689470818967976,,-3.431208680510616,-1.7357149758748434,-3.0622615986138184,3.800155762407414,-1.7357149758748434,-3.0622615986138184,3.800155762407414,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,294,295,117.60000000000001,-0.7410406071965686,,,,-0.2918406550053145,,3.431208680510616,,-0.2918406550053145,,-3.431208680510616,-0.7410406071965686,-3.7230493355159306,3.1393680255053016,-0.7410406071965686,-3.7230493355159306,3.139368025505301,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,295,296,118.0,0.19846317241129652,,,,-0.10669905932169507,,3.431208680510616,,-0.10669905932169507,,-3.431208680510616,0.19846317241129652,-3.537907739832311,3.324509621188921,0.1984631724112965,-3.537907739832311,3.3245096211889207,-2.7755575615628914e-17,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,296,297,118.4,0.9633039295884667,,,,-0.45848072752508956,,3.431208680510616,,-0.45848072752508956,,-3.431208680510616,0.9633039295884667,-3.889689408035706,2.9727279529855264,0.9633039295884667,-3.8896894080357063,2.9727279529855264,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,297,298,118.80000000000001,1.723559019249657,,,,-1.5120149201433144,,3.431208680510616,,-1.5120149201433144,,-3.431208680510616,1.723559019249657,-4.943223600653931,1.9191937603673017,1.7235590192496568,-4.943223600653931,1.9191937603673017,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,298,299,119.2,2.3753785482654797,,,,-2.463814485711055,,3.431208680510616,,-2.463814485711055,,-3.431208680510616,2.3753785482654797,-5.895023166221671,0.967394194799561,2.3753785482654797,-5.895023166221671,0.9673941947995611,0.0,0.0,1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,299,300,119.60000000000001,2.6309499617030334,,,,-2.566283546681937,,3.431208680510616,,-2.566283546681937,,-3.431208680510616,2.6309499617030334,-5.997492227192553,0.8649251338286792,2.6309499617030334,-5.997492227192553,0.8649251338286793,0.0,0.0,1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,300,301,120.0,2.3527906795018407,,,,-1.590435837596305,,3.431208680510616,,-1.590435837596305,,-3.431208680510616,2.3527906795018407,-5.021644518106921,1.840772842914311,2.3527906795018407,-5.021644518106921,1.840772842914311,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,301,302,120.4,1.6320677123624097,,,,-0.20663292260549979,,3.431208680510616,,-0.20663292260549979,,-3.431208680510616,1.6320677123624097,-3.637841603116116,3.224575757905116,1.6320677123624094,-3.637841603116116,3.224575757905116,-2.220446049250313e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,302,303,120.80000000000001,0.6179479822256679,,,,0.29780564692098066,,3.431208680510616,,0.29780564692098066,,-3.431208680510616,0.6179479822256679,-3.1334030335896355,3.7290143274315968,0.6179479822256679,-3.133403033589636,3.7290143274315968,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,303,304,121.2,-0.2947991197859374,,,,0.09528732032142256,,3.431208680510616,,0.09528732032142256,,-3.431208680510616,-0.2947991197859374,-3.3359213601891935,3.5264960008320387,-0.2947991197859374,-3.3359213601891935,3.526496000832039,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,304,305,121.60000000000001,-1.0493226495248673,,,,0.5576527526377357,,3.431208680510616,,0.5576527526377357,,-3.431208680510616,-1.0493226495248673,-2.8735559278728804,3.988861433148352,-1.0493226495248673,-2.8735559278728804,3.988861433148352,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,305,306,122.0,-1.8081095707842334,,,,1.6526447047907038,,3.431208680510616,,1.6526447047907038,,-3.431208680510616,-1.8081095707842334,-1.7785639757199123,5.08385338530132,-1.8081095707842334,-1.7785639757199125,5.08385338530132,0.0,-2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,306,307,122.4,-2.4273344026454793,,,,2.5303124226412415,,3.431208680510616,,2.5303124226412415,,-3.431208680510616,-2.4273344026454793,-0.9008962578693747,5.961521103151858,-2.4273344026454793,-0.9008962578693747,5.961521103151858,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,307,308,122.80000000000001,-2.620564846960641,,,,2.501550291254928,,3.431208680510616,,2.501550291254928,,-3.431208680510616,-2.620564846960641,-0.929658389255688,5.932758971765544,-2.620564846960641,-0.929658389255688,5.932758971765544,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,308,309,123.2,-2.2846450572757235,,,,1.4250811766830631,,3.431208680510616,,1.4250811766830631,,-3.431208680510616,-2.2846450572757235,-2.0061275038275532,4.856289857193679,-2.2846450572757235,-2.0061275038275532,4.856289857193679,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,309,310,123.60000000000001,-1.5167420565435976,,,,0.09111456640553234,,3.431208680510616,,0.09111456640553234,,-3.431208680510616,-1.5167420565435976,-3.3400941141050837,3.5223232469161485,-1.5167420565435976,-3.340094114105084,3.5223232469161485,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,310,311,124.0,-0.4967200603285209,,,,-0.2709954594180458,,3.431208680510616,,-0.2709954594180458,,-3.431208680510616,-0.4967200603285209,-3.702204139928662,3.16021322109257,-0.4967200603285209,-3.702204139928662,3.1602132210925706,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,311,312,124.4,0.3892791219486585,,,,-0.10024383580908028,,3.431208680510616,,-0.10024383580908028,,-3.431208680510616,0.3892791219486585,-3.5314525163196966,3.3309648447015356,0.3892791219486585,-3.531452516319697,3.330964844701536,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,312,313,124.80000000000001,1.1411110355174645,,,,-0.6706209910585451,,3.431208680510616,,-0.6706209910585451,,-3.431208680510616,1.1411110355174645,-4.101829671569162,2.760587689452071,1.1411110355174645,-4.101829671569162,2.760587689452071,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,313,314,125.2,1.8989378109610793,,,,-1.7860211932449799,,3.431208680510616,,-1.7860211932449799,,-3.431208680510616,1.8989378109610793,-5.2172298737555955,1.6451874872656362,1.8989378109610793,-5.2172298737555955,1.6451874872656362,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,314,315,125.60000000000001,2.4834866603378454,,,,-2.5915326053665146,,3.431208680510616,,-2.5915326053665146,,-3.431208680510616,2.4834866603378454,-6.022741285877131,0.8396760751441015,2.4834866603378454,-6.022741285877131,0.8396760751441015,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,315,316,126.0,2.614087270389469,,,,-2.4359894274549343,,3.431208680510616,,-2.4359894274549343,,-3.431208680510616,2.614087270389469,-5.86719810796555,0.9952192530556818,2.614087270389469,-5.86719810796555,0.9952192530556817,0.0,0.0,-1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,316,317,126.4,2.225337083335749,,,,-1.2629763554184126,,3.431208680510616,,-1.2629763554184126,,-3.431208680510616,2.225337083335749,-4.694185035929029,2.1682323250922035,2.225337083335749,-4.694185035929029,2.1682323250922035,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,317,318,126.80000000000001,1.4094769191976066,,,,0.03206388686551296,,3.431208680510616,,0.03206388686551296,,-3.431208680510616,1.4094769191976066,-3.399144793645103,3.463272567376129,1.4094769191976066,-3.3991447936451027,3.463272567376129,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,318,319,127.2,0.3813552105805132,,,,0.2576642048977958,,3.431208680510616,,0.2576642048977958,,-3.431208680510616,0.3813552105805132,-3.1735444756128204,3.688872885408412,0.3813552105805132,-3.1735444756128204,3.688872885408412,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,319,320,127.60000000000001,-0.48073008051174093,,,,0.11693637393101684,,3.431208680510616,,0.11693637393101684,,-3.431208680510616,-0.48073008051174093,-3.3142723065795994,3.548145054441633,-0.480730080511741,-3.3142723065795994,3.548145054441633,-5.551115123125783e-17,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,320,321,128.0,-1.2295691252232612,,,,0.784636680841779,,3.431208680510616,,0.784636680841779,,-3.431208680510616,-1.2295691252232612,-2.6465719996688373,4.215845361352395,-1.2295691252232612,-2.6465719996688373,4.215845361352395,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,321,322,128.4,-1.9819249565088701,,,,1.913976207423685,,3.431208680510616,,1.913976207423685,,-3.431208680510616,-1.9819249565088701,-1.517232473086931,5.345184887934301,-1.9819249565088701,-1.517232473086931,5.345184887934301,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,322,323,128.8,-2.527798022432011,,,,2.6298935323194157,,3.431208680510616,,2.6298935323194157,,-3.431208680510616,-2.527798022432011,-0.8013151481912004,6.061102212830032,-2.527798022432011,-0.8013151481912004,6.061102212830032,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,323,324,129.20000000000002,-2.593343325590138,,,,2.3366796198592947,,3.431208680510616,,2.3366796198592947,,-3.431208680510616,-2.593343325590138,-1.0945290606513214,5.767888300369911,-2.593343325590138,-1.0945290606513214,5.767888300369911,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,324,325,129.6,-2.1496095281511685,,,,1.0838875974987325,,3.431208680510616,,1.0838875974987325,,-3.431208680510616,-2.1496095281511685,-2.3473210830118836,4.515096278009349,-2.1496095281511685,-2.3473210830118836,4.515096278009349,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,325,326,130.0,-1.2888991436671668,,,,-0.11956718200408249,,3.431208680510616,,-0.11956718200408249,,-3.431208680510616,-1.2888991436671668,-3.5507758625146986,3.3116414985065337,-1.2888991436671668,-3.550775862514698,3.3116414985065337,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,326,327,130.4,-0.26684878669154527,,,,-0.21394803060866288,,3.431208680510616,,-0.21394803060866288,,-3.431208680510616,-0.26684878669154527,-3.645156711119279,3.217260649901953,-0.26684878669154527,-3.6451567111192786,3.217260649901953,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,327,328,130.8,0.569076959802185,,,,-0.13986551054282964,,3.431208680510616,,-0.13986551054282964,,-3.431208680510616,0.569076959802185,-3.571074191053446,3.2913431699677864,0.569076959802185,-3.571074191053446,3.2913431699677864,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,328,329,131.20000000000002,1.3189390093555213,,,,-0.9082179765990124,,3.431208680510616,,-0.9082179765990124,,-3.431208680510616,1.3189390093555213,-4.3394266571096285,2.5229907039116037,1.3189390093555213,-4.3394266571096285,2.5229907039116037,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,329,330,131.6,2.063895524086837,,,,-2.035099950870998,,3.431208680510616,,-2.035099950870998,,-3.431208680510616,2.063895524086837,-5.466308631381614,1.396108729639618,2.063895524086837,-5.466308631381614,1.396108729639618,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,330,331,132.0,2.5660262558360283,,,,-2.656762334469812,,3.431208680510616,,-2.656762334469812,,-3.431208680510616,2.5660262558360283,-6.087971014980428,0.7744463460408042,2.5660262558360283,-6.087971014980428,0.7744463460408042,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,331,332,132.4,2.567551833187668,,,,-2.242438989671109,,3.431208680510616,,-2.242438989671109,,-3.431208680510616,2.567551833187668,-5.673647670181725,1.1887696908395071,2.567551833187668,-5.673647670181725,1.1887696908395071,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,332,333,132.8,2.075146879054215,,,,-0.9307981657511338,,3.431208680510616,,-0.9307981657511338,,-3.431208680510616,2.075146879054215,-4.36200684626175,2.500410514759482,2.075146879054215,-4.36200684626175,2.500410514759482,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,333,334,133.20000000000002,1.1766394720870086,,,,0.1887958002767746,,3.431208680510616,,0.1887958002767746,,-3.431208680510616,1.1766394720870086,-3.2424128802338417,3.6200044807873906,1.1766394720870086,-3.242412880233841,3.6200044807873906,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,334,335,133.6,0.16237679122323614,,,,0.189061012525807,,3.431208680510616,,0.189061012525807,,-3.431208680510616,0.16237679122323614,-3.242147667984809,3.6202696930364233,0.16237679122323614,-3.2421476679848094,3.6202696930364238,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,335,336,134.0,-0.6551259826065278,,,,0.1877142458467365,,3.431208680510616,,0.1877142458467365,,-3.431208680510616,-0.6551259826065278,-3.2434944346638797,3.6189229263573526,-0.6551259826065278,-3.243494434663879,3.6189229263573526,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,336,337,134.4,-1.4076898713854367,,,,1.0308048025452932,,3.431208680510616,,1.0308048025452932,,-3.431208680510616,-1.4076898713854367,-2.400403877965323,4.462013483055909,-1.4076898713854367,-2.400403877965323,4.462013483055909,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,337,338,134.8,-2.140490163092727,,,,2.1417440494453333,,3.431208680510616,,2.1417440494453333,,-3.431208680510616,-2.140490163092727,-1.2894646310652829,5.572952729955949,-2.140490163092727,-1.2894646310652829,5.572952729955949,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,338,339,135.20000000000002,-2.5964894070797335,,,,2.6624634843489834,,3.431208680510616,,2.6624634843489834,,-3.431208680510616,-2.5964894070797335,-0.7687451961616327,6.0936721648595995,-2.5964894070797335,-0.7687451961616327,6.0936721648595995,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,339,340,135.6,-2.53532876241357,,,,2.1171505613372963,,3.431208680510616,,2.1171505613372963,,-3.431208680510616,-2.53532876241357,-1.3140581191733198,5.548359241847912,-2.53532876241357,-1.3140581191733198,5.548359241847912,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,340,341,136.0,-1.9912042940701624,,,,0.7548878441822288,,3.431208680510616,,0.7548878441822288,,-3.431208680510616,-1.9912042940701624,-2.6763208363283875,4.186096524692845,-1.9912042940701624,-2.6763208363283875,4.186096524692845,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,341,342,136.4,-1.0566254852996169,,,,-0.24320054583776204,,3.431208680510616,,-0.24320054583776204,,-3.431208680510616,-1.0566254852996169,-3.674409226348378,3.188008134672854,-1.0566254852996169,-3.674409226348378,3.1880081346728537,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,342,343,136.8,-0.058627306868773835,,,,-0.15203543381415924,,3.431208680510616,,-0.15203543381415924,,-3.431208680510616,-0.058627306868773835,-3.5832441143247755,3.2791732466964567,-0.058627306868773835,-3.583244114324775,3.2791732466964567,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,343,344,137.20000000000002,0.7378655770331293,,,,-0.23954238285283025,,3.431208680510616,,-0.23954238285283025,,-3.431208680510616,0.7378655770331293,-3.670751063363446,3.191666297657786,0.7378655770331293,-3.670751063363446,3.1916662976577856,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,344,345,137.6,1.492398042233119,,,,-1.1601620008879412,,3.431208680510616,,-1.1601620008879412,,-3.431208680510616,1.492398042233119,-4.5913706813985575,2.2710466796226747,1.492398042233119,-4.5913706813985575,2.2710466796226747,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,345,346,138.0,2.2082297934881288,,,,-2.243364187625971,,3.431208680510616,,-2.243364187625971,,-3.431208680510616,2.2082297934881288,-5.674572868136587,1.1878444928846452,2.2082297934881288,-5.674572868136587,1.1878444928846452,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,346,347,138.4,2.612702529224075,,,,-2.652230280377276,,3.431208680510616,,-2.652230280377276,,-3.431208680510616,2.612702529224075,-6.083438960887892,0.7789784001333402,2.612702529224075,-6.083438960887892,0.7789784001333402,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,347,348,138.8,2.4887800940694293,,,,-1.988786158101388,,3.431208680510616,,-1.988786158101388,,-3.431208680510616,2.4887800940694293,-5.419994838612004,1.4424225224092282,2.4887800940694293,-5.419994838612004,1.4424225224092282,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,348,349,139.20000000000002,1.897944764888705,,,,-0.6091060603917526,,3.431208680510616,,-0.6091060603917526,,-3.431208680510616,1.897944764888705,-4.040314740902369,2.8221026201188635,1.897944764888705,-4.040314740902369,2.8221026201188635,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,349,350,139.6,0.9380270531433363,,,,0.2671576463447912,,3.431208680510616,,0.2671576463447912,,-3.431208680510616,0.9380270531433363,-3.164051034165825,3.6983663268554072,0.9380270531433363,-3.1640510341658254,3.6983663268554072,0.0,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,350,351,140.0,-0.03965618945608419,,,,0.12846564671788696,,3.431208680510616,,0.12846564671788696,,-3.431208680510616,-0.03965618945608419,-3.302743033792729,3.559674327228503,-0.03965618945608419,-3.3027430337927295,3.5596743272285036,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,351,352,140.4,-0.8225545893643031,,,,0.3144662134170293,,3.431208680510616,,0.3144662134170293,,-3.431208680510616,-0.8225545893643031,-3.116742467093587,3.7456748939276454,-0.8225545893643031,-3.116742467093587,3.7456748939276454,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,352,353,140.8,-1.58102267561313,,,,1.2909813682545315,,3.431208680510616,,1.2909813682545315,,-3.431208680510616,-1.58102267561313,-2.1402273122560844,4.722190048765148,-1.58102267561313,-2.1402273122560844,4.722190048765148,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,353,354,141.20000000000002,-2.276420614717272,,,,2.332444140658329,,3.431208680510616,,2.332444140658329,,-3.431208680510616,-2.276420614717272,-1.098764539852287,5.763652821168945,-2.276420614717272,-1.098764539852287,5.763652821168945,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,354,355,141.6,-2.6274432649849735,,,,2.6320714090257353,,3.431208680510616,,2.6320714090257353,,-3.431208680510616,-2.6274432649849735,-0.7991372714848808,6.0632800895363514,-2.6274432649849735,-0.7991372714848809,6.0632800895363514,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,355,356,142.0,-2.444593895029812,,,,1.8495099911957595,,3.431208680510616,,1.8495099911957595,,-3.431208680510616,-2.444593895029812,-1.5816986893148566,5.280718671706376,-2.444593895029812,-1.5816986893148566,5.280718671706376,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,356,357,142.4,-1.804784957672666,,,,0.4472988797395352,,3.431208680510616,,0.4472988797395352,,-3.431208680510616,-1.804784957672666,-2.983909800771081,3.878507560250151,-1.804784957672666,-2.983909800771081,3.8785075602501506,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,357,358,142.8,-0.818641479017366,,,,-0.2981826076147834,,3.431208680510616,,-0.2981826076147834,,-3.431208680510616,-0.818641479017366,-3.7293912881253997,3.1330260728958326,-0.8186414790173661,-3.7293912881253997,3.133026072895832,-1.1102230246251565e-16,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,358,359,143.20000000000002,0.1369020054155811,,,,-0.10967272502094959,,3.431208680510616,,-0.10967272502094959,,-3.431208680510616,0.1369020054155811,-3.540881405531566,3.3215359554896664,0.1369020054155811,-3.540881405531566,3.3215359554896664,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,359,360,143.6,0.9057365168632479,,,,-0.39380365081214114,,3.431208680510616,,-0.39380365081214114,,-3.431208680510616,0.9057365168632479,-3.8250123313227573,3.037405029698475,0.9057365168632479,-3.8250123313227573,3.037405029698475,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,360,361,144.0,1.6645575371740127,,,,-1.4269512123058332,,3.431208680510616,,-1.4269512123058332,,-3.431208680510616,1.6645575371740127,-4.858159892816449,2.004257468204783,1.6645575371740127,-4.858159892816449,2.004257468204783,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,361,362,144.4,2.3346101131314847,,,,-2.4156434459690304,,3.431208680510616,,-2.4156434459690304,,-3.431208680510616,2.3346101131314847,-5.8468521264796465,1.0155652345415858,2.3346101131314847,-5.8468521264796465,1.0155652345415858,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,362,363,144.8,2.627621574607913,,,,-2.5890662227980155,,3.431208680510616,,-2.5890662227980155,,-3.431208680510616,2.627621574607913,-6.020274903308632,0.8421424577126007,2.627621574607913,-6.020274903308632,0.8421424577126007,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,363,364,145.20000000000002,2.3843602295239372,,,,-1.6904758162288902,,3.431208680510616,,-1.6904758162288902,,-3.431208680510616,2.3843602295239372,-5.1216844967395065,1.740732864281726,2.3843602295239372,-5.1216844967395065,1.7407328642817261,0.0,0.0,2.220446049250313e-16 +karman,karman_re200,sr_closed_loop_400,364,365,145.6,1.6965117671197008,,,,-0.30620718122098384,,3.431208680510616,,-0.30620718122098384,,-3.431208680510616,1.6965117671197008,-3.7374158617316,3.1250014992896324,1.696511767119701,-3.7374158617316002,3.1250014992896324,2.220446049250313e-16,-4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,365,366,146.0,0.694518112538365,,,,0.28987698819244406,,3.431208680510616,,0.28987698819244406,,-3.431208680510616,0.694518112538365,-3.141331692318172,3.72108566870306,0.694518112538365,-3.141331692318172,3.72108566870306,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,366,367,146.4,-0.2332296972011993,,,,0.0968167820055671,,3.431208680510616,,0.0968167820055671,,-3.431208680510616,-0.2332296972011993,-3.334391898505049,3.528025462516183,-0.23322969720119927,-3.334391898505049,3.5280254625161827,2.7755575615628914e-17,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,367,368,146.8,-0.9938214261953388,,,,0.4914069348145518,,3.431208680510616,,0.4914069348145518,,-3.431208680510616,-0.9938214261953388,-2.939801745696064,3.922615615325168,-0.9938214261953389,-2.939801745696064,3.922615615325168,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,368,369,147.20000000000002,-1.7543785233404015,,,,1.564540952068791,,3.431208680510616,,1.564540952068791,,-3.431208680510616,-1.7543785233404015,-1.8666677284418252,4.9957496325794075,-1.7543785233404015,-1.8666677284418252,4.9957496325794075,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,369,370,147.6,-2.394882584068248,,,,2.4913233293625607,,3.431208680510616,,2.4913233293625607,,-3.431208680510616,-2.394882584068248,-0.9398853511480554,5.922532009873176,-2.394882584068248,-0.9398853511480554,5.922532009873176,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,370,371,148.0,-2.628074186235463,,,,2.5477267582790577,,3.431208680510616,,2.5477267582790577,,-3.431208680510616,-2.628074186235463,-0.8834819222315584,5.978935438789674,-2.628074186235463,-0.8834819222315585,5.978935438789674,0.0,-1.1102230246251565e-16,0.0 +karman,karman_re200,sr_closed_loop_400,371,372,148.4,-2.3297594786702125,,,,1.5391245752087332,,3.431208680510616,,1.5391245752087332,,-3.431208680510616,-2.3297594786702125,-1.8920841053018829,4.97033325571935,-2.3297594786702125,-1.8920841053018829,4.97033325571935,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,372,373,148.8,-1.5937378034014873,,,,0.16638886688779833,,3.431208680510616,,0.16638886688779833,,-3.431208680510616,-1.5937378034014873,-3.2648198136228177,3.5975975473984145,-1.5937378034014873,-3.2648198136228177,3.5975975473984145,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,373,374,149.20000000000002,-0.5760471633265227,,,,-0.29356894975331455,,3.431208680510616,,-0.29356894975331455,,-3.431208680510616,-0.5760471633265227,-3.724777630263931,3.1376397307573014,-0.5760471633265227,-3.7247776302639304,3.1376397307573014,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,374,375,149.6,0.3284080417205929,,,,-0.09924814803142697,,3.431208680510616,,-0.09924814803142697,,-3.431208680510616,0.3284080417205929,-3.530456828542043,3.331960532479189,0.3284080417205929,-3.530456828542043,3.3319605324791888,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,375,376,150.0,1.0819695164520915,,,,-0.5958119538558676,,3.431208680510616,,-0.5958119538558676,,-3.431208680510616,1.0819695164520915,-4.027020634366484,2.8353967266547486,1.0819695164520915,-4.027020634366484,2.8353967266547486,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,376,377,150.4,1.8408958975037015,,,,-1.6990002129198056,,3.431208680510616,,-1.6990002129198056,,-3.431208680510616,1.8408958975037015,-5.130208893430422,1.7322084675908105,1.8408958975037015,-5.130208893430422,1.7322084675908105,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,377,378,150.8,2.44892469655648,,,,-2.55416964987883,,3.431208680510616,,-2.55416964987883,,-3.431208680510616,2.44892469655648,-5.985378330389446,0.8770390306317859,2.44892469655648,-5.985378330389446,0.8770390306317859,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,378,379,151.20000000000002,2.620179545439758,,,,-2.476877787557197,,3.431208680510616,,-2.476877787557197,,-3.431208680510616,2.620179545439758,-5.908086468067813,0.9543308929534193,2.620179545439758,-5.908086468067813,0.9543308929534193,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,379,380,151.6,2.2643296150090078,,,,-1.3616726122886786,,3.431208680510616,,-1.3616726122886786,,-3.431208680510616,2.2643296150090078,-4.7928812927992945,2.0695360682219377,2.2643296150090078,-4.7928812927992945,2.0695360682219377,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,380,381,152.0,1.4780086421411238,,,,-0.039564125807151046,,3.431208680510616,,-0.039564125807151046,,-3.431208680510616,1.4780086421411238,-3.470772806317767,3.3916445547034653,1.4780086421411238,-3.470772806317767,3.391644554703465,0.0,0.0,-4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,381,382,152.4,0.4538502600521292,,,,0.26581483805749734,,3.431208680510616,,0.26581483805749734,,-3.431208680510616,0.4538502600521292,-3.1653938424531187,3.6970235185681135,0.4538502600521292,-3.1653938424531187,3.6970235185681135,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,382,383,152.8,-0.4221880587338006,,,,0.1020653050096681,,3.431208680510616,,0.1020653050096681,,-3.431208680510616,-0.4221880587338006,-3.329143375500948,3.5332739855202844,-0.4221880587338006,-3.329143375500948,3.533273985520285,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,383,384,153.20000000000002,-1.171849465561524,,,,0.7096869684851944,,3.431208680510616,,0.7096869684851944,,-3.431208680510616,-1.171849465561524,-2.721521712025422,4.14089564899581,-1.171849465561524,-2.721521712025422,4.14089564899581,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,384,385,153.60000000000002,-1.9277138583570659,,,,1.8346880976799431,,3.431208680510616,,1.8346880976799431,,-3.431208680510616,-1.9277138583570659,-1.596520582830673,5.265896778190559,-1.9277138583570659,-1.5965205828306732,5.265896778190559,0.0,-2.220446049250313e-16,0.0 +karman,karman_re200,sr_closed_loop_400,385,386,154.0,-2.498410234501947,,,,2.6050340707331583,,3.431208680510616,,2.6050340707331583,,-3.431208680510616,-2.498410234501947,-0.8261746097774578,6.036242751243774,-2.498410234501947,-0.8261746097774578,6.036242751243774,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,386,387,154.4,-2.6052494889039064,,,,2.403605519838867,,3.431208680510616,,2.403605519838867,,-3.431208680510616,-2.6052494889039064,-1.0276031606717493,5.8348142003494825,-2.6052494889039064,-1.0276031606717493,5.8348142003494825,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,387,388,154.8,-2.1971770388552647,,,,1.2004345265772667,,3.431208680510616,,1.2004345265772667,,-3.431208680510616,-2.1971770388552647,-2.2307741539333494,4.631643207087883,-2.1971770388552647,-2.2307741539333494,4.631643207087883,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,388,389,155.20000000000002,-1.3662229828952528,,,,-0.05724565288988822,,3.431208680510616,,-0.05724565288988822,,-3.431208680510616,-1.3662229828952528,-3.4884543334005045,3.3739630276207278,-1.3662229828952528,-3.488454333400504,3.3739630276207278,0.0,4.440892098500626e-16,0.0 +karman,karman_re200,sr_closed_loop_400,389,390,155.60000000000002,-0.3406702359828031,,,,-0.2406333765247972,,3.431208680510616,,-0.2406333765247972,,-3.431208680510616,-0.3406702359828031,-3.671842057035413,3.190575303985819,-0.3406702359828031,-3.671842057035413,3.1905753039858196,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,390,391,156.0,0.5126065885961355,,,,-0.1272059646579017,,3.431208680510616,,-0.1272059646579017,,-3.431208680510616,0.5126065885961355,-3.5584146451685177,3.3040027158527145,0.5126065885961355,-3.5584146451685177,3.304002715852715,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,391,392,156.4,1.2628757288753987,,,,-0.8286783567316187,,3.431208680510616,,-0.8286783567316187,,-3.431208680510616,1.2628757288753987,-4.259887037242235,2.602530323778997,1.2628757288753987,-4.259887037242235,2.602530323778997,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,392,393,156.8,2.0130739959635227,,,,-1.9573680980788115,,3.431208680510616,,-1.9573680980788115,,-3.431208680510616,2.0130739959635227,-5.388576778589428,1.4738405824318046,2.0130739959635227,-5.388576778589428,1.4738405824318046,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,393,394,157.20000000000002,2.5438755475672745,,,,-2.6410260524536002,,3.431208680510616,,-2.6410260524536002,,-3.431208680510616,2.5438755475672745,-6.072234732964216,0.7901826280570159,2.5438755475672745,-6.072234732964216,0.790182628057016,0.0,0.0,1.1102230246251565e-16 +karman,karman_re200,sr_closed_loop_400,394,395,157.60000000000002,2.5871907556026104,,,,-2.3074625779103477,,3.431208680510616,,-2.3074625779103477,,-3.431208680510616,2.5871907556026104,-5.738671258420964,1.1237461026002684,2.5871907556026104,-5.738671258420964,1.1237461026002684,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,395,396,158.0,2.1259803507254804,,,,-1.0267785091251371,,3.431208680510616,,-1.0267785091251371,,-3.431208680510616,2.1259803507254804,-4.4579871896357535,2.4044301713854788,2.1259803507254804,-4.4579871896357535,2.4044301713854788,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,396,397,158.4,1.250082701626522,,,,0.15245410986745384,,3.431208680510616,,0.15245410986745384,,-3.431208680510616,1.250082701626522,-3.2787545706431622,3.58366279037807,1.250082701626522,-3.2787545706431622,3.58366279037807,0.0,0.0,0.0 +karman,karman_re200,sr_closed_loop_400,397,398,158.8,0.22988505977689658,,,,0.20737953619290223,,3.431208680510616,,0.20737953619290223,,-3.431208680510616,0.22988505977689658,-3.223829144317714,3.638588216703518,0.22988505977689658,-3.223829144317714,3.6385882167035186,0.0,0.0,4.440892098500626e-16 +karman,karman_re200,sr_closed_loop_400,398,399,159.20000000000002,-0.5997432623605711,,,,0.15506208106488523,,3.431208680510616,,0.15506208106488523,,-3.431208680510616,-0.5997432623605711,-3.276146599445731,3.586270761575501,-0.5997432623605711,-3.276146599445731,3.5862707615755007,0.0,0.0,-4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,0,1,0.0,-3.242596456990143,,,,1.939524124687396,,3.431208680510616,,1.939524124687396,,-3.431208680510616,-3.242596456990143,-1.4916845558232201,5.370732805198012,-3.2425964569901424,-1.4916845558232201,5.370732805198012,4.440892098500626e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,1,2,0.4,-3.319252190129789,,,,2.5220468438741808,,3.431208680510616,,2.5220468438741808,,-3.431208680510616,-3.319252190129789,-0.9091618366364353,5.953255524384797,-3.3192521901297884,-0.9091618366364352,5.953255524384797,4.440892098500626e-16,1.1102230246251565e-16,0.0 +karman,karman_re400,sr_closed_loop_400,2,3,0.8,-3.3857310436195687,,,,3.427775448783222,,3.431208680510616,,3.427775448783222,,-3.431208680510616,-3.3857310436195687,-0.0034332317273939594,6.858984129293838,-3.3857310436195687,-0.003433231727393959,6.858984129293838,0.0,4.336808689942018e-19,0.0 +karman,karman_re400,sr_closed_loop_400,3,4,1.2000000000000002,-3.0977747665129987,,,,2.5076197238151616,,3.431208680510616,,2.5076197238151616,,-3.431208680510616,-3.0977747665129987,-0.9235889566954545,5.938828404325777,-3.0977747665129987,-0.9235889566954545,5.938828404325777,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,4,5,1.6,-2.2801198289963533,,,,0.037289572993979704,,3.431208680510616,,0.037289572993979704,,-3.431208680510616,-2.2801198289963533,-3.3939191075166364,3.468498253504596,-2.2801198289963533,-3.3939191075166364,3.4684982535045963,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,5,6,2.0,-0.8924545367451936,,,,-1.8248237853726474,,3.431208680510616,,-1.8248237853726474,,-3.431208680510616,-0.8924545367451936,-5.256032465883264,1.6063848951379687,-0.8924545367451936,-5.256032465883264,1.6063848951379684,0.0,0.0,-2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,6,7,2.4000000000000004,0.6516810682192251,,,,-1.5442045620706535,,3.431208680510616,,-1.5442045620706535,,-3.431208680510616,0.6516810682192251,-4.975413242581269,1.8870041184399626,0.6516810682192251,-4.975413242581269,1.8870041184399629,0.0,0.0,2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,7,8,2.8000000000000003,1.5125171041556462,,,,-0.6420237419143114,,3.431208680510616,,-0.6420237419143114,,-3.431208680510616,1.5125171041556462,-4.073232422424928,2.789184938596305,1.5125171041556462,-4.073232422424928,2.789184938596305,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,8,9,3.2,2.0152704543915094,,,,-2.3947563827764324,,3.431208680510616,,-2.3947563827764324,,-3.431208680510616,2.0152704543915094,-5.8259650632870486,1.0364522977341837,2.0152704543915094,-5.8259650632870486,1.0364522977341837,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,9,10,3.6,2.730890818167731,,,,-4.30580840439807,,3.431208680510616,,-4.30580840439807,,-3.431208680510616,2.730890818167731,-7.737017084908686,-0.8745997238874543,2.730890818167731,-7.737017084908686,-0.8745997238874543,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,10,11,4.0,3.118209688659029,,,,-2.4858021340633867,,3.431208680510616,,-2.4858021340633867,,-3.431208680510616,3.118209688659029,-5.917010814574002,0.9454065464472294,3.118209688659029,-5.917010814574002,0.9454065464472294,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,11,12,4.4,2.4199457420447485,,,,1.001416484029089,,3.431208680510616,,1.001416484029089,,-3.431208680510616,2.4199457420447485,-2.429792196481527,4.432625164539705,2.4199457420447485,-2.429792196481527,4.432625164539705,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,12,13,4.800000000000001,0.8935415550080436,,,,2.939215815622749,,3.431208680510616,,2.939215815622749,,-3.431208680510616,0.8935415550080436,-0.4919928648878673,6.370424496133365,0.8935415550080437,-0.49199286488786736,6.370424496133365,1.1102230246251565e-16,-5.551115123125783e-17,0.0 +karman,karman_re400,sr_closed_loop_400,13,14,5.2,-0.7962248825073346,,,,1.344507350841113,,3.431208680510616,,1.344507350841113,,-3.431208680510616,-0.7962248825073346,-2.086701329669503,4.775716031351729,-0.7962248825073346,-2.086701329669503,4.775716031351729,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,14,15,5.6000000000000005,-1.3282271824783087,,,,-0.3154558113611801,,3.431208680510616,,-0.3154558113611801,,-3.431208680510616,-1.3282271824783087,-3.746664491871796,3.115752869149436,-1.3282271824783087,-3.746664491871796,3.115752869149436,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,15,16,6.0,-1.4188788446246694,,,,2.0633339414468095,,3.431208680510616,,2.0633339414468095,,-3.431208680510616,-1.4188788446246694,-1.3678747390638066,5.494542621957425,-1.4188788446246694,-1.3678747390638066,5.494542621957425,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,16,17,6.4,-1.862358497571183,,,,4.908328576287121,,3.431208680510616,,4.908328576287121,,-3.431208680510616,-1.862358497571183,1.477119895776505,8.339537256797737,-1.8623584975711833,1.477119895776505,8.339537256797737,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,17,18,6.800000000000001,-2.5110545001991165,,,,4.119982173455983,,3.431208680510616,,4.119982173455983,,-3.431208680510616,-2.5110545001991165,0.688773492945367,7.551190853966599,-2.5110545001991165,0.688773492945367,7.5511908539666,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,18,19,7.2,-2.2653437953892803,,,,-0.07734819328153106,,3.431208680510616,,-0.07734819328153106,,-3.431208680510616,-2.2653437953892803,-3.508556873792147,3.353860487229085,-2.2653437953892803,-3.508556873792147,3.353860487229085,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,19,20,7.6000000000000005,-0.8382684356844536,,,,-2.226694029642156,,3.431208680510616,,-2.226694029642156,,-3.431208680510616,-0.8382684356844536,-5.657902710152772,1.20451465086846,-0.8382684356844536,-5.657902710152772,1.20451465086846,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,20,21,8.0,0.7666553883691336,,,,-1.733484199619199,,3.431208680510616,,-1.733484199619199,,-3.431208680510616,0.7666553883691336,-5.164692880129815,1.6977244808914171,0.7666553883691336,-5.164692880129815,1.6977244808914171,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,21,22,8.4,1.5877357043582176,,,,-0.40176610811661645,,3.431208680510616,,-0.40176610811661645,,-3.431208680510616,1.5877357043582176,-3.8329747886272325,3.0294425723939997,1.5877357043582176,-3.8329747886272325,3.0294425723939997,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,22,23,8.8,1.7966181904628697,,,,-1.235576672032439,,3.431208680510616,,-1.235576672032439,,-3.431208680510616,1.7966181904628697,-4.666785352543055,2.195632008478177,1.79661819046287,-4.666785352543055,2.195632008478177,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,23,24,9.200000000000001,2.3450411372738067,,,,-3.878024319994271,,3.431208680510616,,-3.878024319994271,,-3.431208680510616,2.3450411372738067,-7.309233000504888,-0.4468156394836549,2.3450411372738067,-7.309233000504888,-0.4468156394836549,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,24,25,9.600000000000001,3.032991275234948,,,,-3.427585522100864,,3.431208680510616,,-3.427585522100864,,-3.431208680510616,3.032991275234948,-6.85879420261148,0.0036231584097521363,3.032991275234948,-6.85879420261148,0.0036231584097521368,0.0,0.0,4.336808689942018e-19 +karman,karman_re400,sr_closed_loop_400,25,26,10.0,2.582919361017051,,,,-0.06053477196457052,,3.431208680510616,,-0.06053477196457052,,-3.431208680510616,2.582919361017051,-3.4917434524751867,3.3706739085460455,2.582919361017051,-3.491743452475187,3.3706739085460455,0.0,-4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,26,27,10.4,1.3123222393909446,,,,1.5388372873132543,,3.431208680510616,,1.5388372873132543,,-3.431208680510616,1.3123222393909446,-1.8923713931973618,4.970045967823871,1.3123222393909446,-1.8923713931973618,4.970045967823871,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,27,28,10.8,-0.030772395896038716,,,,1.8197944963746353,,3.431208680510616,,1.8197944963746353,,-3.431208680510616,-0.030772395896038716,-1.6114141841359808,5.251003176885251,-0.030772395896038716,-1.6114141841359806,5.251003176885251,0.0,2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,28,29,11.200000000000001,-1.1343605333356834,,,,0.8869148255323582,,3.431208680510616,,0.8869148255323582,,-3.431208680510616,-1.1343605333356834,-2.5442938549782577,4.318123506042975,-1.1343605333356834,-2.5442938549782577,4.318123506042975,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,29,30,11.600000000000001,-1.613126577306559,,,,1.3936249029552588,,3.431208680510616,,1.3936249029552588,,-3.431208680510616,-1.613126577306559,-2.0375837775553576,4.824833583465875,-1.6131265773065588,-2.0375837775553576,4.824833583465875,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,30,31,12.0,-2.1341678970447227,,,,3.451726154965074,,3.431208680510616,,3.451726154965074,,-3.431208680510616,-2.1341678970447227,0.02051747445445784,6.88293483547569,-2.1341678970447227,0.02051747445445784,6.88293483547569,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,31,32,12.4,-2.6635041662340737,,,,3.860894189273723,,3.431208680510616,,3.860894189273723,,-3.431208680510616,-2.6635041662340737,0.42968550876310685,7.292102869784339,-2.6635041662340737,0.42968550876310685,7.2921028697843395,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,32,33,12.8,-2.6199261557440128,,,,0.5198007835198032,,3.431208680510616,,0.5198007835198032,,-3.431208680510616,-2.6199261557440128,-2.911407896990813,3.9510094640304194,-2.6199261557440128,-2.911407896990813,3.9510094640304194,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,33,34,13.200000000000001,-1.2681778649690585,,,,-1.5084060848097527,,3.431208680510616,,-1.5084060848097527,,-3.431208680510616,-1.2681778649690585,-4.939614765320369,1.9228025957008634,-1.2681778649690585,-4.939614765320369,1.9228025957008634,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,34,35,13.600000000000001,0.06218464572863847,,,,-1.3908494613365097,,3.431208680510616,,-1.3908494613365097,,-3.431208680510616,0.06218464572863847,-4.822058141847126,2.0403592191741065,0.06218464572863847,-4.822058141847126,2.0403592191741065,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,35,36,14.0,1.1799365795184438,,,,-1.070311988409196,,3.431208680510616,,-1.070311988409196,,-3.431208680510616,1.1799365795184438,-4.501520668919812,2.36089669210142,1.1799365795184438,-4.501520668919812,2.36089669210142,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,36,37,14.4,1.8226800776869776,,,,-1.3160766586431718,,3.431208680510616,,-1.3160766586431718,,-3.431208680510616,1.8226800776869776,-4.7472853391537875,2.1151320218674443,1.8226800776869774,-4.7472853391537875,2.1151320218674443,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,37,38,14.8,2.430043234840577,,,,-2.8501503259449588,,3.431208680510616,,-2.8501503259449588,,-3.431208680510616,2.430043234840577,-6.281359006455575,0.5810583545656574,2.430043234840577,-6.281359006455575,0.5810583545656574,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,38,39,15.200000000000001,2.9891549910704263,,,,-3.3682654435512793,,3.431208680510616,,-3.3682654435512793,,-3.431208680510616,2.9891549910704263,-6.799474124061895,0.06294323695933679,2.9891549910704263,-6.799474124061895,0.06294323695933679,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,39,40,15.600000000000001,2.8525438904121025,,,,-1.0860810032804835,,3.431208680510616,,-1.0860810032804835,,-3.431208680510616,2.8525438904121025,-4.5172896837911,2.3451276772301326,2.8525438904121025,-4.5172896837911,2.3451276772301326,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,40,41,16.0,1.6434347288257425,,,,0.4160647326887333,,3.431208680510616,,0.4160647326887333,,-3.431208680510616,1.6434347288257425,-3.015143947821883,3.8472734131993493,1.6434347288257427,-3.015143947821883,3.8472734131993493,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,41,42,16.400000000000002,0.45196589896404377,,,,0.6054716477574804,,3.431208680510616,,0.6054716477574804,,-3.431208680510616,0.45196589896404377,-2.8257370327531355,4.036680328268097,0.45196589896404377,-2.8257370327531355,4.036680328268097,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,42,43,16.8,-0.7725528148685591,,,,0.622534447756367,,3.431208680510616,,0.622534447756367,,-3.431208680510616,-0.7725528148685591,-2.808674232754249,4.053743128266984,-0.7725528148685591,-2.808674232754249,4.053743128266984,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,43,44,17.2,-1.6357539618979906,,,,0.6257386136536899,,3.431208680510616,,0.6257386136536899,,-3.431208680510616,-1.6357539618979906,-2.8054700668569263,4.056947294164306,-1.6357539618979906,-2.8054700668569263,4.056947294164306,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,44,45,17.6,-2.3224086911044335,,,,1.8171527266012653,,3.431208680510616,,1.8171527266012653,,-3.431208680510616,-2.3224086911044335,-1.6140559539093509,5.248361407111881,-2.3224086911044335,-1.6140559539093509,5.248361407111881,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,45,46,18.0,-2.9340671743393005,,,,3.3979392991358304,,3.431208680510616,,3.3979392991358304,,-3.431208680510616,-2.9340671743393005,-0.033269381374785745,6.8291479796464465,-2.9340671743393005,-0.033269381374785745,6.8291479796464465,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,46,47,18.400000000000002,-3.1617722036166183,,,,3.1369050945621475,,3.431208680510616,,3.1369050945621475,,-3.431208680510616,-3.1617722036166183,-0.2943035859484686,6.568113775072764,-3.1617722036166183,-0.2943035859484686,6.568113775072764,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,47,48,18.8,-2.5522802089403447,,,,1.0840995237046185,,3.431208680510616,,1.0840995237046185,,-3.431208680510616,-2.5522802089403447,-2.3471091568059976,4.515308204215234,-2.5522802089403447,-2.3471091568059976,4.515308204215234,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,48,49,19.200000000000003,-1.503871485032653,,,,-0.795013148146632,,3.431208680510616,,-0.795013148146632,,-3.431208680510616,-1.503871485032653,-4.226221828657248,2.636195532363984,-1.503871485032653,-4.226221828657248,2.636195532363984,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,49,50,19.6,-0.1445327261301809,,,,-1.377963678136965,,3.431208680510616,,-1.377963678136965,,-3.431208680510616,-0.1445327261301809,-4.809172358647581,2.053245002373651,-0.1445327261301809,-4.809172358647581,2.053245002373651,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,50,51,20.0,0.9698140068180029,,,,-0.7524744431652012,,3.431208680510616,,-0.7524744431652012,,-3.431208680510616,0.9698140068180029,-4.183683123675817,2.678734237345415,0.9698140068180028,-4.183683123675817,2.678734237345415,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,51,52,20.400000000000002,1.6995750429701577,,,,-1.2055288245479177,,3.431208680510616,,-1.2055288245479177,,-3.431208680510616,1.6995750429701577,-4.636737505058534,2.2256798559626985,1.6995750429701577,-4.636737505058534,2.2256798559626985,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,52,53,20.8,2.3119731381818474,,,,-2.6606292264980405,,3.431208680510616,,-2.6606292264980405,,-3.431208680510616,2.3119731381818474,-6.091837907008657,0.7705794540125757,2.3119731381818474,-6.091837907008657,0.7705794540125757,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,53,54,21.200000000000003,2.743211586874678,,,,-2.5040454482867265,,3.431208680510616,,-2.5040454482867265,,-3.431208680510616,2.743211586874678,-5.935254128797343,0.9271632322238896,2.743211586874678,-5.935254128797343,0.9271632322238897,0.0,0.0,1.1102230246251565e-16 +karman,karman_re400,sr_closed_loop_400,54,55,21.6,2.3261405836411053,,,,-0.1731099116327958,,3.431208680510616,,-0.1731099116327958,,-3.431208680510616,2.3261405836411053,-3.6043185921434118,3.2580987688778205,2.3261405836411053,-3.604318592143412,3.2580987688778205,0.0,-4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,55,56,22.0,1.0932161650399792,,,,0.7739755138206855,,3.431208680510616,,0.7739755138206855,,-3.431208680510616,1.0932161650399792,-2.6572331666899305,4.205184194331301,1.0932161650399792,-2.6572331666899305,4.205184194331301,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,56,57,22.400000000000002,0.07680540766237474,,,,0.4545558298327497,,3.431208680510616,,0.4545558298327497,,-3.431208680510616,0.07680540766237474,-2.9766528506778664,3.885764510343366,0.07680540766237474,-2.9766528506778664,3.885764510343366,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,57,58,22.8,-0.739089590898962,,,,0.534891695430591,,3.431208680510616,,0.534891695430591,,-3.431208680510616,-0.739089590898962,-2.896316985080025,3.966100375941207,-0.739089590898962,-2.896316985080025,3.9661003759412066,0.0,0.0,-4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,58,59,23.200000000000003,-1.473269140395543,,,,1.7148334755345442,,3.431208680510616,,1.7148334755345442,,-3.431208680510616,-1.473269140395543,-1.7163752049760719,5.14604215604516,-1.473269140395543,-1.716375204976072,5.14604215604516,0.0,-2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,59,60,23.6,-2.222733967079949,,,,3.1202443377588023,,3.431208680510616,,3.1202443377588023,,-3.431208680510616,-2.222733967079949,-0.31096434275181384,6.551453018269418,-2.222733967079949,-0.31096434275181384,6.5514530182694175,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,60,61,24.0,-2.6365662708275486,,,,3.05889170115485,,3.431208680510616,,3.05889170115485,,-3.431208680510616,-2.6365662708275486,-0.3723169793557659,6.490100381665466,-2.6365662708275486,-0.3723169793557659,6.490100381665465,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,61,62,24.400000000000002,-2.359925240009922,,,,1.2172534287443795,,3.431208680510616,,1.2172534287443795,,-3.431208680510616,-2.359925240009922,-2.2139552517662366,4.648462109254996,-2.359925240009922,-2.2139552517662366,4.648462109254996,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,62,63,24.8,-1.3606385528318108,,,,-0.5298563165990763,,3.431208680510616,,-0.5298563165990763,,-3.431208680510616,-1.3606385528318108,-3.9610649971096925,2.9013523639115397,-1.3606385528318108,-3.961064997109692,2.9013523639115397,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,63,64,25.200000000000003,-0.10974155597893089,,,,-1.1457835994969419,,3.431208680510616,,-1.1457835994969419,,-3.431208680510616,-0.10974155597893089,-4.576992280007558,2.285425081013674,-0.10974155597893089,-4.576992280007558,2.285425081013674,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,64,65,25.6,1.0532031926137304,,,,-0.8307123611214426,,3.431208680510616,,-0.8307123611214426,,-3.431208680510616,1.0532031926137304,-4.261921041632059,2.6004963193891735,1.0532031926137304,-4.261921041632059,2.6004963193891735,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,65,66,26.0,1.8237422098582794,,,,-0.9574283986740708,,3.431208680510616,,-0.9574283986740708,,-3.431208680510616,1.8237422098582794,-4.3886370791846865,2.4737802818365453,1.8237422098582794,-4.3886370791846865,2.4737802818365453,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,66,67,26.400000000000002,2.435082168881253,,,,-2.4768357677060298,,3.431208680510616,,-2.4768357677060298,,-3.431208680510616,2.435082168881253,-5.908044448216646,0.9543729128045864,2.435082168881253,-5.908044448216646,0.9543729128045865,0.0,0.0,1.1102230246251565e-16 +karman,karman_re400,sr_closed_loop_400,67,68,26.8,2.9847016904776003,,,,-3.602801716834866,,3.431208680510616,,-3.602801716834866,,-3.431208680510616,2.9847016904776003,-7.034010397345482,-0.17159303632424994,2.9847016904776003,-7.034010397345481,-0.17159303632424994,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,68,69,27.200000000000003,3.0465388105957314,,,,-2.2050559377328662,,3.431208680510616,,-2.2050559377328662,,-3.431208680510616,3.0465388105957314,-5.636264618243482,1.2261527427777499,3.0465388105957314,-5.636264618243482,1.2261527427777499,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,69,70,27.6,2.1585175945304345,,,,0.13200231752444452,,3.431208680510616,,0.13200231752444452,,-3.431208680510616,2.1585175945304345,-3.2992063629861716,3.5632109980350606,2.1585175945304345,-3.299206362986172,3.5632109980350606,0.0,-4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,70,71,28.0,0.9387547659720145,,,,1.4118529925948424,,3.431208680510616,,1.4118529925948424,,-3.431208680510616,0.9387547659720145,-2.0193556879157737,4.843061673105458,0.9387547659720145,-2.0193556879157737,4.843061673105458,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,71,72,28.400000000000002,-0.43357518830948183,,,,1.149990456480446,,3.431208680510616,,1.149990456480446,,-3.431208680510616,-0.43357518830948183,-2.2812182240301704,4.581199136991062,-0.43357518830948183,-2.2812182240301704,4.581199136991062,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,72,73,28.8,-1.3072965364926084,,,,0.4894563611437117,,3.431208680510616,,0.4894563611437117,,-3.431208680510616,-1.3072965364926084,-2.9417523193669046,3.9206650416543276,-1.3072965364926084,-2.9417523193669046,3.9206650416543276,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,73,74,29.200000000000003,-1.8630926039719984,,,,1.7391337381594374,,3.431208680510616,,1.7391337381594374,,-3.431208680510616,-1.8630926039719984,-1.6920749423511787,5.170342418670053,-1.8630926039719984,-1.6920749423511787,5.170342418670053,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,74,75,29.6,-2.436999796524365,,,,3.3950199090776665,,3.431208680510616,,3.3950199090776665,,-3.431208680510616,-2.436999796524365,-0.03618877143294963,6.826228589588283,-2.436999796524365,-0.03618877143294963,6.8262285895882835,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,75,76,30.0,-2.7927394822355542,,,,2.259787098369586,,3.431208680510616,,2.259787098369586,,-3.431208680510616,-2.7927394822355542,-1.17142158214103,5.690995778880202,-2.7927394822355542,-1.17142158214103,5.690995778880202,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,76,77,30.400000000000002,-2.0295414401995457,,,,-0.3334400031689899,,3.431208680510616,,-0.3334400031689899,,-3.431208680510616,-2.0295414401995457,-3.764648683679606,3.097768677341626,-2.0295414401995457,-3.764648683679606,3.097768677341626,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,77,78,30.8,-0.7631426754772921,,,,-1.0629709986136475,,3.431208680510616,,-1.0629709986136475,,-3.431208680510616,-0.7631426754772921,-4.494179679124263,2.368237681896969,-0.7631426754772921,-4.494179679124263,2.368237681896969,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,78,79,31.200000000000003,0.3590849114329281,,,,-0.8634309050884708,,3.431208680510616,,-0.8634309050884708,,-3.431208680510616,0.3590849114329281,-4.294639585599087,2.5677777754221456,0.3590849114329281,-4.294639585599087,2.5677777754221456,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,79,80,31.6,1.250534625057071,,,,-0.8020569540672603,,3.431208680510616,,-0.8020569540672603,,-3.431208680510616,1.250534625057071,-4.233265634577877,2.629151726443356,1.250534625057071,-4.233265634577877,2.629151726443356,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,80,81,32.0,1.9186437770838494,,,,-1.9267895216045503,,3.431208680510616,,-1.9267895216045503,,-3.431208680510616,1.9186437770838494,-5.357998202115167,1.5044191589060658,1.9186437770838494,-5.357998202115167,1.5044191589060658,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,81,82,32.4,2.558671427887857,,,,-3.4380257042887368,,3.431208680510616,,-3.4380257042887368,,-3.431208680510616,2.558671427887857,-6.869234384799353,-0.006817023778120657,2.558671427887857,-6.869234384799352,-0.006817023778120657,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,82,83,32.800000000000004,2.9157101631378786,,,,-2.933831337085705,,3.431208680510616,,-2.933831337085705,,-3.431208680510616,2.9157101631378786,-6.365040017596321,0.4973773434249109,2.9157101631378786,-6.365040017596321,0.49737734342491086,0.0,0.0,-5.551115123125783e-17 +karman,karman_re400,sr_closed_loop_400,83,84,33.2,2.38340740967626,,,,-0.3804136293985923,,3.431208680510616,,-0.3804136293985923,,-3.431208680510616,2.38340740967626,-3.8116223099092084,3.050795051112024,2.38340740967626,-3.8116223099092084,3.050795051112024,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,84,85,33.6,1.1417312786144882,,,,1.0522385805405752,,3.431208680510616,,1.0522385805405752,,-3.431208680510616,1.1417312786144882,-2.378970099970041,4.483447261051191,1.1417312786144882,-2.378970099970041,4.483447261051191,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,85,86,34.0,-0.15340571596855823,,,,1.1404358122067508,,3.431208680510616,,1.1404358122067508,,-3.431208680510616,-0.15340571596855823,-2.2907728683038653,4.5716444927173665,-0.15340571596855823,-2.2907728683038653,4.5716444927173665,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,86,87,34.4,-1.2042294896516308,,,,0.7151251898028973,,3.431208680510616,,0.7151251898028973,,-3.431208680510616,-1.2042294896516308,-2.7160834907077187,4.146333870313513,-1.2042294896516308,-2.7160834907077187,4.146333870313513,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,87,88,34.800000000000004,-1.8638069968587239,,,,1.4230287505468944,,3.431208680510616,,1.4230287505468944,,-3.431208680510616,-1.8638069968587239,-2.0081799299637217,4.854237431057511,-1.8638069968587239,-2.0081799299637217,4.854237431057511,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,88,89,35.2,-2.5093862218693572,,,,3.1099916463198864,,3.431208680510616,,3.1099916463198864,,-3.431208680510616,-2.5093862218693572,-0.32121703419072967,6.541200326830502,-2.5093862218693572,-0.32121703419072967,6.541200326830503,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,89,90,35.6,-3.0180064293378646,,,,3.260081073838333,,3.431208680510616,,3.260081073838333,,-3.431208680510616,-3.0180064293378646,-0.17112760667228333,6.691289754348949,-3.0180064293378646,-0.17112760667228333,6.691289754348949,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,90,91,36.0,-2.710155708929895,,,,0.9298612448667793,,3.431208680510616,,0.9298612448667793,,-3.431208680510616,-2.710155708929895,-2.5013474356438365,4.361069925377396,-2.710155708929895,-2.5013474356438365,4.361069925377396,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,91,92,36.4,-1.5536232442179465,,,,-0.6897378918978138,,3.431208680510616,,-0.6897378918978138,,-3.431208680510616,-1.5536232442179465,-4.12094657240843,2.7414707886128022,-1.5536232442179465,-4.12094657240843,2.7414707886128022,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,92,93,36.800000000000004,-0.3247071624487674,,,,-1.1548096462226232,,3.431208680510616,,-1.1548096462226232,,-3.431208680510616,-0.3247071624487674,-4.586018326733239,2.276399034287993,-0.3247071624487674,-4.586018326733239,2.276399034287993,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,93,94,37.2,0.8719596970602796,,,,-0.8761166372574593,,3.431208680510616,,-0.8761166372574593,,-3.431208680510616,0.8719596970602796,-4.3073253177680755,2.5550920432531568,0.8719596970602798,-4.3073253177680755,2.5550920432531568,1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,94,95,37.6,1.6592236552186994,,,,-1.0447657458496982,,3.431208680510616,,-1.0447657458496982,,-3.431208680510616,1.6592236552186994,-4.475974426360314,2.386442934660918,1.6592236552186994,-4.475974426360314,2.386442934660918,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,95,96,38.0,2.2823677911998903,,,,-2.4742099837456037,,3.431208680510616,,-2.4742099837456037,,-3.431208680510616,2.2823677911998903,-5.90541866425622,0.9569986967650124,2.2823677911998903,-5.90541866425622,0.9569986967650124,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,96,97,38.400000000000006,2.8188325381238313,,,,-3.4105987688978394,,3.431208680510616,,-3.4105987688978394,,-3.431208680510616,2.8188325381238313,-6.8418074494084555,0.0206099116127767,2.8188325381238313,-6.8418074494084555,0.0206099116127767,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,97,98,38.800000000000004,2.835612201799224,,,,-1.647750305604771,,3.431208680510616,,-1.647750305604771,,-3.431208680510616,2.835612201799224,-5.078958986115387,1.783458374905845,2.835612201799224,-5.078958986115387,1.7834583749058452,0.0,0.0,2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,98,99,39.2,1.8218863867458275,,,,0.3690612662749688,,3.431208680510616,,0.3690612662749688,,-3.431208680510616,1.8218863867458275,-3.062147414235647,3.800269946785585,1.8218863867458273,-3.062147414235647,3.800269946785585,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,99,100,39.6,0.6174043287948717,,,,1.1112043069032351,,3.431208680510616,,1.1112043069032351,,-3.431208680510616,0.6174043287948717,-2.320004373607381,4.542412987413851,0.6174043287948717,-2.320004373607381,4.542412987413851,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,100,101,40.0,-0.6329401762907289,,,,0.9520127097403271,,3.431208680510616,,0.9520127097403271,,-3.431208680510616,-0.6329401762907289,-2.479195970770289,4.383221390250943,-0.6329401762907289,-2.479195970770289,4.383221390250943,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,101,102,40.400000000000006,-1.5102463648513702,,,,0.7487873534711327,,3.431208680510616,,0.7487873534711327,,-3.431208680510616,-1.5102463648513702,-2.682421327039483,4.179996033981749,-1.5102463648513702,-2.682421327039483,4.179996033981749,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,102,103,40.800000000000004,-2.1343351067160348,,,,1.9862128989549206,,3.431208680510616,,1.9862128989549206,,-3.431208680510616,-2.1343351067160348,-1.4449957815556955,5.417421579465537,-2.1343351067160348,-1.4449957815556955,5.417421579465537,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,103,104,41.2,-2.694119964012556,,,,3.4171997677999197,,3.431208680510616,,3.4171997677999197,,-3.431208680510616,-2.694119964012556,-0.014008912710696375,6.848408448310536,-2.694119964012556,-0.014008912710696373,6.848408448310536,0.0,1.734723475976807e-18,0.0 +karman,karman_re400,sr_closed_loop_400,104,105,41.6,-2.9541296709083356,,,,2.484434966442083,,3.431208680510616,,2.484434966442083,,-3.431208680510616,-2.9541296709083356,-0.9467737140685331,5.915643646952699,-2.9541296709083356,-0.946773714068533,5.915643646952699,0.0,1.1102230246251565e-16,0.0 +karman,karman_re400,sr_closed_loop_400,105,106,42.0,-2.1815406257976653,,,,0.04048338617434841,,3.431208680510616,,0.04048338617434841,,-3.431208680510616,-2.1815406257976653,-3.3907252943362676,3.4716920666849647,-2.1815406257976653,-3.3907252943362676,3.471692066684965,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,106,107,42.400000000000006,-0.9636074910655669,,,,-1.0119981787229753,,3.431208680510616,,-1.0119981787229753,,-3.431208680510616,-0.9636074910655669,-4.443206859233591,2.419210501787641,-0.9636074910655669,-4.443206859233591,2.419210501787641,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,107,108,42.800000000000004,0.28164825229650337,,,,-1.0552752760165802,,3.431208680510616,,-1.0552752760165802,,-3.431208680510616,0.28164825229650337,-4.486483956527197,2.375933404494036,0.28164825229650337,-4.486483956527197,2.375933404494036,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,108,109,43.2,1.2535306796004737,,,,-0.6936545683149252,,3.431208680510616,,-0.6936545683149252,,-3.431208680510616,1.2535306796004737,-4.124863248825541,2.737554112195691,1.2535306796004737,-4.124863248825541,2.737554112195691,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,109,110,43.6,1.9179360441681002,,,,-1.6663029833700362,,3.431208680510616,,-1.6663029833700362,,-3.431208680510616,1.9179360441681002,-5.097511663880653,1.7649056971405799,1.9179360441681,-5.097511663880653,1.7649056971405799,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,110,111,44.0,2.547985371256949,,,,-3.2836960779483606,,3.431208680510616,,-3.2836960779483606,,-3.431208680510616,2.547985371256949,-6.714904758458976,0.1475126025622555,2.547985371256949,-6.714904758458977,0.1475126025622555,0.0,-8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,111,112,44.400000000000006,2.9441152057506783,,,,-2.818184028661323,,3.431208680510616,,-2.818184028661323,,-3.431208680510616,2.9441152057506783,-6.249392709171939,0.613024651849293,2.9441152057506783,-6.249392709171939,0.613024651849293,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,112,113,44.800000000000004,2.401577675291506,,,,-0.3814635166944176,,3.431208680510616,,-0.3814635166944176,,-3.431208680510616,2.401577675291506,-3.8126721972050337,3.0497451638161985,2.401577675291506,-3.8126721972050337,3.0497451638161985,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,113,114,45.2,1.189474679152069,,,,0.9466046330984615,,3.431208680510616,,0.9466046330984615,,-3.431208680510616,1.189474679152069,-2.4846040474121547,4.377813313609078,1.189474679152069,-2.4846040474121547,4.377813313609078,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,114,115,45.6,-0.035556624896701444,,,,1.0509460133796766,,3.431208680510616,,1.0509460133796766,,-3.431208680510616,-0.035556624896701444,-2.3802626671309395,4.482154693890292,-0.035556624896701444,-2.3802626671309395,4.482154693890292,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,115,116,46.0,-1.0671876220705594,,,,0.7376450896033443,,3.431208680510616,,0.7376450896033443,,-3.431208680510616,-1.0671876220705594,-2.6935635909072717,4.1688537701139605,-1.0671876220705594,-2.6935635909072717,4.1688537701139605,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,116,117,46.400000000000006,-1.768139666170298,,,,1.477967574506048,,3.431208680510616,,1.477967574506048,,-3.431208680510616,-1.768139666170298,-1.953241106004568,4.909176255016664,-1.768139666170298,-1.953241106004568,4.909176255016664,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,117,118,46.800000000000004,-2.417381120421191,,,,3.0485633435346666,,3.431208680510616,,3.0485633435346666,,-3.431208680510616,-2.417381120421191,-0.3826453369759495,6.479772024045283,-2.417381120421191,-0.3826453369759495,6.479772024045283,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,118,119,47.2,-2.8720267919069724,,,,3.212354515819069,,3.431208680510616,,3.212354515819069,,-3.431208680510616,-2.8720267919069724,-0.21885416469154695,6.643563196329685,-2.8720267919069724,-0.21885416469154695,6.643563196329685,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,119,120,47.6,-2.587985822937762,,,,0.9274043015402091,,3.431208680510616,,0.9274043015402091,,-3.431208680510616,-2.587985822937762,-2.5038043789704068,4.3586129820508255,-2.587985822937762,-2.5038043789704068,4.3586129820508255,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,120,121,48.0,-1.427916025641263,,,,-0.6230003200193057,,3.431208680510616,,-0.6230003200193057,,-3.431208680510616,-1.427916025641263,-4.054209000529922,2.80820836049131,-1.427916025641263,-4.054209000529922,2.80820836049131,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,121,122,48.400000000000006,-0.22785882604458227,,,,-1.0696338854486964,,3.431208680510616,,-1.0696338854486964,,-3.431208680510616,-0.22785882604458227,-4.500842565959313,2.3615747950619195,-0.22785882604458227,-4.500842565959313,2.3615747950619195,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,122,123,48.800000000000004,0.9487373298686953,,,,-0.8932701757755326,,3.431208680510616,,-0.8932701757755326,,-3.431208680510616,0.9487373298686953,-4.324478856286149,2.5379385047350835,0.9487373298686954,-4.324478856286149,2.5379385047350835,1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,123,124,49.2,1.7476993272478736,,,,-1.0921123743813266,,3.431208680510616,,-1.0921123743813266,,-3.431208680510616,1.7476993272478736,-4.523321054891943,2.3390963061292895,1.7476993272478736,-4.523321054891943,2.3390963061292895,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,124,125,49.6,2.384284883052292,,,,-2.484223192482035,,3.431208680510616,,-2.484223192482035,,-3.431208680510616,2.384284883052292,-5.9154318729926505,0.9469854880285813,2.384284883052292,-5.9154318729926505,0.9469854880285813,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,125,126,50.0,2.9031645538107718,,,,-3.383280689280799,,3.431208680510616,,-3.383280689280799,,-3.431208680510616,2.9031645538107718,-6.814489369791415,0.047927991229816946,2.9031645538107718,-6.814489369791415,0.047927991229816946,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,126,127,50.400000000000006,2.8873526283180433,,,,-1.8298928105342633,,3.431208680510616,,-1.8298928105342633,,-3.431208680510616,2.8873526283180433,-5.2611014910448795,1.6013158699763528,2.8873526283180433,-5.2611014910448795,1.6013158699763528,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,127,128,50.800000000000004,1.9191288893697638,,,,0.23631446660484776,,3.431208680510616,,0.23631446660484776,,-3.431208680510616,1.9191288893697638,-3.1948942139057683,3.667523147115464,1.9191288893697638,-3.1948942139057683,3.667523147115464,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,128,129,51.2,0.7096283989887875,,,,1.1008619426659958,,3.431208680510616,,1.1008619426659958,,-3.431208680510616,0.7096283989887875,-2.3303467378446205,4.532070623176612,0.7096283989887875,-2.3303467378446205,4.532070623176612,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,129,130,51.6,-0.5519976862324715,,,,0.9556705682335838,,3.431208680510616,,0.9556705682335838,,-3.431208680510616,-0.5519976862324715,-2.4755381122770324,4.3868792487442,-0.5519976862324715,-2.4755381122770324,4.3868792487442,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,130,131,52.0,-1.4470782273337206,,,,0.695036351536635,,3.431208680510616,,0.695036351536635,,-3.431208680510616,-1.4470782273337206,-2.736172328973981,4.126245032047251,-1.4470782273337206,-2.736172328973981,4.126245032047251,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,131,132,52.400000000000006,-2.0790568148149866,,,,1.8970178480693658,,3.431208680510616,,1.8970178480693658,,-3.431208680510616,-2.0790568148149866,-1.5341908324412503,5.328226528579982,-2.0790568148149866,-1.5341908324412503,5.328226528579982,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,132,133,52.800000000000004,-2.6510936211183664,,,,3.338502143537161,,3.431208680510616,,3.338502143537161,,-3.431208680510616,-2.6510936211183664,-0.09270653697345521,6.7697108240477775,-2.6510936211183664,-0.09270653697345521,6.769710824047778,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,133,134,53.2,-2.9049630123732144,,,,2.339067900313125,,3.431208680510616,,2.339067900313125,,-3.431208680510616,-2.9049630123732144,-1.0921407801974912,5.770276580823741,-2.9049630123732144,-1.0921407801974912,5.770276580823741,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,134,135,53.6,-2.124049625139448,,,,0.0083406359649785,,3.431208680510616,,0.0083406359649785,,-3.431208680510616,-2.124049625139448,-3.4228680445456376,3.4395493164755946,-2.124049625139448,-3.4228680445456376,3.439549316475594,0.0,0.0,-4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,135,136,54.0,-0.9270285328741228,,,,-0.9769843765088673,,3.431208680510616,,-0.9769843765088673,,-3.431208680510616,-0.9270285328741228,-4.408193057019483,2.454224304001749,-0.9270285328741228,-4.408193057019483,2.454224304001749,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,136,137,54.400000000000006,0.27739249754278666,,,,-0.9848932432785209,,3.431208680510616,,-0.9848932432785209,,-3.431208680510616,0.27739249754278666,-4.416101923789137,2.446315437232095,0.27739249754278666,-4.416101923789137,2.446315437232095,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,137,138,54.800000000000004,1.2221201696852915,,,,-0.7155003235466492,,3.431208680510616,,-0.7155003235466492,,-3.431208680510616,1.2221201696852915,-4.146709004057265,2.715708356963967,1.2221201696852915,-4.146709004057265,2.715708356963967,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,138,139,55.2,1.8958925170322585,,,,-1.7557970450805622,,3.431208680510616,,-1.7557970450805622,,-3.431208680510616,1.8958925170322585,-5.187005725591178,1.675411635430054,1.8958925170322583,-5.187005725591178,1.675411635430054,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,139,140,55.6,2.515431344325134,,,,-3.2915550080832943,,3.431208680510616,,-3.2915550080832943,,-3.431208680510616,2.515431344325134,-6.72276368859391,0.13965367242732185,2.515431344325134,-6.72276368859391,0.13965367242732185,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,140,141,56.0,2.8770403292583255,,,,-2.858267845634991,,3.431208680510616,,-2.858267845634991,,-3.431208680510616,2.8770403292583255,-6.289476526145608,0.5729408348756251,2.8770403292583255,-6.289476526145607,0.5729408348756251,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,141,142,56.400000000000006,2.35054848927315,,,,-0.40498123571424377,,3.431208680510616,,-0.40498123571424377,,-3.431208680510616,2.35054848927315,-3.83618991622486,3.026227444796372,2.35054848927315,-3.83618991622486,3.026227444796372,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,142,143,56.800000000000004,1.1270163835409774,,,,0.9073300788743528,,3.431208680510616,,0.9073300788743528,,-3.431208680510616,1.1270163835409774,-2.5238786016362633,4.338538759384969,1.1270163835409774,-2.5238786016362633,4.338538759384969,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,143,144,57.2,-0.09067270461950275,,,,1.0399897939253886,,3.431208680510616,,1.0399897939253886,,-3.431208680510616,-0.09067270461950275,-2.3912188865852277,4.4711984744360045,-0.09067270461950275,-2.3912188865852277,4.4711984744360045,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,144,145,57.6,-1.134757068007613,,,,0.7861451326003399,,3.431208680510616,,0.7861451326003399,,-3.431208680510616,-1.134757068007613,-2.645063547910276,4.217353813110956,-1.134757068007613,-2.645063547910276,4.217353813110956,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,145,146,58.0,-1.842107834622164,,,,1.4642356089413358,,3.431208680510616,,1.4642356089413358,,-3.431208680510616,-1.842107834622164,-1.9669730715692804,4.895444289451952,-1.8421078346221638,-1.9669730715692804,4.895444289451952,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,146,147,58.400000000000006,-2.4906765874046433,,,,3.037068021569573,,3.431208680510616,,3.037068021569573,,-3.431208680510616,-2.4906765874046433,-0.3941406589410432,6.468276702080189,-2.4906765874046433,-0.3941406589410432,6.468276702080189,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,147,148,58.800000000000004,-2.9466238836180345,,,,3.1810928122716686,,3.431208680510616,,3.1810928122716686,,-3.431208680510616,-2.9466238836180345,-0.2501158682389475,6.612301492782285,-2.9466238836180345,-0.2501158682389475,6.612301492782286,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,148,149,59.2,-2.6381414427630587,,,,0.9942688464472437,,3.431208680510616,,0.9942688464472437,,-3.431208680510616,-2.6381414427630587,-2.4369398340633723,4.4254775269578595,-2.6381414427630587,-2.4369398340633723,4.4254775269578595,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,149,150,59.6,-1.5040580974194093,,,,-0.6213578919236904,,3.431208680510616,,-0.6213578919236904,,-3.431208680510616,-1.5040580974194093,-4.052566572434307,2.8098507885869255,-1.5040580974194093,-4.052566572434307,2.8098507885869255,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,150,151,60.0,-0.28922991330615194,,,,-1.1097311761789883,,3.431208680510616,,-1.1097311761789883,,-3.431208680510616,-0.28922991330615194,-4.540939856689604,2.321477504331628,-0.28922991330615194,-4.540939856689604,2.321477504331628,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,151,152,60.400000000000006,0.8869370615899665,,,,-0.858143407149954,,3.431208680510616,,-0.858143407149954,,-3.431208680510616,0.8869370615899665,-4.28935208766057,2.5730652733606623,0.8869370615899665,-4.28935208766057,2.5730652733606623,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,152,153,60.800000000000004,1.6873959096459736,,,,-1.0963512029907185,,3.431208680510616,,-1.0963512029907185,,-3.431208680510616,1.6873959096459736,-4.527559883501334,2.334857477519898,1.6873959096459736,-4.527559883501334,2.334857477519898,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,153,154,61.2,2.3290669748880957,,,,-2.49183974724357,,3.431208680510616,,-2.49183974724357,,-3.431208680510616,2.3290669748880957,-5.9230484277541855,0.9393689332670463,2.3290669748880957,-5.9230484277541855,0.9393689332670463,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,154,155,61.6,2.8460058413044655,,,,-3.352839134060343,,3.431208680510616,,-3.352839134060343,,-3.431208680510616,2.8460058413044655,-6.784047814570959,0.07836954645027294,2.8460058413044655,-6.784047814570959,0.07836954645027294,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,155,156,62.0,2.8197929947382283,,,,-1.6406320514695754,,3.431208680510616,,-1.6406320514695754,,-3.431208680510616,2.8197929947382283,-5.071840731980192,1.7905766290410408,2.8197929947382283,-5.071840731980192,1.7905766290410408,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,156,157,62.400000000000006,1.812435976730057,,,,0.3393447057329817,,3.431208680510616,,0.3393447057329817,,-3.431208680510616,1.812435976730057,-3.0918639747776346,3.7705533862435976,1.8124359767300569,-3.0918639747776346,3.7705533862435976,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,157,158,62.800000000000004,0.6135250511004942,,,,1.062270972252539,,3.431208680510616,,1.062270972252539,,-3.431208680510616,0.6135250511004942,-2.368937708258077,4.493479652763155,0.6135250511004942,-2.368937708258077,4.493479652763155,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,158,159,63.2,-0.6159865763733382,,,,0.924794503392727,,3.431208680510616,,0.924794503392727,,-3.431208680510616,-0.6159865763733382,-2.506414177117889,4.3560031839033435,-0.6159865763733382,-2.506414177117889,4.3560031839033435,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,159,160,63.6,-1.499562306211755,,,,0.765795344968497,,3.431208680510616,,0.765795344968497,,-3.431208680510616,-1.499562306211755,-2.665413335542119,4.197004025479113,-1.499562306211755,-2.665413335542119,4.197004025479113,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,160,161,64.0,-2.1352678578511703,,,,2.012863532820091,,3.431208680510616,,2.012863532820091,,-3.431208680510616,-2.1352678578511703,-1.418345147690525,5.444072213330707,-2.1352678578511703,-1.418345147690525,5.444072213330707,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,161,162,64.4,-2.6912724268219255,,,,3.3686293872259703,,3.431208680510616,,3.3686293872259703,,-3.431208680510616,-2.6912724268219255,-0.06257929328464584,6.799838067736586,-2.6912724268219255,-0.06257929328464584,6.799838067736586,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,162,163,64.8,-2.916382731406873,,,,2.3805845789870044,,3.431208680510616,,2.3805845789870044,,-3.431208680510616,-2.916382731406873,-1.0506241015236117,5.8117932594976205,-2.916382731406873,-1.0506241015236117,5.8117932594976205,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,163,164,65.2,-2.126923136216887,,,,0.047366420490511485,,3.431208680510616,,0.047366420490511485,,-3.431208680510616,-2.126923136216887,-3.3838422600201046,3.4785751010011277,-2.126923136216887,-3.3838422600201046,3.478575101001128,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,164,165,65.60000000000001,-0.9170524291492891,,,,-0.9643303114740915,,3.431208680510616,,-0.9643303114740915,,-3.431208680510616,-0.9170524291492891,-4.395538991984708,2.4668783690365244,-0.9170524291492892,-4.395538991984708,2.4668783690365244,-1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,165,166,66.0,0.31275387984034175,,,,-0.9716792180531933,,3.431208680510616,,-0.9716792180531933,,-3.431208680510616,0.31275387984034175,-4.40288789856381,2.459529462457423,0.31275387984034175,-4.40288789856381,2.459529462457423,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,166,167,66.4,1.2695336130608026,,,,-0.688835074081073,,3.431208680510616,,-0.688835074081073,,-3.431208680510616,1.2695336130608026,-4.1200437545916895,2.742373606429543,1.2695336130608026,-4.1200437545916895,2.742373606429543,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,167,168,66.8,1.945848692926718,,,,-1.6681899182807756,,3.431208680510616,,-1.6681899182807756,,-3.431208680510616,1.945848692926718,-5.0993985987913915,1.7630187622298406,1.945848692926718,-5.0993985987913915,1.7630187622298406,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,168,169,67.2,2.5672582616670327,,,,-3.239147880156953,,3.431208680510616,,-3.239147880156953,,-3.431208680510616,2.5672582616670327,-6.670356560667569,0.19206080035366302,2.5672582616670327,-6.670356560667568,0.19206080035366302,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,169,170,67.60000000000001,2.9397969693692523,,,,-2.8332836947077706,,3.431208680510616,,-2.8332836947077706,,-3.431208680510616,2.9397969693692523,-6.264492375218387,0.5979249858028455,2.9397969693692523,-6.264492375218386,0.5979249858028455,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,170,171,68.0,2.398660918802528,,,,-0.49793980370432306,,3.431208680510616,,-0.49793980370432306,,-3.431208680510616,2.398660918802528,-3.9291484842149393,2.933268876806293,2.398660918802528,-3.9291484842149393,2.933268876806293,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,171,172,68.4,1.2190740099602437,,,,0.8589853266316699,,3.431208680510616,,0.8589853266316699,,-3.431208680510616,1.2190740099602437,-2.5722233538789463,4.290194007142286,1.2190740099602437,-2.5722233538789463,4.290194007142286,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,172,173,68.8,0.0036979322346684896,,,,1.087496889569807,,3.431208680510616,,1.087496889569807,,-3.431208680510616,0.0036979322346684896,-2.343711790940809,4.518705570080423,0.00369793223466849,-2.343711790940809,4.518705570080423,4.336808689942018e-19,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,173,174,69.2,-1.047587682685732,,,,0.773157040197954,,3.431208680510616,,0.773157040197954,,-3.431208680510616,-1.047587682685732,-2.658051640312662,4.20436572070857,-1.047587682685732,-2.658051640312662,4.20436572070857,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,174,175,69.60000000000001,-1.7643790025590085,,,,1.46587560110355,,3.431208680510616,,1.46587560110355,,-3.431208680510616,-1.7643790025590085,-1.965333079407066,4.897084281614166,-1.7643790025590085,-1.965333079407066,4.897084281614166,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,175,176,70.0,-2.4166002166243157,,,,3.0114302792617003,,3.431208680510616,,3.0114302792617003,,-3.431208680510616,-2.4166002166243157,-0.41977840124891586,6.442638959772316,-2.4166002166243157,-0.41977840124891586,6.442638959772316,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,176,177,70.4,-2.856585160800527,,,,3.131787845531484,,3.431208680510616,,3.131787845531484,,-3.431208680510616,-2.856585160800527,-0.2994208349791321,6.562996526042101,-2.856585160800527,-0.2994208349791321,6.5629965260421,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,177,178,70.8,-2.555198031024679,,,,0.8615564543364115,,3.431208680510616,,0.8615564543364115,,-3.431208680510616,-2.555198031024679,-2.5696522261742047,4.292765134847028,-2.555198031024679,-2.5696522261742047,4.292765134847028,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,178,179,71.2,-1.3935991931916323,,,,-0.6995489181619629,,3.431208680510616,,-0.6995489181619629,,-3.431208680510616,-1.3935991931916323,-4.130757598672579,2.731659762348653,-1.3935991931916323,-4.130757598672579,2.731659762348653,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,179,180,71.60000000000001,-0.1963164056917566,,,,-1.0502520768520704,,3.431208680510616,,-1.0502520768520704,,-3.431208680510616,-0.1963164056917566,-4.481460757362687,2.3809566036585457,-0.1963164056917566,-4.481460757362687,2.3809566036585457,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,180,181,72.0,0.9343685312869202,,,,-0.85115928159765,,3.431208680510616,,-0.85115928159765,,-3.431208680510616,0.9343685312869202,-4.282367962108266,2.580049398912966,0.9343685312869202,-4.282367962108266,2.580049398912966,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,181,182,72.4,1.726849044911954,,,,-1.2059194873671009,,3.431208680510616,,-1.2059194873671009,,-3.431208680510616,1.726849044911954,-4.637128167877717,2.2252891931435155,1.726849044911954,-4.637128167877717,2.2252891931435155,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,182,183,72.8,2.37329530934409,,,,-2.610508526560201,,3.431208680510616,,-2.610508526560201,,-3.431208680510616,2.37329530934409,-6.041717207070818,0.8207001539504151,2.37329530934409,-6.041717207070818,0.8207001539504152,0.0,0.0,1.1102230246251565e-16 +karman,karman_re400,sr_closed_loop_400,183,184,73.2,2.874109231631845,,,,-3.3529786673704685,,3.431208680510616,,-3.3529786673704685,,-3.431208680510616,2.874109231631845,-6.784187347881085,0.07823001314014766,2.874109231631845,-6.784187347881085,0.07823001314014766,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,184,185,73.60000000000001,2.8055569071781075,,,,-1.622090183158777,,3.431208680510616,,-1.622090183158777,,-3.431208680510616,2.8055569071781075,-5.053298863669394,1.809118497351839,2.8055569071781075,-5.053298863669394,1.809118497351839,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,185,186,74.0,1.7898298152461367,,,,0.3003103954405453,,3.431208680510616,,0.3003103954405453,,-3.431208680510616,1.7898298152461367,-3.130898285070071,3.7315190759511614,1.7898298152461367,-3.130898285070071,3.731519075951161,0.0,0.0,-4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,186,187,74.4,0.5807391239792845,,,,1.03261196063715,,3.431208680510616,,1.03261196063715,,-3.431208680510616,0.5807391239792845,-2.398596719873466,4.463820641147766,0.5807391239792845,-2.398596719873466,4.463820641147766,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,187,188,74.8,-0.6685546596852869,,,,0.8985607186308006,,3.431208680510616,,0.8985607186308006,,-3.431208680510616,-0.6685546596852869,-2.5326479618798157,4.329769399141417,-0.6685546596852869,-2.5326479618798157,4.329769399141417,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,188,189,75.2,-1.5508823553625497,,,,0.711399125174413,,3.431208680510616,,0.711399125174413,,-3.431208680510616,-1.5508823553625497,-2.7198095553362034,4.142607805685029,-1.5508823553625497,-2.7198095553362034,4.142607805685029,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,189,190,75.60000000000001,-2.1871651932861913,,,,1.9393266618360785,,3.431208680510616,,1.9393266618360785,,-3.431208680510616,-2.1871651932861913,-1.4918820186745376,5.370535342346694,-2.1871651932861913,-1.4918820186745376,5.370535342346694,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,190,191,76.0,-2.749260083715749,,,,3.334901301110071,,3.431208680510616,,3.334901301110071,,-3.431208680510616,-2.749260083715749,-0.09630737940054512,6.766109981620687,-2.749260083715749,-0.09630737940054512,6.766109981620687,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,191,192,76.4,-2.9755282464548314,,,,2.4690838663949024,,3.431208680510616,,2.4690838663949024,,-3.431208680510616,-2.9755282464548314,-0.9621248141157137,5.9002925469055185,-2.9755282464548314,-0.9621248141157137,5.9002925469055185,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,192,193,76.80000000000001,-2.2038799444444686,,,,0.2047155385272481,,3.431208680510616,,0.2047155385272481,,-3.431208680510616,-2.2038799444444686,-3.226493141983368,3.6359242190378644,-2.2038799444444686,-3.226493141983368,3.6359242190378644,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,193,194,77.2,-1.0383599154996999,,,,-0.9302595199778406,,3.431208680510616,,-0.9302595199778406,,-3.431208680510616,-1.0383599154996999,-4.361468200488456,2.5009491605327754,-1.0383599154996999,-4.361468200488456,2.5009491605327754,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,194,195,77.60000000000001,0.1973917051806762,,,,-1.0476160924205278,,3.431208680510616,,-1.0476160924205278,,-3.431208680510616,0.1973917051806762,-4.478824772931144,2.3835925880900883,0.1973917051806762,-4.478824772931144,2.3835925880900883,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,195,196,78.0,1.1712527321620467,,,,-0.699361655781762,,3.431208680510616,,-0.699361655781762,,-3.431208680510616,1.1712527321620467,-4.1305703362923785,2.731847024728854,1.1712527321620467,-4.1305703362923785,2.731847024728854,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,196,197,78.4,1.8560395171088606,,,,-1.6325762674666746,,3.431208680510616,,-1.6325762674666746,,-3.431208680510616,1.8560395171088606,-5.0637849479772905,1.7986324130439415,1.8560395171088606,-5.0637849479772905,1.7986324130439413,0.0,0.0,-2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,197,198,78.80000000000001,2.4767585800583514,,,,-3.1694846000180226,,3.431208680510616,,-3.1694846000180226,,-3.431208680510616,2.4767585800583514,-6.600693280528638,0.26172408049259355,2.4767585800583514,-6.600693280528638,0.26172408049259355,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,198,199,79.2,2.834458694826127,,,,-2.7103114584237025,,3.431208680510616,,-2.7103114584237025,,-3.431208680510616,2.834458694826127,-6.141520138934318,0.7208972220869136,2.834458694826127,-6.141520138934318,0.7208972220869136,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,199,200,79.60000000000001,2.302936312363706,,,,-0.36423933610771564,,3.431208680510616,,-0.36423933610771564,,-3.431208680510616,2.302936312363706,-3.795448016618332,3.0669693444029003,2.302936312363706,-3.7954480166183324,3.0669693444029003,0.0,-4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,200,201,80.0,1.0991890934103727,,,,0.8814178373213566,,3.431208680510616,,0.8814178373213566,,-3.431208680510616,1.0991890934103727,-2.5497908431892595,4.312626517831973,1.0991890934103727,-2.5497908431892595,4.312626517831973,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,201,202,80.4,-0.0691896642512549,,,,0.9680225775266371,,3.431208680510616,,0.9680225775266371,,-3.431208680510616,-0.0691896642512549,-2.463186102983979,4.399231258037253,-0.0691896642512549,-2.463186102983979,4.399231258037253,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,202,203,80.80000000000001,-1.0694354066748704,,,,0.7696800497597205,,3.431208680510616,,0.7696800497597205,,-3.431208680510616,-1.0694354066748704,-2.6615286307508956,4.200888730270337,-1.0694354066748704,-2.6615286307508956,4.200888730270337,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,203,204,81.2,-1.7901881660844687,,,,1.585458921166414,,3.431208680510616,,1.585458921166414,,-3.431208680510616,-1.7901881660844687,-1.845749759344202,5.01666760167703,-1.790188166084469,-1.845749759344202,5.01666760167703,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,204,205,81.60000000000001,-2.454096741217069,,,,3.1022117317746476,,3.431208680510616,,3.1022117317746476,,-3.431208680510616,-2.454096741217069,-0.3289969487359685,6.533420412285263,-2.454096741217069,-0.3289969487359685,6.533420412285263,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,205,206,82.0,-2.8689288398076322,,,,3.131542653610091,,3.431208680510616,,3.131542653610091,,-3.431208680510616,-2.8689288398076322,-0.29966602690052513,6.562751334120707,-2.8689288398076322,-0.29966602690052513,6.562751334120706,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,206,207,82.4,-2.536604857252437,,,,0.8890754984590334,,3.431208680510616,,0.8890754984590334,,-3.431208680510616,-2.536604857252437,-2.5421331820515825,4.32028417896965,-2.536604857252437,-2.5421331820515825,4.32028417896965,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,207,208,82.80000000000001,-1.3797211456711982,,,,-0.6811463547925336,,3.431208680510616,,-0.6811463547925336,,-3.431208680510616,-1.3797211456711982,-4.11235503530315,2.7500623257180825,-1.3797211456711982,-4.11235503530315,2.7500623257180825,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,208,209,83.2,-0.15915711280515205,,,,-1.0564557902410334,,3.431208680510616,,-1.0564557902410334,,-3.431208680510616,-0.15915711280515205,-4.48766447075165,2.3747528902695825,-0.15915711280515205,-4.48766447075165,2.3747528902695825,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,209,210,83.60000000000001,0.9850957098214039,,,,-0.8348516209530693,,3.431208680510616,,-0.8348516209530693,,-3.431208680510616,0.9850957098214039,-4.2660603014636855,2.5963570595575467,0.9850957098214039,-4.2660603014636855,2.5963570595575467,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,210,211,84.0,1.7683475016645653,,,,-1.1489149918839103,,3.431208680510616,,-1.1489149918839103,,-3.431208680510616,1.7683475016645653,-4.580123672394526,2.282293688626706,1.7683475016645653,-4.580123672394526,2.282293688626706,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,211,212,84.4,2.4096943595195603,,,,-2.583448655883665,,3.431208680510616,,-2.583448655883665,,-3.431208680510616,2.4096943595195603,-6.014657336394281,0.8477600246269512,2.4096943595195603,-6.014657336394281,0.8477600246269512,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,212,213,84.80000000000001,2.9228092482005597,,,,-3.359723614711963,,3.431208680510616,,-3.359723614711963,,-3.431208680510616,2.9228092482005597,-6.790932295222579,0.07148506579865321,2.9228092482005597,-6.7909322952225795,0.07148506579865321,0.0,-8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,213,214,85.2,2.8543692552572892,,,,-1.6994740019662977,,3.431208680510616,,-1.6994740019662977,,-3.431208680510616,2.8543692552572892,-5.130682682476914,1.7317346785443184,2.8543692552572892,-5.130682682476914,1.7317346785443184,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,214,215,85.60000000000001,1.857702778260484,,,,0.247841607949992,,3.431208680510616,,0.247841607949992,,-3.431208680510616,1.857702778260484,-3.1833670725606242,3.679050288460608,1.857702778260484,-3.1833670725606242,3.679050288460608,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,215,216,86.0,0.6579201734296385,,,,1.0735590876327112,,3.431208680510616,,1.0735590876327112,,-3.431208680510616,0.6579201734296385,-2.357649592877905,4.504767768143328,0.6579201734296385,-2.357649592877905,4.504767768143328,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,216,217,86.4,-0.6014934583333388,,,,0.9302838793118505,,3.431208680510616,,0.9302838793118505,,-3.431208680510616,-0.6014934583333388,-2.5009248011987655,4.361492559822467,-0.6014934583333388,-2.5009248011987655,4.361492559822467,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,217,218,86.80000000000001,-1.4876607604778636,,,,0.6944870485547124,,3.431208680510616,,0.6944870485547124,,-3.431208680510616,-1.4876607604778636,-2.736721631955904,4.125695729065328,-1.4876607604778636,-2.736721631955904,4.125695729065328,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,218,219,87.2,-2.120820160813229,,,,1.9120643041955856,,3.431208680510616,,1.9120643041955856,,-3.431208680510616,-2.120820160813229,-1.5191443763150305,5.343272984706202,-2.120820160813229,-1.5191443763150305,5.343272984706202,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,219,220,87.60000000000001,-2.6811436765623147,,,,3.3052703788517124,,3.431208680510616,,3.3052703788517124,,-3.431208680510616,-2.6811436765623147,-0.12593830165890374,6.7364790593623285,-2.6811436765623147,-0.12593830165890374,6.7364790593623285,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,220,221,88.0,-2.907168617161342,,,,2.33373594659004,,3.431208680510616,,2.33373594659004,,-3.431208680510616,-2.907168617161342,-1.097472733920576,5.764944627100656,-2.907168617161342,-1.097472733920576,5.764944627100656,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,221,222,88.4,-2.120230353783567,,,,0.07176838333489587,,3.431208680510616,,0.07176838333489587,,-3.431208680510616,-2.120230353783567,-3.3594402971757202,3.502977063845512,-2.120230353783567,-3.3594402971757202,3.5029770638455124,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,222,223,88.80000000000001,-0.9438685802863673,,,,-0.945166518916854,,3.431208680510616,,-0.945166518916854,,-3.431208680510616,-0.9438685802863673,-4.37637519942747,2.4860421615937622,-0.9438685802863673,-4.37637519942747,2.4860421615937622,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,223,224,89.2,0.2544329246990084,,,,-0.9962748376029562,,3.431208680510616,,-0.9962748376029562,,-3.431208680510616,0.2544329246990084,-4.427483518113572,2.43493384290766,0.2544329246990084,-4.427483518113572,2.43493384290766,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,224,225,89.60000000000001,1.2034187491847814,,,,-0.7412514890035051,,3.431208680510616,,-0.7412514890035051,,-3.431208680510616,1.2034187491847814,-4.172460169514121,2.689957191507111,1.2034187491847814,-4.172460169514121,2.689957191507111,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,225,226,90.0,1.886854847617793,,,,-1.749923400667433,,3.431208680510616,,-1.749923400667433,,-3.431208680510616,1.886854847617793,-5.181132081178049,1.6812852798431832,1.8868548476177933,-5.181132081178049,1.6812852798431834,2.220446049250313e-16,0.0,2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,226,227,90.4,2.503790247856223,,,,-3.265522949056137,,3.431208680510616,,-3.265522949056137,,-3.431208680510616,2.503790247856223,-6.696731629566753,0.16568573145447907,2.503790247856223,-6.696731629566753,0.16568573145447907,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,227,228,90.80000000000001,2.8393681590310234,,,,-2.7392941940286426,,3.431208680510616,,-2.7392941940286426,,-3.431208680510616,2.8393681590310234,-6.170502874539259,0.6919144864819735,2.8393681590310234,-6.170502874539259,0.6919144864819735,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,228,229,91.2,2.289634396732529,,,,-0.3364371147272289,,3.431208680510616,,-0.3364371147272289,,-3.431208680510616,2.289634396732529,-3.7676457952378453,3.094771565783387,2.289634396732529,-3.767645795237845,3.094771565783387,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,229,230,91.60000000000001,1.0677059898115489,,,,0.959230989390801,,3.431208680510616,,0.959230989390801,,-3.431208680510616,1.0677059898115489,-2.471977691119815,4.390439669901417,1.0677059898115489,-2.471977691119815,4.390439669901417,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,230,231,92.0,-0.13826510167530237,,,,1.0131251024126067,,3.431208680510616,,1.0131251024126067,,-3.431208680510616,-0.13826510167530237,-2.4180835780980097,4.444333782923223,-0.13826510167530237,-2.4180835780980097,4.444333782923223,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,231,232,92.4,-1.1460884758261256,,,,0.7593096722883699,,3.431208680510616,,0.7593096722883699,,-3.431208680510616,-1.1460884758261256,-2.6718990082222462,4.1905183527989855,-1.1460884758261256,-2.6718990082222462,4.1905183527989855,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,232,233,92.80000000000001,-1.8419707280196649,,,,1.570355220605271,,3.431208680510616,,1.570355220605271,,-3.431208680510616,-1.8419707280196649,-1.860853459905345,5.001563901115887,-1.8419707280196647,-1.8608534599053452,5.001563901115887,2.220446049250313e-16,-2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,233,234,93.2,-2.4936173641889425,,,,3.1455838304708914,,3.431208680510616,,3.1455838304708914,,-3.431208680510616,-2.4936173641889425,-0.2856248500397247,6.576792510981507,-2.4936173641889425,-0.2856248500397247,6.576792510981508,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,234,235,93.60000000000001,-2.926716253574102,,,,3.1360734136130075,,3.431208680510616,,3.1360734136130075,,-3.431208680510616,-2.926716253574102,-0.2951352668976086,6.567282094123623,-2.926716253574102,-0.2951352668976086,6.567282094123623,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,235,236,94.0,-2.5682705772554315,,,,0.8292721154981092,,3.431208680510616,,0.8292721154981092,,-3.431208680510616,-2.5682705772554315,-2.601936565012507,4.260480796008725,-2.5682705772554315,-2.601936565012507,4.260480796008725,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,236,237,94.4,-1.396756108234016,,,,-0.6878433446951964,,3.431208680510616,,-0.6878433446951964,,-3.431208680510616,-1.396756108234016,-4.1190520252058125,2.7433653358154197,-1.396756108234016,-4.1190520252058125,2.7433653358154197,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,237,238,94.80000000000001,-0.1764551621722371,,,,-1.0685020898922628,,3.431208680510616,,-1.0685020898922628,,-3.431208680510616,-0.1764551621722371,-4.499710770402879,2.3627065906183535,-0.1764551621722371,-4.499710770402879,2.3627065906183535,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,238,239,95.2,0.9735827067942704,,,,-0.8274415115472676,,3.431208680510616,,-0.8274415115472676,,-3.431208680510616,0.9735827067942704,-4.258650192057884,2.6037671689633486,0.9735827067942704,-4.258650192057884,2.6037671689633486,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,239,240,95.60000000000001,1.7524754144340178,,,,-1.155029184720387,,3.431208680510616,,-1.155029184720387,,-3.431208680510616,1.7524754144340178,-4.586237865231003,2.2761794957902293,1.7524754144340178,-4.586237865231003,2.2761794957902293,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,240,241,96.0,2.392896580723112,,,,-2.5852632740215626,,3.431208680510616,,-2.5852632740215626,,-3.431208680510616,2.392896580723112,-6.016471954532179,0.8459454064890535,2.392896580723112,-6.016471954532179,0.8459454064890536,0.0,0.0,1.1102230246251565e-16 +karman,karman_re400,sr_closed_loop_400,241,242,96.4,2.905347337098354,,,,-3.3451432592174384,,3.431208680510616,,-3.3451432592174384,,-3.431208680510616,2.905347337098354,-6.7763519397280545,0.08606542129317774,2.905347337098354,-6.7763519397280545,0.08606542129317774,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,242,243,96.80000000000001,2.8266402440983915,,,,-1.6233206340179505,,3.431208680510616,,-1.6233206340179505,,-3.431208680510616,2.8266402440983915,-5.054529314528566,1.8078880464926657,2.8266402440983915,-5.054529314528566,1.8078880464926659,0.0,0.0,2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,243,244,97.2,1.8180237367789873,,,,0.2831623377726242,,3.431208680510616,,0.2831623377726242,,-3.431208680510616,1.8180237367789873,-3.148046342737992,3.71437101828324,1.8180237367789873,-3.148046342737992,3.7143710182832406,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,244,245,97.60000000000001,0.6226736534315215,,,,1.0744451584073202,,3.431208680510616,,1.0744451584073202,,-3.431208680510616,0.6226736534315215,-2.3567635221032956,4.505653838917937,0.6226736534315215,-2.3567635221032956,4.505653838917937,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,245,246,98.0,-0.6241970773925458,,,,0.9352559238749395,,3.431208680510616,,0.9352559238749395,,-3.431208680510616,-0.6241970773925458,-2.4959527566356767,4.3664646043855555,-0.6241970773925458,-2.4959527566356767,4.3664646043855555,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,246,247,98.4,-1.507456147810942,,,,0.743877729701444,,3.431208680510616,,0.743877729701444,,-3.431208680510616,-1.507456147810942,-2.687330950809172,4.17508641021206,-1.507456147810942,-2.687330950809172,4.17508641021206,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,247,248,98.80000000000001,-2.1415455464934396,,,,1.9829712805815576,,3.431208680510616,,1.9829712805815576,,-3.431208680510616,-2.1415455464934396,-1.4482373999290585,5.414179961092174,-2.1415455464934396,-1.4482373999290585,5.414179961092174,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,248,249,99.2,-2.6962376571837967,,,,3.3271128607979286,,3.431208680510616,,3.3271128607979286,,-3.431208680510616,-2.6962376571837967,-0.10409581971268755,6.758321541308545,-2.6962376571837967,-0.10409581971268755,6.758321541308545,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,249,250,99.60000000000001,-2.901985827747578,,,,2.2949287870872457,,3.431208680510616,,2.2949287870872457,,-3.431208680510616,-2.901985827747578,-1.1362798934233704,5.726137467597862,-2.901985827747578,-1.1362798934233704,5.726137467597862,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,250,251,100.0,-2.0940704761864946,,,,0.003567119974069916,,3.431208680510616,,0.003567119974069916,,-3.431208680510616,-2.0940704761864946,-3.427641560536546,3.4347758004846862,-2.0940704761864946,-3.4276415605365465,3.4347758004846862,0.0,-4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,251,252,100.4,-0.9024607879386467,,,,-0.9758172599181195,,3.431208680510616,,-0.9758172599181195,,-3.431208680510616,-0.9024607879386467,-4.407025940428736,2.4553914205924965,-0.9024607879386467,-4.407025940428736,2.4553914205924965,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,252,253,100.80000000000001,0.30615464779933604,,,,-0.9875776418864083,,3.431208680510616,,-0.9875776418864083,,-3.431208680510616,0.30615464779933604,-4.4187863223970245,2.4436310386242077,0.30615464779933604,-4.4187863223970245,2.4436310386242077,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,253,254,101.2,1.2468294612039172,,,,-0.730655483200888,,3.431208680510616,,-0.730655483200888,,-3.431208680510616,1.2468294612039172,-4.161864163711504,2.700553197309728,1.2468294612039172,-4.161864163711504,2.700553197309728,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,254,255,101.60000000000001,1.922807413339012,,,,-1.774080552205018,,3.431208680510616,,-1.774080552205018,,-3.431208680510616,1.922807413339012,-5.205289232715634,1.657128128305598,1.9228074133390118,-5.205289232715634,1.657128128305598,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,255,256,102.0,2.5335114783331676,,,,-3.297838346045302,,3.431208680510616,,-3.297838346045302,,-3.431208680510616,2.5335114783331676,-6.729047026555918,0.13337033446531432,2.5335114783331676,-6.729047026555918,0.13337033446531432,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,256,257,102.4,2.871443467249061,,,,-2.716670614812816,,3.431208680510616,,-2.716670614812816,,-3.431208680510616,2.871443467249061,-6.147879295323432,0.7145380656978002,2.871443467249061,-6.147879295323432,0.7145380656978002,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,257,258,102.80000000000001,2.2902605228039152,,,,-0.304277008492377,,3.431208680510616,,-0.304277008492377,,-3.431208680510616,2.2902605228039152,-3.735485689002993,3.126931672018239,2.2902605228039152,-3.735485689002993,3.126931672018239,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,258,259,103.2,1.0679954765499857,,,,0.9594587491637933,,3.431208680510616,,0.9594587491637933,,-3.431208680510616,1.0679954765499857,-2.4717499313468227,4.3906674296744095,1.0679954765499857,-2.4717499313468227,4.3906674296744095,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,259,260,103.60000000000001,-0.14723232247177775,,,,1.0139021651675213,,3.431208680510616,,1.0139021651675213,,-3.431208680510616,-0.14723232247177775,-2.417306515343095,4.445110845678137,-0.14723232247177775,-2.417306515343095,4.445110845678137,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,260,261,104.0,-1.1553512522595901,,,,0.742421346019329,,3.431208680510616,,0.742421346019329,,-3.431208680510616,-1.1553512522595901,-2.688787334491287,4.1736300265299455,-1.1553512522595901,-2.688787334491287,4.1736300265299455,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,261,262,104.4,-1.8457773898304974,,,,1.5539790493337877,,3.431208680510616,,1.5539790493337877,,-3.431208680510616,-1.8457773898304974,-1.8772296311768284,4.985187729844403,-1.8457773898304974,-1.8772296311768286,4.985187729844403,0.0,-2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,262,263,104.80000000000001,-2.4952802257423077,,,,3.1386700424955407,,3.431208680510616,,3.1386700424955407,,-3.431208680510616,-2.4952802257423077,-0.2925386380150754,6.569878723006157,-2.4952802257423077,-0.2925386380150754,6.569878723006157,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,263,264,105.2,-2.927901373209433,,,,3.1312305496430897,,3.431208680510616,,3.1312305496430897,,-3.431208680510616,-2.927901373209433,-0.29997813086752645,6.562439230153705,-2.927901373209433,-0.29997813086752645,6.5624392301537045,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,264,265,105.60000000000001,-2.5644523270951005,,,,0.8230352125165579,,3.431208680510616,,0.8230352125165579,,-3.431208680510616,-2.5644523270951005,-2.6081734679940585,4.254243893027174,-2.5644523270951005,-2.6081734679940585,4.254243893027174,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,265,266,106.0,-1.3951025262402115,,,,-0.6786598757734764,,3.431208680510616,,-0.6786598757734764,,-3.431208680510616,-1.3951025262402115,-4.109868556284092,2.7525488047371396,-1.3951025262402115,-4.109868556284092,2.7525488047371396,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,266,267,106.4,-0.18274477537113396,,,,-1.088867102107862,,3.431208680510616,,-1.088867102107862,,-3.431208680510616,-0.18274477537113396,-4.520075782618478,2.3423415784027544,-0.18274477537113396,-4.520075782618478,2.3423415784027544,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,267,268,106.80000000000001,0.9689530057701855,,,,-0.8433521150474875,,3.431208680510616,,-0.8433521150474875,,-3.431208680510616,0.9689530057701855,-4.274560795558104,2.5878565654631287,0.9689530057701855,-4.274560795558104,2.5878565654631287,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,268,269,107.2,1.7480257102255192,,,,-1.1790624081461971,,3.431208680510616,,-1.1790624081461971,,-3.431208680510616,1.7480257102255192,-4.6102710886568135,2.2521462723644188,1.7480257102255192,-4.6102710886568135,2.2521462723644188,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,269,270,107.60000000000001,2.388169066925289,,,,-2.606876854351005,,3.431208680510616,,-2.606876854351005,,-3.431208680510616,2.388169066925289,-6.0380855348616205,0.8243318261596113,2.388169066925289,-6.0380855348616205,0.8243318261596114,0.0,0.0,1.1102230246251565e-16 +karman,karman_re400,sr_closed_loop_400,270,271,108.0,2.8942079584429914,,,,-3.33254994027185,,3.431208680510616,,-3.33254994027185,,-3.431208680510616,2.8942079584429914,-6.7637586207824665,0.0986587402387662,2.8942079584429914,-6.763758620782466,0.0986587402387662,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,271,272,108.4,2.802282776646541,,,,-1.5498579067568308,,3.431208680510616,,-1.5498579067568308,,-3.431208680510616,2.802282776646541,-4.981066587267447,1.8813507737537853,2.802282776646541,-4.981066587267447,1.8813507737537853,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,272,273,108.80000000000001,1.7783548184533748,,,,0.34797582675602784,,3.431208680510616,,0.34797582675602784,,-3.431208680510616,1.7783548184533748,-3.083232853754588,3.779184507266644,1.7783548184533748,-3.083232853754588,3.779184507266644,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,273,274,109.2,0.5794136898554343,,,,1.0811576773854144,,3.431208680510616,,1.0811576773854144,,-3.431208680510616,0.5794136898554343,-2.350051003125202,4.51236635789603,0.5794136898554343,-2.350051003125202,4.51236635789603,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,274,275,109.60000000000001,-0.6528372391807125,,,,0.9296243503435334,,3.431208680510616,,0.9296243503435334,,-3.431208680510616,-0.6528372391807125,-2.501584330167083,4.36083303085415,-0.6528372391807125,-2.501584330167083,4.36083303085415,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,275,276,110.0,-1.5289805968088903,,,,0.7967061218603179,,3.431208680510616,,0.7967061218603179,,-3.431208680510616,-1.5289805968088903,-2.6345025586502984,4.227914802370934,-1.5289805968088903,-2.6345025586502984,4.227914802370934,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,276,277,110.4,-2.1632594494657607,,,,2.0649992064180593,,3.431208680510616,,2.0649992064180593,,-3.431208680510616,-2.1632594494657607,-1.3662094740925568,5.4962078869286755,-2.1632594494657607,-1.3662094740925568,5.4962078869286755,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,277,278,110.80000000000001,-2.711698735405493,,,,3.3518122358859896,,3.431208680510616,,3.3518122358859896,,-3.431208680510616,-2.711698735405493,-0.07939644462462647,6.783020916396605,-2.711698735405493,-0.07939644462462647,6.783020916396605,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,278,279,111.2,-2.8957704764336465,,,,2.2288438931143646,,3.431208680510616,,2.2288438931143646,,-3.431208680510616,-2.8957704764336465,-1.2023647873962515,5.660052573624981,-2.8957704764336465,-1.2023647873962515,5.660052573624981,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,279,280,111.60000000000001,-2.0569812310188453,,,,-0.06683927209799925,,3.431208680510616,,-0.06683927209799925,,-3.431208680510616,-2.0569812310188453,-3.4980479526086152,3.364369408412617,-2.0569812310188453,-3.4980479526086157,3.3643694084126174,0.0,-4.440892098500626e-16,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,280,281,112.0,-0.8529234798187905,,,,-0.9885565826219298,,3.431208680510616,,-0.9885565826219298,,-3.431208680510616,-0.8529234798187905,-4.419765263132546,2.4426520978886863,-0.8529234798187905,-4.419765263132546,2.4426520978886863,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,281,282,112.4,0.3665908541225519,,,,-0.9574935598925473,,3.431208680510616,,-0.9574935598925473,,-3.431208680510616,0.3665908541225519,-4.3887022404031635,2.4737151206180688,0.3665908541225519,-4.3887022404031635,2.4737151206180688,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,282,283,112.80000000000001,1.2979185869610603,,,,-0.7044749844821082,,3.431208680510616,,-0.7044749844821082,,-3.431208680510616,1.2979185869610603,-4.135683664992724,2.726733696028508,1.2979185869610603,-4.135683664992724,2.726733696028508,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,283,284,113.2,1.9675089609327763,,,,-1.7729807282744727,,3.431208680510616,,-1.7729807282744727,,-3.431208680510616,1.9675089609327763,-5.204189408785089,1.6582279522361434,1.967508960932776,-5.204189408785089,1.6582279522361434,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,284,285,113.60000000000001,2.5729590192235277,,,,-3.3044366806452246,,3.431208680510616,,-3.3044366806452246,,-3.431208680510616,2.5729590192235277,-6.735645361155841,0.12677199986539156,2.5729590192235277,-6.735645361155841,0.12677199986539156,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,285,286,114.0,2.9113543645201463,,,,-2.723434897375681,,3.431208680510616,,-2.723434897375681,,-3.431208680510616,2.9113543645201463,-6.154643577886297,0.7077737831349351,2.9113543645201463,-6.154643577886297,0.7077737831349351,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,286,287,114.4,2.3119683874025507,,,,-0.352059364611107,,3.431208680510616,,-0.352059364611107,,-3.431208680510616,2.3119683874025507,-3.783268045121723,3.0791493158995094,2.3119683874025507,-3.783268045121723,3.0791493158995094,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,287,288,114.80000000000001,1.106904469987298,,,,0.9266994033122986,,3.431208680510616,,0.9266994033122986,,-3.431208680510616,1.106904469987298,-2.5045092771983173,4.357908083822915,1.106904469987298,-2.5045092771983173,4.357908083822915,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,288,289,115.2,-0.11479261949174738,,,,1.0393150403733153,,3.431208680510616,,1.0393150403733153,,-3.431208680510616,-0.11479261949174738,-2.391893640137301,4.470523720883931,-0.11479261949174736,-2.391893640137301,4.470523720883931,1.3877787807814457e-17,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,289,290,115.60000000000001,-1.1360007065879225,,,,0.7466717453123757,,3.431208680510616,,0.7466717453123757,,-3.431208680510616,-1.1360007065879225,-2.68453693519824,4.177880425822992,-1.1360007065879225,-2.68453693519824,4.177880425822992,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,290,291,116.0,-1.8317147279146002,,,,1.5236346269576961,,3.431208680510616,,1.5236346269576961,,-3.431208680510616,-1.8317147279146002,-1.90757405355292,4.9548433074683125,-1.8317147279146004,-1.9075740535529202,4.9548433074683125,-2.220446049250313e-16,-2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,291,292,116.4,-2.4810003599729695,,,,3.1100610704218146,,3.431208680510616,,3.1100610704218146,,-3.431208680510616,-2.4810003599729695,-0.32114761008880155,6.541269750932431,-2.4810003599729695,-0.32114761008880155,6.541269750932431,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,292,293,116.80000000000001,-2.910885413763801,,,,3.0969774437563586,,3.431208680510616,,3.0969774437563586,,-3.431208680510616,-2.910885413763801,-0.3342312367542575,6.528186124266975,-2.910885413763801,-0.3342312367542575,6.528186124266975,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,293,294,117.2,-2.5471381785489555,,,,0.7839132086216859,,3.431208680510616,,0.7839132086216859,,-3.431208680510616,-2.5471381785489555,-2.6472954718889303,4.215121889132302,-2.5471381785489555,-2.6472954718889303,4.215121889132302,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,294,295,117.60000000000001,-1.3770100046861622,,,,-0.7115455856701473,,3.431208680510616,,-0.7115455856701473,,-3.431208680510616,-1.3770100046861622,-4.142754266180764,2.719663094840469,-1.3770100046861622,-4.142754266180764,2.719663094840469,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,295,296,118.0,-0.17413196501688125,,,,-1.0939170965397826,,3.431208680510616,,-1.0939170965397826,,-3.431208680510616,-0.17413196501688125,-4.525125777050398,2.3372915839708335,-0.17413196501688125,-4.525125777050398,2.3372915839708335,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,296,297,118.4,0.9590167730715966,,,,-0.8402642649700618,,3.431208680510616,,-0.8402642649700618,,-3.431208680510616,0.9590167730715966,-4.271472945480678,2.5909444155405543,0.9590167730715967,-4.271472945480678,2.5909444155405543,1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,297,298,118.80000000000001,1.7337600079944575,,,,-1.2471443107703746,,3.431208680510616,,-1.2471443107703746,,-3.431208680510616,1.7337600079944575,-4.678352991280991,2.1840643697402413,1.7337600079944577,-4.678352991280991,2.1840643697402413,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,298,299,119.2,2.378569917557714,,,,-2.6765555113195294,,3.431208680510616,,-2.6765555113195294,,-3.431208680510616,2.378569917557714,-6.107764191830146,0.7546531691910867,2.378569917557714,-6.107764191830146,0.7546531691910867,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,299,300,119.60000000000001,2.8718692613934795,,,,-3.3143575522811743,,3.431208680510616,,-3.3143575522811743,,-3.431208680510616,2.8718692613934795,-6.7455662327917905,0.11685112822944177,2.8718692613934795,-6.74556623279179,0.11685112822944177,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,300,301,120.0,2.7541387344549286,,,,-1.426263213365892,,3.431208680510616,,-1.426263213365892,,-3.431208680510616,2.7541387344549286,-4.857471893876508,2.004945467144724,2.7541387344549286,-4.857471893876508,2.004945467144724,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,301,302,120.4,1.7009501937773461,,,,0.4190079492204755,,3.431208680510616,,0.4190079492204755,,-3.431208680510616,1.7009501937773461,-3.0122007312901404,3.850216629731092,1.7009501937773464,-3.0122007312901404,3.8502166297310914,2.220446049250313e-16,0.0,-4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,302,303,120.80000000000001,0.49559955351161167,,,,1.048887954147518,,3.431208680510616,,1.048887954147518,,-3.431208680510616,0.49559955351161167,-2.382320726363098,4.480096634658134,0.49559955351161167,-2.382320726363098,4.480096634658134,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,303,304,121.2,-0.7208128545477079,,,,0.9048935364900158,,3.431208680510616,,0.9048935364900158,,-3.431208680510616,-0.7208128545477079,-2.5263151440206,4.336102217000632,-0.7208128545477079,-2.5263151440206,4.336102217000632,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,304,305,121.60000000000001,-1.5884929874580305,,,,0.8391117639797199,,3.431208680510616,,0.8391117639797199,,-3.431208680510616,-1.5884929874580305,-2.5920969165308962,4.270320444490336,-1.5884929874580307,-2.5920969165308962,4.270320444490336,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,305,306,122.0,-2.2229723940409007,,,,2.1295849356284706,,3.431208680510616,,2.1295849356284706,,-3.431208680510616,-2.2229723940409007,-1.3016237448821455,5.560793616139087,-2.2229723940409007,-1.3016237448821455,5.560793616139087,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,306,307,122.4,-2.7685050022477324,,,,3.3659344836552916,,3.431208680510616,,3.3659344836552916,,-3.431208680510616,-2.7685050022477324,-0.06527419685532454,6.797143164165908,-2.7685050022477324,-0.06527419685532454,6.797143164165907,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,307,308,122.80000000000001,-2.9277214651934598,,,,2.251374906860953,,3.431208680510616,,2.251374906860953,,-3.431208680510616,-2.9277214651934598,-1.179833773649663,5.682583587371569,-2.9277214651934598,-1.179833773649663,5.682583587371569,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,308,309,123.2,-2.0798196922904197,,,,-0.003040653867781663,,3.431208680510616,,-0.003040653867781663,,-3.431208680510616,-2.0798196922904197,-3.4342493343783977,3.4281680266428345,-2.0798196922904197,-3.4342493343783973,3.4281680266428345,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,309,310,123.60000000000001,-0.8827809733019103,,,,-0.980452232196847,,3.431208680510616,,-0.980452232196847,,-3.431208680510616,-0.8827809733019103,-4.411660912707463,2.4507564483137694,-0.8827809733019103,-4.411660912707463,2.4507564483137694,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,310,311,124.0,0.3621368875326285,,,,-0.9666599772804603,,3.431208680510616,,-0.9666599772804603,,-3.431208680510616,0.3621368875326285,-4.397868657791077,2.4645487032301556,0.3621368875326285,-4.397868657791077,2.4645487032301556,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,311,312,124.4,1.2993611366745288,,,,-0.6594656340487265,,3.431208680510616,,-0.6594656340487265,,-3.431208680510616,1.2993611366745288,-4.090674314559343,2.7717430464618897,1.2993611366745288,-4.090674314559343,2.7717430464618897,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,312,313,124.80000000000001,1.9696040990023103,,,,-1.6987404815209255,,3.431208680510616,,-1.6987404815209255,,-3.431208680510616,1.9696040990023103,-5.129949162031542,1.7324681989896906,1.9696040990023103,-5.129949162031542,1.7324681989896906,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,313,314,125.2,2.5745860057332335,,,,-3.2520980633457865,,3.431208680510616,,-3.2520980633457865,,-3.431208680510616,2.5745860057332335,-6.683306743856402,0.17911061716482957,2.5745860057332335,-6.683306743856403,0.17911061716482957,0.0,-8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,314,315,125.60000000000001,2.9191718384521383,,,,-2.693668247953136,,3.431208680510616,,-2.693668247953136,,-3.431208680510616,2.9191718384521383,-6.1248769284637525,0.7375404325574801,2.9191718384521383,-6.1248769284637525,0.7375404325574801,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,315,316,126.0,2.3176806001091252,,,,-0.3895462482105666,,3.431208680510616,,-0.3895462482105666,,-3.431208680510616,2.3176806001091252,-3.8207549287211826,3.0416624323000496,2.3176806001091252,-3.820754928721182,3.0416624323000496,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,316,317,126.4,1.1376603935551222,,,,0.889854388163999,,3.431208680510616,,0.889854388163999,,-3.431208680510616,1.1376603935551222,-2.5413542923466172,4.321063068674615,1.1376603935551222,-2.5413542923466172,4.321063068674615,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,317,318,126.80000000000001,-0.06511689497510018,,,,1.044427151106961,,3.431208680510616,,1.044427151106961,,-3.431208680510616,-0.06511689497510018,-2.386781529403655,4.475635831617577,-0.06511689497510018,-2.386781529403655,4.475635831617577,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,318,319,127.2,-1.0828100491891084,,,,0.7619289096777808,,3.431208680510616,,0.7619289096777808,,-3.431208680510616,-1.0828100491891084,-2.6692797708328353,4.193137590188397,-1.0828100491891084,-2.6692797708328353,4.193137590188397,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,319,320,127.60000000000001,-1.7866310311862152,,,,1.544590962006385,,3.431208680510616,,1.544590962006385,,-3.431208680510616,-1.7866310311862152,-1.8866177185042312,4.975799642517001,-1.7866310311862155,-1.8866177185042312,4.975799642517001,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,320,321,128.0,-2.438892382676606,,,,3.106029143905669,,3.431208680510616,,3.106029143905669,,-3.431208680510616,-2.438892382676606,-0.32517953660494703,6.537237824416286,-2.438892382676606,-0.32517953660494703,6.537237824416285,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,321,322,128.4,-2.8490690727551162,,,,3.0617339025733705,,3.431208680510616,,3.0617339025733705,,-3.431208680510616,-2.8490690727551162,-0.3694747779372456,6.492942583083987,-2.8490690727551162,-0.3694747779372456,6.492942583083987,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,322,323,128.8,-2.489246913635062,,,,0.7285173426581719,,3.431208680510616,,0.7285173426581719,,-3.431208680510616,-2.489246913635062,-2.7026913378524444,4.159726023168788,-2.489246913635062,-2.7026913378524444,4.159726023168788,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,323,324,129.20000000000002,-1.3070872358047263,,,,-0.7614557296146391,,3.431208680510616,,-0.7614557296146391,,-3.431208680510616,-1.3070872358047263,-4.192664410125255,2.669752950895977,-1.3070872358047263,-4.192664410125255,2.669752950895977,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,324,325,129.6,-0.10894364844365644,,,,-1.0701795345305174,,3.431208680510616,,-1.0701795345305174,,-3.431208680510616,-0.10894364844365644,-4.501388215041134,2.3610291459800985,-0.10894364844365645,-4.501388215041134,2.3610291459800985,-1.3877787807814457e-17,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,325,326,130.0,0.9983577988261423,,,,-0.8297912738041945,,3.431208680510616,,-0.8297912738041945,,-3.431208680510616,0.9983577988261423,-4.26099995431481,2.6014174067064215,0.9983577988261423,-4.26099995431481,2.6014174067064215,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,326,327,130.4,1.7630393715970272,,,,-1.3103391220088227,,3.431208680510616,,-1.3103391220088227,,-3.431208680510616,1.7630393715970272,-4.741547802519439,2.120869558501793,1.7630393715970274,-4.741547802519439,2.120869558501793,2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,327,328,130.8,2.4107504533171773,,,,-2.7484706596418347,,3.431208680510616,,-2.7484706596418347,,-3.431208680510616,2.4107504533171773,-6.17967934015245,0.6827380208687814,2.4107504533171773,-6.17967934015245,0.6827380208687814,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,328,329,131.20000000000002,2.8969286009866204,,,,-3.3172475588926886,,3.431208680510616,,-3.3172475588926886,,-3.431208680510616,2.8969286009866204,-6.748456239403305,0.11396112161792749,2.8969286009866204,-6.748456239403305,0.11396112161792747,0.0,0.0,-1.3877787807814457e-17 +karman,karman_re400,sr_closed_loop_400,329,330,131.6,2.7508370760433265,,,,-1.399491239568185,,3.431208680510616,,-1.399491239568185,,-3.431208680510616,2.7508370760433265,-4.830699920078802,2.031717440942431,2.7508370760433265,-4.830699920078802,2.031717440942431,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,330,331,132.0,1.6889448412958372,,,,0.40676038057198943,,3.431208680510616,,0.40676038057198943,,-3.431208680510616,1.6889448412958372,-3.024448299938627,3.8379690610826054,1.6889448412958374,-3.024448299938627,3.837969061082606,2.220446049250313e-16,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,331,332,132.4,0.4797725209847188,,,,1.0405357474988848,,3.431208680510616,,1.0405357474988848,,-3.431208680510616,0.4797725209847188,-2.3906729330117313,4.471744428009501,0.47977252098471884,-2.3906729330117313,4.471744428009501,5.551115123125783e-17,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,332,333,132.8,-0.7463790845318556,,,,0.8992771875423659,,3.431208680510616,,0.8992771875423659,,-3.431208680510616,-0.7463790845318556,-2.5319314929682504,4.330485868052982,-0.7463790845318556,-2.5319314929682504,4.330485868052982,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,333,334,133.20000000000002,-1.6107677931859763,,,,0.8158065801491298,,3.431208680510616,,0.8158065801491298,,-3.431208680510616,-1.6107677931859763,-2.6154021003614862,4.2470152606597456,-1.6107677931859763,-2.6154021003614862,4.2470152606597456,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,334,335,133.6,-2.241657075814357,,,,2.1024410252496004,,3.431208680510616,,2.1024410252496004,,-3.431208680510616,-2.241657075814357,-1.3287676552610157,5.533649705760217,-2.241657075814357,-1.3287676552610157,5.533649705760217,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,335,336,134.0,-2.7895155234853424,,,,3.3494334707970075,,3.431208680510616,,3.3494334707970075,,-3.431208680510616,-2.7895155234853424,-0.08177520971360863,6.780642151307624,-2.7895155234853424,-0.08177520971360863,6.780642151307624,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,336,337,134.4,-2.9438268734072106,,,,2.2766198549079166,,3.431208680510616,,2.2766198549079166,,-3.431208680510616,-2.9438268734072106,-1.1545888256026995,5.707828535418533,-2.9438268734072106,-1.1545888256026995,5.707828535418533,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,337,338,134.8,-2.102646254413849,,,,0.05055140341230161,,3.431208680510616,,0.05055140341230161,,-3.431208680510616,-2.102646254413849,-3.3806572770983143,3.481760083922918,-2.102646254413849,-3.3806572770983143,3.4817600839229184,0.0,0.0,4.440892098500626e-16 +karman,karman_re400,sr_closed_loop_400,338,339,135.20000000000002,-0.92216773085716,,,,-0.970024305798898,,3.431208680510616,,-0.970024305798898,,-3.431208680510616,-0.92216773085716,-4.401232986309514,2.461184374711718,-0.92216773085716,-4.401232986309514,2.461184374711718,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,339,340,135.6,0.3208349554235764,,,,-0.9891957106480137,,3.431208680510616,,-0.9891957106480137,,-3.431208680510616,0.3208349554235764,-4.4204043911586295,2.4420129698626023,0.3208349554235764,-4.4204043911586295,2.4420129698626023,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,340,341,136.0,1.2622917382203893,,,,-0.6704422544452477,,3.431208680510616,,-0.6704422544452477,,-3.431208680510616,1.2622917382203893,-4.101650934955864,2.760766426065368,1.2622917382203893,-4.101650934955864,2.760766426065368,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,341,342,136.4,1.938226489343751,,,,-1.695004368667162,,3.431208680510616,,-1.695004368667162,,-3.431208680510616,1.938226489343751,-5.126213049177778,1.736204311843454,1.938226489343751,-5.126213049177778,1.736204311843454,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,342,343,136.8,2.5410531406671275,,,,-3.2264569716294877,,3.431208680510616,,-3.2264569716294877,,-3.431208680510616,2.5410531406671275,-6.657665652140103,0.20475170888112837,2.5410531406671275,-6.657665652140103,0.20475170888112837,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,343,344,137.20000000000002,2.8746999266576374,,,,-2.6205986194446007,,3.431208680510616,,-2.6205986194446007,,-3.431208680510616,2.8746999266576374,-6.051807299955216,0.8106100610660154,2.8746999266576374,-6.051807299955216,0.8106100610660154,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,344,345,137.6,2.267831028150093,,,,-0.3198727676005193,,3.431208680510616,,-0.3198727676005193,,-3.431208680510616,2.267831028150093,-3.7510814481111354,3.111335912910097,2.267831028150093,-3.7510814481111354,3.111335912910097,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,345,346,138.0,1.0790057183681174,,,,0.9084524351888574,,3.431208680510616,,0.9084524351888574,,-3.431208680510616,1.0790057183681174,-2.5227562453217587,4.3396611156994735,1.0790057183681174,-2.5227562453217587,4.3396611156994735,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,346,347,138.4,-0.10420981599836902,,,,0.9974279475766482,,3.431208680510616,,0.9974279475766482,,-3.431208680510616,-0.10420981599836902,-2.433780732933968,4.428636628087264,-0.10420981599836904,-2.433780732933968,4.428636628087264,-1.3877787807814457e-17,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,347,348,138.8,-1.0986162915066036,,,,0.7646547191534849,,3.431208680510616,,0.7646547191534849,,-3.431208680510616,-1.0986162915066036,-2.666553961357131,4.195863399664101,-1.0986162915066036,-2.666553961357131,4.195863399664101,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,348,349,139.20000000000002,-1.8002093356129087,,,,1.611908286034328,,3.431208680510616,,1.611908286034328,,-3.431208680510616,-1.8002093356129087,-1.8193003944762882,5.043116966544944,-1.8002093356129087,-1.8193003944762882,5.043116966544944,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,349,350,139.6,-2.4567518496462912,,,,3.1666336444638428,,3.431208680510616,,3.1666336444638428,,-3.431208680510616,-2.4567518496462912,-0.26457503604677335,6.597842324974459,-2.4567518496462912,-0.26457503604677335,6.597842324974459,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,350,351,140.0,-2.8521639168680006,,,,3.0521166091375185,,3.431208680510616,,3.0521166091375185,,-3.431208680510616,-2.8521639168680006,-0.37909207137309764,6.483325289648135,-2.8521639168680006,-0.37909207137309764,6.483325289648134,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,351,352,140.4,-2.4719054592079144,,,,0.7057151790748856,,3.431208680510616,,0.7057151790748856,,-3.431208680510616,-2.4719054592079144,-2.7254935014357304,4.136923859585502,-2.4719054592079144,-2.7254935014357304,4.136923859585502,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,352,353,140.8,-1.2818731628859026,,,,-0.7864572365673413,,3.431208680510616,,-0.7864572365673413,,-3.431208680510616,-1.2818731628859026,-4.217665917077958,2.644751443943275,-1.2818731628859026,-4.217665917077958,2.644751443943275,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,353,354,141.20000000000002,-0.06897953661697652,,,,-1.0718801205360813,,3.431208680510616,,-1.0718801205360813,,-3.431208680510616,-0.06897953661697652,-4.503088801046697,2.359328559974535,-0.06897953661697652,-4.503088801046697,2.359328559974535,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,354,355,141.6,1.0372940315447479,,,,-0.8106606708395454,,3.431208680510616,,-0.8106606708395454,,-3.431208680510616,1.0372940315447479,-4.241869351350162,2.6205480096710705,1.0372940315447479,-4.241869351350162,2.6205480096710705,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,355,356,142.0,1.7891699009219975,,,,-1.2997129715303684,,3.431208680510616,,-1.2997129715303684,,-3.431208680510616,1.7891699009219975,-4.730921652040984,2.131495708980248,1.7891699009219975,-4.730921652040984,2.131495708980248,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,356,357,142.4,2.43466596509504,,,,-2.7600909754395664,,3.431208680510616,,-2.7600909754395664,,-3.431208680510616,2.43466596509504,-6.191299655950182,0.6711177050710497,2.43466596509504,-6.191299655950182,0.6711177050710497,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,357,358,142.8,2.925952488102539,,,,-3.3219851448659328,,3.431208680510616,,-3.3219851448659328,,-3.431208680510616,2.925952488102539,-6.753193825376549,0.10922353564468334,2.925952488102539,-6.753193825376549,0.10922353564468334,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,358,359,143.20000000000002,2.768172358897369,,,,-1.406382342913739,,3.431208680510616,,-1.406382342913739,,-3.431208680510616,2.768172358897369,-4.8375910234243555,2.024826337596877,2.768172358897369,-4.8375910234243555,2.024826337596877,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,359,360,143.6,1.7088331130241323,,,,0.3824567685386699,,3.431208680510616,,0.3824567685386699,,-3.431208680510616,1.7088331130241323,-3.048751911971946,3.813665449049286,1.7088331130241323,-3.048751911971946,3.813665449049286,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,360,361,144.0,0.5043291437686644,,,,1.0562258990263154,,3.431208680510616,,1.0562258990263154,,-3.431208680510616,0.5043291437686644,-2.3749827814843005,4.487434579536932,0.5043291437686644,-2.3749827814843005,4.487434579536932,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,361,362,144.4,-0.7284021800739551,,,,0.9146186961017801,,3.431208680510616,,0.9146186961017801,,-3.431208680510616,-0.7284021800739551,-2.516589984408836,4.345827376612396,-0.7284021800739551,-2.516589984408836,4.345827376612396,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,362,363,144.8,-1.5954771658214668,,,,0.808200987087899,,3.431208680510616,,0.808200987087899,,-3.431208680510616,-1.5954771658214668,-2.623007693422717,4.239409667598515,-1.595477165821467,-2.623007693422717,4.239409667598515,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,363,364,145.20000000000002,-2.2232757335189683,,,,2.091431519752166,,3.431208680510616,,2.091431519752166,,-3.431208680510616,-2.2232757335189683,-1.3397771607584503,5.5226402002627815,-2.2232757335189683,-1.3397771607584503,5.5226402002627815,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,364,365,145.6,-2.7693586329276694,,,,3.3356044485108494,,3.431208680510616,,3.3356044485108494,,-3.431208680510616,-2.7693586329276694,-0.09560423199976675,6.7668131290214655,-2.7693586329276694,-0.09560423199976675,6.766813129021465,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,365,366,146.0,-2.9188163736012296,,,,2.218575977091693,,3.431208680510616,,2.218575977091693,,-3.431208680510616,-2.9188163736012296,-1.2126327034189233,5.649784657602309,-2.9188163736012296,-1.2126327034189233,5.649784657602309,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,366,367,146.4,-2.0697195355062004,,,,-0.0025391560788535234,,3.431208680510616,,-0.0025391560788535234,,-3.431208680510616,-2.0697195355062004,-3.4337478365894696,3.4286695244317626,-2.0697195355062004,-3.433747836589469,3.4286695244317626,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,367,368,146.8,-0.888444435020938,,,,-0.9847178560736498,,3.431208680510616,,-0.9847178560736498,,-3.431208680510616,-0.888444435020938,-4.415926536584266,2.4464908244369665,-0.8884444350209378,-4.415926536584266,2.4464908244369665,1.1102230246251565e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,368,369,147.20000000000002,0.33978043056051327,,,,-0.984540641918728,,3.431208680510616,,-0.984540641918728,,-3.431208680510616,0.33978043056051327,-4.4157493224293445,2.446668038591888,0.33978043056051327,-4.4157493224293445,2.446668038591888,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,369,370,147.6,1.2719863915717644,,,,-0.6998397077117057,,3.431208680510616,,-0.6998397077117057,,-3.431208680510616,1.2719863915717644,-4.131048388222322,2.7313689727989106,1.2719863915717644,-4.131048388222322,2.7313689727989106,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,370,371,148.0,1.9464244696175232,,,,-1.762047650187494,,3.431208680510616,,-1.762047650187494,,-3.431208680510616,1.9464244696175232,-5.1932563306981105,1.6691610303231221,1.9464244696175235,-5.1932563306981105,1.669161030323122,2.220446049250313e-16,0.0,-2.220446049250313e-16 +karman,karman_re400,sr_closed_loop_400,371,372,148.4,2.5443320663777973,,,,-3.270720012967142,,3.431208680510616,,-3.270720012967142,,-3.431208680510616,2.5443320663777973,-6.7019286934777575,0.16048866754347424,2.5443320663777973,-6.701928693477757,0.16048866754347424,0.0,8.881784197001252e-16,0.0 +karman,karman_re400,sr_closed_loop_400,372,373,148.8,2.8633213218448055,,,,-2.592704289332389,,3.431208680510616,,-2.592704289332389,,-3.431208680510616,2.8633213218448055,-6.023912969843005,0.8385043911782271,2.8633213218448055,-6.023912969843005,0.8385043911782271,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,373,374,149.20000000000002,2.236688115868739,,,,-0.24602866451630762,,3.431208680510616,,-0.24602866451630762,,-3.431208680510616,2.236688115868739,-3.677237345026924,3.1851800159943084,2.236688115868739,-3.6772373450269233,3.1851800159943084,0.0,4.440892098500626e-16,0.0 +karman,karman_re400,sr_closed_loop_400,374,375,149.6,1.0289897803340973,,,,0.9598000843316066,,3.431208680510616,,0.9598000843316066,,-3.431208680510616,1.0289897803340973,-2.4714085961790095,4.391008764842223,1.0289897803340973,-2.4714085961790095,4.391008764842223,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,375,376,150.0,-0.16686224282595,,,,0.9877502886662032,,3.431208680510616,,0.9877502886662032,,-3.431208680510616,-0.16686224282595,-2.443458391844413,4.41895896917682,-0.16686224282595,-2.443458391844413,4.41895896917682,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,376,377,150.4,-1.1513418165324323,,,,0.7509940046407515,,3.431208680510616,,0.7509940046407515,,-3.431208680510616,-1.1513418165324323,-2.6802146758698644,4.182202685151368,-1.1513418165324323,-2.6802146758698644,4.182202685151368,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,377,378,150.8,-1.8397462977135774,,,,1.632201438214598,,3.431208680510616,,1.632201438214598,,-3.431208680510616,-1.8397462977135774,-1.7990072422960182,5.063410118725214,-1.8397462977135774,-1.7990072422960184,5.063410118725214,0.0,-2.220446049250313e-16,0.0 +karman,karman_re400,sr_closed_loop_400,378,379,151.20000000000002,-2.4898842284576883,,,,3.2109746356703286,,3.431208680510616,,3.2109746356703286,,-3.431208680510616,-2.4898842284576883,-0.22023404484028752,6.642183316180945,-2.4898842284576883,-0.22023404484028752,6.642183316180946,0.0,0.0,8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,379,380,151.6,-2.8901392489741444,,,,3.0491260441502948,,3.431208680510616,,3.0491260441502948,,-3.431208680510616,-2.8901392489741444,-0.38208263636032136,6.480334724660911,-2.8901392489741444,-0.38208263636032136,6.48033472466091,0.0,0.0,-8.881784197001252e-16 +karman,karman_re400,sr_closed_loop_400,380,381,152.0,-2.480920262722028,,,,0.6792682501403728,,3.431208680510616,,0.6792682501403728,,-3.431208680510616,-2.480920262722028,-2.7519404303702433,4.110476930650989,-2.480920262722028,-2.7519404303702433,4.110476930650989,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,381,382,152.4,-1.2878785919146605,,,,-0.7794408348974743,,3.431208680510616,,-0.7794408348974743,,-3.431208680510616,-1.2878785919146605,-4.2106495154080905,2.6517678456131417,-1.2878785919146605,-4.2106495154080905,2.6517678456131417,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,382,383,152.8,-0.06933202668084934,,,,-1.0789175321315319,,3.431208680510616,,-1.0789175321315319,,-3.431208680510616,-0.06933202668084934,-4.510126212642148,2.3522911483790843,-0.06933202668084934,-4.510126212642148,2.3522911483790843,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,383,384,153.20000000000002,1.0438180947133344,,,,-0.8042833971957621,,3.431208680510616,,-0.8042833971957621,,-3.431208680510616,1.0438180947133344,-4.235492077706378,2.626925283314854,1.0438180947133344,-4.235492077706378,2.626925283314854,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,384,385,153.60000000000002,1.791774082773154,,,,-1.287272050668179,,3.431208680510616,,-1.287272050668179,,-3.431208680510616,1.791774082773154,-4.718480731178795,2.143936629842437,1.791774082773154,-4.718480731178795,2.143936629842437,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,385,386,154.0,2.4363345986232514,,,,-2.7593410124437376,,3.431208680510616,,-2.7593410124437376,,-3.431208680510616,2.4363345986232514,-6.190549692954354,0.6718676680668785,2.4363345986232514,-6.190549692954354,0.6718676680668785,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,386,387,154.4,2.9303551729159447,,,,-3.313538393552174,,3.431208680510616,,-3.313538393552174,,-3.431208680510616,2.9303551729159447,-6.74474707406279,0.11767028695844228,2.9303551729159447,-6.74474707406279,0.11767028695844228,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,387,388,154.8,2.765085773148495,,,,-1.3793920485849687,,3.431208680510616,,-1.3793920485849687,,-3.431208680510616,2.765085773148495,-4.810600729095585,2.0518166319256474,2.765085773148495,-4.810600729095585,2.0518166319256474,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,388,389,155.20000000000002,1.70450439828837,,,,0.4008212704487087,,3.431208680510616,,0.4008212704487087,,-3.431208680510616,1.70450439828837,-3.0303874100619073,3.832029950959325,1.70450439828837,-3.0303874100619073,3.832029950959325,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,389,390,155.60000000000002,0.5029073065649321,,,,1.0819746285497702,,3.431208680510616,,1.0819746285497702,,-3.431208680510616,0.5029073065649321,-2.349234051960846,4.513183309060386,0.5029073065649321,-2.349234051960846,4.513183309060386,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,390,391,156.0,-0.725139282693435,,,,0.9226609302251377,,3.431208680510616,,0.9226609302251377,,-3.431208680510616,-0.725139282693435,-2.5085477502854783,4.353869610735754,-0.725139282693435,-2.5085477502854783,4.353869610735754,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,391,392,156.4,-1.587783300950795,,,,0.8455593752004567,,3.431208680510616,,0.8455593752004567,,-3.431208680510616,-1.587783300950795,-2.5856493053101595,4.276768055711073,-1.5877833009507951,-2.5856493053101595,4.276768055711073,-2.220446049250313e-16,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,392,393,156.8,-2.215487652258885,,,,2.141946384163453,,3.431208680510616,,2.141946384163453,,-3.431208680510616,-2.215487652258885,-1.2892622963471632,5.573155064674069,-2.215487652258885,-1.2892622963471632,5.573155064674069,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,393,394,157.20000000000002,-2.756058493288753,,,,3.34244142846115,,3.431208680510616,,3.34244142846115,,-3.431208680510616,-2.756058493288753,-0.088767252049466,6.773650108971767,-2.756058493288753,-0.088767252049466,6.773650108971767,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,394,395,157.60000000000002,-2.8899507273957084,,,,2.12033843693,,3.431208680510616,,2.12033843693,,-3.431208680510616,-2.8899507273957084,-1.310870243580616,5.551547117440617,-2.8899507273957084,-1.310870243580616,5.551547117440617,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,395,396,158.0,-2.0134692874408695,,,,-0.1061841638990615,,3.431208680510616,,-0.1061841638990615,,-3.431208680510616,-2.0134692874408695,-3.537392844409678,3.3250245166115544,-2.0134692874408695,-3.537392844409678,3.3250245166115544,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,396,397,158.4,-0.8187814494073846,,,,-1.000347718249406,,3.431208680510616,,-1.000347718249406,,-3.431208680510616,-0.8187814494073846,-4.431556398760022,2.4308609622612103,-0.8187814494073846,-4.431556398760022,2.4308609622612103,0.0,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,397,398,158.8,0.4028083867890632,,,,-0.9568730058586459,,3.431208680510616,,-0.9568730058586459,,-3.431208680510616,0.4028083867890632,-4.3880816863692615,2.4743356746519702,0.4028083867890633,-4.3880816863692615,2.4743356746519702,5.551115123125783e-17,0.0,0.0 +karman,karman_re400,sr_closed_loop_400,398,399,159.20000000000002,1.3222830695823393,,,,-0.7118774815960317,,3.431208680510616,,-0.7118774815960317,,-3.431208680510616,1.3222830695823393,-4.1430861621066475,2.7193311989145843,1.3222830695823393,-4.1430861621066475,2.7193311989145843,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,0,1,0.0,,0.06449227121109816,-0.10162545010085014,-0.04429074574973985,,0.07522004304309605,,-0.04429074574973985,,0.07522004304309605,,-0.03713317888975198,0.030929297293356202,0.030929297293356202,-0.03713317888975198,0.030929297293356202,0.030929297293356202,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,1,2,0.2,,0.06341235502839447,-0.08362625324556987,-0.04354910194993322,,0.061897589259602155,,-0.04354910194993322,,0.061897589259602155,,-0.020213898217175397,0.018348487309668933,0.018348487309668933,-0.020213898217175397,0.018348487309668933,0.018348487309668933,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,2,3,0.4,,0.06158605589771599,-0.07183223810782646,-0.04229487180823011,,0.05316802077619955,,-0.04229487180823011,,0.05316802077619955,,-0.01024618221011047,0.01087314896796944,0.01087314896796944,-0.01024618221011047,0.01087314896796944,0.01087314896796944,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,3,4,0.6000000000000001,,0.06061256839463093,-0.05983745763649053,-0.04162631902384205,,0.04428985194692488,,-0.04162631902384205,,0.04428985194692488,,0.0007751107581404001,0.0026635329230828286,0.0026635329230828286,0.0007751107581404001,0.0026635329230828286,0.0026635329230828286,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,4,5,0.8,,0.06030433988093023,-0.04612394835947402,-0.04141463984931813,,0.03413953273982254,,-0.04141463984931813,,0.03413953273982254,,0.014180391521456212,-0.007275107109495596,-0.007275107109495596,0.014180391521456212,-0.007275107109495597,-0.007275107109495597,0.0,-8.673617379884035e-19,-8.673617379884035e-19 +illusion,illusion_0.75L,sr_closed_loop_400,5,6,1.0,,0.059737429072012634,-0.03445485671107424,-0.041025307887068554,,0.025502428793956512,,-0.041025307887068554,,0.025502428793956512,,0.025282572360938393,-0.015522879093112042,-0.015522879093112042,0.025282572360938393,-0.01552287909311204,-0.01552287909311204,0.0,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_0.75L,sr_closed_loop_400,6,7,1.2000000000000002,,0.05864996400194339,-0.02573153499572325,-0.040278479809445024,,0.019045693455945086,,-0.040278479809445024,,0.019045693455945086,,0.032918429006220135,-0.021232786353499938,-0.021232786353499938,0.032918429006220135,-0.021232786353499938,-0.021232786353499938,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,7,8,1.4000000000000001,,0.056502465029978334,-0.019283017972995243,-0.03880366229753261,,0.014272698821900354,,-0.03880366229753261,,0.014272698821900354,,0.03721944705698309,-0.02453096347563226,-0.02453096347563226,0.03721944705698309,-0.024530963475632255,-0.024530963475632255,0.0,3.469446951953614e-18,3.469446951953614e-18 +illusion,illusion_0.75L,sr_closed_loop_400,8,9,1.6,,0.05229656522143324,-0.015185904178148036,-0.035915216355546724,,0.011240140779647792,,-0.035915216355546724,,0.011240140779647792,,0.037110661043285205,-0.02467507557589893,-0.02467507557589893,0.037110661043285205,-0.02467507557589893,-0.02467507557589893,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,9,10,1.8,,0.04496393753054592,-0.009577800485424013,-0.03087945714539962,,0.007089194331310064,,-0.03087945714539962,,0.007089194331310064,,0.03538613704512191,-0.023790262814089556,-0.023790262814089556,0.03538613704512191,-0.023790262814089556,-0.023790262814089556,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,10,11,2.0,,0.03417306884737543,-0.004555813594343297,-0.02346871455113216,,0.003372073573329819,,-0.02346871455113216,,0.003372073573329819,,0.029617255253032132,-0.020096640977802338,-0.020096640977802338,0.029617255253032132,-0.020096640977802338,-0.020096640977802338,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,11,12,2.2,,0.019741722651575793,0.0005884022478900078,-0.013557835725164483,,-0.00043551730761358387,,-0.013557835725164483,,-0.00043551730761358387,,0.020330124899465802,-0.013993353032778067,-0.013993353032778067,0.020330124899465802,-0.013993353032778067,-0.013993353032778067,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,12,13,2.4000000000000004,,0.0017413475672266414,0.008730587263388254,-0.0011958887617636118,,-0.006462113073958006,,-0.0011958887617636118,,-0.006462113073958006,,0.010471934830614895,-0.007658001835721618,-0.007658001835721618,0.010471934830614895,-0.007658001835721618,-0.007658001835721618,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,13,14,2.6,,-0.018814379051542162,0.021251199451874564,0.012920972751657205,,-0.015729486421965196,,0.012920972751657205,,-0.015729486421965196,,0.002436820400332402,-0.0028085136703079917,-0.0028085136703079917,0.002436820400332402,-0.0028085136703079917,-0.0028085136703079917,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,14,15,2.8000000000000003,,-0.041053613875187425,0.03725881936929004,0.028194001236244527,,-0.027577836003793432,,0.028194001236244527,,-0.027577836003793432,,-0.0037947945058973837,0.000616165232451095,0.000616165232451095,-0.0037947945058973832,0.000616165232451095,0.000616165232451095,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,15,16,3.0,,-0.06421041064199827,0.05348374291907365,0.04409717503857638,,-0.039587027073299516,,0.04409717503857638,,-0.039587027073299516,,-0.010726667722924618,0.0045101479652768645,0.0045101479652768645,-0.010726667722924618,0.0045101479652768645,0.0045101479652768645,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,16,17,3.2,,-0.08780568081015498,0.07028161112012754,0.06030147506227306,,-0.05202029421122247,,0.06030147506227306,,-0.05202029421122247,,-0.01752406969002744,0.00828118085105059,0.00828118085105059,-0.01752406969002744,0.00828118085105059,0.00828118085105059,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,17,18,3.4000000000000004,,-0.11094546599980401,0.08958757391726424,0.07619296598501754,,-0.06630997608862539,,0.07619296598501754,,-0.06630997608862539,,-0.02135789208253977,0.00988298989639215,0.00988298989639215,-0.02135789208253977,0.00988298989639215,0.00988298989639215,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,18,19,3.6,,-0.1330082057103954,0.1092200517012178,0.09134478459388574,,-0.08084133435061709,,0.09134478459388574,,-0.08084133435061709,,-0.023788154009177595,0.010503450243268653,0.010503450243268653,-0.023788154009177595,0.010503450243268653,0.010503450243268653,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,19,20,3.8000000000000003,,-0.15348589171893437,0.12613563698940133,0.10540805089719944,,-0.09336173206805543,,0.10540805089719944,,-0.09336173206805543,,-0.027350254729533036,0.012046318829144018,0.012046318829144018,-0.027350254729533036,0.012046318829144018,0.012046318829144018,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,20,21,4.0,,-0.17208783870066832,0.14122962104759482,0.11818313369000918,,-0.10453383639253724,,0.11818313369000918,,-0.10453383639253724,,-0.030858217653073505,0.01364929729747194,0.01364929729747194,-0.03085821765307351,0.013649297297471942,0.013649297297471942,-3.469446951953614e-18,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_0.75L,sr_closed_loop_400,21,22,4.2,,-0.18833559604792113,0.1552032968412267,0.1293414519839198,,-0.11487672288036266,,0.1293414519839198,,-0.11487672288036266,,-0.03313229920669444,0.014464729103557145,0.014464729103557145,-0.03313229920669444,0.014464729103557145,0.014464729103557145,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,22,23,4.4,,-0.20173774182543075,0.16862599643223433,0.13854551659485073,,-0.12481179367206091,,0.13854551659485073,,-0.12481179367206091,,-0.03311174539319642,0.01373372292278982,0.01373372292278982,-0.03311174539319642,0.01373372292278982,0.01373372292278982,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,23,24,4.6000000000000005,,-0.2119891308678571,0.17998714675997168,0.14558576587020328,,-0.13322096889168772,,0.14558576587020328,,-0.13322096889168772,,-0.032001984107885406,0.012364796978515558,0.012364796978515558,-0.032001984107885406,0.012364796978515558,0.012364796978515558,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,24,25,4.800000000000001,,-0.218831399847055,0.18448783222231835,0.15028476607624403,,-0.1365522383115544,,0.15028476607624403,,-0.1365522383115544,,-0.03434356762473664,0.013732527764689612,0.013732527764689612,-0.03434356762473664,0.01373252776468961,0.01373252776468961,0.0,-1.734723475976807e-18,-1.734723475976807e-18 +illusion,illusion_0.75L,sr_closed_loop_400,25,26,5.0,,-0.22227284190689087,0.1876132252041943,0.15264821261677183,,-0.1388655583941715,,0.15264821261677183,,-0.1388655583941715,,-0.03465961670269657,0.013782654222600332,0.013782654222600332,-0.03465961670269657,0.013782654222600332,0.013782654222600332,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,26,27,5.2,,-0.2218785986061657,0.19093052854497775,0.15237746188233423,,-0.14132092464183008,,0.15237746188233423,,-0.14132092464183008,,-0.030948070061187966,0.01105653724050415,0.01105653724050415,-0.030948070061187966,0.01105653724050415,0.01105653724050415,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,27,28,5.4,,-0.21745388738637672,0.1890579004294829,0.1493387449016556,,-0.13993486271234834,,0.1493387449016556,,-0.13993486271234834,,-0.028395986956893826,0.009403882189307267,0.009403882189307267,-0.028395986956893826,0.009403882189307267,0.009403882189307267,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,28,29,5.6000000000000005,,-0.20927812340240678,0.18272645082865108,0.14372395297195875,,-0.13524851779552738,,0.14372395297195875,,-0.13524851779552738,,-0.026551672573755708,0.008475435176431373,0.008475435176431373,-0.02655167257375571,0.008475435176431373,0.008475435176431373,-3.469446951953614e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,29,30,5.800000000000001,,-0.19739787584673635,0.17349624753016343,0.1355650679761142,,-0.12841660424710255,,0.1355650679761142,,-0.12841660424710255,,-0.023901628316572915,0.00714846372901165,0.00714846372901165,-0.023901628316572915,0.00714846372901165,0.00714846372901165,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,30,31,6.0,,-0.18212403129199764,0.1614178968270036,0.1250755945385813,,-0.11947657929390738,,0.1250755945385813,,-0.11947657929390738,,-0.02070613446499403,0.005599015244673919,0.005599015244673919,-0.02070613446499403,0.005599015244673919,0.005599015244673919,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,31,32,6.2,,-0.16381234434558722,0.14806022384398831,0.11249985087873131,,-0.10958963920418663,,0.11249985087873131,,-0.10958963920418663,,-0.01575212050159891,0.00291021167454468,0.00291021167454468,-0.01575212050159891,0.00291021167454468,0.00291021167454468,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,32,33,6.4,,-0.14285493186108497,0.12951415156316443,0.09810712737105338,,-0.09586240499405964,,0.09810712737105338,,-0.09586240499405964,,-0.013340780297920546,0.0022447223769937463,0.0022447223769937463,-0.013340780297920548,0.0022447223769937463,0.0022447223769937463,-1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,33,34,6.6000000000000005,,-0.12003007349364411,0.10868693565957832,0.08243191575667036,,-0.0804467381981839,,0.08243191575667036,,-0.0804467381981839,,-0.011343137834065792,0.001985177558486456,0.001985177558486456,-0.011343137834065792,0.001985177558486456,0.001985177558486456,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,34,35,6.800000000000001,,-0.09576369660645366,0.08772489732124157,0.06576672613325138,,-0.06493127996881336,,0.06576672613325138,,-0.06493127996881336,,-0.00803879928521209,0.0008354461644380223,0.0008354461644380223,-0.00803879928521209,0.0008354461644380224,0.0008354461644380224,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,35,36,7.0,,-0.07047896418141385,0.06671682663358797,0.04840217013053261,,-0.04938175000550657,,0.04840217013053261,,-0.04938175000550657,,-0.0037621375478258806,-0.0009795798749739626,-0.0009795798749739626,-0.0037621375478258806,-0.0009795798749739626,-0.0009795798749739626,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,36,37,7.2,,-0.044664321127783395,0.043619312385819085,0.030673692428666816,,-0.032285677966646636,,0.030673692428666816,,-0.032285677966646636,,-0.0010450087419643095,-0.0016119855379798202,-0.0016119855379798202,-0.0010450087419643095,-0.00161198553797982,-0.00161198553797982,0.0,2.168404344971009e-19,2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,37,38,7.4,,-0.01892644281609564,0.01966821876002005,0.012997933720939098,,-0.01455781263690916,,0.012997933720939098,,-0.01455781263690916,,0.0007417759439244109,-0.0015598789159700626,-0.0015598789159700626,0.0007417759439244109,-0.0015598789159700626,-0.0015598789159700626,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,38,39,7.6000000000000005,,0.006394651855127557,-0.0028107127926502115,-0.0043915944368977085,,0.002080403452433624,,-0.0043915944368977085,,0.002080403452433624,,0.0035839390624773453,-0.0023111909844640843,-0.0023111909844640843,0.0035839390624773453,-0.0023111909844640843,-0.0023111909844640843,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,39,40,7.800000000000001,,0.031009340784706244,-0.023709587147016552,-0.02129599101986839,,0.01754910963703277,,-0.02129599101986839,,0.01754910963703277,,0.007299753637689692,-0.003746881382835618,-0.003746881382835618,0.007299753637689693,-0.003746881382835618,-0.003746881382835618,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,40,41,8.0,,0.054545708366940164,-0.044144966665499635,-0.03745983907299375,,0.03267475115160297,,-0.03745983907299375,,0.03267475115160297,,0.010400741701440529,-0.0047850879213907835,-0.0047850879213907835,0.010400741701440529,-0.0047850879213907835,-0.0047850879213907835,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,41,42,8.200000000000001,,0.07666522421630913,-0.06371336041934289,-0.05265064929248486,,0.04715867637887267,,-0.05265064929248486,,0.04715867637887267,,0.012951863796966237,-0.005491972913612184,-0.005491972913612184,0.012951863796966239,-0.005491972913612184,-0.005491972913612184,1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,42,43,8.4,,0.09707699036334605,-0.08169713054179616,-0.06666864443739744,,0.06046971176760314,,-0.06666864443739744,,0.06046971176760314,,0.015379859821549893,-0.006198932669794294,-0.006198932669794294,0.015379859821549893,-0.006198932669794294,-0.006198932669794294,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,43,44,8.6,,0.11553901712292404,-0.09711883127972387,-0.07934763554560094,,0.07188438193293573,,-0.07934763554560094,,0.07188438193293573,,0.018420185843200168,-0.007463253612665213,-0.007463253612665213,0.018420185843200168,-0.007463253612665213,-0.007463253612665213,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,44,45,8.8,,0.1317572168548582,-0.11018600251054039,-0.09048565483622849,,0.08155630153041954,,-0.09048565483622849,,0.08155630153041954,,0.0215712143443178,-0.008929353305808949,-0.008929353305808949,0.0215712143443178,-0.008929353305808949,-0.008929353305808949,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,45,46,9.0,,0.14545345027255274,-0.12173653213147798,-0.09989168722802631,,0.09010564949783595,,-0.09989168722802631,,0.09010564949783595,,0.023716918141074766,-0.009786037730190364,-0.009786037730190364,0.023716918141074766,-0.009786037730190364,-0.009786037730190364,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,46,47,9.200000000000001,,0.15632895155210327,-0.13177775046933274,-0.10736055214824101,,0.09753785151838318,,-0.10736055214824101,,0.09753785151838318,,0.024551201082770535,-0.009822700629857836,-0.009822700629857836,0.024551201082770535,-0.009822700629857836,-0.009822700629857836,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,47,48,9.4,,0.16406730535829997,-0.1386830685228651,-0.11267494803654723,,0.10264895627312244,,-0.11267494803654723,,0.10264895627312244,,0.025384236835434865,-0.010025991763424794,-0.010025991763424794,0.025384236835434865,-0.010025991763424794,-0.010025991763424794,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,48,49,9.600000000000001,,0.1683950505882666,-0.1418152060062399,-0.11564707260357776,,0.10496726842901002,,-0.11564707260357776,,0.10496726842901002,,0.026579844582026696,-0.010679804174567736,-0.010679804174567736,0.026579844582026696,-0.010679804174567736,-0.010679804174567736,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,49,50,9.8,,0.16911442765749699,-0.14315646053482547,-0.11614111237412927,,0.10596002391763845,,-0.11614111237412927,,0.10596002391763845,,0.02595796712267151,-0.010181088456490822,-0.010181088456490822,0.02595796712267151,-0.010181088456490822,-0.010181088456490822,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,50,51,10.0,,0.16612017743230242,-0.1411315328632127,-0.11408477953075481,,0.10446123452515146,,-0.11408477953075481,,0.10446123452515146,,0.024988644569089724,-0.009623545005603348,-0.009623545005603348,0.02498864456908972,-0.009623545005603348,-0.009623545005603348,-3.469446951953614e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,51,52,10.200000000000001,,0.15949076581234176,-0.136266854616188,-0.10953196135555121,,0.10086054880352485,,-0.10953196135555121,,0.10086054880352485,,0.023223911196153746,-0.008671412552026359,-0.008671412552026359,0.023223911196153746,-0.008671412552026359,-0.008671412552026359,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,52,53,10.4,,0.14932103234029218,-0.12803703062910624,-0.1025477899022181,,0.0947690853568088,,-0.1025477899022181,,0.0947690853568088,,0.02128400171118594,-0.007778704545409312,-0.007778704545409312,0.02128400171118594,-0.0077787045454093115,-0.0077787045454093115,0.0,8.673617379884035e-19,8.673617379884035e-19 +illusion,illusion_0.75L,sr_closed_loop_400,53,54,10.600000000000001,,0.1359201624310697,-0.1172366202589469,-0.09334460150725624,,0.08677495266543792,,-0.09334460150725624,,0.08677495266543792,,0.018683542172122786,-0.006569648841818321,-0.006569648841818321,0.018683542172122786,-0.006569648841818321,-0.006569648841818321,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,54,55,10.8,,0.11969515806827082,-0.10355648049213022,-0.08220190906479374,,0.076649332546911,,-0.08220190906479374,,0.076649332546911,,0.016138677576140598,-0.00555257651788274,-0.00555257651788274,0.016138677576140598,-0.00555257651788274,-0.00555257651788274,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,55,56,11.0,,0.10120123460151441,-0.0877346685867761,-0.06950101255736388,,0.06493851236004375,,-0.06950101255736388,,0.06493851236004375,,0.013466566014738307,-0.00456250019732013,-0.00456250019732013,0.013466566014738309,-0.00456250019732013,-0.00456250019732013,1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,56,57,11.200000000000001,,0.08095618191066331,-0.07024508716601957,-0.05559750963240767,,0.05199326029995929,,-0.05559750963240767,,0.05199326029995929,,0.01071109474464374,-0.003604249332448378,-0.003604249332448378,0.01071109474464374,-0.0036042493324483778,-0.0036042493324483778,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,57,58,11.4,,0.05951096245104592,-0.0523910022410951,-0.040869779552561505,,0.03877821391920358,,-0.040869779552561505,,0.03877821391920358,,0.007119960209950822,-0.0020915656333579252,-0.0020915656333579252,0.007119960209950822,-0.0020915656333579252,-0.0020915656333579252,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,58,59,11.600000000000001,,0.037385067260241274,-0.032914248838074076,-0.02567458825322513,,0.024362118070563855,,-0.02567458825322513,,0.024362118070563855,,0.0044708184221671984,-0.0013124701826612746,-0.0013124701826612746,0.0044708184221671984,-0.0013124701826612746,-0.0013124701826612746,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,59,60,11.8,,0.015212815521670675,-0.013517813585419237,-0.010447561107013134,,0.01000547125483558,,-0.010447561107013134,,0.01000547125483558,,0.0016950019362514373,-0.0004420898521775539,-0.0004420898521775539,0.0016950019362514375,-0.00044208985217755384,-0.00044208985217755384,2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,60,61,12.0,,-0.006592624084348219,0.004890203894470741,0.004527553948095892,,-0.0036195790234293673,,0.004527553948095892,,-0.0036195790234293673,,-0.001702420189877478,0.0009079749246665245,0.0009079749246665245,-0.001702420189877478,0.0009079749246665245,0.0009079749246665245,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,61,62,12.200000000000001,,-0.02763934734895001,0.022574030525920368,0.018981612573607583,,-0.016708605434276838,,0.018981612573607583,,-0.016708605434276838,,-0.005065316823029641,0.0022730071393307454,0.0022730071393307454,-0.005065316823029641,0.0022730071393307454,0.0022730071393307454,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,62,63,12.4,,-0.0474325300214403,0.039605661797020304,0.0325747890095239,,-0.02931489683111623,,0.0325747890095239,,-0.02931489683111623,,-0.007826868224419997,0.003259892178407671,0.003259892178407671,-0.007826868224419997,0.003259892178407671,0.003259892178407671,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,63,64,12.600000000000001,,-0.06553646308176202,0.05525846310412397,0.04500785550241298,,-0.04090062055383476,,0.04500785550241298,,-0.04090062055383476,,-0.01027799997763805,0.004107234948578217,0.004107234948578217,-0.01027799997763805,0.004107234948578217,0.004107234948578217,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,64,65,12.8,,-0.08167024286203065,0.06860014230546685,0.056087898503088124,,-0.05077572253661845,,0.056087898503088124,,-0.05077572253661845,,-0.013070100556563796,0.0053121759664696705,0.0053121759664696705,-0.013070100556563798,0.0053121759664696705,0.0053121759664696705,-1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,65,66,13.0,,-0.09563355804116574,0.07957652558221676,0.0656773521044079,,-0.05890010497935601,,0.0656773521044079,,-0.05890010497935601,,-0.01605703245894899,0.006777247125051886,0.006777247125051886,-0.01605703245894899,0.006777247125051886,0.006777247125051886,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,66,67,13.200000000000001,,-0.10711084386281561,0.08928200594011367,0.0735594988900263,,-0.06608380403850361,,0.0735594988900263,,-0.06608380403850361,,-0.017828837922701943,0.007475694851522691,0.007475694851522691,-0.017828837922701943,0.007475694851522691,0.007475694851522691,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,67,68,13.4,,-0.1157603802707422,0.09708680616347538,0.07949965901623178,,-0.07186067792355343,,0.07949965901623178,,-0.07186067792355343,,-0.01867357410726682,0.007638981092678354,0.007638981092678354,-0.01867357410726682,0.007638981092678354,0.007638981092678354,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,68,69,13.600000000000001,,-0.12147839664425844,0.10172036130958191,0.08342656691754129,,-0.07529029341048918,,0.08342656691754129,,-0.07529029341048918,,-0.01975803533467653,0.008136273507052108,0.008136273507052108,-0.01975803533467653,0.008136273507052108,0.008136273507052108,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,69,70,13.8,,-0.12421704792259668,0.10351896514136538,0.08530736449511529,,-0.07662156483423167,,0.08530736449511529,,-0.07662156483423167,,-0.020698082781231295,0.00868579966088362,0.00868579966088362,-0.020698082781231295,0.00868579966088362,0.00868579966088362,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,70,71,14.0,,-0.12386682207777774,0.10413573403121681,0.08506684321161002,,-0.07707807826070336,,0.08506684321161002,,-0.07707807826070336,,-0.01973108804656093,0.007988764950906668,0.007988764950906668,-0.01973108804656093,0.007988764950906668,0.007988764950906668,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,71,72,14.200000000000001,,-0.12026015507475771,0.10079642468888363,0.08258992670308973,,-0.07460642384524692,,0.08258992670308973,,-0.07460642384524692,,-0.01946373038587408,0.007983502857842814,0.007983502857842814,-0.01946373038587408,0.007983502857842814,0.007983502857842814,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,72,73,14.4,,-0.11368411727814226,0.09645576717022993,0.07807376356259155,,-0.07139360220397048,,0.07807376356259155,,-0.07139360220397048,,-0.017228350107912335,0.006680161358621067,0.006680161358621067,-0.017228350107912335,0.006680161358621067,0.006680161358621067,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,73,74,14.600000000000001,,-0.1042686346085048,0.08910179706598928,0.07160758178296409,,-0.06595041895381339,,0.07160758178296409,,-0.06595041895381339,,-0.015166837542515521,0.0056571628291507,0.0056571628291507,-0.015166837542515523,0.0056571628291507,0.0056571628291507,-1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,74,75,14.8,,-0.09242113433887086,0.07836855381933143,0.06347118633032522,,-0.05800600130838669,,0.06347118633032522,,-0.05800600130838669,,-0.014052580519539434,0.005465185021938532,0.005465185021938532,-0.014052580519539434,0.005465185021938532,0.005465185021938532,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,75,76,15.0,,-0.0785060895099324,0.06700065147951448,0.05391488289983467,,-0.04959182845638778,,0.05391488289983467,,-0.04959182845638778,,-0.011505438030417925,0.00432305444344689,0.00432305444344689,-0.011505438030417925,0.00432305444344689,0.00432305444344689,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,76,77,15.200000000000001,,-0.06286819720393079,0.05515913567392079,0.04317539583913177,,-0.04082710143467879,,0.04317539583913177,,-0.04082710143467879,,-0.007709061530009997,0.002348294404452979,0.002348294404452979,-0.0077090615300099965,0.002348294404452979,0.002348294404452979,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,77,78,15.4,,-0.04606501186234462,0.04033372622747406,0.03163563152669306,,-0.029853787805203248,,0.03163563152669306,,-0.029853787805203248,,-0.0057312856348705615,0.001781843721489814,0.001781843721489814,-0.0057312856348705615,0.001781843721489814,0.001781843721489814,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,78,79,15.600000000000001,,-0.02871554224914955,0.02449898485738688,0.019720700743504474,,-0.01813339762486704,,0.019720700743504474,,-0.01813339762486704,,-0.004216557391762667,0.001587303118637435,0.001587303118637435,-0.004216557391762667,0.001587303118637435,0.001587303118637435,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,79,80,15.8,,-0.011166186604303109,0.009923328507368236,0.007668496125164125,,-0.007344943581694175,,0.007668496125164125,,-0.007344943581694175,,-0.0012428580969348728,0.00032355254346995,0.00032355254346995,-0.0012428580969348728,0.00032355254346995,0.00032355254346995,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,80,81,16.0,,0.006269829407702714,-0.003867854726184908,-0.0043058713079252775,,0.0028628675070993606,,-0.0043058713079252775,,0.0028628675070993606,,0.0024019746815178056,-0.0014430038008259169,-0.0014430038008259169,0.0024019746815178056,-0.0014430038008259169,-0.0014430038008259169,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,81,82,16.2,,0.02318273942198262,-0.01824138116397397,-0.015920990193702616,,0.013501711185121388,,-0.015920990193702616,,0.013501711185121388,,0.004941358258008649,-0.0024192790085812276,-0.0024192790085812276,0.004941358258008649,-0.0024192790085812276,-0.0024192790085812276,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,82,83,16.400000000000002,,0.03913598383962144,-0.03263603439595564,-0.026877048634756647,,0.024156192268605856,,-0.026877048634756647,,0.024156192268605856,,0.006499949443665803,-0.002720856366150791,-0.002720856366150791,0.0064999494436658025,-0.002720856366150791,-0.002720856366150791,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,83,84,16.6,,0.05388353272591638,-0.04498377460887179,-0.037005082985054824,,0.03329561107933495,,-0.037005082985054824,,0.03329561107933495,,0.00889975811704459,-0.003709471905719873,-0.003709471905719873,0.00889975811704459,-0.0037094719057198734,-0.0037094719057198734,0.0,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,84,85,16.8,,0.0672603737823978,-0.054986366030013126,-0.04619176931259952,,0.04069922264016051,,-0.04619176931259952,,0.04069922264016051,,0.012274007752384672,-0.005492546672439015,-0.005492546672439015,0.012274007752384672,-0.005492546672439015,-0.005492546672439015,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,85,86,17.0,,0.07901175864106746,-0.06471525686805697,-0.05426215649556966,,0.04790024941911221,,-0.05426215649556966,,0.04790024941911221,,0.014296501773010492,-0.0063619070764574515,-0.0063619070764574515,0.014296501773010492,-0.0063619070764574515,-0.0063619070764574515,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,86,87,17.2,,0.08880170865297946,-0.07324174128353916,-0.060985507662114406,,0.05421129182140797,,-0.060985507662114406,,0.05421129182140797,,0.015559967369440292,-0.006774215840706435,-0.006774215840706435,0.015559967369440292,-0.006774215840706435,-0.006774215840706435,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,87,88,17.400000000000002,,0.09649476913498281,-0.08025207978747086,-0.0662687978835192,,0.05940012949434443,,-0.0662687978835192,,0.05940012949434443,,0.016242689347511954,-0.006868668389174777,-0.006868668389174777,0.016242689347511954,-0.006868668389174777,-0.006868668389174777,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,88,89,17.6,,0.10193103126175641,-0.08432997212857533,-0.07000220809166266,,0.06241846040573121,,-0.07000220809166266,,0.06241846040573121,,0.01760105913318108,-0.007583747685931452,-0.007583747685931452,0.01760105913318108,-0.007583747685931452,-0.007583747685931452,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,89,90,17.8,,0.1050413855010804,-0.08655014485694139,-0.07213827658822101,,0.06406176420438671,,-0.07213827658822101,,0.06406176420438671,,0.018491240644139012,-0.008076512383834306,-0.008076512383834306,0.018491240644139012,-0.008076512383834306,-0.008076512383834306,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,90,91,18.0,,0.10568676220965689,-0.08789967604549549,-0.0725814958325674,,0.06506064582301968,,-0.0725814958325674,,0.06506064582301968,,0.0177870861641614,-0.007520850009547719,-0.007520850009547719,0.0177870861641614,-0.007520850009547719,-0.007520850009547719,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,91,92,18.2,,0.10381697723485851,-0.08710176696950869,-0.07129740132991905,,0.06447005798325471,,-0.07129740132991905,,0.06447005798325471,,0.01671521026534982,-0.006827343346664336,-0.006827343346664336,0.01671521026534982,-0.006827343346664336,-0.006827343346664336,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,92,93,18.400000000000002,,0.09958237038985286,-0.08375044820858232,-0.06838924052862944,,0.061989514564279896,,-0.06838924052862944,,0.061989514564279896,,0.01583192218127054,-0.00639972596434954,-0.00639972596434954,0.01583192218127054,-0.00639972596434954,-0.00639972596434954,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,93,94,18.6,,0.09309479279447887,-0.07769534291526625,-0.06393382836198565,,0.057507711233109174,,-0.06393382836198565,,0.057507711233109174,,0.015399449879212615,-0.006426117128876474,-0.006426117128876474,0.015399449879212617,-0.006426117128876475,-0.006426117128876475,1.734723475976807e-18,-8.673617379884035e-19,-8.673617379884035e-19 +illusion,illusion_0.75L,sr_closed_loop_400,94,95,18.8,,0.08459729735743603,-0.07106072872311862,-0.05809808397209241,,0.05259697317869041,,-0.05809808397209241,,0.05259697317869041,,0.013536568634317403,-0.005501110793402,-0.005501110793402,0.013536568634317403,-0.005501110793402,-0.005501110793402,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,95,96,19.0,,0.07427807465107696,-0.06322702778509363,-0.05101124921438517,,0.04679870787053949,,-0.05101124921438517,,0.04679870787053949,,0.011051046865983322,-0.004212541343845681,-0.004212541343845681,0.011051046865983322,-0.004212541343845681,-0.004212541343845681,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,96,97,19.200000000000003,,0.06250563796566955,-0.05356154878018441,-0.042926404467925644,,0.03964461658671323,,-0.042926404467925644,,0.03964461658671323,,0.008944089185485136,-0.003281787881212417,-0.003281787881212417,0.008944089185485136,-0.003281787881212417,-0.003281787881212417,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,97,98,19.400000000000002,,0.0496721041547937,-0.04202505267934774,-0.03411284010720303,,0.03110565580070648,,-0.03411284010720303,,0.03110565580070648,,0.007647051475445962,-0.00300718430649655,-0.00300718430649655,0.007647051475445963,-0.00300718430649655,-0.00300718430649655,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,98,99,19.6,,0.036162147507021056,-0.03061670022934427,-0.024834735246887053,,0.02266154301706339,,-0.024834735246887053,,0.02266154301706339,,0.005545447277676786,-0.002173192229823661,-0.002173192229823661,0.005545447277676786,-0.002173192229823661,-0.002173192229823661,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,99,100,19.8,,0.022247315322797126,-0.019240329709750075,-0.01527857785239133,,0.014241102277968199,,-0.01527857785239133,,0.014241102277968199,,0.003006985613047051,-0.00103747557442313,-0.00103747557442313,0.003006985613047051,-0.00103747557442313,-0.00103747557442313,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,100,101,20.0,,0.008316534784983997,-0.007368536875573661,-0.005711467758282435,,0.005453965127783032,,-0.005711467758282435,,0.005453965127783032,,0.000947997909410336,-0.0002575026304994024,-0.0002575026304994024,0.000947997909410336,-0.0002575026304994024,-0.0002575026304994024,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,101,102,20.200000000000003,,-0.005321433980931335,0.004470298591520688,0.00365455077092861,,-0.0033087779895290704,,0.00365455077092861,,-0.0033087779895290704,,-0.0008511353894106472,0.0003457727813995395,0.0003457727813995395,-0.0008511353894106472,0.0003457727813995395,0.0003457727813995395,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,102,103,20.400000000000002,,-0.018411842606950633,0.015595736853511606,0.012644526613420727,,-0.011543486363364493,,0.012644526613420727,,-0.011543486363364493,,-0.0028161057534390275,0.0011010402500562337,0.0011010402500562337,-0.0028161057534390275,0.0011010402500562337,0.0011010402500562337,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,103,104,20.6,,-0.03071163818437442,0.0257711777184809,0.021091540627089164,,-0.01907503578416323,,0.021091540627089164,,-0.01907503578416323,,-0.004940460465893522,0.0020165048429259327,0.0020165048429259327,-0.004940460465893522,0.0020165048429259327,0.0020165048429259327,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,104,105,20.8,,-0.04198435979065342,0.034953198763916685,0.028833200785669283,,-0.025871286305808063,,0.028833200785669283,,-0.025871286305808063,,-0.007031161026736732,0.0029619144798612197,0.0029619144798612197,-0.007031161026736732,0.0029619144798612197,0.0029619144798612197,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,105,106,21.0,,-0.05204373065586571,0.043130557589283205,0.035741579557679225,,-0.03192391664803536,,0.035741579557679225,,-0.03192391664803536,,-0.008913173066582507,0.0038176629096438666,0.0038176629096438666,-0.008913173066582507,0.0038176629096438666,0.0038176629096438666,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,106,107,21.200000000000003,,-0.06070411194423297,0.050566254077777616,0.04168918751962166,,-0.03742759126266093,,0.04168918751962166,,-0.03742759126266093,,-0.010137857866455352,0.00426159625696073,0.00426159625696073,-0.010137857866455352,0.00426159625696073,0.00426159625696073,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,107,108,21.400000000000002,,-0.0677235139706283,0.05666208549512218,0.04650983570936605,,-0.041939538822461014,,0.04650983570936605,,-0.041939538822461014,,-0.011061428475506119,0.004570296886905037,0.004570296886905037,-0.011061428475506119,0.004570296886905037,0.004570296886905037,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,108,109,21.6,,-0.07296307973646839,0.06106518973728623,0.05010816262228038,,-0.045198581614302465,,0.05010816262228038,,-0.045198581614302465,,-0.011897889999182155,0.004909581007977913,0.004909581007977913,-0.011897889999182155,0.004909581007977913,0.004909581007977913,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,109,110,21.8,,-0.07628735455860224,0.06378875162874778,0.052391143329650086,,-0.047214478641109926,,0.052391143329650086,,-0.047214478641109926,,-0.012498602929854455,0.00517666468854016,0.00517666468854016,-0.012498602929854455,0.00517666468854016,0.00517666468854016,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,110,111,22.0,,-0.07768995909559417,0.06502853821162106,0.05335439675162991,,-0.0481321306666157,,0.05335439675162991,,-0.0481321306666157,,-0.01266142088397311,0.005222266085014207,0.005222266085014207,-0.012661420883973108,0.005222266085014207,0.005222266085014207,1.734723475976807e-18,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,111,112,22.200000000000003,,-0.07710518613065666,0.0643835896228568,0.05295279776581358,,-0.04765475949080011,,0.05295279776581358,,-0.04765475949080011,,-0.01272159650779986,0.005298038275013475,0.005298038275013475,-0.01272159650779986,0.005298038275013475,0.005298038275013475,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,112,113,22.400000000000002,,-0.07458003014569924,0.06326090801478336,0.051218620327061246,,-0.046823784978026264,,0.051218620327061246,,-0.046823784978026264,,-0.011319122130915876,0.004394835349034981,0.004394835349034981,-0.011319122130915876,0.004394835349034981,0.004394835349034981,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,113,114,22.6,,-0.07013001420488205,0.0595470309900991,0.048162525062996384,,-0.0440748870457043,,0.048162525062996384,,-0.0440748870457043,,-0.010582983214782946,0.004087638017292082,0.004087638017292082,-0.010582983214782946,0.004087638017292082,0.004087638017292082,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,114,115,22.8,,-0.0640028694006241,0.05419700775019165,0.043954643907610294,,-0.04011496383760984,,0.043954643907610294,,-0.04011496383760984,,-0.009805861650432443,0.003839680070000455,0.003839680070000455,-0.009805861650432443,0.0038396800700004553,0.0038396800700004553,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,115,116,23.0,,-0.05632575727220994,0.0477811880406878,0.03868230638581866,,-0.035366170752543974,,0.03868230638581866,,-0.035366170752543974,,-0.008544569231522137,0.0033161356332746875,0.0033161356332746875,-0.008544569231522137,0.0033161356332746875,0.0033161356332746875,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,116,117,23.200000000000003,,-0.047311535178876866,0.040546178024688226,0.03249169452845863,,-0.030011038113223275,,0.03249169452845863,,-0.030011038113223275,,-0.006765357154188641,0.0024806564152353577,0.0024806564152353577,-0.006765357154188641,0.0024806564152353577,0.0024806564152353577,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,117,118,23.400000000000002,,-0.037244934393370795,0.0320202418815996,0.025578350532624052,,-0.023700401525347043,,0.025578350532624052,,-0.023700401525347043,,-0.005224692511771198,0.0018779490072770091,0.0018779490072770091,-0.005224692511771198,0.0018779490072770091,0.0018779490072770091,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,118,119,23.6,,-0.026441519672043466,0.022437921904219078,0.018158991814660897,,-0.016607862004626613,,0.018158991814660897,,-0.016607862004626613,,-0.0040035977678243885,0.0015511298100342845,0.0015511298100342845,-0.0040035977678243885,0.0015511298100342845,0.0015511298100342845,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,119,120,23.8,,-0.01516964864462256,0.012672528704986856,0.010417915800060146,,-0.00937981729682895,,0.010417915800060146,,-0.00937981729682895,,-0.0024971199396357033,0.0010380985032311957,0.0010380985032311957,-0.0024971199396357033,0.0010380985032311957,0.0010380985032311957,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,120,121,24.0,,-0.003666207523086399,0.0032909484782832434,0.0025178065870761304,,-0.0024358591862906416,,0.0025178065870761304,,-0.0024358591862906416,,-0.0003752590448031557,8.194740078548875e-05,8.194740078548875e-05,-0.0003752590448031557,8.194740078548875e-05,8.194740078548875e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,121,122,24.200000000000003,,0.00781618177171201,-0.006352010754412925,-0.005367845062418498,,0.0047015636524413516,,-0.005367845062418498,,0.0047015636524413516,,0.0014641710172990851,-0.0006662814099771463,-0.0006662814099771463,0.0014641710172990851,-0.0006662814099771463,-0.0006662814099771463,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,122,123,24.400000000000002,,0.018956213076128825,-0.016418165159126155,-0.01301837876021702,,0.012152222585312794,,-0.01301837876021702,,0.012152222585312794,,0.00253804791700267,-0.0008661561749042264,-0.0008661561749042264,0.00253804791700267,-0.0008661561749042264,-0.0008661561749042264,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,123,124,24.6,,0.029511684060322653,-0.02576056902319455,-0.020267459508194054,,0.01906718355310026,,-0.020267459508194054,,0.01906718355310026,,0.003751115037128102,-0.001200275955093793,-0.001200275955093793,0.003751115037128102,-0.001200275955093793,-0.001200275955093793,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,124,125,24.8,,0.03933820896313256,-0.03360633383152304,-0.027015928865851677,,0.024874378168256415,,-0.027015928865851677,,0.024874378168256415,,0.005731875131609519,-0.002141550697595262,-0.002141550697595262,0.005731875131609519,-0.002141550697595262,-0.002141550697595262,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,125,126,25.0,,0.048277580116953635,-0.04082099392902466,-0.03315513605302721,,0.030214448421690302,,-0.03315513605302721,,0.030214448421690302,,0.007456586187928972,-0.0029406876313369072,-0.0029406876313369072,0.007456586187928973,-0.0029406876313369072,-0.0029406876313369072,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,126,127,25.200000000000003,,0.05607717560093287,-0.047904616924465425,-0.03851159030784801,,0.035457529028854684,,-0.03851159030784801,,0.035457529028854684,,0.008172558676467448,-0.0030540612789933252,-0.0030540612789933252,0.008172558676467448,-0.0030540612789933252,-0.0030540612789933252,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,127,128,25.400000000000002,,0.06251478168839401,-0.05388365130082023,-0.04293268401570387,,0.039883026999089966,,-0.04293268401570387,,0.039883026999089966,,0.008631130387573786,-0.003049657016613902,-0.003049657016613902,0.008631130387573786,-0.003049657016613902,-0.003049657016613902,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,128,129,25.6,,0.06752022562354458,-0.057581316736990795,-0.04637022529829681,,0.042619925610527375,,-0.04637022529829681,,0.042619925610527375,,0.009938908886553785,-0.0037502996877694372,-0.0037502996877694372,0.009938908886553785,-0.0037502996877694372,-0.0037502996877694372,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,129,130,25.8,,0.0710528922659107,-0.059950003688785024,-0.048796321280611975,,0.044373155084962854,,-0.048796321280611975,,0.044373155084962854,,0.011102888577125679,-0.004423166195649121,-0.004423166195649121,0.011102888577125679,-0.004423166195649121,-0.004423166195649121,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,130,131,26.0,,0.07294394171216134,-0.061915969546347906,-0.05009501938274457,,0.04582830275004463,,-0.05009501938274457,,0.04582830275004463,,0.011027972165813436,-0.004266716632699938,-0.004266716632699938,0.011027972165813436,-0.004266716632699938,-0.004266716632699938,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,131,132,26.200000000000003,,0.07309683326190318,-0.06256808322913213,-0.05020001926303619,,0.04631097730882241,,-0.05020001926303619,,0.04631097730882241,,0.010528750032771053,-0.0038890419542137802,-0.0038890419542137802,0.010528750032771053,-0.0038890419542137802,-0.0038890419542137802,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,132,133,26.400000000000002,,0.07157238330348974,-0.061333234853091244,-0.04915308721601172,,0.04539698039264328,,-0.04915308721601172,,0.04539698039264328,,0.010239148450398493,-0.003756106823368438,-0.003756106823368438,0.010239148450398493,-0.0037561068233684385,-0.0037561068233684385,0.0,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,133,134,26.6,,0.06845479914387198,-0.058190702725980994,-0.04701205349562873,,0.0430709744400894,,-0.04701205349562873,,0.0430709744400894,,0.010264096417890986,-0.00394107905553933,-0.00394107905553933,0.010264096417890986,-0.00394107905553933,-0.00394107905553933,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,134,135,26.8,,0.0638299892477171,-0.05425790729407085,-0.043835916643803506,,0.04016003981323753,,-0.043835916643803506,,0.04016003981323753,,0.009572081953646248,-0.0036758768305659786,-0.0036758768305659786,0.009572081953646248,-0.003675876830565978,-0.003675876830565978,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,135,136,27.0,,0.057776844804113055,-0.04968358058763028,-0.03967885601462253,,0.03677426340181512,,-0.03967885601462253,,0.03677426340181512,,0.008093264216482772,-0.0029045926128074134,-0.0029045926128074134,0.008093264216482772,-0.0029045926128074134,-0.0029045926128074134,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,136,137,27.200000000000003,,0.05044655620508549,-0.04388935531609926,-0.034644703200418694,,0.03248555546602303,,-0.034644703200418694,,0.03248555546602303,,0.006557200888986224,-0.0021591477343956625,-0.0021591477343956625,0.006557200888986223,-0.0021591477343956625,-0.0021591477343956625,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,137,138,27.400000000000002,,0.04210790636979112,-0.036086432737920976,-0.02891804769867266,,0.0267100713563826,,-0.02891804769867266,,0.0267100713563826,,0.006021473631870146,-0.0022079763422900613,-0.0022079763422900613,0.006021473631870146,-0.0022079763422900613,-0.0022079763422900613,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,138,139,27.6,,0.032996930931350206,-0.027734929832372524,-0.022660989463659385,,0.020528544904037358,,-0.022660989463659385,,0.020528544904037358,,0.0052620010989776825,-0.0021324445596220265,-0.0021324445596220265,0.0052620010989776825,-0.0021324445596220265,-0.0021324445596220265,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,139,140,27.8,,0.023297567567824893,-0.019818004149237407,-0.01599984963091746,,0.01466867919064128,,-0.01599984963091746,,0.01466867919064128,,0.0034795634185874856,-0.0013311704402761814,-0.0013311704402761814,0.0034795634185874856,-0.0013311704402761814,-0.0013311704402761814,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,140,141,28.0,,0.013223736862025052,-0.0114612062842717,-0.00908154041125824,,0.008483233571641602,,-0.00908154041125824,,0.008483233571641602,,0.001762530577753352,-0.0005983068396166382,-0.0005983068396166382,0.001762530577753352,-0.0005983068396166382,-0.0005983068396166382,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,141,142,28.200000000000003,,0.0030833483605795945,-0.0019670727293985106,-0.00211752192521338,,0.0014559669376856088,,-0.00211752192521338,,0.0014559669376856088,,0.0011162756311810839,-0.0006615549875277713,-0.0006615549875277713,0.0011162756311810839,-0.0006615549875277713,-0.0006615549875277713,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,142,143,28.400000000000002,,-0.006840993110910768,0.007345596745545167,0.0046981239900717,,-0.005436985546718986,,0.0046981239900717,,-0.005436985546718986,,0.000504603634634399,-0.0007388615566472859,-0.0007388615566472859,0.000504603634634399,-0.0007388615566472859,-0.0007388615566472859,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,143,144,28.6,,-0.016374068307679308,0.015311663219598287,0.011245063674846945,,-0.01133322376724154,,0.011245063674846945,,-0.01133322376724154,,-0.0010624050880810205,-8.816009239459403e-05,-8.816009239459403e-05,-0.0010624050880810205,-8.816009239459403e-05,-8.816009239459403e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,144,145,28.8,,-0.02537170411327961,0.022501767473391075,0.017424284724609274,,-0.016655118537871612,,0.017424284724609274,,-0.016655118537871612,,-0.0028699366398885345,0.0007691661867376617,0.0007691661867376617,-0.0028699366398885345,0.0007691661867376618,0.0007691661867376618,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,145,146,29.0,,-0.03364804904721881,0.029603019679459015,0.023108151679866514,,-0.021911247746354622,,0.023108151679866514,,-0.021911247746354622,,-0.004045029367759797,0.001196903933511892,0.001196903933511892,-0.004045029367759797,0.001196903933511892,0.001196903933511892,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,146,147,29.200000000000003,,-0.040994498644550105,0.03631799520781204,0.028153403229678367,,-0.02688146679851925,,0.028153403229678367,,-0.02688146679851925,,-0.004676503436738068,0.0012719364311591166,0.0012719364311591166,-0.004676503436738068,0.0012719364311591166,0.0012719364311591166,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,147,148,29.400000000000002,,-0.0472613510262495,0.0417215876648026,0.03245723003367585,,-0.030881040299043202,,0.03245723003367585,,-0.030881040299043202,,-0.005539763361446903,0.0015761897346326485,0.0015761897346326485,-0.005539763361446903,0.0015761897346326483,0.0015761897346326483,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,148,149,29.6,,-0.05235972070164649,0.04553065003441541,0.035958589046014885,,-0.03370039150596805,,0.035958589046014885,,-0.03370039150596805,,-0.0068290706672310825,0.002258197540046837,0.002258197540046837,-0.0068290706672310825,0.002258197540046837,0.002258197540046837,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,149,150,29.8,,-0.05617137720946644,0.048466723807736985,0.03857628425356315,,-0.03587358331360863,,0.03857628425356315,,-0.03587358331360863,,-0.007704653401729454,0.0027027009399545193,0.0027027009399545193,-0.007704653401729454,0.0027027009399545193,0.0027027009399545193,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,150,151,30.0,,-0.05859276257373677,0.05066080102334379,0.040239196126832445,,-0.03749757201362463,,0.040239196126832445,,-0.03749757201362463,,-0.007931961550392982,0.002741624113207816,0.002741624113207816,-0.007931961550392982,0.002741624113207816,0.002741624113207816,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,151,152,30.200000000000003,,-0.05956901445811063,0.051706611837607816,0.04090964737915345,,-0.03827164912113864,,0.04090964737915345,,-0.03827164912113864,,-0.007862402620502813,0.0026379982580148134,0.0026379982580148134,-0.007862402620502813,0.0026379982580148134,0.0026379982580148134,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,152,153,30.400000000000002,,-0.059059943011543214,0.05132002722608282,0.04056003720750098,,-0.03798551104165312,,0.04056003720750098,,-0.03798551104165312,,-0.007739915785460391,0.002574526165847864,0.002574526165847864,-0.007739915785460391,0.002574526165847864,0.002574526165847864,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,153,154,30.6,,-0.05706809997060879,0.04907751427532438,0.03919211804381314,,-0.036325671695176864,,0.03919211804381314,,-0.036325671695176864,,-0.007990585695284415,0.0028664463486362743,0.0028664463486362743,-0.007990585695284415,0.0028664463486362743,0.0028664463486362743,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,154,155,30.8,,-0.05372745150545669,0.046065335787428226,0.03689789256484057,,-0.03409614951064347,,0.03689789256484057,,-0.03409614951064347,,-0.007662115718028467,0.0028017430541971006,0.0028017430541971006,-0.007662115718028466,0.0028017430541971006,0.0028017430541971006,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,155,156,31.0,,-0.04909349788657735,0.04246785774295484,0.033715476165237124,,-0.031433406535499524,,0.033715476165237124,,-0.031433406535499524,,-0.006625640143622512,0.0022820696297376,0.0022820696297376,-0.006625640143622512,0.0022820696297376,0.0022820696297376,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,156,157,31.200000000000003,,-0.04327830287852424,0.03728159896065535,0.02972182981428469,,-0.027594696759059976,,0.02972182981428469,,-0.027594696759059976,,-0.005996703917868884,0.0021271330552247135,0.0021271330552247135,-0.005996703917868884,0.0021271330552247135,0.0021271330552247135,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,157,158,31.400000000000002,,-0.03646559151464499,0.031015820000113808,0.025043128611527018,,-0.0229569592371819,,0.025043128611527018,,-0.0229569592371819,,-0.005449771514531184,0.0020861693743451162,0.0020861693743451162,-0.005449771514531184,0.0020861693743451162,0.0020861693743451162,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,158,159,31.6,,-0.028873111982610892,0.023985097780070862,0.01982891341568262,,-0.017753034162401267,,0.01982891341568262,,-0.017753034162401267,,-0.0048880142025400294,0.0020758792532813534,0.0020758792532813534,-0.0048880142025400294,0.0020758792532813534,0.0020758792532813534,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,159,160,31.8,,-0.020712020483943012,0.016708944802812074,0.014224197969629909,,-0.012367448764310332,,0.014224197969629909,,-0.012367448764310332,,-0.004003075681130938,0.0018567492053195769,0.0018567492053195769,-0.004003075681130938,0.0018567492053195769,0.0018567492053195769,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,160,161,32.0,,-0.012149881053685262,0.009268139241773572,0.008344058637304615,,-0.006859992570795843,,0.008344058637304615,,-0.006859992570795843,,-0.002881741811911691,0.0014840660665087716,0.0014840660665087716,-0.002881741811911691,0.0014840660665087716,0.0014840660665087716,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,161,162,32.2,,-0.00336722905446744,0.0013365006830396101,0.0023124799783278537,,-0.000989236837874785,,0.0023124799783278537,,-0.000989236837874785,,-0.0020307283714278298,0.0013232431404530687,0.0013232431404530687,-0.0020307283714278298,0.0013232431404530687,0.0013232431404530687,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,162,163,32.4,,0.005361623831976131,-0.0066652076039437555,-0.003682151573953805,,0.004933382360051425,,-0.003682151573953805,,0.004933382360051425,,-0.001303583771967625,0.0012512307860976205,0.0012512307860976205,-0.001303583771967625,0.0012512307860976205,0.0012512307860976205,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,163,164,32.6,,0.013836153639850515,-0.014334930032809877,-0.00950212407640407,,0.010610275802150756,,-0.00950212407640407,,0.010610275802150756,,-0.0004987763929593624,0.0011081517257466866,0.0011081517257466866,-0.0004987763929593624,0.0011081517257466866,0.0011081517257466866,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,164,165,32.800000000000004,,0.021889221623540848,-0.02130024729935599,-0.015032653237076893,,0.01576579013520891,,-0.015032653237076893,,0.01576579013520891,,0.0005889743241848586,0.0007331368981320155,0.0007331368981320155,0.0005889743241848586,0.0007331368981320155,0.0007331368981320155,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,165,166,33.0,,0.02940387319005963,-0.027432304125224377,-0.020193419258809006,,0.020304550631982072,,-0.020193419258809006,,0.020304550631982072,,0.001971569064835251,0.00011113137317306579,0.00011113137317306579,0.001971569064835251,0.00011113137317306578,0.00011113137317306578,0.0,-1.3552527156068805e-20,-1.3552527156068805e-20 +illusion,illusion_0.75L,sr_closed_loop_400,166,167,33.2,,0.036216371909224346,-0.03321177298325886,-0.02487197442557184,,0.02458233632283187,,-0.02487197442557184,,0.02458233632283187,,0.003004598925965489,-0.0002896381027399711,-0.0002896381027399711,0.003004598925965489,-0.0002896381027399711,-0.0002896381027399711,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,167,168,33.4,,0.042143843326545465,-0.03862555729830505,-0.028942727781801007,,0.02858945352427791,,-0.028942727781801007,,0.02858945352427791,,0.0035182860282404124,-0.00035327425752309724,-0.00035327425752309724,0.003518286028240413,-0.00035327425752309724,-0.00035327425752309724,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,168,169,33.6,,0.04706189028402718,-0.04268914198311184,-0.032320248270513774,,0.031597194347045256,,-0.032320248270513774,,0.031597194347045256,,0.004372748300915337,-0.0007230539234685182,-0.0007230539234685182,0.004372748300915337,-0.0007230539234685182,-0.0007230539234685182,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,169,170,33.800000000000004,,0.05095435178336576,-0.04524619054441689,-0.03499343715610211,,0.03348984331099847,,-0.03499343715610211,,0.03348984331099847,,0.005708161238948871,-0.0015035938451036443,-0.0015035938451036443,0.005708161238948871,-0.0015035938451036443,-0.0015035938451036443,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,170,171,34.0,,0.05373340555746333,-0.0470527893893914,-0.036901981572696155,,0.034827032398434085,,-0.036901981572696155,,0.034827032398434085,,0.006680616168071932,-0.0020749491742620696,-0.0020749491742620696,0.006680616168071932,-0.0020749491742620696,-0.0020749491742620696,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,171,172,34.2,,0.05527252800117886,-0.04857414764397109,-0.03795899010336474,,0.03595309514432982,,-0.03795899010336474,,0.03595309514432982,,0.006698380357207767,-0.002005894959034915,-0.002005894959034915,0.006698380357207767,-0.002005894959034915,-0.002005894959034915,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,172,173,34.4,,0.05549856933271652,-0.048689645354493924,-0.03811422636588211,,0.036038583009311335,,-0.03811422636588211,,0.036038583009311335,,0.006808923978222595,-0.002075643356570775,-0.002075643356570775,0.0068089239782225955,-0.002075643356570775,-0.002075643356570775,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,173,174,34.6,,0.054495736859027324,-0.047052301201643706,-0.03742552061420581,,0.03482667105682765,,-0.03742552061420581,,0.03482667105682765,,0.007443435657383618,-0.002598849557378158,-0.002598849557378158,0.007443435657383618,-0.002598849557378158,-0.002598849557378158,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,174,175,34.800000000000004,,0.05231102506202079,-0.04427364544521011,-0.035925146803196,,0.03276999523995829,,-0.035925146803196,,0.03276999523995829,,0.008037379616810676,-0.0031551515632377083,-0.0031551515632377083,0.008037379616810676,-0.0031551515632377083,-0.0031551515632377083,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,175,176,35.0,,0.048972290399299394,-0.04139467837249722,-0.033632235648177015,,0.030639072061618457,,-0.033632235648177015,,0.030639072061618457,,0.007577612026802176,-0.0029931635865585587,-0.0029931635865585587,0.007577612026802177,-0.0029931635865585587,-0.0029931635865585587,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,176,177,35.2,,0.0444950559350233,-0.03783182034991583,-0.030557447776772342,,0.028001953765472574,,-0.030557447776772342,,0.028001953765472574,,0.006663235585107473,-0.0025554940112997686,-0.0025554940112997686,0.006663235585107473,-0.0025554940112997686,-0.0025554940112997686,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,177,178,35.4,,0.03907133984640653,-0.03237662644799438,-0.026832653692324585,,0.023964186457148165,,-0.026832653692324585,,0.023964186457148165,,0.0066947133984121485,-0.0028684672351764195,-0.0028684672351764195,0.006694713398412148,-0.0028684672351764195,-0.0028684672351764195,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,178,179,35.6,,0.032942493884432385,-0.026174948416369782,-0.022623604248979755,,0.019373894477970763,,-0.022623604248979755,,0.019373894477970763,,0.006767545468062602,-0.0032497097710089927,-0.0032497097710089927,0.006767545468062602,-0.0032497097710089927,-0.0032497097710089927,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,179,180,35.800000000000004,,0.026176351713033622,-0.019967652470356378,-0.017976884929092544,,0.014779444290768513,,-0.017976884929092544,,0.014779444290768513,,0.0062086992426772444,-0.003197440638324032,-0.003197440638324032,0.0062086992426772444,-0.003197440638324032,-0.003197440638324032,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,180,181,36.0,,0.018922827855948756,-0.013980692553682336,-0.012995451109026779,,0.010348080078530254,,-0.012995451109026779,,0.010348080078530254,,0.0049421353022664205,-0.0026473710304965245,-0.0026473710304965245,0.0049421353022664205,-0.0026473710304965245,-0.0026473710304965245,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,181,182,36.2,,0.011357992136802613,-0.007328830312879774,-0.007800220592511882,,0.005424575547200967,,-0.007800220592511882,,0.005424575547200967,,0.0040291618239228395,-0.0023756450453109148,-0.0023756450453109148,0.0040291618239228395,-0.0023756450453109148,-0.0023756450453109148,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,182,183,36.4,,0.0037046962164150135,7.640844568665311e-05,-0.002544239102142587,,-5.6555189351707826e-05,,-0.002544239102142587,,-5.6555189351707826e-05,,0.0037811046621016664,-0.002600794291494295,-0.002600794291494295,0.0037811046621016664,-0.002600794291494295,-0.002600794291494295,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,183,184,36.6,,-0.003862053305161834,0.006982625399846925,0.0026523057383258906,,-0.005168325282781775,,0.0026523057383258906,,-0.005168325282781775,,0.0031205720946850908,-0.0025160195444558844,-0.0025160195444558844,0.0031205720946850908,-0.0025160195444558844,-0.0025160195444558844,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,184,185,36.800000000000004,,-0.011246778951107225,0.012702189865949419,0.007723843767209358,,-0.009401771578970857,,0.007723843767209358,,-0.009401771578970857,,0.001455410914842194,-0.0016779278117614992,-0.0016779278117614992,0.001455410914842194,-0.0016779278117614994,-0.0016779278117614994,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,185,186,37.0,,-0.018330187036573905,0.018209344781854375,0.012588448791401282,,-0.013477998837086622,,0.012588448791401282,,-0.013477998837086622,,-0.00012084225471952967,-0.0008895500456853403,-0.0008895500456853403,-0.00012084225471952967,-0.0008895500456853403,-0.0008895500456853403,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,186,187,37.2,,-0.02488815003245492,0.02437639528100625,0.01709219887233788,,-0.018042660578164317,,0.01709219887233788,,-0.018042660578164317,,-0.0005117547514486669,-0.0009504617058264386,-0.0009504617058264386,-0.0005117547514486669,-0.0009504617058264386,-0.0009504617058264386,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,187,188,37.4,,-0.030729287695679806,0.029785558711256037,0.021103661614661075,,-0.022046357542327887,,0.021103661614661075,,-0.022046357542327887,,-0.0009437289844237695,-0.0009426959276668118,-0.0009426959276668118,-0.0009437289844237694,-0.0009426959276668118,-0.0009426959276668118,1.0842021724855044e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,188,189,37.6,,-0.03581426075406187,0.03338170362764918,0.024595820359325046,,-0.02470811377693118,,0.024595820359325046,,-0.02470811377693118,,-0.0024325571264126877,-0.00011229341760613312,-0.00011229341760613312,-0.0024325571264126877,-0.00011229341760613312,-0.00011229341760613312,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,189,190,37.800000000000004,,-0.040072045872950504,0.03611470256380262,0.02751989908405246,,-0.026730995814946156,,0.02751989908405246,,-0.026730995814946156,,-0.003957343309147883,0.0007889032691063037,0.0007889032691063037,-0.003957343309147883,0.0007889032691063037,0.0007889032691063037,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,190,191,38.0,,-0.04336633779033665,0.03897569681681977,0.029782288716149404,,-0.02884861606306745,,0.029782288716149404,,-0.02884861606306745,,-0.004390640973516879,0.0009336726530819531,0.0009336726530819531,-0.004390640973516879,0.0009336726530819532,0.0009336726530819532,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,191,192,38.2,,-0.04555572777106268,0.04102312994360109,0.031285875319045746,,-0.03036406330361122,,0.031285875319045746,,-0.03036406330361122,,-0.004532597827461592,0.0009218120154345262,0.0009218120154345262,-0.004532597827461592,0.0009218120154345261,0.0009218120154345261,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,192,193,38.400000000000006,,-0.04663936523627051,0.041441653299696145,0.03203007474876212,,-0.030673841462810214,,0.03203007474876212,,-0.030673841462810214,,-0.005197711936574367,0.0013562332859519063,0.0013562332859519063,-0.005197711936574367,0.0013562332859519063,0.0013562332859519063,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,193,194,38.6,,-0.04664489399884811,0.040263810231424044,0.03203387168462802,,-0.029802038128059736,,0.03203387168462802,,-0.029802038128059736,,-0.0063810837674240645,0.0022318335565682836,0.0022318335565682836,-0.0063810837674240645,0.0022318335565682836,0.0022318335565682836,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,194,195,38.800000000000004,,-0.04554637140362368,0.03887975665852749,0.031279449735272684,,-0.028777604098749996,,0.031279449735272684,,-0.028777604098749996,,-0.006666614745096187,0.002501845636522688,0.002501845636522688,-0.0066666147450961865,0.002501845636522688,0.002501845636522688,8.673617379884035e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,195,196,39.0,,-0.043305734046697665,0.03713786146657381,0.029740668457619347,,-0.027488306671921457,,0.029740668457619347,,-0.027488306671921457,,-0.0061678725801238565,0.00225236178569789,0.00225236178569789,-0.0061678725801238565,0.00225236178569789,0.00225236178569789,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,196,197,39.2,,-0.03999868344644016,0.03408508077923127,0.027469516665831865,,-0.025228731983935725,,0.027469516665831865,,-0.025228731983935725,,-0.005913602667208896,0.0022407846818961394,0.0022407846818961394,-0.005913602667208896,0.0022407846818961394,0.0022407846818961394,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,197,198,39.400000000000006,,-0.03578363991517059,0.029328840296839753,0.024574791176067753,,-0.02170830857175137,,0.024574791176067753,,-0.02170830857175137,,-0.006454799618330839,0.0028664826043163817,0.0028664826043163817,-0.006454799618330839,0.0028664826043163817,0.0028664826043163817,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,198,199,39.6,,-0.030784150032026673,0.024186287461474845,0.021141338901330388,,-0.01790194859751586,,0.021141338901330388,,-0.01790194859751586,,-0.0065978625705518275,0.0032393903038145273,0.0032393903038145273,-0.0065978625705518275,0.003239390303814527,0.003239390303814527,0.0,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_0.75L,sr_closed_loop_400,199,200,39.800000000000004,,-0.02509696714211624,0.019334272053567192,0.01723560621927302,,-0.014310635521250078,,0.01723560621927302,,-0.014310635521250078,,-0.005762695088549048,0.0029249706980229422,0.0029249706980229422,-0.005762695088549048,0.0029249706980229422,0.0029249706980229422,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,200,201,40.0,,-0.018841597575001073,0.014102923499832934,0.012939665358997019,,-0.010438551678129786,,0.012939665358997019,,-0.010438551678129786,,-0.004738674075168139,0.0025011136808672334,0.0025011136808672334,-0.004738674075168139,0.0025011136808672334,0.0025011136808672334,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,201,202,40.2,,-0.01218709387872674,0.007853286185521998,0.008369614936402018,,-0.005812761708002262,,0.008369614936402018,,-0.005812761708002262,,-0.004333807693204742,0.0025568532283997553,0.0025568532283997553,-0.004333807693204742,0.0025568532283997553,0.0025568532283997553,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,202,203,40.400000000000006,,-0.005318882244357062,0.0012151342751431566,0.003652798338990502,,-0.0008994051429903083,,0.003652798338990502,,-0.0008994051429903083,,-0.004103747969213905,0.0027533931960001938,0.0027533931960001938,-0.004103747969213905,0.0027533931960001938,0.0027533931960001938,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,203,204,40.6,,0.001628007934386026,-0.004663901178149746,-0.0011180515765126648,,0.0034520766896582286,,-0.0011180515765126648,,0.0034520766896582286,,-0.0030358932437637197,0.002334025113145564,0.002334025113145564,-0.0030358932437637197,0.002334025113145564,0.002334025113145564,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,204,205,40.800000000000004,,0.008549593392100908,-0.010198910490939515,-0.005871523208629598,,0.007548920918528228,,-0.005871523208629598,,0.007548920918528228,,-0.0016493170988386065,0.00167739770989863,0.00167739770989863,-0.0016493170988386063,0.0016773977098986303,0.0016773977098986303,2.168404344971009e-19,2.168404344971009e-19,2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,205,206,41.0,,0.015293195223760266,-0.015782191714338662,-0.010502762713063524,,0.011681494535954011,,-0.010502762713063524,,0.011681494535954011,,-0.0004889964905783958,0.0011787318228904872,0.0011787318228904872,-0.0004889964905783958,0.0011787318228904872,0.0011787318228904872,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,206,207,41.2,,0.02170953683976914,-0.021560948944848626,-0.014909252821435147,,0.015958753501923658,,-0.014909252821435147,,0.015958753501923658,,0.0001485878949205148,0.0010495006804885111,0.0010495006804885111,0.0001485878949205148,0.0010495006804885111,0.0010495006804885111,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,207,208,41.400000000000006,,0.027632755362799803,-0.026620917312110956,-0.01897708545776747,,0.019703986984328604,,-0.01897708545776747,,0.019703986984328604,,0.0010118380506888465,0.0007269015265611335,0.0007269015265611335,0.0010118380506888465,0.0007269015265611335,0.0007269015265611335,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,208,209,41.6,,0.03296312042174109,-0.030649348723793664,-0.022637769740479458,,0.022685708431881616,,-0.022637769740479458,,0.022685708431881616,,0.002313771697947428,4.793869140215859e-05,4.793869140215859e-05,0.002313771697947428,4.793869140215859e-05,4.793869140215859e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,209,210,41.800000000000004,,0.037606855697488485,-0.034153010226677216,-0.02582690379584565,,0.025279011278696115,,-0.02582690379584565,,0.025279011278696115,,0.003453845470811269,-0.0005478925171495362,-0.0005478925171495362,0.003453845470811269,-0.0005478925171495362,-0.0005478925171495362,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,210,211,42.0,,0.04143382262475407,-0.03734069972044884,-0.028455113595022563,,0.02763844132984548,,-0.028455113595022563,,0.02763844132984548,,0.0040931229043052325,-0.0008166722651770826,-0.0008166722651770826,0.0040931229043052325,-0.0008166722651770825,-0.0008166722651770825,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,211,212,42.2,,0.04433110686012627,-0.039862249521916054,-0.03044485402474893,,0.02950481519990904,,-0.03044485402474893,,0.02950481519990904,,0.0044688573382102165,-0.000940038824839888,-0.000940038824839888,0.0044688573382102165,-0.000940038824839888,-0.000940038824839888,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,212,213,42.400000000000006,,0.046228960937241645,-0.04105756971155547,-0.03174822527871647,,0.030389554564169984,,-0.03174822527871647,,0.030389554564169984,,0.0051713912256861755,-0.0013586707145464873,-0.0013586707145464873,0.0051713912256861755,-0.0013586707145464873,-0.0013586707145464873,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,213,214,42.6,,0.04710994798950932,-0.0411906158939626,-0.03235325240534813,,0.03048803127012752,,-0.03235325240534813,,0.03048803127012752,,0.005919332095546723,-0.0018652211352206093,-0.0018652211352206093,0.005919332095546723,-0.0018652211352206093,-0.0018652211352206093,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,214,215,42.800000000000004,,0.046973430082785726,-0.04034854084797128,-0.032259497296659376,,0.02986475313318322,,-0.032259497296659376,,0.02986475313318322,,0.0066248892348144475,-0.002394744163476157,-0.002394744163476157,0.0066248892348144475,-0.002394744163476157,-0.002394744163476157,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,215,216,43.0,,0.045812815230920664,-0.039439580325256,-0.03146243283681009,,0.02919196841660614,,-0.03146243283681009,,0.02919196841660614,,0.006373234905664667,-0.0022704644202039513,-0.0022704644202039513,0.006373234905664667,-0.0022704644202039513,-0.0022704644202039513,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,216,217,43.2,,0.04352433281322703,-0.03799825481897461,-0.029890793460317235,,0.028125143457759627,,-0.029890793460317235,,0.028125143457759627,,0.005526077994252421,-0.0017656500025576075,-0.0017656500025576075,0.005526077994252421,-0.0017656500025576075,-0.0017656500025576075,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,217,218,43.400000000000006,,0.04016858657334382,-0.03487128837043496,-0.027586199425710865,,0.025810658743349466,,-0.027586199425710865,,0.025810658743349466,,0.005297298202908862,-0.001775540682361399,-0.001775540682361399,0.005297298202908862,-0.0017755406823613989,-0.0017755406823613989,0.0,2.168404344971009e-19,2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,218,219,43.6,,0.035939933780344796,-0.030233641835473748,-0.024682127632276847,,0.02237801493579668,,-0.024682127632276847,,0.02237801493579668,,0.005706291944871048,-0.0023041126964801657,-0.0023041126964801657,0.005706291944871048,-0.0023041126964801657,-0.0023041126964801657,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,219,220,43.800000000000004,,0.03094278298906063,-0.02579246082663502,-0.021250281753482748,,0.019090788888428505,,-0.021250281753482748,,0.019090788888428505,,0.00515032216242561,-0.0021594928650542425,-0.0021594928650542425,0.00515032216242561,-0.0021594928650542425,-0.0021594928650542425,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,220,221,44.0,,0.025193933131938604,-0.021504766045670184,-0.01730219863292111,,0.01591716864212432,,-0.01730219863292111,,0.01591716864212432,,0.0036891670862684196,-0.0013850299907967878,-0.0013850299907967878,0.003689167086268419,-0.0013850299907967878,-0.0013850299907967878,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,221,222,44.2,,0.018820545748263324,-0.015939557157161506,-0.012925207795507631,,0.011797971613013778,,-0.012925207795507631,,0.011797971613013778,,0.002880988591101818,-0.0011272361824938536,-0.0011272361824938536,0.002880988591101818,-0.0011272361824938536,-0.0011272361824938536,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,222,223,44.400000000000006,,0.012098633677485284,-0.009099230975185623,-0.00830886396254762,,0.006734971849406941,,-0.00830886396254762,,0.006734971849406941,,0.002999402702299661,-0.0015738921131406786,-0.0015738921131406786,0.002999402702299661,-0.0015738921131406788,-0.0015738921131406788,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,223,224,44.6,,0.005232548490260834,-0.0024994395906098,-0.0035935077250845277,,0.0018500085697304557,,-0.0035935077250845277,,0.0018500085697304557,,0.0027331088996510335,-0.001743499155354072,-0.001743499155354072,0.0027331088996510335,-0.001743499155354072,-0.001743499155354072,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,224,225,44.800000000000004,,-0.0017228474770631637,0.003179047866520555,0.0011831836302123315,,-0.0023530337835496427,,0.0011831836302123315,,-0.0023530337835496427,,0.0014562003894573912,-0.0011698501533373112,-0.0011698501533373112,0.0014562003894573912,-0.0011698501533373112,-0.0011698501533373112,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,225,226,45.0,,-0.00865017434207016,0.008797175133350644,0.005940598234190007,,-0.006511399374188397,,0.005940598234190007,,-0.006511399374188397,,0.0001470007912804834,-0.0005708011399983897,-0.0005708011399983897,0.0001470007912804834,-0.0005708011399983897,-0.0005708011399983897,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,226,227,45.2,,-0.015306379196060675,0.015218083261301573,0.010511816944743747,,-0.011263958750613671,,0.010511816944743747,,-0.011263958750613671,,-8.829593475910211e-05,-0.0007521418058699242,-0.0007521418058699242,-8.829593475910211e-05,-0.0007521418058699242,-0.0007521418058699242,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,227,228,45.400000000000006,,-0.021487748402521933,0.021482577912537652,0.014756937278814625,,-0.015900745666111733,,0.014756937278814625,,-0.015900745666111733,,-5.170489984281101e-06,-0.0011438083872971072,-0.0011438083872971072,-5.170489984281101e-06,-0.0011438083872971072,-0.0011438083872971072,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,228,229,45.6,,-0.027131551770669726,0.026048644857816338,0.018632878617924165,,-0.019280408455508297,,0.018632878617924165,,-0.019280408455508297,,-0.0010829069128533882,-0.0006475298375841314,-0.0006475298375841314,-0.0010829069128533882,-0.0006475298375841314,-0.0006475298375841314,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,229,230,45.800000000000004,,-0.032204191435609465,0.02937280535880965,0.022116567274887283,,-0.0217408501629619,,0.022116567274887283,,-0.0217408501629619,,-0.0028313860767998147,0.00037571711192538326,0.00037571711192538326,-0.0028313860767998147,0.00037571711192538326,0.00037571711192538326,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,230,231,46.0,,-0.03657510354262419,0.033090758751187124,0.025118337148870802,,-0.024492765297697616,,0.025118337148870802,,-0.024492765297697616,,-0.003484344791437069,0.0006255718511731859,0.0006255718511731859,-0.003484344791437069,0.0006255718511731859,0.0006255718511731859,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,231,232,46.2,,-0.04003376982433641,0.03706639453560229,0.027493612604980844,,-0.027435409040289804,,0.027493612604980844,,-0.027435409040289804,,-0.002967375288734121,5.820356469104018e-05,5.820356469104018e-05,-0.002967375288734121,5.820356469104018e-05,5.820356469104018e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,232,233,46.400000000000006,,-0.04251256926152788,0.039277505748313124,0.02919595419685756,,-0.02907200578281966,,0.02919595419685756,,-0.02907200578281966,,-0.0032350635132147587,0.0001239484140378999,0.0001239484140378999,-0.0032350635132147587,0.0001239484140378999,0.0001239484140378999,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,233,234,46.6,,-0.044072105597837585,0.03929557996084877,0.030266982183031005,,-0.02908538376091031,,0.030266982183031005,,-0.02908538376091031,,-0.004776525636988813,0.001181598422120695,0.001181598422120695,-0.004776525636988813,0.001181598422120695,0.001181598422120695,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,234,235,46.800000000000004,,-0.04470663742597342,0.039334511056081906,0.030702753591640434,,-0.029114199364248302,,0.030702753591640434,,-0.029114199364248302,,-0.005372126369891511,0.0015885542273921319,0.0015885542273921319,-0.005372126369891511,0.0015885542273921317,0.0015885542273921317,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,235,236,47.0,,-0.04424562368488814,0.039917884148700934,0.030386147554822322,,-0.029545994245288837,,0.030386147554822322,,-0.029545994245288837,,-0.004327739536187203,0.0008401533095334854,0.0008401533095334854,-0.004327739536187203,0.0008401533095334854,0.0008401533095334854,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,236,237,47.2,,-0.04265695502268881,0.039051174397903086,0.029295112637355483,,-0.02890448225497353,,0.029295112637355483,,-0.02890448225497353,,-0.003605780624785726,0.00039063038238195194,0.00039063038238195194,-0.0036057806247857256,0.000390630382381952,0.000390630382381952,4.336808689942018e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,237,238,47.400000000000006,,-0.04009522414683348,0.0355882521625643,0.02753581700749027,,-0.02634133336521625,,0.02753581700749027,,-0.02634133336521625,,-0.0045069719842691786,0.0011944836422740183,0.0011944836422740183,-0.0045069719842691786,0.0011944836422740183,0.0011944836422740183,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,238,239,47.6,,-0.036692058135611695,0.031740104730813325,0.025198656946034067,,-0.023493052593369847,,0.025198656946034067,,-0.023493052593369847,,-0.00495195340479837,0.0017056043526642202,0.0017056043526642202,-0.00495195340479837,0.0017056043526642202,0.0017056043526642202,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,239,240,47.800000000000004,,-0.03239195671853304,0.0283998941187921,0.022245517058333036,,-0.0210207310857169,,0.022245517058333036,,-0.0210207310857169,,-0.0039920625997409385,0.001224785972616136,0.001224785972616136,-0.0039920625997409385,0.001224785972616136,0.001224785972616136,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,240,241,48.0,,-0.027257437441667184,0.024581571203134644,0.018719331926870808,,-0.018194525506473016,,0.018719331926870808,,-0.018194525506473016,,-0.00267586623853254,0.0005248064203977922,0.0005248064203977922,-0.00267586623853254,0.0005248064203977922,0.0005248064203977922,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,241,242,48.2,,-0.021503696756111138,0.018757977683289677,0.014767889978427798,,-0.01388408009350289,,0.014767889978427798,,-0.01388408009350289,,-0.0027457190728214613,0.0008838098849249087,0.0008838098849249087,-0.0027457190728214613,0.0008838098849249087,0.0008838098849249087,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,242,243,48.400000000000006,,-0.015376764596567699,0.011941093901428853,0.010560154859036549,,-0.008838431675882106,,0.010560154859036549,,-0.008838431675882106,,-0.003435670695138846,0.0017217231831544427,0.0017217231831544427,-0.0034356706951388463,0.0017217231831544427,0.0017217231831544427,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,243,244,48.6,,-0.008965739098421893,0.006107565291507086,0.006157315650535983,,-0.004520632613777121,,0.006157315650535983,,-0.004520632613777121,,-0.002858173806914806,0.0016366830367588615,0.0016366830367588615,-0.002858173806914806,0.0016366830367588615,0.0016366830367588615,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,244,245,48.800000000000004,,-0.0023342010313160146,0.0010678651651772361,0.00160303711538395,,-0.0007904010620286801,,0.00160303711538395,,-0.0007904010620286801,,-0.0012663358661387785,0.00081263605335527,0.00081263605335527,-0.0012663358661387785,0.00081263605335527,0.00081263605335527,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,245,246,49.0,,0.004320727954387364,-0.0050624764318160905,-0.0029673053792007363,,0.003747089874908019,,-0.0029673053792007363,,0.003747089874908019,,-0.0007417484774287263,0.0007797844957072829,0.0007797844957072829,-0.0007417484774287263,0.0007797844957072829,0.0007797844957072829,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,246,247,49.2,,0.010769178922289171,-0.011934106244878739,-0.007395846922793547,,0.008833259626696115,,-0.007395846922793547,,0.008833259626696115,,-0.0011649273225895675,0.001437412703902568,0.001437412703902568,-0.0011649273225895675,0.001437412703902568,0.001437412703902568,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,247,248,49.400000000000006,,0.016903553646840905,-0.017745252854802784,-0.011608693302004277,,0.013134492218477489,,-0.011608693302004277,,0.013134492218477489,,-0.0008416992079618782,0.0015257989164732116,0.0015257989164732116,-0.0008416992079618782,0.0015257989164732116,0.0015257989164732116,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,248,249,49.6,,0.022671116238840928,-0.021776487590744343,-0.015569627590112036,,0.0161182886007167,,-0.015569627590112036,,0.0161182886007167,,0.0008946286480965848,0.0005486610106046636,0.0005486610106046636,0.0008946286480965849,0.0005486610106046636,0.0005486610106046636,1.0842021724855044e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,249,250,49.800000000000004,,0.02800849857336147,-0.025807649098523747,-0.01923513106065382,,0.019102030781714942,,-0.01923513106065382,,0.019102030781714942,,0.0022008494748377225,-0.00013310027893887952,-0.00013310027893887952,0.0022008494748377225,-0.00013310027893887952,-0.00013310027893887952,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,250,251,50.0,,0.032718791644754476,-0.03082056555513463,-0.022469974382405652,,0.022812437882136345,,-0.022469974382405652,,0.022812437882136345,,0.0018982260896198457,0.00034246349973069204,0.00034246349973069204,0.0018982260896198457,0.00034246349973069204,0.00034246349973069204,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,251,252,50.2,,0.03663017852368558,-0.03487255014799822,-0.025156160471534957,,0.025811592672424565,,-0.025156160471534957,,0.025811592672424565,,0.0017576283756873604,0.000655432200889608,0.000655432200889608,0.0017576283756873604,0.000655432200889608,0.000655432200889608,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,252,253,50.400000000000006,,0.03975818227431495,-0.03668098532996211,-0.027304349955665223,,0.027150140960210557,,-0.027304349955665223,,0.027150140960210557,,0.0030771969443528363,-0.00015420899545466604,-0.00015420899545466604,0.0030771969443528363,-0.00015420899545466604,-0.00015420899545466604,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,253,254,50.6,,0.04209046950320026,-0.03780193199388607,-0.02890607274709559,,0.027979831320506136,,-0.02890607274709559,,0.027979831320506136,,0.00428853750931419,-0.000926241426589456,-0.000926241426589456,0.00428853750931419,-0.000926241426589456,-0.000926241426589456,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,254,255,50.800000000000004,,0.04350987297263949,-0.03933108998655771,-0.029880863012667958,,0.02911166719345242,,-0.029880863012667958,,0.02911166719345242,,0.004178782986081778,-0.000769195819215536,-0.000769195819215536,0.004178782986081778,-0.000769195819215536,-0.000769195819215536,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,255,256,51.0,,0.04390284040507749,-0.040446129578734606,-0.03015073753113653,,0.029936985320310104,,-0.03015073753113653,,0.029936985320310104,,0.0034567108263428847,-0.00021375221082642684,-0.00021375221082642684,0.003456710826342885,-0.00021375221082642684,-0.00021375221082642684,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,256,257,51.2,,0.04327319940537569,-0.03957349397973787,-0.029718324950408475,,0.029291087198802808,,-0.029718324950408475,,0.029291087198802808,,0.003699705425637821,-0.00042723775160566704,-0.00042723775160566704,0.003699705425637821,-0.0004272377516056671,-0.0004272377516056671,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,257,258,51.400000000000006,,0.0417166400950693,-0.03719675568539711,-0.028649341468162823,,0.02753189836741193,,-0.028649341468162823,,0.02753189836741193,,0.004519884409672187,-0.001117443100750893,-0.001117443100750893,0.004519884409672187,-0.001117443100750893,-0.001117443100750893,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,258,259,51.6,,0.039244007354598986,-0.03477331284476384,-0.026951234920136534,,0.025738140262488246,,-0.026951234920136534,,0.025738140262488246,,0.004470694509835144,-0.0012130946576482879,-0.0012130946576482879,0.004470694509835144,-0.0012130946576482879,-0.0012130946576482879,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,259,260,51.800000000000004,,0.03584807126367098,-0.032207270363030185,-0.02461904008250497,,0.023838834274324126,,-0.02461904008250497,,0.023838834274324126,,0.0036408009006407976,-0.0007802058081808443,-0.0007802058081808443,0.003640800900640798,-0.0007802058081808443,-0.0007802058081808443,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,260,261,52.0,,0.03161474028695246,-0.028725209290336753,-0.02171175549718442,,0.021261519403819085,,-0.02171175549718442,,0.021261519403819085,,0.0028895309966157044,-0.000450236093365336,-0.000450236093365336,0.0028895309966157044,-0.00045023609336533593,-0.00045023609336533593,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,261,262,52.2,,0.026655440254853332,-0.023380233160682353,-0.01830590402547225,,0.01730533191202502,,-0.01830590402547225,,0.01730533191202502,,0.0032752070941709788,-0.001000572113447229,-0.001000572113447229,0.0032752070941709788,-0.001000572113447229,-0.001000572113447229,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,262,263,52.400000000000006,,0.02116367785758929,-0.01768882773939568,-0.014534378422674958,,0.013092728077650344,,-0.014534378422674958,,0.013092728077650344,,0.0034748501181936092,-0.001441650345024614,-0.001441650345024614,0.0034748501181936092,-0.001441650345024614,-0.001441650345024614,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,263,264,52.6,,0.015246838675994311,-0.012387276848720938,-0.010470926866187903,,0.009168682616636614,,-0.010470926866187903,,0.009168682616636614,,0.002859561827273373,-0.0013022442495512886,-0.0013022442495512886,0.002859561827273373,-0.0013022442495512886,-0.0013022442495512886,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,264,265,52.800000000000004,,0.00903399805178369,-0.007130232720651509,-0.006204193204880362,,0.005277579697039017,,-0.006204193204880362,,0.005277579697039017,,0.0019037653311321807,-0.0009266135078413451,-0.0009266135078413451,0.0019037653311321807,-0.0009266135078413451,-0.0009266135078413451,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,265,266,53.0,,0.002649340498238701,-0.0010589268699871897,-0.0018194624597402417,,0.0007837852099142738,,-0.0018194624597402417,,0.0007837852099142738,,0.0015904136282515115,-0.001035677249825968,-0.001035677249825968,0.0015904136282515115,-0.001035677249825968,-0.001035677249825968,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,266,267,53.2,,-0.0037038456375569225,0.005512150860326755,0.002543654958163218,,-0.004079925103036261,,0.002543654958163218,,-0.004079925103036261,,0.0018083052227698322,-0.001536270144873043,-0.001536270144873043,0.0018083052227698322,-0.001536270144873043,-0.001536270144873043,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,267,268,53.400000000000006,,-0.009864588306709476,0.011149085325430972,0.006774609800734394,,-0.008252211205341099,,0.006774609800734394,,-0.008252211205341099,,0.0012844970187214956,-0.0014776014046067052,-0.0014776014046067052,0.0012844970187214956,-0.0014776014046067052,-0.0014776014046067052,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,268,269,53.6,,-0.015777174594014003,0.015787236946946524,0.010835140637324603,,-0.011685228862479004,,0.010835140637324603,,-0.011685228862479004,,1.0062352932521668e-05,-0.0008500882251544009,-0.0008500882251544009,1.0062352932521668e-05,-0.0008500882251544009,-0.0008500882251544009,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,269,270,53.800000000000004,,-0.02136760413881659,0.020524336714338204,0.014674426941728725,,-0.015191484904140183,,0.014674426941728725,,-0.015191484904140183,,-0.0008432674244783847,-0.0005170579624114574,-0.0005170579624114574,-0.0008432674244783847,-0.0005170579624114574,-0.0005170579624114574,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,270,271,54.0,,-0.026463847367068354,0.025449820622982906,0.01817432559411934,,-0.01883717711262401,,0.01817432559411934,,-0.01883717711262401,,-0.0010140267440854472,-0.0006628515185046722,-0.0006628515185046722,-0.0010140267440854472,-0.0006628515185046722,-0.0006628515185046722,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,271,272,54.2,,-0.03092173116232288,0.029701641115073226,0.021235824189993358,,-0.021984244309956665,,0.021235824189993358,,-0.021984244309956665,,-0.0012200900472496522,-0.0007484201199633063,-0.0007484201199633063,-0.0012200900472496522,-0.0007484201199633063,-0.0007484201199633063,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,272,273,54.400000000000006,,-0.03467916326793953,0.0326461661693654,0.023816280218856838,,-0.024163691496714847,,0.023816280218856838,,-0.024163691496714847,,-0.0020329970985741297,-0.00034741127785800976,-0.00034741127785800976,-0.0020329970985741297,-0.00034741127785800976,-0.00034741127785800976,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,273,274,54.6,,-0.03772168384333076,0.034626135504706265,0.025905763233060496,,-0.025629204106799752,,0.025905763233060496,,-0.025629204106799752,,-0.003095548338624493,0.00027655912626074405,0.00027655912626074405,-0.0030955483386244926,0.00027655912626074405,0.00027655912626074405,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,274,275,54.800000000000004,,-0.03996232120025677,0.03638468540943693,0.02744454451071383,,-0.026930828841509453,,0.02744454451071383,,-0.026930828841509453,,-0.003577635790819843,0.0005137156692043773,0.0005137156692043773,-0.003577635790819843,0.0005137156692043773,0.0005137156692043773,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,275,276,55.0,,-0.04128837364002052,0.038060100696026264,0.028355224974550428,,-0.02817091988019364,,0.028355224974550428,,-0.02817091988019364,,-0.003228272943994255,0.00018430509435678893,0.00018430509435678893,-0.003228272943994255,0.00018430509435678893,0.00018430509435678893,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,276,277,55.2,,-0.04163094427511664,0.038499909037920624,0.028590488962241378,,-0.028496452533433317,,0.028590488962241378,,-0.028496452533433317,,-0.003131035237196017,9.403642880806071e-05,9.403642880806071e-05,-0.003131035237196017,9.403642880806071e-05,9.403642880806071e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,277,278,55.400000000000006,,-0.04102873444358827,0.037279830218892564,0.028176915024847978,,-0.027593387590624345,,0.028176915024847978,,-0.027593387590624345,,-0.003748904224695704,0.0005835274342236331,0.0005835274342236331,-0.003748904224695704,0.0005835274342236331,0.0005835274342236331,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,278,279,55.6,,-0.03954000879721463,0.035194280894887714,0.02715451702495702,,-0.02604972790927025,,0.02715451702495702,,-0.02604972790927025,,-0.004345727902326915,0.0011047891156867676,0.0011047891156867676,-0.004345727902326915,0.0011047891156867676,0.0011047891156867676,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,279,280,55.800000000000004,,-0.03716731907257,0.033338611670689584,0.025525047394506614,,-0.02467621843128601,,0.025525047394506614,,-0.02467621843128601,,-0.0038287074018804185,0.0008488289632206034,0.0008488289632206034,-0.003828707401880418,0.0008488289632206034,0.0008488289632206034,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,280,281,56.0,,-0.033867285747891746,0.03105697047195375,0.023258714790548928,,-0.022987417555053777,,0.023258714790548928,,-0.022987417555053777,,-0.0028103152759379954,0.00027129723549515136,0.00027129723549515136,-0.0028103152759379954,0.00027129723549515136,0.00027129723549515136,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,281,282,56.2,,-0.029743041509723383,0.026748574652841653,0.020426346670582476,,-0.01979847503486123,,0.020426346670582476,,-0.01979847503486123,,-0.00299446685688173,0.0006278716357212451,0.0006278716357212451,-0.00299446685688173,0.0006278716357212451,0.0006278716357212451,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,282,283,56.400000000000006,,-0.02503253579361585,0.021298467291722103,0.017191357312835803,,-0.015764472628120817,,0.017191357312835803,,-0.015764472628120817,,-0.003734068501893749,0.0014268846847149859,0.0014268846847149859,-0.0037340685018937485,0.0014268846847149859,0.0014268846847149859,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,283,284,56.6,,-0.019816573591087794,0.01645351182970413,0.013609240395348974,,-0.012178385107394288,,0.013609240395348974,,-0.012178385107394288,,-0.003363061761383665,0.0014308552879546861,0.0014308552879546861,-0.0033630617613836645,0.0014308552879546861,0.0014308552879546861,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,284,285,56.800000000000004,,-0.014114292926446247,0.011946304366812857,0.009693139157657802,,-0.008842288302643123,,0.009693139157657802,,-0.008842288302643123,,-0.002167988559633389,0.0008508508550146791,0.0008508508550146791,-0.002167988559633389,0.0008508508550146792,0.0008508508550146792,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,285,286,57.0,,-0.008063912864130992,0.006361640727147416,0.00553797699640978,,-0.004708691463072187,,0.00553797699640978,,-0.004708691463072187,,-0.0017022721369835759,0.0008292855333375936,0.0008292855333375936,-0.001702272136983576,0.0008292855333375937,0.0008292855333375937,-2.168404344971009e-19,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,286,287,57.2,,-0.0019344289680132808,-0.0002403207898564587,0.0013284894450804221,,0.00017787808210654551,,0.0013284894450804221,,0.00017787808210654551,,-0.0021747497578697393,0.0015063675271869677,0.0015063675271869677,-0.0021747497578697393,0.0015063675271869677,0.0015063675271869677,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,287,288,57.400000000000006,,0.004115738449587452,-0.006249711011884384,-0.002826526680172757,,0.004625844518812342,,-0.002826526680172757,,0.004625844518812342,,-0.0021339725622969317,0.0017993178386395848,0.0017993178386395848,-0.0021339725622969317,0.001799317838639585,0.001799317838639585,0.0,2.168404344971009e-19,2.168404344971009e-19 +illusion,illusion_0.75L,sr_closed_loop_400,288,289,57.6,,0.010080635336664569,-0.010749099960231875,-0.0069229823714941725,,0.007956154298758868,,-0.0069229823714941725,,0.007956154298758868,,-0.000668464623567306,0.0010331719272646958,0.0010331719272646958,-0.000668464623567306,0.0010331719272646958,0.0010331719272646958,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,289,290,57.800000000000004,,0.015901571752009798,-0.01523110191418085,-0.01092057169430735,,0.011273594758414576,,-0.01092057169430735,,0.011273594758414576,,0.0006704698378289485,0.00035302306410722566,0.00035302306410722566,0.0006704698378289485,0.00035302306410722566,0.00035302306410722566,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,290,291,58.0,,0.021353782232372612,-0.020743923563249382,-0.014664934602063976,,0.015354016358715836,,-0.014664934602063976,,0.015354016358715836,,0.0006098586691232304,0.0006890817566518603,0.0006890817566518603,0.0006098586691232304,0.0006890817566518603,0.0006890817566518603,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,291,292,58.2,,0.026238018680245213,-0.02602819730176884,-0.018019235367596812,,0.0192652738013002,,-0.018019235367596812,,0.0192652738013002,,0.00020982137847637417,0.001246038433703387,0.001246038433703387,0.00020982137847637417,0.001246038433703387,0.001246038433703387,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,292,293,58.400000000000006,,0.03054343621518694,-0.029360129376176346,-0.020976026155168904,,0.021731467789173207,,-0.020976026155168904,,0.021731467789173207,,0.0011833068390105957,0.000755441634004303,0.000755441634004303,0.0011833068390105957,0.000755441634004303,0.000755441634004303,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,293,294,58.6,,0.034280879717638456,-0.03140627819365221,-0.023542754800517204,,0.023245964423336964,,-0.023542754800517204,,0.023245964423336964,,0.0028746015239862477,-0.00029679037718024007,-0.00029679037718024007,0.0028746015239862477,-0.00029679037718024007,-0.00029679037718024007,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,294,295,58.800000000000004,,0.03732531409546039,-0.03405738551277575,-0.025633552138674444,,0.025208232796647436,,-0.025633552138674444,,0.025208232796647436,,0.00326792858268464,-0.0004253193420270078,-0.0004253193420270078,0.00326792858268464,-0.00042531934202700775,-0.00042531934202700775,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,295,296,59.0,,0.039485997039725856,-0.03709058236085516,-0.027117423882267074,,0.02745331212711338,,-0.027117423882267074,,0.02745331212711338,,0.0023954146788706943,0.0003358882448463059,0.0003358882448463059,0.0023954146788706943,0.0003358882448463059,0.0003358882448463059,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,296,297,59.2,,0.04070062364907969,-0.03826255215499351,-0.027951581484806306,,0.028320768244383333,,-0.027951581484806306,,0.028320768244383333,,0.0024380714940861817,0.0003691867595770268,0.0003691867595770268,0.0024380714940861817,0.0003691867595770268,0.0003691867595770268,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,297,298,59.400000000000006,,0.04107062545234925,-0.037245187665258375,-0.02820568411583191,,0.027567746234321365,,-0.02820568411583191,,0.027567746234321365,,0.0038254377870908726,-0.0006379378815105467,-0.0006379378815105467,0.0038254377870908726,-0.0006379378815105467,-0.0006379378815105467,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,298,299,59.6,,0.04059068633167144,-0.03621633574229104,-0.027876080875472834,,0.02680622157830484,,-0.027876080875472834,,0.02680622157830484,,0.004374350589380398,-0.0010698592971679945,-0.0010698592971679945,0.004374350589380398,-0.0010698592971679945,-0.0010698592971679945,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,299,300,59.800000000000004,,0.0391515069037816,-0.03591035468320012,-0.026887709262380134,,0.026579743777592996,,-0.026887709262380134,,0.026579743777592996,,0.0032411522205814808,-0.00030796548478713784,-0.00030796548478713784,0.0032411522205814808,-0.00030796548478713784,-0.00030796548478713784,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,300,301,60.0,,0.03671715021192538,-0.034245777164609505,-0.025215889193425458,,0.025347674522571723,,-0.025215889193425458,,0.025347674522571723,,0.0024713730473158724,0.00013178532914626465,0.00013178532914626465,0.0024713730473158724,0.00013178532914626465,0.00013178532914626465,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,301,302,60.2,,0.03347538153902635,-0.03017607886708549,-0.022989570452054565,,0.022335408591071457,,-0.022989570452054565,,0.022335408591071457,,0.003299302671940861,-0.000654161860983108,-0.000654161860983108,0.0032993026719408615,-0.000654161860983108,-0.000654161860983108,4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,302,303,60.400000000000006,,0.0295822821055442,-0.025593421048966062,-0.020315943458481697,,0.018943465746157646,,-0.020315943458481697,,0.018943465746157646,,0.003988861056578138,-0.0013724777123240509,-0.0013724777123240509,0.003988861056578138,-0.0013724777123240509,-0.0013724777123240509,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,303,304,60.6,,0.02503466224076108,-0.021769686759889977,-0.017192817672784223,,0.01611325483418394,,-0.017192817672784223,,0.01611325483418394,,0.003264975480871103,-0.0010795628386002822,-0.0010795628386002822,0.0032649754808711027,-0.0010795628386002822,-0.0010795628386002822,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,304,305,60.800000000000004,,0.01986463129656993,-0.017796989490186876,-0.013642244530183334,,0.013172786090107424,,-0.013642244530183334,,0.013172786090107424,,0.0020676418063830526,-0.00046945844007591046,-0.00046945844007591046,0.0020676418063830526,-0.0004694584400759105,-0.0004694584400759105,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,305,306,61.0,,0.01426484538432834,-0.012235316207558583,-0.009796532642006152,,0.009056206008092734,,-0.009796532642006152,,0.009056206008092734,,0.0020295291767697572,-0.0007403266339134178,-0.0007403266339134178,0.0020295291767697572,-0.0007403266339134178,-0.0007403266339134178,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,306,307,61.2,,0.008455179138852817,-0.005650192987155677,-0.005806683226919616,,0.0041820996539142915,,-0.005806683226919616,,0.0041820996539142915,,0.00280498615169714,-0.0016245835730053244,-0.0016245835730053244,0.00280498615169714,-0.0016245835730053244,-0.0016245835730053244,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,307,308,61.400000000000006,,0.002547483679982313,-3.303100964637944e-05,-0.0017495112182107791,,2.44485408418063e-05,,-0.0017495112182107791,,2.44485408418063e-05,,0.002514452670335934,-0.0017250626773689728,-0.0017250626773689728,0.002514452670335934,-0.0017250626773689728,-0.0017250626773689728,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,308,309,61.6,,-0.003416987917665759,0.0043984218644878845,0.0023466524011209523,,-0.003255577039414321,,0.0023466524011209523,,-0.003255577039414321,,0.0009814339468221253,-0.0009089246382933689,-0.0009089246382933689,0.0009814339468221253,-0.0009089246382933689,-0.0009089246382933689,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,309,310,61.800000000000004,,-0.009337016769978581,0.009300893823175827,0.006412294497530642,,-0.0068842365079246955,,0.006412294497530642,,-0.0068842365079246955,,-3.61229468027538e-05,-0.0004719420103940532,-0.0004719420103940532,-3.61229468027538e-05,-0.0004719420103940532,-0.0004719420103940532,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,310,311,62.0,,-0.015008251306299807,0.015260385668461544,0.010307074479974839,,-0.011295269695699198,,0.010307074479974839,,-0.011295269695699198,,0.00025213436216173744,-0.0009881952157243593,-0.0009881952157243593,0.00025213436216173744,-0.0009881952157243593,-0.0009881952157243593,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,311,312,62.2,,-0.020272483859024526,0.020743328349726236,0.01392234156829087,,-0.015353575799911064,,0.01392234156829087,,-0.015353575799911064,,0.00047084449070170994,-0.0014312342316201935,-0.0014312342316201935,0.00047084449070171,-0.0014312342316201935,-0.0014312342316201935,5.421010862427522e-20,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,312,313,62.400000000000006,,-0.025066771592654014,0.02431155455988704,0.017214869108005414,,-0.01799466746395235,,0.017214869108005414,,-0.01799466746395235,,-0.0007552170327669756,-0.0007797983559469368,-0.0007797983559469368,-0.0007552170327669756,-0.0007797983559469369,-0.0007797983559469369,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,313,314,62.6,,-0.02938749954704138,0.027215432351248427,0.020182174487206148,,-0.020144028792648372,,0.020182174487206148,,-0.020144028792648372,,-0.002172067195792951,3.814569455777572e-05,3.814569455777572e-05,-0.002172067195792951,3.814569455777572e-05,3.814569455777572e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,314,315,62.800000000000004,,-0.033095598078888754,0.030897449492460333,0.022728750165266213,,-0.022869345015824046,,0.022728750165266213,,-0.022869345015824046,,-0.00219814858642842,-0.00014059485055783333,-0.00014059485055783333,-0.00219814858642842,-0.00014059485055783333,-0.00014059485055783333,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,315,316,63.0,,-0.03601797439057464,0.03430759675462859,0.02473572284238397,,-0.025393431488150004,,0.02473572284238397,,-0.025393431488150004,,-0.0017103776359460518,-0.0006577086457660343,-0.0006577086457660343,-0.001710377635946052,-0.0006577086457660343,-0.0006577086457660343,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,316,317,63.2,,-0.038116990367628514,0.03592923252787427,0.026177244147472335,,-0.026593716579558856,,0.026177244147472335,,-0.026593716579558856,,-0.002187757839754244,-0.0004164724320865204,-0.0004164724320865204,-0.002187757839754244,-0.00041647243208652035,-0.00041647243208652035,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,317,318,63.400000000000006,,-0.03941072081078481,0.036134571805133624,0.0270657271400929,,-0.02674570241832817,,0.0270657271400929,,-0.02674570241832817,,-0.003276149005651187,0.00032002472176472993,0.00032002472176472993,-0.003276149005651187,0.00032002472176472993,0.00032002472176472993,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,318,319,63.6,,-0.039845579251983794,0.03633439831613444,0.027364370749545407,,-0.026893607876495557,,0.027364370749545407,,-0.026893607876495557,,-0.003511180935849352,0.00047076287304985073,0.00047076287304985073,-0.0035111809358493516,0.0004707628730498507,0.0004707628730498507,4.336808689942018e-19,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,319,320,63.800000000000004,,-0.039351392935432966,0.036420330625599066,0.027024983097531898,,-0.026957212337881037,,0.027024983097531898,,-0.026957212337881037,,-0.0029310623098338998,6.77707596508613e-05,6.77707596508613e-05,-0.0029310623098338998,6.77707596508613e-05,6.77707596508613e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,320,321,64.0,,-0.03791157557339956,0.03542603863987786,0.02603617337645467,,-0.026221267888049477,,0.02603617337645467,,-0.026221267888049477,,-0.002485536933521701,-0.00018509451159480841,-0.00018509451159480841,-0.002485536933521701,-0.00018509451159480841,-0.00018509451159480841,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,321,322,64.2,,-0.035593960829816314,0.032699115763537984,0.02444452706866842,,-0.024202883163259237,,0.02444452706866842,,-0.024202883163259237,,-0.00289484506627833,0.00024164390540918138,0.00024164390540918138,-0.00289484506627833,0.0002416439054091814,0.0002416439054091814,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_0.75L,sr_closed_loop_400,322,323,64.4,,-0.032496152628649175,0.028945992199229775,0.022317074695805763,,-0.02142493614533051,,0.022317074695805763,,-0.02142493614533051,,-0.0035501604294193995,0.0008921385504752528,0.0008921385504752528,-0.0035501604294193995,0.0008921385504752528,0.0008921385504752528,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,323,324,64.60000000000001,,-0.028701295053276524,0.025571522073191775,0.01971091633185004,,-0.0189272567955581,,0.01971091633185004,,-0.0189272567955581,,-0.003129772980084749,0.0007836595362919405,0.0007836595362919405,-0.003129772980084749,0.0007836595362919405,0.0007836595362919405,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,324,325,64.8,,-0.024228951417434454,0.02189433986832719,0.016639487288326742,,-0.016205519244061568,,0.016639487288326742,,-0.016205519244061568,,-0.0023346115491072635,0.0004339680442651747,0.0004339680442651747,-0.0023346115491072635,0.0004339680442651747,0.0004339680442651747,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,325,326,65.0,,-0.01920500739212042,0.016994489571726605,0.013189240874182512,,-0.012578800249466532,,0.013189240874182512,,-0.012578800249466532,,-0.002210517820393814,0.0006104406247159806,0.0006104406247159806,-0.002210517820393814,0.0006104406247159806,0.0006104406247159806,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,326,327,65.2,,-0.01379681436766381,0.011125620393573711,0.009475107417358243,,-0.008234843182050132,,0.009475107417358243,,-0.008234843182050132,,-0.002671193974090099,0.0012402642353081111,0.0012402642353081111,-0.002671193974090099,0.0012402642353081111,0.0012402642353081111,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,327,328,65.4,,-0.008169809931963312,0.005540348866280134,0.005610702921841246,,-0.004100796402690411,,0.005610702921841246,,-0.004100796402690411,,-0.002629461065683178,0.0015099065191508353,0.0015099065191508353,-0.002629461065683178,0.0015099065191508353,0.0015099065191508353,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,328,329,65.60000000000001,,-0.0023886380782338337,0.0007975391212092481,0.0016404223300635794,,-0.0005903140105788402,,0.0016404223300635794,,-0.0005903140105788402,,-0.0015910989570245854,0.0010501083194847391,0.0010501083194847391,-0.0015910989570245854,0.0010501083194847391,0.0010501083194847391,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,329,330,65.8,,0.003492051501892283,-0.004106061712968817,-0.0023982031073002848,,0.00303918101696594,,-0.0023982031073002848,,0.00303918101696594,,-0.0006140102110765342,0.0006409779096656553,0.0006409779096656553,-0.0006140102110765342,0.0006409779096656553,0.0006409779096656553,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,330,331,66.0,,0.009300229234366148,-0.0099121518244139,-0.006387030270422924,,0.007336670943569867,,-0.006387030270422924,,0.007336670943569867,,-0.0006119225900477511,0.0009496406731469434,0.0009496406731469434,-0.0006119225900477511,0.0009496406731469434,0.0009496406731469434,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,331,332,66.2,,0.014822187181092418,-0.01550960175836717,-0.010179292984487824,,0.0114797318062348,,-0.010179292984487824,,0.0114797318062348,,-0.0006874145772747531,0.0013004388217469753,0.0013004388217469753,-0.0006874145772747531,0.0013004388217469753,0.0013004388217469753,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,332,333,66.4,,0.0199869020074205,-0.01995625516409299,-0.013726215227217658,,0.014771008354033603,,-0.013726215227217658,,0.014771008354033603,,3.064684332751075e-05,0.0010447931268159454,0.0010447931268159454,3.064684332751075e-05,0.0010447931268159454,0.0010447931268159454,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,333,334,66.60000000000001,,0.02477225866304003,-0.023561611807756018,-0.017012609255148824,,0.01743958282679529,,-0.017012609255148824,,0.01743958282679529,,0.001210646855284013,0.0004269735716464669,0.0004269735716464669,0.001210646855284013,0.0004269735716464669,0.0004269735716464669,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,334,335,66.8,,0.02907788884269628,-0.027288376988979304,-0.019969546078715757,,0.020198020177527205,,-0.019969546078715757,,0.020198020177527205,,0.0017895118537169762,0.00022847409881144795,0.00022847409881144795,0.0017895118537169762,0.00022847409881144792,0.00022847409881144792,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_0.75L,sr_closed_loop_400,335,336,67.0,,0.03272687214390634,-0.031188300486663222,-0.022475523750209662,,0.023084624006287142,,-0.022475523750209662,,0.023084624006287142,,0.00153857165724312,0.00060910025607748,0.00060910025607748,0.0015385716572431198,0.00060910025607748,0.00060910025607748,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,336,337,67.2,,0.035615650590697635,-0.034076342218547606,-0.024459422740142334,,0.02522226396918049,,-0.024459422740142334,,0.02522226396918049,,0.0015393083721500292,0.0007628412290381567,0.0007628412290381567,0.0015393083721500292,0.0007628412290381567,0.0007628412290381567,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,337,338,67.4,,0.03775549435293987,-0.035249355983407935,-0.02592898295624042,,0.026090492801578054,,-0.02592898295624042,,0.026090492801578054,,0.002506138369531938,0.00016150984533763388,0.00016150984533763388,0.002506138369531938,0.00016150984533763388,0.00016150984533763388,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,338,339,67.60000000000001,,0.03912832862989862,-0.03587487469981412,-0.026871791338942325,,0.026553482581457434,,-0.026871791338942325,,0.026553482581457434,,0.003253453930084506,-0.00031830875748489057,-0.00031830875748489057,0.003253453930084506,-0.00031830875748489057,-0.00031830875748489057,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,339,340,67.8,,0.03962464139359467,-0.03681566506367882,-0.027212639350904257,,0.027249826770774248,,-0.027212639350904257,,0.027249826770774248,,0.0028089763299158563,3.7187419869990496e-05,3.7187419869990496e-05,0.0028089763299158563,3.7187419869990496e-05,3.7187419869990496e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,340,341,68.0,,0.03915661037693015,-0.036895359835844105,-0.02689121412625635,,0.027308814398249785,,-0.02689121412625635,,0.027308814398249785,,0.0022612505410860434,0.00041760027199343533,0.00041760027199343533,0.0022612505410860434,0.00041760027199343533,0.00041760027199343533,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,341,342,68.2,,0.03778207494225522,-0.03523080860428606,-0.02594723745559571,,0.026076764600084245,,-0.02594723745559571,,0.026076764600084245,,0.002551266337969156,0.00012952714448853653,0.00012952714448853653,0.002551266337969156,0.00012952714448853653,0.00012952714448853653,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,342,343,68.4,,0.03561118505169266,-0.032189917166244975,-0.024456355984250645,,0.023825989969990677,,-0.024456355984250645,,0.023825989969990677,,0.003421267885447686,-0.0006303660142599685,-0.0006303660142599685,0.003421267885447686,-0.0006303660142599685,-0.0006303660142599685,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,343,344,68.60000000000001,,0.032686894937576066,-0.02937291050693992,-0.022448068983179307,,0.021740927990384826,,-0.022448068983179307,,0.021740927990384826,,0.0033139844306361473,-0.0007071409927944805,-0.0007071409927944805,0.0033139844306361473,-0.0007071409927944805,-0.0007071409927944805,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,344,345,68.8,,0.02896944003828969,-0.02678360587902881,-0.019895067721346183,,0.01982440407467395,,-0.019895067721346183,,0.01982440407467395,,0.00218583415926088,-7.066364667223171e-05,-7.066364667223171e-05,0.00218583415926088,-7.066364667223171e-05,-7.066364667223171e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,345,346,69.0,,0.024552171383509003,-0.022501827558036945,-0.01686146200048704,,0.01665516301068471,,-0.01686146200048704,,0.01665516301068471,,0.0020503438254720584,-0.00020629898980233097,-0.00020629898980233097,0.0020503438254720584,-0.000206298989802331,-0.000206298989802331,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_0.75L,sr_closed_loop_400,346,347,69.2,,0.019682182131509428,-0.0168163780272721,-0.013516945646608639,,0.012446967543908574,,-0.013516945646608639,,0.012446967543908574,,0.0028658041042373267,-0.0010699781027000647,-0.0010699781027000647,0.0028658041042373267,-0.0010699781027000647,-0.0010699781027000647,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,347,348,69.4,,0.014479403901281777,-0.011410609379513948,-0.009943882960802035,,0.008445783293685158,,-0.009943882960802035,,0.008445783293685158,,0.0030687945217678283,-0.0014980996671168766,-0.0014980996671168766,0.0030687945217678283,-0.0014980996671168766,-0.0014980996671168766,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,348,349,69.60000000000001,,0.008969354058568779,-0.007013531908977395,-0.006159798262448302,,0.0051912013334639495,,-0.006159798262448302,,0.0051912013334639495,,0.001955822149591384,-0.0009685969289843525,-0.0009685969289843525,0.001955822149591384,-0.0009685969289843524,-0.0009685969289843524,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,349,350,69.8,,0.0032239065168791197,-0.0022376733202981625,-0.002214051717804142,,0.0016562572003585882,,-0.002214051717804142,,0.0016562572003585882,,0.0009862331965809572,-0.0005577945174455538,-0.0005577945174455538,0.0009862331965809572,-0.0005577945174455538,-0.0005577945174455538,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,350,351,70.0,,-0.0025698113750072,0.0036626497005561717,0.0017648449976692207,,-0.002710981037271818,,0.0017648449976692207,,-0.002710981037271818,,0.0010928383255489715,-0.0009461360396025972,-0.0009461360396025972,0.0010928383255489715,-0.0009461360396025973,-0.0009461360396025973,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,351,352,70.2,,-0.008217442348016404,0.009586726810626015,0.005643414984685922,,-0.007095801323606234,,0.005643414984685922,,-0.007095801323606234,,0.0013692844626096105,-0.0014523863389203128,-0.0014523863389203128,0.0013692844626096105,-0.0014523863389203128,-0.0014523863389203128,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,352,353,70.4,,-0.013664124065801626,0.014240404680163308,0.009383980956576648,,-0.010540311033604265,,0.009383980956576648,,-0.010540311033604265,,0.0005762806143616815,-0.0011563300770276175,-0.0011563300770276175,0.0005762806143616815,-0.0011563300770276175,-0.0011563300770276175,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,353,354,70.60000000000001,,-0.018857333283875753,0.018091056890588972,0.01295047202261535,,-0.01339044576584678,,0.01295047202261535,,-0.01339044576584678,,-0.0007662763932867814,-0.0004399737432314293,-0.0004399737432314293,-0.0007662763932867815,-0.0004399737432314293,-0.0004399737432314293,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,354,355,70.8,,-0.0236718222653849,0.02256376168441222,0.01625687298183991,,-0.016701004752562965,,0.01625687298183991,,-0.016701004752562965,,-0.0011080605809726807,-0.0004441317707230552,-0.0004441317707230552,-0.0011080605809726807,-0.0004441317707230552,-0.0004441317707230552,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,355,356,71.0,,-0.027915572833115035,0.027237036536728917,0.019171313330907734,,-0.02016001954850865,,0.019171313330907734,,-0.02016001954850865,,-0.0006785362963861175,-0.0009887062176009154,-0.0009887062176009154,-0.0006785362963861175,-0.0009887062176009154,-0.0009887062176009154,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,356,357,71.2,,-0.03152372834913673,0.030524504095547737,0.021649252091391916,,-0.022593302264912234,,0.021649252091391916,,-0.022593302264912234,,-0.00099922425358899,-0.000944050173520318,-0.000944050173520318,-0.00099922425358899,-0.000944050173520318,-0.000944050173520318,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,357,358,71.4,,-0.034484805998865754,0.0322683839584603,0.023682803319570973,,-0.023884068684348482,,0.023682803319570973,,-0.023884068684348482,,-0.0022164220404054524,-0.00020126536477750936,-0.00020126536477750936,-0.0022164220404054524,-0.00020126536477750934,-0.00020126536477750934,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_0.75L,sr_closed_loop_400,358,359,71.60000000000001,,-0.036759466510115406,0.03391371936921117,0.02524495035639908,,-0.02510189552097447,,0.02524495035639908,,-0.02510189552097447,,-0.0028457471409042354,0.00014305483542460806,0.00014305483542460806,-0.0028457471409042354,0.00014305483542460806,0.00014305483542460806,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,359,360,71.8,,-0.03819099072828243,0.035992910986624944,0.026228064673677456,,-0.02664084942279242,,0.026228064673677456,,-0.02664084942279242,,-0.002198079741657484,-0.0004127847491149639,-0.0004127847491149639,-0.002198079741657484,-0.0004127847491149639,-0.0004127847491149639,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,360,361,72.0,,-0.03869644721470296,0.03686537384226481,0.026575192233417606,,-0.027286619684962054,,0.026575192233417606,,-0.027286619684962054,,-0.0018310733724381453,-0.0007114274515444483,-0.0007114274515444483,-0.0018310733724381453,-0.0007114274515444483,-0.0007114274515444483,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,361,362,72.2,,-0.038342606409737134,0.035730859314245425,0.026332188338000016,,-0.02644688680755833,,0.026332188338000016,,-0.02644688680755833,,-0.0026117470954917094,-0.00011469846955831225,-0.00011469846955831225,-0.0026117470954917094,-0.00011469846955831225,-0.00011469846955831225,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,362,363,72.4,,-0.03717965246601232,0.033875926126959194,0.025533517482207467,,-0.025073922121534562,,0.025533517482207467,,-0.025073922121534562,,-0.0033037263390531257,0.0004595953606729049,0.0004595953606729049,-0.0033037263390531257,0.0004595953606729049,0.0004595953606729049,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,363,364,72.60000000000001,,-0.035171435782059654,0.03239178279991499,0.024154353546916765,,-0.023975404724252646,,0.024154353546916765,,-0.023975404724252646,,-0.0027796529821446647,0.00017894882266411907,0.00017894882266411907,-0.0027796529821446647,0.00017894882266411907,0.00017894882266411907,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,364,365,72.8,,-0.03229924362300113,0.03023632874573123,0.02218184536458179,,-0.0223800037044075,,0.02218184536458179,,-0.0223800037044075,,-0.002062914877269898,-0.0001981583398257096,-0.0001981583398257096,-0.002062914877269898,-0.0001981583398257096,-0.0001981583398257096,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,365,366,73.0,,-0.028683220252542094,0.026399813325891572,0.019698503272288444,,-0.019540332591222172,,0.019698503272288444,,-0.019540332591222172,,-0.002283406926650522,0.00015817068106627197,0.00015817068106627197,-0.002283406926650522,0.00015817068106627197,0.00015817068106627197,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,366,367,73.2,,-0.024496245823589526,0.02153792525960947,0.016823054533843515,,-0.015941712075853896,,0.016823054533843515,,-0.015941712075853896,,-0.0029583205639800575,0.0008813424579896187,0.0008813424579896187,-0.0029583205639800575,0.0008813424579896188,0.0008813424579896188,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,367,368,73.4,,-0.019807429868363317,0.016995848986839406,0.013602960847570756,,-0.01257980644686292,,0.013602960847570756,,-0.01257980644686292,,-0.0028115808815239104,0.001023154400707835,0.001023154400707835,-0.0028115808815239104,0.001023154400707835,0.001023154400707835,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,368,369,73.60000000000001,,-0.01467057149963771,0.012694315022050135,0.010075169320165264,,-0.009395942860903936,,0.010075169320165264,,-0.009395942860903936,,-0.0019762564775875745,0.0006792264592613284,0.0006792264592613284,-0.0019762564775875745,0.0006792264592613284,0.0006792264592613284,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,369,370,73.8,,-0.009215596637986101,0.007759095523129374,0.006328907944475688,,-0.005743044666922494,,0.006328907944475688,,-0.005743044666922494,,-0.0014565011148567272,0.0005858632775531938,0.0005858632775531938,-0.0014565011148567272,0.0005858632775531938,0.0005858632775531938,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,370,371,74.0,,-0.0035990117932972166,0.0018841879554194075,0.002471659212705963,,-0.001394618168650506,,0.002471659212705963,,-0.001394618168650506,,-0.001714823837877809,0.001077041044055457,0.001077041044055457,-0.001714823837877809,0.001077041044055457,0.001077041044055457,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,371,372,74.2,,0.0020490444691410327,-0.0037384823912848023,-0.001407202846300423,,0.0027671100704521954,,-0.001407202846300423,,0.0027671100704521954,,-0.0016894379221437696,0.0013599072241517725,0.0013599072241517725,-0.0016894379221437696,0.0013599072241517725,0.0013599072241517725,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,372,373,74.4,,0.007642663684661463,-0.008413872645606278,-0.00524867969062718,,0.006227690622118467,,-0.00524867969062718,,0.006227690622118467,,-0.0007712089609448148,0.0009790109314912875,0.0009790109314912875,-0.0007712089609448149,0.0009790109314912875,0.0009790109314912875,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,373,374,74.60000000000001,,0.013098489125171163,-0.012948932158325882,-0.008995525210296123,,0.009584402660404605,,-0.008995525210296123,,0.009584402660404605,,0.00014955696684528126,0.0005888774501084815,0.0005888774501084815,0.00014955696684528126,0.0005888774501084815,0.0005888774501084815,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,374,375,74.8,,0.018274261476654428,-0.018018386389054876,-0.012550041324757757,,0.013336657288177716,,-0.012550041324757757,,0.013336657288177716,,0.00025587508759955177,0.0007866159634199593,0.0007866159634199593,0.00025587508759955177,0.0007866159634199594,0.0007866159634199594,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_0.75L,sr_closed_loop_400,375,376,75.0,,0.023025169688521276,-0.02285544635307655,-0.01581277752152447,,0.01691690080330782,,-0.01581277752152447,,0.01691690080330782,,0.00016972333544472765,0.0011041232817833521,0.0011041232817833521,0.00016972333544472765,0.0011041232817833521,0.0011041232817833521,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,376,377,75.2,,0.02726955819039498,-0.026490481056508794,-0.01872765597857682,,0.0196074420661901,,-0.01872765597857682,,0.0196074420661901,,0.0007790771338861864,0.0008797860876132817,0.0008797860876132817,0.0007790771338861863,0.0008797860876132817,0.0008797860876132817,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,377,378,75.4,,0.030960432500366016,-0.029196697261765856,-0.02126240274105466,,0.021610500347765748,,-0.02126240274105466,,0.021610500347765748,,0.0017637352386001594,0.0003480976067110897,0.0003480976067110897,0.0017637352386001594,0.0003480976067110897,0.0003480976067110897,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,378,379,75.60000000000001,,0.034023366968351426,-0.031906854644262926,-0.023365905210763177,,0.023616475767925672,,-0.023365905210763177,,0.023616475767925672,,0.0021165123240885,0.00025057055716249527,0.00025057055716249527,0.0021165123240885,0.00025057055716249527,0.00025057055716249527,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,379,380,75.8,,0.036333326502211855,-0.03447085800332739,-0.024952294222735105,,0.02551427245999521,,-0.024952294222735105,,0.02551427245999521,,0.0018624684988844675,0.0005619782372601051,0.0005619782372601051,0.0018624684988844675,0.0005619782372601051,0.0005619782372601051,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,380,381,76.0,,0.037817799254295036,-0.03594466301599166,-0.025971771502729214,,0.026605137753873104,,-0.025971771502729214,,0.026605137753873104,,0.0018731362383033745,0.0006333662511438902,0.0006333662511438902,0.0018731362383033745,0.0006333662511438902,0.0006333662511438902,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,381,382,76.2,,0.03846572769944579,-0.03605868489740032,-0.02641674317901371,,0.026689533255382845,,-0.02641674317901371,,0.026689533255382845,,0.00240704280204547,0.00027279007636913516,0.00027279007636913516,0.00240704280204547,0.00027279007636913516,0.00027279007636913516,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,382,383,76.4,,0.038293910770111426,-0.03545512336376911,-0.026298746095181128,,0.026242795509140705,,-0.026298746095181128,,0.026242795509140705,,0.0028387874063423163,-5.595058604042358e-05,-5.595058604042358e-05,0.0028387874063423163,-5.595058604042358e-05,-5.595058604042358e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,383,384,76.60000000000001,,0.037268325311968296,-0.03465619284880253,-0.025594414492056707,,0.025651451631553038,,-0.025594414492056707,,0.025651451631553038,,0.002612132463165766,5.703713949633052e-05,5.703713949633052e-05,0.002612132463165766,5.703713949633052e-05,5.703713949633052e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,384,385,76.80000000000001,,0.03536324131455915,-0.03312930305151247,-0.024286078014264523,,0.024521294607301278,,-0.024286078014264523,,0.024521294607301278,,0.0022339382630466864,0.00023521659303675502,0.00023521659303675502,0.0022339382630466864,0.000235216593036755,0.000235216593036755,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_0.75L,sr_closed_loop_400,385,386,77.0,,0.03263968781095202,-0.030361526371271638,-0.022415648992324316,,0.02247267114915384,,-0.022415648992324316,,0.02247267114915384,,0.002278161439680383,5.702215682952538e-05,5.702215682952538e-05,0.002278161439680383,5.702215682952538e-05,5.702215682952538e-05,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,386,387,77.2,,0.029206538894982533,-0.026485398270997263,-0.02005789785559535,,0.01960367994415692,,-0.02005789785559535,,0.01960367994415692,,0.00272114062398527,-0.000454217911438428,-0.000454217911438428,0.00272114062398527,-0.00045421791143842796,-0.00045421791143842796,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,387,388,77.4,,0.025175007752346084,-0.022366287862826233,-0.017289201429380143,,0.016554840682983525,,-0.017289201429380143,,0.016554840682983525,,0.0028087198895198513,-0.000734360746396618,-0.000734360746396618,0.0028087198895198513,-0.000734360746396618,-0.000734360746396618,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,388,389,77.60000000000001,,0.020601019942962148,-0.018303968710873076,-0.014147967180322227,,0.013548036568842103,,-0.014147967180322227,,0.013548036568842103,,0.0022970512320890715,-0.0005999306114801237,-0.0005999306114801237,0.0022970512320890715,-0.0005999306114801237,-0.0005999306114801237,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,389,390,77.80000000000001,,0.01555049532833277,-0.013771659948347188,-0.01067946626682271,,0.0101933605515307,,-0.01067946626682271,,0.0101933605515307,,0.0017788353799855824,-0.0004861057152920102,-0.0004861057152920102,0.0017788353799855824,-0.00048610571529201027,-0.00048610571529201027,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_0.75L,sr_closed_loop_400,390,391,78.0,,0.010191635877645435,-0.008321035295979606,-0.006999213160801854,,0.006158975261665006,,-0.006999213160801854,,0.006158975261665006,,0.0018706005816658284,-0.0008402378991368481,-0.0008402378991368481,0.0018706005816658284,-0.0008402378991368481,-0.0008402378991368481,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,391,392,78.2,,0.00469732174380712,-0.0026111561931445133,-0.0032259351260664534,,0.001932697774481336,,-0.0032259351260664534,,0.001932697774481336,,0.0020861655506626067,-0.0012932373515851174,-0.0012932373515851174,0.0020861655506626067,-0.0012932373515851174,-0.0012932373515851174,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,392,393,78.4,,-0.0008675904352527411,0.0022830097673689014,0.0005958268589565925,,-0.00168981384878374,,0.0005958268589565925,,-0.00168981384878374,,0.0014154193321161603,-0.0010939869898271475,-0.0010939869898271475,0.0014154193321161603,-0.0010939869898271475,-0.0010939869898271475,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,393,394,78.60000000000001,,-0.006458870558913421,0.0067333557970535715,0.004435697307340084,,-0.004983823563647007,,0.004435697307340084,,-0.004983823563647007,,0.0002744852381401505,-0.0005481262563069231,-0.0005481262563069231,0.0002744852381401505,-0.0005481262563069231,-0.0005481262563069231,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,394,395,78.80000000000001,,-0.01192235120914594,0.012062281815680058,0.00818780012282335,,-0.008928131255241728,,0.00818780012282335,,-0.008928131255241728,,0.00013993060653411798,-0.0007403311324183769,-0.0007403311324183769,0.00013993060653411798,-0.0007403311324183769,-0.0007403311324183769,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,395,396,79.0,,-0.017063462472162,0.017438498205896286,0.01171851237012569,,-0.012907441830296983,,0.01171851237012569,,-0.012907441830296983,,0.00037503573373428786,-0.0011889294601712935,-0.0011889294601712935,0.00037503573373428786,-0.0011889294601712935,-0.0011889294601712935,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,396,397,79.2,,-0.021803313158873665,0.021749669184589485,0.014973654695160602,,-0.01609843843854459,,0.014973654695160602,,-0.01609843843854459,,-5.364397428418016e-05,-0.001124783743383987,-0.001124783743383987,-5.3643974284180156e-05,-0.001124783743383987,-0.001124783743383987,6.776263578034403e-21,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,397,398,79.4,,-0.026112770943391324,0.024996354290024315,0.017933220166634695,,-0.018501535233056535,,0.017933220166634695,,-0.018501535233056535,,-0.0011164166533670083,-0.00056831506642184,-0.00056831506642184,-0.0011164166533670083,-0.00056831506642184,-0.00056831506642184,0.0,0.0,0.0 +illusion,illusion_0.75L,sr_closed_loop_400,398,399,79.60000000000001,,-0.029909967610623728,0.02814032469334507,0.020540984926533685,,-0.020828605753574002,,0.020540984926533685,,-0.020828605753574002,,-0.0017696429172786576,-0.000287620827040317,-0.000287620827040317,-0.0017696429172786576,-0.000287620827040317,-0.000287620827040317,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,0,1,0.0,,-0.12639761314767003,0.14768039875512365,0.08680489060422568,,-0.10930850431617486,,0.08680489060422568,,-0.10930850431617486,,0.021282785607453614,-0.022503613711949186,-0.022503613711949186,0.021282785607453614,-0.022503613711949186,-0.022503613711949186,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,1,2,0.3,,-0.13137530694757538,0.13067534742924028,0.09022337418949171,,-0.09672188658003059,,0.09022337418949171,,-0.09672188658003059,,-0.0006999595183350971,-0.006498512390538877,-0.006498512390538877,-0.0006999595183350971,-0.006498512390538877,-0.006498512390538877,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,2,3,0.6,,-0.13358277172903582,0.10833690504448425,0.09173937385194965,,-0.0801876562663681,,0.09173937385194965,,-0.0801876562663681,,-0.025245866684551574,0.011551717585581545,0.011551717585581545,-0.025245866684551577,0.011551717585581545,0.011551717585581545,-3.469446951953614e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,3,4,0.8999999999999999,,-0.13560438503000344,0.08837930924173029,0.09312773805491541,,-0.0654156556126922,,0.09312773805491541,,-0.0654156556126922,,-0.047225075788273146,0.0277120824422232,0.0277120824422232,-0.047225075788273146,0.0277120824422232,0.0277120824422232,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,4,5,1.2,,-0.13368016300828725,0.07464455253181813,0.09180625833758742,,-0.055249609707057376,,0.09180625833758742,,-0.055249609707057376,,-0.059035610476469116,0.03655664863053004,0.03655664863053004,-0.059035610476469116,0.03655664863053004,0.03655664863053004,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,5,6,1.5,,-0.12357932642374302,0.06926997344820186,0.08486940254658323,,-0.0512715110161591,,0.08486940254658323,,-0.0512715110161591,,-0.05430935297554115,0.03359789153042413,0.03359789153042413,-0.05430935297554115,0.03359789153042413,0.03359789153042413,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,6,7,1.7999999999999998,,-0.10207414115463022,0.06404114469430376,0.07010049031619153,,-0.04740129225163819,,0.07010049031619153,,-0.04740129225163819,,-0.03803299646032646,0.022699198064553346,0.022699198064553346,-0.03803299646032646,0.022699198064553346,0.022699198064553346,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,7,8,2.1,,-0.06829212593726208,0.051479623311383574,0.04690033595957437,,-0.038103639171899226,,0.04690033595957437,,-0.038103639171899226,,-0.01681250262587851,0.008796696787675147,0.008796696787675147,-0.01681250262587851,0.008796696787675147,0.008796696787675147,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,8,9,2.4,,-0.02399121462659804,0.027960926961939917,0.01647621904609305,,-0.020695821051860623,,0.01647621904609305,,-0.020695821051860623,,0.003969712335341876,-0.004219602005767573,-0.004219602005767573,0.003969712335341876,-0.004219602005767573,-0.004219602005767573,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,9,10,2.6999999999999997,,0.027065844553882203,-0.007367282139179837,-0.018587753495517896,,0.005453036410365717,,-0.018587753495517896,,0.005453036410365717,,0.019698562414702366,-0.01313471708515218,-0.01313471708515218,0.019698562414702366,-0.01313471708515218,-0.01313471708515218,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,10,11,3.0,,0.0810046649055745,-0.05175742842685203,-0.05563080583923172,,0.03830926200281798,,-0.05563080583923172,,0.03830926200281798,,0.029247236478722467,-0.01732154383641374,-0.01732154383641374,0.029247236478722467,-0.01732154383641374,-0.01732154383641374,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,11,12,3.3,,0.1342411197651982,-0.09706006098548267,-0.0921915012919814,,0.07184088196262227,,-0.0921915012919814,,0.07184088196262227,,0.03718105877971553,-0.020350619329359138,-0.020350619329359138,0.03718105877971553,-0.020350619329359138,-0.020350619329359138,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,12,13,3.5999999999999996,,0.18360510172864847,-0.14219767481952283,-0.12609273524265796,,0.10525036012079819,,-0.12609273524265796,,0.10525036012079819,,0.04140742690912563,-0.02084237512185977,-0.02084237512185977,0.04140742690912563,-0.02084237512185977,-0.02084237512185977,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,13,14,3.9,,0.22673667975415202,-0.18149648808537747,-0.15571380022050144,,0.13433813707496345,,-0.15571380022050144,,0.13433813707496345,,0.04524019166877455,-0.021375663145537988,-0.021375663145537988,0.04524019166877455,-0.021375663145537988,-0.021375663145537988,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,14,15,4.2,,0.26166080973322176,-0.21414205340828418,-0.17969831390541663,,0.15850138384354728,,-0.17969831390541663,,0.15850138384354728,,0.04751875632493757,-0.021196930061869346,-0.021196930061869346,0.04751875632493757,-0.021196930061869346,-0.021196930061869346,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,15,16,4.5,,0.28665847179365583,-0.24005528437311707,-0.19686572131509827,,0.17768156308630684,,-0.19686572131509827,,0.17768156308630684,,0.04660318742053876,-0.019184158228791437,-0.019184158228791437,0.04660318742053876,-0.019184158228791437,-0.019184158228791437,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,16,17,4.8,,0.3002832565872708,-0.25618924352434447,-0.2062226856126291,,0.18962342509633032,,-0.2062226856126291,,0.18962342509633032,,0.04409401306292632,-0.016599260516298786,-0.016599260516298786,0.04409401306292632,-0.016599260516298786,-0.016599260516298786,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,17,18,5.1,,0.3013975148913699,-0.2619460736144024,-0.20698791422560275,,0.19388445426506926,,-0.20698791422560275,,0.19388445426506926,,0.03945144127696748,-0.013103459960533498,-0.013103459960533498,0.03945144127696748,-0.013103459960533498,-0.013103459960533498,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,18,19,5.3999999999999995,,0.28950046840325216,-0.2572909255486865,-0.19881749238616564,,0.1904388563609257,,-0.19881749238616564,,0.1904388563609257,,0.032209542854565676,-0.008378636025239944,-0.008378636025239944,0.032209542854565676,-0.008378636025239944,-0.008378636025239944,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,19,20,5.7,,0.26507205624359537,-0.24034152762603986,-0.18204102333467684,,0.17789343156791532,,-0.18204102333467684,,0.17789343156791532,,0.02473052861755551,-0.004147591766761521,-0.004147591766761521,0.024730528617555512,-0.004147591766761521,-0.004147591766761521,3.469446951953614e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,20,21,6.0,,0.22954550378828276,-0.21241696314072214,-0.1576427896763734,,0.15722452490663266,,-0.1576427896763734,,0.15722452490663266,,0.017128540647560614,-0.0004182647697407449,-0.0004182647697407449,0.017128540647560614,-0.0004182647697407449,-0.0004182647697407449,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,21,22,6.3,,0.1853379435072942,-0.17570574021272614,-0.12728278256462786,,0.13005200300322953,,-0.12728278256462786,,0.13005200300322953,,0.00963220329456807,0.0027692204386016717,0.0027692204386016717,0.00963220329456807,0.0027692204386016717,0.0027692204386016717,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,22,23,6.6,,0.13522396363572226,-0.13103717716666702,-0.09286647966014254,,0.0969897018605189,,-0.09286647966014254,,0.0969897018605189,,0.004186786469055237,0.004123222200376364,0.004123222200376364,0.004186786469055237,0.004123222200376364,0.004123222200376364,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,23,24,6.8999999999999995,,0.08213061866897235,-0.08254899562977384,-0.0564040664319217,,0.06110023619353193,,-0.0564040664319217,,0.06110023619353193,,-0.000418376960801492,0.004696169761610226,0.004696169761610226,-0.000418376960801492,0.004696169761610226,0.004696169761610226,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,24,25,7.199999999999999,,0.028696404224842504,-0.034332291544080996,-0.019707557503968666,,0.02541170981433411,,-0.019707557503968666,,0.02541170981433411,,-0.005635887319238492,0.005704152310365446,0.005704152310365446,-0.005635887319238492,0.005704152310365446,0.005704152310365446,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,25,26,7.5,,-0.023060256066417525,0.012090430533447372,0.01583687346067345,,-0.008948966073291383,,0.01583687346067345,,-0.008948966073291383,,-0.010969825532970153,0.006887907387382066,0.006887907387382066,-0.010969825532970153,0.006887907387382066,0.006887907387382066,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,26,27,7.8,,-0.07147733111609807,0.05542969683427159,0.04908780912631721,,-0.04102736251206818,,0.04908780912631721,,-0.04102736251206818,,-0.016047634281826477,0.008060446614249032,0.008060446614249032,-0.016047634281826477,0.008060446614249032,0.008060446614249032,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,27,28,8.1,,-0.11508374478913087,0.0940475219897113,0.07903497248064358,,-0.06961109294121028,,0.07903497248064358,,-0.06961109294121028,,-0.02103622279941958,0.0094238795394333,0.0094238795394333,-0.02103622279941958,0.0094238795394333,0.0094238795394333,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,28,29,8.4,,-0.1527431237311065,0.126259967142867,0.10489794716721527,,-0.09345375743656265,,0.10489794716721527,,-0.09345375743656265,,-0.026483156588239493,0.011444189730652629,0.011444189730652629,-0.02648315658823949,0.011444189730652629,0.011444189730652629,3.469446951953614e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,29,30,8.7,,-0.18334758897936143,0.15268367725900803,0.12591588565290393,,-0.11301177769941995,,0.12591588565290393,,-0.11301177769941995,,-0.030663911720353404,0.012904107953483984,0.012904107953483984,-0.030663911720353404,0.012904107953483986,0.012904107953483986,0.0,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_1L,sr_closed_loop_400,30,31,9.0,,-0.20575289932504895,0.1721727179721094,0.1413029682494631,,-0.1274369682383386,,0.1413029682494631,,-0.1274369682383386,,-0.03358018135293955,0.01386600001112448,0.01386600001112448,-0.03358018135293955,0.013866000011124481,0.013866000011124481,0.0,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_1L,sr_closed_loop_400,31,32,9.299999999999999,,-0.21881141124388984,0.1834914936033472,0.15027103869272884,,-0.13581477900652664,,0.15027103869272884,,-0.13581477900652664,,-0.035319917640542625,0.014456259686202205,0.014456259686202205,-0.035319917640542625,0.014456259686202205,0.014456259686202205,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,32,33,9.6,,-0.22147393571442897,0.1876855070331754,0.15209955538414932,,-0.13891905918833083,,0.15209955538414932,,-0.13891905918833083,,-0.03378842868125356,0.013180496195818486,0.013180496195818486,-0.03378842868125356,0.013180496195818486,0.013180496195818486,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,33,34,9.9,,-0.21315655035058687,0.18308718402129068,0.1463875034818875,,-0.1355155214471766,,0.1463875034818875,,-0.1355155214471766,,-0.030069366329296188,0.010871982034710903,0.010871982034710903,-0.030069366329296188,0.010871982034710903,0.010871982034710903,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,34,35,10.2,,-0.19407785391889296,0.16887205807823183,0.13328500798864132,,-0.12499392095990876,,0.13328500798864132,,-0.12499392095990876,,-0.025205795840661127,0.00829108702873256,0.00829108702873256,-0.025205795840661127,0.00829108702873256,0.00829108702873256,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,35,36,10.5,,-0.16528023080993764,0.14700058605059355,0.11350793735112773,,-0.10880532779055797,,0.11350793735112773,,-0.10880532779055797,,-0.0182796447593441,0.004702609560569754,0.004702609560569754,-0.0182796447593441,0.004702609560569754,0.004702609560569754,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,36,37,10.799999999999999,,-0.12882612210987687,0.11715464978081931,0.0884726946833222,,-0.08671428063016622,,0.0884726946833222,,-0.08671428063016622,,-0.011671472329057561,0.0017584140531559794,0.0017584140531559794,-0.011671472329057561,0.0017584140531559794,0.0017584140531559794,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,37,38,11.1,,-0.08731872441389793,0.08104573036418164,0.059967052634084195,,-0.05998756532348093,,0.059967052634084195,,-0.05998756532348093,,-0.006272994049716291,-2.051268939673445e-05,-2.051268939673445e-05,-0.0062729940497162915,-2.051268939673445e-05,-2.051268939673445e-05,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,38,39,11.4,,-0.043487757922329125,0.04361233505631748,0.029865675269204358,,-0.032280513561225396,,0.029865675269204358,,-0.032280513561225396,,0.00012457713398835585,-0.0024148382920210383,-0.0024148382920210383,0.00012457713398835585,-0.0024148382920210383,-0.0024148382920210383,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,39,40,11.7,,1.679893244729572e-05,0.005395778636559739,-1.1536843592541865e-05,,-0.0039937899501578345,,-1.1536843592541865e-05,,-0.0039937899501578345,,0.005412577569007035,-0.004005326793750376,-0.004005326793750376,0.005412577569007035,-0.004005326793750376,-0.004005326793750376,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,40,41,12.0,,0.04099513657869368,-0.03055420280941397,-0.028153841337662893,,0.02261528434256233,,-0.028153841337662893,,0.02261528434256233,,0.010440933769279709,-0.0055385569951005645,-0.0055385569951005645,0.010440933769279709,-0.0055385569951005645,-0.0055385569951005645,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,41,42,12.299999999999999,,0.07769059702973774,-0.061472526083378436,-0.05335483485961444,,0.0455000794916124,,-0.05335483485961444,,0.0455000794916124,,0.016218070946359305,-0.007854755368002037,-0.007854755368002037,0.016218070946359305,-0.007854755368002037,-0.007854755368002037,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,42,43,12.6,,0.10864273638623737,-0.08833281123640796,-0.07461154219687025,,0.06538123921445443,,-0.07461154219687025,,0.06538123921445443,,0.020309925149829405,-0.009230302982415811,-0.009230302982415811,0.020309925149829405,-0.009230302982415811,-0.009230302982415811,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,43,44,12.9,,0.13279237132515484,-0.10871765393477915,-0.0911965580591208,,0.08046947492388129,,-0.0911965580591208,,0.08046947492388129,,0.024074717390375686,-0.010727083135239512,-0.010727083135239512,0.024074717390375686,-0.010727083135239512,-0.010727083135239512,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,44,45,13.2,,0.14935463020518677,-0.12211505788987571,-0.10257086358940319,,0.09038582266126442,,-0.10257086358940319,,0.09038582266126442,,0.02723957231531106,-0.012185040928138768,-0.012185040928138768,0.027239572315311062,-0.012185040928138768,-0.012185040928138768,3.469446951953614e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,45,46,13.5,,0.1575882335515069,-0.13089621858745693,-0.10822537730969713,,0.09688536864098626,,-0.10822537730969713,,0.09688536864098626,,0.026692014964049965,-0.011340008668710863,-0.011340008668710863,0.026692014964049965,-0.011340008668710863,-0.011340008668710863,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,46,47,13.799999999999999,,0.15706938044807142,-0.13172792527674537,-0.10786904948228192,,0.09750097243811999,,-0.10786904948228192,,0.09750097243811999,,0.02534145517132605,-0.010368077044161927,-0.010368077044161927,0.02534145517132605,-0.010368077044161927,-0.010368077044161927,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,47,48,14.1,,0.147794668579448,-0.12572375674196523,-0.10149954353124006,,0.0930568709342548,,-0.10149954353124006,,0.0930568709342548,,0.022070911837482776,-0.008442672596985265,-0.008442672596985265,0.022070911837482776,-0.008442672596985265,-0.008442672596985265,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,48,49,14.399999999999999,,0.13028465220678828,-0.11334944409441326,-0.08947435557194554,,0.08389778402193222,,-0.08947435557194554,,0.08389778402193222,,0.01693520811237502,-0.005576571550013315,-0.005576571550013315,0.01693520811237502,-0.005576571550013315,-0.005576571550013315,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,49,50,14.7,,0.10586772286171572,-0.09402342053613685,-0.0727057724641782,,0.06959325378405554,,-0.0727057724641782,,0.06959325378405554,,0.01184430232557887,-0.003112518680122661,-0.003112518680122661,0.01184430232557887,-0.003112518680122661,-0.003112518680122661,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,50,51,15.0,,0.07631393514791758,-0.06970066018979514,-0.052409397829005375,,0.05159029214046003,,-0.052409397829005375,,0.05159029214046003,,0.006613274958122445,-0.0008191056885453463,-0.0008191056885453463,0.006613274958122445,-0.0008191056885453462,-0.0008191056885453462,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,51,52,15.299999999999999,,0.043747822408190425,-0.04299623836344172,-0.030044277290896492,,0.03182449767435026,,-0.030044277290896492,,0.03182449767435026,,0.0007515840447487043,0.0017802203834537712,0.0017802203834537712,0.0007515840447487043,0.0017802203834537712,0.0017802203834537712,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,52,53,15.6,,0.010324751468936664,-0.013981994700617041,-0.007090631693573136,,0.010349043887776656,,-0.007090631693573136,,0.010349043887776656,,-0.0036572432316803773,0.003258412194203521,0.003258412194203521,-0.0036572432316803777,0.003258412194203521,0.003258412194203521,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,53,54,15.899999999999999,,-0.022051682185436215,0.013908457665830796,0.01514422473713641,,-0.010294614028756168,,0.01514422473713641,,-0.010294614028756168,,-0.008143224519605419,0.004849610708380242,0.004849610708380242,-0.008143224519605419,0.004849610708380242,0.004849610708380242,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,54,55,16.2,,-0.051845120492501486,0.038876388163068425,0.035605181938496516,,-0.028775110841665577,,0.035605181938496516,,-0.028775110841665577,,-0.012968732329433061,0.006830071096830939,0.006830071096830939,-0.012968732329433061,0.006830071096830939,0.006830071096830939,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,55,56,16.5,,-0.07787474735251441,0.06113657405186968,0.05348130203114787,,-0.04525141809581611,,0.05348130203114787,,-0.04525141809581611,,-0.016738173300644733,0.008229883935331764,0.008229883935331764,-0.016738173300644733,0.008229883935331764,0.008229883935331764,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,56,57,16.8,,-0.09926255273921067,0.07909516495241321,0.06816960239238662,,-0.05854381659630685,,0.06816960239238662,,-0.05854381659630685,,-0.020167387786797455,0.00962578579607977,0.00962578579607977,-0.020167387786797455,0.00962578579607977,0.00962578579607977,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,57,58,17.099999999999998,,-0.11516603829365117,0.09277696455757205,0.07909148841064755,,-0.06867066527629566,,0.07909148841064755,,-0.06867066527629566,,-0.022389073736079124,0.010420823134351886,0.010420823134351886,-0.022389073736079124,0.010420823134351886,0.010420823134351886,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,58,59,17.4,,-0.124898148943213,0.10196872870386463,0.08577511778659519,,-0.07547412734253973,,0.08577511778659519,,-0.07547412734253973,,-0.022929420239348366,0.010300990444055455,0.010300990444055455,-0.022929420239348366,0.010300990444055455,0.010300990444055455,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,59,60,17.7,,-0.12799638243380917,0.1061496061279896,0.08790286223144753,,-0.07856868465557995,,0.08790286223144753,,-0.07856868465557995,,-0.021846776305819576,0.009334177575867575,0.009334177575867575,-0.021846776305819576,0.009334177575867575,0.009334177575867575,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,60,61,18.0,,-0.1242489446297751,0.10428826641533752,0.08532926989434164,,-0.0771909780558594,,0.08532926989434164,,-0.0771909780558594,,-0.019960678214437574,0.008138291838482248,0.008138291838482248,-0.019960678214437574,0.008138291838482248,0.008138291838482248,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,61,62,18.3,,-0.11400797517836038,0.09730570203895905,0.07829617638273637,,-0.07202269794077842,,0.07829617638273637,,-0.07202269794077842,,-0.016702273139401327,0.0062734784419579415,0.0062734784419579415,-0.016702273139401327,0.006273478441957942,0.006273478441957942,0.0,8.673617379884035e-19,8.673617379884035e-19 +illusion,illusion_1L,sr_closed_loop_400,62,63,18.599999999999998,,-0.09805940894444107,0.08508662558459192,0.06734333073356887,,-0.06297851210020138,,0.06734333073356887,,-0.06297851210020138,,-0.012972783359849152,0.00436481863336749,0.00436481863336749,-0.012972783359849152,0.00436481863336749,0.00436481863336749,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,63,64,18.9,,-0.07756747574002908,0.06866450798235466,0.05327028001860074,,-0.05082336403765185,,0.05327028001860074,,-0.05082336403765185,,-0.008902967757674421,0.0024469159809488925,0.0024469159809488925,-0.008902967757674421,0.0024469159809488925,0.0024469159809488925,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,64,65,19.2,,-0.053979860781595175,0.04911407578233603,0.03707123729071839,,-0.03635273340194823,,0.03707123729071839,,-0.03635273340194823,,-0.004865784999259146,0.000718503888770157,0.000718503888770157,-0.004865784999259146,0.000718503888770157,0.000718503888770157,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,65,66,19.5,,-0.028795071372381048,0.027949495858063226,0.019775318205575494,,-0.020687360099168346,,0.019775318205575494,,-0.020687360099168346,,-0.0008455755143178222,-0.0009120418935928513,-0.0009120418935928513,-0.0008455755143178223,-0.0009120418935928513,-0.0009120418935928513,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,66,67,19.8,,-0.003492902080750374,0.0063487441212050615,0.002398787251279654,,-0.00469914579067289,,0.002398787251279654,,-0.00469914579067289,,0.0028558420404546877,-0.002300358539393236,-0.002300358539393236,0.0028558420404546877,-0.002300358539393236,-0.002300358539393236,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,67,68,20.099999999999998,,0.020630577558280804,-0.014104206870315803,-0.014168266183605307,,0.010439501589622095,,-0.014168266183605307,,0.010439501589622095,,0.006526370687965001,-0.0037287645939832123,-0.0037287645939832123,0.006526370687965002,-0.0037287645939832123,-0.0037287645939832123,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,68,69,20.4,,0.04259316160833199,-0.032349975152260846,-0.029251301838902795,,0.02394445998498749,,-0.029251301838902795,,0.02394445998498749,,0.010243186456071147,-0.005306841853915306,-0.005306841853915306,0.010243186456071147,-0.005306841853915306,-0.005306841853915306,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,69,70,20.7,,0.0614743111002343,-0.04862348840410113,-0.04221812989294048,,0.035989615662537396,,-0.04221812989294048,,0.035989615662537396,,0.01285082269613317,-0.006228514230403083,-0.006228514230403083,0.01285082269613317,-0.006228514230403083,-0.006228514230403083,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,70,71,21.0,,0.07649510844469094,-0.06152970788979446,-0.05253382049661102,,0.045542403711929524,,-0.05253382049661102,,0.045542403711929524,,0.01496540055489648,-0.006991416784681494,-0.006991416784681494,0.014965400554896481,-0.006991416784681493,-0.006991416784681493,1.734723475976807e-18,8.673617379884035e-19,8.673617379884035e-19 +illusion,illusion_1L,sr_closed_loop_400,71,72,21.3,,0.08702059652413707,-0.07094443489103802,-0.05976231016931528,,0.05251089604893532,,-0.05976231016931528,,0.05251089604893532,,0.01607616163309905,-0.007251414120379961,-0.007251414120379961,0.01607616163309905,-0.007251414120379961,-0.007251414120379961,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,72,73,21.599999999999998,,0.09239434110484099,-0.07674286608777992,-0.0634527857949751,,0.0568027170816444,,-0.0634527857949751,,0.0568027170816444,,0.015651475017061073,-0.006650068713330695,-0.006650068713330695,0.015651475017061073,-0.006650068713330695,-0.006650068713330695,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,73,74,21.9,,0.0923915767235522,-0.07782752913617937,-0.06345088732704215,,0.05760555142192921,,-0.06345088732704215,,0.05760555142192921,,0.014564047587372828,-0.005845335905112943,-0.005845335905112943,0.014564047587372828,-0.005845335905112943,-0.005845335905112943,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,74,75,22.2,,0.08711203375138184,-0.07428260262509968,-0.059825105647097476,,0.05498170548094287,,-0.059825105647097476,,0.05498170548094287,,0.012829431126282154,-0.004843400166154609,-0.004843400166154609,0.012829431126282155,-0.004843400166154609,-0.004843400166154609,1.734723475976807e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,75,76,22.5,,0.07686532289267502,-0.0666911855109631,-0.05278806916363146,,0.04936277123251614,,-0.05278806916363146,,0.04936277123251614,,0.010174137381711912,-0.0034252979311153245,-0.0034252979311153245,0.010174137381711912,-0.0034252979311153245,-0.0034252979311153245,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,76,77,22.8,,0.06259260965390934,-0.054808815901468466,-0.042986133189816145,,0.04056780547744995,,-0.042986133189816145,,0.04056780547744995,,0.007783793752440871,-0.0024183277123661917,-0.0024183277123661917,0.0077837937524408716,-0.0024183277123661917,-0.0024183277123661917,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,77,78,23.099999999999998,,0.045299065600633744,-0.040353696861644965,-0.031109609873271087,,0.029868569456457366,,-0.031109609873271087,,0.029868569456457366,,0.0049453687389887785,-0.0012410404168137212,-0.0012410404168137212,0.0049453687389887785,-0.0012410404168137212,-0.0012410404168137212,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,78,79,23.4,,0.02601048883570589,-0.024646470131254546,-0.01786297685311555,,0.01824256170372267,,-0.01786297685311555,,0.01824256170372267,,0.001364018704451346,0.0003795848506071217,0.0003795848506071217,0.001364018704451346,0.0003795848506071217,0.0003795848506071217,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,79,80,23.7,,0.00588409189555848,-0.007094915153573878,-0.004040962013281341,,0.005251438716476368,,-0.004040962013281341,,0.005251438716476368,,-0.0012108232580153979,0.0012104767031950268,0.0012104767031950268,-0.0012108232580153979,0.0012104767031950268,0.0012104767031950268,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,80,81,24.0,,-0.014020941896770769,0.010005879177857514,0.00962902935592203,,-0.007406045057567372,,0.00962902935592203,,-0.007406045057567372,,-0.004015062718913255,0.0022229842983546586,0.0022229842983546586,-0.004015062718913255,0.0022229842983546586,0.0022229842983546586,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,81,82,24.3,,-0.03278938968997602,0.025546575679284794,0.022518458332693298,,-0.018908792239469136,,0.022518458332693298,,-0.018908792239469136,,-0.007242814010691229,0.003609666093224162,0.003609666093224162,-0.007242814010691229,0.003609666093224162,0.003609666093224162,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,82,83,24.599999999999998,,-0.049522189631055175,0.040455810717300346,0.034009884730839206,,-0.029944151002320847,,0.034009884730839206,,-0.029944151002320847,,-0.009066378913754829,0.004065733728518359,0.004065733728518359,-0.009066378913754829,0.004065733728518359,0.004065733728518359,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,83,84,24.9,,-0.06350761986050064,0.05250189972091855,0.04361452607562257,,-0.038860296834432116,,0.04361452607562257,,-0.038860296834432116,,-0.011005720139582092,0.004754229241190455,0.004754229241190455,-0.011005720139582092,0.004754229241190455,0.004754229241190455,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,84,85,25.2,,-0.07409201052586957,0.061299670067792335,0.05088346771889816,,-0.04537213676742529,,0.05088346771889816,,-0.04537213676742529,,-0.012792340458077235,0.0055113309514728676,0.0055113309514728676,-0.012792340458077233,0.0055113309514728676,0.0055113309514728676,1.734723475976807e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,85,86,25.5,,-0.08074417513028415,0.06769656686913762,0.05545191174554989,,-0.05010692369591547,,0.05545191174554989,,-0.05010692369591547,,-0.013047608261146523,0.0053449880496344235,0.0053449880496344235,-0.013047608261146522,0.0053449880496344235,0.0053449880496344235,1.734723475976807e-18,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,86,87,25.8,,-0.08315535354825739,0.07010678733238922,0.05710781389106676,,-0.05189089500240633,,0.05710781389106676,,-0.05189089500240633,,-0.013048566215868168,0.005216918888660431,0.005216918888660431,-0.013048566215868168,0.005216918888660431,0.005216918888660431,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,87,88,26.099999999999998,,-0.08116138406017774,0.06909245336198012,0.05573843436743049,,-0.051140116089855095,,0.05573843436743049,,-0.051140116089855095,,-0.012068930698197616,0.004598318277575397,0.004598318277575397,-0.012068930698197616,0.004598318277575397,0.004598318277575397,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,88,89,26.4,,-0.07487411778588417,0.0643980099378655,0.05142058810792815,,-0.04766543296594411,,0.05142058810792815,,-0.04766543296594411,,-0.010476107848018668,0.0037551551419840387,0.0037551551419840387,-0.010476107848018668,0.0037551551419840383,0.0037551551419840383,0.0,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_1L,sr_closed_loop_400,89,90,26.7,,-0.06485536206114571,0.056135139395555436,0.04454010221093308,,-0.04154950947202304,,0.04454010221093308,,-0.04154950947202304,,-0.008720222665590277,0.0029905927389100445,0.0029905927389100445,-0.008720222665590277,0.0029905927389100445,0.0029905927389100445,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,90,91,27.0,,-0.0517498556603953,0.04529202010805393,0.03553975781280716,,-0.0335237649491905,,0.03553975781280716,,-0.0335237649491905,,-0.006457835552341369,0.0020159928636166585,0.0020159928636166585,-0.006457835552341369,0.0020159928636166585,0.0020159928636166585,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,91,92,27.3,,-0.03636586114353383,0.032524937885742754,0.024974637729945976,,-0.024073962037183923,,0.024974637729945976,,-0.024073962037183923,,-0.0038409232577910762,0.0009006756927620527,0.0009006756927620527,-0.0038409232577910762,0.0009006756927620527,0.0009006756927620527,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,92,93,27.599999999999998,,-0.019660067081199065,0.01776356740592191,0.01350175790314504,,-0.013148048087820538,,0.01350175790314504,,-0.013148048087820538,,-0.001896499675277153,0.0003537098153245013,0.0003537098153245013,-0.001896499675277153,0.0003537098153245013,0.0003537098153245013,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,93,94,27.9,,-0.002541316983261154,0.0029288354511394746,0.0017452761743603524,,-0.0021678342234374417,,0.0017452761743603524,,-0.0021678342234374417,,0.0003875184678783206,-0.00042255804907708936,-0.00042255804907708936,0.00038751846787832056,-0.0004225580490770894,-0.0004225580490770894,-5.421010862427522e-20,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,94,95,28.2,,0.014101534243574883,-0.011505720557457745,-0.009684376997967262,,0.008516181672159373,,-0.009684376997967262,,0.008516181672159373,,0.0025958136861171377,-0.0011681953258078897,-0.0011681953258078897,0.0025958136861171377,-0.0011681953258078897,-0.0011681953258078897,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,95,96,28.5,,0.029461499907695286,-0.025021034058315253,-0.02023299501341127,,0.018519802441037368,,-0.02023299501341127,,0.018519802441037368,,0.004440465849380033,-0.0017131925723739005,-0.0017131925723739005,0.004440465849380033,-0.0017131925723739008,-0.0017131925723739008,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_1L,sr_closed_loop_400,96,97,28.799999999999997,,0.04283940418774932,-0.0363184646191079,-0.029420411520930178,,0.026881814242371595,,-0.029420411520930178,,0.026881814242371595,,0.006520939568641422,-0.0025385972785585825,-0.0025385972785585825,0.006520939568641422,-0.0025385972785585825,-0.0025385972785585825,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,97,98,29.099999999999998,,0.05366706040653224,-0.045305989788218606,-0.03685641834230536,,0.03353410487823626,,-0.03685641834230536,,0.03353410487823626,,0.008361070618313635,-0.003322313464069103,-0.003322313464069103,0.008361070618313635,-0.003322313464069103,-0.003322313464069103,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,98,99,29.4,,0.061438799432909,-0.052177803141097934,-0.04219374188180182,,0.03862041048057062,,-0.04219374188180182,,0.03862041048057062,,0.009260996291811069,-0.0035733314012312,-0.0035733314012312,0.009260996291811069,-0.0035733314012312,-0.0035733314012312,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,99,100,29.7,,0.06577101020188059,-0.05591895108442626,-0.04516893320472404,,0.041389493510938354,,-0.04516893320472404,,0.041389493510938354,,0.009852059117454327,-0.003779439693785684,-0.003779439693785684,0.009852059117454327,-0.003779439693785684,-0.003779439693785684,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,100,101,30.0,,0.06647018602323133,-0.05653733099384506,-0.04564909955576552,,0.041847199364711284,,-0.04564909955576552,,0.041847199364711284,,0.009932855029386276,-0.003801900191054239,-0.003801900191054239,0.009932855029386276,-0.0038019001910542384,-0.0038019001910542384,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_1L,sr_closed_loop_400,101,102,30.299999999999997,,0.06348869448090813,-0.05455253235509243,-0.04360152887208161,,0.04037811225227347,,-0.04360152887208161,,0.04037811225227347,,0.008936162125815703,-0.003223416619808142,-0.003223416619808142,0.008936162125815703,-0.003223416619808142,-0.003223416619808142,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,102,103,30.599999999999998,,0.05698814555794825,-0.049486303918788555,-0.039137208509752434,,0.03662824525865366,,-0.039137208509752434,,0.03662824525865366,,0.007501841639159693,-0.0025089632510987767,-0.0025089632510987767,0.007501841639159692,-0.0025089632510987767,-0.0025089632510987767,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,103,104,30.9,,0.047411903484131594,-0.04081395275958682,-0.032560623518024204,,0.03020923676390514,,-0.032560623518024204,,0.03020923676390514,,0.006597950724544777,-0.0023513867541190628,-0.0023513867541190628,0.006597950724544777,-0.0023513867541190628,-0.0023513867541190628,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,104,105,31.2,,0.03544298308250518,-0.03060087355809318,-0.024340841512330385,,0.022649828600137766,,-0.024340841512330385,,0.022649828600137766,,0.004842109524412001,-0.0016910129121926187,-0.0016910129121926187,0.004842109524412001,-0.0016910129121926187,-0.0016910129121926187,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,105,106,31.5,,0.0218213879596081,-0.01877285426607795,-0.014986067754722198,,0.013895091284071372,,-0.014986067754722198,,0.013895091284071372,,0.003048533693530149,-0.001090976470650826,-0.001090976470650826,0.003048533693530149,-0.001090976470650826,-0.001090976470650826,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,106,107,31.799999999999997,,0.007379622172796845,-0.005478857864168151,-0.005068033165007251,,0.0040552826478087705,,-0.005068033165007251,,0.0040552826478087705,,0.0019007643086286939,-0.0010127505171984809,-0.0010127505171984809,0.0019007643086286939,-0.0010127505171984809,-0.0010127505171984809,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,107,108,32.1,,-0.007109563385352977,0.007010191578196082,0.004882567451557528,,-0.005188728923010671,,0.004882567451557528,,-0.005188728923010671,,-9.937180715689515e-05,-0.00030616147145314226,-0.00030616147145314226,-9.937180715689515e-05,-0.00030616147145314226,-0.00030616147145314226,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,108,109,32.4,,-0.020929768671614286,0.01912467990996738,0.014373738828348425,,-0.014155501841178529,,0.014373738828348425,,-0.014155501841178529,,-0.001805088761646905,0.0002182369871698963,0.0002182369871698963,-0.001805088761646905,0.00021823698716989627,0.00021823698716989627,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,109,110,32.699999999999996,,-0.03337884083863303,0.03031086187128728,0.02292327011039616,,-0.02243517083928266,,0.02292327011039616,,-0.02243517083928266,,-0.003067978967345751,0.0004880992711134985,0.0004880992711134985,-0.003067978967345751,0.0004880992711134985,0.0004880992711134985,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,110,111,33.0,,-0.04395068546584511,0.038793516415252784,0.03018359562997605,,-0.028713771714197374,,0.03018359562997605,,-0.028713771714197374,,-0.005157169050592325,0.0014698239157786772,0.0014698239157786772,-0.005157169050592325,0.0014698239157786772,0.0014698239157786772,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,111,112,33.3,,-0.05217663360244242,0.04554738736358045,0.03583285205445566,,-0.03371277996396722,,0.03583285205445566,,-0.03371277996396722,,-0.00662924623886197,0.0021200720904884438,0.0021200720904884438,-0.006629246238861969,0.0021200720904884438,0.0021200720904884438,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,112,113,33.6,,-0.057632459042952125,0.05043653132734515,0.039579697574124606,,-0.037331574459177994,,0.039579697574124606,,-0.037331574459177994,,-0.007195927715606974,0.0022481231149466124,0.0022481231149466124,-0.007195927715606975,0.0022481231149466124,0.0022481231149466124,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,113,114,33.9,,-0.06011848840043737,0.05164915213970465,0.041287004389825965,,-0.03822911921406093,,0.041287004389825965,,-0.03822911921406093,,-0.008469336260732721,0.0030578851757650377,0.0030578851757650377,-0.008469336260732721,0.0030578851757650377,0.0030578851757650377,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,114,115,34.199999999999996,,-0.059505858977897376,0.05100973509365075,0.04086627468868529,,-0.037755842316601354,,0.04086627468868529,,-0.037755842316601354,,-0.008496123884246629,0.0031104323720839364,0.0031104323720839364,-0.008496123884246629,0.0031104323720839364,0.0031104323720839364,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,115,116,34.5,,-0.055807329458203526,0.047817163722402224,0.03832627063039313,,-0.035392798849387605,,0.03832627063039313,,-0.035392798849387605,,-0.007990165735801302,0.002933471781005524,0.002933471781005524,-0.007990165735801302,0.002933471781005524,0.002933471781005524,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,116,117,34.8,,-0.04932995880912663,0.04126013007394336,0.033877868191501764,,-0.030539483535333423,,0.033877868191501764,,-0.030539483535333423,,-0.00806982873518327,0.0033383846561683417,0.0033383846561683417,-0.00806982873518327,0.003338384656168342,0.003338384656168342,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_1L,sr_closed_loop_400,117,118,35.1,,-0.040442472965649096,0.03352571525792751,0.02777429378706775,,-0.024814706771279466,,0.02777429378706775,,-0.024814706771279466,,-0.006916757707721585,0.0029595870157882835,0.0029595870157882835,-0.006916757707721585,0.0029595870157882835,0.0029595870157882835,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,118,119,35.4,,-0.029700937856247882,0.024131263069374576,0.0203974315436037,,-0.01786122122914411,,0.0203974315436037,,-0.01786122122914411,,-0.005569674786873306,0.002536210314459591,0.002536210314459591,-0.005569674786873306,0.002536210314459591,0.002536210314459591,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,119,120,35.699999999999996,,-0.017801977565699442,0.012861701457216919,0.012225695380213003,,-0.00951983716932354,,0.012225695380213003,,-0.00951983716932354,,-0.004940276108482524,0.002705858210889464,0.002705858210889464,-0.004940276108482524,0.002705858210889464,0.002705858210889464,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,120,121,36.0,,-0.005350141017391903,0.0022671910761098424,0.0036742656302323207,,-0.0016781053384036031,,0.0036742656302323207,,-0.0016781053384036031,,-0.0030829499412820607,0.0019961602918287177,0.0019961602918287177,-0.0030829499412820607,0.0019961602918287177,0.0019961602918287177,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,121,122,36.3,,0.0070117468166725205,-0.008245642208929545,-0.004815390893930069,,0.006103171609652349,,-0.004815390893930069,,0.006103171609652349,,-0.0012338953922570242,0.0012877807157222797,0.0012877807157222797,-0.0012338953922570242,0.0012877807157222797,0.0012877807157222797,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,122,123,36.6,,0.018681476104965455,-0.018827439289205296,-0.012829700254880765,,0.013935493444997329,,-0.012829700254880765,,0.013935493444997329,,-0.0001459631842398411,0.0011057931901165639,0.0011057931901165639,-0.0001459631842398411,0.0011057931901165639,0.0011057931901165639,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,123,124,36.9,,0.029171027227657235,-0.02703351482000712,-0.020033509844456687,,0.020009379012335612,,-0.020033509844456687,,0.020009379012335612,,0.002137512407650116,-2.4130832121074114e-05,-2.4130832121074114e-05,0.002137512407650116,-2.4130832121074114e-05,-2.4130832121074114e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,124,125,37.199999999999996,,0.037976006921899945,-0.034251763097454264,-0.02608042228289189,,0.02535210512657681,,-0.02608042228289189,,0.02535210512657681,,0.0037242438244456805,-0.0007283171563150781,-0.0007283171563150781,0.0037242438244456805,-0.0007283171563150781,-0.0007283171563150781,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,125,126,37.5,,0.044652200379055595,-0.040061073370388924,-0.030665368376960805,,0.02965197851800782,,-0.030665368376960805,,0.02965197851800782,,0.004591127008666672,-0.001013389858952985,-0.001013389858952985,0.004591127008666672,-0.001013389858952985,-0.001013389858952985,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,126,127,37.8,,0.04889786474921644,-0.042762099764359,-0.03358112304998221,,0.03165119546035195,,-0.03358112304998221,,0.03165119546035195,,0.0061357649848574405,-0.0019299275896302592,-0.0019299275896302592,0.0061357649848574405,-0.0019299275896302592,-0.0019299275896302592,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,127,128,38.1,,0.050466757452965146,-0.04370801609957445,-0.034658576619928716,,0.032351333736536356,,-0.034658576619928716,,0.032351333736536356,,0.006758741353390697,-0.0023072428833923603,-0.0023072428833923603,0.006758741353390697,-0.0023072428833923603,-0.0023072428833923603,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,128,129,38.4,,0.04927977465649926,-0.042605954790905384,-0.03384340369671898,,0.03153562173730828,,-0.03384340369671898,,0.03153562173730828,,0.006673819865593879,-0.0023077819594107055,-0.0023077819594107055,0.00667381986559388,-0.0023077819594107055,-0.0023077819594107055,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,129,130,38.699999999999996,,0.045450043347944884,-0.038222231602324644,-0.03121329542960912,,0.028290924207242402,,-0.03121329542960912,,0.028290924207242402,,0.00722781174562024,-0.002922371222366719,-0.002922371222366719,0.00722781174562024,-0.002922371222366719,-0.002922371222366719,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,130,131,39.0,,0.03919467378082971,-0.032466066198661644,-0.02691735456933312,,0.024030387018998362,,-0.02691735456933312,,0.024030387018998362,,0.006728607582168068,-0.0028869675503347576,-0.0028869675503347576,0.006728607582168068,-0.0028869675503347576,-0.0028869675503347576,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,131,132,39.3,,0.030911098926596742,-0.024951322725590235,-0.021228522390251244,,0.01846820424941348,,-0.021228522390251244,,0.01846820424941348,,0.0059597762010065065,-0.0027603181408377628,-0.0027603181408377628,0.0059597762010065065,-0.0027603181408377628,-0.0027603181408377628,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,132,133,39.6,,0.0211254018089752,-0.015710123936908446,-0.014508091943603344,,0.011628152176191358,,-0.014508091943603344,,0.011628152176191358,,0.005415277872066755,-0.002879939767411986,-0.002879939767411986,0.005415277872066755,-0.002879939767411986,-0.002879939767411986,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,133,134,39.9,,0.010364303385837893,-0.006374069799439097,-0.007117794388613804,,0.004717891081394548,,-0.007117794388613804,,0.004717891081394548,,0.003990233586398796,-0.0023999033072192553,-0.0023999033072192553,0.003990233586398796,-0.0023999033072192553,-0.0023999033072192553,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,134,135,40.199999999999996,,-0.0007963544558876264,0.0031722022068874354,0.0005469048006844213,,-0.0023479668361289854,,0.0005469048006844213,,-0.0023479668361289854,,0.002375847750999809,-0.0018010620354445641,-0.0018010620354445641,0.002375847750999809,-0.0018010620354445641,-0.0018010620354445641,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,135,136,40.5,,-0.011815178273026484,0.012878858440080463,0.00811419798142283,,-0.009532536242126709,,0.00811419798142283,,-0.009532536242126709,,0.0010636801670539792,-0.0014183382607038785,-0.0014183382607038785,0.0010636801670539792,-0.0014183382607038785,-0.0014183382607038785,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,136,137,40.8,,-0.022196280591311672,0.021326263951017527,0.015243529213629177,,-0.015785046863281214,,0.015243529213629177,,-0.015785046863281214,,-0.0008700166402941453,-0.0005415176496520371,-0.0005415176496520371,-0.0008700166402941454,-0.0005415176496520371,-0.0005415176496520371,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,137,138,41.1,,-0.03148162469566123,0.02879638894159521,0.02162033696441314,,-0.021314204399813103,,0.02162033696441314,,-0.021314204399813103,,-0.002685235754066019,0.0003061325646000375,0.0003061325646000375,-0.002685235754066019,0.0003061325646000375,0.0003061325646000375,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,138,139,41.4,,-0.03922742106686621,0.03531521251057138,0.026939844112538837,,-0.026139237784286493,,0.026939844112538837,,-0.026139237784286493,,-0.00391220855629483,0.0008006063282523443,0.0008006063282523443,-0.00391220855629483,0.0008006063282523443,0.0008006063282523443,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,139,140,41.699999999999996,,-0.04503559879934008,0.03972614277785995,0.030928671275661474,,-0.02940407316003422,,0.030928671275661474,,-0.02940407316003422,,-0.005309456021480134,0.0015245981156272528,0.0015245981156272528,-0.005309456021480134,0.0015245981156272528,0.0015245981156272528,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,140,141,42.0,,-0.04858697817658421,0.04229606447454256,0.033367618425522765,,-0.03130625042419411,,0.033367618425522765,,-0.03130625042419411,,-0.006290913702041649,0.0020613680013286534,0.0020613680013286534,-0.006290913702041648,0.0020613680013286534,0.0020613680013286534,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,141,142,42.3,,-0.04966125927435304,0.04311242704739206,0.03410539227146607,,-0.031910496976682426,,0.03410539227146607,,-0.031910496976682426,,-0.006548832226960982,0.002194895294783644,0.002194895294783644,-0.006548832226960982,0.002194895294783644,0.002194895294783644,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,142,143,42.6,,-0.0482108096765935,0.04107682308526631,0.03310928075064673,,-0.03040380532121772,,0.03310928075064673,,-0.03040380532121772,,-0.0071339865913271835,0.0027054754294290086,0.0027054754294290086,-0.0071339865913271835,0.0027054754294290086,0.0027054754294290086,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,143,144,42.9,,-0.04434195174056693,0.03768126324852809,0.030452301860485885,,-0.027890516014047205,,0.030452301860485885,,-0.027890516014047205,,-0.006660688492038845,0.00256178584643868,0.00256178584643868,-0.006660688492038845,0.00256178584643868,0.00256178584643868,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,144,145,43.199999999999996,,-0.03813102491878702,0.032661975941809834,0.026186882523131925,,-0.02417539340566179,,0.026186882523131925,,-0.02417539340566179,,-0.005469048976977184,0.002011489117470136,0.002011489117470136,-0.005469048976977184,0.002011489117470136,0.002011489117470136,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,145,146,43.5,,-0.029996939298863524,0.02511182571351458,0.020600713648424186,,-0.018587003641182313,,0.020600713648424186,,-0.018587003641182313,,-0.004885113585348943,0.002013710007241872,0.002013710007241872,-0.004885113585348943,0.002013710007241872,0.002013710007241872,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,146,147,43.8,,-0.020344995706676777,0.016780736566400327,0.013972139842532094,,-0.012420586827087807,,0.013972139842532094,,-0.012420586827087807,,-0.0035642591402764504,0.0015515530154442871,0.0015515530154442871,-0.0035642591402764504,0.0015515530154442871,0.0015515530154442871,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,147,148,44.1,,-0.009693409311518677,0.007767095699844652,0.006657050824886341,,-0.00574896615249799,,0.006657050824886341,,-0.00574896615249799,,-0.0019263136116740255,0.0009080846723883507,0.0009080846723883507,-0.0019263136116740257,0.0009080846723883507,0.0009080846723883507,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,148,149,44.4,,0.0013154202040376118,-0.002693660391915501,-0.0009033786640944807,,0.0019937648534131508,,-0.0009033786640944807,,0.0019937648534131508,,-0.0013782401878778892,0.0010903861893186702,0.0010903861893186702,-0.0013782401878778892,0.0010903861893186702,0.0010903861893186702,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,149,150,44.699999999999996,,0.012114156741645442,-0.012071764862678946,-0.008319524590171108,,0.00893515031594678,,-0.008319524590171108,,0.00893515031594678,,4.239187896649607e-05,0.000615625725775672,0.000615625725775672,4.239187896649607e-05,0.000615625725775672,0.000615625725775672,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,150,151,45.0,,0.022152263135405467,-0.020532205925301937,-0.01521329976269682,,0.015197309452880876,,-0.01521329976269682,,0.015197309452880876,,0.0016200572101035295,-1.599030981594418e-05,-1.599030981594418e-05,0.0016200572101035295,-1.599030981594418e-05,-1.599030981594418e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,151,152,45.3,,0.03092896108261665,-0.028746670774783302,-0.021240789413817997,,0.021277404536748246,,-0.021240789413817997,,0.021277404536748246,,0.002182290307833349,3.661512293024957e-05,3.661512293024957e-05,0.002182290307833349,3.661512293024957e-05,3.661512293024957e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,152,153,45.6,,0.03806382918899783,-0.03427402821403932,-0.026140735148761758,,0.02536858508338119,,-0.026140735148761758,,0.02536858508338119,,0.0037898009749585126,-0.0007721500653805682,-0.0007721500653805682,0.0037898009749585126,-0.0007721500653805682,-0.0007721500653805682,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,153,154,45.9,,0.04323130839661471,-0.03835531158234507,-0.02968955585942454,,0.028389425929157303,,-0.02968955585942454,,0.028389425929157303,,0.004875996814269638,-0.0013001299302672388,-0.0013001299302672388,0.004875996814269638,-0.0013001299302672388,-0.0013001299302672388,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,154,155,46.199999999999996,,0.04612837998727239,-0.041317184200486905,-0.03167915025315607,,0.03058171325092271,,-0.03167915025315607,,0.03058171325092271,,0.004811195786785488,-0.001097437002233359,-0.001097437002233359,0.004811195786785488,-0.001097437002233359,-0.001097437002233359,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,155,156,46.5,,0.04663979052569956,-0.0411045333728833,-0.032030366820751804,,0.03042431562670929,,-0.032030366820751804,,0.03042431562670929,,0.005535257152816261,-0.0016060511940425154,-0.0016060511940425154,0.005535257152816261,-0.0016060511940425154,-0.0016060511940425154,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,156,157,46.8,,0.04469813163739251,-0.03943325641627823,-0.03069691215184674,,0.029187287653027364,,-0.03069691215184674,,0.029187287653027364,,0.005264875221114282,-0.0015096244988193758,-0.0015096244988193758,0.005264875221114282,-0.0015096244988193758,-0.0015096244988193758,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,157,158,47.1,,0.04036166797413046,-0.035961644439030556,-0.027718800109027674,,0.026617706882675497,,-0.027718800109027674,,0.026617706882675497,,0.004400023535099905,-0.0011010932263521775,-0.0011010932263521775,0.004400023535099905,-0.0011010932263521775,-0.0011010932263521775,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,158,159,47.4,,0.033931079162248565,-0.029710180645367443,-0.023302525589001616,,0.021990565008518505,,-0.023302525589001616,,0.021990565008518505,,0.004220898516881122,-0.0013119605804831104,-0.0013119605804831104,0.004220898516881122,-0.0013119605804831104,-0.0013119605804831104,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,159,160,47.699999999999996,,0.02572469433938734,-0.022243600648896064,-0.017666704476047495,,0.016464031367959518,,-0.017666704476047495,,0.016464031367959518,,0.0034810936904912763,-0.0012026731080879774,-0.0012026731080879774,0.0034810936904912763,-0.0012026731080879774,-0.0012026731080879774,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,160,161,48.0,,0.016224153783940782,-0.013911319197090335,-0.011142108298483123,,0.010296732046480055,,-0.011142108298483123,,0.010296732046480055,,0.0023128345868504464,-0.0008453762520030678,-0.0008453762520030678,0.0023128345868504464,-0.0008453762520030678,-0.0008453762520030678,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,161,162,48.3,,0.006012741947844732,-0.003923948671922784,-0.004129313790160934,,0.0029043865262886773,,-0.004129313790160934,,0.0029043865262886773,,0.002088793275921948,-0.0012249272638722567,-0.0012249272638722567,0.002088793275921948,-0.0012249272638722567,-0.0012249272638722567,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,162,163,48.6,,-0.004391963933752479,0.005425182560132174,0.0030162274374729075,,-0.0040155538330686556,,0.0030162274374729075,,-0.0040155538330686556,,0.0010332186263796953,-0.000999326395595748,-0.000999326395595748,0.0010332186263796953,-0.000999326395595748,-0.000999326395595748,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,163,164,48.9,,-0.014431346195799638,0.0141924421115979,0.009910878825967674,,-0.010504810610547177,,0.009910878825967674,,-0.010504810610547177,,-0.00023890408420173745,-0.0005939317845795027,-0.0005939317845795027,-0.00023890408420173742,-0.0005939317845795027,-0.0005939317845795027,2.710505431213761e-20,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,164,165,49.199999999999996,,-0.023629931256623923,0.022701379932840982,0.016228103890855976,,-0.01680286556164233,,0.016228103890855976,,-0.01680286556164233,,-0.0009285513237829411,-0.0005747616707863536,-0.0005747616707863536,-0.0009285513237829411,-0.0005747616707863536,-0.0005747616707863536,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,165,166,49.5,,-0.03163026335111262,0.029149455708950885,0.02172241612480791,,-0.021575533598465858,,0.02172241612480791,,-0.021575533598465858,,-0.0024808076421617316,0.00014688252634205076,0.00014688252634205076,-0.0024808076421617316,0.00014688252634205076,0.00014688252634205076,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,166,167,49.8,,-0.03806553034671401,0.03461951117249914,0.026141903436720498,,-0.025624300979155475,,0.026141903436720498,,-0.025624300979155475,,-0.0034460191742148732,0.000517602457565023,0.000517602457565023,-0.0034460191742148732,0.000517602457565023,0.000517602457565023,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,167,168,50.1,,-0.042616977816358544,0.03874104749824715,0.02926765787032513,,-0.028674935830157785,,0.02926765787032513,,-0.028674935830157785,,-0.003875930318111391,0.0005927220401673455,0.0005927220401673455,-0.0038759303181113915,0.0005927220401673455,0.0005927220401673455,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,168,169,50.4,,-0.04508450708368031,0.04033346335714838,0.030962259554475204,,-0.029853593236645933,,0.030962259554475204,,-0.029853593236645933,,-0.004751043726531928,0.001108666317829271,0.001108666317829271,-0.004751043726531928,0.001108666317829271,0.001108666317829271,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,169,170,50.699999999999996,,-0.045272485011318406,0.040451131625503255,0.0310913553739158,,-0.029940687682000682,,0.0310913553739158,,-0.029940687682000682,,-0.004821353385815151,0.0011506676919151165,0.0011506676919151165,-0.004821353385815151,0.0011506676919151165,0.0011506676919151165,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,170,171,51.0,,-0.04314561257666205,0.03880839487568624,0.029630703353503093,,-0.028724784294541266,,0.029630703353503093,,-0.028724784294541266,,-0.0043372177009758095,0.0009059190589618266,0.0009059190589618266,-0.0043372177009758095,0.0009059190589618267,0.0009059190589618267,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,171,172,51.3,,-0.0388072351109693,0.034436489585889976,0.026651276986730445,,-0.025488834010902,,0.026651276986730445,,-0.025488834010902,,-0.004370745525079323,0.0011624429758284455,0.0011624429758284455,-0.004370745525079323,0.0011624429758284455,0.0011624429758284455,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,172,173,51.6,,-0.03247403757833881,0.02879262238535726,0.022301886952342163,,-0.021311416510341897,,0.022301886952342163,,-0.021311416510341897,,-0.0036814151929815513,0.0009904704420002665,0.0009904704420002665,-0.0036814151929815513,0.0009904704420002665,0.0009904704420002665,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,173,174,51.9,,-0.02451389533489491,0.021683089764030418,0.016835175521415426,,-0.016049158392303538,,0.016835175521415426,,-0.016049158392303538,,-0.0028308055708644933,0.0007860171291118878,0.0007860171291118878,-0.0028308055708644933,0.0007860171291118878,0.0007860171291118878,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,174,175,52.199999999999996,,-0.01538293129328886,0.012687142417449452,0.010564389902886976,,-0.009390633918840121,,0.010564389902886976,,-0.009390633918840121,,-0.0026957888758394073,0.0011737559840468547,0.0011737559840468547,-0.0026957888758394073,0.0011737559840468547,0.0011737559840468547,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,175,176,52.5,,-0.005610630792682248,0.0036972734777385276,0.0038531597239141405,,-0.0027366084958207037,,0.0038531597239141405,,-0.0027366084958207037,,-0.0019133573149437205,0.0011165512280934368,0.0011165512280934368,-0.0019133573149437203,0.0011165512280934368,0.0011165512280934368,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,176,177,52.8,,0.004282026616344227,-0.005292727366546532,-0.002940726828139437,,0.003917514558921222,,-0.002940726828139437,,0.003917514558921222,,-0.0010107007502023055,0.0009767877307817851,0.0009767877307817851,-0.0010107007502023055,0.0009767877307817851,0.0009767877307817851,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,177,178,53.1,,0.013792348828658834,-0.014163726344985191,-0.009472040661466556,,0.010483556080323891,,-0.009472040661466556,,0.010483556080323891,,-0.00037137751632635753,0.0010115154188573353,0.0010115154188573353,-0.00037137751632635753,0.0010115154188573353,0.0010115154188573353,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,178,179,53.4,,0.02251312121595054,-0.021459681907170968,-0.015461122845944206,,0.015883798744769806,,-0.015461122845944206,,0.015883798744769806,,0.0010534393087795711,0.00042267589882559985,0.00042267589882559985,0.0010534393087795711,0.00042267589882559985,0.00042267589882559985,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,179,180,53.699999999999996,,0.03007221552780457,-0.02803520660539621,-0.020652410390598362,,0.02075080056705552,,-0.020652410390598362,,0.02075080056705552,,0.0020370089224083614,9.83901764571582e-05,9.83901764571582e-05,0.0020370089224083614,9.83901764571582e-05,9.83901764571582e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,180,181,54.0,,0.03609920467152233,-0.03340556474264015,-0.02479150859241373,,0.024725775042833523,,-0.02479150859241373,,0.024725775042833523,,0.002693639928882177,-6.573354958020611e-05,-6.573354958020611e-05,0.002693639928882177,-6.573354958020611e-05,-6.573354958020611e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,181,182,54.3,,0.040350610448975276,-0.03668522505278629,-0.027711206237295876,,0.027153279073084926,,-0.027711206237295876,,0.027153279073084926,,0.0036653853961889846,-0.0005579271642109501,-0.0005579271642109501,0.0036653853961889846,-0.0005579271642109501,-0.0005579271642109501,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,182,183,54.6,,0.04260294326520004,-0.03840031122681103,-0.029258019494665537,,0.028422733286618398,,-0.029258019494665537,,0.028422733286618398,,0.004202632038389012,-0.0008352862080471396,-0.0008352862080471396,0.004202632038389012,-0.0008352862080471396,-0.0008352862080471396,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,183,184,54.9,,0.0426839609014332,-0.03870872571405968,-0.029313659208700455,,0.028651012236260792,,-0.029313659208700455,,0.028651012236260792,,0.00397523518737352,-0.0006626469724396629,-0.0006626469724396629,0.00397523518737352,-0.0006626469724396629,-0.0006626469724396629,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,184,185,55.199999999999996,,0.04054773209933785,-0.03648211641800485,-0.02784658160451469,,0.02700294428750195,,-0.02784658160451469,,0.02700294428750195,,0.0040656156813330055,-0.0008436373170127402,-0.0008436373170127402,0.0040656156813330055,-0.0008436373170127403,-0.0008436373170127403,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,185,186,55.5,,0.03628994698044921,-0.032346400115831606,-0.024922502879787273,,0.023941813852608036,,-0.024922502879787273,,0.023941813852608036,,0.003943546864617606,-0.000980689027179238,-0.000980689027179238,0.003943546864617606,-0.000980689027179238,-0.000980689027179238,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,186,187,55.8,,0.03015408374289582,-0.026979021801493763,-0.020708634248612648,,0.01996904495040471,,-0.020708634248612648,,0.01996904495040471,,0.003175061941402057,-0.0007395892982079363,-0.0007395892982079363,0.003175061941402057,-0.0007395892982079363,-0.0007395892982079363,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,187,188,56.1,,0.022484839468919018,-0.01950761625690098,-0.015441700058630181,,0.01443893958704363,,-0.015441700058630181,,0.01443893958704363,,0.002977223212018036,-0.0010027604715865512,-0.0010027604715865512,0.002977223212018036,-0.0010027604715865512,-0.0010027604715865512,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,188,189,56.4,,0.013746417570321924,-0.011146009742620522,-0.00944049688658062,,0.008249934753220542,,-0.00944049688658062,,0.008249934753220542,,0.0026004078277014012,-0.0011905621333600774,-0.0011905621333600774,0.0026004078277014012,-0.0011905621333600774,-0.0011905621333600774,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,189,190,56.699999999999996,,0.004390900710179865,-0.0027111116956615483,-0.0030154972574986958,,0.00200668177351174,,-0.0030154972574986958,,0.00200668177351174,,0.0016797890145183168,-0.0010088154839869557,-0.0010088154839869557,0.0016797890145183168,-0.0010088154839869557,-0.0010088154839869557,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,190,191,57.0,,-0.005055415443063399,0.006323887384855586,0.0034718597413808897,,-0.004680747596359724,,0.0034718597413808897,,-0.004680747596359724,,0.001268471941792187,-0.001208887854978834,-0.001208887854978834,0.001268471941792187,-0.001208887854978834,-0.001208887854978834,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,191,192,57.3,,-0.014150867817344157,0.01435611550341446,0.009718257348770677,,-0.010625956638094741,,0.009718257348770677,,-0.010625956638094741,,0.00020524768607030341,-0.0009076992893240644,-0.0009076992893240644,0.00020524768607030341,-0.0009076992893240644,-0.0009076992893240644,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,192,193,57.599999999999994,,-0.022543104120698244,0.021276091394071227,0.015481713921216972,,-0.01574791067456729,,0.015481713921216972,,-0.01574791067456729,,-0.0012670127266270169,-0.0002661967533503194,-0.0002661967533503194,-0.0012670127266270169,-0.0002661967533503194,-0.0002661967533503194,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,193,194,57.9,,-0.029790673925776473,0.028141013789127384,0.020459058733427155,,-0.020829115801149243,,0.020459058733427155,,-0.020829115801149243,,-0.0016496601366490886,-0.0003700570677220884,-0.0003700570677220884,-0.0016496601366490884,-0.0003700570677220884,-0.0003700570677220884,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,194,195,58.199999999999996,,-0.035593110250958224,0.03298021802394853,0.02444394292468905,,-0.024410946439796855,,0.02444394292468905,,-0.024410946439796855,,-0.0026128922270096944,3.2996484892196254e-05,3.2996484892196254e-05,-0.0026128922270096944,3.2996484892196254e-05,3.2996484892196254e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,195,196,58.5,,-0.039679929019370584,0.03592773041172753,0.027250608709563254,,-0.026592604759231357,,0.027250608709563254,,-0.026592604759231357,,-0.003752198607643052,0.0006580039503318973,0.0006580039503318973,-0.0037521986076430518,0.0006580039503318973,0.0006580039503318973,4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,196,197,58.8,,-0.04181807162389664,0.03833136785096603,0.0287190006377026,,-0.028371703513136948,,0.0287190006377026,,-0.028371703513136948,,-0.003486703772930609,0.0003472971245656528,0.0003472971245656528,-0.003486703772930609,0.0003472971245656528,0.0003472971245656528,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,197,198,59.099999999999994,,-0.04184188783192319,0.0380395479918485,0.02873535666912494,,-0.028155707398562616,,0.02873535666912494,,-0.028155707398562616,,-0.003802339840074692,0.0005796492705623241,0.0005796492705623241,-0.003802339840074692,0.0005796492705623241,0.0005796492705623241,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,198,199,59.4,,-0.0397539293800245,0.03560481674837248,0.027301429235768376,,-0.026353593963877764,,0.027301429235768376,,-0.026353593963877764,,-0.004149112631652019,0.0009478352718906118,0.0009478352718906118,-0.004149112631652019,0.0009478352718906118,0.0009478352718906118,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,199,200,59.699999999999996,,-0.03558247801523209,0.03238607851384774,0.024436641124946937,,-0.02397118258655896,,0.024436641124946937,,-0.02397118258655896,,-0.0031963995013843463,0.000465458538387975,0.000465458538387975,-0.0031963995013843467,0.00046545853838797496,0.00046545853838797496,-4.336808689942018e-19,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,200,201,60.0,,-0.02958164417140063,0.026472735431880244,0.02031550535049717,,-0.019594307298796094,,0.02031550535049717,,-0.019594307298796094,,-0.0031089087395203864,0.0007211980517010767,0.0007211980517010767,-0.0031089087395203864,0.0007211980517010767,0.0007211980517010767,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,201,202,60.3,,-0.02212972279566606,0.018968814705646094,0.015197819947243537,,-0.014040135194670855,,0.015197819947243537,,-0.014040135194670855,,-0.003160908090019964,0.001157684752572682,0.001157684752572682,-0.003160908090019964,0.001157684752572682,0.001157684752572682,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,202,203,60.599999999999994,,-0.01361223875545808,0.011544473276398454,0.009348348173835126,,-0.008544865246833474,,0.009348348173835126,,-0.008544865246833474,,-0.0020677654790596262,0.000803482927001652,0.000803482927001652,-0.0020677654790596262,0.000803482927001652,0.000803482927001652,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,203,204,60.9,,-0.004546556641210504,0.0026533964033077844,0.003122395605723261,,-0.0019639626832564272,,0.003122395605723261,,-0.0019639626832564272,,-0.0018931602379027197,0.0011584329224668339,0.0011584329224668339,-0.0018931602379027197,0.0011584329224668339,0.0011584329224668339,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,204,205,61.199999999999996,,0.0046086488978511414,-0.005980745380528199,-0.003165038116217213,,0.004426764403077076,,-0.003165038116217213,,0.004426764403077076,,-0.0013720964826770578,0.0012617262868598626,0.0012617262868598626,-0.0013720964826770578,0.0012617262868598626,0.0012617262868598626,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,205,206,61.5,,0.013482525479599215,-0.013119130367154844,-0.009259266216981322,,0.00971037815749975,,-0.009259266216981322,,0.00971037815749975,,0.0003633951124443705,0.0004511119405184276,0.0004511119405184276,0.0003633951124443705,0.0004511119405184276,0.0004511119405184276,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,206,207,61.8,,0.021642341109979958,-0.020915093453460768,-0.01486310544706498,,0.015480711064585333,,-0.01486310544706498,,0.015480711064585333,,0.00072724765651919,0.0006176056175203528,0.0006176056175203528,0.00072724765651919,0.0006176056175203528,0.0006176056175203528,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,207,208,62.099999999999994,,0.028682582318398524,-0.027393669697930226,-0.01969806516430392,,0.02027595461315876,,-0.01969806516430392,,0.02027595461315876,,0.001288912620468298,0.0005778894488548403,0.0005778894488548403,0.001288912620468298,0.0005778894488548403,0.0005778894488548403,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,208,209,62.4,,0.03434020759299029,-0.031472776875468386,-0.023583498843078206,,0.023295184709235407,,-0.023583498843078206,,0.023295184709235407,,0.002867430717521907,-0.0002883141338427993,-0.0002883141338427993,0.002867430717521907,-0.0002883141338427993,-0.0002883141338427993,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,209,210,62.699999999999996,,0.038310709702558725,-0.03546244993527483,-0.02631028293877367,,0.02624821841278809,,-0.02631028293877367,,0.02624821841278809,,0.002848259767283895,-6.206452598558204e-05,-6.206452598558204e-05,0.002848259767283895,-6.206452598558204e-05,-6.206452598558204e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,210,211,63.0,,0.04036124268470141,-0.03733324546907064,-0.02771850803703799,,0.02763292392147026,,-0.02771850803703799,,0.02763292392147026,,0.0030279972156307747,-8.558411556772866e-05,-8.558411556772866e-05,0.0030279972156307747,-8.558411556772866e-05,-8.558411556772866e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,211,212,63.3,,0.04039398997073792,-0.036587035475564265,-0.027740997580243704,,0.02708060215782704,,-0.027740997580243704,,0.02708060215782704,,0.0038069544951736534,-0.0006603954224166653,-0.0006603954224166653,0.003806954495173653,-0.0006603954224166653,-0.0006603954224166653,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,212,213,63.599999999999994,,0.038326232766718885,-0.03512405320973726,-0.026320943566397158,,0.025997747529408786,,-0.026320943566397158,,0.025997747529408786,,0.003202179556981627,-0.000323196036988372,-0.000323196036988372,0.0032021795569816265,-0.000323196036988372,-0.000323196036988372,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,213,214,63.9,,0.03425982789090071,-0.031313499989848816,-0.023528297237027818,,0.023177292840808897,,-0.023528297237027818,,0.023177292840808897,,0.0029463279010518914,-0.00035100439621892077,-0.00035100439621892077,0.0029463279010518914,-0.00035100439621892077,-0.00035100439621892077,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,214,215,64.2,,0.028442506435702362,-0.025211117468459276,-0.019533190526126957,,0.018660496354605503,,-0.019533190526126957,,0.018660496354605503,,0.003231388967243086,-0.0008726941715214535,-0.0008726941715214535,0.003231388967243086,-0.0008726941715214535,-0.0008726941715214535,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,215,216,64.5,,0.021179626211178495,-0.018801653587901323,-0.014545331122288131,,0.013916407659300375,,-0.014545331122288131,,0.013916407659300375,,0.002377972623277172,-0.0006289234629877558,-0.0006289234629877558,0.002377972623277172,-0.0006289234629877558,-0.0006289234629877558,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,216,217,64.8,,0.012891585817940546,-0.010886537015900437,-0.008853432187314565,,0.008057880994511227,,-0.008853432187314565,,0.008057880994511227,,0.0020050488020401085,-0.0007955511928033378,-0.0007955511928033378,0.0020050488020401085,-0.0007955511928033379,-0.0007955511928033379,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,217,218,65.1,,0.0040742727302555196,-0.0019516923509369571,-0.002798049661178508,,0.001444582853002598,,-0.002798049661178508,,0.001444582853002598,,0.0021225803793185625,-0.00135346680817591,-0.00135346680817591,0.0021225803793185625,-0.00135346680817591,-0.00135346680817591,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,218,219,65.39999999999999,,-0.004847448912260168,0.005596669772379557,0.0033290365384251184,,-0.0041424834109823365,,0.0033290365384251184,,-0.0041424834109823365,,0.000749220860119389,-0.0008134468725572181,-0.0008134468725572181,0.000749220860119389,-0.000813446872557218,-0.000813446872557218,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,219,220,65.7,,-0.013515485410350237,0.013325368097634464,0.009281901796181878,,-0.009863029003802449,,0.009281901796181878,,-0.009863029003802449,,-0.00019011731271577348,-0.0005811272076205708,-0.0005811272076205708,-0.00019011731271577348,-0.0005811272076205708,-0.0005811272076205708,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,220,221,66.0,,-0.02147817939036841,0.021105817140612337,0.014750365659046723,,-0.015621878891568066,,0.014750365659046723,,-0.015621878891568066,,-0.00037236224975607454,-0.0008715132325213433,-0.0008715132325213433,-0.00037236224975607454,-0.0008715132325213433,-0.0008715132325213433,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,221,222,66.3,,-0.028399764848083292,0.026692787936796913,0.019503837291163655,,-0.019757183417673272,,0.019503837291163655,,-0.019757183417673272,,-0.0017069769112863786,-0.0002533461265096168,-0.0002533461265096168,-0.0017069769112863788,-0.0002533461265096168,-0.0002533461265096168,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,222,223,66.6,,-0.033971056368578834,0.03153276012849808,0.02332998035603197,,-0.02333958247446332,,0.02332998035603197,,-0.02333958247446332,,-0.0024382962400807534,-9.602118431348977e-06,-9.602118431348977e-06,-0.0024382962400807534,-9.602118431348977e-06,-9.602118431348977e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,223,224,66.89999999999999,,-0.03787755241907592,0.03550693510496054,0.026012807617279903,,-0.026281144971787015,,0.026012807617279903,,-0.026281144971787015,,-0.002370617314115385,-0.0002683373545071116,-0.0002683373545071116,-0.002370617314115385,-0.0002683373545071116,-0.0002683373545071116,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,224,225,67.2,,-0.03993510267679786,0.036782539647352834,0.027425851903374016,,-0.02722530835300204,,0.027425851903374016,,-0.02722530835300204,,-0.003152563029445027,0.00020054355037197463,0.00020054355037197463,-0.0031525630294450264,0.00020054355037197463,0.00020054355037197463,4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,225,226,67.5,,-0.04000803981387916,0.03668075625724974,0.027475942249604927,,-0.02714997140761061,,0.027475942249604927,,-0.02714997140761061,,-0.0033272835566294234,0.00032597084199431636,0.00032597084199431636,-0.003327283556629424,0.00032597084199431636,0.00032597084199431636,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,226,227,67.8,,-0.038023001403809466,0.03534335090129019,0.026112696237752038,,-0.026160064958571396,,0.026112696237752038,,-0.026160064958571396,,-0.002679650502519275,-4.7368720819358084e-05,-4.7368720819358084e-05,-0.002679650502519275,-4.7368720819358084e-05,-4.7368720819358084e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,227,228,68.1,,-0.03409524088186011,0.030945492799768628,0.023415265377019875,,-0.02290490519922374,,0.023415265377019875,,-0.02290490519922374,,-0.0031497480820914837,0.0005103601777961334,0.0005103601777961334,-0.0031497480820914833,0.0005103601777961334,0.0005103601777961334,4.336808689942018e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,228,229,68.39999999999999,,-0.028455052473859203,0.025503902437201093,0.019541806649822652,,-0.018877206813740256,,0.019541806649822652,,-0.018877206813740256,,-0.00295115003665811,0.0006645998360823961,0.0006645998360823961,-0.00295115003665811,0.0006645998360823961,0.0006645998360823961,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,229,230,68.7,,-0.021378661663971774,0.019258321305897653,0.014682020813460525,,-0.014254419105940837,,0.014682020813460525,,-0.014254419105940837,,-0.0021203403580741208,0.00042760170751968835,0.00042760170751968835,-0.0021203403580741208,0.0004276017075196884,0.0004276017075196884,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,230,231,69.0,,-0.013320702851847416,0.010868020617924093,0.00914813282490633,,-0.00804417572431167,,0.00914813282490633,,-0.00804417572431167,,-0.002452682233923323,0.0011039571005946602,0.0011039571005946602,-0.002452682233923323,0.0011039571005946602,0.0011039571005946602,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,231,232,69.3,,-0.004715609189256075,0.0028904211777430796,0.0032384942216228912,,-0.002139401155780879,,0.0032384942216228912,,-0.002139401155780879,,-0.0018251880115129956,0.0010990930658420122,0.0010990930658420122,-0.0018251880115129958,0.0010990930658420122,0.0010990930658420122,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,232,233,69.6,,0.004065341652245565,-0.0045502876845684775,-0.0027919161493951314,,0.0033679834643000266,,-0.0027919161493951314,,0.0033679834643000266,,-0.00048494603232291256,0.0005760673149048951,0.0005760673149048951,-0.00048494603232291256,0.0005760673149048951,0.0005760673149048951,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,233,234,69.89999999999999,,0.012576021061588814,-0.012912382856007924,-0.008636714770968588,,0.009557349987173405,,-0.008636714770968588,,0.009557349987173405,,-0.00033636179441911065,0.0009206352162048174,0.0009206352162048174,-0.00033636179441911065,0.0009206352162048174,0.0009206352162048174,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,234,235,70.2,,0.020444938722502463,-0.02002708932863769,-0.014040776760107976,,0.014823437631352295,,-0.014040776760107976,,0.014823437631352295,,0.00041784939386477205,0.000782660871244319,0.000782660871244319,0.00041784939386477205,0.000782660871244319,0.000782660871244319,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,235,236,70.5,,0.02731867911944973,-0.025562233362469374,-0.01876139029338539,,0.018920381576607918,,-0.01876139029338539,,0.018920381576607918,,0.0017564457569803557,0.00015899128322252598,0.00015899128322252598,0.0017564457569803555,0.00015899128322252598,0.00015899128322252598,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,236,237,70.8,,0.03285871186691043,-0.031135891654303464,-0.02256606606701189,,0.023045832595060652,,-0.02256606606701189,,0.023045832595060652,,0.0017228202126069667,0.00047976652804876396,0.00047976652804876396,0.0017228202126069667,0.00047976652804876396,0.00047976652804876396,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,237,238,71.1,,0.03679263908558095,-0.03445720752284389,-0.025267731971594477,,0.025504168792769052,,-0.025267731971594477,,0.025504168792769052,,0.0023354315627370573,0.00023643682117457585,0.00023643682117457585,0.0023354315627370573,0.00023643682117457585,0.00023643682117457585,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,238,239,71.39999999999999,,0.03892674144053107,-0.03582680322782807,-0.02673334921583182,,0.0265179015514266,,-0.02673334921583182,,0.0265179015514266,,0.0030999382127029976,-0.00021544766440522237,-0.00021544766440522237,0.0030999382127029976,-0.00021544766440522237,-0.00021544766440522237,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,239,240,71.7,,0.03908112150327458,-0.03657670467176506,-0.02683937134808733,,0.027072955613524654,,-0.02683937134808733,,0.027072955613524654,,0.0025044168315095164,0.00023358426543732339,0.00023358426543732339,0.0025044168315095164,0.00023358426543732336,0.00023358426543732336,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,240,241,72.0,,0.03724557232751437,-0.034443861220880105,-0.02557878864060858,,0.025494290269159208,,-0.02557878864060858,,0.025494290269159208,,0.0028017111066342623,-8.449837144937355e-05,-8.449837144937355e-05,0.0028017111066342623,-8.449837144937355e-05,-8.449837144937355e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,241,242,72.3,,0.033529180651800605,-0.030442713871357746,-0.023026517558749668,,0.022532763648079834,,-0.023026517558749668,,0.022532763648079834,,0.003086466780442859,-0.0004937539106698342,-0.0004937539106698342,0.003086466780442859,-0.0004937539106698342,-0.0004937539106698342,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,242,243,72.6,,0.028072079343003764,-0.025810392338136732,-0.019278795823111667,,0.01910406124358804,,-0.019278795823111667,,0.01910406124358804,,0.002261687004867032,-0.0001747345795236263,-0.0001747345795236263,0.002261687004867032,-0.0001747345795236263,-0.0001747345795236263,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,243,244,72.89999999999999,,0.021224494245942794,-0.018826883506231004,-0.014576144717199856,,0.013935082071476155,,-0.014576144717199856,,0.013935082071476155,,0.0023976107397117898,-0.0006410626457237015,-0.0006410626457237015,0.0023976107397117898,-0.0006410626457237015,-0.0006410626457237015,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,244,245,73.2,,0.013369823780902167,-0.010967509525613046,-0.009181867139714901,,0.008117814364152844,,-0.009181867139714901,,0.008117814364152844,,0.0024023142552891206,-0.0010640527755620566,-0.0010640527755620566,0.0024023142552891206,-0.0010640527755620566,-0.0010640527755620566,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,245,246,73.5,,0.0049208113387705105,-0.0037077934542899616,-0.0033794189566457127,,0.0027443950599955825,,-0.0033794189566457127,,0.0027443950599955825,,0.001213017884480549,-0.0006350238966501302,-0.0006350238966501302,0.001213017884480549,-0.0006350238966501302,-0.0006350238966501302,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,246,247,73.8,,-0.0037093744001345137,0.004628850706099456,0.0025474518940291177,,-0.0034261334046475625,,0.0025474518940291177,,-0.0034261334046475625,,0.0009194763059649424,-0.0008786815106184447,-0.0008786815106184447,0.0009194763059649424,-0.0008786815106184447,-0.0008786815106184447,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,247,248,74.1,,-0.01211309351807283,0.012532446986077438,0.008318794410196896,,-0.009276133102412485,,0.008318794410196896,,-0.009276133102412485,,0.00041935346800460807,-0.000957338692215589,-0.000957338692215589,0.000419353468004608,-0.000957338692215589,-0.000957338692215589,-5.421010862427522e-20,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,248,249,74.39999999999999,,-0.019910349910192318,0.019091381750284526,0.01367364226907443,,-0.014130855564068663,,0.01367364226907443,,-0.014130855564068663,,-0.0008189681599077916,-0.0004572132949942336,-0.0004572132949942336,-0.0008189681599077916,-0.00045721329499423367,-0.00045721329499423367,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,249,250,74.7,,-0.026758785586111382,0.025583131553360894,0.01837687751896561,,-0.018935849776914267,,0.01837687751896561,,-0.018935849776914267,,-0.001175654032750488,-0.0005589722579486568,-0.0005589722579486568,-0.001175654032750488,-0.0005589722579486568,-0.0005589722579486568,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,250,251,75.0,,-0.03231412875301772,0.030672278526773646,0.02219206788422075,,-0.02270268036918091,,0.02219206788422075,,-0.02270268036918091,,-0.0016418502262440758,-0.0005106124849601594,-0.0005106124849601594,-0.0016418502262440758,-0.0005106124849601594,-0.0005106124849601594,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,251,252,75.3,,-0.036332050633924716,0.03375485181024159,0.02495141800676605,,-0.024984306623587204,,0.02495141800676605,,-0.024984306623587204,,-0.0025771988236831245,-3.288861682115493e-05,-3.288861682115493e-05,-0.0025771988236831245,-3.288861682115493e-05,-3.288861682115493e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,252,253,75.6,,-0.03856418220226982,0.03613643442915558,0.026484357844625696,,-0.02674708107553427,,0.026484357844625696,,-0.02674708107553427,,-0.0024277477731142402,-0.00026272323090857294,-0.00026272323090857294,-0.0024277477731142402,-0.00026272323090857294,-0.00026272323090857294,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,253,254,75.89999999999999,,-0.03885933306602737,0.03633099602306207,0.02668705580546681,,-0.026891089603453766,,0.02668705580546681,,-0.026891089603453766,,-0.0025283370429652965,-0.00020403379798695706,-0.00020403379798695706,-0.0025283370429652965,-0.0002040337979869571,-0.0002040337979869571,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,254,255,76.2,,-0.03721899173819902,0.03428797160717143,0.025560534141253293,,-0.02537890555557121,,0.025560534141253293,,-0.02537890555557121,,-0.002931020131027591,0.00018162858568208234,0.00018162858568208234,-0.002931020131027591,0.00018162858568208234,0.00018162858568208234,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,255,256,76.5,,-0.03367548021539224,0.031167058686703136,0.02312699032320117,,-0.023068901477080878,,0.02312699032320117,,-0.023068901477080878,,-0.002508421528689103,5.8088846120293164e-05,5.8088846120293164e-05,-0.002508421528689103,5.808884612029316e-05,5.808884612029316e-05,0.0,-6.776263578034403e-21,-6.776263578034403e-21 +illusion,illusion_1L,sr_closed_loop_400,256,257,76.8,,-0.028438891475555474,0.02607167605363623,0.01953070791421464,,-0.0192974554406797,,0.01953070791421464,,-0.0192974554406797,,-0.002367215421919245,0.0002332524735349402,0.0002332524735349402,-0.002367215421919245,0.00023325247353494022,0.00023325247353494022,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,257,258,77.1,,-0.02180756605316412,0.019178647187829384,0.014976575415057449,,-0.014195446765994803,,0.014976575415057449,,-0.014195446765994803,,-0.0026289188653347353,0.0007811286490626464,0.0007811286490626464,-0.0026289188653347353,0.0007811286490626463,0.0007811286490626463,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,258,259,77.39999999999999,,-0.01414172409461968,0.012164915779051249,0.009711977800992458,,-0.009004097768893606,,0.009711977800992458,,-0.009004097768893606,,-0.001976808315568431,0.0007078800320988524,0.0007078800320988524,-0.001976808315568431,0.0007078800320988524,0.0007078800320988524,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,259,260,77.7,,-0.005844327333942729,0.0043998897136100276,0.004013653282245831,,-0.0032566634963406005,,0.004013653282245831,,-0.0032566634963406005,,-0.0014444376203327017,0.0007569897859052302,0.0007569897859052302,-0.0014444376203327017,0.0007569897859052302,0.0007569897859052302,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,260,261,78.0,,0.002661461246966497,-0.003773421143446678,-0.001827786511446253,,0.002792970663826004,,-0.001827786511446253,,0.002792970663826004,,-0.001111959896480181,0.0009651841523797508,0.0009651841523797508,-0.001111959896480181,0.0009651841523797508,0.0009651841523797508,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,261,262,78.3,,0.011008404226127243,-0.011089040110110226,-0.007560137416991137,,0.008207767577524679,,-0.007560137416991137,,0.008207767577524679,,-8.063588398298308e-05,0.0006476301605335419,0.0006476301605335419,-8.063588398298308e-05,0.0006476301605335419,0.0006476301605335419,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,262,263,78.6,,0.018794390448377028,-0.018302323893692397,-0.012907245368142028,,0.013546819125583491,,-0.012907245368142028,,0.013546819125583491,,0.0004920665546846309,0.0006395737574414629,0.0006395737574414629,0.0004920665546846309,0.0006395737574414629,0.0006395737574414629,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,263,264,78.89999999999999,,0.025651757202306044,-0.024804964038832627,-0.017616614129816587,,0.018359874035803473,,-0.017616614129816587,,0.018359874035803473,,0.0008467931634734173,0.0007432599059868858,0.0007432599059868858,0.0008467931634734173,0.0007432599059868858,0.0007432599059868858,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,264,265,79.2,,0.03128110072986629,-0.029457406417839227,-0.02148262502127685,,0.021803469273582135,,-0.02148262502127685,,0.021803469273582135,,0.0018236943120270646,0.000320844252305285,0.000320844252305285,0.0018236943120270648,0.000320844252305285,0.000320844252305285,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,265,266,79.5,,0.03541874158504959,-0.03322132644195212,-0.024324193408918362,,0.024589407500114773,,-0.024324193408918362,,0.024589407500114773,,0.0021974151430974656,0.00026521409119641126,0.00026521409119641126,0.0021974151430974656,0.00026521409119641126,0.00026521409119641126,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,266,267,79.8,,0.037789730151978035,-0.03572824187685973,-0.02595249475141003,,0.02644494946063766,,-0.02595249475141003,,0.02644494946063766,,0.0020614882751183033,0.0004924547092276278,0.0004924547092276278,0.0020614882751183033,0.0004924547092276278,0.0004924547092276278,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,267,268,80.1,,0.0382777497718077,-0.03564458902864778,-0.026287647359573115,,0.026383032186599157,,-0.026287647359573115,,0.026383032186599157,,0.002633160743159918,9.538482702604184e-05,9.538482702604184e-05,0.002633160743159918,9.538482702604184e-05,9.538482702604184e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,268,269,80.39999999999999,,0.036834955383770976,-0.03423987009286245,-0.025296793134568094,,0.02534330228913383,,-0.025296793134568094,,0.02534330228913383,,0.0025950852909085234,4.6509154565735344e-05,4.6509154565735344e-05,0.0025950852909085234,4.6509154565735344e-05,4.6509154565735344e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,269,270,80.7,,0.033499835681196466,-0.0313201393432174,-0.02300636459146143,,0.02318220708665645,,-0.02300636459146143,,0.02318220708665645,,0.002179696337979063,0.00017584249519501938,0.00017584249519501938,0.002179696337979063,0.00017584249519501938,0.00017584249519501938,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,270,271,81.0,,0.028490138851755453,-0.025891955367259526,-0.019565902588971635,,0.019164431697595907,,-0.019565902588971635,,0.019164431697595907,,0.0025981834844959265,-0.0004014708913757277,-0.0004014708913757277,0.0025981834844959265,-0.00040147089137572775,-0.00040147089137572775,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,271,272,81.3,,0.022074009880461102,-0.019732644521553728,-0.015159558516594854,,0.014605498610755656,,-0.015159558516594854,,0.014605498610755656,,0.002341365358907374,-0.0005540599058391979,-0.0005540599058391979,0.002341365358907374,-0.0005540599058391979,-0.0005540599058391979,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,272,273,81.6,,0.014580410140680074,-0.01284185099233775,-0.010013250058352127,,0.009505144463695622,,-0.010013250058352127,,0.009505144463695622,,0.0017385591483423234,-0.0005081055946565046,-0.0005081055946565046,0.0017385591483423234,-0.0005081055946565046,-0.0005081055946565046,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,273,274,81.89999999999999,,0.006452065928048693,-0.00464235003614569,-0.00443102415550513,,0.0034361251949532683,,-0.00443102415550513,,0.0034361251949532683,,0.0018097158919030036,-0.0009948989605518617,-0.0009948989605518617,0.0018097158919030039,-0.0009948989605518617,-0.0009948989605518617,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,274,275,82.2,,-0.0019510152557460538,0.0028086692105737015,0.0013398802526781216,,-0.002078890855622445,,0.0013398802526781216,,-0.002078890855622445,,0.0008576539548276476,-0.0007390106029443236,-0.0007390106029443236,0.0008576539548276476,-0.0007390106029443236,-0.0007390106029443236,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,275,276,82.5,,-0.010254791357858686,0.010295466516851958,0.0070425858512700185,,-0.007620388729179957,,0.0070425858512700185,,-0.007620388729179957,,4.0675158993272106e-05,-0.0005778028779099388,-0.0005778028779099388,4.0675158993272106e-05,-0.0005778028779099388,-0.0005778028779099388,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,276,277,82.8,,-0.0180120705436479,0.017964550546355717,0.0123699789431172,,-0.013296809647640101,,0.0123699789431172,,-0.013296809647640101,,-4.75199972921822e-05,-0.0009268307045229018,-0.0009268307045229018,-4.75199972921822e-05,-0.0009268307045229018,-0.0009268307045229018,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,277,278,83.1,,-0.024918345581917148,0.02389267069591677,0.017112935983605485,,-0.017684622467874753,,0.017112935983605485,,-0.017684622467874753,,-0.001025674886000378,-0.0005716864842692689,-0.0005716864842692689,-0.001025674886000378,-0.0005716864842692689,-0.0005716864842692689,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,278,279,83.39999999999999,,-0.030648270059446647,0.028818577074727743,0.021048021900626157,,-0.021330627375825695,,0.021048021900626157,,-0.021330627375825695,,-0.0018296929847189045,-0.0002826054751995377,-0.0002826054751995377,-0.0018296929847189045,-0.0002826054751995377,-0.0002826054751995377,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,279,280,83.7,,-0.03490052641575769,0.033272608687201825,0.02396830368948767,,-0.02462736504609564,,0.02396830368948767,,-0.02462736504609564,,-0.001627917728555868,-0.0006590613566079678,-0.0006590613566079678,-0.0016279177285558682,-0.0006590613566079678,-0.0006590613566079678,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,280,281,84.0,,-0.037452900924174026,0.03519901631604031,0.025721173735579826,,-0.026053232922852696,,0.025721173735579826,,-0.026053232922852696,,-0.0022538846081337147,-0.00033205918727286995,-0.00033205918727286995,-0.0022538846081337147,-0.00033205918727286995,-0.00033205918727286995,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,281,282,84.3,,-0.03814442153580195,0.03556379395640501,0.026196082790806992,,-0.026323230150733727,,0.026196082790806992,,-0.026323230150733727,,-0.002580627579396942,-0.00012714735992673531,-0.00012714735992673531,-0.002580627579396942,-0.00012714735992673531,-0.00012714735992673531,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,282,283,84.6,,-0.03691427186228795,0.03484450563953859,0.025351264560644272,,-0.025790834986910132,,0.025351264560644272,,-0.025790834986910132,,-0.0020697662227493613,-0.00043957042626585965,-0.00043957042626585965,-0.0020697662227493613,-0.00043957042626585965,-0.00043957042626585965,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,283,284,84.89999999999999,,-0.033812423411544876,0.03135997358578377,0.02322103750387961,,-0.02321169117196635,,0.02322103750387961,,-0.02321169117196635,,-0.0024524498257611077,9.346331913261119e-06,9.346331913261119e-06,-0.0024524498257611077,9.346331913261119e-06,9.346331913261119e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,284,285,85.2,,-0.029030043781928666,0.026536312497791013,0.019936687979876237,,-0.01964136509415755,,0.019936687979876237,,-0.01964136509415755,,-0.0024937312841376534,0.00029532288571868653,0.00029532288571868653,-0.0024937312841376534,0.00029532288571868653,0.00029532288571868653,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,285,286,85.5,,-0.022803806540703114,0.02090505180701981,0.015660754050893635,,-0.015473278545695992,,0.015660754050893635,,-0.015473278545695992,,-0.001898754733683304,0.00018747550519764358,0.00018747550519764358,-0.001898754733683304,0.00018747550519764358,0.00018747550519764358,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,286,287,85.8,,-0.015505839938282997,0.01335895541467557,0.010648798707905825,,-0.00988788930632536,,0.010648798707905825,,-0.00988788930632536,,-0.0021468845236074265,0.0007609094015804656,0.0007609094015804656,-0.0021468845236074265,0.0007609094015804656,0.0007609094015804656,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,287,288,86.1,,-0.007515289500662347,0.0057120247818684515,0.00516120412971664,,-0.004227865653032734,,0.00516120412971664,,-0.004227865653032734,,-0.0018032647187938957,0.0009333384766839065,0.0009333384766839065,-0.0018032647187938959,0.0009333384766839065,0.0009333384766839065,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,288,289,86.39999999999999,,0.00079975677131999,-0.0014722216883633471,-0.0005492413766018981,,0.001089693365763938,,-0.0005492413766018981,,0.001089693365763938,,-0.0006724649170433572,0.00054045198916204,0.00054045198916204,-0.0006724649170433572,0.00054045198916204,0.00054045198916204,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,289,290,86.7,,0.009050796984230985,-0.009519668590545175,-0.006215730048472904,,0.007046166884635796,,-0.006215730048472904,,0.007046166884635796,,-0.00046887160631419074,0.0008304368361628919,0.0008304368361628919,-0.00046887160631419074,0.000830436836162892,0.000830436836162892,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,290,291,87.0,,0.016826576260183676,-0.016752117498514563,-0.011555828271871365,,0.012399403870298104,,-0.011555828271871365,,0.012399403870298104,,7.445876166911267e-05,0.0008435755984267396,0.0008435755984267396,7.445876166911267e-05,0.0008435755984267395,0.0008435755984267395,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,291,292,87.3,,0.023802598764816378,-0.022658905721146726,-0.016346685118667926,,0.016771427452106843,,-0.016346685118667926,,0.016771427452106843,,0.0011436930436696524,0.0004247423334389176,0.0004247423334389176,0.0011436930436696524,0.0004247423334389176,0.0004247423334389176,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,292,293,87.6,,0.02964160998089604,-0.028364778398571686,-0.0203566875010427,,0.02099473950601076,,-0.0203566875010427,,0.02099473950601076,,0.0012768315823243545,0.0006380520049680607,0.0006380520049680607,0.0012768315823243545,0.0006380520049680607,0.0006380520049680607,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,293,294,87.89999999999999,,0.03405292458367009,-0.03237755776000536,-0.023386204214046257,,0.023964875785751214,,-0.023386204214046257,,0.023964875785751214,,0.0016753668236647312,0.000578671571704957,0.000578671571704957,0.0016753668236647312,0.000578671571704957,0.000578671571704957,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,294,295,88.2,,0.03681815645132368,-0.034535651783317016,-0.02528525629097555,,0.025562230829821942,,-0.02528525629097555,,0.025562230829821942,,0.0022825046680066616,0.0002769745388463904,0.0002769745388463904,0.0022825046680066616,0.0002769745388463904,0.0002769745388463904,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,295,296,88.5,,0.03773741955220544,-0.035659137023528964,-0.025916569896678825,,0.026393800166471,,-0.025916569896678825,,0.026393800166471,,0.0020782825286764783,0.00047723026979217334,0.00047723026979217334,0.0020782825286764783,0.00047723026979217334,0.00047723026979217334,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,296,297,88.8,,0.0367454319589569,-0.034614666847925905,-0.025235311980739486,,0.025620715358599288,,-0.025235311980739486,,0.025620715358599288,,0.0021307651110309966,0.0003854033778598019,0.0003854033778598019,0.0021307651110309966,0.0003854033778598019,0.0003854033778598019,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,297,298,89.1,,0.033910027335510816,-0.031458820338819984,-0.02328806802551223,,0.02328485450861752,,-0.02328806802551223,,0.02328485450861752,,0.0024512069966908315,-3.2135168947095005e-06,-3.2135168947095005e-06,0.0024512069966908315,-3.2135168947095005e-06,-3.2135168947095005e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,298,299,89.39999999999999,,0.029353263748003216,-0.027228543947564285,-0.020158662692036537,,0.020153733594332042,,-0.020158662692036537,,0.020153733594332042,,0.002124719800438931,-4.9290977044945394e-06,-4.9290977044945394e-06,0.002124719800438931,-4.9290977044945394e-06,-4.9290977044945394e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,299,300,89.7,,0.02335242990417176,-0.021262039097518476,-0.016037526917586774,,0.015737509595403522,,-0.016037526917586774,,0.015737509595403522,,0.0020903908066532834,-0.00030001732218325194,-0.00030001732218325194,0.0020903908066532834,-0.00030001732218325194,-0.00030001732218325194,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,300,301,90.0,,0.016251797596828738,-0.014016089920680264,-0.011161092977812622,,0.010374280124547804,,-0.011161092977812622,,0.010374280124547804,,0.002235707676148474,-0.0007868128532648178,-0.0007868128532648178,0.002235707676148474,-0.0007868128532648178,-0.0007868128532648178,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,301,302,90.3,,0.008402868539080224,-0.006939149933858608,-0.005770758372188409,,0.005136146075509241,,-0.005770758372188409,,0.005136146075509241,,0.001463718605221616,-0.0006346122966791688,-0.0006346122966791688,0.001463718605221616,-0.0006346122966791688,-0.0006346122966791688,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,302,303,90.6,,0.00017181692933436636,0.0007189123770948569,-0.0001179970838325801,,-0.0005321169047283488,,-0.0001179970838325801,,-0.0005321169047283488,,0.0008907293064292233,-0.0006501139885609289,-0.0006501139885609289,0.0008907293064292233,-0.0006501139885609289,-0.0006501139885609289,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,303,304,90.89999999999999,,-0.008035631117099469,0.008654969797738773,0.005518554209095754,,-0.006406143343783928,,0.005518554209095754,,-0.006406143343783928,,0.0006193386806393041,-0.0008875891346881741,-0.0008875891346881741,0.0006193386806393041,-0.0008875891346881742,-0.0008875891346881742,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,304,305,91.2,,-0.015841393297799867,0.015568294130333258,0.010879243507766978,,-0.011523174100868765,,0.010879243507766978,,-0.011523174100868765,,-0.0002730991674666089,-0.0006439305931017873,-0.0006439305931017873,-0.0002730991674666089,-0.0006439305931017873,-0.0006439305931017873,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,305,306,91.5,,-0.022899921951667387,0.022070502417081302,0.015726762320562353,,-0.01633590936274459,,0.015726762320562353,,-0.01633590936274459,,-0.0008294195345860851,-0.0006091470421822377,-0.0006091470421822377,-0.0008294195345860851,-0.0006091470421822377,-0.0006091470421822377,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,306,307,91.8,,-0.028856313050163597,0.02776510171282498,0.019817376572090078,,-0.020550877205090617,,0.019817376572090078,,-0.020550877205090617,,-0.001091211337338617,-0.0007335006330005389,-0.0007335006330005389,-0.001091211337338617,-0.0007335006330005389,-0.0007335006330005389,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,307,308,92.1,,-0.033456668804148354,0.03159745627093817,0.02297671928450844,,-0.023387468575968764,,0.02297671928450844,,-0.023387468575968764,,-0.0018592125332101833,-0.0004107492914603231,-0.0004107492914603231,-0.0018592125332101835,-0.0004107492914603231,-0.0004107492914603231,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,308,309,92.39999999999999,,-0.03643348216275206,0.034420845046221685,0.02502107717630583,,-0.025477254402191084,,0.02502107717630583,,-0.025477254402191084,,-0.0020126371165303733,-0.00045617722588525353,-0.00045617722588525353,-0.0020126371165303733,-0.00045617722588525353,-0.00045617722588525353,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,309,310,92.7,,-0.03759069469918476,0.03573414894860679,0.025815805060237635,,-0.026449321694075552,,0.025815805060237635,,-0.026449321694075552,,-0.001856545750577969,-0.0006335166338379168,-0.0006335166338379168,-0.001856545750577969,-0.0006335166338379168,-0.0006335166338379168,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,310,311,93.0,,-0.03687386936652863,0.03452283122200459,0.025323517721624236,,-0.025552741443326726,,0.025323517721624236,,-0.025552741443326726,,-0.0023510381445240383,-0.00022922372170249006,-0.00022922372170249006,-0.0023510381445240383,-0.00022922372170249006,-0.00022922372170249006,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,311,312,93.3,,-0.03429682807122766,0.03211097345215305,0.023553707500130378,,-0.02376755825267889,,0.023553707500130378,,-0.02376755825267889,,-0.002185854619074605,-0.00021385075254851116,-0.00021385075254851116,-0.002185854619074605,-0.00021385075254851113,-0.00021385075254851113,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,312,313,93.6,,-0.029983755326563114,0.027996949584783923,0.020591659416743964,,-0.020722483893089495,,0.020591659416743964,,-0.020722483893089495,,-0.0019868057417791914,-0.0001308244763455306,-0.0001308244763455306,-0.0019868057417791914,-0.0001308244763455306,-0.0001308244763455306,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,313,314,93.89999999999999,,-0.024217681247564748,0.02182659443010922,0.0166317473806001,,-0.016155376147291296,,0.0166317473806001,,-0.016155376147291296,,-0.0023910868174555275,0.00047637123330880257,0.00047637123330880257,-0.0023910868174555275,0.00047637123330880257,0.00047637123330880257,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,314,315,94.2,,-0.017298434881709616,0.015334680333079302,0.011879882144426432,,-0.01135026032909737,,0.011879882144426432,,-0.01135026032909737,,-0.0019637545486303146,0.0005296218153290622,0.0005296218153290622,-0.0019637545486303146,0.0005296218153290622,0.0005296218153290622,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,315,316,94.5,,-0.009574328271385948,0.008166262881155071,0.006575270667774652,,-0.006044417464445587,,0.006575270667774652,,-0.006044417464445587,,-0.0014080653902308771,0.0005308532033290649,0.0005308532033290649,-0.0014080653902308771,0.0005308532033290649,0.0005308532033290649,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,316,317,94.8,,-0.0014449208351819548,0.00013067929330059326,0.0009923145849534427,,-9.67248071930534e-05,,0.0009923145849534427,,-9.67248071930534e-05,,-0.0013142415418813615,0.0008955897777603893,0.0008955897777603893,-0.0013142415418813615,0.0008955897777603893,0.0008955897777603893,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,317,318,95.1,,0.006743176542230312,-0.007156404278040678,-0.004630947432444242,,0.005296951081582599,,-0.004630947432444242,,0.005296951081582599,,-0.00041322773581036615,0.0006660036491383569,0.0006660036491383569,-0.0004132277358103661,0.0006660036491383569,0.0006660036491383569,5.421010862427522e-20,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,318,319,95.39999999999999,,0.014590829731691686,-0.014375630808628387,-0.0100204058220994,,0.010640401268812084,,-0.0100204058220994,,0.010640401268812084,,0.00021519892306329919,0.0006199954467126841,0.0006199954467126841,0.00021519892306329919,0.0006199954467126841,0.0006199954467126841,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,319,320,95.7,,0.02172824957464714,-0.021332632923479703,-0.01492210398898127,,0.015789760981469815,,-0.01492210398898127,,0.015789760981469815,,0.00039561665116743736,0.0008676569924885458,0.0008676569924885458,0.00039561665116743736,0.000867656992488546,0.000867656992488546,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,320,321,96.0,,0.02783412990745283,-0.026554279684551207,-0.019115381544883132,,0.019654663855049864,,-0.019115381544883132,,0.019654663855049864,,0.0012798502229016233,0.0005392823101667311,0.0005392823101667311,0.0012798502229016233,0.0005392823101667311,0.0005392823101667311,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,321,322,96.3,,0.032617785405356176,-0.030909518995699388,-0.02240060728485556,,0.022878278492155513,,-0.02240060728485556,,0.022878278492155513,,0.0017082664096567876,0.00047767120729995394,0.00047767120729995394,0.0017082664096567878,0.00047767120729995394,0.00047767120729995394,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,322,323,96.6,,0.035814898688205435,-0.034214506861724746,-0.024596258467309572,,0.025324529202903984,,-0.024596258467309572,,0.025324529202903984,,0.001600391826480689,0.0007282707355944114,0.0007282707355944114,0.001600391826480689,0.0007282707355944114,0.0007282707355944114,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,323,324,96.89999999999999,,0.037244934393370795,-0.035127301535904584,-0.025578350532624052,,0.026000151840867007,,-0.025578350532624052,,0.026000151840867007,,0.0021176328574662104,0.0004218013082429549,0.0004218013082429549,0.0021176328574662104,0.0004218013082429549,0.0004218013082429549,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,324,325,97.2,,0.03681517942532036,-0.03463124269960518,-0.02528321178704776,,0.025632984295913253,,-0.02528321178704776,,0.025632984295913253,,0.00218393672571518,0.0003497725088654931,0.0003497725088654931,0.00218393672571518,0.0003497725088654931,0.0003497725088654931,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,325,326,97.5,,0.0345086222068923,-0.032639324030316996,-0.02369915935099331,,0.024158627155123083,,-0.02369915935099331,,0.024158627155123083,,0.0018692981765753014,0.0004594678041297713,0.0004594678041297713,0.0018692981765753014,0.0004594678041297713,0.0004594678041297713,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,326,327,97.8,,0.03047496461711062,-0.028214848430675205,-0.02092900256482968,,0.02088376593957212,,-0.02092900256482968,,0.02088376593957212,,0.0022601161864354152,-4.5236625257561586e-05,-4.5236625257561586e-05,0.0022601161864354152,-4.5236625257561586e-05,-4.5236625257561586e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,327,328,98.1,,0.024940035342798466,-0.022747273336414256,-0.0171278316550794,,0.016836834452198288,,-0.0171278316550794,,0.016836834452198288,,0.00219276200638421,-0.0002909972028811124,-0.0002909972028811124,0.00219276200638421,-0.0002909972028811124,-0.0002909972028811124,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,328,329,98.39999999999999,,0.018197284089997198,-0.016426644604774502,-0.012497176294624844,,0.012158498811061534,,-0.012497176294624844,,0.012158498811061534,,0.0017706394852226963,-0.00033867748356330996,-0.00033867748356330996,0.0017706394852226963,-0.00033867748356330996,-0.00033867748356330996,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,329,330,98.7,,0.010625643739986328,-0.008830542765905289,-0.007297272626274993,,0.00653609707298841,,-0.007297272626274993,,0.00653609707298841,,0.001795100974081039,-0.0007611755532865834,-0.0007611755532865834,0.001795100974081039,-0.0007611755532865834,-0.0007611755532865834,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,330,331,99.0,,0.0025868229521690185,-0.0013911354637643173,-0.001776527877256605,,0.0010296758278490908,,-0.001776527877256605,,0.0010296758278490908,,0.0011956874884047012,-0.0007468520494075142,-0.0007468520494075142,0.0011956874884047012,-0.0007468520494075142,-0.0007468520494075142,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,331,332,99.3,,-0.0055774582172167025,0.005885561913244839,0.0038303781087187416,,-0.0043563125182496006,,0.0038303781087187416,,-0.0043563125182496006,,0.0003081036960281367,-0.0005259344095308589,-0.0005259344095308589,0.0003081036960281367,-0.0005259344095308589,-0.0005259344095308589,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,332,333,99.6,,-0.013454669021996737,0.013629109126021567,0.00924013550165698,,-0.010087848802450908,,0.00924013550165698,,-0.010087848802450908,,0.00017444010402483008,-0.0008477133007939279,-0.0008477133007939279,0.00017444010402483008,-0.0008477133007939279,-0.0008477133007939279,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,333,334,99.89999999999999,,-0.02068310080276792,0.020211519149134424,0.014204337074331354,,-0.014959946931162801,,0.014204337074331354,,-0.014959946931162801,,-0.0004715816536334967,-0.0007556098568314469,-0.0007556098568314469,-0.0004715816536334967,-0.0007556098568314469,-0.0007556098568314469,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,334,335,100.2,,-0.026941234751171883,0.025653700969934735,0.018502176402540305,,-0.01898808309590024,,0.018502176402540305,,-0.01898808309590024,,-0.0012875337812371483,-0.0004859066933599332,-0.0004859066933599332,-0.0012875337812371483,-0.00048590669335993314,-0.00048590669335993314,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,335,336,100.5,,-0.03190755205885026,0.030578739876670966,0.021912847062082273,,-0.022633445927612048,,0.021912847062082273,,-0.022633445927612048,,-0.0013288121821792911,-0.0007205988655297757,-0.0007205988655297757,-0.0013288121821792911,-0.0007205988655297757,-0.0007205988655297757,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,336,337,100.8,,-0.035349206763400656,0.03363983853217608,0.02427643963860493,,-0.024899177320661315,,0.02427643963860493,,-0.024899177320661315,,-0.001709368231224577,-0.0006227376820563853,-0.0006227376820563853,-0.001709368231224577,-0.0006227376820563853,-0.0006227376820563853,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,337,338,101.1,,-0.03705376679501486,0.03494848962979666,0.025447064173260824,,-0.025867800749081352,,0.025447064173260824,,-0.025867800749081352,,-0.002105277165218203,-0.0004207365758205281,-0.0004207365758205281,-0.002105277165218203,-0.0004207365758205281,-0.0004207365758205281,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,338,339,101.39999999999999,,-0.036906829297279654,0.03502489476760059,0.025346153300824792,,-0.025924353490039662,,0.025346153300824792,,-0.025924353490039662,,-0.0018819345296790663,-0.0005782001892148704,-0.0005782001892148704,-0.0018819345296790663,-0.0005782001892148704,-0.0005782001892148704,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,339,340,101.7,,-0.0348977620344689,0.032886512263424525,0.023966405221554722,,-0.024341588308216557,,0.023966405221554722,,-0.024341588308216557,,-0.002011249771044374,-0.0003751830866618351,-0.0003751830866618351,-0.002011249771044374,-0.0003751830866618351,-0.0003751830866618351,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,340,341,102.0,,-0.031143519599570086,0.02889055660283434,0.02138813973261388,,-0.021383904416144107,,0.02138813973261388,,-0.021383904416144107,,-0.0022529629967357467,4.235316469772266e-06,4.235316469772266e-06,-0.0022529629967357467,4.235316469772266e-06,4.235316469772266e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,341,342,102.3,,-0.025843350090091026,0.023917487532306096,0.0177481925611695,,-0.01770299112946047,,0.0177481925611695,,-0.01770299112946047,,-0.0019258625577849298,4.520143170902782e-05,4.520143170902782e-05,-0.00192586255778493,4.520143170902782e-05,4.520143170902782e-05,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,342,343,102.6,,-0.019292829659218306,0.01734094890568181,0.013249553740052385,,-0.012835238828453693,,0.013249553740052385,,-0.012835238828453693,,-0.0019518807535364967,0.0004143149115986913,0.0004143149115986913,-0.0019518807535364967,0.0004143149115986913,0.0004143149115986913,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,343,344,102.89999999999999,,-0.011872379701233098,0.009992970367221467,0.00815348166403541,,-0.0073964903516279155,,0.00815348166403541,,-0.0073964903516279155,,-0.0018794093340116311,0.0007569913124074951,0.0007569913124074951,-0.0018794093340116314,0.0007569913124074951,0.0007569913124074951,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,344,345,103.2,,-0.003910536300073017,0.0028770873151786353,0.0026856019451499354,,-0.0021295318394331246,,0.0026856019451499354,,-0.0021295318394331246,,-0.0010334489848943815,0.0005560701057168108,0.0005560701057168108,-0.0010334489848943815,0.0005560701057168108,0.0005560701057168108,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,345,346,103.5,,0.004230353950715204,-0.004788115856436631,-0.002905240081392758,,0.003544016586977765,,-0.002905240081392758,,0.003544016586977765,,-0.000557761905721427,0.0006387765055850072,0.0006387765055850072,-0.000557761905721427,0.0006387765055850072,0.0006387765055850072,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,346,347,103.8,,0.012129892450520124,-0.01248018085475162,-0.008330331253789439,,0.009237447314117108,,-0.008330331253789439,,0.009237447314117108,,-0.0003502884042314962,0.0009071160603276694,0.0009071160603276694,-0.0003502884042314962,0.0009071160603276695,0.0009071160603276695,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,347,348,104.1,,0.019456991378829856,-0.01885703285494126,-0.013362293528070642,,0.013957397695224498,,-0.013362293528070642,,0.013957397695224498,,0.0005999585238885968,0.0005951041671538558,0.0005951041671538558,0.0005999585238885968,0.0005951041671538558,0.0005951041671538558,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,348,349,104.39999999999999,,0.02586610307454496,-0.024878766760412327,-0.017763818412617625,,0.01841450054804439,,-0.017763818412617625,,0.01841450054804439,,0.0009873363141326315,0.0006506821354267667,0.0006506821354267667,0.0009873363141326315,0.0006506821354267667,0.0006506821354267667,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,349,350,104.7,,0.031033369637447312,-0.029844738332147222,-0.021312493087285566,,0.022090160483680586,,-0.021312493087285566,,0.022090160483680586,,0.0011886313053000898,0.0007776673963950202,0.0007776673963950202,0.0011886313053000898,0.0007776673963950201,0.0007776673963950201,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,350,351,105.0,,0.03472573246042001,-0.03287609133265652,-0.0238482621017273,,0.024333875054694525,,-0.0238482621017273,,0.024333875054694525,,0.0018496411277634933,0.0004856129529672258,0.0004856129529672258,0.0018496411277634935,0.00048561295296722587,0.00048561295296722587,2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,351,352,105.3,,0.036694184582756924,-0.03485458483888321,-0.02520011730598249,,0.025798295301307658,,-0.02520011730598249,,0.025798295301307658,,0.0018395997438737169,0.0005981779953251679,0.0005981779953251679,0.0018395997438737167,0.0005981779953251679,0.0005981779953251679,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,352,353,105.6,,0.03685026580321661,-0.03506667237293179,-0.02530730772619674,,0.025955275992898267,,-0.02530730772619674,,0.025955275992898267,,0.0017835934302848216,0.0006479682667015277,0.0006479682667015277,0.0017835934302848216,0.0006479682667015277,0.0006479682667015277,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,353,354,105.89999999999999,,0.035158039165044716,-0.03296141904037208,-0.024145153279241702,,0.024397032008398187,,-0.024145153279241702,,0.024397032008398187,,0.0021966201246726366,0.0002518787291564857,0.0002518787291564857,0.0021966201246726366,0.0002518787291564857,0.0002518787291564857,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,354,355,106.2,,0.031690654450037076,-0.029724972734122463,-0.021763890347343124,,0.022001513659193565,,-0.021763890347343124,,0.022001513659193565,,0.0019656817159146127,0.0002376233118504406,0.0002376233118504406,0.0019656817159146127,0.00023762331185044064,0.00023762331185044064,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_1L,sr_closed_loop_400,355,356,106.5,,0.026641618348409356,-0.02472672256403931,-0.018296411685807503,,0.018301962094494795,,-0.018296411685807503,,0.018301962094494795,,0.0019148957843700444,5.550408687292341e-06,5.550408687292341e-06,0.0019148957843700444,5.550408687292341e-06,5.550408687292341e-06,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,356,357,106.8,,0.02030757023692078,-0.018155597188478836,-0.01394643750743985,,0.013438216515993246,,-0.01394643750743985,,0.013438216515993246,,0.002151973048441943,-0.0005082209914466038,-0.0005082209914466038,0.002151973048441943,-0.0005082209914466038,-0.0005082209914466038,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,357,358,107.1,,0.013022574962086548,-0.01140149904508397,-0.008943390360137422,,0.008439040103398868,,-0.008943390360137422,,0.008439040103398868,,0.0016210759170025776,-0.0005043502567385547,-0.0005043502567385547,0.0016210759170025776,-0.0005043502567385547,-0.0005043502567385547,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,358,359,107.39999999999999,,0.005150467630455059,-0.003965962156430157,-0.0035371378310753987,,0.0029354836196830865,,-0.0035371378310753987,,0.0029354836196830865,,0.0011845054740249024,-0.0006016542113923122,-0.0006016542113923122,0.0011845054740249024,-0.0006016542113923122,-0.0006016542113923122,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,359,360,107.7,,-0.002942364914851024,0.003777107430353037,0.002020700060632934,,-0.0027956991403984602,,0.002020700060632934,,-0.0027956991403984602,,0.0008347425155020129,-0.0007749990797655264,-0.0007749990797655264,0.0008347425155020129,-0.0007749990797655264,-0.0007749990797655264,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,360,361,108.0,,-0.010885495581133105,0.011018243498469188,0.007475728611972286,,-0.008155366095714172,,0.007475728611972286,,-0.008155366095714172,,0.00013274791733608286,-0.0006796374837418854,-0.0006796374837418854,0.00013274791733608286,-0.0006796374837418854,-0.0006796374837418854,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,361,362,108.3,,-0.018306158183832837,0.017897997412829218,0.012571946723984102,,-0.013247549058254784,,0.012571946723984102,,-0.013247549058254784,,-0.00040816077100361975,-0.0006756023342706814,-0.0006756023342706814,-0.00040816077100361975,-0.0006756023342706814,-0.0006756023342706814,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,362,363,108.6,,-0.024858167127707213,0.024144397197432634,0.017071607797065114,,-0.017870942708132692,,0.017071607797065114,,-0.017870942708132692,,-0.0007137699302745791,-0.0007993349110675778,-0.0007993349110675778,-0.0007137699302745791,-0.0007993349110675779,-0.0007993349110675779,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,363,364,108.89999999999999,,-0.030237227826274207,0.02883729344191612,0.02076573432259599,,-0.02134448065710635,,0.02076573432259599,,-0.02134448065710635,,-0.0013999343843580855,-0.0005787463345103619,-0.0005787463345103619,-0.0013999343843580855,-0.0005787463345103619,-0.0005787463345103619,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,364,365,109.2,,-0.0341690285977995,0.03253100643497558,0.023465939867230154,,-0.024078453791307027,,0.023465939867230154,,-0.024078453791307027,,-0.0016380221628239239,-0.0006125139240768726,-0.0006125139240768726,-0.0016380221628239239,-0.0006125139240768726,-0.0006125139240768726,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,365,366,109.5,,-0.03642752811074542,0.034801800477486766,0.025016988168450244,,-0.025759225934999293,,0.025016988168450244,,-0.025759225934999293,,-0.0016257276332586543,-0.0007422377665490497,-0.0007422377665490497,-0.0016257276332586543,-0.0007422377665490497,-0.0007422377665490497,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,366,367,109.8,,-0.03688535218111286,0.03491573598721699,0.025331403665345722,,-0.025843557506840205,,0.025331403665345722,,-0.025843557506840205,,-0.001969616193895865,-0.000512153841494483,-0.000512153841494483,-0.001969616193895865,-0.000512153841494483,-0.000512153841494483,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,367,368,110.1,,-0.035509966167579836,0.03348843273516543,0.02438684285070571,,-0.024787111390750904,,0.02438684285070571,,-0.024787111390750904,,-0.002021533432414409,-0.0004002685400451948,-0.0004002685400451948,-0.002021533432414409,-0.0004002685400451948,-0.0004002685400451948,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,368,369,110.39999999999999,,-0.03232476098874386,0.03049239448526599,0.02219936968396287,,-0.022569535715636503,,0.02219936968396287,,-0.022569535715636503,,-0.001832366503477869,-0.0003701660316736341,-0.0003701660316736341,-0.0018323665034778692,-0.0003701660316736341,-0.0003701660316736341,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,369,370,110.7,,-0.027549611279421415,0.025401416807799393,0.018919985383784133,,-0.01880135009234572,,0.018919985383784133,,-0.01880135009234572,,-0.002148194471622022,0.00011863529143841395,0.00011863529143841395,-0.002148194471622022,0.00011863529143841395,0.00011863529143841395,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,370,371,111.0,,-0.021428420527170092,0.019434365563005207,0.014716193236253623,,-0.014384721668773071,,0.014716193236253623,,-0.014384721668773071,,-0.0019940549641648854,0.000331471567480552,0.000331471567480552,-0.0019940549641648854,0.000331471567480552,0.000331471567480552,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,371,372,111.3,,-0.014298230604508409,0.01270669152027668,0.009819460293196393,,-0.009405103565514834,,0.009819460293196393,,-0.009405103565514834,,-0.0015915390842317287,0.0004143567276815585,0.0004143567276815585,-0.0015915390842317287,0.0004143567276815585,0.0004143567276815585,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,372,373,111.6,,-0.00652968124884949,0.005053129514093002,0.0044843272936225705,,-0.0037401715729201476,,0.0044843272936225705,,-0.0037401715729201476,,-0.0014765517347564887,0.0007441557207024229,0.0007441557207024229,-0.0014765517347564887,0.0007441557207024229,0.0007441557207024229,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,373,374,111.89999999999999,,0.0015267890502732061,-0.002284804092047312,-0.001048538442967729,,0.0016911419529093245,,-0.001048538442967729,,0.0016911419529093245,,-0.000758015041774106,0.0006426035099415955,0.0006426035099415955,-0.000758015041774106,0.0006426035099415955,0.0006426035099415955,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,374,375,112.2,,0.009504580805022492,-0.009644274757852806,-0.006527370861466377,,0.007138396550128187,,-0.006527370861466377,,0.007138396550128187,,-0.0001396939528303144,0.0006110256886618102,0.0006110256886618102,-0.0001396939528303144,0.0006110256886618102,0.0006110256886618102,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,375,376,112.5,,0.01701306567482011,-0.016926879323961842,-0.011683901839348063,,0.012528757216525736,,-0.011683901839348063,,0.012528757216525736,,8.618635085826803e-05,0.000844855377177673,0.000844855377177673,8.618635085826803e-05,0.000844855377177673,0.000844855377177673,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,376,377,112.8,,0.02371711558957824,-0.022945901909788045,-0.016287978648741323,,0.01698385323365449,,-0.016287978648741323,,0.01698385323365449,,0.0007712136797901961,0.0006958745849131691,0.0006958745849131691,0.0007712136797901962,0.0006958745849131691,0.0006958745849131691,1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,377,378,113.1,,0.029303292240090376,-0.027964903814438412,-0.020124344233248596,,0.02069876459617768,,-0.020124344233248596,,0.02069876459617768,,0.0013383884256519644,0.0005744203629290852,0.0005744203629290852,0.0013383884256519644,0.0005744203629290852,0.0005744203629290852,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,378,379,113.39999999999999,,0.03348452526175083,-0.03213547672179675,-0.022995849999832785,,0.02378569482177124,,-0.022995849999832785,,0.02378569482177124,,0.00134904853995408,0.0007898448219384561,0.0007898448219384561,0.00134904853995408,0.0007898448219384563,0.0007898448219384563,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,379,380,113.7,,0.03603456067830742,-0.034305170837051605,-0.02474711364998167,,0.02539163589832109,,-0.02474711364998167,,0.02539163589832109,,0.0017293898412558129,0.00064452224833942,0.00064452224833942,0.0017293898412558129,0.00064452224833942,0.00064452224833942,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,380,381,114.0,,0.03680135751887638,-0.034817745440384414,-0.025273719447383013,,0.02577102790777571,,-0.025273719447383013,,0.02577102790777571,,0.0019836120784919656,0.000497308460392698,0.000497308460392698,0.0019836120784919656,0.000497308460392698,0.000497308460392698,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,381,382,114.3,,0.03573154196011252,-0.033959864377239024,-0.02453901235733139,,0.025136050641435287,,-0.02453901235733139,,0.025136050641435287,,0.0017716775828734987,0.0005970382841038978,0.0005970382841038978,0.0017716775828734987,0.0005970382841038978,0.0005970382841038978,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,382,383,114.6,,0.03286572914248968,-0.03091673290849411,-0.022570885254841685,,0.022883618009278336,,-0.022570885254841685,,0.022883618009278336,,0.0019489962339955744,0.00031273275443665163,0.00031273275443665163,0.0019489962339955742,0.00031273275443665163,0.00031273275443665163,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,383,384,114.89999999999999,,0.02837063252219368,-0.026243095670657007,-0.01948383035987026,,0.019424334986678643,,-0.01948383035987026,,0.019424334986678643,,0.002127536851536674,-5.9495373191616185e-05,-5.9495373191616185e-05,0.002127536851536674,-5.9495373191616185e-05,-5.9495373191616185e-05,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,384,385,115.19999999999999,,0.022472931364905743,-0.02065974121909571,-0.015433522042919012,,0.015291707168011892,,-0.015433522042919012,,0.015291707168011892,,0.0018131901458100334,-0.0001418148749071195,-0.0001418148749071195,0.0018131901458100334,-0.0001418148749071195,-0.0001418148749071195,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,385,386,115.5,,0.015513495148005815,-0.013752609360316158,-0.01065405600372015,,0.010179259890227176,,-0.01065405600372015,,0.010179259890227176,,0.0017608857876896568,-0.00047479611349297325,-0.00047479611349297325,0.0017608857876896566,-0.0004747961134929733,-0.0004747961134929733,-2.168404344971009e-19,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1L,sr_closed_loop_400,386,387,115.8,,0.007854032530897058,-0.0062823477710513805,-0.005393839469500427,,0.004650001247534256,,-0.005393839469500427,,0.004650001247534256,,0.001571684759845677,-0.0007438382219661713,-0.0007438382219661713,0.0015716847598456769,-0.0007438382219661713,-0.0007438382219661713,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,387,388,116.1,,-0.0001699031269036618,0.0007918493282157627,0.00011668275987899937,,-0.0005861026002140984,,0.00011668275987899937,,-0.0005861026002140984,,0.0006219462013121008,-0.00046941984033509903,-0.00046941984033509903,0.0006219462013121008,-0.00046941984033509903,-0.00046941984033509903,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,388,389,116.39999999999999,,-0.00816959728724879,0.008546131155858954,0.005610556885846404,,-0.006325584317291769,,0.005610556885846404,,-0.006325584317291769,,0.0003765338686101648,-0.0007150274314453647,-0.0007150274314453647,0.0003765338686101648,-0.0007150274314453647,-0.0007150274314453647,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,389,390,116.69999999999999,,-0.015758461859136,0.015795799008982942,0.01082228946977848,,-0.011691566238345757,,0.01082228946977848,,-0.011691566238345757,,3.733714984694228e-05,-0.0008692767685672762,-0.0008692767685672762,3.733714984694228e-05,-0.0008692767685672763,-0.0008692767685672763,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1L,sr_closed_loop_400,390,391,117.0,,-0.022620081507355474,0.021769181673335636,0.015534578951349885,,-0.01611288098459882,,0.015534578951349885,,-0.01611288098459882,,-0.000850899834019838,-0.0005783020332489341,-0.0005783020332489341,-0.000850899834019838,-0.0005783020332489341,-0.0005783020332489341,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,391,392,117.3,,-0.028404017742373746,0.02733006634498689,0.019506758011060502,,-0.02022887736094157,,0.019506758011060502,,-0.02022887736094157,,-0.0010739513973868561,-0.0007221193498810688,-0.0007221193498810688,-0.0010739513973868561,-0.0007221193498810688,-0.0007221193498810688,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,392,393,117.6,,-0.0328340450800258,0.031522729747928226,0.02254912589161018,,-0.023332158294226437,,0.02254912589161018,,-0.023332158294226437,,-0.001311315332097572,-0.0007830324026162558,-0.0007830324026162558,-0.001311315332097572,-0.0007830324026162558,-0.0007830324026162558,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,393,394,117.89999999999999,,-0.03567923136033993,0.033835297640480246,0.024503087502600183,,-0.025043850161226493,,0.024503087502600183,,-0.025043850161226493,,-0.0018439337198596847,-0.0005407626586263099,-0.0005407626586263099,-0.0018439337198596847,-0.0005407626586263099,-0.0005407626586263099,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,394,395,118.19999999999999,,-0.03675053543210545,0.03506719060300242,0.0252388168446157,,-0.025955659570911255,,0.0252388168446157,,-0.025955659570911255,,-0.0016833448291030326,-0.0007168427262955537,-0.0007168427262955537,-0.0016833448291030328,-0.0007168427262955537,-0.0007168427262955537,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,395,396,118.5,,-0.03600266397112901,0.034219505153203024,0.024725208250755325,,-0.02532822878504374,,0.024725208250755325,,-0.02532822878504374,,-0.0017831588179259839,-0.0006030205342884148,-0.0006030205342884148,-0.001783158817925984,-0.0006030205342884148,-0.0006030205342884148,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,396,397,118.8,,-0.03345199062042885,0.03136265298546051,0.02297350649262191,,-0.023213674381475532,,0.02297350649262191,,-0.023213674381475532,,-0.0020893376349683385,-0.0002401678888536221,-0.0002401678888536221,-0.0020893376349683385,-0.0002401678888536221,-0.0002401678888536221,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,397,398,119.1,,-0.02922886659000742,0.02733635082341581,0.02007323163505379,,-0.02023352893923675,,0.02007323163505379,,-0.02023352893923675,,-0.0018925157665916105,-0.0001602973041829603,-0.0001602973041829603,-0.0018925157665916105,-0.0001602973041829603,-0.0001602973041829603,0.0,0.0,0.0 +illusion,illusion_1L,sr_closed_loop_400,398,399,119.39999999999999,,-0.02357762065685133,0.02166411052651636,0.01619217903612477,,-0.01603511054246557,,0.01619217903612477,,-0.01603511054246557,,-0.0019135101303349722,0.00015706849365920011,0.00015706849365920011,-0.0019135101303349724,0.00015706849365920011,0.00015706849365920011,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,0,1,0.0,,0.04238338759745532,0.03263264712404474,-0.029107237329990862,,-0.024153685113767344,,-0.029107237329990862,,-0.024153685113767344,,0.07501603472150006,-0.053260922443758206,-0.053260922443758206,0.07501603472150006,-0.053260922443758206,-0.053260922443758206,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,1,2,0.4,,0.11023618955451345,-0.10564033618017962,-0.07570586292422103,,0.07819173865084583,,-0.07570586292422103,,0.07819173865084583,,0.004595853374333825,0.0024858757266248005,0.0024858757266248005,0.004595853374333825,0.0024858757266248005,0.0024858757266248005,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,2,3,0.8,,0.15765904424144297,-0.18584607568452355,-0.10827400729597962,,0.13755756848808687,,-0.10827400729597962,,0.13755756848808687,,-0.028187031443080574,0.029283561192107246,0.029283561192107246,-0.028187031443080574,0.029283561192107246,0.029283561192107246,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,3,4,1.2000000000000002,,0.1877065929823629,-0.22762012100046067,-0.12890947751117626,,0.16847743633251722,,-0.12890947751117626,,0.16847743633251722,,-0.03991352801809778,0.039567958821340954,0.039567958821340954,-0.03991352801809778,0.039567958821340954,0.039567958821340954,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,4,5,1.6,,0.20416827091242556,-0.23991318418563548,-0.14021470801589825,,0.17757638488332528,,-0.14021470801589825,,0.17757638488332528,,-0.035744913273209916,0.03736167686742703,0.03736167686742703,-0.035744913273209916,0.03736167686742703,0.03736167686742703,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,5,6,2.0,,0.22270047042779606,-0.2331726933368849,-0.15294189100239972,,0.17258728017312266,,-0.15294189100239972,,0.17258728017312266,,-0.010472222909088835,0.01964538917072295,0.01964538917072295,-0.010472222909088835,0.01964538917072295,0.01964538917072295,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,6,7,2.4000000000000004,,0.2520577744253752,-0.22308831169155358,-0.17310332837833825,,0.1651231299954647,,-0.17310332837833825,,0.1651231299954647,,0.028969462733821616,-0.00798019838287356,-0.00798019838287356,0.028969462733821616,-0.00798019838287356,-0.00798019838287356,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,7,8,2.8000000000000003,,0.287557958936087,-0.2327262493969123,-0.19748345357328123,,0.17225683605358624,,-0.19748345357328123,,0.17225683605358624,,0.05483170953917468,-0.025226617519694988,-0.025226617519694988,0.05483170953917469,-0.025226617519694988,-0.025226617519694988,6.938893903907228e-18,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,8,9,3.2,,0.3182540740563013,-0.2558126630063568,-0.2185643335727469,,0.18934469174022595,,-0.2185643335727469,,0.18934469174022595,,0.062441411049944495,-0.02921964183252096,-0.02921964183252096,0.062441411049944495,-0.02921964183252096,-0.02921964183252096,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,9,10,3.6,,0.33333887745982926,-0.2763008362744622,-0.22892398101086497,,0.20450940956998157,,-0.22892398101086497,,0.20450940956998157,,0.05703804118536704,-0.02441457144088341,-0.02441457144088341,0.05703804118536704,-0.02441457144088341,-0.02441457144088341,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,10,11,4.0,,0.3259375655261511,-0.27642295831719216,-0.2238410521743838,,0.20459980056260735,,-0.2238410521743838,,0.20459980056260735,,0.04951460720895895,-0.01924125161177645,-0.01924125161177645,0.04951460720895895,-0.01924125161177645,-0.01924125161177645,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,11,12,4.4,,0.29351456267929776,-0.2554070315620911,-0.2015742138608038,,0.1890444557789877,,-0.2015742138608038,,0.1890444557789877,,0.03810753111720666,-0.012529758081816084,-0.012529758081816084,0.03810753111720666,-0.012529758081816084,-0.012529758081816084,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,12,13,4.800000000000001,,0.23827627047715705,-0.21473608025967394,-0.16363873555260866,,0.15894106431026062,,-0.16363873555260866,,0.15894106431026062,,0.023540190217483103,-0.004697671242348045,-0.004697671242348045,0.023540190217483103,-0.004697671242348045,-0.004697671242348045,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,13,14,5.2,,0.16604171153264352,-0.15709267355175766,-0.114030892248658,,0.11627518160649601,,-0.114030892248658,,0.11627518160649601,,0.008949037980885866,0.0022442893578380058,0.0022442893578380058,0.008949037980885866,0.0022442893578380058,0.0022442893578380058,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,14,15,5.6000000000000005,,0.08480228686223594,-0.08897727914800527,-0.05823886267112039,,0.06585825460776523,,-0.05823886267112039,,0.06585825460776523,,-0.004174992285769327,0.007619391936644841,0.007619391936644841,-0.004174992285769327,0.007619391936644841,0.007619391936644841,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,15,16,6.0,,0.0023348389654595826,-0.017373901578650916,-0.001603475223368477,,0.012859629386888236,,-0.001603475223368477,,0.012859629386888236,,-0.015039062613191333,0.01125615416351976,0.01125615416351976,-0.015039062613191332,0.01125615416351976,0.01125615416351976,1.734723475976807e-18,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,16,17,6.4,,-0.07484838777542692,0.051099317545351956,0.05140291775255223,,-0.03782214850138266,,0.05140291775255223,,-0.03782214850138266,,-0.023749070230074963,0.01358076925116957,0.01358076925116957,-0.023749070230074963,0.01358076925116957,0.01358076925116957,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,17,18,6.800000000000001,,-0.14200435300299405,0.11043518855812308,0.09752298339168418,,-0.08174074140454858,,0.09752298339168418,,-0.08174074140454858,,-0.03156916444487097,0.015782241987135598,0.015782241987135598,-0.03156916444487097,0.015782241987135598,0.015782241987135598,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,18,19,7.2,,-0.1958549257981594,0.15822579486705093,0.13450543079753843,,-0.11711388327054599,,0.13450543079753843,,-0.11711388327054599,,-0.03762913093110848,0.017391547526992443,0.017391547526992443,-0.03762913093110848,0.017391547526992443,0.017391547526992443,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,19,20,7.6000000000000005,,-0.2341345893723978,0.19170635651360746,0.16079439248106514,,-0.1418951687227808,,0.16079439248106514,,-0.1418951687227808,,-0.042428232858790355,0.018899223758284345,0.018899223758284345,-0.042428232858790355,0.018899223758284345,0.018899223758284345,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,20,21,8.0,,-0.2541344627074042,0.21270807324996036,0.17452951590396817,,-0.15743999568610226,,0.17452951590396817,,-0.15743999568610226,,-0.04142638945744384,0.017089520217865917,0.017089520217865917,-0.04142638945744384,0.017089520217865917,0.017089520217865917,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,21,22,8.4,,-0.2531099404728337,0.2156320624988814,0.17382591448081797,,-0.1596042428992081,,0.17382591448081797,,-0.1596042428992081,,-0.0374778779739523,0.014221671581609863,0.014221671581609863,-0.0374778779739523,0.014221671581609863,0.014221671581609863,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,22,23,8.8,,-0.22959951554577154,0.20311211969090298,0.15767988281906337,,-0.15033736500613434,,0.15767988281906337,,-0.15033736500613434,,-0.026487395854868562,0.0073425178129290225,0.0073425178129290225,-0.026487395854868562,0.007342517812929023,0.007342517812929023,0.0,8.673617379884035e-19,8.673617379884035e-19 +illusion,illusion_1.5L,sr_closed_loop_400,23,24,9.200000000000001,,-0.18570581886341853,0.17014535687233887,0.12753542483570504,,-0.12593637769692106,,0.12753542483570504,,-0.12593637769692106,,-0.01556046199107966,0.0015990471387839766,0.0015990471387839766,-0.01556046199107966,0.0015990471387839766,0.0015990471387839766,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,24,25,9.600000000000001,,-0.1265999445935384,0.12277016829437268,0.08694384385331813,,-0.09087071530159556,,0.08694384385331813,,-0.09087071530159556,,-0.003829776299165727,-0.0039268714482774275,-0.0039268714482774275,-0.003829776299165727,-0.0039268714482774275,-0.0039268714482774275,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,25,26,10.0,,-0.05979165347421593,0.06417167107687473,0.041062547065753345,,-0.04749790387899634,,0.041062547065753345,,-0.04749790387899634,,0.004380017602658798,-0.006435356813242997,-0.006435356813242997,0.004380017602658798,-0.006435356813242997,-0.006435356813242997,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,26,27,10.4,,0.007262242290380297,0.0049614642844720835,-0.004987421295854301,,-0.003672323779765989,,-0.004987421295854301,,-0.003672323779765989,,0.012223706574852382,-0.00865974507562029,-0.00865974507562029,0.012223706574852382,-0.00865974507562029,-0.00865974507562029,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,27,28,10.8,,0.06808564791946052,-0.049138391287461385,-0.04675853500858249,,0.03637073099349964,,-0.04675853500858249,,0.03637073099349964,,0.018947256631999136,-0.010387804015082852,-0.010387804015082852,0.018947256631999136,-0.010387804015082852,-0.010387804015082852,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,28,29,11.200000000000001,,0.11811882279951381,-0.09302060028599253,-0.08111934423502776,,0.06885099697431458,,-0.08111934423502776,,0.06885099697431458,,0.025098222513521284,-0.012268347260713172,-0.012268347260713172,0.025098222513521284,-0.01226834726071317,-0.01226834726071317,0.0,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_1.5L,sr_closed_loop_400,29,30,11.600000000000001,,0.15437836158578627,-0.12435601990571264,-0.10602096396755258,,0.09204451405325254,,-0.10602096396755258,,0.09204451405325254,,0.03002234168007363,-0.01397644991430004,-0.01397644991430004,0.03002234168007363,-0.01397644991430004,-0.01397644991430004,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,30,31,12.0,,0.17504062320653097,-0.14362412937595148,-0.12021098951438938,,0.10630617805840245,,-0.12021098951438938,,0.10630617805840245,,0.031416493830579484,-0.013904811455986932,-0.013904811455986932,0.031416493830579484,-0.01390481145598693,-0.01390481145598693,0.0,1.734723475976807e-18,1.734723475976807e-18 +illusion,illusion_1.5L,sr_closed_loop_400,31,32,12.4,,0.1788435612810555,-0.14956701157194463,-0.12282269724614912,,0.11070491729290562,,-0.12282269724614912,,0.11070491729290562,,0.029276549709110866,-0.012117779953243507,-0.012117779953243507,0.029276549709110866,-0.012117779953243507,-0.012117779953243507,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,32,33,12.8,,0.16530553553096583,-0.14275638692030276,-0.11352531563451396,,0.10566390169161198,,-0.11352531563451396,,0.10566390169161198,,0.022549148610663067,-0.007861413942901976,-0.007861413942901976,0.022549148610663067,-0.007861413942901976,-0.007861413942901976,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,33,34,13.200000000000001,,0.13579576527307388,-0.12178813733169923,-0.09325917045027349,,0.09014384608518723,,-0.09325917045027349,,0.09014384608518723,,0.014007627941374654,-0.0031153243650862555,-0.0031153243650862555,0.014007627941374652,-0.003115324365086256,-0.003115324365086256,-1.734723475976807e-18,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_1.5L,sr_closed_loop_400,34,35,13.600000000000001,,0.09394026817942125,-0.08888015231795707,-0.06451446747747863,,0.06578636430538905,,-0.06451446747747863,,0.06578636430538905,,0.005060115861464182,0.0012718968279104154,0.0012718968279104154,0.005060115861464182,0.0012718968279104154,0.0012718968279104154,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,35,36,14.0,,0.04525802517073085,-0.04774326336327298,-0.03108142492626652,,0.0353381000688254,,-0.03108142492626652,,0.0353381000688254,,-0.002485238192542129,0.004256675142558879,0.004256675142558879,-0.002485238192542129,0.004256675142558879,0.004256675142558879,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,36,37,14.4,,-0.00462566047501296,-0.005306315884738979,0.0031767209958045973,,0.003927572363558873,,0.0031767209958045973,,0.003927572363558873,,-0.009931976359751939,0.007104293359363471,0.007104293359363471,-0.009931976359751939,0.007104293359363471,0.007104293359363471,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,37,38,14.8,,-0.050831230493657106,0.03487917448020534,0.034908882315088416,,-0.025816495800068843,,0.034908882315088416,,-0.025816495800068843,,-0.015952056013451767,0.009092386515019573,0.009092386515019573,-0.015952056013451767,0.009092386515019573,0.009092386515019573,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,38,39,15.200000000000001,,-0.08983877692570681,0.06833827839760567,0.061697725208960316,,-0.0505818988989253,,0.061697725208960316,,-0.0505818988989253,,-0.02150049852810114,0.011115826310035014,0.011115826310035014,-0.02150049852810114,0.011115826310035014,0.011115826310035014,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,39,40,15.600000000000001,,-0.11908635625059223,0.09389882000176478,0.08178380801156022,,-0.06950102828788937,,0.08178380801156022,,-0.06950102828788937,,-0.025187536248827455,0.012282779723670853,0.012282779723670853,-0.025187536248827455,0.012282779723670853,0.012282779723670853,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,40,41,16.0,,-0.13673969516084028,0.11070427013406935,0.09390742423137846,,-0.08193990733891537,,0.09390742423137846,,-0.08193990733891537,,-0.026035425026770934,0.011967516892463087,0.011967516892463087,-0.026035425026770934,0.011967516892463087,0.011967516892463087,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,41,42,16.400000000000002,,-0.1413798154764408,0.11797715600870896,0.09709407567483233,,-0.087323074527794,,0.09709407567483233,,-0.087323074527794,,-0.02340265946773183,0.009771001147038327,0.009771001147038327,-0.02340265946773183,0.009771001147038327,0.009771001147038327,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,42,43,16.8,,-0.13256505412533004,0.11435713871145375,0.09104044558063439,,-0.08464364868863591,,0.09104044558063439,,-0.08464364868863591,,-0.018207915413876286,0.006396796891998471,0.006396796891998471,-0.018207915413876286,0.006396796891998471,0.006396796891998471,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,43,44,17.2,,-0.11142370396276564,0.09878708147229326,0.07652140093741787,,-0.07311916958865775,,0.07652140093741787,,-0.07311916958865775,,-0.012636622490472385,0.0034022313487601236,0.0034022313487601236,-0.012636622490472385,0.0034022313487601236,0.0034022313487601236,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,44,45,17.6,,-0.08086899757770899,0.07487433123878495,0.055537634874522325,,-0.05541968486255512,,0.055537634874522325,,-0.05541968486255512,,-0.005994666338924037,0.00011795001196720362,0.00011795001196720362,-0.005994666338924037,0.00011795001196720362,0.00011795001196720362,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,45,46,18.0,,-0.04477000555090119,0.04470669050915377,0.03074627231810344,,-0.0330905219221734,,0.03074627231810344,,-0.0330905219221734,,-6.331504174741931e-05,-0.002344249604069957,-0.002344249604069957,-6.331504174741931e-05,-0.002344249604069957,-0.002344249604069957,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,46,47,18.400000000000002,,-0.007261179066807684,0.012586268746437722,0.004986691115880089,,-0.009315970319634532,,0.004986691115880089,,-0.009315970319634532,,0.005325089679630038,-0.004329279203754443,-0.004329279203754443,0.005325089679630038,-0.004329279203754443,-0.004329279203754443,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,47,48,18.8,,0.028181378726268448,-0.01750251839607034,-0.019353858324460613,,0.012954827612655052,,-0.019353858324460613,,0.012954827612655052,,0.010678860330198107,-0.006399030711805561,-0.006399030711805561,0.010678860330198107,-0.006399030711805561,-0.006399030711805561,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,48,49,19.200000000000003,,0.05877797612008607,-0.04410095090710978,-0.04036639347834009,,0.032642172036456384,,-0.04036639347834009,,0.032642172036456384,,0.014677025212976286,-0.007724221441883707,-0.007724221441883707,0.014677025212976284,-0.0077242214418837074,-0.0077242214418837074,-1.734723475976807e-18,-8.673617379884035e-19,-8.673617379884035e-19 +illusion,illusion_1.5L,sr_closed_loop_400,49,50,19.6,,0.0825212470095506,-0.06434916863135424,-0.056672334554447014,,0.04762928212799543,,-0.056672334554447014,,0.04762928212799543,,0.018172078378196357,-0.009043052426451585,-0.009043052426451585,0.018172078378196357,-0.009043052426451585,-0.009043052426451585,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,50,51,20.0,,0.09753630294671514,-0.0790472474473322,-0.0669840821862568,,0.058508349527859584,,-0.0669840821862568,,0.058508349527859584,,0.018489055499382942,-0.008475732658397218,-0.008475732658397218,0.018489055499382942,-0.008475732658397218,-0.008475732658397218,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,51,52,20.400000000000002,,0.10268124181459261,-0.08537407804101281,-0.0705174230814663,,0.06319127559717351,,-0.0705174230814663,,0.06319127559717351,,0.017307163773579798,-0.0073261474842927915,-0.0073261474842927915,0.017307163773579798,-0.0073261474842927915,-0.0073261474842927915,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,52,53,20.8,,0.09735725609708701,-0.08362168681248378,-0.06686111987859959,,0.061894209325806554,,-0.06686111987859959,,0.061894209325806554,,0.013735569284603233,-0.0049669105527930385,-0.0049669105527930385,0.013735569284603233,-0.0049669105527930385,-0.0049669105527930385,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,53,54,21.200000000000003,,0.08254867817772404,-0.07248725838535462,-0.05669117319778167,,0.05365284670731104,,-0.05669117319778167,,0.05365284670731104,,0.010061419792369422,-0.0030383264904706303,-0.0030383264904706303,0.010061419792369422,-0.0030383264904706303,-0.0030383264904706303,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,54,55,21.6,,0.060086379048544435,-0.05480636745214928,-0.04126495295460478,,0.04056599321031613,,-0.04126495295460478,,0.04056599321031613,,0.005280011596395157,-0.0006989597442886505,-0.0006989597442886505,0.005280011596395157,-0.0006989597442886505,-0.0006989597442886505,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,55,56,22.0,,0.03288040162779175,-0.03173218106813928,-0.022580961738485804,,0.02348718774114228,,-0.022580961738485804,,0.02348718774114228,,0.0011482205596524755,0.0009062260026564753,0.0009062260026564753,0.0011482205596524755,0.0009062260026564752,0.0009062260026564752,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1.5L,sr_closed_loop_400,56,57,22.400000000000002,,0.0037448860674598097,-0.007411565931419619,-0.002571839905167782,,0.005485813915951988,,-0.002571839905167782,,0.005485813915951988,,-0.003666679863959809,0.0029139740107842057,0.0029139740107842057,-0.003666679863959809,0.0029139740107842057,0.0029139740107842057,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,57,58,22.8,,-0.024486889456150525,0.017160460262425088,0.016816628950070456,,-0.012701646667227466,,0.016816628950070456,,-0.012701646667227466,,-0.007326429193725437,0.00411498228284299,0.00411498228284299,-0.007326429193725438,0.00411498228284299,0.00411498228284299,-8.673617379884035e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,58,59,23.200000000000003,,-0.04957513816497133,0.038565791852116636,0.03404624769355494,,-0.028545216972997486,,0.03404624769355494,,-0.028545216972997486,,-0.011009346312854697,0.005501030720557451,0.005501030720557451,-0.011009346312854697,0.005501030720557451,0.005501030720557451,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,59,60,23.6,,-0.06951717213762754,0.056396346127602415,0.04774164932586087,,-0.041742846688322906,,0.04774164932586087,,-0.041742846688322906,,-0.013120826010025122,0.005998802637537964,0.005998802637537964,-0.013120826010025122,0.005998802637537964,0.005998802637537964,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,60,61,24.0,,-0.0826924260047414,0.06826811455239144,0.056789893530295066,,-0.05052996577142775,,0.056789893530295066,,-0.05052996577142775,,-0.014424311452349958,0.006259927758867315,0.006259927758867315,-0.014424311452349958,0.006259927758867315,0.006259927758867315,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,61,62,24.400000000000002,,-0.08793730788844456,0.07383126178648873,0.060391871343080446,,-0.0546476368271388,,0.060391871343080446,,-0.0546476368271388,,-0.01410604610195583,0.005744234515941644,0.005744234515941644,-0.014106046101955831,0.005744234515941644,0.005744234515941644,-1.734723475976807e-18,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,62,63,24.8,,-0.08478676379807579,0.0728153581047063,0.0582282020434969,,-0.05389569606234533,,0.0582282020434969,,-0.05389569606234533,,-0.011971405693369491,0.00433250598115157,0.00433250598115157,-0.011971405693369491,0.00433250598115157,0.00433250598115157,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,63,64,25.200000000000003,,-0.07371371557873363,0.06448296962712512,0.050623669684073704,,-0.04772831752366753,,0.050623669684073704,,-0.04772831752366753,,-0.009230745951608513,0.0028953521604061713,0.0028953521604061713,-0.009230745951608513,0.0028953521604061713,0.0028953521604061713,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,64,65,25.6,,-0.05607738824564739,0.050467688971518904,0.038511736343842855,,-0.03735463639232117,,0.038511736343842855,,-0.03735463639232117,,-0.0056096992741284865,0.0011570999515216826,0.0011570999515216826,-0.0056096992741284865,0.0011570999515216826,0.0011570999515216826,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,65,66,26.0,,-0.03397701042058547,0.03170928881806296,0.023334069363887554,,-0.023470243599351175,,0.023334069363887554,,-0.023470243599351175,,-0.0022677216025225114,-0.00013617423546362015,-0.00013617423546362015,-0.0022677216025225114,-0.00013617423546362015,-0.00013617423546362015,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,66,67,26.400000000000002,,-0.009712759980540246,0.010817742912847523,0.00667034010041699,,-0.00800696170817482,,0.00667034010041699,,-0.00800696170817482,,0.0011049829323072774,-0.0013366216077578307,-0.0013366216077578307,0.0011049829323072774,-0.0013366216077578307,-0.0013366216077578307,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,67,68,26.8,,0.014327788219827069,-0.010216600725035153,-0.009839759296479473,,0.00756201468754766,,-0.009839759296479473,,0.00756201468754766,,0.004111187494791916,-0.002277744608931813,-0.002277744608931813,0.004111187494791916,-0.002277744608931813,-0.002277744608931813,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,68,69,27.200000000000003,,0.036031796297018616,-0.029161378755865636,-0.02474521518204872,,0.021584358672315392,,-0.02474521518204872,,0.021584358672315392,,0.00687041754115298,-0.0031608565097333285,-0.0031608565097333285,0.006870417541152981,-0.0031608565097333285,-0.0031608565097333285,8.673617379884035e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,69,70,27.6,,0.053654301723660876,-0.0441252476357833,-0.03684765618261482,,0.0326601557302537,,-0.03684765618261482,,0.0326601557302537,,0.009529054087877575,-0.0041875004523611176,-0.0041875004523611176,0.009529054087877575,-0.0041875004523611176,-0.0041875004523611176,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,70,71,28.0,,0.0658384185763843,-0.054967525738242644,-0.045215226615089046,,0.04068527763370283,,-0.045215226615089046,,0.04068527763370283,,0.010870892838141653,-0.004529948981386214,-0.004529948981386214,0.010870892838141653,-0.004529948981386214,-0.004529948981386214,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,71,72,28.400000000000002,,0.07157068214577354,-0.06017538870602262,-0.049151918928052984,,0.04453997816600266,,-0.049151918928052984,,0.04453997816600266,,0.011395293439750924,-0.0046119407620503275,-0.0046119407620503275,0.011395293439750924,-0.0046119407620503275,-0.0046119407620503275,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,72,73,28.8,,0.07033925660397242,-0.0602958884633141,-0.04830622448192121,,0.044629168392674744,,-0.04830622448192121,,0.044629168392674744,,0.010043368140658315,-0.0036770560892464693,-0.0036770560892464693,0.010043368140658315,-0.003677056089246469,-0.003677056089246469,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_1.5L,sr_closed_loop_400,73,74,29.200000000000003,,0.06229171738285967,-0.054207886826384416,-0.04277949225711429,,0.04012301619633176,,-0.04277949225711429,,0.04012301619633176,,0.008083830556475255,-0.0026564760607825297,-0.0026564760607825297,0.008083830556475255,-0.0026564760607825297,-0.0026564760607825297,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,74,75,29.6,,0.04842217852282909,-0.042404156752461966,-0.03325444052951998,,0.03138625701496105,,-0.03325444052951998,,0.03138625701496105,,0.006018021770367123,-0.0018681835145589326,-0.0018681835145589326,0.006018021770367123,-0.0018681835145589328,-0.0018681835145589328,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_1.5L,sr_closed_loop_400,75,76,30.0,,0.030346952498967936,-0.02717225402261039,-0.020841088895934615,,0.020112069517334373,,-0.020841088895934615,,0.020112069517334373,,0.0031746984763575473,-0.0007290193786002423,-0.0007290193786002423,0.003174698476357547,-0.0007290193786002423,-0.0007290193786002423,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,76,77,30.400000000000002,,0.010065750206647978,-0.009105009428237613,-0.0069127598518552115,,0.006739248883229294,,-0.0069127598518552115,,0.006739248883229294,,0.0009607407784103655,-0.0001735109686259173,-0.0001735109686259173,0.0009607407784103655,-0.0001735109686259173,-0.0001735109686259173,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,77,78,30.8,,-0.01048253384711253,0.008806171870247025,0.007198990401746124,,-0.00651805848306242,,0.007198990401746124,,-0.00651805848306242,,-0.0016763619768655046,0.0006809319186837038,0.0006809319186837038,-0.0016763619768655046,0.0006809319186837038,0.0006809319186837038,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,78,79,31.200000000000003,,-0.029338165973272105,0.025615825111294687,0.020148294136402733,,-0.018960048546342315,,0.020148294136402733,,-0.018960048546342315,,-0.0037223408619774176,0.0011882455900604182,0.0011882455900604182,-0.003722340861977418,0.0011882455900604182,0.0011882455900604182,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,79,80,31.6,,-0.045060690875653765,0.03849249233944609,0.030945903523052865,,-0.028490962920566285,,0.030945903523052865,,-0.028490962920566285,,-0.006568198536207673,0.0024549406024865807,0.0024549406024865807,-0.006568198536207673,0.0024549406024865807,0.0024549406024865807,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,80,81,32.0,,-0.05634659645423317,0.048317612493140476,0.038696617913313205,,-0.03576321568924848,,0.038696617913313205,,-0.03576321568924848,,-0.008028983961092695,0.0029334022240647267,0.0029334022240647267,-0.008028983961092695,0.0029334022240647267,0.0029334022240647267,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,81,82,32.4,,-0.062419516856287834,0.05286180674967744,0.04286725989001451,,-0.03912668898490123,,0.04286725989001451,,-0.03912668898490123,,-0.009557710106610391,0.0037405709051132816,0.0037405709051132816,-0.009557710106610391,0.0037405709051132816,0.0037405709051132816,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,82,83,32.800000000000004,,-0.06265385133169188,0.05360321748209498,0.04302819155633073,,-0.03967545848259809,,0.04302819155633073,,-0.03967545848259809,,-0.009050633849596902,0.0033527330737326416,0.0033527330737326416,-0.009050633849596902,0.003352733073732641,0.003352733073732641,0.0,-4.336808689942018e-19,-4.336808689942018e-19 +illusion,illusion_1.5L,sr_closed_loop_400,83,84,33.2,,-0.057148479672698385,0.04858641617759959,0.03924731964986353,,-0.03596217593685468,,0.03924731964986353,,-0.03596217593685468,,-0.008562063495098797,0.0032851437130088437,0.0032851437130088437,-0.008562063495098797,0.003285143713008844,0.003285143713008844,0.0,4.336808689942018e-19,4.336808689942018e-19 +illusion,illusion_1.5L,sr_closed_loop_400,84,85,33.6,,-0.04645521491349383,0.039635309814466585,0.03190360757722868,,-0.02933684138483027,,0.03190360757722868,,-0.02933684138483027,,-0.006819905099027246,0.0025667661923984113,0.0025667661923984113,-0.006819905099027246,0.0025667661923984113,0.0025667661923984113,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,85,86,34.0,,-0.03184035632906108,0.02669019303115342,0.021866699687712102,,-0.019755262748057514,,0.021866699687712102,,-0.019755262748057514,,-0.005150163297907656,0.002111436939654588,0.002111436939654588,-0.005150163297907656,0.002111436939654588,0.002111436939654588,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,86,87,34.4,,-0.014816233129085782,0.011913983521447973,0.010175203976632241,,-0.008818365403633836,,0.010175203976632241,,-0.008818365403633836,,-0.002902249607637809,0.0013568385729984048,0.0013568385729984048,-0.002902249607637809,0.0013568385729984048,0.0013568385729984048,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,87,88,34.800000000000004,,0.0029189739962535237,-0.0035856186027892196,-0.002004636101200281,,0.0026539649799364067,,-0.002004636101200281,,0.0026539649799364067,,-0.0006666446065356959,0.0006493288787361258,0.0006493288787361258,-0.0006666446065356959,0.0006493288787361258,0.0006493288787361258,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,88,89,35.2,,0.019795096474920996,-0.018172569223291815,-0.013594490759869902,,0.013450778695918592,,-0.013594490759869902,,0.013450778695918592,,0.0016225272516291814,-0.00014371206395131023,-0.00014371206395131023,0.0016225272516291814,-0.00014371206395131023,-0.00014371206395131023,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,89,90,35.6,,0.034361897353871615,-0.030547972782695366,-0.02359839451455212,,0.02261067306775402,,-0.02359839451455212,,0.02261067306775402,,0.0038139245711762484,-0.0009877214467981024,-0.0009877214467981024,0.003813924571176248,-0.0009877214467981024,-0.0009877214467981024,-4.336808689942018e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,90,91,36.0,,0.045406876470896765,-0.03983440779913623,-0.031183650122656136,,0.02948420761013882,,-0.031183650122656136,,0.02948420761013882,,0.005572468671760533,-0.0016994425125173157,-0.0016994425125173157,0.005572468671760533,-0.0016994425125173155,-0.0016994425125173155,0.0,2.168404344971009e-19,2.168404344971009e-19 +illusion,illusion_1.5L,sr_closed_loop_400,91,92,36.4,,0.05199567295038358,-0.044976091284781215,-0.03570857542284486,,0.033289924118359786,,-0.03570857542284486,,0.033289924118359786,,0.007019581665602362,-0.002418651304485077,-0.002418651304485077,0.007019581665602362,-0.002418651304485077,-0.002418651304485077,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,92,93,36.800000000000004,,0.053579238139434354,-0.04591073048302501,-0.03679610547643549,,0.03398171540343549,,-0.03679610547643549,,0.03398171540343549,,0.0076685076564093416,-0.002814390073000002,-0.002814390073000002,0.0076685076564093416,-0.002814390073000002,-0.002814390073000002,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,93,94,37.2,,0.05007612911238689,-0.04243313257293258,-0.034390308497403405,,0.03140770402907853,,-0.034390308497403405,,0.03140770402907853,,0.007642996539454307,-0.0029826044683248717,-0.0029826044683248717,0.007642996539454307,-0.0029826044683248717,-0.0029826044683248717,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,94,95,37.6,,0.041904618022707396,-0.03490485315573386,-0.02877843728760342,,0.02583550236856746,,-0.02877843728760342,,0.02583550236856746,,0.006999764866973533,-0.0029429349190359597,-0.0029429349190359597,0.006999764866973533,-0.0029429349190359597,-0.0029429349190359597,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,95,96,38.0,,0.029979077142843615,-0.0241471423146908,-0.020588446624857433,,0.017872974559781197,,-0.020588446624857433,,0.017872974559781197,,0.005831934828152814,-0.002715472065076236,-0.002715472065076236,0.005831934828152814,-0.002715472065076236,-0.002715472065076236,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,96,97,38.400000000000006,,0.015620030149981702,-0.011256833994281812,-0.010727220037136142,,0.008331963467208117,,-0.010727220037136142,,0.008331963467208117,,0.00436319615569989,-0.002395256569928025,-0.002395256569928025,0.00436319615569989,-0.002395256569928025,-0.002395256569928025,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,97,98,38.800000000000004,,0.00018648941463643477,0.00194930633332012,-0.00012807356747669894,,-0.001442816795901134,,-0.00012807356747669894,,-0.001442816795901134,,0.002135795747956555,-0.001570890363377833,-0.001570890363377833,0.002135795747956555,-0.0015708903633778332,-0.0015708903633778332,0.0,-2.168404344971009e-19,-2.168404344971009e-19 +illusion,illusion_1.5L,sr_closed_loop_400,98,99,39.2,,-0.014939992352938011,0.014924854229473875,0.01026019692563046,,-0.011046919609594601,,0.01026019692563046,,-0.011046919609594601,,-1.5138123464136094e-05,-0.0007867226839641406,-0.0007867226839641406,-1.5138123464136092e-05,-0.0007867226839641406,-0.0007867226839641406,1.6940658945086007e-21,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,99,100,39.6,,-0.028583064592001887,0.025889279722873144,0.01962972031871772,,-0.019162451267637545,,0.01962972031871772,,-0.019162451267637545,,-0.0026937848691287423,0.00046726905108017414,0.00046726905108017414,-0.0026937848691287423,0.0004672690510801741,0.0004672690510801741,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,100,101,40.0,,-0.03959295733113079,0.03507004837897159,0.027190879987672754,,-0.025957774809084327,,0.027190879987672754,,-0.025957774809084327,,-0.004522908952159198,0.001233105178588427,0.001233105178588427,-0.004522908952159198,0.001233105178588427,0.001233105178588427,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,101,102,40.400000000000006,,-0.047051895982444615,0.04083158760314955,0.03231338457875618,,-0.030222289534549997,,0.03231338457875618,,-0.030222289534549997,,-0.006220308379295068,0.002091095044206185,0.002091095044206185,-0.006220308379295068,0.002091095044206185,0.002091095044206185,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,102,103,40.800000000000004,,-0.050193296350088915,0.04341041684858233,0.03447077433056151,,-0.03213105989325197,,0.03447077433056151,,-0.03213105989325197,,-0.006782879501506585,0.0023397144373095424,0.0023397144373095424,-0.006782879501506585,0.0023397144373095424,0.0023397144373095424,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,103,104,41.2,,-0.048718392610159256,0.04122321932492759,0.0334578686703353,,-0.030512163330335917,,0.0334578686703353,,-0.030512163330335917,,-0.0074951732852316655,0.002945705339999386,0.002945705339999386,-0.0074951732852316655,0.002945705339999386,0.002945705339999386,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,104,105,41.6,,-0.04280920863828709,0.03609933967091184,0.029399674409662572,,-0.026719624672546648,,0.029399674409662572,,-0.026719624672546648,,-0.00670986896737525,0.002680049737115924,0.002680049737115924,-0.00670986896737525,0.002680049737115924,0.002680049737115924,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,105,106,42.0,,-0.033002034404498753,0.027730177512413277,0.0226644943275356,,-0.02052502738247623,,0.0226644943275356,,-0.02052502738247623,,-0.005271856892085477,0.0021394669450593706,0.0021394669450593706,-0.005271856892085477,0.0021394669450593706,0.0021394669450593706,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,106,107,42.400000000000006,,-0.02024143773070421,0.01692503172110135,0.013901020313043893,,-0.012527389677522911,,0.013901020313043893,,-0.012527389677522911,,-0.003316406009602861,0.001373630635520982,0.001373630635520982,-0.003316406009602861,0.001373630635520982,0.001373630635520982,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,107,108,42.800000000000004,,-0.005654648248588454,0.004303974434116427,0.003883389174846497,,-0.00318566994654732,,0.003883389174846497,,-0.00318566994654732,,-0.0013506738144720264,0.0006977192282991772,0.0006977192282991772,-0.0013506738144720264,0.0006977192282991772,0.0006977192282991772,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,108,109,43.2,,0.009227504741999374,-0.0091245406934356,-0.006337085960186857,,0.006753705327037619,,-0.006337085960186857,,0.006753705327037619,,0.00010296404856377506,0.0004166193668507616,0.0004166193668507616,0.00010296404856377506,0.0004166193668507616,0.0004166193668507616,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,109,110,43.6,,0.023187204960987598,-0.02073238167830687,-0.015924056949594305,,0.015345473409274404,,-0.015924056949594305,,0.015345473409274404,,0.002454823282680728,-0.0005785835403199005,-0.0005785835403199005,0.002454823282680728,-0.0005785835403199005,-0.0005785835403199005,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,110,111,44.0,,0.034819934068953576,-0.03147485542868644,-0.02391295604744244,,0.023296723190613586,,-0.02391295604744244,,0.023296723190613586,,0.0033450786402671392,-0.0006162328568288557,-0.0006162328568288557,0.0033450786402671397,-0.0006162328568288557,-0.0006162328568288557,4.336808689942018e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,111,112,44.400000000000006,,0.043306584625555755,-0.037605335032600745,-0.029741252601598718,,0.027834316276042874,,-0.029741252601598718,,0.027834316276042874,,0.00570124959295501,-0.0019069363255558441,-0.0019069363255558441,0.00570124959295501,-0.0019069363255558441,-0.0019069363255558441,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,112,113,44.800000000000004,,0.04773597402906424,-0.04230678582853992,-0.03278318237416387,,0.03131418604178165,,-0.03278318237416387,,0.03131418604178165,,0.005429188200524321,-0.0014689963323822192,-0.0014689963323822192,0.005429188200524321,-0.0014689963323822192,-0.0014689963323822192,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,113,114,45.2,,0.04785867002934385,-0.04137691209377165,-0.03286744514318788,,0.030625922006694947,,-0.03286744514318788,,0.030625922006694947,,0.006481757935572201,-0.0022415231364929337,-0.0022415231364929337,0.006481757935572201,-0.0022415231364929337,-0.0022415231364929337,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,114,115,45.6,,0.04344735542656981,-0.03868163504935322,-0.029837928430184322,,0.028630960556654324,,-0.029837928430184322,,0.028630960556654324,,0.004765720377216585,-0.001206967873529998,-0.001206967873529998,0.004765720377216585,-0.001206967873529998,-0.001206967873529998,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,115,116,46.0,,0.03510381476284142,-0.03047924909133683,-0.024107914100556915,,0.022559805897995465,,-0.024107914100556915,,0.022559805897995465,,0.004624565671504589,-0.0015481082025614497,-0.0015481082025614497,0.004624565671504589,-0.0015481082025614497,-0.0015481082025614497,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,116,117,46.400000000000006,,0.023442591263129395,-0.020746469650118105,-0.016099446179399908,,0.01535590089417095,,-0.016099446179399908,,0.01535590089417095,,0.0026961216130112903,-0.0007435452852289585,-0.0007435452852289585,0.0026961216130112903,-0.0007435452852289585,-0.0007435452852289585,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,117,118,46.800000000000004,,0.009862887148993294,-0.007798840577549521,-0.006773441512775655,,0.005772462737900451,,-0.006773441512775655,,0.005772462737900451,,0.0020640465714437733,-0.0010009787748752044,-0.0010009787748752044,0.0020640465714437733,-0.0010009787748752044,-0.0010009787748752044,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,118,119,47.2,,-0.004434918166086071,0.004961975942784567,0.0030457267084310524,,-0.0036727024935650438,,0.0030457267084310524,,-0.0036727024935650438,,0.0005270577766984964,-0.0006269757851339913,-0.0006269757851339913,0.0005270577766984964,-0.0006269757851339913,-0.0006269757851339913,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,119,120,47.6,,-0.01795848407558817,0.017293363743798272,0.012333177872416938,,-0.012800017750253889,,0.012333177872416938,,-0.012800017750253889,,-0.0006651203317898993,-0.00046683987783695084,-0.00046683987783695084,-0.0006651203317898993,-0.00046683987783695084,-0.00046683987783695084,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,120,121,48.0,,-0.02970306430339311,0.027125451838768338,0.020398891903552124,,-0.02007742797548028,,0.020398891903552124,,-0.02007742797548028,,-0.0025776124646247726,0.00032146392807184607,0.00032146392807184607,-0.0025776124646247726,0.00032146392807184607,0.00032146392807184607,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,121,122,48.400000000000006,,-0.03873280946088634,0.03476602007087142,0.02660016438853564,,-0.025732742374798234,,0.02660016438853564,,-0.025732742374798234,,-0.0039667893900149215,0.0008674220137374067,0.0008674220137374067,-0.0039667893900149215,0.0008674220137374067,0.0008674220137374067,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,122,123,48.800000000000004,,-0.04434577934542834,0.039551352787734924,0.030454930508393048,,-0.02927469896717545,,0.030454930508393048,,-0.02927469896717545,,-0.004794426557693417,0.0011802315412175989,0.0011802315412175989,-0.004794426557693417,0.0011802315412175989,0.0011802315412175989,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,123,124,49.2,,-0.0460086610129961,0.0407895546380734,0.03159693198805985,,-0.030191178022235716,,0.03159693198805985,,-0.030191178022235716,,-0.005219106374922698,0.0014057539658241351,0.0014057539658241351,-0.005219106374922698,0.0014057539658241351,0.0014057539658241351,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,124,125,49.6,,-0.0434875452776146,0.03901394444920613,0.029865529233209516,,-0.02887692578815643,,0.029865529233209516,,-0.02887692578815643,,-0.004473600828408468,0.0009886034450530858,0.0009886034450530858,-0.004473600828408468,0.0009886034450530858,0.0009886034450530858,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,125,126,50.0,,-0.03697997907907548,0.03275863336056219,0.025396389683050545,,-0.024246936264185625,,0.025396389683050545,,-0.024246936264185625,,-0.004221345718513292,0.0011494534188649201,0.0011494534188649201,-0.004221345718513292,0.0011494534188649201,0.0011494534188649201,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,126,127,50.400000000000006,,-0.027057551410015816,0.024051592706596674,0.018582058091719044,,-0.017802251668748895,,0.018582058091719044,,-0.017802251668748895,,-0.003005958703419142,0.0007798064229701494,0.0007798064229701494,-0.003005958703419142,0.0007798064229701493,0.0007798064229701493,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1.5L,sr_closed_loop_400,127,128,50.800000000000004,,-0.014797307749493258,0.012539426193224228,0.010162206773091275,,-0.009281298897609135,,0.010162206773091275,,-0.009281298897609135,,-0.0022578815562690306,0.0008809078754821401,0.0008809078754821401,-0.0022578815562690306,0.0008809078754821401,0.0008809078754821401,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,128,129,51.2,,-0.0013647537778068853,0.0002158166840738925,0.0009372590148978948,,-0.00015974089412983228,,0.0009372590148978948,,-0.00015974089412983228,,-0.0011489370937329928,0.0007775181207680626,0.0007775181207680626,-0.0011489370937329928,0.0007775181207680626,0.0007775181207680626,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,129,130,51.6,,0.011891517725540144,-0.011954927452317738,-0.008166624903571217,,0.00884867084621068,,-0.008166624903571217,,0.00884867084621068,,-6.340972677759335e-05,0.0006820459426394639,0.0006820459426394639,-6.340972677759335e-05,0.0006820459426394639,0.0006820459426394639,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,130,131,52.0,,0.023865116310886062,-0.022334775343712813,-0.016389619701151565,,0.016531516082287975,,-0.016389619701151565,,0.016531516082287975,,0.0015303409671732493,0.00014189638113640962,0.00014189638113640962,0.0015303409671732493,0.00014189638113640962,0.00014189638113640962,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,131,132,52.400000000000006,,0.03365293987565283,-0.030657272386467715,-0.023111510507747887,,0.02269157328410918,,-0.023111510507747887,,0.02269157328410918,,0.002995667489185113,-0.00041993722363870695,-0.00041993722363870695,0.002995667489185113,-0.000419937223638707,-0.000419937223638707,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,132,133,52.800000000000004,,0.04046480066067398,-0.036556546273075814,-0.02778962756652619,,0.027058034984729598,,-0.02778962756652619,,0.027058034984729598,,0.003908254387598169,-0.0007315925817965932,-0.0007315925817965932,0.003908254387598169,-0.0007315925817965932,-0.0007315925817965932,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,133,134,53.2,,0.0437476097634759,-0.039010579709037436,-0.03004413125490165,,0.02887443531062283,,-0.03004413125490165,,0.02887443531062283,,0.004737030054438464,-0.0011696959442788202,-0.0011696959442788202,0.004737030054438464,-0.0011696959442788202,-0.0011696959442788202,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,134,135,53.6,,0.04310882504104962,-0.03879780495685172,-0.029605439126395374,,0.02871694596123239,,-0.029605439126395374,,0.02871694596123239,,0.004311020084197897,-0.0008884931651629846,-0.0008884931651629846,0.004311020084197897,-0.0008884931651629846,-0.0008884931651629846,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,135,136,54.0,,0.03855844079497771,-0.03431920811244289,-0.026480414872764955,,0.025402025859281585,,-0.026480414872764955,,0.025402025859281585,,0.004239232682534816,-0.0010783890134833697,-0.0010783890134833697,0.004239232682534816,-0.0010783890134833697,-0.0010783890134833697,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,136,137,54.400000000000006,,0.030444981712362918,-0.02728763344148667,-0.020908411489556918,,0.020197469826465093,,-0.020908411489556918,,0.020197469826465093,,0.0031573482708762493,-0.0007109416630918242,-0.0007109416630918242,0.0031573482708762493,-0.0007109416630918242,-0.0007109416630918242,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,137,138,54.800000000000004,,0.019620515164297834,-0.01683024443695169,-0.013474595208104371,,0.012457231035306814,,-0.013474595208104371,,0.012457231035306814,,0.0027902707273461426,-0.0010173641727975573,-0.0010173641727975573,0.0027902707273461426,-0.0010173641727975573,-0.0010173641727975573,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,138,139,55.2,,0.007166126879416023,-0.005450909585024167,-0.00492141302618558,,0.004034596188284068,,-0.00492141302618558,,0.004034596188284068,,0.0017152172943918562,-0.0008868168379015124,-0.0008868168379015124,0.0017152172943918562,-0.0008868168379015124,-0.0008868168379015124,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,139,140,55.6,,-0.005712912900367682,0.0065580151874785044,0.003923403037433288,,-0.004854041819149436,,0.003923403037433288,,-0.004854041819149436,,0.0008451022871108224,-0.0009306387817161477,-0.0009306387817161477,0.0008451022871108224,-0.0009306387817161477,-0.0009306387817161477,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,140,141,56.0,,-0.01784939733703801,0.01723689544255195,0.012258261407062838,,-0.012758221644592328,,0.012258261407062838,,-0.012758221644592328,,-0.000612501894486063,-0.0004999602375294898,-0.0004999602375294898,-0.000612501894486063,-0.0004999602375294898,-0.0004999602375294898,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,141,142,56.400000000000006,,-0.028357873839322315,0.026131223692983367,0.01947506820017972,,-0.019341530778012636,,0.01947506820017972,,-0.019341530778012636,,-0.002226650146338948,0.00013353742216708556,0.00013353742216708556,-0.002226650146338948,0.00013353742216708556,0.00013353742216708556,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,142,143,56.800000000000004,,-0.036325033358345464,0.03341434836680821,0.024946598818936256,,-0.024732276412198582,,0.024946598818936256,,-0.024732276412198582,,-0.002910684991537252,0.00021432240673767422,0.00021432240673767422,-0.002910684991537252,0.00021432240673767422,0.00021432240673767422,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,143,144,57.2,,-0.04121373534522304,0.03685907997560997,0.02830396634036078,,-0.027281961157789827,,0.02830396634036078,,-0.027281961157789827,,-0.004354655369613068,0.0010220051825709543,0.0010220051825709543,-0.004354655369613068,0.0010220051825709543,0.0010220051825709543,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,144,145,57.6,,-0.04237264903937193,0.03872382949191515,0.029099862512251325,,-0.028662191589653812,,0.029099862512251325,,-0.028662191589653812,,-0.003648819547456779,0.0004376709225975134,0.0004376709225975134,-0.0036488195474567785,0.0004376709225975134,0.0004376709225975134,4.336808689942018e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,145,146,58.0,,-0.03979752154650166,0.035384332385063624,0.02733136661471105,,-0.026190398196656427,,0.02733136661471105,,-0.026190398196656427,,-0.0044131891614380345,0.0011409684180546213,0.0011409684180546213,-0.0044131891614380345,0.0011409684180546213,0.0011409684180546213,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,146,147,58.400000000000006,,-0.03345411706757408,0.030612757174459077,0.022974966852570333,,-0.022658624488703705,,0.022974966852570333,,-0.022658624488703705,,-0.0028413598931150003,0.0003163423638666285,0.0003163423638666285,-0.0028413598931150003,0.0003163423638666285,0.0003163423638666285,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,147,148,58.800000000000004,,-0.024171962633942362,0.02094884975856838,0.016600349641709006,,-0.015505696446895086,,0.016600349641709006,,-0.015505696446895086,,-0.003223112875373982,0.0010946531948139195,0.0010946531948139195,-0.003223112875373982,0.0010946531948139195,0.0010946531948139195,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,148,149,59.2,,-0.012686171023711588,0.010964187032460977,0.0087123614162969,,-0.008115355156565954,,0.0087123614162969,,-0.008115355156565954,,-0.001721983991250611,0.0005970062597309457,0.0005970062597309457,-0.0017219839912506112,0.0005970062597309457,0.0005970062597309457,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,149,150,59.6,,-0.0003459729505284828,-0.0012838721661933925,0.0002376005636084255,,0.0009502828229253971,,0.0002376005636084255,,0.0009502828229253971,,-0.0016298451167218752,0.0011878833865338226,0.0011878833865338226,-0.0016298451167218752,0.0011878833865338226,0.0011878833865338226,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,150,151,60.0,,0.011901937316551758,-0.011627172280857221,-0.00817378066731849,,0.008606076514964013,,-0.00817378066731849,,0.008606076514964013,,0.00027476503569453734,0.0004322958476455224,0.0004322958476455224,0.00027476503569453734,0.00043229584764552237,0.00043229584764552237,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,151,152,60.400000000000006,,0.02294223824985741,-0.021674362469217858,-0.015755823483535974,,0.016042698716200763,,-0.015755823483535974,,0.016042698716200763,,0.0012678757806395512,0.00028687523266478915,0.00028687523266478915,0.0012678757806395512,0.00028687523266478915,0.00028687523266478915,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,152,153,60.800000000000004,,0.03198474209022201,-0.0295569835748518,-0.021965858128210027,,0.02187717323286755,,-0.021965858128210027,,0.02187717323286755,,0.002427758515370207,-8.868489534247584e-05,-8.868489534247584e-05,0.002427758515370207,-8.868489534247584e-05,-8.868489534247584e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,153,154,61.2,,0.03825584736621186,-0.03475890755091661,-0.026272605652104358,,0.025727477905547518,,-0.026272605652104358,,0.025727477905547518,,0.0034969398152952524,-0.0005451277465568401,-0.0005451277465568401,0.0034969398152952524,-0.0005451277465568401,-0.0005451277465568401,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,154,155,61.6,,0.041178223677897745,-0.03772156126945475,-0.028279578329222115,,0.027920343373883223,,-0.028279578329222115,,0.027920343373883223,,0.003456662408442994,-0.00035923495533889127,-0.00035923495533889127,0.003456662408442994,-0.00035923495533889127,-0.00035923495533889127,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,155,156,62.0,,0.04044268561036362,-0.03650565457802426,-0.027774439823062592,,0.02702036651203388,,-0.027774439823062592,,0.02702036651203388,,0.003937031032339361,-0.0007540733110287107,-0.0007540733110287107,0.003937031032339361,-0.0007540733110287107,-0.0007540733110287107,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,156,157,62.400000000000006,,0.03596715230380371,-0.032951204650574245,-0.02470082023961666,,0.024389471630171185,,-0.02470082023961666,,0.024389471630171185,,0.0030159476532294616,-0.0003113486094454762,-0.0003113486094454762,0.0030159476532294616,-0.0003113486094454762,-0.0003113486094454762,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,157,158,62.800000000000004,,0.028241131891049338,-0.025119631084542078,-0.0193948944390113,,0.01859278093755909,,-0.0193948944390113,,0.01859278093755909,,0.0031215008065072596,-0.0008021135014522097,-0.0008021135014522097,0.0031215008065072596,-0.0008021135014522097,-0.0008021135014522097,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,158,159,63.2,,0.017965501351167423,-0.015843079992346763,-0.012337997060246735,,0.011726562172929243,,-0.012337997060246735,,0.011726562172929243,,0.00212242135882066,-0.0006114348873174913,-0.0006114348873174913,0.00212242135882066,-0.0006114348873174913,-0.0006114348873174913,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,159,160,63.6,,0.0062662144475558275,-0.00440792791264027,-0.004303388696012958,,0.0032626131248681372,,-0.004303388696012958,,0.0032626131248681372,,0.0018582865349155578,-0.001040775571144821,-0.001040775571144821,0.0018582865349155578,-0.001040775571144821,-0.001040775571144821,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,160,161,64.0,,-0.005818809968200001,0.0063892280290048864,0.003996128962864755,,-0.004729110738274437,,0.003996128962864755,,-0.004729110738274437,,0.000570418060804885,-0.0007329817754096824,-0.0007329817754096824,0.000570418060804885,-0.0007329817754096824,-0.0007329817754096824,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,161,162,64.4,,-0.017278020989115433,0.01652584998804076,0.011865862688921572,,-0.012231927594815893,,0.011865862688921572,,-0.012231927594815893,,-0.0007521710010746745,-0.00036606490589432064,-0.00036606490589432064,-0.0007521710010746745,-0.00036606490589432064,-0.00036606490589432064,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,162,163,64.8,,-0.02716897724042573,0.025656558745903908,0.01865858095301641,,-0.01899019833407331,,0.01865858095301641,,-0.01899019833407331,,-0.0015124184945218208,-0.00033161738105690064,-0.00033161738105690064,-0.0015124184945218208,-0.00033161738105690064,-0.00033161738105690064,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,163,164,65.2,,-0.03476656024560837,0.03180448918415297,0.023876301012737022,,-0.023540707992157333,,0.023876301012737022,,-0.023540707992157333,,-0.0029620710614554,0.00033559302057968934,0.00033559302057968934,-0.0029620710614554,0.00033559302057968934,0.00033559302057968934,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,164,165,65.60000000000001,,-0.039300570848662036,0.03649639403197961,0.026990080494764587,,-0.027013512139714844,,0.026990080494764587,,-0.027013512139714844,,-0.0028041768166824285,-2.3431644950257235e-05,-2.3431644950257235e-05,-0.0028041768166824285,-2.3431644950257235e-05,-2.3431644950257235e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,165,166,66.0,,-0.04044183503150553,0.036738050722376764,0.027773855679083224,,-0.027192379014452296,,0.027773855679083224,,-0.027192379014452296,,-0.003703784309128766,0.0005814766646309276,0.0005814766646309276,-0.003703784309128766,0.0005814766646309276,0.0005814766646309276,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,166,167,66.4,,-0.037862241999630286,0.03510899825065655,0.026002293025651255,,-0.025986604310176412,,0.026002293025651255,,-0.025986604310176412,,-0.0027532437489737327,1.568871547484238e-05,1.568871547484238e-05,-0.0027532437489737327,1.568871547484238e-05,1.568871547484238e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,167,168,66.8,,-0.03187650593052994,0.028731608305121868,0.021891525806835295,,-0.021266255758414235,,0.021891525806835295,,-0.021266255758414235,,-0.0031448976254080697,0.0006252700484210595,0.0006252700484210595,-0.0031448976254080697,0.0006252700484210595,0.0006252700484210595,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,168,169,67.2,,-0.022971157931032504,0.020784980152830153,0.015775684378834524,,-0.015384405187817243,,0.015775684378834524,,-0.015384405187817243,,-0.0021861777782023507,0.00039127919101728144,0.00039127919101728144,-0.0021861777782023507,0.0003912791910172815,0.0003912791910172815,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,169,170,67.60000000000001,,-0.012141587909818875,0.009981492322215192,0.008338363233505765,,-0.007387994654550402,,0.008338363233505765,,-0.007387994654550402,,-0.0021600955876036835,0.0009503685789553629,0.0009503685789553629,-0.0021600955876036835,0.000950368578955363,0.000950368578955363,0.0,1.0842021724855044e-19,1.0842021724855044e-19 +illusion,illusion_1.5L,sr_closed_loop_400,170,171,68.0,,-0.000409766364885302,-0.0007052495158884294,0.00028141136206111613,,0.0005220040736705828,,0.00028141136206111613,,0.0005220040736705828,,-0.0011150158807737313,0.000803415435731699,0.000803415435731699,-0.0011150158807737313,0.000803415435731699,0.000803415435731699,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,171,172,68.4,,0.011240824899100587,-0.01106878031858107,-0.007719754759353773,,0.008192771900857515,,-0.007719754759353773,,0.008192771900857515,,0.00017204458051951754,0.00047301714150374194,0.00047301714150374194,0.00017204458051951754,0.00047301714150374194,0.00047301714150374194,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,172,173,68.8,,0.02181607184174503,-0.021007907332522644,-0.014982416854851141,,0.015549409052846177,,-0.014982416854851141,,0.015549409052846177,,0.0008081645092223866,0.0005669921979950358,0.0005669921979950358,0.0008081645092223865,0.0005669921979950358,0.0005669921979950358,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,173,174,69.2,,0.030567890357357054,-0.028156414234921837,-0.02099282029457577,,0.02084051473905694,,-0.02099282029457577,,0.02084051473905694,,0.0024114761224352174,-0.00015230555551882727,-0.00015230555551882727,0.0024114761224352174,-0.00015230555551882727,-0.00015230555551882727,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,174,175,69.60000000000001,,0.03663230497083081,-0.03433955427565048,-0.02515762083148338,,0.025417085465617578,,-0.02515762083148338,,0.025417085465617578,,0.002292750695180326,0.00025946463413419746,0.00025946463413419746,0.002292750695180326,0.00025946463413419746,0.00025946463413419746,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,175,176,70.0,,0.03959657229127768,-0.03609591484609727,-0.02719336259958507,,0.026717089722199945,,-0.02719336259958507,,0.026717089722199945,,0.0035006574451804107,-0.00047627287738512616,-0.00047627287738512616,0.0035006574451804107,-0.00047627287738512616,-0.00047627287738512616,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,176,177,70.4,,0.03895268409570285,-0.03640346937185191,-0.02675116560720258,,0.026944732154704845,,-0.02675116560720258,,0.026944732154704845,,0.0025492147238509386,0.00019356654750226493,0.00019356654750226493,0.0025492147238509386,0.00019356654750226493,0.00019356654750226493,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,177,178,70.8,,0.034866928550863104,-0.03159223266203788,-0.02394523000230259,,0.02338360222077988,,-0.02394523000230259,,0.02338360222077988,,0.003274695888825223,-0.0005616277815227097,-0.0005616277815227097,0.003274695888825223,-0.0005616277815227097,-0.0005616277815227097,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,178,179,71.2,,0.027534726149404824,-0.025356114862458902,-0.018909762864145172,,0.018767818981043714,,-0.018909762864145172,,0.018767818981043714,,0.0021786112869459223,-0.00014194388310145856,-0.00014194388310145856,0.0021786112869459223,-0.00014194388310145856,-0.00014194388310145856,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,179,180,71.60000000000001,,0.01785790312561892,-0.015392848842039215,-0.01226410284685653,,0.01139331487639212,,-0.01226410284685653,,0.01139331487639212,,0.0024650542835797044,-0.0008707879704644098,-0.0008707879704644098,0.0024650542835797044,-0.0008707879704644099,-0.0008707879704644099,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1.5L,sr_closed_loop_400,180,181,72.0,,0.006669388826290925,-0.005220545052760128,-0.0045802729422339625,,0.003864087422858597,,-0.0045802729422339625,,0.003864087422858597,,0.0014488437735307967,-0.0007161855193753655,-0.0007161855193753655,0.0014488437735307967,-0.0007161855193753655,-0.0007161855193753655,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,181,182,72.4,,-0.004905713564039397,0.005512970452449319,0.003369050401011909,,-0.0040805317400024535,,0.003369050401011909,,-0.0040805317400024535,,0.0006072568884099225,-0.0007114813389905443,-0.0007114813389905443,0.0006072568884099225,-0.0007114813389905443,-0.0007114813389905443,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,182,183,72.8,,-0.01599683658411598,0.015588606495927549,0.010985995819996701,,-0.01153820869124739,,0.010985995819996701,,-0.01153820869124739,,-0.000408230088188433,-0.0005522128712506895,-0.0005522128712506895,-0.00040823008818843305,-0.0005522128712506895,-0.0005522128712506895,-5.421010862427522e-20,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,183,184,73.2,,-0.02568641829077325,0.024118536390321323,0.017640417996975882,,-0.01785180133141936,,0.017640417996975882,,-0.01785180133141936,,-0.001567881900451925,-0.00021138333444347887,-0.00021138333444347887,-0.0015678819004519252,-0.00021138333444347884,-0.00021138333444347884,-2.168404344971009e-19,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_1.5L,sr_closed_loop_400,184,185,73.60000000000001,,-0.03317257546554598,0.031175716508643907,0.022781615195399126,,-0.023075309731493507,,0.022781615195399126,,-0.023075309731493507,,-0.001996858956902072,-0.0002936945360943813,-0.0002936945360943813,-0.001996858956902072,-0.0002936945360943813,-0.0002936945360943813,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,185,186,74.0,,-0.03783736256803113,0.03492118115824892,0.025985206814254706,,-0.025847587855527394,,0.025985206814254706,,-0.025847587855527394,,-0.002916181409782205,0.0001376189587273119,0.0001376189587273119,-0.002916181409782205,0.0001376189587273119,0.0001376189587273119,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,186,187,74.4,,-0.039150443680208986,0.036570726249501036,0.02688697908240592,,-0.027068530568621203,,0.02688697908240592,,-0.027068530568621203,,-0.0025797174307079507,-0.00018155148621528186,-0.00018155148621528186,-0.0025797174307079507,-0.00018155148621528186,-0.00018155148621528186,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,187,188,74.8,,-0.036989548091229,0.03404630740619354,0.02540296130281845,,-0.025200033121732118,,0.02540296130281845,,-0.025200033121732118,,-0.0029432406850354587,0.00020292818108633148,0.00020292818108633148,-0.0029432406850354587,0.00020292818108633146,0.00020292818108633146,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1.5L,sr_closed_loop_400,188,189,75.2,,-0.031451641790913525,0.029068365846414312,0.021599745889140376,,-0.021515513367861155,,0.021599745889140376,,-0.021515513367861155,,-0.002383275944499212,8.423252127922123e-05,8.423252127922123e-05,-0.002383275944499212,8.423252127922123e-05,8.423252127922123e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,189,190,75.60000000000001,,-0.023114267823906298,0.020767510542043566,0.015873966603363394,,-0.015371474717408413,,0.015873966603363394,,-0.015371474717408413,,-0.0023467572818627325,0.0005024918859549803,0.0005024918859549803,-0.0023467572818627325,0.0005024918859549803,0.0005024918859549803,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,190,191,76.0,,-0.012794619828118182,0.010877401333260484,0.008786839773666474,,-0.00805111904225691,,0.008786839773666474,,-0.00805111904225691,,-0.0019172184948576983,0.0007357207314095636,0.0007357207314095636,-0.0019172184948576983,0.0007357207314095636,0.0007357207314095636,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,191,192,76.4,,-0.0014972314349545465,0.0004997039323645492,0.001028239439684649,,-0.0003698655333281649,,0.001028239439684649,,-0.0003698655333281649,,-0.0009975275025899972,0.0006583739063564841,0.0006583739063564841,-0.0009975275025899972,0.0006583739063564841,0.0006583739063564841,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,192,193,76.80000000000001,,0.009806748944359293,-0.010033663632459245,-0.006734888010137287,,0.007426610259187607,,-0.006734888010137287,,0.007426610259187607,,-0.00022691468809995195,0.00069172224905032,0.00069172224905032,-0.00022691468809995195,0.00069172224905032,0.00069172224905032,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,193,194,77.2,,0.02025483434771914,-0.019179005818059418,-0.013910220580718958,,0.014195712213097993,,-0.013910220580718958,,0.014195712213097993,,0.0010758285296597232,0.0002854916323790351,0.0002854916323790351,0.0010758285296597232,0.0002854916323790351,0.0002854916323790351,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,194,195,77.60000000000001,,0.028926273161241575,-0.027505002791436223,-0.019865422414393194,,0.020358359956282275,,-0.019865422414393194,,0.020358359956282275,,0.0014212703698053518,0.0004929375418890811,0.0004929375418890811,0.0014212703698053518,0.0004929375418890811,0.0004929375418890811,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,195,196,78.0,,0.035190361161652174,-0.03256784583347438,-0.02416735075045773,,0.024105721184838974,,-0.02416735075045773,,0.024105721184838974,,0.0026225153281777963,-6.162956561875724e-05,-6.162956561875724e-05,0.0026225153281777963,-6.162956561875724e-05,-6.162956561875724e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,196,197,78.4,,0.038361531789329655,-0.03607768666665658,-0.026345185541540982,,0.026703597782525727,,-0.026345185541540982,,0.026703597782525727,,0.0022838451226730727,0.000358412240984745,0.000358412240984745,0.0022838451226730727,0.000358412240984745,0.000358412240984745,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,197,198,78.80000000000001,,0.03819099072828243,-0.03522704580333848,-0.026228064673677456,,0.026073979490163855,,-0.026228064673677456,,0.026073979490163855,,0.002963944924943951,-0.00015408518351360187,-0.00015408518351360187,0.002963944924943951,-0.00015408518351360187,-0.00015408518351360187,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,198,199,79.2,,0.03453775453278191,-0.03227143700952855,-0.023719166282286704,,0.023886328459164125,,-0.023719166282286704,,0.023886328459164125,,0.002266317523253361,0.0001671621768774209,0.0001671621768774209,0.002266317523253361,0.0001671621768774209,0.0001671621768774209,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,199,200,79.60000000000001,,0.027812440146571513,-0.025274698289660412,-0.019100485873409217,,0.01870755692951778,,-0.019100485873409217,,0.01870755692951778,,0.0025377418569111007,-0.00039292894389143795,-0.00039292894389143795,0.0025377418569111007,-0.00039292894389143795,-0.00039292894389143795,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,200,201,80.0,,0.018625975834475023,-0.01662102782238857,-0.012791584860226924,,0.012302375310317139,,-0.012791584860226924,,0.012302375310317139,,0.002004948012086453,-0.0004892095499097852,-0.0004892095499097852,0.002004948012086453,-0.0004892095499097852,-0.0004892095499097852,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,201,202,80.4,,0.007917825945253877,-0.006350854124979936,-0.0054376502679531185,,0.004700707550789176,,-0.0054376502679531185,,0.004700707550789176,,0.0015669718202739411,-0.0007369427171639428,-0.0007369427171639428,0.0015669718202739411,-0.0007369427171639428,-0.0007369427171639428,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,202,203,80.80000000000001,,-0.0033478783854458713,0.004019155844476586,0.002299190702797204,,-0.0029748559570306967,,0.002299190702797204,,-0.0029748559570306967,,0.0006712774590307146,-0.0006756652542334925,-0.0006756652542334925,0.0006712774590307146,-0.0006756652542334925,-0.0006756652542334925,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,203,204,81.2,,-0.014284621342778955,0.01382767855357208,0.009810113989526486,,-0.010234823805981716,,0.009810113989526486,,-0.010234823805981716,,-0.0004569427892068753,-0.00042470981645523036,-0.00042470981645523036,-0.0004569427892068753,-0.00042470981645523036,-0.00042470981645523036,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,204,205,81.60000000000001,,-0.023940392539827108,0.023035349171036043,0.016441316443325738,,-0.017050059354606323,,0.016441316443325738,,-0.017050059354606323,,-0.0009050433687910649,-0.0006087429112805846,-0.0006087429112805846,-0.0009050433687910648,-0.0006087429112805846,-0.0006087429112805846,1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,205,206,82.0,,-0.0316226081413898,0.029427555614713136,0.021717158828993586,,-0.021781374624123884,,0.021717158828993586,,-0.021781374624123884,,-0.0021950525266766635,-6.421579513029782e-05,-6.421579513029782e-05,-0.0021950525266766635,-6.421579513029782e-05,-6.421579513029782e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,206,207,82.4,,-0.03654341948016031,0.034588770365556104,0.0250965777856393,,-0.02560154757615318,,0.0250965777856393,,-0.02560154757615318,,-0.001954649114604204,-0.000504969790513881,-0.000504969790513881,-0.001954649114604204,-0.000504969790513881,-0.000504969790513881,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,207,208,82.80000000000001,,-0.03833410062115623,0.03551356694774839,0.026326346898206326,,-0.02628605365853293,,0.026326346898206326,,-0.02628605365853293,,-0.0028205336734078365,4.0293239673395986e-05,4.0293239673395986e-05,-0.0028205336734078365,4.0293239673395986e-05,4.0293239673395986e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,208,209,83.2,,-0.036641661338269814,0.034497182588799004,0.025164046415256443,,-0.025533757111234658,,0.025164046415256443,,-0.025533757111234658,,-0.00214447874947081,-0.0003697106959782148,-0.0003697106959782148,-0.00214447874947081,-0.0003697106959782148,-0.0003697106959782148,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,209,210,83.60000000000001,,-0.031711706276774825,0.029139789591546613,0.02177834791083251,,-0.021568379034658393,,0.02177834791083251,,-0.021568379034658393,,-0.0025719166852282115,0.00020996887617411725,0.00020996887617411725,-0.0025719166852282115,0.00020996887617411727,0.00020996887617411727,0.0,2.710505431213761e-20,2.710505431213761e-20 +illusion,illusion_1.5L,sr_closed_loop_400,210,211,84.0,,-0.023916151042371516,0.0219287082857646,0.016424668339913715,,-0.016230957693154777,,0.016424668339913715,,-0.016230957693154777,,-0.001987442756606915,0.0001937106467589378,0.0001937106467589378,-0.001987442756606915,0.00019371064675893776,0.00019371064675893776,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1.5L,sr_closed_loop_400,211,212,84.4,,-0.01410429862486368,0.012166558718586745,0.009686275465900214,,-0.00900531382237681,,0.009686275465900214,,-0.00900531382237681,,-0.0019377399062769345,0.0006809616435234037,0.0006809616435234037,-0.0019377399062769345,0.0006809616435234037,0.0006809616435234037,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,212,213,84.80000000000001,,-0.003158837234235164,0.0020182568676873785,0.0021693647033823975,,-0.0014938518679013346,,0.0021693647033823975,,-0.0014938518679013346,,-0.0011405803665477856,0.0006755128354810629,0.0006755128354810629,-0.0011405803665477856,0.0006755128354810629,0.0006755128354810629,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,213,214,85.2,,0.007968648032024808,-0.008050199999432026,-0.005472552870720428,,0.005958511277065854,,-0.005472552870720428,,0.005958511277065854,,-8.155196740721772e-05,0.00048595840634542593,0.00048595840634542593,-8.155196740721772e-05,0.0004859584063454259,0.0004859584063454259,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,214,215,85.60000000000001,,0.01836314696732493,-0.017902047493489868,-0.012611084370601839,,0.013250546803812806,,-0.012611084370601839,,0.013250546803812806,,0.000461099473835061,0.0006394624332109675,0.0006394624332109675,0.00046109947383506106,0.0006394624332109675,0.0006394624332109675,5.421010862427522e-20,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,215,216,86.0,,0.027217885524765957,-0.025579280503089687,-0.01869216923183014,,0.018932999347549637,,-0.01869216923183014,,0.018932999347549637,,0.0016386050216762697,0.0002408301157194974,0.0002408301157194974,0.00163860502167627,0.0002408301157194974,0.0002408301157194974,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,216,217,86.4,,0.03374926793133163,-0.03197493054803319,-0.02317766481341145,,0.023666863465167994,,-0.02317766481341145,,0.023666863465167994,,0.0017743373832984424,0.0004891986517565443,0.0004891986517565443,0.0017743373832984424,0.0004891986517565443,0.0004891986517565443,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,217,218,86.80000000000001,,0.0374086708235533,-0.034901668669502776,-0.025690798248652627,,0.02583314530947316,,-0.025690798248652627,,0.02583314530947316,,0.0025070021540505236,0.00014234706082053364,0.00014234706082053364,0.0025070021540505236,0.00014234706082053364,0.00014234706082053364,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,218,219,87.2,,0.03775166674807846,-0.03557174015082126,-0.02592635430833326,,0.026329111680266203,,-0.02592635430833326,,0.026329111680266203,,0.0021799265972572007,0.0004027573719329429,0.0004027573719329429,0.0021799265972572007,0.0004027573719329429,0.0004027573719329429,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,219,220,87.60000000000001,,0.03472211750027312,-0.032297371044802015,-0.02384577948981498,,0.023905524037118424,,-0.02384577948981498,,0.023905524037118424,,0.0024247464554711037,5.974454730344261e-05,5.974454730344261e-05,0.0024247464554711037,5.974454730344261e-05,5.974454730344261e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,220,221,88.0,,0.0285747714481355,-0.026430011493376593,-0.01962402491491887,,0.019562684349131162,,-0.01962402491491887,,0.019562684349131162,,0.002144759954758907,-6.134056578770836e-05,-6.134056578770836e-05,0.002144759954758907,-6.134056578770836e-05,-6.134056578770836e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,221,222,88.4,,0.019932890249931726,-0.017920865253518152,-0.013689122084527713,,0.013264475132965569,,-0.013689122084527713,,0.013264475132965569,,0.0020120249964135743,-0.00042464695156214406,-0.00042464695156214406,0.0020120249964135743,-0.00042464695156214406,-0.00042464695156214406,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,222,223,88.80000000000001,,0.009653432105188403,-0.007945443358180973,-0.006629596057855988,,0.005880973622313677,,-0.006629596057855988,,0.005880973622313677,,0.0017079887470074304,-0.0007486224355423106,-0.0007486224355423106,0.0017079887470074304,-0.0007486224355423106,-0.0007486224355423106,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,223,224,89.2,,-0.0013864435386882039,0.0018792894138414998,0.0009521546863718096,,-0.0013909924183293711,,0.0009521546863718096,,-0.0013909924183293711,,0.000492845875153296,-0.0004388377319575615,-0.0004388377319575615,0.000492845875153296,-0.00043883773195756143,-0.00043883773195756143,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,224,225,89.60000000000001,,-0.01221516298104374,0.012340137627568463,0.008388891687721202,,-0.009133791610096535,,0.008388891687721202,,-0.009133791610096535,,0.0001249746465247243,-0.0007448999223753326,-0.0007448999223753326,0.0001249746465247243,-0.0007448999223753326,-0.0007448999223753326,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,225,226,90.0,,-0.022035521187132485,0.020821932210039956,0.015133126001528396,,-0.015411755967873754,,0.015133126001528396,,-0.015411755967873754,,-0.00121358897709253,-0.0002786299663453586,-0.0002786299663453586,-0.00121358897709253,-0.0002786299663453586,-0.0002786299663453586,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,226,227,90.4,,-0.02993888729179882,0.02864014257530169,0.02056084582183224,,-0.021198555628897324,,0.02056084582183224,,-0.021198555628897324,,-0.00129874471649713,-0.0006377098070650851,-0.0006377098070650851,-0.00129874471649713,-0.0006377098070650851,-0.0006377098070650851,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,227,228,90.80000000000001,,-0.03537047123485293,0.0330588951124244,0.02429104323808916,,-0.024469180809000513,,0.02429104323808916,,-0.024469180809000513,,-0.0023115761224285283,-0.00017813757091135127,-0.00017813757091135127,-0.0023115761224285283,-0.00017813757091135127,-0.00017813757091135127,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,228,229,91.2,,-0.03765874100783203,0.03567296024736934,0.025862536578587173,,-0.026404031693034822,,0.025862536578587173,,-0.026404031693034822,,-0.0019857807604626923,-0.0005414951144476488,-0.0005414951144476488,-0.0019857807604626923,-0.0005414951144476488,-0.0005414951144476488,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,229,230,91.60000000000001,,-0.03666356374386565,0.03421234756976381,0.0251790881227252,,-0.0253229309611832,,0.0251790881227252,,-0.0253229309611832,,-0.002451216174101843,-0.00014384283845799914,-0.00014384283845799914,-0.002451216174101843,-0.00014384283845799914,-0.00014384283845799914,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,230,231,92.0,,-0.0323373070269007,0.030310491975186146,0.022207985807658565,,-0.022434897053527015,,0.022207985807658565,,-0.022434897053527015,,-0.002026815051714554,-0.00022691124586845038,-0.00022691124586845038,-0.002026815051714554,-0.00022691124586845038,-0.00022691124586845038,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,231,232,92.4,,-0.025172030726342765,0.02297791576016544,0.01728715692545235,,-0.017007548904384343,,0.01728715692545235,,-0.017007548904384343,,-0.002194114966177326,0.0002796080210680091,0.0002796080210680091,-0.002194114966177326,0.0002796080210680091,0.0002796080210680091,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,232,233,92.80000000000001,,-0.01583862891651107,0.013987431422245648,0.010877345039834029,,-0.010353067982474503,,0.010877345039834029,,-0.010353067982474503,,-0.0018511974942654209,0.0005242770573595252,0.0005242770573595252,-0.0018511974942654209,0.0005242770573595252,0.0005242770573595252,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,233,234,93.2,,-0.005231697911402743,0.004098979235336938,0.0035929235811051584,,-0.0030339387841217757,,0.0035929235811051584,,-0.0030339387841217757,,-0.0011327186760658045,0.0005589847969833827,0.0005589847969833827,-0.0011327186760658045,0.0005589847969833827,0.0005589847969833827,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,234,235,93.60000000000001,,0.005746085475833228,-0.006190368505273535,-0.003946184652628687,,0.004581921014442879,,-0.003946184652628687,,0.004581921014442879,,-0.00044428302944030714,0.0006357363618141919,0.0006357363618141919,-0.00044428302944030714,0.0006357363618141919,0.0006357363618141919,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,235,236,94.0,,0.016226705520515052,-0.015620643816869737,-0.01114386073042123,,0.011561921734169861,,-0.01114386073042123,,0.011561921734169861,,0.0006060617036453154,0.0004180610037486307,0.0004180610037486307,0.0006060617036453154,0.0004180610037486307,0.0004180610037486307,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,236,237,94.4,,0.025297491107911175,-0.02431506951167041,-0.01737331816240931,,0.017997269123518702,,-0.01737331816240931,,0.017997269123518702,,0.0009824215962407658,0.0006239509611093916,0.0006239509611093916,0.0009824215962407658,0.0006239509611093916,0.0006239509611093916,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,237,238,94.80000000000001,,0.03227032394182604,-0.030288040971727933,-0.02216198446928324,,0.022418279508957112,,-0.02216198446928324,,0.022418279508957112,,0.0019822829700981044,0.00025629503967387196,0.00025629503967387196,0.0019822829700981044,0.00025629503967387196,0.00025629503967387196,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,238,239,95.2,,0.036460062752067396,-0.03461072003775034,-0.025039331675661115,,0.02561779405068878,,-0.025039331675661115,,0.02561779405068878,,0.0018493427143170538,0.0005784623750276635,0.0005784623750276635,0.0018493427143170538,0.0005784623750276635,0.0005784623750276635,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,239,240,95.60000000000001,,0.03749968276136903,-0.035119629477685106,-0.025753301654445133,,0.025994473218544298,,-0.025753301654445133,,0.025994473218544298,,0.0023800532836839236,0.00024117156409916504,0.00024117156409916504,0.0023800532836839236,0.00024117156409916504,0.00024117156409916504,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,240,241,96.0,,0.03514230345617004,-0.03314817338560589,-0.02413434661562337,,0.0245352618501655,,-0.02413434661562337,,0.0245352618501655,,0.0019941300705641485,0.00040091523454213046,0.00040091523454213046,0.0019941300705641485,0.00040091523454213046,0.00040091523454213046,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,241,242,96.4,,0.029667339991353292,-0.02748868042185671,-0.02037435785641862,,0.02034627863864857,,-0.02037435785641862,,0.02034627863864857,,0.0021786595694965813,-2.807921777004882e-05,-2.807921777004882e-05,0.0021786595694965813,-2.8079217770048823e-05,-2.8079217770048823e-05,0.0,-3.3881317890172014e-21,-3.3881317890172014e-21 +illusion,illusion_1.5L,sr_closed_loop_400,242,243,96.80000000000001,,0.021591306378494504,-0.019601226257520633,-0.014828056808302827,,0.01450822684007805,,-0.014828056808302827,,0.01450822684007805,,0.0019900801209738715,-0.00031982996822477704,-0.00031982996822477704,0.0019900801209738715,-0.00031982996822477704,-0.00031982996822477704,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,243,244,97.2,,0.011712258231197483,-0.010127701736180716,-0.008043516559919157,,0.007496214381015364,,-0.008043516559919157,,0.007496214381015364,,0.0015845564950167663,-0.0005473021789037923,-0.0005473021789037923,0.0015845564950167663,-0.0005473021789037923,-0.0005473021789037923,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,244,245,97.60000000000001,,0.0009254297976029238,-1.4092628334619457e-05,-0.0006355486495536987,,1.0430931512416129e-05,,-0.0006355486495536987,,1.0430931512416129e-05,,0.0009113371692683044,-0.0006251177180412826,-0.0006251177180412826,0.0009113371692683043,-0.0006251177180412826,-0.0006251177180412826,-1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,245,246,98.0,,-0.009912008078048044,0.009794187826942637,0.006807175827584227,,-0.007249357608588142,,0.006807175827584227,,-0.007249357608588142,,-0.00011782025110540668,-0.000442181781003915,-0.000442181781003915,-0.00011782025110540668,-0.00044218178100391506,-0.00044218178100391506,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,246,247,98.4,,-0.019870585348576567,0.019353089813595476,0.013646333538038919,,-0.01432456385040284,,0.013646333538038919,,-0.01432456385040284,,-0.0005174955349810904,-0.0006782303123639213,-0.0006782303123639213,-0.0005174955349810904,-0.0006782303123639213,-0.0006782303123639213,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,247,248,98.80000000000001,,-0.02817542467426181,0.0265924447005495,0.019349769316605026,,-0.019682912430020832,,0.019349769316605026,,-0.019682912430020832,,-0.0015829799737123104,-0.00033314311341580555,-0.00033314311341580555,-0.0015829799737123102,-0.00033314311341580555,-0.00033314311341580555,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,248,249,99.2,,-0.03408141897541613,0.03242390555371302,0.023405773037355124,,-0.023999181001956242,,0.023405773037355124,,-0.023999181001956242,,-0.0016575134217031093,-0.0005934079646011184,-0.0005934079646011184,-0.0016575134217031095,-0.0005934079646011184,-0.0005934079646011184,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,249,250,99.60000000000001,,-0.03706971514860407,0.034873684245689006,0.025458016872873995,,-0.025812432096771826,,0.025458016872873995,,-0.025812432096771826,,-0.0021960309029150638,-0.0003544152238978311,-0.0003544152238978311,-0.0021960309029150638,-0.0003544152238978311,-0.0003544152238978311,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,250,251,100.0,,-0.03676903552226893,0.03476083777016517,0.02525152197616698,,-0.025728906594668356,,0.02525152197616698,,-0.025728906594668356,,-0.0020081977521037575,-0.00047738461850137595,-0.00047738461850137595,-0.0020081977521037575,-0.0004773846185013759,-0.0004773846185013759,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,251,252,100.4,,-0.0331849088589883,0.031112800373837707,0.02279008528309998,,-0.02302874113707615,,0.02279008528309998,,-0.02302874113707615,,-0.0020721084851505964,-0.00023865585397617184,-0.00023865585397617184,-0.0020721084851505964,-0.00023865585397617184,-0.00023865585397617184,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,252,253,100.80000000000001,,-0.026654164386566197,0.02456781369687569,0.0183050278095032,,-0.01818434262204852,,0.0183050278095032,,-0.01818434262204852,,-0.002086350689690507,0.0001206851874546791,0.0001206851874546791,-0.002086350689690507,0.0001206851874546791,0.0001206851874546791,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,253,254,101.2,,-0.017816437406286988,0.016083991257606102,0.01223562582786228,,-0.011904877306829176,,0.01223562582786228,,-0.011904877306829176,,-0.0017324461486808856,0.0003307485210331043,0.0003307485210331043,-0.0017324461486808854,0.0003307485210331043,0.0003307485210331043,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,254,255,101.60000000000001,,-0.0075539908387054835,0.006056426686113917,0.005187782680777939,,-0.004482781385615073,,0.005187782680777939,,-0.004482781385615073,,-0.0014975641525915668,0.0007050012951628666,0.0007050012951628666,-0.0014975641525915668,0.0007050012951628666,0.0007050012951628666,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,255,256,102.0,,0.0033257633351355077,-0.0035556248639235415,-0.0022840029593336046,,0.002631764533825115,,-0.0022840029593336046,,0.002631764533825115,,-0.0002298615287880338,0.0003477615744915106,0.0003477615744915106,-0.00022986152878803383,0.0003477615744915106,0.0003477615744915106,-2.710505431213761e-20,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,256,257,102.4,,0.01384742380972022,-0.013879290325551472,-0.009509863984130711,,0.010273025257546928,,-0.009509863984130711,,0.010273025257546928,,-3.186651583125116e-05,0.0007631612734162168,0.0007631612734162168,-3.186651583125116e-05,0.0007631612734162167,0.0007631612734162167,0.0,-1.0842021724855044e-19,-1.0842021724855044e-19 +illusion,illusion_1.5L,sr_closed_loop_400,257,258,102.80000000000001,,0.023248446638770143,-0.022008247213379666,-0.01596611531610889,,0.016289829969271336,,-0.01596611531610889,,0.016289829969271336,,0.0012401994253904772,0.000323714653162447,0.000323714653162447,0.0012401994253904772,0.000323714653162447,0.000323714653162447,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,258,259,103.2,,0.030643379231012624,-0.029332201281718085,-0.021044663072744784,,0.021710796269734153,,-0.021044663072744784,,0.021710796269734153,,0.001311177949294539,0.0006661331969893686,0.0006661331969893686,0.001311177949294539,0.0006661331969893686,0.0006661331969893686,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,259,260,103.60000000000001,,0.0354852993806952,-0.033388763573538864,-0.024369902675304003,,0.02471333933247043,,-0.024369902675304003,,0.02471333933247043,,0.0020965358071563384,0.00034343665716642796,0.00034343665716642796,0.0020965358071563384,0.00034343665716642796,0.00034343665716642796,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,260,261,104.0,,0.03720346867403886,-0.03533457478770286,-0.025549873513629806,,0.026153569148307975,,-0.025549873513629806,,0.026153569148307975,,0.001868893886336001,0.000603695634678169,0.000603695634678169,0.0018688938863360013,0.000603695634678169,0.000603695634678169,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,261,262,104.4,,0.035648397876734135,-0.0335117943965376,-0.024481912283348048,,0.024804402976394357,,-0.024481912283348048,,0.024804402976394357,,0.002136603480196536,0.0003224906930463095,0.0003224906930463095,0.002136603480196536,0.0003224906930463095,0.0003224906930463095,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,262,263,104.80000000000001,,0.030883242468994265,-0.02891762285815341,-0.0212093916749269,,0.021403938028670254,,-0.0212093916749269,,0.021403938028670254,,0.0019656196108408554,0.00019454635374335436,0.00019454635374335436,0.0019656196108408554,0.00019454635374335436,0.00019454635374335436,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,263,264,105.2,,0.023415798029099533,-0.021498051586494257,-0.01608104564404978,,0.015912198805260395,,-0.01608104564404978,,0.015912198805260395,,0.0019177464426052768,-0.00016884683878938544,-0.00016884683878938544,0.0019177464426052766,-0.00016884683878938544,-0.00016884683878938544,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,264,265,105.60000000000001,,0.013969269231141746,-0.01217526160401192,-0.00959354260917535,,0.009011755431399267,,-0.00959354260917535,,0.009011755431399267,,0.0017940076271298257,-0.0005817871777760841,-0.0005817871777760841,0.0017940076271298257,-0.0005817871777760841,-0.0005817871777760841,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,265,266,106.0,,0.0034069936160831906,-0.0025391259686179655,-0.0023397887093633643,,0.00187938321022687,,-0.0023397887093633643,,0.00187938321022687,,0.0008678676474652251,-0.0004604054991364942,-0.0004604054991364942,0.0008678676474652252,-0.0004604054991364942,-0.0004604054991364942,1.0842021724855044e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,266,267,106.4,,-0.00737770837036614,0.007702671815956158,0.005066718841053671,,-0.005701281568426905,,0.005066718841053671,,-0.005701281568426905,,0.00032496344559001817,-0.0006345627273732345,-0.0006345627273732345,0.00032496344559001817,-0.0006345627273732345,-0.0006345627273732345,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,267,268,106.80000000000001,,-0.017546165974128596,0.016876789383403614,0.012050014078417715,,-0.012491682177929824,,0.012050014078417715,,-0.012491682177929824,,-0.0006693765907249821,-0.0004416680995121096,-0.0004416680995121096,-0.0006693765907249821,-0.00044166809951210964,-0.00044166809951210964,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,268,269,107.2,,-0.02621909330065269,0.02519266584924176,0.018006238164055846,,-0.01864683903165757,,0.018006238164055846,,-0.01864683903165757,,-0.0010264274514109294,-0.0006406008676017247,-0.0006406008676017247,-0.0010264274514109294,-0.0006406008676017247,-0.0006406008676017247,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,269,270,107.60000000000001,,-0.0327115617244607,0.03091144921494795,0.022465009158581014,,-0.02287970718127635,,0.022465009158581014,,-0.02287970718127635,,-0.001800112509512751,-0.00041469802269533673,-0.00041469802269533673,-0.001800112509512751,-0.00041469802269533673,-0.00041469802269533673,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,270,271,108.0,,-0.036384573878411826,0.03457994543319401,0.0249874888974921,,-0.025595015631729112,,0.0249874888974921,,-0.025595015631729112,,-0.0018046284452178166,-0.0006075267342370121,-0.0006075267342370121,-0.0018046284452178168,-0.0006075267342370121,-0.0006075267342370121,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,271,272,108.4,,-0.03687344407709959,0.034817287294959656,0.025323225649634552,,-0.02577068880257582,,0.025323225649634552,,-0.02577068880257582,,-0.0020561567821399326,-0.0004474631529412694,-0.0004474631529412694,-0.0020561567821399326,-0.00044746315294126934,-0.00044746315294126934,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,272,273,108.80000000000001,,-0.03407099938440452,0.0321221153986715,0.02339861727360785,,-0.023775805179958125,,0.02339861727360785,,-0.023775805179958125,,-0.0019488839857330215,-0.00037718790635027366,-0.00037718790635027366,-0.0019488839857330212,-0.00037718790635027366,-0.00037718790635027366,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,273,274,109.2,,-0.02823539048375722,0.026287004403271398,0.019390951467150554,,-0.01945683488462689,,0.019390951467150554,,-0.01945683488462689,,-0.0019483860804858227,-6.588341747633397e-05,-6.588341747633397e-05,-0.0019483860804858227,-6.588341747633397e-05,-6.588341747633397e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,274,275,109.60000000000001,,-0.01995500530024209,0.01802215482293801,0.013704309827991312,,-0.013339446567424333,,0.013704309827991312,,-0.013339446567424333,,-0.001932850477304078,0.00036486326056697944,0.00036486326056697944,-0.001932850477304078,0.00036486326056697944,0.00036486326056697944,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,275,276,110.0,,-0.010017054567022274,0.008673696491975661,0.006879317609036324,,-0.0064200042688293355,,0.006879317609036324,,-0.0064200042688293355,,-0.0013433580750466124,0.0004593133402069887,0.0004593133402069887,-0.0013433580750466124,0.0004593133402069887,0.0004593133402069887,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,276,277,110.4,,0.0006887562303391246,-0.001451433574420706,-0.00047301058729421646,,0.0010743066410409624,,-0.00047301058729421646,,0.0010743066410409624,,-0.0007626773440815813,0.000601296053746746,0.000601296053746746,-0.0007626773440815813,0.000601296053746746,0.000601296053746746,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,277,278,110.80000000000001,,0.011319290798759476,-0.011116918446971127,-0.007773642041450582,,0.008228402267915382,,-0.007773642041450582,,0.008228402267915382,,0.00020237235178834946,0.0004547602264647994,0.0004547602264647994,0.00020237235178834946,0.00045476022646479935,0.00045476022646479935,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,278,279,111.2,,0.020973998772235016,-0.020354760944887546,-0.014404114315275624,,0.015065970117593246,,-0.014404114315275624,,0.015065970117593246,,0.00061923782734747,0.0006618558023176214,0.0006618558023176214,0.00061923782734747,0.0006618558023176214,0.0006618558023176214,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,279,280,111.60000000000001,,0.028890336204487232,-0.027382914546319567,-0.019840742331264847,,0.020267993979613857,,-0.019840742331264847,,0.020267993979613857,,0.0015074216581676646,0.0004272516483490099,0.0004272516483490099,0.0015074216581676646,0.0004272516483490099,0.0004272516483490099,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,280,281,112.0,,0.03435317892057618,-0.03270940525914315,-0.02359240703876359,,0.024210499132502616,,-0.02359240703876359,,0.024210499132502616,,0.0016437736614330345,0.0006180920937390276,0.0006180920937390276,0.0016437736614330345,0.0006180920937390276,0.0006180920937390276,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,281,282,112.4,,0.036859834815370134,-0.03488019967447549,-0.025313879345964643,,0.025817254617442362,,-0.025313879345964643,,0.025817254617442362,,0.0019796351408946436,0.0005033752714777191,0.0005033752714777191,0.0019796351408946436,0.0005033752714777191,0.0005033752714777191,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,282,283,112.80000000000001,,0.03610537136824348,-0.034160960176383835,-0.024795743636264158,,0.02528489558777941,,-0.024795743636264158,,0.02528489558777941,,0.0019444111918596463,0.0004891519515152522,0.0004891519515152522,0.0019444111918596463,0.0004891519515152522,0.0004891519515152522,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,283,284,113.2,,0.032126150825379625,-0.030237040373255746,-0.022062972064780157,,0.022380530429287653,,-0.022062972064780157,,0.022380530429287653,,0.0018891104521238794,0.00031755836450749614,0.00031755836450749614,0.0018891104521238794,0.00031755836450749614,0.00031755836450749614,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,284,285,113.60000000000001,,0.02532747401265888,-0.023260721044757356,-0.017393909237682074,,0.017216872707218264,,-0.017393909237682074,,0.017216872707218264,,0.0020667529679015244,-0.00017703653046381024,-0.00017703653046381024,0.0020667529679015244,-0.00017703653046381024,-0.00017703653046381024,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,285,286,114.0,,0.01633621754849426,-0.014772166000802943,-0.011219069267765015,,0.01093390446307959,,-0.011219069267765015,,0.01093390446307959,,0.001564051547691318,-0.00028516480468542514,-0.00028516480468542514,0.0015640515476913182,-0.00028516480468542514,-0.00028516480468542514,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,286,287,114.4,,0.0060633513899011416,-0.004708813981525974,-0.004164070356933402,,0.00348531977000664,,-0.004164070356933402,,0.00348531977000664,,0.0013545374083751673,-0.0006787505869267621,-0.0006787505869267621,0.0013545374083751673,-0.0006787505869267621,-0.0006787505869267621,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,287,288,114.80000000000001,,-0.004713695386825371,0.004825890322236773,0.0032371798976693106,,-0.0035719760886635827,,0.0032371798976693106,,-0.0035719760886635827,,0.00011219493541140234,-0.0003347961909942721,-0.0003347961909942721,0.00011219493541140234,-0.0003347961909942721,-0.0003347961909942721,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,288,289,115.2,,-0.015025262883461626,0.014956611781283732,0.010318757359562223,,-0.011070425575981075,,0.010318757359562223,,-0.011070425575981075,,-6.865110217789405e-05,-0.0007516682164188521,-0.0007516682164188521,-6.865110217789405e-05,-0.0007516682164188521,-0.0007516682164188521,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,289,290,115.60000000000001,,-0.024124117573174748,0.02291648108740896,0.01656749154286949,,-0.016962076842764986,,0.01656749154286949,,-0.016962076842764986,,-0.0012076364857657867,-0.0003945852998954967,-0.0003945852998954967,-0.0012076364857657867,-0.00039458529989549665,-0.00039458529989549665,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,290,291,116.0,,-0.031155002414154313,0.029811832600307703,0.021396025676335365,,-0.02206580466963128,,0.021396025676335365,,-0.02206580466963128,,-0.0013431698138466099,-0.0006697789932959136,-0.0006697789932959136,-0.0013431698138466099,-0.0006697789932959136,-0.0006697789932959136,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,291,292,116.4,,-0.035571207845362385,0.03367608835008728,0.024428901217220293,,-0.02492600832471472,,0.024428901217220293,,-0.02492600832471472,,-0.0018951194952751063,-0.0004971071074944267,-0.0004971071074944267,-0.0018951194952751063,-0.0004971071074944267,-0.0004971071074944267,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,292,293,116.80000000000001,,-0.036856857789366815,0.03501318952752711,0.025311834842036852,,-0.025915689630137614,,0.025311834842036852,,-0.025915689630137614,,-0.0018436682618397024,-0.0006038547881007626,-0.0006038547881007626,-0.0018436682618397024,-0.0006038547881007626,-0.0006038547881007626,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,293,294,117.2,,-0.03489329649546392,0.032960149752228086,0.023963338465663033,,-0.02439609252022145,,0.023963338465663033,,-0.02439609252022145,,-0.0019331467432358307,-0.0004327540545584173,-0.0004327540545584173,-0.0019331467432358307,-0.0004327540545584173,-0.0004327540545584173,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,294,295,117.60000000000001,,-0.029818105093949908,0.027849849228178864,0.02047789737676181,,-0.020613604718192784,,0.02047789737676181,,-0.020613604718192784,,-0.0019682558657710437,-0.00013570734143097257,-0.00013570734143097257,-0.0019682558657710437,-0.00013570734143097257,-0.00013570734143097257,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,295,296,118.0,,-0.022133337755812943,0.020335702846275783,0.015200302559155856,,-0.015051863897188085,,0.015200302559155856,,-0.015051863897188085,,-0.0017976349095371602,0.00014843866196777127,0.00014843866196777127,-0.0017976349095371604,0.00014843866196777127,0.00014843866196777127,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,296,297,118.4,,-0.01260068784847345,0.010938710203789675,0.008653654946370295,,-0.008096497988923841,,0.008653654946370295,,-0.008096497988923841,,-0.0016619776446837754,0.0005571569574464533,0.0005571569574464533,-0.0016619776446837754,0.0005571569574464533,0.0005571569574464533,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,297,298,118.80000000000001,,-0.0020501076927136462,0.0013536637682500016,0.0014079330262746345,,-0.0010019404274480349,,0.0014079330262746345,,-0.0010019404274480349,,-0.0006964439244636447,0.0004059925988265996,0.0004059925988265996,-0.0006964439244636447,0.00040599259882659957,0.00040599259882659957,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,298,299,119.2,,0.008614875319459387,-0.008846845420210376,-0.005916356259046185,,0.006548163797980314,,-0.005916356259046185,,0.006548163797980314,,-0.0002319701007509889,0.000631807538934129,0.000631807538934129,-0.00023197010075098887,0.000631807538934129,0.000631807538934129,2.710505431213761e-20,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,299,300,119.60000000000001,,0.018565372090836047,-0.017871406201741557,-0.012749964601696868,,0.013227867058907206,,-0.012749964601696868,,0.013227867058907206,,0.0006939658890944903,0.00047790245721033783,0.00047790245721033783,0.0006939658890944903,0.0004779024572103379,0.0004779024572103379,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,300,301,120.0,,0.026950591118610884,-0.025840887173560735,-0.018508601986313367,,0.01912663258601171,,-0.018508601986313367,,0.01912663258601171,,0.0011097039450501493,0.0006180305996983416,0.0006180305996983416,0.0011097039450501493,0.0006180305996983416,0.0006180305996983416,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,301,302,120.4,,0.03308283939601739,-0.03142500770435687,-0.022719988005575675,,0.023259827433045485,,-0.022719988005575675,,0.023259827433045485,,0.001657831691660519,0.0005398394274698098,0.0005398394274698098,0.001657831691660519,0.0005398394274698098,0.0005398394274698098,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,302,303,120.80000000000001,,0.036355654197236735,-0.034572367257233706,-0.024967628002193546,,0.025589406498176873,,-0.024967628002193546,,0.025589406498176873,,0.0017832869400030288,0.0006217784959833272,0.0006217784959833272,0.0017832869400030288,0.0006217784959833272,0.0006217784959833272,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,303,304,121.2,,0.0364366718334699,-0.03456191628414276,-0.025023267716228464,,0.025581671008248288,,-0.025023267716228464,,0.025581671008248288,,0.0018747555493271381,0.000558403292019824,0.000558403292019824,0.0018747555493271381,0.000558403292019824,0.000558403292019824,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,304,305,121.60000000000001,,0.03329867378125796,-0.0313323402816193,-0.02286821454034061,,0.023191237847266573,,-0.02286821454034061,,0.023191237847266573,,0.0019663334996386644,0.0003230233069259625,0.0003230233069259625,0.0019663334996386644,0.0003230233069259625,0.0003230233069259625,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,305,306,122.0,,0.027196833698028205,-0.02536130091845552,-0.018677711668340754,,0.01877165754072441,,-0.018677711668340754,,0.01877165754072441,,0.001835532779572685,9.394587238365643e-05,9.394587238365643e-05,0.001835532779572685,9.394587238365643e-05,9.394587238365643e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,306,307,122.4,,0.01876270638591314,-0.016867733500683955,-0.012885486004910525,,0.012484979291130406,,-0.012885486004910525,,0.012484979291130406,,0.0018949728852291833,-0.00040050671378011847,-0.00040050671378011847,0.0018949728852291836,-0.0004005067137801184,-0.0004005067137801184,2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,307,308,122.80000000000001,,0.008767979513915752,-0.007570590743173314,-0.006021502175332642,,0.0056035192070297895,,-0.006021502175332642,,0.0056035192070297895,,0.0011973887707424384,-0.00041798296830285273,-0.00041798296830285273,0.0011973887707424384,-0.00041798296830285273,-0.00041798296830285273,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,308,309,123.2,,-0.0018936011828249164,0.0025295304976137205,0.0013004505340707,,-0.0018722809367191825,,0.0013004505340707,,-0.0018722809367191825,,0.0006359293147888041,-0.0005718304026484824,-0.0005718304026484824,0.0006359293147888041,-0.0005718304026484824,-0.0005718304026484824,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,309,310,123.60000000000001,,-0.012387617844521675,0.012162653216605222,0.008507326879538308,,-0.00900242308952531,,0.008507326879538308,,-0.00900242308952531,,-0.00022496462791645258,-0.0004950962099870022,-0.0004950962099870022,-0.00022496462791645258,-0.0004950962099870022,-0.0004950962099870022,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,310,311,124.0,,-0.021825640853898553,0.02109418512870102,0.014988988474619044,,-0.015613269232906984,,0.014988988474619044,,-0.015613269232906984,,-0.0007314557251975329,-0.0006242807582879407,-0.0006242807582879407,-0.0007314557251975329,-0.0006242807582879407,-0.0006242807582879407,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,311,312,124.4,,-0.029449379158967493,0.028021005974873964,0.020224670961705257,,-0.020740289695634413,,0.020224670961705257,,-0.020740289695634413,,-0.0014283731840935288,-0.000515618733929156,-0.000515618733929156,-0.0014283731840935288,-0.000515618733929156,-0.000515618733929156,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,312,313,124.80000000000001,,-0.034578369673255754,0.03294165870246171,0.023747059157301586,,-0.02438240601198992,,0.023747059157301586,,-0.02438240601198992,,-0.001636710970794042,-0.0006353468546883324,-0.0006353468546883324,-0.001636710970794042,-0.0006353468546883324,-0.0006353468546883324,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,313,314,125.2,,-0.03669716160876024,0.03491165774187859,0.025202161809910282,,-0.02584053891465104,,0.025202161809910282,,-0.02584053891465104,,-0.0017855038668816506,-0.0006383771047407567,-0.0006383771047407567,-0.0017855038668816506,-0.0006383771047407567,-0.0006383771047407567,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,314,315,125.60000000000001,,-0.03558694355423707,0.03365243377606649,0.024439707880838622,,-0.024908499934107407,,0.024439707880838622,,-0.024908499934107407,,-0.0019345097781705775,-0.00046879205326878434,-0.00046879205326878434,-0.0019345097781705775,-0.00046879205326878434,-0.00046879205326878434,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,315,316,126.0,,-0.03129917553060073,0.029487022515317388,0.021495038080838445,,-0.021825390201114216,,0.021495038080838445,,-0.021825390201114216,,-0.001812153015283341,-0.000330352120275771,-0.000330352120275771,-0.0018121530152833407,-0.000330352120275771,-0.000330352120275771,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,316,317,126.4,,-0.024292744831791273,0.0222893964149198,0.016683298086779434,,-0.016497927990194186,,0.016683298086779434,,-0.016497927990194186,,-0.0020033484168714734,0.00018537009658524742,0.00018537009658524742,-0.0020033484168714734,0.00018537009658524742,0.00018537009658524742,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,317,318,126.80000000000001,,-0.015185171708782719,0.013687813702681347,0.010428576427683635,,-0.010131300130625034,,0.010428576427683635,,-0.010131300130625034,,-0.0014973580061013719,0.00029727629705860077,0.00029727629705860077,-0.0014973580061013719,0.00029727629705860077,0.00029727629705860077,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,318,319,127.2,,-0.004886362895017828,0.003696622169565527,0.0033557611254812596,,-0.0027361264174755764,,0.0033557611254812596,,-0.0027361264174755764,,-0.001189740725452301,0.0006196347080056831,0.0006196347080056831,-0.001189740725452301,0.0006196347080056831,0.0006196347080056831,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,319,320,127.60000000000001,,0.005821361704774274,-0.005910720011646254,-0.003997881394802862,,0.004374933771515971,,-0.003997881394802862,,0.004374933771515971,,-8.935830687197954e-05,0.00037705237671310874,0.00037705237671310874,-8.935830687197954e-05,0.00037705237671310874,0.00037705237671310874,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,320,321,128.0,,0.01598790550610603,-0.01577953296875893,-0.010979862308213325,,0.011679526613974336,,-0.010979862308213325,,0.011679526613974336,,0.00020837253734709918,0.0006996643057610111,0.0006996643057610111,0.00020837253734709918,0.0006996643057610111,0.0006996643057610111,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,321,322,128.4,,0.02485327629927319,-0.02368916400035644,-0.01706824896918374,,0.01753399304990499,,-0.01706824896918374,,0.01753399304990499,,0.0011641122989167509,0.0004657440807212497,0.0004657440807212497,0.0011641122989167509,0.00046574408072124965,0.00046574408072124965,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,322,323,128.8,,0.03160623449837155,-0.03020884002024589,-0.021705914057390727,,0.02235965739241424,,-0.021705914057390727,,0.02235965739241424,,0.0013973944781256603,0.0006537433350235142,0.0006537433350235142,0.0013973944781256603,0.0006537433350235142,0.0006537433350235142,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,323,324,129.20000000000002,,0.035686461280633706,-0.03392530443999291,-0.024508052726424822,,0.02511047043525032,,-0.024508052726424822,,0.02511047043525032,,0.0017611568406407999,0.0006024177088254992,0.0006024177088254992,0.0017611568406407999,0.0006024177088254992,0.0006024177088254992,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,324,325,129.6,,0.03663613257569222,-0.03481150414779471,-0.025160249479390544,,0.025766408294314945,,-0.025160249479390544,,0.025766408294314945,,0.0018246284278975108,0.0006061588149244013,0.0006061588149244013,0.001824628427897511,0.0006061588149244013,0.0006061588149244013,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,325,326,130.0,,0.03433063858083677,-0.03253423598469107,-0.023576927223310302,,0.02408084420501115,,-0.023576927223310302,,0.02408084420501115,,0.0017964025961456978,0.0005039169817008492,0.0005039169817008492,0.0017964025961456978,0.0005039169817008492,0.0005039169817008492,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,326,327,130.4,,0.028994319469888848,-0.027011505063167015,-0.019912153932742732,,0.01999308806498691,,-0.019912153932742732,,0.01999308806498691,,0.0019828144067218327,8.093413224417867e-05,8.093413224417867e-05,0.0019828144067218327,8.093413224417867e-05,8.093413224417867e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,327,328,130.8,,0.02112795354554947,-0.019390383602228663,-0.014509844375541451,,0.014352167569583858,,-0.014509844375541451,,0.014352167569583858,,0.0017375699433208082,-0.00015767680595759302,-0.00015767680595759302,0.0017375699433208082,-0.00015767680595759302,-0.00015767680595759302,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,328,329,131.20000000000002,,0.011522366501128683,-0.009957121426556926,-0.00791310641652498,,0.007369956064624412,,-0.00791310641652498,,0.007369956064624412,,0.0015652450745717566,-0.0005431503519005686,-0.0005431503519005686,0.0015652450745717568,-0.0005431503519005686,-0.0005431503519005686,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,329,330,131.6,,0.0009739127925141064,-0.00037813174629127474,-0.0006688448563777436,,0.000279881527744917,,-0.0006688448563777436,,0.000279881527744917,,0.0005957810462228316,-0.0003889633286328266,-0.0003889633286328266,0.0005957810462228316,-0.00038896332863282655,-0.00038896332863282655,0.0,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,330,331,132.0,,-0.009611328451712904,0.009741642865307081,0.006600680930877212,,-0.0072104654386444715,,0.006600680930877212,,-0.0072104654386444715,,0.00013031441359417743,-0.0006097845077672592,-0.0006097845077672592,0.00013031441359417743,-0.0006097845077672592,-0.0006097845077672592,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,331,332,132.4,,-0.019397238214048967,0.01872284318661743,0.013321257413519954,,-0.013858074616042654,,0.013321257413519954,,-0.013858074616042654,,-0.0006743950274315375,-0.0005368172025227002,-0.0005368172025227002,-0.0006743950274315375,-0.0005368172025227002,-0.0005368172025227002,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,332,333,132.8,,-0.027553226239568303,0.02637675021010356,0.01892246799569645,,-0.019523261979868815,,0.01892246799569645,,-0.019523261979868815,,-0.0011764760294647424,-0.0006007939841723639,-0.0006007939841723639,-0.0011764760294647424,-0.0006007939841723639,-0.0006007939841723639,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,333,334,133.20000000000002,,-0.033393725968649625,0.03182840662849944,0.02293349263003512,,-0.02355841095132196,,0.02293349263003512,,-0.02355841095132196,,-0.0015653193401501883,-0.0006249183212868395,-0.0006249183212868395,-0.0015653193401501883,-0.0006249183212868395,-0.0006249183212868395,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,334,335,133.6,,-0.036353102460662465,0.034561277884780396,0.02496587557025544,,-0.025581198484609102,,0.02496587557025544,,-0.025581198484609102,,-0.0017918245758820686,-0.0006153229143536637,-0.0006153229143536637,-0.0017918245758820686,-0.0006153229143536637,-0.0006153229143536637,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,335,336,134.0,,-0.03611813005111485,0.03435923950775351,0.024804505795954696,,-0.02543165587100947,,0.024804505795954696,,-0.02543165587100947,,-0.0017588905433613342,-0.0006271500750547748,-0.0006271500750547748,-0.001758890543361334,-0.0006271500750547748,-0.0006271500750547748,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,336,337,134.4,,-0.032678601793709676,0.03077267058179583,0.02244237357938046,,-0.022776987490993994,,0.02244237357938046,,-0.022776987490993994,,-0.0019059312119138472,-0.0003346139116135356,-0.0003346139116135356,-0.0019059312119138472,-0.0003346139116135356,-0.0003346139116135356,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,337,338,134.8,,-0.026344341037506578,0.02457048934126207,0.018092253365017963,,-0.018186323052006882,,0.018092253365017963,,-0.018186323052006882,,-0.0017738516962445064,-9.406968698891932e-05,-9.406968698891932e-05,-0.0017738516962445066,-9.406968698891932e-05,-9.406968698891932e-05,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,338,339,135.20000000000002,,-0.017768379700804852,0.01592075066300432,0.01220262169302792,,-0.011784051622513473,,0.01220262169302792,,-0.011784051622513473,,-0.0018476290378005335,0.00041857007051444677,0.00041857007051444677,-0.0018476290378005337,0.0004185700705144468,0.0004185700705144468,-2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,339,340,135.6,,-0.00772580776803985,0.006586913085674007,0.00530577976461052,,-0.0048754311575874305,,0.00530577976461052,,-0.0048754311575874305,,-0.0011388946823658432,0.00043034860702308945,0.00043034860702308945,-0.0011388946823658432,0.00043034860702308945,0.00043034860702308945,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,340,341,136.0,,0.0029130199442468875,-0.003404252160409246,-0.002000547093344696,,0.0025197230987062964,,-0.002000547093344696,,0.0025197230987062964,,-0.0004912322161623587,0.0005191760053616002,0.0005191760053616002,-0.0004912322161623587,0.0005191760053616002,0.0005191760053616002,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,341,342,136.4,,0.013297949867393485,-0.013057477887557086,-0.009132506973458203,,0.009664744881932903,,-0.009132506973458203,,0.009664744881932903,,0.00024047197983639856,0.0005322379084746996,0.0005322379084746996,0.00024047197983639856,0.0005322379084746996,0.0005322379084746996,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,342,343,136.8,,0.02256862148644097,-0.021754746337165464,-0.015499238240598047,,0.01610219639125154,,-0.015499238240598047,,0.01610219639125154,,0.0008138751492755072,0.0006029581506534938,0.0006029581506534938,0.0008138751492755072,0.0006029581506534938,0.0006029581506534938,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,343,344,137.20000000000002,,0.02994781836980877,-0.028574361153945578,-0.020566979333615613,,0.02114986623720526,,-0.020566979333615613,,0.02114986623720526,,0.0013734572158631934,0.0005828869035896453,0.0005828869035896453,0.0013734572158631934,0.0005828869035896453,0.0005828869035896453,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,344,345,137.6,,0.034804411004793416,-0.03314131998068639,-0.02390229541981895,,0.02453018916992128,,-0.02390229541981895,,0.02453018916992128,,0.0016630910241070274,0.0006278937501023284,0.0006278937501023284,0.0016630910241070274,0.0006278937501023284,0.0006278937501023284,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,345,346,138.0,,0.03662146009039015,-0.034903471208878864,-0.025150172995746425,,0.025834479493866164,,-0.025150172995746425,,0.025834479493866164,,0.0017179888815112843,0.000684306498119739,0.000684306498119739,0.0017179888815112845,0.000684306498119739,0.000684306498119739,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,346,347,138.4,,0.0352131141461061,-0.03331820917812649,-0.024182976601905857,,0.024661117131687733,,-0.024182976601905857,,0.024661117131687733,,0.001894904967979616,0.0004781405297818765,0.0004781405297818765,0.001894904967979616,0.0004781405297818765,0.0004781405297818765,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,347,348,138.8,,0.030656775848027555,-0.028935526204977365,-0.02105386334041985,,0.02141718953719865,,-0.02105386334041985,,0.02141718953719865,,0.0017212496430501906,0.00036332619677879874,0.00036332619677879874,0.0017212496430501908,0.00036332619677879874,0.00036332619677879874,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,348,349,139.20000000000002,,0.02344663151270533,-0.021458247386250833,-0.016102220863301913,,0.015882736956357044,,-0.016102220863301913,,0.015882736956357044,,0.0019883841264544955,-0.00021948390694486938,-0.00021948390694486938,0.0019883841264544955,-0.00021948390694486938,-0.00021948390694486938,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,349,350,139.6,,0.014238902729156568,-0.012777885253874013,-0.00977871625063539,,0.009457798984824423,,-0.00977871625063539,,0.009457798984824423,,0.0014610174752825549,-0.0003209172658109674,-0.0003209172658109674,0.0014610174752825549,-0.0003209172658109674,-0.0003209172658109674,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,350,351,140.0,,0.003910111010643971,-0.0028706479310220794,-0.002685309873160251,,0.002124765604666671,,-0.002685309873160251,,0.002124765604666671,,0.0010394630796218916,-0.0005605442684935799,-0.0005605442684935799,0.0010394630796218916,-0.0005605442684935799,-0.0005605442684935799,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,351,352,140.4,,-0.006747854725949812,0.00684721056804091,0.004634160224330772,,-0.005068095375145313,,0.004634160224330772,,-0.005068095375145313,,9.9355842091098e-05,-0.0004339351508145413,-0.0004339351508145413,9.9355842091098e-05,-0.0004339351508145413,-0.0004339351508145413,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,352,353,140.8,,-0.016799995670868335,0.016469747827605206,0.011537573772516076,,-0.01219040249535916,,0.011537573772516076,,-0.01219040249535916,,-0.00033024784326312825,-0.0006528287228430834,-0.0006528287228430834,-0.00033024784326312825,-0.0006528287228430834,-0.0006528287228430834,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,353,354,141.20000000000002,,-0.025471221839676247,0.024360947894082215,0.01749262957019547,,-0.018031226895871385,,0.01749262957019547,,-0.018031226895871385,,-0.001110273945594032,-0.0005385973256759151,-0.0005385973256759151,-0.001110273945594032,-0.0005385973256759151,-0.0005385973256759151,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,354,355,141.6,,-0.031991546721086735,0.03055198718809753,0.021970531280044982,,-0.022613644407579264,,0.021970531280044982,,-0.022613644407579264,,-0.0014395595329892048,-0.0006431131275342825,-0.0006431131275342825,-0.0014395595329892048,-0.0006431131275342825,-0.0006431131275342825,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,355,356,142.0,,-0.03578236404688345,0.03409305701597046,0.0245739149600987,,-0.02523463574987475,,0.0245739149600987,,-0.02523463574987475,,-0.0016893070309129954,-0.0006607207897760502,-0.0006607207897760502,-0.0016893070309129954,-0.0006607207897760502,-0.0006607207897760502,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,356,357,142.4,,-0.036441987951332966,0.034628219690859864,0.02502691861609952,,-0.02563074675750416,,0.02502691861609952,,-0.02563074675750416,,-0.0018137682604731017,-0.0006038281414046387,-0.0006038281414046387,-0.001813768260473102,-0.0006038281414046387,-0.0006038281414046387,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,357,358,142.8,,-0.033867285747891746,0.03212776711067361,0.023258714790548928,,-0.023779988403940345,,0.023258714790548928,,-0.023779988403940345,,-0.0017395186372181348,-0.0005212736133914167,-0.0005212736133914167,-0.0017395186372181348,-0.0005212736133914167,-0.0005212736133914167,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,358,359,143.20000000000002,,-0.028301097700544744,0.026340076044380906,0.019436076589556827,,-0.01949611688657289,,0.019436076589556827,,-0.01949611688657289,,-0.001961021656163839,-6.004029701606184e-05,-6.004029701606184e-05,-0.001961021656163839,-6.004029701606184e-05,-6.004029701606184e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,359,360,143.6,,-0.020281414937034482,0.01856564673186109,0.013928475080074247,,-0.013741722618769731,,0.013928475080074247,,-0.013741722618769731,,-0.0017157682051733916,0.00018675246130451552,0.00018675246130451552,-0.0017157682051733916,0.00018675246130451552,0.00018675246130451552,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,360,361,144.0,,-0.010599063150670987,0.00910841735424553,0.007279018126919706,,-0.00674177132559731,,0.007279018126919706,,-0.00674177132559731,,-0.0014906457964254573,0.0005372468013223955,0.0005372468013223955,-0.0014906457964254573,0.0005372468013223955,0.0005372468013223955,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,361,362,144.4,,-5.2735889201637204e-05,-0.0004730259095253578,3.621692672089092e-05,,0.00035011927858314524,,3.621692672089092e-05,,0.00035011927858314524,,-0.000525761798726995,0.0003863362053040362,0.0003863362053040362,-0.000525761798726995,0.0003863362053040361,0.0003863362053040361,0.0,-5.421010862427522e-20,-5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,362,363,144.8,,0.010469987808955689,-0.010508872157819303,-0.007190374278050428,,0.007778345043107948,,-0.007190374278050428,,0.007778345043107948,,-3.8884348863614526e-05,0.0005879707650575192,0.0005879707650575192,-3.8884348863614526e-05,0.0005879707650575192,0.0005879707650575192,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,363,364,145.20000000000002,,0.02012235669057148,-0.01944391714405329,-0.013819240155932205,,0.014391791456280565,,-0.013819240155932205,,0.014391791456280565,,0.0006784395465181878,0.00057255130034836,0.00057255130034836,0.0006784395465181878,0.00057255130034836,0.00057255130034836,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,364,365,145.6,,0.028088240341307493,-0.026841035534609047,-0.019289894558719684,,0.019866911745345113,,-0.019289894558719684,,0.019866911745345113,,0.001247204806698446,0.0005770171866254295,0.0005770171866254295,0.001247204806698446,0.0005770171866254295,0.0005770171866254295,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,365,366,146.0,,0.03368462393811672,-0.032171076874474486,-0.02313326987097939,,0.023812044963533,,-0.02313326987097939,,0.023812044963533,,0.0015135470636422343,0.0006787750925536101,0.0006787750925536101,0.0015135470636422343,0.0006787750925536101,0.0006787750925536101,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,366,367,146.4,,0.0363871256149861,-0.03459053535202853,-0.024989241329430208,,0.025602853965037992,,-0.024989241329430208,,0.025602853965037992,,0.001796590262957573,0.0006136126356077846,0.0006136126356077846,0.0017965902629575729,0.0006136126356077846,0.0006136126356077846,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,367,368,146.8,,0.03586784722212159,-0.03415249199660659,-0.024632621430025304,,0.025278627700683128,,-0.024632621430025304,,0.025278627700683128,,0.0017153552255150042,0.0006460062706578236,0.0006460062706578236,0.0017153552255150045,0.0006460062706578236,0.0006460062706578236,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,368,369,147.20000000000002,,0.03217761084629413,-0.03028132275726164,-0.022098312775531995,,0.022413306892542367,,-0.022098312775531995,,0.022413306892542367,,0.0018962880890324857,0.0003149941170103726,0.0003149941170103726,0.001896288089032486,0.0003149941170103726,0.0003149941170103726,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,369,370,147.6,,0.025641550256008953,-0.023871834467316302,-0.017609604402064154,,0.017669200130156913,,-0.017609604402064154,,0.017669200130156913,,0.001769715788692651,5.959572809275879e-05,5.959572809275879e-05,0.0017697157886926512,5.9595728092758794e-05,5.9595728092758794e-05,2.168404344971009e-19,6.776263578034403e-21,6.776263578034403e-21 +illusion,illusion_1.5L,sr_closed_loop_400,370,371,148.0,,0.01693800209059359,-0.015160351304846807,-0.01163235113316873,,0.0112212273261016,,-0.01163235113316873,,0.0112212273261016,,0.0017776507857467823,-0.0004111238070671312,-0.0004111238070671312,0.0017776507857467825,-0.0004111238070671312,-0.0004111238070671312,2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,371,372,148.4,,0.006845671294630268,-0.005813128933826447,-0.004701336781958231,,0.004302699847169823,,-0.004701336781958231,,0.004302699847169823,,0.0010325423608038217,-0.0003986369347884081,-0.0003986369347884081,0.0010325423608038217,-0.0003986369347884081,-0.0003986369347884081,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,372,373,148.8,,-0.0037897541022241057,0.004183876962305497,0.0026026535000795077,,-0.0030967774792566923,,0.0026026535000795077,,-0.0030967774792566923,,0.0003941228600813913,-0.0004941239791771846,-0.0004941239791771846,0.0003941228600813913,-0.0004941239791771846,-0.0004941239791771846,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,373,374,149.20000000000002,,-0.014093241099708498,0.01387347150312804,0.009678681594168414,,-0.010268718343553272,,0.009678681594168414,,-0.010268718343553272,,-0.0002197695965804585,-0.0005900367493848584,-0.0005900367493848584,-0.00021976959658045849,-0.0005900367493848584,-0.0005900367493848584,2.710505431213761e-20,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,374,375,149.6,,-0.023215274063304595,0.022329271965680193,0.015943333700913487,,-0.016527442650563096,,0.015943333700913487,,-0.016527442650563096,,-0.0008860020976244019,-0.0005841089496496088,-0.0005841089496496088,-0.0008860020976244019,-0.0005841089496496088,-0.0005841089496496088,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,375,376,150.0,,-0.030386929705298212,0.029050291633878664,0.020868543662964967,,-0.021502135389770506,,0.020868543662964967,,-0.021502135389770506,,-0.0013366380714195485,-0.0006335917268055387,-0.0006335917268055387,-0.0013366380714195485,-0.0006335917268055387,-0.0006335917268055387,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,376,377,150.4,,-0.0349979176950091,0.03330865571943322,0.024035188175125448,,-0.024654045954404832,,0.024035188175125448,,-0.024654045954404832,,-0.0016892619755758814,-0.0006188577792793845,-0.0006188577792793845,-0.0016892619755758814,-0.0006188577792793845,-0.0006188577792793845,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,377,378,150.8,,-0.03654214361187317,0.03486678953257547,0.025095701569670247,,-0.0258073288414686,,0.025095701569670247,,-0.0258073288414686,,-0.0016753540792976973,-0.0007116272717983541,-0.0007116272717983541,-0.0016753540792976973,-0.0007116272717983541,-0.0007116272717983541,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,378,379,151.20000000000002,,-0.03487671020773114,0.033003290527962456,0.023951947658065336,,-0.024428024000027262,,0.023951947658065336,,-0.024428024000027262,,-0.001873419679768687,-0.0004760763419619264,-0.0004760763419619264,-0.0018734196797686872,-0.00047607634196192636,-0.00047607634196192636,-2.168404344971009e-19,5.421010862427522e-20,5.421010862427522e-20 +illusion,illusion_1.5L,sr_closed_loop_400,379,380,151.6,,-0.030096882314689207,0.02834237433624306,0.02066935056600007,,-0.02097815670582609,,0.02066935056600007,,-0.02097815670582609,,-0.001754507978446146,-0.00030880613982602056,-0.00030880613982602056,-0.001754507978446146,-0.00030880613982602056,-0.00030880613982602056,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,380,381,152.0,,-0.022718323365464976,0.02080548779352352,0.015602047580967029,,-0.015399584314838443,,0.015602047580967029,,-0.015399584314838443,,-0.0019128355719414576,0.00020246326612858613,0.00020246326612858613,-0.0019128355719414576,0.0002024632661285861,0.0002024632661285861,0.0,-2.710505431213761e-20,-2.710505431213761e-20 +illusion,illusion_1.5L,sr_closed_loop_400,381,382,152.4,,-0.013411714789663146,0.011954492777457774,0.009210636230698835,,-0.00884834911320341,,0.009210636230698835,,-0.00884834911320341,,-0.0014572220122053715,0.0003622871174954242,0.0003622871174954242,-0.0014572220122053715,0.0003622871174954242,0.0003622871174954242,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,382,383,152.8,,-0.003045922890823594,0.002150035404890043,0.002091819590121135,,-0.0015913903017356142,,0.002091819590121135,,-0.0015913903017356142,,-0.0008958874859335509,0.0005004292883855209,0.0005004292883855209,-0.0008958874859335509,0.0005004292883855209,0.0005004292883855209,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,383,384,153.20000000000002,,0.00756696216629137,-0.007666449223900116,-0.00519669087646332,,0.005674470716116937,,-0.00519669087646332,,0.005674470716116937,,-9.948705760874556e-05,0.0004777798396536168,0.0004777798396536168,-9.948705760874556e-05,0.0004777798396536168,0.0004777798396536168,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,384,385,153.60000000000002,,0.01753149348882653,-0.017085027744826172,-0.012039937594773596,,0.012645813829931213,,-0.012039937594773596,,0.012645813829931213,,0.0004464657440003579,0.0006058762351576173,0.0006058762351576173,0.0004464657440003579,0.0006058762351576173,0.0006058762351576173,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,385,386,154.0,,0.026037282069735754,-0.024953679170295433,-0.01788137738846568,,0.018469948417552246,,-0.01788137738846568,,0.018469948417552246,,0.0010836028994403203,0.000588571029086566,0.000588571029086566,0.0010836028994403203,0.000588571029086566,0.000588571029086566,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,386,387,154.4,,0.03236218645849986,-0.03086098562299822,-0.022225072019055114,,0.022842355577373973,,-0.022225072019055114,,0.022842355577373973,,0.0015012008355016378,0.0006172835583188596,0.0006172835583188596,0.0015012008355016378,0.0006172835583188596,0.0006172835583188596,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,387,388,154.8,,0.03590867500730996,-0.034250737903184114,-0.024660660341035028,,0.025351346309203295,,-0.024660660341035028,,0.025351346309203295,,0.001657937104125845,0.0006906859681682677,0.0006906859681682677,0.0016579371041258448,0.0006906859681682677,0.0006906859681682677,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,388,389,155.20000000000002,,0.036321631042913104,-0.03447323885741997,-0.024944262243018777,,0.0255160346952143,,-0.024944262243018777,,0.0255160346952143,,0.001848392185493132,0.0005717724521955223,0.0005717724521955223,0.001848392185493132,0.0005717724521955223,0.0005717724521955223,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,389,390,155.60000000000002,,0.03349537014219149,-0.03178576906167422,-0.02300329783556974,,0.023526851931325858,,-0.02300329783556974,,0.023526851931325858,,0.0017096010805172715,0.0005235540957561173,0.0005235540957561173,0.0017096010805172715,0.0005235540957561173,0.0005235540957561173,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,390,391,156.0,,0.02772525581361719,-0.025796255547550724,-0.019040611115523874,,0.01909359762453085,,-0.019040611115523874,,0.01909359762453085,,0.0019290002660664676,5.298650900697685e-05,5.298650900697685e-05,0.0019290002660664676,5.298650900697685e-05,5.298650900697685e-05,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,391,392,156.4,,0.01955183092150699,-0.01786899155003567,-0.013427425581770309,,0.013226079807730749,,-0.013427425581770309,,0.013226079807730749,,0.001682839371471321,-0.00020134577403956022,-0.00020134577403956022,0.0016828393714713207,-0.00020134577403956022,-0.00020134577403956022,-2.168404344971009e-19,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,392,393,156.8,,0.009781018933902041,-0.0083911456283061,-0.006717217654761369,,0.006210868780563385,,-0.006717217654761369,,0.006210868780563385,,0.0013898733055959407,-0.0005063488741979842,-0.0005063488741979842,0.0013898733055959407,-0.0005063488741979842,-0.0005063488741979842,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,393,394,157.20000000000002,,-0.0007793428787258079,0.0012713855910179686,0.0005352219210970372,,-0.0009410406427311233,,0.0005352219210970372,,-0.0009410406427311233,,0.0004920427122921607,-0.0004058187216340861,-0.0004058187216340861,0.0004920427122921607,-0.0004058187216340861,-0.0004058187216340861,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,394,395,157.60000000000002,,-0.011247629529965315,0.011222136988937302,0.007724427911188727,,-0.008306281807418266,,0.007724427911188727,,-0.008306281807418266,,-2.5492541028012544e-05,-0.0005818538962295396,-0.0005818538962295396,-2.5492541028012544e-05,-0.0005818538962295396,-0.0005818538962295396,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,395,396,158.0,,-0.020780066792590285,0.020084308687957384,0.014270929487979445,,-0.014865789647177607,,0.014270929487979445,,-0.014865789647177607,,-0.0006957581046329007,-0.0005948601591981625,-0.0005948601591981625,-0.0006957581046329007,-0.0005948601591981625,-0.0005948601591981625,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,396,397,158.4,,-0.028569880619701477,0.027278027408728266,0.019620666087037497,,-0.020190359735470727,,0.019620666087037497,,-0.020190359735470727,,-0.0012918532109732102,-0.0005696936484332303,-0.0005696936484332303,-0.0012918532109732102,-0.0005696936484332303,-0.0005696936484332303,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,397,398,158.8,,-0.03395234363370084,0.03244586649177836,0.023317129188485847,,-0.024015435815144297,,0.023317129188485847,,-0.024015435815144297,,-0.0015064771419224798,-0.0006983066266584501,-0.0006983066266584501,-0.0015064771419224798,-0.0006983066266584501,-0.0006983066266584501,0.0,0.0,0.0 +illusion,illusion_1.5L,sr_closed_loop_400,398,399,159.20000000000002,,-0.03640477512629149,0.03459976961104061,0.025001362317002118,,-0.0256096888805013,,0.025001362317002118,,-0.0256096888805013,,-0.001805005515250882,-0.0006083265634991807,-0.0006083265634991807,-0.0018050055152508818,-0.0006083265634991807,-0.0006083265634991807,2.168404344971009e-19,0.0,0.0 diff --git a/src/SR_analysis/results/runs/article2-sr-elements-20260720/evidence_manifest.json b/src/SR_analysis/results/runs/article2-sr-elements-20260720/evidence_manifest.json new file mode 100644 index 0000000..e29ec5e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-sr-elements-20260720/evidence_manifest.json @@ -0,0 +1,387 @@ +{ + "schema_version": "1.0", + "metric_version": "legacy_dtw_v1_abs_n_unclipped", + "article_formula_source": "article-refit-*-topology-a-20260718", + "artifacts": [ + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_manifest.json", + "sha256": "f73c23ffe4109fc2a9be94580afddc6e321f3220b7848d49cc490d85d0cf862c" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_long.csv", + "sha256": "a8fbe8a599f7b4f3695afdf95f5b9029520b930c879751adaab19d5233bf3154" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_wide.csv", + "sha256": "96cff129c94692901ad8164ccdf58af57c3dc4c87ecf45d896b6e98f2a0929fd" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_long.csv", + "sha256": "efbbee65c65971db80f58e827a8d7c27cf0cb0ee2a472233229c7e5f4cc7b70a" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_wide.csv", + "sha256": "78f24edc2c597c65ed621746163f836319caf7643980255b5ac7d25764af63eb" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_manifest.json", + "sha256": "56229bd6fe388ba984aeb15baf4612255a7831bbdf524bc4f2d0b69cd5a05958" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_long.csv", + "sha256": "feb1e5b42e4a54becd076d0b3b1fa13b02a1e5670befc446540f528804db6959" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_dtw_convergence.csv", + "sha256": "fdd50b2bc2dec5d802b9e9e8f09c4710ac3fbbd8afd4edfdf9e912252a021dd5" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv", + "sha256": "7a1ca4835d8fb9afe02ba52771bec7948ec6851bee53ea7a855dd2f12a59256f" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_wide.csv", + "sha256": "0479d6985ae2d855690c72c6130339c1a97c62e108aed613e553c43c8193c48a" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json", + "sha256": "75f7f237dac7e1893fcd63213a2a4c78344c6813e0524319e29949157f4c7027" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_long.csv", + "sha256": "ee8d1cb43a94597096d82f45f15b656b3456635f798ddd981bc069739ae42a38" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_wide.csv", + "sha256": "5f99c5a52838be8d3e6b83813b059b30115cb9e63847ff1daafa6375de9f2e8d" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_long.csv", + "sha256": "14d0b61a09dbd9f7f1de39ab0fe2be434a68814fe3719ffab3d5a9be336e6f34" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_wide.csv", + "sha256": "58a19ed25afd47e2dcdd823bfdef5b21594c7500566efb1f2dc7017f6d6dc37a" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_manifest.json", + "sha256": "dce5039661e890a8856309eb134281255013e5a80d91c16710316d3586bd3a15" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_long.csv", + "sha256": "313fe80aed64809bf4b0a074e85d43a0ab5543f26cdae7eb1458a29ca8170add" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_dtw_convergence.csv", + "sha256": "2cc2c525ac06a8040100344d311a074caee5f51bd2975a49a495999c35586a37" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv", + "sha256": "222a0593755818f209c0dd8d5d4581503d690cc4df22d31bd82c056dd7a3d4e4" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv", + "sha256": "41f5cdc0742d360e3d7f46ee1a7c7d7268575ae4addeb0cf8a3b3aadc823c88c" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json", + "sha256": "66ca6383e8e91a1756cda67df1348f2063e948fd38b0ab5382e9a42461ba0f6c" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_long.csv", + "sha256": "5c7d69f3cb2a900d05b6b52e9d1a6ba5005572fa1946b25f9fe78880235b2c4a" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_wide.csv", + "sha256": "1a32f7cb12a68cc086f48c97700334921b0f63d31cf0645007cb884e2e24186f" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_long.csv", + "sha256": "6c2388379d829c4a024620095dc65c6eb2a346ca4009d99366cf20212b35f694" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_wide.csv", + "sha256": "f87734b165ac9e876842eca826400d1bce7ff5ae488cce6c20ce9dc7d6474c97" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_manifest.json", + "sha256": "44e86ab974054027e655f387d1950fb5bc6608d924ad2aead7cdbf65a8043aa0" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_long.csv", + "sha256": "1e968487db44d98b2073fc01bedb501e9aa532b854d3aab24d67634c67eff0e9" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_dtw_convergence.csv", + "sha256": "96e86c15ee99ea3753d2563253d23a214799c374095d43c6b0ab1b5f6d8eca21" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv", + "sha256": "2bc3686769d87d356e1d157b76e3876636c6893fda6980db09e9da607ab561d7" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv", + "sha256": "1ce663d2a209a9702415ff1e965c9049a057fdc7afded393409b8673fa8c4ebb" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_manifest.json", + "sha256": "250651df960db3ef4eb961d990136687cbcdbfefa1ece3f845d6a2a59bb3cb7f" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_long.csv", + "sha256": "612a0d541f5b2f1c2cfba8386e88bcaf684ef16954150e118bc7655ade9164bc" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_wide.csv", + "sha256": "5d4f8452b94bfeeda37b6de9a59829c78836565cef2ec60290532fc570aafd61" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_long.csv", + "sha256": "d24d5b0c48ea2d0cb0344d3e929b316f7ac9ef32862d36c79bf88f207d149965" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_wide.csv", + "sha256": "d68a33ceb716c9e0b138df5da3740ef927cf00b31b1937b6da5a47ee4f9abe3d" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_manifest.json", + "sha256": "3f8cbbabbf12c1b20a603e23f2a5260ea91c1a5daca47b5c337a5670b4026018" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_long.csv", + "sha256": "a2bf9c47003337426b6bc9fef2272549dcccc3ac70a2a0a38cee675b331273bb" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_dtw_convergence.csv", + "sha256": "d2f186aca33c98e25f21fa2f2d4bc02190514270aaa025a77e2530af176926e0" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv", + "sha256": "713ee9951f738af1647dd9d9b569726e8a2d88c9ba5d31cd866b25b45e3dda92" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_wide.csv", + "sha256": "d9db4f6ba08036ef0c89ac9bd31ae1ed715d8f8b1ca5a03837c8de46ce709c47" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_manifest.json", + "sha256": "e0052984dc8f0d4b9dd71413bdd0d108b13785b07edcac5156d60bbca3640061" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_long.csv", + "sha256": "c44184ae70c013de3d2ecb56539fd17f015d46abf9212afefa4559c6ad594943" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_wide.csv", + "sha256": "0b846e50214071370b168d53abe670605600b324b47ced462bfe790925f68745" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_long.csv", + "sha256": "3aa6523d9689e902657eec45fa0761435a57e8212f78ebfc3838ed84e1b1e859" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_wide.csv", + "sha256": "5aac3182172a413fe2cb0a993a7d2198a868793940dee598df0669a4e158c9c0" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_manifest.json", + "sha256": "5d04a7315b3cec3057037b5945504c4e9a6c64b3916fd7b2fb8d059b590f6170" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_long.csv", + "sha256": "9b197834951b12a1ba68466f17afa5108a0d52c7057263a6c4577807e1e51d04" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_dtw_convergence.csv", + "sha256": "544cbcda85efb4b6f040bffd060e1a44c6f5e358e5676622cd49e9be1b036493" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv", + "sha256": "8bbb7b6e19a15ee460a67f30896695d0e5d2c9924b7116831634375ddfb8d5c8" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_wide.csv", + "sha256": "3699800b5406fd8190e698b0b5487cd5aff45124e4ea314f371535970bb95e28" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_manifest.json", + "sha256": "7da493196a2a03fd9a523af44cc119c693ebe99569a2c238475d164fe67cb061" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_long.csv", + "sha256": "c012941e5e5915d82accdb1b44b548d94a0027c6fbaa0bb5e09c38241cb87873" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_wide.csv", + "sha256": "562e6a18d4a432b238fe4c9e0da02b672cef893c9c056396299580caf2c74b50" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_long.csv", + "sha256": "84f5432b88eaadad5ce724a48828eeb259dce0800b6cb46e630fd510d014f16c" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_wide.csv", + "sha256": "df734ef64a4eaf8699d578deb052848cad098158cf53bf6487911b51e0d0c176" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_manifest.json", + "sha256": "ee7b1e679e70e2b135de056bf74f9012736eafbe19c9db23a6e6878e8333c9e8" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_long.csv", + "sha256": "d17ce00f20c95082a251dca550fb254fc52018fce3388ce4fa55e6d0813b5897" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_dtw_convergence.csv", + "sha256": "9b948f471a5c25dc029842de4474bb32093de3a92afdeb35590bab9b86da91ca" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv", + "sha256": "8748dcf2931af3ef5ac0f31b8f6a97239c391b59deea09711d8f0a75bd6ae203" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_wide.csv", + "sha256": "9021e6c79038f87060754354fc42a488970e789c6cbf80d0562398e8325602b1" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_manifest.json", + "sha256": "71fa6b7f824debd105f282f998965c3eaecb3b6bbf00c06b6c0aac77936bb6c5" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_long.csv", + "sha256": "740bec008b512cadab957df295d9574af05ee653d0e209b909f717f4861b55a8" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_wide.csv", + "sha256": "78440c2477206192493d3db520eb3f3cde4748c3fa8d57c8435ffcfd539f48d9" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_long.csv", + "sha256": "ebe92460b518715c3d71eab9a731a65a180e91753a41da86b7406ad0b954044e" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_wide.csv", + "sha256": "f46368e69a74a3536c02732d35ec30aeaaf31481c901534f99faaee046e187c3" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_manifest.json", + "sha256": "f9e56a99d5a8c66d0dfeb4d08fae1f2a4a9cd0e37b1aa3db86d948e086fcdd28" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_long.csv", + "sha256": "7893d02555ab97e5f38f8b2566ed745e2b573eec4158f93dd66b4eee4267a885" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_dtw_convergence.csv", + "sha256": "cbf83d0fd934e037cd4b9d52467bc62c822887daf7047a6935dd4a812de7ecfc" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv", + "sha256": "f77a24488099da6954b551a5255ff3de80f403c645246909844f2c23a29d7f93" + }, + { + "path": "src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_wide.csv", + "sha256": "1ac0234a0614124553a1e761b44be29d33322dfa525fe25bfd5133836406e996" + }, + { + "path": "src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_rotation_sweep.csv", + "sha256": "af62dba3c857ecf436a34f69cd149a447f4dd0e15c31562cf81a13e43cf56d82" + }, + { + "path": "src/SR_analysis/results/runs/article2-steady-analysis-20260720/interpretation.md", + "sha256": "622d24fbd547d0aa317b450f486fa5467fb3f2f77d05cc10bcf10969654ea78d" + }, + { + "path": "src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_constant_correspondence.json", + "sha256": "7884e726d5890d154e3354c24824b1b6659933be993cc57b8f6f190e5f4d2b9b" + }, + { + "path": "src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/coefficients.csv", + "sha256": "50c2c91f2b120866cee10500a52982be5cbb3535acd8408c7b66978d4160001e" + }, + { + "path": "src/SR_analysis/results/runs/article2-percase-refit-summary-20260720/interpretation.md", + "sha256": "e2b580d6dff163c385a7b912ebdfd897fb04d094e4792ce3d3ee070fa5d80069" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re200__pysr__f-a678f2019e0d__si-800.json", + "sha256": "a0981659ebcc38a0753e7a1a170a8ab2ed7ff6d5778ba2d2fce48b68ff613069" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re50__pysr__f-a678f2019e0d__si-800.json", + "sha256": "1f9e6bfcd19a3e3cda6d0c33a8ca964acf44c5535b5d78e8abda98cd213e876f" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re100__pysr__f-a678f2019e0d__si-800.json", + "sha256": "287442ea9901a50abc8d0a5506eb5885893ba29a91483db9fe4055480b504b77" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/validations/karman_re400__pysr__f-a678f2019e0d__si-800.json", + "sha256": "7a5306c48cd34d18c1208e35a9bf1ddc760991ce3be817832ffbe63fccb23369" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "91f03419cf51c3c6cbd669865b15f04961db8fd560caa51b225f50e701801867" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "825c856e6b11439cd5cdb495d0c9a091dfb3a50c53d559cc226a688448b2f4da" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "8557d977962ead46aa7e66a37d1f6a76dd1858794d3cd3dae2ddc9c03539532e" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-karman-20260720/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz", + "sha256": "0b87f3c01277294b6afc8791efa4cde3a9b129e7b42d538ecdaee13ddb1e689b" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1p5L__pysr__f-ae67ae507106__si-800.json", + "sha256": "842a84dffc289923bed0c57b4f2b4a48ca83133b2c05070c28a21fd94618981b" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_0p75L__pysr__f-ae67ae507106__si-400.json", + "sha256": "ccd81306b00b59b847bf749d8cca2e60ebbdb44c9e6a26e5104c96073aa97c26" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/validations/illusion_1L__pysr__f-ae67ae507106__si-600.json", + "sha256": "e505684b98f1a52a5d3f7bb84b108c420cb942b979ed107eacddc2fd74edd4c2" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz", + "sha256": "118163cc274ab9034e9424072720be07bda4cd51c07c90004bcb1c6d2fc01857" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz", + "sha256": "91fb383f91637afbcb68f6ad3d3ee048ff05c159da89334330be154aa09186f8" + }, + { + "path": "src/SR_analysis/results/runs/article2-long-illusion-20260720/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz", + "sha256": "b500115bc6cb273977ddf6f516e062c77398d55f628a9736fcecd1929fc83951" + }, + { + "path": "src/SR_analysis/results/runs/article2-generalization-summary-20260720/summary.json", + "sha256": "42525eace14a6298fd0d94c31af9012599044d8345e179a3a1af555122870caf" + }, + { + "path": "src/SR_analysis/results/runs/article2-generalization-summary-20260720/generalization.csv", + "sha256": "6db51bff8f5722ec3c6d87d379864ae1cfba1f97c39363861d7a6d07eaa1db6f" + } + ], + "claims": { + "supported": [ + "Karman rear constant is a persistent steady-compensation component", + "Seven training cases remain finite and stable over 400 recorded steps", + "Current article laws interpolate smoothly over tested unseen conditions", + "Illusion generalization degrades at extreme target diameters", + "Per-case Karman gains do not form a clean low/high-Re split", + "Illusion 1.5L has distinct coefficient emphasis" + ], + "not_supported": [ + "A universal coefficient law across Reynolds number or diameter", + "Direct equality between wake velocity deficit and cylinder surface speed", + "Generalization beyond the tested Re and diameter ranges", + "Causal flow structures before OID/CCD analysis" + ] + } +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article2-sr-elements-20260720/readable_summary.txt b/src/SR_analysis/results/runs/article2-sr-elements-20260720/readable_summary.txt new file mode 100644 index 0000000..661b546 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-sr-elements-20260720/readable_summary.txt @@ -0,0 +1,31 @@ +ARTICLE2 SR OBS-ACT EXTENSION — 2026-07-20 + +STEADY CALIBRATION + Constant rear counter-rotation sweep (alpha magnitude 0..6): best sampled alpha=5, + legacy DTW=0.987212. Joint Karman formula in steady inflow: DTW=0.966494; + rear tail action=(-3.4306,+3.4318), analytically equal to constant magnitude 3.4312. + +400-STEP TRAINING-CONDITION VALIDATION + Karman: Re50 0.952178; Re100 0.944339; Re200 0.863850; Re400 0.833365. + Illusion: 0.75L 0.854379; 1L 0.915609; 1.5L 0.833587. + All completed with finite telemetry. These values use legacy_dtw_v1_abs_n_unclipped. + +CURRENT-FORMULA GENERALIZATION (200 STEPS) + Karman: Re25 0.988078 (extrapolation), Re70 0.954339, Re150 0.907496, + Re300 0.835758 (interpolation). + Illusion: 0.5L 0.784055, 0.6L 0.821103, 2L 0.756880 (extrapolation); + 0.8L 0.884573, 1.2L 0.925530 (interpolation). + +PER-CASE DIAGNOSTICS + Karman rear constants remain O(3-4) but gains are non-monotonic; no clean low/high-Re + two-group law is supported. Illusion 1.5L has a distinct coefficient emphasis, while + single-case rear refits at 0.75L/1L are poorly identified and are not controllers. + +HANDOVER + Highest-priority OID/CCD targets: rear steady counter-rotation; rear symmetric lift + feedback; front lift in Illusion; rear drag asymmetry. See sr_key_elements.md/csv. + +LIMITS + No direct momentum-balance equality is claimed. Per-case refits are offline diagnostics. + Generalization claims are limited to the sampled conditions. OID/CCD causal/spatial + structures remain to be established. diff --git a/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.csv b/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.csv new file mode 100644 index 0000000..c5084bd --- /dev/null +++ b/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.csv @@ -0,0 +1,7 @@ +objective,element,controller_location,evidence_strength,evidence,physical_interpretation,OID_CCD_target +Karman,rear constant,rear shared,strong,"largest deletion loss; steady deployment alpha=3.4312; steady sweep optimum alpha=5",persistent rear counter-rotation restores mean downstream deficit,"symmetric streamwise correction originating in rear gap and persisting downstream" +Karman,Cl_rear_s,rear shared,moderate,"secondary deletion loss; per-case coefficient 0.22-1.70",state-dependent modulation of rear momentum injection,"force-correlated rear-gap/source structure and its convected descendant" +Karman,Cd_rear_a,front odd,weak,"front deletion changes short DTW weakly",antisymmetric front phase/force trim,"antisymmetric near-front structure; expected weaker signature correlation" +Illusion,Cl_F,front and rear,moderate,"dominates coefficient-scaling action magnitude; 1.5L front refit nearly pure Cl_F",front-loading feedback and target-dependent phase/amplitude retuning,"front-body force-related source with diameter-dependent wake descendant" +Illusion,Cd_rear_a,front and rear,weak-to-moderate,"weaker scaling influence; partly replaceable",rear-wake asymmetry correction,"antisymmetric rear-gap correction; compare 0.75/1L with 1.5L" +Illusion,target/error variables,not selected,negative,"available in discovery but not recurrent in low-complexity static laws",explicit target tracking not identified statically,"CCD should test whether target information appears through lagged/phase-resolved structures" diff --git a/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.md b/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.md new file mode 100644 index 0000000..b3d8093 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-sr-elements-20260720/sr_key_elements.md @@ -0,0 +1,21 @@ +# SR-to-OID/CCD handover + +## Kármán cloak + +1. **Rear steady counter-rotation (strongest evidence).** The joint rear law contains the constant \(\mp 3.4312\). Removing it causes the largest closed-loop degradation in the established term tests. In a disturbance-free deployment, the last-cycle rear actions are \((-3.4306,3.4318)\), while a discrete constant-speed sweep peaks at \(\mp5U_0\). OID should search for a symmetric streamwise correction generated in the rear gap and retained at the downstream sensors. CCD should quantify the connection from the rear actuator pair to the mean/low-frequency downstream deficit mode. + +2. **Symmetric rear lift feedback \(Cl_{rear,s}\) (moderate evidence).** This is the only state-dependent rear term retained by the article law. Per-case coefficients vary from 0.22 to 1.70, so it is a modulation rather than a universal gain. CCD should seek a force-correlated source mode near both rear cylinders and its delayed downstream descendant; phase-conditioned analysis is preferable to zero-lag correlation. + +3. **Rear drag asymmetry \(Cd_{rear,a}\) in the front action (weak evidence).** This term provides antisymmetric front-cylinder trimming, but deletion tests rank it below the rear terms. OID/CCD should test an antisymmetric near-front mode and expect a weaker downstream canonical correlation. + +## Illusion + +1. **Front lift \(Cl_F\) (moderate evidence).** Coefficient scaling shows that this term dominates action-amplitude sensitivity, and the 1.5L per-case front refit is nearly pure \(Cl_F\). OID should compare front-body source structures among 0.75L, 1L and 1.5L; CCD should test whether the associated descendant changes wavelength/phase with target diameter. + +2. **Rear drag asymmetry \(Cd_{rear,a}\) (weak-to-moderate evidence).** It appears in both heads but is less influential and partly replaceable. Search for antisymmetric rear-gap structures and explicitly compare the large-target 1.5L regime with the smaller targets. + +3. **Absence of explicit target/error terms (negative evidence).** Those variables were available but did not recur in the selected low-complexity static laws. This does not prove feedforward target information is absent: OID/CCD should test lagged and phase-resolved structures because a static obs-action regression can alias internal PPO memory or phase relationships into measured forces. + +## Analysis contract + +For each element, report actuator-to-source and source-to-downstream relationships separately; preserve upper/lower reflection parity; resolve lags in units of \(D/U_0\); and do not promote spatial coincidence to causality without time-lagged evidence. Compare the SR ranking against canonical-correlation magnitude, but retain contradictions rather than forcing agreement. diff --git a/src/SR_analysis/results/runs/article2-steady-analysis-20260720/interpretation.md b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/interpretation.md new file mode 100644 index 0000000..85a3a18 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/interpretation.md @@ -0,0 +1,9 @@ +# Steady-cloak calibration + +The steady-flow sweep used rear counter-rotation \(\alpha_U=-A\), \(\alpha_L=A\), \(A=0,\ldots,6\), with the front cylinder stationary. The maximum legacy DTW similarity occurred at \(A=5\), with similarity 0.9872. The current Kármán joint law produced similarity 0.9665 when deployed without an upstream disturbance. + +In the steady deployment, the rear lift feedback nearly cancels between the reflected upper/lower states. The rear action therefore equals the fitted constant to numerical precision: the last-cycle mean is \((-3.4306,3.4318)\), compared with the analytical constant magnitude 3.4312. This is 68.6% of the sweep optimum (5.0) in action magnitude, yet it recovers most of the achievable downstream sensor similarity. + +This supports a limited but quantitative interpretation: the Kármán law contains a persistent rear-counter-rotation component of the same order as the steady open-loop rotation required to restore the downstream sensor signature. It does not establish a one-to-one conversion between velocity deficit and cylinder surface speed; that conversion is nonlinear and geometry-dependent. The correct claim is therefore an order-of-magnitude and closed-loop correspondence, not a direct momentum-balance equality. + +The prior expectation of approximately 4 U0 lies between the fitted constant 3.43 U0 and the discrete sweep optimum 5 U0. A finer sweep around 4–5 U0 would be needed to locate the continuous optimum, but is not required for the present mechanism conclusion. diff --git a/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_constant_correspondence.json b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_constant_correspondence.json new file mode 100644 index 0000000..a3be055 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_constant_correspondence.json @@ -0,0 +1,13 @@ +{ + "joint_formula_similarity": 0.966494369494805, + "rear_constant_magnitude": 3.431208680510616, + "sweep_best_alpha": 5, + "sweep_best_similarity": 0.9872116243063841, + "formula_mean_rear_alpha_magnitude": 3.431208680510616, + "formula_tail_mean_rear_alpha_magnitude": 3.431208680510616, + "formula_tail_mean_alpha": [ + -0.0005629833490577167, + -3.430589242946191, + 3.431828118075043 + ] +} \ No newline at end of file diff --git a/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_rotation_sweep.csv b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_rotation_sweep.csv new file mode 100644 index 0000000..2e5d144 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_rotation_sweep.csv @@ -0,0 +1,8 @@ +rear_alpha_magnitude,legacy_dtw,upper_ux_abs_error,upper_uy_abs_error,center_ux_abs_error,center_uy_abs_error,lower_ux_abs_error,lower_uy_abs_error,mean_abs_sensor_error +0,0.6318295892223583,0.24125787615776062,0.30878604030804124,0.6106319228808085,0.514321427374434,0.2967195689678192,0.2373061579386558,0.3681704989379199 +1,0.7238576675223055,0.19499666492144266,0.24020753696131578,0.3230915387471517,0.45262273034021727,0.22569220264752707,0.22024393115486116,0.27614243412875256 +2,0.8572862976242573,0.09794941544532776,0.0880865637675015,0.2769740084807078,0.20712919701756974,0.09277208646138509,0.09337109601183328,0.1427137278640542 +3,0.9550287728501439,0.013094758987426758,0.016383307041542138,0.21086688637733458,4.591258161964115e-06,0.013093849023183187,0.016384004408973852,0.04497123284943708 +4,0.9763759468879135,0.017377622922261558,0.014611309071066595,0.07776585022608438,9.20833424293092e-07,0.01737630764643351,0.014611642042655148,0.023623942123654245 +5,0.9872116243063841,0.02024775743484497,0.01466386015805862,0.006885925928751628,3.8021073174928272e-06,0.02025692860285441,0.014671200027927019,0.012788245709959024 +6,0.9786742288121729,0.02266213099161784,0.01493453838484129,0.052685773372650145,9.768903817582627e-06,0.022709659735361733,0.014951813139244525,0.021325614087922187 diff --git a/src/SR_analysis/results/runs/article2-steady-karmanlaw-20260720/validations/steady__pysr__f-a678f2019e0d__si-800.json b/src/SR_analysis/results/runs/article2-steady-karmanlaw-20260720/validations/steady__pysr__f-a678f2019e0d__si-800.json new file mode 100644 index 0000000..3f3e955 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-karmanlaw-20260720/validations/steady__pysr__f-a678f2019e0d__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.04114767053131339,-3.2757541096764973,3.5866632513447354],"min":[-0.17707254443016568,-3.525163240770024,3.3372541202512083]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.00041147670531313394,-0.03275754109676497,0.03586663251344736],"min":[-0.0017707254443016568,-0.03525163240770024,0.03337254120251208]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-karmanlaw-20260720-steady__pysr__f-a678f2019e0d__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"104b112933cc22945a3d48e504ae7ac914ab368fcd07c80441b0d29ba9bbd21e","created_utc":"2026-07-20T14:07:55.750356+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"aa6e9c84f8068b6675037c817c6b2fdf58832e06783b65748388eac50588abf6"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","formula_hashes":{"front_deployment_expression":"367b5b7e65fade9e3d31c0077dbdb351708ce1aa8c5163a9ef6e64cb3c5d4650","front_source":"bb85a2110e86925119d2c2ac45de7ec919cad6bed82f3faa2c36d648cc18b0f3","pair":"a678f2019e0da7a0e1263f0c911b377106a668a6716ba93d6efd78f58de0a3f1","rear_deployment_expression":"752079401829f54043eceb541d76d4f7db691593e874f538a05fb160776f60f7","rear_source":"460c2b9b568440f5bd4aacfdd30c29f60dd705821d115598af80e9d21767b05b"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"policy_mapping":"exact_front_odd_projection_and_rear_g_mapping","rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-19,"per_channel":{"0":0.9849397301673889,"1":0.9848621679598485,"2":0.8609794060389201,"3":0.9985239686402853,"4":0.984710959593455,"5":0.9849499845689328},"similarity":0.966494369494805},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode pysr --formula-front src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas/joint_rear_shared_upper.json --device 0 --steps 200 --run-id article2-steady-karmanlaw-20260720","created_at":"2026-07-20T14:07:55.750324+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"71b050095d9f02105039b1b9254a23170284ba179b7b4913928d4d3ae89ff7f3","run_id":"article2-steady-karmanlaw-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-karmanlaw-20260720/telemetry/steady__pysr__f-a678f2019e0d__si-800.npz","sha256":"c63613e84fb0795bac2ff71004a78c66ec59e3396cadeb66db2345685e4455a2","telemetry_hash":"c63613e84fb0795bac2ff71004a78c66ec59e3396cadeb66db2345685e4455a2"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a0-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a0-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..6acbe52 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a0-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-0.0,0.0],"min":[0.0,-0.0,0.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.0,0.0],"min":[0.0,-0.0,0.0]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a0-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-0.0,0.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"5508e9f616da9495b382c42848dbcb5d5305b9570939483465cc472382a59ddc","created_utc":"2026-07-20T13:42:14.012802+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"759e63a4faff9a19c800471874e1a648048a886684909d242a0d2e293fde6135"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-5,"per_channel":{"0":0.7587425927321116,"1":0.6912140283980989,"2":0.3893680771191915,"3":0.48567866038541296,"4":0.7032804707686107,"5":0.7626937059307238},"similarity":0.6318295892223583},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -0 0 --device 0 --steps 200 --run-id article2-steady-sweep-a0-20260720","created_at":"2026-07-20T13:42:14.012766+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"01c801918fb7f4a7c021329eaf04a44f2dba58af6f5ab200401f9242aae77a36","run_id":"article2-steady-sweep-a0-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a0-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"90912520d98448896655788d1e7501a9525f1ecf7716292c869a23521d64aaf9","telemetry_hash":"90912520d98448896655788d1e7501a9525f1ecf7716292c869a23521d64aaf9"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a1-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a1-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..960672d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a1-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-1.0,1.0],"min":[0.0,-1.0,1.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.01,0.01],"min":[0.0,-0.01,0.01]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a1-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-1.0,1.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"0af7f1bb517b78956c9af9f086a8d9d121aed320845d2ac2126f550948d19ebe","created_utc":"2026-07-20T13:45:28.111476+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"b1d80cb33d9a2ddc8650e6ad4740def023596510b803fe4beaa112b969cb2206"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-20,"per_channel":{"0":0.8050034821033478,"1":0.7597926466505063,"2":0.6769085566202799,"3":0.5473772989159733,"4":0.774307805299759,"5":0.7797562155439663},"similarity":0.7238576675223055},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -1 1 --device 0 --steps 200 --run-id article2-steady-sweep-a1-20260720","created_at":"2026-07-20T13:45:28.111441+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"6487c2d7ffffaac68b4f6cc6ae3f9f7ae01d44bc89170feb7d8f710622b3e364","run_id":"article2-steady-sweep-a1-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a1-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"c9ae914fe0ef54556291c13a9cfc32ca9dba1d0d710f76680cad0f943c25b089","telemetry_hash":"c9ae914fe0ef54556291c13a9cfc32ca9dba1d0d710f76680cad0f943c25b089"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a2-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a2-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..f4671c8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a2-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-2.0,2.0],"min":[0.0,-2.0,2.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.02,0.02],"min":[0.0,-0.02,0.02]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a2-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-2.0,2.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"c02e982cdfee741e59aec675b6a14c530c9adfda1c8b0d97b70bbfd15452d34c","created_utc":"2026-07-20T13:48:43.271338+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"1146a06714c93a757484fd2709f5cf8317f64dd9acb29bcab10845e420fef177"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-16,"per_channel":{"0":0.9020505885283152,"1":0.9119135420764602,"2":0.7230260630448659,"3":0.7928708146790501,"4":0.9072279493014017,"5":0.9066288281154509},"similarity":0.8572862976242573},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -2 2 --device 0 --steps 200 --run-id article2-steady-sweep-a2-20260720","created_at":"2026-07-20T13:48:43.271304+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"acda9c153e3ccba31b8adbf850b7d92a0589f3df2411262744cc8e3ae2707293","run_id":"article2-steady-sweep-a2-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a2-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"bfb3f6c58dc81a48d1b303267b92ce83c2c99a6e719b6f83349fa1bebbd719d4","telemetry_hash":"bfb3f6c58dc81a48d1b303267b92ce83c2c99a6e719b6f83349fa1bebbd719d4"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a3-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a3-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..580dedb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a3-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-3.0,3.0],"min":[0.0,-3.0,3.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.03,0.03],"min":[0.0,-0.03,0.03]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a3-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-3.0,3.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"6767bd9e0eb5e3a231ccd1ac82da574b9eb893dd867c54154c1b4602e5d3e4cd","created_utc":"2026-07-20T13:51:58.603292+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"b040a9e6dee8afe8f3ae09fca9b0251d9a7d41d65cccbc6b3fee2cada1e97ccf"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":0,"per_channel":{"0":0.9869052410125733,"1":0.9836166929584579,"2":0.7891331136226654,"3":0.999995442939324,"4":0.9869061509768168,"5":0.9836159955910262},"similarity":0.9550287728501439},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -3 3 --device 0 --steps 200 --run-id article2-steady-sweep-a3-20260720","created_at":"2026-07-20T13:51:58.603258+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"7faa83f4d1da0af3e2173cf682cfc1654d3301e84ec82ddaed628063a581b908","run_id":"article2-steady-sweep-a3-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a3-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"17ac8703fee33d1c0c5406403293b5cc0d7036f8219553acb81d35091a582ff7","telemetry_hash":"17ac8703fee33d1c0c5406403293b5cc0d7036f8219553acb81d35091a582ff7"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a4-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a4-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..a0a224b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a4-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-4.0,4.0],"min":[0.0,-4.0,4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.04,0.04],"min":[0.0,-0.04,0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a4-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-4.0,4.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"29e7012422773fc03f5cc170c0fa7b55deca0cfb21e78cc2d5c82dc62f9db132","created_utc":"2026-07-20T13:55:13.231778+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"d484aa6d17beb01f1ddcc901070ad9996573142cb5841ed5cf540cb8d504e3a8"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-27,"per_channel":{"0":0.9826220154762269,"1":0.9853886983437405,"2":0.9222342570622762,"3":0.9999991251041556,"4":0.9826235095659892,"5":0.9853880757750934},"similarity":0.9763759468879135},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -4 4 --device 0 --steps 200 --run-id article2-steady-sweep-a4-20260720","created_at":"2026-07-20T13:55:13.231744+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"5995c20fce12343ce9e019d7ba9c54dfc58a90a5d02b2a5daa74f828e99a05ee","run_id":"article2-steady-sweep-a4-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a4-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"3e15f2dea247e5a827d4a9a3c353788ae8a4115fbbfd55ce9d45aa28a7da6f0e","telemetry_hash":"3e15f2dea247e5a827d4a9a3c353788ae8a4115fbbfd55ce9d45aa28a7da6f0e"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a5-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a5-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..e8c7178 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a5-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-5.0,5.0],"min":[0.0,-5.0,5.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.05,0.05],"min":[0.0,-0.05,0.05]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a5-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-5.0,5.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"4c5c2b9b1bba944e1499c383397a42c6c19983433f4e84f11aa3482b56022571","created_utc":"2026-07-20T13:58:26.912771+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"1fe28d5fa1babf7f81dfb098fbbd169d9ea097dcb1649bc34f20eb315cbf1b89"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-26,"per_channel":{"0":0.9797519405682882,"1":0.9853361809544974,"2":0.9931141853332519,"3":0.9999960137851986,"4":0.9797428846359253,"5":0.9853285405611435},"similarity":0.9872116243063841},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -5 5 --device 0 --steps 200 --run-id article2-steady-sweep-a5-20260720","created_at":"2026-07-20T13:58:26.912738+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"7c1347fc6cd87561c71bf86fb6d7f74bf56d18de3de76a6c631c3dc3c46379b9","run_id":"article2-steady-sweep-a5-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a5-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"c99e6f1f686ba24d709f40af9202b21cc35932a7eb0711874926687c52b8604d","telemetry_hash":"c99e6f1f686ba24d709f40af9202b21cc35932a7eb0711874926687c52b8604d"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-steady-sweep-a6-20260720/validations/steady__constant__f-none__si-800.json b/src/SR_analysis/results/runs/article2-steady-sweep-a6-20260720/validations/steady__constant__f-none__si-800.json new file mode 100644 index 0000000..dcdc113 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-steady-sweep-a6-20260720/validations/steady__constant__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-6.0,6.0],"min":[0.0,-6.0,6.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.06,0.06],"min":[0.0,-0.06,0.06]}},"alignment":"causal_post_state_to_next_action","artifact_id":"article2-steady-sweep-a6-20260720-steady__constant__f-none__si-800","config":{"action_bias":[0.0,-5.1,5.1],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"constant_alpha":[0.0,-6.0,6.0],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,0.0,0.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":null,"mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,0.0,0.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"s_dim":12,"sample_interval":800,"scene_id":"steady","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"open_loop","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"steady","u0":0.01},"config_hash":"a01b5fd79346423908674fa15a7294b6985e6645f254262dff373aedecbde30c","created_utc":"2026-07-20T14:01:40.531552+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"1bd15db3cd51944c7de90134555715bd085dfbd082c2e689017419c88ff69d00"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","legacy_reference_cycle_vs_last_recorded_cycle":{"lag":-25,"per_channel":{"0":0.9773375789324442,"1":0.9850655153843643,"2":0.9473141113917033,"3":0.9999900654449714,"4":0.9772901574770609,"5":0.9850479442424936},"similarity":0.9786742288121729},"metric_version":"legacy_dtw_v1_abs_n_unclipped"},"mode":"constant","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene steady --mode constant --constant-alpha 0 -6 6 --device 0 --steps 200 --run-id article2-steady-sweep-a6-20260720","created_at":"2026-07-20T14:01:40.531520+00:00","environment":{"conda_env":"pycuda_3_10","gpu":{"CUDA_VISIBLE_DEVICES":"2","name":"Tesla V100-SXM2-16GB","requested_logical_device":0,"uuid":"GPU-b8c11c01-c91f-aa0b-abf6-dad35085cc76"}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"43426b09ffa740bb3b18b43ee0bdb25187e890b32060a4b75df213b262e2ea6f","run_id":"article2-steady-sweep-a6-20260720","sample_interval":800,"scene":"steady","scene_id":"steady","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/article2-steady-sweep-a6-20260720/telemetry/steady__constant__f-none__si-800.npz","sha256":"3892531b1970f71bf3c04ddb1c3a287d767e8f44b8f45d74daa1601d36b20ecb","telemetry_hash":"3892531b1970f71bf3c04ddb1c3a287d767e8f44b8f45d74daa1601d36b20ecb"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..ee047a7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_0.75L,ppo,72,14.4,36,0.9538795415061975,-10,0.9339480466312833,0.9640371764285697,0.9466589722368453,0.9473954102852278,0.9685188200738695,0.9627188233813891 +illusion_0.75L,ppo,108,21.6,36,0.9672887168018388,-6,0.9783359683222241,0.981946853778532,0.9280204375584921,0.9620687984344032,0.9814018342230055,0.9719584084943764 +illusion_0.75L,ppo,144,28.8,36,0.9737106218278685,0,0.9773479766315885,0.9836839633127157,0.9510151760445701,0.9707624355538024,0.9785598549577925,0.9808943244667413 +illusion_0.75L,ppo,180,36.0,36,0.9738305911801204,8,0.982112791803148,0.9910932124799324,0.9445115195380317,0.9627754502515826,0.9838737216260698,0.9786168513819575 +illusion_0.75L,ppo,200,40.0,36,0.9780213679370245,-1,0.9766614139080048,0.9895384479314089,0.9671884146001604,0.9655133646253186,0.9824512153863907,0.9867753511708643 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_long.csv new file mode 100644 index 0000000..cb5ad7f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,ppo,0,0.0,velocity,upper_ux,1.062872290611267 +illusion_0.75L,ppo,0,0.0,velocity,upper_uy,0.2844725549221039 +illusion_0.75L,ppo,0,0.0,velocity,center_ux,0.7817756533622742 +illusion_0.75L,ppo,0,0.0,velocity,center_uy,0.514151394367218 +illusion_0.75L,ppo,0,0.0,velocity,lower_ux,0.9234325885772705 +illusion_0.75L,ppo,0,0.0,velocity,lower_uy,0.22595591843128204 +illusion_0.75L,ppo,1,0.2,velocity,upper_ux,0.970170259475708 +illusion_0.75L,ppo,1,0.2,velocity,upper_uy,0.3378361165523529 +illusion_0.75L,ppo,1,0.2,velocity,center_ux,0.816997766494751 +illusion_0.75L,ppo,1,0.2,velocity,center_uy,0.5074722170829773 +illusion_0.75L,ppo,1,0.2,velocity,lower_ux,0.9501234292984009 +illusion_0.75L,ppo,1,0.2,velocity,lower_uy,0.24790598452091217 +illusion_0.75L,ppo,2,0.4,velocity,upper_ux,0.8982132077217102 +illusion_0.75L,ppo,2,0.4,velocity,upper_uy,0.35587990283966064 +illusion_0.75L,ppo,2,0.4,velocity,center_ux,0.8456646800041199 +illusion_0.75L,ppo,2,0.4,velocity,center_uy,0.5097730159759521 +illusion_0.75L,ppo,2,0.4,velocity,lower_ux,0.9797688126564026 +illusion_0.75L,ppo,2,0.4,velocity,lower_uy,0.26779836416244507 +illusion_0.75L,ppo,3,0.6,velocity,upper_ux,0.8463174700737 +illusion_0.75L,ppo,3,0.6,velocity,upper_uy,0.34639641642570496 +illusion_0.75L,ppo,3,0.6,velocity,center_ux,0.8675320148468018 +illusion_0.75L,ppo,3,0.6,velocity,center_uy,0.5177527666091919 +illusion_0.75L,ppo,3,0.6,velocity,lower_ux,1.0103472471237183 +illusion_0.75L,ppo,3,0.6,velocity,lower_uy,0.28496116399765015 +illusion_0.75L,ppo,4,0.8,velocity,upper_ux,0.8096497058868408 +illusion_0.75L,ppo,4,0.8,velocity,upper_uy,0.3203834295272827 +illusion_0.75L,ppo,4,0.8,velocity,center_ux,0.8839743733406067 +illusion_0.75L,ppo,4,0.8,velocity,center_uy,0.528231143951416 +illusion_0.75L,ppo,4,0.8,velocity,lower_ux,1.042073369026184 +illusion_0.75L,ppo,4,0.8,velocity,lower_uy,0.29983147978782654 +illusion_0.75L,ppo,5,1.0,velocity,upper_ux,0.7815097570419312 +illusion_0.75L,ppo,5,1.0,velocity,upper_uy,0.2854216396808624 +illusion_0.75L,ppo,5,1.0,velocity,center_ux,0.895355761051178 +illusion_0.75L,ppo,5,1.0,velocity,center_uy,0.5381391048431396 +illusion_0.75L,ppo,5,1.0,velocity,lower_ux,1.0755915641784668 +illusion_0.75L,ppo,5,1.0,velocity,lower_uy,0.31252986192703247 +illusion_0.75L,ppo,6,1.2,velocity,upper_ux,0.7577789425849915 +illusion_0.75L,ppo,6,1.2,velocity,upper_uy,0.2448502779006958 +illusion_0.75L,ppo,6,1.2,velocity,center_ux,0.900479257106781 +illusion_0.75L,ppo,6,1.2,velocity,center_uy,0.5424665212631226 +illusion_0.75L,ppo,6,1.2,velocity,lower_ux,1.1105802059173584 +illusion_0.75L,ppo,6,1.2,velocity,lower_uy,0.3229149878025055 +illusion_0.75L,ppo,7,1.4,velocity,upper_ux,0.7372234463691711 +illusion_0.75L,ppo,7,1.4,velocity,upper_uy,0.1996011883020401 +illusion_0.75L,ppo,7,1.4,velocity,center_ux,0.8976876735687256 +illusion_0.75L,ppo,7,1.4,velocity,center_uy,0.5340266823768616 +illusion_0.75L,ppo,7,1.4,velocity,lower_ux,1.1473294496536255 +illusion_0.75L,ppo,7,1.4,velocity,lower_uy,0.3304975926876068 +illusion_0.75L,ppo,8,1.6,velocity,upper_ux,0.7219663858413696 +illusion_0.75L,ppo,8,1.6,velocity,upper_uy,0.15035387873649597 +illusion_0.75L,ppo,8,1.6,velocity,center_ux,0.8859350681304932 +illusion_0.75L,ppo,8,1.6,velocity,center_uy,0.5038349032402039 +illusion_0.75L,ppo,8,1.6,velocity,lower_ux,1.186540126800537 +illusion_0.75L,ppo,8,1.6,velocity,lower_uy,0.3348473012447357 +illusion_0.75L,ppo,9,1.8,velocity,upper_ux,0.7146875262260437 +illusion_0.75L,ppo,9,1.8,velocity,upper_uy,0.09943869709968567 +illusion_0.75L,ppo,9,1.8,velocity,center_ux,0.8640586733818054 +illusion_0.75L,ppo,9,1.8,velocity,center_uy,0.44350677728652954 +illusion_0.75L,ppo,9,1.8,velocity,lower_ux,1.2277460098266602 +illusion_0.75L,ppo,9,1.8,velocity,lower_uy,0.33477360010147095 +illusion_0.75L,ppo,10,2.0,velocity,upper_ux,0.7180234789848328 +illusion_0.75L,ppo,10,2.0,velocity,upper_uy,0.05039156973361969 +illusion_0.75L,ppo,10,2.0,velocity,center_ux,0.8327926397323608 +illusion_0.75L,ppo,10,2.0,velocity,center_uy,0.3485560119152069 +illusion_0.75L,ppo,10,2.0,velocity,lower_ux,1.2701308727264404 +illusion_0.75L,ppo,10,2.0,velocity,lower_uy,0.32842838764190674 +illusion_0.75L,ppo,11,2.2,velocity,upper_ux,0.7325096130371094 +illusion_0.75L,ppo,11,2.2,velocity,upper_uy,0.006594774778932333 +illusion_0.75L,ppo,11,2.2,velocity,center_ux,0.7951617240905762 +illusion_0.75L,ppo,11,2.2,velocity,center_uy,0.22098791599273682 +illusion_0.75L,ppo,11,2.2,velocity,lower_ux,1.311164140701294 +illusion_0.75L,ppo,11,2.2,velocity,lower_uy,0.3128725290298462 +illusion_0.75L,ppo,12,2.4,velocity,upper_ux,0.7561736106872559 +illusion_0.75L,ppo,12,2.4,velocity,upper_uy,-0.03126642107963562 +illusion_0.75L,ppo,12,2.4,velocity,center_ux,0.7560094594955444 +illusion_0.75L,ppo,12,2.4,velocity,center_uy,0.06675231456756592 +illusion_0.75L,ppo,12,2.4,velocity,lower_ux,1.34690523147583 +illusion_0.75L,ppo,12,2.4,velocity,lower_uy,0.28297072649002075 +illusion_0.75L,ppo,13,2.6,velocity,upper_ux,0.783738374710083 +illusion_0.75L,ppo,13,2.6,velocity,upper_uy,-0.06539444625377655 +illusion_0.75L,ppo,13,2.6,velocity,center_ux,0.7211808562278748 +illusion_0.75L,ppo,13,2.6,velocity,center_uy,-0.10112693160772324 +illusion_0.75L,ppo,13,2.6,velocity,lower_ux,1.369096279144287 +illusion_0.75L,ppo,13,2.6,velocity,lower_uy,0.2329113781452179 +illusion_0.75L,ppo,14,2.8,velocity,upper_ux,0.8115536570549011 +illusion_0.75L,ppo,14,2.8,velocity,upper_uy,-0.09846214205026627 +illusion_0.75L,ppo,14,2.8,velocity,center_ux,0.6980757713317871 +illusion_0.75L,ppo,14,2.8,velocity,center_uy,-0.2641013264656067 +illusion_0.75L,ppo,14,2.8,velocity,lower_ux,1.3681504726409912 +illusion_0.75L,ppo,14,2.8,velocity,lower_uy,0.15717625617980957 +illusion_0.75L,ppo,15,3.0,velocity,upper_ux,0.8383539319038391 +illusion_0.75L,ppo,15,3.0,velocity,upper_uy,-0.13166198134422302 +illusion_0.75L,ppo,15,3.0,velocity,center_ux,0.6935197710990906 +illusion_0.75L,ppo,15,3.0,velocity,center_uy,-0.39813873171806335 +illusion_0.75L,ppo,15,3.0,velocity,lower_ux,1.335505485534668 +illusion_0.75L,ppo,15,3.0,velocity,lower_uy,0.05540081486105919 +illusion_0.75L,ppo,16,3.2,velocity,upper_ux,0.8650550246238708 +illusion_0.75L,ppo,16,3.2,velocity,upper_uy,-0.1637081503868103 +illusion_0.75L,ppo,16,3.2,velocity,center_ux,0.7115615606307983 +illusion_0.75L,ppo,16,3.2,velocity,center_uy,-0.48066142201423645 +illusion_0.75L,ppo,16,3.2,velocity,lower_ux,1.2700763940811157 +illusion_0.75L,ppo,16,3.2,velocity,lower_uy,-0.06309770792722702 +illusion_0.75L,ppo,17,3.4,velocity,upper_ux,0.8922516703605652 +illusion_0.75L,ppo,17,3.4,velocity,upper_uy,-0.19320371747016907 +illusion_0.75L,ppo,17,3.4,velocity,center_ux,0.7475188970565796 +illusion_0.75L,ppo,17,3.4,velocity,center_uy,-0.5095161199569702 +illusion_0.75L,ppo,17,3.4,velocity,lower_ux,1.1797888278961182 +illusion_0.75L,ppo,17,3.4,velocity,lower_uy,-0.18042802810668945 +illusion_0.75L,ppo,18,3.6,velocity,upper_ux,0.9217076301574707 +illusion_0.75L,ppo,18,3.6,velocity,upper_uy,-0.22067680954933167 +illusion_0.75L,ppo,18,3.6,velocity,center_ux,0.7913557291030884 +illusion_0.75L,ppo,18,3.6,velocity,center_uy,-0.507321298122406 +illusion_0.75L,ppo,18,3.6,velocity,lower_ux,1.0770549774169922 +illusion_0.75L,ppo,18,3.6,velocity,lower_uy,-0.27832266688346863 +illusion_0.75L,ppo,19,3.8,velocity,upper_ux,0.949574887752533 +illusion_0.75L,ppo,19,3.8,velocity,upper_uy,-0.242672398686409 +illusion_0.75L,ppo,19,3.8,velocity,center_ux,0.8268330097198486 +illusion_0.75L,ppo,19,3.8,velocity,center_uy,-0.5018881559371948 +illusion_0.75L,ppo,19,3.8,velocity,lower_ux,0.992016077041626 +illusion_0.75L,ppo,19,3.8,velocity,lower_uy,-0.3325606882572174 +illusion_0.75L,ppo,20,4.0,velocity,upper_ux,0.9795073866844177 +illusion_0.75L,ppo,20,4.0,velocity,upper_uy,-0.26303181052207947 +illusion_0.75L,ppo,20,4.0,velocity,center_ux,0.8560276627540588 +illusion_0.75L,ppo,20,4.0,velocity,center_uy,-0.5030277967453003 +illusion_0.75L,ppo,20,4.0,velocity,lower_ux,0.9218151569366455 +illusion_0.75L,ppo,20,4.0,velocity,lower_uy,-0.35261374711990356 +illusion_0.75L,ppo,21,4.2,velocity,upper_ux,1.0100655555725098 +illusion_0.75L,ppo,21,4.2,velocity,upper_uy,-0.2808694541454315 +illusion_0.75L,ppo,21,4.2,velocity,center_ux,0.8781089186668396 +illusion_0.75L,ppo,21,4.2,velocity,center_uy,-0.5103241801261902 +illusion_0.75L,ppo,21,4.2,velocity,lower_ux,0.8713051676750183 +illusion_0.75L,ppo,21,4.2,velocity,lower_uy,-0.3449153006076813 +illusion_0.75L,ppo,22,4.4,velocity,upper_ux,1.0415102243423462 +illusion_0.75L,ppo,22,4.4,velocity,upper_uy,-0.2964867651462555 +illusion_0.75L,ppo,22,4.4,velocity,center_ux,0.8946138620376587 +illusion_0.75L,ppo,22,4.4,velocity,center_uy,-0.5208945274353027 +illusion_0.75L,ppo,22,4.4,velocity,lower_ux,0.8350192308425903 +illusion_0.75L,ppo,22,4.4,velocity,lower_uy,-0.32108113169670105 +illusion_0.75L,ppo,23,4.6,velocity,upper_ux,1.074157953262329 +illusion_0.75L,ppo,23,4.6,velocity,upper_uy,-0.30984339118003845 +illusion_0.75L,ppo,23,4.6,velocity,center_ux,0.9058464169502258 +illusion_0.75L,ppo,23,4.6,velocity,center_uy,-0.5316174626350403 +illusion_0.75L,ppo,23,4.6,velocity,lower_ux,0.8063734173774719 +illusion_0.75L,ppo,23,4.6,velocity,lower_uy,-0.2887667417526245 +illusion_0.75L,ppo,24,4.8,velocity,upper_ux,1.1082205772399902 +illusion_0.75L,ppo,24,4.8,velocity,upper_uy,-0.32093581557273865 +illusion_0.75L,ppo,24,4.8,velocity,center_ux,0.9109737277030945 +illusion_0.75L,ppo,24,4.8,velocity,center_uy,-0.537932276725769 +illusion_0.75L,ppo,24,4.8,velocity,lower_ux,0.7810915112495422 +illusion_0.75L,ppo,24,4.8,velocity,lower_uy,-0.2506997883319855 +illusion_0.75L,ppo,25,5.0,velocity,upper_ux,1.1441651582717896 +illusion_0.75L,ppo,25,5.0,velocity,upper_uy,-0.32954055070877075 +illusion_0.75L,ppo,25,5.0,velocity,center_ux,0.9086477756500244 +illusion_0.75L,ppo,25,5.0,velocity,center_uy,-0.5326865911483765 +illusion_0.75L,ppo,25,5.0,velocity,lower_ux,0.7585962414741516 +illusion_0.75L,ppo,25,5.0,velocity,lower_uy,-0.20747295022010803 +illusion_0.75L,ppo,26,5.2,velocity,upper_ux,1.1824003458023071 +illusion_0.75L,ppo,26,5.2,velocity,upper_uy,-0.3350416123867035 +illusion_0.75L,ppo,26,5.2,velocity,center_ux,0.8972944021224976 +illusion_0.75L,ppo,26,5.2,velocity,center_uy,-0.5064194202423096 +illusion_0.75L,ppo,26,5.2,velocity,lower_ux,0.7407556176185608 +illusion_0.75L,ppo,26,5.2,velocity,lower_uy,-0.15968061983585358 +illusion_0.75L,ppo,27,5.4,velocity,upper_ux,1.2230219841003418 +illusion_0.75L,ppo,27,5.4,velocity,upper_uy,-0.33637088537216187 +illusion_0.75L,ppo,27,5.4,velocity,center_ux,0.8761972188949585 +illusion_0.75L,ppo,27,5.4,velocity,center_uy,-0.4499073028564453 +illusion_0.75L,ppo,27,5.4,velocity,lower_ux,0.7309938073158264 +illusion_0.75L,ppo,27,5.4,velocity,lower_uy,-0.10950717329978943 +illusion_0.75L,ppo,28,5.6,velocity,upper_ux,1.2649593353271484 +illusion_0.75L,ppo,28,5.6,velocity,upper_uy,-0.33169886469841003 +illusion_0.75L,ppo,28,5.6,velocity,center_ux,0.845669150352478 +illusion_0.75L,ppo,28,5.6,velocity,center_uy,-0.35733792185783386 +illusion_0.75L,ppo,28,5.6,velocity,lower_ux,0.7319624423980713 +illusion_0.75L,ppo,28,5.6,velocity,lower_uy,-0.060386016964912415 +illusion_0.75L,ppo,29,5.8,velocity,upper_ux,1.3060638904571533 +illusion_0.75L,ppo,29,5.8,velocity,upper_uy,-0.3177422285079956 +illusion_0.75L,ppo,29,5.8,velocity,center_ux,0.8086344003677368 +illusion_0.75L,ppo,29,5.8,velocity,center_uy,-0.2288704514503479 +illusion_0.75L,ppo,29,5.8,velocity,lower_ux,0.7448009252548218 +illusion_0.75L,ppo,29,5.8,velocity,lower_uy,-0.01602230593562126 +illusion_0.75L,ppo,30,6.0,velocity,upper_ux,1.3413825035095215 +illusion_0.75L,ppo,30,6.0,velocity,upper_uy,-0.2893260717391968 +illusion_0.75L,ppo,30,6.0,velocity,center_ux,0.7700660228729248 +illusion_0.75L,ppo,30,6.0,velocity,center_uy,-0.07119150459766388 +illusion_0.75L,ppo,30,6.0,velocity,lower_ux,0.7674021124839783 +illusion_0.75L,ppo,30,6.0,velocity,lower_uy,0.02206611819565296 +illusion_0.75L,ppo,31,6.2,velocity,upper_ux,1.3624343872070312 +illusion_0.75L,ppo,31,6.2,velocity,upper_uy,-0.2396799623966217 +illusion_0.75L,ppo,31,6.2,velocity,center_ux,0.737022340297699 +illusion_0.75L,ppo,31,6.2,velocity,center_uy,0.10114030539989471 +illusion_0.75L,ppo,31,6.2,velocity,lower_ux,0.7949622273445129 +illusion_0.75L,ppo,31,6.2,velocity,lower_uy,0.05528497323393822 +illusion_0.75L,ppo,32,6.4,velocity,upper_ux,1.3582367897033691 +illusion_0.75L,ppo,32,6.4,velocity,upper_uy,-0.16158954799175262 +illusion_0.75L,ppo,32,6.4,velocity,center_ux,0.7167710661888123 +illusion_0.75L,ppo,32,6.4,velocity,center_uy,0.269100159406662 +illusion_0.75L,ppo,32,6.4,velocity,lower_ux,0.8231750726699829 +illusion_0.75L,ppo,32,6.4,velocity,lower_uy,0.08702047169208527 +illusion_0.75L,ppo,33,6.6,velocity,upper_ux,1.3198137283325195 +illusion_0.75L,ppo,33,6.6,velocity,upper_uy,-0.055168524384498596 +illusion_0.75L,ppo,33,6.6,velocity,center_ux,0.7169463634490967 +illusion_0.75L,ppo,33,6.6,velocity,center_uy,0.4032692313194275 +illusion_0.75L,ppo,33,6.6,velocity,lower_ux,0.8499706983566284 +illusion_0.75L,ppo,33,6.6,velocity,lower_uy,0.1180761530995369 +illusion_0.75L,ppo,34,6.8,velocity,upper_ux,1.2458600997924805 +illusion_0.75L,ppo,34,6.8,velocity,upper_uy,0.07083765417337418 +illusion_0.75L,ppo,34,6.8,velocity,center_ux,0.7407264709472656 +illusion_0.75L,ppo,34,6.8,velocity,center_uy,0.4820649325847626 +illusion_0.75L,ppo,34,6.8,velocity,lower_ux,0.8762075304985046 +illusion_0.75L,ppo,34,6.8,velocity,lower_uy,0.14756445586681366 +illusion_0.75L,ppo,35,7.0,velocity,upper_ux,1.1466506719589233 +illusion_0.75L,ppo,35,7.0,velocity,upper_uy,0.1956562101840973 +illusion_0.75L,ppo,35,7.0,velocity,center_ux,0.7824046611785889 +illusion_0.75L,ppo,35,7.0,velocity,center_uy,0.5060961842536926 +illusion_0.75L,ppo,35,7.0,velocity,lower_ux,0.9026395678520203 +illusion_0.75L,ppo,35,7.0,velocity,lower_uy,0.17419816553592682 +illusion_0.75L,ppo,36,7.2,velocity,upper_ux,1.0405280590057373 +illusion_0.75L,ppo,36,7.2,velocity,upper_uy,0.29625529050827026 +illusion_0.75L,ppo,36,7.2,velocity,center_ux,0.8291559815406799 +illusion_0.75L,ppo,36,7.2,velocity,center_uy,0.502060055732727 +illusion_0.75L,ppo,36,7.2,velocity,lower_ux,0.9293434619903564 +illusion_0.75L,ppo,36,7.2,velocity,lower_uy,0.19734437763690948 +illusion_0.75L,ppo,37,7.4,velocity,upper_ux,0.9469457268714905 +illusion_0.75L,ppo,37,7.4,velocity,upper_uy,0.3572777807712555 +illusion_0.75L,ppo,37,7.4,velocity,center_ux,0.8715416193008423 +illusion_0.75L,ppo,37,7.4,velocity,center_uy,0.4948819875717163 +illusion_0.75L,ppo,37,7.4,velocity,lower_ux,0.9563279151916504 +illusion_0.75L,ppo,37,7.4,velocity,lower_uy,0.21719521284103394 +illusion_0.75L,ppo,38,7.6,velocity,upper_ux,0.8748647570610046 +illusion_0.75L,ppo,38,7.6,velocity,upper_uy,0.3795948326587677 +illusion_0.75L,ppo,38,7.6,velocity,center_ux,0.9076694250106812 +illusion_0.75L,ppo,38,7.6,velocity,center_uy,0.4921993613243103 +illusion_0.75L,ppo,38,7.6,velocity,lower_ux,0.983703076839447 +illusion_0.75L,ppo,38,7.6,velocity,lower_uy,0.23422206938266754 +illusion_0.75L,ppo,39,7.8,velocity,upper_ux,0.8235576748847961 +illusion_0.75L,ppo,39,7.8,velocity,upper_uy,0.37323471903800964 +illusion_0.75L,ppo,39,7.8,velocity,center_ux,0.9382051229476929 +illusion_0.75L,ppo,39,7.8,velocity,center_uy,0.4932290017604828 +illusion_0.75L,ppo,39,7.8,velocity,lower_ux,1.0112961530685425 +illusion_0.75L,ppo,39,7.8,velocity,lower_uy,0.248891219496727 +illusion_0.75L,ppo,40,8.0,velocity,upper_ux,0.7858210206031799 +illusion_0.75L,ppo,40,8.0,velocity,upper_uy,0.3493804633617401 +illusion_0.75L,ppo,40,8.0,velocity,center_ux,0.9639105796813965 +illusion_0.75L,ppo,40,8.0,velocity,center_uy,0.496359258890152 +illusion_0.75L,ppo,40,8.0,velocity,lower_ux,1.0390982627868652 +illusion_0.75L,ppo,40,8.0,velocity,lower_uy,0.2614436745643616 +illusion_0.75L,ppo,41,8.2,velocity,upper_ux,0.7552905082702637 +illusion_0.75L,ppo,41,8.2,velocity,upper_uy,0.3145279586315155 +illusion_0.75L,ppo,41,8.2,velocity,center_ux,0.9849074482917786 +illusion_0.75L,ppo,41,8.2,velocity,center_uy,0.4997435510158539 +illusion_0.75L,ppo,41,8.2,velocity,lower_ux,1.0671063661575317 +illusion_0.75L,ppo,41,8.2,velocity,lower_uy,0.2721042037010193 +illusion_0.75L,ppo,42,8.4,velocity,upper_ux,0.7278960347175598 +illusion_0.75L,ppo,42,8.4,velocity,upper_uy,0.2701665461063385 +illusion_0.75L,ppo,42,8.4,velocity,center_ux,1.0008933544158936 +illusion_0.75L,ppo,42,8.4,velocity,center_uy,0.5005009174346924 +illusion_0.75L,ppo,42,8.4,velocity,lower_ux,1.0958199501037598 +illusion_0.75L,ppo,42,8.4,velocity,lower_uy,0.2811141610145569 +illusion_0.75L,ppo,43,8.6,velocity,upper_ux,0.703193187713623 +illusion_0.75L,ppo,43,8.6,velocity,upper_uy,0.21676860749721527 +illusion_0.75L,ppo,43,8.6,velocity,center_ux,1.0102390050888062 +illusion_0.75L,ppo,43,8.6,velocity,center_uy,0.49396610260009766 +illusion_0.75L,ppo,43,8.6,velocity,lower_ux,1.1251981258392334 +illusion_0.75L,ppo,43,8.6,velocity,lower_uy,0.2882515788078308 +illusion_0.75L,ppo,44,8.8,velocity,upper_ux,0.6831754446029663 +illusion_0.75L,ppo,44,8.8,velocity,upper_uy,0.155450239777565 +illusion_0.75L,ppo,44,8.8,velocity,center_ux,1.0108758211135864 +illusion_0.75L,ppo,44,8.8,velocity,center_uy,0.4737027883529663 +illusion_0.75L,ppo,44,8.8,velocity,lower_ux,1.1555598974227905 +illusion_0.75L,ppo,44,8.8,velocity,lower_uy,0.29330193996429443 +illusion_0.75L,ppo,45,9.0,velocity,upper_ux,0.6719698309898376 +illusion_0.75L,ppo,45,9.0,velocity,upper_uy,0.09039857238531113 +illusion_0.75L,ppo,45,9.0,velocity,center_ux,1.000794529914856 +illusion_0.75L,ppo,45,9.0,velocity,center_uy,0.4323057532310486 +illusion_0.75L,ppo,45,9.0,velocity,lower_ux,1.1871142387390137 +illusion_0.75L,ppo,45,9.0,velocity,lower_uy,0.29571622610092163 +illusion_0.75L,ppo,46,9.2,velocity,upper_ux,0.6740807890892029 +illusion_0.75L,ppo,46,9.2,velocity,upper_uy,0.027487672865390778 +illusion_0.75L,ppo,46,9.2,velocity,center_ux,0.978413999080658 +illusion_0.75L,ppo,46,9.2,velocity,center_uy,0.3620994985103607 +illusion_0.75L,ppo,46,9.2,velocity,lower_ux,1.220004916191101 +illusion_0.75L,ppo,46,9.2,velocity,lower_uy,0.2945947051048279 +illusion_0.75L,ppo,47,9.4,velocity,upper_ux,0.6926032304763794 +illusion_0.75L,ppo,47,9.4,velocity,upper_uy,-0.025114309042692184 +illusion_0.75L,ppo,47,9.4,velocity,center_ux,0.9437094330787659 +illusion_0.75L,ppo,47,9.4,velocity,center_uy,0.2587355375289917 +illusion_0.75L,ppo,47,9.4,velocity,lower_ux,1.2530032396316528 +illusion_0.75L,ppo,47,9.4,velocity,lower_uy,0.2880385220050812 +illusion_0.75L,ppo,48,9.6,velocity,upper_ux,0.726378321647644 +illusion_0.75L,ppo,48,9.6,velocity,upper_uy,-0.062232855707407 +illusion_0.75L,ppo,48,9.6,velocity,center_ux,0.8998827934265137 +illusion_0.75L,ppo,48,9.6,velocity,center_uy,0.12418289482593536 +illusion_0.75L,ppo,48,9.6,velocity,lower_ux,1.2840806245803833 +illusion_0.75L,ppo,48,9.6,velocity,lower_uy,0.2733032703399658 +illusion_0.75L,ppo,49,9.8,velocity,upper_ux,0.7691031098365784 +illusion_0.75L,ppo,49,9.8,velocity,upper_uy,-0.08642810583114624 +illusion_0.75L,ppo,49,9.8,velocity,center_ux,0.8513824939727783 +illusion_0.75L,ppo,49,9.8,velocity,center_uy,-0.03467903658747673 +illusion_0.75L,ppo,49,9.8,velocity,lower_ux,1.3094758987426758 +illusion_0.75L,ppo,49,9.8,velocity,lower_uy,0.24648334085941315 +illusion_0.75L,ppo,50,10.0,velocity,upper_ux,0.811514139175415 +illusion_0.75L,ppo,50,10.0,velocity,upper_uy,-0.10523390024900436 +illusion_0.75L,ppo,50,10.0,velocity,center_ux,0.8064190149307251 +illusion_0.75L,ppo,50,10.0,velocity,center_uy,-0.19823123514652252 +illusion_0.75L,ppo,50,10.0,velocity,lower_ux,1.3220399618148804 +illusion_0.75L,ppo,50,10.0,velocity,lower_uy,0.20292460918426514 +illusion_0.75L,ppo,51,10.2,velocity,upper_ux,0.8482096195220947 +illusion_0.75L,ppo,51,10.2,velocity,upper_uy,-0.12610004842281342 +illusion_0.75L,ppo,51,10.2,velocity,center_ux,0.7761588096618652 +illusion_0.75L,ppo,51,10.2,velocity,center_uy,-0.33669620752334595 +illusion_0.75L,ppo,51,10.2,velocity,lower_ux,1.3134382963180542 +illusion_0.75L,ppo,51,10.2,velocity,lower_uy,0.13930672407150269 +illusion_0.75L,ppo,52,10.4,velocity,upper_ux,0.8796311020851135 +illusion_0.75L,ppo,52,10.4,velocity,upper_uy,-0.15063166618347168 +illusion_0.75L,ppo,52,10.4,velocity,center_ux,0.7703807950019836 +illusion_0.75L,ppo,52,10.4,velocity,center_uy,-0.42153143882751465 +illusion_0.75L,ppo,52,10.4,velocity,lower_ux,1.277083396911621 +illusion_0.75L,ppo,52,10.4,velocity,lower_uy,0.055861469358205795 +illusion_0.75L,ppo,53,10.6,velocity,upper_ux,0.9081963896751404 +illusion_0.75L,ppo,53,10.6,velocity,upper_uy,-0.1762615144252777 +illusion_0.75L,ppo,53,10.6,velocity,center_ux,0.7887864112854004 +illusion_0.75L,ppo,53,10.6,velocity,center_uy,-0.4466922879219055 +illusion_0.75L,ppo,53,10.6,velocity,lower_ux,1.2131156921386719 +illusion_0.75L,ppo,53,10.6,velocity,lower_uy,-0.038412511348724365 +illusion_0.75L,ppo,54,10.8,velocity,upper_ux,0.936329185962677 +illusion_0.75L,ppo,54,10.8,velocity,upper_uy,-0.2006504088640213 +illusion_0.75L,ppo,54,10.8,velocity,center_ux,0.8189956545829773 +illusion_0.75L,ppo,54,10.8,velocity,center_uy,-0.43847334384918213 +illusion_0.75L,ppo,54,10.8,velocity,lower_ux,1.1285033226013184 +illusion_0.75L,ppo,54,10.8,velocity,lower_uy,-0.13076652586460114 +illusion_0.75L,ppo,55,11.0,velocity,upper_ux,0.9645627737045288 +illusion_0.75L,ppo,55,11.0,velocity,upper_uy,-0.22277210652828217 +illusion_0.75L,ppo,55,11.0,velocity,center_ux,0.846244215965271 +illusion_0.75L,ppo,55,11.0,velocity,center_uy,-0.4293055236339569 +illusion_0.75L,ppo,55,11.0,velocity,lower_ux,1.0376975536346436 +illusion_0.75L,ppo,55,11.0,velocity,lower_uy,-0.20518918335437775 +illusion_0.75L,ppo,56,11.2,velocity,upper_ux,0.9937942624092102 +illusion_0.75L,ppo,56,11.2,velocity,upper_uy,-0.24266521632671356 +illusion_0.75L,ppo,56,11.2,velocity,center_ux,0.8652198910713196 +illusion_0.75L,ppo,56,11.2,velocity,center_uy,-0.43294692039489746 +illusion_0.75L,ppo,56,11.2,velocity,lower_ux,0.9548927545547485 +illusion_0.75L,ppo,56,11.2,velocity,lower_uy,-0.2526513338088989 +illusion_0.75L,ppo,57,11.4,velocity,upper_ux,1.0242499113082886 +illusion_0.75L,ppo,57,11.4,velocity,upper_uy,-0.260570764541626 +illusion_0.75L,ppo,57,11.4,velocity,center_ux,0.8769595623016357 +illusion_0.75L,ppo,57,11.4,velocity,center_uy,-0.4472307562828064 +illusion_0.75L,ppo,57,11.4,velocity,lower_ux,0.8888601660728455 +illusion_0.75L,ppo,57,11.4,velocity,lower_uy,-0.27221548557281494 +illusion_0.75L,ppo,58,11.6,velocity,upper_ux,1.0561790466308594 +illusion_0.75L,ppo,58,11.6,velocity,upper_uy,-0.27644479274749756 +illusion_0.75L,ppo,58,11.6,velocity,center_ux,0.8834919929504395 +illusion_0.75L,ppo,58,11.6,velocity,center_uy,-0.46660560369491577 +illusion_0.75L,ppo,58,11.6,velocity,lower_ux,0.8414560556411743 +illusion_0.75L,ppo,58,11.6,velocity,lower_uy,-0.2697875499725342 +illusion_0.75L,ppo,59,11.8,velocity,upper_ux,1.090451955795288 +illusion_0.75L,ppo,59,11.8,velocity,upper_uy,-0.2902778387069702 +illusion_0.75L,ppo,59,11.8,velocity,center_ux,0.8854917287826538 +illusion_0.75L,ppo,59,11.8,velocity,center_uy,-0.48683878779411316 +illusion_0.75L,ppo,59,11.8,velocity,lower_ux,0.8088123202323914 +illusion_0.75L,ppo,59,11.8,velocity,lower_uy,-0.2532746493816376 +illusion_0.75L,ppo,60,12.0,velocity,upper_ux,1.1278080940246582 +illusion_0.75L,ppo,60,12.0,velocity,upper_uy,-0.301741361618042 +illusion_0.75L,ppo,60,12.0,velocity,center_ux,0.8820062279701233 +illusion_0.75L,ppo,60,12.0,velocity,center_uy,-0.5035340189933777 +illusion_0.75L,ppo,60,12.0,velocity,lower_ux,0.7855687737464905 +illusion_0.75L,ppo,60,12.0,velocity,lower_uy,-0.22867633402347565 +illusion_0.75L,ppo,61,12.2,velocity,upper_ux,1.1688146591186523 +illusion_0.75L,ppo,61,12.2,velocity,upper_uy,-0.31021741032600403 +illusion_0.75L,ppo,61,12.2,velocity,center_ux,0.8708811402320862 +illusion_0.75L,ppo,61,12.2,velocity,center_uy,-0.510445237159729 +illusion_0.75L,ppo,61,12.2,velocity,lower_ux,0.7674829363822937 +illusion_0.75L,ppo,61,12.2,velocity,lower_uy,-0.19887828826904297 +illusion_0.75L,ppo,62,12.4,velocity,upper_ux,1.2141691446304321 +illusion_0.75L,ppo,62,12.4,velocity,upper_uy,-0.31440213322639465 +illusion_0.75L,ppo,62,12.4,velocity,center_ux,0.850251317024231 +illusion_0.75L,ppo,62,12.4,velocity,center_uy,-0.49829837679862976 +illusion_0.75L,ppo,62,12.4,velocity,lower_ux,0.75340735912323 +illusion_0.75L,ppo,62,12.4,velocity,lower_uy,-0.16478203237056732 +illusion_0.75L,ppo,63,12.6,velocity,upper_ux,1.2642159461975098 +illusion_0.75L,ppo,63,12.6,velocity,upper_uy,-0.3116200268268585 +illusion_0.75L,ppo,63,12.6,velocity,center_ux,0.8197222352027893 +illusion_0.75L,ppo,63,12.6,velocity,center_uy,-0.4548646807670593 +illusion_0.75L,ppo,63,12.6,velocity,lower_ux,0.7446226477622986 +illusion_0.75L,ppo,63,12.6,velocity,lower_uy,-0.1268516331911087 +illusion_0.75L,ppo,64,12.8,velocity,upper_ux,1.317081093788147 +illusion_0.75L,ppo,64,12.8,velocity,upper_uy,-0.29688307642936707 +illusion_0.75L,ppo,64,12.8,velocity,center_ux,0.78216552734375 +illusion_0.75L,ppo,64,12.8,velocity,center_uy,-0.3686521649360657 +illusion_0.75L,ppo,64,12.8,velocity,lower_ux,0.7436060905456543 +illusion_0.75L,ppo,64,12.8,velocity,lower_uy,-0.08671025931835175 +illusion_0.75L,ppo,65,13.0,velocity,upper_ux,1.366714358329773 +illusion_0.75L,ppo,65,13.0,velocity,upper_uy,-0.2616785764694214 +illusion_0.75L,ppo,65,13.0,velocity,center_ux,0.7444795966148376 +illusion_0.75L,ppo,65,13.0,velocity,center_uy,-0.23599936068058014 +illusion_0.75L,ppo,65,13.0,velocity,lower_ux,0.7526484131813049 +illusion_0.75L,ppo,65,13.0,velocity,lower_uy,-0.04725566878914833 +illusion_0.75L,ppo,66,13.2,velocity,upper_ux,1.4009169340133667 +illusion_0.75L,ppo,66,13.2,velocity,upper_uy,-0.1957978755235672 +illusion_0.75L,ppo,66,13.2,velocity,center_ux,0.7153192162513733 +illusion_0.75L,ppo,66,13.2,velocity,center_uy,-0.06703769415616989 +illusion_0.75L,ppo,66,13.2,velocity,lower_ux,0.7719941139221191 +illusion_0.75L,ppo,66,13.2,velocity,lower_uy,-0.011218843050301075 +illusion_0.75L,ppo,67,13.4,velocity,upper_ux,1.4064269065856934 +illusion_0.75L,ppo,67,13.4,velocity,upper_uy,-0.09498745203018188 +illusion_0.75L,ppo,67,13.4,velocity,center_ux,0.7021126747131348 +illusion_0.75L,ppo,67,13.4,velocity,center_uy,0.11609411984682083 +illusion_0.75L,ppo,67,13.4,velocity,lower_ux,0.7994693517684937 +illusion_0.75L,ppo,67,13.4,velocity,lower_uy,0.020463738590478897 +illusion_0.75L,ppo,68,13.6,velocity,upper_ux,1.377192735671997 +illusion_0.75L,ppo,68,13.6,velocity,upper_uy,0.02941594086587429 +illusion_0.75L,ppo,68,13.6,velocity,center_ux,0.7077536582946777 +illusion_0.75L,ppo,68,13.6,velocity,center_uy,0.28616225719451904 +illusion_0.75L,ppo,68,13.6,velocity,lower_ux,0.8301799893379211 +illusion_0.75L,ppo,68,13.6,velocity,lower_uy,0.0498068705201149 +illusion_0.75L,ppo,69,13.8,velocity,upper_ux,1.319463849067688 +illusion_0.75L,ppo,69,13.8,velocity,upper_uy,0.15300798416137695 +illusion_0.75L,ppo,69,13.8,velocity,center_ux,0.7311360239982605 +illusion_0.75L,ppo,69,13.8,velocity,center_uy,0.4174753427505493 +illusion_0.75L,ppo,69,13.8,velocity,lower_ux,0.859790027141571 +illusion_0.75L,ppo,69,13.8,velocity,lower_uy,0.07925379276275635 +illusion_0.75L,ppo,70,14.0,velocity,upper_ux,1.246247410774231 +illusion_0.75L,ppo,70,14.0,velocity,upper_uy,0.2517379820346832 +illusion_0.75L,ppo,70,14.0,velocity,center_ux,0.7689142823219299 +illusion_0.75L,ppo,70,14.0,velocity,center_uy,0.49244463443756104 +illusion_0.75L,ppo,70,14.0,velocity,lower_ux,0.8874353170394897 +illusion_0.75L,ppo,70,14.0,velocity,lower_uy,0.1097939983010292 +illusion_0.75L,ppo,71,14.2,velocity,upper_ux,1.1710602045059204 +illusion_0.75L,ppo,71,14.2,velocity,upper_uy,0.31121671199798584 +illusion_0.75L,ppo,71,14.2,velocity,center_ux,0.8152014017105103 +illusion_0.75L,ppo,71,14.2,velocity,center_uy,0.508342981338501 +illusion_0.75L,ppo,71,14.2,velocity,lower_ux,0.9143118262290955 +illusion_0.75L,ppo,71,14.2,velocity,lower_uy,0.13958191871643066 +illusion_0.75L,ppo,72,14.4,velocity,upper_ux,1.1034907102584839 +illusion_0.75L,ppo,72,14.4,velocity,upper_uy,0.330412358045578 +illusion_0.75L,ppo,72,14.4,velocity,center_ux,0.8610953688621521 +illusion_0.75L,ppo,72,14.4,velocity,center_uy,0.4872466027736664 +illusion_0.75L,ppo,72,14.4,velocity,lower_ux,0.94145667552948 +illusion_0.75L,ppo,72,14.4,velocity,lower_uy,0.16687436401844025 +illusion_0.75L,ppo,73,14.6,velocity,upper_ux,1.0485105514526367 +illusion_0.75L,ppo,73,14.6,velocity,upper_uy,0.3190830945968628 +illusion_0.75L,ppo,73,14.6,velocity,center_ux,0.8986163139343262 +illusion_0.75L,ppo,73,14.6,velocity,center_uy,0.46101444959640503 +illusion_0.75L,ppo,73,14.6,velocity,lower_ux,0.9692158699035645 +illusion_0.75L,ppo,73,14.6,velocity,lower_uy,0.19068294763565063 +illusion_0.75L,ppo,74,14.8,velocity,upper_ux,1.0047742128372192 +illusion_0.75L,ppo,74,14.8,velocity,upper_uy,0.2900371253490448 +illusion_0.75L,ppo,74,14.8,velocity,center_ux,0.9254305362701416 +illusion_0.75L,ppo,74,14.8,velocity,center_uy,0.44475841522216797 +illusion_0.75L,ppo,74,14.8,velocity,lower_ux,0.9976708889007568 +illusion_0.75L,ppo,74,14.8,velocity,lower_uy,0.21123966574668884 +illusion_0.75L,ppo,75,15.0,velocity,upper_ux,0.9692562222480774 +illusion_0.75L,ppo,75,15.0,velocity,upper_uy,0.2527337670326233 +illusion_0.75L,ppo,75,15.0,velocity,center_ux,0.942918062210083 +illusion_0.75L,ppo,75,15.0,velocity,center_uy,0.43717247247695923 +illusion_0.75L,ppo,75,15.0,velocity,lower_ux,1.0268735885620117 +illusion_0.75L,ppo,75,15.0,velocity,lower_uy,0.22887638211250305 +illusion_0.75L,ppo,76,15.2,velocity,upper_ux,0.9386964440345764 +illusion_0.75L,ppo,76,15.2,velocity,upper_uy,0.21125651895999908 +illusion_0.75L,ppo,76,15.2,velocity,center_ux,0.952311098575592 +illusion_0.75L,ppo,76,15.2,velocity,center_uy,0.43249788880348206 +illusion_0.75L,ppo,76,15.2,velocity,lower_ux,1.057182788848877 +illusion_0.75L,ppo,76,15.2,velocity,lower_uy,0.24407468736171722 +illusion_0.75L,ppo,77,15.4,velocity,upper_ux,0.9134692549705505 +illusion_0.75L,ppo,77,15.4,velocity,upper_uy,0.16899311542510986 +illusion_0.75L,ppo,77,15.4,velocity,center_ux,0.9534772634506226 +illusion_0.75L,ppo,77,15.4,velocity,center_uy,0.4252088963985443 +illusion_0.75L,ppo,77,15.4,velocity,lower_ux,1.0875414609909058 +illusion_0.75L,ppo,77,15.4,velocity,lower_uy,0.2564336955547333 +illusion_0.75L,ppo,78,15.6,velocity,upper_ux,0.8936530947685242 +illusion_0.75L,ppo,78,15.6,velocity,upper_uy,0.12529492378234863 +illusion_0.75L,ppo,78,15.6,velocity,center_ux,0.9458209276199341 +illusion_0.75L,ppo,78,15.6,velocity,center_uy,0.40821373462677 +illusion_0.75L,ppo,78,15.6,velocity,lower_ux,1.1198025941848755 +illusion_0.75L,ppo,78,15.6,velocity,lower_uy,0.2662646174430847 +illusion_0.75L,ppo,79,15.8,velocity,upper_ux,0.88097083568573 +illusion_0.75L,ppo,79,15.8,velocity,upper_uy,0.08211705833673477 +illusion_0.75L,ppo,79,15.8,velocity,center_ux,0.9281089305877686 +illusion_0.75L,ppo,79,15.8,velocity,center_uy,0.37380513548851013 +illusion_0.75L,ppo,79,15.8,velocity,lower_ux,1.153587818145752 +illusion_0.75L,ppo,79,15.8,velocity,lower_uy,0.27278071641921997 +illusion_0.75L,ppo,80,16.0,velocity,upper_ux,0.8757877945899963 +illusion_0.75L,ppo,80,16.0,velocity,upper_uy,0.040625423192977905 +illusion_0.75L,ppo,80,16.0,velocity,center_ux,0.8997563123703003 +illusion_0.75L,ppo,80,16.0,velocity,center_uy,0.314638614654541 +illusion_0.75L,ppo,80,16.0,velocity,lower_ux,1.188696265220642 +illusion_0.75L,ppo,80,16.0,velocity,lower_uy,0.274916410446167 +illusion_0.75L,ppo,81,16.2,velocity,upper_ux,0.8774953484535217 +illusion_0.75L,ppo,81,16.2,velocity,upper_uy,0.0013477928005158901 +illusion_0.75L,ppo,81,16.2,velocity,center_ux,0.8621981143951416 +illusion_0.75L,ppo,81,16.2,velocity,center_uy,0.22619885206222534 +illusion_0.75L,ppo,81,16.2,velocity,lower_ux,1.2245200872421265 +illusion_0.75L,ppo,81,16.2,velocity,lower_uy,0.27076849341392517 +illusion_0.75L,ppo,82,16.4,velocity,upper_ux,0.8847463726997375 +illusion_0.75L,ppo,82,16.4,velocity,upper_uy,-0.0358395017683506 +illusion_0.75L,ppo,82,16.4,velocity,center_ux,0.8199170827865601 +illusion_0.75L,ppo,82,16.4,velocity,center_uy,0.11038099974393845 +illusion_0.75L,ppo,82,16.4,velocity,lower_ux,1.2588955163955688 +illusion_0.75L,ppo,82,16.4,velocity,lower_uy,0.2572101354598999 +illusion_0.75L,ppo,83,16.6,velocity,upper_ux,0.8958829641342163 +illusion_0.75L,ppo,83,16.6,velocity,upper_uy,-0.07146187126636505 +illusion_0.75L,ppo,83,16.6,velocity,center_ux,0.7792536020278931 +illusion_0.75L,ppo,83,16.6,velocity,center_uy,-0.023788776248693466 +illusion_0.75L,ppo,83,16.6,velocity,lower_ux,1.2870051860809326 +illusion_0.75L,ppo,83,16.6,velocity,lower_uy,0.22902211546897888 +illusion_0.75L,ppo,84,16.8,velocity,upper_ux,0.9102797508239746 +illusion_0.75L,ppo,84,16.8,velocity,upper_uy,-0.10568107664585114 +illusion_0.75L,ppo,84,16.8,velocity,center_ux,0.7485330104827881 +illusion_0.75L,ppo,84,16.8,velocity,center_uy,-0.15912139415740967 +illusion_0.75L,ppo,84,16.8,velocity,lower_ux,1.3009544610977173 +illusion_0.75L,ppo,84,16.8,velocity,lower_uy,0.1796228438615799 +illusion_0.75L,ppo,85,17.0,velocity,upper_ux,0.9274229407310486 +illusion_0.75L,ppo,85,17.0,velocity,upper_uy,-0.1379583179950714 +illusion_0.75L,ppo,85,17.0,velocity,center_ux,0.73492830991745 +illusion_0.75L,ppo,85,17.0,velocity,center_uy,-0.27397269010543823 +illusion_0.75L,ppo,85,17.0,velocity,lower_ux,1.2906993627548218 +illusion_0.75L,ppo,85,17.0,velocity,lower_uy,0.10447666794061661 +illusion_0.75L,ppo,86,17.2,velocity,upper_ux,0.9474117159843445 +illusion_0.75L,ppo,86,17.2,velocity,upper_uy,-0.16834300756454468 +illusion_0.75L,ppo,86,17.2,velocity,center_ux,0.740791380405426 +illusion_0.75L,ppo,86,17.2,velocity,center_uy,-0.3544924557209015 +illusion_0.75L,ppo,86,17.2,velocity,lower_ux,1.2504281997680664 +illusion_0.75L,ppo,86,17.2,velocity,lower_uy,0.006823917850852013 +illusion_0.75L,ppo,87,17.4,velocity,upper_ux,0.9698984622955322 +illusion_0.75L,ppo,87,17.4,velocity,upper_uy,-0.19673748314380646 +illusion_0.75L,ppo,87,17.4,velocity,center_ux,0.7605483531951904 +illusion_0.75L,ppo,87,17.4,velocity,center_uy,-0.402119517326355 +illusion_0.75L,ppo,87,17.4,velocity,lower_ux,1.1838769912719727 +illusion_0.75L,ppo,87,17.4,velocity,lower_uy,-0.09825069457292557 +illusion_0.75L,ppo,88,17.6,velocity,upper_ux,0.9947057962417603 +illusion_0.75L,ppo,88,17.6,velocity,upper_uy,-0.22318081557750702 +illusion_0.75L,ppo,88,17.6,velocity,center_ux,0.7843164205551147 +illusion_0.75L,ppo,88,17.6,velocity,center_uy,-0.4308581054210663 +illusion_0.75L,ppo,88,17.6,velocity,lower_ux,1.1044102907180786 +illusion_0.75L,ppo,88,17.6,velocity,lower_uy,-0.18976829946041107 +illusion_0.75L,ppo,89,17.8,velocity,upper_ux,1.0222563743591309 +illusion_0.75L,ppo,89,17.8,velocity,upper_uy,-0.2478211373090744 +illusion_0.75L,ppo,89,17.8,velocity,center_ux,0.8048880696296692 +illusion_0.75L,ppo,89,17.8,velocity,center_uy,-0.4541415870189667 +illusion_0.75L,ppo,89,17.8,velocity,lower_ux,1.0266807079315186 +illusion_0.75L,ppo,89,17.8,velocity,lower_uy,-0.2531137466430664 +illusion_0.75L,ppo,90,18.0,velocity,upper_ux,1.052633285522461 +illusion_0.75L,ppo,90,18.0,velocity,upper_uy,-0.27056431770324707 +illusion_0.75L,ppo,90,18.0,velocity,center_ux,0.8191306591033936 +illusion_0.75L,ppo,90,18.0,velocity,center_uy,-0.47733643651008606 +illusion_0.75L,ppo,90,18.0,velocity,lower_ux,0.9605386853218079 +illusion_0.75L,ppo,90,18.0,velocity,lower_uy,-0.2843162715435028 +illusion_0.75L,ppo,91,18.2,velocity,upper_ux,1.086237907409668 +illusion_0.75L,ppo,91,18.2,velocity,upper_uy,-0.29150012135505676 +illusion_0.75L,ppo,91,18.2,velocity,center_ux,0.8261370062828064 +illusion_0.75L,ppo,91,18.2,velocity,center_uy,-0.5001294016838074 +illusion_0.75L,ppo,91,18.2,velocity,lower_ux,0.9078415036201477 +illusion_0.75L,ppo,91,18.2,velocity,lower_uy,-0.28887203335762024 +illusion_0.75L,ppo,92,18.4,velocity,upper_ux,1.1240975856781006 +illusion_0.75L,ppo,92,18.4,velocity,upper_uy,-0.31051546335220337 +illusion_0.75L,ppo,92,18.4,velocity,center_ux,0.8254578113555908 +illusion_0.75L,ppo,92,18.4,velocity,center_uy,-0.518593966960907 +illusion_0.75L,ppo,92,18.4,velocity,lower_ux,0.8669086694717407 +illusion_0.75L,ppo,92,18.4,velocity,lower_uy,-0.2745738923549652 +illusion_0.75L,ppo,93,18.6,velocity,upper_ux,1.1672325134277344 +illusion_0.75L,ppo,93,18.6,velocity,upper_uy,-0.3269837498664856 +illusion_0.75L,ppo,93,18.6,velocity,center_ux,0.8158865571022034 +illusion_0.75L,ppo,93,18.6,velocity,center_uy,-0.52571040391922 +illusion_0.75L,ppo,93,18.6,velocity,lower_ux,0.8349473476409912 +illusion_0.75L,ppo,93,18.6,velocity,lower_uy,-0.24759358167648315 +illusion_0.75L,ppo,94,18.8,velocity,upper_ux,1.2165025472640991 +illusion_0.75L,ppo,94,18.8,velocity,upper_uy,-0.33921200037002563 +illusion_0.75L,ppo,94,18.8,velocity,center_ux,0.7961316704750061 +illusion_0.75L,ppo,94,18.8,velocity,center_uy,-0.5113009214401245 +illusion_0.75L,ppo,94,18.8,velocity,lower_ux,0.8101052045822144 +illusion_0.75L,ppo,94,18.8,velocity,lower_uy,-0.21138110756874084 +illusion_0.75L,ppo,95,19.0,velocity,upper_ux,1.2717143297195435 +illusion_0.75L,ppo,95,19.0,velocity,upper_uy,-0.3429853022098541 +illusion_0.75L,ppo,95,19.0,velocity,center_ux,0.7667418718338013 +illusion_0.75L,ppo,95,19.0,velocity,center_uy,-0.46302658319473267 +illusion_0.75L,ppo,95,19.0,velocity,lower_ux,0.7925178408622742 +illusion_0.75L,ppo,95,19.0,velocity,lower_uy,-0.168093740940094 +illusion_0.75L,ppo,96,19.2,velocity,upper_ux,1.3290389776229858 +illusion_0.75L,ppo,96,19.2,velocity,upper_uy,-0.3285113573074341 +illusion_0.75L,ppo,96,19.2,velocity,center_ux,0.7318339347839355 +illusion_0.75L,ppo,96,19.2,velocity,center_uy,-0.370042622089386 +illusion_0.75L,ppo,96,19.2,velocity,lower_ux,0.7837775945663452 +illusion_0.75L,ppo,96,19.2,velocity,lower_uy,-0.11998795717954636 +illusion_0.75L,ppo,97,19.4,velocity,upper_ux,1.3767027854919434 +illusion_0.75L,ppo,97,19.4,velocity,upper_uy,-0.2794710099697113 +illusion_0.75L,ppo,97,19.4,velocity,center_ux,0.6993725299835205 +illusion_0.75L,ppo,97,19.4,velocity,center_uy,-0.23171623051166534 +illusion_0.75L,ppo,97,19.4,velocity,lower_ux,0.7858062982559204 +illusion_0.75L,ppo,97,19.4,velocity,lower_uy,-0.07069479674100876 +illusion_0.75L,ppo,98,19.6,velocity,upper_ux,1.3990309238433838 +illusion_0.75L,ppo,98,19.6,velocity,upper_uy,-0.1821831911802292 +illusion_0.75L,ppo,98,19.6,velocity,center_ux,0.6768264174461365 +illusion_0.75L,ppo,98,19.6,velocity,center_uy,-0.05889691784977913 +illusion_0.75L,ppo,98,19.6,velocity,lower_ux,0.7986357808113098 +illusion_0.75L,ppo,98,19.6,velocity,lower_uy,-0.023158663883805275 +illusion_0.75L,ppo,99,19.8,velocity,upper_ux,1.3877638578414917 +illusion_0.75L,ppo,99,19.8,velocity,upper_uy,-0.04467790946364403 +illusion_0.75L,ppo,99,19.8,velocity,center_ux,0.6692056059837341 +illusion_0.75L,ppo,99,19.8,velocity,center_uy,0.1260441094636917 +illusion_0.75L,ppo,99,19.8,velocity,lower_ux,0.8197256326675415 +illusion_0.75L,ppo,99,19.8,velocity,lower_uy,0.020922493189573288 +illusion_0.75L,ppo,100,20.0,velocity,upper_ux,1.3481297492980957 +illusion_0.75L,ppo,100,20.0,velocity,upper_uy,0.10597562044858932 +illusion_0.75L,ppo,100,20.0,velocity,center_ux,0.6780128479003906 +illusion_0.75L,ppo,100,20.0,velocity,center_uy,0.29968225955963135 +illusion_0.75L,ppo,100,20.0,velocity,lower_ux,0.8454747200012207 +illusion_0.75L,ppo,100,20.0,velocity,lower_uy,0.062360282987356186 +illusion_0.75L,ppo,101,20.2,velocity,upper_ux,1.2903715372085571 +illusion_0.75L,ppo,101,20.2,velocity,upper_uy,0.23945775628089905 +illusion_0.75L,ppo,101,20.2,velocity,center_ux,0.7022733092308044 +illusion_0.75L,ppo,101,20.2,velocity,center_uy,0.4386371672153473 +illusion_0.75L,ppo,101,20.2,velocity,lower_ux,0.8730806112289429 +illusion_0.75L,ppo,101,20.2,velocity,lower_uy,0.10220197588205338 +illusion_0.75L,ppo,102,20.4,velocity,upper_ux,1.2238610982894897 +illusion_0.75L,ppo,102,20.4,velocity,upper_uy,0.33492928743362427 +illusion_0.75L,ppo,102,20.4,velocity,center_ux,0.7389864921569824 +illusion_0.75L,ppo,102,20.4,velocity,center_uy,0.5242871046066284 +illusion_0.75L,ppo,102,20.4,velocity,lower_ux,0.901633083820343 +illusion_0.75L,ppo,102,20.4,velocity,lower_uy,0.13977687060832977 +illusion_0.75L,ppo,103,20.6,velocity,upper_ux,1.1570396423339844 +illusion_0.75L,ppo,103,20.6,velocity,upper_uy,0.38495951890945435 +illusion_0.75L,ppo,103,20.6,velocity,center_ux,0.7829503417015076 +illusion_0.75L,ppo,103,20.6,velocity,center_uy,0.5553833246231079 +illusion_0.75L,ppo,103,20.6,velocity,lower_ux,0.9319208264350891 +illusion_0.75L,ppo,103,20.6,velocity,lower_uy,0.1738339215517044 +illusion_0.75L,ppo,104,20.8,velocity,upper_ux,1.0958877801895142 +illusion_0.75L,ppo,104,20.8,velocity,upper_uy,0.39501702785491943 +illusion_0.75L,ppo,104,20.8,velocity,center_ux,0.8256649971008301 +illusion_0.75L,ppo,104,20.8,velocity,center_uy,0.5543543100357056 +illusion_0.75L,ppo,104,20.8,velocity,lower_ux,0.9642303586006165 +illusion_0.75L,ppo,104,20.8,velocity,lower_uy,0.20361921191215515 +illusion_0.75L,ppo,105,21.0,velocity,upper_ux,1.0425888299942017 +illusion_0.75L,ppo,105,21.0,velocity,upper_uy,0.3777800500392914 +illusion_0.75L,ppo,105,21.0,velocity,center_ux,0.8602049946784973 +illusion_0.75L,ppo,105,21.0,velocity,center_uy,0.5471542477607727 +illusion_0.75L,ppo,105,21.0,velocity,lower_ux,0.9983828663825989 +illusion_0.75L,ppo,105,21.0,velocity,lower_uy,0.22907279431819916 +illusion_0.75L,ppo,106,21.2,velocity,upper_ux,0.9956974983215332 +illusion_0.75L,ppo,106,21.2,velocity,upper_uy,0.34447094798088074 +illusion_0.75L,ppo,106,21.2,velocity,center_ux,0.8846395611763 +illusion_0.75L,ppo,106,21.2,velocity,center_uy,0.542860209941864 +illusion_0.75L,ppo,106,21.2,velocity,lower_ux,1.0343912839889526 +illusion_0.75L,ppo,106,21.2,velocity,lower_uy,0.25066903233528137 +illusion_0.75L,ppo,107,21.4,velocity,upper_ux,0.9533854126930237 +illusion_0.75L,ppo,107,21.4,velocity,upper_uy,0.3010253310203552 +illusion_0.75L,ppo,107,21.4,velocity,center_ux,0.8991548418998718 +illusion_0.75L,ppo,107,21.4,velocity,center_uy,0.5375745296478271 +illusion_0.75L,ppo,107,21.4,velocity,lower_ux,1.0722755193710327 +illusion_0.75L,ppo,107,21.4,velocity,lower_uy,0.26852625608444214 +illusion_0.75L,ppo,108,21.6,velocity,upper_ux,0.9148597121238708 +illusion_0.75L,ppo,108,21.6,velocity,upper_uy,0.24867244064807892 +illusion_0.75L,ppo,108,21.6,velocity,center_ux,0.9035006761550903 +illusion_0.75L,ppo,108,21.6,velocity,center_uy,0.522747814655304 +illusion_0.75L,ppo,108,21.6,velocity,lower_ux,1.1126353740692139 +illusion_0.75L,ppo,108,21.6,velocity,lower_uy,0.2827254831790924 +illusion_0.75L,ppo,109,21.8,velocity,upper_ux,0.8817136883735657 +illusion_0.75L,ppo,109,21.8,velocity,upper_uy,0.1885218769311905 +illusion_0.75L,ppo,109,21.8,velocity,center_ux,0.8964903950691223 +illusion_0.75L,ppo,109,21.8,velocity,center_uy,0.48743903636932373 +illusion_0.75L,ppo,109,21.8,velocity,lower_ux,1.1555752754211426 +illusion_0.75L,ppo,109,21.8,velocity,lower_uy,0.2922382950782776 +illusion_0.75L,ppo,110,22.0,velocity,upper_ux,0.8570272922515869 +illusion_0.75L,ppo,110,22.0,velocity,upper_uy,0.12346941977739334 +illusion_0.75L,ppo,110,22.0,velocity,center_ux,0.8777648210525513 +illusion_0.75L,ppo,110,22.0,velocity,center_uy,0.420022577047348 +illusion_0.75L,ppo,110,22.0,velocity,lower_ux,1.2004770040512085 +illusion_0.75L,ppo,110,22.0,velocity,lower_uy,0.29488271474838257 +illusion_0.75L,ppo,111,22.2,velocity,upper_ux,0.8441269397735596 +illusion_0.75L,ppo,111,22.2,velocity,upper_uy,0.05824523791670799 +illusion_0.75L,ppo,111,22.2,velocity,center_ux,0.849758505821228 +illusion_0.75L,ppo,111,22.2,velocity,center_uy,0.31175854802131653 +illusion_0.75L,ppo,111,22.2,velocity,lower_ux,1.2456178665161133 +illusion_0.75L,ppo,111,22.2,velocity,lower_uy,0.2859654128551483 +illusion_0.75L,ppo,112,22.4,velocity,upper_ux,0.8443304300308228 +illusion_0.75L,ppo,112,22.4,velocity,upper_uy,-0.0018149769166484475 +illusion_0.75L,ppo,112,22.4,velocity,center_ux,0.8179218769073486 +illusion_0.75L,ppo,112,22.4,velocity,center_uy,0.1637200117111206 +illusion_0.75L,ppo,112,22.4,velocity,lower_ux,1.2847310304641724 +illusion_0.75L,ppo,112,22.4,velocity,lower_uy,0.25710299611091614 +illusion_0.75L,ppo,113,22.6,velocity,upper_ux,0.8558997511863708 +illusion_0.75L,ppo,113,22.6,velocity,upper_uy,-0.05383427068591118 +illusion_0.75L,ppo,113,22.6,velocity,center_ux,0.789547860622406 +illusion_0.75L,ppo,113,22.6,velocity,center_uy,-0.009688189253211021 +illusion_0.75L,ppo,113,22.6,velocity,lower_ux,1.3064525127410889 +illusion_0.75L,ppo,113,22.6,velocity,lower_uy,0.19759534299373627 +illusion_0.75L,ppo,114,22.8,velocity,upper_ux,0.8755473494529724 +illusion_0.75L,ppo,114,22.8,velocity,upper_uy,-0.09835807979106903 +illusion_0.75L,ppo,114,22.8,velocity,center_ux,0.7714255452156067 +illusion_0.75L,ppo,114,22.8,velocity,center_uy,-0.18442249298095703 +illusion_0.75L,ppo,114,22.8,velocity,lower_ux,1.2988194227218628 +illusion_0.75L,ppo,114,22.8,velocity,lower_uy,0.10184406489133835 +illusion_0.75L,ppo,115,23.0,velocity,upper_ux,0.9001794457435608 +illusion_0.75L,ppo,115,23.0,velocity,upper_uy,-0.13699451088905334 +illusion_0.75L,ppo,115,23.0,velocity,center_ux,0.7683966755867004 +illusion_0.75L,ppo,115,23.0,velocity,center_uy,-0.3309604227542877 +illusion_0.75L,ppo,115,23.0,velocity,lower_ux,1.258385419845581 +illusion_0.75L,ppo,115,23.0,velocity,lower_uy,-0.018885094672441483 +illusion_0.75L,ppo,116,23.2,velocity,upper_ux,0.9278304576873779 +illusion_0.75L,ppo,116,23.2,velocity,upper_uy,-0.17104080319404602 +illusion_0.75L,ppo,116,23.2,velocity,center_ux,0.7810521125793457 +illusion_0.75L,ppo,116,23.2,velocity,center_uy,-0.4286450147628784 +illusion_0.75L,ppo,116,23.2,velocity,lower_ux,1.194349765777588 +illusion_0.75L,ppo,116,23.2,velocity,lower_uy,-0.13950936496257782 +illusion_0.75L,ppo,117,23.4,velocity,upper_ux,0.957760214805603 +illusion_0.75L,ppo,117,23.4,velocity,upper_uy,-0.2014477550983429 +illusion_0.75L,ppo,117,23.4,velocity,center_ux,0.8045168519020081 +illusion_0.75L,ppo,117,23.4,velocity,center_uy,-0.4784761071205139 +illusion_0.75L,ppo,117,23.4,velocity,lower_ux,1.1215590238571167 +illusion_0.75L,ppo,117,23.4,velocity,lower_uy,-0.23608601093292236 +illusion_0.75L,ppo,118,23.6,velocity,upper_ux,0.9899076223373413 +illusion_0.75L,ppo,118,23.6,velocity,upper_uy,-0.22877302765846252 +illusion_0.75L,ppo,118,23.6,velocity,center_ux,0.8304384350776672 +illusion_0.75L,ppo,118,23.6,velocity,center_uy,-0.5003430843353271 +illusion_0.75L,ppo,118,23.6,velocity,lower_ux,1.0517988204956055 +illusion_0.75L,ppo,118,23.6,velocity,lower_uy,-0.29740574955940247 +illusion_0.75L,ppo,119,23.8,velocity,upper_ux,1.0242397785186768 +illusion_0.75L,ppo,119,23.8,velocity,upper_uy,-0.2532927393913269 +illusion_0.75L,ppo,119,23.8,velocity,center_ux,0.8518489599227905 +illusion_0.75L,ppo,119,23.8,velocity,center_uy,-0.5141530632972717 +illusion_0.75L,ppo,119,23.8,velocity,lower_ux,0.9918246269226074 +illusion_0.75L,ppo,119,23.8,velocity,lower_uy,-0.3242703974246979 +illusion_0.75L,ppo,120,24.0,velocity,upper_ux,1.0615298748016357 +illusion_0.75L,ppo,120,24.0,velocity,upper_uy,-0.2753821909427643 +illusion_0.75L,ppo,120,24.0,velocity,center_ux,0.8658386468887329 +illusion_0.75L,ppo,120,24.0,velocity,center_uy,-0.5289756655693054 +illusion_0.75L,ppo,120,24.0,velocity,lower_ux,0.941752016544342 +illusion_0.75L,ppo,120,24.0,velocity,lower_uy,-0.3251323997974396 +illusion_0.75L,ppo,121,24.2,velocity,upper_ux,1.1022958755493164 +illusion_0.75L,ppo,121,24.2,velocity,upper_uy,-0.2949388921260834 +illusion_0.75L,ppo,121,24.2,velocity,center_ux,0.8708822727203369 +illusion_0.75L,ppo,121,24.2,velocity,center_uy,-0.5444993376731873 +illusion_0.75L,ppo,121,24.2,velocity,lower_ux,0.8994775414466858 +illusion_0.75L,ppo,121,24.2,velocity,lower_uy,-0.3078937530517578 +illusion_0.75L,ppo,122,24.4,velocity,upper_ux,1.1480904817581177 +illusion_0.75L,ppo,122,24.4,velocity,upper_uy,-0.3113366365432739 +illusion_0.75L,ppo,122,24.4,velocity,center_ux,0.8659567832946777 +illusion_0.75L,ppo,122,24.4,velocity,center_uy,-0.5544081330299377 +illusion_0.75L,ppo,122,24.4,velocity,lower_ux,0.8627607822418213 +illusion_0.75L,ppo,122,24.4,velocity,lower_uy,-0.27743446826934814 +illusion_0.75L,ppo,123,24.6,velocity,upper_ux,1.1998480558395386 +illusion_0.75L,ppo,123,24.6,velocity,upper_uy,-0.32285866141319275 +illusion_0.75L,ppo,123,24.6,velocity,center_ux,0.8497739434242249 +illusion_0.75L,ppo,123,24.6,velocity,center_uy,-0.5460564494132996 +illusion_0.75L,ppo,123,24.6,velocity,lower_ux,0.830751359462738 +illusion_0.75L,ppo,123,24.6,velocity,lower_uy,-0.23576563596725464 +illusion_0.75L,ppo,124,24.8,velocity,upper_ux,1.2574986219406128 +illusion_0.75L,ppo,124,24.8,velocity,upper_uy,-0.32456231117248535 +illusion_0.75L,ppo,124,24.8,velocity,center_ux,0.8230448961257935 +illusion_0.75L,ppo,124,24.8,velocity,center_uy,-0.5013773441314697 +illusion_0.75L,ppo,124,24.8,velocity,lower_ux,0.8044008016586304 +illusion_0.75L,ppo,124,24.8,velocity,lower_uy,-0.18397565186023712 +illusion_0.75L,ppo,125,25.0,velocity,upper_ux,1.3160313367843628 +illusion_0.75L,ppo,125,25.0,velocity,upper_uy,-0.30494919419288635 +illusion_0.75L,ppo,125,25.0,velocity,center_ux,0.7908783555030823 +illusion_0.75L,ppo,125,25.0,velocity,center_uy,-0.40388792753219604 +illusion_0.75L,ppo,125,25.0,velocity,lower_ux,0.7865636348724365 +illusion_0.75L,ppo,125,25.0,velocity,lower_uy,-0.12441164255142212 +illusion_0.75L,ppo,126,25.2,velocity,upper_ux,1.3620796203613281 +illusion_0.75L,ppo,126,25.2,velocity,upper_uy,-0.2463076412677765 +illusion_0.75L,ppo,126,25.2,velocity,center_ux,0.7622928023338318 +illusion_0.75L,ppo,126,25.2,velocity,center_uy,-0.25125637650489807 +illusion_0.75L,ppo,126,25.2,velocity,lower_ux,0.7808241248130798 +illusion_0.75L,ppo,126,25.2,velocity,lower_uy,-0.06199106201529503 +illusion_0.75L,ppo,127,25.4,velocity,upper_ux,1.3793787956237793 +illusion_0.75L,ppo,127,25.4,velocity,upper_uy,-0.13991805911064148 +illusion_0.75L,ppo,127,25.4,velocity,center_ux,0.7453466057777405 +illusion_0.75L,ppo,127,25.4,velocity,center_uy,-0.06075667217373848 +illusion_0.75L,ppo,127,25.4,velocity,lower_ux,0.7889803051948547 +illusion_0.75L,ppo,127,25.4,velocity,lower_uy,-0.002770746359601617 +illusion_0.75L,ppo,128,25.6,velocity,upper_ux,1.3629716634750366 +illusion_0.75L,ppo,128,25.6,velocity,upper_uy,-0.0018041577422991395 +illusion_0.75L,ppo,128,25.6,velocity,center_ux,0.7437053918838501 +illusion_0.75L,ppo,128,25.6,velocity,center_uy,0.13983823359012604 +illusion_0.75L,ppo,128,25.6,velocity,lower_ux,0.8095649480819702 +illusion_0.75L,ppo,128,25.6,velocity,lower_uy,0.049354080110788345 +illusion_0.75L,ppo,129,25.8,velocity,upper_ux,1.3210694789886475 +illusion_0.75L,ppo,129,25.8,velocity,upper_uy,0.1345643848180771 +illusion_0.75L,ppo,129,25.8,velocity,center_ux,0.7566298842430115 +illusion_0.75L,ppo,129,25.8,velocity,center_uy,0.3201019763946533 +illusion_0.75L,ppo,129,25.8,velocity,lower_ux,0.8379036784172058 +illusion_0.75L,ppo,129,25.8,velocity,lower_uy,0.09398149698972702 +illusion_0.75L,ppo,130,26.0,velocity,upper_ux,1.2646842002868652 +illusion_0.75L,ppo,130,26.0,velocity,upper_uy,0.24308481812477112 +illusion_0.75L,ppo,130,26.0,velocity,center_ux,0.7813751697540283 +illusion_0.75L,ppo,130,26.0,velocity,center_uy,0.455925852060318 +illusion_0.75L,ppo,130,26.0,velocity,lower_ux,0.8697973489761353 +illusion_0.75L,ppo,130,26.0,velocity,lower_uy,0.1336059272289276 +illusion_0.75L,ppo,131,26.2,velocity,upper_ux,1.203375220298767 +illusion_0.75L,ppo,131,26.2,velocity,upper_uy,0.31090453267097473 +illusion_0.75L,ppo,131,26.2,velocity,center_ux,0.813885509967804 +illusion_0.75L,ppo,131,26.2,velocity,center_uy,0.5303552746772766 +illusion_0.75L,ppo,131,26.2,velocity,lower_ux,0.9027747511863708 +illusion_0.75L,ppo,131,26.2,velocity,lower_uy,0.16909748315811157 +illusion_0.75L,ppo,132,26.4,velocity,upper_ux,1.1437630653381348 +illusion_0.75L,ppo,132,26.4,velocity,upper_uy,0.3401850163936615 +illusion_0.75L,ppo,132,26.4,velocity,center_ux,0.8487442135810852 +illusion_0.75L,ppo,132,26.4,velocity,center_uy,0.551040530204773 +illusion_0.75L,ppo,132,26.4,velocity,lower_ux,0.9365202188491821 +illusion_0.75L,ppo,132,26.4,velocity,lower_uy,0.20051376521587372 +illusion_0.75L,ppo,133,26.6,velocity,upper_ux,1.089619517326355 +illusion_0.75L,ppo,133,26.6,velocity,upper_uy,0.3412923514842987 +illusion_0.75L,ppo,133,26.6,velocity,center_ux,0.8797694444656372 +illusion_0.75L,ppo,133,26.6,velocity,center_uy,0.5464192032814026 +illusion_0.75L,ppo,133,26.6,velocity,lower_ux,0.9713187217712402 +illusion_0.75L,ppo,133,26.6,velocity,lower_uy,0.22766394913196564 +illusion_0.75L,ppo,134,26.8,velocity,upper_ux,1.0411452054977417 +illusion_0.75L,ppo,134,26.8,velocity,upper_uy,0.3250807225704193 +illusion_0.75L,ppo,134,26.8,velocity,center_ux,0.9030724167823792 +illusion_0.75L,ppo,134,26.8,velocity,center_uy,0.5398774147033691 +illusion_0.75L,ppo,134,26.8,velocity,lower_ux,1.0072765350341797 +illusion_0.75L,ppo,134,26.8,velocity,lower_uy,0.25102102756500244 +illusion_0.75L,ppo,135,27.0,velocity,upper_ux,0.9967514872550964 +illusion_0.75L,ppo,135,27.0,velocity,upper_uy,0.2980731129646301 +illusion_0.75L,ppo,135,27.0,velocity,center_ux,0.9178482890129089 +illusion_0.75L,ppo,135,27.0,velocity,center_uy,0.537051796913147 +illusion_0.75L,ppo,135,27.0,velocity,lower_ux,1.0445345640182495 +illusion_0.75L,ppo,135,27.0,velocity,lower_uy,0.27098318934440613 +illusion_0.75L,ppo,136,27.2,velocity,upper_ux,0.9553364515304565 +illusion_0.75L,ppo,136,27.2,velocity,upper_uy,0.2621302902698517 +illusion_0.75L,ppo,136,27.2,velocity,center_ux,0.9240071177482605 +illusion_0.75L,ppo,136,27.2,velocity,center_uy,0.5333258509635925 +illusion_0.75L,ppo,136,27.2,velocity,lower_ux,1.0835528373718262 +illusion_0.75L,ppo,136,27.2,velocity,lower_uy,0.28782573342323303 +illusion_0.75L,ppo,137,27.4,velocity,upper_ux,0.9176175594329834 +illusion_0.75L,ppo,137,27.4,velocity,upper_uy,0.21724790334701538 +illusion_0.75L,ppo,137,27.4,velocity,center_ux,0.9207674264907837 +illusion_0.75L,ppo,137,27.4,velocity,center_uy,0.5201219916343689 +illusion_0.75L,ppo,137,27.4,velocity,lower_ux,1.1252226829528809 +illusion_0.75L,ppo,137,27.4,velocity,lower_uy,0.30142003297805786 +illusion_0.75L,ppo,138,27.6,velocity,upper_ux,0.8856296539306641 +illusion_0.75L,ppo,138,27.6,velocity,upper_uy,0.16416311264038086 +illusion_0.75L,ppo,138,27.6,velocity,center_ux,0.9064435362815857 +illusion_0.75L,ppo,138,27.6,velocity,center_uy,0.48612773418426514 +illusion_0.75L,ppo,138,27.6,velocity,lower_ux,1.1700383424758911 +illusion_0.75L,ppo,138,27.6,velocity,lower_uy,0.3108938932418823 +illusion_0.75L,ppo,139,27.8,velocity,upper_ux,0.8624500036239624 +illusion_0.75L,ppo,139,27.8,velocity,upper_uy,0.1054009348154068 +illusion_0.75L,ppo,139,27.8,velocity,center_ux,0.880595862865448 +illusion_0.75L,ppo,139,27.8,velocity,center_uy,0.418294221162796 +illusion_0.75L,ppo,139,27.8,velocity,lower_ux,1.21806001663208 +illusion_0.75L,ppo,139,27.8,velocity,lower_uy,0.3136705756187439 +illusion_0.75L,ppo,140,28.0,velocity,upper_ux,0.8508614897727966 +illusion_0.75L,ppo,140,28.0,velocity,upper_uy,0.045668479055166245 +illusion_0.75L,ppo,140,28.0,velocity,center_ux,0.8461046814918518 +illusion_0.75L,ppo,140,28.0,velocity,center_uy,0.3070363700389862 +illusion_0.75L,ppo,140,28.0,velocity,lower_ux,1.26637601852417 +illusion_0.75L,ppo,140,28.0,velocity,lower_uy,0.3033495843410492 +illusion_0.75L,ppo,141,28.2,velocity,upper_ux,0.851937472820282 +illusion_0.75L,ppo,141,28.2,velocity,upper_uy,-0.010608695447444916 +illusion_0.75L,ppo,141,28.2,velocity,center_ux,0.8099279999732971 +illusion_0.75L,ppo,141,28.2,velocity,center_uy,0.1532304733991623 +illusion_0.75L,ppo,141,28.2,velocity,lower_ux,1.3071168661117554 +illusion_0.75L,ppo,141,28.2,velocity,lower_uy,0.26800382137298584 +illusion_0.75L,ppo,142,28.4,velocity,upper_ux,0.8637604713439941 +illusion_0.75L,ppo,142,28.4,velocity,upper_uy,-0.0605270117521286 +illusion_0.75L,ppo,142,28.4,velocity,center_ux,0.7803543210029602 +illusion_0.75L,ppo,142,28.4,velocity,center_uy,-0.02609819732606411 +illusion_0.75L,ppo,142,28.4,velocity,lower_ux,1.3258728981018066 +illusion_0.75L,ppo,142,28.4,velocity,lower_uy,0.19425033032894135 +illusion_0.75L,ppo,143,28.6,velocity,upper_ux,0.8831841945648193 +illusion_0.75L,ppo,143,28.6,velocity,upper_uy,-0.1043924018740654 +illusion_0.75L,ppo,143,28.6,velocity,center_ux,0.7637786865234375 +illusion_0.75L,ppo,143,28.6,velocity,center_uy,-0.20517008006572723 +illusion_0.75L,ppo,143,28.6,velocity,lower_ux,1.3106071949005127 +illusion_0.75L,ppo,143,28.6,velocity,lower_uy,0.07939141243696213 +illusion_0.75L,ppo,144,28.8,velocity,upper_ux,0.9074361324310303 +illusion_0.75L,ppo,144,28.8,velocity,upper_uy,-0.14307770133018494 +illusion_0.75L,ppo,144,28.8,velocity,center_ux,0.7640639543533325 +illusion_0.75L,ppo,144,28.8,velocity,center_uy,-0.3530687391757965 +illusion_0.75L,ppo,144,28.8,velocity,lower_ux,1.262081503868103 +illusion_0.75L,ppo,144,28.8,velocity,lower_uy,-0.05681111291050911 +illusion_0.75L,ppo,145,29.0,velocity,upper_ux,0.9349267482757568 +illusion_0.75L,ppo,145,29.0,velocity,upper_uy,-0.17751924693584442 +illusion_0.75L,ppo,145,29.0,velocity,center_ux,0.7806184887886047 +illusion_0.75L,ppo,145,29.0,velocity,center_uy,-0.4492497146129608 +illusion_0.75L,ppo,145,29.0,velocity,lower_ux,1.1935186386108398 +illusion_0.75L,ppo,145,29.0,velocity,lower_uy,-0.18354980647563934 +illusion_0.75L,ppo,146,29.2,velocity,upper_ux,0.965065598487854 +illusion_0.75L,ppo,146,29.2,velocity,upper_uy,-0.2085394412279129 +illusion_0.75L,ppo,146,29.2,velocity,center_ux,0.8072953224182129 +illusion_0.75L,ppo,146,29.2,velocity,center_uy,-0.4967294931411743 +illusion_0.75L,ppo,146,29.2,velocity,lower_ux,1.119439959526062 +illusion_0.75L,ppo,146,29.2,velocity,lower_uy,-0.2784586548805237 +illusion_0.75L,ppo,147,29.4,velocity,upper_ux,0.9975710511207581 +illusion_0.75L,ppo,147,29.4,velocity,upper_uy,-0.2363024353981018 +illusion_0.75L,ppo,147,29.4,velocity,center_ux,0.8347783088684082 +illusion_0.75L,ppo,147,29.4,velocity,center_uy,-0.5166438817977905 +illusion_0.75L,ppo,147,29.4,velocity,lower_ux,1.0510364770889282 +illusion_0.75L,ppo,147,29.4,velocity,lower_uy,-0.33320698142051697 +illusion_0.75L,ppo,148,29.6,velocity,upper_ux,1.0331577062606812 +illusion_0.75L,ppo,148,29.6,velocity,upper_uy,-0.26145848631858826 +illusion_0.75L,ppo,148,29.6,velocity,center_ux,0.8566402196884155 +illusion_0.75L,ppo,148,29.6,velocity,center_uy,-0.5297021269798279 +illusion_0.75L,ppo,148,29.6,velocity,lower_ux,0.9926767945289612 +illusion_0.75L,ppo,148,29.6,velocity,lower_uy,-0.35307300090789795 +illusion_0.75L,ppo,149,29.8,velocity,upper_ux,1.072271704673767 +illusion_0.75L,ppo,149,29.8,velocity,upper_uy,-0.284069299697876 +illusion_0.75L,ppo,149,29.8,velocity,center_ux,0.8698552846908569 +illusion_0.75L,ppo,149,29.8,velocity,center_uy,-0.5446710586547852 +illusion_0.75L,ppo,149,29.8,velocity,lower_ux,0.9443888664245605 +illusion_0.75L,ppo,149,29.8,velocity,lower_uy,-0.34794914722442627 +illusion_0.75L,ppo,150,30.0,velocity,upper_ux,1.1160266399383545 +illusion_0.75L,ppo,150,30.0,velocity,upper_uy,-0.3040977716445923 +illusion_0.75L,ppo,150,30.0,velocity,center_ux,0.8732109069824219 +illusion_0.75L,ppo,150,30.0,velocity,center_uy,-0.56132572889328 +illusion_0.75L,ppo,150,30.0,velocity,lower_ux,0.9032347202301025 +illusion_0.75L,ppo,150,30.0,velocity,lower_uy,-0.32613518834114075 +illusion_0.75L,ppo,151,30.2,velocity,upper_ux,1.1656430959701538 +illusion_0.75L,ppo,151,30.2,velocity,upper_uy,-0.3204525411128998 +illusion_0.75L,ppo,151,30.2,velocity,center_ux,0.8653938174247742 +illusion_0.75L,ppo,151,30.2,velocity,center_uy,-0.5723036527633667 +illusion_0.75L,ppo,151,30.2,velocity,lower_ux,0.866719663143158 +illusion_0.75L,ppo,151,30.2,velocity,lower_uy,-0.29181531071662903 +illusion_0.75L,ppo,152,30.4,velocity,upper_ux,1.2224111557006836 +illusion_0.75L,ppo,152,30.4,velocity,upper_uy,-0.33021679520606995 +illusion_0.75L,ppo,152,30.4,velocity,center_ux,0.8457086682319641 +illusion_0.75L,ppo,152,30.4,velocity,center_uy,-0.5620577335357666 +illusion_0.75L,ppo,152,30.4,velocity,lower_ux,0.8339617848396301 +illusion_0.75L,ppo,152,30.4,velocity,lower_uy,-0.24586841464042664 +illusion_0.75L,ppo,153,30.6,velocity,upper_ux,1.2842440605163574 +illusion_0.75L,ppo,153,30.6,velocity,upper_uy,-0.32530447840690613 +illusion_0.75L,ppo,153,30.6,velocity,center_ux,0.816419780254364 +illusion_0.75L,ppo,153,30.6,velocity,center_uy,-0.5088707208633423 +illusion_0.75L,ppo,153,30.6,velocity,lower_ux,0.8061891198158264 +illusion_0.75L,ppo,153,30.6,velocity,lower_uy,-0.18910729885101318 +illusion_0.75L,ppo,154,30.8,velocity,upper_ux,1.3421818017959595 +illusion_0.75L,ppo,154,30.8,velocity,upper_uy,-0.2894076406955719 +illusion_0.75L,ppo,154,30.8,velocity,center_ux,0.7846890091896057 +illusion_0.75L,ppo,154,30.8,velocity,center_uy,-0.3954901397228241 +illusion_0.75L,ppo,154,30.8,velocity,lower_ux,0.7863094806671143 +illusion_0.75L,ppo,154,30.8,velocity,lower_uy,-0.12369018793106079 +illusion_0.75L,ppo,155,31.0,velocity,upper_ux,1.379410743713379 +illusion_0.75L,ppo,155,31.0,velocity,upper_uy,-0.20582862198352814 +illusion_0.75L,ppo,155,31.0,velocity,center_ux,0.7606449127197266 +illusion_0.75L,ppo,155,31.0,velocity,center_uy,-0.22428786754608154 +illusion_0.75L,ppo,155,31.0,velocity,lower_ux,0.7784039974212646 +illusion_0.75L,ppo,155,31.0,velocity,lower_uy,-0.05518338084220886 +illusion_0.75L,ppo,156,31.2,velocity,upper_ux,1.3844084739685059 +illusion_0.75L,ppo,156,31.2,velocity,upper_uy,-0.07888452708721161 +illusion_0.75L,ppo,156,31.2,velocity,center_ux,0.7516354918479919 +illusion_0.75L,ppo,156,31.2,velocity,center_uy,-0.018486713990569115 +illusion_0.75L,ppo,156,31.2,velocity,lower_ux,0.7852715253829956 +illusion_0.75L,ppo,156,31.2,velocity,lower_uy,0.009604176506400108 +illusion_0.75L,ppo,157,31.4,velocity,upper_ux,1.3596007823944092 +illusion_0.75L,ppo,157,31.4,velocity,upper_uy,0.0615701898932457 +illusion_0.75L,ppo,157,31.4,velocity,center_ux,0.7590793371200562 +illusion_0.75L,ppo,157,31.4,velocity,center_uy,0.18737198412418365 +illusion_0.75L,ppo,157,31.4,velocity,lower_ux,0.8057358264923096 +illusion_0.75L,ppo,157,31.4,velocity,lower_uy,0.06515933573246002 +illusion_0.75L,ppo,158,31.6,velocity,upper_ux,1.3143593072891235 +illusion_0.75L,ppo,158,31.6,velocity,upper_uy,0.18506193161010742 +illusion_0.75L,ppo,158,31.6,velocity,center_ux,0.7800445556640625 +illusion_0.75L,ppo,158,31.6,velocity,center_uy,0.3641728162765503 +illusion_0.75L,ppo,158,31.6,velocity,lower_ux,0.8353652954101562 +illusion_0.75L,ppo,158,31.6,velocity,lower_uy,0.11132773756980896 +illusion_0.75L,ppo,159,31.8,velocity,upper_ux,1.2582560777664185 +illusion_0.75L,ppo,159,31.8,velocity,upper_uy,0.2726413607597351 +illusion_0.75L,ppo,159,31.8,velocity,center_ux,0.8097066283226013 +illusion_0.75L,ppo,159,31.8,velocity,center_uy,0.48803481459617615 +illusion_0.75L,ppo,159,31.8,velocity,lower_ux,0.8689587116241455 +illusion_0.75L,ppo,159,31.8,velocity,lower_uy,0.1504414677619934 +illusion_0.75L,ppo,160,32.0,velocity,upper_ux,1.1991215944290161 +illusion_0.75L,ppo,160,32.0,velocity,upper_uy,0.3213416039943695 +illusion_0.75L,ppo,160,32.0,velocity,center_ux,0.8436130285263062 +illusion_0.75L,ppo,160,32.0,velocity,center_uy,0.5490620732307434 +illusion_0.75L,ppo,160,32.0,velocity,lower_ux,0.9039168357849121 +illusion_0.75L,ppo,160,32.0,velocity,lower_uy,0.18475130200386047 +illusion_0.75L,ppo,161,32.2,velocity,upper_ux,1.1423949003219604 +illusion_0.75L,ppo,161,32.2,velocity,upper_uy,0.33842137455940247 +illusion_0.75L,ppo,161,32.2,velocity,center_ux,0.876838207244873 +illusion_0.75L,ppo,161,32.2,velocity,center_uy,0.5607248544692993 +illusion_0.75L,ppo,161,32.2,velocity,lower_ux,0.939534068107605 +illusion_0.75L,ppo,161,32.2,velocity,lower_uy,0.21487782895565033 +illusion_0.75L,ppo,162,32.4,velocity,upper_ux,1.0904325246810913 +illusion_0.75L,ppo,162,32.4,velocity,upper_uy,0.3347037434577942 +illusion_0.75L,ppo,162,32.4,velocity,center_ux,0.9047328233718872 +illusion_0.75L,ppo,162,32.4,velocity,center_uy,0.5528338551521301 +illusion_0.75L,ppo,162,32.4,velocity,lower_ux,0.9758716821670532 +illusion_0.75L,ppo,162,32.4,velocity,lower_uy,0.2409496158361435 +illusion_0.75L,ppo,163,32.6,velocity,upper_ux,1.042951226234436 +illusion_0.75L,ppo,163,32.6,velocity,upper_uy,0.31834399700164795 +illusion_0.75L,ppo,163,32.6,velocity,center_ux,0.9250002503395081 +illusion_0.75L,ppo,163,32.6,velocity,center_uy,0.5456801652908325 +illusion_0.75L,ppo,163,32.6,velocity,lower_ux,1.013067364692688 +illusion_0.75L,ppo,163,32.6,velocity,lower_uy,0.26339367032051086 +illusion_0.75L,ppo,164,32.8,velocity,upper_ux,0.998391330242157 +illusion_0.75L,ppo,164,32.8,velocity,upper_uy,0.29277920722961426 +illusion_0.75L,ppo,164,32.8,velocity,center_ux,0.9373519420623779 +illusion_0.75L,ppo,164,32.8,velocity,center_uy,0.5427960753440857 +illusion_0.75L,ppo,164,32.8,velocity,lower_ux,1.0514287948608398 +illusion_0.75L,ppo,164,32.8,velocity,lower_uy,0.2827511131763458 +illusion_0.75L,ppo,165,33.0,velocity,upper_ux,0.9560352563858032 +illusion_0.75L,ppo,165,33.0,velocity,upper_uy,0.2580500543117523 +illusion_0.75L,ppo,165,33.0,velocity,center_ux,0.9413483142852783 +illusion_0.75L,ppo,165,33.0,velocity,center_uy,0.5393848419189453 +illusion_0.75L,ppo,165,33.0,velocity,lower_ux,1.0914918184280396 +illusion_0.75L,ppo,165,33.0,velocity,lower_uy,0.29943686723709106 +illusion_0.75L,ppo,166,33.2,velocity,upper_ux,0.9168900847434998 +illusion_0.75L,ppo,166,33.2,velocity,upper_uy,0.21353083848953247 +illusion_0.75L,ppo,166,33.2,velocity,center_ux,0.9356086254119873 +illusion_0.75L,ppo,166,33.2,velocity,center_uy,0.5267406702041626 +illusion_0.75L,ppo,166,33.2,velocity,lower_ux,1.1340943574905396 +illusion_0.75L,ppo,166,33.2,velocity,lower_uy,0.31328314542770386 +illusion_0.75L,ppo,167,33.4,velocity,upper_ux,0.8834143877029419 +illusion_0.75L,ppo,167,33.4,velocity,upper_uy,0.15958106517791748 +illusion_0.75L,ppo,167,33.4,velocity,center_ux,0.9183706045150757 +illusion_0.75L,ppo,167,33.4,velocity,center_uy,0.4924793243408203 +illusion_0.75L,ppo,167,33.4,velocity,lower_ux,1.1802695989608765 +illusion_0.75L,ppo,167,33.4,velocity,lower_uy,0.32323548197746277 +illusion_0.75L,ppo,168,33.6,velocity,upper_ux,0.8590327501296997 +illusion_0.75L,ppo,168,33.6,velocity,upper_uy,0.09927016496658325 +illusion_0.75L,ppo,168,33.6,velocity,center_ux,0.8893102407455444 +illusion_0.75L,ppo,168,33.6,velocity,center_uy,0.4221661686897278 +illusion_0.75L,ppo,168,33.6,velocity,lower_ux,1.2295868396759033 +illusion_0.75L,ppo,168,33.6,velocity,lower_uy,0.32590389251708984 +illusion_0.75L,ppo,169,33.8,velocity,upper_ux,0.8468148708343506 +illusion_0.75L,ppo,169,33.8,velocity,upper_uy,0.037817150354385376 +illusion_0.75L,ppo,169,33.8,velocity,center_ux,0.8522072434425354 +illusion_0.75L,ppo,169,33.8,velocity,center_uy,0.3055567443370819 +illusion_0.75L,ppo,169,33.8,velocity,lower_ux,1.278489112854004 +illusion_0.75L,ppo,169,33.8,velocity,lower_uy,0.31322407722473145 +illusion_0.75L,ppo,170,34.0,velocity,upper_ux,0.8479002118110657 +illusion_0.75L,ppo,170,34.0,velocity,upper_uy,-0.019865460693836212 +illusion_0.75L,ppo,170,34.0,velocity,center_ux,0.8147377967834473 +illusion_0.75L,ppo,170,34.0,velocity,center_uy,0.1444426029920578 +illusion_0.75L,ppo,170,34.0,velocity,lower_ux,1.3171194791793823 +illusion_0.75L,ppo,170,34.0,velocity,lower_uy,0.2704332768917084 +illusion_0.75L,ppo,171,34.2,velocity,upper_ux,0.860618531703949 +illusion_0.75L,ppo,171,34.2,velocity,upper_uy,-0.07063362002372742 +illusion_0.75L,ppo,171,34.2,velocity,center_ux,0.7856325507164001 +illusion_0.75L,ppo,171,34.2,velocity,center_uy,-0.04219267889857292 +illusion_0.75L,ppo,171,34.2,velocity,lower_ux,1.329673171043396 +illusion_0.75L,ppo,171,34.2,velocity,lower_uy,0.1828787624835968 +illusion_0.75L,ppo,172,34.4,velocity,upper_ux,0.881446897983551 +illusion_0.75L,ppo,172,34.4,velocity,upper_uy,-0.11464085429906845 +illusion_0.75L,ppo,172,34.4,velocity,center_ux,0.7708772420883179 +illusion_0.75L,ppo,172,34.4,velocity,center_uy,-0.22518496215343475 +illusion_0.75L,ppo,172,34.4,velocity,lower_ux,1.30607271194458 +illusion_0.75L,ppo,172,34.4,velocity,lower_uy,0.053551074117422104 +illusion_0.75L,ppo,173,34.6,velocity,upper_ux,0.9072737693786621 +illusion_0.75L,ppo,173,34.6,velocity,upper_uy,-0.1530640423297882 +illusion_0.75L,ppo,173,34.6,velocity,center_ux,0.7732642292976379 +illusion_0.75L,ppo,173,34.6,velocity,center_uy,-0.37301623821258545 +illusion_0.75L,ppo,173,34.6,velocity,lower_ux,1.2519679069519043 +illusion_0.75L,ppo,173,34.6,velocity,lower_uy,-0.09020546823740005 +illusion_0.75L,ppo,174,34.8,velocity,upper_ux,0.9364057183265686 +illusion_0.75L,ppo,174,34.8,velocity,upper_uy,-0.18715116381645203 +illusion_0.75L,ppo,174,34.8,velocity,center_ux,0.7913995385169983 +illusion_0.75L,ppo,174,34.8,velocity,center_uy,-0.46640780568122864 +illusion_0.75L,ppo,174,34.8,velocity,lower_ux,1.182532787322998 +illusion_0.75L,ppo,174,34.8,velocity,lower_uy,-0.21568749845027924 +illusion_0.75L,ppo,175,35.0,velocity,upper_ux,0.9681126475334167 +illusion_0.75L,ppo,175,35.0,velocity,upper_uy,-0.21757632493972778 +illusion_0.75L,ppo,175,35.0,velocity,center_ux,0.8185813426971436 +illusion_0.75L,ppo,175,35.0,velocity,center_uy,-0.5105087757110596 +illusion_0.75L,ppo,175,35.0,velocity,lower_ux,1.1115554571151733 +illusion_0.75L,ppo,175,35.0,velocity,lower_uy,-0.3032671809196472 +illusion_0.75L,ppo,176,35.2,velocity,upper_ux,1.0023123025894165 +illusion_0.75L,ppo,176,35.2,velocity,upper_uy,-0.24501603841781616 +illusion_0.75L,ppo,176,35.2,velocity,center_ux,0.845679521560669 +illusion_0.75L,ppo,176,35.2,velocity,center_uy,-0.5289684534072876 +illusion_0.75L,ppo,176,35.2,velocity,lower_ux,1.0471580028533936 +illusion_0.75L,ppo,176,35.2,velocity,lower_uy,-0.350143700838089 +illusion_0.75L,ppo,177,35.4,velocity,upper_ux,1.0392519235610962 +illusion_0.75L,ppo,177,35.4,velocity,upper_uy,-0.26969727873802185 +illusion_0.75L,ppo,177,35.4,velocity,center_ux,0.8663443922996521 +illusion_0.75L,ppo,177,35.4,velocity,center_uy,-0.5423004627227783 +illusion_0.75L,ppo,177,35.4,velocity,lower_ux,0.9927017092704773 +illusion_0.75L,ppo,177,35.4,velocity,lower_uy,-0.36429038643836975 +illusion_0.75L,ppo,178,35.6,velocity,upper_ux,1.0800009965896606 +illusion_0.75L,ppo,178,35.6,velocity,upper_uy,-0.29184064269065857 +illusion_0.75L,ppo,178,35.6,velocity,center_ux,0.8782984018325806 +illusion_0.75L,ppo,178,35.6,velocity,center_uy,-0.5588161945343018 +illusion_0.75L,ppo,178,35.6,velocity,lower_ux,0.946642279624939 +illusion_0.75L,ppo,178,35.6,velocity,lower_uy,-0.35674309730529785 +illusion_0.75L,ppo,179,35.8,velocity,upper_ux,1.1254271268844604 +illusion_0.75L,ppo,179,35.8,velocity,upper_uy,-0.3109813332557678 +illusion_0.75L,ppo,179,35.8,velocity,center_ux,0.880344033241272 +illusion_0.75L,ppo,179,35.8,velocity,center_uy,-0.5776344537734985 +illusion_0.75L,ppo,179,35.8,velocity,lower_ux,0.9063196778297424 +illusion_0.75L,ppo,179,35.8,velocity,lower_uy,-0.3350842297077179 +illusion_0.75L,ppo,180,36.0,velocity,upper_ux,1.1770669221878052 +illusion_0.75L,ppo,180,36.0,velocity,upper_uy,-0.3259463608264923 +illusion_0.75L,ppo,180,36.0,velocity,center_ux,0.8711814880371094 +illusion_0.75L,ppo,180,36.0,velocity,center_uy,-0.5907445549964905 +illusion_0.75L,ppo,180,36.0,velocity,lower_ux,0.8691993951797485 +illusion_0.75L,ppo,180,36.0,velocity,lower_uy,-0.3021513819694519 +illusion_0.75L,ppo,181,36.2,velocity,upper_ux,1.236030101776123 +illusion_0.75L,ppo,181,36.2,velocity,upper_uy,-0.33317825198173523 +illusion_0.75L,ppo,181,36.2,velocity,center_ux,0.8504284620285034 +illusion_0.75L,ppo,181,36.2,velocity,center_uy,-0.5807909965515137 +illusion_0.75L,ppo,181,36.2,velocity,lower_ux,0.8349276781082153 +illusion_0.75L,ppo,181,36.2,velocity,lower_uy,-0.2577618956565857 +illusion_0.75L,ppo,182,36.4,velocity,upper_ux,1.299802541732788 +illusion_0.75L,ppo,182,36.4,velocity,upper_uy,-0.32295772433280945 +illusion_0.75L,ppo,182,36.4,velocity,center_ux,0.8211678266525269 +illusion_0.75L,ppo,182,36.4,velocity,center_uy,-0.5232618451118469 +illusion_0.75L,ppo,182,36.4,velocity,lower_ux,0.804893970489502 +illusion_0.75L,ppo,182,36.4,velocity,lower_uy,-0.2013588696718216 +illusion_0.75L,ppo,183,36.6,velocity,upper_ux,1.356834053993225 +illusion_0.75L,ppo,183,36.6,velocity,upper_uy,-0.27725499868392944 +illusion_0.75L,ppo,183,36.6,velocity,center_ux,0.7919160723686218 +illusion_0.75L,ppo,183,36.6,velocity,center_uy,-0.40061768889427185 +illusion_0.75L,ppo,183,36.6,velocity,lower_ux,0.7822964191436768 +illusion_0.75L,ppo,183,36.6,velocity,lower_uy,-0.1346067190170288 +illusion_0.75L,ppo,184,36.8,velocity,upper_ux,1.389865517616272 +illusion_0.75L,ppo,184,36.8,velocity,upper_uy,-0.1821737140417099 +illusion_0.75L,ppo,184,36.8,velocity,center_ux,0.7728181481361389 +illusion_0.75L,ppo,184,36.8,velocity,center_uy,-0.2182117998600006 +illusion_0.75L,ppo,184,36.8,velocity,lower_ux,0.7713140845298767 +illusion_0.75L,ppo,184,36.8,velocity,lower_uy,-0.06251934915781021 +illusion_0.75L,ppo,185,37.0,velocity,upper_ux,1.3902649879455566 +illusion_0.75L,ppo,185,37.0,velocity,upper_uy,-0.04978351294994354 +illusion_0.75L,ppo,185,37.0,velocity,center_ux,0.7698764204978943 +illusion_0.75L,ppo,185,37.0,velocity,center_uy,-0.0038867818657308817 +illusion_0.75L,ppo,185,37.0,velocity,lower_ux,0.7755085825920105 +illusion_0.75L,ppo,185,37.0,velocity,lower_uy,0.007221424952149391 +illusion_0.75L,ppo,186,37.2,velocity,upper_ux,1.3630207777023315 +illusion_0.75L,ppo,186,37.2,velocity,upper_uy,0.0875551775097847 +illusion_0.75L,ppo,186,37.2,velocity,center_ux,0.7829470634460449 +illusion_0.75L,ppo,186,37.2,velocity,center_uy,0.206748828291893 +illusion_0.75L,ppo,186,37.2,velocity,lower_ux,0.7950896620750427 +illusion_0.75L,ppo,186,37.2,velocity,lower_uy,0.06747560203075409 +illusion_0.75L,ppo,187,37.4,velocity,upper_ux,1.3174793720245361 +illusion_0.75L,ppo,187,37.4,velocity,upper_uy,0.20126286149024963 +illusion_0.75L,ppo,187,37.4,velocity,center_ux,0.8077136874198914 +illusion_0.75L,ppo,187,37.4,velocity,center_uy,0.3829796314239502 +illusion_0.75L,ppo,187,37.4,velocity,lower_ux,0.8257398009300232 +illusion_0.75L,ppo,187,37.4,velocity,lower_uy,0.11598436534404755 +illusion_0.75L,ppo,188,37.6,velocity,upper_ux,1.262113332748413 +illusion_0.75L,ppo,188,37.6,velocity,upper_uy,0.2781693637371063 +illusion_0.75L,ppo,188,37.6,velocity,center_ux,0.8388233780860901 +illusion_0.75L,ppo,188,37.6,velocity,center_uy,0.5036430358886719 +illusion_0.75L,ppo,188,37.6,velocity,lower_ux,0.8614943027496338 +illusion_0.75L,ppo,188,37.6,velocity,lower_uy,0.15550537407398224 +illusion_0.75L,ppo,189,37.8,velocity,upper_ux,1.2044053077697754 +illusion_0.75L,ppo,189,37.8,velocity,upper_uy,0.31858932971954346 +illusion_0.75L,ppo,189,37.8,velocity,center_ux,0.8718003630638123 +illusion_0.75L,ppo,189,37.8,velocity,center_uy,0.5599638223648071 +illusion_0.75L,ppo,189,37.8,velocity,lower_ux,0.8985496759414673 +illusion_0.75L,ppo,189,37.8,velocity,lower_uy,0.1892378032207489 +illusion_0.75L,ppo,190,38.0,velocity,upper_ux,1.1490836143493652 +illusion_0.75L,ppo,190,38.0,velocity,upper_uy,0.33143141865730286 +illusion_0.75L,ppo,190,38.0,velocity,center_ux,0.9026545882225037 +illusion_0.75L,ppo,190,38.0,velocity,center_uy,0.5671560764312744 +illusion_0.75L,ppo,190,38.0,velocity,lower_ux,0.9357876777648926 +illusion_0.75L,ppo,190,38.0,velocity,lower_uy,0.2184477001428604 +illusion_0.75L,ppo,191,38.2,velocity,upper_ux,1.0979413986206055 +illusion_0.75L,ppo,191,38.2,velocity,upper_uy,0.3268771767616272 +illusion_0.75L,ppo,191,38.2,velocity,center_ux,0.9278853535652161 +illusion_0.75L,ppo,191,38.2,velocity,center_uy,0.5559269189834595 +illusion_0.75L,ppo,191,38.2,velocity,lower_ux,0.9731197357177734 +illusion_0.75L,ppo,191,38.2,velocity,lower_uy,0.24349330365657806 +illusion_0.75L,ppo,192,38.4,velocity,upper_ux,1.0504682064056396 +illusion_0.75L,ppo,192,38.4,velocity,upper_uy,0.3115618824958801 +illusion_0.75L,ppo,192,38.4,velocity,center_ux,0.9461605548858643 +illusion_0.75L,ppo,192,38.4,velocity,center_uy,0.5466291904449463 +illusion_0.75L,ppo,192,38.4,velocity,lower_ux,1.0110020637512207 +illusion_0.75L,ppo,192,38.4,velocity,lower_uy,0.26496177911758423 +illusion_0.75L,ppo,193,38.6,velocity,upper_ux,1.0054259300231934 +illusion_0.75L,ppo,193,38.6,velocity,upper_uy,0.28750288486480713 +illusion_0.75L,ppo,193,38.6,velocity,center_ux,0.9573847055435181 +illusion_0.75L,ppo,193,38.6,velocity,center_uy,0.5427935719490051 +illusion_0.75L,ppo,193,38.6,velocity,lower_ux,1.0498976707458496 +illusion_0.75L,ppo,193,38.6,velocity,lower_uy,0.2834166884422302 +illusion_0.75L,ppo,194,38.8,velocity,upper_ux,0.9623099565505981 +illusion_0.75L,ppo,194,38.8,velocity,upper_uy,0.2539480924606323 +illusion_0.75L,ppo,194,38.8,velocity,center_ux,0.9609867334365845 +illusion_0.75L,ppo,194,38.8,velocity,center_uy,0.5397616028785706 +illusion_0.75L,ppo,194,38.8,velocity,lower_ux,1.0903905630111694 +illusion_0.75L,ppo,194,38.8,velocity,lower_uy,0.299201637506485 +illusion_0.75L,ppo,195,39.0,velocity,upper_ux,0.9221190810203552 +illusion_0.75L,ppo,195,39.0,velocity,upper_uy,0.2098274827003479 +illusion_0.75L,ppo,195,39.0,velocity,center_ux,0.9552339911460876 +illusion_0.75L,ppo,195,39.0,velocity,center_uy,0.5288364887237549 +illusion_0.75L,ppo,195,39.0,velocity,lower_ux,1.1334102153778076 +illusion_0.75L,ppo,195,39.0,velocity,lower_uy,0.31223395466804504 +illusion_0.75L,ppo,196,39.2,velocity,upper_ux,0.8877034783363342 +illusion_0.75L,ppo,196,39.2,velocity,upper_uy,0.1558748483657837 +illusion_0.75L,ppo,196,39.2,velocity,center_ux,0.9380987286567688 +illusion_0.75L,ppo,196,39.2,velocity,center_uy,0.4972662627696991 +illusion_0.75L,ppo,196,39.2,velocity,lower_ux,1.1797667741775513 +illusion_0.75L,ppo,196,39.2,velocity,lower_uy,0.32153740525245667 +illusion_0.75L,ppo,197,39.4,velocity,upper_ux,0.8624082207679749 +illusion_0.75L,ppo,197,39.4,velocity,upper_uy,0.09509661048650742 +illusion_0.75L,ppo,197,39.4,velocity,center_ux,0.9088329076766968 +illusion_0.75L,ppo,197,39.4,velocity,center_uy,0.4292566776275635 +illusion_0.75L,ppo,197,39.4,velocity,lower_ux,1.2294533252716064 +illusion_0.75L,ppo,197,39.4,velocity,lower_uy,0.323983371257782 +illusion_0.75L,ppo,198,39.6,velocity,upper_ux,0.8494336009025574 +illusion_0.75L,ppo,198,39.6,velocity,upper_uy,0.03271143510937691 +illusion_0.75L,ppo,198,39.6,velocity,center_ux,0.8708437085151672 +illusion_0.75L,ppo,198,39.6,velocity,center_uy,0.3125520646572113 +illusion_0.75L,ppo,198,39.6,velocity,lower_ux,1.2791694402694702 +illusion_0.75L,ppo,198,39.6,velocity,lower_uy,0.3116414546966553 +illusion_0.75L,ppo,199,39.8,velocity,upper_ux,0.8499541282653809 +illusion_0.75L,ppo,199,39.8,velocity,upper_uy,-0.025719083845615387 +illusion_0.75L,ppo,199,39.8,velocity,center_ux,0.8320069313049316 +illusion_0.75L,ppo,199,39.8,velocity,center_uy,0.14901670813560486 +illusion_0.75L,ppo,199,39.8,velocity,lower_ux,1.3186684846878052 +illusion_0.75L,ppo,199,39.8,velocity,lower_uy,0.2697160840034485 +illusion_0.75L,ppo,0,0.0,force,front_fx,0.001635126885958016 +illusion_0.75L,ppo,0,0.0,force,front_fy,3.55204101651907e-05 +illusion_0.75L,ppo,0,0.0,force,upper_fx,0.0013451901031658053 +illusion_0.75L,ppo,0,0.0,force,upper_fy,0.00291387178003788 +illusion_0.75L,ppo,0,0.0,force,lower_fx,0.0012545323697850108 +illusion_0.75L,ppo,0,0.0,force,lower_fy,-0.003136727726086974 +illusion_0.75L,ppo,1,0.2,force,front_fx,0.00176312867552042 +illusion_0.75L,ppo,1,0.2,force,front_fy,0.0004369427333585918 +illusion_0.75L,ppo,1,0.2,force,upper_fx,0.0012211347930133343 +illusion_0.75L,ppo,1,0.2,force,upper_fy,0.002841450972482562 +illusion_0.75L,ppo,1,0.2,force,lower_fx,0.001126140239648521 +illusion_0.75L,ppo,1,0.2,force,lower_fy,-0.0034476134460419416 +illusion_0.75L,ppo,2,0.4,force,front_fx,0.0017976047238335013 +illusion_0.75L,ppo,2,0.4,force,front_fy,0.0006286735879257321 +illusion_0.75L,ppo,2,0.4,force,upper_fx,0.0012511140666902065 +illusion_0.75L,ppo,2,0.4,force,upper_fy,0.0028064516372978687 +illusion_0.75L,ppo,2,0.4,force,lower_fx,0.0010458184406161308 +illusion_0.75L,ppo,2,0.4,force,lower_fy,-0.0037141412030905485 +illusion_0.75L,ppo,3,0.6,force,front_fx,0.0018861029529944062 +illusion_0.75L,ppo,3,0.6,force,front_fy,0.0008044134010560811 +illusion_0.75L,ppo,3,0.6,force,upper_fx,0.0012788396561518312 +illusion_0.75L,ppo,3,0.6,force,upper_fy,0.002906312234699726 +illusion_0.75L,ppo,3,0.6,force,lower_fx,0.0009574578725732863 +illusion_0.75L,ppo,3,0.6,force,lower_fy,-0.0038804756477475166 +illusion_0.75L,ppo,4,0.8,force,front_fx,0.0020636918488889933 +illusion_0.75L,ppo,4,0.8,force,front_fy,0.0009617903851903975 +illusion_0.75L,ppo,4,0.8,force,upper_fx,0.0013416932197287679 +illusion_0.75L,ppo,4,0.8,force,upper_fy,0.003035745583474636 +illusion_0.75L,ppo,4,0.8,force,lower_fx,0.0008443875703960657 +illusion_0.75L,ppo,4,0.8,force,lower_fy,-0.003952194936573505 +illusion_0.75L,ppo,5,1.0,force,front_fx,0.0022132322192192078 +illusion_0.75L,ppo,5,1.0,force,front_fy,0.001007769606076181 +illusion_0.75L,ppo,5,1.0,force,upper_fx,0.0014373385347425938 +illusion_0.75L,ppo,5,1.0,force,upper_fy,0.003140734974294901 +illusion_0.75L,ppo,5,1.0,force,lower_fx,0.0006240688380785286 +illusion_0.75L,ppo,5,1.0,force,lower_fy,-0.003964030649513006 +illusion_0.75L,ppo,6,1.2,force,front_fx,0.002395238960161805 +illusion_0.75L,ppo,6,1.2,force,front_fy,0.00100070727057755 +illusion_0.75L,ppo,6,1.2,force,upper_fx,0.0015764674171805382 +illusion_0.75L,ppo,6,1.2,force,upper_fy,0.0031941342167556286 +illusion_0.75L,ppo,6,1.2,force,lower_fx,0.0003417850530240685 +illusion_0.75L,ppo,6,1.2,force,lower_fy,-0.003963257186114788 +illusion_0.75L,ppo,7,1.4,force,front_fx,0.0026503491681069136 +illusion_0.75L,ppo,7,1.4,force,front_fy,0.0009573642746545374 +illusion_0.75L,ppo,7,1.4,force,upper_fx,0.0017204855103045702 +illusion_0.75L,ppo,7,1.4,force,upper_fy,0.003184547182172537 +illusion_0.75L,ppo,7,1.4,force,lower_fx,1.8233391529065557e-05 +illusion_0.75L,ppo,7,1.4,force,lower_fy,-0.003942803014069796 +illusion_0.75L,ppo,8,1.6,force,front_fx,0.002838890766724944 +illusion_0.75L,ppo,8,1.6,force,front_fy,0.0009069018997251987 +illusion_0.75L,ppo,8,1.6,force,upper_fx,0.0018467078916728497 +illusion_0.75L,ppo,8,1.6,force,upper_fy,0.003167684655636549 +illusion_0.75L,ppo,8,1.6,force,lower_fx,-0.0003188663977198303 +illusion_0.75L,ppo,8,1.6,force,lower_fy,-0.003906534053385258 +illusion_0.75L,ppo,9,1.8,force,front_fx,0.0030190064571797848 +illusion_0.75L,ppo,9,1.8,force,front_fy,0.0008601483423262835 +illusion_0.75L,ppo,9,1.8,force,upper_fx,0.001944382325746119 +illusion_0.75L,ppo,9,1.8,force,upper_fy,0.0031813369132578373 +illusion_0.75L,ppo,9,1.8,force,lower_fx,-0.000646275351755321 +illusion_0.75L,ppo,9,1.8,force,lower_fy,-0.0038357421290129423 +illusion_0.75L,ppo,10,2.0,force,front_fx,0.003122299909591675 +illusion_0.75L,ppo,10,2.0,force,front_fy,0.0008843221585266292 +illusion_0.75L,ppo,10,2.0,force,upper_fx,0.0020197557751089334 +illusion_0.75L,ppo,10,2.0,force,upper_fy,0.003224823856726289 +illusion_0.75L,ppo,10,2.0,force,lower_fx,-0.0009480243897996843 +illusion_0.75L,ppo,10,2.0,force,lower_fy,-0.0037522558122873306 +illusion_0.75L,ppo,11,2.2,force,front_fx,0.0031846421770751476 +illusion_0.75L,ppo,11,2.2,force,front_fy,0.0008008952718228102 +illusion_0.75L,ppo,11,2.2,force,upper_fx,0.002092494396492839 +illusion_0.75L,ppo,11,2.2,force,upper_fy,0.003279233817011118 +illusion_0.75L,ppo,11,2.2,force,lower_fx,-0.0012174185831099749 +illusion_0.75L,ppo,11,2.2,force,lower_fy,-0.003646202152594924 +illusion_0.75L,ppo,12,2.4,force,front_fx,0.003199318889528513 +illusion_0.75L,ppo,12,2.4,force,front_fy,0.000792086124420166 +illusion_0.75L,ppo,12,2.4,force,upper_fx,0.0021513449028134346 +illusion_0.75L,ppo,12,2.4,force,upper_fy,0.0033260697964578867 +illusion_0.75L,ppo,12,2.4,force,lower_fx,-0.0014660372398793697 +illusion_0.75L,ppo,12,2.4,force,lower_fy,-0.003543945262208581 +illusion_0.75L,ppo,13,2.6,force,front_fx,0.0031504107173532248 +illusion_0.75L,ppo,13,2.6,force,front_fy,0.0008130324422381818 +illusion_0.75L,ppo,13,2.6,force,upper_fx,0.002189238788560033 +illusion_0.75L,ppo,13,2.6,force,upper_fy,0.0033522588200867176 +illusion_0.75L,ppo,13,2.6,force,lower_fx,-0.0016784570179879665 +illusion_0.75L,ppo,13,2.6,force,lower_fy,-0.003465831046923995 +illusion_0.75L,ppo,14,2.8,force,front_fx,0.0030731239821761847 +illusion_0.75L,ppo,14,2.8,force,front_fy,0.0008369989809580147 +illusion_0.75L,ppo,14,2.8,force,upper_fx,0.0022212513722479343 +illusion_0.75L,ppo,14,2.8,force,upper_fy,0.0033519756980240345 +illusion_0.75L,ppo,14,2.8,force,lower_fx,-0.0018403163412585855 +illusion_0.75L,ppo,14,2.8,force,lower_fy,-0.003437474137172103 +illusion_0.75L,ppo,15,3.0,force,front_fx,0.0029620903078466654 +illusion_0.75L,ppo,15,3.0,force,front_fy,0.0008879602537490427 +illusion_0.75L,ppo,15,3.0,force,upper_fx,0.002243800088763237 +illusion_0.75L,ppo,15,3.0,force,upper_fy,0.0033172648400068283 +illusion_0.75L,ppo,15,3.0,force,lower_fx,-0.001945593161508441 +illusion_0.75L,ppo,15,3.0,force,lower_fy,-0.00346437213011086 +illusion_0.75L,ppo,16,3.2,force,front_fx,0.002838564570993185 +illusion_0.75L,ppo,16,3.2,force,front_fy,0.0009398239781148732 +illusion_0.75L,ppo,16,3.2,force,upper_fx,0.002279577311128378 +illusion_0.75L,ppo,16,3.2,force,upper_fy,0.0032518496736884117 +illusion_0.75L,ppo,16,3.2,force,lower_fx,-0.0019635434728115797 +illusion_0.75L,ppo,16,3.2,force,lower_fy,-0.0035527986474335194 +illusion_0.75L,ppo,17,3.4,force,front_fx,0.002715574810281396 +illusion_0.75L,ppo,17,3.4,force,front_fy,0.0010144925909116864 +illusion_0.75L,ppo,17,3.4,force,upper_fx,0.002320785541087389 +illusion_0.75L,ppo,17,3.4,force,upper_fy,0.003146651666611433 +illusion_0.75L,ppo,17,3.4,force,lower_fx,-0.0019018602324649692 +illusion_0.75L,ppo,17,3.4,force,lower_fy,-0.0036688444670289755 +illusion_0.75L,ppo,18,3.6,force,front_fx,0.002489108359441161 +illusion_0.75L,ppo,18,3.6,force,front_fy,0.0010941486107185483 +illusion_0.75L,ppo,18,3.6,force,upper_fx,0.0024296233896166086 +illusion_0.75L,ppo,18,3.6,force,upper_fy,0.0030356200877577066 +illusion_0.75L,ppo,18,3.6,force,lower_fx,-0.0018000431591644883 +illusion_0.75L,ppo,18,3.6,force,lower_fy,-0.0037749065086245537 +illusion_0.75L,ppo,19,3.8,force,front_fx,0.002527276985347271 +illusion_0.75L,ppo,19,3.8,force,front_fy,0.0010932283475995064 +illusion_0.75L,ppo,19,3.8,force,upper_fx,0.002419949509203434 +illusion_0.75L,ppo,19,3.8,force,upper_fy,0.002874389523640275 +illusion_0.75L,ppo,19,3.8,force,lower_fx,-0.0015740128001198173 +illusion_0.75L,ppo,19,3.8,force,lower_fy,-0.003933606669306755 +illusion_0.75L,ppo,20,4.0,force,front_fx,0.002465859754011035 +illusion_0.75L,ppo,20,4.0,force,front_fy,0.0011090206680819392 +illusion_0.75L,ppo,20,4.0,force,upper_fx,0.0024756372440606356 +illusion_0.75L,ppo,20,4.0,force,upper_fy,0.0026955134235322475 +illusion_0.75L,ppo,20,4.0,force,lower_fx,-0.0013433791464194655 +illusion_0.75L,ppo,20,4.0,force,lower_fy,-0.004069081507623196 +illusion_0.75L,ppo,21,4.2,force,front_fx,0.0024153748527169228 +illusion_0.75L,ppo,21,4.2,force,front_fy,0.0011173515813425183 +illusion_0.75L,ppo,21,4.2,force,upper_fx,0.002492491388693452 +illusion_0.75L,ppo,21,4.2,force,upper_fy,0.0025974668096750975 +illusion_0.75L,ppo,21,4.2,force,lower_fx,-0.0010894197039306164 +illusion_0.75L,ppo,21,4.2,force,lower_fy,-0.004163021221756935 +illusion_0.75L,ppo,22,4.4,force,front_fx,0.0023745845537632704 +illusion_0.75L,ppo,22,4.4,force,front_fy,0.0010840686736628413 +illusion_0.75L,ppo,22,4.4,force,upper_fx,0.0024585567880421877 +illusion_0.75L,ppo,22,4.4,force,upper_fy,0.0025403830222785473 +illusion_0.75L,ppo,22,4.4,force,lower_fx,-0.0008675818098708987 +illusion_0.75L,ppo,22,4.4,force,lower_fy,-0.004247881472110748 +illusion_0.75L,ppo,23,4.6,force,front_fx,0.002331237541511655 +illusion_0.75L,ppo,23,4.6,force,front_fy,0.0010131665039807558 +illusion_0.75L,ppo,23,4.6,force,upper_fx,0.002390332752838731 +illusion_0.75L,ppo,23,4.6,force,upper_fy,0.002541261725127697 +illusion_0.75L,ppo,23,4.6,force,lower_fx,-0.0006821672432124615 +illusion_0.75L,ppo,23,4.6,force,lower_fy,-0.0043358332477509975 +illusion_0.75L,ppo,24,4.8,force,front_fx,0.0022914428263902664 +illusion_0.75L,ppo,24,4.8,force,front_fy,0.0009409287595190108 +illusion_0.75L,ppo,24,4.8,force,upper_fx,0.0023053567856550217 +illusion_0.75L,ppo,24,4.8,force,upper_fy,0.002604386303573847 +illusion_0.75L,ppo,24,4.8,force,lower_fx,-0.0005219783051870763 +illusion_0.75L,ppo,24,4.8,force,lower_fy,-0.00440474646165967 +illusion_0.75L,ppo,25,5.0,force,front_fx,0.002266863826662302 +illusion_0.75L,ppo,25,5.0,force,front_fy,0.0008693505078554153 +illusion_0.75L,ppo,25,5.0,force,upper_fx,0.0022126524709165096 +illusion_0.75L,ppo,25,5.0,force,upper_fy,0.0027117424178868532 +illusion_0.75L,ppo,25,5.0,force,lower_fx,-0.0003870664513669908 +illusion_0.75L,ppo,25,5.0,force,lower_fy,-0.004459538031369448 +illusion_0.75L,ppo,26,5.2,force,front_fx,0.002249655779451132 +illusion_0.75L,ppo,26,5.2,force,front_fy,0.0008009108132682741 +illusion_0.75L,ppo,26,5.2,force,upper_fx,0.002117004245519638 +illusion_0.75L,ppo,26,5.2,force,upper_fy,0.002843396971002221 +illusion_0.75L,ppo,26,5.2,force,lower_fx,-0.00028723932337015867 +illusion_0.75L,ppo,26,5.2,force,lower_fy,-0.004502394236624241 +illusion_0.75L,ppo,27,5.4,force,front_fx,0.0022402957547456026 +illusion_0.75L,ppo,27,5.4,force,front_fy,0.0007403123890981078 +illusion_0.75L,ppo,27,5.4,force,upper_fx,0.0020150290802121162 +illusion_0.75L,ppo,27,5.4,force,upper_fy,0.002996213501319289 +illusion_0.75L,ppo,27,5.4,force,lower_fx,-0.0002210001985076815 +illusion_0.75L,ppo,27,5.4,force,lower_fy,-0.004536157473921776 +illusion_0.75L,ppo,28,5.6,force,front_fx,0.00224415585398674 +illusion_0.75L,ppo,28,5.6,force,front_fy,0.0006851591751910746 +illusion_0.75L,ppo,28,5.6,force,upper_fx,0.0019091494614258409 +illusion_0.75L,ppo,28,5.6,force,upper_fy,0.003151844721287489 +illusion_0.75L,ppo,28,5.6,force,lower_fx,-0.00019207189325243235 +illusion_0.75L,ppo,28,5.6,force,lower_fy,-0.004546913783997297 +illusion_0.75L,ppo,29,5.8,force,front_fx,0.002236340893432498 +illusion_0.75L,ppo,29,5.8,force,front_fy,0.0006283455295488238 +illusion_0.75L,ppo,29,5.8,force,upper_fx,0.001806952408514917 +illusion_0.75L,ppo,29,5.8,force,upper_fy,0.0033119770232588053 +illusion_0.75L,ppo,29,5.8,force,lower_fx,-0.0001975849299924448 +illusion_0.75L,ppo,29,5.8,force,lower_fy,-0.004551749676465988 +illusion_0.75L,ppo,30,6.0,force,front_fx,0.00224441010504961 +illusion_0.75L,ppo,30,6.0,force,front_fy,0.0005750372656621039 +illusion_0.75L,ppo,30,6.0,force,upper_fx,0.0017200321890413761 +illusion_0.75L,ppo,30,6.0,force,upper_fy,0.0034609120339155197 +illusion_0.75L,ppo,30,6.0,force,lower_fx,-0.00022214536147657782 +illusion_0.75L,ppo,30,6.0,force,lower_fy,-0.004530381411314011 +illusion_0.75L,ppo,31,6.2,force,front_fx,0.0022483773063868284 +illusion_0.75L,ppo,31,6.2,force,front_fy,0.0005384355317801237 +illusion_0.75L,ppo,31,6.2,force,upper_fx,0.0016542538069188595 +illusion_0.75L,ppo,31,6.2,force,upper_fy,0.0036011042539030313 +illusion_0.75L,ppo,31,6.2,force,lower_fx,-0.00025534690939821303 +illusion_0.75L,ppo,31,6.2,force,lower_fy,-0.004492240026593208 +illusion_0.75L,ppo,32,6.4,force,front_fx,0.0022597822826355696 +illusion_0.75L,ppo,32,6.4,force,front_fy,0.0004998036311008036 +illusion_0.75L,ppo,32,6.4,force,upper_fx,0.0016051550628617406 +illusion_0.75L,ppo,32,6.4,force,upper_fy,0.003730897093191743 +illusion_0.75L,ppo,32,6.4,force,lower_fx,-0.00030463712755590677 +illusion_0.75L,ppo,32,6.4,force,lower_fy,-0.004432099871337414 +illusion_0.75L,ppo,33,6.6,force,front_fx,0.0022770764771848917 +illusion_0.75L,ppo,33,6.6,force,front_fy,0.0004910602583549917 +illusion_0.75L,ppo,33,6.6,force,upper_fx,0.0015781533438712358 +illusion_0.75L,ppo,33,6.6,force,upper_fy,0.0038412895519286394 +illusion_0.75L,ppo,33,6.6,force,lower_fx,-0.00036117478157393634 +illusion_0.75L,ppo,33,6.6,force,lower_fy,-0.004359205719083548 +illusion_0.75L,ppo,34,6.8,force,front_fx,0.002314059529453516 +illusion_0.75L,ppo,34,6.8,force,front_fy,0.0005034483037889004 +illusion_0.75L,ppo,34,6.8,force,upper_fx,0.0015790467150509357 +illusion_0.75L,ppo,34,6.8,force,upper_fy,0.003909020684659481 +illusion_0.75L,ppo,34,6.8,force,lower_fx,-0.0004175216017756611 +illusion_0.75L,ppo,34,6.8,force,lower_fy,-0.004266197793185711 +illusion_0.75L,ppo,35,7.0,force,front_fx,0.0023382536601275206 +illusion_0.75L,ppo,35,7.0,force,front_fy,0.0005632483516819775 +illusion_0.75L,ppo,35,7.0,force,upper_fx,0.0016199754318222404 +illusion_0.75L,ppo,35,7.0,force,upper_fy,0.003926762379705906 +illusion_0.75L,ppo,35,7.0,force,lower_fx,-0.000471673411084339 +illusion_0.75L,ppo,35,7.0,force,lower_fy,-0.004151680041104555 +illusion_0.75L,ppo,36,7.2,force,front_fx,0.0024122237227857113 +illusion_0.75L,ppo,36,7.2,force,front_fy,0.0006545909564010799 +illusion_0.75L,ppo,36,7.2,force,upper_fx,0.0016803990583866835 +illusion_0.75L,ppo,36,7.2,force,upper_fy,0.003890057560056448 +illusion_0.75L,ppo,36,7.2,force,lower_fx,-0.0005531958886422217 +illusion_0.75L,ppo,36,7.2,force,lower_fy,-0.004007833544164896 +illusion_0.75L,ppo,37,7.4,force,front_fx,0.002514695515856147 +illusion_0.75L,ppo,37,7.4,force,front_fy,0.0007809273083694279 +illusion_0.75L,ppo,37,7.4,force,upper_fx,0.0017736784648150206 +illusion_0.75L,ppo,37,7.4,force,upper_fy,0.0038013195153325796 +illusion_0.75L,ppo,37,7.4,force,lower_fx,-0.0006179012125357985 +illusion_0.75L,ppo,37,7.4,force,lower_fy,-0.003889605402946472 +illusion_0.75L,ppo,38,7.6,force,front_fx,0.0026868421118706465 +illusion_0.75L,ppo,38,7.6,force,front_fy,0.0009334965143352747 +illusion_0.75L,ppo,38,7.6,force,upper_fx,0.0018806376028805971 +illusion_0.75L,ppo,38,7.6,force,upper_fy,0.0036557100247591734 +illusion_0.75L,ppo,38,7.6,force,lower_fx,-0.0007102494710125029 +illusion_0.75L,ppo,38,7.6,force,lower_fy,-0.0037809216883033514 +illusion_0.75L,ppo,39,7.8,force,front_fx,0.0028037484735250473 +illusion_0.75L,ppo,39,7.8,force,front_fy,0.001084637362509966 +illusion_0.75L,ppo,39,7.8,force,upper_fx,0.001992447767406702 +illusion_0.75L,ppo,39,7.8,force,upper_fy,0.003482075873762369 +illusion_0.75L,ppo,39,7.8,force,lower_fx,-0.0008346395334228873 +illusion_0.75L,ppo,39,7.8,force,lower_fy,-0.0036911580245941877 +illusion_0.75L,ppo,40,8.0,force,front_fx,0.0029745481442660093 +illusion_0.75L,ppo,40,8.0,force,front_fy,0.0012094434350728989 +illusion_0.75L,ppo,40,8.0,force,upper_fx,0.0020912685431540012 +illusion_0.75L,ppo,40,8.0,force,upper_fy,0.003302141325548291 +illusion_0.75L,ppo,40,8.0,force,lower_fx,-0.0009967584628611803 +illusion_0.75L,ppo,40,8.0,force,lower_fy,-0.0036282252985984087 +illusion_0.75L,ppo,41,8.2,force,front_fx,0.0031341102439910173 +illusion_0.75L,ppo,41,8.2,force,front_fy,0.0013178327353671193 +illusion_0.75L,ppo,41,8.2,force,upper_fx,0.0021595763973891735 +illusion_0.75L,ppo,41,8.2,force,upper_fy,0.0031128462869673967 +illusion_0.75L,ppo,41,8.2,force,lower_fx,-0.0011663371697068214 +illusion_0.75L,ppo,41,8.2,force,lower_fy,-0.003599158488214016 +illusion_0.75L,ppo,42,8.4,force,front_fx,0.003298019990324974 +illusion_0.75L,ppo,42,8.4,force,front_fy,0.001386496121995151 +illusion_0.75L,ppo,42,8.4,force,upper_fx,0.002225380390882492 +illusion_0.75L,ppo,42,8.4,force,upper_fy,0.0029476007912307978 +illusion_0.75L,ppo,42,8.4,force,lower_fx,-0.0013067434774711728 +illusion_0.75L,ppo,42,8.4,force,lower_fy,-0.003593403147533536 +illusion_0.75L,ppo,43,8.6,force,front_fx,0.003410843899473548 +illusion_0.75L,ppo,43,8.6,force,front_fy,0.0014215890550985932 +illusion_0.75L,ppo,43,8.6,force,upper_fx,0.0022770336363464594 +illusion_0.75L,ppo,43,8.6,force,upper_fy,0.002835016930475831 +illusion_0.75L,ppo,43,8.6,force,lower_fx,-0.0014359172200784087 +illusion_0.75L,ppo,43,8.6,force,lower_fy,-0.0035948785953223705 +illusion_0.75L,ppo,44,8.8,force,front_fx,0.003485238179564476 +illusion_0.75L,ppo,44,8.8,force,front_fy,0.001440118532627821 +illusion_0.75L,ppo,44,8.8,force,upper_fx,0.0023142730351537466 +illusion_0.75L,ppo,44,8.8,force,upper_fy,0.0027826058212667704 +illusion_0.75L,ppo,44,8.8,force,lower_fx,-0.0015491362428292632 +illusion_0.75L,ppo,44,8.8,force,lower_fy,-0.0036140053998678923 +illusion_0.75L,ppo,45,9.0,force,front_fx,0.0034678070805966854 +illusion_0.75L,ppo,45,9.0,force,front_fy,0.0014161873841658235 +illusion_0.75L,ppo,45,9.0,force,upper_fx,0.0023496393114328384 +illusion_0.75L,ppo,45,9.0,force,upper_fy,0.002774738473817706 +illusion_0.75L,ppo,45,9.0,force,lower_fx,-0.0016427378868684173 +illusion_0.75L,ppo,45,9.0,force,lower_fy,-0.003638347378000617 +illusion_0.75L,ppo,46,9.2,force,front_fx,0.003460327163338661 +illusion_0.75L,ppo,46,9.2,force,front_fy,0.001386600430123508 +illusion_0.75L,ppo,46,9.2,force,upper_fx,0.0023682827595621347 +illusion_0.75L,ppo,46,9.2,force,upper_fy,0.00281172851100564 +illusion_0.75L,ppo,46,9.2,force,lower_fx,-0.0017480041133239865 +illusion_0.75L,ppo,46,9.2,force,lower_fy,-0.0036784932017326355 +illusion_0.75L,ppo,47,9.4,force,front_fx,0.003400273621082306 +illusion_0.75L,ppo,47,9.4,force,front_fy,0.0013357235584408045 +illusion_0.75L,ppo,47,9.4,force,upper_fx,0.002392530906945467 +illusion_0.75L,ppo,47,9.4,force,upper_fy,0.00284584891051054 +illusion_0.75L,ppo,47,9.4,force,lower_fx,-0.0018177395686507225 +illusion_0.75L,ppo,47,9.4,force,lower_fy,-0.0037516113370656967 +illusion_0.75L,ppo,48,9.6,force,front_fx,0.0032836957834661007 +illusion_0.75L,ppo,48,9.6,force,front_fy,0.0012926631607115269 +illusion_0.75L,ppo,48,9.6,force,upper_fx,0.0023972331546247005 +illusion_0.75L,ppo,48,9.6,force,upper_fy,0.0028972553554922342 +illusion_0.75L,ppo,48,9.6,force,lower_fx,-0.0018709978321567178 +illusion_0.75L,ppo,48,9.6,force,lower_fy,-0.003848558757454157 +illusion_0.75L,ppo,49,9.8,force,front_fx,0.003149974625557661 +illusion_0.75L,ppo,49,9.8,force,front_fy,0.0012406569439917803 +illusion_0.75L,ppo,49,9.8,force,upper_fx,0.002405347768217325 +illusion_0.75L,ppo,49,9.8,force,upper_fy,0.0029315135907381773 +illusion_0.75L,ppo,49,9.8,force,lower_fx,-0.001883027725853026 +illusion_0.75L,ppo,49,9.8,force,lower_fy,-0.003977049142122269 +illusion_0.75L,ppo,50,10.0,force,front_fx,0.002995448186993599 +illusion_0.75L,ppo,50,10.0,force,front_fy,0.001180285937152803 +illusion_0.75L,ppo,50,10.0,force,upper_fx,0.0023970899637788534 +illusion_0.75L,ppo,50,10.0,force,upper_fy,0.0029513828922063112 +illusion_0.75L,ppo,50,10.0,force,lower_fx,-0.001847930601797998 +illusion_0.75L,ppo,50,10.0,force,lower_fy,-0.0041296835988759995 +illusion_0.75L,ppo,51,10.2,force,front_fx,0.002822192618623376 +illusion_0.75L,ppo,51,10.2,force,front_fy,0.0011092902859672904 +illusion_0.75L,ppo,51,10.2,force,upper_fx,0.002391667105257511 +illusion_0.75L,ppo,51,10.2,force,upper_fy,0.0029580499976873398 +illusion_0.75L,ppo,51,10.2,force,lower_fx,-0.0017585025634616613 +illusion_0.75L,ppo,51,10.2,force,lower_fy,-0.00429629348218441 +illusion_0.75L,ppo,52,10.4,force,front_fx,0.0026635609101504087 +illusion_0.75L,ppo,52,10.4,force,front_fy,0.0010243707802146673 +illusion_0.75L,ppo,52,10.4,force,upper_fx,0.002373351249843836 +illusion_0.75L,ppo,52,10.4,force,upper_fy,0.0029508701991289854 +illusion_0.75L,ppo,52,10.4,force,lower_fx,-0.0016086692921817303 +illusion_0.75L,ppo,52,10.4,force,lower_fy,-0.004462060052901506 +illusion_0.75L,ppo,53,10.6,force,front_fx,0.002521792659536004 +illusion_0.75L,ppo,53,10.6,force,front_fy,0.0009562451159581542 +illusion_0.75L,ppo,53,10.6,force,upper_fx,0.0023525699507445097 +illusion_0.75L,ppo,53,10.6,force,upper_fy,0.002932610223069787 +illusion_0.75L,ppo,53,10.6,force,lower_fx,-0.0014183619059622288 +illusion_0.75L,ppo,53,10.6,force,lower_fy,-0.004595620092004538 +illusion_0.75L,ppo,54,10.8,force,front_fx,0.0024135808926075697 +illusion_0.75L,ppo,54,10.8,force,front_fy,0.0009099565213546157 +illusion_0.75L,ppo,54,10.8,force,upper_fx,0.002316778525710106 +illusion_0.75L,ppo,54,10.8,force,upper_fy,0.0029141176491975784 +illusion_0.75L,ppo,54,10.8,force,lower_fx,-0.0011952911736443639 +illusion_0.75L,ppo,54,10.8,force,lower_fy,-0.004688779357820749 +illusion_0.75L,ppo,55,11.0,force,front_fx,0.0023462483659386635 +illusion_0.75L,ppo,55,11.0,force,front_fy,0.0008850465528666973 +illusion_0.75L,ppo,55,11.0,force,upper_fx,0.0022625993005931377 +illusion_0.75L,ppo,55,11.0,force,upper_fy,0.002894048113375902 +illusion_0.75L,ppo,55,11.0,force,lower_fx,-0.0009697357309050858 +illusion_0.75L,ppo,55,11.0,force,lower_fy,-0.00473882956430316 +illusion_0.75L,ppo,56,11.2,force,front_fx,0.002321917098015547 +illusion_0.75L,ppo,56,11.2,force,front_fy,0.0008621781598776579 +illusion_0.75L,ppo,56,11.2,force,upper_fx,0.002197717083618045 +illusion_0.75L,ppo,56,11.2,force,upper_fy,0.0028775567188858986 +illusion_0.75L,ppo,56,11.2,force,lower_fx,-0.0007582670659758151 +illusion_0.75L,ppo,56,11.2,force,lower_fy,-0.004755334462970495 +illusion_0.75L,ppo,57,11.4,force,front_fx,0.002317724982276559 +illusion_0.75L,ppo,57,11.4,force,front_fy,0.0008463069098070264 +illusion_0.75L,ppo,57,11.4,force,upper_fx,0.0021175879519432783 +illusion_0.75L,ppo,57,11.4,force,upper_fy,0.002883420092985034 +illusion_0.75L,ppo,57,11.4,force,lower_fx,-0.0005908800521865487 +illusion_0.75L,ppo,57,11.4,force,lower_fy,-0.004743899218738079 +illusion_0.75L,ppo,58,11.6,force,front_fx,0.002318423939868808 +illusion_0.75L,ppo,58,11.6,force,front_fy,0.0008282610797323287 +illusion_0.75L,ppo,58,11.6,force,upper_fx,0.002030737465247512 +illusion_0.75L,ppo,58,11.6,force,upper_fy,0.002911968622356653 +illusion_0.75L,ppo,58,11.6,force,lower_fx,-0.0004603484703693539 +illusion_0.75L,ppo,58,11.6,force,lower_fy,-0.004705419763922691 +illusion_0.75L,ppo,59,11.8,force,front_fx,0.0023764625657349825 +illusion_0.75L,ppo,59,11.8,force,front_fy,0.000799493573140353 +illusion_0.75L,ppo,59,11.8,force,upper_fx,0.0019544896204024553 +illusion_0.75L,ppo,59,11.8,force,upper_fy,0.002965344116091728 +illusion_0.75L,ppo,59,11.8,force,lower_fx,-0.00036267071845941246 +illusion_0.75L,ppo,59,11.8,force,lower_fy,-0.004654146730899811 +illusion_0.75L,ppo,60,12.0,force,front_fx,0.0024038974661380053 +illusion_0.75L,ppo,60,12.0,force,front_fy,0.0007640822441317141 +illusion_0.75L,ppo,60,12.0,force,upper_fx,0.0018760593375191092 +illusion_0.75L,ppo,60,12.0,force,upper_fy,0.003036125097423792 +illusion_0.75L,ppo,60,12.0,force,lower_fx,-0.00030374189373105764 +illusion_0.75L,ppo,60,12.0,force,lower_fy,-0.004599719308316708 +illusion_0.75L,ppo,61,12.2,force,front_fx,0.0024436404928565025 +illusion_0.75L,ppo,61,12.2,force,front_fy,0.0007306783809326589 +illusion_0.75L,ppo,61,12.2,force,upper_fx,0.0018152132397517562 +illusion_0.75L,ppo,61,12.2,force,upper_fy,0.003130630822852254 +illusion_0.75L,ppo,61,12.2,force,lower_fx,-0.00027084106113761663 +illusion_0.75L,ppo,61,12.2,force,lower_fy,-0.004528626333922148 +illusion_0.75L,ppo,62,12.4,force,front_fx,0.002474029315635562 +illusion_0.75L,ppo,62,12.4,force,front_fy,0.0006941436440683901 +illusion_0.75L,ppo,62,12.4,force,upper_fx,0.0017712770495563745 +illusion_0.75L,ppo,62,12.4,force,upper_fy,0.0032414840534329414 +illusion_0.75L,ppo,62,12.4,force,lower_fx,-0.0002525902818888426 +illusion_0.75L,ppo,62,12.4,force,lower_fy,-0.004440851043909788 +illusion_0.75L,ppo,63,12.6,force,front_fx,0.0024904562160372734 +illusion_0.75L,ppo,63,12.6,force,front_fy,0.0006545704673044384 +illusion_0.75L,ppo,63,12.6,force,upper_fx,0.0017366621177643538 +illusion_0.75L,ppo,63,12.6,force,upper_fy,0.0033634440042078495 +illusion_0.75L,ppo,63,12.6,force,lower_fx,-0.0002660501340869814 +illusion_0.75L,ppo,63,12.6,force,lower_fy,-0.0043327887542545795 +illusion_0.75L,ppo,64,12.8,force,front_fx,0.002502082847058773 +illusion_0.75L,ppo,64,12.8,force,front_fy,0.0006175418966449797 +illusion_0.75L,ppo,64,12.8,force,upper_fx,0.001736918231472373 +illusion_0.75L,ppo,64,12.8,force,upper_fy,0.0034952631685882807 +illusion_0.75L,ppo,64,12.8,force,lower_fx,-0.000282436580164358 +illusion_0.75L,ppo,64,12.8,force,lower_fy,-0.004209721926599741 +illusion_0.75L,ppo,65,13.0,force,front_fx,0.0025008523371070623 +illusion_0.75L,ppo,65,13.0,force,front_fy,0.0006125965155661106 +illusion_0.75L,ppo,65,13.0,force,upper_fx,0.001758319791406393 +illusion_0.75L,ppo,65,13.0,force,upper_fy,0.003628402017056942 +illusion_0.75L,ppo,65,13.0,force,lower_fx,-0.0003071807441301644 +illusion_0.75L,ppo,65,13.0,force,lower_fy,-0.004089293070137501 +illusion_0.75L,ppo,66,13.2,force,front_fx,0.002466633217409253 +illusion_0.75L,ppo,66,13.2,force,front_fy,0.0005333382287062705 +illusion_0.75L,ppo,66,13.2,force,upper_fx,0.0018021325813606381 +illusion_0.75L,ppo,66,13.2,force,upper_fy,0.0037669972516596317 +illusion_0.75L,ppo,66,13.2,force,lower_fx,-0.00035693281097337604 +illusion_0.75L,ppo,66,13.2,force,lower_fy,-0.003974799532443285 +illusion_0.75L,ppo,67,13.4,force,front_fx,0.0024363924749195576 +illusion_0.75L,ppo,67,13.4,force,front_fy,0.0005133289378136396 +illusion_0.75L,ppo,67,13.4,force,upper_fx,0.0018539701122790575 +illusion_0.75L,ppo,67,13.4,force,upper_fy,0.003904283046722412 +illusion_0.75L,ppo,67,13.4,force,lower_fx,-0.00042958674021065235 +illusion_0.75L,ppo,67,13.4,force,lower_fy,-0.003873879322782159 +illusion_0.75L,ppo,68,13.6,force,front_fx,0.0024013726506382227 +illusion_0.75L,ppo,68,13.6,force,front_fy,0.0005251518450677395 +illusion_0.75L,ppo,68,13.6,force,upper_fx,0.0019027756061404943 +illusion_0.75L,ppo,68,13.6,force,upper_fy,0.004012013785541058 +illusion_0.75L,ppo,68,13.6,force,lower_fx,-0.0005135913961566985 +illusion_0.75L,ppo,68,13.6,force,lower_fy,-0.003786448622122407 +illusion_0.75L,ppo,69,13.8,force,front_fx,0.002378839300945401 +illusion_0.75L,ppo,69,13.8,force,front_fy,0.0005723975482396781 +illusion_0.75L,ppo,69,13.8,force,upper_fx,0.001963974442332983 +illusion_0.75L,ppo,69,13.8,force,upper_fy,0.004079923033714294 +illusion_0.75L,ppo,69,13.8,force,lower_fx,-0.0006010248907841742 +illusion_0.75L,ppo,69,13.8,force,lower_fy,-0.003720188746228814 +illusion_0.75L,ppo,70,14.0,force,front_fx,0.0023665963672101498 +illusion_0.75L,ppo,70,14.0,force,front_fy,0.0006630580755881965 +illusion_0.75L,ppo,70,14.0,force,upper_fx,0.0020358404144644737 +illusion_0.75L,ppo,70,14.0,force,upper_fy,0.004100659396499395 +illusion_0.75L,ppo,70,14.0,force,lower_fx,-0.0006870708893984556 +illusion_0.75L,ppo,70,14.0,force,lower_fy,-0.003670621896162629 +illusion_0.75L,ppo,71,14.2,force,front_fx,0.002399848308414221 +illusion_0.75L,ppo,71,14.2,force,front_fy,0.000798273307736963 +illusion_0.75L,ppo,71,14.2,force,upper_fx,0.0021080169826745987 +illusion_0.75L,ppo,71,14.2,force,upper_fy,0.0040689557790756226 +illusion_0.75L,ppo,71,14.2,force,lower_fx,-0.0007821486797183752 +illusion_0.75L,ppo,71,14.2,force,lower_fy,-0.003638778580352664 +illusion_0.75L,ppo,72,14.4,force,front_fx,0.0024430612102150917 +illusion_0.75L,ppo,72,14.4,force,front_fy,0.0009545214707031846 +illusion_0.75L,ppo,72,14.4,force,upper_fx,0.002190035069361329 +illusion_0.75L,ppo,72,14.4,force,upper_fy,0.003982746507972479 +illusion_0.75L,ppo,72,14.4,force,lower_fx,-0.0008867476717568934 +illusion_0.75L,ppo,72,14.4,force,lower_fy,-0.0036224129144102335 +illusion_0.75L,ppo,73,14.6,force,front_fx,0.002524780109524727 +illusion_0.75L,ppo,73,14.6,force,front_fy,0.001107985619455576 +illusion_0.75L,ppo,73,14.6,force,upper_fx,0.0022824672050774097 +illusion_0.75L,ppo,73,14.6,force,upper_fy,0.00385206937789917 +illusion_0.75L,ppo,73,14.6,force,lower_fx,-0.0009998813038691878 +illusion_0.75L,ppo,73,14.6,force,lower_fy,-0.00363025045953691 +illusion_0.75L,ppo,74,14.8,force,front_fx,0.002612865064293146 +illusion_0.75L,ppo,74,14.8,force,front_fy,0.001236181822605431 +illusion_0.75L,ppo,74,14.8,force,upper_fx,0.0023733919952064753 +illusion_0.75L,ppo,74,14.8,force,upper_fy,0.0036783977411687374 +illusion_0.75L,ppo,74,14.8,force,lower_fx,-0.0011309994151815772 +illusion_0.75L,ppo,74,14.8,force,lower_fy,-0.0036723993252962828 +illusion_0.75L,ppo,75,15.0,force,front_fx,0.002717594150453806 +illusion_0.75L,ppo,75,15.0,force,front_fy,0.001337788999080658 +illusion_0.75L,ppo,75,15.0,force,upper_fx,0.002472299849614501 +illusion_0.75L,ppo,75,15.0,force,upper_fy,0.0034874367993324995 +illusion_0.75L,ppo,75,15.0,force,lower_fx,-0.0012377798557281494 +illusion_0.75L,ppo,75,15.0,force,lower_fy,-0.003742957953363657 +illusion_0.75L,ppo,76,15.2,force,front_fx,0.002801078837364912 +illusion_0.75L,ppo,76,15.2,force,front_fy,0.0013767692726105452 +illusion_0.75L,ppo,76,15.2,force,upper_fx,0.002579924650490284 +illusion_0.75L,ppo,76,15.2,force,upper_fy,0.0032740579918026924 +illusion_0.75L,ppo,76,15.2,force,lower_fx,-0.0013166528660804033 +illusion_0.75L,ppo,76,15.2,force,lower_fy,-0.0038533038459718227 +illusion_0.75L,ppo,77,15.4,force,front_fx,0.002842424437403679 +illusion_0.75L,ppo,77,15.4,force,front_fy,0.0014120665146037936 +illusion_0.75L,ppo,77,15.4,force,upper_fx,0.002598423045128584 +illusion_0.75L,ppo,77,15.4,force,upper_fy,0.0031491511035710573 +illusion_0.75L,ppo,77,15.4,force,lower_fx,-0.00136938423383981 +illusion_0.75L,ppo,77,15.4,force,lower_fy,-0.0039838748052716255 +illusion_0.75L,ppo,78,15.6,force,front_fx,0.0028687536250799894 +illusion_0.75L,ppo,78,15.6,force,front_fy,0.0013919929042458534 +illusion_0.75L,ppo,78,15.6,force,upper_fx,0.002622178988531232 +illusion_0.75L,ppo,78,15.6,force,upper_fy,0.0030434916261583567 +illusion_0.75L,ppo,78,15.6,force,lower_fx,-0.0013754304964095354 +illusion_0.75L,ppo,78,15.6,force,lower_fy,-0.004133540205657482 +illusion_0.75L,ppo,79,15.8,force,front_fx,0.002821782836690545 +illusion_0.75L,ppo,79,15.8,force,front_fy,0.0013376990100368857 +illusion_0.75L,ppo,79,15.8,force,upper_fx,0.0026243075262755156 +illusion_0.75L,ppo,79,15.8,force,upper_fy,0.0029940863605588675 +illusion_0.75L,ppo,79,15.8,force,lower_fx,-0.0013462385395541787 +illusion_0.75L,ppo,79,15.8,force,lower_fy,-0.004281850531697273 +illusion_0.75L,ppo,80,16.0,force,front_fx,0.002781853312626481 +illusion_0.75L,ppo,80,16.0,force,front_fy,0.0012675204779952765 +illusion_0.75L,ppo,80,16.0,force,upper_fx,0.0026066226419061422 +illusion_0.75L,ppo,80,16.0,force,upper_fy,0.00300383847206831 +illusion_0.75L,ppo,80,16.0,force,lower_fx,-0.0012841519201174378 +illusion_0.75L,ppo,80,16.0,force,lower_fy,-0.004422132857143879 +illusion_0.75L,ppo,81,16.2,force,front_fx,0.0027123144827783108 +illusion_0.75L,ppo,81,16.2,force,front_fy,0.001179893035441637 +illusion_0.75L,ppo,81,16.2,force,upper_fx,0.0025690868496894836 +illusion_0.75L,ppo,81,16.2,force,upper_fy,0.003050469560548663 +illusion_0.75L,ppo,81,16.2,force,lower_fx,-0.001203314634039998 +illusion_0.75L,ppo,81,16.2,force,lower_fy,-0.004555580206215382 +illusion_0.75L,ppo,82,16.4,force,front_fx,0.002624355023726821 +illusion_0.75L,ppo,82,16.4,force,front_fy,0.0010965123074129224 +illusion_0.75L,ppo,82,16.4,force,upper_fx,0.0025153765454888344 +illusion_0.75L,ppo,82,16.4,force,upper_fy,0.003122162539511919 +illusion_0.75L,ppo,82,16.4,force,lower_fx,-0.0011176936095580459 +illusion_0.75L,ppo,82,16.4,force,lower_fy,-0.004688548855483532 +illusion_0.75L,ppo,83,16.6,force,front_fx,0.0025537193287163973 +illusion_0.75L,ppo,83,16.6,force,front_fy,0.0009534044656902552 +illusion_0.75L,ppo,83,16.6,force,upper_fx,0.0024453201331198215 +illusion_0.75L,ppo,83,16.6,force,upper_fy,0.0032030383590608835 +illusion_0.75L,ppo,83,16.6,force,lower_fx,-0.0010203091660514474 +illusion_0.75L,ppo,83,16.6,force,lower_fy,-0.004820064175873995 +illusion_0.75L,ppo,84,16.8,force,front_fx,0.002449509222060442 +illusion_0.75L,ppo,84,16.8,force,front_fy,0.0008535570814274251 +illusion_0.75L,ppo,84,16.8,force,upper_fx,0.002355229342356324 +illusion_0.75L,ppo,84,16.8,force,upper_fy,0.0032762885093688965 +illusion_0.75L,ppo,84,16.8,force,lower_fx,-0.0009196073515340686 +illusion_0.75L,ppo,84,16.8,force,lower_fy,-0.004943706560879946 +illusion_0.75L,ppo,85,17.0,force,front_fx,0.0023562442511320114 +illusion_0.75L,ppo,85,17.0,force,front_fy,0.0007834508433006704 +illusion_0.75L,ppo,85,17.0,force,upper_fx,0.0022488096728920937 +illusion_0.75L,ppo,85,17.0,force,upper_fy,0.003341082949191332 +illusion_0.75L,ppo,85,17.0,force,lower_fx,-0.0008080797852016985 +illusion_0.75L,ppo,85,17.0,force,lower_fy,-0.005050635896623135 +illusion_0.75L,ppo,86,17.2,force,front_fx,0.0023017586208879948 +illusion_0.75L,ppo,86,17.2,force,front_fy,0.000676938274409622 +illusion_0.75L,ppo,86,17.2,force,upper_fx,0.002131612738594413 +illusion_0.75L,ppo,86,17.2,force,upper_fy,0.0033816483337432146 +illusion_0.75L,ppo,86,17.2,force,lower_fx,-0.0006837305263616145 +illusion_0.75L,ppo,86,17.2,force,lower_fy,-0.005123663693666458 +illusion_0.75L,ppo,87,17.4,force,front_fx,0.0022638991940766573 +illusion_0.75L,ppo,87,17.4,force,front_fy,0.0006160482298582792 +illusion_0.75L,ppo,87,17.4,force,upper_fx,0.0020169145427644253 +illusion_0.75L,ppo,87,17.4,force,upper_fy,0.0034091686829924583 +illusion_0.75L,ppo,87,17.4,force,lower_fx,-0.0005514917429536581 +illusion_0.75L,ppo,87,17.4,force,lower_fy,-0.00516141764819622 +illusion_0.75L,ppo,88,17.6,force,front_fx,0.0022681576665490866 +illusion_0.75L,ppo,88,17.6,force,front_fy,0.0005933513166382909 +illusion_0.75L,ppo,88,17.6,force,upper_fx,0.0018933622632175684 +illusion_0.75L,ppo,88,17.6,force,upper_fy,0.003422712441533804 +illusion_0.75L,ppo,88,17.6,force,lower_fx,-0.00041616972885094583 +illusion_0.75L,ppo,88,17.6,force,lower_fy,-0.005142946261912584 +illusion_0.75L,ppo,89,17.8,force,front_fx,0.0022922116331756115 +illusion_0.75L,ppo,89,17.8,force,front_fy,0.0005897662485949695 +illusion_0.75L,ppo,89,17.8,force,upper_fx,0.00178857846185565 +illusion_0.75L,ppo,89,17.8,force,upper_fy,0.0034289308823645115 +illusion_0.75L,ppo,89,17.8,force,lower_fx,-0.0002911591436713934 +illusion_0.75L,ppo,89,17.8,force,lower_fy,-0.0050737191922962666 +illusion_0.75L,ppo,90,18.0,force,front_fx,0.0023348780814558268 +illusion_0.75L,ppo,90,18.0,force,front_fy,0.0005982409929856658 +illusion_0.75L,ppo,90,18.0,force,upper_fx,0.0016915076412260532 +illusion_0.75L,ppo,90,18.0,force,upper_fy,0.003443319583311677 +illusion_0.75L,ppo,90,18.0,force,lower_fx,-0.00019795878324657679 +illusion_0.75L,ppo,90,18.0,force,lower_fy,-0.004964222200214863 +illusion_0.75L,ppo,91,18.2,force,front_fx,0.002389652654528618 +illusion_0.75L,ppo,91,18.2,force,front_fy,0.0006067770882509649 +illusion_0.75L,ppo,91,18.2,force,upper_fx,0.0016233042115345597 +illusion_0.75L,ppo,91,18.2,force,upper_fy,0.003467239672318101 +illusion_0.75L,ppo,91,18.2,force,lower_fx,-0.00013443300849758089 +illusion_0.75L,ppo,91,18.2,force,lower_fy,-0.004828940145671368 +illusion_0.75L,ppo,92,18.4,force,front_fx,0.0024531071539968252 +illusion_0.75L,ppo,92,18.4,force,front_fy,0.0006017749547027051 +illusion_0.75L,ppo,92,18.4,force,upper_fx,0.0015977035509422421 +illusion_0.75L,ppo,92,18.4,force,upper_fy,0.00349666690453887 +illusion_0.75L,ppo,92,18.4,force,lower_fx,-9.04528351384215e-05 +illusion_0.75L,ppo,92,18.4,force,lower_fy,-0.004671650938689709 +illusion_0.75L,ppo,93,18.6,force,front_fx,0.0024987005162984133 +illusion_0.75L,ppo,93,18.6,force,front_fy,0.0006244969554245472 +illusion_0.75L,ppo,93,18.6,force,upper_fx,0.001605041790753603 +illusion_0.75L,ppo,93,18.6,force,upper_fy,0.003541117301210761 +illusion_0.75L,ppo,93,18.6,force,lower_fx,-8.461944526061416e-05 +illusion_0.75L,ppo,93,18.6,force,lower_fy,-0.004513399209827185 +illusion_0.75L,ppo,94,18.8,force,front_fx,0.00254167546518147 +illusion_0.75L,ppo,94,18.8,force,front_fy,0.0005832588067278266 +illusion_0.75L,ppo,94,18.8,force,upper_fx,0.0016423172783106565 +illusion_0.75L,ppo,94,18.8,force,upper_fy,0.003599165938794613 +illusion_0.75L,ppo,94,18.8,force,lower_fx,-0.00010342134919483215 +illusion_0.75L,ppo,94,18.8,force,lower_fy,-0.0043521542102098465 +illusion_0.75L,ppo,95,19.0,force,front_fx,0.00255206529982388 +illusion_0.75L,ppo,95,19.0,force,front_fy,0.0005537238321267068 +illusion_0.75L,ppo,95,19.0,force,upper_fx,0.001713417936116457 +illusion_0.75L,ppo,95,19.0,force,upper_fy,0.0036722617223858833 +illusion_0.75L,ppo,95,19.0,force,lower_fx,-0.00014388699491973966 +illusion_0.75L,ppo,95,19.0,force,lower_fy,-0.0042114402167499065 +illusion_0.75L,ppo,96,19.2,force,front_fx,0.0025465001817792654 +illusion_0.75L,ppo,96,19.2,force,front_fy,0.0005141280125826597 +illusion_0.75L,ppo,96,19.2,force,upper_fx,0.001792373601347208 +illusion_0.75L,ppo,96,19.2,force,upper_fy,0.0037618090864270926 +illusion_0.75L,ppo,96,19.2,force,lower_fx,-0.00021060899598523974 +illusion_0.75L,ppo,96,19.2,force,lower_fy,-0.004087019711732864 +illusion_0.75L,ppo,97,19.4,force,front_fx,0.0025097522884607315 +illusion_0.75L,ppo,97,19.4,force,front_fy,0.0004878629115410149 +illusion_0.75L,ppo,97,19.4,force,upper_fx,0.001889588194899261 +illusion_0.75L,ppo,97,19.4,force,upper_fy,0.0038734120316803455 +illusion_0.75L,ppo,97,19.4,force,lower_fx,-0.0002835667401086539 +illusion_0.75L,ppo,97,19.4,force,lower_fy,-0.003984648268669844 +illusion_0.75L,ppo,98,19.6,force,front_fx,0.0024505765177309513 +illusion_0.75L,ppo,98,19.6,force,front_fy,0.0004683045553974807 +illusion_0.75L,ppo,98,19.6,force,upper_fx,0.0019854726269841194 +illusion_0.75L,ppo,98,19.6,force,upper_fy,0.004010319709777832 +illusion_0.75L,ppo,98,19.6,force,lower_fx,-0.00037960338522680104 +illusion_0.75L,ppo,98,19.6,force,lower_fy,-0.0038987533189356327 +illusion_0.75L,ppo,99,19.8,force,front_fx,0.002386414213106036 +illusion_0.75L,ppo,99,19.8,force,front_fy,0.000483822455862537 +illusion_0.75L,ppo,99,19.8,force,upper_fx,0.0020791511051356792 +illusion_0.75L,ppo,99,19.8,force,upper_fy,0.004149445332586765 +illusion_0.75L,ppo,99,19.8,force,lower_fx,-0.0004891454591415823 +illusion_0.75L,ppo,99,19.8,force,lower_fy,-0.003838244127109647 +illusion_0.75L,ppo,100,20.0,force,front_fx,0.002348859328776598 +illusion_0.75L,ppo,100,20.0,force,front_fy,0.0005201746243983507 +illusion_0.75L,ppo,100,20.0,force,upper_fx,0.002152038970962167 +illusion_0.75L,ppo,100,20.0,force,upper_fy,0.0042481375858187675 +illusion_0.75L,ppo,100,20.0,force,lower_fx,-0.00059540692018345 +illusion_0.75L,ppo,100,20.0,force,lower_fy,-0.0038062301464378834 +illusion_0.75L,ppo,101,20.2,force,front_fx,0.0023035178892314434 +illusion_0.75L,ppo,101,20.2,force,front_fy,0.0006067551439628005 +illusion_0.75L,ppo,101,20.2,force,upper_fx,0.002217707457020879 +illusion_0.75L,ppo,101,20.2,force,upper_fy,0.004302419256418943 +illusion_0.75L,ppo,101,20.2,force,lower_fx,-0.000712886918336153 +illusion_0.75L,ppo,101,20.2,force,lower_fy,-0.003791514551267028 +illusion_0.75L,ppo,102,20.4,force,front_fx,0.0022868954110890627 +illusion_0.75L,ppo,102,20.4,force,front_fy,0.000738251197617501 +illusion_0.75L,ppo,102,20.4,force,upper_fx,0.002290987176820636 +illusion_0.75L,ppo,102,20.4,force,upper_fy,0.004294770769774914 +illusion_0.75L,ppo,102,20.4,force,lower_fx,-0.0008215243578888476 +illusion_0.75L,ppo,102,20.4,force,lower_fy,-0.003781501902267337 +illusion_0.75L,ppo,103,20.6,force,front_fx,0.0023138902615755796 +illusion_0.75L,ppo,103,20.6,force,front_fy,0.0008954777731560171 +illusion_0.75L,ppo,103,20.6,force,upper_fx,0.002375237178057432 +illusion_0.75L,ppo,103,20.6,force,upper_fy,0.004213775508105755 +illusion_0.75L,ppo,103,20.6,force,lower_fx,-0.0009231279836967587 +illusion_0.75L,ppo,103,20.6,force,lower_fy,-0.00378020410425961 +illusion_0.75L,ppo,104,20.8,force,front_fx,0.0023687337525188923 +illusion_0.75L,ppo,104,20.8,force,front_fy,0.001077350927516818 +illusion_0.75L,ppo,104,20.8,force,upper_fx,0.002477075671777129 +illusion_0.75L,ppo,104,20.8,force,upper_fy,0.004071273375302553 +illusion_0.75L,ppo,104,20.8,force,lower_fx,-0.0010244841687381268 +illusion_0.75L,ppo,104,20.8,force,lower_fy,-0.003800847800448537 +illusion_0.75L,ppo,105,21.0,force,front_fx,0.002444921061396599 +illusion_0.75L,ppo,105,21.0,force,front_fy,0.0011956552043557167 +illusion_0.75L,ppo,105,21.0,force,upper_fx,0.0026003459934145212 +illusion_0.75L,ppo,105,21.0,force,upper_fy,0.0038741366006433964 +illusion_0.75L,ppo,105,21.0,force,lower_fx,-0.0011084874859079719 +illusion_0.75L,ppo,105,21.0,force,lower_fy,-0.0038579129613935947 +illusion_0.75L,ppo,106,21.2,force,front_fx,0.0025212501641362906 +illusion_0.75L,ppo,106,21.2,force,front_fy,0.0013402741169556975 +illusion_0.75L,ppo,106,21.2,force,upper_fx,0.002732696011662483 +illusion_0.75L,ppo,106,21.2,force,upper_fy,0.003648216836154461 +illusion_0.75L,ppo,106,21.2,force,lower_fx,-0.0011815665056928992 +illusion_0.75L,ppo,106,21.2,force,lower_fy,-0.003956246189773083 +illusion_0.75L,ppo,107,21.4,force,front_fx,0.0025756426621228456 +illusion_0.75L,ppo,107,21.4,force,front_fy,0.001355505082756281 +illusion_0.75L,ppo,107,21.4,force,upper_fx,0.0028300636913627386 +illusion_0.75L,ppo,107,21.4,force,upper_fy,0.0034195941407233477 +illusion_0.75L,ppo,107,21.4,force,lower_fx,-0.0012175668962299824 +illusion_0.75L,ppo,107,21.4,force,lower_fy,-0.004104320891201496 +illusion_0.75L,ppo,108,21.6,force,front_fx,0.002613481367006898 +illusion_0.75L,ppo,108,21.6,force,front_fy,0.0013510737335309386 +illusion_0.75L,ppo,108,21.6,force,upper_fx,0.002906795823946595 +illusion_0.75L,ppo,108,21.6,force,upper_fy,0.0032138237729668617 +illusion_0.75L,ppo,108,21.6,force,lower_fx,-0.0012039982248097658 +illusion_0.75L,ppo,108,21.6,force,lower_fy,-0.004297117702662945 +illusion_0.75L,ppo,109,21.8,force,front_fx,0.002602600958198309 +illusion_0.75L,ppo,109,21.8,force,front_fy,0.0013643749989569187 +illusion_0.75L,ppo,109,21.8,force,upper_fx,0.002935432130470872 +illusion_0.75L,ppo,109,21.8,force,upper_fy,0.0030691982246935368 +illusion_0.75L,ppo,109,21.8,force,lower_fx,-0.001128296134993434 +illusion_0.75L,ppo,109,21.8,force,lower_fy,-0.0044997637160122395 +illusion_0.75L,ppo,110,22.0,force,front_fx,0.0025801570154726505 +illusion_0.75L,ppo,110,22.0,force,front_fy,0.001260631252080202 +illusion_0.75L,ppo,110,22.0,force,upper_fx,0.002908612135797739 +illusion_0.75L,ppo,110,22.0,force,upper_fy,0.003014173125848174 +illusion_0.75L,ppo,110,22.0,force,lower_fx,-0.001008621184155345 +illusion_0.75L,ppo,110,22.0,force,lower_fy,-0.004711163230240345 +illusion_0.75L,ppo,111,22.2,force,front_fx,0.002527218544855714 +illusion_0.75L,ppo,111,22.2,force,front_fy,0.0011723760981112719 +illusion_0.75L,ppo,111,22.2,force,upper_fx,0.0028368369676172733 +illusion_0.75L,ppo,111,22.2,force,upper_fy,0.0030506423208862543 +illusion_0.75L,ppo,111,22.2,force,lower_fx,-0.0008741135825403035 +illusion_0.75L,ppo,111,22.2,force,lower_fy,-0.004906877409666777 +illusion_0.75L,ppo,112,22.4,force,front_fx,0.0024574948474764824 +illusion_0.75L,ppo,112,22.4,force,front_fy,0.0010435032891109586 +illusion_0.75L,ppo,112,22.4,force,upper_fx,0.002716973191127181 +illusion_0.75L,ppo,112,22.4,force,upper_fy,0.0031700062099844217 +illusion_0.75L,ppo,112,22.4,force,lower_fx,-0.0007428036769852042 +illusion_0.75L,ppo,112,22.4,force,lower_fy,-0.005068246275186539 +illusion_0.75L,ppo,113,22.6,force,front_fx,0.0024052499793469906 +illusion_0.75L,ppo,113,22.6,force,front_fy,0.0009061617311090231 +illusion_0.75L,ppo,113,22.6,force,upper_fx,0.0025715709198266268 +illusion_0.75L,ppo,113,22.6,force,upper_fy,0.003324110759422183 +illusion_0.75L,ppo,113,22.6,force,lower_fx,-0.0006200115894898772 +illusion_0.75L,ppo,113,22.6,force,lower_fy,-0.005204095039516687 +illusion_0.75L,ppo,114,22.8,force,front_fx,0.002353842370212078 +illusion_0.75L,ppo,114,22.8,force,front_fy,0.0007807497750036418 +illusion_0.75L,ppo,114,22.8,force,upper_fx,0.002418908290565014 +illusion_0.75L,ppo,114,22.8,force,upper_fy,0.0034714327193796635 +illusion_0.75L,ppo,114,22.8,force,lower_fx,-0.0005054549546912313 +illusion_0.75L,ppo,114,22.8,force,lower_fy,-0.005306537263095379 +illusion_0.75L,ppo,115,23.0,force,front_fx,0.0022980142384767532 +illusion_0.75L,ppo,115,23.0,force,front_fy,0.000676184834446758 +illusion_0.75L,ppo,115,23.0,force,upper_fx,0.0022500907070934772 +illusion_0.75L,ppo,115,23.0,force,upper_fy,0.0035865171812474728 +illusion_0.75L,ppo,115,23.0,force,lower_fx,-0.0004123125982005149 +illusion_0.75L,ppo,115,23.0,force,lower_fy,-0.005372139159590006 +illusion_0.75L,ppo,116,23.2,force,front_fx,0.002280120039358735 +illusion_0.75L,ppo,116,23.2,force,front_fy,0.0006046683411113918 +illusion_0.75L,ppo,116,23.2,force,upper_fx,0.002087831264361739 +illusion_0.75L,ppo,116,23.2,force,upper_fy,0.0036522967275232077 +illusion_0.75L,ppo,116,23.2,force,lower_fx,-0.0003180120256729424 +illusion_0.75L,ppo,116,23.2,force,lower_fy,-0.005395906511694193 +illusion_0.75L,ppo,117,23.4,force,front_fx,0.0022786983754485846 +illusion_0.75L,ppo,117,23.4,force,front_fy,0.0005705821677111089 +illusion_0.75L,ppo,117,23.4,force,upper_fx,0.0019334087846800685 +illusion_0.75L,ppo,117,23.4,force,upper_fy,0.003660920774564147 +illusion_0.75L,ppo,117,23.4,force,lower_fx,-0.0002305518719367683 +illusion_0.75L,ppo,117,23.4,force,lower_fy,-0.005377828609198332 +illusion_0.75L,ppo,118,23.6,force,front_fx,0.0022946642711758614 +illusion_0.75L,ppo,118,23.6,force,front_fy,0.0005594724207185209 +illusion_0.75L,ppo,118,23.6,force,upper_fx,0.0018011193023994565 +illusion_0.75L,ppo,118,23.6,force,upper_fy,0.0036328977439552546 +illusion_0.75L,ppo,118,23.6,force,lower_fx,-0.00015027278277557343 +illusion_0.75L,ppo,118,23.6,force,lower_fy,-0.005321562755852938 +illusion_0.75L,ppo,119,23.8,force,front_fx,0.0023437768686562777 +illusion_0.75L,ppo,119,23.8,force,front_fy,0.0005645012715831399 +illusion_0.75L,ppo,119,23.8,force,upper_fx,0.001692087040282786 +illusion_0.75L,ppo,119,23.8,force,upper_fy,0.003587768878787756 +illusion_0.75L,ppo,119,23.8,force,lower_fx,-7.840881153242663e-05 +illusion_0.75L,ppo,119,23.8,force,lower_fy,-0.005223504733294249 +illusion_0.75L,ppo,120,24.0,force,front_fx,0.0024122705217450857 +illusion_0.75L,ppo,120,24.0,force,front_fy,0.0005846415879204869 +illusion_0.75L,ppo,120,24.0,force,upper_fx,0.0016171782044693828 +illusion_0.75L,ppo,120,24.0,force,upper_fy,0.0035515225026756525 +illusion_0.75L,ppo,120,24.0,force,lower_fx,-2.0492505427682772e-05 +illusion_0.75L,ppo,120,24.0,force,lower_fy,-0.005092950072139502 +illusion_0.75L,ppo,121,24.2,force,front_fx,0.002489726059138775 +illusion_0.75L,ppo,121,24.2,force,front_fy,0.0005969624617137015 +illusion_0.75L,ppo,121,24.2,force,upper_fx,0.001571738626807928 +illusion_0.75L,ppo,121,24.2,force,upper_fy,0.0035357200540602207 +illusion_0.75L,ppo,121,24.2,force,lower_fx,1.8807966625900008e-05 +illusion_0.75L,ppo,121,24.2,force,lower_fy,-0.0049295430071651936 +illusion_0.75L,ppo,122,24.4,force,front_fx,0.0025652111507952213 +illusion_0.75L,ppo,122,24.4,force,front_fy,0.0005884632118977606 +illusion_0.75L,ppo,122,24.4,force,upper_fx,0.001563863712362945 +illusion_0.75L,ppo,122,24.4,force,upper_fy,0.003544226521626115 +illusion_0.75L,ppo,122,24.4,force,lower_fx,2.5208331862813793e-05 +illusion_0.75L,ppo,122,24.4,force,lower_fy,-0.004753560293465853 +illusion_0.75L,ppo,123,24.6,force,front_fx,0.00262133264914155 +illusion_0.75L,ppo,123,24.6,force,front_fy,0.000568349496461451 +illusion_0.75L,ppo,123,24.6,force,upper_fx,0.0016077395994216204 +illusion_0.75L,ppo,123,24.6,force,upper_fy,0.003580318298190832 +illusion_0.75L,ppo,123,24.6,force,lower_fx,8.557864020986017e-06 +illusion_0.75L,ppo,123,24.6,force,lower_fy,-0.004568725824356079 +illusion_0.75L,ppo,124,24.8,force,front_fx,0.0026640782598406076 +illusion_0.75L,ppo,124,24.8,force,front_fy,0.0005382035742513835 +illusion_0.75L,ppo,124,24.8,force,upper_fx,0.001689140684902668 +illusion_0.75L,ppo,124,24.8,force,upper_fy,0.0036361664533615112 +illusion_0.75L,ppo,124,24.8,force,lower_fx,-3.245286279707216e-05 +illusion_0.75L,ppo,124,24.8,force,lower_fy,-0.004384926985949278 +illusion_0.75L,ppo,125,25.0,force,front_fx,0.0026417309418320656 +illusion_0.75L,ppo,125,25.0,force,front_fy,0.0004978511715307832 +illusion_0.75L,ppo,125,25.0,force,upper_fx,0.0018036667024716735 +illusion_0.75L,ppo,125,25.0,force,upper_fy,0.0037168499547988176 +illusion_0.75L,ppo,125,25.0,force,lower_fx,-0.00010500085772946477 +illusion_0.75L,ppo,125,25.0,force,lower_fy,-0.004216397181153297 +illusion_0.75L,ppo,126,25.2,force,front_fx,0.0026462965179234743 +illusion_0.75L,ppo,126,25.2,force,front_fy,0.00046138421748764813 +illusion_0.75L,ppo,126,25.2,force,upper_fx,0.0019351606024429202 +illusion_0.75L,ppo,126,25.2,force,upper_fy,0.00382608943618834 +illusion_0.75L,ppo,126,25.2,force,lower_fx,-0.0002074562362395227 +illusion_0.75L,ppo,126,25.2,force,lower_fy,-0.004081269726157188 +illusion_0.75L,ppo,127,25.4,force,front_fx,0.002600122941657901 +illusion_0.75L,ppo,127,25.4,force,front_fy,0.00043934903806075454 +illusion_0.75L,ppo,127,25.4,force,upper_fx,0.0020691948011517525 +illusion_0.75L,ppo,127,25.4,force,upper_fy,0.003950410522520542 +illusion_0.75L,ppo,127,25.4,force,lower_fx,-0.0003279286902397871 +illusion_0.75L,ppo,127,25.4,force,lower_fy,-0.0039927763864398 +illusion_0.75L,ppo,128,25.6,force,front_fx,0.0025414112024009228 +illusion_0.75L,ppo,128,25.6,force,front_fy,0.00044650788186118007 +illusion_0.75L,ppo,128,25.6,force,upper_fx,0.0021910194773226976 +illusion_0.75L,ppo,128,25.6,force,upper_fy,0.004084972199052572 +illusion_0.75L,ppo,128,25.6,force,lower_fx,-0.0004758087161462754 +illusion_0.75L,ppo,128,25.6,force,lower_fy,-0.0039327447302639484 +illusion_0.75L,ppo,129,25.8,force,front_fx,0.0024852072820067406 +illusion_0.75L,ppo,129,25.8,force,front_fy,0.0005014917114749551 +illusion_0.75L,ppo,129,25.8,force,upper_fx,0.0022880712058395147 +illusion_0.75L,ppo,129,25.8,force,upper_fy,0.004200177267193794 +illusion_0.75L,ppo,129,25.8,force,lower_fx,-0.0006300785462372005 +illusion_0.75L,ppo,129,25.8,force,lower_fy,-0.0039026064332574606 +illusion_0.75L,ppo,130,26.0,force,front_fx,0.0024489916395395994 +illusion_0.75L,ppo,130,26.0,force,front_fy,0.0006129653193056583 +illusion_0.75L,ppo,130,26.0,force,upper_fx,0.002368656452745199 +illusion_0.75L,ppo,130,26.0,force,upper_fy,0.004266347736120224 +illusion_0.75L,ppo,130,26.0,force,lower_fx,-0.000784275762271136 +illusion_0.75L,ppo,130,26.0,force,lower_fy,-0.00388326495885849 +illusion_0.75L,ppo,131,26.2,force,front_fx,0.002440498908981681 +illusion_0.75L,ppo,131,26.2,force,front_fy,0.000762845971621573 +illusion_0.75L,ppo,131,26.2,force,upper_fx,0.0024447606410831213 +illusion_0.75L,ppo,131,26.2,force,upper_fy,0.004281585104763508 +illusion_0.75L,ppo,131,26.2,force,lower_fx,-0.0009328139713034034 +illusion_0.75L,ppo,131,26.2,force,lower_fy,-0.0038734693080186844 +illusion_0.75L,ppo,132,26.4,force,front_fx,0.002474115462973714 +illusion_0.75L,ppo,132,26.4,force,front_fy,0.0009369964827783406 +illusion_0.75L,ppo,132,26.4,force,upper_fx,0.0025178841315209866 +illusion_0.75L,ppo,132,26.4,force,upper_fy,0.0042378599755465984 +illusion_0.75L,ppo,132,26.4,force,lower_fx,-0.0010800488526001573 +illusion_0.75L,ppo,132,26.4,force,lower_fy,-0.0038692220114171505 +illusion_0.75L,ppo,133,26.6,force,front_fx,0.00250188703648746 +illusion_0.75L,ppo,133,26.6,force,front_fy,0.001109022763557732 +illusion_0.75L,ppo,133,26.6,force,upper_fx,0.00260611018165946 +illusion_0.75L,ppo,133,26.6,force,upper_fy,0.004129656590521336 +illusion_0.75L,ppo,133,26.6,force,lower_fx,-0.0012185610830783844 +illusion_0.75L,ppo,133,26.6,force,lower_fy,-0.003878275863826275 +illusion_0.75L,ppo,134,26.8,force,front_fx,0.0026112294290214777 +illusion_0.75L,ppo,134,26.8,force,front_fy,0.0012559363385662436 +illusion_0.75L,ppo,134,26.8,force,upper_fx,0.0027098162099719048 +illusion_0.75L,ppo,134,26.8,force,upper_fy,0.003969964105635881 +illusion_0.75L,ppo,134,26.8,force,lower_fx,-0.0013453618157655 +illusion_0.75L,ppo,134,26.8,force,lower_fy,-0.003912202548235655 +illusion_0.75L,ppo,135,27.0,force,front_fx,0.002684004371985793 +illusion_0.75L,ppo,135,27.0,force,front_fy,0.001358947018161416 +illusion_0.75L,ppo,135,27.0,force,upper_fx,0.0028217327781021595 +illusion_0.75L,ppo,135,27.0,force,upper_fy,0.0037663504481315613 +illusion_0.75L,ppo,135,27.0,force,lower_fx,-0.00143873889464885 +illusion_0.75L,ppo,135,27.0,force,lower_fy,-0.003986983094364405 +illusion_0.75L,ppo,136,27.2,force,front_fx,0.002735714428126812 +illusion_0.75L,ppo,136,27.2,force,front_fy,0.0014208084903657436 +illusion_0.75L,ppo,136,27.2,force,upper_fx,0.0029211738146841526 +illusion_0.75L,ppo,136,27.2,force,upper_fy,0.003551722504198551 +illusion_0.75L,ppo,136,27.2,force,lower_fx,-0.0014864910626783967 +illusion_0.75L,ppo,136,27.2,force,lower_fy,-0.004104382824152708 +illusion_0.75L,ppo,137,27.4,force,front_fx,0.002757894340902567 +illusion_0.75L,ppo,137,27.4,force,front_fy,0.0014273907290771604 +illusion_0.75L,ppo,137,27.4,force,upper_fx,0.0029954761266708374 +illusion_0.75L,ppo,137,27.4,force,upper_fy,0.003358580870553851 +illusion_0.75L,ppo,137,27.4,force,lower_fx,-0.0014605749165639281 +illusion_0.75L,ppo,137,27.4,force,lower_fy,-0.004269594792276621 +illusion_0.75L,ppo,138,27.6,force,front_fx,0.0027334990445524454 +illusion_0.75L,ppo,138,27.6,force,front_fy,0.0014022797113284469 +illusion_0.75L,ppo,138,27.6,force,upper_fx,0.003040008945390582 +illusion_0.75L,ppo,138,27.6,force,upper_fy,0.003219045465812087 +illusion_0.75L,ppo,138,27.6,force,lower_fx,-0.001371963880956173 +illusion_0.75L,ppo,138,27.6,force,lower_fy,-0.004455973394215107 +illusion_0.75L,ppo,139,27.8,force,front_fx,0.0026746306102722883 +illusion_0.75L,ppo,139,27.8,force,front_fy,0.0013394660782068968 +illusion_0.75L,ppo,139,27.8,force,upper_fx,0.003033825196325779 +illusion_0.75L,ppo,139,27.8,force,upper_fy,0.0031621172092854977 +illusion_0.75L,ppo,139,27.8,force,lower_fx,-0.00123748485930264 +illusion_0.75L,ppo,139,27.8,force,lower_fy,-0.004656591918319464 +illusion_0.75L,ppo,140,28.0,force,front_fx,0.0025982263032346964 +illusion_0.75L,ppo,140,28.0,force,front_fy,0.0012312723556533456 +illusion_0.75L,ppo,140,28.0,force,upper_fx,0.002972714602947235 +illusion_0.75L,ppo,140,28.0,force,upper_fy,0.0031831637024879456 +illusion_0.75L,ppo,140,28.0,force,lower_fx,-0.0010736139956861734 +illusion_0.75L,ppo,140,28.0,force,lower_fy,-0.004859760403633118 +illusion_0.75L,ppo,141,28.2,force,front_fx,0.002504858421161771 +illusion_0.75L,ppo,141,28.2,force,front_fy,0.0010958559578284621 +illusion_0.75L,ppo,141,28.2,force,upper_fx,0.0028652611654251814 +illusion_0.75L,ppo,141,28.2,force,upper_fy,0.0032798778265714645 +illusion_0.75L,ppo,141,28.2,force,lower_fx,-0.0009022324811667204 +illusion_0.75L,ppo,141,28.2,force,lower_fy,-0.005050371401011944 +illusion_0.75L,ppo,142,28.4,force,front_fx,0.0023900032974779606 +illusion_0.75L,ppo,142,28.4,force,front_fy,0.0009528303053230047 +illusion_0.75L,ppo,142,28.4,force,upper_fx,0.002744167111814022 +illusion_0.75L,ppo,142,28.4,force,upper_fy,0.0034212053287774324 +illusion_0.75L,ppo,142,28.4,force,lower_fx,-0.000721858290489763 +illusion_0.75L,ppo,142,28.4,force,lower_fy,-0.005214983597397804 +illusion_0.75L,ppo,143,28.6,force,front_fx,0.002323327586054802 +illusion_0.75L,ppo,143,28.6,force,front_fy,0.0008166442275978625 +illusion_0.75L,ppo,143,28.6,force,upper_fx,0.0025690614711493254 +illusion_0.75L,ppo,143,28.6,force,upper_fy,0.0035648636985570192 +illusion_0.75L,ppo,143,28.6,force,lower_fx,-0.0005616190028376877 +illusion_0.75L,ppo,143,28.6,force,lower_fy,-0.005352130625396967 +illusion_0.75L,ppo,144,28.8,force,front_fx,0.002250827383249998 +illusion_0.75L,ppo,144,28.8,force,front_fy,0.000698950607329607 +illusion_0.75L,ppo,144,28.8,force,upper_fx,0.0023840765934437513 +illusion_0.75L,ppo,144,28.8,force,upper_fy,0.0036685452796518803 +illusion_0.75L,ppo,144,28.8,force,lower_fx,-0.00041409104596823454 +illusion_0.75L,ppo,144,28.8,force,lower_fy,-0.0054529584012925625 +illusion_0.75L,ppo,145,29.0,force,front_fx,0.0022120282519608736 +illusion_0.75L,ppo,145,29.0,force,front_fy,0.0006154263392090797 +illusion_0.75L,ppo,145,29.0,force,upper_fx,0.0021934122778475285 +illusion_0.75L,ppo,145,29.0,force,upper_fy,0.00372355617582798 +illusion_0.75L,ppo,145,29.0,force,lower_fx,-0.0002723215438891202 +illusion_0.75L,ppo,145,29.0,force,lower_fy,-0.005503552500158548 +illusion_0.75L,ppo,146,29.2,force,front_fx,0.002197406254708767 +illusion_0.75L,ppo,146,29.2,force,front_fy,0.0005732325371354818 +illusion_0.75L,ppo,146,29.2,force,upper_fx,0.0020164772868156433 +illusion_0.75L,ppo,146,29.2,force,upper_fy,0.0037276449147611856 +illusion_0.75L,ppo,146,29.2,force,lower_fx,-0.00014007888967171311 +illusion_0.75L,ppo,146,29.2,force,lower_fy,-0.0055049932561814785 +illusion_0.75L,ppo,147,29.4,force,front_fx,0.002229547593742609 +illusion_0.75L,ppo,147,29.4,force,front_fy,0.0005600929143838584 +illusion_0.75L,ppo,147,29.4,force,upper_fx,0.0018564562778919935 +illusion_0.75L,ppo,147,29.4,force,upper_fy,0.003693463746458292 +illusion_0.75L,ppo,147,29.4,force,lower_fx,-1.677161162660923e-05 +illusion_0.75L,ppo,147,29.4,force,lower_fy,-0.005458813160657883 +illusion_0.75L,ppo,148,29.6,force,front_fx,0.0022528611589223146 +illusion_0.75L,ppo,148,29.6,force,front_fy,0.0005642366595566273 +illusion_0.75L,ppo,148,29.6,force,upper_fx,0.0017154744127765298 +illusion_0.75L,ppo,148,29.6,force,upper_fy,0.0036514431703835726 +illusion_0.75L,ppo,148,29.6,force,lower_fx,7.471340359188616e-05 +illusion_0.75L,ppo,148,29.6,force,lower_fy,-0.005371081177145243 +illusion_0.75L,ppo,149,29.8,force,front_fx,0.002354157157242298 +illusion_0.75L,ppo,149,29.8,force,front_fy,0.0005738832987844944 +illusion_0.75L,ppo,149,29.8,force,upper_fx,0.0016102619701996446 +illusion_0.75L,ppo,149,29.8,force,upper_fy,0.0036194997373968363 +illusion_0.75L,ppo,149,29.8,force,lower_fx,0.00014695576101075858 +illusion_0.75L,ppo,149,29.8,force,lower_fy,-0.005253931507468224 +illusion_0.75L,ppo,150,30.0,force,front_fx,0.002433274406939745 +illusion_0.75L,ppo,150,30.0,force,front_fy,0.0005742614157497883 +illusion_0.75L,ppo,150,30.0,force,upper_fx,0.001545643899589777 +illusion_0.75L,ppo,150,30.0,force,upper_fy,0.0036074479576200247 +illusion_0.75L,ppo,150,30.0,force,lower_fx,0.00019004056230187416 +illusion_0.75L,ppo,150,30.0,force,lower_fy,-0.005115640349686146 +illusion_0.75L,ppo,151,30.2,force,front_fx,0.0025101029314100742 +illusion_0.75L,ppo,151,30.2,force,front_fy,0.0005596564733423293 +illusion_0.75L,ppo,151,30.2,force,upper_fx,0.0015244443202391267 +illusion_0.75L,ppo,151,30.2,force,upper_fy,0.003626257413998246 +illusion_0.75L,ppo,151,30.2,force,lower_fx,0.00019364742911420763 +illusion_0.75L,ppo,151,30.2,force,lower_fy,-0.004948941525071859 +illusion_0.75L,ppo,152,30.4,force,front_fx,0.0025861216709017754 +illusion_0.75L,ppo,152,30.4,force,front_fy,0.0005259303725324571 +illusion_0.75L,ppo,152,30.4,force,upper_fx,0.0015538069419562817 +illusion_0.75L,ppo,152,30.4,force,upper_fy,0.003664437448605895 +illusion_0.75L,ppo,152,30.4,force,lower_fx,0.00017256179125979543 +illusion_0.75L,ppo,152,30.4,force,lower_fy,-0.004766511730849743 +illusion_0.75L,ppo,153,30.6,force,front_fx,0.0026212993543595076 +illusion_0.75L,ppo,153,30.6,force,front_fy,0.0004835310683120042 +illusion_0.75L,ppo,153,30.6,force,upper_fx,0.001635439693927765 +illusion_0.75L,ppo,153,30.6,force,upper_fy,0.003721035085618496 +illusion_0.75L,ppo,153,30.6,force,lower_fx,0.00012401194544509053 +illusion_0.75L,ppo,153,30.6,force,lower_fy,-0.004581935238093138 +illusion_0.75L,ppo,154,30.8,force,front_fx,0.0026366752572357655 +illusion_0.75L,ppo,154,30.8,force,front_fy,0.00043952587293460965 +illusion_0.75L,ppo,154,30.8,force,upper_fx,0.0017564757727086544 +illusion_0.75L,ppo,154,30.8,force,upper_fy,0.00380241428501904 +illusion_0.75L,ppo,154,30.8,force,lower_fx,5.530622729565948e-05 +illusion_0.75L,ppo,154,30.8,force,lower_fy,-0.004413427785038948 +illusion_0.75L,ppo,155,31.0,force,front_fx,0.0026112315244972706 +illusion_0.75L,ppo,155,31.0,force,front_fy,0.00039477937389165163 +illusion_0.75L,ppo,155,31.0,force,upper_fx,0.0018968615913763642 +illusion_0.75L,ppo,155,31.0,force,upper_fy,0.003907655365765095 +illusion_0.75L,ppo,155,31.0,force,lower_fx,-5.241723556537181e-05 +illusion_0.75L,ppo,155,31.0,force,lower_fy,-0.0042669023387134075 +illusion_0.75L,ppo,156,31.2,force,front_fx,0.002576504135504365 +illusion_0.75L,ppo,156,31.2,force,front_fy,0.0003769325849134475 +illusion_0.75L,ppo,156,31.2,force,upper_fx,0.002044881694018841 +illusion_0.75L,ppo,156,31.2,force,upper_fy,0.004032902419567108 +illusion_0.75L,ppo,156,31.2,force,lower_fx,-0.00019113594316877425 +illusion_0.75L,ppo,156,31.2,force,lower_fy,-0.0041536265052855015 +illusion_0.75L,ppo,157,31.4,force,front_fx,0.002527351723983884 +illusion_0.75L,ppo,157,31.4,force,front_fy,0.0003998158499598503 +illusion_0.75L,ppo,157,31.4,force,upper_fx,0.0021718640346080065 +illusion_0.75L,ppo,157,31.4,force,upper_fy,0.0041493303142488 +illusion_0.75L,ppo,157,31.4,force,lower_fx,-0.0003508466179482639 +illusion_0.75L,ppo,157,31.4,force,lower_fy,-0.004072710406035185 +illusion_0.75L,ppo,158,31.6,force,front_fx,0.002482671057805419 +illusion_0.75L,ppo,158,31.6,force,front_fy,0.0004694949893746525 +illusion_0.75L,ppo,158,31.6,force,upper_fx,0.0022922868374735117 +illusion_0.75L,ppo,158,31.6,force,upper_fy,0.004242125432938337 +illusion_0.75L,ppo,158,31.6,force,lower_fx,-0.0005155465914867818 +illusion_0.75L,ppo,158,31.6,force,lower_fy,-0.004022054374217987 +illusion_0.75L,ppo,159,31.8,force,front_fx,0.002460868563503027 +illusion_0.75L,ppo,159,31.8,force,front_fy,0.0005918449605815113 +illusion_0.75L,ppo,159,31.8,force,upper_fx,0.002393102739006281 +illusion_0.75L,ppo,159,31.8,force,upper_fy,0.004301636945456266 +illusion_0.75L,ppo,159,31.8,force,lower_fx,-0.0006850559148006141 +illusion_0.75L,ppo,159,31.8,force,lower_fy,-0.003989892080426216 +illusion_0.75L,ppo,160,32.0,force,front_fx,0.002471538493409753 +illusion_0.75L,ppo,160,32.0,force,front_fy,0.0007608682499267161 +illusion_0.75L,ppo,160,32.0,force,upper_fx,0.002480651717633009 +illusion_0.75L,ppo,160,32.0,force,upper_fy,0.004322995897382498 +illusion_0.75L,ppo,160,32.0,force,lower_fx,-0.000861313717905432 +illusion_0.75L,ppo,160,32.0,force,lower_fy,-0.003962715156376362 +illusion_0.75L,ppo,161,32.2,force,front_fx,0.0025170990265905857 +illusion_0.75L,ppo,161,32.2,force,front_fy,0.000943630700930953 +illusion_0.75L,ppo,161,32.2,force,upper_fx,0.002568564610555768 +illusion_0.75L,ppo,161,32.2,force,upper_fy,0.00429526437073946 +illusion_0.75L,ppo,161,32.2,force,lower_fx,-0.0010382462060078979 +illusion_0.75L,ppo,161,32.2,force,lower_fy,-0.003946422599256039 +illusion_0.75L,ppo,162,32.4,force,front_fx,0.002592253964394331 +illusion_0.75L,ppo,162,32.4,force,front_fy,0.0011144861346110702 +illusion_0.75L,ppo,162,32.4,force,upper_fx,0.0026553801726549864 +illusion_0.75L,ppo,162,32.4,force,upper_fy,0.004207281395792961 +illusion_0.75L,ppo,162,32.4,force,lower_fx,-0.0012190607376396656 +illusion_0.75L,ppo,162,32.4,force,lower_fy,-0.003942230250686407 +illusion_0.75L,ppo,163,32.6,force,front_fx,0.0026959902606904507 +illusion_0.75L,ppo,163,32.6,force,front_fy,0.001258435077033937 +illusion_0.75L,ppo,163,32.6,force,upper_fx,0.0027527662459760904 +illusion_0.75L,ppo,163,32.6,force,upper_fy,0.004063846077769995 +illusion_0.75L,ppo,163,32.6,force,lower_fx,-0.0013764690374955535 +illusion_0.75L,ppo,163,32.6,force,lower_fy,-0.003968420438468456 +illusion_0.75L,ppo,164,32.8,force,front_fx,0.002759559080004692 +illusion_0.75L,ppo,164,32.8,force,front_fy,0.0014082766138017178 +illusion_0.75L,ppo,164,32.8,force,upper_fx,0.002861614804714918 +illusion_0.75L,ppo,164,32.8,force,upper_fy,0.0038823301438242197 +illusion_0.75L,ppo,164,32.8,force,lower_fx,-0.0014956113882362843 +illusion_0.75L,ppo,164,32.8,force,lower_fy,-0.004024434834718704 +illusion_0.75L,ppo,165,33.0,force,front_fx,0.002811329672113061 +illusion_0.75L,ppo,165,33.0,force,front_fy,0.0014309941325336695 +illusion_0.75L,ppo,165,33.0,force,upper_fx,0.0029548502061516047 +illusion_0.75L,ppo,165,33.0,force,upper_fy,0.0036882164422422647 +illusion_0.75L,ppo,165,33.0,force,lower_fx,-0.0015559993917122483 +illusion_0.75L,ppo,165,33.0,force,lower_fy,-0.004124046303331852 +illusion_0.75L,ppo,166,33.2,force,front_fx,0.002828662982210517 +illusion_0.75L,ppo,166,33.2,force,front_fy,0.0014453998301178217 +illusion_0.75L,ppo,166,33.2,force,upper_fx,0.003026340389624238 +illusion_0.75L,ppo,166,33.2,force,upper_fy,0.003504709107801318 +illusion_0.75L,ppo,166,33.2,force,lower_fx,-0.0015574002172797918 +illusion_0.75L,ppo,166,33.2,force,lower_fy,-0.004262101370841265 +illusion_0.75L,ppo,167,33.4,force,front_fx,0.0027987651992589235 +illusion_0.75L,ppo,167,33.4,force,front_fy,0.001430422649718821 +illusion_0.75L,ppo,167,33.4,force,upper_fx,0.003067117417231202 +illusion_0.75L,ppo,167,33.4,force,upper_fy,0.003364427015185356 +illusion_0.75L,ppo,167,33.4,force,lower_fx,-0.0014890155289322138 +illusion_0.75L,ppo,167,33.4,force,lower_fy,-0.0044243307784199715 +illusion_0.75L,ppo,168,33.6,force,front_fx,0.002739119343459606 +illusion_0.75L,ppo,168,33.6,force,front_fy,0.001377161592245102 +illusion_0.75L,ppo,168,33.6,force,upper_fx,0.0030675330199301243 +illusion_0.75L,ppo,168,33.6,force,upper_fy,0.003289915854111314 +illusion_0.75L,ppo,168,33.6,force,lower_fx,-0.0013642460107803345 +illusion_0.75L,ppo,168,33.6,force,lower_fy,-0.004598924424499273 +illusion_0.75L,ppo,169,33.8,force,front_fx,0.0026598444674164057 +illusion_0.75L,ppo,169,33.8,force,front_fy,0.0012806013692170382 +illusion_0.75L,ppo,169,33.8,force,upper_fx,0.003020382719114423 +illusion_0.75L,ppo,169,33.8,force,upper_fy,0.0032939612865448 +illusion_0.75L,ppo,169,33.8,force,lower_fx,-0.0012041637673974037 +illusion_0.75L,ppo,169,33.8,force,lower_fy,-0.004783381707966328 +illusion_0.75L,ppo,170,34.0,force,front_fx,0.0025551924481987953 +illusion_0.75L,ppo,170,34.0,force,front_fy,0.0011522005079314113 +illusion_0.75L,ppo,170,34.0,force,upper_fx,0.0029359704349189997 +illusion_0.75L,ppo,170,34.0,force,upper_fy,0.0033641669433563948 +illusion_0.75L,ppo,170,34.0,force,lower_fx,-0.0010254745138809085 +illusion_0.75L,ppo,170,34.0,force,lower_fy,-0.004961144644767046 +illusion_0.75L,ppo,171,34.2,force,front_fx,0.0024551295209676027 +illusion_0.75L,ppo,171,34.2,force,front_fy,0.001011122833006084 +illusion_0.75L,ppo,171,34.2,force,upper_fx,0.0028135450556874275 +illusion_0.75L,ppo,171,34.2,force,upper_fy,0.0034814560785889626 +illusion_0.75L,ppo,171,34.2,force,lower_fx,-0.0008390310686081648 +illusion_0.75L,ppo,171,34.2,force,lower_fy,-0.005144468042999506 +illusion_0.75L,ppo,172,34.4,force,front_fx,0.002351904520764947 +illusion_0.75L,ppo,172,34.4,force,front_fy,0.0008625111659057438 +illusion_0.75L,ppo,172,34.4,force,upper_fx,0.0026667192578315735 +illusion_0.75L,ppo,172,34.4,force,upper_fy,0.003598595503717661 +illusion_0.75L,ppo,172,34.4,force,lower_fx,-0.0006489287479780614 +illusion_0.75L,ppo,172,34.4,force,lower_fy,-0.005301211029291153 +illusion_0.75L,ppo,173,34.6,force,front_fx,0.00227150390855968 +illusion_0.75L,ppo,173,34.6,force,front_fy,0.0007393789128400385 +illusion_0.75L,ppo,173,34.6,force,upper_fx,0.0024905656464397907 +illusion_0.75L,ppo,173,34.6,force,upper_fy,0.003689669771119952 +illusion_0.75L,ppo,173,34.6,force,lower_fx,-0.0004712087393272668 +illusion_0.75L,ppo,173,34.6,force,lower_fy,-0.005428635515272617 +illusion_0.75L,ppo,174,34.8,force,front_fx,0.0022089602425694466 +illusion_0.75L,ppo,174,34.8,force,front_fy,0.0006522159092128277 +illusion_0.75L,ppo,174,34.8,force,upper_fx,0.002305991481989622 +illusion_0.75L,ppo,174,34.8,force,upper_fy,0.0037314884830266237 +illusion_0.75L,ppo,174,34.8,force,lower_fx,-0.00029994911164976656 +illusion_0.75L,ppo,174,34.8,force,lower_fy,-0.005509916692972183 +illusion_0.75L,ppo,175,35.0,force,front_fx,0.002189244143664837 +illusion_0.75L,ppo,175,35.0,force,front_fy,0.0006040169391781092 +illusion_0.75L,ppo,175,35.0,force,upper_fx,0.0021228052210062742 +illusion_0.75L,ppo,175,35.0,force,upper_fy,0.0037280365359038115 +illusion_0.75L,ppo,175,35.0,force,lower_fx,-0.0001347375218756497 +illusion_0.75L,ppo,175,35.0,force,lower_fy,-0.005541816353797913 +illusion_0.75L,ppo,176,35.2,force,front_fx,0.002206341130658984 +illusion_0.75L,ppo,176,35.2,force,front_fy,0.0005811802111566067 +illusion_0.75L,ppo,176,35.2,force,upper_fx,0.0019455528818070889 +illusion_0.75L,ppo,176,35.2,force,upper_fy,0.0036906558088958263 +illusion_0.75L,ppo,176,35.2,force,lower_fx,7.77288823883282e-06 +illusion_0.75L,ppo,176,35.2,force,lower_fy,-0.005526668857783079 +illusion_0.75L,ppo,177,35.4,force,front_fx,0.002247533993795514 +illusion_0.75L,ppo,177,35.4,force,front_fy,0.0005758062470704317 +illusion_0.75L,ppo,177,35.4,force,upper_fx,0.0017849731957539916 +illusion_0.75L,ppo,177,35.4,force,upper_fy,0.003649478778243065 +illusion_0.75L,ppo,177,35.4,force,lower_fx,0.00011799146159319207 +illusion_0.75L,ppo,177,35.4,force,lower_fy,-0.0054681492038071156 +illusion_0.75L,ppo,178,35.6,force,front_fx,0.002318211831152439 +illusion_0.75L,ppo,178,35.6,force,front_fy,0.0005762982182204723 +illusion_0.75L,ppo,178,35.6,force,upper_fx,0.0016504734521731734 +illusion_0.75L,ppo,178,35.6,force,upper_fy,0.003626634366810322 +illusion_0.75L,ppo,178,35.6,force,lower_fx,0.00019474273722153157 +illusion_0.75L,ppo,178,35.6,force,lower_fy,-0.005367617588490248 +illusion_0.75L,ppo,179,35.8,force,front_fx,0.0023987034801393747 +illusion_0.75L,ppo,179,35.8,force,front_fy,0.000566997507121414 +illusion_0.75L,ppo,179,35.8,force,upper_fx,0.001553513458929956 +illusion_0.75L,ppo,179,35.8,force,upper_fy,0.0036260434426367283 +illusion_0.75L,ppo,179,35.8,force,lower_fx,0.000239434972172603 +illusion_0.75L,ppo,179,35.8,force,lower_fy,-0.005235751159489155 +illusion_0.75L,ppo,180,36.0,force,front_fx,0.0024818165693432093 +illusion_0.75L,ppo,180,36.0,force,front_fy,0.00054548418847844 +illusion_0.75L,ppo,180,36.0,force,upper_fx,0.0015100856544449925 +illusion_0.75L,ppo,180,36.0,force,upper_fy,0.0036451818887144327 +illusion_0.75L,ppo,180,36.0,force,lower_fx,0.00025369893410243094 +illusion_0.75L,ppo,180,36.0,force,lower_fy,-0.00507707055658102 +illusion_0.75L,ppo,181,36.2,force,front_fx,0.002551321405917406 +illusion_0.75L,ppo,181,36.2,force,front_fy,0.0005119926645420492 +illusion_0.75L,ppo,181,36.2,force,upper_fx,0.0015297054778784513 +illusion_0.75L,ppo,181,36.2,force,upper_fy,0.00368144060485065 +illusion_0.75L,ppo,181,36.2,force,lower_fx,0.00024374971690122038 +illusion_0.75L,ppo,181,36.2,force,lower_fy,-0.00490030599758029 +illusion_0.75L,ppo,182,36.4,force,front_fx,0.0026018000207841396 +illusion_0.75L,ppo,182,36.4,force,front_fy,0.00047111097956076264 +illusion_0.75L,ppo,182,36.4,force,upper_fx,0.0016032959101721644 +illusion_0.75L,ppo,182,36.4,force,upper_fy,0.0037387420888990164 +illusion_0.75L,ppo,182,36.4,force,lower_fx,0.00020623175078071654 +illusion_0.75L,ppo,182,36.4,force,lower_fy,-0.004715148359537125 +illusion_0.75L,ppo,183,36.6,force,front_fx,0.00260525313206017 +illusion_0.75L,ppo,183,36.6,force,front_fy,0.00042469907202757895 +illusion_0.75L,ppo,183,36.6,force,upper_fx,0.001719649531878531 +illusion_0.75L,ppo,183,36.6,force,upper_fy,0.003818732453510165 +illusion_0.75L,ppo,183,36.6,force,lower_fx,0.00013538477651309222 +illusion_0.75L,ppo,183,36.6,force,lower_fy,-0.0045368727296590805 +illusion_0.75L,ppo,184,36.8,force,front_fx,0.002597569255158305 +illusion_0.75L,ppo,184,36.8,force,front_fy,0.00037907864316366613 +illusion_0.75L,ppo,184,36.8,force,upper_fx,0.0018654597224667668 +illusion_0.75L,ppo,184,36.8,force,upper_fy,0.0039214808493852615 +illusion_0.75L,ppo,184,36.8,force,lower_fx,3.203523738193326e-05 +illusion_0.75L,ppo,184,36.8,force,lower_fy,-0.0043916841968894005 +illusion_0.75L,ppo,185,37.0,force,front_fx,0.002565707080066204 +illusion_0.75L,ppo,185,37.0,force,front_fy,0.0003588541876524687 +illusion_0.75L,ppo,185,37.0,force,upper_fx,0.002009219489991665 +illusion_0.75L,ppo,185,37.0,force,upper_fy,0.004027992952615023 +illusion_0.75L,ppo,185,37.0,force,lower_fx,-0.00010541245137574151 +illusion_0.75L,ppo,185,37.0,force,lower_fy,-0.004277383908629417 +illusion_0.75L,ppo,186,37.2,force,front_fx,0.002518495311960578 +illusion_0.75L,ppo,186,37.2,force,front_fy,0.00037652612081728876 +illusion_0.75L,ppo,186,37.2,force,upper_fx,0.0021555882412940264 +illusion_0.75L,ppo,186,37.2,force,upper_fy,0.004133869893848896 +illusion_0.75L,ppo,186,37.2,force,lower_fx,-0.0002620904997456819 +illusion_0.75L,ppo,186,37.2,force,lower_fy,-0.00418939208611846 +illusion_0.75L,ppo,187,37.4,force,front_fx,0.002496623434126377 +illusion_0.75L,ppo,187,37.4,force,front_fy,0.00046227278653532267 +illusion_0.75L,ppo,187,37.4,force,upper_fx,0.002278304658830166 +illusion_0.75L,ppo,187,37.4,force,upper_fy,0.004224105272442102 +illusion_0.75L,ppo,187,37.4,force,lower_fx,-0.00042719696648418903 +illusion_0.75L,ppo,187,37.4,force,lower_fy,-0.0041271536611020565 +illusion_0.75L,ppo,188,37.6,force,front_fx,0.002479579532518983 +illusion_0.75L,ppo,188,37.6,force,front_fy,0.0005921513657085598 +illusion_0.75L,ppo,188,37.6,force,upper_fx,0.0023820765782147646 +illusion_0.75L,ppo,188,37.6,force,upper_fy,0.004287219140678644 +illusion_0.75L,ppo,188,37.6,force,lower_fx,-0.0006029761862009764 +illusion_0.75L,ppo,188,37.6,force,lower_fy,-0.004082066938281059 +illusion_0.75L,ppo,189,37.8,force,front_fx,0.0024977915454655886 +illusion_0.75L,ppo,189,37.8,force,front_fy,0.0007562884129583836 +illusion_0.75L,ppo,189,37.8,force,upper_fx,0.002471641404554248 +illusion_0.75L,ppo,189,37.8,force,upper_fy,0.0043225763365626335 +illusion_0.75L,ppo,189,37.8,force,lower_fx,-0.0007980266818776727 +illusion_0.75L,ppo,189,37.8,force,lower_fy,-0.0040420908480882645 +illusion_0.75L,ppo,190,38.0,force,front_fx,0.002552708610892296 +illusion_0.75L,ppo,190,38.0,force,front_fy,0.0009309362503699958 +illusion_0.75L,ppo,190,38.0,force,upper_fx,0.0025520173367112875 +illusion_0.75L,ppo,190,38.0,force,upper_fy,0.00431121326982975 +illusion_0.75L,ppo,190,38.0,force,lower_fx,-0.0010032325517386198 +illusion_0.75L,ppo,190,38.0,force,lower_fy,-0.004008153919130564 +illusion_0.75L,ppo,191,38.2,force,front_fx,0.002637977944687009 +illusion_0.75L,ppo,191,38.2,force,front_fy,0.001095850602723658 +illusion_0.75L,ppo,191,38.2,force,upper_fx,0.002647494664415717 +illusion_0.75L,ppo,191,38.2,force,upper_fy,0.004244541749358177 +illusion_0.75L,ppo,191,38.2,force,lower_fx,-0.0012001481372863054 +illusion_0.75L,ppo,191,38.2,force,lower_fy,-0.00398321682587266 +illusion_0.75L,ppo,192,38.4,force,front_fx,0.0027282931841909885 +illusion_0.75L,ppo,192,38.4,force,front_fy,0.001239393255673349 +illusion_0.75L,ppo,192,38.4,force,upper_fx,0.002749432809650898 +illusion_0.75L,ppo,192,38.4,force,upper_fy,0.004125567153096199 +illusion_0.75L,ppo,192,38.4,force,lower_fx,-0.0013767986092716455 +illusion_0.75L,ppo,192,38.4,force,lower_fy,-0.003976177424192429 +illusion_0.75L,ppo,193,38.6,force,front_fx,0.0028260573744773865 +illusion_0.75L,ppo,193,38.6,force,front_fy,0.0013576181372627616 +illusion_0.75L,ppo,193,38.6,force,upper_fx,0.0028532869182527065 +illusion_0.75L,ppo,193,38.6,force,upper_fy,0.003961453679949045 +illusion_0.75L,ppo,193,38.6,force,lower_fx,-0.00151624227873981 +illusion_0.75L,ppo,193,38.6,force,lower_fy,-0.004003946669399738 +illusion_0.75L,ppo,194,38.8,force,front_fx,0.0028902837075293064 +illusion_0.75L,ppo,194,38.8,force,front_fy,0.0014277184382081032 +illusion_0.75L,ppo,194,38.8,force,upper_fx,0.0029531093314290047 +illusion_0.75L,ppo,194,38.8,force,upper_fy,0.0037779028061777353 +illusion_0.75L,ppo,194,38.8,force,lower_fx,-0.0016008636448532343 +illusion_0.75L,ppo,194,38.8,force,lower_fy,-0.004073623102158308 +illusion_0.75L,ppo,195,39.0,force,front_fx,0.0029244408942759037 +illusion_0.75L,ppo,195,39.0,force,front_fy,0.0014800961362197995 +illusion_0.75L,ppo,195,39.0,force,upper_fx,0.003017871407791972 +illusion_0.75L,ppo,195,39.0,force,upper_fy,0.003600706346333027 +illusion_0.75L,ppo,195,39.0,force,lower_fx,-0.001626584678888321 +illusion_0.75L,ppo,195,39.0,force,lower_fy,-0.004179615527391434 +illusion_0.75L,ppo,196,39.2,force,front_fx,0.0028952390421181917 +illusion_0.75L,ppo,196,39.2,force,front_fy,0.00147736887447536 +illusion_0.75L,ppo,196,39.2,force,upper_fx,0.003075925400480628 +illusion_0.75L,ppo,196,39.2,force,upper_fy,0.003459812141954899 +illusion_0.75L,ppo,196,39.2,force,lower_fx,-0.0015838833060115576 +illusion_0.75L,ppo,196,39.2,force,lower_fy,-0.004317484796047211 +illusion_0.75L,ppo,197,39.4,force,front_fx,0.0028433757834136486 +illusion_0.75L,ppo,197,39.4,force,front_fy,0.0014342133654281497 +illusion_0.75L,ppo,197,39.4,force,upper_fx,0.003086572978645563 +illusion_0.75L,ppo,197,39.4,force,upper_fy,0.00337844411842525 +illusion_0.75L,ppo,197,39.4,force,lower_fx,-0.0014824585523456335 +illusion_0.75L,ppo,197,39.4,force,lower_fy,-0.004477271344512701 +illusion_0.75L,ppo,198,39.6,force,front_fx,0.00275632506236434 +illusion_0.75L,ppo,198,39.6,force,front_fy,0.001343499287031591 +illusion_0.75L,ppo,198,39.6,force,upper_fx,0.003059130860492587 +illusion_0.75L,ppo,198,39.6,force,upper_fy,0.0033603610936552286 +illusion_0.75L,ppo,198,39.6,force,lower_fx,-0.0013388744555413723 +illusion_0.75L,ppo,198,39.6,force,lower_fy,-0.004658618476241827 +illusion_0.75L,ppo,199,39.8,force,front_fx,0.0026204511523246765 +illusion_0.75L,ppo,199,39.8,force,front_fy,0.0012181311612948775 +illusion_0.75L,ppo,199,39.8,force,upper_fx,0.00299180974252522 +illusion_0.75L,ppo,199,39.8,force,upper_fy,0.003410923993214965 +illusion_0.75L,ppo,199,39.8,force,lower_fx,-0.0011672641849145293 +illusion_0.75L,ppo,199,39.8,force,lower_fy,-0.004848100710660219 +illusion_0.75L,ppo,0,0.0,alpha,front,-1.5065715312957764 +illusion_0.75L,ppo,0,0.0,alpha,upper,-0.9880693554878235 +illusion_0.75L,ppo,0,0.0,alpha,lower,2.016491651535034 +illusion_0.75L,ppo,1,0.2,alpha,front,-1.6681911945343018 +illusion_0.75L,ppo,1,0.2,alpha,upper,-0.7293763160705566 +illusion_0.75L,ppo,1,0.2,alpha,lower,2.021615505218506 +illusion_0.75L,ppo,2,0.4,alpha,front,-1.7374014854431152 +illusion_0.75L,ppo,2,0.4,alpha,upper,-1.0834306478500366 +illusion_0.75L,ppo,2,0.4,alpha,lower,1.8133400678634644 +illusion_0.75L,ppo,3,0.6,alpha,front,-1.8392200469970703 +illusion_0.75L,ppo,3,0.6,alpha,upper,-1.3251702785491943 +illusion_0.75L,ppo,3,0.6,alpha,lower,1.6840687990188599 +illusion_0.75L,ppo,4,0.8,alpha,front,-1.8610540628433228 +illusion_0.75L,ppo,4,0.8,alpha,upper,-1.4893643856048584 +illusion_0.75L,ppo,4,0.8,alpha,lower,1.6472628116607666 +illusion_0.75L,ppo,5,1.0,alpha,front,-1.8109891414642334 +illusion_0.75L,ppo,5,1.0,alpha,upper,-1.6231112480163574 +illusion_0.75L,ppo,5,1.0,alpha,lower,1.684124231338501 +illusion_0.75L,ppo,6,1.2,alpha,front,-1.8178428411483765 +illusion_0.75L,ppo,6,1.2,alpha,upper,-1.6393661499023438 +illusion_0.75L,ppo,6,1.2,alpha,lower,1.6995607614517212 +illusion_0.75L,ppo,7,1.4,alpha,front,-1.8307801485061646 +illusion_0.75L,ppo,7,1.4,alpha,upper,-1.6425234079360962 +illusion_0.75L,ppo,7,1.4,alpha,lower,1.7031728029251099 +illusion_0.75L,ppo,8,1.6,alpha,front,-1.8385695219039917 +illusion_0.75L,ppo,8,1.6,alpha,upper,-1.6802536249160767 +illusion_0.75L,ppo,8,1.6,alpha,lower,1.6755980253219604 +illusion_0.75L,ppo,9,1.8,alpha,front,-1.834902048110962 +illusion_0.75L,ppo,9,1.8,alpha,upper,-1.6648986339569092 +illusion_0.75L,ppo,9,1.8,alpha,lower,1.6518371105194092 +illusion_0.75L,ppo,10,2.0,alpha,front,-1.782739520072937 +illusion_0.75L,ppo,10,2.0,alpha,upper,-1.6057378053665161 +illusion_0.75L,ppo,10,2.0,alpha,lower,1.6501456499099731 +illusion_0.75L,ppo,11,2.2,alpha,front,-1.646913766860962 +illusion_0.75L,ppo,11,2.2,alpha,upper,-1.497220516204834 +illusion_0.75L,ppo,11,2.2,alpha,lower,1.7068884372711182 +illusion_0.75L,ppo,12,2.4,alpha,front,-1.5462419986724854 +illusion_0.75L,ppo,12,2.4,alpha,upper,-1.3141679763793945 +illusion_0.75L,ppo,12,2.4,alpha,lower,1.7347739934921265 +illusion_0.75L,ppo,13,2.6,alpha,front,-1.3840023279190063 +illusion_0.75L,ppo,13,2.6,alpha,upper,-1.1129295825958252 +illusion_0.75L,ppo,13,2.6,alpha,lower,1.7967181205749512 +illusion_0.75L,ppo,14,2.8,alpha,front,-1.218949794769287 +illusion_0.75L,ppo,14,2.8,alpha,upper,-0.8964970707893372 +illusion_0.75L,ppo,14,2.8,alpha,lower,1.852542519569397 +illusion_0.75L,ppo,15,3.0,alpha,front,-1.080613374710083 +illusion_0.75L,ppo,15,3.0,alpha,upper,-0.6942176818847656 +illusion_0.75L,ppo,15,3.0,alpha,lower,1.8843603134155273 +illusion_0.75L,ppo,16,3.2,alpha,front,-0.9759493470191956 +illusion_0.75L,ppo,16,3.2,alpha,upper,-0.518761396408081 +illusion_0.75L,ppo,16,3.2,alpha,lower,1.9003267288208008 +illusion_0.75L,ppo,17,3.4,alpha,front,-0.9194991588592529 +illusion_0.75L,ppo,17,3.4,alpha,upper,-0.3928608000278473 +illusion_0.75L,ppo,17,3.4,alpha,lower,1.9103471040725708 +illusion_0.75L,ppo,18,3.6,alpha,front,-0.8864926099777222 +illusion_0.75L,ppo,18,3.6,alpha,upper,-0.3279842138290405 +illusion_0.75L,ppo,18,3.6,alpha,lower,1.9353972673416138 +illusion_0.75L,ppo,19,3.8,alpha,front,-0.8501306176185608 +illusion_0.75L,ppo,19,3.8,alpha,upper,-0.19039571285247803 +illusion_0.75L,ppo,19,3.8,alpha,lower,2.046015501022339 +illusion_0.75L,ppo,20,4.0,alpha,front,-0.8653786182403564 +illusion_0.75L,ppo,20,4.0,alpha,upper,-0.41220954060554504 +illusion_0.75L,ppo,20,4.0,alpha,lower,1.9948220252990723 +illusion_0.75L,ppo,21,4.2,alpha,front,-0.8431166410446167 +illusion_0.75L,ppo,21,4.2,alpha,upper,-0.5904022455215454 +illusion_0.75L,ppo,21,4.2,alpha,lower,2.0280745029449463 +illusion_0.75L,ppo,22,4.4,alpha,front,-0.8029396533966064 +illusion_0.75L,ppo,22,4.4,alpha,upper,-0.7557735443115234 +illusion_0.75L,ppo,22,4.4,alpha,lower,2.083799362182617 +illusion_0.75L,ppo,23,4.6,alpha,front,-0.8098617196083069 +illusion_0.75L,ppo,23,4.6,alpha,upper,-0.925324022769928 +illusion_0.75L,ppo,23,4.6,alpha,lower,2.0826427936553955 +illusion_0.75L,ppo,24,4.8,alpha,front,-0.8607308864593506 +illusion_0.75L,ppo,24,4.8,alpha,upper,-1.0759741067886353 +illusion_0.75L,ppo,24,4.8,alpha,lower,2.0311295986175537 +illusion_0.75L,ppo,25,5.0,alpha,front,-0.9110516905784607 +illusion_0.75L,ppo,25,5.0,alpha,upper,-1.19587242603302 +illusion_0.75L,ppo,25,5.0,alpha,lower,1.974959135055542 +illusion_0.75L,ppo,26,5.2,alpha,front,-0.955004096031189 +illusion_0.75L,ppo,26,5.2,alpha,upper,-1.3090850114822388 +illusion_0.75L,ppo,26,5.2,alpha,lower,1.9150652885437012 +illusion_0.75L,ppo,27,5.4,alpha,front,-0.9930206537246704 +illusion_0.75L,ppo,27,5.4,alpha,upper,-1.4245723485946655 +illusion_0.75L,ppo,27,5.4,alpha,lower,1.8523105382919312 +illusion_0.75L,ppo,28,5.6,alpha,front,-1.0237343311309814 +illusion_0.75L,ppo,28,5.6,alpha,upper,-1.5506936311721802 +illusion_0.75L,ppo,28,5.6,alpha,lower,1.7883107662200928 +illusion_0.75L,ppo,29,5.8,alpha,front,-1.0496209859848022 +illusion_0.75L,ppo,29,5.8,alpha,upper,-1.6821142435073853 +illusion_0.75L,ppo,29,5.8,alpha,lower,1.725074291229248 +illusion_0.75L,ppo,30,6.0,alpha,front,-1.088412880897522 +illusion_0.75L,ppo,30,6.0,alpha,upper,-1.799839973449707 +illusion_0.75L,ppo,30,6.0,alpha,lower,1.6574338674545288 +illusion_0.75L,ppo,31,6.2,alpha,front,-1.1317323446273804 +illusion_0.75L,ppo,31,6.2,alpha,upper,-1.8952412605285645 +illusion_0.75L,ppo,31,6.2,alpha,lower,1.599747896194458 +illusion_0.75L,ppo,32,6.4,alpha,front,-1.1876899003982544 +illusion_0.75L,ppo,32,6.4,alpha,upper,-1.9354573488235474 +illusion_0.75L,ppo,32,6.4,alpha,lower,1.5568912029266357 +illusion_0.75L,ppo,33,6.6,alpha,front,-1.2882535457611084 +illusion_0.75L,ppo,33,6.6,alpha,upper,-1.8808696269989014 +illusion_0.75L,ppo,33,6.6,alpha,lower,1.506596565246582 +illusion_0.75L,ppo,34,6.8,alpha,front,-1.425276279449463 +illusion_0.75L,ppo,34,6.8,alpha,upper,-1.7246795892715454 +illusion_0.75L,ppo,34,6.8,alpha,lower,1.4555292129516602 +illusion_0.75L,ppo,35,7.0,alpha,front,-1.5992802381515503 +illusion_0.75L,ppo,35,7.0,alpha,upper,-1.4825215339660645 +illusion_0.75L,ppo,35,7.0,alpha,lower,1.399761438369751 +illusion_0.75L,ppo,36,7.2,alpha,front,-1.7630198001861572 +illusion_0.75L,ppo,36,7.2,alpha,upper,-1.1796939373016357 +illusion_0.75L,ppo,36,7.2,alpha,lower,1.3813574314117432 +illusion_0.75L,ppo,37,7.4,alpha,front,-1.8840481042861938 +illusion_0.75L,ppo,37,7.4,alpha,upper,-0.902199923992157 +illusion_0.75L,ppo,37,7.4,alpha,lower,1.3945999145507812 +illusion_0.75L,ppo,38,7.6,alpha,front,-1.929385781288147 +illusion_0.75L,ppo,38,7.6,alpha,upper,-0.7499268054962158 +illusion_0.75L,ppo,38,7.6,alpha,lower,1.457287073135376 +illusion_0.75L,ppo,39,7.8,alpha,front,-1.9056591987609863 +illusion_0.75L,ppo,39,7.8,alpha,upper,-0.732781171798706 +illusion_0.75L,ppo,39,7.8,alpha,lower,1.5463852882385254 +illusion_0.75L,ppo,40,8.0,alpha,front,-1.8631060123443604 +illusion_0.75L,ppo,40,8.0,alpha,upper,-0.7456996440887451 +illusion_0.75L,ppo,40,8.0,alpha,lower,1.6508046388626099 +illusion_0.75L,ppo,41,8.2,alpha,front,-1.8150256872177124 +illusion_0.75L,ppo,41,8.2,alpha,upper,-0.8152817487716675 +illusion_0.75L,ppo,41,8.2,alpha,lower,1.7287604808807373 +illusion_0.75L,ppo,42,8.4,alpha,front,-1.7745051383972168 +illusion_0.75L,ppo,42,8.4,alpha,upper,-0.9180517196655273 +illusion_0.75L,ppo,42,8.4,alpha,lower,1.778951644897461 +illusion_0.75L,ppo,43,8.6,alpha,front,-1.7243483066558838 +illusion_0.75L,ppo,43,8.6,alpha,upper,-1.025876760482788 +illusion_0.75L,ppo,43,8.6,alpha,lower,1.8350776433944702 +illusion_0.75L,ppo,44,8.8,alpha,front,-1.6658172607421875 +illusion_0.75L,ppo,44,8.8,alpha,upper,-1.07241690158844 +illusion_0.75L,ppo,44,8.8,alpha,lower,1.9091912508010864 +illusion_0.75L,ppo,45,9.0,alpha,front,-1.5820515155792236 +illusion_0.75L,ppo,45,9.0,alpha,upper,-1.0787321329116821 +illusion_0.75L,ppo,45,9.0,alpha,lower,2.001539468765259 +illusion_0.75L,ppo,46,9.2,alpha,front,-1.4935128688812256 +illusion_0.75L,ppo,46,9.2,alpha,upper,-1.0102293491363525 +illusion_0.75L,ppo,46,9.2,alpha,lower,2.1060032844543457 +illusion_0.75L,ppo,47,9.4,alpha,front,-1.37204909324646 +illusion_0.75L,ppo,47,9.4,alpha,upper,-0.936836838722229 +illusion_0.75L,ppo,47,9.4,alpha,lower,2.196639060974121 +illusion_0.75L,ppo,48,9.6,alpha,front,-1.238985300064087 +illusion_0.75L,ppo,48,9.6,alpha,upper,-0.8784232139587402 +illusion_0.75L,ppo,48,9.6,alpha,lower,2.263345718383789 +illusion_0.75L,ppo,49,9.8,alpha,front,-1.0963579416275024 +illusion_0.75L,ppo,49,9.8,alpha,upper,-0.812114953994751 +illusion_0.75L,ppo,49,9.8,alpha,lower,2.301168441772461 +illusion_0.75L,ppo,50,10.0,alpha,front,-0.9562127590179443 +illusion_0.75L,ppo,50,10.0,alpha,upper,-0.7806117534637451 +illusion_0.75L,ppo,50,10.0,alpha,lower,2.3021225929260254 +illusion_0.75L,ppo,51,10.2,alpha,front,-0.8487735390663147 +illusion_0.75L,ppo,51,10.2,alpha,upper,-0.772885799407959 +illusion_0.75L,ppo,51,10.2,alpha,lower,2.258606195449829 +illusion_0.75L,ppo,52,10.4,alpha,front,-0.7923530340194702 +illusion_0.75L,ppo,52,10.4,alpha,upper,-0.7695646286010742 +illusion_0.75L,ppo,52,10.4,alpha,lower,2.194969892501831 +illusion_0.75L,ppo,53,10.6,alpha,front,-0.8122745156288147 +illusion_0.75L,ppo,53,10.6,alpha,upper,-0.7893370389938354 +illusion_0.75L,ppo,53,10.6,alpha,lower,2.105029582977295 +illusion_0.75L,ppo,54,10.8,alpha,front,-0.8779053688049316 +illusion_0.75L,ppo,54,10.8,alpha,upper,-0.8115927577018738 +illusion_0.75L,ppo,54,10.8,alpha,lower,2.0272862911224365 +illusion_0.75L,ppo,55,11.0,alpha,front,-0.956396222114563 +illusion_0.75L,ppo,55,11.0,alpha,upper,-0.8560289144515991 +illusion_0.75L,ppo,55,11.0,alpha,lower,1.956823706626892 +illusion_0.75L,ppo,56,11.2,alpha,front,-1.0189554691314697 +illusion_0.75L,ppo,56,11.2,alpha,upper,-0.9369992017745972 +illusion_0.75L,ppo,56,11.2,alpha,lower,1.884979009628296 +illusion_0.75L,ppo,57,11.4,alpha,front,-1.0677423477172852 +illusion_0.75L,ppo,57,11.4,alpha,upper,-1.0619618892669678 +illusion_0.75L,ppo,57,11.4,alpha,lower,1.803217887878418 +illusion_0.75L,ppo,58,11.6,alpha,front,-1.111701250076294 +illusion_0.75L,ppo,58,11.6,alpha,upper,-1.2030612230300903 +illusion_0.75L,ppo,58,11.6,alpha,lower,1.7137165069580078 +illusion_0.75L,ppo,59,11.8,alpha,front,-1.1577075719833374 +illusion_0.75L,ppo,59,11.8,alpha,upper,-1.3462328910827637 +illusion_0.75L,ppo,59,11.8,alpha,lower,1.6238939762115479 +illusion_0.75L,ppo,60,12.0,alpha,front,-1.1953370571136475 +illusion_0.75L,ppo,60,12.0,alpha,upper,-1.5169320106506348 +illusion_0.75L,ppo,60,12.0,alpha,lower,1.5321805477142334 +illusion_0.75L,ppo,61,12.2,alpha,front,-1.246069312095642 +illusion_0.75L,ppo,61,12.2,alpha,upper,-1.6713018417358398 +illusion_0.75L,ppo,61,12.2,alpha,lower,1.4308594465255737 +illusion_0.75L,ppo,62,12.4,alpha,front,-1.273949146270752 +illusion_0.75L,ppo,62,12.4,alpha,upper,-1.810573697090149 +illusion_0.75L,ppo,62,12.4,alpha,lower,1.3493232727050781 +illusion_0.75L,ppo,63,12.6,alpha,front,-1.2821882963180542 +illusion_0.75L,ppo,63,12.6,alpha,upper,-1.9265501499176025 +illusion_0.75L,ppo,63,12.6,alpha,lower,1.2908833026885986 +illusion_0.75L,ppo,64,12.8,alpha,front,-1.277262568473816 +illusion_0.75L,ppo,64,12.8,alpha,upper,-2.0065319538116455 +illusion_0.75L,ppo,64,12.8,alpha,lower,1.2535803318023682 +illusion_0.75L,ppo,65,13.0,alpha,front,-1.2428189516067505 +illusion_0.75L,ppo,65,13.0,alpha,upper,-2.052631378173828 +illusion_0.75L,ppo,65,13.0,alpha,lower,1.2696574926376343 +illusion_0.75L,ppo,66,13.2,alpha,front,-1.190186619758606 +illusion_0.75L,ppo,66,13.2,alpha,upper,-2.0620267391204834 +illusion_0.75L,ppo,66,13.2,alpha,lower,1.332674264907837 +illusion_0.75L,ppo,67,13.4,alpha,front,-1.2260127067565918 +illusion_0.75L,ppo,67,13.4,alpha,upper,-1.9464786052703857 +illusion_0.75L,ppo,67,13.4,alpha,lower,1.3778005838394165 +illusion_0.75L,ppo,68,13.6,alpha,front,-1.275559902191162 +illusion_0.75L,ppo,68,13.6,alpha,upper,-1.7330348491668701 +illusion_0.75L,ppo,68,13.6,alpha,lower,1.4473987817764282 +illusion_0.75L,ppo,69,13.8,alpha,front,-1.3662933111190796 +illusion_0.75L,ppo,69,13.8,alpha,upper,-1.4332166910171509 +illusion_0.75L,ppo,69,13.8,alpha,lower,1.5112056732177734 +illusion_0.75L,ppo,70,14.0,alpha,front,-1.4659708738327026 +illusion_0.75L,ppo,70,14.0,alpha,upper,-1.1020328998565674 +illusion_0.75L,ppo,70,14.0,alpha,lower,1.5824627876281738 +illusion_0.75L,ppo,71,14.2,alpha,front,-1.5422570705413818 +illusion_0.75L,ppo,71,14.2,alpha,upper,-0.7936801910400391 +illusion_0.75L,ppo,71,14.2,alpha,lower,1.674680471420288 +illusion_0.75L,ppo,72,14.4,alpha,front,-1.5715092420578003 +illusion_0.75L,ppo,72,14.4,alpha,upper,-0.5733182430267334 +illusion_0.75L,ppo,72,14.4,alpha,lower,1.779992699623108 +illusion_0.75L,ppo,73,14.6,alpha,front,-1.5532236099243164 +illusion_0.75L,ppo,73,14.6,alpha,upper,-0.4332517385482788 +illusion_0.75L,ppo,73,14.6,alpha,lower,1.9054276943206787 +illusion_0.75L,ppo,74,14.8,alpha,front,-1.4900718927383423 +illusion_0.75L,ppo,74,14.8,alpha,upper,-0.38969171047210693 +illusion_0.75L,ppo,74,14.8,alpha,lower,2.039278984069824 +illusion_0.75L,ppo,75,15.0,alpha,front,-1.4183024168014526 +illusion_0.75L,ppo,75,15.0,alpha,upper,-0.4159494936466217 +illusion_0.75L,ppo,75,15.0,alpha,lower,2.1531131267547607 +illusion_0.75L,ppo,76,15.2,alpha,front,-1.3263670206069946 +illusion_0.75L,ppo,76,15.2,alpha,upper,-0.4998806416988373 +illusion_0.75L,ppo,76,15.2,alpha,lower,2.266439914703369 +illusion_0.75L,ppo,77,15.4,alpha,front,-1.2563163042068481 +illusion_0.75L,ppo,77,15.4,alpha,upper,-0.6205472946166992 +illusion_0.75L,ppo,77,15.4,alpha,lower,2.3512353897094727 +illusion_0.75L,ppo,78,15.6,alpha,front,-1.1945490837097168 +illusion_0.75L,ppo,78,15.6,alpha,upper,-0.7258840799331665 +illusion_0.75L,ppo,78,15.6,alpha,lower,2.401775598526001 +illusion_0.75L,ppo,79,15.8,alpha,front,-1.138950228691101 +illusion_0.75L,ppo,79,15.8,alpha,upper,-0.8429698944091797 +illusion_0.75L,ppo,79,15.8,alpha,lower,2.4374947547912598 +illusion_0.75L,ppo,80,16.0,alpha,front,-1.089420199394226 +illusion_0.75L,ppo,80,16.0,alpha,upper,-0.9098714590072632 +illusion_0.75L,ppo,80,16.0,alpha,lower,2.4648730754852295 +illusion_0.75L,ppo,81,16.2,alpha,front,-1.0165259838104248 +illusion_0.75L,ppo,81,16.2,alpha,upper,-0.9711139798164368 +illusion_0.75L,ppo,81,16.2,alpha,lower,2.4834413528442383 +illusion_0.75L,ppo,82,16.4,alpha,front,-0.9410570859909058 +illusion_0.75L,ppo,82,16.4,alpha,upper,-1.0161333084106445 +illusion_0.75L,ppo,82,16.4,alpha,lower,2.4787681102752686 +illusion_0.75L,ppo,83,16.6,alpha,front,-0.8635088801383972 +illusion_0.75L,ppo,83,16.6,alpha,upper,-1.0584968328475952 +illusion_0.75L,ppo,83,16.6,alpha,lower,2.448282241821289 +illusion_0.75L,ppo,84,16.8,alpha,front,-0.8432005047798157 +illusion_0.75L,ppo,84,16.8,alpha,upper,-1.111870527267456 +illusion_0.75L,ppo,84,16.8,alpha,lower,2.3453853130340576 +illusion_0.75L,ppo,85,17.0,alpha,front,-0.8442235589027405 +illusion_0.75L,ppo,85,17.0,alpha,upper,-1.1625730991363525 +illusion_0.75L,ppo,85,17.0,alpha,lower,2.2188496589660645 +illusion_0.75L,ppo,86,17.2,alpha,front,-0.8822950720787048 +illusion_0.75L,ppo,86,17.2,alpha,upper,-1.219369649887085 +illusion_0.75L,ppo,86,17.2,alpha,lower,2.064833879470825 +illusion_0.75L,ppo,87,17.4,alpha,front,-1.0007920265197754 +illusion_0.75L,ppo,87,17.4,alpha,upper,-1.2810580730438232 +illusion_0.75L,ppo,87,17.4,alpha,lower,1.8578319549560547 +illusion_0.75L,ppo,88,17.6,alpha,front,-1.123075008392334 +illusion_0.75L,ppo,88,17.6,alpha,upper,-1.349823236465454 +illusion_0.75L,ppo,88,17.6,alpha,lower,1.6665462255477905 +illusion_0.75L,ppo,89,17.8,alpha,front,-1.2259814739227295 +illusion_0.75L,ppo,89,17.8,alpha,upper,-1.4487040042877197 +illusion_0.75L,ppo,89,17.8,alpha,lower,1.4958950281143188 +illusion_0.75L,ppo,90,18.0,alpha,front,-1.2991183996200562 +illusion_0.75L,ppo,90,18.0,alpha,upper,-1.5601726770401 +illusion_0.75L,ppo,90,18.0,alpha,lower,1.3634519577026367 +illusion_0.75L,ppo,91,18.2,alpha,front,-1.3487422466278076 +illusion_0.75L,ppo,91,18.2,alpha,upper,-1.679396629333496 +illusion_0.75L,ppo,91,18.2,alpha,lower,1.256766438484192 +illusion_0.75L,ppo,92,18.4,alpha,front,-1.372928261756897 +illusion_0.75L,ppo,92,18.4,alpha,upper,-1.7975997924804688 +illusion_0.75L,ppo,92,18.4,alpha,lower,1.1826863288879395 +illusion_0.75L,ppo,93,18.6,alpha,front,-1.3705904483795166 +illusion_0.75L,ppo,93,18.6,alpha,upper,-1.906957745552063 +illusion_0.75L,ppo,93,18.6,alpha,lower,1.1470497846603394 +illusion_0.75L,ppo,94,18.8,alpha,front,-1.3242565393447876 +illusion_0.75L,ppo,94,18.8,alpha,upper,-1.9977258443832397 +illusion_0.75L,ppo,94,18.8,alpha,lower,1.1583552360534668 +illusion_0.75L,ppo,95,19.0,alpha,front,-1.291843295097351 +illusion_0.75L,ppo,95,19.0,alpha,upper,-2.0580859184265137 +illusion_0.75L,ppo,95,19.0,alpha,lower,1.1715583801269531 +illusion_0.75L,ppo,96,19.2,alpha,front,-1.2311633825302124 +illusion_0.75L,ppo,96,19.2,alpha,upper,-2.092648983001709 +illusion_0.75L,ppo,96,19.2,alpha,lower,1.2257152795791626 +illusion_0.75L,ppo,97,19.4,alpha,front,-1.179673671722412 +illusion_0.75L,ppo,97,19.4,alpha,upper,-2.0864784717559814 +illusion_0.75L,ppo,97,19.4,alpha,lower,1.2903960943222046 +illusion_0.75L,ppo,98,19.6,alpha,front,-1.1393946409225464 +illusion_0.75L,ppo,98,19.6,alpha,upper,-1.9945262670516968 +illusion_0.75L,ppo,98,19.6,alpha,lower,1.386662244796753 +illusion_0.75L,ppo,99,19.8,alpha,front,-1.1461535692214966 +illusion_0.75L,ppo,99,19.8,alpha,upper,-1.7619096040725708 +illusion_0.75L,ppo,99,19.8,alpha,lower,1.488373041152954 +illusion_0.75L,ppo,100,20.0,alpha,front,-1.1859886646270752 +illusion_0.75L,ppo,100,20.0,alpha,upper,-1.4183076620101929 +illusion_0.75L,ppo,100,20.0,alpha,lower,1.597271203994751 +illusion_0.75L,ppo,101,20.2,alpha,front,-1.2630705833435059 +illusion_0.75L,ppo,101,20.2,alpha,upper,-1.0608744621276855 +illusion_0.75L,ppo,101,20.2,alpha,lower,1.6824002265930176 +illusion_0.75L,ppo,102,20.4,alpha,front,-1.3351688385009766 +illusion_0.75L,ppo,102,20.4,alpha,upper,-0.705040454864502 +illusion_0.75L,ppo,102,20.4,alpha,lower,1.7816147804260254 +illusion_0.75L,ppo,103,20.6,alpha,front,-1.3669449090957642 +illusion_0.75L,ppo,103,20.6,alpha,upper,-0.41515934467315674 +illusion_0.75L,ppo,103,20.6,alpha,lower,1.909833312034607 +illusion_0.75L,ppo,104,20.8,alpha,front,-1.3539656400680542 +illusion_0.75L,ppo,104,20.8,alpha,upper,-0.23086629807949066 +illusion_0.75L,ppo,104,20.8,alpha,lower,2.055697202682495 +illusion_0.75L,ppo,105,21.0,alpha,front,-1.2851264476776123 +illusion_0.75L,ppo,105,21.0,alpha,upper,-0.15120482444763184 +illusion_0.75L,ppo,105,21.0,alpha,lower,2.225486993789673 +illusion_0.75L,ppo,106,21.2,alpha,front,-1.2173962593078613 +illusion_0.75L,ppo,106,21.2,alpha,upper,-0.16565585136413574 +illusion_0.75L,ppo,106,21.2,alpha,lower,2.3737096786499023 +illusion_0.75L,ppo,107,21.4,alpha,front,-1.100820541381836 +illusion_0.75L,ppo,107,21.4,alpha,upper,-0.25903594493865967 +illusion_0.75L,ppo,107,21.4,alpha,lower,2.5374698638916016 +illusion_0.75L,ppo,108,21.6,alpha,front,-1.0706143379211426 +illusion_0.75L,ppo,108,21.6,alpha,upper,-0.40064868330955505 +illusion_0.75L,ppo,108,21.6,alpha,lower,2.601642370223999 +illusion_0.75L,ppo,109,21.8,alpha,front,-1.033625841140747 +illusion_0.75L,ppo,109,21.8,alpha,upper,-0.5971261262893677 +illusion_0.75L,ppo,109,21.8,alpha,lower,2.6428520679473877 +illusion_0.75L,ppo,110,22.0,alpha,front,-0.9610109329223633 +illusion_0.75L,ppo,110,22.0,alpha,upper,-0.8072665333747864 +illusion_0.75L,ppo,110,22.0,alpha,lower,2.689066171646118 +illusion_0.75L,ppo,111,22.2,alpha,front,-0.9456853866577148 +illusion_0.75L,ppo,111,22.2,alpha,upper,-1.0017828941345215 +illusion_0.75L,ppo,111,22.2,alpha,lower,2.653099536895752 +illusion_0.75L,ppo,112,22.4,alpha,front,-0.9003547430038452 +illusion_0.75L,ppo,112,22.4,alpha,upper,-1.1561365127563477 +illusion_0.75L,ppo,112,22.4,alpha,lower,2.6083171367645264 +illusion_0.75L,ppo,113,22.6,alpha,front,-0.883129894733429 +illusion_0.75L,ppo,113,22.6,alpha,upper,-1.2378538846969604 +illusion_0.75L,ppo,113,22.6,alpha,lower,2.509272813796997 +illusion_0.75L,ppo,114,22.8,alpha,front,-0.8884227871894836 +illusion_0.75L,ppo,114,22.8,alpha,upper,-1.2840862274169922 +illusion_0.75L,ppo,114,22.8,alpha,lower,2.3567237854003906 +illusion_0.75L,ppo,115,23.0,alpha,front,-0.9208585619926453 +illusion_0.75L,ppo,115,23.0,alpha,upper,-1.291617512702942 +illusion_0.75L,ppo,115,23.0,alpha,lower,2.1683871746063232 +illusion_0.75L,ppo,116,23.2,alpha,front,-1.0007671117782593 +illusion_0.75L,ppo,116,23.2,alpha,upper,-1.2767910957336426 +illusion_0.75L,ppo,116,23.2,alpha,lower,1.944806694984436 +illusion_0.75L,ppo,117,23.4,alpha,front,-1.1026932001113892 +illusion_0.75L,ppo,117,23.4,alpha,upper,-1.2987160682678223 +illusion_0.75L,ppo,117,23.4,alpha,lower,1.726022720336914 +illusion_0.75L,ppo,118,23.6,alpha,front,-1.220051884651184 +illusion_0.75L,ppo,118,23.6,alpha,upper,-1.3723833560943604 +illusion_0.75L,ppo,118,23.6,alpha,lower,1.5262922048568726 +illusion_0.75L,ppo,119,23.8,alpha,front,-1.3318120241165161 +illusion_0.75L,ppo,119,23.8,alpha,upper,-1.4927382469177246 +illusion_0.75L,ppo,119,23.8,alpha,lower,1.35777747631073 +illusion_0.75L,ppo,120,24.0,alpha,front,-1.4142065048217773 +illusion_0.75L,ppo,120,24.0,alpha,upper,-1.6532641649246216 +illusion_0.75L,ppo,120,24.0,alpha,lower,1.2249855995178223 +illusion_0.75L,ppo,121,24.2,alpha,front,-1.452357292175293 +illusion_0.75L,ppo,121,24.2,alpha,upper,-1.8222060203552246 +illusion_0.75L,ppo,121,24.2,alpha,lower,1.139319896697998 +illusion_0.75L,ppo,122,24.4,alpha,front,-1.4589548110961914 +illusion_0.75L,ppo,122,24.4,alpha,upper,-1.9711990356445312 +illusion_0.75L,ppo,122,24.4,alpha,lower,1.090015172958374 +illusion_0.75L,ppo,123,24.6,alpha,front,-1.4457852840423584 +illusion_0.75L,ppo,123,24.6,alpha,upper,-2.087233543395996 +illusion_0.75L,ppo,123,24.6,alpha,lower,1.0667973756790161 +illusion_0.75L,ppo,124,24.8,alpha,front,-1.3986364603042603 +illusion_0.75L,ppo,124,24.8,alpha,upper,-2.1551735401153564 +illusion_0.75L,ppo,124,24.8,alpha,lower,1.0938605070114136 +illusion_0.75L,ppo,125,25.0,alpha,front,-1.3294317722320557 +illusion_0.75L,ppo,125,25.0,alpha,upper,-2.1878321170806885 +illusion_0.75L,ppo,125,25.0,alpha,lower,1.1594841480255127 +illusion_0.75L,ppo,126,25.2,alpha,front,-1.2702832221984863 +illusion_0.75L,ppo,126,25.2,alpha,upper,-2.1344945430755615 +illusion_0.75L,ppo,126,25.2,alpha,lower,1.2619397640228271 +illusion_0.75L,ppo,127,25.4,alpha,front,-1.2336430549621582 +illusion_0.75L,ppo,127,25.4,alpha,upper,-2.0188019275665283 +illusion_0.75L,ppo,127,25.4,alpha,lower,1.3744205236434937 +illusion_0.75L,ppo,128,25.6,alpha,front,-1.2589983940124512 +illusion_0.75L,ppo,128,25.6,alpha,upper,-1.778645634651184 +illusion_0.75L,ppo,128,25.6,alpha,lower,1.4826984405517578 +illusion_0.75L,ppo,129,25.8,alpha,front,-1.3304336071014404 +illusion_0.75L,ppo,129,25.8,alpha,upper,-1.4265508651733398 +illusion_0.75L,ppo,129,25.8,alpha,lower,1.58578360080719 +illusion_0.75L,ppo,130,26.0,alpha,front,-1.4143176078796387 +illusion_0.75L,ppo,130,26.0,alpha,upper,-1.0564942359924316 +illusion_0.75L,ppo,130,26.0,alpha,lower,1.6846179962158203 +illusion_0.75L,ppo,131,26.2,alpha,front,-1.4700779914855957 +illusion_0.75L,ppo,131,26.2,alpha,upper,-0.7312042713165283 +illusion_0.75L,ppo,131,26.2,alpha,lower,1.7976157665252686 +illusion_0.75L,ppo,132,26.4,alpha,front,-1.481146216392517 +illusion_0.75L,ppo,132,26.4,alpha,upper,-0.47967275977134705 +illusion_0.75L,ppo,132,26.4,alpha,lower,1.9274976253509521 +illusion_0.75L,ppo,133,26.6,alpha,front,-1.4433088302612305 +illusion_0.75L,ppo,133,26.6,alpha,upper,-0.31921637058258057 +illusion_0.75L,ppo,133,26.6,alpha,lower,2.0673668384552 +illusion_0.75L,ppo,134,26.8,alpha,front,-1.3720778226852417 +illusion_0.75L,ppo,134,26.8,alpha,upper,-0.22377002239227295 +illusion_0.75L,ppo,134,26.8,alpha,lower,2.221240758895874 +illusion_0.75L,ppo,135,27.0,alpha,front,-1.2691919803619385 +illusion_0.75L,ppo,135,27.0,alpha,upper,-0.23480238020420074 +illusion_0.75L,ppo,135,27.0,alpha,lower,2.366990089416504 +illusion_0.75L,ppo,136,27.2,alpha,front,-1.176696538925171 +illusion_0.75L,ppo,136,27.2,alpha,upper,-0.29625439643859863 +illusion_0.75L,ppo,136,27.2,alpha,lower,2.4950098991394043 +illusion_0.75L,ppo,137,27.4,alpha,front,-1.0936282873153687 +illusion_0.75L,ppo,137,27.4,alpha,upper,-0.41195225715637207 +illusion_0.75L,ppo,137,27.4,alpha,lower,2.5966382026672363 +illusion_0.75L,ppo,138,27.6,alpha,front,-1.0265341997146606 +illusion_0.75L,ppo,138,27.6,alpha,upper,-0.581290602684021 +illusion_0.75L,ppo,138,27.6,alpha,lower,2.6636481285095215 +illusion_0.75L,ppo,139,27.8,alpha,front,-0.9513973593711853 +illusion_0.75L,ppo,139,27.8,alpha,upper,-0.7584434747695923 +illusion_0.75L,ppo,139,27.8,alpha,lower,2.71962833404541 +illusion_0.75L,ppo,140,28.0,alpha,front,-0.8793530464172363 +illusion_0.75L,ppo,140,28.0,alpha,upper,-0.9273326992988586 +illusion_0.75L,ppo,140,28.0,alpha,lower,2.739670991897583 +illusion_0.75L,ppo,141,28.2,alpha,front,-0.8273481726646423 +illusion_0.75L,ppo,141,28.2,alpha,upper,-1.0788733959197998 +illusion_0.75L,ppo,141,28.2,alpha,lower,2.6995317935943604 +illusion_0.75L,ppo,142,28.4,alpha,front,-0.7992280125617981 +illusion_0.75L,ppo,142,28.4,alpha,upper,-1.178433895111084 +illusion_0.75L,ppo,142,28.4,alpha,lower,2.603090524673462 +illusion_0.75L,ppo,143,28.6,alpha,front,-0.7918657660484314 +illusion_0.75L,ppo,143,28.6,alpha,upper,-1.2044352293014526 +illusion_0.75L,ppo,143,28.6,alpha,lower,2.4747700691223145 +illusion_0.75L,ppo,144,28.8,alpha,front,-0.8343170881271362 +illusion_0.75L,ppo,144,28.8,alpha,upper,-1.221887469291687 +illusion_0.75L,ppo,144,28.8,alpha,lower,2.2643768787384033 +illusion_0.75L,ppo,145,29.0,alpha,front,-0.9270139336585999 +illusion_0.75L,ppo,145,29.0,alpha,upper,-1.2226619720458984 +illusion_0.75L,ppo,145,29.0,alpha,lower,2.023832321166992 +illusion_0.75L,ppo,146,29.2,alpha,front,-1.0495069026947021 +illusion_0.75L,ppo,146,29.2,alpha,upper,-1.2598093748092651 +illusion_0.75L,ppo,146,29.2,alpha,lower,1.7861770391464233 +illusion_0.75L,ppo,147,29.4,alpha,front,-1.1770975589752197 +illusion_0.75L,ppo,147,29.4,alpha,upper,-1.3484151363372803 +illusion_0.75L,ppo,147,29.4,alpha,lower,1.5817188024520874 +illusion_0.75L,ppo,148,29.6,alpha,front,-1.285773754119873 +illusion_0.75L,ppo,148,29.6,alpha,upper,-1.5052599906921387 +illusion_0.75L,ppo,148,29.6,alpha,lower,1.4115667343139648 +illusion_0.75L,ppo,149,29.8,alpha,front,-1.3740367889404297 +illusion_0.75L,ppo,149,29.8,alpha,upper,-1.668531060218811 +illusion_0.75L,ppo,149,29.8,alpha,lower,1.276190996170044 +illusion_0.75L,ppo,150,30.0,alpha,front,-1.4132921695709229 +illusion_0.75L,ppo,150,30.0,alpha,upper,-1.8750485181808472 +illusion_0.75L,ppo,150,30.0,alpha,lower,1.1734280586242676 +illusion_0.75L,ppo,151,30.2,alpha,front,-1.4291939735412598 +illusion_0.75L,ppo,151,30.2,alpha,upper,-2.0469701290130615 +illusion_0.75L,ppo,151,30.2,alpha,lower,1.1038269996643066 +illusion_0.75L,ppo,152,30.4,alpha,front,-1.4156749248504639 +illusion_0.75L,ppo,152,30.4,alpha,upper,-2.167581796646118 +illusion_0.75L,ppo,152,30.4,alpha,lower,1.0714352130889893 +illusion_0.75L,ppo,153,30.6,alpha,front,-1.3730003833770752 +illusion_0.75L,ppo,153,30.6,alpha,upper,-2.254504919052124 +illusion_0.75L,ppo,153,30.6,alpha,lower,1.0791081190109253 +illusion_0.75L,ppo,154,30.8,alpha,front,-1.312597632408142 +illusion_0.75L,ppo,154,30.8,alpha,upper,-2.2805423736572266 +illusion_0.75L,ppo,154,30.8,alpha,lower,1.1375267505645752 +illusion_0.75L,ppo,155,31.0,alpha,front,-1.2581502199172974 +illusion_0.75L,ppo,155,31.0,alpha,upper,-2.2387778759002686 +illusion_0.75L,ppo,155,31.0,alpha,lower,1.2337517738342285 +illusion_0.75L,ppo,156,31.2,alpha,front,-1.2605125904083252 +illusion_0.75L,ppo,156,31.2,alpha,upper,-2.061769723892212 +illusion_0.75L,ppo,156,31.2,alpha,lower,1.340112566947937 +illusion_0.75L,ppo,157,31.4,alpha,front,-1.3142015933990479 +illusion_0.75L,ppo,157,31.4,alpha,upper,-1.7647351026535034 +illusion_0.75L,ppo,157,31.4,alpha,lower,1.4506008625030518 +illusion_0.75L,ppo,158,31.6,alpha,front,-1.4080665111541748 +illusion_0.75L,ppo,158,31.6,alpha,upper,-1.4092216491699219 +illusion_0.75L,ppo,158,31.6,alpha,lower,1.5508103370666504 +illusion_0.75L,ppo,159,31.8,alpha,front,-1.4954131841659546 +illusion_0.75L,ppo,159,31.8,alpha,upper,-1.0617866516113281 +illusion_0.75L,ppo,159,31.8,alpha,lower,1.6628992557525635 +illusion_0.75L,ppo,160,32.0,alpha,front,-1.5453722476959229 +illusion_0.75L,ppo,160,32.0,alpha,upper,-0.7718163728713989 +illusion_0.75L,ppo,160,32.0,alpha,lower,1.7859662771224976 +illusion_0.75L,ppo,161,32.2,alpha,front,-1.5395653247833252 +illusion_0.75L,ppo,161,32.2,alpha,upper,-0.5481806993484497 +illusion_0.75L,ppo,161,32.2,alpha,lower,1.9255157709121704 +illusion_0.75L,ppo,162,32.4,alpha,front,-1.4900447130203247 +illusion_0.75L,ppo,162,32.4,alpha,upper,-0.39783501625061035 +illusion_0.75L,ppo,162,32.4,alpha,lower,2.069704055786133 +illusion_0.75L,ppo,163,32.6,alpha,front,-1.4182300567626953 +illusion_0.75L,ppo,163,32.6,alpha,upper,-0.3169158697128296 +illusion_0.75L,ppo,163,32.6,alpha,lower,2.203312873840332 +illusion_0.75L,ppo,164,32.8,alpha,front,-1.3296968936920166 +illusion_0.75L,ppo,164,32.8,alpha,upper,-0.3169972896575928 +illusion_0.75L,ppo,164,32.8,alpha,lower,2.3279166221618652 +illusion_0.75L,ppo,165,33.0,alpha,front,-1.209062099456787 +illusion_0.75L,ppo,165,33.0,alpha,upper,-0.35769402980804443 +illusion_0.75L,ppo,165,33.0,alpha,lower,2.476869821548462 +illusion_0.75L,ppo,166,33.2,alpha,front,-1.1537166833877563 +illusion_0.75L,ppo,166,33.2,alpha,upper,-0.44589877128601074 +illusion_0.75L,ppo,166,33.2,alpha,lower,2.5571868419647217 +illusion_0.75L,ppo,167,33.4,alpha,front,-1.0791081190109253 +illusion_0.75L,ppo,167,33.4,alpha,upper,-0.5818045139312744 +illusion_0.75L,ppo,167,33.4,alpha,lower,2.6336307525634766 +illusion_0.75L,ppo,168,33.6,alpha,front,-0.9935768246650696 +illusion_0.75L,ppo,168,33.6,alpha,upper,-0.7350270748138428 +illusion_0.75L,ppo,168,33.6,alpha,lower,2.6994972229003906 +illusion_0.75L,ppo,169,33.8,alpha,front,-0.9026499390602112 +illusion_0.75L,ppo,169,33.8,alpha,upper,-0.8885896801948547 +illusion_0.75L,ppo,169,33.8,alpha,lower,2.7372734546661377 +illusion_0.75L,ppo,170,34.0,alpha,front,-0.8245078325271606 +illusion_0.75L,ppo,170,34.0,alpha,upper,-1.0234495401382446 +illusion_0.75L,ppo,170,34.0,alpha,lower,2.7224597930908203 +illusion_0.75L,ppo,171,34.2,alpha,front,-0.7696592807769775 +illusion_0.75L,ppo,171,34.2,alpha,upper,-1.1046137809753418 +illusion_0.75L,ppo,171,34.2,alpha,lower,2.6552000045776367 +illusion_0.75L,ppo,172,34.4,alpha,front,-0.7544893026351929 +illusion_0.75L,ppo,172,34.4,alpha,upper,-1.1493676900863647 +illusion_0.75L,ppo,172,34.4,alpha,lower,2.5156517028808594 +illusion_0.75L,ppo,173,34.6,alpha,front,-0.7930536866188049 +illusion_0.75L,ppo,173,34.6,alpha,upper,-1.1475141048431396 +illusion_0.75L,ppo,173,34.6,alpha,lower,2.320004463195801 +illusion_0.75L,ppo,174,34.8,alpha,front,-0.8810577392578125 +illusion_0.75L,ppo,174,34.8,alpha,upper,-1.153875470161438 +illusion_0.75L,ppo,174,34.8,alpha,lower,2.0853796005249023 +illusion_0.75L,ppo,175,35.0,alpha,front,-1.0017887353897095 +illusion_0.75L,ppo,175,35.0,alpha,upper,-1.1995034217834473 +illusion_0.75L,ppo,175,35.0,alpha,lower,1.8577836751937866 +illusion_0.75L,ppo,176,35.2,alpha,front,-1.1261860132217407 +illusion_0.75L,ppo,176,35.2,alpha,upper,-1.3167152404785156 +illusion_0.75L,ppo,176,35.2,alpha,lower,1.658636212348938 +illusion_0.75L,ppo,177,35.4,alpha,front,-1.2404639720916748 +illusion_0.75L,ppo,177,35.4,alpha,upper,-1.4939298629760742 +illusion_0.75L,ppo,177,35.4,alpha,lower,1.4831352233886719 +illusion_0.75L,ppo,178,35.6,alpha,front,-1.3275740146636963 +illusion_0.75L,ppo,178,35.6,alpha,upper,-1.6923376321792603 +illusion_0.75L,ppo,178,35.6,alpha,lower,1.3367385864257812 +illusion_0.75L,ppo,179,35.8,alpha,front,-1.3802751302719116 +illusion_0.75L,ppo,179,35.8,alpha,upper,-1.8850352764129639 +illusion_0.75L,ppo,179,35.8,alpha,lower,1.2204034328460693 +illusion_0.75L,ppo,180,36.0,alpha,front,-1.406391978263855 +illusion_0.75L,ppo,180,36.0,alpha,upper,-2.050632953643799 +illusion_0.75L,ppo,180,36.0,alpha,lower,1.1309263706207275 +illusion_0.75L,ppo,181,36.2,alpha,front,-1.3981907367706299 +illusion_0.75L,ppo,181,36.2,alpha,upper,-2.1801578998565674 +illusion_0.75L,ppo,181,36.2,alpha,lower,1.081120252609253 +illusion_0.75L,ppo,182,36.4,alpha,front,-1.3541841506958008 +illusion_0.75L,ppo,182,36.4,alpha,upper,-2.2688522338867188 +illusion_0.75L,ppo,182,36.4,alpha,lower,1.0845749378204346 +illusion_0.75L,ppo,183,36.6,alpha,front,-1.2905313968658447 +illusion_0.75L,ppo,183,36.6,alpha,upper,-2.304609775543213 +illusion_0.75L,ppo,183,36.6,alpha,lower,1.1399708986282349 +illusion_0.75L,ppo,184,36.8,alpha,front,-1.2521709203720093 +illusion_0.75L,ppo,184,36.8,alpha,upper,-2.237253189086914 +illusion_0.75L,ppo,184,36.8,alpha,lower,1.232437252998352 +illusion_0.75L,ppo,185,37.0,alpha,front,-1.27254056930542 +illusion_0.75L,ppo,185,37.0,alpha,upper,-2.0583300590515137 +illusion_0.75L,ppo,185,37.0,alpha,lower,1.3310463428497314 +illusion_0.75L,ppo,186,37.2,alpha,front,-1.3579556941986084 +illusion_0.75L,ppo,186,37.2,alpha,upper,-1.7744431495666504 +illusion_0.75L,ppo,186,37.2,alpha,lower,1.4214497804641724 +illusion_0.75L,ppo,187,37.4,alpha,front,-1.465773105621338 +illusion_0.75L,ppo,187,37.4,alpha,upper,-1.4312901496887207 +illusion_0.75L,ppo,187,37.4,alpha,lower,1.527145504951477 +illusion_0.75L,ppo,188,37.6,alpha,front,-1.5464433431625366 +illusion_0.75L,ppo,188,37.6,alpha,upper,-1.1255050897598267 +illusion_0.75L,ppo,188,37.6,alpha,lower,1.6456434726715088 +illusion_0.75L,ppo,189,37.8,alpha,front,-1.5947171449661255 +illusion_0.75L,ppo,189,37.8,alpha,upper,-0.8617900609970093 +illusion_0.75L,ppo,189,37.8,alpha,lower,1.7712647914886475 +illusion_0.75L,ppo,190,38.0,alpha,front,-1.5958678722381592 +illusion_0.75L,ppo,190,38.0,alpha,upper,-0.6491312980651855 +illusion_0.75L,ppo,190,38.0,alpha,lower,1.9001672267913818 +illusion_0.75L,ppo,191,38.2,alpha,front,-1.5617761611938477 +illusion_0.75L,ppo,191,38.2,alpha,upper,-0.4984198808670044 +illusion_0.75L,ppo,191,38.2,alpha,lower,2.019930601119995 +illusion_0.75L,ppo,192,38.4,alpha,front,-1.493614912033081 +illusion_0.75L,ppo,192,38.4,alpha,upper,-0.40494680404663086 +illusion_0.75L,ppo,192,38.4,alpha,lower,2.146667718887329 +illusion_0.75L,ppo,193,38.6,alpha,front,-1.4085779190063477 +illusion_0.75L,ppo,193,38.6,alpha,upper,-0.36332643032073975 +illusion_0.75L,ppo,193,38.6,alpha,lower,2.274862289428711 +illusion_0.75L,ppo,194,38.8,alpha,front,-1.3121576309204102 +illusion_0.75L,ppo,194,38.8,alpha,upper,-0.39236652851104736 +illusion_0.75L,ppo,194,38.8,alpha,lower,2.3964810371398926 +illusion_0.75L,ppo,195,39.0,alpha,front,-1.2244482040405273 +illusion_0.75L,ppo,195,39.0,alpha,upper,-0.46554791927337646 +illusion_0.75L,ppo,195,39.0,alpha,lower,2.504039764404297 +illusion_0.75L,ppo,196,39.2,alpha,front,-1.1284459829330444 +illusion_0.75L,ppo,196,39.2,alpha,upper,-0.5900546312332153 +illusion_0.75L,ppo,196,39.2,alpha,lower,2.5954277515411377 +illusion_0.75L,ppo,197,39.4,alpha,front,-1.0317273139953613 +illusion_0.75L,ppo,197,39.4,alpha,upper,-0.713781476020813 +illusion_0.75L,ppo,197,39.4,alpha,lower,2.681147336959839 +illusion_0.75L,ppo,198,39.6,alpha,front,-0.9301208257675171 +illusion_0.75L,ppo,198,39.6,alpha,upper,-0.8556261658668518 +illusion_0.75L,ppo,198,39.6,alpha,lower,2.7317466735839844 +illusion_0.75L,ppo,199,39.8,alpha,front,-0.8398332595825195 +illusion_0.75L,ppo,199,39.8,alpha,upper,-0.9862957000732422 +illusion_0.75L,ppo,199,39.8,alpha,lower,2.7333385944366455 +illusion_0.75L,ppo,0,0.0,omega,front,-0.015065714716911316 +illusion_0.75L,ppo,0,0.0,omega,upper,-0.00988069362938404 +illusion_0.75L,ppo,0,0.0,omega,lower,0.020164916291832924 +illusion_0.75L,ppo,1,0.2,omega,front,-0.016681911423802376 +illusion_0.75L,ppo,1,0.2,omega,upper,-0.007293763104826212 +illusion_0.75L,ppo,1,0.2,omega,lower,0.02021615393459797 +illusion_0.75L,ppo,2,0.4,omega,front,-0.017374014481902122 +illusion_0.75L,ppo,2,0.4,omega,upper,-0.010834306478500366 +illusion_0.75L,ppo,2,0.4,omega,lower,0.01813340000808239 +illusion_0.75L,ppo,3,0.6,omega,front,-0.018392199650406837 +illusion_0.75L,ppo,3,0.6,omega,upper,-0.013251702301204205 +illusion_0.75L,ppo,3,0.6,omega,lower,0.01684068702161312 +illusion_0.75L,ppo,4,0.8,omega,front,-0.01861054077744484 +illusion_0.75L,ppo,4,0.8,omega,upper,-0.01489364355802536 +illusion_0.75L,ppo,4,0.8,omega,lower,0.016472628340125084 +illusion_0.75L,ppo,5,1.0,omega,front,-0.018109891563653946 +illusion_0.75L,ppo,5,1.0,omega,upper,-0.01623111218214035 +illusion_0.75L,ppo,5,1.0,omega,lower,0.016841242089867592 +illusion_0.75L,ppo,6,1.2,omega,front,-0.0181784275919199 +illusion_0.75L,ppo,6,1.2,omega,upper,-0.016393661499023438 +illusion_0.75L,ppo,6,1.2,omega,lower,0.016995606943964958 +illusion_0.75L,ppo,7,1.4,omega,front,-0.018307801336050034 +illusion_0.75L,ppo,7,1.4,omega,upper,-0.016425233334302902 +illusion_0.75L,ppo,7,1.4,omega,lower,0.017031727358698845 +illusion_0.75L,ppo,8,1.6,omega,front,-0.018385695293545723 +illusion_0.75L,ppo,8,1.6,omega,upper,-0.016802536323666573 +illusion_0.75L,ppo,8,1.6,omega,lower,0.016755979508161545 +illusion_0.75L,ppo,9,1.8,omega,front,-0.018349019810557365 +illusion_0.75L,ppo,9,1.8,omega,upper,-0.01664898544549942 +illusion_0.75L,ppo,9,1.8,omega,lower,0.016518371179699898 +illusion_0.75L,ppo,10,2.0,omega,front,-0.017827395349740982 +illusion_0.75L,ppo,10,2.0,omega,upper,-0.01605737768113613 +illusion_0.75L,ppo,10,2.0,omega,lower,0.01650145649909973 +illusion_0.75L,ppo,11,2.2,omega,front,-0.016469137743115425 +illusion_0.75L,ppo,11,2.2,omega,upper,-0.014972205273807049 +illusion_0.75L,ppo,11,2.2,omega,lower,0.017068883404135704 +illusion_0.75L,ppo,12,2.4,omega,front,-0.01546241994947195 +illusion_0.75L,ppo,12,2.4,omega,upper,-0.01314167957752943 +illusion_0.75L,ppo,12,2.4,omega,lower,0.01734774000942707 +illusion_0.75L,ppo,13,2.6,omega,front,-0.013840023428201675 +illusion_0.75L,ppo,13,2.6,omega,upper,-0.011129295453429222 +illusion_0.75L,ppo,13,2.6,omega,lower,0.017967181280255318 +illusion_0.75L,ppo,14,2.8,omega,front,-0.012189497239887714 +illusion_0.75L,ppo,14,2.8,omega,upper,-0.008964970707893372 +illusion_0.75L,ppo,14,2.8,omega,lower,0.01852542534470558 +illusion_0.75L,ppo,15,3.0,omega,front,-0.010806133970618248 +illusion_0.75L,ppo,15,3.0,omega,upper,-0.006942176725715399 +illusion_0.75L,ppo,15,3.0,omega,lower,0.018843602389097214 +illusion_0.75L,ppo,16,3.2,omega,front,-0.009759493172168732 +illusion_0.75L,ppo,16,3.2,omega,upper,-0.005187613889575005 +illusion_0.75L,ppo,16,3.2,omega,lower,0.019003266468644142 +illusion_0.75L,ppo,17,3.4,omega,front,-0.009194991551339626 +illusion_0.75L,ppo,17,3.4,omega,upper,-0.0039286077953875065 +illusion_0.75L,ppo,17,3.4,omega,lower,0.01910347118973732 +illusion_0.75L,ppo,18,3.6,omega,front,-0.008864926174283028 +illusion_0.75L,ppo,18,3.6,omega,upper,-0.003279841970652342 +illusion_0.75L,ppo,18,3.6,omega,lower,0.019353972747921944 +illusion_0.75L,ppo,19,3.8,omega,front,-0.008501306176185608 +illusion_0.75L,ppo,19,3.8,omega,upper,-0.001903957105241716 +illusion_0.75L,ppo,19,3.8,omega,lower,0.020460154861211777 +illusion_0.75L,ppo,20,4.0,omega,front,-0.008653786033391953 +illusion_0.75L,ppo,20,4.0,omega,upper,-0.0041220951825380325 +illusion_0.75L,ppo,20,4.0,omega,lower,0.019948219880461693 +illusion_0.75L,ppo,21,4.2,omega,front,-0.008431166410446167 +illusion_0.75L,ppo,21,4.2,omega,upper,-0.005904022138565779 +illusion_0.75L,ppo,21,4.2,omega,lower,0.02028074488043785 +illusion_0.75L,ppo,22,4.4,omega,front,-0.008029396645724773 +illusion_0.75L,ppo,22,4.4,omega,upper,-0.007557735312730074 +illusion_0.75L,ppo,22,4.4,omega,lower,0.020837992429733276 +illusion_0.75L,ppo,23,4.6,omega,front,-0.008098617196083069 +illusion_0.75L,ppo,23,4.6,omega,upper,-0.009253240190446377 +illusion_0.75L,ppo,23,4.6,omega,lower,0.0208264272660017 +illusion_0.75L,ppo,24,4.8,omega,front,-0.008607308380305767 +illusion_0.75L,ppo,24,4.8,omega,upper,-0.010759741067886353 +illusion_0.75L,ppo,24,4.8,omega,lower,0.020311295986175537 +illusion_0.75L,ppo,25,5.0,omega,front,-0.009110516868531704 +illusion_0.75L,ppo,25,5.0,omega,upper,-0.01195872388780117 +illusion_0.75L,ppo,25,5.0,omega,lower,0.019749591127038002 +illusion_0.75L,ppo,26,5.2,omega,front,-0.00955004058778286 +illusion_0.75L,ppo,26,5.2,omega,upper,-0.013090849854052067 +illusion_0.75L,ppo,26,5.2,omega,lower,0.01915065199136734 +illusion_0.75L,ppo,27,5.4,omega,front,-0.009930206462740898 +illusion_0.75L,ppo,27,5.4,omega,upper,-0.014245723374187946 +illusion_0.75L,ppo,27,5.4,omega,lower,0.01852310448884964 +illusion_0.75L,ppo,28,5.6,omega,front,-0.010237342678010464 +illusion_0.75L,ppo,28,5.6,omega,upper,-0.015506936237215996 +illusion_0.75L,ppo,28,5.6,omega,lower,0.01788310706615448 +illusion_0.75L,ppo,29,5.8,omega,front,-0.010496209375560284 +illusion_0.75L,ppo,29,5.8,omega,upper,-0.01682114228606224 +illusion_0.75L,ppo,29,5.8,omega,lower,0.01725074276328087 +illusion_0.75L,ppo,30,6.0,omega,front,-0.010884128510951996 +illusion_0.75L,ppo,30,6.0,omega,upper,-0.01799839921295643 +illusion_0.75L,ppo,30,6.0,omega,lower,0.01657433807849884 +illusion_0.75L,ppo,31,6.2,omega,front,-0.011317322961986065 +illusion_0.75L,ppo,31,6.2,omega,upper,-0.01895241253077984 +illusion_0.75L,ppo,31,6.2,omega,lower,0.015997478738427162 +illusion_0.75L,ppo,32,6.4,omega,front,-0.011876898817718029 +illusion_0.75L,ppo,32,6.4,omega,upper,-0.019354572519659996 +illusion_0.75L,ppo,32,6.4,omega,lower,0.015568912029266357 +illusion_0.75L,ppo,33,6.6,omega,front,-0.012882535345852375 +illusion_0.75L,ppo,33,6.6,omega,upper,-0.018808696419000626 +illusion_0.75L,ppo,33,6.6,omega,lower,0.015065965242683887 +illusion_0.75L,ppo,34,6.8,omega,front,-0.01425276231020689 +illusion_0.75L,ppo,34,6.8,omega,upper,-0.017246795818209648 +illusion_0.75L,ppo,34,6.8,omega,lower,0.014555292204022408 +illusion_0.75L,ppo,35,7.0,omega,front,-0.015992801636457443 +illusion_0.75L,ppo,35,7.0,omega,upper,-0.014825214631855488 +illusion_0.75L,ppo,35,7.0,omega,lower,0.01399761438369751 +illusion_0.75L,ppo,36,7.2,omega,front,-0.0176301971077919 +illusion_0.75L,ppo,36,7.2,omega,upper,-0.011796939186751842 +illusion_0.75L,ppo,36,7.2,omega,lower,0.013813573867082596 +illusion_0.75L,ppo,37,7.4,omega,front,-0.018840480595827103 +illusion_0.75L,ppo,37,7.4,omega,upper,-0.009021999314427376 +illusion_0.75L,ppo,37,7.4,omega,lower,0.01394599862396717 +illusion_0.75L,ppo,38,7.6,omega,front,-0.019293857738375664 +illusion_0.75L,ppo,38,7.6,omega,upper,-0.007499267812818289 +illusion_0.75L,ppo,38,7.6,omega,lower,0.0145728699862957 +illusion_0.75L,ppo,39,7.8,omega,front,-0.019056592136621475 +illusion_0.75L,ppo,39,7.8,omega,upper,-0.007327811326831579 +illusion_0.75L,ppo,39,7.8,omega,lower,0.01546385232359171 +illusion_0.75L,ppo,40,8.0,omega,front,-0.018631059676408768 +illusion_0.75L,ppo,40,8.0,omega,upper,-0.007456996478140354 +illusion_0.75L,ppo,40,8.0,omega,lower,0.01650804653763771 +illusion_0.75L,ppo,41,8.2,omega,front,-0.01815025694668293 +illusion_0.75L,ppo,41,8.2,omega,upper,-0.008152817375957966 +illusion_0.75L,ppo,41,8.2,omega,lower,0.01728760451078415 +illusion_0.75L,ppo,42,8.4,omega,front,-0.01774505153298378 +illusion_0.75L,ppo,42,8.4,omega,upper,-0.009180516935884953 +illusion_0.75L,ppo,42,8.4,omega,lower,0.01778951659798622 +illusion_0.75L,ppo,43,8.6,omega,front,-0.017243482172489166 +illusion_0.75L,ppo,43,8.6,omega,upper,-0.010258767753839493 +illusion_0.75L,ppo,43,8.6,omega,lower,0.01835077628493309 +illusion_0.75L,ppo,44,8.8,omega,front,-0.016658172011375427 +illusion_0.75L,ppo,44,8.8,omega,upper,-0.010724169202148914 +illusion_0.75L,ppo,44,8.8,omega,lower,0.019091911613941193 +illusion_0.75L,ppo,45,9.0,omega,front,-0.015820514410734177 +illusion_0.75L,ppo,45,9.0,omega,upper,-0.010787321254611015 +illusion_0.75L,ppo,45,9.0,omega,lower,0.020015394315123558 +illusion_0.75L,ppo,46,9.2,omega,front,-0.014935128390789032 +illusion_0.75L,ppo,46,9.2,omega,upper,-0.010102293454110622 +illusion_0.75L,ppo,46,9.2,omega,lower,0.02106003277003765 +illusion_0.75L,ppo,47,9.4,omega,front,-0.013720490969717503 +illusion_0.75L,ppo,47,9.4,omega,upper,-0.009368368424475193 +illusion_0.75L,ppo,47,9.4,omega,lower,0.021966390311717987 +illusion_0.75L,ppo,48,9.6,omega,front,-0.012389852665364742 +illusion_0.75L,ppo,48,9.6,omega,upper,-0.00878423172980547 +illusion_0.75L,ppo,48,9.6,omega,lower,0.02263345755636692 +illusion_0.75L,ppo,49,9.8,omega,front,-0.010963578708469868 +illusion_0.75L,ppo,49,9.8,omega,upper,-0.008121149614453316 +illusion_0.75L,ppo,49,9.8,omega,lower,0.02301168441772461 +illusion_0.75L,ppo,50,10.0,omega,front,-0.00956212729215622 +illusion_0.75L,ppo,50,10.0,omega,upper,-0.007806117180734873 +illusion_0.75L,ppo,50,10.0,omega,lower,0.02302122488617897 +illusion_0.75L,ppo,51,10.2,omega,front,-0.008487734943628311 +illusion_0.75L,ppo,51,10.2,omega,upper,-0.007728857919573784 +illusion_0.75L,ppo,51,10.2,omega,lower,0.02258606068789959 +illusion_0.75L,ppo,52,10.4,omega,front,-0.007923530414700508 +illusion_0.75L,ppo,52,10.4,omega,upper,-0.007695646025240421 +illusion_0.75L,ppo,52,10.4,omega,lower,0.02194969914853573 +illusion_0.75L,ppo,53,10.6,omega,front,-0.008122744970023632 +illusion_0.75L,ppo,53,10.6,omega,upper,-0.00789337046444416 +illusion_0.75L,ppo,53,10.6,omega,lower,0.02105029486119747 +illusion_0.75L,ppo,54,10.8,omega,front,-0.008779053576290607 +illusion_0.75L,ppo,54,10.8,omega,upper,-0.008115927688777447 +illusion_0.75L,ppo,54,10.8,omega,lower,0.020272862166166306 +illusion_0.75L,ppo,55,11.0,omega,front,-0.009563961997628212 +illusion_0.75L,ppo,55,11.0,omega,upper,-0.008560288697481155 +illusion_0.75L,ppo,55,11.0,omega,lower,0.01956823654472828 +illusion_0.75L,ppo,56,11.2,omega,front,-0.010189554654061794 +illusion_0.75L,ppo,56,11.2,omega,upper,-0.009369991719722748 +illusion_0.75L,ppo,56,11.2,omega,lower,0.01884979009628296 +illusion_0.75L,ppo,57,11.4,omega,front,-0.01067742332816124 +illusion_0.75L,ppo,57,11.4,omega,upper,-0.01061961892992258 +illusion_0.75L,ppo,57,11.4,omega,lower,0.018032178282737732 +illusion_0.75L,ppo,58,11.6,omega,front,-0.011117012239992619 +illusion_0.75L,ppo,58,11.6,omega,upper,-0.012030611746013165 +illusion_0.75L,ppo,58,11.6,omega,lower,0.017137164250016212 +illusion_0.75L,ppo,59,11.8,omega,front,-0.011577075347304344 +illusion_0.75L,ppo,59,11.8,omega,upper,-0.013462328352034092 +illusion_0.75L,ppo,59,11.8,omega,lower,0.01623893901705742 +illusion_0.75L,ppo,60,12.0,omega,front,-0.01195337064564228 +illusion_0.75L,ppo,60,12.0,omega,upper,-0.015169319696724415 +illusion_0.75L,ppo,60,12.0,omega,lower,0.015321805141866207 +illusion_0.75L,ppo,61,12.2,omega,front,-0.012460692785680294 +illusion_0.75L,ppo,61,12.2,omega,upper,-0.016713017597794533 +illusion_0.75L,ppo,61,12.2,omega,lower,0.014308594167232513 +illusion_0.75L,ppo,62,12.4,omega,front,-0.01273949071764946 +illusion_0.75L,ppo,62,12.4,omega,upper,-0.01810573600232601 +illusion_0.75L,ppo,62,12.4,omega,lower,0.013493232429027557 +illusion_0.75L,ppo,63,12.6,omega,front,-0.012821882963180542 +illusion_0.75L,ppo,63,12.6,omega,upper,-0.01926550082862377 +illusion_0.75L,ppo,63,12.6,omega,lower,0.012908833101391792 +illusion_0.75L,ppo,64,12.8,omega,front,-0.01277262531220913 +illusion_0.75L,ppo,64,12.8,omega,upper,-0.020065318793058395 +illusion_0.75L,ppo,64,12.8,omega,lower,0.012535803020000458 +illusion_0.75L,ppo,65,13.0,omega,front,-0.012428189627826214 +illusion_0.75L,ppo,65,13.0,omega,upper,-0.02052631415426731 +illusion_0.75L,ppo,65,13.0,omega,lower,0.012696574442088604 +illusion_0.75L,ppo,66,13.2,omega,front,-0.01190186571329832 +illusion_0.75L,ppo,66,13.2,omega,upper,-0.02062026783823967 +illusion_0.75L,ppo,66,13.2,omega,lower,0.013326742686331272 +illusion_0.75L,ppo,67,13.4,omega,front,-0.012260126881301403 +illusion_0.75L,ppo,67,13.4,omega,upper,-0.019464785233139992 +illusion_0.75L,ppo,67,13.4,omega,lower,0.013778005726635456 +illusion_0.75L,ppo,68,13.6,omega,front,-0.01275559887290001 +illusion_0.75L,ppo,68,13.6,omega,upper,-0.0173303484916687 +illusion_0.75L,ppo,68,13.6,omega,lower,0.014473987743258476 +illusion_0.75L,ppo,69,13.8,omega,front,-0.013662932440638542 +illusion_0.75L,ppo,69,13.8,omega,upper,-0.014332166872918606 +illusion_0.75L,ppo,69,13.8,omega,lower,0.015112056396901608 +illusion_0.75L,ppo,70,14.0,omega,front,-0.014659708365797997 +illusion_0.75L,ppo,70,14.0,omega,upper,-0.011020328849554062 +illusion_0.75L,ppo,70,14.0,omega,lower,0.01582462713122368 +illusion_0.75L,ppo,71,14.2,omega,front,-0.015422570519149303 +illusion_0.75L,ppo,71,14.2,omega,upper,-0.007936801761388779 +illusion_0.75L,ppo,71,14.2,omega,lower,0.016746804118156433 +illusion_0.75L,ppo,72,14.4,omega,front,-0.015715092420578003 +illusion_0.75L,ppo,72,14.4,omega,upper,-0.005733182188123465 +illusion_0.75L,ppo,72,14.4,omega,lower,0.017799926921725273 +illusion_0.75L,ppo,73,14.6,omega,front,-0.015532235614955425 +illusion_0.75L,ppo,73,14.6,omega,upper,-0.004332517273724079 +illusion_0.75L,ppo,73,14.6,omega,lower,0.01905427686870098 +illusion_0.75L,ppo,74,14.8,omega,front,-0.014900718815624714 +illusion_0.75L,ppo,74,14.8,omega,upper,-0.0038969169836491346 +illusion_0.75L,ppo,74,14.8,omega,lower,0.02039278857409954 +illusion_0.75L,ppo,75,15.0,omega,front,-0.014183023944497108 +illusion_0.75L,ppo,75,15.0,omega,upper,-0.004159494768828154 +illusion_0.75L,ppo,75,15.0,omega,lower,0.021531131118535995 +illusion_0.75L,ppo,76,15.2,omega,front,-0.013263669796288013 +illusion_0.75L,ppo,76,15.2,omega,upper,-0.004998806398361921 +illusion_0.75L,ppo,76,15.2,omega,lower,0.022664397954940796 +illusion_0.75L,ppo,77,15.4,omega,front,-0.012563162483274937 +illusion_0.75L,ppo,77,15.4,omega,upper,-0.006205472629517317 +illusion_0.75L,ppo,77,15.4,omega,lower,0.023512354120612144 +illusion_0.75L,ppo,78,15.6,omega,front,-0.011945490725338459 +illusion_0.75L,ppo,78,15.6,omega,upper,-0.007258840836584568 +illusion_0.75L,ppo,78,15.6,omega,lower,0.024017754942178726 +illusion_0.75L,ppo,79,15.8,omega,front,-0.011389502324163914 +illusion_0.75L,ppo,79,15.8,omega,upper,-0.008429698646068573 +illusion_0.75L,ppo,79,15.8,omega,lower,0.02437494695186615 +illusion_0.75L,ppo,80,16.0,omega,front,-0.010894201695919037 +illusion_0.75L,ppo,80,16.0,omega,upper,-0.009098714217543602 +illusion_0.75L,ppo,80,16.0,omega,lower,0.02464872971177101 +illusion_0.75L,ppo,81,16.2,omega,front,-0.0101652592420578 +illusion_0.75L,ppo,81,16.2,omega,upper,-0.00971113983541727 +illusion_0.75L,ppo,81,16.2,omega,lower,0.024834413081407547 +illusion_0.75L,ppo,82,16.4,omega,front,-0.009410570375621319 +illusion_0.75L,ppo,82,16.4,omega,upper,-0.010161332786083221 +illusion_0.75L,ppo,82,16.4,omega,lower,0.02478768117725849 +illusion_0.75L,ppo,83,16.6,omega,front,-0.008635088801383972 +illusion_0.75L,ppo,83,16.6,omega,upper,-0.010584968142211437 +illusion_0.75L,ppo,83,16.6,omega,lower,0.02448282204568386 +illusion_0.75L,ppo,84,16.8,omega,front,-0.008432004600763321 +illusion_0.75L,ppo,84,16.8,omega,upper,-0.01111870538443327 +illusion_0.75L,ppo,84,16.8,omega,lower,0.0234538521617651 +illusion_0.75L,ppo,85,17.0,omega,front,-0.008442235179245472 +illusion_0.75L,ppo,85,17.0,omega,upper,-0.01162573043256998 +illusion_0.75L,ppo,85,17.0,omega,lower,0.022188495844602585 +illusion_0.75L,ppo,86,17.2,omega,front,-0.008822950534522533 +illusion_0.75L,ppo,86,17.2,omega,upper,-0.012193696573376656 +illusion_0.75L,ppo,86,17.2,omega,lower,0.02064833790063858 +illusion_0.75L,ppo,87,17.4,omega,front,-0.010007919743657112 +illusion_0.75L,ppo,87,17.4,omega,upper,-0.012810580432415009 +illusion_0.75L,ppo,87,17.4,omega,lower,0.018578318879008293 +illusion_0.75L,ppo,88,17.6,omega,front,-0.011230750009417534 +illusion_0.75L,ppo,88,17.6,omega,upper,-0.013498231768608093 +illusion_0.75L,ppo,88,17.6,omega,lower,0.016665462404489517 +illusion_0.75L,ppo,89,17.8,omega,front,-0.012259814888238907 +illusion_0.75L,ppo,89,17.8,omega,upper,-0.014487039297819138 +illusion_0.75L,ppo,89,17.8,omega,lower,0.014958949759602547 +illusion_0.75L,ppo,90,18.0,omega,front,-0.012991183437407017 +illusion_0.75L,ppo,90,18.0,omega,upper,-0.01560172624886036 +illusion_0.75L,ppo,90,18.0,omega,lower,0.013634519651532173 +illusion_0.75L,ppo,91,18.2,omega,front,-0.013487421907484531 +illusion_0.75L,ppo,91,18.2,omega,upper,-0.01679396629333496 +illusion_0.75L,ppo,91,18.2,omega,lower,0.012567664496600628 +illusion_0.75L,ppo,92,18.4,omega,front,-0.013729282654821873 +illusion_0.75L,ppo,92,18.4,omega,upper,-0.017975997179746628 +illusion_0.75L,ppo,92,18.4,omega,lower,0.011826862581074238 +illusion_0.75L,ppo,93,18.6,omega,front,-0.013705904595553875 +illusion_0.75L,ppo,93,18.6,omega,upper,-0.019069576635956764 +illusion_0.75L,ppo,93,18.6,omega,lower,0.011470497585833073 +illusion_0.75L,ppo,94,18.8,omega,front,-0.013242565095424652 +illusion_0.75L,ppo,94,18.8,omega,upper,-0.019977258518338203 +illusion_0.75L,ppo,94,18.8,omega,lower,0.01158355176448822 +illusion_0.75L,ppo,95,19.0,omega,front,-0.012918432243168354 +illusion_0.75L,ppo,95,19.0,omega,upper,-0.02058085799217224 +illusion_0.75L,ppo,95,19.0,omega,lower,0.011715583503246307 +illusion_0.75L,ppo,96,19.2,omega,front,-0.012311633676290512 +illusion_0.75L,ppo,96,19.2,omega,upper,-0.02092648856341839 +illusion_0.75L,ppo,96,19.2,omega,lower,0.012257152236998081 +illusion_0.75L,ppo,97,19.4,omega,front,-0.011796736158430576 +illusion_0.75L,ppo,97,19.4,omega,upper,-0.020864784717559814 +illusion_0.75L,ppo,97,19.4,omega,lower,0.012903960421681404 +illusion_0.75L,ppo,98,19.6,omega,front,-0.011393946595489979 +illusion_0.75L,ppo,98,19.6,omega,upper,-0.019945261999964714 +illusion_0.75L,ppo,98,19.6,omega,lower,0.013866622000932693 +illusion_0.75L,ppo,99,19.8,omega,front,-0.011461535468697548 +illusion_0.75L,ppo,99,19.8,omega,upper,-0.017619095742702484 +illusion_0.75L,ppo,99,19.8,omega,lower,0.014883729629218578 +illusion_0.75L,ppo,100,20.0,omega,front,-0.011859886348247528 +illusion_0.75L,ppo,100,20.0,omega,upper,-0.014183076098561287 +illusion_0.75L,ppo,100,20.0,omega,lower,0.015972711145877838 +illusion_0.75L,ppo,101,20.2,omega,front,-0.01263070572167635 +illusion_0.75L,ppo,101,20.2,omega,upper,-0.01060874480754137 +illusion_0.75L,ppo,101,20.2,omega,lower,0.01682400144636631 +illusion_0.75L,ppo,102,20.4,omega,front,-0.013351688161492348 +illusion_0.75L,ppo,102,20.4,omega,upper,-0.007050404325127602 +illusion_0.75L,ppo,102,20.4,omega,lower,0.017816146835684776 +illusion_0.75L,ppo,103,20.6,omega,front,-0.013669448904693127 +illusion_0.75L,ppo,103,20.6,omega,upper,-0.004151593428105116 +illusion_0.75L,ppo,103,20.6,omega,lower,0.019098332151770592 +illusion_0.75L,ppo,104,20.8,omega,front,-0.013539656065404415 +illusion_0.75L,ppo,104,20.8,omega,upper,-0.0023086629807949066 +illusion_0.75L,ppo,104,20.8,omega,lower,0.020556971430778503 +illusion_0.75L,ppo,105,21.0,omega,front,-0.012851264327764511 +illusion_0.75L,ppo,105,21.0,omega,upper,-0.001512048183940351 +illusion_0.75L,ppo,105,21.0,omega,lower,0.02225486934185028 +illusion_0.75L,ppo,106,21.2,omega,front,-0.012173962779343128 +illusion_0.75L,ppo,106,21.2,omega,upper,-0.0016565584810450673 +illusion_0.75L,ppo,106,21.2,omega,lower,0.023737097159028053 +illusion_0.75L,ppo,107,21.4,omega,front,-0.011008204892277718 +illusion_0.75L,ppo,107,21.4,omega,upper,-0.0025903594214469194 +illusion_0.75L,ppo,107,21.4,omega,lower,0.025374697521328926 +illusion_0.75L,ppo,108,21.6,omega,front,-0.010706143453717232 +illusion_0.75L,ppo,108,21.6,omega,upper,-0.004006486851722002 +illusion_0.75L,ppo,108,21.6,omega,lower,0.026016423478722572 +illusion_0.75L,ppo,109,21.8,omega,front,-0.010336258448660374 +illusion_0.75L,ppo,109,21.8,omega,upper,-0.00597126130014658 +illusion_0.75L,ppo,109,21.8,omega,lower,0.026428520679473877 +illusion_0.75L,ppo,110,22.0,omega,front,-0.009610109031200409 +illusion_0.75L,ppo,110,22.0,omega,upper,-0.008072664961218834 +illusion_0.75L,ppo,110,22.0,omega,lower,0.02689066156744957 +illusion_0.75L,ppo,111,22.2,omega,front,-0.00945685338228941 +illusion_0.75L,ppo,111,22.2,omega,upper,-0.01001782901585102 +illusion_0.75L,ppo,111,22.2,omega,lower,0.026530994102358818 +illusion_0.75L,ppo,112,22.4,omega,front,-0.00900354702025652 +illusion_0.75L,ppo,112,22.4,omega,upper,-0.011561364866793156 +illusion_0.75L,ppo,112,22.4,omega,lower,0.026083171367645264 +illusion_0.75L,ppo,113,22.6,omega,front,-0.008831298910081387 +illusion_0.75L,ppo,113,22.6,omega,upper,-0.012378538958728313 +illusion_0.75L,ppo,113,22.6,omega,lower,0.025092728435993195 +illusion_0.75L,ppo,114,22.8,omega,front,-0.008884227834641933 +illusion_0.75L,ppo,114,22.8,omega,upper,-0.01284086238592863 +illusion_0.75L,ppo,114,22.8,omega,lower,0.023567236959934235 +illusion_0.75L,ppo,115,23.0,omega,front,-0.009208585135638714 +illusion_0.75L,ppo,115,23.0,omega,upper,-0.012916174717247486 +illusion_0.75L,ppo,115,23.0,omega,lower,0.021683871746063232 +illusion_0.75L,ppo,116,23.2,omega,front,-0.01000767108052969 +illusion_0.75L,ppo,116,23.2,omega,upper,-0.012767910957336426 +illusion_0.75L,ppo,116,23.2,omega,lower,0.019448066130280495 +illusion_0.75L,ppo,117,23.4,omega,front,-0.011026931926608086 +illusion_0.75L,ppo,117,23.4,omega,upper,-0.012987160123884678 +illusion_0.75L,ppo,117,23.4,omega,lower,0.017260227352380753 +illusion_0.75L,ppo,118,23.6,omega,front,-0.012200518511235714 +illusion_0.75L,ppo,118,23.6,omega,upper,-0.013723833486437798 +illusion_0.75L,ppo,118,23.6,omega,lower,0.015262921340763569 +illusion_0.75L,ppo,119,23.8,omega,front,-0.013318119570612907 +illusion_0.75L,ppo,119,23.8,omega,upper,-0.014927382580935955 +illusion_0.75L,ppo,119,23.8,omega,lower,0.013577774167060852 +illusion_0.75L,ppo,120,24.0,omega,front,-0.01414206437766552 +illusion_0.75L,ppo,120,24.0,omega,upper,-0.016532640904188156 +illusion_0.75L,ppo,120,24.0,omega,lower,0.012249855324625969 +illusion_0.75L,ppo,121,24.2,omega,front,-0.014523572288453579 +illusion_0.75L,ppo,121,24.2,omega,upper,-0.018222060054540634 +illusion_0.75L,ppo,121,24.2,omega,lower,0.011393198743462563 +illusion_0.75L,ppo,122,24.4,omega,front,-0.014589548110961914 +illusion_0.75L,ppo,122,24.4,omega,upper,-0.019711989909410477 +illusion_0.75L,ppo,122,24.4,omega,lower,0.010900151915848255 +illusion_0.75L,ppo,123,24.6,omega,front,-0.014457852579653263 +illusion_0.75L,ppo,123,24.6,omega,upper,-0.020872335880994797 +illusion_0.75L,ppo,123,24.6,omega,lower,0.010667973197996616 +illusion_0.75L,ppo,124,24.8,omega,front,-0.013986364006996155 +illusion_0.75L,ppo,124,24.8,omega,upper,-0.02155173569917679 +illusion_0.75L,ppo,124,24.8,omega,lower,0.010938604362308979 +illusion_0.75L,ppo,125,25.0,omega,front,-0.01329431775957346 +illusion_0.75L,ppo,125,25.0,omega,upper,-0.02187832072377205 +illusion_0.75L,ppo,125,25.0,omega,lower,0.011594841256737709 +illusion_0.75L,ppo,126,25.2,omega,front,-0.012702831998467445 +illusion_0.75L,ppo,126,25.2,omega,upper,-0.021344944834709167 +illusion_0.75L,ppo,126,25.2,omega,lower,0.012619397602975368 +illusion_0.75L,ppo,127,25.4,omega,front,-0.01233643013983965 +illusion_0.75L,ppo,127,25.4,omega,upper,-0.020188018679618835 +illusion_0.75L,ppo,127,25.4,omega,lower,0.013744205236434937 +illusion_0.75L,ppo,128,25.6,omega,front,-0.012589983642101288 +illusion_0.75L,ppo,128,25.6,omega,upper,-0.017786456272006035 +illusion_0.75L,ppo,128,25.6,omega,lower,0.014826984144747257 +illusion_0.75L,ppo,129,25.8,omega,front,-0.013304335996508598 +illusion_0.75L,ppo,129,25.8,omega,upper,-0.014265508390963078 +illusion_0.75L,ppo,129,25.8,omega,lower,0.015857836231589317 +illusion_0.75L,ppo,130,26.0,omega,front,-0.014143175445497036 +illusion_0.75L,ppo,130,26.0,omega,upper,-0.01056494191288948 +illusion_0.75L,ppo,130,26.0,omega,lower,0.016846179962158203 +illusion_0.75L,ppo,131,26.2,omega,front,-0.014700779691338539 +illusion_0.75L,ppo,131,26.2,omega,upper,-0.007312042638659477 +illusion_0.75L,ppo,131,26.2,omega,lower,0.01797615736722946 +illusion_0.75L,ppo,132,26.4,omega,front,-0.014811461791396141 +illusion_0.75L,ppo,132,26.4,omega,upper,-0.0047967275604605675 +illusion_0.75L,ppo,132,26.4,omega,lower,0.01927497610449791 +illusion_0.75L,ppo,133,26.6,omega,front,-0.014433087781071663 +illusion_0.75L,ppo,133,26.6,omega,upper,-0.0031921635381877422 +illusion_0.75L,ppo,133,26.6,omega,lower,0.020673668012022972 +illusion_0.75L,ppo,134,26.8,omega,front,-0.013720777817070484 +illusion_0.75L,ppo,134,26.8,omega,upper,-0.0022377001587301493 +illusion_0.75L,ppo,134,26.8,omega,lower,0.022212406620383263 +illusion_0.75L,ppo,135,27.0,omega,front,-0.012691919691860676 +illusion_0.75L,ppo,135,27.0,omega,upper,-0.0023480236995965242 +illusion_0.75L,ppo,135,27.0,omega,lower,0.023669900372624397 +illusion_0.75L,ppo,136,27.2,omega,front,-0.011766965501010418 +illusion_0.75L,ppo,136,27.2,omega,upper,-0.002962543861940503 +illusion_0.75L,ppo,136,27.2,omega,lower,0.024950098246335983 +illusion_0.75L,ppo,137,27.4,omega,front,-0.010936282575130463 +illusion_0.75L,ppo,137,27.4,omega,upper,-0.004119522403925657 +illusion_0.75L,ppo,137,27.4,omega,lower,0.025966381654143333 +illusion_0.75L,ppo,138,27.6,omega,front,-0.010265341959893703 +illusion_0.75L,ppo,138,27.6,omega,upper,-0.005812905728816986 +illusion_0.75L,ppo,138,27.6,omega,lower,0.026636481285095215 +illusion_0.75L,ppo,139,27.8,omega,front,-0.009513973258435726 +illusion_0.75L,ppo,139,27.8,omega,upper,-0.0075844344682991505 +illusion_0.75L,ppo,139,27.8,omega,lower,0.027196282520890236 +illusion_0.75L,ppo,140,28.0,omega,front,-0.00879353005439043 +illusion_0.75L,ppo,140,28.0,omega,upper,-0.009273326955735683 +illusion_0.75L,ppo,140,28.0,omega,lower,0.027396708726882935 +illusion_0.75L,ppo,141,28.2,omega,front,-0.008273481391370296 +illusion_0.75L,ppo,141,28.2,omega,upper,-0.010788734070956707 +illusion_0.75L,ppo,141,28.2,omega,lower,0.02699531801044941 +illusion_0.75L,ppo,142,28.4,omega,front,-0.007992279715836048 +illusion_0.75L,ppo,142,28.4,omega,upper,-0.011784338392317295 +illusion_0.75L,ppo,142,28.4,omega,lower,0.026030905544757843 +illusion_0.75L,ppo,143,28.6,omega,front,-0.00791865773499012 +illusion_0.75L,ppo,143,28.6,omega,upper,-0.012044352479279041 +illusion_0.75L,ppo,143,28.6,omega,lower,0.02474769949913025 +illusion_0.75L,ppo,144,28.8,omega,front,-0.008343170396983624 +illusion_0.75L,ppo,144,28.8,omega,upper,-0.012218874879181385 +illusion_0.75L,ppo,144,28.8,omega,lower,0.022643769159913063 +illusion_0.75L,ppo,145,29.0,omega,front,-0.009270139038562775 +illusion_0.75L,ppo,145,29.0,omega,upper,-0.012226619757711887 +illusion_0.75L,ppo,145,29.0,omega,lower,0.020238323137164116 +illusion_0.75L,ppo,146,29.2,omega,front,-0.01049506850540638 +illusion_0.75L,ppo,146,29.2,omega,upper,-0.01259809359908104 +illusion_0.75L,ppo,146,29.2,omega,lower,0.01786177046597004 +illusion_0.75L,ppo,147,29.4,omega,front,-0.011770975776016712 +illusion_0.75L,ppo,147,29.4,omega,upper,-0.013484151102602482 +illusion_0.75L,ppo,147,29.4,omega,lower,0.01581718772649765 +illusion_0.75L,ppo,148,29.6,omega,front,-0.012857737019658089 +illusion_0.75L,ppo,148,29.6,omega,upper,-0.01505259983241558 +illusion_0.75L,ppo,148,29.6,omega,lower,0.014115666970610619 +illusion_0.75L,ppo,149,29.8,omega,front,-0.013740367256104946 +illusion_0.75L,ppo,149,29.8,omega,upper,-0.016685310751199722 +illusion_0.75L,ppo,149,29.8,omega,lower,0.012761909514665604 +illusion_0.75L,ppo,150,30.0,omega,front,-0.01413292158395052 +illusion_0.75L,ppo,150,30.0,omega,upper,-0.01875048503279686 +illusion_0.75L,ppo,150,30.0,omega,lower,0.011734280735254288 +illusion_0.75L,ppo,151,30.2,omega,front,-0.014291939325630665 +illusion_0.75L,ppo,151,30.2,omega,upper,-0.020469700917601585 +illusion_0.75L,ppo,151,30.2,omega,lower,0.011038269847631454 +illusion_0.75L,ppo,152,30.4,omega,front,-0.014156748540699482 +illusion_0.75L,ppo,152,30.4,omega,upper,-0.021675817668437958 +illusion_0.75L,ppo,152,30.4,omega,lower,0.010714352130889893 +illusion_0.75L,ppo,153,30.6,omega,front,-0.013730003498494625 +illusion_0.75L,ppo,153,30.6,omega,upper,-0.022545048967003822 +illusion_0.75L,ppo,153,30.6,omega,lower,0.010791081003844738 +illusion_0.75L,ppo,154,30.8,omega,front,-0.013125975616276264 +illusion_0.75L,ppo,154,30.8,omega,upper,-0.02280542254447937 +illusion_0.75L,ppo,154,30.8,omega,lower,0.011375267058610916 +illusion_0.75L,ppo,155,31.0,omega,front,-0.012581502087414265 +illusion_0.75L,ppo,155,31.0,omega,upper,-0.022387778386473656 +illusion_0.75L,ppo,155,31.0,omega,lower,0.0123375179246068 +illusion_0.75L,ppo,156,31.2,omega,front,-0.012605126015841961 +illusion_0.75L,ppo,156,31.2,omega,upper,-0.02061769738793373 +illusion_0.75L,ppo,156,31.2,omega,lower,0.013401125557720661 +illusion_0.75L,ppo,157,31.4,omega,front,-0.013142015784978867 +illusion_0.75L,ppo,157,31.4,omega,upper,-0.01764735020697117 +illusion_0.75L,ppo,157,31.4,omega,lower,0.014506008476018906 +illusion_0.75L,ppo,158,31.6,omega,front,-0.014080665074288845 +illusion_0.75L,ppo,158,31.6,omega,upper,-0.0140922162681818 +illusion_0.75L,ppo,158,31.6,omega,lower,0.015508103184401989 +illusion_0.75L,ppo,159,31.8,omega,front,-0.014954131096601486 +illusion_0.75L,ppo,159,31.8,omega,upper,-0.010617866180837154 +illusion_0.75L,ppo,159,31.8,omega,lower,0.016628991812467575 +illusion_0.75L,ppo,160,32.0,omega,front,-0.015453722327947617 +illusion_0.75L,ppo,160,32.0,omega,upper,-0.007718163542449474 +illusion_0.75L,ppo,160,32.0,omega,lower,0.01785966195166111 +illusion_0.75L,ppo,161,32.2,omega,front,-0.015395652502775192 +illusion_0.75L,ppo,161,32.2,omega,upper,-0.0054818070493638515 +illusion_0.75L,ppo,161,32.2,omega,lower,0.019255157560110092 +illusion_0.75L,ppo,162,32.4,omega,front,-0.014900446869432926 +illusion_0.75L,ppo,162,32.4,omega,upper,-0.0039783501997590065 +illusion_0.75L,ppo,162,32.4,omega,lower,0.020697040483355522 +illusion_0.75L,ppo,163,32.6,omega,front,-0.014182300306856632 +illusion_0.75L,ppo,163,32.6,omega,upper,-0.0031691587064415216 +illusion_0.75L,ppo,163,32.6,omega,lower,0.022033128887414932 +illusion_0.75L,ppo,164,32.8,omega,front,-0.013296968303620815 +illusion_0.75L,ppo,164,32.8,omega,upper,-0.0031699729152023792 +illusion_0.75L,ppo,164,32.8,omega,lower,0.023279165849089622 +illusion_0.75L,ppo,165,33.0,omega,front,-0.012090620584785938 +illusion_0.75L,ppo,165,33.0,omega,upper,-0.003576940158382058 +illusion_0.75L,ppo,165,33.0,omega,lower,0.02476869709789753 +illusion_0.75L,ppo,166,33.2,omega,front,-0.011537166312336922 +illusion_0.75L,ppo,166,33.2,omega,upper,-0.00445898761972785 +illusion_0.75L,ppo,166,33.2,omega,lower,0.02557186782360077 +illusion_0.75L,ppo,167,33.4,omega,front,-0.010791081003844738 +illusion_0.75L,ppo,167,33.4,omega,upper,-0.005818045232445002 +illusion_0.75L,ppo,167,33.4,omega,lower,0.0263363067060709 +illusion_0.75L,ppo,168,33.6,omega,front,-0.009935768321156502 +illusion_0.75L,ppo,168,33.6,omega,upper,-0.007350270636379719 +illusion_0.75L,ppo,168,33.6,omega,lower,0.026994971558451653 +illusion_0.75L,ppo,169,33.8,omega,front,-0.009026499465107918 +illusion_0.75L,ppo,169,33.8,omega,upper,-0.008885896764695644 +illusion_0.75L,ppo,169,33.8,omega,lower,0.027372734621167183 +illusion_0.75L,ppo,170,34.0,omega,front,-0.008245077915489674 +illusion_0.75L,ppo,170,34.0,omega,upper,-0.010234495624899864 +illusion_0.75L,ppo,170,34.0,omega,lower,0.027224596589803696 +illusion_0.75L,ppo,171,34.2,omega,front,-0.007696592714637518 +illusion_0.75L,ppo,171,34.2,omega,upper,-0.011046137660741806 +illusion_0.75L,ppo,171,34.2,omega,lower,0.026551999151706696 +illusion_0.75L,ppo,172,34.4,omega,front,-0.007544892840087414 +illusion_0.75L,ppo,172,34.4,omega,upper,-0.011493676342070103 +illusion_0.75L,ppo,172,34.4,omega,lower,0.025156516581773758 +illusion_0.75L,ppo,173,34.6,omega,front,-0.00793053675442934 +illusion_0.75L,ppo,173,34.6,omega,upper,-0.011475141160190105 +illusion_0.75L,ppo,173,34.6,omega,lower,0.02320004440844059 +illusion_0.75L,ppo,174,34.8,omega,front,-0.008810576982796192 +illusion_0.75L,ppo,174,34.8,omega,upper,-0.011538754217326641 +illusion_0.75L,ppo,174,34.8,omega,lower,0.020853795111179352 +illusion_0.75L,ppo,175,35.0,omega,front,-0.010017886757850647 +illusion_0.75L,ppo,175,35.0,omega,upper,-0.011995034292340279 +illusion_0.75L,ppo,175,35.0,omega,lower,0.018577836453914642 +illusion_0.75L,ppo,176,35.2,omega,front,-0.01126185990869999 +illusion_0.75L,ppo,176,35.2,omega,upper,-0.013167152181267738 +illusion_0.75L,ppo,176,35.2,omega,lower,0.016586361452937126 +illusion_0.75L,ppo,177,35.4,omega,front,-0.012404639273881912 +illusion_0.75L,ppo,177,35.4,omega,upper,-0.014939297921955585 +illusion_0.75L,ppo,177,35.4,omega,lower,0.014831352047622204 +illusion_0.75L,ppo,178,35.6,omega,front,-0.01327573973685503 +illusion_0.75L,ppo,178,35.6,omega,upper,-0.01692337542772293 +illusion_0.75L,ppo,178,35.6,omega,lower,0.013367385603487492 +illusion_0.75L,ppo,179,35.8,omega,front,-0.01380275096744299 +illusion_0.75L,ppo,179,35.8,omega,upper,-0.018850352615118027 +illusion_0.75L,ppo,179,35.8,omega,lower,0.012204034253954887 +illusion_0.75L,ppo,180,36.0,omega,front,-0.014063919894397259 +illusion_0.75L,ppo,180,36.0,omega,upper,-0.020506329834461212 +illusion_0.75L,ppo,180,36.0,omega,lower,0.011309263296425343 +illusion_0.75L,ppo,181,36.2,omega,front,-0.013981906697154045 +illusion_0.75L,ppo,181,36.2,omega,upper,-0.021801577880978584 +illusion_0.75L,ppo,181,36.2,omega,lower,0.010811202228069305 +illusion_0.75L,ppo,182,36.4,omega,front,-0.013541840948164463 +illusion_0.75L,ppo,182,36.4,omega,upper,-0.022688521072268486 +illusion_0.75L,ppo,182,36.4,omega,lower,0.010845748707652092 +illusion_0.75L,ppo,183,36.6,omega,front,-0.01290531363338232 +illusion_0.75L,ppo,183,36.6,omega,upper,-0.02304609678685665 +illusion_0.75L,ppo,183,36.6,omega,lower,0.011399708688259125 +illusion_0.75L,ppo,184,36.8,omega,front,-0.012521709315478802 +illusion_0.75L,ppo,184,36.8,omega,upper,-0.02237253077328205 +illusion_0.75L,ppo,184,36.8,omega,lower,0.012324372306466103 +illusion_0.75L,ppo,185,37.0,omega,front,-0.012725405395030975 +illusion_0.75L,ppo,185,37.0,omega,upper,-0.020583299919962883 +illusion_0.75L,ppo,185,37.0,omega,lower,0.013310463167726994 +illusion_0.75L,ppo,186,37.2,omega,front,-0.013579556718468666 +illusion_0.75L,ppo,186,37.2,omega,upper,-0.017744431272149086 +illusion_0.75L,ppo,186,37.2,omega,lower,0.014214497059583664 +illusion_0.75L,ppo,187,37.4,omega,front,-0.014657731167972088 +illusion_0.75L,ppo,187,37.4,omega,upper,-0.01431290153414011 +illusion_0.75L,ppo,187,37.4,omega,lower,0.01527145504951477 +illusion_0.75L,ppo,188,37.6,omega,front,-0.01546443346887827 +illusion_0.75L,ppo,188,37.6,omega,upper,-0.011255051009356976 +illusion_0.75L,ppo,188,37.6,omega,lower,0.01645643450319767 +illusion_0.75L,ppo,189,37.8,omega,front,-0.015947170555591583 +illusion_0.75L,ppo,189,37.8,omega,upper,-0.008617900311946869 +illusion_0.75L,ppo,189,37.8,omega,lower,0.01771264709532261 +illusion_0.75L,ppo,190,38.0,omega,front,-0.015958677977323532 +illusion_0.75L,ppo,190,38.0,omega,upper,-0.0064913127571344376 +illusion_0.75L,ppo,190,38.0,omega,lower,0.0190016720443964 +illusion_0.75L,ppo,191,38.2,omega,front,-0.015617760829627514 +illusion_0.75L,ppo,191,38.2,omega,upper,-0.0049841986037790775 +illusion_0.75L,ppo,191,38.2,omega,lower,0.020199306309223175 +illusion_0.75L,ppo,192,38.4,omega,front,-0.01493614912033081 +illusion_0.75L,ppo,192,38.4,omega,upper,-0.004049467854201794 +illusion_0.75L,ppo,192,38.4,omega,lower,0.021466676145792007 +illusion_0.75L,ppo,193,38.6,omega,front,-0.014085778966546059 +illusion_0.75L,ppo,193,38.6,omega,upper,-0.0036332642193883657 +illusion_0.75L,ppo,193,38.6,omega,lower,0.02274862304329872 +illusion_0.75L,ppo,194,38.8,omega,front,-0.01312157604843378 +illusion_0.75L,ppo,194,38.8,omega,upper,-0.003923665266484022 +illusion_0.75L,ppo,194,38.8,omega,lower,0.023964809253811836 +illusion_0.75L,ppo,195,39.0,omega,front,-0.012244481593370438 +illusion_0.75L,ppo,195,39.0,omega,upper,-0.004655478987842798 +illusion_0.75L,ppo,195,39.0,omega,lower,0.02504039742052555 +illusion_0.75L,ppo,196,39.2,omega,front,-0.011284459382295609 +illusion_0.75L,ppo,196,39.2,omega,upper,-0.0059005459770560265 +illusion_0.75L,ppo,196,39.2,omega,lower,0.02595427632331848 +illusion_0.75L,ppo,197,39.4,omega,front,-0.010317272506654263 +illusion_0.75L,ppo,197,39.4,omega,upper,-0.007137814536690712 +illusion_0.75L,ppo,197,39.4,omega,lower,0.026811473071575165 +illusion_0.75L,ppo,198,39.6,omega,front,-0.009301207959651947 +illusion_0.75L,ppo,198,39.6,omega,upper,-0.008556261658668518 +illusion_0.75L,ppo,198,39.6,omega,lower,0.027317466214299202 +illusion_0.75L,ppo,199,39.8,omega,front,-0.008398332633078098 +illusion_0.75L,ppo,199,39.8,omega,upper,-0.009862956590950489 +illusion_0.75L,ppo,199,39.8,omega,lower,0.02733338624238968 +illusion_0.75L,ppo,0,0.0,target_force,target_cd,0.004319529980421066 +illusion_0.75L,ppo,0,0.0,target_force,target_cl,-0.0008264546049758792 +illusion_0.75L,ppo,1,0.2,target_force,target_cd,0.004298923537135124 +illusion_0.75L,ppo,1,0.2,target_force,target_cl,-0.0006368796457536519 +illusion_0.75L,ppo,2,0.4,target_force,target_cd,0.0042830402962863445 +illusion_0.75L,ppo,2,0.4,target_force,target_cl,-0.0004196844238322228 +illusion_0.75L,ppo,3,0.6,target_force,target_cd,0.004272976890206337 +illusion_0.75L,ppo,3,0.6,target_force,target_cl,-0.0001839892938733101 +illusion_0.75L,ppo,4,0.8,target_force,target_cd,0.0042630089446902275 +illusion_0.75L,ppo,4,0.8,target_force,target_cl,6.024527465342544e-05 +illusion_0.75L,ppo,5,1.0,target_force,target_cd,0.004250259604305029 +illusion_0.75L,ppo,5,1.0,target_force,target_cl,0.0003025163896381855 +illusion_0.75L,ppo,6,1.2,target_force,target_cd,0.004240692127496004 +illusion_0.75L,ppo,6,1.2,target_force,target_cl,0.000532164704054594 +illusion_0.75L,ppo,7,1.4,target_force,target_cd,0.004244009964168072 +illusion_0.75L,ppo,7,1.4,target_force,target_cl,0.0007388596422970295 +illusion_0.75L,ppo,8,1.6,target_force,target_cd,0.004262932576239109 +illusion_0.75L,ppo,8,1.6,target_force,target_cl,0.0009131560800597072 +illusion_0.75L,ppo,9,1.8,target_force,target_cd,0.004288993775844574 +illusion_0.75L,ppo,9,1.8,target_force,target_cl,0.0010470576817169785 +illusion_0.75L,ppo,10,2.0,target_force,target_cd,0.004309842362999916 +illusion_0.75L,ppo,10,2.0,target_force,target_cl,0.0011345053790137172 +illusion_0.75L,ppo,11,2.2,target_force,target_cd,0.00432008970528841 +illusion_0.75L,ppo,11,2.2,target_force,target_cl,0.001171716838143766 +illusion_0.75L,ppo,12,2.4,target_force,target_cd,0.004323912318795919 +illusion_0.75L,ppo,12,2.4,target_force,target_cl,0.0011573332594707608 +illusion_0.75L,ppo,13,2.6,target_force,target_cd,0.004327163565903902 +illusion_0.75L,ppo,13,2.6,target_force,target_cl,0.0010923747904598713 +illusion_0.75L,ppo,14,2.8,target_force,target_cd,0.004328709561377764 +illusion_0.75L,ppo,14,2.8,target_force,target_cl,0.0009800454135984182 +illusion_0.75L,ppo,15,3.0,target_force,target_cd,0.004321355372667313 +illusion_0.75L,ppo,15,3.0,target_force,target_cl,0.0008254538988694549 +illusion_0.75L,ppo,16,3.2,target_force,target_cd,0.004301363602280617 +illusion_0.75L,ppo,16,3.2,target_force,target_cl,0.0006353163626044989 +illusion_0.75L,ppo,17,3.4,target_force,target_cd,0.00427533034235239 +illusion_0.75L,ppo,17,3.4,target_force,target_cl,0.0004176800139248371 +illusion_0.75L,ppo,18,3.6,target_force,target_cd,0.004255935084074736 +illusion_0.75L,ppo,18,3.6,target_force,target_cl,0.000181675044586882 +illusion_0.75L,ppo,19,3.8,target_force,target_cd,0.00425069872289896 +illusion_0.75L,ppo,19,3.8,target_force,target_cl,-6.273522740229964e-05 +illusion_0.75L,ppo,20,4.0,target_force,target_cd,0.004255966749042273 +illusion_0.75L,ppo,20,4.0,target_force,target_cl,-0.0003050520026590675 +illusion_0.75L,ppo,21,4.2,target_force,target_cd,0.0042625246569514275 +illusion_0.75L,ppo,21,4.2,target_force,target_cl,-0.0005346263060346246 +illusion_0.75L,ppo,22,4.4,target_force,target_cd,0.004266215488314629 +illusion_0.75L,ppo,22,4.4,target_force,target_cl,-0.0007411434198729694 +illusion_0.75L,ppo,23,4.6,target_force,target_cd,0.004271505866199732 +illusion_0.75L,ppo,23,4.6,target_force,target_cl,-0.000915178214199841 +illusion_0.75L,ppo,24,4.8,target_force,target_cd,0.00428431574255228 +illusion_0.75L,ppo,24,4.8,target_force,target_cl,-0.00104875722900033 +illusion_0.75L,ppo,25,5.0,target_force,target_cd,0.004302870947867632 +illusion_0.75L,ppo,25,5.0,target_force,target_cl,-0.0011358453193679452 +illusion_0.75L,ppo,26,5.2,target_force,target_cd,0.004317605402320623 +illusion_0.75L,ppo,26,5.2,target_force,target_cl,-0.001172684133052826 +illusion_0.75L,ppo,27,5.4,target_force,target_cd,0.0043205698020756245 +illusion_0.75L,ppo,27,5.4,target_force,target_cl,-0.0011579367564991117 +illusion_0.75L,ppo,28,5.6,target_force,target_cd,0.004313694778829813 +illusion_0.75L,ppo,28,5.6,target_force,target_cl,-0.0010926421964541078 +illusion_0.75L,ppo,29,5.8,target_force,target_cd,0.004306355491280556 +illusion_0.75L,ppo,29,5.8,target_force,target_cl,-0.0009800192201510072 +illusion_0.75L,ppo,30,6.0,target_force,target_cd,0.004304846283048391 +illusion_0.75L,ppo,30,6.0,target_force,target_cl,-0.000825186783913523 +illusion_0.75L,ppo,31,6.2,target_force,target_cd,0.004305643495172262 +illusion_0.75L,ppo,31,6.2,target_force,target_cl,-0.0006348655442707241 +illusion_0.75L,ppo,32,6.4,target_force,target_cd,0.004300057888031006 +illusion_0.75L,ppo,32,6.4,target_force,target_cl,-0.00041710209916345775 +illusion_0.75L,ppo,33,6.6,target_force,target_cd,0.004284902475774288 +illusion_0.75L,ppo,33,6.6,target_force,target_cl,-0.00018102116882801056 +illusion_0.75L,ppo,34,6.8,target_force,target_cd,0.004267012234777212 +illusion_0.75L,ppo,34,6.8,target_force,target_cl,6.342367123579606e-05 +illusion_0.75L,ppo,35,7.0,target_force,target_cd,0.004256516695022583 +illusion_0.75L,ppo,35,7.0,target_force,target_cl,0.00030574665288440883 +illusion_0.75L,ppo,36,7.2,target_force,target_cd,0.004256634972989559 +illusion_0.75L,ppo,36,7.2,target_force,target_cl,0.0005353140295483172 +illusion_0.75L,ppo,37,7.4,target_force,target_cd,0.004261587280780077 +illusion_0.75L,ppo,37,7.4,target_force,target_cl,0.0007418270106427372 +illusion_0.75L,ppo,38,7.6,target_force,target_cd,0.004264732822775841 +illusion_0.75L,ppo,38,7.6,target_force,target_cl,0.0009158758912235498 +illusion_0.75L,ppo,39,7.8,target_force,target_cd,0.004267173353582621 +illusion_0.75L,ppo,39,7.8,target_force,target_cl,0.0010495007736608386 +illusion_0.75L,ppo,40,8.0,target_force,target_cd,0.004276519641280174 +illusion_0.75L,ppo,40,8.0,target_force,target_cl,0.0011366773396730423 +illusion_0.75L,ppo,41,8.2,target_force,target_cd,0.0042969645000994205 +illusion_0.75L,ppo,41,8.2,target_force,target_cl,0.0011736537562683225 +illusion_0.75L,ppo,42,8.4,target_force,target_cd,0.004322068765759468 +illusion_0.75L,ppo,42,8.4,target_force,target_cl,0.0011590953217819333 +illusion_0.75L,ppo,43,8.6,target_force,target_cd,0.0043388912454247475 +illusion_0.75L,ppo,43,8.6,target_force,target_cl,0.0010940383654087782 +illusion_0.75L,ppo,44,8.8,target_force,target_cd,0.0043393815867602825 +illusion_0.75L,ppo,44,8.8,target_force,target_cl,0.0009816939709708095 +illusion_0.75L,ppo,45,9.0,target_force,target_cd,0.004326771479099989 +illusion_0.75L,ppo,45,9.0,target_force,target_cl,0.0008271691622212529 +illusion_0.75L,ppo,46,9.2,target_force,target_cd,0.00431040208786726 +illusion_0.75L,ppo,46,9.2,target_force,target_cl,0.0006371686467900872 +illusion_0.75L,ppo,47,9.4,target_force,target_cd,0.004295442719012499 +illusion_0.75L,ppo,47,9.4,target_force,target_cl,0.000419720628997311 +illusion_0.75L,ppo,48,9.6,target_force,target_cd,0.004279371351003647 +illusion_0.75L,ppo,48,9.6,target_force,target_cl,0.00018392973288428038 +illusion_0.75L,ppo,49,9.8,target_force,target_cd,0.004258827771991491 +illusion_0.75L,ppo,49,9.8,target_force,target_cl,-6.027074050507508e-05 +illusion_0.75L,ppo,50,10.0,target_force,target_cd,0.004238117020577192 +illusion_0.75L,ppo,50,10.0,target_force,target_cl,-0.0003024140023626387 +illusion_0.75L,ppo,51,10.2,target_force,target_cd,0.004228517413139343 +illusion_0.75L,ppo,51,10.2,target_force,target_cl,-0.0005318826879374683 +illusion_0.75L,ppo,52,10.4,target_force,target_cd,0.004238160792738199 +illusion_0.75L,ppo,52,10.4,target_force,target_cl,-0.0007383906049653888 +illusion_0.75L,ppo,53,10.6,target_force,target_cd,0.004263404291123152 +illusion_0.75L,ppo,53,10.6,target_force,target_cl,-0.0009125358774326742 +illusion_0.75L,ppo,54,10.8,target_force,target_cd,0.004291406832635403 +illusion_0.75L,ppo,54,10.8,target_force,target_cl,-0.0010463605867698789 +illusion_0.75L,ppo,55,11.0,target_force,target_cd,0.004311332944780588 +illusion_0.75L,ppo,55,11.0,target_force,target_cl,-0.001133836805820465 +illusion_0.75L,ppo,56,11.2,target_force,target_cd,0.004322164226323366 +illusion_0.75L,ppo,56,11.2,target_force,target_cl,-0.0011712028644979 +illusion_0.75L,ppo,57,11.4,target_force,target_cd,0.004329250659793615 +illusion_0.75L,ppo,57,11.4,target_force,target_cl,-0.0011571090435609221 +illusion_0.75L,ppo,58,11.6,target_force,target_cd,0.004334629978984594 +illusion_0.75L,ppo,58,11.6,target_force,target_cl,-0.0010925711831077933 +illusion_0.75L,ppo,59,11.8,target_force,target_cd,0.004332989454269409 +illusion_0.75L,ppo,59,11.8,target_force,target_cl,-0.000980776734650135 +illusion_0.75L,ppo,60,12.0,target_force,target_cd,0.004318186081945896 +illusion_0.75L,ppo,60,12.0,target_force,target_cl,-0.0008268061792477965 +illusion_0.75L,ppo,61,12.2,target_force,target_cd,0.004292580299079418 +illusion_0.75L,ppo,61,12.2,target_force,target_cl,-0.0006373370415531099 +illusion_0.75L,ppo,62,12.4,target_force,target_cd,0.004267786629498005 +illusion_0.75L,ppo,62,12.4,target_force,target_cl,-0.00042037077946588397 +illusion_0.75L,ppo,63,12.6,target_force,target_cd,0.00425508338958025 +illusion_0.75L,ppo,63,12.6,target_force,target_cl,-0.00018498743884265423 +illusion_0.75L,ppo,64,12.8,target_force,target_cd,0.004255630075931549 +illusion_0.75L,ppo,64,12.8,target_force,target_cl,5.890043030376546e-05 +illusion_0.75L,ppo,65,13.0,target_force,target_cd,0.004261116497218609 +illusion_0.75L,ppo,65,13.0,target_force,target_cl,0.00030084190075285733 +illusion_0.75L,ppo,66,13.2,target_force,target_cd,0.004263867158442736 +illusion_0.75L,ppo,66,13.2,target_force,target_cl,0.000530229473952204 +illusion_0.75L,ppo,67,13.4,target_force,target_cd,0.0042649442330002785 +illusion_0.75L,ppo,67,13.4,target_force,target_cl,0.0007367802900262177 +illusion_0.75L,ppo,68,13.6,target_force,target_cd,0.004271372687071562 +illusion_0.75L,ppo,68,13.6,target_force,target_cl,0.0009110886021517217 +illusion_0.75L,ppo,69,13.8,target_force,target_cd,0.004286208655685186 +illusion_0.75L,ppo,69,13.8,target_force,target_cl,0.0010451863054186106 +illusion_0.75L,ppo,70,14.0,target_force,target_cd,0.004303319379687309 +illusion_0.75L,ppo,70,14.0,target_force,target_cl,0.0011330286506563425 +illusion_0.75L,ppo,71,14.2,target_force,target_cd,0.004313130863010883 +illusion_0.75L,ppo,71,14.2,target_force,target_cl,0.001170832198113203 +illusion_0.75L,ppo,72,14.4,target_force,target_cd,0.004312781151384115 +illusion_0.75L,ppo,72,14.4,target_force,target_cl,0.0011572209186851978 +illusion_0.75L,ppo,73,14.6,target_force,target_cd,0.00430886959657073 +illusion_0.75L,ppo,73,14.6,target_force,target_cl,0.0010931824799627066 +illusion_0.75L,ppo,74,14.8,target_force,target_cd,0.004309443756937981 +illusion_0.75L,ppo,74,14.8,target_force,target_cl,0.0009818746475502849 +illusion_0.75L,ppo,75,15.0,target_force,target_cd,0.004314298741519451 +illusion_0.75L,ppo,75,15.0,target_force,target_cl,0.0008283493225462735 +illusion_0.75L,ppo,76,15.2,target_force,target_cd,0.004314756486564875 +illusion_0.75L,ppo,76,15.2,target_force,target_cl,0.0006392578361555934 +illusion_0.75L,ppo,77,15.4,target_force,target_cd,0.0043033817782998085 +illusion_0.75L,ppo,77,15.4,target_force,target_cl,0.00042257944005541503 +illusion_0.75L,ppo,78,15.6,target_force,target_cd,0.00428277300670743 +illusion_0.75L,ppo,78,15.6,target_force,target_cl,0.0001873774453997612 +illusion_0.75L,ppo,79,15.8,target_force,target_cd,0.004263593349605799 +illusion_0.75L,ppo,79,15.8,target_force,target_cl,-5.6446097005391493e-05 +illusion_0.75L,ppo,80,16.0,target_force,target_cd,0.004254181403666735 +illusion_0.75L,ppo,80,16.0,target_force,target_cl,-0.0002984438033308834 +illusion_0.75L,ppo,81,16.2,target_force,target_cd,0.004253479186445475 +illusion_0.75L,ppo,81,16.2,target_force,target_cl,-0.0005280044861137867 +illusion_0.75L,ppo,82,16.4,target_force,target_cd,0.004254919942468405 +illusion_0.75L,ppo,82,16.4,target_force,target_cl,-0.000734834757167846 +illusion_0.75L,ppo,83,16.6,target_force,target_cd,0.004256147891283035 +illusion_0.75L,ppo,83,16.6,target_force,target_cl,-0.0009095119894482195 +illusion_0.75L,ppo,84,16.8,target_force,target_cd,0.004262739326804876 +illusion_0.75L,ppo,84,16.8,target_force,target_cl,-0.001044045900925994 +illusion_0.75L,ppo,85,17.0,target_force,target_cd,0.0042811911553144455 +illusion_0.75L,ppo,85,17.0,target_force,target_cl,-0.0011323653161525726 +illusion_0.75L,ppo,86,17.2,target_force,target_cd,0.004309138748794794 +illusion_0.75L,ppo,86,17.2,target_force,target_cl,-0.0011706582736223936 +illusion_0.75L,ppo,87,17.4,target_force,target_cd,0.0043344078585505486 +illusion_0.75L,ppo,87,17.4,target_force,target_cl,-0.0011575192911550403 +illusion_0.75L,ppo,88,17.6,target_force,target_cd,0.004344752058386803 +illusion_0.75L,ppo,88,17.6,target_force,target_cl,-0.0010939073981717229 +illusion_0.75L,ppo,89,17.8,target_force,target_cd,0.004338088445365429 +illusion_0.75L,ppo,89,17.8,target_force,target_cl,-0.0009829543996602297 +illusion_0.75L,ppo,90,18.0,target_force,target_cd,0.004322429653257132 +illusion_0.75L,ppo,90,18.0,target_force,target_cl,-0.000829690252430737 +illusion_0.75L,ppo,91,18.2,target_force,target_cd,0.004306267015635967 +illusion_0.75L,ppo,91,18.2,target_force,target_cl,-0.0006407499895431101 +illusion_0.75L,ppo,92,18.4,target_force,target_cd,0.004290624521672726 +illusion_0.75L,ppo,92,18.4,target_force,target_cl,-0.00042410247260704637 +illusion_0.75L,ppo,93,18.6,target_force,target_cd,0.004271544981747866 +illusion_0.75L,ppo,93,18.6,target_force,target_cl,-0.00018880768038798124 +illusion_0.75L,ppo,94,18.8,target_force,target_cd,0.004249318968504667 +illusion_0.75L,ppo,94,18.8,target_force,target_cl,5.522884021047503e-05 +illusion_0.75L,ppo,95,19.0,target_force,target_cd,0.004232753999531269 +illusion_0.75L,ppo,95,19.0,target_force,target_cl,0.00029754950082860887 +illusion_0.75L,ppo,96,19.2,target_force,target_cd,0.004232520703226328 +illusion_0.75L,ppo,96,19.2,target_force,target_cl,0.0005275269504636526 +illusion_0.75L,ppo,97,19.4,target_force,target_cd,0.00425043236464262 +illusion_0.75L,ppo,97,19.4,target_force,target_cl,0.0007348464569076896 +illusion_0.75L,ppo,98,19.6,target_force,target_cd,0.004276684485375881 +illusion_0.75L,ppo,98,19.6,target_force,target_cl,0.000910060596652329 +illusion_0.75L,ppo,99,19.8,target_force,target_cd,0.004298476967960596 +illusion_0.75L,ppo,99,19.8,target_force,target_cl,0.001045151730068028 +illusion_0.75L,ppo,100,20.0,target_force,target_cd,0.004310819320380688 +illusion_0.75L,ppo,100,20.0,target_force,target_cl,0.0011340213241055608 +illusion_0.75L,ppo,101,20.2,target_force,target_cd,0.004318069666624069 +illusion_0.75L,ppo,101,20.2,target_force,target_cl,0.001172830117866397 +illusion_0.75L,ppo,102,20.4,target_force,target_cd,0.0043253907933831215 +illusion_0.75L,ppo,102,20.4,target_force,target_cl,0.0011601487640291452 +illusion_0.75L,ppo,103,20.6,target_force,target_cd,0.0043306476436555386 +illusion_0.75L,ppo,103,20.6,target_force,target_cl,0.0010969155700877309 +illusion_0.75L,ppo,104,20.8,target_force,target_cd,0.004326369613409042 +illusion_0.75L,ppo,104,20.8,target_force,target_cl,0.0009862470906227827 +illusion_0.75L,ppo,105,21.0,target_force,target_cd,0.004309413023293018 +illusion_0.75L,ppo,105,21.0,target_force,target_cl,0.0008331635617651045 +illusion_0.75L,ppo,106,21.2,target_force,target_cd,0.004286780022084713 +illusion_0.75L,ppo,106,21.2,target_force,target_cl,0.0006442960002459586 +illusion_0.75L,ppo,107,21.4,target_force,target_cd,0.004270263947546482 +illusion_0.75L,ppo,107,21.4,target_force,target_cl,0.00042761577060446143 +illusion_0.75L,ppo,108,21.6,target_force,target_cd,0.0042654587887227535 +illusion_0.75L,ppo,108,21.6,target_force,target_cl,0.00019219081150367856 +illusion_0.75L,ppo,109,21.8,target_force,target_cd,0.004267280455678701 +illusion_0.75L,ppo,109,21.8,target_force,target_cl,-5.2060313464608043e-05 +illusion_0.75L,ppo,110,22.0,target_force,target_cd,0.004266941454261541 +illusion_0.75L,ppo,110,22.0,target_force,target_cl,-0.00029466304113157094 +illusion_0.75L,ppo,111,22.2,target_force,target_cd,0.0042623914778232574 +illusion_0.75L,ppo,111,22.2,target_force,target_cl,-0.0005249702953733504 +illusion_0.75L,ppo,112,22.4,target_force,target_cd,0.0042604319751262665 +illusion_0.75L,ppo,112,22.4,target_force,target_cl,-0.0007326462655328214 +illusion_0.75L,ppo,113,22.6,target_force,target_cd,0.004268317017704248 +illusion_0.75L,ppo,113,22.6,target_force,target_cl,-0.0009082225151360035 +illusion_0.75L,ppo,114,22.8,target_force,target_cd,0.004284675698727369 +illusion_0.75L,ppo,114,22.8,target_force,target_cl,-0.0010436619631946087 +illusion_0.75L,ppo,115,23.0,target_force,target_cd,0.0043002585880458355 +illusion_0.75L,ppo,115,23.0,target_force,target_cl,-0.0011328490218147635 +illusion_0.75L,ppo,116,23.2,target_force,target_cd,0.004307628609240055 +illusion_0.75L,ppo,116,23.2,target_force,target_cl,-0.0011719316244125366 +illusion_0.75L,ppo,117,23.4,target_force,target_cd,0.004308593459427357 +illusion_0.75L,ppo,117,23.4,target_force,target_cl,-0.0011594714596867561 +illusion_0.75L,ppo,118,23.6,target_force,target_cd,0.004310824908316135 +illusion_0.75L,ppo,118,23.6,target_force,target_cl,-0.0010964034590870142 +illusion_0.75L,ppo,119,23.8,target_force,target_cd,0.004317633807659149 +illusion_0.75L,ppo,119,23.8,target_force,target_cl,-0.0009858451085165143 +illusion_0.75L,ppo,120,24.0,target_force,target_cd,0.0043228743597865105 +illusion_0.75L,ppo,120,24.0,target_force,target_cl,-0.0008328225230798125 +illusion_0.75L,ppo,121,24.2,target_force,target_cd,0.004317156504839659 +illusion_0.75L,ppo,121,24.2,target_force,target_cl,-0.0006439769640564919 +illusion_0.75L,ppo,122,24.4,target_force,target_cd,0.004298562649637461 +illusion_0.75L,ppo,122,24.4,target_force,target_cl,-0.00042729274719022214 +illusion_0.75L,ppo,123,24.6,target_force,target_cd,0.00427577830851078 +illusion_0.75L,ppo,123,24.6,target_force,target_cl,-0.00019185301789548248 +illusion_0.75L,ppo,124,24.8,target_force,target_cd,0.004260041750967503 +illusion_0.75L,ppo,124,24.8,target_force,target_cl,5.240777682047337e-05 +illusion_0.75L,ppo,125,25.0,target_force,target_cd,0.004254886880517006 +illusion_0.75L,ppo,125,25.0,target_force,target_cl,0.0002949997433461249 +illusion_0.75L,ppo,126,25.2,target_force,target_cd,0.004254963714629412 +illusion_0.75L,ppo,126,25.2,target_force,target_cl,0.0005252624396234751 +illusion_0.75L,ppo,127,25.4,target_force,target_cd,0.004254658240824938 +illusion_0.75L,ppo,127,25.4,target_force,target_cl,0.0007328497595153749 +illusion_0.75L,ppo,128,25.6,target_force,target_cd,0.0042560105212032795 +illusion_0.75L,ppo,128,25.6,target_force,target_cl,0.0009082869510166347 +illusion_0.75L,ppo,129,25.8,target_force,target_cd,0.004266428295522928 +illusion_0.75L,ppo,129,25.8,target_force,target_cl,0.0010435355361551046 +illusion_0.75L,ppo,130,26.0,target_force,target_cd,0.004288712982088327 +illusion_0.75L,ppo,130,26.0,target_force,target_cl,0.0011324833612889051 +illusion_0.75L,ppo,131,26.2,target_force,target_cd,0.004315109457820654 +illusion_0.75L,ppo,131,26.2,target_force,target_cl,0.0011712872656062245 +illusion_0.75L,ppo,132,26.4,target_force,target_cd,0.00433275755494833 +illusion_0.75L,ppo,132,26.4,target_force,target_cl,0.001158522441983223 +illusion_0.75L,ppo,133,26.6,target_force,target_cd,0.004335022531449795 +illusion_0.75L,ppo,133,26.6,target_force,target_cl,0.0010951414005830884 +illusion_0.75L,ppo,134,26.8,target_force,target_cd,0.0043264166451990604 +illusion_0.75L,ppo,134,26.8,target_force,target_cl,0.0009842822328209877 +illusion_0.75L,ppo,135,27.0,target_force,target_cd,0.0043160272762179375 +illusion_0.75L,ppo,135,27.0,target_force,target_cl,0.0008309936965815723 +illusion_0.75L,ppo,136,27.2,target_force,target_cd,0.0043072691187262535 +illusion_0.75L,ppo,136,27.2,target_force,target_cl,0.0006419395795091987 +illusion_0.75L,ppo,137,27.4,target_force,target_cd,0.004295652266591787 +illusion_0.75L,ppo,137,27.4,target_force,target_cl,0.0004251259670127183 +illusion_0.75L,ppo,138,27.6,target_force,target_cd,0.004276748280972242 +illusion_0.75L,ppo,138,27.6,target_force,target_cl,0.00018965487834066153 +illusion_0.75L,ppo,139,27.8,target_force,target_cd,0.004254611674696207 +illusion_0.75L,ppo,139,27.8,target_force,target_cl,-5.452429104479961e-05 +illusion_0.75L,ppo,140,28.0,target_force,target_cd,0.004240327514708042 +illusion_0.75L,ppo,140,28.0,target_force,target_cl,-0.0002969120687339455 +illusion_0.75L,ppo,141,28.2,target_force,target_cd,0.004241766408085823 +illusion_0.75L,ppo,141,28.2,target_force,target_cl,-0.0005268445238471031 +illusion_0.75L,ppo,142,28.4,target_force,target_cd,0.004255903884768486 +illusion_0.75L,ppo,142,28.4,target_force,target_cl,-0.0007339787553064525 +illusion_0.75L,ppo,143,28.6,target_force,target_cd,0.004272357560694218 +illusion_0.75L,ppo,143,28.6,target_force,target_cl,-0.0009088502265512943 +illusion_0.75L,ppo,144,28.8,target_force,target_cd,0.004284143913537264 +illusion_0.75L,ppo,144,28.8,target_force,target_cl,-0.001043437048792839 +illusion_0.75L,ppo,145,29.0,target_force,target_cd,0.004293560050427914 +illusion_0.75L,ppo,145,29.0,target_force,target_cl,-0.0011316501768305898 +illusion_0.75L,ppo,146,29.2,target_force,target_cd,0.004306826740503311 +illusion_0.75L,ppo,146,29.2,target_force,target_cl,-0.0011696739820763469 +illusion_0.75L,ppo,147,29.4,target_force,target_cd,0.004324088804423809 +illusion_0.75L,ppo,147,29.4,target_force,target_cl,-0.001156114973127842 +illusion_0.75L,ppo,148,29.6,target_force,target_cd,0.004336692858487368 +illusion_0.75L,ppo,148,29.6,target_force,target_cl,-0.001091959304176271 +illusion_0.75L,ppo,149,29.8,target_force,target_cd,0.004335253965109587 +illusion_0.75L,ppo,149,29.8,target_force,target_cl,-0.0009803788270801306 +illusion_0.75L,ppo,150,30.0,target_force,target_cd,0.004319529980421066 +illusion_0.75L,ppo,150,30.0,target_force,target_cl,-0.0008264546049758792 +illusion_0.75L,ppo,151,30.2,target_force,target_cd,0.004298923537135124 +illusion_0.75L,ppo,151,30.2,target_force,target_cl,-0.0006368796457536519 +illusion_0.75L,ppo,152,30.4,target_force,target_cd,0.0042830402962863445 +illusion_0.75L,ppo,152,30.4,target_force,target_cl,-0.0004196844238322228 +illusion_0.75L,ppo,153,30.6,target_force,target_cd,0.004272976890206337 +illusion_0.75L,ppo,153,30.6,target_force,target_cl,-0.0001839892938733101 +illusion_0.75L,ppo,154,30.8,target_force,target_cd,0.0042630089446902275 +illusion_0.75L,ppo,154,30.8,target_force,target_cl,6.024527465342544e-05 +illusion_0.75L,ppo,155,31.0,target_force,target_cd,0.004250259604305029 +illusion_0.75L,ppo,155,31.0,target_force,target_cl,0.0003025163896381855 +illusion_0.75L,ppo,156,31.2,target_force,target_cd,0.004240692127496004 +illusion_0.75L,ppo,156,31.2,target_force,target_cl,0.000532164704054594 +illusion_0.75L,ppo,157,31.4,target_force,target_cd,0.004244009964168072 +illusion_0.75L,ppo,157,31.4,target_force,target_cl,0.0007388596422970295 +illusion_0.75L,ppo,158,31.6,target_force,target_cd,0.004262932576239109 +illusion_0.75L,ppo,158,31.6,target_force,target_cl,0.0009131560800597072 +illusion_0.75L,ppo,159,31.8,target_force,target_cd,0.004288993775844574 +illusion_0.75L,ppo,159,31.8,target_force,target_cl,0.0010470576817169785 +illusion_0.75L,ppo,160,32.0,target_force,target_cd,0.004309842362999916 +illusion_0.75L,ppo,160,32.0,target_force,target_cl,0.0011345053790137172 +illusion_0.75L,ppo,161,32.2,target_force,target_cd,0.00432008970528841 +illusion_0.75L,ppo,161,32.2,target_force,target_cl,0.001171716838143766 +illusion_0.75L,ppo,162,32.4,target_force,target_cd,0.004323912318795919 +illusion_0.75L,ppo,162,32.4,target_force,target_cl,0.0011573332594707608 +illusion_0.75L,ppo,163,32.6,target_force,target_cd,0.004327163565903902 +illusion_0.75L,ppo,163,32.6,target_force,target_cl,0.0010923747904598713 +illusion_0.75L,ppo,164,32.8,target_force,target_cd,0.004328709561377764 +illusion_0.75L,ppo,164,32.8,target_force,target_cl,0.0009800454135984182 +illusion_0.75L,ppo,165,33.0,target_force,target_cd,0.004321355372667313 +illusion_0.75L,ppo,165,33.0,target_force,target_cl,0.0008254538988694549 +illusion_0.75L,ppo,166,33.2,target_force,target_cd,0.004301363602280617 +illusion_0.75L,ppo,166,33.2,target_force,target_cl,0.0006353163626044989 +illusion_0.75L,ppo,167,33.4,target_force,target_cd,0.00427533034235239 +illusion_0.75L,ppo,167,33.4,target_force,target_cl,0.0004176800139248371 +illusion_0.75L,ppo,168,33.6,target_force,target_cd,0.004255935084074736 +illusion_0.75L,ppo,168,33.6,target_force,target_cl,0.000181675044586882 +illusion_0.75L,ppo,169,33.8,target_force,target_cd,0.00425069872289896 +illusion_0.75L,ppo,169,33.8,target_force,target_cl,-6.273522740229964e-05 +illusion_0.75L,ppo,170,34.0,target_force,target_cd,0.004255966749042273 +illusion_0.75L,ppo,170,34.0,target_force,target_cl,-0.0003050520026590675 +illusion_0.75L,ppo,171,34.2,target_force,target_cd,0.0042625246569514275 +illusion_0.75L,ppo,171,34.2,target_force,target_cl,-0.0005346263060346246 +illusion_0.75L,ppo,172,34.4,target_force,target_cd,0.004266215488314629 +illusion_0.75L,ppo,172,34.4,target_force,target_cl,-0.0007411434198729694 +illusion_0.75L,ppo,173,34.6,target_force,target_cd,0.004271505866199732 +illusion_0.75L,ppo,173,34.6,target_force,target_cl,-0.000915178214199841 +illusion_0.75L,ppo,174,34.8,target_force,target_cd,0.00428431574255228 +illusion_0.75L,ppo,174,34.8,target_force,target_cl,-0.00104875722900033 +illusion_0.75L,ppo,175,35.0,target_force,target_cd,0.004302870947867632 +illusion_0.75L,ppo,175,35.0,target_force,target_cl,-0.0011358453193679452 +illusion_0.75L,ppo,176,35.2,target_force,target_cd,0.004317605402320623 +illusion_0.75L,ppo,176,35.2,target_force,target_cl,-0.001172684133052826 +illusion_0.75L,ppo,177,35.4,target_force,target_cd,0.0043205698020756245 +illusion_0.75L,ppo,177,35.4,target_force,target_cl,-0.0011579367564991117 +illusion_0.75L,ppo,178,35.6,target_force,target_cd,0.004313694778829813 +illusion_0.75L,ppo,178,35.6,target_force,target_cl,-0.0010926421964541078 +illusion_0.75L,ppo,179,35.8,target_force,target_cd,0.004306355491280556 +illusion_0.75L,ppo,179,35.8,target_force,target_cl,-0.0009800192201510072 +illusion_0.75L,ppo,180,36.0,target_force,target_cd,0.004304846283048391 +illusion_0.75L,ppo,180,36.0,target_force,target_cl,-0.000825186783913523 +illusion_0.75L,ppo,181,36.2,target_force,target_cd,0.004305643495172262 +illusion_0.75L,ppo,181,36.2,target_force,target_cl,-0.0006348655442707241 +illusion_0.75L,ppo,182,36.4,target_force,target_cd,0.004300057888031006 +illusion_0.75L,ppo,182,36.4,target_force,target_cl,-0.00041710209916345775 +illusion_0.75L,ppo,183,36.6,target_force,target_cd,0.004284902475774288 +illusion_0.75L,ppo,183,36.6,target_force,target_cl,-0.00018102116882801056 +illusion_0.75L,ppo,184,36.8,target_force,target_cd,0.004267012234777212 +illusion_0.75L,ppo,184,36.8,target_force,target_cl,6.342367123579606e-05 +illusion_0.75L,ppo,185,37.0,target_force,target_cd,0.004256516695022583 +illusion_0.75L,ppo,185,37.0,target_force,target_cl,0.00030574665288440883 +illusion_0.75L,ppo,186,37.2,target_force,target_cd,0.004256634972989559 +illusion_0.75L,ppo,186,37.2,target_force,target_cl,0.0005353140295483172 +illusion_0.75L,ppo,187,37.4,target_force,target_cd,0.004261587280780077 +illusion_0.75L,ppo,187,37.4,target_force,target_cl,0.0007418270106427372 +illusion_0.75L,ppo,188,37.6,target_force,target_cd,0.004264732822775841 +illusion_0.75L,ppo,188,37.6,target_force,target_cl,0.0009158758912235498 +illusion_0.75L,ppo,189,37.8,target_force,target_cd,0.004267173353582621 +illusion_0.75L,ppo,189,37.8,target_force,target_cl,0.0010495007736608386 +illusion_0.75L,ppo,190,38.0,target_force,target_cd,0.004276519641280174 +illusion_0.75L,ppo,190,38.0,target_force,target_cl,0.0011366773396730423 +illusion_0.75L,ppo,191,38.2,target_force,target_cd,0.0042969645000994205 +illusion_0.75L,ppo,191,38.2,target_force,target_cl,0.0011736537562683225 +illusion_0.75L,ppo,192,38.4,target_force,target_cd,0.004322068765759468 +illusion_0.75L,ppo,192,38.4,target_force,target_cl,0.0011590953217819333 +illusion_0.75L,ppo,193,38.6,target_force,target_cd,0.0043388912454247475 +illusion_0.75L,ppo,193,38.6,target_force,target_cl,0.0010940383654087782 +illusion_0.75L,ppo,194,38.8,target_force,target_cd,0.0043393815867602825 +illusion_0.75L,ppo,194,38.8,target_force,target_cl,0.0009816939709708095 +illusion_0.75L,ppo,195,39.0,target_force,target_cd,0.004326771479099989 +illusion_0.75L,ppo,195,39.0,target_force,target_cl,0.0008271691622212529 +illusion_0.75L,ppo,196,39.2,target_force,target_cd,0.00431040208786726 +illusion_0.75L,ppo,196,39.2,target_force,target_cl,0.0006371686467900872 +illusion_0.75L,ppo,197,39.4,target_force,target_cd,0.004295442719012499 +illusion_0.75L,ppo,197,39.4,target_force,target_cl,0.000419720628997311 +illusion_0.75L,ppo,198,39.6,target_force,target_cd,0.004279371351003647 +illusion_0.75L,ppo,198,39.6,target_force,target_cl,0.00018392973288428038 +illusion_0.75L,ppo,199,39.8,target_force,target_cd,0.004258827771991491 +illusion_0.75L,ppo,199,39.8,target_force,target_cl,-6.027074050507508e-05 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_manifest.json new file mode 100644 index 0000000..bfe3318 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_manifest.json @@ -0,0 +1,15 @@ +{ + "scene": "illusion_0.75L", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_0.75L/controlled.npz", + "sample_interval": 400, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_forces": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_wide.csv new file mode 100644 index 0000000..bdbaa93 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl +illusion_0.75L,ppo,0,0.0,1.062872290611267,0.2844725549221039,0.7817756533622742,0.514151394367218,0.9234325885772705,0.22595591843128204,0.001635126885958016,3.55204101651907e-05,0.0013451901031658053,0.00291387178003788,0.0012545323697850108,-0.003136727726086974,-1.5065715312957764,-0.9880693554878235,2.016491651535034,-0.015065714716911316,-0.00988069362938404,0.020164916291832924,0.00431953,-0.0008264546 +illusion_0.75L,ppo,1,0.2,0.970170259475708,0.3378361165523529,0.816997766494751,0.5074722170829773,0.9501234292984009,0.24790598452091217,0.00176312867552042,0.0004369427333585918,0.0012211347930133343,0.002841450972482562,0.001126140239648521,-0.0034476134460419416,-1.6681911945343018,-0.7293763160705566,2.021615505218506,-0.016681911423802376,-0.007293763104826212,0.02021615393459797,0.0042989235,-0.00063687965 +illusion_0.75L,ppo,2,0.4,0.8982132077217102,0.35587990283966064,0.8456646800041199,0.5097730159759521,0.9797688126564026,0.26779836416244507,0.0017976047238335013,0.0006286735879257321,0.0012511140666902065,0.0028064516372978687,0.0010458184406161308,-0.0037141412030905485,-1.7374014854431152,-1.0834306478500366,1.8133400678634644,-0.017374014481902122,-0.010834306478500366,0.01813340000808239,0.0042830403,-0.00041968442 +illusion_0.75L,ppo,3,0.6,0.8463174700737,0.34639641642570496,0.8675320148468018,0.5177527666091919,1.0103472471237183,0.28496116399765015,0.0018861029529944062,0.0008044134010560811,0.0012788396561518312,0.002906312234699726,0.0009574578725732863,-0.0038804756477475166,-1.8392200469970703,-1.3251702785491943,1.6840687990188599,-0.018392199650406837,-0.013251702301204205,0.01684068702161312,0.004272977,-0.0001839893 +illusion_0.75L,ppo,4,0.8,0.8096497058868408,0.3203834295272827,0.8839743733406067,0.528231143951416,1.042073369026184,0.29983147978782654,0.0020636918488889933,0.0009617903851903975,0.0013416932197287679,0.003035745583474636,0.0008443875703960657,-0.003952194936573505,-1.8610540628433228,-1.4893643856048584,1.6472628116607666,-0.01861054077744484,-0.01489364355802536,0.016472628340125084,0.004263009,6.0245275e-05 +illusion_0.75L,ppo,5,1.0,0.7815097570419312,0.2854216396808624,0.895355761051178,0.5381391048431396,1.0755915641784668,0.31252986192703247,0.0022132322192192078,0.001007769606076181,0.0014373385347425938,0.003140734974294901,0.0006240688380785286,-0.003964030649513006,-1.8109891414642334,-1.6231112480163574,1.684124231338501,-0.018109891563653946,-0.01623111218214035,0.016841242089867592,0.0042502596,0.0003025164 +illusion_0.75L,ppo,6,1.2,0.7577789425849915,0.2448502779006958,0.900479257106781,0.5424665212631226,1.1105802059173584,0.3229149878025055,0.002395238960161805,0.00100070727057755,0.0015764674171805382,0.0031941342167556286,0.0003417850530240685,-0.003963257186114788,-1.8178428411483765,-1.6393661499023438,1.6995607614517212,-0.0181784275919199,-0.016393661499023438,0.016995606943964958,0.004240692,0.0005321647 +illusion_0.75L,ppo,7,1.4,0.7372234463691711,0.1996011883020401,0.8976876735687256,0.5340266823768616,1.1473294496536255,0.3304975926876068,0.0026503491681069136,0.0009573642746545374,0.0017204855103045702,0.003184547182172537,1.8233391529065557e-05,-0.003942803014069796,-1.8307801485061646,-1.6425234079360962,1.7031728029251099,-0.018307801336050034,-0.016425233334302902,0.017031727358698845,0.00424401,0.00073885964 +illusion_0.75L,ppo,8,1.6,0.7219663858413696,0.15035387873649597,0.8859350681304932,0.5038349032402039,1.186540126800537,0.3348473012447357,0.002838890766724944,0.0009069018997251987,0.0018467078916728497,0.003167684655636549,-0.0003188663977198303,-0.003906534053385258,-1.8385695219039917,-1.6802536249160767,1.6755980253219604,-0.018385695293545723,-0.016802536323666573,0.016755979508161545,0.0042629326,0.0009131561 +illusion_0.75L,ppo,9,1.8,0.7146875262260437,0.09943869709968567,0.8640586733818054,0.44350677728652954,1.2277460098266602,0.33477360010147095,0.0030190064571797848,0.0008601483423262835,0.001944382325746119,0.0031813369132578373,-0.000646275351755321,-0.0038357421290129423,-1.834902048110962,-1.6648986339569092,1.6518371105194092,-0.018349019810557365,-0.01664898544549942,0.016518371179699898,0.004288994,0.0010470577 +illusion_0.75L,ppo,10,2.0,0.7180234789848328,0.05039156973361969,0.8327926397323608,0.3485560119152069,1.2701308727264404,0.32842838764190674,0.003122299909591675,0.0008843221585266292,0.0020197557751089334,0.003224823856726289,-0.0009480243897996843,-0.0037522558122873306,-1.782739520072937,-1.6057378053665161,1.6501456499099731,-0.017827395349740982,-0.01605737768113613,0.01650145649909973,0.0043098424,0.0011345054 +illusion_0.75L,ppo,11,2.2,0.7325096130371094,0.006594774778932333,0.7951617240905762,0.22098791599273682,1.311164140701294,0.3128725290298462,0.0031846421770751476,0.0008008952718228102,0.002092494396492839,0.003279233817011118,-0.0012174185831099749,-0.003646202152594924,-1.646913766860962,-1.497220516204834,1.7068884372711182,-0.016469137743115425,-0.014972205273807049,0.017068883404135704,0.0043200897,0.0011717168 +illusion_0.75L,ppo,12,2.4,0.7561736106872559,-0.03126642107963562,0.7560094594955444,0.06675231456756592,1.34690523147583,0.28297072649002075,0.003199318889528513,0.000792086124420166,0.0021513449028134346,0.0033260697964578867,-0.0014660372398793697,-0.003543945262208581,-1.5462419986724854,-1.3141679763793945,1.7347739934921265,-0.01546241994947195,-0.01314167957752943,0.01734774000942707,0.0043239123,0.0011573333 +illusion_0.75L,ppo,13,2.6,0.783738374710083,-0.06539444625377655,0.7211808562278748,-0.10112693160772324,1.369096279144287,0.2329113781452179,0.0031504107173532248,0.0008130324422381818,0.002189238788560033,0.0033522588200867176,-0.0016784570179879665,-0.003465831046923995,-1.3840023279190063,-1.1129295825958252,1.7967181205749512,-0.013840023428201675,-0.011129295453429222,0.017967181280255318,0.0043271636,0.0010923748 +illusion_0.75L,ppo,14,2.8,0.8115536570549011,-0.09846214205026627,0.6980757713317871,-0.2641013264656067,1.3681504726409912,0.15717625617980957,0.0030731239821761847,0.0008369989809580147,0.0022212513722479343,0.0033519756980240345,-0.0018403163412585855,-0.003437474137172103,-1.218949794769287,-0.8964970707893372,1.852542519569397,-0.012189497239887714,-0.008964970707893372,0.01852542534470558,0.0043287096,0.0009800454 +illusion_0.75L,ppo,15,3.0,0.8383539319038391,-0.13166198134422302,0.6935197710990906,-0.39813873171806335,1.335505485534668,0.05540081486105919,0.0029620903078466654,0.0008879602537490427,0.002243800088763237,0.0033172648400068283,-0.001945593161508441,-0.00346437213011086,-1.080613374710083,-0.6942176818847656,1.8843603134155273,-0.010806133970618248,-0.006942176725715399,0.018843602389097214,0.0043213554,0.0008254539 +illusion_0.75L,ppo,16,3.2,0.8650550246238708,-0.1637081503868103,0.7115615606307983,-0.48066142201423645,1.2700763940811157,-0.06309770792722702,0.002838564570993185,0.0009398239781148732,0.002279577311128378,0.0032518496736884117,-0.0019635434728115797,-0.0035527986474335194,-0.9759493470191956,-0.518761396408081,1.9003267288208008,-0.009759493172168732,-0.005187613889575005,0.019003266468644142,0.0043013636,0.00063531636 +illusion_0.75L,ppo,17,3.4,0.8922516703605652,-0.19320371747016907,0.7475188970565796,-0.5095161199569702,1.1797888278961182,-0.18042802810668945,0.002715574810281396,0.0010144925909116864,0.002320785541087389,0.003146651666611433,-0.0019018602324649692,-0.0036688444670289755,-0.9194991588592529,-0.3928608000278473,1.9103471040725708,-0.009194991551339626,-0.0039286077953875065,0.01910347118973732,0.0042753303,0.00041768 +illusion_0.75L,ppo,18,3.6,0.9217076301574707,-0.22067680954933167,0.7913557291030884,-0.507321298122406,1.0770549774169922,-0.27832266688346863,0.002489108359441161,0.0010941486107185483,0.0024296233896166086,0.0030356200877577066,-0.0018000431591644883,-0.0037749065086245537,-0.8864926099777222,-0.3279842138290405,1.9353972673416138,-0.008864926174283028,-0.003279841970652342,0.019353972747921944,0.004255935,0.00018167504 +illusion_0.75L,ppo,19,3.8,0.949574887752533,-0.242672398686409,0.8268330097198486,-0.5018881559371948,0.992016077041626,-0.3325606882572174,0.002527276985347271,0.0010932283475995064,0.002419949509203434,0.002874389523640275,-0.0015740128001198173,-0.003933606669306755,-0.8501306176185608,-0.19039571285247803,2.046015501022339,-0.008501306176185608,-0.001903957105241716,0.020460154861211777,0.0042506987,-6.273523e-05 +illusion_0.75L,ppo,20,4.0,0.9795073866844177,-0.26303181052207947,0.8560276627540588,-0.5030277967453003,0.9218151569366455,-0.35261374711990356,0.002465859754011035,0.0011090206680819392,0.0024756372440606356,0.0026955134235322475,-0.0013433791464194655,-0.004069081507623196,-0.8653786182403564,-0.41220954060554504,1.9948220252990723,-0.008653786033391953,-0.0041220951825380325,0.019948219880461693,0.0042559667,-0.000305052 +illusion_0.75L,ppo,21,4.2,1.0100655555725098,-0.2808694541454315,0.8781089186668396,-0.5103241801261902,0.8713051676750183,-0.3449153006076813,0.0024153748527169228,0.0011173515813425183,0.002492491388693452,0.0025974668096750975,-0.0010894197039306164,-0.004163021221756935,-0.8431166410446167,-0.5904022455215454,2.0280745029449463,-0.008431166410446167,-0.005904022138565779,0.02028074488043785,0.0042625247,-0.0005346263 +illusion_0.75L,ppo,22,4.4,1.0415102243423462,-0.2964867651462555,0.8946138620376587,-0.5208945274353027,0.8350192308425903,-0.32108113169670105,0.0023745845537632704,0.0010840686736628413,0.0024585567880421877,0.0025403830222785473,-0.0008675818098708987,-0.004247881472110748,-0.8029396533966064,-0.7557735443115234,2.083799362182617,-0.008029396645724773,-0.007557735312730074,0.020837992429733276,0.0042662155,-0.0007411434 +illusion_0.75L,ppo,23,4.6,1.074157953262329,-0.30984339118003845,0.9058464169502258,-0.5316174626350403,0.8063734173774719,-0.2887667417526245,0.002331237541511655,0.0010131665039807558,0.002390332752838731,0.002541261725127697,-0.0006821672432124615,-0.0043358332477509975,-0.8098617196083069,-0.925324022769928,2.0826427936553955,-0.008098617196083069,-0.009253240190446377,0.0208264272660017,0.004271506,-0.0009151782 +illusion_0.75L,ppo,24,4.8,1.1082205772399902,-0.32093581557273865,0.9109737277030945,-0.537932276725769,0.7810915112495422,-0.2506997883319855,0.0022914428263902664,0.0009409287595190108,0.0023053567856550217,0.002604386303573847,-0.0005219783051870763,-0.00440474646165967,-0.8607308864593506,-1.0759741067886353,2.0311295986175537,-0.008607308380305767,-0.010759741067886353,0.020311295986175537,0.0042843157,-0.0010487572 +illusion_0.75L,ppo,25,5.0,1.1441651582717896,-0.32954055070877075,0.9086477756500244,-0.5326865911483765,0.7585962414741516,-0.20747295022010803,0.002266863826662302,0.0008693505078554153,0.0022126524709165096,0.0027117424178868532,-0.0003870664513669908,-0.004459538031369448,-0.9110516905784607,-1.19587242603302,1.974959135055542,-0.009110516868531704,-0.01195872388780117,0.019749591127038002,0.004302871,-0.0011358453 +illusion_0.75L,ppo,26,5.2,1.1824003458023071,-0.3350416123867035,0.8972944021224976,-0.5064194202423096,0.7407556176185608,-0.15968061983585358,0.002249655779451132,0.0008009108132682741,0.002117004245519638,0.002843396971002221,-0.00028723932337015867,-0.004502394236624241,-0.955004096031189,-1.3090850114822388,1.9150652885437012,-0.00955004058778286,-0.013090849854052067,0.01915065199136734,0.0043176054,-0.0011726841 +illusion_0.75L,ppo,27,5.4,1.2230219841003418,-0.33637088537216187,0.8761972188949585,-0.4499073028564453,0.7309938073158264,-0.10950717329978943,0.0022402957547456026,0.0007403123890981078,0.0020150290802121162,0.002996213501319289,-0.0002210001985076815,-0.004536157473921776,-0.9930206537246704,-1.4245723485946655,1.8523105382919312,-0.009930206462740898,-0.014245723374187946,0.01852310448884964,0.00432057,-0.0011579368 +illusion_0.75L,ppo,28,5.6,1.2649593353271484,-0.33169886469841003,0.845669150352478,-0.35733792185783386,0.7319624423980713,-0.060386016964912415,0.00224415585398674,0.0006851591751910746,0.0019091494614258409,0.003151844721287489,-0.00019207189325243235,-0.004546913783997297,-1.0237343311309814,-1.5506936311721802,1.7883107662200928,-0.010237342678010464,-0.015506936237215996,0.01788310706615448,0.004313695,-0.0010926422 +illusion_0.75L,ppo,29,5.8,1.3060638904571533,-0.3177422285079956,0.8086344003677368,-0.2288704514503479,0.7448009252548218,-0.01602230593562126,0.002236340893432498,0.0006283455295488238,0.001806952408514917,0.0033119770232588053,-0.0001975849299924448,-0.004551749676465988,-1.0496209859848022,-1.6821142435073853,1.725074291229248,-0.010496209375560284,-0.01682114228606224,0.01725074276328087,0.0043063555,-0.0009800192 +illusion_0.75L,ppo,30,6.0,1.3413825035095215,-0.2893260717391968,0.7700660228729248,-0.07119150459766388,0.7674021124839783,0.02206611819565296,0.00224441010504961,0.0005750372656621039,0.0017200321890413761,0.0034609120339155197,-0.00022214536147657782,-0.004530381411314011,-1.088412880897522,-1.799839973449707,1.6574338674545288,-0.010884128510951996,-0.01799839921295643,0.01657433807849884,0.0043048463,-0.0008251868 +illusion_0.75L,ppo,31,6.2,1.3624343872070312,-0.2396799623966217,0.737022340297699,0.10114030539989471,0.7949622273445129,0.05528497323393822,0.0022483773063868284,0.0005384355317801237,0.0016542538069188595,0.0036011042539030313,-0.00025534690939821303,-0.004492240026593208,-1.1317323446273804,-1.8952412605285645,1.599747896194458,-0.011317322961986065,-0.01895241253077984,0.015997478738427162,0.0043056435,-0.00063486554 +illusion_0.75L,ppo,32,6.4,1.3582367897033691,-0.16158954799175262,0.7167710661888123,0.269100159406662,0.8231750726699829,0.08702047169208527,0.0022597822826355696,0.0004998036311008036,0.0016051550628617406,0.003730897093191743,-0.00030463712755590677,-0.004432099871337414,-1.1876899003982544,-1.9354573488235474,1.5568912029266357,-0.011876898817718029,-0.019354572519659996,0.015568912029266357,0.004300058,-0.0004171021 +illusion_0.75L,ppo,33,6.6,1.3198137283325195,-0.055168524384498596,0.7169463634490967,0.4032692313194275,0.8499706983566284,0.1180761530995369,0.0022770764771848917,0.0004910602583549917,0.0015781533438712358,0.0038412895519286394,-0.00036117478157393634,-0.004359205719083548,-1.2882535457611084,-1.8808696269989014,1.506596565246582,-0.012882535345852375,-0.018808696419000626,0.015065965242683887,0.0042849025,-0.00018102117 +illusion_0.75L,ppo,34,6.8,1.2458600997924805,0.07083765417337418,0.7407264709472656,0.4820649325847626,0.8762075304985046,0.14756445586681366,0.002314059529453516,0.0005034483037889004,0.0015790467150509357,0.003909020684659481,-0.0004175216017756611,-0.004266197793185711,-1.425276279449463,-1.7246795892715454,1.4555292129516602,-0.01425276231020689,-0.017246795818209648,0.014555292204022408,0.0042670122,6.342367e-05 +illusion_0.75L,ppo,35,7.0,1.1466506719589233,0.1956562101840973,0.7824046611785889,0.5060961842536926,0.9026395678520203,0.17419816553592682,0.0023382536601275206,0.0005632483516819775,0.0016199754318222404,0.003926762379705906,-0.000471673411084339,-0.004151680041104555,-1.5992802381515503,-1.4825215339660645,1.399761438369751,-0.015992801636457443,-0.014825214631855488,0.01399761438369751,0.0042565167,0.00030574665 +illusion_0.75L,ppo,36,7.2,1.0405280590057373,0.29625529050827026,0.8291559815406799,0.502060055732727,0.9293434619903564,0.19734437763690948,0.0024122237227857113,0.0006545909564010799,0.0016803990583866835,0.003890057560056448,-0.0005531958886422217,-0.004007833544164896,-1.7630198001861572,-1.1796939373016357,1.3813574314117432,-0.0176301971077919,-0.011796939186751842,0.013813573867082596,0.004256635,0.00053531403 +illusion_0.75L,ppo,37,7.4,0.9469457268714905,0.3572777807712555,0.8715416193008423,0.4948819875717163,0.9563279151916504,0.21719521284103394,0.002514695515856147,0.0007809273083694279,0.0017736784648150206,0.0038013195153325796,-0.0006179012125357985,-0.003889605402946472,-1.8840481042861938,-0.902199923992157,1.3945999145507812,-0.018840480595827103,-0.009021999314427376,0.01394599862396717,0.0042615873,0.000741827 +illusion_0.75L,ppo,38,7.6,0.8748647570610046,0.3795948326587677,0.9076694250106812,0.4921993613243103,0.983703076839447,0.23422206938266754,0.0026868421118706465,0.0009334965143352747,0.0018806376028805971,0.0036557100247591734,-0.0007102494710125029,-0.0037809216883033514,-1.929385781288147,-0.7499268054962158,1.457287073135376,-0.019293857738375664,-0.007499267812818289,0.0145728699862957,0.004264733,0.0009158759 +illusion_0.75L,ppo,39,7.8,0.8235576748847961,0.37323471903800964,0.9382051229476929,0.4932290017604828,1.0112961530685425,0.248891219496727,0.0028037484735250473,0.001084637362509966,0.001992447767406702,0.003482075873762369,-0.0008346395334228873,-0.0036911580245941877,-1.9056591987609863,-0.732781171798706,1.5463852882385254,-0.019056592136621475,-0.007327811326831579,0.01546385232359171,0.0042671734,0.0010495008 +illusion_0.75L,ppo,40,8.0,0.7858210206031799,0.3493804633617401,0.9639105796813965,0.496359258890152,1.0390982627868652,0.2614436745643616,0.0029745481442660093,0.0012094434350728989,0.0020912685431540012,0.003302141325548291,-0.0009967584628611803,-0.0036282252985984087,-1.8631060123443604,-0.7456996440887451,1.6508046388626099,-0.018631059676408768,-0.007456996478140354,0.01650804653763771,0.0042765196,0.0011366773 +illusion_0.75L,ppo,41,8.2,0.7552905082702637,0.3145279586315155,0.9849074482917786,0.4997435510158539,1.0671063661575317,0.2721042037010193,0.0031341102439910173,0.0013178327353671193,0.0021595763973891735,0.0031128462869673967,-0.0011663371697068214,-0.003599158488214016,-1.8150256872177124,-0.8152817487716675,1.7287604808807373,-0.01815025694668293,-0.008152817375957966,0.01728760451078415,0.0042969645,0.0011736538 +illusion_0.75L,ppo,42,8.4,0.7278960347175598,0.2701665461063385,1.0008933544158936,0.5005009174346924,1.0958199501037598,0.2811141610145569,0.003298019990324974,0.001386496121995151,0.002225380390882492,0.0029476007912307978,-0.0013067434774711728,-0.003593403147533536,-1.7745051383972168,-0.9180517196655273,1.778951644897461,-0.01774505153298378,-0.009180516935884953,0.01778951659798622,0.0043220688,0.0011590953 +illusion_0.75L,ppo,43,8.6,0.703193187713623,0.21676860749721527,1.0102390050888062,0.49396610260009766,1.1251981258392334,0.2882515788078308,0.003410843899473548,0.0014215890550985932,0.0022770336363464594,0.002835016930475831,-0.0014359172200784087,-0.0035948785953223705,-1.7243483066558838,-1.025876760482788,1.8350776433944702,-0.017243482172489166,-0.010258767753839493,0.01835077628493309,0.0043388912,0.0010940384 +illusion_0.75L,ppo,44,8.8,0.6831754446029663,0.155450239777565,1.0108758211135864,0.4737027883529663,1.1555598974227905,0.29330193996429443,0.003485238179564476,0.001440118532627821,0.0023142730351537466,0.0027826058212667704,-0.0015491362428292632,-0.0036140053998678923,-1.6658172607421875,-1.07241690158844,1.9091912508010864,-0.016658172011375427,-0.010724169202148914,0.019091911613941193,0.0043393816,0.000981694 +illusion_0.75L,ppo,45,9.0,0.6719698309898376,0.09039857238531113,1.000794529914856,0.4323057532310486,1.1871142387390137,0.29571622610092163,0.0034678070805966854,0.0014161873841658235,0.0023496393114328384,0.002774738473817706,-0.0016427378868684173,-0.003638347378000617,-1.5820515155792236,-1.0787321329116821,2.001539468765259,-0.015820514410734177,-0.010787321254611015,0.020015394315123558,0.0043267715,0.00082716916 +illusion_0.75L,ppo,46,9.2,0.6740807890892029,0.027487672865390778,0.978413999080658,0.3620994985103607,1.220004916191101,0.2945947051048279,0.003460327163338661,0.001386600430123508,0.0023682827595621347,0.00281172851100564,-0.0017480041133239865,-0.0036784932017326355,-1.4935128688812256,-1.0102293491363525,2.1060032844543457,-0.014935128390789032,-0.010102293454110622,0.02106003277003765,0.004310402,0.00063716865 +illusion_0.75L,ppo,47,9.4,0.6926032304763794,-0.025114309042692184,0.9437094330787659,0.2587355375289917,1.2530032396316528,0.2880385220050812,0.003400273621082306,0.0013357235584408045,0.002392530906945467,0.00284584891051054,-0.0018177395686507225,-0.0037516113370656967,-1.37204909324646,-0.936836838722229,2.196639060974121,-0.013720490969717503,-0.009368368424475193,0.021966390311717987,0.0042954427,0.00041972063 +illusion_0.75L,ppo,48,9.6,0.726378321647644,-0.062232855707407,0.8998827934265137,0.12418289482593536,1.2840806245803833,0.2733032703399658,0.0032836957834661007,0.0012926631607115269,0.0023972331546247005,0.0028972553554922342,-0.0018709978321567178,-0.003848558757454157,-1.238985300064087,-0.8784232139587402,2.263345718383789,-0.012389852665364742,-0.00878423172980547,0.02263345755636692,0.0042793714,0.00018392973 +illusion_0.75L,ppo,49,9.8,0.7691031098365784,-0.08642810583114624,0.8513824939727783,-0.03467903658747673,1.3094758987426758,0.24648334085941315,0.003149974625557661,0.0012406569439917803,0.002405347768217325,0.0029315135907381773,-0.001883027725853026,-0.003977049142122269,-1.0963579416275024,-0.812114953994751,2.301168441772461,-0.010963578708469868,-0.008121149614453316,0.02301168441772461,0.004258828,-6.027074e-05 +illusion_0.75L,ppo,50,10.0,0.811514139175415,-0.10523390024900436,0.8064190149307251,-0.19823123514652252,1.3220399618148804,0.20292460918426514,0.002995448186993599,0.001180285937152803,0.0023970899637788534,0.0029513828922063112,-0.001847930601797998,-0.0041296835988759995,-0.9562127590179443,-0.7806117534637451,2.3021225929260254,-0.00956212729215622,-0.007806117180734873,0.02302122488617897,0.004238117,-0.000302414 +illusion_0.75L,ppo,51,10.2,0.8482096195220947,-0.12610004842281342,0.7761588096618652,-0.33669620752334595,1.3134382963180542,0.13930672407150269,0.002822192618623376,0.0011092902859672904,0.002391667105257511,0.0029580499976873398,-0.0017585025634616613,-0.00429629348218441,-0.8487735390663147,-0.772885799407959,2.258606195449829,-0.008487734943628311,-0.007728857919573784,0.02258606068789959,0.0042285174,-0.0005318827 +illusion_0.75L,ppo,52,10.4,0.8796311020851135,-0.15063166618347168,0.7703807950019836,-0.42153143882751465,1.277083396911621,0.055861469358205795,0.0026635609101504087,0.0010243707802146673,0.002373351249843836,0.0029508701991289854,-0.0016086692921817303,-0.004462060052901506,-0.7923530340194702,-0.7695646286010742,2.194969892501831,-0.007923530414700508,-0.007695646025240421,0.02194969914853573,0.004238161,-0.0007383906 +illusion_0.75L,ppo,53,10.6,0.9081963896751404,-0.1762615144252777,0.7887864112854004,-0.4466922879219055,1.2131156921386719,-0.038412511348724365,0.002521792659536004,0.0009562451159581542,0.0023525699507445097,0.002932610223069787,-0.0014183619059622288,-0.004595620092004538,-0.8122745156288147,-0.7893370389938354,2.105029582977295,-0.008122744970023632,-0.00789337046444416,0.02105029486119747,0.0042634043,-0.0009125359 +illusion_0.75L,ppo,54,10.8,0.936329185962677,-0.2006504088640213,0.8189956545829773,-0.43847334384918213,1.1285033226013184,-0.13076652586460114,0.0024135808926075697,0.0009099565213546157,0.002316778525710106,0.0029141176491975784,-0.0011952911736443639,-0.004688779357820749,-0.8779053688049316,-0.8115927577018738,2.0272862911224365,-0.008779053576290607,-0.008115927688777447,0.020272862166166306,0.004291407,-0.0010463606 +illusion_0.75L,ppo,55,11.0,0.9645627737045288,-0.22277210652828217,0.846244215965271,-0.4293055236339569,1.0376975536346436,-0.20518918335437775,0.0023462483659386635,0.0008850465528666973,0.0022625993005931377,0.002894048113375902,-0.0009697357309050858,-0.00473882956430316,-0.956396222114563,-0.8560289144515991,1.956823706626892,-0.009563961997628212,-0.008560288697481155,0.01956823654472828,0.004311333,-0.0011338368 +illusion_0.75L,ppo,56,11.2,0.9937942624092102,-0.24266521632671356,0.8652198910713196,-0.43294692039489746,0.9548927545547485,-0.2526513338088989,0.002321917098015547,0.0008621781598776579,0.002197717083618045,0.0028775567188858986,-0.0007582670659758151,-0.004755334462970495,-1.0189554691314697,-0.9369992017745972,1.884979009628296,-0.010189554654061794,-0.009369991719722748,0.01884979009628296,0.004322164,-0.0011712029 +illusion_0.75L,ppo,57,11.4,1.0242499113082886,-0.260570764541626,0.8769595623016357,-0.4472307562828064,0.8888601660728455,-0.27221548557281494,0.002317724982276559,0.0008463069098070264,0.0021175879519432783,0.002883420092985034,-0.0005908800521865487,-0.004743899218738079,-1.0677423477172852,-1.0619618892669678,1.803217887878418,-0.01067742332816124,-0.01061961892992258,0.018032178282737732,0.0043292507,-0.001157109 +illusion_0.75L,ppo,58,11.6,1.0561790466308594,-0.27644479274749756,0.8834919929504395,-0.46660560369491577,0.8414560556411743,-0.2697875499725342,0.002318423939868808,0.0008282610797323287,0.002030737465247512,0.002911968622356653,-0.0004603484703693539,-0.004705419763922691,-1.111701250076294,-1.2030612230300903,1.7137165069580078,-0.011117012239992619,-0.012030611746013165,0.017137164250016212,0.00433463,-0.0010925712 +illusion_0.75L,ppo,59,11.8,1.090451955795288,-0.2902778387069702,0.8854917287826538,-0.48683878779411316,0.8088123202323914,-0.2532746493816376,0.0023764625657349825,0.000799493573140353,0.0019544896204024553,0.002965344116091728,-0.00036267071845941246,-0.004654146730899811,-1.1577075719833374,-1.3462328910827637,1.6238939762115479,-0.011577075347304344,-0.013462328352034092,0.01623893901705742,0.0043329895,-0.0009807767 +illusion_0.75L,ppo,60,12.0,1.1278080940246582,-0.301741361618042,0.8820062279701233,-0.5035340189933777,0.7855687737464905,-0.22867633402347565,0.0024038974661380053,0.0007640822441317141,0.0018760593375191092,0.003036125097423792,-0.00030374189373105764,-0.004599719308316708,-1.1953370571136475,-1.5169320106506348,1.5321805477142334,-0.01195337064564228,-0.015169319696724415,0.015321805141866207,0.004318186,-0.0008268062 +illusion_0.75L,ppo,61,12.2,1.1688146591186523,-0.31021741032600403,0.8708811402320862,-0.510445237159729,0.7674829363822937,-0.19887828826904297,0.0024436404928565025,0.0007306783809326589,0.0018152132397517562,0.003130630822852254,-0.00027084106113761663,-0.004528626333922148,-1.246069312095642,-1.6713018417358398,1.4308594465255737,-0.012460692785680294,-0.016713017597794533,0.014308594167232513,0.0042925803,-0.00063733704 +illusion_0.75L,ppo,62,12.4,1.2141691446304321,-0.31440213322639465,0.850251317024231,-0.49829837679862976,0.75340735912323,-0.16478203237056732,0.002474029315635562,0.0006941436440683901,0.0017712770495563745,0.0032414840534329414,-0.0002525902818888426,-0.004440851043909788,-1.273949146270752,-1.810573697090149,1.3493232727050781,-0.01273949071764946,-0.01810573600232601,0.013493232429027557,0.0042677866,-0.00042037078 +illusion_0.75L,ppo,63,12.6,1.2642159461975098,-0.3116200268268585,0.8197222352027893,-0.4548646807670593,0.7446226477622986,-0.1268516331911087,0.0024904562160372734,0.0006545704673044384,0.0017366621177643538,0.0033634440042078495,-0.0002660501340869814,-0.0043327887542545795,-1.2821882963180542,-1.9265501499176025,1.2908833026885986,-0.012821882963180542,-0.01926550082862377,0.012908833101391792,0.0042550834,-0.00018498744 +illusion_0.75L,ppo,64,12.8,1.317081093788147,-0.29688307642936707,0.78216552734375,-0.3686521649360657,0.7436060905456543,-0.08671025931835175,0.002502082847058773,0.0006175418966449797,0.001736918231472373,0.0034952631685882807,-0.000282436580164358,-0.004209721926599741,-1.277262568473816,-2.0065319538116455,1.2535803318023682,-0.01277262531220913,-0.020065318793058395,0.012535803020000458,0.00425563,5.890043e-05 +illusion_0.75L,ppo,65,13.0,1.366714358329773,-0.2616785764694214,0.7444795966148376,-0.23599936068058014,0.7526484131813049,-0.04725566878914833,0.0025008523371070623,0.0006125965155661106,0.001758319791406393,0.003628402017056942,-0.0003071807441301644,-0.004089293070137501,-1.2428189516067505,-2.052631378173828,1.2696574926376343,-0.012428189627826214,-0.02052631415426731,0.012696574442088604,0.0042611165,0.0003008419 +illusion_0.75L,ppo,66,13.2,1.4009169340133667,-0.1957978755235672,0.7153192162513733,-0.06703769415616989,0.7719941139221191,-0.011218843050301075,0.002466633217409253,0.0005333382287062705,0.0018021325813606381,0.0037669972516596317,-0.00035693281097337604,-0.003974799532443285,-1.190186619758606,-2.0620267391204834,1.332674264907837,-0.01190186571329832,-0.02062026783823967,0.013326742686331272,0.004263867,0.0005302295 +illusion_0.75L,ppo,67,13.4,1.4064269065856934,-0.09498745203018188,0.7021126747131348,0.11609411984682083,0.7994693517684937,0.020463738590478897,0.0024363924749195576,0.0005133289378136396,0.0018539701122790575,0.003904283046722412,-0.00042958674021065235,-0.003873879322782159,-1.2260127067565918,-1.9464786052703857,1.3778005838394165,-0.012260126881301403,-0.019464785233139992,0.013778005726635456,0.0042649442,0.0007367803 +illusion_0.75L,ppo,68,13.6,1.377192735671997,0.02941594086587429,0.7077536582946777,0.28616225719451904,0.8301799893379211,0.0498068705201149,0.0024013726506382227,0.0005251518450677395,0.0019027756061404943,0.004012013785541058,-0.0005135913961566985,-0.003786448622122407,-1.275559902191162,-1.7330348491668701,1.4473987817764282,-0.01275559887290001,-0.0173303484916687,0.014473987743258476,0.0042713727,0.0009110886 +illusion_0.75L,ppo,69,13.8,1.319463849067688,0.15300798416137695,0.7311360239982605,0.4174753427505493,0.859790027141571,0.07925379276275635,0.002378839300945401,0.0005723975482396781,0.001963974442332983,0.004079923033714294,-0.0006010248907841742,-0.003720188746228814,-1.3662933111190796,-1.4332166910171509,1.5112056732177734,-0.013662932440638542,-0.014332166872918606,0.015112056396901608,0.0042862087,0.0010451863 +illusion_0.75L,ppo,70,14.0,1.246247410774231,0.2517379820346832,0.7689142823219299,0.49244463443756104,0.8874353170394897,0.1097939983010292,0.0023665963672101498,0.0006630580755881965,0.0020358404144644737,0.004100659396499395,-0.0006870708893984556,-0.003670621896162629,-1.4659708738327026,-1.1020328998565674,1.5824627876281738,-0.014659708365797997,-0.011020328849554062,0.01582462713122368,0.0043033194,0.0011330287 +illusion_0.75L,ppo,71,14.2,1.1710602045059204,0.31121671199798584,0.8152014017105103,0.508342981338501,0.9143118262290955,0.13958191871643066,0.002399848308414221,0.000798273307736963,0.0021080169826745987,0.0040689557790756226,-0.0007821486797183752,-0.003638778580352664,-1.5422570705413818,-0.7936801910400391,1.674680471420288,-0.015422570519149303,-0.007936801761388779,0.016746804118156433,0.004313131,0.0011708322 +illusion_0.75L,ppo,72,14.4,1.1034907102584839,0.330412358045578,0.8610953688621521,0.4872466027736664,0.94145667552948,0.16687436401844025,0.0024430612102150917,0.0009545214707031846,0.002190035069361329,0.003982746507972479,-0.0008867476717568934,-0.0036224129144102335,-1.5715092420578003,-0.5733182430267334,1.779992699623108,-0.015715092420578003,-0.005733182188123465,0.017799926921725273,0.004312781,0.0011572209 +illusion_0.75L,ppo,73,14.6,1.0485105514526367,0.3190830945968628,0.8986163139343262,0.46101444959640503,0.9692158699035645,0.19068294763565063,0.002524780109524727,0.001107985619455576,0.0022824672050774097,0.00385206937789917,-0.0009998813038691878,-0.00363025045953691,-1.5532236099243164,-0.4332517385482788,1.9054276943206787,-0.015532235614955425,-0.004332517273724079,0.01905427686870098,0.0043088696,0.0010931825 +illusion_0.75L,ppo,74,14.8,1.0047742128372192,0.2900371253490448,0.9254305362701416,0.44475841522216797,0.9976708889007568,0.21123966574668884,0.002612865064293146,0.001236181822605431,0.0023733919952064753,0.0036783977411687374,-0.0011309994151815772,-0.0036723993252962828,-1.4900718927383423,-0.38969171047210693,2.039278984069824,-0.014900718815624714,-0.0038969169836491346,0.02039278857409954,0.0043094438,0.0009818746 +illusion_0.75L,ppo,75,15.0,0.9692562222480774,0.2527337670326233,0.942918062210083,0.43717247247695923,1.0268735885620117,0.22887638211250305,0.002717594150453806,0.001337788999080658,0.002472299849614501,0.0034874367993324995,-0.0012377798557281494,-0.003742957953363657,-1.4183024168014526,-0.4159494936466217,2.1531131267547607,-0.014183023944497108,-0.004159494768828154,0.021531131118535995,0.0043142987,0.0008283493 +illusion_0.75L,ppo,76,15.2,0.9386964440345764,0.21125651895999908,0.952311098575592,0.43249788880348206,1.057182788848877,0.24407468736171722,0.002801078837364912,0.0013767692726105452,0.002579924650490284,0.0032740579918026924,-0.0013166528660804033,-0.0038533038459718227,-1.3263670206069946,-0.4998806416988373,2.266439914703369,-0.013263669796288013,-0.004998806398361921,0.022664397954940796,0.0043147565,0.00063925784 +illusion_0.75L,ppo,77,15.4,0.9134692549705505,0.16899311542510986,0.9534772634506226,0.4252088963985443,1.0875414609909058,0.2564336955547333,0.002842424437403679,0.0014120665146037936,0.002598423045128584,0.0031491511035710573,-0.00136938423383981,-0.0039838748052716255,-1.2563163042068481,-0.6205472946166992,2.3512353897094727,-0.012563162483274937,-0.006205472629517317,0.023512354120612144,0.004303382,0.00042257944 +illusion_0.75L,ppo,78,15.6,0.8936530947685242,0.12529492378234863,0.9458209276199341,0.40821373462677,1.1198025941848755,0.2662646174430847,0.0028687536250799894,0.0013919929042458534,0.002622178988531232,0.0030434916261583567,-0.0013754304964095354,-0.004133540205657482,-1.1945490837097168,-0.7258840799331665,2.401775598526001,-0.011945490725338459,-0.007258840836584568,0.024017754942178726,0.004282773,0.00018737745 +illusion_0.75L,ppo,79,15.8,0.88097083568573,0.08211705833673477,0.9281089305877686,0.37380513548851013,1.153587818145752,0.27278071641921997,0.002821782836690545,0.0013376990100368857,0.0026243075262755156,0.0029940863605588675,-0.0013462385395541787,-0.004281850531697273,-1.138950228691101,-0.8429698944091797,2.4374947547912598,-0.011389502324163914,-0.008429698646068573,0.02437494695186615,0.0042635933,-5.6446097e-05 +illusion_0.75L,ppo,80,16.0,0.8757877945899963,0.040625423192977905,0.8997563123703003,0.314638614654541,1.188696265220642,0.274916410446167,0.002781853312626481,0.0012675204779952765,0.0026066226419061422,0.00300383847206831,-0.0012841519201174378,-0.004422132857143879,-1.089420199394226,-0.9098714590072632,2.4648730754852295,-0.010894201695919037,-0.009098714217543602,0.02464872971177101,0.0042541814,-0.0002984438 +illusion_0.75L,ppo,81,16.2,0.8774953484535217,0.0013477928005158901,0.8621981143951416,0.22619885206222534,1.2245200872421265,0.27076849341392517,0.0027123144827783108,0.001179893035441637,0.0025690868496894836,0.003050469560548663,-0.001203314634039998,-0.004555580206215382,-1.0165259838104248,-0.9711139798164368,2.4834413528442383,-0.0101652592420578,-0.00971113983541727,0.024834413081407547,0.004253479,-0.0005280045 +illusion_0.75L,ppo,82,16.4,0.8847463726997375,-0.0358395017683506,0.8199170827865601,0.11038099974393845,1.2588955163955688,0.2572101354598999,0.002624355023726821,0.0010965123074129224,0.0025153765454888344,0.003122162539511919,-0.0011176936095580459,-0.004688548855483532,-0.9410570859909058,-1.0161333084106445,2.4787681102752686,-0.009410570375621319,-0.010161332786083221,0.02478768117725849,0.00425492,-0.00073483476 +illusion_0.75L,ppo,83,16.6,0.8958829641342163,-0.07146187126636505,0.7792536020278931,-0.023788776248693466,1.2870051860809326,0.22902211546897888,0.0025537193287163973,0.0009534044656902552,0.0024453201331198215,0.0032030383590608835,-0.0010203091660514474,-0.004820064175873995,-0.8635088801383972,-1.0584968328475952,2.448282241821289,-0.008635088801383972,-0.010584968142211437,0.02448282204568386,0.004256148,-0.000909512 +illusion_0.75L,ppo,84,16.8,0.9102797508239746,-0.10568107664585114,0.7485330104827881,-0.15912139415740967,1.3009544610977173,0.1796228438615799,0.002449509222060442,0.0008535570814274251,0.002355229342356324,0.0032762885093688965,-0.0009196073515340686,-0.004943706560879946,-0.8432005047798157,-1.111870527267456,2.3453853130340576,-0.008432004600763321,-0.01111870538443327,0.0234538521617651,0.0042627393,-0.0010440459 +illusion_0.75L,ppo,85,17.0,0.9274229407310486,-0.1379583179950714,0.73492830991745,-0.27397269010543823,1.2906993627548218,0.10447666794061661,0.0023562442511320114,0.0007834508433006704,0.0022488096728920937,0.003341082949191332,-0.0008080797852016985,-0.005050635896623135,-0.8442235589027405,-1.1625730991363525,2.2188496589660645,-0.008442235179245472,-0.01162573043256998,0.022188495844602585,0.004281191,-0.0011323653 +illusion_0.75L,ppo,86,17.2,0.9474117159843445,-0.16834300756454468,0.740791380405426,-0.3544924557209015,1.2504281997680664,0.006823917850852013,0.0023017586208879948,0.000676938274409622,0.002131612738594413,0.0033816483337432146,-0.0006837305263616145,-0.005123663693666458,-0.8822950720787048,-1.219369649887085,2.064833879470825,-0.008822950534522533,-0.012193696573376656,0.02064833790063858,0.0043091387,-0.0011706583 +illusion_0.75L,ppo,87,17.4,0.9698984622955322,-0.19673748314380646,0.7605483531951904,-0.402119517326355,1.1838769912719727,-0.09825069457292557,0.0022638991940766573,0.0006160482298582792,0.0020169145427644253,0.0034091686829924583,-0.0005514917429536581,-0.00516141764819622,-1.0007920265197754,-1.2810580730438232,1.8578319549560547,-0.010007919743657112,-0.012810580432415009,0.018578318879008293,0.004334408,-0.0011575193 +illusion_0.75L,ppo,88,17.6,0.9947057962417603,-0.22318081557750702,0.7843164205551147,-0.4308581054210663,1.1044102907180786,-0.18976829946041107,0.0022681576665490866,0.0005933513166382909,0.0018933622632175684,0.003422712441533804,-0.00041616972885094583,-0.005142946261912584,-1.123075008392334,-1.349823236465454,1.6665462255477905,-0.011230750009417534,-0.013498231768608093,0.016665462404489517,0.004344752,-0.0010939074 +illusion_0.75L,ppo,89,17.8,1.0222563743591309,-0.2478211373090744,0.8048880696296692,-0.4541415870189667,1.0266807079315186,-0.2531137466430664,0.0022922116331756115,0.0005897662485949695,0.00178857846185565,0.0034289308823645115,-0.0002911591436713934,-0.0050737191922962666,-1.2259814739227295,-1.4487040042877197,1.4958950281143188,-0.012259814888238907,-0.014487039297819138,0.014958949759602547,0.0043380884,-0.0009829544 +illusion_0.75L,ppo,90,18.0,1.052633285522461,-0.27056431770324707,0.8191306591033936,-0.47733643651008606,0.9605386853218079,-0.2843162715435028,0.0023348780814558268,0.0005982409929856658,0.0016915076412260532,0.003443319583311677,-0.00019795878324657679,-0.004964222200214863,-1.2991183996200562,-1.5601726770401,1.3634519577026367,-0.012991183437407017,-0.01560172624886036,0.013634519651532173,0.0043224297,-0.00082969025 +illusion_0.75L,ppo,91,18.2,1.086237907409668,-0.29150012135505676,0.8261370062828064,-0.5001294016838074,0.9078415036201477,-0.28887203335762024,0.002389652654528618,0.0006067770882509649,0.0016233042115345597,0.003467239672318101,-0.00013443300849758089,-0.004828940145671368,-1.3487422466278076,-1.679396629333496,1.256766438484192,-0.013487421907484531,-0.01679396629333496,0.012567664496600628,0.004306267,-0.00064075 +illusion_0.75L,ppo,92,18.4,1.1240975856781006,-0.31051546335220337,0.8254578113555908,-0.518593966960907,0.8669086694717407,-0.2745738923549652,0.0024531071539968252,0.0006017749547027051,0.0015977035509422421,0.00349666690453887,-9.04528351384215e-05,-0.004671650938689709,-1.372928261756897,-1.7975997924804688,1.1826863288879395,-0.013729282654821873,-0.017975997179746628,0.011826862581074238,0.0042906245,-0.00042410247 +illusion_0.75L,ppo,93,18.6,1.1672325134277344,-0.3269837498664856,0.8158865571022034,-0.52571040391922,0.8349473476409912,-0.24759358167648315,0.0024987005162984133,0.0006244969554245472,0.001605041790753603,0.003541117301210761,-8.461944526061416e-05,-0.004513399209827185,-1.3705904483795166,-1.906957745552063,1.1470497846603394,-0.013705904595553875,-0.019069576635956764,0.011470497585833073,0.004271545,-0.00018880768 +illusion_0.75L,ppo,94,18.8,1.2165025472640991,-0.33921200037002563,0.7961316704750061,-0.5113009214401245,0.8101052045822144,-0.21138110756874084,0.00254167546518147,0.0005832588067278266,0.0016423172783106565,0.003599165938794613,-0.00010342134919483215,-0.0043521542102098465,-1.3242565393447876,-1.9977258443832397,1.1583552360534668,-0.013242565095424652,-0.019977258518338203,0.01158355176448822,0.004249319,5.522884e-05 +illusion_0.75L,ppo,95,19.0,1.2717143297195435,-0.3429853022098541,0.7667418718338013,-0.46302658319473267,0.7925178408622742,-0.168093740940094,0.00255206529982388,0.0005537238321267068,0.001713417936116457,0.0036722617223858833,-0.00014388699491973966,-0.0042114402167499065,-1.291843295097351,-2.0580859184265137,1.1715583801269531,-0.012918432243168354,-0.02058085799217224,0.011715583503246307,0.004232754,0.0002975495 +illusion_0.75L,ppo,96,19.2,1.3290389776229858,-0.3285113573074341,0.7318339347839355,-0.370042622089386,0.7837775945663452,-0.11998795717954636,0.0025465001817792654,0.0005141280125826597,0.001792373601347208,0.0037618090864270926,-0.00021060899598523974,-0.004087019711732864,-1.2311633825302124,-2.092648983001709,1.2257152795791626,-0.012311633676290512,-0.02092648856341839,0.012257152236998081,0.0042325207,0.00052752695 +illusion_0.75L,ppo,97,19.4,1.3767027854919434,-0.2794710099697113,0.6993725299835205,-0.23171623051166534,0.7858062982559204,-0.07069479674100876,0.0025097522884607315,0.0004878629115410149,0.001889588194899261,0.0038734120316803455,-0.0002835667401086539,-0.003984648268669844,-1.179673671722412,-2.0864784717559814,1.2903960943222046,-0.011796736158430576,-0.020864784717559814,0.012903960421681404,0.0042504324,0.00073484646 +illusion_0.75L,ppo,98,19.6,1.3990309238433838,-0.1821831911802292,0.6768264174461365,-0.05889691784977913,0.7986357808113098,-0.023158663883805275,0.0024505765177309513,0.0004683045553974807,0.0019854726269841194,0.004010319709777832,-0.00037960338522680104,-0.0038987533189356327,-1.1393946409225464,-1.9945262670516968,1.386662244796753,-0.011393946595489979,-0.019945261999964714,0.013866622000932693,0.0042766845,0.0009100606 +illusion_0.75L,ppo,99,19.8,1.3877638578414917,-0.04467790946364403,0.6692056059837341,0.1260441094636917,0.8197256326675415,0.020922493189573288,0.002386414213106036,0.000483822455862537,0.0020791511051356792,0.004149445332586765,-0.0004891454591415823,-0.003838244127109647,-1.1461535692214966,-1.7619096040725708,1.488373041152954,-0.011461535468697548,-0.017619095742702484,0.014883729629218578,0.004298477,0.0010451517 +illusion_0.75L,ppo,100,20.0,1.3481297492980957,0.10597562044858932,0.6780128479003906,0.29968225955963135,0.8454747200012207,0.062360282987356186,0.002348859328776598,0.0005201746243983507,0.002152038970962167,0.0042481375858187675,-0.00059540692018345,-0.0038062301464378834,-1.1859886646270752,-1.4183076620101929,1.597271203994751,-0.011859886348247528,-0.014183076098561287,0.015972711145877838,0.0043108193,0.0011340213 +illusion_0.75L,ppo,101,20.2,1.2903715372085571,0.23945775628089905,0.7022733092308044,0.4386371672153473,0.8730806112289429,0.10220197588205338,0.0023035178892314434,0.0006067551439628005,0.002217707457020879,0.004302419256418943,-0.000712886918336153,-0.003791514551267028,-1.2630705833435059,-1.0608744621276855,1.6824002265930176,-0.01263070572167635,-0.01060874480754137,0.01682400144636631,0.0043180697,0.0011728301 +illusion_0.75L,ppo,102,20.4,1.2238610982894897,0.33492928743362427,0.7389864921569824,0.5242871046066284,0.901633083820343,0.13977687060832977,0.0022868954110890627,0.000738251197617501,0.002290987176820636,0.004294770769774914,-0.0008215243578888476,-0.003781501902267337,-1.3351688385009766,-0.705040454864502,1.7816147804260254,-0.013351688161492348,-0.007050404325127602,0.017816146835684776,0.004325391,0.0011601488 +illusion_0.75L,ppo,103,20.6,1.1570396423339844,0.38495951890945435,0.7829503417015076,0.5553833246231079,0.9319208264350891,0.1738339215517044,0.0023138902615755796,0.0008954777731560171,0.002375237178057432,0.004213775508105755,-0.0009231279836967587,-0.00378020410425961,-1.3669449090957642,-0.41515934467315674,1.909833312034607,-0.013669448904693127,-0.004151593428105116,0.019098332151770592,0.0043306476,0.0010969156 +illusion_0.75L,ppo,104,20.8,1.0958877801895142,0.39501702785491943,0.8256649971008301,0.5543543100357056,0.9642303586006165,0.20361921191215515,0.0023687337525188923,0.001077350927516818,0.002477075671777129,0.004071273375302553,-0.0010244841687381268,-0.003800847800448537,-1.3539656400680542,-0.23086629807949066,2.055697202682495,-0.013539656065404415,-0.0023086629807949066,0.020556971430778503,0.0043263696,0.0009862471 +illusion_0.75L,ppo,105,21.0,1.0425888299942017,0.3777800500392914,0.8602049946784973,0.5471542477607727,0.9983828663825989,0.22907279431819916,0.002444921061396599,0.0011956552043557167,0.0026003459934145212,0.0038741366006433964,-0.0011084874859079719,-0.0038579129613935947,-1.2851264476776123,-0.15120482444763184,2.225486993789673,-0.012851264327764511,-0.001512048183940351,0.02225486934185028,0.004309413,0.00083316356 +illusion_0.75L,ppo,106,21.2,0.9956974983215332,0.34447094798088074,0.8846395611763,0.542860209941864,1.0343912839889526,0.25066903233528137,0.0025212501641362906,0.0013402741169556975,0.002732696011662483,0.003648216836154461,-0.0011815665056928992,-0.003956246189773083,-1.2173962593078613,-0.16565585136413574,2.3737096786499023,-0.012173962779343128,-0.0016565584810450673,0.023737097159028053,0.00428678,0.000644296 +illusion_0.75L,ppo,107,21.4,0.9533854126930237,0.3010253310203552,0.8991548418998718,0.5375745296478271,1.0722755193710327,0.26852625608444214,0.0025756426621228456,0.001355505082756281,0.0028300636913627386,0.0034195941407233477,-0.0012175668962299824,-0.004104320891201496,-1.100820541381836,-0.25903594493865967,2.5374698638916016,-0.011008204892277718,-0.0025903594214469194,0.025374697521328926,0.004270264,0.00042761577 +illusion_0.75L,ppo,108,21.6,0.9148597121238708,0.24867244064807892,0.9035006761550903,0.522747814655304,1.1126353740692139,0.2827254831790924,0.002613481367006898,0.0013510737335309386,0.002906795823946595,0.0032138237729668617,-0.0012039982248097658,-0.004297117702662945,-1.0706143379211426,-0.40064868330955505,2.601642370223999,-0.010706143453717232,-0.004006486851722002,0.026016423478722572,0.004265459,0.00019219081 +illusion_0.75L,ppo,109,21.8,0.8817136883735657,0.1885218769311905,0.8964903950691223,0.48743903636932373,1.1555752754211426,0.2922382950782776,0.002602600958198309,0.0013643749989569187,0.002935432130470872,0.0030691982246935368,-0.001128296134993434,-0.0044997637160122395,-1.033625841140747,-0.5971261262893677,2.6428520679473877,-0.010336258448660374,-0.00597126130014658,0.026428520679473877,0.0042672805,-5.2060313e-05 +illusion_0.75L,ppo,110,22.0,0.8570272922515869,0.12346941977739334,0.8777648210525513,0.420022577047348,1.2004770040512085,0.29488271474838257,0.0025801570154726505,0.001260631252080202,0.002908612135797739,0.003014173125848174,-0.001008621184155345,-0.004711163230240345,-0.9610109329223633,-0.8072665333747864,2.689066171646118,-0.009610109031200409,-0.008072664961218834,0.02689066156744957,0.0042669415,-0.00029466304 +illusion_0.75L,ppo,111,22.2,0.8441269397735596,0.05824523791670799,0.849758505821228,0.31175854802131653,1.2456178665161133,0.2859654128551483,0.002527218544855714,0.0011723760981112719,0.0028368369676172733,0.0030506423208862543,-0.0008741135825403035,-0.004906877409666777,-0.9456853866577148,-1.0017828941345215,2.653099536895752,-0.00945685338228941,-0.01001782901585102,0.026530994102358818,0.0042623915,-0.0005249703 +illusion_0.75L,ppo,112,22.4,0.8443304300308228,-0.0018149769166484475,0.8179218769073486,0.1637200117111206,1.2847310304641724,0.25710299611091614,0.0024574948474764824,0.0010435032891109586,0.002716973191127181,0.0031700062099844217,-0.0007428036769852042,-0.005068246275186539,-0.9003547430038452,-1.1561365127563477,2.6083171367645264,-0.00900354702025652,-0.011561364866793156,0.026083171367645264,0.004260432,-0.00073264627 +illusion_0.75L,ppo,113,22.6,0.8558997511863708,-0.05383427068591118,0.789547860622406,-0.009688189253211021,1.3064525127410889,0.19759534299373627,0.0024052499793469906,0.0009061617311090231,0.0025715709198266268,0.003324110759422183,-0.0006200115894898772,-0.005204095039516687,-0.883129894733429,-1.2378538846969604,2.509272813796997,-0.008831298910081387,-0.012378538958728313,0.025092728435993195,0.004268317,-0.0009082225 +illusion_0.75L,ppo,114,22.8,0.8755473494529724,-0.09835807979106903,0.7714255452156067,-0.18442249298095703,1.2988194227218628,0.10184406489133835,0.002353842370212078,0.0007807497750036418,0.002418908290565014,0.0034714327193796635,-0.0005054549546912313,-0.005306537263095379,-0.8884227871894836,-1.2840862274169922,2.3567237854003906,-0.008884227834641933,-0.01284086238592863,0.023567236959934235,0.0042846757,-0.001043662 +illusion_0.75L,ppo,115,23.0,0.9001794457435608,-0.13699451088905334,0.7683966755867004,-0.3309604227542877,1.258385419845581,-0.018885094672441483,0.0022980142384767532,0.000676184834446758,0.0022500907070934772,0.0035865171812474728,-0.0004123125982005149,-0.005372139159590006,-0.9208585619926453,-1.291617512702942,2.1683871746063232,-0.009208585135638714,-0.012916174717247486,0.021683871746063232,0.0043002586,-0.001132849 +illusion_0.75L,ppo,116,23.2,0.9278304576873779,-0.17104080319404602,0.7810521125793457,-0.4286450147628784,1.194349765777588,-0.13950936496257782,0.002280120039358735,0.0006046683411113918,0.002087831264361739,0.0036522967275232077,-0.0003180120256729424,-0.005395906511694193,-1.0007671117782593,-1.2767910957336426,1.944806694984436,-0.01000767108052969,-0.012767910957336426,0.019448066130280495,0.0043076286,-0.0011719316 +illusion_0.75L,ppo,117,23.4,0.957760214805603,-0.2014477550983429,0.8045168519020081,-0.4784761071205139,1.1215590238571167,-0.23608601093292236,0.0022786983754485846,0.0005705821677111089,0.0019334087846800685,0.003660920774564147,-0.0002305518719367683,-0.005377828609198332,-1.1026932001113892,-1.2987160682678223,1.726022720336914,-0.011026931926608086,-0.012987160123884678,0.017260227352380753,0.0043085935,-0.0011594715 +illusion_0.75L,ppo,118,23.6,0.9899076223373413,-0.22877302765846252,0.8304384350776672,-0.5003430843353271,1.0517988204956055,-0.29740574955940247,0.0022946642711758614,0.0005594724207185209,0.0018011193023994565,0.0036328977439552546,-0.00015027278277557343,-0.005321562755852938,-1.220051884651184,-1.3723833560943604,1.5262922048568726,-0.012200518511235714,-0.013723833486437798,0.015262921340763569,0.004310825,-0.0010964035 +illusion_0.75L,ppo,119,23.8,1.0242397785186768,-0.2532927393913269,0.8518489599227905,-0.5141530632972717,0.9918246269226074,-0.3242703974246979,0.0023437768686562777,0.0005645012715831399,0.001692087040282786,0.003587768878787756,-7.840881153242663e-05,-0.005223504733294249,-1.3318120241165161,-1.4927382469177246,1.35777747631073,-0.013318119570612907,-0.014927382580935955,0.013577774167060852,0.004317634,-0.0009858451 +illusion_0.75L,ppo,120,24.0,1.0615298748016357,-0.2753821909427643,0.8658386468887329,-0.5289756655693054,0.941752016544342,-0.3251323997974396,0.0024122705217450857,0.0005846415879204869,0.0016171782044693828,0.0035515225026756525,-2.0492505427682772e-05,-0.005092950072139502,-1.4142065048217773,-1.6532641649246216,1.2249855995178223,-0.01414206437766552,-0.016532640904188156,0.012249855324625969,0.0043228744,-0.0008328225 +illusion_0.75L,ppo,121,24.2,1.1022958755493164,-0.2949388921260834,0.8708822727203369,-0.5444993376731873,0.8994775414466858,-0.3078937530517578,0.002489726059138775,0.0005969624617137015,0.001571738626807928,0.0035357200540602207,1.8807966625900008e-05,-0.0049295430071651936,-1.452357292175293,-1.8222060203552246,1.139319896697998,-0.014523572288453579,-0.018222060054540634,0.011393198743462563,0.0043171565,-0.00064397696 +illusion_0.75L,ppo,122,24.4,1.1480904817581177,-0.3113366365432739,0.8659567832946777,-0.5544081330299377,0.8627607822418213,-0.27743446826934814,0.0025652111507952213,0.0005884632118977606,0.001563863712362945,0.003544226521626115,2.5208331862813793e-05,-0.004753560293465853,-1.4589548110961914,-1.9711990356445312,1.090015172958374,-0.014589548110961914,-0.019711989909410477,0.010900151915848255,0.0042985626,-0.00042729275 +illusion_0.75L,ppo,123,24.6,1.1998480558395386,-0.32285866141319275,0.8497739434242249,-0.5460564494132996,0.830751359462738,-0.23576563596725464,0.00262133264914155,0.000568349496461451,0.0016077395994216204,0.003580318298190832,8.557864020986017e-06,-0.004568725824356079,-1.4457852840423584,-2.087233543395996,1.0667973756790161,-0.014457852579653263,-0.020872335880994797,0.010667973197996616,0.0042757783,-0.00019185302 +illusion_0.75L,ppo,124,24.8,1.2574986219406128,-0.32456231117248535,0.8230448961257935,-0.5013773441314697,0.8044008016586304,-0.18397565186023712,0.0026640782598406076,0.0005382035742513835,0.001689140684902668,0.0036361664533615112,-3.245286279707216e-05,-0.004384926985949278,-1.3986364603042603,-2.1551735401153564,1.0938605070114136,-0.013986364006996155,-0.02155173569917679,0.010938604362308979,0.0042600418,5.2407777e-05 +illusion_0.75L,ppo,125,25.0,1.3160313367843628,-0.30494919419288635,0.7908783555030823,-0.40388792753219604,0.7865636348724365,-0.12441164255142212,0.0026417309418320656,0.0004978511715307832,0.0018036667024716735,0.0037168499547988176,-0.00010500085772946477,-0.004216397181153297,-1.3294317722320557,-2.1878321170806885,1.1594841480255127,-0.01329431775957346,-0.02187832072377205,0.011594841256737709,0.004254887,0.00029499974 +illusion_0.75L,ppo,126,25.2,1.3620796203613281,-0.2463076412677765,0.7622928023338318,-0.25125637650489807,0.7808241248130798,-0.06199106201529503,0.0026462965179234743,0.00046138421748764813,0.0019351606024429202,0.00382608943618834,-0.0002074562362395227,-0.004081269726157188,-1.2702832221984863,-2.1344945430755615,1.2619397640228271,-0.012702831998467445,-0.021344944834709167,0.012619397602975368,0.0042549637,0.00052526244 +illusion_0.75L,ppo,127,25.4,1.3793787956237793,-0.13991805911064148,0.7453466057777405,-0.06075667217373848,0.7889803051948547,-0.002770746359601617,0.002600122941657901,0.00043934903806075454,0.0020691948011517525,0.003950410522520542,-0.0003279286902397871,-0.0039927763864398,-1.2336430549621582,-2.0188019275665283,1.3744205236434937,-0.01233643013983965,-0.020188018679618835,0.013744205236434937,0.0042546582,0.00073284976 +illusion_0.75L,ppo,128,25.6,1.3629716634750366,-0.0018041577422991395,0.7437053918838501,0.13983823359012604,0.8095649480819702,0.049354080110788345,0.0025414112024009228,0.00044650788186118007,0.0021910194773226976,0.004084972199052572,-0.0004758087161462754,-0.0039327447302639484,-1.2589983940124512,-1.778645634651184,1.4826984405517578,-0.012589983642101288,-0.017786456272006035,0.014826984144747257,0.0042560105,0.00090828695 +illusion_0.75L,ppo,129,25.8,1.3210694789886475,0.1345643848180771,0.7566298842430115,0.3201019763946533,0.8379036784172058,0.09398149698972702,0.0024852072820067406,0.0005014917114749551,0.0022880712058395147,0.004200177267193794,-0.0006300785462372005,-0.0039026064332574606,-1.3304336071014404,-1.4265508651733398,1.58578360080719,-0.013304335996508598,-0.014265508390963078,0.015857836231589317,0.0042664283,0.0010435355 +illusion_0.75L,ppo,130,26.0,1.2646842002868652,0.24308481812477112,0.7813751697540283,0.455925852060318,0.8697973489761353,0.1336059272289276,0.0024489916395395994,0.0006129653193056583,0.002368656452745199,0.004266347736120224,-0.000784275762271136,-0.00388326495885849,-1.4143176078796387,-1.0564942359924316,1.6846179962158203,-0.014143175445497036,-0.01056494191288948,0.016846179962158203,0.004288713,0.0011324834 +illusion_0.75L,ppo,131,26.2,1.203375220298767,0.31090453267097473,0.813885509967804,0.5303552746772766,0.9027747511863708,0.16909748315811157,0.002440498908981681,0.000762845971621573,0.0024447606410831213,0.004281585104763508,-0.0009328139713034034,-0.0038734693080186844,-1.4700779914855957,-0.7312042713165283,1.7976157665252686,-0.014700779691338539,-0.007312042638659477,0.01797615736722946,0.0043151095,0.0011712873 +illusion_0.75L,ppo,132,26.4,1.1437630653381348,0.3401850163936615,0.8487442135810852,0.551040530204773,0.9365202188491821,0.20051376521587372,0.002474115462973714,0.0009369964827783406,0.0025178841315209866,0.0042378599755465984,-0.0010800488526001573,-0.0038692220114171505,-1.481146216392517,-0.47967275977134705,1.9274976253509521,-0.014811461791396141,-0.0047967275604605675,0.01927497610449791,0.0043327576,0.0011585224 +illusion_0.75L,ppo,133,26.6,1.089619517326355,0.3412923514842987,0.8797694444656372,0.5464192032814026,0.9713187217712402,0.22766394913196564,0.00250188703648746,0.001109022763557732,0.00260611018165946,0.004129656590521336,-0.0012185610830783844,-0.003878275863826275,-1.4433088302612305,-0.31921637058258057,2.0673668384552,-0.014433087781071663,-0.0031921635381877422,0.020673668012022972,0.0043350225,0.0010951414 +illusion_0.75L,ppo,134,26.8,1.0411452054977417,0.3250807225704193,0.9030724167823792,0.5398774147033691,1.0072765350341797,0.25102102756500244,0.0026112294290214777,0.0012559363385662436,0.0027098162099719048,0.003969964105635881,-0.0013453618157655,-0.003912202548235655,-1.3720778226852417,-0.22377002239227295,2.221240758895874,-0.013720777817070484,-0.0022377001587301493,0.022212406620383263,0.0043264166,0.0009842822 +illusion_0.75L,ppo,135,27.0,0.9967514872550964,0.2980731129646301,0.9178482890129089,0.537051796913147,1.0445345640182495,0.27098318934440613,0.002684004371985793,0.001358947018161416,0.0028217327781021595,0.0037663504481315613,-0.00143873889464885,-0.003986983094364405,-1.2691919803619385,-0.23480238020420074,2.366990089416504,-0.012691919691860676,-0.0023480236995965242,0.023669900372624397,0.0043160273,0.0008309937 +illusion_0.75L,ppo,136,27.2,0.9553364515304565,0.2621302902698517,0.9240071177482605,0.5333258509635925,1.0835528373718262,0.28782573342323303,0.002735714428126812,0.0014208084903657436,0.0029211738146841526,0.003551722504198551,-0.0014864910626783967,-0.004104382824152708,-1.176696538925171,-0.29625439643859863,2.4950098991394043,-0.011766965501010418,-0.002962543861940503,0.024950098246335983,0.004307269,0.0006419396 +illusion_0.75L,ppo,137,27.4,0.9176175594329834,0.21724790334701538,0.9207674264907837,0.5201219916343689,1.1252226829528809,0.30142003297805786,0.002757894340902567,0.0014273907290771604,0.0029954761266708374,0.003358580870553851,-0.0014605749165639281,-0.004269594792276621,-1.0936282873153687,-0.41195225715637207,2.5966382026672363,-0.010936282575130463,-0.004119522403925657,0.025966381654143333,0.0042956523,0.00042512597 +illusion_0.75L,ppo,138,27.6,0.8856296539306641,0.16416311264038086,0.9064435362815857,0.48612773418426514,1.1700383424758911,0.3108938932418823,0.0027334990445524454,0.0014022797113284469,0.003040008945390582,0.003219045465812087,-0.001371963880956173,-0.004455973394215107,-1.0265341997146606,-0.581290602684021,2.6636481285095215,-0.010265341959893703,-0.005812905728816986,0.026636481285095215,0.0042767483,0.00018965488 +illusion_0.75L,ppo,139,27.8,0.8624500036239624,0.1054009348154068,0.880595862865448,0.418294221162796,1.21806001663208,0.3136705756187439,0.0026746306102722883,0.0013394660782068968,0.003033825196325779,0.0031621172092854977,-0.00123748485930264,-0.004656591918319464,-0.9513973593711853,-0.7584434747695923,2.71962833404541,-0.009513973258435726,-0.0075844344682991505,0.027196282520890236,0.0042546117,-5.452429e-05 +illusion_0.75L,ppo,140,28.0,0.8508614897727966,0.045668479055166245,0.8461046814918518,0.3070363700389862,1.26637601852417,0.3033495843410492,0.0025982263032346964,0.0012312723556533456,0.002972714602947235,0.0031831637024879456,-0.0010736139956861734,-0.004859760403633118,-0.8793530464172363,-0.9273326992988586,2.739670991897583,-0.00879353005439043,-0.009273326955735683,0.027396708726882935,0.0042403275,-0.00029691207 +illusion_0.75L,ppo,141,28.2,0.851937472820282,-0.010608695447444916,0.8099279999732971,0.1532304733991623,1.3071168661117554,0.26800382137298584,0.002504858421161771,0.0010958559578284621,0.0028652611654251814,0.0032798778265714645,-0.0009022324811667204,-0.005050371401011944,-0.8273481726646423,-1.0788733959197998,2.6995317935943604,-0.008273481391370296,-0.010788734070956707,0.02699531801044941,0.0042417664,-0.0005268445 +illusion_0.75L,ppo,142,28.4,0.8637604713439941,-0.0605270117521286,0.7803543210029602,-0.02609819732606411,1.3258728981018066,0.19425033032894135,0.0023900032974779606,0.0009528303053230047,0.002744167111814022,0.0034212053287774324,-0.000721858290489763,-0.005214983597397804,-0.7992280125617981,-1.178433895111084,2.603090524673462,-0.007992279715836048,-0.011784338392317295,0.026030905544757843,0.004255904,-0.00073397876 +illusion_0.75L,ppo,143,28.6,0.8831841945648193,-0.1043924018740654,0.7637786865234375,-0.20517008006572723,1.3106071949005127,0.07939141243696213,0.002323327586054802,0.0008166442275978625,0.0025690614711493254,0.0035648636985570192,-0.0005616190028376877,-0.005352130625396967,-0.7918657660484314,-1.2044352293014526,2.4747700691223145,-0.00791865773499012,-0.012044352479279041,0.02474769949913025,0.0042723576,-0.0009088502 +illusion_0.75L,ppo,144,28.8,0.9074361324310303,-0.14307770133018494,0.7640639543533325,-0.3530687391757965,1.262081503868103,-0.05681111291050911,0.002250827383249998,0.000698950607329607,0.0023840765934437513,0.0036685452796518803,-0.00041409104596823454,-0.0054529584012925625,-0.8343170881271362,-1.221887469291687,2.2643768787384033,-0.008343170396983624,-0.012218874879181385,0.022643769159913063,0.004284144,-0.001043437 +illusion_0.75L,ppo,145,29.0,0.9349267482757568,-0.17751924693584442,0.7806184887886047,-0.4492497146129608,1.1935186386108398,-0.18354980647563934,0.0022120282519608736,0.0006154263392090797,0.0021934122778475285,0.00372355617582798,-0.0002723215438891202,-0.005503552500158548,-0.9270139336585999,-1.2226619720458984,2.023832321166992,-0.009270139038562775,-0.012226619757711887,0.020238323137164116,0.00429356,-0.0011316502 +illusion_0.75L,ppo,146,29.2,0.965065598487854,-0.2085394412279129,0.8072953224182129,-0.4967294931411743,1.119439959526062,-0.2784586548805237,0.002197406254708767,0.0005732325371354818,0.0020164772868156433,0.0037276449147611856,-0.00014007888967171311,-0.0055049932561814785,-1.0495069026947021,-1.2598093748092651,1.7861770391464233,-0.01049506850540638,-0.01259809359908104,0.01786177046597004,0.0043068267,-0.001169674 +illusion_0.75L,ppo,147,29.4,0.9975710511207581,-0.2363024353981018,0.8347783088684082,-0.5166438817977905,1.0510364770889282,-0.33320698142051697,0.002229547593742609,0.0005600929143838584,0.0018564562778919935,0.003693463746458292,-1.677161162660923e-05,-0.005458813160657883,-1.1770975589752197,-1.3484151363372803,1.5817188024520874,-0.011770975776016712,-0.013484151102602482,0.01581718772649765,0.004324089,-0.001156115 +illusion_0.75L,ppo,148,29.6,1.0331577062606812,-0.26145848631858826,0.8566402196884155,-0.5297021269798279,0.9926767945289612,-0.35307300090789795,0.0022528611589223146,0.0005642366595566273,0.0017154744127765298,0.0036514431703835726,7.471340359188616e-05,-0.005371081177145243,-1.285773754119873,-1.5052599906921387,1.4115667343139648,-0.012857737019658089,-0.01505259983241558,0.014115666970610619,0.004336693,-0.0010919593 +illusion_0.75L,ppo,149,29.8,1.072271704673767,-0.284069299697876,0.8698552846908569,-0.5446710586547852,0.9443888664245605,-0.34794914722442627,0.002354157157242298,0.0005738832987844944,0.0016102619701996446,0.0036194997373968363,0.00014695576101075858,-0.005253931507468224,-1.3740367889404297,-1.668531060218811,1.276190996170044,-0.013740367256104946,-0.016685310751199722,0.012761909514665604,0.004335254,-0.0009803788 +illusion_0.75L,ppo,150,30.0,1.1160266399383545,-0.3040977716445923,0.8732109069824219,-0.56132572889328,0.9032347202301025,-0.32613518834114075,0.002433274406939745,0.0005742614157497883,0.001545643899589777,0.0036074479576200247,0.00019004056230187416,-0.005115640349686146,-1.4132921695709229,-1.8750485181808472,1.1734280586242676,-0.01413292158395052,-0.01875048503279686,0.011734280735254288,0.00431953,-0.0008264546 +illusion_0.75L,ppo,151,30.2,1.1656430959701538,-0.3204525411128998,0.8653938174247742,-0.5723036527633667,0.866719663143158,-0.29181531071662903,0.0025101029314100742,0.0005596564733423293,0.0015244443202391267,0.003626257413998246,0.00019364742911420763,-0.004948941525071859,-1.4291939735412598,-2.0469701290130615,1.1038269996643066,-0.014291939325630665,-0.020469700917601585,0.011038269847631454,0.0042989235,-0.00063687965 +illusion_0.75L,ppo,152,30.4,1.2224111557006836,-0.33021679520606995,0.8457086682319641,-0.5620577335357666,0.8339617848396301,-0.24586841464042664,0.0025861216709017754,0.0005259303725324571,0.0015538069419562817,0.003664437448605895,0.00017256179125979543,-0.004766511730849743,-1.4156749248504639,-2.167581796646118,1.0714352130889893,-0.014156748540699482,-0.021675817668437958,0.010714352130889893,0.0042830403,-0.00041968442 +illusion_0.75L,ppo,153,30.6,1.2842440605163574,-0.32530447840690613,0.816419780254364,-0.5088707208633423,0.8061891198158264,-0.18910729885101318,0.0026212993543595076,0.0004835310683120042,0.001635439693927765,0.003721035085618496,0.00012401194544509053,-0.004581935238093138,-1.3730003833770752,-2.254504919052124,1.0791081190109253,-0.013730003498494625,-0.022545048967003822,0.010791081003844738,0.004272977,-0.0001839893 +illusion_0.75L,ppo,154,30.8,1.3421818017959595,-0.2894076406955719,0.7846890091896057,-0.3954901397228241,0.7863094806671143,-0.12369018793106079,0.0026366752572357655,0.00043952587293460965,0.0017564757727086544,0.00380241428501904,5.530622729565948e-05,-0.004413427785038948,-1.312597632408142,-2.2805423736572266,1.1375267505645752,-0.013125975616276264,-0.02280542254447937,0.011375267058610916,0.004263009,6.0245275e-05 +illusion_0.75L,ppo,155,31.0,1.379410743713379,-0.20582862198352814,0.7606449127197266,-0.22428786754608154,0.7784039974212646,-0.05518338084220886,0.0026112315244972706,0.00039477937389165163,0.0018968615913763642,0.003907655365765095,-5.241723556537181e-05,-0.0042669023387134075,-1.2581502199172974,-2.2387778759002686,1.2337517738342285,-0.012581502087414265,-0.022387778386473656,0.0123375179246068,0.0042502596,0.0003025164 +illusion_0.75L,ppo,156,31.2,1.3844084739685059,-0.07888452708721161,0.7516354918479919,-0.018486713990569115,0.7852715253829956,0.009604176506400108,0.002576504135504365,0.0003769325849134475,0.002044881694018841,0.004032902419567108,-0.00019113594316877425,-0.0041536265052855015,-1.2605125904083252,-2.061769723892212,1.340112566947937,-0.012605126015841961,-0.02061769738793373,0.013401125557720661,0.004240692,0.0005321647 +illusion_0.75L,ppo,157,31.4,1.3596007823944092,0.0615701898932457,0.7590793371200562,0.18737198412418365,0.8057358264923096,0.06515933573246002,0.002527351723983884,0.0003998158499598503,0.0021718640346080065,0.0041493303142488,-0.0003508466179482639,-0.004072710406035185,-1.3142015933990479,-1.7647351026535034,1.4506008625030518,-0.013142015784978867,-0.01764735020697117,0.014506008476018906,0.00424401,0.00073885964 +illusion_0.75L,ppo,158,31.6,1.3143593072891235,0.18506193161010742,0.7800445556640625,0.3641728162765503,0.8353652954101562,0.11132773756980896,0.002482671057805419,0.0004694949893746525,0.0022922868374735117,0.004242125432938337,-0.0005155465914867818,-0.004022054374217987,-1.4080665111541748,-1.4092216491699219,1.5508103370666504,-0.014080665074288845,-0.0140922162681818,0.015508103184401989,0.0042629326,0.0009131561 +illusion_0.75L,ppo,159,31.8,1.2582560777664185,0.2726413607597351,0.8097066283226013,0.48803481459617615,0.8689587116241455,0.1504414677619934,0.002460868563503027,0.0005918449605815113,0.002393102739006281,0.004301636945456266,-0.0006850559148006141,-0.003989892080426216,-1.4954131841659546,-1.0617866516113281,1.6628992557525635,-0.014954131096601486,-0.010617866180837154,0.016628991812467575,0.004288994,0.0010470577 +illusion_0.75L,ppo,160,32.0,1.1991215944290161,0.3213416039943695,0.8436130285263062,0.5490620732307434,0.9039168357849121,0.18475130200386047,0.002471538493409753,0.0007608682499267161,0.002480651717633009,0.004322995897382498,-0.000861313717905432,-0.003962715156376362,-1.5453722476959229,-0.7718163728713989,1.7859662771224976,-0.015453722327947617,-0.007718163542449474,0.01785966195166111,0.0043098424,0.0011345054 +illusion_0.75L,ppo,161,32.2,1.1423949003219604,0.33842137455940247,0.876838207244873,0.5607248544692993,0.939534068107605,0.21487782895565033,0.0025170990265905857,0.000943630700930953,0.002568564610555768,0.00429526437073946,-0.0010382462060078979,-0.003946422599256039,-1.5395653247833252,-0.5481806993484497,1.9255157709121704,-0.015395652502775192,-0.0054818070493638515,0.019255157560110092,0.0043200897,0.0011717168 +illusion_0.75L,ppo,162,32.4,1.0904325246810913,0.3347037434577942,0.9047328233718872,0.5528338551521301,0.9758716821670532,0.2409496158361435,0.002592253964394331,0.0011144861346110702,0.0026553801726549864,0.004207281395792961,-0.0012190607376396656,-0.003942230250686407,-1.4900447130203247,-0.39783501625061035,2.069704055786133,-0.014900446869432926,-0.0039783501997590065,0.020697040483355522,0.0043239123,0.0011573333 +illusion_0.75L,ppo,163,32.6,1.042951226234436,0.31834399700164795,0.9250002503395081,0.5456801652908325,1.013067364692688,0.26339367032051086,0.0026959902606904507,0.001258435077033937,0.0027527662459760904,0.004063846077769995,-0.0013764690374955535,-0.003968420438468456,-1.4182300567626953,-0.3169158697128296,2.203312873840332,-0.014182300306856632,-0.0031691587064415216,0.022033128887414932,0.0043271636,0.0010923748 +illusion_0.75L,ppo,164,32.8,0.998391330242157,0.29277920722961426,0.9373519420623779,0.5427960753440857,1.0514287948608398,0.2827511131763458,0.002759559080004692,0.0014082766138017178,0.002861614804714918,0.0038823301438242197,-0.0014956113882362843,-0.004024434834718704,-1.3296968936920166,-0.3169972896575928,2.3279166221618652,-0.013296968303620815,-0.0031699729152023792,0.023279165849089622,0.0043287096,0.0009800454 +illusion_0.75L,ppo,165,33.0,0.9560352563858032,0.2580500543117523,0.9413483142852783,0.5393848419189453,1.0914918184280396,0.29943686723709106,0.002811329672113061,0.0014309941325336695,0.0029548502061516047,0.0036882164422422647,-0.0015559993917122483,-0.004124046303331852,-1.209062099456787,-0.35769402980804443,2.476869821548462,-0.012090620584785938,-0.003576940158382058,0.02476869709789753,0.0043213554,0.0008254539 +illusion_0.75L,ppo,166,33.2,0.9168900847434998,0.21353083848953247,0.9356086254119873,0.5267406702041626,1.1340943574905396,0.31328314542770386,0.002828662982210517,0.0014453998301178217,0.003026340389624238,0.003504709107801318,-0.0015574002172797918,-0.004262101370841265,-1.1537166833877563,-0.44589877128601074,2.5571868419647217,-0.011537166312336922,-0.00445898761972785,0.02557186782360077,0.0043013636,0.00063531636 +illusion_0.75L,ppo,167,33.4,0.8834143877029419,0.15958106517791748,0.9183706045150757,0.4924793243408203,1.1802695989608765,0.32323548197746277,0.0027987651992589235,0.001430422649718821,0.003067117417231202,0.003364427015185356,-0.0014890155289322138,-0.0044243307784199715,-1.0791081190109253,-0.5818045139312744,2.6336307525634766,-0.010791081003844738,-0.005818045232445002,0.0263363067060709,0.0042753303,0.00041768 +illusion_0.75L,ppo,168,33.6,0.8590327501296997,0.09927016496658325,0.8893102407455444,0.4221661686897278,1.2295868396759033,0.32590389251708984,0.002739119343459606,0.001377161592245102,0.0030675330199301243,0.003289915854111314,-0.0013642460107803345,-0.004598924424499273,-0.9935768246650696,-0.7350270748138428,2.6994972229003906,-0.009935768321156502,-0.007350270636379719,0.026994971558451653,0.004255935,0.00018167504 +illusion_0.75L,ppo,169,33.8,0.8468148708343506,0.037817150354385376,0.8522072434425354,0.3055567443370819,1.278489112854004,0.31322407722473145,0.0026598444674164057,0.0012806013692170382,0.003020382719114423,0.0032939612865448,-0.0012041637673974037,-0.004783381707966328,-0.9026499390602112,-0.8885896801948547,2.7372734546661377,-0.009026499465107918,-0.008885896764695644,0.027372734621167183,0.0042506987,-6.273523e-05 +illusion_0.75L,ppo,170,34.0,0.8479002118110657,-0.019865460693836212,0.8147377967834473,0.1444426029920578,1.3171194791793823,0.2704332768917084,0.0025551924481987953,0.0011522005079314113,0.0029359704349189997,0.0033641669433563948,-0.0010254745138809085,-0.004961144644767046,-0.8245078325271606,-1.0234495401382446,2.7224597930908203,-0.008245077915489674,-0.010234495624899864,0.027224596589803696,0.0042559667,-0.000305052 +illusion_0.75L,ppo,171,34.2,0.860618531703949,-0.07063362002372742,0.7856325507164001,-0.04219267889857292,1.329673171043396,0.1828787624835968,0.0024551295209676027,0.001011122833006084,0.0028135450556874275,0.0034814560785889626,-0.0008390310686081648,-0.005144468042999506,-0.7696592807769775,-1.1046137809753418,2.6552000045776367,-0.007696592714637518,-0.011046137660741806,0.026551999151706696,0.0042625247,-0.0005346263 +illusion_0.75L,ppo,172,34.4,0.881446897983551,-0.11464085429906845,0.7708772420883179,-0.22518496215343475,1.30607271194458,0.053551074117422104,0.002351904520764947,0.0008625111659057438,0.0026667192578315735,0.003598595503717661,-0.0006489287479780614,-0.005301211029291153,-0.7544893026351929,-1.1493676900863647,2.5156517028808594,-0.007544892840087414,-0.011493676342070103,0.025156516581773758,0.0042662155,-0.0007411434 +illusion_0.75L,ppo,173,34.6,0.9072737693786621,-0.1530640423297882,0.7732642292976379,-0.37301623821258545,1.2519679069519043,-0.09020546823740005,0.00227150390855968,0.0007393789128400385,0.0024905656464397907,0.003689669771119952,-0.0004712087393272668,-0.005428635515272617,-0.7930536866188049,-1.1475141048431396,2.320004463195801,-0.00793053675442934,-0.011475141160190105,0.02320004440844059,0.004271506,-0.0009151782 +illusion_0.75L,ppo,174,34.8,0.9364057183265686,-0.18715116381645203,0.7913995385169983,-0.46640780568122864,1.182532787322998,-0.21568749845027924,0.0022089602425694466,0.0006522159092128277,0.002305991481989622,0.0037314884830266237,-0.00029994911164976656,-0.005509916692972183,-0.8810577392578125,-1.153875470161438,2.0853796005249023,-0.008810576982796192,-0.011538754217326641,0.020853795111179352,0.0042843157,-0.0010487572 +illusion_0.75L,ppo,175,35.0,0.9681126475334167,-0.21757632493972778,0.8185813426971436,-0.5105087757110596,1.1115554571151733,-0.3032671809196472,0.002189244143664837,0.0006040169391781092,0.0021228052210062742,0.0037280365359038115,-0.0001347375218756497,-0.005541816353797913,-1.0017887353897095,-1.1995034217834473,1.8577836751937866,-0.010017886757850647,-0.011995034292340279,0.018577836453914642,0.004302871,-0.0011358453 +illusion_0.75L,ppo,176,35.2,1.0023123025894165,-0.24501603841781616,0.845679521560669,-0.5289684534072876,1.0471580028533936,-0.350143700838089,0.002206341130658984,0.0005811802111566067,0.0019455528818070889,0.0036906558088958263,7.77288823883282e-06,-0.005526668857783079,-1.1261860132217407,-1.3167152404785156,1.658636212348938,-0.01126185990869999,-0.013167152181267738,0.016586361452937126,0.0043176054,-0.0011726841 +illusion_0.75L,ppo,177,35.4,1.0392519235610962,-0.26969727873802185,0.8663443922996521,-0.5423004627227783,0.9927017092704773,-0.36429038643836975,0.002247533993795514,0.0005758062470704317,0.0017849731957539916,0.003649478778243065,0.00011799146159319207,-0.0054681492038071156,-1.2404639720916748,-1.4939298629760742,1.4831352233886719,-0.012404639273881912,-0.014939297921955585,0.014831352047622204,0.00432057,-0.0011579368 +illusion_0.75L,ppo,178,35.6,1.0800009965896606,-0.29184064269065857,0.8782984018325806,-0.5588161945343018,0.946642279624939,-0.35674309730529785,0.002318211831152439,0.0005762982182204723,0.0016504734521731734,0.003626634366810322,0.00019474273722153157,-0.005367617588490248,-1.3275740146636963,-1.6923376321792603,1.3367385864257812,-0.01327573973685503,-0.01692337542772293,0.013367385603487492,0.004313695,-0.0010926422 +illusion_0.75L,ppo,179,35.8,1.1254271268844604,-0.3109813332557678,0.880344033241272,-0.5776344537734985,0.9063196778297424,-0.3350842297077179,0.0023987034801393747,0.000566997507121414,0.001553513458929956,0.0036260434426367283,0.000239434972172603,-0.005235751159489155,-1.3802751302719116,-1.8850352764129639,1.2204034328460693,-0.01380275096744299,-0.018850352615118027,0.012204034253954887,0.0043063555,-0.0009800192 +illusion_0.75L,ppo,180,36.0,1.1770669221878052,-0.3259463608264923,0.8711814880371094,-0.5907445549964905,0.8691993951797485,-0.3021513819694519,0.0024818165693432093,0.00054548418847844,0.0015100856544449925,0.0036451818887144327,0.00025369893410243094,-0.00507707055658102,-1.406391978263855,-2.050632953643799,1.1309263706207275,-0.014063919894397259,-0.020506329834461212,0.011309263296425343,0.0043048463,-0.0008251868 +illusion_0.75L,ppo,181,36.2,1.236030101776123,-0.33317825198173523,0.8504284620285034,-0.5807909965515137,0.8349276781082153,-0.2577618956565857,0.002551321405917406,0.0005119926645420492,0.0015297054778784513,0.00368144060485065,0.00024374971690122038,-0.00490030599758029,-1.3981907367706299,-2.1801578998565674,1.081120252609253,-0.013981906697154045,-0.021801577880978584,0.010811202228069305,0.0043056435,-0.00063486554 +illusion_0.75L,ppo,182,36.4,1.299802541732788,-0.32295772433280945,0.8211678266525269,-0.5232618451118469,0.804893970489502,-0.2013588696718216,0.0026018000207841396,0.00047111097956076264,0.0016032959101721644,0.0037387420888990164,0.00020623175078071654,-0.004715148359537125,-1.3541841506958008,-2.2688522338867188,1.0845749378204346,-0.013541840948164463,-0.022688521072268486,0.010845748707652092,0.004300058,-0.0004171021 +illusion_0.75L,ppo,183,36.6,1.356834053993225,-0.27725499868392944,0.7919160723686218,-0.40061768889427185,0.7822964191436768,-0.1346067190170288,0.00260525313206017,0.00042469907202757895,0.001719649531878531,0.003818732453510165,0.00013538477651309222,-0.0045368727296590805,-1.2905313968658447,-2.304609775543213,1.1399708986282349,-0.01290531363338232,-0.02304609678685665,0.011399708688259125,0.0042849025,-0.00018102117 +illusion_0.75L,ppo,184,36.8,1.389865517616272,-0.1821737140417099,0.7728181481361389,-0.2182117998600006,0.7713140845298767,-0.06251934915781021,0.002597569255158305,0.00037907864316366613,0.0018654597224667668,0.0039214808493852615,3.203523738193326e-05,-0.0043916841968894005,-1.2521709203720093,-2.237253189086914,1.232437252998352,-0.012521709315478802,-0.02237253077328205,0.012324372306466103,0.0042670122,6.342367e-05 +illusion_0.75L,ppo,185,37.0,1.3902649879455566,-0.04978351294994354,0.7698764204978943,-0.0038867818657308817,0.7755085825920105,0.007221424952149391,0.002565707080066204,0.0003588541876524687,0.002009219489991665,0.004027992952615023,-0.00010541245137574151,-0.004277383908629417,-1.27254056930542,-2.0583300590515137,1.3310463428497314,-0.012725405395030975,-0.020583299919962883,0.013310463167726994,0.0042565167,0.00030574665 +illusion_0.75L,ppo,186,37.2,1.3630207777023315,0.0875551775097847,0.7829470634460449,0.206748828291893,0.7950896620750427,0.06747560203075409,0.002518495311960578,0.00037652612081728876,0.0021555882412940264,0.004133869893848896,-0.0002620904997456819,-0.00418939208611846,-1.3579556941986084,-1.7744431495666504,1.4214497804641724,-0.013579556718468666,-0.017744431272149086,0.014214497059583664,0.004256635,0.00053531403 +illusion_0.75L,ppo,187,37.4,1.3174793720245361,0.20126286149024963,0.8077136874198914,0.3829796314239502,0.8257398009300232,0.11598436534404755,0.002496623434126377,0.00046227278653532267,0.002278304658830166,0.004224105272442102,-0.00042719696648418903,-0.0041271536611020565,-1.465773105621338,-1.4312901496887207,1.527145504951477,-0.014657731167972088,-0.01431290153414011,0.01527145504951477,0.0042615873,0.000741827 +illusion_0.75L,ppo,188,37.6,1.262113332748413,0.2781693637371063,0.8388233780860901,0.5036430358886719,0.8614943027496338,0.15550537407398224,0.002479579532518983,0.0005921513657085598,0.0023820765782147646,0.004287219140678644,-0.0006029761862009764,-0.004082066938281059,-1.5464433431625366,-1.1255050897598267,1.6456434726715088,-0.01546443346887827,-0.011255051009356976,0.01645643450319767,0.004264733,0.0009158759 +illusion_0.75L,ppo,189,37.8,1.2044053077697754,0.31858932971954346,0.8718003630638123,0.5599638223648071,0.8985496759414673,0.1892378032207489,0.0024977915454655886,0.0007562884129583836,0.002471641404554248,0.0043225763365626335,-0.0007980266818776727,-0.0040420908480882645,-1.5947171449661255,-0.8617900609970093,1.7712647914886475,-0.015947170555591583,-0.008617900311946869,0.01771264709532261,0.0042671734,0.0010495008 +illusion_0.75L,ppo,190,38.0,1.1490836143493652,0.33143141865730286,0.9026545882225037,0.5671560764312744,0.9357876777648926,0.2184477001428604,0.002552708610892296,0.0009309362503699958,0.0025520173367112875,0.00431121326982975,-0.0010032325517386198,-0.004008153919130564,-1.5958678722381592,-0.6491312980651855,1.9001672267913818,-0.015958677977323532,-0.0064913127571344376,0.0190016720443964,0.0042765196,0.0011366773 +illusion_0.75L,ppo,191,38.2,1.0979413986206055,0.3268771767616272,0.9278853535652161,0.5559269189834595,0.9731197357177734,0.24349330365657806,0.002637977944687009,0.001095850602723658,0.002647494664415717,0.004244541749358177,-0.0012001481372863054,-0.00398321682587266,-1.5617761611938477,-0.4984198808670044,2.019930601119995,-0.015617760829627514,-0.0049841986037790775,0.020199306309223175,0.0042969645,0.0011736538 +illusion_0.75L,ppo,192,38.4,1.0504682064056396,0.3115618824958801,0.9461605548858643,0.5466291904449463,1.0110020637512207,0.26496177911758423,0.0027282931841909885,0.001239393255673349,0.002749432809650898,0.004125567153096199,-0.0013767986092716455,-0.003976177424192429,-1.493614912033081,-0.40494680404663086,2.146667718887329,-0.01493614912033081,-0.004049467854201794,0.021466676145792007,0.0043220688,0.0011590953 +illusion_0.75L,ppo,193,38.6,1.0054259300231934,0.28750288486480713,0.9573847055435181,0.5427935719490051,1.0498976707458496,0.2834166884422302,0.0028260573744773865,0.0013576181372627616,0.0028532869182527065,0.003961453679949045,-0.00151624227873981,-0.004003946669399738,-1.4085779190063477,-0.36332643032073975,2.274862289428711,-0.014085778966546059,-0.0036332642193883657,0.02274862304329872,0.0043388912,0.0010940384 +illusion_0.75L,ppo,194,38.8,0.9623099565505981,0.2539480924606323,0.9609867334365845,0.5397616028785706,1.0903905630111694,0.299201637506485,0.0028902837075293064,0.0014277184382081032,0.0029531093314290047,0.0037779028061777353,-0.0016008636448532343,-0.004073623102158308,-1.3121576309204102,-0.39236652851104736,2.3964810371398926,-0.01312157604843378,-0.003923665266484022,0.023964809253811836,0.0043393816,0.000981694 +illusion_0.75L,ppo,195,39.0,0.9221190810203552,0.2098274827003479,0.9552339911460876,0.5288364887237549,1.1334102153778076,0.31223395466804504,0.0029244408942759037,0.0014800961362197995,0.003017871407791972,0.003600706346333027,-0.001626584678888321,-0.004179615527391434,-1.2244482040405273,-0.46554791927337646,2.504039764404297,-0.012244481593370438,-0.004655478987842798,0.02504039742052555,0.0043267715,0.00082716916 +illusion_0.75L,ppo,196,39.2,0.8877034783363342,0.1558748483657837,0.9380987286567688,0.4972662627696991,1.1797667741775513,0.32153740525245667,0.0028952390421181917,0.00147736887447536,0.003075925400480628,0.003459812141954899,-0.0015838833060115576,-0.004317484796047211,-1.1284459829330444,-0.5900546312332153,2.5954277515411377,-0.011284459382295609,-0.0059005459770560265,0.02595427632331848,0.004310402,0.00063716865 +illusion_0.75L,ppo,197,39.4,0.8624082207679749,0.09509661048650742,0.9088329076766968,0.4292566776275635,1.2294533252716064,0.323983371257782,0.0028433757834136486,0.0014342133654281497,0.003086572978645563,0.00337844411842525,-0.0014824585523456335,-0.004477271344512701,-1.0317273139953613,-0.713781476020813,2.681147336959839,-0.010317272506654263,-0.007137814536690712,0.026811473071575165,0.0042954427,0.00041972063 +illusion_0.75L,ppo,198,39.6,0.8494336009025574,0.03271143510937691,0.8708437085151672,0.3125520646572113,1.2791694402694702,0.3116414546966553,0.00275632506236434,0.001343499287031591,0.003059130860492587,0.0033603610936552286,-0.0013388744555413723,-0.004658618476241827,-0.9301208257675171,-0.8556261658668518,2.7317466735839844,-0.009301207959651947,-0.008556261658668518,0.027317466214299202,0.0042793714,0.00018392973 +illusion_0.75L,ppo,199,39.8,0.8499541282653809,-0.025719083845615387,0.8320069313049316,0.14901670813560486,1.3186684846878052,0.2697160840034485,0.0026204511523246765,0.0012181311612948775,0.00299180974252522,0.003410923993214965,-0.0011672641849145293,-0.004848100710660219,-0.8398332595825195,-0.9862957000732422,2.7333385944366455,-0.008398332633078098,-0.009862956590950489,0.02733338624238968,0.004258828,-6.027074e-05 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv new file mode 100644 index 0000000..12194f7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_0.75L,sr,72,14.4,36,0.8834498155543029,-12,0.9651674181222916,0.8811160958009876,0.8551590194304785,0.7718840088798768,0.9359672864278158,0.8914050646643672 +illusion_0.75L,sr,108,21.6,36,0.8724018679974878,15,0.836147795120875,0.903370683391889,0.7991831501324972,0.8913857789917125,0.9033467579219077,0.9009770424260447 +illusion_0.75L,sr,144,28.8,36,0.8965759069089675,10,0.9151692920260959,0.9204269464438161,0.8958011153671477,0.8974467470414109,0.8583886623382568,0.8922226782370772 +illusion_0.75L,sr,180,36.0,36,0.880792172086701,6,0.9443623986509111,0.8964266388728801,0.8677820149395201,0.7908255467191339,0.918923631310463,0.8664328020272983 +illusion_0.75L,sr,200,40.0,36,0.874942697250474,-10,0.9257550951507356,0.8768414369939516,0.842402782705095,0.7687778922910284,0.9447607646385828,0.8911182117234502 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_long.csv new file mode 100644 index 0000000..6c9a0e5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,sr,0,0.0,velocity,upper_ux,1.2257615327835083 +illusion_0.75L,sr,0,0.0,velocity,upper_uy,0.12892243266105652 +illusion_0.75L,sr,0,0.0,velocity,center_ux,0.7312963604927063 +illusion_0.75L,sr,0,0.0,velocity,center_uy,0.5053322911262512 +illusion_0.75L,sr,0,0.0,velocity,lower_ux,0.8749406337738037 +illusion_0.75L,sr,0,0.0,velocity,lower_uy,0.181144118309021 +illusion_0.75L,sr,1,0.2,velocity,upper_ux,1.1282933950424194 +illusion_0.75L,sr,1,0.2,velocity,upper_uy,0.23802143335342407 +illusion_0.75L,sr,1,0.2,velocity,center_ux,0.7708043456077576 +illusion_0.75L,sr,1,0.2,velocity,center_uy,0.5162764191627502 +illusion_0.75L,sr,1,0.2,velocity,lower_ux,0.9027511477470398 +illusion_0.75L,sr,1,0.2,velocity,lower_uy,0.20912429690361023 +illusion_0.75L,sr,2,0.4,velocity,upper_ux,1.032436728477478 +illusion_0.75L,sr,2,0.4,velocity,upper_uy,0.31471365690231323 +illusion_0.75L,sr,2,0.4,velocity,center_ux,0.8104594945907593 +illusion_0.75L,sr,2,0.4,velocity,center_uy,0.509904146194458 +illusion_0.75L,sr,2,0.4,velocity,lower_ux,0.9312958717346191 +illusion_0.75L,sr,2,0.4,velocity,lower_uy,0.2337803989648819 +illusion_0.75L,sr,3,0.6,velocity,upper_ux,0.9520893692970276 +illusion_0.75L,sr,3,0.6,velocity,upper_uy,0.3519553244113922 +illusion_0.75L,sr,3,0.6,velocity,center_ux,0.8432225584983826 +illusion_0.75L,sr,3,0.6,velocity,center_uy,0.5067592859268188 +illusion_0.75L,sr,3,0.6,velocity,lower_ux,0.960794985294342 +illusion_0.75L,sr,3,0.6,velocity,lower_uy,0.25548210740089417 +illusion_0.75L,sr,4,0.8,velocity,upper_ux,0.8956445455551147 +illusion_0.75L,sr,4,0.8,velocity,upper_uy,0.356475293636322 +illusion_0.75L,sr,4,0.8,velocity,center_ux,0.8704798221588135 +illusion_0.75L,sr,4,0.8,velocity,center_uy,0.5121758580207825 +illusion_0.75L,sr,4,0.8,velocity,lower_ux,0.9933329820632935 +illusion_0.75L,sr,4,0.8,velocity,lower_uy,0.27485716342926025 +illusion_0.75L,sr,5,1.0,velocity,upper_ux,0.8516241312026978 +illusion_0.75L,sr,5,1.0,velocity,upper_uy,0.33808109164237976 +illusion_0.75L,sr,5,1.0,velocity,center_ux,0.8877716660499573 +illusion_0.75L,sr,5,1.0,velocity,center_uy,0.5198968648910522 +illusion_0.75L,sr,5,1.0,velocity,lower_ux,1.022042989730835 +illusion_0.75L,sr,5,1.0,velocity,lower_uy,0.2904837131500244 +illusion_0.75L,sr,6,1.2,velocity,upper_ux,0.8200671672821045 +illusion_0.75L,sr,6,1.2,velocity,upper_uy,0.3093578815460205 +illusion_0.75L,sr,6,1.2,velocity,center_ux,0.902376115322113 +illusion_0.75L,sr,6,1.2,velocity,center_uy,0.5310700535774231 +illusion_0.75L,sr,6,1.2,velocity,lower_ux,1.0545381307601929 +illusion_0.75L,sr,6,1.2,velocity,lower_uy,0.30453410744667053 +illusion_0.75L,sr,7,1.4,velocity,upper_ux,0.7931027412414551 +illusion_0.75L,sr,7,1.4,velocity,upper_uy,0.2741444706916809 +illusion_0.75L,sr,7,1.4,velocity,center_ux,0.9118494391441345 +illusion_0.75L,sr,7,1.4,velocity,center_uy,0.5409924387931824 +illusion_0.75L,sr,7,1.4,velocity,lower_ux,1.088559627532959 +illusion_0.75L,sr,7,1.4,velocity,lower_uy,0.3163946270942688 +illusion_0.75L,sr,8,1.6,velocity,upper_ux,0.7682588696479797 +illusion_0.75L,sr,8,1.6,velocity,upper_uy,0.23356281220912933 +illusion_0.75L,sr,8,1.6,velocity,center_ux,0.9148262143135071 +illusion_0.75L,sr,8,1.6,velocity,center_uy,0.5440762639045715 +illusion_0.75L,sr,8,1.6,velocity,lower_ux,1.1241827011108398 +illusion_0.75L,sr,8,1.6,velocity,lower_uy,0.32588279247283936 +illusion_0.75L,sr,9,1.8,velocity,upper_ux,0.7461526989936829 +illusion_0.75L,sr,9,1.8,velocity,upper_uy,0.18757207691669464 +illusion_0.75L,sr,9,1.8,velocity,center_ux,0.9095438122749329 +illusion_0.75L,sr,9,1.8,velocity,center_uy,0.5320859551429749 +illusion_0.75L,sr,9,1.8,velocity,lower_ux,1.1618062257766724 +illusion_0.75L,sr,9,1.8,velocity,lower_uy,0.3326449990272522 +illusion_0.75L,sr,10,2.0,velocity,upper_ux,0.729420006275177 +illusion_0.75L,sr,10,2.0,velocity,upper_uy,0.13717328011989594 +illusion_0.75L,sr,10,2.0,velocity,center_ux,0.8943637013435364 +illusion_0.75L,sr,10,2.0,velocity,center_uy,0.4952360987663269 +illusion_0.75L,sr,10,2.0,velocity,lower_ux,1.2016345262527466 +illusion_0.75L,sr,10,2.0,velocity,lower_uy,0.3359262943267822 +illusion_0.75L,sr,11,2.2,velocity,upper_ux,0.7214257121086121 +illusion_0.75L,sr,11,2.2,velocity,upper_uy,0.08512218296527863 +illusion_0.75L,sr,11,2.2,velocity,center_ux,0.8687444925308228 +illusion_0.75L,sr,11,2.2,velocity,center_uy,0.425248920917511 +illusion_0.75L,sr,11,2.2,velocity,lower_ux,1.2434254884719849 +illusion_0.75L,sr,11,2.2,velocity,lower_uy,0.3343743085861206 +illusion_0.75L,sr,12,2.4,velocity,upper_ux,0.7247892022132874 +illusion_0.75L,sr,12,2.4,velocity,upper_uy,0.035288192331790924 +illusion_0.75L,sr,12,2.4,velocity,center_ux,0.8341881036758423 +illusion_0.75L,sr,12,2.4,velocity,center_uy,0.31862393021583557 +illusion_0.75L,sr,12,2.4,velocity,lower_ux,1.286068320274353 +illusion_0.75L,sr,12,2.4,velocity,lower_uy,0.3256382346153259 +illusion_0.75L,sr,13,2.6,velocity,upper_ux,0.7397904396057129 +illusion_0.75L,sr,13,2.6,velocity,upper_uy,-0.009089002385735512 +illusion_0.75L,sr,13,2.6,velocity,center_ux,0.7946445345878601 +illusion_0.75L,sr,13,2.6,velocity,center_uy,0.17829684913158417 +illusion_0.75L,sr,13,2.6,velocity,lower_ux,1.3266820907592773 +illusion_0.75L,sr,13,2.6,velocity,lower_uy,0.3056411147117615 +illusion_0.75L,sr,14,2.8,velocity,upper_ux,0.7633176445960999 +illusion_0.75L,sr,14,2.8,velocity,upper_uy,-0.04761999100446701 +illusion_0.75L,sr,14,2.8,velocity,center_ux,0.7557832598686218 +illusion_0.75L,sr,14,2.8,velocity,center_uy,0.013439898379147053 +illusion_0.75L,sr,14,2.8,velocity,lower_ux,1.359108567237854 +illusion_0.75L,sr,14,2.8,velocity,lower_uy,0.26825034618377686 +illusion_0.75L,sr,15,3.0,velocity,upper_ux,0.7907172441482544 +illusion_0.75L,sr,15,3.0,velocity,upper_uy,-0.08255963027477264 +illusion_0.75L,sr,15,3.0,velocity,center_ux,0.7247869968414307 +illusion_0.75L,sr,15,3.0,velocity,center_uy,-0.15989558398723602 +illusion_0.75L,sr,15,3.0,velocity,lower_ux,1.3736562728881836 +illusion_0.75L,sr,15,3.0,velocity,lower_uy,0.20619767904281616 +illusion_0.75L,sr,16,3.2,velocity,upper_ux,0.8184207081794739 +illusion_0.75L,sr,16,3.2,velocity,upper_uy,-0.11627604812383652 +illusion_0.75L,sr,16,3.2,velocity,center_ux,0.7089067697525024 +illusion_0.75L,sr,16,3.2,velocity,center_uy,-0.318677693605423 +illusion_0.75L,sr,16,3.2,velocity,lower_ux,1.3592339754104614 +illusion_0.75L,sr,16,3.2,velocity,lower_uy,0.11501366645097733 +illusion_0.75L,sr,17,3.4,velocity,upper_ux,0.8457956910133362 +illusion_0.75L,sr,17,3.4,velocity,upper_uy,-0.14930206537246704 +illusion_0.75L,sr,17,3.4,velocity,center_ux,0.7137969136238098 +illusion_0.75L,sr,17,3.4,velocity,center_uy,-0.43741780519485474 +illusion_0.75L,sr,17,3.4,velocity,lower_ux,1.3093432188034058 +illusion_0.75L,sr,17,3.4,velocity,lower_uy,-0.0015972383553162217 +illusion_0.75L,sr,18,3.6,velocity,upper_ux,0.8733624815940857 +illusion_0.75L,sr,18,3.6,velocity,upper_uy,-0.1803244948387146 +illusion_0.75L,sr,18,3.6,velocity,center_ux,0.7398117184638977 +illusion_0.75L,sr,18,3.6,velocity,center_uy,-0.4991147518157959 +illusion_0.75L,sr,18,3.6,velocity,lower_ux,1.2281298637390137 +illusion_0.75L,sr,18,3.6,velocity,lower_uy,-0.12724164128303528 +illusion_0.75L,sr,19,3.8,velocity,upper_ux,0.901675283908844 +illusion_0.75L,sr,19,3.8,velocity,upper_uy,-0.208134725689888 +illusion_0.75L,sr,19,3.8,velocity,center_ux,0.7788070440292358 +illusion_0.75L,sr,19,3.8,velocity,center_uy,-0.5130131244659424 +illusion_0.75L,sr,19,3.8,velocity,lower_ux,1.1311311721801758 +illusion_0.75L,sr,19,3.8,velocity,lower_uy,-0.23788824677467346 +illusion_0.75L,sr,20,4.0,velocity,upper_ux,0.9308008551597595 +illusion_0.75L,sr,20,4.0,velocity,upper_uy,-0.23241841793060303 +illusion_0.75L,sr,20,4.0,velocity,center_ux,0.8185228705406189 +illusion_0.75L,sr,20,4.0,velocity,center_uy,-0.5079160928726196 +illusion_0.75L,sr,20,4.0,velocity,lower_ux,1.03725266456604 +illusion_0.75L,sr,20,4.0,velocity,lower_uy,-0.3141671121120453 +illusion_0.75L,sr,21,4.2,velocity,upper_ux,0.9605914354324341 +illusion_0.75L,sr,21,4.2,velocity,upper_uy,-0.25338155031204224 +illusion_0.75L,sr,21,4.2,velocity,center_ux,0.8516948819160461 +illusion_0.75L,sr,21,4.2,velocity,center_uy,-0.5051444172859192 +illusion_0.75L,sr,21,4.2,velocity,lower_ux,0.9601051211357117 +illusion_0.75L,sr,21,4.2,velocity,lower_uy,-0.35027045011520386 +illusion_0.75L,sr,22,4.4,velocity,upper_ux,0.9909607768058777 +illusion_0.75L,sr,22,4.4,velocity,upper_uy,-0.27137672901153564 +illusion_0.75L,sr,22,4.4,velocity,center_ux,0.877677321434021 +illusion_0.75L,sr,22,4.4,velocity,center_uy,-0.5096291899681091 +illusion_0.75L,sr,22,4.4,velocity,lower_ux,0.9030462503433228 +illusion_0.75L,sr,22,4.4,velocity,lower_uy,-0.353901743888855 +illusion_0.75L,sr,23,4.6,velocity,upper_ux,1.0219324827194214 +illusion_0.75L,sr,23,4.6,velocity,upper_uy,-0.2865833640098572 +illusion_0.75L,sr,23,4.6,velocity,center_ux,0.8980522155761719 +illusion_0.75L,sr,23,4.6,velocity,center_uy,-0.519512414932251 +illusion_0.75L,sr,23,4.6,velocity,lower_ux,0.8618089556694031 +illusion_0.75L,sr,23,4.6,velocity,lower_uy,-0.33781078457832336 +illusion_0.75L,sr,24,4.8,velocity,upper_ux,1.0538530349731445 +illusion_0.75L,sr,24,4.8,velocity,upper_uy,-0.29913830757141113 +illusion_0.75L,sr,24,4.8,velocity,center_ux,0.9139555096626282 +illusion_0.75L,sr,24,4.8,velocity,center_uy,-0.5324706435203552 +illusion_0.75L,sr,24,4.8,velocity,lower_ux,0.8291533589363098 +illusion_0.75L,sr,24,4.8,velocity,lower_uy,-0.3116980493068695 +illusion_0.75L,sr,25,5.0,velocity,upper_ux,1.0869741439819336 +illusion_0.75L,sr,25,5.0,velocity,upper_uy,-0.3089430332183838 +illusion_0.75L,sr,25,5.0,velocity,center_ux,0.9254052639007568 +illusion_0.75L,sr,25,5.0,velocity,center_uy,-0.5455420613288879 +illusion_0.75L,sr,25,5.0,velocity,lower_ux,0.7997474670410156 +illusion_0.75L,sr,25,5.0,velocity,lower_uy,-0.2797398567199707 +illusion_0.75L,sr,26,5.2,velocity,upper_ux,1.1216953992843628 +illusion_0.75L,sr,26,5.2,velocity,upper_uy,-0.31577831506729126 +illusion_0.75L,sr,26,5.2,velocity,center_ux,0.9315975308418274 +illusion_0.75L,sr,26,5.2,velocity,center_uy,-0.5536773204803467 +illusion_0.75L,sr,26,5.2,velocity,lower_ux,0.7715214490890503 +illusion_0.75L,sr,26,5.2,velocity,lower_uy,-0.24235403537750244 +illusion_0.75L,sr,27,5.4,velocity,upper_ux,1.1582894325256348 +illusion_0.75L,sr,27,5.4,velocity,upper_uy,-0.3192261755466461 +illusion_0.75L,sr,27,5.4,velocity,center_ux,0.930928647518158 +illusion_0.75L,sr,27,5.4,velocity,center_uy,-0.5489377379417419 +illusion_0.75L,sr,27,5.4,velocity,lower_ux,0.7451596856117249 +illusion_0.75L,sr,27,5.4,velocity,lower_uy,-0.19899927079677582 +illusion_0.75L,sr,28,5.6,velocity,upper_ux,1.1969308853149414 +illusion_0.75L,sr,28,5.6,velocity,upper_uy,-0.31861913204193115 +illusion_0.75L,sr,28,5.6,velocity,center_ux,0.9215503931045532 +illusion_0.75L,sr,28,5.6,velocity,center_uy,-0.5213873386383057 +illusion_0.75L,sr,28,5.6,velocity,lower_ux,0.723158597946167 +illusion_0.75L,sr,28,5.6,velocity,lower_uy,-0.14999037981033325 +illusion_0.75L,sr,29,5.8,velocity,upper_ux,1.237492561340332 +illusion_0.75L,sr,29,5.8,velocity,upper_uy,-0.31302323937416077 +illusion_0.75L,sr,29,5.8,velocity,center_ux,0.902116060256958 +illusion_0.75L,sr,29,5.8,velocity,center_uy,-0.461894154548645 +illusion_0.75L,sr,29,5.8,velocity,lower_ux,0.7088020443916321 +illusion_0.75L,sr,29,5.8,velocity,lower_uy,-0.0972413569688797 +illusion_0.75L,sr,30,6.0,velocity,upper_ux,1.2793378829956055 +illusion_0.75L,sr,30,6.0,velocity,upper_uy,-0.3009447157382965 +illusion_0.75L,sr,30,6.0,velocity,center_ux,0.8729605674743652 +illusion_0.75L,sr,30,6.0,velocity,center_uy,-0.3655937910079956 +illusion_0.75L,sr,30,6.0,velocity,lower_ux,0.70508873462677 +illusion_0.75L,sr,30,6.0,velocity,lower_uy,-0.044335197657346725 +illusion_0.75L,sr,31,6.2,velocity,upper_ux,1.3209692239761353 +illusion_0.75L,sr,31,6.2,velocity,upper_uy,-0.2801584005355835 +illusion_0.75L,sr,31,6.2,velocity,center_ux,0.836972713470459 +illusion_0.75L,sr,31,6.2,velocity,center_uy,-0.23385727405548096 +illusion_0.75L,sr,31,6.2,velocity,lower_ux,0.7132401466369629 +illusion_0.75L,sr,31,6.2,velocity,lower_uy,0.005004073493182659 +illusion_0.75L,sr,32,6.4,velocity,upper_ux,1.3590067625045776 +illusion_0.75L,sr,32,6.4,velocity,upper_uy,-0.2472439557313919 +illusion_0.75L,sr,32,6.4,velocity,center_ux,0.7994092702865601 +illusion_0.75L,sr,32,6.4,velocity,center_uy,-0.07481799274682999 +illusion_0.75L,sr,32,6.4,velocity,lower_ux,0.7314902544021606 +illusion_0.75L,sr,32,6.4,velocity,lower_uy,0.04880686104297638 +illusion_0.75L,sr,33,6.6,velocity,upper_ux,1.3868902921676636 +illusion_0.75L,sr,33,6.6,velocity,upper_uy,-0.1980159878730774 +illusion_0.75L,sr,33,6.6,velocity,center_ux,0.7669036388397217 +illusion_0.75L,sr,33,6.6,velocity,center_uy,0.09607750922441483 +illusion_0.75L,sr,33,6.6,velocity,lower_ux,0.7555873990058899 +illusion_0.75L,sr,33,6.6,velocity,lower_uy,0.08780180662870407 +illusion_0.75L,sr,34,6.8,velocity,upper_ux,1.3951247930526733 +illusion_0.75L,sr,34,6.8,velocity,upper_uy,-0.12927430868148804 +illusion_0.75L,sr,34,6.8,velocity,center_ux,0.7458992004394531 +illusion_0.75L,sr,34,6.8,velocity,center_uy,0.25762078166007996 +illusion_0.75L,sr,34,6.8,velocity,lower_ux,0.7813798785209656 +illusion_0.75L,sr,34,6.8,velocity,lower_uy,0.12414080649614334 +illusion_0.75L,sr,35,7.0,velocity,upper_ux,1.3746272325515747 +illusion_0.75L,sr,35,7.0,velocity,upper_uy,-0.04297914355993271 +illusion_0.75L,sr,35,7.0,velocity,center_ux,0.741303563117981 +illusion_0.75L,sr,35,7.0,velocity,center_uy,0.38539400696754456 +illusion_0.75L,sr,35,7.0,velocity,lower_ux,0.8068477511405945 +illusion_0.75L,sr,35,7.0,velocity,lower_uy,0.1588970422744751 +illusion_0.75L,sr,36,7.2,velocity,upper_ux,1.323386549949646 +illusion_0.75L,sr,36,7.2,velocity,upper_uy,0.05022113025188446 +illusion_0.75L,sr,36,7.2,velocity,center_ux,0.7547557353973389 +illusion_0.75L,sr,36,7.2,velocity,center_uy,0.459819495677948 +illusion_0.75L,sr,36,7.2,velocity,lower_ux,0.8319914937019348 +illusion_0.75L,sr,36,7.2,velocity,lower_uy,0.19150297343730927 +illusion_0.75L,sr,37,7.4,velocity,upper_ux,1.2499226331710815 +illusion_0.75L,sr,37,7.4,velocity,upper_uy,0.13399088382720947 +illusion_0.75L,sr,37,7.4,velocity,center_ux,0.7819072604179382 +illusion_0.75L,sr,37,7.4,velocity,center_uy,0.4806630611419678 +illusion_0.75L,sr,37,7.4,velocity,lower_ux,0.8573716878890991 +illusion_0.75L,sr,37,7.4,velocity,lower_uy,0.22098948061466217 +illusion_0.75L,sr,38,7.6,velocity,upper_ux,1.169438123703003 +illusion_0.75L,sr,38,7.6,velocity,upper_uy,0.1943267434835434 +illusion_0.75L,sr,38,7.6,velocity,center_ux,0.813022792339325 +illusion_0.75L,sr,38,7.6,velocity,center_uy,0.4703579843044281 +illusion_0.75L,sr,38,7.6,velocity,lower_ux,0.8831759691238403 +illusion_0.75L,sr,38,7.6,velocity,lower_uy,0.246986523270607 +illusion_0.75L,sr,39,7.8,velocity,upper_ux,1.0955232381820679 +illusion_0.75L,sr,39,7.8,velocity,upper_uy,0.22664685547351837 +illusion_0.75L,sr,39,7.8,velocity,center_ux,0.839527428150177 +illusion_0.75L,sr,39,7.8,velocity,center_uy,0.4547146260738373 +illusion_0.75L,sr,39,7.8,velocity,lower_ux,0.9093071222305298 +illusion_0.75L,sr,39,7.8,velocity,lower_uy,0.2697378396987915 +illusion_0.75L,sr,40,8.0,velocity,upper_ux,1.0354607105255127 +illusion_0.75L,sr,40,8.0,velocity,upper_uy,0.23530855774879456 +illusion_0.75L,sr,40,8.0,velocity,center_ux,0.8585458397865295 +illusion_0.75L,sr,40,8.0,velocity,center_uy,0.4457381069660187 +illusion_0.75L,sr,40,8.0,velocity,lower_ux,0.9354730844497681 +illusion_0.75L,sr,40,8.0,velocity,lower_uy,0.2896534204483032 +illusion_0.75L,sr,41,8.2,velocity,upper_ux,0.9896714091300964 +illusion_0.75L,sr,41,8.2,velocity,upper_uy,0.22888778150081635 +illusion_0.75L,sr,41,8.2,velocity,center_ux,0.871296763420105 +illusion_0.75L,sr,41,8.2,velocity,center_uy,0.4442456066608429 +illusion_0.75L,sr,41,8.2,velocity,lower_ux,0.9615901708602905 +illusion_0.75L,sr,41,8.2,velocity,lower_uy,0.30721285939216614 +illusion_0.75L,sr,42,8.4,velocity,upper_ux,0.9551780223846436 +illusion_0.75L,sr,42,8.4,velocity,upper_uy,0.2151242047548294 +illusion_0.75L,sr,42,8.4,velocity,center_ux,0.8795709013938904 +illusion_0.75L,sr,42,8.4,velocity,center_uy,0.4482070803642273 +illusion_0.75L,sr,42,8.4,velocity,lower_ux,0.9875639081001282 +illusion_0.75L,sr,42,8.4,velocity,lower_uy,0.3227161169052124 +illusion_0.75L,sr,43,8.6,velocity,upper_ux,0.9279525876045227 +illusion_0.75L,sr,43,8.6,velocity,upper_uy,0.19866420328617096 +illusion_0.75L,sr,43,8.6,velocity,center_ux,0.8845279216766357 +illusion_0.75L,sr,43,8.6,velocity,center_uy,0.45568180084228516 +illusion_0.75L,sr,43,8.6,velocity,lower_ux,1.0135035514831543 +illusion_0.75L,sr,43,8.6,velocity,lower_uy,0.3364955484867096 +illusion_0.75L,sr,44,8.8,velocity,upper_ux,0.904988706111908 +illusion_0.75L,sr,44,8.8,velocity,upper_uy,0.18139170110225677 +illusion_0.75L,sr,44,8.8,velocity,center_ux,0.8865459561347961 +illusion_0.75L,sr,44,8.8,velocity,center_uy,0.46460217237472534 +illusion_0.75L,sr,44,8.8,velocity,lower_ux,1.0394498109817505 +illusion_0.75L,sr,44,8.8,velocity,lower_uy,0.34870749711990356 +illusion_0.75L,sr,45,9.0,velocity,upper_ux,0.8845665454864502 +illusion_0.75L,sr,45,9.0,velocity,upper_uy,0.16338346898555756 +illusion_0.75L,sr,45,9.0,velocity,center_ux,0.885469913482666 +illusion_0.75L,sr,45,9.0,velocity,center_uy,0.4723506569862366 +illusion_0.75L,sr,45,9.0,velocity,lower_ux,1.065626621246338 +illusion_0.75L,sr,45,9.0,velocity,lower_uy,0.3594871163368225 +illusion_0.75L,sr,46,9.2,velocity,upper_ux,0.866209089756012 +illusion_0.75L,sr,46,9.2,velocity,upper_uy,0.14407779276371002 +illusion_0.75L,sr,46,9.2,velocity,center_ux,0.8806793093681335 +illusion_0.75L,sr,46,9.2,velocity,center_uy,0.47554901242256165 +illusion_0.75L,sr,46,9.2,velocity,lower_ux,1.0922458171844482 +illusion_0.75L,sr,46,9.2,velocity,lower_uy,0.36883431673049927 +illusion_0.75L,sr,47,9.4,velocity,upper_ux,0.8500984907150269 +illusion_0.75L,sr,47,9.4,velocity,upper_uy,0.12276522815227509 +illusion_0.75L,sr,47,9.4,velocity,center_ux,0.871197521686554 +illusion_0.75L,sr,47,9.4,velocity,center_uy,0.47023501992225647 +illusion_0.75L,sr,47,9.4,velocity,lower_ux,1.1196080446243286 +illusion_0.75L,sr,47,9.4,velocity,lower_uy,0.37671124935150146 +illusion_0.75L,sr,48,9.6,velocity,upper_ux,0.8367047309875488 +illusion_0.75L,sr,48,9.6,velocity,upper_uy,0.09895047545433044 +illusion_0.75L,sr,48,9.6,velocity,center_ux,0.8559049367904663 +illusion_0.75L,sr,48,9.6,velocity,center_uy,0.45225226879119873 +illusion_0.75L,sr,48,9.6,velocity,lower_ux,1.1479263305664062 +illusion_0.75L,sr,48,9.6,velocity,lower_uy,0.3829626739025116 +illusion_0.75L,sr,49,9.8,velocity,upper_ux,0.8263615369796753 +illusion_0.75L,sr,49,9.8,velocity,upper_uy,0.0722932443022728 +illusion_0.75L,sr,49,9.8,velocity,center_ux,0.8337544798851013 +illusion_0.75L,sr,49,9.8,velocity,center_uy,0.4178123474121094 +illusion_0.75L,sr,49,9.8,velocity,lower_ux,1.1774370670318604 +illusion_0.75L,sr,49,9.8,velocity,lower_uy,0.3872963786125183 +illusion_0.75L,sr,50,10.0,velocity,upper_ux,0.8192840814590454 +illusion_0.75L,sr,50,10.0,velocity,upper_uy,0.04297204315662384 +illusion_0.75L,sr,50,10.0,velocity,center_ux,0.8045274615287781 +illusion_0.75L,sr,50,10.0,velocity,center_uy,0.36491283774375916 +illusion_0.75L,sr,50,10.0,velocity,lower_ux,1.207869529724121 +illusion_0.75L,sr,50,10.0,velocity,lower_uy,0.38922664523124695 +illusion_0.75L,sr,51,10.2,velocity,upper_ux,0.8150880932807922 +illusion_0.75L,sr,51,10.2,velocity,upper_uy,0.010907535441219807 +illusion_0.75L,sr,51,10.2,velocity,center_ux,0.7681028842926025 +illusion_0.75L,sr,51,10.2,velocity,center_uy,0.2926825284957886 +illusion_0.75L,sr,51,10.2,velocity,lower_ux,1.238896131515503 +illusion_0.75L,sr,51,10.2,velocity,lower_uy,0.38802143931388855 +illusion_0.75L,sr,52,10.4,velocity,upper_ux,0.8134474158287048 +illusion_0.75L,sr,52,10.4,velocity,upper_uy,-0.023449495434761047 +illusion_0.75L,sr,52,10.4,velocity,center_ux,0.7255308628082275 +illusion_0.75L,sr,52,10.4,velocity,center_uy,0.20272259414196014 +illusion_0.75L,sr,52,10.4,velocity,lower_ux,1.2692962884902954 +illusion_0.75L,sr,52,10.4,velocity,lower_uy,0.3825637102127075 +illusion_0.75L,sr,53,10.6,velocity,upper_ux,0.8142286539077759 +illusion_0.75L,sr,53,10.6,velocity,upper_uy,-0.059722334146499634 +illusion_0.75L,sr,53,10.6,velocity,center_ux,0.6784133315086365 +illusion_0.75L,sr,53,10.6,velocity,center_uy,0.09730859845876694 +illusion_0.75L,sr,53,10.6,velocity,lower_ux,1.2974493503570557 +illusion_0.75L,sr,53,10.6,velocity,lower_uy,0.3712138831615448 +illusion_0.75L,sr,54,10.8,velocity,upper_ux,0.817565381526947 +illusion_0.75L,sr,54,10.8,velocity,upper_uy,-0.09695689380168915 +illusion_0.75L,sr,54,10.8,velocity,center_ux,0.6299600601196289 +illusion_0.75L,sr,54,10.8,velocity,center_uy,-0.018962504342198372 +illusion_0.75L,sr,54,10.8,velocity,lower_ux,1.3205876350402832 +illusion_0.75L,sr,54,10.8,velocity,lower_uy,0.3518913686275482 +illusion_0.75L,sr,55,11.0,velocity,upper_ux,0.823728621006012 +illusion_0.75L,sr,55,11.0,velocity,upper_uy,-0.1342857927083969 +illusion_0.75L,sr,55,11.0,velocity,center_ux,0.5850232839584351 +illusion_0.75L,sr,55,11.0,velocity,center_uy,-0.139706090092659 +illusion_0.75L,sr,55,11.0,velocity,lower_ux,1.3352055549621582 +illusion_0.75L,sr,55,11.0,velocity,lower_uy,0.3220454454421997 +illusion_0.75L,sr,56,11.2,velocity,upper_ux,0.8328362107276917 +illusion_0.75L,sr,56,11.2,velocity,upper_uy,-0.17074644565582275 +illusion_0.75L,sr,56,11.2,velocity,center_ux,0.550769567489624 +illusion_0.75L,sr,56,11.2,velocity,center_uy,-0.2545641362667084 +illusion_0.75L,sr,56,11.2,velocity,lower_ux,1.3369859457015991 +illusion_0.75L,sr,56,11.2,velocity,lower_uy,0.27911415696144104 +illusion_0.75L,sr,57,11.4,velocity,upper_ux,0.8449108600616455 +illusion_0.75L,sr,57,11.4,velocity,upper_uy,-0.2057787925004959 +illusion_0.75L,sr,57,11.4,velocity,center_ux,0.5348131656646729 +illusion_0.75L,sr,57,11.4,velocity,center_uy,-0.351433664560318 +illusion_0.75L,sr,57,11.4,velocity,lower_ux,1.3214794397354126 +illusion_0.75L,sr,57,11.4,velocity,lower_uy,0.22080937027931213 +illusion_0.75L,sr,58,11.6,velocity,upper_ux,0.8597846031188965 +illusion_0.75L,sr,58,11.6,velocity,upper_uy,-0.2390264868736267 +illusion_0.75L,sr,58,11.6,velocity,center_ux,0.5409399271011353 +illusion_0.75L,sr,58,11.6,velocity,center_uy,-0.4215989410877228 +illusion_0.75L,sr,58,11.6,velocity,lower_ux,1.2845627069473267 +illusion_0.75L,sr,58,11.6,velocity,lower_uy,0.14582397043704987 +illusion_0.75L,sr,59,11.8,velocity,upper_ux,0.8772647380828857 +illusion_0.75L,sr,59,11.8,velocity,upper_uy,-0.27036038041114807 +illusion_0.75L,sr,59,11.8,velocity,center_ux,0.5652447938919067 +illusion_0.75L,sr,59,11.8,velocity,center_uy,-0.46639537811279297 +illusion_0.75L,sr,59,11.8,velocity,lower_ux,1.2234708070755005 +illusion_0.75L,sr,59,11.8,velocity,lower_uy,0.05462876334786415 +illusion_0.75L,sr,60,12.0,velocity,upper_ux,0.8971307277679443 +illusion_0.75L,sr,60,12.0,velocity,upper_uy,-0.2997306287288666 +illusion_0.75L,sr,60,12.0,velocity,center_ux,0.5980241894721985 +illusion_0.75L,sr,60,12.0,velocity,center_uy,-0.49609485268592834 +illusion_0.75L,sr,60,12.0,velocity,lower_ux,1.138676404953003 +illusion_0.75L,sr,60,12.0,velocity,lower_uy,-0.048857346177101135 +illusion_0.75L,sr,61,12.2,velocity,upper_ux,0.9192708730697632 +illusion_0.75L,sr,61,12.2,velocity,upper_uy,-0.3271724283695221 +illusion_0.75L,sr,61,12.2,velocity,center_ux,0.6307089924812317 +illusion_0.75L,sr,61,12.2,velocity,center_uy,-0.5214622616767883 +illusion_0.75L,sr,61,12.2,velocity,lower_ux,1.0357155799865723 +illusion_0.75L,sr,61,12.2,velocity,lower_uy,-0.1563846915960312 +illusion_0.75L,sr,62,12.4,velocity,upper_ux,0.9434290528297424 +illusion_0.75L,sr,62,12.4,velocity,upper_uy,-0.3527897000312805 +illusion_0.75L,sr,62,12.4,velocity,center_ux,0.6595951318740845 +illusion_0.75L,sr,62,12.4,velocity,center_uy,-0.5476008057594299 +illusion_0.75L,sr,62,12.4,velocity,lower_ux,0.9252596497535706 +illusion_0.75L,sr,62,12.4,velocity,lower_uy,-0.25595253705978394 +illusion_0.75L,sr,63,12.6,velocity,upper_ux,0.9693300127983093 +illusion_0.75L,sr,63,12.6,velocity,upper_uy,-0.3765256404876709 +illusion_0.75L,sr,63,12.6,velocity,center_ux,0.684477686882019 +illusion_0.75L,sr,63,12.6,velocity,center_uy,-0.5749276876449585 +illusion_0.75L,sr,63,12.6,velocity,lower_ux,0.8213279247283936 +illusion_0.75L,sr,63,12.6,velocity,lower_uy,-0.3349321782588959 +illusion_0.75L,sr,64,12.8,velocity,upper_ux,0.996870756149292 +illusion_0.75L,sr,64,12.8,velocity,upper_uy,-0.398468017578125 +illusion_0.75L,sr,64,12.8,velocity,center_ux,0.7060941457748413 +illusion_0.75L,sr,64,12.8,velocity,center_uy,-0.6025633811950684 +illusion_0.75L,sr,64,12.8,velocity,lower_ux,0.7352319955825806 +illusion_0.75L,sr,64,12.8,velocity,lower_uy,-0.3857695758342743 +illusion_0.75L,sr,65,13.0,velocity,upper_ux,1.0259284973144531 +illusion_0.75L,sr,65,13.0,velocity,upper_uy,-0.4185980260372162 +illusion_0.75L,sr,65,13.0,velocity,center_ux,0.7247769832611084 +illusion_0.75L,sr,65,13.0,velocity,center_uy,-0.6292274594306946 +illusion_0.75L,sr,65,13.0,velocity,lower_ux,0.6718394756317139 +illusion_0.75L,sr,65,13.0,velocity,lower_uy,-0.4082767963409424 +illusion_0.75L,sr,66,13.2,velocity,upper_ux,1.056424617767334 +illusion_0.75L,sr,66,13.2,velocity,upper_uy,-0.43691906332969666 +illusion_0.75L,sr,66,13.2,velocity,center_ux,0.7404801845550537 +illusion_0.75L,sr,66,13.2,velocity,center_uy,-0.6529431939125061 +illusion_0.75L,sr,66,13.2,velocity,lower_ux,0.6284840106964111 +illusion_0.75L,sr,66,13.2,velocity,lower_uy,-0.4082629382610321 +illusion_0.75L,sr,67,13.4,velocity,upper_ux,1.0883150100708008 +illusion_0.75L,sr,67,13.4,velocity,upper_uy,-0.453399121761322 +illusion_0.75L,sr,67,13.4,velocity,center_ux,0.7528669834136963 +illusion_0.75L,sr,67,13.4,velocity,center_uy,-0.670487642288208 +illusion_0.75L,sr,67,13.4,velocity,lower_ux,0.5983073711395264 +illusion_0.75L,sr,67,13.4,velocity,lower_uy,-0.3929885923862457 +illusion_0.75L,sr,68,13.6,velocity,upper_ux,1.1216429471969604 +illusion_0.75L,sr,68,13.6,velocity,upper_uy,-0.4679229259490967 +illusion_0.75L,sr,68,13.6,velocity,center_ux,0.7614156603813171 +illusion_0.75L,sr,68,13.6,velocity,center_uy,-0.6774071455001831 +illusion_0.75L,sr,68,13.6,velocity,lower_ux,0.5745886564254761 +illusion_0.75L,sr,68,13.6,velocity,lower_uy,-0.36756759881973267 +illusion_0.75L,sr,69,13.8,velocity,upper_ux,1.15640127658844 +illusion_0.75L,sr,69,13.8,velocity,upper_uy,-0.4803098440170288 +illusion_0.75L,sr,69,13.8,velocity,center_ux,0.7654392719268799 +illusion_0.75L,sr,69,13.8,velocity,center_uy,-0.6688260436058044 +illusion_0.75L,sr,69,13.8,velocity,lower_ux,0.5532622337341309 +illusion_0.75L,sr,69,13.8,velocity,lower_uy,-0.334123432636261 +illusion_0.75L,sr,70,14.0,velocity,upper_ux,1.19275963306427 +illusion_0.75L,sr,70,14.0,velocity,upper_uy,-0.49030008912086487 +illusion_0.75L,sr,70,14.0,velocity,center_ux,0.7642108201980591 +illusion_0.75L,sr,70,14.0,velocity,center_uy,-0.6406832337379456 +illusion_0.75L,sr,70,14.0,velocity,lower_ux,0.5329161286354065 +illusion_0.75L,sr,70,14.0,velocity,lower_uy,-0.2925803065299988 +illusion_0.75L,sr,71,14.2,velocity,upper_ux,1.2301222085952759 +illusion_0.75L,sr,71,14.2,velocity,upper_uy,-0.49726665019989014 +illusion_0.75L,sr,71,14.2,velocity,center_ux,0.7571839094161987 +illusion_0.75L,sr,71,14.2,velocity,center_uy,-0.5916934013366699 +illusion_0.75L,sr,71,14.2,velocity,lower_ux,0.514448344707489 +illusion_0.75L,sr,71,14.2,velocity,lower_uy,-0.2429625391960144 +illusion_0.75L,sr,72,14.4,velocity,upper_ux,1.267937421798706 +illusion_0.75L,sr,72,14.4,velocity,upper_uy,-0.5002312660217285 +illusion_0.75L,sr,72,14.4,velocity,center_ux,0.7441258430480957 +illusion_0.75L,sr,72,14.4,velocity,center_uy,-0.5229924917221069 +illusion_0.75L,sr,72,14.4,velocity,lower_ux,0.49969345331192017 +illusion_0.75L,sr,72,14.4,velocity,lower_uy,-0.18547403812408447 +illusion_0.75L,sr,73,14.6,velocity,upper_ux,1.304511308670044 +illusion_0.75L,sr,73,14.6,velocity,upper_uy,-0.49753281474113464 +illusion_0.75L,sr,73,14.6,velocity,center_ux,0.724854588508606 +illusion_0.75L,sr,73,14.6,velocity,center_uy,-0.43736863136291504 +illusion_0.75L,sr,73,14.6,velocity,lower_ux,0.49095767736434937 +illusion_0.75L,sr,73,14.6,velocity,lower_uy,-0.12183666974306107 +illusion_0.75L,sr,74,14.8,velocity,upper_ux,1.337403416633606 +illusion_0.75L,sr,74,14.8,velocity,upper_uy,-0.48669320344924927 +illusion_0.75L,sr,74,14.8,velocity,center_ux,0.6995964646339417 +illusion_0.75L,sr,74,14.8,velocity,center_uy,-0.33697205781936646 +illusion_0.75L,sr,74,14.8,velocity,lower_ux,0.4909442961215973 +illusion_0.75L,sr,74,14.8,velocity,lower_uy,-0.05527741089463234 +illusion_0.75L,sr,75,15.0,velocity,upper_ux,1.3631584644317627 +illusion_0.75L,sr,75,15.0,velocity,upper_uy,-0.46445944905281067 +illusion_0.75L,sr,75,15.0,velocity,center_ux,0.6690961718559265 +illusion_0.75L,sr,75,15.0,velocity,center_uy,-0.2226645052433014 +illusion_0.75L,sr,75,15.0,velocity,lower_ux,0.502276599407196 +illusion_0.75L,sr,75,15.0,velocity,lower_uy,0.009365632198750973 +illusion_0.75L,sr,76,15.2,velocity,upper_ux,1.377921462059021 +illusion_0.75L,sr,76,15.2,velocity,upper_uy,-0.4270874857902527 +illusion_0.75L,sr,76,15.2,velocity,center_ux,0.6349999904632568 +illusion_0.75L,sr,76,15.2,velocity,center_uy,-0.09457799047231674 +illusion_0.75L,sr,76,15.2,velocity,lower_ux,0.5267690420150757 +illusion_0.75L,sr,76,15.2,velocity,lower_uy,0.06676255911588669 +illusion_0.75L,sr,77,15.4,velocity,upper_ux,1.3777527809143066 +illusion_0.75L,sr,77,15.4,velocity,upper_uy,-0.3709149956703186 +illusion_0.75L,sr,77,15.4,velocity,center_ux,0.5998387932777405 +illusion_0.75L,sr,77,15.4,velocity,center_uy,0.045715559273958206 +illusion_0.75L,sr,77,15.4,velocity,lower_ux,0.563523530960083 +illusion_0.75L,sr,77,15.4,velocity,lower_uy,0.1132243275642395 +illusion_0.75L,sr,78,15.6,velocity,upper_ux,1.3589370250701904 +illusion_0.75L,sr,78,15.6,velocity,upper_uy,-0.29226866364479065 +illusion_0.75L,sr,78,15.6,velocity,center_ux,0.5666790008544922 +illusion_0.75L,sr,78,15.6,velocity,center_uy,0.19478732347488403 +illusion_0.75L,sr,78,15.6,velocity,lower_ux,0.6080494523048401 +illusion_0.75L,sr,78,15.6,velocity,lower_uy,0.14987409114837646 +illusion_0.75L,sr,79,15.8,velocity,upper_ux,1.3178908824920654 +illusion_0.75L,sr,79,15.8,velocity,upper_uy,-0.18796581029891968 +illusion_0.75L,sr,79,15.8,velocity,center_ux,0.5393421649932861 +illusion_0.75L,sr,79,15.8,velocity,center_uy,0.34577447175979614 +illusion_0.75L,sr,79,15.8,velocity,lower_ux,0.6537353992462158 +illusion_0.75L,sr,79,15.8,velocity,lower_uy,0.18228182196617126 +illusion_0.75L,sr,80,16.0,velocity,upper_ux,1.2528915405273438 +illusion_0.75L,sr,80,16.0,velocity,upper_uy,-0.057752180844545364 +illusion_0.75L,sr,80,16.0,velocity,center_ux,0.5229441523551941 +illusion_0.75L,sr,80,16.0,velocity,center_uy,0.4868277311325073 +illusion_0.75L,sr,80,16.0,velocity,lower_ux,0.6958708167076111 +illusion_0.75L,sr,80,16.0,velocity,lower_uy,0.2160121202468872 +illusion_0.75L,sr,81,16.2,velocity,upper_ux,1.167083740234375 +illusion_0.75L,sr,81,16.2,velocity,upper_uy,0.09218364953994751 +illusion_0.75L,sr,81,16.2,velocity,center_ux,0.5236048698425293 +illusion_0.75L,sr,81,16.2,velocity,center_uy,0.6009323596954346 +illusion_0.75L,sr,81,16.2,velocity,lower_ux,0.7340152263641357 +illusion_0.75L,sr,81,16.2,velocity,lower_uy,0.25236061215400696 +illusion_0.75L,sr,82,16.4,velocity,upper_ux,1.0693622827529907 +illusion_0.75L,sr,82,16.4,velocity,upper_uy,0.24827493727207184 +illusion_0.75L,sr,82,16.4,velocity,center_ux,0.5455117225646973 +illusion_0.75L,sr,82,16.4,velocity,center_uy,0.6719841957092285 +illusion_0.75L,sr,82,16.4,velocity,lower_ux,0.7702889442443848 +illusion_0.75L,sr,82,16.4,velocity,lower_uy,0.2889007329940796 +illusion_0.75L,sr,83,16.6,velocity,upper_ux,0.9710177779197693 +illusion_0.75L,sr,83,16.6,velocity,upper_uy,0.39307937026023865 +illusion_0.75L,sr,83,16.6,velocity,center_ux,0.5852741003036499 +illusion_0.75L,sr,83,16.6,velocity,center_uy,0.699954092502594 +illusion_0.75L,sr,83,16.6,velocity,lower_ux,0.8065750598907471 +illusion_0.75L,sr,83,16.6,velocity,lower_uy,0.32298678159713745 +illusion_0.75L,sr,84,16.8,velocity,upper_ux,0.881702721118927 +illusion_0.75L,sr,84,16.8,velocity,upper_uy,0.5098421573638916 +illusion_0.75L,sr,84,16.8,velocity,center_ux,0.6317232251167297 +illusion_0.75L,sr,84,16.8,velocity,center_uy,0.7056443691253662 +illusion_0.75L,sr,84,16.8,velocity,lower_ux,0.843579888343811 +illusion_0.75L,sr,84,16.8,velocity,lower_uy,0.35364338755607605 +illusion_0.75L,sr,85,17.0,velocity,upper_ux,0.8099782466888428 +illusion_0.75L,sr,85,17.0,velocity,upper_uy,0.5844775438308716 +illusion_0.75L,sr,85,17.0,velocity,center_ux,0.67473965883255 +illusion_0.75L,sr,85,17.0,velocity,center_uy,0.7112268209457397 +illusion_0.75L,sr,85,17.0,velocity,lower_ux,0.8813610672950745 +illusion_0.75L,sr,85,17.0,velocity,lower_uy,0.3808075785636902 +illusion_0.75L,sr,86,17.2,velocity,upper_ux,0.7604686617851257 +illusion_0.75L,sr,86,17.2,velocity,upper_uy,0.6129316091537476 +illusion_0.75L,sr,86,17.2,velocity,center_ux,0.7114037871360779 +illusion_0.75L,sr,86,17.2,velocity,center_uy,0.7241091728210449 +illusion_0.75L,sr,86,17.2,velocity,lower_ux,0.9198318719863892 +illusion_0.75L,sr,86,17.2,velocity,lower_uy,0.4047515392303467 +illusion_0.75L,sr,87,17.4,velocity,upper_ux,0.73012375831604 +illusion_0.75L,sr,87,17.4,velocity,upper_uy,0.6056303381919861 +illusion_0.75L,sr,87,17.4,velocity,center_ux,0.7430829405784607 +illusion_0.75L,sr,87,17.4,velocity,center_uy,0.7418619394302368 +illusion_0.75L,sr,87,17.4,velocity,lower_ux,0.9589740037918091 +illusion_0.75L,sr,87,17.4,velocity,lower_uy,0.42570221424102783 +illusion_0.75L,sr,88,17.6,velocity,upper_ux,0.7092968225479126 +illusion_0.75L,sr,88,17.6,velocity,upper_uy,0.5801941156387329 +illusion_0.75L,sr,88,17.6,velocity,center_ux,0.7711195945739746 +illusion_0.75L,sr,88,17.6,velocity,center_uy,0.7607528567314148 +illusion_0.75L,sr,88,17.6,velocity,lower_ux,0.9987806081771851 +illusion_0.75L,sr,88,17.6,velocity,lower_uy,0.4438519775867462 +illusion_0.75L,sr,89,17.8,velocity,upper_ux,0.6885035634040833 +illusion_0.75L,sr,89,17.8,velocity,upper_uy,0.5491849780082703 +illusion_0.75L,sr,89,17.8,velocity,center_ux,0.7958633303642273 +illusion_0.75L,sr,89,17.8,velocity,center_uy,0.776763916015625 +illusion_0.75L,sr,89,17.8,velocity,lower_ux,1.0392894744873047 +illusion_0.75L,sr,89,17.8,velocity,lower_uy,0.4592745900154114 +illusion_0.75L,sr,90,18.0,velocity,upper_ux,0.6631391644477844 +illusion_0.75L,sr,90,18.0,velocity,upper_uy,0.5156140327453613 +illusion_0.75L,sr,90,18.0,velocity,center_ux,0.8169142007827759 +illusion_0.75L,sr,90,18.0,velocity,center_uy,0.7840750217437744 +illusion_0.75L,sr,90,18.0,velocity,lower_ux,1.0806537866592407 +illusion_0.75L,sr,90,18.0,velocity,lower_uy,0.47199809551239014 +illusion_0.75L,sr,91,18.2,velocity,upper_ux,0.633233904838562 +illusion_0.75L,sr,91,18.2,velocity,upper_uy,0.47659680247306824 +illusion_0.75L,sr,91,18.2,velocity,center_ux,0.8332778215408325 +illusion_0.75L,sr,91,18.2,velocity,center_uy,0.7751429080963135 +illusion_0.75L,sr,91,18.2,velocity,lower_ux,1.1230933666229248 +illusion_0.75L,sr,91,18.2,velocity,lower_uy,0.4819127917289734 +illusion_0.75L,sr,92,18.4,velocity,upper_ux,0.6010900139808655 +illusion_0.75L,sr,92,18.4,velocity,upper_uy,0.42791229486465454 +illusion_0.75L,sr,92,18.4,velocity,center_ux,0.8435145020484924 +illusion_0.75L,sr,92,18.4,velocity,center_uy,0.7431294918060303 +illusion_0.75L,sr,92,18.4,velocity,lower_ux,1.1666380167007446 +illusion_0.75L,sr,92,18.4,velocity,lower_uy,0.48873183131217957 +illusion_0.75L,sr,93,18.6,velocity,upper_ux,0.5698515176773071 +illusion_0.75L,sr,93,18.6,velocity,upper_uy,0.3666219413280487 +illusion_0.75L,sr,93,18.6,velocity,center_ux,0.8465175032615662 +illusion_0.75L,sr,93,18.6,velocity,center_uy,0.6855533719062805 +illusion_0.75L,sr,93,18.6,velocity,lower_ux,1.2111057043075562 +illusion_0.75L,sr,93,18.6,velocity,lower_uy,0.4918633997440338 +illusion_0.75L,sr,94,18.8,velocity,upper_ux,0.5424081683158875 +illusion_0.75L,sr,94,18.8,velocity,upper_uy,0.29141852259635925 +illusion_0.75L,sr,94,18.8,velocity,center_ux,0.8417778611183167 +illusion_0.75L,sr,94,18.8,velocity,center_uy,0.6049549579620361 +illusion_0.75L,sr,94,18.8,velocity,lower_ux,1.256184458732605 +illusion_0.75L,sr,94,18.8,velocity,lower_uy,0.4901794195175171 +illusion_0.75L,sr,95,19.0,velocity,upper_ux,0.5216461420059204 +illusion_0.75L,sr,95,19.0,velocity,upper_uy,0.20472323894500732 +illusion_0.75L,sr,95,19.0,velocity,center_ux,0.8292355537414551 +illusion_0.75L,sr,95,19.0,velocity,center_uy,0.5077812671661377 +illusion_0.75L,sr,95,19.0,velocity,lower_ux,1.2998216152191162 +illusion_0.75L,sr,95,19.0,velocity,lower_uy,0.48179298639297485 +illusion_0.75L,sr,96,19.2,velocity,upper_ux,0.5095183849334717 +illusion_0.75L,sr,96,19.2,velocity,upper_uy,0.1092485785484314 +illusion_0.75L,sr,96,19.2,velocity,center_ux,0.808817982673645 +illusion_0.75L,sr,96,19.2,velocity,center_uy,0.39550819993019104 +illusion_0.75L,sr,96,19.2,velocity,lower_ux,1.3398032188415527 +illusion_0.75L,sr,96,19.2,velocity,lower_uy,0.46355536580085754 +illusion_0.75L,sr,97,19.4,velocity,upper_ux,0.5081629753112793 +illusion_0.75L,sr,97,19.4,velocity,upper_uy,0.011739912442862988 +illusion_0.75L,sr,97,19.4,velocity,center_ux,0.7815179228782654 +illusion_0.75L,sr,97,19.4,velocity,center_uy,0.2674208879470825 +illusion_0.75L,sr,97,19.4,velocity,lower_ux,1.3717483282089233 +illusion_0.75L,sr,97,19.4,velocity,lower_uy,0.43160971999168396 +illusion_0.75L,sr,98,19.6,velocity,upper_ux,0.5196765661239624 +illusion_0.75L,sr,98,19.6,velocity,upper_uy,-0.08094798028469086 +illusion_0.75L,sr,98,19.6,velocity,center_ux,0.7495769262313843 +illusion_0.75L,sr,98,19.6,velocity,center_uy,0.11970029771327972 +illusion_0.75L,sr,98,19.6,velocity,lower_ux,1.3914397954940796 +illusion_0.75L,sr,98,19.6,velocity,lower_uy,0.3812516927719116 +illusion_0.75L,sr,99,19.8,velocity,upper_ux,0.5457546710968018 +illusion_0.75L,sr,99,19.8,velocity,upper_uy,-0.15942350029945374 +illusion_0.75L,sr,99,19.8,velocity,center_ux,0.7172305583953857 +illusion_0.75L,sr,99,19.8,velocity,center_uy,-0.045268964022397995 +illusion_0.75L,sr,99,19.8,velocity,lower_ux,1.3945159912109375 +illusion_0.75L,sr,99,19.8,velocity,lower_uy,0.3086981773376465 +illusion_0.75L,sr,100,20.0,velocity,upper_ux,0.585995078086853 +illusion_0.75L,sr,100,20.0,velocity,upper_uy,-0.21766430139541626 +illusion_0.75L,sr,100,20.0,velocity,center_ux,0.6888386011123657 +illusion_0.75L,sr,100,20.0,velocity,center_uy,-0.22059516608715057 +illusion_0.75L,sr,100,20.0,velocity,lower_ux,1.3767962455749512 +illusion_0.75L,sr,100,20.0,velocity,lower_uy,0.2101135104894638 +illusion_0.75L,sr,101,20.2,velocity,upper_ux,0.6356004476547241 +illusion_0.75L,sr,101,20.2,velocity,upper_uy,-0.25661608576774597 +illusion_0.75L,sr,101,20.2,velocity,center_ux,0.6688918471336365 +illusion_0.75L,sr,101,20.2,velocity,center_uy,-0.3917948603630066 +illusion_0.75L,sr,101,20.2,velocity,lower_ux,1.3339670896530151 +illusion_0.75L,sr,101,20.2,velocity,lower_uy,0.08421017974615097 +illusion_0.75L,sr,102,20.4,velocity,upper_ux,0.6873619556427002 +illusion_0.75L,sr,102,20.4,velocity,upper_uy,-0.2849559485912323 +illusion_0.75L,sr,102,20.4,velocity,center_ux,0.6620275974273682 +illusion_0.75L,sr,102,20.4,velocity,center_uy,-0.5383352637290955 +illusion_0.75L,sr,102,20.4,velocity,lower_ux,1.2651164531707764 +illusion_0.75L,sr,102,20.4,velocity,lower_uy,-0.06312523782253265 +illusion_0.75L,sr,103,20.6,velocity,upper_ux,0.7364208102226257 +illusion_0.75L,sr,103,20.6,velocity,upper_uy,-0.31112468242645264 +illusion_0.75L,sr,103,20.6,velocity,center_ux,0.6719561219215393 +illusion_0.75L,sr,103,20.6,velocity,center_uy,-0.6383970379829407 +illusion_0.75L,sr,103,20.6,velocity,lower_ux,1.1770451068878174 +illusion_0.75L,sr,103,20.6,velocity,lower_uy,-0.21508225798606873 +illusion_0.75L,sr,104,20.8,velocity,upper_ux,0.7839325070381165 +illusion_0.75L,sr,104,20.8,velocity,upper_uy,-0.3381911814212799 +illusion_0.75L,sr,104,20.8,velocity,center_ux,0.6995118856430054 +illusion_0.75L,sr,104,20.8,velocity,center_uy,-0.6851035952568054 +illusion_0.75L,sr,104,20.8,velocity,lower_ux,1.0863851308822632 +illusion_0.75L,sr,104,20.8,velocity,lower_uy,-0.34831535816192627 +illusion_0.75L,sr,105,21.0,velocity,upper_ux,0.8254247307777405 +illusion_0.75L,sr,105,21.0,velocity,upper_uy,-0.3621295988559723 +illusion_0.75L,sr,105,21.0,velocity,center_ux,0.7319447994232178 +illusion_0.75L,sr,105,21.0,velocity,center_uy,-0.6905348300933838 +illusion_0.75L,sr,105,21.0,velocity,lower_ux,0.9984991550445557 +illusion_0.75L,sr,105,21.0,velocity,lower_uy,-0.4408612549304962 +illusion_0.75L,sr,106,21.2,velocity,upper_ux,0.8678367733955383 +illusion_0.75L,sr,106,21.2,velocity,upper_uy,-0.3842242360115051 +illusion_0.75L,sr,106,21.2,velocity,center_ux,0.7655799984931946 +illusion_0.75L,sr,106,21.2,velocity,center_uy,-0.6873084902763367 +illusion_0.75L,sr,106,21.2,velocity,lower_ux,0.9302557110786438 +illusion_0.75L,sr,106,21.2,velocity,lower_uy,-0.48829981684684753 +illusion_0.75L,sr,107,21.4,velocity,upper_ux,0.9096685647964478 +illusion_0.75L,sr,107,21.4,velocity,upper_uy,-0.40345174074172974 +illusion_0.75L,sr,107,21.4,velocity,center_ux,0.7944763898849487 +illusion_0.75L,sr,107,21.4,velocity,center_uy,-0.6889665722846985 +illusion_0.75L,sr,107,21.4,velocity,lower_ux,0.8804562091827393 +illusion_0.75L,sr,107,21.4,velocity,lower_uy,-0.4971875250339508 +illusion_0.75L,sr,108,21.6,velocity,upper_ux,0.9512227773666382 +illusion_0.75L,sr,108,21.6,velocity,upper_uy,-0.42002734541893005 +illusion_0.75L,sr,108,21.6,velocity,center_ux,0.8187807202339172 +illusion_0.75L,sr,108,21.6,velocity,center_uy,-0.6973130106925964 +illusion_0.75L,sr,108,21.6,velocity,lower_ux,0.843890368938446 +illusion_0.75L,sr,108,21.6,velocity,lower_uy,-0.48311883211135864 +illusion_0.75L,sr,109,21.8,velocity,upper_ux,0.9926062822341919 +illusion_0.75L,sr,109,21.8,velocity,upper_uy,-0.4340975880622864 +illusion_0.75L,sr,109,21.8,velocity,center_ux,0.8395019769668579 +illusion_0.75L,sr,109,21.8,velocity,center_uy,-0.7098146677017212 +illusion_0.75L,sr,109,21.8,velocity,lower_ux,0.8129568696022034 +illusion_0.75L,sr,109,21.8,velocity,lower_uy,-0.4596172571182251 +illusion_0.75L,sr,110,22.0,velocity,upper_ux,1.034171462059021 +illusion_0.75L,sr,110,22.0,velocity,upper_uy,-0.44579029083251953 +illusion_0.75L,sr,110,22.0,velocity,center_ux,0.857164740562439 +illusion_0.75L,sr,110,22.0,velocity,center_uy,-0.7229957580566406 +illusion_0.75L,sr,110,22.0,velocity,lower_ux,0.7817069888114929 +illusion_0.75L,sr,110,22.0,velocity,lower_uy,-0.4326038062572479 +illusion_0.75L,sr,111,22.2,velocity,upper_ux,1.0761334896087646 +illusion_0.75L,sr,111,22.2,velocity,upper_uy,-0.4550965428352356 +illusion_0.75L,sr,111,22.2,velocity,center_ux,0.8713608384132385 +illusion_0.75L,sr,111,22.2,velocity,center_uy,-0.7313045263290405 +illusion_0.75L,sr,111,22.2,velocity,lower_ux,0.7476345300674438 +illusion_0.75L,sr,111,22.2,velocity,lower_uy,-0.4018230736255646 +illusion_0.75L,sr,112,22.4,velocity,upper_ux,1.1215238571166992 +illusion_0.75L,sr,112,22.4,velocity,upper_uy,-0.46301037073135376 +illusion_0.75L,sr,112,22.4,velocity,center_ux,0.8831994533538818 +illusion_0.75L,sr,112,22.4,velocity,center_uy,-0.728435754776001 +illusion_0.75L,sr,112,22.4,velocity,lower_ux,0.7128795385360718 +illusion_0.75L,sr,112,22.4,velocity,lower_uy,-0.36529862880706787 +illusion_0.75L,sr,113,22.6,velocity,upper_ux,1.1621825695037842 +illusion_0.75L,sr,113,22.6,velocity,upper_uy,-0.46571284532546997 +illusion_0.75L,sr,113,22.6,velocity,center_ux,0.8844726085662842 +illusion_0.75L,sr,113,22.6,velocity,center_uy,-0.7001614570617676 +illusion_0.75L,sr,113,22.6,velocity,lower_ux,0.6739024519920349 +illusion_0.75L,sr,113,22.6,velocity,lower_uy,-0.3171673119068146 +illusion_0.75L,sr,114,22.8,velocity,upper_ux,1.2066197395324707 +illusion_0.75L,sr,114,22.8,velocity,upper_uy,-0.46608707308769226 +illusion_0.75L,sr,114,22.8,velocity,center_ux,0.880443811416626 +illusion_0.75L,sr,114,22.8,velocity,center_uy,-0.646527111530304 +illusion_0.75L,sr,114,22.8,velocity,lower_ux,0.6388167142868042 +illusion_0.75L,sr,114,22.8,velocity,lower_uy,-0.25840410590171814 +illusion_0.75L,sr,115,23.0,velocity,upper_ux,1.2516297101974487 +illusion_0.75L,sr,115,23.0,velocity,upper_uy,-0.46192049980163574 +illusion_0.75L,sr,115,23.0,velocity,center_ux,0.8682360649108887 +illusion_0.75L,sr,115,23.0,velocity,center_uy,-0.5664231777191162 +illusion_0.75L,sr,115,23.0,velocity,lower_ux,0.6091253161430359 +illusion_0.75L,sr,115,23.0,velocity,lower_uy,-0.18853312730789185 +illusion_0.75L,sr,116,23.2,velocity,upper_ux,1.2961772680282593 +illusion_0.75L,sr,116,23.2,velocity,upper_uy,-0.45141398906707764 +illusion_0.75L,sr,116,23.2,velocity,center_ux,0.8477306365966797 +illusion_0.75L,sr,116,23.2,velocity,center_uy,-0.4641994833946228 +illusion_0.75L,sr,116,23.2,velocity,lower_ux,0.5882663130760193 +illusion_0.75L,sr,116,23.2,velocity,lower_uy,-0.11031772941350937 +illusion_0.75L,sr,117,23.4,velocity,upper_ux,1.3377434015274048 +illusion_0.75L,sr,117,23.4,velocity,upper_uy,-0.4317665994167328 +illusion_0.75L,sr,117,23.4,velocity,center_ux,0.8190771341323853 +illusion_0.75L,sr,117,23.4,velocity,center_uy,-0.34297069907188416 +illusion_0.75L,sr,117,23.4,velocity,lower_ux,0.5796425342559814 +illusion_0.75L,sr,117,23.4,velocity,lower_uy,-0.02932046726346016 +illusion_0.75L,sr,118,23.6,velocity,upper_ux,1.372450351715088 +illusion_0.75L,sr,118,23.6,velocity,upper_uy,-0.3990964889526367 +illusion_0.75L,sr,118,23.6,velocity,center_ux,0.7833753228187561 +illusion_0.75L,sr,118,23.6,velocity,center_uy,-0.20212484896183014 +illusion_0.75L,sr,118,23.6,velocity,lower_ux,0.5860686302185059 +illusion_0.75L,sr,118,23.6,velocity,lower_uy,0.04712999239563942 +illusion_0.75L,sr,119,23.8,velocity,upper_ux,1.3988136053085327 +illusion_0.75L,sr,119,23.8,velocity,upper_uy,-0.3497232496738434 +illusion_0.75L,sr,119,23.8,velocity,center_ux,0.745563268661499 +illusion_0.75L,sr,119,23.8,velocity,center_uy,-0.04126204177737236 +illusion_0.75L,sr,119,23.8,velocity,lower_ux,0.6099588871002197 +illusion_0.75L,sr,119,23.8,velocity,lower_uy,0.1124332994222641 +illusion_0.75L,sr,120,24.0,velocity,upper_ux,1.4007741212844849 +illusion_0.75L,sr,120,24.0,velocity,upper_uy,-0.2768438458442688 +illusion_0.75L,sr,120,24.0,velocity,center_ux,0.7053069472312927 +illusion_0.75L,sr,120,24.0,velocity,center_uy,0.13410285115242004 +illusion_0.75L,sr,120,24.0,velocity,lower_ux,0.6437475085258484 +illusion_0.75L,sr,120,24.0,velocity,lower_uy,0.16274207830429077 +illusion_0.75L,sr,121,24.2,velocity,upper_ux,1.383222222328186 +illusion_0.75L,sr,121,24.2,velocity,upper_uy,-0.17973193526268005 +illusion_0.75L,sr,121,24.2,velocity,center_ux,0.6745011210441589 +illusion_0.75L,sr,121,24.2,velocity,center_uy,0.31033194065093994 +illusion_0.75L,sr,121,24.2,velocity,lower_ux,0.6857195496559143 +illusion_0.75L,sr,121,24.2,velocity,lower_uy,0.202341228723526 +illusion_0.75L,sr,122,24.4,velocity,upper_ux,1.337308406829834 +illusion_0.75L,sr,122,24.4,velocity,upper_uy,-0.0573650598526001 +illusion_0.75L,sr,122,24.4,velocity,center_ux,0.6579211950302124 +illusion_0.75L,sr,122,24.4,velocity,center_uy,0.4660513997077942 +illusion_0.75L,sr,122,24.4,velocity,lower_ux,0.7281022071838379 +illusion_0.75L,sr,122,24.4,velocity,lower_uy,0.2370736300945282 +illusion_0.75L,sr,123,24.6,velocity,upper_ux,1.2621556520462036 +illusion_0.75L,sr,123,24.6,velocity,upper_uy,0.08235816657543182 +illusion_0.75L,sr,123,24.6,velocity,center_ux,0.6609666347503662 +illusion_0.75L,sr,123,24.6,velocity,center_uy,0.5773590207099915 +illusion_0.75L,sr,123,24.6,velocity,lower_ux,0.7682876586914062 +illusion_0.75L,sr,123,24.6,velocity,lower_uy,0.27036553621292114 +illusion_0.75L,sr,124,24.8,velocity,upper_ux,1.166239619255066 +illusion_0.75L,sr,124,24.8,velocity,upper_uy,0.22061286866664886 +illusion_0.75L,sr,124,24.8,velocity,center_ux,0.6835752129554749 +illusion_0.75L,sr,124,24.8,velocity,center_uy,0.6327778100967407 +illusion_0.75L,sr,124,24.8,velocity,lower_ux,0.8067229390144348 +illusion_0.75L,sr,124,24.8,velocity,lower_uy,0.3018816113471985 +illusion_0.75L,sr,125,25.0,velocity,upper_ux,1.0656112432479858 +illusion_0.75L,sr,125,25.0,velocity,upper_uy,0.33419549465179443 +illusion_0.75L,sr,125,25.0,velocity,center_ux,0.7176220417022705 +illusion_0.75L,sr,125,25.0,velocity,center_uy,0.6462388038635254 +illusion_0.75L,sr,125,25.0,velocity,lower_ux,0.8444706201553345 +illusion_0.75L,sr,125,25.0,velocity,lower_uy,0.3303389251232147 +illusion_0.75L,sr,126,25.2,velocity,upper_ux,0.9784629940986633 +illusion_0.75L,sr,126,25.2,velocity,upper_uy,0.4082435965538025 +illusion_0.75L,sr,126,25.2,velocity,center_ux,0.7542007565498352 +illusion_0.75L,sr,126,25.2,velocity,center_uy,0.6468985676765442 +illusion_0.75L,sr,126,25.2,velocity,lower_ux,0.8843738436698914 +illusion_0.75L,sr,126,25.2,velocity,lower_uy,0.3562333583831787 +illusion_0.75L,sr,127,25.4,velocity,upper_ux,0.9063597917556763 +illusion_0.75L,sr,127,25.4,velocity,upper_uy,0.43804797530174255 +illusion_0.75L,sr,127,25.4,velocity,center_ux,0.781822681427002 +illusion_0.75L,sr,127,25.4,velocity,center_uy,0.6474405527114868 +illusion_0.75L,sr,127,25.4,velocity,lower_ux,0.9199788570404053 +illusion_0.75L,sr,127,25.4,velocity,lower_uy,0.37703555822372437 +illusion_0.75L,sr,128,25.6,velocity,upper_ux,0.856126070022583 +illusion_0.75L,sr,128,25.6,velocity,upper_uy,0.43738415837287903 +illusion_0.75L,sr,128,25.6,velocity,center_ux,0.8059297800064087 +illusion_0.75L,sr,128,25.6,velocity,center_uy,0.6560776233673096 +illusion_0.75L,sr,128,25.6,velocity,lower_ux,0.9582167267799377 +illusion_0.75L,sr,128,25.6,velocity,lower_uy,0.39583706855773926 +illusion_0.75L,sr,129,25.8,velocity,upper_ux,0.8189221024513245 +illusion_0.75L,sr,129,25.8,velocity,upper_uy,0.41924867033958435 +illusion_0.75L,sr,129,25.8,velocity,center_ux,0.8257819414138794 +illusion_0.75L,sr,129,25.8,velocity,center_uy,0.6691584587097168 +illusion_0.75L,sr,129,25.8,velocity,lower_ux,0.996878981590271 +illusion_0.75L,sr,129,25.8,velocity,lower_uy,0.41190123558044434 +illusion_0.75L,sr,130,26.0,velocity,upper_ux,0.7869970202445984 +illusion_0.75L,sr,130,26.0,velocity,upper_uy,0.39320647716522217 +illusion_0.75L,sr,130,26.0,velocity,center_ux,0.8421186804771423 +illusion_0.75L,sr,130,26.0,velocity,center_uy,0.6836276054382324 +illusion_0.75L,sr,130,26.0,velocity,lower_ux,1.0361855030059814 +illusion_0.75L,sr,130,26.0,velocity,lower_uy,0.4253905117511749 +illusion_0.75L,sr,131,26.2,velocity,upper_ux,0.7554827332496643 +illusion_0.75L,sr,131,26.2,velocity,upper_uy,0.3625795245170593 +illusion_0.75L,sr,131,26.2,velocity,center_ux,0.8548383116722107 +illusion_0.75L,sr,131,26.2,velocity,center_uy,0.6945659518241882 +illusion_0.75L,sr,131,26.2,velocity,lower_ux,1.0761648416519165 +illusion_0.75L,sr,131,26.2,velocity,lower_uy,0.43626782298088074 +illusion_0.75L,sr,132,26.4,velocity,upper_ux,0.7225838303565979 +illusion_0.75L,sr,132,26.4,velocity,upper_uy,0.3264465034008026 +illusion_0.75L,sr,132,26.4,velocity,center_ux,0.8631656169891357 +illusion_0.75L,sr,132,26.4,velocity,center_uy,0.6946014165878296 +illusion_0.75L,sr,132,26.4,velocity,lower_ux,1.117031455039978 +illusion_0.75L,sr,132,26.4,velocity,lower_uy,0.44443172216415405 +illusion_0.75L,sr,133,26.6,velocity,upper_ux,0.6889740228652954 +illusion_0.75L,sr,133,26.6,velocity,upper_uy,0.282601922750473 +illusion_0.75L,sr,133,26.6,velocity,center_ux,0.8657678365707397 +illusion_0.75L,sr,133,26.6,velocity,center_uy,0.6749577522277832 +illusion_0.75L,sr,133,26.6,velocity,lower_ux,1.158900260925293 +illusion_0.75L,sr,133,26.6,velocity,lower_uy,0.44959861040115356 +illusion_0.75L,sr,134,26.8,velocity,upper_ux,0.6570556163787842 +illusion_0.75L,sr,134,26.8,velocity,upper_uy,0.22973965108394623 +illusion_0.75L,sr,134,26.8,velocity,center_ux,0.8613747358322144 +illusion_0.75L,sr,134,26.8,velocity,center_uy,0.6291193962097168 +illusion_0.75L,sr,134,26.8,velocity,lower_ux,1.201583981513977 +illusion_0.75L,sr,134,26.8,velocity,lower_uy,0.45121482014656067 +illusion_0.75L,sr,135,27.0,velocity,upper_ux,0.6300485730171204 +illusion_0.75L,sr,135,27.0,velocity,upper_uy,0.1681693196296692 +illusion_0.75L,sr,135,27.0,velocity,center_ux,0.8492926955223083 +illusion_0.75L,sr,135,27.0,velocity,center_uy,0.5560934543609619 +illusion_0.75L,sr,135,27.0,velocity,lower_ux,1.2447725534439087 +illusion_0.75L,sr,135,27.0,velocity,lower_uy,0.44843029975891113 +illusion_0.75L,sr,136,27.2,velocity,upper_ux,0.6115430593490601 +illusion_0.75L,sr,136,27.2,velocity,upper_uy,0.10015277564525604 +illusion_0.75L,sr,136,27.2,velocity,center_ux,0.8291762471199036 +illusion_0.75L,sr,136,27.2,velocity,center_uy,0.4592689573764801 +illusion_0.75L,sr,136,27.2,velocity,lower_ux,1.287737250328064 +illusion_0.75L,sr,136,27.2,velocity,lower_uy,0.43977925181388855 +illusion_0.75L,sr,137,27.4,velocity,upper_ux,0.6052993535995483 +illusion_0.75L,sr,137,27.4,velocity,upper_uy,0.030831970274448395 +illusion_0.75L,sr,137,27.4,velocity,center_ux,0.8011122345924377 +illusion_0.75L,sr,137,27.4,velocity,center_uy,0.3432651162147522 +illusion_0.75L,sr,137,27.4,velocity,lower_ux,1.3283976316452026 +illusion_0.75L,sr,137,27.4,velocity,lower_uy,0.42308247089385986 +illusion_0.75L,sr,138,27.6,velocity,upper_ux,0.613747239112854 +illusion_0.75L,sr,138,27.6,velocity,upper_uy,-0.03391236066818237 +illusion_0.75L,sr,138,27.6,velocity,center_ux,0.7657759785652161 +illusion_0.75L,sr,138,27.6,velocity,center_uy,0.20915651321411133 +illusion_0.75L,sr,138,27.6,velocity,lower_ux,1.3637115955352783 +illusion_0.75L,sr,138,27.6,velocity,lower_uy,0.3952685594558716 +illusion_0.75L,sr,139,27.8,velocity,upper_ux,0.6364399790763855 +illusion_0.75L,sr,139,27.8,velocity,upper_uy,-0.08955816179513931 +illusion_0.75L,sr,139,27.8,velocity,center_ux,0.7254621386528015 +illusion_0.75L,sr,139,27.8,velocity,center_uy,0.05683347210288048 +illusion_0.75L,sr,139,27.8,velocity,lower_ux,1.3893810510635376 +illusion_0.75L,sr,139,27.8,velocity,lower_uy,0.3526517450809479 +illusion_0.75L,sr,140,28.0,velocity,upper_ux,0.6692349910736084 +illusion_0.75L,sr,140,28.0,velocity,upper_uy,-0.13560989499092102 +illusion_0.75L,sr,140,28.0,velocity,center_ux,0.6848171353340149 +illusion_0.75L,sr,140,28.0,velocity,center_uy,-0.1098240539431572 +illusion_0.75L,sr,140,28.0,velocity,lower_ux,1.4004725217819214 +illusion_0.75L,sr,140,28.0,velocity,lower_uy,0.2916165590286255 +illusion_0.75L,sr,141,28.2,velocity,upper_ux,0.7061579823493958 +illusion_0.75L,sr,141,28.2,velocity,upper_uy,-0.17571714520454407 +illusion_0.75L,sr,141,28.2,velocity,center_ux,0.6502511501312256 +illusion_0.75L,sr,141,28.2,velocity,center_uy,-0.2799749970436096 +illusion_0.75L,sr,141,28.2,velocity,lower_ux,1.3918235301971436 +illusion_0.75L,sr,141,28.2,velocity,lower_uy,0.20896930992603302 +illusion_0.75L,sr,142,28.4,velocity,upper_ux,0.7428004741668701 +illusion_0.75L,sr,142,28.4,velocity,upper_uy,-0.2136770784854889 +illusion_0.75L,sr,142,28.4,velocity,center_ux,0.6293812990188599 +illusion_0.75L,sr,142,28.4,velocity,center_uy,-0.4341273009777069 +illusion_0.75L,sr,142,28.4,velocity,lower_ux,1.3581132888793945 +illusion_0.75L,sr,142,28.4,velocity,lower_uy,0.10330833494663239 +illusion_0.75L,sr,143,28.6,velocity,upper_ux,0.7780876159667969 +illusion_0.75L,sr,143,28.6,velocity,upper_uy,-0.2504809498786926 +illusion_0.75L,sr,143,28.6,velocity,center_ux,0.6287511587142944 +illusion_0.75L,sr,143,28.6,velocity,center_uy,-0.5493735074996948 +illusion_0.75L,sr,143,28.6,velocity,lower_ux,1.2955996990203857 +illusion_0.75L,sr,143,28.6,velocity,lower_uy,-0.022298462688922882 +illusion_0.75L,sr,144,28.8,velocity,upper_ux,0.8127667307853699 +illusion_0.75L,sr,144,28.8,velocity,upper_uy,-0.2848946750164032 +illusion_0.75L,sr,144,28.8,velocity,center_ux,0.6496503949165344 +illusion_0.75L,sr,144,28.8,velocity,center_uy,-0.6119360327720642 +illusion_0.75L,sr,144,28.8,velocity,lower_ux,1.2070070505142212 +illusion_0.75L,sr,144,28.8,velocity,lower_uy,-0.15581826865673065 +illusion_0.75L,sr,145,29.0,velocity,upper_ux,0.8475863933563232 +illusion_0.75L,sr,145,29.0,velocity,upper_uy,-0.3158262073993683 +illusion_0.75L,sr,145,29.0,velocity,center_ux,0.6845675706863403 +illusion_0.75L,sr,145,29.0,velocity,center_uy,-0.6313631534576416 +illusion_0.75L,sr,145,29.0,velocity,lower_ux,1.1042789220809937 +illusion_0.75L,sr,145,29.0,velocity,lower_uy,-0.27717137336730957 +illusion_0.75L,sr,146,29.2,velocity,upper_ux,0.8827593922615051 +illusion_0.75L,sr,146,29.2,velocity,upper_uy,-0.34302791953086853 +illusion_0.75L,sr,146,29.2,velocity,center_ux,0.721534013748169 +illusion_0.75L,sr,146,29.2,velocity,center_uy,-0.6333574652671814 +illusion_0.75L,sr,146,29.2,velocity,lower_ux,1.0042786598205566 +illusion_0.75L,sr,146,29.2,velocity,lower_uy,-0.3667946755886078 +illusion_0.75L,sr,147,29.4,velocity,upper_ux,0.9184670448303223 +illusion_0.75L,sr,147,29.4,velocity,upper_uy,-0.36685770750045776 +illusion_0.75L,sr,147,29.4,velocity,center_ux,0.7532418966293335 +illusion_0.75L,sr,147,29.4,velocity,center_uy,-0.6368570923805237 +illusion_0.75L,sr,147,29.4,velocity,lower_ux,0.9201257228851318 +illusion_0.75L,sr,147,29.4,velocity,lower_uy,-0.41586750745773315 +illusion_0.75L,sr,148,29.6,velocity,upper_ux,0.954684853553772 +illusion_0.75L,sr,148,29.6,velocity,upper_uy,-0.38752472400665283 +illusion_0.75L,sr,148,29.6,velocity,center_ux,0.7786170244216919 +illusion_0.75L,sr,148,29.6,velocity,center_uy,-0.646414041519165 +illusion_0.75L,sr,148,29.6,velocity,lower_ux,0.857297956943512 +illusion_0.75L,sr,148,29.6,velocity,lower_uy,-0.42840462923049927 +illusion_0.75L,sr,149,29.8,velocity,upper_ux,0.9916586875915527 +illusion_0.75L,sr,149,29.8,velocity,upper_uy,-0.40531063079833984 +illusion_0.75L,sr,149,29.8,velocity,center_ux,0.7991483807563782 +illusion_0.75L,sr,149,29.8,velocity,center_uy,-0.6602429151535034 +illusion_0.75L,sr,149,29.8,velocity,lower_ux,0.8123509883880615 +illusion_0.75L,sr,149,29.8,velocity,lower_uy,-0.4167279899120331 +illusion_0.75L,sr,150,30.0,velocity,upper_ux,1.0297192335128784 +illusion_0.75L,sr,150,30.0,velocity,upper_uy,-0.42041221261024475 +illusion_0.75L,sr,150,30.0,velocity,center_ux,0.8159176111221313 +illusion_0.75L,sr,150,30.0,velocity,center_uy,-0.6754400134086609 +illusion_0.75L,sr,150,30.0,velocity,lower_ux,0.7777517437934875 +illusion_0.75L,sr,150,30.0,velocity,lower_uy,-0.39232882857322693 +illusion_0.75L,sr,151,30.2,velocity,upper_ux,1.0687620639801025 +illusion_0.75L,sr,151,30.2,velocity,upper_uy,-0.43275195360183716 +illusion_0.75L,sr,151,30.2,velocity,center_ux,0.8289770483970642 +illusion_0.75L,sr,151,30.2,velocity,center_uy,-0.6874743700027466 +illusion_0.75L,sr,151,30.2,velocity,lower_ux,0.747018575668335 +illusion_0.75L,sr,151,30.2,velocity,lower_uy,-0.3615429401397705 +illusion_0.75L,sr,152,30.4,velocity,upper_ux,1.1089162826538086 +illusion_0.75L,sr,152,30.4,velocity,upper_uy,-0.4422492980957031 +illusion_0.75L,sr,152,30.4,velocity,center_ux,0.8378295302391052 +illusion_0.75L,sr,152,30.4,velocity,center_uy,-0.6895933747291565 +illusion_0.75L,sr,152,30.4,velocity,lower_ux,0.7165566086769104 +illusion_0.75L,sr,152,30.4,velocity,lower_uy,-0.325505793094635 +illusion_0.75L,sr,153,30.6,velocity,upper_ux,1.1501907110214233 +illusion_0.75L,sr,153,30.6,velocity,upper_uy,-0.4486267566680908 +illusion_0.75L,sr,153,30.6,velocity,center_ux,0.8414607048034668 +illusion_0.75L,sr,153,30.6,velocity,center_uy,-0.6735618710517883 +illusion_0.75L,sr,153,30.6,velocity,lower_ux,0.6858786940574646 +illusion_0.75L,sr,153,30.6,velocity,lower_uy,-0.2829928696155548 +illusion_0.75L,sr,154,30.8,velocity,upper_ux,1.1924216747283936 +illusion_0.75L,sr,154,30.8,velocity,upper_uy,-0.45141080021858215 +illusion_0.75L,sr,154,30.8,velocity,center_ux,0.8387492895126343 +illusion_0.75L,sr,154,30.8,velocity,center_uy,-0.6326540112495422 +illusion_0.75L,sr,154,30.8,velocity,lower_ux,0.6565567255020142 +illusion_0.75L,sr,154,30.8,velocity,lower_uy,-0.23268473148345947 +illusion_0.75L,sr,155,31.0,velocity,upper_ux,1.235101342201233 +illusion_0.75L,sr,155,31.0,velocity,upper_uy,-0.449838250875473 +illusion_0.75L,sr,155,31.0,velocity,center_ux,0.8288764357566833 +illusion_0.75L,sr,155,31.0,velocity,center_uy,-0.5650607943534851 +illusion_0.75L,sr,155,31.0,velocity,lower_ux,0.63141930103302 +illusion_0.75L,sr,155,31.0,velocity,lower_uy,-0.1746675670146942 +illusion_0.75L,sr,156,31.2,velocity,upper_ux,1.2774648666381836 +illusion_0.75L,sr,156,31.2,velocity,upper_uy,-0.44267404079437256 +illusion_0.75L,sr,156,31.2,velocity,center_ux,0.8113703727722168 +illusion_0.75L,sr,156,31.2,velocity,center_uy,-0.4737078547477722 +illusion_0.75L,sr,156,31.2,velocity,lower_ux,0.6138972640037537 +illusion_0.75L,sr,156,31.2,velocity,lower_uy,-0.11077028512954712 +illusion_0.75L,sr,157,31.4,velocity,upper_ux,1.317653775215149 +illusion_0.75L,sr,157,31.4,velocity,upper_uy,-0.4281199276447296 +illusion_0.75L,sr,157,31.4,velocity,center_ux,0.7861079573631287 +illusion_0.75L,sr,157,31.4,velocity,center_uy,-0.36365580558776855 +illusion_0.75L,sr,157,31.4,velocity,lower_ux,0.6076365113258362 +illusion_0.75L,sr,157,31.4,velocity,lower_uy,-0.045422282069921494 +illusion_0.75L,sr,158,31.6,velocity,upper_ux,1.3531283140182495 +illusion_0.75L,sr,158,31.6,velocity,upper_uy,-0.40358245372772217 +illusion_0.75L,sr,158,31.6,velocity,center_ux,0.753171443939209 +illusion_0.75L,sr,158,31.6,velocity,center_uy,-0.2365945428609848 +illusion_0.75L,sr,158,31.6,velocity,lower_ux,0.6150298118591309 +illusion_0.75L,sr,158,31.6,velocity,lower_uy,0.01638808660209179 +illusion_0.75L,sr,159,31.8,velocity,upper_ux,1.3801865577697754 +illusion_0.75L,sr,159,31.8,velocity,upper_uy,-0.3661053478717804 +illusion_0.75L,sr,159,31.8,velocity,center_ux,0.714253842830658 +illusion_0.75L,sr,159,31.8,velocity,center_uy,-0.09287116676568985 +illusion_0.75L,sr,159,31.8,velocity,lower_ux,0.6358699202537537 +illusion_0.75L,sr,159,31.8,velocity,lower_uy,0.07038535177707672 +illusion_0.75L,sr,160,32.0,velocity,upper_ux,1.394777774810791 +illusion_0.75L,sr,160,32.0,velocity,upper_uy,-0.31253185868263245 +illusion_0.75L,sr,160,32.0,velocity,center_ux,0.6730461716651917 +illusion_0.75L,sr,160,32.0,velocity,center_uy,0.06590261310338974 +illusion_0.75L,sr,160,32.0,velocity,lower_ux,0.6665387749671936 +illusion_0.75L,sr,160,32.0,velocity,lower_uy,0.11617262661457062 +illusion_0.75L,sr,161,32.2,velocity,upper_ux,1.3926585912704468 +illusion_0.75L,sr,161,32.2,velocity,upper_uy,-0.24022942781448364 +illusion_0.75L,sr,161,32.2,velocity,center_ux,0.6354991793632507 +illusion_0.75L,sr,161,32.2,velocity,center_uy,0.23170490562915802 +illusion_0.75L,sr,161,32.2,velocity,lower_ux,0.7014495730400085 +illusion_0.75L,sr,161,32.2,velocity,lower_uy,0.1568135768175125 +illusion_0.75L,sr,162,32.4,velocity,upper_ux,1.3692129850387573 +illusion_0.75L,sr,162,32.4,velocity,upper_uy,-0.14718639850616455 +illusion_0.75L,sr,162,32.4,velocity,center_ux,0.6089655756950378 +illusion_0.75L,sr,162,32.4,velocity,center_uy,0.38911381363868713 +illusion_0.75L,sr,162,32.4,velocity,lower_ux,0.7363779544830322 +illusion_0.75L,sr,162,32.4,velocity,lower_uy,0.1958792805671692 +illusion_0.75L,sr,163,32.6,velocity,upper_ux,1.3198041915893555 +illusion_0.75L,sr,163,32.6,velocity,upper_uy,-0.03373634070158005 +illusion_0.75L,sr,163,32.6,velocity,center_ux,0.6010330319404602 +illusion_0.75L,sr,163,32.6,velocity,center_uy,0.5165178775787354 +illusion_0.75L,sr,163,32.6,velocity,lower_ux,0.7701886892318726 +illusion_0.75L,sr,163,32.6,velocity,lower_uy,0.23422710597515106 +illusion_0.75L,sr,164,32.8,velocity,upper_ux,1.2430839538574219 +illusion_0.75L,sr,164,32.8,velocity,upper_uy,0.09366286545991898 +illusion_0.75L,sr,164,32.8,velocity,center_ux,0.6157699823379517 +illusion_0.75L,sr,164,32.8,velocity,center_uy,0.5956763029098511 +illusion_0.75L,sr,164,32.8,velocity,lower_ux,0.803650975227356 +illusion_0.75L,sr,164,32.8,velocity,lower_uy,0.2704980671405792 +illusion_0.75L,sr,165,33.0,velocity,upper_ux,1.1482462882995605 +illusion_0.75L,sr,165,33.0,velocity,upper_uy,0.22073893249034882 +illusion_0.75L,sr,165,33.0,velocity,center_ux,0.6504006385803223 +illusion_0.75L,sr,165,33.0,velocity,center_uy,0.6290095448493958 +illusion_0.75L,sr,165,33.0,velocity,lower_ux,0.8396849632263184 +illusion_0.75L,sr,165,33.0,velocity,lower_uy,0.3041740655899048 +illusion_0.75L,sr,166,33.2,velocity,upper_ux,1.0408767461776733 +illusion_0.75L,sr,166,33.2,velocity,upper_uy,0.32600584626197815 +illusion_0.75L,sr,166,33.2,velocity,center_ux,0.6880864500999451 +illusion_0.75L,sr,166,33.2,velocity,center_uy,0.6335254907608032 +illusion_0.75L,sr,166,33.2,velocity,lower_ux,0.8720847964286804 +illusion_0.75L,sr,166,33.2,velocity,lower_uy,0.33254924416542053 +illusion_0.75L,sr,167,33.4,velocity,upper_ux,0.9451656341552734 +illusion_0.75L,sr,167,33.4,velocity,upper_uy,0.3961923122406006 +illusion_0.75L,sr,167,33.4,velocity,center_ux,0.7235813736915588 +illusion_0.75L,sr,167,33.4,velocity,center_uy,0.6366563439369202 +illusion_0.75L,sr,167,33.4,velocity,lower_ux,0.9071941375732422 +illusion_0.75L,sr,167,33.4,velocity,lower_uy,0.35814544558525085 +illusion_0.75L,sr,168,33.6,velocity,upper_ux,0.8685694336891174 +illusion_0.75L,sr,168,33.6,velocity,upper_uy,0.42709824442863464 +illusion_0.75L,sr,168,33.6,velocity,center_ux,0.7522035241127014 +illusion_0.75L,sr,168,33.6,velocity,center_uy,0.6454400420188904 +illusion_0.75L,sr,168,33.6,velocity,lower_ux,0.9429509043693542 +illusion_0.75L,sr,168,33.6,velocity,lower_uy,0.38051146268844604 +illusion_0.75L,sr,169,33.8,velocity,upper_ux,0.8128793239593506 +illusion_0.75L,sr,169,33.8,velocity,upper_uy,0.4263947308063507 +illusion_0.75L,sr,169,33.8,velocity,center_ux,0.7749852538108826 +illusion_0.75L,sr,169,33.8,velocity,center_uy,0.6590369343757629 +illusion_0.75L,sr,169,33.8,velocity,lower_ux,0.9793979525566101 +illusion_0.75L,sr,169,33.8,velocity,lower_uy,0.3998454213142395 +illusion_0.75L,sr,170,34.0,velocity,upper_ux,0.7727119326591492 +illusion_0.75L,sr,170,34.0,velocity,upper_uy,0.40640029311180115 +illusion_0.75L,sr,170,34.0,velocity,center_ux,0.7932987809181213 +illusion_0.75L,sr,170,34.0,velocity,center_uy,0.6744815707206726 +illusion_0.75L,sr,170,34.0,velocity,lower_ux,1.0166975259780884 +illusion_0.75L,sr,170,34.0,velocity,lower_uy,0.41628187894821167 +illusion_0.75L,sr,171,34.2,velocity,upper_ux,0.7405621409416199 +illusion_0.75L,sr,171,34.2,velocity,upper_uy,0.37654224038124084 +illusion_0.75L,sr,171,34.2,velocity,center_ux,0.8077719211578369 +illusion_0.75L,sr,171,34.2,velocity,center_uy,0.6877972483634949 +illusion_0.75L,sr,171,34.2,velocity,lower_ux,1.0550806522369385 +illusion_0.75L,sr,171,34.2,velocity,lower_uy,0.42986994981765747 +illusion_0.75L,sr,172,34.4,velocity,upper_ux,0.7110021114349365 +illusion_0.75L,sr,172,34.4,velocity,upper_uy,0.3407958745956421 +illusion_0.75L,sr,172,34.4,velocity,center_ux,0.818278431892395 +illusion_0.75L,sr,172,34.4,velocity,center_uy,0.6929447650909424 +illusion_0.75L,sr,172,34.4,velocity,lower_ux,1.0946836471557617 +illusion_0.75L,sr,172,34.4,velocity,lower_uy,0.44051840901374817 +illusion_0.75L,sr,173,34.6,velocity,upper_ux,0.6817992329597473 +illusion_0.75L,sr,173,34.6,velocity,upper_uy,0.29918912053108215 +illusion_0.75L,sr,173,34.6,velocity,center_ux,0.8241007328033447 +illusion_0.75L,sr,173,34.6,velocity,center_uy,0.6820954084396362 +illusion_0.75L,sr,173,34.6,velocity,lower_ux,1.1355586051940918 +illusion_0.75L,sr,173,34.6,velocity,lower_uy,0.44801586866378784 +illusion_0.75L,sr,174,34.8,velocity,upper_ux,0.6535162329673767 +illusion_0.75L,sr,174,34.8,velocity,upper_uy,0.2506316900253296 +illusion_0.75L,sr,174,34.8,velocity,center_ux,0.8242611885070801 +illusion_0.75L,sr,174,34.8,velocity,center_uy,0.6480265855789185 +illusion_0.75L,sr,174,34.8,velocity,lower_ux,1.1774920225143433 +illusion_0.75L,sr,174,34.8,velocity,lower_uy,0.4519423246383667 +illusion_0.75L,sr,175,35.0,velocity,upper_ux,0.6299743056297302 +illusion_0.75L,sr,175,35.0,velocity,upper_uy,0.19514209032058716 +illusion_0.75L,sr,175,35.0,velocity,center_ux,0.8200136423110962 +illusion_0.75L,sr,175,35.0,velocity,center_uy,0.588998556137085 +illusion_0.75L,sr,175,35.0,velocity,lower_ux,1.2231600284576416 +illusion_0.75L,sr,175,35.0,velocity,lower_uy,0.4527868330478668 +illusion_0.75L,sr,176,35.2,velocity,upper_ux,0.609632670879364 +illusion_0.75L,sr,176,35.2,velocity,upper_uy,0.13251392543315887 +illusion_0.75L,sr,176,35.2,velocity,center_ux,0.8046442270278931 +illusion_0.75L,sr,176,35.2,velocity,center_uy,0.5027732253074646 +illusion_0.75L,sr,176,35.2,velocity,lower_ux,1.2625102996826172 +illusion_0.75L,sr,176,35.2,velocity,lower_uy,0.44611531496047974 +illusion_0.75L,sr,177,35.4,velocity,upper_ux,0.6007484197616577 +illusion_0.75L,sr,177,35.4,velocity,upper_uy,0.0676172524690628 +illusion_0.75L,sr,177,35.4,velocity,center_ux,0.7838737368583679 +illusion_0.75L,sr,177,35.4,velocity,center_uy,0.3988615870475769 +illusion_0.75L,sr,177,35.4,velocity,lower_ux,1.3032090663909912 +illusion_0.75L,sr,177,35.4,velocity,lower_uy,0.43382012844085693 +illusion_0.75L,sr,178,35.6,velocity,upper_ux,0.6046256422996521 +illusion_0.75L,sr,178,35.6,velocity,upper_uy,0.004839303903281689 +illusion_0.75L,sr,178,35.6,velocity,center_ux,0.7553378939628601 +illusion_0.75L,sr,178,35.6,velocity,center_uy,0.2791250944137573 +illusion_0.75L,sr,178,35.6,velocity,lower_ux,1.3398433923721313 +illusion_0.75L,sr,178,35.6,velocity,lower_uy,0.4126608669757843 +illusion_0.75L,sr,179,35.8,velocity,upper_ux,0.6220688819885254 +illusion_0.75L,sr,179,35.8,velocity,upper_uy,-0.05120110139250755 +illusion_0.75L,sr,179,35.8,velocity,center_ux,0.7196530699729919 +illusion_0.75L,sr,179,35.8,velocity,center_uy,0.1438746154308319 +illusion_0.75L,sr,179,35.8,velocity,lower_ux,1.3692190647125244 +illusion_0.75L,sr,179,35.8,velocity,lower_uy,0.3800693452358246 +illusion_0.75L,sr,180,36.0,velocity,upper_ux,0.6505186557769775 +illusion_0.75L,sr,180,36.0,velocity,upper_uy,-0.09873676300048828 +illusion_0.75L,sr,180,36.0,velocity,center_ux,0.6793855428695679 +illusion_0.75L,sr,180,36.0,velocity,center_uy,-0.006610483396798372 +illusion_0.75L,sr,180,36.0,velocity,lower_ux,1.3876539468765259 +illusion_0.75L,sr,180,36.0,velocity,lower_uy,0.33339136838912964 +illusion_0.75L,sr,181,36.2,velocity,upper_ux,0.6847261190414429 +illusion_0.75L,sr,181,36.2,velocity,upper_uy,-0.14001411199569702 +illusion_0.75L,sr,181,36.2,velocity,center_ux,0.6394249200820923 +illusion_0.75L,sr,181,36.2,velocity,center_uy,-0.16779538989067078 +illusion_0.75L,sr,181,36.2,velocity,lower_ux,1.3915432691574097 +illusion_0.75L,sr,181,36.2,velocity,lower_uy,0.27034056186676025 +illusion_0.75L,sr,182,36.4,velocity,upper_ux,0.7198150753974915 +illusion_0.75L,sr,182,36.4,velocity,upper_uy,-0.17904335260391235 +illusion_0.75L,sr,182,36.4,velocity,center_ux,0.6066438555717468 +illusion_0.75L,sr,182,36.4,velocity,center_uy,-0.3283655047416687 +illusion_0.75L,sr,182,36.4,velocity,lower_ux,1.377336025238037 +illusion_0.75L,sr,182,36.4,velocity,lower_uy,0.18901370465755463 +illusion_0.75L,sr,183,36.6,velocity,upper_ux,0.7534982562065125 +illusion_0.75L,sr,183,36.6,velocity,upper_uy,-0.21753983199596405 +illusion_0.75L,sr,183,36.6,velocity,center_ux,0.5891916155815125 +illusion_0.75L,sr,183,36.6,velocity,center_uy,-0.46847379207611084 +illusion_0.75L,sr,183,36.6,velocity,lower_ux,1.3412452936172485 +illusion_0.75L,sr,183,36.6,velocity,lower_uy,0.08930154889822006 +illusion_0.75L,sr,184,36.8,velocity,upper_ux,0.7865790724754333 +illusion_0.75L,sr,184,36.8,velocity,upper_uy,-0.2549901604652405 +illusion_0.75L,sr,184,36.8,velocity,center_ux,0.593408465385437 +illusion_0.75L,sr,184,36.8,velocity,center_uy,-0.5685826539993286 +illusion_0.75L,sr,184,36.8,velocity,lower_ux,1.2794042825698853 +illusion_0.75L,sr,184,36.8,velocity,lower_uy,-0.027424579486250877 +illusion_0.75L,sr,185,37.0,velocity,upper_ux,0.819886326789856 +illusion_0.75L,sr,185,37.0,velocity,upper_uy,-0.28952524065971375 +illusion_0.75L,sr,185,37.0,velocity,center_ux,0.6194035410881042 +illusion_0.75L,sr,185,37.0,velocity,center_uy,-0.6187323927879333 +illusion_0.75L,sr,185,37.0,velocity,lower_ux,1.1931078433990479 +illusion_0.75L,sr,185,37.0,velocity,lower_uy,-0.1515665054321289 +illusion_0.75L,sr,186,37.2,velocity,upper_ux,0.8539958000183105 +illusion_0.75L,sr,186,37.2,velocity,upper_uy,-0.3204690217971802 +illusion_0.75L,sr,186,37.2,velocity,center_ux,0.6580142378807068 +illusion_0.75L,sr,186,37.2,velocity,center_uy,-0.6325380206108093 +illusion_0.75L,sr,186,37.2,velocity,lower_ux,1.0910710096359253 +illusion_0.75L,sr,186,37.2,velocity,lower_uy,-0.26736897230148315 +illusion_0.75L,sr,187,37.4,velocity,upper_ux,0.8888790607452393 +illusion_0.75L,sr,187,37.4,velocity,upper_uy,-0.3478092551231384 +illusion_0.75L,sr,187,37.4,velocity,center_ux,0.6968351602554321 +illusion_0.75L,sr,187,37.4,velocity,center_uy,-0.6347880363464355 +illusion_0.75L,sr,187,37.4,velocity,lower_ux,0.9881156086921692 +illusion_0.75L,sr,187,37.4,velocity,lower_uy,-0.35703545808792114 +illusion_0.75L,sr,188,37.6,velocity,upper_ux,0.9243455529212952 +illusion_0.75L,sr,188,37.6,velocity,upper_uy,-0.3717604875564575 +illusion_0.75L,sr,188,37.6,velocity,center_ux,0.7291328310966492 +illusion_0.75L,sr,188,37.6,velocity,center_uy,-0.6407229900360107 +illusion_0.75L,sr,188,37.6,velocity,lower_ux,0.8985836505889893 +illusion_0.75L,sr,188,37.6,velocity,lower_uy,-0.40958529710769653 +illusion_0.75L,sr,189,37.8,velocity,upper_ux,0.9605495929718018 +illusion_0.75L,sr,189,37.8,velocity,upper_uy,-0.3926877975463867 +illusion_0.75L,sr,189,37.8,velocity,center_ux,0.7547255158424377 +illusion_0.75L,sr,189,37.8,velocity,center_uy,-0.6525200605392456 +illusion_0.75L,sr,189,37.8,velocity,lower_ux,0.8294969797134399 +illusion_0.75L,sr,189,37.8,velocity,lower_uy,-0.4259395897388458 +illusion_0.75L,sr,190,38.0,velocity,upper_ux,0.9974085092544556 +illusion_0.75L,sr,190,38.0,velocity,upper_uy,-0.4106505215167999 +illusion_0.75L,sr,190,38.0,velocity,center_ux,0.7750007510185242 +illusion_0.75L,sr,190,38.0,velocity,center_uy,-0.6675216555595398 +illusion_0.75L,sr,190,38.0,velocity,lower_ux,0.7801754474639893 +illusion_0.75L,sr,190,38.0,velocity,lower_uy,-0.41565388441085815 +illusion_0.75L,sr,191,38.2,velocity,upper_ux,1.0350902080535889 +illusion_0.75L,sr,191,38.2,velocity,upper_uy,-0.42573148012161255 +illusion_0.75L,sr,191,38.2,velocity,center_ux,0.7909581065177917 +illusion_0.75L,sr,191,38.2,velocity,center_uy,-0.6823016405105591 +illusion_0.75L,sr,191,38.2,velocity,lower_ux,0.7439176440238953 +illusion_0.75L,sr,191,38.2,velocity,lower_uy,-0.3901533782482147 +illusion_0.75L,sr,192,38.4,velocity,upper_ux,1.0766043663024902 +illusion_0.75L,sr,192,38.4,velocity,upper_uy,-0.43903079628944397 +illusion_0.75L,sr,192,38.4,velocity,center_ux,0.8049077391624451 +illusion_0.75L,sr,192,38.4,velocity,center_uy,-0.6937289237976074 +illusion_0.75L,sr,192,38.4,velocity,lower_ux,0.7153977751731873 +illusion_0.75L,sr,192,38.4,velocity,lower_uy,-0.35745757818222046 +illusion_0.75L,sr,193,38.6,velocity,upper_ux,1.1185113191604614 +illusion_0.75L,sr,193,38.6,velocity,upper_uy,-0.4484676718711853 +illusion_0.75L,sr,193,38.6,velocity,center_ux,0.8127182722091675 +illusion_0.75L,sr,193,38.6,velocity,center_uy,-0.6907292008399963 +illusion_0.75L,sr,193,38.6,velocity,lower_ux,0.6855672597885132 +illusion_0.75L,sr,193,38.6,velocity,lower_uy,-0.3161841630935669 +illusion_0.75L,sr,194,38.8,velocity,upper_ux,1.1579452753067017 +illusion_0.75L,sr,194,38.8,velocity,upper_uy,-0.453821063041687 +illusion_0.75L,sr,194,38.8,velocity,center_ux,0.8150842189788818 +illusion_0.75L,sr,194,38.8,velocity,center_uy,-0.6689816117286682 +illusion_0.75L,sr,194,38.8,velocity,lower_ux,0.6590771675109863 +illusion_0.75L,sr,194,38.8,velocity,lower_uy,-0.27267199754714966 +illusion_0.75L,sr,195,39.0,velocity,upper_ux,1.1971442699432373 +illusion_0.75L,sr,195,39.0,velocity,upper_uy,-0.45440179109573364 +illusion_0.75L,sr,195,39.0,velocity,center_ux,0.8098904490470886 +illusion_0.75L,sr,195,39.0,velocity,center_uy,-0.6198053359985352 +illusion_0.75L,sr,195,39.0,velocity,lower_ux,0.6317830085754395 +illusion_0.75L,sr,195,39.0,velocity,lower_uy,-0.21981137990951538 +illusion_0.75L,sr,196,39.2,velocity,upper_ux,1.2395821809768677 +illusion_0.75L,sr,196,39.2,velocity,upper_uy,-0.4513528048992157 +illusion_0.75L,sr,196,39.2,velocity,center_ux,0.8004450798034668 +illusion_0.75L,sr,196,39.2,velocity,center_uy,-0.5466245412826538 +illusion_0.75L,sr,196,39.2,velocity,lower_ux,0.6108428835868835 +illusion_0.75L,sr,196,39.2,velocity,lower_uy,-0.1610996127128601 +illusion_0.75L,sr,197,39.4,velocity,upper_ux,1.2811532020568848 +illusion_0.75L,sr,197,39.4,velocity,upper_uy,-0.4423166513442993 +illusion_0.75L,sr,197,39.4,velocity,center_ux,0.7842592000961304 +illusion_0.75L,sr,197,39.4,velocity,center_uy,-0.45198574662208557 +illusion_0.75L,sr,197,39.4,velocity,lower_ux,0.5980145931243896 +illusion_0.75L,sr,197,39.4,velocity,lower_uy,-0.0981372743844986 +illusion_0.75L,sr,198,39.6,velocity,upper_ux,1.3199037313461304 +illusion_0.75L,sr,198,39.6,velocity,upper_uy,-0.42558422684669495 +illusion_0.75L,sr,198,39.6,velocity,center_ux,0.7607762217521667 +illusion_0.75L,sr,198,39.6,velocity,center_uy,-0.3407519459724426 +illusion_0.75L,sr,198,39.6,velocity,lower_ux,0.5965698957443237 +illusion_0.75L,sr,198,39.6,velocity,lower_uy,-0.03504718840122223 +illusion_0.75L,sr,199,39.8,velocity,upper_ux,1.3564866781234741 +illusion_0.75L,sr,199,39.8,velocity,upper_uy,-0.39998161792755127 +illusion_0.75L,sr,199,39.8,velocity,center_ux,0.7315787672996521 +illusion_0.75L,sr,199,39.8,velocity,center_uy,-0.21540802717208862 +illusion_0.75L,sr,199,39.8,velocity,lower_ux,0.6099927425384521 +illusion_0.75L,sr,199,39.8,velocity,lower_uy,0.023419158533215523 +illusion_0.75L,sr,0,0.0,force,front_fx,0.0018674046732485294 +illusion_0.75L,sr,0,0.0,force,front_fy,-2.0841865989496e-05 +illusion_0.75L,sr,0,0.0,force,upper_fx,0.0012031100923195481 +illusion_0.75L,sr,0,0.0,force,upper_fy,0.0027756672352552414 +illusion_0.75L,sr,0,0.0,force,lower_fx,0.0013290162896737456 +illusion_0.75L,sr,0,0.0,force,lower_fy,-0.0029579303227365017 +illusion_0.75L,sr,1,0.2,force,front_fx,0.0018281749216839671 +illusion_0.75L,sr,1,0.2,force,front_fy,-5.444058115244843e-05 +illusion_0.75L,sr,1,0.2,force,upper_fx,0.0013976189075037837 +illusion_0.75L,sr,1,0.2,force,upper_fy,0.0024538282305002213 +illusion_0.75L,sr,1,0.2,force,lower_fx,0.001543473917990923 +illusion_0.75L,sr,1,0.2,force,lower_fy,-0.0026566623710095882 +illusion_0.75L,sr,2,0.4,force,front_fx,0.0018569508101791143 +illusion_0.75L,sr,2,0.4,force,front_fy,-7.128411380108446e-05 +illusion_0.75L,sr,2,0.4,force,upper_fx,0.001545884762890637 +illusion_0.75L,sr,2,0.4,force,upper_fy,0.002190485829487443 +illusion_0.75L,sr,2,0.4,force,lower_fx,0.001714169280603528 +illusion_0.75L,sr,2,0.4,force,lower_fy,-0.002417308045551181 +illusion_0.75L,sr,3,0.6,force,front_fx,0.0018842918798327446 +illusion_0.75L,sr,3,0.6,force,front_fy,-7.5252988608554e-05 +illusion_0.75L,sr,3,0.6,force,upper_fx,0.0016904659569263458 +illusion_0.75L,sr,3,0.6,force,upper_fy,0.001920873997732997 +illusion_0.75L,sr,3,0.6,force,lower_fx,0.001878342591226101 +illusion_0.75L,sr,3,0.6,force,lower_fy,-0.002176173496991396 +illusion_0.75L,sr,4,0.8,force,front_fx,0.001913572894409299 +illusion_0.75L,sr,4,0.8,force,front_fy,-8.0523343058303e-05 +illusion_0.75L,sr,4,0.8,force,upper_fx,0.0018249144777655602 +illusion_0.75L,sr,4,0.8,force,upper_fy,0.0016654134960845113 +illusion_0.75L,sr,4,0.8,force,lower_fx,0.0020287821535021067 +illusion_0.75L,sr,4,0.8,force,lower_fy,-0.0019375463016331196 +illusion_0.75L,sr,5,1.0,force,front_fx,0.0019343007588759065 +illusion_0.75L,sr,5,1.0,force,front_fy,-8.66473201313056e-05 +illusion_0.75L,sr,5,1.0,force,upper_fx,0.0019320235587656498 +illusion_0.75L,sr,5,1.0,force,upper_fy,0.0014139361446723342 +illusion_0.75L,sr,5,1.0,force,lower_fx,0.0021486806217581034 +illusion_0.75L,sr,5,1.0,force,lower_fy,-0.0016855024732649326 +illusion_0.75L,sr,6,1.2,force,front_fx,0.001957907574251294 +illusion_0.75L,sr,6,1.2,force,front_fy,-9.045306796906516e-05 +illusion_0.75L,sr,6,1.2,force,upper_fx,0.0020208805799484253 +illusion_0.75L,sr,6,1.2,force,upper_fy,0.0011878467630594969 +illusion_0.75L,sr,6,1.2,force,lower_fx,0.0022484147921204567 +illusion_0.75L,sr,6,1.2,force,lower_fy,-0.001447542803362012 +illusion_0.75L,sr,7,1.4,force,front_fx,0.0019709111656993628 +illusion_0.75L,sr,7,1.4,force,front_fy,-9.208740084432065e-05 +illusion_0.75L,sr,7,1.4,force,upper_fx,0.0020883309189230204 +illusion_0.75L,sr,7,1.4,force,upper_fy,0.000991061795502901 +illusion_0.75L,sr,7,1.4,force,lower_fx,0.0023221904411911964 +illusion_0.75L,sr,7,1.4,force,lower_fy,-0.0012312437174841762 +illusion_0.75L,sr,8,1.6,force,front_fx,0.0019839659798890352 +illusion_0.75L,sr,8,1.6,force,front_fy,-9.337290975963697e-05 +illusion_0.75L,sr,8,1.6,force,upper_fx,0.002141484059393406 +illusion_0.75L,sr,8,1.6,force,upper_fy,0.0008225733181461692 +illusion_0.75L,sr,8,1.6,force,lower_fx,0.002375490963459015 +illusion_0.75L,sr,8,1.6,force,lower_fy,-0.0010400169994682074 +illusion_0.75L,sr,9,1.8,force,front_fx,0.0019879986066371202 +illusion_0.75L,sr,9,1.8,force,front_fy,-9.403604053659365e-05 +illusion_0.75L,sr,9,1.8,force,upper_fx,0.002186376368626952 +illusion_0.75L,sr,9,1.8,force,upper_fy,0.0006810392369516194 +illusion_0.75L,sr,9,1.8,force,lower_fx,0.002416240982711315 +illusion_0.75L,sr,9,1.8,force,lower_fy,-0.0008754454320296645 +illusion_0.75L,sr,10,2.0,force,front_fx,0.001999489264562726 +illusion_0.75L,sr,10,2.0,force,front_fy,-9.15934142540209e-05 +illusion_0.75L,sr,10,2.0,force,upper_fx,0.0022221736144274473 +illusion_0.75L,sr,10,2.0,force,upper_fy,0.0005628177314065397 +illusion_0.75L,sr,10,2.0,force,lower_fx,0.002445220947265625 +illusion_0.75L,sr,10,2.0,force,lower_fy,-0.0007355346460826695 +illusion_0.75L,sr,11,2.2,force,front_fx,0.001994795398786664 +illusion_0.75L,sr,11,2.2,force,front_fy,-8.761155186221004e-05 +illusion_0.75L,sr,11,2.2,force,upper_fx,0.0022421355824917555 +illusion_0.75L,sr,11,2.2,force,upper_fy,0.00047485315008088946 +illusion_0.75L,sr,11,2.2,force,lower_fx,0.002456345595419407 +illusion_0.75L,sr,11,2.2,force,lower_fy,-0.0006262395763769746 +illusion_0.75L,sr,12,2.4,force,front_fx,0.001988417701795697 +illusion_0.75L,sr,12,2.4,force,front_fy,-8.260877802968025e-05 +illusion_0.75L,sr,12,2.4,force,upper_fx,0.002255283994600177 +illusion_0.75L,sr,12,2.4,force,upper_fy,0.0004098045756109059 +illusion_0.75L,sr,12,2.4,force,lower_fx,0.002459005219861865 +illusion_0.75L,sr,12,2.4,force,lower_fy,-0.0005378054338507354 +illusion_0.75L,sr,13,2.6,force,front_fx,0.0019816625863313675 +illusion_0.75L,sr,13,2.6,force,front_fy,-7.720976282143965e-05 +illusion_0.75L,sr,13,2.6,force,upper_fx,0.002263550413772464 +illusion_0.75L,sr,13,2.6,force,upper_fy,0.0003657667839433998 +illusion_0.75L,sr,13,2.6,force,lower_fx,0.002455409849062562 +illusion_0.75L,sr,13,2.6,force,lower_fy,-0.0004680151178035885 +illusion_0.75L,sr,14,2.8,force,front_fx,0.001980158733204007 +illusion_0.75L,sr,14,2.8,force,front_fy,-7.093547174008563e-05 +illusion_0.75L,sr,14,2.8,force,upper_fx,0.0022756955586373806 +illusion_0.75L,sr,14,2.8,force,upper_fy,0.00033774576149880886 +illusion_0.75L,sr,14,2.8,force,lower_fx,0.0024544980842620134 +illusion_0.75L,sr,14,2.8,force,lower_fy,-0.0004115979827474803 +illusion_0.75L,sr,15,3.0,force,front_fx,0.00197957013733685 +illusion_0.75L,sr,15,3.0,force,front_fy,-6.429688801290467e-05 +illusion_0.75L,sr,15,3.0,force,upper_fx,0.002291677985340357 +illusion_0.75L,sr,15,3.0,force,upper_fy,0.0003266182029619813 +illusion_0.75L,sr,15,3.0,force,lower_fx,0.002455873414874077 +illusion_0.75L,sr,15,3.0,force,lower_fy,-0.0003698237705975771 +illusion_0.75L,sr,16,3.2,force,front_fx,0.0019799796864390373 +illusion_0.75L,sr,16,3.2,force,front_fy,-5.7118591939797625e-05 +illusion_0.75L,sr,16,3.2,force,upper_fx,0.002309390576556325 +illusion_0.75L,sr,16,3.2,force,upper_fy,0.00032381483470089734 +illusion_0.75L,sr,16,3.2,force,lower_fx,0.00245745200663805 +illusion_0.75L,sr,16,3.2,force,lower_fy,-0.00033373318728990853 +illusion_0.75L,sr,17,3.4,force,front_fx,0.0019776099361479282 +illusion_0.75L,sr,17,3.4,force,front_fy,-5.015138958697207e-05 +illusion_0.75L,sr,17,3.4,force,upper_fx,0.002320242580026388 +illusion_0.75L,sr,17,3.4,force,upper_fy,0.0003313809575047344 +illusion_0.75L,sr,17,3.4,force,lower_fx,0.002450589556246996 +illusion_0.75L,sr,17,3.4,force,lower_fy,-0.0003068995429202914 +illusion_0.75L,sr,18,3.6,force,front_fx,0.0019698580726981163 +illusion_0.75L,sr,18,3.6,force,front_fy,-4.2732342990348116e-05 +illusion_0.75L,sr,18,3.6,force,upper_fx,0.0023226779885590076 +illusion_0.75L,sr,18,3.6,force,upper_fy,0.0003431988588999957 +illusion_0.75L,sr,18,3.6,force,lower_fx,0.002434353344142437 +illusion_0.75L,sr,18,3.6,force,lower_fy,-0.00028418557485565543 +illusion_0.75L,sr,19,3.8,force,front_fx,0.0019638591911643744 +illusion_0.75L,sr,19,3.8,force,front_fy,-3.4956032322952524e-05 +illusion_0.75L,sr,19,3.8,force,upper_fx,0.002328174654394388 +illusion_0.75L,sr,19,3.8,force,upper_fy,0.0003583068319130689 +illusion_0.75L,sr,19,3.8,force,lower_fx,0.0024200668558478355 +illusion_0.75L,sr,19,3.8,force,lower_fy,-0.00026549847098067403 +illusion_0.75L,sr,20,4.0,force,front_fx,0.0019591073505580425 +illusion_0.75L,sr,20,4.0,force,front_fy,-2.630099879752379e-05 +illusion_0.75L,sr,20,4.0,force,upper_fx,0.0023339996114373207 +illusion_0.75L,sr,20,4.0,force,upper_fy,0.0003737475781235844 +illusion_0.75L,sr,20,4.0,force,lower_fx,0.0024053091183304787 +illusion_0.75L,sr,20,4.0,force,lower_fy,-0.0002470453910063952 +illusion_0.75L,sr,21,4.2,force,front_fx,0.00195490475744009 +illusion_0.75L,sr,21,4.2,force,front_fy,-1.763293221301865e-05 +illusion_0.75L,sr,21,4.2,force,upper_fx,0.0023376354947686195 +illusion_0.75L,sr,21,4.2,force,upper_fy,0.0003891194355674088 +illusion_0.75L,sr,21,4.2,force,lower_fx,0.002387779764831066 +illusion_0.75L,sr,21,4.2,force,lower_fy,-0.00022979677305556834 +illusion_0.75L,sr,22,4.4,force,front_fx,0.0019483952783048153 +illusion_0.75L,sr,22,4.4,force,front_fy,-9.505829439149238e-06 +illusion_0.75L,sr,22,4.4,force,upper_fx,0.0023400227073580027 +illusion_0.75L,sr,22,4.4,force,upper_fy,0.0004018525069113821 +illusion_0.75L,sr,22,4.4,force,lower_fx,0.0023683407343924046 +illusion_0.75L,sr,22,4.4,force,lower_fy,-0.00021285549155436456 +illusion_0.75L,sr,23,4.6,force,front_fx,0.0019431442487984896 +illusion_0.75L,sr,23,4.6,force,front_fy,-1.707838805486972e-06 +illusion_0.75L,sr,23,4.6,force,upper_fx,0.002341829938814044 +illusion_0.75L,sr,23,4.6,force,upper_fy,0.00041309688822366297 +illusion_0.75L,sr,23,4.6,force,lower_fx,0.0023481720127165318 +illusion_0.75L,sr,23,4.6,force,lower_fy,-0.00019783865718636662 +illusion_0.75L,sr,24,4.8,force,front_fx,0.0019334967946633697 +illusion_0.75L,sr,24,4.8,force,front_fy,6.401669907063479e-06 +illusion_0.75L,sr,24,4.8,force,upper_fx,0.0023412846494466066 +illusion_0.75L,sr,24,4.8,force,upper_fy,0.00042083312291651964 +illusion_0.75L,sr,24,4.8,force,lower_fx,0.002325623296201229 +illusion_0.75L,sr,24,4.8,force,lower_fy,-0.00018343554984312505 +illusion_0.75L,sr,25,5.0,force,front_fx,0.0019319870043545961 +illusion_0.75L,sr,25,5.0,force,front_fy,1.481048184359679e-05 +illusion_0.75L,sr,25,5.0,force,upper_fx,0.0023460693191736937 +illusion_0.75L,sr,25,5.0,force,upper_fy,0.00042383550317026675 +illusion_0.75L,sr,25,5.0,force,lower_fx,0.002308956580236554 +illusion_0.75L,sr,25,5.0,force,lower_fy,-0.00016895800945349038 +illusion_0.75L,sr,26,5.2,force,front_fx,0.0019340702565386891 +illusion_0.75L,sr,26,5.2,force,front_fy,2.2715043087373488e-05 +illusion_0.75L,sr,26,5.2,force,upper_fx,0.0023569983895868063 +illusion_0.75L,sr,26,5.2,force,upper_fy,0.0004249643243383616 +illusion_0.75L,sr,26,5.2,force,lower_fx,0.0022990687284618616 +illusion_0.75L,sr,26,5.2,force,lower_fy,-0.00015777428052388132 +illusion_0.75L,sr,27,5.4,force,front_fx,0.0019391439855098724 +illusion_0.75L,sr,27,5.4,force,front_fy,2.9436603654175997e-05 +illusion_0.75L,sr,27,5.4,force,upper_fx,0.0023680164013057947 +illusion_0.75L,sr,27,5.4,force,upper_fy,0.0004226375021971762 +illusion_0.75L,sr,27,5.4,force,lower_fx,0.002289922209456563 +illusion_0.75L,sr,27,5.4,force,lower_fy,-0.0001483797241235152 +illusion_0.75L,sr,28,5.6,force,front_fx,0.0019395679701119661 +illusion_0.75L,sr,28,5.6,force,front_fy,3.599904812290333e-05 +illusion_0.75L,sr,28,5.6,force,upper_fx,0.0023798865731805563 +illusion_0.75L,sr,28,5.6,force,upper_fy,0.0004198308743070811 +illusion_0.75L,sr,28,5.6,force,lower_fx,0.002282804809510708 +illusion_0.75L,sr,28,5.6,force,lower_fy,-0.0001435016602044925 +illusion_0.75L,sr,29,5.8,force,front_fx,0.0019390956731513143 +illusion_0.75L,sr,29,5.8,force,front_fy,4.258607077645138e-05 +illusion_0.75L,sr,29,5.8,force,upper_fx,0.0023868985008448362 +illusion_0.75L,sr,29,5.8,force,upper_fy,0.0004152239125687629 +illusion_0.75L,sr,29,5.8,force,lower_fx,0.002272329293191433 +illusion_0.75L,sr,29,5.8,force,lower_fy,-0.00014228610962163657 +illusion_0.75L,sr,30,6.0,force,front_fx,0.0019358507124707103 +illusion_0.75L,sr,30,6.0,force,front_fy,4.8863636038731784e-05 +illusion_0.75L,sr,30,6.0,force,upper_fx,0.002390441484749317 +illusion_0.75L,sr,30,6.0,force,upper_fy,0.0004112950700800866 +illusion_0.75L,sr,30,6.0,force,lower_fx,0.0022602526005357504 +illusion_0.75L,sr,30,6.0,force,lower_fy,-0.0001465266104787588 +illusion_0.75L,sr,31,6.2,force,front_fx,0.0019330900395289063 +illusion_0.75L,sr,31,6.2,force,front_fy,5.387223791331053e-05 +illusion_0.75L,sr,31,6.2,force,upper_fx,0.002392935799434781 +illusion_0.75L,sr,31,6.2,force,upper_fy,0.0004066636029165238 +illusion_0.75L,sr,31,6.2,force,lower_fx,0.002249031560495496 +illusion_0.75L,sr,31,6.2,force,lower_fy,-0.00015473733947146684 +illusion_0.75L,sr,32,6.4,force,front_fx,0.0019292512442916632 +illusion_0.75L,sr,32,6.4,force,front_fy,5.762188811786473e-05 +illusion_0.75L,sr,32,6.4,force,upper_fx,0.0023947579320520163 +illusion_0.75L,sr,32,6.4,force,upper_fy,0.00040245027048513293 +illusion_0.75L,sr,32,6.4,force,lower_fx,0.00223928177729249 +illusion_0.75L,sr,32,6.4,force,lower_fy,-0.00016756121476646513 +illusion_0.75L,sr,33,6.6,force,front_fx,0.0019235929939895868 +illusion_0.75L,sr,33,6.6,force,front_fy,6.115095311542973e-05 +illusion_0.75L,sr,33,6.6,force,upper_fx,0.002392907626926899 +illusion_0.75L,sr,33,6.6,force,upper_fy,0.0003984290815424174 +illusion_0.75L,sr,33,6.6,force,lower_fx,0.002228514291346073 +illusion_0.75L,sr,33,6.6,force,lower_fy,-0.00018373032798990607 +illusion_0.75L,sr,34,6.8,force,front_fx,0.0019163638353347778 +illusion_0.75L,sr,34,6.8,force,front_fy,6.422281148843467e-05 +illusion_0.75L,sr,34,6.8,force,upper_fx,0.0023864535614848137 +illusion_0.75L,sr,34,6.8,force,upper_fy,0.00039571980596520007 +illusion_0.75L,sr,34,6.8,force,lower_fx,0.0022161435335874557 +illusion_0.75L,sr,34,6.8,force,lower_fy,-0.00020444465917535126 +illusion_0.75L,sr,35,7.0,force,front_fx,0.00190869125071913 +illusion_0.75L,sr,35,7.0,force,front_fy,6.5622414695099e-05 +illusion_0.75L,sr,35,7.0,force,upper_fx,0.0023766241502016783 +illusion_0.75L,sr,35,7.0,force,upper_fy,0.00039304900565184653 +illusion_0.75L,sr,35,7.0,force,lower_fx,0.0022033238783478737 +illusion_0.75L,sr,35,7.0,force,lower_fy,-0.00022793986136093736 +illusion_0.75L,sr,36,7.2,force,front_fx,0.0019042843487113714 +illusion_0.75L,sr,36,7.2,force,front_fy,6.539854075526819e-05 +illusion_0.75L,sr,36,7.2,force,upper_fx,0.0023708436638116837 +illusion_0.75L,sr,36,7.2,force,upper_fy,0.0003905724734067917 +illusion_0.75L,sr,36,7.2,force,lower_fx,0.0021974011324346066 +illusion_0.75L,sr,36,7.2,force,lower_fy,-0.00025319698033854365 +illusion_0.75L,sr,37,7.4,force,front_fx,0.0019055934390053153 +illusion_0.75L,sr,37,7.4,force,front_fy,6.474401016021147e-05 +illusion_0.75L,sr,37,7.4,force,upper_fx,0.0023691027890890837 +illusion_0.75L,sr,37,7.4,force,upper_fy,0.0003870440705213696 +illusion_0.75L,sr,37,7.4,force,lower_fx,0.0021986556239426136 +illusion_0.75L,sr,37,7.4,force,lower_fy,-0.0002786848635878414 +illusion_0.75L,sr,38,7.6,force,front_fx,0.0019066749373450875 +illusion_0.75L,sr,38,7.6,force,front_fy,6.387141183950007e-05 +illusion_0.75L,sr,38,7.6,force,upper_fx,0.0023658000864088535 +illusion_0.75L,sr,38,7.6,force,upper_fy,0.0003838117700070143 +illusion_0.75L,sr,38,7.6,force,lower_fx,0.0022016980219632387 +illusion_0.75L,sr,38,7.6,force,lower_fy,-0.00030522653833031654 +illusion_0.75L,sr,39,7.8,force,front_fx,0.0019078801851719618 +illusion_0.75L,sr,39,7.8,force,front_fy,6.049267904018052e-05 +illusion_0.75L,sr,39,7.8,force,upper_fx,0.002358958823606372 +illusion_0.75L,sr,39,7.8,force,upper_fy,0.0003801846760325134 +illusion_0.75L,sr,39,7.8,force,lower_fx,0.00220418069511652 +illusion_0.75L,sr,39,7.8,force,lower_fy,-0.00033195072319358587 +illusion_0.75L,sr,40,8.0,force,front_fx,0.001905098557472229 +illusion_0.75L,sr,40,8.0,force,front_fy,5.588269777945243e-05 +illusion_0.75L,sr,40,8.0,force,upper_fx,0.0023468779399991035 +illusion_0.75L,sr,40,8.0,force,upper_fy,0.0003756588266696781 +illusion_0.75L,sr,40,8.0,force,lower_fx,0.00220358744263649 +illusion_0.75L,sr,40,8.0,force,lower_fy,-0.0003577607567422092 +illusion_0.75L,sr,41,8.2,force,front_fx,0.0019043280044570565 +illusion_0.75L,sr,41,8.2,force,front_fy,4.965648622601293e-05 +illusion_0.75L,sr,41,8.2,force,upper_fx,0.0023358329199254513 +illusion_0.75L,sr,41,8.2,force,upper_fy,0.000369434681488201 +illusion_0.75L,sr,41,8.2,force,lower_fx,0.0022066286765038967 +illusion_0.75L,sr,41,8.2,force,lower_fy,-0.00038193873479031026 +illusion_0.75L,sr,42,8.4,force,front_fx,0.0019012241391465068 +illusion_0.75L,sr,42,8.4,force,front_fy,4.387004810268991e-05 +illusion_0.75L,sr,42,8.4,force,upper_fx,0.002321836305782199 +illusion_0.75L,sr,42,8.4,force,upper_fy,0.00036097780684940517 +illusion_0.75L,sr,42,8.4,force,lower_fx,0.0022085390519350767 +illusion_0.75L,sr,42,8.4,force,lower_fy,-0.00040299096144735813 +illusion_0.75L,sr,43,8.6,force,front_fx,0.0019007017835974693 +illusion_0.75L,sr,43,8.6,force,front_fy,3.7855483242310584e-05 +illusion_0.75L,sr,43,8.6,force,upper_fx,0.0023074562195688486 +illusion_0.75L,sr,43,8.6,force,upper_fy,0.0003503338375594467 +illusion_0.75L,sr,43,8.6,force,lower_fx,0.002211736049503088 +illusion_0.75L,sr,43,8.6,force,lower_fy,-0.00042115867836400867 +illusion_0.75L,sr,44,8.8,force,front_fx,0.0018979953601956367 +illusion_0.75L,sr,44,8.8,force,front_fy,3.034125802514609e-05 +illusion_0.75L,sr,44,8.8,force,upper_fx,0.002292087534442544 +illusion_0.75L,sr,44,8.8,force,upper_fy,0.0003369497135281563 +illusion_0.75L,sr,44,8.8,force,lower_fx,0.0022148126736283302 +illusion_0.75L,sr,44,8.8,force,lower_fy,-0.00043520223698578775 +illusion_0.75L,sr,45,9.0,force,front_fx,0.0018927395576611161 +illusion_0.75L,sr,45,9.0,force,front_fy,2.2201322281034663e-05 +illusion_0.75L,sr,45,9.0,force,upper_fx,0.002271839417517185 +illusion_0.75L,sr,45,9.0,force,upper_fy,0.0003232784220017493 +illusion_0.75L,sr,45,9.0,force,lower_fx,0.002213503932580352 +illusion_0.75L,sr,45,9.0,force,lower_fy,-0.0004464040684979409 +illusion_0.75L,sr,46,9.2,force,front_fx,0.0018893203232437372 +illusion_0.75L,sr,46,9.2,force,front_fy,1.4576280591427349e-05 +illusion_0.75L,sr,46,9.2,force,upper_fx,0.002255611354485154 +illusion_0.75L,sr,46,9.2,force,upper_fy,0.00030680547934025526 +illusion_0.75L,sr,46,9.2,force,lower_fx,0.002216657856479287 +illusion_0.75L,sr,46,9.2,force,lower_fy,-0.0004524495452642441 +illusion_0.75L,sr,47,9.4,force,front_fx,0.0018897521076723933 +illusion_0.75L,sr,47,9.4,force,front_fy,7.480686690541916e-06 +illusion_0.75L,sr,47,9.4,force,upper_fx,0.00224232766777277 +illusion_0.75L,sr,47,9.4,force,upper_fy,0.0002892700722441077 +illusion_0.75L,sr,47,9.4,force,lower_fx,0.0022228225134313107 +illusion_0.75L,sr,47,9.4,force,lower_fy,-0.00045476880040951073 +illusion_0.75L,sr,48,9.6,force,front_fx,0.0018944600597023964 +illusion_0.75L,sr,48,9.6,force,front_fy,6.346454028971493e-08 +illusion_0.75L,sr,48,9.6,force,upper_fx,0.002236511092633009 +illusion_0.75L,sr,48,9.6,force,upper_fy,0.00027083055465482175 +illusion_0.75L,sr,48,9.6,force,lower_fx,0.002236106665804982 +illusion_0.75L,sr,48,9.6,force,lower_fy,-0.00045328025589697063 +illusion_0.75L,sr,49,9.8,force,front_fx,0.001900927280075848 +illusion_0.75L,sr,49,9.8,force,front_fy,-7.756314516882412e-06 +illusion_0.75L,sr,49,9.8,force,upper_fx,0.0022330426145344973 +illusion_0.75L,sr,49,9.8,force,upper_fy,0.0002533553633838892 +illusion_0.75L,sr,49,9.8,force,lower_fx,0.0022510532289743423 +illusion_0.75L,sr,49,9.8,force,lower_fy,-0.00044966497807763517 +illusion_0.75L,sr,50,10.0,force,front_fx,0.0019070282578468323 +illusion_0.75L,sr,50,10.0,force,front_fy,-1.4764687875867821e-05 +illusion_0.75L,sr,50,10.0,force,upper_fx,0.0022315960377454758 +illusion_0.75L,sr,50,10.0,force,upper_fy,0.0002375098702032119 +illusion_0.75L,sr,50,10.0,force,lower_fx,0.0022671660408377647 +illusion_0.75L,sr,50,10.0,force,lower_fy,-0.0004438020696397871 +illusion_0.75L,sr,51,10.2,force,front_fx,0.0019094683229923248 +illusion_0.75L,sr,51,10.2,force,front_fy,-2.0783962099812925e-05 +illusion_0.75L,sr,51,10.2,force,upper_fx,0.0022263568826019764 +illusion_0.75L,sr,51,10.2,force,upper_fy,0.00022524337691720575 +illusion_0.75L,sr,51,10.2,force,lower_fx,0.0022786634508520365 +illusion_0.75L,sr,51,10.2,force,lower_fy,-0.00043791576172225177 +illusion_0.75L,sr,52,10.4,force,front_fx,0.0019106679828837514 +illusion_0.75L,sr,52,10.4,force,front_fy,-2.6477828214410692e-05 +illusion_0.75L,sr,52,10.4,force,upper_fx,0.0022210560273379087 +illusion_0.75L,sr,52,10.4,force,upper_fy,0.00021551774989347905 +illusion_0.75L,sr,52,10.4,force,lower_fx,0.0022889054380357265 +illusion_0.75L,sr,52,10.4,force,lower_fy,-0.0004310044168960303 +illusion_0.75L,sr,53,10.6,force,front_fx,0.0019106813706457615 +illusion_0.75L,sr,53,10.6,force,front_fy,-3.2153875508811325e-05 +illusion_0.75L,sr,53,10.6,force,upper_fx,0.0022158785723149776 +illusion_0.75L,sr,53,10.6,force,upper_fy,0.00020992096688132733 +illusion_0.75L,sr,53,10.6,force,lower_fx,0.0022978021297603846 +illusion_0.75L,sr,53,10.6,force,lower_fy,-0.0004244163865223527 +illusion_0.75L,sr,54,10.8,force,front_fx,0.0019119575154036283 +illusion_0.75L,sr,54,10.8,force,front_fy,-3.6978199204895645e-05 +illusion_0.75L,sr,54,10.8,force,upper_fx,0.0022119611967355013 +illusion_0.75L,sr,54,10.8,force,upper_fy,0.00020802213111892343 +illusion_0.75L,sr,54,10.8,force,lower_fx,0.002306285547092557 +illusion_0.75L,sr,54,10.8,force,lower_fy,-0.0004174174682702869 +illusion_0.75L,sr,55,11.0,force,front_fx,0.001910537132062018 +illusion_0.75L,sr,55,11.0,force,front_fy,-4.0585196984466165e-05 +illusion_0.75L,sr,55,11.0,force,upper_fx,0.002208685502409935 +illusion_0.75L,sr,55,11.0,force,upper_fy,0.00021086355263832957 +illusion_0.75L,sr,55,11.0,force,lower_fx,0.0023137943353503942 +illusion_0.75L,sr,55,11.0,force,lower_fy,-0.00041143238195218146 +illusion_0.75L,sr,56,11.2,force,front_fx,0.0019061428029090166 +illusion_0.75L,sr,56,11.2,force,front_fy,-4.3575801100814715e-05 +illusion_0.75L,sr,56,11.2,force,upper_fx,0.0022007115185260773 +illusion_0.75L,sr,56,11.2,force,upper_fy,0.00021832883066963404 +illusion_0.75L,sr,56,11.2,force,lower_fx,0.0023146560415625572 +illusion_0.75L,sr,56,11.2,force,lower_fy,-0.0004067507106810808 +illusion_0.75L,sr,57,11.4,force,front_fx,0.001901480252854526 +illusion_0.75L,sr,57,11.4,force,front_fy,-4.618594903149642e-05 +illusion_0.75L,sr,57,11.4,force,upper_fx,0.0021935252007097006 +illusion_0.75L,sr,57,11.4,force,upper_fy,0.0002292288700118661 +illusion_0.75L,sr,57,11.4,force,lower_fx,0.002314009703695774 +illusion_0.75L,sr,57,11.4,force,lower_fy,-0.00040217311470769346 +illusion_0.75L,sr,58,11.6,force,front_fx,0.0018994106212630868 +illusion_0.75L,sr,58,11.6,force,front_fy,-4.79893569718115e-05 +illusion_0.75L,sr,58,11.6,force,upper_fx,0.002191368490457535 +illusion_0.75L,sr,58,11.6,force,upper_fy,0.00024392837076447904 +illusion_0.75L,sr,58,11.6,force,lower_fx,0.002316044643521309 +illusion_0.75L,sr,58,11.6,force,lower_fy,-0.00039845926221460104 +illusion_0.75L,sr,59,11.8,force,front_fx,0.0019007025985047221 +illusion_0.75L,sr,59,11.8,force,front_fy,-4.839601751882583e-05 +illusion_0.75L,sr,59,11.8,force,upper_fx,0.0021940215956419706 +illusion_0.75L,sr,59,11.8,force,upper_fy,0.00026129905018024147 +illusion_0.75L,sr,59,11.8,force,lower_fx,0.002320476807653904 +illusion_0.75L,sr,59,11.8,force,lower_fy,-0.0003946803044527769 +illusion_0.75L,sr,60,12.0,force,front_fx,0.0019052221905440092 +illusion_0.75L,sr,60,12.0,force,front_fy,-4.781322058988735e-05 +illusion_0.75L,sr,60,12.0,force,upper_fx,0.002201816998422146 +illusion_0.75L,sr,60,12.0,force,upper_fy,0.0002813395403791219 +illusion_0.75L,sr,60,12.0,force,lower_fx,0.0023274424020200968 +illusion_0.75L,sr,60,12.0,force,lower_fy,-0.0003911984385922551 +illusion_0.75L,sr,61,12.2,force,front_fx,0.001908744452521205 +illusion_0.75L,sr,61,12.2,force,front_fy,-4.648927642847411e-05 +illusion_0.75L,sr,61,12.2,force,upper_fx,0.0022094985470175743 +illusion_0.75L,sr,61,12.2,force,upper_fy,0.0003034519904758781 +illusion_0.75L,sr,61,12.2,force,lower_fx,0.0023315560538321733 +illusion_0.75L,sr,61,12.2,force,lower_fy,-0.0003875328693538904 +illusion_0.75L,sr,62,12.4,force,front_fx,0.0019086545798927546 +illusion_0.75L,sr,62,12.4,force,front_fy,-4.430605622474104e-05 +illusion_0.75L,sr,62,12.4,force,upper_fx,0.0022133670281618834 +illusion_0.75L,sr,62,12.4,force,upper_fy,0.00032762426417320967 +illusion_0.75L,sr,62,12.4,force,lower_fx,0.0023291928227990866 +illusion_0.75L,sr,62,12.4,force,lower_fy,-0.00038432524888776243 +illusion_0.75L,sr,63,12.6,force,front_fx,0.0019081011414527893 +illusion_0.75L,sr,63,12.6,force,front_fy,-4.09500535170082e-05 +illusion_0.75L,sr,63,12.6,force,upper_fx,0.002218602690845728 +illusion_0.75L,sr,63,12.6,force,upper_fy,0.0003516881843097508 +illusion_0.75L,sr,63,12.6,force,lower_fx,0.0023257508873939514 +illusion_0.75L,sr,63,12.6,force,lower_fy,-0.00037984337541274726 +illusion_0.75L,sr,64,12.8,force,front_fx,0.0019061241764575243 +illusion_0.75L,sr,64,12.8,force,front_fy,-3.638697671703994e-05 +illusion_0.75L,sr,64,12.8,force,upper_fx,0.0022219899110496044 +illusion_0.75L,sr,64,12.8,force,upper_fy,0.0003750348696485162 +illusion_0.75L,sr,64,12.8,force,lower_fx,0.002318254904821515 +illusion_0.75L,sr,64,12.8,force,lower_fy,-0.000373770366422832 +illusion_0.75L,sr,65,13.0,force,front_fx,0.001906362478621304 +illusion_0.75L,sr,65,13.0,force,front_fy,-3.1101604690775275e-05 +illusion_0.75L,sr,65,13.0,force,upper_fx,0.0022285752929747105 +illusion_0.75L,sr,65,13.0,force,upper_fy,0.0003963777853641659 +illusion_0.75L,sr,65,13.0,force,lower_fx,0.0023120110854506493 +illusion_0.75L,sr,65,13.0,force,lower_fy,-0.000365451822290197 +illusion_0.75L,sr,66,13.2,force,front_fx,0.0019048707326874137 +illusion_0.75L,sr,66,13.2,force,front_fy,-2.5577444830560125e-05 +illusion_0.75L,sr,66,13.2,force,upper_fx,0.0022334717214107513 +illusion_0.75L,sr,66,13.2,force,upper_fy,0.0004150599997956306 +illusion_0.75L,sr,66,13.2,force,lower_fx,0.0023023851681500673 +illusion_0.75L,sr,66,13.2,force,lower_fy,-0.00035497883800417185 +illusion_0.75L,sr,67,13.4,force,front_fx,0.0019020644249394536 +illusion_0.75L,sr,67,13.4,force,front_fy,-1.9620039893197827e-05 +illusion_0.75L,sr,67,13.4,force,upper_fx,0.00223634485155344 +illusion_0.75L,sr,67,13.4,force,upper_fy,0.0004304932663217187 +illusion_0.75L,sr,67,13.4,force,lower_fx,0.0022894502617418766 +illusion_0.75L,sr,67,13.4,force,lower_fy,-0.00034241925459355116 +illusion_0.75L,sr,68,13.6,force,front_fx,0.0018994318088516593 +illusion_0.75L,sr,68,13.6,force,front_fy,-1.2931597666465677e-05 +illusion_0.75L,sr,68,13.6,force,upper_fx,0.0022405479103326797 +illusion_0.75L,sr,68,13.6,force,upper_fy,0.0004417623858898878 +illusion_0.75L,sr,68,13.6,force,lower_fx,0.0022770906798541546 +illusion_0.75L,sr,68,13.6,force,lower_fy,-0.00032750924583524466 +illusion_0.75L,sr,69,13.8,force,front_fx,0.001899410504847765 +illusion_0.75L,sr,69,13.8,force,front_fy,-6.066408332117135e-06 +illusion_0.75L,sr,69,13.8,force,upper_fx,0.0022487828973680735 +illusion_0.75L,sr,69,13.8,force,upper_fy,0.0004486589750740677 +illusion_0.75L,sr,69,13.8,force,lower_fx,0.0022684247232973576 +illusion_0.75L,sr,69,13.8,force,lower_fy,-0.00031085574300959706 +illusion_0.75L,sr,70,14.0,force,front_fx,0.0019037654856219888 +illusion_0.75L,sr,70,14.0,force,front_fy,3.914557851203426e-07 +illusion_0.75L,sr,70,14.0,force,upper_fx,0.002261803485453129 +illusion_0.75L,sr,70,14.0,force,upper_fy,0.0004512414743658155 +illusion_0.75L,sr,70,14.0,force,lower_fx,0.0022643236443400383 +illusion_0.75L,sr,70,14.0,force,lower_fy,-0.00029267813079059124 +illusion_0.75L,sr,71,14.2,force,front_fx,0.001911319443024695 +illusion_0.75L,sr,71,14.2,force,front_fy,6.8889494286850095e-06 +illusion_0.75L,sr,71,14.2,force,upper_fx,0.002279299544170499 +illusion_0.75L,sr,71,14.2,force,upper_fy,0.0004499759234022349 +illusion_0.75L,sr,71,14.2,force,lower_fx,0.0022649613674730062 +illusion_0.75L,sr,71,14.2,force,lower_fy,-0.00027430831687524915 +illusion_0.75L,sr,72,14.4,force,front_fx,0.0019182194955646992 +illusion_0.75L,sr,72,14.4,force,front_fy,1.2975224308320321e-05 +illusion_0.75L,sr,72,14.4,force,upper_fx,0.0022971595171839 +illusion_0.75L,sr,72,14.4,force,upper_fy,0.0004460678610485047 +illusion_0.75L,sr,72,14.4,force,lower_fx,0.002266651252284646 +illusion_0.75L,sr,72,14.4,force,lower_fy,-0.0002575686667114496 +illusion_0.75L,sr,73,14.6,force,front_fx,0.00192240159958601 +illusion_0.75L,sr,73,14.6,force,front_fy,1.857914321590215e-05 +illusion_0.75L,sr,73,14.6,force,upper_fx,0.0023118306417018175 +illusion_0.75L,sr,73,14.6,force,upper_fy,0.0004403664788696915 +illusion_0.75L,sr,73,14.6,force,lower_fx,0.00226603914052248 +illusion_0.75L,sr,73,14.6,force,lower_fy,-0.00024337906506843865 +illusion_0.75L,sr,74,14.8,force,front_fx,0.0019259767141193151 +illusion_0.75L,sr,74,14.8,force,front_fy,2.3703265469521284e-05 +illusion_0.75L,sr,74,14.8,force,upper_fx,0.002325516426935792 +illusion_0.75L,sr,74,14.8,force,upper_fy,0.00043291092151775956 +illusion_0.75L,sr,74,14.8,force,lower_fx,0.002265678718686104 +illusion_0.75L,sr,74,14.8,force,lower_fy,-0.0002321878564544022 +illusion_0.75L,sr,75,15.0,force,front_fx,0.0019267079187557101 +illusion_0.75L,sr,75,15.0,force,front_fy,2.8252550691831857e-05 +illusion_0.75L,sr,75,15.0,force,upper_fx,0.002335671568289399 +illusion_0.75L,sr,75,15.0,force,upper_fy,0.0004248138575349003 +illusion_0.75L,sr,75,15.0,force,lower_fx,0.0022633394692093134 +illusion_0.75L,sr,75,15.0,force,lower_fy,-0.0002252827980555594 +illusion_0.75L,sr,76,15.2,force,front_fx,0.0019284719601273537 +illusion_0.75L,sr,76,15.2,force,front_fy,3.199251295882277e-05 +illusion_0.75L,sr,76,15.2,force,upper_fx,0.0023461992386728525 +illusion_0.75L,sr,76,15.2,force,upper_fy,0.00041589379543438554 +illusion_0.75L,sr,76,15.2,force,lower_fx,0.0022630938328802586 +illusion_0.75L,sr,76,15.2,force,lower_fy,-0.00022246388834901154 +illusion_0.75L,sr,77,15.4,force,front_fx,0.0019293837249279022 +illusion_0.75L,sr,77,15.4,force,front_fy,3.4876044082921e-05 +illusion_0.75L,sr,77,15.4,force,upper_fx,0.0023556025698781013 +illusion_0.75L,sr,77,15.4,force,upper_fy,0.0004073551972396672 +illusion_0.75L,sr,77,15.4,force,lower_fx,0.0022636535577476025 +illusion_0.75L,sr,77,15.4,force,lower_fy,-0.0002246609510621056 +illusion_0.75L,sr,78,15.6,force,front_fx,0.001926847267895937 +illusion_0.75L,sr,78,15.6,force,front_fy,3.723016561707482e-05 +illusion_0.75L,sr,78,15.6,force,upper_fx,0.00235803984105587 +illusion_0.75L,sr,78,15.6,force,upper_fy,0.00039946488686837256 +illusion_0.75L,sr,78,15.6,force,lower_fx,0.002259457018226385 +illusion_0.75L,sr,78,15.6,force,lower_fy,-0.00023161065473686904 +illusion_0.75L,sr,79,15.8,force,front_fx,0.0019230054458603263 +illusion_0.75L,sr,79,15.8,force,front_fy,3.8887661503395066e-05 +illusion_0.75L,sr,79,15.8,force,upper_fx,0.0023590554483234882 +illusion_0.75L,sr,79,15.8,force,upper_fy,0.0003924886987078935 +illusion_0.75L,sr,79,15.8,force,lower_fx,0.002256304956972599 +illusion_0.75L,sr,79,15.8,force,lower_fy,-0.00024339091032743454 +illusion_0.75L,sr,80,16.0,force,front_fx,0.0019210900645703077 +illusion_0.75L,sr,80,16.0,force,front_fy,3.920585731975734e-05 +illusion_0.75L,sr,80,16.0,force,upper_fx,0.0023604584857821465 +illusion_0.75L,sr,80,16.0,force,upper_fy,0.0003855473187286407 +illusion_0.75L,sr,80,16.0,force,lower_fx,0.0022560004144906998 +illusion_0.75L,sr,80,16.0,force,lower_fy,-0.0002587914641480893 +illusion_0.75L,sr,81,16.2,force,front_fx,0.0019222274422645569 +illusion_0.75L,sr,81,16.2,force,front_fy,3.861263394355774e-05 +illusion_0.75L,sr,81,16.2,force,upper_fx,0.002363845007494092 +illusion_0.75L,sr,81,16.2,force,upper_fy,0.00037917180452495813 +illusion_0.75L,sr,81,16.2,force,lower_fx,0.002259987173601985 +illusion_0.75L,sr,81,16.2,force,lower_fy,-0.0002773393061943352 +illusion_0.75L,sr,82,16.4,force,front_fx,0.0019272351637482643 +illusion_0.75L,sr,82,16.4,force,front_fy,3.7432200770126656e-05 +illusion_0.75L,sr,82,16.4,force,upper_fx,0.0023707831278443336 +illusion_0.75L,sr,82,16.4,force,upper_fy,0.0003728710871655494 +illusion_0.75L,sr,82,16.4,force,lower_fx,0.0022701548878103495 +illusion_0.75L,sr,82,16.4,force,lower_fy,-0.00029798856121487916 +illusion_0.75L,sr,83,16.6,force,front_fx,0.0019304172601550817 +illusion_0.75L,sr,83,16.6,force,front_fy,3.557036689016968e-05 +illusion_0.75L,sr,83,16.6,force,upper_fx,0.002373739844188094 +illusion_0.75L,sr,83,16.6,force,upper_fy,0.0003672414750326425 +illusion_0.75L,sr,83,16.6,force,lower_fx,0.002278906060382724 +illusion_0.75L,sr,83,16.6,force,lower_fy,-0.0003207869885955006 +illusion_0.75L,sr,84,16.8,force,front_fx,0.0019319516140967607 +illusion_0.75L,sr,84,16.8,force,front_fy,3.2526080758543685e-05 +illusion_0.75L,sr,84,16.8,force,upper_fx,0.0023727156221866608 +illusion_0.75L,sr,84,16.8,force,upper_fy,0.0003617062175180763 +illusion_0.75L,sr,84,16.8,force,lower_fx,0.0022859193850308657 +illusion_0.75L,sr,84,16.8,force,lower_fy,-0.00034458001027815044 +illusion_0.75L,sr,85,17.0,force,front_fx,0.0019314794335514307 +illusion_0.75L,sr,85,17.0,force,front_fy,2.878632403735537e-05 +illusion_0.75L,sr,85,17.0,force,upper_fx,0.0023681153543293476 +illusion_0.75L,sr,85,17.0,force,upper_fy,0.00035579645191319287 +illusion_0.75L,sr,85,17.0,force,lower_fx,0.0022912854328751564 +illusion_0.75L,sr,85,17.0,force,lower_fy,-0.00036799898953177035 +illusion_0.75L,sr,86,17.2,force,front_fx,0.0019299827981740236 +illusion_0.75L,sr,86,17.2,force,front_fy,2.378600947849918e-05 +illusion_0.75L,sr,86,17.2,force,upper_fx,0.002360976068302989 +illusion_0.75L,sr,86,17.2,force,upper_fy,0.00034908123780041933 +illusion_0.75L,sr,86,17.2,force,lower_fx,0.0022959487978368998 +illusion_0.75L,sr,86,17.2,force,lower_fy,-0.00038974982453510165 +illusion_0.75L,sr,87,17.4,force,front_fx,0.0019298249389976263 +illusion_0.75L,sr,87,17.4,force,front_fy,1.8953209291794337e-05 +illusion_0.75L,sr,87,17.4,force,upper_fx,0.002353919204324484 +illusion_0.75L,sr,87,17.4,force,upper_fy,0.00034090408007614315 +illusion_0.75L,sr,87,17.4,force,lower_fx,0.002301958855241537 +illusion_0.75L,sr,87,17.4,force,lower_fy,-0.0004083843086846173 +illusion_0.75L,sr,88,17.6,force,front_fx,0.0019295895472168922 +illusion_0.75L,sr,88,17.6,force,front_fy,1.3939996279077604e-05 +illusion_0.75L,sr,88,17.6,force,upper_fx,0.0023459617514163256 +illusion_0.75L,sr,88,17.6,force,upper_fy,0.0003308642189949751 +illusion_0.75L,sr,88,17.6,force,lower_fx,0.0023082555271685123 +illusion_0.75L,sr,88,17.6,force,lower_fy,-0.0004236119566485286 +illusion_0.75L,sr,89,17.8,force,front_fx,0.0019269267795607448 +illusion_0.75L,sr,89,17.8,force,front_fy,8.222864380513784e-06 +illusion_0.75L,sr,89,17.8,force,upper_fx,0.0023337036836892366 +illusion_0.75L,sr,89,17.8,force,upper_fy,0.0003198945487383753 +illusion_0.75L,sr,89,17.8,force,lower_fx,0.0023107302840799093 +illusion_0.75L,sr,89,17.8,force,lower_fy,-0.0004352263640612364 +illusion_0.75L,sr,90,18.0,force,front_fx,0.0019233720377087593 +illusion_0.75L,sr,90,18.0,force,front_fy,2.317480721103493e-06 +illusion_0.75L,sr,90,18.0,force,upper_fx,0.0023212216328829527 +illusion_0.75L,sr,90,18.0,force,upper_fy,0.00030796744977124035 +illusion_0.75L,sr,90,18.0,force,lower_fx,0.002313113771378994 +illusion_0.75L,sr,90,18.0,force,lower_fy,-0.0004421976627781987 +illusion_0.75L,sr,91,18.2,force,front_fx,0.0019227276789024472 +illusion_0.75L,sr,91,18.2,force,front_fy,-3.09298684442183e-06 +illusion_0.75L,sr,91,18.2,force,upper_fx,0.002312314696609974 +illusion_0.75L,sr,91,18.2,force,upper_fy,0.00029518373776227236 +illusion_0.75L,sr,91,18.2,force,lower_fx,0.002319067483767867 +illusion_0.75L,sr,91,18.2,force,lower_fy,-0.00044446971151046455 +illusion_0.75L,sr,92,18.4,force,front_fx,0.0019247682066634297 +illusion_0.75L,sr,92,18.4,force,front_fy,-8.152006557793356e-06 +illusion_0.75L,sr,92,18.4,force,upper_fx,0.0023067714646458626 +illusion_0.75L,sr,92,18.4,force,upper_fy,0.0002821441157720983 +illusion_0.75L,sr,92,18.4,force,lower_fx,0.0023280729074031115 +illusion_0.75L,sr,92,18.4,force,lower_fy,-0.000442574848420918 +illusion_0.75L,sr,93,18.6,force,front_fx,0.001931668259203434 +illusion_0.75L,sr,93,18.6,force,front_fy,-1.3303771993378177e-05 +illusion_0.75L,sr,93,18.6,force,upper_fx,0.0023082876577973366 +illusion_0.75L,sr,93,18.6,force,upper_fy,0.00026965446886606514 +illusion_0.75L,sr,93,18.6,force,lower_fx,0.00234332587569952 +illusion_0.75L,sr,93,18.6,force,lower_fy,-0.0004370927345007658 +illusion_0.75L,sr,94,18.8,force,front_fx,0.0019376585260033607 +illusion_0.75L,sr,94,18.8,force,front_fy,-1.834834984038025e-05 +illusion_0.75L,sr,94,18.8,force,upper_fx,0.0023098308593034744 +illusion_0.75L,sr,94,18.8,force,upper_fy,0.00025946798268705606 +illusion_0.75L,sr,94,18.8,force,lower_fx,0.00235760398209095 +illusion_0.75L,sr,94,18.8,force,lower_fy,-0.0004295524558983743 +illusion_0.75L,sr,95,19.0,force,front_fx,0.0019418325973674655 +illusion_0.75L,sr,95,19.0,force,front_fy,-2.247781776532065e-05 +illusion_0.75L,sr,95,19.0,force,upper_fx,0.0023102043196558952 +illusion_0.75L,sr,95,19.0,force,upper_fy,0.00025248844758607447 +illusion_0.75L,sr,95,19.0,force,lower_fx,0.002369486028328538 +illusion_0.75L,sr,95,19.0,force,lower_fy,-0.0004207165620755404 +illusion_0.75L,sr,96,19.2,force,front_fx,0.0019434167770668864 +illusion_0.75L,sr,96,19.2,force,front_fy,-2.574430254753679e-05 +illusion_0.75L,sr,96,19.2,force,upper_fx,0.0023093060590326786 +illusion_0.75L,sr,96,19.2,force,upper_fy,0.00024938699789345264 +illusion_0.75L,sr,96,19.2,force,lower_fx,0.0023788020480424166 +illusion_0.75L,sr,96,19.2,force,lower_fy,-0.0004115474584978074 +illusion_0.75L,sr,97,19.4,force,front_fx,0.0019430924439802766 +illusion_0.75L,sr,97,19.4,force,front_fy,-2.8769352866220288e-05 +illusion_0.75L,sr,97,19.4,force,upper_fx,0.0023064312990754843 +illusion_0.75L,sr,97,19.4,force,upper_fy,0.0002499708498362452 +illusion_0.75L,sr,97,19.4,force,lower_fx,0.0023844989482313395 +illusion_0.75L,sr,97,19.4,force,lower_fy,-0.00040237419307231903 +illusion_0.75L,sr,98,19.6,force,front_fx,0.0019434929126873612 +illusion_0.75L,sr,98,19.6,force,front_fy,-3.1549978302791715e-05 +illusion_0.75L,sr,98,19.6,force,upper_fx,0.002305596601217985 +illusion_0.75L,sr,98,19.6,force,upper_fy,0.0002545938186813146 +illusion_0.75L,sr,98,19.6,force,lower_fx,0.002390229143202305 +illusion_0.75L,sr,98,19.6,force,lower_fy,-0.0003935291606467217 +illusion_0.75L,sr,99,19.8,force,front_fx,0.001942959032021463 +illusion_0.75L,sr,99,19.8,force,front_fy,-3.33039861288853e-05 +illusion_0.75L,sr,99,19.8,force,upper_fx,0.0023046100977808237 +illusion_0.75L,sr,99,19.8,force,upper_fy,0.00026304952916689217 +illusion_0.75L,sr,99,19.8,force,lower_fx,0.002393871545791626 +illusion_0.75L,sr,99,19.8,force,lower_fy,-0.00038521780516020954 +illusion_0.75L,sr,100,20.0,force,front_fx,0.001939407316967845 +illusion_0.75L,sr,100,20.0,force,front_fy,-3.3869597245939076e-05 +illusion_0.75L,sr,100,20.0,force,upper_fx,0.0023003024980425835 +illusion_0.75L,sr,100,20.0,force,upper_fy,0.0002755153982434422 +illusion_0.75L,sr,100,20.0,force,lower_fx,0.0023922862019389868 +illusion_0.75L,sr,100,20.0,force,lower_fy,-0.0003783839929383248 +illusion_0.75L,sr,101,20.2,force,front_fx,0.0019347651395946741 +illusion_0.75L,sr,101,20.2,force,front_fy,-3.3910517231561244e-05 +illusion_0.75L,sr,101,20.2,force,upper_fx,0.002295776968821883 +illusion_0.75L,sr,101,20.2,force,upper_fy,0.00029058559448458254 +illusion_0.75L,sr,101,20.2,force,lower_fx,0.0023883371613919735 +illusion_0.75L,sr,101,20.2,force,lower_fy,-0.0003722253895830363 +illusion_0.75L,sr,102,20.4,force,front_fx,0.001930644386447966 +illusion_0.75L,sr,102,20.4,force,front_fy,-3.370865306351334e-05 +illusion_0.75L,sr,102,20.4,force,upper_fx,0.002292232820764184 +illusion_0.75L,sr,102,20.4,force,upper_fy,0.00030767734278924763 +illusion_0.75L,sr,102,20.4,force,lower_fx,0.0023831238504499197 +illusion_0.75L,sr,102,20.4,force,lower_fy,-0.0003667201963253319 +illusion_0.75L,sr,103,20.6,force,front_fx,0.0019296311074867845 +illusion_0.75L,sr,103,20.6,force,front_fy,-3.2649768400005996e-05 +illusion_0.75L,sr,103,20.6,force,upper_fx,0.002293161815032363 +illusion_0.75L,sr,103,20.6,force,upper_fy,0.0003257142670918256 +illusion_0.75L,sr,103,20.6,force,lower_fx,0.0023802500218153 +illusion_0.75L,sr,103,20.6,force,lower_fy,-0.00036120330332778394 +illusion_0.75L,sr,104,20.8,force,front_fx,0.0019380091689527035 +illusion_0.75L,sr,104,20.8,force,front_fy,-3.0502385925501585e-05 +illusion_0.75L,sr,104,20.8,force,upper_fx,0.002306021051481366 +illusion_0.75L,sr,104,20.8,force,upper_fy,0.0003445605980232358 +illusion_0.75L,sr,104,20.8,force,lower_fx,0.002387640066444874 +illusion_0.75L,sr,104,20.8,force,lower_fy,-0.00035619939444586635 +illusion_0.75L,sr,105,21.0,force,front_fx,0.0019363650353625417 +illusion_0.75L,sr,105,21.0,force,front_fy,-2.740612944762688e-05 +illusion_0.75L,sr,105,21.0,force,upper_fx,0.002307624788954854 +illusion_0.75L,sr,105,21.0,force,upper_fy,0.00036158354487270117 +illusion_0.75L,sr,105,21.0,force,lower_fx,0.002381555736064911 +illusion_0.75L,sr,105,21.0,force,lower_fy,-0.00034950210829265416 +illusion_0.75L,sr,106,21.2,force,front_fx,0.0019379424629732966 +illusion_0.75L,sr,106,21.2,force,front_fy,-2.4470673452015035e-05 +illusion_0.75L,sr,106,21.2,force,upper_fx,0.0023132076021283865 +illusion_0.75L,sr,106,21.2,force,upper_fy,0.00037858111318200827 +illusion_0.75L,sr,106,21.2,force,lower_fx,0.0023780008777976036 +illusion_0.75L,sr,106,21.2,force,lower_fy,-0.0003437365230638534 +illusion_0.75L,sr,107,21.4,force,front_fx,0.0019375142874196172 +illusion_0.75L,sr,107,21.4,force,front_fy,-2.0790206690435298e-05 +illusion_0.75L,sr,107,21.4,force,upper_fx,0.0023173110093921423 +illusion_0.75L,sr,107,21.4,force,upper_fy,0.00039384517003782094 +illusion_0.75L,sr,107,21.4,force,lower_fx,0.0023714445997029543 +illusion_0.75L,sr,107,21.4,force,lower_fy,-0.000337562378263101 +illusion_0.75L,sr,108,21.6,force,front_fx,0.0019364855252206326 +illusion_0.75L,sr,108,21.6,force,front_fy,-1.6379117369069718e-05 +illusion_0.75L,sr,108,21.6,force,upper_fx,0.0023206102196127176 +illusion_0.75L,sr,108,21.6,force,upper_fy,0.0004066669207531959 +illusion_0.75L,sr,108,21.6,force,lower_fx,0.0023632009979337454 +illusion_0.75L,sr,108,21.6,force,lower_fy,-0.0003306771395727992 +illusion_0.75L,sr,109,21.8,force,front_fx,0.001935891225002706 +illusion_0.75L,sr,109,21.8,force,front_fy,-1.1448410077719018e-05 +illusion_0.75L,sr,109,21.8,force,upper_fx,0.002324591390788555 +illusion_0.75L,sr,109,21.8,force,upper_fy,0.00041631757630966604 +illusion_0.75L,sr,109,21.8,force,lower_fx,0.0023549702018499374 +illusion_0.75L,sr,109,21.8,force,lower_fy,-0.0003225972759537399 +illusion_0.75L,sr,110,22.0,force,front_fx,0.0019358349964022636 +illusion_0.75L,sr,110,22.0,force,front_fy,-6.6421494011592586e-06 +illusion_0.75L,sr,110,22.0,force,upper_fx,0.002329382346943021 +illusion_0.75L,sr,110,22.0,force,upper_fy,0.0004226212331559509 +illusion_0.75L,sr,110,22.0,force,lower_fx,0.0023471335880458355 +illusion_0.75L,sr,110,22.0,force,lower_fy,-0.00031373181263916194 +illusion_0.75L,sr,111,22.2,force,front_fx,0.0019333123927935958 +illusion_0.75L,sr,111,22.2,force,front_fy,-2.189010501751909e-06 +illusion_0.75L,sr,111,22.2,force,upper_fx,0.002330474555492401 +illusion_0.75L,sr,111,22.2,force,upper_fy,0.00042571837548166513 +illusion_0.75L,sr,111,22.2,force,lower_fx,0.0023354385048151016 +illusion_0.75L,sr,111,22.2,force,lower_fy,-0.0003046763886231929 +illusion_0.75L,sr,112,22.4,force,front_fx,0.001934930682182312 +illusion_0.75L,sr,112,22.4,force,front_fy,2.365817181271268e-06 +illusion_0.75L,sr,112,22.4,force,upper_fx,0.00233758008107543 +illusion_0.75L,sr,112,22.4,force,upper_fy,0.00042668625246733427 +illusion_0.75L,sr,112,22.4,force,lower_fx,0.0023299092426896095 +illusion_0.75L,sr,112,22.4,force,lower_fy,-0.0002962485596071929 +illusion_0.75L,sr,113,22.6,force,front_fx,0.0019274625228717923 +illusion_0.75L,sr,113,22.6,force,front_fy,7.272813945746748e-06 +illusion_0.75L,sr,113,22.6,force,upper_fx,0.0023335583973675966 +illusion_0.75L,sr,113,22.6,force,upper_fy,0.00042274929000996053 +illusion_0.75L,sr,113,22.6,force,lower_fx,0.002313885372132063 +illusion_0.75L,sr,113,22.6,force,lower_fy,-0.00028666824800893664 +illusion_0.75L,sr,114,22.8,force,front_fx,0.001927973935380578 +illusion_0.75L,sr,114,22.8,force,front_fy,1.1873281437146943e-05 +illusion_0.75L,sr,114,22.8,force,upper_fx,0.0023389076814055443 +illusion_0.75L,sr,114,22.8,force,upper_fy,0.00041709610377438366 +illusion_0.75L,sr,114,22.8,force,lower_fx,0.0023080147802829742 +illusion_0.75L,sr,114,22.8,force,lower_fy,-0.00027845759177580476 +illusion_0.75L,sr,115,23.0,force,front_fx,0.0019332350930199027 +illusion_0.75L,sr,115,23.0,force,front_fy,1.5507777789025567e-05 +illusion_0.75L,sr,115,23.0,force,upper_fx,0.0023501738905906677 +illusion_0.75L,sr,115,23.0,force,upper_fy,0.00040948300738818944 +illusion_0.75L,sr,115,23.0,force,lower_fx,0.0023089100141078234 +illusion_0.75L,sr,115,23.0,force,lower_fy,-0.00027162671904079616 +illusion_0.75L,sr,116,23.2,force,front_fx,0.0019376692362129688 +illusion_0.75L,sr,116,23.2,force,front_fy,1.8514072507969104e-05 +illusion_0.75L,sr,116,23.2,force,upper_fx,0.0023604445159435272 +illusion_0.75L,sr,116,23.2,force,upper_fy,0.0004012680146843195 +illusion_0.75L,sr,116,23.2,force,lower_fx,0.0023098422680050135 +illusion_0.75L,sr,116,23.2,force,lower_fy,-0.0002673851267900318 +illusion_0.75L,sr,117,23.4,force,front_fx,0.0019409034866839647 +illusion_0.75L,sr,117,23.4,force,front_fy,2.146113183698617e-05 +illusion_0.75L,sr,117,23.4,force,upper_fx,0.002369047375395894 +illusion_0.75L,sr,117,23.4,force,upper_fy,0.0003934231644961983 +illusion_0.75L,sr,117,23.4,force,lower_fx,0.0023104858119040728 +illusion_0.75L,sr,117,23.4,force,lower_fy,-0.00026657929993234575 +illusion_0.75L,sr,118,23.6,force,front_fx,0.0019414705457165837 +illusion_0.75L,sr,118,23.6,force,front_fy,2.42364239966264e-05 +illusion_0.75L,sr,118,23.6,force,upper_fx,0.002374187344685197 +illusion_0.75L,sr,118,23.6,force,upper_fy,0.00038610483170486987 +illusion_0.75L,sr,118,23.6,force,lower_fx,0.0023092671763151884 +illusion_0.75L,sr,118,23.6,force,lower_fy,-0.0002690838882699609 +illusion_0.75L,sr,119,23.8,force,front_fx,0.0019453767454251647 +illusion_0.75L,sr,119,23.8,force,front_fy,2.6269801310263574e-05 +illusion_0.75L,sr,119,23.8,force,upper_fx,0.0023824090603739023 +illusion_0.75L,sr,119,23.8,force,upper_fy,0.00038082487299107015 +illusion_0.75L,sr,119,23.8,force,lower_fx,0.0023125139996409416 +illusion_0.75L,sr,119,23.8,force,lower_fy,-0.0002758297778200358 +illusion_0.75L,sr,120,24.0,force,front_fx,0.0019395346753299236 +illusion_0.75L,sr,120,24.0,force,front_fy,2.7129110094392672e-05 +illusion_0.75L,sr,120,24.0,force,upper_fx,0.0023777803871780634 +illusion_0.75L,sr,120,24.0,force,upper_fy,0.00037431292003020644 +illusion_0.75L,sr,120,24.0,force,lower_fx,0.002304908586665988 +illusion_0.75L,sr,120,24.0,force,lower_fy,-0.00028385024052113295 +illusion_0.75L,sr,121,24.2,force,front_fx,0.001938337692990899 +illusion_0.75L,sr,121,24.2,force,front_fy,2.7500198484631255e-05 +illusion_0.75L,sr,121,24.2,force,upper_fx,0.0023775268346071243 +illusion_0.75L,sr,121,24.2,force,upper_fy,0.00036968651693314314 +illusion_0.75L,sr,121,24.2,force,lower_fx,0.0023032785393297672 +illusion_0.75L,sr,121,24.2,force,lower_fy,-0.0002951548376586288 +illusion_0.75L,sr,122,24.4,force,front_fx,0.0019352980889379978 +illusion_0.75L,sr,122,24.4,force,front_fy,2.7961228624917567e-05 +illusion_0.75L,sr,122,24.4,force,upper_fx,0.0023734369315207005 +illusion_0.75L,sr,122,24.4,force,upper_fy,0.0003658967325463891 +illusion_0.75L,sr,122,24.4,force,lower_fx,0.0022997278720140457 +illusion_0.75L,sr,122,24.4,force,lower_fy,-0.0003084825293626636 +illusion_0.75L,sr,123,24.6,force,front_fx,0.0019298255210742354 +illusion_0.75L,sr,123,24.6,force,front_fy,2.712259447434917e-05 +illusion_0.75L,sr,123,24.6,force,upper_fx,0.0023657323326915503 +illusion_0.75L,sr,123,24.6,force,upper_fy,0.0003627812839113176 +illusion_0.75L,sr,123,24.6,force,lower_fx,0.002294525969773531 +illusion_0.75L,sr,123,24.6,force,lower_fy,-0.00032318002195097506 +illusion_0.75L,sr,124,24.8,force,front_fx,0.001925270538777113 +illusion_0.75L,sr,124,24.8,force,front_fy,2.5530014681862667e-05 +illusion_0.75L,sr,124,24.8,force,upper_fx,0.00235752877779305 +illusion_0.75L,sr,124,24.8,force,upper_fy,0.0003594994777813554 +illusion_0.75L,sr,124,24.8,force,lower_fx,0.0022902903147041798 +illusion_0.75L,sr,124,24.8,force,lower_fy,-0.00033805743441917 +illusion_0.75L,sr,125,25.0,force,front_fx,0.0019235244253650308 +illusion_0.75L,sr,125,25.0,force,front_fy,2.3288712327484973e-05 +illusion_0.75L,sr,125,25.0,force,upper_fx,0.002351336646825075 +illusion_0.75L,sr,125,25.0,force,upper_fy,0.00035536359064280987 +illusion_0.75L,sr,125,25.0,force,lower_fx,0.0022897457238286734 +illusion_0.75L,sr,125,25.0,force,lower_fy,-0.00035253711394034326 +illusion_0.75L,sr,126,25.2,force,front_fx,0.0019313350785523653 +illusion_0.75L,sr,126,25.2,force,front_fy,2.079799560306128e-05 +illusion_0.75L,sr,126,25.2,force,upper_fx,0.0023559723049402237 +illusion_0.75L,sr,126,25.2,force,upper_fy,0.0003510591632220894 +illusion_0.75L,sr,126,25.2,force,lower_fx,0.0023013674654066563 +illusion_0.75L,sr,126,25.2,force,lower_fy,-0.0003664657415356487 +illusion_0.75L,sr,127,25.4,force,front_fx,0.0019296816317364573 +illusion_0.75L,sr,127,25.4,force,front_fy,1.7980393749894574e-05 +illusion_0.75L,sr,127,25.4,force,upper_fx,0.0023486732970923185 +illusion_0.75L,sr,127,25.4,force,upper_fy,0.0003446750051807612 +illusion_0.75L,sr,127,25.4,force,lower_fx,0.002302631502971053 +illusion_0.75L,sr,127,25.4,force,lower_fy,-0.0003773647185880691 +illusion_0.75L,sr,128,25.6,force,front_fx,0.00193195475731045 +illusion_0.75L,sr,128,25.6,force,front_fy,1.449213596060872e-05 +illusion_0.75L,sr,128,25.6,force,upper_fx,0.0023452667519450188 +illusion_0.75L,sr,128,25.6,force,upper_fy,0.00033852580236271024 +illusion_0.75L,sr,128,25.6,force,lower_fx,0.0023087223526090384 +illusion_0.75L,sr,128,25.6,force,lower_fy,-0.0003877075796481222 +illusion_0.75L,sr,129,25.8,force,front_fx,0.0019323143642395735 +illusion_0.75L,sr,129,25.8,force,front_fy,1.0217825547442771e-05 +illusion_0.75L,sr,129,25.8,force,upper_fx,0.002339524682611227 +illusion_0.75L,sr,129,25.8,force,upper_fy,0.0003319604729767889 +illusion_0.75L,sr,129,25.8,force,lower_fx,0.0023131531197577715 +illusion_0.75L,sr,129,25.8,force,lower_fy,-0.000396399904275313 +illusion_0.75L,sr,130,26.0,force,front_fx,0.0019312246004119515 +illusion_0.75L,sr,130,26.0,force,front_fy,5.830610916746082e-06 +illusion_0.75L,sr,130,26.0,force,upper_fx,0.0023314938880503178 +illusion_0.75L,sr,130,26.0,force,upper_fy,0.0003250069567002356 +illusion_0.75L,sr,130,26.0,force,lower_fx,0.0023157233372330666 +illusion_0.75L,sr,130,26.0,force,lower_fy,-0.0004029995179735124 +illusion_0.75L,sr,131,26.2,force,front_fx,0.0019307957263663411 +illusion_0.75L,sr,131,26.2,force,front_fy,1.8370378711551894e-06 +illusion_0.75L,sr,131,26.2,force,upper_fx,0.0023245506454259157 +illusion_0.75L,sr,131,26.2,force,upper_fy,0.0003173865261487663 +illusion_0.75L,sr,131,26.2,force,lower_fx,0.0023196497932076454 +illusion_0.75L,sr,131,26.2,force,lower_fy,-0.00040697428630664945 +illusion_0.75L,sr,132,26.4,force,front_fx,0.0019307495094835758 +illusion_0.75L,sr,132,26.4,force,front_fy,-2.0423869955266127e-06 +illusion_0.75L,sr,132,26.4,force,upper_fx,0.0023176802787929773 +illusion_0.75L,sr,132,26.4,force,upper_fy,0.00030960040749050677 +illusion_0.75L,sr,132,26.4,force,lower_fx,0.002323687309399247 +illusion_0.75L,sr,132,26.4,force,lower_fy,-0.0004086261906195432 +illusion_0.75L,sr,133,26.6,force,front_fx,0.0019289448391646147 +illusion_0.75L,sr,133,26.6,force,front_fy,-6.189858595462283e-06 +illusion_0.75L,sr,133,26.6,force,upper_fx,0.002308728639036417 +illusion_0.75L,sr,133,26.6,force,upper_fy,0.00030209359829314053 +illusion_0.75L,sr,133,26.6,force,lower_fx,0.0023252961691468954 +illusion_0.75L,sr,133,26.6,force,lower_fy,-0.000408183375839144 +illusion_0.75L,sr,134,26.8,force,front_fx,0.0019252757774665952 +illusion_0.75L,sr,134,26.8,force,front_fy,-1.0423300409456715e-05 +illusion_0.75L,sr,134,26.8,force,upper_fx,0.002298709936439991 +illusion_0.75L,sr,134,26.8,force,upper_fy,0.0002955813833978027 +illusion_0.75L,sr,134,26.8,force,lower_fx,0.0023252421524375677 +illusion_0.75L,sr,134,26.8,force,lower_fy,-0.00040613097371533513 +illusion_0.75L,sr,135,27.0,force,front_fx,0.00192213652189821 +illusion_0.75L,sr,135,27.0,force,front_fy,-1.3989530089020263e-05 +illusion_0.75L,sr,135,27.0,force,upper_fx,0.0022893554996699095 +illusion_0.75L,sr,135,27.0,force,upper_fy,0.0002898296806961298 +illusion_0.75L,sr,135,27.0,force,lower_fx,0.0023251862730830908 +illusion_0.75L,sr,135,27.0,force,lower_fy,-0.00040216726483777165 +illusion_0.75L,sr,136,27.2,force,front_fx,0.001921638147905469 +illusion_0.75L,sr,136,27.2,force,front_fy,-1.687469739408698e-05 +illusion_0.75L,sr,136,27.2,force,upper_fx,0.002284071873873472 +illusion_0.75L,sr,136,27.2,force,upper_fy,0.0002854484773706645 +illusion_0.75L,sr,136,27.2,force,lower_fx,0.002328449860215187 +illusion_0.75L,sr,136,27.2,force,lower_fy,-0.00039712488069199026 +illusion_0.75L,sr,137,27.4,force,front_fx,0.0019251852063462138 +illusion_0.75L,sr,137,27.4,force,front_fy,-1.96148448594613e-05 +illusion_0.75L,sr,137,27.4,force,upper_fx,0.0022843186743557453 +illusion_0.75L,sr,137,27.4,force,upper_fy,0.0002822593378368765 +illusion_0.75L,sr,137,27.4,force,lower_fx,0.00233615655452013 +illusion_0.75L,sr,137,27.4,force,lower_fy,-0.0003909685474354774 +illusion_0.75L,sr,138,27.6,force,front_fx,0.0019290834898129106 +illusion_0.75L,sr,138,27.6,force,front_fy,-2.2391868697013706e-05 +illusion_0.75L,sr,138,27.6,force,upper_fx,0.0022863035555928946 +illusion_0.75L,sr,138,27.6,force,upper_fy,0.00028171928715892136 +illusion_0.75L,sr,138,27.6,force,lower_fx,0.0023443091195076704 +illusion_0.75L,sr,138,27.6,force,lower_fy,-0.0003852161462418735 +illusion_0.75L,sr,139,27.8,force,front_fx,0.0019323623273521662 +illusion_0.75L,sr,139,27.8,force,front_fy,-2.453686283843126e-05 +illusion_0.75L,sr,139,27.8,force,upper_fx,0.0022883405908942223 +illusion_0.75L,sr,139,27.8,force,upper_fy,0.00028378417482599616 +illusion_0.75L,sr,139,27.8,force,lower_fx,0.002351078437641263 +illusion_0.75L,sr,139,27.8,force,lower_fy,-0.0003799078695010394 +illusion_0.75L,sr,140,28.0,force,front_fx,0.0019326054025441408 +illusion_0.75L,sr,140,28.0,force,front_fy,-2.5665129214758053e-05 +illusion_0.75L,sr,140,28.0,force,upper_fx,0.0022879005409777164 +illusion_0.75L,sr,140,28.0,force,upper_fy,0.0002890155592467636 +illusion_0.75L,sr,140,28.0,force,lower_fx,0.0023540379479527473 +illusion_0.75L,sr,140,28.0,force,lower_fy,-0.00037591796717606485 +illusion_0.75L,sr,141,28.2,force,front_fx,0.0019318083068355918 +illusion_0.75L,sr,141,28.2,force,front_fy,-2.6125917429453693e-05 +illusion_0.75L,sr,141,28.2,force,upper_fx,0.002286431146785617 +illusion_0.75L,sr,141,28.2,force,upper_fy,0.0002966822648886591 +illusion_0.75L,sr,141,28.2,force,lower_fx,0.0023544093128293753 +illusion_0.75L,sr,141,28.2,force,lower_fy,-0.0003727382281795144 +illusion_0.75L,sr,142,28.4,force,front_fx,0.0019301995635032654 +illusion_0.75L,sr,142,28.4,force,front_fy,-2.6526444344199263e-05 +illusion_0.75L,sr,142,28.4,force,upper_fx,0.002284978050738573 +illusion_0.75L,sr,142,28.4,force,upper_fy,0.0003062063187826425 +illusion_0.75L,sr,142,28.4,force,lower_fx,0.0023531680926680565 +illusion_0.75L,sr,142,28.4,force,lower_fy,-0.00037021454772911966 +illusion_0.75L,sr,143,28.6,force,front_fx,0.0019291233038529754 +illusion_0.75L,sr,143,28.6,force,front_fy,-2.643588049977552e-05 +illusion_0.75L,sr,143,28.6,force,upper_fx,0.0022843775805085897 +illusion_0.75L,sr,143,28.6,force,upper_fy,0.00031722820131108165 +illusion_0.75L,sr,143,28.6,force,lower_fx,0.002350981580093503 +illusion_0.75L,sr,143,28.6,force,lower_fy,-0.0003678992798086256 +illusion_0.75L,sr,144,28.8,force,front_fx,0.0019262282876297832 +illusion_0.75L,sr,144,28.8,force,front_fy,-2.5137058401014656e-05 +illusion_0.75L,sr,144,28.8,force,upper_fx,0.0022819305304437876 +illusion_0.75L,sr,144,28.8,force,upper_fy,0.0003294620546512306 +illusion_0.75L,sr,144,28.8,force,lower_fx,0.002345496788620949 +illusion_0.75L,sr,144,28.8,force,lower_fy,-0.0003656960907392204 +illusion_0.75L,sr,145,29.0,force,front_fx,0.0019214263884350657 +illusion_0.75L,sr,145,29.0,force,front_fy,-2.2956741304369643e-05 +illusion_0.75L,sr,145,29.0,force,upper_fx,0.0022778247948735952 +illusion_0.75L,sr,145,29.0,force,upper_fy,0.00034204713301733136 +illusion_0.75L,sr,145,29.0,force,lower_fx,0.0023370073176920414 +illusion_0.75L,sr,145,29.0,force,lower_fy,-0.00036335710319690406 +illusion_0.75L,sr,146,29.2,force,front_fx,0.0019170099403709173 +illusion_0.75L,sr,146,29.2,force,front_fy,-2.072180541290436e-05 +illusion_0.75L,sr,146,29.2,force,upper_fx,0.0022742764558643103 +illusion_0.75L,sr,146,29.2,force,upper_fy,0.00035402621142566204 +illusion_0.75L,sr,146,29.2,force,lower_fx,0.002327641239389777 +illusion_0.75L,sr,146,29.2,force,lower_fy,-0.000360212434316054 +illusion_0.75L,sr,147,29.4,force,front_fx,0.001914730528369546 +illusion_0.75L,sr,147,29.4,force,front_fy,-1.835980947362259e-05 +illusion_0.75L,sr,147,29.4,force,upper_fx,0.0022737523540854454 +illusion_0.75L,sr,147,29.4,force,upper_fy,0.0003649608697742224 +illusion_0.75L,sr,147,29.4,force,lower_fx,0.0023200016003102064 +illusion_0.75L,sr,147,29.4,force,lower_fy,-0.00035589924664236605 +illusion_0.75L,sr,148,29.6,force,front_fx,0.0019170367158949375 +illusion_0.75L,sr,148,29.6,force,front_fy,-1.5237847946991678e-05 +illusion_0.75L,sr,148,29.6,force,upper_fx,0.0022791558876633644 +illusion_0.75L,sr,148,29.6,force,upper_fy,0.00037399082793854177 +illusion_0.75L,sr,148,29.6,force,lower_fx,0.0023173708468675613 +illusion_0.75L,sr,148,29.6,force,lower_fy,-0.0003499643935356289 +illusion_0.75L,sr,149,29.8,force,front_fx,0.0019205313874408603 +illusion_0.75L,sr,149,29.8,force,front_fy,-1.1441379683674313e-05 +illusion_0.75L,sr,149,29.8,force,upper_fx,0.0022863061167299747 +illusion_0.75L,sr,149,29.8,force,upper_fy,0.00038162001874297857 +illusion_0.75L,sr,149,29.8,force,lower_fx,0.0023158672265708447 +illusion_0.75L,sr,149,29.8,force,lower_fy,-0.0003433434758335352 +illusion_0.75L,sr,150,30.0,force,front_fx,0.0019237506203353405 +illusion_0.75L,sr,150,30.0,force,front_fy,-7.60691546020098e-06 +illusion_0.75L,sr,150,30.0,force,upper_fx,0.0022937289904803038 +illusion_0.75L,sr,150,30.0,force,upper_fy,0.0003875962574966252 +illusion_0.75L,sr,150,30.0,force,lower_fx,0.002313998993486166 +illusion_0.75L,sr,150,30.0,force,lower_fy,-0.0003360655973665416 +illusion_0.75L,sr,151,30.2,force,front_fx,0.0019245180301368237 +illusion_0.75L,sr,151,30.2,force,front_fy,-4.089013145858189e-06 +illusion_0.75L,sr,151,30.2,force,upper_fx,0.002298671053722501 +illusion_0.75L,sr,151,30.2,force,upper_fy,0.0003923982148990035 +illusion_0.75L,sr,151,30.2,force,lower_fx,0.0023092355113476515 +illusion_0.75L,sr,151,30.2,force,lower_fy,-0.00032888236455619335 +illusion_0.75L,sr,152,30.4,force,front_fx,0.001924323383718729 +illusion_0.75L,sr,152,30.4,force,front_fy,-4.1495661662338534e-07 +illusion_0.75L,sr,152,30.4,force,upper_fx,0.0023023097310215235 +illusion_0.75L,sr,152,30.4,force,upper_fy,0.00039547571213915944 +illusion_0.75L,sr,152,30.4,force,lower_fx,0.0023030645679682493 +illusion_0.75L,sr,152,30.4,force,lower_fy,-0.00032134715002030134 +illusion_0.75L,sr,153,30.6,force,front_fx,0.001923985662870109 +illusion_0.75L,sr,153,30.6,force,front_fy,3.706344614329282e-06 +illusion_0.75L,sr,153,30.6,force,upper_fx,0.0023061404936015606 +illusion_0.75L,sr,153,30.6,force,upper_fy,0.00039705485687591136 +illusion_0.75L,sr,153,30.6,force,lower_fx,0.002297337632626295 +illusion_0.75L,sr,153,30.6,force,lower_fy,-0.0003139967448078096 +illusion_0.75L,sr,154,30.8,force,front_fx,0.0019239262910559773 +illusion_0.75L,sr,154,30.8,force,front_fy,7.651717169210315e-06 +illusion_0.75L,sr,154,30.8,force,upper_fx,0.002309841103851795 +illusion_0.75L,sr,154,30.8,force,upper_fy,0.0003968023811466992 +illusion_0.75L,sr,154,30.8,force,lower_fx,0.0022918616887181997 +illusion_0.75L,sr,154,30.8,force,lower_fy,-0.0003068700898438692 +illusion_0.75L,sr,155,31.0,force,front_fx,0.0019228063756600022 +illusion_0.75L,sr,155,31.0,force,front_fy,1.08334797914722e-05 +illusion_0.75L,sr,155,31.0,force,upper_fx,0.0023122343700379133 +illusion_0.75L,sr,155,31.0,force,upper_fy,0.0003954755957238376 +illusion_0.75L,sr,155,31.0,force,lower_fx,0.002285506809130311 +illusion_0.75L,sr,155,31.0,force,lower_fy,-0.0003008364583365619 +illusion_0.75L,sr,156,31.2,force,front_fx,0.0019194366177543998 +illusion_0.75L,sr,156,31.2,force,front_fy,1.3660813237947877e-05 +illusion_0.75L,sr,156,31.2,force,upper_fx,0.0023117191158235073 +illusion_0.75L,sr,156,31.2,force,upper_fy,0.00039318352355621755 +illusion_0.75L,sr,156,31.2,force,lower_fx,0.002276855753734708 +illusion_0.75L,sr,156,31.2,force,lower_fy,-0.0002958824043162167 +illusion_0.75L,sr,157,31.4,force,front_fx,0.0019159879302605987 +illusion_0.75L,sr,157,31.4,force,front_fy,1.6644095012452453e-05 +illusion_0.75L,sr,157,31.4,force,upper_fx,0.0023108411114662886 +illusion_0.75L,sr,157,31.4,force,upper_fy,0.0003902288153767586 +illusion_0.75L,sr,157,31.4,force,lower_fx,0.002268827287480235 +illusion_0.75L,sr,157,31.4,force,lower_fy,-0.0002923805150203407 +illusion_0.75L,sr,158,31.6,force,front_fx,0.0019145761616528034 +illusion_0.75L,sr,158,31.6,force,front_fy,1.938409695867449e-05 +illusion_0.75L,sr,158,31.6,force,upper_fx,0.002312083262950182 +illusion_0.75L,sr,158,31.6,force,upper_fy,0.00038644555024802685 +illusion_0.75L,sr,158,31.6,force,lower_fx,0.0022640081588178873 +illusion_0.75L,sr,158,31.6,force,lower_fy,-0.0002902801497839391 +illusion_0.75L,sr,159,31.8,force,front_fx,0.00191693555098027 +illusion_0.75L,sr,159,31.8,force,front_fy,2.122960358974524e-05 +illusion_0.75L,sr,159,31.8,force,upper_fx,0.0023172390647232533 +illusion_0.75L,sr,159,31.8,force,upper_fy,0.0003819909179583192 +illusion_0.75L,sr,159,31.8,force,lower_fx,0.0022641674149781466 +illusion_0.75L,sr,159,31.8,force,lower_fy,-0.0002897539525292814 +illusion_0.75L,sr,160,32.0,force,front_fx,0.001920637208968401 +illusion_0.75L,sr,160,32.0,force,front_fy,2.229057645308785e-05 +illusion_0.75L,sr,160,32.0,force,upper_fx,0.0023240395821630955 +illusion_0.75L,sr,160,32.0,force,upper_fy,0.00037781320861540735 +illusion_0.75L,sr,160,32.0,force,lower_fx,0.0022671129554510117 +illusion_0.75L,sr,160,32.0,force,lower_fy,-0.0002913994831033051 +illusion_0.75L,sr,161,32.2,force,front_fx,0.0019236718071624637 +illusion_0.75L,sr,161,32.2,force,front_fy,2.32178826991003e-05 +illusion_0.75L,sr,161,32.2,force,upper_fx,0.002329335082322359 +illusion_0.75L,sr,161,32.2,force,upper_fy,0.0003742240078281611 +illusion_0.75L,sr,161,32.2,force,lower_fx,0.002269974909722805 +illusion_0.75L,sr,161,32.2,force,lower_fy,-0.00029534861096180975 +illusion_0.75L,sr,162,32.4,force,front_fx,0.0019245098810642958 +illusion_0.75L,sr,162,32.4,force,front_fy,2.3931674149935134e-05 +illusion_0.75L,sr,162,32.4,force,upper_fx,0.0023315399885177612 +illusion_0.75L,sr,162,32.4,force,upper_fy,0.0003715432540047914 +illusion_0.75L,sr,162,32.4,force,lower_fx,0.0022712266072630882 +illusion_0.75L,sr,162,32.4,force,lower_fy,-0.000301978929201141 +illusion_0.75L,sr,163,32.6,force,front_fx,0.0019237878732383251 +illusion_0.75L,sr,163,32.6,force,front_fy,2.3762751879985444e-05 +illusion_0.75L,sr,163,32.6,force,upper_fx,0.0023308286909013987 +illusion_0.75L,sr,163,32.6,force,upper_fy,0.00036922338767908514 +illusion_0.75L,sr,163,32.6,force,lower_fx,0.002270962344482541 +illusion_0.75L,sr,163,32.6,force,lower_fy,-0.00031060396577231586 +illusion_0.75L,sr,164,32.8,force,front_fx,0.001922316150739789 +illusion_0.75L,sr,164,32.8,force,front_fy,2.2648840968031436e-05 +illusion_0.75L,sr,164,32.8,force,upper_fx,0.0023285893257707357 +illusion_0.75L,sr,164,32.8,force,upper_fy,0.00036722325603477657 +illusion_0.75L,sr,164,32.8,force,lower_fx,0.0022704440634697676 +illusion_0.75L,sr,164,32.8,force,lower_fy,-0.0003207549452781677 +illusion_0.75L,sr,165,33.0,force,front_fx,0.001926181954331696 +illusion_0.75L,sr,165,33.0,force,front_fy,2.1240293790469877e-05 +illusion_0.75L,sr,165,33.0,force,upper_fx,0.0023314272984862328 +illusion_0.75L,sr,165,33.0,force,upper_fy,0.0003658468776848167 +illusion_0.75L,sr,165,33.0,force,lower_fx,0.002276219427585602 +illusion_0.75L,sr,165,33.0,force,lower_fy,-0.00033238818286918104 +illusion_0.75L,sr,166,33.2,force,front_fx,0.0019191609462723136 +illusion_0.75L,sr,166,33.2,force,front_fy,1.970131415873766e-05 +illusion_0.75L,sr,166,33.2,force,upper_fx,0.0023202872835099697 +illusion_0.75L,sr,166,33.2,force,upper_fy,0.0003623504308052361 +illusion_0.75L,sr,166,33.2,force,lower_fx,0.0022696377709507942 +illusion_0.75L,sr,166,33.2,force,lower_fy,-0.0003428348863963038 +illusion_0.75L,sr,167,33.4,force,front_fx,0.001915290835313499 +illusion_0.75L,sr,167,33.4,force,front_fy,1.762641295499634e-05 +illusion_0.75L,sr,167,33.4,force,upper_fx,0.002311953343451023 +illusion_0.75L,sr,167,33.4,force,upper_fy,0.0003591698477976024 +illusion_0.75L,sr,167,33.4,force,lower_fx,0.002266909461468458 +illusion_0.75L,sr,167,33.4,force,lower_fy,-0.00035400426713749766 +illusion_0.75L,sr,168,33.6,force,front_fx,0.0019108443520963192 +illusion_0.75L,sr,168,33.6,force,front_fy,1.4740774531674106e-05 +illusion_0.75L,sr,168,33.6,force,upper_fx,0.002302352571859956 +illusion_0.75L,sr,168,33.6,force,upper_fy,0.0003551439440343529 +illusion_0.75L,sr,168,33.6,force,lower_fx,0.0022637287620455027 +illusion_0.75L,sr,168,33.6,force,lower_fy,-0.00036440719850361347 +illusion_0.75L,sr,169,33.8,force,front_fx,0.0019086538814008236 +illusion_0.75L,sr,169,33.8,force,front_fy,1.1542521860974375e-05 +illusion_0.75L,sr,169,33.8,force,upper_fx,0.002294837264344096 +illusion_0.75L,sr,169,33.8,force,upper_fy,0.0003497655561659485 +illusion_0.75L,sr,169,33.8,force,lower_fx,0.00226342654787004 +illusion_0.75L,sr,169,33.8,force,lower_fy,-0.0003731849428731948 +illusion_0.75L,sr,170,34.0,force,front_fx,0.0019101041834801435 +illusion_0.75L,sr,170,34.0,force,front_fy,8.62595970829716e-06 +illusion_0.75L,sr,170,34.0,force,upper_fx,0.0022911380510777235 +illusion_0.75L,sr,170,34.0,force,upper_fy,0.0003430803772062063 +illusion_0.75L,sr,170,34.0,force,lower_fx,0.002267647534608841 +illusion_0.75L,sr,170,34.0,force,lower_fy,-0.00038015234167687595 +illusion_0.75L,sr,171,34.2,force,front_fx,0.001913588959723711 +illusion_0.75L,sr,171,34.2,force,front_fy,5.465424237627303e-06 +illusion_0.75L,sr,171,34.2,force,upper_fx,0.002290126169100404 +illusion_0.75L,sr,171,34.2,force,upper_fy,0.00033548331703059375 +illusion_0.75L,sr,171,34.2,force,lower_fx,0.0022750624921172857 +illusion_0.75L,sr,171,34.2,force,lower_fy,-0.0003854536626022309 +illusion_0.75L,sr,172,34.4,force,front_fx,0.0019171835156157613 +illusion_0.75L,sr,172,34.4,force,front_fy,1.9206015622330597e-06 +illusion_0.75L,sr,172,34.4,force,upper_fx,0.0022894239518791437 +illusion_0.75L,sr,172,34.4,force,upper_fy,0.00032771442783996463 +illusion_0.75L,sr,172,34.4,force,lower_fx,0.00228290562517941 +illusion_0.75L,sr,172,34.4,force,lower_fy,-0.0003893830580636859 +illusion_0.75L,sr,173,34.6,force,front_fx,0.0019187380094081163 +illusion_0.75L,sr,173,34.6,force,front_fy,-1.7027264220814686e-06 +illusion_0.75L,sr,173,34.6,force,upper_fx,0.0022863317281007767 +illusion_0.75L,sr,173,34.6,force,upper_fy,0.0003201919898856431 +illusion_0.75L,sr,173,34.6,force,lower_fx,0.002288408111780882 +illusion_0.75L,sr,173,34.6,force,lower_fy,-0.0003921803436242044 +illusion_0.75L,sr,174,34.8,force,front_fx,0.0019189886515960097 +illusion_0.75L,sr,174,34.8,force,front_fy,-4.975035153620411e-06 +illusion_0.75L,sr,174,34.8,force,upper_fx,0.0022819554433226585 +illusion_0.75L,sr,174,34.8,force,upper_fy,0.00031321123242378235 +illusion_0.75L,sr,174,34.8,force,lower_fx,0.0022925378289073706 +illusion_0.75L,sr,174,34.8,force,lower_fy,-0.00039384790579788387 +illusion_0.75L,sr,175,35.0,force,front_fx,0.001923298230394721 +illusion_0.75L,sr,175,35.0,force,front_fy,-7.925926183816046e-06 +illusion_0.75L,sr,175,35.0,force,upper_fx,0.0022826986387372017 +illusion_0.75L,sr,175,35.0,force,upper_fy,0.000307644484564662 +illusion_0.75L,sr,175,35.0,force,lower_fx,0.0023015805054455996 +illusion_0.75L,sr,175,35.0,force,lower_fy,-0.0003952431434299797 +illusion_0.75L,sr,176,35.2,force,front_fx,0.001918547204695642 +illusion_0.75L,sr,176,35.2,force,front_fy,-1.082259950635489e-05 +illusion_0.75L,sr,176,35.2,force,upper_fx,0.002272822195664048 +illusion_0.75L,sr,176,35.2,force,upper_fy,0.00030136172426864505 +illusion_0.75L,sr,176,35.2,force,lower_fx,0.0022994084283709526 +illusion_0.75L,sr,176,35.2,force,lower_fy,-0.0003934588748961687 +illusion_0.75L,sr,177,35.4,force,front_fx,0.0019177563954144716 +illusion_0.75L,sr,177,35.4,force,front_fy,-1.3694690096599516e-05 +illusion_0.75L,sr,177,35.4,force,upper_fx,0.0022681017871946096 +illusion_0.75L,sr,177,35.4,force,upper_fy,0.00029716547578573227 +illusion_0.75L,sr,177,35.4,force,lower_fx,0.0023017683997750282 +illusion_0.75L,sr,177,35.4,force,lower_fy,-0.00039183226181194186 +illusion_0.75L,sr,178,35.6,force,front_fx,0.0019146546255797148 +illusion_0.75L,sr,178,35.6,force,front_fy,-1.613218591955956e-05 +illusion_0.75L,sr,178,35.6,force,upper_fx,0.0022609455045312643 +illusion_0.75L,sr,178,35.6,force,upper_fy,0.00029466967680491507 +illusion_0.75L,sr,178,35.6,force,lower_fx,0.002300933701917529 +illusion_0.75L,sr,178,35.6,force,lower_fy,-0.0003896717680618167 +illusion_0.75L,sr,179,35.8,force,front_fx,0.0019111711299046874 +illusion_0.75L,sr,179,35.8,force,front_fy,-1.8002905562752858e-05 +illusion_0.75L,sr,179,35.8,force,upper_fx,0.0022539549972862005 +illusion_0.75L,sr,179,35.8,force,upper_fy,0.0002937718527391553 +illusion_0.75L,sr,179,35.8,force,lower_fx,0.002299426356330514 +illusion_0.75L,sr,179,35.8,force,lower_fy,-0.00038704517646692693 +illusion_0.75L,sr,180,36.0,force,front_fx,0.0019090608693659306 +illusion_0.75L,sr,180,36.0,force,front_fy,-1.958553184522316e-05 +illusion_0.75L,sr,180,36.0,force,upper_fx,0.002249108860269189 +illusion_0.75L,sr,180,36.0,force,upper_fy,0.0002943217696156353 +illusion_0.75L,sr,180,36.0,force,lower_fx,0.002299032174050808 +illusion_0.75L,sr,180,36.0,force,lower_fy,-0.00038385126390494406 +illusion_0.75L,sr,181,36.2,force,front_fx,0.0019102118676528335 +illusion_0.75L,sr,181,36.2,force,front_fy,-2.087317807308864e-05 +illusion_0.75L,sr,181,36.2,force,upper_fx,0.0022487821988761425 +illusion_0.75L,sr,181,36.2,force,upper_fy,0.00029644035384990275 +illusion_0.75L,sr,181,36.2,force,lower_fx,0.002301994012668729 +illusion_0.75L,sr,181,36.2,force,lower_fy,-0.0003801727725658566 +illusion_0.75L,sr,182,36.4,force,front_fx,0.0019133985042572021 +illusion_0.75L,sr,182,36.4,force,front_fy,-2.172673339373432e-05 +illusion_0.75L,sr,182,36.4,force,upper_fx,0.002251872792840004 +illusion_0.75L,sr,182,36.4,force,upper_fy,0.0003002439916599542 +illusion_0.75L,sr,182,36.4,force,lower_fx,0.002307221991941333 +illusion_0.75L,sr,182,36.4,force,lower_fy,-0.00037631229497492313 +illusion_0.75L,sr,183,36.6,force,front_fx,0.00191658700350672 +illusion_0.75L,sr,183,36.6,force,front_fy,-2.1818897948833182e-05 +illusion_0.75L,sr,183,36.6,force,upper_fx,0.0022556097246706486 +illusion_0.75L,sr,183,36.6,force,upper_fy,0.0003059934242628515 +illusion_0.75L,sr,183,36.6,force,lower_fx,0.002311795949935913 +illusion_0.75L,sr,183,36.6,force,lower_fy,-0.0003728898009285331 +illusion_0.75L,sr,184,36.8,force,front_fx,0.0019178229849785566 +illusion_0.75L,sr,184,36.8,force,front_fy,-2.1541027308558114e-05 +illusion_0.75L,sr,184,36.8,force,upper_fx,0.002257710788398981 +illusion_0.75L,sr,184,36.8,force,upper_fy,0.0003137314924970269 +illusion_0.75L,sr,184,36.8,force,lower_fx,0.002313490491360426 +illusion_0.75L,sr,184,36.8,force,lower_fy,-0.000370047491742298 +illusion_0.75L,sr,185,37.0,force,front_fx,0.0019172568572685122 +illusion_0.75L,sr,185,37.0,force,front_fy,-2.0890131054329686e-05 +illusion_0.75L,sr,185,37.0,force,upper_fx,0.002258295426145196 +illusion_0.75L,sr,185,37.0,force,upper_fy,0.00032303703483194113 +illusion_0.75L,sr,185,37.0,force,lower_fx,0.0023123458959162235 +illusion_0.75L,sr,185,37.0,force,lower_fy,-0.0003674544859677553 +illusion_0.75L,sr,186,37.2,force,front_fx,0.0019161243690177798 +illusion_0.75L,sr,186,37.2,force,front_fy,-1.9703393263625912e-05 +illusion_0.75L,sr,186,37.2,force,upper_fx,0.0022585659753531218 +illusion_0.75L,sr,186,37.2,force,upper_fy,0.00033321656519547105 +illusion_0.75L,sr,186,37.2,force,lower_fx,0.002309671603143215 +illusion_0.75L,sr,186,37.2,force,lower_fy,-0.00036477207322604954 +illusion_0.75L,sr,187,37.4,force,front_fx,0.001915143569931388 +illusion_0.75L,sr,187,37.4,force,front_fy,-1.801404869183898e-05 +illusion_0.75L,sr,187,37.4,force,upper_fx,0.0022590365260839462 +illusion_0.75L,sr,187,37.4,force,upper_fy,0.00034361906000413 +illusion_0.75L,sr,187,37.4,force,lower_fx,0.00230604805983603 +illusion_0.75L,sr,187,37.4,force,lower_fy,-0.00036171148531138897 +illusion_0.75L,sr,188,37.6,force,front_fx,0.001913777319714427 +illusion_0.75L,sr,188,37.6,force,front_fy,-1.5965024431352504e-05 +illusion_0.75L,sr,188,37.6,force,upper_fx,0.0022594553884118795 +illusion_0.75L,sr,188,37.6,force,upper_fy,0.0003538158780429512 +illusion_0.75L,sr,188,37.6,force,lower_fx,0.002301318570971489 +illusion_0.75L,sr,188,37.6,force,lower_fy,-0.0003580936463549733 +illusion_0.75L,sr,189,37.8,force,front_fx,0.0019103637896478176 +illusion_0.75L,sr,189,37.8,force,front_fy,-1.3592621144198347e-05 +illusion_0.75L,sr,189,37.8,force,upper_fx,0.002257469343021512 +illusion_0.75L,sr,189,37.8,force,upper_fy,0.00036366659332998097 +illusion_0.75L,sr,189,37.8,force,lower_fx,0.002293235156685114 +illusion_0.75L,sr,189,37.8,force,lower_fy,-0.0003539272875059396 +illusion_0.75L,sr,190,38.0,force,front_fx,0.0019064954249188304 +illusion_0.75L,sr,190,38.0,force,front_fy,-1.0680994819267653e-05 +illusion_0.75L,sr,190,38.0,force,upper_fx,0.0022552632726728916 +illusion_0.75L,sr,190,38.0,force,upper_fy,0.00037232774775475264 +illusion_0.75L,sr,190,38.0,force,lower_fx,0.0022842069156467915 +illusion_0.75L,sr,190,38.0,force,lower_fy,-0.00034882233012467623 +illusion_0.75L,sr,191,38.2,force,front_fx,0.001904008793644607 +illusion_0.75L,sr,191,38.2,force,front_fy,-7.604430265928386e-06 +illusion_0.75L,sr,191,38.2,force,upper_fx,0.002254805061966181 +illusion_0.75L,sr,191,38.2,force,upper_fy,0.00037945539224892855 +illusion_0.75L,sr,191,38.2,force,lower_fx,0.002276450162753463 +illusion_0.75L,sr,191,38.2,force,lower_fy,-0.0003427829360589385 +illusion_0.75L,sr,192,38.4,force,front_fx,0.0019096109317615628 +illusion_0.75L,sr,192,38.4,force,front_fy,-4.602278750098776e-06 +illusion_0.75L,sr,192,38.4,force,upper_fx,0.002263760194182396 +illusion_0.75L,sr,192,38.4,force,upper_fy,0.00038565672002732754 +illusion_0.75L,sr,192,38.4,force,lower_fx,0.0022776825353503227 +illusion_0.75L,sr,192,38.4,force,lower_fy,-0.00033634985447861254 +illusion_0.75L,sr,193,38.6,force,front_fx,0.001913071027956903 +illusion_0.75L,sr,193,38.6,force,front_fy,-1.3127989859640365e-06 +illusion_0.75L,sr,193,38.6,force,upper_fx,0.002271425910294056 +illusion_0.75L,sr,193,38.6,force,upper_fy,0.00038929132279008627 +illusion_0.75L,sr,193,38.6,force,lower_fx,0.0022770764771848917 +illusion_0.75L,sr,193,38.6,force,lower_fy,-0.000328156806062907 +illusion_0.75L,sr,194,38.8,force,front_fx,0.001916638808324933 +illusion_0.75L,sr,194,38.8,force,front_fy,1.814937604649458e-06 +illusion_0.75L,sr,194,38.8,force,upper_fx,0.002278930274769664 +illusion_0.75L,sr,194,38.8,force,upper_fy,0.00039140760782174766 +illusion_0.75L,sr,194,38.8,force,lower_fx,0.0022768995258957148 +illusion_0.75L,sr,194,38.8,force,lower_fy,-0.0003206568071618676 +illusion_0.75L,sr,195,39.0,force,front_fx,0.001913915271870792 +illusion_0.75L,sr,195,39.0,force,front_fy,4.920813353237463e-06 +illusion_0.75L,sr,195,39.0,force,upper_fx,0.0022792143281549215 +illusion_0.75L,sr,195,39.0,force,upper_fy,0.0003917826106771827 +illusion_0.75L,sr,195,39.0,force,lower_fx,0.0022694396320730448 +illusion_0.75L,sr,195,39.0,force,lower_fy,-0.000312856980599463 +illusion_0.75L,sr,196,39.2,force,front_fx,0.0019145269179716706 +illusion_0.75L,sr,196,39.2,force,front_fy,7.74708951212233e-06 +illusion_0.75L,sr,196,39.2,force,upper_fx,0.002283526584506035 +illusion_0.75L,sr,196,39.2,force,upper_fy,0.0003921921888832003 +illusion_0.75L,sr,196,39.2,force,lower_fx,0.0022662817500531673 +illusion_0.75L,sr,196,39.2,force,lower_fy,-0.0003067395300604403 +illusion_0.75L,sr,197,39.4,force,front_fx,0.0019140465883538127 +illusion_0.75L,sr,197,39.4,force,front_fy,1.031698047881946e-05 +illusion_0.75L,sr,197,39.4,force,upper_fx,0.002286445815116167 +illusion_0.75L,sr,197,39.4,force,upper_fy,0.0003917834837920964 +illusion_0.75L,sr,197,39.4,force,lower_fx,0.0022621930111199617 +illusion_0.75L,sr,197,39.4,force,lower_fy,-0.000301782158203423 +illusion_0.75L,sr,198,39.6,force,front_fx,0.0019140110816806555 +illusion_0.75L,sr,198,39.6,force,front_fy,1.2733796211250592e-05 +illusion_0.75L,sr,198,39.6,force,upper_fx,0.0022895424626767635 +illusion_0.75L,sr,198,39.6,force,upper_fy,0.00039051781641319394 +illusion_0.75L,sr,198,39.6,force,lower_fx,0.0022589208092540503 +illusion_0.75L,sr,198,39.6,force,lower_fy,-0.0002980307617690414 +illusion_0.75L,sr,199,39.8,force,front_fx,0.0019182180985808372 +illusion_0.75L,sr,199,39.8,force,front_fy,1.4889182239130605e-05 +illusion_0.75L,sr,199,39.8,force,upper_fx,0.0022974193561822176 +illusion_0.75L,sr,199,39.8,force,upper_fy,0.0003895586705766618 +illusion_0.75L,sr,199,39.8,force,lower_fx,0.0022610994055867195 +illusion_0.75L,sr,199,39.8,force,lower_fy,-0.0002965350868180394 +illusion_0.75L,sr,0,0.0,alpha,front,0.08378423896653334 +illusion_0.75L,sr,0,0.0,alpha,upper,-0.05697559957518511 +illusion_0.75L,sr,0,0.0,alpha,lower,-0.05697559957518511 +illusion_0.75L,sr,1,0.2,alpha,front,0.0719625133193826 +illusion_0.75L,sr,1,0.2,alpha,upper,-0.04712294450935874 +illusion_0.75L,sr,1,0.2,alpha,lower,-0.04712294450935874 +illusion_0.75L,sr,2,0.4,alpha,front,0.02081750355040614 +illusion_0.75L,sr,2,0.4,alpha,upper,-0.008293904976274455 +illusion_0.75L,sr,2,0.4,alpha,lower,-0.008293904976274455 +illusion_0.75L,sr,3,0.6,alpha,front,0.00652906908157136 +illusion_0.75L,sr,3,0.6,alpha,upper,0.0033760315545836445 +illusion_0.75L,sr,3,0.6,alpha,lower,0.0033760315545836445 +illusion_0.75L,sr,4,0.8,alpha,front,0.016228877081958692 +illusion_0.75L,sr,4,0.8,alpha,upper,-0.002847797035366015 +illusion_0.75L,sr,4,0.8,alpha,lower,-0.002847797035366015 +illusion_0.75L,sr,5,1.0,alpha,front,0.019952920368860594 +illusion_0.75L,sr,5,1.0,alpha,upper,-0.004824202418474033 +illusion_0.75L,sr,5,1.0,alpha,lower,-0.004824202418474033 +illusion_0.75L,sr,6,1.2,alpha,front,0.018990588501843625 +illusion_0.75L,sr,6,1.2,alpha,upper,-0.0034880681100787625 +illusion_0.75L,sr,6,1.2,alpha,lower,-0.0034880681100787625 +illusion_0.75L,sr,7,1.4,alpha,front,0.021067772955386976 +illusion_0.75L,sr,7,1.4,alpha,upper,-0.004494966512509219 +illusion_0.75L,sr,7,1.4,alpha,lower,-0.004494966512509219 +illusion_0.75L,sr,8,1.6,alpha,front,0.02347062360485727 +illusion_0.75L,sr,8,1.6,alpha,upper,-0.005964944446555237 +illusion_0.75L,sr,8,1.6,alpha,lower,-0.005964944446555237 +illusion_0.75L,sr,9,1.8,alpha,front,0.020951303922251446 +illusion_0.75L,sr,9,1.8,alpha,upper,-0.004093032194865898 +illusion_0.75L,sr,9,1.8,alpha,lower,-0.004093032194865898 +illusion_0.75L,sr,10,2.0,alpha,front,0.01579911315003879 +illusion_0.75L,sr,10,2.0,alpha,upper,-0.00048159276414258545 +illusion_0.75L,sr,10,2.0,alpha,lower,-0.00048159276414258545 +illusion_0.75L,sr,11,2.2,alpha,front,0.014615660067356847 +illusion_0.75L,sr,11,2.2,alpha,upper,6.182690698169901e-05 +illusion_0.75L,sr,11,2.2,alpha,lower,6.182690698169901e-05 +illusion_0.75L,sr,12,2.4,alpha,front,0.014765043171065556 +illusion_0.75L,sr,12,2.4,alpha,upper,-0.000479812151672726 +illusion_0.75L,sr,12,2.4,alpha,lower,-0.000479812151672726 +illusion_0.75L,sr,13,2.6,alpha,front,0.015513801543639712 +illusion_0.75L,sr,13,2.6,alpha,upper,-0.0015456463550364006 +illusion_0.75L,sr,13,2.6,alpha,lower,-0.0015456463550364006 +illusion_0.75L,sr,14,2.8,alpha,front,0.01582663146702651 +illusion_0.75L,sr,14,2.8,alpha,upper,-0.002355792528968531 +illusion_0.75L,sr,14,2.8,alpha,lower,-0.002355792528968531 +illusion_0.75L,sr,15,3.0,alpha,front,0.016854956731811838 +illusion_0.75L,sr,15,3.0,alpha,upper,-0.00375382244074833 +illusion_0.75L,sr,15,3.0,alpha,lower,-0.00375382244074833 +illusion_0.75L,sr,16,3.2,alpha,front,0.017219572999654598 +illusion_0.75L,sr,16,3.2,alpha,upper,-0.004736210900441004 +illusion_0.75L,sr,16,3.2,alpha,lower,-0.004736210900441004 +illusion_0.75L,sr,17,3.4,alpha,front,0.01730389743440533 +illusion_0.75L,sr,17,3.4,alpha,upper,-0.0055856158293895175 +illusion_0.75L,sr,17,3.4,alpha,lower,-0.0055856158293895175 +illusion_0.75L,sr,18,3.6,alpha,front,0.015508988099902839 +illusion_0.75L,sr,18,3.6,alpha,upper,-0.005121161552832418 +illusion_0.75L,sr,18,3.6,alpha,lower,-0.005121161552832418 +illusion_0.75L,sr,19,3.8,alpha,front,0.013772725492284366 +illusion_0.75L,sr,19,3.8,alpha,upper,-0.004746804843059671 +illusion_0.75L,sr,19,3.8,alpha,lower,-0.004746804843059671 +illusion_0.75L,sr,20,4.0,alpha,front,0.011758866087906633 +illusion_0.75L,sr,20,4.0,alpha,upper,-0.00422119831111905 +illusion_0.75L,sr,20,4.0,alpha,lower,-0.00422119831111905 +illusion_0.75L,sr,21,4.2,alpha,front,0.010828901670146773 +illusion_0.75L,sr,21,4.2,alpha,upper,-0.004536857921064723 +illusion_0.75L,sr,21,4.2,alpha,lower,-0.004536857921064723 +illusion_0.75L,sr,22,4.4,alpha,front,0.009393806832129536 +illusion_0.75L,sr,22,4.4,alpha,upper,-0.004507050953531315 +illusion_0.75L,sr,22,4.4,alpha,lower,-0.004507050953531315 +illusion_0.75L,sr,23,4.6,alpha,front,0.006238197805061837 +illusion_0.75L,sr,23,4.6,alpha,upper,-0.003236014942245652 +illusion_0.75L,sr,23,4.6,alpha,lower,-0.003236014942245652 +illusion_0.75L,sr,24,4.8,alpha,front,0.0022664086116632705 +illusion_0.75L,sr,24,4.8,alpha,upper,-0.001368170008479296 +illusion_0.75L,sr,24,4.8,alpha,lower,-0.001368170008479296 +illusion_0.75L,sr,25,5.0,alpha,front,-0.0010873458545239308 +illusion_0.75L,sr,25,5.0,alpha,upper,4.088442645380254e-05 +illusion_0.75L,sr,25,5.0,alpha,lower,4.088442645380254e-05 +illusion_0.75L,sr,26,5.2,alpha,front,-0.003319010377983031 +illusion_0.75L,sr,26,5.2,alpha,upper,0.0006463299763048436 +illusion_0.75L,sr,26,5.2,alpha,lower,0.0006463299763048436 +illusion_0.75L,sr,27,5.4,alpha,front,-0.006012239934591386 +illusion_0.75L,sr,27,5.4,alpha,upper,0.001624359925543002 +illusion_0.75L,sr,27,5.4,alpha,lower,0.001624359925543002 +illusion_0.75L,sr,28,5.6,alpha,front,-0.010551935277027087 +illusion_0.75L,sr,28,5.6,alpha,upper,0.004000909857042267 +illusion_0.75L,sr,28,5.6,alpha,lower,0.004000909857042267 +illusion_0.75L,sr,29,5.8,alpha,front,-0.014345205612390596 +illusion_0.75L,sr,29,5.8,alpha,upper,0.005882389042483942 +illusion_0.75L,sr,29,5.8,alpha,lower,0.005882389042483942 +illusion_0.75L,sr,30,6.0,alpha,front,-0.016717664568647247 +illusion_0.75L,sr,30,6.0,alpha,upper,0.006785401022493698 +illusion_0.75L,sr,30,6.0,alpha,lower,0.006785401022493698 +illusion_0.75L,sr,31,6.2,alpha,front,-0.018023160153953277 +illusion_0.75L,sr,31,6.2,alpha,upper,0.006989786114469376 +illusion_0.75L,sr,31,6.2,alpha,lower,0.006989786114469376 +illusion_0.75L,sr,32,6.4,alpha,front,-0.020209200284899684 +illusion_0.75L,sr,32,6.4,alpha,upper,0.00793881304680702 +illusion_0.75L,sr,32,6.4,alpha,lower,0.00793881304680702 +illusion_0.75L,sr,33,6.6,alpha,front,-0.02303672972149251 +illusion_0.75L,sr,33,6.6,alpha,upper,0.00946720420509721 +illusion_0.75L,sr,33,6.6,alpha,lower,0.00946720420509721 +illusion_0.75L,sr,34,6.8,alpha,front,-0.023895080675304325 +illusion_0.75L,sr,34,6.8,alpha,upper,0.009667563518883787 +illusion_0.75L,sr,34,6.8,alpha,lower,0.009667563518883787 +illusion_0.75L,sr,35,7.0,alpha,front,-0.02295697893735016 +illusion_0.75L,sr,35,7.0,alpha,upper,0.008684602624532356 +illusion_0.75L,sr,35,7.0,alpha,lower,0.008684602624532356 +illusion_0.75L,sr,36,7.2,alpha,front,-0.022798504386096596 +illusion_0.75L,sr,36,7.2,alpha,upper,0.008421445324312174 +illusion_0.75L,sr,36,7.2,alpha,lower,0.008421445324312174 +illusion_0.75L,sr,37,7.4,alpha,front,-0.023390616423860422 +illusion_0.75L,sr,37,7.4,alpha,upper,0.008852769313729428 +illusion_0.75L,sr,37,7.4,alpha,lower,0.008852769313729428 +illusion_0.75L,sr,38,7.6,alpha,front,-0.022006215814809826 +illusion_0.75L,sr,38,7.6,alpha,upper,0.007974187570296068 +illusion_0.75L,sr,38,7.6,alpha,lower,0.007974187570296068 +illusion_0.75L,sr,39,7.8,alpha,front,-0.01801269492826013 +illusion_0.75L,sr,39,7.8,alpha,upper,0.005327809639421685 +illusion_0.75L,sr,39,7.8,alpha,lower,0.005327809639421685 +illusion_0.75L,sr,40,8.0,alpha,front,-0.01647249393051843 +illusion_0.75L,sr,40,8.0,alpha,upper,0.00464260668567909 +illusion_0.75L,sr,40,8.0,alpha,lower,0.00464260668567909 +illusion_0.75L,sr,41,8.2,alpha,front,-0.01549808907597254 +illusion_0.75L,sr,41,8.2,alpha,upper,0.0044817302673681725 +illusion_0.75L,sr,41,8.2,alpha,lower,0.0044817302673681725 +illusion_0.75L,sr,42,8.4,alpha,front,-0.015487052222876314 +illusion_0.75L,sr,42,8.4,alpha,upper,0.0051606659587089265 +illusion_0.75L,sr,42,8.4,alpha,lower,0.0051606659587089265 +illusion_0.75L,sr,43,8.6,alpha,front,-0.012905224660799769 +illusion_0.75L,sr,43,8.6,alpha,upper,0.004025593728035057 +illusion_0.75L,sr,43,8.6,alpha,lower,0.004025593728035057 +illusion_0.75L,sr,44,8.8,alpha,front,-0.009269062547519802 +illusion_0.75L,sr,44,8.8,alpha,upper,0.0021915998927402036 +illusion_0.75L,sr,44,8.8,alpha,lower,0.0021915998927402036 +illusion_0.75L,sr,45,9.0,alpha,front,-0.007935986170862858 +illusion_0.75L,sr,45,9.0,alpha,upper,0.0021046301665453293 +illusion_0.75L,sr,45,9.0,alpha,lower,0.0021046301665453293 +illusion_0.75L,sr,46,9.2,alpha,front,-0.007443452532700623 +illusion_0.75L,sr,46,9.2,alpha,upper,0.002663904186335657 +illusion_0.75L,sr,46,9.2,alpha,lower,0.002663904186335657 +illusion_0.75L,sr,47,9.4,alpha,front,-0.005483686269247948 +illusion_0.75L,sr,47,9.4,alpha,upper,0.00215876744787016 +illusion_0.75L,sr,47,9.4,alpha,lower,0.00215876744787016 +illusion_0.75L,sr,48,9.6,alpha,front,-0.002370275160948402 +illusion_0.75L,sr,48,9.6,alpha,upper,0.0008029749327131669 +illusion_0.75L,sr,48,9.6,alpha,lower,0.0008029749327131669 +illusion_0.75L,sr,49,9.8,alpha,front,-0.0002383417882265909 +illusion_0.75L,sr,49,9.8,alpha,upper,0.0001566859949748512 +illusion_0.75L,sr,49,9.8,alpha,lower,0.0001566859949748512 +illusion_0.75L,sr,50,10.0,alpha,front,0.00043627709971896453 +illusion_0.75L,sr,50,10.0,alpha,upper,0.0005556098946432938 +illusion_0.75L,sr,50,10.0,alpha,lower,0.0005556098946432938 +illusion_0.75L,sr,51,10.2,alpha,front,0.00200456781218605 +illusion_0.75L,sr,51,10.2,alpha,upper,0.00025132794388278007 +illusion_0.75L,sr,51,10.2,alpha,lower,0.00025132794388278007 +illusion_0.75L,sr,52,10.4,alpha,front,0.00486336005927919 +illusion_0.75L,sr,52,10.4,alpha,upper,-0.0010482796929616178 +illusion_0.75L,sr,52,10.4,alpha,lower,-0.0010482796929616178 +illusion_0.75L,sr,53,10.6,alpha,front,0.007303725525191901 +illusion_0.75L,sr,53,10.6,alpha,upper,-0.002096408527970023 +illusion_0.75L,sr,53,10.6,alpha,lower,-0.002096408527970023 +illusion_0.75L,sr,54,10.8,alpha,front,0.008439514956328886 +illusion_0.75L,sr,54,10.8,alpha,upper,-0.002250570787333671 +illusion_0.75L,sr,54,10.8,alpha,lower,-0.002250570787333671 +illusion_0.75L,sr,55,11.0,alpha,front,0.0098054039855648 +illusion_0.75L,sr,55,11.0,alpha,upper,-0.0026566692271377257 +illusion_0.75L,sr,55,11.0,alpha,lower,-0.0026566692271377257 +illusion_0.75L,sr,56,11.2,alpha,front,0.012208273889371582 +illusion_0.75L,sr,56,11.2,alpha,upper,-0.003909150144280997 +illusion_0.75L,sr,56,11.2,alpha,lower,-0.003909150144280997 +illusion_0.75L,sr,57,11.4,alpha,front,0.014103847758076075 +illusion_0.75L,sr,57,11.4,alpha,upper,-0.004881205052341117 +illusion_0.75L,sr,57,11.4,alpha,lower,-0.004881205052341117 +illusion_0.75L,sr,58,11.6,alpha,front,0.014688193764136022 +illusion_0.75L,sr,58,11.6,alpha,upper,-0.004994710341404501 +illusion_0.75L,sr,58,11.6,alpha,lower,-0.004994710341404501 +illusion_0.75L,sr,59,11.8,alpha,front,0.01479331401012131 +illusion_0.75L,sr,59,11.8,alpha,upper,-0.004868055170112726 +illusion_0.75L,sr,59,11.8,alpha,lower,-0.004868055170112726 +illusion_0.75L,sr,60,12.0,alpha,front,0.015578584538215062 +illusion_0.75L,sr,60,12.0,alpha,upper,-0.005362508707459482 +illusion_0.75L,sr,60,12.0,alpha,lower,-0.005362508707459482 +illusion_0.75L,sr,61,12.2,alpha,front,0.016023898788033286 +illusion_0.75L,sr,61,12.2,alpha,upper,-0.0057325933859661005 +illusion_0.75L,sr,61,12.2,alpha,lower,-0.0057325933859661005 +illusion_0.75L,sr,62,12.4,alpha,front,0.015498604255037173 +illusion_0.75L,sr,62,12.4,alpha,upper,-0.005517822746227419 +illusion_0.75L,sr,62,12.4,alpha,lower,-0.005517822746227419 +illusion_0.75L,sr,63,12.6,alpha,front,0.014314410670163452 +illusion_0.75L,sr,63,12.6,alpha,upper,-0.004945291859869444 +illusion_0.75L,sr,63,12.6,alpha,lower,-0.004945291859869444 +illusion_0.75L,sr,64,12.8,alpha,front,0.013317585291512694 +illusion_0.75L,sr,64,12.8,alpha,upper,-0.004630751560777968 +illusion_0.75L,sr,64,12.8,alpha,lower,-0.004630751560777968 +illusion_0.75L,sr,65,13.0,alpha,front,0.012798372198468229 +illusion_0.75L,sr,65,13.0,alpha,upper,-0.004777311087665367 +illusion_0.75L,sr,65,13.0,alpha,lower,-0.004777311087665367 +illusion_0.75L,sr,66,13.2,alpha,front,0.01199304781205375 +illusion_0.75L,sr,66,13.2,alpha,upper,-0.00480702248607541 +illusion_0.75L,sr,66,13.2,alpha,lower,-0.00480702248607541 +illusion_0.75L,sr,67,13.4,alpha,front,0.010134346804538168 +illusion_0.75L,sr,67,13.4,alpha,upper,-0.0041396456637237886 +illusion_0.75L,sr,67,13.4,alpha,lower,-0.0041396456637237886 +illusion_0.75L,sr,68,13.6,alpha,front,0.007995852987714006 +illusion_0.75L,sr,68,13.6,alpha,upper,-0.0033278887123123113 +illusion_0.75L,sr,68,13.6,alpha,lower,-0.0033278887123123113 +illusion_0.75L,sr,69,13.8,alpha,front,0.006677398807235713 +illusion_0.75L,sr,69,13.8,alpha,upper,-0.0031599083392664655 +illusion_0.75L,sr,69,13.8,alpha,lower,-0.0031599083392664655 +illusion_0.75L,sr,70,14.0,alpha,front,0.00541486497209937 +illusion_0.75L,sr,70,14.0,alpha,upper,-0.0030498203647834586 +illusion_0.75L,sr,70,14.0,alpha,lower,-0.0030498203647834586 +illusion_0.75L,sr,71,14.2,alpha,front,0.003109824005450437 +illusion_0.75L,sr,71,14.2,alpha,upper,-0.002178867102705308 +illusion_0.75L,sr,71,14.2,alpha,lower,-0.002178867102705308 +illusion_0.75L,sr,72,14.4,alpha,front,0.0011270990792097355 +illusion_0.75L,sr,72,14.4,alpha,upper,-0.0015336374084284465 +illusion_0.75L,sr,72,14.4,alpha,lower,-0.0015336374084284465 +illusion_0.75L,sr,73,14.6,alpha,front,-0.0010760062120770547 +illusion_0.75L,sr,73,14.6,alpha,upper,-0.0006917173218932496 +illusion_0.75L,sr,73,14.6,alpha,lower,-0.0006917173218932496 +illusion_0.75L,sr,74,14.8,alpha,front,-0.003464968174647282 +illusion_0.75L,sr,74,14.8,alpha,upper,0.00033102738730241346 +illusion_0.75L,sr,74,14.8,alpha,lower,0.00033102738730241346 +illusion_0.75L,sr,75,15.0,alpha,front,-0.005714685464312599 +illusion_0.75L,sr,75,15.0,alpha,upper,0.0013110477549137314 +illusion_0.75L,sr,75,15.0,alpha,lower,0.0013110477549137314 +illusion_0.75L,sr,76,15.2,alpha,front,-0.007733872593415805 +illusion_0.75L,sr,76,15.2,alpha,upper,0.0021961318666428448 +illusion_0.75L,sr,76,15.2,alpha,lower,0.0021961318666428448 +illusion_0.75L,sr,77,15.4,alpha,front,-0.009852031335689515 +illusion_0.75L,sr,77,15.4,alpha,upper,0.0032384234502846124 +illusion_0.75L,sr,77,15.4,alpha,lower,0.0032384234502846124 +illusion_0.75L,sr,78,15.6,alpha,front,-0.011975886536842034 +illusion_0.75L,sr,78,15.6,alpha,upper,0.0043790590615643415 +illusion_0.75L,sr,78,15.6,alpha,lower,0.0043790590615643415 +illusion_0.75L,sr,79,15.8,alpha,front,-0.013174492992569495 +illusion_0.75L,sr,79,15.8,alpha,upper,0.004942644193390022 +illusion_0.75L,sr,79,15.8,alpha,lower,0.004942644193390022 +illusion_0.75L,sr,80,16.0,alpha,front,-0.013558945205026166 +illusion_0.75L,sr,80,16.0,alpha,upper,0.005023911763106445 +illusion_0.75L,sr,80,16.0,alpha,lower,0.005023911763106445 +illusion_0.75L,sr,81,16.2,alpha,front,-0.01446156859746281 +illusion_0.75L,sr,81,16.2,alpha,upper,0.00560871292455576 +illusion_0.75L,sr,81,16.2,alpha,lower,0.00560871292455576 +illusion_0.75L,sr,82,16.4,alpha,front,-0.015138075860183245 +illusion_0.75L,sr,82,16.4,alpha,upper,0.006138721479269978 +illusion_0.75L,sr,82,16.4,alpha,lower,0.006138721479269978 +illusion_0.75L,sr,83,16.6,alpha,front,-0.01462547670860567 +illusion_0.75L,sr,83,16.6,alpha,upper,0.0059168456986409546 +illusion_0.75L,sr,83,16.6,alpha,lower,0.0059168456986409546 +illusion_0.75L,sr,84,16.8,alpha,front,-0.013177130174429135 +illusion_0.75L,sr,84,16.8,alpha,upper,0.005127468253736597 +illusion_0.75L,sr,84,16.8,alpha,lower,0.005127468253736597 +illusion_0.75L,sr,85,17.0,alpha,front,-0.012121328516415036 +illusion_0.75L,sr,85,17.0,alpha,upper,0.004738054839758872 +illusion_0.75L,sr,85,17.0,alpha,lower,0.004738054839758872 +illusion_0.75L,sr,86,17.2,alpha,front,-0.01073977200686567 +illusion_0.75L,sr,86,17.2,alpha,upper,0.004201609924998004 +illusion_0.75L,sr,86,17.2,alpha,lower,0.004201609924998004 +illusion_0.75L,sr,87,17.4,alpha,front,-0.010283499102812108 +illusion_0.75L,sr,87,17.4,alpha,upper,0.004439605056759631 +illusion_0.75L,sr,87,17.4,alpha,lower,0.004439605056759631 +illusion_0.75L,sr,88,17.6,alpha,front,-0.008326733198436187 +illusion_0.75L,sr,88,17.6,alpha,upper,0.0036286503425271253 +illusion_0.75L,sr,88,17.6,alpha,lower,0.0036286503425271253 +illusion_0.75L,sr,89,17.8,alpha,front,-0.005658152859164132 +illusion_0.75L,sr,89,17.8,alpha,upper,0.002348742279449919 +illusion_0.75L,sr,89,17.8,alpha,lower,0.002348742279449919 +illusion_0.75L,sr,90,18.0,alpha,front,-0.0040056103965131935 +illusion_0.75L,sr,90,18.0,alpha,upper,0.0018442245152451209 +illusion_0.75L,sr,90,18.0,alpha,lower,0.0018442245152451209 +illusion_0.75L,sr,91,18.2,alpha,front,-0.0026205048348755117 +illusion_0.75L,sr,91,18.2,alpha,upper,0.0015441288970898144 +illusion_0.75L,sr,91,18.2,alpha,lower,0.0015441288970898144 +illusion_0.75L,sr,92,18.4,alpha,front,-0.000218114143359191 +illusion_0.75L,sr,92,18.4,alpha,upper,0.0004908315094079288 +illusion_0.75L,sr,92,18.4,alpha,lower,0.0004908315094079288 +illusion_0.75L,sr,93,18.6,alpha,front,0.0026248941601209226 +illusion_0.75L,sr,93,18.6,alpha,upper,-0.0009038160486515914 +illusion_0.75L,sr,93,18.6,alpha,lower,-0.0009038160486515914 +illusion_0.75L,sr,94,18.8,alpha,front,0.004534937476480511 +illusion_0.75L,sr,94,18.8,alpha,upper,-0.00164751374532493 +illusion_0.75L,sr,94,18.8,alpha,lower,-0.00164751374532493 +illusion_0.75L,sr,95,19.0,alpha,front,0.005751258581696152 +illusion_0.75L,sr,95,19.0,alpha,upper,-0.001926609147288389 +illusion_0.75L,sr,95,19.0,alpha,lower,-0.001926609147288389 +illusion_0.75L,sr,96,19.2,alpha,front,0.007736817740307981 +illusion_0.75L,sr,96,19.2,alpha,upper,-0.002834888847170501 +illusion_0.75L,sr,96,19.2,alpha,lower,-0.002834888847170501 +illusion_0.75L,sr,97,19.4,alpha,front,0.010321907339632536 +illusion_0.75L,sr,97,19.4,alpha,upper,-0.004250056746664364 +illusion_0.75L,sr,97,19.4,alpha,lower,-0.004250056746664364 +illusion_0.75L,sr,98,19.6,alpha,front,0.011905228168391208 +illusion_0.75L,sr,98,19.6,alpha,upper,-0.0050038704827186295 +illusion_0.75L,sr,98,19.6,alpha,lower,-0.0050038704827186295 +illusion_0.75L,sr,99,19.8,alpha,front,0.01216037759043355 +illusion_0.75L,sr,99,19.8,alpha,upper,-0.004872499340945961 +illusion_0.75L,sr,99,19.8,alpha,lower,-0.004872499340945961 +illusion_0.75L,sr,100,20.0,alpha,front,0.01276683078607542 +illusion_0.75L,sr,100,20.0,alpha,upper,-0.005095586809103686 +illusion_0.75L,sr,100,20.0,alpha,lower,-0.005095586809103686 +illusion_0.75L,sr,101,20.2,alpha,front,0.014085372759283954 +illusion_0.75L,sr,101,20.2,alpha,upper,-0.005938743892810849 +illusion_0.75L,sr,101,20.2,alpha,lower,-0.005938743892810849 +illusion_0.75L,sr,102,20.4,alpha,front,0.01452740206034958 +illusion_0.75L,sr,102,20.4,alpha,upper,-0.00623780024082176 +illusion_0.75L,sr,102,20.4,alpha,lower,-0.00623780024082176 +illusion_0.75L,sr,103,20.6,alpha,front,0.01341969920568767 +illusion_0.75L,sr,103,20.6,alpha,upper,-0.005499331625459028 +illusion_0.75L,sr,103,20.6,alpha,lower,-0.005499331625459028 +illusion_0.75L,sr,104,20.8,alpha,front,0.012132632754061484 +illusion_0.75L,sr,104,20.8,alpha,upper,-0.004732180080717678 +illusion_0.75L,sr,104,20.8,alpha,lower,-0.004732180080717678 +illusion_0.75L,sr,105,21.0,alpha,front,0.011570863878442042 +illusion_0.75L,sr,105,21.0,alpha,upper,-0.004583154367237205 +illusion_0.75L,sr,105,21.0,alpha,lower,-0.004583154367237205 +illusion_0.75L,sr,106,21.2,alpha,front,0.010941534337997827 +illusion_0.75L,sr,106,21.2,alpha,upper,-0.004492355527960311 +illusion_0.75L,sr,106,21.2,alpha,lower,-0.004492355527960311 +illusion_0.75L,sr,107,21.4,alpha,front,0.0086563073812152 +illusion_0.75L,sr,107,21.4,alpha,upper,-0.003246621512866823 +illusion_0.75L,sr,107,21.4,alpha,lower,-0.003246621512866823 +illusion_0.75L,sr,108,21.6,alpha,front,0.006519091222309661 +illusion_0.75L,sr,108,21.6,alpha,upper,-0.002184681946528391 +illusion_0.75L,sr,108,21.6,alpha,lower,-0.002184681946528391 +illusion_0.75L,sr,109,21.8,alpha,front,0.005083678611129794 +illusion_0.75L,sr,109,21.8,alpha,upper,-0.001685273351815966 +illusion_0.75L,sr,109,21.8,alpha,lower,-0.001685273351815966 +illusion_0.75L,sr,110,22.0,alpha,front,0.004109872602477034 +illusion_0.75L,sr,110,22.0,alpha,upper,-0.0015601721334636762 +illusion_0.75L,sr,110,22.0,alpha,lower,-0.0015601721334636762 +illusion_0.75L,sr,111,22.2,alpha,front,0.002499576649130572 +illusion_0.75L,sr,111,22.2,alpha,upper,-0.0009842330001653098 +illusion_0.75L,sr,111,22.2,alpha,lower,-0.0009842330001653098 +illusion_0.75L,sr,112,22.4,alpha,front,1.4389086237178057e-05 +illusion_0.75L,sr,112,22.4,alpha,upper,0.00023148311070214818 +illusion_0.75L,sr,112,22.4,alpha,lower,0.00023148311070214818 +illusion_0.75L,sr,113,22.6,alpha,front,-0.0021215804359754524 +illusion_0.75L,sr,113,22.6,alpha,upper,0.0011961576359764345 +illusion_0.75L,sr,113,22.6,alpha,lower,0.0011961576359764345 +illusion_0.75L,sr,114,22.8,alpha,front,-0.0029527437667751216 +illusion_0.75L,sr,114,22.8,alpha,upper,0.0012259118678982321 +illusion_0.75L,sr,114,22.8,alpha,lower,0.0012259118678982321 +illusion_0.75L,sr,115,23.0,alpha,front,-0.0037022483070610758 +illusion_0.75L,sr,115,23.0,alpha,upper,0.0012333846378102704 +illusion_0.75L,sr,115,23.0,alpha,lower,0.0012333846378102704 +illusion_0.75L,sr,116,23.2,alpha,front,-0.005670690595754646 +illusion_0.75L,sr,116,23.2,alpha,upper,0.0021844857686111364 +illusion_0.75L,sr,116,23.2,alpha,lower,0.0021844857686111364 +illusion_0.75L,sr,117,23.4,alpha,front,-0.007992971268409262 +illusion_0.75L,sr,117,23.4,alpha,upper,0.0034478559841732426 +illusion_0.75L,sr,117,23.4,alpha,lower,0.0034478559841732426 +illusion_0.75L,sr,118,23.6,alpha,front,-0.00917804832774221 +illusion_0.75L,sr,118,23.6,alpha,upper,0.003936771074697025 +illusion_0.75L,sr,118,23.6,alpha,lower,0.003936771074697025 +illusion_0.75L,sr,119,23.8,alpha,front,-0.009255805044073015 +illusion_0.75L,sr,119,23.8,alpha,upper,0.0036841616844946537 +illusion_0.75L,sr,119,23.8,alpha,lower,0.0036841616844946537 +illusion_0.75L,sr,120,24.0,alpha,front,-0.009601492014503027 +illusion_0.75L,sr,120,24.0,alpha,upper,0.003697361328490141 +illusion_0.75L,sr,120,24.0,alpha,lower,0.003697361328490141 +illusion_0.75L,sr,121,24.2,alpha,front,-0.010546117967472582 +illusion_0.75L,sr,121,24.2,alpha,upper,0.004251343920262746 +illusion_0.75L,sr,121,24.2,alpha,lower,0.004251343920262746 +illusion_0.75L,sr,122,24.4,alpha,front,-0.01103716424257066 +illusion_0.75L,sr,122,24.4,alpha,upper,0.004547658118338654 +illusion_0.75L,sr,122,24.4,alpha,lower,0.004547658118338654 +illusion_0.75L,sr,123,24.6,alpha,front,-0.009592885719096451 +illusion_0.75L,sr,123,24.6,alpha,upper,0.003504950481068123 +illusion_0.75L,sr,123,24.6,alpha,lower,0.003504950481068123 +illusion_0.75L,sr,124,24.8,alpha,front,-0.009038521774585556 +illusion_0.75L,sr,124,24.8,alpha,upper,0.0032167048001885273 +illusion_0.75L,sr,124,24.8,alpha,lower,0.0032167048001885273 +illusion_0.75L,sr,125,25.0,alpha,front,-0.008702499924577257 +illusion_0.75L,sr,125,25.0,alpha,upper,0.0031615395044272063 +illusion_0.75L,sr,125,25.0,alpha,lower,0.0031615395044272063 +illusion_0.75L,sr,126,25.2,alpha,front,-0.008171742105144951 +illusion_0.75L,sr,126,25.2,alpha,upper,0.003044166766322104 +illusion_0.75L,sr,126,25.2,alpha,lower,0.003044166766322104 +illusion_0.75L,sr,127,25.4,alpha,front,-0.006933403971152816 +illusion_0.75L,sr,127,25.4,alpha,upper,0.002468356763483316 +illusion_0.75L,sr,127,25.4,alpha,lower,0.002468356763483316 +illusion_0.75L,sr,128,25.6,alpha,front,-0.004929675151653719 +illusion_0.75L,sr,128,25.6,alpha,upper,0.0014029497065629268 +illusion_0.75L,sr,128,25.6,alpha,lower,0.0014029497065629268 +illusion_0.75L,sr,129,25.8,alpha,front,-0.0034571673851613617 +illusion_0.75L,sr,129,25.8,alpha,upper,0.0007763122505614721 +illusion_0.75L,sr,129,25.8,alpha,lower,0.0007763122505614721 +illusion_0.75L,sr,130,26.0,alpha,front,-0.0029905772150979615 +illusion_0.75L,sr,130,26.0,alpha,upper,0.0009271711256851594 +illusion_0.75L,sr,130,26.0,alpha,lower,0.0009271711256851594 +illusion_0.75L,sr,131,26.2,alpha,front,-0.002366023349275043 +illusion_0.75L,sr,131,26.2,alpha,upper,0.0009819958307260325 +illusion_0.75L,sr,131,26.2,alpha,lower,0.0009819958307260325 +illusion_0.75L,sr,132,26.4,alpha,front,-0.0006834072992966023 +illusion_0.75L,sr,132,26.4,alpha,upper,0.000266781438573116 +illusion_0.75L,sr,132,26.4,alpha,lower,0.000266781438573116 +illusion_0.75L,sr,133,26.6,alpha,front,0.0012697405673109752 +illusion_0.75L,sr,133,26.6,alpha,upper,-0.0006468097464822913 +illusion_0.75L,sr,133,26.6,alpha,lower,-0.0006468097464822913 +illusion_0.75L,sr,134,26.8,alpha,front,0.0023522419925690492 +illusion_0.75L,sr,134,26.8,alpha,upper,-0.0009329199236941099 +illusion_0.75L,sr,134,26.8,alpha,lower,-0.0009329199236941099 +illusion_0.75L,sr,135,27.0,alpha,front,0.0027131007129889174 +illusion_0.75L,sr,135,27.0,alpha,upper,-0.0007139551220893964 +illusion_0.75L,sr,135,27.0,alpha,lower,-0.0007139551220893964 +illusion_0.75L,sr,136,27.2,alpha,front,0.0038430374940586626 +illusion_0.75L,sr,136,27.2,alpha,upper,-0.0010967310028743502 +illusion_0.75L,sr,136,27.2,alpha,lower,-0.0010967310028743502 +illusion_0.75L,sr,137,27.4,alpha,front,0.005692818089938753 +illusion_0.75L,sr,137,27.4,alpha,upper,-0.0020489625867583655 +illusion_0.75L,sr,137,27.4,alpha,lower,-0.0020489625867583655 +illusion_0.75L,sr,138,27.6,alpha,front,0.00684894027113999 +illusion_0.75L,sr,138,27.6,alpha,upper,-0.0025408071535291676 +illusion_0.75L,sr,138,27.6,alpha,lower,-0.0025408071535291676 +illusion_0.75L,sr,139,27.8,alpha,front,0.0067487532851329135 +illusion_0.75L,sr,139,27.8,alpha,upper,-0.0021658021151766613 +illusion_0.75L,sr,139,27.8,alpha,lower,-0.0021658021151766613 +illusion_0.75L,sr,140,28.0,alpha,front,0.006642432335539599 +illusion_0.75L,sr,140,28.0,alpha,upper,-0.001856273455206267 +illusion_0.75L,sr,140,28.0,alpha,lower,-0.001856273455206267 +illusion_0.75L,sr,141,28.2,alpha,front,0.0074179601011496515 +illusion_0.75L,sr,141,28.2,alpha,upper,-0.0022644702500011216 +illusion_0.75L,sr,141,28.2,alpha,lower,-0.0022644702500011216 +illusion_0.75L,sr,142,28.4,alpha,front,0.008147835303145584 +illusion_0.75L,sr,142,28.4,alpha,upper,-0.0027149122322675037 +illusion_0.75L,sr,142,28.4,alpha,lower,-0.0027149122322675037 +illusion_0.75L,sr,143,28.6,alpha,front,0.007514457096903855 +illusion_0.75L,sr,143,28.6,alpha,upper,-0.002235770133691549 +illusion_0.75L,sr,143,28.6,alpha,lower,-0.002235770133691549 +illusion_0.75L,sr,144,28.8,alpha,front,0.006252889698359735 +illusion_0.75L,sr,144,28.8,alpha,upper,-0.0013793612129897673 +illusion_0.75L,sr,144,28.8,alpha,lower,-0.0013793612129897673 +illusion_0.75L,sr,145,29.0,alpha,front,0.006159922865075321 +illusion_0.75L,sr,145,29.0,alpha,upper,-0.0014587261571492247 +illusion_0.75L,sr,145,29.0,alpha,lower,-0.0014587261571492247 +illusion_0.75L,sr,146,29.2,alpha,front,0.006657496935943024 +illusion_0.75L,sr,146,29.2,alpha,upper,-0.0020408467987478793 +illusion_0.75L,sr,146,29.2,alpha,lower,-0.0020408467987478793 +illusion_0.75L,sr,147,29.4,alpha,front,0.005958152313910628 +illusion_0.75L,sr,147,29.4,alpha,upper,-0.0018069933205474287 +illusion_0.75L,sr,147,29.4,alpha,lower,-0.0018069933205474287 +illusion_0.75L,sr,148,29.6,alpha,front,0.004335840595833723 +illusion_0.75L,sr,148,29.6,alpha,upper,-0.0009532923908873898 +illusion_0.75L,sr,148,29.6,alpha,lower,-0.0009532923908873898 +illusion_0.75L,sr,149,29.8,alpha,front,0.003443376250713358 +illusion_0.75L,sr,149,29.8,alpha,upper,-0.0006846172496751783 +illusion_0.75L,sr,149,29.8,alpha,lower,-0.0006846172496751783 +illusion_0.75L,sr,150,30.0,alpha,front,0.0033775785623410756 +illusion_0.75L,sr,150,30.0,alpha,upper,-0.0010580366834919835 +illusion_0.75L,sr,150,30.0,alpha,lower,-0.0010580366834919835 +illusion_0.75L,sr,151,30.2,alpha,front,0.0028082146731480268 +illusion_0.75L,sr,151,30.2,alpha,upper,-0.0010898162467028929 +illusion_0.75L,sr,151,30.2,alpha,lower,-0.0010898162467028929 +illusion_0.75L,sr,152,30.4,alpha,front,0.0012068034378034873 +illusion_0.75L,sr,152,30.4,alpha,upper,-0.00037792164589331 +illusion_0.75L,sr,152,30.4,alpha,lower,-0.00037792164589331 +illusion_0.75L,sr,153,30.6,alpha,front,-0.00016728074633799196 +illusion_0.75L,sr,153,30.6,alpha,upper,0.00016063581408308356 +illusion_0.75L,sr,153,30.6,alpha,lower,0.00016063581408308356 +illusion_0.75L,sr,154,30.8,alpha,front,-0.0003879499221827731 +illusion_0.75L,sr,154,30.8,alpha,upper,-0.00014224077225188925 +illusion_0.75L,sr,154,30.8,alpha,lower,-0.00014224077225188925 +illusion_0.75L,sr,155,31.0,alpha,front,-0.0006237231699378863 +illusion_0.75L,sr,155,31.0,alpha,upper,-0.00041534620722151645 +illusion_0.75L,sr,155,31.0,alpha,lower,-0.00041534620722151645 +illusion_0.75L,sr,156,31.2,alpha,front,-0.0020446972836843935 +illusion_0.75L,sr,156,31.2,alpha,upper,0.0002096947814599348 +illusion_0.75L,sr,156,31.2,alpha,lower,0.0002096947814599348 +illusion_0.75L,sr,157,31.4,alpha,front,-0.0036381322485716273 +illusion_0.75L,sr,157,31.4,alpha,upper,0.0009922551909643806 +illusion_0.75L,sr,157,31.4,alpha,lower,0.0009922551909643806 +illusion_0.75L,sr,158,31.6,alpha,front,-0.004009700594932344 +illusion_0.75L,sr,158,31.6,alpha,upper,0.0009184906501768057 +illusion_0.75L,sr,158,31.6,alpha,lower,0.0009184906501768057 +illusion_0.75L,sr,159,31.8,alpha,front,-0.003888766399224877 +illusion_0.75L,sr,159,31.8,alpha,upper,0.0005333193599954024 +illusion_0.75L,sr,159,31.8,alpha,lower,0.0005333193599954024 +illusion_0.75L,sr,160,32.0,alpha,front,-0.004642086983064862 +illusion_0.75L,sr,160,32.0,alpha,upper,0.0008471806987243037 +illusion_0.75L,sr,160,32.0,alpha,lower,0.0008471806987243037 +illusion_0.75L,sr,161,32.2,alpha,front,-0.005972474777402988 +illusion_0.75L,sr,161,32.2,alpha,upper,0.0016438533819704076 +illusion_0.75L,sr,161,32.2,alpha,lower,0.0016438533819704076 +illusion_0.75L,sr,162,32.4,alpha,front,-0.006280620346897427 +illusion_0.75L,sr,162,32.4,alpha,upper,0.0017532288290693643 +illusion_0.75L,sr,162,32.4,alpha,lower,0.0017532288290693643 +illusion_0.75L,sr,163,32.6,alpha,front,-0.005677570560007568 +illusion_0.75L,sr,163,32.6,alpha,upper,0.0012603738756167965 +illusion_0.75L,sr,163,32.6,alpha,lower,0.0012603738756167965 +illusion_0.75L,sr,164,32.8,alpha,front,-0.005618031503331802 +illusion_0.75L,sr,164,32.8,alpha,upper,0.0012381105318537144 +illusion_0.75L,sr,164,32.8,alpha,lower,0.0012381105318537144 +illusion_0.75L,sr,165,33.0,alpha,front,-0.006345822733140938 +illusion_0.75L,sr,165,33.0,alpha,upper,0.0018607510088154214 +illusion_0.75L,sr,165,33.0,alpha,lower,0.0018607510088154214 +illusion_0.75L,sr,166,33.2,alpha,front,-0.006571032397324941 +illusion_0.75L,sr,166,33.2,alpha,upper,0.0021707255312406262 +illusion_0.75L,sr,166,33.2,alpha,lower,0.0021707255312406262 +illusion_0.75L,sr,167,33.4,alpha,front,-0.005585086410047027 +illusion_0.75L,sr,167,33.4,alpha,upper,0.001663307928583085 +illusion_0.75L,sr,167,33.4,alpha,lower,0.001663307928583085 +illusion_0.75L,sr,168,33.6,alpha,front,-0.004749070676469382 +illusion_0.75L,sr,168,33.6,alpha,upper,0.0013179483606502486 +illusion_0.75L,sr,168,33.6,alpha,lower,0.0013179483606502486 +illusion_0.75L,sr,169,33.8,alpha,front,-0.004842984812673975 +illusion_0.75L,sr,169,33.8,alpha,upper,0.0017006215293075661 +illusion_0.75L,sr,169,33.8,alpha,lower,0.0017006215293075661 +illusion_0.75L,sr,170,34.0,alpha,front,-0.004858020886596513 +illusion_0.75L,sr,170,34.0,alpha,upper,0.0020635938725688044 +illusion_0.75L,sr,170,34.0,alpha,lower,0.0020635938725688044 +illusion_0.75L,sr,171,34.2,alpha,front,-0.0036457069410127806 +illusion_0.75L,sr,171,34.2,alpha,upper,0.0015526108801513453 +illusion_0.75L,sr,171,34.2,alpha,lower,0.0015526108801513453 +illusion_0.75L,sr,172,34.4,alpha,front,-0.0024743592335490974 +illusion_0.75L,sr,172,34.4,alpha,upper,0.0010966629011851508 +illusion_0.75L,sr,172,34.4,alpha,lower,0.0010966629011851508 +illusion_0.75L,sr,173,34.6,alpha,front,-0.0019881334998668168 +illusion_0.75L,sr,173,34.6,alpha,upper,0.0011536019724607176 +illusion_0.75L,sr,173,34.6,alpha,lower,0.0011536019724607176 +illusion_0.75L,sr,174,34.8,alpha,front,-0.0016189007248259982 +illusion_0.75L,sr,174,34.8,alpha,upper,0.001299543351728494 +illusion_0.75L,sr,174,34.8,alpha,lower,0.001299543351728494 +illusion_0.75L,sr,175,35.0,alpha,front,-0.00060600889688678 +illusion_0.75L,sr,175,35.0,alpha,upper,0.0009647409732265372 +illusion_0.75L,sr,175,35.0,alpha,lower,0.0009647409732265372 +illusion_0.75L,sr,176,35.2,alpha,front,0.0008818315712061063 +illusion_0.75L,sr,176,35.2,alpha,upper,0.0002683224180378505 +illusion_0.75L,sr,176,35.2,alpha,lower,0.0002683224180378505 +illusion_0.75L,sr,177,35.4,alpha,front,0.0019380842112984055 +illusion_0.75L,sr,177,35.4,alpha,upper,-0.0001376768158130176 +illusion_0.75L,sr,177,35.4,alpha,lower,-0.0001376768158130176 +illusion_0.75L,sr,178,35.6,alpha,front,0.0024751998881325787 +illusion_0.75L,sr,178,35.6,alpha,upper,-0.0001898638230265308 +illusion_0.75L,sr,178,35.6,alpha,lower,-0.0001898638230265308 +illusion_0.75L,sr,179,35.8,alpha,front,0.0032165241700753133 +illusion_0.75L,sr,179,35.8,alpha,upper,-0.00043021258421581735 +illusion_0.75L,sr,179,35.8,alpha,lower,-0.00043021258421581735 +illusion_0.75L,sr,180,36.0,alpha,front,0.004362220127492898 +illusion_0.75L,sr,180,36.0,alpha,upper,-0.0010107617982664206 +illusion_0.75L,sr,180,36.0,alpha,lower,-0.0010107617982664206 +illusion_0.75L,sr,181,36.2,alpha,front,0.005160879287881358 +illusion_0.75L,sr,181,36.2,alpha,upper,-0.0013847456293850924 +illusion_0.75L,sr,181,36.2,alpha,lower,-0.0013847456293850924 +illusion_0.75L,sr,182,36.4,alpha,front,0.0055059369827206855 +illusion_0.75L,sr,182,36.4,alpha,upper,-0.001479739011901203 +illusion_0.75L,sr,182,36.4,alpha,lower,-0.001479739011901203 +illusion_0.75L,sr,183,36.6,alpha,front,0.0056958567232661406 +illusion_0.75L,sr,183,36.6,alpha,upper,-0.0015160535615070109 +illusion_0.75L,sr,183,36.6,alpha,lower,-0.0015160535615070109 +illusion_0.75L,sr,184,36.8,alpha,front,0.0062700414196678045 +illusion_0.75L,sr,184,36.8,alpha,upper,-0.0019002186820806094 +illusion_0.75L,sr,184,36.8,alpha,lower,-0.0019002186820806094 +illusion_0.75L,sr,185,37.0,alpha,front,0.00647242565984147 +illusion_0.75L,sr,185,37.0,alpha,upper,-0.0020698467977091975 +illusion_0.75L,sr,185,37.0,alpha,lower,-0.0020698467977091975 +illusion_0.75L,sr,186,37.2,alpha,front,0.006236883938212513 +illusion_0.75L,sr,186,37.2,alpha,upper,-0.0019798552516924126 +illusion_0.75L,sr,186,37.2,alpha,lower,-0.0019798552516924126 +illusion_0.75L,sr,187,37.4,alpha,front,0.005997365108907748 +illusion_0.75L,sr,187,37.4,alpha,upper,-0.0019462154158933242 +illusion_0.75L,sr,187,37.4,alpha,lower,-0.0019462154158933242 +illusion_0.75L,sr,188,37.6,alpha,front,0.00574586000527344 +illusion_0.75L,sr,188,37.6,alpha,upper,-0.0019597623758325806 +illusion_0.75L,sr,188,37.6,alpha,lower,-0.0019597623758325806 +illusion_0.75L,sr,189,37.8,alpha,front,0.00527405573025963 +illusion_0.75L,sr,189,37.8,alpha,upper,-0.0018616756118224713 +illusion_0.75L,sr,189,37.8,alpha,lower,-0.0018616756118224713 +illusion_0.75L,sr,190,38.0,alpha,front,0.004603125242624569 +illusion_0.75L,sr,190,38.0,alpha,upper,-0.001662493287617306 +illusion_0.75L,sr,190,38.0,alpha,lower,-0.001662493287617306 +illusion_0.75L,sr,191,38.2,alpha,front,0.004383453790319583 +illusion_0.75L,sr,191,38.2,alpha,upper,-0.0018326737357294669 +illusion_0.75L,sr,191,38.2,alpha,lower,-0.0018326737357294669 +illusion_0.75L,sr,192,38.4,alpha,front,0.00406922502258298 +illusion_0.75L,sr,192,38.4,alpha,upper,-0.001956102393547647 +illusion_0.75L,sr,192,38.4,alpha,lower,-0.001956102393547647 +illusion_0.75L,sr,193,38.6,alpha,front,0.0032139324113685027 +illusion_0.75L,sr,193,38.6,alpha,upper,-0.0016997448243188653 +illusion_0.75L,sr,193,38.6,alpha,lower,-0.0016997448243188653 +illusion_0.75L,sr,194,38.8,alpha,front,0.002450410637890918 +illusion_0.75L,sr,194,38.8,alpha,upper,-0.0015380932689134227 +illusion_0.75L,sr,194,38.8,alpha,lower,-0.0015380932689134227 +illusion_0.75L,sr,195,39.0,alpha,front,0.001892238257490464 +illusion_0.75L,sr,195,39.0,alpha,upper,-0.0014996334222878202 +illusion_0.75L,sr,195,39.0,alpha,lower,-0.0014996334222878202 +illusion_0.75L,sr,196,39.2,alpha,front,0.001231732899843298 +illusion_0.75L,sr,196,39.2,alpha,upper,-0.0013884849038660347 +illusion_0.75L,sr,196,39.2,alpha,lower,-0.0013884849038660347 +illusion_0.75L,sr,197,39.4,alpha,front,0.00024406641125081574 +illusion_0.75L,sr,197,39.4,alpha,upper,-0.00102182578970233 +illusion_0.75L,sr,197,39.4,alpha,lower,-0.00102182578970233 +illusion_0.75L,sr,198,39.6,alpha,front,-0.0008508056797537598 +illusion_0.75L,sr,198,39.6,alpha,upper,-0.0005532725220607337 +illusion_0.75L,sr,198,39.6,alpha,lower,-0.0005532725220607337 +illusion_0.75L,sr,199,39.8,alpha,front,-0.0016779907349253227 +illusion_0.75L,sr,199,39.8,alpha,upper,-0.0002516777406600737 +illusion_0.75L,sr,199,39.8,alpha,lower,-0.0002516777406600737 +illusion_0.75L,sr,0,0.0,omega,front,0.0008378423896653334 +illusion_0.75L,sr,0,0.0,omega,upper,-0.0005697559957518511 +illusion_0.75L,sr,0,0.0,omega,lower,-0.0005697559957518511 +illusion_0.75L,sr,1,0.2,omega,front,0.000719625133193826 +illusion_0.75L,sr,1,0.2,omega,upper,-0.00047122944509358746 +illusion_0.75L,sr,1,0.2,omega,lower,-0.00047122944509358746 +illusion_0.75L,sr,2,0.4,omega,front,0.0002081750355040614 +illusion_0.75L,sr,2,0.4,omega,upper,-8.293904976274456e-05 +illusion_0.75L,sr,2,0.4,omega,lower,-8.293904976274456e-05 +illusion_0.75L,sr,3,0.6,omega,front,6.52906908157136e-05 +illusion_0.75L,sr,3,0.6,omega,upper,3.3760315545836444e-05 +illusion_0.75L,sr,3,0.6,omega,lower,3.3760315545836444e-05 +illusion_0.75L,sr,4,0.8,omega,front,0.00016228877081958694 +illusion_0.75L,sr,4,0.8,omega,upper,-2.8477970353660147e-05 +illusion_0.75L,sr,4,0.8,omega,lower,-2.8477970353660147e-05 +illusion_0.75L,sr,5,1.0,omega,front,0.00019952920368860593 +illusion_0.75L,sr,5,1.0,omega,upper,-4.824202418474033e-05 +illusion_0.75L,sr,5,1.0,omega,lower,-4.824202418474033e-05 +illusion_0.75L,sr,6,1.2,omega,front,0.00018990588501843625 +illusion_0.75L,sr,6,1.2,omega,upper,-3.4880681100787625e-05 +illusion_0.75L,sr,6,1.2,omega,lower,-3.4880681100787625e-05 +illusion_0.75L,sr,7,1.4,omega,front,0.00021067772955386978 +illusion_0.75L,sr,7,1.4,omega,upper,-4.494966512509219e-05 +illusion_0.75L,sr,7,1.4,omega,lower,-4.494966512509219e-05 +illusion_0.75L,sr,8,1.6,omega,front,0.00023470623604857272 +illusion_0.75L,sr,8,1.6,omega,upper,-5.964944446555237e-05 +illusion_0.75L,sr,8,1.6,omega,lower,-5.964944446555237e-05 +illusion_0.75L,sr,9,1.8,omega,front,0.00020951303922251446 +illusion_0.75L,sr,9,1.8,omega,upper,-4.093032194865898e-05 +illusion_0.75L,sr,9,1.8,omega,lower,-4.093032194865898e-05 +illusion_0.75L,sr,10,2.0,omega,front,0.0001579911315003879 +illusion_0.75L,sr,10,2.0,omega,upper,-4.815927641425855e-06 +illusion_0.75L,sr,10,2.0,omega,lower,-4.815927641425855e-06 +illusion_0.75L,sr,11,2.2,omega,front,0.00014615660067356846 +illusion_0.75L,sr,11,2.2,omega,upper,6.182690698169902e-07 +illusion_0.75L,sr,11,2.2,omega,lower,6.182690698169902e-07 +illusion_0.75L,sr,12,2.4,omega,front,0.00014765043171065557 +illusion_0.75L,sr,12,2.4,omega,upper,-4.79812151672726e-06 +illusion_0.75L,sr,12,2.4,omega,lower,-4.79812151672726e-06 +illusion_0.75L,sr,13,2.6,omega,front,0.00015513801543639712 +illusion_0.75L,sr,13,2.6,omega,upper,-1.5456463550364007e-05 +illusion_0.75L,sr,13,2.6,omega,lower,-1.5456463550364007e-05 +illusion_0.75L,sr,14,2.8,omega,front,0.00015826631467026508 +illusion_0.75L,sr,14,2.8,omega,upper,-2.355792528968531e-05 +illusion_0.75L,sr,14,2.8,omega,lower,-2.355792528968531e-05 +illusion_0.75L,sr,15,3.0,omega,front,0.0001685495673181184 +illusion_0.75L,sr,15,3.0,omega,upper,-3.7538224407483304e-05 +illusion_0.75L,sr,15,3.0,omega,lower,-3.7538224407483304e-05 +illusion_0.75L,sr,16,3.2,omega,front,0.00017219572999654597 +illusion_0.75L,sr,16,3.2,omega,upper,-4.736210900441004e-05 +illusion_0.75L,sr,16,3.2,omega,lower,-4.736210900441004e-05 +illusion_0.75L,sr,17,3.4,omega,front,0.0001730389743440533 +illusion_0.75L,sr,17,3.4,omega,upper,-5.585615829389518e-05 +illusion_0.75L,sr,17,3.4,omega,lower,-5.585615829389518e-05 +illusion_0.75L,sr,18,3.6,omega,front,0.0001550898809990284 +illusion_0.75L,sr,18,3.6,omega,upper,-5.121161552832418e-05 +illusion_0.75L,sr,18,3.6,omega,lower,-5.121161552832418e-05 +illusion_0.75L,sr,19,3.8,omega,front,0.00013772725492284366 +illusion_0.75L,sr,19,3.8,omega,upper,-4.746804843059671e-05 +illusion_0.75L,sr,19,3.8,omega,lower,-4.746804843059671e-05 +illusion_0.75L,sr,20,4.0,omega,front,0.00011758866087906633 +illusion_0.75L,sr,20,4.0,omega,upper,-4.22119831111905e-05 +illusion_0.75L,sr,20,4.0,omega,lower,-4.22119831111905e-05 +illusion_0.75L,sr,21,4.2,omega,front,0.00010828901670146773 +illusion_0.75L,sr,21,4.2,omega,upper,-4.536857921064723e-05 +illusion_0.75L,sr,21,4.2,omega,lower,-4.536857921064723e-05 +illusion_0.75L,sr,22,4.4,omega,front,9.393806832129537e-05 +illusion_0.75L,sr,22,4.4,omega,upper,-4.5070509535313153e-05 +illusion_0.75L,sr,22,4.4,omega,lower,-4.5070509535313153e-05 +illusion_0.75L,sr,23,4.6,omega,front,6.238197805061837e-05 +illusion_0.75L,sr,23,4.6,omega,upper,-3.236014942245652e-05 +illusion_0.75L,sr,23,4.6,omega,lower,-3.236014942245652e-05 +illusion_0.75L,sr,24,4.8,omega,front,2.2664086116632707e-05 +illusion_0.75L,sr,24,4.8,omega,upper,-1.368170008479296e-05 +illusion_0.75L,sr,24,4.8,omega,lower,-1.368170008479296e-05 +illusion_0.75L,sr,25,5.0,omega,front,-1.0873458545239308e-05 +illusion_0.75L,sr,25,5.0,omega,upper,4.088442645380254e-07 +illusion_0.75L,sr,25,5.0,omega,lower,4.088442645380254e-07 +illusion_0.75L,sr,26,5.2,omega,front,-3.319010377983031e-05 +illusion_0.75L,sr,26,5.2,omega,upper,6.4632997630484356e-06 +illusion_0.75L,sr,26,5.2,omega,lower,6.4632997630484356e-06 +illusion_0.75L,sr,27,5.4,omega,front,-6.012239934591386e-05 +illusion_0.75L,sr,27,5.4,omega,upper,1.624359925543002e-05 +illusion_0.75L,sr,27,5.4,omega,lower,1.624359925543002e-05 +illusion_0.75L,sr,28,5.6,omega,front,-0.00010551935277027087 +illusion_0.75L,sr,28,5.6,omega,upper,4.0009098570422674e-05 +illusion_0.75L,sr,28,5.6,omega,lower,4.0009098570422674e-05 +illusion_0.75L,sr,29,5.8,omega,front,-0.00014345205612390597 +illusion_0.75L,sr,29,5.8,omega,upper,5.882389042483942e-05 +illusion_0.75L,sr,29,5.8,omega,lower,5.882389042483942e-05 +illusion_0.75L,sr,30,6.0,omega,front,-0.00016717664568647247 +illusion_0.75L,sr,30,6.0,omega,upper,6.785401022493698e-05 +illusion_0.75L,sr,30,6.0,omega,lower,6.785401022493698e-05 +illusion_0.75L,sr,31,6.2,omega,front,-0.00018023160153953277 +illusion_0.75L,sr,31,6.2,omega,upper,6.989786114469376e-05 +illusion_0.75L,sr,31,6.2,omega,lower,6.989786114469376e-05 +illusion_0.75L,sr,32,6.4,omega,front,-0.00020209200284899685 +illusion_0.75L,sr,32,6.4,omega,upper,7.938813046807019e-05 +illusion_0.75L,sr,32,6.4,omega,lower,7.938813046807019e-05 +illusion_0.75L,sr,33,6.6,omega,front,-0.0002303672972149251 +illusion_0.75L,sr,33,6.6,omega,upper,9.46720420509721e-05 +illusion_0.75L,sr,33,6.6,omega,lower,9.46720420509721e-05 +illusion_0.75L,sr,34,6.8,omega,front,-0.00023895080675304326 +illusion_0.75L,sr,34,6.8,omega,upper,9.667563518883788e-05 +illusion_0.75L,sr,34,6.8,omega,lower,9.667563518883788e-05 +illusion_0.75L,sr,35,7.0,omega,front,-0.0002295697893735016 +illusion_0.75L,sr,35,7.0,omega,upper,8.684602624532356e-05 +illusion_0.75L,sr,35,7.0,omega,lower,8.684602624532356e-05 +illusion_0.75L,sr,36,7.2,omega,front,-0.00022798504386096596 +illusion_0.75L,sr,36,7.2,omega,upper,8.421445324312174e-05 +illusion_0.75L,sr,36,7.2,omega,lower,8.421445324312174e-05 +illusion_0.75L,sr,37,7.4,omega,front,-0.00023390616423860422 +illusion_0.75L,sr,37,7.4,omega,upper,8.852769313729428e-05 +illusion_0.75L,sr,37,7.4,omega,lower,8.852769313729428e-05 +illusion_0.75L,sr,38,7.6,omega,front,-0.00022006215814809828 +illusion_0.75L,sr,38,7.6,omega,upper,7.974187570296069e-05 +illusion_0.75L,sr,38,7.6,omega,lower,7.974187570296069e-05 +illusion_0.75L,sr,39,7.8,omega,front,-0.00018012694928260133 +illusion_0.75L,sr,39,7.8,omega,upper,5.3278096394216855e-05 +illusion_0.75L,sr,39,7.8,omega,lower,5.3278096394216855e-05 +illusion_0.75L,sr,40,8.0,omega,front,-0.00016472493930518432 +illusion_0.75L,sr,40,8.0,omega,upper,4.64260668567909e-05 +illusion_0.75L,sr,40,8.0,omega,lower,4.64260668567909e-05 +illusion_0.75L,sr,41,8.2,omega,front,-0.0001549808907597254 +illusion_0.75L,sr,41,8.2,omega,upper,4.4817302673681726e-05 +illusion_0.75L,sr,41,8.2,omega,lower,4.4817302673681726e-05 +illusion_0.75L,sr,42,8.4,omega,front,-0.00015487052222876315 +illusion_0.75L,sr,42,8.4,omega,upper,5.1606659587089266e-05 +illusion_0.75L,sr,42,8.4,omega,lower,5.1606659587089266e-05 +illusion_0.75L,sr,43,8.6,omega,front,-0.0001290522466079977 +illusion_0.75L,sr,43,8.6,omega,upper,4.025593728035057e-05 +illusion_0.75L,sr,43,8.6,omega,lower,4.025593728035057e-05 +illusion_0.75L,sr,44,8.8,omega,front,-9.269062547519802e-05 +illusion_0.75L,sr,44,8.8,omega,upper,2.1915998927402038e-05 +illusion_0.75L,sr,44,8.8,omega,lower,2.1915998927402038e-05 +illusion_0.75L,sr,45,9.0,omega,front,-7.935986170862858e-05 +illusion_0.75L,sr,45,9.0,omega,upper,2.1046301665453293e-05 +illusion_0.75L,sr,45,9.0,omega,lower,2.1046301665453293e-05 +illusion_0.75L,sr,46,9.2,omega,front,-7.443452532700623e-05 +illusion_0.75L,sr,46,9.2,omega,upper,2.663904186335657e-05 +illusion_0.75L,sr,46,9.2,omega,lower,2.663904186335657e-05 +illusion_0.75L,sr,47,9.4,omega,front,-5.4836862692479487e-05 +illusion_0.75L,sr,47,9.4,omega,upper,2.15876744787016e-05 +illusion_0.75L,sr,47,9.4,omega,lower,2.15876744787016e-05 +illusion_0.75L,sr,48,9.6,omega,front,-2.370275160948402e-05 +illusion_0.75L,sr,48,9.6,omega,upper,8.029749327131669e-06 +illusion_0.75L,sr,48,9.6,omega,lower,8.029749327131669e-06 +illusion_0.75L,sr,49,9.8,omega,front,-2.383417882265909e-06 +illusion_0.75L,sr,49,9.8,omega,upper,1.566859949748512e-06 +illusion_0.75L,sr,49,9.8,omega,lower,1.566859949748512e-06 +illusion_0.75L,sr,50,10.0,omega,front,4.362770997189645e-06 +illusion_0.75L,sr,50,10.0,omega,upper,5.556098946432938e-06 +illusion_0.75L,sr,50,10.0,omega,lower,5.556098946432938e-06 +illusion_0.75L,sr,51,10.2,omega,front,2.00456781218605e-05 +illusion_0.75L,sr,51,10.2,omega,upper,2.513279438827801e-06 +illusion_0.75L,sr,51,10.2,omega,lower,2.513279438827801e-06 +illusion_0.75L,sr,52,10.4,omega,front,4.8633600592791896e-05 +illusion_0.75L,sr,52,10.4,omega,upper,-1.048279692961618e-05 +illusion_0.75L,sr,52,10.4,omega,lower,-1.048279692961618e-05 +illusion_0.75L,sr,53,10.6,omega,front,7.3037255251919e-05 +illusion_0.75L,sr,53,10.6,omega,upper,-2.096408527970023e-05 +illusion_0.75L,sr,53,10.6,omega,lower,-2.096408527970023e-05 +illusion_0.75L,sr,54,10.8,omega,front,8.439514956328886e-05 +illusion_0.75L,sr,54,10.8,omega,upper,-2.2505707873336708e-05 +illusion_0.75L,sr,54,10.8,omega,lower,-2.2505707873336708e-05 +illusion_0.75L,sr,55,11.0,omega,front,9.8054039855648e-05 +illusion_0.75L,sr,55,11.0,omega,upper,-2.6566692271377256e-05 +illusion_0.75L,sr,55,11.0,omega,lower,-2.6566692271377256e-05 +illusion_0.75L,sr,56,11.2,omega,front,0.00012208273889371583 +illusion_0.75L,sr,56,11.2,omega,upper,-3.909150144280997e-05 +illusion_0.75L,sr,56,11.2,omega,lower,-3.909150144280997e-05 +illusion_0.75L,sr,57,11.4,omega,front,0.00014103847758076076 +illusion_0.75L,sr,57,11.4,omega,upper,-4.881205052341117e-05 +illusion_0.75L,sr,57,11.4,omega,lower,-4.881205052341117e-05 +illusion_0.75L,sr,58,11.6,omega,front,0.00014688193764136022 +illusion_0.75L,sr,58,11.6,omega,upper,-4.9947103414045015e-05 +illusion_0.75L,sr,58,11.6,omega,lower,-4.9947103414045015e-05 +illusion_0.75L,sr,59,11.8,omega,front,0.0001479331401012131 +illusion_0.75L,sr,59,11.8,omega,upper,-4.8680551701127255e-05 +illusion_0.75L,sr,59,11.8,omega,lower,-4.8680551701127255e-05 +illusion_0.75L,sr,60,12.0,omega,front,0.00015578584538215062 +illusion_0.75L,sr,60,12.0,omega,upper,-5.362508707459482e-05 +illusion_0.75L,sr,60,12.0,omega,lower,-5.362508707459482e-05 +illusion_0.75L,sr,61,12.2,omega,front,0.00016023898788033287 +illusion_0.75L,sr,61,12.2,omega,upper,-5.7325933859661005e-05 +illusion_0.75L,sr,61,12.2,omega,lower,-5.7325933859661005e-05 +illusion_0.75L,sr,62,12.4,omega,front,0.00015498604255037172 +illusion_0.75L,sr,62,12.4,omega,upper,-5.517822746227419e-05 +illusion_0.75L,sr,62,12.4,omega,lower,-5.517822746227419e-05 +illusion_0.75L,sr,63,12.6,omega,front,0.00014314410670163453 +illusion_0.75L,sr,63,12.6,omega,upper,-4.945291859869444e-05 +illusion_0.75L,sr,63,12.6,omega,lower,-4.945291859869444e-05 +illusion_0.75L,sr,64,12.8,omega,front,0.00013317585291512695 +illusion_0.75L,sr,64,12.8,omega,upper,-4.630751560777968e-05 +illusion_0.75L,sr,64,12.8,omega,lower,-4.630751560777968e-05 +illusion_0.75L,sr,65,13.0,omega,front,0.0001279837219846823 +illusion_0.75L,sr,65,13.0,omega,upper,-4.7773110876653675e-05 +illusion_0.75L,sr,65,13.0,omega,lower,-4.7773110876653675e-05 +illusion_0.75L,sr,66,13.2,omega,front,0.0001199304781205375 +illusion_0.75L,sr,66,13.2,omega,upper,-4.80702248607541e-05 +illusion_0.75L,sr,66,13.2,omega,lower,-4.80702248607541e-05 +illusion_0.75L,sr,67,13.4,omega,front,0.00010134346804538168 +illusion_0.75L,sr,67,13.4,omega,upper,-4.1396456637237884e-05 +illusion_0.75L,sr,67,13.4,omega,lower,-4.1396456637237884e-05 +illusion_0.75L,sr,68,13.6,omega,front,7.995852987714006e-05 +illusion_0.75L,sr,68,13.6,omega,upper,-3.327888712312311e-05 +illusion_0.75L,sr,68,13.6,omega,lower,-3.327888712312311e-05 +illusion_0.75L,sr,69,13.8,omega,front,6.677398807235713e-05 +illusion_0.75L,sr,69,13.8,omega,upper,-3.1599083392664654e-05 +illusion_0.75L,sr,69,13.8,omega,lower,-3.1599083392664654e-05 +illusion_0.75L,sr,70,14.0,omega,front,5.41486497209937e-05 +illusion_0.75L,sr,70,14.0,omega,upper,-3.0498203647834587e-05 +illusion_0.75L,sr,70,14.0,omega,lower,-3.0498203647834587e-05 +illusion_0.75L,sr,71,14.2,omega,front,3.109824005450437e-05 +illusion_0.75L,sr,71,14.2,omega,upper,-2.178867102705308e-05 +illusion_0.75L,sr,71,14.2,omega,lower,-2.178867102705308e-05 +illusion_0.75L,sr,72,14.4,omega,front,1.1270990792097355e-05 +illusion_0.75L,sr,72,14.4,omega,upper,-1.5336374084284464e-05 +illusion_0.75L,sr,72,14.4,omega,lower,-1.5336374084284464e-05 +illusion_0.75L,sr,73,14.6,omega,front,-1.0760062120770547e-05 +illusion_0.75L,sr,73,14.6,omega,upper,-6.917173218932496e-06 +illusion_0.75L,sr,73,14.6,omega,lower,-6.917173218932496e-06 +illusion_0.75L,sr,74,14.8,omega,front,-3.464968174647282e-05 +illusion_0.75L,sr,74,14.8,omega,upper,3.310273873024135e-06 +illusion_0.75L,sr,74,14.8,omega,lower,3.310273873024135e-06 +illusion_0.75L,sr,75,15.0,omega,front,-5.7146854643125995e-05 +illusion_0.75L,sr,75,15.0,omega,upper,1.3110477549137314e-05 +illusion_0.75L,sr,75,15.0,omega,lower,1.3110477549137314e-05 +illusion_0.75L,sr,76,15.2,omega,front,-7.733872593415805e-05 +illusion_0.75L,sr,76,15.2,omega,upper,2.196131866642845e-05 +illusion_0.75L,sr,76,15.2,omega,lower,2.196131866642845e-05 +illusion_0.75L,sr,77,15.4,omega,front,-9.852031335689516e-05 +illusion_0.75L,sr,77,15.4,omega,upper,3.2384234502846124e-05 +illusion_0.75L,sr,77,15.4,omega,lower,3.2384234502846124e-05 +illusion_0.75L,sr,78,15.6,omega,front,-0.00011975886536842034 +illusion_0.75L,sr,78,15.6,omega,upper,4.3790590615643414e-05 +illusion_0.75L,sr,78,15.6,omega,lower,4.3790590615643414e-05 +illusion_0.75L,sr,79,15.8,omega,front,-0.00013174492992569495 +illusion_0.75L,sr,79,15.8,omega,upper,4.9426441933900225e-05 +illusion_0.75L,sr,79,15.8,omega,lower,4.9426441933900225e-05 +illusion_0.75L,sr,80,16.0,omega,front,-0.00013558945205026165 +illusion_0.75L,sr,80,16.0,omega,upper,5.023911763106445e-05 +illusion_0.75L,sr,80,16.0,omega,lower,5.023911763106445e-05 +illusion_0.75L,sr,81,16.2,omega,front,-0.0001446156859746281 +illusion_0.75L,sr,81,16.2,omega,upper,5.60871292455576e-05 +illusion_0.75L,sr,81,16.2,omega,lower,5.60871292455576e-05 +illusion_0.75L,sr,82,16.4,omega,front,-0.00015138075860183245 +illusion_0.75L,sr,82,16.4,omega,upper,6.138721479269978e-05 +illusion_0.75L,sr,82,16.4,omega,lower,6.138721479269978e-05 +illusion_0.75L,sr,83,16.6,omega,front,-0.00014625476708605672 +illusion_0.75L,sr,83,16.6,omega,upper,5.916845698640955e-05 +illusion_0.75L,sr,83,16.6,omega,lower,5.916845698640955e-05 +illusion_0.75L,sr,84,16.8,omega,front,-0.00013177130174429135 +illusion_0.75L,sr,84,16.8,omega,upper,5.127468253736597e-05 +illusion_0.75L,sr,84,16.8,omega,lower,5.127468253736597e-05 +illusion_0.75L,sr,85,17.0,omega,front,-0.00012121328516415037 +illusion_0.75L,sr,85,17.0,omega,upper,4.738054839758872e-05 +illusion_0.75L,sr,85,17.0,omega,lower,4.738054839758872e-05 +illusion_0.75L,sr,86,17.2,omega,front,-0.0001073977200686567 +illusion_0.75L,sr,86,17.2,omega,upper,4.201609924998004e-05 +illusion_0.75L,sr,86,17.2,omega,lower,4.201609924998004e-05 +illusion_0.75L,sr,87,17.4,omega,front,-0.00010283499102812108 +illusion_0.75L,sr,87,17.4,omega,upper,4.4396050567596314e-05 +illusion_0.75L,sr,87,17.4,omega,lower,4.4396050567596314e-05 +illusion_0.75L,sr,88,17.6,omega,front,-8.326733198436188e-05 +illusion_0.75L,sr,88,17.6,omega,upper,3.6286503425271255e-05 +illusion_0.75L,sr,88,17.6,omega,lower,3.6286503425271255e-05 +illusion_0.75L,sr,89,17.8,omega,front,-5.6581528591641316e-05 +illusion_0.75L,sr,89,17.8,omega,upper,2.348742279449919e-05 +illusion_0.75L,sr,89,17.8,omega,lower,2.348742279449919e-05 +illusion_0.75L,sr,90,18.0,omega,front,-4.005610396513194e-05 +illusion_0.75L,sr,90,18.0,omega,upper,1.844224515245121e-05 +illusion_0.75L,sr,90,18.0,omega,lower,1.844224515245121e-05 +illusion_0.75L,sr,91,18.2,omega,front,-2.620504834875512e-05 +illusion_0.75L,sr,91,18.2,omega,upper,1.5441288970898144e-05 +illusion_0.75L,sr,91,18.2,omega,lower,1.5441288970898144e-05 +illusion_0.75L,sr,92,18.4,omega,front,-2.18114143359191e-06 +illusion_0.75L,sr,92,18.4,omega,upper,4.908315094079287e-06 +illusion_0.75L,sr,92,18.4,omega,lower,4.908315094079287e-06 +illusion_0.75L,sr,93,18.6,omega,front,2.6248941601209228e-05 +illusion_0.75L,sr,93,18.6,omega,upper,-9.038160486515914e-06 +illusion_0.75L,sr,93,18.6,omega,lower,-9.038160486515914e-06 +illusion_0.75L,sr,94,18.8,omega,front,4.534937476480511e-05 +illusion_0.75L,sr,94,18.8,omega,upper,-1.64751374532493e-05 +illusion_0.75L,sr,94,18.8,omega,lower,-1.64751374532493e-05 +illusion_0.75L,sr,95,19.0,omega,front,5.751258581696152e-05 +illusion_0.75L,sr,95,19.0,omega,upper,-1.9266091472883892e-05 +illusion_0.75L,sr,95,19.0,omega,lower,-1.9266091472883892e-05 +illusion_0.75L,sr,96,19.2,omega,front,7.736817740307981e-05 +illusion_0.75L,sr,96,19.2,omega,upper,-2.834888847170501e-05 +illusion_0.75L,sr,96,19.2,omega,lower,-2.834888847170501e-05 +illusion_0.75L,sr,97,19.4,omega,front,0.00010321907339632536 +illusion_0.75L,sr,97,19.4,omega,upper,-4.2500567466643645e-05 +illusion_0.75L,sr,97,19.4,omega,lower,-4.2500567466643645e-05 +illusion_0.75L,sr,98,19.6,omega,front,0.00011905228168391207 +illusion_0.75L,sr,98,19.6,omega,upper,-5.00387048271863e-05 +illusion_0.75L,sr,98,19.6,omega,lower,-5.00387048271863e-05 +illusion_0.75L,sr,99,19.8,omega,front,0.0001216037759043355 +illusion_0.75L,sr,99,19.8,omega,upper,-4.8724993409459616e-05 +illusion_0.75L,sr,99,19.8,omega,lower,-4.8724993409459616e-05 +illusion_0.75L,sr,100,20.0,omega,front,0.0001276683078607542 +illusion_0.75L,sr,100,20.0,omega,upper,-5.095586809103686e-05 +illusion_0.75L,sr,100,20.0,omega,lower,-5.095586809103686e-05 +illusion_0.75L,sr,101,20.2,omega,front,0.00014085372759283955 +illusion_0.75L,sr,101,20.2,omega,upper,-5.938743892810849e-05 +illusion_0.75L,sr,101,20.2,omega,lower,-5.938743892810849e-05 +illusion_0.75L,sr,102,20.4,omega,front,0.0001452740206034958 +illusion_0.75L,sr,102,20.4,omega,upper,-6.23780024082176e-05 +illusion_0.75L,sr,102,20.4,omega,lower,-6.23780024082176e-05 +illusion_0.75L,sr,103,20.6,omega,front,0.0001341969920568767 +illusion_0.75L,sr,103,20.6,omega,upper,-5.499331625459028e-05 +illusion_0.75L,sr,103,20.6,omega,lower,-5.499331625459028e-05 +illusion_0.75L,sr,104,20.8,omega,front,0.00012132632754061484 +illusion_0.75L,sr,104,20.8,omega,upper,-4.732180080717678e-05 +illusion_0.75L,sr,104,20.8,omega,lower,-4.732180080717678e-05 +illusion_0.75L,sr,105,21.0,omega,front,0.00011570863878442042 +illusion_0.75L,sr,105,21.0,omega,upper,-4.583154367237205e-05 +illusion_0.75L,sr,105,21.0,omega,lower,-4.583154367237205e-05 +illusion_0.75L,sr,106,21.2,omega,front,0.00010941534337997827 +illusion_0.75L,sr,106,21.2,omega,upper,-4.492355527960311e-05 +illusion_0.75L,sr,106,21.2,omega,lower,-4.492355527960311e-05 +illusion_0.75L,sr,107,21.4,omega,front,8.6563073812152e-05 +illusion_0.75L,sr,107,21.4,omega,upper,-3.2466215128668234e-05 +illusion_0.75L,sr,107,21.4,omega,lower,-3.2466215128668234e-05 +illusion_0.75L,sr,108,21.6,omega,front,6.519091222309661e-05 +illusion_0.75L,sr,108,21.6,omega,upper,-2.1846819465283913e-05 +illusion_0.75L,sr,108,21.6,omega,lower,-2.1846819465283913e-05 +illusion_0.75L,sr,109,21.8,omega,front,5.0836786111297936e-05 +illusion_0.75L,sr,109,21.8,omega,upper,-1.6852733518159662e-05 +illusion_0.75L,sr,109,21.8,omega,lower,-1.6852733518159662e-05 +illusion_0.75L,sr,110,22.0,omega,front,4.1098726024770345e-05 +illusion_0.75L,sr,110,22.0,omega,upper,-1.5601721334636762e-05 +illusion_0.75L,sr,110,22.0,omega,lower,-1.5601721334636762e-05 +illusion_0.75L,sr,111,22.2,omega,front,2.4995766491305722e-05 +illusion_0.75L,sr,111,22.2,omega,upper,-9.842330001653098e-06 +illusion_0.75L,sr,111,22.2,omega,lower,-9.842330001653098e-06 +illusion_0.75L,sr,112,22.4,omega,front,1.4389086237178058e-07 +illusion_0.75L,sr,112,22.4,omega,upper,2.3148311070214817e-06 +illusion_0.75L,sr,112,22.4,omega,lower,2.3148311070214817e-06 +illusion_0.75L,sr,113,22.6,omega,front,-2.1215804359754526e-05 +illusion_0.75L,sr,113,22.6,omega,upper,1.1961576359764346e-05 +illusion_0.75L,sr,113,22.6,omega,lower,1.1961576359764346e-05 +illusion_0.75L,sr,114,22.8,omega,front,-2.9527437667751217e-05 +illusion_0.75L,sr,114,22.8,omega,upper,1.2259118678982322e-05 +illusion_0.75L,sr,114,22.8,omega,lower,1.2259118678982322e-05 +illusion_0.75L,sr,115,23.0,omega,front,-3.702248307061076e-05 +illusion_0.75L,sr,115,23.0,omega,upper,1.2333846378102705e-05 +illusion_0.75L,sr,115,23.0,omega,lower,1.2333846378102705e-05 +illusion_0.75L,sr,116,23.2,omega,front,-5.670690595754646e-05 +illusion_0.75L,sr,116,23.2,omega,upper,2.1844857686111365e-05 +illusion_0.75L,sr,116,23.2,omega,lower,2.1844857686111365e-05 +illusion_0.75L,sr,117,23.4,omega,front,-7.992971268409262e-05 +illusion_0.75L,sr,117,23.4,omega,upper,3.4478559841732425e-05 +illusion_0.75L,sr,117,23.4,omega,lower,3.4478559841732425e-05 +illusion_0.75L,sr,118,23.6,omega,front,-9.17804832774221e-05 +illusion_0.75L,sr,118,23.6,omega,upper,3.936771074697025e-05 +illusion_0.75L,sr,118,23.6,omega,lower,3.936771074697025e-05 +illusion_0.75L,sr,119,23.8,omega,front,-9.255805044073016e-05 +illusion_0.75L,sr,119,23.8,omega,upper,3.6841616844946536e-05 +illusion_0.75L,sr,119,23.8,omega,lower,3.6841616844946536e-05 +illusion_0.75L,sr,120,24.0,omega,front,-9.601492014503027e-05 +illusion_0.75L,sr,120,24.0,omega,upper,3.697361328490141e-05 +illusion_0.75L,sr,120,24.0,omega,lower,3.697361328490141e-05 +illusion_0.75L,sr,121,24.2,omega,front,-0.00010546117967472582 +illusion_0.75L,sr,121,24.2,omega,upper,4.251343920262746e-05 +illusion_0.75L,sr,121,24.2,omega,lower,4.251343920262746e-05 +illusion_0.75L,sr,122,24.4,omega,front,-0.0001103716424257066 +illusion_0.75L,sr,122,24.4,omega,upper,4.547658118338654e-05 +illusion_0.75L,sr,122,24.4,omega,lower,4.547658118338654e-05 +illusion_0.75L,sr,123,24.6,omega,front,-9.592885719096451e-05 +illusion_0.75L,sr,123,24.6,omega,upper,3.504950481068123e-05 +illusion_0.75L,sr,123,24.6,omega,lower,3.504950481068123e-05 +illusion_0.75L,sr,124,24.8,omega,front,-9.038521774585556e-05 +illusion_0.75L,sr,124,24.8,omega,upper,3.2167048001885275e-05 +illusion_0.75L,sr,124,24.8,omega,lower,3.2167048001885275e-05 +illusion_0.75L,sr,125,25.0,omega,front,-8.702499924577258e-05 +illusion_0.75L,sr,125,25.0,omega,upper,3.161539504427206e-05 +illusion_0.75L,sr,125,25.0,omega,lower,3.161539504427206e-05 +illusion_0.75L,sr,126,25.2,omega,front,-8.171742105144952e-05 +illusion_0.75L,sr,126,25.2,omega,upper,3.044166766322104e-05 +illusion_0.75L,sr,126,25.2,omega,lower,3.044166766322104e-05 +illusion_0.75L,sr,127,25.4,omega,front,-6.933403971152816e-05 +illusion_0.75L,sr,127,25.4,omega,upper,2.468356763483316e-05 +illusion_0.75L,sr,127,25.4,omega,lower,2.468356763483316e-05 +illusion_0.75L,sr,128,25.6,omega,front,-4.929675151653719e-05 +illusion_0.75L,sr,128,25.6,omega,upper,1.4029497065629268e-05 +illusion_0.75L,sr,128,25.6,omega,lower,1.4029497065629268e-05 +illusion_0.75L,sr,129,25.8,omega,front,-3.457167385161362e-05 +illusion_0.75L,sr,129,25.8,omega,upper,7.76312250561472e-06 +illusion_0.75L,sr,129,25.8,omega,lower,7.76312250561472e-06 +illusion_0.75L,sr,130,26.0,omega,front,-2.9905772150979616e-05 +illusion_0.75L,sr,130,26.0,omega,upper,9.271711256851594e-06 +illusion_0.75L,sr,130,26.0,omega,lower,9.271711256851594e-06 +illusion_0.75L,sr,131,26.2,omega,front,-2.366023349275043e-05 +illusion_0.75L,sr,131,26.2,omega,upper,9.819958307260325e-06 +illusion_0.75L,sr,131,26.2,omega,lower,9.819958307260325e-06 +illusion_0.75L,sr,132,26.4,omega,front,-6.834072992966023e-06 +illusion_0.75L,sr,132,26.4,omega,upper,2.6678143857311598e-06 +illusion_0.75L,sr,132,26.4,omega,lower,2.6678143857311598e-06 +illusion_0.75L,sr,133,26.6,omega,front,1.2697405673109753e-05 +illusion_0.75L,sr,133,26.6,omega,upper,-6.468097464822913e-06 +illusion_0.75L,sr,133,26.6,omega,lower,-6.468097464822913e-06 +illusion_0.75L,sr,134,26.8,omega,front,2.3522419925690492e-05 +illusion_0.75L,sr,134,26.8,omega,upper,-9.329199236941098e-06 +illusion_0.75L,sr,134,26.8,omega,lower,-9.329199236941098e-06 +illusion_0.75L,sr,135,27.0,omega,front,2.7131007129889176e-05 +illusion_0.75L,sr,135,27.0,omega,upper,-7.1395512208939635e-06 +illusion_0.75L,sr,135,27.0,omega,lower,-7.1395512208939635e-06 +illusion_0.75L,sr,136,27.2,omega,front,3.8430374940586624e-05 +illusion_0.75L,sr,136,27.2,omega,upper,-1.0967310028743502e-05 +illusion_0.75L,sr,136,27.2,omega,lower,-1.0967310028743502e-05 +illusion_0.75L,sr,137,27.4,omega,front,5.692818089938753e-05 +illusion_0.75L,sr,137,27.4,omega,upper,-2.0489625867583657e-05 +illusion_0.75L,sr,137,27.4,omega,lower,-2.0489625867583657e-05 +illusion_0.75L,sr,138,27.6,omega,front,6.84894027113999e-05 +illusion_0.75L,sr,138,27.6,omega,upper,-2.5408071535291675e-05 +illusion_0.75L,sr,138,27.6,omega,lower,-2.5408071535291675e-05 +illusion_0.75L,sr,139,27.8,omega,front,6.748753285132914e-05 +illusion_0.75L,sr,139,27.8,omega,upper,-2.1658021151766612e-05 +illusion_0.75L,sr,139,27.8,omega,lower,-2.1658021151766612e-05 +illusion_0.75L,sr,140,28.0,omega,front,6.6424323355396e-05 +illusion_0.75L,sr,140,28.0,omega,upper,-1.8562734552062672e-05 +illusion_0.75L,sr,140,28.0,omega,lower,-1.8562734552062672e-05 +illusion_0.75L,sr,141,28.2,omega,front,7.417960101149652e-05 +illusion_0.75L,sr,141,28.2,omega,upper,-2.2644702500011215e-05 +illusion_0.75L,sr,141,28.2,omega,lower,-2.2644702500011215e-05 +illusion_0.75L,sr,142,28.4,omega,front,8.147835303145584e-05 +illusion_0.75L,sr,142,28.4,omega,upper,-2.7149122322675037e-05 +illusion_0.75L,sr,142,28.4,omega,lower,-2.7149122322675037e-05 +illusion_0.75L,sr,143,28.6,omega,front,7.514457096903855e-05 +illusion_0.75L,sr,143,28.6,omega,upper,-2.235770133691549e-05 +illusion_0.75L,sr,143,28.6,omega,lower,-2.235770133691549e-05 +illusion_0.75L,sr,144,28.8,omega,front,6.252889698359735e-05 +illusion_0.75L,sr,144,28.8,omega,upper,-1.3793612129897673e-05 +illusion_0.75L,sr,144,28.8,omega,lower,-1.3793612129897673e-05 +illusion_0.75L,sr,145,29.0,omega,front,6.159922865075322e-05 +illusion_0.75L,sr,145,29.0,omega,upper,-1.4587261571492247e-05 +illusion_0.75L,sr,145,29.0,omega,lower,-1.4587261571492247e-05 +illusion_0.75L,sr,146,29.2,omega,front,6.657496935943024e-05 +illusion_0.75L,sr,146,29.2,omega,upper,-2.040846798747879e-05 +illusion_0.75L,sr,146,29.2,omega,lower,-2.040846798747879e-05 +illusion_0.75L,sr,147,29.4,omega,front,5.958152313910628e-05 +illusion_0.75L,sr,147,29.4,omega,upper,-1.8069933205474287e-05 +illusion_0.75L,sr,147,29.4,omega,lower,-1.8069933205474287e-05 +illusion_0.75L,sr,148,29.6,omega,front,4.335840595833723e-05 +illusion_0.75L,sr,148,29.6,omega,upper,-9.532923908873899e-06 +illusion_0.75L,sr,148,29.6,omega,lower,-9.532923908873899e-06 +illusion_0.75L,sr,149,29.8,omega,front,3.443376250713358e-05 +illusion_0.75L,sr,149,29.8,omega,upper,-6.846172496751783e-06 +illusion_0.75L,sr,149,29.8,omega,lower,-6.846172496751783e-06 +illusion_0.75L,sr,150,30.0,omega,front,3.3775785623410755e-05 +illusion_0.75L,sr,150,30.0,omega,upper,-1.0580366834919836e-05 +illusion_0.75L,sr,150,30.0,omega,lower,-1.0580366834919836e-05 +illusion_0.75L,sr,151,30.2,omega,front,2.8082146731480268e-05 +illusion_0.75L,sr,151,30.2,omega,upper,-1.0898162467028928e-05 +illusion_0.75L,sr,151,30.2,omega,lower,-1.0898162467028928e-05 +illusion_0.75L,sr,152,30.4,omega,front,1.2068034378034874e-05 +illusion_0.75L,sr,152,30.4,omega,upper,-3.7792164589331e-06 +illusion_0.75L,sr,152,30.4,omega,lower,-3.7792164589331e-06 +illusion_0.75L,sr,153,30.6,omega,front,-1.6728074633799197e-06 +illusion_0.75L,sr,153,30.6,omega,upper,1.6063581408308357e-06 +illusion_0.75L,sr,153,30.6,omega,lower,1.6063581408308357e-06 +illusion_0.75L,sr,154,30.8,omega,front,-3.879499221827731e-06 +illusion_0.75L,sr,154,30.8,omega,upper,-1.4224077225188926e-06 +illusion_0.75L,sr,154,30.8,omega,lower,-1.4224077225188926e-06 +illusion_0.75L,sr,155,31.0,omega,front,-6.2372316993788635e-06 +illusion_0.75L,sr,155,31.0,omega,upper,-4.153462072215165e-06 +illusion_0.75L,sr,155,31.0,omega,lower,-4.153462072215165e-06 +illusion_0.75L,sr,156,31.2,omega,front,-2.0446972836843936e-05 +illusion_0.75L,sr,156,31.2,omega,upper,2.096947814599348e-06 +illusion_0.75L,sr,156,31.2,omega,lower,2.096947814599348e-06 +illusion_0.75L,sr,157,31.4,omega,front,-3.6381322485716275e-05 +illusion_0.75L,sr,157,31.4,omega,upper,9.922551909643806e-06 +illusion_0.75L,sr,157,31.4,omega,lower,9.922551909643806e-06 +illusion_0.75L,sr,158,31.6,omega,front,-4.0097005949323444e-05 +illusion_0.75L,sr,158,31.6,omega,upper,9.184906501768058e-06 +illusion_0.75L,sr,158,31.6,omega,lower,9.184906501768058e-06 +illusion_0.75L,sr,159,31.8,omega,front,-3.888766399224877e-05 +illusion_0.75L,sr,159,31.8,omega,upper,5.3331935999540244e-06 +illusion_0.75L,sr,159,31.8,omega,lower,5.3331935999540244e-06 +illusion_0.75L,sr,160,32.0,omega,front,-4.642086983064862e-05 +illusion_0.75L,sr,160,32.0,omega,upper,8.471806987243037e-06 +illusion_0.75L,sr,160,32.0,omega,lower,8.471806987243037e-06 +illusion_0.75L,sr,161,32.2,omega,front,-5.972474777402988e-05 +illusion_0.75L,sr,161,32.2,omega,upper,1.6438533819704075e-05 +illusion_0.75L,sr,161,32.2,omega,lower,1.6438533819704075e-05 +illusion_0.75L,sr,162,32.4,omega,front,-6.280620346897428e-05 +illusion_0.75L,sr,162,32.4,omega,upper,1.7532288290693642e-05 +illusion_0.75L,sr,162,32.4,omega,lower,1.7532288290693642e-05 +illusion_0.75L,sr,163,32.6,omega,front,-5.677570560007568e-05 +illusion_0.75L,sr,163,32.6,omega,upper,1.2603738756167965e-05 +illusion_0.75L,sr,163,32.6,omega,lower,1.2603738756167965e-05 +illusion_0.75L,sr,164,32.8,omega,front,-5.618031503331802e-05 +illusion_0.75L,sr,164,32.8,omega,upper,1.2381105318537144e-05 +illusion_0.75L,sr,164,32.8,omega,lower,1.2381105318537144e-05 +illusion_0.75L,sr,165,33.0,omega,front,-6.345822733140938e-05 +illusion_0.75L,sr,165,33.0,omega,upper,1.8607510088154214e-05 +illusion_0.75L,sr,165,33.0,omega,lower,1.8607510088154214e-05 +illusion_0.75L,sr,166,33.2,omega,front,-6.571032397324941e-05 +illusion_0.75L,sr,166,33.2,omega,upper,2.1707255312406264e-05 +illusion_0.75L,sr,166,33.2,omega,lower,2.1707255312406264e-05 +illusion_0.75L,sr,167,33.4,omega,front,-5.585086410047027e-05 +illusion_0.75L,sr,167,33.4,omega,upper,1.663307928583085e-05 +illusion_0.75L,sr,167,33.4,omega,lower,1.663307928583085e-05 +illusion_0.75L,sr,168,33.6,omega,front,-4.7490706764693815e-05 +illusion_0.75L,sr,168,33.6,omega,upper,1.3179483606502487e-05 +illusion_0.75L,sr,168,33.6,omega,lower,1.3179483606502487e-05 +illusion_0.75L,sr,169,33.8,omega,front,-4.842984812673975e-05 +illusion_0.75L,sr,169,33.8,omega,upper,1.700621529307566e-05 +illusion_0.75L,sr,169,33.8,omega,lower,1.700621529307566e-05 +illusion_0.75L,sr,170,34.0,omega,front,-4.8580208865965124e-05 +illusion_0.75L,sr,170,34.0,omega,upper,2.0635938725688045e-05 +illusion_0.75L,sr,170,34.0,omega,lower,2.0635938725688045e-05 +illusion_0.75L,sr,171,34.2,omega,front,-3.6457069410127806e-05 +illusion_0.75L,sr,171,34.2,omega,upper,1.5526108801513453e-05 +illusion_0.75L,sr,171,34.2,omega,lower,1.5526108801513453e-05 +illusion_0.75L,sr,172,34.4,omega,front,-2.4743592335490973e-05 +illusion_0.75L,sr,172,34.4,omega,upper,1.0966629011851507e-05 +illusion_0.75L,sr,172,34.4,omega,lower,1.0966629011851507e-05 +illusion_0.75L,sr,173,34.6,omega,front,-1.9881334998668167e-05 +illusion_0.75L,sr,173,34.6,omega,upper,1.1536019724607177e-05 +illusion_0.75L,sr,173,34.6,omega,lower,1.1536019724607177e-05 +illusion_0.75L,sr,174,34.8,omega,front,-1.6189007248259983e-05 +illusion_0.75L,sr,174,34.8,omega,upper,1.299543351728494e-05 +illusion_0.75L,sr,174,34.8,omega,lower,1.299543351728494e-05 +illusion_0.75L,sr,175,35.0,omega,front,-6.0600889688678e-06 +illusion_0.75L,sr,175,35.0,omega,upper,9.647409732265372e-06 +illusion_0.75L,sr,175,35.0,omega,lower,9.647409732265372e-06 +illusion_0.75L,sr,176,35.2,omega,front,8.818315712061064e-06 +illusion_0.75L,sr,176,35.2,omega,upper,2.683224180378505e-06 +illusion_0.75L,sr,176,35.2,omega,lower,2.683224180378505e-06 +illusion_0.75L,sr,177,35.4,omega,front,1.9380842112984055e-05 +illusion_0.75L,sr,177,35.4,omega,upper,-1.376768158130176e-06 +illusion_0.75L,sr,177,35.4,omega,lower,-1.376768158130176e-06 +illusion_0.75L,sr,178,35.6,omega,front,2.475199888132579e-05 +illusion_0.75L,sr,178,35.6,omega,upper,-1.898638230265308e-06 +illusion_0.75L,sr,178,35.6,omega,lower,-1.898638230265308e-06 +illusion_0.75L,sr,179,35.8,omega,front,3.2165241700753136e-05 +illusion_0.75L,sr,179,35.8,omega,upper,-4.3021258421581735e-06 +illusion_0.75L,sr,179,35.8,omega,lower,-4.3021258421581735e-06 +illusion_0.75L,sr,180,36.0,omega,front,4.3622201274928985e-05 +illusion_0.75L,sr,180,36.0,omega,upper,-1.0107617982664206e-05 +illusion_0.75L,sr,180,36.0,omega,lower,-1.0107617982664206e-05 +illusion_0.75L,sr,181,36.2,omega,front,5.160879287881358e-05 +illusion_0.75L,sr,181,36.2,omega,upper,-1.3847456293850924e-05 +illusion_0.75L,sr,181,36.2,omega,lower,-1.3847456293850924e-05 +illusion_0.75L,sr,182,36.4,omega,front,5.505936982720686e-05 +illusion_0.75L,sr,182,36.4,omega,upper,-1.479739011901203e-05 +illusion_0.75L,sr,182,36.4,omega,lower,-1.479739011901203e-05 +illusion_0.75L,sr,183,36.6,omega,front,5.695856723266141e-05 +illusion_0.75L,sr,183,36.6,omega,upper,-1.5160535615070109e-05 +illusion_0.75L,sr,183,36.6,omega,lower,-1.5160535615070109e-05 +illusion_0.75L,sr,184,36.8,omega,front,6.270041419667805e-05 +illusion_0.75L,sr,184,36.8,omega,upper,-1.9002186820806094e-05 +illusion_0.75L,sr,184,36.8,omega,lower,-1.9002186820806094e-05 +illusion_0.75L,sr,185,37.0,omega,front,6.47242565984147e-05 +illusion_0.75L,sr,185,37.0,omega,upper,-2.0698467977091975e-05 +illusion_0.75L,sr,185,37.0,omega,lower,-2.0698467977091975e-05 +illusion_0.75L,sr,186,37.2,omega,front,6.236883938212514e-05 +illusion_0.75L,sr,186,37.2,omega,upper,-1.9798552516924125e-05 +illusion_0.75L,sr,186,37.2,omega,lower,-1.9798552516924125e-05 +illusion_0.75L,sr,187,37.4,omega,front,5.9973651089077485e-05 +illusion_0.75L,sr,187,37.4,omega,upper,-1.9462154158933243e-05 +illusion_0.75L,sr,187,37.4,omega,lower,-1.9462154158933243e-05 +illusion_0.75L,sr,188,37.6,omega,front,5.74586000527344e-05 +illusion_0.75L,sr,188,37.6,omega,upper,-1.9597623758325805e-05 +illusion_0.75L,sr,188,37.6,omega,lower,-1.9597623758325805e-05 +illusion_0.75L,sr,189,37.8,omega,front,5.2740557302596303e-05 +illusion_0.75L,sr,189,37.8,omega,upper,-1.8616756118224712e-05 +illusion_0.75L,sr,189,37.8,omega,lower,-1.8616756118224712e-05 +illusion_0.75L,sr,190,38.0,omega,front,4.603125242624569e-05 +illusion_0.75L,sr,190,38.0,omega,upper,-1.662493287617306e-05 +illusion_0.75L,sr,190,38.0,omega,lower,-1.662493287617306e-05 +illusion_0.75L,sr,191,38.2,omega,front,4.383453790319583e-05 +illusion_0.75L,sr,191,38.2,omega,upper,-1.832673735729467e-05 +illusion_0.75L,sr,191,38.2,omega,lower,-1.832673735729467e-05 +illusion_0.75L,sr,192,38.4,omega,front,4.06922502258298e-05 +illusion_0.75L,sr,192,38.4,omega,upper,-1.9561023935476473e-05 +illusion_0.75L,sr,192,38.4,omega,lower,-1.9561023935476473e-05 +illusion_0.75L,sr,193,38.6,omega,front,3.2139324113685026e-05 +illusion_0.75L,sr,193,38.6,omega,upper,-1.6997448243188654e-05 +illusion_0.75L,sr,193,38.6,omega,lower,-1.6997448243188654e-05 +illusion_0.75L,sr,194,38.8,omega,front,2.4504106378909182e-05 +illusion_0.75L,sr,194,38.8,omega,upper,-1.5380932689134227e-05 +illusion_0.75L,sr,194,38.8,omega,lower,-1.5380932689134227e-05 +illusion_0.75L,sr,195,39.0,omega,front,1.892238257490464e-05 +illusion_0.75L,sr,195,39.0,omega,upper,-1.4996334222878203e-05 +illusion_0.75L,sr,195,39.0,omega,lower,-1.4996334222878203e-05 +illusion_0.75L,sr,196,39.2,omega,front,1.2317328998432981e-05 +illusion_0.75L,sr,196,39.2,omega,upper,-1.3884849038660348e-05 +illusion_0.75L,sr,196,39.2,omega,lower,-1.3884849038660348e-05 +illusion_0.75L,sr,197,39.4,omega,front,2.4406641125081575e-06 +illusion_0.75L,sr,197,39.4,omega,upper,-1.0218257897023301e-05 +illusion_0.75L,sr,197,39.4,omega,lower,-1.0218257897023301e-05 +illusion_0.75L,sr,198,39.6,omega,front,-8.508056797537599e-06 +illusion_0.75L,sr,198,39.6,omega,upper,-5.532725220607337e-06 +illusion_0.75L,sr,198,39.6,omega,lower,-5.532725220607337e-06 +illusion_0.75L,sr,199,39.8,omega,front,-1.6779907349253227e-05 +illusion_0.75L,sr,199,39.8,omega,upper,-2.516777406600737e-06 +illusion_0.75L,sr,199,39.8,omega,lower,-2.516777406600737e-06 +illusion_0.75L,sr,0,0.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,sr,0,0.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,sr,1,0.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,sr,1,0.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,sr,2,0.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,sr,2,0.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,sr,3,0.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,sr,3,0.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,sr,4,0.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,sr,4,0.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,sr,5,1.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,sr,5,1.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,sr,6,1.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,sr,6,1.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,sr,7,1.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,sr,7,1.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,sr,8,1.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,sr,8,1.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,sr,9,1.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,sr,9,1.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,sr,10,2.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,sr,10,2.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,sr,11,2.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,sr,11,2.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,sr,12,2.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,sr,12,2.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,sr,13,2.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,sr,13,2.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,sr,14,2.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,sr,14,2.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,sr,15,3.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,sr,15,3.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,sr,16,3.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,sr,16,3.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,sr,17,3.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,sr,17,3.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,sr,18,3.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,sr,18,3.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,sr,19,3.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,sr,19,3.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,sr,20,4.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,sr,20,4.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,sr,21,4.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,sr,21,4.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,sr,22,4.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,sr,22,4.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,sr,23,4.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,sr,23,4.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,sr,24,4.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,sr,24,4.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,sr,25,5.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,sr,25,5.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,sr,26,5.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,sr,26,5.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,sr,27,5.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,sr,27,5.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,sr,28,5.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,sr,28,5.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,sr,29,5.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,sr,29,5.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,sr,30,6.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,sr,30,6.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,sr,31,6.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,sr,31,6.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,sr,32,6.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,sr,32,6.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,sr,33,6.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,sr,33,6.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,sr,34,6.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,sr,34,6.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,sr,35,7.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,sr,35,7.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,sr,36,7.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,sr,36,7.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,sr,37,7.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,sr,37,7.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,sr,38,7.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,sr,38,7.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,sr,39,7.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,sr,39,7.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,sr,40,8.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,sr,40,8.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,sr,41,8.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,sr,41,8.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,sr,42,8.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,sr,42,8.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,sr,43,8.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,sr,43,8.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,sr,44,8.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,sr,44,8.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,sr,45,9.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,sr,45,9.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,sr,46,9.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,sr,46,9.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,sr,47,9.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,sr,47,9.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,sr,48,9.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,sr,48,9.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,sr,49,9.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,sr,49,9.8,target_force,target_cl,-0.0010948515264317393 +illusion_0.75L,sr,50,10.0,target_force,target_cd,0.004296126775443554 +illusion_0.75L,sr,50,10.0,target_force,target_cl,-0.0011591494549065828 +illusion_0.75L,sr,51,10.2,target_force,target_cd,0.0043031927198171616 +illusion_0.75L,sr,51,10.2,target_force,target_cl,-0.0011722566559910774 +illusion_0.75L,sr,52,10.4,target_force,target_cd,0.00431835139170289 +illusion_0.75L,sr,52,10.4,target_force,target_cl,-0.001134056132286787 +illusion_0.75L,sr,53,10.6,target_force,target_cd,0.004336398560553789 +illusion_0.75L,sr,53,10.6,target_force,target_cl,-0.0010466892272233963 +illusion_0.75L,sr,54,10.8,target_force,target_cd,0.004345819354057312 +illusion_0.75L,sr,54,10.8,target_force,target_cl,-0.0009142835042439401 +illusion_0.75L,sr,55,11.0,target_force,target_cd,0.004339585080742836 +illusion_0.75L,sr,55,11.0,target_force,target_cl,-0.0007426568772643805 +illusion_0.75L,sr,56,11.2,target_force,target_cd,0.004321560729295015 +illusion_0.75L,sr,56,11.2,target_force,target_cl,-0.0005390531150624156 +illusion_0.75L,sr,57,11.4,target_force,target_cd,0.004301773849874735 +illusion_0.75L,sr,57,11.4,target_force,target_cl,-0.000311925308778882 +illusion_0.75L,sr,58,11.6,target_force,target_cd,0.004286319483071566 +illusion_0.75L,sr,58,11.6,target_force,target_cl,-7.073696906445548e-05 +illusion_0.75L,sr,59,11.8,target_force,target_cd,0.004273382015526295 +illusion_0.75L,sr,59,11.8,target_force,target_cl,0.00017427514831069857 +illusion_0.75L,sr,60,12.0,target_force,target_cd,0.004259394947439432 +illusion_0.75L,sr,60,12.0,target_force,target_cl,0.0004124342813156545 +illusion_0.75L,sr,61,12.2,target_force,target_cd,0.004247340373694897 +illusion_0.75L,sr,61,12.2,target_force,target_cl,0.000633081654086709 +illusion_0.75L,sr,62,12.4,target_force,target_cd,0.004246612079441547 +illusion_0.75L,sr,62,12.4,target_force,target_cl,0.0008261421462520957 +illusion_0.75L,sr,63,12.6,target_force,target_cd,0.004263712093234062 +illusion_0.75L,sr,63,12.6,target_force,target_cl,0.0009827353060245514 +illusion_0.75L,sr,64,12.8,target_force,target_cd,0.0042939698323607445 +illusion_0.75L,sr,64,12.8,target_force,target_cl,0.0010957379126921296 +illusion_0.75L,sr,65,13.0,target_force,target_cd,0.004323890432715416 +illusion_0.75L,sr,65,13.0,target_force,target_cl,0.001160208135843277 +illusion_0.75L,sr,66,13.2,target_force,target_cd,0.004342077765613794 +illusion_0.75L,sr,66,13.2,target_force,target_cl,0.0011736078886315227 +illusion_0.75L,sr,67,13.4,target_force,target_cd,0.004347268491983414 +illusion_0.75L,sr,67,13.4,target_force,target_cl,0.0011358100455254316 +illusion_0.75L,sr,68,13.6,target_force,target_cd,0.004345463588833809 +illusion_0.75L,sr,68,13.6,target_force,target_cl,0.0010489318519830704 +illusion_0.75L,sr,69,13.8,target_force,target_cd,0.004340487066656351 +illusion_0.75L,sr,69,13.8,target_force,target_cl,0.0009170636185444891 +illusion_0.75L,sr,70,14.0,target_force,target_cd,0.004329410847276449 +illusion_0.75L,sr,70,14.0,target_force,target_cl,0.0007459750631824136 +illusion_0.75L,sr,71,14.2,target_force,target_cd,0.004308085888624191 +illusion_0.75L,sr,71,14.2,target_force,target_cl,0.000542854773811996 +illusion_0.75L,sr,72,14.4,target_force,target_cd,0.0042798398062586784 +illusion_0.75L,sr,72,14.4,target_force,target_cl,0.000316097226459533 +illusion_0.75L,sr,73,14.6,target_force,target_cd,0.004256341140717268 +illusion_0.75L,sr,73,14.6,target_force,target_cl,7.510853174608201e-05 +illusion_0.75L,sr,74,14.8,target_force,target_cd,0.004248499870300293 +illusion_0.75L,sr,74,14.8,target_force,target_cl,-0.00016992665769066662 +illusion_0.75L,sr,75,15.0,target_force,target_cd,0.00425688037648797 +illusion_0.75L,sr,75,15.0,target_force,target_cl,-0.0004083740059286356 +illusion_0.75L,sr,76,15.2,target_force,target_cd,0.004272068850696087 +illusion_0.75L,sr,76,15.2,target_force,target_cl,-0.0006296037463471293 +illusion_0.75L,sr,77,15.4,target_force,target_cd,0.004284536466002464 +illusion_0.75L,sr,77,15.4,target_force,target_cl,-0.0008235537097789347 +illusion_0.75L,sr,78,15.6,target_force,target_cd,0.004293113015592098 +illusion_0.75L,sr,78,15.6,target_force,target_cl,-0.000981337740086019 +illusion_0.75L,sr,79,15.8,target_force,target_cd,0.004303110297769308 +illusion_0.75L,sr,79,15.8,target_force,target_cl,-0.001095808343961835 +illusion_0.75L,sr,80,16.0,target_force,target_cd,0.004317091777920723 +illusion_0.75L,sr,80,16.0,target_force,target_cl,-0.0011619804427027702 +illusion_0.75L,sr,81,16.2,target_force,target_cd,0.0043295822106301785 +illusion_0.75L,sr,81,16.2,target_force,target_cl,-0.0011772552970796824 +illusion_0.75L,sr,82,16.4,target_force,target_cd,0.004332154523581266 +illusion_0.75L,sr,82,16.4,target_force,target_cl,-0.0011414313921704888 +illusion_0.75L,sr,83,16.6,target_force,target_cd,0.004323046654462814 +illusion_0.75L,sr,83,16.6,target_force,target_cl,-0.0010565404081717134 +illusion_0.75L,sr,84,16.8,target_force,target_cd,0.004309957846999168 +illusion_0.75L,sr,84,16.8,target_force,target_cl,-0.0009265808621421456 +illusion_0.75L,sr,85,17.0,target_force,target_cd,0.0043023559264838696 +illusion_0.75L,sr,85,17.0,target_force,target_cl,-0.0007572299218736589 +illusion_0.75L,sr,86,17.2,target_force,target_cd,0.0043017142452299595 +illusion_0.75L,sr,86,17.2,target_force,target_cl,-0.0005555875250138342 +illusion_0.75L,sr,87,17.4,target_force,target_cd,0.004300643689930439 +illusion_0.75L,sr,87,17.4,target_force,target_cl,-0.0003299686941318214 +illusion_0.75L,sr,88,17.6,target_force,target_cd,0.00429190369322896 +illusion_0.75L,sr,88,17.6,target_force,target_cl,-8.971420174930245e-05 +illusion_0.75L,sr,89,17.8,target_force,target_cd,0.004277124535292387 +illusion_0.75L,sr,89,17.8,target_force,target_cl,0.00015503856411669403 +illusion_0.75L,sr,90,18.0,target_force,target_cd,0.004265474621206522 +illusion_0.75L,sr,90,18.0,target_force,target_cl,0.00039368137368001044 +illusion_0.75L,sr,91,18.2,target_force,target_cd,0.004263981245458126 +illusion_0.75L,sr,91,18.2,target_force,target_cl,0.0006155874580144882 +illusion_0.75L,sr,92,18.4,target_force,target_cd,0.004270609002560377 +illusion_0.75L,sr,92,18.4,target_force,target_cl,0.0008106737514026463 +illusion_0.75L,sr,93,18.6,target_force,target_cd,0.00427780719473958 +illusion_0.75L,sr,93,18.6,target_force,target_cl,0.0009700104128569365 +illusion_0.75L,sr,94,18.8,target_force,target_cd,0.004282041918486357 +illusion_0.75L,sr,94,18.8,target_force,target_cl,0.00108638487290591 +illusion_0.75L,sr,95,19.0,target_force,target_cd,0.004287917632609606 +illusion_0.75L,sr,95,19.0,target_force,target_cl,0.001154729281552136 +illusion_0.75L,sr,96,19.2,target_force,target_cd,0.004301857203245163 +illusion_0.75L,sr,96,19.2,target_force,target_cl,0.0011723487405106425 +illusion_0.75L,sr,97,19.4,target_force,target_cd,0.004322571214288473 +illusion_0.75L,sr,97,19.4,target_force,target_cl,0.0011389366118237376 +illusion_0.75L,sr,98,19.6,target_force,target_cd,0.0043395934626460075 +illusion_0.75L,sr,98,19.6,target_force,target_cl,0.0010564166586846113 +illusion_0.75L,sr,99,19.8,target_force,target_cd,0.004342196509242058 +illusion_0.75L,sr,99,19.8,target_force,target_cl,0.0009286822751164436 +illusion_0.75L,sr,100,20.0,target_force,target_cd,0.004329230170696974 +illusion_0.75L,sr,100,20.0,target_force,target_cl,0.0007613134803250432 +illusion_0.75L,sr,101,20.2,target_force,target_cd,0.0043093012645840645 +illusion_0.75L,sr,101,20.2,target_force,target_cl,0.0005613267421722412 +illusion_0.75L,sr,102,20.4,target_force,target_cd,0.004291526973247528 +illusion_0.75L,sr,102,20.4,target_force,target_cl,0.0003369711630512029 +illusion_0.75L,sr,103,20.6,target_force,target_cd,0.004277484491467476 +illusion_0.75L,sr,103,20.6,target_force,target_cl,9.754252096172422e-05 +illusion_0.75L,sr,104,20.8,target_force,target_cd,0.0042631374672055244 +illusion_0.75L,sr,104,20.8,target_force,target_cl,-0.00014684362395200878 +illusion_0.75L,sr,105,21.0,target_force,target_cd,0.004247708711773157 +illusion_0.75L,sr,105,21.0,target_force,target_cl,-0.0003855770919471979 +illusion_0.75L,sr,106,21.2,target_force,target_cd,0.004238303285092115 +illusion_0.75L,sr,106,21.2,target_force,target_cl,-0.0006080058519728482 +illusion_0.75L,sr,107,21.4,target_force,target_cd,0.004244087729603052 +illusion_0.75L,sr,107,21.4,target_force,target_cl,-0.0008040002430789173 +illusion_0.75L,sr,108,21.6,target_force,target_cd,0.004266131203621626 +illusion_0.75L,sr,108,21.6,target_force,target_cl,-0.0009645655518397689 +illusion_0.75L,sr,109,21.8,target_force,target_cd,0.00429448951035738 +illusion_0.75L,sr,109,21.8,target_force,target_cl,-0.0010824102209880948 +illusion_0.75L,sr,110,22.0,target_force,target_cd,0.0043162815272808075 +illusion_0.75L,sr,110,22.0,target_force,target_cl,-0.0011523779248818755 +illusion_0.75L,sr,111,22.2,target_force,target_cd,0.004326277878135443 +illusion_0.75L,sr,111,22.2,target_force,target_cl,-0.0011716809822246432 +illusion_0.75L,sr,112,22.4,target_force,target_cd,0.004328808281570673 +illusion_0.75L,sr,112,22.4,target_force,target_cl,-0.0011399217182770371 +illusion_0.75L,sr,113,22.6,target_force,target_cd,0.0043297018855810165 +illusion_0.75L,sr,113,22.6,target_force,target_cl,-0.0010589387966319919 +illusion_0.75L,sr,114,22.8,target_force,target_cd,0.0043281326070427895 +illusion_0.75L,sr,114,22.8,target_force,target_cl,-0.0009325520950369537 +illusion_0.75L,sr,115,23.0,target_force,target_cd,0.004317938350141048 +illusion_0.75L,sr,115,23.0,target_force,target_cl,-0.0007662828429602087 +illusion_0.75L,sr,116,23.2,target_force,target_cd,0.004296679049730301 +illusion_0.75L,sr,116,23.2,target_force,target_cl,-0.0005671066464856267 +illusion_0.75L,sr,117,23.4,target_force,target_cd,0.004271471872925758 +illusion_0.75L,sr,117,23.4,target_force,target_cl,-0.00034325156593695283 +illusion_0.75L,sr,118,23.6,target_force,target_cd,0.004254178609699011 +illusion_0.75L,sr,118,23.6,target_force,target_cl,-0.00010401237523183227 +illusion_0.75L,sr,119,23.8,target_force,target_cd,0.004250772297382355 +illusion_0.75L,sr,119,23.8,target_force,target_cl,0.00014047697186470032 +illusion_0.75L,sr,120,24.0,target_force,target_cd,0.004256573971360922 +illusion_0.75L,sr,120,24.0,target_force,target_cl,0.000379570439690724 +illusion_0.75L,sr,121,24.2,target_force,target_cd,0.00426256749778986 +illusion_0.75L,sr,121,24.2,target_force,target_cl,0.0006025657639838755 +illusion_0.75L,sr,122,24.4,target_force,target_cd,0.004265558440238237 +illusion_0.75L,sr,122,24.4,target_force,target_cl,0.0007992724422365427 +illusion_0.75L,sr,123,24.6,target_force,target_cd,0.004270726349204779 +illusion_0.75L,sr,123,24.6,target_force,target_cl,0.0009606286184862256 +illusion_0.75L,sr,124,24.8,target_force,target_cd,0.004283971153199673 +illusion_0.75L,sr,124,24.8,target_force,target_cl,0.001079274108633399 +illusion_0.75L,sr,125,25.0,target_force,target_cd,0.004303178749978542 +illusion_0.75L,sr,125,25.0,target_force,target_cl,0.0011499872198328376 +illusion_0.75L,sr,126,25.2,target_force,target_cd,0.004318722058087587 +illusion_0.75L,sr,126,25.2,target_force,target_cl,0.00116992206312716 +illusion_0.75L,sr,127,25.4,target_force,target_cd,0.004322815220803022 +illusion_0.75L,sr,127,25.4,target_force,target_cl,0.001138634397648275 +illusion_0.75L,sr,128,25.6,target_force,target_cd,0.004317114595323801 +illusion_0.75L,sr,128,25.6,target_force,target_cl,0.0010579300578683615 +illusion_0.75L,sr,129,25.8,target_force,target_cd,0.004309931304305792 +illusion_0.75L,sr,129,25.8,target_force,target_cl,0.000931612157728523 +illusion_0.75L,sr,130,26.0,target_force,target_cd,0.004306346643716097 +illusion_0.75L,sr,130,26.0,target_force,target_cl,0.0007652023923583329 +illusion_0.75L,sr,131,26.2,target_force,target_cd,0.00430266372859478 +illusion_0.75L,sr,131,26.2,target_force,target_cl,0.0005656927824020386 +illusion_0.75L,sr,132,26.4,target_force,target_cd,0.00429161824285984 +illusion_0.75L,sr,132,26.4,target_force,target_cl,0.0003413430822547525 +illusion_0.75L,sr,133,26.6,target_force,target_cd,0.004272329621016979 +illusion_0.75L,sr,133,26.6,target_force,target_cl,0.00010149206354981288 +illusion_0.75L,sr,134,26.8,target_force,target_cd,0.004253413062542677 +illusion_0.75L,sr,134,26.8,target_force,target_cl,-0.00014367327094078064 +illusion_0.75L,sr,135,27.0,target_force,target_cd,0.004245383199304342 +illusion_0.75L,sr,135,27.0,target_force,target_cl,-0.0003834486415144056 +illusion_0.75L,sr,136,27.2,target_force,target_cd,0.004250668920576572 +illusion_0.75L,sr,136,27.2,target_force,target_cl,-0.0006070726667530835 +illusion_0.75L,sr,137,27.4,target_force,target_cd,0.004262279253453016 +illusion_0.75L,sr,137,27.4,target_force,target_cl,-0.0008042993140406907 +illusion_0.75L,sr,138,27.6,target_force,target_cd,0.0042722816579043865 +illusion_0.75L,sr,138,27.6,target_force,target_cl,-0.0009660187060944736 +illusion_0.75L,sr,139,27.8,target_force,target_cd,0.004280176013708115 +illusion_0.75L,sr,139,27.8,target_force,target_cl,-0.0010848336387425661 +illusion_0.75L,sr,140,28.0,target_force,target_cd,0.004291605204343796 +illusion_0.75L,sr,140,28.0,target_force,target_cl,-0.0011554996017366648 +illusion_0.75L,sr,141,28.2,target_force,target_cd,0.004309208132326603 +illusion_0.75L,sr,141,28.2,target_force,target_cl,-0.0011751636629924178 +illusion_0.75L,sr,142,28.4,target_force,target_cd,0.004326635040342808 +illusion_0.75L,sr,142,28.4,target_force,target_cl,-0.001143390778452158 +illusion_0.75L,sr,143,28.6,target_force,target_cd,0.004333213437348604 +illusion_0.75L,sr,143,28.6,target_force,target_cl,-0.0010620126267895103 +illusion_0.75L,sr,144,28.8,target_force,target_cd,0.004324445500969887 +illusion_0.75L,sr,144,28.8,target_force,target_cl,-0.0009348725434392691 +illusion_0.75L,sr,145,29.0,target_force,target_cd,0.004306653048843145 +illusion_0.75L,sr,145,29.0,target_force,target_cl,-0.0007675446104258299 +illusion_0.75L,sr,146,29.2,target_force,target_cd,0.004290517885237932 +illusion_0.75L,sr,146,29.2,target_force,target_cl,-0.000567082257475704 +illusion_0.75L,sr,147,29.4,target_force,target_cd,0.004280740395188332 +illusion_0.75L,sr,147,29.4,target_force,target_cl,-0.00034181104274466634 +illusion_0.75L,sr,148,29.6,target_force,target_cd,0.004273268859833479 +illusion_0.75L,sr,148,29.6,target_force,target_cl,-0.00010113600001204759 +illusion_0.75L,sr,149,29.8,target_force,target_cd,0.004262732807546854 +illusion_0.75L,sr,149,29.8,target_force,target_cl,0.00014469395682681352 +illusion_0.75L,sr,150,30.0,target_force,target_cd,0.0042510125786066055 +illusion_0.75L,sr,150,30.0,target_force,target_cl,0.00038492129533551633 +illusion_0.75L,sr,151,30.2,target_force,target_cd,0.004246690776199102 +illusion_0.75L,sr,151,30.2,target_force,target_cl,0.0006087439251132309 +illusion_0.75L,sr,152,30.4,target_force,target_cd,0.004255807958543301 +illusion_0.75L,sr,152,30.4,target_force,target_cl,0.000805890653282404 +illusion_0.75L,sr,153,30.6,target_force,target_cd,0.004274525213986635 +illusion_0.75L,sr,153,30.6,target_force,target_cl,0.0009672442683950067 +illusion_0.75L,sr,154,30.8,target_force,target_cd,0.004292297642678022 +illusion_0.75L,sr,154,30.8,target_force,target_cl,0.0010854192078113556 +illusion_0.75L,sr,155,31.0,target_force,target_cd,0.004302178509533405 +illusion_0.75L,sr,155,31.0,target_force,target_cl,0.0011552009964361787 +illusion_0.75L,sr,156,31.2,target_force,target_cd,0.004306729417294264 +illusion_0.75L,sr,156,31.2,target_force,target_cl,0.0011737841414287686 +illusion_0.75L,sr,157,31.4,target_force,target_cd,0.004313030280172825 +illusion_0.75L,sr,157,31.4,target_force,target_cl,0.0011407959973439574 +illusion_0.75L,sr,158,31.6,target_force,target_cd,0.004322762601077557 +illusion_0.75L,sr,158,31.6,target_force,target_cl,0.0010581414680927992 +illusion_0.75L,sr,159,31.8,target_force,target_cd,0.00432894192636013 +illusion_0.75L,sr,159,31.8,target_force,target_cl,0.0009297445067204535 +illusion_0.75L,sr,160,32.0,target_force,target_cd,0.004323208704590797 +illusion_0.75L,sr,160,32.0,target_force,target_cl,0.0007612616172991693 +illusion_0.75L,sr,161,32.2,target_force,target_cd,0.0043054320849478245 +illusion_0.75L,sr,161,32.2,target_force,target_cl,0.0005598256830126047 +illusion_0.75L,sr,162,32.4,target_force,target_cd,0.0042846668511629105 +illusion_0.75L,sr,162,32.4,target_force,target_cl,0.0003338336537126452 +illusion_0.75L,sr,163,32.6,target_force,target_cd,0.004270360339432955 +illusion_0.75L,sr,163,32.6,target_force,target_cl,9.274937474401668e-05 +illusion_0.75L,sr,164,32.8,target_force,target_cd,0.004263774491846561 +illusion_0.75L,sr,164,32.8,target_force,target_cl,-0.00015313613403122872 +illusion_0.75L,sr,165,33.0,target_force,target_cd,0.004259183071553707 +illusion_0.75L,sr,165,33.0,target_force,target_cl,-0.00039304280653595924 +illusion_0.75L,sr,166,33.2,target_force,target_cd,0.004253040533512831 +illusion_0.75L,sr,166,33.2,target_force,target_cl,-0.0006161675555631518 +illusion_0.75L,sr,167,33.4,target_force,target_cd,0.004250074736773968 +illusion_0.75L,sr,167,33.4,target_force,target_cl,-0.0008122602594085038 +illusion_0.75L,sr,168,33.6,target_force,target_cd,0.004258817993104458 +illusion_0.75L,sr,168,33.6,target_force,target_cl,-0.0009722463437356055 +illusion_0.75L,sr,169,33.8,target_force,target_cd,0.004281363915652037 +illusion_0.75L,sr,169,33.8,target_force,target_cl,-0.0010888022370636463 +illusion_0.75L,sr,170,34.0,target_force,target_cd,0.004309054929763079 +illusion_0.75L,sr,170,34.0,target_force,target_cl,-0.001156791695393622 +illusion_0.75L,sr,171,34.2,target_force,target_cd,0.004329311661422253 +illusion_0.75L,sr,171,34.2,target_force,target_cl,-0.0011734996223822236 +illusion_0.75L,sr,172,34.4,target_force,target_cd,0.004336345009505749 +illusion_0.75L,sr,172,34.4,target_force,target_cl,-0.0011386508122086525 +illusion_0.75L,sr,173,34.6,target_force,target_cd,0.004334232769906521 +illusion_0.75L,sr,173,34.6,target_force,target_cl,-0.0010542497038841248 +illusion_0.75L,sr,174,34.8,target_force,target_cd,0.004329643212258816 +illusion_0.75L,sr,174,34.8,target_force,target_cl,-0.0009243153617717326 +illusion_0.75L,sr,175,35.0,target_force,target_cd,0.00432319100946188 +illusion_0.75L,sr,175,35.0,target_force,target_cl,-0.0007545904372818768 +illusion_0.75L,sr,176,35.2,target_force,target_cd,0.004309643525630236 +illusion_0.75L,sr,176,35.2,target_force,target_cl,-0.0005522798164747655 +illusion_0.75L,sr,177,35.4,target_force,target_cd,0.004286581184715033 +illusion_0.75L,sr,177,35.4,target_force,target_cl,-0.0003258340584579855 +illusion_0.75L,sr,178,35.6,target_force,target_cd,0.004260983318090439 +illusion_0.75L,sr,178,35.6,target_force,target_cl,-8.474913192912936e-05 +illusion_0.75L,sr,179,35.8,target_force,target_cd,0.004245322663336992 +illusion_0.75L,sr,179,35.8,target_force,target_cl,0.00016067505930550396 +illusion_0.75L,sr,180,36.0,target_force,target_cd,0.004246708005666733 +illusion_0.75L,sr,180,36.0,target_force,target_cl,0.0003996735031250864 +illusion_0.75L,sr,181,36.2,target_force,target_cd,0.004260779824107885 +illusion_0.75L,sr,181,36.2,target_force,target_cl,0.0006214812165126204 +illusion_0.75L,sr,182,36.4,target_force,target_cd,0.00427695456892252 +illusion_0.75L,sr,182,36.4,target_force,target_cl,0.0008159072604030371 +illusion_0.75L,sr,183,36.6,target_force,target_cd,0.004289029631763697 +illusion_0.75L,sr,183,36.6,target_force,target_cl,0.000973953865468502 +illusion_0.75L,sr,184,36.8,target_force,target_cd,0.004299434833228588 +illusion_0.75L,sr,184,36.8,target_force,target_cl,0.0010883876821026206 +illusion_0.75L,sr,185,37.0,target_force,target_cd,0.0043129948899149895 +illusion_0.75L,sr,185,37.0,target_force,target_cl,0.0011541711864992976 +illusion_0.75L,sr,186,37.2,target_force,target_cd,0.0043281856924295425 +illusion_0.75L,sr,186,37.2,target_force,target_cl,0.0011686912039294839 +illusion_0.75L,sr,187,37.4,target_force,target_cd,0.004336609039455652 +illusion_0.75L,sr,187,37.4,target_force,target_cl,0.001131771714426577 +illusion_0.75L,sr,188,37.6,target_force,target_cd,0.004331659525632858 +illusion_0.75L,sr,188,37.6,target_force,target_cl,0.0010455084266141057 +illusion_0.75L,sr,189,37.8,target_force,target_cd,0.004316441714763641 +illusion_0.75L,sr,189,37.8,target_force,target_cl,0.0009139995672740042 +illusion_0.75L,sr,190,38.0,target_force,target_cd,0.004301527515053749 +illusion_0.75L,sr,190,38.0,target_force,target_cl,0.0007430499535985291 +illusion_0.75L,sr,191,38.2,target_force,target_cd,0.004294632934033871 +illusion_0.75L,sr,191,38.2,target_force,target_cl,0.0005399071960709989 +illusion_0.75L,sr,192,38.4,target_force,target_cd,0.004293559584766626 +illusion_0.75L,sr,192,38.4,target_force,target_cl,0.00031304333242587745 +illusion_0.75L,sr,193,38.6,target_force,target_cd,0.004290138371288776 +illusion_0.75L,sr,193,38.6,target_force,target_cl,7.195398939074948e-05 +illusion_0.75L,sr,194,38.8,target_force,target_cd,0.00428050896152854 +illusion_0.75L,sr,194,38.8,target_force,target_cl,-0.0001730822114041075 +illusion_0.75L,sr,195,39.0,target_force,target_cd,0.0042700087651610374 +illusion_0.75L,sr,195,39.0,target_force,target_cl,-0.00041134055936709046 +illusion_0.75L,sr,196,39.2,target_force,target_cd,0.004267278593033552 +illusion_0.75L,sr,196,39.2,target_force,target_cl,-0.000632112380117178 +illusion_0.75L,sr,197,39.4,target_force,target_cd,0.004274563863873482 +illusion_0.75L,sr,197,39.4,target_force,target_cl,-0.0008252749685198069 +illusion_0.75L,sr,198,39.6,target_force,target_cd,0.004285456147044897 +illusion_0.75L,sr,198,39.6,target_force,target_cl,-0.0009819063125178218 +illusion_0.75L,sr,199,39.8,target_force,target_cd,0.004292575176805258 +illusion_0.75L,sr,199,39.8,target_force,target_cl,-0.0010948515264317393 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json new file mode 100644 index 0000000..e0c5163 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_0.75L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_0p75L__pysr__f-ae67ae507106__si-400.npz", + "sample_interval": 400, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150, + "target_forces": 200, + "target_phase": 200 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv new file mode 100644 index 0000000..4583eab --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_0.75L,sr,0,0.0,1.2257615327835083,0.12892243266105652,0.7312963604927063,0.5053322911262512,0.8749406337738037,0.181144118309021,0.0018674046732485294,-2.0841865989496e-05,0.0012031100923195481,0.0027756672352552414,0.0013290162896737456,-0.0029579303227365017,0.08378423896653334,-0.05697559957518511,-0.05697559957518511,0.0008378423896653334,-0.0005697559957518511,-0.0005697559957518511,0.0042510125786066055,0.00038492129533551633,0 +illusion_0.75L,sr,1,0.2,1.1282933950424194,0.23802143335342407,0.7708043456077576,0.5162764191627502,0.9027511477470398,0.20912429690361023,0.0018281749216839671,-5.444058115244843e-05,0.0013976189075037837,0.0024538282305002213,0.001543473917990923,-0.0026566623710095882,0.0719625133193826,-0.04712294450935874,-0.04712294450935874,0.000719625133193826,-0.00047122944509358746,-0.00047122944509358746,0.004246690776199102,0.0006087439251132309,1 +illusion_0.75L,sr,2,0.4,1.032436728477478,0.31471365690231323,0.8104594945907593,0.509904146194458,0.9312958717346191,0.2337803989648819,0.0018569508101791143,-7.128411380108446e-05,0.001545884762890637,0.002190485829487443,0.001714169280603528,-0.002417308045551181,0.02081750355040614,-0.008293904976274455,-0.008293904976274455,0.0002081750355040614,-8.293904976274456e-05,-8.293904976274456e-05,0.004255807958543301,0.000805890653282404,2 +illusion_0.75L,sr,3,0.6,0.9520893692970276,0.3519553244113922,0.8432225584983826,0.5067592859268188,0.960794985294342,0.25548210740089417,0.0018842918798327446,-7.5252988608554e-05,0.0016904659569263458,0.001920873997732997,0.001878342591226101,-0.002176173496991396,0.00652906908157136,0.0033760315545836445,0.0033760315545836445,6.52906908157136e-05,3.3760315545836444e-05,3.3760315545836444e-05,0.004274525213986635,0.0009672442683950067,3 +illusion_0.75L,sr,4,0.8,0.8956445455551147,0.356475293636322,0.8704798221588135,0.5121758580207825,0.9933329820632935,0.27485716342926025,0.001913572894409299,-8.0523343058303e-05,0.0018249144777655602,0.0016654134960845113,0.0020287821535021067,-0.0019375463016331196,0.016228877081958692,-0.002847797035366015,-0.002847797035366015,0.00016228877081958694,-2.8477970353660147e-05,-2.8477970353660147e-05,0.004292297642678022,0.0010854192078113556,4 +illusion_0.75L,sr,5,1.0,0.8516241312026978,0.33808109164237976,0.8877716660499573,0.5198968648910522,1.022042989730835,0.2904837131500244,0.0019343007588759065,-8.66473201313056e-05,0.0019320235587656498,0.0014139361446723342,0.0021486806217581034,-0.0016855024732649326,0.019952920368860594,-0.004824202418474033,-0.004824202418474033,0.00019952920368860593,-4.824202418474033e-05,-4.824202418474033e-05,0.004302178509533405,0.0011552009964361787,5 +illusion_0.75L,sr,6,1.2,0.8200671672821045,0.3093578815460205,0.902376115322113,0.5310700535774231,1.0545381307601929,0.30453410744667053,0.001957907574251294,-9.045306796906516e-05,0.0020208805799484253,0.0011878467630594969,0.0022484147921204567,-0.001447542803362012,0.018990588501843625,-0.0034880681100787625,-0.0034880681100787625,0.00018990588501843625,-3.4880681100787625e-05,-3.4880681100787625e-05,0.004306729417294264,0.0011737841414287686,6 +illusion_0.75L,sr,7,1.4,0.7931027412414551,0.2741444706916809,0.9118494391441345,0.5409924387931824,1.088559627532959,0.3163946270942688,0.0019709111656993628,-9.208740084432065e-05,0.0020883309189230204,0.000991061795502901,0.0023221904411911964,-0.0012312437174841762,0.021067772955386976,-0.004494966512509219,-0.004494966512509219,0.00021067772955386978,-4.494966512509219e-05,-4.494966512509219e-05,0.004313030280172825,0.0011407959973439574,7 +illusion_0.75L,sr,8,1.6,0.7682588696479797,0.23356281220912933,0.9148262143135071,0.5440762639045715,1.1241827011108398,0.32588279247283936,0.0019839659798890352,-9.337290975963697e-05,0.002141484059393406,0.0008225733181461692,0.002375490963459015,-0.0010400169994682074,0.02347062360485727,-0.005964944446555237,-0.005964944446555237,0.00023470623604857272,-5.964944446555237e-05,-5.964944446555237e-05,0.004322762601077557,0.0010581414680927992,8 +illusion_0.75L,sr,9,1.8,0.7461526989936829,0.18757207691669464,0.9095438122749329,0.5320859551429749,1.1618062257766724,0.3326449990272522,0.0019879986066371202,-9.403604053659365e-05,0.002186376368626952,0.0006810392369516194,0.002416240982711315,-0.0008754454320296645,0.020951303922251446,-0.004093032194865898,-0.004093032194865898,0.00020951303922251446,-4.093032194865898e-05,-4.093032194865898e-05,0.00432894192636013,0.0009297445067204535,9 +illusion_0.75L,sr,10,2.0,0.729420006275177,0.13717328011989594,0.8943637013435364,0.4952360987663269,1.2016345262527466,0.3359262943267822,0.001999489264562726,-9.15934142540209e-05,0.0022221736144274473,0.0005628177314065397,0.002445220947265625,-0.0007355346460826695,0.01579911315003879,-0.00048159276414258545,-0.00048159276414258545,0.0001579911315003879,-4.815927641425855e-06,-4.815927641425855e-06,0.004323208704590797,0.0007612616172991693,10 +illusion_0.75L,sr,11,2.2,0.7214257121086121,0.08512218296527863,0.8687444925308228,0.425248920917511,1.2434254884719849,0.3343743085861206,0.001994795398786664,-8.761155186221004e-05,0.0022421355824917555,0.00047485315008088946,0.002456345595419407,-0.0006262395763769746,0.014615660067356847,6.182690698169901e-05,6.182690698169901e-05,0.00014615660067356846,6.182690698169902e-07,6.182690698169902e-07,0.0043054320849478245,0.0005598256830126047,11 +illusion_0.75L,sr,12,2.4,0.7247892022132874,0.035288192331790924,0.8341881036758423,0.31862393021583557,1.286068320274353,0.3256382346153259,0.001988417701795697,-8.260877802968025e-05,0.002255283994600177,0.0004098045756109059,0.002459005219861865,-0.0005378054338507354,0.014765043171065556,-0.000479812151672726,-0.000479812151672726,0.00014765043171065557,-4.79812151672726e-06,-4.79812151672726e-06,0.0042846668511629105,0.0003338336537126452,12 +illusion_0.75L,sr,13,2.6,0.7397904396057129,-0.009089002385735512,0.7946445345878601,0.17829684913158417,1.3266820907592773,0.3056411147117615,0.0019816625863313675,-7.720976282143965e-05,0.002263550413772464,0.0003657667839433998,0.002455409849062562,-0.0004680151178035885,0.015513801543639712,-0.0015456463550364006,-0.0015456463550364006,0.00015513801543639712,-1.5456463550364007e-05,-1.5456463550364007e-05,0.004270360339432955,9.274937474401668e-05,13 +illusion_0.75L,sr,14,2.8,0.7633176445960999,-0.04761999100446701,0.7557832598686218,0.013439898379147053,1.359108567237854,0.26825034618377686,0.001980158733204007,-7.093547174008563e-05,0.0022756955586373806,0.00033774576149880886,0.0024544980842620134,-0.0004115979827474803,0.01582663146702651,-0.002355792528968531,-0.002355792528968531,0.00015826631467026508,-2.355792528968531e-05,-2.355792528968531e-05,0.004263774491846561,-0.00015313613403122872,14 +illusion_0.75L,sr,15,3.0,0.7907172441482544,-0.08255963027477264,0.7247869968414307,-0.15989558398723602,1.3736562728881836,0.20619767904281616,0.00197957013733685,-6.429688801290467e-05,0.002291677985340357,0.0003266182029619813,0.002455873414874077,-0.0003698237705975771,0.016854956731811838,-0.00375382244074833,-0.00375382244074833,0.0001685495673181184,-3.7538224407483304e-05,-3.7538224407483304e-05,0.004259183071553707,-0.00039304280653595924,15 +illusion_0.75L,sr,16,3.2,0.8184207081794739,-0.11627604812383652,0.7089067697525024,-0.318677693605423,1.3592339754104614,0.11501366645097733,0.0019799796864390373,-5.7118591939797625e-05,0.002309390576556325,0.00032381483470089734,0.00245745200663805,-0.00033373318728990853,0.017219572999654598,-0.004736210900441004,-0.004736210900441004,0.00017219572999654597,-4.736210900441004e-05,-4.736210900441004e-05,0.004253040533512831,-0.0006161675555631518,16 +illusion_0.75L,sr,17,3.4,0.8457956910133362,-0.14930206537246704,0.7137969136238098,-0.43741780519485474,1.3093432188034058,-0.0015972383553162217,0.0019776099361479282,-5.015138958697207e-05,0.002320242580026388,0.0003313809575047344,0.002450589556246996,-0.0003068995429202914,0.01730389743440533,-0.0055856158293895175,-0.0055856158293895175,0.0001730389743440533,-5.585615829389518e-05,-5.585615829389518e-05,0.004250074736773968,-0.0008122602594085038,17 +illusion_0.75L,sr,18,3.6,0.8733624815940857,-0.1803244948387146,0.7398117184638977,-0.4991147518157959,1.2281298637390137,-0.12724164128303528,0.0019698580726981163,-4.2732342990348116e-05,0.0023226779885590076,0.0003431988588999957,0.002434353344142437,-0.00028418557485565543,0.015508988099902839,-0.005121161552832418,-0.005121161552832418,0.0001550898809990284,-5.121161552832418e-05,-5.121161552832418e-05,0.004258817993104458,-0.0009722463437356055,18 +illusion_0.75L,sr,19,3.8,0.901675283908844,-0.208134725689888,0.7788070440292358,-0.5130131244659424,1.1311311721801758,-0.23788824677467346,0.0019638591911643744,-3.4956032322952524e-05,0.002328174654394388,0.0003583068319130689,0.0024200668558478355,-0.00026549847098067403,0.013772725492284366,-0.004746804843059671,-0.004746804843059671,0.00013772725492284366,-4.746804843059671e-05,-4.746804843059671e-05,0.004281363915652037,-0.0010888022370636463,19 +illusion_0.75L,sr,20,4.0,0.9308008551597595,-0.23241841793060303,0.8185228705406189,-0.5079160928726196,1.03725266456604,-0.3141671121120453,0.0019591073505580425,-2.630099879752379e-05,0.0023339996114373207,0.0003737475781235844,0.0024053091183304787,-0.0002470453910063952,0.011758866087906633,-0.00422119831111905,-0.00422119831111905,0.00011758866087906633,-4.22119831111905e-05,-4.22119831111905e-05,0.004309054929763079,-0.001156791695393622,20 +illusion_0.75L,sr,21,4.2,0.9605914354324341,-0.25338155031204224,0.8516948819160461,-0.5051444172859192,0.9601051211357117,-0.35027045011520386,0.00195490475744009,-1.763293221301865e-05,0.0023376354947686195,0.0003891194355674088,0.002387779764831066,-0.00022979677305556834,0.010828901670146773,-0.004536857921064723,-0.004536857921064723,0.00010828901670146773,-4.536857921064723e-05,-4.536857921064723e-05,0.004329311661422253,-0.0011734996223822236,21 +illusion_0.75L,sr,22,4.4,0.9909607768058777,-0.27137672901153564,0.877677321434021,-0.5096291899681091,0.9030462503433228,-0.353901743888855,0.0019483952783048153,-9.505829439149238e-06,0.0023400227073580027,0.0004018525069113821,0.0023683407343924046,-0.00021285549155436456,0.009393806832129536,-0.004507050953531315,-0.004507050953531315,9.393806832129537e-05,-4.5070509535313153e-05,-4.5070509535313153e-05,0.004336345009505749,-0.0011386508122086525,22 +illusion_0.75L,sr,23,4.6,1.0219324827194214,-0.2865833640098572,0.8980522155761719,-0.519512414932251,0.8618089556694031,-0.33781078457832336,0.0019431442487984896,-1.707838805486972e-06,0.002341829938814044,0.00041309688822366297,0.0023481720127165318,-0.00019783865718636662,0.006238197805061837,-0.003236014942245652,-0.003236014942245652,6.238197805061837e-05,-3.236014942245652e-05,-3.236014942245652e-05,0.004334232769906521,-0.0010542497038841248,23 +illusion_0.75L,sr,24,4.8,1.0538530349731445,-0.29913830757141113,0.9139555096626282,-0.5324706435203552,0.8291533589363098,-0.3116980493068695,0.0019334967946633697,6.401669907063479e-06,0.0023412846494466066,0.00042083312291651964,0.002325623296201229,-0.00018343554984312505,0.0022664086116632705,-0.001368170008479296,-0.001368170008479296,2.2664086116632707e-05,-1.368170008479296e-05,-1.368170008479296e-05,0.004329643212258816,-0.0009243153617717326,24 +illusion_0.75L,sr,25,5.0,1.0869741439819336,-0.3089430332183838,0.9254052639007568,-0.5455420613288879,0.7997474670410156,-0.2797398567199707,0.0019319870043545961,1.481048184359679e-05,0.0023460693191736937,0.00042383550317026675,0.002308956580236554,-0.00016895800945349038,-0.0010873458545239308,4.088442645380254e-05,4.088442645380254e-05,-1.0873458545239308e-05,4.088442645380254e-07,4.088442645380254e-07,0.00432319100946188,-0.0007545904372818768,25 +illusion_0.75L,sr,26,5.2,1.1216953992843628,-0.31577831506729126,0.9315975308418274,-0.5536773204803467,0.7715214490890503,-0.24235403537750244,0.0019340702565386891,2.2715043087373488e-05,0.0023569983895868063,0.0004249643243383616,0.0022990687284618616,-0.00015777428052388132,-0.003319010377983031,0.0006463299763048436,0.0006463299763048436,-3.319010377983031e-05,6.4632997630484356e-06,6.4632997630484356e-06,0.004309643525630236,-0.0005522798164747655,26 +illusion_0.75L,sr,27,5.4,1.1582894325256348,-0.3192261755466461,0.930928647518158,-0.5489377379417419,0.7451596856117249,-0.19899927079677582,0.0019391439855098724,2.9436603654175997e-05,0.0023680164013057947,0.0004226375021971762,0.002289922209456563,-0.0001483797241235152,-0.006012239934591386,0.001624359925543002,0.001624359925543002,-6.012239934591386e-05,1.624359925543002e-05,1.624359925543002e-05,0.004286581184715033,-0.0003258340584579855,27 +illusion_0.75L,sr,28,5.6,1.1969308853149414,-0.31861913204193115,0.9215503931045532,-0.5213873386383057,0.723158597946167,-0.14999037981033325,0.0019395679701119661,3.599904812290333e-05,0.0023798865731805563,0.0004198308743070811,0.002282804809510708,-0.0001435016602044925,-0.010551935277027087,0.004000909857042267,0.004000909857042267,-0.00010551935277027087,4.0009098570422674e-05,4.0009098570422674e-05,0.004260983318090439,-8.474913192912936e-05,28 +illusion_0.75L,sr,29,5.8,1.237492561340332,-0.31302323937416077,0.902116060256958,-0.461894154548645,0.7088020443916321,-0.0972413569688797,0.0019390956731513143,4.258607077645138e-05,0.0023868985008448362,0.0004152239125687629,0.002272329293191433,-0.00014228610962163657,-0.014345205612390596,0.005882389042483942,0.005882389042483942,-0.00014345205612390597,5.882389042483942e-05,5.882389042483942e-05,0.004245322663336992,0.00016067505930550396,29 +illusion_0.75L,sr,30,6.0,1.2793378829956055,-0.3009447157382965,0.8729605674743652,-0.3655937910079956,0.70508873462677,-0.044335197657346725,0.0019358507124707103,4.8863636038731784e-05,0.002390441484749317,0.0004112950700800866,0.0022602526005357504,-0.0001465266104787588,-0.016717664568647247,0.006785401022493698,0.006785401022493698,-0.00016717664568647247,6.785401022493698e-05,6.785401022493698e-05,0.004246708005666733,0.0003996735031250864,30 +illusion_0.75L,sr,31,6.2,1.3209692239761353,-0.2801584005355835,0.836972713470459,-0.23385727405548096,0.7132401466369629,0.005004073493182659,0.0019330900395289063,5.387223791331053e-05,0.002392935799434781,0.0004066636029165238,0.002249031560495496,-0.00015473733947146684,-0.018023160153953277,0.006989786114469376,0.006989786114469376,-0.00018023160153953277,6.989786114469376e-05,6.989786114469376e-05,0.004260779824107885,0.0006214812165126204,31 +illusion_0.75L,sr,32,6.4,1.3590067625045776,-0.2472439557313919,0.7994092702865601,-0.07481799274682999,0.7314902544021606,0.04880686104297638,0.0019292512442916632,5.762188811786473e-05,0.0023947579320520163,0.00040245027048513293,0.00223928177729249,-0.00016756121476646513,-0.020209200284899684,0.00793881304680702,0.00793881304680702,-0.00020209200284899685,7.938813046807019e-05,7.938813046807019e-05,0.00427695456892252,0.0008159072604030371,32 +illusion_0.75L,sr,33,6.6,1.3868902921676636,-0.1980159878730774,0.7669036388397217,0.09607750922441483,0.7555873990058899,0.08780180662870407,0.0019235929939895868,6.115095311542973e-05,0.002392907626926899,0.0003984290815424174,0.002228514291346073,-0.00018373032798990607,-0.02303672972149251,0.00946720420509721,0.00946720420509721,-0.0002303672972149251,9.46720420509721e-05,9.46720420509721e-05,0.004289029631763697,0.000973953865468502,33 +illusion_0.75L,sr,34,6.8,1.3951247930526733,-0.12927430868148804,0.7458992004394531,0.25762078166007996,0.7813798785209656,0.12414080649614334,0.0019163638353347778,6.422281148843467e-05,0.0023864535614848137,0.00039571980596520007,0.0022161435335874557,-0.00020444465917535126,-0.023895080675304325,0.009667563518883787,0.009667563518883787,-0.00023895080675304326,9.667563518883788e-05,9.667563518883788e-05,0.004299434833228588,0.0010883876821026206,34 +illusion_0.75L,sr,35,7.0,1.3746272325515747,-0.04297914355993271,0.741303563117981,0.38539400696754456,0.8068477511405945,0.1588970422744751,0.00190869125071913,6.5622414695099e-05,0.0023766241502016783,0.00039304900565184653,0.0022033238783478737,-0.00022793986136093736,-0.02295697893735016,0.008684602624532356,0.008684602624532356,-0.0002295697893735016,8.684602624532356e-05,8.684602624532356e-05,0.0043129948899149895,0.0011541711864992976,35 +illusion_0.75L,sr,36,7.2,1.323386549949646,0.05022113025188446,0.7547557353973389,0.459819495677948,0.8319914937019348,0.19150297343730927,0.0019042843487113714,6.539854075526819e-05,0.0023708436638116837,0.0003905724734067917,0.0021974011324346066,-0.00025319698033854365,-0.022798504386096596,0.008421445324312174,0.008421445324312174,-0.00022798504386096596,8.421445324312174e-05,8.421445324312174e-05,0.0043281856924295425,0.0011686912039294839,36 +illusion_0.75L,sr,37,7.4,1.2499226331710815,0.13399088382720947,0.7819072604179382,0.4806630611419678,0.8573716878890991,0.22098948061466217,0.0019055934390053153,6.474401016021147e-05,0.0023691027890890837,0.0003870440705213696,0.0021986556239426136,-0.0002786848635878414,-0.023390616423860422,0.008852769313729428,0.008852769313729428,-0.00023390616423860422,8.852769313729428e-05,8.852769313729428e-05,0.004336609039455652,0.001131771714426577,37 +illusion_0.75L,sr,38,7.6,1.169438123703003,0.1943267434835434,0.813022792339325,0.4703579843044281,0.8831759691238403,0.246986523270607,0.0019066749373450875,6.387141183950007e-05,0.0023658000864088535,0.0003838117700070143,0.0022016980219632387,-0.00030522653833031654,-0.022006215814809826,0.007974187570296068,0.007974187570296068,-0.00022006215814809828,7.974187570296069e-05,7.974187570296069e-05,0.004331659525632858,0.0010455084266141057,38 +illusion_0.75L,sr,39,7.8,1.0955232381820679,0.22664685547351837,0.839527428150177,0.4547146260738373,0.9093071222305298,0.2697378396987915,0.0019078801851719618,6.049267904018052e-05,0.002358958823606372,0.0003801846760325134,0.00220418069511652,-0.00033195072319358587,-0.01801269492826013,0.005327809639421685,0.005327809639421685,-0.00018012694928260133,5.3278096394216855e-05,5.3278096394216855e-05,0.004316441714763641,0.0009139995672740042,39 +illusion_0.75L,sr,40,8.0,1.0354607105255127,0.23530855774879456,0.8585458397865295,0.4457381069660187,0.9354730844497681,0.2896534204483032,0.001905098557472229,5.588269777945243e-05,0.0023468779399991035,0.0003756588266696781,0.00220358744263649,-0.0003577607567422092,-0.01647249393051843,0.00464260668567909,0.00464260668567909,-0.00016472493930518432,4.64260668567909e-05,4.64260668567909e-05,0.004301527515053749,0.0007430499535985291,40 +illusion_0.75L,sr,41,8.2,0.9896714091300964,0.22888778150081635,0.871296763420105,0.4442456066608429,0.9615901708602905,0.30721285939216614,0.0019043280044570565,4.965648622601293e-05,0.0023358329199254513,0.000369434681488201,0.0022066286765038967,-0.00038193873479031026,-0.01549808907597254,0.0044817302673681725,0.0044817302673681725,-0.0001549808907597254,4.4817302673681726e-05,4.4817302673681726e-05,0.004294632934033871,0.0005399071960709989,41 +illusion_0.75L,sr,42,8.4,0.9551780223846436,0.2151242047548294,0.8795709013938904,0.4482070803642273,0.9875639081001282,0.3227161169052124,0.0019012241391465068,4.387004810268991e-05,0.002321836305782199,0.00036097780684940517,0.0022085390519350767,-0.00040299096144735813,-0.015487052222876314,0.0051606659587089265,0.0051606659587089265,-0.00015487052222876315,5.1606659587089266e-05,5.1606659587089266e-05,0.004293559584766626,0.00031304333242587745,42 +illusion_0.75L,sr,43,8.6,0.9279525876045227,0.19866420328617096,0.8845279216766357,0.45568180084228516,1.0135035514831543,0.3364955484867096,0.0019007017835974693,3.7855483242310584e-05,0.0023074562195688486,0.0003503338375594467,0.002211736049503088,-0.00042115867836400867,-0.012905224660799769,0.004025593728035057,0.004025593728035057,-0.0001290522466079977,4.025593728035057e-05,4.025593728035057e-05,0.004290138371288776,7.195398939074948e-05,43 +illusion_0.75L,sr,44,8.8,0.904988706111908,0.18139170110225677,0.8865459561347961,0.46460217237472534,1.0394498109817505,0.34870749711990356,0.0018979953601956367,3.034125802514609e-05,0.002292087534442544,0.0003369497135281563,0.0022148126736283302,-0.00043520223698578775,-0.009269062547519802,0.0021915998927402036,0.0021915998927402036,-9.269062547519802e-05,2.1915998927402038e-05,2.1915998927402038e-05,0.00428050896152854,-0.0001730822114041075,44 +illusion_0.75L,sr,45,9.0,0.8845665454864502,0.16338346898555756,0.885469913482666,0.4723506569862366,1.065626621246338,0.3594871163368225,0.0018927395576611161,2.2201322281034663e-05,0.002271839417517185,0.0003232784220017493,0.002213503932580352,-0.0004464040684979409,-0.007935986170862858,0.0021046301665453293,0.0021046301665453293,-7.935986170862858e-05,2.1046301665453293e-05,2.1046301665453293e-05,0.0042700087651610374,-0.00041134055936709046,45 +illusion_0.75L,sr,46,9.2,0.866209089756012,0.14407779276371002,0.8806793093681335,0.47554901242256165,1.0922458171844482,0.36883431673049927,0.0018893203232437372,1.4576280591427349e-05,0.002255611354485154,0.00030680547934025526,0.002216657856479287,-0.0004524495452642441,-0.007443452532700623,0.002663904186335657,0.002663904186335657,-7.443452532700623e-05,2.663904186335657e-05,2.663904186335657e-05,0.004267278593033552,-0.000632112380117178,46 +illusion_0.75L,sr,47,9.4,0.8500984907150269,0.12276522815227509,0.871197521686554,0.47023501992225647,1.1196080446243286,0.37671124935150146,0.0018897521076723933,7.480686690541916e-06,0.00224232766777277,0.0002892700722441077,0.0022228225134313107,-0.00045476880040951073,-0.005483686269247948,0.00215876744787016,0.00215876744787016,-5.4836862692479487e-05,2.15876744787016e-05,2.15876744787016e-05,0.004274563863873482,-0.0008252749685198069,47 +illusion_0.75L,sr,48,9.6,0.8367047309875488,0.09895047545433044,0.8559049367904663,0.45225226879119873,1.1479263305664062,0.3829626739025116,0.0018944600597023964,6.346454028971493e-08,0.002236511092633009,0.00027083055465482175,0.002236106665804982,-0.00045328025589697063,-0.002370275160948402,0.0008029749327131669,0.0008029749327131669,-2.370275160948402e-05,8.029749327131669e-06,8.029749327131669e-06,0.004285456147044897,-0.0009819063125178218,48 +illusion_0.75L,sr,49,9.8,0.8263615369796753,0.0722932443022728,0.8337544798851013,0.4178123474121094,1.1774370670318604,0.3872963786125183,0.001900927280075848,-7.756314516882412e-06,0.0022330426145344973,0.0002533553633838892,0.0022510532289743423,-0.00044966497807763517,-0.0002383417882265909,0.0001566859949748512,0.0001566859949748512,-2.383417882265909e-06,1.566859949748512e-06,1.566859949748512e-06,0.004292575176805258,-0.0010948515264317393,49 +illusion_0.75L,sr,50,10.0,0.8192840814590454,0.04297204315662384,0.8045274615287781,0.36491283774375916,1.207869529724121,0.38922664523124695,0.0019070282578468323,-1.4764687875867821e-05,0.0022315960377454758,0.0002375098702032119,0.0022671660408377647,-0.0004438020696397871,0.00043627709971896453,0.0005556098946432938,0.0005556098946432938,4.362770997189645e-06,5.556098946432938e-06,5.556098946432938e-06,0.004296126775443554,-0.0011591494549065828,50 +illusion_0.75L,sr,51,10.2,0.8150880932807922,0.010907535441219807,0.7681028842926025,0.2926825284957886,1.238896131515503,0.38802143931388855,0.0019094683229923248,-2.0783962099812925e-05,0.0022263568826019764,0.00022524337691720575,0.0022786634508520365,-0.00043791576172225177,0.00200456781218605,0.00025132794388278007,0.00025132794388278007,2.00456781218605e-05,2.513279438827801e-06,2.513279438827801e-06,0.0043031927198171616,-0.0011722566559910774,51 +illusion_0.75L,sr,52,10.4,0.8134474158287048,-0.023449495434761047,0.7255308628082275,0.20272259414196014,1.2692962884902954,0.3825637102127075,0.0019106679828837514,-2.6477828214410692e-05,0.0022210560273379087,0.00021551774989347905,0.0022889054380357265,-0.0004310044168960303,0.00486336005927919,-0.0010482796929616178,-0.0010482796929616178,4.8633600592791896e-05,-1.048279692961618e-05,-1.048279692961618e-05,0.00431835139170289,-0.001134056132286787,52 +illusion_0.75L,sr,53,10.6,0.8142286539077759,-0.059722334146499634,0.6784133315086365,0.09730859845876694,1.2974493503570557,0.3712138831615448,0.0019106813706457615,-3.2153875508811325e-05,0.0022158785723149776,0.00020992096688132733,0.0022978021297603846,-0.0004244163865223527,0.007303725525191901,-0.002096408527970023,-0.002096408527970023,7.3037255251919e-05,-2.096408527970023e-05,-2.096408527970023e-05,0.004336398560553789,-0.0010466892272233963,53 +illusion_0.75L,sr,54,10.8,0.817565381526947,-0.09695689380168915,0.6299600601196289,-0.018962504342198372,1.3205876350402832,0.3518913686275482,0.0019119575154036283,-3.6978199204895645e-05,0.0022119611967355013,0.00020802213111892343,0.002306285547092557,-0.0004174174682702869,0.008439514956328886,-0.002250570787333671,-0.002250570787333671,8.439514956328886e-05,-2.2505707873336708e-05,-2.2505707873336708e-05,0.004345819354057312,-0.0009142835042439401,54 +illusion_0.75L,sr,55,11.0,0.823728621006012,-0.1342857927083969,0.5850232839584351,-0.139706090092659,1.3352055549621582,0.3220454454421997,0.001910537132062018,-4.0585196984466165e-05,0.002208685502409935,0.00021086355263832957,0.0023137943353503942,-0.00041143238195218146,0.0098054039855648,-0.0026566692271377257,-0.0026566692271377257,9.8054039855648e-05,-2.6566692271377256e-05,-2.6566692271377256e-05,0.004339585080742836,-0.0007426568772643805,55 +illusion_0.75L,sr,56,11.2,0.8328362107276917,-0.17074644565582275,0.550769567489624,-0.2545641362667084,1.3369859457015991,0.27911415696144104,0.0019061428029090166,-4.3575801100814715e-05,0.0022007115185260773,0.00021832883066963404,0.0023146560415625572,-0.0004067507106810808,0.012208273889371582,-0.003909150144280997,-0.003909150144280997,0.00012208273889371583,-3.909150144280997e-05,-3.909150144280997e-05,0.004321560729295015,-0.0005390531150624156,56 +illusion_0.75L,sr,57,11.4,0.8449108600616455,-0.2057787925004959,0.5348131656646729,-0.351433664560318,1.3214794397354126,0.22080937027931213,0.001901480252854526,-4.618594903149642e-05,0.0021935252007097006,0.0002292288700118661,0.002314009703695774,-0.00040217311470769346,0.014103847758076075,-0.004881205052341117,-0.004881205052341117,0.00014103847758076076,-4.881205052341117e-05,-4.881205052341117e-05,0.004301773849874735,-0.000311925308778882,57 +illusion_0.75L,sr,58,11.6,0.8597846031188965,-0.2390264868736267,0.5409399271011353,-0.4215989410877228,1.2845627069473267,0.14582397043704987,0.0018994106212630868,-4.79893569718115e-05,0.002191368490457535,0.00024392837076447904,0.002316044643521309,-0.00039845926221460104,0.014688193764136022,-0.004994710341404501,-0.004994710341404501,0.00014688193764136022,-4.9947103414045015e-05,-4.9947103414045015e-05,0.004286319483071566,-7.073696906445548e-05,58 +illusion_0.75L,sr,59,11.8,0.8772647380828857,-0.27036038041114807,0.5652447938919067,-0.46639537811279297,1.2234708070755005,0.05462876334786415,0.0019007025985047221,-4.839601751882583e-05,0.0021940215956419706,0.00026129905018024147,0.002320476807653904,-0.0003946803044527769,0.01479331401012131,-0.004868055170112726,-0.004868055170112726,0.0001479331401012131,-4.8680551701127255e-05,-4.8680551701127255e-05,0.004273382015526295,0.00017427514831069857,59 +illusion_0.75L,sr,60,12.0,0.8971307277679443,-0.2997306287288666,0.5980241894721985,-0.49609485268592834,1.138676404953003,-0.048857346177101135,0.0019052221905440092,-4.781322058988735e-05,0.002201816998422146,0.0002813395403791219,0.0023274424020200968,-0.0003911984385922551,0.015578584538215062,-0.005362508707459482,-0.005362508707459482,0.00015578584538215062,-5.362508707459482e-05,-5.362508707459482e-05,0.004259394947439432,0.0004124342813156545,60 +illusion_0.75L,sr,61,12.2,0.9192708730697632,-0.3271724283695221,0.6307089924812317,-0.5214622616767883,1.0357155799865723,-0.1563846915960312,0.001908744452521205,-4.648927642847411e-05,0.0022094985470175743,0.0003034519904758781,0.0023315560538321733,-0.0003875328693538904,0.016023898788033286,-0.0057325933859661005,-0.0057325933859661005,0.00016023898788033287,-5.7325933859661005e-05,-5.7325933859661005e-05,0.004247340373694897,0.000633081654086709,61 +illusion_0.75L,sr,62,12.4,0.9434290528297424,-0.3527897000312805,0.6595951318740845,-0.5476008057594299,0.9252596497535706,-0.25595253705978394,0.0019086545798927546,-4.430605622474104e-05,0.0022133670281618834,0.00032762426417320967,0.0023291928227990866,-0.00038432524888776243,0.015498604255037173,-0.005517822746227419,-0.005517822746227419,0.00015498604255037172,-5.517822746227419e-05,-5.517822746227419e-05,0.004246612079441547,0.0008261421462520957,62 +illusion_0.75L,sr,63,12.6,0.9693300127983093,-0.3765256404876709,0.684477686882019,-0.5749276876449585,0.8213279247283936,-0.3349321782588959,0.0019081011414527893,-4.09500535170082e-05,0.002218602690845728,0.0003516881843097508,0.0023257508873939514,-0.00037984337541274726,0.014314410670163452,-0.004945291859869444,-0.004945291859869444,0.00014314410670163453,-4.945291859869444e-05,-4.945291859869444e-05,0.004263712093234062,0.0009827353060245514,63 +illusion_0.75L,sr,64,12.8,0.996870756149292,-0.398468017578125,0.7060941457748413,-0.6025633811950684,0.7352319955825806,-0.3857695758342743,0.0019061241764575243,-3.638697671703994e-05,0.0022219899110496044,0.0003750348696485162,0.002318254904821515,-0.000373770366422832,0.013317585291512694,-0.004630751560777968,-0.004630751560777968,0.00013317585291512695,-4.630751560777968e-05,-4.630751560777968e-05,0.0042939698323607445,0.0010957379126921296,64 +illusion_0.75L,sr,65,13.0,1.0259284973144531,-0.4185980260372162,0.7247769832611084,-0.6292274594306946,0.6718394756317139,-0.4082767963409424,0.001906362478621304,-3.1101604690775275e-05,0.0022285752929747105,0.0003963777853641659,0.0023120110854506493,-0.000365451822290197,0.012798372198468229,-0.004777311087665367,-0.004777311087665367,0.0001279837219846823,-4.7773110876653675e-05,-4.7773110876653675e-05,0.004323890432715416,0.001160208135843277,65 +illusion_0.75L,sr,66,13.2,1.056424617767334,-0.43691906332969666,0.7404801845550537,-0.6529431939125061,0.6284840106964111,-0.4082629382610321,0.0019048707326874137,-2.5577444830560125e-05,0.0022334717214107513,0.0004150599997956306,0.0023023851681500673,-0.00035497883800417185,0.01199304781205375,-0.00480702248607541,-0.00480702248607541,0.0001199304781205375,-4.80702248607541e-05,-4.80702248607541e-05,0.004342077765613794,0.0011736078886315227,66 +illusion_0.75L,sr,67,13.4,1.0883150100708008,-0.453399121761322,0.7528669834136963,-0.670487642288208,0.5983073711395264,-0.3929885923862457,0.0019020644249394536,-1.9620039893197827e-05,0.00223634485155344,0.0004304932663217187,0.0022894502617418766,-0.00034241925459355116,0.010134346804538168,-0.0041396456637237886,-0.0041396456637237886,0.00010134346804538168,-4.1396456637237884e-05,-4.1396456637237884e-05,0.004347268491983414,0.0011358100455254316,67 +illusion_0.75L,sr,68,13.6,1.1216429471969604,-0.4679229259490967,0.7614156603813171,-0.6774071455001831,0.5745886564254761,-0.36756759881973267,0.0018994318088516593,-1.2931597666465677e-05,0.0022405479103326797,0.0004417623858898878,0.0022770906798541546,-0.00032750924583524466,0.007995852987714006,-0.0033278887123123113,-0.0033278887123123113,7.995852987714006e-05,-3.327888712312311e-05,-3.327888712312311e-05,0.004345463588833809,0.0010489318519830704,68 +illusion_0.75L,sr,69,13.8,1.15640127658844,-0.4803098440170288,0.7654392719268799,-0.6688260436058044,0.5532622337341309,-0.334123432636261,0.001899410504847765,-6.066408332117135e-06,0.0022487828973680735,0.0004486589750740677,0.0022684247232973576,-0.00031085574300959706,0.006677398807235713,-0.0031599083392664655,-0.0031599083392664655,6.677398807235713e-05,-3.1599083392664654e-05,-3.1599083392664654e-05,0.004340487066656351,0.0009170636185444891,69 +illusion_0.75L,sr,70,14.0,1.19275963306427,-0.49030008912086487,0.7642108201980591,-0.6406832337379456,0.5329161286354065,-0.2925803065299988,0.0019037654856219888,3.914557851203426e-07,0.002261803485453129,0.0004512414743658155,0.0022643236443400383,-0.00029267813079059124,0.00541486497209937,-0.0030498203647834586,-0.0030498203647834586,5.41486497209937e-05,-3.0498203647834587e-05,-3.0498203647834587e-05,0.004329410847276449,0.0007459750631824136,70 +illusion_0.75L,sr,71,14.2,1.2301222085952759,-0.49726665019989014,0.7571839094161987,-0.5916934013366699,0.514448344707489,-0.2429625391960144,0.001911319443024695,6.8889494286850095e-06,0.002279299544170499,0.0004499759234022349,0.0022649613674730062,-0.00027430831687524915,0.003109824005450437,-0.002178867102705308,-0.002178867102705308,3.109824005450437e-05,-2.178867102705308e-05,-2.178867102705308e-05,0.004308085888624191,0.000542854773811996,71 +illusion_0.75L,sr,72,14.4,1.267937421798706,-0.5002312660217285,0.7441258430480957,-0.5229924917221069,0.49969345331192017,-0.18547403812408447,0.0019182194955646992,1.2975224308320321e-05,0.0022971595171839,0.0004460678610485047,0.002266651252284646,-0.0002575686667114496,0.0011270990792097355,-0.0015336374084284465,-0.0015336374084284465,1.1270990792097355e-05,-1.5336374084284464e-05,-1.5336374084284464e-05,0.0042798398062586784,0.000316097226459533,72 +illusion_0.75L,sr,73,14.6,1.304511308670044,-0.49753281474113464,0.724854588508606,-0.43736863136291504,0.49095767736434937,-0.12183666974306107,0.00192240159958601,1.857914321590215e-05,0.0023118306417018175,0.0004403664788696915,0.00226603914052248,-0.00024337906506843865,-0.0010760062120770547,-0.0006917173218932496,-0.0006917173218932496,-1.0760062120770547e-05,-6.917173218932496e-06,-6.917173218932496e-06,0.004256341140717268,7.510853174608201e-05,73 +illusion_0.75L,sr,74,14.8,1.337403416633606,-0.48669320344924927,0.6995964646339417,-0.33697205781936646,0.4909442961215973,-0.05527741089463234,0.0019259767141193151,2.3703265469521284e-05,0.002325516426935792,0.00043291092151775956,0.002265678718686104,-0.0002321878564544022,-0.003464968174647282,0.00033102738730241346,0.00033102738730241346,-3.464968174647282e-05,3.310273873024135e-06,3.310273873024135e-06,0.004248499870300293,-0.00016992665769066662,74 +illusion_0.75L,sr,75,15.0,1.3631584644317627,-0.46445944905281067,0.6690961718559265,-0.2226645052433014,0.502276599407196,0.009365632198750973,0.0019267079187557101,2.8252550691831857e-05,0.002335671568289399,0.0004248138575349003,0.0022633394692093134,-0.0002252827980555594,-0.005714685464312599,0.0013110477549137314,0.0013110477549137314,-5.7146854643125995e-05,1.3110477549137314e-05,1.3110477549137314e-05,0.00425688037648797,-0.0004083740059286356,75 +illusion_0.75L,sr,76,15.2,1.377921462059021,-0.4270874857902527,0.6349999904632568,-0.09457799047231674,0.5267690420150757,0.06676255911588669,0.0019284719601273537,3.199251295882277e-05,0.0023461992386728525,0.00041589379543438554,0.0022630938328802586,-0.00022246388834901154,-0.007733872593415805,0.0021961318666428448,0.0021961318666428448,-7.733872593415805e-05,2.196131866642845e-05,2.196131866642845e-05,0.004272068850696087,-0.0006296037463471293,76 +illusion_0.75L,sr,77,15.4,1.3777527809143066,-0.3709149956703186,0.5998387932777405,0.045715559273958206,0.563523530960083,0.1132243275642395,0.0019293837249279022,3.4876044082921e-05,0.0023556025698781013,0.0004073551972396672,0.0022636535577476025,-0.0002246609510621056,-0.009852031335689515,0.0032384234502846124,0.0032384234502846124,-9.852031335689516e-05,3.2384234502846124e-05,3.2384234502846124e-05,0.004284536466002464,-0.0008235537097789347,77 +illusion_0.75L,sr,78,15.6,1.3589370250701904,-0.29226866364479065,0.5666790008544922,0.19478732347488403,0.6080494523048401,0.14987409114837646,0.001926847267895937,3.723016561707482e-05,0.00235803984105587,0.00039946488686837256,0.002259457018226385,-0.00023161065473686904,-0.011975886536842034,0.0043790590615643415,0.0043790590615643415,-0.00011975886536842034,4.3790590615643414e-05,4.3790590615643414e-05,0.004293113015592098,-0.000981337740086019,78 +illusion_0.75L,sr,79,15.8,1.3178908824920654,-0.18796581029891968,0.5393421649932861,0.34577447175979614,0.6537353992462158,0.18228182196617126,0.0019230054458603263,3.8887661503395066e-05,0.0023590554483234882,0.0003924886987078935,0.002256304956972599,-0.00024339091032743454,-0.013174492992569495,0.004942644193390022,0.004942644193390022,-0.00013174492992569495,4.9426441933900225e-05,4.9426441933900225e-05,0.004303110297769308,-0.001095808343961835,79 +illusion_0.75L,sr,80,16.0,1.2528915405273438,-0.057752180844545364,0.5229441523551941,0.4868277311325073,0.6958708167076111,0.2160121202468872,0.0019210900645703077,3.920585731975734e-05,0.0023604584857821465,0.0003855473187286407,0.0022560004144906998,-0.0002587914641480893,-0.013558945205026166,0.005023911763106445,0.005023911763106445,-0.00013558945205026165,5.023911763106445e-05,5.023911763106445e-05,0.004317091777920723,-0.0011619804427027702,80 +illusion_0.75L,sr,81,16.2,1.167083740234375,0.09218364953994751,0.5236048698425293,0.6009323596954346,0.7340152263641357,0.25236061215400696,0.0019222274422645569,3.861263394355774e-05,0.002363845007494092,0.00037917180452495813,0.002259987173601985,-0.0002773393061943352,-0.01446156859746281,0.00560871292455576,0.00560871292455576,-0.0001446156859746281,5.60871292455576e-05,5.60871292455576e-05,0.0043295822106301785,-0.0011772552970796824,81 +illusion_0.75L,sr,82,16.4,1.0693622827529907,0.24827493727207184,0.5455117225646973,0.6719841957092285,0.7702889442443848,0.2889007329940796,0.0019272351637482643,3.7432200770126656e-05,0.0023707831278443336,0.0003728710871655494,0.0022701548878103495,-0.00029798856121487916,-0.015138075860183245,0.006138721479269978,0.006138721479269978,-0.00015138075860183245,6.138721479269978e-05,6.138721479269978e-05,0.004332154523581266,-0.0011414313921704888,82 +illusion_0.75L,sr,83,16.6,0.9710177779197693,0.39307937026023865,0.5852741003036499,0.699954092502594,0.8065750598907471,0.32298678159713745,0.0019304172601550817,3.557036689016968e-05,0.002373739844188094,0.0003672414750326425,0.002278906060382724,-0.0003207869885955006,-0.01462547670860567,0.0059168456986409546,0.0059168456986409546,-0.00014625476708605672,5.916845698640955e-05,5.916845698640955e-05,0.004323046654462814,-0.0010565404081717134,83 +illusion_0.75L,sr,84,16.8,0.881702721118927,0.5098421573638916,0.6317232251167297,0.7056443691253662,0.843579888343811,0.35364338755607605,0.0019319516140967607,3.2526080758543685e-05,0.0023727156221866608,0.0003617062175180763,0.0022859193850308657,-0.00034458001027815044,-0.013177130174429135,0.005127468253736597,0.005127468253736597,-0.00013177130174429135,5.127468253736597e-05,5.127468253736597e-05,0.004309957846999168,-0.0009265808621421456,84 +illusion_0.75L,sr,85,17.0,0.8099782466888428,0.5844775438308716,0.67473965883255,0.7112268209457397,0.8813610672950745,0.3808075785636902,0.0019314794335514307,2.878632403735537e-05,0.0023681153543293476,0.00035579645191319287,0.0022912854328751564,-0.00036799898953177035,-0.012121328516415036,0.004738054839758872,0.004738054839758872,-0.00012121328516415037,4.738054839758872e-05,4.738054839758872e-05,0.0043023559264838696,-0.0007572299218736589,85 +illusion_0.75L,sr,86,17.2,0.7604686617851257,0.6129316091537476,0.7114037871360779,0.7241091728210449,0.9198318719863892,0.4047515392303467,0.0019299827981740236,2.378600947849918e-05,0.002360976068302989,0.00034908123780041933,0.0022959487978368998,-0.00038974982453510165,-0.01073977200686567,0.004201609924998004,0.004201609924998004,-0.0001073977200686567,4.201609924998004e-05,4.201609924998004e-05,0.0043017142452299595,-0.0005555875250138342,86 +illusion_0.75L,sr,87,17.4,0.73012375831604,0.6056303381919861,0.7430829405784607,0.7418619394302368,0.9589740037918091,0.42570221424102783,0.0019298249389976263,1.8953209291794337e-05,0.002353919204324484,0.00034090408007614315,0.002301958855241537,-0.0004083843086846173,-0.010283499102812108,0.004439605056759631,0.004439605056759631,-0.00010283499102812108,4.4396050567596314e-05,4.4396050567596314e-05,0.004300643689930439,-0.0003299686941318214,87 +illusion_0.75L,sr,88,17.6,0.7092968225479126,0.5801941156387329,0.7711195945739746,0.7607528567314148,0.9987806081771851,0.4438519775867462,0.0019295895472168922,1.3939996279077604e-05,0.0023459617514163256,0.0003308642189949751,0.0023082555271685123,-0.0004236119566485286,-0.008326733198436187,0.0036286503425271253,0.0036286503425271253,-8.326733198436188e-05,3.6286503425271255e-05,3.6286503425271255e-05,0.00429190369322896,-8.971420174930245e-05,88 +illusion_0.75L,sr,89,17.8,0.6885035634040833,0.5491849780082703,0.7958633303642273,0.776763916015625,1.0392894744873047,0.4592745900154114,0.0019269267795607448,8.222864380513784e-06,0.0023337036836892366,0.0003198945487383753,0.0023107302840799093,-0.0004352263640612364,-0.005658152859164132,0.002348742279449919,0.002348742279449919,-5.6581528591641316e-05,2.348742279449919e-05,2.348742279449919e-05,0.004277124535292387,0.00015503856411669403,89 +illusion_0.75L,sr,90,18.0,0.6631391644477844,0.5156140327453613,0.8169142007827759,0.7840750217437744,1.0806537866592407,0.47199809551239014,0.0019233720377087593,2.317480721103493e-06,0.0023212216328829527,0.00030796744977124035,0.002313113771378994,-0.0004421976627781987,-0.0040056103965131935,0.0018442245152451209,0.0018442245152451209,-4.005610396513194e-05,1.844224515245121e-05,1.844224515245121e-05,0.004265474621206522,0.00039368137368001044,90 +illusion_0.75L,sr,91,18.2,0.633233904838562,0.47659680247306824,0.8332778215408325,0.7751429080963135,1.1230933666229248,0.4819127917289734,0.0019227276789024472,-3.09298684442183e-06,0.002312314696609974,0.00029518373776227236,0.002319067483767867,-0.00044446971151046455,-0.0026205048348755117,0.0015441288970898144,0.0015441288970898144,-2.620504834875512e-05,1.5441288970898144e-05,1.5441288970898144e-05,0.004263981245458126,0.0006155874580144882,91 +illusion_0.75L,sr,92,18.4,0.6010900139808655,0.42791229486465454,0.8435145020484924,0.7431294918060303,1.1666380167007446,0.48873183131217957,0.0019247682066634297,-8.152006557793356e-06,0.0023067714646458626,0.0002821441157720983,0.0023280729074031115,-0.000442574848420918,-0.000218114143359191,0.0004908315094079288,0.0004908315094079288,-2.18114143359191e-06,4.908315094079287e-06,4.908315094079287e-06,0.004270609002560377,0.0008106737514026463,92 +illusion_0.75L,sr,93,18.6,0.5698515176773071,0.3666219413280487,0.8465175032615662,0.6855533719062805,1.2111057043075562,0.4918633997440338,0.001931668259203434,-1.3303771993378177e-05,0.0023082876577973366,0.00026965446886606514,0.00234332587569952,-0.0004370927345007658,0.0026248941601209226,-0.0009038160486515914,-0.0009038160486515914,2.6248941601209228e-05,-9.038160486515914e-06,-9.038160486515914e-06,0.00427780719473958,0.0009700104128569365,93 +illusion_0.75L,sr,94,18.8,0.5424081683158875,0.29141852259635925,0.8417778611183167,0.6049549579620361,1.256184458732605,0.4901794195175171,0.0019376585260033607,-1.834834984038025e-05,0.0023098308593034744,0.00025946798268705606,0.00235760398209095,-0.0004295524558983743,0.004534937476480511,-0.00164751374532493,-0.00164751374532493,4.534937476480511e-05,-1.64751374532493e-05,-1.64751374532493e-05,0.004282041918486357,0.00108638487290591,94 +illusion_0.75L,sr,95,19.0,0.5216461420059204,0.20472323894500732,0.8292355537414551,0.5077812671661377,1.2998216152191162,0.48179298639297485,0.0019418325973674655,-2.247781776532065e-05,0.0023102043196558952,0.00025248844758607447,0.002369486028328538,-0.0004207165620755404,0.005751258581696152,-0.001926609147288389,-0.001926609147288389,5.751258581696152e-05,-1.9266091472883892e-05,-1.9266091472883892e-05,0.004287917632609606,0.001154729281552136,95 +illusion_0.75L,sr,96,19.2,0.5095183849334717,0.1092485785484314,0.808817982673645,0.39550819993019104,1.3398032188415527,0.46355536580085754,0.0019434167770668864,-2.574430254753679e-05,0.0023093060590326786,0.00024938699789345264,0.0023788020480424166,-0.0004115474584978074,0.007736817740307981,-0.002834888847170501,-0.002834888847170501,7.736817740307981e-05,-2.834888847170501e-05,-2.834888847170501e-05,0.004301857203245163,0.0011723487405106425,96 +illusion_0.75L,sr,97,19.4,0.5081629753112793,0.011739912442862988,0.7815179228782654,0.2674208879470825,1.3717483282089233,0.43160971999168396,0.0019430924439802766,-2.8769352866220288e-05,0.0023064312990754843,0.0002499708498362452,0.0023844989482313395,-0.00040237419307231903,0.010321907339632536,-0.004250056746664364,-0.004250056746664364,0.00010321907339632536,-4.2500567466643645e-05,-4.2500567466643645e-05,0.004322571214288473,0.0011389366118237376,97 +illusion_0.75L,sr,98,19.6,0.5196765661239624,-0.08094798028469086,0.7495769262313843,0.11970029771327972,1.3914397954940796,0.3812516927719116,0.0019434929126873612,-3.1549978302791715e-05,0.002305596601217985,0.0002545938186813146,0.002390229143202305,-0.0003935291606467217,0.011905228168391208,-0.0050038704827186295,-0.0050038704827186295,0.00011905228168391207,-5.00387048271863e-05,-5.00387048271863e-05,0.0043395934626460075,0.0010564166586846113,98 +illusion_0.75L,sr,99,19.8,0.5457546710968018,-0.15942350029945374,0.7172305583953857,-0.045268964022397995,1.3945159912109375,0.3086981773376465,0.001942959032021463,-3.33039861288853e-05,0.0023046100977808237,0.00026304952916689217,0.002393871545791626,-0.00038521780516020954,0.01216037759043355,-0.004872499340945961,-0.004872499340945961,0.0001216037759043355,-4.8724993409459616e-05,-4.8724993409459616e-05,0.004342196509242058,0.0009286822751164436,99 +illusion_0.75L,sr,100,20.0,0.585995078086853,-0.21766430139541626,0.6888386011123657,-0.22059516608715057,1.3767962455749512,0.2101135104894638,0.001939407316967845,-3.3869597245939076e-05,0.0023003024980425835,0.0002755153982434422,0.0023922862019389868,-0.0003783839929383248,0.01276683078607542,-0.005095586809103686,-0.005095586809103686,0.0001276683078607542,-5.095586809103686e-05,-5.095586809103686e-05,0.004329230170696974,0.0007613134803250432,100 +illusion_0.75L,sr,101,20.2,0.6356004476547241,-0.25661608576774597,0.6688918471336365,-0.3917948603630066,1.3339670896530151,0.08421017974615097,0.0019347651395946741,-3.3910517231561244e-05,0.002295776968821883,0.00029058559448458254,0.0023883371613919735,-0.0003722253895830363,0.014085372759283954,-0.005938743892810849,-0.005938743892810849,0.00014085372759283955,-5.938743892810849e-05,-5.938743892810849e-05,0.0043093012645840645,0.0005613267421722412,101 +illusion_0.75L,sr,102,20.4,0.6873619556427002,-0.2849559485912323,0.6620275974273682,-0.5383352637290955,1.2651164531707764,-0.06312523782253265,0.001930644386447966,-3.370865306351334e-05,0.002292232820764184,0.00030767734278924763,0.0023831238504499197,-0.0003667201963253319,0.01452740206034958,-0.00623780024082176,-0.00623780024082176,0.0001452740206034958,-6.23780024082176e-05,-6.23780024082176e-05,0.004291526973247528,0.0003369711630512029,102 +illusion_0.75L,sr,103,20.6,0.7364208102226257,-0.31112468242645264,0.6719561219215393,-0.6383970379829407,1.1770451068878174,-0.21508225798606873,0.0019296311074867845,-3.2649768400005996e-05,0.002293161815032363,0.0003257142670918256,0.0023802500218153,-0.00036120330332778394,0.01341969920568767,-0.005499331625459028,-0.005499331625459028,0.0001341969920568767,-5.499331625459028e-05,-5.499331625459028e-05,0.004277484491467476,9.754252096172422e-05,103 +illusion_0.75L,sr,104,20.8,0.7839325070381165,-0.3381911814212799,0.6995118856430054,-0.6851035952568054,1.0863851308822632,-0.34831535816192627,0.0019380091689527035,-3.0502385925501585e-05,0.002306021051481366,0.0003445605980232358,0.002387640066444874,-0.00035619939444586635,0.012132632754061484,-0.004732180080717678,-0.004732180080717678,0.00012132632754061484,-4.732180080717678e-05,-4.732180080717678e-05,0.0042631374672055244,-0.00014684362395200878,104 +illusion_0.75L,sr,105,21.0,0.8254247307777405,-0.3621295988559723,0.7319447994232178,-0.6905348300933838,0.9984991550445557,-0.4408612549304962,0.0019363650353625417,-2.740612944762688e-05,0.002307624788954854,0.00036158354487270117,0.002381555736064911,-0.00034950210829265416,0.011570863878442042,-0.004583154367237205,-0.004583154367237205,0.00011570863878442042,-4.583154367237205e-05,-4.583154367237205e-05,0.004247708711773157,-0.0003855770919471979,105 +illusion_0.75L,sr,106,21.2,0.8678367733955383,-0.3842242360115051,0.7655799984931946,-0.6873084902763367,0.9302557110786438,-0.48829981684684753,0.0019379424629732966,-2.4470673452015035e-05,0.0023132076021283865,0.00037858111318200827,0.0023780008777976036,-0.0003437365230638534,0.010941534337997827,-0.004492355527960311,-0.004492355527960311,0.00010941534337997827,-4.492355527960311e-05,-4.492355527960311e-05,0.004238303285092115,-0.0006080058519728482,106 +illusion_0.75L,sr,107,21.4,0.9096685647964478,-0.40345174074172974,0.7944763898849487,-0.6889665722846985,0.8804562091827393,-0.4971875250339508,0.0019375142874196172,-2.0790206690435298e-05,0.0023173110093921423,0.00039384517003782094,0.0023714445997029543,-0.000337562378263101,0.0086563073812152,-0.003246621512866823,-0.003246621512866823,8.6563073812152e-05,-3.2466215128668234e-05,-3.2466215128668234e-05,0.004244087729603052,-0.0008040002430789173,107 +illusion_0.75L,sr,108,21.6,0.9512227773666382,-0.42002734541893005,0.8187807202339172,-0.6973130106925964,0.843890368938446,-0.48311883211135864,0.0019364855252206326,-1.6379117369069718e-05,0.0023206102196127176,0.0004066669207531959,0.0023632009979337454,-0.0003306771395727992,0.006519091222309661,-0.002184681946528391,-0.002184681946528391,6.519091222309661e-05,-2.1846819465283913e-05,-2.1846819465283913e-05,0.004266131203621626,-0.0009645655518397689,108 +illusion_0.75L,sr,109,21.8,0.9926062822341919,-0.4340975880622864,0.8395019769668579,-0.7098146677017212,0.8129568696022034,-0.4596172571182251,0.001935891225002706,-1.1448410077719018e-05,0.002324591390788555,0.00041631757630966604,0.0023549702018499374,-0.0003225972759537399,0.005083678611129794,-0.001685273351815966,-0.001685273351815966,5.0836786111297936e-05,-1.6852733518159662e-05,-1.6852733518159662e-05,0.00429448951035738,-0.0010824102209880948,109 +illusion_0.75L,sr,110,22.0,1.034171462059021,-0.44579029083251953,0.857164740562439,-0.7229957580566406,0.7817069888114929,-0.4326038062572479,0.0019358349964022636,-6.6421494011592586e-06,0.002329382346943021,0.0004226212331559509,0.0023471335880458355,-0.00031373181263916194,0.004109872602477034,-0.0015601721334636762,-0.0015601721334636762,4.1098726024770345e-05,-1.5601721334636762e-05,-1.5601721334636762e-05,0.0043162815272808075,-0.0011523779248818755,110 +illusion_0.75L,sr,111,22.2,1.0761334896087646,-0.4550965428352356,0.8713608384132385,-0.7313045263290405,0.7476345300674438,-0.4018230736255646,0.0019333123927935958,-2.189010501751909e-06,0.002330474555492401,0.00042571837548166513,0.0023354385048151016,-0.0003046763886231929,0.002499576649130572,-0.0009842330001653098,-0.0009842330001653098,2.4995766491305722e-05,-9.842330001653098e-06,-9.842330001653098e-06,0.004326277878135443,-0.0011716809822246432,111 +illusion_0.75L,sr,112,22.4,1.1215238571166992,-0.46301037073135376,0.8831994533538818,-0.728435754776001,0.7128795385360718,-0.36529862880706787,0.001934930682182312,2.365817181271268e-06,0.00233758008107543,0.00042668625246733427,0.0023299092426896095,-0.0002962485596071929,1.4389086237178057e-05,0.00023148311070214818,0.00023148311070214818,1.4389086237178058e-07,2.3148311070214817e-06,2.3148311070214817e-06,0.004328808281570673,-0.0011399217182770371,112 +illusion_0.75L,sr,113,22.6,1.1621825695037842,-0.46571284532546997,0.8844726085662842,-0.7001614570617676,0.6739024519920349,-0.3171673119068146,0.0019274625228717923,7.272813945746748e-06,0.0023335583973675966,0.00042274929000996053,0.002313885372132063,-0.00028666824800893664,-0.0021215804359754524,0.0011961576359764345,0.0011961576359764345,-2.1215804359754526e-05,1.1961576359764346e-05,1.1961576359764346e-05,0.0043297018855810165,-0.0010589387966319919,113 +illusion_0.75L,sr,114,22.8,1.2066197395324707,-0.46608707308769226,0.880443811416626,-0.646527111530304,0.6388167142868042,-0.25840410590171814,0.001927973935380578,1.1873281437146943e-05,0.0023389076814055443,0.00041709610377438366,0.0023080147802829742,-0.00027845759177580476,-0.0029527437667751216,0.0012259118678982321,0.0012259118678982321,-2.9527437667751217e-05,1.2259118678982322e-05,1.2259118678982322e-05,0.0043281326070427895,-0.0009325520950369537,114 +illusion_0.75L,sr,115,23.0,1.2516297101974487,-0.46192049980163574,0.8682360649108887,-0.5664231777191162,0.6091253161430359,-0.18853312730789185,0.0019332350930199027,1.5507777789025567e-05,0.0023501738905906677,0.00040948300738818944,0.0023089100141078234,-0.00027162671904079616,-0.0037022483070610758,0.0012333846378102704,0.0012333846378102704,-3.702248307061076e-05,1.2333846378102705e-05,1.2333846378102705e-05,0.004317938350141048,-0.0007662828429602087,115 +illusion_0.75L,sr,116,23.2,1.2961772680282593,-0.45141398906707764,0.8477306365966797,-0.4641994833946228,0.5882663130760193,-0.11031772941350937,0.0019376692362129688,1.8514072507969104e-05,0.0023604445159435272,0.0004012680146843195,0.0023098422680050135,-0.0002673851267900318,-0.005670690595754646,0.0021844857686111364,0.0021844857686111364,-5.670690595754646e-05,2.1844857686111365e-05,2.1844857686111365e-05,0.004296679049730301,-0.0005671066464856267,116 +illusion_0.75L,sr,117,23.4,1.3377434015274048,-0.4317665994167328,0.8190771341323853,-0.34297069907188416,0.5796425342559814,-0.02932046726346016,0.0019409034866839647,2.146113183698617e-05,0.002369047375395894,0.0003934231644961983,0.0023104858119040728,-0.00026657929993234575,-0.007992971268409262,0.0034478559841732426,0.0034478559841732426,-7.992971268409262e-05,3.4478559841732425e-05,3.4478559841732425e-05,0.004271471872925758,-0.00034325156593695283,117 +illusion_0.75L,sr,118,23.6,1.372450351715088,-0.3990964889526367,0.7833753228187561,-0.20212484896183014,0.5860686302185059,0.04712999239563942,0.0019414705457165837,2.42364239966264e-05,0.002374187344685197,0.00038610483170486987,0.0023092671763151884,-0.0002690838882699609,-0.00917804832774221,0.003936771074697025,0.003936771074697025,-9.17804832774221e-05,3.936771074697025e-05,3.936771074697025e-05,0.004254178609699011,-0.00010401237523183227,118 +illusion_0.75L,sr,119,23.8,1.3988136053085327,-0.3497232496738434,0.745563268661499,-0.04126204177737236,0.6099588871002197,0.1124332994222641,0.0019453767454251647,2.6269801310263574e-05,0.0023824090603739023,0.00038082487299107015,0.0023125139996409416,-0.0002758297778200358,-0.009255805044073015,0.0036841616844946537,0.0036841616844946537,-9.255805044073016e-05,3.6841616844946536e-05,3.6841616844946536e-05,0.004250772297382355,0.00014047697186470032,119 +illusion_0.75L,sr,120,24.0,1.4007741212844849,-0.2768438458442688,0.7053069472312927,0.13410285115242004,0.6437475085258484,0.16274207830429077,0.0019395346753299236,2.7129110094392672e-05,0.0023777803871780634,0.00037431292003020644,0.002304908586665988,-0.00028385024052113295,-0.009601492014503027,0.003697361328490141,0.003697361328490141,-9.601492014503027e-05,3.697361328490141e-05,3.697361328490141e-05,0.004256573971360922,0.000379570439690724,120 +illusion_0.75L,sr,121,24.2,1.383222222328186,-0.17973193526268005,0.6745011210441589,0.31033194065093994,0.6857195496559143,0.202341228723526,0.001938337692990899,2.7500198484631255e-05,0.0023775268346071243,0.00036968651693314314,0.0023032785393297672,-0.0002951548376586288,-0.010546117967472582,0.004251343920262746,0.004251343920262746,-0.00010546117967472582,4.251343920262746e-05,4.251343920262746e-05,0.00426256749778986,0.0006025657639838755,121 +illusion_0.75L,sr,122,24.4,1.337308406829834,-0.0573650598526001,0.6579211950302124,0.4660513997077942,0.7281022071838379,0.2370736300945282,0.0019352980889379978,2.7961228624917567e-05,0.0023734369315207005,0.0003658967325463891,0.0022997278720140457,-0.0003084825293626636,-0.01103716424257066,0.004547658118338654,0.004547658118338654,-0.0001103716424257066,4.547658118338654e-05,4.547658118338654e-05,0.004265558440238237,0.0007992724422365427,122 +illusion_0.75L,sr,123,24.6,1.2621556520462036,0.08235816657543182,0.6609666347503662,0.5773590207099915,0.7682876586914062,0.27036553621292114,0.0019298255210742354,2.712259447434917e-05,0.0023657323326915503,0.0003627812839113176,0.002294525969773531,-0.00032318002195097506,-0.009592885719096451,0.003504950481068123,0.003504950481068123,-9.592885719096451e-05,3.504950481068123e-05,3.504950481068123e-05,0.004270726349204779,0.0009606286184862256,123 +illusion_0.75L,sr,124,24.8,1.166239619255066,0.22061286866664886,0.6835752129554749,0.6327778100967407,0.8067229390144348,0.3018816113471985,0.001925270538777113,2.5530014681862667e-05,0.00235752877779305,0.0003594994777813554,0.0022902903147041798,-0.00033805743441917,-0.009038521774585556,0.0032167048001885273,0.0032167048001885273,-9.038521774585556e-05,3.2167048001885275e-05,3.2167048001885275e-05,0.004283971153199673,0.001079274108633399,124 +illusion_0.75L,sr,125,25.0,1.0656112432479858,0.33419549465179443,0.7176220417022705,0.6462388038635254,0.8444706201553345,0.3303389251232147,0.0019235244253650308,2.3288712327484973e-05,0.002351336646825075,0.00035536359064280987,0.0022897457238286734,-0.00035253711394034326,-0.008702499924577257,0.0031615395044272063,0.0031615395044272063,-8.702499924577258e-05,3.161539504427206e-05,3.161539504427206e-05,0.004303178749978542,0.0011499872198328376,125 +illusion_0.75L,sr,126,25.2,0.9784629940986633,0.4082435965538025,0.7542007565498352,0.6468985676765442,0.8843738436698914,0.3562333583831787,0.0019313350785523653,2.079799560306128e-05,0.0023559723049402237,0.0003510591632220894,0.0023013674654066563,-0.0003664657415356487,-0.008171742105144951,0.003044166766322104,0.003044166766322104,-8.171742105144952e-05,3.044166766322104e-05,3.044166766322104e-05,0.004318722058087587,0.00116992206312716,126 +illusion_0.75L,sr,127,25.4,0.9063597917556763,0.43804797530174255,0.781822681427002,0.6474405527114868,0.9199788570404053,0.37703555822372437,0.0019296816317364573,1.7980393749894574e-05,0.0023486732970923185,0.0003446750051807612,0.002302631502971053,-0.0003773647185880691,-0.006933403971152816,0.002468356763483316,0.002468356763483316,-6.933403971152816e-05,2.468356763483316e-05,2.468356763483316e-05,0.004322815220803022,0.001138634397648275,127 +illusion_0.75L,sr,128,25.6,0.856126070022583,0.43738415837287903,0.8059297800064087,0.6560776233673096,0.9582167267799377,0.39583706855773926,0.00193195475731045,1.449213596060872e-05,0.0023452667519450188,0.00033852580236271024,0.0023087223526090384,-0.0003877075796481222,-0.004929675151653719,0.0014029497065629268,0.0014029497065629268,-4.929675151653719e-05,1.4029497065629268e-05,1.4029497065629268e-05,0.004317114595323801,0.0010579300578683615,128 +illusion_0.75L,sr,129,25.8,0.8189221024513245,0.41924867033958435,0.8257819414138794,0.6691584587097168,0.996878981590271,0.41190123558044434,0.0019323143642395735,1.0217825547442771e-05,0.002339524682611227,0.0003319604729767889,0.0023131531197577715,-0.000396399904275313,-0.0034571673851613617,0.0007763122505614721,0.0007763122505614721,-3.457167385161362e-05,7.76312250561472e-06,7.76312250561472e-06,0.004309931304305792,0.000931612157728523,129 +illusion_0.75L,sr,130,26.0,0.7869970202445984,0.39320647716522217,0.8421186804771423,0.6836276054382324,1.0361855030059814,0.4253905117511749,0.0019312246004119515,5.830610916746082e-06,0.0023314938880503178,0.0003250069567002356,0.0023157233372330666,-0.0004029995179735124,-0.0029905772150979615,0.0009271711256851594,0.0009271711256851594,-2.9905772150979616e-05,9.271711256851594e-06,9.271711256851594e-06,0.004306346643716097,0.0007652023923583329,130 +illusion_0.75L,sr,131,26.2,0.7554827332496643,0.3625795245170593,0.8548383116722107,0.6945659518241882,1.0761648416519165,0.43626782298088074,0.0019307957263663411,1.8370378711551894e-06,0.0023245506454259157,0.0003173865261487663,0.0023196497932076454,-0.00040697428630664945,-0.002366023349275043,0.0009819958307260325,0.0009819958307260325,-2.366023349275043e-05,9.819958307260325e-06,9.819958307260325e-06,0.00430266372859478,0.0005656927824020386,131 +illusion_0.75L,sr,132,26.4,0.7225838303565979,0.3264465034008026,0.8631656169891357,0.6946014165878296,1.117031455039978,0.44443172216415405,0.0019307495094835758,-2.0423869955266127e-06,0.0023176802787929773,0.00030960040749050677,0.002323687309399247,-0.0004086261906195432,-0.0006834072992966023,0.000266781438573116,0.000266781438573116,-6.834072992966023e-06,2.6678143857311598e-06,2.6678143857311598e-06,0.00429161824285984,0.0003413430822547525,132 +illusion_0.75L,sr,133,26.6,0.6889740228652954,0.282601922750473,0.8657678365707397,0.6749577522277832,1.158900260925293,0.44959861040115356,0.0019289448391646147,-6.189858595462283e-06,0.002308728639036417,0.00030209359829314053,0.0023252961691468954,-0.000408183375839144,0.0012697405673109752,-0.0006468097464822913,-0.0006468097464822913,1.2697405673109753e-05,-6.468097464822913e-06,-6.468097464822913e-06,0.004272329621016979,0.00010149206354981288,133 +illusion_0.75L,sr,134,26.8,0.6570556163787842,0.22973965108394623,0.8613747358322144,0.6291193962097168,1.201583981513977,0.45121482014656067,0.0019252757774665952,-1.0423300409456715e-05,0.002298709936439991,0.0002955813833978027,0.0023252421524375677,-0.00040613097371533513,0.0023522419925690492,-0.0009329199236941099,-0.0009329199236941099,2.3522419925690492e-05,-9.329199236941098e-06,-9.329199236941098e-06,0.004253413062542677,-0.00014367327094078064,134 +illusion_0.75L,sr,135,27.0,0.6300485730171204,0.1681693196296692,0.8492926955223083,0.5560934543609619,1.2447725534439087,0.44843029975891113,0.00192213652189821,-1.3989530089020263e-05,0.0022893554996699095,0.0002898296806961298,0.0023251862730830908,-0.00040216726483777165,0.0027131007129889174,-0.0007139551220893964,-0.0007139551220893964,2.7131007129889176e-05,-7.1395512208939635e-06,-7.1395512208939635e-06,0.004245383199304342,-0.0003834486415144056,135 +illusion_0.75L,sr,136,27.2,0.6115430593490601,0.10015277564525604,0.8291762471199036,0.4592689573764801,1.287737250328064,0.43977925181388855,0.001921638147905469,-1.687469739408698e-05,0.002284071873873472,0.0002854484773706645,0.002328449860215187,-0.00039712488069199026,0.0038430374940586626,-0.0010967310028743502,-0.0010967310028743502,3.8430374940586624e-05,-1.0967310028743502e-05,-1.0967310028743502e-05,0.004250668920576572,-0.0006070726667530835,136 +illusion_0.75L,sr,137,27.4,0.6052993535995483,0.030831970274448395,0.8011122345924377,0.3432651162147522,1.3283976316452026,0.42308247089385986,0.0019251852063462138,-1.96148448594613e-05,0.0022843186743557453,0.0002822593378368765,0.00233615655452013,-0.0003909685474354774,0.005692818089938753,-0.0020489625867583655,-0.0020489625867583655,5.692818089938753e-05,-2.0489625867583657e-05,-2.0489625867583657e-05,0.004262279253453016,-0.0008042993140406907,137 +illusion_0.75L,sr,138,27.6,0.613747239112854,-0.03391236066818237,0.7657759785652161,0.20915651321411133,1.3637115955352783,0.3952685594558716,0.0019290834898129106,-2.2391868697013706e-05,0.0022863035555928946,0.00028171928715892136,0.0023443091195076704,-0.0003852161462418735,0.00684894027113999,-0.0025408071535291676,-0.0025408071535291676,6.84894027113999e-05,-2.5408071535291675e-05,-2.5408071535291675e-05,0.0042722816579043865,-0.0009660187060944736,138 +illusion_0.75L,sr,139,27.8,0.6364399790763855,-0.08955816179513931,0.7254621386528015,0.05683347210288048,1.3893810510635376,0.3526517450809479,0.0019323623273521662,-2.453686283843126e-05,0.0022883405908942223,0.00028378417482599616,0.002351078437641263,-0.0003799078695010394,0.0067487532851329135,-0.0021658021151766613,-0.0021658021151766613,6.748753285132914e-05,-2.1658021151766612e-05,-2.1658021151766612e-05,0.004280176013708115,-0.0010848336387425661,139 +illusion_0.75L,sr,140,28.0,0.6692349910736084,-0.13560989499092102,0.6848171353340149,-0.1098240539431572,1.4004725217819214,0.2916165590286255,0.0019326054025441408,-2.5665129214758053e-05,0.0022879005409777164,0.0002890155592467636,0.0023540379479527473,-0.00037591796717606485,0.006642432335539599,-0.001856273455206267,-0.001856273455206267,6.6424323355396e-05,-1.8562734552062672e-05,-1.8562734552062672e-05,0.004291605204343796,-0.0011554996017366648,140 +illusion_0.75L,sr,141,28.2,0.7061579823493958,-0.17571714520454407,0.6502511501312256,-0.2799749970436096,1.3918235301971436,0.20896930992603302,0.0019318083068355918,-2.6125917429453693e-05,0.002286431146785617,0.0002966822648886591,0.0023544093128293753,-0.0003727382281795144,0.0074179601011496515,-0.0022644702500011216,-0.0022644702500011216,7.417960101149652e-05,-2.2644702500011215e-05,-2.2644702500011215e-05,0.004309208132326603,-0.0011751636629924178,141 +illusion_0.75L,sr,142,28.4,0.7428004741668701,-0.2136770784854889,0.6293812990188599,-0.4341273009777069,1.3581132888793945,0.10330833494663239,0.0019301995635032654,-2.6526444344199263e-05,0.002284978050738573,0.0003062063187826425,0.0023531680926680565,-0.00037021454772911966,0.008147835303145584,-0.0027149122322675037,-0.0027149122322675037,8.147835303145584e-05,-2.7149122322675037e-05,-2.7149122322675037e-05,0.004326635040342808,-0.001143390778452158,142 +illusion_0.75L,sr,143,28.6,0.7780876159667969,-0.2504809498786926,0.6287511587142944,-0.5493735074996948,1.2955996990203857,-0.022298462688922882,0.0019291233038529754,-2.643588049977552e-05,0.0022843775805085897,0.00031722820131108165,0.002350981580093503,-0.0003678992798086256,0.007514457096903855,-0.002235770133691549,-0.002235770133691549,7.514457096903855e-05,-2.235770133691549e-05,-2.235770133691549e-05,0.004333213437348604,-0.0010620126267895103,143 +illusion_0.75L,sr,144,28.8,0.8127667307853699,-0.2848946750164032,0.6496503949165344,-0.6119360327720642,1.2070070505142212,-0.15581826865673065,0.0019262282876297832,-2.5137058401014656e-05,0.0022819305304437876,0.0003294620546512306,0.002345496788620949,-0.0003656960907392204,0.006252889698359735,-0.0013793612129897673,-0.0013793612129897673,6.252889698359735e-05,-1.3793612129897673e-05,-1.3793612129897673e-05,0.004324445500969887,-0.0009348725434392691,144 +illusion_0.75L,sr,145,29.0,0.8475863933563232,-0.3158262073993683,0.6845675706863403,-0.6313631534576416,1.1042789220809937,-0.27717137336730957,0.0019214263884350657,-2.2956741304369643e-05,0.0022778247948735952,0.00034204713301733136,0.0023370073176920414,-0.00036335710319690406,0.006159922865075321,-0.0014587261571492247,-0.0014587261571492247,6.159922865075322e-05,-1.4587261571492247e-05,-1.4587261571492247e-05,0.004306653048843145,-0.0007675446104258299,145 +illusion_0.75L,sr,146,29.2,0.8827593922615051,-0.34302791953086853,0.721534013748169,-0.6333574652671814,1.0042786598205566,-0.3667946755886078,0.0019170099403709173,-2.072180541290436e-05,0.0022742764558643103,0.00035402621142566204,0.002327641239389777,-0.000360212434316054,0.006657496935943024,-0.0020408467987478793,-0.0020408467987478793,6.657496935943024e-05,-2.040846798747879e-05,-2.040846798747879e-05,0.004290517885237932,-0.000567082257475704,146 +illusion_0.75L,sr,147,29.4,0.9184670448303223,-0.36685770750045776,0.7532418966293335,-0.6368570923805237,0.9201257228851318,-0.41586750745773315,0.001914730528369546,-1.835980947362259e-05,0.0022737523540854454,0.0003649608697742224,0.0023200016003102064,-0.00035589924664236605,0.005958152313910628,-0.0018069933205474287,-0.0018069933205474287,5.958152313910628e-05,-1.8069933205474287e-05,-1.8069933205474287e-05,0.004280740395188332,-0.00034181104274466634,147 +illusion_0.75L,sr,148,29.6,0.954684853553772,-0.38752472400665283,0.7786170244216919,-0.646414041519165,0.857297956943512,-0.42840462923049927,0.0019170367158949375,-1.5237847946991678e-05,0.0022791558876633644,0.00037399082793854177,0.0023173708468675613,-0.0003499643935356289,0.004335840595833723,-0.0009532923908873898,-0.0009532923908873898,4.335840595833723e-05,-9.532923908873899e-06,-9.532923908873899e-06,0.004273268859833479,-0.00010113600001204759,148 +illusion_0.75L,sr,149,29.8,0.9916586875915527,-0.40531063079833984,0.7991483807563782,-0.6602429151535034,0.8123509883880615,-0.4167279899120331,0.0019205313874408603,-1.1441379683674313e-05,0.0022863061167299747,0.00038162001874297857,0.0023158672265708447,-0.0003433434758335352,0.003443376250713358,-0.0006846172496751783,-0.0006846172496751783,3.443376250713358e-05,-6.846172496751783e-06,-6.846172496751783e-06,0.004262732807546854,0.00014469395682681352,149 +illusion_0.75L,sr,150,30.0,1.0297192335128784,-0.42041221261024475,0.8159176111221313,-0.6754400134086609,0.7777517437934875,-0.39232882857322693,0.0019237506203353405,-7.60691546020098e-06,0.0022937289904803038,0.0003875962574966252,0.002313998993486166,-0.0003360655973665416,0.0033775785623410756,-0.0010580366834919835,-0.0010580366834919835,3.3775785623410755e-05,-1.0580366834919836e-05,-1.0580366834919836e-05,0.0042510125786066055,0.00038492129533551633,150 +illusion_0.75L,sr,151,30.2,1.0687620639801025,-0.43275195360183716,0.8289770483970642,-0.6874743700027466,0.747018575668335,-0.3615429401397705,0.0019245180301368237,-4.089013145858189e-06,0.002298671053722501,0.0003923982148990035,0.0023092355113476515,-0.00032888236455619335,0.0028082146731480268,-0.0010898162467028929,-0.0010898162467028929,2.8082146731480268e-05,-1.0898162467028928e-05,-1.0898162467028928e-05,0.004246690776199102,0.0006087439251132309,151 +illusion_0.75L,sr,152,30.4,1.1089162826538086,-0.4422492980957031,0.8378295302391052,-0.6895933747291565,0.7165566086769104,-0.325505793094635,0.001924323383718729,-4.1495661662338534e-07,0.0023023097310215235,0.00039547571213915944,0.0023030645679682493,-0.00032134715002030134,0.0012068034378034873,-0.00037792164589331,-0.00037792164589331,1.2068034378034874e-05,-3.7792164589331e-06,-3.7792164589331e-06,0.004255807958543301,0.000805890653282404,152 +illusion_0.75L,sr,153,30.6,1.1501907110214233,-0.4486267566680908,0.8414607048034668,-0.6735618710517883,0.6858786940574646,-0.2829928696155548,0.001923985662870109,3.706344614329282e-06,0.0023061404936015606,0.00039705485687591136,0.002297337632626295,-0.0003139967448078096,-0.00016728074633799196,0.00016063581408308356,0.00016063581408308356,-1.6728074633799197e-06,1.6063581408308357e-06,1.6063581408308357e-06,0.004274525213986635,0.0009672442683950067,153 +illusion_0.75L,sr,154,30.8,1.1924216747283936,-0.45141080021858215,0.8387492895126343,-0.6326540112495422,0.6565567255020142,-0.23268473148345947,0.0019239262910559773,7.651717169210315e-06,0.002309841103851795,0.0003968023811466992,0.0022918616887181997,-0.0003068700898438692,-0.0003879499221827731,-0.00014224077225188925,-0.00014224077225188925,-3.879499221827731e-06,-1.4224077225188926e-06,-1.4224077225188926e-06,0.004292297642678022,0.0010854192078113556,154 +illusion_0.75L,sr,155,31.0,1.235101342201233,-0.449838250875473,0.8288764357566833,-0.5650607943534851,0.63141930103302,-0.1746675670146942,0.0019228063756600022,1.08334797914722e-05,0.0023122343700379133,0.0003954755957238376,0.002285506809130311,-0.0003008364583365619,-0.0006237231699378863,-0.00041534620722151645,-0.00041534620722151645,-6.2372316993788635e-06,-4.153462072215165e-06,-4.153462072215165e-06,0.004302178509533405,0.0011552009964361787,155 +illusion_0.75L,sr,156,31.2,1.2774648666381836,-0.44267404079437256,0.8113703727722168,-0.4737078547477722,0.6138972640037537,-0.11077028512954712,0.0019194366177543998,1.3660813237947877e-05,0.0023117191158235073,0.00039318352355621755,0.002276855753734708,-0.0002958824043162167,-0.0020446972836843935,0.0002096947814599348,0.0002096947814599348,-2.0446972836843936e-05,2.096947814599348e-06,2.096947814599348e-06,0.004306729417294264,0.0011737841414287686,156 +illusion_0.75L,sr,157,31.4,1.317653775215149,-0.4281199276447296,0.7861079573631287,-0.36365580558776855,0.6076365113258362,-0.045422282069921494,0.0019159879302605987,1.6644095012452453e-05,0.0023108411114662886,0.0003902288153767586,0.002268827287480235,-0.0002923805150203407,-0.0036381322485716273,0.0009922551909643806,0.0009922551909643806,-3.6381322485716275e-05,9.922551909643806e-06,9.922551909643806e-06,0.004313030280172825,0.0011407959973439574,157 +illusion_0.75L,sr,158,31.6,1.3531283140182495,-0.40358245372772217,0.753171443939209,-0.2365945428609848,0.6150298118591309,0.01638808660209179,0.0019145761616528034,1.938409695867449e-05,0.002312083262950182,0.00038644555024802685,0.0022640081588178873,-0.0002902801497839391,-0.004009700594932344,0.0009184906501768057,0.0009184906501768057,-4.0097005949323444e-05,9.184906501768058e-06,9.184906501768058e-06,0.004322762601077557,0.0010581414680927992,158 +illusion_0.75L,sr,159,31.8,1.3801865577697754,-0.3661053478717804,0.714253842830658,-0.09287116676568985,0.6358699202537537,0.07038535177707672,0.00191693555098027,2.122960358974524e-05,0.0023172390647232533,0.0003819909179583192,0.0022641674149781466,-0.0002897539525292814,-0.003888766399224877,0.0005333193599954024,0.0005333193599954024,-3.888766399224877e-05,5.3331935999540244e-06,5.3331935999540244e-06,0.00432894192636013,0.0009297445067204535,159 +illusion_0.75L,sr,160,32.0,1.394777774810791,-0.31253185868263245,0.6730461716651917,0.06590261310338974,0.6665387749671936,0.11617262661457062,0.001920637208968401,2.229057645308785e-05,0.0023240395821630955,0.00037781320861540735,0.0022671129554510117,-0.0002913994831033051,-0.004642086983064862,0.0008471806987243037,0.0008471806987243037,-4.642086983064862e-05,8.471806987243037e-06,8.471806987243037e-06,0.004323208704590797,0.0007612616172991693,160 +illusion_0.75L,sr,161,32.2,1.3926585912704468,-0.24022942781448364,0.6354991793632507,0.23170490562915802,0.7014495730400085,0.1568135768175125,0.0019236718071624637,2.32178826991003e-05,0.002329335082322359,0.0003742240078281611,0.002269974909722805,-0.00029534861096180975,-0.005972474777402988,0.0016438533819704076,0.0016438533819704076,-5.972474777402988e-05,1.6438533819704075e-05,1.6438533819704075e-05,0.0043054320849478245,0.0005598256830126047,161 +illusion_0.75L,sr,162,32.4,1.3692129850387573,-0.14718639850616455,0.6089655756950378,0.38911381363868713,0.7363779544830322,0.1958792805671692,0.0019245098810642958,2.3931674149935134e-05,0.0023315399885177612,0.0003715432540047914,0.0022712266072630882,-0.000301978929201141,-0.006280620346897427,0.0017532288290693643,0.0017532288290693643,-6.280620346897428e-05,1.7532288290693642e-05,1.7532288290693642e-05,0.0042846668511629105,0.0003338336537126452,162 +illusion_0.75L,sr,163,32.6,1.3198041915893555,-0.03373634070158005,0.6010330319404602,0.5165178775787354,0.7701886892318726,0.23422710597515106,0.0019237878732383251,2.3762751879985444e-05,0.0023308286909013987,0.00036922338767908514,0.002270962344482541,-0.00031060396577231586,-0.005677570560007568,0.0012603738756167965,0.0012603738756167965,-5.677570560007568e-05,1.2603738756167965e-05,1.2603738756167965e-05,0.004270360339432955,9.274937474401668e-05,163 +illusion_0.75L,sr,164,32.8,1.2430839538574219,0.09366286545991898,0.6157699823379517,0.5956763029098511,0.803650975227356,0.2704980671405792,0.001922316150739789,2.2648840968031436e-05,0.0023285893257707357,0.00036722325603477657,0.0022704440634697676,-0.0003207549452781677,-0.005618031503331802,0.0012381105318537144,0.0012381105318537144,-5.618031503331802e-05,1.2381105318537144e-05,1.2381105318537144e-05,0.004263774491846561,-0.00015313613403122872,164 +illusion_0.75L,sr,165,33.0,1.1482462882995605,0.22073893249034882,0.6504006385803223,0.6290095448493958,0.8396849632263184,0.3041740655899048,0.001926181954331696,2.1240293790469877e-05,0.0023314272984862328,0.0003658468776848167,0.002276219427585602,-0.00033238818286918104,-0.006345822733140938,0.0018607510088154214,0.0018607510088154214,-6.345822733140938e-05,1.8607510088154214e-05,1.8607510088154214e-05,0.004259183071553707,-0.00039304280653595924,165 +illusion_0.75L,sr,166,33.2,1.0408767461776733,0.32600584626197815,0.6880864500999451,0.6335254907608032,0.8720847964286804,0.33254924416542053,0.0019191609462723136,1.970131415873766e-05,0.0023202872835099697,0.0003623504308052361,0.0022696377709507942,-0.0003428348863963038,-0.006571032397324941,0.0021707255312406262,0.0021707255312406262,-6.571032397324941e-05,2.1707255312406264e-05,2.1707255312406264e-05,0.004253040533512831,-0.0006161675555631518,166 +illusion_0.75L,sr,167,33.4,0.9451656341552734,0.3961923122406006,0.7235813736915588,0.6366563439369202,0.9071941375732422,0.35814544558525085,0.001915290835313499,1.762641295499634e-05,0.002311953343451023,0.0003591698477976024,0.002266909461468458,-0.00035400426713749766,-0.005585086410047027,0.001663307928583085,0.001663307928583085,-5.585086410047027e-05,1.663307928583085e-05,1.663307928583085e-05,0.004250074736773968,-0.0008122602594085038,167 +illusion_0.75L,sr,168,33.6,0.8685694336891174,0.42709824442863464,0.7522035241127014,0.6454400420188904,0.9429509043693542,0.38051146268844604,0.0019108443520963192,1.4740774531674106e-05,0.002302352571859956,0.0003551439440343529,0.0022637287620455027,-0.00036440719850361347,-0.004749070676469382,0.0013179483606502486,0.0013179483606502486,-4.7490706764693815e-05,1.3179483606502487e-05,1.3179483606502487e-05,0.004258817993104458,-0.0009722463437356055,168 +illusion_0.75L,sr,169,33.8,0.8128793239593506,0.4263947308063507,0.7749852538108826,0.6590369343757629,0.9793979525566101,0.3998454213142395,0.0019086538814008236,1.1542521860974375e-05,0.002294837264344096,0.0003497655561659485,0.00226342654787004,-0.0003731849428731948,-0.004842984812673975,0.0017006215293075661,0.0017006215293075661,-4.842984812673975e-05,1.700621529307566e-05,1.700621529307566e-05,0.004281363915652037,-0.0010888022370636463,169 +illusion_0.75L,sr,170,34.0,0.7727119326591492,0.40640029311180115,0.7932987809181213,0.6744815707206726,1.0166975259780884,0.41628187894821167,0.0019101041834801435,8.62595970829716e-06,0.0022911380510777235,0.0003430803772062063,0.002267647534608841,-0.00038015234167687595,-0.004858020886596513,0.0020635938725688044,0.0020635938725688044,-4.8580208865965124e-05,2.0635938725688045e-05,2.0635938725688045e-05,0.004309054929763079,-0.001156791695393622,170 +illusion_0.75L,sr,171,34.2,0.7405621409416199,0.37654224038124084,0.8077719211578369,0.6877972483634949,1.0550806522369385,0.42986994981765747,0.001913588959723711,5.465424237627303e-06,0.002290126169100404,0.00033548331703059375,0.0022750624921172857,-0.0003854536626022309,-0.0036457069410127806,0.0015526108801513453,0.0015526108801513453,-3.6457069410127806e-05,1.5526108801513453e-05,1.5526108801513453e-05,0.004329311661422253,-0.0011734996223822236,171 +illusion_0.75L,sr,172,34.4,0.7110021114349365,0.3407958745956421,0.818278431892395,0.6929447650909424,1.0946836471557617,0.44051840901374817,0.0019171835156157613,1.9206015622330597e-06,0.0022894239518791437,0.00032771442783996463,0.00228290562517941,-0.0003893830580636859,-0.0024743592335490974,0.0010966629011851508,0.0010966629011851508,-2.4743592335490973e-05,1.0966629011851507e-05,1.0966629011851507e-05,0.004336345009505749,-0.0011386508122086525,172 +illusion_0.75L,sr,173,34.6,0.6817992329597473,0.29918912053108215,0.8241007328033447,0.6820954084396362,1.1355586051940918,0.44801586866378784,0.0019187380094081163,-1.7027264220814686e-06,0.0022863317281007767,0.0003201919898856431,0.002288408111780882,-0.0003921803436242044,-0.0019881334998668168,0.0011536019724607176,0.0011536019724607176,-1.9881334998668167e-05,1.1536019724607177e-05,1.1536019724607177e-05,0.004334232769906521,-0.0010542497038841248,173 +illusion_0.75L,sr,174,34.8,0.6535162329673767,0.2506316900253296,0.8242611885070801,0.6480265855789185,1.1774920225143433,0.4519423246383667,0.0019189886515960097,-4.975035153620411e-06,0.0022819554433226585,0.00031321123242378235,0.0022925378289073706,-0.00039384790579788387,-0.0016189007248259982,0.001299543351728494,0.001299543351728494,-1.6189007248259983e-05,1.299543351728494e-05,1.299543351728494e-05,0.004329643212258816,-0.0009243153617717326,174 +illusion_0.75L,sr,175,35.0,0.6299743056297302,0.19514209032058716,0.8200136423110962,0.588998556137085,1.2231600284576416,0.4527868330478668,0.001923298230394721,-7.925926183816046e-06,0.0022826986387372017,0.000307644484564662,0.0023015805054455996,-0.0003952431434299797,-0.00060600889688678,0.0009647409732265372,0.0009647409732265372,-6.0600889688678e-06,9.647409732265372e-06,9.647409732265372e-06,0.00432319100946188,-0.0007545904372818768,175 +illusion_0.75L,sr,176,35.2,0.609632670879364,0.13251392543315887,0.8046442270278931,0.5027732253074646,1.2625102996826172,0.44611531496047974,0.001918547204695642,-1.082259950635489e-05,0.002272822195664048,0.00030136172426864505,0.0022994084283709526,-0.0003934588748961687,0.0008818315712061063,0.0002683224180378505,0.0002683224180378505,8.818315712061064e-06,2.683224180378505e-06,2.683224180378505e-06,0.004309643525630236,-0.0005522798164747655,176 +illusion_0.75L,sr,177,35.4,0.6007484197616577,0.0676172524690628,0.7838737368583679,0.3988615870475769,1.3032090663909912,0.43382012844085693,0.0019177563954144716,-1.3694690096599516e-05,0.0022681017871946096,0.00029716547578573227,0.0023017683997750282,-0.00039183226181194186,0.0019380842112984055,-0.0001376768158130176,-0.0001376768158130176,1.9380842112984055e-05,-1.376768158130176e-06,-1.376768158130176e-06,0.004286581184715033,-0.0003258340584579855,177 +illusion_0.75L,sr,178,35.6,0.6046256422996521,0.004839303903281689,0.7553378939628601,0.2791250944137573,1.3398433923721313,0.4126608669757843,0.0019146546255797148,-1.613218591955956e-05,0.0022609455045312643,0.00029466967680491507,0.002300933701917529,-0.0003896717680618167,0.0024751998881325787,-0.0001898638230265308,-0.0001898638230265308,2.475199888132579e-05,-1.898638230265308e-06,-1.898638230265308e-06,0.004260983318090439,-8.474913192912936e-05,178 +illusion_0.75L,sr,179,35.8,0.6220688819885254,-0.05120110139250755,0.7196530699729919,0.1438746154308319,1.3692190647125244,0.3800693452358246,0.0019111711299046874,-1.8002905562752858e-05,0.0022539549972862005,0.0002937718527391553,0.002299426356330514,-0.00038704517646692693,0.0032165241700753133,-0.00043021258421581735,-0.00043021258421581735,3.2165241700753136e-05,-4.3021258421581735e-06,-4.3021258421581735e-06,0.004245322663336992,0.00016067505930550396,179 +illusion_0.75L,sr,180,36.0,0.6505186557769775,-0.09873676300048828,0.6793855428695679,-0.006610483396798372,1.3876539468765259,0.33339136838912964,0.0019090608693659306,-1.958553184522316e-05,0.002249108860269189,0.0002943217696156353,0.002299032174050808,-0.00038385126390494406,0.004362220127492898,-0.0010107617982664206,-0.0010107617982664206,4.3622201274928985e-05,-1.0107617982664206e-05,-1.0107617982664206e-05,0.004246708005666733,0.0003996735031250864,180 +illusion_0.75L,sr,181,36.2,0.6847261190414429,-0.14001411199569702,0.6394249200820923,-0.16779538989067078,1.3915432691574097,0.27034056186676025,0.0019102118676528335,-2.087317807308864e-05,0.0022487821988761425,0.00029644035384990275,0.002301994012668729,-0.0003801727725658566,0.005160879287881358,-0.0013847456293850924,-0.0013847456293850924,5.160879287881358e-05,-1.3847456293850924e-05,-1.3847456293850924e-05,0.004260779824107885,0.0006214812165126204,181 +illusion_0.75L,sr,182,36.4,0.7198150753974915,-0.17904335260391235,0.6066438555717468,-0.3283655047416687,1.377336025238037,0.18901370465755463,0.0019133985042572021,-2.172673339373432e-05,0.002251872792840004,0.0003002439916599542,0.002307221991941333,-0.00037631229497492313,0.0055059369827206855,-0.001479739011901203,-0.001479739011901203,5.505936982720686e-05,-1.479739011901203e-05,-1.479739011901203e-05,0.00427695456892252,0.0008159072604030371,182 +illusion_0.75L,sr,183,36.6,0.7534982562065125,-0.21753983199596405,0.5891916155815125,-0.46847379207611084,1.3412452936172485,0.08930154889822006,0.00191658700350672,-2.1818897948833182e-05,0.0022556097246706486,0.0003059934242628515,0.002311795949935913,-0.0003728898009285331,0.0056958567232661406,-0.0015160535615070109,-0.0015160535615070109,5.695856723266141e-05,-1.5160535615070109e-05,-1.5160535615070109e-05,0.004289029631763697,0.000973953865468502,183 +illusion_0.75L,sr,184,36.8,0.7865790724754333,-0.2549901604652405,0.593408465385437,-0.5685826539993286,1.2794042825698853,-0.027424579486250877,0.0019178229849785566,-2.1541027308558114e-05,0.002257710788398981,0.0003137314924970269,0.002313490491360426,-0.000370047491742298,0.0062700414196678045,-0.0019002186820806094,-0.0019002186820806094,6.270041419667805e-05,-1.9002186820806094e-05,-1.9002186820806094e-05,0.004299434833228588,0.0010883876821026206,184 +illusion_0.75L,sr,185,37.0,0.819886326789856,-0.28952524065971375,0.6194035410881042,-0.6187323927879333,1.1931078433990479,-0.1515665054321289,0.0019172568572685122,-2.0890131054329686e-05,0.002258295426145196,0.00032303703483194113,0.0023123458959162235,-0.0003674544859677553,0.00647242565984147,-0.0020698467977091975,-0.0020698467977091975,6.47242565984147e-05,-2.0698467977091975e-05,-2.0698467977091975e-05,0.0043129948899149895,0.0011541711864992976,185 +illusion_0.75L,sr,186,37.2,0.8539958000183105,-0.3204690217971802,0.6580142378807068,-0.6325380206108093,1.0910710096359253,-0.26736897230148315,0.0019161243690177798,-1.9703393263625912e-05,0.0022585659753531218,0.00033321656519547105,0.002309671603143215,-0.00036477207322604954,0.006236883938212513,-0.0019798552516924126,-0.0019798552516924126,6.236883938212514e-05,-1.9798552516924125e-05,-1.9798552516924125e-05,0.0043281856924295425,0.0011686912039294839,186 +illusion_0.75L,sr,187,37.4,0.8888790607452393,-0.3478092551231384,0.6968351602554321,-0.6347880363464355,0.9881156086921692,-0.35703545808792114,0.001915143569931388,-1.801404869183898e-05,0.0022590365260839462,0.00034361906000413,0.00230604805983603,-0.00036171148531138897,0.005997365108907748,-0.0019462154158933242,-0.0019462154158933242,5.9973651089077485e-05,-1.9462154158933243e-05,-1.9462154158933243e-05,0.004336609039455652,0.001131771714426577,187 +illusion_0.75L,sr,188,37.6,0.9243455529212952,-0.3717604875564575,0.7291328310966492,-0.6407229900360107,0.8985836505889893,-0.40958529710769653,0.001913777319714427,-1.5965024431352504e-05,0.0022594553884118795,0.0003538158780429512,0.002301318570971489,-0.0003580936463549733,0.00574586000527344,-0.0019597623758325806,-0.0019597623758325806,5.74586000527344e-05,-1.9597623758325805e-05,-1.9597623758325805e-05,0.004331659525632858,0.0010455084266141057,188 +illusion_0.75L,sr,189,37.8,0.9605495929718018,-0.3926877975463867,0.7547255158424377,-0.6525200605392456,0.8294969797134399,-0.4259395897388458,0.0019103637896478176,-1.3592621144198347e-05,0.002257469343021512,0.00036366659332998097,0.002293235156685114,-0.0003539272875059396,0.00527405573025963,-0.0018616756118224713,-0.0018616756118224713,5.2740557302596303e-05,-1.8616756118224712e-05,-1.8616756118224712e-05,0.004316441714763641,0.0009139995672740042,189 +illusion_0.75L,sr,190,38.0,0.9974085092544556,-0.4106505215167999,0.7750007510185242,-0.6675216555595398,0.7801754474639893,-0.41565388441085815,0.0019064954249188304,-1.0680994819267653e-05,0.0022552632726728916,0.00037232774775475264,0.0022842069156467915,-0.00034882233012467623,0.004603125242624569,-0.001662493287617306,-0.001662493287617306,4.603125242624569e-05,-1.662493287617306e-05,-1.662493287617306e-05,0.004301527515053749,0.0007430499535985291,190 +illusion_0.75L,sr,191,38.2,1.0350902080535889,-0.42573148012161255,0.7909581065177917,-0.6823016405105591,0.7439176440238953,-0.3901533782482147,0.001904008793644607,-7.604430265928386e-06,0.002254805061966181,0.00037945539224892855,0.002276450162753463,-0.0003427829360589385,0.004383453790319583,-0.0018326737357294669,-0.0018326737357294669,4.383453790319583e-05,-1.832673735729467e-05,-1.832673735729467e-05,0.004294632934033871,0.0005399071960709989,191 +illusion_0.75L,sr,192,38.4,1.0766043663024902,-0.43903079628944397,0.8049077391624451,-0.6937289237976074,0.7153977751731873,-0.35745757818222046,0.0019096109317615628,-4.602278750098776e-06,0.002263760194182396,0.00038565672002732754,0.0022776825353503227,-0.00033634985447861254,0.00406922502258298,-0.001956102393547647,-0.001956102393547647,4.06922502258298e-05,-1.9561023935476473e-05,-1.9561023935476473e-05,0.004293559584766626,0.00031304333242587745,192 +illusion_0.75L,sr,193,38.6,1.1185113191604614,-0.4484676718711853,0.8127182722091675,-0.6907292008399963,0.6855672597885132,-0.3161841630935669,0.001913071027956903,-1.3127989859640365e-06,0.002271425910294056,0.00038929132279008627,0.0022770764771848917,-0.000328156806062907,0.0032139324113685027,-0.0016997448243188653,-0.0016997448243188653,3.2139324113685026e-05,-1.6997448243188654e-05,-1.6997448243188654e-05,0.004290138371288776,7.195398939074948e-05,193 +illusion_0.75L,sr,194,38.8,1.1579452753067017,-0.453821063041687,0.8150842189788818,-0.6689816117286682,0.6590771675109863,-0.27267199754714966,0.001916638808324933,1.814937604649458e-06,0.002278930274769664,0.00039140760782174766,0.0022768995258957148,-0.0003206568071618676,0.002450410637890918,-0.0015380932689134227,-0.0015380932689134227,2.4504106378909182e-05,-1.5380932689134227e-05,-1.5380932689134227e-05,0.00428050896152854,-0.0001730822114041075,194 +illusion_0.75L,sr,195,39.0,1.1971442699432373,-0.45440179109573364,0.8098904490470886,-0.6198053359985352,0.6317830085754395,-0.21981137990951538,0.001913915271870792,4.920813353237463e-06,0.0022792143281549215,0.0003917826106771827,0.0022694396320730448,-0.000312856980599463,0.001892238257490464,-0.0014996334222878202,-0.0014996334222878202,1.892238257490464e-05,-1.4996334222878203e-05,-1.4996334222878203e-05,0.0042700087651610374,-0.00041134055936709046,195 +illusion_0.75L,sr,196,39.2,1.2395821809768677,-0.4513528048992157,0.8004450798034668,-0.5466245412826538,0.6108428835868835,-0.1610996127128601,0.0019145269179716706,7.74708951212233e-06,0.002283526584506035,0.0003921921888832003,0.0022662817500531673,-0.0003067395300604403,0.001231732899843298,-0.0013884849038660347,-0.0013884849038660347,1.2317328998432981e-05,-1.3884849038660348e-05,-1.3884849038660348e-05,0.004267278593033552,-0.000632112380117178,196 +illusion_0.75L,sr,197,39.4,1.2811532020568848,-0.4423166513442993,0.7842592000961304,-0.45198574662208557,0.5980145931243896,-0.0981372743844986,0.0019140465883538127,1.031698047881946e-05,0.002286445815116167,0.0003917834837920964,0.0022621930111199617,-0.000301782158203423,0.00024406641125081574,-0.00102182578970233,-0.00102182578970233,2.4406641125081575e-06,-1.0218257897023301e-05,-1.0218257897023301e-05,0.004274563863873482,-0.0008252749685198069,197 +illusion_0.75L,sr,198,39.6,1.3199037313461304,-0.42558422684669495,0.7607762217521667,-0.3407519459724426,0.5965698957443237,-0.03504718840122223,0.0019140110816806555,1.2733796211250592e-05,0.0022895424626767635,0.00039051781641319394,0.0022589208092540503,-0.0002980307617690414,-0.0008508056797537598,-0.0005532725220607337,-0.0005532725220607337,-8.508056797537599e-06,-5.532725220607337e-06,-5.532725220607337e-06,0.004285456147044897,-0.0009819063125178218,198 +illusion_0.75L,sr,199,39.8,1.3564866781234741,-0.39998161792755127,0.7315787672996521,-0.21540802717208862,0.6099927425384521,0.023419158533215523,0.0019182180985808372,1.4889182239130605e-05,0.0022974193561822176,0.0003895586705766618,0.0022610994055867195,-0.0002965350868180394,-0.0016779907349253227,-0.0002516777406600737,-0.0002516777406600737,-1.6779907349253227e-05,-2.516777406600737e-06,-2.516777406600737e-06,0.004292575176805258,-0.0010948515264317393,199 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_long.csv new file mode 100644 index 0000000..49f539e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_0.75L,target,0,0.0,velocity,upper_ux,1.3421152830123901 +illusion_0.75L,target,0,0.0,velocity,upper_uy,-0.02729897014796734 +illusion_0.75L,target,0,0.0,velocity,center_ux,0.825398862361908 +illusion_0.75L,target,0,0.0,velocity,center_uy,0.17785626649856567 +illusion_0.75L,target,0,0.0,velocity,lower_ux,0.8263359665870667 +illusion_0.75L,target,0,0.0,velocity,lower_uy,0.08700302243232727 +illusion_0.75L,target,1,0.2,velocity,upper_ux,1.2795941829681396 +illusion_0.75L,target,1,0.2,velocity,upper_uy,0.12987768650054932 +illusion_0.75L,target,1,0.2,velocity,center_ux,0.8367094993591309 +illusion_0.75L,target,1,0.2,velocity,center_uy,0.365416556596756 +illusion_0.75L,target,1,0.2,velocity,lower_ux,0.8573136329650879 +illusion_0.75L,target,1,0.2,velocity,lower_uy,0.12939360737800598 +illusion_0.75L,target,2,0.4,velocity,upper_ux,1.2136856317520142 +illusion_0.75L,target,2,0.4,velocity,upper_uy,0.24112986028194427 +illusion_0.75L,target,2,0.4,velocity,center_ux,0.858796238899231 +illusion_0.75L,target,2,0.4,velocity,center_uy,0.47865498065948486 +illusion_0.75L,target,2,0.4,velocity,lower_ux,0.8896481394767761 +illusion_0.75L,target,2,0.4,velocity,lower_uy,0.16320602595806122 +illusion_0.75L,target,3,0.6,velocity,upper_ux,1.1516714096069336 +illusion_0.75L,target,3,0.6,velocity,upper_uy,0.3069038987159729 +illusion_0.75L,target,3,0.6,velocity,center_ux,0.8874850273132324 +illusion_0.75L,target,3,0.6,velocity,center_uy,0.5255606770515442 +illusion_0.75L,target,3,0.6,velocity,lower_ux,0.923655092716217 +illusion_0.75L,target,3,0.6,velocity,lower_uy,0.19372673332691193 +illusion_0.75L,target,4,0.8,velocity,upper_ux,1.0989885330200195 +illusion_0.75L,target,4,0.8,velocity,upper_uy,0.3335457742214203 +illusion_0.75L,target,4,0.8,velocity,center_ux,0.9157127141952515 +illusion_0.75L,target,4,0.8,velocity,center_uy,0.5290298461914062 +illusion_0.75L,target,4,0.8,velocity,lower_ux,0.9579952359199524 +illusion_0.75L,target,4,0.8,velocity,lower_uy,0.22051118314266205 +illusion_0.75L,target,5,1.0,velocity,upper_ux,1.0544666051864624 +illusion_0.75L,target,5,1.0,velocity,upper_uy,0.33697423338890076 +illusion_0.75L,target,5,1.0,velocity,center_ux,0.9385454654693604 +illusion_0.75L,target,5,1.0,velocity,center_uy,0.5220950841903687 +illusion_0.75L,target,5,1.0,velocity,lower_ux,0.9926177263259888 +illusion_0.75L,target,5,1.0,velocity,lower_uy,0.24385719001293182 +illusion_0.75L,target,6,1.2,velocity,upper_ux,1.0147128105163574 +illusion_0.75L,target,6,1.2,velocity,upper_uy,0.3288705050945282 +illusion_0.75L,target,6,1.2,velocity,center_ux,0.9546830058097839 +illusion_0.75L,target,6,1.2,velocity,center_uy,0.5205357074737549 +illusion_0.75L,target,6,1.2,velocity,lower_ux,1.0280284881591797 +illusion_0.75L,target,6,1.2,velocity,lower_uy,0.26444000005722046 +illusion_0.75L,target,7,1.4,velocity,upper_ux,0.9768561720848083 +illusion_0.75L,target,7,1.4,velocity,upper_uy,0.3138730525970459 +illusion_0.75L,target,7,1.4,velocity,center_ux,0.9644954800605774 +illusion_0.75L,target,7,1.4,velocity,center_uy,0.5268304944038391 +illusion_0.75L,target,7,1.4,velocity,lower_ux,1.0648999214172363 +illusion_0.75L,target,7,1.4,velocity,lower_uy,0.2827549874782562 +illusion_0.75L,target,8,1.6,velocity,upper_ux,0.939155101776123 +illusion_0.75L,target,8,1.6,velocity,upper_uy,0.2916928231716156 +illusion_0.75L,target,8,1.6,velocity,center_ux,0.9679314494132996 +illusion_0.75L,target,8,1.6,velocity,center_uy,0.5389787554740906 +illusion_0.75L,target,8,1.6,velocity,lower_ux,1.104198694229126 +illusion_0.75L,target,8,1.6,velocity,lower_uy,0.2990667223930359 +illusion_0.75L,target,9,1.8,velocity,upper_ux,0.9035542011260986 +illusion_0.75L,target,9,1.8,velocity,upper_uy,0.26053059101104736 +illusion_0.75L,target,9,1.8,velocity,center_ux,0.9660654664039612 +illusion_0.75L,target,9,1.8,velocity,center_uy,0.5528272390365601 +illusion_0.75L,target,9,1.8,velocity,lower_ux,1.1501213312149048 +illusion_0.75L,target,9,1.8,velocity,lower_uy,0.31403857469558716 +illusion_0.75L,target,10,2.0,velocity,upper_ux,0.8647271990776062 +illusion_0.75L,target,10,2.0,velocity,upper_uy,0.21622243523597717 +illusion_0.75L,target,10,2.0,velocity,center_ux,0.949174165725708 +illusion_0.75L,target,10,2.0,velocity,center_uy,0.5512676239013672 +illusion_0.75L,target,10,2.0,velocity,lower_ux,1.1953215599060059 +illusion_0.75L,target,10,2.0,velocity,lower_uy,0.32437199354171753 +illusion_0.75L,target,11,2.2,velocity,upper_ux,0.8323569297790527 +illusion_0.75L,target,11,2.2,velocity,upper_uy,0.16013774275779724 +illusion_0.75L,target,11,2.2,velocity,center_ux,0.9228420257568359 +illusion_0.75L,target,11,2.2,velocity,center_uy,0.5155327320098877 +illusion_0.75L,target,11,2.2,velocity,lower_ux,1.2495970726013184 +illusion_0.75L,target,11,2.2,velocity,lower_uy,0.3296951353549957 +illusion_0.75L,target,12,2.4,velocity,upper_ux,0.8088009357452393 +illusion_0.75L,target,12,2.4,velocity,upper_uy,0.09468540549278259 +illusion_0.75L,target,12,2.4,velocity,center_ux,0.8879522085189819 +illusion_0.75L,target,12,2.4,velocity,center_uy,0.41883063316345215 +illusion_0.75L,target,12,2.4,velocity,lower_ux,1.3075573444366455 +illusion_0.75L,target,12,2.4,velocity,lower_uy,0.3208085298538208 +illusion_0.75L,target,13,2.6,velocity,upper_ux,0.7990161776542664 +illusion_0.75L,target,13,2.6,velocity,upper_uy,0.026720130816102028 +illusion_0.75L,target,13,2.6,velocity,center_ux,0.8541786074638367 +illusion_0.75L,target,13,2.6,velocity,center_uy,0.2534114718437195 +illusion_0.75L,target,13,2.6,velocity,lower_ux,1.3565655946731567 +illusion_0.75L,target,13,2.6,velocity,lower_uy,0.2778755724430084 +illusion_0.75L,target,14,2.8,velocity,upper_ux,0.8056877851486206 +illusion_0.75L,target,14,2.8,velocity,upper_uy,-0.03549692779779434 +illusion_0.75L,target,14,2.8,velocity,center_ux,0.8320209383964539 +illusion_0.75L,target,14,2.8,velocity,center_uy,0.04106806218624115 +illusion_0.75L,target,14,2.8,velocity,lower_ux,1.3727058172225952 +illusion_0.75L,target,14,2.8,velocity,lower_uy,0.17755915224552155 +illusion_0.75L,target,15,3.0,velocity,upper_ux,0.8267136216163635 +illusion_0.75L,target,15,3.0,velocity,upper_uy,-0.08690617233514786 +illusion_0.75L,target,15,3.0,velocity,center_ux,0.8265308141708374 +illusion_0.75L,target,15,3.0,velocity,center_uy,-0.17753084003925323 +illusion_0.75L,target,15,3.0,velocity,lower_ux,1.3427057266235352 +illusion_0.75L,target,15,3.0,velocity,lower_uy,0.027681343257427216 +illusion_0.75L,target,16,3.2,velocity,upper_ux,0.8562654256820679 +illusion_0.75L,target,16,3.2,velocity,upper_uy,-0.1283167600631714 +illusion_0.75L,target,16,3.2,velocity,center_ux,0.8368131518363953 +illusion_0.75L,target,16,3.2,velocity,center_uy,-0.36103561520576477 +illusion_0.75L,target,16,3.2,velocity,lower_ux,1.281609296798706 +illusion_0.75L,target,16,3.2,velocity,lower_uy,-0.1255147010087967 +illusion_0.75L,target,17,3.4,velocity,upper_ux,0.889004111289978 +illusion_0.75L,target,17,3.4,velocity,upper_uy,-0.16318050026893616 +illusion_0.75L,target,17,3.4,velocity,center_ux,0.8588612079620361 +illusion_0.75L,target,17,3.4,velocity,center_uy,-0.4784795641899109 +illusion_0.75L,target,17,3.4,velocity,lower_ux,1.2132480144500732 +illusion_0.75L,target,17,3.4,velocity,lower_uy,-0.24050040543079376 +illusion_0.75L,target,18,3.6,velocity,upper_ux,0.9226036667823792 +illusion_0.75L,target,18,3.6,velocity,upper_uy,-0.19367271661758423 +illusion_0.75L,target,18,3.6,velocity,center_ux,0.8870754241943359 +illusion_0.75L,target,18,3.6,velocity,center_uy,-0.5253623723983765 +illusion_0.75L,target,18,3.6,velocity,lower_ux,1.150842547416687 +illusion_0.75L,target,18,3.6,velocity,lower_uy,-0.30626311898231506 +illusion_0.75L,target,19,3.8,velocity,upper_ux,0.9567143321037292 +illusion_0.75L,target,19,3.8,velocity,upper_uy,-0.22038954496383667 +illusion_0.75L,target,19,3.8,velocity,center_ux,0.9150304198265076 +illusion_0.75L,target,19,3.8,velocity,center_uy,-0.528821587562561 +illusion_0.75L,target,19,3.8,velocity,lower_ux,1.0980877876281738 +illusion_0.75L,target,19,3.8,velocity,lower_uy,-0.33295920491218567 +illusion_0.75L,target,20,4.0,velocity,upper_ux,0.9915245175361633 +illusion_0.75L,target,20,4.0,velocity,upper_uy,-0.24373306334018707 +illusion_0.75L,target,20,4.0,velocity,center_ux,0.9380267858505249 +illusion_0.75L,target,20,4.0,velocity,center_uy,-0.5218194127082825 +illusion_0.75L,target,20,4.0,velocity,lower_ux,1.053728461265564 +illusion_0.75L,target,20,4.0,velocity,lower_uy,-0.33650103211402893 +illusion_0.75L,target,21,4.2,velocity,upper_ux,1.0274100303649902 +illusion_0.75L,target,21,4.2,velocity,upper_uy,-0.26429638266563416 +illusion_0.75L,target,21,4.2,velocity,center_ux,0.9546658396720886 +illusion_0.75L,target,21,4.2,velocity,center_uy,-0.5201678276062012 +illusion_0.75L,target,21,4.2,velocity,lower_ux,1.0145165920257568 +illusion_0.75L,target,21,4.2,velocity,lower_uy,-0.3284893035888672 +illusion_0.75L,target,22,4.4,velocity,upper_ux,1.064863920211792 +illusion_0.75L,target,22,4.4,velocity,upper_uy,-0.2826078534126282 +illusion_0.75L,target,22,4.4,velocity,center_ux,0.9650963544845581 +illusion_0.75L,target,22,4.4,velocity,center_uy,-0.5263742804527283 +illusion_0.75L,target,22,4.4,velocity,lower_ux,0.9772840738296509 +illusion_0.75L,target,22,4.4,velocity,lower_uy,-0.31356605887413025 +illusion_0.75L,target,23,4.6,velocity,upper_ux,1.1046215295791626 +illusion_0.75L,target,23,4.6,velocity,upper_uy,-0.2989315688610077 +illusion_0.75L,target,23,4.6,velocity,center_ux,0.9690484404563904 +illusion_0.75L,target,23,4.6,velocity,center_uy,-0.5384694337844849 +illusion_0.75L,target,23,4.6,velocity,lower_ux,0.9400609731674194 +illusion_0.75L,target,23,4.6,velocity,lower_uy,-0.2914411723613739 +illusion_0.75L,target,24,4.8,velocity,upper_ux,1.14778470993042 +illusion_0.75L,target,24,4.8,velocity,upper_uy,-0.3131248950958252 +illusion_0.75L,target,24,4.8,velocity,center_ux,0.9650318026542664 +illusion_0.75L,target,24,4.8,velocity,center_uy,-0.5509354472160339 +illusion_0.75L,target,24,4.8,velocity,lower_ux,0.9024286866188049 +illusion_0.75L,target,24,4.8,velocity,lower_uy,-0.2597046196460724 +illusion_0.75L,target,25,5.0,velocity,upper_ux,1.1957886219024658 +illusion_0.75L,target,25,5.0,velocity,upper_uy,-0.32430824637413025 +illusion_0.75L,target,25,5.0,velocity,center_ux,0.950509786605835 +illusion_0.75L,target,25,5.0,velocity,center_uy,-0.5509091019630432 +illusion_0.75L,target,25,5.0,velocity,lower_ux,0.8656954169273376 +illusion_0.75L,target,25,5.0,velocity,lower_uy,-0.2160201072692871 +illusion_0.75L,target,26,5.2,velocity,upper_ux,1.2496743202209473 +illusion_0.75L,target,26,5.2,velocity,upper_uy,-0.32972127199172974 +illusion_0.75L,target,26,5.2,velocity,center_ux,0.9238744974136353 +illusion_0.75L,target,26,5.2,velocity,center_uy,-0.5154682397842407 +illusion_0.75L,target,26,5.2,velocity,lower_ux,0.8329761028289795 +illusion_0.75L,target,26,5.2,velocity,lower_uy,-0.1599542200565338 +illusion_0.75L,target,27,5.4,velocity,upper_ux,1.3071222305297852 +illusion_0.75L,target,27,5.4,velocity,upper_uy,-0.32105618715286255 +illusion_0.75L,target,27,5.4,velocity,center_ux,0.8884590864181519 +illusion_0.75L,target,27,5.4,velocity,center_uy,-0.41922369599342346 +illusion_0.75L,target,27,5.4,velocity,lower_ux,0.8089398145675659 +illusion_0.75L,target,27,5.4,velocity,lower_uy,-0.09455622732639313 +illusion_0.75L,target,28,5.6,velocity,upper_ux,1.355748176574707 +illusion_0.75L,target,28,5.6,velocity,upper_uy,-0.2786167860031128 +illusion_0.75L,target,28,5.6,velocity,center_ux,0.8540302515029907 +illusion_0.75L,target,28,5.6,velocity,center_uy,-0.2543369233608246 +illusion_0.75L,target,28,5.6,velocity,lower_ux,0.7986548542976379 +illusion_0.75L,target,28,5.6,velocity,lower_uy,-0.02669389918446541 +illusion_0.75L,target,29,5.8,velocity,upper_ux,1.3718518018722534 +illusion_0.75L,target,29,5.8,velocity,upper_uy,-0.17904995381832123 +illusion_0.75L,target,29,5.8,velocity,center_ux,0.8312535881996155 +illusion_0.75L,target,29,5.8,velocity,center_uy,-0.042534079402685165 +illusion_0.75L,target,29,5.8,velocity,lower_ux,0.8049066066741943 +illusion_0.75L,target,29,5.8,velocity,lower_uy,0.035379767417907715 +illusion_0.75L,target,30,6.0,velocity,upper_ux,1.3420518636703491 +illusion_0.75L,target,30,6.0,velocity,upper_uy,-0.029514813795685768 +illusion_0.75L,target,30,6.0,velocity,center_ux,0.8253268599510193 +illusion_0.75L,target,30,6.0,velocity,center_uy,0.1759534627199173 +illusion_0.75L,target,30,6.0,velocity,lower_ux,0.8257015347480774 +illusion_0.75L,target,30,6.0,velocity,lower_uy,0.08672218024730682 +illusion_0.75L,target,31,6.2,velocity,upper_ux,1.2812596559524536 +illusion_0.75L,target,31,6.2,velocity,upper_uy,0.12391229718923569 +illusion_0.75L,target,31,6.2,velocity,center_ux,0.8355334401130676 +illusion_0.75L,target,31,6.2,velocity,center_uy,0.3596350848674774 +illusion_0.75L,target,31,6.2,velocity,lower_ux,0.8553259968757629 +illusion_0.75L,target,31,6.2,velocity,lower_uy,0.12809449434280396 +illusion_0.75L,target,32,6.4,velocity,upper_ux,1.2132247686386108 +illusion_0.75L,target,32,6.4,velocity,upper_uy,0.23966437578201294 +illusion_0.75L,target,32,6.4,velocity,center_ux,0.8579580783843994 +illusion_0.75L,target,32,6.4,velocity,center_uy,0.4777250587940216 +illusion_0.75L,target,32,6.4,velocity,lower_ux,0.8885358572006226 +illusion_0.75L,target,32,6.4,velocity,lower_uy,0.16301292181015015 +illusion_0.75L,target,33,6.6,velocity,upper_ux,1.1513975858688354 +illusion_0.75L,target,33,6.6,velocity,upper_uy,0.3059050142765045 +illusion_0.75L,target,33,6.6,velocity,center_ux,0.8866949677467346 +illusion_0.75L,target,33,6.6,velocity,center_uy,0.5250164270401001 +illusion_0.75L,target,33,6.6,velocity,lower_ux,0.922650933265686 +illusion_0.75L,target,33,6.6,velocity,lower_uy,0.19349049031734467 +illusion_0.75L,target,34,6.8,velocity,upper_ux,1.0990169048309326 +illusion_0.75L,target,34,6.8,velocity,upper_uy,0.3329900801181793 +illusion_0.75L,target,34,6.8,velocity,center_ux,0.9151952266693115 +illusion_0.75L,target,34,6.8,velocity,center_uy,0.5287314057350159 +illusion_0.75L,target,34,6.8,velocity,lower_ux,0.9572524428367615 +illusion_0.75L,target,34,6.8,velocity,lower_uy,0.22026394307613373 +illusion_0.75L,target,35,7.0,velocity,upper_ux,1.054823637008667 +illusion_0.75L,target,35,7.0,velocity,upper_uy,0.3366924524307251 +illusion_0.75L,target,35,7.0,velocity,center_ux,0.9385117292404175 +illusion_0.75L,target,35,7.0,velocity,center_uy,0.5217766761779785 +illusion_0.75L,target,35,7.0,velocity,lower_ux,0.9923221468925476 +illusion_0.75L,target,35,7.0,velocity,lower_uy,0.24367155134677887 +illusion_0.75L,target,36,7.2,velocity,upper_ux,1.0155178308486938 +illusion_0.75L,target,36,7.2,velocity,upper_uy,0.3287232518196106 +illusion_0.75L,target,36,7.2,velocity,center_ux,0.9551345109939575 +illusion_0.75L,target,36,7.2,velocity,center_uy,0.5201244950294495 +illusion_0.75L,target,36,7.2,velocity,lower_ux,1.0281593799591064 +illusion_0.75L,target,36,7.2,velocity,lower_uy,0.2642953395843506 +illusion_0.75L,target,37,7.4,velocity,upper_ux,0.9779478311538696 +illusion_0.75L,target,37,7.4,velocity,upper_uy,0.3137996196746826 +illusion_0.75L,target,37,7.4,velocity,center_ux,0.9652897715568542 +illusion_0.75L,target,37,7.4,velocity,center_uy,0.526350736618042 +illusion_0.75L,target,37,7.4,velocity,lower_ux,1.0653685331344604 +illusion_0.75L,target,37,7.4,velocity,lower_uy,0.2826789617538452 +illusion_0.75L,target,38,7.6,velocity,upper_ux,0.9403383135795593 +illusion_0.75L,target,38,7.6,velocity,upper_uy,0.2917485535144806 +illusion_0.75L,target,38,7.6,velocity,center_ux,0.9687728881835938 +illusion_0.75L,target,38,7.6,velocity,center_uy,0.5384653210639954 +illusion_0.75L,target,38,7.6,velocity,lower_ux,1.1046245098114014 +illusion_0.75L,target,38,7.6,velocity,lower_uy,0.299029678106308 +illusion_0.75L,target,39,7.8,velocity,upper_ux,0.9022474884986877 +illusion_0.75L,target,39,7.8,velocity,upper_uy,0.26012083888053894 +illusion_0.75L,target,39,7.8,velocity,center_ux,0.9642476439476013 +illusion_0.75L,target,39,7.8,velocity,center_uy,0.5510063767433167 +illusion_0.75L,target,39,7.8,velocity,lower_ux,1.1472749710083008 +illusion_0.75L,target,39,7.8,velocity,lower_uy,0.31326982378959656 +illusion_0.75L,target,40,8.0,velocity,upper_ux,0.8672811388969421 +illusion_0.75L,target,40,8.0,velocity,upper_uy,0.21709421277046204 +illusion_0.75L,target,40,8.0,velocity,center_ux,0.9516996145248413 +illusion_0.75L,target,40,8.0,velocity,center_uy,0.5525364875793457 +illusion_0.75L,target,40,8.0,velocity,lower_ux,1.1979061365127563 +illusion_0.75L,target,40,8.0,velocity,lower_uy,0.32533302903175354 +illusion_0.75L,target,41,8.2,velocity,upper_ux,0.8322051167488098 +illusion_0.75L,target,41,8.2,velocity,upper_uy,0.16073453426361084 +illusion_0.75L,target,41,8.2,velocity,center_ux,0.9225414991378784 +illusion_0.75L,target,41,8.2,velocity,center_uy,0.5161370635032654 +illusion_0.75L,target,41,8.2,velocity,lower_ux,1.248487949371338 +illusion_0.75L,target,41,8.2,velocity,lower_uy,0.3299958407878876 +illusion_0.75L,target,42,8.4,velocity,upper_ux,0.808174729347229 +illusion_0.75L,target,42,8.4,velocity,upper_uy,0.09544505923986435 +illusion_0.75L,target,42,8.4,velocity,center_ux,0.8872622847557068 +illusion_0.75L,target,42,8.4,velocity,center_uy,0.4204762578010559 +illusion_0.75L,target,42,8.4,velocity,lower_ux,1.3060835599899292 +illusion_0.75L,target,42,8.4,velocity,lower_uy,0.32145145535469055 +illusion_0.75L,target,43,8.6,velocity,upper_ux,0.8001697063446045 +illusion_0.75L,target,43,8.6,velocity,upper_uy,0.02774549275636673 +illusion_0.75L,target,43,8.6,velocity,center_ux,0.8554621338844299 +illusion_0.75L,target,43,8.6,velocity,center_uy,0.2571019232273102 +illusion_0.75L,target,43,8.6,velocity,lower_ux,1.358642578125 +illusion_0.75L,target,43,8.6,velocity,lower_uy,0.2799921929836273 +illusion_0.75L,target,44,8.8,velocity,upper_ux,0.8047868609428406 +illusion_0.75L,target,44,8.8,velocity,upper_uy,-0.034555841237306595 +illusion_0.75L,target,44,8.8,velocity,center_ux,0.831052303314209 +illusion_0.75L,target,44,8.8,velocity,center_uy,0.04489772394299507 +illusion_0.75L,target,44,8.8,velocity,lower_ux,1.3722295761108398 +illusion_0.75L,target,44,8.8,velocity,lower_uy,0.1799096316099167 +illusion_0.75L,target,45,9.0,velocity,upper_ux,0.8259549140930176 +illusion_0.75L,target,45,9.0,velocity,upper_uy,-0.08608569949865341 +illusion_0.75L,target,45,9.0,velocity,center_ux,0.8255662322044373 +illusion_0.75L,target,45,9.0,velocity,center_uy,-0.17383825778961182 +illusion_0.75L,target,45,9.0,velocity,lower_ux,1.3432421684265137 +illusion_0.75L,target,45,9.0,velocity,lower_uy,0.03031930699944496 +illusion_0.75L,target,46,9.2,velocity,upper_ux,0.8558319211006165 +illusion_0.75L,target,46,9.2,velocity,upper_uy,-0.12760746479034424 +illusion_0.75L,target,46,9.2,velocity,center_ux,0.8360224962234497 +illusion_0.75L,target,46,9.2,velocity,center_uy,-0.3582542836666107 +illusion_0.75L,target,46,9.2,velocity,lower_ux,1.2829093933105469 +illusion_0.75L,target,46,9.2,velocity,lower_uy,-0.12342830002307892 +illusion_0.75L,target,47,9.4,velocity,upper_ux,0.8890001773834229 +illusion_0.75L,target,47,9.4,velocity,upper_uy,-0.1625748872756958 +illusion_0.75L,target,47,9.4,velocity,center_ux,0.8583963513374329 +illusion_0.75L,target,47,9.4,velocity,center_uy,-0.4771377444267273 +illusion_0.75L,target,47,9.4,velocity,lower_ux,1.2149925231933594 +illusion_0.75L,target,47,9.4,velocity,lower_uy,-0.23940841853618622 +illusion_0.75L,target,48,9.6,velocity,upper_ux,0.9229341149330139 +illusion_0.75L,target,48,9.6,velocity,upper_uy,-0.19316644966602325 +illusion_0.75L,target,48,9.6,velocity,center_ux,0.886959433555603 +illusion_0.75L,target,48,9.6,velocity,center_uy,-0.5252076983451843 +illusion_0.75L,target,48,9.6,velocity,lower_ux,1.1527608633041382 +illusion_0.75L,target,48,9.6,velocity,lower_uy,-0.3060274124145508 +illusion_0.75L,target,49,9.8,velocity,upper_ux,0.957125723361969 +illusion_0.75L,target,49,9.8,velocity,upper_uy,-0.21998338401317596 +illusion_0.75L,target,49,9.8,velocity,center_ux,0.9151121377944946 +illusion_0.75L,target,49,9.8,velocity,center_uy,-0.5291630029678345 +illusion_0.75L,target,49,9.8,velocity,lower_ux,1.0998636484146118 +illusion_0.75L,target,49,9.8,velocity,lower_uy,-0.33323705196380615 +illusion_0.75L,target,50,10.0,velocity,upper_ux,0.9917117357254028 +illusion_0.75L,target,50,10.0,velocity,upper_uy,-0.24341200292110443 +illusion_0.75L,target,50,10.0,velocity,center_ux,0.9380304217338562 +illusion_0.75L,target,50,10.0,velocity,center_uy,-0.5222005248069763 +illusion_0.75L,target,50,10.0,velocity,lower_ux,1.055099368095398 +illusion_0.75L,target,50,10.0,velocity,lower_uy,-0.3369929790496826 +illusion_0.75L,target,51,10.2,velocity,upper_ux,1.027123212814331 +illusion_0.75L,target,51,10.2,velocity,upper_uy,-0.26403674483299255 +illusion_0.75L,target,51,10.2,velocity,center_ux,0.9543285369873047 +illusion_0.75L,target,51,10.2,velocity,center_uy,-0.5204765200614929 +illusion_0.75L,target,51,10.2,velocity,lower_ux,1.0153167247772217 +illusion_0.75L,target,51,10.2,velocity,lower_uy,-0.32905685901641846 +illusion_0.75L,target,52,10.4,velocity,upper_ux,1.0640342235565186 +illusion_0.75L,target,52,10.4,velocity,upper_uy,-0.28238561749458313 +illusion_0.75L,target,52,10.4,velocity,center_ux,0.964341402053833 +illusion_0.75L,target,52,10.4,velocity,center_uy,-0.5266141295433044 +illusion_0.75L,target,52,10.4,velocity,lower_ux,0.9775221943855286 +illusion_0.75L,target,52,10.4,velocity,lower_uy,-0.3141922950744629 +illusion_0.75L,target,53,10.6,velocity,upper_ux,1.1033655405044556 +illusion_0.75L,target,53,10.6,velocity,upper_uy,-0.2987295687198639 +illusion_0.75L,target,53,10.6,velocity,center_ux,0.9680163860321045 +illusion_0.75L,target,53,10.6,velocity,center_uy,-0.5386707186698914 +illusion_0.75L,target,53,10.6,velocity,lower_ux,0.9399184584617615 +illusion_0.75L,target,53,10.6,velocity,lower_uy,-0.29217422008514404 +illusion_0.75L,target,54,10.8,velocity,upper_ux,1.1463773250579834 +illusion_0.75L,target,54,10.8,velocity,upper_uy,-0.31293925642967224 +illusion_0.75L,target,54,10.8,velocity,center_ux,0.9640412330627441 +illusion_0.75L,target,54,10.8,velocity,center_uy,-0.5511998534202576 +illusion_0.75L,target,54,10.8,velocity,lower_ux,0.9022048711776733 +illusion_0.75L,target,54,10.8,velocity,lower_uy,-0.26061174273490906 +illusion_0.75L,target,55,11.0,velocity,upper_ux,1.1944788694381714 +illusion_0.75L,target,55,11.0,velocity,upper_uy,-0.3241542875766754 +illusion_0.75L,target,55,11.0,velocity,center_ux,0.9498692154884338 +illusion_0.75L,target,55,11.0,velocity,center_uy,-0.551478385925293 +illusion_0.75L,target,55,11.0,velocity,lower_ux,0.8656132221221924 +illusion_0.75L,target,55,11.0,velocity,lower_uy,-0.21714434027671814 +illusion_0.75L,target,56,11.2,velocity,upper_ux,1.24861478805542 +illusion_0.75L,target,56,11.2,velocity,upper_uy,-0.329645037651062 +illusion_0.75L,target,56,11.2,velocity,center_ux,0.9237415194511414 +illusion_0.75L,target,56,11.2,velocity,center_uy,-0.5166975855827332 +illusion_0.75L,target,56,11.2,velocity,lower_ux,0.833092451095581 +illusion_0.75L,target,56,11.2,velocity,lower_uy,-0.16126719117164612 +illusion_0.75L,target,57,11.4,velocity,upper_ux,1.3065404891967773 +illusion_0.75L,target,57,11.4,velocity,upper_uy,-0.32117611169815063 +illusion_0.75L,target,57,11.4,velocity,center_ux,0.8888378143310547 +illusion_0.75L,target,57,11.4,velocity,center_uy,-0.4212421178817749 +illusion_0.75L,target,57,11.4,velocity,lower_ux,0.8092330694198608 +illusion_0.75L,target,57,11.4,velocity,lower_uy,-0.09588101506233215 +illusion_0.75L,target,58,11.6,velocity,upper_ux,1.3558295965194702 +illusion_0.75L,target,58,11.6,velocity,upper_uy,-0.2792101204395294 +illusion_0.75L,target,58,11.6,velocity,center_ux,0.854878306388855 +illusion_0.75L,target,58,11.6,velocity,center_uy,-0.2571195065975189 +illusion_0.75L,target,58,11.6,velocity,lower_ux,0.7990994453430176 +illusion_0.75L,target,58,11.6,velocity,lower_uy,-0.02793109603226185 +illusion_0.75L,target,59,11.8,velocity,upper_ux,1.3727822303771973 +illusion_0.75L,target,59,11.8,velocity,upper_uy,-0.1802135407924652 +illusion_0.75L,target,59,11.8,velocity,center_ux,0.832348108291626 +illusion_0.75L,target,59,11.8,velocity,center_uy,-0.04542090743780136 +illusion_0.75L,target,59,11.8,velocity,lower_ux,0.8054001331329346 +illusion_0.75L,target,59,11.8,velocity,lower_uy,0.03442652150988579 +illusion_0.75L,target,60,12.0,velocity,upper_ux,1.3435267210006714 +illusion_0.75L,target,60,12.0,velocity,upper_uy,-0.0309319905936718 +illusion_0.75L,target,60,12.0,velocity,center_ux,0.8264027237892151 +illusion_0.75L,target,60,12.0,velocity,center_uy,0.17352783679962158 +illusion_0.75L,target,60,12.0,velocity,lower_ux,0.8261111974716187 +illusion_0.75L,target,60,12.0,velocity,lower_uy,0.08605489134788513 +illusion_0.75L,target,61,12.2,velocity,upper_ux,1.2825802564620972 +illusion_0.75L,target,61,12.2,velocity,upper_uy,0.12294581532478333 +illusion_0.75L,target,61,12.2,velocity,center_ux,0.8363524675369263 +illusion_0.75L,target,61,12.2,velocity,center_uy,0.35832545161247253 +illusion_0.75L,target,61,12.2,velocity,lower_ux,0.8555456399917603 +illusion_0.75L,target,61,12.2,velocity,lower_uy,0.12768672406673431 +illusion_0.75L,target,62,12.4,velocity,upper_ux,1.2143388986587524 +illusion_0.75L,target,62,12.4,velocity,upper_uy,0.23862197995185852 +illusion_0.75L,target,62,12.4,velocity,center_ux,0.8581878542900085 +illusion_0.75L,target,62,12.4,velocity,center_uy,0.4768601357936859 +illusion_0.75L,target,62,12.4,velocity,lower_ux,0.8881994485855103 +illusion_0.75L,target,62,12.4,velocity,lower_uy,0.1625646948814392 +illusion_0.75L,target,63,12.6,velocity,upper_ux,1.1518259048461914 +illusion_0.75L,target,63,12.6,velocity,upper_uy,0.3053264319896698 +illusion_0.75L,target,63,12.6,velocity,center_ux,0.8864054679870605 +illusion_0.75L,target,63,12.6,velocity,center_uy,0.5249181389808655 +illusion_0.75L,target,63,12.6,velocity,lower_ux,0.9218542575836182 +illusion_0.75L,target,63,12.6,velocity,lower_uy,0.19312989711761475 +illusion_0.75L,target,64,12.8,velocity,upper_ux,1.0989736318588257 +illusion_0.75L,target,64,12.8,velocity,upper_uy,0.3326578140258789 +illusion_0.75L,target,64,12.8,velocity,center_ux,0.9145042300224304 +illusion_0.75L,target,64,12.8,velocity,center_uy,0.5288690328598022 +illusion_0.75L,target,64,12.8,velocity,lower_ux,0.9560401439666748 +illusion_0.75L,target,64,12.8,velocity,lower_uy,0.21991436183452606 +illusion_0.75L,target,65,13.0,velocity,upper_ux,1.0545395612716675 +illusion_0.75L,target,65,13.0,velocity,upper_uy,0.3365267217159271 +illusion_0.75L,target,65,13.0,velocity,center_ux,0.9377667903900146 +illusion_0.75L,target,65,13.0,velocity,center_uy,0.5218532681465149 +illusion_0.75L,target,65,13.0,velocity,lower_ux,0.9910085797309875 +illusion_0.75L,target,65,13.0,velocity,lower_uy,0.24335411190986633 +illusion_0.75L,target,66,13.2,velocity,upper_ux,1.0154047012329102 +illusion_0.75L,target,66,13.2,velocity,upper_uy,0.3286875784397125 +illusion_0.75L,target,66,13.2,velocity,center_ux,0.9545696377754211 +illusion_0.75L,target,66,13.2,velocity,center_uy,0.5200645923614502 +illusion_0.75L,target,66,13.2,velocity,lower_ux,1.026893973350525 +illusion_0.75L,target,66,13.2,velocity,lower_uy,0.2639400362968445 +illusion_0.75L,target,67,13.4,velocity,upper_ux,0.9781486392021179 +illusion_0.75L,target,67,13.4,velocity,upper_uy,0.3138938844203949 +illusion_0.75L,target,67,13.4,velocity,center_ux,0.9651007056236267 +illusion_0.75L,target,67,13.4,velocity,center_uy,0.5261363387107849 +illusion_0.75L,target,67,13.4,velocity,lower_ux,1.0643008947372437 +illusion_0.75L,target,67,13.4,velocity,lower_uy,0.2823006510734558 +illusion_0.75L,target,68,13.6,velocity,upper_ux,0.9408719539642334 +illusion_0.75L,target,68,13.6,velocity,upper_uy,0.29193025827407837 +illusion_0.75L,target,68,13.6,velocity,center_ux,0.9691094160079956 +illusion_0.75L,target,68,13.6,velocity,center_uy,0.5381580591201782 +illusion_0.75L,target,68,13.6,velocity,lower_ux,1.103937029838562 +illusion_0.75L,target,68,13.6,velocity,lower_uy,0.29867038130760193 +illusion_0.75L,target,69,13.8,velocity,upper_ux,0.9031813740730286 +illusion_0.75L,target,69,13.8,velocity,upper_uy,0.2604116201400757 +illusion_0.75L,target,69,13.8,velocity,center_ux,0.9651886820793152 +illusion_0.75L,target,69,13.8,velocity,center_uy,0.5507131814956665 +illusion_0.75L,target,69,13.8,velocity,lower_ux,1.146952748298645 +illusion_0.75L,target,69,13.8,velocity,lower_uy,0.31291571259498596 +illusion_0.75L,target,70,14.0,velocity,upper_ux,0.8663137555122375 +illusion_0.75L,target,70,14.0,velocity,upper_uy,0.21692895889282227 +illusion_0.75L,target,70,14.0,velocity,center_ux,0.9507977962493896 +illusion_0.75L,target,70,14.0,velocity,center_uy,0.5511146783828735 +illusion_0.75L,target,70,14.0,velocity,lower_ux,1.1948437690734863 +illusion_0.75L,target,70,14.0,velocity,lower_uy,0.32419461011886597 +illusion_0.75L,target,71,14.2,velocity,upper_ux,0.8334257006645203 +illusion_0.75L,target,71,14.2,velocity,upper_uy,0.16116748750209808 +illusion_0.75L,target,71,14.2,velocity,center_ux,0.9243066310882568 +illusion_0.75L,target,71,14.2,velocity,center_uy,0.5166758894920349 +illusion_0.75L,target,71,14.2,velocity,lower_ux,1.2484641075134277 +illusion_0.75L,target,71,14.2,velocity,lower_uy,0.32977691292762756 +illusion_0.75L,target,72,14.4,velocity,upper_ux,0.8091005682945251 +illusion_0.75L,target,72,14.4,velocity,upper_uy,0.0959252193570137 +illusion_0.75L,target,72,14.4,velocity,center_ux,0.8889054656028748 +illusion_0.75L,target,72,14.4,velocity,center_uy,0.42185211181640625 +illusion_0.75L,target,72,14.4,velocity,lower_ux,1.305840253829956 +illusion_0.75L,target,72,14.4,velocity,lower_uy,0.32154977321624756 +illusion_0.75L,target,73,14.6,velocity,upper_ux,0.7985145449638367 +illusion_0.75L,target,73,14.6,velocity,upper_uy,0.02805296704173088 +illusion_0.75L,target,73,14.6,velocity,center_ux,0.8543518781661987 +illusion_0.75L,target,73,14.6,velocity,center_uy,0.2582860291004181 +illusion_0.75L,target,73,14.6,velocity,lower_ux,1.3548632860183716 +illusion_0.75L,target,73,14.6,velocity,lower_uy,0.2800445258617401 +illusion_0.75L,target,74,14.8,velocity,upper_ux,0.8045015931129456 +illusion_0.75L,target,74,14.8,velocity,upper_uy,-0.034190770238637924 +illusion_0.75L,target,74,14.8,velocity,center_ux,0.8313342332839966 +illusion_0.75L,target,74,14.8,velocity,center_uy,0.04712150990962982 +illusion_0.75L,target,74,14.8,velocity,lower_ux,1.371904730796814 +illusion_0.75L,target,74,14.8,velocity,lower_uy,0.18169383704662323 +illusion_0.75L,target,75,15.0,velocity,upper_ux,0.8251540660858154 +illusion_0.75L,target,75,15.0,velocity,upper_uy,-0.08578231185674667 +illusion_0.75L,target,75,15.0,velocity,center_ux,0.8251453638076782 +illusion_0.75L,target,75,15.0,velocity,center_uy,-0.17176151275634766 +illusion_0.75L,target,75,15.0,velocity,lower_ux,1.3430252075195312 +illusion_0.75L,target,75,15.0,velocity,lower_uy,0.03264822065830231 +illusion_0.75L,target,76,15.2,velocity,upper_ux,0.8547636270523071 +illusion_0.75L,target,76,15.2,velocity,upper_uy,-0.12729758024215698 +illusion_0.75L,target,76,15.2,velocity,center_ux,0.8351773023605347 +illusion_0.75L,target,76,15.2,velocity,center_uy,-0.3564213216304779 +illusion_0.75L,target,76,15.2,velocity,lower_ux,1.2827688455581665 +illusion_0.75L,target,76,15.2,velocity,lower_uy,-0.12114740163087845 +illusion_0.75L,target,77,15.4,velocity,upper_ux,0.8879729509353638 +illusion_0.75L,target,77,15.4,velocity,upper_uy,-0.1622772216796875 +illusion_0.75L,target,77,15.4,velocity,center_ux,0.857459545135498 +illusion_0.75L,target,77,15.4,velocity,center_uy,-0.4759543538093567 +illusion_0.75L,target,77,15.4,velocity,lower_ux,1.2149021625518799 +illusion_0.75L,target,77,15.4,velocity,lower_uy,-0.23777280747890472 +illusion_0.75L,target,78,15.6,velocity,upper_ux,0.9221333861351013 +illusion_0.75L,target,78,15.6,velocity,upper_uy,-0.1928965449333191 +illusion_0.75L,target,78,15.6,velocity,center_ux,0.8861876726150513 +illusion_0.75L,target,78,15.6,velocity,center_uy,-0.5246690511703491 +illusion_0.75L,target,78,15.6,velocity,lower_ux,1.1527857780456543 +illusion_0.75L,target,78,15.6,velocity,lower_uy,-0.3051132261753082 +illusion_0.75L,target,79,15.8,velocity,upper_ux,0.9566702842712402 +illusion_0.75L,target,79,15.8,velocity,upper_uy,-0.219750314950943 +illusion_0.75L,target,79,15.8,velocity,center_ux,0.9147087335586548 +illusion_0.75L,target,79,15.8,velocity,center_uy,-0.528921365737915 +illusion_0.75L,target,79,15.8,velocity,lower_ux,1.1001430749893188 +illusion_0.75L,target,79,15.8,velocity,lower_uy,-0.33282747864723206 +illusion_0.75L,target,80,16.0,velocity,upper_ux,0.9916692972183228 +illusion_0.75L,target,80,16.0,velocity,upper_uy,-0.2432246059179306 +illusion_0.75L,target,80,16.0,velocity,center_ux,0.9381036162376404 +illusion_0.75L,target,80,16.0,velocity,center_uy,-0.5219614505767822 +illusion_0.75L,target,80,16.0,velocity,lower_ux,1.0557358264923096 +illusion_0.75L,target,80,16.0,velocity,lower_uy,-0.33684828877449036 +illusion_0.75L,target,81,16.2,velocity,upper_ux,1.0274275541305542 +illusion_0.75L,target,81,16.2,velocity,upper_uy,-0.2638973891735077 +illusion_0.75L,target,81,16.2,velocity,center_ux,0.9548105001449585 +illusion_0.75L,target,81,16.2,velocity,center_uy,-0.5201562643051147 +illusion_0.75L,target,81,16.2,velocity,lower_ux,1.016301155090332 +illusion_0.75L,target,81,16.2,velocity,lower_uy,-0.32903414964675903 +illusion_0.75L,target,82,16.4,velocity,upper_ux,1.0644699335098267 +illusion_0.75L,target,82,16.4,velocity,upper_uy,-0.2823038399219513 +illusion_0.75L,target,82,16.4,velocity,center_ux,0.9650009870529175 +illusion_0.75L,target,82,16.4,velocity,center_uy,-0.526232898235321 +illusion_0.75L,target,82,16.4,velocity,lower_ux,0.9786638021469116 +illusion_0.75L,target,82,16.4,velocity,lower_uy,-0.3142576217651367 +illusion_0.75L,target,83,16.6,velocity,upper_ux,1.103639006614685 +illusion_0.75L,target,83,16.6,velocity,upper_uy,-0.2987126410007477 +illusion_0.75L,target,83,16.6,velocity,center_ux,0.9685621857643127 +illusion_0.75L,target,83,16.6,velocity,center_uy,-0.5382816791534424 +illusion_0.75L,target,83,16.6,velocity,lower_ux,0.9409422278404236 +illusion_0.75L,target,83,16.6,velocity,lower_uy,-0.29234805703163147 +illusion_0.75L,target,84,16.8,velocity,upper_ux,1.1462098360061646 +illusion_0.75L,target,84,16.8,velocity,upper_uy,-0.31299152970314026 +illusion_0.75L,target,84,16.8,velocity,center_ux,0.9642302989959717 +illusion_0.75L,target,84,16.8,velocity,center_uy,-0.5509031414985657 +illusion_0.75L,target,84,16.8,velocity,lower_ux,0.9028561115264893 +illusion_0.75L,target,84,16.8,velocity,lower_uy,-0.2609380781650543 +illusion_0.75L,target,85,17.0,velocity,upper_ux,1.1937297582626343 +illusion_0.75L,target,85,17.0,velocity,upper_uy,-0.3242958188056946 +illusion_0.75L,target,85,17.0,velocity,center_ux,0.9496213793754578 +illusion_0.75L,target,85,17.0,velocity,center_uy,-0.5514917969703674 +illusion_0.75L,target,85,17.0,velocity,lower_ux,0.8657654523849487 +illusion_0.75L,target,85,17.0,velocity,lower_uy,-0.2176721692085266 +illusion_0.75L,target,86,17.2,velocity,upper_ux,1.2473427057266235 +illusion_0.75L,target,86,17.2,velocity,upper_uy,-0.3299404978752136 +illusion_0.75L,target,86,17.2,velocity,center_ux,0.9231539964675903 +illusion_0.75L,target,86,17.2,velocity,center_uy,-0.5174194574356079 +illusion_0.75L,target,86,17.2,velocity,lower_ux,0.8327837586402893 +illusion_0.75L,target,86,17.2,velocity,lower_uy,-0.16203241050243378 +illusion_0.75L,target,87,17.4,velocity,upper_ux,1.305019736289978 +illusion_0.75L,target,87,17.4,velocity,upper_uy,-0.32182106375694275 +illusion_0.75L,target,87,17.4,velocity,center_ux,0.8881170749664307 +illusion_0.75L,target,87,17.4,velocity,center_uy,-0.42319557070732117 +illusion_0.75L,target,87,17.4,velocity,lower_ux,0.8086379170417786 +illusion_0.75L,target,87,17.4,velocity,lower_uy,-0.09690601378679276 +illusion_0.75L,target,88,17.6,velocity,upper_ux,1.3546873331069946 +illusion_0.75L,target,88,17.6,velocity,upper_uy,-0.2805108428001404 +illusion_0.75L,target,88,17.6,velocity,center_ux,0.8541009426116943 +illusion_0.75L,target,88,17.6,velocity,center_uy,-0.2601870596408844 +illusion_0.75L,target,88,17.6,velocity,lower_ux,0.7983701825141907 +illusion_0.75L,target,88,17.6,velocity,lower_uy,-0.029003452509641647 +illusion_0.75L,target,89,17.8,velocity,upper_ux,1.3725167512893677 +illusion_0.75L,target,89,17.8,velocity,upper_uy,-0.1823340356349945 +illusion_0.75L,target,89,17.8,velocity,center_ux,0.831575870513916 +illusion_0.75L,target,89,17.8,velocity,center_uy,-0.049199823290109634 +illusion_0.75L,target,89,17.8,velocity,lower_ux,0.8046665787696838 +illusion_0.75L,target,89,17.8,velocity,lower_uy,0.033414326608181 +illusion_0.75L,target,90,18.0,velocity,upper_ux,1.344293236732483 +illusion_0.75L,target,90,18.0,velocity,upper_uy,-0.0333491712808609 +illusion_0.75L,target,90,18.0,velocity,center_ux,0.825715959072113 +illusion_0.75L,target,90,18.0,velocity,center_uy,0.16986042261123657 +illusion_0.75L,target,90,18.0,velocity,lower_ux,0.82554030418396 +illusion_0.75L,target,90,18.0,velocity,lower_uy,0.08518850058317184 +illusion_0.75L,target,91,18.2,velocity,upper_ux,1.2842473983764648 +illusion_0.75L,target,91,18.2,velocity,upper_uy,0.12076658010482788 +illusion_0.75L,target,91,18.2,velocity,center_ux,0.8358432054519653 +illusion_0.75L,target,91,18.2,velocity,center_uy,0.355297327041626 +illusion_0.75L,target,91,18.2,velocity,lower_ux,0.8552443981170654 +illusion_0.75L,target,91,18.2,velocity,lower_uy,0.12688176333904266 +illusion_0.75L,target,92,18.4,velocity,upper_ux,1.2162630558013916 +illusion_0.75L,target,92,18.4,velocity,upper_uy,0.2376188039779663 +illusion_0.75L,target,92,18.4,velocity,center_ux,0.8579798936843872 +illusion_0.75L,target,92,18.4,velocity,center_uy,0.4755736291408539 +illusion_0.75L,target,92,18.4,velocity,lower_ux,0.8883236050605774 +illusion_0.75L,target,92,18.4,velocity,lower_uy,0.16194526851177216 +illusion_0.75L,target,93,18.6,velocity,upper_ux,1.1537754535675049 +illusion_0.75L,target,93,18.6,velocity,upper_uy,0.30511149764060974 +illusion_0.75L,target,93,18.6,velocity,center_ux,0.8863937854766846 +illusion_0.75L,target,93,18.6,velocity,center_uy,0.5248191952705383 +illusion_0.75L,target,93,18.6,velocity,lower_ux,0.9221685528755188 +illusion_0.75L,target,93,18.6,velocity,lower_uy,0.19261395931243896 +illusion_0.75L,target,94,18.8,velocity,upper_ux,1.1006284952163696 +illusion_0.75L,target,94,18.8,velocity,upper_uy,0.3329138457775116 +illusion_0.75L,target,94,18.8,velocity,center_ux,0.9145171642303467 +illusion_0.75L,target,94,18.8,velocity,center_uy,0.5292636156082153 +illusion_0.75L,target,94,18.8,velocity,lower_ux,0.9562713503837585 +illusion_0.75L,target,94,18.8,velocity,lower_uy,0.21949531137943268 +illusion_0.75L,target,95,19.0,velocity,upper_ux,1.055738091468811 +illusion_0.75L,target,95,19.0,velocity,upper_uy,0.33698996901512146 +illusion_0.75L,target,95,19.0,velocity,center_ux,0.9375443458557129 +illusion_0.75L,target,95,19.0,velocity,center_uy,0.5222848653793335 +illusion_0.75L,target,95,19.0,velocity,lower_ux,0.990835964679718 +illusion_0.75L,target,95,19.0,velocity,lower_uy,0.2429748773574829 +illusion_0.75L,target,96,19.2,velocity,upper_ux,1.015952706336975 +illusion_0.75L,target,96,19.2,velocity,upper_uy,0.329219788312912 +illusion_0.75L,target,96,19.2,velocity,center_ux,0.9540210962295532 +illusion_0.75L,target,96,19.2,velocity,center_uy,0.5203947424888611 +illusion_0.75L,target,96,19.2,velocity,lower_ux,1.0262776613235474 +illusion_0.75L,target,96,19.2,velocity,lower_uy,0.2636394202709198 +illusion_0.75L,target,97,19.4,velocity,upper_ux,0.9782230854034424 +illusion_0.75L,target,97,19.4,velocity,upper_uy,0.3144891858100891 +illusion_0.75L,target,97,19.4,velocity,center_ux,0.9642337560653687 +illusion_0.75L,target,97,19.4,velocity,center_uy,0.5263767838478088 +illusion_0.75L,target,97,19.4,velocity,lower_ux,1.0632261037826538 +illusion_0.75L,target,97,19.4,velocity,lower_uy,0.2820241451263428 +illusion_0.75L,target,98,19.6,velocity,upper_ux,0.9406791925430298 +illusion_0.75L,target,98,19.6,velocity,upper_uy,0.29259616136550903 +illusion_0.75L,target,98,19.6,velocity,center_ux,0.9681571125984192 +illusion_0.75L,target,98,19.6,velocity,center_uy,0.5383661985397339 +illusion_0.75L,target,98,19.6,velocity,lower_ux,1.102666974067688 +illusion_0.75L,target,98,19.6,velocity,lower_uy,0.29842832684516907 +illusion_0.75L,target,99,19.8,velocity,upper_ux,0.9031040072441101 +illusion_0.75L,target,99,19.8,velocity,upper_uy,0.2612794041633606 +illusion_0.75L,target,99,19.8,velocity,center_ux,0.9644533395767212 +illusion_0.75L,target,99,19.8,velocity,center_uy,0.5509545207023621 +illusion_0.75L,target,99,19.8,velocity,lower_ux,1.1456282138824463 +illusion_0.75L,target,99,19.8,velocity,lower_uy,0.3126623332500458 +illusion_0.75L,target,100,20.0,velocity,upper_ux,0.8664714097976685 +illusion_0.75L,target,100,20.0,velocity,upper_uy,0.2180439829826355 +illusion_0.75L,target,100,20.0,velocity,center_ux,0.9505214095115662 +illusion_0.75L,target,100,20.0,velocity,center_uy,0.5516597628593445 +illusion_0.75L,target,100,20.0,velocity,lower_ux,1.1936280727386475 +illusion_0.75L,target,100,20.0,velocity,lower_uy,0.3239515721797943 +illusion_0.75L,target,101,20.2,velocity,upper_ux,0.8337767720222473 +illusion_0.75L,target,101,20.2,velocity,upper_uy,0.1623794138431549 +illusion_0.75L,target,101,20.2,velocity,center_ux,0.9245653748512268 +illusion_0.75L,target,101,20.2,velocity,center_uy,0.5178245306015015 +illusion_0.75L,target,101,20.2,velocity,lower_ux,1.2475924491882324 +illusion_0.75L,target,101,20.2,velocity,lower_uy,0.3296085000038147 +illusion_0.75L,target,102,20.4,velocity,upper_ux,0.809651255607605 +illusion_0.75L,target,102,20.4,velocity,upper_uy,0.0971677377820015 +illusion_0.75L,target,102,20.4,velocity,center_ux,0.8897114396095276 +illusion_0.75L,target,102,20.4,velocity,center_uy,0.42381393909454346 +illusion_0.75L,target,102,20.4,velocity,lower_ux,1.3054051399230957 +illusion_0.75L,target,102,20.4,velocity,lower_uy,0.32158535718917847 +illusion_0.75L,target,103,20.6,velocity,upper_ux,0.7991589307785034 +illusion_0.75L,target,103,20.6,velocity,upper_uy,0.029082797467708588 +illusion_0.75L,target,103,20.6,velocity,center_ux,0.8554904460906982 +illusion_0.75L,target,103,20.6,velocity,center_uy,0.26063501834869385 +illusion_0.75L,target,103,20.6,velocity,lower_ux,1.3550910949707031 +illusion_0.75L,target,103,20.6,velocity,lower_uy,0.28047987818717957 +illusion_0.75L,target,104,20.8,velocity,upper_ux,0.8050705194473267 +illusion_0.75L,target,104,20.8,velocity,upper_uy,-0.033361610025167465 +illusion_0.75L,target,104,20.8,velocity,center_ux,0.8325905799865723 +illusion_0.75L,target,104,20.8,velocity,center_uy,0.04973023757338524 +illusion_0.75L,target,104,20.8,velocity,lower_ux,1.3727891445159912 +illusion_0.75L,target,104,20.8,velocity,lower_uy,0.18282131850719452 +illusion_0.75L,target,105,21.0,velocity,upper_ux,0.8254712820053101 +illusion_0.75L,target,105,21.0,velocity,upper_uy,-0.08518672734498978 +illusion_0.75L,target,105,21.0,velocity,center_ux,0.8262057304382324 +illusion_0.75L,target,105,21.0,velocity,center_uy,-0.1694527417421341 +illusion_0.75L,target,105,21.0,velocity,lower_ux,1.344315528869629 +illusion_0.75L,target,105,21.0,velocity,lower_uy,0.03420528769493103 +illusion_0.75L,target,106,21.2,velocity,upper_ux,0.8547117710113525 +illusion_0.75L,target,106,21.2,velocity,upper_uy,-0.1268894523382187 +illusion_0.75L,target,106,21.2,velocity,center_ux,0.8358070254325867 +illusion_0.75L,target,106,21.2,velocity,center_uy,-0.3549268841743469 +illusion_0.75L,target,106,21.2,velocity,lower_ux,1.2838656902313232 +illusion_0.75L,target,106,21.2,velocity,lower_uy,-0.11979653686285019 +illusion_0.75L,target,107,21.4,velocity,upper_ux,0.8874387145042419 +illusion_0.75L,target,107,21.4,velocity,upper_uy,-0.16193422675132751 +illusion_0.75L,target,107,21.4,velocity,center_ux,0.8575255870819092 +illusion_0.75L,target,107,21.4,velocity,center_uy,-0.47519490122795105 +illusion_0.75L,target,107,21.4,velocity,lower_ux,1.2155065536499023 +illusion_0.75L,target,107,21.4,velocity,lower_uy,-0.2367320954799652 +illusion_0.75L,target,108,21.6,velocity,upper_ux,0.9211970567703247 +illusion_0.75L,target,108,21.6,velocity,upper_uy,-0.1926136463880539 +illusion_0.75L,target,108,21.6,velocity,center_ux,0.8857876062393188 +illusion_0.75L,target,108,21.6,velocity,center_uy,-0.5244892239570618 +illusion_0.75L,target,108,21.6,velocity,lower_ux,1.1528055667877197 +illusion_0.75L,target,108,21.6,velocity,lower_uy,-0.3044549226760864 +illusion_0.75L,target,109,21.8,velocity,upper_ux,0.9554104804992676 +illusion_0.75L,target,109,21.8,velocity,upper_uy,-0.21942010521888733 +illusion_0.75L,target,109,21.8,velocity,center_ux,0.9139959216117859 +illusion_0.75L,target,109,21.8,velocity,center_uy,-0.5289390683174133 +illusion_0.75L,target,109,21.8,velocity,lower_ux,1.0999714136123657 +illusion_0.75L,target,109,21.8,velocity,lower_uy,-0.3323720097541809 +illusion_0.75L,target,110,22.0,velocity,upper_ux,0.9904270172119141 +illusion_0.75L,target,110,22.0,velocity,upper_uy,-0.24290643632411957 +illusion_0.75L,target,110,22.0,velocity,center_ux,0.9374616146087646 +illusion_0.75L,target,110,22.0,velocity,center_uy,-0.5219318866729736 +illusion_0.75L,target,110,22.0,velocity,lower_ux,1.0555353164672852 +illusion_0.75L,target,110,22.0,velocity,lower_uy,-0.33659127354621887 +illusion_0.75L,target,111,22.2,velocity,upper_ux,1.0263313055038452 +illusion_0.75L,target,111,22.2,velocity,upper_uy,-0.26356300711631775 +illusion_0.75L,target,111,22.2,velocity,center_ux,0.9544259905815125 +illusion_0.75L,target,111,22.2,velocity,center_uy,-0.5199859738349915 +illusion_0.75L,target,111,22.2,velocity,lower_ux,1.0163239240646362 +illusion_0.75L,target,111,22.2,velocity,lower_uy,-0.3289210796356201 +illusion_0.75L,target,112,22.4,velocity,upper_ux,1.063685655593872 +illusion_0.75L,target,112,22.4,velocity,upper_uy,-0.28198471665382385 +illusion_0.75L,target,112,22.4,velocity,center_ux,0.9650377035140991 +illusion_0.75L,target,112,22.4,velocity,center_uy,-0.5259200930595398 +illusion_0.75L,target,112,22.4,velocity,lower_ux,0.9789848923683167 +illusion_0.75L,target,112,22.4,velocity,lower_uy,-0.3142462372779846 +illusion_0.75L,target,113,22.6,velocity,upper_ux,1.1031492948532104 +illusion_0.75L,target,113,22.6,velocity,upper_uy,-0.298379510641098 +illusion_0.75L,target,113,22.6,velocity,center_ux,0.9691088795661926 +illusion_0.75L,target,113,22.6,velocity,center_uy,-0.5378500819206238 +illusion_0.75L,target,113,22.6,velocity,lower_ux,0.9417095184326172 +illusion_0.75L,target,113,22.6,velocity,lower_uy,-0.29248395562171936 +illusion_0.75L,target,114,22.8,velocity,upper_ux,1.1460098028182983 +illusion_0.75L,target,114,22.8,velocity,upper_uy,-0.3126800060272217 +illusion_0.75L,target,114,22.8,velocity,center_ux,0.9653162956237793 +illusion_0.75L,target,114,22.8,velocity,center_uy,-0.5504981875419617 +illusion_0.75L,target,114,22.8,velocity,lower_ux,0.9039838910102844 +illusion_0.75L,target,114,22.8,velocity,lower_uy,-0.2612144351005554 +illusion_0.75L,target,115,23.0,velocity,upper_ux,1.1936793327331543 +illusion_0.75L,target,115,23.0,velocity,upper_uy,-0.32404452562332153 +illusion_0.75L,target,115,23.0,velocity,center_ux,0.9510934352874756 +illusion_0.75L,target,115,23.0,velocity,center_uy,-0.5513859391212463 +illusion_0.75L,target,115,23.0,velocity,lower_ux,0.8670146465301514 +illusion_0.75L,target,115,23.0,velocity,lower_uy,-0.218038409948349 +illusion_0.75L,target,116,23.2,velocity,upper_ux,1.2471462488174438 +illusion_0.75L,target,116,23.2,velocity,upper_uy,-0.3298180103302002 +illusion_0.75L,target,116,23.2,velocity,center_ux,0.9247320294380188 +illusion_0.75L,target,116,23.2,velocity,center_uy,-0.5179682374000549 +illusion_0.75L,target,116,23.2,velocity,lower_ux,0.8338882923126221 +illusion_0.75L,target,116,23.2,velocity,lower_uy,-0.16248857975006104 +illusion_0.75L,target,117,23.4,velocity,upper_ux,1.3076480627059937 +illusion_0.75L,target,117,23.4,velocity,upper_uy,-0.322907418012619 +illusion_0.75L,target,117,23.4,velocity,center_ux,0.8917431831359863 +illusion_0.75L,target,117,23.4,velocity,center_uy,-0.4260391891002655 +illusion_0.75L,target,117,23.4,velocity,lower_ux,0.81139075756073 +illusion_0.75L,target,117,23.4,velocity,lower_uy,-0.09782262146472931 +illusion_0.75L,target,118,23.6,velocity,upper_ux,1.3538686037063599 +illusion_0.75L,target,118,23.6,velocity,upper_uy,-0.28170663118362427 +illusion_0.75L,target,118,23.6,velocity,center_ux,0.8548455834388733 +illusion_0.75L,target,118,23.6,velocity,center_uy,-0.2630109488964081 +illusion_0.75L,target,118,23.6,velocity,lower_ux,0.7984334826469421 +illusion_0.75L,target,118,23.6,velocity,lower_uy,-0.02970299869775772 +illusion_0.75L,target,119,23.8,velocity,upper_ux,1.3720004558563232 +illusion_0.75L,target,119,23.8,velocity,upper_uy,-0.1845112442970276 +illusion_0.75L,target,119,23.8,velocity,center_ux,0.8315002918243408 +illusion_0.75L,target,119,23.8,velocity,center_uy,-0.052084069699048996 +illusion_0.75L,target,119,23.8,velocity,lower_ux,0.8041173815727234 +illusion_0.75L,target,119,23.8,velocity,lower_uy,0.03288610652089119 +illusion_0.75L,target,120,24.0,velocity,upper_ux,1.3442201614379883 +illusion_0.75L,target,120,24.0,velocity,upper_uy,-0.03629225119948387 +illusion_0.75L,target,120,24.0,velocity,center_ux,0.8250393867492676 +illusion_0.75L,target,120,24.0,velocity,center_uy,0.16687071323394775 +illusion_0.75L,target,120,24.0,velocity,lower_ux,0.8245722055435181 +illusion_0.75L,target,120,24.0,velocity,lower_uy,0.08467995375394821 +illusion_0.75L,target,121,24.2,velocity,upper_ux,1.2846134901046753 +illusion_0.75L,target,121,24.2,velocity,upper_uy,0.1177888810634613 +illusion_0.75L,target,121,24.2,velocity,center_ux,0.8348201513290405 +illusion_0.75L,target,121,24.2,velocity,center_uy,0.352530300617218 +illusion_0.75L,target,121,24.2,velocity,lower_ux,0.8540997505187988 +illusion_0.75L,target,121,24.2,velocity,lower_uy,0.12633593380451202 +illusion_0.75L,target,122,24.4,velocity,upper_ux,1.216494083404541 +illusion_0.75L,target,122,24.4,velocity,upper_uy,0.23597601056098938 +illusion_0.75L,target,122,24.4,velocity,center_ux,0.8570137023925781 +illusion_0.75L,target,122,24.4,velocity,center_uy,0.4742628335952759 +illusion_0.75L,target,122,24.4,velocity,lower_ux,0.8874355554580688 +illusion_0.75L,target,122,24.4,velocity,lower_uy,0.16157779097557068 +illusion_0.75L,target,123,24.6,velocity,upper_ux,1.1543024778366089 +illusion_0.75L,target,123,24.6,velocity,upper_uy,0.30417051911354065 +illusion_0.75L,target,123,24.6,velocity,center_ux,0.8855779767036438 +illusion_0.75L,target,123,24.6,velocity,center_uy,0.5242539644241333 +illusion_0.75L,target,123,24.6,velocity,lower_ux,0.9214673638343811 +illusion_0.75L,target,123,24.6,velocity,lower_uy,0.19221395254135132 +illusion_0.75L,target,124,24.8,velocity,upper_ux,1.1013368368148804 +illusion_0.75L,target,124,24.8,velocity,upper_uy,0.3326125741004944 +illusion_0.75L,target,124,24.8,velocity,center_ux,0.9141475558280945 +illusion_0.75L,target,124,24.8,velocity,center_uy,0.5291188955307007 +illusion_0.75L,target,124,24.8,velocity,lower_ux,0.955966591835022 +illusion_0.75L,target,124,24.8,velocity,lower_uy,0.21917712688446045 +illusion_0.75L,target,125,25.0,velocity,upper_ux,1.0567978620529175 +illusion_0.75L,target,125,25.0,velocity,upper_uy,0.33699870109558105 +illusion_0.75L,target,125,25.0,velocity,center_ux,0.937603771686554 +illusion_0.75L,target,125,25.0,velocity,center_uy,0.5221692323684692 +illusion_0.75L,target,125,25.0,velocity,lower_ux,0.990832507610321 +illusion_0.75L,target,125,25.0,velocity,lower_uy,0.24268122017383575 +illusion_0.75L,target,126,25.2,velocity,upper_ux,1.0170978307724 +illusion_0.75L,target,126,25.2,velocity,upper_uy,0.32934683561325073 +illusion_0.75L,target,126,25.2,velocity,center_ux,0.9544395208358765 +illusion_0.75L,target,126,25.2,velocity,center_uy,0.5201830863952637 +illusion_0.75L,target,126,25.2,velocity,lower_ux,1.0265926122665405 +illusion_0.75L,target,126,25.2,velocity,lower_uy,0.2634657323360443 +illusion_0.75L,target,127,25.4,velocity,upper_ux,0.9794104099273682 +illusion_0.75L,target,127,25.4,velocity,upper_uy,0.3147301971912384 +illusion_0.75L,target,127,25.4,velocity,center_ux,0.9646809101104736 +illusion_0.75L,target,127,25.4,velocity,center_uy,0.5260872840881348 +illusion_0.75L,target,127,25.4,velocity,lower_ux,1.0634551048278809 +illusion_0.75L,target,127,25.4,velocity,lower_uy,0.28188785910606384 +illusion_0.75L,target,128,25.6,velocity,upper_ux,0.9416812658309937 +illusion_0.75L,target,128,25.6,velocity,upper_uy,0.2930127680301666 +illusion_0.75L,target,128,25.6,velocity,center_ux,0.9683852195739746 +illusion_0.75L,target,128,25.6,velocity,center_uy,0.5380381345748901 +illusion_0.75L,target,128,25.6,velocity,lower_ux,1.1025233268737793 +illusion_0.75L,target,128,25.6,velocity,lower_uy,0.29833242297172546 +illusion_0.75L,target,129,25.8,velocity,upper_ux,0.903645932674408 +illusion_0.75L,target,129,25.8,velocity,upper_uy,0.26187124848365784 +illusion_0.75L,target,129,25.8,velocity,center_ux,0.9643148183822632 +illusion_0.75L,target,129,25.8,velocity,center_uy,0.5507469773292542 +illusion_0.75L,target,129,25.8,velocity,lower_ux,1.1450167894363403 +illusion_0.75L,target,129,25.8,velocity,lower_uy,0.31265541911125183 +illusion_0.75L,target,130,26.0,velocity,upper_ux,0.8665599226951599 +illusion_0.75L,target,130,26.0,velocity,upper_uy,0.2188888043165207 +illusion_0.75L,target,130,26.0,velocity,center_ux,0.9500522017478943 +illusion_0.75L,target,130,26.0,velocity,center_uy,0.551835834980011 +illusion_0.75L,target,130,26.0,velocity,lower_ux,1.1924786567687988 +illusion_0.75L,target,130,26.0,velocity,lower_uy,0.32404208183288574 +illusion_0.75L,target,131,26.2,velocity,upper_ux,0.8335051536560059 +illusion_0.75L,target,131,26.2,velocity,upper_uy,0.16347117722034454 +illusion_0.75L,target,131,26.2,velocity,center_ux,0.9239427447319031 +illusion_0.75L,target,131,26.2,velocity,center_uy,0.5188330411911011 +illusion_0.75L,target,131,26.2,velocity,lower_ux,1.2460904121398926 +illusion_0.75L,target,131,26.2,velocity,lower_uy,0.32986801862716675 +illusion_0.75L,target,132,26.4,velocity,upper_ux,0.8092082142829895 +illusion_0.75L,target,132,26.4,velocity,upper_uy,0.09852886199951172 +illusion_0.75L,target,132,26.4,velocity,center_ux,0.8891617655754089 +illusion_0.75L,target,132,26.4,velocity,center_uy,0.4262339472770691 +illusion_0.75L,target,132,26.4,velocity,lower_ux,1.3038257360458374 +illusion_0.75L,target,132,26.4,velocity,lower_uy,0.32222893834114075 +illusion_0.75L,target,133,26.6,velocity,upper_ux,0.798593282699585 +illusion_0.75L,target,133,26.6,velocity,upper_uy,0.030469009652733803 +illusion_0.75L,target,133,26.6,velocity,center_ux,0.8549857139587402 +illusion_0.75L,target,133,26.6,velocity,center_uy,0.264350950717926 +illusion_0.75L,target,133,26.6,velocity,lower_ux,1.3540246486663818 +illusion_0.75L,target,133,26.6,velocity,lower_uy,0.2818804085254669 +illusion_0.75L,target,134,26.8,velocity,upper_ux,0.8044942617416382 +illusion_0.75L,target,134,26.8,velocity,upper_uy,-0.032183170318603516 +illusion_0.75L,target,134,26.8,velocity,center_ux,0.8321055769920349 +illusion_0.75L,target,134,26.8,velocity,center_uy,0.053889576345682144 +illusion_0.75L,target,134,26.8,velocity,lower_ux,1.3727524280548096 +illusion_0.75L,target,134,26.8,velocity,lower_uy,0.18500524759292603 +illusion_0.75L,target,135,27.0,velocity,upper_ux,0.8250636458396912 +illusion_0.75L,target,135,27.0,velocity,upper_uy,-0.08423961699008942 +illusion_0.75L,target,135,27.0,velocity,center_ux,0.825839638710022 +illusion_0.75L,target,135,27.0,velocity,center_uy,-0.1656058132648468 +illusion_0.75L,target,135,27.0,velocity,lower_ux,1.345350980758667 +illusion_0.75L,target,135,27.0,velocity,lower_uy,0.0366290807723999 +illusion_0.75L,target,136,27.2,velocity,upper_ux,0.8545997738838196 +illusion_0.75L,target,136,27.2,velocity,upper_uy,-0.12612053751945496 +illusion_0.75L,target,136,27.2,velocity,center_ux,0.8356252312660217 +illusion_0.75L,target,136,27.2,velocity,center_uy,-0.35213568806648254 +illusion_0.75L,target,136,27.2,velocity,lower_ux,1.2856274843215942 +illusion_0.75L,target,136,27.2,velocity,lower_uy,-0.11788759380578995 +illusion_0.75L,target,137,27.4,velocity,upper_ux,0.8875118494033813 +illusion_0.75L,target,137,27.4,velocity,upper_uy,-0.16122722625732422 +illusion_0.75L,target,137,27.4,velocity,center_ux,0.8574439287185669 +illusion_0.75L,target,137,27.4,velocity,center_uy,-0.4737382233142853 +illusion_0.75L,target,137,27.4,velocity,lower_ux,1.2176728248596191 +illusion_0.75L,target,137,27.4,velocity,lower_uy,-0.23551742732524872 +illusion_0.75L,target,138,27.6,velocity,upper_ux,0.9212562441825867 +illusion_0.75L,target,138,27.6,velocity,upper_uy,-0.1919718235731125 +illusion_0.75L,target,138,27.6,velocity,center_ux,0.8856881856918335 +illusion_0.75L,target,138,27.6,velocity,center_uy,-0.5243340730667114 +illusion_0.75L,target,138,27.6,velocity,lower_ux,1.1549229621887207 +illusion_0.75L,target,138,27.6,velocity,lower_uy,-0.30401745438575745 +illusion_0.75L,target,139,27.8,velocity,upper_ux,0.955315351486206 +illusion_0.75L,target,139,27.8,velocity,upper_uy,-0.2189287543296814 +illusion_0.75L,target,139,27.8,velocity,center_ux,0.9138368368148804 +illusion_0.75L,target,139,27.8,velocity,center_uy,-0.5293570160865784 +illusion_0.75L,target,139,27.8,velocity,lower_ux,1.1015377044677734 +illusion_0.75L,target,139,27.8,velocity,lower_uy,-0.33252620697021484 +illusion_0.75L,target,140,28.0,velocity,upper_ux,0.9899551868438721 +illusion_0.75L,target,140,28.0,velocity,upper_uy,-0.24251221120357513 +illusion_0.75L,target,140,28.0,velocity,center_ux,0.9370612502098083 +illusion_0.75L,target,140,28.0,velocity,center_uy,-0.5223591327667236 +illusion_0.75L,target,140,28.0,velocity,lower_ux,1.056459665298462 +illusion_0.75L,target,140,28.0,velocity,lower_uy,-0.3369785249233246 +illusion_0.75L,target,141,28.2,velocity,upper_ux,1.025425672531128 +illusion_0.75L,target,141,28.2,velocity,upper_uy,-0.2632216811180115 +illusion_0.75L,target,141,28.2,velocity,center_ux,0.9537280201911926 +illusion_0.75L,target,141,28.2,velocity,center_uy,-0.5202964544296265 +illusion_0.75L,target,141,28.2,velocity,lower_ux,1.016675591468811 +illusion_0.75L,target,141,28.2,velocity,lower_uy,-0.3293918967247009 +illusion_0.75L,target,142,28.4,velocity,upper_ux,1.0624364614486694 +illusion_0.75L,target,142,28.4,velocity,upper_uy,-0.2816507816314697 +illusion_0.75L,target,142,28.4,velocity,center_ux,0.9641633033752441 +illusion_0.75L,target,142,28.4,velocity,center_uy,-0.5261155962944031 +illusion_0.75L,target,142,28.4,velocity,lower_ux,0.9790142774581909 +illusion_0.75L,target,142,28.4,velocity,lower_uy,-0.3147972822189331 +illusion_0.75L,target,143,28.6,velocity,upper_ux,1.1018885374069214 +illusion_0.75L,target,143,28.6,velocity,upper_uy,-0.29808321595191956 +illusion_0.75L,target,143,28.6,velocity,center_ux,0.968329668045044 +illusion_0.75L,target,143,28.6,velocity,center_uy,-0.5380025506019592 +illusion_0.75L,target,143,28.6,velocity,lower_ux,0.9416100978851318 +illusion_0.75L,target,143,28.6,velocity,lower_uy,-0.29309603571891785 +illusion_0.75L,target,144,28.8,velocity,upper_ux,1.1448910236358643 +illusion_0.75L,target,144,28.8,velocity,upper_uy,-0.3123984634876251 +illusion_0.75L,target,144,28.8,velocity,center_ux,0.964842677116394 +illusion_0.75L,target,144,28.8,velocity,center_uy,-0.5506964325904846 +illusion_0.75L,target,144,28.8,velocity,lower_ux,0.9039944410324097 +illusion_0.75L,target,144,28.8,velocity,lower_uy,-0.261934757232666 +illusion_0.75L,target,145,29.0,velocity,upper_ux,1.1926829814910889 +illusion_0.75L,target,145,29.0,velocity,upper_uy,-0.32375502586364746 +illusion_0.75L,target,145,29.0,velocity,center_ux,0.9511339068412781 +illusion_0.75L,target,145,29.0,velocity,center_uy,-0.5518395900726318 +illusion_0.75L,target,145,29.0,velocity,lower_ux,0.8673329949378967 +illusion_0.75L,target,145,29.0,velocity,lower_uy,-0.21900242567062378 +illusion_0.75L,target,146,29.2,velocity,upper_ux,1.2464274168014526 +illusion_0.75L,target,146,29.2,velocity,upper_uy,-0.3295876681804657 +illusion_0.75L,target,146,29.2,velocity,center_ux,0.9253768920898438 +illusion_0.75L,target,146,29.2,velocity,center_uy,-0.5190471410751343 +illusion_0.75L,target,146,29.2,velocity,lower_ux,0.8344729542732239 +illusion_0.75L,target,146,29.2,velocity,lower_uy,-0.16360914707183838 +illusion_0.75L,target,147,29.4,velocity,upper_ux,1.3041437864303589 +illusion_0.75L,target,147,29.4,velocity,upper_uy,-0.3220439851284027 +illusion_0.75L,target,147,29.4,velocity,center_ux,0.8905816078186035 +illusion_0.75L,target,147,29.4,velocity,center_uy,-0.4266044497489929 +illusion_0.75L,target,147,29.4,velocity,lower_ux,0.8100718855857849 +illusion_0.75L,target,147,29.4,velocity,lower_uy,-0.09858066588640213 +illusion_0.75L,target,148,29.6,velocity,upper_ux,1.3541754484176636 +illusion_0.75L,target,148,29.6,velocity,upper_uy,-0.282002329826355 +illusion_0.75L,target,148,29.6,velocity,center_ux,0.8561389446258545 +illusion_0.75L,target,148,29.6,velocity,center_uy,-0.26487094163894653 +illusion_0.75L,target,148,29.6,velocity,lower_ux,0.7991780042648315 +illusion_0.75L,target,148,29.6,velocity,lower_uy,-0.03048931062221527 +illusion_0.75L,target,149,29.8,velocity,upper_ux,1.3727552890777588 +illusion_0.75L,target,149,29.8,velocity,upper_uy,-0.18557514250278473 +illusion_0.75L,target,149,29.8,velocity,center_ux,0.832775890827179 +illusion_0.75L,target,149,29.8,velocity,center_uy,-0.054331474006175995 +illusion_0.75L,target,149,29.8,velocity,lower_ux,0.8046798706054688 +illusion_0.75L,target,149,29.8,velocity,lower_uy,0.03221309557557106 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_wide.csv new file mode 100644 index 0000000..61373ea --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_0.75L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_0.75L,target,0,0.0,1.3421152830123901,-0.02729897014796734,0.825398862361908,0.17785626649856567,0.8263359665870667,0.08700302243232727 +illusion_0.75L,target,1,0.2,1.2795941829681396,0.12987768650054932,0.8367094993591309,0.365416556596756,0.8573136329650879,0.12939360737800598 +illusion_0.75L,target,2,0.4,1.2136856317520142,0.24112986028194427,0.858796238899231,0.47865498065948486,0.8896481394767761,0.16320602595806122 +illusion_0.75L,target,3,0.6,1.1516714096069336,0.3069038987159729,0.8874850273132324,0.5255606770515442,0.923655092716217,0.19372673332691193 +illusion_0.75L,target,4,0.8,1.0989885330200195,0.3335457742214203,0.9157127141952515,0.5290298461914062,0.9579952359199524,0.22051118314266205 +illusion_0.75L,target,5,1.0,1.0544666051864624,0.33697423338890076,0.9385454654693604,0.5220950841903687,0.9926177263259888,0.24385719001293182 +illusion_0.75L,target,6,1.2,1.0147128105163574,0.3288705050945282,0.9546830058097839,0.5205357074737549,1.0280284881591797,0.26444000005722046 +illusion_0.75L,target,7,1.4,0.9768561720848083,0.3138730525970459,0.9644954800605774,0.5268304944038391,1.0648999214172363,0.2827549874782562 +illusion_0.75L,target,8,1.6,0.939155101776123,0.2916928231716156,0.9679314494132996,0.5389787554740906,1.104198694229126,0.2990667223930359 +illusion_0.75L,target,9,1.8,0.9035542011260986,0.26053059101104736,0.9660654664039612,0.5528272390365601,1.1501213312149048,0.31403857469558716 +illusion_0.75L,target,10,2.0,0.8647271990776062,0.21622243523597717,0.949174165725708,0.5512676239013672,1.1953215599060059,0.32437199354171753 +illusion_0.75L,target,11,2.2,0.8323569297790527,0.16013774275779724,0.9228420257568359,0.5155327320098877,1.2495970726013184,0.3296951353549957 +illusion_0.75L,target,12,2.4,0.8088009357452393,0.09468540549278259,0.8879522085189819,0.41883063316345215,1.3075573444366455,0.3208085298538208 +illusion_0.75L,target,13,2.6,0.7990161776542664,0.026720130816102028,0.8541786074638367,0.2534114718437195,1.3565655946731567,0.2778755724430084 +illusion_0.75L,target,14,2.8,0.8056877851486206,-0.03549692779779434,0.8320209383964539,0.04106806218624115,1.3727058172225952,0.17755915224552155 +illusion_0.75L,target,15,3.0,0.8267136216163635,-0.08690617233514786,0.8265308141708374,-0.17753084003925323,1.3427057266235352,0.027681343257427216 +illusion_0.75L,target,16,3.2,0.8562654256820679,-0.1283167600631714,0.8368131518363953,-0.36103561520576477,1.281609296798706,-0.1255147010087967 +illusion_0.75L,target,17,3.4,0.889004111289978,-0.16318050026893616,0.8588612079620361,-0.4784795641899109,1.2132480144500732,-0.24050040543079376 +illusion_0.75L,target,18,3.6,0.9226036667823792,-0.19367271661758423,0.8870754241943359,-0.5253623723983765,1.150842547416687,-0.30626311898231506 +illusion_0.75L,target,19,3.8,0.9567143321037292,-0.22038954496383667,0.9150304198265076,-0.528821587562561,1.0980877876281738,-0.33295920491218567 +illusion_0.75L,target,20,4.0,0.9915245175361633,-0.24373306334018707,0.9380267858505249,-0.5218194127082825,1.053728461265564,-0.33650103211402893 +illusion_0.75L,target,21,4.2,1.0274100303649902,-0.26429638266563416,0.9546658396720886,-0.5201678276062012,1.0145165920257568,-0.3284893035888672 +illusion_0.75L,target,22,4.4,1.064863920211792,-0.2826078534126282,0.9650963544845581,-0.5263742804527283,0.9772840738296509,-0.31356605887413025 +illusion_0.75L,target,23,4.6,1.1046215295791626,-0.2989315688610077,0.9690484404563904,-0.5384694337844849,0.9400609731674194,-0.2914411723613739 +illusion_0.75L,target,24,4.8,1.14778470993042,-0.3131248950958252,0.9650318026542664,-0.5509354472160339,0.9024286866188049,-0.2597046196460724 +illusion_0.75L,target,25,5.0,1.1957886219024658,-0.32430824637413025,0.950509786605835,-0.5509091019630432,0.8656954169273376,-0.2160201072692871 +illusion_0.75L,target,26,5.2,1.2496743202209473,-0.32972127199172974,0.9238744974136353,-0.5154682397842407,0.8329761028289795,-0.1599542200565338 +illusion_0.75L,target,27,5.4,1.3071222305297852,-0.32105618715286255,0.8884590864181519,-0.41922369599342346,0.8089398145675659,-0.09455622732639313 +illusion_0.75L,target,28,5.6,1.355748176574707,-0.2786167860031128,0.8540302515029907,-0.2543369233608246,0.7986548542976379,-0.02669389918446541 +illusion_0.75L,target,29,5.8,1.3718518018722534,-0.17904995381832123,0.8312535881996155,-0.042534079402685165,0.8049066066741943,0.035379767417907715 +illusion_0.75L,target,30,6.0,1.3420518636703491,-0.029514813795685768,0.8253268599510193,0.1759534627199173,0.8257015347480774,0.08672218024730682 +illusion_0.75L,target,31,6.2,1.2812596559524536,0.12391229718923569,0.8355334401130676,0.3596350848674774,0.8553259968757629,0.12809449434280396 +illusion_0.75L,target,32,6.4,1.2132247686386108,0.23966437578201294,0.8579580783843994,0.4777250587940216,0.8885358572006226,0.16301292181015015 +illusion_0.75L,target,33,6.6,1.1513975858688354,0.3059050142765045,0.8866949677467346,0.5250164270401001,0.922650933265686,0.19349049031734467 +illusion_0.75L,target,34,6.8,1.0990169048309326,0.3329900801181793,0.9151952266693115,0.5287314057350159,0.9572524428367615,0.22026394307613373 +illusion_0.75L,target,35,7.0,1.054823637008667,0.3366924524307251,0.9385117292404175,0.5217766761779785,0.9923221468925476,0.24367155134677887 +illusion_0.75L,target,36,7.2,1.0155178308486938,0.3287232518196106,0.9551345109939575,0.5201244950294495,1.0281593799591064,0.2642953395843506 +illusion_0.75L,target,37,7.4,0.9779478311538696,0.3137996196746826,0.9652897715568542,0.526350736618042,1.0653685331344604,0.2826789617538452 +illusion_0.75L,target,38,7.6,0.9403383135795593,0.2917485535144806,0.9687728881835938,0.5384653210639954,1.1046245098114014,0.299029678106308 +illusion_0.75L,target,39,7.8,0.9022474884986877,0.26012083888053894,0.9642476439476013,0.5510063767433167,1.1472749710083008,0.31326982378959656 +illusion_0.75L,target,40,8.0,0.8672811388969421,0.21709421277046204,0.9516996145248413,0.5525364875793457,1.1979061365127563,0.32533302903175354 +illusion_0.75L,target,41,8.2,0.8322051167488098,0.16073453426361084,0.9225414991378784,0.5161370635032654,1.248487949371338,0.3299958407878876 +illusion_0.75L,target,42,8.4,0.808174729347229,0.09544505923986435,0.8872622847557068,0.4204762578010559,1.3060835599899292,0.32145145535469055 +illusion_0.75L,target,43,8.6,0.8001697063446045,0.02774549275636673,0.8554621338844299,0.2571019232273102,1.358642578125,0.2799921929836273 +illusion_0.75L,target,44,8.8,0.8047868609428406,-0.034555841237306595,0.831052303314209,0.04489772394299507,1.3722295761108398,0.1799096316099167 +illusion_0.75L,target,45,9.0,0.8259549140930176,-0.08608569949865341,0.8255662322044373,-0.17383825778961182,1.3432421684265137,0.03031930699944496 +illusion_0.75L,target,46,9.2,0.8558319211006165,-0.12760746479034424,0.8360224962234497,-0.3582542836666107,1.2829093933105469,-0.12342830002307892 +illusion_0.75L,target,47,9.4,0.8890001773834229,-0.1625748872756958,0.8583963513374329,-0.4771377444267273,1.2149925231933594,-0.23940841853618622 +illusion_0.75L,target,48,9.6,0.9229341149330139,-0.19316644966602325,0.886959433555603,-0.5252076983451843,1.1527608633041382,-0.3060274124145508 +illusion_0.75L,target,49,9.8,0.957125723361969,-0.21998338401317596,0.9151121377944946,-0.5291630029678345,1.0998636484146118,-0.33323705196380615 +illusion_0.75L,target,50,10.0,0.9917117357254028,-0.24341200292110443,0.9380304217338562,-0.5222005248069763,1.055099368095398,-0.3369929790496826 +illusion_0.75L,target,51,10.2,1.027123212814331,-0.26403674483299255,0.9543285369873047,-0.5204765200614929,1.0153167247772217,-0.32905685901641846 +illusion_0.75L,target,52,10.4,1.0640342235565186,-0.28238561749458313,0.964341402053833,-0.5266141295433044,0.9775221943855286,-0.3141922950744629 +illusion_0.75L,target,53,10.6,1.1033655405044556,-0.2987295687198639,0.9680163860321045,-0.5386707186698914,0.9399184584617615,-0.29217422008514404 +illusion_0.75L,target,54,10.8,1.1463773250579834,-0.31293925642967224,0.9640412330627441,-0.5511998534202576,0.9022048711776733,-0.26061174273490906 +illusion_0.75L,target,55,11.0,1.1944788694381714,-0.3241542875766754,0.9498692154884338,-0.551478385925293,0.8656132221221924,-0.21714434027671814 +illusion_0.75L,target,56,11.2,1.24861478805542,-0.329645037651062,0.9237415194511414,-0.5166975855827332,0.833092451095581,-0.16126719117164612 +illusion_0.75L,target,57,11.4,1.3065404891967773,-0.32117611169815063,0.8888378143310547,-0.4212421178817749,0.8092330694198608,-0.09588101506233215 +illusion_0.75L,target,58,11.6,1.3558295965194702,-0.2792101204395294,0.854878306388855,-0.2571195065975189,0.7990994453430176,-0.02793109603226185 +illusion_0.75L,target,59,11.8,1.3727822303771973,-0.1802135407924652,0.832348108291626,-0.04542090743780136,0.8054001331329346,0.03442652150988579 +illusion_0.75L,target,60,12.0,1.3435267210006714,-0.0309319905936718,0.8264027237892151,0.17352783679962158,0.8261111974716187,0.08605489134788513 +illusion_0.75L,target,61,12.2,1.2825802564620972,0.12294581532478333,0.8363524675369263,0.35832545161247253,0.8555456399917603,0.12768672406673431 +illusion_0.75L,target,62,12.4,1.2143388986587524,0.23862197995185852,0.8581878542900085,0.4768601357936859,0.8881994485855103,0.1625646948814392 +illusion_0.75L,target,63,12.6,1.1518259048461914,0.3053264319896698,0.8864054679870605,0.5249181389808655,0.9218542575836182,0.19312989711761475 +illusion_0.75L,target,64,12.8,1.0989736318588257,0.3326578140258789,0.9145042300224304,0.5288690328598022,0.9560401439666748,0.21991436183452606 +illusion_0.75L,target,65,13.0,1.0545395612716675,0.3365267217159271,0.9377667903900146,0.5218532681465149,0.9910085797309875,0.24335411190986633 +illusion_0.75L,target,66,13.2,1.0154047012329102,0.3286875784397125,0.9545696377754211,0.5200645923614502,1.026893973350525,0.2639400362968445 +illusion_0.75L,target,67,13.4,0.9781486392021179,0.3138938844203949,0.9651007056236267,0.5261363387107849,1.0643008947372437,0.2823006510734558 +illusion_0.75L,target,68,13.6,0.9408719539642334,0.29193025827407837,0.9691094160079956,0.5381580591201782,1.103937029838562,0.29867038130760193 +illusion_0.75L,target,69,13.8,0.9031813740730286,0.2604116201400757,0.9651886820793152,0.5507131814956665,1.146952748298645,0.31291571259498596 +illusion_0.75L,target,70,14.0,0.8663137555122375,0.21692895889282227,0.9507977962493896,0.5511146783828735,1.1948437690734863,0.32419461011886597 +illusion_0.75L,target,71,14.2,0.8334257006645203,0.16116748750209808,0.9243066310882568,0.5166758894920349,1.2484641075134277,0.32977691292762756 +illusion_0.75L,target,72,14.4,0.8091005682945251,0.0959252193570137,0.8889054656028748,0.42185211181640625,1.305840253829956,0.32154977321624756 +illusion_0.75L,target,73,14.6,0.7985145449638367,0.02805296704173088,0.8543518781661987,0.2582860291004181,1.3548632860183716,0.2800445258617401 +illusion_0.75L,target,74,14.8,0.8045015931129456,-0.034190770238637924,0.8313342332839966,0.04712150990962982,1.371904730796814,0.18169383704662323 +illusion_0.75L,target,75,15.0,0.8251540660858154,-0.08578231185674667,0.8251453638076782,-0.17176151275634766,1.3430252075195312,0.03264822065830231 +illusion_0.75L,target,76,15.2,0.8547636270523071,-0.12729758024215698,0.8351773023605347,-0.3564213216304779,1.2827688455581665,-0.12114740163087845 +illusion_0.75L,target,77,15.4,0.8879729509353638,-0.1622772216796875,0.857459545135498,-0.4759543538093567,1.2149021625518799,-0.23777280747890472 +illusion_0.75L,target,78,15.6,0.9221333861351013,-0.1928965449333191,0.8861876726150513,-0.5246690511703491,1.1527857780456543,-0.3051132261753082 +illusion_0.75L,target,79,15.8,0.9566702842712402,-0.219750314950943,0.9147087335586548,-0.528921365737915,1.1001430749893188,-0.33282747864723206 +illusion_0.75L,target,80,16.0,0.9916692972183228,-0.2432246059179306,0.9381036162376404,-0.5219614505767822,1.0557358264923096,-0.33684828877449036 +illusion_0.75L,target,81,16.2,1.0274275541305542,-0.2638973891735077,0.9548105001449585,-0.5201562643051147,1.016301155090332,-0.32903414964675903 +illusion_0.75L,target,82,16.4,1.0644699335098267,-0.2823038399219513,0.9650009870529175,-0.526232898235321,0.9786638021469116,-0.3142576217651367 +illusion_0.75L,target,83,16.6,1.103639006614685,-0.2987126410007477,0.9685621857643127,-0.5382816791534424,0.9409422278404236,-0.29234805703163147 +illusion_0.75L,target,84,16.8,1.1462098360061646,-0.31299152970314026,0.9642302989959717,-0.5509031414985657,0.9028561115264893,-0.2609380781650543 +illusion_0.75L,target,85,17.0,1.1937297582626343,-0.3242958188056946,0.9496213793754578,-0.5514917969703674,0.8657654523849487,-0.2176721692085266 +illusion_0.75L,target,86,17.2,1.2473427057266235,-0.3299404978752136,0.9231539964675903,-0.5174194574356079,0.8327837586402893,-0.16203241050243378 +illusion_0.75L,target,87,17.4,1.305019736289978,-0.32182106375694275,0.8881170749664307,-0.42319557070732117,0.8086379170417786,-0.09690601378679276 +illusion_0.75L,target,88,17.6,1.3546873331069946,-0.2805108428001404,0.8541009426116943,-0.2601870596408844,0.7983701825141907,-0.029003452509641647 +illusion_0.75L,target,89,17.8,1.3725167512893677,-0.1823340356349945,0.831575870513916,-0.049199823290109634,0.8046665787696838,0.033414326608181 +illusion_0.75L,target,90,18.0,1.344293236732483,-0.0333491712808609,0.825715959072113,0.16986042261123657,0.82554030418396,0.08518850058317184 +illusion_0.75L,target,91,18.2,1.2842473983764648,0.12076658010482788,0.8358432054519653,0.355297327041626,0.8552443981170654,0.12688176333904266 +illusion_0.75L,target,92,18.4,1.2162630558013916,0.2376188039779663,0.8579798936843872,0.4755736291408539,0.8883236050605774,0.16194526851177216 +illusion_0.75L,target,93,18.6,1.1537754535675049,0.30511149764060974,0.8863937854766846,0.5248191952705383,0.9221685528755188,0.19261395931243896 +illusion_0.75L,target,94,18.8,1.1006284952163696,0.3329138457775116,0.9145171642303467,0.5292636156082153,0.9562713503837585,0.21949531137943268 +illusion_0.75L,target,95,19.0,1.055738091468811,0.33698996901512146,0.9375443458557129,0.5222848653793335,0.990835964679718,0.2429748773574829 +illusion_0.75L,target,96,19.2,1.015952706336975,0.329219788312912,0.9540210962295532,0.5203947424888611,1.0262776613235474,0.2636394202709198 +illusion_0.75L,target,97,19.4,0.9782230854034424,0.3144891858100891,0.9642337560653687,0.5263767838478088,1.0632261037826538,0.2820241451263428 +illusion_0.75L,target,98,19.6,0.9406791925430298,0.29259616136550903,0.9681571125984192,0.5383661985397339,1.102666974067688,0.29842832684516907 +illusion_0.75L,target,99,19.8,0.9031040072441101,0.2612794041633606,0.9644533395767212,0.5509545207023621,1.1456282138824463,0.3126623332500458 +illusion_0.75L,target,100,20.0,0.8664714097976685,0.2180439829826355,0.9505214095115662,0.5516597628593445,1.1936280727386475,0.3239515721797943 +illusion_0.75L,target,101,20.2,0.8337767720222473,0.1623794138431549,0.9245653748512268,0.5178245306015015,1.2475924491882324,0.3296085000038147 +illusion_0.75L,target,102,20.4,0.809651255607605,0.0971677377820015,0.8897114396095276,0.42381393909454346,1.3054051399230957,0.32158535718917847 +illusion_0.75L,target,103,20.6,0.7991589307785034,0.029082797467708588,0.8554904460906982,0.26063501834869385,1.3550910949707031,0.28047987818717957 +illusion_0.75L,target,104,20.8,0.8050705194473267,-0.033361610025167465,0.8325905799865723,0.04973023757338524,1.3727891445159912,0.18282131850719452 +illusion_0.75L,target,105,21.0,0.8254712820053101,-0.08518672734498978,0.8262057304382324,-0.1694527417421341,1.344315528869629,0.03420528769493103 +illusion_0.75L,target,106,21.2,0.8547117710113525,-0.1268894523382187,0.8358070254325867,-0.3549268841743469,1.2838656902313232,-0.11979653686285019 +illusion_0.75L,target,107,21.4,0.8874387145042419,-0.16193422675132751,0.8575255870819092,-0.47519490122795105,1.2155065536499023,-0.2367320954799652 +illusion_0.75L,target,108,21.6,0.9211970567703247,-0.1926136463880539,0.8857876062393188,-0.5244892239570618,1.1528055667877197,-0.3044549226760864 +illusion_0.75L,target,109,21.8,0.9554104804992676,-0.21942010521888733,0.9139959216117859,-0.5289390683174133,1.0999714136123657,-0.3323720097541809 +illusion_0.75L,target,110,22.0,0.9904270172119141,-0.24290643632411957,0.9374616146087646,-0.5219318866729736,1.0555353164672852,-0.33659127354621887 +illusion_0.75L,target,111,22.2,1.0263313055038452,-0.26356300711631775,0.9544259905815125,-0.5199859738349915,1.0163239240646362,-0.3289210796356201 +illusion_0.75L,target,112,22.4,1.063685655593872,-0.28198471665382385,0.9650377035140991,-0.5259200930595398,0.9789848923683167,-0.3142462372779846 +illusion_0.75L,target,113,22.6,1.1031492948532104,-0.298379510641098,0.9691088795661926,-0.5378500819206238,0.9417095184326172,-0.29248395562171936 +illusion_0.75L,target,114,22.8,1.1460098028182983,-0.3126800060272217,0.9653162956237793,-0.5504981875419617,0.9039838910102844,-0.2612144351005554 +illusion_0.75L,target,115,23.0,1.1936793327331543,-0.32404452562332153,0.9510934352874756,-0.5513859391212463,0.8670146465301514,-0.218038409948349 +illusion_0.75L,target,116,23.2,1.2471462488174438,-0.3298180103302002,0.9247320294380188,-0.5179682374000549,0.8338882923126221,-0.16248857975006104 +illusion_0.75L,target,117,23.4,1.3076480627059937,-0.322907418012619,0.8917431831359863,-0.4260391891002655,0.81139075756073,-0.09782262146472931 +illusion_0.75L,target,118,23.6,1.3538686037063599,-0.28170663118362427,0.8548455834388733,-0.2630109488964081,0.7984334826469421,-0.02970299869775772 +illusion_0.75L,target,119,23.8,1.3720004558563232,-0.1845112442970276,0.8315002918243408,-0.052084069699048996,0.8041173815727234,0.03288610652089119 +illusion_0.75L,target,120,24.0,1.3442201614379883,-0.03629225119948387,0.8250393867492676,0.16687071323394775,0.8245722055435181,0.08467995375394821 +illusion_0.75L,target,121,24.2,1.2846134901046753,0.1177888810634613,0.8348201513290405,0.352530300617218,0.8540997505187988,0.12633593380451202 +illusion_0.75L,target,122,24.4,1.216494083404541,0.23597601056098938,0.8570137023925781,0.4742628335952759,0.8874355554580688,0.16157779097557068 +illusion_0.75L,target,123,24.6,1.1543024778366089,0.30417051911354065,0.8855779767036438,0.5242539644241333,0.9214673638343811,0.19221395254135132 +illusion_0.75L,target,124,24.8,1.1013368368148804,0.3326125741004944,0.9141475558280945,0.5291188955307007,0.955966591835022,0.21917712688446045 +illusion_0.75L,target,125,25.0,1.0567978620529175,0.33699870109558105,0.937603771686554,0.5221692323684692,0.990832507610321,0.24268122017383575 +illusion_0.75L,target,126,25.2,1.0170978307724,0.32934683561325073,0.9544395208358765,0.5201830863952637,1.0265926122665405,0.2634657323360443 +illusion_0.75L,target,127,25.4,0.9794104099273682,0.3147301971912384,0.9646809101104736,0.5260872840881348,1.0634551048278809,0.28188785910606384 +illusion_0.75L,target,128,25.6,0.9416812658309937,0.2930127680301666,0.9683852195739746,0.5380381345748901,1.1025233268737793,0.29833242297172546 +illusion_0.75L,target,129,25.8,0.903645932674408,0.26187124848365784,0.9643148183822632,0.5507469773292542,1.1450167894363403,0.31265541911125183 +illusion_0.75L,target,130,26.0,0.8665599226951599,0.2188888043165207,0.9500522017478943,0.551835834980011,1.1924786567687988,0.32404208183288574 +illusion_0.75L,target,131,26.2,0.8335051536560059,0.16347117722034454,0.9239427447319031,0.5188330411911011,1.2460904121398926,0.32986801862716675 +illusion_0.75L,target,132,26.4,0.8092082142829895,0.09852886199951172,0.8891617655754089,0.4262339472770691,1.3038257360458374,0.32222893834114075 +illusion_0.75L,target,133,26.6,0.798593282699585,0.030469009652733803,0.8549857139587402,0.264350950717926,1.3540246486663818,0.2818804085254669 +illusion_0.75L,target,134,26.8,0.8044942617416382,-0.032183170318603516,0.8321055769920349,0.053889576345682144,1.3727524280548096,0.18500524759292603 +illusion_0.75L,target,135,27.0,0.8250636458396912,-0.08423961699008942,0.825839638710022,-0.1656058132648468,1.345350980758667,0.0366290807723999 +illusion_0.75L,target,136,27.2,0.8545997738838196,-0.12612053751945496,0.8356252312660217,-0.35213568806648254,1.2856274843215942,-0.11788759380578995 +illusion_0.75L,target,137,27.4,0.8875118494033813,-0.16122722625732422,0.8574439287185669,-0.4737382233142853,1.2176728248596191,-0.23551742732524872 +illusion_0.75L,target,138,27.6,0.9212562441825867,-0.1919718235731125,0.8856881856918335,-0.5243340730667114,1.1549229621887207,-0.30401745438575745 +illusion_0.75L,target,139,27.8,0.955315351486206,-0.2189287543296814,0.9138368368148804,-0.5293570160865784,1.1015377044677734,-0.33252620697021484 +illusion_0.75L,target,140,28.0,0.9899551868438721,-0.24251221120357513,0.9370612502098083,-0.5223591327667236,1.056459665298462,-0.3369785249233246 +illusion_0.75L,target,141,28.2,1.025425672531128,-0.2632216811180115,0.9537280201911926,-0.5202964544296265,1.016675591468811,-0.3293918967247009 +illusion_0.75L,target,142,28.4,1.0624364614486694,-0.2816507816314697,0.9641633033752441,-0.5261155962944031,0.9790142774581909,-0.3147972822189331 +illusion_0.75L,target,143,28.6,1.1018885374069214,-0.29808321595191956,0.968329668045044,-0.5380025506019592,0.9416100978851318,-0.29309603571891785 +illusion_0.75L,target,144,28.8,1.1448910236358643,-0.3123984634876251,0.964842677116394,-0.5506964325904846,0.9039944410324097,-0.261934757232666 +illusion_0.75L,target,145,29.0,1.1926829814910889,-0.32375502586364746,0.9511339068412781,-0.5518395900726318,0.8673329949378967,-0.21900242567062378 +illusion_0.75L,target,146,29.2,1.2464274168014526,-0.3295876681804657,0.9253768920898438,-0.5190471410751343,0.8344729542732239,-0.16360914707183838 +illusion_0.75L,target,147,29.4,1.3041437864303589,-0.3220439851284027,0.8905816078186035,-0.4266044497489929,0.8100718855857849,-0.09858066588640213 +illusion_0.75L,target,148,29.6,1.3541754484176636,-0.282002329826355,0.8561389446258545,-0.26487094163894653,0.7991780042648315,-0.03048931062221527 +illusion_0.75L,target,149,29.8,1.3727552890777588,-0.18557514250278473,0.832775890827179,-0.054331474006175995,0.8046798706054688,0.03221309557557106 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..cb0677e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1.5L,ppo,72,28.8,36,0.9256554614228122,-1,0.9364487537079387,0.90051340499162,0.939693401257197,0.8998127115579942,0.9250750227106942,0.9523894743114296 +illusion_1.5L,ppo,108,43.2,36,0.9487965543607801,9,0.9602650271521674,0.9624688297820588,0.9596135003699197,0.9071710119023919,0.9666153175963296,0.9366456393618137 +illusion_1.5L,ppo,144,57.6,36,0.9427510691673011,-5,0.9538481442464722,0.9544803068145282,0.9653491377830505,0.8972557116196387,0.9529798229535421,0.9325932915865754 +illusion_1.5L,ppo,180,72.0,36,0.9339124495756416,4,0.9576386221581035,0.9363708029074284,0.8693029913637373,0.9449900013601614,0.9539838805794716,0.9411883990849472 +illusion_1.5L,ppo,200,80.0,36,0.9380685413642048,0,0.9371719285845757,0.9449549231083236,0.8812878943151898,0.9379040602491133,0.9633036479353905,0.963788793992636 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_long.csv new file mode 100644 index 0000000..cd6b3bb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,ppo,0,0.0,velocity,upper_ux,1.0797946453094482 +illusion_1.5L,ppo,0,0.0,velocity,upper_uy,-0.31225207448005676 +illusion_1.5L,ppo,0,0.0,velocity,center_ux,0.9480440616607666 +illusion_1.5L,ppo,0,0.0,velocity,center_uy,-0.5414741039276123 +illusion_1.5L,ppo,0,0.0,velocity,lower_ux,0.8668460249900818 +illusion_1.5L,ppo,0,0.0,velocity,lower_uy,-0.3076387345790863 +illusion_1.5L,ppo,1,0.4,velocity,upper_ux,1.1510400772094727 +illusion_1.5L,ppo,1,0.4,velocity,upper_uy,-0.33177676796913147 +illusion_1.5L,ppo,1,0.4,velocity,center_ux,0.9554529786109924 +illusion_1.5L,ppo,1,0.4,velocity,center_uy,-0.5561419725418091 +illusion_1.5L,ppo,1,0.4,velocity,lower_ux,0.8037241101264954 +illusion_1.5L,ppo,1,0.4,velocity,lower_uy,-0.23700270056724548 +illusion_1.5L,ppo,2,0.8,velocity,upper_ux,1.2334208488464355 +illusion_1.5L,ppo,2,0.8,velocity,upper_uy,-0.34032168984413147 +illusion_1.5L,ppo,2,0.8,velocity,center_ux,0.9285329580307007 +illusion_1.5L,ppo,2,0.8,velocity,center_uy,-0.4978640675544739 +illusion_1.5L,ppo,2,0.8,velocity,lower_ux,0.7521615028381348 +illusion_1.5L,ppo,2,0.8,velocity,lower_uy,-0.13544966280460358 +illusion_1.5L,ppo,3,1.2,velocity,upper_ux,1.324468731880188 +illusion_1.5L,ppo,3,1.2,velocity,upper_uy,-0.32385730743408203 +illusion_1.5L,ppo,3,1.2,velocity,center_ux,0.8607962131500244 +illusion_1.5L,ppo,3,1.2,velocity,center_uy,-0.286532998085022 +illusion_1.5L,ppo,3,1.2,velocity,lower_ux,0.7391417026519775 +illusion_1.5L,ppo,3,1.2,velocity,lower_uy,-0.020649656653404236 +illusion_1.5L,ppo,4,1.6,velocity,upper_ux,1.3890398740768433 +illusion_1.5L,ppo,4,1.6,velocity,upper_uy,-0.2350451499223709 +illusion_1.5L,ppo,4,1.6,velocity,center_ux,0.7868193984031677 +illusion_1.5L,ppo,4,1.6,velocity,center_uy,0.06302312016487122 +illusion_1.5L,ppo,4,1.6,velocity,lower_ux,0.7761238217353821 +illusion_1.5L,ppo,4,1.6,velocity,lower_uy,0.07287310063838959 +illusion_1.5L,ppo,5,2.0,velocity,upper_ux,1.3340842723846436 +illusion_1.5L,ppo,5,2.0,velocity,upper_uy,-0.012792488560080528 +illusion_1.5L,ppo,5,2.0,velocity,center_ux,0.7633181214332581 +illusion_1.5L,ppo,5,2.0,velocity,center_uy,0.39287009835243225 +illusion_1.5L,ppo,5,2.0,velocity,lower_ux,0.8349000811576843 +illusion_1.5L,ppo,5,2.0,velocity,lower_uy,0.1444786936044693 +illusion_1.5L,ppo,6,2.4,velocity,upper_ux,1.1593436002731323 +illusion_1.5L,ppo,6,2.4,velocity,upper_uy,0.24135147035121918 +illusion_1.5L,ppo,6,2.4,velocity,center_ux,0.811646580696106 +illusion_1.5L,ppo,6,2.4,velocity,center_uy,0.5179269909858704 +illusion_1.5L,ppo,6,2.4,velocity,lower_ux,0.8951728940010071 +illusion_1.5L,ppo,6,2.4,velocity,lower_uy,0.20563985407352448 +illusion_1.5L,ppo,7,2.8,velocity,upper_ux,1.0042698383331299 +illusion_1.5L,ppo,7,2.8,velocity,upper_uy,0.34987327456474304 +illusion_1.5L,ppo,7,2.8,velocity,center_ux,0.8780405521392822 +illusion_1.5L,ppo,7,2.8,velocity,center_uy,0.512909471988678 +illusion_1.5L,ppo,7,2.8,velocity,lower_ux,0.956848680973053 +illusion_1.5L,ppo,7,2.8,velocity,lower_uy,0.2534884214401245 +illusion_1.5L,ppo,8,3.2,velocity,upper_ux,0.9151619672775269 +illusion_1.5L,ppo,8,3.2,velocity,upper_uy,0.3389835059642792 +illusion_1.5L,ppo,8,3.2,velocity,center_ux,0.9222124218940735 +illusion_1.5L,ppo,8,3.2,velocity,center_uy,0.5200382471084595 +illusion_1.5L,ppo,8,3.2,velocity,lower_ux,1.0205261707305908 +illusion_1.5L,ppo,8,3.2,velocity,lower_uy,0.2895224690437317 +illusion_1.5L,ppo,9,3.6,velocity,upper_ux,0.8492088913917542 +illusion_1.5L,ppo,9,3.6,velocity,upper_uy,0.29008379578590393 +illusion_1.5L,ppo,9,3.6,velocity,center_ux,0.9472337961196899 +illusion_1.5L,ppo,9,3.6,velocity,center_uy,0.5447330474853516 +illusion_1.5L,ppo,9,3.6,velocity,lower_ux,1.0874418020248413 +illusion_1.5L,ppo,9,3.6,velocity,lower_uy,0.31630125641822815 +illusion_1.5L,ppo,10,4.0,velocity,upper_ux,0.784064531326294 +illusion_1.5L,ppo,10,4.0,velocity,upper_uy,0.2157895416021347 +illusion_1.5L,ppo,10,4.0,velocity,center_ux,0.9502606391906738 +illusion_1.5L,ppo,10,4.0,velocity,center_uy,0.5570058226585388 +illusion_1.5L,ppo,10,4.0,velocity,lower_ux,1.16129732131958 +illusion_1.5L,ppo,10,4.0,velocity,lower_uy,0.33434295654296875 +illusion_1.5L,ppo,11,4.4,velocity,upper_ux,0.7317995429039001 +illusion_1.5L,ppo,11,4.4,velocity,upper_uy,0.1110304743051529 +illusion_1.5L,ppo,11,4.4,velocity,center_ux,0.9160879254341125 +illusion_1.5L,ppo,11,4.4,velocity,center_uy,0.4858897030353546 +illusion_1.5L,ppo,11,4.4,velocity,lower_ux,1.2462811470031738 +illusion_1.5L,ppo,11,4.4,velocity,lower_uy,0.3401760458946228 +illusion_1.5L,ppo,12,4.8,velocity,upper_ux,0.719382643699646 +illusion_1.5L,ppo,12,4.8,velocity,upper_uy,-0.0034097107127308846 +illusion_1.5L,ppo,12,4.8,velocity,center_ux,0.8446371555328369 +illusion_1.5L,ppo,12,4.8,velocity,center_uy,0.2600788176059723 +illusion_1.5L,ppo,12,4.8,velocity,lower_ux,1.3402262926101685 +illusion_1.5L,ppo,12,4.8,velocity,lower_uy,0.31712138652801514 +illusion_1.5L,ppo,13,5.2,velocity,upper_ux,0.752234697341919 +illusion_1.5L,ppo,13,5.2,velocity,upper_uy,-0.09864361584186554 +illusion_1.5L,ppo,13,5.2,velocity,center_ux,0.7754445672035217 +illusion_1.5L,ppo,13,5.2,velocity,center_uy,-0.08852551132440567 +illusion_1.5L,ppo,13,5.2,velocity,lower_ux,1.399526834487915 +illusion_1.5L,ppo,13,5.2,velocity,lower_uy,0.21155650913715363 +illusion_1.5L,ppo,14,5.6,velocity,upper_ux,0.8019812703132629 +illusion_1.5L,ppo,14,5.6,velocity,upper_uy,-0.17682942748069763 +illusion_1.5L,ppo,14,5.6,velocity,center_ux,0.7583619952201843 +illusion_1.5L,ppo,14,5.6,velocity,center_uy,-0.3972598612308502 +illusion_1.5L,ppo,14,5.6,velocity,lower_ux,1.3285751342773438 +illusion_1.5L,ppo,14,5.6,velocity,lower_uy,-0.025762679055333138 +illusion_1.5L,ppo,15,6.0,velocity,upper_ux,0.8508453369140625 +illusion_1.5L,ppo,15,6.0,velocity,upper_uy,-0.24618133902549744 +illusion_1.5L,ppo,15,6.0,velocity,center_ux,0.8008736968040466 +illusion_1.5L,ppo,15,6.0,velocity,center_uy,-0.49914485216140747 +illusion_1.5L,ppo,15,6.0,velocity,lower_ux,1.1597144603729248 +illusion_1.5L,ppo,15,6.0,velocity,lower_uy,-0.25247544050216675 +illusion_1.5L,ppo,16,6.4,velocity,upper_ux,0.8990176320075989 +illusion_1.5L,ppo,16,6.4,velocity,upper_uy,-0.3062371611595154 +illusion_1.5L,ppo,16,6.4,velocity,center_ux,0.8514645099639893 +illusion_1.5L,ppo,16,6.4,velocity,center_uy,-0.4687660336494446 +illusion_1.5L,ppo,16,6.4,velocity,lower_ux,1.0318070650100708 +illusion_1.5L,ppo,16,6.4,velocity,lower_uy,-0.3209947645664215 +illusion_1.5L,ppo,17,6.8,velocity,upper_ux,0.9452244639396667 +illusion_1.5L,ppo,17,6.8,velocity,upper_uy,-0.36142051219940186 +illusion_1.5L,ppo,17,6.8,velocity,center_ux,0.8716397285461426 +illusion_1.5L,ppo,17,6.8,velocity,center_uy,-0.4412388205528259 +illusion_1.5L,ppo,17,6.8,velocity,lower_ux,0.9643616676330566 +illusion_1.5L,ppo,17,6.8,velocity,lower_uy,-0.2925702929496765 +illusion_1.5L,ppo,18,7.2,velocity,upper_ux,0.9928663372993469 +illusion_1.5L,ppo,18,7.2,velocity,upper_uy,-0.41853824257850647 +illusion_1.5L,ppo,18,7.2,velocity,center_ux,0.8623248934745789 +illusion_1.5L,ppo,18,7.2,velocity,center_uy,-0.4308321475982666 +illusion_1.5L,ppo,18,7.2,velocity,lower_ux,0.9189968705177307 +illusion_1.5L,ppo,18,7.2,velocity,lower_uy,-0.23959441483020782 +illusion_1.5L,ppo,19,7.6,velocity,upper_ux,1.0457236766815186 +illusion_1.5L,ppo,19,7.6,velocity,upper_uy,-0.4762742221355438 +illusion_1.5L,ppo,19,7.6,velocity,center_ux,0.8216429948806763 +illusion_1.5L,ppo,19,7.6,velocity,center_uy,-0.43203309178352356 +illusion_1.5L,ppo,19,7.6,velocity,lower_ux,0.8770815134048462 +illusion_1.5L,ppo,19,7.6,velocity,lower_uy,-0.1771678328514099 +illusion_1.5L,ppo,20,8.0,velocity,upper_ux,1.1026153564453125 +illusion_1.5L,ppo,20,8.0,velocity,upper_uy,-0.5217483043670654 +illusion_1.5L,ppo,20,8.0,velocity,center_ux,0.7473500967025757 +illusion_1.5L,ppo,20,8.0,velocity,center_uy,-0.42804285883903503 +illusion_1.5L,ppo,20,8.0,velocity,lower_ux,0.8438072800636292 +illusion_1.5L,ppo,20,8.0,velocity,lower_uy,-0.10734917968511581 +illusion_1.5L,ppo,21,8.4,velocity,upper_ux,1.1491317749023438 +illusion_1.5L,ppo,21,8.4,velocity,upper_uy,-0.5578380227088928 +illusion_1.5L,ppo,21,8.4,velocity,center_ux,0.6560988426208496 +illusion_1.5L,ppo,21,8.4,velocity,center_uy,-0.37116578221321106 +illusion_1.5L,ppo,21,8.4,velocity,lower_ux,0.8277516961097717 +illusion_1.5L,ppo,21,8.4,velocity,lower_uy,-0.04020534083247185 +illusion_1.5L,ppo,22,8.8,velocity,upper_ux,1.1769332885742188 +illusion_1.5L,ppo,22,8.8,velocity,upper_uy,-0.595348596572876 +illusion_1.5L,ppo,22,8.8,velocity,center_ux,0.5674730539321899 +illusion_1.5L,ppo,22,8.8,velocity,center_uy,-0.23434831202030182 +illusion_1.5L,ppo,22,8.8,velocity,lower_ux,0.8273603320121765 +illusion_1.5L,ppo,22,8.8,velocity,lower_uy,0.02558545581996441 +illusion_1.5L,ppo,23,9.2,velocity,upper_ux,1.1580257415771484 +illusion_1.5L,ppo,23,9.2,velocity,upper_uy,-0.5438330173492432 +illusion_1.5L,ppo,23,9.2,velocity,center_ux,0.48864051699638367 +illusion_1.5L,ppo,23,9.2,velocity,center_uy,-0.03176289424300194 +illusion_1.5L,ppo,23,9.2,velocity,lower_ux,0.8342949748039246 +illusion_1.5L,ppo,23,9.2,velocity,lower_uy,0.0952577218413353 +illusion_1.5L,ppo,24,9.6,velocity,upper_ux,1.0599006414413452 +illusion_1.5L,ppo,24,9.6,velocity,upper_uy,-0.26733410358428955 +illusion_1.5L,ppo,24,9.6,velocity,center_ux,0.44318103790283203 +illusion_1.5L,ppo,24,9.6,velocity,center_uy,0.2024828940629959 +illusion_1.5L,ppo,24,9.6,velocity,lower_ux,0.8464951515197754 +illusion_1.5L,ppo,24,9.6,velocity,lower_uy,0.17490780353546143 +illusion_1.5L,ppo,25,10.0,velocity,upper_ux,0.918732762336731 +illusion_1.5L,ppo,25,10.0,velocity,upper_uy,0.18241176009178162 +illusion_1.5L,ppo,25,10.0,velocity,center_ux,0.4561518132686615 +illusion_1.5L,ppo,25,10.0,velocity,center_uy,0.4087720513343811 +illusion_1.5L,ppo,25,10.0,velocity,lower_ux,0.8727782368659973 +illusion_1.5L,ppo,25,10.0,velocity,lower_uy,0.2552487254142761 +illusion_1.5L,ppo,26,10.4,velocity,upper_ux,0.7908204793930054 +illusion_1.5L,ppo,26,10.4,velocity,upper_uy,0.5806609392166138 +illusion_1.5L,ppo,26,10.4,velocity,center_ux,0.5113985538482666 +illusion_1.5L,ppo,26,10.4,velocity,center_uy,0.5507956147193909 +illusion_1.5L,ppo,26,10.4,velocity,lower_ux,0.9126153588294983 +illusion_1.5L,ppo,26,10.4,velocity,lower_uy,0.33676353096961975 +illusion_1.5L,ppo,27,10.8,velocity,upper_ux,0.7170965671539307 +illusion_1.5L,ppo,27,10.8,velocity,upper_uy,0.7666528224945068 +illusion_1.5L,ppo,27,10.8,velocity,center_ux,0.5764610171318054 +illusion_1.5L,ppo,27,10.8,velocity,center_uy,0.6483334898948669 +illusion_1.5L,ppo,27,10.8,velocity,lower_ux,0.972247838973999 +illusion_1.5L,ppo,27,10.8,velocity,lower_uy,0.41407880187034607 +illusion_1.5L,ppo,28,11.2,velocity,upper_ux,0.6746746301651001 +illusion_1.5L,ppo,28,11.2,velocity,upper_uy,0.7635299563407898 +illusion_1.5L,ppo,28,11.2,velocity,center_ux,0.6136064529418945 +illusion_1.5L,ppo,28,11.2,velocity,center_uy,0.7405665516853333 +illusion_1.5L,ppo,28,11.2,velocity,lower_ux,1.0445035696029663 +illusion_1.5L,ppo,28,11.2,velocity,lower_uy,0.488290399312973 +illusion_1.5L,ppo,29,11.6,velocity,upper_ux,0.6433817148208618 +illusion_1.5L,ppo,29,11.6,velocity,upper_uy,0.6946038007736206 +illusion_1.5L,ppo,29,11.6,velocity,center_ux,0.6288880705833435 +illusion_1.5L,ppo,29,11.6,velocity,center_uy,0.8385981917381287 +illusion_1.5L,ppo,29,11.6,velocity,lower_ux,1.1440078020095825 +illusion_1.5L,ppo,29,11.6,velocity,lower_uy,0.5465685725212097 +illusion_1.5L,ppo,30,12.0,velocity,upper_ux,0.5880814790725708 +illusion_1.5L,ppo,30,12.0,velocity,upper_uy,0.6159050464630127 +illusion_1.5L,ppo,30,12.0,velocity,center_ux,0.6320485472679138 +illusion_1.5L,ppo,30,12.0,velocity,center_uy,0.8694407939910889 +illusion_1.5L,ppo,30,12.0,velocity,lower_ux,1.2468894720077515 +illusion_1.5L,ppo,30,12.0,velocity,lower_uy,0.5728294253349304 +illusion_1.5L,ppo,31,12.4,velocity,upper_ux,0.5289964079856873 +illusion_1.5L,ppo,31,12.4,velocity,upper_uy,0.526654064655304 +illusion_1.5L,ppo,31,12.4,velocity,center_ux,0.6475885510444641 +illusion_1.5L,ppo,31,12.4,velocity,center_uy,0.7653593420982361 +illusion_1.5L,ppo,31,12.4,velocity,lower_ux,1.3634986877441406 +illusion_1.5L,ppo,31,12.4,velocity,lower_uy,0.5668094754219055 +illusion_1.5L,ppo,32,12.8,velocity,upper_ux,0.4582771062850952 +illusion_1.5L,ppo,32,12.8,velocity,upper_uy,0.39613616466522217 +illusion_1.5L,ppo,32,12.8,velocity,center_ux,0.6189578175544739 +illusion_1.5L,ppo,32,12.8,velocity,center_uy,0.5476155877113342 +illusion_1.5L,ppo,32,12.8,velocity,lower_ux,1.4425424337387085 +illusion_1.5L,ppo,32,12.8,velocity,lower_uy,0.45107758045196533 +illusion_1.5L,ppo,33,13.2,velocity,upper_ux,0.4329029321670532 +illusion_1.5L,ppo,33,13.2,velocity,upper_uy,0.21545252203941345 +illusion_1.5L,ppo,33,13.2,velocity,center_ux,0.6276023983955383 +illusion_1.5L,ppo,33,13.2,velocity,center_uy,0.19664742052555084 +illusion_1.5L,ppo,33,13.2,velocity,lower_ux,1.4710077047348022 +illusion_1.5L,ppo,33,13.2,velocity,lower_uy,0.17775440216064453 +illusion_1.5L,ppo,34,13.6,velocity,upper_ux,0.4440456032752991 +illusion_1.5L,ppo,34,13.6,velocity,upper_uy,0.004605367314070463 +illusion_1.5L,ppo,34,13.6,velocity,center_ux,0.6597777605056763 +illusion_1.5L,ppo,34,13.6,velocity,center_uy,-0.19086457788944244 +illusion_1.5L,ppo,34,13.6,velocity,lower_ux,1.436500072479248 +illusion_1.5L,ppo,34,13.6,velocity,lower_uy,-0.1350429207086563 +illusion_1.5L,ppo,35,14.0,velocity,upper_ux,0.5128005146980286 +illusion_1.5L,ppo,35,14.0,velocity,upper_uy,-0.1941033899784088 +illusion_1.5L,ppo,35,14.0,velocity,center_ux,0.7198534607887268 +illusion_1.5L,ppo,35,14.0,velocity,center_uy,-0.5323801636695862 +illusion_1.5L,ppo,35,14.0,velocity,lower_ux,1.3575395345687866 +illusion_1.5L,ppo,35,14.0,velocity,lower_uy,-0.40686270594596863 +illusion_1.5L,ppo,36,14.4,velocity,upper_ux,0.6040663719177246 +illusion_1.5L,ppo,36,14.4,velocity,upper_uy,-0.34442615509033203 +illusion_1.5L,ppo,36,14.4,velocity,center_ux,0.7692062258720398 +illusion_1.5L,ppo,36,14.4,velocity,center_uy,-0.7675595879554749 +illusion_1.5L,ppo,36,14.4,velocity,lower_ux,1.2382683753967285 +illusion_1.5L,ppo,36,14.4,velocity,lower_uy,-0.5606545805931091 +illusion_1.5L,ppo,37,14.8,velocity,upper_ux,0.7280130982398987 +illusion_1.5L,ppo,37,14.8,velocity,upper_uy,-0.4243055582046509 +illusion_1.5L,ppo,37,14.8,velocity,center_ux,0.8213353157043457 +illusion_1.5L,ppo,37,14.8,velocity,center_uy,-0.8502906560897827 +illusion_1.5L,ppo,37,14.8,velocity,lower_ux,1.1389765739440918 +illusion_1.5L,ppo,37,14.8,velocity,lower_uy,-0.6113777756690979 +illusion_1.5L,ppo,38,15.2,velocity,upper_ux,0.842715859413147 +illusion_1.5L,ppo,38,15.2,velocity,upper_uy,-0.47530487179756165 +illusion_1.5L,ppo,38,15.2,velocity,center_ux,0.8452115058898926 +illusion_1.5L,ppo,38,15.2,velocity,center_uy,-0.8371127247810364 +illusion_1.5L,ppo,38,15.2,velocity,lower_ux,1.0523452758789062 +illusion_1.5L,ppo,38,15.2,velocity,lower_uy,-0.6127769947052002 +illusion_1.5L,ppo,39,15.6,velocity,upper_ux,0.9658211469650269 +illusion_1.5L,ppo,39,15.6,velocity,upper_uy,-0.5142889022827148 +illusion_1.5L,ppo,39,15.6,velocity,center_ux,0.8574427962303162 +illusion_1.5L,ppo,39,15.6,velocity,center_uy,-0.8389923572540283 +illusion_1.5L,ppo,39,15.6,velocity,lower_ux,0.9876540899276733 +illusion_1.5L,ppo,39,15.6,velocity,lower_uy,-0.6015393137931824 +illusion_1.5L,ppo,40,16.0,velocity,upper_ux,1.0870039463043213 +illusion_1.5L,ppo,40,16.0,velocity,upper_uy,-0.5348709225654602 +illusion_1.5L,ppo,40,16.0,velocity,center_ux,0.8405216932296753 +illusion_1.5L,ppo,40,16.0,velocity,center_uy,-0.8931483626365662 +illusion_1.5L,ppo,40,16.0,velocity,lower_ux,0.9141570329666138 +illusion_1.5L,ppo,40,16.0,velocity,lower_uy,-0.5805867314338684 +illusion_1.5L,ppo,41,16.4,velocity,upper_ux,1.2185989618301392 +illusion_1.5L,ppo,41,16.4,velocity,upper_uy,-0.5197656750679016 +illusion_1.5L,ppo,41,16.4,velocity,center_ux,0.8314383625984192 +illusion_1.5L,ppo,41,16.4,velocity,center_uy,-0.9300235509872437 +illusion_1.5L,ppo,41,16.4,velocity,lower_ux,0.841367244720459 +illusion_1.5L,ppo,41,16.4,velocity,lower_uy,-0.5390405058860779 +illusion_1.5L,ppo,42,16.8,velocity,upper_ux,1.3335458040237427 +illusion_1.5L,ppo,42,16.8,velocity,upper_uy,-0.467217355966568 +illusion_1.5L,ppo,42,16.8,velocity,center_ux,0.851870059967041 +illusion_1.5L,ppo,42,16.8,velocity,center_uy,-0.7389212846755981 +illusion_1.5L,ppo,42,16.8,velocity,lower_ux,0.7570807933807373 +illusion_1.5L,ppo,42,16.8,velocity,lower_uy,-0.444335401058197 +illusion_1.5L,ppo,43,17.2,velocity,upper_ux,1.406998872756958 +illusion_1.5L,ppo,43,17.2,velocity,upper_uy,-0.34927403926849365 +illusion_1.5L,ppo,43,17.2,velocity,center_ux,0.898674726486206 +illusion_1.5L,ppo,43,17.2,velocity,center_uy,-0.27027520537376404 +illusion_1.5L,ppo,43,17.2,velocity,lower_ux,0.6843634843826294 +illusion_1.5L,ppo,43,17.2,velocity,lower_uy,-0.2586047351360321 +illusion_1.5L,ppo,44,17.6,velocity,upper_ux,1.3687270879745483 +illusion_1.5L,ppo,44,17.6,velocity,upper_uy,-0.126512348651886 +illusion_1.5L,ppo,44,17.6,velocity,center_ux,0.9354161024093628 +illusion_1.5L,ppo,44,17.6,velocity,center_uy,0.1865711361169815 +illusion_1.5L,ppo,44,17.6,velocity,lower_ux,0.6369776725769043 +illusion_1.5L,ppo,44,17.6,velocity,lower_uy,0.016863126307725906 +illusion_1.5L,ppo,45,18.0,velocity,upper_ux,1.2373707294464111 +illusion_1.5L,ppo,45,18.0,velocity,upper_uy,0.1214236468076706 +illusion_1.5L,ppo,45,18.0,velocity,center_ux,0.9659415483474731 +illusion_1.5L,ppo,45,18.0,velocity,center_uy,0.47761234641075134 +illusion_1.5L,ppo,45,18.0,velocity,lower_ux,0.6508731842041016 +illusion_1.5L,ppo,45,18.0,velocity,lower_uy,0.2755190134048462 +illusion_1.5L,ppo,46,18.4,velocity,upper_ux,1.1099536418914795 +illusion_1.5L,ppo,46,18.4,velocity,upper_uy,0.2634549140930176 +illusion_1.5L,ppo,46,18.4,velocity,center_ux,0.9868184924125671 +illusion_1.5L,ppo,46,18.4,velocity,center_uy,0.6089067459106445 +illusion_1.5L,ppo,46,18.4,velocity,lower_ux,0.7355586886405945 +illusion_1.5L,ppo,46,18.4,velocity,lower_uy,0.37912678718566895 +illusion_1.5L,ppo,47,18.8,velocity,upper_ux,1.0263806581497192 +illusion_1.5L,ppo,47,18.8,velocity,upper_uy,0.3103732764720917 +illusion_1.5L,ppo,47,18.8,velocity,center_ux,0.9883411526679993 +illusion_1.5L,ppo,47,18.8,velocity,center_uy,0.5848910808563232 +illusion_1.5L,ppo,47,18.8,velocity,lower_ux,0.829104483127594 +illusion_1.5L,ppo,47,18.8,velocity,lower_uy,0.4036373794078827 +illusion_1.5L,ppo,48,19.2,velocity,upper_ux,0.9746611714363098 +illusion_1.5L,ppo,48,19.2,velocity,upper_uy,0.33053058385849 +illusion_1.5L,ppo,48,19.2,velocity,center_ux,0.9895422458648682 +illusion_1.5L,ppo,48,19.2,velocity,center_uy,0.5522276163101196 +illusion_1.5L,ppo,48,19.2,velocity,lower_ux,0.9090093970298767 +illusion_1.5L,ppo,48,19.2,velocity,lower_uy,0.41899627447128296 +illusion_1.5L,ppo,49,19.6,velocity,upper_ux,0.9308136105537415 +illusion_1.5L,ppo,49,19.6,velocity,upper_uy,0.3437320291996002 +illusion_1.5L,ppo,49,19.6,velocity,center_ux,0.985209584236145 +illusion_1.5L,ppo,49,19.6,velocity,center_uy,0.54793381690979 +illusion_1.5L,ppo,49,19.6,velocity,lower_ux,0.9702598452568054 +illusion_1.5L,ppo,49,19.6,velocity,lower_uy,0.43488529324531555 +illusion_1.5L,ppo,50,20.0,velocity,upper_ux,0.8976612687110901 +illusion_1.5L,ppo,50,20.0,velocity,upper_uy,0.3467393219470978 +illusion_1.5L,ppo,50,20.0,velocity,center_ux,0.9872027039527893 +illusion_1.5L,ppo,50,20.0,velocity,center_uy,0.5662744045257568 +illusion_1.5L,ppo,50,20.0,velocity,lower_ux,1.0260776281356812 +illusion_1.5L,ppo,50,20.0,velocity,lower_uy,0.4528058171272278 +illusion_1.5L,ppo,51,20.4,velocity,upper_ux,0.8518968820571899 +illusion_1.5L,ppo,51,20.4,velocity,upper_uy,0.3368493318557739 +illusion_1.5L,ppo,51,20.4,velocity,center_ux,0.9908801317214966 +illusion_1.5L,ppo,51,20.4,velocity,center_uy,0.5931470990180969 +illusion_1.5L,ppo,51,20.4,velocity,lower_ux,1.0716745853424072 +illusion_1.5L,ppo,51,20.4,velocity,lower_uy,0.47613513469696045 +illusion_1.5L,ppo,52,20.8,velocity,upper_ux,0.7914437651634216 +illusion_1.5L,ppo,52,20.8,velocity,upper_uy,0.311969518661499 +illusion_1.5L,ppo,52,20.8,velocity,center_ux,0.9981200695037842 +illusion_1.5L,ppo,52,20.8,velocity,center_uy,0.6186891794204712 +illusion_1.5L,ppo,52,20.8,velocity,lower_ux,1.119025468826294 +illusion_1.5L,ppo,52,20.8,velocity,lower_uy,0.5112367272377014 +illusion_1.5L,ppo,53,21.2,velocity,upper_ux,0.7127237915992737 +illusion_1.5L,ppo,53,21.2,velocity,upper_uy,0.2497538924217224 +illusion_1.5L,ppo,53,21.2,velocity,center_ux,0.9831551909446716 +illusion_1.5L,ppo,53,21.2,velocity,center_uy,0.6304342746734619 +illusion_1.5L,ppo,53,21.2,velocity,lower_ux,1.167465090751648 +illusion_1.5L,ppo,53,21.2,velocity,lower_uy,0.5664147734642029 +illusion_1.5L,ppo,54,21.6,velocity,upper_ux,0.6411221027374268 +illusion_1.5L,ppo,54,21.6,velocity,upper_uy,0.14447170495986938 +illusion_1.5L,ppo,54,21.6,velocity,center_ux,0.9337770342826843 +illusion_1.5L,ppo,54,21.6,velocity,center_uy,0.5959800481796265 +illusion_1.5L,ppo,54,21.6,velocity,lower_ux,1.238492488861084 +illusion_1.5L,ppo,54,21.6,velocity,lower_uy,0.645622968673706 +illusion_1.5L,ppo,55,22.0,velocity,upper_ux,0.594836950302124 +illusion_1.5L,ppo,55,22.0,velocity,upper_uy,0.00062368850922212 +illusion_1.5L,ppo,55,22.0,velocity,center_ux,0.8365634083747864 +illusion_1.5L,ppo,55,22.0,velocity,center_uy,0.432683527469635 +illusion_1.5L,ppo,55,22.0,velocity,lower_ux,1.3217004537582397 +illusion_1.5L,ppo,55,22.0,velocity,lower_uy,0.6477733850479126 +illusion_1.5L,ppo,56,22.4,velocity,upper_ux,0.6062618494033813 +illusion_1.5L,ppo,56,22.4,velocity,upper_uy,-0.13000112771987915 +illusion_1.5L,ppo,56,22.4,velocity,center_ux,0.7255709767341614 +illusion_1.5L,ppo,56,22.4,velocity,center_uy,0.08975788205862045 +illusion_1.5L,ppo,56,22.4,velocity,lower_ux,1.3357031345367432 +illusion_1.5L,ppo,56,22.4,velocity,lower_uy,0.3633787930011749 +illusion_1.5L,ppo,57,22.8,velocity,upper_ux,0.6652284860610962 +illusion_1.5L,ppo,57,22.8,velocity,upper_uy,-0.2166009396314621 +illusion_1.5L,ppo,57,22.8,velocity,center_ux,0.6430043578147888 +illusion_1.5L,ppo,57,22.8,velocity,center_uy,-0.3507728576660156 +illusion_1.5L,ppo,57,22.8,velocity,lower_ux,1.2289519309997559 +illusion_1.5L,ppo,57,22.8,velocity,lower_uy,-0.0656595453619957 +illusion_1.5L,ppo,58,23.2,velocity,upper_ux,0.7409716248512268 +illusion_1.5L,ppo,58,23.2,velocity,upper_uy,-0.2751280963420868 +illusion_1.5L,ppo,58,23.2,velocity,center_ux,0.6562168002128601 +illusion_1.5L,ppo,58,23.2,velocity,center_uy,-0.6395658254623413 +illusion_1.5L,ppo,58,23.2,velocity,lower_ux,1.1012734174728394 +illusion_1.5L,ppo,58,23.2,velocity,lower_uy,-0.43371838331222534 +illusion_1.5L,ppo,59,23.6,velocity,upper_ux,0.8068141937255859 +illusion_1.5L,ppo,59,23.6,velocity,upper_uy,-0.3313032388687134 +illusion_1.5L,ppo,59,23.6,velocity,center_ux,0.7350502014160156 +illusion_1.5L,ppo,59,23.6,velocity,center_uy,-0.6961948871612549 +illusion_1.5L,ppo,59,23.6,velocity,lower_ux,1.0014489889144897 +illusion_1.5L,ppo,59,23.6,velocity,lower_uy,-0.624254584312439 +illusion_1.5L,ppo,60,24.0,velocity,upper_ux,0.8719858527183533 +illusion_1.5L,ppo,60,24.0,velocity,upper_uy,-0.378034770488739 +illusion_1.5L,ppo,60,24.0,velocity,center_ux,0.8185133934020996 +illusion_1.5L,ppo,60,24.0,velocity,center_uy,-0.6814921498298645 +illusion_1.5L,ppo,60,24.0,velocity,lower_ux,0.9510625600814819 +illusion_1.5L,ppo,60,24.0,velocity,lower_uy,-0.6223760843276978 +illusion_1.5L,ppo,61,24.4,velocity,upper_ux,0.9291473627090454 +illusion_1.5L,ppo,61,24.4,velocity,upper_uy,-0.4208122491836548 +illusion_1.5L,ppo,61,24.4,velocity,center_ux,0.8772841691970825 +illusion_1.5L,ppo,61,24.4,velocity,center_uy,-0.6767399311065674 +illusion_1.5L,ppo,61,24.4,velocity,lower_ux,0.9013096690177917 +illusion_1.5L,ppo,61,24.4,velocity,lower_uy,-0.5872690081596375 +illusion_1.5L,ppo,62,24.8,velocity,upper_ux,0.9917404651641846 +illusion_1.5L,ppo,62,24.8,velocity,upper_uy,-0.4612673819065094 +illusion_1.5L,ppo,62,24.8,velocity,center_ux,0.9233819842338562 +illusion_1.5L,ppo,62,24.8,velocity,center_uy,-0.6769800782203674 +illusion_1.5L,ppo,62,24.8,velocity,lower_ux,0.8443237543106079 +illusion_1.5L,ppo,62,24.8,velocity,lower_uy,-0.583467423915863 +illusion_1.5L,ppo,63,25.2,velocity,upper_ux,1.0522103309631348 +illusion_1.5L,ppo,63,25.2,velocity,upper_uy,-0.5050056576728821 +illusion_1.5L,ppo,63,25.2,velocity,center_ux,0.9375454783439636 +illusion_1.5L,ppo,63,25.2,velocity,center_uy,-0.6852490305900574 +illusion_1.5L,ppo,63,25.2,velocity,lower_ux,0.7786047458648682 +illusion_1.5L,ppo,63,25.2,velocity,lower_uy,-0.5789613127708435 +illusion_1.5L,ppo,64,25.6,velocity,upper_ux,1.1347852945327759 +illusion_1.5L,ppo,64,25.6,velocity,upper_uy,-0.5493781566619873 +illusion_1.5L,ppo,64,25.6,velocity,center_ux,0.9318035244941711 +illusion_1.5L,ppo,64,25.6,velocity,center_uy,-0.7137075066566467 +illusion_1.5L,ppo,64,25.6,velocity,lower_ux,0.7423068881034851 +illusion_1.5L,ppo,64,25.6,velocity,lower_uy,-0.543012797832489 +illusion_1.5L,ppo,65,26.0,velocity,upper_ux,1.233075737953186 +illusion_1.5L,ppo,65,26.0,velocity,upper_uy,-0.583595871925354 +illusion_1.5L,ppo,65,26.0,velocity,center_ux,0.8778836727142334 +illusion_1.5L,ppo,65,26.0,velocity,center_uy,-0.7480965256690979 +illusion_1.5L,ppo,65,26.0,velocity,lower_ux,0.6946708559989929 +illusion_1.5L,ppo,65,26.0,velocity,lower_uy,-0.45678985118865967 +illusion_1.5L,ppo,66,26.4,velocity,upper_ux,1.356067180633545 +illusion_1.5L,ppo,66,26.4,velocity,upper_uy,-0.573691189289093 +illusion_1.5L,ppo,66,26.4,velocity,center_ux,0.7945612072944641 +illusion_1.5L,ppo,66,26.4,velocity,center_uy,-0.6930570006370544 +illusion_1.5L,ppo,66,26.4,velocity,lower_ux,0.6359702944755554 +illusion_1.5L,ppo,66,26.4,velocity,lower_uy,-0.30929550528526306 +illusion_1.5L,ppo,67,26.8,velocity,upper_ux,1.4345113039016724 +illusion_1.5L,ppo,67,26.8,velocity,upper_uy,-0.4951218366622925 +illusion_1.5L,ppo,67,26.8,velocity,center_ux,0.7235813140869141 +illusion_1.5L,ppo,67,26.8,velocity,center_uy,-0.39682814478874207 +illusion_1.5L,ppo,67,26.8,velocity,lower_ux,0.5615325570106506 +illusion_1.5L,ppo,67,26.8,velocity,lower_uy,-0.08755962550640106 +illusion_1.5L,ppo,68,27.2,velocity,upper_ux,1.4349207878112793 +illusion_1.5L,ppo,68,27.2,velocity,upper_uy,-0.3339140713214874 +illusion_1.5L,ppo,68,27.2,velocity,center_ux,0.7333269715309143 +illusion_1.5L,ppo,68,27.2,velocity,center_uy,0.017736002802848816 +illusion_1.5L,ppo,68,27.2,velocity,lower_ux,0.5392540097236633 +illusion_1.5L,ppo,68,27.2,velocity,lower_uy,0.14675173163414001 +illusion_1.5L,ppo,69,27.6,velocity,upper_ux,1.3071317672729492 +illusion_1.5L,ppo,69,27.6,velocity,upper_uy,-0.06836342811584473 +illusion_1.5L,ppo,69,27.6,velocity,center_ux,0.7557293772697449 +illusion_1.5L,ppo,69,27.6,velocity,center_uy,0.3812881410121918 +illusion_1.5L,ppo,69,27.6,velocity,lower_ux,0.5785186886787415 +illusion_1.5L,ppo,69,27.6,velocity,lower_uy,0.30112025141716003 +illusion_1.5L,ppo,70,28.0,velocity,upper_ux,1.121681571006775 +illusion_1.5L,ppo,70,28.0,velocity,upper_uy,0.25010809302330017 +illusion_1.5L,ppo,70,28.0,velocity,center_ux,0.7910106182098389 +illusion_1.5L,ppo,70,28.0,velocity,center_uy,0.6439285278320312 +illusion_1.5L,ppo,70,28.0,velocity,lower_ux,0.6830452084541321 +illusion_1.5L,ppo,70,28.0,velocity,lower_uy,0.3474675118923187 +illusion_1.5L,ppo,71,28.4,velocity,upper_ux,0.9604879021644592 +illusion_1.5L,ppo,71,28.4,velocity,upper_uy,0.46466967463493347 +illusion_1.5L,ppo,71,28.4,velocity,center_ux,0.8336759805679321 +illusion_1.5L,ppo,71,28.4,velocity,center_uy,0.6792701482772827 +illusion_1.5L,ppo,71,28.4,velocity,lower_ux,0.7731176018714905 +illusion_1.5L,ppo,71,28.4,velocity,lower_uy,0.36893391609191895 +illusion_1.5L,ppo,72,28.8,velocity,upper_ux,0.9043775796890259 +illusion_1.5L,ppo,72,28.8,velocity,upper_uy,0.5144437551498413 +illusion_1.5L,ppo,72,28.8,velocity,center_ux,0.8843041062355042 +illusion_1.5L,ppo,72,28.8,velocity,center_uy,0.6411374807357788 +illusion_1.5L,ppo,72,28.8,velocity,lower_ux,0.8590190410614014 +illusion_1.5L,ppo,72,28.8,velocity,lower_uy,0.3996524512767792 +illusion_1.5L,ppo,73,29.2,velocity,upper_ux,0.8809142112731934 +illusion_1.5L,ppo,73,29.2,velocity,upper_uy,0.5097304582595825 +illusion_1.5L,ppo,73,29.2,velocity,center_ux,0.9119751453399658 +illusion_1.5L,ppo,73,29.2,velocity,center_uy,0.637785017490387 +illusion_1.5L,ppo,73,29.2,velocity,lower_ux,0.9274204969406128 +illusion_1.5L,ppo,73,29.2,velocity,lower_uy,0.4255489706993103 +illusion_1.5L,ppo,74,29.6,velocity,upper_ux,0.8630747199058533 +illusion_1.5L,ppo,74,29.6,velocity,upper_uy,0.5134294629096985 +illusion_1.5L,ppo,74,29.6,velocity,center_ux,0.9433429837226868 +illusion_1.5L,ppo,74,29.6,velocity,center_uy,0.664763331413269 +illusion_1.5L,ppo,74,29.6,velocity,lower_ux,0.9988651275634766 +illusion_1.5L,ppo,74,29.6,velocity,lower_uy,0.4449674189090729 +illusion_1.5L,ppo,75,30.0,velocity,upper_ux,0.8286400437355042 +illusion_1.5L,ppo,75,30.0,velocity,upper_uy,0.5103495121002197 +illusion_1.5L,ppo,75,30.0,velocity,center_ux,0.9795365333557129 +illusion_1.5L,ppo,75,30.0,velocity,center_uy,0.715451180934906 +illusion_1.5L,ppo,75,30.0,velocity,lower_ux,1.0607855319976807 +illusion_1.5L,ppo,75,30.0,velocity,lower_uy,0.4571302533149719 +illusion_1.5L,ppo,76,30.4,velocity,upper_ux,0.769890308380127 +illusion_1.5L,ppo,76,30.4,velocity,upper_uy,0.49972236156463623 +illusion_1.5L,ppo,76,30.4,velocity,center_ux,1.048919439315796 +illusion_1.5L,ppo,76,30.4,velocity,center_uy,0.7657426595687866 +illusion_1.5L,ppo,76,30.4,velocity,lower_ux,1.1232072114944458 +illusion_1.5L,ppo,76,30.4,velocity,lower_uy,0.46480387449264526 +illusion_1.5L,ppo,77,30.8,velocity,upper_ux,0.6753684878349304 +illusion_1.5L,ppo,77,30.8,velocity,upper_uy,0.45560240745544434 +illusion_1.5L,ppo,77,30.8,velocity,center_ux,1.1303868293762207 +illusion_1.5L,ppo,77,30.8,velocity,center_uy,0.759320080280304 +illusion_1.5L,ppo,77,30.8,velocity,lower_ux,1.177068829536438 +illusion_1.5L,ppo,77,30.8,velocity,lower_uy,0.4720684885978699 +illusion_1.5L,ppo,78,31.2,velocity,upper_ux,0.5773096084594727 +illusion_1.5L,ppo,78,31.2,velocity,upper_uy,0.3370707035064697 +illusion_1.5L,ppo,78,31.2,velocity,center_ux,1.1742533445358276 +illusion_1.5L,ppo,78,31.2,velocity,center_uy,0.6700570583343506 +illusion_1.5L,ppo,78,31.2,velocity,lower_ux,1.2318336963653564 +illusion_1.5L,ppo,78,31.2,velocity,lower_uy,0.4840473532676697 +illusion_1.5L,ppo,79,31.6,velocity,upper_ux,0.5236338973045349 +illusion_1.5L,ppo,79,31.6,velocity,upper_uy,0.13836634159088135 +illusion_1.5L,ppo,79,31.6,velocity,center_ux,1.1371243000030518 +illusion_1.5L,ppo,79,31.6,velocity,center_uy,0.4661957025527954 +illusion_1.5L,ppo,79,31.6,velocity,lower_ux,1.2902581691741943 +illusion_1.5L,ppo,79,31.6,velocity,lower_uy,0.5005607008934021 +illusion_1.5L,ppo,80,32.0,velocity,upper_ux,0.5296757221221924 +illusion_1.5L,ppo,80,32.0,velocity,upper_uy,-0.08856520801782608 +illusion_1.5L,ppo,80,32.0,velocity,center_ux,1.0229220390319824 +illusion_1.5L,ppo,80,32.0,velocity,center_uy,0.13977818191051483 +illusion_1.5L,ppo,80,32.0,velocity,lower_ux,1.3433046340942383 +illusion_1.5L,ppo,80,32.0,velocity,lower_uy,0.49874022603034973 +illusion_1.5L,ppo,81,32.4,velocity,upper_ux,0.5854921936988831 +illusion_1.5L,ppo,81,32.4,velocity,upper_uy,-0.2811782658100128 +illusion_1.5L,ppo,81,32.4,velocity,center_ux,0.902812123298645 +illusion_1.5L,ppo,81,32.4,velocity,center_uy,-0.22966542840003967 +illusion_1.5L,ppo,81,32.4,velocity,lower_ux,1.3341009616851807 +illusion_1.5L,ppo,81,32.4,velocity,lower_uy,0.380812406539917 +illusion_1.5L,ppo,82,32.8,velocity,upper_ux,0.6717989444732666 +illusion_1.5L,ppo,82,32.8,velocity,upper_uy,-0.36676132678985596 +illusion_1.5L,ppo,82,32.8,velocity,center_ux,0.8393034338951111 +illusion_1.5L,ppo,82,32.8,velocity,center_uy,-0.4986129701137543 +illusion_1.5L,ppo,82,32.8,velocity,lower_ux,1.170853614807129 +illusion_1.5L,ppo,82,32.8,velocity,lower_uy,0.03414221853017807 +illusion_1.5L,ppo,83,33.2,velocity,upper_ux,0.7704337239265442 +illusion_1.5L,ppo,83,33.2,velocity,upper_uy,-0.38213470578193665 +illusion_1.5L,ppo,83,33.2,velocity,center_ux,0.8456220030784607 +illusion_1.5L,ppo,83,33.2,velocity,center_uy,-0.5866361856460571 +illusion_1.5L,ppo,83,33.2,velocity,lower_ux,0.9756150841712952 +illusion_1.5L,ppo,83,33.2,velocity,lower_uy,-0.31974494457244873 +illusion_1.5L,ppo,84,33.6,velocity,upper_ux,0.8433721661567688 +illusion_1.5L,ppo,84,33.6,velocity,upper_uy,-0.4000200629234314 +illusion_1.5L,ppo,84,33.6,velocity,center_ux,0.8736556768417358 +illusion_1.5L,ppo,84,33.6,velocity,center_uy,-0.5791523456573486 +illusion_1.5L,ppo,84,33.6,velocity,lower_ux,0.8681632876396179 +illusion_1.5L,ppo,84,33.6,velocity,lower_uy,-0.4719085395336151 +illusion_1.5L,ppo,85,34.0,velocity,upper_ux,0.9077363610267639 +illusion_1.5L,ppo,85,34.0,velocity,upper_uy,-0.4200683534145355 +illusion_1.5L,ppo,85,34.0,velocity,center_ux,0.9070550799369812 +illusion_1.5L,ppo,85,34.0,velocity,center_uy,-0.578285813331604 +illusion_1.5L,ppo,85,34.0,velocity,lower_ux,0.8488789200782776 +illusion_1.5L,ppo,85,34.0,velocity,lower_uy,-0.4760183095932007 +illusion_1.5L,ppo,86,34.4,velocity,upper_ux,0.9604436755180359 +illusion_1.5L,ppo,86,34.4,velocity,upper_uy,-0.443084716796875 +illusion_1.5L,ppo,86,34.4,velocity,center_ux,0.9331310391426086 +illusion_1.5L,ppo,86,34.4,velocity,center_uy,-0.58857661485672 +illusion_1.5L,ppo,86,34.4,velocity,lower_ux,0.8314996361732483 +illusion_1.5L,ppo,86,34.4,velocity,lower_uy,-0.46318528056144714 +illusion_1.5L,ppo,87,34.8,velocity,upper_ux,1.0145586729049683 +illusion_1.5L,ppo,87,34.8,velocity,upper_uy,-0.46780312061309814 +illusion_1.5L,ppo,87,34.8,velocity,center_ux,0.956528902053833 +illusion_1.5L,ppo,87,34.8,velocity,center_uy,-0.6009761691093445 +illusion_1.5L,ppo,87,34.8,velocity,lower_ux,0.7950723171234131 +illusion_1.5L,ppo,87,34.8,velocity,lower_uy,-0.4687381386756897 +illusion_1.5L,ppo,88,35.2,velocity,upper_ux,1.0647011995315552 +illusion_1.5L,ppo,88,35.2,velocity,upper_uy,-0.49669399857521057 +illusion_1.5L,ppo,88,35.2,velocity,center_ux,0.9621865749359131 +illusion_1.5L,ppo,88,35.2,velocity,center_uy,-0.6229060292243958 +illusion_1.5L,ppo,88,35.2,velocity,lower_ux,0.7409350872039795 +illusion_1.5L,ppo,88,35.2,velocity,lower_uy,-0.4771806001663208 +illusion_1.5L,ppo,89,35.6,velocity,upper_ux,1.1222174167633057 +illusion_1.5L,ppo,89,35.6,velocity,upper_uy,-0.5273623466491699 +illusion_1.5L,ppo,89,35.6,velocity,center_ux,0.9550195932388306 +illusion_1.5L,ppo,89,35.6,velocity,center_uy,-0.6625624299049377 +illusion_1.5L,ppo,89,35.6,velocity,lower_ux,0.6968162059783936 +illusion_1.5L,ppo,89,35.6,velocity,lower_uy,-0.4629054367542267 +illusion_1.5L,ppo,90,36.0,velocity,upper_ux,1.1862733364105225 +illusion_1.5L,ppo,90,36.0,velocity,upper_uy,-0.557569146156311 +illusion_1.5L,ppo,90,36.0,velocity,center_ux,0.9289436340332031 +illusion_1.5L,ppo,90,36.0,velocity,center_uy,-0.7112723588943481 +illusion_1.5L,ppo,90,36.0,velocity,lower_ux,0.6559358835220337 +illusion_1.5L,ppo,90,36.0,velocity,lower_uy,-0.40574267506599426 +illusion_1.5L,ppo,91,36.4,velocity,upper_ux,1.2542715072631836 +illusion_1.5L,ppo,91,36.4,velocity,upper_uy,-0.5830106139183044 +illusion_1.5L,ppo,91,36.4,velocity,center_ux,0.8785715699195862 +illusion_1.5L,ppo,91,36.4,velocity,center_uy,-0.7202554941177368 +illusion_1.5L,ppo,91,36.4,velocity,lower_ux,0.6005305647850037 +illusion_1.5L,ppo,91,36.4,velocity,lower_uy,-0.30247339606285095 +illusion_1.5L,ppo,92,36.8,velocity,upper_ux,1.319353461265564 +illusion_1.5L,ppo,92,36.8,velocity,upper_uy,-0.5990022420883179 +illusion_1.5L,ppo,92,36.8,velocity,center_ux,0.8093291521072388 +illusion_1.5L,ppo,92,36.8,velocity,center_uy,-0.5675579309463501 +illusion_1.5L,ppo,92,36.8,velocity,lower_ux,0.5372223854064941 +illusion_1.5L,ppo,92,36.8,velocity,lower_uy,-0.13606750965118408 +illusion_1.5L,ppo,93,37.2,velocity,upper_ux,1.3352792263031006 +illusion_1.5L,ppo,93,37.2,velocity,upper_uy,-0.5532971620559692 +illusion_1.5L,ppo,93,37.2,velocity,center_ux,0.742666482925415 +illusion_1.5L,ppo,93,37.2,velocity,center_uy,-0.21711145341396332 +illusion_1.5L,ppo,93,37.2,velocity,lower_ux,0.49166831374168396 +illusion_1.5L,ppo,93,37.2,velocity,lower_uy,0.06737921386957169 +illusion_1.5L,ppo,94,37.6,velocity,upper_ux,1.2440301179885864 +illusion_1.5L,ppo,94,37.6,velocity,upper_uy,-0.30424243211746216 +illusion_1.5L,ppo,94,37.6,velocity,center_ux,0.7061834931373596 +illusion_1.5L,ppo,94,37.6,velocity,center_uy,0.17509154975414276 +illusion_1.5L,ppo,94,37.6,velocity,lower_ux,0.5078312754631042 +illusion_1.5L,ppo,94,37.6,velocity,lower_uy,0.24594123661518097 +illusion_1.5L,ppo,95,38.0,velocity,upper_ux,1.1071553230285645 +illusion_1.5L,ppo,95,38.0,velocity,upper_uy,0.10322335362434387 +illusion_1.5L,ppo,95,38.0,velocity,center_ux,0.6983095407485962 +illusion_1.5L,ppo,95,38.0,velocity,center_uy,0.5154018402099609 +illusion_1.5L,ppo,95,38.0,velocity,lower_ux,0.5972070097923279 +illusion_1.5L,ppo,95,38.0,velocity,lower_uy,0.3200727701187134 +illusion_1.5L,ppo,96,38.4,velocity,upper_ux,0.9800674915313721 +illusion_1.5L,ppo,96,38.4,velocity,upper_uy,0.4836556315422058 +illusion_1.5L,ppo,96,38.4,velocity,center_ux,0.7265949845314026 +illusion_1.5L,ppo,96,38.4,velocity,center_uy,0.724069356918335 +illusion_1.5L,ppo,96,38.4,velocity,lower_ux,0.7080380916595459 +illusion_1.5L,ppo,96,38.4,velocity,lower_uy,0.3334847390651703 +illusion_1.5L,ppo,97,38.8,velocity,upper_ux,0.9165890216827393 +illusion_1.5L,ppo,97,38.8,velocity,upper_uy,0.6690704822540283 +illusion_1.5L,ppo,97,38.8,velocity,center_ux,0.79851895570755 +illusion_1.5L,ppo,97,38.8,velocity,center_uy,0.71309494972229 +illusion_1.5L,ppo,97,38.8,velocity,lower_ux,0.7988200187683105 +illusion_1.5L,ppo,97,38.8,velocity,lower_uy,0.3596799373626709 +illusion_1.5L,ppo,98,39.2,velocity,upper_ux,0.9160524010658264 +illusion_1.5L,ppo,98,39.2,velocity,upper_uy,0.6348942518234253 +illusion_1.5L,ppo,98,39.2,velocity,center_ux,0.8618471026420593 +illusion_1.5L,ppo,98,39.2,velocity,center_uy,0.6750122308731079 +illusion_1.5L,ppo,98,39.2,velocity,lower_ux,0.869658350944519 +illusion_1.5L,ppo,98,39.2,velocity,lower_uy,0.3940570056438446 +illusion_1.5L,ppo,99,39.6,velocity,upper_ux,0.9140333533287048 +illusion_1.5L,ppo,99,39.6,velocity,upper_uy,0.5855638980865479 +illusion_1.5L,ppo,99,39.6,velocity,center_ux,0.9199321269989014 +illusion_1.5L,ppo,99,39.6,velocity,center_uy,0.6784521341323853 +illusion_1.5L,ppo,99,39.6,velocity,lower_ux,0.9389259815216064 +illusion_1.5L,ppo,99,39.6,velocity,lower_uy,0.4221912622451782 +illusion_1.5L,ppo,100,40.0,velocity,upper_ux,0.8697568774223328 +illusion_1.5L,ppo,100,40.0,velocity,upper_uy,0.5686153173446655 +illusion_1.5L,ppo,100,40.0,velocity,center_ux,0.969890832901001 +illusion_1.5L,ppo,100,40.0,velocity,center_uy,0.6888260841369629 +illusion_1.5L,ppo,100,40.0,velocity,lower_ux,0.9936428070068359 +illusion_1.5L,ppo,100,40.0,velocity,lower_uy,0.44713377952575684 +illusion_1.5L,ppo,101,40.4,velocity,upper_ux,0.8046894073486328 +illusion_1.5L,ppo,101,40.4,velocity,upper_uy,0.5666242837905884 +illusion_1.5L,ppo,101,40.4,velocity,center_ux,1.0258289575576782 +illusion_1.5L,ppo,101,40.4,velocity,center_uy,0.6933850646018982 +illusion_1.5L,ppo,101,40.4,velocity,lower_ux,1.0563993453979492 +illusion_1.5L,ppo,101,40.4,velocity,lower_uy,0.47369879484176636 +illusion_1.5L,ppo,102,40.8,velocity,upper_ux,0.7094849348068237 +illusion_1.5L,ppo,102,40.8,velocity,upper_uy,0.5306308269500732 +illusion_1.5L,ppo,102,40.8,velocity,center_ux,1.0491291284561157 +illusion_1.5L,ppo,102,40.8,velocity,center_uy,0.6941787004470825 +illusion_1.5L,ppo,102,40.8,velocity,lower_ux,1.105112075805664 +illusion_1.5L,ppo,102,40.8,velocity,lower_uy,0.5053718686103821 +illusion_1.5L,ppo,103,41.2,velocity,upper_ux,0.6410926580429077 +illusion_1.5L,ppo,103,41.2,velocity,upper_uy,0.4206414818763733 +illusion_1.5L,ppo,103,41.2,velocity,center_ux,1.0635353326797485 +illusion_1.5L,ppo,103,41.2,velocity,center_uy,0.688896656036377 +illusion_1.5L,ppo,103,41.2,velocity,lower_ux,1.1809680461883545 +illusion_1.5L,ppo,103,41.2,velocity,lower_uy,0.5474417209625244 +illusion_1.5L,ppo,104,41.6,velocity,upper_ux,0.5725862383842468 +illusion_1.5L,ppo,104,41.6,velocity,upper_uy,0.21934638917446136 +illusion_1.5L,ppo,104,41.6,velocity,center_ux,1.0169780254364014 +illusion_1.5L,ppo,104,41.6,velocity,center_uy,0.6248215436935425 +illusion_1.5L,ppo,104,41.6,velocity,lower_ux,1.2637325525283813 +illusion_1.5L,ppo,104,41.6,velocity,lower_uy,0.5936311483383179 +illusion_1.5L,ppo,105,42.0,velocity,upper_ux,0.5594651699066162 +illusion_1.5L,ppo,105,42.0,velocity,upper_uy,-0.02124902792274952 +illusion_1.5L,ppo,105,42.0,velocity,center_ux,0.9370124936103821 +illusion_1.5L,ppo,105,42.0,velocity,center_uy,0.41677820682525635 +illusion_1.5L,ppo,105,42.0,velocity,lower_ux,1.388014316558838 +illusion_1.5L,ppo,105,42.0,velocity,lower_uy,0.5960705280303955 +illusion_1.5L,ppo,106,42.4,velocity,upper_ux,0.5851545929908752 +illusion_1.5L,ppo,106,42.4,velocity,upper_uy,-0.2211216390132904 +illusion_1.5L,ppo,106,42.4,velocity,center_ux,0.8307003974914551 +illusion_1.5L,ppo,106,42.4,velocity,center_uy,0.03657803311944008 +illusion_1.5L,ppo,106,42.4,velocity,lower_ux,1.4311970472335815 +illusion_1.5L,ppo,106,42.4,velocity,lower_uy,0.4086628258228302 +illusion_1.5L,ppo,107,42.8,velocity,upper_ux,0.663921058177948 +illusion_1.5L,ppo,107,42.8,velocity,upper_uy,-0.3247388005256653 +illusion_1.5L,ppo,107,42.8,velocity,center_ux,0.7743793725967407 +illusion_1.5L,ppo,107,42.8,velocity,center_uy,-0.3714039623737335 +illusion_1.5L,ppo,107,42.8,velocity,lower_ux,1.3206939697265625 +illusion_1.5L,ppo,107,42.8,velocity,lower_uy,0.04176059737801552 +illusion_1.5L,ppo,108,43.2,velocity,upper_ux,0.7452763319015503 +illusion_1.5L,ppo,108,43.2,velocity,upper_uy,-0.35705336928367615 +illusion_1.5L,ppo,108,43.2,velocity,center_ux,0.7816684246063232 +illusion_1.5L,ppo,108,43.2,velocity,center_uy,-0.5872454643249512 +illusion_1.5L,ppo,108,43.2,velocity,lower_ux,1.1229950189590454 +illusion_1.5L,ppo,108,43.2,velocity,lower_uy,-0.2957140803337097 +illusion_1.5L,ppo,109,43.6,velocity,upper_ux,0.8244839310646057 +illusion_1.5L,ppo,109,43.6,velocity,upper_uy,-0.3800381124019623 +illusion_1.5L,ppo,109,43.6,velocity,center_ux,0.8432232141494751 +illusion_1.5L,ppo,109,43.6,velocity,center_uy,-0.6087249517440796 +illusion_1.5L,ppo,109,43.6,velocity,lower_ux,0.9789277911186218 +illusion_1.5L,ppo,109,43.6,velocity,lower_uy,-0.47668930888175964 +illusion_1.5L,ppo,110,44.0,velocity,upper_ux,0.885989248752594 +illusion_1.5L,ppo,110,44.0,velocity,upper_uy,-0.4068559408187866 +illusion_1.5L,ppo,110,44.0,velocity,center_ux,0.8896307945251465 +illusion_1.5L,ppo,110,44.0,velocity,center_uy,-0.595055341720581 +illusion_1.5L,ppo,110,44.0,velocity,lower_ux,0.9110756516456604 +illusion_1.5L,ppo,110,44.0,velocity,lower_uy,-0.48962005972862244 +illusion_1.5L,ppo,111,44.4,velocity,upper_ux,0.9473151564598083 +illusion_1.5L,ppo,111,44.4,velocity,upper_uy,-0.43334323167800903 +illusion_1.5L,ppo,111,44.4,velocity,center_ux,0.9256379008293152 +illusion_1.5L,ppo,111,44.4,velocity,center_uy,-0.5971478819847107 +illusion_1.5L,ppo,111,44.4,velocity,lower_ux,0.8771875500679016 +illusion_1.5L,ppo,111,44.4,velocity,lower_uy,-0.47326910495758057 +illusion_1.5L,ppo,112,44.8,velocity,upper_ux,1.0055183172225952 +illusion_1.5L,ppo,112,44.8,velocity,upper_uy,-0.45922955870628357 +illusion_1.5L,ppo,112,44.8,velocity,center_ux,0.9464941620826721 +illusion_1.5L,ppo,112,44.8,velocity,center_uy,-0.6085690855979919 +illusion_1.5L,ppo,112,44.8,velocity,lower_ux,0.8327459692955017 +illusion_1.5L,ppo,112,44.8,velocity,lower_uy,-0.4776957035064697 +illusion_1.5L,ppo,113,45.2,velocity,upper_ux,1.0634407997131348 +illusion_1.5L,ppo,113,45.2,velocity,upper_uy,-0.484497994184494 +illusion_1.5L,ppo,113,45.2,velocity,center_ux,0.9518711566925049 +illusion_1.5L,ppo,113,45.2,velocity,center_uy,-0.6400798559188843 +illusion_1.5L,ppo,113,45.2,velocity,lower_ux,0.7880748510360718 +illusion_1.5L,ppo,113,45.2,velocity,lower_uy,-0.4874950349330902 +illusion_1.5L,ppo,114,45.6,velocity,upper_ux,1.131158709526062 +illusion_1.5L,ppo,114,45.6,velocity,upper_uy,-0.5052244663238525 +illusion_1.5L,ppo,114,45.6,velocity,center_ux,0.9522876739501953 +illusion_1.5L,ppo,114,45.6,velocity,center_uy,-0.6973153948783875 +illusion_1.5L,ppo,114,45.6,velocity,lower_ux,0.7586430311203003 +illusion_1.5L,ppo,114,45.6,velocity,lower_uy,-0.4753800928592682 +illusion_1.5L,ppo,115,46.0,velocity,upper_ux,1.197746753692627 +illusion_1.5L,ppo,115,46.0,velocity,upper_uy,-0.5179030895233154 +illusion_1.5L,ppo,115,46.0,velocity,center_ux,0.9441474080085754 +illusion_1.5L,ppo,115,46.0,velocity,center_uy,-0.7693407535552979 +illusion_1.5L,ppo,115,46.0,velocity,lower_ux,0.7132769227027893 +illusion_1.5L,ppo,115,46.0,velocity,lower_uy,-0.4372044503688812 +illusion_1.5L,ppo,116,46.4,velocity,upper_ux,1.2656859159469604 +illusion_1.5L,ppo,116,46.4,velocity,upper_uy,-0.5220198631286621 +illusion_1.5L,ppo,116,46.4,velocity,center_ux,0.9452057480812073 +illusion_1.5L,ppo,116,46.4,velocity,center_uy,-0.76158607006073 +illusion_1.5L,ppo,116,46.4,velocity,lower_ux,0.6500346660614014 +illusion_1.5L,ppo,116,46.4,velocity,lower_uy,-0.3536284267902374 +illusion_1.5L,ppo,117,46.8,velocity,upper_ux,1.3195412158966064 +illusion_1.5L,ppo,117,46.8,velocity,upper_uy,-0.5242219567298889 +illusion_1.5L,ppo,117,46.8,velocity,center_ux,0.936735987663269 +illusion_1.5L,ppo,117,46.8,velocity,center_uy,-0.542675256729126 +illusion_1.5L,ppo,117,46.8,velocity,lower_ux,0.5724241137504578 +illusion_1.5L,ppo,117,46.8,velocity,lower_uy,-0.2033972293138504 +illusion_1.5L,ppo,118,47.2,velocity,upper_ux,1.347570776939392 +illusion_1.5L,ppo,118,47.2,velocity,upper_uy,-0.5071200728416443 +illusion_1.5L,ppo,118,47.2,velocity,center_ux,0.8949389457702637 +illusion_1.5L,ppo,118,47.2,velocity,center_uy,-0.17777635157108307 +illusion_1.5L,ppo,118,47.2,velocity,lower_ux,0.5158867835998535 +illusion_1.5L,ppo,118,47.2,velocity,lower_uy,0.007488616276532412 +illusion_1.5L,ppo,119,47.6,velocity,upper_ux,1.283815860748291 +illusion_1.5L,ppo,119,47.6,velocity,upper_uy,-0.3606860339641571 +illusion_1.5L,ppo,119,47.6,velocity,center_ux,0.8322288990020752 +illusion_1.5L,ppo,119,47.6,velocity,center_uy,0.1877482384443283 +illusion_1.5L,ppo,119,47.6,velocity,lower_ux,0.5136278867721558 +illusion_1.5L,ppo,119,47.6,velocity,lower_uy,0.22109152376651764 +illusion_1.5L,ppo,120,48.0,velocity,upper_ux,1.1229764223098755 +illusion_1.5L,ppo,120,48.0,velocity,upper_uy,0.007954588159918785 +illusion_1.5L,ppo,120,48.0,velocity,center_ux,0.7984576225280762 +illusion_1.5L,ppo,120,48.0,velocity,center_uy,0.5120351314544678 +illusion_1.5L,ppo,120,48.0,velocity,lower_ux,0.5930938124656677 +illusion_1.5L,ppo,120,48.0,velocity,lower_uy,0.33224621415138245 +illusion_1.5L,ppo,121,48.4,velocity,upper_ux,0.974222719669342 +illusion_1.5L,ppo,121,48.4,velocity,upper_uy,0.3854178190231323 +illusion_1.5L,ppo,121,48.4,velocity,center_ux,0.8106033205986023 +illusion_1.5L,ppo,121,48.4,velocity,center_uy,0.6848047375679016 +illusion_1.5L,ppo,121,48.4,velocity,lower_ux,0.7066794037818909 +illusion_1.5L,ppo,121,48.4,velocity,lower_uy,0.3497346043586731 +illusion_1.5L,ppo,122,48.8,velocity,upper_ux,0.9004543423652649 +illusion_1.5L,ppo,122,48.8,velocity,upper_uy,0.5663981437683105 +illusion_1.5L,ppo,122,48.8,velocity,center_ux,0.8582974076271057 +illusion_1.5L,ppo,122,48.8,velocity,center_uy,0.659966230392456 +illusion_1.5L,ppo,122,48.8,velocity,lower_ux,0.8011119365692139 +illusion_1.5L,ppo,122,48.8,velocity,lower_uy,0.36385825276374817 +illusion_1.5L,ppo,123,49.2,velocity,upper_ux,0.9070193767547607 +illusion_1.5L,ppo,123,49.2,velocity,upper_uy,0.5565537214279175 +illusion_1.5L,ppo,123,49.2,velocity,center_ux,0.9082685708999634 +illusion_1.5L,ppo,123,49.2,velocity,center_uy,0.6282564401626587 +illusion_1.5L,ppo,123,49.2,velocity,lower_ux,0.8770937919616699 +illusion_1.5L,ppo,123,49.2,velocity,lower_uy,0.3880203664302826 +illusion_1.5L,ppo,124,49.6,velocity,upper_ux,0.9064921736717224 +illusion_1.5L,ppo,124,49.6,velocity,upper_uy,0.524336040019989 +illusion_1.5L,ppo,124,49.6,velocity,center_ux,0.9529796838760376 +illusion_1.5L,ppo,124,49.6,velocity,center_uy,0.6271381974220276 +illusion_1.5L,ppo,124,49.6,velocity,lower_ux,0.9389414191246033 +illusion_1.5L,ppo,124,49.6,velocity,lower_uy,0.4049927890300751 +illusion_1.5L,ppo,125,50.0,velocity,upper_ux,0.8762252330780029 +illusion_1.5L,ppo,125,50.0,velocity,upper_uy,0.5138649940490723 +illusion_1.5L,ppo,125,50.0,velocity,center_ux,1.007836937904358 +illusion_1.5L,ppo,125,50.0,velocity,center_uy,0.6304599642753601 +illusion_1.5L,ppo,125,50.0,velocity,lower_ux,0.9984533786773682 +illusion_1.5L,ppo,125,50.0,velocity,lower_uy,0.4199409484863281 +illusion_1.5L,ppo,126,50.4,velocity,upper_ux,0.8067879676818848 +illusion_1.5L,ppo,126,50.4,velocity,upper_uy,0.5103647708892822 +illusion_1.5L,ppo,126,50.4,velocity,center_ux,1.0554263591766357 +illusion_1.5L,ppo,126,50.4,velocity,center_uy,0.6255168318748474 +illusion_1.5L,ppo,126,50.4,velocity,lower_ux,1.0496172904968262 +illusion_1.5L,ppo,126,50.4,velocity,lower_uy,0.4317925274372101 +illusion_1.5L,ppo,127,50.8,velocity,upper_ux,0.7230893969535828 +illusion_1.5L,ppo,127,50.8,velocity,upper_uy,0.46512752771377563 +illusion_1.5L,ppo,127,50.8,velocity,center_ux,1.0905349254608154 +illusion_1.5L,ppo,127,50.8,velocity,center_uy,0.6206510663032532 +illusion_1.5L,ppo,127,50.8,velocity,lower_ux,1.1002715826034546 +illusion_1.5L,ppo,127,50.8,velocity,lower_uy,0.4442363381385803 +illusion_1.5L,ppo,128,51.2,velocity,upper_ux,0.6535404324531555 +illusion_1.5L,ppo,128,51.2,velocity,upper_uy,0.34212708473205566 +illusion_1.5L,ppo,128,51.2,velocity,center_ux,1.1074596643447876 +illusion_1.5L,ppo,128,51.2,velocity,center_uy,0.6143837571144104 +illusion_1.5L,ppo,128,51.2,velocity,lower_ux,1.1520112752914429 +illusion_1.5L,ppo,128,51.2,velocity,lower_uy,0.45518529415130615 +illusion_1.5L,ppo,129,51.6,velocity,upper_ux,0.6048881411552429 +illusion_1.5L,ppo,129,51.6,velocity,upper_uy,0.14385131001472473 +illusion_1.5L,ppo,129,51.6,velocity,center_ux,1.092445731163025 +illusion_1.5L,ppo,129,51.6,velocity,center_uy,0.569085955619812 +illusion_1.5L,ppo,129,51.6,velocity,lower_ux,1.2027676105499268 +illusion_1.5L,ppo,129,51.6,velocity,lower_uy,0.4617380201816559 +illusion_1.5L,ppo,130,52.0,velocity,upper_ux,0.5973172187805176 +illusion_1.5L,ppo,130,52.0,velocity,upper_uy,-0.05978311225771904 +illusion_1.5L,ppo,130,52.0,velocity,center_ux,1.0309226512908936 +illusion_1.5L,ppo,130,52.0,velocity,center_uy,0.43517184257507324 +illusion_1.5L,ppo,130,52.0,velocity,lower_ux,1.255621314048767 +illusion_1.5L,ppo,130,52.0,velocity,lower_uy,0.4644180238246918 +illusion_1.5L,ppo,131,52.4,velocity,upper_ux,0.6293760538101196 +illusion_1.5L,ppo,131,52.4,velocity,upper_uy,-0.2088461071252823 +illusion_1.5L,ppo,131,52.4,velocity,center_ux,0.9087425470352173 +illusion_1.5L,ppo,131,52.4,velocity,center_uy,0.17151902616024017 +illusion_1.5L,ppo,131,52.4,velocity,lower_ux,1.295233964920044 +illusion_1.5L,ppo,131,52.4,velocity,lower_uy,0.4608811140060425 +illusion_1.5L,ppo,132,52.8,velocity,upper_ux,0.7016252875328064 +illusion_1.5L,ppo,132,52.8,velocity,upper_uy,-0.2662956714630127 +illusion_1.5L,ppo,132,52.8,velocity,center_ux,0.7815492749214172 +illusion_1.5L,ppo,132,52.8,velocity,center_uy,-0.1558649092912674 +illusion_1.5L,ppo,132,52.8,velocity,lower_ux,1.3095965385437012 +illusion_1.5L,ppo,132,52.8,velocity,lower_uy,0.43507298827171326 +illusion_1.5L,ppo,133,53.2,velocity,upper_ux,0.7675198912620544 +illusion_1.5L,ppo,133,53.2,velocity,upper_uy,-0.2910201847553253 +illusion_1.5L,ppo,133,53.2,velocity,center_ux,0.7032920122146606 +illusion_1.5L,ppo,133,53.2,velocity,center_uy,-0.4040236175060272 +illusion_1.5L,ppo,133,53.2,velocity,lower_ux,1.2248800992965698 +illusion_1.5L,ppo,133,53.2,velocity,lower_uy,0.31982895731925964 +illusion_1.5L,ppo,134,53.6,velocity,upper_ux,0.8305358290672302 +illusion_1.5L,ppo,134,53.6,velocity,upper_uy,-0.319390207529068 +illusion_1.5L,ppo,134,53.6,velocity,center_ux,0.7277194857597351 +illusion_1.5L,ppo,134,53.6,velocity,center_uy,-0.48454543948173523 +illusion_1.5L,ppo,134,53.6,velocity,lower_ux,1.029040813446045 +illusion_1.5L,ppo,134,53.6,velocity,lower_uy,0.040009211748838425 +illusion_1.5L,ppo,135,54.0,velocity,upper_ux,0.8732807040214539 +illusion_1.5L,ppo,135,54.0,velocity,upper_uy,-0.3543555438518524 +illusion_1.5L,ppo,135,54.0,velocity,center_ux,0.7677893042564392 +illusion_1.5L,ppo,135,54.0,velocity,center_uy,-0.5012581944465637 +illusion_1.5L,ppo,135,54.0,velocity,lower_ux,0.7842605710029602 +illusion_1.5L,ppo,135,54.0,velocity,lower_uy,-0.3158247172832489 +illusion_1.5L,ppo,136,54.4,velocity,upper_ux,0.9303053021430969 +illusion_1.5L,ppo,136,54.4,velocity,upper_uy,-0.3862680196762085 +illusion_1.5L,ppo,136,54.4,velocity,center_ux,0.8144609928131104 +illusion_1.5L,ppo,136,54.4,velocity,center_uy,-0.5297624468803406 +illusion_1.5L,ppo,136,54.4,velocity,lower_ux,0.6696215271949768 +illusion_1.5L,ppo,136,54.4,velocity,lower_uy,-0.5405809283256531 +illusion_1.5L,ppo,137,54.8,velocity,upper_ux,0.9733269214630127 +illusion_1.5L,ppo,137,54.8,velocity,upper_uy,-0.417549729347229 +illusion_1.5L,ppo,137,54.8,velocity,center_ux,0.8395574688911438 +illusion_1.5L,ppo,137,54.8,velocity,center_uy,-0.5690951347351074 +illusion_1.5L,ppo,137,54.8,velocity,lower_ux,0.6804105639457703 +illusion_1.5L,ppo,137,54.8,velocity,lower_uy,-0.578369140625 +illusion_1.5L,ppo,138,55.2,velocity,upper_ux,1.0307434797286987 +illusion_1.5L,ppo,138,55.2,velocity,upper_uy,-0.44518956542015076 +illusion_1.5L,ppo,138,55.2,velocity,center_ux,0.8757182955741882 +illusion_1.5L,ppo,138,55.2,velocity,center_uy,-0.6203989386558533 +illusion_1.5L,ppo,138,55.2,velocity,lower_ux,0.7235761284828186 +illusion_1.5L,ppo,138,55.2,velocity,lower_uy,-0.563345730304718 +illusion_1.5L,ppo,139,55.6,velocity,upper_ux,1.0750912427902222 +illusion_1.5L,ppo,139,55.6,velocity,upper_uy,-0.47021952271461487 +illusion_1.5L,ppo,139,55.6,velocity,center_ux,0.9040034413337708 +illusion_1.5L,ppo,139,55.6,velocity,center_uy,-0.6839370727539062 +illusion_1.5L,ppo,139,55.6,velocity,lower_ux,0.7247635126113892 +illusion_1.5L,ppo,139,55.6,velocity,lower_uy,-0.5413188338279724 +illusion_1.5L,ppo,140,56.0,velocity,upper_ux,1.130813479423523 +illusion_1.5L,ppo,140,56.0,velocity,upper_uy,-0.4971776604652405 +illusion_1.5L,ppo,140,56.0,velocity,center_ux,0.9619407653808594 +illusion_1.5L,ppo,140,56.0,velocity,center_uy,-0.7412329316139221 +illusion_1.5L,ppo,140,56.0,velocity,lower_ux,0.7038928270339966 +illusion_1.5L,ppo,140,56.0,velocity,lower_uy,-0.5148005485534668 +illusion_1.5L,ppo,141,56.4,velocity,upper_ux,1.1751610040664673 +illusion_1.5L,ppo,141,56.4,velocity,upper_uy,-0.5320063233375549 +illusion_1.5L,ppo,141,56.4,velocity,center_ux,1.0119357109069824 +illusion_1.5L,ppo,141,56.4,velocity,center_uy,-0.7542504668235779 +illusion_1.5L,ppo,141,56.4,velocity,lower_ux,0.6333242654800415 +illusion_1.5L,ppo,141,56.4,velocity,lower_uy,-0.4661712348461151 +illusion_1.5L,ppo,142,56.8,velocity,upper_ux,1.2394185066223145 +illusion_1.5L,ppo,142,56.8,velocity,upper_uy,-0.5863959789276123 +illusion_1.5L,ppo,142,56.8,velocity,center_ux,1.034663200378418 +illusion_1.5L,ppo,142,56.8,velocity,center_uy,-0.7042151093482971 +illusion_1.5L,ppo,142,56.8,velocity,lower_ux,0.5563803315162659 +illusion_1.5L,ppo,142,56.8,velocity,lower_uy,-0.36747920513153076 +illusion_1.5L,ppo,143,57.2,velocity,upper_ux,1.3168854713439941 +illusion_1.5L,ppo,143,57.2,velocity,upper_uy,-0.6461024284362793 +illusion_1.5L,ppo,143,57.2,velocity,center_ux,0.9858975410461426 +illusion_1.5L,ppo,143,57.2,velocity,center_uy,-0.5519112944602966 +illusion_1.5L,ppo,143,57.2,velocity,lower_ux,0.4919034242630005 +illusion_1.5L,ppo,143,57.2,velocity,lower_uy,-0.19954872131347656 +illusion_1.5L,ppo,144,57.6,velocity,upper_ux,1.3837133646011353 +illusion_1.5L,ppo,144,57.6,velocity,upper_uy,-0.5430628061294556 +illusion_1.5L,ppo,144,57.6,velocity,center_ux,0.8946577310562134 +illusion_1.5L,ppo,144,57.6,velocity,center_uy,-0.25612011551856995 +illusion_1.5L,ppo,144,57.6,velocity,lower_ux,0.478707879781723 +illusion_1.5L,ppo,144,57.6,velocity,lower_uy,0.00994909554719925 +illusion_1.5L,ppo,145,58.0,velocity,upper_ux,1.3383958339691162 +illusion_1.5L,ppo,145,58.0,velocity,upper_uy,-0.15549717843532562 +illusion_1.5L,ppo,145,58.0,velocity,center_ux,0.8025169968605042 +illusion_1.5L,ppo,145,58.0,velocity,center_uy,0.14925570785999298 +illusion_1.5L,ppo,145,58.0,velocity,lower_ux,0.5076717138290405 +illusion_1.5L,ppo,145,58.0,velocity,lower_uy,0.2130366712808609 +illusion_1.5L,ppo,146,58.4,velocity,upper_ux,1.2171441316604614 +illusion_1.5L,ppo,146,58.4,velocity,upper_uy,0.19890429079532623 +illusion_1.5L,ppo,146,58.4,velocity,center_ux,0.7632685899734497 +illusion_1.5L,ppo,146,58.4,velocity,center_uy,0.5173637270927429 +illusion_1.5L,ppo,146,58.4,velocity,lower_ux,0.579088568687439 +illusion_1.5L,ppo,146,58.4,velocity,lower_uy,0.3401533365249634 +illusion_1.5L,ppo,147,58.8,velocity,upper_ux,1.081708312034607 +illusion_1.5L,ppo,147,58.8,velocity,upper_uy,0.48956745862960815 +illusion_1.5L,ppo,147,58.8,velocity,center_ux,0.799376904964447 +illusion_1.5L,ppo,147,58.8,velocity,center_uy,0.688448965549469 +illusion_1.5L,ppo,147,58.8,velocity,lower_ux,0.6836230754852295 +illusion_1.5L,ppo,147,58.8,velocity,lower_uy,0.3685087263584137 +illusion_1.5L,ppo,148,59.2,velocity,upper_ux,1.0012996196746826 +illusion_1.5L,ppo,148,59.2,velocity,upper_uy,0.5767756104469299 +illusion_1.5L,ppo,148,59.2,velocity,center_ux,0.8545019030570984 +illusion_1.5L,ppo,148,59.2,velocity,center_uy,0.6597055196762085 +illusion_1.5L,ppo,148,59.2,velocity,lower_ux,0.7668623924255371 +illusion_1.5L,ppo,148,59.2,velocity,lower_uy,0.38407203555107117 +illusion_1.5L,ppo,149,59.6,velocity,upper_ux,0.996685802936554 +illusion_1.5L,ppo,149,59.6,velocity,upper_uy,0.5044771432876587 +illusion_1.5L,ppo,149,59.6,velocity,center_ux,0.9015156030654907 +illusion_1.5L,ppo,149,59.6,velocity,center_uy,0.6065959334373474 +illusion_1.5L,ppo,149,59.6,velocity,lower_ux,0.8387426137924194 +illusion_1.5L,ppo,149,59.6,velocity,lower_uy,0.40774649381637573 +illusion_1.5L,ppo,150,60.0,velocity,upper_ux,0.9786660671234131 +illusion_1.5L,ppo,150,60.0,velocity,upper_uy,0.44854485988616943 +illusion_1.5L,ppo,150,60.0,velocity,center_ux,0.9249055981636047 +illusion_1.5L,ppo,150,60.0,velocity,center_uy,0.5833101868629456 +illusion_1.5L,ppo,150,60.0,velocity,lower_ux,0.8941430449485779 +illusion_1.5L,ppo,150,60.0,velocity,lower_uy,0.4324975311756134 +illusion_1.5L,ppo,151,60.4,velocity,upper_ux,0.9443749189376831 +illusion_1.5L,ppo,151,60.4,velocity,upper_uy,0.4219304025173187 +illusion_1.5L,ppo,151,60.4,velocity,center_ux,0.941037654876709 +illusion_1.5L,ppo,151,60.4,velocity,center_uy,0.5716201663017273 +illusion_1.5L,ppo,151,60.4,velocity,lower_ux,0.9489005208015442 +illusion_1.5L,ppo,151,60.4,velocity,lower_uy,0.45614802837371826 +illusion_1.5L,ppo,152,60.8,velocity,upper_ux,0.8948109149932861 +illusion_1.5L,ppo,152,60.8,velocity,upper_uy,0.39906156063079834 +illusion_1.5L,ppo,152,60.8,velocity,center_ux,0.9350264072418213 +illusion_1.5L,ppo,152,60.8,velocity,center_uy,0.5736426711082458 +illusion_1.5L,ppo,152,60.8,velocity,lower_ux,0.9899297952651978 +illusion_1.5L,ppo,152,60.8,velocity,lower_uy,0.4835852086544037 +illusion_1.5L,ppo,153,61.2,velocity,upper_ux,0.8566676378250122 +illusion_1.5L,ppo,153,61.2,velocity,upper_uy,0.3634340763092041 +illusion_1.5L,ppo,153,61.2,velocity,center_ux,0.925494909286499 +illusion_1.5L,ppo,153,61.2,velocity,center_uy,0.5909043550491333 +illusion_1.5L,ppo,153,61.2,velocity,lower_ux,1.0368092060089111 +illusion_1.5L,ppo,153,61.2,velocity,lower_uy,0.5144246816635132 +illusion_1.5L,ppo,154,61.6,velocity,upper_ux,0.8067175149917603 +illusion_1.5L,ppo,154,61.6,velocity,upper_uy,0.30845746397972107 +illusion_1.5L,ppo,154,61.6,velocity,center_ux,0.9003306031227112 +illusion_1.5L,ppo,154,61.6,velocity,center_uy,0.6197386384010315 +illusion_1.5L,ppo,154,61.6,velocity,lower_ux,1.0767208337783813 +illusion_1.5L,ppo,154,61.6,velocity,lower_uy,0.5526155233383179 +illusion_1.5L,ppo,155,62.0,velocity,upper_ux,0.7456623315811157 +illusion_1.5L,ppo,155,62.0,velocity,upper_uy,0.2301526814699173 +illusion_1.5L,ppo,155,62.0,velocity,center_ux,0.8673282861709595 +illusion_1.5L,ppo,155,62.0,velocity,center_uy,0.6441507935523987 +illusion_1.5L,ppo,155,62.0,velocity,lower_ux,1.120711088180542 +illusion_1.5L,ppo,155,62.0,velocity,lower_uy,0.6032982468605042 +illusion_1.5L,ppo,156,62.4,velocity,upper_ux,0.6704666614532471 +illusion_1.5L,ppo,156,62.4,velocity,upper_uy,0.12194851785898209 +illusion_1.5L,ppo,156,62.4,velocity,center_ux,0.8057735562324524 +illusion_1.5L,ppo,156,62.4,velocity,center_uy,0.6335631608963013 +illusion_1.5L,ppo,156,62.4,velocity,lower_ux,1.1646275520324707 +illusion_1.5L,ppo,156,62.4,velocity,lower_uy,0.6763398051261902 +illusion_1.5L,ppo,157,62.8,velocity,upper_ux,0.6091424822807312 +illusion_1.5L,ppo,157,62.8,velocity,upper_uy,0.0007167521398514509 +illusion_1.5L,ppo,157,62.8,velocity,center_ux,0.706917941570282 +illusion_1.5L,ppo,157,62.8,velocity,center_uy,0.538628876209259 +illusion_1.5L,ppo,157,62.8,velocity,lower_ux,1.210477590560913 +illusion_1.5L,ppo,157,62.8,velocity,lower_uy,0.7390061020851135 +illusion_1.5L,ppo,158,63.2,velocity,upper_ux,0.6004778146743774 +illusion_1.5L,ppo,158,63.2,velocity,upper_uy,-0.1042196974158287 +illusion_1.5L,ppo,158,63.2,velocity,center_ux,0.5861890316009521 +illusion_1.5L,ppo,158,63.2,velocity,center_uy,0.3096364736557007 +illusion_1.5L,ppo,158,63.2,velocity,lower_ux,1.2247234582901 +illusion_1.5L,ppo,158,63.2,velocity,lower_uy,0.5747188329696655 +illusion_1.5L,ppo,159,63.6,velocity,upper_ux,0.6493017673492432 +illusion_1.5L,ppo,159,63.6,velocity,upper_uy,-0.1628625988960266 +illusion_1.5L,ppo,159,63.6,velocity,center_ux,0.48140227794647217 +illusion_1.5L,ppo,159,63.6,velocity,center_uy,-0.03613351285457611 +illusion_1.5L,ppo,159,63.6,velocity,lower_ux,1.1960887908935547 +illusion_1.5L,ppo,159,63.6,velocity,lower_uy,0.252368688583374 +illusion_1.5L,ppo,160,64.0,velocity,upper_ux,0.7182978987693787 +illusion_1.5L,ppo,160,64.0,velocity,upper_uy,-0.20845094323158264 +illusion_1.5L,ppo,160,64.0,velocity,center_ux,0.44058844447135925 +illusion_1.5L,ppo,160,64.0,velocity,center_uy,-0.40798714756965637 +illusion_1.5L,ppo,160,64.0,velocity,lower_ux,1.121865153312683 +illusion_1.5L,ppo,160,64.0,velocity,lower_uy,-0.09564339369535446 +illusion_1.5L,ppo,161,64.4,velocity,upper_ux,0.7719504833221436 +illusion_1.5L,ppo,161,64.4,velocity,upper_uy,-0.26703721284866333 +illusion_1.5L,ppo,161,64.4,velocity,center_ux,0.48371466994285583 +illusion_1.5L,ppo,161,64.4,velocity,center_uy,-0.6638229489326477 +illusion_1.5L,ppo,161,64.4,velocity,lower_ux,1.001758337020874 +illusion_1.5L,ppo,161,64.4,velocity,lower_uy,-0.5305168628692627 +illusion_1.5L,ppo,162,64.8,velocity,upper_ux,0.8227919936180115 +illusion_1.5L,ppo,162,64.8,velocity,upper_uy,-0.33558815717697144 +illusion_1.5L,ppo,162,64.8,velocity,center_ux,0.5970233678817749 +illusion_1.5L,ppo,162,64.8,velocity,center_uy,-0.7205259799957275 +illusion_1.5L,ppo,162,64.8,velocity,lower_ux,0.912061333656311 +illusion_1.5L,ppo,162,64.8,velocity,lower_uy,-0.8333505988121033 +illusion_1.5L,ppo,163,65.2,velocity,upper_ux,0.8694826364517212 +illusion_1.5L,ppo,163,65.2,velocity,upper_uy,-0.3971012532711029 +illusion_1.5L,ppo,163,65.2,velocity,center_ux,0.6971694827079773 +illusion_1.5L,ppo,163,65.2,velocity,center_uy,-0.7032743692398071 +illusion_1.5L,ppo,163,65.2,velocity,lower_ux,0.8866950869560242 +illusion_1.5L,ppo,163,65.2,velocity,lower_uy,-0.829155445098877 +illusion_1.5L,ppo,164,65.6,velocity,upper_ux,0.9225627779960632 +illusion_1.5L,ppo,164,65.6,velocity,upper_uy,-0.4605522155761719 +illusion_1.5L,ppo,164,65.6,velocity,center_ux,0.7630748748779297 +illusion_1.5L,ppo,164,65.6,velocity,center_uy,-0.7121254205703735 +illusion_1.5L,ppo,164,65.6,velocity,lower_ux,0.8740140795707703 +illusion_1.5L,ppo,164,65.6,velocity,lower_uy,-0.7079197764396667 +illusion_1.5L,ppo,165,66.0,velocity,upper_ux,0.978985071182251 +illusion_1.5L,ppo,165,66.0,velocity,upper_uy,-0.5277557969093323 +illusion_1.5L,ppo,165,66.0,velocity,center_ux,0.8004422783851624 +illusion_1.5L,ppo,165,66.0,velocity,center_uy,-0.7256689667701721 +illusion_1.5L,ppo,165,66.0,velocity,lower_ux,0.8328927755355835 +illusion_1.5L,ppo,165,66.0,velocity,lower_uy,-0.6421181559562683 +illusion_1.5L,ppo,166,66.4,velocity,upper_ux,1.0417828559875488 +illusion_1.5L,ppo,166,66.4,velocity,upper_uy,-0.611224353313446 +illusion_1.5L,ppo,166,66.4,velocity,center_ux,0.7992417812347412 +illusion_1.5L,ppo,166,66.4,velocity,center_uy,-0.7412331104278564 +illusion_1.5L,ppo,166,66.4,velocity,lower_ux,0.7723106145858765 +illusion_1.5L,ppo,166,66.4,velocity,lower_uy,-0.5955135822296143 +illusion_1.5L,ppo,167,66.8,velocity,upper_ux,1.13609778881073 +illusion_1.5L,ppo,167,66.8,velocity,upper_uy,-0.7123115658760071 +illusion_1.5L,ppo,167,66.8,velocity,center_ux,0.7598291635513306 +illusion_1.5L,ppo,167,66.8,velocity,center_uy,-0.7673864960670471 +illusion_1.5L,ppo,167,66.8,velocity,lower_ux,0.7256783246994019 +illusion_1.5L,ppo,167,66.8,velocity,lower_uy,-0.5317944288253784 +illusion_1.5L,ppo,168,67.2,velocity,upper_ux,1.2499363422393799 +illusion_1.5L,ppo,168,67.2,velocity,upper_uy,-0.7405117154121399 +illusion_1.5L,ppo,168,67.2,velocity,center_ux,0.6559134721755981 +illusion_1.5L,ppo,168,67.2,velocity,center_uy,-0.7683032751083374 +illusion_1.5L,ppo,168,67.2,velocity,lower_ux,0.6681444644927979 +illusion_1.5L,ppo,168,67.2,velocity,lower_uy,-0.43400341272354126 +illusion_1.5L,ppo,169,67.6,velocity,upper_ux,1.3386262655258179 +illusion_1.5L,ppo,169,67.6,velocity,upper_uy,-0.532197892665863 +illusion_1.5L,ppo,169,67.6,velocity,center_ux,0.5582995414733887 +illusion_1.5L,ppo,169,67.6,velocity,center_uy,-0.6180137395858765 +illusion_1.5L,ppo,169,67.6,velocity,lower_ux,0.6203434467315674 +illusion_1.5L,ppo,169,67.6,velocity,lower_uy,-0.2982517182826996 +illusion_1.5L,ppo,170,68.0,velocity,upper_ux,1.3413084745407104 +illusion_1.5L,ppo,170,68.0,velocity,upper_uy,-0.21253076195716858 +illusion_1.5L,ppo,170,68.0,velocity,center_ux,0.5259600281715393 +illusion_1.5L,ppo,170,68.0,velocity,center_uy,-0.2688238024711609 +illusion_1.5L,ppo,170,68.0,velocity,lower_ux,0.5607432126998901 +illusion_1.5L,ppo,170,68.0,velocity,lower_uy,-0.11428679525852203 +illusion_1.5L,ppo,171,68.4,velocity,upper_ux,1.3394948244094849 +illusion_1.5L,ppo,171,68.4,velocity,upper_uy,0.14488835632801056 +illusion_1.5L,ppo,171,68.4,velocity,center_ux,0.5748138427734375 +illusion_1.5L,ppo,171,68.4,velocity,center_uy,0.12216435372829437 +illusion_1.5L,ppo,171,68.4,velocity,lower_ux,0.5513395667076111 +illusion_1.5L,ppo,171,68.4,velocity,lower_uy,0.08890973031520844 +illusion_1.5L,ppo,172,68.8,velocity,upper_ux,1.2939190864562988 +illusion_1.5L,ppo,172,68.8,velocity,upper_uy,0.4619184732437134 +illusion_1.5L,ppo,172,68.8,velocity,center_ux,0.6283180713653564 +illusion_1.5L,ppo,172,68.8,velocity,center_uy,0.484303742647171 +illusion_1.5L,ppo,172,68.8,velocity,lower_ux,0.5762593746185303 +illusion_1.5L,ppo,172,68.8,velocity,lower_uy,0.25370272994041443 +illusion_1.5L,ppo,173,69.2,velocity,upper_ux,1.2259044647216797 +illusion_1.5L,ppo,173,69.2,velocity,upper_uy,0.6150367856025696 +illusion_1.5L,ppo,173,69.2,velocity,center_ux,0.7125909328460693 +illusion_1.5L,ppo,173,69.2,velocity,center_uy,0.7415531873703003 +illusion_1.5L,ppo,173,69.2,velocity,lower_ux,0.665789783000946 +illusion_1.5L,ppo,173,69.2,velocity,lower_uy,0.33726462721824646 +illusion_1.5L,ppo,174,69.6,velocity,upper_ux,1.1278812885284424 +illusion_1.5L,ppo,174,69.6,velocity,upper_uy,0.6126584410667419 +illusion_1.5L,ppo,174,69.6,velocity,center_ux,0.7734476327896118 +illusion_1.5L,ppo,174,69.6,velocity,center_uy,0.7898616194725037 +illusion_1.5L,ppo,174,69.6,velocity,lower_ux,0.7475679516792297 +illusion_1.5L,ppo,174,69.6,velocity,lower_uy,0.3857135474681854 +illusion_1.5L,ppo,175,70.0,velocity,upper_ux,1.0583679676055908 +illusion_1.5L,ppo,175,70.0,velocity,upper_uy,0.5825292468070984 +illusion_1.5L,ppo,175,70.0,velocity,center_ux,0.8305942416191101 +illusion_1.5L,ppo,175,70.0,velocity,center_uy,0.7448117136955261 +illusion_1.5L,ppo,175,70.0,velocity,lower_ux,0.8414733409881592 +illusion_1.5L,ppo,175,70.0,velocity,lower_uy,0.4354764521121979 +illusion_1.5L,ppo,176,70.4,velocity,upper_ux,0.9928239583969116 +illusion_1.5L,ppo,176,70.4,velocity,upper_uy,0.5529688000679016 +illusion_1.5L,ppo,176,70.4,velocity,center_ux,0.8466150760650635 +illusion_1.5L,ppo,176,70.4,velocity,center_uy,0.7251392602920532 +illusion_1.5L,ppo,176,70.4,velocity,lower_ux,0.9197533130645752 +illusion_1.5L,ppo,176,70.4,velocity,lower_uy,0.4831325113773346 +illusion_1.5L,ppo,177,70.8,velocity,upper_ux,0.943443238735199 +illusion_1.5L,ppo,177,70.8,velocity,upper_uy,0.5184206962585449 +illusion_1.5L,ppo,177,70.8,velocity,center_ux,0.8478171825408936 +illusion_1.5L,ppo,177,70.8,velocity,center_uy,0.7428441047668457 +illusion_1.5L,ppo,177,70.8,velocity,lower_ux,1.0131008625030518 +illusion_1.5L,ppo,177,70.8,velocity,lower_uy,0.5258991718292236 +illusion_1.5L,ppo,178,71.2,velocity,upper_ux,0.8815228939056396 +illusion_1.5L,ppo,178,71.2,velocity,upper_uy,0.48075535893440247 +illusion_1.5L,ppo,178,71.2,velocity,center_ux,0.8180176615715027 +illusion_1.5L,ppo,178,71.2,velocity,center_uy,0.8001143932342529 +illusion_1.5L,ppo,178,71.2,velocity,lower_ux,1.1096354722976685 +illusion_1.5L,ppo,178,71.2,velocity,lower_uy,0.5596899390220642 +illusion_1.5L,ppo,179,71.6,velocity,upper_ux,0.8117063641548157 +illusion_1.5L,ppo,179,71.6,velocity,upper_uy,0.43099597096443176 +illusion_1.5L,ppo,179,71.6,velocity,center_ux,0.778238832950592 +illusion_1.5L,ppo,179,71.6,velocity,center_uy,0.8522492051124573 +illusion_1.5L,ppo,179,71.6,velocity,lower_ux,1.2173320055007935 +illusion_1.5L,ppo,179,71.6,velocity,lower_uy,0.5715795755386353 +illusion_1.5L,ppo,180,72.0,velocity,upper_ux,0.7365231513977051 +illusion_1.5L,ppo,180,72.0,velocity,upper_uy,0.3476178050041199 +illusion_1.5L,ppo,180,72.0,velocity,center_ux,0.7468780279159546 +illusion_1.5L,ppo,180,72.0,velocity,center_uy,0.7712655067443848 +illusion_1.5L,ppo,180,72.0,velocity,lower_ux,1.3252613544464111 +illusion_1.5L,ppo,180,72.0,velocity,lower_uy,0.558957576751709 +illusion_1.5L,ppo,181,72.4,velocity,upper_ux,0.6605076789855957 +illusion_1.5L,ppo,181,72.4,velocity,upper_uy,0.20947784185409546 +illusion_1.5L,ppo,181,72.4,velocity,center_ux,0.7134919166564941 +illusion_1.5L,ppo,181,72.4,velocity,center_uy,0.4733263850212097 +illusion_1.5L,ppo,181,72.4,velocity,lower_ux,1.405078411102295 +illusion_1.5L,ppo,181,72.4,velocity,lower_uy,0.4864731729030609 +illusion_1.5L,ppo,182,72.8,velocity,upper_ux,0.6121857166290283 +illusion_1.5L,ppo,182,72.8,velocity,upper_uy,0.013934108428657055 +illusion_1.5L,ppo,182,72.8,velocity,center_ux,0.6988428235054016 +illusion_1.5L,ppo,182,72.8,velocity,center_uy,0.012309975922107697 +illusion_1.5L,ppo,182,72.8,velocity,lower_ux,1.4022282361984253 +illusion_1.5L,ppo,182,72.8,velocity,lower_uy,0.2701314091682434 +illusion_1.5L,ppo,183,73.2,velocity,upper_ux,0.600714921951294 +illusion_1.5L,ppo,183,73.2,velocity,upper_uy,-0.19209428131580353 +illusion_1.5L,ppo,183,73.2,velocity,center_ux,0.7012729048728943 +illusion_1.5L,ppo,183,73.2,velocity,center_uy,-0.4112289547920227 +illusion_1.5L,ppo,183,73.2,velocity,lower_ux,1.295075535774231 +illusion_1.5L,ppo,183,73.2,velocity,lower_uy,-0.06606540083885193 +illusion_1.5L,ppo,184,73.6,velocity,upper_ux,0.6713506579399109 +illusion_1.5L,ppo,184,73.6,velocity,upper_uy,-0.3210676312446594 +illusion_1.5L,ppo,184,73.6,velocity,center_ux,0.7450138926506042 +illusion_1.5L,ppo,184,73.6,velocity,center_uy,-0.6599987149238586 +illusion_1.5L,ppo,184,73.6,velocity,lower_ux,1.1722408533096313 +illusion_1.5L,ppo,184,73.6,velocity,lower_uy,-0.3585289418697357 +illusion_1.5L,ppo,185,74.0,velocity,upper_ux,0.7617769837379456 +illusion_1.5L,ppo,185,74.0,velocity,upper_uy,-0.3855244815349579 +illusion_1.5L,ppo,185,74.0,velocity,center_ux,0.785426914691925 +illusion_1.5L,ppo,185,74.0,velocity,center_uy,-0.7661377787590027 +illusion_1.5L,ppo,185,74.0,velocity,lower_ux,1.0514698028564453 +illusion_1.5L,ppo,185,74.0,velocity,lower_uy,-0.5018945336341858 +illusion_1.5L,ppo,186,74.4,velocity,upper_ux,0.8628732562065125 +illusion_1.5L,ppo,186,74.4,velocity,upper_uy,-0.43492844700813293 +illusion_1.5L,ppo,186,74.4,velocity,center_ux,0.8350467681884766 +illusion_1.5L,ppo,186,74.4,velocity,center_uy,-0.7633040547370911 +illusion_1.5L,ppo,186,74.4,velocity,lower_ux,0.9714396595954895 +illusion_1.5L,ppo,186,74.4,velocity,lower_uy,-0.5357182621955872 +illusion_1.5L,ppo,187,74.8,velocity,upper_ux,0.9484274387359619 +illusion_1.5L,ppo,187,74.8,velocity,upper_uy,-0.4725272059440613 +illusion_1.5L,ppo,187,74.8,velocity,center_ux,0.8632035255432129 +illusion_1.5L,ppo,187,74.8,velocity,center_uy,-0.7699243426322937 +illusion_1.5L,ppo,187,74.8,velocity,lower_ux,0.8989415168762207 +illusion_1.5L,ppo,187,74.8,velocity,lower_uy,-0.5392298698425293 +illusion_1.5L,ppo,188,75.2,velocity,upper_ux,1.0360047817230225 +illusion_1.5L,ppo,188,75.2,velocity,upper_uy,-0.49737831950187683 +illusion_1.5L,ppo,188,75.2,velocity,center_ux,0.8971408009529114 +illusion_1.5L,ppo,188,75.2,velocity,center_uy,-0.818831205368042 +illusion_1.5L,ppo,188,75.2,velocity,lower_ux,0.8340810537338257 +illusion_1.5L,ppo,188,75.2,velocity,lower_uy,-0.5350925922393799 +illusion_1.5L,ppo,189,75.6,velocity,upper_ux,1.113385796546936 +illusion_1.5L,ppo,189,75.6,velocity,upper_uy,-0.51278156042099 +illusion_1.5L,ppo,189,75.6,velocity,center_ux,0.9493438601493835 +illusion_1.5L,ppo,189,75.6,velocity,center_uy,-0.8730744123458862 +illusion_1.5L,ppo,189,75.6,velocity,lower_ux,0.7495212554931641 +illusion_1.5L,ppo,189,75.6,velocity,lower_uy,-0.5213572978973389 +illusion_1.5L,ppo,190,76.0,velocity,upper_ux,1.1827391386032104 +illusion_1.5L,ppo,190,76.0,velocity,upper_uy,-0.5251492857933044 +illusion_1.5L,ppo,190,76.0,velocity,center_ux,1.0184297561645508 +illusion_1.5L,ppo,190,76.0,velocity,center_uy,-0.864744246006012 +illusion_1.5L,ppo,190,76.0,velocity,lower_ux,0.639653742313385 +illusion_1.5L,ppo,190,76.0,velocity,lower_uy,-0.48767730593681335 +illusion_1.5L,ppo,191,76.4,velocity,upper_ux,1.2522560358047485 +illusion_1.5L,ppo,191,76.4,velocity,upper_uy,-0.5429604053497314 +illusion_1.5L,ppo,191,76.4,velocity,center_ux,1.0582952499389648 +illusion_1.5L,ppo,191,76.4,velocity,center_uy,-0.7692914605140686 +illusion_1.5L,ppo,191,76.4,velocity,lower_ux,0.5251103043556213 +illusion_1.5L,ppo,191,76.4,velocity,lower_uy,-0.39313805103302 +illusion_1.5L,ppo,192,76.8,velocity,upper_ux,1.3063163757324219 +illusion_1.5L,ppo,192,76.8,velocity,upper_uy,-0.5456414818763733 +illusion_1.5L,ppo,192,76.8,velocity,center_ux,1.039617657661438 +illusion_1.5L,ppo,192,76.8,velocity,center_uy,-0.5250757336616516 +illusion_1.5L,ppo,192,76.8,velocity,lower_ux,0.4461759626865387 +illusion_1.5L,ppo,192,76.8,velocity,lower_uy,-0.21974892914295197 +illusion_1.5L,ppo,193,77.2,velocity,upper_ux,1.2936608791351318 +illusion_1.5L,ppo,193,77.2,velocity,upper_uy,-0.399824857711792 +illusion_1.5L,ppo,193,77.2,velocity,center_ux,0.9912567138671875 +illusion_1.5L,ppo,193,77.2,velocity,center_uy,-0.12589597702026367 +illusion_1.5L,ppo,193,77.2,velocity,lower_ux,0.44913116097450256 +illusion_1.5L,ppo,193,77.2,velocity,lower_uy,0.0002407422725809738 +illusion_1.5L,ppo,194,77.6,velocity,upper_ux,1.1804054975509644 +illusion_1.5L,ppo,194,77.6,velocity,upper_uy,0.007189031224697828 +illusion_1.5L,ppo,194,77.6,velocity,center_ux,0.929861843585968 +illusion_1.5L,ppo,194,77.6,velocity,center_uy,0.30589649081230164 +illusion_1.5L,ppo,194,77.6,velocity,lower_ux,0.5097915530204773 +illusion_1.5L,ppo,194,77.6,velocity,lower_uy,0.197401225566864 +illusion_1.5L,ppo,195,78.0,velocity,upper_ux,1.1179176568984985 +illusion_1.5L,ppo,195,78.0,velocity,upper_uy,0.3536480963230133 +illusion_1.5L,ppo,195,78.0,velocity,center_ux,0.9066694378852844 +illusion_1.5L,ppo,195,78.0,velocity,center_uy,0.5963996648788452 +illusion_1.5L,ppo,195,78.0,velocity,lower_ux,0.6076307892799377 +illusion_1.5L,ppo,195,78.0,velocity,lower_uy,0.34781065583229065 +illusion_1.5L,ppo,196,78.4,velocity,upper_ux,1.073520302772522 +illusion_1.5L,ppo,196,78.4,velocity,upper_uy,0.4995323419570923 +illusion_1.5L,ppo,196,78.4,velocity,center_ux,0.9141658544540405 +illusion_1.5L,ppo,196,78.4,velocity,center_uy,0.7080563306808472 +illusion_1.5L,ppo,196,78.4,velocity,lower_ux,0.7116396427154541 +illusion_1.5L,ppo,196,78.4,velocity,lower_uy,0.41245830059051514 +illusion_1.5L,ppo,197,78.8,velocity,upper_ux,1.0358752012252808 +illusion_1.5L,ppo,197,78.8,velocity,upper_uy,0.5169885754585266 +illusion_1.5L,ppo,197,78.8,velocity,center_ux,0.9445452094078064 +illusion_1.5L,ppo,197,78.8,velocity,center_uy,0.6965188384056091 +illusion_1.5L,ppo,197,78.8,velocity,lower_ux,0.8167120218276978 +illusion_1.5L,ppo,197,78.8,velocity,lower_uy,0.4312136471271515 +illusion_1.5L,ppo,198,79.2,velocity,upper_ux,0.9891477823257446 +illusion_1.5L,ppo,198,79.2,velocity,upper_uy,0.514034628868103 +illusion_1.5L,ppo,198,79.2,velocity,center_ux,0.9726954698562622 +illusion_1.5L,ppo,198,79.2,velocity,center_uy,0.6726678609848022 +illusion_1.5L,ppo,198,79.2,velocity,lower_ux,0.8987197279930115 +illusion_1.5L,ppo,198,79.2,velocity,lower_uy,0.45006024837493896 +illusion_1.5L,ppo,199,79.6,velocity,upper_ux,0.9296793341636658 +illusion_1.5L,ppo,199,79.6,velocity,upper_uy,0.5181375741958618 +illusion_1.5L,ppo,199,79.6,velocity,center_ux,0.9986048936843872 +illusion_1.5L,ppo,199,79.6,velocity,center_uy,0.6639072895050049 +illusion_1.5L,ppo,199,79.6,velocity,lower_ux,0.9693403840065002 +illusion_1.5L,ppo,199,79.6,velocity,lower_uy,0.4723016023635864 +illusion_1.5L,ppo,0,0.0,force,front_fx,0.001924223150126636 +illusion_1.5L,ppo,0,0.0,force,front_fy,8.32844598335214e-05 +illusion_1.5L,ppo,0,0.0,force,upper_fx,0.0014512010384351015 +illusion_1.5L,ppo,0,0.0,force,upper_fy,0.0030520684085786343 +illusion_1.5L,ppo,0,0.0,force,lower_fx,0.0014567241305485368 +illusion_1.5L,ppo,0,0.0,force,lower_fy,-0.002408499363809824 +illusion_1.5L,ppo,1,0.4,force,front_fx,0.002000590320676565 +illusion_1.5L,ppo,1,0.4,force,front_fy,-2.6256537239532918e-05 +illusion_1.5L,ppo,1,0.4,force,upper_fx,0.002102138940244913 +illusion_1.5L,ppo,1,0.4,force,upper_fy,0.0021556538995355368 +illusion_1.5L,ppo,1,0.4,force,lower_fx,0.0021669878624379635 +illusion_1.5L,ppo,1,0.4,force,lower_fy,-0.001515011303126812 +illusion_1.5L,ppo,2,0.8,force,front_fx,0.0020302594639360905 +illusion_1.5L,ppo,2,0.8,force,front_fy,-0.00027335097547620535 +illusion_1.5L,ppo,2,0.8,force,upper_fx,0.00324456300586462 +illusion_1.5L,ppo,2,0.8,force,upper_fy,0.0009050874505192041 +illusion_1.5L,ppo,2,0.8,force,lower_fx,0.0022663865238428116 +illusion_1.5L,ppo,2,0.8,force,lower_fy,-0.001222805236466229 +illusion_1.5L,ppo,3,1.2,force,front_fx,0.0020529136527329683 +illusion_1.5L,ppo,3,1.2,force,front_fy,-0.0006763394339941442 +illusion_1.5L,ppo,3,1.2,force,upper_fx,0.004421691410243511 +illusion_1.5L,ppo,3,1.2,force,upper_fy,-0.000272644916549325 +illusion_1.5L,ppo,3,1.2,force,lower_fx,0.0022503086365759373 +illusion_1.5L,ppo,3,1.2,force,lower_fy,-0.0016149281291291118 +illusion_1.5L,ppo,4,1.6,force,front_fx,0.001972357975319028 +illusion_1.5L,ppo,4,1.6,force,front_fy,-0.0013727023033425212 +illusion_1.5L,ppo,4,1.6,force,upper_fx,0.004693382419645786 +illusion_1.5L,ppo,4,1.6,force,upper_fy,-0.0008753224392421544 +illusion_1.5L,ppo,4,1.6,force,lower_fx,0.0024490351788699627 +illusion_1.5L,ppo,4,1.6,force,lower_fy,-0.0021694349125027657 +illusion_1.5L,ppo,5,2.0,force,front_fx,0.0019367921631783247 +illusion_1.5L,ppo,5,2.0,force,front_fy,-0.0018346591386944056 +illusion_1.5L,ppo,5,2.0,force,upper_fx,0.0038536449428647757 +illusion_1.5L,ppo,5,2.0,force,upper_fy,-0.0008231105748564005 +illusion_1.5L,ppo,5,2.0,force,lower_fx,0.002519829897210002 +illusion_1.5L,ppo,5,2.0,force,lower_fy,-0.0021412253845483065 +illusion_1.5L,ppo,6,2.4,force,front_fx,0.0019632307812571526 +illusion_1.5L,ppo,6,2.4,force,front_fy,-0.0013657533563673496 +illusion_1.5L,ppo,6,2.4,force,upper_fx,0.00296207657083869 +illusion_1.5L,ppo,6,2.4,force,upper_fy,-0.0006120498874224722 +illusion_1.5L,ppo,6,2.4,force,lower_fx,0.0026723372284322977 +illusion_1.5L,ppo,6,2.4,force,lower_fy,-0.001866899081505835 +illusion_1.5L,ppo,7,2.8,force,front_fx,0.0019766283221542835 +illusion_1.5L,ppo,7,2.8,force,front_fy,-0.0005883805570192635 +illusion_1.5L,ppo,7,2.8,force,upper_fx,0.0024213946890085936 +illusion_1.5L,ppo,7,2.8,force,upper_fy,-0.0007059439085423946 +illusion_1.5L,ppo,7,2.8,force,lower_fx,0.0026438769418746233 +illusion_1.5L,ppo,7,2.8,force,lower_fy,-0.00197807140648365 +illusion_1.5L,ppo,8,3.2,force,front_fx,0.0018226827960461378 +illusion_1.5L,ppo,8,3.2,force,front_fy,-0.0010176129871979356 +illusion_1.5L,ppo,8,3.2,force,upper_fx,0.0023868561256676912 +illusion_1.5L,ppo,8,3.2,force,upper_fy,-0.00037145998794585466 +illusion_1.5L,ppo,8,3.2,force,lower_fx,0.002554291393607855 +illusion_1.5L,ppo,8,3.2,force,lower_fy,-0.0024691529106348753 +illusion_1.5L,ppo,9,3.6,force,front_fx,0.0018619755282998085 +illusion_1.5L,ppo,9,3.6,force,front_fy,-0.002238609828054905 +illusion_1.5L,ppo,9,3.6,force,upper_fx,0.002221125178039074 +illusion_1.5L,ppo,9,3.6,force,upper_fy,0.00022221513791009784 +illusion_1.5L,ppo,9,3.6,force,lower_fx,0.0023303390480577946 +illusion_1.5L,ppo,9,3.6,force,lower_fy,-0.002333480166271329 +illusion_1.5L,ppo,10,4.0,force,front_fx,0.0019641483668237925 +illusion_1.5L,ppo,10,4.0,force,front_fy,-0.001963868271559477 +illusion_1.5L,ppo,10,4.0,force,upper_fx,0.0023630792275071144 +illusion_1.5L,ppo,10,4.0,force,upper_fy,0.0003029056533705443 +illusion_1.5L,ppo,10,4.0,force,lower_fx,0.0028798296116292477 +illusion_1.5L,ppo,10,4.0,force,lower_fy,-0.0018186133820563555 +illusion_1.5L,ppo,11,4.4,force,front_fx,0.002448857529088855 +illusion_1.5L,ppo,11,4.4,force,front_fy,-0.00027221758500672877 +illusion_1.5L,ppo,11,4.4,force,upper_fx,0.0020049563609063625 +illusion_1.5L,ppo,11,4.4,force,upper_fy,-0.0001782396575435996 +illusion_1.5L,ppo,11,4.4,force,lower_fx,0.003040774492546916 +illusion_1.5L,ppo,11,4.4,force,lower_fy,-0.0008248316589742899 +illusion_1.5L,ppo,12,4.8,force,front_fx,0.002488433150574565 +illusion_1.5L,ppo,12,4.8,force,front_fy,0.0005254117422737181 +illusion_1.5L,ppo,12,4.8,force,upper_fx,0.001776355318725109 +illusion_1.5L,ppo,12,4.8,force,upper_fy,8.419888763455674e-05 +illusion_1.5L,ppo,12,4.8,force,lower_fx,0.0033619669266045094 +illusion_1.5L,ppo,12,4.8,force,lower_fy,0.00028164591640233994 +illusion_1.5L,ppo,13,5.2,force,front_fx,0.0018838070100173354 +illusion_1.5L,ppo,13,5.2,force,front_fy,-0.0006436859839595854 +illusion_1.5L,ppo,13,5.2,force,upper_fx,0.0024496056139469147 +illusion_1.5L,ppo,13,5.2,force,upper_fy,0.0010814678389579058 +illusion_1.5L,ppo,13,5.2,force,lower_fx,0.0037898365408182144 +illusion_1.5L,ppo,13,5.2,force,lower_fy,0.0008594001992605627 +illusion_1.5L,ppo,14,5.6,force,front_fx,0.0019715989474207163 +illusion_1.5L,ppo,14,5.6,force,front_fy,-0.0012102999025955796 +illusion_1.5L,ppo,14,5.6,force,upper_fx,0.0031326166354119778 +illusion_1.5L,ppo,14,5.6,force,upper_fy,0.0017399764619767666 +illusion_1.5L,ppo,14,5.6,force,lower_fx,0.0036835812497884035 +illusion_1.5L,ppo,14,5.6,force,lower_fy,0.0004263517330400646 +illusion_1.5L,ppo,15,6.0,force,front_fx,0.002131805056706071 +illusion_1.5L,ppo,15,6.0,force,front_fy,0.0005771671421825886 +illusion_1.5L,ppo,15,6.0,force,upper_fx,0.0028483259957283735 +illusion_1.5L,ppo,15,6.0,force,upper_fy,0.0013713143998757005 +illusion_1.5L,ppo,15,6.0,force,lower_fx,0.0030346354469656944 +illusion_1.5L,ppo,15,6.0,force,lower_fy,-0.00018845587328542024 +illusion_1.5L,ppo,16,6.4,force,front_fx,0.002462418982759118 +illusion_1.5L,ppo,16,6.4,force,front_fy,0.0020527970045804977 +illusion_1.5L,ppo,16,6.4,force,upper_fx,0.0023420534562319517 +illusion_1.5L,ppo,16,6.4,force,upper_fy,0.0014503028942272067 +illusion_1.5L,ppo,16,6.4,force,lower_fx,0.003077169880270958 +illusion_1.5L,ppo,16,6.4,force,lower_fy,0.000596981612034142 +illusion_1.5L,ppo,17,6.8,force,front_fx,0.0018117758445441723 +illusion_1.5L,ppo,17,6.8,force,front_fy,0.0009371641790494323 +illusion_1.5L,ppo,17,6.8,force,upper_fx,0.0027506446931511164 +illusion_1.5L,ppo,17,6.8,force,upper_fy,0.003238540841266513 +illusion_1.5L,ppo,17,6.8,force,lower_fx,0.0038839755579829216 +illusion_1.5L,ppo,17,6.8,force,lower_fy,0.0014178104465827346 +illusion_1.5L,ppo,18,7.2,force,front_fx,0.0020154344383627176 +illusion_1.5L,ppo,18,7.2,force,front_fy,-0.0003233806346543133 +illusion_1.5L,ppo,18,7.2,force,upper_fx,0.0037863708566874266 +illusion_1.5L,ppo,18,7.2,force,upper_fy,0.004205214325338602 +illusion_1.5L,ppo,18,7.2,force,lower_fx,0.00361755583435297 +illusion_1.5L,ppo,18,7.2,force,lower_fy,0.000936469528824091 +illusion_1.5L,ppo,19,7.6,force,front_fx,0.0020055773202329874 +illusion_1.5L,ppo,19,7.6,force,front_fy,0.0008728746906854212 +illusion_1.5L,ppo,19,7.6,force,upper_fx,0.004178707022219896 +illusion_1.5L,ppo,19,7.6,force,upper_fy,0.002138025825843215 +illusion_1.5L,ppo,19,7.6,force,lower_fx,0.0025018020533025265 +illusion_1.5L,ppo,19,7.6,force,lower_fy,5.745944145019166e-05 +illusion_1.5L,ppo,20,8.0,force,front_fx,0.0020893707405775785 +illusion_1.5L,ppo,20,8.0,force,front_fy,0.002166713820770383 +illusion_1.5L,ppo,20,8.0,force,upper_fx,0.005250304937362671 +illusion_1.5L,ppo,20,8.0,force,upper_fy,0.0015468347119167447 +illusion_1.5L,ppo,20,8.0,force,lower_fx,0.002881081076338887 +illusion_1.5L,ppo,20,8.0,force,lower_fy,-6.49121793685481e-05 +illusion_1.5L,ppo,21,8.4,force,front_fx,0.0021720232907682657 +illusion_1.5L,ppo,21,8.4,force,front_fy,0.00015653485024813563 +illusion_1.5L,ppo,21,8.4,force,upper_fx,0.0036555007100105286 +illusion_1.5L,ppo,21,8.4,force,upper_fy,0.0023872647434473038 +illusion_1.5L,ppo,21,8.4,force,lower_fx,0.0028103343211114407 +illusion_1.5L,ppo,21,8.4,force,lower_fy,0.0007339179283007979 +illusion_1.5L,ppo,22,8.8,force,front_fx,0.0032992565538734198 +illusion_1.5L,ppo,22,8.8,force,front_fy,-0.001818204764276743 +illusion_1.5L,ppo,22,8.8,force,upper_fx,0.0036115855909883976 +illusion_1.5L,ppo,22,8.8,force,upper_fy,0.0027537336573004723 +illusion_1.5L,ppo,22,8.8,force,lower_fx,0.0020100141409784555 +illusion_1.5L,ppo,22,8.8,force,lower_fy,0.0013779827859252691 +illusion_1.5L,ppo,23,9.2,force,front_fx,0.0022216865327209234 +illusion_1.5L,ppo,23,9.2,force,front_fy,-3.0284199965535663e-05 +illusion_1.5L,ppo,23,9.2,force,upper_fx,0.004313474986702204 +illusion_1.5L,ppo,23,9.2,force,upper_fy,0.0010863773059099913 +illusion_1.5L,ppo,23,9.2,force,lower_fx,0.002600054256618023 +illusion_1.5L,ppo,23,9.2,force,lower_fy,-0.0001338244619546458 +illusion_1.5L,ppo,24,9.6,force,front_fx,0.0019370517693459988 +illusion_1.5L,ppo,24,9.6,force,front_fy,0.002033960074186325 +illusion_1.5L,ppo,24,9.6,force,upper_fx,0.005669685546308756 +illusion_1.5L,ppo,24,9.6,force,upper_fy,0.0009291989845223725 +illusion_1.5L,ppo,24,9.6,force,lower_fx,0.004402563441544771 +illusion_1.5L,ppo,24,9.6,force,lower_fy,-0.001930914120748639 +illusion_1.5L,ppo,25,10.0,force,front_fx,0.0016905860975384712 +illusion_1.5L,ppo,25,10.0,force,front_fy,-0.0002921183477155864 +illusion_1.5L,ppo,25,10.0,force,upper_fx,0.0046623521484434605 +illusion_1.5L,ppo,25,10.0,force,upper_fy,0.0018753452459350228 +illusion_1.5L,ppo,25,10.0,force,lower_fx,0.003404094371944666 +illusion_1.5L,ppo,25,10.0,force,lower_fy,-0.0029049066361039877 +illusion_1.5L,ppo,26,10.4,force,front_fx,0.0031635896302759647 +illusion_1.5L,ppo,26,10.4,force,front_fy,-0.0028557844925671816 +illusion_1.5L,ppo,26,10.4,force,upper_fx,0.0029223200399428606 +illusion_1.5L,ppo,26,10.4,force,upper_fy,0.0017974853981286287 +illusion_1.5L,ppo,26,10.4,force,lower_fx,0.0020253874827176332 +illusion_1.5L,ppo,26,10.4,force,lower_fy,-0.001204390893690288 +illusion_1.5L,ppo,27,10.8,force,front_fx,0.0024231974966824055 +illusion_1.5L,ppo,27,10.8,force,front_fy,-0.0018865939928218722 +illusion_1.5L,ppo,27,10.8,force,upper_fx,0.002951959380879998 +illusion_1.5L,ppo,27,10.8,force,upper_fy,0.0007887392421253026 +illusion_1.5L,ppo,27,10.8,force,lower_fx,0.0025005408097058535 +illusion_1.5L,ppo,27,10.8,force,lower_fy,-0.0023899159859865904 +illusion_1.5L,ppo,28,11.2,force,front_fx,0.0018724738620221615 +illusion_1.5L,ppo,28,11.2,force,front_fy,-0.0002388741122558713 +illusion_1.5L,ppo,28,11.2,force,upper_fx,0.0031603085808455944 +illusion_1.5L,ppo,28,11.2,force,upper_fy,-0.00025088543770834804 +illusion_1.5L,ppo,28,11.2,force,lower_fx,0.003254164708778262 +illusion_1.5L,ppo,28,11.2,force,lower_fy,-0.004010913893580437 +illusion_1.5L,ppo,29,11.6,force,front_fx,0.0014456164790317416 +illusion_1.5L,ppo,29,11.6,force,front_fy,-0.0012636590981855989 +illusion_1.5L,ppo,29,11.6,force,upper_fx,0.0027125487104058266 +illusion_1.5L,ppo,29,11.6,force,upper_fy,0.0006880555883981287 +illusion_1.5L,ppo,29,11.6,force,lower_fx,0.0034994289744645357 +illusion_1.5L,ppo,29,11.6,force,lower_fy,-0.004260862246155739 +illusion_1.5L,ppo,30,12.0,force,front_fx,0.002585663693025708 +illusion_1.5L,ppo,30,12.0,force,front_fy,-0.003445099340751767 +illusion_1.5L,ppo,30,12.0,force,upper_fx,0.001693878322839737 +illusion_1.5L,ppo,30,12.0,force,upper_fy,0.0011924299178645015 +illusion_1.5L,ppo,30,12.0,force,lower_fx,0.0031859898008406162 +illusion_1.5L,ppo,30,12.0,force,lower_fy,-0.0022345702163875103 +illusion_1.5L,ppo,31,12.4,force,front_fx,0.0020687223877757788 +illusion_1.5L,ppo,31,12.4,force,front_fy,-0.002378669334575534 +illusion_1.5L,ppo,31,12.4,force,upper_fx,0.002540463814511895 +illusion_1.5L,ppo,31,12.4,force,upper_fy,0.0008568005287088454 +illusion_1.5L,ppo,31,12.4,force,lower_fx,0.003589024767279625 +illusion_1.5L,ppo,31,12.4,force,lower_fy,-0.0028229437302798033 +illusion_1.5L,ppo,32,12.8,force,front_fx,0.002245561685413122 +illusion_1.5L,ppo,32,12.8,force,front_fy,-0.00019130883447360247 +illusion_1.5L,ppo,32,12.8,force,upper_fx,0.0026908800937235355 +illusion_1.5L,ppo,32,12.8,force,upper_fy,-0.0006958969170227647 +illusion_1.5L,ppo,32,12.8,force,lower_fx,0.0035415026359260082 +illusion_1.5L,ppo,32,12.8,force,lower_fy,-0.004304157104343176 +illusion_1.5L,ppo,33,13.2,force,front_fx,0.0014943763380870223 +illusion_1.5L,ppo,33,13.2,force,front_fy,-0.001065180404111743 +illusion_1.5L,ppo,33,13.2,force,upper_fx,0.002873798832297325 +illusion_1.5L,ppo,33,13.2,force,upper_fy,0.0004263610753696412 +illusion_1.5L,ppo,33,13.2,force,lower_fx,0.003782611573114991 +illusion_1.5L,ppo,33,13.2,force,lower_fy,-0.004363436251878738 +illusion_1.5L,ppo,34,13.6,force,front_fx,0.002219915157184005 +illusion_1.5L,ppo,34,13.6,force,front_fy,-0.003422849578782916 +illusion_1.5L,ppo,34,13.6,force,upper_fx,0.002512436592951417 +illusion_1.5L,ppo,34,13.6,force,upper_fy,0.0013692250940948725 +illusion_1.5L,ppo,34,13.6,force,lower_fx,0.004043217748403549 +illusion_1.5L,ppo,34,13.6,force,lower_fy,-0.0018134836573153734 +illusion_1.5L,ppo,35,14.0,force,front_fx,0.0018714717589318752 +illusion_1.5L,ppo,35,14.0,force,front_fy,-0.0018208849942311645 +illusion_1.5L,ppo,35,14.0,force,upper_fx,0.0033597510773688555 +illusion_1.5L,ppo,35,14.0,force,upper_fy,0.002166729187592864 +illusion_1.5L,ppo,35,14.0,force,lower_fx,0.005537271499633789 +illusion_1.5L,ppo,35,14.0,force,lower_fy,-0.002494935179129243 +illusion_1.5L,ppo,36,14.4,force,front_fx,0.002989733824506402 +illusion_1.5L,ppo,36,14.4,force,front_fy,0.0012781108962371945 +illusion_1.5L,ppo,36,14.4,force,upper_fx,0.001937050954438746 +illusion_1.5L,ppo,36,14.4,force,upper_fy,-6.045187183190137e-05 +illusion_1.5L,ppo,36,14.4,force,lower_fx,0.003330652369186282 +illusion_1.5L,ppo,36,14.4,force,lower_fy,-0.002026198897510767 +illusion_1.5L,ppo,37,14.8,force,front_fx,0.0026946065481752157 +illusion_1.5L,ppo,37,14.8,force,front_fy,0.0008473167545162141 +illusion_1.5L,ppo,37,14.8,force,upper_fx,0.0023256728891283274 +illusion_1.5L,ppo,37,14.8,force,upper_fy,0.0002564700262155384 +illusion_1.5L,ppo,37,14.8,force,lower_fx,0.0035063691902905703 +illusion_1.5L,ppo,37,14.8,force,lower_fy,-0.001012945082038641 +illusion_1.5L,ppo,38,15.2,force,front_fx,0.0018350029131397605 +illusion_1.5L,ppo,38,15.2,force,front_fy,-0.001026335172355175 +illusion_1.5L,ppo,38,15.2,force,upper_fx,0.0029326127842068672 +illusion_1.5L,ppo,38,15.2,force,upper_fy,0.0018936406122520566 +illusion_1.5L,ppo,38,15.2,force,lower_fx,0.003855752293020487 +illusion_1.5L,ppo,38,15.2,force,lower_fy,0.00035105508868582547 +illusion_1.5L,ppo,39,15.6,force,front_fx,0.0015814006328582764 +illusion_1.5L,ppo,39,15.6,force,front_fy,-0.00046172839938662946 +illusion_1.5L,ppo,39,15.6,force,upper_fx,0.00390014355070889 +illusion_1.5L,ppo,39,15.6,force,upper_fy,0.003326025791466236 +illusion_1.5L,ppo,39,15.6,force,lower_fx,0.0044187079183757305 +illusion_1.5L,ppo,39,15.6,force,lower_fy,-0.0005076008383184671 +illusion_1.5L,ppo,40,16.0,force,front_fx,0.0022688298486173153 +illusion_1.5L,ppo,40,16.0,force,front_fy,0.0019609800074249506 +illusion_1.5L,ppo,40,16.0,force,upper_fx,0.002566909184679389 +illusion_1.5L,ppo,40,16.0,force,upper_fy,0.0016219660174101591 +illusion_1.5L,ppo,40,16.0,force,lower_fx,0.0024134344421327114 +illusion_1.5L,ppo,40,16.0,force,lower_fy,-0.0006586065283045173 +illusion_1.5L,ppo,41,16.4,force,front_fx,0.0022502802312374115 +illusion_1.5L,ppo,41,16.4,force,front_fy,0.0021547027863562107 +illusion_1.5L,ppo,41,16.4,force,upper_fx,0.0031067668460309505 +illusion_1.5L,ppo,41,16.4,force,upper_fy,0.0016100566135719419 +illusion_1.5L,ppo,41,16.4,force,lower_fx,0.0030329071450978518 +illusion_1.5L,ppo,41,16.4,force,lower_fy,-0.0002375676267547533 +illusion_1.5L,ppo,42,16.8,force,front_fx,0.0020419724751263857 +illusion_1.5L,ppo,42,16.8,force,front_fy,6.833775114500895e-05 +illusion_1.5L,ppo,42,16.8,force,upper_fx,0.002697777235880494 +illusion_1.5L,ppo,42,16.8,force,upper_fy,0.0032777704764157534 +illusion_1.5L,ppo,42,16.8,force,lower_fx,0.0029039180371910334 +illusion_1.5L,ppo,42,16.8,force,lower_fy,0.0010144305415451527 +illusion_1.5L,ppo,43,17.2,force,front_fx,0.00201283092610538 +illusion_1.5L,ppo,43,17.2,force,front_fy,-0.0001283995807170868 +illusion_1.5L,ppo,43,17.2,force,upper_fx,0.0037265331484377384 +illusion_1.5L,ppo,43,17.2,force,upper_fy,0.004147717263549566 +illusion_1.5L,ppo,43,17.2,force,lower_fx,0.0029911668971180916 +illusion_1.5L,ppo,43,17.2,force,lower_fy,0.0005327060353010893 +illusion_1.5L,ppo,44,17.6,force,front_fx,0.0019870097748935223 +illusion_1.5L,ppo,44,17.6,force,front_fy,0.0020598648115992546 +illusion_1.5L,ppo,44,17.6,force,upper_fx,0.0035510289017111063 +illusion_1.5L,ppo,44,17.6,force,upper_fy,0.0019845645874738693 +illusion_1.5L,ppo,44,17.6,force,lower_fx,0.0021417634561657906 +illusion_1.5L,ppo,44,17.6,force,lower_fy,-9.719291847432032e-05 +illusion_1.5L,ppo,45,18.0,force,front_fx,0.001911716302856803 +illusion_1.5L,ppo,45,18.0,force,front_fy,0.0023190700449049473 +illusion_1.5L,ppo,45,18.0,force,upper_fx,0.004378362558782101 +illusion_1.5L,ppo,45,18.0,force,upper_fy,0.0019445393700152636 +illusion_1.5L,ppo,45,18.0,force,lower_fx,0.003055150853469968 +illusion_1.5L,ppo,45,18.0,force,lower_fy,-0.00044184247963130474 +illusion_1.5L,ppo,46,18.4,force,front_fx,0.0024448379408568144 +illusion_1.5L,ppo,46,18.4,force,front_fy,-0.00027444359147921205 +illusion_1.5L,ppo,46,18.4,force,upper_fx,0.002828441560268402 +illusion_1.5L,ppo,46,18.4,force,upper_fy,0.0029163379222154617 +illusion_1.5L,ppo,46,18.4,force,lower_fx,0.002365367952734232 +illusion_1.5L,ppo,46,18.4,force,lower_fy,0.0007492466829717159 +illusion_1.5L,ppo,47,18.8,force,front_fx,0.003248955123126507 +illusion_1.5L,ppo,47,18.8,force,front_fy,-0.0012829023180529475 +illusion_1.5L,ppo,47,18.8,force,upper_fx,0.0033533000387251377 +illusion_1.5L,ppo,47,18.8,force,upper_fy,0.0029071311000734568 +illusion_1.5L,ppo,47,18.8,force,lower_fx,0.0021737851202487946 +illusion_1.5L,ppo,47,18.8,force,lower_fy,0.0011286661028862 +illusion_1.5L,ppo,48,19.2,force,front_fx,0.0023894861806184053 +illusion_1.5L,ppo,48,19.2,force,front_fy,3.2915511837927625e-05 +illusion_1.5L,ppo,48,19.2,force,upper_fx,0.0033406526781618595 +illusion_1.5L,ppo,48,19.2,force,upper_fy,0.0011574815725907683 +illusion_1.5L,ppo,48,19.2,force,lower_fx,0.002183271571993828 +illusion_1.5L,ppo,48,19.2,force,lower_fy,-7.462897337973118e-05 +illusion_1.5L,ppo,49,19.6,force,front_fx,0.0016786569030955434 +illusion_1.5L,ppo,49,19.6,force,front_fy,0.0010241968557238579 +illusion_1.5L,ppo,49,19.6,force,upper_fx,0.00422262167558074 +illusion_1.5L,ppo,49,19.6,force,upper_fy,0.0013449639081954956 +illusion_1.5L,ppo,49,19.6,force,lower_fx,0.003291809931397438 +illusion_1.5L,ppo,49,19.6,force,lower_fy,-0.001322132651694119 +illusion_1.5L,ppo,50,20.0,force,front_fx,0.0020368127152323723 +illusion_1.5L,ppo,50,20.0,force,front_fy,-0.0009305854327976704 +illusion_1.5L,ppo,50,20.0,force,upper_fx,0.0026319939643144608 +illusion_1.5L,ppo,50,20.0,force,upper_fy,0.0017026826972141862 +illusion_1.5L,ppo,50,20.0,force,lower_fx,0.0024774312041699886 +illusion_1.5L,ppo,50,20.0,force,lower_fy,-0.0010616631479933858 +illusion_1.5L,ppo,51,20.4,force,front_fx,0.003067307872697711 +illusion_1.5L,ppo,51,20.4,force,front_fy,-0.0024983736220747232 +illusion_1.5L,ppo,51,20.4,force,upper_fx,0.0023471934255212545 +illusion_1.5L,ppo,51,20.4,force,upper_fy,0.0012808478204533458 +illusion_1.5L,ppo,51,20.4,force,lower_fx,0.0021020425483584404 +illusion_1.5L,ppo,51,20.4,force,lower_fy,-0.0002869028539862484 +illusion_1.5L,ppo,52,20.8,force,front_fx,0.00224987231194973 +illusion_1.5L,ppo,52,20.8,force,front_fy,-0.0012805529404431581 +illusion_1.5L,ppo,52,20.8,force,upper_fx,0.0032585770823061466 +illusion_1.5L,ppo,52,20.8,force,upper_fy,-3.934039705200121e-05 +illusion_1.5L,ppo,52,20.8,force,lower_fx,0.002537601627409458 +illusion_1.5L,ppo,52,20.8,force,lower_fy,-0.0014159682905301452 +illusion_1.5L,ppo,53,21.2,force,front_fx,0.0018925413023680449 +illusion_1.5L,ppo,53,21.2,force,front_fy,0.0002390064619248733 +illusion_1.5L,ppo,53,21.2,force,upper_fx,0.003615214256569743 +illusion_1.5L,ppo,53,21.2,force,upper_fy,-0.00040730444015935063 +illusion_1.5L,ppo,53,21.2,force,lower_fx,0.003573707537725568 +illusion_1.5L,ppo,53,21.2,force,lower_fy,-0.0028851425740867853 +illusion_1.5L,ppo,54,21.6,force,front_fx,0.0016120803775265813 +illusion_1.5L,ppo,54,21.6,force,front_fy,-0.0015295202611014247 +illusion_1.5L,ppo,54,21.6,force,upper_fx,0.002741759642958641 +illusion_1.5L,ppo,54,21.6,force,upper_fy,0.0005858798394910991 +illusion_1.5L,ppo,54,21.6,force,lower_fx,0.0032019857317209244 +illusion_1.5L,ppo,54,21.6,force,lower_fy,-0.0027582314796745777 +illusion_1.5L,ppo,55,22.0,force,front_fx,0.002870693802833557 +illusion_1.5L,ppo,55,22.0,force,front_fy,-0.0037342512514442205 +illusion_1.5L,ppo,55,22.0,force,upper_fx,0.0025146924890577793 +illusion_1.5L,ppo,55,22.0,force,upper_fy,0.0005285223596729338 +illusion_1.5L,ppo,55,22.0,force,lower_fx,0.0031982939690351486 +illusion_1.5L,ppo,55,22.0,force,lower_fy,-0.0012207577237859368 +illusion_1.5L,ppo,56,22.4,force,front_fx,0.0022109253332018852 +illusion_1.5L,ppo,56,22.4,force,front_fy,-0.0022419767919927835 +illusion_1.5L,ppo,56,22.4,force,upper_fx,0.0030249599367380142 +illusion_1.5L,ppo,56,22.4,force,upper_fy,-0.0003240901278331876 +illusion_1.5L,ppo,56,22.4,force,lower_fx,0.0032401704229414463 +illusion_1.5L,ppo,56,22.4,force,lower_fy,-0.002060771221294999 +illusion_1.5L,ppo,57,22.8,force,front_fx,0.002273677848279476 +illusion_1.5L,ppo,57,22.8,force,front_fy,0.00023193996457848698 +illusion_1.5L,ppo,57,22.8,force,upper_fx,0.003008087631314993 +illusion_1.5L,ppo,57,22.8,force,upper_fy,-0.001296789851039648 +illusion_1.5L,ppo,57,22.8,force,lower_fx,0.0037410366348922253 +illusion_1.5L,ppo,57,22.8,force,lower_fy,-0.0034754639491438866 +illusion_1.5L,ppo,58,23.2,force,front_fx,0.0017755908193066716 +illusion_1.5L,ppo,58,23.2,force,front_fy,-0.0007775248377583921 +illusion_1.5L,ppo,58,23.2,force,upper_fx,0.0028245511930435896 +illusion_1.5L,ppo,58,23.2,force,upper_fy,-3.533064227667637e-05 +illusion_1.5L,ppo,58,23.2,force,lower_fx,0.0035082462709397078 +illusion_1.5L,ppo,58,23.2,force,lower_fy,-0.003473082557320595 +illusion_1.5L,ppo,59,23.6,force,front_fx,0.002050986746326089 +illusion_1.5L,ppo,59,23.6,force,front_fy,-0.0030570959206670523 +illusion_1.5L,ppo,59,23.6,force,upper_fx,0.002497147535905242 +illusion_1.5L,ppo,59,23.6,force,upper_fy,0.0007722263690084219 +illusion_1.5L,ppo,59,23.6,force,lower_fx,0.0033259380143135786 +illusion_1.5L,ppo,59,23.6,force,lower_fy,-0.0015665963292121887 +illusion_1.5L,ppo,60,24.0,force,front_fx,0.0015941315796226263 +illusion_1.5L,ppo,60,24.0,force,front_fy,-0.0012958437437191606 +illusion_1.5L,ppo,60,24.0,force,upper_fx,0.003033827291801572 +illusion_1.5L,ppo,60,24.0,force,upper_fy,0.0011800058418884873 +illusion_1.5L,ppo,60,24.0,force,lower_fx,0.0038799934554845095 +illusion_1.5L,ppo,60,24.0,force,lower_fy,-0.0023292771074920893 +illusion_1.5L,ppo,61,24.4,force,front_fx,0.003282708814367652 +illusion_1.5L,ppo,61,24.4,force,front_fy,0.0014425860717892647 +illusion_1.5L,ppo,61,24.4,force,upper_fx,0.0020351274870336056 +illusion_1.5L,ppo,61,24.4,force,upper_fy,-0.0010258210822939873 +illusion_1.5L,ppo,61,24.4,force,lower_fx,0.002814328297972679 +illusion_1.5L,ppo,61,24.4,force,lower_fy,-0.002562796464189887 +illusion_1.5L,ppo,62,24.8,force,front_fx,0.002550545847043395 +illusion_1.5L,ppo,62,24.8,force,front_fy,0.0003858356212731451 +illusion_1.5L,ppo,62,24.8,force,upper_fx,0.0026161980349570513 +illusion_1.5L,ppo,62,24.8,force,upper_fy,0.00015815628285054117 +illusion_1.5L,ppo,62,24.8,force,lower_fx,0.0031760884448885918 +illusion_1.5L,ppo,62,24.8,force,lower_fy,-0.0020598233677446842 +illusion_1.5L,ppo,63,25.2,force,front_fx,0.0019039488397538662 +illusion_1.5L,ppo,63,25.2,force,front_fy,-0.001782048842869699 +illusion_1.5L,ppo,63,25.2,force,upper_fx,0.003523044055327773 +illusion_1.5L,ppo,63,25.2,force,upper_fy,0.002045496366918087 +illusion_1.5L,ppo,63,25.2,force,lower_fx,0.00352160120382905 +illusion_1.5L,ppo,63,25.2,force,lower_fy,-0.0004392938280943781 +illusion_1.5L,ppo,64,25.6,force,front_fx,0.0013709504855796695 +illusion_1.5L,ppo,64,25.6,force,front_fy,-0.0003364184813108295 +illusion_1.5L,ppo,64,25.6,force,upper_fx,0.0039407433941960335 +illusion_1.5L,ppo,64,25.6,force,upper_fy,0.0032492915634065866 +illusion_1.5L,ppo,64,25.6,force,lower_fx,0.004293219652026892 +illusion_1.5L,ppo,64,25.6,force,lower_fy,-0.001542509999126196 +illusion_1.5L,ppo,65,26.0,force,front_fx,0.0028254336211830378 +illusion_1.5L,ppo,65,26.0,force,front_fy,0.002384883351624012 +illusion_1.5L,ppo,65,26.0,force,upper_fx,0.0023800660856068134 +illusion_1.5L,ppo,65,26.0,force,upper_fy,0.0010144509142264724 +illusion_1.5L,ppo,65,26.0,force,lower_fx,0.0022731521166861057 +illusion_1.5L,ppo,65,26.0,force,lower_fy,-0.0011891766916960478 +illusion_1.5L,ppo,66,26.4,force,front_fx,0.002292623743414879 +illusion_1.5L,ppo,66,26.4,force,front_fy,0.0017104989383369684 +illusion_1.5L,ppo,66,26.4,force,upper_fx,0.003043600358068943 +illusion_1.5L,ppo,66,26.4,force,upper_fy,0.0015989361563697457 +illusion_1.5L,ppo,66,26.4,force,lower_fx,0.003138459986075759 +illusion_1.5L,ppo,66,26.4,force,lower_fy,-0.0006107714725658298 +illusion_1.5L,ppo,67,26.8,force,front_fx,0.002017610240727663 +illusion_1.5L,ppo,67,26.8,force,front_fy,-0.00044682223233394325 +illusion_1.5L,ppo,67,26.8,force,upper_fx,0.0030250733252614737 +illusion_1.5L,ppo,67,26.8,force,upper_fy,0.0034248309675604105 +illusion_1.5L,ppo,67,26.8,force,lower_fx,0.0030060706194490194 +illusion_1.5L,ppo,67,26.8,force,lower_fy,0.000789047044236213 +illusion_1.5L,ppo,68,27.2,force,front_fx,0.0016188333975151181 +illusion_1.5L,ppo,68,27.2,force,front_fy,0.0002030624309554696 +illusion_1.5L,ppo,68,27.2,force,upper_fx,0.0037291627377271652 +illusion_1.5L,ppo,68,27.2,force,upper_fy,0.004019215237349272 +illusion_1.5L,ppo,68,27.2,force,lower_fx,0.0032576113007962704 +illusion_1.5L,ppo,68,27.2,force,lower_fy,-3.9875274524092674e-05 +illusion_1.5L,ppo,69,27.6,force,front_fx,0.002242323709651828 +illusion_1.5L,ppo,69,27.6,force,front_fy,0.0027384290006011724 +illusion_1.5L,ppo,69,27.6,force,upper_fx,0.003275836119428277 +illusion_1.5L,ppo,69,27.6,force,upper_fy,0.00171216472517699 +illusion_1.5L,ppo,69,27.6,force,lower_fx,0.002166393445804715 +illusion_1.5L,ppo,69,27.6,force,lower_fy,-0.00017424444376956671 +illusion_1.5L,ppo,70,28.0,force,front_fx,0.0017814189195632935 +illusion_1.5L,ppo,70,28.0,force,front_fy,0.0019116566982120275 +illusion_1.5L,ppo,70,28.0,force,upper_fx,0.0040763323195278645 +illusion_1.5L,ppo,70,28.0,force,upper_fy,0.002194461179897189 +illusion_1.5L,ppo,70,28.0,force,lower_fx,0.0031132930889725685 +illusion_1.5L,ppo,70,28.0,force,lower_fy,-0.000446111720521003 +illusion_1.5L,ppo,71,28.4,force,front_fx,0.0028004697524011135 +illusion_1.5L,ppo,71,28.4,force,front_fy,-0.001061026006937027 +illusion_1.5L,ppo,71,28.4,force,upper_fx,0.0030782786197960377 +illusion_1.5L,ppo,71,28.4,force,upper_fy,0.0035251029767096043 +illusion_1.5L,ppo,71,28.4,force,lower_fx,0.002220154507085681 +illusion_1.5L,ppo,71,28.4,force,lower_fy,0.0012548546073958278 +illusion_1.5L,ppo,72,28.8,force,front_fx,0.0030004463624209166 +illusion_1.5L,ppo,72,28.8,force,front_fy,-0.0005963611183688045 +illusion_1.5L,ppo,72,28.8,force,upper_fx,0.003424285678192973 +illusion_1.5L,ppo,72,28.8,force,upper_fy,0.003494414733722806 +illusion_1.5L,ppo,72,28.8,force,lower_fx,0.0024922655429691076 +illusion_1.5L,ppo,72,28.8,force,lower_fy,0.000737013469915837 +illusion_1.5L,ppo,73,29.2,force,front_fx,0.0021938332356512547 +illusion_1.5L,ppo,73,29.2,force,front_fy,0.0008068406023085117 +illusion_1.5L,ppo,73,29.2,force,upper_fx,0.003294473048299551 +illusion_1.5L,ppo,73,29.2,force,upper_fy,0.0014472107868641615 +illusion_1.5L,ppo,73,29.2,force,lower_fx,0.0022882067132741213 +illusion_1.5L,ppo,73,29.2,force,lower_fy,-0.0002688195963855833 +illusion_1.5L,ppo,74,29.6,force,front_fx,0.0015296167694032192 +illusion_1.5L,ppo,74,29.6,force,front_fy,0.0004115984193049371 +illusion_1.5L,ppo,74,29.6,force,upper_fx,0.004093869589269161 +illusion_1.5L,ppo,74,29.6,force,upper_fy,0.0019572593737393618 +illusion_1.5L,ppo,74,29.6,force,lower_fx,0.003075920045375824 +illusion_1.5L,ppo,74,29.6,force,lower_fy,-0.0012763590784743428 +illusion_1.5L,ppo,75,30.0,force,front_fx,0.0027534840628504753 +illusion_1.5L,ppo,75,30.0,force,front_fy,-0.0016517858020961285 +illusion_1.5L,ppo,75,30.0,force,upper_fx,0.0019415538990870118 +illusion_1.5L,ppo,75,30.0,force,upper_fy,0.0019400184974074364 +illusion_1.5L,ppo,75,30.0,force,lower_fx,0.0018244399689137936 +illusion_1.5L,ppo,75,30.0,force,lower_fy,-0.0003101901966147125 +illusion_1.5L,ppo,76,30.4,force,front_fx,0.0029074663762003183 +illusion_1.5L,ppo,76,30.4,force,front_fy,-0.0019565322436392307 +illusion_1.5L,ppo,76,30.4,force,upper_fx,0.002574041485786438 +illusion_1.5L,ppo,76,30.4,force,upper_fy,0.0011861843522638083 +illusion_1.5L,ppo,76,30.4,force,lower_fx,0.0021731031592935324 +illusion_1.5L,ppo,76,30.4,force,lower_fy,-0.0004620422550942749 +illusion_1.5L,ppo,77,30.8,force,front_fx,0.002035669516772032 +illusion_1.5L,ppo,77,30.8,force,front_fy,-0.00040579409687779844 +illusion_1.5L,ppo,77,30.8,force,upper_fx,0.0034478052984923124 +illusion_1.5L,ppo,77,30.8,force,upper_fy,-0.00012639546184800565 +illusion_1.5L,ppo,77,30.8,force,lower_fx,0.002732538618147373 +illusion_1.5L,ppo,77,30.8,force,lower_fy,-0.001701122848317027 +illusion_1.5L,ppo,78,31.2,force,front_fx,0.001586491009220481 +illusion_1.5L,ppo,78,31.2,force,front_fy,-0.0004154423368163407 +illusion_1.5L,ppo,78,31.2,force,upper_fx,0.0036681850906461477 +illusion_1.5L,ppo,78,31.2,force,upper_fy,0.0002655618591234088 +illusion_1.5L,ppo,78,31.2,force,lower_fx,0.0035273951943963766 +illusion_1.5L,ppo,78,31.2,force,lower_fy,-0.002850883873179555 +illusion_1.5L,ppo,79,31.6,force,front_fx,0.002209398662671447 +illusion_1.5L,ppo,79,31.6,force,front_fy,-0.0027532726526260376 +illusion_1.5L,ppo,79,31.6,force,upper_fx,0.0021745034027844667 +illusion_1.5L,ppo,79,31.6,force,upper_fy,0.0007531747105531394 +illusion_1.5L,ppo,79,31.6,force,lower_fx,0.0027844072319567204 +illusion_1.5L,ppo,79,31.6,force,lower_fy,-0.0017305619549006224 +illusion_1.5L,ppo,80,32.0,force,front_fx,0.0026473409961909056 +illusion_1.5L,ppo,80,32.0,force,front_fy,-0.003236649092286825 +illusion_1.5L,ppo,80,32.0,force,upper_fx,0.002846931805834174 +illusion_1.5L,ppo,80,32.0,force,upper_fy,0.00022130022989585996 +illusion_1.5L,ppo,80,32.0,force,lower_fx,0.00333272572606802 +illusion_1.5L,ppo,80,32.0,force,lower_fy,-0.0014278441667556763 +illusion_1.5L,ppo,81,32.4,force,front_fx,0.002185553079470992 +illusion_1.5L,ppo,81,32.4,force,front_fy,-0.001043418189510703 +illusion_1.5L,ppo,81,32.4,force,upper_fx,0.003163493238389492 +illusion_1.5L,ppo,81,32.4,force,upper_fy,-0.0012534409761428833 +illusion_1.5L,ppo,81,32.4,force,lower_fx,0.0030272684525698423 +illusion_1.5L,ppo,81,32.4,force,lower_fy,-0.002493241336196661 +illusion_1.5L,ppo,82,32.8,force,front_fx,0.001973211532458663 +illusion_1.5L,ppo,82,32.8,force,front_fy,-0.00025908142561092973 +illusion_1.5L,ppo,82,32.8,force,upper_fx,0.0030930014327168465 +illusion_1.5L,ppo,82,32.8,force,upper_fy,-0.0008281447808258235 +illusion_1.5L,ppo,82,32.8,force,lower_fx,0.003741480177268386 +illusion_1.5L,ppo,82,32.8,force,lower_fy,-0.0035404416266828775 +illusion_1.5L,ppo,83,33.2,force,front_fx,0.001821812242269516 +illusion_1.5L,ppo,83,33.2,force,front_fy,-0.002127048559486866 +illusion_1.5L,ppo,83,33.2,force,upper_fx,0.002068369649350643 +illusion_1.5L,ppo,83,33.2,force,upper_fy,8.421234815614298e-05 +illusion_1.5L,ppo,83,33.2,force,lower_fx,0.003265636507421732 +illusion_1.5L,ppo,83,33.2,force,lower_fy,-0.0018538236618041992 +illusion_1.5L,ppo,84,33.6,force,front_fx,0.001862832112237811 +illusion_1.5L,ppo,84,33.6,force,front_fy,-0.0025793060194700956 +illusion_1.5L,ppo,84,33.6,force,upper_fx,0.0029572458006441593 +illusion_1.5L,ppo,84,33.6,force,upper_fy,0.0005811557057313621 +illusion_1.5L,ppo,84,33.6,force,lower_fx,0.0041123926639556885 +illusion_1.5L,ppo,84,33.6,force,lower_fy,-0.0016216807998716831 +illusion_1.5L,ppo,85,34.0,force,front_fx,0.0024383922573179007 +illusion_1.5L,ppo,85,34.0,force,front_fy,-0.00014700356405228376 +illusion_1.5L,ppo,85,34.0,force,upper_fx,0.0025140331126749516 +illusion_1.5L,ppo,85,34.0,force,upper_fy,-0.0007920315838418901 +illusion_1.5L,ppo,85,34.0,force,lower_fx,0.0028019852470606565 +illusion_1.5L,ppo,85,34.0,force,lower_fy,-0.0024886722676455975 +illusion_1.5L,ppo,86,34.4,force,front_fx,0.003223715117201209 +illusion_1.5L,ppo,86,34.4,force,front_fy,0.0011288339737802744 +illusion_1.5L,ppo,86,34.4,force,upper_fx,0.0024485590402036905 +illusion_1.5L,ppo,86,34.4,force,upper_fy,-0.0012518848525360227 +illusion_1.5L,ppo,86,34.4,force,lower_fx,0.0033551340457051992 +illusion_1.5L,ppo,86,34.4,force,lower_fy,-0.0024106898345053196 +illusion_1.5L,ppo,87,34.8,force,front_fx,0.0023241695016622543 +illusion_1.5L,ppo,87,34.8,force,front_fy,-0.0007968612480908632 +illusion_1.5L,ppo,87,34.8,force,upper_fx,0.002518644090741873 +illusion_1.5L,ppo,87,34.8,force,upper_fy,0.00042816202039830387 +illusion_1.5L,ppo,87,34.8,force,lower_fx,0.003147328272461891 +illusion_1.5L,ppo,87,34.8,force,lower_fy,-0.0009477106505073607 +illusion_1.5L,ppo,88,35.2,force,front_fx,0.0015874565578997135 +illusion_1.5L,ppo,88,35.2,force,front_fy,-0.0017121598357334733 +illusion_1.5L,ppo,88,35.2,force,upper_fx,0.0042534489184618 +illusion_1.5L,ppo,88,35.2,force,upper_fy,0.0024314590264111757 +illusion_1.5L,ppo,88,35.2,force,lower_fx,0.00423378124833107 +illusion_1.5L,ppo,88,35.2,force,lower_fy,-0.0010784500045701861 +illusion_1.5L,ppo,89,35.6,force,front_fx,0.0018671232974156737 +illusion_1.5L,ppo,89,35.6,force,front_fy,0.0005716170999221504 +illusion_1.5L,ppo,89,35.6,force,upper_fx,0.00282866507768631 +illusion_1.5L,ppo,89,35.6,force,upper_fy,0.001959764864295721 +illusion_1.5L,ppo,89,35.6,force,lower_fx,0.002976752817630768 +illusion_1.5L,ppo,89,35.6,force,lower_fy,-0.0016603560652583838 +illusion_1.5L,ppo,90,36.0,force,front_fx,0.0029043483082205057 +illusion_1.5L,ppo,90,36.0,force,front_fy,0.002379251876845956 +illusion_1.5L,ppo,90,36.0,force,upper_fx,0.0024071449879556894 +illusion_1.5L,ppo,90,36.0,force,upper_fy,0.0006322629633359611 +illusion_1.5L,ppo,90,36.0,force,lower_fx,0.002553587546572089 +illusion_1.5L,ppo,90,36.0,force,lower_fy,-0.0008600850123912096 +illusion_1.5L,ppo,91,36.4,force,front_fx,0.002054940676316619 +illusion_1.5L,ppo,91,36.4,force,front_fy,0.0009625934762880206 +illusion_1.5L,ppo,91,36.4,force,upper_fx,0.0026400939095765352 +illusion_1.5L,ppo,91,36.4,force,upper_fy,0.0019627537112683058 +illusion_1.5L,ppo,91,36.4,force,lower_fx,0.003359046531841159 +illusion_1.5L,ppo,91,36.4,force,lower_fy,8.227331272792071e-05 +illusion_1.5L,ppo,92,36.8,force,front_fx,0.002063869731500745 +illusion_1.5L,ppo,92,36.8,force,front_fy,-0.0008695779251866043 +illusion_1.5L,ppo,92,36.8,force,upper_fx,0.0036350039299577475 +illusion_1.5L,ppo,92,36.8,force,upper_fy,0.003684785682708025 +illusion_1.5L,ppo,92,36.8,force,lower_fx,0.0031509927939623594 +illusion_1.5L,ppo,92,36.8,force,lower_fy,0.0006990983383730054 +illusion_1.5L,ppo,93,37.2,force,front_fx,0.0018848254112526774 +illusion_1.5L,ppo,93,37.2,force,front_fy,0.0007201681146398187 +illusion_1.5L,ppo,93,37.2,force,upper_fx,0.0033256143797188997 +illusion_1.5L,ppo,93,37.2,force,upper_fy,0.002846471033990383 +illusion_1.5L,ppo,93,37.2,force,lower_fx,0.0026177361141890287 +illusion_1.5L,ppo,93,37.2,force,lower_fy,-6.145927909528837e-05 +illusion_1.5L,ppo,94,37.6,force,front_fx,0.002532145008444786 +illusion_1.5L,ppo,94,37.6,force,front_fy,0.0032266806811094284 +illusion_1.5L,ppo,94,37.6,force,upper_fx,0.003737595397979021 +illusion_1.5L,ppo,94,37.6,force,upper_fy,0.00140856159850955 +illusion_1.5L,ppo,94,37.6,force,lower_fx,0.002618051366880536 +illusion_1.5L,ppo,94,37.6,force,lower_fy,-5.778565537184477e-05 +illusion_1.5L,ppo,95,38.0,force,front_fx,0.0018625750672072172 +illusion_1.5L,ppo,95,38.0,force,front_fy,0.0014991061761975288 +illusion_1.5L,ppo,95,38.0,force,upper_fx,0.003504168475046754 +illusion_1.5L,ppo,95,38.0,force,upper_fy,0.0023614687379449606 +illusion_1.5L,ppo,95,38.0,force,lower_fx,0.0031200284138321877 +illusion_1.5L,ppo,95,38.0,force,lower_fy,0.00011274106509517878 +illusion_1.5L,ppo,96,38.4,force,front_fx,0.002911363495513797 +illusion_1.5L,ppo,96,38.4,force,front_fy,-0.0012626013485714793 +illusion_1.5L,ppo,96,38.4,force,upper_fx,0.003770339535549283 +illusion_1.5L,ppo,96,38.4,force,upper_fy,0.003912051673978567 +illusion_1.5L,ppo,96,38.4,force,lower_fx,0.002316851867362857 +illusion_1.5L,ppo,96,38.4,force,lower_fy,0.0015341149410232902 +illusion_1.5L,ppo,97,38.8,force,front_fx,0.0026996564120054245 +illusion_1.5L,ppo,97,38.8,force,front_fy,-0.0002450319880153984 +illusion_1.5L,ppo,97,38.8,force,upper_fx,0.003389940829947591 +illusion_1.5L,ppo,97,38.8,force,upper_fy,0.003405790077522397 +illusion_1.5L,ppo,97,38.8,force,lower_fx,0.0025545177049934864 +illusion_1.5L,ppo,97,38.8,force,lower_fy,0.0002427775034448132 +illusion_1.5L,ppo,98,39.2,force,front_fx,0.0020403487142175436 +illusion_1.5L,ppo,98,39.2,force,front_fy,0.001486192806623876 +illusion_1.5L,ppo,98,39.2,force,upper_fx,0.0036322176456451416 +illusion_1.5L,ppo,98,39.2,force,upper_fy,0.0017335343873128295 +illusion_1.5L,ppo,98,39.2,force,lower_fx,0.00251653790473938 +illusion_1.5L,ppo,98,39.2,force,lower_fy,-0.0005810433067381382 +illusion_1.5L,ppo,99,39.6,force,front_fx,0.0015091855311766267 +illusion_1.5L,ppo,99,39.6,force,front_fy,0.00023449557193089277 +illusion_1.5L,ppo,99,39.6,force,upper_fx,0.003658390836790204 +illusion_1.5L,ppo,99,39.6,force,upper_fy,0.0022998689673841 +illusion_1.5L,ppo,99,39.6,force,lower_fx,0.0028517546597868204 +illusion_1.5L,ppo,99,39.6,force,lower_fy,-0.0012557422742247581 +illusion_1.5L,ppo,100,40.0,force,front_fx,0.003272016067057848 +illusion_1.5L,ppo,100,40.0,force,front_fy,-0.001967385644093156 +illusion_1.5L,ppo,100,40.0,force,upper_fx,0.0017896495992317796 +illusion_1.5L,ppo,100,40.0,force,upper_fy,0.002544570481404662 +illusion_1.5L,ppo,100,40.0,force,lower_fx,0.0016887407982721925 +illusion_1.5L,ppo,100,40.0,force,lower_fy,0.0002890734176617116 +illusion_1.5L,ppo,101,40.4,force,front_fx,0.002700973767787218 +illusion_1.5L,ppo,101,40.4,force,front_fy,-0.001320274081081152 +illusion_1.5L,ppo,101,40.4,force,upper_fx,0.0026521189138293266 +illusion_1.5L,ppo,101,40.4,force,upper_fy,0.0016459387261420488 +illusion_1.5L,ppo,101,40.4,force,lower_fx,0.002370636910200119 +illusion_1.5L,ppo,101,40.4,force,lower_fy,-0.00043413424282334745 +illusion_1.5L,ppo,102,40.8,force,front_fx,0.002069023670628667 +illusion_1.5L,ppo,102,40.8,force,front_fy,0.0006207078113220632 +illusion_1.5L,ppo,102,40.8,force,upper_fx,0.0034849534276872873 +illusion_1.5L,ppo,102,40.8,force,upper_fy,0.00021925986220594496 +illusion_1.5L,ppo,102,40.8,force,lower_fx,0.0031350799836218357 +illusion_1.5L,ppo,102,40.8,force,lower_fy,-0.0018500776495784521 +illusion_1.5L,ppo,103,41.2,force,front_fx,0.0013790157390758395 +illusion_1.5L,ppo,103,41.2,force,front_fy,-0.0005071777268312871 +illusion_1.5L,ppo,103,41.2,force,upper_fx,0.0035704048350453377 +illusion_1.5L,ppo,103,41.2,force,upper_fy,0.0010682690190151334 +illusion_1.5L,ppo,103,41.2,force,lower_fx,0.003489985829219222 +illusion_1.5L,ppo,103,41.2,force,lower_fy,-0.0029244159813970327 +illusion_1.5L,ppo,104,41.6,force,front_fx,0.002866828814148903 +illusion_1.5L,ppo,104,41.6,force,front_fy,-0.0031769576016813517 +illusion_1.5L,ppo,104,41.6,force,upper_fx,0.002155938418582082 +illusion_1.5L,ppo,104,41.6,force,upper_fy,0.0012291043531149626 +illusion_1.5L,ppo,104,41.6,force,lower_fx,0.0026020363438874483 +illusion_1.5L,ppo,104,41.6,force,lower_fy,-0.00103771744761616 +illusion_1.5L,ppo,105,42.0,force,front_fx,0.0025739946868270636 +illusion_1.5L,ppo,105,42.0,force,front_fy,-0.0024576743599027395 +illusion_1.5L,ppo,105,42.0,force,upper_fx,0.002923644846305251 +illusion_1.5L,ppo,105,42.0,force,upper_fy,0.0006183499353937805 +illusion_1.5L,ppo,105,42.0,force,lower_fx,0.0034014983102679253 +illusion_1.5L,ppo,105,42.0,force,lower_fy,-0.0015242408262565732 +illusion_1.5L,ppo,106,42.4,force,front_fx,0.0021578348241746426 +illusion_1.5L,ppo,106,42.4,force,front_fy,-0.000278505205642432 +illusion_1.5L,ppo,106,42.4,force,upper_fx,0.0029975613579154015 +illusion_1.5L,ppo,106,42.4,force,upper_fy,-0.0010193263879045844 +illusion_1.5L,ppo,106,42.4,force,lower_fx,0.003148213028907776 +illusion_1.5L,ppo,106,42.4,force,lower_fy,-0.002808472840115428 +illusion_1.5L,ppo,107,42.8,force,front_fx,0.0015092046232894063 +illusion_1.5L,ppo,107,42.8,force,front_fy,-0.0006575097213499248 +illusion_1.5L,ppo,107,42.8,force,upper_fx,0.0031865842174738646 +illusion_1.5L,ppo,107,42.8,force,upper_fy,-1.983157744689379e-05 +illusion_1.5L,ppo,107,42.8,force,lower_fx,0.003633364336565137 +illusion_1.5L,ppo,107,42.8,force,lower_fy,-0.0035651070065796375 +illusion_1.5L,ppo,108,43.2,force,front_fx,0.0022553575690835714 +illusion_1.5L,ppo,108,43.2,force,front_fy,-0.0032304851338267326 +illusion_1.5L,ppo,108,43.2,force,upper_fx,0.0020364297088235617 +illusion_1.5L,ppo,108,43.2,force,upper_fy,0.0003128521784674376 +illusion_1.5L,ppo,108,43.2,force,lower_fx,0.0029348169919103384 +illusion_1.5L,ppo,108,43.2,force,lower_fy,-0.001484451349824667 +illusion_1.5L,ppo,109,43.6,force,front_fx,0.0019273943034932017 +illusion_1.5L,ppo,109,43.6,force,front_fy,-0.0023899502120912075 +illusion_1.5L,ppo,109,43.6,force,upper_fx,0.003074872773140669 +illusion_1.5L,ppo,109,43.6,force,upper_fy,0.0003928876540157944 +illusion_1.5L,ppo,109,43.6,force,lower_fx,0.0037292956840246916 +illusion_1.5L,ppo,109,43.6,force,lower_fy,-0.0019819384906440973 +illusion_1.5L,ppo,110,44.0,force,front_fx,0.002577092731371522 +illusion_1.5L,ppo,110,44.0,force,front_fy,0.00043436262058094144 +illusion_1.5L,ppo,110,44.0,force,upper_fx,0.002807909855619073 +illusion_1.5L,ppo,110,44.0,force,upper_fy,-0.001310663647018373 +illusion_1.5L,ppo,110,44.0,force,lower_fx,0.0031415256671607494 +illusion_1.5L,ppo,110,44.0,force,lower_fy,-0.003197605023160577 +illusion_1.5L,ppo,111,44.4,force,front_fx,0.0026580088306218386 +illusion_1.5L,ppo,111,44.4,force,front_fy,0.00015954826085362583 +illusion_1.5L,ppo,111,44.4,force,upper_fx,0.003213791875168681 +illusion_1.5L,ppo,111,44.4,force,upper_fy,-0.0005193112883716822 +illusion_1.5L,ppo,111,44.4,force,lower_fx,0.0036795097403228283 +illusion_1.5L,ppo,111,44.4,force,lower_fy,-0.003531369846314192 +illusion_1.5L,ppo,112,44.8,force,front_fx,0.001965441508218646 +illusion_1.5L,ppo,112,44.8,force,front_fy,-0.0017375535098835826 +illusion_1.5L,ppo,112,44.8,force,upper_fx,0.0024706858675926924 +illusion_1.5L,ppo,112,44.8,force,upper_fy,0.0007864927756600082 +illusion_1.5L,ppo,112,44.8,force,lower_fx,0.0030640289187431335 +illusion_1.5L,ppo,112,44.8,force,lower_fy,-0.0014988417970016599 +illusion_1.5L,ppo,113,45.2,force,front_fx,0.0015637101605534554 +illusion_1.5L,ppo,113,45.2,force,front_fy,-0.0014330687699839473 +illusion_1.5L,ppo,113,45.2,force,upper_fx,0.0034750080667436123 +illusion_1.5L,ppo,113,45.2,force,upper_fy,0.0018370720790699124 +illusion_1.5L,ppo,113,45.2,force,lower_fx,0.004098241217434406 +illusion_1.5L,ppo,113,45.2,force,lower_fy,-0.0019215313950553536 +illusion_1.5L,ppo,114,45.6,force,front_fx,0.0024849427863955498 +illusion_1.5L,ppo,114,45.6,force,front_fy,0.000891621399205178 +illusion_1.5L,ppo,114,45.6,force,upper_fx,0.002059838268905878 +illusion_1.5L,ppo,114,45.6,force,upper_fy,0.00025605258997529745 +illusion_1.5L,ppo,114,45.6,force,lower_fx,0.0020834775641560555 +illusion_1.5L,ppo,114,45.6,force,lower_fy,-0.001995909260585904 +illusion_1.5L,ppo,115,46.0,force,front_fx,0.0026731279212981462 +illusion_1.5L,ppo,115,46.0,force,front_fy,0.0015317125944420695 +illusion_1.5L,ppo,115,46.0,force,upper_fx,0.002300846390426159 +illusion_1.5L,ppo,115,46.0,force,upper_fy,0.00013377031427808106 +illusion_1.5L,ppo,115,46.0,force,lower_fx,0.002787246135994792 +illusion_1.5L,ppo,115,46.0,force,lower_fy,-0.001172329648397863 +illusion_1.5L,ppo,116,46.4,force,front_fx,0.0019830644596368074 +illusion_1.5L,ppo,116,46.4,force,front_fy,-0.00023893035540822893 +illusion_1.5L,ppo,116,46.4,force,upper_fx,0.0026581755373626947 +illusion_1.5L,ppo,116,46.4,force,upper_fy,0.0018243597587570548 +illusion_1.5L,ppo,116,46.4,force,lower_fx,0.003434989834204316 +illusion_1.5L,ppo,116,46.4,force,lower_fy,0.00025575977633707225 +illusion_1.5L,ppo,117,46.8,force,front_fx,0.0016493777511641383 +illusion_1.5L,ppo,117,46.8,force,front_fy,-0.0005707654054276645 +illusion_1.5L,ppo,117,46.8,force,upper_fx,0.0038267045747488737 +illusion_1.5L,ppo,117,46.8,force,upper_fy,0.0033656656742095947 +illusion_1.5L,ppo,117,46.8,force,lower_fx,0.0038192837964743376 +illusion_1.5L,ppo,117,46.8,force,lower_fy,-0.00013365631457418203 +illusion_1.5L,ppo,118,47.2,force,front_fx,0.00195821444503963 +illusion_1.5L,ppo,118,47.2,force,front_fy,0.0016679690452292562 +illusion_1.5L,ppo,118,47.2,force,upper_fx,0.0028231951873749495 +illusion_1.5L,ppo,118,47.2,force,upper_fy,0.0018948273500427604 +illusion_1.5L,ppo,118,47.2,force,lower_fx,0.002408456290140748 +illusion_1.5L,ppo,118,47.2,force,lower_fy,-0.0005874952184967697 +illusion_1.5L,ppo,119,47.6,force,front_fx,0.002370608039200306 +illusion_1.5L,ppo,119,47.6,force,front_fy,0.002799440873786807 +illusion_1.5L,ppo,119,47.6,force,upper_fx,0.003239526180550456 +illusion_1.5L,ppo,119,47.6,force,upper_fy,0.0013436609879136086 +illusion_1.5L,ppo,119,47.6,force,lower_fx,0.0028774538077414036 +illusion_1.5L,ppo,119,47.6,force,lower_fy,-0.00012335619248915464 +illusion_1.5L,ppo,120,48.0,force,front_fx,0.0020517800003290176 +illusion_1.5L,ppo,120,48.0,force,front_fy,0.0005110017373226583 +illusion_1.5L,ppo,120,48.0,force,upper_fx,0.002713640918955207 +illusion_1.5L,ppo,120,48.0,force,upper_fy,0.0027808973100036383 +illusion_1.5L,ppo,120,48.0,force,lower_fx,0.0031112695578485727 +illusion_1.5L,ppo,120,48.0,force,lower_fy,0.0008539736154489219 +illusion_1.5L,ppo,121,48.4,force,front_fx,0.0026160862762480974 +illusion_1.5L,ppo,121,48.4,force,front_fy,-0.0009153620339930058 +illusion_1.5L,ppo,121,48.4,force,upper_fx,0.00365722575224936 +illusion_1.5L,ppo,121,48.4,force,upper_fy,0.003831724636256695 +illusion_1.5L,ppo,121,48.4,force,lower_fx,0.002704411745071411 +illusion_1.5L,ppo,121,48.4,force,lower_fy,0.001182764652185142 +illusion_1.5L,ppo,122,48.8,force,front_fx,0.002280107233673334 +illusion_1.5L,ppo,122,48.8,force,front_fy,0.00039372185710817575 +illusion_1.5L,ppo,122,48.8,force,upper_fx,0.003042345866560936 +illusion_1.5L,ppo,122,48.8,force,upper_fy,0.002417127601802349 +illusion_1.5L,ppo,122,48.8,force,lower_fx,0.0023076997604221106 +illusion_1.5L,ppo,122,48.8,force,lower_fy,0.00023023503308650106 +illusion_1.5L,ppo,123,49.2,force,front_fx,0.0018184779910370708 +illusion_1.5L,ppo,123,49.2,force,front_fy,0.001826847088523209 +illusion_1.5L,ppo,123,49.2,force,upper_fx,0.003472875338047743 +illusion_1.5L,ppo,123,49.2,force,upper_fy,0.0018547129584476352 +illusion_1.5L,ppo,123,49.2,force,lower_fx,0.002551798475906253 +illusion_1.5L,ppo,123,49.2,force,lower_fy,-0.00012725616397801787 +illusion_1.5L,ppo,124,49.6,force,front_fx,0.001897463807836175 +illusion_1.5L,ppo,124,49.6,force,front_fy,6.758887320756912e-05 +illusion_1.5L,ppo,124,49.6,force,upper_fx,0.0023628612980246544 +illusion_1.5L,ppo,124,49.6,force,upper_fy,0.0024733603931963444 +illusion_1.5L,ppo,124,49.6,force,lower_fx,0.002436918206512928 +illusion_1.5L,ppo,124,49.6,force,lower_fy,0.0001922701339935884 +illusion_1.5L,ppo,125,50.0,force,front_fx,0.003378847846761346 +illusion_1.5L,ppo,125,50.0,force,front_fy,-0.0017719235038384795 +illusion_1.5L,ppo,125,50.0,force,upper_fx,0.0024153953418135643 +illusion_1.5L,ppo,125,50.0,force,upper_fy,0.002534537110477686 +illusion_1.5L,ppo,125,50.0,force,lower_fx,0.0018838909454643726 +illusion_1.5L,ppo,125,50.0,force,lower_fy,0.0012041412992402911 +illusion_1.5L,ppo,126,50.4,force,front_fx,0.002505772514268756 +illusion_1.5L,ppo,126,50.4,force,front_fy,-0.00069179676938802 +illusion_1.5L,ppo,126,50.4,force,upper_fx,0.002978250617161393 +illusion_1.5L,ppo,126,50.4,force,upper_fy,0.0011325423838570714 +illusion_1.5L,ppo,126,50.4,force,lower_fx,0.0022818660363554955 +illusion_1.5L,ppo,126,50.4,force,lower_fy,3.406576070119627e-05 +illusion_1.5L,ppo,127,50.8,force,front_fx,0.0018960864981636405 +illusion_1.5L,ppo,127,50.8,force,front_fy,0.0010965829715132713 +illusion_1.5L,ppo,127,50.8,force,upper_fx,0.003772256663069129 +illusion_1.5L,ppo,127,50.8,force,upper_fy,0.0005451514734886587 +illusion_1.5L,ppo,127,50.8,force,lower_fx,0.003443680005148053 +illusion_1.5L,ppo,127,50.8,force,lower_fy,-0.0013200942194089293 +illusion_1.5L,ppo,128,51.2,force,front_fx,0.0015596714802086353 +illusion_1.5L,ppo,128,51.2,force,front_fy,-0.0007400301983579993 +illusion_1.5L,ppo,128,51.2,force,upper_fx,0.0030867939349263906 +illusion_1.5L,ppo,128,51.2,force,upper_fy,0.0014300106558948755 +illusion_1.5L,ppo,128,51.2,force,lower_fx,0.002994675887748599 +illusion_1.5L,ppo,128,51.2,force,lower_fy,-0.0019249561009928584 +illusion_1.5L,ppo,129,51.6,force,front_fx,0.003329353639855981 +illusion_1.5L,ppo,129,51.6,force,front_fy,-0.0030762171372771263 +illusion_1.5L,ppo,129,51.6,force,upper_fx,0.002250760095193982 +illusion_1.5L,ppo,129,51.6,force,upper_fy,0.0012269173748791218 +illusion_1.5L,ppo,129,51.6,force,lower_fx,0.0021351350005716085 +illusion_1.5L,ppo,129,51.6,force,lower_fy,-0.00032935189665295184 +illusion_1.5L,ppo,130,52.0,force,front_fx,0.002574959769845009 +illusion_1.5L,ppo,130,52.0,force,front_fy,-0.0020082572009414434 +illusion_1.5L,ppo,130,52.0,force,upper_fx,0.0030326058622449636 +illusion_1.5L,ppo,130,52.0,force,upper_fy,0.00023556036467198282 +illusion_1.5L,ppo,130,52.0,force,lower_fx,0.0027081742882728577 +illusion_1.5L,ppo,130,52.0,force,lower_fy,-0.0013556533958762884 +illusion_1.5L,ppo,131,52.4,force,front_fx,0.001930538914166391 +illusion_1.5L,ppo,131,52.4,force,front_fy,6.185092206578702e-05 +illusion_1.5L,ppo,131,52.4,force,upper_fx,0.0035381605848670006 +illusion_1.5L,ppo,131,52.4,force,upper_fy,-0.0006073361146263778 +illusion_1.5L,ppo,131,52.4,force,lower_fx,0.0035495648626238108 +illusion_1.5L,ppo,131,52.4,force,lower_fy,-0.002997996285557747 +illusion_1.5L,ppo,132,52.8,force,front_fx,0.001306154765188694 +illusion_1.5L,ppo,132,52.8,force,front_fy,-0.0010745811741799116 +illusion_1.5L,ppo,132,52.8,force,upper_fx,0.0032701531890779734 +illusion_1.5L,ppo,132,52.8,force,upper_fy,0.0005165941547602415 +illusion_1.5L,ppo,132,52.8,force,lower_fx,0.0033937098924070597 +illusion_1.5L,ppo,132,52.8,force,lower_fy,-0.0035779064055532217 +illusion_1.5L,ppo,133,53.2,force,front_fx,0.0026119884569197893 +illusion_1.5L,ppo,133,53.2,force,front_fy,-0.0036862867418676615 +illusion_1.5L,ppo,133,53.2,force,upper_fx,0.0022028188686817884 +illusion_1.5L,ppo,133,53.2,force,upper_fy,0.00034590388531796634 +illusion_1.5L,ppo,133,53.2,force,lower_fx,0.002899985993281007 +illusion_1.5L,ppo,133,53.2,force,lower_fy,-0.0015459742862731218 +illusion_1.5L,ppo,134,53.6,force,front_fx,0.0020514109637588263 +illusion_1.5L,ppo,134,53.6,force,front_fy,-0.002418167656287551 +illusion_1.5L,ppo,134,53.6,force,upper_fx,0.003070524428039789 +illusion_1.5L,ppo,134,53.6,force,upper_fy,9.824090375332162e-05 +illusion_1.5L,ppo,134,53.6,force,lower_fx,0.0035432176664471626 +illusion_1.5L,ppo,134,53.6,force,lower_fy,-0.0020946029108017683 +illusion_1.5L,ppo,135,54.0,force,front_fx,0.0025946693494915962 +illusion_1.5L,ppo,135,54.0,force,front_fy,0.0004304597096052021 +illusion_1.5L,ppo,135,54.0,force,upper_fx,0.002796789165586233 +illusion_1.5L,ppo,135,54.0,force,upper_fy,-0.0013656372902914882 +illusion_1.5L,ppo,135,54.0,force,lower_fx,0.0033190720714628696 +illusion_1.5L,ppo,135,54.0,force,lower_fy,-0.0031499071046710014 +illusion_1.5L,ppo,136,54.4,force,front_fx,0.0024977531284093857 +illusion_1.5L,ppo,136,54.4,force,front_fy,-8.463586709694937e-05 +illusion_1.5L,ppo,136,54.4,force,upper_fx,0.0027698343619704247 +illusion_1.5L,ppo,136,54.4,force,upper_fy,-0.0005537298275157809 +illusion_1.5L,ppo,136,54.4,force,lower_fx,0.003459729952737689 +illusion_1.5L,ppo,136,54.4,force,lower_fy,-0.0032031377777457237 +illusion_1.5L,ppo,137,54.8,force,front_fx,0.0019402620382606983 +illusion_1.5L,ppo,137,54.8,force,front_fy,-0.0017178308917209506 +illusion_1.5L,ppo,137,54.8,force,upper_fx,0.0025106442626565695 +illusion_1.5L,ppo,137,54.8,force,upper_fy,0.00047206823364831507 +illusion_1.5L,ppo,137,54.8,force,lower_fx,0.0033701055217534304 +illusion_1.5L,ppo,137,54.8,force,lower_fy,-0.001348690944723785 +illusion_1.5L,ppo,138,55.2,force,front_fx,0.0015414393274113536 +illusion_1.5L,ppo,138,55.2,force,front_fy,-0.000762981129810214 +illusion_1.5L,ppo,138,55.2,force,upper_fx,0.00341054773889482 +illusion_1.5L,ppo,138,55.2,force,upper_fy,0.0015620068879798055 +illusion_1.5L,ppo,138,55.2,force,lower_fx,0.004507821053266525 +illusion_1.5L,ppo,138,55.2,force,lower_fy,-0.0017532962374389172 +illusion_1.5L,ppo,139,55.6,force,front_fx,0.002846037968993187 +illusion_1.5L,ppo,139,55.6,force,front_fy,0.0014358169864863157 +illusion_1.5L,ppo,139,55.6,force,upper_fx,0.0017054128693416715 +illusion_1.5L,ppo,139,55.6,force,upper_fy,0.0002507365425117314 +illusion_1.5L,ppo,139,55.6,force,lower_fx,0.0025803684256970882 +illusion_1.5L,ppo,139,55.6,force,lower_fy,-0.0015814967919141054 +illusion_1.5L,ppo,140,56.0,force,front_fx,0.0025408396031707525 +illusion_1.5L,ppo,140,56.0,force,front_fy,0.0014586232136934996 +illusion_1.5L,ppo,140,56.0,force,upper_fx,0.0020695168059319258 +illusion_1.5L,ppo,140,56.0,force,upper_fy,0.0006111376569606364 +illusion_1.5L,ppo,140,56.0,force,lower_fx,0.003268590196967125 +illusion_1.5L,ppo,140,56.0,force,lower_fy,-0.0006750503089278936 +illusion_1.5L,ppo,141,56.4,force,front_fx,0.0018211979186162353 +illusion_1.5L,ppo,141,56.4,force,front_fy,-0.00025156818446703255 +illusion_1.5L,ppo,141,56.4,force,upper_fx,0.0032626488246023655 +illusion_1.5L,ppo,141,56.4,force,upper_fy,0.0024524605832993984 +illusion_1.5L,ppo,141,56.4,force,lower_fx,0.003969247452914715 +illusion_1.5L,ppo,141,56.4,force,lower_fy,0.0004312720848247409 +illusion_1.5L,ppo,142,56.8,force,front_fx,0.0015012564836069942 +illusion_1.5L,ppo,142,56.8,force,front_fy,4.65130724478513e-05 +illusion_1.5L,ppo,142,56.8,force,upper_fx,0.0038779843598604202 +illusion_1.5L,ppo,142,56.8,force,upper_fy,0.003669144120067358 +illusion_1.5L,ppo,142,56.8,force,lower_fx,0.0039936089888215065 +illusion_1.5L,ppo,142,56.8,force,lower_fy,-0.00031889151432551444 +illusion_1.5L,ppo,143,57.2,force,front_fx,0.0020531294867396355 +illusion_1.5L,ppo,143,57.2,force,front_fy,0.0022589988075196743 +illusion_1.5L,ppo,143,57.2,force,upper_fx,0.0030395102221518755 +illusion_1.5L,ppo,143,57.2,force,upper_fy,0.0019409864908084273 +illusion_1.5L,ppo,143,57.2,force,lower_fx,0.0023468071594834328 +illusion_1.5L,ppo,143,57.2,force,lower_fy,-0.0004866344970650971 +illusion_1.5L,ppo,144,57.6,force,front_fx,0.002132234862074256 +illusion_1.5L,ppo,144,57.6,force,front_fy,0.0024883016012609005 +illusion_1.5L,ppo,144,57.6,force,upper_fx,0.0037426785565912724 +illusion_1.5L,ppo,144,57.6,force,upper_fy,0.0019602745305746794 +illusion_1.5L,ppo,144,57.6,force,lower_fx,0.003101280890405178 +illusion_1.5L,ppo,144,57.6,force,lower_fy,-4.051069481647573e-06 +illusion_1.5L,ppo,145,58.0,force,front_fx,0.0022860681638121605 +illusion_1.5L,ppo,145,58.0,force,front_fy,0.00023662201419938356 +illusion_1.5L,ppo,145,58.0,force,upper_fx,0.0028085641097277403 +illusion_1.5L,ppo,145,58.0,force,upper_fy,0.003274618647992611 +illusion_1.5L,ppo,145,58.0,force,lower_fx,0.0027731272857636213 +illusion_1.5L,ppo,145,58.0,force,lower_fy,0.0012784912250936031 +illusion_1.5L,ppo,146,58.4,force,front_fx,0.0025870702229440212 +illusion_1.5L,ppo,146,58.4,force,front_fy,-0.0004076931218151003 +illusion_1.5L,ppo,146,58.4,force,upper_fx,0.003386937314644456 +illusion_1.5L,ppo,146,58.4,force,upper_fy,0.003375639673322439 +illusion_1.5L,ppo,146,58.4,force,lower_fx,0.0023348270915448666 +illusion_1.5L,ppo,146,58.4,force,lower_fy,0.0010248823091387749 +illusion_1.5L,ppo,147,58.8,force,front_fx,0.002114733448252082 +illusion_1.5L,ppo,147,58.8,force,front_fy,0.0009554560529068112 +illusion_1.5L,ppo,147,58.8,force,upper_fx,0.004117166623473167 +illusion_1.5L,ppo,147,58.8,force,upper_fy,0.0013352652313187718 +illusion_1.5L,ppo,147,58.8,force,lower_fx,0.0021824960131198168 +illusion_1.5L,ppo,147,58.8,force,lower_fy,0.0003543359343893826 +illusion_1.5L,ppo,148,59.2,force,front_fx,0.0015554070705547929 +illusion_1.5L,ppo,148,59.2,force,front_fy,0.001136878621764481 +illusion_1.5L,ppo,148,59.2,force,upper_fx,0.005282172001898289 +illusion_1.5L,ppo,148,59.2,force,upper_fy,0.0017412694869562984 +illusion_1.5L,ppo,148,59.2,force,lower_fx,0.0032747758086770773 +illusion_1.5L,ppo,148,59.2,force,lower_fy,-0.0006855870597064495 +illusion_1.5L,ppo,149,59.6,force,front_fx,0.002579144900664687 +illusion_1.5L,ppo,149,59.6,force,front_fy,-0.00108238379471004 +illusion_1.5L,ppo,149,59.6,force,upper_fx,0.0029911070596426725 +illusion_1.5L,ppo,149,59.6,force,upper_fy,0.0022716952953487635 +illusion_1.5L,ppo,149,59.6,force,lower_fx,0.0019798881839960814 +illusion_1.5L,ppo,149,59.6,force,lower_fy,-0.0001092208840418607 +illusion_1.5L,ppo,150,60.0,force,front_fx,0.003448729170486331 +illusion_1.5L,ppo,150,60.0,force,front_fy,-0.0019265180453658104 +illusion_1.5L,ppo,150,60.0,force,upper_fx,0.002953167539089918 +illusion_1.5L,ppo,150,60.0,force,upper_fy,0.0016248577740043402 +illusion_1.5L,ppo,150,60.0,force,lower_fx,0.0017397769261151552 +illusion_1.5L,ppo,150,60.0,force,lower_fy,0.000224731134949252 +illusion_1.5L,ppo,151,60.4,force,front_fx,0.0021299421787261963 +illusion_1.5L,ppo,151,60.4,force,front_fy,-0.00047519474173896015 +illusion_1.5L,ppo,151,60.4,force,upper_fx,0.003803998464718461 +illusion_1.5L,ppo,151,60.4,force,upper_fy,0.00024755430058576167 +illusion_1.5L,ppo,151,60.4,force,lower_fx,0.002765299053862691 +illusion_1.5L,ppo,151,60.4,force,lower_fy,-0.0012435622047632933 +illusion_1.5L,ppo,152,60.8,force,front_fx,0.0014836281770840287 +illusion_1.5L,ppo,152,60.8,force,front_fy,0.000244365306571126 +illusion_1.5L,ppo,152,60.8,force,upper_fx,0.004533466883003712 +illusion_1.5L,ppo,152,60.8,force,upper_fy,0.0008190629887394607 +illusion_1.5L,ppo,152,60.8,force,lower_fx,0.0041678231209516525 +illusion_1.5L,ppo,152,60.8,force,lower_fy,-0.003109447890892625 +illusion_1.5L,ppo,153,61.2,force,front_fx,0.0019402004545554519 +illusion_1.5L,ppo,153,61.2,force,front_fy,-0.0017447177087888122 +illusion_1.5L,ppo,153,61.2,force,upper_fx,0.002694784663617611 +illusion_1.5L,ppo,153,61.2,force,upper_fy,0.0012760283425450325 +illusion_1.5L,ppo,153,61.2,force,lower_fx,0.0030420413240790367 +illusion_1.5L,ppo,153,61.2,force,lower_fy,-0.002791463630273938 +illusion_1.5L,ppo,154,61.6,force,front_fx,0.0025665881112217903 +illusion_1.5L,ppo,154,61.6,force,front_fy,-0.0029531631153076887 +illusion_1.5L,ppo,154,61.6,force,upper_fx,0.002400911645963788 +illusion_1.5L,ppo,154,61.6,force,upper_fy,0.000829812721349299 +illusion_1.5L,ppo,154,61.6,force,lower_fx,0.00292600248940289 +illusion_1.5L,ppo,154,61.6,force,lower_fy,-0.0020030387677252293 +illusion_1.5L,ppo,155,62.0,force,front_fx,0.0020859716460108757 +illusion_1.5L,ppo,155,62.0,force,front_fy,-0.001590769155882299 +illusion_1.5L,ppo,155,62.0,force,upper_fx,0.0030899906996637583 +illusion_1.5L,ppo,155,62.0,force,upper_fy,-0.0004689533670898527 +illusion_1.5L,ppo,155,62.0,force,lower_fx,0.003065924160182476 +illusion_1.5L,ppo,155,62.0,force,lower_fy,-0.0030584759078919888 +illusion_1.5L,ppo,156,62.4,force,front_fx,0.002065439010038972 +illusion_1.5L,ppo,156,62.4,force,front_fy,-0.00020600408606696874 +illusion_1.5L,ppo,156,62.4,force,upper_fx,0.002764221513643861 +illusion_1.5L,ppo,156,62.4,force,upper_fy,-0.0008545240852981806 +illusion_1.5L,ppo,156,62.4,force,lower_fx,0.0035672527737915516 +illusion_1.5L,ppo,156,62.4,force,lower_fy,-0.003941153641790152 +illusion_1.5L,ppo,157,62.8,force,front_fx,0.001701569533906877 +illusion_1.5L,ppo,157,62.8,force,front_fy,-0.0017412203596904874 +illusion_1.5L,ppo,157,62.8,force,upper_fx,0.0020697982981801033 +illusion_1.5L,ppo,157,62.8,force,upper_fy,-3.3993735996773466e-05 +illusion_1.5L,ppo,157,62.8,force,lower_fx,0.0038465061224997044 +illusion_1.5L,ppo,157,62.8,force,lower_fy,-0.0024655612651258707 +illusion_1.5L,ppo,158,63.2,force,front_fx,0.002404215279966593 +illusion_1.5L,ppo,158,63.2,force,front_fy,-0.003411737969145179 +illusion_1.5L,ppo,158,63.2,force,upper_fx,0.003048058832064271 +illusion_1.5L,ppo,158,63.2,force,upper_fy,0.0003880638687405735 +illusion_1.5L,ppo,158,63.2,force,lower_fx,0.005138504318892956 +illusion_1.5L,ppo,158,63.2,force,lower_fy,-0.0011385715333744884 +illusion_1.5L,ppo,159,63.6,force,front_fx,0.002200281247496605 +illusion_1.5L,ppo,159,63.6,force,front_fy,-0.001359933172352612 +illusion_1.5L,ppo,159,63.6,force,upper_fx,0.002881200984120369 +illusion_1.5L,ppo,159,63.6,force,upper_fy,-0.00013710274652112275 +illusion_1.5L,ppo,159,63.6,force,lower_fx,0.004396896809339523 +illusion_1.5L,ppo,159,63.6,force,lower_fy,-0.001778511214070022 +illusion_1.5L,ppo,160,64.0,force,front_fx,0.00318513298407197 +illusion_1.5L,ppo,160,64.0,force,front_fy,0.0013404105557128787 +illusion_1.5L,ppo,160,64.0,force,upper_fx,0.001952338614501059 +illusion_1.5L,ppo,160,64.0,force,upper_fy,-0.0015650077257305384 +illusion_1.5L,ppo,160,64.0,force,lower_fx,0.003810877213254571 +illusion_1.5L,ppo,160,64.0,force,lower_fy,-0.002096551703289151 +illusion_1.5L,ppo,161,64.4,force,front_fx,0.0023673258256167173 +illusion_1.5L,ppo,161,64.4,force,front_fy,1.134174544858979e-05 +illusion_1.5L,ppo,161,64.4,force,upper_fx,0.002458942122757435 +illusion_1.5L,ppo,161,64.4,force,upper_fy,5.658578083966859e-05 +illusion_1.5L,ppo,161,64.4,force,lower_fx,0.0038994038477540016 +illusion_1.5L,ppo,161,64.4,force,lower_fy,-0.0016094653401523829 +illusion_1.5L,ppo,162,64.8,force,front_fx,0.0016342285089194775 +illusion_1.5L,ppo,162,64.8,force,front_fy,-0.0022528953850269318 +illusion_1.5L,ppo,162,64.8,force,upper_fx,0.00467515317723155 +illusion_1.5L,ppo,162,64.8,force,upper_fy,0.002083387691527605 +illusion_1.5L,ppo,162,64.8,force,lower_fx,0.004787985701113939 +illusion_1.5L,ppo,162,64.8,force,lower_fy,-0.0005054496577940881 +illusion_1.5L,ppo,163,65.2,force,front_fx,0.0013687468599528074 +illusion_1.5L,ppo,163,65.2,force,front_fy,-9.467093332204968e-05 +illusion_1.5L,ppo,163,65.2,force,upper_fx,0.004247422330081463 +illusion_1.5L,ppo,163,65.2,force,upper_fy,0.0038079428486526012 +illusion_1.5L,ppo,163,65.2,force,lower_fx,0.005283684004098177 +illusion_1.5L,ppo,163,65.2,force,lower_fy,-0.002017840975895524 +illusion_1.5L,ppo,164,65.6,force,front_fx,0.002923421561717987 +illusion_1.5L,ppo,164,65.6,force,front_fy,0.0025020528119057417 +illusion_1.5L,ppo,164,65.6,force,upper_fx,0.002359046833589673 +illusion_1.5L,ppo,164,65.6,force,upper_fy,0.0017017762875184417 +illusion_1.5L,ppo,164,65.6,force,lower_fx,0.002840940374881029 +illusion_1.5L,ppo,164,65.6,force,lower_fy,-0.0014891762984916568 +illusion_1.5L,ppo,165,66.0,force,front_fx,0.0021067208144813776 +illusion_1.5L,ppo,165,66.0,force,front_fy,0.0015370436012744904 +illusion_1.5L,ppo,165,66.0,force,upper_fx,0.002836209023371339 +illusion_1.5L,ppo,165,66.0,force,upper_fy,0.0025736771058291197 +illusion_1.5L,ppo,165,66.0,force,lower_fx,0.0031855592969805002 +illusion_1.5L,ppo,165,66.0,force,lower_fy,-0.0009273091563954949 +illusion_1.5L,ppo,166,66.4,force,front_fx,0.0019872908014804125 +illusion_1.5L,ppo,166,66.4,force,front_fy,-0.00041058403439819813 +illusion_1.5L,ppo,166,66.4,force,upper_fx,0.0033076456747949123 +illusion_1.5L,ppo,166,66.4,force,upper_fy,0.0044974819757044315 +illusion_1.5L,ppo,166,66.4,force,lower_fx,0.0030287958215922117 +illusion_1.5L,ppo,166,66.4,force,lower_fy,0.0004975073970854282 +illusion_1.5L,ppo,167,66.8,force,front_fx,0.0017166136531159282 +illusion_1.5L,ppo,167,66.8,force,front_fy,0.000367544824257493 +illusion_1.5L,ppo,167,66.8,force,upper_fx,0.003888011211529374 +illusion_1.5L,ppo,167,66.8,force,upper_fy,0.004342486150562763 +illusion_1.5L,ppo,167,66.8,force,lower_fx,0.003060984890908003 +illusion_1.5L,ppo,167,66.8,force,lower_fy,-2.386434289292083e-06 +illusion_1.5L,ppo,168,67.2,force,front_fx,0.002258431864902377 +illusion_1.5L,ppo,168,67.2,force,front_fy,0.002716450020670891 +illusion_1.5L,ppo,168,67.2,force,upper_fx,0.004275861661881208 +illusion_1.5L,ppo,168,67.2,force,upper_fy,0.0019732615910470486 +illusion_1.5L,ppo,168,67.2,force,lower_fx,0.002076799515634775 +illusion_1.5L,ppo,168,67.2,force,lower_fy,6.449915963457897e-05 +illusion_1.5L,ppo,169,67.6,force,front_fx,0.001923541771247983 +illusion_1.5L,ppo,169,67.6,force,front_fy,0.0019294751109555364 +illusion_1.5L,ppo,169,67.6,force,upper_fx,0.005139896180480719 +illusion_1.5L,ppo,169,67.6,force,upper_fy,0.0022742939181625843 +illusion_1.5L,ppo,169,67.6,force,lower_fx,0.003086647018790245 +illusion_1.5L,ppo,169,67.6,force,lower_fy,-0.00017182629380840808 +illusion_1.5L,ppo,170,68.0,force,front_fx,0.0029288188088685274 +illusion_1.5L,ppo,170,68.0,force,front_fy,-0.0009158079046756029 +illusion_1.5L,ppo,170,68.0,force,upper_fx,0.003424517111852765 +illusion_1.5L,ppo,170,68.0,force,upper_fy,0.003473209450021386 +illusion_1.5L,ppo,170,68.0,force,lower_fx,0.0018328125588595867 +illusion_1.5L,ppo,170,68.0,force,lower_fy,0.0012604290386661887 +illusion_1.5L,ppo,171,68.4,force,front_fx,0.002725927857682109 +illusion_1.5L,ppo,171,68.4,force,front_fy,-0.00038791802944615483 +illusion_1.5L,ppo,171,68.4,force,upper_fx,0.003656890941783786 +illusion_1.5L,ppo,171,68.4,force,upper_fy,0.003220797749236226 +illusion_1.5L,ppo,171,68.4,force,lower_fx,0.0020272796973586082 +illusion_1.5L,ppo,171,68.4,force,lower_fy,0.0006009049247950315 +illusion_1.5L,ppo,172,68.8,force,front_fx,0.0019503788789734244 +illusion_1.5L,ppo,172,68.8,force,front_fy,0.0018085385672748089 +illusion_1.5L,ppo,172,68.8,force,upper_fx,0.0045538898557424545 +illusion_1.5L,ppo,172,68.8,force,upper_fy,0.0012120832689106464 +illusion_1.5L,ppo,172,68.8,force,lower_fx,0.003078156616538763 +illusion_1.5L,ppo,172,68.8,force,lower_fy,-0.0005705307703465223 +illusion_1.5L,ppo,173,69.2,force,front_fx,0.0012752949260175228 +illusion_1.5L,ppo,173,69.2,force,front_fy,0.0008521664422005415 +illusion_1.5L,ppo,173,69.2,force,upper_fx,0.0054898071102797985 +illusion_1.5L,ppo,173,69.2,force,upper_fy,0.002265209797769785 +illusion_1.5L,ppo,173,69.2,force,lower_fx,0.0040866718627512455 +illusion_1.5L,ppo,173,69.2,force,lower_fy,-0.0025526664685457945 +illusion_1.5L,ppo,174,69.6,force,front_fx,0.002687174128368497 +illusion_1.5L,ppo,174,69.6,force,front_fy,-0.0016898374306038022 +illusion_1.5L,ppo,174,69.6,force,upper_fx,0.0026154760271310806 +illusion_1.5L,ppo,174,69.6,force,upper_fy,0.0026707276701927185 +illusion_1.5L,ppo,174,69.6,force,lower_fx,0.00198739324696362 +illusion_1.5L,ppo,174,69.6,force,lower_fy,-0.001244253246113658 +illusion_1.5L,ppo,175,70.0,force,front_fx,0.0027221667114645243 +illusion_1.5L,ppo,175,70.0,force,front_fy,-0.0016510381828993559 +illusion_1.5L,ppo,175,70.0,force,upper_fx,0.002843510126695037 +illusion_1.5L,ppo,175,70.0,force,upper_fy,0.0017070696922019124 +illusion_1.5L,ppo,175,70.0,force,lower_fx,0.002285667695105076 +illusion_1.5L,ppo,175,70.0,force,lower_fy,-0.0016140899388119578 +illusion_1.5L,ppo,176,70.4,force,front_fx,0.001858007162809372 +illusion_1.5L,ppo,176,70.4,force,front_fy,-0.000323313259286806 +illusion_1.5L,ppo,176,70.4,force,upper_fx,0.0033637755550444126 +illusion_1.5L,ppo,176,70.4,force,upper_fy,0.00014024306437931955 +illusion_1.5L,ppo,176,70.4,force,lower_fx,0.0028257612138986588 +illusion_1.5L,ppo,176,70.4,force,lower_fy,-0.0033367956057190895 +illusion_1.5L,ppo,177,70.8,force,front_fx,0.0015964554622769356 +illusion_1.5L,ppo,177,70.8,force,front_fy,-0.0005046123405918479 +illusion_1.5L,ppo,177,70.8,force,upper_fx,0.003442520508542657 +illusion_1.5L,ppo,177,70.8,force,upper_fy,0.0007283593877218664 +illusion_1.5L,ppo,177,70.8,force,lower_fx,0.0037865503691136837 +illusion_1.5L,ppo,177,70.8,force,lower_fy,-0.004115839023143053 +illusion_1.5L,ppo,178,71.2,force,front_fx,0.002194239990785718 +illusion_1.5L,ppo,178,71.2,force,front_fy,-0.0024480349384248257 +illusion_1.5L,ppo,178,71.2,force,upper_fx,0.0016772825038060546 +illusion_1.5L,ppo,178,71.2,force,upper_fy,0.0010835272260010242 +illusion_1.5L,ppo,178,71.2,force,lower_fx,0.003407105104997754 +illusion_1.5L,ppo,178,71.2,force,lower_fy,-0.002312049502506852 +illusion_1.5L,ppo,179,71.6,force,front_fx,0.002143437508493662 +illusion_1.5L,ppo,179,71.6,force,front_fy,-0.002500315895304084 +illusion_1.5L,ppo,179,71.6,force,upper_fx,0.0025153011083602905 +illusion_1.5L,ppo,179,71.6,force,upper_fy,0.0007017950993031263 +illusion_1.5L,ppo,179,71.6,force,lower_fx,0.004025537054985762 +illusion_1.5L,ppo,179,71.6,force,lower_fy,-0.0024008743930608034 +illusion_1.5L,ppo,180,72.0,force,front_fx,0.00221642036922276 +illusion_1.5L,ppo,180,72.0,force,front_fy,-0.0005565022584050894 +illusion_1.5L,ppo,180,72.0,force,upper_fx,0.00273089949041605 +illusion_1.5L,ppo,180,72.0,force,upper_fy,-0.0010897716274484992 +illusion_1.5L,ppo,180,72.0,force,lower_fx,0.0033315401524305344 +illusion_1.5L,ppo,180,72.0,force,lower_fy,-0.0038709489163011312 +illusion_1.5L,ppo,181,72.4,force,front_fx,0.0018858109833672643 +illusion_1.5L,ppo,181,72.4,force,front_fy,-0.0005502726999111474 +illusion_1.5L,ppo,181,72.4,force,upper_fx,0.0029652409721165895 +illusion_1.5L,ppo,181,72.4,force,upper_fy,-0.00047045943210832775 +illusion_1.5L,ppo,181,72.4,force,lower_fx,0.004134703427553177 +illusion_1.5L,ppo,181,72.4,force,lower_fy,-0.004592739976942539 +illusion_1.5L,ppo,182,72.8,force,front_fx,0.001927063800394535 +illusion_1.5L,ppo,182,72.8,force,front_fy,-0.0030087612103670835 +illusion_1.5L,ppo,182,72.8,force,upper_fx,0.0023803357034921646 +illusion_1.5L,ppo,182,72.8,force,upper_fy,0.0007071020663715899 +illusion_1.5L,ppo,182,72.8,force,lower_fx,0.004173285327851772 +illusion_1.5L,ppo,182,72.8,force,lower_fy,-0.0020934976637363434 +illusion_1.5L,ppo,183,73.2,force,front_fx,0.002035403624176979 +illusion_1.5L,ppo,183,73.2,force,front_fy,-0.00266295881010592 +illusion_1.5L,ppo,183,73.2,force,upper_fx,0.00376947782933712 +illusion_1.5L,ppo,183,73.2,force,upper_fy,0.0015117648290470243 +illusion_1.5L,ppo,183,73.2,force,lower_fx,0.0057832421734929085 +illusion_1.5L,ppo,183,73.2,force,lower_fy,-0.002189554972574115 +illusion_1.5L,ppo,184,73.6,force,front_fx,0.0025383003521710634 +illusion_1.5L,ppo,184,73.6,force,front_fy,2.621271414682269e-05 +illusion_1.5L,ppo,184,73.6,force,upper_fx,0.0024081396404653788 +illusion_1.5L,ppo,184,73.6,force,upper_fy,-0.0003457010898273438 +illusion_1.5L,ppo,184,73.6,force,lower_fx,0.003355220193043351 +illusion_1.5L,ppo,184,73.6,force,lower_fy,-0.0027565944474190474 +illusion_1.5L,ppo,185,74.0,force,front_fx,0.0027950569055974483 +illusion_1.5L,ppo,185,74.0,force,front_fy,0.0008968598558567464 +illusion_1.5L,ppo,185,74.0,force,upper_fx,0.002470887266099453 +illusion_1.5L,ppo,185,74.0,force,upper_fy,-0.0004978403449058533 +illusion_1.5L,ppo,185,74.0,force,lower_fx,0.0034751114435493946 +illusion_1.5L,ppo,185,74.0,force,lower_fy,-0.0023261872120201588 +illusion_1.5L,ppo,186,74.4,force,front_fx,0.002113687340170145 +illusion_1.5L,ppo,186,74.4,force,front_fy,-0.0007821914623491466 +illusion_1.5L,ppo,186,74.4,force,upper_fx,0.0024271386209875345 +illusion_1.5L,ppo,186,74.4,force,upper_fy,0.001101115602068603 +illusion_1.5L,ppo,186,74.4,force,lower_fx,0.0036235800944268703 +illusion_1.5L,ppo,186,74.4,force,lower_fy,-0.0006405793828889728 +illusion_1.5L,ppo,187,74.8,force,front_fx,0.0016830372624099255 +illusion_1.5L,ppo,187,74.8,force,front_fy,-0.0014328317483887076 +illusion_1.5L,ppo,187,74.8,force,upper_fx,0.003831748152151704 +illusion_1.5L,ppo,187,74.8,force,upper_fy,0.002754510845988989 +illusion_1.5L,ppo,187,74.8,force,lower_fx,0.004320257343351841 +illusion_1.5L,ppo,187,74.8,force,lower_fy,-0.0008492656052112579 +illusion_1.5L,ppo,188,75.2,force,front_fx,0.002085217507556081 +illusion_1.5L,ppo,188,75.2,force,front_fy,0.0008260198519565165 +illusion_1.5L,ppo,188,75.2,force,upper_fx,0.0028942825738340616 +illusion_1.5L,ppo,188,75.2,force,upper_fy,0.0016580384690314531 +illusion_1.5L,ppo,188,75.2,force,lower_fx,0.0027399789541959763 +illusion_1.5L,ppo,188,75.2,force,lower_fy,-0.0013503080699592829 +illusion_1.5L,ppo,189,75.6,force,front_fx,0.002704510698094964 +illusion_1.5L,ppo,189,75.6,force,front_fy,0.0023042336106300354 +illusion_1.5L,ppo,189,75.6,force,upper_fx,0.002962075872346759 +illusion_1.5L,ppo,189,75.6,force,upper_fy,0.0008308669202961028 +illusion_1.5L,ppo,189,75.6,force,lower_fx,0.0027881937567144632 +illusion_1.5L,ppo,189,75.6,force,lower_fy,-0.0007501702639274299 +illusion_1.5L,ppo,190,76.0,force,front_fx,0.0019861955661326647 +illusion_1.5L,ppo,190,76.0,force,front_fy,0.0005211812094785273 +illusion_1.5L,ppo,190,76.0,force,upper_fx,0.0026790767442435026 +illusion_1.5L,ppo,190,76.0,force,upper_fy,0.0023293232079595327 +illusion_1.5L,ppo,190,76.0,force,lower_fx,0.0032169269397854805 +illusion_1.5L,ppo,190,76.0,force,lower_fy,0.0003731813339982182 +illusion_1.5L,ppo,191,76.4,force,front_fx,0.002175340661779046 +illusion_1.5L,ppo,191,76.4,force,front_fy,-0.0008875148487277329 +illusion_1.5L,ppo,191,76.4,force,upper_fx,0.004003541544079781 +illusion_1.5L,ppo,191,76.4,force,upper_fy,0.003986576572060585 +illusion_1.5L,ppo,191,76.4,force,lower_fx,0.003235965734347701 +illusion_1.5L,ppo,191,76.4,force,lower_fy,0.000732521410100162 +illusion_1.5L,ppo,192,76.8,force,front_fx,0.0018875187961384654 +illusion_1.5L,ppo,192,76.8,force,front_fy,0.0011653444962576032 +illusion_1.5L,ppo,192,76.8,force,upper_fx,0.003619972849264741 +illusion_1.5L,ppo,192,76.8,force,upper_fy,0.002677476964890957 +illusion_1.5L,ppo,192,76.8,force,lower_fx,0.0027487988118082285 +illusion_1.5L,ppo,192,76.8,force,lower_fy,-0.00016980864165816456 +illusion_1.5L,ppo,193,77.2,force,front_fx,0.0026150124613195658 +illusion_1.5L,ppo,193,77.2,force,front_fy,0.0033322020899504423 +illusion_1.5L,ppo,193,77.2,force,upper_fx,0.004021570086479187 +illusion_1.5L,ppo,193,77.2,force,upper_fy,0.0014116986421868205 +illusion_1.5L,ppo,193,77.2,force,lower_fx,0.0028211281169205904 +illusion_1.5L,ppo,193,77.2,force,lower_fy,9.939977644535247e-06 +illusion_1.5L,ppo,194,77.6,force,front_fx,0.002080010250210762 +illusion_1.5L,ppo,194,77.6,force,front_fy,0.0013297460973262787 +illusion_1.5L,ppo,194,77.6,force,upper_fx,0.0034660445526242256 +illusion_1.5L,ppo,194,77.6,force,upper_fy,0.0023330622352659702 +illusion_1.5L,ppo,194,77.6,force,lower_fx,0.003210807219147682 +illusion_1.5L,ppo,194,77.6,force,lower_fy,0.00041890793363563716 +illusion_1.5L,ppo,195,78.0,force,front_fx,0.0029433860909193754 +illusion_1.5L,ppo,195,78.0,force,front_fy,-0.001334356958977878 +illusion_1.5L,ppo,195,78.0,force,upper_fx,0.0040368675254285336 +illusion_1.5L,ppo,195,78.0,force,upper_fy,0.0037378070410341024 +illusion_1.5L,ppo,195,78.0,force,lower_fx,0.0025307037867605686 +illusion_1.5L,ppo,195,78.0,force,lower_fy,0.0015231212601065636 +illusion_1.5L,ppo,196,78.4,force,front_fx,0.002503331983461976 +illusion_1.5L,ppo,196,78.4,force,front_fy,-0.00012062743189744651 +illusion_1.5L,ppo,196,78.4,force,upper_fx,0.0033962451852858067 +illusion_1.5L,ppo,196,78.4,force,upper_fy,0.0030759454239159822 +illusion_1.5L,ppo,196,78.4,force,lower_fx,0.002674766117706895 +illusion_1.5L,ppo,196,78.4,force,lower_fy,8.472338959109038e-05 +illusion_1.5L,ppo,197,78.8,force,front_fx,0.002069255569949746 +illusion_1.5L,ppo,197,78.8,force,front_fy,0.001935678767040372 +illusion_1.5L,ppo,197,78.8,force,upper_fx,0.0038232922088354826 +illusion_1.5L,ppo,197,78.8,force,upper_fy,0.0016095541650429368 +illusion_1.5L,ppo,197,78.8,force,lower_fx,0.0027930913493037224 +illusion_1.5L,ppo,197,78.8,force,lower_fy,-0.0007601719116792083 +illusion_1.5L,ppo,198,79.2,force,front_fx,0.0014438311336562037 +illusion_1.5L,ppo,198,79.2,force,front_fy,0.0003966227232012898 +illusion_1.5L,ppo,198,79.2,force,upper_fx,0.0037883459590375423 +illusion_1.5L,ppo,198,79.2,force,upper_fy,0.002340122824534774 +illusion_1.5L,ppo,198,79.2,force,lower_fx,0.003012146567925811 +illusion_1.5L,ppo,198,79.2,force,lower_fy,-0.001360610593110323 +illusion_1.5L,ppo,199,79.6,force,front_fx,0.0034699097741395235 +illusion_1.5L,ppo,199,79.6,force,front_fy,-0.0022678948007524014 +illusion_1.5L,ppo,199,79.6,force,upper_fx,0.0021449357736855745 +illusion_1.5L,ppo,199,79.6,force,upper_fy,0.0023710522800683975 +illusion_1.5L,ppo,199,79.6,force,lower_fx,0.0019981013610959053 +illusion_1.5L,ppo,199,79.6,force,lower_fy,0.0003939667949452996 +illusion_1.5L,ppo,0,0.0,alpha,front,0.09680777788162231 +illusion_1.5L,ppo,0,0.0,alpha,upper,0.11353611946105957 +illusion_1.5L,ppo,0,0.0,alpha,lower,-1.4022693634033203 +illusion_1.5L,ppo,1,0.4,alpha,front,0.4075251519680023 +illusion_1.5L,ppo,1,0.4,alpha,upper,1.4383041858673096 +illusion_1.5L,ppo,1,0.4,alpha,lower,0.017417073249816895 +illusion_1.5L,ppo,2,0.8,alpha,front,0.41850635409355164 +illusion_1.5L,ppo,2,0.8,alpha,upper,2.476019859313965 +illusion_1.5L,ppo,2,0.8,alpha,lower,1.4723840951919556 +illusion_1.5L,ppo,3,1.2,alpha,front,1.1617212295532227 +illusion_1.5L,ppo,3,1.2,alpha,upper,1.7513959407806396 +illusion_1.5L,ppo,3,1.2,alpha,lower,1.3405989408493042 +illusion_1.5L,ppo,4,1.6,alpha,front,1.6475932598114014 +illusion_1.5L,ppo,4,1.6,alpha,upper,0.07819223403930664 +illusion_1.5L,ppo,4,1.6,alpha,lower,0.17036914825439453 +illusion_1.5L,ppo,5,2.0,alpha,front,0.06759235262870789 +illusion_1.5L,ppo,5,2.0,alpha,upper,-0.3713243007659912 +illusion_1.5L,ppo,5,2.0,alpha,lower,-0.2048192173242569 +illusion_1.5L,ppo,6,2.4,alpha,front,-1.501118779182434 +illusion_1.5L,ppo,6,2.4,alpha,upper,0.7230329513549805 +illusion_1.5L,ppo,6,2.4,alpha,lower,0.874076783657074 +illusion_1.5L,ppo,7,2.8,alpha,front,0.13865001499652863 +illusion_1.5L,ppo,7,2.8,alpha,upper,0.9203938841819763 +illusion_1.5L,ppo,7,2.8,alpha,lower,1.3363425731658936 +illusion_1.5L,ppo,8,3.2,alpha,front,3.1060950756073 +illusion_1.5L,ppo,8,3.2,alpha,upper,-0.7425225973129272 +illusion_1.5L,ppo,8,3.2,alpha,lower,0.007433176040649414 +illusion_1.5L,ppo,9,3.6,alpha,front,1.72958505153656 +illusion_1.5L,ppo,9,3.6,alpha,upper,-1.038867473602295 +illusion_1.5L,ppo,9,3.6,alpha,lower,-0.7894325256347656 +illusion_1.5L,ppo,10,4.0,alpha,front,-2.8960652351379395 +illusion_1.5L,ppo,10,4.0,alpha,upper,0.8024281859397888 +illusion_1.5L,ppo,10,4.0,alpha,lower,0.2997243404388428 +illusion_1.5L,ppo,11,4.4,alpha,front,-2.8749313354492188 +illusion_1.5L,ppo,11,4.4,alpha,upper,0.5102958679199219 +illusion_1.5L,ppo,11,4.4,alpha,lower,-0.1385636329650879 +illusion_1.5L,ppo,12,4.8,alpha,front,2.082700252532959 +illusion_1.5L,ppo,12,4.8,alpha,upper,-1.9510060548782349 +illusion_1.5L,ppo,12,4.8,alpha,lower,-1.7401481866836548 +illusion_1.5L,ppo,13,5.2,alpha,front,3.2977347373962402 +illusion_1.5L,ppo,13,5.2,alpha,upper,-1.7491471767425537 +illusion_1.5L,ppo,13,5.2,alpha,lower,-1.3527135848999023 +illusion_1.5L,ppo,14,5.6,alpha,front,-2.2483150959014893 +illusion_1.5L,ppo,14,5.6,alpha,upper,1.2822113037109375 +illusion_1.5L,ppo,14,5.6,alpha,lower,0.6088136434555054 +illusion_1.5L,ppo,15,6.0,alpha,front,-4.935033798217773 +illusion_1.5L,ppo,15,6.0,alpha,upper,1.3881111145019531 +illusion_1.5L,ppo,15,6.0,alpha,lower,0.37272727489471436 +illusion_1.5L,ppo,16,6.4,alpha,front,0.7847888469696045 +illusion_1.5L,ppo,16,6.4,alpha,upper,-2.9272146224975586 +illusion_1.5L,ppo,16,6.4,alpha,lower,-2.6953020095825195 +illusion_1.5L,ppo,17,6.8,alpha,front,4.467765808105469 +illusion_1.5L,ppo,17,6.8,alpha,upper,-3.532165765762329 +illusion_1.5L,ppo,17,6.8,alpha,lower,-2.7391390800476074 +illusion_1.5L,ppo,18,7.2,alpha,front,-1.240140438079834 +illusion_1.5L,ppo,18,7.2,alpha,upper,2.5390729904174805 +illusion_1.5L,ppo,18,7.2,alpha,lower,1.3095413446426392 +illusion_1.5L,ppo,19,7.6,alpha,front,-4.770424842834473 +illusion_1.5L,ppo,19,7.6,alpha,upper,4.806854248046875 +illusion_1.5L,ppo,19,7.6,alpha,lower,2.5702767372131348 +illusion_1.5L,ppo,20,8.0,alpha,front,1.6993141174316406 +illusion_1.5L,ppo,20,8.0,alpha,upper,-1.6003327369689941 +illusion_1.5L,ppo,20,8.0,alpha,lower,-1.823062539100647 +illusion_1.5L,ppo,21,8.4,alpha,front,7.140627861022949 +illusion_1.5L,ppo,21,8.4,alpha,upper,-3.895944356918335 +illusion_1.5L,ppo,21,8.4,alpha,lower,-2.799201488494873 +illusion_1.5L,ppo,22,8.8,alpha,front,-1.336065411567688 +illusion_1.5L,ppo,22,8.8,alpha,upper,2.313767433166504 +illusion_1.5L,ppo,22,8.8,alpha,lower,1.3603953123092651 +illusion_1.5L,ppo,23,9.2,alpha,front,-6.539678573608398 +illusion_1.5L,ppo,23,9.2,alpha,upper,6.0 +illusion_1.5L,ppo,23,9.2,alpha,lower,4.649063587188721 +illusion_1.5L,ppo,24,9.6,alpha,front,0.8633862733840942 +illusion_1.5L,ppo,24,9.6,alpha,upper,0.5897889137268066 +illusion_1.5L,ppo,24,9.6,alpha,lower,0.36819159984588623 +illusion_1.5L,ppo,25,10.0,alpha,front,8.0 +illusion_1.5L,ppo,25,10.0,alpha,upper,-3.6097168922424316 +illusion_1.5L,ppo,25,10.0,alpha,lower,-2.3268938064575195 +illusion_1.5L,ppo,26,10.4,alpha,front,2.7576868534088135 +illusion_1.5L,ppo,26,10.4,alpha,upper,-0.2618296146392822 +illusion_1.5L,ppo,26,10.4,alpha,lower,-0.6473937034606934 +illusion_1.5L,ppo,27,10.8,alpha,front,-4.674729347229004 +illusion_1.5L,ppo,27,10.8,alpha,upper,5.024030685424805 +illusion_1.5L,ppo,27,10.8,alpha,lower,4.650024890899658 +illusion_1.5L,ppo,28,11.2,alpha,front,-0.3786667585372925 +illusion_1.5L,ppo,28,11.2,alpha,upper,1.4190990924835205 +illusion_1.5L,ppo,28,11.2,alpha,lower,1.7054944038391113 +illusion_1.5L,ppo,29,11.6,alpha,front,6.174801349639893 +illusion_1.5L,ppo,29,11.6,alpha,upper,-4.017397880554199 +illusion_1.5L,ppo,29,11.6,alpha,lower,-3.041539192199707 +illusion_1.5L,ppo,30,12.0,alpha,front,2.392789363861084 +illusion_1.5L,ppo,30,12.0,alpha,upper,-0.9184668064117432 +illusion_1.5L,ppo,30,12.0,alpha,lower,-1.1114833354949951 +illusion_1.5L,ppo,31,12.4,alpha,front,-5.452765941619873 +illusion_1.5L,ppo,31,12.4,alpha,upper,5.279187202453613 +illusion_1.5L,ppo,31,12.4,alpha,lower,4.6669206619262695 +illusion_1.5L,ppo,32,12.8,alpha,front,-1.5368893146514893 +illusion_1.5L,ppo,32,12.8,alpha,upper,2.5977821350097656 +illusion_1.5L,ppo,32,12.8,alpha,lower,1.9916706085205078 +illusion_1.5L,ppo,33,13.2,alpha,front,6.646983623504639 +illusion_1.5L,ppo,33,13.2,alpha,upper,-5.369624137878418 +illusion_1.5L,ppo,33,13.2,alpha,lower,-4.616011619567871 +illusion_1.5L,ppo,34,13.6,alpha,front,2.502175807952881 +illusion_1.5L,ppo,34,13.6,alpha,upper,-3.005535840988159 +illusion_1.5L,ppo,34,13.6,alpha,lower,-3.405853748321533 +illusion_1.5L,ppo,35,14.0,alpha,front,-7.78192138671875 +illusion_1.5L,ppo,35,14.0,alpha,upper,4.198786735534668 +illusion_1.5L,ppo,35,14.0,alpha,lower,2.845604419708252 +illusion_1.5L,ppo,36,14.4,alpha,front,-5.047682762145996 +illusion_1.5L,ppo,36,14.4,alpha,upper,2.685530662536621 +illusion_1.5L,ppo,36,14.4,alpha,lower,0.9756829142570496 +illusion_1.5L,ppo,37,14.8,alpha,front,5.812684535980225 +illusion_1.5L,ppo,37,14.8,alpha,upper,-5.331756591796875 +illusion_1.5L,ppo,37,14.8,alpha,lower,-4.230833053588867 +illusion_1.5L,ppo,38,15.2,alpha,front,2.9515912532806396 +illusion_1.5L,ppo,38,15.2,alpha,upper,-3.555356740951538 +illusion_1.5L,ppo,38,15.2,alpha,lower,-2.8793158531188965 +illusion_1.5L,ppo,39,15.6,alpha,front,-5.49228572845459 +illusion_1.5L,ppo,39,15.6,alpha,upper,3.0450782775878906 +illusion_1.5L,ppo,39,15.6,alpha,lower,1.7320277690887451 +illusion_1.5L,ppo,40,16.0,alpha,front,-4.565585613250732 +illusion_1.5L,ppo,40,16.0,alpha,upper,3.1382665634155273 +illusion_1.5L,ppo,40,16.0,alpha,lower,1.2720472812652588 +illusion_1.5L,ppo,41,16.4,alpha,front,4.4835381507873535 +illusion_1.5L,ppo,41,16.4,alpha,upper,-3.9344139099121094 +illusion_1.5L,ppo,41,16.4,alpha,lower,-3.2997164726257324 +illusion_1.5L,ppo,42,16.8,alpha,front,4.216999530792236 +illusion_1.5L,ppo,42,16.8,alpha,upper,-3.8932297229766846 +illusion_1.5L,ppo,42,16.8,alpha,lower,-2.9393491744995117 +illusion_1.5L,ppo,43,17.2,alpha,front,-4.7849836349487305 +illusion_1.5L,ppo,43,17.2,alpha,upper,3.486323356628418 +illusion_1.5L,ppo,43,17.2,alpha,lower,2.142104148864746 +illusion_1.5L,ppo,44,17.6,alpha,front,-4.862180709838867 +illusion_1.5L,ppo,44,17.6,alpha,upper,4.5239763259887695 +illusion_1.5L,ppo,44,17.6,alpha,lower,2.5475692749023438 +illusion_1.5L,ppo,45,18.0,alpha,front,5.048116207122803 +illusion_1.5L,ppo,45,18.0,alpha,upper,-3.1425673961639404 +illusion_1.5L,ppo,45,18.0,alpha,lower,-2.7506165504455566 +illusion_1.5L,ppo,46,18.4,alpha,front,6.939489364624023 +illusion_1.5L,ppo,46,18.4,alpha,upper,-3.88944673538208 +illusion_1.5L,ppo,46,18.4,alpha,lower,-3.291231393814087 +illusion_1.5L,ppo,47,18.8,alpha,front,-2.187124252319336 +illusion_1.5L,ppo,47,18.8,alpha,upper,3.1564512252807617 +illusion_1.5L,ppo,47,18.8,alpha,lower,2.0339341163635254 +illusion_1.5L,ppo,48,19.2,alpha,front,-4.104968547821045 +illusion_1.5L,ppo,48,19.2,alpha,upper,4.942201614379883 +illusion_1.5L,ppo,48,19.2,alpha,lower,3.7803053855895996 +illusion_1.5L,ppo,49,19.6,alpha,front,2.077652931213379 +illusion_1.5L,ppo,49,19.6,alpha,upper,-0.8700082302093506 +illusion_1.5L,ppo,49,19.6,alpha,lower,-0.8654709458351135 +illusion_1.5L,ppo,50,20.0,alpha,front,6.176417350769043 +illusion_1.5L,ppo,50,20.0,alpha,upper,-2.574202299118042 +illusion_1.5L,ppo,50,20.0,alpha,lower,-2.5841684341430664 +illusion_1.5L,ppo,51,20.4,alpha,front,-0.37629634141921997 +illusion_1.5L,ppo,51,20.4,alpha,upper,1.7722406387329102 +illusion_1.5L,ppo,51,20.4,alpha,lower,0.9497917294502258 +illusion_1.5L,ppo,52,20.8,alpha,front,-4.616179466247559 +illusion_1.5L,ppo,52,20.8,alpha,upper,4.626690864562988 +illusion_1.5L,ppo,52,20.8,alpha,lower,3.9538867473602295 +illusion_1.5L,ppo,53,21.2,alpha,front,1.2789175510406494 +illusion_1.5L,ppo,53,21.2,alpha,upper,-0.015967845916748047 +illusion_1.5L,ppo,53,21.2,alpha,lower,-0.10250090807676315 +illusion_1.5L,ppo,54,21.6,alpha,front,6.972156047821045 +illusion_1.5L,ppo,54,21.6,alpha,upper,-3.7519991397857666 +illusion_1.5L,ppo,54,21.6,alpha,lower,-3.5256190299987793 +illusion_1.5L,ppo,55,22.0,alpha,front,1.043534517288208 +illusion_1.5L,ppo,55,22.0,alpha,upper,0.9505014419555664 +illusion_1.5L,ppo,55,22.0,alpha,lower,-0.02289605140686035 +illusion_1.5L,ppo,56,22.4,alpha,front,-6.262017726898193 +illusion_1.5L,ppo,56,22.4,alpha,upper,5.605282783508301 +illusion_1.5L,ppo,56,22.4,alpha,lower,4.55924129486084 +illusion_1.5L,ppo,57,22.8,alpha,front,-1.3123713731765747 +illusion_1.5L,ppo,57,22.8,alpha,upper,1.5574955940246582 +illusion_1.5L,ppo,57,22.8,alpha,lower,1.0396419763565063 +illusion_1.5L,ppo,58,23.2,alpha,front,6.186789035797119 +illusion_1.5L,ppo,58,23.2,alpha,upper,-4.970672607421875 +illusion_1.5L,ppo,58,23.2,alpha,lower,-4.021912097930908 +illusion_1.5L,ppo,59,23.6,alpha,front,1.2095974683761597 +illusion_1.5L,ppo,59,23.6,alpha,upper,-1.64272141456604 +illusion_1.5L,ppo,59,23.6,alpha,lower,-1.735213279724121 +illusion_1.5L,ppo,60,24.0,alpha,front,-7.842334747314453 +illusion_1.5L,ppo,60,24.0,alpha,upper,4.638605117797852 +illusion_1.5L,ppo,60,24.0,alpha,lower,3.6538825035095215 +illusion_1.5L,ppo,61,24.4,alpha,front,-3.191343307495117 +illusion_1.5L,ppo,61,24.4,alpha,upper,2.1452808380126953 +illusion_1.5L,ppo,61,24.4,alpha,lower,1.0273293256759644 +illusion_1.5L,ppo,62,24.8,alpha,front,6.536932945251465 +illusion_1.5L,ppo,62,24.8,alpha,upper,-6.453195571899414 +illusion_1.5L,ppo,62,24.8,alpha,lower,-4.873745441436768 +illusion_1.5L,ppo,63,25.2,alpha,front,1.7836202383041382 +illusion_1.5L,ppo,63,25.2,alpha,upper,-3.1361281871795654 +illusion_1.5L,ppo,63,25.2,alpha,lower,-2.8810276985168457 +illusion_1.5L,ppo,64,25.6,alpha,front,-7.212460041046143 +illusion_1.5L,ppo,64,25.6,alpha,upper,4.372986793518066 +illusion_1.5L,ppo,64,25.6,alpha,lower,2.6398568153381348 +illusion_1.5L,ppo,65,26.0,alpha,front,-3.896819829940796 +illusion_1.5L,ppo,65,26.0,alpha,upper,2.7165050506591797 +illusion_1.5L,ppo,65,26.0,alpha,lower,0.6868739128112793 +illusion_1.5L,ppo,66,26.4,alpha,front,6.125576972961426 +illusion_1.5L,ppo,66,26.4,alpha,upper,-5.330362319946289 +illusion_1.5L,ppo,66,26.4,alpha,lower,-4.249595642089844 +illusion_1.5L,ppo,67,26.8,alpha,front,2.5952274799346924 +illusion_1.5L,ppo,67,26.8,alpha,upper,-3.124833583831787 +illusion_1.5L,ppo,67,26.8,alpha,lower,-2.607830047607422 +illusion_1.5L,ppo,68,27.2,alpha,front,-6.152360916137695 +illusion_1.5L,ppo,68,27.2,alpha,upper,4.412425994873047 +illusion_1.5L,ppo,68,27.2,alpha,lower,2.723601818084717 +illusion_1.5L,ppo,69,27.6,alpha,front,-3.519594669342041 +illusion_1.5L,ppo,69,27.6,alpha,upper,3.3505465984344482 +illusion_1.5L,ppo,69,27.6,alpha,lower,1.5296449661254883 +illusion_1.5L,ppo,70,28.0,alpha,front,7.532464981079102 +illusion_1.5L,ppo,70,28.0,alpha,upper,-4.705203056335449 +illusion_1.5L,ppo,70,28.0,alpha,lower,-3.5526809692382812 +illusion_1.5L,ppo,71,28.4,alpha,front,5.614630699157715 +illusion_1.5L,ppo,71,28.4,alpha,upper,-3.4154739379882812 +illusion_1.5L,ppo,71,28.4,alpha,lower,-2.8284897804260254 +illusion_1.5L,ppo,72,28.8,alpha,front,-4.455737113952637 +illusion_1.5L,ppo,72,28.8,alpha,upper,4.817193984985352 +illusion_1.5L,ppo,72,28.8,alpha,lower,3.5522584915161133 +illusion_1.5L,ppo,73,29.2,alpha,front,-2.026003122329712 +illusion_1.5L,ppo,73,29.2,alpha,upper,3.9776554107666016 +illusion_1.5L,ppo,73,29.2,alpha,lower,2.884641170501709 +illusion_1.5L,ppo,74,29.6,alpha,front,4.626152992248535 +illusion_1.5L,ppo,74,29.6,alpha,upper,-2.192498207092285 +illusion_1.5L,ppo,74,29.6,alpha,lower,-1.8297028541564941 +illusion_1.5L,ppo,75,30.0,alpha,front,3.9966626167297363 +illusion_1.5L,ppo,75,30.0,alpha,upper,-1.261883020401001 +illusion_1.5L,ppo,75,30.0,alpha,lower,-1.7028026580810547 +illusion_1.5L,ppo,76,30.4,alpha,front,-2.872878074645996 +illusion_1.5L,ppo,76,30.4,alpha,upper,3.492812156677246 +illusion_1.5L,ppo,76,30.4,alpha,lower,2.8045825958251953 +illusion_1.5L,ppo,77,30.8,alpha,front,-2.50654935836792 +illusion_1.5L,ppo,77,30.8,alpha,upper,3.1091651916503906 +illusion_1.5L,ppo,77,30.8,alpha,lower,2.6153907775878906 +illusion_1.5L,ppo,78,31.2,alpha,front,4.720229148864746 +illusion_1.5L,ppo,78,31.2,alpha,upper,-2.1156005859375 +illusion_1.5L,ppo,78,31.2,alpha,lower,-1.9711226224899292 +illusion_1.5L,ppo,79,31.6,alpha,front,5.067253589630127 +illusion_1.5L,ppo,79,31.6,alpha,upper,-2.10147762298584 +illusion_1.5L,ppo,79,31.6,alpha,lower,-2.6423397064208984 +illusion_1.5L,ppo,80,32.0,alpha,front,-3.2366461753845215 +illusion_1.5L,ppo,80,32.0,alpha,upper,3.8862571716308594 +illusion_1.5L,ppo,80,32.0,alpha,lower,2.7587060928344727 +illusion_1.5L,ppo,81,32.4,alpha,front,-4.61189079284668 +illusion_1.5L,ppo,81,32.4,alpha,upper,4.2769575119018555 +illusion_1.5L,ppo,81,32.4,alpha,lower,3.2508440017700195 +illusion_1.5L,ppo,82,32.8,alpha,front,3.687344551086426 +illusion_1.5L,ppo,82,32.8,alpha,upper,-2.3472282886505127 +illusion_1.5L,ppo,82,32.8,alpha,lower,-2.2734742164611816 +illusion_1.5L,ppo,83,33.2,alpha,front,4.586243629455566 +illusion_1.5L,ppo,83,33.2,alpha,upper,-3.5974204540252686 +illusion_1.5L,ppo,83,33.2,alpha,lower,-3.5307960510253906 +illusion_1.5L,ppo,84,33.6,alpha,front,-4.211077690124512 +illusion_1.5L,ppo,84,33.6,alpha,upper,2.9362754821777344 +illusion_1.5L,ppo,84,33.6,alpha,lower,2.235239028930664 +illusion_1.5L,ppo,85,34.0,alpha,front,-6.773529529571533 +illusion_1.5L,ppo,85,34.0,alpha,upper,4.349457740783691 +illusion_1.5L,ppo,85,34.0,alpha,lower,3.194859027862549 +illusion_1.5L,ppo,86,34.4,alpha,front,2.3119280338287354 +illusion_1.5L,ppo,86,34.4,alpha,upper,-3.0043892860412598 +illusion_1.5L,ppo,86,34.4,alpha,lower,-2.56520938873291 +illusion_1.5L,ppo,87,34.8,alpha,front,5.544740200042725 +illusion_1.5L,ppo,87,34.8,alpha,upper,-5.899670600891113 +illusion_1.5L,ppo,87,34.8,alpha,lower,-4.52746057510376 +illusion_1.5L,ppo,88,35.2,alpha,front,-2.6791069507598877 +illusion_1.5L,ppo,88,35.2,alpha,upper,0.846919059753418 +illusion_1.5L,ppo,88,35.2,alpha,lower,0.35624778270721436 +illusion_1.5L,ppo,89,35.6,alpha,front,-6.851531505584717 +illusion_1.5L,ppo,89,35.6,alpha,upper,4.391024589538574 +illusion_1.5L,ppo,89,35.6,alpha,lower,2.2894816398620605 +illusion_1.5L,ppo,90,36.0,alpha,front,0.42898261547088623 +illusion_1.5L,ppo,90,36.0,alpha,upper,-0.8672080039978027 +illusion_1.5L,ppo,90,36.0,alpha,lower,-1.7287734746932983 +illusion_1.5L,ppo,91,36.4,alpha,front,6.239968776702881 +illusion_1.5L,ppo,91,36.4,alpha,upper,-5.239463806152344 +illusion_1.5L,ppo,91,36.4,alpha,lower,-4.089740753173828 +illusion_1.5L,ppo,92,36.8,alpha,front,-0.6349695920944214 +illusion_1.5L,ppo,92,36.8,alpha,upper,-0.09992146492004395 +illusion_1.5L,ppo,92,36.8,alpha,lower,-0.6114335060119629 +illusion_1.5L,ppo,93,37.2,alpha,front,-6.946471691131592 +illusion_1.5L,ppo,93,37.2,alpha,upper,5.183399200439453 +illusion_1.5L,ppo,93,37.2,alpha,lower,3.0286364555358887 +illusion_1.5L,ppo,94,37.6,alpha,front,-1.011950135231018 +illusion_1.5L,ppo,94,37.6,alpha,upper,0.48102235794067383 +illusion_1.5L,ppo,94,37.6,alpha,lower,-0.4869401454925537 +illusion_1.5L,ppo,95,38.0,alpha,front,8.0 +illusion_1.5L,ppo,95,38.0,alpha,upper,-5.557339668273926 +illusion_1.5L,ppo,95,38.0,alpha,lower,-3.891796588897705 +illusion_1.5L,ppo,96,38.4,alpha,front,3.1969804763793945 +illusion_1.5L,ppo,96,38.4,alpha,upper,-1.6961616277694702 +illusion_1.5L,ppo,96,38.4,alpha,lower,-1.5051360130310059 +illusion_1.5L,ppo,97,38.8,alpha,front,-5.127100944519043 +illusion_1.5L,ppo,97,38.8,alpha,upper,5.6551408767700195 +illusion_1.5L,ppo,97,38.8,alpha,lower,4.230672359466553 +illusion_1.5L,ppo,98,39.2,alpha,front,-1.1242821216583252 +illusion_1.5L,ppo,98,39.2,alpha,upper,2.3809452056884766 +illusion_1.5L,ppo,98,39.2,alpha,lower,1.6601214408874512 +illusion_1.5L,ppo,99,39.6,alpha,front,6.445939064025879 +illusion_1.5L,ppo,99,39.6,alpha,upper,-3.4342122077941895 +illusion_1.5L,ppo,99,39.6,alpha,lower,-2.6831512451171875 +illusion_1.5L,ppo,100,40.0,alpha,front,2.4730172157287598 +illusion_1.5L,ppo,100,40.0,alpha,upper,-1.0161007642745972 +illusion_1.5L,ppo,100,40.0,alpha,lower,-1.547372817993164 +illusion_1.5L,ppo,101,40.4,alpha,front,-4.802555561065674 +illusion_1.5L,ppo,101,40.4,alpha,upper,4.919415473937988 +illusion_1.5L,ppo,101,40.4,alpha,lower,4.131979465484619 +illusion_1.5L,ppo,102,40.8,alpha,front,-1.381274938583374 +illusion_1.5L,ppo,102,40.8,alpha,upper,2.4742751121520996 +illusion_1.5L,ppo,102,40.8,alpha,lower,1.958897352218628 +illusion_1.5L,ppo,103,41.2,alpha,front,6.945315361022949 +illusion_1.5L,ppo,103,41.2,alpha,upper,-3.6931140422821045 +illusion_1.5L,ppo,103,41.2,alpha,lower,-3.2005105018615723 +illusion_1.5L,ppo,104,41.6,alpha,front,3.7614336013793945 +illusion_1.5L,ppo,104,41.6,alpha,upper,-1.4643107652664185 +illusion_1.5L,ppo,104,41.6,alpha,lower,-2.314006805419922 +illusion_1.5L,ppo,105,42.0,alpha,front,-5.155548095703125 +illusion_1.5L,ppo,105,42.0,alpha,upper,5.312258720397949 +illusion_1.5L,ppo,105,42.0,alpha,lower,4.170213222503662 +illusion_1.5L,ppo,106,42.4,alpha,front,-2.3601911067962646 +illusion_1.5L,ppo,106,42.4,alpha,upper,3.5125532150268555 +illusion_1.5L,ppo,106,42.4,alpha,lower,2.406308650970459 +illusion_1.5L,ppo,107,42.8,alpha,front,6.038158893585205 +illusion_1.5L,ppo,107,42.8,alpha,upper,-3.466759443283081 +illusion_1.5L,ppo,107,42.8,alpha,lower,-3.2791333198547363 +illusion_1.5L,ppo,108,43.2,alpha,front,3.3796420097351074 +illusion_1.5L,ppo,108,43.2,alpha,upper,-1.7092790603637695 +illusion_1.5L,ppo,108,43.2,alpha,lower,-2.275390148162842 +illusion_1.5L,ppo,109,43.6,alpha,front,-6.886711120605469 +illusion_1.5L,ppo,109,43.6,alpha,upper,4.953680038452148 +illusion_1.5L,ppo,109,43.6,alpha,lower,4.1664323806762695 +illusion_1.5L,ppo,110,44.0,alpha,front,-5.094846248626709 +illusion_1.5L,ppo,110,44.0,alpha,upper,3.6982364654541016 +illusion_1.5L,ppo,110,44.0,alpha,lower,2.7567849159240723 +illusion_1.5L,ppo,111,44.4,alpha,front,5.234206199645996 +illusion_1.5L,ppo,111,44.4,alpha,upper,-4.870155334472656 +illusion_1.5L,ppo,111,44.4,alpha,lower,-3.929701089859009 +illusion_1.5L,ppo,112,44.8,alpha,front,3.441279888153076 +illusion_1.5L,ppo,112,44.8,alpha,upper,-4.064645767211914 +illusion_1.5L,ppo,112,44.8,alpha,lower,-3.70670485496521 +illusion_1.5L,ppo,113,45.2,alpha,front,-4.865149021148682 +illusion_1.5L,ppo,113,45.2,alpha,upper,3.0743579864501953 +illusion_1.5L,ppo,113,45.2,alpha,lower,2.0580101013183594 +illusion_1.5L,ppo,114,45.6,alpha,front,-5.141905307769775 +illusion_1.5L,ppo,114,45.6,alpha,upper,3.3302810192108154 +illusion_1.5L,ppo,114,45.6,alpha,lower,1.604065179824829 +illusion_1.5L,ppo,115,46.0,alpha,front,3.463498115539551 +illusion_1.5L,ppo,115,46.0,alpha,upper,-3.7524044513702393 +illusion_1.5L,ppo,115,46.0,alpha,lower,-3.3442633152008057 +illusion_1.5L,ppo,116,46.4,alpha,front,4.214339733123779 +illusion_1.5L,ppo,116,46.4,alpha,upper,-4.38541316986084 +illusion_1.5L,ppo,116,46.4,alpha,lower,-3.4958226680755615 +illusion_1.5L,ppo,117,46.8,alpha,front,-4.157251358032227 +illusion_1.5L,ppo,117,46.8,alpha,upper,2.3717803955078125 +illusion_1.5L,ppo,117,46.8,alpha,lower,1.3562793731689453 +illusion_1.5L,ppo,118,47.2,alpha,front,-5.687051296234131 +illusion_1.5L,ppo,118,47.2,alpha,upper,4.17902946472168 +illusion_1.5L,ppo,118,47.2,alpha,lower,2.063704252243042 +illusion_1.5L,ppo,119,47.6,alpha,front,3.0038275718688965 +illusion_1.5L,ppo,119,47.6,alpha,upper,-2.602893352508545 +illusion_1.5L,ppo,119,47.6,alpha,lower,-2.785884380340576 +illusion_1.5L,ppo,120,48.0,alpha,front,7.039001941680908 +illusion_1.5L,ppo,120,48.0,alpha,upper,-4.822671413421631 +illusion_1.5L,ppo,120,48.0,alpha,lower,-3.817335605621338 +illusion_1.5L,ppo,121,48.4,alpha,front,-1.480494499206543 +illusion_1.5L,ppo,121,48.4,alpha,upper,1.5396196842193604 +illusion_1.5L,ppo,121,48.4,alpha,lower,0.6350548267364502 +illusion_1.5L,ppo,122,48.8,alpha,front,-4.716283321380615 +illusion_1.5L,ppo,122,48.8,alpha,upper,4.621580123901367 +illusion_1.5L,ppo,122,48.8,alpha,lower,3.0834174156188965 +illusion_1.5L,ppo,123,49.2,alpha,front,1.0155220031738281 +illusion_1.5L,ppo,123,49.2,alpha,upper,-0.8118937015533447 +illusion_1.5L,ppo,123,49.2,alpha,lower,-0.8997654914855957 +illusion_1.5L,ppo,124,49.6,alpha,front,6.725481986999512 +illusion_1.5L,ppo,124,49.6,alpha,upper,-3.618776559829712 +illusion_1.5L,ppo,124,49.6,alpha,lower,-2.9332199096679688 +illusion_1.5L,ppo,125,50.0,alpha,front,0.16486778855323792 +illusion_1.5L,ppo,125,50.0,alpha,upper,1.0007147789001465 +illusion_1.5L,ppo,125,50.0,alpha,lower,0.3543119430541992 +illusion_1.5L,ppo,126,50.4,alpha,front,-4.785350322723389 +illusion_1.5L,ppo,126,50.4,alpha,upper,5.053610801696777 +illusion_1.5L,ppo,126,50.4,alpha,lower,4.24883508682251 +illusion_1.5L,ppo,127,50.8,alpha,front,0.4686962366104126 +illusion_1.5L,ppo,127,50.8,alpha,upper,0.5246052742004395 +illusion_1.5L,ppo,127,50.8,alpha,lower,0.38286852836608887 +illusion_1.5L,ppo,128,51.2,alpha,front,7.531037330627441 +illusion_1.5L,ppo,128,51.2,alpha,upper,-3.542412519454956 +illusion_1.5L,ppo,128,51.2,alpha,lower,-3.1576650142669678 +illusion_1.5L,ppo,129,51.6,alpha,front,1.9812729358673096 +illusion_1.5L,ppo,129,51.6,alpha,upper,0.431062251329422 +illusion_1.5L,ppo,129,51.6,alpha,lower,-0.6252193450927734 +illusion_1.5L,ppo,130,52.0,alpha,front,-5.15270471572876 +illusion_1.5L,ppo,130,52.0,alpha,upper,5.792956352233887 +illusion_1.5L,ppo,130,52.0,alpha,lower,4.739468574523926 +illusion_1.5L,ppo,131,52.4,alpha,front,-0.7461819052696228 +illusion_1.5L,ppo,131,52.4,alpha,upper,2.325904369354248 +illusion_1.5L,ppo,131,52.4,alpha,lower,1.4829413890838623 +illusion_1.5L,ppo,132,52.8,alpha,front,6.7460784912109375 +illusion_1.5L,ppo,132,52.8,alpha,upper,-3.3833117485046387 +illusion_1.5L,ppo,132,52.8,alpha,lower,-3.502561569213867 +illusion_1.5L,ppo,133,53.2,alpha,front,2.506040573120117 +illusion_1.5L,ppo,133,53.2,alpha,upper,-0.5111896991729736 +illusion_1.5L,ppo,133,53.2,alpha,lower,-1.569555401802063 +illusion_1.5L,ppo,134,53.6,alpha,front,-7.204753398895264 +illusion_1.5L,ppo,134,53.6,alpha,upper,4.945950508117676 +illusion_1.5L,ppo,134,53.6,alpha,lower,4.102532863616943 +illusion_1.5L,ppo,135,54.0,alpha,front,-4.222998142242432 +illusion_1.5L,ppo,135,54.0,alpha,upper,2.6243515014648438 +illusion_1.5L,ppo,135,54.0,alpha,lower,1.8805466890335083 +illusion_1.5L,ppo,136,54.4,alpha,front,4.977088928222656 +illusion_1.5L,ppo,136,54.4,alpha,upper,-5.120923042297363 +illusion_1.5L,ppo,136,54.4,alpha,lower,-4.008866310119629 +illusion_1.5L,ppo,137,54.8,alpha,front,1.7282131910324097 +illusion_1.5L,ppo,137,54.8,alpha,upper,-3.626065731048584 +illusion_1.5L,ppo,137,54.8,alpha,lower,-3.1659371852874756 +illusion_1.5L,ppo,138,55.2,alpha,front,-5.662721157073975 +illusion_1.5L,ppo,138,55.2,alpha,upper,2.216953754425049 +illusion_1.5L,ppo,138,55.2,alpha,lower,1.4565141201019287 +illusion_1.5L,ppo,139,55.6,alpha,front,-3.8079447746276855 +illusion_1.5L,ppo,139,55.6,alpha,upper,1.755098819732666 +illusion_1.5L,ppo,139,55.6,alpha,lower,0.4909862279891968 +illusion_1.5L,ppo,140,56.0,alpha,front,4.091566562652588 +illusion_1.5L,ppo,140,56.0,alpha,upper,-4.395839214324951 +illusion_1.5L,ppo,140,56.0,alpha,lower,-3.556473731994629 +illusion_1.5L,ppo,141,56.4,alpha,front,2.659881353378296 +illusion_1.5L,ppo,141,56.4,alpha,upper,-3.1824076175689697 +illusion_1.5L,ppo,141,56.4,alpha,lower,-2.662221908569336 +illusion_1.5L,ppo,142,56.8,alpha,front,-4.838269233703613 +illusion_1.5L,ppo,142,56.8,alpha,upper,3.2208547592163086 +illusion_1.5L,ppo,142,56.8,alpha,lower,1.7097339630126953 +illusion_1.5L,ppo,143,57.2,alpha,front,-4.227099418640137 +illusion_1.5L,ppo,143,57.2,alpha,upper,3.3419573307037354 +illusion_1.5L,ppo,143,57.2,alpha,lower,1.1750530004501343 +illusion_1.5L,ppo,144,57.6,alpha,front,4.679538249969482 +illusion_1.5L,ppo,144,57.6,alpha,upper,-3.4365737438201904 +illusion_1.5L,ppo,144,57.6,alpha,lower,-3.3651747703552246 +illusion_1.5L,ppo,145,58.0,alpha,front,5.301715850830078 +illusion_1.5L,ppo,145,58.0,alpha,upper,-3.040194272994995 +illusion_1.5L,ppo,145,58.0,alpha,lower,-2.6566104888916016 +illusion_1.5L,ppo,146,58.4,alpha,front,-3.0785815715789795 +illusion_1.5L,ppo,146,58.4,alpha,upper,3.9581563472747803 +illusion_1.5L,ppo,146,58.4,alpha,lower,2.7233829498291016 +illusion_1.5L,ppo,147,58.8,alpha,front,-3.2335894107818604 +illusion_1.5L,ppo,147,58.8,alpha,upper,4.284923553466797 +illusion_1.5L,ppo,147,58.8,alpha,lower,3.1379988193511963 +illusion_1.5L,ppo,148,59.2,alpha,front,4.332481384277344 +illusion_1.5L,ppo,148,59.2,alpha,upper,-1.9566251039505005 +illusion_1.5L,ppo,148,59.2,alpha,lower,-1.1945443153381348 +illusion_1.5L,ppo,149,59.6,alpha,front,5.9256720542907715 +illusion_1.5L,ppo,149,59.6,alpha,upper,-2.272446632385254 +illusion_1.5L,ppo,149,59.6,alpha,lower,-1.8056038618087769 +illusion_1.5L,ppo,150,60.0,alpha,front,-1.885183334350586 +illusion_1.5L,ppo,150,60.0,alpha,upper,3.188735008239746 +illusion_1.5L,ppo,150,60.0,alpha,lower,2.554305076599121 +illusion_1.5L,ppo,151,60.4,alpha,front,-3.4763567447662354 +illusion_1.5L,ppo,151,60.4,alpha,upper,4.252728462219238 +illusion_1.5L,ppo,151,60.4,alpha,lower,3.922081708908081 +illusion_1.5L,ppo,152,60.8,alpha,front,2.8412699699401855 +illusion_1.5L,ppo,152,60.8,alpha,upper,-0.9421101808547974 +illusion_1.5L,ppo,152,60.8,alpha,lower,-0.6861467361450195 +illusion_1.5L,ppo,153,61.2,alpha,front,5.611365795135498 +illusion_1.5L,ppo,153,61.2,alpha,upper,-2.3177223205566406 +illusion_1.5L,ppo,153,61.2,alpha,lower,-2.5577220916748047 +illusion_1.5L,ppo,154,61.6,alpha,front,-1.0702911615371704 +illusion_1.5L,ppo,154,61.6,alpha,upper,2.0982751846313477 +illusion_1.5L,ppo,154,61.6,alpha,lower,1.2019729614257812 +illusion_1.5L,ppo,155,62.0,alpha,front,-4.623758316040039 +illusion_1.5L,ppo,155,62.0,alpha,upper,4.255364418029785 +illusion_1.5L,ppo,155,62.0,alpha,lower,3.478353500366211 +illusion_1.5L,ppo,156,62.4,alpha,front,1.4775499105453491 +illusion_1.5L,ppo,156,62.4,alpha,upper,-1.0251882076263428 +illusion_1.5L,ppo,156,62.4,alpha,lower,-1.1718993186950684 +illusion_1.5L,ppo,157,62.8,alpha,front,6.02921724319458 +illusion_1.5L,ppo,157,62.8,alpha,upper,-4.425466537475586 +illusion_1.5L,ppo,157,62.8,alpha,lower,-4.163372039794922 +illusion_1.5L,ppo,158,63.2,alpha,front,-0.6350182890892029 +illusion_1.5L,ppo,158,63.2,alpha,upper,0.965705931186676 +illusion_1.5L,ppo,158,63.2,alpha,lower,0.23010408878326416 +illusion_1.5L,ppo,159,63.6,alpha,front,-7.547609806060791 +illusion_1.5L,ppo,159,63.6,alpha,upper,4.556912422180176 +illusion_1.5L,ppo,159,63.6,alpha,lower,3.3229050636291504 +illusion_1.5L,ppo,160,64.0,alpha,front,-1.3893446922302246 +illusion_1.5L,ppo,160,64.0,alpha,upper,-0.13413679599761963 +illusion_1.5L,ppo,160,64.0,alpha,lower,-0.31553125381469727 +illusion_1.5L,ppo,161,64.4,alpha,front,6.720551490783691 +illusion_1.5L,ppo,161,64.4,alpha,upper,-7.091591835021973 +illusion_1.5L,ppo,161,64.4,alpha,lower,-4.735194206237793 +illusion_1.5L,ppo,162,64.8,alpha,front,0.2878105342388153 +illusion_1.5L,ppo,162,64.8,alpha,upper,-2.9135539531707764 +illusion_1.5L,ppo,162,64.8,alpha,lower,-2.021721839904785 +illusion_1.5L,ppo,163,65.2,alpha,front,-8.0 +illusion_1.5L,ppo,163,65.2,alpha,upper,3.6041011810302734 +illusion_1.5L,ppo,163,65.2,alpha,lower,2.161280632019043 +illusion_1.5L,ppo,164,65.6,alpha,front,-3.388874053955078 +illusion_1.5L,ppo,164,65.6,alpha,upper,1.9838063716888428 +illusion_1.5L,ppo,164,65.6,alpha,lower,0.4697737991809845 +illusion_1.5L,ppo,165,66.0,alpha,front,6.40794038772583 +illusion_1.5L,ppo,165,66.0,alpha,upper,-5.3847551345825195 +illusion_1.5L,ppo,165,66.0,alpha,lower,-4.158536911010742 +illusion_1.5L,ppo,166,66.4,alpha,front,2.1137685775756836 +illusion_1.5L,ppo,166,66.4,alpha,upper,-2.3606605529785156 +illusion_1.5L,ppo,166,66.4,alpha,lower,-2.4148387908935547 +illusion_1.5L,ppo,167,66.8,alpha,front,-5.730757236480713 +illusion_1.5L,ppo,167,66.8,alpha,upper,5.033844947814941 +illusion_1.5L,ppo,167,66.8,alpha,lower,2.71293306350708 +illusion_1.5L,ppo,168,67.2,alpha,front,-3.106182813644409 +illusion_1.5L,ppo,168,67.2,alpha,upper,3.141852617263794 +illusion_1.5L,ppo,168,67.2,alpha,lower,1.2821165323257446 +illusion_1.5L,ppo,169,67.6,alpha,front,6.954889297485352 +illusion_1.5L,ppo,169,67.6,alpha,upper,-4.115093231201172 +illusion_1.5L,ppo,169,67.6,alpha,lower,-2.6798653602600098 +illusion_1.5L,ppo,170,68.0,alpha,front,4.313040733337402 +illusion_1.5L,ppo,170,68.0,alpha,upper,-2.6131386756896973 +illusion_1.5L,ppo,170,68.0,alpha,lower,-1.402449607849121 +illusion_1.5L,ppo,171,68.4,alpha,front,-5.748818397521973 +illusion_1.5L,ppo,171,68.4,alpha,upper,5.008532524108887 +illusion_1.5L,ppo,171,68.4,alpha,lower,3.9038538932800293 +illusion_1.5L,ppo,172,68.8,alpha,front,-2.8587043285369873 +illusion_1.5L,ppo,172,68.8,alpha,upper,3.8725578784942627 +illusion_1.5L,ppo,172,68.8,alpha,lower,3.2282631397247314 +illusion_1.5L,ppo,173,69.2,alpha,front,6.738874435424805 +illusion_1.5L,ppo,173,69.2,alpha,upper,-3.103930711746216 +illusion_1.5L,ppo,173,69.2,alpha,lower,-1.6210312843322754 +illusion_1.5L,ppo,174,69.6,alpha,front,4.690300464630127 +illusion_1.5L,ppo,174,69.6,alpha,upper,-1.9521948099136353 +illusion_1.5L,ppo,174,69.6,alpha,lower,-1.7727818489074707 +illusion_1.5L,ppo,175,70.0,alpha,front,-3.551675796508789 +illusion_1.5L,ppo,175,70.0,alpha,upper,4.516573905944824 +illusion_1.5L,ppo,175,70.0,alpha,lower,3.7378196716308594 +illusion_1.5L,ppo,176,70.4,alpha,front,-2.0917716026306152 +illusion_1.5L,ppo,176,70.4,alpha,upper,3.077939987182617 +illusion_1.5L,ppo,176,70.4,alpha,lower,2.6845016479492188 +illusion_1.5L,ppo,177,70.8,alpha,front,4.298313617706299 +illusion_1.5L,ppo,177,70.8,alpha,upper,-3.1162967681884766 +illusion_1.5L,ppo,177,70.8,alpha,lower,-2.6995444297790527 +illusion_1.5L,ppo,178,71.2,alpha,front,3.6505239009857178 +illusion_1.5L,ppo,178,71.2,alpha,upper,-2.01401424407959 +illusion_1.5L,ppo,178,71.2,alpha,lower,-2.279122829437256 +illusion_1.5L,ppo,179,71.6,alpha,front,-3.7666635513305664 +illusion_1.5L,ppo,179,71.6,alpha,upper,4.255541801452637 +illusion_1.5L,ppo,179,71.6,alpha,lower,3.5984652042388916 +illusion_1.5L,ppo,180,72.0,alpha,front,-3.2923665046691895 +illusion_1.5L,ppo,180,72.0,alpha,upper,3.7712879180908203 +illusion_1.5L,ppo,180,72.0,alpha,lower,3.0763192176818848 +illusion_1.5L,ppo,181,72.4,alpha,front,5.439076900482178 +illusion_1.5L,ppo,181,72.4,alpha,upper,-4.1089701652526855 +illusion_1.5L,ppo,181,72.4,alpha,lower,-3.4485952854156494 +illusion_1.5L,ppo,182,72.8,alpha,front,4.811685085296631 +illusion_1.5L,ppo,182,72.8,alpha,upper,-4.18442440032959 +illusion_1.5L,ppo,182,72.8,alpha,lower,-4.099372863769531 +illusion_1.5L,ppo,183,73.2,alpha,front,-5.602540969848633 +illusion_1.5L,ppo,183,73.2,alpha,upper,3.9554834365844727 +illusion_1.5L,ppo,183,73.2,alpha,lower,2.889740467071533 +illusion_1.5L,ppo,184,73.6,alpha,front,-6.288715362548828 +illusion_1.5L,ppo,184,73.6,alpha,upper,4.313451766967773 +illusion_1.5L,ppo,184,73.6,alpha,lower,2.6364312171936035 +illusion_1.5L,ppo,185,74.0,alpha,front,3.3656673431396484 +illusion_1.5L,ppo,185,74.0,alpha,upper,-3.638460636138916 +illusion_1.5L,ppo,185,74.0,alpha,lower,-3.1694581508636475 +illusion_1.5L,ppo,186,74.4,alpha,front,4.966429710388184 +illusion_1.5L,ppo,186,74.4,alpha,upper,-4.95611572265625 +illusion_1.5L,ppo,186,74.4,alpha,lower,-3.9261646270751953 +illusion_1.5L,ppo,187,74.8,alpha,front,-3.192131757736206 +illusion_1.5L,ppo,187,74.8,alpha,upper,1.885509729385376 +illusion_1.5L,ppo,187,74.8,alpha,lower,1.1140215396881104 +illusion_1.5L,ppo,188,75.2,alpha,front,-6.299715042114258 +illusion_1.5L,ppo,188,75.2,alpha,upper,4.325700759887695 +illusion_1.5L,ppo,188,75.2,alpha,lower,2.30976939201355 +illusion_1.5L,ppo,189,75.6,alpha,front,1.7408952713012695 +illusion_1.5L,ppo,189,75.6,alpha,upper,-2.037055492401123 +illusion_1.5L,ppo,189,75.6,alpha,lower,-2.3086557388305664 +illusion_1.5L,ppo,190,76.0,alpha,front,6.1237897872924805 +illusion_1.5L,ppo,190,76.0,alpha,upper,-5.210700988769531 +illusion_1.5L,ppo,190,76.0,alpha,lower,-4.043024063110352 +illusion_1.5L,ppo,191,76.4,alpha,front,-2.403369426727295 +illusion_1.5L,ppo,191,76.4,alpha,upper,1.159691572189331 +illusion_1.5L,ppo,191,76.4,alpha,lower,0.19952893257141113 +illusion_1.5L,ppo,192,76.8,alpha,front,-7.114473342895508 +illusion_1.5L,ppo,192,76.8,alpha,upper,5.56760311126709 +illusion_1.5L,ppo,192,76.8,alpha,lower,3.1988918781280518 +illusion_1.5L,ppo,193,77.2,alpha,front,0.32577770948410034 +illusion_1.5L,ppo,193,77.2,alpha,upper,-0.6525894403457642 +illusion_1.5L,ppo,193,77.2,alpha,lower,-1.5272269248962402 +illusion_1.5L,ppo,194,77.6,alpha,front,8.0 +illusion_1.5L,ppo,194,77.6,alpha,upper,-5.4627885818481445 +illusion_1.5L,ppo,194,77.6,alpha,lower,-4.1367058753967285 +illusion_1.5L,ppo,195,78.0,alpha,front,1.8601434230804443 +illusion_1.5L,ppo,195,78.0,alpha,upper,-0.8325689435005188 +illusion_1.5L,ppo,195,78.0,alpha,lower,-1.0739970207214355 +illusion_1.5L,ppo,196,78.4,alpha,front,-5.764610767364502 +illusion_1.5L,ppo,196,78.4,alpha,upper,5.883636474609375 +illusion_1.5L,ppo,196,78.4,alpha,lower,4.309146881103516 +illusion_1.5L,ppo,197,78.8,alpha,front,-1.1112806797027588 +illusion_1.5L,ppo,197,78.8,alpha,upper,2.0301856994628906 +illusion_1.5L,ppo,197,78.8,alpha,lower,1.1742193698883057 +illusion_1.5L,ppo,198,79.2,alpha,front,7.6203131675720215 +illusion_1.5L,ppo,198,79.2,alpha,upper,-3.899263620376587 +illusion_1.5L,ppo,198,79.2,alpha,lower,-3.143152952194214 +illusion_1.5L,ppo,199,79.6,alpha,front,2.932173728942871 +illusion_1.5L,ppo,199,79.6,alpha,upper,-0.8566336631774902 +illusion_1.5L,ppo,199,79.6,alpha,lower,-1.5224323272705078 +illusion_1.5L,ppo,0,0.0,omega,front,0.0009680777438916266 +illusion_1.5L,ppo,0,0.0,omega,upper,0.001135361148044467 +illusion_1.5L,ppo,0,0.0,omega,lower,-0.014022693037986755 +illusion_1.5L,ppo,1,0.4,omega,front,0.004075251519680023 +illusion_1.5L,ppo,1,0.4,omega,upper,0.014383041299879551 +illusion_1.5L,ppo,1,0.4,omega,lower,0.0001741707237670198 +illusion_1.5L,ppo,2,0.8,omega,front,0.004185063298791647 +illusion_1.5L,ppo,2,0.8,omega,upper,0.02476019784808159 +illusion_1.5L,ppo,2,0.8,omega,lower,0.014723840169608593 +illusion_1.5L,ppo,3,1.2,omega,front,0.011617211624979973 +illusion_1.5L,ppo,3,1.2,omega,upper,0.017513958737254143 +illusion_1.5L,ppo,3,1.2,omega,lower,0.013405988924205303 +illusion_1.5L,ppo,4,1.6,omega,front,0.01647593267261982 +illusion_1.5L,ppo,4,1.6,omega,upper,0.0007819223101250827 +illusion_1.5L,ppo,4,1.6,omega,lower,0.0017036914359778166 +illusion_1.5L,ppo,5,2.0,omega,front,0.0006759235402569175 +illusion_1.5L,ppo,5,2.0,omega,upper,-0.003713242942467332 +illusion_1.5L,ppo,5,2.0,omega,lower,-0.0020481920801103115 +illusion_1.5L,ppo,6,2.4,omega,front,-0.015011187642812729 +illusion_1.5L,ppo,6,2.4,omega,upper,0.00723032932728529 +illusion_1.5L,ppo,6,2.4,omega,lower,0.00874076783657074 +illusion_1.5L,ppo,7,2.8,omega,front,0.0013865000801160932 +illusion_1.5L,ppo,7,2.8,omega,upper,0.009203938767313957 +illusion_1.5L,ppo,7,2.8,omega,lower,0.013363425619900227 +illusion_1.5L,ppo,8,3.2,omega,front,0.031060950830578804 +illusion_1.5L,ppo,8,3.2,omega,upper,-0.007425225805491209 +illusion_1.5L,ppo,8,3.2,omega,lower,7.43317577871494e-05 +illusion_1.5L,ppo,9,3.6,omega,front,0.017295850440859795 +illusion_1.5L,ppo,9,3.6,omega,upper,-0.010388674214482307 +illusion_1.5L,ppo,9,3.6,omega,lower,-0.007894325070083141 +illusion_1.5L,ppo,10,4.0,omega,front,-0.02896065078675747 +illusion_1.5L,ppo,10,4.0,omega,upper,0.008024281822144985 +illusion_1.5L,ppo,10,4.0,omega,lower,0.0029972433112561703 +illusion_1.5L,ppo,11,4.4,omega,front,-0.028749313205480576 +illusion_1.5L,ppo,11,4.4,omega,upper,0.005102958530187607 +illusion_1.5L,ppo,11,4.4,omega,lower,-0.0013856362784281373 +illusion_1.5L,ppo,12,4.8,omega,front,0.020827002823352814 +illusion_1.5L,ppo,12,4.8,omega,upper,-0.01951006054878235 +illusion_1.5L,ppo,12,4.8,omega,lower,-0.017401481047272682 +illusion_1.5L,ppo,13,5.2,omega,front,0.03297734633088112 +illusion_1.5L,ppo,13,5.2,omega,upper,-0.017491471022367477 +illusion_1.5L,ppo,13,5.2,omega,lower,-0.013527135364711285 +illusion_1.5L,ppo,14,5.6,omega,front,-0.02248314954340458 +illusion_1.5L,ppo,14,5.6,omega,upper,0.012822112999856472 +illusion_1.5L,ppo,14,5.6,omega,lower,0.006088136229664087 +illusion_1.5L,ppo,15,6.0,omega,front,-0.04935033619403839 +illusion_1.5L,ppo,15,6.0,omega,upper,0.013881110586225986 +illusion_1.5L,ppo,15,6.0,omega,lower,0.003727272618561983 +illusion_1.5L,ppo,16,6.4,omega,front,0.007847888395190239 +illusion_1.5L,ppo,16,6.4,omega,upper,-0.02927214466035366 +illusion_1.5L,ppo,16,6.4,omega,lower,-0.026953019201755524 +illusion_1.5L,ppo,17,6.8,omega,front,0.04467765614390373 +illusion_1.5L,ppo,17,6.8,omega,upper,-0.03532165661454201 +illusion_1.5L,ppo,17,6.8,omega,lower,-0.02739139087498188 +illusion_1.5L,ppo,18,7.2,omega,front,-0.012401403859257698 +illusion_1.5L,ppo,18,7.2,omega,upper,0.025390729308128357 +illusion_1.5L,ppo,18,7.2,omega,lower,0.013095413334667683 +illusion_1.5L,ppo,19,7.6,omega,front,-0.047704245895147324 +illusion_1.5L,ppo,19,7.6,omega,upper,0.048068542033433914 +illusion_1.5L,ppo,19,7.6,omega,lower,0.025702767074108124 +illusion_1.5L,ppo,20,8.0,omega,front,0.016993140801787376 +illusion_1.5L,ppo,20,8.0,omega,upper,-0.016003327444195747 +illusion_1.5L,ppo,20,8.0,omega,lower,-0.018230624496936798 +illusion_1.5L,ppo,21,8.4,omega,front,0.0714062750339508 +illusion_1.5L,ppo,21,8.4,omega,upper,-0.03895944356918335 +illusion_1.5L,ppo,21,8.4,omega,lower,-0.027992013841867447 +illusion_1.5L,ppo,22,8.8,omega,front,-0.013360654003918171 +illusion_1.5L,ppo,22,8.8,omega,upper,0.02313767373561859 +illusion_1.5L,ppo,22,8.8,omega,lower,0.013603952713310719 +illusion_1.5L,ppo,23,9.2,omega,front,-0.06539678573608398 +illusion_1.5L,ppo,23,9.2,omega,upper,0.05999999865889549 +illusion_1.5L,ppo,23,9.2,omega,lower,0.046490635722875595 +illusion_1.5L,ppo,24,9.6,omega,front,0.008633862249553204 +illusion_1.5L,ppo,24,9.6,omega,upper,0.0058978889137506485 +illusion_1.5L,ppo,24,9.6,omega,lower,0.0036819158121943474 +illusion_1.5L,ppo,25,10.0,omega,front,0.07999999821186066 +illusion_1.5L,ppo,25,10.0,omega,upper,-0.036097168922424316 +illusion_1.5L,ppo,25,10.0,omega,lower,-0.023268938064575195 +illusion_1.5L,ppo,26,10.4,omega,front,0.02757686749100685 +illusion_1.5L,ppo,26,10.4,omega,upper,-0.0026182960718870163 +illusion_1.5L,ppo,26,10.4,omega,lower,-0.006473937071859837 +illusion_1.5L,ppo,27,10.8,omega,front,-0.04674729332327843 +illusion_1.5L,ppo,27,10.8,omega,upper,0.050240304321050644 +illusion_1.5L,ppo,27,10.8,omega,lower,0.04650024697184563 +illusion_1.5L,ppo,28,11.2,omega,front,-0.0037866674829274416 +illusion_1.5L,ppo,28,11.2,omega,upper,0.01419099047780037 +illusion_1.5L,ppo,28,11.2,omega,lower,0.01705494336783886 +illusion_1.5L,ppo,29,11.6,omega,front,0.06174801290035248 +illusion_1.5L,ppo,29,11.6,omega,upper,-0.0401739776134491 +illusion_1.5L,ppo,29,11.6,omega,lower,-0.03041539154946804 +illusion_1.5L,ppo,30,12.0,omega,front,0.023927893489599228 +illusion_1.5L,ppo,30,12.0,omega,upper,-0.009184667840600014 +illusion_1.5L,ppo,30,12.0,omega,lower,-0.011114832945168018 +illusion_1.5L,ppo,31,12.4,omega,front,-0.054527658969163895 +illusion_1.5L,ppo,31,12.4,omega,upper,0.05279187113046646 +illusion_1.5L,ppo,31,12.4,omega,lower,0.04666920378804207 +illusion_1.5L,ppo,32,12.8,omega,front,-0.015368892811238766 +illusion_1.5L,ppo,32,12.8,omega,upper,0.02597782015800476 +illusion_1.5L,ppo,32,12.8,omega,lower,0.019916705787181854 +illusion_1.5L,ppo,33,13.2,omega,front,0.06646983325481415 +illusion_1.5L,ppo,33,13.2,omega,upper,-0.05369624122977257 +illusion_1.5L,ppo,33,13.2,omega,lower,-0.04616011679172516 +illusion_1.5L,ppo,34,13.6,omega,front,0.025021757930517197 +illusion_1.5L,ppo,34,13.6,omega,upper,-0.03005535714328289 +illusion_1.5L,ppo,34,13.6,omega,lower,-0.03405853733420372 +illusion_1.5L,ppo,35,14.0,omega,front,-0.07781921327114105 +illusion_1.5L,ppo,35,14.0,omega,upper,0.041987866163253784 +illusion_1.5L,ppo,35,14.0,omega,lower,0.02845604345202446 +illusion_1.5L,ppo,36,14.4,omega,front,-0.05047682672739029 +illusion_1.5L,ppo,36,14.4,omega,upper,0.026855306699872017 +illusion_1.5L,ppo,36,14.4,omega,lower,0.009756828658282757 +illusion_1.5L,ppo,37,14.8,omega,front,0.058126844465732574 +illusion_1.5L,ppo,37,14.8,omega,upper,-0.053317565470933914 +illusion_1.5L,ppo,37,14.8,omega,lower,-0.04230833053588867 +illusion_1.5L,ppo,38,15.2,omega,front,0.029515912756323814 +illusion_1.5L,ppo,38,15.2,omega,upper,-0.03555356711149216 +illusion_1.5L,ppo,38,15.2,omega,lower,-0.028793158009648323 +illusion_1.5L,ppo,39,15.6,omega,front,-0.05492285639047623 +illusion_1.5L,ppo,39,15.6,omega,upper,0.03045078180730343 +illusion_1.5L,ppo,39,15.6,omega,lower,0.01732027716934681 +illusion_1.5L,ppo,40,16.0,omega,front,-0.04565585404634476 +illusion_1.5L,ppo,40,16.0,omega,upper,0.031382665038108826 +illusion_1.5L,ppo,40,16.0,omega,lower,0.012720472179353237 +illusion_1.5L,ppo,41,16.4,omega,front,0.04483538120985031 +illusion_1.5L,ppo,41,16.4,omega,upper,-0.03934413939714432 +illusion_1.5L,ppo,41,16.4,omega,lower,-0.032997164875268936 +illusion_1.5L,ppo,42,16.8,omega,front,0.04216999560594559 +illusion_1.5L,ppo,42,16.8,omega,upper,-0.03893229737877846 +illusion_1.5L,ppo,42,16.8,omega,lower,-0.02939349040389061 +illusion_1.5L,ppo,43,17.2,omega,front,-0.047849833965301514 +illusion_1.5L,ppo,43,17.2,omega,upper,0.03486323356628418 +illusion_1.5L,ppo,43,17.2,omega,lower,0.02142104133963585 +illusion_1.5L,ppo,44,17.6,omega,front,-0.048621807247400284 +illusion_1.5L,ppo,44,17.6,omega,upper,0.04523976147174835 +illusion_1.5L,ppo,44,17.6,omega,lower,0.025475692003965378 +illusion_1.5L,ppo,45,18.0,omega,front,0.0504811592400074 +illusion_1.5L,ppo,45,18.0,omega,upper,-0.03142567351460457 +illusion_1.5L,ppo,45,18.0,omega,lower,-0.027506165206432343 +illusion_1.5L,ppo,46,18.4,omega,front,0.06939489394426346 +illusion_1.5L,ppo,46,18.4,omega,upper,-0.03889446705579758 +illusion_1.5L,ppo,46,18.4,omega,lower,-0.03291231393814087 +illusion_1.5L,ppo,47,18.8,omega,front,-0.02187124267220497 +illusion_1.5L,ppo,47,18.8,omega,upper,0.031564511358737946 +illusion_1.5L,ppo,47,18.8,omega,lower,0.02033933997154236 +illusion_1.5L,ppo,48,19.2,omega,front,-0.04104968532919884 +illusion_1.5L,ppo,48,19.2,omega,upper,0.0494220145046711 +illusion_1.5L,ppo,48,19.2,omega,lower,0.037803053855895996 +illusion_1.5L,ppo,49,19.6,omega,front,0.020776528865098953 +illusion_1.5L,ppo,49,19.6,omega,upper,-0.008700082078576088 +illusion_1.5L,ppo,49,19.6,omega,lower,-0.008654708974063396 +illusion_1.5L,ppo,50,20.0,omega,front,0.061764173209667206 +illusion_1.5L,ppo,50,20.0,omega,upper,-0.025742022320628166 +illusion_1.5L,ppo,50,20.0,omega,lower,-0.02584168314933777 +illusion_1.5L,ppo,51,20.4,omega,front,-0.003762963227927685 +illusion_1.5L,ppo,51,20.4,omega,upper,0.01772240549325943 +illusion_1.5L,ppo,51,20.4,omega,lower,0.009497917257249355 +illusion_1.5L,ppo,52,20.8,omega,front,-0.04616179317235947 +illusion_1.5L,ppo,52,20.8,omega,upper,0.04626690596342087 +illusion_1.5L,ppo,52,20.8,omega,lower,0.03953886777162552 +illusion_1.5L,ppo,53,21.2,omega,front,0.012789174914360046 +illusion_1.5L,ppo,53,21.2,omega,upper,-0.00015967845683917403 +illusion_1.5L,ppo,53,21.2,omega,lower,-0.0010250090854242444 +illusion_1.5L,ppo,54,21.6,omega,front,0.06972155719995499 +illusion_1.5L,ppo,54,21.6,omega,upper,-0.037519991397857666 +illusion_1.5L,ppo,54,21.6,omega,lower,-0.03525618836283684 +illusion_1.5L,ppo,55,22.0,omega,front,0.010435344651341438 +illusion_1.5L,ppo,55,22.0,omega,upper,0.009505013935267925 +illusion_1.5L,ppo,55,22.0,omega,lower,-0.00022896050359122455 +illusion_1.5L,ppo,56,22.4,omega,front,-0.06262017786502838 +illusion_1.5L,ppo,56,22.4,omega,upper,0.05605282634496689 +illusion_1.5L,ppo,56,22.4,omega,lower,0.04559241235256195 +illusion_1.5L,ppo,57,22.8,omega,front,-0.013123713433742523 +illusion_1.5L,ppo,57,22.8,omega,upper,0.015574955381453037 +illusion_1.5L,ppo,57,22.8,omega,lower,0.01039641909301281 +illusion_1.5L,ppo,58,23.2,omega,front,0.061867889016866684 +illusion_1.5L,ppo,58,23.2,omega,upper,-0.04970672354102135 +illusion_1.5L,ppo,58,23.2,omega,lower,-0.04021912068128586 +illusion_1.5L,ppo,59,23.6,omega,front,0.012095974758267403 +illusion_1.5L,ppo,59,23.6,omega,upper,-0.016427213326096535 +illusion_1.5L,ppo,59,23.6,omega,lower,-0.017352132126688957 +illusion_1.5L,ppo,60,24.0,omega,front,-0.07842334359884262 +illusion_1.5L,ppo,60,24.0,omega,upper,0.046386051923036575 +illusion_1.5L,ppo,60,24.0,omega,lower,0.03653882443904877 +illusion_1.5L,ppo,61,24.4,omega,front,-0.031913433223962784 +illusion_1.5L,ppo,61,24.4,omega,upper,0.021452808752655983 +illusion_1.5L,ppo,61,24.4,omega,lower,0.010273292660713196 +illusion_1.5L,ppo,62,24.8,omega,front,0.06536933034658432 +illusion_1.5L,ppo,62,24.8,omega,upper,-0.06453195214271545 +illusion_1.5L,ppo,62,24.8,omega,lower,-0.048737455159425735 +illusion_1.5L,ppo,63,25.2,omega,front,0.017836201936006546 +illusion_1.5L,ppo,63,25.2,omega,upper,-0.031361281871795654 +illusion_1.5L,ppo,63,25.2,omega,lower,-0.028810275718569756 +illusion_1.5L,ppo,64,25.6,omega,front,-0.07212460041046143 +illusion_1.5L,ppo,64,25.6,omega,upper,0.04372986778616905 +illusion_1.5L,ppo,64,25.6,omega,lower,0.026398567482829094 +illusion_1.5L,ppo,65,26.0,omega,front,-0.038968198001384735 +illusion_1.5L,ppo,65,26.0,omega,upper,0.02716504968702793 +illusion_1.5L,ppo,65,26.0,omega,lower,0.0068687391467392445 +illusion_1.5L,ppo,66,26.4,omega,front,0.061255767941474915 +illusion_1.5L,ppo,66,26.4,omega,upper,-0.05330362170934677 +illusion_1.5L,ppo,66,26.4,omega,lower,-0.042495954781770706 +illusion_1.5L,ppo,67,26.8,omega,front,0.025952273979783058 +illusion_1.5L,ppo,67,26.8,omega,upper,-0.031248334795236588 +illusion_1.5L,ppo,67,26.8,omega,lower,-0.026078300550580025 +illusion_1.5L,ppo,68,27.2,omega,front,-0.06152360886335373 +illusion_1.5L,ppo,68,27.2,omega,upper,0.044124260544776917 +illusion_1.5L,ppo,68,27.2,omega,lower,0.02723601832985878 +illusion_1.5L,ppo,69,27.6,omega,front,-0.03519594669342041 +illusion_1.5L,ppo,69,27.6,omega,upper,0.03350546583533287 +illusion_1.5L,ppo,69,27.6,omega,lower,0.015296448953449726 +illusion_1.5L,ppo,70,28.0,omega,front,0.075324647128582 +illusion_1.5L,ppo,70,28.0,omega,upper,-0.04705202952027321 +illusion_1.5L,ppo,70,28.0,omega,lower,-0.035526808351278305 +illusion_1.5L,ppo,71,28.4,omega,front,0.05614630505442619 +illusion_1.5L,ppo,71,28.4,omega,upper,-0.0341547392308712 +illusion_1.5L,ppo,71,28.4,omega,lower,-0.028284898027777672 +illusion_1.5L,ppo,72,28.8,omega,front,-0.044557370245456696 +illusion_1.5L,ppo,72,28.8,omega,upper,0.048171937465667725 +illusion_1.5L,ppo,72,28.8,omega,lower,0.03552258387207985 +illusion_1.5L,ppo,73,29.2,omega,front,-0.020260030403733253 +illusion_1.5L,ppo,73,29.2,omega,upper,0.039776552468538284 +illusion_1.5L,ppo,73,29.2,omega,lower,0.028846411034464836 +illusion_1.5L,ppo,74,29.6,omega,front,0.04626153036952019 +illusion_1.5L,ppo,74,29.6,omega,upper,-0.021924981847405434 +illusion_1.5L,ppo,74,29.6,omega,lower,-0.01829702779650688 +illusion_1.5L,ppo,75,30.0,omega,front,0.03996662423014641 +illusion_1.5L,ppo,75,30.0,omega,upper,-0.012618829496204853 +illusion_1.5L,ppo,75,30.0,omega,lower,-0.017028026282787323 +illusion_1.5L,ppo,76,30.4,omega,front,-0.028728779405355453 +illusion_1.5L,ppo,76,30.4,omega,upper,0.03492812067270279 +illusion_1.5L,ppo,76,30.4,omega,lower,0.02804582566022873 +illusion_1.5L,ppo,77,30.8,omega,front,-0.02506549283862114 +illusion_1.5L,ppo,77,30.8,omega,upper,0.03109165094792843 +illusion_1.5L,ppo,77,30.8,omega,lower,0.02615390717983246 +illusion_1.5L,ppo,78,31.2,omega,front,0.04720228910446167 +illusion_1.5L,ppo,78,31.2,omega,upper,-0.021156005561351776 +illusion_1.5L,ppo,78,31.2,omega,lower,-0.019711226224899292 +illusion_1.5L,ppo,79,31.6,omega,front,0.050672534853219986 +illusion_1.5L,ppo,79,31.6,omega,upper,-0.021014776080846786 +illusion_1.5L,ppo,79,31.6,omega,lower,-0.026423396542668343 +illusion_1.5L,ppo,80,32.0,omega,front,-0.03236646205186844 +illusion_1.5L,ppo,80,32.0,omega,upper,0.038862571120262146 +illusion_1.5L,ppo,80,32.0,omega,lower,0.027587059885263443 +illusion_1.5L,ppo,81,32.4,omega,front,-0.04611890763044357 +illusion_1.5L,ppo,81,32.4,omega,upper,0.042769573628902435 +illusion_1.5L,ppo,81,32.4,omega,lower,0.03250844031572342 +illusion_1.5L,ppo,82,32.8,omega,front,0.03687344491481781 +illusion_1.5L,ppo,82,32.8,omega,upper,-0.02347228303551674 +illusion_1.5L,ppo,82,32.8,omega,lower,-0.022734740749001503 +illusion_1.5L,ppo,83,33.2,omega,front,0.045862436294555664 +illusion_1.5L,ppo,83,33.2,omega,upper,-0.035974204540252686 +illusion_1.5L,ppo,83,33.2,omega,lower,-0.03530795872211456 +illusion_1.5L,ppo,84,33.6,omega,front,-0.04211077466607094 +illusion_1.5L,ppo,84,33.6,omega,upper,0.02936275489628315 +illusion_1.5L,ppo,84,33.6,omega,lower,0.022352389991283417 +illusion_1.5L,ppo,85,34.0,omega,front,-0.06773529201745987 +illusion_1.5L,ppo,85,34.0,omega,upper,0.0434945747256279 +illusion_1.5L,ppo,85,34.0,omega,lower,0.03194858878850937 +illusion_1.5L,ppo,86,34.4,omega,front,0.023119280114769936 +illusion_1.5L,ppo,86,34.4,omega,upper,-0.030043892562389374 +illusion_1.5L,ppo,86,34.4,omega,lower,-0.025652093812823296 +illusion_1.5L,ppo,87,34.8,omega,front,0.055447399616241455 +illusion_1.5L,ppo,87,34.8,omega,upper,-0.05899670347571373 +illusion_1.5L,ppo,87,34.8,omega,lower,-0.045274604111909866 +illusion_1.5L,ppo,88,35.2,omega,front,-0.02679106965661049 +illusion_1.5L,ppo,88,35.2,omega,upper,0.008469190448522568 +illusion_1.5L,ppo,88,35.2,omega,lower,0.0035624776501208544 +illusion_1.5L,ppo,89,35.6,omega,front,-0.06851531565189362 +illusion_1.5L,ppo,89,35.6,omega,upper,0.04391024634242058 +illusion_1.5L,ppo,89,35.6,omega,lower,0.02289481647312641 +illusion_1.5L,ppo,90,36.0,omega,front,0.004289825912564993 +illusion_1.5L,ppo,90,36.0,omega,upper,-0.008672080002725124 +illusion_1.5L,ppo,90,36.0,omega,lower,-0.017287734895944595 +illusion_1.5L,ppo,91,36.4,omega,front,0.06239968538284302 +illusion_1.5L,ppo,91,36.4,omega,upper,-0.05239463597536087 +illusion_1.5L,ppo,91,36.4,omega,lower,-0.04089740663766861 +illusion_1.5L,ppo,92,36.8,omega,front,-0.006349695846438408 +illusion_1.5L,ppo,92,36.8,omega,upper,-0.000999214593321085 +illusion_1.5L,ppo,92,36.8,omega,lower,-0.006114334799349308 +illusion_1.5L,ppo,93,37.2,omega,front,-0.06946471333503723 +illusion_1.5L,ppo,93,37.2,omega,upper,0.05183399096131325 +illusion_1.5L,ppo,93,37.2,omega,lower,0.030286364257335663 +illusion_1.5L,ppo,94,37.6,omega,front,-0.010119501501321793 +illusion_1.5L,ppo,94,37.6,omega,upper,0.00481022335588932 +illusion_1.5L,ppo,94,37.6,omega,lower,-0.004869401454925537 +illusion_1.5L,ppo,95,38.0,omega,front,0.07999999821186066 +illusion_1.5L,ppo,95,38.0,omega,upper,-0.055573396384716034 +illusion_1.5L,ppo,95,38.0,omega,lower,-0.038917966187000275 +illusion_1.5L,ppo,96,38.4,omega,front,0.03196980431675911 +illusion_1.5L,ppo,96,38.4,omega,upper,-0.016961615532636642 +illusion_1.5L,ppo,96,38.4,omega,lower,-0.015051360242068768 +illusion_1.5L,ppo,97,38.8,omega,front,-0.05127100646495819 +illusion_1.5L,ppo,97,38.8,omega,upper,0.056551408022642136 +illusion_1.5L,ppo,97,38.8,omega,lower,0.042306721210479736 +illusion_1.5L,ppo,98,39.2,omega,front,-0.011242820881307125 +illusion_1.5L,ppo,98,39.2,omega,upper,0.02380945160984993 +illusion_1.5L,ppo,98,39.2,omega,lower,0.016601214185357094 +illusion_1.5L,ppo,99,39.6,omega,front,0.06445939093828201 +illusion_1.5L,ppo,99,39.6,omega,upper,-0.034342121332883835 +illusion_1.5L,ppo,99,39.6,omega,lower,-0.02683151140809059 +illusion_1.5L,ppo,100,40.0,omega,front,0.024730172008275986 +illusion_1.5L,ppo,100,40.0,omega,upper,-0.01016100775450468 +illusion_1.5L,ppo,100,40.0,omega,lower,-0.015473728068172932 +illusion_1.5L,ppo,101,40.4,omega,front,-0.04802555590867996 +illusion_1.5L,ppo,101,40.4,omega,upper,0.049194153398275375 +illusion_1.5L,ppo,101,40.4,omega,lower,0.041319794952869415 +illusion_1.5L,ppo,102,40.8,omega,front,-0.013812748715281487 +illusion_1.5L,ppo,102,40.8,omega,upper,0.024742750450968742 +illusion_1.5L,ppo,102,40.8,omega,lower,0.019588973373174667 +illusion_1.5L,ppo,103,41.2,omega,front,0.0694531500339508 +illusion_1.5L,ppo,103,41.2,omega,upper,-0.03693113848567009 +illusion_1.5L,ppo,103,41.2,omega,lower,-0.032005105167627335 +illusion_1.5L,ppo,104,41.6,omega,front,0.037614334374666214 +illusion_1.5L,ppo,104,41.6,omega,upper,-0.014643107540905476 +illusion_1.5L,ppo,104,41.6,omega,lower,-0.023140067234635353 +illusion_1.5L,ppo,105,42.0,omega,front,-0.05155548080801964 +illusion_1.5L,ppo,105,42.0,omega,upper,0.053122587502002716 +illusion_1.5L,ppo,105,42.0,omega,lower,0.04170213267207146 +illusion_1.5L,ppo,106,42.4,omega,front,-0.02360191009938717 +illusion_1.5L,ppo,106,42.4,omega,upper,0.03512553125619888 +illusion_1.5L,ppo,106,42.4,omega,lower,0.02406308613717556 +illusion_1.5L,ppo,107,42.8,omega,front,0.06038158759474754 +illusion_1.5L,ppo,107,42.8,omega,upper,-0.034667592495679855 +illusion_1.5L,ppo,107,42.8,omega,lower,-0.03279133141040802 +illusion_1.5L,ppo,108,43.2,omega,front,0.03379641845822334 +illusion_1.5L,ppo,108,43.2,omega,upper,-0.017092790454626083 +illusion_1.5L,ppo,108,43.2,omega,lower,-0.022753901779651642 +illusion_1.5L,ppo,109,43.6,omega,front,-0.06886710971593857 +illusion_1.5L,ppo,109,43.6,omega,upper,0.049536798149347305 +illusion_1.5L,ppo,109,43.6,omega,lower,0.04166432470083237 +illusion_1.5L,ppo,110,44.0,omega,front,-0.05094845965504646 +illusion_1.5L,ppo,110,44.0,omega,upper,0.03698236495256424 +illusion_1.5L,ppo,110,44.0,omega,lower,0.027567848563194275 +illusion_1.5L,ppo,111,44.4,omega,front,0.05234206095337868 +illusion_1.5L,ppo,111,44.4,omega,upper,-0.04870155081152916 +illusion_1.5L,ppo,111,44.4,omega,lower,-0.039297010749578476 +illusion_1.5L,ppo,112,44.8,omega,front,0.034412797540426254 +illusion_1.5L,ppo,112,44.8,omega,upper,-0.04064645618200302 +illusion_1.5L,ppo,112,44.8,omega,lower,-0.037067048251628876 +illusion_1.5L,ppo,113,45.2,omega,front,-0.04865149036049843 +illusion_1.5L,ppo,113,45.2,omega,upper,0.03074357844889164 +illusion_1.5L,ppo,113,45.2,omega,lower,0.020580099895596504 +illusion_1.5L,ppo,114,45.6,omega,front,-0.051419053226709366 +illusion_1.5L,ppo,114,45.6,omega,upper,0.03330281004309654 +illusion_1.5L,ppo,114,45.6,omega,lower,0.016040651127696037 +illusion_1.5L,ppo,115,46.0,omega,front,0.03463498130440712 +illusion_1.5L,ppo,115,46.0,omega,upper,-0.03752404451370239 +illusion_1.5L,ppo,115,46.0,omega,lower,-0.03344263136386871 +illusion_1.5L,ppo,116,46.4,omega,front,0.04214339703321457 +illusion_1.5L,ppo,116,46.4,omega,upper,-0.043854132294654846 +illusion_1.5L,ppo,116,46.4,omega,lower,-0.03495822474360466 +illusion_1.5L,ppo,117,46.8,omega,front,-0.041572511196136475 +illusion_1.5L,ppo,117,46.8,omega,upper,0.02371780388057232 +illusion_1.5L,ppo,117,46.8,omega,lower,0.013562793843448162 +illusion_1.5L,ppo,118,47.2,omega,front,-0.056870512664318085 +illusion_1.5L,ppo,118,47.2,omega,upper,0.04179029539227486 +illusion_1.5L,ppo,118,47.2,omega,lower,0.020637042820453644 +illusion_1.5L,ppo,119,47.6,omega,front,0.030038274824619293 +illusion_1.5L,ppo,119,47.6,omega,upper,-0.026028933003544807 +illusion_1.5L,ppo,119,47.6,omega,lower,-0.02785884402692318 +illusion_1.5L,ppo,120,48.0,omega,front,0.0703900158405304 +illusion_1.5L,ppo,120,48.0,omega,upper,-0.04822671413421631 +illusion_1.5L,ppo,120,48.0,omega,lower,-0.03817335516214371 +illusion_1.5L,ppo,121,48.4,omega,front,-0.014804944396018982 +illusion_1.5L,ppo,121,48.4,omega,upper,0.015396196395158768 +illusion_1.5L,ppo,121,48.4,omega,lower,0.006350548006594181 +illusion_1.5L,ppo,122,48.8,omega,front,-0.04716283082962036 +illusion_1.5L,ppo,122,48.8,omega,upper,0.04621579870581627 +illusion_1.5L,ppo,122,48.8,omega,lower,0.030834173783659935 +illusion_1.5L,ppo,123,49.2,omega,front,0.010155219584703445 +illusion_1.5L,ppo,123,49.2,omega,upper,-0.00811893679201603 +illusion_1.5L,ppo,123,49.2,omega,lower,-0.008997654542326927 +illusion_1.5L,ppo,124,49.6,omega,front,0.06725481897592545 +illusion_1.5L,ppo,124,49.6,omega,upper,-0.03618776425719261 +illusion_1.5L,ppo,124,49.6,omega,lower,-0.029332198202610016 +illusion_1.5L,ppo,125,50.0,omega,front,0.0016486778622493148 +illusion_1.5L,ppo,125,50.0,omega,upper,0.010007147677242756 +illusion_1.5L,ppo,125,50.0,omega,lower,0.0035431194119155407 +illusion_1.5L,ppo,126,50.4,omega,front,-0.0478535033762455 +illusion_1.5L,ppo,126,50.4,omega,upper,0.050536107271909714 +illusion_1.5L,ppo,126,50.4,omega,lower,0.042488351464271545 +illusion_1.5L,ppo,127,50.8,omega,front,0.0046869623474776745 +illusion_1.5L,ppo,127,50.8,omega,upper,0.005246052518486977 +illusion_1.5L,ppo,127,50.8,omega,lower,0.003828685265034437 +illusion_1.5L,ppo,128,51.2,omega,front,0.0753103718161583 +illusion_1.5L,ppo,128,51.2,omega,upper,-0.0354241244494915 +illusion_1.5L,ppo,128,51.2,omega,lower,-0.031576648354530334 +illusion_1.5L,ppo,129,51.6,omega,front,0.019812729209661484 +illusion_1.5L,ppo,129,51.6,omega,upper,0.0043106223456561565 +illusion_1.5L,ppo,129,51.6,omega,lower,-0.006252193357795477 +illusion_1.5L,ppo,130,52.0,omega,front,-0.05152704566717148 +illusion_1.5L,ppo,130,52.0,omega,upper,0.05792956054210663 +illusion_1.5L,ppo,130,52.0,omega,lower,0.047394685447216034 +illusion_1.5L,ppo,131,52.4,omega,front,-0.007461818866431713 +illusion_1.5L,ppo,131,52.4,omega,upper,0.02325904369354248 +illusion_1.5L,ppo,131,52.4,omega,lower,0.014829413965344429 +illusion_1.5L,ppo,132,52.8,omega,front,0.06746078282594681 +illusion_1.5L,ppo,132,52.8,omega,upper,-0.03383311629295349 +illusion_1.5L,ppo,132,52.8,omega,lower,-0.035025615245103836 +illusion_1.5L,ppo,133,53.2,omega,front,0.02506040595471859 +illusion_1.5L,ppo,133,53.2,omega,upper,-0.005111896898597479 +illusion_1.5L,ppo,133,53.2,omega,lower,-0.01569555327296257 +illusion_1.5L,ppo,134,53.6,omega,front,-0.07204753160476685 +illusion_1.5L,ppo,134,53.6,omega,upper,0.04945950582623482 +illusion_1.5L,ppo,134,53.6,omega,lower,0.04102532938122749 +illusion_1.5L,ppo,135,54.0,omega,front,-0.04222998023033142 +illusion_1.5L,ppo,135,54.0,omega,upper,0.02624351531267166 +illusion_1.5L,ppo,135,54.0,omega,lower,0.01880546659231186 +illusion_1.5L,ppo,136,54.4,omega,front,0.049770887941122055 +illusion_1.5L,ppo,136,54.4,omega,upper,-0.0512092299759388 +illusion_1.5L,ppo,136,54.4,omega,lower,-0.04008866101503372 +illusion_1.5L,ppo,137,54.8,omega,front,0.01728213205933571 +illusion_1.5L,ppo,137,54.8,omega,upper,-0.036260657012462616 +illusion_1.5L,ppo,137,54.8,omega,lower,-0.03165937215089798 +illusion_1.5L,ppo,138,55.2,omega,front,-0.05662721022963524 +illusion_1.5L,ppo,138,55.2,omega,upper,0.022169537842273712 +illusion_1.5L,ppo,138,55.2,omega,lower,0.014565140940248966 +illusion_1.5L,ppo,139,55.6,omega,front,-0.03807944804430008 +illusion_1.5L,ppo,139,55.6,omega,upper,0.017550988122820854 +illusion_1.5L,ppo,139,55.6,omega,lower,0.004909862298518419 +illusion_1.5L,ppo,140,56.0,omega,front,0.04091566428542137 +illusion_1.5L,ppo,140,56.0,omega,upper,-0.0439583919942379 +illusion_1.5L,ppo,140,56.0,omega,lower,-0.035564735531806946 +illusion_1.5L,ppo,141,56.4,omega,front,0.026598813012242317 +illusion_1.5L,ppo,141,56.4,omega,upper,-0.03182407468557358 +illusion_1.5L,ppo,141,56.4,omega,lower,-0.026622219011187553 +illusion_1.5L,ppo,142,56.8,omega,front,-0.04838269203901291 +illusion_1.5L,ppo,142,56.8,omega,upper,0.03220854699611664 +illusion_1.5L,ppo,142,56.8,omega,lower,0.017097339034080505 +illusion_1.5L,ppo,143,57.2,omega,front,-0.04227099195122719 +illusion_1.5L,ppo,143,57.2,omega,upper,0.033419571816921234 +illusion_1.5L,ppo,143,57.2,omega,lower,0.011750529520213604 +illusion_1.5L,ppo,144,57.6,omega,front,0.04679538309574127 +illusion_1.5L,ppo,144,57.6,omega,upper,-0.034365735948085785 +illusion_1.5L,ppo,144,57.6,omega,lower,-0.033651746809482574 +illusion_1.5L,ppo,145,58.0,omega,front,0.053017158061265945 +illusion_1.5L,ppo,145,58.0,omega,upper,-0.030401941388845444 +illusion_1.5L,ppo,145,58.0,omega,lower,-0.02656610496342182 +illusion_1.5L,ppo,146,58.4,omega,front,-0.0307858157902956 +illusion_1.5L,ppo,146,58.4,omega,upper,0.03958156332373619 +illusion_1.5L,ppo,146,58.4,omega,lower,0.027233829721808434 +illusion_1.5L,ppo,147,58.8,omega,front,-0.03233589231967926 +illusion_1.5L,ppo,147,58.8,omega,upper,0.042849235236644745 +illusion_1.5L,ppo,147,58.8,omega,lower,0.03137998655438423 +illusion_1.5L,ppo,148,59.2,omega,front,0.04332481324672699 +illusion_1.5L,ppo,148,59.2,omega,upper,-0.0195662509649992 +illusion_1.5L,ppo,148,59.2,omega,lower,-0.011945443227887154 +illusion_1.5L,ppo,149,59.6,omega,front,0.059256717562675476 +illusion_1.5L,ppo,149,59.6,omega,upper,-0.022724466398358345 +illusion_1.5L,ppo,149,59.6,omega,lower,-0.01805603876709938 +illusion_1.5L,ppo,150,60.0,omega,front,-0.018851833418011665 +illusion_1.5L,ppo,150,60.0,omega,upper,0.031887348741292953 +illusion_1.5L,ppo,150,60.0,omega,lower,0.025543050840497017 +illusion_1.5L,ppo,151,60.4,omega,front,-0.03476356714963913 +illusion_1.5L,ppo,151,60.4,omega,upper,0.04252728447318077 +illusion_1.5L,ppo,151,60.4,omega,lower,0.039220817387104034 +illusion_1.5L,ppo,152,60.8,omega,front,0.028412699699401855 +illusion_1.5L,ppo,152,60.8,omega,upper,-0.00942110177129507 +illusion_1.5L,ppo,152,60.8,omega,lower,-0.006861467380076647 +illusion_1.5L,ppo,153,61.2,omega,front,0.05611365661025047 +illusion_1.5L,ppo,153,61.2,omega,upper,-0.023177223280072212 +illusion_1.5L,ppo,153,61.2,omega,lower,-0.02557722106575966 +illusion_1.5L,ppo,154,61.6,omega,front,-0.010702911764383316 +illusion_1.5L,ppo,154,61.6,omega,upper,0.02098275162279606 +illusion_1.5L,ppo,154,61.6,omega,lower,0.012019729241728783 +illusion_1.5L,ppo,155,62.0,omega,front,-0.046237580478191376 +illusion_1.5L,ppo,155,62.0,omega,upper,0.04255364462733269 +illusion_1.5L,ppo,155,62.0,omega,lower,0.034783534705638885 +illusion_1.5L,ppo,156,62.4,omega,front,0.014775498770177364 +illusion_1.5L,ppo,156,62.4,omega,upper,-0.010251881554722786 +illusion_1.5L,ppo,156,62.4,omega,lower,-0.011718993075191975 +illusion_1.5L,ppo,157,62.8,omega,front,0.06029216945171356 +illusion_1.5L,ppo,157,62.8,omega,upper,-0.044254664331674576 +illusion_1.5L,ppo,157,62.8,omega,lower,-0.041633717715740204 +illusion_1.5L,ppo,158,63.2,omega,front,-0.006350182928144932 +illusion_1.5L,ppo,158,63.2,omega,upper,0.009657058864831924 +illusion_1.5L,ppo,158,63.2,omega,lower,0.00230104080401361 +illusion_1.5L,ppo,159,63.6,omega,front,-0.07547609508037567 +illusion_1.5L,ppo,159,63.6,omega,upper,0.04556912183761597 +illusion_1.5L,ppo,159,63.6,omega,lower,0.033229049295186996 +illusion_1.5L,ppo,160,64.0,omega,front,-0.013893446885049343 +illusion_1.5L,ppo,160,64.0,omega,upper,-0.0013413679553195834 +illusion_1.5L,ppo,160,64.0,omega,lower,-0.0031553125008940697 +illusion_1.5L,ppo,161,64.4,omega,front,0.067205511033535 +illusion_1.5L,ppo,161,64.4,omega,upper,-0.07091591507196426 +illusion_1.5L,ppo,161,64.4,omega,lower,-0.04735194146633148 +illusion_1.5L,ppo,162,64.8,omega,front,0.002878105267882347 +illusion_1.5L,ppo,162,64.8,omega,upper,-0.029135538265109062 +illusion_1.5L,ppo,162,64.8,omega,lower,-0.02021721750497818 +illusion_1.5L,ppo,163,65.2,omega,front,-0.07999999821186066 +illusion_1.5L,ppo,163,65.2,omega,upper,0.036041010171175 +illusion_1.5L,ppo,163,65.2,omega,lower,0.021612806245684624 +illusion_1.5L,ppo,164,65.6,omega,front,-0.033888738602399826 +illusion_1.5L,ppo,164,65.6,omega,upper,0.019838063046336174 +illusion_1.5L,ppo,164,65.6,omega,lower,0.004697737749665976 +illusion_1.5L,ppo,165,66.0,omega,front,0.0640794038772583 +illusion_1.5L,ppo,165,66.0,omega,upper,-0.053847551345825195 +illusion_1.5L,ppo,165,66.0,omega,lower,-0.04158536717295647 +illusion_1.5L,ppo,166,66.4,omega,front,0.02113768458366394 +illusion_1.5L,ppo,166,66.4,omega,upper,-0.02360660582780838 +illusion_1.5L,ppo,166,66.4,omega,lower,-0.02414838783442974 +illusion_1.5L,ppo,167,66.8,omega,front,-0.05730757117271423 +illusion_1.5L,ppo,167,66.8,omega,upper,0.05033844709396362 +illusion_1.5L,ppo,167,66.8,omega,lower,0.02712932974100113 +illusion_1.5L,ppo,168,67.2,omega,front,-0.031061828136444092 +illusion_1.5L,ppo,168,67.2,omega,upper,0.03141852468252182 +illusion_1.5L,ppo,168,67.2,omega,lower,0.012821164913475513 +illusion_1.5L,ppo,169,67.6,omega,front,0.06954888999462128 +illusion_1.5L,ppo,169,67.6,omega,upper,-0.041150931268930435 +illusion_1.5L,ppo,169,67.6,omega,lower,-0.026798652485013008 +illusion_1.5L,ppo,170,68.0,omega,front,0.043130405247211456 +illusion_1.5L,ppo,170,68.0,omega,upper,-0.026131385937333107 +illusion_1.5L,ppo,170,68.0,omega,lower,-0.014024496078491211 +illusion_1.5L,ppo,171,68.4,omega,front,-0.05748818442225456 +illusion_1.5L,ppo,171,68.4,omega,upper,0.05008532479405403 +illusion_1.5L,ppo,171,68.4,omega,lower,0.03903853893280029 +illusion_1.5L,ppo,172,68.8,omega,front,-0.028587043285369873 +illusion_1.5L,ppo,172,68.8,omega,upper,0.03872557729482651 +illusion_1.5L,ppo,172,68.8,omega,lower,0.03228263184428215 +illusion_1.5L,ppo,173,69.2,omega,front,0.06738874316215515 +illusion_1.5L,ppo,173,69.2,omega,upper,-0.03103930689394474 +illusion_1.5L,ppo,173,69.2,omega,lower,-0.016210312023758888 +illusion_1.5L,ppo,174,69.6,omega,front,0.04690300300717354 +illusion_1.5L,ppo,174,69.6,omega,upper,-0.01952194795012474 +illusion_1.5L,ppo,174,69.6,omega,lower,-0.017727818340063095 +illusion_1.5L,ppo,175,70.0,omega,front,-0.035516757518053055 +illusion_1.5L,ppo,175,70.0,omega,upper,0.045165736228227615 +illusion_1.5L,ppo,175,70.0,omega,lower,0.03737819567322731 +illusion_1.5L,ppo,176,70.4,omega,front,-0.02091771550476551 +illusion_1.5L,ppo,176,70.4,omega,upper,0.0307793989777565 +illusion_1.5L,ppo,176,70.4,omega,lower,0.026845015585422516 +illusion_1.5L,ppo,177,70.8,omega,front,0.04298313707113266 +illusion_1.5L,ppo,177,70.8,omega,upper,-0.031162967905402184 +illusion_1.5L,ppo,177,70.8,omega,lower,-0.026995442807674408 +illusion_1.5L,ppo,178,71.2,omega,front,0.036505237221717834 +illusion_1.5L,ppo,178,71.2,omega,upper,-0.020140141248703003 +illusion_1.5L,ppo,178,71.2,omega,lower,-0.02279122732579708 +illusion_1.5L,ppo,179,71.6,omega,front,-0.03766663372516632 +illusion_1.5L,ppo,179,71.6,omega,upper,0.042555417865514755 +illusion_1.5L,ppo,179,71.6,omega,lower,0.03598465025424957 +illusion_1.5L,ppo,180,72.0,omega,front,-0.03292366489768028 +illusion_1.5L,ppo,180,72.0,omega,upper,0.03771287947893143 +illusion_1.5L,ppo,180,72.0,omega,lower,0.03076319210231304 +illusion_1.5L,ppo,181,72.4,omega,front,0.05439076945185661 +illusion_1.5L,ppo,181,72.4,omega,upper,-0.041089702397584915 +illusion_1.5L,ppo,181,72.4,omega,lower,-0.03448595106601715 +illusion_1.5L,ppo,182,72.8,omega,front,0.04811685159802437 +illusion_1.5L,ppo,182,72.8,omega,upper,-0.041844241321086884 +illusion_1.5L,ppo,182,72.8,omega,lower,-0.04099372774362564 +illusion_1.5L,ppo,183,73.2,omega,front,-0.05602540820837021 +illusion_1.5L,ppo,183,73.2,omega,upper,0.03955483436584473 +illusion_1.5L,ppo,183,73.2,omega,lower,0.028897404670715332 +illusion_1.5L,ppo,184,73.6,omega,front,-0.06288715451955795 +illusion_1.5L,ppo,184,73.6,omega,upper,0.04313451796770096 +illusion_1.5L,ppo,184,73.6,omega,lower,0.026364311575889587 +illusion_1.5L,ppo,185,74.0,omega,front,0.03365667164325714 +illusion_1.5L,ppo,185,74.0,omega,upper,-0.03638460487127304 +illusion_1.5L,ppo,185,74.0,omega,lower,-0.03169457986950874 +illusion_1.5L,ppo,186,74.4,omega,front,0.049664296209812164 +illusion_1.5L,ppo,186,74.4,omega,upper,-0.04956115782260895 +illusion_1.5L,ppo,186,74.4,omega,lower,-0.03926164656877518 +illusion_1.5L,ppo,187,74.8,omega,front,-0.03192131593823433 +illusion_1.5L,ppo,187,74.8,omega,upper,0.018855096772313118 +illusion_1.5L,ppo,187,74.8,omega,lower,0.011140215210616589 +illusion_1.5L,ppo,188,75.2,omega,front,-0.06299714744091034 +illusion_1.5L,ppo,188,75.2,omega,upper,0.043257005512714386 +illusion_1.5L,ppo,188,75.2,omega,lower,0.023097693920135498 +illusion_1.5L,ppo,189,75.6,omega,front,0.017408952116966248 +illusion_1.5L,ppo,189,75.6,omega,upper,-0.02037055417895317 +illusion_1.5L,ppo,189,75.6,omega,lower,-0.023086557164788246 +illusion_1.5L,ppo,190,76.0,omega,front,0.06123789772391319 +illusion_1.5L,ppo,190,76.0,omega,upper,-0.052107010036706924 +illusion_1.5L,ppo,190,76.0,omega,lower,-0.04043024033308029 +illusion_1.5L,ppo,191,76.4,omega,front,-0.024033693596720695 +illusion_1.5L,ppo,191,76.4,omega,upper,0.011596915312111378 +illusion_1.5L,ppo,191,76.4,omega,lower,0.001995289232581854 +illusion_1.5L,ppo,192,76.8,omega,front,-0.07114472985267639 +illusion_1.5L,ppo,192,76.8,omega,upper,0.05567602813243866 +illusion_1.5L,ppo,192,76.8,omega,lower,0.03198891878128052 +illusion_1.5L,ppo,193,77.2,omega,front,0.003257777076214552 +illusion_1.5L,ppo,193,77.2,omega,upper,-0.006525894161313772 +illusion_1.5L,ppo,193,77.2,omega,lower,-0.015272269025444984 +illusion_1.5L,ppo,194,77.6,omega,front,0.07999999821186066 +illusion_1.5L,ppo,194,77.6,omega,upper,-0.054627884179353714 +illusion_1.5L,ppo,194,77.6,omega,lower,-0.041367057710886 +illusion_1.5L,ppo,195,78.0,omega,front,0.01860143430531025 +illusion_1.5L,ppo,195,78.0,omega,upper,-0.008325689472258091 +illusion_1.5L,ppo,195,78.0,omega,lower,-0.01073997002094984 +illusion_1.5L,ppo,196,78.4,omega,front,-0.05764610692858696 +illusion_1.5L,ppo,196,78.4,omega,upper,0.05883636325597763 +illusion_1.5L,ppo,196,78.4,omega,lower,0.04309146851301193 +illusion_1.5L,ppo,197,78.8,omega,front,-0.011112806387245655 +illusion_1.5L,ppo,197,78.8,omega,upper,0.020301856100559235 +illusion_1.5L,ppo,197,78.8,omega,lower,0.01174219325184822 +illusion_1.5L,ppo,198,79.2,omega,front,0.0762031301856041 +illusion_1.5L,ppo,198,79.2,omega,upper,-0.038992635905742645 +illusion_1.5L,ppo,198,79.2,omega,lower,-0.03143152967095375 +illusion_1.5L,ppo,199,79.6,omega,front,0.029321735724806786 +illusion_1.5L,ppo,199,79.6,omega,upper,-0.008566336706280708 +illusion_1.5L,ppo,199,79.6,omega,lower,-0.01522432267665863 +illusion_1.5L,ppo,0,0.0,target_force,target_cd,0.00830752868205309 +illusion_1.5L,ppo,0,0.0,target_force,target_cl,0.0010011232225224376 +illusion_1.5L,ppo,1,0.4,target_force,target_cd,0.008207169361412525 +illusion_1.5L,ppo,1,0.4,target_force,target_cl,-0.00018176257435698062 +illusion_1.5L,ppo,2,0.8,target_force,target_cd,0.00834670290350914 +illusion_1.5L,ppo,2,0.8,target_force,target_cl,-0.00136119918897748 +illusion_1.5L,ppo,3,1.2,target_force,target_cd,0.008451278321444988 +illusion_1.5L,ppo,3,1.2,target_force,target_cl,-0.002446994185447693 +illusion_1.5L,ppo,4,1.6,target_force,target_cd,0.008312063291668892 +illusion_1.5L,ppo,4,1.6,target_force,target_cl,-0.0033562262542545795 +illusion_1.5L,ppo,5,2.0,target_force,target_cd,0.008355864323675632 +illusion_1.5L,ppo,5,2.0,target_force,target_cl,-0.004019565414637327 +illusion_1.5L,ppo,6,2.4,target_force,target_cd,0.00845526996999979 +illusion_1.5L,ppo,6,2.4,target_force,target_cl,-0.004386493470519781 +illusion_1.5L,ppo,7,2.8,target_force,target_cd,0.008588939905166626 +illusion_1.5L,ppo,7,2.8,target_force,target_cl,-0.004429016727954149 +illusion_1.5L,ppo,8,3.2,target_force,target_cd,0.008836976252496243 +illusion_1.5L,ppo,8,3.2,target_force,target_cl,-0.004143605940043926 +illusion_1.5L,ppo,9,3.6,target_force,target_cd,0.008733537979424 +illusion_1.5L,ppo,9,3.6,target_force,target_cl,-0.0035512277390807867 +illusion_1.5L,ppo,10,4.0,target_force,target_cd,0.008477425202727318 +illusion_1.5L,ppo,10,4.0,target_force,target_cl,-0.002695498988032341 +illusion_1.5L,ppo,11,4.4,target_force,target_cd,0.008370790630578995 +illusion_1.5L,ppo,11,4.4,target_force,target_cl,-0.001639144727960229 +illusion_1.5L,ppo,12,4.8,target_force,target_cd,0.008236602880060673 +illusion_1.5L,ppo,12,4.8,target_force,target_cl,-0.0004590688622556627 +illusion_1.5L,ppo,13,5.2,target_force,target_cd,0.008309897966682911 +illusion_1.5L,ppo,13,5.2,target_force,target_cl,0.000759548507630825 +illusion_1.5L,ppo,14,5.6,target_force,target_cd,0.008405817672610283 +illusion_1.5L,ppo,14,5.6,target_force,target_cl,0.0019296474056318402 +illusion_1.5L,ppo,15,6.0,target_force,target_cd,0.008243248797953129 +illusion_1.5L,ppo,15,6.0,target_force,target_cl,0.0029686721973121166 +illusion_1.5L,ppo,16,6.4,target_force,target_cd,0.008251132443547249 +illusion_1.5L,ppo,16,6.4,target_force,target_cl,0.0038044583052396774 +illusion_1.5L,ppo,17,6.8,target_force,target_cd,0.008374292403459549 +illusion_1.5L,ppo,17,6.8,target_force,target_cl,0.004380189348012209 +illusion_1.5L,ppo,18,7.2,target_force,target_cd,0.008528592064976692 +illusion_1.5L,ppo,18,7.2,target_force,target_cl,0.00465808343142271 +illusion_1.5L,ppo,19,7.6,target_force,target_cd,0.008839370682835579 +illusion_1.5L,ppo,19,7.6,target_force,target_cl,0.004621583968400955 +illusion_1.5L,ppo,20,8.0,target_force,target_cd,0.008838828653097153 +illusion_1.5L,ppo,20,8.0,target_force,target_cl,0.004275944549590349 +illusion_1.5L,ppo,21,8.4,target_force,target_cd,0.00861181877553463 +illusion_1.5L,ppo,21,8.4,target_force,target_cl,0.003647242672741413 +illusion_1.5L,ppo,22,8.8,target_force,target_cd,0.008512568660080433 +illusion_1.5L,ppo,22,8.8,target_force,target_cl,0.002779964357614517 +illusion_1.5L,ppo,23,9.2,target_force,target_cd,0.00835700798779726 +illusion_1.5L,ppo,23,9.2,target_force,target_cl,0.001733398879878223 +illusion_1.5L,ppo,24,9.6,target_force,target_cd,0.00834998395293951 +illusion_1.5L,ppo,24,9.6,target_force,target_cl,0.0005771745345555246 +illusion_1.5L,ppo,25,10.0,target_force,target_cd,0.008401495404541492 +illusion_1.5L,ppo,25,10.0,target_force,target_cl,-0.0006137097952887416 +illusion_1.5L,ppo,26,10.4,target_force,target_cd,0.00817778054624796 +illusion_1.5L,ppo,26,10.4,target_force,target_cl,-0.001763974200002849 +illusion_1.5L,ppo,27,10.8,target_force,target_cd,0.008096658624708652 +illusion_1.5L,ppo,27,10.8,target_force,target_cl,-0.0028029107488691807 +illusion_1.5L,ppo,28,11.2,target_force,target_cd,0.008196541108191013 +illusion_1.5L,ppo,28,11.2,target_force,target_cl,-0.0036686852108687162 +illusion_1.5L,ppo,29,11.6,target_force,target_cd,0.008346819318830967 +illusion_1.5L,ppo,29,11.6,target_force,target_cl,-0.004311835393309593 +illusion_1.5L,ppo,30,12.0,target_force,target_cd,0.008710415102541447 +illusion_1.5L,ppo,30,12.0,target_force,target_cl,-0.00469779409468174 +illusion_1.5L,ppo,31,12.4,target_force,target_cd,0.00884176604449749 +illusion_1.5L,ppo,31,12.4,target_force,target_cl,-0.004808346275240183 +illusion_1.5L,ppo,32,12.8,target_force,target_cd,0.00870272982865572 +illusion_1.5L,ppo,32,12.8,target_force,target_cl,-0.004642012063413858 +illusion_1.5L,ppo,33,13.2,target_force,target_cd,0.008674847893416882 +illusion_1.5L,ppo,33,13.2,target_force,target_cl,-0.004213416017591953 +illusion_1.5L,ppo,34,13.6,target_force,target_cd,0.008570708334445953 +illusion_1.5L,ppo,34,13.6,target_force,target_cl,-0.0035517665091902018 +illusion_1.5L,ppo,35,14.0,target_force,target_cd,0.008535319939255714 +illusion_1.5L,ppo,35,14.0,target_force,target_cl,-0.0026986123993992805 +illusion_1.5L,ppo,36,14.4,target_force,target_cd,0.008559806272387505 +illusion_1.5L,ppo,36,14.4,target_force,target_cl,-0.001705055357888341 +illusion_1.5L,ppo,37,14.8,target_force,target_cd,0.008268664591014385 +illusion_1.5L,ppo,37,14.8,target_force,target_cl,-0.0006286250427365303 +illusion_1.5L,ppo,38,15.2,target_force,target_cd,0.008048145100474358 +illusion_1.5L,ppo,38,15.2,target_force,target_cl,0.00046999973710626364 +illusion_1.5L,ppo,39,15.6,target_force,target_cd,0.008044709451496601 +illusion_1.5L,ppo,39,15.6,target_force,target_cl,0.0015302501851692796 +illusion_1.5L,ppo,40,16.0,target_force,target_cd,0.008106881752610207 +illusion_1.5L,ppo,40,16.0,target_force,target_cl,0.0024947577621787786 +illusion_1.5L,ppo,41,16.4,target_force,target_cd,0.008437012322247028 +illusion_1.5L,ppo,41,16.4,target_force,target_cl,0.0033121565356850624 +illusion_1.5L,ppo,42,16.8,target_force,target_cd,0.008649187162518501 +illusion_1.5L,ppo,42,16.8,target_force,target_cl,0.003939501009881496 +illusion_1.5L,ppo,43,17.2,target_force,target_cd,0.008595731109380722 +illusion_1.5L,ppo,43,17.2,target_force,target_cl,0.00434423191472888 +illusion_1.5L,ppo,44,17.6,target_force,target_cd,0.0086716553196311 +illusion_1.5L,ppo,44,17.6,target_force,target_cl,0.00450563570484519 +illusion_1.5L,ppo,45,18.0,target_force,target_cd,0.00869801826775074 +illusion_1.5L,ppo,45,18.0,target_force,target_cl,0.004415767267346382 +illusion_1.5L,ppo,46,18.4,target_force,target_cd,0.008734594099223614 +illusion_1.5L,ppo,46,18.4,target_force,target_cl,0.004079805221408606 +illusion_1.5L,ppo,47,18.8,target_force,target_cd,0.00882646068930626 +illusion_1.5L,ppo,47,18.8,target_force,target_cl,0.0035158328246325254 +illusion_1.5L,ppo,48,19.2,target_force,target_cd,0.00855401810258627 +illusion_1.5L,ppo,48,19.2,target_force,target_cl,0.002754038665443659 +illusion_1.5L,ppo,49,19.6,target_force,target_cd,0.008233987726271152 +illusion_1.5L,ppo,49,19.6,target_force,target_cl,0.0018353472696617246 +illusion_1.5L,ppo,50,20.0,target_force,target_cd,0.008110440336167812 +illusion_1.5L,ppo,50,20.0,target_force,target_cl,0.0008095093653537333 +illusion_1.5L,ppo,51,20.4,target_force,target_cd,0.008025186136364937 +illusion_1.5L,ppo,51,20.4,target_force,target_cl,-0.0002672986011020839 +illusion_1.5L,ppo,52,20.8,target_force,target_cd,0.00821420457214117 +illusion_1.5L,ppo,52,20.8,target_force,target_cl,-0.0013352894457057118 +illusion_1.5L,ppo,53,21.2,target_force,target_cd,0.008388136513531208 +illusion_1.5L,ppo,53,21.2,target_force,target_cl,-0.0023341856431216 +illusion_1.5L,ppo,54,21.6,target_force,target_cd,0.008321747183799744 +illusion_1.5L,ppo,54,21.6,target_force,target_cl,-0.003206508932635188 +illusion_1.5L,ppo,55,22.0,target_force,target_cd,0.008427520282566547 +illusion_1.5L,ppo,55,22.0,target_force,target_cl,-0.003900873241946101 +illusion_1.5L,ppo,56,22.4,target_force,target_cd,0.008568542078137398 +illusion_1.5L,ppo,56,22.4,target_force,target_cl,-0.004375095013529062 +illusion_1.5L,ppo,57,22.8,target_force,target_cd,0.00871978048235178 +illusion_1.5L,ppo,57,22.8,target_force,target_cl,-0.0045989216305315495 +illusion_1.5L,ppo,58,23.2,target_force,target_cd,0.008962784893810749 +illusion_1.5L,ppo,58,23.2,target_force,target_cl,-0.004556191619485617 +illusion_1.5L,ppo,59,23.6,target_force,target_cd,0.008836515247821808 +illusion_1.5L,ppo,59,23.6,target_force,target_cl,-0.004246238153427839 +illusion_1.5L,ppo,60,24.0,target_force,target_cd,0.008545846678316593 +illusion_1.5L,ppo,60,24.0,target_force,target_cl,-0.0036844098940491676 +illusion_1.5L,ppo,61,24.4,target_force,target_cd,0.008398630656301975 +illusion_1.5L,ppo,61,24.4,target_force,target_cl,-0.002901609754189849 +illusion_1.5L,ppo,62,24.8,target_force,target_cd,0.008222403936088085 +illusion_1.5L,ppo,62,24.8,target_force,target_cl,-0.0019428232917562127 +illusion_1.5L,ppo,63,25.2,target_force,target_cd,0.008255818858742714 +illusion_1.5L,ppo,63,25.2,target_force,target_cl,-0.0008646877249702811 +illusion_1.5L,ppo,64,25.6,target_force,target_cd,0.008317413739860058 +illusion_1.5L,ppo,64,25.6,target_force,target_cl,0.00026779170730151236 +illusion_1.5L,ppo,65,26.0,target_force,target_cd,0.008129971101880074 +illusion_1.5L,ppo,65,26.0,target_force,target_cl,0.0013851849362254143 +illusion_1.5L,ppo,66,26.4,target_force,target_cd,0.008126952685415745 +illusion_1.5L,ppo,66,26.4,target_force,target_cl,0.0024179983884096146 +illusion_1.5L,ppo,67,26.8,target_force,target_cd,0.008257587440311909 +illusion_1.5L,ppo,67,26.8,target_force,target_cl,0.0033011636696755886 +illusion_1.5L,ppo,68,27.2,target_force,target_cd,0.008440481498837471 +illusion_1.5L,ppo,68,27.2,target_force,target_cl,0.00397834274917841 +illusion_1.5L,ppo,69,27.6,target_force,target_cd,0.008800248615443707 +illusion_1.5L,ppo,69,27.6,target_force,target_cl,0.004405742511153221 +illusion_1.5L,ppo,70,28.0,target_force,target_cd,0.008863523602485657 +illusion_1.5L,ppo,70,28.0,target_force,target_cl,0.004555147606879473 +illusion_1.5L,ppo,71,28.4,target_force,target_cd,0.008704573847353458 +illusion_1.5L,ppo,71,28.4,target_force,target_cl,0.004415951203554869 +illusion_1.5L,ppo,72,28.8,target_force,target_cd,0.008663436397910118 +illusion_1.5L,ppo,72,28.8,target_force,target_cl,0.003996006213128567 +illusion_1.5L,ppo,73,29.2,target_force,target_cd,0.008541211485862732 +illusion_1.5L,ppo,73,29.2,target_force,target_cl,0.003321231808513403 +illusion_1.5L,ppo,74,29.6,target_force,target_cd,0.008531142957508564 +illusion_1.5L,ppo,74,29.6,target_force,target_cl,0.0024339796509593725 +illusion_1.5L,ppo,75,30.0,target_force,target_cd,0.008538627997040749 +illusion_1.5L,ppo,75,30.0,target_force,target_cl,0.0013902769424021244 +illusion_1.5L,ppo,76,30.4,target_force,target_cd,0.008234775625169277 +illusion_1.5L,ppo,76,30.4,target_force,target_cl,0.00025613215984776616 +illusion_1.5L,ppo,77,30.8,target_force,target_cd,0.008051978424191475 +illusion_1.5L,ppo,77,30.8,target_force,target_cl,-0.0008968284237198532 +illusion_1.5L,ppo,78,31.2,target_force,target_cd,0.008050505071878433 +illusion_1.5L,ppo,78,31.2,target_force,target_cl,-0.001996083650738001 +illusion_1.5L,ppo,79,31.6,target_force,target_cd,0.00812414288520813 +illusion_1.5L,ppo,79,31.6,target_force,target_cl,-0.002972961403429508 +illusion_1.5L,ppo,80,32.0,target_force,target_cd,0.008456713519990444 +illusion_1.5L,ppo,80,32.0,target_force,target_cl,-0.0037670698948204517 +illusion_1.5L,ppo,81,32.4,target_force,target_cd,0.008614281192421913 +illusion_1.5L,ppo,81,32.4,target_force,target_cl,-0.004330110736191273 +illusion_1.5L,ppo,82,32.8,target_force,target_cd,0.008557140827178955 +illusion_1.5L,ppo,82,32.8,target_force,target_cl,-0.0046288203448057175 +illusion_1.5L,ppo,83,33.2,target_force,target_cd,0.008651274256408215 +illusion_1.5L,ppo,83,33.2,target_force,target_cl,-0.004646855406463146 +illusion_1.5L,ppo,84,33.6,target_force,target_cd,0.008682523854076862 +illusion_1.5L,ppo,84,33.6,target_force,target_cl,-0.004385523032397032 +illusion_1.5L,ppo,85,34.0,target_force,target_cd,0.008763913065195084 +illusion_1.5L,ppo,85,34.0,target_force,target_cl,-0.003863341175019741 +illusion_1.5L,ppo,86,34.4,target_force,target_cd,0.008857103064656258 +illusion_1.5L,ppo,86,34.4,target_force,target_cl,-0.003114501480013132 +illusion_1.5L,ppo,87,34.8,target_force,target_cd,0.008567268028855324 +illusion_1.5L,ppo,87,34.8,target_force,target_cl,-0.0021863768342882395 +illusion_1.5L,ppo,88,35.2,target_force,target_cd,0.008276951499283314 +illusion_1.5L,ppo,88,35.2,target_force,target_cl,-0.00113628339022398 +illusion_1.5L,ppo,89,35.6,target_force,target_cd,0.00814629066735506 +illusion_1.5L,ppo,89,35.6,target_force,target_cl,-2.7741156372940168e-05 +illusion_1.5L,ppo,90,36.0,target_force,target_cd,0.008052270859479904 +illusion_1.5L,ppo,90,36.0,target_force,target_cl,0.0010735015384852886 +illusion_1.5L,ppo,91,36.4,target_force,target_cd,0.008233996108174324 +illusion_1.5L,ppo,91,36.4,target_force,target_cl,0.002103414386510849 +illusion_1.5L,ppo,92,36.8,target_force,target_cd,0.00834172498434782 +illusion_1.5L,ppo,92,36.8,target_force,target_cl,0.003003360703587532 +illusion_1.5L,ppo,93,37.2,target_force,target_cd,0.00825431663542986 +illusion_1.5L,ppo,93,37.2,target_force,target_cl,0.0037232949398458004 +illusion_1.5L,ppo,94,37.6,target_force,target_cd,0.008376773446798325 +illusion_1.5L,ppo,94,37.6,target_force,target_cl,0.004224325064569712 +illusion_1.5L,ppo,95,38.0,target_force,target_cd,0.008520676754415035 +illusion_1.5L,ppo,95,38.0,target_force,target_cl,0.004480533301830292 +illusion_1.5L,ppo,96,38.4,target_force,target_cd,0.008718762546777725 +illusion_1.5L,ppo,96,38.4,target_force,target_cl,0.004480006173253059 +illusion_1.5L,ppo,97,38.8,target_force,target_cd,0.008977879770100117 +illusion_1.5L,ppo,97,38.8,target_force,target_cl,0.004225077107548714 +illusion_1.5L,ppo,98,39.2,target_force,target_cd,0.008838298730552197 +illusion_1.5L,ppo,98,39.2,target_force,target_cl,0.003731819335371256 +illusion_1.5L,ppo,99,39.6,target_force,target_cd,0.008584593422710896 +illusion_1.5L,ppo,99,39.6,target_force,target_cl,0.003028873587027192 +illusion_1.5L,ppo,100,40.0,target_force,target_cd,0.008444661274552345 +illusion_1.5L,ppo,100,40.0,target_force,target_cl,0.0021557060535997152 +illusion_1.5L,ppo,101,40.4,target_force,target_cd,0.008264164440333843 +illusion_1.5L,ppo,101,40.4,target_force,target_cl,0.0011604140745475888 +illusion_1.5L,ppo,102,40.8,target_force,target_cd,0.008302022702991962 +illusion_1.5L,ppo,102,40.8,target_force,target_cl,9.71955741988495e-05 +illusion_1.5L,ppo,103,41.2,target_force,target_cd,0.008305243216454983 +illusion_1.5L,ppo,103,41.2,target_force,target_cl,-0.0009763991693034768 +illusion_1.5L,ppo,104,41.6,target_force,target_cd,0.00808938778936863 +illusion_1.5L,ppo,104,41.6,target_force,target_cl,-0.0020023230463266373 +illusion_1.5L,ppo,105,42.0,target_force,target_cd,0.00810216274112463 +illusion_1.5L,ppo,105,42.0,target_force,target_cl,-0.0029248876962810755 +illusion_1.5L,ppo,106,42.4,target_force,target_cd,0.008227785117924213 +illusion_1.5L,ppo,106,42.4,target_force,target_cl,-0.003693518228828907 +illusion_1.5L,ppo,107,42.8,target_force,target_cd,0.008443349972367287 +illusion_1.5L,ppo,107,42.8,target_force,target_cl,-0.004265311174094677 +illusion_1.5L,ppo,108,43.2,target_force,target_cd,0.00881340354681015 +illusion_1.5L,ppo,108,43.2,target_force,target_cl,-0.004607294220477343 +illusion_1.5L,ppo,109,43.6,target_force,target_cd,0.008845353499054909 +illusion_1.5L,ppo,109,43.6,target_force,target_cl,-0.004698297940194607 +illusion_1.5L,ppo,110,44.0,target_force,target_cd,0.008706018328666687 +illusion_1.5L,ppo,110,44.0,target_force,target_cl,-0.00453033484518528 +illusion_1.5L,ppo,111,44.4,target_force,target_cd,0.008668088354170322 +illusion_1.5L,ppo,111,44.4,target_force,target_cl,-0.0041094026528298855 +illusion_1.5L,ppo,112,44.8,target_force,target_cd,0.008535206317901611 +illusion_1.5L,ppo,112,44.8,target_force,target_cl,-0.0034556195605546236 +illusion_1.5L,ppo,113,45.2,target_force,target_cd,0.008538703434169292 +illusion_1.5L,ppo,113,45.2,target_force,target_cl,-0.0026026417035609484 +illusion_1.5L,ppo,114,45.6,target_force,target_cd,0.008507398888468742 +illusion_1.5L,ppo,114,45.6,target_force,target_cl,-0.0015963123878464103 +illusion_1.5L,ppo,115,46.0,target_force,target_cd,0.008188637904822826 +illusion_1.5L,ppo,115,46.0,target_force,target_cl,-0.0004925571847707033 +illusion_1.5L,ppo,116,46.4,target_force,target_cd,0.008048116229474545 +illusion_1.5L,ppo,116,46.4,target_force,target_cl,0.0006454337853938341 +illusion_1.5L,ppo,117,46.8,target_force,target_cd,0.008066830225288868 +illusion_1.5L,ppo,117,46.8,target_force,target_cl,0.0017506300937384367 +illusion_1.5L,ppo,118,47.2,target_force,target_cd,0.008187176659703255 +illusion_1.5L,ppo,118,47.2,target_force,target_cl,0.0027560393791645765 +illusion_1.5L,ppo,119,47.6,target_force,target_cd,0.008544488810002804 +illusion_1.5L,ppo,119,47.6,target_force,target_cl,0.003598828800022602 +illusion_1.5L,ppo,120,48.0,target_force,target_cd,0.008661487139761448 +illusion_1.5L,ppo,120,48.0,target_force,target_cl,0.004224441479891539 +illusion_1.5L,ppo,121,48.4,target_force,target_cd,0.008595987223088741 +illusion_1.5L,ppo,121,48.4,target_force,target_cl,0.004590427968651056 +illusion_1.5L,ppo,122,48.8,target_force,target_cd,0.00866398774087429 +illusion_1.5L,ppo,122,48.8,target_force,target_cl,0.004669702146202326 +illusion_1.5L,ppo,123,49.2,target_force,target_cd,0.008641288615763187 +illusion_1.5L,ppo,123,49.2,target_force,target_cl,0.00445295637473464 +illusion_1.5L,ppo,124,49.6,target_force,target_cd,0.008700589649379253 +illusion_1.5L,ppo,124,49.6,target_force,target_cl,0.003949987236410379 +illusion_1.5L,ppo,125,50.0,target_force,target_cd,0.0087357172742486 +illusion_1.5L,ppo,125,50.0,target_force,target_cl,0.0031897714361548424 +illusion_1.5L,ppo,126,50.4,target_force,target_cd,0.008416758850216866 +illusion_1.5L,ppo,126,50.4,target_force,target_cl,0.0022191947791725397 +illusion_1.5L,ppo,127,50.8,target_force,target_cd,0.008184477686882019 +illusion_1.5L,ppo,127,50.8,target_force,target_cl,0.0011004460975527763 +illusion_1.5L,ppo,128,51.2,target_force,target_cd,0.008113646879792213 +illusion_1.5L,ppo,128,51.2,target_force,target_cl,-9.281020174967125e-05 +illusion_1.5L,ppo,129,51.6,target_force,target_cd,0.008114459924399853 +illusion_1.5L,ppo,129,51.6,target_force,target_cl,-0.0012802616693079472 +illusion_1.5L,ppo,130,52.0,target_force,target_cd,0.00838505756109953 +illusion_1.5L,ppo,130,52.0,target_force,target_cl,-0.0023804628290235996 +illusion_1.5L,ppo,131,52.4,target_force,target_cd,0.008501009084284306 +illusion_1.5L,ppo,131,52.4,target_force,target_cl,-0.0033166492357850075 +illusion_1.5L,ppo,132,52.8,target_force,target_cd,0.008426300249993801 +illusion_1.5L,ppo,132,52.8,target_force,target_cl,-0.0040224166586995125 +illusion_1.5L,ppo,133,53.2,target_force,target_cd,0.008525465615093708 +illusion_1.5L,ppo,133,53.2,target_force,target_cl,-0.004446820355951786 +illusion_1.5L,ppo,134,53.6,target_force,target_cd,0.008579546585679054 +illusion_1.5L,ppo,134,53.6,target_force,target_cl,-0.004558473825454712 +illusion_1.5L,ppo,135,54.0,target_force,target_cd,0.008695491589605808 +illusion_1.5L,ppo,135,54.0,target_force,target_cl,-0.004348290152847767 +illusion_1.5L,ppo,136,54.4,target_force,target_cd,0.008829263038933277 +illusion_1.5L,ppo,136,54.4,target_force,target_cl,-0.003830599831417203 +illusion_1.5L,ppo,137,54.8,target_force,target_cd,0.008581466972827911 +illusion_1.5L,ppo,137,54.8,target_force,target_cl,-0.0030425097793340683 +illusion_1.5L,ppo,138,55.2,target_force,target_cd,0.00833103060722351 +illusion_1.5L,ppo,138,55.2,target_force,target_cl,-0.002041497267782688 +illusion_1.5L,ppo,139,55.6,target_force,target_cd,0.008234694600105286 +illusion_1.5L,ppo,139,55.6,target_force,target_cl,-0.0009013823582790792 +illusion_1.5L,ppo,140,56.0,target_force,target_cd,0.008165549486875534 +illusion_1.5L,ppo,140,56.0,target_force,target_cl,0.0002930406481027603 +illusion_1.5L,ppo,141,56.4,target_force,target_cd,0.008358174934983253 +illusion_1.5L,ppo,141,56.4,target_force,target_cl,0.0014523195568472147 +illusion_1.5L,ppo,142,56.8,target_force,target_cd,0.00845842994749546 +illusion_1.5L,ppo,142,56.8,target_force,target_cl,0.002489121165126562 +illusion_1.5L,ppo,143,57.2,target_force,target_cd,0.00834242720156908 +illusion_1.5L,ppo,143,57.2,target_force,target_cl,0.0033249391708523035 +illusion_1.5L,ppo,144,57.6,target_force,target_cd,0.008415895514190197 +illusion_1.5L,ppo,144,57.6,target_force,target_cl,0.003896194277331233 +illusion_1.5L,ppo,145,58.0,target_force,target_cd,0.008495981805026531 +illusion_1.5L,ppo,145,58.0,target_force,target_cl,0.004159233067184687 +illusion_1.5L,ppo,146,58.4,target_force,target_cd,0.008626007474958897 +illusion_1.5L,ppo,146,58.4,target_force,target_cl,0.004093810450285673 +illusion_1.5L,ppo,147,58.8,target_force,target_cd,0.008827011100947857 +illusion_1.5L,ppo,147,58.8,target_force,target_cl,0.0037047627847641706 +illusion_1.5L,ppo,148,59.2,target_force,target_cd,0.008654095232486725 +illusion_1.5L,ppo,148,59.2,target_force,target_cl,0.0030217289458960295 +illusion_1.5L,ppo,149,59.6,target_force,target_cd,0.008403435349464417 +illusion_1.5L,ppo,149,59.6,target_force,target_cl,0.0020969207398593426 +illusion_1.5L,ppo,150,60.0,target_force,target_cd,0.00830752868205309 +illusion_1.5L,ppo,150,60.0,target_force,target_cl,0.0010011232225224376 +illusion_1.5L,ppo,151,60.4,target_force,target_cd,0.008207169361412525 +illusion_1.5L,ppo,151,60.4,target_force,target_cl,-0.00018176257435698062 +illusion_1.5L,ppo,152,60.8,target_force,target_cd,0.00834670290350914 +illusion_1.5L,ppo,152,60.8,target_force,target_cl,-0.00136119918897748 +illusion_1.5L,ppo,153,61.2,target_force,target_cd,0.008451278321444988 +illusion_1.5L,ppo,153,61.2,target_force,target_cl,-0.002446994185447693 +illusion_1.5L,ppo,154,61.6,target_force,target_cd,0.008312063291668892 +illusion_1.5L,ppo,154,61.6,target_force,target_cl,-0.0033562262542545795 +illusion_1.5L,ppo,155,62.0,target_force,target_cd,0.008355864323675632 +illusion_1.5L,ppo,155,62.0,target_force,target_cl,-0.004019565414637327 +illusion_1.5L,ppo,156,62.4,target_force,target_cd,0.00845526996999979 +illusion_1.5L,ppo,156,62.4,target_force,target_cl,-0.004386493470519781 +illusion_1.5L,ppo,157,62.8,target_force,target_cd,0.008588939905166626 +illusion_1.5L,ppo,157,62.8,target_force,target_cl,-0.004429016727954149 +illusion_1.5L,ppo,158,63.2,target_force,target_cd,0.008836976252496243 +illusion_1.5L,ppo,158,63.2,target_force,target_cl,-0.004143605940043926 +illusion_1.5L,ppo,159,63.6,target_force,target_cd,0.008733537979424 +illusion_1.5L,ppo,159,63.6,target_force,target_cl,-0.0035512277390807867 +illusion_1.5L,ppo,160,64.0,target_force,target_cd,0.008477425202727318 +illusion_1.5L,ppo,160,64.0,target_force,target_cl,-0.002695498988032341 +illusion_1.5L,ppo,161,64.4,target_force,target_cd,0.008370790630578995 +illusion_1.5L,ppo,161,64.4,target_force,target_cl,-0.001639144727960229 +illusion_1.5L,ppo,162,64.8,target_force,target_cd,0.008236602880060673 +illusion_1.5L,ppo,162,64.8,target_force,target_cl,-0.0004590688622556627 +illusion_1.5L,ppo,163,65.2,target_force,target_cd,0.008309897966682911 +illusion_1.5L,ppo,163,65.2,target_force,target_cl,0.000759548507630825 +illusion_1.5L,ppo,164,65.6,target_force,target_cd,0.008405817672610283 +illusion_1.5L,ppo,164,65.6,target_force,target_cl,0.0019296474056318402 +illusion_1.5L,ppo,165,66.0,target_force,target_cd,0.008243248797953129 +illusion_1.5L,ppo,165,66.0,target_force,target_cl,0.0029686721973121166 +illusion_1.5L,ppo,166,66.4,target_force,target_cd,0.008251132443547249 +illusion_1.5L,ppo,166,66.4,target_force,target_cl,0.0038044583052396774 +illusion_1.5L,ppo,167,66.8,target_force,target_cd,0.008374292403459549 +illusion_1.5L,ppo,167,66.8,target_force,target_cl,0.004380189348012209 +illusion_1.5L,ppo,168,67.2,target_force,target_cd,0.008528592064976692 +illusion_1.5L,ppo,168,67.2,target_force,target_cl,0.00465808343142271 +illusion_1.5L,ppo,169,67.6,target_force,target_cd,0.008839370682835579 +illusion_1.5L,ppo,169,67.6,target_force,target_cl,0.004621583968400955 +illusion_1.5L,ppo,170,68.0,target_force,target_cd,0.008838828653097153 +illusion_1.5L,ppo,170,68.0,target_force,target_cl,0.004275944549590349 +illusion_1.5L,ppo,171,68.4,target_force,target_cd,0.00861181877553463 +illusion_1.5L,ppo,171,68.4,target_force,target_cl,0.003647242672741413 +illusion_1.5L,ppo,172,68.8,target_force,target_cd,0.008512568660080433 +illusion_1.5L,ppo,172,68.8,target_force,target_cl,0.002779964357614517 +illusion_1.5L,ppo,173,69.2,target_force,target_cd,0.00835700798779726 +illusion_1.5L,ppo,173,69.2,target_force,target_cl,0.001733398879878223 +illusion_1.5L,ppo,174,69.6,target_force,target_cd,0.00834998395293951 +illusion_1.5L,ppo,174,69.6,target_force,target_cl,0.0005771745345555246 +illusion_1.5L,ppo,175,70.0,target_force,target_cd,0.008401495404541492 +illusion_1.5L,ppo,175,70.0,target_force,target_cl,-0.0006137097952887416 +illusion_1.5L,ppo,176,70.4,target_force,target_cd,0.00817778054624796 +illusion_1.5L,ppo,176,70.4,target_force,target_cl,-0.001763974200002849 +illusion_1.5L,ppo,177,70.8,target_force,target_cd,0.008096658624708652 +illusion_1.5L,ppo,177,70.8,target_force,target_cl,-0.0028029107488691807 +illusion_1.5L,ppo,178,71.2,target_force,target_cd,0.008196541108191013 +illusion_1.5L,ppo,178,71.2,target_force,target_cl,-0.0036686852108687162 +illusion_1.5L,ppo,179,71.6,target_force,target_cd,0.008346819318830967 +illusion_1.5L,ppo,179,71.6,target_force,target_cl,-0.004311835393309593 +illusion_1.5L,ppo,180,72.0,target_force,target_cd,0.008710415102541447 +illusion_1.5L,ppo,180,72.0,target_force,target_cl,-0.00469779409468174 +illusion_1.5L,ppo,181,72.4,target_force,target_cd,0.00884176604449749 +illusion_1.5L,ppo,181,72.4,target_force,target_cl,-0.004808346275240183 +illusion_1.5L,ppo,182,72.8,target_force,target_cd,0.00870272982865572 +illusion_1.5L,ppo,182,72.8,target_force,target_cl,-0.004642012063413858 +illusion_1.5L,ppo,183,73.2,target_force,target_cd,0.008674847893416882 +illusion_1.5L,ppo,183,73.2,target_force,target_cl,-0.004213416017591953 +illusion_1.5L,ppo,184,73.6,target_force,target_cd,0.008570708334445953 +illusion_1.5L,ppo,184,73.6,target_force,target_cl,-0.0035517665091902018 +illusion_1.5L,ppo,185,74.0,target_force,target_cd,0.008535319939255714 +illusion_1.5L,ppo,185,74.0,target_force,target_cl,-0.0026986123993992805 +illusion_1.5L,ppo,186,74.4,target_force,target_cd,0.008559806272387505 +illusion_1.5L,ppo,186,74.4,target_force,target_cl,-0.001705055357888341 +illusion_1.5L,ppo,187,74.8,target_force,target_cd,0.008268664591014385 +illusion_1.5L,ppo,187,74.8,target_force,target_cl,-0.0006286250427365303 +illusion_1.5L,ppo,188,75.2,target_force,target_cd,0.008048145100474358 +illusion_1.5L,ppo,188,75.2,target_force,target_cl,0.00046999973710626364 +illusion_1.5L,ppo,189,75.6,target_force,target_cd,0.008044709451496601 +illusion_1.5L,ppo,189,75.6,target_force,target_cl,0.0015302501851692796 +illusion_1.5L,ppo,190,76.0,target_force,target_cd,0.008106881752610207 +illusion_1.5L,ppo,190,76.0,target_force,target_cl,0.0024947577621787786 +illusion_1.5L,ppo,191,76.4,target_force,target_cd,0.008437012322247028 +illusion_1.5L,ppo,191,76.4,target_force,target_cl,0.0033121565356850624 +illusion_1.5L,ppo,192,76.8,target_force,target_cd,0.008649187162518501 +illusion_1.5L,ppo,192,76.8,target_force,target_cl,0.003939501009881496 +illusion_1.5L,ppo,193,77.2,target_force,target_cd,0.008595731109380722 +illusion_1.5L,ppo,193,77.2,target_force,target_cl,0.00434423191472888 +illusion_1.5L,ppo,194,77.6,target_force,target_cd,0.0086716553196311 +illusion_1.5L,ppo,194,77.6,target_force,target_cl,0.00450563570484519 +illusion_1.5L,ppo,195,78.0,target_force,target_cd,0.00869801826775074 +illusion_1.5L,ppo,195,78.0,target_force,target_cl,0.004415767267346382 +illusion_1.5L,ppo,196,78.4,target_force,target_cd,0.008734594099223614 +illusion_1.5L,ppo,196,78.4,target_force,target_cl,0.004079805221408606 +illusion_1.5L,ppo,197,78.8,target_force,target_cd,0.00882646068930626 +illusion_1.5L,ppo,197,78.8,target_force,target_cl,0.0035158328246325254 +illusion_1.5L,ppo,198,79.2,target_force,target_cd,0.00855401810258627 +illusion_1.5L,ppo,198,79.2,target_force,target_cl,0.002754038665443659 +illusion_1.5L,ppo,199,79.6,target_force,target_cd,0.008233987726271152 +illusion_1.5L,ppo,199,79.6,target_force,target_cl,0.0018353472696617246 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_manifest.json new file mode 100644 index 0000000..555f9f1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_manifest.json @@ -0,0 +1,15 @@ +{ + "scene": "illusion_1.5L", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1.5L/controlled.npz", + "sample_interval": 800, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_forces": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_wide.csv new file mode 100644 index 0000000..4cfa2cc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl +illusion_1.5L,ppo,0,0.0,1.0797946453094482,-0.31225207448005676,0.9480440616607666,-0.5414741039276123,0.8668460249900818,-0.3076387345790863,0.001924223150126636,8.32844598335214e-05,0.0014512010384351015,0.0030520684085786343,0.0014567241305485368,-0.002408499363809824,0.09680777788162231,0.11353611946105957,-1.4022693634033203,0.0009680777438916266,0.001135361148044467,-0.014022693037986755,0.008307529,0.0010011232 +illusion_1.5L,ppo,1,0.4,1.1510400772094727,-0.33177676796913147,0.9554529786109924,-0.5561419725418091,0.8037241101264954,-0.23700270056724548,0.002000590320676565,-2.6256537239532918e-05,0.002102138940244913,0.0021556538995355368,0.0021669878624379635,-0.001515011303126812,0.4075251519680023,1.4383041858673096,0.017417073249816895,0.004075251519680023,0.014383041299879551,0.0001741707237670198,0.008207169,-0.00018176257 +illusion_1.5L,ppo,2,0.8,1.2334208488464355,-0.34032168984413147,0.9285329580307007,-0.4978640675544739,0.7521615028381348,-0.13544966280460358,0.0020302594639360905,-0.00027335097547620535,0.00324456300586462,0.0009050874505192041,0.0022663865238428116,-0.001222805236466229,0.41850635409355164,2.476019859313965,1.4723840951919556,0.004185063298791647,0.02476019784808159,0.014723840169608593,0.008346703,-0.0013611992 +illusion_1.5L,ppo,3,1.2,1.324468731880188,-0.32385730743408203,0.8607962131500244,-0.286532998085022,0.7391417026519775,-0.020649656653404236,0.0020529136527329683,-0.0006763394339941442,0.004421691410243511,-0.000272644916549325,0.0022503086365759373,-0.0016149281291291118,1.1617212295532227,1.7513959407806396,1.3405989408493042,0.011617211624979973,0.017513958737254143,0.013405988924205303,0.008451278,-0.0024469942 +illusion_1.5L,ppo,4,1.6,1.3890398740768433,-0.2350451499223709,0.7868193984031677,0.06302312016487122,0.7761238217353821,0.07287310063838959,0.001972357975319028,-0.0013727023033425212,0.004693382419645786,-0.0008753224392421544,0.0024490351788699627,-0.0021694349125027657,1.6475932598114014,0.07819223403930664,0.17036914825439453,0.01647593267261982,0.0007819223101250827,0.0017036914359778166,0.008312063,-0.0033562263 +illusion_1.5L,ppo,5,2.0,1.3340842723846436,-0.012792488560080528,0.7633181214332581,0.39287009835243225,0.8349000811576843,0.1444786936044693,0.0019367921631783247,-0.0018346591386944056,0.0038536449428647757,-0.0008231105748564005,0.002519829897210002,-0.0021412253845483065,0.06759235262870789,-0.3713243007659912,-0.2048192173242569,0.0006759235402569175,-0.003713242942467332,-0.0020481920801103115,0.008355864,-0.0040195654 +illusion_1.5L,ppo,6,2.4,1.1593436002731323,0.24135147035121918,0.811646580696106,0.5179269909858704,0.8951728940010071,0.20563985407352448,0.0019632307812571526,-0.0013657533563673496,0.00296207657083869,-0.0006120498874224722,0.0026723372284322977,-0.001866899081505835,-1.501118779182434,0.7230329513549805,0.874076783657074,-0.015011187642812729,0.00723032932728529,0.00874076783657074,0.00845527,-0.0043864935 +illusion_1.5L,ppo,7,2.8,1.0042698383331299,0.34987327456474304,0.8780405521392822,0.512909471988678,0.956848680973053,0.2534884214401245,0.0019766283221542835,-0.0005883805570192635,0.0024213946890085936,-0.0007059439085423946,0.0026438769418746233,-0.00197807140648365,0.13865001499652863,0.9203938841819763,1.3363425731658936,0.0013865000801160932,0.009203938767313957,0.013363425619900227,0.00858894,-0.0044290167 +illusion_1.5L,ppo,8,3.2,0.9151619672775269,0.3389835059642792,0.9222124218940735,0.5200382471084595,1.0205261707305908,0.2895224690437317,0.0018226827960461378,-0.0010176129871979356,0.0023868561256676912,-0.00037145998794585466,0.002554291393607855,-0.0024691529106348753,3.1060950756073,-0.7425225973129272,0.007433176040649414,0.031060950830578804,-0.007425225805491209,7.43317577871494e-05,0.008836976,-0.004143606 +illusion_1.5L,ppo,9,3.6,0.8492088913917542,0.29008379578590393,0.9472337961196899,0.5447330474853516,1.0874418020248413,0.31630125641822815,0.0018619755282998085,-0.002238609828054905,0.002221125178039074,0.00022221513791009784,0.0023303390480577946,-0.002333480166271329,1.72958505153656,-1.038867473602295,-0.7894325256347656,0.017295850440859795,-0.010388674214482307,-0.007894325070083141,0.008733538,-0.0035512277 +illusion_1.5L,ppo,10,4.0,0.784064531326294,0.2157895416021347,0.9502606391906738,0.5570058226585388,1.16129732131958,0.33434295654296875,0.0019641483668237925,-0.001963868271559477,0.0023630792275071144,0.0003029056533705443,0.0028798296116292477,-0.0018186133820563555,-2.8960652351379395,0.8024281859397888,0.2997243404388428,-0.02896065078675747,0.008024281822144985,0.0029972433112561703,0.008477425,-0.002695499 +illusion_1.5L,ppo,11,4.4,0.7317995429039001,0.1110304743051529,0.9160879254341125,0.4858897030353546,1.2462811470031738,0.3401760458946228,0.002448857529088855,-0.00027221758500672877,0.0020049563609063625,-0.0001782396575435996,0.003040774492546916,-0.0008248316589742899,-2.8749313354492188,0.5102958679199219,-0.1385636329650879,-0.028749313205480576,0.005102958530187607,-0.0013856362784281373,0.008370791,-0.0016391447 +illusion_1.5L,ppo,12,4.8,0.719382643699646,-0.0034097107127308846,0.8446371555328369,0.2600788176059723,1.3402262926101685,0.31712138652801514,0.002488433150574565,0.0005254117422737181,0.001776355318725109,8.419888763455674e-05,0.0033619669266045094,0.00028164591640233994,2.082700252532959,-1.9510060548782349,-1.7401481866836548,0.020827002823352814,-0.01951006054878235,-0.017401481047272682,0.008236603,-0.00045906886 +illusion_1.5L,ppo,13,5.2,0.752234697341919,-0.09864361584186554,0.7754445672035217,-0.08852551132440567,1.399526834487915,0.21155650913715363,0.0018838070100173354,-0.0006436859839595854,0.0024496056139469147,0.0010814678389579058,0.0037898365408182144,0.0008594001992605627,3.2977347373962402,-1.7491471767425537,-1.3527135848999023,0.03297734633088112,-0.017491471022367477,-0.013527135364711285,0.008309898,0.0007595485 +illusion_1.5L,ppo,14,5.6,0.8019812703132629,-0.17682942748069763,0.7583619952201843,-0.3972598612308502,1.3285751342773438,-0.025762679055333138,0.0019715989474207163,-0.0012102999025955796,0.0031326166354119778,0.0017399764619767666,0.0036835812497884035,0.0004263517330400646,-2.2483150959014893,1.2822113037109375,0.6088136434555054,-0.02248314954340458,0.012822112999856472,0.006088136229664087,0.008405818,0.0019296474 +illusion_1.5L,ppo,15,6.0,0.8508453369140625,-0.24618133902549744,0.8008736968040466,-0.49914485216140747,1.1597144603729248,-0.25247544050216675,0.002131805056706071,0.0005771671421825886,0.0028483259957283735,0.0013713143998757005,0.0030346354469656944,-0.00018845587328542024,-4.935033798217773,1.3881111145019531,0.37272727489471436,-0.04935033619403839,0.013881110586225986,0.003727272618561983,0.008243249,0.0029686722 +illusion_1.5L,ppo,16,6.4,0.8990176320075989,-0.3062371611595154,0.8514645099639893,-0.4687660336494446,1.0318070650100708,-0.3209947645664215,0.002462418982759118,0.0020527970045804977,0.0023420534562319517,0.0014503028942272067,0.003077169880270958,0.000596981612034142,0.7847888469696045,-2.9272146224975586,-2.6953020095825195,0.007847888395190239,-0.02927214466035366,-0.026953019201755524,0.008251132,0.0038044583 +illusion_1.5L,ppo,17,6.8,0.9452244639396667,-0.36142051219940186,0.8716397285461426,-0.4412388205528259,0.9643616676330566,-0.2925702929496765,0.0018117758445441723,0.0009371641790494323,0.0027506446931511164,0.003238540841266513,0.0038839755579829216,0.0014178104465827346,4.467765808105469,-3.532165765762329,-2.7391390800476074,0.04467765614390373,-0.03532165661454201,-0.02739139087498188,0.008374292,0.0043801893 +illusion_1.5L,ppo,18,7.2,0.9928663372993469,-0.41853824257850647,0.8623248934745789,-0.4308321475982666,0.9189968705177307,-0.23959441483020782,0.0020154344383627176,-0.0003233806346543133,0.0037863708566874266,0.004205214325338602,0.00361755583435297,0.000936469528824091,-1.240140438079834,2.5390729904174805,1.3095413446426392,-0.012401403859257698,0.025390729308128357,0.013095413334667683,0.008528592,0.0046580834 +illusion_1.5L,ppo,19,7.6,1.0457236766815186,-0.4762742221355438,0.8216429948806763,-0.43203309178352356,0.8770815134048462,-0.1771678328514099,0.0020055773202329874,0.0008728746906854212,0.004178707022219896,0.002138025825843215,0.0025018020533025265,5.745944145019166e-05,-4.770424842834473,4.806854248046875,2.5702767372131348,-0.047704245895147324,0.048068542033433914,0.025702767074108124,0.008839371,0.004621584 +illusion_1.5L,ppo,20,8.0,1.1026153564453125,-0.5217483043670654,0.7473500967025757,-0.42804285883903503,0.8438072800636292,-0.10734917968511581,0.0020893707405775785,0.002166713820770383,0.005250304937362671,0.0015468347119167447,0.002881081076338887,-6.49121793685481e-05,1.6993141174316406,-1.6003327369689941,-1.823062539100647,0.016993140801787376,-0.016003327444195747,-0.018230624496936798,0.008838829,0.0042759445 +illusion_1.5L,ppo,21,8.4,1.1491317749023438,-0.5578380227088928,0.6560988426208496,-0.37116578221321106,0.8277516961097717,-0.04020534083247185,0.0021720232907682657,0.00015653485024813563,0.0036555007100105286,0.0023872647434473038,0.0028103343211114407,0.0007339179283007979,7.140627861022949,-3.895944356918335,-2.799201488494873,0.0714062750339508,-0.03895944356918335,-0.027992013841867447,0.008611819,0.0036472427 +illusion_1.5L,ppo,22,8.8,1.1769332885742188,-0.595348596572876,0.5674730539321899,-0.23434831202030182,0.8273603320121765,0.02558545581996441,0.0032992565538734198,-0.001818204764276743,0.0036115855909883976,0.0027537336573004723,0.0020100141409784555,0.0013779827859252691,-1.336065411567688,2.313767433166504,1.3603953123092651,-0.013360654003918171,0.02313767373561859,0.013603952713310719,0.008512569,0.0027799644 +illusion_1.5L,ppo,23,9.2,1.1580257415771484,-0.5438330173492432,0.48864051699638367,-0.03176289424300194,0.8342949748039246,0.0952577218413353,0.0022216865327209234,-3.0284199965535663e-05,0.004313474986702204,0.0010863773059099913,0.002600054256618023,-0.0001338244619546458,-6.539678573608398,6.0,4.649063587188721,-0.06539678573608398,0.05999999865889549,0.046490635722875595,0.008357008,0.0017333989 +illusion_1.5L,ppo,24,9.6,1.0599006414413452,-0.26733410358428955,0.44318103790283203,0.2024828940629959,0.8464951515197754,0.17490780353546143,0.0019370517693459988,0.002033960074186325,0.005669685546308756,0.0009291989845223725,0.004402563441544771,-0.001930914120748639,0.8633862733840942,0.5897889137268066,0.36819159984588623,0.008633862249553204,0.0058978889137506485,0.0036819158121943474,0.008349984,0.00057717453 +illusion_1.5L,ppo,25,10.0,0.918732762336731,0.18241176009178162,0.4561518132686615,0.4087720513343811,0.8727782368659973,0.2552487254142761,0.0016905860975384712,-0.0002921183477155864,0.0046623521484434605,0.0018753452459350228,0.003404094371944666,-0.0029049066361039877,8.0,-3.6097168922424316,-2.3268938064575195,0.07999999821186066,-0.036097168922424316,-0.023268938064575195,0.008401495,-0.0006137098 +illusion_1.5L,ppo,26,10.4,0.7908204793930054,0.5806609392166138,0.5113985538482666,0.5507956147193909,0.9126153588294983,0.33676353096961975,0.0031635896302759647,-0.0028557844925671816,0.0029223200399428606,0.0017974853981286287,0.0020253874827176332,-0.001204390893690288,2.7576868534088135,-0.2618296146392822,-0.6473937034606934,0.02757686749100685,-0.0026182960718870163,-0.006473937071859837,0.008177781,-0.0017639742 +illusion_1.5L,ppo,27,10.8,0.7170965671539307,0.7666528224945068,0.5764610171318054,0.6483334898948669,0.972247838973999,0.41407880187034607,0.0024231974966824055,-0.0018865939928218722,0.002951959380879998,0.0007887392421253026,0.0025005408097058535,-0.0023899159859865904,-4.674729347229004,5.024030685424805,4.650024890899658,-0.04674729332327843,0.050240304321050644,0.04650024697184563,0.008096659,-0.0028029107 +illusion_1.5L,ppo,28,11.2,0.6746746301651001,0.7635299563407898,0.6136064529418945,0.7405665516853333,1.0445035696029663,0.488290399312973,0.0018724738620221615,-0.0002388741122558713,0.0031603085808455944,-0.00025088543770834804,0.003254164708778262,-0.004010913893580437,-0.3786667585372925,1.4190990924835205,1.7054944038391113,-0.0037866674829274416,0.01419099047780037,0.01705494336783886,0.008196541,-0.0036686852 +illusion_1.5L,ppo,29,11.6,0.6433817148208618,0.6946038007736206,0.6288880705833435,0.8385981917381287,1.1440078020095825,0.5465685725212097,0.0014456164790317416,-0.0012636590981855989,0.0027125487104058266,0.0006880555883981287,0.0034994289744645357,-0.004260862246155739,6.174801349639893,-4.017397880554199,-3.041539192199707,0.06174801290035248,-0.0401739776134491,-0.03041539154946804,0.008346819,-0.0043118354 +illusion_1.5L,ppo,30,12.0,0.5880814790725708,0.6159050464630127,0.6320485472679138,0.8694407939910889,1.2468894720077515,0.5728294253349304,0.002585663693025708,-0.003445099340751767,0.001693878322839737,0.0011924299178645015,0.0031859898008406162,-0.0022345702163875103,2.392789363861084,-0.9184668064117432,-1.1114833354949951,0.023927893489599228,-0.009184667840600014,-0.011114832945168018,0.008710415,-0.004697794 +illusion_1.5L,ppo,31,12.4,0.5289964079856873,0.526654064655304,0.6475885510444641,0.7653593420982361,1.3634986877441406,0.5668094754219055,0.0020687223877757788,-0.002378669334575534,0.002540463814511895,0.0008568005287088454,0.003589024767279625,-0.0028229437302798033,-5.452765941619873,5.279187202453613,4.6669206619262695,-0.054527658969163895,0.05279187113046646,0.04666920378804207,0.008841766,-0.0048083463 +illusion_1.5L,ppo,32,12.8,0.4582771062850952,0.39613616466522217,0.6189578175544739,0.5476155877113342,1.4425424337387085,0.45107758045196533,0.002245561685413122,-0.00019130883447360247,0.0026908800937235355,-0.0006958969170227647,0.0035415026359260082,-0.004304157104343176,-1.5368893146514893,2.5977821350097656,1.9916706085205078,-0.015368892811238766,0.02597782015800476,0.019916705787181854,0.00870273,-0.004642012 +illusion_1.5L,ppo,33,13.2,0.4329029321670532,0.21545252203941345,0.6276023983955383,0.19664742052555084,1.4710077047348022,0.17775440216064453,0.0014943763380870223,-0.001065180404111743,0.002873798832297325,0.0004263610753696412,0.003782611573114991,-0.004363436251878738,6.646983623504639,-5.369624137878418,-4.616011619567871,0.06646983325481415,-0.05369624122977257,-0.04616011679172516,0.008674848,-0.004213416 +illusion_1.5L,ppo,34,13.6,0.4440456032752991,0.004605367314070463,0.6597777605056763,-0.19086457788944244,1.436500072479248,-0.1350429207086563,0.002219915157184005,-0.003422849578782916,0.002512436592951417,0.0013692250940948725,0.004043217748403549,-0.0018134836573153734,2.502175807952881,-3.005535840988159,-3.405853748321533,0.025021757930517197,-0.03005535714328289,-0.03405853733420372,0.008570708,-0.0035517665 +illusion_1.5L,ppo,35,14.0,0.5128005146980286,-0.1941033899784088,0.7198534607887268,-0.5323801636695862,1.3575395345687866,-0.40686270594596863,0.0018714717589318752,-0.0018208849942311645,0.0033597510773688555,0.002166729187592864,0.005537271499633789,-0.002494935179129243,-7.78192138671875,4.198786735534668,2.845604419708252,-0.07781921327114105,0.041987866163253784,0.02845604345202446,0.00853532,-0.0026986124 +illusion_1.5L,ppo,36,14.4,0.6040663719177246,-0.34442615509033203,0.7692062258720398,-0.7675595879554749,1.2382683753967285,-0.5606545805931091,0.002989733824506402,0.0012781108962371945,0.001937050954438746,-6.045187183190137e-05,0.003330652369186282,-0.002026198897510767,-5.047682762145996,2.685530662536621,0.9756829142570496,-0.05047682672739029,0.026855306699872017,0.009756828658282757,0.008559806,-0.0017050554 +illusion_1.5L,ppo,37,14.8,0.7280130982398987,-0.4243055582046509,0.8213353157043457,-0.8502906560897827,1.1389765739440918,-0.6113777756690979,0.0026946065481752157,0.0008473167545162141,0.0023256728891283274,0.0002564700262155384,0.0035063691902905703,-0.001012945082038641,5.812684535980225,-5.331756591796875,-4.230833053588867,0.058126844465732574,-0.053317565470933914,-0.04230833053588867,0.008268665,-0.00062862504 +illusion_1.5L,ppo,38,15.2,0.842715859413147,-0.47530487179756165,0.8452115058898926,-0.8371127247810364,1.0523452758789062,-0.6127769947052002,0.0018350029131397605,-0.001026335172355175,0.0029326127842068672,0.0018936406122520566,0.003855752293020487,0.00035105508868582547,2.9515912532806396,-3.555356740951538,-2.8793158531188965,0.029515912756323814,-0.03555356711149216,-0.028793158009648323,0.008048145,0.00046999974 +illusion_1.5L,ppo,39,15.6,0.9658211469650269,-0.5142889022827148,0.8574427962303162,-0.8389923572540283,0.9876540899276733,-0.6015393137931824,0.0015814006328582764,-0.00046172839938662946,0.00390014355070889,0.003326025791466236,0.0044187079183757305,-0.0005076008383184671,-5.49228572845459,3.0450782775878906,1.7320277690887451,-0.05492285639047623,0.03045078180730343,0.01732027716934681,0.008044709,0.0015302502 +illusion_1.5L,ppo,40,16.0,1.0870039463043213,-0.5348709225654602,0.8405216932296753,-0.8931483626365662,0.9141570329666138,-0.5805867314338684,0.0022688298486173153,0.0019609800074249506,0.002566909184679389,0.0016219660174101591,0.0024134344421327114,-0.0006586065283045173,-4.565585613250732,3.1382665634155273,1.2720472812652588,-0.04565585404634476,0.031382665038108826,0.012720472179353237,0.008106882,0.0024947578 +illusion_1.5L,ppo,41,16.4,1.2185989618301392,-0.5197656750679016,0.8314383625984192,-0.9300235509872437,0.841367244720459,-0.5390405058860779,0.0022502802312374115,0.0021547027863562107,0.0031067668460309505,0.0016100566135719419,0.0030329071450978518,-0.0002375676267547533,4.4835381507873535,-3.9344139099121094,-3.2997164726257324,0.04483538120985031,-0.03934413939714432,-0.032997164875268936,0.008437012,0.0033121565 +illusion_1.5L,ppo,42,16.8,1.3335458040237427,-0.467217355966568,0.851870059967041,-0.7389212846755981,0.7570807933807373,-0.444335401058197,0.0020419724751263857,6.833775114500895e-05,0.002697777235880494,0.0032777704764157534,0.0029039180371910334,0.0010144305415451527,4.216999530792236,-3.8932297229766846,-2.9393491744995117,0.04216999560594559,-0.03893229737877846,-0.02939349040389061,0.008649187,0.003939501 +illusion_1.5L,ppo,43,17.2,1.406998872756958,-0.34927403926849365,0.898674726486206,-0.27027520537376404,0.6843634843826294,-0.2586047351360321,0.00201283092610538,-0.0001283995807170868,0.0037265331484377384,0.004147717263549566,0.0029911668971180916,0.0005327060353010893,-4.7849836349487305,3.486323356628418,2.142104148864746,-0.047849833965301514,0.03486323356628418,0.02142104133963585,0.008595731,0.004344232 +illusion_1.5L,ppo,44,17.6,1.3687270879745483,-0.126512348651886,0.9354161024093628,0.1865711361169815,0.6369776725769043,0.016863126307725906,0.0019870097748935223,0.0020598648115992546,0.0035510289017111063,0.0019845645874738693,0.0021417634561657906,-9.719291847432032e-05,-4.862180709838867,4.5239763259887695,2.5475692749023438,-0.048621807247400284,0.04523976147174835,0.025475692003965378,0.008671655,0.0045056357 +illusion_1.5L,ppo,45,18.0,1.2373707294464111,0.1214236468076706,0.9659415483474731,0.47761234641075134,0.6508731842041016,0.2755190134048462,0.001911716302856803,0.0023190700449049473,0.004378362558782101,0.0019445393700152636,0.003055150853469968,-0.00044184247963130474,5.048116207122803,-3.1425673961639404,-2.7506165504455566,0.0504811592400074,-0.03142567351460457,-0.027506165206432343,0.008698018,0.0044157673 +illusion_1.5L,ppo,46,18.4,1.1099536418914795,0.2634549140930176,0.9868184924125671,0.6089067459106445,0.7355586886405945,0.37912678718566895,0.0024448379408568144,-0.00027444359147921205,0.002828441560268402,0.0029163379222154617,0.002365367952734232,0.0007492466829717159,6.939489364624023,-3.88944673538208,-3.291231393814087,0.06939489394426346,-0.03889446705579758,-0.03291231393814087,0.008734594,0.004079805 +illusion_1.5L,ppo,47,18.8,1.0263806581497192,0.3103732764720917,0.9883411526679993,0.5848910808563232,0.829104483127594,0.4036373794078827,0.003248955123126507,-0.0012829023180529475,0.0033533000387251377,0.0029071311000734568,0.0021737851202487946,0.0011286661028862,-2.187124252319336,3.1564512252807617,2.0339341163635254,-0.02187124267220497,0.031564511358737946,0.02033933997154236,0.008826461,0.0035158328 +illusion_1.5L,ppo,48,19.2,0.9746611714363098,0.33053058385849,0.9895422458648682,0.5522276163101196,0.9090093970298767,0.41899627447128296,0.0023894861806184053,3.2915511837927625e-05,0.0033406526781618595,0.0011574815725907683,0.002183271571993828,-7.462897337973118e-05,-4.104968547821045,4.942201614379883,3.7803053855895996,-0.04104968532919884,0.0494220145046711,0.037803053855895996,0.008554018,0.0027540387 +illusion_1.5L,ppo,49,19.6,0.9308136105537415,0.3437320291996002,0.985209584236145,0.54793381690979,0.9702598452568054,0.43488529324531555,0.0016786569030955434,0.0010241968557238579,0.00422262167558074,0.0013449639081954956,0.003291809931397438,-0.001322132651694119,2.077652931213379,-0.8700082302093506,-0.8654709458351135,0.020776528865098953,-0.008700082078576088,-0.008654708974063396,0.008233988,0.0018353473 +illusion_1.5L,ppo,50,20.0,0.8976612687110901,0.3467393219470978,0.9872027039527893,0.5662744045257568,1.0260776281356812,0.4528058171272278,0.0020368127152323723,-0.0009305854327976704,0.0026319939643144608,0.0017026826972141862,0.0024774312041699886,-0.0010616631479933858,6.176417350769043,-2.574202299118042,-2.5841684341430664,0.061764173209667206,-0.025742022320628166,-0.02584168314933777,0.00811044,0.00080950937 +illusion_1.5L,ppo,51,20.4,0.8518968820571899,0.3368493318557739,0.9908801317214966,0.5931470990180969,1.0716745853424072,0.47613513469696045,0.003067307872697711,-0.0024983736220747232,0.0023471934255212545,0.0012808478204533458,0.0021020425483584404,-0.0002869028539862484,-0.37629634141921997,1.7722406387329102,0.9497917294502258,-0.003762963227927685,0.01772240549325943,0.009497917257249355,0.008025186,-0.0002672986 +illusion_1.5L,ppo,52,20.8,0.7914437651634216,0.311969518661499,0.9981200695037842,0.6186891794204712,1.119025468826294,0.5112367272377014,0.00224987231194973,-0.0012805529404431581,0.0032585770823061466,-3.934039705200121e-05,0.002537601627409458,-0.0014159682905301452,-4.616179466247559,4.626690864562988,3.9538867473602295,-0.04616179317235947,0.04626690596342087,0.03953886777162552,0.008214205,-0.0013352894 +illusion_1.5L,ppo,53,21.2,0.7127237915992737,0.2497538924217224,0.9831551909446716,0.6304342746734619,1.167465090751648,0.5664147734642029,0.0018925413023680449,0.0002390064619248733,0.003615214256569743,-0.00040730444015935063,0.003573707537725568,-0.0028851425740867853,1.2789175510406494,-0.015967845916748047,-0.10250090807676315,0.012789174914360046,-0.00015967845683917403,-0.0010250090854242444,0.0083881365,-0.0023341856 +illusion_1.5L,ppo,54,21.6,0.6411221027374268,0.14447170495986938,0.9337770342826843,0.5959800481796265,1.238492488861084,0.645622968673706,0.0016120803775265813,-0.0015295202611014247,0.002741759642958641,0.0005858798394910991,0.0032019857317209244,-0.0027582314796745777,6.972156047821045,-3.7519991397857666,-3.5256190299987793,0.06972155719995499,-0.037519991397857666,-0.03525618836283684,0.008321747,-0.003206509 +illusion_1.5L,ppo,55,22.0,0.594836950302124,0.00062368850922212,0.8365634083747864,0.432683527469635,1.3217004537582397,0.6477733850479126,0.002870693802833557,-0.0037342512514442205,0.0025146924890577793,0.0005285223596729338,0.0031982939690351486,-0.0012207577237859368,1.043534517288208,0.9505014419555664,-0.02289605140686035,0.010435344651341438,0.009505013935267925,-0.00022896050359122455,0.00842752,-0.0039008732 +illusion_1.5L,ppo,56,22.4,0.6062618494033813,-0.13000112771987915,0.7255709767341614,0.08975788205862045,1.3357031345367432,0.3633787930011749,0.0022109253332018852,-0.0022419767919927835,0.0030249599367380142,-0.0003240901278331876,0.0032401704229414463,-0.002060771221294999,-6.262017726898193,5.605282783508301,4.55924129486084,-0.06262017786502838,0.05605282634496689,0.04559241235256195,0.008568542,-0.004375095 +illusion_1.5L,ppo,57,22.8,0.6652284860610962,-0.2166009396314621,0.6430043578147888,-0.3507728576660156,1.2289519309997559,-0.0656595453619957,0.002273677848279476,0.00023193996457848698,0.003008087631314993,-0.001296789851039648,0.0037410366348922253,-0.0034754639491438866,-1.3123713731765747,1.5574955940246582,1.0396419763565063,-0.013123713433742523,0.015574955381453037,0.01039641909301281,0.0087197805,-0.0045989216 +illusion_1.5L,ppo,58,23.2,0.7409716248512268,-0.2751280963420868,0.6562168002128601,-0.6395658254623413,1.1012734174728394,-0.43371838331222534,0.0017755908193066716,-0.0007775248377583921,0.0028245511930435896,-3.533064227667637e-05,0.0035082462709397078,-0.003473082557320595,6.186789035797119,-4.970672607421875,-4.021912097930908,0.061867889016866684,-0.04970672354102135,-0.04021912068128586,0.008962785,-0.0045561916 +illusion_1.5L,ppo,59,23.6,0.8068141937255859,-0.3313032388687134,0.7350502014160156,-0.6961948871612549,1.0014489889144897,-0.624254584312439,0.002050986746326089,-0.0030570959206670523,0.002497147535905242,0.0007722263690084219,0.0033259380143135786,-0.0015665963292121887,1.2095974683761597,-1.64272141456604,-1.735213279724121,0.012095974758267403,-0.016427213326096535,-0.017352132126688957,0.008836515,-0.004246238 +illusion_1.5L,ppo,60,24.0,0.8719858527183533,-0.378034770488739,0.8185133934020996,-0.6814921498298645,0.9510625600814819,-0.6223760843276978,0.0015941315796226263,-0.0012958437437191606,0.003033827291801572,0.0011800058418884873,0.0038799934554845095,-0.0023292771074920893,-7.842334747314453,4.638605117797852,3.6538825035095215,-0.07842334359884262,0.046386051923036575,0.03653882443904877,0.008545847,-0.00368441 +illusion_1.5L,ppo,61,24.4,0.9291473627090454,-0.4208122491836548,0.8772841691970825,-0.6767399311065674,0.9013096690177917,-0.5872690081596375,0.003282708814367652,0.0014425860717892647,0.0020351274870336056,-0.0010258210822939873,0.002814328297972679,-0.002562796464189887,-3.191343307495117,2.1452808380126953,1.0273293256759644,-0.031913433223962784,0.021452808752655983,0.010273292660713196,0.008398631,-0.0029016098 +illusion_1.5L,ppo,62,24.8,0.9917404651641846,-0.4612673819065094,0.9233819842338562,-0.6769800782203674,0.8443237543106079,-0.583467423915863,0.002550545847043395,0.0003858356212731451,0.0026161980349570513,0.00015815628285054117,0.0031760884448885918,-0.0020598233677446842,6.536932945251465,-6.453195571899414,-4.873745441436768,0.06536933034658432,-0.06453195214271545,-0.048737455159425735,0.008222404,-0.0019428233 +illusion_1.5L,ppo,63,25.2,1.0522103309631348,-0.5050056576728821,0.9375454783439636,-0.6852490305900574,0.7786047458648682,-0.5789613127708435,0.0019039488397538662,-0.001782048842869699,0.003523044055327773,0.002045496366918087,0.00352160120382905,-0.0004392938280943781,1.7836202383041382,-3.1361281871795654,-2.8810276985168457,0.017836201936006546,-0.031361281871795654,-0.028810275718569756,0.008255819,-0.0008646877 +illusion_1.5L,ppo,64,25.6,1.1347852945327759,-0.5493781566619873,0.9318035244941711,-0.7137075066566467,0.7423068881034851,-0.543012797832489,0.0013709504855796695,-0.0003364184813108295,0.0039407433941960335,0.0032492915634065866,0.004293219652026892,-0.001542509999126196,-7.212460041046143,4.372986793518066,2.6398568153381348,-0.07212460041046143,0.04372986778616905,0.026398567482829094,0.008317414,0.0002677917 +illusion_1.5L,ppo,65,26.0,1.233075737953186,-0.583595871925354,0.8778836727142334,-0.7480965256690979,0.6946708559989929,-0.45678985118865967,0.0028254336211830378,0.002384883351624012,0.0023800660856068134,0.0010144509142264724,0.0022731521166861057,-0.0011891766916960478,-3.896819829940796,2.7165050506591797,0.6868739128112793,-0.038968198001384735,0.02716504968702793,0.0068687391467392445,0.008129971,0.0013851849 +illusion_1.5L,ppo,66,26.4,1.356067180633545,-0.573691189289093,0.7945612072944641,-0.6930570006370544,0.6359702944755554,-0.30929550528526306,0.002292623743414879,0.0017104989383369684,0.003043600358068943,0.0015989361563697457,0.003138459986075759,-0.0006107714725658298,6.125576972961426,-5.330362319946289,-4.249595642089844,0.061255767941474915,-0.05330362170934677,-0.042495954781770706,0.008126953,0.0024179984 +illusion_1.5L,ppo,67,26.8,1.4345113039016724,-0.4951218366622925,0.7235813140869141,-0.39682814478874207,0.5615325570106506,-0.08755962550640106,0.002017610240727663,-0.00044682223233394325,0.0030250733252614737,0.0034248309675604105,0.0030060706194490194,0.000789047044236213,2.5952274799346924,-3.124833583831787,-2.607830047607422,0.025952273979783058,-0.031248334795236588,-0.026078300550580025,0.008257587,0.0033011637 +illusion_1.5L,ppo,68,27.2,1.4349207878112793,-0.3339140713214874,0.7333269715309143,0.017736002802848816,0.5392540097236633,0.14675173163414001,0.0016188333975151181,0.0002030624309554696,0.0037291627377271652,0.004019215237349272,0.0032576113007962704,-3.9875274524092674e-05,-6.152360916137695,4.412425994873047,2.723601818084717,-0.06152360886335373,0.044124260544776917,0.02723601832985878,0.0084404815,0.0039783427 +illusion_1.5L,ppo,69,27.6,1.3071317672729492,-0.06836342811584473,0.7557293772697449,0.3812881410121918,0.5785186886787415,0.30112025141716003,0.002242323709651828,0.0027384290006011724,0.003275836119428277,0.00171216472517699,0.002166393445804715,-0.00017424444376956671,-3.519594669342041,3.3505465984344482,1.5296449661254883,-0.03519594669342041,0.03350546583533287,0.015296448953449726,0.008800249,0.0044057425 +illusion_1.5L,ppo,70,28.0,1.121681571006775,0.25010809302330017,0.7910106182098389,0.6439285278320312,0.6830452084541321,0.3474675118923187,0.0017814189195632935,0.0019116566982120275,0.0040763323195278645,0.002194461179897189,0.0031132930889725685,-0.000446111720521003,7.532464981079102,-4.705203056335449,-3.5526809692382812,0.075324647128582,-0.04705202952027321,-0.035526808351278305,0.008863524,0.0045551476 +illusion_1.5L,ppo,71,28.4,0.9604879021644592,0.46466967463493347,0.8336759805679321,0.6792701482772827,0.7731176018714905,0.36893391609191895,0.0028004697524011135,-0.001061026006937027,0.0030782786197960377,0.0035251029767096043,0.002220154507085681,0.0012548546073958278,5.614630699157715,-3.4154739379882812,-2.8284897804260254,0.05614630505442619,-0.0341547392308712,-0.028284898027777672,0.008704574,0.004415951 +illusion_1.5L,ppo,72,28.8,0.9043775796890259,0.5144437551498413,0.8843041062355042,0.6411374807357788,0.8590190410614014,0.3996524512767792,0.0030004463624209166,-0.0005963611183688045,0.003424285678192973,0.003494414733722806,0.0024922655429691076,0.000737013469915837,-4.455737113952637,4.817193984985352,3.5522584915161133,-0.044557370245456696,0.048171937465667725,0.03552258387207985,0.008663436,0.003996006 +illusion_1.5L,ppo,73,29.2,0.8809142112731934,0.5097304582595825,0.9119751453399658,0.637785017490387,0.9274204969406128,0.4255489706993103,0.0021938332356512547,0.0008068406023085117,0.003294473048299551,0.0014472107868641615,0.0022882067132741213,-0.0002688195963855833,-2.026003122329712,3.9776554107666016,2.884641170501709,-0.020260030403733253,0.039776552468538284,0.028846411034464836,0.0085412115,0.0033212318 +illusion_1.5L,ppo,74,29.6,0.8630747199058533,0.5134294629096985,0.9433429837226868,0.664763331413269,0.9988651275634766,0.4449674189090729,0.0015296167694032192,0.0004115984193049371,0.004093869589269161,0.0019572593737393618,0.003075920045375824,-0.0012763590784743428,4.626152992248535,-2.192498207092285,-1.8297028541564941,0.04626153036952019,-0.021924981847405434,-0.01829702779650688,0.008531143,0.0024339797 +illusion_1.5L,ppo,75,30.0,0.8286400437355042,0.5103495121002197,0.9795365333557129,0.715451180934906,1.0607855319976807,0.4571302533149719,0.0027534840628504753,-0.0016517858020961285,0.0019415538990870118,0.0019400184974074364,0.0018244399689137936,-0.0003101901966147125,3.9966626167297363,-1.261883020401001,-1.7028026580810547,0.03996662423014641,-0.012618829496204853,-0.017028026282787323,0.008538628,0.001390277 +illusion_1.5L,ppo,76,30.4,0.769890308380127,0.49972236156463623,1.048919439315796,0.7657426595687866,1.1232072114944458,0.46480387449264526,0.0029074663762003183,-0.0019565322436392307,0.002574041485786438,0.0011861843522638083,0.0021731031592935324,-0.0004620422550942749,-2.872878074645996,3.492812156677246,2.8045825958251953,-0.028728779405355453,0.03492812067270279,0.02804582566022873,0.008234776,0.00025613216 +illusion_1.5L,ppo,77,30.8,0.6753684878349304,0.45560240745544434,1.1303868293762207,0.759320080280304,1.177068829536438,0.4720684885978699,0.002035669516772032,-0.00040579409687779844,0.0034478052984923124,-0.00012639546184800565,0.002732538618147373,-0.001701122848317027,-2.50654935836792,3.1091651916503906,2.6153907775878906,-0.02506549283862114,0.03109165094792843,0.02615390717983246,0.008051978,-0.0008968284 +illusion_1.5L,ppo,78,31.2,0.5773096084594727,0.3370707035064697,1.1742533445358276,0.6700570583343506,1.2318336963653564,0.4840473532676697,0.001586491009220481,-0.0004154423368163407,0.0036681850906461477,0.0002655618591234088,0.0035273951943963766,-0.002850883873179555,4.720229148864746,-2.1156005859375,-1.9711226224899292,0.04720228910446167,-0.021156005561351776,-0.019711226224899292,0.008050505,-0.0019960837 +illusion_1.5L,ppo,79,31.6,0.5236338973045349,0.13836634159088135,1.1371243000030518,0.4661957025527954,1.2902581691741943,0.5005607008934021,0.002209398662671447,-0.0027532726526260376,0.0021745034027844667,0.0007531747105531394,0.0027844072319567204,-0.0017305619549006224,5.067253589630127,-2.10147762298584,-2.6423397064208984,0.050672534853219986,-0.021014776080846786,-0.026423396542668343,0.008124143,-0.0029729614 +illusion_1.5L,ppo,80,32.0,0.5296757221221924,-0.08856520801782608,1.0229220390319824,0.13977818191051483,1.3433046340942383,0.49874022603034973,0.0026473409961909056,-0.003236649092286825,0.002846931805834174,0.00022130022989585996,0.00333272572606802,-0.0014278441667556763,-3.2366461753845215,3.8862571716308594,2.7587060928344727,-0.03236646205186844,0.038862571120262146,0.027587059885263443,0.0084567135,-0.00376707 +illusion_1.5L,ppo,81,32.4,0.5854921936988831,-0.2811782658100128,0.902812123298645,-0.22966542840003967,1.3341009616851807,0.380812406539917,0.002185553079470992,-0.001043418189510703,0.003163493238389492,-0.0012534409761428833,0.0030272684525698423,-0.002493241336196661,-4.61189079284668,4.2769575119018555,3.2508440017700195,-0.04611890763044357,0.042769573628902435,0.03250844031572342,0.008614281,-0.0043301107 +illusion_1.5L,ppo,82,32.8,0.6717989444732666,-0.36676132678985596,0.8393034338951111,-0.4986129701137543,1.170853614807129,0.03414221853017807,0.001973211532458663,-0.00025908142561092973,0.0030930014327168465,-0.0008281447808258235,0.003741480177268386,-0.0035404416266828775,3.687344551086426,-2.3472282886505127,-2.2734742164611816,0.03687344491481781,-0.02347228303551674,-0.022734740749001503,0.008557141,-0.0046288203 +illusion_1.5L,ppo,83,33.2,0.7704337239265442,-0.38213470578193665,0.8456220030784607,-0.5866361856460571,0.9756150841712952,-0.31974494457244873,0.001821812242269516,-0.002127048559486866,0.002068369649350643,8.421234815614298e-05,0.003265636507421732,-0.0018538236618041992,4.586243629455566,-3.5974204540252686,-3.5307960510253906,0.045862436294555664,-0.035974204540252686,-0.03530795872211456,0.008651274,-0.0046468554 +illusion_1.5L,ppo,84,33.6,0.8433721661567688,-0.4000200629234314,0.8736556768417358,-0.5791523456573486,0.8681632876396179,-0.4719085395336151,0.001862832112237811,-0.0025793060194700956,0.0029572458006441593,0.0005811557057313621,0.0041123926639556885,-0.0016216807998716831,-4.211077690124512,2.9362754821777344,2.235239028930664,-0.04211077466607094,0.02936275489628315,0.022352389991283417,0.008682524,-0.004385523 +illusion_1.5L,ppo,85,34.0,0.9077363610267639,-0.4200683534145355,0.9070550799369812,-0.578285813331604,0.8488789200782776,-0.4760183095932007,0.0024383922573179007,-0.00014700356405228376,0.0025140331126749516,-0.0007920315838418901,0.0028019852470606565,-0.0024886722676455975,-6.773529529571533,4.349457740783691,3.194859027862549,-0.06773529201745987,0.0434945747256279,0.03194858878850937,0.008763913,-0.0038633412 +illusion_1.5L,ppo,86,34.4,0.9604436755180359,-0.443084716796875,0.9331310391426086,-0.58857661485672,0.8314996361732483,-0.46318528056144714,0.003223715117201209,0.0011288339737802744,0.0024485590402036905,-0.0012518848525360227,0.0033551340457051992,-0.0024106898345053196,2.3119280338287354,-3.0043892860412598,-2.56520938873291,0.023119280114769936,-0.030043892562389374,-0.025652093812823296,0.008857103,-0.0031145015 +illusion_1.5L,ppo,87,34.8,1.0145586729049683,-0.46780312061309814,0.956528902053833,-0.6009761691093445,0.7950723171234131,-0.4687381386756897,0.0023241695016622543,-0.0007968612480908632,0.002518644090741873,0.00042816202039830387,0.003147328272461891,-0.0009477106505073607,5.544740200042725,-5.899670600891113,-4.52746057510376,0.055447399616241455,-0.05899670347571373,-0.045274604111909866,0.008567268,-0.0021863768 +illusion_1.5L,ppo,88,35.2,1.0647011995315552,-0.49669399857521057,0.9621865749359131,-0.6229060292243958,0.7409350872039795,-0.4771806001663208,0.0015874565578997135,-0.0017121598357334733,0.0042534489184618,0.0024314590264111757,0.00423378124833107,-0.0010784500045701861,-2.6791069507598877,0.846919059753418,0.35624778270721436,-0.02679106965661049,0.008469190448522568,0.0035624776501208544,0.0082769515,-0.0011362834 +illusion_1.5L,ppo,89,35.6,1.1222174167633057,-0.5273623466491699,0.9550195932388306,-0.6625624299049377,0.6968162059783936,-0.4629054367542267,0.0018671232974156737,0.0005716170999221504,0.00282866507768631,0.001959764864295721,0.002976752817630768,-0.0016603560652583838,-6.851531505584717,4.391024589538574,2.2894816398620605,-0.06851531565189362,0.04391024634242058,0.02289481647312641,0.008146291,-2.7741156e-05 +illusion_1.5L,ppo,90,36.0,1.1862733364105225,-0.557569146156311,0.9289436340332031,-0.7112723588943481,0.6559358835220337,-0.40574267506599426,0.0029043483082205057,0.002379251876845956,0.0024071449879556894,0.0006322629633359611,0.002553587546572089,-0.0008600850123912096,0.42898261547088623,-0.8672080039978027,-1.7287734746932983,0.004289825912564993,-0.008672080002725124,-0.017287734895944595,0.008052271,0.0010735015 +illusion_1.5L,ppo,91,36.4,1.2542715072631836,-0.5830106139183044,0.8785715699195862,-0.7202554941177368,0.6005305647850037,-0.30247339606285095,0.002054940676316619,0.0009625934762880206,0.0026400939095765352,0.0019627537112683058,0.003359046531841159,8.227331272792071e-05,6.239968776702881,-5.239463806152344,-4.089740753173828,0.06239968538284302,-0.05239463597536087,-0.04089740663766861,0.008233996,0.0021034144 +illusion_1.5L,ppo,92,36.8,1.319353461265564,-0.5990022420883179,0.8093291521072388,-0.5675579309463501,0.5372223854064941,-0.13606750965118408,0.002063869731500745,-0.0008695779251866043,0.0036350039299577475,0.003684785682708025,0.0031509927939623594,0.0006990983383730054,-0.6349695920944214,-0.09992146492004395,-0.6114335060119629,-0.006349695846438408,-0.000999214593321085,-0.006114334799349308,0.008341725,0.0030033607 +illusion_1.5L,ppo,93,37.2,1.3352792263031006,-0.5532971620559692,0.742666482925415,-0.21711145341396332,0.49166831374168396,0.06737921386957169,0.0018848254112526774,0.0007201681146398187,0.0033256143797188997,0.002846471033990383,0.0026177361141890287,-6.145927909528837e-05,-6.946471691131592,5.183399200439453,3.0286364555358887,-0.06946471333503723,0.05183399096131325,0.030286364257335663,0.008254317,0.003723295 +illusion_1.5L,ppo,94,37.6,1.2440301179885864,-0.30424243211746216,0.7061834931373596,0.17509154975414276,0.5078312754631042,0.24594123661518097,0.002532145008444786,0.0032266806811094284,0.003737595397979021,0.00140856159850955,0.002618051366880536,-5.778565537184477e-05,-1.011950135231018,0.48102235794067383,-0.4869401454925537,-0.010119501501321793,0.00481022335588932,-0.004869401454925537,0.008376773,0.004224325 +illusion_1.5L,ppo,95,38.0,1.1071553230285645,0.10322335362434387,0.6983095407485962,0.5154018402099609,0.5972070097923279,0.3200727701187134,0.0018625750672072172,0.0014991061761975288,0.003504168475046754,0.0023614687379449606,0.0031200284138321877,0.00011274106509517878,8.0,-5.557339668273926,-3.891796588897705,0.07999999821186066,-0.055573396384716034,-0.038917966187000275,0.008520677,0.0044805333 +illusion_1.5L,ppo,96,38.4,0.9800674915313721,0.4836556315422058,0.7265949845314026,0.724069356918335,0.7080380916595459,0.3334847390651703,0.002911363495513797,-0.0012626013485714793,0.003770339535549283,0.003912051673978567,0.002316851867362857,0.0015341149410232902,3.1969804763793945,-1.6961616277694702,-1.5051360130310059,0.03196980431675911,-0.016961615532636642,-0.015051360242068768,0.008718763,0.004480006 +illusion_1.5L,ppo,97,38.8,0.9165890216827393,0.6690704822540283,0.79851895570755,0.71309494972229,0.7988200187683105,0.3596799373626709,0.0026996564120054245,-0.0002450319880153984,0.003389940829947591,0.003405790077522397,0.0025545177049934864,0.0002427775034448132,-5.127100944519043,5.6551408767700195,4.230672359466553,-0.05127100646495819,0.056551408022642136,0.042306721210479736,0.00897788,0.004225077 +illusion_1.5L,ppo,98,39.2,0.9160524010658264,0.6348942518234253,0.8618471026420593,0.6750122308731079,0.869658350944519,0.3940570056438446,0.0020403487142175436,0.001486192806623876,0.0036322176456451416,0.0017335343873128295,0.00251653790473938,-0.0005810433067381382,-1.1242821216583252,2.3809452056884766,1.6601214408874512,-0.011242820881307125,0.02380945160984993,0.016601214185357094,0.008838299,0.0037318193 +illusion_1.5L,ppo,99,39.6,0.9140333533287048,0.5855638980865479,0.9199321269989014,0.6784521341323853,0.9389259815216064,0.4221912622451782,0.0015091855311766267,0.00023449557193089277,0.003658390836790204,0.0022998689673841,0.0028517546597868204,-0.0012557422742247581,6.445939064025879,-3.4342122077941895,-2.6831512451171875,0.06445939093828201,-0.034342121332883835,-0.02683151140809059,0.008584593,0.0030288736 +illusion_1.5L,ppo,100,40.0,0.8697568774223328,0.5686153173446655,0.969890832901001,0.6888260841369629,0.9936428070068359,0.44713377952575684,0.003272016067057848,-0.001967385644093156,0.0017896495992317796,0.002544570481404662,0.0016887407982721925,0.0002890734176617116,2.4730172157287598,-1.0161007642745972,-1.547372817993164,0.024730172008275986,-0.01016100775450468,-0.015473728068172932,0.008444661,0.002155706 +illusion_1.5L,ppo,101,40.4,0.8046894073486328,0.5666242837905884,1.0258289575576782,0.6933850646018982,1.0563993453979492,0.47369879484176636,0.002700973767787218,-0.001320274081081152,0.0026521189138293266,0.0016459387261420488,0.002370636910200119,-0.00043413424282334745,-4.802555561065674,4.919415473937988,4.131979465484619,-0.04802555590867996,0.049194153398275375,0.041319794952869415,0.008264164,0.0011604141 +illusion_1.5L,ppo,102,40.8,0.7094849348068237,0.5306308269500732,1.0491291284561157,0.6941787004470825,1.105112075805664,0.5053718686103821,0.002069023670628667,0.0006207078113220632,0.0034849534276872873,0.00021925986220594496,0.0031350799836218357,-0.0018500776495784521,-1.381274938583374,2.4742751121520996,1.958897352218628,-0.013812748715281487,0.024742750450968742,0.019588973373174667,0.008302023,9.7195574e-05 +illusion_1.5L,ppo,103,41.2,0.6410926580429077,0.4206414818763733,1.0635353326797485,0.688896656036377,1.1809680461883545,0.5474417209625244,0.0013790157390758395,-0.0005071777268312871,0.0035704048350453377,0.0010682690190151334,0.003489985829219222,-0.0029244159813970327,6.945315361022949,-3.6931140422821045,-3.2005105018615723,0.0694531500339508,-0.03693113848567009,-0.032005105167627335,0.008305243,-0.00097639917 +illusion_1.5L,ppo,104,41.6,0.5725862383842468,0.21934638917446136,1.0169780254364014,0.6248215436935425,1.2637325525283813,0.5936311483383179,0.002866828814148903,-0.0031769576016813517,0.002155938418582082,0.0012291043531149626,0.0026020363438874483,-0.00103771744761616,3.7614336013793945,-1.4643107652664185,-2.314006805419922,0.037614334374666214,-0.014643107540905476,-0.023140067234635353,0.008089388,-0.002002323 +illusion_1.5L,ppo,105,42.0,0.5594651699066162,-0.02124902792274952,0.9370124936103821,0.41677820682525635,1.388014316558838,0.5960705280303955,0.0025739946868270636,-0.0024576743599027395,0.002923644846305251,0.0006183499353937805,0.0034014983102679253,-0.0015242408262565732,-5.155548095703125,5.312258720397949,4.170213222503662,-0.05155548080801964,0.053122587502002716,0.04170213267207146,0.008102163,-0.0029248877 +illusion_1.5L,ppo,106,42.4,0.5851545929908752,-0.2211216390132904,0.8307003974914551,0.03657803311944008,1.4311970472335815,0.4086628258228302,0.0021578348241746426,-0.000278505205642432,0.0029975613579154015,-0.0010193263879045844,0.003148213028907776,-0.002808472840115428,-2.3601911067962646,3.5125532150268555,2.406308650970459,-0.02360191009938717,0.03512553125619888,0.02406308613717556,0.008227785,-0.0036935182 +illusion_1.5L,ppo,107,42.8,0.663921058177948,-0.3247388005256653,0.7743793725967407,-0.3714039623737335,1.3206939697265625,0.04176059737801552,0.0015092046232894063,-0.0006575097213499248,0.0031865842174738646,-1.983157744689379e-05,0.003633364336565137,-0.0035651070065796375,6.038158893585205,-3.466759443283081,-3.2791333198547363,0.06038158759474754,-0.034667592495679855,-0.03279133141040802,0.00844335,-0.004265311 +illusion_1.5L,ppo,108,43.2,0.7452763319015503,-0.35705336928367615,0.7816684246063232,-0.5872454643249512,1.1229950189590454,-0.2957140803337097,0.0022553575690835714,-0.0032304851338267326,0.0020364297088235617,0.0003128521784674376,0.0029348169919103384,-0.001484451349824667,3.3796420097351074,-1.7092790603637695,-2.275390148162842,0.03379641845822334,-0.017092790454626083,-0.022753901779651642,0.008813404,-0.004607294 +illusion_1.5L,ppo,109,43.6,0.8244839310646057,-0.3800381124019623,0.8432232141494751,-0.6087249517440796,0.9789277911186218,-0.47668930888175964,0.0019273943034932017,-0.0023899502120912075,0.003074872773140669,0.0003928876540157944,0.0037292956840246916,-0.0019819384906440973,-6.886711120605469,4.953680038452148,4.1664323806762695,-0.06886710971593857,0.049536798149347305,0.04166432470083237,0.0088453535,-0.004698298 +illusion_1.5L,ppo,110,44.0,0.885989248752594,-0.4068559408187866,0.8896307945251465,-0.595055341720581,0.9110756516456604,-0.48962005972862244,0.002577092731371522,0.00043436262058094144,0.002807909855619073,-0.001310663647018373,0.0031415256671607494,-0.003197605023160577,-5.094846248626709,3.6982364654541016,2.7567849159240723,-0.05094845965504646,0.03698236495256424,0.027567848563194275,0.008706018,-0.004530335 +illusion_1.5L,ppo,111,44.4,0.9473151564598083,-0.43334323167800903,0.9256379008293152,-0.5971478819847107,0.8771875500679016,-0.47326910495758057,0.0026580088306218386,0.00015954826085362583,0.003213791875168681,-0.0005193112883716822,0.0036795097403228283,-0.003531369846314192,5.234206199645996,-4.870155334472656,-3.929701089859009,0.05234206095337868,-0.04870155081152916,-0.039297010749578476,0.008668088,-0.0041094027 +illusion_1.5L,ppo,112,44.8,1.0055183172225952,-0.45922955870628357,0.9464941620826721,-0.6085690855979919,0.8327459692955017,-0.4776957035064697,0.001965441508218646,-0.0017375535098835826,0.0024706858675926924,0.0007864927756600082,0.0030640289187431335,-0.0014988417970016599,3.441279888153076,-4.064645767211914,-3.70670485496521,0.034412797540426254,-0.04064645618200302,-0.037067048251628876,0.008535206,-0.0034556196 +illusion_1.5L,ppo,113,45.2,1.0634407997131348,-0.484497994184494,0.9518711566925049,-0.6400798559188843,0.7880748510360718,-0.4874950349330902,0.0015637101605534554,-0.0014330687699839473,0.0034750080667436123,0.0018370720790699124,0.004098241217434406,-0.0019215313950553536,-4.865149021148682,3.0743579864501953,2.0580101013183594,-0.04865149036049843,0.03074357844889164,0.020580099895596504,0.008538703,-0.0026026417 +illusion_1.5L,ppo,114,45.6,1.131158709526062,-0.5052244663238525,0.9522876739501953,-0.6973153948783875,0.7586430311203003,-0.4753800928592682,0.0024849427863955498,0.000891621399205178,0.002059838268905878,0.00025605258997529745,0.0020834775641560555,-0.001995909260585904,-5.141905307769775,3.3302810192108154,1.604065179824829,-0.051419053226709366,0.03330281004309654,0.016040651127696037,0.008507399,-0.0015963124 +illusion_1.5L,ppo,115,46.0,1.197746753692627,-0.5179030895233154,0.9441474080085754,-0.7693407535552979,0.7132769227027893,-0.4372044503688812,0.0026731279212981462,0.0015317125944420695,0.002300846390426159,0.00013377031427808106,0.002787246135994792,-0.001172329648397863,3.463498115539551,-3.7524044513702393,-3.3442633152008057,0.03463498130440712,-0.03752404451370239,-0.03344263136386871,0.008188638,-0.0004925572 +illusion_1.5L,ppo,116,46.4,1.2656859159469604,-0.5220198631286621,0.9452057480812073,-0.76158607006073,0.6500346660614014,-0.3536284267902374,0.0019830644596368074,-0.00023893035540822893,0.0026581755373626947,0.0018243597587570548,0.003434989834204316,0.00025575977633707225,4.214339733123779,-4.38541316986084,-3.4958226680755615,0.04214339703321457,-0.043854132294654846,-0.03495822474360466,0.008048116,0.0006454338 +illusion_1.5L,ppo,117,46.8,1.3195412158966064,-0.5242219567298889,0.936735987663269,-0.542675256729126,0.5724241137504578,-0.2033972293138504,0.0016493777511641383,-0.0005707654054276645,0.0038267045747488737,0.0033656656742095947,0.0038192837964743376,-0.00013365631457418203,-4.157251358032227,2.3717803955078125,1.3562793731689453,-0.041572511196136475,0.02371780388057232,0.013562793843448162,0.00806683,0.0017506301 +illusion_1.5L,ppo,118,47.2,1.347570776939392,-0.5071200728416443,0.8949389457702637,-0.17777635157108307,0.5158867835998535,0.007488616276532412,0.00195821444503963,0.0016679690452292562,0.0028231951873749495,0.0018948273500427604,0.002408456290140748,-0.0005874952184967697,-5.687051296234131,4.17902946472168,2.063704252243042,-0.056870512664318085,0.04179029539227486,0.020637042820453644,0.008187177,0.0027560394 +illusion_1.5L,ppo,119,47.6,1.283815860748291,-0.3606860339641571,0.8322288990020752,0.1877482384443283,0.5136278867721558,0.22109152376651764,0.002370608039200306,0.002799440873786807,0.003239526180550456,0.0013436609879136086,0.0028774538077414036,-0.00012335619248915464,3.0038275718688965,-2.602893352508545,-2.785884380340576,0.030038274824619293,-0.026028933003544807,-0.02785884402692318,0.008544489,0.0035988288 +illusion_1.5L,ppo,120,48.0,1.1229764223098755,0.007954588159918785,0.7984576225280762,0.5120351314544678,0.5930938124656677,0.33224621415138245,0.0020517800003290176,0.0005110017373226583,0.002713640918955207,0.0027808973100036383,0.0031112695578485727,0.0008539736154489219,7.039001941680908,-4.822671413421631,-3.817335605621338,0.0703900158405304,-0.04822671413421631,-0.03817335516214371,0.008661487,0.0042244415 +illusion_1.5L,ppo,121,48.4,0.974222719669342,0.3854178190231323,0.8106033205986023,0.6848047375679016,0.7066794037818909,0.3497346043586731,0.0026160862762480974,-0.0009153620339930058,0.00365722575224936,0.003831724636256695,0.002704411745071411,0.001182764652185142,-1.480494499206543,1.5396196842193604,0.6350548267364502,-0.014804944396018982,0.015396196395158768,0.006350548006594181,0.008595987,0.004590428 +illusion_1.5L,ppo,122,48.8,0.9004543423652649,0.5663981437683105,0.8582974076271057,0.659966230392456,0.8011119365692139,0.36385825276374817,0.002280107233673334,0.00039372185710817575,0.003042345866560936,0.002417127601802349,0.0023076997604221106,0.00023023503308650106,-4.716283321380615,4.621580123901367,3.0834174156188965,-0.04716283082962036,0.04621579870581627,0.030834173783659935,0.008663988,0.004669702 +illusion_1.5L,ppo,123,49.2,0.9070193767547607,0.5565537214279175,0.9082685708999634,0.6282564401626587,0.8770937919616699,0.3880203664302826,0.0018184779910370708,0.001826847088523209,0.003472875338047743,0.0018547129584476352,0.002551798475906253,-0.00012725616397801787,1.0155220031738281,-0.8118937015533447,-0.8997654914855957,0.010155219584703445,-0.00811893679201603,-0.008997654542326927,0.008641289,0.0044529564 +illusion_1.5L,ppo,124,49.6,0.9064921736717224,0.524336040019989,0.9529796838760376,0.6271381974220276,0.9389414191246033,0.4049927890300751,0.001897463807836175,6.758887320756912e-05,0.0023628612980246544,0.0024733603931963444,0.002436918206512928,0.0001922701339935884,6.725481986999512,-3.618776559829712,-2.9332199096679688,0.06725481897592545,-0.03618776425719261,-0.029332198202610016,0.00870059,0.0039499872 +illusion_1.5L,ppo,125,50.0,0.8762252330780029,0.5138649940490723,1.007836937904358,0.6304599642753601,0.9984533786773682,0.4199409484863281,0.003378847846761346,-0.0017719235038384795,0.0024153953418135643,0.002534537110477686,0.0018838909454643726,0.0012041412992402911,0.16486778855323792,1.0007147789001465,0.3543119430541992,0.0016486778622493148,0.010007147677242756,0.0035431194119155407,0.008735717,0.0031897714 +illusion_1.5L,ppo,126,50.4,0.8067879676818848,0.5103647708892822,1.0554263591766357,0.6255168318748474,1.0496172904968262,0.4317925274372101,0.002505772514268756,-0.00069179676938802,0.002978250617161393,0.0011325423838570714,0.0022818660363554955,3.406576070119627e-05,-4.785350322723389,5.053610801696777,4.24883508682251,-0.0478535033762455,0.050536107271909714,0.042488351464271545,0.008416759,0.0022191948 +illusion_1.5L,ppo,127,50.8,0.7230893969535828,0.46512752771377563,1.0905349254608154,0.6206510663032532,1.1002715826034546,0.4442363381385803,0.0018960864981636405,0.0010965829715132713,0.003772256663069129,0.0005451514734886587,0.003443680005148053,-0.0013200942194089293,0.4686962366104126,0.5246052742004395,0.38286852836608887,0.0046869623474776745,0.005246052518486977,0.003828685265034437,0.008184478,0.0011004461 +illusion_1.5L,ppo,128,51.2,0.6535404324531555,0.34212708473205566,1.1074596643447876,0.6143837571144104,1.1520112752914429,0.45518529415130615,0.0015596714802086353,-0.0007400301983579993,0.0030867939349263906,0.0014300106558948755,0.002994675887748599,-0.0019249561009928584,7.531037330627441,-3.542412519454956,-3.1576650142669678,0.0753103718161583,-0.0354241244494915,-0.031576648354530334,0.008113647,-9.28102e-05 +illusion_1.5L,ppo,129,51.6,0.6048881411552429,0.14385131001472473,1.092445731163025,0.569085955619812,1.2027676105499268,0.4617380201816559,0.003329353639855981,-0.0030762171372771263,0.002250760095193982,0.0012269173748791218,0.0021351350005716085,-0.00032935189665295184,1.9812729358673096,0.431062251329422,-0.6252193450927734,0.019812729209661484,0.0043106223456561565,-0.006252193357795477,0.00811446,-0.0012802617 +illusion_1.5L,ppo,130,52.0,0.5973172187805176,-0.05978311225771904,1.0309226512908936,0.43517184257507324,1.255621314048767,0.4644180238246918,0.002574959769845009,-0.0020082572009414434,0.0030326058622449636,0.00023556036467198282,0.0027081742882728577,-0.0013556533958762884,-5.15270471572876,5.792956352233887,4.739468574523926,-0.05152704566717148,0.05792956054210663,0.047394685447216034,0.008385058,-0.0023804628 +illusion_1.5L,ppo,131,52.4,0.6293760538101196,-0.2088461071252823,0.9087425470352173,0.17151902616024017,1.295233964920044,0.4608811140060425,0.001930538914166391,6.185092206578702e-05,0.0035381605848670006,-0.0006073361146263778,0.0035495648626238108,-0.002997996285557747,-0.7461819052696228,2.325904369354248,1.4829413890838623,-0.007461818866431713,0.02325904369354248,0.014829413965344429,0.008501009,-0.0033166492 +illusion_1.5L,ppo,132,52.8,0.7016252875328064,-0.2662956714630127,0.7815492749214172,-0.1558649092912674,1.3095965385437012,0.43507298827171326,0.001306154765188694,-0.0010745811741799116,0.0032701531890779734,0.0005165941547602415,0.0033937098924070597,-0.0035779064055532217,6.7460784912109375,-3.3833117485046387,-3.502561569213867,0.06746078282594681,-0.03383311629295349,-0.035025615245103836,0.0084263,-0.0040224167 +illusion_1.5L,ppo,133,53.2,0.7675198912620544,-0.2910201847553253,0.7032920122146606,-0.4040236175060272,1.2248800992965698,0.31982895731925964,0.0026119884569197893,-0.0036862867418676615,0.0022028188686817884,0.00034590388531796634,0.002899985993281007,-0.0015459742862731218,2.506040573120117,-0.5111896991729736,-1.569555401802063,0.02506040595471859,-0.005111896898597479,-0.01569555327296257,0.008525466,-0.0044468204 +illusion_1.5L,ppo,134,53.6,0.8305358290672302,-0.319390207529068,0.7277194857597351,-0.48454543948173523,1.029040813446045,0.040009211748838425,0.0020514109637588263,-0.002418167656287551,0.003070524428039789,9.824090375332162e-05,0.0035432176664471626,-0.0020946029108017683,-7.204753398895264,4.945950508117676,4.102532863616943,-0.07204753160476685,0.04945950582623482,0.04102532938122749,0.008579547,-0.004558474 +illusion_1.5L,ppo,135,54.0,0.8732807040214539,-0.3543555438518524,0.7677893042564392,-0.5012581944465637,0.7842605710029602,-0.3158247172832489,0.0025946693494915962,0.0004304597096052021,0.002796789165586233,-0.0013656372902914882,0.0033190720714628696,-0.0031499071046710014,-4.222998142242432,2.6243515014648438,1.8805466890335083,-0.04222998023033142,0.02624351531267166,0.01880546659231186,0.008695492,-0.00434829 +illusion_1.5L,ppo,136,54.4,0.9303053021430969,-0.3862680196762085,0.8144609928131104,-0.5297624468803406,0.6696215271949768,-0.5405809283256531,0.0024977531284093857,-8.463586709694937e-05,0.0027698343619704247,-0.0005537298275157809,0.003459729952737689,-0.0032031377777457237,4.977088928222656,-5.120923042297363,-4.008866310119629,0.049770887941122055,-0.0512092299759388,-0.04008866101503372,0.008829263,-0.0038305998 +illusion_1.5L,ppo,137,54.8,0.9733269214630127,-0.417549729347229,0.8395574688911438,-0.5690951347351074,0.6804105639457703,-0.578369140625,0.0019402620382606983,-0.0017178308917209506,0.0025106442626565695,0.00047206823364831507,0.0033701055217534304,-0.001348690944723785,1.7282131910324097,-3.626065731048584,-3.1659371852874756,0.01728213205933571,-0.036260657012462616,-0.03165937215089798,0.008581467,-0.0030425098 +illusion_1.5L,ppo,138,55.2,1.0307434797286987,-0.44518956542015076,0.8757182955741882,-0.6203989386558533,0.7235761284828186,-0.563345730304718,0.0015414393274113536,-0.000762981129810214,0.00341054773889482,0.0015620068879798055,0.004507821053266525,-0.0017532962374389172,-5.662721157073975,2.216953754425049,1.4565141201019287,-0.05662721022963524,0.022169537842273712,0.014565140940248966,0.008331031,-0.0020414973 +illusion_1.5L,ppo,139,55.6,1.0750912427902222,-0.47021952271461487,0.9040034413337708,-0.6839370727539062,0.7247635126113892,-0.5413188338279724,0.002846037968993187,0.0014358169864863157,0.0017054128693416715,0.0002507365425117314,0.0025803684256970882,-0.0015814967919141054,-3.8079447746276855,1.755098819732666,0.4909862279891968,-0.03807944804430008,0.017550988122820854,0.004909862298518419,0.008234695,-0.00090138236 +illusion_1.5L,ppo,140,56.0,1.130813479423523,-0.4971776604652405,0.9619407653808594,-0.7412329316139221,0.7038928270339966,-0.5148005485534668,0.0025408396031707525,0.0014586232136934996,0.0020695168059319258,0.0006111376569606364,0.003268590196967125,-0.0006750503089278936,4.091566562652588,-4.395839214324951,-3.556473731994629,0.04091566428542137,-0.0439583919942379,-0.035564735531806946,0.0081655495,0.00029304065 +illusion_1.5L,ppo,141,56.4,1.1751610040664673,-0.5320063233375549,1.0119357109069824,-0.7542504668235779,0.6333242654800415,-0.4661712348461151,0.0018211979186162353,-0.00025156818446703255,0.0032626488246023655,0.0024524605832993984,0.003969247452914715,0.0004312720848247409,2.659881353378296,-3.1824076175689697,-2.662221908569336,0.026598813012242317,-0.03182407468557358,-0.026622219011187553,0.008358175,0.0014523196 +illusion_1.5L,ppo,142,56.8,1.2394185066223145,-0.5863959789276123,1.034663200378418,-0.7042151093482971,0.5563803315162659,-0.36747920513153076,0.0015012564836069942,4.65130724478513e-05,0.0038779843598604202,0.003669144120067358,0.0039936089888215065,-0.00031889151432551444,-4.838269233703613,3.2208547592163086,1.7097339630126953,-0.04838269203901291,0.03220854699611664,0.017097339034080505,0.00845843,0.0024891212 +illusion_1.5L,ppo,143,57.2,1.3168854713439941,-0.6461024284362793,0.9858975410461426,-0.5519112944602966,0.4919034242630005,-0.19954872131347656,0.0020531294867396355,0.0022589988075196743,0.0030395102221518755,0.0019409864908084273,0.0023468071594834328,-0.0004866344970650971,-4.227099418640137,3.3419573307037354,1.1750530004501343,-0.04227099195122719,0.033419571816921234,0.011750529520213604,0.008342427,0.0033249392 +illusion_1.5L,ppo,144,57.6,1.3837133646011353,-0.5430628061294556,0.8946577310562134,-0.25612011551856995,0.478707879781723,0.00994909554719925,0.002132234862074256,0.0024883016012609005,0.0037426785565912724,0.0019602745305746794,0.003101280890405178,-4.051069481647573e-06,4.679538249969482,-3.4365737438201904,-3.3651747703552246,0.04679538309574127,-0.034365735948085785,-0.033651746809482574,0.0084158955,0.0038961943 +illusion_1.5L,ppo,145,58.0,1.3383958339691162,-0.15549717843532562,0.8025169968605042,0.14925570785999298,0.5076717138290405,0.2130366712808609,0.0022860681638121605,0.00023662201419938356,0.0028085641097277403,0.003274618647992611,0.0027731272857636213,0.0012784912250936031,5.301715850830078,-3.040194272994995,-2.6566104888916016,0.053017158061265945,-0.030401941388845444,-0.02656610496342182,0.008495982,0.004159233 +illusion_1.5L,ppo,146,58.4,1.2171441316604614,0.19890429079532623,0.7632685899734497,0.5173637270927429,0.579088568687439,0.3401533365249634,0.0025870702229440212,-0.0004076931218151003,0.003386937314644456,0.003375639673322439,0.0023348270915448666,0.0010248823091387749,-3.0785815715789795,3.9581563472747803,2.7233829498291016,-0.0307858157902956,0.03958156332373619,0.027233829721808434,0.0086260075,0.0040938105 +illusion_1.5L,ppo,147,58.8,1.081708312034607,0.48956745862960815,0.799376904964447,0.688448965549469,0.6836230754852295,0.3685087263584137,0.002114733448252082,0.0009554560529068112,0.004117166623473167,0.0013352652313187718,0.0021824960131198168,0.0003543359343893826,-3.2335894107818604,4.284923553466797,3.1379988193511963,-0.03233589231967926,0.042849235236644745,0.03137998655438423,0.008827011,0.0037047628 +illusion_1.5L,ppo,148,59.2,1.0012996196746826,0.5767756104469299,0.8545019030570984,0.6597055196762085,0.7668623924255371,0.38407203555107117,0.0015554070705547929,0.001136878621764481,0.005282172001898289,0.0017412694869562984,0.0032747758086770773,-0.0006855870597064495,4.332481384277344,-1.9566251039505005,-1.1945443153381348,0.04332481324672699,-0.0195662509649992,-0.011945443227887154,0.008654095,0.003021729 +illusion_1.5L,ppo,149,59.6,0.996685802936554,0.5044771432876587,0.9015156030654907,0.6065959334373474,0.8387426137924194,0.40774649381637573,0.002579144900664687,-0.00108238379471004,0.0029911070596426725,0.0022716952953487635,0.0019798881839960814,-0.0001092208840418607,5.9256720542907715,-2.272446632385254,-1.8056038618087769,0.059256717562675476,-0.022724466398358345,-0.01805603876709938,0.008403435,0.0020969207 +illusion_1.5L,ppo,150,60.0,0.9786660671234131,0.44854485988616943,0.9249055981636047,0.5833101868629456,0.8941430449485779,0.4324975311756134,0.003448729170486331,-0.0019265180453658104,0.002953167539089918,0.0016248577740043402,0.0017397769261151552,0.000224731134949252,-1.885183334350586,3.188735008239746,2.554305076599121,-0.018851833418011665,0.031887348741292953,0.025543050840497017,0.008307529,0.0010011232 +illusion_1.5L,ppo,151,60.4,0.9443749189376831,0.4219304025173187,0.941037654876709,0.5716201663017273,0.9489005208015442,0.45614802837371826,0.0021299421787261963,-0.00047519474173896015,0.003803998464718461,0.00024755430058576167,0.002765299053862691,-0.0012435622047632933,-3.4763567447662354,4.252728462219238,3.922081708908081,-0.03476356714963913,0.04252728447318077,0.039220817387104034,0.008207169,-0.00018176257 +illusion_1.5L,ppo,152,60.8,0.8948109149932861,0.39906156063079834,0.9350264072418213,0.5736426711082458,0.9899297952651978,0.4835852086544037,0.0014836281770840287,0.000244365306571126,0.004533466883003712,0.0008190629887394607,0.0041678231209516525,-0.003109447890892625,2.8412699699401855,-0.9421101808547974,-0.6861467361450195,0.028412699699401855,-0.00942110177129507,-0.006861467380076647,0.008346703,-0.0013611992 +illusion_1.5L,ppo,153,61.2,0.8566676378250122,0.3634340763092041,0.925494909286499,0.5909043550491333,1.0368092060089111,0.5144246816635132,0.0019402004545554519,-0.0017447177087888122,0.002694784663617611,0.0012760283425450325,0.0030420413240790367,-0.002791463630273938,5.611365795135498,-2.3177223205566406,-2.5577220916748047,0.05611365661025047,-0.023177223280072212,-0.02557722106575966,0.008451278,-0.0024469942 +illusion_1.5L,ppo,154,61.6,0.8067175149917603,0.30845746397972107,0.9003306031227112,0.6197386384010315,1.0767208337783813,0.5526155233383179,0.0025665881112217903,-0.0029531631153076887,0.002400911645963788,0.000829812721349299,0.00292600248940289,-0.0020030387677252293,-1.0702911615371704,2.0982751846313477,1.2019729614257812,-0.010702911764383316,0.02098275162279606,0.012019729241728783,0.008312063,-0.0033562263 +illusion_1.5L,ppo,155,62.0,0.7456623315811157,0.2301526814699173,0.8673282861709595,0.6441507935523987,1.120711088180542,0.6032982468605042,0.0020859716460108757,-0.001590769155882299,0.0030899906996637583,-0.0004689533670898527,0.003065924160182476,-0.0030584759078919888,-4.623758316040039,4.255364418029785,3.478353500366211,-0.046237580478191376,0.04255364462733269,0.034783534705638885,0.008355864,-0.0040195654 +illusion_1.5L,ppo,156,62.4,0.6704666614532471,0.12194851785898209,0.8057735562324524,0.6335631608963013,1.1646275520324707,0.6763398051261902,0.002065439010038972,-0.00020600408606696874,0.002764221513643861,-0.0008545240852981806,0.0035672527737915516,-0.003941153641790152,1.4775499105453491,-1.0251882076263428,-1.1718993186950684,0.014775498770177364,-0.010251881554722786,-0.011718993075191975,0.00845527,-0.0043864935 +illusion_1.5L,ppo,157,62.8,0.6091424822807312,0.0007167521398514509,0.706917941570282,0.538628876209259,1.210477590560913,0.7390061020851135,0.001701569533906877,-0.0017412203596904874,0.0020697982981801033,-3.3993735996773466e-05,0.0038465061224997044,-0.0024655612651258707,6.02921724319458,-4.425466537475586,-4.163372039794922,0.06029216945171356,-0.044254664331674576,-0.041633717715740204,0.00858894,-0.0044290167 +illusion_1.5L,ppo,158,63.2,0.6004778146743774,-0.1042196974158287,0.5861890316009521,0.3096364736557007,1.2247234582901,0.5747188329696655,0.002404215279966593,-0.003411737969145179,0.003048058832064271,0.0003880638687405735,0.005138504318892956,-0.0011385715333744884,-0.6350182890892029,0.965705931186676,0.23010408878326416,-0.006350182928144932,0.009657058864831924,0.00230104080401361,0.008836976,-0.004143606 +illusion_1.5L,ppo,159,63.6,0.6493017673492432,-0.1628625988960266,0.48140227794647217,-0.03613351285457611,1.1960887908935547,0.252368688583374,0.002200281247496605,-0.001359933172352612,0.002881200984120369,-0.00013710274652112275,0.004396896809339523,-0.001778511214070022,-7.547609806060791,4.556912422180176,3.3229050636291504,-0.07547609508037567,0.04556912183761597,0.033229049295186996,0.008733538,-0.0035512277 +illusion_1.5L,ppo,160,64.0,0.7182978987693787,-0.20845094323158264,0.44058844447135925,-0.40798714756965637,1.121865153312683,-0.09564339369535446,0.00318513298407197,0.0013404105557128787,0.001952338614501059,-0.0015650077257305384,0.003810877213254571,-0.002096551703289151,-1.3893446922302246,-0.13413679599761963,-0.31553125381469727,-0.013893446885049343,-0.0013413679553195834,-0.0031553125008940697,0.008477425,-0.002695499 +illusion_1.5L,ppo,161,64.4,0.7719504833221436,-0.26703721284866333,0.48371466994285583,-0.6638229489326477,1.001758337020874,-0.5305168628692627,0.0023673258256167173,1.134174544858979e-05,0.002458942122757435,5.658578083966859e-05,0.0038994038477540016,-0.0016094653401523829,6.720551490783691,-7.091591835021973,-4.735194206237793,0.067205511033535,-0.07091591507196426,-0.04735194146633148,0.008370791,-0.0016391447 +illusion_1.5L,ppo,162,64.8,0.8227919936180115,-0.33558815717697144,0.5970233678817749,-0.7205259799957275,0.912061333656311,-0.8333505988121033,0.0016342285089194775,-0.0022528953850269318,0.00467515317723155,0.002083387691527605,0.004787985701113939,-0.0005054496577940881,0.2878105342388153,-2.9135539531707764,-2.021721839904785,0.002878105267882347,-0.029135538265109062,-0.02021721750497818,0.008236603,-0.00045906886 +illusion_1.5L,ppo,163,65.2,0.8694826364517212,-0.3971012532711029,0.6971694827079773,-0.7032743692398071,0.8866950869560242,-0.829155445098877,0.0013687468599528074,-9.467093332204968e-05,0.004247422330081463,0.0038079428486526012,0.005283684004098177,-0.002017840975895524,-8.0,3.6041011810302734,2.161280632019043,-0.07999999821186066,0.036041010171175,0.021612806245684624,0.008309898,0.0007595485 +illusion_1.5L,ppo,164,65.6,0.9225627779960632,-0.4605522155761719,0.7630748748779297,-0.7121254205703735,0.8740140795707703,-0.7079197764396667,0.002923421561717987,0.0025020528119057417,0.002359046833589673,0.0017017762875184417,0.002840940374881029,-0.0014891762984916568,-3.388874053955078,1.9838063716888428,0.4697737991809845,-0.033888738602399826,0.019838063046336174,0.004697737749665976,0.008405818,0.0019296474 +illusion_1.5L,ppo,165,66.0,0.978985071182251,-0.5277557969093323,0.8004422783851624,-0.7256689667701721,0.8328927755355835,-0.6421181559562683,0.0021067208144813776,0.0015370436012744904,0.002836209023371339,0.0025736771058291197,0.0031855592969805002,-0.0009273091563954949,6.40794038772583,-5.3847551345825195,-4.158536911010742,0.0640794038772583,-0.053847551345825195,-0.04158536717295647,0.008243249,0.0029686722 +illusion_1.5L,ppo,166,66.4,1.0417828559875488,-0.611224353313446,0.7992417812347412,-0.7412331104278564,0.7723106145858765,-0.5955135822296143,0.0019872908014804125,-0.00041058403439819813,0.0033076456747949123,0.0044974819757044315,0.0030287958215922117,0.0004975073970854282,2.1137685775756836,-2.3606605529785156,-2.4148387908935547,0.02113768458366394,-0.02360660582780838,-0.02414838783442974,0.008251132,0.0038044583 +illusion_1.5L,ppo,167,66.8,1.13609778881073,-0.7123115658760071,0.7598291635513306,-0.7673864960670471,0.7256783246994019,-0.5317944288253784,0.0017166136531159282,0.000367544824257493,0.003888011211529374,0.004342486150562763,0.003060984890908003,-2.386434289292083e-06,-5.730757236480713,5.033844947814941,2.71293306350708,-0.05730757117271423,0.05033844709396362,0.02712932974100113,0.008374292,0.0043801893 +illusion_1.5L,ppo,168,67.2,1.2499363422393799,-0.7405117154121399,0.6559134721755981,-0.7683032751083374,0.6681444644927979,-0.43400341272354126,0.002258431864902377,0.002716450020670891,0.004275861661881208,0.0019732615910470486,0.002076799515634775,6.449915963457897e-05,-3.106182813644409,3.141852617263794,1.2821165323257446,-0.031061828136444092,0.03141852468252182,0.012821164913475513,0.008528592,0.0046580834 +illusion_1.5L,ppo,169,67.6,1.3386262655258179,-0.532197892665863,0.5582995414733887,-0.6180137395858765,0.6203434467315674,-0.2982517182826996,0.001923541771247983,0.0019294751109555364,0.005139896180480719,0.0022742939181625843,0.003086647018790245,-0.00017182629380840808,6.954889297485352,-4.115093231201172,-2.6798653602600098,0.06954888999462128,-0.041150931268930435,-0.026798652485013008,0.008839371,0.004621584 +illusion_1.5L,ppo,170,68.0,1.3413084745407104,-0.21253076195716858,0.5259600281715393,-0.2688238024711609,0.5607432126998901,-0.11428679525852203,0.0029288188088685274,-0.0009158079046756029,0.003424517111852765,0.003473209450021386,0.0018328125588595867,0.0012604290386661887,4.313040733337402,-2.6131386756896973,-1.402449607849121,0.043130405247211456,-0.026131385937333107,-0.014024496078491211,0.008838829,0.0042759445 +illusion_1.5L,ppo,171,68.4,1.3394948244094849,0.14488835632801056,0.5748138427734375,0.12216435372829437,0.5513395667076111,0.08890973031520844,0.002725927857682109,-0.00038791802944615483,0.003656890941783786,0.003220797749236226,0.0020272796973586082,0.0006009049247950315,-5.748818397521973,5.008532524108887,3.9038538932800293,-0.05748818442225456,0.05008532479405403,0.03903853893280029,0.008611819,0.0036472427 +illusion_1.5L,ppo,172,68.8,1.2939190864562988,0.4619184732437134,0.6283180713653564,0.484303742647171,0.5762593746185303,0.25370272994041443,0.0019503788789734244,0.0018085385672748089,0.0045538898557424545,0.0012120832689106464,0.003078156616538763,-0.0005705307703465223,-2.8587043285369873,3.8725578784942627,3.2282631397247314,-0.028587043285369873,0.03872557729482651,0.03228263184428215,0.008512569,0.0027799644 +illusion_1.5L,ppo,173,69.2,1.2259044647216797,0.6150367856025696,0.7125909328460693,0.7415531873703003,0.665789783000946,0.33726462721824646,0.0012752949260175228,0.0008521664422005415,0.0054898071102797985,0.002265209797769785,0.0040866718627512455,-0.0025526664685457945,6.738874435424805,-3.103930711746216,-1.6210312843322754,0.06738874316215515,-0.03103930689394474,-0.016210312023758888,0.008357008,0.0017333989 +illusion_1.5L,ppo,174,69.6,1.1278812885284424,0.6126584410667419,0.7734476327896118,0.7898616194725037,0.7475679516792297,0.3857135474681854,0.002687174128368497,-0.0016898374306038022,0.0026154760271310806,0.0026707276701927185,0.00198739324696362,-0.001244253246113658,4.690300464630127,-1.9521948099136353,-1.7727818489074707,0.04690300300717354,-0.01952194795012474,-0.017727818340063095,0.008349984,0.00057717453 +illusion_1.5L,ppo,175,70.0,1.0583679676055908,0.5825292468070984,0.8305942416191101,0.7448117136955261,0.8414733409881592,0.4354764521121979,0.0027221667114645243,-0.0016510381828993559,0.002843510126695037,0.0017070696922019124,0.002285667695105076,-0.0016140899388119578,-3.551675796508789,4.516573905944824,3.7378196716308594,-0.035516757518053055,0.045165736228227615,0.03737819567322731,0.008401495,-0.0006137098 +illusion_1.5L,ppo,176,70.4,0.9928239583969116,0.5529688000679016,0.8466150760650635,0.7251392602920532,0.9197533130645752,0.4831325113773346,0.001858007162809372,-0.000323313259286806,0.0033637755550444126,0.00014024306437931955,0.0028257612138986588,-0.0033367956057190895,-2.0917716026306152,3.077939987182617,2.6845016479492188,-0.02091771550476551,0.0307793989777565,0.026845015585422516,0.008177781,-0.0017639742 +illusion_1.5L,ppo,177,70.8,0.943443238735199,0.5184206962585449,0.8478171825408936,0.7428441047668457,1.0131008625030518,0.5258991718292236,0.0015964554622769356,-0.0005046123405918479,0.003442520508542657,0.0007283593877218664,0.0037865503691136837,-0.004115839023143053,4.298313617706299,-3.1162967681884766,-2.6995444297790527,0.04298313707113266,-0.031162967905402184,-0.026995442807674408,0.008096659,-0.0028029107 +illusion_1.5L,ppo,178,71.2,0.8815228939056396,0.48075535893440247,0.8180176615715027,0.8001143932342529,1.1096354722976685,0.5596899390220642,0.002194239990785718,-0.0024480349384248257,0.0016772825038060546,0.0010835272260010242,0.003407105104997754,-0.002312049502506852,3.6505239009857178,-2.01401424407959,-2.279122829437256,0.036505237221717834,-0.020140141248703003,-0.02279122732579708,0.008196541,-0.0036686852 +illusion_1.5L,ppo,179,71.6,0.8117063641548157,0.43099597096443176,0.778238832950592,0.8522492051124573,1.2173320055007935,0.5715795755386353,0.002143437508493662,-0.002500315895304084,0.0025153011083602905,0.0007017950993031263,0.004025537054985762,-0.0024008743930608034,-3.7666635513305664,4.255541801452637,3.5984652042388916,-0.03766663372516632,0.042555417865514755,0.03598465025424957,0.008346819,-0.0043118354 +illusion_1.5L,ppo,180,72.0,0.7365231513977051,0.3476178050041199,0.7468780279159546,0.7712655067443848,1.3252613544464111,0.558957576751709,0.00221642036922276,-0.0005565022584050894,0.00273089949041605,-0.0010897716274484992,0.0033315401524305344,-0.0038709489163011312,-3.2923665046691895,3.7712879180908203,3.0763192176818848,-0.03292366489768028,0.03771287947893143,0.03076319210231304,0.008710415,-0.004697794 +illusion_1.5L,ppo,181,72.4,0.6605076789855957,0.20947784185409546,0.7134919166564941,0.4733263850212097,1.405078411102295,0.4864731729030609,0.0018858109833672643,-0.0005502726999111474,0.0029652409721165895,-0.00047045943210832775,0.004134703427553177,-0.004592739976942539,5.439076900482178,-4.1089701652526855,-3.4485952854156494,0.05439076945185661,-0.041089702397584915,-0.03448595106601715,0.008841766,-0.0048083463 +illusion_1.5L,ppo,182,72.8,0.6121857166290283,0.013934108428657055,0.6988428235054016,0.012309975922107697,1.4022282361984253,0.2701314091682434,0.001927063800394535,-0.0030087612103670835,0.0023803357034921646,0.0007071020663715899,0.004173285327851772,-0.0020934976637363434,4.811685085296631,-4.18442440032959,-4.099372863769531,0.04811685159802437,-0.041844241321086884,-0.04099372774362564,0.00870273,-0.004642012 +illusion_1.5L,ppo,183,73.2,0.600714921951294,-0.19209428131580353,0.7012729048728943,-0.4112289547920227,1.295075535774231,-0.06606540083885193,0.002035403624176979,-0.00266295881010592,0.00376947782933712,0.0015117648290470243,0.0057832421734929085,-0.002189554972574115,-5.602540969848633,3.9554834365844727,2.889740467071533,-0.05602540820837021,0.03955483436584473,0.028897404670715332,0.008674848,-0.004213416 +illusion_1.5L,ppo,184,73.6,0.6713506579399109,-0.3210676312446594,0.7450138926506042,-0.6599987149238586,1.1722408533096313,-0.3585289418697357,0.0025383003521710634,2.621271414682269e-05,0.0024081396404653788,-0.0003457010898273438,0.003355220193043351,-0.0027565944474190474,-6.288715362548828,4.313451766967773,2.6364312171936035,-0.06288715451955795,0.04313451796770096,0.026364311575889587,0.008570708,-0.0035517665 +illusion_1.5L,ppo,185,74.0,0.7617769837379456,-0.3855244815349579,0.785426914691925,-0.7661377787590027,1.0514698028564453,-0.5018945336341858,0.0027950569055974483,0.0008968598558567464,0.002470887266099453,-0.0004978403449058533,0.0034751114435493946,-0.0023261872120201588,3.3656673431396484,-3.638460636138916,-3.1694581508636475,0.03365667164325714,-0.03638460487127304,-0.03169457986950874,0.00853532,-0.0026986124 +illusion_1.5L,ppo,186,74.4,0.8628732562065125,-0.43492844700813293,0.8350467681884766,-0.7633040547370911,0.9714396595954895,-0.5357182621955872,0.002113687340170145,-0.0007821914623491466,0.0024271386209875345,0.001101115602068603,0.0036235800944268703,-0.0006405793828889728,4.966429710388184,-4.95611572265625,-3.9261646270751953,0.049664296209812164,-0.04956115782260895,-0.03926164656877518,0.008559806,-0.0017050554 +illusion_1.5L,ppo,187,74.8,0.9484274387359619,-0.4725272059440613,0.8632035255432129,-0.7699243426322937,0.8989415168762207,-0.5392298698425293,0.0016830372624099255,-0.0014328317483887076,0.003831748152151704,0.002754510845988989,0.004320257343351841,-0.0008492656052112579,-3.192131757736206,1.885509729385376,1.1140215396881104,-0.03192131593823433,0.018855096772313118,0.011140215210616589,0.008268665,-0.00062862504 +illusion_1.5L,ppo,188,75.2,1.0360047817230225,-0.49737831950187683,0.8971408009529114,-0.818831205368042,0.8340810537338257,-0.5350925922393799,0.002085217507556081,0.0008260198519565165,0.0028942825738340616,0.0016580384690314531,0.0027399789541959763,-0.0013503080699592829,-6.299715042114258,4.325700759887695,2.30976939201355,-0.06299714744091034,0.043257005512714386,0.023097693920135498,0.008048145,0.00046999974 +illusion_1.5L,ppo,189,75.6,1.113385796546936,-0.51278156042099,0.9493438601493835,-0.8730744123458862,0.7495212554931641,-0.5213572978973389,0.002704510698094964,0.0023042336106300354,0.002962075872346759,0.0008308669202961028,0.0027881937567144632,-0.0007501702639274299,1.7408952713012695,-2.037055492401123,-2.3086557388305664,0.017408952116966248,-0.02037055417895317,-0.023086557164788246,0.008044709,0.0015302502 +illusion_1.5L,ppo,190,76.0,1.1827391386032104,-0.5251492857933044,1.0184297561645508,-0.864744246006012,0.639653742313385,-0.48767730593681335,0.0019861955661326647,0.0005211812094785273,0.0026790767442435026,0.0023293232079595327,0.0032169269397854805,0.0003731813339982182,6.1237897872924805,-5.210700988769531,-4.043024063110352,0.06123789772391319,-0.052107010036706924,-0.04043024033308029,0.008106882,0.0024947578 +illusion_1.5L,ppo,191,76.4,1.2522560358047485,-0.5429604053497314,1.0582952499389648,-0.7692914605140686,0.5251103043556213,-0.39313805103302,0.002175340661779046,-0.0008875148487277329,0.004003541544079781,0.003986576572060585,0.003235965734347701,0.000732521410100162,-2.403369426727295,1.159691572189331,0.19952893257141113,-0.024033693596720695,0.011596915312111378,0.001995289232581854,0.008437012,0.0033121565 +illusion_1.5L,ppo,192,76.8,1.3063163757324219,-0.5456414818763733,1.039617657661438,-0.5250757336616516,0.4461759626865387,-0.21974892914295197,0.0018875187961384654,0.0011653444962576032,0.003619972849264741,0.002677476964890957,0.0027487988118082285,-0.00016980864165816456,-7.114473342895508,5.56760311126709,3.1988918781280518,-0.07114472985267639,0.05567602813243866,0.03198891878128052,0.008649187,0.003939501 +illusion_1.5L,ppo,193,77.2,1.2936608791351318,-0.399824857711792,0.9912567138671875,-0.12589597702026367,0.44913116097450256,0.0002407422725809738,0.0026150124613195658,0.0033322020899504423,0.004021570086479187,0.0014116986421868205,0.0028211281169205904,9.939977644535247e-06,0.32577770948410034,-0.6525894403457642,-1.5272269248962402,0.003257777076214552,-0.006525894161313772,-0.015272269025444984,0.008595731,0.004344232 +illusion_1.5L,ppo,194,77.6,1.1804054975509644,0.007189031224697828,0.929861843585968,0.30589649081230164,0.5097915530204773,0.197401225566864,0.002080010250210762,0.0013297460973262787,0.0034660445526242256,0.0023330622352659702,0.003210807219147682,0.00041890793363563716,8.0,-5.4627885818481445,-4.1367058753967285,0.07999999821186066,-0.054627884179353714,-0.041367057710886,0.008671655,0.0045056357 +illusion_1.5L,ppo,195,78.0,1.1179176568984985,0.3536480963230133,0.9066694378852844,0.5963996648788452,0.6076307892799377,0.34781065583229065,0.0029433860909193754,-0.001334356958977878,0.0040368675254285336,0.0037378070410341024,0.0025307037867605686,0.0015231212601065636,1.8601434230804443,-0.8325689435005188,-1.0739970207214355,0.01860143430531025,-0.008325689472258091,-0.01073997002094984,0.008698018,0.0044157673 +illusion_1.5L,ppo,196,78.4,1.073520302772522,0.4995323419570923,0.9141658544540405,0.7080563306808472,0.7116396427154541,0.41245830059051514,0.002503331983461976,-0.00012062743189744651,0.0033962451852858067,0.0030759454239159822,0.002674766117706895,8.472338959109038e-05,-5.764610767364502,5.883636474609375,4.309146881103516,-0.05764610692858696,0.05883636325597763,0.04309146851301193,0.008734594,0.004079805 +illusion_1.5L,ppo,197,78.8,1.0358752012252808,0.5169885754585266,0.9445452094078064,0.6965188384056091,0.8167120218276978,0.4312136471271515,0.002069255569949746,0.001935678767040372,0.0038232922088354826,0.0016095541650429368,0.0027930913493037224,-0.0007601719116792083,-1.1112806797027588,2.0301856994628906,1.1742193698883057,-0.011112806387245655,0.020301856100559235,0.01174219325184822,0.008826461,0.0035158328 +illusion_1.5L,ppo,198,79.2,0.9891477823257446,0.514034628868103,0.9726954698562622,0.6726678609848022,0.8987197279930115,0.45006024837493896,0.0014438311336562037,0.0003966227232012898,0.0037883459590375423,0.002340122824534774,0.003012146567925811,-0.001360610593110323,7.6203131675720215,-3.899263620376587,-3.143152952194214,0.0762031301856041,-0.038992635905742645,-0.03143152967095375,0.008554018,0.0027540387 +illusion_1.5L,ppo,199,79.6,0.9296793341636658,0.5181375741958618,0.9986048936843872,0.6639072895050049,0.9693403840065002,0.4723016023635864,0.0034699097741395235,-0.0022678948007524014,0.0021449357736855745,0.0023710522800683975,0.0019981013610959053,0.0003939667949452996,2.932173728942871,-0.8566336631774902,-1.5224323272705078,0.029321735724806786,-0.008566336706280708,-0.01522432267665863,0.008233988,0.0018353473 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv new file mode 100644 index 0000000..b3c1144 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1.5L,sr,72,28.8,36,0.9102946940089439,9,0.9137569922539923,0.8897441240648428,0.9199576940801408,0.9247583761914737,0.8919156144062678,0.9216353630569453 +illusion_1.5L,sr,108,43.2,36,0.8355014470785305,5,0.9496781619058715,0.80967513176923,0.8448714431789186,0.7072061167822944,0.925034311082628,0.7765435177522401 +illusion_1.5L,sr,144,57.6,36,0.8877517333107622,0,0.9238662372032801,0.9061091347312968,0.8213582221004698,0.8966982344605235,0.9109145816829469,0.8675639896860553 +illusion_1.5L,sr,180,72.0,36,0.8402270704353686,-6,0.8981848905483881,0.8103688726356874,0.7517687694893943,0.8119656835430457,0.9401674485868878,0.8289067578088078 +illusion_1.5L,sr,200,80.0,36,0.8306346769979293,-7,0.910318603946103,0.7779754769936618,0.7479163971212175,0.7731653744122013,0.951814376645618,0.8226178328687739 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_long.csv new file mode 100644 index 0000000..62e3e83 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,sr,0,0.0,velocity,upper_ux,1.0303159952163696 +illusion_1.5L,sr,0,0.0,velocity,upper_uy,-0.292056143283844 +illusion_1.5L,sr,0,0.0,velocity,center_ux,0.9276583790779114 +illusion_1.5L,sr,0,0.0,velocity,center_uy,-0.523850679397583 +illusion_1.5L,sr,0,0.0,velocity,lower_ux,0.9127787947654724 +illusion_1.5L,sr,0,0.0,velocity,lower_uy,-0.3432065546512604 +illusion_1.5L,sr,1,0.4,velocity,upper_ux,1.0978643894195557 +illusion_1.5L,sr,1,0.4,velocity,upper_uy,-0.3182815909385681 +illusion_1.5L,sr,1,0.4,velocity,center_ux,0.952372670173645 +illusion_1.5L,sr,1,0.4,velocity,center_uy,-0.5478085875511169 +illusion_1.5L,sr,1,0.4,velocity,lower_ux,0.8504791259765625 +illusion_1.5L,sr,1,0.4,velocity,lower_uy,-0.29210448265075684 +illusion_1.5L,sr,2,0.8,velocity,upper_ux,1.1723146438598633 +illusion_1.5L,sr,2,0.8,velocity,upper_uy,-0.3358217179775238 +illusion_1.5L,sr,2,0.8,velocity,center_ux,0.953387975692749 +illusion_1.5L,sr,2,0.8,velocity,center_uy,-0.5527027249336243 +illusion_1.5L,sr,2,0.8,velocity,lower_ux,0.789252519607544 +illusion_1.5L,sr,2,0.8,velocity,lower_uy,-0.21418491005897522 +illusion_1.5L,sr,3,1.2,velocity,upper_ux,1.2569336891174316 +illusion_1.5L,sr,3,1.2,velocity,upper_uy,-0.33993473649024963 +illusion_1.5L,sr,3,1.2,velocity,center_ux,0.9155568480491638 +illusion_1.5L,sr,3,1.2,velocity,center_uy,-0.4620448052883148 +illusion_1.5L,sr,3,1.2,velocity,lower_ux,0.7448514699935913 +illusion_1.5L,sr,3,1.2,velocity,lower_uy,-0.10682671517133713 +illusion_1.5L,sr,4,1.6,velocity,upper_ux,1.3470008373260498 +illusion_1.5L,sr,4,1.6,velocity,upper_uy,-0.31156402826309204 +illusion_1.5L,sr,4,1.6,velocity,center_ux,0.8417995572090149 +illusion_1.5L,sr,4,1.6,velocity,center_uy,-0.20996351540088654 +illusion_1.5L,sr,4,1.6,velocity,lower_ux,0.7451995015144348 +illusion_1.5L,sr,4,1.6,velocity,lower_uy,0.0050774854607880116 +illusion_1.5L,sr,5,2.0,velocity,upper_ux,1.3902256488800049 +illusion_1.5L,sr,5,2.0,velocity,upper_uy,-0.19276052713394165 +illusion_1.5L,sr,5,2.0,velocity,center_ux,0.7746780514717102 +illusion_1.5L,sr,5,2.0,velocity,center_uy,0.1539890319108963 +illusion_1.5L,sr,5,2.0,velocity,lower_ux,0.7906796932220459 +illusion_1.5L,sr,5,2.0,velocity,lower_uy,0.09192682057619095 +illusion_1.5L,sr,6,2.4,velocity,upper_ux,1.2996799945831299 +illusion_1.5L,sr,6,2.4,velocity,upper_uy,0.05661509558558464 +illusion_1.5L,sr,6,2.4,velocity,center_ux,0.7703498005867004 +illusion_1.5L,sr,6,2.4,velocity,center_uy,0.44763022661209106 +illusion_1.5L,sr,6,2.4,velocity,lower_ux,0.8520818948745728 +illusion_1.5L,sr,6,2.4,velocity,lower_uy,0.16172537207603455 +illusion_1.5L,sr,7,2.8,velocity,upper_ux,1.1148858070373535 +illusion_1.5L,sr,7,2.8,velocity,upper_uy,0.2874516546726227 +illusion_1.5L,sr,7,2.8,velocity,center_ux,0.8292206525802612 +illusion_1.5L,sr,7,2.8,velocity,center_uy,0.5229148268699646 +illusion_1.5L,sr,7,2.8,velocity,lower_ux,0.9118898510932922 +illusion_1.5L,sr,7,2.8,velocity,lower_uy,0.220302015542984 +illusion_1.5L,sr,8,3.2,velocity,upper_ux,0.9770044088363647 +illusion_1.5L,sr,8,3.2,velocity,upper_uy,0.3591187298297882 +illusion_1.5L,sr,8,3.2,velocity,center_ux,0.8913705945014954 +illusion_1.5L,sr,8,3.2,velocity,center_uy,0.5152921080589294 +illusion_1.5L,sr,8,3.2,velocity,lower_ux,0.9739686846733093 +illusion_1.5L,sr,8,3.2,velocity,lower_uy,0.2652159631252289 +illusion_1.5L,sr,9,3.6,velocity,upper_ux,0.8993015885353088 +illusion_1.5L,sr,9,3.6,velocity,upper_uy,0.3351897895336151 +illusion_1.5L,sr,9,3.6,velocity,center_ux,0.9320094585418701 +illusion_1.5L,sr,9,3.6,velocity,center_uy,0.5293117761611938 +illusion_1.5L,sr,9,3.6,velocity,lower_ux,1.0395185947418213 +illusion_1.5L,sr,9,3.6,velocity,lower_uy,0.29943203926086426 +illusion_1.5L,sr,10,4.0,velocity,upper_ux,0.8335584998130798 +illusion_1.5L,sr,10,4.0,velocity,upper_uy,0.2813199758529663 +illusion_1.5L,sr,10,4.0,velocity,center_ux,0.9523593187332153 +illusion_1.5L,sr,10,4.0,velocity,center_uy,0.5549399852752686 +illusion_1.5L,sr,10,4.0,velocity,lower_ux,1.1066020727157593 +illusion_1.5L,sr,10,4.0,velocity,lower_uy,0.32392966747283936 +illusion_1.5L,sr,11,4.4,velocity,upper_ux,0.7703784704208374 +illusion_1.5L,sr,11,4.4,velocity,upper_uy,0.20036286115646362 +illusion_1.5L,sr,11,4.4,velocity,center_ux,0.9495928883552551 +illusion_1.5L,sr,11,4.4,velocity,center_uy,0.5552957653999329 +illusion_1.5L,sr,11,4.4,velocity,lower_ux,1.1831738948822021 +illusion_1.5L,sr,11,4.4,velocity,lower_uy,0.33925533294677734 +illusion_1.5L,sr,12,4.8,velocity,upper_ux,0.7264362573623657 +illusion_1.5L,sr,12,4.8,velocity,upper_uy,0.09051043540239334 +illusion_1.5L,sr,12,4.8,velocity,center_ux,0.9071969389915466 +illusion_1.5L,sr,12,4.8,velocity,center_uy,0.44992879033088684 +illusion_1.5L,sr,12,4.8,velocity,lower_ux,1.271756649017334 +illusion_1.5L,sr,12,4.8,velocity,lower_uy,0.3391042649745941 +illusion_1.5L,sr,13,5.2,velocity,upper_ux,0.7279651165008545 +illusion_1.5L,sr,13,5.2,velocity,upper_uy,-0.021424541249871254 +illusion_1.5L,sr,13,5.2,velocity,center_ux,0.8328580260276794 +illusion_1.5L,sr,13,5.2,velocity,center_uy,0.18218488991260529 +illusion_1.5L,sr,13,5.2,velocity,lower_ux,1.3647891283035278 +illusion_1.5L,sr,13,5.2,velocity,lower_uy,0.3006616532802582 +illusion_1.5L,sr,14,5.6,velocity,upper_ux,0.7718020677566528 +illusion_1.5L,sr,14,5.6,velocity,upper_uy,-0.10900064557790756 +illusion_1.5L,sr,14,5.6,velocity,center_ux,0.7739032506942749 +illusion_1.5L,sr,14,5.6,velocity,center_uy,-0.17968986928462982 +illusion_1.5L,sr,14,5.6,velocity,lower_ux,1.4031819105148315 +illusion_1.5L,sr,14,5.6,velocity,lower_uy,0.16369733214378357 +illusion_1.5L,sr,15,6.0,velocity,upper_ux,0.8269136548042297 +illusion_1.5L,sr,15,6.0,velocity,upper_uy,-0.18037135899066925 +illusion_1.5L,sr,15,6.0,velocity,center_ux,0.7758388519287109 +illusion_1.5L,sr,15,6.0,velocity,center_uy,-0.4484443962574005 +illusion_1.5L,sr,15,6.0,velocity,lower_ux,1.3005609512329102 +illusion_1.5L,sr,15,6.0,velocity,lower_uy,-0.08731760829687119 +illusion_1.5L,sr,16,6.4,velocity,upper_ux,0.8813607692718506 +illusion_1.5L,sr,16,6.4,velocity,upper_uy,-0.2406121790409088 +illusion_1.5L,sr,16,6.4,velocity,center_ux,0.8313890099525452 +illusion_1.5L,sr,16,6.4,velocity,center_uy,-0.49886512756347656 +illusion_1.5L,sr,16,6.4,velocity,lower_ux,1.130991816520691 +illusion_1.5L,sr,16,6.4,velocity,lower_uy,-0.2783063054084778 +illusion_1.5L,sr,17,6.8,velocity,upper_ux,0.9354658722877502 +illusion_1.5L,sr,17,6.8,velocity,upper_uy,-0.28888243436813354 +illusion_1.5L,sr,17,6.8,velocity,center_ux,0.8812068700790405 +illusion_1.5L,sr,17,6.8,velocity,center_uy,-0.4704035222530365 +illusion_1.5L,sr,17,6.8,velocity,lower_ux,1.0167300701141357 +illusion_1.5L,sr,17,6.8,velocity,lower_uy,-0.3160926401615143 +illusion_1.5L,sr,18,7.2,velocity,upper_ux,0.9892837405204773 +illusion_1.5L,sr,18,7.2,velocity,upper_uy,-0.32928216457366943 +illusion_1.5L,sr,18,7.2,velocity,center_ux,0.9037793874740601 +illusion_1.5L,sr,18,7.2,velocity,center_uy,-0.46342888474464417 +illusion_1.5L,sr,18,7.2,velocity,lower_ux,0.9562563896179199 +illusion_1.5L,sr,18,7.2,velocity,lower_uy,-0.28298261761665344 +illusion_1.5L,sr,19,7.6,velocity,upper_ux,1.0441018342971802 +illusion_1.5L,sr,19,7.6,velocity,upper_uy,-0.3653150200843811 +illusion_1.5L,sr,19,7.6,velocity,center_ux,0.905535876750946 +illusion_1.5L,sr,19,7.6,velocity,center_uy,-0.4776378273963928 +illusion_1.5L,sr,19,7.6,velocity,lower_ux,0.9101162552833557 +illusion_1.5L,sr,19,7.6,velocity,lower_uy,-0.2367207556962967 +illusion_1.5L,sr,20,8.0,velocity,upper_ux,1.1026898622512817 +illusion_1.5L,sr,20,8.0,velocity,upper_uy,-0.39855095744132996 +illusion_1.5L,sr,20,8.0,velocity,center_ux,0.8883200883865356 +illusion_1.5L,sr,20,8.0,velocity,center_uy,-0.5005708932876587 +illusion_1.5L,sr,20,8.0,velocity,lower_ux,0.8643667101860046 +illusion_1.5L,sr,20,8.0,velocity,lower_uy,-0.1830020397901535 +illusion_1.5L,sr,21,8.4,velocity,upper_ux,1.1687473058700562 +illusion_1.5L,sr,21,8.4,velocity,upper_uy,-0.42889222502708435 +illusion_1.5L,sr,21,8.4,velocity,center_ux,0.8471861481666565 +illusion_1.5L,sr,21,8.4,velocity,center_uy,-0.49730437994003296 +illusion_1.5L,sr,21,8.4,velocity,lower_ux,0.8237230181694031 +illusion_1.5L,sr,21,8.4,velocity,lower_uy,-0.11814282089471817 +illusion_1.5L,sr,22,8.8,velocity,upper_ux,1.2439942359924316 +illusion_1.5L,sr,22,8.8,velocity,upper_uy,-0.45217934250831604 +illusion_1.5L,sr,22,8.8,velocity,center_ux,0.7762258052825928 +illusion_1.5L,sr,22,8.8,velocity,center_uy,-0.41160067915916443 +illusion_1.5L,sr,22,8.8,velocity,lower_ux,0.7990583181381226 +illusion_1.5L,sr,22,8.8,velocity,lower_uy,-0.04310007020831108 +illusion_1.5L,sr,23,9.2,velocity,upper_ux,1.318302035331726 +illusion_1.5L,sr,23,9.2,velocity,upper_uy,-0.45079463720321655 +illusion_1.5L,sr,23,9.2,velocity,center_ux,0.681072473526001 +illusion_1.5L,sr,23,9.2,velocity,center_uy,-0.21135304868221283 +illusion_1.5L,sr,23,9.2,velocity,lower_ux,0.7949497699737549 +illusion_1.5L,sr,23,9.2,velocity,lower_uy,0.038141701370477676 +illusion_1.5L,sr,24,9.6,velocity,upper_ux,1.3512235879898071 +illusion_1.5L,sr,24,9.6,velocity,upper_uy,-0.37291038036346436 +illusion_1.5L,sr,24,9.6,velocity,center_ux,0.5886209607124329 +illusion_1.5L,sr,24,9.6,velocity,center_uy,0.07832936942577362 +illusion_1.5L,sr,24,9.6,velocity,lower_ux,0.8086141347885132 +illusion_1.5L,sr,24,9.6,velocity,lower_uy,0.12159810960292816 +illusion_1.5L,sr,25,10.0,velocity,upper_ux,1.2762264013290405 +illusion_1.5L,sr,25,10.0,velocity,upper_uy,-0.14236994087696075 +illusion_1.5L,sr,25,10.0,velocity,center_ux,0.5471891164779663 +illusion_1.5L,sr,25,10.0,velocity,center_uy,0.36701512336730957 +illusion_1.5L,sr,25,10.0,velocity,lower_ux,0.8373565673828125 +illusion_1.5L,sr,25,10.0,velocity,lower_uy,0.2010006308555603 +illusion_1.5L,sr,26,10.4,velocity,upper_ux,1.0975043773651123 +illusion_1.5L,sr,26,10.4,velocity,upper_uy,0.20587652921676636 +illusion_1.5L,sr,26,10.4,velocity,center_ux,0.5880630612373352 +illusion_1.5L,sr,26,10.4,velocity,center_uy,0.5437334775924683 +illusion_1.5L,sr,26,10.4,velocity,lower_ux,0.8790740370750427 +illusion_1.5L,sr,26,10.4,velocity,lower_uy,0.27144482731819153 +illusion_1.5L,sr,27,10.8,velocity,upper_ux,0.9140222072601318 +illusion_1.5L,sr,27,10.8,velocity,upper_uy,0.483768105506897 +illusion_1.5L,sr,27,10.8,velocity,center_ux,0.671539843082428 +illusion_1.5L,sr,27,10.8,velocity,center_uy,0.6158252954483032 +illusion_1.5L,sr,27,10.8,velocity,lower_ux,0.9309766292572021 +illusion_1.5L,sr,27,10.8,velocity,lower_uy,0.331817090511322 +illusion_1.5L,sr,28,11.2,velocity,upper_ux,0.79681795835495 +illusion_1.5L,sr,28,11.2,velocity,upper_uy,0.5773440003395081 +illusion_1.5L,sr,28,11.2,velocity,center_ux,0.7456420660018921 +illusion_1.5L,sr,28,11.2,velocity,center_uy,0.6640447974205017 +illusion_1.5L,sr,28,11.2,velocity,lower_ux,0.9905431866645813 +illusion_1.5L,sr,28,11.2,velocity,lower_uy,0.3825635612010956 +illusion_1.5L,sr,29,11.6,velocity,upper_ux,0.7312160730361938 +illusion_1.5L,sr,29,11.6,velocity,upper_uy,0.5541454553604126 +illusion_1.5L,sr,29,11.6,velocity,center_ux,0.8023839592933655 +illusion_1.5L,sr,29,11.6,velocity,center_uy,0.7083672285079956 +illusion_1.5L,sr,29,11.6,velocity,lower_ux,1.0567352771759033 +illusion_1.5L,sr,29,11.6,velocity,lower_uy,0.42520323395729065 +illusion_1.5L,sr,30,12.0,velocity,upper_ux,0.6727449297904968 +illusion_1.5L,sr,30,12.0,velocity,upper_uy,0.4930209815502167 +illusion_1.5L,sr,30,12.0,velocity,center_ux,0.8396375775337219 +illusion_1.5L,sr,30,12.0,velocity,center_uy,0.7294691205024719 +illusion_1.5L,sr,30,12.0,velocity,lower_ux,1.1294692754745483 +illusion_1.5L,sr,30,12.0,velocity,lower_uy,0.46084535121917725 +illusion_1.5L,sr,31,12.4,velocity,upper_ux,0.6117538213729858 +illusion_1.5L,sr,31,12.4,velocity,upper_uy,0.3929860293865204 +illusion_1.5L,sr,31,12.4,velocity,center_ux,0.8478491902351379 +illusion_1.5L,sr,31,12.4,velocity,center_uy,0.6842911243438721 +illusion_1.5L,sr,31,12.4,velocity,lower_ux,1.2101818323135376 +illusion_1.5L,sr,31,12.4,velocity,lower_uy,0.48958519101142883 +illusion_1.5L,sr,32,12.8,velocity,upper_ux,0.5617777109146118 +illusion_1.5L,sr,32,12.8,velocity,upper_uy,0.24002768099308014 +illusion_1.5L,sr,32,12.8,velocity,center_ux,0.8189107775688171 +illusion_1.5L,sr,32,12.8,velocity,center_uy,0.5400430560112 +illusion_1.5L,sr,32,12.8,velocity,lower_ux,1.2978423833847046 +illusion_1.5L,sr,32,12.8,velocity,lower_uy,0.5054323673248291 +illusion_1.5L,sr,33,13.2,velocity,upper_ux,0.5408347845077515 +illusion_1.5L,sr,33,13.2,velocity,upper_uy,0.05024932697415352 +illusion_1.5L,sr,33,13.2,velocity,center_ux,0.7601997256278992 +illusion_1.5L,sr,33,13.2,velocity,center_uy,0.2991520166397095 +illusion_1.5L,sr,33,13.2,velocity,lower_ux,1.37455153465271 +illusion_1.5L,sr,33,13.2,velocity,lower_uy,0.47962093353271484 +illusion_1.5L,sr,34,13.6,velocity,upper_ux,0.5671794414520264 +illusion_1.5L,sr,34,13.6,velocity,upper_uy,-0.12865377962589264 +illusion_1.5L,sr,34,13.6,velocity,center_ux,0.6973669528961182 +illusion_1.5L,sr,34,13.6,velocity,center_uy,-0.02492140792310238 +illusion_1.5L,sr,34,13.6,velocity,lower_ux,1.3892403841018677 +illusion_1.5L,sr,34,13.6,velocity,lower_uy,0.34083035588264465 +illusion_1.5L,sr,35,14.0,velocity,upper_ux,0.6470155119895935 +illusion_1.5L,sr,35,14.0,velocity,upper_uy,-0.24039193987846375 +illusion_1.5L,sr,35,14.0,velocity,center_ux,0.6619999408721924 +illusion_1.5L,sr,35,14.0,velocity,center_uy,-0.3759464621543884 +illusion_1.5L,sr,35,14.0,velocity,lower_ux,1.2919890880584717 +illusion_1.5L,sr,35,14.0,velocity,lower_uy,0.03266974538564682 +illusion_1.5L,sr,36,14.4,velocity,upper_ux,0.7448515892028809 +illusion_1.5L,sr,36,14.4,velocity,upper_uy,-0.30417007207870483 +illusion_1.5L,sr,36,14.4,velocity,center_ux,0.6746525764465332 +illusion_1.5L,sr,36,14.4,velocity,center_uy,-0.6407970190048218 +illusion_1.5L,sr,36,14.4,velocity,lower_ux,1.1299711465835571 +illusion_1.5L,sr,36,14.4,velocity,lower_uy,-0.32828137278556824 +illusion_1.5L,sr,37,14.8,velocity,upper_ux,0.8338373303413391 +illusion_1.5L,sr,37,14.8,velocity,upper_uy,-0.3583275079727173 +illusion_1.5L,sr,37,14.8,velocity,center_ux,0.7388841509819031 +illusion_1.5L,sr,37,14.8,velocity,center_uy,-0.7184622883796692 +illusion_1.5L,sr,37,14.8,velocity,lower_ux,0.9885087013244629 +illusion_1.5L,sr,37,14.8,velocity,lower_uy,-0.5503198504447937 +illusion_1.5L,sr,38,15.2,velocity,upper_ux,0.9184249639511108 +illusion_1.5L,sr,38,15.2,velocity,upper_uy,-0.4020264744758606 +illusion_1.5L,sr,38,15.2,velocity,center_ux,0.8094285726547241 +illusion_1.5L,sr,38,15.2,velocity,center_uy,-0.7270509600639343 +illusion_1.5L,sr,38,15.2,velocity,lower_ux,0.8965334296226501 +illusion_1.5L,sr,38,15.2,velocity,lower_uy,-0.589836061000824 +illusion_1.5L,sr,39,15.6,velocity,upper_ux,1.0019505023956299 +illusion_1.5L,sr,39,15.6,velocity,upper_uy,-0.4350551664829254 +illusion_1.5L,sr,39,15.6,velocity,center_ux,0.8655102252960205 +illusion_1.5L,sr,39,15.6,velocity,center_uy,-0.7489582896232605 +illusion_1.5L,sr,39,15.6,velocity,lower_ux,0.8296601176261902 +illusion_1.5L,sr,39,15.6,velocity,lower_uy,-0.5549352169036865 +illusion_1.5L,sr,40,16.0,velocity,upper_ux,1.0871161222457886 +illusion_1.5L,sr,40,16.0,velocity,upper_uy,-0.45940685272216797 +illusion_1.5L,sr,40,16.0,velocity,center_ux,0.9086238145828247 +illusion_1.5L,sr,40,16.0,velocity,center_uy,-0.7686097621917725 +illusion_1.5L,sr,40,16.0,velocity,lower_ux,0.7564823031425476 +illusion_1.5L,sr,40,16.0,velocity,lower_uy,-0.5043985843658447 +illusion_1.5L,sr,41,16.4,velocity,upper_ux,1.1780213117599487 +illusion_1.5L,sr,41,16.4,velocity,upper_uy,-0.4759325683116913 +illusion_1.5L,sr,41,16.4,velocity,center_ux,0.9294898509979248 +illusion_1.5L,sr,41,16.4,velocity,center_uy,-0.7361531257629395 +illusion_1.5L,sr,41,16.4,velocity,lower_ux,0.6783233880996704 +illusion_1.5L,sr,41,16.4,velocity,lower_uy,-0.4133051335811615 +illusion_1.5L,sr,42,16.8,velocity,upper_ux,1.2723898887634277 +illusion_1.5L,sr,42,16.8,velocity,upper_uy,-0.4788527190685272 +illusion_1.5L,sr,42,16.8,velocity,center_ux,0.9090936183929443 +illusion_1.5L,sr,42,16.8,velocity,center_uy,-0.599115788936615 +illusion_1.5L,sr,42,16.8,velocity,lower_ux,0.6101080179214478 +illusion_1.5L,sr,42,16.8,velocity,lower_uy,-0.25669994950294495 +illusion_1.5L,sr,43,17.2,velocity,upper_ux,1.3656812906265259 +illusion_1.5L,sr,43,17.2,velocity,upper_uy,-0.4493405520915985 +illusion_1.5L,sr,43,17.2,velocity,center_ux,0.8511373400688171 +illusion_1.5L,sr,43,17.2,velocity,center_uy,-0.3547179102897644 +illusion_1.5L,sr,43,17.2,velocity,lower_ux,0.575486958026886 +illusion_1.5L,sr,43,17.2,velocity,lower_uy,-0.05288221687078476 +illusion_1.5L,sr,44,17.6,velocity,upper_ux,1.4129114151000977 +illusion_1.5L,sr,44,17.6,velocity,upper_uy,-0.3285132944583893 +illusion_1.5L,sr,44,17.6,velocity,center_ux,0.7798345685005188 +illusion_1.5L,sr,44,17.6,velocity,center_uy,-0.005614869762212038 +illusion_1.5L,sr,44,17.6,velocity,lower_ux,0.5947721600532532 +illusion_1.5L,sr,44,17.6,velocity,lower_uy,0.14007708430290222 +illusion_1.5L,sr,45,18.0,velocity,upper_ux,1.3462791442871094 +illusion_1.5L,sr,45,18.0,velocity,upper_uy,-0.05640615522861481 +illusion_1.5L,sr,45,18.0,velocity,center_ux,0.7365497350692749 +illusion_1.5L,sr,45,18.0,velocity,center_uy,0.37643569707870483 +illusion_1.5L,sr,45,18.0,velocity,lower_ux,0.6734141707420349 +illusion_1.5L,sr,45,18.0,velocity,lower_uy,0.25720375776290894 +illusion_1.5L,sr,46,18.4,velocity,upper_ux,1.181152105331421 +illusion_1.5L,sr,46,18.4,velocity,upper_uy,0.26892024278640747 +illusion_1.5L,sr,46,18.4,velocity,center_ux,0.7476335167884827 +illusion_1.5L,sr,46,18.4,velocity,center_uy,0.6296612620353699 +illusion_1.5L,sr,46,18.4,velocity,lower_ux,0.7721965312957764 +illusion_1.5L,sr,46,18.4,velocity,lower_uy,0.3176725208759308 +illusion_1.5L,sr,47,18.8,velocity,upper_ux,1.0249786376953125 +illusion_1.5L,sr,47,18.8,velocity,upper_uy,0.44908249378204346 +illusion_1.5L,sr,47,18.8,velocity,center_ux,0.8039127588272095 +illusion_1.5L,sr,47,18.8,velocity,center_uy,0.6784200072288513 +illusion_1.5L,sr,47,18.8,velocity,lower_ux,0.8619909882545471 +illusion_1.5L,sr,47,18.8,velocity,lower_uy,0.3653169274330139 +illusion_1.5L,sr,48,19.2,velocity,upper_ux,0.9234737157821655 +illusion_1.5L,sr,48,19.2,velocity,upper_uy,0.4701991677284241 +illusion_1.5L,sr,48,19.2,velocity,center_ux,0.8577547669410706 +illusion_1.5L,sr,48,19.2,velocity,center_uy,0.6797913908958435 +illusion_1.5L,sr,48,19.2,velocity,lower_ux,0.9459220767021179 +illusion_1.5L,sr,48,19.2,velocity,lower_uy,0.4024892747402191 +illusion_1.5L,sr,49,19.6,velocity,upper_ux,0.8478500247001648 +illusion_1.5L,sr,49,19.6,velocity,upper_uy,0.43673914670944214 +illusion_1.5L,sr,49,19.6,velocity,center_ux,0.8971854448318481 +illusion_1.5L,sr,49,19.6,velocity,center_uy,0.7004966735839844 +illusion_1.5L,sr,49,19.6,velocity,lower_ux,1.0278675556182861 +illusion_1.5L,sr,49,19.6,velocity,lower_uy,0.42989790439605713 +illusion_1.5L,sr,50,20.0,velocity,upper_ux,0.7689919471740723 +illusion_1.5L,sr,50,20.0,velocity,upper_uy,0.38415512442588806 +illusion_1.5L,sr,50,20.0,velocity,center_ux,0.9243795871734619 +illusion_1.5L,sr,50,20.0,velocity,center_uy,0.7176961302757263 +illusion_1.5L,sr,50,20.0,velocity,lower_ux,1.1112481355667114 +illusion_1.5L,sr,50,20.0,velocity,lower_uy,0.44900885224342346 +illusion_1.5L,sr,51,20.4,velocity,upper_ux,0.6882617473602295 +illusion_1.5L,sr,51,20.4,velocity,upper_uy,0.291504830121994 +illusion_1.5L,sr,51,20.4,velocity,center_ux,0.9282917976379395 +illusion_1.5L,sr,51,20.4,velocity,center_uy,0.6730544567108154 +illusion_1.5L,sr,51,20.4,velocity,lower_ux,1.19929039478302 +illusion_1.5L,sr,51,20.4,velocity,lower_uy,0.45934197306632996 +illusion_1.5L,sr,52,20.8,velocity,upper_ux,0.6256632804870605 +illusion_1.5L,sr,52,20.8,velocity,upper_uy,0.14753898978233337 +illusion_1.5L,sr,52,20.8,velocity,center_ux,0.8942175507545471 +illusion_1.5L,sr,52,20.8,velocity,center_uy,0.5195924639701843 +illusion_1.5L,sr,52,20.8,velocity,lower_ux,1.2930595874786377 +illusion_1.5L,sr,52,20.8,velocity,lower_uy,0.4556137025356293 +illusion_1.5L,sr,53,21.2,velocity,upper_ux,0.6078895330429077 +illusion_1.5L,sr,53,21.2,velocity,upper_uy,-0.019627271220088005 +illusion_1.5L,sr,53,21.2,velocity,center_ux,0.8234519958496094 +illusion_1.5L,sr,53,21.2,velocity,center_uy,0.2596665322780609 +illusion_1.5L,sr,53,21.2,velocity,lower_ux,1.3813998699188232 +illusion_1.5L,sr,53,21.2,velocity,lower_uy,0.41710638999938965 +illusion_1.5L,sr,54,21.6,velocity,upper_ux,0.6522086262702942 +illusion_1.5L,sr,54,21.6,velocity,upper_uy,-0.15431639552116394 +illusion_1.5L,sr,54,21.6,velocity,center_ux,0.7424533367156982 +illusion_1.5L,sr,54,21.6,velocity,center_uy,-0.09590020775794983 +illusion_1.5L,sr,54,21.6,velocity,lower_ux,1.4210373163223267 +illusion_1.5L,sr,54,21.6,velocity,lower_uy,0.29085230827331543 +illusion_1.5L,sr,55,22.0,velocity,upper_ux,0.7337102293968201 +illusion_1.5L,sr,55,22.0,velocity,upper_uy,-0.23777306079864502 +illusion_1.5L,sr,55,22.0,velocity,center_ux,0.6989446878433228 +illusion_1.5L,sr,55,22.0,velocity,center_uy,-0.4489401578903198 +illusion_1.5L,sr,55,22.0,velocity,lower_ux,1.344825267791748 +illusion_1.5L,sr,55,22.0,velocity,lower_uy,0.029429493471980095 +illusion_1.5L,sr,56,22.4,velocity,upper_ux,0.8160755038261414 +illusion_1.5L,sr,56,22.4,velocity,upper_uy,-0.302875280380249 +illusion_1.5L,sr,56,22.4,velocity,center_ux,0.7251720428466797 +illusion_1.5L,sr,56,22.4,velocity,center_uy,-0.6347795128822327 +illusion_1.5L,sr,56,22.4,velocity,lower_ux,1.165756344795227 +illusion_1.5L,sr,56,22.4,velocity,lower_uy,-0.2756488621234894 +illusion_1.5L,sr,57,22.8,velocity,upper_ux,0.894929826259613 +illusion_1.5L,sr,57,22.8,velocity,upper_uy,-0.3553392291069031 +illusion_1.5L,sr,57,22.8,velocity,center_ux,0.791837215423584 +illusion_1.5L,sr,57,22.8,velocity,center_uy,-0.6547399759292603 +illusion_1.5L,sr,57,22.8,velocity,lower_ux,0.9993757009506226 +illusion_1.5L,sr,57,22.8,velocity,lower_uy,-0.43758678436279297 +illusion_1.5L,sr,58,23.2,velocity,upper_ux,0.9726690649986267 +illusion_1.5L,sr,58,23.2,velocity,upper_uy,-0.3945420980453491 +illusion_1.5L,sr,58,23.2,velocity,center_ux,0.8455603122711182 +illusion_1.5L,sr,58,23.2,velocity,center_uy,-0.6643279790878296 +illusion_1.5L,sr,58,23.2,velocity,lower_ux,0.8969733715057373 +illusion_1.5L,sr,58,23.2,velocity,lower_uy,-0.44767531752586365 +illusion_1.5L,sr,59,23.6,velocity,upper_ux,1.0506566762924194 +illusion_1.5L,sr,59,23.6,velocity,upper_uy,-0.4228741526603699 +illusion_1.5L,sr,59,23.6,velocity,center_ux,0.8829659819602966 +illusion_1.5L,sr,59,23.6,velocity,center_uy,-0.690307080745697 +illusion_1.5L,sr,59,23.6,velocity,lower_ux,0.8233925104141235 +illusion_1.5L,sr,59,23.6,velocity,lower_uy,-0.4064485430717468 +illusion_1.5L,sr,60,24.0,velocity,upper_ux,1.1318423748016357 +illusion_1.5L,sr,60,24.0,velocity,upper_uy,-0.44165968894958496 +illusion_1.5L,sr,60,24.0,velocity,center_ux,0.9056944847106934 +illusion_1.5L,sr,60,24.0,velocity,center_uy,-0.699607253074646 +illusion_1.5L,sr,60,24.0,velocity,lower_ux,0.7471778988838196 +illusion_1.5L,sr,60,24.0,velocity,lower_uy,-0.3436511754989624 +illusion_1.5L,sr,61,24.4,velocity,upper_ux,1.2182258367538452 +illusion_1.5L,sr,61,24.4,velocity,upper_uy,-0.44956889748573303 +illusion_1.5L,sr,61,24.4,velocity,center_ux,0.902565598487854 +illusion_1.5L,sr,61,24.4,velocity,center_uy,-0.6311452984809875 +illusion_1.5L,sr,61,24.4,velocity,lower_ux,0.6730406284332275 +illusion_1.5L,sr,61,24.4,velocity,lower_uy,-0.24219049513339996 +illusion_1.5L,sr,62,24.8,velocity,upper_ux,1.310308814048767 +illusion_1.5L,sr,62,24.8,velocity,upper_uy,-0.44084709882736206 +illusion_1.5L,sr,62,24.8,velocity,center_ux,0.8637298345565796 +illusion_1.5L,sr,62,24.8,velocity,center_uy,-0.456961989402771 +illusion_1.5L,sr,62,24.8,velocity,lower_ux,0.6243902444839478 +illusion_1.5L,sr,62,24.8,velocity,lower_uy,-0.1001807227730751 +illusion_1.5L,sr,63,25.2,velocity,upper_ux,1.3894177675247192 +illusion_1.5L,sr,63,25.2,velocity,upper_uy,-0.3929879367351532 +illusion_1.5L,sr,63,25.2,velocity,center_ux,0.7887661457061768 +illusion_1.5L,sr,63,25.2,velocity,center_uy,-0.18574878573417664 +illusion_1.5L,sr,63,25.2,velocity,lower_ux,0.6249366998672485 +illusion_1.5L,sr,63,25.2,velocity,lower_uy,0.048592016100883484 +illusion_1.5L,sr,64,25.6,velocity,upper_ux,1.418089747428894 +illusion_1.5L,sr,64,25.6,velocity,upper_uy,-0.2627870738506317 +illusion_1.5L,sr,64,25.6,velocity,center_ux,0.7082282304763794 +illusion_1.5L,sr,64,25.6,velocity,center_uy,0.16438128054141998 +illusion_1.5L,sr,64,25.6,velocity,lower_ux,0.6821014881134033 +illusion_1.5L,sr,64,25.6,velocity,lower_uy,0.15928645431995392 +illusion_1.5L,sr,65,26.0,velocity,upper_ux,1.3342803716659546 +illusion_1.5L,sr,65,26.0,velocity,upper_uy,-0.012566260993480682 +illusion_1.5L,sr,65,26.0,velocity,center_ux,0.6701627969741821 +illusion_1.5L,sr,65,26.0,velocity,center_uy,0.48972010612487793 +illusion_1.5L,sr,65,26.0,velocity,lower_ux,0.759559154510498 +illusion_1.5L,sr,65,26.0,velocity,lower_uy,0.23807483911514282 +illusion_1.5L,sr,66,26.4,velocity,upper_ux,1.1481375694274902 +illusion_1.5L,sr,66,26.4,velocity,upper_uy,0.2743864953517914 +illusion_1.5L,sr,66,26.4,velocity,center_ux,0.7076716423034668 +illusion_1.5L,sr,66,26.4,velocity,center_uy,0.6337968707084656 +illusion_1.5L,sr,66,26.4,velocity,lower_ux,0.8348933458328247 +illusion_1.5L,sr,66,26.4,velocity,lower_uy,0.304922491312027 +illusion_1.5L,sr,67,26.8,velocity,upper_ux,0.9735544323921204 +illusion_1.5L,sr,67,26.8,velocity,upper_uy,0.428157776594162 +illusion_1.5L,sr,67,26.8,velocity,center_ux,0.7771732807159424 +illusion_1.5L,sr,67,26.8,velocity,center_uy,0.6464536190032959 +illusion_1.5L,sr,67,26.8,velocity,lower_ux,0.9100261926651001 +illusion_1.5L,sr,67,26.8,velocity,lower_uy,0.3576348125934601 +illusion_1.5L,sr,68,27.2,velocity,upper_ux,0.8693546056747437 +illusion_1.5L,sr,68,27.2,velocity,upper_uy,0.43565842509269714 +illusion_1.5L,sr,68,27.2,velocity,center_ux,0.8302383422851562 +illusion_1.5L,sr,68,27.2,velocity,center_uy,0.6637862920761108 +illusion_1.5L,sr,68,27.2,velocity,lower_ux,0.9872247576713562 +illusion_1.5L,sr,68,27.2,velocity,lower_uy,0.39759695529937744 +illusion_1.5L,sr,69,27.6,velocity,upper_ux,0.7961874604225159 +illusion_1.5L,sr,69,27.6,velocity,upper_uy,0.38803231716156006 +illusion_1.5L,sr,69,27.6,velocity,center_ux,0.8644126057624817 +illusion_1.5L,sr,69,27.6,velocity,center_uy,0.6903995275497437 +illusion_1.5L,sr,69,27.6,velocity,lower_ux,1.0636253356933594 +illusion_1.5L,sr,69,27.6,velocity,lower_uy,0.4255647659301758 +illusion_1.5L,sr,70,28.0,velocity,upper_ux,0.7240556478500366 +illusion_1.5L,sr,70,28.0,velocity,upper_uy,0.3172481060028076 +illusion_1.5L,sr,70,28.0,velocity,center_ux,0.8828503489494324 +illusion_1.5L,sr,70,28.0,velocity,center_uy,0.688852846622467 +illusion_1.5L,sr,70,28.0,velocity,lower_ux,1.1448676586151123 +illusion_1.5L,sr,70,28.0,velocity,lower_uy,0.44360020756721497 +illusion_1.5L,sr,71,28.4,velocity,upper_ux,0.6569810509681702 +illusion_1.5L,sr,71,28.4,velocity,upper_uy,0.21074990928173065 +illusion_1.5L,sr,71,28.4,velocity,center_ux,0.8743302822113037 +illusion_1.5L,sr,71,28.4,velocity,center_uy,0.6000668406486511 +illusion_1.5L,sr,71,28.4,velocity,lower_ux,1.2304257154464722 +illusion_1.5L,sr,71,28.4,velocity,lower_uy,0.44917383790016174 +illusion_1.5L,sr,72,28.8,velocity,upper_ux,0.6186754107475281 +illusion_1.5L,sr,72,28.8,velocity,upper_uy,0.07201141119003296 +illusion_1.5L,sr,72,28.8,velocity,center_ux,0.8313961625099182 +illusion_1.5L,sr,72,28.8,velocity,center_uy,0.41058269143104553 +illusion_1.5L,sr,72,28.8,velocity,lower_ux,1.3180803060531616 +illusion_1.5L,sr,72,28.8,velocity,lower_uy,0.4350389838218689 +illusion_1.5L,sr,73,29.2,velocity,upper_ux,0.633568286895752 +illusion_1.5L,sr,73,29.2,velocity,upper_uy,-0.06258092075586319 +illusion_1.5L,sr,73,29.2,velocity,center_ux,0.7571925520896912 +illusion_1.5L,sr,73,29.2,velocity,center_uy,0.1360922008752823 +illusion_1.5L,sr,73,29.2,velocity,lower_ux,1.3913848400115967 +illusion_1.5L,sr,73,29.2,velocity,lower_uy,0.380630224943161 +illusion_1.5L,sr,74,29.6,velocity,upper_ux,0.6962478160858154 +illusion_1.5L,sr,74,29.6,velocity,upper_uy,-0.16078732907772064 +illusion_1.5L,sr,74,29.6,velocity,center_ux,0.6782771944999695 +illusion_1.5L,sr,74,29.6,velocity,center_uy,-0.20446649193763733 +illusion_1.5L,sr,74,29.6,velocity,lower_ux,1.410865306854248 +illusion_1.5L,sr,74,29.6,velocity,lower_uy,0.24880166351795197 +illusion_1.5L,sr,75,30.0,velocity,upper_ux,0.7700900435447693 +illusion_1.5L,sr,75,30.0,velocity,upper_uy,-0.23869875073432922 +illusion_1.5L,sr,75,30.0,velocity,center_ux,0.64423006772995 +illusion_1.5L,sr,75,30.0,velocity,center_uy,-0.5094636678695679 +illusion_1.5L,sr,75,30.0,velocity,lower_ux,1.3247170448303223 +illusion_1.5L,sr,75,30.0,velocity,lower_uy,0.00926767848432064 +illusion_1.5L,sr,76,30.4,velocity,upper_ux,0.8415780663490295 +illusion_1.5L,sr,76,30.4,velocity,upper_uy,-0.3062845766544342 +illusion_1.5L,sr,76,30.4,velocity,center_ux,0.6883814334869385 +illusion_1.5L,sr,76,30.4,velocity,center_uy,-0.633232593536377 +illusion_1.5L,sr,76,30.4,velocity,lower_ux,1.1365251541137695 +illusion_1.5L,sr,76,30.4,velocity,lower_uy,-0.26880910992622375 +illusion_1.5L,sr,77,30.8,velocity,upper_ux,0.9143660068511963 +illusion_1.5L,sr,77,30.8,velocity,upper_uy,-0.3592650592327118 +illusion_1.5L,sr,77,30.8,velocity,center_ux,0.7601690888404846 +illusion_1.5L,sr,77,30.8,velocity,center_uy,-0.6448708176612854 +illusion_1.5L,sr,77,30.8,velocity,lower_ux,0.9539121985435486 +illusion_1.5L,sr,77,30.8,velocity,lower_uy,-0.426822692155838 +illusion_1.5L,sr,78,31.2,velocity,upper_ux,0.9891930222511292 +illusion_1.5L,sr,78,31.2,velocity,upper_uy,-0.3990429937839508 +illusion_1.5L,sr,78,31.2,velocity,center_ux,0.8125693798065186 +illusion_1.5L,sr,78,31.2,velocity,center_uy,-0.6653292775154114 +illusion_1.5L,sr,78,31.2,velocity,lower_ux,0.8442227840423584 +illusion_1.5L,sr,78,31.2,velocity,lower_uy,-0.4364490807056427 +illusion_1.5L,sr,79,31.6,velocity,upper_ux,1.0666606426239014 +illusion_1.5L,sr,79,31.6,velocity,upper_uy,-0.4274791479110718 +illusion_1.5L,sr,79,31.6,velocity,center_ux,0.8480839729309082 +illusion_1.5L,sr,79,31.6,velocity,center_uy,-0.6931476593017578 +illusion_1.5L,sr,79,31.6,velocity,lower_ux,0.7743883728981018 +illusion_1.5L,sr,79,31.6,velocity,lower_uy,-0.38566523790359497 +illusion_1.5L,sr,80,32.0,velocity,upper_ux,1.1477351188659668 +illusion_1.5L,sr,80,32.0,velocity,upper_uy,-0.444736123085022 +illusion_1.5L,sr,80,32.0,velocity,center_ux,0.8662633299827576 +illusion_1.5L,sr,80,32.0,velocity,center_uy,-0.6862456798553467 +illusion_1.5L,sr,80,32.0,velocity,lower_ux,0.7067534923553467 +illusion_1.5L,sr,80,32.0,velocity,lower_uy,-0.310507595539093 +illusion_1.5L,sr,81,32.4,velocity,upper_ux,1.2327167987823486 +illusion_1.5L,sr,81,32.4,velocity,upper_uy,-0.44858020544052124 +illusion_1.5L,sr,81,32.4,velocity,center_ux,0.8580742478370667 +illusion_1.5L,sr,81,32.4,velocity,center_uy,-0.5893151760101318 +illusion_1.5L,sr,81,32.4,velocity,lower_ux,0.6442285180091858 +illusion_1.5L,sr,81,32.4,velocity,lower_uy,-0.2018665075302124 +illusion_1.5L,sr,82,32.8,velocity,upper_ux,1.3182458877563477 +illusion_1.5L,sr,82,32.8,velocity,upper_uy,-0.4316014349460602 +illusion_1.5L,sr,82,32.8,velocity,center_ux,0.8168236613273621 +illusion_1.5L,sr,82,32.8,velocity,center_uy,-0.3953138291835785 +illusion_1.5L,sr,82,32.8,velocity,lower_ux,0.6104624271392822 +illusion_1.5L,sr,82,32.8,velocity,lower_uy,-0.06436047703027725 +illusion_1.5L,sr,83,33.2,velocity,upper_ux,1.3875700235366821 +illusion_1.5L,sr,83,33.2,velocity,upper_uy,-0.37556469440460205 +illusion_1.5L,sr,83,33.2,velocity,center_ux,0.7450646758079529 +illusion_1.5L,sr,83,33.2,velocity,center_uy,-0.12530966103076935 +illusion_1.5L,sr,83,33.2,velocity,lower_ux,0.6298681497573853 +illusion_1.5L,sr,83,33.2,velocity,lower_uy,0.06502000987529755 +illusion_1.5L,sr,84,33.6,velocity,upper_ux,1.4065555334091187 +illusion_1.5L,sr,84,33.6,velocity,upper_uy,-0.25016695261001587 +illusion_1.5L,sr,84,33.6,velocity,center_ux,0.6656527519226074 +illusion_1.5L,sr,84,33.6,velocity,center_uy,0.2067853808403015 +illusion_1.5L,sr,84,33.6,velocity,lower_ux,0.6945162415504456 +illusion_1.5L,sr,84,33.6,velocity,lower_uy,0.15947282314300537 +illusion_1.5L,sr,85,34.0,velocity,upper_ux,1.330697774887085 +illusion_1.5L,sr,85,34.0,velocity,upper_uy,-0.03066488541662693 +illusion_1.5L,sr,85,34.0,velocity,center_ux,0.6282986998558044 +illusion_1.5L,sr,85,34.0,velocity,center_uy,0.5063116550445557 +illusion_1.5L,sr,85,34.0,velocity,lower_ux,0.7675462961196899 +illusion_1.5L,sr,85,34.0,velocity,lower_uy,0.23693570494651794 +illusion_1.5L,sr,86,34.4,velocity,upper_ux,1.1497352123260498 +illusion_1.5L,sr,86,34.4,velocity,upper_uy,0.23736019432544708 +illusion_1.5L,sr,86,34.4,velocity,center_ux,0.6705261468887329 +illusion_1.5L,sr,86,34.4,velocity,center_uy,0.6311146020889282 +illusion_1.5L,sr,86,34.4,velocity,lower_ux,0.8378742933273315 +illusion_1.5L,sr,86,34.4,velocity,lower_uy,0.30538833141326904 +illusion_1.5L,sr,87,34.8,velocity,upper_ux,0.9558057188987732 +illusion_1.5L,sr,87,34.8,velocity,upper_uy,0.4103945791721344 +illusion_1.5L,sr,87,34.8,velocity,center_ux,0.743136465549469 +illusion_1.5L,sr,87,34.8,velocity,center_uy,0.6429431438446045 +illusion_1.5L,sr,87,34.8,velocity,lower_ux,0.9094865322113037 +illusion_1.5L,sr,87,34.8,velocity,lower_uy,0.35928770899772644 +illusion_1.5L,sr,88,35.2,velocity,upper_ux,0.8333714008331299 +illusion_1.5L,sr,88,35.2,velocity,upper_uy,0.43369728326797485 +illusion_1.5L,sr,88,35.2,velocity,center_ux,0.7958400845527649 +illusion_1.5L,sr,88,35.2,velocity,center_uy,0.6634058356285095 +illusion_1.5L,sr,88,35.2,velocity,lower_ux,0.9834717512130737 +illusion_1.5L,sr,88,35.2,velocity,lower_uy,0.39997756481170654 +illusion_1.5L,sr,89,35.6,velocity,upper_ux,0.7623569369316101 +illusion_1.5L,sr,89,35.6,velocity,upper_uy,0.38411810994148254 +illusion_1.5L,sr,89,35.6,velocity,center_ux,0.8309159278869629 +illusion_1.5L,sr,89,35.6,velocity,center_uy,0.6915625929832458 +illusion_1.5L,sr,89,35.6,velocity,lower_ux,1.0604283809661865 +illusion_1.5L,sr,89,35.6,velocity,lower_uy,0.4291006028652191 +illusion_1.5L,sr,90,36.0,velocity,upper_ux,0.6988076567649841 +illusion_1.5L,sr,90,36.0,velocity,upper_uy,0.308493435382843 +illusion_1.5L,sr,90,36.0,velocity,center_ux,0.8492280840873718 +illusion_1.5L,sr,90,36.0,velocity,center_uy,0.6869238018989563 +illusion_1.5L,sr,90,36.0,velocity,lower_ux,1.1414510011672974 +illusion_1.5L,sr,90,36.0,velocity,lower_uy,0.44680866599082947 +illusion_1.5L,sr,91,36.4,velocity,upper_ux,0.6396377682685852 +illusion_1.5L,sr,91,36.4,velocity,upper_uy,0.2028004676103592 +illusion_1.5L,sr,91,36.4,velocity,center_ux,0.843019425868988 +illusion_1.5L,sr,91,36.4,velocity,center_uy,0.5944617390632629 +illusion_1.5L,sr,91,36.4,velocity,lower_ux,1.2261011600494385 +illusion_1.5L,sr,91,36.4,velocity,lower_uy,0.4507902264595032 +illusion_1.5L,sr,92,36.8,velocity,upper_ux,0.6069025993347168 +illusion_1.5L,sr,92,36.8,velocity,upper_uy,0.07073245942592621 +illusion_1.5L,sr,92,36.8,velocity,center_ux,0.8061739206314087 +illusion_1.5L,sr,92,36.8,velocity,center_uy,0.4062093496322632 +illusion_1.5L,sr,92,36.8,velocity,lower_ux,1.3105412721633911 +illusion_1.5L,sr,92,36.8,velocity,lower_uy,0.4342414438724518 +illusion_1.5L,sr,93,37.2,velocity,upper_ux,0.6249103546142578 +illusion_1.5L,sr,93,37.2,velocity,upper_uy,-0.054997850209474564 +illusion_1.5L,sr,93,37.2,velocity,center_ux,0.7384611368179321 +illusion_1.5L,sr,93,37.2,velocity,center_uy,0.14582444727420807 +illusion_1.5L,sr,93,37.2,velocity,lower_ux,1.3795169591903687 +illusion_1.5L,sr,93,37.2,velocity,lower_uy,0.3812209963798523 +illusion_1.5L,sr,94,37.6,velocity,upper_ux,0.6877961158752441 +illusion_1.5L,sr,94,37.6,velocity,upper_uy,-0.14813776314258575 +illusion_1.5L,sr,94,37.6,velocity,center_ux,0.657866895198822 +illusion_1.5L,sr,94,37.6,velocity,center_uy,-0.1751985102891922 +illusion_1.5L,sr,94,37.6,velocity,lower_ux,1.403319239616394 +illusion_1.5L,sr,94,37.6,velocity,lower_uy,0.26700359582901 +illusion_1.5L,sr,95,38.0,velocity,upper_ux,0.7594396471977234 +illusion_1.5L,sr,95,38.0,velocity,upper_uy,-0.2260964959859848 +illusion_1.5L,sr,95,38.0,velocity,center_ux,0.6114671230316162 +illusion_1.5L,sr,95,38.0,velocity,center_uy,-0.48035311698913574 +illusion_1.5L,sr,95,38.0,velocity,lower_ux,1.344620704650879 +illusion_1.5L,sr,95,38.0,velocity,lower_uy,0.06970325857400894 +illusion_1.5L,sr,96,38.4,velocity,upper_ux,0.8280868530273438 +illusion_1.5L,sr,96,38.4,velocity,upper_uy,-0.29670536518096924 +illusion_1.5L,sr,96,38.4,velocity,center_ux,0.6452490091323853 +illusion_1.5L,sr,96,38.4,velocity,center_uy,-0.625281035900116 +illusion_1.5L,sr,96,38.4,velocity,lower_ux,1.1808403730392456 +illusion_1.5L,sr,96,38.4,velocity,lower_uy,-0.18777552247047424 +illusion_1.5L,sr,97,38.8,velocity,upper_ux,0.8984296917915344 +illusion_1.5L,sr,97,38.8,velocity,upper_uy,-0.35320213437080383 +illusion_1.5L,sr,97,38.8,velocity,center_ux,0.7204276323318481 +illusion_1.5L,sr,97,38.8,velocity,center_uy,-0.6410053372383118 +illusion_1.5L,sr,97,38.8,velocity,lower_ux,0.9771516919136047 +illusion_1.5L,sr,97,38.8,velocity,lower_uy,-0.38545650243759155 +illusion_1.5L,sr,98,39.2,velocity,upper_ux,0.9712828993797302 +illusion_1.5L,sr,98,39.2,velocity,upper_uy,-0.3961576223373413 +illusion_1.5L,sr,98,39.2,velocity,center_ux,0.7767887115478516 +illusion_1.5L,sr,98,39.2,velocity,center_uy,-0.659481942653656 +illusion_1.5L,sr,98,39.2,velocity,lower_ux,0.834565281867981 +illusion_1.5L,sr,98,39.2,velocity,lower_uy,-0.4352562427520752 +illusion_1.5L,sr,99,39.6,velocity,upper_ux,1.0483829975128174 +illusion_1.5L,sr,99,39.6,velocity,upper_uy,-0.42776623368263245 +illusion_1.5L,sr,99,39.6,velocity,center_ux,0.8146572113037109 +illusion_1.5L,sr,99,39.6,velocity,center_uy,-0.6894463300704956 +illusion_1.5L,sr,99,39.6,velocity,lower_ux,0.758216142654419 +illusion_1.5L,sr,99,39.6,velocity,lower_uy,-0.3929561674594879 +illusion_1.5L,sr,100,40.0,velocity,upper_ux,1.1270594596862793 +illusion_1.5L,sr,100,40.0,velocity,upper_uy,-0.4467082917690277 +illusion_1.5L,sr,100,40.0,velocity,center_ux,0.8342529535293579 +illusion_1.5L,sr,100,40.0,velocity,center_uy,-0.6919401288032532 +illusion_1.5L,sr,100,40.0,velocity,lower_ux,0.6966325640678406 +illusion_1.5L,sr,100,40.0,velocity,lower_uy,-0.3186807334423065 +illusion_1.5L,sr,101,40.4,velocity,upper_ux,1.2110862731933594 +illusion_1.5L,sr,101,40.4,velocity,upper_uy,-0.452540785074234 +illusion_1.5L,sr,101,40.4,velocity,center_ux,0.8328002095222473 +illusion_1.5L,sr,101,40.4,velocity,center_uy,-0.614158034324646 +illusion_1.5L,sr,101,40.4,velocity,lower_ux,0.6393129229545593 +illusion_1.5L,sr,101,40.4,velocity,lower_uy,-0.21772462129592896 +illusion_1.5L,sr,102,40.8,velocity,upper_ux,1.2952618598937988 +illusion_1.5L,sr,102,40.8,velocity,upper_uy,-0.43891671299934387 +illusion_1.5L,sr,102,40.8,velocity,center_ux,0.8031248450279236 +illusion_1.5L,sr,102,40.8,velocity,center_uy,-0.43898311257362366 +illusion_1.5L,sr,102,40.8,velocity,lower_ux,0.603712260723114 +illusion_1.5L,sr,102,40.8,velocity,lower_uy,-0.09057614952325821 +illusion_1.5L,sr,103,41.2,velocity,upper_ux,1.3670200109481812 +illusion_1.5L,sr,103,41.2,velocity,upper_uy,-0.39252281188964844 +illusion_1.5L,sr,103,41.2,velocity,center_ux,0.7426156401634216 +illusion_1.5L,sr,103,41.2,velocity,center_uy,-0.19205445051193237 +illusion_1.5L,sr,103,41.2,velocity,lower_ux,0.6152211427688599 +illusion_1.5L,sr,103,41.2,velocity,lower_uy,0.0355837382376194 +illusion_1.5L,sr,104,41.6,velocity,upper_ux,1.3999459743499756 +illusion_1.5L,sr,104,41.6,velocity,upper_uy,-0.2931646406650543 +illusion_1.5L,sr,104,41.6,velocity,center_ux,0.6622783541679382 +illusion_1.5L,sr,104,41.6,velocity,center_uy,0.11468247324228287 +illusion_1.5L,sr,104,41.6,velocity,lower_ux,0.6739063858985901 +illusion_1.5L,sr,104,41.6,velocity,lower_uy,0.13078215718269348 +illusion_1.5L,sr,105,42.0,velocity,upper_ux,1.3633265495300293 +illusion_1.5L,sr,105,42.0,velocity,upper_uy,-0.12231176346540451 +illusion_1.5L,sr,105,42.0,velocity,center_ux,0.6031242609024048 +illusion_1.5L,sr,105,42.0,velocity,center_uy,0.42793890833854675 +illusion_1.5L,sr,105,42.0,velocity,lower_ux,0.7449419498443604 +illusion_1.5L,sr,105,42.0,velocity,lower_uy,0.208816260099411 +illusion_1.5L,sr,106,42.4,velocity,upper_ux,1.2283930778503418 +illusion_1.5L,sr,106,42.4,velocity,upper_uy,0.11542143672704697 +illusion_1.5L,sr,106,42.4,velocity,center_ux,0.6188355088233948 +illusion_1.5L,sr,106,42.4,velocity,center_uy,0.6096483469009399 +illusion_1.5L,sr,106,42.4,velocity,lower_ux,0.8124253153800964 +illusion_1.5L,sr,106,42.4,velocity,lower_uy,0.28187698125839233 +illusion_1.5L,sr,107,42.8,velocity,upper_ux,1.0242940187454224 +illusion_1.5L,sr,107,42.8,velocity,upper_uy,0.33537837862968445 +illusion_1.5L,sr,107,42.8,velocity,center_ux,0.693176805973053 +illusion_1.5L,sr,107,42.8,velocity,center_uy,0.6374321579933167 +illusion_1.5L,sr,107,42.8,velocity,lower_ux,0.8815062642097473 +illusion_1.5L,sr,107,42.8,velocity,lower_uy,0.34204021096229553 +illusion_1.5L,sr,108,43.2,velocity,upper_ux,0.8545626997947693 +illusion_1.5L,sr,108,43.2,velocity,upper_uy,0.42533838748931885 +illusion_1.5L,sr,108,43.2,velocity,center_ux,0.7551527619361877 +illusion_1.5L,sr,108,43.2,velocity,center_uy,0.6512768268585205 +illusion_1.5L,sr,108,43.2,velocity,lower_ux,0.9533255100250244 +illusion_1.5L,sr,108,43.2,velocity,lower_uy,0.3884548842906952 +illusion_1.5L,sr,109,43.6,velocity,upper_ux,0.7606561183929443 +illusion_1.5L,sr,109,43.6,velocity,upper_uy,0.39975985884666443 +illusion_1.5L,sr,109,43.6,velocity,center_ux,0.7947630882263184 +illusion_1.5L,sr,109,43.6,velocity,center_uy,0.680398166179657 +illusion_1.5L,sr,109,43.6,velocity,lower_ux,1.0281742811203003 +illusion_1.5L,sr,109,43.6,velocity,lower_uy,0.42294707894325256 +illusion_1.5L,sr,110,44.0,velocity,upper_ux,0.6998737454414368 +illusion_1.5L,sr,110,44.0,velocity,upper_uy,0.33085405826568604 +illusion_1.5L,sr,110,44.0,velocity,center_ux,0.8175210356712341 +illusion_1.5L,sr,110,44.0,velocity,center_uy,0.6939058899879456 +illusion_1.5L,sr,110,44.0,velocity,lower_ux,1.1067538261413574 +illusion_1.5L,sr,110,44.0,velocity,lower_uy,0.44582533836364746 +illusion_1.5L,sr,111,44.4,velocity,upper_ux,0.6444287896156311 +illusion_1.5L,sr,111,44.4,velocity,upper_uy,0.2372218668460846 +illusion_1.5L,sr,111,44.4,velocity,center_ux,0.820431113243103 +illusion_1.5L,sr,111,44.4,velocity,center_uy,0.6387847661972046 +illusion_1.5L,sr,111,44.4,velocity,lower_ux,1.18962824344635 +illusion_1.5L,sr,111,44.4,velocity,lower_uy,0.45546260476112366 +illusion_1.5L,sr,112,44.8,velocity,upper_ux,0.6052291393280029 +illusion_1.5L,sr,112,44.8,velocity,upper_uy,0.1177956685423851 +illusion_1.5L,sr,112,44.8,velocity,center_ux,0.7980749607086182 +illusion_1.5L,sr,112,44.8,velocity,center_uy,0.4844784140586853 +illusion_1.5L,sr,112,44.8,velocity,lower_ux,1.2740378379821777 +illusion_1.5L,sr,112,44.8,velocity,lower_uy,0.446929395198822 +illusion_1.5L,sr,113,45.2,velocity,upper_ux,0.6073166131973267 +illusion_1.5L,sr,113,45.2,velocity,upper_uy,-0.006588579621165991 +illusion_1.5L,sr,113,45.2,velocity,center_ux,0.7469390630722046 +illusion_1.5L,sr,113,45.2,velocity,center_uy,0.25549590587615967 +illusion_1.5L,sr,113,45.2,velocity,lower_ux,1.3491939306259155 +illusion_1.5L,sr,113,45.2,velocity,lower_uy,0.40944331884384155 +illusion_1.5L,sr,114,45.6,velocity,upper_ux,0.6584964990615845 +illusion_1.5L,sr,114,45.6,velocity,upper_uy,-0.10542254149913788 +illusion_1.5L,sr,114,45.6,velocity,center_ux,0.6704975962638855 +illusion_1.5L,sr,114,45.6,velocity,center_uy,-0.03309054300189018 +illusion_1.5L,sr,114,45.6,velocity,lower_ux,1.392885684967041 +illusion_1.5L,sr,114,45.6,velocity,lower_uy,0.3255935311317444 +illusion_1.5L,sr,115,46.0,velocity,upper_ux,0.7280916571617126 +illusion_1.5L,sr,115,46.0,velocity,upper_uy,-0.18428054451942444 +illusion_1.5L,sr,115,46.0,velocity,center_ux,0.5997425317764282 +illusion_1.5L,sr,115,46.0,velocity,center_uy,-0.3500601649284363 +illusion_1.5L,sr,115,46.0,velocity,lower_ux,1.3777559995651245 +illusion_1.5L,sr,115,46.0,velocity,lower_uy,0.17916686832904816 +illusion_1.5L,sr,116,46.4,velocity,upper_ux,0.7940294742584229 +illusion_1.5L,sr,116,46.4,velocity,upper_uy,-0.2600764036178589 +illusion_1.5L,sr,116,46.4,velocity,center_ux,0.5909285545349121 +illusion_1.5L,sr,116,46.4,velocity,center_uy,-0.5779460668563843 +illusion_1.5L,sr,116,46.4,velocity,lower_ux,1.2765403985977173 +illusion_1.5L,sr,116,46.4,velocity,lower_uy,-0.034675370901823044 +illusion_1.5L,sr,117,46.8,velocity,upper_ux,0.8608899712562561 +illusion_1.5L,sr,117,46.8,velocity,upper_uy,-0.3250975012779236 +illusion_1.5L,sr,117,46.8,velocity,center_ux,0.6579726338386536 +illusion_1.5L,sr,117,46.8,velocity,center_uy,-0.634710431098938 +illusion_1.5L,sr,117,46.8,velocity,lower_ux,1.087398648262024 +illusion_1.5L,sr,117,46.8,velocity,lower_uy,-0.26809704303741455 +illusion_1.5L,sr,118,47.2,velocity,upper_ux,0.9311735033988953 +illusion_1.5L,sr,118,47.2,velocity,upper_uy,-0.3761163055896759 +illusion_1.5L,sr,118,47.2,velocity,center_ux,0.7286756038665771 +illusion_1.5L,sr,118,47.2,velocity,center_uy,-0.6437281966209412 +illusion_1.5L,sr,118,47.2,velocity,lower_ux,0.8931893110275269 +illusion_1.5L,sr,118,47.2,velocity,lower_uy,-0.40691593289375305 +illusion_1.5L,sr,119,47.6,velocity,upper_ux,1.0044963359832764 +illusion_1.5L,sr,119,47.6,velocity,upper_uy,-0.4147156774997711 +illusion_1.5L,sr,119,47.6,velocity,center_ux,0.7740356922149658 +illusion_1.5L,sr,119,47.6,velocity,center_uy,-0.6709872484207153 +illusion_1.5L,sr,119,47.6,velocity,lower_ux,0.7729562520980835 +illusion_1.5L,sr,119,47.6,velocity,lower_uy,-0.4126705229282379 +illusion_1.5L,sr,120,48.0,velocity,upper_ux,1.0816705226898193 +illusion_1.5L,sr,120,48.0,velocity,upper_uy,-0.44177794456481934 +illusion_1.5L,sr,120,48.0,velocity,center_ux,0.8012814521789551 +illusion_1.5L,sr,120,48.0,velocity,center_uy,-0.6937208771705627 +illusion_1.5L,sr,120,48.0,velocity,lower_ux,0.7062675952911377 +illusion_1.5L,sr,120,48.0,velocity,lower_uy,-0.3521992862224579 +illusion_1.5L,sr,121,48.4,velocity,upper_ux,1.1630967855453491 +illusion_1.5L,sr,121,48.4,velocity,upper_uy,-0.4560331106185913 +illusion_1.5L,sr,121,48.4,velocity,center_ux,0.8099423050880432 +illusion_1.5L,sr,121,48.4,velocity,center_uy,-0.6645824313163757 +illusion_1.5L,sr,121,48.4,velocity,lower_ux,0.6516987085342407 +illusion_1.5L,sr,121,48.4,velocity,lower_uy,-0.2654488682746887 +illusion_1.5L,sr,122,48.8,velocity,upper_ux,1.2472138404846191 +illusion_1.5L,sr,122,48.8,velocity,upper_uy,-0.4536128640174866 +illusion_1.5L,sr,122,48.8,velocity,center_ux,0.7957732677459717 +illusion_1.5L,sr,122,48.8,velocity,center_uy,-0.5394638180732727 +illusion_1.5L,sr,122,48.8,velocity,lower_ux,0.6078665256500244 +illusion_1.5L,sr,122,48.8,velocity,lower_uy,-0.15378956496715546 +illusion_1.5L,sr,123,49.2,velocity,upper_ux,1.3262262344360352 +illusion_1.5L,sr,123,49.2,velocity,upper_uy,-0.42590633034706116 +illusion_1.5L,sr,123,49.2,velocity,center_ux,0.7553156018257141 +illusion_1.5L,sr,123,49.2,velocity,center_uy,-0.3307582437992096 +illusion_1.5L,sr,123,49.2,velocity,lower_ux,0.5973799228668213 +illusion_1.5L,sr,123,49.2,velocity,lower_uy,-0.02963283471763134 +illusion_1.5L,sr,124,49.6,velocity,upper_ux,1.381310224533081 +illusion_1.5L,sr,124,49.6,velocity,upper_uy,-0.3580465018749237 +illusion_1.5L,sr,124,49.6,velocity,center_ux,0.6869430541992188 +illusion_1.5L,sr,124,49.6,velocity,center_uy,-0.0628577470779419 +illusion_1.5L,sr,124,49.6,velocity,lower_ux,0.6368052959442139 +illusion_1.5L,sr,124,49.6,velocity,lower_uy,0.07614266872406006 +illusion_1.5L,sr,125,50.0,velocity,upper_ux,1.387009859085083 +illusion_1.5L,sr,125,50.0,velocity,upper_uy,-0.23473365604877472 +illusion_1.5L,sr,125,50.0,velocity,center_ux,0.609333872795105 +illusion_1.5L,sr,125,50.0,velocity,center_uy,0.24912188947200775 +illusion_1.5L,sr,125,50.0,velocity,lower_ux,0.7050826549530029 +illusion_1.5L,sr,125,50.0,velocity,lower_uy,0.156986266374588 +illusion_1.5L,sr,126,50.4,velocity,upper_ux,1.319851040840149 +illusion_1.5L,sr,126,50.4,velocity,upper_uy,-0.04833666980266571 +illusion_1.5L,sr,126,50.4,velocity,center_ux,0.572922945022583 +illusion_1.5L,sr,126,50.4,velocity,center_uy,0.5208339095115662 +illusion_1.5L,sr,126,50.4,velocity,lower_ux,0.7713488936424255 +illusion_1.5L,sr,126,50.4,velocity,lower_uy,0.23394285142421722 +illusion_1.5L,sr,127,50.8,velocity,upper_ux,1.1613467931747437 +illusion_1.5L,sr,127,50.8,velocity,upper_uy,0.18196697533130646 +illusion_1.5L,sr,127,50.8,velocity,center_ux,0.6194881796836853 +illusion_1.5L,sr,127,50.8,velocity,center_uy,0.6293072700500488 +illusion_1.5L,sr,127,50.8,velocity,lower_ux,0.8361696600914001 +illusion_1.5L,sr,127,50.8,velocity,lower_uy,0.30398237705230713 +illusion_1.5L,sr,128,51.2,velocity,upper_ux,0.9561269879341125 +illusion_1.5L,sr,128,51.2,velocity,upper_uy,0.3658057451248169 +illusion_1.5L,sr,128,51.2,velocity,center_ux,0.6973990797996521 +illusion_1.5L,sr,128,51.2,velocity,center_uy,0.6381611824035645 +illusion_1.5L,sr,128,51.2,velocity,lower_ux,0.9045307040214539 +illusion_1.5L,sr,128,51.2,velocity,lower_uy,0.3602122366428375 +illusion_1.5L,sr,129,51.6,velocity,upper_ux,0.8014678359031677 +illusion_1.5L,sr,129,51.6,velocity,upper_uy,0.4189631938934326 +illusion_1.5L,sr,129,51.6,velocity,center_ux,0.7510939240455627 +illusion_1.5L,sr,129,51.6,velocity,center_uy,0.6599286794662476 +illusion_1.5L,sr,129,51.6,velocity,lower_ux,0.97649085521698 +illusion_1.5L,sr,129,51.6,velocity,lower_uy,0.40360936522483826 +illusion_1.5L,sr,130,52.0,velocity,upper_ux,0.7188239097595215 +illusion_1.5L,sr,130,52.0,velocity,upper_uy,0.3759491741657257 +illusion_1.5L,sr,130,52.0,velocity,center_ux,0.7838257551193237 +illusion_1.5L,sr,130,52.0,velocity,center_uy,0.6883485317230225 +illusion_1.5L,sr,130,52.0,velocity,lower_ux,1.0522266626358032 +illusion_1.5L,sr,130,52.0,velocity,lower_uy,0.43537741899490356 +illusion_1.5L,sr,131,52.4,velocity,upper_ux,0.6629014611244202 +illusion_1.5L,sr,131,52.4,velocity,upper_uy,0.2962808310985565 +illusion_1.5L,sr,131,52.4,velocity,center_ux,0.7987346053123474 +illusion_1.5L,sr,131,52.4,velocity,center_uy,0.6840828061103821 +illusion_1.5L,sr,131,52.4,velocity,lower_ux,1.1330736875534058 +illusion_1.5L,sr,131,52.4,velocity,lower_uy,0.455022931098938 +illusion_1.5L,sr,132,52.8,velocity,upper_ux,0.6160010695457458 +illusion_1.5L,sr,132,52.8,velocity,upper_uy,0.1947164684534073 +illusion_1.5L,sr,132,52.8,velocity,center_ux,0.7926050424575806 +illusion_1.5L,sr,132,52.8,velocity,center_uy,0.5960485935211182 +illusion_1.5L,sr,132,52.8,velocity,lower_ux,1.2158353328704834 +illusion_1.5L,sr,132,52.8,velocity,lower_uy,0.45920509099960327 +illusion_1.5L,sr,133,53.2,velocity,upper_ux,0.5923601984977722 +illusion_1.5L,sr,133,53.2,velocity,upper_uy,0.07374590635299683 +illusion_1.5L,sr,133,53.2,velocity,center_ux,0.7627387046813965 +illusion_1.5L,sr,133,53.2,velocity,center_uy,0.4137365221977234 +illusion_1.5L,sr,133,53.2,velocity,lower_ux,1.2978724241256714 +illusion_1.5L,sr,133,53.2,velocity,lower_uy,0.4415311813354492 +illusion_1.5L,sr,134,53.6,velocity,upper_ux,0.6150103211402893 +illusion_1.5L,sr,134,53.6,velocity,upper_uy,-0.03941246122121811 +illusion_1.5L,sr,134,53.6,velocity,center_ux,0.7057257294654846 +illusion_1.5L,sr,134,53.6,velocity,center_uy,0.16832567751407623 +illusion_1.5L,sr,134,53.6,velocity,lower_ux,1.3635430335998535 +illusion_1.5L,sr,134,53.6,velocity,lower_uy,0.3895719647407532 +illusion_1.5L,sr,135,54.0,velocity,upper_ux,0.6777676343917847 +illusion_1.5L,sr,135,54.0,velocity,upper_uy,-0.12552323937416077 +illusion_1.5L,sr,135,54.0,velocity,center_ux,0.6283751130104065 +illusion_1.5L,sr,135,54.0,velocity,center_uy,-0.1286221742630005 +illusion_1.5L,sr,135,54.0,velocity,lower_ux,1.3893828392028809 +illusion_1.5L,sr,135,54.0,velocity,lower_uy,0.28838545083999634 +illusion_1.5L,sr,136,54.4,velocity,upper_ux,0.7459896206855774 +illusion_1.5L,sr,136,54.4,velocity,upper_uy,-0.20249135792255402 +illusion_1.5L,sr,136,54.4,velocity,center_ux,0.568737268447876 +illusion_1.5L,sr,136,54.4,velocity,center_uy,-0.43000033497810364 +illusion_1.5L,sr,136,54.4,velocity,lower_ux,1.3535977602005005 +illusion_1.5L,sr,136,54.4,velocity,lower_uy,0.12873922288417816 +illusion_1.5L,sr,137,54.8,velocity,upper_ux,0.8095692992210388 +illusion_1.5L,sr,137,54.8,velocity,upper_uy,-0.2770608961582184 +illusion_1.5L,sr,137,54.8,velocity,center_ux,0.5826063752174377 +illusion_1.5L,sr,137,54.8,velocity,center_uy,-0.6088142395019531 +illusion_1.5L,sr,137,54.8,velocity,lower_ux,1.2345190048217773 +illusion_1.5L,sr,137,54.8,velocity,lower_uy,-0.08526589721441269 +illusion_1.5L,sr,138,55.2,velocity,upper_ux,0.8757488131523132 +illusion_1.5L,sr,138,55.2,velocity,upper_uy,-0.3392914831638336 +illusion_1.5L,sr,138,55.2,velocity,center_ux,0.6596612334251404 +illusion_1.5L,sr,138,55.2,velocity,center_uy,-0.6369063854217529 +illusion_1.5L,sr,138,55.2,velocity,lower_ux,1.0391347408294678 +illusion_1.5L,sr,138,55.2,velocity,lower_uy,-0.2991287410259247 +illusion_1.5L,sr,139,55.6,velocity,upper_ux,0.9459784626960754 +illusion_1.5L,sr,139,55.6,velocity,upper_uy,-0.38806864619255066 +illusion_1.5L,sr,139,55.6,velocity,center_ux,0.7251293063163757 +illusion_1.5L,sr,139,55.6,velocity,center_uy,-0.6496535539627075 +illusion_1.5L,sr,139,55.6,velocity,lower_ux,0.8520561456680298 +illusion_1.5L,sr,139,55.6,velocity,lower_uy,-0.410295307636261 +illusion_1.5L,sr,140,56.0,velocity,upper_ux,1.0200504064559937 +illusion_1.5L,sr,140,56.0,velocity,upper_uy,-0.4247981905937195 +illusion_1.5L,sr,140,56.0,velocity,center_ux,0.7654680013656616 +illusion_1.5L,sr,140,56.0,velocity,center_uy,-0.6786414980888367 +illusion_1.5L,sr,140,56.0,velocity,lower_ux,0.7406574487686157 +illusion_1.5L,sr,140,56.0,velocity,lower_uy,-0.3992116451263428 +illusion_1.5L,sr,141,56.4,velocity,upper_ux,1.0982362031936646 +illusion_1.5L,sr,141,56.4,velocity,upper_uy,-0.44960007071495056 +illusion_1.5L,sr,141,56.4,velocity,center_ux,0.7875109314918518 +illusion_1.5L,sr,141,56.4,velocity,center_uy,-0.6932865381240845 +illusion_1.5L,sr,141,56.4,velocity,lower_ux,0.6787928938865662 +illusion_1.5L,sr,141,56.4,velocity,lower_uy,-0.3308485150337219 +illusion_1.5L,sr,142,56.8,velocity,upper_ux,1.180812954902649 +illusion_1.5L,sr,142,56.8,velocity,upper_uy,-0.4606182873249054 +illusion_1.5L,sr,142,56.8,velocity,center_ux,0.7901959419250488 +illusion_1.5L,sr,142,56.8,velocity,center_uy,-0.6433483958244324 +illusion_1.5L,sr,142,56.8,velocity,lower_ux,0.6291263699531555 +illusion_1.5L,sr,142,56.8,velocity,lower_uy,-0.2373659461736679 +illusion_1.5L,sr,143,57.2,velocity,upper_ux,1.2642889022827148 +illusion_1.5L,sr,143,57.2,velocity,upper_uy,-0.45267823338508606 +illusion_1.5L,sr,143,57.2,velocity,center_ux,0.7705723643302917 +illusion_1.5L,sr,143,57.2,velocity,center_uy,-0.49578994512557983 +illusion_1.5L,sr,143,57.2,velocity,lower_ux,0.594528079032898 +illusion_1.5L,sr,143,57.2,velocity,lower_uy,-0.12243761122226715 +illusion_1.5L,sr,144,57.6,velocity,upper_ux,1.33846116065979 +illusion_1.5L,sr,144,57.6,velocity,upper_uy,-0.4159199893474579 +illusion_1.5L,sr,144,57.6,velocity,center_ux,0.7257426977157593 +illusion_1.5L,sr,144,57.6,velocity,center_uy,-0.2737330496311188 +illusion_1.5L,sr,144,57.6,velocity,lower_ux,0.5981237292289734 +illusion_1.5L,sr,144,57.6,velocity,lower_uy,-0.0035849851556122303 +illusion_1.5L,sr,145,58.0,velocity,upper_ux,1.3827085494995117 +illusion_1.5L,sr,145,58.0,velocity,upper_uy,-0.33648326992988586 +illusion_1.5L,sr,145,58.0,velocity,center_ux,0.655179500579834 +illusion_1.5L,sr,145,58.0,velocity,center_uy,0.0012994232820346951 +illusion_1.5L,sr,145,58.0,velocity,lower_ux,0.648872971534729 +illusion_1.5L,sr,145,58.0,velocity,lower_uy,0.09159884601831436 +illusion_1.5L,sr,146,58.4,velocity,upper_ux,1.374966025352478 +illusion_1.5L,sr,146,58.4,velocity,upper_uy,-0.20332840085029602 +illusion_1.5L,sr,146,58.4,velocity,center_ux,0.5815701484680176 +illusion_1.5L,sr,146,58.4,velocity,center_uy,0.309947669506073 +illusion_1.5L,sr,146,58.4,velocity,lower_ux,0.718231201171875 +illusion_1.5L,sr,146,58.4,velocity,lower_uy,0.16890177130699158 +illusion_1.5L,sr,147,58.8,velocity,upper_ux,1.2961065769195557 +illusion_1.5L,sr,147,58.8,velocity,upper_uy,-0.014454830437898636 +illusion_1.5L,sr,147,58.8,velocity,center_ux,0.5587087273597717 +illusion_1.5L,sr,147,58.8,velocity,center_uy,0.5552527904510498 +illusion_1.5L,sr,147,58.8,velocity,lower_ux,0.7823610901832581 +illusion_1.5L,sr,147,58.8,velocity,lower_uy,0.24586325883865356 +illusion_1.5L,sr,148,59.2,velocity,upper_ux,1.1314172744750977 +illusion_1.5L,sr,148,59.2,velocity,upper_uy,0.20614734292030334 +illusion_1.5L,sr,148,59.2,velocity,center_ux,0.6176928281784058 +illusion_1.5L,sr,148,59.2,velocity,center_uy,0.6341316103935242 +illusion_1.5L,sr,148,59.2,velocity,lower_ux,0.8463696241378784 +illusion_1.5L,sr,148,59.2,velocity,lower_uy,0.31420478224754333 +illusion_1.5L,sr,149,59.6,velocity,upper_ux,0.9287891387939453 +illusion_1.5L,sr,149,59.6,velocity,upper_uy,0.37246304750442505 +illusion_1.5L,sr,149,59.6,velocity,center_ux,0.6954617500305176 +illusion_1.5L,sr,149,59.6,velocity,center_uy,0.6414043307304382 +illusion_1.5L,sr,149,59.6,velocity,lower_ux,0.9155742526054382 +illusion_1.5L,sr,149,59.6,velocity,lower_uy,0.36932507157325745 +illusion_1.5L,sr,150,60.0,velocity,upper_ux,0.7775702476501465 +illusion_1.5L,sr,150,60.0,velocity,upper_uy,0.41119858622550964 +illusion_1.5L,sr,150,60.0,velocity,center_ux,0.7443826198577881 +illusion_1.5L,sr,150,60.0,velocity,center_uy,0.6649703979492188 +illusion_1.5L,sr,150,60.0,velocity,lower_ux,0.9864022731781006 +illusion_1.5L,sr,150,60.0,velocity,lower_uy,0.4109218120574951 +illusion_1.5L,sr,151,60.4,velocity,upper_ux,0.6977766156196594 +illusion_1.5L,sr,151,60.4,velocity,upper_uy,0.36158645153045654 +illusion_1.5L,sr,151,60.4,velocity,center_ux,0.7737743854522705 +illusion_1.5L,sr,151,60.4,velocity,center_uy,0.6904212236404419 +illusion_1.5L,sr,151,60.4,velocity,lower_ux,1.0627415180206299 +illusion_1.5L,sr,151,60.4,velocity,lower_uy,0.4412776827812195 +illusion_1.5L,sr,152,60.8,velocity,upper_ux,0.6452584862709045 +illusion_1.5L,sr,152,60.8,velocity,upper_uy,0.2780059278011322 +illusion_1.5L,sr,152,60.8,velocity,center_ux,0.7847478985786438 +illusion_1.5L,sr,152,60.8,velocity,center_uy,0.6749022603034973 +illusion_1.5L,sr,152,60.8,velocity,lower_ux,1.1435390710830688 +illusion_1.5L,sr,152,60.8,velocity,lower_uy,0.4588632881641388 +illusion_1.5L,sr,153,61.2,velocity,upper_ux,0.6044114232063293 +illusion_1.5L,sr,153,61.2,velocity,upper_uy,0.1724957674741745 +illusion_1.5L,sr,153,61.2,velocity,center_ux,0.7758232355117798 +illusion_1.5L,sr,153,61.2,velocity,center_uy,0.5710210800170898 +illusion_1.5L,sr,153,61.2,velocity,lower_ux,1.2287002801895142 +illusion_1.5L,sr,153,61.2,velocity,lower_uy,0.46064141392707825 +illusion_1.5L,sr,154,61.6,velocity,upper_ux,0.5894907116889954 +illusion_1.5L,sr,154,61.6,velocity,upper_uy,0.053206492215394974 +illusion_1.5L,sr,154,61.6,velocity,center_ux,0.7417758703231812 +illusion_1.5L,sr,154,61.6,velocity,center_uy,0.3769463300704956 +illusion_1.5L,sr,154,61.6,velocity,lower_ux,1.3069522380828857 +illusion_1.5L,sr,154,61.6,velocity,lower_uy,0.43730008602142334 +illusion_1.5L,sr,155,62.0,velocity,upper_ux,0.6221678853034973 +illusion_1.5L,sr,155,62.0,velocity,upper_uy,-0.05222552269697189 +illusion_1.5L,sr,155,62.0,velocity,center_ux,0.6823160648345947 +illusion_1.5L,sr,155,62.0,velocity,center_uy,0.1259520947933197 +illusion_1.5L,sr,155,62.0,velocity,lower_ux,1.3665565252304077 +illusion_1.5L,sr,155,62.0,velocity,lower_uy,0.37823227047920227 +illusion_1.5L,sr,156,62.4,velocity,upper_ux,0.688107967376709 +illusion_1.5L,sr,156,62.4,velocity,upper_uy,-0.1330922544002533 +illusion_1.5L,sr,156,62.4,velocity,center_ux,0.6053505539894104 +illusion_1.5L,sr,156,62.4,velocity,center_uy,-0.17130349576473236 +illusion_1.5L,sr,156,62.4,velocity,lower_ux,1.3837785720825195 +illusion_1.5L,sr,156,62.4,velocity,lower_uy,0.27051207423210144 +illusion_1.5L,sr,157,62.8,velocity,upper_ux,0.7541623711585999 +illusion_1.5L,sr,157,62.8,velocity,upper_uy,-0.2098681777715683 +illusion_1.5L,sr,157,62.8,velocity,center_ux,0.5517545938491821 +illusion_1.5L,sr,157,62.8,velocity,center_uy,-0.46012797951698303 +illusion_1.5L,sr,157,62.8,velocity,lower_ux,1.3406472206115723 +illusion_1.5L,sr,157,62.8,velocity,lower_uy,0.10920217633247375 +illusion_1.5L,sr,158,63.2,velocity,upper_ux,0.8176661729812622 +illusion_1.5L,sr,158,63.2,velocity,upper_uy,-0.284273236989975 +illusion_1.5L,sr,158,63.2,velocity,center_ux,0.5761393904685974 +illusion_1.5L,sr,158,63.2,velocity,center_uy,-0.6178823709487915 +illusion_1.5L,sr,158,63.2,velocity,lower_ux,1.2194427251815796 +illusion_1.5L,sr,158,63.2,velocity,lower_uy,-0.09969812631607056 +illusion_1.5L,sr,159,63.6,velocity,upper_ux,0.8822106719017029 +illusion_1.5L,sr,159,63.6,velocity,upper_uy,-0.34510722756385803 +illusion_1.5L,sr,159,63.6,velocity,center_ux,0.6555498242378235 +illusion_1.5L,sr,159,63.6,velocity,center_uy,-0.6367197036743164 +illusion_1.5L,sr,159,63.6,velocity,lower_ux,1.022937297821045 +illusion_1.5L,sr,159,63.6,velocity,lower_uy,-0.3023918867111206 +illusion_1.5L,sr,160,64.0,velocity,upper_ux,0.9520339369773865 +illusion_1.5L,sr,160,64.0,velocity,upper_uy,-0.39319339394569397 +illusion_1.5L,sr,160,64.0,velocity,center_ux,0.7186739444732666 +illusion_1.5L,sr,160,64.0,velocity,center_uy,-0.6515994071960449 +illusion_1.5L,sr,160,64.0,velocity,lower_ux,0.8362546563148499 +illusion_1.5L,sr,160,64.0,velocity,lower_uy,-0.40502360463142395 +illusion_1.5L,sr,161,64.4,velocity,upper_ux,1.0259699821472168 +illusion_1.5L,sr,161,64.4,velocity,upper_uy,-0.42925113439559937 +illusion_1.5L,sr,161,64.4,velocity,center_ux,0.7565847039222717 +illusion_1.5L,sr,161,64.4,velocity,center_uy,-0.6803937554359436 +illusion_1.5L,sr,161,64.4,velocity,lower_ux,0.724356472492218 +illusion_1.5L,sr,161,64.4,velocity,lower_uy,-0.39015787839889526 +illusion_1.5L,sr,162,64.8,velocity,upper_ux,1.10451078414917 +illusion_1.5L,sr,162,64.8,velocity,upper_uy,-0.45323100686073303 +illusion_1.5L,sr,162,64.8,velocity,center_ux,0.7760993242263794 +illusion_1.5L,sr,162,64.8,velocity,center_uy,-0.6901977062225342 +illusion_1.5L,sr,162,64.8,velocity,lower_ux,0.663260817527771 +illusion_1.5L,sr,162,64.8,velocity,lower_uy,-0.31902363896369934 +illusion_1.5L,sr,163,65.2,velocity,upper_ux,1.187272071838379 +illusion_1.5L,sr,163,65.2,velocity,upper_uy,-0.4628259539604187 +illusion_1.5L,sr,163,65.2,velocity,center_ux,0.7761345505714417 +illusion_1.5L,sr,163,65.2,velocity,center_uy,-0.6310489177703857 +illusion_1.5L,sr,163,65.2,velocity,lower_ux,0.6170811653137207 +illusion_1.5L,sr,163,65.2,velocity,lower_uy,-0.22313770651817322 +illusion_1.5L,sr,164,65.6,velocity,upper_ux,1.27009916305542 +illusion_1.5L,sr,164,65.6,velocity,upper_uy,-0.4524577856063843 +illusion_1.5L,sr,164,65.6,velocity,center_ux,0.7545966506004333 +illusion_1.5L,sr,164,65.6,velocity,center_uy,-0.4755600094795227 +illusion_1.5L,sr,164,65.6,velocity,lower_ux,0.588539719581604 +illusion_1.5L,sr,164,65.6,velocity,lower_uy,-0.10846138000488281 +illusion_1.5L,sr,165,66.0,velocity,upper_ux,1.341181755065918 +illusion_1.5L,sr,165,66.0,velocity,upper_uy,-0.41204020380973816 +illusion_1.5L,sr,165,66.0,velocity,center_ux,0.7085968852043152 +illusion_1.5L,sr,165,66.0,velocity,center_uy,-0.2504179775714874 +illusion_1.5L,sr,165,66.0,velocity,lower_ux,0.599358320236206 +illusion_1.5L,sr,165,66.0,velocity,lower_uy,0.0055277361534535885 +illusion_1.5L,sr,166,66.4,velocity,upper_ux,1.3804725408554077 +illusion_1.5L,sr,166,66.4,velocity,upper_uy,-0.32846930623054504 +illusion_1.5L,sr,166,66.4,velocity,center_ux,0.6375043988227844 +illusion_1.5L,sr,166,66.4,velocity,center_uy,0.025637280195951462 +illusion_1.5L,sr,166,66.4,velocity,lower_ux,0.6544950604438782 +illusion_1.5L,sr,166,66.4,velocity,lower_uy,0.09559104591608047 +illusion_1.5L,sr,167,66.8,velocity,upper_ux,1.3679546117782593 +illusion_1.5L,sr,167,66.8,velocity,upper_uy,-0.19400398433208466 +illusion_1.5L,sr,167,66.8,velocity,center_ux,0.5656046867370605 +illusion_1.5L,sr,167,66.8,velocity,center_uy,0.32908689975738525 +illusion_1.5L,sr,167,66.8,velocity,lower_ux,0.7230843305587769 +illusion_1.5L,sr,167,66.8,velocity,lower_uy,0.17156866192817688 +illusion_1.5L,sr,168,67.2,velocity,upper_ux,1.2878800630569458 +illusion_1.5L,sr,168,67.2,velocity,upper_uy,-0.008954613469541073 +illusion_1.5L,sr,168,67.2,velocity,center_ux,0.546724259853363 +illusion_1.5L,sr,168,67.2,velocity,center_uy,0.5637649893760681 +illusion_1.5L,sr,168,67.2,velocity,lower_ux,0.7856998443603516 +illusion_1.5L,sr,168,67.2,velocity,lower_uy,0.24858888983726501 +illusion_1.5L,sr,169,67.6,velocity,upper_ux,1.1255000829696655 +illusion_1.5L,sr,169,67.6,velocity,upper_uy,0.20460185408592224 +illusion_1.5L,sr,169,67.6,velocity,center_ux,0.6094904541969299 +illusion_1.5L,sr,169,67.6,velocity,center_uy,0.6348545551300049 +illusion_1.5L,sr,169,67.6,velocity,lower_ux,0.8490807414054871 +illusion_1.5L,sr,169,67.6,velocity,lower_uy,0.3167763948440552 +illusion_1.5L,sr,170,68.0,velocity,upper_ux,0.9223287105560303 +illusion_1.5L,sr,170,68.0,velocity,upper_uy,0.36648616194725037 +illusion_1.5L,sr,170,68.0,velocity,center_ux,0.6867517828941345 +illusion_1.5L,sr,170,68.0,velocity,center_uy,0.6409920454025269 +illusion_1.5L,sr,170,68.0,velocity,lower_ux,0.9165635704994202 +illusion_1.5L,sr,170,68.0,velocity,lower_uy,0.3713504672050476 +illusion_1.5L,sr,171,68.4,velocity,upper_ux,0.768717348575592 +illusion_1.5L,sr,171,68.4,velocity,upper_uy,0.406575471162796 +illusion_1.5L,sr,171,68.4,velocity,center_ux,0.7355471849441528 +illusion_1.5L,sr,171,68.4,velocity,center_uy,0.6658397912979126 +illusion_1.5L,sr,171,68.4,velocity,lower_ux,0.9879819750785828 +illusion_1.5L,sr,171,68.4,velocity,lower_uy,0.41341477632522583 +illusion_1.5L,sr,172,68.8,velocity,upper_ux,0.686348021030426 +illusion_1.5L,sr,172,68.8,velocity,upper_uy,0.3571664094924927 +illusion_1.5L,sr,172,68.8,velocity,center_ux,0.7636358737945557 +illusion_1.5L,sr,172,68.8,velocity,center_uy,0.6901394724845886 +illusion_1.5L,sr,172,68.8,velocity,lower_ux,1.0641069412231445 +illusion_1.5L,sr,172,68.8,velocity,lower_uy,0.4438077509403229 +illusion_1.5L,sr,173,69.2,velocity,upper_ux,0.6350249648094177 +illusion_1.5L,sr,173,69.2,velocity,upper_uy,0.2722599506378174 +illusion_1.5L,sr,173,69.2,velocity,center_ux,0.7732835412025452 +illusion_1.5L,sr,173,69.2,velocity,center_uy,0.6715799570083618 +illusion_1.5L,sr,173,69.2,velocity,lower_ux,1.1450629234313965 +illusion_1.5L,sr,173,69.2,velocity,lower_uy,0.4611859917640686 +illusion_1.5L,sr,174,69.6,velocity,upper_ux,0.5974844098091125 +illusion_1.5L,sr,174,69.6,velocity,upper_uy,0.16652821004390717 +illusion_1.5L,sr,174,69.6,velocity,center_ux,0.7635718584060669 +illusion_1.5L,sr,174,69.6,velocity,center_uy,0.5646265149116516 +illusion_1.5L,sr,174,69.6,velocity,lower_ux,1.2301703691482544 +illusion_1.5L,sr,174,69.6,velocity,lower_uy,0.4623134136199951 +illusion_1.5L,sr,175,70.0,velocity,upper_ux,0.5865404009819031 +illusion_1.5L,sr,175,70.0,velocity,upper_uy,0.04935348406434059 +illusion_1.5L,sr,175,70.0,velocity,center_ux,0.729819118976593 +illusion_1.5L,sr,175,70.0,velocity,center_uy,0.3695010244846344 +illusion_1.5L,sr,175,70.0,velocity,lower_ux,1.3075082302093506 +illusion_1.5L,sr,175,70.0,velocity,lower_uy,0.43767791986465454 +illusion_1.5L,sr,176,70.4,velocity,upper_ux,0.6221556663513184 +illusion_1.5L,sr,176,70.4,velocity,upper_uy,-0.05296009033918381 +illusion_1.5L,sr,176,70.4,velocity,center_ux,0.6710141897201538 +illusion_1.5L,sr,176,70.4,velocity,center_uy,0.11903934180736542 +illusion_1.5L,sr,176,70.4,velocity,lower_ux,1.3651247024536133 +illusion_1.5L,sr,176,70.4,velocity,lower_uy,0.3770349621772766 +illusion_1.5L,sr,177,70.8,velocity,upper_ux,0.6885989308357239 +illusion_1.5L,sr,177,70.8,velocity,upper_uy,-0.13195031881332397 +illusion_1.5L,sr,177,70.8,velocity,center_ux,0.5947094559669495 +illusion_1.5L,sr,177,70.8,velocity,center_uy,-0.17502756416797638 +illusion_1.5L,sr,177,70.8,velocity,lower_ux,1.3801369667053223 +illusion_1.5L,sr,177,70.8,velocity,lower_uy,0.26905158162117004 +illusion_1.5L,sr,178,71.2,velocity,upper_ux,0.753936767578125 +illusion_1.5L,sr,178,71.2,velocity,upper_uy,-0.20869046449661255 +illusion_1.5L,sr,178,71.2,velocity,center_ux,0.5409157872200012 +illusion_1.5L,sr,178,71.2,velocity,center_uy,-0.4609375298023224 +illusion_1.5L,sr,178,71.2,velocity,lower_ux,1.337051510810852 +illusion_1.5L,sr,178,71.2,velocity,lower_uy,0.11043751984834671 +illusion_1.5L,sr,179,71.6,velocity,upper_ux,0.8156043887138367 +illusion_1.5L,sr,179,71.6,velocity,upper_uy,-0.2829735279083252 +illusion_1.5L,sr,179,71.6,velocity,center_ux,0.5640924572944641 +illusion_1.5L,sr,179,71.6,velocity,center_uy,-0.6174163222312927 +illusion_1.5L,sr,179,71.6,velocity,lower_ux,1.2190496921539307 +illusion_1.5L,sr,179,71.6,velocity,lower_uy,-0.09177988022565842 +illusion_1.5L,sr,180,72.0,velocity,upper_ux,0.8806549310684204 +illusion_1.5L,sr,180,72.0,velocity,upper_uy,-0.3446735739707947 +illusion_1.5L,sr,180,72.0,velocity,center_ux,0.6452997326850891 +illusion_1.5L,sr,180,72.0,velocity,center_uy,-0.6371283531188965 +illusion_1.5L,sr,180,72.0,velocity,lower_ux,1.0284518003463745 +illusion_1.5L,sr,180,72.0,velocity,lower_uy,-0.29150596261024475 +illusion_1.5L,sr,181,72.4,velocity,upper_ux,0.9500349164009094 +illusion_1.5L,sr,181,72.4,velocity,upper_uy,-0.3933655023574829 +illusion_1.5L,sr,181,72.4,velocity,center_ux,0.7095640301704407 +illusion_1.5L,sr,181,72.4,velocity,center_uy,-0.6513330340385437 +illusion_1.5L,sr,181,72.4,velocity,lower_ux,0.8382284045219421 +illusion_1.5L,sr,181,72.4,velocity,lower_uy,-0.399046391248703 +illusion_1.5L,sr,182,72.8,velocity,upper_ux,1.0234806537628174 +illusion_1.5L,sr,182,72.8,velocity,upper_uy,-0.4300304651260376 +illusion_1.5L,sr,182,72.8,velocity,center_ux,0.7474468946456909 +illusion_1.5L,sr,182,72.8,velocity,center_uy,-0.6798085570335388 +illusion_1.5L,sr,182,72.8,velocity,lower_ux,0.7198058366775513 +illusion_1.5L,sr,182,72.8,velocity,lower_uy,-0.3892473578453064 +illusion_1.5L,sr,183,73.2,velocity,upper_ux,1.1017258167266846 +illusion_1.5L,sr,183,73.2,velocity,upper_uy,-0.4545525014400482 +illusion_1.5L,sr,183,73.2,velocity,center_ux,0.7665389776229858 +illusion_1.5L,sr,183,73.2,velocity,center_uy,-0.6897297501564026 +illusion_1.5L,sr,183,73.2,velocity,lower_ux,0.6565984487533569 +illusion_1.5L,sr,183,73.2,velocity,lower_uy,-0.31898248195648193 +illusion_1.5L,sr,184,73.6,velocity,upper_ux,1.1858093738555908 +illusion_1.5L,sr,184,73.6,velocity,upper_uy,-0.46517646312713623 +illusion_1.5L,sr,184,73.6,velocity,center_ux,0.7674974799156189 +illusion_1.5L,sr,184,73.6,velocity,center_uy,-0.633094072341919 +illusion_1.5L,sr,184,73.6,velocity,lower_ux,0.6126255393028259 +illusion_1.5L,sr,184,73.6,velocity,lower_uy,-0.2237180918455124 +illusion_1.5L,sr,185,74.0,velocity,upper_ux,1.2671607732772827 +illusion_1.5L,sr,185,74.0,velocity,upper_uy,-0.45450419187545776 +illusion_1.5L,sr,185,74.0,velocity,center_ux,0.7458545565605164 +illusion_1.5L,sr,185,74.0,velocity,center_uy,-0.47911956906318665 +illusion_1.5L,sr,185,74.0,velocity,lower_ux,0.5850368738174438 +illusion_1.5L,sr,185,74.0,velocity,lower_uy,-0.10993318259716034 +illusion_1.5L,sr,186,74.4,velocity,upper_ux,1.338286280632019 +illusion_1.5L,sr,186,74.4,velocity,upper_uy,-0.41439923644065857 +illusion_1.5L,sr,186,74.4,velocity,center_ux,0.70160973072052 +illusion_1.5L,sr,186,74.4,velocity,center_uy,-0.2558687925338745 +illusion_1.5L,sr,186,74.4,velocity,lower_ux,0.5967378616333008 +illusion_1.5L,sr,186,74.4,velocity,lower_uy,0.002655891701579094 +illusion_1.5L,sr,187,74.8,velocity,upper_ux,1.377622365951538 +illusion_1.5L,sr,187,74.8,velocity,upper_uy,-0.33215057849884033 +illusion_1.5L,sr,187,74.8,velocity,center_ux,0.6322391629219055 +illusion_1.5L,sr,187,74.8,velocity,center_uy,0.016102563589811325 +illusion_1.5L,sr,187,74.8,velocity,lower_ux,0.6517446637153625 +illusion_1.5L,sr,187,74.8,velocity,lower_uy,0.09154193103313446 +illusion_1.5L,sr,188,75.2,velocity,upper_ux,1.3665868043899536 +illusion_1.5L,sr,188,75.2,velocity,upper_uy,-0.2007562518119812 +illusion_1.5L,sr,188,75.2,velocity,center_ux,0.5595479011535645 +illusion_1.5L,sr,188,75.2,velocity,center_uy,0.3170509934425354 +illusion_1.5L,sr,188,75.2,velocity,lower_ux,0.7201560139656067 +illusion_1.5L,sr,188,75.2,velocity,lower_uy,0.16695886850357056 +illusion_1.5L,sr,189,75.6,velocity,upper_ux,1.2918460369110107 +illusion_1.5L,sr,189,75.6,velocity,upper_uy,-0.021939795464277267 +illusion_1.5L,sr,189,75.6,velocity,center_ux,0.5364248752593994 +illusion_1.5L,sr,189,75.6,velocity,center_uy,0.556210994720459 +illusion_1.5L,sr,189,75.6,velocity,lower_ux,0.7821089029312134 +illusion_1.5L,sr,189,75.6,velocity,lower_uy,0.24410665035247803 +illusion_1.5L,sr,190,76.0,velocity,upper_ux,1.1378098726272583 +illusion_1.5L,sr,190,76.0,velocity,upper_uy,0.1866796314716339 +illusion_1.5L,sr,190,76.0,velocity,center_ux,0.5962603688240051 +illusion_1.5L,sr,190,76.0,velocity,center_uy,0.6348927021026611 +illusion_1.5L,sr,190,76.0,velocity,lower_ux,0.8448033332824707 +illusion_1.5L,sr,190,76.0,velocity,lower_uy,0.3132442533969879 +illusion_1.5L,sr,191,76.4,velocity,upper_ux,0.9357024431228638 +illusion_1.5L,sr,191,76.4,velocity,upper_uy,0.3536713123321533 +illusion_1.5L,sr,191,76.4,velocity,center_ux,0.6758660078048706 +illusion_1.5L,sr,191,76.4,velocity,center_uy,0.64044588804245 +illusion_1.5L,sr,191,76.4,velocity,lower_ux,0.9118071794509888 +illusion_1.5L,sr,191,76.4,velocity,lower_uy,0.36889374256134033 +illusion_1.5L,sr,192,76.8,velocity,upper_ux,0.7735483050346375 +illusion_1.5L,sr,192,76.8,velocity,upper_uy,0.404434472322464 +illusion_1.5L,sr,192,76.8,velocity,center_ux,0.7265426516532898 +illusion_1.5L,sr,192,76.8,velocity,center_uy,0.664132297039032 +illusion_1.5L,sr,192,76.8,velocity,lower_ux,0.982839822769165 +illusion_1.5L,sr,192,76.8,velocity,lower_uy,0.4120449125766754 +illusion_1.5L,sr,193,77.2,velocity,upper_ux,0.6844077110290527 +illusion_1.5L,sr,193,77.2,velocity,upper_uy,0.3601067066192627 +illusion_1.5L,sr,193,77.2,velocity,center_ux,0.7552964091300964 +illusion_1.5L,sr,193,77.2,velocity,center_uy,0.688952624797821 +illusion_1.5L,sr,193,77.2,velocity,lower_ux,1.058479905128479 +illusion_1.5L,sr,193,77.2,velocity,lower_uy,0.44346192479133606 +illusion_1.5L,sr,194,77.6,velocity,upper_ux,0.6321024894714355 +illusion_1.5L,sr,194,77.6,velocity,upper_uy,0.276530921459198 +illusion_1.5L,sr,194,77.6,velocity,center_ux,0.7654261589050293 +illusion_1.5L,sr,194,77.6,velocity,center_uy,0.6740480661392212 +illusion_1.5L,sr,194,77.6,velocity,lower_ux,1.138860821723938 +illusion_1.5L,sr,194,77.6,velocity,lower_uy,0.46188420057296753 +illusion_1.5L,sr,195,78.0,velocity,upper_ux,0.5944231152534485 +illusion_1.5L,sr,195,78.0,velocity,upper_uy,0.17185987532138824 +illusion_1.5L,sr,195,78.0,velocity,center_ux,0.755879819393158 +illusion_1.5L,sr,195,78.0,velocity,center_uy,0.572544276714325 +illusion_1.5L,sr,195,78.0,velocity,lower_ux,1.2223751544952393 +illusion_1.5L,sr,195,78.0,velocity,lower_uy,0.46360066533088684 +illusion_1.5L,sr,196,78.4,velocity,upper_ux,0.5844016671180725 +illusion_1.5L,sr,196,78.4,velocity,upper_uy,0.05629068985581398 +illusion_1.5L,sr,196,78.4,velocity,center_ux,0.7261364459991455 +illusion_1.5L,sr,196,78.4,velocity,center_uy,0.383690744638443 +illusion_1.5L,sr,196,78.4,velocity,lower_ux,1.3033000230789185 +illusion_1.5L,sr,196,78.4,velocity,lower_uy,0.44169530272483826 +illusion_1.5L,sr,197,78.8,velocity,upper_ux,0.6176732778549194 +illusion_1.5L,sr,197,78.8,velocity,upper_uy,-0.046134915202856064 +illusion_1.5L,sr,197,78.8,velocity,center_ux,0.6692953705787659 +illusion_1.5L,sr,197,78.8,velocity,center_uy,0.13720208406448364 +illusion_1.5L,sr,197,78.8,velocity,lower_ux,1.360815167427063 +illusion_1.5L,sr,197,78.8,velocity,lower_uy,0.382966011762619 +illusion_1.5L,sr,198,79.2,velocity,upper_ux,0.6834395527839661 +illusion_1.5L,sr,198,79.2,velocity,upper_uy,-0.12504622340202332 +illusion_1.5L,sr,198,79.2,velocity,center_ux,0.5939434170722961 +illusion_1.5L,sr,198,79.2,velocity,center_uy,-0.15210238099098206 +illusion_1.5L,sr,198,79.2,velocity,lower_ux,1.3786944150924683 +illusion_1.5L,sr,198,79.2,velocity,lower_uy,0.27892613410949707 +illusion_1.5L,sr,199,79.6,velocity,upper_ux,0.7486889362335205 +illusion_1.5L,sr,199,79.6,velocity,upper_uy,-0.20130546391010284 +illusion_1.5L,sr,199,79.6,velocity,center_ux,0.5358843803405762 +illusion_1.5L,sr,199,79.6,velocity,center_uy,-0.4403770864009857 +illusion_1.5L,sr,199,79.6,velocity,lower_ux,1.340857982635498 +illusion_1.5L,sr,199,79.6,velocity,lower_uy,0.12637165188789368 +illusion_1.5L,sr,0,0.0,force,front_fx,0.0018768107984215021 +illusion_1.5L,sr,0,0.0,force,front_fy,8.185908518498763e-05 +illusion_1.5L,sr,0,0.0,force,upper_fx,0.0014926574658602476 +illusion_1.5L,sr,0,0.0,force,upper_fy,0.0030662589706480503 +illusion_1.5L,sr,0,0.0,force,lower_fx,0.0013449937105178833 +illusion_1.5L,sr,0,0.0,force,lower_fy,-0.0025670307222753763 +illusion_1.5L,sr,1,0.4,force,front_fx,0.0019139143405482173 +illusion_1.5L,sr,1,0.4,force,front_fy,7.113895117072389e-05 +illusion_1.5L,sr,1,0.4,force,upper_fx,0.0018518036231398582 +illusion_1.5L,sr,1,0.4,force,upper_fy,0.0024854440707713366 +illusion_1.5L,sr,1,0.4,force,lower_fx,0.0016947333933785558 +illusion_1.5L,sr,1,0.4,force,lower_fy,-0.002043928485363722 +illusion_1.5L,sr,2,0.8,force,front_fx,0.001959433313459158 +illusion_1.5L,sr,2,0.8,force,front_fy,4.19883981521707e-05 +illusion_1.5L,sr,2,0.8,force,upper_fx,0.0021244266536086798 +illusion_1.5L,sr,2,0.8,force,upper_fy,0.0019119300413876772 +illusion_1.5L,sr,2,0.8,force,lower_fx,0.0019782623276114464 +illusion_1.5L,sr,2,0.8,force,lower_fy,-0.0015799702377989888 +illusion_1.5L,sr,3,1.2,force,front_fx,0.001991639379411936 +illusion_1.5L,sr,3,1.2,force,front_fy,2.2258162061916664e-05 +illusion_1.5L,sr,3,1.2,force,upper_fx,0.002301227068528533 +illusion_1.5L,sr,3,1.2,force,upper_fy,0.0013668076135218143 +illusion_1.5L,sr,3,1.2,force,lower_fx,0.002166816033422947 +illusion_1.5L,sr,3,1.2,force,lower_fy,-0.0011913556372746825 +illusion_1.5L,sr,4,1.6,force,front_fx,0.0020093952771276236 +illusion_1.5L,sr,4,1.6,force,front_fy,1.8822118363459595e-05 +illusion_1.5L,sr,4,1.6,force,upper_fx,0.0024009186308830976 +illusion_1.5L,sr,4,1.6,force,upper_fy,0.000915700918994844 +illusion_1.5L,sr,4,1.6,force,lower_fx,0.002284594113007188 +illusion_1.5L,sr,4,1.6,force,lower_fy,-0.0009154201252385974 +illusion_1.5L,sr,5,2.0,force,front_fx,0.0020195001270622015 +illusion_1.5L,sr,5,2.0,force,front_fy,2.4013254005694762e-05 +illusion_1.5L,sr,5,2.0,force,upper_fx,0.0024489311035722494 +illusion_1.5L,sr,5,2.0,force,upper_fy,0.0005778135964646935 +illusion_1.5L,sr,5,2.0,force,lower_fx,0.002366346074268222 +illusion_1.5L,sr,5,2.0,force,lower_fy,-0.0007449483382515609 +illusion_1.5L,sr,6,2.4,force,front_fx,0.002023643348366022 +illusion_1.5L,sr,6,2.4,force,front_fy,2.0932040570187382e-05 +illusion_1.5L,sr,6,2.4,force,upper_fx,0.002452385611832142 +illusion_1.5L,sr,6,2.4,force,upper_fy,0.0003411256766412407 +illusion_1.5L,sr,6,2.4,force,lower_fx,0.002423860365524888 +illusion_1.5L,sr,6,2.4,force,lower_fy,-0.0006566288066096604 +illusion_1.5L,sr,7,2.8,force,front_fx,0.0020171087235212326 +illusion_1.5L,sr,7,2.8,force,front_fy,-3.441526530423289e-07 +illusion_1.5L,sr,7,2.8,force,upper_fx,0.002422560006380081 +illusion_1.5L,sr,7,2.8,force,upper_fy,0.00017993220535572618 +illusion_1.5L,sr,7,2.8,force,lower_fx,0.002468385733664036 +illusion_1.5L,sr,7,2.8,force,lower_fy,-0.0006061304011382163 +illusion_1.5L,sr,8,3.2,force,front_fx,0.0020151545759290457 +illusion_1.5L,sr,8,3.2,force,front_fy,-3.5356020816834643e-05 +illusion_1.5L,sr,8,3.2,force,upper_fx,0.0023890885058790445 +illusion_1.5L,sr,8,3.2,force,upper_fy,7.857245509512722e-05 +illusion_1.5L,sr,8,3.2,force,lower_fx,0.0025199821684509516 +illusion_1.5L,sr,8,3.2,force,lower_fy,-0.0005667941877618432 +illusion_1.5L,sr,9,3.6,force,front_fx,0.0020087012089788914 +illusion_1.5L,sr,9,3.6,force,front_fy,-7.080200157361105e-05 +illusion_1.5L,sr,9,3.6,force,upper_fx,0.002353264018893242 +illusion_1.5L,sr,9,3.6,force,upper_fy,2.6679523216444068e-05 +illusion_1.5L,sr,9,3.6,force,lower_fx,0.002567939693108201 +illusion_1.5L,sr,9,3.6,force,lower_fy,-0.0005200576852075756 +illusion_1.5L,sr,10,4.0,force,front_fx,0.0020019779913127422 +illusion_1.5L,sr,10,4.0,force,front_fy,-9.890556248137727e-05 +illusion_1.5L,sr,10,4.0,force,upper_fx,0.0023284382186830044 +illusion_1.5L,sr,10,4.0,force,upper_fy,2.015419704548549e-05 +illusion_1.5L,sr,10,4.0,force,lower_fx,0.002612862503156066 +illusion_1.5L,sr,10,4.0,force,lower_fy,-0.0004658379766624421 +illusion_1.5L,sr,11,4.4,force,front_fx,0.001998335123062134 +illusion_1.5L,sr,11,4.4,force,front_fy,-0.00011952038039453328 +illusion_1.5L,sr,11,4.4,force,upper_fx,0.0023170302156358957 +illusion_1.5L,sr,11,4.4,force,upper_fy,5.782870721304789e-05 +illusion_1.5L,sr,11,4.4,force,lower_fx,0.002650847425684333 +illusion_1.5L,sr,11,4.4,force,lower_fy,-0.0004169224121142179 +illusion_1.5L,sr,12,4.8,force,front_fx,0.0019848602823913097 +illusion_1.5L,sr,12,4.8,force,front_fy,-0.00013417071022558957 +illusion_1.5L,sr,12,4.8,force,upper_fx,0.0023046291898936033 +illusion_1.5L,sr,12,4.8,force,upper_fy,0.0001352017279714346 +illusion_1.5L,sr,12,4.8,force,lower_fx,0.0026629737112671137 +illusion_1.5L,sr,12,4.8,force,lower_fy,-0.0003876335977111012 +illusion_1.5L,sr,13,5.2,force,front_fx,0.001970779849216342 +illusion_1.5L,sr,13,5.2,force,front_fy,-0.0001400504115736112 +illusion_1.5L,sr,13,5.2,force,upper_fx,0.0022963315714150667 +illusion_1.5L,sr,13,5.2,force,upper_fy,0.00023788386897649616 +illusion_1.5L,sr,13,5.2,force,lower_fx,0.0026514234486967325 +illusion_1.5L,sr,13,5.2,force,lower_fy,-0.0003793789364863187 +illusion_1.5L,sr,14,5.6,force,front_fx,0.0019553096499294043 +illusion_1.5L,sr,14,5.6,force,front_fy,-0.0001333898981101811 +illusion_1.5L,sr,14,5.6,force,upper_fx,0.0022897333838045597 +illusion_1.5L,sr,14,5.6,force,upper_fy,0.0003485226188786328 +illusion_1.5L,sr,14,5.6,force,lower_fx,0.0026130774058401585 +illusion_1.5L,sr,14,5.6,force,lower_fy,-0.00038365909131243825 +illusion_1.5L,sr,15,6.0,force,front_fx,0.0019440457690507174 +illusion_1.5L,sr,15,6.0,force,front_fy,-0.00011346636165399104 +illusion_1.5L,sr,15,6.0,force,upper_fx,0.0022917878814041615 +illusion_1.5L,sr,15,6.0,force,upper_fy,0.0004486850230023265 +illusion_1.5L,sr,15,6.0,force,lower_fx,0.002557561732828617 +illusion_1.5L,sr,15,6.0,force,lower_fy,-0.0003831989015452564 +illusion_1.5L,sr,16,6.4,force,front_fx,0.0019448832608759403 +illusion_1.5L,sr,16,6.4,force,front_fy,-8.3544036897365e-05 +illusion_1.5L,sr,16,6.4,force,upper_fx,0.0023134981747716665 +illusion_1.5L,sr,16,6.4,force,upper_fy,0.0005232531111687422 +illusion_1.5L,sr,16,6.4,force,lower_fx,0.0025030048564076424 +illusion_1.5L,sr,16,6.4,force,lower_fy,-0.00036291786818765104 +illusion_1.5L,sr,17,6.8,force,front_fx,0.001948589808307588 +illusion_1.5L,sr,17,6.8,force,front_fy,-4.942563464283012e-05 +illusion_1.5L,sr,17,6.8,force,upper_fx,0.00234466721303761 +illusion_1.5L,sr,17,6.8,force,upper_fy,0.0005649257800541818 +illusion_1.5L,sr,17,6.8,force,lower_fx,0.002448104089125991 +illusion_1.5L,sr,17,6.8,force,lower_fy,-0.00032047071726992726 +illusion_1.5L,sr,18,7.2,force,front_fx,0.0019525844836607575 +illusion_1.5L,sr,18,7.2,force,front_fy,-1.4398861821973696e-05 +illusion_1.5L,sr,18,7.2,force,upper_fx,0.002380216959863901 +illusion_1.5L,sr,18,7.2,force,upper_fy,0.0005725911469198763 +illusion_1.5L,sr,18,7.2,force,lower_fx,0.0023960790131241083 +illusion_1.5L,sr,18,7.2,force,lower_fy,-0.0002604207256808877 +illusion_1.5L,sr,19,7.6,force,front_fx,0.0019619830418378115 +illusion_1.5L,sr,19,7.6,force,front_fy,1.852729110396467e-05 +illusion_1.5L,sr,19,7.6,force,upper_fx,0.002425272949039936 +illusion_1.5L,sr,19,7.6,force,upper_fy,0.0005486495210789144 +illusion_1.5L,sr,19,7.6,force,lower_fx,0.0023587108589708805 +illusion_1.5L,sr,19,7.6,force,lower_fy,-0.00019376151612959802 +illusion_1.5L,sr,20,8.0,force,front_fx,0.0019674887880682945 +illusion_1.5L,sr,20,8.0,force,front_fy,4.764175901073031e-05 +illusion_1.5L,sr,20,8.0,force,upper_fx,0.0024666341487318277 +illusion_1.5L,sr,20,8.0,force,upper_fy,0.0005043605342507362 +illusion_1.5L,sr,20,8.0,force,lower_fx,0.002327942056581378 +illusion_1.5L,sr,20,8.0,force,lower_fy,-0.00013509922428056598 +illusion_1.5L,sr,21,8.4,force,front_fx,0.0019762692973017693 +illusion_1.5L,sr,21,8.4,force,front_fy,7.080955401761457e-05 +illusion_1.5L,sr,21,8.4,force,upper_fx,0.0025129071436822414 +illusion_1.5L,sr,21,8.4,force,upper_fy,0.0004504237440414727 +illusion_1.5L,sr,21,8.4,force,lower_fx,0.0023154548835009336 +illusion_1.5L,sr,21,8.4,force,lower_fy,-9.854536619968712e-05 +illusion_1.5L,sr,22,8.8,force,front_fx,0.0019847447983920574 +illusion_1.5L,sr,22,8.8,force,front_fy,8.729752153158188e-05 +illusion_1.5L,sr,22,8.8,force,upper_fx,0.002556645544245839 +illusion_1.5L,sr,22,8.8,force,upper_fy,0.00040160820935852826 +illusion_1.5L,sr,22,8.8,force,lower_fx,0.0023165279999375343 +illusion_1.5L,sr,22,8.8,force,lower_fy,-9.739842062117532e-05 +illusion_1.5L,sr,23,9.2,force,front_fx,0.0019816835410892963 +illusion_1.5L,sr,23,9.2,force,front_fy,9.727604629006237e-05 +illusion_1.5L,sr,23,9.2,force,upper_fx,0.002579553984105587 +illusion_1.5L,sr,23,9.2,force,upper_fy,0.00036941678263247013 +illusion_1.5L,sr,23,9.2,force,lower_fx,0.0023161268327385187 +illusion_1.5L,sr,23,9.2,force,lower_fy,-0.0001394680584780872 +illusion_1.5L,sr,24,9.6,force,front_fx,0.0019749202765524387 +illusion_1.5L,sr,24,9.6,force,front_fy,0.00010011746780946851 +illusion_1.5L,sr,24,9.6,force,upper_fx,0.002583555644378066 +illusion_1.5L,sr,24,9.6,force,upper_fy,0.00035485668922774494 +illusion_1.5L,sr,24,9.6,force,lower_fx,0.002318715211004019 +illusion_1.5L,sr,24,9.6,force,lower_fy,-0.00021914577519055456 +illusion_1.5L,sr,25,10.0,force,front_fx,0.001964668743312359 +illusion_1.5L,sr,25,10.0,force,front_fy,9.559989848639816e-05 +illusion_1.5L,sr,25,10.0,force,upper_fx,0.0025649338494986296 +illusion_1.5L,sr,25,10.0,force,upper_fy,0.0003523547202348709 +illusion_1.5L,sr,25,10.0,force,lower_fx,0.002321955282241106 +illusion_1.5L,sr,25,10.0,force,lower_fy,-0.0003203204250894487 +illusion_1.5L,sr,26,10.4,force,front_fx,0.0019554337486624718 +illusion_1.5L,sr,26,10.4,force,front_fy,8.174651156878099e-05 +illusion_1.5L,sr,26,10.4,force,upper_fx,0.0025291461497545242 +illusion_1.5L,sr,26,10.4,force,upper_fy,0.00034824296017177403 +illusion_1.5L,sr,26,10.4,force,lower_fx,0.0023293981794267893 +illusion_1.5L,sr,26,10.4,force,lower_fy,-0.00042214160203002393 +illusion_1.5L,sr,27,10.8,force,front_fx,0.001956724561750889 +illusion_1.5L,sr,27,10.8,force,front_fy,6.025641050655395e-05 +illusion_1.5L,sr,27,10.8,force,upper_fx,0.0024920913856476545 +illusion_1.5L,sr,27,10.8,force,upper_fy,0.00033057929249480367 +illusion_1.5L,sr,27,10.8,force,lower_fx,0.002352325711399317 +illusion_1.5L,sr,27,10.8,force,lower_fy,-0.0005023130215704441 +illusion_1.5L,sr,28,11.2,force,front_fx,0.0019614696502685547 +illusion_1.5L,sr,28,11.2,force,front_fy,3.3331209124298766e-05 +illusion_1.5L,sr,28,11.2,force,upper_fx,0.002453966997563839 +illusion_1.5L,sr,28,11.2,force,upper_fy,0.00029457718483172357 +illusion_1.5L,sr,28,11.2,force,lower_fx,0.0023833499290049076 +illusion_1.5L,sr,28,11.2,force,lower_fy,-0.0005497438833117485 +illusion_1.5L,sr,29,11.6,force,front_fx,0.001966595882549882 +illusion_1.5L,sr,29,11.6,force,front_fy,5.7938914324040525e-06 +illusion_1.5L,sr,29,11.6,force,upper_fx,0.0024175590369850397 +illusion_1.5L,sr,29,11.6,force,upper_fy,0.00024524726904928684 +illusion_1.5L,sr,29,11.6,force,lower_fx,0.0024177159648388624 +illusion_1.5L,sr,29,11.6,force,lower_fy,-0.0005583843449130654 +illusion_1.5L,sr,30,12.0,force,front_fx,0.001975972205400467 +illusion_1.5L,sr,30,12.0,force,front_fy,-1.9544053429854102e-05 +illusion_1.5L,sr,30,12.0,force,upper_fx,0.0023933635093271732 +illusion_1.5L,sr,30,12.0,force,upper_fy,0.0001930141297634691 +illusion_1.5L,sr,30,12.0,force,lower_fx,0.0024584720376878977 +illusion_1.5L,sr,30,12.0,force,lower_fy,-0.0005330996355041862 +illusion_1.5L,sr,31,12.4,force,front_fx,0.0019814190454781055 +illusion_1.5L,sr,31,12.4,force,front_fy,-4.0298389649251476e-05 +illusion_1.5L,sr,31,12.4,force,upper_fx,0.0023754932917654514 +illusion_1.5L,sr,31,12.4,force,upper_fy,0.0001546035782666877 +illusion_1.5L,sr,31,12.4,force,lower_fx,0.0024947107303887606 +illusion_1.5L,sr,31,12.4,force,lower_fy,-0.00048550564679317176 +illusion_1.5L,sr,32,12.8,force,front_fx,0.001987636787816882 +illusion_1.5L,sr,32,12.8,force,front_fy,-5.594301546807401e-05 +illusion_1.5L,sr,32,12.8,force,upper_fx,0.002370604546740651 +illusion_1.5L,sr,32,12.8,force,upper_fy,0.000142629723995924 +illusion_1.5L,sr,32,12.8,force,lower_fx,0.002529785968363285 +illusion_1.5L,sr,32,12.8,force,lower_fy,-0.0004310201620683074 +illusion_1.5L,sr,33,13.2,force,front_fx,0.001993851736187935 +illusion_1.5L,sr,33,13.2,force,front_fy,-6.579141336260363e-05 +illusion_1.5L,sr,33,13.2,force,upper_fx,0.002377359662204981 +illusion_1.5L,sr,33,13.2,force,upper_fy,0.00016628092271275818 +illusion_1.5L,sr,33,13.2,force,lower_fx,0.0025600981898605824 +illusion_1.5L,sr,33,13.2,force,lower_fy,-0.00038468686398118734 +illusion_1.5L,sr,34,13.6,force,front_fx,0.0019900440238416195 +illusion_1.5L,sr,34,13.6,force,front_fy,-6.975918950047344e-05 +illusion_1.5L,sr,34,13.6,force,upper_fx,0.0023797641042619944 +illusion_1.5L,sr,34,13.6,force,upper_fy,0.00022542070655617863 +illusion_1.5L,sr,34,13.6,force,lower_fx,0.0025682172272354364 +illusion_1.5L,sr,34,13.6,force,lower_fy,-0.00035591103369370103 +illusion_1.5L,sr,35,14.0,force,front_fx,0.001982463989406824 +illusion_1.5L,sr,35,14.0,force,front_fy,-6.775176007067785e-05 +illusion_1.5L,sr,35,14.0,force,upper_fx,0.0023823115043342113 +illusion_1.5L,sr,35,14.0,force,upper_fy,0.00030691002029925585 +illusion_1.5L,sr,35,14.0,force,lower_fx,0.0025580301880836487 +illusion_1.5L,sr,35,14.0,force,lower_fy,-0.0003426758339628577 +illusion_1.5L,sr,36,14.4,force,front_fx,0.0019741954747587442 +illusion_1.5L,sr,36,14.4,force,front_fy,-5.8934474509442225e-05 +illusion_1.5L,sr,36,14.4,force,upper_fx,0.0023859571665525436 +illusion_1.5L,sr,36,14.4,force,upper_fy,0.00039242394268512726 +illusion_1.5L,sr,36,14.4,force,lower_fx,0.002531731966882944 +illusion_1.5L,sr,36,14.4,force,lower_fy,-0.0003354031650815159 +illusion_1.5L,sr,37,14.8,force,front_fx,0.00196722405962646 +illusion_1.5L,sr,37,14.8,force,front_fy,-4.423754580784589e-05 +illusion_1.5L,sr,37,14.8,force,upper_fx,0.002392598893493414 +illusion_1.5L,sr,37,14.8,force,upper_fy,0.00046153151197358966 +illusion_1.5L,sr,37,14.8,force,lower_fx,0.002495008520781994 +illusion_1.5L,sr,37,14.8,force,lower_fy,-0.0003238778153900057 +illusion_1.5L,sr,38,15.2,force,front_fx,0.001969150733202696 +illusion_1.5L,sr,38,15.2,force,front_fy,-2.4926192054408602e-05 +illusion_1.5L,sr,38,15.2,force,upper_fx,0.0024117978755384684 +illusion_1.5L,sr,38,15.2,force,upper_fy,0.0005015047499909997 +illusion_1.5L,sr,38,15.2,force,lower_fx,0.0024629938416182995 +illusion_1.5L,sr,38,15.2,force,lower_fy,-0.0003002768789883703 +illusion_1.5L,sr,39,15.6,force,front_fx,0.0019751512445509434 +illusion_1.5L,sr,39,15.6,force,front_fy,-4.389647074276581e-06 +illusion_1.5L,sr,39,15.6,force,upper_fx,0.0024378709495067596 +illusion_1.5L,sr,39,15.6,force,upper_fy,0.0005085080629214644 +illusion_1.5L,sr,39,15.6,force,lower_fx,0.002435932867228985 +illusion_1.5L,sr,39,15.6,force,lower_fy,-0.00026781525230035186 +illusion_1.5L,sr,40,16.0,force,front_fx,0.0019786509219557047 +illusion_1.5L,sr,40,16.0,force,front_fy,1.487454392190557e-05 +illusion_1.5L,sr,40,16.0,force,upper_fx,0.002463206648826599 +illusion_1.5L,sr,40,16.0,force,upper_fy,0.00048819463700056076 +illusion_1.5L,sr,40,16.0,force,lower_fx,0.00241173361428082 +illusion_1.5L,sr,40,16.0,force,lower_fy,-0.00023385268286801875 +illusion_1.5L,sr,41,16.4,force,front_fx,0.0019867410883307457 +illusion_1.5L,sr,41,16.4,force,front_fy,3.0608462111558765e-05 +illusion_1.5L,sr,41,16.4,force,upper_fx,0.0024935982655733824 +illusion_1.5L,sr,41,16.4,force,upper_fy,0.0004500999639276415 +illusion_1.5L,sr,41,16.4,force,lower_fx,0.0024000771809369326 +illusion_1.5L,sr,41,16.4,force,lower_fy,-0.00020978441170882434 +illusion_1.5L,sr,42,16.8,force,front_fx,0.001984011149033904 +illusion_1.5L,sr,42,16.8,force,front_fy,4.26563092332799e-05 +illusion_1.5L,sr,42,16.8,force,upper_fx,0.002509470796212554 +illusion_1.5L,sr,42,16.8,force,upper_fy,0.00040715490467846394 +illusion_1.5L,sr,42,16.8,force,lower_fx,0.002384381601586938 +illusion_1.5L,sr,42,16.8,force,lower_fy,-0.0002053901698673144 +illusion_1.5L,sr,43,17.2,force,front_fx,0.0019829419907182455 +illusion_1.5L,sr,43,17.2,force,front_fy,5.124416566104628e-05 +illusion_1.5L,sr,43,17.2,force,upper_fx,0.002523115836083889 +illusion_1.5L,sr,43,17.2,force,upper_fy,0.00037145480746403337 +illusion_1.5L,sr,43,17.2,force,lower_fx,0.0023783287033438683 +illusion_1.5L,sr,43,17.2,force,lower_fy,-0.0002265687653562054 +illusion_1.5L,sr,44,17.6,force,front_fx,0.0019840931054204702 +illusion_1.5L,sr,44,17.6,force,front_fy,5.556505493586883e-05 +illusion_1.5L,sr,44,17.6,force,upper_fx,0.002532482147216797 +illusion_1.5L,sr,44,17.6,force,upper_fy,0.0003486331843305379 +illusion_1.5L,sr,44,17.6,force,lower_fx,0.002381388796493411 +illusion_1.5L,sr,44,17.6,force,lower_fy,-0.00027137959841638803 +illusion_1.5L,sr,45,18.0,force,front_fx,0.001978188520297408 +illusion_1.5L,sr,45,18.0,force,front_fy,5.491731644724496e-05 +illusion_1.5L,sr,45,18.0,force,upper_fx,0.0025226115249097347 +illusion_1.5L,sr,45,18.0,force,upper_fy,0.00033894655643962324 +illusion_1.5L,sr,45,18.0,force,lower_fx,0.002379501471295953 +illusion_1.5L,sr,45,18.0,force,lower_fy,-0.00033217002055607736 +illusion_1.5L,sr,46,18.4,force,front_fx,0.0019710934720933437 +illusion_1.5L,sr,46,18.4,force,front_fy,4.848617027164437e-05 +illusion_1.5L,sr,46,18.4,force,upper_fx,0.002500485396012664 +illusion_1.5L,sr,46,18.4,force,upper_fy,0.00033348039141856134 +illusion_1.5L,sr,46,18.4,force,lower_fx,0.0023785550147295 +illusion_1.5L,sr,46,18.4,force,lower_fy,-0.00039464779547415674 +illusion_1.5L,sr,47,18.8,force,front_fx,0.0019663383718580008 +illusion_1.5L,sr,47,18.8,force,front_fy,3.752163320314139e-05 +illusion_1.5L,sr,47,18.8,force,upper_fx,0.0024723606184124947 +illusion_1.5L,sr,47,18.8,force,upper_fy,0.0003241454833187163 +illusion_1.5L,sr,47,18.8,force,lower_fx,0.002382142934948206 +illusion_1.5L,sr,47,18.8,force,lower_fy,-0.00044396883458830416 +illusion_1.5L,sr,48,19.2,force,front_fx,0.0019622354302555323 +illusion_1.5L,sr,48,19.2,force,front_fy,2.3261898604687303e-05 +illusion_1.5L,sr,48,19.2,force,upper_fx,0.0024405098520219326 +illusion_1.5L,sr,48,19.2,force,upper_fy,0.0003058786678593606 +illusion_1.5L,sr,48,19.2,force,lower_fx,0.002388354856520891 +illusion_1.5L,sr,48,19.2,force,lower_fy,-0.0004719543503597379 +illusion_1.5L,sr,49,19.6,force,front_fx,0.0019653430208563805 +illusion_1.5L,sr,49,19.6,force,front_fy,8.128807166940533e-06 +illusion_1.5L,sr,49,19.6,force,upper_fx,0.002417347626760602 +illusion_1.5L,sr,49,19.6,force,upper_fy,0.00028001339524053037 +illusion_1.5L,sr,49,19.6,force,lower_fx,0.002405220177024603 +illusion_1.5L,sr,49,19.6,force,lower_fy,-0.00047472064034081995 +illusion_1.5L,sr,50,20.0,force,front_fx,0.0019715900998562574 +illusion_1.5L,sr,50,20.0,force,front_fy,-6.252361345104873e-06 +illusion_1.5L,sr,50,20.0,force,upper_fx,0.0024015570525079966 +illusion_1.5L,sr,50,20.0,force,upper_fy,0.00025336642283946276 +illusion_1.5L,sr,50,20.0,force,lower_fx,0.0024275074247270823 +illusion_1.5L,sr,50,20.0,force,lower_fy,-0.00045805133413523436 +illusion_1.5L,sr,51,20.4,force,front_fx,0.001973026664927602 +illusion_1.5L,sr,51,20.4,force,front_fy,-1.8680553694139235e-05 +illusion_1.5L,sr,51,20.4,force,upper_fx,0.0023861422669142485 +illusion_1.5L,sr,51,20.4,force,upper_fy,0.00023539648100268096 +illusion_1.5L,sr,51,20.4,force,lower_fx,0.002445350168272853 +illusion_1.5L,sr,51,20.4,force,lower_fy,-0.0004302868328522891 +illusion_1.5L,sr,52,20.8,force,front_fx,0.0019744255114346743 +illusion_1.5L,sr,52,20.8,force,front_fy,-2.8921709599671885e-05 +illusion_1.5L,sr,52,20.8,force,upper_fx,0.002376301446929574 +illusion_1.5L,sr,52,20.8,force,upper_fy,0.00023253922699950635 +illusion_1.5L,sr,52,20.8,force,lower_fx,0.0024616518057882786 +illusion_1.5L,sr,52,20.8,force,lower_fy,-0.00040024652844294906 +illusion_1.5L,sr,53,21.2,force,front_fx,0.001971050864085555 +illusion_1.5L,sr,53,21.2,force,front_fy,-3.639645001385361e-05 +illusion_1.5L,sr,53,21.2,force,upper_fx,0.002366184489801526 +illusion_1.5L,sr,53,21.2,force,upper_fy,0.00024912034859880805 +illusion_1.5L,sr,53,21.2,force,lower_fx,0.0024685622192919254 +illusion_1.5L,sr,53,21.2,force,lower_fy,-0.00037616948247887194 +illusion_1.5L,sr,54,21.6,force,front_fx,0.001966578885912895 +illusion_1.5L,sr,54,21.6,force,front_fy,-4.0149981941794977e-05 +illusion_1.5L,sr,54,21.6,force,upper_fx,0.002359462436288595 +illusion_1.5L,sr,54,21.6,force,upper_fy,0.00028332899091765285 +illusion_1.5L,sr,54,21.6,force,lower_fx,0.0024683659430593252 +illusion_1.5L,sr,54,21.6,force,lower_fy,-0.0003606652026064694 +illusion_1.5L,sr,55,22.0,force,front_fx,0.001966160023584962 +illusion_1.5L,sr,55,22.0,force,front_fy,-4.003320282208733e-05 +illusion_1.5L,sr,55,22.0,force,upper_fx,0.0023617465049028397 +illusion_1.5L,sr,55,22.0,force,upper_fy,0.0003273511247243732 +illusion_1.5L,sr,55,22.0,force,lower_fx,0.002465972676873207 +illusion_1.5L,sr,55,22.0,force,lower_fy,-0.00035241973819211125 +illusion_1.5L,sr,56,22.4,force,front_fx,0.0019622042309492826 +illusion_1.5L,sr,56,22.4,force,front_fy,-3.520853351801634e-05 +illusion_1.5L,sr,56,22.4,force,upper_fx,0.002361797261983156 +illusion_1.5L,sr,56,22.4,force,upper_fy,0.0003741661203093827 +illusion_1.5L,sr,56,22.4,force,lower_fx,0.0024508426431566477 +illusion_1.5L,sr,56,22.4,force,lower_fy,-0.0003468672512099147 +illusion_1.5L,sr,57,22.8,force,front_fx,0.001957150176167488 +illusion_1.5L,sr,57,22.8,force,front_fy,-2.7073590899817646e-05 +illusion_1.5L,sr,57,22.8,force,upper_fx,0.0023626931942999363 +illusion_1.5L,sr,57,22.8,force,upper_fy,0.000412404362577945 +illusion_1.5L,sr,57,22.8,force,lower_fx,0.002427940024062991 +illusion_1.5L,sr,57,22.8,force,lower_fy,-0.00033855889341793954 +illusion_1.5L,sr,58,23.2,force,front_fx,0.001955423504114151 +illusion_1.5L,sr,58,23.2,force,front_fy,-1.6077925465651788e-05 +illusion_1.5L,sr,58,23.2,force,upper_fx,0.002369254594668746 +illusion_1.5L,sr,58,23.2,force,upper_fy,0.0004353119002189487 +illusion_1.5L,sr,58,23.2,force,lower_fx,0.0024053261149674654 +illusion_1.5L,sr,58,23.2,force,lower_fy,-0.0003228113055229187 +illusion_1.5L,sr,59,23.6,force,front_fx,0.0019528742413967848 +illusion_1.5L,sr,59,23.6,force,front_fy,-4.459037882043049e-06 +illusion_1.5L,sr,59,23.6,force,upper_fx,0.002376476302742958 +illusion_1.5L,sr,59,23.6,force,upper_fy,0.00044038824853487313 +illusion_1.5L,sr,59,23.6,force,lower_fx,0.002381144557148218 +illusion_1.5L,sr,59,23.6,force,lower_fy,-0.00030226437957026064 +illusion_1.5L,sr,60,24.0,force,front_fx,0.0019555711187422276 +illusion_1.5L,sr,60,24.0,force,front_fy,7.394809927063761e-06 +illusion_1.5L,sr,60,24.0,force,upper_fx,0.002391359768807888 +illusion_1.5L,sr,60,24.0,force,upper_fy,0.0004305478068999946 +illusion_1.5L,sr,60,24.0,force,lower_fx,0.0023653609678149223 +illusion_1.5L,sr,60,24.0,force,lower_fy,-0.00027965710614807904 +illusion_1.5L,sr,61,24.4,force,front_fx,0.0019611704628914595 +illusion_1.5L,sr,61,24.4,force,front_fy,1.7771351849660277e-05 +illusion_1.5L,sr,61,24.4,force,upper_fx,0.002410461660474539 +illusion_1.5L,sr,61,24.4,force,upper_fy,0.0004114727780688554 +illusion_1.5L,sr,61,24.4,force,lower_fx,0.0023570158518850803 +illusion_1.5L,sr,61,24.4,force,lower_fy,-0.00026329298270866275 +illusion_1.5L,sr,62,24.8,force,front_fx,0.001963208429515362 +illusion_1.5L,sr,62,24.8,force,front_fy,2.648062218213454e-05 +illusion_1.5L,sr,62,24.8,force,upper_fx,0.0024252901785075665 +illusion_1.5L,sr,62,24.8,force,upper_fy,0.00039226695662364364 +illusion_1.5L,sr,62,24.8,force,lower_fx,0.0023498516529798508 +illusion_1.5L,sr,62,24.8,force,lower_fy,-0.0002594593388494104 +illusion_1.5L,sr,63,25.2,force,front_fx,0.0019599073566496372 +illusion_1.5L,sr,63,25.2,force,front_fy,3.264233600930311e-05 +illusion_1.5L,sr,63,25.2,force,upper_fx,0.0024301165249198675 +illusion_1.5L,sr,63,25.2,force,upper_fy,0.0003750405157916248 +illusion_1.5L,sr,63,25.2,force,lower_fx,0.0023399146739393473 +illusion_1.5L,sr,63,25.2,force,lower_fy,-0.000269873533397913 +illusion_1.5L,sr,64,25.6,force,front_fx,0.0019551522564142942 +illusion_1.5L,sr,64,25.6,force,front_fy,3.5769367968896404e-05 +illusion_1.5L,sr,64,25.6,force,upper_fx,0.002428850159049034 +illusion_1.5L,sr,64,25.6,force,upper_fy,0.00036426898441277444 +illusion_1.5L,sr,64,25.6,force,lower_fx,0.0023323085624724627 +illusion_1.5L,sr,64,25.6,force,lower_fy,-0.0002949712215922773 +illusion_1.5L,sr,65,26.0,force,front_fx,0.0019499716581776738 +illusion_1.5L,sr,65,26.0,force,front_fy,3.566618761396967e-05 +illusion_1.5L,sr,65,26.0,force,upper_fx,0.002420777454972267 +illusion_1.5L,sr,65,26.0,force,upper_fy,0.0003578347968868911 +illusion_1.5L,sr,65,26.0,force,lower_fx,0.0023269648663699627 +illusion_1.5L,sr,65,26.0,force,lower_fy,-0.00032903492683544755 +illusion_1.5L,sr,66,26.4,force,front_fx,0.0019502467475831509 +illusion_1.5L,sr,66,26.4,force,front_fy,3.207293411833234e-05 +illusion_1.5L,sr,66,26.4,force,upper_fx,0.0024135566782206297 +illusion_1.5L,sr,66,26.4,force,upper_fy,0.00035144135472364724 +illusion_1.5L,sr,66,26.4,force,lower_fx,0.0023310165852308273 +illusion_1.5L,sr,66,26.4,force,lower_fy,-0.00036484788870438933 +illusion_1.5L,sr,67,26.8,force,front_fx,0.0019488274119794369 +illusion_1.5L,sr,67,26.8,force,front_fy,2.5817796995397657e-05 +illusion_1.5L,sr,67,26.8,force,upper_fx,0.002398948883637786 +illusion_1.5L,sr,67,26.8,force,upper_fy,0.00034298744867555797 +illusion_1.5L,sr,67,26.8,force,lower_fx,0.0023350785486400127 +illusion_1.5L,sr,67,26.8,force,lower_fy,-0.0003961194306612015 +illusion_1.5L,sr,68,27.2,force,front_fx,0.0019483326468616724 +illusion_1.5L,sr,68,27.2,force,front_fy,1.7267338989768177e-05 +illusion_1.5L,sr,68,27.2,force,upper_fx,0.0023823059163987637 +illusion_1.5L,sr,68,27.2,force,upper_fy,0.00032978609669953585 +illusion_1.5L,sr,68,27.2,force,lower_fx,0.0023420245852321386 +illusion_1.5L,sr,68,27.2,force,lower_fy,-0.0004178851086180657 +illusion_1.5L,sr,69,27.6,force,front_fx,0.001945780124515295 +illusion_1.5L,sr,69,27.6,force,front_fy,6.957605819479795e-06 +illusion_1.5L,sr,69,27.6,force,upper_fx,0.002361752325668931 +illusion_1.5L,sr,69,27.6,force,upper_fy,0.0003111869446001947 +illusion_1.5L,sr,69,27.6,force,lower_fx,0.002347836969420314 +illusion_1.5L,sr,69,27.6,force,lower_fy,-0.000425028963945806 +illusion_1.5L,sr,70,28.0,force,front_fx,0.0019438988529145718 +illusion_1.5L,sr,70,28.0,force,front_fy,-3.540086936482112e-06 +illusion_1.5L,sr,70,28.0,force,upper_fx,0.0023431547451764345 +illusion_1.5L,sr,70,28.0,force,upper_fy,0.0002917138917837292 +illusion_1.5L,sr,70,28.0,force,lower_fx,0.002355550415813923 +illusion_1.5L,sr,70,28.0,force,lower_fy,-0.0004213590582367033 +illusion_1.5L,sr,71,28.4,force,front_fx,0.00194553064648062 +illusion_1.5L,sr,71,28.4,force,front_fy,-1.2560443792608567e-05 +illusion_1.5L,sr,71,28.4,force,upper_fx,0.002331656403839588 +illusion_1.5L,sr,71,28.4,force,upper_fy,0.0002757095790002495 +illusion_1.5L,sr,71,28.4,force,lower_fx,0.0023678233847022057 +illusion_1.5L,sr,71,28.4,force,lower_fy,-0.00040926376823335886 +illusion_1.5L,sr,72,28.8,force,front_fx,0.0019502146169543266 +illusion_1.5L,sr,72,28.8,force,front_fy,-1.9842625988530926e-05 +illusion_1.5L,sr,72,28.8,force,upper_fx,0.0023277336731553078 +illusion_1.5L,sr,72,28.8,force,upper_fy,0.0002684086502995342 +illusion_1.5L,sr,72,28.8,force,lower_fx,0.0023833387531340122 +illusion_1.5L,sr,72,28.8,force,lower_fy,-0.00039418888627551496 +illusion_1.5L,sr,73,29.2,force,front_fx,0.0019491034327074885 +illusion_1.5L,sr,73,29.2,force,front_fy,-2.513560866646003e-05 +illusion_1.5L,sr,73,29.2,force,upper_fx,0.002321255160495639 +illusion_1.5L,sr,73,29.2,force,upper_fy,0.00027427758323028684 +illusion_1.5L,sr,73,29.2,force,lower_fx,0.002390519483014941 +illusion_1.5L,sr,73,29.2,force,lower_fy,-0.00038113503251224756 +illusion_1.5L,sr,74,29.6,force,front_fx,0.0019472293788567185 +illusion_1.5L,sr,74,29.6,force,front_fy,-2.8197247956995852e-05 +illusion_1.5L,sr,74,29.6,force,upper_fx,0.0023165291640907526 +illusion_1.5L,sr,74,29.6,force,upper_fy,0.00029221316799521446 +illusion_1.5L,sr,74,29.6,force,lower_fx,0.0023925371933728456 +illusion_1.5L,sr,74,29.6,force,lower_fy,-0.00037162459921091795 +illusion_1.5L,sr,75,30.0,force,front_fx,0.0019428672967478633 +illusion_1.5L,sr,75,30.0,force,front_fy,-2.8630727683776058e-05 +illusion_1.5L,sr,75,30.0,force,upper_fx,0.002311923075467348 +illusion_1.5L,sr,75,30.0,force,upper_fy,0.0003192087751813233 +illusion_1.5L,sr,75,30.0,force,lower_fx,0.002387181855738163 +illusion_1.5L,sr,75,30.0,force,lower_fy,-0.00036535755498334765 +illusion_1.5L,sr,76,30.4,force,front_fx,0.0019379752920940518 +illusion_1.5L,sr,76,30.4,force,front_fy,-2.617859536258038e-05 +illusion_1.5L,sr,76,30.4,force,upper_fx,0.002308556344360113 +illusion_1.5L,sr,76,30.4,force,upper_fy,0.0003496152930893004 +illusion_1.5L,sr,76,30.4,force,lower_fx,0.0023757810704410076 +illusion_1.5L,sr,76,30.4,force,lower_fy,-0.00035958760417997837 +illusion_1.5L,sr,77,30.8,force,front_fx,0.0019386985804885626 +illusion_1.5L,sr,77,30.8,force,front_fy,-2.078714533126913e-05 +illusion_1.5L,sr,77,30.8,force,upper_fx,0.002314251847565174 +illusion_1.5L,sr,77,30.8,force,upper_fy,0.000376931915525347 +illusion_1.5L,sr,77,30.8,force,lower_fx,0.0023669027723371983 +illusion_1.5L,sr,77,30.8,force,lower_fy,-0.00035081407986581326 +illusion_1.5L,sr,78,31.2,force,front_fx,0.0019392009126022458 +illusion_1.5L,sr,78,31.2,force,front_fy,-1.3382858924160246e-05 +illusion_1.5L,sr,78,31.2,force,upper_fx,0.0023213226813822985 +illusion_1.5L,sr,78,31.2,force,upper_fy,0.0003977494197897613 +illusion_1.5L,sr,78,31.2,force,lower_fx,0.002354651689529419 +illusion_1.5L,sr,78,31.2,force,lower_fy,-0.00033831020118668675 +illusion_1.5L,sr,79,31.6,force,front_fx,0.0019374110270291567 +illusion_1.5L,sr,79,31.6,force,front_fy,-4.9875725380843505e-06 +illusion_1.5L,sr,79,31.6,force,upper_fx,0.002327116671949625 +illusion_1.5L,sr,79,31.6,force,upper_fy,0.00040935954893939197 +illusion_1.5L,sr,79,31.6,force,lower_fx,0.002338520949706435 +illusion_1.5L,sr,79,31.6,force,lower_fy,-0.0003223903477191925 +illusion_1.5L,sr,80,32.0,force,front_fx,0.0019379656296223402 +illusion_1.5L,sr,80,32.0,force,front_fy,3.725773467522231e-06 +illusion_1.5L,sr,80,32.0,force,upper_fx,0.002336204284802079 +illusion_1.5L,sr,80,32.0,force,upper_fy,0.00041100618545897305 +illusion_1.5L,sr,80,32.0,force,lower_fx,0.0023253201507031918 +illusion_1.5L,sr,80,32.0,force,lower_fy,-0.00030462208087556064 +illusion_1.5L,sr,81,32.4,force,front_fx,0.0019360862206667662 +illusion_1.5L,sr,81,32.4,force,front_fy,1.1757771972042974e-05 +illusion_1.5L,sr,81,32.4,force,upper_fx,0.0023426490370184183 +illusion_1.5L,sr,81,32.4,force,upper_fy,0.0004053116717841476 +illusion_1.5L,sr,81,32.4,force,lower_fx,0.0023111721966415644 +illusion_1.5L,sr,81,32.4,force,lower_fy,-0.00028962106443941593 +illusion_1.5L,sr,82,32.8,force,front_fx,0.0019364539766684175 +illusion_1.5L,sr,82,32.8,force,front_fy,1.8385620933258906e-05 +illusion_1.5L,sr,82,32.8,force,upper_fx,0.002351270290091634 +illusion_1.5L,sr,82,32.8,force,upper_fy,0.0003951953840442002 +illusion_1.5L,sr,82,32.8,force,lower_fx,0.0023025148548185825 +illusion_1.5L,sr,82,32.8,force,lower_fy,-0.00028058962197974324 +illusion_1.5L,sr,83,33.2,force,front_fx,0.001940343645401299 +illusion_1.5L,sr,83,33.2,force,front_fy,2.305749148945324e-05 +illusion_1.5L,sr,83,33.2,force,upper_fx,0.0023628391791135073 +illusion_1.5L,sr,83,33.2,force,upper_fy,0.00038435825263150036 +illusion_1.5L,sr,83,33.2,force,lower_fx,0.002301604952663183 +illusion_1.5L,sr,83,33.2,force,lower_fy,-0.0002809623838402331 +illusion_1.5L,sr,84,33.6,force,front_fx,0.0019390443339943886 +illusion_1.5L,sr,84,33.6,force,front_fy,2.5575847757863812e-05 +illusion_1.5L,sr,84,33.6,force,upper_fx,0.0023660100996494293 +illusion_1.5L,sr,84,33.6,force,upper_fy,0.0003761381667573005 +illusion_1.5L,sr,84,33.6,force,lower_fx,0.002298033097758889 +illusion_1.5L,sr,84,33.6,force,lower_fy,-0.00029286174685694277 +illusion_1.5L,sr,85,34.0,force,front_fx,0.0019367593340575695 +illusion_1.5L,sr,85,34.0,force,front_fy,2.5885714421747252e-05 +illusion_1.5L,sr,85,34.0,force,upper_fx,0.0023638082202523947 +illusion_1.5L,sr,85,34.0,force,upper_fy,0.00036989632644690573 +illusion_1.5L,sr,85,34.0,force,lower_fx,0.0022953730076551437 +illusion_1.5L,sr,85,34.0,force,lower_fy,-0.0003137389139737934 +illusion_1.5L,sr,86,34.4,force,front_fx,0.0019333186792209744 +illusion_1.5L,sr,86,34.4,force,front_fy,2.3719394448562525e-05 +illusion_1.5L,sr,86,34.4,force,upper_fx,0.0023562235292047262 +illusion_1.5L,sr,86,34.4,force,upper_fy,0.00036395847564563155 +illusion_1.5L,sr,86,34.4,force,lower_fx,0.00229356880299747 +illusion_1.5L,sr,86,34.4,force,lower_fy,-0.0003396357933524996 +illusion_1.5L,sr,87,34.8,force,front_fx,0.0019290500786155462 +illusion_1.5L,sr,87,34.8,force,front_fy,1.9449224055279046e-05 +illusion_1.5L,sr,87,34.8,force,upper_fx,0.0023434574250131845 +illusion_1.5L,sr,87,34.8,force,upper_fy,0.00035609371843747795 +illusion_1.5L,sr,87,34.8,force,lower_fx,0.0022921287454664707 +illusion_1.5L,sr,87,34.8,force,lower_fy,-0.00036532882950268686 +illusion_1.5L,sr,88,35.2,force,front_fx,0.0019298961851745844 +illusion_1.5L,sr,88,35.2,force,front_fy,1.3259103070595302e-05 +illusion_1.5L,sr,88,35.2,force,upper_fx,0.002334163524210453 +illusion_1.5L,sr,88,35.2,force,upper_fy,0.00034376673283986747 +illusion_1.5L,sr,88,35.2,force,lower_fx,0.002298469888046384 +illusion_1.5L,sr,88,35.2,force,lower_fy,-0.0003860634460579604 +illusion_1.5L,sr,89,35.6,force,front_fx,0.0019316754769533873 +illusion_1.5L,sr,89,35.6,force,front_fy,6.119485533417901e-06 +illusion_1.5L,sr,89,35.6,force,upper_fx,0.002324530854821205 +illusion_1.5L,sr,89,35.6,force,upper_fy,0.00032831073622219265 +illusion_1.5L,sr,89,35.6,force,lower_fx,0.0023070746101439 +illusion_1.5L,sr,89,35.6,force,lower_fy,-0.0003997294697910547 +illusion_1.5L,sr,90,36.0,force,front_fx,0.0019306093454360962 +illusion_1.5L,sr,90,36.0,force,front_fy,-1.2348843938525533e-06 +illusion_1.5L,sr,90,36.0,force,upper_fx,0.0023117228411138058 +illusion_1.5L,sr,90,36.0,force,upper_fy,0.0003115852305199951 +illusion_1.5L,sr,90,36.0,force,lower_fx,0.0023132949136197567 +illusion_1.5L,sr,90,36.0,force,lower_fy,-0.0004059226193930954 +illusion_1.5L,sr,91,36.4,force,front_fx,0.0019312186632305384 +illusion_1.5L,sr,91,36.4,force,front_fy,-7.922290023998357e-06 +illusion_1.5L,sr,91,36.4,force,upper_fx,0.0023017912171781063 +illusion_1.5L,sr,91,36.4,force,upper_fy,0.0002962519647553563 +illusion_1.5L,sr,91,36.4,force,lower_fx,0.0023214411921799183 +illusion_1.5L,sr,91,36.4,force,lower_fy,-0.00040463171899318695 +illusion_1.5L,sr,92,36.8,force,front_fx,0.001929455203935504 +illusion_1.5L,sr,92,36.8,force,front_fy,-1.3706503523280844e-05 +illusion_1.5L,sr,92,36.8,force,upper_fx,0.0022910714615136385 +illusion_1.5L,sr,92,36.8,force,upper_fy,0.00028599455254152417 +illusion_1.5L,sr,92,36.8,force,lower_fx,0.002326469635590911 +illusion_1.5L,sr,92,36.8,force,lower_fy,-0.0003988217213191092 +illusion_1.5L,sr,93,37.2,force,front_fx,0.0019288361072540283 +illusion_1.5L,sr,93,37.2,force,front_fy,-1.8144310161005706e-05 +illusion_1.5L,sr,93,37.2,force,upper_fx,0.0022843307815492153 +illusion_1.5L,sr,93,37.2,force,upper_fy,0.0002833604521583766 +illusion_1.5L,sr,93,37.2,force,lower_fx,0.0023318887688219547 +illusion_1.5L,sr,93,37.2,force,lower_fy,-0.0003905166231561452 +illusion_1.5L,sr,94,37.6,force,front_fx,0.0019320594146847725 +illusion_1.5L,sr,94,37.6,force,front_fy,-2.0910305465804413e-05 +illusion_1.5L,sr,94,37.6,force,upper_fx,0.0022851545363664627 +illusion_1.5L,sr,94,37.6,force,upper_fy,0.0002896123332902789 +illusion_1.5L,sr,94,37.6,force,lower_fx,0.0023402352817356586 +illusion_1.5L,sr,94,37.6,force,lower_fy,-0.000382024678401649 +illusion_1.5L,sr,95,38.0,force,front_fx,0.001930968719534576 +illusion_1.5L,sr,95,38.0,force,front_fy,-2.1721205484936945e-05 +illusion_1.5L,sr,95,38.0,force,upper_fx,0.0022836579009890556 +illusion_1.5L,sr,95,38.0,force,upper_fy,0.00030543783213943243 +illusion_1.5L,sr,95,38.0,force,lower_fx,0.002340923063457012 +illusion_1.5L,sr,95,38.0,force,lower_fy,-0.0003753780329134315 +illusion_1.5L,sr,96,38.4,force,front_fx,0.0019284584559500217 +illusion_1.5L,sr,96,38.4,force,front_fy,-2.0303101337049156e-05 +illusion_1.5L,sr,96,38.4,force,upper_fx,0.0022822243627160788 +illusion_1.5L,sr,96,38.4,force,upper_fy,0.00032750770333223045 +illusion_1.5L,sr,96,38.4,force,lower_fx,0.002336086705327034 +illusion_1.5L,sr,96,38.4,force,lower_fy,-0.00036919236299581826 +illusion_1.5L,sr,97,38.8,force,front_fx,0.0019259662367403507 +illusion_1.5L,sr,97,38.8,force,front_fy,-1.6900576156331226e-05 +illusion_1.5L,sr,97,38.8,force,upper_fx,0.0022825589403510094 +illusion_1.5L,sr,97,38.8,force,upper_fy,0.0003513835254125297 +illusion_1.5L,sr,97,38.8,force,lower_fx,0.0023278475273400545 +illusion_1.5L,sr,97,38.8,force,lower_fy,-0.00036160857416689396 +illusion_1.5L,sr,98,39.2,force,front_fx,0.0019223411800339818 +illusion_1.5L,sr,98,39.2,force,front_fy,-1.172932479676092e-05 +illusion_1.5L,sr,98,39.2,force,upper_fx,0.0022825489286333323 +illusion_1.5L,sr,98,39.2,force,upper_fy,0.0003730938187800348 +illusion_1.5L,sr,98,39.2,force,lower_fx,0.002315080724656582 +illusion_1.5L,sr,98,39.2,force,lower_fy,-0.00035118430969305336 +illusion_1.5L,sr,99,39.6,force,front_fx,0.001925519434735179 +illusion_1.5L,sr,99,39.6,force,front_fy,-5.6181138461397495e-06 +illusion_1.5L,sr,99,39.6,force,upper_fx,0.002291877055540681 +illusion_1.5L,sr,99,39.6,force,upper_fy,0.00038909888826310635 +illusion_1.5L,sr,99,39.6,force,lower_fx,0.002308896044269204 +illusion_1.5L,sr,99,39.6,force,lower_fy,-0.00033746857661753893 +illusion_1.5L,sr,100,40.0,force,front_fx,0.001925721182487905 +illusion_1.5L,sr,100,40.0,force,front_fy,7.473552159353858e-07 +illusion_1.5L,sr,100,40.0,force,upper_fx,0.002298439620062709 +illusion_1.5L,sr,100,40.0,force,upper_fy,0.0003973648708779365 +illusion_1.5L,sr,100,40.0,force,lower_fx,0.002298678271472454 +illusion_1.5L,sr,100,40.0,force,lower_fy,-0.0003211174043826759 +illusion_1.5L,sr,101,40.4,force,front_fx,0.0019249188480898738 +illusion_1.5L,sr,101,40.4,force,front_fy,6.814242624386679e-06 +illusion_1.5L,sr,101,40.4,force,upper_fx,0.0023045875132083893 +illusion_1.5L,sr,101,40.4,force,upper_fy,0.00039995359838940203 +illusion_1.5L,sr,101,40.4,force,lower_fx,0.0022883061319589615 +illusion_1.5L,sr,101,40.4,force,lower_fy,-0.00030646243249066174 +illusion_1.5L,sr,102,40.8,force,front_fx,0.0019253056962043047 +illusion_1.5L,sr,102,40.8,force,front_fy,1.214594431075966e-05 +illusion_1.5L,sr,102,40.8,force,upper_fx,0.0023116357624530792 +illusion_1.5L,sr,102,40.8,force,upper_fy,0.00039700910565443337 +illusion_1.5L,sr,102,40.8,force,lower_fx,0.00228038989007473 +illusion_1.5L,sr,102,40.8,force,lower_fy,-0.00029533763881772757 +illusion_1.5L,sr,103,41.2,force,front_fx,0.001923548523336649 +illusion_1.5L,sr,103,41.2,force,front_fy,1.6599537048023194e-05 +illusion_1.5L,sr,103,41.2,force,upper_fx,0.0023154772352427244 +illusion_1.5L,sr,103,41.2,force,upper_fy,0.0003911380481440574 +illusion_1.5L,sr,103,41.2,force,lower_fx,0.002271963283419609 +illusion_1.5L,sr,103,41.2,force,lower_fy,-0.00029063355759717524 +illusion_1.5L,sr,104,41.6,force,front_fx,0.0019221518887206912 +illusion_1.5L,sr,104,41.6,force,front_fy,1.9669294488267042e-05 +illusion_1.5L,sr,104,41.6,force,upper_fx,0.0023183654993772507 +illusion_1.5L,sr,104,41.6,force,upper_fy,0.00038385827792808414 +illusion_1.5L,sr,104,41.6,force,lower_fx,0.0022663644049316645 +illusion_1.5L,sr,104,41.6,force,lower_fy,-0.0002937280514743179 +illusion_1.5L,sr,105,42.0,force,front_fx,0.0019247203599661589 +illusion_1.5L,sr,105,42.0,force,front_fy,2.112752008542884e-05 +illusion_1.5L,sr,105,42.0,force,upper_fx,0.0023240246810019016 +illusion_1.5L,sr,105,42.0,force,upper_fy,0.0003764013235922903 +illusion_1.5L,sr,105,42.0,force,lower_fx,0.002268110867589712 +illusion_1.5L,sr,105,42.0,force,lower_fy,-0.0003043323813471943 +illusion_1.5L,sr,106,42.4,force,front_fx,0.001924054929986596 +illusion_1.5L,sr,106,42.4,force,front_fy,2.0562447389238514e-05 +illusion_1.5L,sr,106,42.4,force,upper_fx,0.0023231073282659054 +illusion_1.5L,sr,106,42.4,force,upper_fy,0.00036975822877138853 +illusion_1.5L,sr,106,42.4,force,lower_fx,0.002268321579322219 +illusion_1.5L,sr,106,42.4,force,lower_fy,-0.0003223031817469746 +illusion_1.5L,sr,107,42.8,force,front_fx,0.0019216551445424557 +illusion_1.5L,sr,107,42.8,force,front_fy,1.8340406313654967e-05 +illusion_1.5L,sr,107,42.8,force,upper_fx,0.0023166565224528313 +illusion_1.5L,sr,107,42.8,force,upper_fy,0.00036292141885496676 +illusion_1.5L,sr,107,42.8,force,lower_fx,0.002267996547743678 +illusion_1.5L,sr,107,42.8,force,lower_fy,-0.000343668507412076 +illusion_1.5L,sr,108,43.2,force,front_fx,0.0019199301023036242 +illusion_1.5L,sr,108,43.2,force,front_fy,1.4595012544305064e-05 +illusion_1.5L,sr,108,43.2,force,upper_fx,0.002308097667992115 +illusion_1.5L,sr,108,43.2,force,upper_fy,0.0003541018522810191 +illusion_1.5L,sr,108,43.2,force,lower_fx,0.0022700137924402952 +illusion_1.5L,sr,108,43.2,force,lower_fy,-0.00036432177876122296 +illusion_1.5L,sr,109,43.6,force,front_fx,0.0019169896841049194 +illusion_1.5L,sr,109,43.6,force,front_fy,9.312580914411228e-06 +illusion_1.5L,sr,109,43.6,force,upper_fx,0.0022956179454922676 +illusion_1.5L,sr,109,43.6,force,upper_fy,0.0003428314230404794 +illusion_1.5L,sr,109,43.6,force,lower_fx,0.0022714773658663034 +illusion_1.5L,sr,109,43.6,force,lower_fy,-0.0003811168426182121 +illusion_1.5L,sr,110,44.0,force,front_fx,0.0019176447531208396 +illusion_1.5L,sr,110,44.0,force,front_fy,3.224207603125251e-06 +illusion_1.5L,sr,110,44.0,force,upper_fx,0.0022864541970193386 +illusion_1.5L,sr,110,44.0,force,upper_fy,0.0003291831526439637 +illusion_1.5L,sr,110,44.0,force,lower_fx,0.0022783861495554447 +illusion_1.5L,sr,110,44.0,force,lower_fy,-0.00039121773443184793 +illusion_1.5L,sr,111,44.4,force,front_fx,0.0019208755111321807 +illusion_1.5L,sr,111,44.4,force,front_fy,-3.510517217364395e-06 +illusion_1.5L,sr,111,44.4,force,upper_fx,0.002280566841363907 +illusion_1.5L,sr,111,44.4,force,upper_fy,0.0003149465483147651 +illusion_1.5L,sr,111,44.4,force,lower_fx,0.0022889794781804085 +illusion_1.5L,sr,111,44.4,force,lower_fy,-0.00039532443042844534 +illusion_1.5L,sr,112,44.8,force,front_fx,0.0019203999545425177 +illusion_1.5L,sr,112,44.8,force,front_fy,-9.358101124234963e-06 +illusion_1.5L,sr,112,44.8,force,upper_fx,0.002271698322147131 +illusion_1.5L,sr,112,44.8,force,upper_fy,0.0003039456205442548 +illusion_1.5L,sr,112,44.8,force,lower_fx,0.002295666141435504 +illusion_1.5L,sr,112,44.8,force,lower_fy,-0.000394415226764977 +illusion_1.5L,sr,113,45.2,force,front_fx,0.0019203992560505867 +illusion_1.5L,sr,113,45.2,force,front_fy,-1.4525383448926732e-05 +illusion_1.5L,sr,113,45.2,force,upper_fx,0.0022649045567959547 +illusion_1.5L,sr,113,45.2,force,upper_fy,0.0002971177746076137 +illusion_1.5L,sr,113,45.2,force,lower_fx,0.00230183987878263 +illusion_1.5L,sr,113,45.2,force,lower_fy,-0.00039024013676680624 +illusion_1.5L,sr,114,45.6,force,front_fx,0.0019186582649126649 +illusion_1.5L,sr,114,45.6,force,front_fy,-1.7740385374054313e-05 +illusion_1.5L,sr,114,45.6,force,upper_fx,0.0022582083474844694 +illusion_1.5L,sr,114,45.6,force,upper_fy,0.00029759565950371325 +illusion_1.5L,sr,114,45.6,force,lower_fx,0.0023046876303851604 +illusion_1.5L,sr,114,45.6,force,lower_fy,-0.0003837644762825221 +illusion_1.5L,sr,115,46.0,force,front_fx,0.0019166648853570223 +illusion_1.5L,sr,115,46.0,force,front_fy,-1.9912955394829623e-05 +illusion_1.5L,sr,115,46.0,force,upper_fx,0.002253627171739936 +illusion_1.5L,sr,115,46.0,force,upper_fy,0.0003044498444069177 +illusion_1.5L,sr,115,46.0,force,lower_fx,0.0023052687756717205 +illusion_1.5L,sr,115,46.0,force,lower_fy,-0.0003774459764827043 +illusion_1.5L,sr,116,46.4,force,front_fx,0.0019187952857464552 +illusion_1.5L,sr,116,46.4,force,front_fy,-2.0113706341362558e-05 +illusion_1.5L,sr,116,46.4,force,upper_fx,0.0022563738748431206 +illusion_1.5L,sr,116,46.4,force,upper_fy,0.00031775477691553533 +illusion_1.5L,sr,116,46.4,force,lower_fx,0.0023085223510861397 +illusion_1.5L,sr,116,46.4,force,lower_fy,-0.0003703248512465507 +illusion_1.5L,sr,117,46.8,force,front_fx,0.0019188247388228774 +illusion_1.5L,sr,117,46.8,force,front_fy,-1.880041600088589e-05 +illusion_1.5L,sr,117,46.8,force,upper_fx,0.0022587485145777464 +illusion_1.5L,sr,117,46.8,force,upper_fy,0.0003351922787260264 +illusion_1.5L,sr,117,46.8,force,lower_fx,0.002306494163349271 +illusion_1.5L,sr,117,46.8,force,lower_fy,-0.0003644767275545746 +illusion_1.5L,sr,118,47.2,force,front_fx,0.001916656387038529 +illusion_1.5L,sr,118,47.2,force,front_fy,-1.533420436317101e-05 +illusion_1.5L,sr,118,47.2,force,upper_fx,0.002259943401440978 +illusion_1.5L,sr,118,47.2,force,upper_fy,0.0003545221989043057 +illusion_1.5L,sr,118,47.2,force,lower_fx,0.002298814244568348 +illusion_1.5L,sr,118,47.2,force,lower_fy,-0.00035755446879193187 +illusion_1.5L,sr,119,47.6,force,front_fx,0.0019155553309246898 +illusion_1.5L,sr,119,47.6,force,front_fy,-1.0425647815281991e-05 +illusion_1.5L,sr,119,47.6,force,upper_fx,0.002263577189296484 +illusion_1.5L,sr,119,47.6,force,upper_fy,0.00037119031185284257 +illusion_1.5L,sr,119,47.6,force,lower_fx,0.002289912197738886 +illusion_1.5L,sr,119,47.6,force,lower_fy,-0.00034871906973421574 +illusion_1.5L,sr,120,48.0,force,front_fx,0.0019130493747070432 +illusion_1.5L,sr,120,48.0,force,front_fy,-4.449211246537743e-06 +illusion_1.5L,sr,120,48.0,force,upper_fx,0.002266257768496871 +illusion_1.5L,sr,120,48.0,force,upper_fy,0.0003836503019556403 +illusion_1.5L,sr,120,48.0,force,lower_fx,0.002277710707858205 +illusion_1.5L,sr,120,48.0,force,lower_fy,-0.00033753254683688283 +illusion_1.5L,sr,121,48.4,force,front_fx,0.0019133263267576694 +illusion_1.5L,sr,121,48.4,force,front_fy,2.0045308701810427e-06 +illusion_1.5L,sr,121,48.4,force,upper_fx,0.0022728515323251486 +illusion_1.5L,sr,121,48.4,force,upper_fy,0.00039003652636893094 +illusion_1.5L,sr,121,48.4,force,lower_fx,0.0022686473093926907 +illusion_1.5L,sr,121,48.4,force,lower_fy,-0.00032462968374602497 +illusion_1.5L,sr,122,48.8,force,front_fx,0.001916766632348299 +illusion_1.5L,sr,122,48.8,force,front_fy,7.85578777140472e-06 +illusion_1.5L,sr,122,48.8,force,upper_fx,0.002283454639837146 +illusion_1.5L,sr,122,48.8,force,upper_fy,0.00039090734208002687 +illusion_1.5L,sr,122,48.8,force,lower_fx,0.002264229813590646 +illusion_1.5L,sr,122,48.8,force,lower_fy,-0.0003125417570117861 +illusion_1.5L,sr,123,49.2,force,front_fx,0.0019165403209626675 +illusion_1.5L,sr,123,49.2,force,front_fy,1.2934253390994854e-05 +illusion_1.5L,sr,123,49.2,force,upper_fx,0.0022896728478372097 +illusion_1.5L,sr,123,49.2,force,upper_fy,0.000388731830753386 +illusion_1.5L,sr,123,49.2,force,lower_fx,0.0022574462927877903 +illusion_1.5L,sr,123,49.2,force,lower_fy,-0.0003041753370780498 +illusion_1.5L,sr,124,49.6,force,front_fx,0.0019163073739036918 +illusion_1.5L,sr,124,49.6,force,front_fy,1.6449881513835862e-05 +illusion_1.5L,sr,124,49.6,force,upper_fx,0.0022945657838135958 +illusion_1.5L,sr,124,49.6,force,upper_fy,0.00038391645648516715 +illusion_1.5L,sr,124,49.6,force,lower_fx,0.002252176869660616 +illusion_1.5L,sr,124,49.6,force,lower_fy,-0.00030141332536004484 +illusion_1.5L,sr,125,50.0,force,front_fx,0.0019147811690345407 +illusion_1.5L,sr,125,50.0,force,front_fy,1.9086543034063652e-05 +illusion_1.5L,sr,125,50.0,force,upper_fx,0.0022963129449635744 +illusion_1.5L,sr,125,50.0,force,upper_fy,0.00037875561974942684 +illusion_1.5L,sr,125,50.0,force,lower_fx,0.0022475733421742916 +illusion_1.5L,sr,125,50.0,force,lower_fy,-0.00030469420016743243 +illusion_1.5L,sr,126,50.4,force,front_fx,0.0019124774262309074 +illusion_1.5L,sr,126,50.4,force,front_fy,1.9820448869722895e-05 +illusion_1.5L,sr,126,50.4,force,upper_fx,0.0022949951235204935 +illusion_1.5L,sr,126,50.4,force,upper_fy,0.00037301681004464626 +illusion_1.5L,sr,126,50.4,force,lower_fx,0.00224402267485857 +illusion_1.5L,sr,126,50.4,force,lower_fy,-0.0003145847003906965 +illusion_1.5L,sr,127,50.8,force,front_fx,0.0019140673102810979 +illusion_1.5L,sr,127,50.8,force,front_fy,1.920577051350847e-05 +illusion_1.5L,sr,127,50.8,force,upper_fx,0.002295841695740819 +illusion_1.5L,sr,127,50.8,force,upper_fy,0.0003673162718769163 +illusion_1.5L,sr,127,50.8,force,lower_fx,0.0022472862619906664 +illusion_1.5L,sr,127,50.8,force,lower_fy,-0.0003282104735262692 +illusion_1.5L,sr,128,51.2,force,front_fx,0.0019145840778946877 +illusion_1.5L,sr,128,51.2,force,front_fy,1.6576579582761042e-05 +illusion_1.5L,sr,128,51.2,force,upper_fx,0.002292988821864128 +illusion_1.5L,sr,128,51.2,force,upper_fy,0.0003608853439800441 +illusion_1.5L,sr,128,51.2,force,lower_fx,0.0022511479910463095 +illusion_1.5L,sr,128,51.2,force,lower_fy,-0.00034523740760050714 +illusion_1.5L,sr,129,51.6,force,front_fx,0.0019127791747450829 +illusion_1.5L,sr,129,51.6,force,front_fy,1.2540399438876193e-05 +illusion_1.5L,sr,129,51.6,force,upper_fx,0.0022847531363368034 +illusion_1.5L,sr,129,51.6,force,upper_fy,0.00035368753015063703 +illusion_1.5L,sr,129,51.6,force,lower_fx,0.0022535682655870914 +illusion_1.5L,sr,129,51.6,force,lower_fy,-0.000361896789399907 +illusion_1.5L,sr,130,52.0,force,front_fx,0.0019121351651847363 +illusion_1.5L,sr,130,52.0,force,front_fy,6.949958788027288e-06 +illusion_1.5L,sr,130,52.0,force,upper_fx,0.002276020124554634 +illusion_1.5L,sr,130,52.0,force,upper_fy,0.000343803723808378 +illusion_1.5L,sr,130,52.0,force,lower_fx,0.0022582286037504673 +illusion_1.5L,sr,130,52.0,force,lower_fy,-0.0003757218364626169 +illusion_1.5L,sr,131,52.4,force,front_fx,0.001910139457322657 +illusion_1.5L,sr,131,52.4,force,front_fy,8.126229431582033e-07 +illusion_1.5L,sr,131,52.4,force,upper_fx,0.002264622366055846 +illusion_1.5L,sr,131,52.4,force,upper_fy,0.00033238937612622976 +illusion_1.5L,sr,131,52.4,force,lower_fx,0.0022617564536631107 +illusion_1.5L,sr,131,52.4,force,lower_fy,-0.00038483220851048827 +illusion_1.5L,sr,132,52.8,force,front_fx,0.0019100152421742678 +illusion_1.5L,sr,132,52.8,force,front_fy,-5.108862751512788e-06 +illusion_1.5L,sr,132,52.8,force,upper_fx,0.002256033942103386 +illusion_1.5L,sr,132,52.8,force,upper_fy,0.00032039309735409915 +illusion_1.5L,sr,132,52.8,force,lower_fx,0.0022677129600197077 +illusion_1.5L,sr,132,52.8,force,lower_fy,-0.00038855618913657963 +illusion_1.5L,sr,133,53.2,force,front_fx,0.0019134236499667168 +illusion_1.5L,sr,133,53.2,force,front_fy,-1.0235206900688354e-05 +illusion_1.5L,sr,133,53.2,force,upper_fx,0.00225281435996294 +illusion_1.5L,sr,133,53.2,force,upper_fy,0.00031003906042315066 +illusion_1.5L,sr,133,53.2,force,lower_fx,0.002277798717841506 +illusion_1.5L,sr,133,53.2,force,lower_fy,-0.00038768022204749286 +illusion_1.5L,sr,134,53.6,force,front_fx,0.0019134699832648039 +illusion_1.5L,sr,134,53.6,force,front_fy,-1.4190061847330071e-05 +illusion_1.5L,sr,134,53.6,force,upper_fx,0.0022476997692137957 +illusion_1.5L,sr,134,53.6,force,upper_fy,0.00030448619509115815 +illusion_1.5L,sr,134,53.6,force,lower_fx,0.002283622743561864 +illusion_1.5L,sr,134,53.6,force,lower_fy,-0.0003845891624223441 +illusion_1.5L,sr,135,54.0,force,front_fx,0.0019129893044009805 +illusion_1.5L,sr,135,54.0,force,front_fy,-1.7248787116841413e-05 +illusion_1.5L,sr,135,54.0,force,upper_fx,0.00224361103028059 +illusion_1.5L,sr,135,54.0,force,upper_fy,0.000304518238408491 +illusion_1.5L,sr,135,54.0,force,lower_fx,0.002287226961925626 +illusion_1.5L,sr,135,54.0,force,lower_fy,-0.00038028619019314647 +illusion_1.5L,sr,136,54.4,force,front_fx,0.0019117086194455624 +illusion_1.5L,sr,136,54.4,force,front_fy,-1.865645572252106e-05 +illusion_1.5L,sr,136,54.4,force,upper_fx,0.0022405844647437334 +illusion_1.5L,sr,136,54.4,force,upper_fy,0.00031091400887817144 +illusion_1.5L,sr,136,54.4,force,lower_fx,0.0022881468757987022 +illusion_1.5L,sr,136,54.4,force,lower_fy,-0.0003752945049200207 +illusion_1.5L,sr,137,54.8,force,front_fx,0.0019091981230303645 +illusion_1.5L,sr,137,54.8,force,front_fy,-1.8821394405676983e-05 +illusion_1.5L,sr,137,54.8,force,upper_fx,0.002237958600744605 +illusion_1.5L,sr,137,54.8,force,upper_fy,0.0003221594961360097 +illusion_1.5L,sr,137,54.8,force,lower_fx,0.002285163616761565 +illusion_1.5L,sr,137,54.8,force,lower_fy,-0.00037060718750581145 +illusion_1.5L,sr,138,55.2,force,front_fx,0.0019101841608062387 +illusion_1.5L,sr,138,55.2,force,front_fy,-1.6868456441443413e-05 +illusion_1.5L,sr,138,55.2,force,upper_fx,0.0022414231207221746 +illusion_1.5L,sr,138,55.2,force,upper_fy,0.0003368074831087142 +illusion_1.5L,sr,138,55.2,force,lower_fx,0.0022840159945189953 +illusion_1.5L,sr,138,55.2,force,lower_fy,-0.000364445528248325 +illusion_1.5L,sr,139,55.6,force,front_fx,0.0019112932495772839 +illusion_1.5L,sr,139,55.6,force,front_fy,-1.3585114174929913e-05 +illusion_1.5L,sr,139,55.6,force,upper_fx,0.0022466490045189857 +illusion_1.5L,sr,139,55.6,force,upper_fy,0.00035242049489170313 +illusion_1.5L,sr,139,55.6,force,lower_fx,0.002280603861436248 +illusion_1.5L,sr,139,55.6,force,lower_fy,-0.00035773764830082655 +illusion_1.5L,sr,140,56.0,force,front_fx,0.001909874496050179 +illusion_1.5L,sr,140,56.0,force,front_fy,-8.682032785145566e-06 +illusion_1.5L,sr,140,56.0,force,upper_fx,0.0022500683553516865 +illusion_1.5L,sr,140,56.0,force,upper_fy,0.0003675002953968942 +illusion_1.5L,sr,140,56.0,force,lower_fx,0.0022722971625626087 +illusion_1.5L,sr,140,56.0,force,lower_fy,-0.00034918199526146054 +illusion_1.5L,sr,141,56.4,force,front_fx,0.0019095126772299409 +illusion_1.5L,sr,141,56.4,force,front_fy,-3.102244818364852e-06 +illusion_1.5L,sr,141,56.4,force,upper_fx,0.0022552383597940207 +illusion_1.5L,sr,141,56.4,force,upper_fy,0.0003785842563956976 +illusion_1.5L,sr,141,56.4,force,lower_fx,0.002263865666463971 +illusion_1.5L,sr,141,56.4,force,lower_fy,-0.0003389117191545665 +illusion_1.5L,sr,142,56.8,force,front_fx,0.001907895551994443 +illusion_1.5L,sr,142,56.8,force,front_fy,2.6650523068383336e-06 +illusion_1.5L,sr,142,56.8,force,upper_fx,0.0022590949665755033 +illusion_1.5L,sr,142,56.8,force,upper_fy,0.00038544333074241877 +illusion_1.5L,sr,142,56.8,force,lower_fx,0.002253505866974592 +illusion_1.5L,sr,142,56.8,force,lower_fy,-0.0003275008639320731 +illusion_1.5L,sr,143,57.2,force,front_fx,0.0019073328003287315 +illusion_1.5L,sr,143,57.2,force,front_fy,8.006130883586593e-06 +illusion_1.5L,sr,143,57.2,force,upper_fx,0.002264270093291998 +illusion_1.5L,sr,143,57.2,force,upper_fy,0.0003873191890306771 +illusion_1.5L,sr,143,57.2,force,lower_fx,0.002245261799544096 +illusion_1.5L,sr,143,57.2,force,lower_fy,-0.00031670951284468174 +illusion_1.5L,sr,144,57.6,force,front_fx,0.0019105253741145134 +illusion_1.5L,sr,144,57.6,force,front_fy,1.2268725186004303e-05 +illusion_1.5L,sr,144,57.6,force,upper_fx,0.0022736345417797565 +illusion_1.5L,sr,144,57.6,force,upper_fy,0.0003852644586004317 +illusion_1.5L,sr,144,57.6,force,lower_fx,0.0022429050877690315 +illusion_1.5L,sr,144,57.6,force,lower_fy,-0.0003085111966356635 +illusion_1.5L,sr,145,58.0,force,front_fx,0.0019108866108581424 +illusion_1.5L,sr,145,58.0,force,front_fy,1.589525163581129e-05 +illusion_1.5L,sr,145,58.0,force,upper_fx,0.0022790110670030117 +illusion_1.5L,sr,145,58.0,force,upper_fy,0.00038200762355700135 +illusion_1.5L,sr,145,58.0,force,lower_fx,0.00223936652764678 +illusion_1.5L,sr,145,58.0,force,lower_fy,-0.00030539880390278995 +illusion_1.5L,sr,146,58.4,force,front_fx,0.001910165068693459 +illusion_1.5L,sr,146,58.4,force,front_fy,1.777992474671919e-05 +illusion_1.5L,sr,146,58.4,force,upper_fx,0.002281431807205081 +illusion_1.5L,sr,146,58.4,force,upper_fy,0.0003775121585931629 +illusion_1.5L,sr,146,58.4,force,lower_fx,0.002236129716038704 +illusion_1.5L,sr,146,58.4,force,lower_fy,-0.0003086781071033329 +illusion_1.5L,sr,147,58.8,force,front_fx,0.0019089920679107308 +illusion_1.5L,sr,147,58.8,force,front_fy,1.883356526377611e-05 +illusion_1.5L,sr,147,58.8,force,upper_fx,0.0022812667302787304 +illusion_1.5L,sr,147,58.8,force,upper_fy,0.00037333968793973327 +illusion_1.5L,sr,147,58.8,force,lower_fx,0.0022343990858644247 +illusion_1.5L,sr,147,58.8,force,lower_fy,-0.00031681708060204983 +illusion_1.5L,sr,148,59.2,force,front_fx,0.001906401477754116 +illusion_1.5L,sr,148,59.2,force,front_fy,1.7591823052498512e-05 +illusion_1.5L,sr,148,59.2,force,upper_fx,0.0022769637871533632 +illusion_1.5L,sr,148,59.2,force,upper_fy,0.00036803417606279254 +illusion_1.5L,sr,148,59.2,force,lower_fx,0.0022325695026665926 +illusion_1.5L,sr,148,59.2,force,lower_fy,-0.0003300361568108201 +illusion_1.5L,sr,149,59.6,force,front_fx,0.0019092804286628962 +illusion_1.5L,sr,149,59.6,force,front_fy,1.5289457223843783e-05 +illusion_1.5L,sr,149,59.6,force,upper_fx,0.0022768089547753334 +illusion_1.5L,sr,149,59.6,force,upper_fy,0.00036251050187274814 +illusion_1.5L,sr,149,59.6,force,lower_fx,0.0022390433587133884 +illusion_1.5L,sr,149,59.6,force,lower_fy,-0.00034465777571313083 +illusion_1.5L,sr,150,60.0,force,front_fx,0.0019085262902081013 +illusion_1.5L,sr,150,60.0,force,front_fy,1.0898828804783989e-05 +illusion_1.5L,sr,150,60.0,force,upper_fx,0.002270303899422288 +illusion_1.5L,sr,150,60.0,force,upper_fy,0.0003538102318998426 +illusion_1.5L,sr,150,60.0,force,lower_fx,0.0022425989154726267 +illusion_1.5L,sr,150,60.0,force,lower_fy,-0.00035921618109568954 +illusion_1.5L,sr,151,60.4,force,front_fx,0.0019075163872912526 +illusion_1.5L,sr,151,60.4,force,front_fy,5.8354785323899705e-06 +illusion_1.5L,sr,151,60.4,force,upper_fx,0.0022620896343141794 +illusion_1.5L,sr,151,60.4,force,upper_fy,0.00034486580989323556 +illusion_1.5L,sr,151,60.4,force,lower_fx,0.0022469102405011654 +illusion_1.5L,sr,151,60.4,force,lower_fy,-0.00037181295920163393 +illusion_1.5L,sr,152,60.8,force,front_fx,0.0019072246504947543 +illusion_1.5L,sr,152,60.8,force,front_fy,1.2339035038166912e-07 +illusion_1.5L,sr,152,60.8,force,upper_fx,0.002253870014101267 +illusion_1.5L,sr,152,60.8,force,upper_fy,0.000333915842929855 +illusion_1.5L,sr,152,60.8,force,lower_fx,0.002252318197861314 +illusion_1.5L,sr,152,60.8,force,lower_fy,-0.0003809644258581102 +illusion_1.5L,sr,153,61.2,force,front_fx,0.0019082518992945552 +illusion_1.5L,sr,153,61.2,force,front_fy,-5.199412044021301e-06 +illusion_1.5L,sr,153,61.2,force,upper_fx,0.0022472613491117954 +illusion_1.5L,sr,153,61.2,force,upper_fy,0.00032370322151109576 +illusion_1.5L,sr,153,61.2,force,lower_fx,0.0022592167370021343 +illusion_1.5L,sr,153,61.2,force,lower_fy,-0.0003858825657516718 +illusion_1.5L,sr,154,61.6,force,front_fx,0.0019050005357712507 +illusion_1.5L,sr,154,61.6,force,front_fy,-9.782727829588111e-06 +illusion_1.5L,sr,154,61.6,force,upper_fx,0.0022366372868418694 +illusion_1.5L,sr,154,61.6,force,upper_fy,0.0003140619373880327 +illusion_1.5L,sr,154,61.6,force,lower_fx,0.0022608889266848564 +illusion_1.5L,sr,154,61.6,force,lower_fy,-0.00038571757613681257 +illusion_1.5L,sr,155,62.0,force,front_fx,0.0019079410703852773 +illusion_1.5L,sr,155,62.0,force,front_fy,-1.3922414836997632e-05 +illusion_1.5L,sr,155,62.0,force,upper_fx,0.0022350545041263103 +illusion_1.5L,sr,155,62.0,force,upper_fy,0.00030790234450250864 +illusion_1.5L,sr,155,62.0,force,lower_fx,0.0022693523205816746 +illusion_1.5L,sr,155,62.0,force,lower_fy,-0.0003829865891020745 +illusion_1.5L,sr,156,62.4,force,front_fx,0.0019086402608081698 +illusion_1.5L,sr,156,62.4,force,front_fy,-1.6461415725643747e-05 +illusion_1.5L,sr,156,62.4,force,upper_fx,0.002232902916148305 +illusion_1.5L,sr,156,62.4,force,upper_fy,0.00030778138898313046 +illusion_1.5L,sr,156,62.4,force,lower_fx,0.0022743986919522285 +illusion_1.5L,sr,156,62.4,force,lower_fy,-0.0003789177571889013 +illusion_1.5L,sr,157,62.8,force,front_fx,0.0019077068427577615 +illusion_1.5L,sr,157,62.8,force,front_fy,-1.821278056013398e-05 +illusion_1.5L,sr,157,62.8,force,upper_fx,0.002230609068647027 +illusion_1.5L,sr,157,62.8,force,upper_fy,0.0003128266835119575 +illusion_1.5L,sr,157,62.8,force,lower_fx,0.0022755388636142015 +illusion_1.5L,sr,157,62.8,force,lower_fy,-0.0003752103366423398 +illusion_1.5L,sr,158,63.2,force,front_fx,0.0019090253626927733 +illusion_1.5L,sr,158,63.2,force,front_fy,-1.7780759662855417e-05 +illusion_1.5L,sr,158,63.2,force,upper_fx,0.002232748083770275 +illusion_1.5L,sr,158,63.2,force,upper_fy,0.0003238479548599571 +illusion_1.5L,sr,158,63.2,force,lower_fx,0.002277280203998089 +illusion_1.5L,sr,158,63.2,force,lower_fy,-0.00037084956420585513 +illusion_1.5L,sr,159,63.6,force,front_fx,0.001904132543131709 +illusion_1.5L,sr,159,63.6,force,front_fy,-1.6201545804506168e-05 +illusion_1.5L,sr,159,63.6,force,upper_fx,0.002229138510301709 +illusion_1.5L,sr,159,63.6,force,upper_fy,0.00033663344220258296 +illusion_1.5L,sr,159,63.6,force,lower_fx,0.002268967218697071 +illusion_1.5L,sr,159,63.6,force,lower_fy,-0.0003656928602140397 +illusion_1.5L,sr,160,64.0,force,front_fx,0.0019042352214455605 +illusion_1.5L,sr,160,64.0,force,front_fy,-1.2579245776578318e-05 +illusion_1.5L,sr,160,64.0,force,upper_fx,0.0022329664789140224 +illusion_1.5L,sr,160,64.0,force,upper_fy,0.00035126585862599313 +illusion_1.5L,sr,160,64.0,force,lower_fx,0.002264548558741808 +illusion_1.5L,sr,160,64.0,force,lower_fy,-0.00035846393438987434 +illusion_1.5L,sr,161,64.4,force,front_fx,0.0019062762148678303 +illusion_1.5L,sr,161,64.4,force,front_fy,-8.081004125415348e-06 +illusion_1.5L,sr,161,64.4,force,upper_fx,0.0022402850445359945 +illusion_1.5L,sr,161,64.4,force,upper_fy,0.0003642041119746864 +illusion_1.5L,sr,161,64.4,force,lower_fx,0.0022606924176216125 +illusion_1.5L,sr,161,64.4,force,lower_fy,-0.00035010091960430145 +illusion_1.5L,sr,162,64.8,force,front_fx,0.0019056271994486451 +illusion_1.5L,sr,162,64.8,force,front_fy,-2.6365812573203584e-06 +illusion_1.5L,sr,162,64.8,force,upper_fx,0.0022452508565038443 +illusion_1.5L,sr,162,64.8,force,upper_fy,0.0003752628981601447 +illusion_1.5L,sr,162,64.8,force,lower_fx,0.0022528457920998335 +illusion_1.5L,sr,162,64.8,force,lower_fy,-0.00034020812017843127 +illusion_1.5L,sr,163,65.2,force,front_fx,0.0019053485011681914 +illusion_1.5L,sr,163,65.2,force,front_fy,2.762954181889654e-06 +illusion_1.5L,sr,163,65.2,force,upper_fx,0.0022506811656057835 +illusion_1.5L,sr,163,65.2,force,upper_fy,0.00038199088885448873 +illusion_1.5L,sr,163,65.2,force,lower_fx,0.0022449514362961054 +illusion_1.5L,sr,163,65.2,force,lower_fy,-0.0003297879302408546 +illusion_1.5L,sr,164,65.6,force,front_fx,0.0019042689818888903 +illusion_1.5L,sr,164,65.6,force,front_fy,7.553316663688747e-06 +illusion_1.5L,sr,164,65.6,force,upper_fx,0.002254955470561981 +illusion_1.5L,sr,164,65.6,force,upper_fy,0.0003846959152724594 +illusion_1.5L,sr,164,65.6,force,lower_fx,0.0022365159820765257 +illusion_1.5L,sr,164,65.6,force,lower_fy,-0.0003200473147444427 +illusion_1.5L,sr,165,66.0,force,front_fx,0.0019032062264159322 +illusion_1.5L,sr,165,66.0,force,front_fy,1.2065906048519537e-05 +illusion_1.5L,sr,165,66.0,force,upper_fx,0.0022587813436985016 +illusion_1.5L,sr,165,66.0,force,upper_fy,0.0003840815043076873 +illusion_1.5L,sr,165,66.0,force,lower_fx,0.0022293918300420046 +illusion_1.5L,sr,165,66.0,force,lower_fy,-0.0003124302893411368 +illusion_1.5L,sr,166,66.4,force,front_fx,0.0019057595636695623 +illusion_1.5L,sr,166,66.4,force,front_fy,1.519402940175496e-05 +illusion_1.5L,sr,166,66.4,force,upper_fx,0.0022662621922791004 +illusion_1.5L,sr,166,66.4,force,upper_fy,0.00038044172106310725 +illusion_1.5L,sr,166,66.4,force,lower_fx,0.002228280296549201 +illusion_1.5L,sr,166,66.4,force,lower_fy,-0.0003089480160269886 +illusion_1.5L,sr,167,66.8,force,front_fx,0.0019067074172198772 +illusion_1.5L,sr,167,66.8,force,front_fy,1.7623564417590387e-05 +illusion_1.5L,sr,167,66.8,force,upper_fx,0.002270676428452134 +illusion_1.5L,sr,167,66.8,force,upper_fy,0.00037689495366066694 +illusion_1.5L,sr,167,66.8,force,lower_fx,0.0022274977527558804 +illusion_1.5L,sr,167,66.8,force,lower_fy,-0.0003104844072367996 +illusion_1.5L,sr,168,67.2,force,front_fx,0.001905636745505035 +illusion_1.5L,sr,168,67.2,force,front_fy,1.798927223717328e-05 +illusion_1.5L,sr,168,67.2,force,upper_fx,0.0022707469761371613 +illusion_1.5L,sr,168,67.2,force,upper_fy,0.0003726523427758366 +illusion_1.5L,sr,168,67.2,force,lower_fx,0.002225999953225255 +illusion_1.5L,sr,168,67.2,force,lower_fy,-0.00031820841832086444 +illusion_1.5L,sr,169,67.6,force,front_fx,0.0019046429079025984 +illusion_1.5L,sr,169,67.6,force,front_fy,1.7245049093617126e-05 +illusion_1.5L,sr,169,67.6,force,upper_fx,0.0022685478907078505 +illusion_1.5L,sr,169,67.6,force,upper_fy,0.0003685227711685002 +illusion_1.5L,sr,169,67.6,force,lower_fx,0.0022263890132308006 +illusion_1.5L,sr,169,67.6,force,lower_fy,-0.0003293252666480839 +illusion_1.5L,sr,170,68.0,force,front_fx,0.0019023725762963295 +illusion_1.5L,sr,170,68.0,force,front_fy,1.4433408978220541e-05 +illusion_1.5L,sr,170,68.0,force,upper_fx,0.002262386493384838 +illusion_1.5L,sr,170,68.0,force,upper_fy,0.00036277223262004554 +illusion_1.5L,sr,170,68.0,force,lower_fx,0.002226551529020071 +illusion_1.5L,sr,170,68.0,force,lower_fy,-0.00034346734173595905 +illusion_1.5L,sr,171,68.4,force,front_fx,0.001902109826914966 +illusion_1.5L,sr,171,68.4,force,front_fy,1.0524947356316261e-05 +illusion_1.5L,sr,171,68.4,force,upper_fx,0.002256755717098713 +illusion_1.5L,sr,171,68.4,force,upper_fy,0.0003555959847290069 +illusion_1.5L,sr,171,68.4,force,lower_fx,0.002230516169220209 +illusion_1.5L,sr,171,68.4,force,lower_fy,-0.00035679637221619487 +illusion_1.5L,sr,172,68.8,force,front_fx,0.0019044014625251293 +illusion_1.5L,sr,172,68.8,force,front_fy,5.5102227634051815e-06 +illusion_1.5L,sr,172,68.8,force,upper_fx,0.0022527738474309444 +illusion_1.5L,sr,172,68.8,force,upper_fy,0.00034611887531355023 +illusion_1.5L,sr,172,68.8,force,lower_fx,0.0022383781615644693 +illusion_1.5L,sr,172,68.8,force,lower_fy,-0.0003686077834572643 +illusion_1.5L,sr,173,69.2,force,front_fx,0.0019040866754949093 +illusion_1.5L,sr,173,69.2,force,front_fy,8.877923107775132e-08 +illusion_1.5L,sr,173,69.2,force,upper_fx,0.00224535190500319 +illusion_1.5L,sr,173,69.2,force,upper_fy,0.0003361351846251637 +illusion_1.5L,sr,173,69.2,force,lower_fx,0.0022438724990934134 +illusion_1.5L,sr,173,69.2,force,lower_fy,-0.0003774739452637732 +illusion_1.5L,sr,174,69.6,force,front_fx,0.001906197052448988 +illusion_1.5L,sr,174,69.6,force,front_fy,-4.798447662324179e-06 +illusion_1.5L,sr,174,69.6,force,upper_fx,0.0022406403440982103 +illusion_1.5L,sr,174,69.6,force,upper_fy,0.00032654672395437956 +illusion_1.5L,sr,174,69.6,force,lower_fx,0.002252075122669339 +illusion_1.5L,sr,174,69.6,force,lower_fy,-0.000382794882170856 +illusion_1.5L,sr,175,70.0,force,front_fx,0.0019030575640499592 +illusion_1.5L,sr,175,70.0,force,front_fy,-9.66418519965373e-06 +illusion_1.5L,sr,175,70.0,force,upper_fx,0.002230545738711953 +illusion_1.5L,sr,175,70.0,force,upper_fy,0.0003172077122144401 +illusion_1.5L,sr,175,70.0,force,lower_fx,0.002253638580441475 +illusion_1.5L,sr,175,70.0,force,lower_fy,-0.00038383976789191365 +illusion_1.5L,sr,176,70.4,force,front_fx,0.0019018570892512798 +illusion_1.5L,sr,176,70.4,force,front_fy,-1.3227841918705963e-05 +illusion_1.5L,sr,176,70.4,force,upper_fx,0.0022240399848669767 +illusion_1.5L,sr,176,70.4,force,upper_fy,0.0003118844178970903 +illusion_1.5L,sr,176,70.4,force,lower_fx,0.002256974810734391 +illusion_1.5L,sr,176,70.4,force,lower_fy,-0.00038192662759684026 +illusion_1.5L,sr,177,70.8,force,front_fx,0.0019039340550079942 +illusion_1.5L,sr,177,70.8,force,front_fy,-1.636878187127877e-05 +illusion_1.5L,sr,177,70.8,force,upper_fx,0.00222336919978261 +illusion_1.5L,sr,177,70.8,force,upper_fy,0.0003099139139521867 +illusion_1.5L,sr,177,70.8,force,lower_fx,0.0022631578613072634 +illusion_1.5L,sr,177,70.8,force,lower_fy,-0.000378693628590554 +illusion_1.5L,sr,178,71.2,force,front_fx,0.0019050678238272667 +illusion_1.5L,sr,178,71.2,force,front_fy,-1.7492053302703425e-05 +illusion_1.5L,sr,178,71.2,force,upper_fx,0.002223628107458353 +illusion_1.5L,sr,178,71.2,force,upper_fy,0.0003141909546684474 +illusion_1.5L,sr,178,71.2,force,lower_fx,0.0022670028265565634 +illusion_1.5L,sr,178,71.2,force,lower_fy,-0.0003743779961951077 +illusion_1.5L,sr,179,71.6,force,front_fx,0.0019039520993828773 +illusion_1.5L,sr,179,71.6,force,front_fy,-1.7665101040620357e-05 +illusion_1.5L,sr,179,71.6,force,upper_fx,0.002223069779574871 +illusion_1.5L,sr,179,71.6,force,upper_fy,0.0003228251589462161 +illusion_1.5L,sr,179,71.6,force,lower_fx,0.00226595439016819 +illusion_1.5L,sr,179,71.6,force,lower_fy,-0.0003708633885253221 +illusion_1.5L,sr,180,72.0,force,front_fx,0.0019030540715903044 +illusion_1.5L,sr,180,72.0,force,front_fy,-1.5666695617255755e-05 +illusion_1.5L,sr,180,72.0,force,upper_fx,0.0022242895793169737 +illusion_1.5L,sr,180,72.0,force,upper_fy,0.000335497607011348 +illusion_1.5L,sr,180,72.0,force,lower_fx,0.0022629450540989637 +illusion_1.5L,sr,180,72.0,force,lower_fy,-0.0003658045025076717 +illusion_1.5L,sr,181,72.4,force,front_fx,0.0019010778050869703 +illusion_1.5L,sr,181,72.4,force,front_fy,-1.2521591088443529e-05 +illusion_1.5L,sr,181,72.4,force,upper_fx,0.002225453034043312 +illusion_1.5L,sr,181,72.4,force,upper_fy,0.0003490009985398501 +illusion_1.5L,sr,181,72.4,force,lower_fx,0.0022562264930456877 +illusion_1.5L,sr,181,72.4,force,lower_fy,-0.00036014735815115273 +illusion_1.5L,sr,182,72.8,force,front_fx,0.0019005408976227045 +illusion_1.5L,sr,182,72.8,force,front_fy,-7.943931450427044e-06 +illusion_1.5L,sr,182,72.8,force,upper_fx,0.002229445381090045 +illusion_1.5L,sr,182,72.8,force,upper_fy,0.0003619487688411027 +illusion_1.5L,sr,182,72.8,force,lower_fx,0.0022496869787573814 +illusion_1.5L,sr,182,72.8,force,lower_fy,-0.00035194342490285635 +illusion_1.5L,sr,183,73.2,force,front_fx,0.0019028597744181752 +illusion_1.5L,sr,183,73.2,force,front_fy,-2.805688154694508e-06 +illusion_1.5L,sr,183,73.2,force,upper_fx,0.002237543696537614 +illusion_1.5L,sr,183,73.2,force,upper_fy,0.00037196336779743433 +illusion_1.5L,sr,183,73.2,force,lower_fx,0.0022455595899373293 +illusion_1.5L,sr,183,73.2,force,lower_fy,-0.0003422177687752992 +illusion_1.5L,sr,184,73.6,force,front_fx,0.0019052656134590507 +illusion_1.5L,sr,184,73.6,force,front_fy,2.18114951167081e-06 +illusion_1.5L,sr,184,73.6,force,upper_fx,0.002246277406811714 +illusion_1.5L,sr,184,73.6,force,upper_fy,0.0003794613585341722 +illusion_1.5L,sr,184,73.6,force,lower_fx,0.0022415085695683956 +illusion_1.5L,sr,184,73.6,force,lower_fy,-0.00033263006480410695 +illusion_1.5L,sr,185,74.0,force,front_fx,0.0019025882938876748 +illusion_1.5L,sr,185,74.0,force,front_fy,7.192120392573997e-06 +illusion_1.5L,sr,185,74.0,force,upper_fx,0.0022486720699816942 +illusion_1.5L,sr,185,74.0,force,upper_fy,0.0003825468593277037 +illusion_1.5L,sr,185,74.0,force,lower_fx,0.0022316807880997658 +illusion_1.5L,sr,185,74.0,force,lower_fy,-0.0003225957916583866 +illusion_1.5L,sr,186,74.4,force,front_fx,0.0019021007465198636 +illusion_1.5L,sr,186,74.4,force,front_fy,1.1284672837064136e-05 +illusion_1.5L,sr,186,74.4,force,upper_fx,0.002253185026347637 +illusion_1.5L,sr,186,74.4,force,upper_fy,0.0003824625164270401 +illusion_1.5L,sr,186,74.4,force,lower_fx,0.002225366188213229 +illusion_1.5L,sr,186,74.4,force,lower_fy,-0.00031547422986477613 +illusion_1.5L,sr,187,74.8,force,front_fx,0.0019008226227015257 +illusion_1.5L,sr,187,74.8,force,front_fy,1.4944655049475841e-05 +illusion_1.5L,sr,187,74.8,force,upper_fx,0.0022558430209755898 +illusion_1.5L,sr,187,74.8,force,upper_fy,0.0003806126187555492 +illusion_1.5L,sr,187,74.8,force,lower_fx,0.002219662768766284 +illusion_1.5L,sr,187,74.8,force,lower_fy,-0.00031148424022831023 +illusion_1.5L,sr,188,75.2,force,front_fx,0.001902325893752277 +illusion_1.5L,sr,188,75.2,force,front_fy,1.688124393695034e-05 +illusion_1.5L,sr,188,75.2,force,upper_fx,0.0022607380524277687 +illusion_1.5L,sr,188,75.2,force,upper_fy,0.0003766037989407778 +illusion_1.5L,sr,188,75.2,force,lower_fx,0.002219134010374546 +illusion_1.5L,sr,188,75.2,force,lower_fy,-0.00031232231413014233 +illusion_1.5L,sr,189,75.6,force,front_fx,0.0019035923760384321 +illusion_1.5L,sr,189,75.6,force,front_fy,1.7823320376919582e-05 +illusion_1.5L,sr,189,75.6,force,upper_fx,0.002263731090351939 +illusion_1.5L,sr,189,75.6,force,upper_fy,0.0003729159361682832 +illusion_1.5L,sr,189,75.6,force,lower_fx,0.0022204581182450056 +illusion_1.5L,sr,189,75.6,force,lower_fy,-0.00031773452064953744 +illusion_1.5L,sr,190,76.0,force,front_fx,0.00190252426546067 +illusion_1.5L,sr,190,76.0,force,front_fy,1.679289562162012e-05 +illusion_1.5L,sr,190,76.0,force,upper_fx,0.0022618763614445925 +illusion_1.5L,sr,190,76.0,force,upper_fy,0.0003685856645461172 +illusion_1.5L,sr,190,76.0,force,lower_fx,0.002220713999122381 +illusion_1.5L,sr,190,76.0,force,lower_fy,-0.0003283368132542819 +illusion_1.5L,sr,191,76.4,force,front_fx,0.0019017374143004417 +illusion_1.5L,sr,191,76.4,force,front_fy,1.4455929886025842e-05 +illusion_1.5L,sr,191,76.4,force,upper_fx,0.002258005551993847 +illusion_1.5L,sr,191,76.4,force,upper_fy,0.0003637088229879737 +illusion_1.5L,sr,191,76.4,force,lower_fx,0.0022227612789720297 +illusion_1.5L,sr,191,76.4,force,lower_fy,-0.00034096837043762207 +illusion_1.5L,sr,192,76.8,force,front_fx,0.0019000708125531673 +illusion_1.5L,sr,192,76.8,force,front_fy,1.0548840691626538e-05 +illusion_1.5L,sr,192,76.8,force,upper_fx,0.0022509824484586716 +illusion_1.5L,sr,192,76.8,force,upper_fy,0.00035702597233466804 +illusion_1.5L,sr,192,76.8,force,lower_fx,0.0022247585002332926 +illusion_1.5L,sr,192,76.8,force,lower_fy,-0.0003545056388247758 +illusion_1.5L,sr,193,77.2,force,front_fx,0.001899245078675449 +illusion_1.5L,sr,193,77.2,force,front_fy,5.693500952475006e-06 +illusion_1.5L,sr,193,77.2,force,upper_fx,0.0022436664439737797 +illusion_1.5L,sr,193,77.2,force,upper_fy,0.00034851639065891504 +illusion_1.5L,sr,193,77.2,force,lower_fx,0.0022287063766270876 +illusion_1.5L,sr,193,77.2,force,lower_fy,-0.0003661804657895118 +illusion_1.5L,sr,194,77.6,force,front_fx,0.0019014988793060184 +illusion_1.5L,sr,194,77.6,force,front_fy,7.00882139881287e-07 +illusion_1.5L,sr,194,77.6,force,upper_fx,0.0022393595427274704 +illusion_1.5L,sr,194,77.6,force,upper_fy,0.00033842737320810556 +illusion_1.5L,sr,194,77.6,force,lower_fx,0.0022368321660906076 +illusion_1.5L,sr,194,77.6,force,lower_fy,-0.0003746244765352458 +illusion_1.5L,sr,195,78.0,force,front_fx,0.0019018928287550807 +illusion_1.5L,sr,195,78.0,force,front_fy,-4.362500021670712e-06 +illusion_1.5L,sr,195,78.0,force,upper_fx,0.0022331925574690104 +illusion_1.5L,sr,195,78.0,force,upper_fy,0.00032836629543453455 +illusion_1.5L,sr,195,78.0,force,lower_fx,0.002243113238364458 +illusion_1.5L,sr,195,78.0,force,lower_fy,-0.0003801064158324152 +illusion_1.5L,sr,196,78.4,force,front_fx,0.0019040124025195837 +illusion_1.5L,sr,196,78.4,force,front_fy,-8.803115633782e-06 +illusion_1.5L,sr,196,78.4,force,upper_fx,0.0022295040544122458 +illusion_1.5L,sr,196,78.4,force,upper_fy,0.0003203307860530913 +illusion_1.5L,sr,196,78.4,force,lower_fx,0.002251037396490574 +illusion_1.5L,sr,196,78.4,force,lower_fy,-0.00038245535688474774 +illusion_1.5L,sr,197,78.8,force,front_fx,0.0019013247219845653 +illusion_1.5L,sr,197,78.8,force,front_fy,-1.293872446694877e-05 +illusion_1.5L,sr,197,78.8,force,upper_fx,0.0022214250639081 +illusion_1.5L,sr,197,78.8,force,upper_fy,0.00031383868190459907 +illusion_1.5L,sr,197,78.8,force,lower_fx,0.0022526076063513756 +illusion_1.5L,sr,197,78.8,force,lower_fy,-0.00038141143159009516 +illusion_1.5L,sr,198,79.2,force,front_fx,0.0018999783787876368 +illusion_1.5L,sr,198,79.2,force,front_fy,-1.560796044941526e-05 +illusion_1.5L,sr,198,79.2,force,upper_fx,0.0022163980174809694 +illusion_1.5L,sr,198,79.2,force,upper_fy,0.00031228380976244807 +illusion_1.5L,sr,198,79.2,force,lower_fx,0.002254691906273365 +illusion_1.5L,sr,198,79.2,force,lower_fy,-0.00037866353522986174 +illusion_1.5L,sr,199,79.6,force,front_fx,0.0019008953822776675 +illusion_1.5L,sr,199,79.6,force,front_fy,-1.7380363715346903e-05 +illusion_1.5L,sr,199,79.6,force,upper_fx,0.0022160590160638094 +illusion_1.5L,sr,199,79.6,force,upper_fy,0.0003145652008242905 +illusion_1.5L,sr,199,79.6,force,lower_fx,0.0022580933291465044 +illusion_1.5L,sr,199,79.6,force,lower_fy,-0.00037517931195907295 +illusion_1.5L,sr,0,0.0,alpha,front,0.0010991006419167615 +illusion_1.5L,sr,0,0.0,alpha,upper,-0.008262605798480094 +illusion_1.5L,sr,0,0.0,alpha,lower,-0.008262605798480094 +illusion_1.5L,sr,1,0.4,alpha,front,0.03413586773430907 +illusion_1.5L,sr,1,0.4,alpha,upper,-0.03246912363232379 +illusion_1.5L,sr,1,0.4,alpha,lower,-0.03246912363232379 +illusion_1.5L,sr,2,0.8,alpha,front,0.0034132764009798533 +illusion_1.5L,sr,2,0.8,alpha,upper,-0.010188035972623508 +illusion_1.5L,sr,2,0.8,alpha,lower,-0.010188035972623508 +illusion_1.5L,sr,3,1.2,alpha,front,-0.04680744310637912 +illusion_1.5L,sr,3,1.2,alpha,upper,0.027515773653314438 +illusion_1.5L,sr,3,1.2,alpha,lower,0.027515773653314438 +illusion_1.5L,sr,4,1.6,alpha,front,-0.07680606653190336 +illusion_1.5L,sr,4,1.6,alpha,upper,0.050293141809114796 +illusion_1.5L,sr,4,1.6,alpha,lower,0.050293141809114796 +illusion_1.5L,sr,5,2.0,alpha,front,-0.06738129963668703 +illusion_1.5L,sr,5,2.0,alpha,upper,0.04419944949712856 +illusion_1.5L,sr,5,2.0,alpha,lower,0.04419944949712856 +illusion_1.5L,sr,6,2.4,alpha,front,-0.025849892354731042 +illusion_1.5L,sr,6,2.4,alpha,upper,0.015104932923581872 +illusion_1.5L,sr,6,2.4,alpha,lower,0.015104932923581872 +illusion_1.5L,sr,7,2.8,alpha,front,0.017161878004966664 +illusion_1.5L,sr,7,2.8,alpha,upper,-0.01409411171373319 +illusion_1.5L,sr,7,2.8,alpha,lower,-0.01409411171373319 +illusion_1.5L,sr,8,3.2,alpha,front,0.041142232068337906 +illusion_1.5L,sr,8,3.2,alpha,upper,-0.028216913707106585 +illusion_1.5L,sr,8,3.2,alpha,lower,-0.028216913707106585 +illusion_1.5L,sr,9,3.6,alpha,front,0.04655320888710042 +illusion_1.5L,sr,9,3.6,alpha,upper,-0.028072475700312967 +illusion_1.5L,sr,9,3.6,alpha,lower,-0.028072475700312967 +illusion_1.5L,sr,10,4.0,alpha,front,0.04989352666314503 +illusion_1.5L,sr,10,4.0,alpha,upper,-0.02645812463095787 +illusion_1.5L,sr,10,4.0,alpha,lower,-0.02645812463095787 +illusion_1.5L,sr,11,4.4,alpha,front,0.05557548182758457 +illusion_1.5L,sr,11,4.4,alpha,upper,-0.027261508547292788 +illusion_1.5L,sr,11,4.4,alpha,lower,-0.027261508547292788 +illusion_1.5L,sr,12,4.8,alpha,front,0.05812700286995892 +illusion_1.5L,sr,12,4.8,alpha,upper,-0.026740758672331864 +illusion_1.5L,sr,12,4.8,alpha,lower,-0.026740758672331864 +illusion_1.5L,sr,13,5.2,alpha,front,0.050282348511834385 +illusion_1.5L,sr,13,5.2,alpha,upper,-0.019737983145492438 +illusion_1.5L,sr,13,5.2,alpha,lower,-0.019737983145492438 +illusion_1.5L,sr,14,5.6,alpha,front,0.03517310126814632 +illusion_1.5L,sr,14,5.6,alpha,upper,-0.008713240231014274 +illusion_1.5L,sr,14,5.6,alpha,lower,-0.008713240231014274 +illusion_1.5L,sr,15,6.0,alpha,front,0.0199283000782029 +illusion_1.5L,sr,15,6.0,alpha,upper,0.0010218849489176118 +illusion_1.5L,sr,15,6.0,alpha,lower,0.0010218849489176118 +illusion_1.5L,sr,16,6.4,alpha,front,0.00848133848721952 +illusion_1.5L,sr,16,6.4,alpha,upper,0.006686394623768105 +illusion_1.5L,sr,16,6.4,alpha,lower,0.006686394623768105 +illusion_1.5L,sr,17,6.8,alpha,front,0.0006007939611314961 +illusion_1.5L,sr,17,6.8,alpha,upper,0.008799142133253335 +illusion_1.5L,sr,17,6.8,alpha,lower,0.008799142133253335 +illusion_1.5L,sr,18,7.2,alpha,front,-0.007569746922316628 +illusion_1.5L,sr,18,7.2,alpha,upper,0.010648379236979283 +illusion_1.5L,sr,18,7.2,alpha,lower,0.010648379236979283 +illusion_1.5L,sr,19,7.6,alpha,front,-0.015239498826461476 +illusion_1.5L,sr,19,7.6,alpha,upper,0.012053535364396304 +illusion_1.5L,sr,19,7.6,alpha,lower,0.012053535364396304 +illusion_1.5L,sr,20,8.0,alpha,front,-0.022541838819702988 +illusion_1.5L,sr,20,8.0,alpha,upper,0.013437986326828662 +illusion_1.5L,sr,20,8.0,alpha,lower,0.013437986326828662 +illusion_1.5L,sr,21,8.4,alpha,front,-0.028311713992323462 +illusion_1.5L,sr,21,8.4,alpha,upper,0.01419028547178808 +illusion_1.5L,sr,21,8.4,alpha,lower,0.01419028547178808 +illusion_1.5L,sr,22,8.8,alpha,front,-0.03414775458543737 +illusion_1.5L,sr,22,8.8,alpha,upper,0.01564371725349395 +illusion_1.5L,sr,22,8.8,alpha,lower,0.01564371725349395 +illusion_1.5L,sr,23,9.2,alpha,front,-0.03907475917437178 +illusion_1.5L,sr,23,9.2,alpha,upper,0.017209391023114584 +illusion_1.5L,sr,23,9.2,alpha,lower,0.017209391023114584 +illusion_1.5L,sr,24,9.6,alpha,front,-0.03976288048357299 +illusion_1.5L,sr,24,9.6,alpha,upper,0.016581712147691052 +illusion_1.5L,sr,24,9.6,alpha,lower,0.016581712147691052 +illusion_1.5L,sr,25,10.0,alpha,front,-0.03518753988215417 +illusion_1.5L,sr,25,10.0,alpha,upper,0.01312624765702247 +illusion_1.5L,sr,25,10.0,alpha,lower,0.01312624765702247 +illusion_1.5L,sr,26,10.4,alpha,front,-0.024547540710821544 +illusion_1.5L,sr,26,10.4,alpha,upper,0.0063172331167273 +illusion_1.5L,sr,26,10.4,alpha,lower,0.0063172331167273 +illusion_1.5L,sr,27,10.8,alpha,front,-0.013665162314649372 +illusion_1.5L,sr,27,10.8,alpha,upper,0.00037114925497006013 +illusion_1.5L,sr,27,10.8,alpha,lower,0.00037114925497006013 +illusion_1.5L,sr,28,11.2,alpha,front,-0.003249362693271918 +illusion_1.5L,sr,28,11.2,alpha,upper,-0.00441246633391526 +illusion_1.5L,sr,28,11.2,alpha,lower,-0.00441246633391526 +illusion_1.5L,sr,29,11.6,alpha,front,0.004317321694391543 +illusion_1.5L,sr,29,11.6,alpha,upper,-0.0066401363074367675 +illusion_1.5L,sr,29,11.6,alpha,lower,-0.0066401363074367675 +illusion_1.5L,sr,30,12.0,alpha,front,0.01210476917398291 +illusion_1.5L,sr,30,12.0,alpha,upper,-0.008951924406955743 +illusion_1.5L,sr,30,12.0,alpha,lower,-0.008951924406955743 +illusion_1.5L,sr,31,12.4,alpha,front,0.019115199455289132 +illusion_1.5L,sr,31,12.4,alpha,upper,-0.010972595310320018 +illusion_1.5L,sr,31,12.4,alpha,lower,-0.010972595310320018 +illusion_1.5L,sr,32,12.8,alpha,front,0.02568580466389365 +illusion_1.5L,sr,32,12.8,alpha,upper,-0.013196610183540902 +illusion_1.5L,sr,32,12.8,alpha,lower,-0.013196610183540902 +illusion_1.5L,sr,33,13.2,alpha,front,0.02988677805829867 +illusion_1.5L,sr,33,13.2,alpha,upper,-0.014356663046200353 +illusion_1.5L,sr,33,13.2,alpha,lower,-0.014356663046200353 +illusion_1.5L,sr,34,13.6,alpha,front,0.031069586661301274 +illusion_1.5L,sr,34,13.6,alpha,upper,-0.014083063939766036 +illusion_1.5L,sr,34,13.6,alpha,lower,-0.014083063939766036 +illusion_1.5L,sr,35,14.0,alpha,front,0.02809729361501459 +illusion_1.5L,sr,35,14.0,alpha,upper,-0.01160431495982707 +illusion_1.5L,sr,35,14.0,alpha,lower,-0.01160431495982707 +illusion_1.5L,sr,36,14.4,alpha,front,0.020611227026602397 +illusion_1.5L,sr,36,14.4,alpha,upper,-0.00668452342329269 +illusion_1.5L,sr,36,14.4,alpha,lower,-0.00668452342329269 +illusion_1.5L,sr,37,14.8,alpha,front,0.011466637362174306 +illusion_1.5L,sr,37,14.8,alpha,upper,-0.001376592978090549 +illusion_1.5L,sr,37,14.8,alpha,lower,-0.001376592978090549 +illusion_1.5L,sr,38,15.2,alpha,front,0.002202836186311702 +illusion_1.5L,sr,38,15.2,alpha,upper,0.003364905232896231 +illusion_1.5L,sr,38,15.2,alpha,lower,0.003364905232896231 +illusion_1.5L,sr,39,15.6,alpha,front,-0.004702558781740286 +illusion_1.5L,sr,39,15.6,alpha,upper,0.005977946820158557 +illusion_1.5L,sr,39,15.6,alpha,lower,0.005977946820158557 +illusion_1.5L,sr,40,16.0,alpha,front,-0.01083244899684181 +illusion_1.5L,sr,40,16.0,alpha,upper,0.007923310161605428 +illusion_1.5L,sr,40,16.0,alpha,lower,0.007923310161605428 +illusion_1.5L,sr,41,16.4,alpha,front,-0.01630204274181659 +illusion_1.5L,sr,41,16.4,alpha,upper,0.00955550041968332 +illusion_1.5L,sr,41,16.4,alpha,lower,0.00955550041968332 +illusion_1.5L,sr,42,16.8,alpha,front,-0.022222055527096274 +illusion_1.5L,sr,42,16.8,alpha,upper,0.011886276102034549 +illusion_1.5L,sr,42,16.8,alpha,lower,0.011886276102034549 +illusion_1.5L,sr,43,17.2,alpha,front,-0.026180583922702255 +illusion_1.5L,sr,43,17.2,alpha,upper,0.013276415802138177 +illusion_1.5L,sr,43,17.2,alpha,lower,0.013276415802138177 +illusion_1.5L,sr,44,17.6,alpha,front,-0.026441185053813848 +illusion_1.5L,sr,44,17.6,alpha,upper,0.012508471003079058 +illusion_1.5L,sr,44,17.6,alpha,lower,0.012508471003079058 +illusion_1.5L,sr,45,18.0,alpha,front,-0.023280222729374328 +illusion_1.5L,sr,45,18.0,alpha,upper,0.009861216403793505 +illusion_1.5L,sr,45,18.0,alpha,lower,0.009861216403793505 +illusion_1.5L,sr,46,18.4,alpha,front,-0.017326312146873454 +illusion_1.5L,sr,46,18.4,alpha,upper,0.00584372670009628 +illusion_1.5L,sr,46,18.4,alpha,lower,0.00584372670009628 +illusion_1.5L,sr,47,18.8,alpha,front,-0.011259927455018498 +illusion_1.5L,sr,47,18.8,alpha,upper,0.002386685086015236 +illusion_1.5L,sr,47,18.8,alpha,lower,0.002386685086015236 +illusion_1.5L,sr,48,19.2,alpha,front,-0.004932860981974277 +illusion_1.5L,sr,48,19.2,alpha,upper,-0.0007495211342976177 +illusion_1.5L,sr,48,19.2,alpha,lower,-0.0007495211342976177 +illusion_1.5L,sr,49,19.6,alpha,front,0.0003907535050200264 +illusion_1.5L,sr,49,19.6,alpha,upper,-0.0028332606380326586 +illusion_1.5L,sr,49,19.6,alpha,lower,-0.0028332606380326586 +illusion_1.5L,sr,50,20.0,alpha,front,0.005705837908164911 +illusion_1.5L,sr,50,20.0,alpha,upper,-0.0048148438289824435 +illusion_1.5L,sr,50,20.0,alpha,lower,-0.0048148438289824435 +illusion_1.5L,sr,51,20.4,alpha,front,0.01079257487200265 +illusion_1.5L,sr,51,20.4,alpha,upper,-0.006722515639273229 +illusion_1.5L,sr,51,20.4,alpha,lower,-0.006722515639273229 +illusion_1.5L,sr,52,20.8,alpha,front,0.01550883336634834 +illusion_1.5L,sr,52,20.8,alpha,upper,-0.008591096780404189 +illusion_1.5L,sr,52,20.8,alpha,lower,-0.008591096780404189 +illusion_1.5L,sr,53,21.2,alpha,front,0.018242002828110726 +illusion_1.5L,sr,53,21.2,alpha,upper,-0.009338917968363218 +illusion_1.5L,sr,53,21.2,alpha,lower,-0.009338917968363218 +illusion_1.5L,sr,54,21.6,alpha,front,0.018361588981317456 +illusion_1.5L,sr,54,21.6,alpha,upper,-0.008596864195591102 +illusion_1.5L,sr,54,21.6,alpha,lower,-0.008596864195591102 +illusion_1.5L,sr,55,22.0,alpha,front,0.016572455730416297 +illusion_1.5L,sr,55,22.0,alpha,upper,-0.006954285676216865 +illusion_1.5L,sr,55,22.0,alpha,lower,-0.006954285676216865 +illusion_1.5L,sr,56,22.4,alpha,front,0.012541725701920914 +illusion_1.5L,sr,56,22.4,alpha,upper,-0.004199015738393687 +illusion_1.5L,sr,56,22.4,alpha,lower,-0.004199015738393687 +illusion_1.5L,sr,57,22.8,alpha,front,0.008637572286453302 +illusion_1.5L,sr,57,22.8,alpha,upper,-0.0020497756348281035 +illusion_1.5L,sr,57,22.8,alpha,lower,-0.0020497756348281035 +illusion_1.5L,sr,58,23.2,alpha,front,0.0036968351841446738 +illusion_1.5L,sr,58,23.2,alpha,upper,0.00044635142473788136 +illusion_1.5L,sr,58,23.2,alpha,lower,0.00044635142473788136 +illusion_1.5L,sr,59,23.6,alpha,front,-0.0002485649059829273 +illusion_1.5L,sr,59,23.6,alpha,upper,0.0019434909200980387 +illusion_1.5L,sr,59,23.6,alpha,lower,0.0019434909200980387 +illusion_1.5L,sr,60,24.0,alpha,front,-0.004942124683888441 +illusion_1.5L,sr,60,24.0,alpha,upper,0.0038857191485836677 +illusion_1.5L,sr,60,24.0,alpha,lower,0.0038857191485836677 +illusion_1.5L,sr,61,24.4,alpha,front,-0.008478228201319302 +illusion_1.5L,sr,61,24.4,alpha,upper,0.005007144897456737 +illusion_1.5L,sr,61,24.4,alpha,lower,0.005007144897456737 +illusion_1.5L,sr,62,24.8,alpha,front,-0.012123342553015684 +illusion_1.5L,sr,62,24.8,alpha,upper,0.006366325881740655 +illusion_1.5L,sr,62,24.8,alpha,lower,0.006366325881740655 +illusion_1.5L,sr,63,25.2,alpha,front,-0.014229111869056829 +illusion_1.5L,sr,63,25.2,alpha,upper,0.006852182389797255 +illusion_1.5L,sr,63,25.2,alpha,lower,0.006852182389797255 +illusion_1.5L,sr,64,25.6,alpha,front,-0.01499167463781291 +illusion_1.5L,sr,64,25.6,alpha,upper,0.006696476684389198 +illusion_1.5L,sr,64,25.6,alpha,lower,0.006696476684389198 +illusion_1.5L,sr,65,26.0,alpha,front,-0.014326042878739259 +illusion_1.5L,sr,65,26.0,alpha,upper,0.005894553857231873 +illusion_1.5L,sr,65,26.0,alpha,lower,0.005894553857231873 +illusion_1.5L,sr,66,26.4,alpha,front,-0.012046649270587503 +illusion_1.5L,sr,66,26.4,alpha,upper,0.004340533202328085 +illusion_1.5L,sr,66,26.4,alpha,lower,0.004340533202328085 +illusion_1.5L,sr,67,26.8,alpha,front,-0.00916970107112916 +illusion_1.5L,sr,67,26.8,alpha,upper,0.0027609585540088744 +illusion_1.5L,sr,67,26.8,alpha,lower,0.0027609585540088744 +illusion_1.5L,sr,68,27.2,alpha,front,-0.005032256995352112 +illusion_1.5L,sr,68,27.2,alpha,upper,0.0006092300680038409 +illusion_1.5L,sr,68,27.2,alpha,lower,0.0006092300680038409 +illusion_1.5L,sr,69,27.6,alpha,front,-0.0011407286251941956 +illusion_1.5L,sr,69,27.6,alpha,upper,-0.0011205262435751047 +illusion_1.5L,sr,69,27.6,alpha,lower,-0.0011205262435751047 +illusion_1.5L,sr,70,28.0,alpha,front,0.0016550024992119886 +illusion_1.5L,sr,70,28.0,alpha,upper,-0.001903750836052716 +illusion_1.5L,sr,70,28.0,alpha,lower,-0.001903750836052716 +illusion_1.5L,sr,71,28.4,alpha,front,0.004012508276214773 +illusion_1.5L,sr,71,28.4,alpha,upper,-0.0023652947359882005 +illusion_1.5L,sr,71,28.4,alpha,lower,-0.0023652947359882005 +illusion_1.5L,sr,72,28.8,alpha,front,0.007100434705609549 +illusion_1.5L,sr,72,28.8,alpha,upper,-0.003491356910852249 +illusion_1.5L,sr,72,28.8,alpha,lower,-0.003491356910852249 +illusion_1.5L,sr,73,29.2,alpha,front,0.00981927927121936 +illusion_1.5L,sr,73,29.2,alpha,upper,-0.004555603078350321 +illusion_1.5L,sr,73,29.2,alpha,lower,-0.004555603078350321 +illusion_1.5L,sr,74,29.6,alpha,front,0.011366969930012495 +illusion_1.5L,sr,74,29.6,alpha,upper,-0.005034880360927432 +illusion_1.5L,sr,74,29.6,alpha,lower,-0.005034880360927432 +illusion_1.5L,sr,75,30.0,alpha,front,0.011205279439324027 +illusion_1.5L,sr,75,30.0,alpha,upper,-0.0045862548367556 +illusion_1.5L,sr,75,30.0,alpha,lower,-0.0045862548367556 +illusion_1.5L,sr,76,30.4,alpha,front,0.009626073011246614 +illusion_1.5L,sr,76,30.4,alpha,upper,-0.0034539218088381206 +illusion_1.5L,sr,76,30.4,alpha,lower,-0.0034539218088381206 +illusion_1.5L,sr,77,30.8,alpha,front,0.0073509637979260545 +illusion_1.5L,sr,77,30.8,alpha,upper,-0.00216184396124678 +illusion_1.5L,sr,77,30.8,alpha,lower,-0.00216184396124678 +illusion_1.5L,sr,78,31.2,alpha,front,0.0051712898339163205 +illusion_1.5L,sr,78,31.2,alpha,upper,-0.0012594027154005719 +illusion_1.5L,sr,78,31.2,alpha,lower,-0.0012594027154005719 +illusion_1.5L,sr,79,31.6,alpha,front,0.0028106382349540604 +illusion_1.5L,sr,79,31.6,alpha,upper,-0.0004546128069145179 +illusion_1.5L,sr,79,31.6,alpha,lower,-0.0004546128069145179 +illusion_1.5L,sr,80,32.0,alpha,front,0.00011874360652494587 +illusion_1.5L,sr,80,32.0,alpha,upper,0.0004683919654514535 +illusion_1.5L,sr,80,32.0,alpha,lower,0.0004683919654514535 +illusion_1.5L,sr,81,32.4,alpha,front,-0.0022486702994818433 +illusion_1.5L,sr,81,32.4,alpha,upper,0.0011334862559045158 +illusion_1.5L,sr,81,32.4,alpha,lower,0.0011334862559045158 +illusion_1.5L,sr,82,32.8,alpha,front,-0.004474029699959789 +illusion_1.5L,sr,82,32.8,alpha,upper,0.001776149948967097 +illusion_1.5L,sr,82,32.8,alpha,lower,0.001776149948967097 +illusion_1.5L,sr,83,33.2,alpha,front,-0.006571460732650796 +illusion_1.5L,sr,83,33.2,alpha,upper,0.0024857820132518534 +illusion_1.5L,sr,83,33.2,alpha,lower,0.0024857820132518534 +illusion_1.5L,sr,84,33.6,alpha,front,-0.008323324137478251 +illusion_1.5L,sr,84,33.6,alpha,upper,0.003173762224549251 +illusion_1.5L,sr,84,33.6,alpha,lower,0.003173762224549251 +illusion_1.5L,sr,85,34.0,alpha,front,-0.009282386907669839 +illusion_1.5L,sr,85,34.0,alpha,upper,0.003554729338086912 +illusion_1.5L,sr,85,34.0,alpha,lower,0.003554729338086912 +illusion_1.5L,sr,86,34.4,alpha,front,-0.00906115423656733 +illusion_1.5L,sr,86,34.4,alpha,upper,0.0033686289144114895 +illusion_1.5L,sr,86,34.4,alpha,lower,0.0033686289144114895 +illusion_1.5L,sr,87,34.8,alpha,front,-0.008254175705640257 +illusion_1.5L,sr,87,34.8,alpha,upper,0.0030532909794008796 +illusion_1.5L,sr,87,34.8,alpha,lower,0.0030532909794008796 +illusion_1.5L,sr,88,35.2,alpha,front,-0.006725809223670824 +illusion_1.5L,sr,88,35.2,alpha,upper,0.0024745073144071712 +illusion_1.5L,sr,88,35.2,alpha,lower,0.0024745073144071712 +illusion_1.5L,sr,89,35.6,alpha,front,-0.005225751013400733 +illusion_1.5L,sr,89,35.6,alpha,upper,0.002126862500262082 +illusion_1.5L,sr,89,35.6,alpha,lower,0.002126862500262082 +illusion_1.5L,sr,90,36.0,alpha,front,-0.0033091915416150006 +illusion_1.5L,sr,90,36.0,alpha,upper,0.0015978745780830218 +illusion_1.5L,sr,90,36.0,alpha,lower,0.0015978745780830218 +illusion_1.5L,sr,91,36.4,alpha,front,-0.0011136327188301068 +illusion_1.5L,sr,91,36.4,alpha,upper,0.0009009599729687966 +illusion_1.5L,sr,91,36.4,alpha,lower,0.0009009599729687966 +illusion_1.5L,sr,92,36.8,alpha,front,0.0015908533098599254 +illusion_1.5L,sr,92,36.8,alpha,upper,-0.00021900665103358717 +illusion_1.5L,sr,92,36.8,alpha,lower,-0.00021900665103358717 +illusion_1.5L,sr,93,37.2,alpha,front,0.00403224989675062 +illusion_1.5L,sr,93,37.2,alpha,upper,-0.0012578817238763466 +illusion_1.5L,sr,93,37.2,alpha,lower,-0.0012578817238763466 +illusion_1.5L,sr,94,37.6,alpha,front,0.005976013296507439 +illusion_1.5L,sr,94,37.6,alpha,upper,-0.0021034596624950573 +illusion_1.5L,sr,94,37.6,alpha,lower,-0.0021034596624950573 +illusion_1.5L,sr,95,38.0,alpha,front,0.0071361868745168635 +illusion_1.5L,sr,95,38.0,alpha,upper,-0.0025952365307388287 +illusion_1.5L,sr,95,38.0,alpha,lower,-0.0025952365307388287 +illusion_1.5L,sr,96,38.4,alpha,front,0.007457122406498554 +illusion_1.5L,sr,96,38.4,alpha,upper,-0.002726230818002509 +illusion_1.5L,sr,96,38.4,alpha,lower,-0.002726230818002509 +illusion_1.5L,sr,97,38.8,alpha,front,0.0072769855819390375 +illusion_1.5L,sr,97,38.8,alpha,upper,-0.0027588831467396553 +illusion_1.5L,sr,97,38.8,alpha,lower,-0.0027588831467396553 +illusion_1.5L,sr,98,39.2,alpha,front,0.0064710450523879845 +illusion_1.5L,sr,98,39.2,alpha,upper,-0.0025805646930882366 +illusion_1.5L,sr,98,39.2,alpha,lower,-0.0025805646930882366 +illusion_1.5L,sr,99,39.6,alpha,front,0.005496251887509445 +illusion_1.5L,sr,99,39.6,alpha,upper,-0.0024813084368520213 +illusion_1.5L,sr,99,39.6,alpha,lower,-0.0024813084368520213 +illusion_1.5L,sr,100,40.0,alpha,front,0.003944922962136877 +illusion_1.5L,sr,100,40.0,alpha,upper,-0.002089752131043194 +illusion_1.5L,sr,100,40.0,alpha,lower,-0.002089752131043194 +illusion_1.5L,sr,101,40.4,alpha,front,0.0017608702289695448 +illusion_1.5L,sr,101,40.4,alpha,upper,-0.0012917011353140598 +illusion_1.5L,sr,101,40.4,alpha,lower,-0.0012917011353140598 +illusion_1.5L,sr,102,40.8,alpha,front,-0.0008018653612086832 +illusion_1.5L,sr,102,40.8,alpha,upper,-0.0002006634535730752 +illusion_1.5L,sr,102,40.8,alpha,lower,-0.0002006634535730752 +illusion_1.5L,sr,103,41.2,alpha,front,-0.003461707178867474 +illusion_1.5L,sr,103,41.2,alpha,upper,0.0010381260973620424 +illusion_1.5L,sr,103,41.2,alpha,lower,0.0010381260973620424 +illusion_1.5L,sr,104,41.6,alpha,front,-0.005471760083428652 +illusion_1.5L,sr,104,41.6,alpha,upper,0.0019274884418018885 +illusion_1.5L,sr,104,41.6,alpha,lower,0.0019274884418018885 +illusion_1.5L,sr,105,42.0,alpha,front,-0.00688559335417914 +illusion_1.5L,sr,105,42.0,alpha,upper,0.0025599753117051295 +illusion_1.5L,sr,105,42.0,alpha,lower,0.0025599753117051295 +illusion_1.5L,sr,106,42.4,alpha,front,-0.007448591663921819 +illusion_1.5L,sr,106,42.4,alpha,upper,0.0027858332592634177 +illusion_1.5L,sr,106,42.4,alpha,lower,0.0027858332592634177 +illusion_1.5L,sr,107,42.8,alpha,front,-0.007584916485101837 +illusion_1.5L,sr,107,42.8,alpha,upper,0.0029417618851991442 +illusion_1.5L,sr,107,42.8,alpha,lower,0.0029417618851991442 +illusion_1.5L,sr,108,43.2,alpha,front,-0.006577621652345267 +illusion_1.5L,sr,108,43.2,alpha,upper,0.0024949985500682045 +illusion_1.5L,sr,108,43.2,alpha,lower,0.0024949985500682045 +illusion_1.5L,sr,109,43.6,alpha,front,-0.0046507862803077255 +illusion_1.5L,sr,109,43.6,alpha,upper,0.0015846991928026612 +illusion_1.5L,sr,109,43.6,alpha,lower,0.0015846991928026612 +illusion_1.5L,sr,110,44.0,alpha,front,-0.002821886508023952 +illusion_1.5L,sr,110,44.0,alpha,upper,0.0009111352119937806 +illusion_1.5L,sr,110,44.0,alpha,lower,0.0009111352119937806 +illusion_1.5L,sr,111,44.4,alpha,front,-0.0007122115489716432 +illusion_1.5L,sr,111,44.4,alpha,upper,0.00013361076661078976 +illusion_1.5L,sr,111,44.4,alpha,lower,0.00013361076661078976 +illusion_1.5L,sr,112,44.8,alpha,front,0.0004358416144892262 +illusion_1.5L,sr,112,44.8,alpha,upper,8.775830222559032e-05 +illusion_1.5L,sr,112,44.8,alpha,lower,8.775830222559032e-05 +illusion_1.5L,sr,113,45.2,alpha,front,0.002570127988417669 +illusion_1.5L,sr,113,45.2,alpha,upper,-0.000733218244581545 +illusion_1.5L,sr,113,45.2,alpha,lower,-0.000733218244581545 +illusion_1.5L,sr,114,45.6,alpha,front,0.0037455586635197456 +illusion_1.5L,sr,114,45.6,alpha,upper,-0.0009707020560365612 +illusion_1.5L,sr,114,45.6,alpha,lower,-0.0009707020560365612 +illusion_1.5L,sr,115,46.0,alpha,front,0.005824730112986308 +illusion_1.5L,sr,115,46.0,alpha,upper,-0.002044101953202551 +illusion_1.5L,sr,115,46.0,alpha,lower,-0.002044101953202551 +illusion_1.5L,sr,116,46.4,alpha,front,0.006054233749155029 +illusion_1.5L,sr,116,46.4,alpha,upper,-0.0019621637852936177 +illusion_1.5L,sr,116,46.4,alpha,lower,-0.0019621637852936177 +illusion_1.5L,sr,117,46.8,alpha,front,0.006102712426623996 +illusion_1.5L,sr,117,46.8,alpha,upper,-0.001973321799504664 +illusion_1.5L,sr,117,46.8,alpha,lower,-0.001973321799504664 +illusion_1.5L,sr,118,47.2,alpha,front,0.004792879211670736 +illusion_1.5L,sr,118,47.2,alpha,upper,-0.0012185862531160496 +illusion_1.5L,sr,118,47.2,alpha,lower,-0.0012185862531160496 +illusion_1.5L,sr,119,47.6,alpha,front,0.003843469292565939 +illusion_1.5L,sr,119,47.6,alpha,upper,-0.0009487608913996484 +illusion_1.5L,sr,119,47.6,alpha,lower,-0.0009487608913996484 +illusion_1.5L,sr,120,48.0,alpha,front,0.0025281444375697473 +illusion_1.5L,sr,120,48.0,alpha,upper,-0.0005866756241263704 +illusion_1.5L,sr,120,48.0,alpha,lower,-0.0005866756241263704 +illusion_1.5L,sr,121,48.4,alpha,front,0.001274629314688247 +illusion_1.5L,sr,121,48.4,alpha,upper,-0.0003847855695316132 +illusion_1.5L,sr,121,48.4,alpha,lower,-0.0003847855695316132 +illusion_1.5L,sr,122,48.8,alpha,front,0.00029861376235753613 +illusion_1.5L,sr,122,48.8,alpha,upper,-0.00042609999227336253 +illusion_1.5L,sr,122,48.8,alpha,lower,-0.00042609999227336253 +illusion_1.5L,sr,123,49.2,alpha,front,-0.0013398574769534558 +illusion_1.5L,sr,123,49.2,alpha,upper,5.396530238508529e-05 +illusion_1.5L,sr,123,49.2,alpha,lower,5.396530238508529e-05 +illusion_1.5L,sr,124,49.6,alpha,front,-0.002729908365477731 +illusion_1.5L,sr,124,49.6,alpha,upper,0.00044863492268449115 +illusion_1.5L,sr,124,49.6,alpha,lower,0.00044863492268449115 +illusion_1.5L,sr,125,50.0,alpha,front,-0.004753223582497024 +illusion_1.5L,sr,125,50.0,alpha,upper,0.0014505272787858174 +illusion_1.5L,sr,125,50.0,alpha,lower,0.0014505272787858174 +illusion_1.5L,sr,126,50.4,alpha,front,-0.0051099523232627855 +illusion_1.5L,sr,126,50.4,alpha,upper,0.001404790571308285 +illusion_1.5L,sr,126,50.4,alpha,lower,0.001404790571308285 +illusion_1.5L,sr,127,50.8,alpha,front,-0.005634071886513228 +illusion_1.5L,sr,127,50.8,alpha,upper,0.0016838131725552576 +illusion_1.5L,sr,127,50.8,alpha,lower,0.0016838131725552576 +illusion_1.5L,sr,128,51.2,alpha,front,-0.004695606091689765 +illusion_1.5L,sr,128,51.2,alpha,upper,0.0011070876614221598 +illusion_1.5L,sr,128,51.2,alpha,lower,0.0011070876614221598 +illusion_1.5L,sr,129,51.6,alpha,front,-0.003991090684588326 +illusion_1.5L,sr,129,51.6,alpha,upper,0.0009131544937485623 +illusion_1.5L,sr,129,51.6,alpha,lower,0.0009131544937485623 +illusion_1.5L,sr,130,52.0,alpha,front,-0.0025916445264496553 +illusion_1.5L,sr,130,52.0,alpha,upper,0.00039710795346389535 +illusion_1.5L,sr,130,52.0,alpha,lower,0.00039710795346389535 +illusion_1.5L,sr,131,52.4,alpha,front,-0.001900893948864668 +illusion_1.5L,sr,131,52.4,alpha,upper,0.0005391416377239604 +illusion_1.5L,sr,131,52.4,alpha,lower,0.0005391416377239604 +illusion_1.5L,sr,132,52.8,alpha,front,-0.0009397896472953655 +illusion_1.5L,sr,132,52.8,alpha,upper,0.0005558088883759553 +illusion_1.5L,sr,132,52.8,alpha,lower,0.0005558088883759553 +illusion_1.5L,sr,133,53.2,alpha,front,0.00011926160800021858 +illusion_1.5L,sr,133,53.2,alpha,upper,0.00048140994013186333 +illusion_1.5L,sr,133,53.2,alpha,lower,0.00048140994013186333 +illusion_1.5L,sr,134,53.6,alpha,front,0.001687756328871099 +illusion_1.5L,sr,134,53.6,alpha,upper,-3.0528670566146165e-05 +illusion_1.5L,sr,134,53.6,alpha,lower,-3.0528670566146165e-05 +illusion_1.5L,sr,135,54.0,alpha,front,0.00351324844745185 +illusion_1.5L,sr,135,54.0,alpha,upper,-0.000848133846144912 +illusion_1.5L,sr,135,54.0,alpha,lower,-0.000848133846144912 +illusion_1.5L,sr,136,54.4,alpha,front,0.004224526433040242 +illusion_1.5L,sr,136,54.4,alpha,upper,-0.000999349913356786 +illusion_1.5L,sr,136,54.4,alpha,lower,-0.000999349913356786 +illusion_1.5L,sr,137,54.8,alpha,front,0.004922732766844955 +illusion_1.5L,sr,137,54.8,alpha,upper,-0.0013236379156235795 +illusion_1.5L,sr,137,54.8,alpha,lower,-0.0013236379156235795 +illusion_1.5L,sr,138,55.2,alpha,front,0.004255808420748075 +illusion_1.5L,sr,138,55.2,alpha,upper,-0.0008474341134995685 +illusion_1.5L,sr,138,55.2,alpha,lower,-0.0008474341134995685 +illusion_1.5L,sr,139,55.6,alpha,front,0.0040753554649416435 +illusion_1.5L,sr,139,55.6,alpha,upper,-0.0009388412531615709 +illusion_1.5L,sr,139,55.6,alpha,lower,-0.0009388412531615709 +illusion_1.5L,sr,140,56.0,alpha,front,0.002964672736410757 +illusion_1.5L,sr,140,56.0,alpha,upper,-0.0005380965259628653 +illusion_1.5L,sr,140,56.0,alpha,lower,-0.0005380965259628653 +illusion_1.5L,sr,141,56.4,alpha,front,0.002377622774520402 +illusion_1.5L,sr,141,56.4,alpha,upper,-0.0006755580007866777 +illusion_1.5L,sr,141,56.4,alpha,lower,-0.0006755580007866777 +illusion_1.5L,sr,142,56.8,alpha,front,0.0014747754335299353 +illusion_1.5L,sr,142,56.8,alpha,upper,-0.0006707574137315587 +illusion_1.5L,sr,142,56.8,alpha,lower,-0.0006707574137315587 +illusion_1.5L,sr,143,57.2,alpha,front,0.00039744469248387954 +illusion_1.5L,sr,143,57.2,alpha,upper,-0.0005668036757857688 +illusion_1.5L,sr,143,57.2,alpha,lower,-0.0005668036757857688 +illusion_1.5L,sr,144,57.6,alpha,front,-0.0008317156330464383 +illusion_1.5L,sr,144,57.6,alpha,upper,-0.0003115836070896761 +illusion_1.5L,sr,144,57.6,alpha,lower,-0.0003115836070896761 +illusion_1.5L,sr,145,58.0,alpha,front,-0.002736580979938872 +illusion_1.5L,sr,145,58.0,alpha,upper,0.0005265999703115212 +illusion_1.5L,sr,145,58.0,alpha,lower,0.0005265999703115212 +illusion_1.5L,sr,146,58.4,alpha,front,-0.003391809673464162 +illusion_1.5L,sr,146,58.4,alpha,upper,0.0005767166272758299 +illusion_1.5L,sr,146,58.4,alpha,lower,0.0005767166272758299 +illusion_1.5L,sr,147,58.8,alpha,front,-0.004667969689655167 +illusion_1.5L,sr,147,58.8,alpha,upper,0.0012453248671326807 +illusion_1.5L,sr,147,58.8,alpha,lower,0.0012453248671326807 +illusion_1.5L,sr,148,59.2,alpha,front,-0.003922559581560049 +illusion_1.5L,sr,148,59.2,alpha,upper,0.0006172299824448099 +illusion_1.5L,sr,148,59.2,alpha,lower,0.0006172299824448099 +illusion_1.5L,sr,149,59.6,alpha,front,-0.004227202524566986 +illusion_1.5L,sr,149,59.6,alpha,upper,0.0009633638734095999 +illusion_1.5L,sr,149,59.6,alpha,lower,0.0009633638734095999 +illusion_1.5L,sr,150,60.0,alpha,front,-0.0029264249757510394 +illusion_1.5L,sr,150,60.0,alpha,upper,0.00032390497402451715 +illusion_1.5L,sr,150,60.0,alpha,lower,0.00032390497402451715 +illusion_1.5L,sr,151,60.4,alpha,front,-0.0028024672335313673 +illusion_1.5L,sr,151,60.4,alpha,upper,0.0007228957450934638 +illusion_1.5L,sr,151,60.4,alpha,lower,0.0007228957450934638 +illusion_1.5L,sr,152,60.8,alpha,front,-0.0018160692620801406 +illusion_1.5L,sr,152,60.8,alpha,upper,0.00060377236183045 +illusion_1.5L,sr,152,60.8,alpha,lower,0.00060377236183045 +illusion_1.5L,sr,153,61.2,alpha,front,-0.0011625385431982738 +illusion_1.5L,sr,153,61.2,alpha,upper,0.0007847802918874426 +illusion_1.5L,sr,153,61.2,alpha,lower,0.0007847802918874426 +illusion_1.5L,sr,154,61.6,alpha,front,0.0001847325296769134 +illusion_1.5L,sr,154,61.6,alpha,upper,0.0004464312540114826 +illusion_1.5L,sr,154,61.6,alpha,lower,0.0004464312540114826 +illusion_1.5L,sr,155,62.0,alpha,front,0.0019527031568930748 +illusion_1.5L,sr,155,62.0,alpha,upper,-0.0002623749996142257 +illusion_1.5L,sr,155,62.0,alpha,lower,-0.0002623749996142257 +illusion_1.5L,sr,156,62.4,alpha,front,0.0025815436423066683 +illusion_1.5L,sr,156,62.4,alpha,upper,-0.00023778709939209494 +illusion_1.5L,sr,156,62.4,alpha,lower,-0.00023778709939209494 +illusion_1.5L,sr,157,62.8,alpha,front,0.003913706161371634 +illusion_1.5L,sr,157,62.8,alpha,upper,-0.0008727080708290438 +illusion_1.5L,sr,157,62.8,alpha,lower,-0.0008727080708290438 +illusion_1.5L,sr,158,63.2,alpha,front,0.0034343231189858867 +illusion_1.5L,sr,158,63.2,alpha,upper,-0.0003503775007957198 +illusion_1.5L,sr,158,63.2,alpha,lower,-0.0003503775007957198 +illusion_1.5L,sr,159,63.6,alpha,front,0.0039630299404501135 +illusion_1.5L,sr,159,63.6,alpha,upper,-0.0007611080183633802 +illusion_1.5L,sr,159,63.6,alpha,lower,-0.0007611080183633802 +illusion_1.5L,sr,160,64.0,alpha,front,0.0029276695636488922 +illusion_1.5L,sr,160,64.0,alpha,upper,-0.00022419087547904257 +illusion_1.5L,sr,160,64.0,alpha,lower,-0.00022419087547904257 +illusion_1.5L,sr,161,64.4,alpha,front,0.002874218428350988 +illusion_1.5L,sr,161,64.4,alpha,upper,-0.0005868852733796129 +illusion_1.5L,sr,161,64.4,alpha,lower,-0.0005868852733796129 +illusion_1.5L,sr,162,64.8,alpha,front,0.0019549224605332517 +illusion_1.5L,sr,162,64.8,alpha,upper,-0.00045153481511628346 +illusion_1.5L,sr,162,64.8,alpha,lower,-0.00045153481511628346 +illusion_1.5L,sr,163,65.2,alpha,front,0.0014932677973626745 +illusion_1.5L,sr,163,65.2,alpha,upper,-0.0007348022966396084 +illusion_1.5L,sr,163,65.2,alpha,lower,-0.0007348022966396084 +illusion_1.5L,sr,164,65.6,alpha,front,0.00047112499244804026 +illusion_1.5L,sr,164,65.6,alpha,upper,-0.000628199266511695 +illusion_1.5L,sr,164,65.6,alpha,lower,-0.000628199266511695 +illusion_1.5L,sr,165,66.0,alpha,front,-0.0012470562523425079 +illusion_1.5L,sr,165,66.0,alpha,upper,2.3584194565738625e-05 +illusion_1.5L,sr,165,66.0,alpha,lower,2.3584194565738625e-05 +illusion_1.5L,sr,166,66.4,alpha,front,-0.001931529279054687 +illusion_1.5L,sr,166,66.4,alpha,upper,-3.9144841643551365e-06 +illusion_1.5L,sr,166,66.4,alpha,lower,-3.9144841643551365e-06 +illusion_1.5L,sr,167,66.8,alpha,front,-0.0033209819587683366 +illusion_1.5L,sr,167,66.8,alpha,upper,0.0006053932082863388 +illusion_1.5L,sr,167,66.8,alpha,lower,0.0006053932082863388 +illusion_1.5L,sr,168,67.2,alpha,front,-0.0030514546531422715 +illusion_1.5L,sr,168,67.2,alpha,upper,0.0001524067825507333 +illusion_1.5L,sr,168,67.2,alpha,lower,0.0001524067825507333 +illusion_1.5L,sr,169,67.6,alpha,front,-0.0037288283219122226 +illusion_1.5L,sr,169,67.6,alpha,upper,0.0005772765516985599 +illusion_1.5L,sr,169,67.6,alpha,lower,0.0005772765516985599 +illusion_1.5L,sr,170,68.0,alpha,front,-0.002901512931260876 +illusion_1.5L,sr,170,68.0,alpha,upper,9.116863456619384e-05 +illusion_1.5L,sr,170,68.0,alpha,lower,9.116863456619384e-05 +illusion_1.5L,sr,171,68.4,alpha,front,-0.0029304803671495287 +illusion_1.5L,sr,171,68.4,alpha,upper,0.00042107976223576543 +illusion_1.5L,sr,171,68.4,alpha,lower,0.00042107976223576543 +illusion_1.5L,sr,172,68.8,alpha,front,-0.0022359569258439058 +illusion_1.5L,sr,172,68.8,alpha,upper,0.0003750637972699915 +illusion_1.5L,sr,172,68.8,alpha,lower,0.0003750637972699915 +illusion_1.5L,sr,173,69.2,alpha,front,-0.0017717953176060142 +illusion_1.5L,sr,173,69.2,alpha,upper,0.0006092301595306774 +illusion_1.5L,sr,173,69.2,alpha,lower,0.0006092301595306774 +illusion_1.5L,sr,174,69.6,alpha,front,-0.0011678604405392665 +illusion_1.5L,sr,174,69.6,alpha,upper,0.0007922514567153303 +illusion_1.5L,sr,174,69.6,alpha,lower,0.0007922514567153303 +illusion_1.5L,sr,175,70.0,alpha,front,0.0005370469917947221 +illusion_1.5L,sr,175,70.0,alpha,upper,0.00016026440262450776 +illusion_1.5L,sr,175,70.0,alpha,lower,0.00016026440262450776 +illusion_1.5L,sr,176,70.4,alpha,front,0.001139100808275867 +illusion_1.5L,sr,176,70.4,alpha,upper,0.0002833042096333088 +illusion_1.5L,sr,176,70.4,alpha,lower,0.0002833042096333088 +illusion_1.5L,sr,177,70.8,alpha,front,0.0027706622112655746 +illusion_1.5L,sr,177,70.8,alpha,upper,-0.0004442513577467034 +illusion_1.5L,sr,177,70.8,alpha,lower,-0.0004442513577467034 +illusion_1.5L,sr,178,71.2,alpha,front,0.002545837031713176 +illusion_1.5L,sr,178,71.2,alpha,upper,5.6476438358994685e-05 +illusion_1.5L,sr,178,71.2,alpha,lower,5.6476438358994685e-05 +illusion_1.5L,sr,179,71.6,alpha,front,0.0035020052410032966 +illusion_1.5L,sr,179,71.6,alpha,upper,-0.0004763278348528383 +illusion_1.5L,sr,179,71.6,alpha,lower,-0.0004763278348528383 +illusion_1.5L,sr,180,72.0,alpha,front,0.0026971323231730487 +illusion_1.5L,sr,180,72.0,alpha,upper,9.550772188127861e-05 +illusion_1.5L,sr,180,72.0,alpha,lower,9.550772188127861e-05 +illusion_1.5L,sr,181,72.4,alpha,front,0.0029603471607662843 +illusion_1.5L,sr,181,72.4,alpha,upper,-0.000305606281561812 +illusion_1.5L,sr,181,72.4,alpha,lower,-0.000305606281561812 +illusion_1.5L,sr,182,72.8,alpha,front,0.0022547310182812162 +illusion_1.5L,sr,182,72.8,alpha,upper,-0.00016780290604343634 +illusion_1.5L,sr,182,72.8,alpha,lower,-0.00016780290604343634 +illusion_1.5L,sr,183,73.2,alpha,front,0.002086504962322589 +illusion_1.5L,sr,183,73.2,alpha,upper,-0.0005570144080617838 +illusion_1.5L,sr,183,73.2,alpha,lower,-0.0005570144080617838 +illusion_1.5L,sr,184,73.6,alpha,front,0.0015286094840396558 +illusion_1.5L,sr,184,73.6,alpha,upper,-0.0007404274845722435 +illusion_1.5L,sr,184,73.6,alpha,lower,-0.0007404274845722435 +illusion_1.5L,sr,185,74.0,alpha,front,0.0001475782278012325 +illusion_1.5L,sr,185,74.0,alpha,upper,-0.0003418490980729122 +illusion_1.5L,sr,185,74.0,alpha,lower,-0.0003418490980729122 +illusion_1.5L,sr,186,74.4,alpha,front,-0.0006700931973339114 +illusion_1.5L,sr,186,74.4,alpha,upper,-0.00033282498216166863 +illusion_1.5L,sr,186,74.4,alpha,lower,-0.00033282498216166863 +illusion_1.5L,sr,187,74.8,alpha,front,-0.002109878306316787 +illusion_1.5L,sr,187,74.8,alpha,upper,0.00020470902689785633 +illusion_1.5L,sr,187,74.8,alpha,lower,0.00020470902689785633 +illusion_1.5L,sr,188,75.2,alpha,front,-0.0021903686906347315 +illusion_1.5L,sr,188,75.2,alpha,upper,-0.00014357080030670544 +illusion_1.5L,sr,188,75.2,alpha,lower,-0.00014357080030670544 +illusion_1.5L,sr,189,75.6,alpha,front,-0.00314585367108465 +illusion_1.5L,sr,189,75.6,alpha,upper,0.00029908614081049223 +illusion_1.5L,sr,189,75.6,alpha,lower,0.00029908614081049223 +illusion_1.5L,sr,190,76.0,alpha,front,-0.0027251810403076254 +illusion_1.5L,sr,190,76.0,alpha,upper,-9.369057180092996e-05 +illusion_1.5L,sr,190,76.0,alpha,lower,-9.369057180092996e-05 +illusion_1.5L,sr,191,76.4,alpha,front,-0.0029248611007529346 +illusion_1.5L,sr,191,76.4,alpha,upper,0.00015705864186138854 +illusion_1.5L,sr,191,76.4,alpha,lower,0.00015705864186138854 +illusion_1.5L,sr,192,76.8,alpha,front,-0.002344506476373392 +illusion_1.5L,sr,192,76.8,alpha,upper,1.617282463388381e-05 +illusion_1.5L,sr,192,76.8,alpha,lower,1.617282463388381e-05 +illusion_1.5L,sr,193,77.2,alpha,front,-0.0021723821133571262 +illusion_1.5L,sr,193,77.2,alpha,upper,0.000328768595835853 +illusion_1.5L,sr,193,77.2,alpha,lower,0.000328768595835853 +illusion_1.5L,sr,194,77.6,alpha,front,-0.0019088696200034625 +illusion_1.5L,sr,194,77.6,alpha,upper,0.000683158734744985 +illusion_1.5L,sr,194,77.6,alpha,lower,0.000683158734744985 +illusion_1.5L,sr,195,78.0,alpha,front,-0.000861292306379023 +illusion_1.5L,sr,195,78.0,alpha,upper,0.0005142207929759468 +illusion_1.5L,sr,195,78.0,alpha,lower,0.0005142207929759468 +illusion_1.5L,sr,196,78.4,alpha,front,5.422914020188942e-05 +illusion_1.5L,sr,196,78.4,alpha,upper,0.000443776124995709 +illusion_1.5L,sr,196,78.4,alpha,lower,0.000443776124995709 +illusion_1.5L,sr,197,78.8,alpha,front,0.0014924783536812772 +illusion_1.5L,sr,197,78.8,alpha,upper,-5.4324904391731335e-05 +illusion_1.5L,sr,197,78.8,alpha,lower,-5.4324904391731335e-05 +illusion_1.5L,sr,198,79.2,alpha,front,0.0017671789618360911 +illusion_1.5L,sr,198,79.2,alpha,upper,0.0002130226141008815 +illusion_1.5L,sr,198,79.2,alpha,lower,0.0002130226141008815 +illusion_1.5L,sr,199,79.6,alpha,front,0.002751368245058068 +illusion_1.5L,sr,199,79.6,alpha,upper,-0.00016856407750919303 +illusion_1.5L,sr,199,79.6,alpha,lower,-0.00016856407750919303 +illusion_1.5L,sr,0,0.0,omega,front,1.0991006419167615e-05 +illusion_1.5L,sr,0,0.0,omega,upper,-8.262605798480094e-05 +illusion_1.5L,sr,0,0.0,omega,lower,-8.262605798480094e-05 +illusion_1.5L,sr,1,0.4,omega,front,0.00034135867734309073 +illusion_1.5L,sr,1,0.4,omega,upper,-0.00032469123632323794 +illusion_1.5L,sr,1,0.4,omega,lower,-0.00032469123632323794 +illusion_1.5L,sr,2,0.8,omega,front,3.413276400979853e-05 +illusion_1.5L,sr,2,0.8,omega,upper,-0.00010188035972623508 +illusion_1.5L,sr,2,0.8,omega,lower,-0.00010188035972623508 +illusion_1.5L,sr,3,1.2,omega,front,-0.0004680744310637912 +illusion_1.5L,sr,3,1.2,omega,upper,0.00027515773653314437 +illusion_1.5L,sr,3,1.2,omega,lower,0.00027515773653314437 +illusion_1.5L,sr,4,1.6,omega,front,-0.0007680606653190336 +illusion_1.5L,sr,4,1.6,omega,upper,0.0005029314180911479 +illusion_1.5L,sr,4,1.6,omega,lower,0.0005029314180911479 +illusion_1.5L,sr,5,2.0,omega,front,-0.0006738129963668703 +illusion_1.5L,sr,5,2.0,omega,upper,0.0004419944949712856 +illusion_1.5L,sr,5,2.0,omega,lower,0.0004419944949712856 +illusion_1.5L,sr,6,2.4,omega,front,-0.0002584989235473104 +illusion_1.5L,sr,6,2.4,omega,upper,0.00015104932923581873 +illusion_1.5L,sr,6,2.4,omega,lower,0.00015104932923581873 +illusion_1.5L,sr,7,2.8,omega,front,0.00017161878004966666 +illusion_1.5L,sr,7,2.8,omega,upper,-0.0001409411171373319 +illusion_1.5L,sr,7,2.8,omega,lower,-0.0001409411171373319 +illusion_1.5L,sr,8,3.2,omega,front,0.00041142232068337904 +illusion_1.5L,sr,8,3.2,omega,upper,-0.00028216913707106584 +illusion_1.5L,sr,8,3.2,omega,lower,-0.00028216913707106584 +illusion_1.5L,sr,9,3.6,omega,front,0.0004655320888710042 +illusion_1.5L,sr,9,3.6,omega,upper,-0.00028072475700312966 +illusion_1.5L,sr,9,3.6,omega,lower,-0.00028072475700312966 +illusion_1.5L,sr,10,4.0,omega,front,0.0004989352666314504 +illusion_1.5L,sr,10,4.0,omega,upper,-0.0002645812463095787 +illusion_1.5L,sr,10,4.0,omega,lower,-0.0002645812463095787 +illusion_1.5L,sr,11,4.4,omega,front,0.0005557548182758457 +illusion_1.5L,sr,11,4.4,omega,upper,-0.00027261508547292787 +illusion_1.5L,sr,11,4.4,omega,lower,-0.00027261508547292787 +illusion_1.5L,sr,12,4.8,omega,front,0.0005812700286995892 +illusion_1.5L,sr,12,4.8,omega,upper,-0.00026740758672331863 +illusion_1.5L,sr,12,4.8,omega,lower,-0.00026740758672331863 +illusion_1.5L,sr,13,5.2,omega,front,0.0005028234851183438 +illusion_1.5L,sr,13,5.2,omega,upper,-0.00019737983145492438 +illusion_1.5L,sr,13,5.2,omega,lower,-0.00019737983145492438 +illusion_1.5L,sr,14,5.6,omega,front,0.00035173101268146323 +illusion_1.5L,sr,14,5.6,omega,upper,-8.713240231014274e-05 +illusion_1.5L,sr,14,5.6,omega,lower,-8.713240231014274e-05 +illusion_1.5L,sr,15,6.0,omega,front,0.00019928300078202898 +illusion_1.5L,sr,15,6.0,omega,upper,1.0218849489176118e-05 +illusion_1.5L,sr,15,6.0,omega,lower,1.0218849489176118e-05 +illusion_1.5L,sr,16,6.4,omega,front,8.481338487219519e-05 +illusion_1.5L,sr,16,6.4,omega,upper,6.686394623768105e-05 +illusion_1.5L,sr,16,6.4,omega,lower,6.686394623768105e-05 +illusion_1.5L,sr,17,6.8,omega,front,6.007939611314961e-06 +illusion_1.5L,sr,17,6.8,omega,upper,8.799142133253335e-05 +illusion_1.5L,sr,17,6.8,omega,lower,8.799142133253335e-05 +illusion_1.5L,sr,18,7.2,omega,front,-7.569746922316628e-05 +illusion_1.5L,sr,18,7.2,omega,upper,0.00010648379236979283 +illusion_1.5L,sr,18,7.2,omega,lower,0.00010648379236979283 +illusion_1.5L,sr,19,7.6,omega,front,-0.00015239498826461476 +illusion_1.5L,sr,19,7.6,omega,upper,0.00012053535364396304 +illusion_1.5L,sr,19,7.6,omega,lower,0.00012053535364396304 +illusion_1.5L,sr,20,8.0,omega,front,-0.00022541838819702988 +illusion_1.5L,sr,20,8.0,omega,upper,0.00013437986326828662 +illusion_1.5L,sr,20,8.0,omega,lower,0.00013437986326828662 +illusion_1.5L,sr,21,8.4,omega,front,-0.0002831171399232346 +illusion_1.5L,sr,21,8.4,omega,upper,0.0001419028547178808 +illusion_1.5L,sr,21,8.4,omega,lower,0.0001419028547178808 +illusion_1.5L,sr,22,8.8,omega,front,-0.00034147754585437366 +illusion_1.5L,sr,22,8.8,omega,upper,0.0001564371725349395 +illusion_1.5L,sr,22,8.8,omega,lower,0.0001564371725349395 +illusion_1.5L,sr,23,9.2,omega,front,-0.0003907475917437178 +illusion_1.5L,sr,23,9.2,omega,upper,0.00017209391023114583 +illusion_1.5L,sr,23,9.2,omega,lower,0.00017209391023114583 +illusion_1.5L,sr,24,9.6,omega,front,-0.0003976288048357299 +illusion_1.5L,sr,24,9.6,omega,upper,0.00016581712147691052 +illusion_1.5L,sr,24,9.6,omega,lower,0.00016581712147691052 +illusion_1.5L,sr,25,10.0,omega,front,-0.00035187539882154174 +illusion_1.5L,sr,25,10.0,omega,upper,0.0001312624765702247 +illusion_1.5L,sr,25,10.0,omega,lower,0.0001312624765702247 +illusion_1.5L,sr,26,10.4,omega,front,-0.00024547540710821546 +illusion_1.5L,sr,26,10.4,omega,upper,6.3172331167273e-05 +illusion_1.5L,sr,26,10.4,omega,lower,6.3172331167273e-05 +illusion_1.5L,sr,27,10.8,omega,front,-0.00013665162314649372 +illusion_1.5L,sr,27,10.8,omega,upper,3.711492549700601e-06 +illusion_1.5L,sr,27,10.8,omega,lower,3.711492549700601e-06 +illusion_1.5L,sr,28,11.2,omega,front,-3.249362693271918e-05 +illusion_1.5L,sr,28,11.2,omega,upper,-4.41246633391526e-05 +illusion_1.5L,sr,28,11.2,omega,lower,-4.41246633391526e-05 +illusion_1.5L,sr,29,11.6,omega,front,4.3173216943915436e-05 +illusion_1.5L,sr,29,11.6,omega,upper,-6.640136307436768e-05 +illusion_1.5L,sr,29,11.6,omega,lower,-6.640136307436768e-05 +illusion_1.5L,sr,30,12.0,omega,front,0.0001210476917398291 +illusion_1.5L,sr,30,12.0,omega,upper,-8.951924406955743e-05 +illusion_1.5L,sr,30,12.0,omega,lower,-8.951924406955743e-05 +illusion_1.5L,sr,31,12.4,omega,front,0.00019115199455289132 +illusion_1.5L,sr,31,12.4,omega,upper,-0.00010972595310320017 +illusion_1.5L,sr,31,12.4,omega,lower,-0.00010972595310320017 +illusion_1.5L,sr,32,12.8,omega,front,0.00025685804663893653 +illusion_1.5L,sr,32,12.8,omega,upper,-0.00013196610183540902 +illusion_1.5L,sr,32,12.8,omega,lower,-0.00013196610183540902 +illusion_1.5L,sr,33,13.2,omega,front,0.0002988677805829867 +illusion_1.5L,sr,33,13.2,omega,upper,-0.00014356663046200354 +illusion_1.5L,sr,33,13.2,omega,lower,-0.00014356663046200354 +illusion_1.5L,sr,34,13.6,omega,front,0.00031069586661301273 +illusion_1.5L,sr,34,13.6,omega,upper,-0.00014083063939766035 +illusion_1.5L,sr,34,13.6,omega,lower,-0.00014083063939766035 +illusion_1.5L,sr,35,14.0,omega,front,0.0002809729361501459 +illusion_1.5L,sr,35,14.0,omega,upper,-0.0001160431495982707 +illusion_1.5L,sr,35,14.0,omega,lower,-0.0001160431495982707 +illusion_1.5L,sr,36,14.4,omega,front,0.00020611227026602396 +illusion_1.5L,sr,36,14.4,omega,upper,-6.68452342329269e-05 +illusion_1.5L,sr,36,14.4,omega,lower,-6.68452342329269e-05 +illusion_1.5L,sr,37,14.8,omega,front,0.00011466637362174306 +illusion_1.5L,sr,37,14.8,omega,upper,-1.3765929780905489e-05 +illusion_1.5L,sr,37,14.8,omega,lower,-1.3765929780905489e-05 +illusion_1.5L,sr,38,15.2,omega,front,2.202836186311702e-05 +illusion_1.5L,sr,38,15.2,omega,upper,3.364905232896231e-05 +illusion_1.5L,sr,38,15.2,omega,lower,3.364905232896231e-05 +illusion_1.5L,sr,39,15.6,omega,front,-4.7025587817402864e-05 +illusion_1.5L,sr,39,15.6,omega,upper,5.977946820158557e-05 +illusion_1.5L,sr,39,15.6,omega,lower,5.977946820158557e-05 +illusion_1.5L,sr,40,16.0,omega,front,-0.00010832448996841811 +illusion_1.5L,sr,40,16.0,omega,upper,7.923310161605428e-05 +illusion_1.5L,sr,40,16.0,omega,lower,7.923310161605428e-05 +illusion_1.5L,sr,41,16.4,omega,front,-0.0001630204274181659 +illusion_1.5L,sr,41,16.4,omega,upper,9.55550041968332e-05 +illusion_1.5L,sr,41,16.4,omega,lower,9.55550041968332e-05 +illusion_1.5L,sr,42,16.8,omega,front,-0.00022222055527096275 +illusion_1.5L,sr,42,16.8,omega,upper,0.00011886276102034548 +illusion_1.5L,sr,42,16.8,omega,lower,0.00011886276102034548 +illusion_1.5L,sr,43,17.2,omega,front,-0.00026180583922702256 +illusion_1.5L,sr,43,17.2,omega,upper,0.00013276415802138176 +illusion_1.5L,sr,43,17.2,omega,lower,0.00013276415802138176 +illusion_1.5L,sr,44,17.6,omega,front,-0.0002644118505381385 +illusion_1.5L,sr,44,17.6,omega,upper,0.0001250847100307906 +illusion_1.5L,sr,44,17.6,omega,lower,0.0001250847100307906 +illusion_1.5L,sr,45,18.0,omega,front,-0.0002328022272937433 +illusion_1.5L,sr,45,18.0,omega,upper,9.861216403793505e-05 +illusion_1.5L,sr,45,18.0,omega,lower,9.861216403793505e-05 +illusion_1.5L,sr,46,18.4,omega,front,-0.00017326312146873454 +illusion_1.5L,sr,46,18.4,omega,upper,5.84372670009628e-05 +illusion_1.5L,sr,46,18.4,omega,lower,5.84372670009628e-05 +illusion_1.5L,sr,47,18.8,omega,front,-0.00011259927455018498 +illusion_1.5L,sr,47,18.8,omega,upper,2.3866850860152363e-05 +illusion_1.5L,sr,47,18.8,omega,lower,2.3866850860152363e-05 +illusion_1.5L,sr,48,19.2,omega,front,-4.932860981974277e-05 +illusion_1.5L,sr,48,19.2,omega,upper,-7.495211342976177e-06 +illusion_1.5L,sr,48,19.2,omega,lower,-7.495211342976177e-06 +illusion_1.5L,sr,49,19.6,omega,front,3.907535050200264e-06 +illusion_1.5L,sr,49,19.6,omega,upper,-2.8332606380326586e-05 +illusion_1.5L,sr,49,19.6,omega,lower,-2.8332606380326586e-05 +illusion_1.5L,sr,50,20.0,omega,front,5.7058379081649116e-05 +illusion_1.5L,sr,50,20.0,omega,upper,-4.814843828982444e-05 +illusion_1.5L,sr,50,20.0,omega,lower,-4.814843828982444e-05 +illusion_1.5L,sr,51,20.4,omega,front,0.0001079257487200265 +illusion_1.5L,sr,51,20.4,omega,upper,-6.72251563927323e-05 +illusion_1.5L,sr,51,20.4,omega,lower,-6.72251563927323e-05 +illusion_1.5L,sr,52,20.8,omega,front,0.0001550883336634834 +illusion_1.5L,sr,52,20.8,omega,upper,-8.591096780404189e-05 +illusion_1.5L,sr,52,20.8,omega,lower,-8.591096780404189e-05 +illusion_1.5L,sr,53,21.2,omega,front,0.00018242002828110725 +illusion_1.5L,sr,53,21.2,omega,upper,-9.338917968363219e-05 +illusion_1.5L,sr,53,21.2,omega,lower,-9.338917968363219e-05 +illusion_1.5L,sr,54,21.6,omega,front,0.00018361588981317457 +illusion_1.5L,sr,54,21.6,omega,upper,-8.596864195591101e-05 +illusion_1.5L,sr,54,21.6,omega,lower,-8.596864195591101e-05 +illusion_1.5L,sr,55,22.0,omega,front,0.00016572455730416298 +illusion_1.5L,sr,55,22.0,omega,upper,-6.954285676216865e-05 +illusion_1.5L,sr,55,22.0,omega,lower,-6.954285676216865e-05 +illusion_1.5L,sr,56,22.4,omega,front,0.00012541725701920915 +illusion_1.5L,sr,56,22.4,omega,upper,-4.199015738393687e-05 +illusion_1.5L,sr,56,22.4,omega,lower,-4.199015738393687e-05 +illusion_1.5L,sr,57,22.8,omega,front,8.637572286453301e-05 +illusion_1.5L,sr,57,22.8,omega,upper,-2.0497756348281034e-05 +illusion_1.5L,sr,57,22.8,omega,lower,-2.0497756348281034e-05 +illusion_1.5L,sr,58,23.2,omega,front,3.696835184144674e-05 +illusion_1.5L,sr,58,23.2,omega,upper,4.463514247378814e-06 +illusion_1.5L,sr,58,23.2,omega,lower,4.463514247378814e-06 +illusion_1.5L,sr,59,23.6,omega,front,-2.485649059829273e-06 +illusion_1.5L,sr,59,23.6,omega,upper,1.9434909200980387e-05 +illusion_1.5L,sr,59,23.6,omega,lower,1.9434909200980387e-05 +illusion_1.5L,sr,60,24.0,omega,front,-4.942124683888441e-05 +illusion_1.5L,sr,60,24.0,omega,upper,3.885719148583668e-05 +illusion_1.5L,sr,60,24.0,omega,lower,3.885719148583668e-05 +illusion_1.5L,sr,61,24.4,omega,front,-8.478228201319302e-05 +illusion_1.5L,sr,61,24.4,omega,upper,5.007144897456737e-05 +illusion_1.5L,sr,61,24.4,omega,lower,5.007144897456737e-05 +illusion_1.5L,sr,62,24.8,omega,front,-0.00012123342553015684 +illusion_1.5L,sr,62,24.8,omega,upper,6.366325881740656e-05 +illusion_1.5L,sr,62,24.8,omega,lower,6.366325881740656e-05 +illusion_1.5L,sr,63,25.2,omega,front,-0.0001422911186905683 +illusion_1.5L,sr,63,25.2,omega,upper,6.852182389797255e-05 +illusion_1.5L,sr,63,25.2,omega,lower,6.852182389797255e-05 +illusion_1.5L,sr,64,25.6,omega,front,-0.0001499167463781291 +illusion_1.5L,sr,64,25.6,omega,upper,6.696476684389198e-05 +illusion_1.5L,sr,64,25.6,omega,lower,6.696476684389198e-05 +illusion_1.5L,sr,65,26.0,omega,front,-0.0001432604287873926 +illusion_1.5L,sr,65,26.0,omega,upper,5.8945538572318726e-05 +illusion_1.5L,sr,65,26.0,omega,lower,5.8945538572318726e-05 +illusion_1.5L,sr,66,26.4,omega,front,-0.00012046649270587504 +illusion_1.5L,sr,66,26.4,omega,upper,4.340533202328085e-05 +illusion_1.5L,sr,66,26.4,omega,lower,4.340533202328085e-05 +illusion_1.5L,sr,67,26.8,omega,front,-9.169701071129161e-05 +illusion_1.5L,sr,67,26.8,omega,upper,2.7609585540088746e-05 +illusion_1.5L,sr,67,26.8,omega,lower,2.7609585540088746e-05 +illusion_1.5L,sr,68,27.2,omega,front,-5.032256995352112e-05 +illusion_1.5L,sr,68,27.2,omega,upper,6.09230068003841e-06 +illusion_1.5L,sr,68,27.2,omega,lower,6.09230068003841e-06 +illusion_1.5L,sr,69,27.6,omega,front,-1.1407286251941956e-05 +illusion_1.5L,sr,69,27.6,omega,upper,-1.1205262435751047e-05 +illusion_1.5L,sr,69,27.6,omega,lower,-1.1205262435751047e-05 +illusion_1.5L,sr,70,28.0,omega,front,1.6550024992119887e-05 +illusion_1.5L,sr,70,28.0,omega,upper,-1.903750836052716e-05 +illusion_1.5L,sr,70,28.0,omega,lower,-1.903750836052716e-05 +illusion_1.5L,sr,71,28.4,omega,front,4.012508276214773e-05 +illusion_1.5L,sr,71,28.4,omega,upper,-2.3652947359882006e-05 +illusion_1.5L,sr,71,28.4,omega,lower,-2.3652947359882006e-05 +illusion_1.5L,sr,72,28.8,omega,front,7.100434705609549e-05 +illusion_1.5L,sr,72,28.8,omega,upper,-3.491356910852249e-05 +illusion_1.5L,sr,72,28.8,omega,lower,-3.491356910852249e-05 +illusion_1.5L,sr,73,29.2,omega,front,9.81927927121936e-05 +illusion_1.5L,sr,73,29.2,omega,upper,-4.555603078350321e-05 +illusion_1.5L,sr,73,29.2,omega,lower,-4.555603078350321e-05 +illusion_1.5L,sr,74,29.6,omega,front,0.00011366969930012495 +illusion_1.5L,sr,74,29.6,omega,upper,-5.0348803609274326e-05 +illusion_1.5L,sr,74,29.6,omega,lower,-5.0348803609274326e-05 +illusion_1.5L,sr,75,30.0,omega,front,0.00011205279439324028 +illusion_1.5L,sr,75,30.0,omega,upper,-4.5862548367556e-05 +illusion_1.5L,sr,75,30.0,omega,lower,-4.5862548367556e-05 +illusion_1.5L,sr,76,30.4,omega,front,9.626073011246613e-05 +illusion_1.5L,sr,76,30.4,omega,upper,-3.4539218088381205e-05 +illusion_1.5L,sr,76,30.4,omega,lower,-3.4539218088381205e-05 +illusion_1.5L,sr,77,30.8,omega,front,7.350963797926054e-05 +illusion_1.5L,sr,77,30.8,omega,upper,-2.1618439612467802e-05 +illusion_1.5L,sr,77,30.8,omega,lower,-2.1618439612467802e-05 +illusion_1.5L,sr,78,31.2,omega,front,5.1712898339163205e-05 +illusion_1.5L,sr,78,31.2,omega,upper,-1.2594027154005718e-05 +illusion_1.5L,sr,78,31.2,omega,lower,-1.2594027154005718e-05 +illusion_1.5L,sr,79,31.6,omega,front,2.8106382349540604e-05 +illusion_1.5L,sr,79,31.6,omega,upper,-4.546128069145179e-06 +illusion_1.5L,sr,79,31.6,omega,lower,-4.546128069145179e-06 +illusion_1.5L,sr,80,32.0,omega,front,1.1874360652494587e-06 +illusion_1.5L,sr,80,32.0,omega,upper,4.683919654514535e-06 +illusion_1.5L,sr,80,32.0,omega,lower,4.683919654514535e-06 +illusion_1.5L,sr,81,32.4,omega,front,-2.2486702994818433e-05 +illusion_1.5L,sr,81,32.4,omega,upper,1.1334862559045159e-05 +illusion_1.5L,sr,81,32.4,omega,lower,1.1334862559045159e-05 +illusion_1.5L,sr,82,32.8,omega,front,-4.474029699959789e-05 +illusion_1.5L,sr,82,32.8,omega,upper,1.776149948967097e-05 +illusion_1.5L,sr,82,32.8,omega,lower,1.776149948967097e-05 +illusion_1.5L,sr,83,33.2,omega,front,-6.571460732650796e-05 +illusion_1.5L,sr,83,33.2,omega,upper,2.4857820132518534e-05 +illusion_1.5L,sr,83,33.2,omega,lower,2.4857820132518534e-05 +illusion_1.5L,sr,84,33.6,omega,front,-8.323324137478251e-05 +illusion_1.5L,sr,84,33.6,omega,upper,3.173762224549251e-05 +illusion_1.5L,sr,84,33.6,omega,lower,3.173762224549251e-05 +illusion_1.5L,sr,85,34.0,omega,front,-9.282386907669839e-05 +illusion_1.5L,sr,85,34.0,omega,upper,3.554729338086912e-05 +illusion_1.5L,sr,85,34.0,omega,lower,3.554729338086912e-05 +illusion_1.5L,sr,86,34.4,omega,front,-9.06115423656733e-05 +illusion_1.5L,sr,86,34.4,omega,upper,3.36862891441149e-05 +illusion_1.5L,sr,86,34.4,omega,lower,3.36862891441149e-05 +illusion_1.5L,sr,87,34.8,omega,front,-8.254175705640257e-05 +illusion_1.5L,sr,87,34.8,omega,upper,3.05329097940088e-05 +illusion_1.5L,sr,87,34.8,omega,lower,3.05329097940088e-05 +illusion_1.5L,sr,88,35.2,omega,front,-6.725809223670825e-05 +illusion_1.5L,sr,88,35.2,omega,upper,2.4745073144071713e-05 +illusion_1.5L,sr,88,35.2,omega,lower,2.4745073144071713e-05 +illusion_1.5L,sr,89,35.6,omega,front,-5.225751013400733e-05 +illusion_1.5L,sr,89,35.6,omega,upper,2.126862500262082e-05 +illusion_1.5L,sr,89,35.6,omega,lower,2.126862500262082e-05 +illusion_1.5L,sr,90,36.0,omega,front,-3.3091915416150006e-05 +illusion_1.5L,sr,90,36.0,omega,upper,1.5978745780830217e-05 +illusion_1.5L,sr,90,36.0,omega,lower,1.5978745780830217e-05 +illusion_1.5L,sr,91,36.4,omega,front,-1.1136327188301068e-05 +illusion_1.5L,sr,91,36.4,omega,upper,9.009599729687966e-06 +illusion_1.5L,sr,91,36.4,omega,lower,9.009599729687966e-06 +illusion_1.5L,sr,92,36.8,omega,front,1.5908533098599255e-05 +illusion_1.5L,sr,92,36.8,omega,upper,-2.1900665103358717e-06 +illusion_1.5L,sr,92,36.8,omega,lower,-2.1900665103358717e-06 +illusion_1.5L,sr,93,37.2,omega,front,4.03224989675062e-05 +illusion_1.5L,sr,93,37.2,omega,upper,-1.2578817238763467e-05 +illusion_1.5L,sr,93,37.2,omega,lower,-1.2578817238763467e-05 +illusion_1.5L,sr,94,37.6,omega,front,5.976013296507439e-05 +illusion_1.5L,sr,94,37.6,omega,upper,-2.1034596624950574e-05 +illusion_1.5L,sr,94,37.6,omega,lower,-2.1034596624950574e-05 +illusion_1.5L,sr,95,38.0,omega,front,7.136186874516864e-05 +illusion_1.5L,sr,95,38.0,omega,upper,-2.5952365307388287e-05 +illusion_1.5L,sr,95,38.0,omega,lower,-2.5952365307388287e-05 +illusion_1.5L,sr,96,38.4,omega,front,7.457122406498553e-05 +illusion_1.5L,sr,96,38.4,omega,upper,-2.7262308180025093e-05 +illusion_1.5L,sr,96,38.4,omega,lower,-2.7262308180025093e-05 +illusion_1.5L,sr,97,38.8,omega,front,7.276985581939038e-05 +illusion_1.5L,sr,97,38.8,omega,upper,-2.7588831467396555e-05 +illusion_1.5L,sr,97,38.8,omega,lower,-2.7588831467396555e-05 +illusion_1.5L,sr,98,39.2,omega,front,6.471045052387985e-05 +illusion_1.5L,sr,98,39.2,omega,upper,-2.5805646930882367e-05 +illusion_1.5L,sr,98,39.2,omega,lower,-2.5805646930882367e-05 +illusion_1.5L,sr,99,39.6,omega,front,5.4962518875094455e-05 +illusion_1.5L,sr,99,39.6,omega,upper,-2.4813084368520214e-05 +illusion_1.5L,sr,99,39.6,omega,lower,-2.4813084368520214e-05 +illusion_1.5L,sr,100,40.0,omega,front,3.9449229621368775e-05 +illusion_1.5L,sr,100,40.0,omega,upper,-2.089752131043194e-05 +illusion_1.5L,sr,100,40.0,omega,lower,-2.089752131043194e-05 +illusion_1.5L,sr,101,40.4,omega,front,1.7608702289695448e-05 +illusion_1.5L,sr,101,40.4,omega,upper,-1.2917011353140597e-05 +illusion_1.5L,sr,101,40.4,omega,lower,-1.2917011353140597e-05 +illusion_1.5L,sr,102,40.8,omega,front,-8.018653612086833e-06 +illusion_1.5L,sr,102,40.8,omega,upper,-2.006634535730752e-06 +illusion_1.5L,sr,102,40.8,omega,lower,-2.006634535730752e-06 +illusion_1.5L,sr,103,41.2,omega,front,-3.461707178867474e-05 +illusion_1.5L,sr,103,41.2,omega,upper,1.0381260973620424e-05 +illusion_1.5L,sr,103,41.2,omega,lower,1.0381260973620424e-05 +illusion_1.5L,sr,104,41.6,omega,front,-5.4717600834286524e-05 +illusion_1.5L,sr,104,41.6,omega,upper,1.9274884418018885e-05 +illusion_1.5L,sr,104,41.6,omega,lower,1.9274884418018885e-05 +illusion_1.5L,sr,105,42.0,omega,front,-6.88559335417914e-05 +illusion_1.5L,sr,105,42.0,omega,upper,2.5599753117051296e-05 +illusion_1.5L,sr,105,42.0,omega,lower,2.5599753117051296e-05 +illusion_1.5L,sr,106,42.4,omega,front,-7.448591663921819e-05 +illusion_1.5L,sr,106,42.4,omega,upper,2.785833259263418e-05 +illusion_1.5L,sr,106,42.4,omega,lower,2.785833259263418e-05 +illusion_1.5L,sr,107,42.8,omega,front,-7.584916485101837e-05 +illusion_1.5L,sr,107,42.8,omega,upper,2.9417618851991445e-05 +illusion_1.5L,sr,107,42.8,omega,lower,2.9417618851991445e-05 +illusion_1.5L,sr,108,43.2,omega,front,-6.577621652345267e-05 +illusion_1.5L,sr,108,43.2,omega,upper,2.4949985500682045e-05 +illusion_1.5L,sr,108,43.2,omega,lower,2.4949985500682045e-05 +illusion_1.5L,sr,109,43.6,omega,front,-4.6507862803077255e-05 +illusion_1.5L,sr,109,43.6,omega,upper,1.584699192802661e-05 +illusion_1.5L,sr,109,43.6,omega,lower,1.584699192802661e-05 +illusion_1.5L,sr,110,44.0,omega,front,-2.821886508023952e-05 +illusion_1.5L,sr,110,44.0,omega,upper,9.111352119937806e-06 +illusion_1.5L,sr,110,44.0,omega,lower,9.111352119937806e-06 +illusion_1.5L,sr,111,44.4,omega,front,-7.122115489716433e-06 +illusion_1.5L,sr,111,44.4,omega,upper,1.3361076661078977e-06 +illusion_1.5L,sr,111,44.4,omega,lower,1.3361076661078977e-06 +illusion_1.5L,sr,112,44.8,omega,front,4.358416144892262e-06 +illusion_1.5L,sr,112,44.8,omega,upper,8.775830222559033e-07 +illusion_1.5L,sr,112,44.8,omega,lower,8.775830222559033e-07 +illusion_1.5L,sr,113,45.2,omega,front,2.570127988417669e-05 +illusion_1.5L,sr,113,45.2,omega,upper,-7.33218244581545e-06 +illusion_1.5L,sr,113,45.2,omega,lower,-7.33218244581545e-06 +illusion_1.5L,sr,114,45.6,omega,front,3.745558663519746e-05 +illusion_1.5L,sr,114,45.6,omega,upper,-9.707020560365612e-06 +illusion_1.5L,sr,114,45.6,omega,lower,-9.707020560365612e-06 +illusion_1.5L,sr,115,46.0,omega,front,5.824730112986308e-05 +illusion_1.5L,sr,115,46.0,omega,upper,-2.0441019532025512e-05 +illusion_1.5L,sr,115,46.0,omega,lower,-2.0441019532025512e-05 +illusion_1.5L,sr,116,46.4,omega,front,6.054233749155029e-05 +illusion_1.5L,sr,116,46.4,omega,upper,-1.9621637852936177e-05 +illusion_1.5L,sr,116,46.4,omega,lower,-1.9621637852936177e-05 +illusion_1.5L,sr,117,46.8,omega,front,6.102712426623996e-05 +illusion_1.5L,sr,117,46.8,omega,upper,-1.973321799504664e-05 +illusion_1.5L,sr,117,46.8,omega,lower,-1.973321799504664e-05 +illusion_1.5L,sr,118,47.2,omega,front,4.792879211670736e-05 +illusion_1.5L,sr,118,47.2,omega,upper,-1.2185862531160496e-05 +illusion_1.5L,sr,118,47.2,omega,lower,-1.2185862531160496e-05 +illusion_1.5L,sr,119,47.6,omega,front,3.843469292565939e-05 +illusion_1.5L,sr,119,47.6,omega,upper,-9.487608913996484e-06 +illusion_1.5L,sr,119,47.6,omega,lower,-9.487608913996484e-06 +illusion_1.5L,sr,120,48.0,omega,front,2.5281444375697474e-05 +illusion_1.5L,sr,120,48.0,omega,upper,-5.8667562412637045e-06 +illusion_1.5L,sr,120,48.0,omega,lower,-5.8667562412637045e-06 +illusion_1.5L,sr,121,48.4,omega,front,1.274629314688247e-05 +illusion_1.5L,sr,121,48.4,omega,upper,-3.847855695316132e-06 +illusion_1.5L,sr,121,48.4,omega,lower,-3.847855695316132e-06 +illusion_1.5L,sr,122,48.8,omega,front,2.9861376235753614e-06 +illusion_1.5L,sr,122,48.8,omega,upper,-4.260999922733625e-06 +illusion_1.5L,sr,122,48.8,omega,lower,-4.260999922733625e-06 +illusion_1.5L,sr,123,49.2,omega,front,-1.3398574769534558e-05 +illusion_1.5L,sr,123,49.2,omega,upper,5.396530238508529e-07 +illusion_1.5L,sr,123,49.2,omega,lower,5.396530238508529e-07 +illusion_1.5L,sr,124,49.6,omega,front,-2.729908365477731e-05 +illusion_1.5L,sr,124,49.6,omega,upper,4.486349226844911e-06 +illusion_1.5L,sr,124,49.6,omega,lower,4.486349226844911e-06 +illusion_1.5L,sr,125,50.0,omega,front,-4.753223582497024e-05 +illusion_1.5L,sr,125,50.0,omega,upper,1.4505272787858175e-05 +illusion_1.5L,sr,125,50.0,omega,lower,1.4505272787858175e-05 +illusion_1.5L,sr,126,50.4,omega,front,-5.109952323262786e-05 +illusion_1.5L,sr,126,50.4,omega,upper,1.4047905713082849e-05 +illusion_1.5L,sr,126,50.4,omega,lower,1.4047905713082849e-05 +illusion_1.5L,sr,127,50.8,omega,front,-5.634071886513228e-05 +illusion_1.5L,sr,127,50.8,omega,upper,1.6838131725552575e-05 +illusion_1.5L,sr,127,50.8,omega,lower,1.6838131725552575e-05 +illusion_1.5L,sr,128,51.2,omega,front,-4.695606091689765e-05 +illusion_1.5L,sr,128,51.2,omega,upper,1.1070876614221598e-05 +illusion_1.5L,sr,128,51.2,omega,lower,1.1070876614221598e-05 +illusion_1.5L,sr,129,51.6,omega,front,-3.991090684588326e-05 +illusion_1.5L,sr,129,51.6,omega,upper,9.131544937485623e-06 +illusion_1.5L,sr,129,51.6,omega,lower,9.131544937485623e-06 +illusion_1.5L,sr,130,52.0,omega,front,-2.5916445264496552e-05 +illusion_1.5L,sr,130,52.0,omega,upper,3.971079534638954e-06 +illusion_1.5L,sr,130,52.0,omega,lower,3.971079534638954e-06 +illusion_1.5L,sr,131,52.4,omega,front,-1.900893948864668e-05 +illusion_1.5L,sr,131,52.4,omega,upper,5.391416377239604e-06 +illusion_1.5L,sr,131,52.4,omega,lower,5.391416377239604e-06 +illusion_1.5L,sr,132,52.8,omega,front,-9.397896472953656e-06 +illusion_1.5L,sr,132,52.8,omega,upper,5.558088883759554e-06 +illusion_1.5L,sr,132,52.8,omega,lower,5.558088883759554e-06 +illusion_1.5L,sr,133,53.2,omega,front,1.1926160800021859e-06 +illusion_1.5L,sr,133,53.2,omega,upper,4.8140994013186335e-06 +illusion_1.5L,sr,133,53.2,omega,lower,4.8140994013186335e-06 +illusion_1.5L,sr,134,53.6,omega,front,1.687756328871099e-05 +illusion_1.5L,sr,134,53.6,omega,upper,-3.0528670566146165e-07 +illusion_1.5L,sr,134,53.6,omega,lower,-3.0528670566146165e-07 +illusion_1.5L,sr,135,54.0,omega,front,3.51324844745185e-05 +illusion_1.5L,sr,135,54.0,omega,upper,-8.48133846144912e-06 +illusion_1.5L,sr,135,54.0,omega,lower,-8.48133846144912e-06 +illusion_1.5L,sr,136,54.4,omega,front,4.224526433040242e-05 +illusion_1.5L,sr,136,54.4,omega,upper,-9.99349913356786e-06 +illusion_1.5L,sr,136,54.4,omega,lower,-9.99349913356786e-06 +illusion_1.5L,sr,137,54.8,omega,front,4.922732766844955e-05 +illusion_1.5L,sr,137,54.8,omega,upper,-1.3236379156235795e-05 +illusion_1.5L,sr,137,54.8,omega,lower,-1.3236379156235795e-05 +illusion_1.5L,sr,138,55.2,omega,front,4.255808420748075e-05 +illusion_1.5L,sr,138,55.2,omega,upper,-8.474341134995685e-06 +illusion_1.5L,sr,138,55.2,omega,lower,-8.474341134995685e-06 +illusion_1.5L,sr,139,55.6,omega,front,4.075355464941644e-05 +illusion_1.5L,sr,139,55.6,omega,upper,-9.388412531615709e-06 +illusion_1.5L,sr,139,55.6,omega,lower,-9.388412531615709e-06 +illusion_1.5L,sr,140,56.0,omega,front,2.9646727364107567e-05 +illusion_1.5L,sr,140,56.0,omega,upper,-5.3809652596286536e-06 +illusion_1.5L,sr,140,56.0,omega,lower,-5.3809652596286536e-06 +illusion_1.5L,sr,141,56.4,omega,front,2.377622774520402e-05 +illusion_1.5L,sr,141,56.4,omega,upper,-6.7555800078667775e-06 +illusion_1.5L,sr,141,56.4,omega,lower,-6.7555800078667775e-06 +illusion_1.5L,sr,142,56.8,omega,front,1.4747754335299353e-05 +illusion_1.5L,sr,142,56.8,omega,upper,-6.707574137315587e-06 +illusion_1.5L,sr,142,56.8,omega,lower,-6.707574137315587e-06 +illusion_1.5L,sr,143,57.2,omega,front,3.9744469248387955e-06 +illusion_1.5L,sr,143,57.2,omega,upper,-5.668036757857688e-06 +illusion_1.5L,sr,143,57.2,omega,lower,-5.668036757857688e-06 +illusion_1.5L,sr,144,57.6,omega,front,-8.317156330464384e-06 +illusion_1.5L,sr,144,57.6,omega,upper,-3.115836070896761e-06 +illusion_1.5L,sr,144,57.6,omega,lower,-3.115836070896761e-06 +illusion_1.5L,sr,145,58.0,omega,front,-2.736580979938872e-05 +illusion_1.5L,sr,145,58.0,omega,upper,5.265999703115212e-06 +illusion_1.5L,sr,145,58.0,omega,lower,5.265999703115212e-06 +illusion_1.5L,sr,146,58.4,omega,front,-3.391809673464162e-05 +illusion_1.5L,sr,146,58.4,omega,upper,5.7671662727582995e-06 +illusion_1.5L,sr,146,58.4,omega,lower,5.7671662727582995e-06 +illusion_1.5L,sr,147,58.8,omega,front,-4.6679696896551674e-05 +illusion_1.5L,sr,147,58.8,omega,upper,1.2453248671326807e-05 +illusion_1.5L,sr,147,58.8,omega,lower,1.2453248671326807e-05 +illusion_1.5L,sr,148,59.2,omega,front,-3.9225595815600495e-05 +illusion_1.5L,sr,148,59.2,omega,upper,6.1722998244480995e-06 +illusion_1.5L,sr,148,59.2,omega,lower,6.1722998244480995e-06 +illusion_1.5L,sr,149,59.6,omega,front,-4.2272025245669864e-05 +illusion_1.5L,sr,149,59.6,omega,upper,9.633638734095999e-06 +illusion_1.5L,sr,149,59.6,omega,lower,9.633638734095999e-06 +illusion_1.5L,sr,150,60.0,omega,front,-2.9264249757510395e-05 +illusion_1.5L,sr,150,60.0,omega,upper,3.2390497402451714e-06 +illusion_1.5L,sr,150,60.0,omega,lower,3.2390497402451714e-06 +illusion_1.5L,sr,151,60.4,omega,front,-2.8024672335313672e-05 +illusion_1.5L,sr,151,60.4,omega,upper,7.228957450934638e-06 +illusion_1.5L,sr,151,60.4,omega,lower,7.228957450934638e-06 +illusion_1.5L,sr,152,60.8,omega,front,-1.8160692620801406e-05 +illusion_1.5L,sr,152,60.8,omega,upper,6.0377236183045e-06 +illusion_1.5L,sr,152,60.8,omega,lower,6.0377236183045e-06 +illusion_1.5L,sr,153,61.2,omega,front,-1.1625385431982739e-05 +illusion_1.5L,sr,153,61.2,omega,upper,7.847802918874426e-06 +illusion_1.5L,sr,153,61.2,omega,lower,7.847802918874426e-06 +illusion_1.5L,sr,154,61.6,omega,front,1.847325296769134e-06 +illusion_1.5L,sr,154,61.6,omega,upper,4.464312540114826e-06 +illusion_1.5L,sr,154,61.6,omega,lower,4.464312540114826e-06 +illusion_1.5L,sr,155,62.0,omega,front,1.952703156893075e-05 +illusion_1.5L,sr,155,62.0,omega,upper,-2.623749996142257e-06 +illusion_1.5L,sr,155,62.0,omega,lower,-2.623749996142257e-06 +illusion_1.5L,sr,156,62.4,omega,front,2.5815436423066684e-05 +illusion_1.5L,sr,156,62.4,omega,upper,-2.3778709939209495e-06 +illusion_1.5L,sr,156,62.4,omega,lower,-2.3778709939209495e-06 +illusion_1.5L,sr,157,62.8,omega,front,3.913706161371634e-05 +illusion_1.5L,sr,157,62.8,omega,upper,-8.727080708290438e-06 +illusion_1.5L,sr,157,62.8,omega,lower,-8.727080708290438e-06 +illusion_1.5L,sr,158,63.2,omega,front,3.434323118985887e-05 +illusion_1.5L,sr,158,63.2,omega,upper,-3.503775007957198e-06 +illusion_1.5L,sr,158,63.2,omega,lower,-3.503775007957198e-06 +illusion_1.5L,sr,159,63.6,omega,front,3.9630299404501136e-05 +illusion_1.5L,sr,159,63.6,omega,upper,-7.611080183633802e-06 +illusion_1.5L,sr,159,63.6,omega,lower,-7.611080183633802e-06 +illusion_1.5L,sr,160,64.0,omega,front,2.9276695636488922e-05 +illusion_1.5L,sr,160,64.0,omega,upper,-2.2419087547904256e-06 +illusion_1.5L,sr,160,64.0,omega,lower,-2.2419087547904256e-06 +illusion_1.5L,sr,161,64.4,omega,front,2.874218428350988e-05 +illusion_1.5L,sr,161,64.4,omega,upper,-5.868852733796129e-06 +illusion_1.5L,sr,161,64.4,omega,lower,-5.868852733796129e-06 +illusion_1.5L,sr,162,64.8,omega,front,1.9549224605332517e-05 +illusion_1.5L,sr,162,64.8,omega,upper,-4.515348151162835e-06 +illusion_1.5L,sr,162,64.8,omega,lower,-4.515348151162835e-06 +illusion_1.5L,sr,163,65.2,omega,front,1.4932677973626745e-05 +illusion_1.5L,sr,163,65.2,omega,upper,-7.348022966396084e-06 +illusion_1.5L,sr,163,65.2,omega,lower,-7.348022966396084e-06 +illusion_1.5L,sr,164,65.6,omega,front,4.7112499244804025e-06 +illusion_1.5L,sr,164,65.6,omega,upper,-6.28199266511695e-06 +illusion_1.5L,sr,164,65.6,omega,lower,-6.28199266511695e-06 +illusion_1.5L,sr,165,66.0,omega,front,-1.2470562523425079e-05 +illusion_1.5L,sr,165,66.0,omega,upper,2.3584194565738625e-07 +illusion_1.5L,sr,165,66.0,omega,lower,2.3584194565738625e-07 +illusion_1.5L,sr,166,66.4,omega,front,-1.931529279054687e-05 +illusion_1.5L,sr,166,66.4,omega,upper,-3.9144841643551364e-08 +illusion_1.5L,sr,166,66.4,omega,lower,-3.9144841643551364e-08 +illusion_1.5L,sr,167,66.8,omega,front,-3.3209819587683365e-05 +illusion_1.5L,sr,167,66.8,omega,upper,6.053932082863388e-06 +illusion_1.5L,sr,167,66.8,omega,lower,6.053932082863388e-06 +illusion_1.5L,sr,168,67.2,omega,front,-3.0514546531422714e-05 +illusion_1.5L,sr,168,67.2,omega,upper,1.5240678255073331e-06 +illusion_1.5L,sr,168,67.2,omega,lower,1.5240678255073331e-06 +illusion_1.5L,sr,169,67.6,omega,front,-3.7288283219122226e-05 +illusion_1.5L,sr,169,67.6,omega,upper,5.7727655169856e-06 +illusion_1.5L,sr,169,67.6,omega,lower,5.7727655169856e-06 +illusion_1.5L,sr,170,68.0,omega,front,-2.901512931260876e-05 +illusion_1.5L,sr,170,68.0,omega,upper,9.116863456619385e-07 +illusion_1.5L,sr,170,68.0,omega,lower,9.116863456619385e-07 +illusion_1.5L,sr,171,68.4,omega,front,-2.930480367149529e-05 +illusion_1.5L,sr,171,68.4,omega,upper,4.210797622357654e-06 +illusion_1.5L,sr,171,68.4,omega,lower,4.210797622357654e-06 +illusion_1.5L,sr,172,68.8,omega,front,-2.2359569258439056e-05 +illusion_1.5L,sr,172,68.8,omega,upper,3.750637972699915e-06 +illusion_1.5L,sr,172,68.8,omega,lower,3.750637972699915e-06 +illusion_1.5L,sr,173,69.2,omega,front,-1.7717953176060142e-05 +illusion_1.5L,sr,173,69.2,omega,upper,6.092301595306774e-06 +illusion_1.5L,sr,173,69.2,omega,lower,6.092301595306774e-06 +illusion_1.5L,sr,174,69.6,omega,front,-1.1678604405392665e-05 +illusion_1.5L,sr,174,69.6,omega,upper,7.922514567153303e-06 +illusion_1.5L,sr,174,69.6,omega,lower,7.922514567153303e-06 +illusion_1.5L,sr,175,70.0,omega,front,5.370469917947221e-06 +illusion_1.5L,sr,175,70.0,omega,upper,1.6026440262450777e-06 +illusion_1.5L,sr,175,70.0,omega,lower,1.6026440262450777e-06 +illusion_1.5L,sr,176,70.4,omega,front,1.139100808275867e-05 +illusion_1.5L,sr,176,70.4,omega,upper,2.833042096333088e-06 +illusion_1.5L,sr,176,70.4,omega,lower,2.833042096333088e-06 +illusion_1.5L,sr,177,70.8,omega,front,2.7706622112655748e-05 +illusion_1.5L,sr,177,70.8,omega,upper,-4.442513577467034e-06 +illusion_1.5L,sr,177,70.8,omega,lower,-4.442513577467034e-06 +illusion_1.5L,sr,178,71.2,omega,front,2.545837031713176e-05 +illusion_1.5L,sr,178,71.2,omega,upper,5.647643835899469e-07 +illusion_1.5L,sr,178,71.2,omega,lower,5.647643835899469e-07 +illusion_1.5L,sr,179,71.6,omega,front,3.5020052410032965e-05 +illusion_1.5L,sr,179,71.6,omega,upper,-4.763278348528383e-06 +illusion_1.5L,sr,179,71.6,omega,lower,-4.763278348528383e-06 +illusion_1.5L,sr,180,72.0,omega,front,2.6971323231730488e-05 +illusion_1.5L,sr,180,72.0,omega,upper,9.55077218812786e-07 +illusion_1.5L,sr,180,72.0,omega,lower,9.55077218812786e-07 +illusion_1.5L,sr,181,72.4,omega,front,2.9603471607662845e-05 +illusion_1.5L,sr,181,72.4,omega,upper,-3.05606281561812e-06 +illusion_1.5L,sr,181,72.4,omega,lower,-3.05606281561812e-06 +illusion_1.5L,sr,182,72.8,omega,front,2.2547310182812164e-05 +illusion_1.5L,sr,182,72.8,omega,upper,-1.6780290604343634e-06 +illusion_1.5L,sr,182,72.8,omega,lower,-1.6780290604343634e-06 +illusion_1.5L,sr,183,73.2,omega,front,2.0865049623225892e-05 +illusion_1.5L,sr,183,73.2,omega,upper,-5.570144080617838e-06 +illusion_1.5L,sr,183,73.2,omega,lower,-5.570144080617838e-06 +illusion_1.5L,sr,184,73.6,omega,front,1.528609484039656e-05 +illusion_1.5L,sr,184,73.6,omega,upper,-7.404274845722436e-06 +illusion_1.5L,sr,184,73.6,omega,lower,-7.404274845722436e-06 +illusion_1.5L,sr,185,74.0,omega,front,1.4757822780123252e-06 +illusion_1.5L,sr,185,74.0,omega,upper,-3.418490980729122e-06 +illusion_1.5L,sr,185,74.0,omega,lower,-3.418490980729122e-06 +illusion_1.5L,sr,186,74.4,omega,front,-6.700931973339114e-06 +illusion_1.5L,sr,186,74.4,omega,upper,-3.3282498216166865e-06 +illusion_1.5L,sr,186,74.4,omega,lower,-3.3282498216166865e-06 +illusion_1.5L,sr,187,74.8,omega,front,-2.109878306316787e-05 +illusion_1.5L,sr,187,74.8,omega,upper,2.0470902689785633e-06 +illusion_1.5L,sr,187,74.8,omega,lower,2.0470902689785633e-06 +illusion_1.5L,sr,188,75.2,omega,front,-2.1903686906347317e-05 +illusion_1.5L,sr,188,75.2,omega,upper,-1.4357080030670545e-06 +illusion_1.5L,sr,188,75.2,omega,lower,-1.4357080030670545e-06 +illusion_1.5L,sr,189,75.6,omega,front,-3.1458536710846504e-05 +illusion_1.5L,sr,189,75.6,omega,upper,2.990861408104922e-06 +illusion_1.5L,sr,189,75.6,omega,lower,2.990861408104922e-06 +illusion_1.5L,sr,190,76.0,omega,front,-2.7251810403076254e-05 +illusion_1.5L,sr,190,76.0,omega,upper,-9.369057180092996e-07 +illusion_1.5L,sr,190,76.0,omega,lower,-9.369057180092996e-07 +illusion_1.5L,sr,191,76.4,omega,front,-2.9248611007529347e-05 +illusion_1.5L,sr,191,76.4,omega,upper,1.5705864186138856e-06 +illusion_1.5L,sr,191,76.4,omega,lower,1.5705864186138856e-06 +illusion_1.5L,sr,192,76.8,omega,front,-2.344506476373392e-05 +illusion_1.5L,sr,192,76.8,omega,upper,1.6172824633883808e-07 +illusion_1.5L,sr,192,76.8,omega,lower,1.6172824633883808e-07 +illusion_1.5L,sr,193,77.2,omega,front,-2.1723821133571262e-05 +illusion_1.5L,sr,193,77.2,omega,upper,3.28768595835853e-06 +illusion_1.5L,sr,193,77.2,omega,lower,3.28768595835853e-06 +illusion_1.5L,sr,194,77.6,omega,front,-1.9088696200034625e-05 +illusion_1.5L,sr,194,77.6,omega,upper,6.831587347449851e-06 +illusion_1.5L,sr,194,77.6,omega,lower,6.831587347449851e-06 +illusion_1.5L,sr,195,78.0,omega,front,-8.61292306379023e-06 +illusion_1.5L,sr,195,78.0,omega,upper,5.1422079297594675e-06 +illusion_1.5L,sr,195,78.0,omega,lower,5.1422079297594675e-06 +illusion_1.5L,sr,196,78.4,omega,front,5.422914020188942e-07 +illusion_1.5L,sr,196,78.4,omega,upper,4.43776124995709e-06 +illusion_1.5L,sr,196,78.4,omega,lower,4.43776124995709e-06 +illusion_1.5L,sr,197,78.8,omega,front,1.4924783536812772e-05 +illusion_1.5L,sr,197,78.8,omega,upper,-5.432490439173134e-07 +illusion_1.5L,sr,197,78.8,omega,lower,-5.432490439173134e-07 +illusion_1.5L,sr,198,79.2,omega,front,1.767178961836091e-05 +illusion_1.5L,sr,198,79.2,omega,upper,2.130226141008815e-06 +illusion_1.5L,sr,198,79.2,omega,lower,2.130226141008815e-06 +illusion_1.5L,sr,199,79.6,omega,front,2.7513682450580682e-05 +illusion_1.5L,sr,199,79.6,omega,upper,-1.6856407750919304e-06 +illusion_1.5L,sr,199,79.6,omega,lower,-1.6856407750919304e-06 +illusion_1.5L,sr,0,0.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,sr,0,0.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,sr,1,0.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,sr,1,0.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,sr,2,0.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,sr,2,0.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,sr,3,1.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,sr,3,1.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,sr,4,1.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,sr,4,1.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,sr,5,2.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,sr,5,2.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,sr,6,2.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,sr,6,2.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,sr,7,2.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,sr,7,2.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,sr,8,3.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,sr,8,3.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,sr,9,3.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,sr,9,3.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,sr,10,4.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,sr,10,4.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,sr,11,4.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,sr,11,4.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,sr,12,4.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,sr,12,4.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,sr,13,5.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,sr,13,5.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,sr,14,5.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,sr,14,5.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,sr,15,6.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,sr,15,6.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,sr,16,6.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,sr,16,6.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,sr,17,6.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,sr,17,6.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,sr,18,7.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,sr,18,7.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,sr,19,7.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,sr,19,7.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,sr,20,8.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,sr,20,8.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,sr,21,8.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,sr,21,8.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,sr,22,8.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,sr,22,8.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,sr,23,9.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,sr,23,9.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,sr,24,9.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,sr,24,9.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,sr,25,10.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,sr,25,10.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,sr,26,10.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,sr,26,10.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,sr,27,10.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,sr,27,10.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,sr,28,11.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,sr,28,11.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,sr,29,11.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,sr,29,11.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,sr,30,12.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,sr,30,12.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,sr,31,12.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,sr,31,12.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,sr,32,12.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,sr,32,12.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,sr,33,13.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,sr,33,13.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,sr,34,13.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,sr,34,13.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,sr,35,14.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,sr,35,14.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,sr,36,14.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,sr,36,14.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,sr,37,14.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,sr,37,14.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,sr,38,15.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,sr,38,15.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,sr,39,15.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,sr,39,15.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,sr,40,16.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,sr,40,16.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,sr,41,16.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,sr,41,16.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,sr,42,16.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,sr,42,16.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,sr,43,17.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,sr,43,17.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,sr,44,17.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,sr,44,17.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,sr,45,18.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,sr,45,18.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,sr,46,18.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,sr,46,18.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,sr,47,18.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,sr,47,18.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,sr,48,19.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,sr,48,19.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,sr,49,19.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,sr,49,19.6,target_force,target_cl,-0.0037041637115180492 +illusion_1.5L,sr,50,20.0,target_force,target_cd,0.00852078478783369 +illusion_1.5L,sr,50,20.0,target_force,target_cl,-0.002988493302837014 +illusion_1.5L,sr,51,20.4,target_force,target_cd,0.008339837193489075 +illusion_1.5L,sr,51,20.4,target_force,target_cl,-0.0020893490873277187 +illusion_1.5L,sr,52,20.8,target_force,target_cd,0.008356091566383839 +illusion_1.5L,sr,52,20.8,target_force,target_cl,-0.001062412979081273 +illusion_1.5L,sr,53,21.2,target_force,target_cd,0.00832816120237112 +illusion_1.5L,sr,53,21.2,target_force,target_cl,2.9825627279933542e-05 +illusion_1.5L,sr,54,21.6,target_force,target_cd,0.008069791831076145 +illusion_1.5L,sr,54,21.6,target_force,target_cl,0.0011218518484383821 +illusion_1.5L,sr,55,22.0,target_force,target_cd,0.008051803335547447 +illusion_1.5L,sr,55,22.0,target_force,target_cl,0.002149005187675357 +illusion_1.5L,sr,56,22.4,target_force,target_cd,0.008151903748512268 +illusion_1.5L,sr,56,22.4,target_force,target_cl,0.0030512260273098946 +illusion_1.5L,sr,57,22.8,target_force,target_cd,0.00834288913756609 +illusion_1.5L,sr,57,22.8,target_force,target_cl,0.0037764590233564377 +illusion_1.5L,sr,58,23.2,target_force,target_cd,0.008715752512216568 +illusion_1.5L,sr,58,23.2,target_force,target_cl,0.004283526912331581 +illusion_1.5L,sr,59,23.6,target_force,target_cd,0.00877283327281475 +illusion_1.5L,sr,59,23.6,target_force,target_cl,0.004544325638562441 +illusion_1.5L,sr,60,24.0,target_force,target_cd,0.008680131286382675 +illusion_1.5L,sr,60,24.0,target_force,target_cl,0.004545234143733978 +illusion_1.5L,sr,61,24.4,target_force,target_cd,0.00870765931904316 +illusion_1.5L,sr,61,24.4,target_force,target_cl,0.00428768340498209 +illusion_1.5L,sr,62,24.8,target_force,target_cd,0.008620945736765862 +illusion_1.5L,sr,62,24.8,target_force,target_cl,0.0037878667935729027 +illusion_1.5L,sr,63,25.2,target_force,target_cd,0.008646907284855843 +illusion_1.5L,sr,63,25.2,target_force,target_cl,0.0030756364576518536 +illusion_1.5L,sr,64,25.6,target_force,target_cd,0.008617529645562172 +illusion_1.5L,sr,64,25.6,target_force,target_cl,0.0021926581393927336 +illusion_1.5L,sr,65,26.0,target_force,target_cd,0.008267231285572052 +illusion_1.5L,sr,65,26.0,target_force,target_cl,0.0011899459641426802 +illusion_1.5L,sr,66,26.4,target_force,target_cd,0.008079802617430687 +illusion_1.5L,sr,66,26.4,target_force,target_cl,0.00012491656525526196 +illusion_1.5L,sr,67,26.8,target_force,target_cd,0.008036432787775993 +illusion_1.5L,sr,67,26.8,target_force,target_cl,-0.0009418626432307065 +illusion_1.5L,sr,68,27.2,target_force,target_cd,0.008079362101852894 +illusion_1.5L,sr,68,27.2,target_force,target_cl,-0.0019500593189150095 +illusion_1.5L,sr,69,27.6,target_force,target_cd,0.008383121341466904 +illusion_1.5L,sr,69,27.6,target_force,target_cl,-0.002842910820618272 +illusion_1.5L,sr,70,28.0,target_force,target_cd,0.008482938632369041 +illusion_1.5L,sr,70,28.0,target_force,target_cl,-0.0035703328903764486 +illusion_1.5L,sr,71,28.4,target_force,target_cd,0.008444554172456264 +illusion_1.5L,sr,71,28.4,target_force,target_cl,-0.00409164372831583 +illusion_1.5L,sr,72,28.8,target_force,target_cd,0.00859114434570074 +illusion_1.5L,sr,72,28.8,target_force,target_cl,-0.004377763718366623 +illusion_1.5L,sr,73,29.2,target_force,target_cd,0.008660022169351578 +illusion_1.5L,sr,73,29.2,target_force,target_cl,-0.0044127777218818665 +illusion_1.5L,sr,74,29.6,target_force,target_cd,0.008805335499346256 +illusion_1.5L,sr,74,29.6,target_force,target_cl,-0.00419478677213192 +illusion_1.5L,sr,75,30.0,target_force,target_cd,0.00891233142465353 +illusion_1.5L,sr,75,30.0,target_force,target_cl,-0.003736004466190934 +illusion_1.5L,sr,76,30.4,target_force,target_cd,0.008620023727416992 +illusion_1.5L,sr,76,30.4,target_force,target_cl,-0.0030620943289250135 +illusion_1.5L,sr,77,30.8,target_force,target_cd,0.008369951508939266 +illusion_1.5L,sr,77,30.8,target_force,target_cl,-0.0022107805125415325 +illusion_1.5L,sr,78,31.2,target_force,target_cd,0.008232075721025467 +illusion_1.5L,sr,78,31.2,target_force,target_cl,-0.001229805056937039 +illusion_1.5L,sr,79,31.6,target_force,target_cd,0.00811179168522358 +illusion_1.5L,sr,79,31.6,target_force,target_cl,-0.00017433101311326027 +illusion_1.5L,sr,80,32.0,target_force,target_cd,0.008253613486886024 +illusion_1.5L,sr,80,32.0,target_force,target_cl,0.0008960727136582136 +illusion_1.5L,sr,81,32.4,target_force,target_cd,0.008266055956482887 +illusion_1.5L,sr,81,32.4,target_force,target_cl,0.0019207126460969448 +illusion_1.5L,sr,82,32.8,target_force,target_cd,0.008138866163790226 +illusion_1.5L,sr,82,32.8,target_force,target_cl,0.002841145033016801 +illusion_1.5L,sr,83,33.2,target_force,target_cd,0.008266528137028217 +illusion_1.5L,sr,83,33.2,target_force,target_cl,0.0036044649314135313 +illusion_1.5L,sr,84,33.6,target_force,target_cd,0.008407868444919586 +illusion_1.5L,sr,84,33.6,target_force,target_cl,0.004166331607848406 +illusion_1.5L,sr,85,34.0,target_force,target_cd,0.008650233037769794 +illusion_1.5L,sr,85,34.0,target_force,target_cl,0.004493560642004013 +illusion_1.5L,sr,86,34.4,target_force,target_cd,0.008936306461691856 +illusion_1.5L,sr,86,34.4,target_force,target_cl,0.0045661311596632 +illusion_1.5L,sr,87,34.8,target_force,target_cd,0.008818242698907852 +illusion_1.5L,sr,87,34.8,target_force,target_cl,0.004378491081297398 +illusion_1.5L,sr,88,35.2,target_force,target_cd,0.00864899531006813 +illusion_1.5L,sr,88,35.2,target_force,target_cl,0.003940064925700426 +illusion_1.5L,sr,89,35.6,target_force,target_cd,0.00856008566915989 +illusion_1.5L,sr,89,35.6,target_force,target_cl,0.003274921327829361 +illusion_1.5L,sr,90,36.0,target_force,target_cd,0.008397326804697514 +illusion_1.5L,sr,90,36.0,target_force,target_cl,0.002420595847070217 +illusion_1.5L,sr,91,36.4,target_force,target_cd,0.008429951965808868 +illusion_1.5L,sr,91,36.4,target_force,target_cl,0.0014261198230087757 +illusion_1.5L,sr,92,36.8,target_force,target_cd,0.008345250971615314 +illusion_1.5L,sr,92,36.8,target_force,target_cl,0.00034934014547616243 +illusion_1.5L,sr,93,37.2,target_force,target_cd,0.008059890009462833 +illusion_1.5L,sr,93,37.2,target_force,target_cl,-0.0007463268702849746 +illusion_1.5L,sr,94,37.6,target_force,target_cd,0.00803802814334631 +illusion_1.5L,sr,94,37.6,target_force,target_cl,-0.0017955382354557514 +illusion_1.5L,sr,95,38.0,target_force,target_cd,0.00810767337679863 +illusion_1.5L,sr,95,38.0,target_force,target_cl,-0.0027348583098500967 +illusion_1.5L,sr,96,38.4,target_force,target_cd,0.008312919177114964 +illusion_1.5L,sr,96,38.4,target_force,target_cl,-0.0035065629053860903 +illusion_1.5L,sr,97,38.8,target_force,target_cd,0.008678091689944267 +illusion_1.5L,sr,97,38.8,target_force,target_cl,-0.004062185063958168 +illusion_1.5L,sr,98,39.2,target_force,target_cd,0.008710966445505619 +illusion_1.5L,sr,98,39.2,target_force,target_cl,-0.004365585744380951 +illusion_1.5L,sr,99,39.6,target_force,target_cd,0.00866282731294632 +illusion_1.5L,sr,99,39.6,target_force,target_cl,-0.004395345691591501 +illusion_1.5L,sr,100,40.0,target_force,target_cd,0.008717188611626625 +illusion_1.5L,sr,100,40.0,target_force,target_cl,-0.004146318417042494 +illusion_1.5L,sr,101,40.4,target_force,target_cd,0.008651788346469402 +illusion_1.5L,sr,101,40.4,target_force,target_cl,-0.0036302267108112574 +illusion_1.5L,sr,102,40.8,target_force,target_cd,0.008710197173058987 +illusion_1.5L,sr,102,40.8,target_force,target_cl,-0.0028752374928444624 +illusion_1.5L,sr,103,41.2,target_force,target_cd,0.008641681633889675 +illusion_1.5L,sr,103,41.2,target_force,target_cl,-0.0019245173316448927 +illusion_1.5L,sr,104,41.6,target_force,target_cd,0.008270466700196266 +illusion_1.5L,sr,104,41.6,target_force,target_cl,-0.0008338304469361901 +illusion_1.5L,sr,105,42.0,target_force,target_cd,0.0080949105322361 +illusion_1.5L,sr,105,42.0,target_force,target_cl,0.0003316924849059433 +illusion_1.5L,sr,106,42.4,target_force,target_cd,0.008030417375266552 +illusion_1.5L,sr,106,42.4,target_force,target_cl,0.0015014351811259985 +illusion_1.5L,sr,107,42.8,target_force,target_cd,0.008088373579084873 +illusion_1.5L,sr,107,42.8,target_force,target_cl,0.002603593748062849 +illusion_1.5L,sr,108,43.2,target_force,target_cd,0.00838998332619667 +illusion_1.5L,sr,108,43.2,target_force,target_cl,0.003569631138816476 +illusion_1.5L,sr,109,43.6,target_force,target_cd,0.008452391251921654 +illusion_1.5L,sr,109,43.6,target_force,target_cl,0.004338605795055628 +illusion_1.5L,sr,110,44.0,target_force,target_cd,0.008437939919531345 +illusion_1.5L,sr,110,44.0,target_force,target_cl,0.004861098248511553 +illusion_1.5L,sr,111,44.4,target_force,target_cd,0.008596007712185383 +illusion_1.5L,sr,111,44.4,target_force,target_cl,0.005102469120174646 +illusion_1.5L,sr,112,44.8,target_force,target_cd,0.008660073392093182 +illusion_1.5L,sr,112,44.8,target_force,target_cl,0.005045230966061354 +illusion_1.5L,sr,113,45.2,target_force,target_cd,0.008821661584079266 +illusion_1.5L,sr,113,45.2,target_force,target_cl,0.004690361209213734 +illusion_1.5L,sr,114,45.6,target_force,target_cd,0.008882550522685051 +illusion_1.5L,sr,114,45.6,target_force,target_cl,0.0040574450977146626 +illusion_1.5L,sr,115,46.0,target_force,target_cd,0.008558989502489567 +illusion_1.5L,sr,115,46.0,target_force,target_cl,0.003183630993589759 +illusion_1.5L,sr,116,46.4,target_force,target_cd,0.008332237601280212 +illusion_1.5L,sr,116,46.4,target_force,target_cl,0.0021214294247329235 +illusion_1.5L,sr,117,46.8,target_force,target_cd,0.008196236565709114 +illusion_1.5L,sr,117,46.8,target_force,target_cl,0.000935496820602566 +illusion_1.5L,sr,118,47.2,target_force,target_cd,0.00811728835105896 +illusion_1.5L,sr,118,47.2,target_force,target_cl,-0.00030141021125018597 +illusion_1.5L,sr,119,47.6,target_force,target_cd,0.00829890463501215 +illusion_1.5L,sr,119,47.6,target_force,target_cl,-0.0015130521496757865 +illusion_1.5L,sr,120,48.0,target_force,target_cd,0.008303137496113777 +illusion_1.5L,sr,120,48.0,target_force,target_cl,-0.002624597167596221 +illusion_1.5L,sr,121,48.4,target_force,target_cd,0.008214408531785011 +illusion_1.5L,sr,121,48.4,target_force,target_cl,-0.0035674641840159893 +illusion_1.5L,sr,122,48.8,target_force,target_cd,0.0083629060536623 +illusion_1.5L,sr,122,48.8,target_force,target_cl,-0.004283796530216932 +illusion_1.5L,sr,123,49.2,target_force,target_cd,0.00848082173615694 +illusion_1.5L,sr,123,49.2,target_force,target_cl,-0.00473026093095541 +illusion_1.5L,sr,124,49.6,target_force,target_cd,0.008707493543624878 +illusion_1.5L,sr,124,49.6,target_force,target_cl,-0.004880912136286497 +illusion_1.5L,sr,125,50.0,target_force,target_cd,0.008908077143132687 +illusion_1.5L,sr,125,50.0,target_force,target_cl,-0.004728920757770538 +illusion_1.5L,sr,126,50.4,target_force,target_cd,0.00870131142437458 +illusion_1.5L,sr,126,50.4,target_force,target_cl,-0.004287036135792732 +illusion_1.5L,sr,127,50.8,target_force,target_cd,0.008512722328305244 +illusion_1.5L,sr,127,50.8,target_force,target_cl,-0.003586746985092759 +illusion_1.5L,sr,128,51.2,target_force,target_cd,0.008403330110013485 +illusion_1.5L,sr,128,51.2,target_force,target_cl,-0.002676178002730012 +illusion_1.5L,sr,129,51.6,target_force,target_cd,0.008277405984699726 +illusion_1.5L,sr,129,51.6,target_force,target_cl,-0.001616867259144783 +illusion_1.5L,sr,130,52.0,target_force,target_cd,0.008384994231164455 +illusion_1.5L,sr,130,52.0,target_force,target_cl,-0.0004796259745489806 +illusion_1.5L,sr,131,52.4,target_force,target_cd,0.008344382978975773 +illusion_1.5L,sr,131,52.4,target_force,target_cl,0.0006602332578040659 +illusion_1.5L,sr,132,52.8,target_force,target_cd,0.008156534284353256 +illusion_1.5L,sr,132,52.8,target_force,target_cl,0.0017279828898608685 +illusion_1.5L,sr,133,53.2,target_force,target_cd,0.008226209320127964 +illusion_1.5L,sr,133,53.2,target_force,target_cl,0.002654529409483075 +illusion_1.5L,sr,134,53.6,target_force,target_cd,0.008320114575326443 +illusion_1.5L,sr,134,53.6,target_force,target_cl,0.003381080459803343 +illusion_1.5L,sr,135,54.0,target_force,target_cd,0.00853065587580204 +illusion_1.5L,sr,135,54.0,target_force,target_cl,0.0038631048519164324 +illusion_1.5L,sr,136,54.4,target_force,target_cd,0.008803099393844604 +illusion_1.5L,sr,136,54.4,target_force,target_cl,0.004073311109095812 +illusion_1.5L,sr,137,54.8,target_force,target_cd,0.008690337650477886 +illusion_1.5L,sr,137,54.8,target_force,target_cl,0.004003433044999838 +illusion_1.5L,sr,138,55.2,target_force,target_cd,0.008544675074517727 +illusion_1.5L,sr,138,55.2,target_force,target_cl,0.003664699150249362 +illusion_1.5L,sr,139,55.6,target_force,target_cd,0.008495600894093513 +illusion_1.5L,sr,139,55.6,target_force,target_cl,0.0030869469046592712 +illusion_1.5L,sr,140,56.0,target_force,target_cd,0.008385095745325089 +illusion_1.5L,sr,140,56.0,target_force,target_cl,0.0023164439480751753 +illusion_1.5L,sr,141,56.4,target_force,target_cd,0.00847627129405737 +illusion_1.5L,sr,141,56.4,target_force,target_cl,0.001412564772181213 +illusion_1.5L,sr,142,56.8,target_force,target_cd,0.008447900414466858 +illusion_1.5L,sr,142,56.8,target_force,target_cl,0.0004435561131685972 +illusion_1.5L,sr,143,57.2,target_force,target_cd,0.008206440135836601 +illusion_1.5L,sr,143,57.2,target_force,target_cl,-0.0005183155299164355 +illusion_1.5L,sr,144,57.6,target_force,target_cd,0.00820583663880825 +illusion_1.5L,sr,144,57.6,target_force,target_cl,-0.0014018918154761195 +illusion_1.5L,sr,145,58.0,target_force,target_cd,0.008266313932836056 +illusion_1.5L,sr,145,58.0,target_force,target_cl,-0.0021421664860099554 +illusion_1.5L,sr,146,58.4,target_force,target_cd,0.008429205976426601 +illusion_1.5L,sr,146,58.4,target_force,target_cl,-0.0026848914567381144 +illusion_1.5L,sr,147,58.8,target_force,target_cd,0.008723028935492039 +illusion_1.5L,sr,147,58.8,target_force,target_cl,-0.0029904174152761698 +illusion_1.5L,sr,148,59.2,target_force,target_cd,0.008667167276144028 +illusion_1.5L,sr,148,59.2,target_force,target_cl,-0.0030365013517439365 +illusion_1.5L,sr,149,59.6,target_force,target_cd,0.008530458435416222 +illusion_1.5L,sr,149,59.6,target_force,target_cl,-0.002819881308823824 +illusion_1.5L,sr,150,60.0,target_force,target_cd,0.008516530506312847 +illusion_1.5L,sr,150,60.0,target_force,target_cl,-0.00235650478862226 +illusion_1.5L,sr,151,60.4,target_force,target_cd,0.008421123959124088 +illusion_1.5L,sr,151,60.4,target_force,target_cl,-0.0016804002225399017 +illusion_1.5L,sr,152,60.8,target_force,target_cd,0.008498861454427242 +illusion_1.5L,sr,152,60.8,target_force,target_cl,-0.0008412639726884663 +illusion_1.5L,sr,153,61.2,target_force,target_cd,0.008499415591359138 +illusion_1.5L,sr,153,61.2,target_force,target_cl,9.906048217089847e-05 +illusion_1.5L,sr,154,61.6,target_force,target_cd,0.008235407061874866 +illusion_1.5L,sr,154,61.6,target_force,target_cl,0.0010709670605137944 +illusion_1.5L,sr,155,62.0,target_force,target_cd,0.008183185011148453 +illusion_1.5L,sr,155,62.0,target_force,target_cl,0.0020020240917801857 +illusion_1.5L,sr,156,62.4,target_force,target_cd,0.008230230771005154 +illusion_1.5L,sr,156,62.4,target_force,target_cl,0.002822116483002901 +illusion_1.5L,sr,157,62.8,target_force,target_cd,0.008360556326806545 +illusion_1.5L,sr,157,62.8,target_force,target_cl,0.0034684324637055397 +illusion_1.5L,sr,158,63.2,target_force,target_cd,0.008675433695316315 +illusion_1.5L,sr,158,63.2,target_force,target_cl,0.003889942541718483 +illusion_1.5L,sr,159,63.6,target_force,target_cd,0.008685079403221607 +illusion_1.5L,sr,159,63.6,target_force,target_cl,0.004051059018820524 +illusion_1.5L,sr,160,64.0,target_force,target_cd,0.00856055412441492 +illusion_1.5L,sr,160,64.0,target_force,target_cl,0.003934219013899565 +illusion_1.5L,sr,161,64.4,target_force,target_cd,0.008574451319873333 +illusion_1.5L,sr,161,64.4,target_force,target_cl,0.0035412150900810957 +illusion_1.5L,sr,162,64.8,target_force,target_cd,0.008493040688335896 +illusion_1.5L,sr,162,64.8,target_force,target_cl,0.0028931754641234875 +illusion_1.5L,sr,163,65.2,target_force,target_cd,0.008542587049305439 +illusion_1.5L,sr,163,65.2,target_force,target_cl,0.0020292061381042004 +illusion_1.5L,sr,164,65.6,target_force,target_cd,0.008553043939173222 +illusion_1.5L,sr,164,65.6,target_force,target_cl,0.0010037844767794013 +illusion_1.5L,sr,165,66.0,target_force,target_cd,0.008254999294877052 +illusion_1.5L,sr,165,66.0,target_force,target_cl,-0.00011690740939229727 +illusion_1.5L,sr,166,66.4,target_force,target_cd,0.008126122877001762 +illusion_1.5L,sr,166,66.4,target_force,target_cl,-0.0012594565050676465 +illusion_1.5L,sr,167,66.8,target_force,target_cd,0.008139083161950111 +illusion_1.5L,sr,167,66.8,target_force,target_cl,-0.0023481876123696566 +illusion_1.5L,sr,168,67.2,target_force,target_cd,0.008225912228226662 +illusion_1.5L,sr,168,67.2,target_force,target_cl,-0.0033102850429713726 +illusion_1.5L,sr,169,67.6,target_force,target_cd,0.008550929836928844 +illusion_1.5L,sr,169,67.6,target_force,target_cl,-0.004080713726580143 +illusion_1.5L,sr,170,68.0,target_force,target_cd,0.008641579188406467 +illusion_1.5L,sr,170,68.0,target_force,target_cl,-0.004606609698385 +illusion_1.5L,sr,171,68.4,target_force,target_cd,0.008560840971767902 +illusion_1.5L,sr,171,68.4,target_force,target_cl,-0.004850836470723152 +illusion_1.5L,sr,172,68.8,target_force,target_cd,0.008636081591248512 +illusion_1.5L,sr,172,68.8,target_force,target_cl,-0.004794478416442871 +illusion_1.5L,sr,173,69.2,target_force,target_cd,0.008616222999989986 +illusion_1.5L,sr,173,69.2,target_force,target_cl,-0.004438104573637247 +illusion_1.5L,sr,174,69.6,target_force,target_cd,0.008672966621816158 +illusion_1.5L,sr,174,69.6,target_force,target_cl,-0.0038017285987734795 +illusion_1.5L,sr,175,70.0,target_force,target_cd,0.008711673319339752 +illusion_1.5L,sr,175,70.0,target_force,target_cl,-0.002923475345596671 +illusion_1.5L,sr,176,70.4,target_force,target_cd,0.008389359340071678 +illusion_1.5L,sr,176,70.4,target_force,target_cl,-0.001857058727182448 +illusion_1.5L,sr,177,70.8,target_force,target_cd,0.008158615790307522 +illusion_1.5L,sr,177,70.8,target_force,target_cl,-0.0006682443199679255 +illusion_1.5L,sr,178,71.2,target_force,target_cd,0.00808980967849493 +illusion_1.5L,sr,178,71.2,target_force,target_cl,0.0005694532301276922 +illusion_1.5L,sr,179,71.6,target_force,target_cd,0.00807673204690218 +illusion_1.5L,sr,179,71.6,target_force,target_cl,0.0017795475432649255 +illusion_1.5L,sr,180,72.0,target_force,target_cd,0.008341887965798378 +illusion_1.5L,sr,180,72.0,target_force,target_cl,0.002887511160224676 +illusion_1.5L,sr,181,72.4,target_force,target_cd,0.008465869352221489 +illusion_1.5L,sr,181,72.4,target_force,target_cl,0.003825533203780651 +illusion_1.5L,sr,182,72.8,target_force,target_cd,0.008411048911511898 +illusion_1.5L,sr,182,72.8,target_force,target_cl,0.0045367949642241 +illusion_1.5L,sr,183,73.2,target_force,target_cd,0.008551978506147861 +illusion_1.5L,sr,183,73.2,target_force,target_cl,0.0049789901822805405 +illusion_1.5L,sr,184,73.6,target_force,target_cd,0.008640555664896965 +illusion_1.5L,sr,184,73.6,target_force,target_cl,0.005126874428242445 +illusion_1.5L,sr,185,74.0,target_force,target_cd,0.00877284724265337 +illusion_1.5L,sr,185,74.0,target_force,target_cl,0.004973690956830978 +illusion_1.5L,sr,186,74.4,target_force,target_cd,0.008914750069379807 +illusion_1.5L,sr,186,74.4,target_force,target_cl,0.004531398881226778 +illusion_1.5L,sr,187,74.8,target_force,target_cd,0.008651209995150566 +illusion_1.5L,sr,187,74.8,target_force,target_cl,0.0038297150749713182 +illusion_1.5L,sr,188,75.2,target_force,target_cd,0.008369920775294304 +illusion_1.5L,sr,188,75.2,target_force,target_cl,0.002914042677730322 +illusion_1.5L,sr,189,75.6,target_force,target_cd,0.00823057908564806 +illusion_1.5L,sr,189,75.6,target_force,target_cl,0.0018424494192004204 +illusion_1.5L,sr,190,76.0,target_force,target_cd,0.008093336597084999 +illusion_1.5L,sr,190,76.0,target_force,target_cl,0.0006818966940045357 +illusion_1.5L,sr,191,76.4,target_force,target_cd,0.008223836310207844 +illusion_1.5L,sr,191,76.4,target_force,target_cl,-0.0004960204241797328 +illusion_1.5L,sr,192,76.8,target_force,target_cd,0.008288096636533737 +illusion_1.5L,sr,192,76.8,target_force,target_cl,-0.0016195487696677446 +illusion_1.5L,sr,193,77.2,target_force,target_cd,0.008168513886630535 +illusion_1.5L,sr,193,77.2,target_force,target_cl,-0.0026211808435618877 +illusion_1.5L,sr,194,77.6,target_force,target_cd,0.008290053345263004 +illusion_1.5L,sr,194,77.6,target_force,target_cl,-0.003441715380176902 +illusion_1.5L,sr,195,78.0,target_force,target_cd,0.008446116000413895 +illusion_1.5L,sr,195,78.0,target_force,target_cl,-0.004033731762319803 +illusion_1.5L,sr,196,78.4,target_force,target_cd,0.00865935068577528 +illusion_1.5L,sr,196,78.4,target_force,target_cl,-0.004364273976534605 +illusion_1.5L,sr,197,78.8,target_force,target_cd,0.00895126722753048 +illusion_1.5L,sr,197,78.8,target_force,target_cl,-0.004416606388986111 +illusion_1.5L,sr,198,79.2,target_force,target_cd,0.008846367709338665 +illusion_1.5L,sr,198,79.2,target_force,target_cl,-0.004190945997834206 +illusion_1.5L,sr,199,79.6,target_force,target_cd,0.0086283003911376 +illusion_1.5L,sr,199,79.6,target_force,target_cl,-0.0037041637115180492 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json new file mode 100644 index 0000000..8fd1901 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1.5L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1p5L__pysr__f-ae67ae507106__si-800.npz", + "sample_interval": 800, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150, + "target_forces": 200, + "target_phase": 200 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv new file mode 100644 index 0000000..3dddf28 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1.5L,sr,0,0.0,1.0303159952163696,-0.292056143283844,0.9276583790779114,-0.523850679397583,0.9127787947654724,-0.3432065546512604,0.0018768107984215021,8.185908518498763e-05,0.0014926574658602476,0.0030662589706480503,0.0013449937105178833,-0.0025670307222753763,0.0010991006419167615,-0.008262605798480094,-0.008262605798480094,1.0991006419167615e-05,-8.262605798480094e-05,-8.262605798480094e-05,0.008516530506312847,-0.00235650478862226,0 +illusion_1.5L,sr,1,0.4,1.0978643894195557,-0.3182815909385681,0.952372670173645,-0.5478085875511169,0.8504791259765625,-0.29210448265075684,0.0019139143405482173,7.113895117072389e-05,0.0018518036231398582,0.0024854440707713366,0.0016947333933785558,-0.002043928485363722,0.03413586773430907,-0.03246912363232379,-0.03246912363232379,0.00034135867734309073,-0.00032469123632323794,-0.00032469123632323794,0.008421123959124088,-0.0016804002225399017,1 +illusion_1.5L,sr,2,0.8,1.1723146438598633,-0.3358217179775238,0.953387975692749,-0.5527027249336243,0.789252519607544,-0.21418491005897522,0.001959433313459158,4.19883981521707e-05,0.0021244266536086798,0.0019119300413876772,0.0019782623276114464,-0.0015799702377989888,0.0034132764009798533,-0.010188035972623508,-0.010188035972623508,3.413276400979853e-05,-0.00010188035972623508,-0.00010188035972623508,0.008498861454427242,-0.0008412639726884663,2 +illusion_1.5L,sr,3,1.2,1.2569336891174316,-0.33993473649024963,0.9155568480491638,-0.4620448052883148,0.7448514699935913,-0.10682671517133713,0.001991639379411936,2.2258162061916664e-05,0.002301227068528533,0.0013668076135218143,0.002166816033422947,-0.0011913556372746825,-0.04680744310637912,0.027515773653314438,0.027515773653314438,-0.0004680744310637912,0.00027515773653314437,0.00027515773653314437,0.008499415591359138,9.906048217089847e-05,3 +illusion_1.5L,sr,4,1.6,1.3470008373260498,-0.31156402826309204,0.8417995572090149,-0.20996351540088654,0.7451995015144348,0.0050774854607880116,0.0020093952771276236,1.8822118363459595e-05,0.0024009186308830976,0.000915700918994844,0.002284594113007188,-0.0009154201252385974,-0.07680606653190336,0.050293141809114796,0.050293141809114796,-0.0007680606653190336,0.0005029314180911479,0.0005029314180911479,0.008235407061874866,0.0010709670605137944,4 +illusion_1.5L,sr,5,2.0,1.3902256488800049,-0.19276052713394165,0.7746780514717102,0.1539890319108963,0.7906796932220459,0.09192682057619095,0.0020195001270622015,2.4013254005694762e-05,0.0024489311035722494,0.0005778135964646935,0.002366346074268222,-0.0007449483382515609,-0.06738129963668703,0.04419944949712856,0.04419944949712856,-0.0006738129963668703,0.0004419944949712856,0.0004419944949712856,0.008183185011148453,0.0020020240917801857,5 +illusion_1.5L,sr,6,2.4,1.2996799945831299,0.05661509558558464,0.7703498005867004,0.44763022661209106,0.8520818948745728,0.16172537207603455,0.002023643348366022,2.0932040570187382e-05,0.002452385611832142,0.0003411256766412407,0.002423860365524888,-0.0006566288066096604,-0.025849892354731042,0.015104932923581872,0.015104932923581872,-0.0002584989235473104,0.00015104932923581873,0.00015104932923581873,0.008230230771005154,0.002822116483002901,6 +illusion_1.5L,sr,7,2.8,1.1148858070373535,0.2874516546726227,0.8292206525802612,0.5229148268699646,0.9118898510932922,0.220302015542984,0.0020171087235212326,-3.441526530423289e-07,0.002422560006380081,0.00017993220535572618,0.002468385733664036,-0.0006061304011382163,0.017161878004966664,-0.01409411171373319,-0.01409411171373319,0.00017161878004966666,-0.0001409411171373319,-0.0001409411171373319,0.008360556326806545,0.0034684324637055397,7 +illusion_1.5L,sr,8,3.2,0.9770044088363647,0.3591187298297882,0.8913705945014954,0.5152921080589294,0.9739686846733093,0.2652159631252289,0.0020151545759290457,-3.5356020816834643e-05,0.0023890885058790445,7.857245509512722e-05,0.0025199821684509516,-0.0005667941877618432,0.041142232068337906,-0.028216913707106585,-0.028216913707106585,0.00041142232068337904,-0.00028216913707106584,-0.00028216913707106584,0.008675433695316315,0.003889942541718483,8 +illusion_1.5L,sr,9,3.6,0.8993015885353088,0.3351897895336151,0.9320094585418701,0.5293117761611938,1.0395185947418213,0.29943203926086426,0.0020087012089788914,-7.080200157361105e-05,0.002353264018893242,2.6679523216444068e-05,0.002567939693108201,-0.0005200576852075756,0.04655320888710042,-0.028072475700312967,-0.028072475700312967,0.0004655320888710042,-0.00028072475700312966,-0.00028072475700312966,0.008685079403221607,0.004051059018820524,9 +illusion_1.5L,sr,10,4.0,0.8335584998130798,0.2813199758529663,0.9523593187332153,0.5549399852752686,1.1066020727157593,0.32392966747283936,0.0020019779913127422,-9.890556248137727e-05,0.0023284382186830044,2.015419704548549e-05,0.002612862503156066,-0.0004658379766624421,0.04989352666314503,-0.02645812463095787,-0.02645812463095787,0.0004989352666314504,-0.0002645812463095787,-0.0002645812463095787,0.00856055412441492,0.003934219013899565,10 +illusion_1.5L,sr,11,4.4,0.7703784704208374,0.20036286115646362,0.9495928883552551,0.5552957653999329,1.1831738948822021,0.33925533294677734,0.001998335123062134,-0.00011952038039453328,0.0023170302156358957,5.782870721304789e-05,0.002650847425684333,-0.0004169224121142179,0.05557548182758457,-0.027261508547292788,-0.027261508547292788,0.0005557548182758457,-0.00027261508547292787,-0.00027261508547292787,0.008574451319873333,0.0035412150900810957,11 +illusion_1.5L,sr,12,4.8,0.7264362573623657,0.09051043540239334,0.9071969389915466,0.44992879033088684,1.271756649017334,0.3391042649745941,0.0019848602823913097,-0.00013417071022558957,0.0023046291898936033,0.0001352017279714346,0.0026629737112671137,-0.0003876335977111012,0.05812700286995892,-0.026740758672331864,-0.026740758672331864,0.0005812700286995892,-0.00026740758672331863,-0.00026740758672331863,0.008493040688335896,0.0028931754641234875,12 +illusion_1.5L,sr,13,5.2,0.7279651165008545,-0.021424541249871254,0.8328580260276794,0.18218488991260529,1.3647891283035278,0.3006616532802582,0.001970779849216342,-0.0001400504115736112,0.0022963315714150667,0.00023788386897649616,0.0026514234486967325,-0.0003793789364863187,0.050282348511834385,-0.019737983145492438,-0.019737983145492438,0.0005028234851183438,-0.00019737983145492438,-0.00019737983145492438,0.008542587049305439,0.0020292061381042004,13 +illusion_1.5L,sr,14,5.6,0.7718020677566528,-0.10900064557790756,0.7739032506942749,-0.17968986928462982,1.4031819105148315,0.16369733214378357,0.0019553096499294043,-0.0001333898981101811,0.0022897333838045597,0.0003485226188786328,0.0026130774058401585,-0.00038365909131243825,0.03517310126814632,-0.008713240231014274,-0.008713240231014274,0.00035173101268146323,-8.713240231014274e-05,-8.713240231014274e-05,0.008553043939173222,0.0010037844767794013,14 +illusion_1.5L,sr,15,6.0,0.8269136548042297,-0.18037135899066925,0.7758388519287109,-0.4484443962574005,1.3005609512329102,-0.08731760829687119,0.0019440457690507174,-0.00011346636165399104,0.0022917878814041615,0.0004486850230023265,0.002557561732828617,-0.0003831989015452564,0.0199283000782029,0.0010218849489176118,0.0010218849489176118,0.00019928300078202898,1.0218849489176118e-05,1.0218849489176118e-05,0.008254999294877052,-0.00011690740939229727,15 +illusion_1.5L,sr,16,6.4,0.8813607692718506,-0.2406121790409088,0.8313890099525452,-0.49886512756347656,1.130991816520691,-0.2783063054084778,0.0019448832608759403,-8.3544036897365e-05,0.0023134981747716665,0.0005232531111687422,0.0025030048564076424,-0.00036291786818765104,0.00848133848721952,0.006686394623768105,0.006686394623768105,8.481338487219519e-05,6.686394623768105e-05,6.686394623768105e-05,0.008126122877001762,-0.0012594565050676465,16 +illusion_1.5L,sr,17,6.8,0.9354658722877502,-0.28888243436813354,0.8812068700790405,-0.4704035222530365,1.0167300701141357,-0.3160926401615143,0.001948589808307588,-4.942563464283012e-05,0.00234466721303761,0.0005649257800541818,0.002448104089125991,-0.00032047071726992726,0.0006007939611314961,0.008799142133253335,0.008799142133253335,6.007939611314961e-06,8.799142133253335e-05,8.799142133253335e-05,0.008139083161950111,-0.0023481876123696566,17 +illusion_1.5L,sr,18,7.2,0.9892837405204773,-0.32928216457366943,0.9037793874740601,-0.46342888474464417,0.9562563896179199,-0.28298261761665344,0.0019525844836607575,-1.4398861821973696e-05,0.002380216959863901,0.0005725911469198763,0.0023960790131241083,-0.0002604207256808877,-0.007569746922316628,0.010648379236979283,0.010648379236979283,-7.569746922316628e-05,0.00010648379236979283,0.00010648379236979283,0.008225912228226662,-0.0033102850429713726,18 +illusion_1.5L,sr,19,7.6,1.0441018342971802,-0.3653150200843811,0.905535876750946,-0.4776378273963928,0.9101162552833557,-0.2367207556962967,0.0019619830418378115,1.852729110396467e-05,0.002425272949039936,0.0005486495210789144,0.0023587108589708805,-0.00019376151612959802,-0.015239498826461476,0.012053535364396304,0.012053535364396304,-0.00015239498826461476,0.00012053535364396304,0.00012053535364396304,0.008550929836928844,-0.004080713726580143,19 +illusion_1.5L,sr,20,8.0,1.1026898622512817,-0.39855095744132996,0.8883200883865356,-0.5005708932876587,0.8643667101860046,-0.1830020397901535,0.0019674887880682945,4.764175901073031e-05,0.0024666341487318277,0.0005043605342507362,0.002327942056581378,-0.00013509922428056598,-0.022541838819702988,0.013437986326828662,0.013437986326828662,-0.00022541838819702988,0.00013437986326828662,0.00013437986326828662,0.008641579188406467,-0.004606609698385,20 +illusion_1.5L,sr,21,8.4,1.1687473058700562,-0.42889222502708435,0.8471861481666565,-0.49730437994003296,0.8237230181694031,-0.11814282089471817,0.0019762692973017693,7.080955401761457e-05,0.0025129071436822414,0.0004504237440414727,0.0023154548835009336,-9.854536619968712e-05,-0.028311713992323462,0.01419028547178808,0.01419028547178808,-0.0002831171399232346,0.0001419028547178808,0.0001419028547178808,0.008560840971767902,-0.004850836470723152,21 +illusion_1.5L,sr,22,8.8,1.2439942359924316,-0.45217934250831604,0.7762258052825928,-0.41160067915916443,0.7990583181381226,-0.04310007020831108,0.0019847447983920574,8.729752153158188e-05,0.002556645544245839,0.00040160820935852826,0.0023165279999375343,-9.739842062117532e-05,-0.03414775458543737,0.01564371725349395,0.01564371725349395,-0.00034147754585437366,0.0001564371725349395,0.0001564371725349395,0.008636081591248512,-0.004794478416442871,22 +illusion_1.5L,sr,23,9.2,1.318302035331726,-0.45079463720321655,0.681072473526001,-0.21135304868221283,0.7949497699737549,0.038141701370477676,0.0019816835410892963,9.727604629006237e-05,0.002579553984105587,0.00036941678263247013,0.0023161268327385187,-0.0001394680584780872,-0.03907475917437178,0.017209391023114584,0.017209391023114584,-0.0003907475917437178,0.00017209391023114583,0.00017209391023114583,0.008616222999989986,-0.004438104573637247,23 +illusion_1.5L,sr,24,9.6,1.3512235879898071,-0.37291038036346436,0.5886209607124329,0.07832936942577362,0.8086141347885132,0.12159810960292816,0.0019749202765524387,0.00010011746780946851,0.002583555644378066,0.00035485668922774494,0.002318715211004019,-0.00021914577519055456,-0.03976288048357299,0.016581712147691052,0.016581712147691052,-0.0003976288048357299,0.00016581712147691052,0.00016581712147691052,0.008672966621816158,-0.0038017285987734795,24 +illusion_1.5L,sr,25,10.0,1.2762264013290405,-0.14236994087696075,0.5471891164779663,0.36701512336730957,0.8373565673828125,0.2010006308555603,0.001964668743312359,9.559989848639816e-05,0.0025649338494986296,0.0003523547202348709,0.002321955282241106,-0.0003203204250894487,-0.03518753988215417,0.01312624765702247,0.01312624765702247,-0.00035187539882154174,0.0001312624765702247,0.0001312624765702247,0.008711673319339752,-0.002923475345596671,25 +illusion_1.5L,sr,26,10.4,1.0975043773651123,0.20587652921676636,0.5880630612373352,0.5437334775924683,0.8790740370750427,0.27144482731819153,0.0019554337486624718,8.174651156878099e-05,0.0025291461497545242,0.00034824296017177403,0.0023293981794267893,-0.00042214160203002393,-0.024547540710821544,0.0063172331167273,0.0063172331167273,-0.00024547540710821546,6.3172331167273e-05,6.3172331167273e-05,0.008389359340071678,-0.001857058727182448,26 +illusion_1.5L,sr,27,10.8,0.9140222072601318,0.483768105506897,0.671539843082428,0.6158252954483032,0.9309766292572021,0.331817090511322,0.001956724561750889,6.025641050655395e-05,0.0024920913856476545,0.00033057929249480367,0.002352325711399317,-0.0005023130215704441,-0.013665162314649372,0.00037114925497006013,0.00037114925497006013,-0.00013665162314649372,3.711492549700601e-06,3.711492549700601e-06,0.008158615790307522,-0.0006682443199679255,27 +illusion_1.5L,sr,28,11.2,0.79681795835495,0.5773440003395081,0.7456420660018921,0.6640447974205017,0.9905431866645813,0.3825635612010956,0.0019614696502685547,3.3331209124298766e-05,0.002453966997563839,0.00029457718483172357,0.0023833499290049076,-0.0005497438833117485,-0.003249362693271918,-0.00441246633391526,-0.00441246633391526,-3.249362693271918e-05,-4.41246633391526e-05,-4.41246633391526e-05,0.00808980967849493,0.0005694532301276922,28 +illusion_1.5L,sr,29,11.6,0.7312160730361938,0.5541454553604126,0.8023839592933655,0.7083672285079956,1.0567352771759033,0.42520323395729065,0.001966595882549882,5.7938914324040525e-06,0.0024175590369850397,0.00024524726904928684,0.0024177159648388624,-0.0005583843449130654,0.004317321694391543,-0.0066401363074367675,-0.0066401363074367675,4.3173216943915436e-05,-6.640136307436768e-05,-6.640136307436768e-05,0.00807673204690218,0.0017795475432649255,29 +illusion_1.5L,sr,30,12.0,0.6727449297904968,0.4930209815502167,0.8396375775337219,0.7294691205024719,1.1294692754745483,0.46084535121917725,0.001975972205400467,-1.9544053429854102e-05,0.0023933635093271732,0.0001930141297634691,0.0024584720376878977,-0.0005330996355041862,0.01210476917398291,-0.008951924406955743,-0.008951924406955743,0.0001210476917398291,-8.951924406955743e-05,-8.951924406955743e-05,0.008341887965798378,0.002887511160224676,30 +illusion_1.5L,sr,31,12.4,0.6117538213729858,0.3929860293865204,0.8478491902351379,0.6842911243438721,1.2101818323135376,0.48958519101142883,0.0019814190454781055,-4.0298389649251476e-05,0.0023754932917654514,0.0001546035782666877,0.0024947107303887606,-0.00048550564679317176,0.019115199455289132,-0.010972595310320018,-0.010972595310320018,0.00019115199455289132,-0.00010972595310320017,-0.00010972595310320017,0.008465869352221489,0.003825533203780651,31 +illusion_1.5L,sr,32,12.8,0.5617777109146118,0.24002768099308014,0.8189107775688171,0.5400430560112,1.2978423833847046,0.5054323673248291,0.001987636787816882,-5.594301546807401e-05,0.002370604546740651,0.000142629723995924,0.002529785968363285,-0.0004310201620683074,0.02568580466389365,-0.013196610183540902,-0.013196610183540902,0.00025685804663893653,-0.00013196610183540902,-0.00013196610183540902,0.008411048911511898,0.0045367949642241,32 +illusion_1.5L,sr,33,13.2,0.5408347845077515,0.05024932697415352,0.7601997256278992,0.2991520166397095,1.37455153465271,0.47962093353271484,0.001993851736187935,-6.579141336260363e-05,0.002377359662204981,0.00016628092271275818,0.0025600981898605824,-0.00038468686398118734,0.02988677805829867,-0.014356663046200353,-0.014356663046200353,0.0002988677805829867,-0.00014356663046200354,-0.00014356663046200354,0.008551978506147861,0.0049789901822805405,33 +illusion_1.5L,sr,34,13.6,0.5671794414520264,-0.12865377962589264,0.6973669528961182,-0.02492140792310238,1.3892403841018677,0.34083035588264465,0.0019900440238416195,-6.975918950047344e-05,0.0023797641042619944,0.00022542070655617863,0.0025682172272354364,-0.00035591103369370103,0.031069586661301274,-0.014083063939766036,-0.014083063939766036,0.00031069586661301273,-0.00014083063939766035,-0.00014083063939766035,0.008640555664896965,0.005126874428242445,34 +illusion_1.5L,sr,35,14.0,0.6470155119895935,-0.24039193987846375,0.6619999408721924,-0.3759464621543884,1.2919890880584717,0.03266974538564682,0.001982463989406824,-6.775176007067785e-05,0.0023823115043342113,0.00030691002029925585,0.0025580301880836487,-0.0003426758339628577,0.02809729361501459,-0.01160431495982707,-0.01160431495982707,0.0002809729361501459,-0.0001160431495982707,-0.0001160431495982707,0.00877284724265337,0.004973690956830978,35 +illusion_1.5L,sr,36,14.4,0.7448515892028809,-0.30417007207870483,0.6746525764465332,-0.6407970190048218,1.1299711465835571,-0.32828137278556824,0.0019741954747587442,-5.8934474509442225e-05,0.0023859571665525436,0.00039242394268512726,0.002531731966882944,-0.0003354031650815159,0.020611227026602397,-0.00668452342329269,-0.00668452342329269,0.00020611227026602396,-6.68452342329269e-05,-6.68452342329269e-05,0.008914750069379807,0.004531398881226778,36 +illusion_1.5L,sr,37,14.8,0.8338373303413391,-0.3583275079727173,0.7388841509819031,-0.7184622883796692,0.9885087013244629,-0.5503198504447937,0.00196722405962646,-4.423754580784589e-05,0.002392598893493414,0.00046153151197358966,0.002495008520781994,-0.0003238778153900057,0.011466637362174306,-0.001376592978090549,-0.001376592978090549,0.00011466637362174306,-1.3765929780905489e-05,-1.3765929780905489e-05,0.008651209995150566,0.0038297150749713182,37 +illusion_1.5L,sr,38,15.2,0.9184249639511108,-0.4020264744758606,0.8094285726547241,-0.7270509600639343,0.8965334296226501,-0.589836061000824,0.001969150733202696,-2.4926192054408602e-05,0.0024117978755384684,0.0005015047499909997,0.0024629938416182995,-0.0003002768789883703,0.002202836186311702,0.003364905232896231,0.003364905232896231,2.202836186311702e-05,3.364905232896231e-05,3.364905232896231e-05,0.008369920775294304,0.002914042677730322,38 +illusion_1.5L,sr,39,15.6,1.0019505023956299,-0.4350551664829254,0.8655102252960205,-0.7489582896232605,0.8296601176261902,-0.5549352169036865,0.0019751512445509434,-4.389647074276581e-06,0.0024378709495067596,0.0005085080629214644,0.002435932867228985,-0.00026781525230035186,-0.004702558781740286,0.005977946820158557,0.005977946820158557,-4.7025587817402864e-05,5.977946820158557e-05,5.977946820158557e-05,0.00823057908564806,0.0018424494192004204,39 +illusion_1.5L,sr,40,16.0,1.0871161222457886,-0.45940685272216797,0.9086238145828247,-0.7686097621917725,0.7564823031425476,-0.5043985843658447,0.0019786509219557047,1.487454392190557e-05,0.002463206648826599,0.00048819463700056076,0.00241173361428082,-0.00023385268286801875,-0.01083244899684181,0.007923310161605428,0.007923310161605428,-0.00010832448996841811,7.923310161605428e-05,7.923310161605428e-05,0.008093336597084999,0.0006818966940045357,40 +illusion_1.5L,sr,41,16.4,1.1780213117599487,-0.4759325683116913,0.9294898509979248,-0.7361531257629395,0.6783233880996704,-0.4133051335811615,0.0019867410883307457,3.0608462111558765e-05,0.0024935982655733824,0.0004500999639276415,0.0024000771809369326,-0.00020978441170882434,-0.01630204274181659,0.00955550041968332,0.00955550041968332,-0.0001630204274181659,9.55550041968332e-05,9.55550041968332e-05,0.008223836310207844,-0.0004960204241797328,41 +illusion_1.5L,sr,42,16.8,1.2723898887634277,-0.4788527190685272,0.9090936183929443,-0.599115788936615,0.6101080179214478,-0.25669994950294495,0.001984011149033904,4.26563092332799e-05,0.002509470796212554,0.00040715490467846394,0.002384381601586938,-0.0002053901698673144,-0.022222055527096274,0.011886276102034549,0.011886276102034549,-0.00022222055527096275,0.00011886276102034548,0.00011886276102034548,0.008288096636533737,-0.0016195487696677446,42 +illusion_1.5L,sr,43,17.2,1.3656812906265259,-0.4493405520915985,0.8511373400688171,-0.3547179102897644,0.575486958026886,-0.05288221687078476,0.0019829419907182455,5.124416566104628e-05,0.002523115836083889,0.00037145480746403337,0.0023783287033438683,-0.0002265687653562054,-0.026180583922702255,0.013276415802138177,0.013276415802138177,-0.00026180583922702256,0.00013276415802138176,0.00013276415802138176,0.008168513886630535,-0.0026211808435618877,43 +illusion_1.5L,sr,44,17.6,1.4129114151000977,-0.3285132944583893,0.7798345685005188,-0.005614869762212038,0.5947721600532532,0.14007708430290222,0.0019840931054204702,5.556505493586883e-05,0.002532482147216797,0.0003486331843305379,0.002381388796493411,-0.00027137959841638803,-0.026441185053813848,0.012508471003079058,0.012508471003079058,-0.0002644118505381385,0.0001250847100307906,0.0001250847100307906,0.008290053345263004,-0.003441715380176902,44 +illusion_1.5L,sr,45,18.0,1.3462791442871094,-0.05640615522861481,0.7365497350692749,0.37643569707870483,0.6734141707420349,0.25720375776290894,0.001978188520297408,5.491731644724496e-05,0.0025226115249097347,0.00033894655643962324,0.002379501471295953,-0.00033217002055607736,-0.023280222729374328,0.009861216403793505,0.009861216403793505,-0.0002328022272937433,9.861216403793505e-05,9.861216403793505e-05,0.008446116000413895,-0.004033731762319803,45 +illusion_1.5L,sr,46,18.4,1.181152105331421,0.26892024278640747,0.7476335167884827,0.6296612620353699,0.7721965312957764,0.3176725208759308,0.0019710934720933437,4.848617027164437e-05,0.002500485396012664,0.00033348039141856134,0.0023785550147295,-0.00039464779547415674,-0.017326312146873454,0.00584372670009628,0.00584372670009628,-0.00017326312146873454,5.84372670009628e-05,5.84372670009628e-05,0.00865935068577528,-0.004364273976534605,46 +illusion_1.5L,sr,47,18.8,1.0249786376953125,0.44908249378204346,0.8039127588272095,0.6784200072288513,0.8619909882545471,0.3653169274330139,0.0019663383718580008,3.752163320314139e-05,0.0024723606184124947,0.0003241454833187163,0.002382142934948206,-0.00044396883458830416,-0.011259927455018498,0.002386685086015236,0.002386685086015236,-0.00011259927455018498,2.3866850860152363e-05,2.3866850860152363e-05,0.00895126722753048,-0.004416606388986111,47 +illusion_1.5L,sr,48,19.2,0.9234737157821655,0.4701991677284241,0.8577547669410706,0.6797913908958435,0.9459220767021179,0.4024892747402191,0.0019622354302555323,2.3261898604687303e-05,0.0024405098520219326,0.0003058786678593606,0.002388354856520891,-0.0004719543503597379,-0.004932860981974277,-0.0007495211342976177,-0.0007495211342976177,-4.932860981974277e-05,-7.495211342976177e-06,-7.495211342976177e-06,0.008846367709338665,-0.004190945997834206,48 +illusion_1.5L,sr,49,19.6,0.8478500247001648,0.43673914670944214,0.8971854448318481,0.7004966735839844,1.0278675556182861,0.42989790439605713,0.0019653430208563805,8.128807166940533e-06,0.002417347626760602,0.00028001339524053037,0.002405220177024603,-0.00047472064034081995,0.0003907535050200264,-0.0028332606380326586,-0.0028332606380326586,3.907535050200264e-06,-2.8332606380326586e-05,-2.8332606380326586e-05,0.0086283003911376,-0.0037041637115180492,49 +illusion_1.5L,sr,50,20.0,0.7689919471740723,0.38415512442588806,0.9243795871734619,0.7176961302757263,1.1112481355667114,0.44900885224342346,0.0019715900998562574,-6.252361345104873e-06,0.0024015570525079966,0.00025336642283946276,0.0024275074247270823,-0.00045805133413523436,0.005705837908164911,-0.0048148438289824435,-0.0048148438289824435,5.7058379081649116e-05,-4.814843828982444e-05,-4.814843828982444e-05,0.00852078478783369,-0.002988493302837014,50 +illusion_1.5L,sr,51,20.4,0.6882617473602295,0.291504830121994,0.9282917976379395,0.6730544567108154,1.19929039478302,0.45934197306632996,0.001973026664927602,-1.8680553694139235e-05,0.0023861422669142485,0.00023539648100268096,0.002445350168272853,-0.0004302868328522891,0.01079257487200265,-0.006722515639273229,-0.006722515639273229,0.0001079257487200265,-6.72251563927323e-05,-6.72251563927323e-05,0.008339837193489075,-0.0020893490873277187,51 +illusion_1.5L,sr,52,20.8,0.6256632804870605,0.14753898978233337,0.8942175507545471,0.5195924639701843,1.2930595874786377,0.4556137025356293,0.0019744255114346743,-2.8921709599671885e-05,0.002376301446929574,0.00023253922699950635,0.0024616518057882786,-0.00040024652844294906,0.01550883336634834,-0.008591096780404189,-0.008591096780404189,0.0001550883336634834,-8.591096780404189e-05,-8.591096780404189e-05,0.008356091566383839,-0.001062412979081273,52 +illusion_1.5L,sr,53,21.2,0.6078895330429077,-0.019627271220088005,0.8234519958496094,0.2596665322780609,1.3813998699188232,0.41710638999938965,0.001971050864085555,-3.639645001385361e-05,0.002366184489801526,0.00024912034859880805,0.0024685622192919254,-0.00037616948247887194,0.018242002828110726,-0.009338917968363218,-0.009338917968363218,0.00018242002828110725,-9.338917968363219e-05,-9.338917968363219e-05,0.00832816120237112,2.9825627279933542e-05,53 +illusion_1.5L,sr,54,21.6,0.6522086262702942,-0.15431639552116394,0.7424533367156982,-0.09590020775794983,1.4210373163223267,0.29085230827331543,0.001966578885912895,-4.0149981941794977e-05,0.002359462436288595,0.00028332899091765285,0.0024683659430593252,-0.0003606652026064694,0.018361588981317456,-0.008596864195591102,-0.008596864195591102,0.00018361588981317457,-8.596864195591101e-05,-8.596864195591101e-05,0.008069791831076145,0.0011218518484383821,54 +illusion_1.5L,sr,55,22.0,0.7337102293968201,-0.23777306079864502,0.6989446878433228,-0.4489401578903198,1.344825267791748,0.029429493471980095,0.001966160023584962,-4.003320282208733e-05,0.0023617465049028397,0.0003273511247243732,0.002465972676873207,-0.00035241973819211125,0.016572455730416297,-0.006954285676216865,-0.006954285676216865,0.00016572455730416298,-6.954285676216865e-05,-6.954285676216865e-05,0.008051803335547447,0.002149005187675357,55 +illusion_1.5L,sr,56,22.4,0.8160755038261414,-0.302875280380249,0.7251720428466797,-0.6347795128822327,1.165756344795227,-0.2756488621234894,0.0019622042309492826,-3.520853351801634e-05,0.002361797261983156,0.0003741661203093827,0.0024508426431566477,-0.0003468672512099147,0.012541725701920914,-0.004199015738393687,-0.004199015738393687,0.00012541725701920915,-4.199015738393687e-05,-4.199015738393687e-05,0.008151903748512268,0.0030512260273098946,56 +illusion_1.5L,sr,57,22.8,0.894929826259613,-0.3553392291069031,0.791837215423584,-0.6547399759292603,0.9993757009506226,-0.43758678436279297,0.001957150176167488,-2.7073590899817646e-05,0.0023626931942999363,0.000412404362577945,0.002427940024062991,-0.00033855889341793954,0.008637572286453302,-0.0020497756348281035,-0.0020497756348281035,8.637572286453301e-05,-2.0497756348281034e-05,-2.0497756348281034e-05,0.00834288913756609,0.0037764590233564377,57 +illusion_1.5L,sr,58,23.2,0.9726690649986267,-0.3945420980453491,0.8455603122711182,-0.6643279790878296,0.8969733715057373,-0.44767531752586365,0.001955423504114151,-1.6077925465651788e-05,0.002369254594668746,0.0004353119002189487,0.0024053261149674654,-0.0003228113055229187,0.0036968351841446738,0.00044635142473788136,0.00044635142473788136,3.696835184144674e-05,4.463514247378814e-06,4.463514247378814e-06,0.008715752512216568,0.004283526912331581,58 +illusion_1.5L,sr,59,23.6,1.0506566762924194,-0.4228741526603699,0.8829659819602966,-0.690307080745697,0.8233925104141235,-0.4064485430717468,0.0019528742413967848,-4.459037882043049e-06,0.002376476302742958,0.00044038824853487313,0.002381144557148218,-0.00030226437957026064,-0.0002485649059829273,0.0019434909200980387,0.0019434909200980387,-2.485649059829273e-06,1.9434909200980387e-05,1.9434909200980387e-05,0.00877283327281475,0.004544325638562441,59 +illusion_1.5L,sr,60,24.0,1.1318423748016357,-0.44165968894958496,0.9056944847106934,-0.699607253074646,0.7471778988838196,-0.3436511754989624,0.0019555711187422276,7.394809927063761e-06,0.002391359768807888,0.0004305478068999946,0.0023653609678149223,-0.00027965710614807904,-0.004942124683888441,0.0038857191485836677,0.0038857191485836677,-4.942124683888441e-05,3.885719148583668e-05,3.885719148583668e-05,0.008680131286382675,0.004545234143733978,60 +illusion_1.5L,sr,61,24.4,1.2182258367538452,-0.44956889748573303,0.902565598487854,-0.6311452984809875,0.6730406284332275,-0.24219049513339996,0.0019611704628914595,1.7771351849660277e-05,0.002410461660474539,0.0004114727780688554,0.0023570158518850803,-0.00026329298270866275,-0.008478228201319302,0.005007144897456737,0.005007144897456737,-8.478228201319302e-05,5.007144897456737e-05,5.007144897456737e-05,0.00870765931904316,0.00428768340498209,61 +illusion_1.5L,sr,62,24.8,1.310308814048767,-0.44084709882736206,0.8637298345565796,-0.456961989402771,0.6243902444839478,-0.1001807227730751,0.001963208429515362,2.648062218213454e-05,0.0024252901785075665,0.00039226695662364364,0.0023498516529798508,-0.0002594593388494104,-0.012123342553015684,0.006366325881740655,0.006366325881740655,-0.00012123342553015684,6.366325881740656e-05,6.366325881740656e-05,0.008620945736765862,0.0037878667935729027,62 +illusion_1.5L,sr,63,25.2,1.3894177675247192,-0.3929879367351532,0.7887661457061768,-0.18574878573417664,0.6249366998672485,0.048592016100883484,0.0019599073566496372,3.264233600930311e-05,0.0024301165249198675,0.0003750405157916248,0.0023399146739393473,-0.000269873533397913,-0.014229111869056829,0.006852182389797255,0.006852182389797255,-0.0001422911186905683,6.852182389797255e-05,6.852182389797255e-05,0.008646907284855843,0.0030756364576518536,63 +illusion_1.5L,sr,64,25.6,1.418089747428894,-0.2627870738506317,0.7082282304763794,0.16438128054141998,0.6821014881134033,0.15928645431995392,0.0019551522564142942,3.5769367968896404e-05,0.002428850159049034,0.00036426898441277444,0.0023323085624724627,-0.0002949712215922773,-0.01499167463781291,0.006696476684389198,0.006696476684389198,-0.0001499167463781291,6.696476684389198e-05,6.696476684389198e-05,0.008617529645562172,0.0021926581393927336,64 +illusion_1.5L,sr,65,26.0,1.3342803716659546,-0.012566260993480682,0.6701627969741821,0.48972010612487793,0.759559154510498,0.23807483911514282,0.0019499716581776738,3.566618761396967e-05,0.002420777454972267,0.0003578347968868911,0.0023269648663699627,-0.00032903492683544755,-0.014326042878739259,0.005894553857231873,0.005894553857231873,-0.0001432604287873926,5.8945538572318726e-05,5.8945538572318726e-05,0.008267231285572052,0.0011899459641426802,65 +illusion_1.5L,sr,66,26.4,1.1481375694274902,0.2743864953517914,0.7076716423034668,0.6337968707084656,0.8348933458328247,0.304922491312027,0.0019502467475831509,3.207293411833234e-05,0.0024135566782206297,0.00035144135472364724,0.0023310165852308273,-0.00036484788870438933,-0.012046649270587503,0.004340533202328085,0.004340533202328085,-0.00012046649270587504,4.340533202328085e-05,4.340533202328085e-05,0.008079802617430687,0.00012491656525526196,66 +illusion_1.5L,sr,67,26.8,0.9735544323921204,0.428157776594162,0.7771732807159424,0.6464536190032959,0.9100261926651001,0.3576348125934601,0.0019488274119794369,2.5817796995397657e-05,0.002398948883637786,0.00034298744867555797,0.0023350785486400127,-0.0003961194306612015,-0.00916970107112916,0.0027609585540088744,0.0027609585540088744,-9.169701071129161e-05,2.7609585540088746e-05,2.7609585540088746e-05,0.008036432787775993,-0.0009418626432307065,67 +illusion_1.5L,sr,68,27.2,0.8693546056747437,0.43565842509269714,0.8302383422851562,0.6637862920761108,0.9872247576713562,0.39759695529937744,0.0019483326468616724,1.7267338989768177e-05,0.0023823059163987637,0.00032978609669953585,0.0023420245852321386,-0.0004178851086180657,-0.005032256995352112,0.0006092300680038409,0.0006092300680038409,-5.032256995352112e-05,6.09230068003841e-06,6.09230068003841e-06,0.008079362101852894,-0.0019500593189150095,68 +illusion_1.5L,sr,69,27.6,0.7961874604225159,0.38803231716156006,0.8644126057624817,0.6903995275497437,1.0636253356933594,0.4255647659301758,0.001945780124515295,6.957605819479795e-06,0.002361752325668931,0.0003111869446001947,0.002347836969420314,-0.000425028963945806,-0.0011407286251941956,-0.0011205262435751047,-0.0011205262435751047,-1.1407286251941956e-05,-1.1205262435751047e-05,-1.1205262435751047e-05,0.008383121341466904,-0.002842910820618272,69 +illusion_1.5L,sr,70,28.0,0.7240556478500366,0.3172481060028076,0.8828503489494324,0.688852846622467,1.1448676586151123,0.44360020756721497,0.0019438988529145718,-3.540086936482112e-06,0.0023431547451764345,0.0002917138917837292,0.002355550415813923,-0.0004213590582367033,0.0016550024992119886,-0.001903750836052716,-0.001903750836052716,1.6550024992119887e-05,-1.903750836052716e-05,-1.903750836052716e-05,0.008482938632369041,-0.0035703328903764486,70 +illusion_1.5L,sr,71,28.4,0.6569810509681702,0.21074990928173065,0.8743302822113037,0.6000668406486511,1.2304257154464722,0.44917383790016174,0.00194553064648062,-1.2560443792608567e-05,0.002331656403839588,0.0002757095790002495,0.0023678233847022057,-0.00040926376823335886,0.004012508276214773,-0.0023652947359882005,-0.0023652947359882005,4.012508276214773e-05,-2.3652947359882006e-05,-2.3652947359882006e-05,0.008444554172456264,-0.00409164372831583,71 +illusion_1.5L,sr,72,28.8,0.6186754107475281,0.07201141119003296,0.8313961625099182,0.41058269143104553,1.3180803060531616,0.4350389838218689,0.0019502146169543266,-1.9842625988530926e-05,0.0023277336731553078,0.0002684086502995342,0.0023833387531340122,-0.00039418888627551496,0.007100434705609549,-0.003491356910852249,-0.003491356910852249,7.100434705609549e-05,-3.491356910852249e-05,-3.491356910852249e-05,0.00859114434570074,-0.004377763718366623,72 +illusion_1.5L,sr,73,29.2,0.633568286895752,-0.06258092075586319,0.7571925520896912,0.1360922008752823,1.3913848400115967,0.380630224943161,0.0019491034327074885,-2.513560866646003e-05,0.002321255160495639,0.00027427758323028684,0.002390519483014941,-0.00038113503251224756,0.00981927927121936,-0.004555603078350321,-0.004555603078350321,9.81927927121936e-05,-4.555603078350321e-05,-4.555603078350321e-05,0.008660022169351578,-0.0044127777218818665,73 +illusion_1.5L,sr,74,29.6,0.6962478160858154,-0.16078732907772064,0.6782771944999695,-0.20446649193763733,1.410865306854248,0.24880166351795197,0.0019472293788567185,-2.8197247956995852e-05,0.0023165291640907526,0.00029221316799521446,0.0023925371933728456,-0.00037162459921091795,0.011366969930012495,-0.005034880360927432,-0.005034880360927432,0.00011366969930012495,-5.0348803609274326e-05,-5.0348803609274326e-05,0.008805335499346256,-0.00419478677213192,74 +illusion_1.5L,sr,75,30.0,0.7700900435447693,-0.23869875073432922,0.64423006772995,-0.5094636678695679,1.3247170448303223,0.00926767848432064,0.0019428672967478633,-2.8630727683776058e-05,0.002311923075467348,0.0003192087751813233,0.002387181855738163,-0.00036535755498334765,0.011205279439324027,-0.0045862548367556,-0.0045862548367556,0.00011205279439324028,-4.5862548367556e-05,-4.5862548367556e-05,0.00891233142465353,-0.003736004466190934,75 +illusion_1.5L,sr,76,30.4,0.8415780663490295,-0.3062845766544342,0.6883814334869385,-0.633232593536377,1.1365251541137695,-0.26880910992622375,0.0019379752920940518,-2.617859536258038e-05,0.002308556344360113,0.0003496152930893004,0.0023757810704410076,-0.00035958760417997837,0.009626073011246614,-0.0034539218088381206,-0.0034539218088381206,9.626073011246613e-05,-3.4539218088381205e-05,-3.4539218088381205e-05,0.008620023727416992,-0.0030620943289250135,76 +illusion_1.5L,sr,77,30.8,0.9143660068511963,-0.3592650592327118,0.7601690888404846,-0.6448708176612854,0.9539121985435486,-0.426822692155838,0.0019386985804885626,-2.078714533126913e-05,0.002314251847565174,0.000376931915525347,0.0023669027723371983,-0.00035081407986581326,0.0073509637979260545,-0.00216184396124678,-0.00216184396124678,7.350963797926054e-05,-2.1618439612467802e-05,-2.1618439612467802e-05,0.008369951508939266,-0.0022107805125415325,77 +illusion_1.5L,sr,78,31.2,0.9891930222511292,-0.3990429937839508,0.8125693798065186,-0.6653292775154114,0.8442227840423584,-0.4364490807056427,0.0019392009126022458,-1.3382858924160246e-05,0.0023213226813822985,0.0003977494197897613,0.002354651689529419,-0.00033831020118668675,0.0051712898339163205,-0.0012594027154005719,-0.0012594027154005719,5.1712898339163205e-05,-1.2594027154005718e-05,-1.2594027154005718e-05,0.008232075721025467,-0.001229805056937039,78 +illusion_1.5L,sr,79,31.6,1.0666606426239014,-0.4274791479110718,0.8480839729309082,-0.6931476593017578,0.7743883728981018,-0.38566523790359497,0.0019374110270291567,-4.9875725380843505e-06,0.002327116671949625,0.00040935954893939197,0.002338520949706435,-0.0003223903477191925,0.0028106382349540604,-0.0004546128069145179,-0.0004546128069145179,2.8106382349540604e-05,-4.546128069145179e-06,-4.546128069145179e-06,0.00811179168522358,-0.00017433101311326027,79 +illusion_1.5L,sr,80,32.0,1.1477351188659668,-0.444736123085022,0.8662633299827576,-0.6862456798553467,0.7067534923553467,-0.310507595539093,0.0019379656296223402,3.725773467522231e-06,0.002336204284802079,0.00041100618545897305,0.0023253201507031918,-0.00030462208087556064,0.00011874360652494587,0.0004683919654514535,0.0004683919654514535,1.1874360652494587e-06,4.683919654514535e-06,4.683919654514535e-06,0.008253613486886024,0.0008960727136582136,80 +illusion_1.5L,sr,81,32.4,1.2327167987823486,-0.44858020544052124,0.8580742478370667,-0.5893151760101318,0.6442285180091858,-0.2018665075302124,0.0019360862206667662,1.1757771972042974e-05,0.0023426490370184183,0.0004053116717841476,0.0023111721966415644,-0.00028962106443941593,-0.0022486702994818433,0.0011334862559045158,0.0011334862559045158,-2.2486702994818433e-05,1.1334862559045159e-05,1.1334862559045159e-05,0.008266055956482887,0.0019207126460969448,81 +illusion_1.5L,sr,82,32.8,1.3182458877563477,-0.4316014349460602,0.8168236613273621,-0.3953138291835785,0.6104624271392822,-0.06436047703027725,0.0019364539766684175,1.8385620933258906e-05,0.002351270290091634,0.0003951953840442002,0.0023025148548185825,-0.00028058962197974324,-0.004474029699959789,0.001776149948967097,0.001776149948967097,-4.474029699959789e-05,1.776149948967097e-05,1.776149948967097e-05,0.008138866163790226,0.002841145033016801,82 +illusion_1.5L,sr,83,33.2,1.3875700235366821,-0.37556469440460205,0.7450646758079529,-0.12530966103076935,0.6298681497573853,0.06502000987529755,0.001940343645401299,2.305749148945324e-05,0.0023628391791135073,0.00038435825263150036,0.002301604952663183,-0.0002809623838402331,-0.006571460732650796,0.0024857820132518534,0.0024857820132518534,-6.571460732650796e-05,2.4857820132518534e-05,2.4857820132518534e-05,0.008266528137028217,0.0036044649314135313,83 +illusion_1.5L,sr,84,33.6,1.4065555334091187,-0.25016695261001587,0.6656527519226074,0.2067853808403015,0.6945162415504456,0.15947282314300537,0.0019390443339943886,2.5575847757863812e-05,0.0023660100996494293,0.0003761381667573005,0.002298033097758889,-0.00029286174685694277,-0.008323324137478251,0.003173762224549251,0.003173762224549251,-8.323324137478251e-05,3.173762224549251e-05,3.173762224549251e-05,0.008407868444919586,0.004166331607848406,84 +illusion_1.5L,sr,85,34.0,1.330697774887085,-0.03066488541662693,0.6282986998558044,0.5063116550445557,0.7675462961196899,0.23693570494651794,0.0019367593340575695,2.5885714421747252e-05,0.0023638082202523947,0.00036989632644690573,0.0022953730076551437,-0.0003137389139737934,-0.009282386907669839,0.003554729338086912,0.003554729338086912,-9.282386907669839e-05,3.554729338086912e-05,3.554729338086912e-05,0.008650233037769794,0.004493560642004013,85 +illusion_1.5L,sr,86,34.4,1.1497352123260498,0.23736019432544708,0.6705261468887329,0.6311146020889282,0.8378742933273315,0.30538833141326904,0.0019333186792209744,2.3719394448562525e-05,0.0023562235292047262,0.00036395847564563155,0.00229356880299747,-0.0003396357933524996,-0.00906115423656733,0.0033686289144114895,0.0033686289144114895,-9.06115423656733e-05,3.36862891441149e-05,3.36862891441149e-05,0.008936306461691856,0.0045661311596632,86 +illusion_1.5L,sr,87,34.8,0.9558057188987732,0.4103945791721344,0.743136465549469,0.6429431438446045,0.9094865322113037,0.35928770899772644,0.0019290500786155462,1.9449224055279046e-05,0.0023434574250131845,0.00035609371843747795,0.0022921287454664707,-0.00036532882950268686,-0.008254175705640257,0.0030532909794008796,0.0030532909794008796,-8.254175705640257e-05,3.05329097940088e-05,3.05329097940088e-05,0.008818242698907852,0.004378491081297398,87 +illusion_1.5L,sr,88,35.2,0.8333714008331299,0.43369728326797485,0.7958400845527649,0.6634058356285095,0.9834717512130737,0.39997756481170654,0.0019298961851745844,1.3259103070595302e-05,0.002334163524210453,0.00034376673283986747,0.002298469888046384,-0.0003860634460579604,-0.006725809223670824,0.0024745073144071712,0.0024745073144071712,-6.725809223670825e-05,2.4745073144071713e-05,2.4745073144071713e-05,0.00864899531006813,0.003940064925700426,88 +illusion_1.5L,sr,89,35.6,0.7623569369316101,0.38411810994148254,0.8309159278869629,0.6915625929832458,1.0604283809661865,0.4291006028652191,0.0019316754769533873,6.119485533417901e-06,0.002324530854821205,0.00032831073622219265,0.0023070746101439,-0.0003997294697910547,-0.005225751013400733,0.002126862500262082,0.002126862500262082,-5.225751013400733e-05,2.126862500262082e-05,2.126862500262082e-05,0.00856008566915989,0.003274921327829361,89 +illusion_1.5L,sr,90,36.0,0.6988076567649841,0.308493435382843,0.8492280840873718,0.6869238018989563,1.1414510011672974,0.44680866599082947,0.0019306093454360962,-1.2348843938525533e-06,0.0023117228411138058,0.0003115852305199951,0.0023132949136197567,-0.0004059226193930954,-0.0033091915416150006,0.0015978745780830218,0.0015978745780830218,-3.3091915416150006e-05,1.5978745780830217e-05,1.5978745780830217e-05,0.008397326804697514,0.002420595847070217,90 +illusion_1.5L,sr,91,36.4,0.6396377682685852,0.2028004676103592,0.843019425868988,0.5944617390632629,1.2261011600494385,0.4507902264595032,0.0019312186632305384,-7.922290023998357e-06,0.0023017912171781063,0.0002962519647553563,0.0023214411921799183,-0.00040463171899318695,-0.0011136327188301068,0.0009009599729687966,0.0009009599729687966,-1.1136327188301068e-05,9.009599729687966e-06,9.009599729687966e-06,0.008429951965808868,0.0014261198230087757,91 +illusion_1.5L,sr,92,36.8,0.6069025993347168,0.07073245942592621,0.8061739206314087,0.4062093496322632,1.3105412721633911,0.4342414438724518,0.001929455203935504,-1.3706503523280844e-05,0.0022910714615136385,0.00028599455254152417,0.002326469635590911,-0.0003988217213191092,0.0015908533098599254,-0.00021900665103358717,-0.00021900665103358717,1.5908533098599255e-05,-2.1900665103358717e-06,-2.1900665103358717e-06,0.008345250971615314,0.00034934014547616243,92 +illusion_1.5L,sr,93,37.2,0.6249103546142578,-0.054997850209474564,0.7384611368179321,0.14582444727420807,1.3795169591903687,0.3812209963798523,0.0019288361072540283,-1.8144310161005706e-05,0.0022843307815492153,0.0002833604521583766,0.0023318887688219547,-0.0003905166231561452,0.00403224989675062,-0.0012578817238763466,-0.0012578817238763466,4.03224989675062e-05,-1.2578817238763467e-05,-1.2578817238763467e-05,0.008059890009462833,-0.0007463268702849746,93 +illusion_1.5L,sr,94,37.6,0.6877961158752441,-0.14813776314258575,0.657866895198822,-0.1751985102891922,1.403319239616394,0.26700359582901,0.0019320594146847725,-2.0910305465804413e-05,0.0022851545363664627,0.0002896123332902789,0.0023402352817356586,-0.000382024678401649,0.005976013296507439,-0.0021034596624950573,-0.0021034596624950573,5.976013296507439e-05,-2.1034596624950574e-05,-2.1034596624950574e-05,0.00803802814334631,-0.0017955382354557514,94 +illusion_1.5L,sr,95,38.0,0.7594396471977234,-0.2260964959859848,0.6114671230316162,-0.48035311698913574,1.344620704650879,0.06970325857400894,0.001930968719534576,-2.1721205484936945e-05,0.0022836579009890556,0.00030543783213943243,0.002340923063457012,-0.0003753780329134315,0.0071361868745168635,-0.0025952365307388287,-0.0025952365307388287,7.136186874516864e-05,-2.5952365307388287e-05,-2.5952365307388287e-05,0.00810767337679863,-0.0027348583098500967,95 +illusion_1.5L,sr,96,38.4,0.8280868530273438,-0.29670536518096924,0.6452490091323853,-0.625281035900116,1.1808403730392456,-0.18777552247047424,0.0019284584559500217,-2.0303101337049156e-05,0.0022822243627160788,0.00032750770333223045,0.002336086705327034,-0.00036919236299581826,0.007457122406498554,-0.002726230818002509,-0.002726230818002509,7.457122406498553e-05,-2.7262308180025093e-05,-2.7262308180025093e-05,0.008312919177114964,-0.0035065629053860903,96 +illusion_1.5L,sr,97,38.8,0.8984296917915344,-0.35320213437080383,0.7204276323318481,-0.6410053372383118,0.9771516919136047,-0.38545650243759155,0.0019259662367403507,-1.6900576156331226e-05,0.0022825589403510094,0.0003513835254125297,0.0023278475273400545,-0.00036160857416689396,0.0072769855819390375,-0.0027588831467396553,-0.0027588831467396553,7.276985581939038e-05,-2.7588831467396555e-05,-2.7588831467396555e-05,0.008678091689944267,-0.004062185063958168,97 +illusion_1.5L,sr,98,39.2,0.9712828993797302,-0.3961576223373413,0.7767887115478516,-0.659481942653656,0.834565281867981,-0.4352562427520752,0.0019223411800339818,-1.172932479676092e-05,0.0022825489286333323,0.0003730938187800348,0.002315080724656582,-0.00035118430969305336,0.0064710450523879845,-0.0025805646930882366,-0.0025805646930882366,6.471045052387985e-05,-2.5805646930882367e-05,-2.5805646930882367e-05,0.008710966445505619,-0.004365585744380951,98 +illusion_1.5L,sr,99,39.6,1.0483829975128174,-0.42776623368263245,0.8146572113037109,-0.6894463300704956,0.758216142654419,-0.3929561674594879,0.001925519434735179,-5.6181138461397495e-06,0.002291877055540681,0.00038909888826310635,0.002308896044269204,-0.00033746857661753893,0.005496251887509445,-0.0024813084368520213,-0.0024813084368520213,5.4962518875094455e-05,-2.4813084368520214e-05,-2.4813084368520214e-05,0.00866282731294632,-0.004395345691591501,99 +illusion_1.5L,sr,100,40.0,1.1270594596862793,-0.4467082917690277,0.8342529535293579,-0.6919401288032532,0.6966325640678406,-0.3186807334423065,0.001925721182487905,7.473552159353858e-07,0.002298439620062709,0.0003973648708779365,0.002298678271472454,-0.0003211174043826759,0.003944922962136877,-0.002089752131043194,-0.002089752131043194,3.9449229621368775e-05,-2.089752131043194e-05,-2.089752131043194e-05,0.008717188611626625,-0.004146318417042494,100 +illusion_1.5L,sr,101,40.4,1.2110862731933594,-0.452540785074234,0.8328002095222473,-0.614158034324646,0.6393129229545593,-0.21772462129592896,0.0019249188480898738,6.814242624386679e-06,0.0023045875132083893,0.00039995359838940203,0.0022883061319589615,-0.00030646243249066174,0.0017608702289695448,-0.0012917011353140598,-0.0012917011353140598,1.7608702289695448e-05,-1.2917011353140597e-05,-1.2917011353140597e-05,0.008651788346469402,-0.0036302267108112574,101 +illusion_1.5L,sr,102,40.8,1.2952618598937988,-0.43891671299934387,0.8031248450279236,-0.43898311257362366,0.603712260723114,-0.09057614952325821,0.0019253056962043047,1.214594431075966e-05,0.0023116357624530792,0.00039700910565443337,0.00228038989007473,-0.00029533763881772757,-0.0008018653612086832,-0.0002006634535730752,-0.0002006634535730752,-8.018653612086833e-06,-2.006634535730752e-06,-2.006634535730752e-06,0.008710197173058987,-0.0028752374928444624,102 +illusion_1.5L,sr,103,41.2,1.3670200109481812,-0.39252281188964844,0.7426156401634216,-0.19205445051193237,0.6152211427688599,0.0355837382376194,0.001923548523336649,1.6599537048023194e-05,0.0023154772352427244,0.0003911380481440574,0.002271963283419609,-0.00029063355759717524,-0.003461707178867474,0.0010381260973620424,0.0010381260973620424,-3.461707178867474e-05,1.0381260973620424e-05,1.0381260973620424e-05,0.008641681633889675,-0.0019245173316448927,103 +illusion_1.5L,sr,104,41.6,1.3999459743499756,-0.2931646406650543,0.6622783541679382,0.11468247324228287,0.6739063858985901,0.13078215718269348,0.0019221518887206912,1.9669294488267042e-05,0.0023183654993772507,0.00038385827792808414,0.0022663644049316645,-0.0002937280514743179,-0.005471760083428652,0.0019274884418018885,0.0019274884418018885,-5.4717600834286524e-05,1.9274884418018885e-05,1.9274884418018885e-05,0.008270466700196266,-0.0008338304469361901,104 +illusion_1.5L,sr,105,42.0,1.3633265495300293,-0.12231176346540451,0.6031242609024048,0.42793890833854675,0.7449419498443604,0.208816260099411,0.0019247203599661589,2.112752008542884e-05,0.0023240246810019016,0.0003764013235922903,0.002268110867589712,-0.0003043323813471943,-0.00688559335417914,0.0025599753117051295,0.0025599753117051295,-6.88559335417914e-05,2.5599753117051296e-05,2.5599753117051296e-05,0.0080949105322361,0.0003316924849059433,105 +illusion_1.5L,sr,106,42.4,1.2283930778503418,0.11542143672704697,0.6188355088233948,0.6096483469009399,0.8124253153800964,0.28187698125839233,0.001924054929986596,2.0562447389238514e-05,0.0023231073282659054,0.00036975822877138853,0.002268321579322219,-0.0003223031817469746,-0.007448591663921819,0.0027858332592634177,0.0027858332592634177,-7.448591663921819e-05,2.785833259263418e-05,2.785833259263418e-05,0.008030417375266552,0.0015014351811259985,106 +illusion_1.5L,sr,107,42.8,1.0242940187454224,0.33537837862968445,0.693176805973053,0.6374321579933167,0.8815062642097473,0.34204021096229553,0.0019216551445424557,1.8340406313654967e-05,0.0023166565224528313,0.00036292141885496676,0.002267996547743678,-0.000343668507412076,-0.007584916485101837,0.0029417618851991442,0.0029417618851991442,-7.584916485101837e-05,2.9417618851991445e-05,2.9417618851991445e-05,0.008088373579084873,0.002603593748062849,107 +illusion_1.5L,sr,108,43.2,0.8545626997947693,0.42533838748931885,0.7551527619361877,0.6512768268585205,0.9533255100250244,0.3884548842906952,0.0019199301023036242,1.4595012544305064e-05,0.002308097667992115,0.0003541018522810191,0.0022700137924402952,-0.00036432177876122296,-0.006577621652345267,0.0024949985500682045,0.0024949985500682045,-6.577621652345267e-05,2.4949985500682045e-05,2.4949985500682045e-05,0.00838998332619667,0.003569631138816476,108 +illusion_1.5L,sr,109,43.6,0.7606561183929443,0.39975985884666443,0.7947630882263184,0.680398166179657,1.0281742811203003,0.42294707894325256,0.0019169896841049194,9.312580914411228e-06,0.0022956179454922676,0.0003428314230404794,0.0022714773658663034,-0.0003811168426182121,-0.0046507862803077255,0.0015846991928026612,0.0015846991928026612,-4.6507862803077255e-05,1.584699192802661e-05,1.584699192802661e-05,0.008452391251921654,0.004338605795055628,109 +illusion_1.5L,sr,110,44.0,0.6998737454414368,0.33085405826568604,0.8175210356712341,0.6939058899879456,1.1067538261413574,0.44582533836364746,0.0019176447531208396,3.224207603125251e-06,0.0022864541970193386,0.0003291831526439637,0.0022783861495554447,-0.00039121773443184793,-0.002821886508023952,0.0009111352119937806,0.0009111352119937806,-2.821886508023952e-05,9.111352119937806e-06,9.111352119937806e-06,0.008437939919531345,0.004861098248511553,110 +illusion_1.5L,sr,111,44.4,0.6444287896156311,0.2372218668460846,0.820431113243103,0.6387847661972046,1.18962824344635,0.45546260476112366,0.0019208755111321807,-3.510517217364395e-06,0.002280566841363907,0.0003149465483147651,0.0022889794781804085,-0.00039532443042844534,-0.0007122115489716432,0.00013361076661078976,0.00013361076661078976,-7.122115489716433e-06,1.3361076661078977e-06,1.3361076661078977e-06,0.008596007712185383,0.005102469120174646,111 +illusion_1.5L,sr,112,44.8,0.6052291393280029,0.1177956685423851,0.7980749607086182,0.4844784140586853,1.2740378379821777,0.446929395198822,0.0019203999545425177,-9.358101124234963e-06,0.002271698322147131,0.0003039456205442548,0.002295666141435504,-0.000394415226764977,0.0004358416144892262,8.775830222559032e-05,8.775830222559032e-05,4.358416144892262e-06,8.775830222559033e-07,8.775830222559033e-07,0.008660073392093182,0.005045230966061354,112 +illusion_1.5L,sr,113,45.2,0.6073166131973267,-0.006588579621165991,0.7469390630722046,0.25549590587615967,1.3491939306259155,0.40944331884384155,0.0019203992560505867,-1.4525383448926732e-05,0.0022649045567959547,0.0002971177746076137,0.00230183987878263,-0.00039024013676680624,0.002570127988417669,-0.000733218244581545,-0.000733218244581545,2.570127988417669e-05,-7.33218244581545e-06,-7.33218244581545e-06,0.008821661584079266,0.004690361209213734,113 +illusion_1.5L,sr,114,45.6,0.6584964990615845,-0.10542254149913788,0.6704975962638855,-0.03309054300189018,1.392885684967041,0.3255935311317444,0.0019186582649126649,-1.7740385374054313e-05,0.0022582083474844694,0.00029759565950371325,0.0023046876303851604,-0.0003837644762825221,0.0037455586635197456,-0.0009707020560365612,-0.0009707020560365612,3.745558663519746e-05,-9.707020560365612e-06,-9.707020560365612e-06,0.008882550522685051,0.0040574450977146626,114 +illusion_1.5L,sr,115,46.0,0.7280916571617126,-0.18428054451942444,0.5997425317764282,-0.3500601649284363,1.3777559995651245,0.17916686832904816,0.0019166648853570223,-1.9912955394829623e-05,0.002253627171739936,0.0003044498444069177,0.0023052687756717205,-0.0003774459764827043,0.005824730112986308,-0.002044101953202551,-0.002044101953202551,5.824730112986308e-05,-2.0441019532025512e-05,-2.0441019532025512e-05,0.008558989502489567,0.003183630993589759,115 +illusion_1.5L,sr,116,46.4,0.7940294742584229,-0.2600764036178589,0.5909285545349121,-0.5779460668563843,1.2765403985977173,-0.034675370901823044,0.0019187952857464552,-2.0113706341362558e-05,0.0022563738748431206,0.00031775477691553533,0.0023085223510861397,-0.0003703248512465507,0.006054233749155029,-0.0019621637852936177,-0.0019621637852936177,6.054233749155029e-05,-1.9621637852936177e-05,-1.9621637852936177e-05,0.008332237601280212,0.0021214294247329235,116 +illusion_1.5L,sr,117,46.8,0.8608899712562561,-0.3250975012779236,0.6579726338386536,-0.634710431098938,1.087398648262024,-0.26809704303741455,0.0019188247388228774,-1.880041600088589e-05,0.0022587485145777464,0.0003351922787260264,0.002306494163349271,-0.0003644767275545746,0.006102712426623996,-0.001973321799504664,-0.001973321799504664,6.102712426623996e-05,-1.973321799504664e-05,-1.973321799504664e-05,0.008196236565709114,0.000935496820602566,117 +illusion_1.5L,sr,118,47.2,0.9311735033988953,-0.3761163055896759,0.7286756038665771,-0.6437281966209412,0.8931893110275269,-0.40691593289375305,0.001916656387038529,-1.533420436317101e-05,0.002259943401440978,0.0003545221989043057,0.002298814244568348,-0.00035755446879193187,0.004792879211670736,-0.0012185862531160496,-0.0012185862531160496,4.792879211670736e-05,-1.2185862531160496e-05,-1.2185862531160496e-05,0.00811728835105896,-0.00030141021125018597,118 +illusion_1.5L,sr,119,47.6,1.0044963359832764,-0.4147156774997711,0.7740356922149658,-0.6709872484207153,0.7729562520980835,-0.4126705229282379,0.0019155553309246898,-1.0425647815281991e-05,0.002263577189296484,0.00037119031185284257,0.002289912197738886,-0.00034871906973421574,0.003843469292565939,-0.0009487608913996484,-0.0009487608913996484,3.843469292565939e-05,-9.487608913996484e-06,-9.487608913996484e-06,0.00829890463501215,-0.0015130521496757865,119 +illusion_1.5L,sr,120,48.0,1.0816705226898193,-0.44177794456481934,0.8012814521789551,-0.6937208771705627,0.7062675952911377,-0.3521992862224579,0.0019130493747070432,-4.449211246537743e-06,0.002266257768496871,0.0003836503019556403,0.002277710707858205,-0.00033753254683688283,0.0025281444375697473,-0.0005866756241263704,-0.0005866756241263704,2.5281444375697474e-05,-5.8667562412637045e-06,-5.8667562412637045e-06,0.008303137496113777,-0.002624597167596221,120 +illusion_1.5L,sr,121,48.4,1.1630967855453491,-0.4560331106185913,0.8099423050880432,-0.6645824313163757,0.6516987085342407,-0.2654488682746887,0.0019133263267576694,2.0045308701810427e-06,0.0022728515323251486,0.00039003652636893094,0.0022686473093926907,-0.00032462968374602497,0.001274629314688247,-0.0003847855695316132,-0.0003847855695316132,1.274629314688247e-05,-3.847855695316132e-06,-3.847855695316132e-06,0.008214408531785011,-0.0035674641840159893,121 +illusion_1.5L,sr,122,48.8,1.2472138404846191,-0.4536128640174866,0.7957732677459717,-0.5394638180732727,0.6078665256500244,-0.15378956496715546,0.001916766632348299,7.85578777140472e-06,0.002283454639837146,0.00039090734208002687,0.002264229813590646,-0.0003125417570117861,0.00029861376235753613,-0.00042609999227336253,-0.00042609999227336253,2.9861376235753614e-06,-4.260999922733625e-06,-4.260999922733625e-06,0.0083629060536623,-0.004283796530216932,122 +illusion_1.5L,sr,123,49.2,1.3262262344360352,-0.42590633034706116,0.7553156018257141,-0.3307582437992096,0.5973799228668213,-0.02963283471763134,0.0019165403209626675,1.2934253390994854e-05,0.0022896728478372097,0.000388731830753386,0.0022574462927877903,-0.0003041753370780498,-0.0013398574769534558,5.396530238508529e-05,5.396530238508529e-05,-1.3398574769534558e-05,5.396530238508529e-07,5.396530238508529e-07,0.00848082173615694,-0.00473026093095541,123 +illusion_1.5L,sr,124,49.6,1.381310224533081,-0.3580465018749237,0.6869430541992188,-0.0628577470779419,0.6368052959442139,0.07614266872406006,0.0019163073739036918,1.6449881513835862e-05,0.0022945657838135958,0.00038391645648516715,0.002252176869660616,-0.00030141332536004484,-0.002729908365477731,0.00044863492268449115,0.00044863492268449115,-2.729908365477731e-05,4.486349226844911e-06,4.486349226844911e-06,0.008707493543624878,-0.004880912136286497,124 +illusion_1.5L,sr,125,50.0,1.387009859085083,-0.23473365604877472,0.609333872795105,0.24912188947200775,0.7050826549530029,0.156986266374588,0.0019147811690345407,1.9086543034063652e-05,0.0022963129449635744,0.00037875561974942684,0.0022475733421742916,-0.00030469420016743243,-0.004753223582497024,0.0014505272787858174,0.0014505272787858174,-4.753223582497024e-05,1.4505272787858175e-05,1.4505272787858175e-05,0.008908077143132687,-0.004728920757770538,125 +illusion_1.5L,sr,126,50.4,1.319851040840149,-0.04833666980266571,0.572922945022583,0.5208339095115662,0.7713488936424255,0.23394285142421722,0.0019124774262309074,1.9820448869722895e-05,0.0022949951235204935,0.00037301681004464626,0.00224402267485857,-0.0003145847003906965,-0.0051099523232627855,0.001404790571308285,0.001404790571308285,-5.109952323262786e-05,1.4047905713082849e-05,1.4047905713082849e-05,0.00870131142437458,-0.004287036135792732,126 +illusion_1.5L,sr,127,50.8,1.1613467931747437,0.18196697533130646,0.6194881796836853,0.6293072700500488,0.8361696600914001,0.30398237705230713,0.0019140673102810979,1.920577051350847e-05,0.002295841695740819,0.0003673162718769163,0.0022472862619906664,-0.0003282104735262692,-0.005634071886513228,0.0016838131725552576,0.0016838131725552576,-5.634071886513228e-05,1.6838131725552575e-05,1.6838131725552575e-05,0.008512722328305244,-0.003586746985092759,127 +illusion_1.5L,sr,128,51.2,0.9561269879341125,0.3658057451248169,0.6973990797996521,0.6381611824035645,0.9045307040214539,0.3602122366428375,0.0019145840778946877,1.6576579582761042e-05,0.002292988821864128,0.0003608853439800441,0.0022511479910463095,-0.00034523740760050714,-0.004695606091689765,0.0011070876614221598,0.0011070876614221598,-4.695606091689765e-05,1.1070876614221598e-05,1.1070876614221598e-05,0.008403330110013485,-0.002676178002730012,128 +illusion_1.5L,sr,129,51.6,0.8014678359031677,0.4189631938934326,0.7510939240455627,0.6599286794662476,0.97649085521698,0.40360936522483826,0.0019127791747450829,1.2540399438876193e-05,0.0022847531363368034,0.00035368753015063703,0.0022535682655870914,-0.000361896789399907,-0.003991090684588326,0.0009131544937485623,0.0009131544937485623,-3.991090684588326e-05,9.131544937485623e-06,9.131544937485623e-06,0.008277405984699726,-0.001616867259144783,129 +illusion_1.5L,sr,130,52.0,0.7188239097595215,0.3759491741657257,0.7838257551193237,0.6883485317230225,1.0522266626358032,0.43537741899490356,0.0019121351651847363,6.949958788027288e-06,0.002276020124554634,0.000343803723808378,0.0022582286037504673,-0.0003757218364626169,-0.0025916445264496553,0.00039710795346389535,0.00039710795346389535,-2.5916445264496552e-05,3.971079534638954e-06,3.971079534638954e-06,0.008384994231164455,-0.0004796259745489806,130 +illusion_1.5L,sr,131,52.4,0.6629014611244202,0.2962808310985565,0.7987346053123474,0.6840828061103821,1.1330736875534058,0.455022931098938,0.001910139457322657,8.126229431582033e-07,0.002264622366055846,0.00033238937612622976,0.0022617564536631107,-0.00038483220851048827,-0.001900893948864668,0.0005391416377239604,0.0005391416377239604,-1.900893948864668e-05,5.391416377239604e-06,5.391416377239604e-06,0.008344382978975773,0.0006602332578040659,131 +illusion_1.5L,sr,132,52.8,0.6160010695457458,0.1947164684534073,0.7926050424575806,0.5960485935211182,1.2158353328704834,0.45920509099960327,0.0019100152421742678,-5.108862751512788e-06,0.002256033942103386,0.00032039309735409915,0.0022677129600197077,-0.00038855618913657963,-0.0009397896472953655,0.0005558088883759553,0.0005558088883759553,-9.397896472953656e-06,5.558088883759554e-06,5.558088883759554e-06,0.008156534284353256,0.0017279828898608685,132 +illusion_1.5L,sr,133,53.2,0.5923601984977722,0.07374590635299683,0.7627387046813965,0.4137365221977234,1.2978724241256714,0.4415311813354492,0.0019134236499667168,-1.0235206900688354e-05,0.00225281435996294,0.00031003906042315066,0.002277798717841506,-0.00038768022204749286,0.00011926160800021858,0.00048140994013186333,0.00048140994013186333,1.1926160800021859e-06,4.8140994013186335e-06,4.8140994013186335e-06,0.008226209320127964,0.002654529409483075,133 +illusion_1.5L,sr,134,53.6,0.6150103211402893,-0.03941246122121811,0.7057257294654846,0.16832567751407623,1.3635430335998535,0.3895719647407532,0.0019134699832648039,-1.4190061847330071e-05,0.0022476997692137957,0.00030448619509115815,0.002283622743561864,-0.0003845891624223441,0.001687756328871099,-3.0528670566146165e-05,-3.0528670566146165e-05,1.687756328871099e-05,-3.0528670566146165e-07,-3.0528670566146165e-07,0.008320114575326443,0.003381080459803343,134 +illusion_1.5L,sr,135,54.0,0.6777676343917847,-0.12552323937416077,0.6283751130104065,-0.1286221742630005,1.3893828392028809,0.28838545083999634,0.0019129893044009805,-1.7248787116841413e-05,0.00224361103028059,0.000304518238408491,0.002287226961925626,-0.00038028619019314647,0.00351324844745185,-0.000848133846144912,-0.000848133846144912,3.51324844745185e-05,-8.48133846144912e-06,-8.48133846144912e-06,0.00853065587580204,0.0038631048519164324,135 +illusion_1.5L,sr,136,54.4,0.7459896206855774,-0.20249135792255402,0.568737268447876,-0.43000033497810364,1.3535977602005005,0.12873922288417816,0.0019117086194455624,-1.865645572252106e-05,0.0022405844647437334,0.00031091400887817144,0.0022881468757987022,-0.0003752945049200207,0.004224526433040242,-0.000999349913356786,-0.000999349913356786,4.224526433040242e-05,-9.99349913356786e-06,-9.99349913356786e-06,0.008803099393844604,0.004073311109095812,136 +illusion_1.5L,sr,137,54.8,0.8095692992210388,-0.2770608961582184,0.5826063752174377,-0.6088142395019531,1.2345190048217773,-0.08526589721441269,0.0019091981230303645,-1.8821394405676983e-05,0.002237958600744605,0.0003221594961360097,0.002285163616761565,-0.00037060718750581145,0.004922732766844955,-0.0013236379156235795,-0.0013236379156235795,4.922732766844955e-05,-1.3236379156235795e-05,-1.3236379156235795e-05,0.008690337650477886,0.004003433044999838,137 +illusion_1.5L,sr,138,55.2,0.8757488131523132,-0.3392914831638336,0.6596612334251404,-0.6369063854217529,1.0391347408294678,-0.2991287410259247,0.0019101841608062387,-1.6868456441443413e-05,0.0022414231207221746,0.0003368074831087142,0.0022840159945189953,-0.000364445528248325,0.004255808420748075,-0.0008474341134995685,-0.0008474341134995685,4.255808420748075e-05,-8.474341134995685e-06,-8.474341134995685e-06,0.008544675074517727,0.003664699150249362,138 +illusion_1.5L,sr,139,55.6,0.9459784626960754,-0.38806864619255066,0.7251293063163757,-0.6496535539627075,0.8520561456680298,-0.410295307636261,0.0019112932495772839,-1.3585114174929913e-05,0.0022466490045189857,0.00035242049489170313,0.002280603861436248,-0.00035773764830082655,0.0040753554649416435,-0.0009388412531615709,-0.0009388412531615709,4.075355464941644e-05,-9.388412531615709e-06,-9.388412531615709e-06,0.008495600894093513,0.0030869469046592712,139 +illusion_1.5L,sr,140,56.0,1.0200504064559937,-0.4247981905937195,0.7654680013656616,-0.6786414980888367,0.7406574487686157,-0.3992116451263428,0.001909874496050179,-8.682032785145566e-06,0.0022500683553516865,0.0003675002953968942,0.0022722971625626087,-0.00034918199526146054,0.002964672736410757,-0.0005380965259628653,-0.0005380965259628653,2.9646727364107567e-05,-5.3809652596286536e-06,-5.3809652596286536e-06,0.008385095745325089,0.0023164439480751753,140 +illusion_1.5L,sr,141,56.4,1.0982362031936646,-0.44960007071495056,0.7875109314918518,-0.6932865381240845,0.6787928938865662,-0.3308485150337219,0.0019095126772299409,-3.102244818364852e-06,0.0022552383597940207,0.0003785842563956976,0.002263865666463971,-0.0003389117191545665,0.002377622774520402,-0.0006755580007866777,-0.0006755580007866777,2.377622774520402e-05,-6.7555800078667775e-06,-6.7555800078667775e-06,0.00847627129405737,0.001412564772181213,141 +illusion_1.5L,sr,142,56.8,1.180812954902649,-0.4606182873249054,0.7901959419250488,-0.6433483958244324,0.6291263699531555,-0.2373659461736679,0.001907895551994443,2.6650523068383336e-06,0.0022590949665755033,0.00038544333074241877,0.002253505866974592,-0.0003275008639320731,0.0014747754335299353,-0.0006707574137315587,-0.0006707574137315587,1.4747754335299353e-05,-6.707574137315587e-06,-6.707574137315587e-06,0.008447900414466858,0.0004435561131685972,142 +illusion_1.5L,sr,143,57.2,1.2642889022827148,-0.45267823338508606,0.7705723643302917,-0.49578994512557983,0.594528079032898,-0.12243761122226715,0.0019073328003287315,8.006130883586593e-06,0.002264270093291998,0.0003873191890306771,0.002245261799544096,-0.00031670951284468174,0.00039744469248387954,-0.0005668036757857688,-0.0005668036757857688,3.9744469248387955e-06,-5.668036757857688e-06,-5.668036757857688e-06,0.008206440135836601,-0.0005183155299164355,143 +illusion_1.5L,sr,144,57.6,1.33846116065979,-0.4159199893474579,0.7257426977157593,-0.2737330496311188,0.5981237292289734,-0.0035849851556122303,0.0019105253741145134,1.2268725186004303e-05,0.0022736345417797565,0.0003852644586004317,0.0022429050877690315,-0.0003085111966356635,-0.0008317156330464383,-0.0003115836070896761,-0.0003115836070896761,-8.317156330464384e-06,-3.115836070896761e-06,-3.115836070896761e-06,0.00820583663880825,-0.0014018918154761195,144 +illusion_1.5L,sr,145,58.0,1.3827085494995117,-0.33648326992988586,0.655179500579834,0.0012994232820346951,0.648872971534729,0.09159884601831436,0.0019108866108581424,1.589525163581129e-05,0.0022790110670030117,0.00038200762355700135,0.00223936652764678,-0.00030539880390278995,-0.002736580979938872,0.0005265999703115212,0.0005265999703115212,-2.736580979938872e-05,5.265999703115212e-06,5.265999703115212e-06,0.008266313932836056,-0.0021421664860099554,145 +illusion_1.5L,sr,146,58.4,1.374966025352478,-0.20332840085029602,0.5815701484680176,0.309947669506073,0.718231201171875,0.16890177130699158,0.001910165068693459,1.777992474671919e-05,0.002281431807205081,0.0003775121585931629,0.002236129716038704,-0.0003086781071033329,-0.003391809673464162,0.0005767166272758299,0.0005767166272758299,-3.391809673464162e-05,5.7671662727582995e-06,5.7671662727582995e-06,0.008429205976426601,-0.0026848914567381144,146 +illusion_1.5L,sr,147,58.8,1.2961065769195557,-0.014454830437898636,0.5587087273597717,0.5552527904510498,0.7823610901832581,0.24586325883865356,0.0019089920679107308,1.883356526377611e-05,0.0022812667302787304,0.00037333968793973327,0.0022343990858644247,-0.00031681708060204983,-0.004667969689655167,0.0012453248671326807,0.0012453248671326807,-4.6679696896551674e-05,1.2453248671326807e-05,1.2453248671326807e-05,0.008723028935492039,-0.0029904174152761698,147 +illusion_1.5L,sr,148,59.2,1.1314172744750977,0.20614734292030334,0.6176928281784058,0.6341316103935242,0.8463696241378784,0.31420478224754333,0.001906401477754116,1.7591823052498512e-05,0.0022769637871533632,0.00036803417606279254,0.0022325695026665926,-0.0003300361568108201,-0.003922559581560049,0.0006172299824448099,0.0006172299824448099,-3.9225595815600495e-05,6.1722998244480995e-06,6.1722998244480995e-06,0.008667167276144028,-0.0030365013517439365,148 +illusion_1.5L,sr,149,59.6,0.9287891387939453,0.37246304750442505,0.6954617500305176,0.6414043307304382,0.9155742526054382,0.36932507157325745,0.0019092804286628962,1.5289457223843783e-05,0.0022768089547753334,0.00036251050187274814,0.0022390433587133884,-0.00034465777571313083,-0.004227202524566986,0.0009633638734095999,0.0009633638734095999,-4.2272025245669864e-05,9.633638734095999e-06,9.633638734095999e-06,0.008530458435416222,-0.002819881308823824,149 +illusion_1.5L,sr,150,60.0,0.7775702476501465,0.41119858622550964,0.7443826198577881,0.6649703979492188,0.9864022731781006,0.4109218120574951,0.0019085262902081013,1.0898828804783989e-05,0.002270303899422288,0.0003538102318998426,0.0022425989154726267,-0.00035921618109568954,-0.0029264249757510394,0.00032390497402451715,0.00032390497402451715,-2.9264249757510395e-05,3.2390497402451714e-06,3.2390497402451714e-06,0.008516530506312847,-0.00235650478862226,150 +illusion_1.5L,sr,151,60.4,0.6977766156196594,0.36158645153045654,0.7737743854522705,0.6904212236404419,1.0627415180206299,0.4412776827812195,0.0019075163872912526,5.8354785323899705e-06,0.0022620896343141794,0.00034486580989323556,0.0022469102405011654,-0.00037181295920163393,-0.0028024672335313673,0.0007228957450934638,0.0007228957450934638,-2.8024672335313672e-05,7.228957450934638e-06,7.228957450934638e-06,0.008421123959124088,-0.0016804002225399017,151 +illusion_1.5L,sr,152,60.8,0.6452584862709045,0.2780059278011322,0.7847478985786438,0.6749022603034973,1.1435390710830688,0.4588632881641388,0.0019072246504947543,1.2339035038166912e-07,0.002253870014101267,0.000333915842929855,0.002252318197861314,-0.0003809644258581102,-0.0018160692620801406,0.00060377236183045,0.00060377236183045,-1.8160692620801406e-05,6.0377236183045e-06,6.0377236183045e-06,0.008498861454427242,-0.0008412639726884663,152 +illusion_1.5L,sr,153,61.2,0.6044114232063293,0.1724957674741745,0.7758232355117798,0.5710210800170898,1.2287002801895142,0.46064141392707825,0.0019082518992945552,-5.199412044021301e-06,0.0022472613491117954,0.00032370322151109576,0.0022592167370021343,-0.0003858825657516718,-0.0011625385431982738,0.0007847802918874426,0.0007847802918874426,-1.1625385431982739e-05,7.847802918874426e-06,7.847802918874426e-06,0.008499415591359138,9.906048217089847e-05,153 +illusion_1.5L,sr,154,61.6,0.5894907116889954,0.053206492215394974,0.7417758703231812,0.3769463300704956,1.3069522380828857,0.43730008602142334,0.0019050005357712507,-9.782727829588111e-06,0.0022366372868418694,0.0003140619373880327,0.0022608889266848564,-0.00038571757613681257,0.0001847325296769134,0.0004464312540114826,0.0004464312540114826,1.847325296769134e-06,4.464312540114826e-06,4.464312540114826e-06,0.008235407061874866,0.0010709670605137944,154 +illusion_1.5L,sr,155,62.0,0.6221678853034973,-0.05222552269697189,0.6823160648345947,0.1259520947933197,1.3665565252304077,0.37823227047920227,0.0019079410703852773,-1.3922414836997632e-05,0.0022350545041263103,0.00030790234450250864,0.0022693523205816746,-0.0003829865891020745,0.0019527031568930748,-0.0002623749996142257,-0.0002623749996142257,1.952703156893075e-05,-2.623749996142257e-06,-2.623749996142257e-06,0.008183185011148453,0.0020020240917801857,155 +illusion_1.5L,sr,156,62.4,0.688107967376709,-0.1330922544002533,0.6053505539894104,-0.17130349576473236,1.3837785720825195,0.27051207423210144,0.0019086402608081698,-1.6461415725643747e-05,0.002232902916148305,0.00030778138898313046,0.0022743986919522285,-0.0003789177571889013,0.0025815436423066683,-0.00023778709939209494,-0.00023778709939209494,2.5815436423066684e-05,-2.3778709939209495e-06,-2.3778709939209495e-06,0.008230230771005154,0.002822116483002901,156 +illusion_1.5L,sr,157,62.8,0.7541623711585999,-0.2098681777715683,0.5517545938491821,-0.46012797951698303,1.3406472206115723,0.10920217633247375,0.0019077068427577615,-1.821278056013398e-05,0.002230609068647027,0.0003128266835119575,0.0022755388636142015,-0.0003752103366423398,0.003913706161371634,-0.0008727080708290438,-0.0008727080708290438,3.913706161371634e-05,-8.727080708290438e-06,-8.727080708290438e-06,0.008360556326806545,0.0034684324637055397,157 +illusion_1.5L,sr,158,63.2,0.8176661729812622,-0.284273236989975,0.5761393904685974,-0.6178823709487915,1.2194427251815796,-0.09969812631607056,0.0019090253626927733,-1.7780759662855417e-05,0.002232748083770275,0.0003238479548599571,0.002277280203998089,-0.00037084956420585513,0.0034343231189858867,-0.0003503775007957198,-0.0003503775007957198,3.434323118985887e-05,-3.503775007957198e-06,-3.503775007957198e-06,0.008675433695316315,0.003889942541718483,158 +illusion_1.5L,sr,159,63.6,0.8822106719017029,-0.34510722756385803,0.6555498242378235,-0.6367197036743164,1.022937297821045,-0.3023918867111206,0.001904132543131709,-1.6201545804506168e-05,0.002229138510301709,0.00033663344220258296,0.002268967218697071,-0.0003656928602140397,0.0039630299404501135,-0.0007611080183633802,-0.0007611080183633802,3.9630299404501136e-05,-7.611080183633802e-06,-7.611080183633802e-06,0.008685079403221607,0.004051059018820524,159 +illusion_1.5L,sr,160,64.0,0.9520339369773865,-0.39319339394569397,0.7186739444732666,-0.6515994071960449,0.8362546563148499,-0.40502360463142395,0.0019042352214455605,-1.2579245776578318e-05,0.0022329664789140224,0.00035126585862599313,0.002264548558741808,-0.00035846393438987434,0.0029276695636488922,-0.00022419087547904257,-0.00022419087547904257,2.9276695636488922e-05,-2.2419087547904256e-06,-2.2419087547904256e-06,0.00856055412441492,0.003934219013899565,160 +illusion_1.5L,sr,161,64.4,1.0259699821472168,-0.42925113439559937,0.7565847039222717,-0.6803937554359436,0.724356472492218,-0.39015787839889526,0.0019062762148678303,-8.081004125415348e-06,0.0022402850445359945,0.0003642041119746864,0.0022606924176216125,-0.00035010091960430145,0.002874218428350988,-0.0005868852733796129,-0.0005868852733796129,2.874218428350988e-05,-5.868852733796129e-06,-5.868852733796129e-06,0.008574451319873333,0.0035412150900810957,161 +illusion_1.5L,sr,162,64.8,1.10451078414917,-0.45323100686073303,0.7760993242263794,-0.6901977062225342,0.663260817527771,-0.31902363896369934,0.0019056271994486451,-2.6365812573203584e-06,0.0022452508565038443,0.0003752628981601447,0.0022528457920998335,-0.00034020812017843127,0.0019549224605332517,-0.00045153481511628346,-0.00045153481511628346,1.9549224605332517e-05,-4.515348151162835e-06,-4.515348151162835e-06,0.008493040688335896,0.0028931754641234875,162 +illusion_1.5L,sr,163,65.2,1.187272071838379,-0.4628259539604187,0.7761345505714417,-0.6310489177703857,0.6170811653137207,-0.22313770651817322,0.0019053485011681914,2.762954181889654e-06,0.0022506811656057835,0.00038199088885448873,0.0022449514362961054,-0.0003297879302408546,0.0014932677973626745,-0.0007348022966396084,-0.0007348022966396084,1.4932677973626745e-05,-7.348022966396084e-06,-7.348022966396084e-06,0.008542587049305439,0.0020292061381042004,163 +illusion_1.5L,sr,164,65.6,1.27009916305542,-0.4524577856063843,0.7545966506004333,-0.4755600094795227,0.588539719581604,-0.10846138000488281,0.0019042689818888903,7.553316663688747e-06,0.002254955470561981,0.0003846959152724594,0.0022365159820765257,-0.0003200473147444427,0.00047112499244804026,-0.000628199266511695,-0.000628199266511695,4.7112499244804025e-06,-6.28199266511695e-06,-6.28199266511695e-06,0.008553043939173222,0.0010037844767794013,164 +illusion_1.5L,sr,165,66.0,1.341181755065918,-0.41204020380973816,0.7085968852043152,-0.2504179775714874,0.599358320236206,0.0055277361534535885,0.0019032062264159322,1.2065906048519537e-05,0.0022587813436985016,0.0003840815043076873,0.0022293918300420046,-0.0003124302893411368,-0.0012470562523425079,2.3584194565738625e-05,2.3584194565738625e-05,-1.2470562523425079e-05,2.3584194565738625e-07,2.3584194565738625e-07,0.008254999294877052,-0.00011690740939229727,165 +illusion_1.5L,sr,166,66.4,1.3804725408554077,-0.32846930623054504,0.6375043988227844,0.025637280195951462,0.6544950604438782,0.09559104591608047,0.0019057595636695623,1.519402940175496e-05,0.0022662621922791004,0.00038044172106310725,0.002228280296549201,-0.0003089480160269886,-0.001931529279054687,-3.9144841643551365e-06,-3.9144841643551365e-06,-1.931529279054687e-05,-3.9144841643551364e-08,-3.9144841643551364e-08,0.008126122877001762,-0.0012594565050676465,166 +illusion_1.5L,sr,167,66.8,1.3679546117782593,-0.19400398433208466,0.5656046867370605,0.32908689975738525,0.7230843305587769,0.17156866192817688,0.0019067074172198772,1.7623564417590387e-05,0.002270676428452134,0.00037689495366066694,0.0022274977527558804,-0.0003104844072367996,-0.0033209819587683366,0.0006053932082863388,0.0006053932082863388,-3.3209819587683365e-05,6.053932082863388e-06,6.053932082863388e-06,0.008139083161950111,-0.0023481876123696566,167 +illusion_1.5L,sr,168,67.2,1.2878800630569458,-0.008954613469541073,0.546724259853363,0.5637649893760681,0.7856998443603516,0.24858888983726501,0.001905636745505035,1.798927223717328e-05,0.0022707469761371613,0.0003726523427758366,0.002225999953225255,-0.00031820841832086444,-0.0030514546531422715,0.0001524067825507333,0.0001524067825507333,-3.0514546531422714e-05,1.5240678255073331e-06,1.5240678255073331e-06,0.008225912228226662,-0.0033102850429713726,168 +illusion_1.5L,sr,169,67.6,1.1255000829696655,0.20460185408592224,0.6094904541969299,0.6348545551300049,0.8490807414054871,0.3167763948440552,0.0019046429079025984,1.7245049093617126e-05,0.0022685478907078505,0.0003685227711685002,0.0022263890132308006,-0.0003293252666480839,-0.0037288283219122226,0.0005772765516985599,0.0005772765516985599,-3.7288283219122226e-05,5.7727655169856e-06,5.7727655169856e-06,0.008550929836928844,-0.004080713726580143,169 +illusion_1.5L,sr,170,68.0,0.9223287105560303,0.36648616194725037,0.6867517828941345,0.6409920454025269,0.9165635704994202,0.3713504672050476,0.0019023725762963295,1.4433408978220541e-05,0.002262386493384838,0.00036277223262004554,0.002226551529020071,-0.00034346734173595905,-0.002901512931260876,9.116863456619384e-05,9.116863456619384e-05,-2.901512931260876e-05,9.116863456619385e-07,9.116863456619385e-07,0.008641579188406467,-0.004606609698385,170 +illusion_1.5L,sr,171,68.4,0.768717348575592,0.406575471162796,0.7355471849441528,0.6658397912979126,0.9879819750785828,0.41341477632522583,0.001902109826914966,1.0524947356316261e-05,0.002256755717098713,0.0003555959847290069,0.002230516169220209,-0.00035679637221619487,-0.0029304803671495287,0.00042107976223576543,0.00042107976223576543,-2.930480367149529e-05,4.210797622357654e-06,4.210797622357654e-06,0.008560840971767902,-0.004850836470723152,171 +illusion_1.5L,sr,172,68.8,0.686348021030426,0.3571664094924927,0.7636358737945557,0.6901394724845886,1.0641069412231445,0.4438077509403229,0.0019044014625251293,5.5102227634051815e-06,0.0022527738474309444,0.00034611887531355023,0.0022383781615644693,-0.0003686077834572643,-0.0022359569258439058,0.0003750637972699915,0.0003750637972699915,-2.2359569258439056e-05,3.750637972699915e-06,3.750637972699915e-06,0.008636081591248512,-0.004794478416442871,172 +illusion_1.5L,sr,173,69.2,0.6350249648094177,0.2722599506378174,0.7732835412025452,0.6715799570083618,1.1450629234313965,0.4611859917640686,0.0019040866754949093,8.877923107775132e-08,0.00224535190500319,0.0003361351846251637,0.0022438724990934134,-0.0003774739452637732,-0.0017717953176060142,0.0006092301595306774,0.0006092301595306774,-1.7717953176060142e-05,6.092301595306774e-06,6.092301595306774e-06,0.008616222999989986,-0.004438104573637247,173 +illusion_1.5L,sr,174,69.6,0.5974844098091125,0.16652821004390717,0.7635718584060669,0.5646265149116516,1.2301703691482544,0.4623134136199951,0.001906197052448988,-4.798447662324179e-06,0.0022406403440982103,0.00032654672395437956,0.002252075122669339,-0.000382794882170856,-0.0011678604405392665,0.0007922514567153303,0.0007922514567153303,-1.1678604405392665e-05,7.922514567153303e-06,7.922514567153303e-06,0.008672966621816158,-0.0038017285987734795,174 +illusion_1.5L,sr,175,70.0,0.5865404009819031,0.04935348406434059,0.729819118976593,0.3695010244846344,1.3075082302093506,0.43767791986465454,0.0019030575640499592,-9.66418519965373e-06,0.002230545738711953,0.0003172077122144401,0.002253638580441475,-0.00038383976789191365,0.0005370469917947221,0.00016026440262450776,0.00016026440262450776,5.370469917947221e-06,1.6026440262450777e-06,1.6026440262450777e-06,0.008711673319339752,-0.002923475345596671,175 +illusion_1.5L,sr,176,70.4,0.6221556663513184,-0.05296009033918381,0.6710141897201538,0.11903934180736542,1.3651247024536133,0.3770349621772766,0.0019018570892512798,-1.3227841918705963e-05,0.0022240399848669767,0.0003118844178970903,0.002256974810734391,-0.00038192662759684026,0.001139100808275867,0.0002833042096333088,0.0002833042096333088,1.139100808275867e-05,2.833042096333088e-06,2.833042096333088e-06,0.008389359340071678,-0.001857058727182448,176 +illusion_1.5L,sr,177,70.8,0.6885989308357239,-0.13195031881332397,0.5947094559669495,-0.17502756416797638,1.3801369667053223,0.26905158162117004,0.0019039340550079942,-1.636878187127877e-05,0.00222336919978261,0.0003099139139521867,0.0022631578613072634,-0.000378693628590554,0.0027706622112655746,-0.0004442513577467034,-0.0004442513577467034,2.7706622112655748e-05,-4.442513577467034e-06,-4.442513577467034e-06,0.008158615790307522,-0.0006682443199679255,177 +illusion_1.5L,sr,178,71.2,0.753936767578125,-0.20869046449661255,0.5409157872200012,-0.4609375298023224,1.337051510810852,0.11043751984834671,0.0019050678238272667,-1.7492053302703425e-05,0.002223628107458353,0.0003141909546684474,0.0022670028265565634,-0.0003743779961951077,0.002545837031713176,5.6476438358994685e-05,5.6476438358994685e-05,2.545837031713176e-05,5.647643835899469e-07,5.647643835899469e-07,0.00808980967849493,0.0005694532301276922,178 +illusion_1.5L,sr,179,71.6,0.8156043887138367,-0.2829735279083252,0.5640924572944641,-0.6174163222312927,1.2190496921539307,-0.09177988022565842,0.0019039520993828773,-1.7665101040620357e-05,0.002223069779574871,0.0003228251589462161,0.00226595439016819,-0.0003708633885253221,0.0035020052410032966,-0.0004763278348528383,-0.0004763278348528383,3.5020052410032965e-05,-4.763278348528383e-06,-4.763278348528383e-06,0.00807673204690218,0.0017795475432649255,179 +illusion_1.5L,sr,180,72.0,0.8806549310684204,-0.3446735739707947,0.6452997326850891,-0.6371283531188965,1.0284518003463745,-0.29150596261024475,0.0019030540715903044,-1.5666695617255755e-05,0.0022242895793169737,0.000335497607011348,0.0022629450540989637,-0.0003658045025076717,0.0026971323231730487,9.550772188127861e-05,9.550772188127861e-05,2.6971323231730488e-05,9.55077218812786e-07,9.55077218812786e-07,0.008341887965798378,0.002887511160224676,180 +illusion_1.5L,sr,181,72.4,0.9500349164009094,-0.3933655023574829,0.7095640301704407,-0.6513330340385437,0.8382284045219421,-0.399046391248703,0.0019010778050869703,-1.2521591088443529e-05,0.002225453034043312,0.0003490009985398501,0.0022562264930456877,-0.00036014735815115273,0.0029603471607662843,-0.000305606281561812,-0.000305606281561812,2.9603471607662845e-05,-3.05606281561812e-06,-3.05606281561812e-06,0.008465869352221489,0.003825533203780651,181 +illusion_1.5L,sr,182,72.8,1.0234806537628174,-0.4300304651260376,0.7474468946456909,-0.6798085570335388,0.7198058366775513,-0.3892473578453064,0.0019005408976227045,-7.943931450427044e-06,0.002229445381090045,0.0003619487688411027,0.0022496869787573814,-0.00035194342490285635,0.0022547310182812162,-0.00016780290604343634,-0.00016780290604343634,2.2547310182812164e-05,-1.6780290604343634e-06,-1.6780290604343634e-06,0.008411048911511898,0.0045367949642241,182 +illusion_1.5L,sr,183,73.2,1.1017258167266846,-0.4545525014400482,0.7665389776229858,-0.6897297501564026,0.6565984487533569,-0.31898248195648193,0.0019028597744181752,-2.805688154694508e-06,0.002237543696537614,0.00037196336779743433,0.0022455595899373293,-0.0003422177687752992,0.002086504962322589,-0.0005570144080617838,-0.0005570144080617838,2.0865049623225892e-05,-5.570144080617838e-06,-5.570144080617838e-06,0.008551978506147861,0.0049789901822805405,183 +illusion_1.5L,sr,184,73.6,1.1858093738555908,-0.46517646312713623,0.7674974799156189,-0.633094072341919,0.6126255393028259,-0.2237180918455124,0.0019052656134590507,2.18114951167081e-06,0.002246277406811714,0.0003794613585341722,0.0022415085695683956,-0.00033263006480410695,0.0015286094840396558,-0.0007404274845722435,-0.0007404274845722435,1.528609484039656e-05,-7.404274845722436e-06,-7.404274845722436e-06,0.008640555664896965,0.005126874428242445,184 +illusion_1.5L,sr,185,74.0,1.2671607732772827,-0.45450419187545776,0.7458545565605164,-0.47911956906318665,0.5850368738174438,-0.10993318259716034,0.0019025882938876748,7.192120392573997e-06,0.0022486720699816942,0.0003825468593277037,0.0022316807880997658,-0.0003225957916583866,0.0001475782278012325,-0.0003418490980729122,-0.0003418490980729122,1.4757822780123252e-06,-3.418490980729122e-06,-3.418490980729122e-06,0.00877284724265337,0.004973690956830978,185 +illusion_1.5L,sr,186,74.4,1.338286280632019,-0.41439923644065857,0.70160973072052,-0.2558687925338745,0.5967378616333008,0.002655891701579094,0.0019021007465198636,1.1284672837064136e-05,0.002253185026347637,0.0003824625164270401,0.002225366188213229,-0.00031547422986477613,-0.0006700931973339114,-0.00033282498216166863,-0.00033282498216166863,-6.700931973339114e-06,-3.3282498216166865e-06,-3.3282498216166865e-06,0.008914750069379807,0.004531398881226778,186 +illusion_1.5L,sr,187,74.8,1.377622365951538,-0.33215057849884033,0.6322391629219055,0.016102563589811325,0.6517446637153625,0.09154193103313446,0.0019008226227015257,1.4944655049475841e-05,0.0022558430209755898,0.0003806126187555492,0.002219662768766284,-0.00031148424022831023,-0.002109878306316787,0.00020470902689785633,0.00020470902689785633,-2.109878306316787e-05,2.0470902689785633e-06,2.0470902689785633e-06,0.008651209995150566,0.0038297150749713182,187 +illusion_1.5L,sr,188,75.2,1.3665868043899536,-0.2007562518119812,0.5595479011535645,0.3170509934425354,0.7201560139656067,0.16695886850357056,0.001902325893752277,1.688124393695034e-05,0.0022607380524277687,0.0003766037989407778,0.002219134010374546,-0.00031232231413014233,-0.0021903686906347315,-0.00014357080030670544,-0.00014357080030670544,-2.1903686906347317e-05,-1.4357080030670545e-06,-1.4357080030670545e-06,0.008369920775294304,0.002914042677730322,188 +illusion_1.5L,sr,189,75.6,1.2918460369110107,-0.021939795464277267,0.5364248752593994,0.556210994720459,0.7821089029312134,0.24410665035247803,0.0019035923760384321,1.7823320376919582e-05,0.002263731090351939,0.0003729159361682832,0.0022204581182450056,-0.00031773452064953744,-0.00314585367108465,0.00029908614081049223,0.00029908614081049223,-3.1458536710846504e-05,2.990861408104922e-06,2.990861408104922e-06,0.00823057908564806,0.0018424494192004204,189 +illusion_1.5L,sr,190,76.0,1.1378098726272583,0.1866796314716339,0.5962603688240051,0.6348927021026611,0.8448033332824707,0.3132442533969879,0.00190252426546067,1.679289562162012e-05,0.0022618763614445925,0.0003685856645461172,0.002220713999122381,-0.0003283368132542819,-0.0027251810403076254,-9.369057180092996e-05,-9.369057180092996e-05,-2.7251810403076254e-05,-9.369057180092996e-07,-9.369057180092996e-07,0.008093336597084999,0.0006818966940045357,190 +illusion_1.5L,sr,191,76.4,0.9357024431228638,0.3536713123321533,0.6758660078048706,0.64044588804245,0.9118071794509888,0.36889374256134033,0.0019017374143004417,1.4455929886025842e-05,0.002258005551993847,0.0003637088229879737,0.0022227612789720297,-0.00034096837043762207,-0.0029248611007529346,0.00015705864186138854,0.00015705864186138854,-2.9248611007529347e-05,1.5705864186138856e-06,1.5705864186138856e-06,0.008223836310207844,-0.0004960204241797328,191 +illusion_1.5L,sr,192,76.8,0.7735483050346375,0.404434472322464,0.7265426516532898,0.664132297039032,0.982839822769165,0.4120449125766754,0.0019000708125531673,1.0548840691626538e-05,0.0022509824484586716,0.00035702597233466804,0.0022247585002332926,-0.0003545056388247758,-0.002344506476373392,1.617282463388381e-05,1.617282463388381e-05,-2.344506476373392e-05,1.6172824633883808e-07,1.6172824633883808e-07,0.008288096636533737,-0.0016195487696677446,192 +illusion_1.5L,sr,193,77.2,0.6844077110290527,0.3601067066192627,0.7552964091300964,0.688952624797821,1.058479905128479,0.44346192479133606,0.001899245078675449,5.693500952475006e-06,0.0022436664439737797,0.00034851639065891504,0.0022287063766270876,-0.0003661804657895118,-0.0021723821133571262,0.000328768595835853,0.000328768595835853,-2.1723821133571262e-05,3.28768595835853e-06,3.28768595835853e-06,0.008168513886630535,-0.0026211808435618877,193 +illusion_1.5L,sr,194,77.6,0.6321024894714355,0.276530921459198,0.7654261589050293,0.6740480661392212,1.138860821723938,0.46188420057296753,0.0019014988793060184,7.00882139881287e-07,0.0022393595427274704,0.00033842737320810556,0.0022368321660906076,-0.0003746244765352458,-0.0019088696200034625,0.000683158734744985,0.000683158734744985,-1.9088696200034625e-05,6.831587347449851e-06,6.831587347449851e-06,0.008290053345263004,-0.003441715380176902,194 +illusion_1.5L,sr,195,78.0,0.5944231152534485,0.17185987532138824,0.755879819393158,0.572544276714325,1.2223751544952393,0.46360066533088684,0.0019018928287550807,-4.362500021670712e-06,0.0022331925574690104,0.00032836629543453455,0.002243113238364458,-0.0003801064158324152,-0.000861292306379023,0.0005142207929759468,0.0005142207929759468,-8.61292306379023e-06,5.1422079297594675e-06,5.1422079297594675e-06,0.008446116000413895,-0.004033731762319803,195 +illusion_1.5L,sr,196,78.4,0.5844016671180725,0.05629068985581398,0.7261364459991455,0.383690744638443,1.3033000230789185,0.44169530272483826,0.0019040124025195837,-8.803115633782e-06,0.0022295040544122458,0.0003203307860530913,0.002251037396490574,-0.00038245535688474774,5.422914020188942e-05,0.000443776124995709,0.000443776124995709,5.422914020188942e-07,4.43776124995709e-06,4.43776124995709e-06,0.00865935068577528,-0.004364273976534605,196 +illusion_1.5L,sr,197,78.8,0.6176732778549194,-0.046134915202856064,0.6692953705787659,0.13720208406448364,1.360815167427063,0.382966011762619,0.0019013247219845653,-1.293872446694877e-05,0.0022214250639081,0.00031383868190459907,0.0022526076063513756,-0.00038141143159009516,0.0014924783536812772,-5.4324904391731335e-05,-5.4324904391731335e-05,1.4924783536812772e-05,-5.432490439173134e-07,-5.432490439173134e-07,0.00895126722753048,-0.004416606388986111,197 +illusion_1.5L,sr,198,79.2,0.6834395527839661,-0.12504622340202332,0.5939434170722961,-0.15210238099098206,1.3786944150924683,0.27892613410949707,0.0018999783787876368,-1.560796044941526e-05,0.0022163980174809694,0.00031228380976244807,0.002254691906273365,-0.00037866353522986174,0.0017671789618360911,0.0002130226141008815,0.0002130226141008815,1.767178961836091e-05,2.130226141008815e-06,2.130226141008815e-06,0.008846367709338665,-0.004190945997834206,198 +illusion_1.5L,sr,199,79.6,0.7486889362335205,-0.20130546391010284,0.5358843803405762,-0.4403770864009857,1.340857982635498,0.12637165188789368,0.0019008953822776675,-1.7380363715346903e-05,0.0022160590160638094,0.0003145652008242905,0.0022580933291465044,-0.00037517931195907295,0.002751368245058068,-0.00016856407750919303,-0.00016856407750919303,2.7513682450580682e-05,-1.6856407750919304e-06,-1.6856407750919304e-06,0.0086283003911376,-0.0037041637115180492,199 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_long.csv new file mode 100644 index 0000000..c4fe9fd --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1.5L,target,0,0.0,velocity,upper_ux,1.482783555984497 +illusion_1.5L,target,0,0.0,velocity,upper_uy,-0.5179747343063354 +illusion_1.5L,target,0,0.0,velocity,center_ux,0.8716368079185486 +illusion_1.5L,target,0,0.0,velocity,center_uy,-0.19509167969226837 +illusion_1.5L,target,0,0.0,velocity,lower_ux,0.4743543267250061 +illusion_1.5L,target,0,0.0,velocity,lower_uy,0.06369379907846451 +illusion_1.5L,target,1,0.4,velocity,upper_ux,1.4215975999832153 +illusion_1.5L,target,1,0.4,velocity,upper_uy,-0.24760068953037262 +illusion_1.5L,target,1,0.4,velocity,center_ux,0.8103084564208984 +illusion_1.5L,target,1,0.4,velocity,center_uy,0.21847273409366608 +illusion_1.5L,target,1,0.4,velocity,lower_ux,0.5025169849395752 +illusion_1.5L,target,1,0.4,velocity,lower_uy,0.2794077694416046 +illusion_1.5L,target,2,0.8,velocity,upper_ux,1.2479419708251953 +illusion_1.5L,target,2,0.8,velocity,upper_uy,0.16738849878311157 +illusion_1.5L,target,2,0.8,velocity,center_ux,0.7924339771270752 +illusion_1.5L,target,2,0.8,velocity,center_uy,0.587090015411377 +illusion_1.5L,target,2,0.8,velocity,lower_ux,0.5904653668403625 +illusion_1.5L,target,2,0.8,velocity,lower_uy,0.40139397978782654 +illusion_1.5L,target,3,1.2,velocity,upper_ux,1.0920031070709229 +illusion_1.5L,target,3,1.2,velocity,upper_uy,0.47220098972320557 +illusion_1.5L,target,3,1.2,velocity,center_ux,0.8227584958076477 +illusion_1.5L,target,3,1.2,velocity,center_uy,0.7495884895324707 +illusion_1.5L,target,3,1.2,velocity,lower_ux,0.7004517912864685 +illusion_1.5L,target,3,1.2,velocity,lower_uy,0.44512617588043213 +illusion_1.5L,target,4,1.6,velocity,upper_ux,1.0098772048950195 +illusion_1.5L,target,4,1.6,velocity,upper_uy,0.5530207753181458 +illusion_1.5L,target,4,1.6,velocity,center_ux,0.8705293536186218 +illusion_1.5L,target,4,1.6,velocity,center_uy,0.7383401393890381 +illusion_1.5L,target,4,1.6,velocity,lower_ux,0.7961926460266113 +illusion_1.5L,target,4,1.6,velocity,lower_uy,0.47442248463630676 +illusion_1.5L,target,5,2.0,velocity,upper_ux,0.9631707072257996 +illusion_1.5L,target,5,2.0,velocity,upper_uy,0.5424894690513611 +illusion_1.5L,target,5,2.0,velocity,center_ux,0.9081502556800842 +illusion_1.5L,target,5,2.0,velocity,center_uy,0.7157570123672485 +illusion_1.5L,target,5,2.0,velocity,lower_ux,0.8770607113838196 +illusion_1.5L,target,5,2.0,velocity,lower_uy,0.49990031123161316 +illusion_1.5L,target,6,2.4,velocity,upper_ux,0.9175106287002563 +illusion_1.5L,target,6,2.4,velocity,upper_uy,0.5372785329818726 +illusion_1.5L,target,6,2.4,velocity,center_ux,0.9366885423660278 +illusion_1.5L,target,6,2.4,velocity,center_uy,0.7157886028289795 +illusion_1.5L,target,6,2.4,velocity,lower_ux,0.9499441385269165 +illusion_1.5L,target,6,2.4,velocity,lower_uy,0.5216187834739685 +illusion_1.5L,target,7,2.8,velocity,upper_ux,0.8671510815620422 +illusion_1.5L,target,7,2.8,velocity,upper_uy,0.5428350567817688 +illusion_1.5L,target,7,2.8,velocity,center_ux,0.9617502689361572 +illusion_1.5L,target,7,2.8,velocity,center_uy,0.7346794605255127 +illusion_1.5L,target,7,2.8,velocity,lower_ux,1.020037055015564 +illusion_1.5L,target,7,2.8,velocity,lower_uy,0.5415472984313965 +illusion_1.5L,target,8,3.2,velocity,upper_ux,0.8094770312309265 +illusion_1.5L,target,8,3.2,velocity,upper_uy,0.5493053793907166 +illusion_1.5L,target,8,3.2,velocity,center_ux,0.9870826601982117 +illusion_1.5L,target,8,3.2,velocity,center_uy,0.7710368633270264 +illusion_1.5L,target,8,3.2,velocity,lower_ux,1.0918371677398682 +illusion_1.5L,target,8,3.2,velocity,lower_uy,0.5607690215110779 +illusion_1.5L,target,9,3.6,velocity,upper_ux,0.7376057505607605 +illusion_1.5L,target,9,3.6,velocity,upper_uy,0.5396278500556946 +illusion_1.5L,target,9,3.6,velocity,center_ux,1.0107462406158447 +illusion_1.5L,target,9,3.6,velocity,center_uy,0.8185744285583496 +illusion_1.5L,target,9,3.6,velocity,lower_ux,1.1669639348983765 +illusion_1.5L,target,9,3.6,velocity,lower_uy,0.5794548392295837 +illusion_1.5L,target,10,4.0,velocity,upper_ux,0.6504388451576233 +illusion_1.5L,target,10,4.0,velocity,upper_uy,0.4842383861541748 +illusion_1.5L,target,10,4.0,velocity,center_ux,1.0216500759124756 +illusion_1.5L,target,10,4.0,velocity,center_uy,0.8412036895751953 +illusion_1.5L,target,10,4.0,velocity,lower_ux,1.247309684753418 +illusion_1.5L,target,10,4.0,velocity,lower_uy,0.5966224670410156 +illusion_1.5L,target,11,4.4,velocity,upper_ux,0.5616580247879028 +illusion_1.5L,target,11,4.4,velocity,upper_uy,0.3538191616535187 +illusion_1.5L,target,11,4.4,velocity,center_ux,0.998767077922821 +illusion_1.5L,target,11,4.4,velocity,center_uy,0.7533485889434814 +illusion_1.5L,target,11,4.4,velocity,lower_ux,1.3371939659118652 +illusion_1.5L,target,11,4.4,velocity,lower_uy,0.6089557409286499 +illusion_1.5L,target,12,4.8,velocity,upper_ux,0.4955946207046509 +illusion_1.5L,target,12,4.8,velocity,upper_uy,0.1483040302991867 +illusion_1.5L,target,12,4.8,velocity,center_ux,0.9372222423553467 +illusion_1.5L,target,12,4.8,velocity,center_uy,0.5074542164802551 +illusion_1.5L,target,12,4.8,velocity,lower_ux,1.4320346117019653 +illusion_1.5L,target,12,4.8,velocity,lower_uy,0.5987984538078308 +illusion_1.5L,target,13,5.2,velocity,upper_ux,0.47487902641296387 +illusion_1.5L,target,13,5.2,velocity,upper_uy,-0.09275801479816437 +illusion_1.5L,target,13,5.2,velocity,center_ux,0.8629229068756104 +illusion_1.5L,target,13,5.2,velocity,center_uy,0.14620257914066315 +illusion_1.5L,target,13,5.2,velocity,lower_ux,1.483522653579712 +illusion_1.5L,target,13,5.2,velocity,lower_uy,0.4959683120250702 +illusion_1.5L,target,14,5.6,velocity,upper_ux,0.5135915279388428 +illusion_1.5L,target,14,5.6,velocity,upper_uy,-0.30050960183143616 +illusion_1.5L,target,14,5.6,velocity,center_ux,0.8083277940750122 +illusion_1.5L,target,14,5.6,velocity,center_uy,-0.2704259157180786 +illusion_1.5L,target,14,5.6,velocity,lower_ux,1.4073481559753418 +illusion_1.5L,target,14,5.6,velocity,lower_uy,0.2001705914735794 +illusion_1.5L,target,15,6.0,velocity,upper_ux,0.607000470161438 +illusion_1.5L,target,15,6.0,velocity,upper_uy,-0.40951278805732727 +illusion_1.5L,target,15,6.0,velocity,center_ux,0.7963954210281372 +illusion_1.5L,target,15,6.0,velocity,center_uy,-0.6217831373214722 +illusion_1.5L,target,15,6.0,velocity,lower_ux,1.2272800207138062 +illusion_1.5L,target,15,6.0,velocity,lower_uy,-0.21678780019283295 +illusion_1.5L,target,16,6.4,velocity,upper_ux,0.713185727596283 +illusion_1.5L,target,16,6.4,velocity,upper_uy,-0.4488278329372406 +illusion_1.5L,target,16,6.4,velocity,center_ux,0.8280825614929199 +illusion_1.5L,target,16,6.4,velocity,center_uy,-0.7533674836158752 +illusion_1.5L,target,16,6.4,velocity,lower_ux,1.0767017602920532 +illusion_1.5L,target,16,6.4,velocity,lower_uy,-0.49264228343963623 +illusion_1.5L,target,17,6.8,velocity,upper_ux,0.8045552968978882 +illusion_1.5L,target,17,6.8,velocity,upper_uy,-0.4777476489543915 +illusion_1.5L,target,17,6.8,velocity,center_ux,0.8734000325202942 +illusion_1.5L,target,17,6.8,velocity,center_uy,-0.7337217926979065 +illusion_1.5L,target,17,6.8,velocity,lower_ux,1.0002375841140747 +illusion_1.5L,target,17,6.8,velocity,lower_uy,-0.5523510575294495 +illusion_1.5L,target,18,7.2,velocity,upper_ux,0.8859468102455139 +illusion_1.5L,target,18,7.2,velocity,upper_uy,-0.5032601356506348 +illusion_1.5L,target,18,7.2,velocity,center_ux,0.911502480506897 +illusion_1.5L,target,18,7.2,velocity,center_uy,-0.715033769607544 +illusion_1.5L,target,18,7.2,velocity,lower_ux,0.9570525884628296 +illusion_1.5L,target,18,7.2,velocity,lower_uy,-0.5408613681793213 +illusion_1.5L,target,19,7.6,velocity,upper_ux,0.9600100517272949 +illusion_1.5L,target,19,7.6,velocity,upper_uy,-0.524025559425354 +illusion_1.5L,target,19,7.6,velocity,center_ux,0.9410032033920288 +illusion_1.5L,target,19,7.6,velocity,center_uy,-0.7166600227355957 +illusion_1.5L,target,19,7.6,velocity,lower_ux,0.9126384854316711 +illusion_1.5L,target,19,7.6,velocity,lower_uy,-0.5367266535758972 +illusion_1.5L,target,20,8.0,velocity,upper_ux,1.032904863357544 +illusion_1.5L,target,20,8.0,velocity,upper_uy,-0.5441406965255737 +illusion_1.5L,target,20,8.0,velocity,center_ux,0.9679598808288574 +illusion_1.5L,target,20,8.0,velocity,center_uy,-0.7383930087089539 +illusion_1.5L,target,20,8.0,velocity,lower_ux,0.8625190854072571 +illusion_1.5L,target,20,8.0,velocity,lower_uy,-0.5430998802185059 +illusion_1.5L,target,21,8.4,velocity,upper_ux,1.1022990942001343 +illusion_1.5L,target,21,8.4,velocity,upper_uy,-0.5630387663841248 +illusion_1.5L,target,21,8.4,velocity,center_ux,0.9910638928413391 +illusion_1.5L,target,21,8.4,velocity,center_uy,-0.7767208814620972 +illusion_1.5L,target,21,8.4,velocity,lower_ux,0.8018806576728821 +illusion_1.5L,target,21,8.4,velocity,lower_uy,-0.5486374497413635 +illusion_1.5L,target,22,8.8,velocity,upper_ux,1.1748501062393188 +illusion_1.5L,target,22,8.8,velocity,upper_uy,-0.5814601182937622 +illusion_1.5L,target,22,8.8,velocity,center_ux,1.0112766027450562 +illusion_1.5L,target,22,8.8,velocity,center_uy,-0.8241025805473328 +illusion_1.5L,target,22,8.8,velocity,lower_ux,0.7249518036842346 +illusion_1.5L,target,22,8.8,velocity,lower_uy,-0.5351646542549133 +illusion_1.5L,target,23,9.2,velocity,upper_ux,1.2551482915878296 +illusion_1.5L,target,23,9.2,velocity,upper_uy,-0.5982275605201721 +illusion_1.5L,target,23,9.2,velocity,center_ux,1.0188027620315552 +illusion_1.5L,target,23,9.2,velocity,center_uy,-0.837980329990387 +illusion_1.5L,target,23,9.2,velocity,lower_ux,0.635877788066864 +illusion_1.5L,target,23,9.2,velocity,lower_uy,-0.4721287190914154 +illusion_1.5L,target,24,9.6,velocity,upper_ux,1.3479231595993042 +illusion_1.5L,target,24,9.6,velocity,upper_uy,-0.6094215512275696 +illusion_1.5L,target,24,9.6,velocity,center_ux,0.9929994940757751 +illusion_1.5L,target,24,9.6,velocity,center_uy,-0.7313733100891113 +illusion_1.5L,target,24,9.6,velocity,lower_ux,0.5506681203842163 +illusion_1.5L,target,24,9.6,velocity,lower_uy,-0.3322957754135132 +illusion_1.5L,target,25,10.0,velocity,upper_ux,1.4441499710083008 +illusion_1.5L,target,25,10.0,velocity,upper_uy,-0.5936139822006226 +illusion_1.5L,target,25,10.0,velocity,center_ux,0.9307604432106018 +illusion_1.5L,target,25,10.0,velocity,center_uy,-0.4688534140586853 +illusion_1.5L,target,25,10.0,velocity,lower_ux,0.49188682436943054 +illusion_1.5L,target,25,10.0,velocity,lower_uy,-0.11967240273952484 +illusion_1.5L,target,26,10.4,velocity,upper_ux,1.4844467639923096 +illusion_1.5L,target,26,10.4,velocity,upper_uy,-0.4718170166015625 +illusion_1.5L,target,26,10.4,velocity,center_ux,0.8568694591522217 +illusion_1.5L,target,26,10.4,velocity,center_uy,-0.09659447520971298 +illusion_1.5L,target,26,10.4,velocity,lower_ux,0.4781840443611145 +illusion_1.5L,target,26,10.4,velocity,lower_uy,0.12192637473344803 +illusion_1.5L,target,27,10.8,velocity,upper_ux,1.3875374794006348 +illusion_1.5L,target,27,10.8,velocity,upper_uy,-0.15128940343856812 +illusion_1.5L,target,27,10.8,velocity,center_ux,0.8033667802810669 +illusion_1.5L,target,27,10.8,velocity,center_uy,0.32089149951934814 +illusion_1.5L,target,27,10.8,velocity,lower_ux,0.5220116972923279 +illusion_1.5L,target,27,10.8,velocity,lower_uy,0.31986016035079956 +illusion_1.5L,target,28,11.2,velocity,upper_ux,1.2022647857666016 +illusion_1.5L,target,28,11.2,velocity,upper_uy,0.2621086835861206 +illusion_1.5L,target,28,11.2,velocity,center_ux,0.7951354384422302 +illusion_1.5L,target,28,11.2,velocity,center_uy,0.6511837244033813 +illusion_1.5L,target,28,11.2,velocity,lower_ux,0.6175473928451538 +illusion_1.5L,target,28,11.2,velocity,lower_uy,0.4160756766796112 +illusion_1.5L,target,29,11.6,velocity,upper_ux,1.0616421699523926 +illusion_1.5L,target,29,11.6,velocity,upper_uy,0.5096370577812195 +illusion_1.5L,target,29,11.6,velocity,center_ux,0.8309900760650635 +illusion_1.5L,target,29,11.6,velocity,center_uy,0.7551659941673279 +illusion_1.5L,target,29,11.6,velocity,lower_ux,0.7228320837020874 +illusion_1.5L,target,29,11.6,velocity,lower_uy,0.4522113800048828 +illusion_1.5L,target,30,12.0,velocity,upper_ux,0.9946220517158508 +illusion_1.5L,target,30,12.0,velocity,upper_uy,0.552513599395752 +illusion_1.5L,target,30,12.0,velocity,center_ux,0.8785661458969116 +illusion_1.5L,target,30,12.0,velocity,center_uy,0.7304794192314148 +illusion_1.5L,target,30,12.0,velocity,lower_ux,0.8150948286056519 +illusion_1.5L,target,30,12.0,velocity,lower_uy,0.4808112680912018 +illusion_1.5L,target,31,12.4,velocity,upper_ux,0.9532555341720581 +illusion_1.5L,target,31,12.4,velocity,upper_uy,0.539689838886261 +illusion_1.5L,target,31,12.4,velocity,center_ux,0.9167529940605164 +illusion_1.5L,target,31,12.4,velocity,center_uy,0.7137629985809326 +illusion_1.5L,target,31,12.4,velocity,lower_ux,0.8968142867088318 +illusion_1.5L,target,31,12.4,velocity,lower_uy,0.5052961111068726 +illusion_1.5L,target,32,12.8,velocity,upper_ux,0.9079744219779968 +illusion_1.5L,target,32,12.8,velocity,upper_uy,0.5378563404083252 +illusion_1.5L,target,32,12.8,velocity,center_ux,0.9456179738044739 +illusion_1.5L,target,32,12.8,velocity,center_uy,0.7187832593917847 +illusion_1.5L,target,32,12.8,velocity,lower_ux,0.9703131318092346 +illusion_1.5L,target,32,12.8,velocity,lower_uy,0.526523232460022 +illusion_1.5L,target,33,13.2,velocity,upper_ux,0.8544919490814209 +illusion_1.5L,target,33,13.2,velocity,upper_uy,0.5447120070457458 +illusion_1.5L,target,33,13.2,velocity,center_ux,0.9690899848937988 +illusion_1.5L,target,33,13.2,velocity,center_uy,0.7423048615455627 +illusion_1.5L,target,33,13.2,velocity,lower_ux,1.0390160083770752 +illusion_1.5L,target,33,13.2,velocity,lower_uy,0.5462479591369629 +illusion_1.5L,target,34,13.6,velocity,upper_ux,0.7904678583145142 +illusion_1.5L,target,34,13.6,velocity,upper_uy,0.5493735074996948 +illusion_1.5L,target,34,13.6,velocity,center_ux,0.9913095831871033 +illusion_1.5L,target,34,13.6,velocity,center_uy,0.7825784087181091 +illusion_1.5L,target,34,13.6,velocity,lower_ux,1.1080936193466187 +illusion_1.5L,target,34,13.6,velocity,lower_uy,0.5653414130210876 +illusion_1.5L,target,35,14.0,velocity,upper_ux,0.7135241627693176 +illusion_1.5L,target,35,14.0,velocity,upper_uy,0.5318772792816162 +illusion_1.5L,target,35,14.0,velocity,center_ux,1.0124906301498413 +illusion_1.5L,target,35,14.0,velocity,center_uy,0.8289102911949158 +illusion_1.5L,target,35,14.0,velocity,lower_ux,1.182726263999939 +illusion_1.5L,target,35,14.0,velocity,lower_uy,0.5837350487709045 +illusion_1.5L,target,36,14.4,velocity,upper_ux,0.6265930533409119 +illusion_1.5L,target,36,14.4,velocity,upper_uy,0.4604337811470032 +illusion_1.5L,target,36,14.4,velocity,center_ux,1.0197829008102417 +illusion_1.5L,target,36,14.4,velocity,center_uy,0.8333876132965088 +illusion_1.5L,target,36,14.4,velocity,lower_ux,1.2672703266143799 +illusion_1.5L,target,36,14.4,velocity,lower_uy,0.6003854870796204 +illusion_1.5L,target,37,14.8,velocity,upper_ux,0.5441128015518188 +illusion_1.5L,target,37,14.8,velocity,upper_uy,0.3101557493209839 +illusion_1.5L,target,37,14.8,velocity,center_ux,0.9894406795501709 +illusion_1.5L,target,37,14.8,velocity,center_uy,0.7077094912528992 +illusion_1.5L,target,37,14.8,velocity,lower_ux,1.3625487089157104 +illusion_1.5L,target,37,14.8,velocity,lower_uy,0.6104184985160828 +illusion_1.5L,target,38,15.2,velocity,upper_ux,0.48745933175086975 +illusion_1.5L,target,38,15.2,velocity,upper_uy,0.09011009335517883 +illusion_1.5L,target,38,15.2,velocity,center_ux,0.9213310480117798 +illusion_1.5L,target,38,15.2,velocity,center_uy,0.42788413166999817 +illusion_1.5L,target,38,15.2,velocity,lower_ux,1.454291582107544 +illusion_1.5L,target,38,15.2,velocity,lower_uy,0.5872087478637695 +illusion_1.5L,target,39,15.6,velocity,upper_ux,0.47796905040740967 +illusion_1.5L,target,39,15.6,velocity,upper_uy,-0.15015868842601776 +illusion_1.5L,target,39,15.6,velocity,center_ux,0.846189022064209 +illusion_1.5L,target,39,15.6,velocity,center_uy,0.04647301509976387 +illusion_1.5L,target,39,15.6,velocity,lower_ux,1.4782838821411133 +illusion_1.5L,target,39,15.6,velocity,lower_uy,0.4437258839607239 +illusion_1.5L,target,40,16.0,velocity,upper_ux,0.5290862917900085 +illusion_1.5L,target,40,16.0,velocity,upper_uy,-0.3372482657432556 +illusion_1.5L,target,40,16.0,velocity,center_ux,0.797676682472229 +illusion_1.5L,target,40,16.0,velocity,center_uy,-0.3686125874519348 +illusion_1.5L,target,40,16.0,velocity,lower_ux,1.3645519018173218 +illusion_1.5L,target,40,16.0,velocity,lower_uy,0.10023413598537445 +illusion_1.5L,target,41,16.4,velocity,upper_ux,0.6306065320968628 +illusion_1.5L,target,41,16.4,velocity,upper_uy,-0.42228177189826965 +illusion_1.5L,target,41,16.4,velocity,center_ux,0.7981479167938232 +illusion_1.5L,target,41,16.4,velocity,center_uy,-0.6764373779296875 +illusion_1.5L,target,41,16.4,velocity,lower_ux,1.1816202402114868 +illusion_1.5L,target,41,16.4,velocity,lower_uy,-0.3055309057235718 +illusion_1.5L,target,42,16.8,velocity,upper_ux,0.7371273040771484 +illusion_1.5L,target,42,16.8,velocity,upper_uy,-0.4560946524143219 +illusion_1.5L,target,42,16.8,velocity,center_ux,0.839728593826294 +illusion_1.5L,target,42,16.8,velocity,center_uy,-0.755154550075531 +illusion_1.5L,target,42,16.8,velocity,lower_ux,1.0534287691116333 +illusion_1.5L,target,42,16.8,velocity,lower_uy,-0.5237687230110168 +illusion_1.5L,target,43,17.2,velocity,upper_ux,0.8273446559906006 +illusion_1.5L,target,43,17.2,velocity,upper_uy,-0.48429492115974426 +illusion_1.5L,target,43,17.2,velocity,center_ux,0.8858850002288818 +illusion_1.5L,target,43,17.2,velocity,center_uy,-0.7273687720298767 +illusion_1.5L,target,43,17.2,velocity,lower_ux,0.9914135932922363 +illusion_1.5L,target,43,17.2,velocity,lower_uy,-0.5516558289527893 +illusion_1.5L,target,44,17.6,velocity,upper_ux,0.9051508903503418 +illusion_1.5L,target,44,17.6,velocity,upper_uy,-0.5081836581230164 +illusion_1.5L,target,44,17.6,velocity,center_ux,0.9199577569961548 +illusion_1.5L,target,44,17.6,velocity,center_uy,-0.7134964466094971 +illusion_1.5L,target,44,17.6,velocity,lower_ux,0.9474402070045471 +illusion_1.5L,target,44,17.6,velocity,lower_uy,-0.5389650464057922 +illusion_1.5L,target,45,18.0,velocity,upper_ux,0.976296603679657 +illusion_1.5L,target,45,18.0,velocity,upper_uy,-0.5290756821632385 +illusion_1.5L,target,45,18.0,velocity,center_ux,0.9464994072914124 +illusion_1.5L,target,45,18.0,velocity,center_uy,-0.7207314968109131 +illusion_1.5L,target,45,18.0,velocity,lower_ux,0.8999366760253906 +illusion_1.5L,target,45,18.0,velocity,lower_uy,-0.5386555194854736 +illusion_1.5L,target,46,18.4,velocity,upper_ux,1.045931339263916 +illusion_1.5L,target,46,18.4,velocity,upper_uy,-0.5486842393875122 +illusion_1.5L,target,46,18.4,velocity,center_ux,0.9707780480384827 +illusion_1.5L,target,46,18.4,velocity,center_uy,-0.7462543249130249 +illusion_1.5L,target,46,18.4,velocity,lower_ux,0.8467196822166443 +illusion_1.5L,target,46,18.4,velocity,lower_uy,-0.5459192991256714 +illusion_1.5L,target,47,18.8,velocity,upper_ux,1.1181491613388062 +illusion_1.5L,target,47,18.8,velocity,upper_uy,-0.5677239894866943 +illusion_1.5L,target,47,18.8,velocity,center_ux,0.9955043196678162 +illusion_1.5L,target,47,18.8,velocity,center_uy,-0.7881439924240112 +illusion_1.5L,target,47,18.8,velocity,lower_ux,0.784013032913208 +illusion_1.5L,target,47,18.8,velocity,lower_uy,-0.5491241812705994 +illusion_1.5L,target,48,19.2,velocity,upper_ux,1.1953041553497314 +illusion_1.5L,target,48,19.2,velocity,upper_uy,-0.5860506296157837 +illusion_1.5L,target,48,19.2,velocity,center_ux,1.0170451402664185 +illusion_1.5L,target,48,19.2,velocity,center_uy,-0.8334259986877441 +illusion_1.5L,target,48,19.2,velocity,lower_ux,0.7066192030906677 +illusion_1.5L,target,48,19.2,velocity,lower_uy,-0.5266600251197815 +illusion_1.5L,target,49,19.6,velocity,upper_ux,1.2793949842453003 +illusion_1.5L,target,49,19.6,velocity,upper_uy,-0.6021883487701416 +illusion_1.5L,target,49,19.6,velocity,center_ux,1.0186607837677002 +illusion_1.5L,target,49,19.6,velocity,center_uy,-0.826713502407074 +illusion_1.5L,target,49,19.6,velocity,lower_ux,0.6170966029167175 +illusion_1.5L,target,49,19.6,velocity,lower_uy,-0.4461308419704437 +illusion_1.5L,target,50,20.0,velocity,upper_ux,1.3733134269714355 +illusion_1.5L,target,50,20.0,velocity,upper_uy,-0.6100994348526001 +illusion_1.5L,target,50,20.0,velocity,center_ux,0.9803826212882996 +illusion_1.5L,target,50,20.0,velocity,center_uy,-0.6801461577415466 +illusion_1.5L,target,50,20.0,velocity,lower_ux,0.5339788198471069 +illusion_1.5L,target,50,20.0,velocity,lower_uy,-0.2857021391391754 +illusion_1.5L,target,51,20.4,velocity,upper_ux,1.4609620571136475 +illusion_1.5L,target,51,20.4,velocity,upper_uy,-0.5779138207435608 +illusion_1.5L,target,51,20.4,velocity,center_ux,0.9096518754959106 +illusion_1.5L,target,51,20.4,velocity,center_uy,-0.3849828243255615 +illusion_1.5L,target,51,20.4,velocity,lower_ux,0.4818795323371887 +illusion_1.5L,target,51,20.4,velocity,lower_uy,-0.060505401343107224 +illusion_1.5L,target,52,20.8,velocity,upper_ux,1.472438931465149 +illusion_1.5L,target,52,20.8,velocity,upper_uy,-0.41192734241485596 +illusion_1.5L,target,52,20.8,velocity,center_ux,0.8383996486663818 +illusion_1.5L,target,52,20.8,velocity,center_uy,0.004919817205518484 +illusion_1.5L,target,52,20.8,velocity,lower_ux,0.48116791248321533 +illusion_1.5L,target,52,20.8,velocity,lower_uy,0.17749075591564178 +illusion_1.5L,target,53,21.2,velocity,upper_ux,1.345381259918213 +illusion_1.5L,target,53,21.2,velocity,upper_uy,-0.04752647876739502 +illusion_1.5L,target,53,21.2,velocity,center_ux,0.797562837600708 +illusion_1.5L,target,53,21.2,velocity,center_uy,0.41664373874664307 +illusion_1.5L,target,53,21.2,velocity,lower_ux,0.5423345565795898 +illusion_1.5L,target,53,21.2,velocity,lower_uy,0.35325825214385986 +illusion_1.5L,target,54,21.6,velocity,upper_ux,1.164832592010498 +illusion_1.5L,target,54,21.6,velocity,upper_uy,0.3464544415473938 +illusion_1.5L,target,54,21.6,velocity,center_ux,0.8051641583442688 +illusion_1.5L,target,54,21.6,velocity,center_uy,0.6997408270835876 +illusion_1.5L,target,54,21.6,velocity,lower_ux,0.6478055715560913 +illusion_1.5L,target,54,21.6,velocity,lower_uy,0.42822301387786865 +illusion_1.5L,target,55,22.0,velocity,upper_ux,1.042107343673706 +illusion_1.5L,target,55,22.0,velocity,upper_uy,0.5338958501815796 +illusion_1.5L,target,55,22.0,velocity,center_ux,0.8457590341567993 +illusion_1.5L,target,55,22.0,velocity,center_uy,0.7528324127197266 +illusion_1.5L,target,55,22.0,velocity,lower_ux,0.7491657137870789 +illusion_1.5L,target,55,22.0,velocity,lower_uy,0.45983850955963135 +illusion_1.5L,target,56,22.4,velocity,upper_ux,0.9833871722221375 +illusion_1.5L,target,56,22.4,velocity,upper_uy,0.5490850210189819 +illusion_1.5L,target,56,22.4,velocity,center_ux,0.8887022137641907 +illusion_1.5L,target,56,22.4,velocity,center_uy,0.7237508893013 +illusion_1.5L,target,56,22.4,velocity,lower_ux,0.8355357646942139 +illusion_1.5L,target,56,22.4,velocity,lower_uy,0.48750030994415283 +illusion_1.5L,target,57,22.8,velocity,upper_ux,0.94036465883255 +illusion_1.5L,target,57,22.8,velocity,upper_uy,0.5373860597610474 +illusion_1.5L,target,57,22.8,velocity,center_ux,0.9221610426902771 +illusion_1.5L,target,57,22.8,velocity,center_uy,0.7128641605377197 +illusion_1.5L,target,57,22.8,velocity,lower_ux,0.912863552570343 +illusion_1.5L,target,57,22.8,velocity,lower_uy,0.5108457803726196 +illusion_1.5L,target,58,23.2,velocity,upper_ux,0.8947716355323792 +illusion_1.5L,target,58,23.2,velocity,upper_uy,0.538508951663971 +illusion_1.5L,target,58,23.2,velocity,center_ux,0.9505304098129272 +illusion_1.5L,target,58,23.2,velocity,center_uy,0.7224466800689697 +illusion_1.5L,target,58,23.2,velocity,lower_ux,0.9860166907310486 +illusion_1.5L,target,58,23.2,velocity,lower_uy,0.5314762592315674 +illusion_1.5L,target,59,23.6,velocity,upper_ux,0.8421024084091187 +illusion_1.5L,target,59,23.6,velocity,upper_uy,0.5459861159324646 +illusion_1.5L,target,59,23.6,velocity,center_ux,0.9762600064277649 +illusion_1.5L,target,59,23.6,velocity,center_uy,0.7503719925880432 +illusion_1.5L,target,59,23.6,velocity,lower_ux,1.057480812072754 +illusion_1.5L,target,59,23.6,velocity,lower_uy,0.5510268807411194 +illusion_1.5L,target,60,24.0,velocity,upper_ux,0.7759144306182861 +illusion_1.5L,target,60,24.0,velocity,upper_uy,0.5474140644073486 +illusion_1.5L,target,60,24.0,velocity,center_ux,0.999386191368103 +illusion_1.5L,target,60,24.0,velocity,center_uy,0.7942382097244263 +illusion_1.5L,target,60,24.0,velocity,lower_ux,1.1287643909454346 +illusion_1.5L,target,60,24.0,velocity,lower_uy,0.5699787139892578 +illusion_1.5L,target,61,24.4,velocity,upper_ux,0.6939010620117188 +illusion_1.5L,target,61,24.4,velocity,upper_uy,0.5195979475975037 +illusion_1.5L,target,61,24.4,velocity,center_ux,1.017188310623169 +illusion_1.5L,target,61,24.4,velocity,center_uy,0.8372251391410828 +illusion_1.5L,target,61,24.4,velocity,lower_ux,1.2039310932159424 +illusion_1.5L,target,61,24.4,velocity,lower_uy,0.5879762768745422 +illusion_1.5L,target,62,24.8,velocity,upper_ux,0.6041058897972107 +illusion_1.5L,target,62,24.8,velocity,upper_uy,0.43073832988739014 +illusion_1.5L,target,62,24.8,velocity,center_ux,1.015560269355774 +illusion_1.5L,target,62,24.8,velocity,center_uy,0.8181920051574707 +illusion_1.5L,target,62,24.8,velocity,lower_ux,1.289819359779358 +illusion_1.5L,target,62,24.8,velocity,lower_uy,0.6042359471321106 +illusion_1.5L,target,63,25.2,velocity,upper_ux,0.524540901184082 +illusion_1.5L,target,63,25.2,velocity,upper_uy,0.2607426345348358 +illusion_1.5L,target,63,25.2,velocity,center_ux,0.9728257060050964 +illusion_1.5L,target,63,25.2,velocity,center_uy,0.6508428454399109 +illusion_1.5L,target,63,25.2,velocity,lower_ux,1.384369969367981 +illusion_1.5L,target,63,25.2,velocity,lower_uy,0.6092079281806946 +illusion_1.5L,target,64,25.6,velocity,upper_ux,0.4802786111831665 +illusion_1.5L,target,64,25.6,velocity,upper_uy,0.030665816739201546 +illusion_1.5L,target,64,25.6,velocity,center_ux,0.9024436473846436 +illusion_1.5L,target,64,25.6,velocity,center_uy,0.3414231538772583 +illusion_1.5L,target,64,25.6,velocity,lower_ux,1.4701040983200073 +illusion_1.5L,target,64,25.6,velocity,lower_uy,0.5672914981842041 +illusion_1.5L,target,65,26.0,velocity,upper_ux,0.48724743723869324 +illusion_1.5L,target,65,26.0,velocity,upper_uy,-0.20427805185317993 +illusion_1.5L,target,65,26.0,velocity,center_ux,0.8332129120826721 +illusion_1.5L,target,65,26.0,velocity,center_uy,-0.05689982324838638 +illusion_1.5L,target,65,26.0,velocity,lower_ux,1.4663218259811401 +illusion_1.5L,target,65,26.0,velocity,lower_uy,0.3775830566883087 +illusion_1.5L,target,66,26.4,velocity,upper_ux,0.5535830855369568 +illusion_1.5L,target,66,26.4,velocity,upper_uy,-0.3673882782459259 +illusion_1.5L,target,66,26.4,velocity,center_ux,0.7949950695037842 +illusion_1.5L,target,66,26.4,velocity,center_uy,-0.4628008008003235 +illusion_1.5L,target,66,26.4,velocity,lower_ux,1.3222076892852783 +illusion_1.5L,target,66,26.4,velocity,lower_uy,-0.005052132066339254 +illusion_1.5L,target,67,26.8,velocity,upper_ux,0.6581955552101135 +illusion_1.5L,target,67,26.8,velocity,upper_uy,-0.4320865571498871 +illusion_1.5L,target,67,26.8,velocity,center_ux,0.8053233623504639 +illusion_1.5L,target,67,26.8,velocity,center_uy,-0.7168128490447998 +illusion_1.5L,target,67,26.8,velocity,lower_ux,1.1415170431137085 +illusion_1.5L,target,67,26.8,velocity,lower_uy,-0.38200294971466064 +illusion_1.5L,target,68,27.2,velocity,upper_ux,0.7585062980651855 +illusion_1.5L,target,68,27.2,velocity,upper_uy,-0.4631345272064209 +illusion_1.5L,target,68,27.2,velocity,center_ux,0.8491950035095215 +illusion_1.5L,target,68,27.2,velocity,center_uy,-0.7500665783882141 +illusion_1.5L,target,68,27.2,velocity,lower_ux,1.030434012413025 +illusion_1.5L,target,68,27.2,velocity,lower_uy,-0.5416584014892578 +illusion_1.5L,target,69,27.6,velocity,upper_ux,0.8457235097885132 +illusion_1.5L,target,69,27.6,velocity,upper_uy,-0.490384966135025 +illusion_1.5L,target,69,27.6,velocity,center_ux,0.8933544158935547 +illusion_1.5L,target,69,27.6,velocity,center_uy,-0.721284806728363 +illusion_1.5L,target,69,27.6,velocity,lower_ux,0.9781796336174011 +illusion_1.5L,target,69,27.6,velocity,lower_uy,-0.5476551055908203 +illusion_1.5L,target,70,28.0,velocity,upper_ux,0.9243002533912659 +illusion_1.5L,target,70,28.0,velocity,upper_uy,-0.5133790969848633 +illusion_1.5L,target,70,28.0,velocity,center_ux,0.9278926849365234 +illusion_1.5L,target,70,28.0,velocity,center_uy,-0.713209331035614 +illusion_1.5L,target,70,28.0,velocity,lower_ux,0.9370384812355042 +illusion_1.5L,target,70,28.0,velocity,lower_uy,-0.5372031927108765 +illusion_1.5L,target,71,28.4,velocity,upper_ux,0.9961700439453125 +illusion_1.5L,target,71,28.4,velocity,upper_uy,-0.533897340297699 +illusion_1.5L,target,71,28.4,velocity,center_ux,0.9548789858818054 +illusion_1.5L,target,71,28.4,velocity,center_uy,-0.7252354621887207 +illusion_1.5L,target,71,28.4,velocity,lower_ux,0.8895775675773621 +illusion_1.5L,target,71,28.4,velocity,lower_uy,-0.5396315455436707 +illusion_1.5L,target,72,28.8,velocity,upper_ux,1.0648924112319946 +illusion_1.5L,target,72,28.8,velocity,upper_uy,-0.5533435940742493 +illusion_1.5L,target,72,28.8,velocity,center_ux,0.9779105186462402 +illusion_1.5L,target,72,28.8,velocity,center_uy,-0.7553245425224304 +illusion_1.5L,target,72,28.8,velocity,lower_ux,0.8329694867134094 +illusion_1.5L,target,72,28.8,velocity,lower_uy,-0.5472279787063599 +illusion_1.5L,target,73,29.2,velocity,upper_ux,1.1351984739303589 +illusion_1.5L,target,73,29.2,velocity,upper_uy,-0.5722135305404663 +illusion_1.5L,target,73,29.2,velocity,center_ux,0.9998757839202881 +illusion_1.5L,target,73,29.2,velocity,center_uy,-0.8002997040748596 +illusion_1.5L,target,73,29.2,velocity,lower_ux,0.7639824748039246 +illusion_1.5L,target,73,29.2,velocity,lower_uy,-0.5467225909233093 +illusion_1.5L,target,74,29.6,velocity,upper_ux,1.2123669385910034 +illusion_1.5L,target,74,29.6,velocity,upper_uy,-0.5901288390159607 +illusion_1.5L,target,74,29.6,velocity,center_ux,1.0177676677703857 +illusion_1.5L,target,74,29.6,velocity,center_uy,-0.8399090766906738 +illusion_1.5L,target,74,29.6,velocity,lower_ux,0.6817957162857056 +illusion_1.5L,target,74,29.6,velocity,lower_uy,-0.5133711099624634 +illusion_1.5L,target,75,30.0,velocity,upper_ux,1.3005006313323975 +illusion_1.5L,target,75,30.0,velocity,upper_uy,-0.6052879095077515 +illusion_1.5L,target,75,30.0,velocity,center_ux,1.013196587562561 +illusion_1.5L,target,75,30.0,velocity,center_uy,-0.8060640096664429 +illusion_1.5L,target,75,30.0,velocity,lower_ux,0.5938976407051086 +illusion_1.5L,target,75,30.0,velocity,lower_uy,-0.4145922064781189 +illusion_1.5L,target,76,30.4,velocity,upper_ux,1.3985127210617065 +illusion_1.5L,target,76,30.4,velocity,upper_uy,-0.6086441278457642 +illusion_1.5L,target,76,30.4,velocity,center_ux,0.9674067497253418 +illusion_1.5L,target,76,30.4,velocity,center_uy,-0.620171070098877 +illusion_1.5L,target,76,30.4,velocity,lower_ux,0.5187608599662781 +illusion_1.5L,target,76,30.4,velocity,lower_uy,-0.23529210686683655 +illusion_1.5L,target,77,30.8,velocity,upper_ux,1.476546287536621 +illusion_1.5L,target,77,30.8,velocity,upper_uy,-0.5548046231269836 +illusion_1.5L,target,77,30.8,velocity,center_ux,0.8931047320365906 +illusion_1.5L,target,77,30.8,velocity,center_uy,-0.2964465618133545 +illusion_1.5L,target,77,30.8,velocity,lower_ux,0.4779841899871826 +illusion_1.5L,target,77,30.8,velocity,lower_uy,-0.0005243386840447783 +illusion_1.5L,target,78,31.2,velocity,upper_ux,1.4532426595687866 +illusion_1.5L,target,78,31.2,velocity,upper_uy,-0.33945518732070923 +illusion_1.5L,target,78,31.2,velocity,center_ux,0.8241941332817078 +illusion_1.5L,target,78,31.2,velocity,center_uy,0.10832791030406952 +illusion_1.5L,target,78,31.2,velocity,lower_ux,0.48999446630477905 +illusion_1.5L,target,78,31.2,velocity,lower_uy,0.2296891212463379 +illusion_1.5L,target,79,31.6,velocity,upper_ux,1.2970325946807861 +illusion_1.5L,target,79,31.6,velocity,upper_uy,0.05741139501333237 +illusion_1.5L,target,79,31.6,velocity,center_ux,0.791678786277771 +illusion_1.5L,target,79,31.6,velocity,center_uy,0.5047072768211365 +illusion_1.5L,target,79,31.6,velocity,lower_ux,0.5628978610038757 +illusion_1.5L,target,79,31.6,velocity,lower_uy,0.3797202706336975 +illusion_1.5L,target,80,32.0,velocity,upper_ux,1.1241592168807983 +illusion_1.5L,target,80,32.0,velocity,upper_uy,0.41472136974334717 +illusion_1.5L,target,80,32.0,velocity,center_ux,0.8097181916236877 +illusion_1.5L,target,80,32.0,velocity,center_uy,0.7307388782501221 +illusion_1.5L,target,80,32.0,velocity,lower_ux,0.6708366870880127 +illusion_1.5L,target,80,32.0,velocity,lower_uy,0.4365171194076538 +illusion_1.5L,target,81,32.4,velocity,upper_ux,1.0246657133102417 +illusion_1.5L,target,81,32.4,velocity,upper_uy,0.5476982593536377 +illusion_1.5L,target,81,32.4,velocity,center_ux,0.8572426438331604 +illusion_1.5L,target,81,32.4,velocity,center_uy,0.7469689249992371 +illusion_1.5L,target,81,32.4,velocity,lower_ux,0.7716439962387085 +illusion_1.5L,target,81,32.4,velocity,lower_uy,0.46679791808128357 +illusion_1.5L,target,82,32.8,velocity,upper_ux,0.9751099944114685 +illusion_1.5L,target,82,32.8,velocity,upper_uy,0.5463739037513733 +illusion_1.5L,target,82,32.8,velocity,center_ux,0.8997252583503723 +illusion_1.5L,target,82,32.8,velocity,center_uy,0.7194347977638245 +illusion_1.5L,target,82,32.8,velocity,lower_ux,0.8572024703025818 +illusion_1.5L,target,82,32.8,velocity,lower_uy,0.49354442954063416 +illusion_1.5L,target,83,33.2,velocity,upper_ux,0.9310079216957092 +illusion_1.5L,target,83,33.2,velocity,upper_uy,0.5374189615249634 +illusion_1.5L,target,83,33.2,velocity,center_ux,0.930815577507019 +illusion_1.5L,target,83,33.2,velocity,center_uy,0.7139707803726196 +illusion_1.5L,target,83,33.2,velocity,lower_ux,0.9324670433998108 +illusion_1.5L,target,83,33.2,velocity,lower_uy,0.5160930752754211 +illusion_1.5L,target,84,33.6,velocity,upper_ux,0.8813876509666443 +illusion_1.5L,target,84,33.6,velocity,upper_uy,0.5409797430038452 +illusion_1.5L,target,84,33.6,velocity,center_ux,0.9558609127998352 +illusion_1.5L,target,84,33.6,velocity,center_uy,0.7281197309494019 +illusion_1.5L,target,84,33.6,velocity,lower_ux,1.0023351907730103 +illusion_1.5L,target,84,33.6,velocity,lower_uy,0.5363793969154358 +illusion_1.5L,target,85,34.0,velocity,upper_ux,0.8246636986732483 +illusion_1.5L,target,85,34.0,velocity,upper_uy,0.5484731197357178 +illusion_1.5L,target,85,34.0,velocity,center_ux,0.9796338677406311 +illusion_1.5L,target,85,34.0,velocity,center_uy,0.7600990533828735 +illusion_1.5L,target,85,34.0,velocity,lower_ux,1.0719246864318848 +illusion_1.5L,target,85,34.0,velocity,lower_uy,0.5557481050491333 +illusion_1.5L,target,86,34.4,velocity,upper_ux,0.7564544677734375 +illusion_1.5L,target,86,34.4,velocity,upper_uy,0.5455099940299988 +illusion_1.5L,target,86,34.4,velocity,center_ux,1.0036906003952026 +illusion_1.5L,target,86,34.4,velocity,center_uy,0.8060981631278992 +illusion_1.5L,target,86,34.4,velocity,lower_ux,1.145207166671753 +illusion_1.5L,target,86,34.4,velocity,lower_uy,0.5745878219604492 +illusion_1.5L,target,87,34.8,velocity,upper_ux,0.6739785075187683 +illusion_1.5L,target,87,34.8,velocity,upper_uy,0.5056436061859131 +illusion_1.5L,target,87,34.8,velocity,center_ux,1.0210320949554443 +illusion_1.5L,target,87,34.8,velocity,center_uy,0.8418336510658264 +illusion_1.5L,target,87,34.8,velocity,lower_ux,1.224871039390564 +illusion_1.5L,target,87,34.8,velocity,lower_uy,0.5923871994018555 +illusion_1.5L,target,88,35.2,velocity,upper_ux,0.5846538543701172 +illusion_1.5L,target,88,35.2,velocity,upper_uy,0.39664018154144287 +illusion_1.5L,target,88,35.2,velocity,center_ux,1.0100899934768677 +illusion_1.5L,target,88,35.2,velocity,center_uy,0.7922278046607971 +illusion_1.5L,target,88,35.2,velocity,lower_ux,1.3131709098815918 +illusion_1.5L,target,88,35.2,velocity,lower_uy,0.606844425201416 +illusion_1.5L,target,89,35.6,velocity,upper_ux,0.5103904604911804 +illusion_1.5L,target,89,35.6,velocity,upper_uy,0.20824497938156128 +illusion_1.5L,target,89,35.6,velocity,center_ux,0.9572190046310425 +illusion_1.5L,target,89,35.6,velocity,center_uy,0.5860952734947205 +illusion_1.5L,target,89,35.6,velocity,lower_ux,1.4091790914535522 +illusion_1.5L,target,89,35.6,velocity,lower_uy,0.6065723299980164 +illusion_1.5L,target,90,36.0,velocity,upper_ux,0.4749194085597992 +illusion_1.5L,target,90,36.0,velocity,upper_uy,-0.029417013749480247 +illusion_1.5L,target,90,36.0,velocity,center_ux,0.881754994392395 +illusion_1.5L,target,90,36.0,velocity,center_uy,0.24953468143939972 +illusion_1.5L,target,90,36.0,velocity,lower_ux,1.4794096946716309 +illusion_1.5L,target,90,36.0,velocity,lower_uy,0.5388051867485046 +illusion_1.5L,target,91,36.4,velocity,upper_ux,0.4958885610103607 +illusion_1.5L,target,91,36.4,velocity,upper_uy,-0.2536073327064514 +illusion_1.5L,target,91,36.4,velocity,center_ux,0.8179500699043274 +illusion_1.5L,target,91,36.4,velocity,center_uy,-0.16000401973724365 +illusion_1.5L,target,91,36.4,velocity,lower_ux,1.4403613805770874 +illusion_1.5L,target,91,36.4,velocity,lower_uy,0.2979942560195923 +illusion_1.5L,target,92,36.8,velocity,upper_ux,0.5776135325431824 +illusion_1.5L,target,92,36.8,velocity,upper_uy,-0.39081963896751404 +illusion_1.5L,target,92,36.8,velocity,center_ux,0.7936431169509888 +illusion_1.5L,target,92,36.8,velocity,center_uy,-0.5454841256141663 +illusion_1.5L,target,92,36.8,velocity,lower_ux,1.2757906913757324 +illusion_1.5L,target,92,36.8,velocity,lower_uy,-0.11017745733261108 +illusion_1.5L,target,93,37.2,velocity,upper_ux,0.6864105463027954 +illusion_1.5L,target,93,37.2,velocity,upper_uy,-0.4407767951488495 +illusion_1.5L,target,93,37.2,velocity,center_ux,0.8171696662902832 +illusion_1.5L,target,93,37.2,velocity,center_uy,-0.7414583563804626 +illusion_1.5L,target,93,37.2,velocity,lower_ux,1.1093612909317017 +illusion_1.5L,target,93,37.2,velocity,lower_uy,-0.44399890303611755 +illusion_1.5L,target,94,37.6,velocity,upper_ux,0.7828916311264038 +illusion_1.5L,target,94,37.6,velocity,upper_uy,-0.47049328684806824 +illusion_1.5L,target,94,37.6,velocity,center_ux,0.8631883859634399 +illusion_1.5L,target,94,37.6,velocity,center_uy,-0.7425662875175476 +illusion_1.5L,target,94,37.6,velocity,lower_ux,1.0165349245071411 +illusion_1.5L,target,94,37.6,velocity,lower_uy,-0.5505417585372925 +illusion_1.5L,target,95,38.0,velocity,upper_ux,0.8651894330978394 +illusion_1.5L,target,95,38.0,velocity,upper_uy,-0.49658259749412537 +illusion_1.5L,target,95,38.0,velocity,center_ux,0.9023932814598083 +illusion_1.5L,target,95,38.0,velocity,center_uy,-0.7171323895454407 +illusion_1.5L,target,95,38.0,velocity,lower_ux,0.9679357409477234 +illusion_1.5L,target,95,38.0,velocity,lower_uy,-0.5438109040260315 +illusion_1.5L,target,96,38.4,velocity,upper_ux,0.9400395750999451 +illusion_1.5L,target,96,38.4,velocity,upper_uy,-0.5186829566955566 +illusion_1.5L,target,96,38.4,velocity,center_ux,0.9329684376716614 +illusion_1.5L,target,96,38.4,velocity,center_uy,-0.7143157720565796 +illusion_1.5L,target,96,38.4,velocity,lower_ux,0.9240640997886658 +illusion_1.5L,target,96,38.4,velocity,lower_uy,-0.5366594195365906 +illusion_1.5L,target,97,38.8,velocity,upper_ux,1.0130360126495361 +illusion_1.5L,target,97,38.8,velocity,upper_uy,-0.539449155330658 +illusion_1.5L,target,97,38.8,velocity,center_ux,0.9608693718910217 +illusion_1.5L,target,97,38.8,velocity,center_uy,-0.7316363453865051 +illusion_1.5L,target,97,38.8,velocity,lower_ux,0.8770116567611694 +illusion_1.5L,target,97,38.8,velocity,lower_uy,-0.541900098323822 +illusion_1.5L,target,98,39.2,velocity,upper_ux,1.084486722946167 +illusion_1.5L,target,98,39.2,velocity,upper_uy,-0.5587854981422424 +illusion_1.5L,target,98,39.2,velocity,center_ux,0.9859851002693176 +illusion_1.5L,target,98,39.2,velocity,center_uy,-0.7659340500831604 +illusion_1.5L,target,98,39.2,velocity,lower_ux,0.8203657269477844 +illusion_1.5L,target,98,39.2,velocity,lower_uy,-0.5490186214447021 +illusion_1.5L,target,99,39.6,velocity,upper_ux,1.1573892831802368 +illusion_1.5L,target,99,39.6,velocity,upper_uy,-0.5775269865989685 +illusion_1.5L,target,99,39.6,velocity,center_ux,1.00857412815094 +illusion_1.5L,target,99,39.6,velocity,center_uy,-0.8131387233734131 +illusion_1.5L,target,99,39.6,velocity,lower_ux,0.7488307356834412 +illusion_1.5L,target,99,39.6,velocity,lower_uy,-0.5430961847305298 +illusion_1.5L,target,100,40.0,velocity,upper_ux,1.2342101335525513 +illusion_1.5L,target,100,40.0,velocity,upper_uy,-0.5942023992538452 +illusion_1.5L,target,100,40.0,velocity,center_ux,1.0203018188476562 +illusion_1.5L,target,100,40.0,velocity,center_uy,-0.8423101902008057 +illusion_1.5L,target,100,40.0,velocity,lower_ux,0.6614105105400085 +illusion_1.5L,target,100,40.0,velocity,lower_uy,-0.49557268619537354 +illusion_1.5L,target,101,40.4,velocity,upper_ux,1.3229050636291504 +illusion_1.5L,target,101,40.4,velocity,upper_uy,-0.6076655387878418 +illusion_1.5L,target,101,40.4,velocity,center_ux,1.0039128065109253 +illusion_1.5L,target,101,40.4,velocity,center_uy,-0.7751668691635132 +illusion_1.5L,target,101,40.4,velocity,lower_ux,0.5720613598823547 +illusion_1.5L,target,101,40.4,velocity,lower_uy,-0.37690556049346924 +illusion_1.5L,target,102,40.8,velocity,upper_ux,1.4198821783065796 +illusion_1.5L,target,102,40.8,velocity,upper_uy,-0.6033427715301514 +illusion_1.5L,target,102,40.8,velocity,center_ux,0.9483283758163452 +illusion_1.5L,target,102,40.8,velocity,center_uy,-0.5504243969917297 +illusion_1.5L,target,102,40.8,velocity,lower_ux,0.5029115676879883 +illusion_1.5L,target,102,40.8,velocity,lower_uy,-0.18062736093997955 +illusion_1.5L,target,103,41.2,velocity,upper_ux,1.4838443994522095 +illusion_1.5L,target,103,41.2,velocity,upper_uy,-0.5205957889556885 +illusion_1.5L,target,103,41.2,velocity,center_ux,0.874452531337738 +illusion_1.5L,target,103,41.2,velocity,center_uy,-0.20188136398792267 +illusion_1.5L,target,103,41.2,velocity,lower_ux,0.47573262453079224 +illusion_1.5L,target,103,41.2,velocity,lower_uy,0.05921927094459534 +illusion_1.5L,target,104,41.6,velocity,upper_ux,1.4272874593734741 +illusion_1.5L,target,104,41.6,velocity,upper_uy,-0.25399404764175415 +illusion_1.5L,target,104,41.6,velocity,center_ux,0.8141721487045288 +illusion_1.5L,target,104,41.6,velocity,center_uy,0.21241240203380585 +illusion_1.5L,target,104,41.6,velocity,lower_ux,0.5048573017120361 +illusion_1.5L,target,104,41.6,velocity,lower_uy,0.27655133605003357 +illusion_1.5L,target,105,42.0,velocity,upper_ux,1.2520854473114014 +illusion_1.5L,target,105,42.0,velocity,upper_uy,0.1609582155942917 +illusion_1.5L,target,105,42.0,velocity,center_ux,0.7936775088310242 +illusion_1.5L,target,105,42.0,velocity,center_uy,0.5835667252540588 +illusion_1.5L,target,105,42.0,velocity,lower_ux,0.5908198356628418 +illusion_1.5L,target,105,42.0,velocity,lower_uy,0.4001794755458832 +illusion_1.5L,target,106,42.4,velocity,upper_ux,1.0914561748504639 +illusion_1.5L,target,106,42.4,velocity,upper_uy,0.4687141180038452 +illusion_1.5L,target,106,42.4,velocity,center_ux,0.8202327489852905 +illusion_1.5L,target,106,42.4,velocity,center_uy,0.7486830353736877 +illusion_1.5L,target,106,42.4,velocity,lower_ux,0.697561502456665 +illusion_1.5L,target,106,42.4,velocity,lower_uy,0.44438350200653076 +illusion_1.5L,target,107,42.8,velocity,upper_ux,1.0073442459106445 +illusion_1.5L,target,107,42.8,velocity,upper_uy,0.5521776676177979 +illusion_1.5L,target,107,42.8,velocity,center_ux,0.8667526245117188 +illusion_1.5L,target,107,42.8,velocity,center_uy,0.7384322285652161 +illusion_1.5L,target,107,42.8,velocity,lower_ux,0.7920346856117249 +illusion_1.5L,target,107,42.8,velocity,lower_uy,0.47373801469802856 +illusion_1.5L,target,108,43.2,velocity,upper_ux,0.9627744555473328 +illusion_1.5L,target,108,43.2,velocity,upper_uy,0.5421646237373352 +illusion_1.5L,target,108,43.2,velocity,center_ux,0.9066328406333923 +illusion_1.5L,target,108,43.2,velocity,center_uy,0.7155903577804565 +illusion_1.5L,target,108,43.2,velocity,lower_ux,0.8750379681587219 +illusion_1.5L,target,108,43.2,velocity,lower_uy,0.4993085563182831 +illusion_1.5L,target,109,43.6,velocity,upper_ux,0.9201159477233887 +illusion_1.5L,target,109,43.6,velocity,upper_uy,0.5367364287376404 +illusion_1.5L,target,109,43.6,velocity,center_ux,0.9381890296936035 +illusion_1.5L,target,109,43.6,velocity,center_uy,0.7153618335723877 +illusion_1.5L,target,109,43.6,velocity,lower_ux,0.9510300159454346 +illusion_1.5L,target,109,43.6,velocity,lower_uy,0.5211385488510132 +illusion_1.5L,target,110,44.0,velocity,upper_ux,0.8702144622802734 +illusion_1.5L,target,110,44.0,velocity,upper_uy,0.5422071814537048 +illusion_1.5L,target,110,44.0,velocity,center_ux,0.9638454914093018 +illusion_1.5L,target,110,44.0,velocity,center_uy,0.7341889142990112 +illusion_1.5L,target,110,44.0,velocity,lower_ux,1.0218417644500732 +illusion_1.5L,target,110,44.0,velocity,lower_uy,0.5411521792411804 +illusion_1.5L,target,111,44.4,velocity,upper_ux,0.809755802154541 +illusion_1.5L,target,111,44.4,velocity,upper_uy,0.5488161444664001 +illusion_1.5L,target,111,44.4,velocity,center_ux,0.986600935459137 +illusion_1.5L,target,111,44.4,velocity,center_uy,0.7705373167991638 +illusion_1.5L,target,111,44.4,velocity,lower_ux,1.0909576416015625 +illusion_1.5L,target,111,44.4,velocity,lower_uy,0.5603711605072021 +illusion_1.5L,target,112,44.8,velocity,upper_ux,0.7354660630226135 +illusion_1.5L,target,112,44.8,velocity,upper_uy,0.539750874042511 +illusion_1.5L,target,112,44.8,velocity,center_ux,1.0078744888305664 +illusion_1.5L,target,112,44.8,velocity,center_uy,0.8178675770759583 +illusion_1.5L,target,112,44.8,velocity,lower_ux,1.1630667448043823 +illusion_1.5L,target,112,44.8,velocity,lower_uy,0.5789653658866882 +illusion_1.5L,target,113,45.2,velocity,upper_ux,0.6489783525466919 +illusion_1.5L,target,113,45.2,velocity,upper_uy,0.4858286678791046 +illusion_1.5L,target,113,45.2,velocity,center_ux,1.0197968482971191 +illusion_1.5L,target,113,45.2,velocity,center_uy,0.8412128686904907 +illusion_1.5L,target,113,45.2,velocity,lower_ux,1.2432787418365479 +illusion_1.5L,target,113,45.2,velocity,lower_uy,0.5961750149726868 +illusion_1.5L,target,114,45.6,velocity,upper_ux,0.5629341006278992 +illusion_1.5L,target,114,45.6,velocity,upper_uy,0.35728099942207336 +illusion_1.5L,target,114,45.6,velocity,center_ux,1.0006340742111206 +illusion_1.5L,target,114,45.6,velocity,center_uy,0.7565824389457703 +illusion_1.5L,target,114,45.6,velocity,lower_ux,1.33547043800354 +illusion_1.5L,target,114,45.6,velocity,lower_uy,0.6088834404945374 +illusion_1.5L,target,115,46.0,velocity,upper_ux,0.4984514117240906 +illusion_1.5L,target,115,46.0,velocity,upper_uy,0.15255235135555267 +illusion_1.5L,target,115,46.0,velocity,center_ux,0.9415525794029236 +illusion_1.5L,target,115,46.0,velocity,center_uy,0.5136594176292419 +illusion_1.5L,target,115,46.0,velocity,lower_ux,1.4328101873397827 +illusion_1.5L,target,115,46.0,velocity,lower_uy,0.5999575853347778 +illusion_1.5L,target,116,46.4,velocity,upper_ux,0.4759054481983185 +illusion_1.5L,target,116,46.4,velocity,upper_uy,-0.08887462317943573 +illusion_1.5L,target,116,46.4,velocity,center_ux,0.8656735420227051 +illusion_1.5L,target,116,46.4,velocity,center_uy,0.15343579649925232 +illusion_1.5L,target,116,46.4,velocity,lower_ux,1.484910249710083 +illusion_1.5L,target,116,46.4,velocity,lower_uy,0.4998091459274292 +illusion_1.5L,target,117,46.8,velocity,upper_ux,0.5112996101379395 +illusion_1.5L,target,117,46.8,velocity,upper_uy,-0.2980121672153473 +illusion_1.5L,target,117,46.8,velocity,center_ux,0.8082126379013062 +illusion_1.5L,target,117,46.8,velocity,center_uy,-0.26333606243133545 +illusion_1.5L,target,117,46.8,velocity,lower_ux,1.409803032875061 +illusion_1.5L,target,117,46.8,velocity,lower_uy,0.20761838555335999 +illusion_1.5L,target,118,47.2,velocity,upper_ux,0.6016148924827576 +illusion_1.5L,target,118,47.2,velocity,upper_uy,-0.4082176983356476 +illusion_1.5L,target,118,47.2,velocity,center_ux,0.7927440404891968 +illusion_1.5L,target,118,47.2,velocity,center_uy,-0.616580069065094 +illusion_1.5L,target,118,47.2,velocity,lower_ux,1.2275506258010864 +illusion_1.5L,target,118,47.2,velocity,lower_uy,-0.20925676822662354 +illusion_1.5L,target,119,47.6,velocity,upper_ux,0.7103792428970337 +illusion_1.5L,target,119,47.6,velocity,upper_uy,-0.44867026805877686 +illusion_1.5L,target,119,47.6,velocity,center_ux,0.8264786601066589 +illusion_1.5L,target,119,47.6,velocity,center_uy,-0.7541746497154236 +illusion_1.5L,target,119,47.6,velocity,lower_ux,1.0790916681289673 +illusion_1.5L,target,119,47.6,velocity,lower_uy,-0.4906078577041626 +illusion_1.5L,target,120,48.0,velocity,upper_ux,0.8042332530021667 +illusion_1.5L,target,120,48.0,velocity,upper_uy,-0.47713497281074524 +illusion_1.5L,target,120,48.0,velocity,center_ux,0.8738749027252197 +illusion_1.5L,target,120,48.0,velocity,center_uy,-0.7349474430084229 +illusion_1.5L,target,120,48.0,velocity,lower_ux,1.0030198097229004 +illusion_1.5L,target,120,48.0,velocity,lower_uy,-0.5533692240715027 +illusion_1.5L,target,121,48.4,velocity,upper_ux,0.8859522342681885 +illusion_1.5L,target,121,48.4,velocity,upper_uy,-0.5022096633911133 +illusion_1.5L,target,121,48.4,velocity,center_ux,0.9122505784034729 +illusion_1.5L,target,121,48.4,velocity,center_uy,-0.7148453593254089 +illusion_1.5L,target,121,48.4,velocity,lower_ux,0.9593532085418701 +illusion_1.5L,target,121,48.4,velocity,lower_uy,-0.5413464903831482 +illusion_1.5L,target,122,48.8,velocity,upper_ux,0.9591012001037598 +illusion_1.5L,target,122,48.8,velocity,upper_uy,-0.5237159729003906 +illusion_1.5L,target,122,48.8,velocity,center_ux,0.9409105181694031 +illusion_1.5L,target,122,48.8,velocity,center_uy,-0.7170224785804749 +illusion_1.5L,target,122,48.8,velocity,lower_ux,0.9138083457946777 +illusion_1.5L,target,122,48.8,velocity,lower_uy,-0.5375987887382507 +illusion_1.5L,target,123,49.2,velocity,upper_ux,1.028233289718628 +illusion_1.5L,target,123,49.2,velocity,upper_uy,-0.5435736775398254 +illusion_1.5L,target,123,49.2,velocity,center_ux,0.964949369430542 +illusion_1.5L,target,123,49.2,velocity,center_uy,-0.7379246354103088 +illusion_1.5L,target,123,49.2,velocity,lower_ux,0.8617492914199829 +illusion_1.5L,target,123,49.2,velocity,lower_uy,-0.5437963008880615 +illusion_1.5L,target,124,49.6,velocity,upper_ux,1.0982264280319214 +illusion_1.5L,target,124,49.6,velocity,upper_uy,-0.5627490878105164 +illusion_1.5L,target,124,49.6,velocity,center_ux,0.9883809685707092 +illusion_1.5L,target,124,49.6,velocity,center_uy,-0.7759981751441956 +illusion_1.5L,target,124,49.6,velocity,lower_ux,0.8007606267929077 +illusion_1.5L,target,124,49.6,velocity,lower_uy,-0.5496617555618286 +illusion_1.5L,target,125,50.0,velocity,upper_ux,1.1731162071228027 +illusion_1.5L,target,125,50.0,velocity,upper_uy,-0.5813039541244507 +illusion_1.5L,target,125,50.0,velocity,center_ux,1.011167049407959 +illusion_1.5L,target,125,50.0,velocity,center_uy,-0.8231827020645142 +illusion_1.5L,target,125,50.0,velocity,lower_ux,0.7268949151039124 +illusion_1.5L,target,125,50.0,velocity,lower_uy,-0.536899983882904 +illusion_1.5L,target,126,50.4,velocity,upper_ux,1.2558794021606445 +illusion_1.5L,target,126,50.4,velocity,upper_uy,-0.5983286499977112 +illusion_1.5L,target,126,50.4,velocity,center_ux,1.0214077234268188 +illusion_1.5L,target,126,50.4,velocity,center_uy,-0.8388094902038574 +illusion_1.5L,target,126,50.4,velocity,lower_ux,0.6404632329940796 +illusion_1.5L,target,126,50.4,velocity,lower_uy,-0.4749253988265991 +illusion_1.5L,target,127,50.8,velocity,upper_ux,1.3484481573104858 +illusion_1.5L,target,127,50.8,velocity,upper_uy,-0.6098740100860596 +illusion_1.5L,target,127,50.8,velocity,center_ux,0.9955376386642456 +illusion_1.5L,target,127,50.8,velocity,center_uy,-0.7351059913635254 +illusion_1.5L,target,127,50.8,velocity,lower_ux,0.5543674230575562 +illusion_1.5L,target,127,50.8,velocity,lower_uy,-0.3358179032802582 +illusion_1.5L,target,128,51.2,velocity,upper_ux,1.4422775506973267 +illusion_1.5L,target,128,51.2,velocity,upper_uy,-0.5947161316871643 +illusion_1.5L,target,128,51.2,velocity,center_ux,0.9307715892791748 +illusion_1.5L,target,128,51.2,velocity,center_uy,-0.4742456078529358 +illusion_1.5L,target,128,51.2,velocity,lower_ux,0.4920582175254822 +illusion_1.5L,target,128,51.2,velocity,lower_uy,-0.12364037334918976 +illusion_1.5L,target,129,51.6,velocity,upper_ux,1.4820986986160278 +illusion_1.5L,target,129,51.6,velocity,upper_uy,-0.47511690855026245 +illusion_1.5L,target,129,51.6,velocity,center_ux,0.855267345905304 +illusion_1.5L,target,129,51.6,velocity,center_uy,-0.10373646020889282 +illusion_1.5L,target,129,51.6,velocity,lower_ux,0.4754820764064789 +illusion_1.5L,target,129,51.6,velocity,lower_uy,0.11778727173805237 +illusion_1.5L,target,130,52.0,velocity,upper_ux,1.3889864683151245 +illusion_1.5L,target,130,52.0,velocity,upper_uy,-0.15786947309970856 +illusion_1.5L,target,130,52.0,velocity,center_ux,0.8028402924537659 +illusion_1.5L,target,130,52.0,velocity,center_uy,0.3130926787853241 +illusion_1.5L,target,130,52.0,velocity,lower_ux,0.5191904306411743 +illusion_1.5L,target,130,52.0,velocity,lower_uy,0.3171440064907074 +illusion_1.5L,target,131,52.4,velocity,upper_ux,1.2072197198867798 +illusion_1.5L,target,131,52.4,velocity,upper_uy,0.2562369108200073 +illusion_1.5L,target,131,52.4,velocity,center_ux,0.7967100739479065 +illusion_1.5L,target,131,52.4,velocity,center_uy,0.6468349695205688 +illusion_1.5L,target,131,52.4,velocity,lower_ux,0.6167640089988708 +illusion_1.5L,target,131,52.4,velocity,lower_uy,0.4154653251171112 +illusion_1.5L,target,132,52.8,velocity,upper_ux,1.0667099952697754 +illusion_1.5L,target,132,52.8,velocity,upper_uy,0.5077632665634155 +illusion_1.5L,target,132,52.8,velocity,center_ux,0.8334993124008179 +illusion_1.5L,target,132,52.8,velocity,center_uy,0.7551316618919373 +illusion_1.5L,target,132,52.8,velocity,lower_ux,0.7239074110984802 +illusion_1.5L,target,132,52.8,velocity,lower_uy,0.45204612612724304 +illusion_1.5L,target,133,53.2,velocity,upper_ux,0.9968470931053162 +illusion_1.5L,target,133,53.2,velocity,upper_uy,0.552467942237854 +illusion_1.5L,target,133,53.2,velocity,center_ux,0.879367470741272 +illusion_1.5L,target,133,53.2,velocity,center_uy,0.7309160828590393 +illusion_1.5L,target,133,53.2,velocity,lower_ux,0.8148595690727234 +illusion_1.5L,target,133,53.2,velocity,lower_uy,0.4806619882583618 +illusion_1.5L,target,134,53.6,velocity,upper_ux,0.9525260925292969 +illusion_1.5L,target,134,53.6,velocity,upper_uy,0.5396239757537842 +illusion_1.5L,target,134,53.6,velocity,center_ux,0.9147583246231079 +illusion_1.5L,target,134,53.6,velocity,center_uy,0.7137672901153564 +illusion_1.5L,target,134,53.6,velocity,lower_ux,0.893758237361908 +illusion_1.5L,target,134,53.6,velocity,lower_uy,0.505087673664093 +illusion_1.5L,target,135,54.0,velocity,upper_ux,0.9068823456764221 +illusion_1.5L,target,135,54.0,velocity,upper_uy,0.5375852584838867 +illusion_1.5L,target,135,54.0,velocity,center_ux,0.943009614944458 +illusion_1.5L,target,135,54.0,velocity,center_uy,0.7183326482772827 +illusion_1.5L,target,135,54.0,velocity,lower_ux,0.9665648937225342 +illusion_1.5L,target,135,54.0,velocity,lower_uy,0.5262473225593567 +illusion_1.5L,target,136,54.4,velocity,upper_ux,0.8558637499809265 +illusion_1.5L,target,136,54.4,velocity,upper_uy,0.5443374514579773 +illusion_1.5L,target,136,54.4,velocity,center_ux,0.9685548543930054 +illusion_1.5L,target,136,54.4,velocity,center_uy,0.7414147853851318 +illusion_1.5L,target,136,54.4,velocity,lower_ux,1.037427306175232 +illusion_1.5L,target,136,54.4,velocity,lower_uy,0.5459608435630798 +illusion_1.5L,target,137,54.8,velocity,upper_ux,0.7946479916572571 +illusion_1.5L,target,137,54.8,velocity,upper_uy,0.5490642189979553 +illusion_1.5L,target,137,54.8,velocity,center_ux,0.9931581616401672 +illusion_1.5L,target,137,54.8,velocity,center_uy,0.7815271615982056 +illusion_1.5L,target,137,54.8,velocity,lower_ux,1.1091889142990112 +illusion_1.5L,target,137,54.8,velocity,lower_uy,0.5650830864906311 +illusion_1.5L,target,138,55.2,velocity,upper_ux,0.7177883386611938 +illusion_1.5L,target,138,55.2,velocity,upper_uy,0.5319406986236572 +illusion_1.5L,target,138,55.2,velocity,center_ux,1.014288067817688 +illusion_1.5L,target,138,55.2,velocity,center_uy,0.8283827304840088 +illusion_1.5L,target,138,55.2,velocity,lower_ux,1.184059739112854 +illusion_1.5L,target,138,55.2,velocity,lower_uy,0.5834859609603882 +illusion_1.5L,target,139,55.6,velocity,upper_ux,0.6283031702041626 +illusion_1.5L,target,139,55.6,velocity,upper_uy,0.461512953042984 +illusion_1.5L,target,139,55.6,velocity,center_ux,1.0193098783493042 +illusion_1.5L,target,139,55.6,velocity,center_uy,0.8341604471206665 +illusion_1.5L,target,139,55.6,velocity,lower_ux,1.265927791595459 +illusion_1.5L,target,139,55.6,velocity,lower_uy,0.5999821424484253 +illusion_1.5L,target,140,56.0,velocity,upper_ux,0.5433032512664795 +illusion_1.5L,target,140,56.0,velocity,upper_uy,0.3126686215400696 +illusion_1.5L,target,140,56.0,velocity,center_ux,0.9876151084899902 +illusion_1.5L,target,140,56.0,velocity,center_uy,0.710416316986084 +illusion_1.5L,target,140,56.0,velocity,lower_ux,1.358849048614502 +illusion_1.5L,target,140,56.0,velocity,lower_uy,0.6098861694335938 +illusion_1.5L,target,141,56.4,velocity,upper_ux,0.48744919896125793 +illusion_1.5L,target,141,56.4,velocity,upper_uy,0.09443823993206024 +illusion_1.5L,target,141,56.4,velocity,center_ux,0.9222820997238159 +illusion_1.5L,target,141,56.4,velocity,center_uy,0.4338357448577881 +illusion_1.5L,target,141,56.4,velocity,lower_ux,1.4532591104507446 +illusion_1.5L,target,141,56.4,velocity,lower_uy,0.5883429050445557 +illusion_1.5L,target,142,56.8,velocity,upper_ux,0.4789165258407593 +illusion_1.5L,target,142,56.8,velocity,upper_uy,-0.14631733298301697 +illusion_1.5L,target,142,56.8,velocity,center_ux,0.8484792113304138 +illusion_1.5L,target,142,56.8,velocity,center_uy,0.052861083298921585 +illusion_1.5L,target,142,56.8,velocity,lower_ux,1.480248212814331 +illusion_1.5L,target,142,56.8,velocity,lower_uy,0.44742855429649353 +illusion_1.5L,target,143,57.2,velocity,upper_ux,0.5308424830436707 +illusion_1.5L,target,143,57.2,velocity,upper_uy,-0.3351079225540161 +illusion_1.5L,target,143,57.2,velocity,center_ux,0.8009513020515442 +illusion_1.5L,target,143,57.2,velocity,center_uy,-0.3630467653274536 +illusion_1.5L,target,143,57.2,velocity,lower_ux,1.37040376663208 +illusion_1.5L,target,143,57.2,velocity,lower_uy,0.10702615976333618 +illusion_1.5L,target,144,57.6,velocity,upper_ux,0.6308084726333618 +illusion_1.5L,target,144,57.6,velocity,upper_uy,-0.4214709997177124 +illusion_1.5L,target,144,57.6,velocity,center_ux,0.799266517162323 +illusion_1.5L,target,144,57.6,velocity,center_uy,-0.6737868785858154 +illusion_1.5L,target,144,57.6,velocity,lower_ux,1.1854168176651 +illusion_1.5L,target,144,57.6,velocity,lower_uy,-0.3000498414039612 +illusion_1.5L,target,145,58.0,velocity,upper_ux,0.7346347570419312 +illusion_1.5L,target,145,58.0,velocity,upper_uy,-0.45554420351982117 +illusion_1.5L,target,145,58.0,velocity,center_ux,0.8376787304878235 +illusion_1.5L,target,145,58.0,velocity,center_uy,-0.7548074126243591 +illusion_1.5L,target,145,58.0,velocity,lower_ux,1.0528538227081299 +illusion_1.5L,target,145,58.0,velocity,lower_uy,-0.5215361714363098 +illusion_1.5L,target,146,58.4,velocity,upper_ux,0.8237424492835999 +illusion_1.5L,target,146,58.4,velocity,upper_uy,-0.48376959562301636 +illusion_1.5L,target,146,58.4,velocity,center_ux,0.8827822208404541 +illusion_1.5L,target,146,58.4,velocity,center_uy,-0.7272616028785706 +illusion_1.5L,target,146,58.4,velocity,lower_ux,0.9892774820327759 +illusion_1.5L,target,146,58.4,velocity,lower_uy,-0.5510041117668152 +illusion_1.5L,target,147,58.8,velocity,upper_ux,0.9044679999351501 +illusion_1.5L,target,147,58.8,velocity,upper_uy,-0.5083503127098083 +illusion_1.5L,target,147,58.8,velocity,center_ux,0.919844388961792 +illusion_1.5L,target,147,58.8,velocity,center_uy,-0.7139875292778015 +illusion_1.5L,target,147,58.8,velocity,lower_ux,0.948405385017395 +illusion_1.5L,target,147,58.8,velocity,lower_uy,-0.5390264391899109 +illusion_1.5L,target,148,59.2,velocity,upper_ux,0.9771808385848999 +illusion_1.5L,target,148,59.2,velocity,upper_uy,-0.5286579728126526 +illusion_1.5L,target,148,59.2,velocity,center_ux,0.9478328227996826 +illusion_1.5L,target,148,59.2,velocity,center_uy,-0.7201039791107178 +illusion_1.5L,target,148,59.2,velocity,lower_ux,0.9024167656898499 +illusion_1.5L,target,148,59.2,velocity,lower_uy,-0.5378632545471191 +illusion_1.5L,target,149,59.6,velocity,upper_ux,1.0474790334701538 +illusion_1.5L,target,149,59.6,velocity,upper_uy,-0.5483204126358032 +illusion_1.5L,target,149,59.6,velocity,center_ux,0.9726126194000244 +illusion_1.5L,target,149,59.6,velocity,center_uy,-0.7456010580062866 +illusion_1.5L,target,149,59.6,velocity,lower_ux,0.84963059425354 +illusion_1.5L,target,149,59.6,velocity,lower_uy,-0.5450800061225891 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_wide.csv new file mode 100644 index 0000000..82858a6 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1.5L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1.5L,target,0,0.0,1.482783555984497,-0.5179747343063354,0.8716368079185486,-0.19509167969226837,0.4743543267250061,0.06369379907846451 +illusion_1.5L,target,1,0.4,1.4215975999832153,-0.24760068953037262,0.8103084564208984,0.21847273409366608,0.5025169849395752,0.2794077694416046 +illusion_1.5L,target,2,0.8,1.2479419708251953,0.16738849878311157,0.7924339771270752,0.587090015411377,0.5904653668403625,0.40139397978782654 +illusion_1.5L,target,3,1.2,1.0920031070709229,0.47220098972320557,0.8227584958076477,0.7495884895324707,0.7004517912864685,0.44512617588043213 +illusion_1.5L,target,4,1.6,1.0098772048950195,0.5530207753181458,0.8705293536186218,0.7383401393890381,0.7961926460266113,0.47442248463630676 +illusion_1.5L,target,5,2.0,0.9631707072257996,0.5424894690513611,0.9081502556800842,0.7157570123672485,0.8770607113838196,0.49990031123161316 +illusion_1.5L,target,6,2.4,0.9175106287002563,0.5372785329818726,0.9366885423660278,0.7157886028289795,0.9499441385269165,0.5216187834739685 +illusion_1.5L,target,7,2.8,0.8671510815620422,0.5428350567817688,0.9617502689361572,0.7346794605255127,1.020037055015564,0.5415472984313965 +illusion_1.5L,target,8,3.2,0.8094770312309265,0.5493053793907166,0.9870826601982117,0.7710368633270264,1.0918371677398682,0.5607690215110779 +illusion_1.5L,target,9,3.6,0.7376057505607605,0.5396278500556946,1.0107462406158447,0.8185744285583496,1.1669639348983765,0.5794548392295837 +illusion_1.5L,target,10,4.0,0.6504388451576233,0.4842383861541748,1.0216500759124756,0.8412036895751953,1.247309684753418,0.5966224670410156 +illusion_1.5L,target,11,4.4,0.5616580247879028,0.3538191616535187,0.998767077922821,0.7533485889434814,1.3371939659118652,0.6089557409286499 +illusion_1.5L,target,12,4.8,0.4955946207046509,0.1483040302991867,0.9372222423553467,0.5074542164802551,1.4320346117019653,0.5987984538078308 +illusion_1.5L,target,13,5.2,0.47487902641296387,-0.09275801479816437,0.8629229068756104,0.14620257914066315,1.483522653579712,0.4959683120250702 +illusion_1.5L,target,14,5.6,0.5135915279388428,-0.30050960183143616,0.8083277940750122,-0.2704259157180786,1.4073481559753418,0.2001705914735794 +illusion_1.5L,target,15,6.0,0.607000470161438,-0.40951278805732727,0.7963954210281372,-0.6217831373214722,1.2272800207138062,-0.21678780019283295 +illusion_1.5L,target,16,6.4,0.713185727596283,-0.4488278329372406,0.8280825614929199,-0.7533674836158752,1.0767017602920532,-0.49264228343963623 +illusion_1.5L,target,17,6.8,0.8045552968978882,-0.4777476489543915,0.8734000325202942,-0.7337217926979065,1.0002375841140747,-0.5523510575294495 +illusion_1.5L,target,18,7.2,0.8859468102455139,-0.5032601356506348,0.911502480506897,-0.715033769607544,0.9570525884628296,-0.5408613681793213 +illusion_1.5L,target,19,7.6,0.9600100517272949,-0.524025559425354,0.9410032033920288,-0.7166600227355957,0.9126384854316711,-0.5367266535758972 +illusion_1.5L,target,20,8.0,1.032904863357544,-0.5441406965255737,0.9679598808288574,-0.7383930087089539,0.8625190854072571,-0.5430998802185059 +illusion_1.5L,target,21,8.4,1.1022990942001343,-0.5630387663841248,0.9910638928413391,-0.7767208814620972,0.8018806576728821,-0.5486374497413635 +illusion_1.5L,target,22,8.8,1.1748501062393188,-0.5814601182937622,1.0112766027450562,-0.8241025805473328,0.7249518036842346,-0.5351646542549133 +illusion_1.5L,target,23,9.2,1.2551482915878296,-0.5982275605201721,1.0188027620315552,-0.837980329990387,0.635877788066864,-0.4721287190914154 +illusion_1.5L,target,24,9.6,1.3479231595993042,-0.6094215512275696,0.9929994940757751,-0.7313733100891113,0.5506681203842163,-0.3322957754135132 +illusion_1.5L,target,25,10.0,1.4441499710083008,-0.5936139822006226,0.9307604432106018,-0.4688534140586853,0.49188682436943054,-0.11967240273952484 +illusion_1.5L,target,26,10.4,1.4844467639923096,-0.4718170166015625,0.8568694591522217,-0.09659447520971298,0.4781840443611145,0.12192637473344803 +illusion_1.5L,target,27,10.8,1.3875374794006348,-0.15128940343856812,0.8033667802810669,0.32089149951934814,0.5220116972923279,0.31986016035079956 +illusion_1.5L,target,28,11.2,1.2022647857666016,0.2621086835861206,0.7951354384422302,0.6511837244033813,0.6175473928451538,0.4160756766796112 +illusion_1.5L,target,29,11.6,1.0616421699523926,0.5096370577812195,0.8309900760650635,0.7551659941673279,0.7228320837020874,0.4522113800048828 +illusion_1.5L,target,30,12.0,0.9946220517158508,0.552513599395752,0.8785661458969116,0.7304794192314148,0.8150948286056519,0.4808112680912018 +illusion_1.5L,target,31,12.4,0.9532555341720581,0.539689838886261,0.9167529940605164,0.7137629985809326,0.8968142867088318,0.5052961111068726 +illusion_1.5L,target,32,12.8,0.9079744219779968,0.5378563404083252,0.9456179738044739,0.7187832593917847,0.9703131318092346,0.526523232460022 +illusion_1.5L,target,33,13.2,0.8544919490814209,0.5447120070457458,0.9690899848937988,0.7423048615455627,1.0390160083770752,0.5462479591369629 +illusion_1.5L,target,34,13.6,0.7904678583145142,0.5493735074996948,0.9913095831871033,0.7825784087181091,1.1080936193466187,0.5653414130210876 +illusion_1.5L,target,35,14.0,0.7135241627693176,0.5318772792816162,1.0124906301498413,0.8289102911949158,1.182726263999939,0.5837350487709045 +illusion_1.5L,target,36,14.4,0.6265930533409119,0.4604337811470032,1.0197829008102417,0.8333876132965088,1.2672703266143799,0.6003854870796204 +illusion_1.5L,target,37,14.8,0.5441128015518188,0.3101557493209839,0.9894406795501709,0.7077094912528992,1.3625487089157104,0.6104184985160828 +illusion_1.5L,target,38,15.2,0.48745933175086975,0.09011009335517883,0.9213310480117798,0.42788413166999817,1.454291582107544,0.5872087478637695 +illusion_1.5L,target,39,15.6,0.47796905040740967,-0.15015868842601776,0.846189022064209,0.04647301509976387,1.4782838821411133,0.4437258839607239 +illusion_1.5L,target,40,16.0,0.5290862917900085,-0.3372482657432556,0.797676682472229,-0.3686125874519348,1.3645519018173218,0.10023413598537445 +illusion_1.5L,target,41,16.4,0.6306065320968628,-0.42228177189826965,0.7981479167938232,-0.6764373779296875,1.1816202402114868,-0.3055309057235718 +illusion_1.5L,target,42,16.8,0.7371273040771484,-0.4560946524143219,0.839728593826294,-0.755154550075531,1.0534287691116333,-0.5237687230110168 +illusion_1.5L,target,43,17.2,0.8273446559906006,-0.48429492115974426,0.8858850002288818,-0.7273687720298767,0.9914135932922363,-0.5516558289527893 +illusion_1.5L,target,44,17.6,0.9051508903503418,-0.5081836581230164,0.9199577569961548,-0.7134964466094971,0.9474402070045471,-0.5389650464057922 +illusion_1.5L,target,45,18.0,0.976296603679657,-0.5290756821632385,0.9464994072914124,-0.7207314968109131,0.8999366760253906,-0.5386555194854736 +illusion_1.5L,target,46,18.4,1.045931339263916,-0.5486842393875122,0.9707780480384827,-0.7462543249130249,0.8467196822166443,-0.5459192991256714 +illusion_1.5L,target,47,18.8,1.1181491613388062,-0.5677239894866943,0.9955043196678162,-0.7881439924240112,0.784013032913208,-0.5491241812705994 +illusion_1.5L,target,48,19.2,1.1953041553497314,-0.5860506296157837,1.0170451402664185,-0.8334259986877441,0.7066192030906677,-0.5266600251197815 +illusion_1.5L,target,49,19.6,1.2793949842453003,-0.6021883487701416,1.0186607837677002,-0.826713502407074,0.6170966029167175,-0.4461308419704437 +illusion_1.5L,target,50,20.0,1.3733134269714355,-0.6100994348526001,0.9803826212882996,-0.6801461577415466,0.5339788198471069,-0.2857021391391754 +illusion_1.5L,target,51,20.4,1.4609620571136475,-0.5779138207435608,0.9096518754959106,-0.3849828243255615,0.4818795323371887,-0.060505401343107224 +illusion_1.5L,target,52,20.8,1.472438931465149,-0.41192734241485596,0.8383996486663818,0.004919817205518484,0.48116791248321533,0.17749075591564178 +illusion_1.5L,target,53,21.2,1.345381259918213,-0.04752647876739502,0.797562837600708,0.41664373874664307,0.5423345565795898,0.35325825214385986 +illusion_1.5L,target,54,21.6,1.164832592010498,0.3464544415473938,0.8051641583442688,0.6997408270835876,0.6478055715560913,0.42822301387786865 +illusion_1.5L,target,55,22.0,1.042107343673706,0.5338958501815796,0.8457590341567993,0.7528324127197266,0.7491657137870789,0.45983850955963135 +illusion_1.5L,target,56,22.4,0.9833871722221375,0.5490850210189819,0.8887022137641907,0.7237508893013,0.8355357646942139,0.48750030994415283 +illusion_1.5L,target,57,22.8,0.94036465883255,0.5373860597610474,0.9221610426902771,0.7128641605377197,0.912863552570343,0.5108457803726196 +illusion_1.5L,target,58,23.2,0.8947716355323792,0.538508951663971,0.9505304098129272,0.7224466800689697,0.9860166907310486,0.5314762592315674 +illusion_1.5L,target,59,23.6,0.8421024084091187,0.5459861159324646,0.9762600064277649,0.7503719925880432,1.057480812072754,0.5510268807411194 +illusion_1.5L,target,60,24.0,0.7759144306182861,0.5474140644073486,0.999386191368103,0.7942382097244263,1.1287643909454346,0.5699787139892578 +illusion_1.5L,target,61,24.4,0.6939010620117188,0.5195979475975037,1.017188310623169,0.8372251391410828,1.2039310932159424,0.5879762768745422 +illusion_1.5L,target,62,24.8,0.6041058897972107,0.43073832988739014,1.015560269355774,0.8181920051574707,1.289819359779358,0.6042359471321106 +illusion_1.5L,target,63,25.2,0.524540901184082,0.2607426345348358,0.9728257060050964,0.6508428454399109,1.384369969367981,0.6092079281806946 +illusion_1.5L,target,64,25.6,0.4802786111831665,0.030665816739201546,0.9024436473846436,0.3414231538772583,1.4701040983200073,0.5672914981842041 +illusion_1.5L,target,65,26.0,0.48724743723869324,-0.20427805185317993,0.8332129120826721,-0.05689982324838638,1.4663218259811401,0.3775830566883087 +illusion_1.5L,target,66,26.4,0.5535830855369568,-0.3673882782459259,0.7949950695037842,-0.4628008008003235,1.3222076892852783,-0.005052132066339254 +illusion_1.5L,target,67,26.8,0.6581955552101135,-0.4320865571498871,0.8053233623504639,-0.7168128490447998,1.1415170431137085,-0.38200294971466064 +illusion_1.5L,target,68,27.2,0.7585062980651855,-0.4631345272064209,0.8491950035095215,-0.7500665783882141,1.030434012413025,-0.5416584014892578 +illusion_1.5L,target,69,27.6,0.8457235097885132,-0.490384966135025,0.8933544158935547,-0.721284806728363,0.9781796336174011,-0.5476551055908203 +illusion_1.5L,target,70,28.0,0.9243002533912659,-0.5133790969848633,0.9278926849365234,-0.713209331035614,0.9370384812355042,-0.5372031927108765 +illusion_1.5L,target,71,28.4,0.9961700439453125,-0.533897340297699,0.9548789858818054,-0.7252354621887207,0.8895775675773621,-0.5396315455436707 +illusion_1.5L,target,72,28.8,1.0648924112319946,-0.5533435940742493,0.9779105186462402,-0.7553245425224304,0.8329694867134094,-0.5472279787063599 +illusion_1.5L,target,73,29.2,1.1351984739303589,-0.5722135305404663,0.9998757839202881,-0.8002997040748596,0.7639824748039246,-0.5467225909233093 +illusion_1.5L,target,74,29.6,1.2123669385910034,-0.5901288390159607,1.0177676677703857,-0.8399090766906738,0.6817957162857056,-0.5133711099624634 +illusion_1.5L,target,75,30.0,1.3005006313323975,-0.6052879095077515,1.013196587562561,-0.8060640096664429,0.5938976407051086,-0.4145922064781189 +illusion_1.5L,target,76,30.4,1.3985127210617065,-0.6086441278457642,0.9674067497253418,-0.620171070098877,0.5187608599662781,-0.23529210686683655 +illusion_1.5L,target,77,30.8,1.476546287536621,-0.5548046231269836,0.8931047320365906,-0.2964465618133545,0.4779841899871826,-0.0005243386840447783 +illusion_1.5L,target,78,31.2,1.4532426595687866,-0.33945518732070923,0.8241941332817078,0.10832791030406952,0.48999446630477905,0.2296891212463379 +illusion_1.5L,target,79,31.6,1.2970325946807861,0.05741139501333237,0.791678786277771,0.5047072768211365,0.5628978610038757,0.3797202706336975 +illusion_1.5L,target,80,32.0,1.1241592168807983,0.41472136974334717,0.8097181916236877,0.7307388782501221,0.6708366870880127,0.4365171194076538 +illusion_1.5L,target,81,32.4,1.0246657133102417,0.5476982593536377,0.8572426438331604,0.7469689249992371,0.7716439962387085,0.46679791808128357 +illusion_1.5L,target,82,32.8,0.9751099944114685,0.5463739037513733,0.8997252583503723,0.7194347977638245,0.8572024703025818,0.49354442954063416 +illusion_1.5L,target,83,33.2,0.9310079216957092,0.5374189615249634,0.930815577507019,0.7139707803726196,0.9324670433998108,0.5160930752754211 +illusion_1.5L,target,84,33.6,0.8813876509666443,0.5409797430038452,0.9558609127998352,0.7281197309494019,1.0023351907730103,0.5363793969154358 +illusion_1.5L,target,85,34.0,0.8246636986732483,0.5484731197357178,0.9796338677406311,0.7600990533828735,1.0719246864318848,0.5557481050491333 +illusion_1.5L,target,86,34.4,0.7564544677734375,0.5455099940299988,1.0036906003952026,0.8060981631278992,1.145207166671753,0.5745878219604492 +illusion_1.5L,target,87,34.8,0.6739785075187683,0.5056436061859131,1.0210320949554443,0.8418336510658264,1.224871039390564,0.5923871994018555 +illusion_1.5L,target,88,35.2,0.5846538543701172,0.39664018154144287,1.0100899934768677,0.7922278046607971,1.3131709098815918,0.606844425201416 +illusion_1.5L,target,89,35.6,0.5103904604911804,0.20824497938156128,0.9572190046310425,0.5860952734947205,1.4091790914535522,0.6065723299980164 +illusion_1.5L,target,90,36.0,0.4749194085597992,-0.029417013749480247,0.881754994392395,0.24953468143939972,1.4794096946716309,0.5388051867485046 +illusion_1.5L,target,91,36.4,0.4958885610103607,-0.2536073327064514,0.8179500699043274,-0.16000401973724365,1.4403613805770874,0.2979942560195923 +illusion_1.5L,target,92,36.8,0.5776135325431824,-0.39081963896751404,0.7936431169509888,-0.5454841256141663,1.2757906913757324,-0.11017745733261108 +illusion_1.5L,target,93,37.2,0.6864105463027954,-0.4407767951488495,0.8171696662902832,-0.7414583563804626,1.1093612909317017,-0.44399890303611755 +illusion_1.5L,target,94,37.6,0.7828916311264038,-0.47049328684806824,0.8631883859634399,-0.7425662875175476,1.0165349245071411,-0.5505417585372925 +illusion_1.5L,target,95,38.0,0.8651894330978394,-0.49658259749412537,0.9023932814598083,-0.7171323895454407,0.9679357409477234,-0.5438109040260315 +illusion_1.5L,target,96,38.4,0.9400395750999451,-0.5186829566955566,0.9329684376716614,-0.7143157720565796,0.9240640997886658,-0.5366594195365906 +illusion_1.5L,target,97,38.8,1.0130360126495361,-0.539449155330658,0.9608693718910217,-0.7316363453865051,0.8770116567611694,-0.541900098323822 +illusion_1.5L,target,98,39.2,1.084486722946167,-0.5587854981422424,0.9859851002693176,-0.7659340500831604,0.8203657269477844,-0.5490186214447021 +illusion_1.5L,target,99,39.6,1.1573892831802368,-0.5775269865989685,1.00857412815094,-0.8131387233734131,0.7488307356834412,-0.5430961847305298 +illusion_1.5L,target,100,40.0,1.2342101335525513,-0.5942023992538452,1.0203018188476562,-0.8423101902008057,0.6614105105400085,-0.49557268619537354 +illusion_1.5L,target,101,40.4,1.3229050636291504,-0.6076655387878418,1.0039128065109253,-0.7751668691635132,0.5720613598823547,-0.37690556049346924 +illusion_1.5L,target,102,40.8,1.4198821783065796,-0.6033427715301514,0.9483283758163452,-0.5504243969917297,0.5029115676879883,-0.18062736093997955 +illusion_1.5L,target,103,41.2,1.4838443994522095,-0.5205957889556885,0.874452531337738,-0.20188136398792267,0.47573262453079224,0.05921927094459534 +illusion_1.5L,target,104,41.6,1.4272874593734741,-0.25399404764175415,0.8141721487045288,0.21241240203380585,0.5048573017120361,0.27655133605003357 +illusion_1.5L,target,105,42.0,1.2520854473114014,0.1609582155942917,0.7936775088310242,0.5835667252540588,0.5908198356628418,0.4001794755458832 +illusion_1.5L,target,106,42.4,1.0914561748504639,0.4687141180038452,0.8202327489852905,0.7486830353736877,0.697561502456665,0.44438350200653076 +illusion_1.5L,target,107,42.8,1.0073442459106445,0.5521776676177979,0.8667526245117188,0.7384322285652161,0.7920346856117249,0.47373801469802856 +illusion_1.5L,target,108,43.2,0.9627744555473328,0.5421646237373352,0.9066328406333923,0.7155903577804565,0.8750379681587219,0.4993085563182831 +illusion_1.5L,target,109,43.6,0.9201159477233887,0.5367364287376404,0.9381890296936035,0.7153618335723877,0.9510300159454346,0.5211385488510132 +illusion_1.5L,target,110,44.0,0.8702144622802734,0.5422071814537048,0.9638454914093018,0.7341889142990112,1.0218417644500732,0.5411521792411804 +illusion_1.5L,target,111,44.4,0.809755802154541,0.5488161444664001,0.986600935459137,0.7705373167991638,1.0909576416015625,0.5603711605072021 +illusion_1.5L,target,112,44.8,0.7354660630226135,0.539750874042511,1.0078744888305664,0.8178675770759583,1.1630667448043823,0.5789653658866882 +illusion_1.5L,target,113,45.2,0.6489783525466919,0.4858286678791046,1.0197968482971191,0.8412128686904907,1.2432787418365479,0.5961750149726868 +illusion_1.5L,target,114,45.6,0.5629341006278992,0.35728099942207336,1.0006340742111206,0.7565824389457703,1.33547043800354,0.6088834404945374 +illusion_1.5L,target,115,46.0,0.4984514117240906,0.15255235135555267,0.9415525794029236,0.5136594176292419,1.4328101873397827,0.5999575853347778 +illusion_1.5L,target,116,46.4,0.4759054481983185,-0.08887462317943573,0.8656735420227051,0.15343579649925232,1.484910249710083,0.4998091459274292 +illusion_1.5L,target,117,46.8,0.5112996101379395,-0.2980121672153473,0.8082126379013062,-0.26333606243133545,1.409803032875061,0.20761838555335999 +illusion_1.5L,target,118,47.2,0.6016148924827576,-0.4082176983356476,0.7927440404891968,-0.616580069065094,1.2275506258010864,-0.20925676822662354 +illusion_1.5L,target,119,47.6,0.7103792428970337,-0.44867026805877686,0.8264786601066589,-0.7541746497154236,1.0790916681289673,-0.4906078577041626 +illusion_1.5L,target,120,48.0,0.8042332530021667,-0.47713497281074524,0.8738749027252197,-0.7349474430084229,1.0030198097229004,-0.5533692240715027 +illusion_1.5L,target,121,48.4,0.8859522342681885,-0.5022096633911133,0.9122505784034729,-0.7148453593254089,0.9593532085418701,-0.5413464903831482 +illusion_1.5L,target,122,48.8,0.9591012001037598,-0.5237159729003906,0.9409105181694031,-0.7170224785804749,0.9138083457946777,-0.5375987887382507 +illusion_1.5L,target,123,49.2,1.028233289718628,-0.5435736775398254,0.964949369430542,-0.7379246354103088,0.8617492914199829,-0.5437963008880615 +illusion_1.5L,target,124,49.6,1.0982264280319214,-0.5627490878105164,0.9883809685707092,-0.7759981751441956,0.8007606267929077,-0.5496617555618286 +illusion_1.5L,target,125,50.0,1.1731162071228027,-0.5813039541244507,1.011167049407959,-0.8231827020645142,0.7268949151039124,-0.536899983882904 +illusion_1.5L,target,126,50.4,1.2558794021606445,-0.5983286499977112,1.0214077234268188,-0.8388094902038574,0.6404632329940796,-0.4749253988265991 +illusion_1.5L,target,127,50.8,1.3484481573104858,-0.6098740100860596,0.9955376386642456,-0.7351059913635254,0.5543674230575562,-0.3358179032802582 +illusion_1.5L,target,128,51.2,1.4422775506973267,-0.5947161316871643,0.9307715892791748,-0.4742456078529358,0.4920582175254822,-0.12364037334918976 +illusion_1.5L,target,129,51.6,1.4820986986160278,-0.47511690855026245,0.855267345905304,-0.10373646020889282,0.4754820764064789,0.11778727173805237 +illusion_1.5L,target,130,52.0,1.3889864683151245,-0.15786947309970856,0.8028402924537659,0.3130926787853241,0.5191904306411743,0.3171440064907074 +illusion_1.5L,target,131,52.4,1.2072197198867798,0.2562369108200073,0.7967100739479065,0.6468349695205688,0.6167640089988708,0.4154653251171112 +illusion_1.5L,target,132,52.8,1.0667099952697754,0.5077632665634155,0.8334993124008179,0.7551316618919373,0.7239074110984802,0.45204612612724304 +illusion_1.5L,target,133,53.2,0.9968470931053162,0.552467942237854,0.879367470741272,0.7309160828590393,0.8148595690727234,0.4806619882583618 +illusion_1.5L,target,134,53.6,0.9525260925292969,0.5396239757537842,0.9147583246231079,0.7137672901153564,0.893758237361908,0.505087673664093 +illusion_1.5L,target,135,54.0,0.9068823456764221,0.5375852584838867,0.943009614944458,0.7183326482772827,0.9665648937225342,0.5262473225593567 +illusion_1.5L,target,136,54.4,0.8558637499809265,0.5443374514579773,0.9685548543930054,0.7414147853851318,1.037427306175232,0.5459608435630798 +illusion_1.5L,target,137,54.8,0.7946479916572571,0.5490642189979553,0.9931581616401672,0.7815271615982056,1.1091889142990112,0.5650830864906311 +illusion_1.5L,target,138,55.2,0.7177883386611938,0.5319406986236572,1.014288067817688,0.8283827304840088,1.184059739112854,0.5834859609603882 +illusion_1.5L,target,139,55.6,0.6283031702041626,0.461512953042984,1.0193098783493042,0.8341604471206665,1.265927791595459,0.5999821424484253 +illusion_1.5L,target,140,56.0,0.5433032512664795,0.3126686215400696,0.9876151084899902,0.710416316986084,1.358849048614502,0.6098861694335938 +illusion_1.5L,target,141,56.4,0.48744919896125793,0.09443823993206024,0.9222820997238159,0.4338357448577881,1.4532591104507446,0.5883429050445557 +illusion_1.5L,target,142,56.8,0.4789165258407593,-0.14631733298301697,0.8484792113304138,0.052861083298921585,1.480248212814331,0.44742855429649353 +illusion_1.5L,target,143,57.2,0.5308424830436707,-0.3351079225540161,0.8009513020515442,-0.3630467653274536,1.37040376663208,0.10702615976333618 +illusion_1.5L,target,144,57.6,0.6308084726333618,-0.4214709997177124,0.799266517162323,-0.6737868785858154,1.1854168176651,-0.3000498414039612 +illusion_1.5L,target,145,58.0,0.7346347570419312,-0.45554420351982117,0.8376787304878235,-0.7548074126243591,1.0528538227081299,-0.5215361714363098 +illusion_1.5L,target,146,58.4,0.8237424492835999,-0.48376959562301636,0.8827822208404541,-0.7272616028785706,0.9892774820327759,-0.5510041117668152 +illusion_1.5L,target,147,58.8,0.9044679999351501,-0.5083503127098083,0.919844388961792,-0.7139875292778015,0.948405385017395,-0.5390264391899109 +illusion_1.5L,target,148,59.2,0.9771808385848999,-0.5286579728126526,0.9478328227996826,-0.7201039791107178,0.9024167656898499,-0.5378632545471191 +illusion_1.5L,target,149,59.6,1.0474790334701538,-0.5483204126358032,0.9726126194000244,-0.7456010580062866,0.84963059425354,-0.5450800061225891 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_dtw_convergence.csv new file mode 100644 index 0000000..95cc675 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1L,ppo,72,21.6,36,0.9409974674711487,-3,0.9546845257282257,0.9551288122311234,0.8916516022549735,0.9403048201153675,0.9665419360001882,0.9376731084970137 +illusion_1L,ppo,108,32.4,36,0.9723059530908897,10,0.9826925330691867,0.9616581794495384,0.9728903190957175,0.9640246756866367,0.9755842801597383,0.9769857310845206 +illusion_1L,ppo,144,43.2,36,0.9717049949836952,-3,0.9811481419536803,0.9625790207646787,0.9852400537994173,0.9508981022776829,0.9746024111906687,0.9757622399160432 +illusion_1L,ppo,180,54.0,36,0.9776486477499863,8,0.9824164393875334,0.9693056867432056,0.9809924728340573,0.9696124039797319,0.9831830759843191,0.9803818075710701 +illusion_1L,ppo,200,60.0,36,0.9812757387688315,2,0.9786662310361862,0.9727530401303537,0.9818200005425347,0.9817247360737787,0.988862716489368,0.9838277083407674 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_long.csv new file mode 100644 index 0000000..e9b87d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,ppo,0,0.0,velocity,upper_ux,1.0009665489196777 +illusion_1L,ppo,0,0.0,velocity,upper_uy,-0.2763201594352722 +illusion_1L,ppo,0,0.0,velocity,center_ux,0.9006004929542542 +illusion_1L,ppo,0,0.0,velocity,center_uy,-0.5161612629890442 +illusion_1L,ppo,0,0.0,velocity,lower_ux,0.9340792894363403 +illusion_1L,ppo,0,0.0,velocity,lower_uy,-0.3597192168235779 +illusion_1L,ppo,1,0.3,velocity,upper_ux,1.0479708909988403 +illusion_1L,ppo,1,0.3,velocity,upper_uy,-0.29965195059776306 +illusion_1L,ppo,1,0.3,velocity,center_ux,0.926100492477417 +illusion_1L,ppo,1,0.3,velocity,center_uy,-0.5294434428215027 +illusion_1L,ppo,1,0.3,velocity,lower_ux,0.8795818090438843 +illusion_1L,ppo,1,0.3,velocity,lower_uy,-0.3301173448562622 +illusion_1L,ppo,2,0.6,velocity,upper_ux,1.09857976436615 +illusion_1L,ppo,2,0.6,velocity,upper_uy,-0.31825485825538635 +illusion_1L,ppo,2,0.6,velocity,center_ux,0.9419899582862854 +illusion_1L,ppo,2,0.6,velocity,center_uy,-0.5475180745124817 +illusion_1L,ppo,2,0.6,velocity,lower_ux,0.8342626690864563 +illusion_1L,ppo,2,0.6,velocity,lower_uy,-0.2858925759792328 +illusion_1L,ppo,3,0.9,velocity,upper_ux,1.1531596183776855 +illusion_1L,ppo,3,0.9,velocity,upper_uy,-0.33176541328430176 +illusion_1L,ppo,3,0.9,velocity,center_ux,0.9440651535987854 +illusion_1L,ppo,3,0.9,velocity,center_uy,-0.5529239773750305 +illusion_1L,ppo,3,0.9,velocity,lower_ux,0.78998202085495 +illusion_1L,ppo,3,0.9,velocity,lower_uy,-0.22718454897403717 +illusion_1L,ppo,4,1.2,velocity,upper_ux,1.2136932611465454 +illusion_1L,ppo,4,1.2,velocity,upper_uy,-0.33856073021888733 +illusion_1L,ppo,4,1.2,velocity,center_ux,0.9256439208984375 +illusion_1L,ppo,4,1.2,velocity,center_uy,-0.5134324431419373 +illusion_1L,ppo,4,1.2,velocity,lower_ux,0.7526987791061401 +illusion_1L,ppo,4,1.2,velocity,lower_uy,-0.15174245834350586 +illusion_1L,ppo,5,1.5,velocity,upper_ux,1.2799627780914307 +illusion_1L,ppo,5,1.5,velocity,upper_uy,-0.33403611183166504 +illusion_1L,ppo,5,1.5,velocity,center_ux,0.8838610649108887 +illusion_1L,ppo,5,1.5,velocity,center_uy,-0.3949494957923889 +illusion_1L,ppo,5,1.5,velocity,lower_ux,0.7353151440620422 +illusion_1L,ppo,5,1.5,velocity,lower_uy,-0.06760326027870178 +illusion_1L,ppo,6,1.8,velocity,upper_ux,1.3467202186584473 +illusion_1L,ppo,6,1.8,velocity,upper_uy,-0.3060868978500366 +illusion_1L,ppo,6,1.8,velocity,center_ux,0.8261712789535522 +illusion_1L,ppo,6,1.8,velocity,center_uy,-0.18468743562698364 +illusion_1L,ppo,6,1.8,velocity,lower_ux,0.7470736503601074 +illusion_1L,ppo,6,1.8,velocity,lower_uy,0.011342000216245651 +illusion_1L,ppo,7,2.1,velocity,upper_ux,1.388343095779419 +illusion_1L,ppo,7,2.1,velocity,upper_uy,-0.228891983628273 +illusion_1L,ppo,7,2.1,velocity,center_ux,0.7735701203346252 +illusion_1L,ppo,7,2.1,velocity,center_uy,0.08430007845163345 +illusion_1L,ppo,7,2.1,velocity,lower_ux,0.7829515337944031 +illusion_1L,ppo,7,2.1,velocity,lower_uy,0.07485134154558182 +illusion_1L,ppo,8,2.4,velocity,upper_ux,1.3636932373046875 +illusion_1L,ppo,8,2.4,velocity,upper_uy,-0.07452793419361115 +illusion_1L,ppo,8,2.4,velocity,center_ux,0.7513853907585144 +illusion_1L,ppo,8,2.4,velocity,center_uy,0.3416922688484192 +illusion_1L,ppo,8,2.4,velocity,lower_ux,0.828917384147644 +illusion_1L,ppo,8,2.4,velocity,lower_uy,0.12904205918312073 +illusion_1L,ppo,9,2.7,velocity,upper_ux,1.2526260614395142 +illusion_1L,ppo,9,2.7,velocity,upper_uy,0.12914599478244781 +illusion_1L,ppo,9,2.7,velocity,center_ux,0.7722982168197632 +illusion_1L,ppo,9,2.7,velocity,center_uy,0.4933345913887024 +illusion_1L,ppo,9,2.7,velocity,lower_ux,0.8732394576072693 +illusion_1L,ppo,9,2.7,velocity,lower_uy,0.17830048501491547 +illusion_1L,ppo,10,3.0,velocity,upper_ux,1.107679009437561 +illusion_1L,ppo,10,3.0,velocity,upper_uy,0.2917996644973755 +illusion_1L,ppo,10,3.0,velocity,center_ux,0.8231104016304016 +illusion_1L,ppo,10,3.0,velocity,center_uy,0.5222650766372681 +illusion_1L,ppo,10,3.0,velocity,lower_ux,0.9163982272148132 +illusion_1L,ppo,10,3.0,velocity,lower_uy,0.22027534246444702 +illusion_1L,ppo,11,3.3,velocity,upper_ux,0.9937350749969482 +illusion_1L,ppo,11,3.3,velocity,upper_uy,0.3602091372013092 +illusion_1L,ppo,11,3.3,velocity,center_ux,0.8736693263053894 +illusion_1L,ppo,11,3.3,velocity,center_uy,0.5150195360183716 +illusion_1L,ppo,11,3.3,velocity,lower_ux,0.9624322652816772 +illusion_1L,ppo,11,3.3,velocity,lower_uy,0.2546125650405884 +illusion_1L,ppo,12,3.6,velocity,upper_ux,0.9222528338432312 +illusion_1L,ppo,12,3.6,velocity,upper_uy,0.35746562480926514 +illusion_1L,ppo,12,3.6,velocity,center_ux,0.9103153347969055 +illusion_1L,ppo,12,3.6,velocity,center_uy,0.519726037979126 +illusion_1L,ppo,12,3.6,velocity,lower_ux,1.010039210319519 +illusion_1L,ppo,12,3.6,velocity,lower_uy,0.2820090055465698 +illusion_1L,ppo,13,3.9,velocity,upper_ux,0.8743260502815247 +illusion_1L,ppo,13,3.9,velocity,upper_uy,0.3263583183288574 +illusion_1L,ppo,13,3.9,velocity,center_ux,0.9377684593200684 +illusion_1L,ppo,13,3.9,velocity,center_uy,0.5368818640708923 +illusion_1L,ppo,13,3.9,velocity,lower_ux,1.061715841293335 +illusion_1L,ppo,13,3.9,velocity,lower_uy,0.304252028465271 +illusion_1L,ppo,14,4.2,velocity,upper_ux,0.8277637958526611 +illusion_1L,ppo,14,4.2,velocity,upper_uy,0.2814238369464874 +illusion_1L,ppo,14,4.2,velocity,center_ux,0.9518494606018066 +illusion_1L,ppo,14,4.2,velocity,center_uy,0.5546439290046692 +illusion_1L,ppo,14,4.2,velocity,lower_ux,1.1125423908233643 +illusion_1L,ppo,14,4.2,velocity,lower_uy,0.32017889618873596 +illusion_1L,ppo,15,4.5,velocity,upper_ux,0.7828918695449829 +illusion_1L,ppo,15,4.5,velocity,upper_uy,0.22132736444473267 +illusion_1L,ppo,15,4.5,velocity,center_ux,0.9531441330909729 +illusion_1L,ppo,15,4.5,velocity,center_uy,0.5564010143280029 +illusion_1L,ppo,15,4.5,velocity,lower_ux,1.1701016426086426 +illusion_1L,ppo,15,4.5,velocity,lower_uy,0.33097565174102783 +illusion_1L,ppo,16,4.8,velocity,upper_ux,0.7458259463310242 +illusion_1L,ppo,16,4.8,velocity,upper_uy,0.14404836297035217 +illusion_1L,ppo,16,4.8,velocity,center_ux,0.9325342774391174 +illusion_1L,ppo,16,4.8,velocity,center_uy,0.5057598352432251 +illusion_1L,ppo,16,4.8,velocity,lower_ux,1.2341158390045166 +illusion_1L,ppo,16,4.8,velocity,lower_uy,0.3337334096431732 +illusion_1L,ppo,17,5.1,velocity,upper_ux,0.7295364141464233 +illusion_1L,ppo,17,5.1,velocity,upper_uy,0.0586673803627491 +illusion_1L,ppo,17,5.1,velocity,center_ux,0.8881731033325195 +illusion_1L,ppo,17,5.1,velocity,center_uy,0.3680028021335602 +illusion_1L,ppo,17,5.1,velocity,lower_ux,1.304292917251587 +illusion_1L,ppo,17,5.1,velocity,lower_uy,0.322342187166214 +illusion_1L,ppo,18,5.4,velocity,upper_ux,0.7427943348884583 +illusion_1L,ppo,18,5.4,velocity,upper_uy,-0.0187886580824852 +illusion_1L,ppo,18,5.4,velocity,center_ux,0.8323066234588623 +illusion_1L,ppo,18,5.4,velocity,center_uy,0.1385243684053421 +illusion_1L,ppo,18,5.4,velocity,lower_ux,1.3725461959838867 +illusion_1L,ppo,18,5.4,velocity,lower_uy,0.281924307346344 +illusion_1L,ppo,19,5.7,velocity,upper_ux,0.7793281078338623 +illusion_1L,ppo,19,5.7,velocity,upper_uy,-0.07944844663143158 +illusion_1L,ppo,19,5.7,velocity,center_ux,0.7892112135887146 +illusion_1L,ppo,19,5.7,velocity,center_uy,-0.13940420746803284 +illusion_1L,ppo,19,5.7,velocity,lower_ux,1.4086941480636597 +illusion_1L,ppo,19,5.7,velocity,lower_uy,0.1845666915178299 +illusion_1L,ppo,20,6.0,velocity,upper_ux,0.8230425715446472 +illusion_1L,ppo,20,6.0,velocity,upper_uy,-0.12881754338741302 +illusion_1L,ppo,20,6.0,velocity,center_ux,0.782753586769104 +illusion_1L,ppo,20,6.0,velocity,center_uy,-0.3774670958518982 +illusion_1L,ppo,20,6.0,velocity,lower_ux,1.3671486377716064 +illusion_1L,ppo,20,6.0,velocity,lower_uy,0.014370438642799854 +illusion_1L,ppo,21,6.3,velocity,upper_ux,0.8655215501785278 +illusion_1L,ppo,21,6.3,velocity,upper_uy,-0.1719098687171936 +illusion_1L,ppo,21,6.3,velocity,center_ux,0.8201076984405518 +illusion_1L,ppo,21,6.3,velocity,center_uy,-0.48792892694473267 +illusion_1L,ppo,21,6.3,velocity,lower_ux,1.2478431463241577 +illusion_1L,ppo,21,6.3,velocity,lower_uy,-0.17602704465389252 +illusion_1L,ppo,22,6.6,velocity,upper_ux,0.9063493013381958 +illusion_1L,ppo,22,6.6,velocity,upper_uy,-0.2071126401424408 +illusion_1L,ppo,22,6.6,velocity,center_ux,0.879219651222229 +illusion_1L,ppo,22,6.6,velocity,center_uy,-0.4862775206565857 +illusion_1L,ppo,22,6.6,velocity,lower_ux,1.1137290000915527 +illusion_1L,ppo,22,6.6,velocity,lower_uy,-0.2983038127422333 +illusion_1L,ppo,23,6.9,velocity,upper_ux,0.944991946220398 +illusion_1L,ppo,23,6.9,velocity,upper_uy,-0.23376622796058655 +illusion_1L,ppo,23,6.9,velocity,center_ux,0.9316920042037964 +illusion_1L,ppo,23,6.9,velocity,center_uy,-0.4630160629749298 +illusion_1L,ppo,23,6.9,velocity,lower_ux,1.0157439708709717 +illusion_1L,ppo,23,6.9,velocity,lower_uy,-0.33017775416374207 +illusion_1L,ppo,24,7.2,velocity,upper_ux,0.980758547782898 +illusion_1L,ppo,24,7.2,velocity,upper_uy,-0.253957062959671 +illusion_1L,ppo,24,7.2,velocity,center_ux,0.9732686281204224 +illusion_1L,ppo,24,7.2,velocity,center_uy,-0.44888976216316223 +illusion_1L,ppo,24,7.2,velocity,lower_ux,0.9523665308952332 +illusion_1L,ppo,24,7.2,velocity,lower_uy,-0.3120083510875702 +illusion_1L,ppo,25,7.5,velocity,upper_ux,1.0134023427963257 +illusion_1L,ppo,25,7.5,velocity,upper_uy,-0.2697131931781769 +illusion_1L,ppo,25,7.5,velocity,center_ux,1.0078681707382202 +illusion_1L,ppo,25,7.5,velocity,center_uy,-0.43887805938720703 +illusion_1L,ppo,25,7.5,velocity,lower_ux,0.9029467701911926 +illusion_1L,ppo,25,7.5,velocity,lower_uy,-0.2757386863231659 +illusion_1L,ppo,26,7.8,velocity,upper_ux,1.0445271730422974 +illusion_1L,ppo,26,7.8,velocity,upper_uy,-0.28327497839927673 +illusion_1L,ppo,26,7.8,velocity,center_ux,1.038203239440918 +illusion_1L,ppo,26,7.8,velocity,center_uy,-0.4295908510684967 +illusion_1L,ppo,26,7.8,velocity,lower_ux,0.8587290644645691 +illusion_1L,ppo,26,7.8,velocity,lower_uy,-0.22859932482242584 +illusion_1L,ppo,27,8.1,velocity,upper_ux,1.0697468519210815 +illusion_1L,ppo,27,8.1,velocity,upper_uy,-0.2951260209083557 +illusion_1L,ppo,27,8.1,velocity,center_ux,1.0584198236465454 +illusion_1L,ppo,27,8.1,velocity,center_uy,-0.4156695604324341 +illusion_1L,ppo,27,8.1,velocity,lower_ux,0.8172975778579712 +illusion_1L,ppo,27,8.1,velocity,lower_uy,-0.16847920417785645 +illusion_1L,ppo,28,8.4,velocity,upper_ux,1.0947368144989014 +illusion_1L,ppo,28,8.4,velocity,upper_uy,-0.30825021862983704 +illusion_1L,ppo,28,8.4,velocity,center_ux,1.0703669786453247 +illusion_1L,ppo,28,8.4,velocity,center_uy,-0.39545536041259766 +illusion_1L,ppo,28,8.4,velocity,lower_ux,0.7916041612625122 +illusion_1L,ppo,28,8.4,velocity,lower_uy,-0.10187157988548279 +illusion_1L,ppo,29,8.7,velocity,upper_ux,1.1183300018310547 +illusion_1L,ppo,29,8.7,velocity,upper_uy,-0.32375872135162354 +illusion_1L,ppo,29,8.7,velocity,center_ux,1.0663337707519531 +illusion_1L,ppo,29,8.7,velocity,center_uy,-0.3628951609134674 +illusion_1L,ppo,29,8.7,velocity,lower_ux,0.7877321839332581 +illusion_1L,ppo,29,8.7,velocity,lower_uy,-0.039786238223314285 +illusion_1L,ppo,30,9.0,velocity,upper_ux,1.141653299331665 +illusion_1L,ppo,30,9.0,velocity,upper_uy,-0.343321830034256 +illusion_1L,ppo,30,9.0,velocity,center_ux,1.0381749868392944 +illusion_1L,ppo,30,9.0,velocity,center_uy,-0.31072765588760376 +illusion_1L,ppo,30,9.0,velocity,lower_ux,0.8054836392402649 +illusion_1L,ppo,30,9.0,velocity,lower_uy,0.007759777829051018 +illusion_1L,ppo,31,9.3,velocity,upper_ux,1.1661075353622437 +illusion_1L,ppo,31,9.3,velocity,upper_uy,-0.3678799271583557 +illusion_1L,ppo,31,9.3,velocity,center_ux,0.977557897567749 +illusion_1L,ppo,31,9.3,velocity,center_uy,-0.23027867078781128 +illusion_1L,ppo,31,9.3,velocity,lower_ux,0.8338626027107239 +illusion_1L,ppo,31,9.3,velocity,lower_uy,0.04135488346219063 +illusion_1L,ppo,32,9.6,velocity,upper_ux,1.1923686265945435 +illusion_1L,ppo,32,9.6,velocity,upper_uy,-0.39527949690818787 +illusion_1L,ppo,32,9.6,velocity,center_ux,0.882355272769928 +illusion_1L,ppo,32,9.6,velocity,center_uy,-0.11583639681339264 +illusion_1L,ppo,32,9.6,velocity,lower_ux,0.8600314259529114 +illusion_1L,ppo,32,9.6,velocity,lower_uy,0.07030127197504044 +illusion_1L,ppo,33,9.9,velocity,upper_ux,1.21556556224823 +illusion_1L,ppo,33,9.9,velocity,upper_uy,-0.41415172815322876 +illusion_1L,ppo,33,9.9,velocity,center_ux,0.7671924829483032 +illusion_1L,ppo,33,9.9,velocity,center_uy,0.025105221197009087 +illusion_1L,ppo,33,9.9,velocity,lower_ux,0.8791168332099915 +illusion_1L,ppo,33,9.9,velocity,lower_uy,0.10160215198993683 +illusion_1L,ppo,34,10.2,velocity,upper_ux,1.2199163436889648 +illusion_1L,ppo,34,10.2,velocity,upper_uy,-0.39768263697624207 +illusion_1L,ppo,34,10.2,velocity,center_ux,0.6636844277381897 +illusion_1L,ppo,34,10.2,velocity,center_uy,0.17227977514266968 +illusion_1L,ppo,34,10.2,velocity,lower_ux,0.8946051001548767 +illusion_1L,ppo,34,10.2,velocity,lower_uy,0.13772672414779663 +illusion_1L,ppo,35,10.5,velocity,upper_ux,1.1824809312820435 +illusion_1L,ppo,35,10.5,velocity,upper_uy,-0.3164689242839813 +illusion_1L,ppo,35,10.5,velocity,center_ux,0.618683397769928 +illusion_1L,ppo,35,10.5,velocity,center_uy,0.28057825565338135 +illusion_1L,ppo,35,10.5,velocity,lower_ux,0.909851610660553 +illusion_1L,ppo,35,10.5,velocity,lower_uy,0.17461685836315155 +illusion_1L,ppo,36,10.8,velocity,upper_ux,1.0853004455566406 +illusion_1L,ppo,36,10.8,velocity,upper_uy,-0.14801393449306488 +illusion_1L,ppo,36,10.8,velocity,center_ux,0.6368246674537659 +illusion_1L,ppo,36,10.8,velocity,center_uy,0.3421396017074585 +illusion_1L,ppo,36,10.8,velocity,lower_ux,0.9279481172561646 +illusion_1L,ppo,36,10.8,velocity,lower_uy,0.21344570815563202 +illusion_1L,ppo,37,11.1,velocity,upper_ux,0.9391827583312988 +illusion_1L,ppo,37,11.1,velocity,upper_uy,0.0914253368973732 +illusion_1L,ppo,37,11.1,velocity,center_ux,0.6829020380973816 +illusion_1L,ppo,37,11.1,velocity,center_uy,0.3789761960506439 +illusion_1L,ppo,37,11.1,velocity,lower_ux,0.9493319988250732 +illusion_1L,ppo,37,11.1,velocity,lower_uy,0.2531600594520569 +illusion_1L,ppo,38,11.4,velocity,upper_ux,0.785677969455719 +illusion_1L,ppo,38,11.4,velocity,upper_uy,0.34331944584846497 +illusion_1L,ppo,38,11.4,velocity,center_ux,0.7209610342979431 +illusion_1L,ppo,38,11.4,velocity,center_uy,0.4219953715801239 +illusion_1L,ppo,38,11.4,velocity,lower_ux,0.9746410846710205 +illusion_1L,ppo,38,11.4,velocity,lower_uy,0.2939956784248352 +illusion_1L,ppo,39,11.7,velocity,upper_ux,0.6775466203689575 +illusion_1L,ppo,39,11.7,velocity,upper_uy,0.5246211290359497 +illusion_1L,ppo,39,11.7,velocity,center_ux,0.745303750038147 +illusion_1L,ppo,39,11.7,velocity,center_uy,0.4744791090488434 +illusion_1L,ppo,39,11.7,velocity,lower_ux,1.0042837858200073 +illusion_1L,ppo,39,11.7,velocity,lower_uy,0.33580729365348816 +illusion_1L,ppo,40,12.0,velocity,upper_ux,0.6439592242240906 +illusion_1L,ppo,40,12.0,velocity,upper_uy,0.5831810832023621 +illusion_1L,ppo,40,12.0,velocity,center_ux,0.760821521282196 +illusion_1L,ppo,40,12.0,velocity,center_uy,0.530243456363678 +illusion_1L,ppo,40,12.0,velocity,lower_ux,1.0397337675094604 +illusion_1L,ppo,40,12.0,velocity,lower_uy,0.37943464517593384 +illusion_1L,ppo,41,12.3,velocity,upper_ux,0.6593683362007141 +illusion_1L,ppo,41,12.3,velocity,upper_uy,0.5482664704322815 +illusion_1L,ppo,41,12.3,velocity,center_ux,0.7657274603843689 +illusion_1L,ppo,41,12.3,velocity,center_uy,0.5861049890518188 +illusion_1L,ppo,41,12.3,velocity,lower_ux,1.0805180072784424 +illusion_1L,ppo,41,12.3,velocity,lower_uy,0.42434796690940857 +illusion_1L,ppo,42,12.6,velocity,upper_ux,0.6739548444747925 +illusion_1L,ppo,42,12.6,velocity,upper_uy,0.4919058680534363 +illusion_1L,ppo,42,12.6,velocity,center_ux,0.759238600730896 +illusion_1L,ppo,42,12.6,velocity,center_uy,0.6428302526473999 +illusion_1L,ppo,42,12.6,velocity,lower_ux,1.1333705186843872 +illusion_1L,ppo,42,12.6,velocity,lower_uy,0.472793847322464 +illusion_1L,ppo,43,12.9,velocity,upper_ux,0.6664312481880188 +illusion_1L,ppo,43,12.9,velocity,upper_uy,0.438017338514328 +illusion_1L,ppo,43,12.9,velocity,center_ux,0.7359305620193481 +illusion_1L,ppo,43,12.9,velocity,center_uy,0.6861547231674194 +illusion_1L,ppo,43,12.9,velocity,lower_ux,1.1998934745788574 +illusion_1L,ppo,43,12.9,velocity,lower_uy,0.5229004621505737 +illusion_1L,ppo,44,13.2,velocity,upper_ux,0.6436238288879395 +illusion_1L,ppo,44,13.2,velocity,upper_uy,0.37817081809043884 +illusion_1L,ppo,44,13.2,velocity,center_ux,0.6968371868133545 +illusion_1L,ppo,44,13.2,velocity,center_uy,0.6780766844749451 +illusion_1L,ppo,44,13.2,velocity,lower_ux,1.2778377532958984 +illusion_1L,ppo,44,13.2,velocity,lower_uy,0.558830976486206 +illusion_1L,ppo,45,13.5,velocity,upper_ux,0.616401731967926 +illusion_1L,ppo,45,13.5,velocity,upper_uy,0.3002019226551056 +illusion_1L,ppo,45,13.5,velocity,center_ux,0.6531184315681458 +illusion_1L,ppo,45,13.5,velocity,center_uy,0.5748690962791443 +illusion_1L,ppo,45,13.5,velocity,lower_ux,1.345689058303833 +illusion_1L,ppo,45,13.5,velocity,lower_uy,0.520812451839447 +illusion_1L,ppo,46,13.8,velocity,upper_ux,0.5949262380599976 +illusion_1L,ppo,46,13.8,velocity,upper_uy,0.19950702786445618 +illusion_1L,ppo,46,13.8,velocity,center_ux,0.6193177103996277 +illusion_1L,ppo,46,13.8,velocity,center_uy,0.37269142270088196 +illusion_1L,ppo,46,13.8,velocity,lower_ux,1.376194715499878 +illusion_1L,ppo,46,13.8,velocity,lower_uy,0.3475358486175537 +illusion_1L,ppo,47,14.1,velocity,upper_ux,0.5879560112953186 +illusion_1L,ppo,47,14.1,velocity,upper_uy,0.07979433983564377 +illusion_1L,ppo,47,14.1,velocity,center_ux,0.6057933568954468 +illusion_1L,ppo,47,14.1,velocity,center_uy,0.10241959989070892 +illusion_1L,ppo,47,14.1,velocity,lower_ux,1.3818353414535522 +illusion_1L,ppo,47,14.1,velocity,lower_uy,0.08258974552154541 +illusion_1L,ppo,48,14.4,velocity,upper_ux,0.6015026569366455 +illusion_1L,ppo,48,14.4,velocity,upper_uy,-0.04656825587153435 +illusion_1L,ppo,48,14.4,velocity,center_ux,0.6189097166061401 +illusion_1L,ppo,48,14.4,velocity,center_uy,-0.1910044252872467 +illusion_1L,ppo,48,14.4,velocity,lower_ux,1.3692554235458374 +illusion_1L,ppo,48,14.4,velocity,lower_uy,-0.19103451073169708 +illusion_1L,ppo,49,14.7,velocity,upper_ux,0.6401312947273254 +illusion_1L,ppo,49,14.7,velocity,upper_uy,-0.1569630652666092 +illusion_1L,ppo,49,14.7,velocity,center_ux,0.6561639904975891 +illusion_1L,ppo,49,14.7,velocity,center_uy,-0.4545067250728607 +illusion_1L,ppo,49,14.7,velocity,lower_ux,1.3304451704025269 +illusion_1L,ppo,49,14.7,velocity,lower_uy,-0.4043273627758026 +illusion_1L,ppo,50,15.0,velocity,upper_ux,0.7041741013526917 +illusion_1L,ppo,50,15.0,velocity,upper_uy,-0.23050761222839355 +illusion_1L,ppo,50,15.0,velocity,center_ux,0.7084307074546814 +illusion_1L,ppo,50,15.0,velocity,center_uy,-0.643090546131134 +illusion_1L,ppo,50,15.0,velocity,lower_ux,1.2658867835998535 +illusion_1L,ppo,50,15.0,velocity,lower_uy,-0.5209875702857971 +illusion_1L,ppo,51,15.3,velocity,upper_ux,0.7793118953704834 +illusion_1L,ppo,51,15.3,velocity,upper_uy,-0.27648845314979553 +illusion_1L,ppo,51,15.3,velocity,center_ux,0.7640174031257629 +illusion_1L,ppo,51,15.3,velocity,center_uy,-0.7290127277374268 +illusion_1L,ppo,51,15.3,velocity,lower_ux,1.187130331993103 +illusion_1L,ppo,51,15.3,velocity,lower_uy,-0.5516942143440247 +illusion_1L,ppo,52,15.6,velocity,upper_ux,0.8520561456680298 +illusion_1L,ppo,52,15.6,velocity,upper_uy,-0.3173534870147705 +illusion_1L,ppo,52,15.6,velocity,center_ux,0.8130722045898438 +illusion_1L,ppo,52,15.6,velocity,center_uy,-0.7309223413467407 +illusion_1L,ppo,52,15.6,velocity,lower_ux,1.1090126037597656 +illusion_1L,ppo,52,15.6,velocity,lower_uy,-0.5381489992141724 +illusion_1L,ppo,53,15.9,velocity,upper_ux,0.9219806790351868 +illusion_1L,ppo,53,15.9,velocity,upper_uy,-0.3562130331993103 +illusion_1L,ppo,53,15.9,velocity,center_ux,0.8489457964897156 +illusion_1L,ppo,53,15.9,velocity,center_uy,-0.7141465544700623 +illusion_1L,ppo,53,15.9,velocity,lower_ux,1.0382969379425049 +illusion_1L,ppo,53,15.9,velocity,lower_uy,-0.5144712924957275 +illusion_1L,ppo,54,16.2,velocity,upper_ux,0.9928690791130066 +illusion_1L,ppo,54,16.2,velocity,upper_uy,-0.39162665605545044 +illusion_1L,ppo,54,16.2,velocity,center_ux,0.8699970245361328 +illusion_1L,ppo,54,16.2,velocity,center_uy,-0.7157424092292786 +illusion_1L,ppo,54,16.2,velocity,lower_ux,0.9726781249046326 +illusion_1L,ppo,54,16.2,velocity,lower_uy,-0.49024659395217896 +illusion_1L,ppo,55,16.5,velocity,upper_ux,1.0684486627578735 +illusion_1L,ppo,55,16.5,velocity,upper_uy,-0.4237130880355835 +illusion_1L,ppo,55,16.5,velocity,center_ux,0.8766194581985474 +illusion_1L,ppo,55,16.5,velocity,center_uy,-0.7329849004745483 +illusion_1L,ppo,55,16.5,velocity,lower_ux,0.9082731008529663 +illusion_1L,ppo,55,16.5,velocity,lower_uy,-0.45914900302886963 +illusion_1L,ppo,56,16.8,velocity,upper_ux,1.1532028913497925 +illusion_1L,ppo,56,16.8,velocity,upper_uy,-0.45039045810699463 +illusion_1L,ppo,56,16.8,velocity,center_ux,0.8669304251670837 +illusion_1L,ppo,56,16.8,velocity,center_uy,-0.7389875054359436 +illusion_1L,ppo,56,16.8,velocity,lower_ux,0.8429670929908752 +illusion_1L,ppo,56,16.8,velocity,lower_uy,-0.4079287052154541 +illusion_1L,ppo,57,17.1,velocity,upper_ux,1.244762659072876 +illusion_1L,ppo,57,17.1,velocity,upper_uy,-0.45189422369003296 +illusion_1L,ppo,57,17.1,velocity,center_ux,0.8420998454093933 +illusion_1L,ppo,57,17.1,velocity,center_uy,-0.6679954528808594 +illusion_1L,ppo,57,17.1,velocity,lower_ux,0.780195951461792 +illusion_1L,ppo,57,17.1,velocity,lower_uy,-0.32243773341178894 +illusion_1L,ppo,58,17.4,velocity,upper_ux,1.3131464719772339 +illusion_1L,ppo,58,17.4,velocity,upper_uy,-0.36229220032691956 +illusion_1L,ppo,58,17.4,velocity,center_ux,0.8149787783622742 +illusion_1L,ppo,58,17.4,velocity,center_uy,-0.46268296241760254 +illusion_1L,ppo,58,17.4,velocity,lower_ux,0.728767454624176 +illusion_1L,ppo,58,17.4,velocity,lower_uy,-0.19583317637443542 +illusion_1L,ppo,59,17.7,velocity,upper_ux,1.3239731788635254 +illusion_1L,ppo,59,17.7,velocity,upper_uy,-0.1523219347000122 +illusion_1L,ppo,59,17.7,velocity,center_ux,0.8015699982643127 +illusion_1L,ppo,59,17.7,velocity,center_uy,-0.14974376559257507 +illusion_1L,ppo,59,17.7,velocity,lower_ux,0.7021210193634033 +illusion_1L,ppo,59,17.7,velocity,lower_uy,-0.04306803643703461 +illusion_1L,ppo,60,18.0,velocity,upper_ux,1.2924935817718506 +illusion_1L,ppo,60,18.0,velocity,upper_uy,0.08932598680257797 +illusion_1L,ppo,60,18.0,velocity,center_ux,0.8087029457092285 +illusion_1L,ppo,60,18.0,velocity,center_uy,0.19765660166740417 +illusion_1L,ppo,60,18.0,velocity,lower_ux,0.7115726470947266 +illusion_1L,ppo,60,18.0,velocity,lower_uy,0.10390143096446991 +illusion_1L,ppo,61,18.3,velocity,upper_ux,1.2320256233215332 +illusion_1L,ppo,61,18.3,velocity,upper_uy,0.27846014499664307 +illusion_1L,ppo,61,18.3,velocity,center_ux,0.8334445357322693 +illusion_1L,ppo,61,18.3,velocity,center_uy,0.48349788784980774 +illusion_1L,ppo,61,18.3,velocity,lower_ux,0.7582898139953613 +illusion_1L,ppo,61,18.3,velocity,lower_uy,0.20781558752059937 +illusion_1L,ppo,62,18.6,velocity,upper_ux,1.155397653579712 +illusion_1L,ppo,62,18.6,velocity,upper_uy,0.38511133193969727 +illusion_1L,ppo,62,18.6,velocity,center_ux,0.8669574856758118 +illusion_1L,ppo,62,18.6,velocity,center_uy,0.6348947882652283 +illusion_1L,ppo,62,18.6,velocity,lower_ux,0.8252676129341125 +illusion_1L,ppo,62,18.6,velocity,lower_uy,0.26896101236343384 +illusion_1L,ppo,63,18.9,velocity,upper_ux,1.079685926437378 +illusion_1L,ppo,63,18.9,velocity,upper_uy,0.4246930778026581 +illusion_1L,ppo,63,18.9,velocity,center_ux,0.9000303149223328 +illusion_1L,ppo,63,18.9,velocity,center_uy,0.6627809405326843 +illusion_1L,ppo,63,18.9,velocity,lower_ux,0.8945906758308411 +illusion_1L,ppo,63,18.9,velocity,lower_uy,0.3111199736595154 +illusion_1L,ppo,64,19.2,velocity,upper_ux,1.011965274810791 +illusion_1L,ppo,64,19.2,velocity,upper_uy,0.43202340602874756 +illusion_1L,ppo,64,19.2,velocity,center_ux,0.925682783126831 +illusion_1L,ppo,64,19.2,velocity,center_uy,0.6549898386001587 +illusion_1L,ppo,64,19.2,velocity,lower_ux,0.9623709321022034 +illusion_1L,ppo,64,19.2,velocity,lower_uy,0.3459392786026001 +illusion_1L,ppo,65,19.5,velocity,upper_ux,0.9498518705368042 +illusion_1L,ppo,65,19.5,velocity,upper_uy,0.426735520362854 +illusion_1L,ppo,65,19.5,velocity,center_ux,0.941193163394928 +illusion_1L,ppo,65,19.5,velocity,center_uy,0.6606270670890808 +illusion_1L,ppo,65,19.5,velocity,lower_ux,1.0308730602264404 +illusion_1L,ppo,65,19.5,velocity,lower_uy,0.37615981698036194 +illusion_1L,ppo,66,19.8,velocity,upper_ux,0.8884464502334595 +illusion_1L,ppo,66,19.8,velocity,upper_uy,0.40898892283439636 +illusion_1L,ppo,66,19.8,velocity,center_ux,0.9452279806137085 +illusion_1L,ppo,66,19.8,velocity,center_uy,0.6834660768508911 +illusion_1L,ppo,66,19.8,velocity,lower_ux,1.1036629676818848 +illusion_1L,ppo,66,19.8,velocity,lower_uy,0.4030384421348572 +illusion_1L,ppo,67,20.1,velocity,upper_ux,0.8254408836364746 +illusion_1L,ppo,67,20.1,velocity,upper_uy,0.36867615580558777 +illusion_1L,ppo,67,20.1,velocity,center_ux,0.9332399368286133 +illusion_1L,ppo,67,20.1,velocity,center_uy,0.7053017020225525 +illusion_1L,ppo,67,20.1,velocity,lower_ux,1.1853500604629517 +illusion_1L,ppo,67,20.1,velocity,lower_uy,0.425668865442276 +illusion_1L,ppo,68,20.4,velocity,upper_ux,0.763007640838623 +illusion_1L,ppo,68,20.4,velocity,upper_uy,0.2929989993572235 +illusion_1L,ppo,68,20.4,velocity,center_ux,0.9002282619476318 +illusion_1L,ppo,68,20.4,velocity,center_uy,0.6645870804786682 +illusion_1L,ppo,68,20.4,velocity,lower_ux,1.2796871662139893 +illusion_1L,ppo,68,20.4,velocity,lower_uy,0.43484577536582947 +illusion_1L,ppo,69,20.7,velocity,upper_ux,0.7107405662536621 +illusion_1L,ppo,69,20.7,velocity,upper_uy,0.17714086174964905 +illusion_1L,ppo,69,20.7,velocity,center_ux,0.8587695360183716 +illusion_1L,ppo,69,20.7,velocity,center_uy,0.4798308312892914 +illusion_1L,ppo,69,20.7,velocity,lower_ux,1.3674812316894531 +illusion_1L,ppo,69,20.7,velocity,lower_uy,0.38365069031715393 +illusion_1L,ppo,70,21.0,velocity,upper_ux,0.6825059056282043 +illusion_1L,ppo,70,21.0,velocity,upper_uy,0.03277421370148659 +illusion_1L,ppo,70,21.0,velocity,center_ux,0.8366732001304626 +illusion_1L,ppo,70,21.0,velocity,center_uy,0.15719443559646606 +illusion_1L,ppo,70,21.0,velocity,lower_ux,1.391080617904663 +illusion_1L,ppo,70,21.0,velocity,lower_uy,0.19674620032310486 +illusion_1L,ppo,71,21.3,velocity,upper_ux,0.6921616196632385 +illusion_1L,ppo,71,21.3,velocity,upper_uy,-0.1064351350069046 +illusion_1L,ppo,71,21.3,velocity,center_ux,0.8465394377708435 +illusion_1L,ppo,71,21.3,velocity,center_uy,-0.19871187210083008 +illusion_1L,ppo,71,21.3,velocity,lower_ux,1.3434185981750488 +illusion_1L,ppo,71,21.3,velocity,lower_uy,-0.06291000545024872 +illusion_1L,ppo,72,21.6,velocity,upper_ux,0.7414799928665161 +illusion_1L,ppo,72,21.6,velocity,upper_uy,-0.2045205980539322 +illusion_1L,ppo,72,21.6,velocity,center_ux,0.8790727853775024 +illusion_1L,ppo,72,21.6,velocity,center_uy,-0.48163145780563354 +illusion_1L,ppo,72,21.6,velocity,lower_ux,1.267909288406372 +illusion_1L,ppo,72,21.6,velocity,lower_uy,-0.26591378450393677 +illusion_1L,ppo,73,21.9,velocity,upper_ux,0.8123254776000977 +illusion_1L,ppo,73,21.9,velocity,upper_uy,-0.2601091265678406 +illusion_1L,ppo,73,21.9,velocity,center_ux,0.9196674823760986 +illusion_1L,ppo,73,21.9,velocity,center_uy,-0.6226390600204468 +illusion_1L,ppo,73,21.9,velocity,lower_ux,1.1905627250671387 +illusion_1L,ppo,73,21.9,velocity,lower_uy,-0.37259265780448914 +illusion_1L,ppo,74,22.2,velocity,upper_ux,0.8804690837860107 +illusion_1L,ppo,74,22.2,velocity,upper_uy,-0.2953639030456543 +illusion_1L,ppo,74,22.2,velocity,center_ux,0.9534814357757568 +illusion_1L,ppo,74,22.2,velocity,center_uy,-0.6340482831001282 +illusion_1L,ppo,74,22.2,velocity,lower_ux,1.1185157299041748 +illusion_1L,ppo,74,22.2,velocity,lower_uy,-0.40971139073371887 +illusion_1L,ppo,75,22.5,velocity,upper_ux,0.9449856281280518 +illusion_1L,ppo,75,22.5,velocity,upper_uy,-0.322884738445282 +illusion_1L,ppo,75,22.5,velocity,center_ux,0.9814824461936951 +illusion_1L,ppo,75,22.5,velocity,center_uy,-0.6124574542045593 +illusion_1L,ppo,75,22.5,velocity,lower_ux,1.0593763589859009 +illusion_1L,ppo,75,22.5,velocity,lower_uy,-0.4201362431049347 +illusion_1L,ppo,76,22.8,velocity,upper_ux,1.0061784982681274 +illusion_1L,ppo,76,22.8,velocity,upper_uy,-0.34482601284980774 +illusion_1L,ppo,76,22.8,velocity,center_ux,1.0023915767669678 +illusion_1L,ppo,76,22.8,velocity,center_uy,-0.605635404586792 +illusion_1L,ppo,76,22.8,velocity,lower_ux,1.0055840015411377 +illusion_1L,ppo,76,22.8,velocity,lower_uy,-0.421988844871521 +illusion_1L,ppo,77,23.1,velocity,upper_ux,1.0667712688446045 +illusion_1L,ppo,77,23.1,velocity,upper_uy,-0.3628075122833252 +illusion_1L,ppo,77,23.1,velocity,center_ux,1.017976999282837 +illusion_1L,ppo,77,23.1,velocity,center_uy,-0.617432713508606 +illusion_1L,ppo,77,23.1,velocity,lower_ux,0.951136589050293 +illusion_1L,ppo,77,23.1,velocity,lower_uy,-0.4151519238948822 +illusion_1L,ppo,78,23.4,velocity,upper_ux,1.129928708076477 +illusion_1L,ppo,78,23.4,velocity,upper_uy,-0.37719738483428955 +illusion_1L,ppo,78,23.4,velocity,center_ux,1.028010606765747 +illusion_1L,ppo,78,23.4,velocity,center_uy,-0.6421993374824524 +illusion_1L,ppo,78,23.4,velocity,lower_ux,0.8915281295776367 +illusion_1L,ppo,78,23.4,velocity,lower_uy,-0.3899703919887543 +illusion_1L,ppo,79,23.7,velocity,upper_ux,1.1992398500442505 +illusion_1L,ppo,79,23.7,velocity,upper_uy,-0.3866143226623535 +illusion_1L,ppo,79,23.7,velocity,center_ux,1.0269603729248047 +illusion_1L,ppo,79,23.7,velocity,center_uy,-0.6561576724052429 +illusion_1L,ppo,79,23.7,velocity,lower_ux,0.8265203237533569 +illusion_1L,ppo,79,23.7,velocity,lower_uy,-0.33193057775497437 +illusion_1L,ppo,80,24.0,velocity,upper_ux,1.2779350280761719 +illusion_1L,ppo,80,24.0,velocity,upper_uy,-0.3861391544342041 +illusion_1L,ppo,80,24.0,velocity,center_ux,1.004358172416687 +illusion_1L,ppo,80,24.0,velocity,center_uy,-0.5934364199638367 +illusion_1L,ppo,80,24.0,velocity,lower_ux,0.7624126672744751 +illusion_1L,ppo,80,24.0,velocity,lower_uy,-0.22893618047237396 +illusion_1L,ppo,81,24.3,velocity,upper_ux,1.3591006994247437 +illusion_1L,ppo,81,24.3,velocity,upper_uy,-0.35668447613716125 +illusion_1L,ppo,81,24.3,velocity,center_ux,0.9635921120643616 +illusion_1L,ppo,81,24.3,velocity,center_uy,-0.3825330436229706 +illusion_1L,ppo,81,24.3,velocity,lower_ux,0.7135483026504517 +illusion_1L,ppo,81,24.3,velocity,lower_uy,-0.08531415462493896 +illusion_1L,ppo,82,24.6,velocity,upper_ux,1.3996593952178955 +illusion_1L,ppo,82,24.6,velocity,upper_uy,-0.2456424981355667 +illusion_1L,ppo,82,24.6,velocity,center_ux,0.9302139282226562 +illusion_1L,ppo,82,24.6,velocity,center_uy,-0.05237940326333046 +illusion_1L,ppo,82,24.6,velocity,lower_ux,0.6983792781829834 +illusion_1L,ppo,82,24.6,velocity,lower_uy,0.06865452229976654 +illusion_1L,ppo,83,24.9,velocity,upper_ux,1.3436378240585327 +illusion_1L,ppo,83,24.9,velocity,upper_uy,-0.0326990969479084 +illusion_1L,ppo,83,24.9,velocity,center_ux,0.9201825857162476 +illusion_1L,ppo,83,24.9,velocity,center_uy,0.27811285853385925 +illusion_1L,ppo,83,24.9,velocity,lower_ux,0.728197455406189 +illusion_1L,ppo,83,24.9,velocity,lower_uy,0.18503639101982117 +illusion_1L,ppo,84,25.2,velocity,upper_ux,1.2302428483963013 +illusion_1L,ppo,84,25.2,velocity,upper_uy,0.1730976104736328 +illusion_1L,ppo,84,25.2,velocity,center_ux,0.9294482469558716 +illusion_1L,ppo,84,25.2,velocity,center_uy,0.49576041102409363 +illusion_1L,ppo,84,25.2,velocity,lower_ux,0.7889851927757263 +illusion_1L,ppo,84,25.2,velocity,lower_uy,0.2477090209722519 +illusion_1L,ppo,85,25.5,velocity,upper_ux,1.130630612373352 +illusion_1L,ppo,85,25.5,velocity,upper_uy,0.2838194966316223 +illusion_1L,ppo,85,25.5,velocity,center_ux,0.947968065738678 +illusion_1L,ppo,85,25.5,velocity,center_uy,0.5574465394020081 +illusion_1L,ppo,85,25.5,velocity,lower_ux,0.8538589477539062 +illusion_1L,ppo,85,25.5,velocity,lower_uy,0.28331735730171204 +illusion_1L,ppo,86,25.8,velocity,upper_ux,1.0611460208892822 +illusion_1L,ppo,86,25.8,velocity,upper_uy,0.31920120120048523 +illusion_1L,ppo,86,25.8,velocity,center_ux,0.966501772403717 +illusion_1L,ppo,86,25.8,velocity,center_uy,0.5420201420783997 +illusion_1L,ppo,86,25.8,velocity,lower_ux,0.9127236008644104 +illusion_1L,ppo,86,25.8,velocity,lower_uy,0.3111553490161896 +illusion_1L,ppo,87,26.1,velocity,upper_ux,1.0099037885665894 +illusion_1L,ppo,87,26.1,velocity,upper_uy,0.32576999068260193 +illusion_1L,ppo,87,26.1,velocity,center_ux,0.9800758957862854 +illusion_1L,ppo,87,26.1,velocity,center_uy,0.5282737016677856 +illusion_1L,ppo,87,26.1,velocity,lower_ux,0.9665951728820801 +illusion_1L,ppo,87,26.1,velocity,lower_uy,0.334816038608551 +illusion_1L,ppo,88,26.4,velocity,upper_ux,0.9637888669967651 +illusion_1L,ppo,88,26.4,velocity,upper_uy,0.3265618085861206 +illusion_1L,ppo,88,26.4,velocity,center_ux,0.9885954856872559 +illusion_1L,ppo,88,26.4,velocity,center_uy,0.531059980392456 +illusion_1L,ppo,88,26.4,velocity,lower_ux,1.0175364017486572 +illusion_1L,ppo,88,26.4,velocity,lower_uy,0.3561646640300751 +illusion_1L,ppo,89,26.7,velocity,upper_ux,0.9164112210273743 +illusion_1L,ppo,89,26.7,velocity,upper_uy,0.3235429525375366 +illusion_1L,ppo,89,26.7,velocity,center_ux,0.9926232695579529 +illusion_1L,ppo,89,26.7,velocity,center_uy,0.5479938983917236 +illusion_1L,ppo,89,26.7,velocity,lower_ux,1.0675249099731445 +illusion_1L,ppo,89,26.7,velocity,lower_uy,0.3767314553260803 +illusion_1L,ppo,90,27.0,velocity,upper_ux,0.8651228547096252 +illusion_1L,ppo,90,27.0,velocity,upper_uy,0.3105006515979767 +illusion_1L,ppo,90,27.0,velocity,center_ux,0.9910640716552734 +illusion_1L,ppo,90,27.0,velocity,center_uy,0.5758571624755859 +illusion_1L,ppo,90,27.0,velocity,lower_ux,1.118925929069519 +illusion_1L,ppo,90,27.0,velocity,lower_uy,0.3975510895252228 +illusion_1L,ppo,91,27.3,velocity,upper_ux,0.8099183440208435 +illusion_1L,ppo,91,27.3,velocity,upper_uy,0.2784113883972168 +illusion_1L,ppo,91,27.3,velocity,center_ux,0.9797924757003784 +illusion_1L,ppo,91,27.3,velocity,center_uy,0.6044884324073792 +illusion_1L,ppo,91,27.3,velocity,lower_ux,1.1748199462890625 +illusion_1L,ppo,91,27.3,velocity,lower_uy,0.4189745783805847 +illusion_1L,ppo,92,27.6,velocity,upper_ux,0.754531979560852 +illusion_1L,ppo,92,27.6,velocity,upper_uy,0.21837377548217773 +illusion_1L,ppo,92,27.6,velocity,center_ux,0.9504159688949585 +illusion_1L,ppo,92,27.6,velocity,center_uy,0.6024015545845032 +illusion_1L,ppo,92,27.6,velocity,lower_ux,1.2395051717758179 +illusion_1L,ppo,92,27.6,velocity,lower_uy,0.4401297867298126 +illusion_1L,ppo,93,27.9,velocity,upper_ux,0.7084880471229553 +illusion_1L,ppo,93,27.9,velocity,upper_uy,0.12825168669223785 +illusion_1L,ppo,93,27.9,velocity,center_ux,0.8974979519844055 +illusion_1L,ppo,93,27.9,velocity,center_uy,0.5133038759231567 +illusion_1L,ppo,93,27.9,velocity,lower_ux,1.3150506019592285 +illusion_1L,ppo,93,27.9,velocity,lower_uy,0.45359060168266296 +illusion_1L,ppo,94,28.2,velocity,upper_ux,0.6856740713119507 +illusion_1L,ppo,94,28.2,velocity,upper_uy,0.018785716965794563 +illusion_1L,ppo,94,28.2,velocity,center_ux,0.8333287835121155 +illusion_1L,ppo,94,28.2,velocity,center_uy,0.29902753233909607 +illusion_1L,ppo,94,28.2,velocity,lower_ux,1.3852027654647827 +illusion_1L,ppo,94,28.2,velocity,lower_uy,0.42027950286865234 +illusion_1L,ppo,95,28.5,velocity,upper_ux,0.6986746191978455 +illusion_1L,ppo,95,28.5,velocity,upper_uy,-0.08432520925998688 +illusion_1L,ppo,95,28.5,velocity,center_ux,0.7846758961677551 +illusion_1L,ppo,95,28.5,velocity,center_uy,-0.0071824598126113415 +illusion_1L,ppo,95,28.5,velocity,lower_ux,1.3905307054519653 +illusion_1L,ppo,95,28.5,velocity,lower_uy,0.2505358159542084 +illusion_1L,ppo,96,28.8,velocity,upper_ux,0.7450180649757385 +illusion_1L,ppo,96,28.8,velocity,upper_uy,-0.16047361493110657 +illusion_1L,ppo,96,28.8,velocity,center_ux,0.7687440514564514 +illusion_1L,ppo,96,28.8,velocity,center_uy,-0.3213976323604584 +illusion_1L,ppo,96,28.8,velocity,lower_ux,1.3084614276885986 +illusion_1L,ppo,96,28.8,velocity,lower_uy,-0.04693884402513504 +illusion_1L,ppo,97,29.1,velocity,upper_ux,0.8046743869781494 +illusion_1L,ppo,97,29.1,velocity,upper_uy,-0.21486160159111023 +illusion_1L,ppo,97,29.1,velocity,center_ux,0.7874611020088196 +illusion_1L,ppo,97,29.1,velocity,center_uy,-0.5471676588058472 +illusion_1L,ppo,97,29.1,velocity,lower_ux,1.2038688659667969 +illusion_1L,ppo,97,29.1,velocity,lower_uy,-0.3061122000217438 +illusion_1L,ppo,98,29.4,velocity,upper_ux,0.8630480170249939 +illusion_1L,ppo,98,29.4,velocity,upper_uy,-0.2607599198818207 +illusion_1L,ppo,98,29.4,velocity,center_ux,0.8308919668197632 +illusion_1L,ppo,98,29.4,velocity,center_uy,-0.6278098821640015 +illusion_1L,ppo,98,29.4,velocity,lower_ux,1.114199161529541 +illusion_1L,ppo,98,29.4,velocity,lower_uy,-0.43738454580307007 +illusion_1L,ppo,99,29.7,velocity,upper_ux,0.9191783666610718 +illusion_1L,ppo,99,29.7,velocity,upper_uy,-0.30015531182289124 +illusion_1L,ppo,99,29.7,velocity,center_ux,0.8783200979232788 +illusion_1L,ppo,99,29.7,velocity,center_uy,-0.6231940984725952 +illusion_1L,ppo,99,29.7,velocity,lower_ux,1.0447020530700684 +illusion_1L,ppo,99,29.7,velocity,lower_uy,-0.46690064668655396 +illusion_1L,ppo,100,30.0,velocity,upper_ux,0.974696159362793 +illusion_1L,ppo,100,30.0,velocity,upper_uy,-0.33321642875671387 +illusion_1L,ppo,100,30.0,velocity,center_ux,0.9155005812644958 +illusion_1L,ppo,100,30.0,velocity,center_uy,-0.6176705956459045 +illusion_1L,ppo,100,30.0,velocity,lower_ux,0.9881066679954529 +illusion_1L,ppo,100,30.0,velocity,lower_uy,-0.4592517018318176 +illusion_1L,ppo,101,30.3,velocity,upper_ux,1.0324854850769043 +illusion_1L,ppo,101,30.3,velocity,upper_uy,-0.36209067702293396 +illusion_1L,ppo,101,30.3,velocity,center_ux,0.9433130025863647 +illusion_1L,ppo,101,30.3,velocity,center_uy,-0.6303406357765198 +illusion_1L,ppo,101,30.3,velocity,lower_ux,0.9332901835441589 +illusion_1L,ppo,101,30.3,velocity,lower_uy,-0.44854795932769775 +illusion_1L,ppo,102,30.6,velocity,upper_ux,1.090157151222229 +illusion_1L,ppo,102,30.6,velocity,upper_uy,-0.38596585392951965 +illusion_1L,ppo,102,30.6,velocity,center_ux,0.9626411199569702 +illusion_1L,ppo,102,30.6,velocity,center_uy,-0.6567465662956238 +illusion_1L,ppo,102,30.6,velocity,lower_ux,0.8785787224769592 +illusion_1L,ppo,102,30.6,velocity,lower_uy,-0.4374710023403168 +illusion_1L,ppo,103,30.9,velocity,upper_ux,1.154505968093872 +illusion_1L,ppo,103,30.9,velocity,upper_uy,-0.40694159269332886 +illusion_1L,ppo,103,30.9,velocity,center_ux,0.9741111397743225 +illusion_1L,ppo,103,30.9,velocity,center_uy,-0.6903706192970276 +illusion_1L,ppo,103,30.9,velocity,lower_ux,0.8173875212669373 +illusion_1L,ppo,103,30.9,velocity,lower_uy,-0.41457441449165344 +illusion_1L,ppo,104,31.2,velocity,upper_ux,1.2274019718170166 +illusion_1L,ppo,104,31.2,velocity,upper_uy,-0.4227302670478821 +illusion_1L,ppo,104,31.2,velocity,center_ux,0.9706832766532898 +illusion_1L,ppo,104,31.2,velocity,center_uy,-0.700888991355896 +illusion_1L,ppo,104,31.2,velocity,lower_ux,0.7524926662445068 +illusion_1L,ppo,104,31.2,velocity,lower_uy,-0.36458343267440796 +illusion_1L,ppo,105,31.5,velocity,upper_ux,1.3118916749954224 +illusion_1L,ppo,105,31.5,velocity,upper_uy,-0.42578497529029846 +illusion_1L,ppo,105,31.5,velocity,center_ux,0.9479699730873108 +illusion_1L,ppo,105,31.5,velocity,center_uy,-0.6240580677986145 +illusion_1L,ppo,105,31.5,velocity,lower_ux,0.6926198601722717 +illusion_1L,ppo,105,31.5,velocity,lower_uy,-0.27474847435951233 +illusion_1L,ppo,106,31.8,velocity,upper_ux,1.384732723236084 +illusion_1L,ppo,106,31.8,velocity,upper_uy,-0.37966910004615784 +illusion_1L,ppo,106,31.8,velocity,center_ux,0.9119595289230347 +illusion_1L,ppo,106,31.8,velocity,center_uy,-0.40585002303123474 +illusion_1L,ppo,106,31.8,velocity,lower_ux,0.6466218829154968 +illusion_1L,ppo,106,31.8,velocity,lower_uy,-0.1424848884344101 +illusion_1L,ppo,107,32.1,velocity,upper_ux,1.3967530727386475 +illusion_1L,ppo,107,32.1,velocity,upper_uy,-0.22114145755767822 +illusion_1L,ppo,107,32.1,velocity,center_ux,0.8890573978424072 +illusion_1L,ppo,107,32.1,velocity,center_uy,-0.08257841318845749 +illusion_1L,ppo,107,32.1,velocity,lower_ux,0.6315710544586182 +illusion_1L,ppo,107,32.1,velocity,lower_uy,0.012099883519113064 +illusion_1L,ppo,108,32.4,velocity,upper_ux,1.326084852218628 +illusion_1L,ppo,108,32.4,velocity,upper_uy,0.023706793785095215 +illusion_1L,ppo,108,32.4,velocity,center_ux,0.8873980641365051 +illusion_1L,ppo,108,32.4,velocity,center_uy,0.2575235664844513 +illusion_1L,ppo,108,32.4,velocity,lower_ux,0.6560983061790466 +illusion_1L,ppo,108,32.4,velocity,lower_uy,0.152481809258461 +illusion_1L,ppo,109,32.7,velocity,upper_ux,1.231289029121399 +illusion_1L,ppo,109,32.7,velocity,upper_uy,0.22666779160499573 +illusion_1L,ppo,109,32.7,velocity,center_ux,0.9026532173156738 +illusion_1L,ppo,109,32.7,velocity,center_uy,0.5194624066352844 +illusion_1L,ppo,109,32.7,velocity,lower_ux,0.7184242010116577 +illusion_1L,ppo,109,32.7,velocity,lower_uy,0.24309071898460388 +illusion_1L,ppo,110,33.0,velocity,upper_ux,1.147264838218689 +illusion_1L,ppo,110,33.0,velocity,upper_uy,0.332816481590271 +illusion_1L,ppo,110,33.0,velocity,center_ux,0.9248753786087036 +illusion_1L,ppo,110,33.0,velocity,center_uy,0.634475588798523 +illusion_1L,ppo,110,33.0,velocity,lower_ux,0.7968157529830933 +illusion_1L,ppo,110,33.0,velocity,lower_uy,0.28893032670021057 +illusion_1L,ppo,111,33.3,velocity,upper_ux,1.0793170928955078 +illusion_1L,ppo,111,33.3,velocity,upper_uy,0.36781397461891174 +illusion_1L,ppo,111,33.3,velocity,center_ux,0.946540117263794 +illusion_1L,ppo,111,33.3,velocity,center_uy,0.6327396035194397 +illusion_1L,ppo,111,33.3,velocity,lower_ux,0.8701993823051453 +illusion_1L,ppo,111,33.3,velocity,lower_uy,0.32079780101776123 +illusion_1L,ppo,112,33.6,velocity,upper_ux,1.0219885110855103 +illusion_1L,ppo,112,33.6,velocity,upper_uy,0.3756544888019562 +illusion_1L,ppo,112,33.6,velocity,center_ux,0.9636176824569702 +illusion_1L,ppo,112,33.6,velocity,center_uy,0.6107046604156494 +illusion_1L,ppo,112,33.6,velocity,lower_ux,0.9360341429710388 +illusion_1L,ppo,112,33.6,velocity,lower_uy,0.34896180033683777 +illusion_1L,ppo,113,33.9,velocity,upper_ux,0.9681534767150879 +illusion_1L,ppo,113,33.9,velocity,upper_uy,0.37863343954086304 +illusion_1L,ppo,113,33.9,velocity,center_ux,0.9750035405158997 +illusion_1L,ppo,113,33.9,velocity,center_uy,0.6083046197891235 +illusion_1L,ppo,113,33.9,velocity,lower_ux,0.9973363280296326 +illusion_1L,ppo,113,33.9,velocity,lower_uy,0.3734675645828247 +illusion_1L,ppo,114,34.2,velocity,upper_ux,0.9131554365158081 +illusion_1L,ppo,114,34.2,velocity,upper_uy,0.3784715235233307 +illusion_1L,ppo,114,34.2,velocity,center_ux,0.9815189838409424 +illusion_1L,ppo,114,34.2,velocity,center_uy,0.6247931718826294 +illusion_1L,ppo,114,34.2,velocity,lower_ux,1.0576906204223633 +illusion_1L,ppo,114,34.2,velocity,lower_uy,0.39566847681999207 +illusion_1L,ppo,115,34.5,velocity,upper_ux,0.85471111536026 +illusion_1L,ppo,115,34.5,velocity,upper_uy,0.3682405948638916 +illusion_1L,ppo,115,34.5,velocity,center_ux,0.9822733402252197 +illusion_1L,ppo,115,34.5,velocity,center_uy,0.6552550196647644 +illusion_1L,ppo,115,34.5,velocity,lower_ux,1.1205774545669556 +illusion_1L,ppo,115,34.5,velocity,lower_uy,0.41634032130241394 +illusion_1L,ppo,116,34.8,velocity,upper_ux,0.7926095724105835 +illusion_1L,ppo,116,34.8,velocity,upper_uy,0.33681997656822205 +illusion_1L,ppo,116,34.8,velocity,center_ux,0.9723482131958008 +illusion_1L,ppo,116,34.8,velocity,center_uy,0.6842919588088989 +illusion_1L,ppo,116,34.8,velocity,lower_ux,1.190671443939209 +illusion_1L,ppo,116,34.8,velocity,lower_uy,0.4349595606327057 +illusion_1L,ppo,117,35.1,velocity,upper_ux,0.7310217618942261 +illusion_1L,ppo,117,35.1,velocity,upper_uy,0.2722962498664856 +illusion_1L,ppo,117,35.1,velocity,center_ux,0.9427730441093445 +illusion_1L,ppo,117,35.1,velocity,center_uy,0.6642566919326782 +illusion_1L,ppo,117,35.1,velocity,lower_ux,1.2725167274475098 +illusion_1L,ppo,117,35.1,velocity,lower_uy,0.4475938379764557 +illusion_1L,ppo,118,35.4,velocity,upper_ux,0.679538905620575 +illusion_1L,ppo,118,35.4,velocity,upper_uy,0.16911247372627258 +illusion_1L,ppo,118,35.4,velocity,center_ux,0.8946107029914856 +illusion_1L,ppo,118,35.4,velocity,center_uy,0.5223116874694824 +illusion_1L,ppo,118,35.4,velocity,lower_ux,1.3620555400848389 +illusion_1L,ppo,118,35.4,velocity,lower_uy,0.43284210562705994 +illusion_1L,ppo,119,35.7,velocity,upper_ux,0.6516488790512085 +illusion_1L,ppo,119,35.7,velocity,upper_uy,0.03670685738325119 +illusion_1L,ppo,119,35.7,velocity,center_ux,0.851285457611084 +illusion_1L,ppo,119,35.7,velocity,center_uy,0.23857955634593964 +illusion_1L,ppo,119,35.7,velocity,lower_ux,1.4157360792160034 +illusion_1L,ppo,119,35.7,velocity,lower_uy,0.3193994462490082 +illusion_1L,ppo,120,36.0,velocity,upper_ux,0.660476565361023 +illusion_1L,ppo,120,36.0,velocity,upper_uy,-0.09480361640453339 +illusion_1L,ppo,120,36.0,velocity,center_ux,0.8354998826980591 +illusion_1L,ppo,120,36.0,velocity,center_uy,-0.1086873859167099 +illusion_1L,ppo,120,36.0,velocity,lower_ux,1.380955457687378 +illusion_1L,ppo,120,36.0,velocity,lower_uy,0.07361561059951782 +illusion_1L,ppo,121,36.3,velocity,upper_ux,0.7097500562667847 +illusion_1L,ppo,121,36.3,velocity,upper_uy,-0.19136729836463928 +illusion_1L,ppo,121,36.3,velocity,center_ux,0.8479799032211304 +illusion_1L,ppo,121,36.3,velocity,center_uy,-0.4200282096862793 +illusion_1L,ppo,121,36.3,velocity,lower_ux,1.2960612773895264 +illusion_1L,ppo,121,36.3,velocity,lower_uy,-0.17908988893032074 +illusion_1L,ppo,122,36.6,velocity,upper_ux,0.781975269317627 +illusion_1L,ppo,122,36.6,velocity,upper_uy,-0.24693600833415985 +illusion_1L,ppo,122,36.6,velocity,center_ux,0.8778175115585327 +illusion_1L,ppo,122,36.6,velocity,center_uy,-0.6098896265029907 +illusion_1L,ppo,122,36.6,velocity,lower_ux,1.2064834833145142 +illusion_1L,ppo,122,36.6,velocity,lower_uy,-0.33499279618263245 +illusion_1L,ppo,123,36.9,velocity,upper_ux,0.8534172773361206 +illusion_1L,ppo,123,36.9,velocity,upper_uy,-0.2857009768486023 +illusion_1L,ppo,123,36.9,velocity,center_ux,0.9130923748016357 +illusion_1L,ppo,123,36.9,velocity,center_uy,-0.6510850191116333 +illusion_1L,ppo,123,36.9,velocity,lower_ux,1.1273022890090942 +illusion_1L,ppo,123,36.9,velocity,lower_uy,-0.3944174647331238 +illusion_1L,ppo,124,37.2,velocity,upper_ux,0.9189209938049316 +illusion_1L,ppo,124,37.2,velocity,upper_uy,-0.3191376030445099 +illusion_1L,ppo,124,37.2,velocity,center_ux,0.9447160959243774 +illusion_1L,ppo,124,37.2,velocity,center_uy,-0.6276686191558838 +illusion_1L,ppo,124,37.2,velocity,lower_ux,1.0613479614257812 +illusion_1L,ppo,124,37.2,velocity,lower_uy,-0.4061000347137451 +illusion_1L,ppo,125,37.5,velocity,upper_ux,0.9807458519935608 +illusion_1L,ppo,125,37.5,velocity,upper_uy,-0.3470667600631714 +illusion_1L,ppo,125,37.5,velocity,center_ux,0.9684872627258301 +illusion_1L,ppo,125,37.5,velocity,center_uy,-0.6154345273971558 +illusion_1L,ppo,125,37.5,velocity,lower_ux,1.0033005475997925 +illusion_1L,ppo,125,37.5,velocity,lower_uy,-0.4069517254829407 +illusion_1L,ppo,126,37.8,velocity,upper_ux,1.0414057970046997 +illusion_1L,ppo,126,37.8,velocity,upper_uy,-0.370586633682251 +illusion_1L,ppo,126,37.8,velocity,center_ux,0.9856463670730591 +illusion_1L,ppo,126,37.8,velocity,center_uy,-0.6242743134498596 +illusion_1L,ppo,126,37.8,velocity,lower_ux,0.946551501750946 +illusion_1L,ppo,126,37.8,velocity,lower_uy,-0.40598952770233154 +illusion_1L,ppo,127,38.1,velocity,upper_ux,1.1033426523208618 +illusion_1L,ppo,127,38.1,velocity,upper_uy,-0.39071470499038696 +illusion_1L,ppo,127,38.1,velocity,center_ux,0.9969721436500549 +illusion_1L,ppo,127,38.1,velocity,center_uy,-0.6495075225830078 +illusion_1L,ppo,127,38.1,velocity,lower_ux,0.8867692351341248 +illusion_1L,ppo,127,38.1,velocity,lower_uy,-0.397591769695282 +illusion_1L,ppo,128,38.4,velocity,upper_ux,1.169887661933899 +illusion_1L,ppo,128,38.4,velocity,upper_uy,-0.4072091579437256 +illusion_1L,ppo,128,38.4,velocity,center_ux,0.9997844696044922 +illusion_1L,ppo,128,38.4,velocity,center_uy,-0.6798798441886902 +illusion_1L,ppo,128,38.4,velocity,lower_ux,0.8223000168800354 +illusion_1L,ppo,128,38.4,velocity,lower_uy,-0.3700094223022461 +illusion_1L,ppo,129,38.7,velocity,upper_ux,1.2449913024902344 +illusion_1L,ppo,129,38.7,velocity,upper_uy,-0.4172976315021515 +illusion_1L,ppo,129,38.7,velocity,center_ux,0.9862447381019592 +illusion_1L,ppo,129,38.7,velocity,center_uy,-0.6754773259162903 +illusion_1L,ppo,129,38.7,velocity,lower_ux,0.7559341788291931 +illusion_1L,ppo,129,38.7,velocity,lower_uy,-0.30891379714012146 +illusion_1L,ppo,130,39.0,velocity,upper_ux,1.3285789489746094 +illusion_1L,ppo,130,39.0,velocity,upper_uy,-0.4094526171684265 +illusion_1L,ppo,130,39.0,velocity,center_ux,0.9525597095489502 +illusion_1L,ppo,130,39.0,velocity,center_uy,-0.5610933899879456 +illusion_1L,ppo,130,39.0,velocity,lower_ux,0.6969277858734131 +illusion_1L,ppo,130,39.0,velocity,lower_uy,-0.20537590980529785 +illusion_1L,ppo,131,39.3,velocity,upper_ux,1.395446538925171 +illusion_1L,ppo,131,39.3,velocity,upper_uy,-0.3419164717197418 +illusion_1L,ppo,131,39.3,velocity,center_ux,0.9151179790496826 +illusion_1L,ppo,131,39.3,velocity,center_uy,-0.3023172616958618 +illusion_1L,ppo,131,39.3,velocity,lower_ux,0.6595995426177979 +illusion_1L,ppo,131,39.3,velocity,lower_uy,-0.06658793240785599 +illusion_1L,ppo,132,39.6,velocity,upper_ux,1.3863083124160767 +illusion_1L,ppo,132,39.6,velocity,upper_uy,-0.15922009944915771 +illusion_1L,ppo,132,39.6,velocity,center_ux,0.8946714401245117 +illusion_1L,ppo,132,39.6,velocity,center_uy,0.03964031860232353 +illusion_1L,ppo,132,39.6,velocity,lower_ux,0.658072292804718 +illusion_1L,ppo,132,39.6,velocity,lower_uy,0.08005765825510025 +illusion_1L,ppo,133,39.9,velocity,upper_ux,1.3007656335830688 +illusion_1L,ppo,133,39.9,velocity,upper_uy,0.07722784578800201 +illusion_1L,ppo,133,39.9,velocity,center_ux,0.8962388038635254 +illusion_1L,ppo,133,39.9,velocity,center_uy,0.3601389527320862 +illusion_1L,ppo,133,39.9,velocity,lower_ux,0.6991558074951172 +illusion_1L,ppo,133,39.9,velocity,lower_uy,0.19305835664272308 +illusion_1L,ppo,134,40.2,velocity,upper_ux,1.2015860080718994 +illusion_1L,ppo,134,40.2,velocity,upper_uy,0.24950790405273438 +illusion_1L,ppo,134,40.2,velocity,center_ux,0.9124839305877686 +illusion_1L,ppo,134,40.2,velocity,center_uy,0.5654183030128479 +illusion_1L,ppo,134,40.2,velocity,lower_ux,0.7690145969390869 +illusion_1L,ppo,134,40.2,velocity,lower_uy,0.2565910220146179 +illusion_1L,ppo,135,40.5,velocity,upper_ux,1.1186944246292114 +illusion_1L,ppo,135,40.5,velocity,upper_uy,0.32935836911201477 +illusion_1L,ppo,135,40.5,velocity,center_ux,0.9336329102516174 +illusion_1L,ppo,135,40.5,velocity,center_uy,0.6191556453704834 +illusion_1L,ppo,135,40.5,velocity,lower_ux,0.8412156701087952 +illusion_1L,ppo,135,40.5,velocity,lower_uy,0.29508817195892334 +illusion_1L,ppo,136,40.8,velocity,upper_ux,1.053945541381836 +illusion_1L,ppo,136,40.8,velocity,upper_uy,0.3532963693141937 +illusion_1L,ppo,136,40.8,velocity,center_ux,0.9527150392532349 +illusion_1L,ppo,136,40.8,velocity,center_uy,0.598950982093811 +illusion_1L,ppo,136,40.8,velocity,lower_ux,0.9057862162590027 +illusion_1L,ppo,136,40.8,velocity,lower_uy,0.327341765165329 +illusion_1L,ppo,137,41.1,velocity,upper_ux,0.999557375907898 +illusion_1L,ppo,137,41.1,velocity,upper_uy,0.35933607816696167 +illusion_1L,ppo,137,41.1,velocity,center_ux,0.9659923315048218 +illusion_1L,ppo,137,41.1,velocity,center_uy,0.5844613909721375 +illusion_1L,ppo,137,41.1,velocity,lower_ux,0.9648764133453369 +illusion_1L,ppo,137,41.1,velocity,lower_uy,0.3553725481033325 +illusion_1L,ppo,138,41.4,velocity,upper_ux,0.9480794072151184 +illusion_1L,ppo,138,41.4,velocity,upper_uy,0.36194390058517456 +illusion_1L,ppo,138,41.4,velocity,center_ux,0.9737830758094788 +illusion_1L,ppo,138,41.4,velocity,center_uy,0.58990877866745 +illusion_1L,ppo,138,41.4,velocity,lower_ux,1.0217998027801514 +illusion_1L,ppo,138,41.4,velocity,lower_uy,0.38063323497772217 +illusion_1L,ppo,139,41.7,velocity,upper_ux,0.8956334590911865 +illusion_1L,ppo,139,41.7,velocity,upper_uy,0.3598109483718872 +illusion_1L,ppo,139,41.7,velocity,center_ux,0.976518452167511 +illusion_1L,ppo,139,41.7,velocity,center_uy,0.6116507053375244 +illusion_1L,ppo,139,41.7,velocity,lower_ux,1.0792279243469238 +illusion_1L,ppo,139,41.7,velocity,lower_uy,0.40460318326950073 +illusion_1L,ppo,140,42.0,velocity,upper_ux,0.839647650718689 +illusion_1L,ppo,140,42.0,velocity,upper_uy,0.34556257724761963 +illusion_1L,ppo,140,42.0,velocity,center_ux,0.9720526337623596 +illusion_1L,ppo,140,42.0,velocity,center_uy,0.6443316340446472 +illusion_1L,ppo,140,42.0,velocity,lower_ux,1.1406638622283936 +illusion_1L,ppo,140,42.0,velocity,lower_uy,0.4282587170600891 +illusion_1L,ppo,141,42.3,velocity,upper_ux,0.7803148031234741 +illusion_1L,ppo,141,42.3,velocity,upper_uy,0.30865076184272766 +illusion_1L,ppo,141,42.3,velocity,center_ux,0.9538791179656982 +illusion_1L,ppo,141,42.3,velocity,center_uy,0.668739378452301 +illusion_1L,ppo,141,42.3,velocity,lower_ux,1.2104419469833374 +illusion_1L,ppo,141,42.3,velocity,lower_uy,0.4512474536895752 +illusion_1L,ppo,142,42.6,velocity,upper_ux,0.7224569320678711 +illusion_1L,ppo,142,42.6,velocity,upper_uy,0.23875829577445984 +illusion_1L,ppo,142,42.6,velocity,center_ux,0.9136645793914795 +illusion_1L,ppo,142,42.6,velocity,center_uy,0.6325414776802063 +illusion_1L,ppo,142,42.6,velocity,lower_ux,1.292899489402771 +illusion_1L,ppo,142,42.6,velocity,lower_uy,0.4683571755886078 +illusion_1L,ppo,143,42.9,velocity,upper_ux,0.6766911149024963 +illusion_1L,ppo,143,42.9,velocity,upper_uy,0.13361692428588867 +illusion_1L,ppo,143,42.9,velocity,center_ux,0.8575515747070312 +illusion_1L,ppo,143,42.9,velocity,center_uy,0.46991658210754395 +illusion_1L,ppo,143,42.9,velocity,lower_ux,1.3785840272903442 +illusion_1L,ppo,143,42.9,velocity,lower_uy,0.44709452986717224 +illusion_1L,ppo,144,43.2,velocity,upper_ux,0.6566859483718872 +illusion_1L,ppo,144,43.2,velocity,upper_uy,0.0061370269395411015 +illusion_1L,ppo,144,43.2,velocity,center_ux,0.8119715452194214 +illusion_1L,ppo,144,43.2,velocity,center_uy,0.17804767191410065 +illusion_1L,ppo,144,43.2,velocity,lower_ux,1.4137333631515503 +illusion_1L,ppo,144,43.2,velocity,lower_uy,0.29720351099967957 +illusion_1L,ppo,145,43.5,velocity,upper_ux,0.6749840974807739 +illusion_1L,ppo,145,43.5,velocity,upper_uy,-0.11324706673622131 +illusion_1L,ppo,145,43.5,velocity,center_ux,0.7975320219993591 +illusion_1L,ppo,145,43.5,velocity,center_uy,-0.16398967802524567 +illusion_1L,ppo,145,43.5,velocity,lower_ux,1.365068793296814 +illusion_1L,ppo,145,43.5,velocity,lower_uy,0.014933053404092789 +illusion_1L,ppo,146,43.8,velocity,upper_ux,0.7307496070861816 +illusion_1L,ppo,146,43.8,velocity,upper_uy,-0.1957475244998932 +illusion_1L,ppo,146,43.8,velocity,center_ux,0.8135931491851807 +illusion_1L,ppo,146,43.8,velocity,center_uy,-0.46099019050598145 +illusion_1L,ppo,146,43.8,velocity,lower_ux,1.2833583354949951 +illusion_1L,ppo,146,43.8,velocity,lower_uy,-0.24350550770759583 +illusion_1L,ppo,147,44.1,velocity,upper_ux,0.8024853467941284 +illusion_1L,ppo,147,44.1,velocity,upper_uy,-0.24675826728343964 +illusion_1L,ppo,147,44.1,velocity,center_ux,0.8497771620750427 +illusion_1L,ppo,147,44.1,velocity,center_uy,-0.6331683993339539 +illusion_1L,ppo,147,44.1,velocity,lower_ux,1.1978111267089844 +illusion_1L,ppo,147,44.1,velocity,lower_uy,-0.3918132781982422 +illusion_1L,ppo,148,44.4,velocity,upper_ux,0.8711779713630676 +illusion_1L,ppo,148,44.4,velocity,upper_uy,-0.28722378611564636 +illusion_1L,ppo,148,44.4,velocity,center_ux,0.893145740032196 +illusion_1L,ppo,148,44.4,velocity,center_uy,-0.6640084981918335 +illusion_1L,ppo,148,44.4,velocity,lower_ux,1.1197021007537842 +illusion_1L,ppo,148,44.4,velocity,lower_uy,-0.44086527824401855 +illusion_1L,ppo,149,44.7,velocity,upper_ux,0.9351475238800049 +illusion_1L,ppo,149,44.7,velocity,upper_uy,-0.3219529986381531 +illusion_1L,ppo,149,44.7,velocity,center_ux,0.9312676787376404 +illusion_1L,ppo,149,44.7,velocity,center_uy,-0.6439661979675293 +illusion_1L,ppo,149,44.7,velocity,lower_ux,1.0525163412094116 +illusion_1L,ppo,149,44.7,velocity,lower_uy,-0.4451695382595062 +illusion_1L,ppo,150,45.0,velocity,upper_ux,0.9968648552894592 +illusion_1L,ppo,150,45.0,velocity,upper_uy,-0.3505345284938812 +illusion_1L,ppo,150,45.0,velocity,center_ux,0.9596760869026184 +illusion_1L,ppo,150,45.0,velocity,center_uy,-0.6386054754257202 +illusion_1L,ppo,150,45.0,velocity,lower_ux,0.9915181398391724 +illusion_1L,ppo,150,45.0,velocity,lower_uy,-0.44172242283821106 +illusion_1L,ppo,151,45.3,velocity,upper_ux,1.0586801767349243 +illusion_1L,ppo,151,45.3,velocity,upper_uy,-0.37417420744895935 +illusion_1L,ppo,151,45.3,velocity,center_ux,0.980556845664978 +illusion_1L,ppo,151,45.3,velocity,center_uy,-0.6534563899040222 +illusion_1L,ppo,151,45.3,velocity,lower_ux,0.9309269189834595 +illusion_1L,ppo,151,45.3,velocity,lower_uy,-0.43722158670425415 +illusion_1L,ppo,152,45.6,velocity,upper_ux,1.1235451698303223 +illusion_1L,ppo,152,45.6,velocity,upper_uy,-0.3934757113456726 +illusion_1L,ppo,152,45.6,velocity,center_ux,0.9949445724487305 +illusion_1L,ppo,152,45.6,velocity,center_uy,-0.6828402280807495 +illusion_1L,ppo,152,45.6,velocity,lower_ux,0.8668509721755981 +illusion_1L,ppo,152,45.6,velocity,lower_uy,-0.4234820604324341 +illusion_1L,ppo,153,45.9,velocity,upper_ux,1.1950790882110596 +illusion_1L,ppo,153,45.9,velocity,upper_uy,-0.4073118269443512 +illusion_1L,ppo,153,45.9,velocity,center_ux,0.9990298748016357 +illusion_1L,ppo,153,45.9,velocity,center_uy,-0.7076174020767212 +illusion_1L,ppo,153,45.9,velocity,lower_ux,0.7988039255142212 +illusion_1L,ppo,153,45.9,velocity,lower_uy,-0.3857170343399048 +illusion_1L,ppo,154,46.2,velocity,upper_ux,1.2759929895401 +illusion_1L,ppo,154,46.2,velocity,upper_uy,-0.41070860624313354 +illusion_1L,ppo,154,46.2,velocity,center_ux,0.9847694635391235 +illusion_1L,ppo,154,46.2,velocity,center_uy,-0.6690180897712708 +illusion_1L,ppo,154,46.2,velocity,lower_ux,0.7317898869514465 +illusion_1L,ppo,154,46.2,velocity,lower_uy,-0.308235764503479 +illusion_1L,ppo,155,46.5,velocity,upper_ux,1.3590807914733887 +illusion_1L,ppo,155,46.5,velocity,upper_uy,-0.38350749015808105 +illusion_1L,ppo,155,46.5,velocity,center_ux,0.9554819464683533 +illusion_1L,ppo,155,46.5,velocity,center_uy,-0.490882009267807 +illusion_1L,ppo,155,46.5,velocity,lower_ux,0.6770801544189453 +illusion_1L,ppo,155,46.5,velocity,lower_uy,-0.18481822311878204 +illusion_1L,ppo,156,46.8,velocity,upper_ux,1.4009064435958862 +illusion_1L,ppo,156,46.8,velocity,upper_uy,-0.27135053277015686 +illusion_1L,ppo,156,46.8,velocity,center_ux,0.9317917823791504 +illusion_1L,ppo,156,46.8,velocity,center_uy,-0.17894208431243896 +illusion_1L,ppo,156,46.8,velocity,lower_ux,0.649314284324646 +illusion_1L,ppo,156,46.8,velocity,lower_uy,-0.02896638587117195 +illusion_1L,ppo,157,47.1,velocity,upper_ux,1.3530023097991943 +illusion_1L,ppo,157,47.1,velocity,upper_uy,-0.05732113495469093 +illusion_1L,ppo,157,47.1,velocity,center_ux,0.926491916179657 +illusion_1L,ppo,157,47.1,velocity,center_uy,0.17339935898780823 +illusion_1L,ppo,157,47.1,velocity,lower_ux,0.6609312891960144 +illusion_1L,ppo,157,47.1,velocity,lower_uy,0.1233859658241272 +illusion_1L,ppo,158,47.4,velocity,upper_ux,1.2553454637527466 +illusion_1L,ppo,158,47.4,velocity,upper_uy,0.1525338739156723 +illusion_1L,ppo,158,47.4,velocity,center_ux,0.9364964962005615 +illusion_1L,ppo,158,47.4,velocity,center_uy,0.45997533202171326 +illusion_1L,ppo,158,47.4,velocity,lower_ux,0.7140211462974548 +illusion_1L,ppo,158,47.4,velocity,lower_uy,0.22988207638263702 +illusion_1L,ppo,159,47.7,velocity,upper_ux,1.1633979082107544 +illusion_1L,ppo,159,47.7,velocity,upper_uy,0.2778579890727997 +illusion_1L,ppo,159,47.7,velocity,center_ux,0.952113151550293 +illusion_1L,ppo,159,47.7,velocity,center_uy,0.6011762022972107 +illusion_1L,ppo,159,47.7,velocity,lower_ux,0.7895419597625732 +illusion_1L,ppo,159,47.7,velocity,lower_uy,0.28369516134262085 +illusion_1L,ppo,160,48.0,velocity,upper_ux,1.0907719135284424 +illusion_1L,ppo,160,48.0,velocity,upper_uy,0.3291999101638794 +illusion_1L,ppo,160,48.0,velocity,center_ux,0.9673833250999451 +illusion_1L,ppo,160,48.0,velocity,center_uy,0.6116187572479248 +illusion_1L,ppo,160,48.0,velocity,lower_ux,0.8632920384407043 +illusion_1L,ppo,160,48.0,velocity,lower_uy,0.3156742751598358 +illusion_1L,ppo,161,48.3,velocity,upper_ux,1.0329912900924683 +illusion_1L,ppo,161,48.3,velocity,upper_uy,0.3464519679546356 +illusion_1L,ppo,161,48.3,velocity,center_ux,0.9802320599555969 +illusion_1L,ppo,161,48.3,velocity,center_uy,0.5880728363990784 +illusion_1L,ppo,161,48.3,velocity,lower_ux,0.9291250705718994 +illusion_1L,ppo,161,48.3,velocity,lower_uy,0.34232857823371887 +illusion_1L,ppo,162,48.6,velocity,upper_ux,0.9815293550491333 +illusion_1L,ppo,162,48.6,velocity,upper_uy,0.3547202944755554 +illusion_1L,ppo,162,48.6,velocity,center_ux,0.989428699016571 +illusion_1L,ppo,162,48.6,velocity,center_uy,0.5811353325843811 +illusion_1L,ppo,162,48.6,velocity,lower_ux,0.9897763133049011 +illusion_1L,ppo,162,48.6,velocity,lower_uy,0.3654739260673523 +illusion_1L,ppo,163,48.9,velocity,upper_ux,0.9304785132408142 +illusion_1L,ppo,163,48.9,velocity,upper_uy,0.35912632942199707 +illusion_1L,ppo,163,48.9,velocity,center_ux,0.9949952363967896 +illusion_1L,ppo,163,48.9,velocity,center_uy,0.5932320952415466 +illusion_1L,ppo,163,48.9,velocity,lower_ux,1.0482230186462402 +illusion_1L,ppo,163,48.9,velocity,lower_uy,0.3864726126194 +illusion_1L,ppo,164,49.2,velocity,upper_ux,0.8762057423591614 +illusion_1L,ppo,164,49.2,velocity,upper_uy,0.3551478385925293 +illusion_1L,ppo,164,49.2,velocity,center_ux,0.9961321949958801 +illusion_1L,ppo,164,49.2,velocity,center_uy,0.6207001805305481 +illusion_1L,ppo,164,49.2,velocity,lower_ux,1.107602596282959 +illusion_1L,ppo,164,49.2,velocity,lower_uy,0.40647777915000916 +illusion_1L,ppo,165,49.5,velocity,upper_ux,0.8172878623008728 +illusion_1L,ppo,165,49.5,velocity,upper_uy,0.33373916149139404 +illusion_1L,ppo,165,49.5,velocity,center_ux,0.9892506003379822 +illusion_1L,ppo,165,49.5,velocity,center_uy,0.654775857925415 +illusion_1L,ppo,165,49.5,velocity,lower_ux,1.1717387437820435 +illusion_1L,ppo,165,49.5,velocity,lower_uy,0.4256071448326111 +illusion_1L,ppo,166,49.8,velocity,upper_ux,0.7559691071510315 +illusion_1L,ppo,166,49.8,velocity,upper_uy,0.2834266722202301 +illusion_1L,ppo,166,49.8,velocity,center_ux,0.9658879637718201 +illusion_1L,ppo,166,49.8,velocity,center_uy,0.6635687947273254 +illusion_1L,ppo,166,49.8,velocity,lower_ux,1.245539665222168 +illusion_1L,ppo,166,49.8,velocity,lower_uy,0.44204840064048767 +illusion_1L,ppo,167,50.1,velocity,upper_ux,0.7002671360969543 +illusion_1L,ppo,167,50.1,velocity,upper_uy,0.19611750543117523 +illusion_1L,ppo,167,50.1,velocity,center_ux,0.9200124144554138 +illusion_1L,ppo,167,50.1,velocity,center_uy,0.5797866582870483 +illusion_1L,ppo,167,50.1,velocity,lower_ux,1.3317952156066895 +illusion_1L,ppo,167,50.1,velocity,lower_uy,0.445936381816864 +illusion_1L,ppo,168,50.4,velocity,upper_ux,0.663193941116333 +illusion_1L,ppo,168,50.4,velocity,upper_uy,0.07571233063936234 +illusion_1L,ppo,168,50.4,velocity,center_ux,0.8668493628501892 +illusion_1L,ppo,168,50.4,velocity,center_uy,0.35160547494888306 +illusion_1L,ppo,168,50.4,velocity,lower_ux,1.4095971584320068 +illusion_1L,ppo,168,50.4,velocity,lower_uy,0.39069855213165283 +illusion_1L,ppo,169,50.7,velocity,upper_ux,0.6592637896537781 +illusion_1L,ppo,169,50.7,velocity,upper_uy,-0.05510314181447029 +illusion_1L,ppo,169,50.7,velocity,center_ux,0.8351341485977173 +illusion_1L,ppo,169,50.7,velocity,center_uy,0.020262420177459717 +illusion_1L,ppo,169,50.7,velocity,lower_ux,1.4135056734085083 +illusion_1L,ppo,169,50.7,velocity,lower_uy,0.19454829394817352 +illusion_1L,ppo,170,51.0,velocity,upper_ux,0.6968444585800171 +illusion_1L,ppo,170,51.0,velocity,upper_uy,-0.1608664095401764 +illusion_1L,ppo,170,51.0,velocity,center_ux,0.8356606364250183 +illusion_1L,ppo,170,51.0,velocity,center_uy,-0.31344425678253174 +illusion_1L,ppo,170,51.0,velocity,lower_ux,1.336517333984375 +illusion_1L,ppo,170,51.0,velocity,lower_uy,-0.08462752401828766 +illusion_1L,ppo,171,51.3,velocity,upper_ux,0.7638612389564514 +illusion_1L,ppo,171,51.3,velocity,upper_uy,-0.22484588623046875 +illusion_1L,ppo,171,51.3,velocity,center_ux,0.8606735467910767 +illusion_1L,ppo,171,51.3,velocity,center_uy,-0.5539774894714355 +illusion_1L,ppo,171,51.3,velocity,lower_ux,1.2416516542434692 +illusion_1L,ppo,171,51.3,velocity,lower_uy,-0.2940971255302429 +illusion_1L,ppo,172,51.6,velocity,upper_ux,0.8350314497947693 +illusion_1L,ppo,172,51.6,velocity,upper_uy,-0.2666654586791992 +illusion_1L,ppo,172,51.6,velocity,center_ux,0.8976188898086548 +illusion_1L,ppo,172,51.6,velocity,center_uy,-0.6425665020942688 +illusion_1L,ppo,172,51.6,velocity,lower_ux,1.156031847000122 +illusion_1L,ppo,172,51.6,velocity,lower_uy,-0.390595942735672 +illusion_1L,ppo,173,51.9,velocity,upper_ux,0.8998384475708008 +illusion_1L,ppo,173,51.9,velocity,upper_uy,-0.3018222153186798 +illusion_1L,ppo,173,51.9,velocity,center_ux,0.9343082904815674 +illusion_1L,ppo,173,51.9,velocity,center_uy,-0.6290770769119263 +illusion_1L,ppo,173,51.9,velocity,lower_ux,1.085924744606018 +illusion_1L,ppo,173,51.9,velocity,lower_uy,-0.4142662286758423 +illusion_1L,ppo,174,52.2,velocity,upper_ux,0.9601721167564392 +illusion_1L,ppo,174,52.2,velocity,upper_uy,-0.3310689330101013 +illusion_1L,ppo,174,52.2,velocity,center_ux,0.9634255170822144 +illusion_1L,ppo,174,52.2,velocity,center_uy,-0.6093350648880005 +illusion_1L,ppo,174,52.2,velocity,lower_ux,1.0268430709838867 +illusion_1L,ppo,174,52.2,velocity,lower_uy,-0.41582629084587097 +illusion_1L,ppo,175,52.5,velocity,upper_ux,1.0185682773590088 +illusion_1L,ppo,175,52.5,velocity,upper_uy,-0.35518842935562134 +illusion_1L,ppo,175,52.5,velocity,center_ux,0.9854376316070557 +illusion_1L,ppo,175,52.5,velocity,center_uy,-0.610083818435669 +illusion_1L,ppo,175,52.5,velocity,lower_ux,0.9716078639030457 +illusion_1L,ppo,175,52.5,velocity,lower_uy,-0.41549691557884216 +illusion_1L,ppo,176,52.8,velocity,upper_ux,1.0774829387664795 +illusion_1L,ppo,176,52.8,velocity,upper_uy,-0.3756331503391266 +illusion_1L,ppo,176,52.8,velocity,center_ux,1.0025639533996582 +illusion_1L,ppo,176,52.8,velocity,center_uy,-0.6280944347381592 +illusion_1L,ppo,176,52.8,velocity,lower_ux,0.9149261713027954 +illusion_1L,ppo,176,52.8,velocity,lower_uy,-0.4114891588687897 +illusion_1L,ppo,177,53.1,velocity,upper_ux,1.1393821239471436 +illusion_1L,ppo,177,53.1,velocity,upper_uy,-0.39279690384864807 +illusion_1L,ppo,177,53.1,velocity,center_ux,1.0141668319702148 +illusion_1L,ppo,177,53.1,velocity,center_uy,-0.6573034524917603 +illusion_1L,ppo,177,53.1,velocity,lower_ux,0.8537753224372864 +illusion_1L,ppo,177,53.1,velocity,lower_uy,-0.3934367895126343 +illusion_1L,ppo,178,53.4,velocity,upper_ux,1.2073670625686646 +illusion_1L,ppo,178,53.4,velocity,upper_uy,-0.40569326281547546 +illusion_1L,ppo,178,53.4,velocity,center_ux,1.014426827430725 +illusion_1L,ppo,178,53.4,velocity,center_uy,-0.676201581954956 +illusion_1L,ppo,178,53.4,velocity,lower_ux,0.7883816361427307 +illusion_1L,ppo,178,53.4,velocity,lower_uy,-0.3468324840068817 +illusion_1L,ppo,179,53.7,velocity,upper_ux,1.284145712852478 +illusion_1L,ppo,179,53.7,velocity,upper_uy,-0.40973517298698425 +illusion_1L,ppo,179,53.7,velocity,center_ux,0.9935897588729858 +illusion_1L,ppo,179,53.7,velocity,center_uy,-0.6253535151481628 +illusion_1L,ppo,179,53.7,velocity,lower_ux,0.7247992157936096 +illusion_1L,ppo,179,53.7,velocity,lower_uy,-0.2587275505065918 +illusion_1L,ppo,180,54.0,velocity,upper_ux,1.3657811880111694 +illusion_1L,ppo,180,54.0,velocity,upper_uy,-0.3867597281932831 +illusion_1L,ppo,180,54.0,velocity,center_ux,0.9563853740692139 +illusion_1L,ppo,180,54.0,velocity,center_uy,-0.4366496801376343 +illusion_1L,ppo,180,54.0,velocity,lower_ux,0.676805853843689 +illusion_1L,ppo,180,54.0,velocity,lower_uy,-0.12874643504619598 +illusion_1L,ppo,181,54.3,velocity,upper_ux,1.4037541151046753 +illusion_1L,ppo,181,54.3,velocity,upper_uy,-0.28017255663871765 +illusion_1L,ppo,181,54.3,velocity,center_ux,0.9207742214202881 +illusion_1L,ppo,181,54.3,velocity,center_uy,-0.12124556303024292 +illusion_1L,ppo,181,54.3,velocity,lower_ux,0.6564732789993286 +illusion_1L,ppo,181,54.3,velocity,lower_uy,0.023576725274324417 +illusion_1L,ppo,182,54.6,velocity,upper_ux,1.3501845598220825 +illusion_1L,ppo,182,54.6,velocity,upper_uy,-0.062065888196229935 +illusion_1L,ppo,182,54.6,velocity,center_ux,0.9081010818481445 +illusion_1L,ppo,182,54.6,velocity,center_uy,0.2222837507724762 +illusion_1L,ppo,182,54.6,velocity,lower_ux,0.6796727180480957 +illusion_1L,ppo,182,54.6,velocity,lower_uy,0.15652096271514893 +illusion_1L,ppo,183,54.9,velocity,upper_ux,1.2399553060531616 +illusion_1L,ppo,183,54.9,velocity,upper_uy,0.16361922025680542 +illusion_1L,ppo,183,54.9,velocity,center_ux,0.9157098531723022 +illusion_1L,ppo,183,54.9,velocity,center_uy,0.4864123463630676 +illusion_1L,ppo,183,54.9,velocity,lower_ux,0.7411482930183411 +illusion_1L,ppo,183,54.9,velocity,lower_uy,0.23731465637683868 +illusion_1L,ppo,184,55.2,velocity,upper_ux,1.1403566598892212 +illusion_1L,ppo,184,55.2,velocity,upper_uy,0.2979344129562378 +illusion_1L,ppo,184,55.2,velocity,center_ux,0.934598982334137 +illusion_1L,ppo,184,55.2,velocity,center_uy,0.5971574783325195 +illusion_1L,ppo,184,55.2,velocity,lower_ux,0.8153479099273682 +illusion_1L,ppo,184,55.2,velocity,lower_uy,0.27904799580574036 +illusion_1L,ppo,185,55.5,velocity,upper_ux,1.0685862302780151 +illusion_1L,ppo,185,55.5,velocity,upper_uy,0.3476201593875885 +illusion_1L,ppo,185,55.5,velocity,center_ux,0.9559522271156311 +illusion_1L,ppo,185,55.5,velocity,center_uy,0.5931086540222168 +illusion_1L,ppo,185,55.5,velocity,lower_ux,0.8831574320793152 +illusion_1L,ppo,185,55.5,velocity,lower_uy,0.3096295893192291 +illusion_1L,ppo,186,55.8,velocity,upper_ux,1.0145820379257202 +illusion_1L,ppo,186,55.8,velocity,upper_uy,0.3605438470840454 +illusion_1L,ppo,186,55.8,velocity,center_ux,0.9737678170204163 +illusion_1L,ppo,186,55.8,velocity,center_uy,0.5728099346160889 +illusion_1L,ppo,186,55.8,velocity,lower_ux,0.9438760280609131 +illusion_1L,ppo,186,55.8,velocity,lower_uy,0.3359411358833313 +illusion_1L,ppo,187,56.1,velocity,upper_ux,0.9662240743637085 +illusion_1L,ppo,187,56.1,velocity,upper_uy,0.3659481704235077 +illusion_1L,ppo,187,56.1,velocity,center_ux,0.9866850972175598 +illusion_1L,ppo,187,56.1,velocity,center_uy,0.5709033012390137 +illusion_1L,ppo,187,56.1,velocity,lower_ux,1.000152826309204 +illusion_1L,ppo,187,56.1,velocity,lower_uy,0.358488529920578 +illusion_1L,ppo,188,56.4,velocity,upper_ux,0.9168629050254822 +illusion_1L,ppo,188,56.4,velocity,upper_uy,0.36895284056663513 +illusion_1L,ppo,188,56.4,velocity,center_ux,0.9958147406578064 +illusion_1L,ppo,188,56.4,velocity,center_uy,0.5858397483825684 +illusion_1L,ppo,188,56.4,velocity,lower_ux,1.0547534227371216 +illusion_1L,ppo,188,56.4,velocity,lower_uy,0.37880146503448486 +illusion_1L,ppo,189,56.7,velocity,upper_ux,0.8635438084602356 +illusion_1L,ppo,189,56.7,velocity,upper_uy,0.3639286756515503 +illusion_1L,ppo,189,56.7,velocity,center_ux,1.0011107921600342 +illusion_1L,ppo,189,56.7,velocity,center_uy,0.6142444610595703 +illusion_1L,ppo,189,56.7,velocity,lower_ux,1.11068594455719 +illusion_1L,ppo,189,56.7,velocity,lower_uy,0.39790457487106323 +illusion_1L,ppo,190,57.0,velocity,upper_ux,0.8054360747337341 +illusion_1L,ppo,190,57.0,velocity,upper_uy,0.3407408595085144 +illusion_1L,ppo,190,57.0,velocity,center_ux,0.9994234442710876 +illusion_1L,ppo,190,57.0,velocity,center_uy,0.6477915644645691 +illusion_1L,ppo,190,57.0,velocity,lower_ux,1.1715229749679565 +illusion_1L,ppo,190,57.0,velocity,lower_uy,0.41583964228630066 +illusion_1L,ppo,191,57.3,velocity,upper_ux,0.7451804280281067 +illusion_1L,ppo,191,57.3,velocity,upper_uy,0.28742867708206177 +illusion_1L,ppo,191,57.3,velocity,center_ux,0.9820777177810669 +illusion_1L,ppo,191,57.3,velocity,center_uy,0.6564492583274841 +illusion_1L,ppo,191,57.3,velocity,lower_ux,1.241263508796692 +illusion_1L,ppo,191,57.3,velocity,lower_uy,0.43111932277679443 +illusion_1L,ppo,192,57.6,velocity,upper_ux,0.6906348466873169 +illusion_1L,ppo,192,57.6,velocity,upper_uy,0.19587494432926178 +illusion_1L,ppo,192,57.6,velocity,center_ux,0.9411415457725525 +illusion_1L,ppo,192,57.6,velocity,center_uy,0.5756361484527588 +illusion_1L,ppo,192,57.6,velocity,lower_ux,1.3227633237838745 +illusion_1L,ppo,192,57.6,velocity,lower_uy,0.436367392539978 +illusion_1L,ppo,193,57.9,velocity,upper_ux,0.6547849774360657 +illusion_1L,ppo,193,57.9,velocity,upper_uy,0.07126495987176895 +illusion_1L,ppo,193,57.9,velocity,center_ux,0.888537585735321 +illusion_1L,ppo,193,57.9,velocity,center_uy,0.35336834192276 +illusion_1L,ppo,193,57.9,velocity,lower_ux,1.4002913236618042 +illusion_1L,ppo,193,57.9,velocity,lower_uy,0.39620858430862427 +illusion_1L,ppo,194,58.2,velocity,upper_ux,0.652053952217102 +illusion_1L,ppo,194,58.2,velocity,upper_uy,-0.06242414936423302 +illusion_1L,ppo,194,58.2,velocity,center_ux,0.8521170020103455 +illusion_1L,ppo,194,58.2,velocity,center_uy,0.02583063393831253 +illusion_1L,ppo,194,58.2,velocity,lower_ux,1.4123765230178833 +illusion_1L,ppo,194,58.2,velocity,lower_uy,0.2308337688446045 +illusion_1L,ppo,195,58.5,velocity,upper_ux,0.6907974481582642 +illusion_1L,ppo,195,58.5,velocity,upper_uy,-0.1679493486881256 +illusion_1L,ppo,195,58.5,velocity,center_ux,0.8458161354064941 +illusion_1L,ppo,195,58.5,velocity,center_uy,-0.30641335248947144 +illusion_1L,ppo,195,58.5,velocity,lower_ux,1.3316282033920288 +illusion_1L,ppo,195,58.5,velocity,lower_uy,-0.04117949679493904 +illusion_1L,ppo,196,58.8,velocity,upper_ux,0.7589043378829956 +illusion_1L,ppo,196,58.8,velocity,upper_uy,-0.22998899221420288 +illusion_1L,ppo,196,58.8,velocity,center_ux,0.8646189570426941 +illusion_1L,ppo,196,58.8,velocity,center_uy,-0.5466326475143433 +illusion_1L,ppo,196,58.8,velocity,lower_ux,1.2257533073425293 +illusion_1L,ppo,196,58.8,velocity,lower_uy,-0.2668115794658661 +illusion_1L,ppo,197,59.1,velocity,upper_ux,0.830513060092926 +illusion_1L,ppo,197,59.1,velocity,upper_uy,-0.26969319581985474 +illusion_1L,ppo,197,59.1,velocity,center_ux,0.897228479385376 +illusion_1L,ppo,197,59.1,velocity,center_uy,-0.6331993937492371 +illusion_1L,ppo,197,59.1,velocity,lower_ux,1.137140154838562 +illusion_1L,ppo,197,59.1,velocity,lower_uy,-0.3766300678253174 +illusion_1L,ppo,198,59.4,velocity,upper_ux,0.8955591917037964 +illusion_1L,ppo,198,59.4,velocity,upper_uy,-0.3037020266056061 +illusion_1L,ppo,198,59.4,velocity,center_ux,0.9315017461776733 +illusion_1L,ppo,198,59.4,velocity,center_uy,-0.6195032596588135 +illusion_1L,ppo,198,59.4,velocity,lower_ux,1.0696609020233154 +illusion_1L,ppo,198,59.4,velocity,lower_uy,-0.4054071009159088 +illusion_1L,ppo,199,59.7,velocity,upper_ux,0.9558433890342712 +illusion_1L,ppo,199,59.7,velocity,upper_uy,-0.33245930075645447 +illusion_1L,ppo,199,59.7,velocity,center_ux,0.9592204689979553 +illusion_1L,ppo,199,59.7,velocity,center_uy,-0.6006561517715454 +illusion_1L,ppo,199,59.7,velocity,lower_ux,1.014907956123352 +illusion_1L,ppo,199,59.7,velocity,lower_uy,-0.4072258472442627 +illusion_1L,ppo,0,0.0,force,front_fx,0.0018454736564308405 +illusion_1L,ppo,0,0.0,force,front_fy,-9.435548236069735e-06 +illusion_1L,ppo,0,0.0,force,upper_fx,0.0013415194116532803 +illusion_1L,ppo,0,0.0,force,upper_fy,0.003225150052458048 +illusion_1L,ppo,0,0.0,force,lower_fx,0.001405408140271902 +illusion_1L,ppo,0,0.0,force,lower_fy,-0.002531777834519744 +illusion_1L,ppo,1,0.3,force,front_fx,0.001884474535472691 +illusion_1L,ppo,1,0.3,force,front_fy,-0.00017600566206965595 +illusion_1L,ppo,1,0.3,force,upper_fx,0.001343563199043274 +illusion_1L,ppo,1,0.3,force,upper_fy,0.0032824508380144835 +illusion_1L,ppo,1,0.3,force,lower_fx,0.0018301476957276464 +illusion_1L,ppo,1,0.3,force,lower_fy,-0.001917719841003418 +illusion_1L,ppo,2,0.6,force,front_fx,0.001933213323354721 +illusion_1L,ppo,2,0.6,force,front_fy,-0.0003436895494814962 +illusion_1L,ppo,2,0.6,force,upper_fx,0.0013251641066744924 +illusion_1L,ppo,2,0.6,force,upper_fy,0.0034132206346839666 +illusion_1L,ppo,2,0.6,force,lower_fx,0.002098523546010256 +illusion_1L,ppo,2,0.6,force,lower_fy,-0.0015700658550485969 +illusion_1L,ppo,3,0.9,force,front_fx,0.0020271451212465763 +illusion_1L,ppo,3,0.9,force,front_fy,-0.0005147154442965984 +illusion_1L,ppo,3,0.9,force,upper_fx,0.0012369629694148898 +illusion_1L,ppo,3,0.9,force,upper_fy,0.0035877723712474108 +illusion_1L,ppo,3,0.9,force,lower_fx,0.002079133875668049 +illusion_1L,ppo,3,0.9,force,lower_fy,-0.0014554713852703571 +illusion_1L,ppo,4,1.2,force,front_fx,0.0021572215482592583 +illusion_1L,ppo,4,1.2,force,front_fy,-0.0006328072631731629 +illusion_1L,ppo,4,1.2,force,upper_fx,0.001095050247386098 +illusion_1L,ppo,4,1.2,force,upper_fy,0.0037359409034252167 +illusion_1L,ppo,4,1.2,force,lower_fx,0.001962492475286126 +illusion_1L,ppo,4,1.2,force,lower_fy,-0.0015426364261657 +illusion_1L,ppo,5,1.5,force,front_fx,0.0022872567642480135 +illusion_1L,ppo,5,1.5,force,front_fy,-0.0006885279435664415 +illusion_1L,ppo,5,1.5,force,upper_fx,0.0009318230440840125 +illusion_1L,ppo,5,1.5,force,upper_fy,0.0037782927975058556 +illusion_1L,ppo,5,1.5,force,lower_fx,0.001893856911920011 +illusion_1L,ppo,5,1.5,force,lower_fy,-0.0017652736278250813 +illusion_1L,ppo,6,1.8,force,front_fx,0.002377364318817854 +illusion_1L,ppo,6,1.8,force,front_fy,-0.0006979369791224599 +illusion_1L,ppo,6,1.8,force,upper_fx,0.0007838156307116151 +illusion_1L,ppo,6,1.8,force,upper_fy,0.0036853845231235027 +illusion_1L,ppo,6,1.8,force,lower_fx,0.0018933783285319805 +illusion_1L,ppo,6,1.8,force,lower_fy,-0.002042637439444661 +illusion_1L,ppo,7,2.1,force,front_fx,0.0023826188407838345 +illusion_1L,ppo,7,2.1,force,front_fy,-0.0006665082182735205 +illusion_1L,ppo,7,2.1,force,upper_fx,0.0006957584409974515 +illusion_1L,ppo,7,2.1,force,upper_fy,0.0034783894661813974 +illusion_1L,ppo,7,2.1,force,lower_fx,0.0019409211818128824 +illusion_1L,ppo,7,2.1,force,lower_fy,-0.002328259404748678 +illusion_1L,ppo,8,2.4,force,front_fx,0.002307743765413761 +illusion_1L,ppo,8,2.4,force,front_fy,-0.0006240039365366101 +illusion_1L,ppo,8,2.4,force,upper_fx,0.0007134422194212675 +illusion_1L,ppo,8,2.4,force,upper_fy,0.0031887420918792486 +illusion_1L,ppo,8,2.4,force,lower_fx,0.0020111140329390764 +illusion_1L,ppo,8,2.4,force,lower_fy,-0.002626512199640274 +illusion_1L,ppo,9,2.7,force,front_fx,0.002169084269553423 +illusion_1L,ppo,9,2.7,force,front_fy,-0.0005957789835520089 +illusion_1L,ppo,9,2.7,force,upper_fx,0.0008226250065490603 +illusion_1L,ppo,9,2.7,force,upper_fy,0.002857618033885956 +illusion_1L,ppo,9,2.7,force,lower_fx,0.0020677170250564814 +illusion_1L,ppo,9,2.7,force,lower_fy,-0.00290868547745049 +illusion_1L,ppo,10,3.0,force,front_fx,0.0020178125705569983 +illusion_1L,ppo,10,3.0,force,front_fy,-0.0005917053204029799 +illusion_1L,ppo,10,3.0,force,upper_fx,0.0009482958121225238 +illusion_1L,ppo,10,3.0,force,upper_fy,0.002544574672356248 +illusion_1L,ppo,10,3.0,force,lower_fx,0.002093838294968009 +illusion_1L,ppo,10,3.0,force,lower_fy,-0.0031392916571348906 +illusion_1L,ppo,11,3.3,force,front_fx,0.0019071499118581414 +illusion_1L,ppo,11,3.3,force,front_fy,-0.0006146127707324922 +illusion_1L,ppo,11,3.3,force,upper_fx,0.001030603307299316 +illusion_1L,ppo,11,3.3,force,upper_fy,0.0022892493288964033 +illusion_1L,ppo,11,3.3,force,lower_fx,0.0021056251134723425 +illusion_1L,ppo,11,3.3,force,lower_fy,-0.0032957792282104492 +illusion_1L,ppo,12,3.6,force,front_fx,0.001845426158979535 +illusion_1L,ppo,12,3.6,force,front_fy,-0.0006407295004464686 +illusion_1L,ppo,12,3.6,force,upper_fx,0.001068508019670844 +illusion_1L,ppo,12,3.6,force,upper_fy,0.002101258374750614 +illusion_1L,ppo,12,3.6,force,lower_fx,0.0021039023995399475 +illusion_1L,ppo,12,3.6,force,lower_fy,-0.003369586542248726 +illusion_1L,ppo,13,3.9,force,front_fx,0.0018184134969487786 +illusion_1L,ppo,13,3.9,force,front_fy,-0.0006366751040332019 +illusion_1L,ppo,13,3.9,force,upper_fx,0.0011014657793566585 +illusion_1L,ppo,13,3.9,force,upper_fy,0.0019751086365431547 +illusion_1L,ppo,13,3.9,force,lower_fx,0.0020919947419315577 +illusion_1L,ppo,13,3.9,force,lower_fy,-0.003383140079677105 +illusion_1L,ppo,14,4.2,force,front_fx,0.0018035449320450425 +illusion_1L,ppo,14,4.2,force,front_fy,-0.000593087577726692 +illusion_1L,ppo,14,4.2,force,upper_fx,0.001136568607762456 +illusion_1L,ppo,14,4.2,force,upper_fy,0.0018870738567784429 +illusion_1L,ppo,14,4.2,force,lower_fx,0.0020472684409469366 +illusion_1L,ppo,14,4.2,force,lower_fy,-0.003342719515785575 +illusion_1L,ppo,15,4.5,force,front_fx,0.0018049635691568255 +illusion_1L,ppo,15,4.5,force,front_fy,-0.000516963133122772 +illusion_1L,ppo,15,4.5,force,upper_fx,0.0011873772600665689 +illusion_1L,ppo,15,4.5,force,upper_fy,0.001838863710872829 +illusion_1L,ppo,15,4.5,force,lower_fx,0.0019834258127957582 +illusion_1L,ppo,15,4.5,force,lower_fy,-0.0032678903080523014 +illusion_1L,ppo,16,4.8,force,front_fx,0.0018172512063756585 +illusion_1L,ppo,16,4.8,force,front_fy,-0.00041530991438776255 +illusion_1L,ppo,16,4.8,force,upper_fx,0.0012614433653652668 +illusion_1L,ppo,16,4.8,force,upper_fy,0.001831848407164216 +illusion_1L,ppo,16,4.8,force,lower_fx,0.0019078501500189304 +illusion_1L,ppo,16,4.8,force,lower_fy,-0.003160567954182625 +illusion_1L,ppo,17,5.1,force,front_fx,0.0018335765926167369 +illusion_1L,ppo,17,5.1,force,front_fy,-0.00029957390506751835 +illusion_1L,ppo,17,5.1,force,upper_fx,0.0013538528000935912 +illusion_1L,ppo,17,5.1,force,upper_fy,0.001863884273916483 +illusion_1L,ppo,17,5.1,force,lower_fx,0.0018277432536706328 +illusion_1L,ppo,17,5.1,force,lower_fy,-0.003039513947442174 +illusion_1L,ppo,18,5.4,force,front_fx,0.0018449360504746437 +illusion_1L,ppo,18,5.4,force,front_fy,-0.00018544845806900412 +illusion_1L,ppo,18,5.4,force,upper_fx,0.0014519989490509033 +illusion_1L,ppo,18,5.4,force,upper_fy,0.0019458321621641517 +illusion_1L,ppo,18,5.4,force,lower_fx,0.0017480766400694847 +illusion_1L,ppo,18,5.4,force,lower_fy,-0.0029136603698134422 +illusion_1L,ppo,19,5.7,force,front_fx,0.0018557164585217834 +illusion_1L,ppo,19,5.7,force,front_fy,-8.951545896707103e-05 +illusion_1L,ppo,19,5.7,force,upper_fx,0.00155647995416075 +illusion_1L,ppo,19,5.7,force,upper_fy,0.0020905653946101665 +illusion_1L,ppo,19,5.7,force,lower_fx,0.001695045386441052 +illusion_1L,ppo,19,5.7,force,lower_fy,-0.0027785147540271282 +illusion_1L,ppo,20,6.0,force,front_fx,0.0018519884906709194 +illusion_1L,ppo,20,6.0,force,front_fy,-2.7688649424817413e-05 +illusion_1L,ppo,20,6.0,force,upper_fx,0.0016564278630539775 +illusion_1L,ppo,20,6.0,force,upper_fy,0.002304136287420988 +illusion_1L,ppo,20,6.0,force,lower_fx,0.0016776581760495901 +illusion_1L,ppo,20,6.0,force,lower_fy,-0.0026211037766188383 +illusion_1L,ppo,21,6.3,force,front_fx,0.001826219609938562 +illusion_1L,ppo,21,6.3,force,front_fy,-1.707376941340044e-05 +illusion_1L,ppo,21,6.3,force,upper_fx,0.001734197954647243 +illusion_1L,ppo,21,6.3,force,upper_fy,0.002586165675893426 +illusion_1L,ppo,21,6.3,force,lower_fx,0.0016866769874468446 +illusion_1L,ppo,21,6.3,force,lower_fy,-0.0024434837978333235 +illusion_1L,ppo,22,6.6,force,front_fx,0.0017917450750246644 +illusion_1L,ppo,22,6.6,force,front_fy,-5.5317606893368065e-05 +illusion_1L,ppo,22,6.6,force,upper_fx,0.0017821453511714935 +illusion_1L,ppo,22,6.6,force,upper_fy,0.002929013455286622 +illusion_1L,ppo,22,6.6,force,lower_fx,0.0017136804526671767 +illusion_1L,ppo,22,6.6,force,lower_fy,-0.0022485533263534307 +illusion_1L,ppo,23,6.9,force,front_fx,0.001768247107975185 +illusion_1L,ppo,23,6.9,force,front_fy,-0.00012793361383955926 +illusion_1L,ppo,23,6.9,force,upper_fx,0.0017974255606532097 +illusion_1L,ppo,23,6.9,force,upper_fy,0.003292539855465293 +illusion_1L,ppo,23,6.9,force,lower_fx,0.0017458298243582249 +illusion_1L,ppo,23,6.9,force,lower_fy,-0.0020559444092214108 +illusion_1L,ppo,24,7.2,force,front_fx,0.0017903365660458803 +illusion_1L,ppo,24,7.2,force,front_fy,-0.00020543308346532285 +illusion_1L,ppo,24,7.2,force,upper_fx,0.0017730722902342677 +illusion_1L,ppo,24,7.2,force,upper_fy,0.0036333203315734863 +illusion_1L,ppo,24,7.2,force,lower_fx,0.001759603968821466 +illusion_1L,ppo,24,7.2,force,lower_fy,-0.0018798840465024114 +illusion_1L,ppo,25,7.5,force,front_fx,0.0018523454200476408 +illusion_1L,ppo,25,7.5,force,front_fy,-0.0002783026429824531 +illusion_1L,ppo,25,7.5,force,upper_fx,0.001699216547422111 +illusion_1L,ppo,25,7.5,force,upper_fy,0.0038979598321020603 +illusion_1L,ppo,25,7.5,force,lower_fx,0.0017375650350004435 +illusion_1L,ppo,25,7.5,force,lower_fy,-0.0017270088428631425 +illusion_1L,ppo,26,7.8,force,front_fx,0.001963085727766156 +illusion_1L,ppo,26,7.8,force,front_fy,-0.00034323291038163006 +illusion_1L,ppo,26,7.8,force,upper_fx,0.0016144283581525087 +illusion_1L,ppo,26,7.8,force,upper_fy,0.004068863578140736 +illusion_1L,ppo,26,7.8,force,lower_fx,0.0017184106400236487 +illusion_1L,ppo,26,7.8,force,lower_fy,-0.001601930009201169 +illusion_1L,ppo,27,8.1,force,front_fx,0.002086235210299492 +illusion_1L,ppo,27,8.1,force,front_fy,-0.00041403211071155965 +illusion_1L,ppo,27,8.1,force,upper_fx,0.0015209136763587594 +illusion_1L,ppo,27,8.1,force,upper_fy,0.004111613612622023 +illusion_1L,ppo,27,8.1,force,lower_fx,0.0017069336026906967 +illusion_1L,ppo,27,8.1,force,lower_fy,-0.001525058294646442 +illusion_1L,ppo,28,8.4,force,front_fx,0.0022091560531407595 +illusion_1L,ppo,28,8.4,force,front_fy,-0.0004863457288593054 +illusion_1L,ppo,28,8.4,force,upper_fx,0.0014274126151576638 +illusion_1L,ppo,28,8.4,force,upper_fy,0.0040715597569942474 +illusion_1L,ppo,28,8.4,force,lower_fx,0.0017364287050440907 +illusion_1L,ppo,28,8.4,force,lower_fy,-0.0015307152643799782 +illusion_1L,ppo,29,8.7,force,front_fx,0.002316000172868371 +illusion_1L,ppo,29,8.7,force,front_fy,-0.000553435122128576 +illusion_1L,ppo,29,8.7,force,upper_fx,0.001322670141234994 +illusion_1L,ppo,29,8.7,force,upper_fy,0.003973422572016716 +illusion_1L,ppo,29,8.7,force,lower_fx,0.0018114529084414244 +illusion_1L,ppo,29,8.7,force,lower_fy,-0.0016326630720868707 +illusion_1L,ppo,30,9.0,force,front_fx,0.002380293793976307 +illusion_1L,ppo,30,9.0,force,front_fy,-0.000600813131313771 +illusion_1L,ppo,30,9.0,force,upper_fx,0.0012129490496590734 +illusion_1L,ppo,30,9.0,force,upper_fy,0.003837519558146596 +illusion_1L,ppo,30,9.0,force,lower_fx,0.0019484811928123236 +illusion_1L,ppo,30,9.0,force,lower_fy,-0.0018434650264680386 +illusion_1L,ppo,31,9.3,force,front_fx,0.0023916529025882483 +illusion_1L,ppo,31,9.3,force,front_fy,-0.0006162354256957769 +illusion_1L,ppo,31,9.3,force,upper_fx,0.001104461494833231 +illusion_1L,ppo,31,9.3,force,upper_fy,0.0036804990377277136 +illusion_1L,ppo,31,9.3,force,lower_fx,0.002123698126524687 +illusion_1L,ppo,31,9.3,force,lower_fy,-0.002155720256268978 +illusion_1L,ppo,32,9.6,force,front_fx,0.0023377789184451103 +illusion_1L,ppo,32,9.6,force,front_fy,-0.0006137180025689304 +illusion_1L,ppo,32,9.6,force,upper_fx,0.0010056064929813147 +illusion_1L,ppo,32,9.6,force,upper_fy,0.003514906857162714 +illusion_1L,ppo,32,9.6,force,lower_fx,0.002300925087183714 +illusion_1L,ppo,32,9.6,force,lower_fy,-0.002556455321609974 +illusion_1L,ppo,33,9.9,force,front_fx,0.0022337823174893856 +illusion_1L,ppo,33,9.9,force,front_fy,-0.0006025120965205133 +illusion_1L,ppo,33,9.9,force,upper_fx,0.0009222921798937023 +illusion_1L,ppo,33,9.9,force,upper_fy,0.003346008015796542 +illusion_1L,ppo,33,9.9,force,lower_fx,0.0024410043843090534 +illusion_1L,ppo,33,9.9,force,lower_fy,-0.003005754668265581 +illusion_1L,ppo,34,10.2,force,front_fx,0.0021034234669059515 +illusion_1L,ppo,34,10.2,force,front_fy,-0.0005872753099538386 +illusion_1L,ppo,34,10.2,force,upper_fx,0.0008718555909581482 +illusion_1L,ppo,34,10.2,force,upper_fy,0.003159776795655489 +illusion_1L,ppo,34,10.2,force,lower_fx,0.0025460293982177973 +illusion_1L,ppo,34,10.2,force,lower_fy,-0.0034645171836018562 +illusion_1L,ppo,35,10.5,force,front_fx,0.001994610298424959 +illusion_1L,ppo,35,10.5,force,front_fy,-0.0005800995277240872 +illusion_1L,ppo,35,10.5,force,upper_fx,0.0008630042430013418 +illusion_1L,ppo,35,10.5,force,upper_fy,0.0029493658803403378 +illusion_1L,ppo,35,10.5,force,lower_fx,0.0026066359132528305 +illusion_1L,ppo,35,10.5,force,lower_fy,-0.0038213650695979595 +illusion_1L,ppo,36,10.8,force,front_fx,0.001913280924782157 +illusion_1L,ppo,36,10.8,force,front_fy,-0.0005781326326541603 +illusion_1L,ppo,36,10.8,force,upper_fx,0.0008844537660479546 +illusion_1L,ppo,36,10.8,force,upper_fy,0.0027114020194858313 +illusion_1L,ppo,36,10.8,force,lower_fx,0.0026368736289441586 +illusion_1L,ppo,36,10.8,force,lower_fy,-0.0040388344787061214 +illusion_1L,ppo,37,11.1,force,front_fx,0.0018723374232649803 +illusion_1L,ppo,37,11.1,force,front_fy,-0.0005778579507023096 +illusion_1L,ppo,37,11.1,force,upper_fx,0.0009313951013609767 +illusion_1L,ppo,37,11.1,force,upper_fy,0.0024706728290766478 +illusion_1L,ppo,37,11.1,force,lower_fx,0.0026627248153090477 +illusion_1L,ppo,37,11.1,force,lower_fy,-0.004060584120452404 +illusion_1L,ppo,38,11.4,force,front_fx,0.0018679396016523242 +illusion_1L,ppo,38,11.4,force,front_fy,-0.000583373592235148 +illusion_1L,ppo,38,11.4,force,upper_fx,0.00101374217774719 +illusion_1L,ppo,38,11.4,force,upper_fy,0.0022707886528223753 +illusion_1L,ppo,38,11.4,force,lower_fx,0.002704908838495612 +illusion_1L,ppo,38,11.4,force,lower_fy,-0.003904519136995077 +illusion_1L,ppo,39,11.7,force,front_fx,0.001871571526862681 +illusion_1L,ppo,39,11.7,force,front_fy,-0.0005883821286261082 +illusion_1L,ppo,39,11.7,force,upper_fx,0.0011333974543958902 +illusion_1L,ppo,39,11.7,force,upper_fy,0.0021663953084498644 +illusion_1L,ppo,39,11.7,force,lower_fx,0.0027323910035192966 +illusion_1L,ppo,39,11.7,force,lower_fy,-0.0036602099426090717 +illusion_1L,ppo,40,12.0,force,front_fx,0.0018640379421412945 +illusion_1L,ppo,40,12.0,force,front_fy,-0.0005811653099954128 +illusion_1L,ppo,40,12.0,force,upper_fx,0.00129361217841506 +illusion_1L,ppo,40,12.0,force,upper_fy,0.0022019168827682734 +illusion_1L,ppo,40,12.0,force,lower_fx,0.0027040995191782713 +illusion_1L,ppo,40,12.0,force,lower_fy,-0.003449835814535618 +illusion_1L,ppo,41,12.3,force,front_fx,0.0018506643828004599 +illusion_1L,ppo,41,12.3,force,front_fy,-0.0005525602609850466 +illusion_1L,ppo,41,12.3,force,upper_fx,0.0014739639591425657 +illusion_1L,ppo,41,12.3,force,upper_fy,0.002369635971263051 +illusion_1L,ppo,41,12.3,force,lower_fx,0.0026001990772783756 +illusion_1L,ppo,41,12.3,force,lower_fy,-0.003349453676491976 +illusion_1L,ppo,42,12.6,force,front_fx,0.0018345930147916079 +illusion_1L,ppo,42,12.6,force,front_fy,-0.0004891622811555862 +illusion_1L,ppo,42,12.6,force,upper_fx,0.0016441370826214552 +illusion_1L,ppo,42,12.6,force,upper_fy,0.0026535200886428356 +illusion_1L,ppo,42,12.6,force,lower_fx,0.0024493818636983633 +illusion_1L,ppo,42,12.6,force,lower_fy,-0.0033721602521836758 +illusion_1L,ppo,43,12.9,force,front_fx,0.0018255390459671617 +illusion_1L,ppo,43,12.9,force,front_fy,-0.0003701983659993857 +illusion_1L,ppo,43,12.9,force,upper_fx,0.0017663040198385715 +illusion_1L,ppo,43,12.9,force,upper_fy,0.0029989988543093204 +illusion_1L,ppo,43,12.9,force,lower_fx,0.0022720422130078077 +illusion_1L,ppo,43,12.9,force,lower_fy,-0.0034130625426769257 +illusion_1L,ppo,44,13.2,force,front_fx,0.001820030389353633 +illusion_1L,ppo,44,13.2,force,front_fy,-0.00020883584511466324 +illusion_1L,ppo,44,13.2,force,upper_fx,0.0018483336316421628 +illusion_1L,ppo,44,13.2,force,upper_fy,0.0033294837921857834 +illusion_1L,ppo,44,13.2,force,lower_fx,0.0020781976636499166 +illusion_1L,ppo,44,13.2,force,lower_fy,-0.0033630465622991323 +illusion_1L,ppo,45,13.5,force,front_fx,0.0018352949991822243 +illusion_1L,ppo,45,13.5,force,front_fy,-2.4143946575350128e-05 +illusion_1L,ppo,45,13.5,force,upper_fx,0.0019393219845369458 +illusion_1L,ppo,45,13.5,force,upper_fy,0.0035899956710636616 +illusion_1L,ppo,45,13.5,force,lower_fx,0.0018842782592400908 +illusion_1L,ppo,45,13.5,force,lower_fy,-0.0031800037249922752 +illusion_1L,ppo,46,13.8,force,front_fx,0.0018556686118245125 +illusion_1L,ppo,46,13.8,force,front_fy,0.00015430407074745744 +illusion_1L,ppo,46,13.8,force,upper_fx,0.0020760982297360897 +illusion_1L,ppo,46,13.8,force,upper_fy,0.003738155821338296 +illusion_1L,ppo,46,13.8,force,lower_fx,0.0017115895170718431 +illusion_1L,ppo,46,13.8,force,lower_fy,-0.002898051869124174 +illusion_1L,ppo,47,14.1,force,front_fx,0.0018817250384017825 +illusion_1L,ppo,47,14.1,force,front_fy,0.0002950139460153878 +illusion_1L,ppo,47,14.1,force,upper_fx,0.0022443158086389303 +illusion_1L,ppo,47,14.1,force,upper_fy,0.003763939253985882 +illusion_1L,ppo,47,14.1,force,lower_fx,0.0015673097223043442 +illusion_1L,ppo,47,14.1,force,lower_fy,-0.002579529071226716 +illusion_1L,ppo,48,14.4,force,front_fx,0.0019058154430240393 +illusion_1L,ppo,48,14.4,force,front_fy,0.0003789706388488412 +illusion_1L,ppo,48,14.4,force,upper_fx,0.002407739870250225 +illusion_1L,ppo,48,14.4,force,upper_fy,0.0036959557328373194 +illusion_1L,ppo,48,14.4,force,lower_fx,0.0014678692677989602 +illusion_1L,ppo,48,14.4,force,lower_fy,-0.002270594472065568 +illusion_1L,ppo,49,14.7,force,front_fx,0.0019301918800920248 +illusion_1L,ppo,49,14.7,force,front_fy,0.000399530166760087 +illusion_1L,ppo,49,14.7,force,upper_fx,0.002520560985431075 +illusion_1L,ppo,49,14.7,force,upper_fy,0.003587348386645317 +illusion_1L,ppo,49,14.7,force,lower_fx,0.001435941900126636 +illusion_1L,ppo,49,14.7,force,lower_fy,-0.002001927699893713 +illusion_1L,ppo,50,15.0,force,front_fx,0.0019456122536212206 +illusion_1L,ppo,50,15.0,force,front_fy,0.00035340918111614883 +illusion_1L,ppo,50,15.0,force,upper_fx,0.002547943964600563 +illusion_1L,ppo,50,15.0,force,upper_fy,0.0035117308143526316 +illusion_1L,ppo,50,15.0,force,lower_fx,0.0014684265479445457 +illusion_1L,ppo,50,15.0,force,lower_fy,-0.0017931613838300109 +illusion_1L,ppo,51,15.3,force,front_fx,0.001952876104041934 +illusion_1L,ppo,51,15.3,force,front_fy,0.00024421606212854385 +illusion_1L,ppo,51,15.3,force,upper_fx,0.0024757017381489277 +illusion_1L,ppo,51,15.3,force,upper_fy,0.003540861653164029 +illusion_1L,ppo,51,15.3,force,lower_fx,0.001538520329631865 +illusion_1L,ppo,51,15.3,force,lower_fy,-0.0016603274270892143 +illusion_1L,ppo,52,15.6,force,front_fx,0.001968587748706341 +illusion_1L,ppo,52,15.6,force,front_fy,8.900611283024773e-05 +illusion_1L,ppo,52,15.6,force,upper_fx,0.0023354880977422 +illusion_1L,ppo,52,15.6,force,upper_fy,0.0036830503959208727 +illusion_1L,ppo,52,15.6,force,lower_fx,0.0016225529834628105 +illusion_1L,ppo,52,15.6,force,lower_fy,-0.0016222890699282289 +illusion_1L,ppo,53,15.9,force,front_fx,0.002003411063924432 +illusion_1L,ppo,53,15.9,force,front_fy,-8.118015102809295e-05 +illusion_1L,ppo,53,15.9,force,upper_fx,0.0021699147764593363 +illusion_1L,ppo,53,15.9,force,upper_fy,0.0038498863577842712 +illusion_1L,ppo,53,15.9,force,lower_fx,0.0017090844921767712 +illusion_1L,ppo,53,15.9,force,lower_fy,-0.0017009262228384614 +illusion_1L,ppo,54,16.2,force,front_fx,0.002047616755589843 +illusion_1L,ppo,54,16.2,force,front_fy,-0.00023118723765946925 +illusion_1L,ppo,54,16.2,force,upper_fx,0.001987846801057458 +illusion_1L,ppo,54,16.2,force,upper_fy,0.003939912188798189 +illusion_1L,ppo,54,16.2,force,lower_fx,0.0018042230512946844 +illusion_1L,ppo,54,16.2,force,lower_fy,-0.001891142688691616 +illusion_1L,ppo,55,16.5,force,front_fx,0.0021009657066315413 +illusion_1L,ppo,55,16.5,force,front_fy,-0.00035802688216790557 +illusion_1L,ppo,55,16.5,force,upper_fx,0.001785053638741374 +illusion_1L,ppo,55,16.5,force,upper_fy,0.003921655472368002 +illusion_1L,ppo,55,16.5,force,lower_fx,0.0019064343068748713 +illusion_1L,ppo,55,16.5,force,lower_fy,-0.0021604460198432207 +illusion_1L,ppo,56,16.8,force,front_fx,0.0021382749546319246 +illusion_1L,ppo,56,16.8,force,front_fy,-0.00047437369357794523 +illusion_1L,ppo,56,16.8,force,upper_fx,0.0015708273276686668 +illusion_1L,ppo,56,16.8,force,upper_fy,0.0038230796344578266 +illusion_1L,ppo,56,16.8,force,lower_fx,0.002026790287345648 +illusion_1L,ppo,56,16.8,force,lower_fy,-0.0024649505503475666 +illusion_1L,ppo,57,17.1,force,front_fx,0.002156274626031518 +illusion_1L,ppo,57,17.1,force,front_fy,-0.0005991602665744722 +illusion_1L,ppo,57,17.1,force,upper_fx,0.0013542891247197986 +illusion_1L,ppo,57,17.1,force,upper_fy,0.0036806424614042044 +illusion_1L,ppo,57,17.1,force,lower_fx,0.0021528301294893026 +illusion_1L,ppo,57,17.1,force,lower_fy,-0.002778091002255678 +illusion_1L,ppo,58,17.4,force,front_fx,0.0021876778919249773 +illusion_1L,ppo,58,17.4,force,front_fy,-0.0007024467922747135 +illusion_1L,ppo,58,17.4,force,upper_fx,0.0011467136209830642 +illusion_1L,ppo,58,17.4,force,upper_fy,0.0035077750217169523 +illusion_1L,ppo,58,17.4,force,lower_fx,0.002268493641167879 +illusion_1L,ppo,58,17.4,force,lower_fy,-0.003075256245210767 +illusion_1L,ppo,59,17.7,force,front_fx,0.002177533460780978 +illusion_1L,ppo,59,17.7,force,front_fy,-0.0008089794428087771 +illusion_1L,ppo,59,17.7,force,upper_fx,0.0009664216777309775 +illusion_1L,ppo,59,17.7,force,upper_fy,0.003306248690932989 +illusion_1L,ppo,59,17.7,force,lower_fx,0.0023590591736137867 +illusion_1L,ppo,59,17.7,force,lower_fy,-0.0033480823040008545 +illusion_1L,ppo,60,18.0,force,front_fx,0.0021569719538092613 +illusion_1L,ppo,60,18.0,force,front_fy,-0.0008867835276760161 +illusion_1L,ppo,60,18.0,force,upper_fx,0.000848128111101687 +illusion_1L,ppo,60,18.0,force,upper_fy,0.003064886899664998 +illusion_1L,ppo,60,18.0,force,lower_fx,0.0024435464292764664 +illusion_1L,ppo,60,18.0,force,lower_fy,-0.0035384437069296837 +illusion_1L,ppo,61,18.3,force,front_fx,0.002121244091540575 +illusion_1L,ppo,61,18.3,force,front_fy,-0.0009351797052659094 +illusion_1L,ppo,61,18.3,force,upper_fx,0.0008042471017688513 +illusion_1L,ppo,61,18.3,force,upper_fy,0.002802375005558133 +illusion_1L,ppo,61,18.3,force,lower_fx,0.0025177537463605404 +illusion_1L,ppo,61,18.3,force,lower_fy,-0.0036111974623054266 +illusion_1L,ppo,62,18.6,force,front_fx,0.0020667784847319126 +illusion_1L,ppo,62,18.6,force,front_fy,-0.000938309240154922 +illusion_1L,ppo,62,18.6,force,upper_fx,0.0008478093077428639 +illusion_1L,ppo,62,18.6,force,upper_fy,0.0025435846764594316 +illusion_1L,ppo,62,18.6,force,lower_fx,0.0025809553917497396 +illusion_1L,ppo,62,18.6,force,lower_fy,-0.0035746844951063395 +illusion_1L,ppo,63,18.9,force,front_fx,0.0020118446554988623 +illusion_1L,ppo,63,18.9,force,front_fy,-0.0008974355296231806 +illusion_1L,ppo,63,18.9,force,upper_fx,0.0009620150667615235 +illusion_1L,ppo,63,18.9,force,upper_fy,0.002315185032784939 +illusion_1L,ppo,63,18.9,force,lower_fx,0.0026150960475206375 +illusion_1L,ppo,63,18.9,force,lower_fy,-0.003474010154604912 +illusion_1L,ppo,64,19.2,force,front_fx,0.00196703989058733 +illusion_1L,ppo,64,19.2,force,front_fy,-0.0008238596492446959 +illusion_1L,ppo,64,19.2,force,upper_fx,0.001107053249143064 +illusion_1L,ppo,64,19.2,force,upper_fy,0.0021635061129927635 +illusion_1L,ppo,64,19.2,force,lower_fx,0.00260393344797194 +illusion_1L,ppo,64,19.2,force,lower_fy,-0.0033651208505034447 +illusion_1L,ppo,65,19.5,force,front_fx,0.0019302238943055272 +illusion_1L,ppo,65,19.5,force,front_fy,-0.0007360082818195224 +illusion_1L,ppo,65,19.5,force,upper_fx,0.0012490733060985804 +illusion_1L,ppo,65,19.5,force,upper_fy,0.0021158955059945583 +illusion_1L,ppo,65,19.5,force,lower_fx,0.0025411332026124 +illusion_1L,ppo,65,19.5,force,lower_fy,-0.003286196617409587 +illusion_1L,ppo,66,19.8,force,front_fx,0.0018995193531736732 +illusion_1L,ppo,66,19.8,force,front_fy,-0.0006338927778415382 +illusion_1L,ppo,66,19.8,force,upper_fx,0.0013765291078016162 +illusion_1L,ppo,66,19.8,force,upper_fy,0.002168099395930767 +illusion_1L,ppo,66,19.8,force,lower_fx,0.0024381796829402447 +illusion_1L,ppo,66,19.8,force,lower_fy,-0.0032383450306952 +illusion_1L,ppo,67,20.1,force,front_fx,0.0018773790216073394 +illusion_1L,ppo,67,20.1,force,front_fy,-0.0005119738634675741 +illusion_1L,ppo,67,20.1,force,upper_fx,0.0014885537093505263 +illusion_1L,ppo,67,20.1,force,upper_fy,0.002290254458785057 +illusion_1L,ppo,67,20.1,force,lower_fx,0.0023191284853965044 +illusion_1L,ppo,67,20.1,force,lower_fy,-0.0031889823731034994 +illusion_1L,ppo,68,20.4,force,front_fx,0.0018710102885961533 +illusion_1L,ppo,68,20.4,force,front_fy,-0.0003642900555860251 +illusion_1L,ppo,68,20.4,force,upper_fx,0.0015909346984699368 +illusion_1L,ppo,68,20.4,force,upper_fy,0.002447637030854821 +illusion_1L,ppo,68,20.4,force,lower_fx,0.0022025166545063257 +illusion_1L,ppo,68,20.4,force,lower_fy,-0.0030955998227000237 +illusion_1L,ppo,69,20.7,force,front_fx,0.0018732643220573664 +illusion_1L,ppo,69,20.7,force,front_fy,-0.0001908278209157288 +illusion_1L,ppo,69,20.7,force,upper_fx,0.0016880532493814826 +illusion_1L,ppo,69,20.7,force,upper_fy,0.0026163284201174974 +illusion_1L,ppo,69,20.7,force,lower_fx,0.0020916506182402372 +illusion_1L,ppo,69,20.7,force,lower_fy,-0.0029422880616039038 +illusion_1L,ppo,70,21.0,force,front_fx,0.0018800902180373669 +illusion_1L,ppo,70,21.0,force,front_fy,-1.0906923307629768e-05 +illusion_1L,ppo,70,21.0,force,upper_fx,0.0017827630508691072 +illusion_1L,ppo,70,21.0,force,upper_fy,0.002786284312605858 +illusion_1L,ppo,70,21.0,force,lower_fx,0.0019804376643151045 +illusion_1L,ppo,70,21.0,force,lower_fy,-0.0027410138864070177 +illusion_1L,ppo,71,21.3,force,front_fx,0.001888597966171801 +illusion_1L,ppo,71,21.3,force,front_fy,0.00012516223068814725 +illusion_1L,ppo,71,21.3,force,upper_fx,0.001878207316622138 +illusion_1L,ppo,71,21.3,force,upper_fy,0.002962176688015461 +illusion_1L,ppo,71,21.3,force,lower_fx,0.0018807679880410433 +illusion_1L,ppo,71,21.3,force,lower_fy,-0.0025109276175498962 +illusion_1L,ppo,72,21.6,force,front_fx,0.0018846654566004872 +illusion_1L,ppo,72,21.6,force,front_fy,0.00017468517762608826 +illusion_1L,ppo,72,21.6,force,upper_fx,0.0019630969036370516 +illusion_1L,ppo,72,21.6,force,upper_fy,0.0031588440760970116 +illusion_1L,ppo,72,21.6,force,lower_fx,0.001806218409910798 +illusion_1L,ppo,72,21.6,force,lower_fy,-0.0022598430514335632 +illusion_1L,ppo,73,21.9,force,front_fx,0.001872649765573442 +illusion_1L,ppo,73,21.9,force,front_fy,0.0001265007012989372 +illusion_1L,ppo,73,21.9,force,upper_fx,0.002013305202126503 +illusion_1L,ppo,73,21.9,force,upper_fy,0.003382145194336772 +illusion_1L,ppo,73,21.9,force,lower_fx,0.001759653678163886 +illusion_1L,ppo,73,21.9,force,lower_fy,-0.002018213039264083 +illusion_1L,ppo,74,22.2,force,front_fx,0.0018821897683665156 +illusion_1L,ppo,74,22.2,force,front_fy,1.160632473329315e-05 +illusion_1L,ppo,74,22.2,force,upper_fx,0.002008291659876704 +illusion_1L,ppo,74,22.2,force,upper_fy,0.0035878594499081373 +illusion_1L,ppo,74,22.2,force,lower_fx,0.001724241185002029 +illusion_1L,ppo,74,22.2,force,lower_fy,-0.0018113163532689214 +illusion_1L,ppo,75,22.5,force,front_fx,0.0019255218794569373 +illusion_1L,ppo,75,22.5,force,front_fy,-0.00011888697918038815 +illusion_1L,ppo,75,22.5,force,upper_fx,0.0019643595442175865 +illusion_1L,ppo,75,22.5,force,upper_fy,0.0037486141081899405 +illusion_1L,ppo,75,22.5,force,lower_fx,0.00171347102150321 +illusion_1L,ppo,75,22.5,force,lower_fy,-0.0016582341631874442 +illusion_1L,ppo,76,22.8,force,front_fx,0.0020147201139479876 +illusion_1L,ppo,76,22.8,force,front_fy,-0.0002336972247576341 +illusion_1L,ppo,76,22.8,force,upper_fx,0.0018836800009012222 +illusion_1L,ppo,76,22.8,force,upper_fy,0.003822098486125469 +illusion_1L,ppo,76,22.8,force,lower_fx,0.0017328222747892141 +illusion_1L,ppo,76,22.8,force,lower_fy,-0.0015559819294139743 +illusion_1L,ppo,77,23.1,force,front_fx,0.0020925647113472223 +illusion_1L,ppo,77,23.1,force,front_fy,-0.00033295585308223963 +illusion_1L,ppo,77,23.1,force,upper_fx,0.0017767486860975623 +illusion_1L,ppo,77,23.1,force,upper_fy,0.0038140208926051855 +illusion_1L,ppo,77,23.1,force,lower_fx,0.001778754172846675 +illusion_1L,ppo,77,23.1,force,lower_fy,-0.0015101487515494227 +illusion_1L,ppo,78,23.4,force,front_fx,0.0021798117086291313 +illusion_1L,ppo,78,23.4,force,front_fy,-0.0004254781815689057 +illusion_1L,ppo,78,23.4,force,upper_fx,0.0016581998206675053 +illusion_1L,ppo,78,23.4,force,upper_fy,0.0037679015658795834 +illusion_1L,ppo,78,23.4,force,lower_fx,0.0018543960759416223 +illusion_1L,ppo,78,23.4,force,lower_fy,-0.00154399243183434 +illusion_1L,ppo,79,23.7,force,front_fx,0.0022518588230013847 +illusion_1L,ppo,79,23.7,force,front_fy,-0.0005301294731907547 +illusion_1L,ppo,79,23.7,force,upper_fx,0.0015300518134608865 +illusion_1L,ppo,79,23.7,force,upper_fy,0.003716107225045562 +illusion_1L,ppo,79,23.7,force,lower_fx,0.00195945892482996 +illusion_1L,ppo,79,23.7,force,lower_fy,-0.0016902299830690026 +illusion_1L,ppo,80,24.0,force,front_fx,0.0023022855166345835 +illusion_1L,ppo,80,24.0,force,front_fy,-0.0006337114027701318 +illusion_1L,ppo,80,24.0,force,upper_fx,0.0013851969270035625 +illusion_1L,ppo,80,24.0,force,upper_fy,0.0036691382993012667 +illusion_1L,ppo,80,24.0,force,lower_fx,0.0020833751186728477 +illusion_1L,ppo,80,24.0,force,lower_fy,-0.001959611428901553 +illusion_1L,ppo,81,24.3,force,front_fx,0.0023355288431048393 +illusion_1L,ppo,81,24.3,force,front_fy,-0.0007276830147020519 +illusion_1L,ppo,81,24.3,force,upper_fx,0.0012048776261508465 +illusion_1L,ppo,81,24.3,force,upper_fy,0.003625165671110153 +illusion_1L,ppo,81,24.3,force,lower_fx,0.0022034780122339725 +illusion_1L,ppo,81,24.3,force,lower_fy,-0.0023231906816363335 +illusion_1L,ppo,82,24.6,force,front_fx,0.002340983599424362 +illusion_1L,ppo,82,24.6,force,front_fy,-0.0007889567059464753 +illusion_1L,ppo,82,24.6,force,upper_fx,0.001007517916150391 +illusion_1L,ppo,82,24.6,force,upper_fy,0.003548347856849432 +illusion_1L,ppo,82,24.6,force,lower_fx,0.0023126183077692986 +illusion_1L,ppo,82,24.6,force,lower_fy,-0.0027339861262589693 +illusion_1L,ppo,83,24.9,force,front_fx,0.002308048540726304 +illusion_1L,ppo,83,24.9,force,front_fy,-0.0008145665633492172 +illusion_1L,ppo,83,24.9,force,upper_fx,0.0008433805778622627 +illusion_1L,ppo,83,24.9,force,upper_fy,0.003388026962056756 +illusion_1L,ppo,83,24.9,force,lower_fx,0.0024022888392210007 +illusion_1L,ppo,83,24.9,force,lower_fy,-0.0031352497171610594 +illusion_1L,ppo,84,25.2,force,front_fx,0.0022271564230322838 +illusion_1L,ppo,84,25.2,force,front_fy,-0.0008239594753831625 +illusion_1L,ppo,84,25.2,force,upper_fx,0.000757155183237046 +illusion_1L,ppo,84,25.2,force,upper_fy,0.003137467661872506 +illusion_1L,ppo,84,25.2,force,lower_fx,0.002479949500411749 +illusion_1L,ppo,84,25.2,force,lower_fy,-0.003453038167208433 +illusion_1L,ppo,85,25.5,force,front_fx,0.0021243744995445013 +illusion_1L,ppo,85,25.5,force,front_fy,-0.0008310321718454361 +illusion_1L,ppo,85,25.5,force,upper_fx,0.0007646242156624794 +illusion_1L,ppo,85,25.5,force,upper_fy,0.002838853280991316 +illusion_1L,ppo,85,25.5,force,lower_fx,0.0025556297041475773 +illusion_1L,ppo,85,25.5,force,lower_fy,-0.0036227686796337366 +illusion_1L,ppo,86,25.8,force,front_fx,0.0020343451760709286 +illusion_1L,ppo,86,25.8,force,front_fy,-0.0008389608119614422 +illusion_1L,ppo,86,25.8,force,upper_fx,0.0008509320905432105 +illusion_1L,ppo,86,25.8,force,upper_fy,0.0025407904759049416 +illusion_1L,ppo,86,25.8,force,lower_fx,0.0026382282376289368 +illusion_1L,ppo,86,25.8,force,lower_fy,-0.00363735668361187 +illusion_1L,ppo,87,26.1,force,front_fx,0.001974157989025116 +illusion_1L,ppo,87,26.1,force,front_fy,-0.000834727194160223 +illusion_1L,ppo,87,26.1,force,upper_fx,0.0009759863023646176 +illusion_1L,ppo,87,26.1,force,upper_fy,0.0022834567353129387 +illusion_1L,ppo,87,26.1,force,lower_fx,0.0027047551702708006 +illusion_1L,ppo,87,26.1,force,lower_fy,-0.003542112885043025 +illusion_1L,ppo,88,26.4,force,front_fx,0.0019336676923558116 +illusion_1L,ppo,88,26.4,force,front_fy,-0.0008042216068133712 +illusion_1L,ppo,88,26.4,force,upper_fx,0.0011037889635190368 +illusion_1L,ppo,88,26.4,force,upper_fy,0.0020933125633746386 +illusion_1L,ppo,88,26.4,force,lower_fx,0.002708608750253916 +illusion_1L,ppo,88,26.4,force,lower_fy,-0.003419411601498723 +illusion_1L,ppo,89,26.7,force,front_fx,0.0019063864601776004 +illusion_1L,ppo,89,26.7,force,front_fy,-0.0007442481000907719 +illusion_1L,ppo,89,26.7,force,upper_fx,0.0012276581255719066 +illusion_1L,ppo,89,26.7,force,upper_fy,0.0019938370678573847 +illusion_1L,ppo,89,26.7,force,lower_fx,0.0026368226390331984 +illusion_1L,ppo,89,26.7,force,lower_fy,-0.0033401947002857924 +illusion_1L,ppo,90,27.0,force,front_fx,0.0018914900720119476 +illusion_1L,ppo,90,27.0,force,front_fy,-0.0006589702679775655 +illusion_1L,ppo,90,27.0,force,upper_fx,0.0013498287880793214 +illusion_1L,ppo,90,27.0,force,upper_fy,0.0020009558647871017 +illusion_1L,ppo,90,27.0,force,lower_fx,0.0025210916064679623 +illusion_1L,ppo,90,27.0,force,lower_fy,-0.003313270164653659 +illusion_1L,ppo,91,27.3,force,front_fx,0.001875051879324019 +illusion_1L,ppo,91,27.3,force,front_fy,-0.0005498474347405136 +illusion_1L,ppo,91,27.3,force,upper_fx,0.001470484770834446 +illusion_1L,ppo,91,27.3,force,upper_fy,0.0021115122362971306 +illusion_1L,ppo,91,27.3,force,lower_fx,0.0024012622889131308 +illusion_1L,ppo,91,27.3,force,lower_fy,-0.0032963023986667395 +illusion_1L,ppo,92,27.6,force,front_fx,0.0018659738125279546 +illusion_1L,ppo,92,27.6,force,front_fy,-0.00041312514804303646 +illusion_1L,ppo,92,27.6,force,upper_fx,0.0015863041626289487 +illusion_1L,ppo,92,27.6,force,upper_fy,0.0023043735418468714 +illusion_1L,ppo,92,27.6,force,lower_fx,0.002288053510710597 +illusion_1L,ppo,92,27.6,force,lower_fy,-0.0032435283064842224 +illusion_1L,ppo,93,27.9,force,front_fx,0.0018632977735251188 +illusion_1L,ppo,93,27.9,force,front_fy,-0.00025486163212917745 +illusion_1L,ppo,93,27.9,force,upper_fx,0.0017001612577587366 +illusion_1L,ppo,93,27.9,force,upper_fy,0.0025487509556114674 +illusion_1L,ppo,93,27.9,force,lower_fx,0.00217595137655735 +illusion_1L,ppo,93,27.9,force,lower_fy,-0.003143311245366931 +illusion_1L,ppo,94,28.2,force,front_fx,0.0018678444903343916 +illusion_1L,ppo,94,28.2,force,front_fy,-8.807096310192719e-05 +illusion_1L,ppo,94,28.2,force,upper_fx,0.0018101382302120328 +illusion_1L,ppo,94,28.2,force,upper_fy,0.002816081279888749 +illusion_1L,ppo,94,28.2,force,lower_fx,0.0020468446891754866 +illusion_1L,ppo,94,28.2,force,lower_fy,-0.0030070508364588022 +illusion_1L,ppo,95,28.5,force,front_fx,0.001876970287412405 +illusion_1L,ppo,95,28.5,force,front_fy,6.31337461527437e-05 +illusion_1L,ppo,95,28.5,force,upper_fx,0.001908753882162273 +illusion_1L,ppo,95,28.5,force,upper_fy,0.0030814618803560734 +illusion_1L,ppo,95,28.5,force,lower_fx,0.001897896290756762 +illusion_1L,ppo,95,28.5,force,lower_fy,-0.002845838898792863 +illusion_1L,ppo,96,28.8,force,front_fx,0.0018763269763439894 +illusion_1L,ppo,96,28.8,force,front_fy,0.00016866563237272203 +illusion_1L,ppo,96,28.8,force,upper_fx,0.0019926365930587053 +illusion_1L,ppo,96,28.8,force,upper_fy,0.0033288586419075727 +illusion_1L,ppo,96,28.8,force,lower_fx,0.0017533282516524196 +illusion_1L,ppo,96,28.8,force,lower_fy,-0.0026492164470255375 +illusion_1L,ppo,97,29.1,force,front_fx,0.0018739781808108091 +illusion_1L,ppo,97,29.1,force,front_fy,0.00019312943913973868 +illusion_1L,ppo,97,29.1,force,upper_fx,0.0020610454957932234 +illusion_1L,ppo,97,29.1,force,upper_fy,0.0035417929757386446 +illusion_1L,ppo,97,29.1,force,lower_fx,0.0016574077308177948 +illusion_1L,ppo,97,29.1,force,lower_fy,-0.002402540063485503 +illusion_1L,ppo,98,29.4,force,front_fx,0.0018749793525785208 +illusion_1L,ppo,98,29.4,force,front_fy,0.00012778022210113704 +illusion_1L,ppo,98,29.4,force,upper_fx,0.002106370870023966 +illusion_1L,ppo,98,29.4,force,upper_fy,0.003710776101797819 +illusion_1L,ppo,98,29.4,force,lower_fx,0.0016277015674859285 +illusion_1L,ppo,98,29.4,force,lower_fy,-0.0021179690957069397 +illusion_1L,ppo,99,29.7,force,front_fx,0.0019019031897187233 +illusion_1L,ppo,99,29.7,force,front_fy,9.941063581209164e-06 +illusion_1L,ppo,99,29.7,force,upper_fx,0.002115985844284296 +illusion_1L,ppo,99,29.7,force,upper_fy,0.003824712475761771 +illusion_1L,ppo,99,29.7,force,lower_fx,0.0016430813120678067 +illusion_1L,ppo,99,29.7,force,lower_fy,-0.0018468685448169708 +illusion_1L,ppo,100,30.0,force,front_fx,0.0019660121761262417 +illusion_1L,ppo,100,30.0,force,front_fy,-0.00012067849456798285 +illusion_1L,ppo,100,30.0,force,upper_fx,0.00207971828058362 +illusion_1L,ppo,100,30.0,force,upper_fy,0.0038796428125351667 +illusion_1L,ppo,100,30.0,force,lower_fx,0.0016810252564027905 +illusion_1L,ppo,100,30.0,force,lower_fy,-0.001641376642510295 +illusion_1L,ppo,101,30.3,force,front_fx,0.002060363069176674 +illusion_1L,ppo,101,30.3,force,front_fy,-0.0002521234564483166 +illusion_1L,ppo,101,30.3,force,upper_fx,0.0019800951704382896 +illusion_1L,ppo,101,30.3,force,upper_fy,0.0038835008163005114 +illusion_1L,ppo,101,30.3,force,lower_fx,0.0017287477385252714 +illusion_1L,ppo,101,30.3,force,lower_fy,-0.001531603280454874 +illusion_1L,ppo,102,30.6,force,front_fx,0.0021587202791124582 +illusion_1L,ppo,102,30.6,force,front_fy,-0.00035457481862977147 +illusion_1L,ppo,102,30.6,force,upper_fx,0.0018695921171456575 +illusion_1L,ppo,102,30.6,force,upper_fy,0.003899690229445696 +illusion_1L,ppo,102,30.6,force,lower_fx,0.001817938289605081 +illusion_1L,ppo,102,30.6,force,lower_fy,-0.0015211484860628843 +illusion_1L,ppo,103,30.9,force,front_fx,0.002231973921880126 +illusion_1L,ppo,103,30.9,force,front_fy,-0.00046039128210395575 +illusion_1L,ppo,103,30.9,force,upper_fx,0.0017055179923772812 +illusion_1L,ppo,103,30.9,force,upper_fy,0.003906465135514736 +illusion_1L,ppo,103,30.9,force,lower_fx,0.0019186236895620823 +illusion_1L,ppo,103,30.9,force,lower_fy,-0.001633780193515122 +illusion_1L,ppo,104,31.2,force,front_fx,0.0022971422877162695 +illusion_1L,ppo,104,31.2,force,front_fy,-0.0005659632734023035 +illusion_1L,ppo,104,31.2,force,upper_fx,0.0015213967999443412 +illusion_1L,ppo,104,31.2,force,upper_fy,0.003905016230419278 +illusion_1L,ppo,104,31.2,force,lower_fx,0.002039015991613269 +illusion_1L,ppo,104,31.2,force,lower_fy,-0.0018741809763014317 +illusion_1L,ppo,105,31.5,force,front_fx,0.0023492826148867607 +illusion_1L,ppo,105,31.5,force,front_fy,-0.000666136562358588 +illusion_1L,ppo,105,31.5,force,upper_fx,0.0013263419969007373 +illusion_1L,ppo,105,31.5,force,upper_fy,0.00388473947532475 +illusion_1L,ppo,105,31.5,force,lower_fx,0.002175678499042988 +illusion_1L,ppo,105,31.5,force,lower_fy,-0.002213389379903674 +illusion_1L,ppo,106,31.8,force,front_fx,0.0023779403418302536 +illusion_1L,ppo,106,31.8,force,front_fy,-0.0007529958966188133 +illusion_1L,ppo,106,31.8,force,upper_fx,0.001108968397602439 +illusion_1L,ppo,106,31.8,force,upper_fy,0.0038037574850022793 +illusion_1L,ppo,106,31.8,force,lower_fx,0.002298420062288642 +illusion_1L,ppo,106,31.8,force,lower_fy,-0.002599458210170269 +illusion_1L,ppo,107,32.1,force,front_fx,0.0023804965894669294 +illusion_1L,ppo,107,32.1,force,front_fy,-0.0008205906488001347 +illusion_1L,ppo,107,32.1,force,upper_fx,0.0009009870700538158 +illusion_1L,ppo,107,32.1,force,upper_fy,0.0036575691774487495 +illusion_1L,ppo,107,32.1,force,lower_fx,0.0024155492428690195 +illusion_1L,ppo,107,32.1,force,lower_fy,-0.0029965860303491354 +illusion_1L,ppo,108,32.4,force,front_fx,0.00234407652169466 +illusion_1L,ppo,108,32.4,force,front_fy,-0.0008706756634637713 +illusion_1L,ppo,108,32.4,force,upper_fx,0.0007325024344027042 +illusion_1L,ppo,108,32.4,force,upper_fy,0.0034323057625442743 +illusion_1L,ppo,108,32.4,force,lower_fx,0.0025164822582155466 +illusion_1L,ppo,108,32.4,force,lower_fy,-0.003345885779708624 +illusion_1L,ppo,109,32.7,force,front_fx,0.002275807550176978 +illusion_1L,ppo,109,32.7,force,front_fy,-0.000910980103071779 +illusion_1L,ppo,109,32.7,force,upper_fx,0.0006498247385025024 +illusion_1L,ppo,109,32.7,force,upper_fy,0.0031534561421722174 +illusion_1L,ppo,109,32.7,force,lower_fx,0.0026108776219189167 +illusion_1L,ppo,109,32.7,force,lower_fy,-0.003586730919778347 +illusion_1L,ppo,110,33.0,force,front_fx,0.002180623123422265 +illusion_1L,ppo,110,33.0,force,front_fy,-0.0009382260614074767 +illusion_1L,ppo,110,33.0,force,upper_fx,0.0006638786289840937 +illusion_1L,ppo,110,33.0,force,upper_fy,0.002852808218449354 +illusion_1L,ppo,110,33.0,force,lower_fx,0.0026971607003360987 +illusion_1L,ppo,110,33.0,force,lower_fy,-0.0036835805512964725 +illusion_1L,ppo,111,33.3,force,front_fx,0.002085373504087329 +illusion_1L,ppo,111,33.3,force,front_fy,-0.000940348778385669 +illusion_1L,ppo,111,33.3,force,upper_fx,0.0007675118977203965 +illusion_1L,ppo,111,33.3,force,upper_fy,0.002554464153945446 +illusion_1L,ppo,111,33.3,force,lower_fx,0.0027681610081344843 +illusion_1L,ppo,111,33.3,force,lower_fy,-0.0036469686310738325 +illusion_1L,ppo,112,33.6,force,front_fx,0.0020059184171259403 +illusion_1L,ppo,112,33.6,force,front_fy,-0.000909221067558974 +illusion_1L,ppo,112,33.6,force,upper_fx,0.0009167873067781329 +illusion_1L,ppo,112,33.6,force,upper_fy,0.002289405558258295 +illusion_1L,ppo,112,33.6,force,lower_fx,0.0028009936213493347 +illusion_1L,ppo,112,33.6,force,lower_fy,-0.0035355226136744022 +illusion_1L,ppo,113,33.9,force,front_fx,0.001952903694473207 +illusion_1L,ppo,113,33.9,force,front_fy,-0.0008514460641890764 +illusion_1L,ppo,113,33.9,force,upper_fx,0.0010712675284594297 +illusion_1L,ppo,113,33.9,force,upper_fy,0.002102792961522937 +illusion_1L,ppo,113,33.9,force,lower_fx,0.00276961294002831 +illusion_1L,ppo,113,33.9,force,lower_fy,-0.0034193459432572126 +illusion_1L,ppo,114,34.2,force,front_fx,0.0019148647552356124 +illusion_1L,ppo,114,34.2,force,front_fy,-0.000769275997299701 +illusion_1L,ppo,114,34.2,force,upper_fx,0.0012172985589131713 +illusion_1L,ppo,114,34.2,force,upper_fy,0.002020109212026 +illusion_1L,ppo,114,34.2,force,lower_fx,0.002676198724657297 +illusion_1L,ppo,114,34.2,force,lower_fy,-0.0033482657745480537 +illusion_1L,ppo,115,34.5,force,front_fx,0.001891853753477335 +illusion_1L,ppo,115,34.5,force,front_fy,-0.000666626903694123 +illusion_1L,ppo,115,34.5,force,upper_fx,0.0013618584489449859 +illusion_1L,ppo,115,34.5,force,upper_fy,0.0020416611805558205 +illusion_1L,ppo,115,34.5,force,lower_fx,0.0025574250612407923 +illusion_1L,ppo,115,34.5,force,lower_fy,-0.0033216464798897505 +illusion_1L,ppo,116,34.8,force,front_fx,0.0018815204966813326 +illusion_1L,ppo,116,34.8,force,front_fy,-0.0005425759009085596 +illusion_1L,ppo,116,34.8,force,upper_fx,0.0015042037703096867 +illusion_1L,ppo,116,34.8,force,upper_fy,0.0021614141296595335 +illusion_1L,ppo,116,34.8,force,lower_fx,0.0024436127860099077 +illusion_1L,ppo,116,34.8,force,lower_fy,-0.003293814370408654 +illusion_1L,ppo,117,35.1,force,front_fx,0.0018808363238349557 +illusion_1L,ppo,117,35.1,force,front_fy,-0.0003870637738145888 +illusion_1L,ppo,117,35.1,force,upper_fx,0.001632453640922904 +illusion_1L,ppo,117,35.1,force,upper_fy,0.0023597273975610733 +illusion_1L,ppo,117,35.1,force,lower_fx,0.0023329248651862144 +illusion_1L,ppo,117,35.1,force,lower_fy,-0.003218337893486023 +illusion_1L,ppo,118,35.4,force,front_fx,0.0018779117381200194 +illusion_1L,ppo,118,35.4,force,front_fy,-0.00021068533533252776 +illusion_1L,ppo,118,35.4,force,upper_fx,0.0017439143266528845 +illusion_1L,ppo,118,35.4,force,upper_fy,0.0026011215522885323 +illusion_1L,ppo,118,35.4,force,lower_fx,0.0022062824573367834 +illusion_1L,ppo,118,35.4,force,lower_fy,-0.0030929939821362495 +illusion_1L,ppo,119,35.7,force,front_fx,0.0018830561311915517 +illusion_1L,ppo,119,35.7,force,front_fy,-3.0372089895536192e-05 +illusion_1L,ppo,119,35.7,force,upper_fx,0.0018531191162765026 +illusion_1L,ppo,119,35.7,force,upper_fy,0.0028548026457428932 +illusion_1L,ppo,119,35.7,force,lower_fx,0.002064534230157733 +illusion_1L,ppo,119,35.7,force,lower_fy,-0.0029326556250452995 +illusion_1L,ppo,120,36.0,force,front_fx,0.0018831434426829219 +illusion_1L,ppo,120,36.0,force,front_fy,0.00012211836292408407 +illusion_1L,ppo,120,36.0,force,upper_fx,0.0019425038481131196 +illusion_1L,ppo,120,36.0,force,upper_fy,0.0030983174219727516 +illusion_1L,ppo,120,36.0,force,lower_fx,0.0018959410954266787 +illusion_1L,ppo,120,36.0,force,lower_fy,-0.0027356399223208427 +illusion_1L,ppo,121,36.3,force,front_fx,0.001880598720163107 +illusion_1L,ppo,121,36.3,force,front_fy,0.00020507648878265172 +illusion_1L,ppo,121,36.3,force,upper_fx,0.0020297267474234104 +illusion_1L,ppo,121,36.3,force,upper_fy,0.003326118690893054 +illusion_1L,ppo,121,36.3,force,lower_fx,0.0017606239998713136 +illusion_1L,ppo,121,36.3,force,lower_fy,-0.002505932468920946 +illusion_1L,ppo,122,36.6,force,front_fx,0.0018705407856032252 +illusion_1L,ppo,122,36.6,force,front_fy,0.00019169715233147144 +illusion_1L,ppo,122,36.6,force,upper_fx,0.0021000185515731573 +illusion_1L,ppo,122,36.6,force,upper_fy,0.003534839255735278 +illusion_1L,ppo,122,36.6,force,lower_fx,0.001679005566984415 +illusion_1L,ppo,122,36.6,force,lower_fy,-0.002240107161924243 +illusion_1L,ppo,123,36.9,force,front_fx,0.0018798329401761293 +illusion_1L,ppo,123,36.9,force,front_fy,9.950938692782074e-05 +illusion_1L,ppo,123,36.9,force,upper_fx,0.002138742245733738 +illusion_1L,ppo,123,36.9,force,upper_fy,0.0037184853572398424 +illusion_1L,ppo,123,36.9,force,lower_fx,0.0016551392618566751 +illusion_1L,ppo,123,36.9,force,lower_fy,-0.0019732359796762466 +illusion_1L,ppo,124,37.2,force,front_fx,0.0019248747266829014 +illusion_1L,ppo,124,37.2,force,front_fy,-3.1677071092417464e-05 +illusion_1L,ppo,124,37.2,force,upper_fx,0.00213486491702497 +illusion_1L,ppo,124,37.2,force,upper_fy,0.0038571981713175774 +illusion_1L,ppo,124,37.2,force,lower_fx,0.001666765776462853 +illusion_1L,ppo,124,37.2,force,lower_fy,-0.0017463042167946696 +illusion_1L,ppo,125,37.5,force,front_fx,0.002000071108341217 +illusion_1L,ppo,125,37.5,force,front_fy,-0.00016002437041606754 +illusion_1L,ppo,125,37.5,force,upper_fx,0.002078025136142969 +illusion_1L,ppo,125,37.5,force,upper_fy,0.0039291987195611 +illusion_1L,ppo,125,37.5,force,lower_fx,0.001694923616014421 +illusion_1L,ppo,125,37.5,force,lower_fy,-0.001590494066476822 +illusion_1L,ppo,126,37.8,force,front_fx,0.0020902331452816725 +illusion_1L,ppo,126,37.8,force,front_fy,-0.0002701466146390885 +illusion_1L,ppo,126,37.8,force,upper_fx,0.0019722001161426306 +illusion_1L,ppo,126,37.8,force,upper_fy,0.0039386143907904625 +illusion_1L,ppo,126,37.8,force,lower_fx,0.0017450799932703376 +illusion_1L,ppo,126,37.8,force,lower_fy,-0.0015184272779151797 +illusion_1L,ppo,127,38.1,force,front_fx,0.0021760521922260523 +illusion_1L,ppo,127,38.1,force,front_fy,-0.0003748350718524307 +illusion_1L,ppo,127,38.1,force,upper_fx,0.0018332909094169736 +illusion_1L,ppo,127,38.1,force,upper_fy,0.003916487563401461 +illusion_1L,ppo,127,38.1,force,lower_fx,0.0018282830715179443 +illusion_1L,ppo,127,38.1,force,lower_fy,-0.001544299302622676 +illusion_1L,ppo,128,38.4,force,front_fx,0.0022460203617811203 +illusion_1L,ppo,128,38.4,force,front_fy,-0.00047256157267838717 +illusion_1L,ppo,128,38.4,force,upper_fx,0.0016729049384593964 +illusion_1L,ppo,128,38.4,force,upper_fy,0.003889881307259202 +illusion_1L,ppo,128,38.4,force,lower_fx,0.001942664384841919 +illusion_1L,ppo,128,38.4,force,lower_fy,-0.0016874698922038078 +illusion_1L,ppo,129,38.7,force,front_fx,0.002301751635968685 +illusion_1L,ppo,129,38.7,force,front_fy,-0.0005751688149757683 +illusion_1L,ppo,129,38.7,force,upper_fx,0.0014950528275221586 +illusion_1L,ppo,129,38.7,force,upper_fy,0.0038623178843408823 +illusion_1L,ppo,129,38.7,force,lower_fx,0.0020784519147127867 +illusion_1L,ppo,129,38.7,force,lower_fy,-0.0019509673584252596 +illusion_1L,ppo,130,39.0,force,front_fx,0.0023465987760573626 +illusion_1L,ppo,130,39.0,force,front_fy,-0.000679856282658875 +illusion_1L,ppo,130,39.0,force,upper_fx,0.0012961338507011533 +illusion_1L,ppo,130,39.0,force,upper_fy,0.0038235073443502188 +illusion_1L,ppo,130,39.0,force,lower_fx,0.0022270227782428265 +illusion_1L,ppo,130,39.0,force,lower_fy,-0.0023099714890122414 +illusion_1L,ppo,131,39.3,force,front_fx,0.0023755505681037903 +illusion_1L,ppo,131,39.3,force,front_fy,-0.000769568607211113 +illusion_1L,ppo,131,39.3,force,upper_fx,0.0010795636335387826 +illusion_1L,ppo,131,39.3,force,upper_fy,0.003753358032554388 +illusion_1L,ppo,131,39.3,force,lower_fx,0.0023644650354981422 +illusion_1L,ppo,131,39.3,force,lower_fy,-0.002717710565775633 +illusion_1L,ppo,132,39.6,force,front_fx,0.0023727291263639927 +illusion_1L,ppo,132,39.6,force,front_fy,-0.0008326355018652976 +illusion_1L,ppo,132,39.6,force,upper_fx,0.0008703536004759371 +illusion_1L,ppo,132,39.6,force,upper_fy,0.0036126060876995325 +illusion_1L,ppo,132,39.6,force,lower_fx,0.0024790423922240734 +illusion_1L,ppo,132,39.6,force,lower_fy,-0.003120352514088154 +illusion_1L,ppo,133,39.9,force,front_fx,0.002318944549188018 +illusion_1L,ppo,133,39.9,force,front_fy,-0.0008753806469030678 +illusion_1L,ppo,133,39.9,force,upper_fx,0.0007150991004891694 +illusion_1L,ppo,133,39.9,force,upper_fy,0.003378446213901043 +illusion_1L,ppo,133,39.9,force,lower_fx,0.0025709725450724363 +illusion_1L,ppo,133,39.9,force,lower_fy,-0.00345411105081439 +illusion_1L,ppo,134,40.2,force,front_fx,0.002234707586467266 +illusion_1L,ppo,134,40.2,force,front_fy,-0.0009081262396648526 +illusion_1L,ppo,134,40.2,force,upper_fx,0.0006569341639988124 +illusion_1L,ppo,134,40.2,force,upper_fy,0.0030806390568614006 +illusion_1L,ppo,134,40.2,force,lower_fx,0.00265591312199831 +illusion_1L,ppo,134,40.2,force,lower_fy,-0.0036499258130788803 +illusion_1L,ppo,135,40.5,force,front_fx,0.0021349915768951178 +illusion_1L,ppo,135,40.5,force,front_fy,-0.0009235366014763713 +illusion_1L,ppo,135,40.5,force,upper_fx,0.0007078752387315035 +illusion_1L,ppo,135,40.5,force,upper_fy,0.002758956281468272 +illusion_1L,ppo,135,40.5,force,lower_fx,0.0027426439337432384 +illusion_1L,ppo,135,40.5,force,lower_fy,-0.0036834038328379393 +illusion_1L,ppo,136,40.8,force,front_fx,0.00204545003362 +illusion_1L,ppo,136,40.8,force,front_fy,-0.0009153526043519378 +illusion_1L,ppo,136,40.8,force,upper_fx,0.0008388133137486875 +illusion_1L,ppo,136,40.8,force,upper_fy,0.0024516789708286524 +illusion_1L,ppo,136,40.8,force,lower_fx,0.002812143648043275 +illusion_1L,ppo,136,40.8,force,lower_fy,-0.0035949349403381348 +illusion_1L,ppo,137,41.1,force,front_fx,0.0019800555892288685 +illusion_1L,ppo,137,41.1,force,front_fy,-0.0008759070187807083 +illusion_1L,ppo,137,41.1,force,upper_fx,0.000995885580778122 +illusion_1L,ppo,137,41.1,force,upper_fy,0.0022047481033951044 +illusion_1L,ppo,137,41.1,force,lower_fx,0.0028305232990533113 +illusion_1L,ppo,137,41.1,force,lower_fy,-0.0034624412655830383 +illusion_1L,ppo,138,41.4,force,front_fx,0.0019410050008445978 +illusion_1L,ppo,138,41.4,force,front_fy,-0.0008123545558191836 +illusion_1L,ppo,138,41.4,force,upper_fx,0.0011526137823238969 +illusion_1L,ppo,138,41.4,force,upper_fy,0.0020571264903992414 +illusion_1L,ppo,138,41.4,force,lower_fx,0.002776786684989929 +illusion_1L,ppo,138,41.4,force,lower_fy,-0.0033679818734526634 +illusion_1L,ppo,139,41.7,force,front_fx,0.0019143595127388835 +illusion_1L,ppo,139,41.7,force,front_fy,-0.0007284238236024976 +illusion_1L,ppo,139,41.7,force,upper_fx,0.001304173027165234 +illusion_1L,ppo,139,41.7,force,upper_fy,0.0020226705819368362 +illusion_1L,ppo,139,41.7,force,lower_fx,0.002666692715138197 +illusion_1L,ppo,139,41.7,force,lower_fy,-0.003352588741108775 +illusion_1L,ppo,140,42.0,force,front_fx,0.0018933230312541127 +illusion_1L,ppo,140,42.0,force,front_fy,-0.0006235525943338871 +illusion_1L,ppo,140,42.0,force,upper_fx,0.0014386180555447936 +illusion_1L,ppo,140,42.0,force,upper_fy,0.0020975193474441767 +illusion_1L,ppo,140,42.0,force,lower_fx,0.0025280695408582687 +illusion_1L,ppo,140,42.0,force,lower_fy,-0.003381462534889579 +illusion_1L,ppo,141,42.3,force,front_fx,0.0018768481677398086 +illusion_1L,ppo,141,42.3,force,front_fy,-0.0004914059536531568 +illusion_1L,ppo,141,42.3,force,upper_fx,0.0015550898388028145 +illusion_1L,ppo,141,42.3,force,upper_fy,0.002261499175801873 +illusion_1L,ppo,141,42.3,force,lower_fx,0.002390124136582017 +illusion_1L,ppo,141,42.3,force,lower_fy,-0.003380625741556287 +illusion_1L,ppo,142,42.6,force,front_fx,0.0018697597552090883 +illusion_1L,ppo,142,42.6,force,front_fy,-0.00033191972761414945 +illusion_1L,ppo,142,42.6,force,upper_fx,0.0016623812261968851 +illusion_1L,ppo,142,42.6,force,upper_fy,0.0024780938401818275 +illusion_1L,ppo,142,42.6,force,lower_fx,0.0022581079974770546 +illusion_1L,ppo,142,42.6,force,lower_fy,-0.003306846832856536 +illusion_1L,ppo,143,42.9,force,front_fx,0.0018719061044976115 +illusion_1L,ppo,143,42.9,force,front_fy,-0.0001543317048344761 +illusion_1L,ppo,143,42.9,force,upper_fx,0.001764359069056809 +illusion_1L,ppo,143,42.9,force,upper_fy,0.0027102010790258646 +illusion_1L,ppo,143,42.9,force,lower_fx,0.0021140684839338064 +illusion_1L,ppo,143,42.9,force,lower_fy,-0.0031662487890571356 +illusion_1L,ppo,144,43.2,force,front_fx,0.0018800328252837062 +illusion_1L,ppo,144,43.2,force,front_fy,2.221495014964603e-05 +illusion_1L,ppo,144,43.2,force,upper_fx,0.0018681675428524613 +illusion_1L,ppo,144,43.2,force,upper_fy,0.002932737348601222 +illusion_1L,ppo,144,43.2,force,lower_fx,0.001951996935531497 +illusion_1L,ppo,144,43.2,force,lower_fy,-0.0029847987461835146 +illusion_1L,ppo,145,43.5,force,front_fx,0.001892545842565596 +illusion_1L,ppo,145,43.5,force,front_fy,0.00016343114839401096 +illusion_1L,ppo,145,43.5,force,upper_fx,0.001975135412067175 +illusion_1L,ppo,145,43.5,force,upper_fy,0.0031320275738835335 +illusion_1L,ppo,145,43.5,force,lower_fx,0.0017940548714250326 +illusion_1L,ppo,145,43.5,force,lower_fy,-0.0027774947229772806 +illusion_1L,ppo,146,43.8,force,front_fx,0.0018987961811944842 +illusion_1L,ppo,146,43.8,force,front_fy,0.00023033474280964583 +illusion_1L,ppo,146,43.8,force,upper_fx,0.002077127806842327 +illusion_1L,ppo,146,43.8,force,upper_fy,0.0033105313777923584 +illusion_1L,ppo,146,43.8,force,lower_fx,0.0016803982434794307 +illusion_1L,ppo,146,43.8,force,lower_fy,-0.0025379392318427563 +illusion_1L,ppo,147,44.1,force,front_fx,0.0018940778682008386 +illusion_1L,ppo,147,44.1,force,front_fy,0.00020621549629140645 +illusion_1L,ppo,147,44.1,force,upper_fx,0.0021500964649021626 +illusion_1L,ppo,147,44.1,force,upper_fy,0.0034740157425403595 +illusion_1L,ppo,147,44.1,force,lower_fx,0.0016249970067292452 +illusion_1L,ppo,147,44.1,force,lower_fy,-0.0022650668397545815 +illusion_1L,ppo,148,44.4,force,front_fx,0.0018965776544064283 +illusion_1L,ppo,148,44.4,force,front_fy,0.00010193018533755094 +illusion_1L,ppo,148,44.4,force,upper_fx,0.0021729981526732445 +illusion_1L,ppo,148,44.4,force,upper_fy,0.003618573769927025 +illusion_1L,ppo,148,44.4,force,lower_fx,0.0016230718465521932 +illusion_1L,ppo,148,44.4,force,lower_fy,-0.0019918258767575026 +illusion_1L,ppo,149,44.7,force,front_fx,0.0019304167944937944 +illusion_1L,ppo,149,44.7,force,front_fy,-3.173997174599208e-05 +illusion_1L,ppo,149,44.7,force,upper_fx,0.0021436961833387613 +illusion_1L,ppo,149,44.7,force,upper_fy,0.0037402769085019827 +illusion_1L,ppo,149,44.7,force,lower_fx,0.0016518734628334641 +illusion_1L,ppo,149,44.7,force,lower_fy,-0.001758671598508954 +illusion_1L,ppo,150,45.0,force,front_fx,0.002000275067985058 +illusion_1L,ppo,150,45.0,force,front_fy,-0.00016430225514341146 +illusion_1L,ppo,150,45.0,force,upper_fx,0.002064425265416503 +illusion_1L,ppo,150,45.0,force,upper_fy,0.0038249874487519264 +illusion_1L,ppo,150,45.0,force,lower_fx,0.0017002997919917107 +illusion_1L,ppo,150,45.0,force,lower_fy,-0.0015942802419885993 +illusion_1L,ppo,151,45.3,force,front_fx,0.002084567677229643 +illusion_1L,ppo,151,45.3,force,front_fy,-0.00028474986902438104 +illusion_1L,ppo,151,45.3,force,upper_fx,0.0019422047771513462 +illusion_1L,ppo,151,45.3,force,upper_fy,0.0038704483304172754 +illusion_1L,ppo,151,45.3,force,lower_fx,0.0017655224073678255 +illusion_1L,ppo,151,45.3,force,lower_fy,-0.0015173869905993342 +illusion_1L,ppo,152,45.6,force,front_fx,0.002173282206058502 +illusion_1L,ppo,152,45.6,force,front_fy,-0.00039623831980861723 +illusion_1L,ppo,152,45.6,force,upper_fx,0.0017905008280649781 +illusion_1L,ppo,152,45.6,force,upper_fy,0.003896047594025731 +illusion_1L,ppo,152,45.6,force,lower_fx,0.0018528350628912449 +illusion_1L,ppo,152,45.6,force,lower_fy,-0.0015384168364107609 +illusion_1L,ppo,153,45.9,force,front_fx,0.00225433730520308 +illusion_1L,ppo,153,45.9,force,front_fy,-0.0005069863982498646 +illusion_1L,ppo,153,45.9,force,upper_fx,0.001621283357962966 +illusion_1L,ppo,153,45.9,force,upper_fy,0.003912702202796936 +illusion_1L,ppo,153,45.9,force,lower_fx,0.0019634689670056105 +illusion_1L,ppo,153,45.9,force,lower_fy,-0.0016713800141587853 +illusion_1L,ppo,154,46.2,force,front_fx,0.002323220716789365 +illusion_1L,ppo,154,46.2,force,front_fy,-0.0006219425122253597 +illusion_1L,ppo,154,46.2,force,upper_fx,0.0014379032654687762 +illusion_1L,ppo,154,46.2,force,upper_fy,0.003915971145033836 +illusion_1L,ppo,154,46.2,force,lower_fx,0.0020872768945991993 +illusion_1L,ppo,154,46.2,force,lower_fy,-0.0019142345990985632 +illusion_1L,ppo,155,46.5,force,front_fx,0.002389387460425496 +illusion_1L,ppo,155,46.5,force,front_fy,-0.000729415740352124 +illusion_1L,ppo,155,46.5,force,upper_fx,0.0012296014465391636 +illusion_1L,ppo,155,46.5,force,upper_fy,0.0038900801446288824 +illusion_1L,ppo,155,46.5,force,lower_fx,0.002207384444773197 +illusion_1L,ppo,155,46.5,force,lower_fy,-0.0022361583542078733 +illusion_1L,ppo,156,46.8,force,front_fx,0.002421724144369364 +illusion_1L,ppo,156,46.8,force,front_fy,-0.0008328423136845231 +illusion_1L,ppo,156,46.8,force,upper_fx,0.0010103159584105015 +illusion_1L,ppo,156,46.8,force,upper_fy,0.0038013779558241367 +illusion_1L,ppo,156,46.8,force,lower_fx,0.002316872589290142 +illusion_1L,ppo,156,46.8,force,lower_fy,-0.002593285869807005 +illusion_1L,ppo,157,47.1,force,front_fx,0.002399253658950329 +illusion_1L,ppo,157,47.1,force,front_fy,-0.0008669530507177114 +illusion_1L,ppo,157,47.1,force,upper_fx,0.0008249973761849105 +illusion_1L,ppo,157,47.1,force,upper_fy,0.0036190187092870474 +illusion_1L,ppo,157,47.1,force,lower_fx,0.0024120069574564695 +illusion_1L,ppo,157,47.1,force,lower_fy,-0.0029434419702738523 +illusion_1L,ppo,158,47.4,force,front_fx,0.0023323975037783384 +illusion_1L,ppo,158,47.4,force,front_fy,-0.0008923457935452461 +illusion_1L,ppo,158,47.4,force,upper_fx,0.0007086085388436913 +illusion_1L,ppo,158,47.4,force,upper_fy,0.003356111003085971 +illusion_1L,ppo,158,47.4,force,lower_fx,0.00250078272074461 +illusion_1L,ppo,158,47.4,force,lower_fy,-0.0032312660478055477 +illusion_1L,ppo,159,47.7,force,front_fx,0.0022369378712028265 +illusion_1L,ppo,159,47.7,force,front_fy,-0.0009130479884333909 +illusion_1L,ppo,159,47.7,force,upper_fx,0.0006866467301733792 +illusion_1L,ppo,159,47.7,force,upper_fy,0.0030544784385710955 +illusion_1L,ppo,159,47.7,force,lower_fx,0.00258340360596776 +illusion_1L,ppo,159,47.7,force,lower_fy,-0.003400286892428994 +illusion_1L,ppo,160,48.0,force,front_fx,0.0021321892272681 +illusion_1L,ppo,160,48.0,force,front_fy,-0.0009167339303530753 +illusion_1L,ppo,160,48.0,force,upper_fx,0.0007660624105483294 +illusion_1L,ppo,160,48.0,force,upper_fy,0.0027436267118901014 +illusion_1L,ppo,160,48.0,force,lower_fx,0.0026654284447431564 +illusion_1L,ppo,160,48.0,force,lower_fy,-0.003449950134381652 +illusion_1L,ppo,161,48.3,force,front_fx,0.0020426209084689617 +illusion_1L,ppo,161,48.3,force,front_fy,-0.0008973233052529395 +illusion_1L,ppo,161,48.3,force,upper_fx,0.0009076027781702578 +illusion_1L,ppo,161,48.3,force,upper_fy,0.002453333232551813 +illusion_1L,ppo,161,48.3,force,lower_fx,0.002724866382777691 +illusion_1L,ppo,161,48.3,force,lower_fy,-0.00341846258379519 +illusion_1L,ppo,162,48.6,force,front_fx,0.0019760194700211287 +illusion_1L,ppo,162,48.6,force,front_fy,-0.0008550282218493521 +illusion_1L,ppo,162,48.6,force,upper_fx,0.0010523382807150483 +illusion_1L,ppo,162,48.6,force,upper_fy,0.00222113193012774 +illusion_1L,ppo,162,48.6,force,lower_fx,0.002722226083278656 +illusion_1L,ppo,162,48.6,force,lower_fy,-0.003362777642905712 +illusion_1L,ppo,163,48.9,force,front_fx,0.0019310330972075462 +illusion_1L,ppo,163,48.9,force,front_fy,-0.0007879671175032854 +illusion_1L,ppo,163,48.9,force,upper_fx,0.0011856949422508478 +illusion_1L,ppo,163,48.9,force,upper_fy,0.0020724667701870203 +illusion_1L,ppo,163,48.9,force,lower_fx,0.002651014132425189 +illusion_1L,ppo,163,48.9,force,lower_fy,-0.003338039619848132 +illusion_1L,ppo,164,49.2,force,front_fx,0.0019029112299904227 +illusion_1L,ppo,164,49.2,force,front_fy,-0.0006979060126468539 +illusion_1L,ppo,164,49.2,force,upper_fx,0.001311135245487094 +illusion_1L,ppo,164,49.2,force,upper_fy,0.002015726873651147 +illusion_1L,ppo,164,49.2,force,lower_fx,0.0025345024187117815 +illusion_1L,ppo,164,49.2,force,lower_fy,-0.0033584837801754475 +illusion_1L,ppo,165,49.5,force,front_fx,0.0018854383379220963 +illusion_1L,ppo,165,49.5,force,front_fy,-0.0005881644319742918 +illusion_1L,ppo,165,49.5,force,upper_fx,0.0014274736167863011 +illusion_1L,ppo,165,49.5,force,upper_fy,0.0020502745173871517 +illusion_1L,ppo,165,49.5,force,lower_fx,0.00240200012922287 +illusion_1L,ppo,165,49.5,force,lower_fy,-0.0033924949821084738 +illusion_1L,ppo,166,49.8,force,front_fx,0.0018759651575237513 +illusion_1L,ppo,166,49.8,force,front_fy,-0.0004536293854471296 +illusion_1L,ppo,166,49.8,force,upper_fx,0.0015373043715953827 +illusion_1L,ppo,166,49.8,force,upper_fy,0.002160195726901293 +illusion_1L,ppo,166,49.8,force,lower_fx,0.0022728852927684784 +illusion_1L,ppo,166,49.8,force,lower_fy,-0.0033888951875269413 +illusion_1L,ppo,167,50.1,force,front_fx,0.0018808071035891771 +illusion_1L,ppo,167,50.1,force,front_fy,-0.0002924301370512694 +illusion_1L,ppo,167,50.1,force,upper_fx,0.0016446904046460986 +illusion_1L,ppo,167,50.1,force,upper_fy,0.002319083781912923 +illusion_1L,ppo,167,50.1,force,lower_fx,0.002146981656551361 +illusion_1L,ppo,167,50.1,force,lower_fy,-0.0033235354349017143 +illusion_1L,ppo,168,50.4,force,front_fx,0.0018944090697914362 +illusion_1L,ppo,168,50.4,force,front_fy,-0.00011634789552772418 +illusion_1L,ppo,168,50.4,force,upper_fx,0.0017554911319166422 +illusion_1L,ppo,168,50.4,force,upper_fy,0.0025024961214512587 +illusion_1L,ppo,168,50.4,force,lower_fx,0.0020163783337920904 +illusion_1L,ppo,168,50.4,force,lower_fy,-0.0032068081200122833 +illusion_1L,ppo,169,50.7,force,front_fx,0.001910471124574542 +illusion_1L,ppo,169,50.7,force,front_fy,4.794530832441524e-05 +illusion_1L,ppo,169,50.7,force,upper_fx,0.0018601175397634506 +illusion_1L,ppo,169,50.7,force,upper_fy,0.002698924159631133 +illusion_1L,ppo,169,50.7,force,lower_fx,0.0018726278794929385 +illusion_1L,ppo,169,50.7,force,lower_fy,-0.003054704749956727 +illusion_1L,ppo,170,51.0,force,front_fx,0.0019067556131631136 +illusion_1L,ppo,170,51.0,force,front_fy,0.00017032894538715482 +illusion_1L,ppo,170,51.0,force,upper_fx,0.0019518299959599972 +illusion_1L,ppo,170,51.0,force,upper_fy,0.0029059958178550005 +illusion_1L,ppo,170,51.0,force,lower_fx,0.0017363324295729399 +illusion_1L,ppo,170,51.0,force,lower_fy,-0.0028596052434295416 +illusion_1L,ppo,171,51.3,force,front_fx,0.0018959082663059235 +illusion_1L,ppo,171,51.3,force,front_fy,0.00019676405645441264 +illusion_1L,ppo,171,51.3,force,upper_fx,0.0020265430212020874 +illusion_1L,ppo,171,51.3,force,upper_fy,0.0031201569363474846 +illusion_1L,ppo,171,51.3,force,lower_fx,0.001650249701924622 +illusion_1L,ppo,171,51.3,force,lower_fy,-0.002610529540106654 +illusion_1L,ppo,172,51.6,force,front_fx,0.0018779619131237268 +illusion_1L,ppo,172,51.6,force,front_fy,0.0001344893389614299 +illusion_1L,ppo,172,51.6,force,upper_fx,0.0020734856370836496 +illusion_1L,ppo,172,51.6,force,upper_fy,0.0033389993477612734 +illusion_1L,ppo,172,51.6,force,lower_fx,0.0016255764057859778 +illusion_1L,ppo,172,51.6,force,lower_fy,-0.0023229802027344704 +illusion_1L,ppo,173,51.9,force,front_fx,0.0018777891527861357 +illusion_1L,ppo,173,51.9,force,front_fy,1.8950802768813446e-05 +illusion_1L,ppo,173,51.9,force,upper_fx,0.002082051942124963 +illusion_1L,ppo,173,51.9,force,upper_fy,0.003545875661075115 +illusion_1L,ppo,173,51.9,force,lower_fx,0.0016445956425741315 +illusion_1L,ppo,173,51.9,force,lower_fy,-0.002042669104412198 +illusion_1L,ppo,174,52.2,force,front_fx,0.0019164785044267774 +illusion_1L,ppo,174,52.2,force,front_fy,-0.00010595894127618521 +illusion_1L,ppo,174,52.2,force,upper_fx,0.0020463678520172834 +illusion_1L,ppo,174,52.2,force,upper_fy,0.0037078524474054575 +illusion_1L,ppo,174,52.2,force,lower_fx,0.001684481743723154 +illusion_1L,ppo,174,52.2,force,lower_fy,-0.0018059221329167485 +illusion_1L,ppo,175,52.5,force,front_fx,0.0019951609428972006 +illusion_1L,ppo,175,52.5,force,front_fy,-0.0002162922901334241 +illusion_1L,ppo,175,52.5,force,upper_fx,0.0019721246790140867 +illusion_1L,ppo,175,52.5,force,upper_fy,0.0038088622968643904 +illusion_1L,ppo,175,52.5,force,lower_fx,0.001738369232043624 +illusion_1L,ppo,175,52.5,force,lower_fy,-0.0016268505714833736 +illusion_1L,ppo,176,52.8,force,front_fx,0.0020908815786242485 +illusion_1L,ppo,176,52.8,force,front_fy,-0.00032032723538577557 +illusion_1L,ppo,176,52.8,force,upper_fx,0.001859205192886293 +illusion_1L,ppo,176,52.8,force,upper_fy,0.003866378916427493 +illusion_1L,ppo,176,52.8,force,lower_fx,0.0018031675135716796 +illusion_1L,ppo,176,52.8,force,lower_fy,-0.0015202261274680495 +illusion_1L,ppo,177,53.1,force,front_fx,0.002184563782066107 +illusion_1L,ppo,177,53.1,force,front_fy,-0.0004207949968986213 +illusion_1L,ppo,177,53.1,force,upper_fx,0.0017162696458399296 +illusion_1L,ppo,177,53.1,force,upper_fy,0.0039031775668263435 +illusion_1L,ppo,177,53.1,force,lower_fx,0.0018750176532194018 +illusion_1L,ppo,177,53.1,force,lower_fy,-0.0015122891636565328 +illusion_1L,ppo,178,53.4,force,front_fx,0.0022616072092205286 +illusion_1L,ppo,178,53.4,force,front_fy,-0.0005314504378475249 +illusion_1L,ppo,178,53.4,force,upper_fx,0.001550931017845869 +illusion_1L,ppo,178,53.4,force,upper_fy,0.003914819099009037 +illusion_1L,ppo,178,53.4,force,lower_fx,0.001959197223186493 +illusion_1L,ppo,178,53.4,force,lower_fy,-0.0016246908344328403 +illusion_1L,ppo,179,53.7,force,front_fx,0.00233254861086607 +illusion_1L,ppo,179,53.7,force,front_fy,-0.0006423201994039118 +illusion_1L,ppo,179,53.7,force,upper_fx,0.0013757217675447464 +illusion_1L,ppo,179,53.7,force,upper_fy,0.00390482391230762 +illusion_1L,ppo,179,53.7,force,lower_fx,0.0020652394741773605 +illusion_1L,ppo,179,53.7,force,lower_fy,-0.001843928243033588 +illusion_1L,ppo,180,54.0,force,front_fx,0.00239181169308722 +illusion_1L,ppo,180,54.0,force,front_fy,-0.0007439606124535203 +illusion_1L,ppo,180,54.0,force,upper_fx,0.0011797602055594325 +illusion_1L,ppo,180,54.0,force,upper_fy,0.0038742648903280497 +illusion_1L,ppo,180,54.0,force,lower_fx,0.002181574236601591 +illusion_1L,ppo,180,54.0,force,lower_fy,-0.0021475229877978563 +illusion_1L,ppo,181,54.3,force,front_fx,0.0024185101501643658 +illusion_1L,ppo,181,54.3,force,front_fy,-0.0008167498745024204 +illusion_1L,ppo,181,54.3,force,upper_fx,0.0009730919264256954 +illusion_1L,ppo,181,54.3,force,upper_fy,0.0037818371783941984 +illusion_1L,ppo,181,54.3,force,lower_fx,0.00228713802061975 +illusion_1L,ppo,181,54.3,force,lower_fy,-0.002490772632881999 +illusion_1L,ppo,182,54.6,force,front_fx,0.002405834384262562 +illusion_1L,ppo,182,54.6,force,front_fy,-0.0008523679571226239 +illusion_1L,ppo,182,54.6,force,upper_fx,0.0008072666241787374 +illusion_1L,ppo,182,54.6,force,upper_fy,0.0036118486896157265 +illusion_1L,ppo,182,54.6,force,lower_fx,0.0023873820900917053 +illusion_1L,ppo,182,54.6,force,lower_fy,-0.002841876819729805 +illusion_1L,ppo,183,54.9,force,front_fx,0.0023356694728136063 +illusion_1L,ppo,183,54.9,force,front_fy,-0.0008628424257040024 +illusion_1L,ppo,183,54.9,force,upper_fx,0.0007164459675550461 +illusion_1L,ppo,183,54.9,force,upper_fy,0.0033621382899582386 +illusion_1L,ppo,183,54.9,force,lower_fx,0.0024815485812723637 +illusion_1L,ppo,183,54.9,force,lower_fy,-0.0031484595965594053 +illusion_1L,ppo,184,55.2,force,front_fx,0.0022316689137369394 +illusion_1L,ppo,184,55.2,force,front_fy,-0.0008741634082980454 +illusion_1L,ppo,184,55.2,force,upper_fx,0.0007163829286582768 +illusion_1L,ppo,184,55.2,force,upper_fy,0.003067439654842019 +illusion_1L,ppo,184,55.2,force,lower_fx,0.0025602607056498528 +illusion_1L,ppo,184,55.2,force,lower_fy,-0.0033541107550263405 +illusion_1L,ppo,185,55.5,force,front_fx,0.002114291302859783 +illusion_1L,ppo,185,55.5,force,front_fy,-0.0008736097952350974 +illusion_1L,ppo,185,55.5,force,upper_fx,0.0007995768683031201 +illusion_1L,ppo,185,55.5,force,upper_fy,0.0027605898212641478 +illusion_1L,ppo,185,55.5,force,lower_fx,0.0026307692751288414 +illusion_1L,ppo,185,55.5,force,lower_fy,-0.003436469938606024 +illusion_1L,ppo,186,55.8,force,front_fx,0.0020197220146656036 +illusion_1L,ppo,186,55.8,force,front_fy,-0.0008604516624473035 +illusion_1L,ppo,186,55.8,force,upper_fx,0.000928676628973335 +illusion_1L,ppo,186,55.8,force,upper_fy,0.0024676050525158644 +illusion_1L,ppo,186,55.8,force,lower_fx,0.0026817875914275646 +illusion_1L,ppo,186,55.8,force,lower_fy,-0.0034200723748654127 +illusion_1L,ppo,187,56.1,force,front_fx,0.001954224891960621 +illusion_1L,ppo,187,56.1,force,front_fy,-0.0008300349581986666 +illusion_1L,ppo,187,56.1,force,upper_fx,0.0010614906204864383 +illusion_1L,ppo,187,56.1,force,upper_fy,0.002226113574579358 +illusion_1L,ppo,187,56.1,force,lower_fx,0.0026827172841876745 +illusion_1L,ppo,187,56.1,force,lower_fy,-0.0033649750985205173 +illusion_1L,ppo,188,56.4,force,front_fx,0.0019175080815330148 +illusion_1L,ppo,188,56.4,force,front_fy,-0.0007718991255387664 +illusion_1L,ppo,188,56.4,force,upper_fx,0.001185080618597567 +illusion_1L,ppo,188,56.4,force,upper_fy,0.0020621304865926504 +illusion_1L,ppo,188,56.4,force,lower_fx,0.0026191838551312685 +illusion_1L,ppo,188,56.4,force,lower_fy,-0.0033300702925771475 +illusion_1L,ppo,189,56.7,force,front_fx,0.001899890135973692 +illusion_1L,ppo,189,56.7,force,front_fy,-0.000689289125148207 +illusion_1L,ppo,189,56.7,force,upper_fx,0.0013065533712506294 +illusion_1L,ppo,189,56.7,force,upper_fy,0.001988934352993965 +illusion_1L,ppo,189,56.7,force,lower_fx,0.0025156887713819742 +illusion_1L,ppo,189,56.7,force,lower_fy,-0.0033358661457896233 +illusion_1L,ppo,190,57.0,force,front_fx,0.0018869106424972415 +illusion_1L,ppo,190,57.0,force,front_fy,-0.0005852899048477411 +illusion_1L,ppo,190,57.0,force,upper_fx,0.0014269170351326466 +illusion_1L,ppo,190,57.0,force,upper_fy,0.002013381104916334 +illusion_1L,ppo,190,57.0,force,lower_fx,0.002401878358796239 +illusion_1L,ppo,190,57.0,force,lower_fy,-0.0033552139066159725 +illusion_1L,ppo,191,57.3,force,front_fx,0.0018837535753846169 +illusion_1L,ppo,191,57.3,force,front_fy,-0.00045562104787677526 +illusion_1L,ppo,191,57.3,force,upper_fx,0.0015423872973769903 +illusion_1L,ppo,191,57.3,force,upper_fy,0.0021268988493829966 +illusion_1L,ppo,191,57.3,force,lower_fx,0.0022894777357578278 +illusion_1L,ppo,191,57.3,force,lower_fy,-0.0033452853094786406 +illusion_1L,ppo,192,57.6,force,front_fx,0.001885890611447394 +illusion_1L,ppo,192,57.6,force,front_fy,-0.00030011284979991615 +illusion_1L,ppo,192,57.6,force,upper_fx,0.0016496297903358936 +illusion_1L,ppo,192,57.6,force,upper_fy,0.0023006380070000887 +illusion_1L,ppo,192,57.6,force,lower_fx,0.0021708346903324127 +illusion_1L,ppo,192,57.6,force,lower_fy,-0.0032867605332285166 +illusion_1L,ppo,193,57.9,force,front_fx,0.0018888411577790976 +illusion_1L,ppo,193,57.9,force,front_fy,-0.00013043850776739419 +illusion_1L,ppo,193,57.9,force,upper_fx,0.001749461516737938 +illusion_1L,ppo,193,57.9,force,upper_fy,0.0025036558508872986 +illusion_1L,ppo,193,57.9,force,lower_fx,0.0020355002488940954 +illusion_1L,ppo,193,57.9,force,lower_fy,-0.0031804507598280907 +illusion_1L,ppo,194,58.2,force,front_fx,0.0018910988001152873 +illusion_1L,ppo,194,58.2,force,front_fy,2.974779090436641e-05 +illusion_1L,ppo,194,58.2,force,upper_fx,0.001846704282797873 +illusion_1L,ppo,194,58.2,force,upper_fy,0.0027233038563281298 +illusion_1L,ppo,194,58.2,force,lower_fx,0.0018889611819759011 +illusion_1L,ppo,194,58.2,force,lower_fy,-0.0030341683886945248 +illusion_1L,ppo,195,58.5,force,front_fx,0.0018957752035930753 +illusion_1L,ppo,195,58.5,force,front_fy,0.00014415492478292435 +illusion_1L,ppo,195,58.5,force,upper_fx,0.0019308098126202822 +illusion_1L,ppo,195,58.5,force,upper_fy,0.002950916299596429 +illusion_1L,ppo,195,58.5,force,lower_fx,0.0017543939175084233 +illusion_1L,ppo,195,58.5,force,lower_fy,-0.002845075912773609 +illusion_1L,ppo,196,58.8,force,front_fx,0.0018841626588255167 +illusion_1L,ppo,196,58.8,force,front_fy,0.00017668961663730443 +illusion_1L,ppo,196,58.8,force,upper_fx,0.0020056047942489386 +illusion_1L,ppo,196,58.8,force,upper_fy,0.0031884319614619017 +illusion_1L,ppo,196,58.8,force,lower_fx,0.0016688760370016098 +illusion_1L,ppo,196,58.8,force,lower_fy,-0.0025997008197009563 +illusion_1L,ppo,197,59.1,force,front_fx,0.0018693951424211264 +illusion_1L,ppo,197,59.1,force,front_fy,0.00011939444812014699 +illusion_1L,ppo,197,59.1,force,upper_fx,0.0020576431415975094 +illusion_1L,ppo,197,59.1,force,upper_fy,0.003428629133850336 +illusion_1L,ppo,197,59.1,force,lower_fx,0.0016477233730256557 +illusion_1L,ppo,197,59.1,force,lower_fy,-0.0023118441458791494 +illusion_1L,ppo,198,59.4,force,front_fx,0.0018792886985465884 +illusion_1L,ppo,198,59.4,force,front_fy,5.458007763081696e-06 +illusion_1L,ppo,198,59.4,force,upper_fx,0.002076365053653717 +illusion_1L,ppo,198,59.4,force,upper_fy,0.0036486296448856592 +illusion_1L,ppo,198,59.4,force,lower_fx,0.0016703830333426595 +illusion_1L,ppo,198,59.4,force,lower_fy,-0.002029733033850789 +illusion_1L,ppo,199,59.7,force,front_fx,0.001921981805935502 +illusion_1L,ppo,199,59.7,force,front_fy,-0.00011847623682115227 +illusion_1L,ppo,199,59.7,force,upper_fx,0.0020474784541875124 +illusion_1L,ppo,199,59.7,force,upper_fy,0.0038109489250928164 +illusion_1L,ppo,199,59.7,force,lower_fx,0.001702801208011806 +illusion_1L,ppo,199,59.7,force,lower_fy,-0.0017978326650336385 +illusion_1L,ppo,0,0.0,alpha,front,0.566200315952301 +illusion_1L,ppo,0,0.0,alpha,upper,-1.231102705001831 +illusion_1L,ppo,0,0.0,alpha,lower,-0.8248105049133301 +illusion_1L,ppo,1,0.3,alpha,front,0.7322111129760742 +illusion_1L,ppo,1,0.3,alpha,upper,-1.334794282913208 +illusion_1L,ppo,1,0.3,alpha,lower,-0.5755894184112549 +illusion_1L,ppo,2,0.6,alpha,front,0.9145792126655579 +illusion_1L,ppo,2,0.6,alpha,upper,-1.4501674175262451 +illusion_1L,ppo,2,0.6,alpha,lower,0.20625388622283936 +illusion_1L,ppo,3,0.9,alpha,front,1.0165796279907227 +illusion_1L,ppo,3,0.9,alpha,upper,-1.4483609199523926 +illusion_1L,ppo,3,0.9,alpha,lower,0.7956888675689697 +illusion_1L,ppo,4,1.2,alpha,front,1.0144485235214233 +illusion_1L,ppo,4,1.2,alpha,upper,-1.2672500610351562 +illusion_1L,ppo,4,1.2,alpha,lower,1.1852527856826782 +illusion_1L,ppo,5,1.5,alpha,front,0.9565014839172363 +illusion_1L,ppo,5,1.5,alpha,upper,-1.0150333642959595 +illusion_1L,ppo,5,1.5,alpha,lower,1.3979549407958984 +illusion_1L,ppo,6,1.8,alpha,front,0.8439123034477234 +illusion_1L,ppo,6,1.8,alpha,upper,-0.7624201774597168 +illusion_1L,ppo,6,1.8,alpha,lower,1.4802873134613037 +illusion_1L,ppo,7,2.1,alpha,front,0.6637389659881592 +illusion_1L,ppo,7,2.1,alpha,upper,-0.5080299377441406 +illusion_1L,ppo,7,2.1,alpha,lower,1.4794838428497314 +illusion_1L,ppo,8,2.4,alpha,front,0.4598759114742279 +illusion_1L,ppo,8,2.4,alpha,upper,-0.2919694185256958 +illusion_1L,ppo,8,2.4,alpha,lower,1.3993465900421143 +illusion_1L,ppo,9,2.7,alpha,front,0.28491419553756714 +illusion_1L,ppo,9,2.7,alpha,upper,-0.22416341304779053 +illusion_1L,ppo,9,2.7,alpha,lower,1.2204726934432983 +illusion_1L,ppo,10,3.0,alpha,front,0.19582365453243256 +illusion_1L,ppo,10,3.0,alpha,upper,-0.37619590759277344 +illusion_1L,ppo,10,3.0,alpha,lower,0.9790956974029541 +illusion_1L,ppo,11,3.3,alpha,front,0.16859157383441925 +illusion_1L,ppo,11,3.3,alpha,upper,-0.636157751083374 +illusion_1L,ppo,11,3.3,alpha,lower,0.7611830234527588 +illusion_1L,ppo,12,3.6,alpha,front,0.11460626870393753 +illusion_1L,ppo,12,3.6,alpha,upper,-0.8256304264068604 +illusion_1L,ppo,12,3.6,alpha,lower,0.6437320709228516 +illusion_1L,ppo,13,3.9,alpha,front,0.02620646357536316 +illusion_1L,ppo,13,3.9,alpha,upper,-0.9028537273406982 +illusion_1L,ppo,13,3.9,alpha,lower,0.6256673336029053 +illusion_1L,ppo,14,4.2,alpha,front,-0.06454113125801086 +illusion_1L,ppo,14,4.2,alpha,upper,-0.914879560470581 +illusion_1L,ppo,14,4.2,alpha,lower,0.649329423904419 +illusion_1L,ppo,15,4.5,alpha,front,-0.14207804203033447 +illusion_1L,ppo,15,4.5,alpha,upper,-0.9118171334266663 +illusion_1L,ppo,15,4.5,alpha,lower,0.6759622097015381 +illusion_1L,ppo,16,4.8,alpha,front,-0.21607762575149536 +illusion_1L,ppo,16,4.8,alpha,upper,-0.9000123739242554 +illusion_1L,ppo,16,4.8,alpha,lower,0.6878583431243896 +illusion_1L,ppo,17,5.1,alpha,front,-0.26620739698410034 +illusion_1L,ppo,17,5.1,alpha,upper,-0.9126079678535461 +illusion_1L,ppo,17,5.1,alpha,lower,0.6890585422515869 +illusion_1L,ppo,18,5.4,alpha,front,-0.26876527070999146 +illusion_1L,ppo,18,5.4,alpha,upper,-0.969505786895752 +illusion_1L,ppo,18,5.4,alpha,lower,0.6507892608642578 +illusion_1L,ppo,19,5.7,alpha,front,-0.2070186734199524 +illusion_1L,ppo,19,5.7,alpha,upper,-1.0500409603118896 +illusion_1L,ppo,19,5.7,alpha,lower,0.5502111911773682 +illusion_1L,ppo,20,6.0,alpha,front,-0.07053878903388977 +illusion_1L,ppo,20,6.0,alpha,upper,-1.1432905197143555 +illusion_1L,ppo,20,6.0,alpha,lower,0.4093756377696991 +illusion_1L,ppo,21,6.3,alpha,front,0.1387898176908493 +illusion_1L,ppo,21,6.3,alpha,upper,-1.2448821067810059 +illusion_1L,ppo,21,6.3,alpha,lower,0.27997124195098877 +illusion_1L,ppo,22,6.6,alpha,front,0.36053991317749023 +illusion_1L,ppo,22,6.6,alpha,upper,-1.309443473815918 +illusion_1L,ppo,22,6.6,alpha,lower,0.21572744846343994 +illusion_1L,ppo,23,6.9,alpha,front,0.5330544710159302 +illusion_1L,ppo,23,6.9,alpha,upper,-1.2949142456054688 +illusion_1L,ppo,23,6.9,alpha,lower,0.25904226303100586 +illusion_1L,ppo,24,7.2,alpha,front,0.6487786769866943 +illusion_1L,ppo,24,7.2,alpha,upper,-1.2239305973052979 +illusion_1L,ppo,24,7.2,alpha,lower,0.3883059024810791 +illusion_1L,ppo,25,7.5,alpha,front,0.7303120493888855 +illusion_1L,ppo,25,7.5,alpha,upper,-1.1115903854370117 +illusion_1L,ppo,25,7.5,alpha,lower,0.5700929164886475 +illusion_1L,ppo,26,7.8,alpha,front,0.7959497570991516 +illusion_1L,ppo,26,7.8,alpha,upper,-0.9878544211387634 +illusion_1L,ppo,26,7.8,alpha,lower,0.762554407119751 +illusion_1L,ppo,27,8.1,alpha,front,0.8525607585906982 +illusion_1L,ppo,27,8.1,alpha,upper,-0.8951082229614258 +illusion_1L,ppo,27,8.1,alpha,lower,0.9716395735740662 +illusion_1L,ppo,28,8.4,alpha,front,0.8879126906394958 +illusion_1L,ppo,28,8.4,alpha,upper,-0.873159646987915 +illusion_1L,ppo,28,8.4,alpha,lower,1.1655378341674805 +illusion_1L,ppo,29,8.7,alpha,front,0.8882545828819275 +illusion_1L,ppo,29,8.7,alpha,upper,-0.8783764243125916 +illusion_1L,ppo,29,8.7,alpha,lower,1.3269178867340088 +illusion_1L,ppo,30,9.0,alpha,front,0.8385000824928284 +illusion_1L,ppo,30,9.0,alpha,upper,-0.8676967620849609 +illusion_1L,ppo,30,9.0,alpha,lower,1.4323474168777466 +illusion_1L,ppo,31,9.3,alpha,front,0.7399653792381287 +illusion_1L,ppo,31,9.3,alpha,upper,-0.831091582775116 +illusion_1L,ppo,31,9.3,alpha,lower,1.4584940671920776 +illusion_1L,ppo,32,9.6,alpha,front,0.6077125668525696 +illusion_1L,ppo,32,9.6,alpha,upper,-0.7817840576171875 +illusion_1L,ppo,32,9.6,alpha,lower,1.4113465547561646 +illusion_1L,ppo,33,9.9,alpha,front,0.44438034296035767 +illusion_1L,ppo,33,9.9,alpha,upper,-0.7378225326538086 +illusion_1L,ppo,33,9.9,alpha,lower,1.2962141036987305 +illusion_1L,ppo,34,10.2,alpha,front,0.2616695463657379 +illusion_1L,ppo,34,10.2,alpha,upper,-0.7014594078063965 +illusion_1L,ppo,34,10.2,alpha,lower,1.1240205764770508 +illusion_1L,ppo,35,10.5,alpha,front,0.09036552906036377 +illusion_1L,ppo,35,10.5,alpha,upper,-0.7103433609008789 +illusion_1L,ppo,35,10.5,alpha,lower,0.8935815691947937 +illusion_1L,ppo,36,10.8,alpha,front,-0.0092087984085083 +illusion_1L,ppo,36,10.8,alpha,upper,-0.7949641346931458 +illusion_1L,ppo,36,10.8,alpha,lower,0.6762027740478516 +illusion_1L,ppo,37,11.1,alpha,front,-0.016794174909591675 +illusion_1L,ppo,37,11.1,alpha,upper,-0.9728354811668396 +illusion_1L,ppo,37,11.1,alpha,lower,0.4771328270435333 +illusion_1L,ppo,38,11.4,alpha,front,0.043836116790771484 +illusion_1L,ppo,38,11.4,alpha,upper,-1.2040876150131226 +illusion_1L,ppo,38,11.4,alpha,lower,0.3823392391204834 +illusion_1L,ppo,39,11.7,alpha,front,0.11292259395122528 +illusion_1L,ppo,39,11.7,alpha,upper,-1.423924446105957 +illusion_1L,ppo,39,11.7,alpha,lower,0.44191786646842957 +illusion_1L,ppo,40,12.0,alpha,front,0.1456843614578247 +illusion_1L,ppo,40,12.0,alpha,upper,-1.5543450117111206 +illusion_1L,ppo,40,12.0,alpha,lower,0.6088975667953491 +illusion_1L,ppo,41,12.3,alpha,front,0.10647997260093689 +illusion_1L,ppo,41,12.3,alpha,upper,-1.5385940074920654 +illusion_1L,ppo,41,12.3,alpha,lower,0.7743865251541138 +illusion_1L,ppo,42,12.6,alpha,front,-0.005176961421966553 +illusion_1L,ppo,42,12.6,alpha,upper,-1.3978393077850342 +illusion_1L,ppo,42,12.6,alpha,lower,0.8414602279663086 +illusion_1L,ppo,43,12.9,alpha,front,-0.15235307812690735 +illusion_1L,ppo,43,12.9,alpha,upper,-1.1836940050125122 +illusion_1L,ppo,43,12.9,alpha,lower,0.777901291847229 +illusion_1L,ppo,44,13.2,alpha,front,-0.27593696117401123 +illusion_1L,ppo,44,13.2,alpha,upper,-0.9420957565307617 +illusion_1L,ppo,44,13.2,alpha,lower,0.6716594696044922 +illusion_1L,ppo,45,13.5,alpha,front,-0.3448081612586975 +illusion_1L,ppo,45,13.5,alpha,upper,-0.7181262969970703 +illusion_1L,ppo,45,13.5,alpha,lower,0.6047234535217285 +illusion_1L,ppo,46,13.8,alpha,front,-0.3289932608604431 +illusion_1L,ppo,46,13.8,alpha,upper,-0.5680457353591919 +illusion_1L,ppo,46,13.8,alpha,lower,0.6044790744781494 +illusion_1L,ppo,47,14.1,alpha,front,-0.22514784336090088 +illusion_1L,ppo,47,14.1,alpha,upper,-0.5334727764129639 +illusion_1L,ppo,47,14.1,alpha,lower,0.6266822814941406 +illusion_1L,ppo,48,14.4,alpha,front,-0.08369094133377075 +illusion_1L,ppo,48,14.4,alpha,upper,-0.59348464012146 +illusion_1L,ppo,48,14.4,alpha,lower,0.63767409324646 +illusion_1L,ppo,49,14.7,alpha,front,0.0732913613319397 +illusion_1L,ppo,49,14.7,alpha,upper,-0.729745626449585 +illusion_1L,ppo,49,14.7,alpha,lower,0.6342439651489258 +illusion_1L,ppo,50,15.0,alpha,front,0.2539413273334503 +illusion_1L,ppo,50,15.0,alpha,upper,-0.9293709993362427 +illusion_1L,ppo,50,15.0,alpha,lower,0.6418429613113403 +illusion_1L,ppo,51,15.3,alpha,front,0.44856879115104675 +illusion_1L,ppo,51,15.3,alpha,upper,-1.1277663707733154 +illusion_1L,ppo,51,15.3,alpha,lower,0.6919165849685669 +illusion_1L,ppo,52,15.6,alpha,front,0.6024619340896606 +illusion_1L,ppo,52,15.6,alpha,upper,-1.2078306674957275 +illusion_1L,ppo,52,15.6,alpha,lower,0.8100345134735107 +illusion_1L,ppo,53,15.9,alpha,front,0.6720407009124756 +illusion_1L,ppo,53,15.9,alpha,upper,-1.1204750537872314 +illusion_1L,ppo,53,15.9,alpha,lower,0.9828812479972839 +illusion_1L,ppo,54,16.2,alpha,front,0.6875909566879272 +illusion_1L,ppo,54,16.2,alpha,upper,-0.9677736163139343 +illusion_1L,ppo,54,16.2,alpha,lower,1.1312923431396484 +illusion_1L,ppo,55,16.5,alpha,front,0.7037420272827148 +illusion_1L,ppo,55,16.5,alpha,upper,-0.8695921897888184 +illusion_1L,ppo,55,16.5,alpha,lower,1.1895372867584229 +illusion_1L,ppo,56,16.8,alpha,front,0.7305182218551636 +illusion_1L,ppo,56,16.8,alpha,upper,-0.8514076471328735 +illusion_1L,ppo,56,16.8,alpha,lower,1.1582409143447876 +illusion_1L,ppo,57,17.1,alpha,front,0.7592133283615112 +illusion_1L,ppo,57,17.1,alpha,upper,-0.892059326171875 +illusion_1L,ppo,57,17.1,alpha,lower,1.0859860181808472 +illusion_1L,ppo,58,17.4,alpha,front,0.7423211336135864 +illusion_1L,ppo,58,17.4,alpha,upper,-0.92649906873703 +illusion_1L,ppo,58,17.4,alpha,lower,1.0194175243377686 +illusion_1L,ppo,59,17.7,alpha,front,0.6755601167678833 +illusion_1L,ppo,59,17.7,alpha,upper,-0.9150866866111755 +illusion_1L,ppo,59,17.7,alpha,lower,0.9541711211204529 +illusion_1L,ppo,60,18.0,alpha,front,0.5484015941619873 +illusion_1L,ppo,60,18.0,alpha,upper,-0.8626410961151123 +illusion_1L,ppo,60,18.0,alpha,lower,0.8343302011489868 +illusion_1L,ppo,61,18.3,alpha,front,0.3812219500541687 +illusion_1L,ppo,61,18.3,alpha,upper,-0.7907251715660095 +illusion_1L,ppo,61,18.3,alpha,lower,0.7328672409057617 +illusion_1L,ppo,62,18.6,alpha,front,0.20350712537765503 +illusion_1L,ppo,62,18.6,alpha,upper,-0.7293674945831299 +illusion_1L,ppo,62,18.6,alpha,lower,0.7044795751571655 +illusion_1L,ppo,63,18.9,alpha,front,0.08482423424720764 +illusion_1L,ppo,63,18.9,alpha,upper,-0.7599146366119385 +illusion_1L,ppo,63,18.9,alpha,lower,0.7385427951812744 +illusion_1L,ppo,64,19.2,alpha,front,0.03832203149795532 +illusion_1L,ppo,64,19.2,alpha,upper,-0.8896089196205139 +illusion_1L,ppo,64,19.2,alpha,lower,0.7848913669586182 +illusion_1L,ppo,65,19.5,alpha,front,0.00900760293006897 +illusion_1L,ppo,65,19.5,alpha,upper,-1.0161724090576172 +illusion_1L,ppo,65,19.5,alpha,lower,0.8056506514549255 +illusion_1L,ppo,66,19.8,alpha,front,-0.04690513014793396 +illusion_1L,ppo,66,19.8,alpha,upper,-1.0700416564941406 +illusion_1L,ppo,66,19.8,alpha,lower,0.7772320508956909 +illusion_1L,ppo,67,20.1,alpha,front,-0.13762632012367249 +illusion_1L,ppo,67,20.1,alpha,upper,-1.038233995437622 +illusion_1L,ppo,67,20.1,alpha,lower,0.6981791257858276 +illusion_1L,ppo,68,20.4,alpha,front,-0.251354455947876 +illusion_1L,ppo,68,20.4,alpha,upper,-0.9452930092811584 +illusion_1L,ppo,68,20.4,alpha,lower,0.6044139862060547 +illusion_1L,ppo,69,20.7,alpha,front,-0.3395172953605652 +illusion_1L,ppo,69,20.7,alpha,upper,-0.8582601547241211 +illusion_1L,ppo,69,20.7,alpha,lower,0.5463472604751587 +illusion_1L,ppo,70,21.0,alpha,front,-0.3169593811035156 +illusion_1L,ppo,70,21.0,alpha,upper,-0.8475192785263062 +illusion_1L,ppo,70,21.0,alpha,lower,0.507239818572998 +illusion_1L,ppo,71,21.3,alpha,front,-0.12992370128631592 +illusion_1L,ppo,71,21.3,alpha,upper,-0.9278140068054199 +illusion_1L,ppo,71,21.3,alpha,lower,0.43264269828796387 +illusion_1L,ppo,72,21.6,alpha,front,0.15931981801986694 +illusion_1L,ppo,72,21.6,alpha,upper,-1.0580968856811523 +illusion_1L,ppo,72,21.6,alpha,lower,0.35111236572265625 +illusion_1L,ppo,73,21.9,alpha,front,0.442023903131485 +illusion_1L,ppo,73,21.9,alpha,upper,-1.1663737297058105 +illusion_1L,ppo,73,21.9,alpha,lower,0.34353625774383545 +illusion_1L,ppo,74,22.2,alpha,front,0.6225366592407227 +illusion_1L,ppo,74,22.2,alpha,upper,-1.1752506494522095 +illusion_1L,ppo,74,22.2,alpha,lower,0.43637678027153015 +illusion_1L,ppo,75,22.5,alpha,front,0.6780859231948853 +illusion_1L,ppo,75,22.5,alpha,upper,-1.0850419998168945 +illusion_1L,ppo,75,22.5,alpha,lower,0.6002850532531738 +illusion_1L,ppo,76,22.8,alpha,front,0.6847200393676758 +illusion_1L,ppo,76,22.8,alpha,upper,-0.9632091522216797 +illusion_1L,ppo,76,22.8,alpha,lower,0.7805523872375488 +illusion_1L,ppo,77,23.1,alpha,front,0.7065297365188599 +illusion_1L,ppo,77,23.1,alpha,upper,-0.8916959166526794 +illusion_1L,ppo,77,23.1,alpha,lower,0.9544150829315186 +illusion_1L,ppo,78,23.4,alpha,front,0.7582865953445435 +illusion_1L,ppo,78,23.4,alpha,upper,-0.882764995098114 +illusion_1L,ppo,78,23.4,alpha,lower,1.0935710668563843 +illusion_1L,ppo,79,23.7,alpha,front,0.8281499147415161 +illusion_1L,ppo,79,23.7,alpha,upper,-0.9213626384735107 +illusion_1L,ppo,79,23.7,alpha,lower,1.2009328603744507 +illusion_1L,ppo,80,24.0,alpha,front,0.889137327671051 +illusion_1L,ppo,80,24.0,alpha,upper,-0.9927817583084106 +illusion_1L,ppo,80,24.0,alpha,lower,1.2632941007614136 +illusion_1L,ppo,81,24.3,alpha,front,0.8954256772994995 +illusion_1L,ppo,81,24.3,alpha,upper,-1.0387340784072876 +illusion_1L,ppo,81,24.3,alpha,lower,1.2776410579681396 +illusion_1L,ppo,82,24.6,alpha,front,0.7867532968521118 +illusion_1L,ppo,82,24.6,alpha,upper,-0.9504090547561646 +illusion_1L,ppo,82,24.6,alpha,lower,1.2431117296218872 +illusion_1L,ppo,83,24.9,alpha,front,0.5974826812744141 +illusion_1L,ppo,83,24.9,alpha,upper,-0.7523548603057861 +illusion_1L,ppo,83,24.9,alpha,lower,1.1176396608352661 +illusion_1L,ppo,84,25.2,alpha,front,0.3975691497325897 +illusion_1L,ppo,84,25.2,alpha,upper,-0.5855858325958252 +illusion_1L,ppo,84,25.2,alpha,lower,0.8919068574905396 +illusion_1L,ppo,85,25.5,alpha,front,0.2339988499879837 +illusion_1L,ppo,85,25.5,alpha,upper,-0.5446861982345581 +illusion_1L,ppo,85,25.5,alpha,lower,0.6622859239578247 +illusion_1L,ppo,86,25.8,alpha,front,0.1461460143327713 +illusion_1L,ppo,86,25.8,alpha,upper,-0.6509461402893066 +illusion_1L,ppo,86,25.8,alpha,lower,0.540458083152771 +illusion_1L,ppo,87,26.1,alpha,front,0.10359872877597809 +illusion_1L,ppo,87,26.1,alpha,upper,-0.8334581851959229 +illusion_1L,ppo,87,26.1,alpha,lower,0.5653951168060303 +illusion_1L,ppo,88,26.4,alpha,front,0.06980007886886597 +illusion_1L,ppo,88,26.4,alpha,upper,-1.0063269138336182 +illusion_1L,ppo,88,26.4,alpha,lower,0.6911938190460205 +illusion_1L,ppo,89,26.7,alpha,front,0.029952317476272583 +illusion_1L,ppo,89,26.7,alpha,upper,-1.1265153884887695 +illusion_1L,ppo,89,26.7,alpha,lower,0.8017693758010864 +illusion_1L,ppo,90,27.0,alpha,front,-0.03253611922264099 +illusion_1L,ppo,90,27.0,alpha,upper,-1.1763396263122559 +illusion_1L,ppo,90,27.0,alpha,lower,0.81593918800354 +illusion_1L,ppo,91,27.3,alpha,front,-0.11802081018686295 +illusion_1L,ppo,91,27.3,alpha,upper,-1.1625595092773438 +illusion_1L,ppo,91,27.3,alpha,lower,0.7506587505340576 +illusion_1L,ppo,92,27.6,alpha,front,-0.2081165760755539 +illusion_1L,ppo,92,27.6,alpha,upper,-1.1050028800964355 +illusion_1L,ppo,92,27.6,alpha,lower,0.6709375381469727 +illusion_1L,ppo,93,27.9,alpha,front,-0.2814738154411316 +illusion_1L,ppo,93,27.9,alpha,upper,-1.0227124691009521 +illusion_1L,ppo,93,27.9,alpha,lower,0.626955509185791 +illusion_1L,ppo,94,28.2,alpha,front,-0.30740028619766235 +illusion_1L,ppo,94,28.2,alpha,upper,-0.9575598239898682 +illusion_1L,ppo,94,28.2,alpha,lower,0.6160467863082886 +illusion_1L,ppo,95,28.5,alpha,front,-0.24433809518814087 +illusion_1L,ppo,95,28.5,alpha,upper,-0.9378107190132141 +illusion_1L,ppo,95,28.5,alpha,lower,0.5971181392669678 +illusion_1L,ppo,96,28.8,alpha,front,-0.05250241979956627 +illusion_1L,ppo,96,28.8,alpha,upper,-0.9619906544685364 +illusion_1L,ppo,96,28.8,alpha,lower,0.5114648342132568 +illusion_1L,ppo,97,29.1,alpha,front,0.23996078968048096 +illusion_1L,ppo,97,29.1,alpha,upper,-1.007272720336914 +illusion_1L,ppo,97,29.1,alpha,lower,0.38130712509155273 +illusion_1L,ppo,98,29.4,alpha,front,0.49773260951042175 +illusion_1L,ppo,98,29.4,alpha,upper,-1.036102056503296 +illusion_1L,ppo,98,29.4,alpha,lower,0.3416566848754883 +illusion_1L,ppo,99,29.7,alpha,front,0.6385623216629028 +illusion_1L,ppo,99,29.7,alpha,upper,-1.0285260677337646 +illusion_1L,ppo,99,29.7,alpha,lower,0.46707677841186523 +illusion_1L,ppo,100,30.0,alpha,front,0.6942313313484192 +illusion_1L,ppo,100,30.0,alpha,upper,-1.007731556892395 +illusion_1L,ppo,100,30.0,alpha,lower,0.6914972066879272 +illusion_1L,ppo,101,30.3,alpha,front,0.7253242135047913 +illusion_1L,ppo,101,30.3,alpha,upper,-0.9991705417633057 +illusion_1L,ppo,101,30.3,alpha,lower,0.9134254455566406 +illusion_1L,ppo,102,30.6,alpha,front,0.7583543062210083 +illusion_1L,ppo,102,30.6,alpha,upper,-0.9992220401763916 +illusion_1L,ppo,102,30.6,alpha,lower,1.082987666130066 +illusion_1L,ppo,103,30.9,alpha,front,0.8214980363845825 +illusion_1L,ppo,103,30.9,alpha,upper,-1.0076487064361572 +illusion_1L,ppo,103,30.9,alpha,lower,1.230583667755127 +illusion_1L,ppo,104,31.2,alpha,front,0.8939526081085205 +illusion_1L,ppo,104,31.2,alpha,upper,-1.0208444595336914 +illusion_1L,ppo,104,31.2,alpha,lower,1.2946836948394775 +illusion_1L,ppo,105,31.5,alpha,front,0.9439670443534851 +illusion_1L,ppo,105,31.5,alpha,upper,-1.0362993478775024 +illusion_1L,ppo,105,31.5,alpha,lower,1.2841081619262695 +illusion_1L,ppo,106,31.8,alpha,front,0.9271445870399475 +illusion_1L,ppo,106,31.8,alpha,upper,-1.0095933675765991 +illusion_1L,ppo,106,31.8,alpha,lower,1.2297283411026 +illusion_1L,ppo,107,32.1,alpha,front,0.8199090361595154 +illusion_1L,ppo,107,32.1,alpha,upper,-0.9171422719955444 +illusion_1L,ppo,107,32.1,alpha,lower,1.136617660522461 +illusion_1L,ppo,108,32.4,alpha,front,0.6567550301551819 +illusion_1L,ppo,108,32.4,alpha,upper,-0.7951712608337402 +illusion_1L,ppo,108,32.4,alpha,lower,0.9733213186264038 +illusion_1L,ppo,109,32.7,alpha,front,0.47090980410575867 +illusion_1L,ppo,109,32.7,alpha,upper,-0.7020406723022461 +illusion_1L,ppo,109,32.7,alpha,lower,0.7664172649383545 +illusion_1L,ppo,110,33.0,alpha,front,0.27581357955932617 +illusion_1L,ppo,110,33.0,alpha,upper,-0.6429752111434937 +illusion_1L,ppo,110,33.0,alpha,lower,0.6220850944519043 +illusion_1L,ppo,111,33.3,alpha,front,0.1365383118391037 +illusion_1L,ppo,111,33.3,alpha,upper,-0.6782861948013306 +illusion_1L,ppo,111,33.3,alpha,lower,0.5887391567230225 +illusion_1L,ppo,112,33.6,alpha,front,0.077117919921875 +illusion_1L,ppo,112,33.6,alpha,upper,-0.8301547169685364 +illusion_1L,ppo,112,33.6,alpha,lower,0.6521658897399902 +illusion_1L,ppo,113,33.9,alpha,front,0.045497357845306396 +illusion_1L,ppo,113,33.9,alpha,upper,-1.003441333770752 +illusion_1L,ppo,113,33.9,alpha,lower,0.7468442916870117 +illusion_1L,ppo,114,34.2,alpha,front,0.0011099278926849365 +illusion_1L,ppo,114,34.2,alpha,upper,-1.1205029487609863 +illusion_1L,ppo,114,34.2,alpha,lower,0.8073640465736389 +illusion_1L,ppo,115,34.5,alpha,front,-0.06686735153198242 +illusion_1L,ppo,115,34.5,alpha,upper,-1.1621806621551514 +illusion_1L,ppo,115,34.5,alpha,lower,0.7846359610557556 +illusion_1L,ppo,116,34.8,alpha,front,-0.16097483038902283 +illusion_1L,ppo,116,34.8,alpha,upper,-1.1403071880340576 +illusion_1L,ppo,116,34.8,alpha,lower,0.696427583694458 +illusion_1L,ppo,117,35.1,alpha,front,-0.2642846703529358 +illusion_1L,ppo,117,35.1,alpha,upper,-1.0700716972351074 +illusion_1L,ppo,117,35.1,alpha,lower,0.6128480434417725 +illusion_1L,ppo,118,35.4,alpha,front,-0.3365710377693176 +illusion_1L,ppo,118,35.4,alpha,upper,-0.979629635810852 +illusion_1L,ppo,118,35.4,alpha,lower,0.5819460153579712 +illusion_1L,ppo,119,35.7,alpha,front,-0.3366314768791199 +illusion_1L,ppo,119,35.7,alpha,upper,-0.9156547784805298 +illusion_1L,ppo,119,35.7,alpha,lower,0.5706486701965332 +illusion_1L,ppo,120,36.0,alpha,front,-0.21389780938625336 +illusion_1L,ppo,120,36.0,alpha,upper,-0.9168317914009094 +illusion_1L,ppo,120,36.0,alpha,lower,0.5231554508209229 +illusion_1L,ppo,121,36.3,alpha,front,0.04495728015899658 +illusion_1L,ppo,121,36.3,alpha,upper,-0.9710965156555176 +illusion_1L,ppo,121,36.3,alpha,lower,0.4211564064025879 +illusion_1L,ppo,122,36.6,alpha,front,0.3449988067150116 +illusion_1L,ppo,122,36.6,alpha,upper,-1.050175666809082 +illusion_1L,ppo,122,36.6,alpha,lower,0.3469257354736328 +illusion_1L,ppo,123,36.9,alpha,front,0.5721310377120972 +illusion_1L,ppo,123,36.9,alpha,upper,-1.0905463695526123 +illusion_1L,ppo,123,36.9,alpha,lower,0.38749146461486816 +illusion_1L,ppo,124,37.2,alpha,front,0.6712759733200073 +illusion_1L,ppo,124,37.2,alpha,upper,-1.059798240661621 +illusion_1L,ppo,124,37.2,alpha,lower,0.5604081153869629 +illusion_1L,ppo,125,37.5,alpha,front,0.6947428584098816 +illusion_1L,ppo,125,37.5,alpha,upper,-0.9966656565666199 +illusion_1L,ppo,125,37.5,alpha,lower,0.7944151163101196 +illusion_1L,ppo,126,37.8,alpha,front,0.7164804935455322 +illusion_1L,ppo,126,37.8,alpha,upper,-0.9536663293838501 +illusion_1L,ppo,126,37.8,alpha,lower,1.002204179763794 +illusion_1L,ppo,127,38.1,alpha,front,0.760411262512207 +illusion_1L,ppo,127,38.1,alpha,upper,-0.9426819086074829 +illusion_1L,ppo,127,38.1,alpha,lower,1.1544451713562012 +illusion_1L,ppo,128,38.4,alpha,front,0.8219093084335327 +illusion_1L,ppo,128,38.4,alpha,upper,-0.9624688029289246 +illusion_1L,ppo,128,38.4,alpha,lower,1.2508561611175537 +illusion_1L,ppo,129,38.7,alpha,front,0.8964057564735413 +illusion_1L,ppo,129,38.7,alpha,upper,-1.009418249130249 +illusion_1L,ppo,129,38.7,alpha,lower,1.2825655937194824 +illusion_1L,ppo,130,39.0,alpha,front,0.9397885203361511 +illusion_1L,ppo,130,39.0,alpha,upper,-1.0537691116333008 +illusion_1L,ppo,130,39.0,alpha,lower,1.2541699409484863 +illusion_1L,ppo,131,39.3,alpha,front,0.8941335082054138 +illusion_1L,ppo,131,39.3,alpha,upper,-1.0277694463729858 +illusion_1L,ppo,131,39.3,alpha,lower,1.1866087913513184 +illusion_1L,ppo,132,39.6,alpha,front,0.7515702247619629 +illusion_1L,ppo,132,39.6,alpha,upper,-0.8981248736381531 +illusion_1L,ppo,132,39.6,alpha,lower,1.0770809650421143 +illusion_1L,ppo,133,39.9,alpha,front,0.5669722557067871 +illusion_1L,ppo,133,39.9,alpha,upper,-0.7486188411712646 +illusion_1L,ppo,133,39.9,alpha,lower,0.8969969153404236 +illusion_1L,ppo,134,40.2,alpha,front,0.3685263693332672 +illusion_1L,ppo,134,40.2,alpha,upper,-0.6435400247573853 +illusion_1L,ppo,134,40.2,alpha,lower,0.6870937347412109 +illusion_1L,ppo,135,40.5,alpha,front,0.1910797357559204 +illusion_1L,ppo,135,40.5,alpha,upper,-0.61365807056427 +illusion_1L,ppo,135,40.5,alpha,lower,0.5632838010787964 +illusion_1L,ppo,136,40.8,alpha,front,0.10205401480197906 +illusion_1L,ppo,136,40.8,alpha,upper,-0.725830078125 +illusion_1L,ppo,136,40.8,alpha,lower,0.573477029800415 +illusion_1L,ppo,137,41.1,alpha,front,0.07220667600631714 +illusion_1L,ppo,137,41.1,alpha,upper,-0.9191823601722717 +illusion_1L,ppo,137,41.1,alpha,lower,0.6839281320571899 +illusion_1L,ppo,138,41.4,alpha,front,0.0467226505279541 +illusion_1L,ppo,138,41.4,alpha,upper,-1.0806058645248413 +illusion_1L,ppo,138,41.4,alpha,lower,0.8100115656852722 +illusion_1L,ppo,139,41.7,alpha,front,-0.0036432743072509766 +illusion_1L,ppo,139,41.7,alpha,upper,-1.1651049852371216 +illusion_1L,ppo,139,41.7,alpha,lower,0.8690740466117859 +illusion_1L,ppo,140,42.0,alpha,front,-0.08457115292549133 +illusion_1L,ppo,140,42.0,alpha,upper,-1.1762193441390991 +illusion_1L,ppo,140,42.0,alpha,lower,0.8247787952423096 +illusion_1L,ppo,141,42.3,alpha,front,-0.18580710887908936 +illusion_1L,ppo,141,42.3,alpha,upper,-1.1169795989990234 +illusion_1L,ppo,141,42.3,alpha,lower,0.7208983898162842 +illusion_1L,ppo,142,42.6,alpha,front,-0.2824084758758545 +illusion_1L,ppo,142,42.6,alpha,upper,-1.0069557428359985 +illusion_1L,ppo,142,42.6,alpha,lower,0.6408312320709229 +illusion_1L,ppo,143,42.9,alpha,front,-0.3446028232574463 +illusion_1L,ppo,143,42.9,alpha,upper,-0.8942933082580566 +illusion_1L,ppo,143,42.9,alpha,lower,0.623509407043457 +illusion_1L,ppo,144,43.2,alpha,front,-0.3291654586791992 +illusion_1L,ppo,144,43.2,alpha,upper,-0.8288860321044922 +illusion_1L,ppo,144,43.2,alpha,lower,0.6273221969604492 +illusion_1L,ppo,145,43.5,alpha,front,-0.1860431432723999 +illusion_1L,ppo,145,43.5,alpha,upper,-0.8356091976165771 +illusion_1L,ppo,145,43.5,alpha,lower,0.576213002204895 +illusion_1L,ppo,146,43.8,alpha,front,0.07437807321548462 +illusion_1L,ppo,146,43.8,alpha,upper,-0.9066643118858337 +illusion_1L,ppo,146,43.8,alpha,lower,0.4609086513519287 +illusion_1L,ppo,147,44.1,alpha,front,0.3545452356338501 +illusion_1L,ppo,147,44.1,alpha,upper,-1.0007374286651611 +illusion_1L,ppo,147,44.1,alpha,lower,0.3762662410736084 +illusion_1L,ppo,148,44.4,alpha,front,0.5654930472373962 +illusion_1L,ppo,148,44.4,alpha,upper,-1.0714236497879028 +illusion_1L,ppo,148,44.4,alpha,lower,0.4087827205657959 +illusion_1L,ppo,149,44.7,alpha,front,0.6591722369194031 +illusion_1L,ppo,149,44.7,alpha,upper,-1.0803041458129883 +illusion_1L,ppo,149,44.7,alpha,lower,0.5619888305664062 +illusion_1L,ppo,150,45.0,alpha,front,0.6958581209182739 +illusion_1L,ppo,150,45.0,alpha,upper,-1.0504528284072876 +illusion_1L,ppo,150,45.0,alpha,lower,0.7606911659240723 +illusion_1L,ppo,151,45.3,alpha,front,0.7313279509544373 +illusion_1L,ppo,151,45.3,alpha,upper,-1.0228855609893799 +illusion_1L,ppo,151,45.3,alpha,lower,0.9379693269729614 +illusion_1L,ppo,152,45.6,alpha,front,0.7833960652351379 +illusion_1L,ppo,152,45.6,alpha,upper,-1.0137380361557007 +illusion_1L,ppo,152,45.6,alpha,lower,1.063414454460144 +illusion_1L,ppo,153,45.9,alpha,front,0.8541326522827148 +illusion_1L,ppo,153,45.9,alpha,upper,-1.0281428098678589 +illusion_1L,ppo,153,45.9,alpha,lower,1.1406971216201782 +illusion_1L,ppo,154,46.2,alpha,front,0.9249374270439148 +illusion_1L,ppo,154,46.2,alpha,upper,-1.0629017353057861 +illusion_1L,ppo,154,46.2,alpha,lower,1.1661052703857422 +illusion_1L,ppo,155,46.5,alpha,front,0.9431966543197632 +illusion_1L,ppo,155,46.5,alpha,upper,-1.074459195137024 +illusion_1L,ppo,155,46.5,alpha,lower,1.1499993801116943 +illusion_1L,ppo,156,46.8,alpha,front,0.85972660779953 +illusion_1L,ppo,156,46.8,alpha,upper,-0.9893312454223633 +illusion_1L,ppo,156,46.8,alpha,lower,1.1109542846679688 +illusion_1L,ppo,157,47.1,alpha,front,0.6850922703742981 +illusion_1L,ppo,157,47.1,alpha,upper,-0.8315134048461914 +illusion_1L,ppo,157,47.1,alpha,lower,1.0223028659820557 +illusion_1L,ppo,158,47.4,alpha,front,0.5143322944641113 +illusion_1L,ppo,158,47.4,alpha,upper,-0.7092623710632324 +illusion_1L,ppo,158,47.4,alpha,lower,0.8508479595184326 +illusion_1L,ppo,159,47.7,alpha,front,0.32499960064888 +illusion_1L,ppo,159,47.7,alpha,upper,-0.6288739442825317 +illusion_1L,ppo,159,47.7,alpha,lower,0.6857438087463379 +illusion_1L,ppo,160,48.0,alpha,front,0.173389732837677 +illusion_1L,ppo,160,48.0,alpha,upper,-0.6250448226928711 +illusion_1L,ppo,160,48.0,alpha,lower,0.6176036596298218 +illusion_1L,ppo,161,48.3,alpha,front,0.10298421233892441 +illusion_1L,ppo,161,48.3,alpha,upper,-0.746497631072998 +illusion_1L,ppo,161,48.3,alpha,lower,0.6572394371032715 +illusion_1L,ppo,162,48.6,alpha,front,0.06682106852531433 +illusion_1L,ppo,162,48.6,alpha,upper,-0.9090174436569214 +illusion_1L,ppo,162,48.6,alpha,lower,0.7626488208770752 +illusion_1L,ppo,163,48.9,alpha,front,0.02433106303215027 +illusion_1L,ppo,163,48.9,alpha,upper,-1.0220860242843628 +illusion_1L,ppo,163,48.9,alpha,lower,0.8625670671463013 +illusion_1L,ppo,164,49.2,alpha,front,-0.03615251183509827 +illusion_1L,ppo,164,49.2,alpha,upper,-1.0696139335632324 +illusion_1L,ppo,164,49.2,alpha,lower,0.8976809978485107 +illusion_1L,ppo,165,49.5,alpha,front,-0.12108173966407776 +illusion_1L,ppo,165,49.5,alpha,upper,-1.0561109781265259 +illusion_1L,ppo,165,49.5,alpha,lower,0.8561142683029175 +illusion_1L,ppo,166,49.8,alpha,front,-0.2264728546142578 +illusion_1L,ppo,166,49.8,alpha,upper,-0.9867532253265381 +illusion_1L,ppo,166,49.8,alpha,lower,0.7772119045257568 +illusion_1L,ppo,167,50.1,alpha,front,-0.3251093626022339 +illusion_1L,ppo,167,50.1,alpha,upper,-0.8932092189788818 +illusion_1L,ppo,167,50.1,alpha,lower,0.7208367586135864 +illusion_1L,ppo,168,50.4,alpha,front,-0.3730930685997009 +illusion_1L,ppo,168,50.4,alpha,upper,-0.8301687836647034 +illusion_1L,ppo,168,50.4,alpha,lower,0.7010059356689453 +illusion_1L,ppo,169,50.7,alpha,front,-0.3196961283683777 +illusion_1L,ppo,169,50.7,alpha,upper,-0.8365094661712646 +illusion_1L,ppo,169,50.7,alpha,lower,0.6621654033660889 +illusion_1L,ppo,170,51.0,alpha,front,-0.12401881814002991 +illusion_1L,ppo,170,51.0,alpha,upper,-0.9092099070549011 +illusion_1L,ppo,170,51.0,alpha,lower,0.544278621673584 +illusion_1L,ppo,171,51.3,alpha,front,0.18052291870117188 +illusion_1L,ppo,171,51.3,alpha,upper,-1.0208290815353394 +illusion_1L,ppo,171,51.3,alpha,lower,0.39002299308776855 +illusion_1L,ppo,172,51.6,alpha,front,0.4511496126651764 +illusion_1L,ppo,172,51.6,alpha,upper,-1.1106960773468018 +illusion_1L,ppo,172,51.6,alpha,lower,0.32405054569244385 +illusion_1L,ppo,173,51.9,alpha,front,0.6046539545059204 +illusion_1L,ppo,173,51.9,alpha,upper,-1.1266705989837646 +illusion_1L,ppo,173,51.9,alpha,lower,0.39806437492370605 +illusion_1L,ppo,174,52.2,alpha,front,0.6564724445343018 +illusion_1L,ppo,174,52.2,alpha,upper,-1.0775692462921143 +illusion_1L,ppo,174,52.2,alpha,lower,0.5641998052597046 +illusion_1L,ppo,175,52.5,alpha,front,0.6875020265579224 +illusion_1L,ppo,175,52.5,alpha,upper,-1.030869960784912 +illusion_1L,ppo,175,52.5,alpha,lower,0.743516206741333 +illusion_1L,ppo,176,52.8,alpha,front,0.7341642379760742 +illusion_1L,ppo,176,52.8,alpha,upper,-1.0134831666946411 +illusion_1L,ppo,176,52.8,alpha,lower,0.9033464789390564 +illusion_1L,ppo,177,53.1,alpha,front,0.795548141002655 +illusion_1L,ppo,177,53.1,alpha,upper,-1.013732671737671 +illusion_1L,ppo,177,53.1,alpha,lower,1.031823754310608 +illusion_1L,ppo,178,53.4,alpha,front,0.870617687702179 +illusion_1L,ppo,178,53.4,alpha,upper,-1.0323967933654785 +illusion_1L,ppo,178,53.4,alpha,lower,1.117226481437683 +illusion_1L,ppo,179,53.7,alpha,front,0.9335343241691589 +illusion_1L,ppo,179,53.7,alpha,upper,-1.0761605501174927 +illusion_1L,ppo,179,53.7,alpha,lower,1.1471428871154785 +illusion_1L,ppo,180,54.0,alpha,front,0.9390479326248169 +illusion_1L,ppo,180,54.0,alpha,upper,-1.0956438779830933 +illusion_1L,ppo,180,54.0,alpha,lower,1.149436354637146 +illusion_1L,ppo,181,54.3,alpha,front,0.8373858332633972 +illusion_1L,ppo,181,54.3,alpha,upper,-0.99819016456604 +illusion_1L,ppo,181,54.3,alpha,lower,1.127455234527588 +illusion_1L,ppo,182,54.6,alpha,front,0.6615067720413208 +illusion_1L,ppo,182,54.6,alpha,upper,-0.8261812329292297 +illusion_1L,ppo,182,54.6,alpha,lower,1.0524908304214478 +illusion_1L,ppo,183,54.9,alpha,front,0.4696960151195526 +illusion_1L,ppo,183,54.9,alpha,upper,-0.6720695495605469 +illusion_1L,ppo,183,54.9,alpha,lower,0.898544430732727 +illusion_1L,ppo,184,55.2,alpha,front,0.2898188531398773 +illusion_1L,ppo,184,55.2,alpha,upper,-0.5855872631072998 +illusion_1L,ppo,184,55.2,alpha,lower,0.7192902565002441 +illusion_1L,ppo,185,55.5,alpha,front,0.16194698214530945 +illusion_1L,ppo,185,55.5,alpha,upper,-0.6079076528549194 +illusion_1L,ppo,185,55.5,alpha,lower,0.6158521175384521 +illusion_1L,ppo,186,55.8,alpha,front,0.11146441102027893 +illusion_1L,ppo,186,55.8,alpha,upper,-0.7471849918365479 +illusion_1L,ppo,186,55.8,alpha,lower,0.6298521757125854 +illusion_1L,ppo,187,56.1,alpha,front,0.07814836502075195 +illusion_1L,ppo,187,56.1,alpha,upper,-0.9072760343551636 +illusion_1L,ppo,187,56.1,alpha,lower,0.7316226959228516 +illusion_1L,ppo,188,56.4,alpha,front,0.03148326277732849 +illusion_1L,ppo,188,56.4,alpha,upper,-1.0167031288146973 +illusion_1L,ppo,188,56.4,alpha,lower,0.8342153429985046 +illusion_1L,ppo,189,56.7,alpha,front,-0.03197100758552551 +illusion_1L,ppo,189,56.7,alpha,upper,-1.0645712614059448 +illusion_1L,ppo,189,56.7,alpha,lower,0.8716495037078857 +illusion_1L,ppo,190,57.0,alpha,front,-0.11503410339355469 +illusion_1L,ppo,190,57.0,alpha,upper,-1.0646356344223022 +illusion_1L,ppo,190,57.0,alpha,lower,0.8383611440658569 +illusion_1L,ppo,191,57.3,alpha,front,-0.21327388286590576 +illusion_1L,ppo,191,57.3,alpha,upper,-1.0180519819259644 +illusion_1L,ppo,191,57.3,alpha,lower,0.7708007097244263 +illusion_1L,ppo,192,57.6,alpha,front,-0.3069308400154114 +illusion_1L,ppo,192,57.6,alpha,upper,-0.9386156797409058 +illusion_1L,ppo,192,57.6,alpha,lower,0.7180297374725342 +illusion_1L,ppo,193,57.9,alpha,front,-0.35369670391082764 +illusion_1L,ppo,193,57.9,alpha,upper,-0.8805968761444092 +illusion_1L,ppo,193,57.9,alpha,lower,0.6888132095336914 +illusion_1L,ppo,194,58.2,alpha,front,-0.30317223072052 +illusion_1L,ppo,194,58.2,alpha,upper,-0.8873937129974365 +illusion_1L,ppo,194,58.2,alpha,lower,0.6445415019989014 +illusion_1L,ppo,195,58.5,alpha,front,-0.11593396216630936 +illusion_1L,ppo,195,58.5,alpha,upper,-0.9562932252883911 +illusion_1L,ppo,195,58.5,alpha,lower,0.5326290130615234 +illusion_1L,ppo,196,58.8,alpha,front,0.18197757005691528 +illusion_1L,ppo,196,58.8,alpha,upper,-1.059913158416748 +illusion_1L,ppo,196,58.8,alpha,lower,0.37721121311187744 +illusion_1L,ppo,197,59.1,alpha,front,0.46344056725502014 +illusion_1L,ppo,197,59.1,alpha,upper,-1.1374861001968384 +illusion_1L,ppo,197,59.1,alpha,lower,0.305462121963501 +illusion_1L,ppo,198,59.4,alpha,front,0.6207501888275146 +illusion_1L,ppo,198,59.4,alpha,upper,-1.134333848953247 +illusion_1L,ppo,198,59.4,alpha,lower,0.3951835632324219 +illusion_1L,ppo,199,59.7,alpha,front,0.6690402626991272 +illusion_1L,ppo,199,59.7,alpha,upper,-1.0673247575759888 +illusion_1L,ppo,199,59.7,alpha,lower,0.5886151790618896 +illusion_1L,ppo,0,0.0,omega,front,0.005662003066390753 +illusion_1L,ppo,0,0.0,omega,upper,-0.012311026453971863 +illusion_1L,ppo,0,0.0,omega,lower,-0.008248104713857174 +illusion_1L,ppo,1,0.3,omega,front,0.007322111167013645 +illusion_1L,ppo,1,0.3,omega,upper,-0.013347942382097244 +illusion_1L,ppo,1,0.3,omega,lower,-0.005755893886089325 +illusion_1L,ppo,2,0.6,omega,front,0.00914579164236784 +illusion_1L,ppo,2,0.6,omega,upper,-0.014501674100756645 +illusion_1L,ppo,2,0.6,omega,lower,0.0020625388715416193 +illusion_1L,ppo,3,0.9,omega,front,0.010165795683860779 +illusion_1L,ppo,3,0.9,omega,upper,-0.014483609236776829 +illusion_1L,ppo,3,0.9,omega,lower,0.007956888526678085 +illusion_1L,ppo,4,1.2,omega,front,0.010144485160708427 +illusion_1L,ppo,4,1.2,omega,upper,-0.012672500684857368 +illusion_1L,ppo,4,1.2,omega,lower,0.011852527968585491 +illusion_1L,ppo,5,1.5,omega,front,0.009565014392137527 +illusion_1L,ppo,5,1.5,omega,upper,-0.010150333866477013 +illusion_1L,ppo,5,1.5,omega,lower,0.013979549519717693 +illusion_1L,ppo,6,1.8,omega,front,0.008439122699201107 +illusion_1L,ppo,6,1.8,omega,upper,-0.007624201476573944 +illusion_1L,ppo,6,1.8,omega,lower,0.014802873134613037 +illusion_1L,ppo,7,2.1,omega,front,0.0066373893059790134 +illusion_1L,ppo,7,2.1,omega,upper,-0.005080299451947212 +illusion_1L,ppo,7,2.1,omega,lower,0.014794837683439255 +illusion_1L,ppo,8,2.4,omega,front,0.004598759114742279 +illusion_1L,ppo,8,2.4,omega,upper,-0.0029196941759437323 +illusion_1L,ppo,8,2.4,omega,lower,0.013993465341627598 +illusion_1L,ppo,9,2.7,omega,front,0.0028491418343037367 +illusion_1L,ppo,9,2.7,omega,upper,-0.002241634065285325 +illusion_1L,ppo,9,2.7,omega,lower,0.012204726226627827 +illusion_1L,ppo,10,3.0,omega,front,0.001958236563950777 +illusion_1L,ppo,10,3.0,omega,upper,-0.0037619590293616056 +illusion_1L,ppo,10,3.0,omega,lower,0.009790956974029541 +illusion_1L,ppo,11,3.3,omega,front,0.0016859157476574183 +illusion_1L,ppo,11,3.3,omega,upper,-0.006361577194184065 +illusion_1L,ppo,11,3.3,omega,lower,0.007611830253154039 +illusion_1L,ppo,12,3.6,omega,front,0.001146062626503408 +illusion_1L,ppo,12,3.6,omega,upper,-0.008256304077804089 +illusion_1L,ppo,12,3.6,omega,lower,0.006437320727854967 +illusion_1L,ppo,13,3.9,omega,front,0.00026206462644040585 +illusion_1L,ppo,13,3.9,omega,upper,-0.009028537198901176 +illusion_1L,ppo,13,3.9,omega,lower,0.006256673019379377 +illusion_1L,ppo,14,4.2,omega,front,-0.0006454113172367215 +illusion_1L,ppo,14,4.2,omega,upper,-0.009148795157670975 +illusion_1L,ppo,14,4.2,omega,lower,0.006493294145911932 +illusion_1L,ppo,15,4.5,omega,front,-0.0014207804342731833 +illusion_1L,ppo,15,4.5,omega,upper,-0.009118171408772469 +illusion_1L,ppo,15,4.5,omega,lower,0.006759622134268284 +illusion_1L,ppo,16,4.8,omega,front,-0.002160776173695922 +illusion_1L,ppo,16,4.8,omega,upper,-0.009000123478472233 +illusion_1L,ppo,16,4.8,omega,lower,0.00687858322635293 +illusion_1L,ppo,17,5.1,omega,front,-0.0026620738208293915 +illusion_1L,ppo,17,5.1,omega,upper,-0.009126079268753529 +illusion_1L,ppo,17,5.1,omega,lower,0.006890585180372 +illusion_1L,ppo,18,5.4,omega,front,-0.0026876525953412056 +illusion_1L,ppo,18,5.4,omega,upper,-0.00969505775719881 +illusion_1L,ppo,18,5.4,omega,lower,0.00650789262726903 +illusion_1L,ppo,19,5.7,omega,front,-0.002070186659693718 +illusion_1L,ppo,19,5.7,omega,upper,-0.0105004096403718 +illusion_1L,ppo,19,5.7,omega,lower,0.005502111744135618 +illusion_1L,ppo,20,6.0,omega,front,-0.0007053878507576883 +illusion_1L,ppo,20,6.0,omega,upper,-0.011432904750108719 +illusion_1L,ppo,20,6.0,omega,lower,0.0040937564335763454 +illusion_1L,ppo,21,6.3,omega,front,0.0013878981117159128 +illusion_1L,ppo,21,6.3,omega,upper,-0.01244882121682167 +illusion_1L,ppo,21,6.3,omega,lower,0.0027997123543173075 +illusion_1L,ppo,22,6.6,omega,front,0.0036053990479558706 +illusion_1L,ppo,22,6.6,omega,upper,-0.013094434514641762 +illusion_1L,ppo,22,6.6,omega,lower,0.0021572744008153677 +illusion_1L,ppo,23,6.9,omega,front,0.005330544430762529 +illusion_1L,ppo,23,6.9,omega,upper,-0.0129491426050663 +illusion_1L,ppo,23,6.9,omega,lower,0.0025904225185513496 +illusion_1L,ppo,24,7.2,omega,front,0.006487786769866943 +illusion_1L,ppo,24,7.2,omega,upper,-0.012239305302500725 +illusion_1L,ppo,24,7.2,omega,lower,0.0038830589037388563 +illusion_1L,ppo,25,7.5,omega,front,0.007303120102733374 +illusion_1L,ppo,25,7.5,omega,upper,-0.011115903966128826 +illusion_1L,ppo,25,7.5,omega,lower,0.005700929090380669 +illusion_1L,ppo,26,7.8,omega,front,0.007959497161209583 +illusion_1L,ppo,26,7.8,omega,upper,-0.009878544136881828 +illusion_1L,ppo,26,7.8,omega,lower,0.007625543978065252 +illusion_1L,ppo,27,8.1,omega,front,0.00852560717612505 +illusion_1L,ppo,27,8.1,omega,upper,-0.008951081894338131 +illusion_1L,ppo,27,8.1,omega,lower,0.009716395288705826 +illusion_1L,ppo,28,8.4,omega,front,0.008879126980900764 +illusion_1L,ppo,28,8.4,omega,upper,-0.008731596171855927 +illusion_1L,ppo,28,8.4,omega,lower,0.01165537815541029 +illusion_1L,ppo,29,8.7,omega,front,0.008882545866072178 +illusion_1L,ppo,29,8.7,omega,upper,-0.008783764205873013 +illusion_1L,ppo,29,8.7,omega,lower,0.013269178569316864 +illusion_1L,ppo,30,9.0,omega,front,0.008385000750422478 +illusion_1L,ppo,30,9.0,omega,upper,-0.008676967583596706 +illusion_1L,ppo,30,9.0,omega,lower,0.014323473908007145 +illusion_1L,ppo,31,9.3,omega,front,0.007399653550237417 +illusion_1L,ppo,31,9.3,omega,upper,-0.008310915902256966 +illusion_1L,ppo,31,9.3,omega,lower,0.014584939926862717 +illusion_1L,ppo,32,9.6,omega,front,0.006077125668525696 +illusion_1L,ppo,32,9.6,omega,upper,-0.007817840203642845 +illusion_1L,ppo,32,9.6,omega,lower,0.014113465324044228 +illusion_1L,ppo,33,9.9,omega,front,0.004443803336471319 +illusion_1L,ppo,33,9.9,omega,upper,-0.007378225214779377 +illusion_1L,ppo,33,9.9,omega,lower,0.012962141074240208 +illusion_1L,ppo,34,10.2,omega,front,0.002616695361211896 +illusion_1L,ppo,34,10.2,omega,upper,-0.007014594040811062 +illusion_1L,ppo,34,10.2,omega,lower,0.011240205727517605 +illusion_1L,ppo,35,10.5,omega,front,0.0009036552510224283 +illusion_1L,ppo,35,10.5,omega,upper,-0.00710343336686492 +illusion_1L,ppo,35,10.5,omega,lower,0.008935815654695034 +illusion_1L,ppo,36,10.8,omega,front,-9.208798292092979e-05 +illusion_1L,ppo,36,10.8,omega,upper,-0.007949640974402428 +illusion_1L,ppo,36,10.8,omega,lower,0.006762027740478516 +illusion_1L,ppo,37,11.1,omega,front,-0.00016794174734968692 +illusion_1L,ppo,37,11.1,omega,upper,-0.009728354401886463 +illusion_1L,ppo,37,11.1,omega,lower,0.004771328065544367 +illusion_1L,ppo,38,11.4,omega,front,0.0004383611667435616 +illusion_1L,ppo,38,11.4,omega,upper,-0.012040875852108002 +illusion_1L,ppo,38,11.4,omega,lower,0.0038233923260122538 +illusion_1L,ppo,39,11.7,omega,front,0.0011292259441688657 +illusion_1L,ppo,39,11.7,omega,upper,-0.014239244163036346 +illusion_1L,ppo,39,11.7,omega,lower,0.004419178701937199 +illusion_1L,ppo,40,12.0,omega,front,0.0014568435726687312 +illusion_1L,ppo,40,12.0,omega,upper,-0.01554344967007637 +illusion_1L,ppo,40,12.0,omega,lower,0.006088975351303816 +illusion_1L,ppo,41,12.3,omega,front,0.001064799726009369 +illusion_1L,ppo,41,12.3,omega,upper,-0.015385939739644527 +illusion_1L,ppo,41,12.3,omega,lower,0.007743865251541138 +illusion_1L,ppo,42,12.6,omega,front,-5.1769613492069766e-05 +illusion_1L,ppo,42,12.6,omega,upper,-0.013978392817080021 +illusion_1L,ppo,42,12.6,omega,lower,0.008414601907134056 +illusion_1L,ppo,43,12.9,omega,front,-0.001523530692793429 +illusion_1L,ppo,43,12.9,omega,upper,-0.011836939491331577 +illusion_1L,ppo,43,12.9,omega,lower,0.0077790128998458385 +illusion_1L,ppo,44,13.2,omega,front,-0.002759369555860758 +illusion_1L,ppo,44,13.2,omega,upper,-0.009420957416296005 +illusion_1L,ppo,44,13.2,omega,lower,0.006716594565659761 +illusion_1L,ppo,45,13.5,omega,front,-0.003448081435635686 +illusion_1L,ppo,45,13.5,omega,upper,-0.007181262597441673 +illusion_1L,ppo,45,13.5,omega,lower,0.006047234404832125 +illusion_1L,ppo,46,13.8,omega,front,-0.003289932617917657 +illusion_1L,ppo,46,13.8,omega,upper,-0.0056804572232067585 +illusion_1L,ppo,46,13.8,omega,lower,0.006044790614396334 +illusion_1L,ppo,47,14.1,omega,front,-0.0022514783777296543 +illusion_1L,ppo,47,14.1,omega,upper,-0.005334727466106415 +illusion_1L,ppo,47,14.1,omega,lower,0.006266822572797537 +illusion_1L,ppo,48,14.4,omega,front,-0.0008369093993678689 +illusion_1L,ppo,48,14.4,omega,upper,-0.005934846121817827 +illusion_1L,ppo,48,14.4,omega,lower,0.006376740988343954 +illusion_1L,ppo,49,14.7,omega,front,0.000732913613319397 +illusion_1L,ppo,49,14.7,omega,upper,-0.00729745626449585 +illusion_1L,ppo,49,14.7,omega,lower,0.006342439446598291 +illusion_1L,ppo,50,15.0,omega,front,0.002539413282647729 +illusion_1L,ppo,50,15.0,omega,upper,-0.009293709881603718 +illusion_1L,ppo,50,15.0,omega,lower,0.0064184293150901794 +illusion_1L,ppo,51,15.3,omega,front,0.004485687706619501 +illusion_1L,ppo,51,15.3,omega,upper,-0.01127766352146864 +illusion_1L,ppo,51,15.3,omega,lower,0.0069191656075417995 +illusion_1L,ppo,52,15.6,omega,front,0.006024619098752737 +illusion_1L,ppo,52,15.6,omega,upper,-0.012078306637704372 +illusion_1L,ppo,52,15.6,omega,lower,0.00810034479945898 +illusion_1L,ppo,53,15.9,omega,front,0.00672040693461895 +illusion_1L,ppo,53,15.9,omega,upper,-0.011204750277101994 +illusion_1L,ppo,53,15.9,omega,lower,0.009828812442719936 +illusion_1L,ppo,54,16.2,omega,front,0.006875909399241209 +illusion_1L,ppo,54,16.2,omega,upper,-0.009677736088633537 +illusion_1L,ppo,54,16.2,omega,lower,0.011312923394143581 +illusion_1L,ppo,55,16.5,omega,front,0.0070374202914536 +illusion_1L,ppo,55,16.5,omega,upper,-0.00869592186063528 +illusion_1L,ppo,55,16.5,omega,lower,0.011895372532308102 +illusion_1L,ppo,56,16.8,omega,front,0.007305182050913572 +illusion_1L,ppo,56,16.8,omega,upper,-0.008514076471328735 +illusion_1L,ppo,56,16.8,omega,lower,0.011582409031689167 +illusion_1L,ppo,57,17.1,omega,front,0.007592133246362209 +illusion_1L,ppo,57,17.1,omega,upper,-0.008920593187212944 +illusion_1L,ppo,57,17.1,omega,lower,0.010859860107302666 +illusion_1L,ppo,58,17.4,omega,front,0.007423211354762316 +illusion_1L,ppo,58,17.4,omega,upper,-0.0092649906873703 +illusion_1L,ppo,58,17.4,omega,lower,0.010194174945354462 +illusion_1L,ppo,59,17.7,omega,front,0.0067556011490523815 +illusion_1L,ppo,59,17.7,omega,upper,-0.00915086641907692 +illusion_1L,ppo,59,17.7,omega,lower,0.009541710838675499 +illusion_1L,ppo,60,18.0,omega,front,0.005484015680849552 +illusion_1L,ppo,60,18.0,omega,upper,-0.008626410737633705 +illusion_1L,ppo,60,18.0,omega,lower,0.008343301713466644 +illusion_1L,ppo,61,18.3,omega,front,0.0038122194819152355 +illusion_1L,ppo,61,18.3,omega,upper,-0.007907251827418804 +illusion_1L,ppo,61,18.3,omega,lower,0.007328672334551811 +illusion_1L,ppo,62,18.6,omega,front,0.0020350711420178413 +illusion_1L,ppo,62,18.6,omega,upper,-0.0072936746291816235 +illusion_1L,ppo,62,18.6,omega,lower,0.00704479543492198 +illusion_1L,ppo,63,18.9,omega,front,0.0008482423145323992 +illusion_1L,ppo,63,18.9,omega,upper,-0.007599146105349064 +illusion_1L,ppo,63,18.9,omega,lower,0.007385427597910166 +illusion_1L,ppo,64,19.2,omega,front,0.0003832202928606421 +illusion_1L,ppo,64,19.2,omega,upper,-0.008896089158952236 +illusion_1L,ppo,64,19.2,omega,lower,0.00784891378134489 +illusion_1L,ppo,65,19.5,omega,front,9.007602784549817e-05 +illusion_1L,ppo,65,19.5,omega,upper,-0.01016172394156456 +illusion_1L,ppo,65,19.5,omega,lower,0.008056506514549255 +illusion_1L,ppo,66,19.8,omega,front,-0.0004690513014793396 +illusion_1L,ppo,66,19.8,omega,upper,-0.010700416751205921 +illusion_1L,ppo,66,19.8,omega,lower,0.007772320415824652 +illusion_1L,ppo,67,20.1,omega,front,-0.0013762632152065635 +illusion_1L,ppo,67,20.1,omega,upper,-0.010382339358329773 +illusion_1L,ppo,67,20.1,omega,lower,0.0069817909970879555 +illusion_1L,ppo,68,20.4,omega,front,-0.002513544401153922 +illusion_1L,ppo,68,20.4,omega,upper,-0.009452929720282555 +illusion_1L,ppo,68,20.4,omega,lower,0.0060441396199166775 +illusion_1L,ppo,69,20.7,omega,front,-0.003395172767341137 +illusion_1L,ppo,69,20.7,omega,upper,-0.008582601323723793 +illusion_1L,ppo,69,20.7,omega,lower,0.005463472567498684 +illusion_1L,ppo,70,21.0,omega,front,-0.003169593634083867 +illusion_1L,ppo,70,21.0,omega,upper,-0.008475192822515965 +illusion_1L,ppo,70,21.0,omega,lower,0.0050723981112241745 +illusion_1L,ppo,71,21.3,omega,front,-0.001299237017519772 +illusion_1L,ppo,71,21.3,omega,upper,-0.009278140030801296 +illusion_1L,ppo,71,21.3,omega,lower,0.004326426889747381 +illusion_1L,ppo,72,21.6,omega,front,0.001593198161572218 +illusion_1L,ppo,72,21.6,omega,upper,-0.010580969043076038 +illusion_1L,ppo,72,21.6,omega,lower,0.0035111235920339823 +illusion_1L,ppo,73,21.9,omega,front,0.004420239012688398 +illusion_1L,ppo,73,21.9,omega,upper,-0.011663736775517464 +illusion_1L,ppo,73,21.9,omega,lower,0.003435362596064806 +illusion_1L,ppo,74,22.2,omega,front,0.006225366611033678 +illusion_1L,ppo,74,22.2,omega,upper,-0.011752505786716938 +illusion_1L,ppo,74,22.2,omega,lower,0.0043637678027153015 +illusion_1L,ppo,75,22.5,omega,front,0.006780859082937241 +illusion_1L,ppo,75,22.5,omega,upper,-0.010850419290363789 +illusion_1L,ppo,75,22.5,omega,lower,0.006002850364893675 +illusion_1L,ppo,76,22.8,omega,front,0.006847200449556112 +illusion_1L,ppo,76,22.8,omega,upper,-0.009632091037929058 +illusion_1L,ppo,76,22.8,omega,lower,0.007805523928254843 +illusion_1L,ppo,77,23.1,omega,front,0.007065297104418278 +illusion_1L,ppo,77,23.1,omega,upper,-0.008916959166526794 +illusion_1L,ppo,77,23.1,omega,lower,0.009544150903820992 +illusion_1L,ppo,78,23.4,omega,front,0.007582865655422211 +illusion_1L,ppo,78,23.4,omega,upper,-0.008827649988234043 +illusion_1L,ppo,78,23.4,omega,lower,0.010935710743069649 +illusion_1L,ppo,79,23.7,omega,front,0.008281499147415161 +illusion_1L,ppo,79,23.7,omega,upper,-0.009213626384735107 +illusion_1L,ppo,79,23.7,omega,lower,0.012009328231215477 +illusion_1L,ppo,80,24.0,omega,front,0.008891372941434383 +illusion_1L,ppo,80,24.0,omega,upper,-0.00992781762033701 +illusion_1L,ppo,80,24.0,omega,lower,0.012632940895855427 +illusion_1L,ppo,81,24.3,omega,front,0.008954256772994995 +illusion_1L,ppo,81,24.3,omega,upper,-0.010387340560555458 +illusion_1L,ppo,81,24.3,omega,lower,0.012776410207152367 +illusion_1L,ppo,82,24.6,omega,front,0.007867532782256603 +illusion_1L,ppo,82,24.6,omega,upper,-0.009504090063273907 +illusion_1L,ppo,82,24.6,omega,lower,0.01243111677467823 +illusion_1L,ppo,83,24.9,omega,front,0.005974826868623495 +illusion_1L,ppo,83,24.9,omega,upper,-0.007523548323661089 +illusion_1L,ppo,83,24.9,omega,lower,0.011176396161317825 +illusion_1L,ppo,84,25.2,omega,front,0.003975691273808479 +illusion_1L,ppo,84,25.2,omega,upper,-0.005855858325958252 +illusion_1L,ppo,84,25.2,omega,lower,0.008919068612158298 +illusion_1L,ppo,85,25.5,omega,front,0.0023399884812533855 +illusion_1L,ppo,85,25.5,omega,upper,-0.0054468619637191296 +illusion_1L,ppo,85,25.5,omega,lower,0.00662285927683115 +illusion_1L,ppo,86,25.8,omega,front,0.0014614601386711001 +illusion_1L,ppo,86,25.8,omega,upper,-0.006509461440145969 +illusion_1L,ppo,86,25.8,omega,lower,0.0054045808501541615 +illusion_1L,ppo,87,26.1,omega,front,0.001035987283103168 +illusion_1L,ppo,87,26.1,omega,upper,-0.00833458174020052 +illusion_1L,ppo,87,26.1,omega,lower,0.005653950851410627 +illusion_1L,ppo,88,26.4,omega,front,0.000698000774718821 +illusion_1L,ppo,88,26.4,omega,upper,-0.010063269175589085 +illusion_1L,ppo,88,26.4,omega,lower,0.006911938078701496 +illusion_1L,ppo,89,26.7,omega,front,0.00029952317709103227 +illusion_1L,ppo,89,26.7,omega,upper,-0.011265153996646404 +illusion_1L,ppo,89,26.7,omega,lower,0.008017693646252155 +illusion_1L,ppo,90,27.0,omega,front,-0.0003253611794207245 +illusion_1L,ppo,90,27.0,omega,upper,-0.011763395741581917 +illusion_1L,ppo,90,27.0,omega,lower,0.008159391582012177 +illusion_1L,ppo,91,27.3,omega,front,-0.0011802080553025007 +illusion_1L,ppo,91,27.3,omega,upper,-0.011625594459474087 +illusion_1L,ppo,91,27.3,omega,lower,0.007506587542593479 +illusion_1L,ppo,92,27.6,omega,front,-0.002081165788695216 +illusion_1L,ppo,92,27.6,omega,upper,-0.01105002872645855 +illusion_1L,ppo,92,27.6,omega,lower,0.0067093754187226295 +illusion_1L,ppo,93,27.9,omega,front,-0.00281473807990551 +illusion_1L,ppo,93,27.9,omega,upper,-0.010227124206721783 +illusion_1L,ppo,93,27.9,omega,lower,0.006269555073231459 +illusion_1L,ppo,94,28.2,omega,front,-0.0030740026850253344 +illusion_1L,ppo,94,28.2,omega,upper,-0.009575597941875458 +illusion_1L,ppo,94,28.2,omega,lower,0.006160467863082886 +illusion_1L,ppo,95,28.5,omega,front,-0.0024433808866888285 +illusion_1L,ppo,95,28.5,omega,upper,-0.009378107264637947 +illusion_1L,ppo,95,28.5,omega,lower,0.005971181206405163 +illusion_1L,ppo,96,28.8,omega,front,-0.0005250241956673563 +illusion_1L,ppo,96,28.8,omega,upper,-0.009619906544685364 +illusion_1L,ppo,96,28.8,omega,lower,0.005114648025482893 +illusion_1L,ppo,97,29.1,omega,front,0.0023996077943593264 +illusion_1L,ppo,97,29.1,omega,upper,-0.010072726756334305 +illusion_1L,ppo,97,29.1,omega,lower,0.0038130711764097214 +illusion_1L,ppo,98,29.4,omega,front,0.004977325908839703 +illusion_1L,ppo,98,29.4,omega,upper,-0.01036102045327425 +illusion_1L,ppo,98,29.4,omega,lower,0.00341656687669456 +illusion_1L,ppo,99,29.7,omega,front,0.006385623011738062 +illusion_1L,ppo,99,29.7,omega,upper,-0.010285260155797005 +illusion_1L,ppo,99,29.7,omega,lower,0.004670767579227686 +illusion_1L,ppo,100,30.0,omega,front,0.00694231316447258 +illusion_1L,ppo,100,30.0,omega,upper,-0.010077315382659435 +illusion_1L,ppo,100,30.0,omega,lower,0.006914971861988306 +illusion_1L,ppo,101,30.3,omega,front,0.007253242190927267 +illusion_1L,ppo,101,30.3,omega,upper,-0.009991705417633057 +illusion_1L,ppo,101,30.3,omega,lower,0.009134254418313503 +illusion_1L,ppo,102,30.6,omega,front,0.007583542726933956 +illusion_1L,ppo,102,30.6,omega,upper,-0.009992220439016819 +illusion_1L,ppo,102,30.6,omega,lower,0.01082987617701292 +illusion_1L,ppo,103,30.9,omega,front,0.008214980363845825 +illusion_1L,ppo,103,30.9,omega,upper,-0.010076486505568027 +illusion_1L,ppo,103,30.9,omega,lower,0.01230583619326353 +illusion_1L,ppo,104,31.2,omega,front,0.008939526043832302 +illusion_1L,ppo,104,31.2,omega,upper,-0.01020844466984272 +illusion_1L,ppo,104,31.2,omega,lower,0.012946836650371552 +illusion_1L,ppo,105,31.5,omega,front,0.009439670480787754 +illusion_1L,ppo,105,31.5,omega,upper,-0.010362992994487286 +illusion_1L,ppo,105,31.5,omega,lower,0.012841081246733665 +illusion_1L,ppo,106,31.8,omega,front,0.00927144568413496 +illusion_1L,ppo,106,31.8,omega,upper,-0.010095933452248573 +illusion_1L,ppo,106,31.8,omega,lower,0.012297282926738262 +illusion_1L,ppo,107,32.1,omega,front,0.008199090138077736 +illusion_1L,ppo,107,32.1,omega,upper,-0.009171422570943832 +illusion_1L,ppo,107,32.1,omega,lower,0.011366176418960094 +illusion_1L,ppo,108,32.4,omega,front,0.006567550357431173 +illusion_1L,ppo,108,32.4,omega,upper,-0.007951712235808372 +illusion_1L,ppo,108,32.4,omega,lower,0.009733213111758232 +illusion_1L,ppo,109,32.7,omega,front,0.004709098022431135 +illusion_1L,ppo,109,32.7,omega,upper,-0.007020406424999237 +illusion_1L,ppo,109,32.7,omega,lower,0.0076641724444925785 +illusion_1L,ppo,110,33.0,omega,front,0.002758135786280036 +illusion_1L,ppo,110,33.0,omega,upper,-0.006429751869291067 +illusion_1L,ppo,110,33.0,omega,lower,0.006220850627869368 +illusion_1L,ppo,111,33.3,omega,front,0.0013653830392286181 +illusion_1L,ppo,111,33.3,omega,upper,-0.006782861892133951 +illusion_1L,ppo,111,33.3,omega,lower,0.00588739151135087 +illusion_1L,ppo,112,33.6,omega,front,0.0007711791549809277 +illusion_1L,ppo,112,33.6,omega,upper,-0.008301546797156334 +illusion_1L,ppo,112,33.6,omega,lower,0.006521658971905708 +illusion_1L,ppo,113,33.9,omega,front,0.0004549735749606043 +illusion_1L,ppo,113,33.9,omega,upper,-0.010034413076937199 +illusion_1L,ppo,113,33.9,omega,lower,0.007468442898243666 +illusion_1L,ppo,114,34.2,omega,front,1.1099278708570637e-05 +illusion_1L,ppo,114,34.2,omega,upper,-0.011205029673874378 +illusion_1L,ppo,114,34.2,omega,lower,0.008073640055954456 +illusion_1L,ppo,115,34.5,omega,front,-0.0006686734850518405 +illusion_1L,ppo,115,34.5,omega,upper,-0.011621806770563126 +illusion_1L,ppo,115,34.5,omega,lower,0.00784635916352272 +illusion_1L,ppo,116,34.8,omega,front,-0.0016097482293844223 +illusion_1L,ppo,116,34.8,omega,upper,-0.011403071694076061 +illusion_1L,ppo,116,34.8,omega,lower,0.006964275613427162 +illusion_1L,ppo,117,35.1,omega,front,-0.002642846666276455 +illusion_1L,ppo,117,35.1,omega,upper,-0.010700716637074947 +illusion_1L,ppo,117,35.1,omega,lower,0.006128480192273855 +illusion_1L,ppo,118,35.4,omega,front,-0.0033657103776931763 +illusion_1L,ppo,118,35.4,omega,upper,-0.009796296246349812 +illusion_1L,ppo,118,35.4,omega,lower,0.0058194599114358425 +illusion_1L,ppo,119,35.7,omega,front,-0.0033663148060441017 +illusion_1L,ppo,119,35.7,omega,upper,-0.009156547486782074 +illusion_1L,ppo,119,35.7,omega,lower,0.0057064867578446865 +illusion_1L,ppo,120,36.0,omega,front,-0.0021389781031757593 +illusion_1L,ppo,120,36.0,omega,upper,-0.009168317541480064 +illusion_1L,ppo,120,36.0,omega,lower,0.0052315546199679375 +illusion_1L,ppo,121,36.3,omega,front,0.00044957277714274824 +illusion_1L,ppo,121,36.3,omega,upper,-0.009710964746773243 +illusion_1L,ppo,121,36.3,omega,lower,0.00421156408265233 +illusion_1L,ppo,122,36.6,omega,front,0.0034499880857765675 +illusion_1L,ppo,122,36.6,omega,upper,-0.010501756332814693 +illusion_1L,ppo,122,36.6,omega,lower,0.0034692573826760054 +illusion_1L,ppo,123,36.9,omega,front,0.005721310153603554 +illusion_1L,ppo,123,36.9,omega,upper,-0.010905463248491287 +illusion_1L,ppo,123,36.9,omega,lower,0.003874914487823844 +illusion_1L,ppo,124,37.2,omega,front,0.006712759379297495 +illusion_1L,ppo,124,37.2,omega,upper,-0.010597982443869114 +illusion_1L,ppo,124,37.2,omega,lower,0.005604080855846405 +illusion_1L,ppo,125,37.5,omega,front,0.0069474284537136555 +illusion_1L,ppo,125,37.5,omega,upper,-0.009966656565666199 +illusion_1L,ppo,125,37.5,omega,lower,0.00794415082782507 +illusion_1L,ppo,126,37.8,omega,front,0.007164804730564356 +illusion_1L,ppo,126,37.8,omega,upper,-0.009536663070321083 +illusion_1L,ppo,126,37.8,omega,lower,0.010022041387856007 +illusion_1L,ppo,127,38.1,omega,front,0.007604112382978201 +illusion_1L,ppo,127,38.1,omega,upper,-0.009426819160580635 +illusion_1L,ppo,127,38.1,omega,lower,0.011544451117515564 +illusion_1L,ppo,128,38.4,omega,front,0.008219093084335327 +illusion_1L,ppo,128,38.4,omega,upper,-0.00962468795478344 +illusion_1L,ppo,128,38.4,omega,lower,0.01250856090337038 +illusion_1L,ppo,129,38.7,omega,front,0.008964057080447674 +illusion_1L,ppo,129,38.7,omega,upper,-0.010094182565808296 +illusion_1L,ppo,129,38.7,omega,lower,0.01282565575093031 +illusion_1L,ppo,130,39.0,omega,front,0.009397884830832481 +illusion_1L,ppo,130,39.0,omega,upper,-0.010537690483033657 +illusion_1L,ppo,130,39.0,omega,lower,0.012541699223220348 +illusion_1L,ppo,131,39.3,omega,front,0.008941334672272205 +illusion_1L,ppo,131,39.3,omega,upper,-0.010277694091200829 +illusion_1L,ppo,131,39.3,omega,lower,0.011866088025271893 +illusion_1L,ppo,132,39.6,omega,front,0.0075157019309699535 +illusion_1L,ppo,132,39.6,omega,upper,-0.008981248363852501 +illusion_1L,ppo,132,39.6,omega,lower,0.010770809836685658 +illusion_1L,ppo,133,39.9,omega,front,0.005669722333550453 +illusion_1L,ppo,133,39.9,omega,upper,-0.007486188318580389 +illusion_1L,ppo,133,39.9,omega,lower,0.008969969116151333 +illusion_1L,ppo,134,40.2,omega,front,0.0036852636840194464 +illusion_1L,ppo,134,40.2,omega,upper,-0.006435399875044823 +illusion_1L,ppo,134,40.2,omega,lower,0.006870937068015337 +illusion_1L,ppo,135,40.5,omega,front,0.0019107973203063011 +illusion_1L,ppo,135,40.5,omega,upper,-0.006136580370366573 +illusion_1L,ppo,135,40.5,omega,lower,0.0056328377686440945 +illusion_1L,ppo,136,40.8,omega,front,0.001020540134049952 +illusion_1L,ppo,136,40.8,omega,upper,-0.007258300669491291 +illusion_1L,ppo,136,40.8,omega,lower,0.005734770093113184 +illusion_1L,ppo,137,41.1,omega,front,0.0007220667321234941 +illusion_1L,ppo,137,41.1,omega,upper,-0.009191823191940784 +illusion_1L,ppo,137,41.1,omega,lower,0.00683928094804287 +illusion_1L,ppo,138,41.4,omega,front,0.0004672264913097024 +illusion_1L,ppo,138,41.4,omega,upper,-0.010806058533489704 +illusion_1L,ppo,138,41.4,omega,lower,0.008100115694105625 +illusion_1L,ppo,139,41.7,omega,front,-3.6432742490433156e-05 +illusion_1L,ppo,139,41.7,omega,upper,-0.011651049368083477 +illusion_1L,ppo,139,41.7,omega,lower,0.00869073998183012 +illusion_1L,ppo,140,42.0,omega,front,-0.0008457115036435425 +illusion_1L,ppo,140,42.0,omega,upper,-0.011762193404138088 +illusion_1L,ppo,140,42.0,omega,lower,0.008247788064181805 +illusion_1L,ppo,141,42.3,omega,front,-0.001858071074821055 +illusion_1L,ppo,141,42.3,omega,upper,-0.011169795878231525 +illusion_1L,ppo,141,42.3,omega,lower,0.00720898387953639 +illusion_1L,ppo,142,42.6,omega,front,-0.0028240846004337072 +illusion_1L,ppo,142,42.6,omega,upper,-0.010069557465612888 +illusion_1L,ppo,142,42.6,omega,lower,0.0064083123579621315 +illusion_1L,ppo,143,42.9,omega,front,-0.0034460281021893024 +illusion_1L,ppo,143,42.9,omega,upper,-0.008942932821810246 +illusion_1L,ppo,143,42.9,omega,lower,0.006235093809664249 +illusion_1L,ppo,144,43.2,omega,front,-0.0032916544005274773 +illusion_1L,ppo,144,43.2,omega,upper,-0.008288860321044922 +illusion_1L,ppo,144,43.2,omega,lower,0.00627322169020772 +illusion_1L,ppo,145,43.5,omega,front,-0.001860431395471096 +illusion_1L,ppo,145,43.5,omega,upper,-0.008356091566383839 +illusion_1L,ppo,145,43.5,omega,lower,0.00576213002204895 +illusion_1L,ppo,146,43.8,omega,front,0.0007437806925736368 +illusion_1L,ppo,146,43.8,omega,upper,-0.009066643193364143 +illusion_1L,ppo,146,43.8,omega,lower,0.00460908655077219 +illusion_1L,ppo,147,44.1,omega,front,0.0035454523749649525 +illusion_1L,ppo,147,44.1,omega,upper,-0.010007373988628387 +illusion_1L,ppo,147,44.1,omega,lower,0.003762662410736084 +illusion_1L,ppo,148,44.4,omega,front,0.0056549301370978355 +illusion_1L,ppo,148,44.4,omega,upper,-0.01071423664689064 +illusion_1L,ppo,148,44.4,omega,lower,0.004087827168405056 +illusion_1L,ppo,149,44.7,omega,front,0.006591722369194031 +illusion_1L,ppo,149,44.7,omega,upper,-0.01080304104834795 +illusion_1L,ppo,149,44.7,omega,lower,0.0056198881939053535 +illusion_1L,ppo,150,45.0,omega,front,0.006958581041544676 +illusion_1L,ppo,150,45.0,omega,upper,-0.010504527948796749 +illusion_1L,ppo,150,45.0,omega,lower,0.007606911472976208 +illusion_1L,ppo,151,45.3,omega,front,0.007313279435038567 +illusion_1L,ppo,151,45.3,omega,upper,-0.010228855535387993 +illusion_1L,ppo,151,45.3,omega,lower,0.009379693306982517 +illusion_1L,ppo,152,45.6,omega,front,0.007833960466086864 +illusion_1L,ppo,152,45.6,omega,upper,-0.010137380100786686 +illusion_1L,ppo,152,45.6,omega,lower,0.010634144768118858 +illusion_1L,ppo,153,45.9,omega,front,0.00854132603853941 +illusion_1L,ppo,153,45.9,omega,upper,-0.010281427763402462 +illusion_1L,ppo,153,45.9,omega,lower,0.011406971141695976 +illusion_1L,ppo,154,46.2,omega,front,0.009249374270439148 +illusion_1L,ppo,154,46.2,omega,upper,-0.010629016906023026 +illusion_1L,ppo,154,46.2,omega,lower,0.011661052703857422 +illusion_1L,ppo,155,46.5,omega,front,0.009431966580450535 +illusion_1L,ppo,155,46.5,omega,upper,-0.010744592174887657 +illusion_1L,ppo,155,46.5,omega,lower,0.01149999350309372 +illusion_1L,ppo,156,46.8,omega,front,0.008597265928983688 +illusion_1L,ppo,156,46.8,omega,upper,-0.009893312118947506 +illusion_1L,ppo,156,46.8,omega,lower,0.011109543032944202 +illusion_1L,ppo,157,47.1,omega,front,0.006850922480225563 +illusion_1L,ppo,157,47.1,omega,upper,-0.0083151338621974 +illusion_1L,ppo,157,47.1,omega,lower,0.010223028250038624 +illusion_1L,ppo,158,47.4,omega,front,0.005143322981894016 +illusion_1L,ppo,158,47.4,omega,upper,-0.007092623505741358 +illusion_1L,ppo,158,47.4,omega,lower,0.008508479222655296 +illusion_1L,ppo,159,47.7,omega,front,0.0032499958761036396 +illusion_1L,ppo,159,47.7,omega,upper,-0.006288739386945963 +illusion_1L,ppo,159,47.7,omega,lower,0.006857438012957573 +illusion_1L,ppo,160,48.0,omega,front,0.001733897253870964 +illusion_1L,ppo,160,48.0,omega,upper,-0.0062504480592906475 +illusion_1L,ppo,160,48.0,omega,lower,0.006176036316901445 +illusion_1L,ppo,161,48.3,omega,front,0.0010298420675098896 +illusion_1L,ppo,161,48.3,omega,upper,-0.00746497604995966 +illusion_1L,ppo,161,48.3,omega,lower,0.006572394166141748 +illusion_1L,ppo,162,48.6,omega,front,0.0006682106759399176 +illusion_1L,ppo,162,48.6,omega,upper,-0.009090173989534378 +illusion_1L,ppo,162,48.6,omega,lower,0.007626487873494625 +illusion_1L,ppo,163,48.9,omega,front,0.00024331062741111964 +illusion_1L,ppo,163,48.9,omega,upper,-0.010220860131084919 +illusion_1L,ppo,163,48.9,omega,lower,0.008625670336186886 +illusion_1L,ppo,164,49.2,omega,front,-0.00036152510438114405 +illusion_1L,ppo,164,49.2,omega,upper,-0.010696139186620712 +illusion_1L,ppo,164,49.2,omega,lower,0.008976809680461884 +illusion_1L,ppo,165,49.5,omega,front,-0.0012108173687011003 +illusion_1L,ppo,165,49.5,omega,upper,-0.010561109520494938 +illusion_1L,ppo,165,49.5,omega,lower,0.008561142720282078 +illusion_1L,ppo,166,49.8,omega,front,-0.0022647285368293524 +illusion_1L,ppo,166,49.8,omega,upper,-0.009867532178759575 +illusion_1L,ppo,166,49.8,omega,lower,0.0077721187844872475 +illusion_1L,ppo,167,50.1,omega,front,-0.003251093439757824 +illusion_1L,ppo,167,50.1,omega,upper,-0.008932092227041721 +illusion_1L,ppo,167,50.1,omega,lower,0.007208367343991995 +illusion_1L,ppo,168,50.4,omega,front,-0.003730930620804429 +illusion_1L,ppo,168,50.4,omega,upper,-0.0083016874268651 +illusion_1L,ppo,168,50.4,omega,lower,0.007010059431195259 +illusion_1L,ppo,169,50.7,omega,front,-0.003196961246430874 +illusion_1L,ppo,169,50.7,omega,upper,-0.008365094661712646 +illusion_1L,ppo,169,50.7,omega,lower,0.00662165367975831 +illusion_1L,ppo,170,51.0,omega,front,-0.0012401881394907832 +illusion_1L,ppo,170,51.0,omega,upper,-0.009092099033296108 +illusion_1L,ppo,170,51.0,omega,lower,0.005442786030471325 +illusion_1L,ppo,171,51.3,omega,front,0.0018052291125059128 +illusion_1L,ppo,171,51.3,omega,upper,-0.010208291001617908 +illusion_1L,ppo,171,51.3,omega,lower,0.0039002299308776855 +illusion_1L,ppo,172,51.6,omega,front,0.004511496052145958 +illusion_1L,ppo,172,51.6,omega,upper,-0.011106960475444794 +illusion_1L,ppo,172,51.6,omega,lower,0.0032405054662376642 +illusion_1L,ppo,173,51.9,omega,front,0.0060465396381914616 +illusion_1L,ppo,173,51.9,omega,upper,-0.011266705580055714 +illusion_1L,ppo,173,51.9,omega,lower,0.003980643581598997 +illusion_1L,ppo,174,52.2,omega,front,0.006564724259078503 +illusion_1L,ppo,174,52.2,omega,upper,-0.010775691829621792 +illusion_1L,ppo,174,52.2,omega,lower,0.005641997791826725 +illusion_1L,ppo,175,52.5,omega,front,0.006875019986182451 +illusion_1L,ppo,175,52.5,omega,upper,-0.010308699682354927 +illusion_1L,ppo,175,52.5,omega,lower,0.007435162086039782 +illusion_1L,ppo,176,52.8,omega,front,0.007341642398387194 +illusion_1L,ppo,176,52.8,omega,upper,-0.010134831070899963 +illusion_1L,ppo,176,52.8,omega,lower,0.009033464826643467 +illusion_1L,ppo,177,53.1,omega,front,0.007955481298267841 +illusion_1L,ppo,177,53.1,omega,upper,-0.010137326084077358 +illusion_1L,ppo,177,53.1,omega,lower,0.010318237356841564 +illusion_1L,ppo,178,53.4,omega,front,0.008706176653504372 +illusion_1L,ppo,178,53.4,omega,upper,-0.010323967784643173 +illusion_1L,ppo,178,53.4,omega,lower,0.011172264814376831 +illusion_1L,ppo,179,53.7,omega,front,0.009335342794656754 +illusion_1L,ppo,179,53.7,omega,upper,-0.010761605575680733 +illusion_1L,ppo,179,53.7,omega,lower,0.011471428908407688 +illusion_1L,ppo,180,54.0,omega,front,0.009390478953719139 +illusion_1L,ppo,180,54.0,omega,upper,-0.01095643825829029 +illusion_1L,ppo,180,54.0,omega,lower,0.011494363658130169 +illusion_1L,ppo,181,54.3,omega,front,0.008373858407139778 +illusion_1L,ppo,181,54.3,omega,upper,-0.00998190138489008 +illusion_1L,ppo,181,54.3,omega,lower,0.011274551972746849 +illusion_1L,ppo,182,54.6,omega,front,0.00661506736651063 +illusion_1L,ppo,182,54.6,omega,upper,-0.008261811919510365 +illusion_1L,ppo,182,54.6,omega,lower,0.01052490808069706 +illusion_1L,ppo,183,54.9,omega,front,0.004696960095316172 +illusion_1L,ppo,183,54.9,omega,upper,-0.006720695178955793 +illusion_1L,ppo,183,54.9,omega,lower,0.008985443972051144 +illusion_1L,ppo,184,55.2,omega,front,0.002898188540711999 +illusion_1L,ppo,184,55.2,omega,upper,-0.005855872295796871 +illusion_1L,ppo,184,55.2,omega,lower,0.0071929022669792175 +illusion_1L,ppo,185,55.5,omega,front,0.001619469840079546 +illusion_1L,ppo,185,55.5,omega,upper,-0.006079076323658228 +illusion_1L,ppo,185,55.5,omega,lower,0.006158520933240652 +illusion_1L,ppo,186,55.8,omega,front,0.0011146441102027893 +illusion_1L,ppo,186,55.8,omega,upper,-0.007471849676221609 +illusion_1L,ppo,186,55.8,omega,lower,0.006298521533608437 +illusion_1L,ppo,187,56.1,omega,front,0.0007814836571924388 +illusion_1L,ppo,187,56.1,omega,upper,-0.009072760120034218 +illusion_1L,ppo,187,56.1,omega,lower,0.007316226605325937 +illusion_1L,ppo,188,56.4,omega,front,0.000314832606818527 +illusion_1L,ppo,188,56.4,omega,upper,-0.010167030617594719 +illusion_1L,ppo,188,56.4,omega,lower,0.008342153392732143 +illusion_1L,ppo,189,56.7,omega,front,-0.00031971005955711007 +illusion_1L,ppo,189,56.7,omega,upper,-0.010645712725818157 +illusion_1L,ppo,189,56.7,omega,lower,0.008716494776308537 +illusion_1L,ppo,190,57.0,omega,front,-0.0011503410059958696 +illusion_1L,ppo,190,57.0,omega,upper,-0.010646356269717216 +illusion_1L,ppo,190,57.0,omega,lower,0.008383611217141151 +illusion_1L,ppo,191,57.3,omega,front,-0.002132738707587123 +illusion_1L,ppo,191,57.3,omega,upper,-0.01018051989376545 +illusion_1L,ppo,191,57.3,omega,lower,0.007708007004112005 +illusion_1L,ppo,192,57.6,omega,front,-0.003069308353587985 +illusion_1L,ppo,192,57.6,omega,upper,-0.009386156685650349 +illusion_1L,ppo,192,57.6,omega,lower,0.007180297281593084 +illusion_1L,ppo,193,57.9,omega,front,-0.003536966862156987 +illusion_1L,ppo,193,57.9,omega,upper,-0.008805968798696995 +illusion_1L,ppo,193,57.9,omega,lower,0.006888132076710463 +illusion_1L,ppo,194,58.2,omega,front,-0.003031722269952297 +illusion_1L,ppo,194,58.2,omega,upper,-0.008873936720192432 +illusion_1L,ppo,194,58.2,omega,lower,0.00644541485235095 +illusion_1L,ppo,195,58.5,omega,front,-0.0011593395611271262 +illusion_1L,ppo,195,58.5,omega,upper,-0.009562931954860687 +illusion_1L,ppo,195,58.5,omega,lower,0.005326290149241686 +illusion_1L,ppo,196,58.8,omega,front,0.0018197756726294756 +illusion_1L,ppo,196,58.8,omega,upper,-0.01059913169592619 +illusion_1L,ppo,196,58.8,omega,lower,0.00377211207523942 +illusion_1L,ppo,197,59.1,omega,front,0.0046344054862856865 +illusion_1L,ppo,197,59.1,omega,upper,-0.011374861001968384 +illusion_1L,ppo,197,59.1,omega,lower,0.0030546211637556553 +illusion_1L,ppo,198,59.4,omega,front,0.006207501981407404 +illusion_1L,ppo,198,59.4,omega,upper,-0.011343338526785374 +illusion_1L,ppo,198,59.4,omega,lower,0.003951835446059704 +illusion_1L,ppo,199,59.7,omega,front,0.006690402515232563 +illusion_1L,ppo,199,59.7,omega,upper,-0.010673247277736664 +illusion_1L,ppo,199,59.7,omega,lower,0.00588615145534277 +illusion_1L,ppo,0,0.0,target_force,target_cd,0.005695981904864311 +illusion_1L,ppo,0,0.0,target_force,target_cl,0.002016345737501979 +illusion_1L,ppo,1,0.3,target_force,target_cd,0.0057229530066251755 +illusion_1L,ppo,1,0.3,target_force,target_cl,0.0021225211676210165 +illusion_1L,ppo,2,0.6,target_force,target_cd,0.005722800735384226 +illusion_1L,ppo,2,0.6,target_force,target_cl,0.0021052337251603603 +illusion_1L,ppo,3,0.9,target_force,target_cd,0.005713127087801695 +illusion_1L,ppo,3,0.9,target_force,target_cl,0.001965455012395978 +illusion_1L,ppo,4,1.2,target_force,target_cd,0.005692195612937212 +illusion_1L,ppo,4,1.2,target_force,target_cl,0.0017112427158281207 +illusion_1L,ppo,5,1.5,target_force,target_cd,0.0056618573144078255 +illusion_1L,ppo,5,1.5,target_force,target_cl,0.001357297645881772 +illusion_1L,ppo,6,1.8,target_force,target_cd,0.005642481613904238 +illusion_1L,ppo,6,1.8,target_force,target_cl,0.0009241479565389454 +illusion_1L,ppo,7,2.1,target_force,target_cd,0.005632458254694939 +illusion_1L,ppo,7,2.1,target_force,target_cl,0.00043700356036424637 +illusion_1L,ppo,8,2.4,target_force,target_cd,0.005603872239589691 +illusion_1L,ppo,8,2.4,target_force,target_cl,-7.566207932541147e-05 +illusion_1L,ppo,9,2.7,target_force,target_cd,0.005562879145145416 +illusion_1L,ppo,9,2.7,target_force,target_cl,-0.0005837283679284155 +illusion_1L,ppo,10,3.0,target_force,target_cd,0.00555048044770956 +illusion_1L,ppo,10,3.0,target_force,target_cl,-0.001057157409377396 +illusion_1L,ppo,11,3.3,target_force,target_cd,0.005573469679802656 +illusion_1L,ppo,11,3.3,target_force,target_cl,-0.0014677423750981688 +illusion_1L,ppo,12,3.6,target_force,target_cd,0.0056081246584653854 +illusion_1L,ppo,12,3.6,target_force,target_cl,-0.0017907777801156044 +illusion_1L,ppo,13,3.9,target_force,target_cd,0.005659202579408884 +illusion_1L,ppo,13,3.9,target_force,target_cl,-0.002006553579121828 +illusion_1L,ppo,14,4.2,target_force,target_cd,0.005730922799557447 +illusion_1L,ppo,14,4.2,target_force,target_cl,-0.002101584803313017 +illusion_1L,ppo,15,4.5,target_force,target_cd,0.005774288903921843 +illusion_1L,ppo,15,4.5,target_force,target_cl,-0.0020694960840046406 +illusion_1L,ppo,16,4.8,target_force,target_cd,0.005751272197812796 +illusion_1L,ppo,16,4.8,target_force,target_cl,-0.001911501633003354 +illusion_1L,ppo,17,5.1,target_force,target_cd,0.0056986394338309765 +illusion_1L,ppo,17,5.1,target_force,target_cl,-0.0016364414477720857 +illusion_1L,ppo,18,5.4,target_force,target_cd,0.005654868204146624 +illusion_1L,ppo,18,5.4,target_force,target_cl,-0.001260355580598116 +illusion_1L,ppo,19,5.7,target_force,target_cd,0.005605330225080252 +illusion_1L,ppo,19,5.7,target_force,target_cl,-0.0008056137594394386 +illusion_1L,ppo,20,6.0,target_force,target_cd,0.0055566998198628426 +illusion_1L,ppo,20,6.0,target_force,target_cl,-0.000299636711133644 +illusion_1L,ppo,21,6.3,target_force,target_cd,0.005555659998208284 +illusion_1L,ppo,21,6.3,target_force,target_cl,0.0002267197414766997 +illusion_1L,ppo,22,6.6,target_force,target_cd,0.005592211149632931 +illusion_1L,ppo,22,6.6,target_force,target_cl,0.0007410288671962917 +illusion_1L,ppo,23,6.9,target_force,target_cd,0.005606893915683031 +illusion_1L,ppo,23,6.9,target_force,target_cl,0.0012112932745367289 +illusion_1L,ppo,24,7.2,target_force,target_cd,0.005605695769190788 +illusion_1L,ppo,24,7.2,target_force,target_cl,0.0016079578781500459 +illusion_1L,ppo,25,7.5,target_force,target_cd,0.005637506954371929 +illusion_1L,ppo,25,7.5,target_force,target_cl,0.0019058084581047297 +illusion_1L,ppo,26,7.8,target_force,target_cd,0.0056829797104001045 +illusion_1L,ppo,26,7.8,target_force,target_cl,0.0020856272894889116 +illusion_1L,ppo,27,8.1,target_force,target_cd,0.00569962989538908 +illusion_1L,ppo,27,8.1,target_force,target_cl,0.0021354956552386284 +illusion_1L,ppo,28,8.4,target_force,target_cd,0.005715371575206518 +illusion_1L,ppo,28,8.4,target_force,target_cl,0.002051648451015353 +illusion_1L,ppo,29,8.7,target_force,target_cd,0.005750197917222977 +illusion_1L,ppo,29,8.7,target_force,target_cl,0.0018388143507763743 +illusion_1L,ppo,30,9.0,target_force,target_cd,0.005742636509239674 +illusion_1L,ppo,30,9.0,target_force,target_cl,0.001510008005425334 +illusion_1L,ppo,31,9.3,target_force,target_cd,0.005665794480592012 +illusion_1L,ppo,31,9.3,target_force,target_cl,0.0010857797460630536 +illusion_1L,ppo,32,9.6,target_force,target_cd,0.00559135852381587 +illusion_1L,ppo,32,9.6,target_force,target_cl,0.0005929587059654295 +illusion_1L,ppo,33,9.9,target_force,target_cd,0.005558366887271404 +illusion_1L,ppo,33,9.9,target_force,target_cl,6.296794163063169e-05 +illusion_1L,ppo,34,10.2,target_force,target_cd,0.005529783200472593 +illusion_1L,ppo,34,10.2,target_force,target_cl,-0.0004701845464296639 +illusion_1L,ppo,35,10.5,target_force,target_cd,0.0055184559896588326 +illusion_1L,ppo,35,10.5,target_force,target_cl,-0.0009721080423332751 +illusion_1L,ppo,36,10.8,target_force,target_cd,0.005579106509685516 +illusion_1L,ppo,36,10.8,target_force,target_cl,-0.0014102784916758537 +illusion_1L,ppo,37,11.1,target_force,target_cd,0.005670757964253426 +illusion_1L,ppo,37,11.1,target_force,target_cl,-0.001756184850819409 +illusion_1L,ppo,38,11.4,target_force,target_cd,0.005707974545657635 +illusion_1L,ppo,38,11.4,target_force,target_cl,-0.0019872256089001894 +illusion_1L,ppo,39,11.7,target_force,target_cd,0.005710371769964695 +illusion_1L,ppo,39,11.7,target_force,target_cl,-0.002088225446641445 +illusion_1L,ppo,40,12.0,target_force,target_cd,0.005732146557420492 +illusion_1L,ppo,40,12.0,target_force,target_cl,-0.0020524656865745783 +illusion_1L,ppo,41,12.3,target_force,target_cd,0.005734624341130257 +illusion_1L,ppo,41,12.3,target_force,target_cl,-0.0018821575213223696 +illusion_1L,ppo,42,12.6,target_force,target_cd,0.005685302894562483 +illusion_1L,ppo,42,12.6,target_force,target_cl,-0.001588319311849773 +illusion_1L,ppo,43,12.9,target_force,target_cd,0.005649800878018141 +illusion_1L,ppo,43,12.9,target_force,target_cl,-0.001190069131553173 +illusion_1L,ppo,44,13.2,target_force,target_cd,0.005654963199049234 +illusion_1L,ppo,44,13.2,target_force,target_cl,-0.0007133737672120333 +illusion_1L,ppo,45,13.5,target_force,target_cd,0.005627200473099947 +illusion_1L,ppo,45,13.5,target_force,target_cl,-0.00018934083345811814 +illusion_1L,ppo,46,13.8,target_force,target_cd,0.005556740798056126 +illusion_1L,ppo,46,13.8,target_force,target_cl,0.00034783140290528536 +illusion_1L,ppo,47,14.1,target_force,target_cd,0.0055304341949522495 +illusion_1L,ppo,47,14.1,target_force,target_cl,0.0008631084347143769 +illusion_1L,ppo,48,14.4,target_force,target_cd,0.005559195764362812 +illusion_1L,ppo,48,14.4,target_force,target_cl,0.001322925672866404 +illusion_1L,ppo,49,14.7,target_force,target_cd,0.005579251330345869 +illusion_1L,ppo,49,14.7,target_force,target_cl,0.0016973913880065084 +illusion_1L,ppo,50,15.0,target_force,target_cd,0.005611106753349304 +illusion_1L,ppo,50,15.0,target_force,target_cl,0.001962239621207118 +illusion_1L,ppo,51,15.3,target_force,target_cd,0.005704183597117662 +illusion_1L,ppo,51,15.3,target_force,target_cl,0.002100402722135186 +illusion_1L,ppo,52,15.6,target_force,target_cd,0.005787536967545748 +illusion_1L,ppo,52,15.6,target_force,target_cl,0.0021031037904322147 +illusion_1L,ppo,53,15.9,target_force,target_cd,0.005777969490736723 +illusion_1L,ppo,53,15.9,target_force,target_cl,0.0019703952129930258 +illusion_1L,ppo,54,16.2,target_force,target_cd,0.005727802868932486 +illusion_1L,ppo,54,16.2,target_force,target_cl,0.001711116754449904 +illusion_1L,ppo,55,16.5,target_force,target_cd,0.005697423126548529 +illusion_1L,ppo,55,16.5,target_force,target_cl,0.0013422793708741665 +illusion_1L,ppo,56,16.8,target_force,target_cd,0.005641894415020943 +illusion_1L,ppo,56,16.8,target_force,target_cl,0.0008879187516868114 +illusion_1L,ppo,57,17.1,target_force,target_cd,0.00555590121075511 +illusion_1L,ppo,57,17.1,target_force,target_cl,0.0003775017103180289 +illusion_1L,ppo,58,17.4,target_force,target_cd,0.005530285649001598 +illusion_1L,ppo,58,17.4,target_force,target_cl,-0.00015600657206960022 +illusion_1L,ppo,59,17.7,target_force,target_cd,0.00557273905724287 +illusion_1L,ppo,59,17.7,target_force,target_cl,-0.0006782861310057342 +illusion_1L,ppo,60,18.0,target_force,target_cd,0.0055898819118738174 +illusion_1L,ppo,60,18.0,target_force,target_cl,-0.0011558743426576257 +illusion_1L,ppo,61,18.3,target_force,target_cd,0.005580991506576538 +illusion_1L,ppo,61,18.3,target_force,target_cl,-0.0015583039494231343 +illusion_1L,ppo,62,18.6,target_force,target_cd,0.005622274708002806 +illusion_1L,ppo,62,18.6,target_force,target_cl,-0.0018600309267640114 +illusion_1L,ppo,63,18.9,target_force,target_cd,0.005685918498784304 +illusion_1L,ppo,63,18.9,target_force,target_cl,-0.0020420316141098738 +illusion_1L,ppo,64,19.2,target_force,target_cd,0.005700573790818453 +illusion_1L,ppo,64,19.2,target_force,target_cl,-0.002092971932142973 +illusion_1L,ppo,65,19.5,target_force,target_cd,0.005708947312086821 +illusion_1L,ppo,65,19.5,target_force,target_cl,-0.0020098795648664236 +illusion_1L,ppo,66,19.8,target_force,target_cd,0.005758476443588734 +illusion_1L,ppo,66,19.8,target_force,target_cl,-0.001798283657990396 +illusion_1L,ppo,67,20.1,target_force,target_cd,0.005770137533545494 +illusion_1L,ppo,67,20.1,target_force,target_cl,-0.0014718190068379045 +illusion_1L,ppo,68,20.4,target_force,target_cd,0.005691960919648409 +illusion_1L,ppo,68,20.4,target_force,target_cl,-0.0010513253509998322 +illusion_1L,ppo,69,20.7,target_force,target_cd,0.005608741194009781 +illusion_1L,ppo,69,20.7,target_force,target_cl,-0.0005635032430291176 +illusion_1L,ppo,70,21.0,target_force,target_cd,0.005571840330958366 +illusion_1L,ppo,70,21.0,target_force,target_cl,-3.921425741282292e-05 +illusion_1L,ppo,71,21.3,target_force,target_cd,0.005528272595256567 +illusion_1L,ppo,71,21.3,target_force,target_cl,0.0004884665831923485 +illusion_1L,ppo,72,21.6,target_force,target_cd,0.00549035519361496 +illusion_1L,ppo,72,21.6,target_force,target_cl,0.0009863246232271194 +illusion_1L,ppo,73,21.9,target_force,target_cd,0.005540846381336451 +illusion_1L,ppo,73,21.9,target_force,target_cl,0.0014230776578187943 +illusion_1L,ppo,74,22.2,target_force,target_cd,0.0056466106325387955 +illusion_1L,ppo,74,22.2,target_force,target_cl,0.0017713193083181977 +illusion_1L,ppo,75,22.5,target_force,target_cd,0.005700563546270132 +illusion_1L,ppo,75,22.5,target_force,target_cl,0.0020092176273465157 +illusion_1L,ppo,76,22.8,target_force,target_cd,0.005713463295251131 +illusion_1L,ppo,76,22.8,target_force,target_cl,0.002121864352375269 +illusion_1L,ppo,77,23.1,target_force,target_cd,0.0057473802007734776 +illusion_1L,ppo,77,23.1,target_force,target_cl,0.002102196216583252 +illusion_1L,ppo,78,23.4,target_force,target_cd,0.0057578058913350105 +illusion_1L,ppo,78,23.4,target_force,target_cl,0.0019514315063133836 +illusion_1L,ppo,79,23.7,target_force,target_cd,0.0057006580755114555 +illusion_1L,ppo,79,23.7,target_force,target_cl,0.0016789969522505999 +illusion_1L,ppo,80,24.0,target_force,target_cd,0.005651192273944616 +illusion_1L,ppo,80,24.0,target_force,target_cl,0.0013019484467804432 +illusion_1L,ppo,81,24.3,target_force,target_cd,0.005653458181768656 +illusion_1L,ppo,81,24.3,target_force,target_cl,0.0008439195225946605 +illusion_1L,ppo,82,24.6,target_force,target_cd,0.005631353706121445 +illusion_1L,ppo,82,24.6,target_force,target_cl,0.0003336610388942063 +illusion_1L,ppo,83,24.9,target_force,target_cd,0.005562247708439827 +illusion_1L,ppo,83,24.9,target_force,target_cl,-0.0001967408461496234 +illusion_1L,ppo,84,25.2,target_force,target_cd,0.005531724542379379 +illusion_1L,ppo,84,25.2,target_force,target_cl,-0.0007138615474104881 +illusion_1L,ppo,85,25.5,target_force,target_cd,0.005556187126785517 +illusion_1L,ppo,85,25.5,target_force,target_cl,-0.0011850278824567795 +illusion_1L,ppo,86,25.8,target_force,target_cd,0.005570359993726015 +illusion_1L,ppo,86,25.8,target_force,target_cl,-0.0015803732676431537 +illusion_1L,ppo,87,26.1,target_force,target_cd,0.005592581816017628 +illusion_1L,ppo,87,26.1,target_force,target_cl,-0.0018747297581285238 +illusion_1L,ppo,88,26.4,target_force,target_cd,0.005681069567799568 +illusion_1L,ppo,88,26.4,target_force,target_cl,-0.002049239818006754 +illusion_1L,ppo,89,26.7,target_force,target_cd,0.005775141064077616 +illusion_1L,ppo,89,26.7,target_force,target_cl,-0.0020925814751535654 +illusion_1L,ppo,90,27.0,target_force,target_cd,0.00578527245670557 +illusion_1L,ppo,90,27.0,target_force,target_cl,-0.00200172932818532 +illusion_1L,ppo,91,27.3,target_force,target_cd,0.005747079849243164 +illusion_1L,ppo,91,27.3,target_force,target_cl,-0.0017821937799453735 +illusion_1L,ppo,92,27.6,target_force,target_cd,0.005717074498534203 +illusion_1L,ppo,92,27.6,target_force,target_cl,-0.0014477220829576254 +illusion_1L,ppo,93,27.9,target_force,target_cd,0.005658670794218779 +illusion_1L,ppo,93,27.9,target_force,target_cl,-0.0010194698115810752 +illusion_1L,ppo,94,28.2,target_force,target_cd,0.0055661387741565704 +illusion_1L,ppo,94,28.2,target_force,target_cl,-0.0005246902583166957 +illusion_1L,ppo,95,28.5,target_force,target_cd,0.005525742657482624 +illusion_1L,ppo,95,28.5,target_force,target_cl,4.978280685463687e-06 +illusion_1L,ppo,96,28.8,target_force,target_cd,0.00555749936029315 +illusion_1L,ppo,96,28.8,target_force,target_cl,0.0005355245084501803 +illusion_1L,ppo,97,29.1,target_force,target_cd,0.005581863224506378 +illusion_1L,ppo,97,29.1,target_force,target_cl,0.0010327466297894716 +illusion_1L,ppo,98,29.4,target_force,target_cd,0.0055847326293587685 +illusion_1L,ppo,98,29.4,target_force,target_cl,0.0014644662151113153 +illusion_1L,ppo,99,29.7,target_force,target_cd,0.00562334805727005 +illusion_1L,ppo,99,29.7,target_force,target_cl,0.0018026287434622645 +illusion_1L,ppo,100,30.0,target_force,target_cd,0.005679276306182146 +illusion_1L,ppo,100,30.0,target_force,target_cl,0.002025150926783681 +illusion_1L,ppo,101,30.3,target_force,target_cd,0.005694660358130932 +illusion_1L,ppo,101,30.3,target_force,target_cl,0.002117392374202609 +illusion_1L,ppo,102,30.6,target_force,target_cd,0.005700740963220596 +illusion_1L,ppo,102,30.6,target_force,target_cl,0.002073147101327777 +illusion_1L,ppo,103,30.9,target_force,target_cd,0.005741024389863014 +illusion_1L,ppo,103,30.9,target_force,target_cl,0.0018950875382870436 +illusion_1L,ppo,104,31.2,target_force,target_cd,0.005759721621870995 +illusion_1L,ppo,104,31.2,target_force,target_cl,0.0015946251805871725 +illusion_1L,ppo,105,31.5,target_force,target_cd,0.005707558244466782 +illusion_1L,ppo,105,31.5,target_force,target_cl,0.001191192539408803 +illusion_1L,ppo,106,31.8,target_force,target_cd,0.005637025460600853 +illusion_1L,ppo,106,31.8,target_force,target_cl,0.000710989988874644 +illusion_1L,ppo,107,32.1,target_force,target_cd,0.005591029301285744 +illusion_1L,ppo,107,32.1,target_force,target_cl,0.0001852790010161698 +illusion_1L,ppo,108,32.4,target_force,target_cd,0.005541773978620768 +illusion_1L,ppo,108,32.4,target_force,target_cl,-0.00035166615271009505 +illusion_1L,ppo,109,32.7,target_force,target_cd,0.005501006729900837 +illusion_1L,ppo,109,32.7,target_force,target_cl,-0.0008648128714412451 +illusion_1L,ppo,110,33.0,target_force,target_cd,0.0055308290757238865 +illusion_1L,ppo,110,33.0,target_force,target_cl,-0.001320678391493857 +illusion_1L,ppo,111,33.3,target_force,target_cd,0.0056166197173297405 +illusion_1L,ppo,111,33.3,target_force,target_cl,-0.0016895371954888105 +illusion_1L,ppo,112,33.6,target_force,target_cd,0.005681182723492384 +illusion_1L,ppo,112,33.6,target_force,target_cl,-0.001947377109900117 +illusion_1L,ppo,113,33.9,target_force,target_cd,0.005712814629077911 +illusion_1L,ppo,113,33.9,target_force,target_cl,-0.0020774747245013714 +illusion_1L,ppo,114,34.2,target_force,target_cd,0.00574244000017643 +illusion_1L,ppo,114,34.2,target_force,target_cl,-0.0020714811980724335 +illusion_1L,ppo,115,34.5,target_force,target_cd,0.005747651681303978 +illusion_1L,ppo,115,34.5,target_force,target_cl,-0.0019299488049000502 +illusion_1L,ppo,116,34.8,target_force,target_cd,0.005704951472580433 +illusion_1L,ppo,116,34.8,target_force,target_cl,-0.0016622639959678054 +illusion_1L,ppo,117,35.1,target_force,target_cd,0.0056606014259159565 +illusion_1L,ppo,117,35.1,target_force,target_cl,-0.0012859947746619582 +illusion_1L,ppo,118,35.4,target_force,target_cd,0.005649200640618801 +illusion_1L,ppo,118,35.4,target_force,target_cl,-0.0008256994769908488 +illusion_1L,ppo,119,35.7,target_force,target_cd,0.0056335716508328915 +illusion_1L,ppo,119,35.7,target_force,target_cl,-0.00031128202681429684 +illusion_1L,ppo,120,36.0,target_force,target_cd,0.005592386703938246 +illusion_1L,ppo,120,36.0,target_force,target_cl,0.00022399245062842965 +illusion_1L,ppo,121,36.3,target_force,target_cd,0.005563297774642706 +illusion_1L,ppo,121,36.3,target_force,target_cl,0.0007456860621459782 +illusion_1L,ppo,122,36.6,target_force,target_cd,0.005562216509133577 +illusion_1L,ppo,122,36.6,target_force,target_cl,0.001220431295223534 +illusion_1L,ppo,123,36.9,target_force,target_cd,0.005566451232880354 +illusion_1L,ppo,123,36.9,target_force,target_cl,0.0016180797247216105 +illusion_1L,ppo,124,37.2,target_force,target_cd,0.005585979204624891 +illusion_1L,ppo,124,37.2,target_force,target_cl,0.001913615269586444 +illusion_1L,ppo,125,37.5,target_force,target_cd,0.005648293998092413 +illusion_1L,ppo,125,37.5,target_force,target_cl,0.002088709967210889 +illusion_1L,ppo,126,37.8,target_force,target_cd,0.005725353490561247 +illusion_1L,ppo,126,37.8,target_force,target_cl,0.002132824854925275 +illusion_1L,ppo,127,38.1,target_force,target_cd,0.005764068104326725 +illusion_1L,ppo,127,38.1,target_force,target_cl,0.0020437927450984716 +illusion_1L,ppo,128,38.4,target_force,target_cd,0.005758943501859903 +illusion_1L,ppo,128,38.4,target_force,target_cl,0.001827857457101345 +illusion_1L,ppo,129,38.7,target_force,target_cd,0.00572886411100626 +illusion_1L,ppo,129,38.7,target_force,target_cl,0.001499173347838223 +illusion_1L,ppo,130,39.0,target_force,target_cd,0.0056730094365775585 +illusion_1L,ppo,130,39.0,target_force,target_cl,0.0010788131039589643 +illusion_1L,ppo,131,39.3,target_force,target_cd,0.005602148827165365 +illusion_1L,ppo,131,39.3,target_force,target_cl,0.0005933574866503477 +illusion_1L,ppo,132,39.6,target_force,target_cd,0.005556676536798477 +illusion_1L,ppo,132,39.6,target_force,target_cl,7.316457777051255e-05 +illusion_1L,ppo,133,39.9,target_force,target_cd,0.005555317271500826 +illusion_1L,ppo,133,39.9,target_force,target_cl,-0.0004495618923101574 +illusion_1L,ppo,134,40.2,target_force,target_cd,0.005575116723775864 +illusion_1L,ppo,134,40.2,target_force,target_cl,-0.0009427812765352428 +illusion_1L,ppo,135,40.5,target_force,target_cd,0.005596548318862915 +illusion_1L,ppo,135,40.5,target_force,target_cl,-0.0013765741605311632 +illusion_1L,ppo,136,40.8,target_force,target_cd,0.005621614865958691 +illusion_1L,ppo,136,40.8,target_force,target_cl,-0.0017249316442757845 +illusion_1L,ppo,137,41.1,target_force,target_cd,0.0056482418440282345 +illusion_1L,ppo,137,41.1,target_force,target_cl,-0.001967271091416478 +illusion_1L,ppo,138,41.4,target_force,target_cd,0.005668891128152609 +illusion_1L,ppo,138,41.4,target_force,target_cl,-0.0020895947236567736 +illusion_1L,ppo,139,41.7,target_force,target_cd,0.005688424222171307 +illusion_1L,ppo,139,41.7,target_force,target_cl,-0.0020852312445640564 +illusion_1L,ppo,140,42.0,target_force,target_cd,0.005713468883186579 +illusion_1L,ppo,140,42.0,target_force,target_cl,-0.001955129439011216 +illusion_1L,ppo,141,42.3,target_force,target_cd,0.0057329959236085415 +illusion_1L,ppo,141,42.3,target_force,target_cl,-0.001707698218524456 +illusion_1L,ppo,142,42.6,target_force,target_cd,0.005727000534534454 +illusion_1L,ppo,142,42.6,target_force,target_cl,-0.00135821383446455 +illusion_1L,ppo,143,42.9,target_force,target_cd,0.005687557626515627 +illusion_1L,ppo,143,42.9,target_force,target_cl,-0.0009278415236622095 +illusion_1L,ppo,144,43.2,target_force,target_cd,0.005626541096717119 +illusion_1L,ppo,144,43.2,target_force,target_cl,-0.00044233500375412405 +illusion_1L,ppo,145,43.5,target_force,target_cd,0.005567984189838171 +illusion_1L,ppo,145,43.5,target_force,target_cl,6.950402894290164e-05 +illusion_1L,ppo,146,43.8,target_force,target_cd,0.005532989744096994 +illusion_1L,ppo,146,43.8,target_force,target_cl,0.0005775165045633912 +illusion_1L,ppo,147,44.1,target_force,target_cd,0.00553248543292284 +illusion_1L,ppo,147,44.1,target_force,target_cl,0.0010519297793507576 +illusion_1L,ppo,148,44.4,target_force,target_cd,0.005570263601839542 +illusion_1L,ppo,148,44.4,target_force,target_cl,0.0014650586526840925 +illusion_1L,ppo,149,44.7,target_force,target_cd,0.005635685753077269 +illusion_1L,ppo,149,44.7,target_force,target_cl,0.0017928724410012364 +illusion_1L,ppo,150,45.0,target_force,target_cd,0.005695981904864311 +illusion_1L,ppo,150,45.0,target_force,target_cl,0.002016345737501979 +illusion_1L,ppo,151,45.3,target_force,target_cd,0.0057229530066251755 +illusion_1L,ppo,151,45.3,target_force,target_cl,0.0021225211676210165 +illusion_1L,ppo,152,45.6,target_force,target_cd,0.005722800735384226 +illusion_1L,ppo,152,45.6,target_force,target_cl,0.0021052337251603603 +illusion_1L,ppo,153,45.9,target_force,target_cd,0.005713127087801695 +illusion_1L,ppo,153,45.9,target_force,target_cl,0.001965455012395978 +illusion_1L,ppo,154,46.2,target_force,target_cd,0.005692195612937212 +illusion_1L,ppo,154,46.2,target_force,target_cl,0.0017112427158281207 +illusion_1L,ppo,155,46.5,target_force,target_cd,0.0056618573144078255 +illusion_1L,ppo,155,46.5,target_force,target_cl,0.001357297645881772 +illusion_1L,ppo,156,46.8,target_force,target_cd,0.005642481613904238 +illusion_1L,ppo,156,46.8,target_force,target_cl,0.0009241479565389454 +illusion_1L,ppo,157,47.1,target_force,target_cd,0.005632458254694939 +illusion_1L,ppo,157,47.1,target_force,target_cl,0.00043700356036424637 +illusion_1L,ppo,158,47.4,target_force,target_cd,0.005603872239589691 +illusion_1L,ppo,158,47.4,target_force,target_cl,-7.566207932541147e-05 +illusion_1L,ppo,159,47.7,target_force,target_cd,0.005562879145145416 +illusion_1L,ppo,159,47.7,target_force,target_cl,-0.0005837283679284155 +illusion_1L,ppo,160,48.0,target_force,target_cd,0.00555048044770956 +illusion_1L,ppo,160,48.0,target_force,target_cl,-0.001057157409377396 +illusion_1L,ppo,161,48.3,target_force,target_cd,0.005573469679802656 +illusion_1L,ppo,161,48.3,target_force,target_cl,-0.0014677423750981688 +illusion_1L,ppo,162,48.6,target_force,target_cd,0.0056081246584653854 +illusion_1L,ppo,162,48.6,target_force,target_cl,-0.0017907777801156044 +illusion_1L,ppo,163,48.9,target_force,target_cd,0.005659202579408884 +illusion_1L,ppo,163,48.9,target_force,target_cl,-0.002006553579121828 +illusion_1L,ppo,164,49.2,target_force,target_cd,0.005730922799557447 +illusion_1L,ppo,164,49.2,target_force,target_cl,-0.002101584803313017 +illusion_1L,ppo,165,49.5,target_force,target_cd,0.005774288903921843 +illusion_1L,ppo,165,49.5,target_force,target_cl,-0.0020694960840046406 +illusion_1L,ppo,166,49.8,target_force,target_cd,0.005751272197812796 +illusion_1L,ppo,166,49.8,target_force,target_cl,-0.001911501633003354 +illusion_1L,ppo,167,50.1,target_force,target_cd,0.0056986394338309765 +illusion_1L,ppo,167,50.1,target_force,target_cl,-0.0016364414477720857 +illusion_1L,ppo,168,50.4,target_force,target_cd,0.005654868204146624 +illusion_1L,ppo,168,50.4,target_force,target_cl,-0.001260355580598116 +illusion_1L,ppo,169,50.7,target_force,target_cd,0.005605330225080252 +illusion_1L,ppo,169,50.7,target_force,target_cl,-0.0008056137594394386 +illusion_1L,ppo,170,51.0,target_force,target_cd,0.0055566998198628426 +illusion_1L,ppo,170,51.0,target_force,target_cl,-0.000299636711133644 +illusion_1L,ppo,171,51.3,target_force,target_cd,0.005555659998208284 +illusion_1L,ppo,171,51.3,target_force,target_cl,0.0002267197414766997 +illusion_1L,ppo,172,51.6,target_force,target_cd,0.005592211149632931 +illusion_1L,ppo,172,51.6,target_force,target_cl,0.0007410288671962917 +illusion_1L,ppo,173,51.9,target_force,target_cd,0.005606893915683031 +illusion_1L,ppo,173,51.9,target_force,target_cl,0.0012112932745367289 +illusion_1L,ppo,174,52.2,target_force,target_cd,0.005605695769190788 +illusion_1L,ppo,174,52.2,target_force,target_cl,0.0016079578781500459 +illusion_1L,ppo,175,52.5,target_force,target_cd,0.005637506954371929 +illusion_1L,ppo,175,52.5,target_force,target_cl,0.0019058084581047297 +illusion_1L,ppo,176,52.8,target_force,target_cd,0.0056829797104001045 +illusion_1L,ppo,176,52.8,target_force,target_cl,0.0020856272894889116 +illusion_1L,ppo,177,53.1,target_force,target_cd,0.00569962989538908 +illusion_1L,ppo,177,53.1,target_force,target_cl,0.0021354956552386284 +illusion_1L,ppo,178,53.4,target_force,target_cd,0.005715371575206518 +illusion_1L,ppo,178,53.4,target_force,target_cl,0.002051648451015353 +illusion_1L,ppo,179,53.7,target_force,target_cd,0.005750197917222977 +illusion_1L,ppo,179,53.7,target_force,target_cl,0.0018388143507763743 +illusion_1L,ppo,180,54.0,target_force,target_cd,0.005742636509239674 +illusion_1L,ppo,180,54.0,target_force,target_cl,0.001510008005425334 +illusion_1L,ppo,181,54.3,target_force,target_cd,0.005665794480592012 +illusion_1L,ppo,181,54.3,target_force,target_cl,0.0010857797460630536 +illusion_1L,ppo,182,54.6,target_force,target_cd,0.00559135852381587 +illusion_1L,ppo,182,54.6,target_force,target_cl,0.0005929587059654295 +illusion_1L,ppo,183,54.9,target_force,target_cd,0.005558366887271404 +illusion_1L,ppo,183,54.9,target_force,target_cl,6.296794163063169e-05 +illusion_1L,ppo,184,55.2,target_force,target_cd,0.005529783200472593 +illusion_1L,ppo,184,55.2,target_force,target_cl,-0.0004701845464296639 +illusion_1L,ppo,185,55.5,target_force,target_cd,0.0055184559896588326 +illusion_1L,ppo,185,55.5,target_force,target_cl,-0.0009721080423332751 +illusion_1L,ppo,186,55.8,target_force,target_cd,0.005579106509685516 +illusion_1L,ppo,186,55.8,target_force,target_cl,-0.0014102784916758537 +illusion_1L,ppo,187,56.1,target_force,target_cd,0.005670757964253426 +illusion_1L,ppo,187,56.1,target_force,target_cl,-0.001756184850819409 +illusion_1L,ppo,188,56.4,target_force,target_cd,0.005707974545657635 +illusion_1L,ppo,188,56.4,target_force,target_cl,-0.0019872256089001894 +illusion_1L,ppo,189,56.7,target_force,target_cd,0.005710371769964695 +illusion_1L,ppo,189,56.7,target_force,target_cl,-0.002088225446641445 +illusion_1L,ppo,190,57.0,target_force,target_cd,0.005732146557420492 +illusion_1L,ppo,190,57.0,target_force,target_cl,-0.0020524656865745783 +illusion_1L,ppo,191,57.3,target_force,target_cd,0.005734624341130257 +illusion_1L,ppo,191,57.3,target_force,target_cl,-0.0018821575213223696 +illusion_1L,ppo,192,57.6,target_force,target_cd,0.005685302894562483 +illusion_1L,ppo,192,57.6,target_force,target_cl,-0.001588319311849773 +illusion_1L,ppo,193,57.9,target_force,target_cd,0.005649800878018141 +illusion_1L,ppo,193,57.9,target_force,target_cl,-0.001190069131553173 +illusion_1L,ppo,194,58.2,target_force,target_cd,0.005654963199049234 +illusion_1L,ppo,194,58.2,target_force,target_cl,-0.0007133737672120333 +illusion_1L,ppo,195,58.5,target_force,target_cd,0.005627200473099947 +illusion_1L,ppo,195,58.5,target_force,target_cl,-0.00018934083345811814 +illusion_1L,ppo,196,58.8,target_force,target_cd,0.005556740798056126 +illusion_1L,ppo,196,58.8,target_force,target_cl,0.00034783140290528536 +illusion_1L,ppo,197,59.1,target_force,target_cd,0.0055304341949522495 +illusion_1L,ppo,197,59.1,target_force,target_cl,0.0008631084347143769 +illusion_1L,ppo,198,59.4,target_force,target_cd,0.005559195764362812 +illusion_1L,ppo,198,59.4,target_force,target_cl,0.001322925672866404 +illusion_1L,ppo,199,59.7,target_force,target_cd,0.005579251330345869 +illusion_1L,ppo,199,59.7,target_force,target_cl,0.0016973913880065084 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_manifest.json new file mode 100644 index 0000000..40688ee --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_manifest.json @@ -0,0 +1,15 @@ +{ + "scene": "illusion_1L", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-illusion-20260718/illusion/illusion_1L/controlled.npz", + "sample_interval": 600, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_forces": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_wide.csv new file mode 100644 index 0000000..6e784cb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl +illusion_1L,ppo,0,0.0,1.0009665489196777,-0.2763201594352722,0.9006004929542542,-0.5161612629890442,0.9340792894363403,-0.3597192168235779,0.0018454736564308405,-9.435548236069735e-06,0.0013415194116532803,0.003225150052458048,0.001405408140271902,-0.002531777834519744,0.566200315952301,-1.231102705001831,-0.8248105049133301,0.005662003066390753,-0.012311026453971863,-0.008248104713857174,0.005695982,0.0020163457 +illusion_1L,ppo,1,0.3,1.0479708909988403,-0.29965195059776306,0.926100492477417,-0.5294434428215027,0.8795818090438843,-0.3301173448562622,0.001884474535472691,-0.00017600566206965595,0.001343563199043274,0.0032824508380144835,0.0018301476957276464,-0.001917719841003418,0.7322111129760742,-1.334794282913208,-0.5755894184112549,0.007322111167013645,-0.013347942382097244,-0.005755893886089325,0.005722953,0.0021225212 +illusion_1L,ppo,2,0.6,1.09857976436615,-0.31825485825538635,0.9419899582862854,-0.5475180745124817,0.8342626690864563,-0.2858925759792328,0.001933213323354721,-0.0003436895494814962,0.0013251641066744924,0.0034132206346839666,0.002098523546010256,-0.0015700658550485969,0.9145792126655579,-1.4501674175262451,0.20625388622283936,0.00914579164236784,-0.014501674100756645,0.0020625388715416193,0.0057228007,0.0021052337 +illusion_1L,ppo,3,0.9,1.1531596183776855,-0.33176541328430176,0.9440651535987854,-0.5529239773750305,0.78998202085495,-0.22718454897403717,0.0020271451212465763,-0.0005147154442965984,0.0012369629694148898,0.0035877723712474108,0.002079133875668049,-0.0014554713852703571,1.0165796279907227,-1.4483609199523926,0.7956888675689697,0.010165795683860779,-0.014483609236776829,0.007956888526678085,0.005713127,0.001965455 +illusion_1L,ppo,4,1.2,1.2136932611465454,-0.33856073021888733,0.9256439208984375,-0.5134324431419373,0.7526987791061401,-0.15174245834350586,0.0021572215482592583,-0.0006328072631731629,0.001095050247386098,0.0037359409034252167,0.001962492475286126,-0.0015426364261657,1.0144485235214233,-1.2672500610351562,1.1852527856826782,0.010144485160708427,-0.012672500684857368,0.011852527968585491,0.0056921956,0.0017112427 +illusion_1L,ppo,5,1.5,1.2799627780914307,-0.33403611183166504,0.8838610649108887,-0.3949494957923889,0.7353151440620422,-0.06760326027870178,0.0022872567642480135,-0.0006885279435664415,0.0009318230440840125,0.0037782927975058556,0.001893856911920011,-0.0017652736278250813,0.9565014839172363,-1.0150333642959595,1.3979549407958984,0.009565014392137527,-0.010150333866477013,0.013979549519717693,0.0056618573,0.0013572976 +illusion_1L,ppo,6,1.8,1.3467202186584473,-0.3060868978500366,0.8261712789535522,-0.18468743562698364,0.7470736503601074,0.011342000216245651,0.002377364318817854,-0.0006979369791224599,0.0007838156307116151,0.0036853845231235027,0.0018933783285319805,-0.002042637439444661,0.8439123034477234,-0.7624201774597168,1.4802873134613037,0.008439122699201107,-0.007624201476573944,0.014802873134613037,0.0056424816,0.00092414796 +illusion_1L,ppo,7,2.1,1.388343095779419,-0.228891983628273,0.7735701203346252,0.08430007845163345,0.7829515337944031,0.07485134154558182,0.0023826188407838345,-0.0006665082182735205,0.0006957584409974515,0.0034783894661813974,0.0019409211818128824,-0.002328259404748678,0.6637389659881592,-0.5080299377441406,1.4794838428497314,0.0066373893059790134,-0.005080299451947212,0.014794837683439255,0.0056324583,0.00043700356 +illusion_1L,ppo,8,2.4,1.3636932373046875,-0.07452793419361115,0.7513853907585144,0.3416922688484192,0.828917384147644,0.12904205918312073,0.002307743765413761,-0.0006240039365366101,0.0007134422194212675,0.0031887420918792486,0.0020111140329390764,-0.002626512199640274,0.4598759114742279,-0.2919694185256958,1.3993465900421143,0.004598759114742279,-0.0029196941759437323,0.013993465341627598,0.0056038722,-7.566208e-05 +illusion_1L,ppo,9,2.7,1.2526260614395142,0.12914599478244781,0.7722982168197632,0.4933345913887024,0.8732394576072693,0.17830048501491547,0.002169084269553423,-0.0005957789835520089,0.0008226250065490603,0.002857618033885956,0.0020677170250564814,-0.00290868547745049,0.28491419553756714,-0.22416341304779053,1.2204726934432983,0.0028491418343037367,-0.002241634065285325,0.012204726226627827,0.005562879,-0.00058372837 +illusion_1L,ppo,10,3.0,1.107679009437561,0.2917996644973755,0.8231104016304016,0.5222650766372681,0.9163982272148132,0.22027534246444702,0.0020178125705569983,-0.0005917053204029799,0.0009482958121225238,0.002544574672356248,0.002093838294968009,-0.0031392916571348906,0.19582365453243256,-0.37619590759277344,0.9790956974029541,0.001958236563950777,-0.0037619590293616056,0.009790956974029541,0.0055504804,-0.0010571574 +illusion_1L,ppo,11,3.3,0.9937350749969482,0.3602091372013092,0.8736693263053894,0.5150195360183716,0.9624322652816772,0.2546125650405884,0.0019071499118581414,-0.0006146127707324922,0.001030603307299316,0.0022892493288964033,0.0021056251134723425,-0.0032957792282104492,0.16859157383441925,-0.636157751083374,0.7611830234527588,0.0016859157476574183,-0.006361577194184065,0.007611830253154039,0.0055734697,-0.0014677424 +illusion_1L,ppo,12,3.6,0.9222528338432312,0.35746562480926514,0.9103153347969055,0.519726037979126,1.010039210319519,0.2820090055465698,0.001845426158979535,-0.0006407295004464686,0.001068508019670844,0.002101258374750614,0.0021039023995399475,-0.003369586542248726,0.11460626870393753,-0.8256304264068604,0.6437320709228516,0.001146062626503408,-0.008256304077804089,0.006437320727854967,0.0056081247,-0.0017907778 +illusion_1L,ppo,13,3.9,0.8743260502815247,0.3263583183288574,0.9377684593200684,0.5368818640708923,1.061715841293335,0.304252028465271,0.0018184134969487786,-0.0006366751040332019,0.0011014657793566585,0.0019751086365431547,0.0020919947419315577,-0.003383140079677105,0.02620646357536316,-0.9028537273406982,0.6256673336029053,0.00026206462644040585,-0.009028537198901176,0.006256673019379377,0.0056592026,-0.0020065536 +illusion_1L,ppo,14,4.2,0.8277637958526611,0.2814238369464874,0.9518494606018066,0.5546439290046692,1.1125423908233643,0.32017889618873596,0.0018035449320450425,-0.000593087577726692,0.001136568607762456,0.0018870738567784429,0.0020472684409469366,-0.003342719515785575,-0.06454113125801086,-0.914879560470581,0.649329423904419,-0.0006454113172367215,-0.009148795157670975,0.006493294145911932,0.005730923,-0.0021015848 +illusion_1L,ppo,15,4.5,0.7828918695449829,0.22132736444473267,0.9531441330909729,0.5564010143280029,1.1701016426086426,0.33097565174102783,0.0018049635691568255,-0.000516963133122772,0.0011873772600665689,0.001838863710872829,0.0019834258127957582,-0.0032678903080523014,-0.14207804203033447,-0.9118171334266663,0.6759622097015381,-0.0014207804342731833,-0.009118171408772469,0.006759622134268284,0.005774289,-0.002069496 +illusion_1L,ppo,16,4.8,0.7458259463310242,0.14404836297035217,0.9325342774391174,0.5057598352432251,1.2341158390045166,0.3337334096431732,0.0018172512063756585,-0.00041530991438776255,0.0012614433653652668,0.001831848407164216,0.0019078501500189304,-0.003160567954182625,-0.21607762575149536,-0.9000123739242554,0.6878583431243896,-0.002160776173695922,-0.009000123478472233,0.00687858322635293,0.005751272,-0.0019115016 +illusion_1L,ppo,17,5.1,0.7295364141464233,0.0586673803627491,0.8881731033325195,0.3680028021335602,1.304292917251587,0.322342187166214,0.0018335765926167369,-0.00029957390506751835,0.0013538528000935912,0.001863884273916483,0.0018277432536706328,-0.003039513947442174,-0.26620739698410034,-0.9126079678535461,0.6890585422515869,-0.0026620738208293915,-0.009126079268753529,0.006890585180372,0.0056986394,-0.0016364414 +illusion_1L,ppo,18,5.4,0.7427943348884583,-0.0187886580824852,0.8323066234588623,0.1385243684053421,1.3725461959838867,0.281924307346344,0.0018449360504746437,-0.00018544845806900412,0.0014519989490509033,0.0019458321621641517,0.0017480766400694847,-0.0029136603698134422,-0.26876527070999146,-0.969505786895752,0.6507892608642578,-0.0026876525953412056,-0.00969505775719881,0.00650789262726903,0.005654868,-0.0012603556 +illusion_1L,ppo,19,5.7,0.7793281078338623,-0.07944844663143158,0.7892112135887146,-0.13940420746803284,1.4086941480636597,0.1845666915178299,0.0018557164585217834,-8.951545896707103e-05,0.00155647995416075,0.0020905653946101665,0.001695045386441052,-0.0027785147540271282,-0.2070186734199524,-1.0500409603118896,0.5502111911773682,-0.002070186659693718,-0.0105004096403718,0.005502111744135618,0.00560533,-0.00080561376 +illusion_1L,ppo,20,6.0,0.8230425715446472,-0.12881754338741302,0.782753586769104,-0.3774670958518982,1.3671486377716064,0.014370438642799854,0.0018519884906709194,-2.7688649424817413e-05,0.0016564278630539775,0.002304136287420988,0.0016776581760495901,-0.0026211037766188383,-0.07053878903388977,-1.1432905197143555,0.4093756377696991,-0.0007053878507576883,-0.011432904750108719,0.0040937564335763454,0.0055567,-0.0002996367 +illusion_1L,ppo,21,6.3,0.8655215501785278,-0.1719098687171936,0.8201076984405518,-0.48792892694473267,1.2478431463241577,-0.17602704465389252,0.001826219609938562,-1.707376941340044e-05,0.001734197954647243,0.002586165675893426,0.0016866769874468446,-0.0024434837978333235,0.1387898176908493,-1.2448821067810059,0.27997124195098877,0.0013878981117159128,-0.01244882121682167,0.0027997123543173075,0.00555566,0.00022671974 +illusion_1L,ppo,22,6.6,0.9063493013381958,-0.2071126401424408,0.879219651222229,-0.4862775206565857,1.1137290000915527,-0.2983038127422333,0.0017917450750246644,-5.5317606893368065e-05,0.0017821453511714935,0.002929013455286622,0.0017136804526671767,-0.0022485533263534307,0.36053991317749023,-1.309443473815918,0.21572744846343994,0.0036053990479558706,-0.013094434514641762,0.0021572744008153677,0.005592211,0.00074102887 +illusion_1L,ppo,23,6.9,0.944991946220398,-0.23376622796058655,0.9316920042037964,-0.4630160629749298,1.0157439708709717,-0.33017775416374207,0.001768247107975185,-0.00012793361383955926,0.0017974255606532097,0.003292539855465293,0.0017458298243582249,-0.0020559444092214108,0.5330544710159302,-1.2949142456054688,0.25904226303100586,0.005330544430762529,-0.0129491426050663,0.0025904225185513496,0.005606894,0.0012112933 +illusion_1L,ppo,24,7.2,0.980758547782898,-0.253957062959671,0.9732686281204224,-0.44888976216316223,0.9523665308952332,-0.3120083510875702,0.0017903365660458803,-0.00020543308346532285,0.0017730722902342677,0.0036333203315734863,0.001759603968821466,-0.0018798840465024114,0.6487786769866943,-1.2239305973052979,0.3883059024810791,0.006487786769866943,-0.012239305302500725,0.0038830589037388563,0.005605696,0.0016079579 +illusion_1L,ppo,25,7.5,1.0134023427963257,-0.2697131931781769,1.0078681707382202,-0.43887805938720703,0.9029467701911926,-0.2757386863231659,0.0018523454200476408,-0.0002783026429824531,0.001699216547422111,0.0038979598321020603,0.0017375650350004435,-0.0017270088428631425,0.7303120493888855,-1.1115903854370117,0.5700929164886475,0.007303120102733374,-0.011115903966128826,0.005700929090380669,0.005637507,0.0019058085 +illusion_1L,ppo,26,7.8,1.0445271730422974,-0.28327497839927673,1.038203239440918,-0.4295908510684967,0.8587290644645691,-0.22859932482242584,0.001963085727766156,-0.00034323291038163006,0.0016144283581525087,0.004068863578140736,0.0017184106400236487,-0.001601930009201169,0.7959497570991516,-0.9878544211387634,0.762554407119751,0.007959497161209583,-0.009878544136881828,0.007625543978065252,0.0056829797,0.0020856273 +illusion_1L,ppo,27,8.1,1.0697468519210815,-0.2951260209083557,1.0584198236465454,-0.4156695604324341,0.8172975778579712,-0.16847920417785645,0.002086235210299492,-0.00041403211071155965,0.0015209136763587594,0.004111613612622023,0.0017069336026906967,-0.001525058294646442,0.8525607585906982,-0.8951082229614258,0.9716395735740662,0.00852560717612505,-0.008951081894338131,0.009716395288705826,0.00569963,0.0021354957 +illusion_1L,ppo,28,8.4,1.0947368144989014,-0.30825021862983704,1.0703669786453247,-0.39545536041259766,0.7916041612625122,-0.10187157988548279,0.0022091560531407595,-0.0004863457288593054,0.0014274126151576638,0.0040715597569942474,0.0017364287050440907,-0.0015307152643799782,0.8879126906394958,-0.873159646987915,1.1655378341674805,0.008879126980900764,-0.008731596171855927,0.01165537815541029,0.0057153716,0.0020516485 +illusion_1L,ppo,29,8.7,1.1183300018310547,-0.32375872135162354,1.0663337707519531,-0.3628951609134674,0.7877321839332581,-0.039786238223314285,0.002316000172868371,-0.000553435122128576,0.001322670141234994,0.003973422572016716,0.0018114529084414244,-0.0016326630720868707,0.8882545828819275,-0.8783764243125916,1.3269178867340088,0.008882545866072178,-0.008783764205873013,0.013269178569316864,0.005750198,0.0018388144 +illusion_1L,ppo,30,9.0,1.141653299331665,-0.343321830034256,1.0381749868392944,-0.31072765588760376,0.8054836392402649,0.007759777829051018,0.002380293793976307,-0.000600813131313771,0.0012129490496590734,0.003837519558146596,0.0019484811928123236,-0.0018434650264680386,0.8385000824928284,-0.8676967620849609,1.4323474168777466,0.008385000750422478,-0.008676967583596706,0.014323473908007145,0.0057426365,0.001510008 +illusion_1L,ppo,31,9.3,1.1661075353622437,-0.3678799271583557,0.977557897567749,-0.23027867078781128,0.8338626027107239,0.04135488346219063,0.0023916529025882483,-0.0006162354256957769,0.001104461494833231,0.0036804990377277136,0.002123698126524687,-0.002155720256268978,0.7399653792381287,-0.831091582775116,1.4584940671920776,0.007399653550237417,-0.008310915902256966,0.014584939926862717,0.0056657945,0.0010857797 +illusion_1L,ppo,32,9.6,1.1923686265945435,-0.39527949690818787,0.882355272769928,-0.11583639681339264,0.8600314259529114,0.07030127197504044,0.0023377789184451103,-0.0006137180025689304,0.0010056064929813147,0.003514906857162714,0.002300925087183714,-0.002556455321609974,0.6077125668525696,-0.7817840576171875,1.4113465547561646,0.006077125668525696,-0.007817840203642845,0.014113465324044228,0.0055913585,0.0005929587 +illusion_1L,ppo,33,9.9,1.21556556224823,-0.41415172815322876,0.7671924829483032,0.025105221197009087,0.8791168332099915,0.10160215198993683,0.0022337823174893856,-0.0006025120965205133,0.0009222921798937023,0.003346008015796542,0.0024410043843090534,-0.003005754668265581,0.44438034296035767,-0.7378225326538086,1.2962141036987305,0.004443803336471319,-0.007378225214779377,0.012962141074240208,0.005558367,6.296794e-05 +illusion_1L,ppo,34,10.2,1.2199163436889648,-0.39768263697624207,0.6636844277381897,0.17227977514266968,0.8946051001548767,0.13772672414779663,0.0021034234669059515,-0.0005872753099538386,0.0008718555909581482,0.003159776795655489,0.0025460293982177973,-0.0034645171836018562,0.2616695463657379,-0.7014594078063965,1.1240205764770508,0.002616695361211896,-0.007014594040811062,0.011240205727517605,0.005529783,-0.00047018455 +illusion_1L,ppo,35,10.5,1.1824809312820435,-0.3164689242839813,0.618683397769928,0.28057825565338135,0.909851610660553,0.17461685836315155,0.001994610298424959,-0.0005800995277240872,0.0008630042430013418,0.0029493658803403378,0.0026066359132528305,-0.0038213650695979595,0.09036552906036377,-0.7103433609008789,0.8935815691947937,0.0009036552510224283,-0.00710343336686492,0.008935815654695034,0.005518456,-0.00097210804 +illusion_1L,ppo,36,10.8,1.0853004455566406,-0.14801393449306488,0.6368246674537659,0.3421396017074585,0.9279481172561646,0.21344570815563202,0.001913280924782157,-0.0005781326326541603,0.0008844537660479546,0.0027114020194858313,0.0026368736289441586,-0.0040388344787061214,-0.0092087984085083,-0.7949641346931458,0.6762027740478516,-9.208798292092979e-05,-0.007949640974402428,0.006762027740478516,0.0055791065,-0.0014102785 +illusion_1L,ppo,37,11.1,0.9391827583312988,0.0914253368973732,0.6829020380973816,0.3789761960506439,0.9493319988250732,0.2531600594520569,0.0018723374232649803,-0.0005778579507023096,0.0009313951013609767,0.0024706728290766478,0.0026627248153090477,-0.004060584120452404,-0.016794174909591675,-0.9728354811668396,0.4771328270435333,-0.00016794174734968692,-0.009728354401886463,0.004771328065544367,0.005670758,-0.0017561849 +illusion_1L,ppo,38,11.4,0.785677969455719,0.34331944584846497,0.7209610342979431,0.4219953715801239,0.9746410846710205,0.2939956784248352,0.0018679396016523242,-0.000583373592235148,0.00101374217774719,0.0022707886528223753,0.002704908838495612,-0.003904519136995077,0.043836116790771484,-1.2040876150131226,0.3823392391204834,0.0004383611667435616,-0.012040875852108002,0.0038233923260122538,0.0057079745,-0.0019872256 +illusion_1L,ppo,39,11.7,0.6775466203689575,0.5246211290359497,0.745303750038147,0.4744791090488434,1.0042837858200073,0.33580729365348816,0.001871571526862681,-0.0005883821286261082,0.0011333974543958902,0.0021663953084498644,0.0027323910035192966,-0.0036602099426090717,0.11292259395122528,-1.423924446105957,0.44191786646842957,0.0011292259441688657,-0.014239244163036346,0.004419178701937199,0.005710372,-0.0020882254 +illusion_1L,ppo,40,12.0,0.6439592242240906,0.5831810832023621,0.760821521282196,0.530243456363678,1.0397337675094604,0.37943464517593384,0.0018640379421412945,-0.0005811653099954128,0.00129361217841506,0.0022019168827682734,0.0027040995191782713,-0.003449835814535618,0.1456843614578247,-1.5543450117111206,0.6088975667953491,0.0014568435726687312,-0.01554344967007637,0.006088975351303816,0.0057321466,-0.0020524657 +illusion_1L,ppo,41,12.3,0.6593683362007141,0.5482664704322815,0.7657274603843689,0.5861049890518188,1.0805180072784424,0.42434796690940857,0.0018506643828004599,-0.0005525602609850466,0.0014739639591425657,0.002369635971263051,0.0026001990772783756,-0.003349453676491976,0.10647997260093689,-1.5385940074920654,0.7743865251541138,0.001064799726009369,-0.015385939739644527,0.007743865251541138,0.0057346243,-0.0018821575 +illusion_1L,ppo,42,12.6,0.6739548444747925,0.4919058680534363,0.759238600730896,0.6428302526473999,1.1333705186843872,0.472793847322464,0.0018345930147916079,-0.0004891622811555862,0.0016441370826214552,0.0026535200886428356,0.0024493818636983633,-0.0033721602521836758,-0.005176961421966553,-1.3978393077850342,0.8414602279663086,-5.1769613492069766e-05,-0.013978392817080021,0.008414601907134056,0.005685303,-0.0015883193 +illusion_1L,ppo,43,12.9,0.6664312481880188,0.438017338514328,0.7359305620193481,0.6861547231674194,1.1998934745788574,0.5229004621505737,0.0018255390459671617,-0.0003701983659993857,0.0017663040198385715,0.0029989988543093204,0.0022720422130078077,-0.0034130625426769257,-0.15235307812690735,-1.1836940050125122,0.777901291847229,-0.001523530692793429,-0.011836939491331577,0.0077790128998458385,0.005649801,-0.0011900691 +illusion_1L,ppo,44,13.2,0.6436238288879395,0.37817081809043884,0.6968371868133545,0.6780766844749451,1.2778377532958984,0.558830976486206,0.001820030389353633,-0.00020883584511466324,0.0018483336316421628,0.0033294837921857834,0.0020781976636499166,-0.0033630465622991323,-0.27593696117401123,-0.9420957565307617,0.6716594696044922,-0.002759369555860758,-0.009420957416296005,0.006716594565659761,0.005654963,-0.00071337377 +illusion_1L,ppo,45,13.5,0.616401731967926,0.3002019226551056,0.6531184315681458,0.5748690962791443,1.345689058303833,0.520812451839447,0.0018352949991822243,-2.4143946575350128e-05,0.0019393219845369458,0.0035899956710636616,0.0018842782592400908,-0.0031800037249922752,-0.3448081612586975,-0.7181262969970703,0.6047234535217285,-0.003448081435635686,-0.007181262597441673,0.006047234404832125,0.0056272005,-0.00018934083 +illusion_1L,ppo,46,13.8,0.5949262380599976,0.19950702786445618,0.6193177103996277,0.37269142270088196,1.376194715499878,0.3475358486175537,0.0018556686118245125,0.00015430407074745744,0.0020760982297360897,0.003738155821338296,0.0017115895170718431,-0.002898051869124174,-0.3289932608604431,-0.5680457353591919,0.6044790744781494,-0.003289932617917657,-0.0056804572232067585,0.006044790614396334,0.005556741,0.0003478314 +illusion_1L,ppo,47,14.1,0.5879560112953186,0.07979433983564377,0.6057933568954468,0.10241959989070892,1.3818353414535522,0.08258974552154541,0.0018817250384017825,0.0002950139460153878,0.0022443158086389303,0.003763939253985882,0.0015673097223043442,-0.002579529071226716,-0.22514784336090088,-0.5334727764129639,0.6266822814941406,-0.0022514783777296543,-0.005334727466106415,0.006266822572797537,0.005530434,0.00086310843 +illusion_1L,ppo,48,14.4,0.6015026569366455,-0.04656825587153435,0.6189097166061401,-0.1910044252872467,1.3692554235458374,-0.19103451073169708,0.0019058154430240393,0.0003789706388488412,0.002407739870250225,0.0036959557328373194,0.0014678692677989602,-0.002270594472065568,-0.08369094133377075,-0.59348464012146,0.63767409324646,-0.0008369093993678689,-0.005934846121817827,0.006376740988343954,0.0055591958,0.0013229257 +illusion_1L,ppo,49,14.7,0.6401312947273254,-0.1569630652666092,0.6561639904975891,-0.4545067250728607,1.3304451704025269,-0.4043273627758026,0.0019301918800920248,0.000399530166760087,0.002520560985431075,0.003587348386645317,0.001435941900126636,-0.002001927699893713,0.0732913613319397,-0.729745626449585,0.6342439651489258,0.000732913613319397,-0.00729745626449585,0.006342439446598291,0.0055792513,0.0016973914 +illusion_1L,ppo,50,15.0,0.7041741013526917,-0.23050761222839355,0.7084307074546814,-0.643090546131134,1.2658867835998535,-0.5209875702857971,0.0019456122536212206,0.00035340918111614883,0.002547943964600563,0.0035117308143526316,0.0014684265479445457,-0.0017931613838300109,0.2539413273334503,-0.9293709993362427,0.6418429613113403,0.002539413282647729,-0.009293709881603718,0.0064184293150901794,0.0056111068,0.0019622396 +illusion_1L,ppo,51,15.3,0.7793118953704834,-0.27648845314979553,0.7640174031257629,-0.7290127277374268,1.187130331993103,-0.5516942143440247,0.001952876104041934,0.00024421606212854385,0.0024757017381489277,0.003540861653164029,0.001538520329631865,-0.0016603274270892143,0.44856879115104675,-1.1277663707733154,0.6919165849685669,0.004485687706619501,-0.01127766352146864,0.0069191656075417995,0.0057041836,0.0021004027 +illusion_1L,ppo,52,15.6,0.8520561456680298,-0.3173534870147705,0.8130722045898438,-0.7309223413467407,1.1090126037597656,-0.5381489992141724,0.001968587748706341,8.900611283024773e-05,0.0023354880977422,0.0036830503959208727,0.0016225529834628105,-0.0016222890699282289,0.6024619340896606,-1.2078306674957275,0.8100345134735107,0.006024619098752737,-0.012078306637704372,0.00810034479945898,0.005787537,0.0021031038 +illusion_1L,ppo,53,15.9,0.9219806790351868,-0.3562130331993103,0.8489457964897156,-0.7141465544700623,1.0382969379425049,-0.5144712924957275,0.002003411063924432,-8.118015102809295e-05,0.0021699147764593363,0.0038498863577842712,0.0017090844921767712,-0.0017009262228384614,0.6720407009124756,-1.1204750537872314,0.9828812479972839,0.00672040693461895,-0.011204750277101994,0.009828812442719936,0.0057779695,0.0019703952 +illusion_1L,ppo,54,16.2,0.9928690791130066,-0.39162665605545044,0.8699970245361328,-0.7157424092292786,0.9726781249046326,-0.49024659395217896,0.002047616755589843,-0.00023118723765946925,0.001987846801057458,0.003939912188798189,0.0018042230512946844,-0.001891142688691616,0.6875909566879272,-0.9677736163139343,1.1312923431396484,0.006875909399241209,-0.009677736088633537,0.011312923394143581,0.005727803,0.0017111168 +illusion_1L,ppo,55,16.5,1.0684486627578735,-0.4237130880355835,0.8766194581985474,-0.7329849004745483,0.9082731008529663,-0.45914900302886963,0.0021009657066315413,-0.00035802688216790557,0.001785053638741374,0.003921655472368002,0.0019064343068748713,-0.0021604460198432207,0.7037420272827148,-0.8695921897888184,1.1895372867584229,0.0070374202914536,-0.00869592186063528,0.011895372532308102,0.005697423,0.0013422794 +illusion_1L,ppo,56,16.8,1.1532028913497925,-0.45039045810699463,0.8669304251670837,-0.7389875054359436,0.8429670929908752,-0.4079287052154541,0.0021382749546319246,-0.00047437369357794523,0.0015708273276686668,0.0038230796344578266,0.002026790287345648,-0.0024649505503475666,0.7305182218551636,-0.8514076471328735,1.1582409143447876,0.007305182050913572,-0.008514076471328735,0.011582409031689167,0.0056418944,0.00088791875 +illusion_1L,ppo,57,17.1,1.244762659072876,-0.45189422369003296,0.8420998454093933,-0.6679954528808594,0.780195951461792,-0.32243773341178894,0.002156274626031518,-0.0005991602665744722,0.0013542891247197986,0.0036806424614042044,0.0021528301294893026,-0.002778091002255678,0.7592133283615112,-0.892059326171875,1.0859860181808472,0.007592133246362209,-0.008920593187212944,0.010859860107302666,0.005555901,0.0003775017 +illusion_1L,ppo,58,17.4,1.3131464719772339,-0.36229220032691956,0.8149787783622742,-0.46268296241760254,0.728767454624176,-0.19583317637443542,0.0021876778919249773,-0.0007024467922747135,0.0011467136209830642,0.0035077750217169523,0.002268493641167879,-0.003075256245210767,0.7423211336135864,-0.92649906873703,1.0194175243377686,0.007423211354762316,-0.0092649906873703,0.010194174945354462,0.0055302856,-0.00015600657 +illusion_1L,ppo,59,17.7,1.3239731788635254,-0.1523219347000122,0.8015699982643127,-0.14974376559257507,0.7021210193634033,-0.04306803643703461,0.002177533460780978,-0.0008089794428087771,0.0009664216777309775,0.003306248690932989,0.0023590591736137867,-0.0033480823040008545,0.6755601167678833,-0.9150866866111755,0.9541711211204529,0.0067556011490523815,-0.00915086641907692,0.009541710838675499,0.005572739,-0.00067828613 +illusion_1L,ppo,60,18.0,1.2924935817718506,0.08932598680257797,0.8087029457092285,0.19765660166740417,0.7115726470947266,0.10390143096446991,0.0021569719538092613,-0.0008867835276760161,0.000848128111101687,0.003064886899664998,0.0024435464292764664,-0.0035384437069296837,0.5484015941619873,-0.8626410961151123,0.8343302011489868,0.005484015680849552,-0.008626410737633705,0.008343301713466644,0.005589882,-0.0011558743 +illusion_1L,ppo,61,18.3,1.2320256233215332,0.27846014499664307,0.8334445357322693,0.48349788784980774,0.7582898139953613,0.20781558752059937,0.002121244091540575,-0.0009351797052659094,0.0008042471017688513,0.002802375005558133,0.0025177537463605404,-0.0036111974623054266,0.3812219500541687,-0.7907251715660095,0.7328672409057617,0.0038122194819152355,-0.007907251827418804,0.007328672334551811,0.0055809915,-0.001558304 +illusion_1L,ppo,62,18.6,1.155397653579712,0.38511133193969727,0.8669574856758118,0.6348947882652283,0.8252676129341125,0.26896101236343384,0.0020667784847319126,-0.000938309240154922,0.0008478093077428639,0.0025435846764594316,0.0025809553917497396,-0.0035746844951063395,0.20350712537765503,-0.7293674945831299,0.7044795751571655,0.0020350711420178413,-0.0072936746291816235,0.00704479543492198,0.0056222747,-0.0018600309 +illusion_1L,ppo,63,18.9,1.079685926437378,0.4246930778026581,0.9000303149223328,0.6627809405326843,0.8945906758308411,0.3111199736595154,0.0020118446554988623,-0.0008974355296231806,0.0009620150667615235,0.002315185032784939,0.0026150960475206375,-0.003474010154604912,0.08482423424720764,-0.7599146366119385,0.7385427951812744,0.0008482423145323992,-0.007599146105349064,0.007385427597910166,0.0056859185,-0.0020420316 +illusion_1L,ppo,64,19.2,1.011965274810791,0.43202340602874756,0.925682783126831,0.6549898386001587,0.9623709321022034,0.3459392786026001,0.00196703989058733,-0.0008238596492446959,0.001107053249143064,0.0021635061129927635,0.00260393344797194,-0.0033651208505034447,0.03832203149795532,-0.8896089196205139,0.7848913669586182,0.0003832202928606421,-0.008896089158952236,0.00784891378134489,0.005700574,-0.002092972 +illusion_1L,ppo,65,19.5,0.9498518705368042,0.426735520362854,0.941193163394928,0.6606270670890808,1.0308730602264404,0.37615981698036194,0.0019302238943055272,-0.0007360082818195224,0.0012490733060985804,0.0021158955059945583,0.0025411332026124,-0.003286196617409587,0.00900760293006897,-1.0161724090576172,0.8056506514549255,9.007602784549817e-05,-0.01016172394156456,0.008056506514549255,0.0057089473,-0.0020098796 +illusion_1L,ppo,66,19.8,0.8884464502334595,0.40898892283439636,0.9452279806137085,0.6834660768508911,1.1036629676818848,0.4030384421348572,0.0018995193531736732,-0.0006338927778415382,0.0013765291078016162,0.002168099395930767,0.0024381796829402447,-0.0032383450306952,-0.04690513014793396,-1.0700416564941406,0.7772320508956909,-0.0004690513014793396,-0.010700416751205921,0.007772320415824652,0.0057584764,-0.0017982837 +illusion_1L,ppo,67,20.1,0.8254408836364746,0.36867615580558777,0.9332399368286133,0.7053017020225525,1.1853500604629517,0.425668865442276,0.0018773790216073394,-0.0005119738634675741,0.0014885537093505263,0.002290254458785057,0.0023191284853965044,-0.0031889823731034994,-0.13762632012367249,-1.038233995437622,0.6981791257858276,-0.0013762632152065635,-0.010382339358329773,0.0069817909970879555,0.0057701375,-0.001471819 +illusion_1L,ppo,68,20.4,0.763007640838623,0.2929989993572235,0.9002282619476318,0.6645870804786682,1.2796871662139893,0.43484577536582947,0.0018710102885961533,-0.0003642900555860251,0.0015909346984699368,0.002447637030854821,0.0022025166545063257,-0.0030955998227000237,-0.251354455947876,-0.9452930092811584,0.6044139862060547,-0.002513544401153922,-0.009452929720282555,0.0060441396199166775,0.005691961,-0.0010513254 +illusion_1L,ppo,69,20.7,0.7107405662536621,0.17714086174964905,0.8587695360183716,0.4798308312892914,1.3674812316894531,0.38365069031715393,0.0018732643220573664,-0.0001908278209157288,0.0016880532493814826,0.0026163284201174974,0.0020916506182402372,-0.0029422880616039038,-0.3395172953605652,-0.8582601547241211,0.5463472604751587,-0.003395172767341137,-0.008582601323723793,0.005463472567498684,0.005608741,-0.00056350324 +illusion_1L,ppo,70,21.0,0.6825059056282043,0.03277421370148659,0.8366732001304626,0.15719443559646606,1.391080617904663,0.19674620032310486,0.0018800902180373669,-1.0906923307629768e-05,0.0017827630508691072,0.002786284312605858,0.0019804376643151045,-0.0027410138864070177,-0.3169593811035156,-0.8475192785263062,0.507239818572998,-0.003169593634083867,-0.008475192822515965,0.0050723981112241745,0.0055718403,-3.9214257e-05 +illusion_1L,ppo,71,21.3,0.6921616196632385,-0.1064351350069046,0.8465394377708435,-0.19871187210083008,1.3434185981750488,-0.06291000545024872,0.001888597966171801,0.00012516223068814725,0.001878207316622138,0.002962176688015461,0.0018807679880410433,-0.0025109276175498962,-0.12992370128631592,-0.9278140068054199,0.43264269828796387,-0.001299237017519772,-0.009278140030801296,0.004326426889747381,0.0055282726,0.0004884666 +illusion_1L,ppo,72,21.6,0.7414799928665161,-0.2045205980539322,0.8790727853775024,-0.48163145780563354,1.267909288406372,-0.26591378450393677,0.0018846654566004872,0.00017468517762608826,0.0019630969036370516,0.0031588440760970116,0.001806218409910798,-0.0022598430514335632,0.15931981801986694,-1.0580968856811523,0.35111236572265625,0.001593198161572218,-0.010580969043076038,0.0035111235920339823,0.005490355,0.0009863246 +illusion_1L,ppo,73,21.9,0.8123254776000977,-0.2601091265678406,0.9196674823760986,-0.6226390600204468,1.1905627250671387,-0.37259265780448914,0.001872649765573442,0.0001265007012989372,0.002013305202126503,0.003382145194336772,0.001759653678163886,-0.002018213039264083,0.442023903131485,-1.1663737297058105,0.34353625774383545,0.004420239012688398,-0.011663736775517464,0.003435362596064806,0.0055408464,0.0014230777 +illusion_1L,ppo,74,22.2,0.8804690837860107,-0.2953639030456543,0.9534814357757568,-0.6340482831001282,1.1185157299041748,-0.40971139073371887,0.0018821897683665156,1.160632473329315e-05,0.002008291659876704,0.0035878594499081373,0.001724241185002029,-0.0018113163532689214,0.6225366592407227,-1.1752506494522095,0.43637678027153015,0.006225366611033678,-0.011752505786716938,0.0043637678027153015,0.0056466106,0.0017713193 +illusion_1L,ppo,75,22.5,0.9449856281280518,-0.322884738445282,0.9814824461936951,-0.6124574542045593,1.0593763589859009,-0.4201362431049347,0.0019255218794569373,-0.00011888697918038815,0.0019643595442175865,0.0037486141081899405,0.00171347102150321,-0.0016582341631874442,0.6780859231948853,-1.0850419998168945,0.6002850532531738,0.006780859082937241,-0.010850419290363789,0.006002850364893675,0.0057005635,0.0020092176 +illusion_1L,ppo,76,22.8,1.0061784982681274,-0.34482601284980774,1.0023915767669678,-0.605635404586792,1.0055840015411377,-0.421988844871521,0.0020147201139479876,-0.0002336972247576341,0.0018836800009012222,0.003822098486125469,0.0017328222747892141,-0.0015559819294139743,0.6847200393676758,-0.9632091522216797,0.7805523872375488,0.006847200449556112,-0.009632091037929058,0.007805523928254843,0.0057134633,0.0021218644 +illusion_1L,ppo,77,23.1,1.0667712688446045,-0.3628075122833252,1.017976999282837,-0.617432713508606,0.951136589050293,-0.4151519238948822,0.0020925647113472223,-0.00033295585308223963,0.0017767486860975623,0.0038140208926051855,0.001778754172846675,-0.0015101487515494227,0.7065297365188599,-0.8916959166526794,0.9544150829315186,0.007065297104418278,-0.008916959166526794,0.009544150903820992,0.00574738,0.0021021962 +illusion_1L,ppo,78,23.4,1.129928708076477,-0.37719738483428955,1.028010606765747,-0.6421993374824524,0.8915281295776367,-0.3899703919887543,0.0021798117086291313,-0.0004254781815689057,0.0016581998206675053,0.0037679015658795834,0.0018543960759416223,-0.00154399243183434,0.7582865953445435,-0.882764995098114,1.0935710668563843,0.007582865655422211,-0.008827649988234043,0.010935710743069649,0.005757806,0.0019514315 +illusion_1L,ppo,79,23.7,1.1992398500442505,-0.3866143226623535,1.0269603729248047,-0.6561576724052429,0.8265203237533569,-0.33193057775497437,0.0022518588230013847,-0.0005301294731907547,0.0015300518134608865,0.003716107225045562,0.00195945892482996,-0.0016902299830690026,0.8281499147415161,-0.9213626384735107,1.2009328603744507,0.008281499147415161,-0.009213626384735107,0.012009328231215477,0.005700658,0.001678997 +illusion_1L,ppo,80,24.0,1.2779350280761719,-0.3861391544342041,1.004358172416687,-0.5934364199638367,0.7624126672744751,-0.22893618047237396,0.0023022855166345835,-0.0006337114027701318,0.0013851969270035625,0.0036691382993012667,0.0020833751186728477,-0.001959611428901553,0.889137327671051,-0.9927817583084106,1.2632941007614136,0.008891372941434383,-0.00992781762033701,0.012632940895855427,0.0056511923,0.0013019484 +illusion_1L,ppo,81,24.3,1.3591006994247437,-0.35668447613716125,0.9635921120643616,-0.3825330436229706,0.7135483026504517,-0.08531415462493896,0.0023355288431048393,-0.0007276830147020519,0.0012048776261508465,0.003625165671110153,0.0022034780122339725,-0.0023231906816363335,0.8954256772994995,-1.0387340784072876,1.2776410579681396,0.008954256772994995,-0.010387340560555458,0.012776410207152367,0.005653458,0.0008439195 +illusion_1L,ppo,82,24.6,1.3996593952178955,-0.2456424981355667,0.9302139282226562,-0.05237940326333046,0.6983792781829834,0.06865452229976654,0.002340983599424362,-0.0007889567059464753,0.001007517916150391,0.003548347856849432,0.0023126183077692986,-0.0027339861262589693,0.7867532968521118,-0.9504090547561646,1.2431117296218872,0.007867532782256603,-0.009504090063273907,0.01243111677467823,0.0056313537,0.00033366104 +illusion_1L,ppo,83,24.9,1.3436378240585327,-0.0326990969479084,0.9201825857162476,0.27811285853385925,0.728197455406189,0.18503639101982117,0.002308048540726304,-0.0008145665633492172,0.0008433805778622627,0.003388026962056756,0.0024022888392210007,-0.0031352497171610594,0.5974826812744141,-0.7523548603057861,1.1176396608352661,0.005974826868623495,-0.007523548323661089,0.011176396161317825,0.0055622477,-0.00019674085 +illusion_1L,ppo,84,25.2,1.2302428483963013,0.1730976104736328,0.9294482469558716,0.49576041102409363,0.7889851927757263,0.2477090209722519,0.0022271564230322838,-0.0008239594753831625,0.000757155183237046,0.003137467661872506,0.002479949500411749,-0.003453038167208433,0.3975691497325897,-0.5855858325958252,0.8919068574905396,0.003975691273808479,-0.005855858325958252,0.008919068612158298,0.0055317245,-0.00071386155 +illusion_1L,ppo,85,25.5,1.130630612373352,0.2838194966316223,0.947968065738678,0.5574465394020081,0.8538589477539062,0.28331735730171204,0.0021243744995445013,-0.0008310321718454361,0.0007646242156624794,0.002838853280991316,0.0025556297041475773,-0.0036227686796337366,0.2339988499879837,-0.5446861982345581,0.6622859239578247,0.0023399884812533855,-0.0054468619637191296,0.00662285927683115,0.005556187,-0.0011850279 +illusion_1L,ppo,86,25.8,1.0611460208892822,0.31920120120048523,0.966501772403717,0.5420201420783997,0.9127236008644104,0.3111553490161896,0.0020343451760709286,-0.0008389608119614422,0.0008509320905432105,0.0025407904759049416,0.0026382282376289368,-0.00363735668361187,0.1461460143327713,-0.6509461402893066,0.540458083152771,0.0014614601386711001,-0.006509461440145969,0.0054045808501541615,0.00557036,-0.0015803733 +illusion_1L,ppo,87,26.1,1.0099037885665894,0.32576999068260193,0.9800758957862854,0.5282737016677856,0.9665951728820801,0.334816038608551,0.001974157989025116,-0.000834727194160223,0.0009759863023646176,0.0022834567353129387,0.0027047551702708006,-0.003542112885043025,0.10359872877597809,-0.8334581851959229,0.5653951168060303,0.001035987283103168,-0.00833458174020052,0.005653950851410627,0.005592582,-0.0018747298 +illusion_1L,ppo,88,26.4,0.9637888669967651,0.3265618085861206,0.9885954856872559,0.531059980392456,1.0175364017486572,0.3561646640300751,0.0019336676923558116,-0.0008042216068133712,0.0011037889635190368,0.0020933125633746386,0.002708608750253916,-0.003419411601498723,0.06980007886886597,-1.0063269138336182,0.6911938190460205,0.000698000774718821,-0.010063269175589085,0.006911938078701496,0.0056810696,-0.0020492398 +illusion_1L,ppo,89,26.7,0.9164112210273743,0.3235429525375366,0.9926232695579529,0.5479938983917236,1.0675249099731445,0.3767314553260803,0.0019063864601776004,-0.0007442481000907719,0.0012276581255719066,0.0019938370678573847,0.0026368226390331984,-0.0033401947002857924,0.029952317476272583,-1.1265153884887695,0.8017693758010864,0.00029952317709103227,-0.011265153996646404,0.008017693646252155,0.005775141,-0.0020925815 +illusion_1L,ppo,90,27.0,0.8651228547096252,0.3105006515979767,0.9910640716552734,0.5758571624755859,1.118925929069519,0.3975510895252228,0.0018914900720119476,-0.0006589702679775655,0.0013498287880793214,0.0020009558647871017,0.0025210916064679623,-0.003313270164653659,-0.03253611922264099,-1.1763396263122559,0.81593918800354,-0.0003253611794207245,-0.011763395741581917,0.008159391582012177,0.0057852725,-0.0020017293 +illusion_1L,ppo,91,27.3,0.8099183440208435,0.2784113883972168,0.9797924757003784,0.6044884324073792,1.1748199462890625,0.4189745783805847,0.001875051879324019,-0.0005498474347405136,0.001470484770834446,0.0021115122362971306,0.0024012622889131308,-0.0032963023986667395,-0.11802081018686295,-1.1625595092773438,0.7506587505340576,-0.0011802080553025007,-0.011625594459474087,0.007506587542593479,0.00574708,-0.0017821938 +illusion_1L,ppo,92,27.6,0.754531979560852,0.21837377548217773,0.9504159688949585,0.6024015545845032,1.2395051717758179,0.4401297867298126,0.0018659738125279546,-0.00041312514804303646,0.0015863041626289487,0.0023043735418468714,0.002288053510710597,-0.0032435283064842224,-0.2081165760755539,-1.1050028800964355,0.6709375381469727,-0.002081165788695216,-0.01105002872645855,0.0067093754187226295,0.0057170745,-0.0014477221 +illusion_1L,ppo,93,27.9,0.7084880471229553,0.12825168669223785,0.8974979519844055,0.5133038759231567,1.3150506019592285,0.45359060168266296,0.0018632977735251188,-0.00025486163212917745,0.0017001612577587366,0.0025487509556114674,0.00217595137655735,-0.003143311245366931,-0.2814738154411316,-1.0227124691009521,0.626955509185791,-0.00281473807990551,-0.010227124206721783,0.006269555073231459,0.005658671,-0.0010194698 +illusion_1L,ppo,94,28.2,0.6856740713119507,0.018785716965794563,0.8333287835121155,0.29902753233909607,1.3852027654647827,0.42027950286865234,0.0018678444903343916,-8.807096310192719e-05,0.0018101382302120328,0.002816081279888749,0.0020468446891754866,-0.0030070508364588022,-0.30740028619766235,-0.9575598239898682,0.6160467863082886,-0.0030740026850253344,-0.009575597941875458,0.006160467863082886,0.005566139,-0.00052469026 +illusion_1L,ppo,95,28.5,0.6986746191978455,-0.08432520925998688,0.7846758961677551,-0.0071824598126113415,1.3905307054519653,0.2505358159542084,0.001876970287412405,6.31337461527437e-05,0.001908753882162273,0.0030814618803560734,0.001897896290756762,-0.002845838898792863,-0.24433809518814087,-0.9378107190132141,0.5971181392669678,-0.0024433808866888285,-0.009378107264637947,0.005971181206405163,0.0055257427,4.9782807e-06 +illusion_1L,ppo,96,28.8,0.7450180649757385,-0.16047361493110657,0.7687440514564514,-0.3213976323604584,1.3084614276885986,-0.04693884402513504,0.0018763269763439894,0.00016866563237272203,0.0019926365930587053,0.0033288586419075727,0.0017533282516524196,-0.0026492164470255375,-0.05250241979956627,-0.9619906544685364,0.5114648342132568,-0.0005250241956673563,-0.009619906544685364,0.005114648025482893,0.0055574994,0.0005355245 +illusion_1L,ppo,97,29.1,0.8046743869781494,-0.21486160159111023,0.7874611020088196,-0.5471676588058472,1.2038688659667969,-0.3061122000217438,0.0018739781808108091,0.00019312943913973868,0.0020610454957932234,0.0035417929757386446,0.0016574077308177948,-0.002402540063485503,0.23996078968048096,-1.007272720336914,0.38130712509155273,0.0023996077943593264,-0.010072726756334305,0.0038130711764097214,0.005581863,0.0010327466 +illusion_1L,ppo,98,29.4,0.8630480170249939,-0.2607599198818207,0.8308919668197632,-0.6278098821640015,1.114199161529541,-0.43738454580307007,0.0018749793525785208,0.00012778022210113704,0.002106370870023966,0.003710776101797819,0.0016277015674859285,-0.0021179690957069397,0.49773260951042175,-1.036102056503296,0.3416566848754883,0.004977325908839703,-0.01036102045327425,0.00341656687669456,0.0055847326,0.0014644662 +illusion_1L,ppo,99,29.7,0.9191783666610718,-0.30015531182289124,0.8783200979232788,-0.6231940984725952,1.0447020530700684,-0.46690064668655396,0.0019019031897187233,9.941063581209164e-06,0.002115985844284296,0.003824712475761771,0.0016430813120678067,-0.0018468685448169708,0.6385623216629028,-1.0285260677337646,0.46707677841186523,0.006385623011738062,-0.010285260155797005,0.004670767579227686,0.005623348,0.0018026287 +illusion_1L,ppo,100,30.0,0.974696159362793,-0.33321642875671387,0.9155005812644958,-0.6176705956459045,0.9881066679954529,-0.4592517018318176,0.0019660121761262417,-0.00012067849456798285,0.00207971828058362,0.0038796428125351667,0.0016810252564027905,-0.001641376642510295,0.6942313313484192,-1.007731556892395,0.6914972066879272,0.00694231316447258,-0.010077315382659435,0.006914971861988306,0.0056792763,0.002025151 +illusion_1L,ppo,101,30.3,1.0324854850769043,-0.36209067702293396,0.9433130025863647,-0.6303406357765198,0.9332901835441589,-0.44854795932769775,0.002060363069176674,-0.0002521234564483166,0.0019800951704382896,0.0038835008163005114,0.0017287477385252714,-0.001531603280454874,0.7253242135047913,-0.9991705417633057,0.9134254455566406,0.007253242190927267,-0.009991705417633057,0.009134254418313503,0.0056946604,0.0021173924 +illusion_1L,ppo,102,30.6,1.090157151222229,-0.38596585392951965,0.9626411199569702,-0.6567465662956238,0.8785787224769592,-0.4374710023403168,0.0021587202791124582,-0.00035457481862977147,0.0018695921171456575,0.003899690229445696,0.001817938289605081,-0.0015211484860628843,0.7583543062210083,-0.9992220401763916,1.082987666130066,0.007583542726933956,-0.009992220439016819,0.01082987617701292,0.005700741,0.002073147 +illusion_1L,ppo,103,30.9,1.154505968093872,-0.40694159269332886,0.9741111397743225,-0.6903706192970276,0.8173875212669373,-0.41457441449165344,0.002231973921880126,-0.00046039128210395575,0.0017055179923772812,0.003906465135514736,0.0019186236895620823,-0.001633780193515122,0.8214980363845825,-1.0076487064361572,1.230583667755127,0.008214980363845825,-0.010076486505568027,0.01230583619326353,0.0057410244,0.0018950875 +illusion_1L,ppo,104,31.2,1.2274019718170166,-0.4227302670478821,0.9706832766532898,-0.700888991355896,0.7524926662445068,-0.36458343267440796,0.0022971422877162695,-0.0005659632734023035,0.0015213967999443412,0.003905016230419278,0.002039015991613269,-0.0018741809763014317,0.8939526081085205,-1.0208444595336914,1.2946836948394775,0.008939526043832302,-0.01020844466984272,0.012946836650371552,0.0057597216,0.0015946252 +illusion_1L,ppo,105,31.5,1.3118916749954224,-0.42578497529029846,0.9479699730873108,-0.6240580677986145,0.6926198601722717,-0.27474847435951233,0.0023492826148867607,-0.000666136562358588,0.0013263419969007373,0.00388473947532475,0.002175678499042988,-0.002213389379903674,0.9439670443534851,-1.0362993478775024,1.2841081619262695,0.009439670480787754,-0.010362992994487286,0.012841081246733665,0.0057075582,0.0011911925 +illusion_1L,ppo,106,31.8,1.384732723236084,-0.37966910004615784,0.9119595289230347,-0.40585002303123474,0.6466218829154968,-0.1424848884344101,0.0023779403418302536,-0.0007529958966188133,0.001108968397602439,0.0038037574850022793,0.002298420062288642,-0.002599458210170269,0.9271445870399475,-1.0095933675765991,1.2297283411026,0.00927144568413496,-0.010095933452248573,0.012297282926738262,0.0056370255,0.00071099 +illusion_1L,ppo,107,32.1,1.3967530727386475,-0.22114145755767822,0.8890573978424072,-0.08257841318845749,0.6315710544586182,0.012099883519113064,0.0023804965894669294,-0.0008205906488001347,0.0009009870700538158,0.0036575691774487495,0.0024155492428690195,-0.0029965860303491354,0.8199090361595154,-0.9171422719955444,1.136617660522461,0.008199090138077736,-0.009171422570943832,0.011366176418960094,0.0055910293,0.000185279 +illusion_1L,ppo,108,32.4,1.326084852218628,0.023706793785095215,0.8873980641365051,0.2575235664844513,0.6560983061790466,0.152481809258461,0.00234407652169466,-0.0008706756634637713,0.0007325024344027042,0.0034323057625442743,0.0025164822582155466,-0.003345885779708624,0.6567550301551819,-0.7951712608337402,0.9733213186264038,0.006567550357431173,-0.007951712235808372,0.009733213111758232,0.005541774,-0.00035166615 +illusion_1L,ppo,109,32.7,1.231289029121399,0.22666779160499573,0.9026532173156738,0.5194624066352844,0.7184242010116577,0.24309071898460388,0.002275807550176978,-0.000910980103071779,0.0006498247385025024,0.0031534561421722174,0.0026108776219189167,-0.003586730919778347,0.47090980410575867,-0.7020406723022461,0.7664172649383545,0.004709098022431135,-0.007020406424999237,0.0076641724444925785,0.0055010067,-0.0008648129 +illusion_1L,ppo,110,33.0,1.147264838218689,0.332816481590271,0.9248753786087036,0.634475588798523,0.7968157529830933,0.28893032670021057,0.002180623123422265,-0.0009382260614074767,0.0006638786289840937,0.002852808218449354,0.0026971607003360987,-0.0036835805512964725,0.27581357955932617,-0.6429752111434937,0.6220850944519043,0.002758135786280036,-0.006429751869291067,0.006220850627869368,0.005530829,-0.0013206784 +illusion_1L,ppo,111,33.3,1.0793170928955078,0.36781397461891174,0.946540117263794,0.6327396035194397,0.8701993823051453,0.32079780101776123,0.002085373504087329,-0.000940348778385669,0.0007675118977203965,0.002554464153945446,0.0027681610081344843,-0.0036469686310738325,0.1365383118391037,-0.6782861948013306,0.5887391567230225,0.0013653830392286181,-0.006782861892133951,0.00588739151135087,0.0056166197,-0.0016895372 +illusion_1L,ppo,112,33.6,1.0219885110855103,0.3756544888019562,0.9636176824569702,0.6107046604156494,0.9360341429710388,0.34896180033683777,0.0020059184171259403,-0.000909221067558974,0.0009167873067781329,0.002289405558258295,0.0028009936213493347,-0.0035355226136744022,0.077117919921875,-0.8301547169685364,0.6521658897399902,0.0007711791549809277,-0.008301546797156334,0.006521658971905708,0.0056811827,-0.0019473771 +illusion_1L,ppo,113,33.9,0.9681534767150879,0.37863343954086304,0.9750035405158997,0.6083046197891235,0.9973363280296326,0.3734675645828247,0.001952903694473207,-0.0008514460641890764,0.0010712675284594297,0.002102792961522937,0.00276961294002831,-0.0034193459432572126,0.045497357845306396,-1.003441333770752,0.7468442916870117,0.0004549735749606043,-0.010034413076937199,0.007468442898243666,0.0057128146,-0.0020774747 +illusion_1L,ppo,114,34.2,0.9131554365158081,0.3784715235233307,0.9815189838409424,0.6247931718826294,1.0576906204223633,0.39566847681999207,0.0019148647552356124,-0.000769275997299701,0.0012172985589131713,0.002020109212026,0.002676198724657297,-0.0033482657745480537,0.0011099278926849365,-1.1205029487609863,0.8073640465736389,1.1099278708570637e-05,-0.011205029673874378,0.008073640055954456,0.00574244,-0.0020714812 +illusion_1L,ppo,115,34.5,0.85471111536026,0.3682405948638916,0.9822733402252197,0.6552550196647644,1.1205774545669556,0.41634032130241394,0.001891853753477335,-0.000666626903694123,0.0013618584489449859,0.0020416611805558205,0.0025574250612407923,-0.0033216464798897505,-0.06686735153198242,-1.1621806621551514,0.7846359610557556,-0.0006686734850518405,-0.011621806770563126,0.00784635916352272,0.0057476517,-0.0019299488 +illusion_1L,ppo,116,34.8,0.7926095724105835,0.33681997656822205,0.9723482131958008,0.6842919588088989,1.190671443939209,0.4349595606327057,0.0018815204966813326,-0.0005425759009085596,0.0015042037703096867,0.0021614141296595335,0.0024436127860099077,-0.003293814370408654,-0.16097483038902283,-1.1403071880340576,0.696427583694458,-0.0016097482293844223,-0.011403071694076061,0.006964275613427162,0.0057049515,-0.001662264 +illusion_1L,ppo,117,35.1,0.7310217618942261,0.2722962498664856,0.9427730441093445,0.6642566919326782,1.2725167274475098,0.4475938379764557,0.0018808363238349557,-0.0003870637738145888,0.001632453640922904,0.0023597273975610733,0.0023329248651862144,-0.003218337893486023,-0.2642846703529358,-1.0700716972351074,0.6128480434417725,-0.002642846666276455,-0.010700716637074947,0.006128480192273855,0.0056606014,-0.0012859948 +illusion_1L,ppo,118,35.4,0.679538905620575,0.16911247372627258,0.8946107029914856,0.5223116874694824,1.3620555400848389,0.43284210562705994,0.0018779117381200194,-0.00021068533533252776,0.0017439143266528845,0.0026011215522885323,0.0022062824573367834,-0.0030929939821362495,-0.3365710377693176,-0.979629635810852,0.5819460153579712,-0.0033657103776931763,-0.009796296246349812,0.0058194599114358425,0.0056492006,-0.0008256995 +illusion_1L,ppo,119,35.7,0.6516488790512085,0.03670685738325119,0.851285457611084,0.23857955634593964,1.4157360792160034,0.3193994462490082,0.0018830561311915517,-3.0372089895536192e-05,0.0018531191162765026,0.0028548026457428932,0.002064534230157733,-0.0029326556250452995,-0.3366314768791199,-0.9156547784805298,0.5706486701965332,-0.0033663148060441017,-0.009156547486782074,0.0057064867578446865,0.0056335717,-0.00031128203 +illusion_1L,ppo,120,36.0,0.660476565361023,-0.09480361640453339,0.8354998826980591,-0.1086873859167099,1.380955457687378,0.07361561059951782,0.0018831434426829219,0.00012211836292408407,0.0019425038481131196,0.0030983174219727516,0.0018959410954266787,-0.0027356399223208427,-0.21389780938625336,-0.9168317914009094,0.5231554508209229,-0.0021389781031757593,-0.009168317541480064,0.0052315546199679375,0.0055923867,0.00022399245 +illusion_1L,ppo,121,36.3,0.7097500562667847,-0.19136729836463928,0.8479799032211304,-0.4200282096862793,1.2960612773895264,-0.17908988893032074,0.001880598720163107,0.00020507648878265172,0.0020297267474234104,0.003326118690893054,0.0017606239998713136,-0.002505932468920946,0.04495728015899658,-0.9710965156555176,0.4211564064025879,0.00044957277714274824,-0.009710964746773243,0.00421156408265233,0.005563298,0.00074568606 +illusion_1L,ppo,122,36.6,0.781975269317627,-0.24693600833415985,0.8778175115585327,-0.6098896265029907,1.2064834833145142,-0.33499279618263245,0.0018705407856032252,0.00019169715233147144,0.0021000185515731573,0.003534839255735278,0.001679005566984415,-0.002240107161924243,0.3449988067150116,-1.050175666809082,0.3469257354736328,0.0034499880857765675,-0.010501756332814693,0.0034692573826760054,0.0055622165,0.0012204313 +illusion_1L,ppo,123,36.9,0.8534172773361206,-0.2857009768486023,0.9130923748016357,-0.6510850191116333,1.1273022890090942,-0.3944174647331238,0.0018798329401761293,9.950938692782074e-05,0.002138742245733738,0.0037184853572398424,0.0016551392618566751,-0.0019732359796762466,0.5721310377120972,-1.0905463695526123,0.38749146461486816,0.005721310153603554,-0.010905463248491287,0.003874914487823844,0.0055664512,0.0016180797 +illusion_1L,ppo,124,37.2,0.9189209938049316,-0.3191376030445099,0.9447160959243774,-0.6276686191558838,1.0613479614257812,-0.4061000347137451,0.0019248747266829014,-3.1677071092417464e-05,0.00213486491702497,0.0038571981713175774,0.001666765776462853,-0.0017463042167946696,0.6712759733200073,-1.059798240661621,0.5604081153869629,0.006712759379297495,-0.010597982443869114,0.005604080855846405,0.005585979,0.0019136153 +illusion_1L,ppo,125,37.5,0.9807458519935608,-0.3470667600631714,0.9684872627258301,-0.6154345273971558,1.0033005475997925,-0.4069517254829407,0.002000071108341217,-0.00016002437041606754,0.002078025136142969,0.0039291987195611,0.001694923616014421,-0.001590494066476822,0.6947428584098816,-0.9966656565666199,0.7944151163101196,0.0069474284537136555,-0.009966656565666199,0.00794415082782507,0.005648294,0.00208871 +illusion_1L,ppo,126,37.8,1.0414057970046997,-0.370586633682251,0.9856463670730591,-0.6242743134498596,0.946551501750946,-0.40598952770233154,0.0020902331452816725,-0.0002701466146390885,0.0019722001161426306,0.0039386143907904625,0.0017450799932703376,-0.0015184272779151797,0.7164804935455322,-0.9536663293838501,1.002204179763794,0.007164804730564356,-0.009536663070321083,0.010022041387856007,0.0057253535,0.0021328249 +illusion_1L,ppo,127,38.1,1.1033426523208618,-0.39071470499038696,0.9969721436500549,-0.6495075225830078,0.8867692351341248,-0.397591769695282,0.0021760521922260523,-0.0003748350718524307,0.0018332909094169736,0.003916487563401461,0.0018282830715179443,-0.001544299302622676,0.760411262512207,-0.9426819086074829,1.1544451713562012,0.007604112382978201,-0.009426819160580635,0.011544451117515564,0.005764068,0.0020437927 +illusion_1L,ppo,128,38.4,1.169887661933899,-0.4072091579437256,0.9997844696044922,-0.6798798441886902,0.8223000168800354,-0.3700094223022461,0.0022460203617811203,-0.00047256157267838717,0.0016729049384593964,0.003889881307259202,0.001942664384841919,-0.0016874698922038078,0.8219093084335327,-0.9624688029289246,1.2508561611175537,0.008219093084335327,-0.00962468795478344,0.01250856090337038,0.0057589435,0.0018278575 +illusion_1L,ppo,129,38.7,1.2449913024902344,-0.4172976315021515,0.9862447381019592,-0.6754773259162903,0.7559341788291931,-0.30891379714012146,0.002301751635968685,-0.0005751688149757683,0.0014950528275221586,0.0038623178843408823,0.0020784519147127867,-0.0019509673584252596,0.8964057564735413,-1.009418249130249,1.2825655937194824,0.008964057080447674,-0.010094182565808296,0.01282565575093031,0.005728864,0.0014991733 +illusion_1L,ppo,130,39.0,1.3285789489746094,-0.4094526171684265,0.9525597095489502,-0.5610933899879456,0.6969277858734131,-0.20537590980529785,0.0023465987760573626,-0.000679856282658875,0.0012961338507011533,0.0038235073443502188,0.0022270227782428265,-0.0023099714890122414,0.9397885203361511,-1.0537691116333008,1.2541699409484863,0.009397884830832481,-0.010537690483033657,0.012541699223220348,0.0056730094,0.0010788131 +illusion_1L,ppo,131,39.3,1.395446538925171,-0.3419164717197418,0.9151179790496826,-0.3023172616958618,0.6595995426177979,-0.06658793240785599,0.0023755505681037903,-0.000769568607211113,0.0010795636335387826,0.003753358032554388,0.0023644650354981422,-0.002717710565775633,0.8941335082054138,-1.0277694463729858,1.1866087913513184,0.008941334672272205,-0.010277694091200829,0.011866088025271893,0.005602149,0.0005933575 +illusion_1L,ppo,132,39.6,1.3863083124160767,-0.15922009944915771,0.8946714401245117,0.03964031860232353,0.658072292804718,0.08005765825510025,0.0023727291263639927,-0.0008326355018652976,0.0008703536004759371,0.0036126060876995325,0.0024790423922240734,-0.003120352514088154,0.7515702247619629,-0.8981248736381531,1.0770809650421143,0.0075157019309699535,-0.008981248363852501,0.010770809836685658,0.0055566765,7.316458e-05 +illusion_1L,ppo,133,39.9,1.3007656335830688,0.07722784578800201,0.8962388038635254,0.3601389527320862,0.6991558074951172,0.19305835664272308,0.002318944549188018,-0.0008753806469030678,0.0007150991004891694,0.003378446213901043,0.0025709725450724363,-0.00345411105081439,0.5669722557067871,-0.7486188411712646,0.8969969153404236,0.005669722333550453,-0.007486188318580389,0.008969969116151333,0.0055553173,-0.0004495619 +illusion_1L,ppo,134,40.2,1.2015860080718994,0.24950790405273438,0.9124839305877686,0.5654183030128479,0.7690145969390869,0.2565910220146179,0.002234707586467266,-0.0009081262396648526,0.0006569341639988124,0.0030806390568614006,0.00265591312199831,-0.0036499258130788803,0.3685263693332672,-0.6435400247573853,0.6870937347412109,0.0036852636840194464,-0.006435399875044823,0.006870937068015337,0.0055751167,-0.0009427813 +illusion_1L,ppo,135,40.5,1.1186944246292114,0.32935836911201477,0.9336329102516174,0.6191556453704834,0.8412156701087952,0.29508817195892334,0.0021349915768951178,-0.0009235366014763713,0.0007078752387315035,0.002758956281468272,0.0027426439337432384,-0.0036834038328379393,0.1910797357559204,-0.61365807056427,0.5632838010787964,0.0019107973203063011,-0.006136580370366573,0.0056328377686440945,0.0055965483,-0.0013765742 +illusion_1L,ppo,136,40.8,1.053945541381836,0.3532963693141937,0.9527150392532349,0.598950982093811,0.9057862162590027,0.327341765165329,0.00204545003362,-0.0009153526043519378,0.0008388133137486875,0.0024516789708286524,0.002812143648043275,-0.0035949349403381348,0.10205401480197906,-0.725830078125,0.573477029800415,0.001020540134049952,-0.007258300669491291,0.005734770093113184,0.005621615,-0.0017249316 +illusion_1L,ppo,137,41.1,0.999557375907898,0.35933607816696167,0.9659923315048218,0.5844613909721375,0.9648764133453369,0.3553725481033325,0.0019800555892288685,-0.0008759070187807083,0.000995885580778122,0.0022047481033951044,0.0028305232990533113,-0.0034624412655830383,0.07220667600631714,-0.9191823601722717,0.6839281320571899,0.0007220667321234941,-0.009191823191940784,0.00683928094804287,0.005648242,-0.001967271 +illusion_1L,ppo,138,41.4,0.9480794072151184,0.36194390058517456,0.9737830758094788,0.58990877866745,1.0217998027801514,0.38063323497772217,0.0019410050008445978,-0.0008123545558191836,0.0011526137823238969,0.0020571264903992414,0.002776786684989929,-0.0033679818734526634,0.0467226505279541,-1.0806058645248413,0.8100115656852722,0.0004672264913097024,-0.010806058533489704,0.008100115694105625,0.005668891,-0.0020895947 +illusion_1L,ppo,139,41.7,0.8956334590911865,0.3598109483718872,0.976518452167511,0.6116507053375244,1.0792279243469238,0.40460318326950073,0.0019143595127388835,-0.0007284238236024976,0.001304173027165234,0.0020226705819368362,0.002666692715138197,-0.003352588741108775,-0.0036432743072509766,-1.1651049852371216,0.8690740466117859,-3.6432742490433156e-05,-0.011651049368083477,0.00869073998183012,0.005688424,-0.0020852312 +illusion_1L,ppo,140,42.0,0.839647650718689,0.34556257724761963,0.9720526337623596,0.6443316340446472,1.1406638622283936,0.4282587170600891,0.0018933230312541127,-0.0006235525943338871,0.0014386180555447936,0.0020975193474441767,0.0025280695408582687,-0.003381462534889579,-0.08457115292549133,-1.1762193441390991,0.8247787952423096,-0.0008457115036435425,-0.011762193404138088,0.008247788064181805,0.005713469,-0.0019551294 +illusion_1L,ppo,141,42.3,0.7803148031234741,0.30865076184272766,0.9538791179656982,0.668739378452301,1.2104419469833374,0.4512474536895752,0.0018768481677398086,-0.0004914059536531568,0.0015550898388028145,0.002261499175801873,0.002390124136582017,-0.003380625741556287,-0.18580710887908936,-1.1169795989990234,0.7208983898162842,-0.001858071074821055,-0.011169795878231525,0.00720898387953639,0.005732996,-0.0017076982 +illusion_1L,ppo,142,42.6,0.7224569320678711,0.23875829577445984,0.9136645793914795,0.6325414776802063,1.292899489402771,0.4683571755886078,0.0018697597552090883,-0.00033191972761414945,0.0016623812261968851,0.0024780938401818275,0.0022581079974770546,-0.003306846832856536,-0.2824084758758545,-1.0069557428359985,0.6408312320709229,-0.0028240846004337072,-0.010069557465612888,0.0064083123579621315,0.0057270005,-0.0013582138 +illusion_1L,ppo,143,42.9,0.6766911149024963,0.13361692428588867,0.8575515747070312,0.46991658210754395,1.3785840272903442,0.44709452986717224,0.0018719061044976115,-0.0001543317048344761,0.001764359069056809,0.0027102010790258646,0.0021140684839338064,-0.0031662487890571356,-0.3446028232574463,-0.8942933082580566,0.623509407043457,-0.0034460281021893024,-0.008942932821810246,0.006235093809664249,0.0056875576,-0.0009278415 +illusion_1L,ppo,144,43.2,0.6566859483718872,0.0061370269395411015,0.8119715452194214,0.17804767191410065,1.4137333631515503,0.29720351099967957,0.0018800328252837062,2.221495014964603e-05,0.0018681675428524613,0.002932737348601222,0.001951996935531497,-0.0029847987461835146,-0.3291654586791992,-0.8288860321044922,0.6273221969604492,-0.0032916544005274773,-0.008288860321044922,0.00627322169020772,0.005626541,-0.000442335 +illusion_1L,ppo,145,43.5,0.6749840974807739,-0.11324706673622131,0.7975320219993591,-0.16398967802524567,1.365068793296814,0.014933053404092789,0.001892545842565596,0.00016343114839401096,0.001975135412067175,0.0031320275738835335,0.0017940548714250326,-0.0027774947229772806,-0.1860431432723999,-0.8356091976165771,0.576213002204895,-0.001860431395471096,-0.008356091566383839,0.00576213002204895,0.005567984,6.950403e-05 +illusion_1L,ppo,146,43.8,0.7307496070861816,-0.1957475244998932,0.8135931491851807,-0.46099019050598145,1.2833583354949951,-0.24350550770759583,0.0018987961811944842,0.00023033474280964583,0.002077127806842327,0.0033105313777923584,0.0016803982434794307,-0.0025379392318427563,0.07437807321548462,-0.9066643118858337,0.4609086513519287,0.0007437806925736368,-0.009066643193364143,0.00460908655077219,0.0055329897,0.0005775165 +illusion_1L,ppo,147,44.1,0.8024853467941284,-0.24675826728343964,0.8497771620750427,-0.6331683993339539,1.1978111267089844,-0.3918132781982422,0.0018940778682008386,0.00020621549629140645,0.0021500964649021626,0.0034740157425403595,0.0016249970067292452,-0.0022650668397545815,0.3545452356338501,-1.0007374286651611,0.3762662410736084,0.0035454523749649525,-0.010007373988628387,0.003762662410736084,0.0055324854,0.0010519298 +illusion_1L,ppo,148,44.4,0.8711779713630676,-0.28722378611564636,0.893145740032196,-0.6640084981918335,1.1197021007537842,-0.44086527824401855,0.0018965776544064283,0.00010193018533755094,0.0021729981526732445,0.003618573769927025,0.0016230718465521932,-0.0019918258767575026,0.5654930472373962,-1.0714236497879028,0.4087827205657959,0.0056549301370978355,-0.01071423664689064,0.004087827168405056,0.0055702636,0.0014650587 +illusion_1L,ppo,149,44.7,0.9351475238800049,-0.3219529986381531,0.9312676787376404,-0.6439661979675293,1.0525163412094116,-0.4451695382595062,0.0019304167944937944,-3.173997174599208e-05,0.0021436961833387613,0.0037402769085019827,0.0016518734628334641,-0.001758671598508954,0.6591722369194031,-1.0803041458129883,0.5619888305664062,0.006591722369194031,-0.01080304104834795,0.0056198881939053535,0.0056356858,0.0017928724 +illusion_1L,ppo,150,45.0,0.9968648552894592,-0.3505345284938812,0.9596760869026184,-0.6386054754257202,0.9915181398391724,-0.44172242283821106,0.002000275067985058,-0.00016430225514341146,0.002064425265416503,0.0038249874487519264,0.0017002997919917107,-0.0015942802419885993,0.6958581209182739,-1.0504528284072876,0.7606911659240723,0.006958581041544676,-0.010504527948796749,0.007606911472976208,0.005695982,0.0020163457 +illusion_1L,ppo,151,45.3,1.0586801767349243,-0.37417420744895935,0.980556845664978,-0.6534563899040222,0.9309269189834595,-0.43722158670425415,0.002084567677229643,-0.00028474986902438104,0.0019422047771513462,0.0038704483304172754,0.0017655224073678255,-0.0015173869905993342,0.7313279509544373,-1.0228855609893799,0.9379693269729614,0.007313279435038567,-0.010228855535387993,0.009379693306982517,0.005722953,0.0021225212 +illusion_1L,ppo,152,45.6,1.1235451698303223,-0.3934757113456726,0.9949445724487305,-0.6828402280807495,0.8668509721755981,-0.4234820604324341,0.002173282206058502,-0.00039623831980861723,0.0017905008280649781,0.003896047594025731,0.0018528350628912449,-0.0015384168364107609,0.7833960652351379,-1.0137380361557007,1.063414454460144,0.007833960466086864,-0.010137380100786686,0.010634144768118858,0.0057228007,0.0021052337 +illusion_1L,ppo,153,45.9,1.1950790882110596,-0.4073118269443512,0.9990298748016357,-0.7076174020767212,0.7988039255142212,-0.3857170343399048,0.00225433730520308,-0.0005069863982498646,0.001621283357962966,0.003912702202796936,0.0019634689670056105,-0.0016713800141587853,0.8541326522827148,-1.0281428098678589,1.1406971216201782,0.00854132603853941,-0.010281427763402462,0.011406971141695976,0.005713127,0.001965455 +illusion_1L,ppo,154,46.2,1.2759929895401,-0.41070860624313354,0.9847694635391235,-0.6690180897712708,0.7317898869514465,-0.308235764503479,0.002323220716789365,-0.0006219425122253597,0.0014379032654687762,0.003915971145033836,0.0020872768945991993,-0.0019142345990985632,0.9249374270439148,-1.0629017353057861,1.1661052703857422,0.009249374270439148,-0.010629016906023026,0.011661052703857422,0.0056921956,0.0017112427 +illusion_1L,ppo,155,46.5,1.3590807914733887,-0.38350749015808105,0.9554819464683533,-0.490882009267807,0.6770801544189453,-0.18481822311878204,0.002389387460425496,-0.000729415740352124,0.0012296014465391636,0.0038900801446288824,0.002207384444773197,-0.0022361583542078733,0.9431966543197632,-1.074459195137024,1.1499993801116943,0.009431966580450535,-0.010744592174887657,0.01149999350309372,0.0056618573,0.0013572976 +illusion_1L,ppo,156,46.8,1.4009064435958862,-0.27135053277015686,0.9317917823791504,-0.17894208431243896,0.649314284324646,-0.02896638587117195,0.002421724144369364,-0.0008328423136845231,0.0010103159584105015,0.0038013779558241367,0.002316872589290142,-0.002593285869807005,0.85972660779953,-0.9893312454223633,1.1109542846679688,0.008597265928983688,-0.009893312118947506,0.011109543032944202,0.0056424816,0.00092414796 +illusion_1L,ppo,157,47.1,1.3530023097991943,-0.05732113495469093,0.926491916179657,0.17339935898780823,0.6609312891960144,0.1233859658241272,0.002399253658950329,-0.0008669530507177114,0.0008249973761849105,0.0036190187092870474,0.0024120069574564695,-0.0029434419702738523,0.6850922703742981,-0.8315134048461914,1.0223028659820557,0.006850922480225563,-0.0083151338621974,0.010223028250038624,0.0056324583,0.00043700356 +illusion_1L,ppo,158,47.4,1.2553454637527466,0.1525338739156723,0.9364964962005615,0.45997533202171326,0.7140211462974548,0.22988207638263702,0.0023323975037783384,-0.0008923457935452461,0.0007086085388436913,0.003356111003085971,0.00250078272074461,-0.0032312660478055477,0.5143322944641113,-0.7092623710632324,0.8508479595184326,0.005143322981894016,-0.007092623505741358,0.008508479222655296,0.0056038722,-7.566208e-05 +illusion_1L,ppo,159,47.7,1.1633979082107544,0.2778579890727997,0.952113151550293,0.6011762022972107,0.7895419597625732,0.28369516134262085,0.0022369378712028265,-0.0009130479884333909,0.0006866467301733792,0.0030544784385710955,0.00258340360596776,-0.003400286892428994,0.32499960064888,-0.6288739442825317,0.6857438087463379,0.0032499958761036396,-0.006288739386945963,0.006857438012957573,0.005562879,-0.00058372837 +illusion_1L,ppo,160,48.0,1.0907719135284424,0.3291999101638794,0.9673833250999451,0.6116187572479248,0.8632920384407043,0.3156742751598358,0.0021321892272681,-0.0009167339303530753,0.0007660624105483294,0.0027436267118901014,0.0026654284447431564,-0.003449950134381652,0.173389732837677,-0.6250448226928711,0.6176036596298218,0.001733897253870964,-0.0062504480592906475,0.006176036316901445,0.0055504804,-0.0010571574 +illusion_1L,ppo,161,48.3,1.0329912900924683,0.3464519679546356,0.9802320599555969,0.5880728363990784,0.9291250705718994,0.34232857823371887,0.0020426209084689617,-0.0008973233052529395,0.0009076027781702578,0.002453333232551813,0.002724866382777691,-0.00341846258379519,0.10298421233892441,-0.746497631072998,0.6572394371032715,0.0010298420675098896,-0.00746497604995966,0.006572394166141748,0.0055734697,-0.0014677424 +illusion_1L,ppo,162,48.6,0.9815293550491333,0.3547202944755554,0.989428699016571,0.5811353325843811,0.9897763133049011,0.3654739260673523,0.0019760194700211287,-0.0008550282218493521,0.0010523382807150483,0.00222113193012774,0.002722226083278656,-0.003362777642905712,0.06682106852531433,-0.9090174436569214,0.7626488208770752,0.0006682106759399176,-0.009090173989534378,0.007626487873494625,0.0056081247,-0.0017907778 +illusion_1L,ppo,163,48.9,0.9304785132408142,0.35912632942199707,0.9949952363967896,0.5932320952415466,1.0482230186462402,0.3864726126194,0.0019310330972075462,-0.0007879671175032854,0.0011856949422508478,0.0020724667701870203,0.002651014132425189,-0.003338039619848132,0.02433106303215027,-1.0220860242843628,0.8625670671463013,0.00024331062741111964,-0.010220860131084919,0.008625670336186886,0.0056592026,-0.0020065536 +illusion_1L,ppo,164,49.2,0.8762057423591614,0.3551478385925293,0.9961321949958801,0.6207001805305481,1.107602596282959,0.40647777915000916,0.0019029112299904227,-0.0006979060126468539,0.001311135245487094,0.002015726873651147,0.0025345024187117815,-0.0033584837801754475,-0.03615251183509827,-1.0696139335632324,0.8976809978485107,-0.00036152510438114405,-0.010696139186620712,0.008976809680461884,0.005730923,-0.0021015848 +illusion_1L,ppo,165,49.5,0.8172878623008728,0.33373916149139404,0.9892506003379822,0.654775857925415,1.1717387437820435,0.4256071448326111,0.0018854383379220963,-0.0005881644319742918,0.0014274736167863011,0.0020502745173871517,0.00240200012922287,-0.0033924949821084738,-0.12108173966407776,-1.0561109781265259,0.8561142683029175,-0.0012108173687011003,-0.010561109520494938,0.008561142720282078,0.005774289,-0.002069496 +illusion_1L,ppo,166,49.8,0.7559691071510315,0.2834266722202301,0.9658879637718201,0.6635687947273254,1.245539665222168,0.44204840064048767,0.0018759651575237513,-0.0004536293854471296,0.0015373043715953827,0.002160195726901293,0.0022728852927684784,-0.0033888951875269413,-0.2264728546142578,-0.9867532253265381,0.7772119045257568,-0.0022647285368293524,-0.009867532178759575,0.0077721187844872475,0.005751272,-0.0019115016 +illusion_1L,ppo,167,50.1,0.7002671360969543,0.19611750543117523,0.9200124144554138,0.5797866582870483,1.3317952156066895,0.445936381816864,0.0018808071035891771,-0.0002924301370512694,0.0016446904046460986,0.002319083781912923,0.002146981656551361,-0.0033235354349017143,-0.3251093626022339,-0.8932092189788818,0.7208367586135864,-0.003251093439757824,-0.008932092227041721,0.007208367343991995,0.0056986394,-0.0016364414 +illusion_1L,ppo,168,50.4,0.663193941116333,0.07571233063936234,0.8668493628501892,0.35160547494888306,1.4095971584320068,0.39069855213165283,0.0018944090697914362,-0.00011634789552772418,0.0017554911319166422,0.0025024961214512587,0.0020163783337920904,-0.0032068081200122833,-0.3730930685997009,-0.8301687836647034,0.7010059356689453,-0.003730930620804429,-0.0083016874268651,0.007010059431195259,0.005654868,-0.0012603556 +illusion_1L,ppo,169,50.7,0.6592637896537781,-0.05510314181447029,0.8351341485977173,0.020262420177459717,1.4135056734085083,0.19454829394817352,0.001910471124574542,4.794530832441524e-05,0.0018601175397634506,0.002698924159631133,0.0018726278794929385,-0.003054704749956727,-0.3196961283683777,-0.8365094661712646,0.6621654033660889,-0.003196961246430874,-0.008365094661712646,0.00662165367975831,0.00560533,-0.00080561376 +illusion_1L,ppo,170,51.0,0.6968444585800171,-0.1608664095401764,0.8356606364250183,-0.31344425678253174,1.336517333984375,-0.08462752401828766,0.0019067556131631136,0.00017032894538715482,0.0019518299959599972,0.0029059958178550005,0.0017363324295729399,-0.0028596052434295416,-0.12401881814002991,-0.9092099070549011,0.544278621673584,-0.0012401881394907832,-0.009092099033296108,0.005442786030471325,0.0055567,-0.0002996367 +illusion_1L,ppo,171,51.3,0.7638612389564514,-0.22484588623046875,0.8606735467910767,-0.5539774894714355,1.2416516542434692,-0.2940971255302429,0.0018959082663059235,0.00019676405645441264,0.0020265430212020874,0.0031201569363474846,0.001650249701924622,-0.002610529540106654,0.18052291870117188,-1.0208290815353394,0.39002299308776855,0.0018052291125059128,-0.010208291001617908,0.0039002299308776855,0.00555566,0.00022671974 +illusion_1L,ppo,172,51.6,0.8350314497947693,-0.2666654586791992,0.8976188898086548,-0.6425665020942688,1.156031847000122,-0.390595942735672,0.0018779619131237268,0.0001344893389614299,0.0020734856370836496,0.0033389993477612734,0.0016255764057859778,-0.0023229802027344704,0.4511496126651764,-1.1106960773468018,0.32405054569244385,0.004511496052145958,-0.011106960475444794,0.0032405054662376642,0.005592211,0.00074102887 +illusion_1L,ppo,173,51.9,0.8998384475708008,-0.3018222153186798,0.9343082904815674,-0.6290770769119263,1.085924744606018,-0.4142662286758423,0.0018777891527861357,1.8950802768813446e-05,0.002082051942124963,0.003545875661075115,0.0016445956425741315,-0.002042669104412198,0.6046539545059204,-1.1266705989837646,0.39806437492370605,0.0060465396381914616,-0.011266705580055714,0.003980643581598997,0.005606894,0.0012112933 +illusion_1L,ppo,174,52.2,0.9601721167564392,-0.3310689330101013,0.9634255170822144,-0.6093350648880005,1.0268430709838867,-0.41582629084587097,0.0019164785044267774,-0.00010595894127618521,0.0020463678520172834,0.0037078524474054575,0.001684481743723154,-0.0018059221329167485,0.6564724445343018,-1.0775692462921143,0.5641998052597046,0.006564724259078503,-0.010775691829621792,0.005641997791826725,0.005605696,0.0016079579 +illusion_1L,ppo,175,52.5,1.0185682773590088,-0.35518842935562134,0.9854376316070557,-0.610083818435669,0.9716078639030457,-0.41549691557884216,0.0019951609428972006,-0.0002162922901334241,0.0019721246790140867,0.0038088622968643904,0.001738369232043624,-0.0016268505714833736,0.6875020265579224,-1.030869960784912,0.743516206741333,0.006875019986182451,-0.010308699682354927,0.007435162086039782,0.005637507,0.0019058085 +illusion_1L,ppo,176,52.8,1.0774829387664795,-0.3756331503391266,1.0025639533996582,-0.6280944347381592,0.9149261713027954,-0.4114891588687897,0.0020908815786242485,-0.00032032723538577557,0.001859205192886293,0.003866378916427493,0.0018031675135716796,-0.0015202261274680495,0.7341642379760742,-1.0134831666946411,0.9033464789390564,0.007341642398387194,-0.010134831070899963,0.009033464826643467,0.0056829797,0.0020856273 +illusion_1L,ppo,177,53.1,1.1393821239471436,-0.39279690384864807,1.0141668319702148,-0.6573034524917603,0.8537753224372864,-0.3934367895126343,0.002184563782066107,-0.0004207949968986213,0.0017162696458399296,0.0039031775668263435,0.0018750176532194018,-0.0015122891636565328,0.795548141002655,-1.013732671737671,1.031823754310608,0.007955481298267841,-0.010137326084077358,0.010318237356841564,0.00569963,0.0021354957 +illusion_1L,ppo,178,53.4,1.2073670625686646,-0.40569326281547546,1.014426827430725,-0.676201581954956,0.7883816361427307,-0.3468324840068817,0.0022616072092205286,-0.0005314504378475249,0.001550931017845869,0.003914819099009037,0.001959197223186493,-0.0016246908344328403,0.870617687702179,-1.0323967933654785,1.117226481437683,0.008706176653504372,-0.010323967784643173,0.011172264814376831,0.0057153716,0.0020516485 +illusion_1L,ppo,179,53.7,1.284145712852478,-0.40973517298698425,0.9935897588729858,-0.6253535151481628,0.7247992157936096,-0.2587275505065918,0.00233254861086607,-0.0006423201994039118,0.0013757217675447464,0.00390482391230762,0.0020652394741773605,-0.001843928243033588,0.9335343241691589,-1.0761605501174927,1.1471428871154785,0.009335342794656754,-0.010761605575680733,0.011471428908407688,0.005750198,0.0018388144 +illusion_1L,ppo,180,54.0,1.3657811880111694,-0.3867597281932831,0.9563853740692139,-0.4366496801376343,0.676805853843689,-0.12874643504619598,0.00239181169308722,-0.0007439606124535203,0.0011797602055594325,0.0038742648903280497,0.002181574236601591,-0.0021475229877978563,0.9390479326248169,-1.0956438779830933,1.149436354637146,0.009390478953719139,-0.01095643825829029,0.011494363658130169,0.0057426365,0.001510008 +illusion_1L,ppo,181,54.3,1.4037541151046753,-0.28017255663871765,0.9207742214202881,-0.12124556303024292,0.6564732789993286,0.023576725274324417,0.0024185101501643658,-0.0008167498745024204,0.0009730919264256954,0.0037818371783941984,0.00228713802061975,-0.002490772632881999,0.8373858332633972,-0.99819016456604,1.127455234527588,0.008373858407139778,-0.00998190138489008,0.011274551972746849,0.0056657945,0.0010857797 +illusion_1L,ppo,182,54.6,1.3501845598220825,-0.062065888196229935,0.9081010818481445,0.2222837507724762,0.6796727180480957,0.15652096271514893,0.002405834384262562,-0.0008523679571226239,0.0008072666241787374,0.0036118486896157265,0.0023873820900917053,-0.002841876819729805,0.6615067720413208,-0.8261812329292297,1.0524908304214478,0.00661506736651063,-0.008261811919510365,0.01052490808069706,0.0055913585,0.0005929587 +illusion_1L,ppo,183,54.9,1.2399553060531616,0.16361922025680542,0.9157098531723022,0.4864123463630676,0.7411482930183411,0.23731465637683868,0.0023356694728136063,-0.0008628424257040024,0.0007164459675550461,0.0033621382899582386,0.0024815485812723637,-0.0031484595965594053,0.4696960151195526,-0.6720695495605469,0.898544430732727,0.004696960095316172,-0.006720695178955793,0.008985443972051144,0.005558367,6.296794e-05 +illusion_1L,ppo,184,55.2,1.1403566598892212,0.2979344129562378,0.934598982334137,0.5971574783325195,0.8153479099273682,0.27904799580574036,0.0022316689137369394,-0.0008741634082980454,0.0007163829286582768,0.003067439654842019,0.0025602607056498528,-0.0033541107550263405,0.2898188531398773,-0.5855872631072998,0.7192902565002441,0.002898188540711999,-0.005855872295796871,0.0071929022669792175,0.005529783,-0.00047018455 +illusion_1L,ppo,185,55.5,1.0685862302780151,0.3476201593875885,0.9559522271156311,0.5931086540222168,0.8831574320793152,0.3096295893192291,0.002114291302859783,-0.0008736097952350974,0.0007995768683031201,0.0027605898212641478,0.0026307692751288414,-0.003436469938606024,0.16194698214530945,-0.6079076528549194,0.6158521175384521,0.001619469840079546,-0.006079076323658228,0.006158520933240652,0.005518456,-0.00097210804 +illusion_1L,ppo,186,55.8,1.0145820379257202,0.3605438470840454,0.9737678170204163,0.5728099346160889,0.9438760280609131,0.3359411358833313,0.0020197220146656036,-0.0008604516624473035,0.000928676628973335,0.0024676050525158644,0.0026817875914275646,-0.0034200723748654127,0.11146441102027893,-0.7471849918365479,0.6298521757125854,0.0011146441102027893,-0.007471849676221609,0.006298521533608437,0.0055791065,-0.0014102785 +illusion_1L,ppo,187,56.1,0.9662240743637085,0.3659481704235077,0.9866850972175598,0.5709033012390137,1.000152826309204,0.358488529920578,0.001954224891960621,-0.0008300349581986666,0.0010614906204864383,0.002226113574579358,0.0026827172841876745,-0.0033649750985205173,0.07814836502075195,-0.9072760343551636,0.7316226959228516,0.0007814836571924388,-0.009072760120034218,0.007316226605325937,0.005670758,-0.0017561849 +illusion_1L,ppo,188,56.4,0.9168629050254822,0.36895284056663513,0.9958147406578064,0.5858397483825684,1.0547534227371216,0.37880146503448486,0.0019175080815330148,-0.0007718991255387664,0.001185080618597567,0.0020621304865926504,0.0026191838551312685,-0.0033300702925771475,0.03148326277732849,-1.0167031288146973,0.8342153429985046,0.000314832606818527,-0.010167030617594719,0.008342153392732143,0.0057079745,-0.0019872256 +illusion_1L,ppo,189,56.7,0.8635438084602356,0.3639286756515503,1.0011107921600342,0.6142444610595703,1.11068594455719,0.39790457487106323,0.001899890135973692,-0.000689289125148207,0.0013065533712506294,0.001988934352993965,0.0025156887713819742,-0.0033358661457896233,-0.03197100758552551,-1.0645712614059448,0.8716495037078857,-0.00031971005955711007,-0.010645712725818157,0.008716494776308537,0.005710372,-0.0020882254 +illusion_1L,ppo,190,57.0,0.8054360747337341,0.3407408595085144,0.9994234442710876,0.6477915644645691,1.1715229749679565,0.41583964228630066,0.0018869106424972415,-0.0005852899048477411,0.0014269170351326466,0.002013381104916334,0.002401878358796239,-0.0033552139066159725,-0.11503410339355469,-1.0646356344223022,0.8383611440658569,-0.0011503410059958696,-0.010646356269717216,0.008383611217141151,0.0057321466,-0.0020524657 +illusion_1L,ppo,191,57.3,0.7451804280281067,0.28742867708206177,0.9820777177810669,0.6564492583274841,1.241263508796692,0.43111932277679443,0.0018837535753846169,-0.00045562104787677526,0.0015423872973769903,0.0021268988493829966,0.0022894777357578278,-0.0033452853094786406,-0.21327388286590576,-1.0180519819259644,0.7708007097244263,-0.002132738707587123,-0.01018051989376545,0.007708007004112005,0.0057346243,-0.0018821575 +illusion_1L,ppo,192,57.6,0.6906348466873169,0.19587494432926178,0.9411415457725525,0.5756361484527588,1.3227633237838745,0.436367392539978,0.001885890611447394,-0.00030011284979991615,0.0016496297903358936,0.0023006380070000887,0.0021708346903324127,-0.0032867605332285166,-0.3069308400154114,-0.9386156797409058,0.7180297374725342,-0.003069308353587985,-0.009386156685650349,0.007180297281593084,0.005685303,-0.0015883193 +illusion_1L,ppo,193,57.9,0.6547849774360657,0.07126495987176895,0.888537585735321,0.35336834192276,1.4002913236618042,0.39620858430862427,0.0018888411577790976,-0.00013043850776739419,0.001749461516737938,0.0025036558508872986,0.0020355002488940954,-0.0031804507598280907,-0.35369670391082764,-0.8805968761444092,0.6888132095336914,-0.003536966862156987,-0.008805968798696995,0.006888132076710463,0.005649801,-0.0011900691 +illusion_1L,ppo,194,58.2,0.652053952217102,-0.06242414936423302,0.8521170020103455,0.02583063393831253,1.4123765230178833,0.2308337688446045,0.0018910988001152873,2.974779090436641e-05,0.001846704282797873,0.0027233038563281298,0.0018889611819759011,-0.0030341683886945248,-0.30317223072052,-0.8873937129974365,0.6445415019989014,-0.003031722269952297,-0.008873936720192432,0.00644541485235095,0.005654963,-0.00071337377 +illusion_1L,ppo,195,58.5,0.6907974481582642,-0.1679493486881256,0.8458161354064941,-0.30641335248947144,1.3316282033920288,-0.04117949679493904,0.0018957752035930753,0.00014415492478292435,0.0019308098126202822,0.002950916299596429,0.0017543939175084233,-0.002845075912773609,-0.11593396216630936,-0.9562932252883911,0.5326290130615234,-0.0011593395611271262,-0.009562931954860687,0.005326290149241686,0.0056272005,-0.00018934083 +illusion_1L,ppo,196,58.8,0.7589043378829956,-0.22998899221420288,0.8646189570426941,-0.5466326475143433,1.2257533073425293,-0.2668115794658661,0.0018841626588255167,0.00017668961663730443,0.0020056047942489386,0.0031884319614619017,0.0016688760370016098,-0.0025997008197009563,0.18197757005691528,-1.059913158416748,0.37721121311187744,0.0018197756726294756,-0.01059913169592619,0.00377211207523942,0.005556741,0.0003478314 +illusion_1L,ppo,197,59.1,0.830513060092926,-0.26969319581985474,0.897228479385376,-0.6331993937492371,1.137140154838562,-0.3766300678253174,0.0018693951424211264,0.00011939444812014699,0.0020576431415975094,0.003428629133850336,0.0016477233730256557,-0.0023118441458791494,0.46344056725502014,-1.1374861001968384,0.305462121963501,0.0046344054862856865,-0.011374861001968384,0.0030546211637556553,0.005530434,0.00086310843 +illusion_1L,ppo,198,59.4,0.8955591917037964,-0.3037020266056061,0.9315017461776733,-0.6195032596588135,1.0696609020233154,-0.4054071009159088,0.0018792886985465884,5.458007763081696e-06,0.002076365053653717,0.0036486296448856592,0.0016703830333426595,-0.002029733033850789,0.6207501888275146,-1.134333848953247,0.3951835632324219,0.006207501981407404,-0.011343338526785374,0.003951835446059704,0.0055591958,0.0013229257 +illusion_1L,ppo,199,59.7,0.9558433890342712,-0.33245930075645447,0.9592204689979553,-0.6006561517715454,1.014907956123352,-0.4072258472442627,0.001921981805935502,-0.00011847623682115227,0.0020474784541875124,0.0038109489250928164,0.001702801208011806,-0.0017978326650336385,0.6690402626991272,-1.0673247575759888,0.5886151790618896,0.006690402515232563,-0.010673247277736664,0.00588615145534277,0.0055792513,0.0016973914 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv new file mode 100644 index 0000000..b61dc18 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_dtw_convergence.csv @@ -0,0 +1,6 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +illusion_1L,sr,72,21.6,36,0.9394599837962434,10,0.9700160357687209,0.9371565629133127,0.9107589456770155,0.9199253047247313,0.9368091937568452,0.962093859936835 +illusion_1L,sr,108,32.4,36,0.9570596843259409,-6,0.9731157736645805,0.9701952039936764,0.8944508300887214,0.9530694021119012,0.9746883461872736,0.9768385499094924 +illusion_1L,sr,144,43.2,36,0.9356807006816208,2,0.9615942256318198,0.9581109056663182,0.8249744971593221,0.9364346408595642,0.9613198339939117,0.9716501007787883 +illusion_1L,sr,180,54.0,36,0.9261327358725356,10,0.9632589866717657,0.9482978919097351,0.8001785725355148,0.9424466273469281,0.9332091195715798,0.9694052171996899 +illusion_1L,sr,200,60.0,36,0.9217303237038087,3,0.9637112004889382,0.9560219088776244,0.7709939976533254,0.9182358270336408,0.9581615030765533,0.9632575050927699 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_long.csv new file mode 100644 index 0000000..709eaee --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_long.csv @@ -0,0 +1,4001 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,sr,0,0.0,velocity,upper_ux,0.8128896951675415 +illusion_1L,sr,0,0.0,velocity,upper_uy,0.27295929193496704 +illusion_1L,sr,0,0.0,velocity,center_ux,0.9321024417877197 +illusion_1L,sr,0,0.0,velocity,center_uy,0.546302855014801 +illusion_1L,sr,0,0.0,velocity,lower_ux,1.1039224863052368 +illusion_1L,sr,0,0.0,velocity,lower_uy,0.3189709782600403 +illusion_1L,sr,1,0.3,velocity,upper_ux,0.7723796367645264 +illusion_1L,sr,1,0.3,velocity,upper_uy,0.21021384000778198 +illusion_1L,sr,1,0.3,velocity,center_ux,0.9313374757766724 +illusion_1L,sr,1,0.3,velocity,center_uy,0.5450034737586975 +illusion_1L,sr,1,0.3,velocity,lower_ux,1.1593849658966064 +illusion_1L,sr,1,0.3,velocity,lower_uy,0.3316703140735626 +illusion_1L,sr,2,0.6,velocity,upper_ux,0.7409915924072266 +illusion_1L,sr,2,0.6,velocity,upper_uy,0.13363228738307953 +illusion_1L,sr,2,0.6,velocity,center_ux,0.9087691307067871 +illusion_1L,sr,2,0.6,velocity,center_uy,0.49309834837913513 +illusion_1L,sr,2,0.6,velocity,lower_ux,1.2200008630752563 +illusion_1L,sr,2,0.6,velocity,lower_uy,0.3371610939502716 +illusion_1L,sr,3,0.9,velocity,upper_ux,0.7308571934700012 +illusion_1L,sr,3,0.9,velocity,upper_uy,0.051917023956775665 +illusion_1L,sr,3,0.9,velocity,center_ux,0.8627607226371765 +illusion_1L,sr,3,0.9,velocity,center_uy,0.3599072992801666 +illusion_1L,sr,3,0.9,velocity,lower_ux,1.2855759859085083 +illusion_1L,sr,3,0.9,velocity,lower_uy,0.33032065629959106 +illusion_1L,sr,4,1.2,velocity,upper_ux,0.7490007281303406 +illusion_1L,sr,4,1.2,velocity,upper_uy,-0.020728349685668945 +illusion_1L,sr,4,1.2,velocity,center_ux,0.8035467267036438 +illusion_1L,sr,4,1.2,velocity,center_uy,0.1421334147453308 +illusion_1L,sr,4,1.2,velocity,lower_ux,1.3485203981399536 +illusion_1L,sr,4,1.2,velocity,lower_uy,0.29828763008117676 +illusion_1L,sr,5,1.5,velocity,upper_ux,0.7873564958572388 +illusion_1L,sr,5,1.5,velocity,upper_uy,-0.07953356951475143 +illusion_1L,sr,5,1.5,velocity,center_ux,0.7524595856666565 +illusion_1L,sr,5,1.5,velocity,center_uy,-0.1243288666009903 +illusion_1L,sr,5,1.5,velocity,lower_ux,1.383505940437317 +illusion_1L,sr,5,1.5,velocity,lower_uy,0.2159450799226761 +illusion_1L,sr,6,1.8,velocity,upper_ux,0.8308911919593811 +illusion_1L,sr,6,1.8,velocity,upper_uy,-0.1318424940109253 +illusion_1L,sr,6,1.8,velocity,center_ux,0.7333779335021973 +illusion_1L,sr,6,1.8,velocity,center_uy,-0.36627432703971863 +illusion_1L,sr,6,1.8,velocity,lower_ux,1.3498297929763794 +illusion_1L,sr,6,1.8,velocity,lower_uy,0.060965366661548615 +illusion_1L,sr,7,2.1,velocity,upper_ux,0.8754022121429443 +illusion_1L,sr,7,2.1,velocity,upper_uy,-0.1806657463312149 +illusion_1L,sr,7,2.1,velocity,center_ux,0.7611335515975952 +illusion_1L,sr,7,2.1,velocity,center_uy,-0.4987647533416748 +illusion_1L,sr,7,2.1,velocity,lower_ux,1.2384228706359863 +illusion_1L,sr,7,2.1,velocity,lower_uy,-0.13657236099243164 +illusion_1L,sr,8,2.4,velocity,upper_ux,0.9178608059883118 +illusion_1L,sr,8,2.4,velocity,upper_uy,-0.22222428023815155 +illusion_1L,sr,8,2.4,velocity,center_ux,0.8150809407234192 +illusion_1L,sr,8,2.4,velocity,center_uy,-0.5174622535705566 +illusion_1L,sr,8,2.4,velocity,lower_ux,1.0923079252243042 +illusion_1L,sr,8,2.4,velocity,lower_uy,-0.29285481572151184 +illusion_1L,sr,9,2.7,velocity,upper_ux,0.9628998637199402 +illusion_1L,sr,9,2.7,velocity,upper_uy,-0.2563496530056 +illusion_1L,sr,9,2.7,velocity,center_ux,0.8650445342063904 +illusion_1L,sr,9,2.7,velocity,center_uy,-0.5107206106185913 +illusion_1L,sr,9,2.7,velocity,lower_ux,0.976986289024353 +illusion_1L,sr,9,2.7,velocity,lower_uy,-0.3570994436740875 +illusion_1L,sr,10,3.0,velocity,upper_ux,1.0092304944992065 +illusion_1L,sr,10,3.0,velocity,upper_uy,-0.28404155373573303 +illusion_1L,sr,10,3.0,velocity,center_ux,0.8999271392822266 +illusion_1L,sr,10,3.0,velocity,center_uy,-0.5175997018814087 +illusion_1L,sr,10,3.0,velocity,lower_ux,0.9040133953094482 +illusion_1L,sr,10,3.0,velocity,lower_uy,-0.3515065908432007 +illusion_1L,sr,11,3.3,velocity,upper_ux,1.0574411153793335 +illusion_1L,sr,11,3.3,velocity,upper_uy,-0.30632102489471436 +illusion_1L,sr,11,3.3,velocity,center_ux,0.923369824886322 +illusion_1L,sr,11,3.3,velocity,center_uy,-0.5347291231155396 +illusion_1L,sr,11,3.3,velocity,lower_ux,0.8538809418678284 +illusion_1L,sr,11,3.3,velocity,lower_uy,-0.3167727291584015 +illusion_1L,sr,12,3.6,velocity,upper_ux,1.1091244220733643 +illusion_1L,sr,12,3.6,velocity,upper_uy,-0.3237028121948242 +illusion_1L,sr,12,3.6,velocity,center_ux,0.9363011717796326 +illusion_1L,sr,12,3.6,velocity,center_uy,-0.5524300932884216 +illusion_1L,sr,12,3.6,velocity,lower_ux,0.808786153793335 +illusion_1L,sr,12,3.6,velocity,lower_uy,-0.2685866057872772 +illusion_1L,sr,13,3.9,velocity,upper_ux,1.1656627655029297 +illusion_1L,sr,13,3.9,velocity,upper_uy,-0.33553704619407654 +illusion_1L,sr,13,3.9,velocity,center_ux,0.9344321489334106 +illusion_1L,sr,13,3.9,velocity,center_uy,-0.5503189563751221 +illusion_1L,sr,13,3.9,velocity,lower_ux,0.7658510208129883 +illusion_1L,sr,13,3.9,velocity,lower_uy,-0.20596157014369965 +illusion_1L,sr,14,4.2,velocity,upper_ux,1.2284355163574219 +illusion_1L,sr,14,4.2,velocity,upper_uy,-0.3397369980812073 +illusion_1L,sr,14,4.2,velocity,center_ux,0.9110795259475708 +illusion_1L,sr,14,4.2,velocity,center_uy,-0.49480897188186646 +illusion_1L,sr,14,4.2,velocity,lower_ux,0.7325156927108765 +illusion_1L,sr,14,4.2,velocity,lower_uy,-0.1286732405424118 +illusion_1L,sr,15,4.5,velocity,upper_ux,1.2987544536590576 +illusion_1L,sr,15,4.5,velocity,upper_uy,-0.3311539590358734 +illusion_1L,sr,15,4.5,velocity,center_ux,0.8662837743759155 +illusion_1L,sr,15,4.5,velocity,center_uy,-0.3564164340496063 +illusion_1L,sr,15,4.5,velocity,lower_ux,0.7216537594795227 +illusion_1L,sr,15,4.5,velocity,lower_uy,-0.04591009393334389 +illusion_1L,sr,16,4.8,velocity,upper_ux,1.361159086227417 +illusion_1L,sr,16,4.8,velocity,upper_uy,-0.2939559817314148 +illusion_1L,sr,16,4.8,velocity,center_ux,0.8070753812789917 +illusion_1L,sr,16,4.8,velocity,center_uy,-0.13253268599510193 +illusion_1L,sr,16,4.8,velocity,lower_ux,0.7358075976371765 +illusion_1L,sr,16,4.8,velocity,lower_uy,0.02837866172194481 +illusion_1L,sr,17,5.1,velocity,upper_ux,1.3936597108840942 +illusion_1L,sr,17,5.1,velocity,upper_uy,-0.2025659829378128 +illusion_1L,sr,17,5.1,velocity,center_ux,0.7600427269935608 +illusion_1L,sr,17,5.1,velocity,center_uy,0.13514535129070282 +illusion_1L,sr,17,5.1,velocity,lower_ux,0.7705187797546387 +illusion_1L,sr,17,5.1,velocity,lower_uy,0.08883789926767349 +illusion_1L,sr,18,5.4,velocity,upper_ux,1.3517279624938965 +illusion_1L,sr,18,5.4,velocity,upper_uy,-0.037496816366910934 +illusion_1L,sr,18,5.4,velocity,center_ux,0.7464601397514343 +illusion_1L,sr,18,5.4,velocity,center_uy,0.3686800003051758 +illusion_1L,sr,18,5.4,velocity,lower_ux,0.8099538683891296 +illusion_1L,sr,18,5.4,velocity,lower_uy,0.1417679488658905 +illusion_1L,sr,19,5.7,velocity,upper_ux,1.2334918975830078 +illusion_1L,sr,19,5.7,velocity,upper_uy,0.15739792585372925 +illusion_1L,sr,19,5.7,velocity,center_ux,0.7753278613090515 +illusion_1L,sr,19,5.7,velocity,center_uy,0.4857333302497864 +illusion_1L,sr,19,5.7,velocity,lower_ux,0.8484610319137573 +illusion_1L,sr,19,5.7,velocity,lower_uy,0.19031774997711182 +illusion_1L,sr,20,6.0,velocity,upper_ux,1.1004118919372559 +illusion_1L,sr,20,6.0,velocity,upper_uy,0.2946741580963135 +illusion_1L,sr,20,6.0,velocity,center_ux,0.829054594039917 +illusion_1L,sr,20,6.0,velocity,center_uy,0.49159708619117737 +illusion_1L,sr,20,6.0,velocity,lower_ux,0.8885165452957153 +illusion_1L,sr,20,6.0,velocity,lower_uy,0.23296162486076355 +illusion_1L,sr,21,6.3,velocity,upper_ux,1.0023610591888428 +illusion_1L,sr,21,6.3,velocity,upper_uy,0.33876070380210876 +illusion_1L,sr,21,6.3,velocity,center_ux,0.8741258978843689 +illusion_1L,sr,21,6.3,velocity,center_uy,0.4687771201133728 +illusion_1L,sr,21,6.3,velocity,lower_ux,0.9270864725112915 +illusion_1L,sr,21,6.3,velocity,lower_uy,0.2688024640083313 +illusion_1L,sr,22,6.6,velocity,upper_ux,0.9434919953346252 +illusion_1L,sr,22,6.6,velocity,upper_uy,0.32429569959640503 +illusion_1L,sr,22,6.6,velocity,center_ux,0.9012900590896606 +illusion_1L,sr,22,6.6,velocity,center_uy,0.45637771487236023 +illusion_1L,sr,22,6.6,velocity,lower_ux,0.963575541973114 +illusion_1L,sr,22,6.6,velocity,lower_uy,0.2996264100074768 +illusion_1L,sr,23,6.9,velocity,upper_ux,0.9052640795707703 +illusion_1L,sr,23,6.9,velocity,upper_uy,0.29061517119407654 +illusion_1L,sr,23,6.9,velocity,center_ux,0.9163095951080322 +illusion_1L,sr,23,6.9,velocity,center_uy,0.4553188979625702 +illusion_1L,sr,23,6.9,velocity,lower_ux,1.0012704133987427 +illusion_1L,sr,23,6.9,velocity,lower_uy,0.3283819854259491 +illusion_1L,sr,24,7.2,velocity,upper_ux,0.8707051873207092 +illusion_1L,sr,24,7.2,velocity,upper_uy,0.24937701225280762 +illusion_1L,sr,24,7.2,velocity,center_ux,0.9194257855415344 +illusion_1L,sr,24,7.2,velocity,center_uy,0.4623238742351532 +illusion_1L,sr,24,7.2,velocity,lower_ux,1.0396652221679688 +illusion_1L,sr,24,7.2,velocity,lower_uy,0.35609912872314453 +illusion_1L,sr,25,7.5,velocity,upper_ux,0.8363755345344543 +illusion_1L,sr,25,7.5,velocity,upper_uy,0.20056270062923431 +illusion_1L,sr,25,7.5,velocity,center_ux,0.9099544286727905 +illusion_1L,sr,25,7.5,velocity,center_uy,0.474461168050766 +illusion_1L,sr,25,7.5,velocity,lower_ux,1.0802754163742065 +illusion_1L,sr,25,7.5,velocity,lower_uy,0.38355839252471924 +illusion_1L,sr,26,7.8,velocity,upper_ux,0.8056237697601318 +illusion_1L,sr,26,7.8,velocity,upper_uy,0.14418992400169373 +illusion_1L,sr,26,7.8,velocity,center_ux,0.8852495551109314 +illusion_1L,sr,26,7.8,velocity,center_uy,0.4830882251262665 +illusion_1L,sr,26,7.8,velocity,lower_ux,1.1254335641860962 +illusion_1L,sr,26,7.8,velocity,lower_uy,0.410978764295578 +illusion_1L,sr,27,8.1,velocity,upper_ux,0.7846283912658691 +illusion_1L,sr,27,8.1,velocity,upper_uy,0.08371827751398087 +illusion_1L,sr,27,8.1,velocity,center_ux,0.841677725315094 +illusion_1L,sr,27,8.1,velocity,center_uy,0.46858692169189453 +illusion_1L,sr,27,8.1,velocity,lower_ux,1.1771650314331055 +illusion_1L,sr,27,8.1,velocity,lower_uy,0.4373326003551483 +illusion_1L,sr,28,8.4,velocity,upper_ux,0.7773318290710449 +illusion_1L,sr,28,8.4,velocity,upper_uy,0.02303444780409336 +illusion_1L,sr,28,8.4,velocity,center_ux,0.7778517007827759 +illusion_1L,sr,28,8.4,velocity,center_uy,0.4028041958808899 +illusion_1L,sr,28,8.4,velocity,lower_ux,1.235916256904602 +illusion_1L,sr,28,8.4,velocity,lower_uy,0.4588630199432373 +illusion_1L,sr,29,8.7,velocity,upper_ux,0.7822845578193665 +illusion_1L,sr,29,8.7,velocity,upper_uy,-0.03647495433688164 +illusion_1L,sr,29,8.7,velocity,center_ux,0.7000035047531128 +illusion_1L,sr,29,8.7,velocity,center_uy,0.26637721061706543 +illusion_1L,sr,29,8.7,velocity,lower_ux,1.295516014099121 +illusion_1L,sr,29,8.7,velocity,lower_uy,0.46443837881088257 +illusion_1L,sr,30,9.0,velocity,upper_ux,0.7950735688209534 +illusion_1L,sr,30,9.0,velocity,upper_uy,-0.09608080983161926 +illusion_1L,sr,30,9.0,velocity,center_ux,0.6224331855773926 +illusion_1L,sr,30,9.0,velocity,center_uy,0.06572670489549637 +illusion_1L,sr,30,9.0,velocity,lower_ux,1.337294578552246 +illusion_1L,sr,30,9.0,velocity,lower_uy,0.42959147691726685 +illusion_1L,sr,31,9.3,velocity,upper_ux,0.8138003945350647 +illusion_1L,sr,31,9.3,velocity,upper_uy,-0.15552841126918793 +illusion_1L,sr,31,9.3,velocity,center_ux,0.5644582509994507 +illusion_1L,sr,31,9.3,velocity,center_uy,-0.16615411639213562 +illusion_1L,sr,31,9.3,velocity,lower_ux,1.3301982879638672 +illusion_1L,sr,31,9.3,velocity,lower_uy,0.31770965456962585 +illusion_1L,sr,32,9.6,velocity,upper_ux,0.8387725949287415 +illusion_1L,sr,32,9.6,velocity,upper_uy,-0.21211108565330505 +illusion_1L,sr,32,9.6,velocity,center_ux,0.5446239709854126 +illusion_1L,sr,32,9.6,velocity,center_uy,-0.3773209750652313 +illusion_1L,sr,32,9.6,velocity,lower_ux,1.2521790266036987 +illusion_1L,sr,32,9.6,velocity,lower_uy,0.10899698734283447 +illusion_1L,sr,33,9.9,velocity,upper_ux,0.8700262308120728 +illusion_1L,sr,33,9.9,velocity,upper_uy,-0.26403412222862244 +illusion_1L,sr,33,9.9,velocity,center_ux,0.5713829398155212 +illusion_1L,sr,33,9.9,velocity,center_uy,-0.5198965072631836 +illusion_1L,sr,33,9.9,velocity,lower_ux,1.1199795007705688 +illusion_1L,sr,33,9.9,velocity,lower_uy,-0.15773500502109528 +illusion_1L,sr,34,10.2,velocity,upper_ux,0.9070367217063904 +illusion_1L,sr,34,10.2,velocity,upper_uy,-0.3108106553554535 +illusion_1L,sr,34,10.2,velocity,center_ux,0.6298251152038574 +illusion_1L,sr,34,10.2,velocity,center_uy,-0.5912621021270752 +illusion_1L,sr,34,10.2,velocity,lower_ux,0.9776210784912109 +illusion_1L,sr,34,10.2,velocity,lower_uy,-0.3975749611854553 +illusion_1L,sr,35,10.5,velocity,upper_ux,0.9490530490875244 +illusion_1L,sr,35,10.5,velocity,upper_uy,-0.3525206744670868 +illusion_1L,sr,35,10.5,velocity,center_ux,0.6913567781448364 +illusion_1L,sr,35,10.5,velocity,center_uy,-0.6326394081115723 +illusion_1L,sr,35,10.5,velocity,lower_ux,0.8624522686004639 +illusion_1L,sr,35,10.5,velocity,lower_uy,-0.5416670441627502 +illusion_1L,sr,36,10.8,velocity,upper_ux,0.995349645614624 +illusion_1L,sr,36,10.8,velocity,upper_uy,-0.38949236273765564 +illusion_1L,sr,36,10.8,velocity,center_ux,0.7433369159698486 +illusion_1L,sr,36,10.8,velocity,center_uy,-0.6696876883506775 +illusion_1L,sr,36,10.8,velocity,lower_ux,0.7877528071403503 +illusion_1L,sr,36,10.8,velocity,lower_uy,-0.5823526382446289 +illusion_1L,sr,37,11.1,velocity,upper_ux,1.0452849864959717 +illusion_1L,sr,37,11.1,velocity,upper_uy,-0.42204421758651733 +illusion_1L,sr,37,11.1,velocity,center_ux,0.7850447297096252 +illusion_1L,sr,37,11.1,velocity,center_uy,-0.7050000429153442 +illusion_1L,sr,37,11.1,velocity,lower_ux,0.7395002841949463 +illusion_1L,sr,37,11.1,velocity,lower_uy,-0.5639756321907043 +illusion_1L,sr,38,11.4,velocity,upper_ux,1.099031925201416 +illusion_1L,sr,38,11.4,velocity,upper_uy,-0.45077478885650635 +illusion_1L,sr,38,11.4,velocity,center_ux,0.8162937760353088 +illusion_1L,sr,38,11.4,velocity,center_uy,-0.7308676242828369 +illusion_1L,sr,38,11.4,velocity,lower_ux,0.6965837478637695 +illusion_1L,sr,38,11.4,velocity,lower_uy,-0.5237399339675903 +illusion_1L,sr,39,11.7,velocity,upper_ux,1.1571111679077148 +illusion_1L,sr,39,11.7,velocity,upper_uy,-0.4758147597312927 +illusion_1L,sr,39,11.7,velocity,center_ux,0.8340368866920471 +illusion_1L,sr,39,11.7,velocity,center_uy,-0.7293323874473572 +illusion_1L,sr,39,11.7,velocity,lower_ux,0.6507762670516968 +illusion_1L,sr,39,11.7,velocity,lower_uy,-0.46693527698516846 +illusion_1L,sr,40,12.0,velocity,upper_ux,1.2200580835342407 +illusion_1L,sr,40,12.0,velocity,upper_uy,-0.49640944600105286 +illusion_1L,sr,40,12.0,velocity,center_ux,0.8335853815078735 +illusion_1L,sr,40,12.0,velocity,center_uy,-0.6790778636932373 +illusion_1L,sr,40,12.0,velocity,lower_ux,0.6047407984733582 +illusion_1L,sr,40,12.0,velocity,lower_uy,-0.38483163714408875 +illusion_1L,sr,41,12.3,velocity,upper_ux,1.286743402481079 +illusion_1L,sr,41,12.3,velocity,upper_uy,-0.5086413621902466 +illusion_1L,sr,41,12.3,velocity,center_ux,0.8126958012580872 +illusion_1L,sr,41,12.3,velocity,center_uy,-0.5705915689468384 +illusion_1L,sr,41,12.3,velocity,lower_ux,0.5658138394355774 +illusion_1L,sr,41,12.3,velocity,lower_uy,-0.27251771092414856 +illusion_1L,sr,42,12.6,velocity,upper_ux,1.3522080183029175 +illusion_1L,sr,42,12.6,velocity,upper_uy,-0.5009872317314148 +illusion_1L,sr,42,12.6,velocity,center_ux,0.7752780914306641 +illusion_1L,sr,42,12.6,velocity,center_uy,-0.40747594833374023 +illusion_1L,sr,42,12.6,velocity,lower_ux,0.5426698923110962 +illusion_1L,sr,42,12.6,velocity,lower_uy,-0.13539476692676544 +illusion_1L,sr,43,12.9,velocity,upper_ux,1.3908183574676514 +illusion_1L,sr,43,12.9,velocity,upper_uy,-0.4436657130718231 +illusion_1L,sr,43,12.9,velocity,center_ux,0.7261965274810791 +illusion_1L,sr,43,12.9,velocity,center_uy,-0.1906185746192932 +illusion_1L,sr,43,12.9,velocity,lower_ux,0.5400965213775635 +illusion_1L,sr,43,12.9,velocity,lower_uy,0.011157975532114506 +illusion_1L,sr,44,13.2,velocity,upper_ux,1.3816815614700317 +illusion_1L,sr,44,13.2,velocity,upper_uy,-0.30114510655403137 +illusion_1L,sr,44,13.2,velocity,center_ux,0.6842390894889832 +illusion_1L,sr,44,13.2,velocity,center_uy,0.06611666083335876 +illusion_1L,sr,44,13.2,velocity,lower_ux,0.5685754418373108 +illusion_1L,sr,44,13.2,velocity,lower_uy,0.13969598710536957 +illusion_1L,sr,45,13.5,velocity,upper_ux,1.3068660497665405 +illusion_1L,sr,45,13.5,velocity,upper_uy,-0.05864393711090088 +illusion_1L,sr,45,13.5,velocity,center_ux,0.660070538520813 +illusion_1L,sr,45,13.5,velocity,center_uy,0.3339936137199402 +illusion_1L,sr,45,13.5,velocity,lower_ux,0.6280248761177063 +illusion_1L,sr,45,13.5,velocity,lower_uy,0.22687090933322906 +illusion_1L,sr,46,13.8,velocity,upper_ux,1.1914863586425781 +illusion_1L,sr,46,13.8,velocity,upper_uy,0.22283557057380676 +illusion_1L,sr,46,13.8,velocity,center_ux,0.6607775092124939 +illusion_1L,sr,46,13.8,velocity,center_uy,0.5655673742294312 +illusion_1L,sr,46,13.8,velocity,lower_ux,0.7022657990455627 +illusion_1L,sr,46,13.8,velocity,lower_uy,0.27991482615470886 +illusion_1L,sr,47,14.1,velocity,upper_ux,1.0757222175598145 +illusion_1L,sr,47,14.1,velocity,upper_uy,0.45165297389030457 +illusion_1L,sr,47,14.1,velocity,center_ux,0.6932917833328247 +illusion_1L,sr,47,14.1,velocity,center_uy,0.696639358997345 +illusion_1L,sr,47,14.1,velocity,lower_ux,0.7736415863037109 +illusion_1L,sr,47,14.1,velocity,lower_uy,0.32320910692214966 +illusion_1L,sr,48,14.4,velocity,upper_ux,0.9812275171279907 +illusion_1L,sr,48,14.4,velocity,upper_uy,0.5731037259101868 +illusion_1L,sr,48,14.4,velocity,center_ux,0.7477430105209351 +illusion_1L,sr,48,14.4,velocity,center_uy,0.7264226675033569 +illusion_1L,sr,48,14.4,velocity,lower_ux,0.8398810029029846 +illusion_1L,sr,48,14.4,velocity,lower_uy,0.36249321699142456 +illusion_1L,sr,49,14.7,velocity,upper_ux,0.9138535857200623 +illusion_1L,sr,49,14.7,velocity,upper_uy,0.5937198400497437 +illusion_1L,sr,49,14.7,velocity,center_ux,0.8012492656707764 +illusion_1L,sr,49,14.7,velocity,center_uy,0.730029284954071 +illusion_1L,sr,49,14.7,velocity,lower_ux,0.9041051268577576 +illusion_1L,sr,49,14.7,velocity,lower_uy,0.3953026235103607 +illusion_1L,sr,50,15.0,velocity,upper_ux,0.8618540167808533 +illusion_1L,sr,50,15.0,velocity,upper_uy,0.5694268345832825 +illusion_1L,sr,50,15.0,velocity,center_ux,0.8460102081298828 +illusion_1L,sr,50,15.0,velocity,center_uy,0.7428085803985596 +illusion_1L,sr,50,15.0,velocity,lower_ux,0.9676438570022583 +illusion_1L,sr,50,15.0,velocity,lower_uy,0.4217710494995117 +illusion_1L,sr,51,15.3,velocity,upper_ux,0.8093137741088867 +illusion_1L,sr,51,15.3,velocity,upper_uy,0.5366841554641724 +illusion_1L,sr,51,15.3,velocity,center_ux,0.8837475776672363 +illusion_1L,sr,51,15.3,velocity,center_uy,0.7612671852111816 +illusion_1L,sr,51,15.3,velocity,lower_ux,1.0316373109817505 +illusion_1L,sr,51,15.3,velocity,lower_uy,0.4428979456424713 +illusion_1L,sr,52,15.6,velocity,upper_ux,0.7509990930557251 +illusion_1L,sr,52,15.6,velocity,upper_uy,0.49302318692207336 +illusion_1L,sr,52,15.6,velocity,center_ux,0.9130233526229858 +illusion_1L,sr,52,15.6,velocity,center_uy,0.7701777219772339 +illusion_1L,sr,52,15.6,velocity,lower_ux,1.0968563556671143 +illusion_1L,sr,52,15.6,velocity,lower_uy,0.4591429531574249 +illusion_1L,sr,53,15.9,velocity,upper_ux,0.6900292038917542 +illusion_1L,sr,53,15.9,velocity,upper_uy,0.4221786558628082 +illusion_1L,sr,53,15.9,velocity,center_ux,0.9276241064071655 +illusion_1L,sr,53,15.9,velocity,center_uy,0.7428886890411377 +illusion_1L,sr,53,15.9,velocity,lower_ux,1.164796233177185 +illusion_1L,sr,53,15.9,velocity,lower_uy,0.47043609619140625 +illusion_1L,sr,54,16.2,velocity,upper_ux,0.6348261833190918 +illusion_1L,sr,54,16.2,velocity,upper_uy,0.3142656683921814 +illusion_1L,sr,54,16.2,velocity,center_ux,0.9202286601066589 +illusion_1L,sr,54,16.2,velocity,center_uy,0.6566435694694519 +illusion_1L,sr,54,16.2,velocity,lower_ux,1.2360866069793701 +illusion_1L,sr,54,16.2,velocity,lower_uy,0.4750921130180359 +illusion_1L,sr,55,16.5,velocity,upper_ux,0.5944786071777344 +illusion_1L,sr,55,16.5,velocity,upper_uy,0.17245972156524658 +illusion_1L,sr,55,16.5,velocity,center_ux,0.8890767693519592 +illusion_1L,sr,55,16.5,velocity,center_uy,0.5085055828094482 +illusion_1L,sr,55,16.5,velocity,lower_ux,1.309516191482544 +illusion_1L,sr,55,16.5,velocity,lower_uy,0.46726176142692566 +illusion_1L,sr,56,16.8,velocity,upper_ux,0.5782482624053955 +illusion_1L,sr,56,16.8,velocity,upper_uy,0.01470527146011591 +illusion_1L,sr,56,16.8,velocity,center_ux,0.8395418524742126 +illusion_1L,sr,56,16.8,velocity,center_uy,0.2992718517780304 +illusion_1L,sr,56,16.8,velocity,lower_ux,1.3753029108047485 +illusion_1L,sr,56,16.8,velocity,lower_uy,0.43086984753608704 +illusion_1L,sr,57,17.1,velocity,upper_ux,0.5952457189559937 +illusion_1L,sr,57,17.1,velocity,upper_uy,-0.12907683849334717 +illusion_1L,sr,57,17.1,velocity,center_ux,0.7860816717147827 +illusion_1L,sr,57,17.1,velocity,center_uy,0.030501283705234528 +illusion_1L,sr,57,17.1,velocity,lower_ux,1.4094340801239014 +illusion_1L,sr,57,17.1,velocity,lower_uy,0.3358270823955536 +illusion_1L,sr,58,17.4,velocity,upper_ux,0.6479537487030029 +illusion_1L,sr,58,17.4,velocity,upper_uy,-0.2286936193704605 +illusion_1L,sr,58,17.4,velocity,center_ux,0.7476193308830261 +illusion_1L,sr,58,17.4,velocity,center_uy,-0.26371490955352783 +illusion_1L,sr,58,17.4,velocity,lower_ux,1.3798657655715942 +illusion_1L,sr,58,17.4,velocity,lower_uy,0.15364617109298706 +illusion_1L,sr,59,17.7,velocity,upper_ux,0.7205972075462341 +illusion_1L,sr,59,17.7,velocity,upper_uy,-0.2855395972728729 +illusion_1L,sr,59,17.7,velocity,center_ux,0.7367646098136902 +illusion_1L,sr,59,17.7,velocity,center_uy,-0.5155377984046936 +illusion_1L,sr,59,17.7,velocity,lower_ux,1.278872013092041 +illusion_1L,sr,59,17.7,velocity,lower_uy,-0.09313691407442093 +illusion_1L,sr,60,18.0,velocity,upper_ux,0.7925513386726379 +illusion_1L,sr,60,18.0,velocity,upper_uy,-0.32622572779655457 +illusion_1L,sr,60,18.0,velocity,center_ux,0.7594590187072754 +illusion_1L,sr,60,18.0,velocity,center_uy,-0.649154782295227 +illusion_1L,sr,60,18.0,velocity,lower_ux,1.147264838218689 +illusion_1L,sr,60,18.0,velocity,lower_uy,-0.31346604228019714 +illusion_1L,sr,61,18.3,velocity,upper_ux,0.858812153339386 +illusion_1L,sr,61,18.3,velocity,upper_uy,-0.3615114688873291 +illusion_1L,sr,61,18.3,velocity,center_ux,0.8030211329460144 +illusion_1L,sr,61,18.3,velocity,center_uy,-0.6730414628982544 +illusion_1L,sr,61,18.3,velocity,lower_ux,1.0316123962402344 +illusion_1L,sr,61,18.3,velocity,lower_uy,-0.4352858066558838 +illusion_1L,sr,62,18.6,velocity,upper_ux,0.9216757416725159 +illusion_1L,sr,62,18.6,velocity,upper_uy,-0.39059481024742126 +illusion_1L,sr,62,18.6,velocity,center_ux,0.844308614730835 +illusion_1L,sr,62,18.6,velocity,center_uy,-0.6715264916419983 +illusion_1L,sr,62,18.6,velocity,lower_ux,0.9486421942710876 +illusion_1L,sr,62,18.6,velocity,lower_uy,-0.4635296165943146 +illusion_1L,sr,63,18.9,velocity,upper_ux,0.9829035401344299 +illusion_1L,sr,63,18.9,velocity,upper_uy,-0.4138187766075134 +illusion_1L,sr,63,18.9,velocity,center_ux,0.8766939043998718 +illusion_1L,sr,63,18.9,velocity,center_uy,-0.6814239025115967 +illusion_1L,sr,63,18.9,velocity,lower_ux,0.8877416253089905 +illusion_1L,sr,63,18.9,velocity,lower_uy,-0.4472188949584961 +illusion_1L,sr,64,19.2,velocity,upper_ux,1.0441163778305054 +illusion_1L,sr,64,19.2,velocity,upper_uy,-0.4320872128009796 +illusion_1L,sr,64,19.2,velocity,center_ux,0.9025746583938599 +illusion_1L,sr,64,19.2,velocity,center_uy,-0.6998558044433594 +illusion_1L,sr,64,19.2,velocity,lower_ux,0.8314464092254639 +illusion_1L,sr,64,19.2,velocity,lower_uy,-0.41809722781181335 +illusion_1L,sr,65,19.5,velocity,upper_ux,1.1066030263900757 +illusion_1L,sr,65,19.5,velocity,upper_uy,-0.44578680396080017 +illusion_1L,sr,65,19.5,velocity,center_ux,0.9214485883712769 +illusion_1L,sr,65,19.5,velocity,center_uy,-0.7119035124778748 +illusion_1L,sr,65,19.5,velocity,lower_ux,0.7720345258712769 +illusion_1L,sr,65,19.5,velocity,lower_uy,-0.3773864209651947 +illusion_1L,sr,66,19.8,velocity,upper_ux,1.1717026233673096 +illusion_1L,sr,66,19.8,velocity,upper_uy,-0.4546774923801422 +illusion_1L,sr,66,19.8,velocity,center_ux,0.927846372127533 +illusion_1L,sr,66,19.8,velocity,center_uy,-0.6905584931373596 +illusion_1L,sr,66,19.8,velocity,lower_ux,0.7112077474594116 +illusion_1L,sr,66,19.8,velocity,lower_uy,-0.31460249423980713 +illusion_1L,sr,67,20.1,velocity,upper_ux,1.2400953769683838 +illusion_1L,sr,67,20.1,velocity,upper_uy,-0.4572715163230896 +illusion_1L,sr,67,20.1,velocity,center_ux,0.9143587350845337 +illusion_1L,sr,67,20.1,velocity,center_uy,-0.6106522083282471 +illusion_1L,sr,67,20.1,velocity,lower_ux,0.6566053032875061 +illusion_1L,sr,67,20.1,velocity,lower_uy,-0.22277432680130005 +illusion_1L,sr,68,20.4,velocity,upper_ux,1.310591220855713 +illusion_1L,sr,68,20.4,velocity,upper_uy,-0.4489768445491791 +illusion_1L,sr,68,20.4,velocity,center_ux,0.8779172897338867 +illusion_1L,sr,68,20.4,velocity,center_uy,-0.46815353631973267 +illusion_1L,sr,68,20.4,velocity,lower_ux,0.6191500425338745 +illusion_1L,sr,68,20.4,velocity,lower_uy,-0.10637688636779785 +illusion_1L,sr,69,20.7,velocity,upper_ux,1.3757855892181396 +illusion_1L,sr,69,20.7,velocity,upper_uy,-0.41797327995300293 +illusion_1L,sr,69,20.7,velocity,center_ux,0.8218610286712646 +illusion_1L,sr,69,20.7,velocity,center_uy,-0.26732558012008667 +illusion_1L,sr,69,20.7,velocity,lower_ux,0.6103709936141968 +illusion_1L,sr,69,20.7,velocity,lower_uy,0.016444623470306396 +illusion_1L,sr,70,21.0,velocity,upper_ux,1.4164890050888062 +illusion_1L,sr,70,21.0,velocity,upper_uy,-0.3411896526813507 +illusion_1L,sr,70,21.0,velocity,center_ux,0.7585675120353699 +illusion_1L,sr,70,21.0,velocity,center_uy,-0.011470970697700977 +illusion_1L,sr,70,21.0,velocity,lower_ux,0.6372418999671936 +illusion_1L,sr,70,21.0,velocity,lower_uy,0.12048374116420746 +illusion_1L,sr,71,21.3,velocity,upper_ux,1.4023443460464478 +illusion_1L,sr,71,21.3,velocity,upper_uy,-0.19050239026546478 +illusion_1L,sr,71,21.3,velocity,center_ux,0.708433210849762 +illusion_1L,sr,71,21.3,velocity,center_uy,0.26965272426605225 +illusion_1L,sr,71,21.3,velocity,lower_ux,0.6917951703071594 +illusion_1L,sr,71,21.3,velocity,lower_uy,0.19401876628398895 +illusion_1L,sr,72,21.6,velocity,upper_ux,1.312192440032959 +illusion_1L,sr,72,21.6,velocity,upper_uy,0.03359455242753029 +illusion_1L,sr,72,21.6,velocity,center_ux,0.6910811066627502 +illusion_1L,sr,72,21.6,velocity,center_uy,0.5079251527786255 +illusion_1L,sr,72,21.6,velocity,lower_ux,0.7542215585708618 +illusion_1L,sr,72,21.6,velocity,lower_uy,0.24951176345348358 +illusion_1L,sr,73,21.9,velocity,upper_ux,1.1721129417419434 +illusion_1L,sr,73,21.9,velocity,upper_uy,0.26228228211402893 +illusion_1L,sr,73,21.9,velocity,center_ux,0.7167466282844543 +illusion_1L,sr,73,21.9,velocity,center_uy,0.6303304433822632 +illusion_1L,sr,73,21.9,velocity,lower_ux,0.8144398927688599 +illusion_1L,sr,73,21.9,velocity,lower_uy,0.29823732376098633 +illusion_1L,sr,74,22.2,velocity,upper_ux,1.0379924774169922 +illusion_1L,sr,74,22.2,velocity,upper_uy,0.40920960903167725 +illusion_1L,sr,74,22.2,velocity,center_ux,0.767699658870697 +illusion_1L,sr,74,22.2,velocity,center_uy,0.6517654657363892 +illusion_1L,sr,74,22.2,velocity,lower_ux,0.8729679584503174 +illusion_1L,sr,74,22.2,velocity,lower_uy,0.3395932912826538 +illusion_1L,sr,75,22.5,velocity,upper_ux,0.9412761330604553 +illusion_1L,sr,75,22.5,velocity,upper_uy,0.4546813368797302 +illusion_1L,sr,75,22.5,velocity,center_ux,0.8146438598632812 +illusion_1L,sr,75,22.5,velocity,center_uy,0.6535871624946594 +illusion_1L,sr,75,22.5,velocity,lower_ux,0.9307869672775269 +illusion_1L,sr,75,22.5,velocity,lower_uy,0.37302321195602417 +illusion_1L,sr,76,22.8,velocity,upper_ux,0.8764024972915649 +illusion_1L,sr,76,22.8,velocity,upper_uy,0.44087111949920654 +illusion_1L,sr,76,22.8,velocity,center_ux,0.8502522706985474 +illusion_1L,sr,76,22.8,velocity,center_uy,0.6670601963996887 +illusion_1L,sr,76,22.8,velocity,lower_ux,0.9883909225463867 +illusion_1L,sr,76,22.8,velocity,lower_uy,0.39963820576667786 +illusion_1L,sr,77,23.1,velocity,upper_ux,0.8220532536506653 +illusion_1L,sr,77,23.1,velocity,upper_uy,0.4079154133796692 +illusion_1L,sr,77,23.1,velocity,center_ux,0.8775426149368286 +illusion_1L,sr,77,23.1,velocity,center_uy,0.6878051161766052 +illusion_1L,sr,77,23.1,velocity,lower_ux,1.0465244054794312 +illusion_1L,sr,77,23.1,velocity,lower_uy,0.4203852415084839 +illusion_1L,sr,78,23.4,velocity,upper_ux,0.7660179138183594 +illusion_1L,sr,78,23.4,velocity,upper_uy,0.3642118573188782 +illusion_1L,sr,78,23.4,velocity,center_ux,0.8970207571983337 +illusion_1L,sr,78,23.4,velocity,center_uy,0.700799822807312 +illusion_1L,sr,78,23.4,velocity,lower_ux,1.1063097715377808 +illusion_1L,sr,78,23.4,velocity,lower_uy,0.4356672167778015 +illusion_1L,sr,79,23.7,velocity,upper_ux,0.7085517048835754 +illusion_1L,sr,79,23.7,velocity,upper_uy,0.3018569052219391 +illusion_1L,sr,79,23.7,velocity,center_ux,0.9046145677566528 +illusion_1L,sr,79,23.7,velocity,center_uy,0.6797184944152832 +illusion_1L,sr,79,23.7,velocity,lower_ux,1.168914794921875 +illusion_1L,sr,79,23.7,velocity,lower_uy,0.44524145126342773 +illusion_1L,sr,80,24.0,velocity,upper_ux,0.6571377515792847 +illusion_1L,sr,80,24.0,velocity,upper_uy,0.21436955034732819 +illusion_1L,sr,80,24.0,velocity,center_ux,0.8941333889961243 +illusion_1L,sr,80,24.0,velocity,center_uy,0.6011922359466553 +illusion_1L,sr,80,24.0,velocity,lower_ux,1.2348289489746094 +illusion_1L,sr,80,24.0,velocity,lower_uy,0.44780150055885315 +illusion_1L,sr,81,24.3,velocity,upper_ux,0.6227133870124817 +illusion_1L,sr,81,24.3,velocity,upper_uy,0.1055128425359726 +illusion_1L,sr,81,24.3,velocity,center_ux,0.8623068332672119 +illusion_1L,sr,81,24.3,velocity,center_uy,0.4634628891944885 +illusion_1L,sr,81,24.3,velocity,lower_ux,1.3027427196502686 +illusion_1L,sr,81,24.3,velocity,lower_uy,0.43964695930480957 +illusion_1L,sr,82,24.6,velocity,upper_ux,0.616635262966156 +illusion_1L,sr,82,24.6,velocity,upper_uy,-0.008377938531339169 +illusion_1L,sr,82,24.6,velocity,center_ux,0.8103222250938416 +illusion_1L,sr,82,24.6,velocity,center_uy,0.27302733063697815 +illusion_1L,sr,82,24.6,velocity,lower_ux,1.3664557933807373 +illusion_1L,sr,82,24.6,velocity,lower_uy,0.41179996728897095 +illusion_1L,sr,83,24.9,velocity,upper_ux,0.6456722617149353 +illusion_1L,sr,83,24.9,velocity,upper_uy,-0.10502206534147263 +illusion_1L,sr,83,24.9,velocity,center_ux,0.7485677003860474 +illusion_1L,sr,83,24.9,velocity,center_uy,0.032270397990942 +illusion_1L,sr,83,24.9,velocity,lower_ux,1.4129817485809326 +illusion_1L,sr,83,24.9,velocity,lower_uy,0.34796255826950073 +illusion_1L,sr,84,25.2,velocity,upper_ux,0.6968142986297607 +illusion_1L,sr,84,25.2,velocity,upper_uy,-0.17609284818172455 +illusion_1L,sr,84,25.2,velocity,center_ux,0.691712498664856 +illusion_1L,sr,84,25.2,velocity,center_uy,-0.2380773425102234 +illusion_1L,sr,84,25.2,velocity,lower_ux,1.4106215238571167 +illusion_1L,sr,84,25.2,velocity,lower_uy,0.2240380346775055 +illusion_1L,sr,85,25.5,velocity,upper_ux,0.7548640370368958 +illusion_1L,sr,85,25.5,velocity,upper_uy,-0.23382341861724854 +illusion_1L,sr,85,25.5,velocity,center_ux,0.6656914353370667 +illusion_1L,sr,85,25.5,velocity,center_uy,-0.4780222475528717 +illusion_1L,sr,85,25.5,velocity,lower_ux,1.3412292003631592 +illusion_1L,sr,85,25.5,velocity,lower_uy,0.031240997835993767 +illusion_1L,sr,86,25.8,velocity,upper_ux,0.8111616373062134 +illusion_1L,sr,86,25.8,velocity,upper_uy,-0.2857076823711395 +illusion_1L,sr,86,25.8,velocity,center_ux,0.6849478483200073 +illusion_1L,sr,86,25.8,velocity,center_uy,-0.6126589179039001 +illusion_1L,sr,86,25.8,velocity,lower_ux,1.2076894044876099 +illusion_1L,sr,86,25.8,velocity,lower_uy,-0.19194971024990082 +illusion_1L,sr,87,26.1,velocity,upper_ux,0.8670369386672974 +illusion_1L,sr,87,26.1,velocity,upper_uy,-0.32988184690475464 +illusion_1L,sr,87,26.1,velocity,center_ux,0.7357378005981445 +illusion_1L,sr,87,26.1,velocity,center_uy,-0.6427220106124878 +illusion_1L,sr,87,26.1,velocity,lower_ux,1.0598608255386353 +illusion_1L,sr,87,26.1,velocity,lower_uy,-0.36342906951904297 +illusion_1L,sr,88,26.4,velocity,upper_ux,0.9235583543777466 +illusion_1L,sr,88,26.4,velocity,upper_uy,-0.36594489216804504 +illusion_1L,sr,88,26.4,velocity,center_ux,0.7858302593231201 +illusion_1L,sr,88,26.4,velocity,center_uy,-0.6462082862854004 +illusion_1L,sr,88,26.4,velocity,lower_ux,0.9438936114311218 +illusion_1L,sr,88,26.4,velocity,lower_uy,-0.4374775290489197 +illusion_1L,sr,89,26.7,velocity,upper_ux,0.9805063009262085 +illusion_1L,sr,89,26.7,velocity,upper_uy,-0.3948705792427063 +illusion_1L,sr,89,26.7,velocity,center_ux,0.8236883282661438 +illusion_1L,sr,89,26.7,velocity,center_uy,-0.6601775288581848 +illusion_1L,sr,89,26.7,velocity,lower_ux,0.8684895038604736 +illusion_1L,sr,89,26.7,velocity,lower_uy,-0.43622949719429016 +illusion_1L,sr,90,27.0,velocity,upper_ux,1.0382550954818726 +illusion_1L,sr,90,27.0,velocity,upper_uy,-0.4176084101200104 +illusion_1L,sr,90,27.0,velocity,center_ux,0.8520030975341797 +illusion_1L,sr,90,27.0,velocity,center_uy,-0.6815072894096375 +illusion_1L,sr,90,27.0,velocity,lower_ux,0.8135692477226257 +illusion_1L,sr,90,27.0,velocity,lower_uy,-0.4038676917552948 +illusion_1L,sr,91,27.3,velocity,upper_ux,1.0974611043930054 +illusion_1L,sr,91,27.3,velocity,upper_uy,-0.4345049560070038 +illusion_1L,sr,91,27.3,velocity,center_ux,0.871809184551239 +illusion_1L,sr,91,27.3,velocity,center_uy,-0.6961783766746521 +illusion_1L,sr,91,27.3,velocity,lower_ux,0.7610312104225159 +illusion_1L,sr,91,27.3,velocity,lower_uy,-0.35913991928100586 +illusion_1L,sr,92,27.6,velocity,upper_ux,1.1589093208312988 +illusion_1L,sr,92,27.6,velocity,upper_uy,-0.44529566168785095 +illusion_1L,sr,92,27.6,velocity,center_ux,0.8801855444908142 +illusion_1L,sr,92,27.6,velocity,center_uy,-0.6793339252471924 +illusion_1L,sr,92,27.6,velocity,lower_ux,0.7068925499916077 +illusion_1L,sr,92,27.6,velocity,lower_uy,-0.29885968565940857 +illusion_1L,sr,93,27.9,velocity,upper_ux,1.2231296300888062 +illusion_1L,sr,93,27.9,velocity,upper_uy,-0.44877806305885315 +illusion_1L,sr,93,27.9,velocity,center_ux,0.8723353147506714 +illusion_1L,sr,93,27.9,velocity,center_uy,-0.6072346568107605 +illusion_1L,sr,93,27.9,velocity,lower_ux,0.6572663187980652 +illusion_1L,sr,93,27.9,velocity,lower_uy,-0.21697430312633514 +illusion_1L,sr,94,28.2,velocity,upper_ux,1.2889567613601685 +illusion_1L,sr,94,28.2,velocity,upper_uy,-0.44189998507499695 +illusion_1L,sr,94,28.2,velocity,center_ux,0.845370888710022 +illusion_1L,sr,94,28.2,velocity,center_uy,-0.47760239243507385 +illusion_1L,sr,94,28.2,velocity,lower_ux,0.6230213642120361 +illusion_1L,sr,94,28.2,velocity,lower_uy,-0.11586148291826248 +illusion_1L,sr,95,28.5,velocity,upper_ux,1.3516136407852173 +illusion_1L,sr,95,28.5,velocity,upper_uy,-0.4176984429359436 +illusion_1L,sr,95,28.5,velocity,center_ux,0.7990907430648804 +illusion_1L,sr,95,28.5,velocity,center_uy,-0.2995254397392273 +illusion_1L,sr,95,28.5,velocity,lower_ux,0.6156673431396484 +illusion_1L,sr,95,28.5,velocity,lower_uy,-0.008857419714331627 +illusion_1L,sr,96,28.8,velocity,upper_ux,1.3987083435058594 +illusion_1L,sr,96,28.8,velocity,upper_uy,-0.36350876092910767 +illusion_1L,sr,96,28.8,velocity,center_ux,0.7388070821762085 +illusion_1L,sr,96,28.8,velocity,center_uy,-0.07594653218984604 +illusion_1L,sr,96,28.8,velocity,lower_ux,0.6412491798400879 +illusion_1L,sr,96,28.8,velocity,lower_uy,0.08392557501792908 +illusion_1L,sr,97,29.1,velocity,upper_ux,1.411010503768921 +illusion_1L,sr,97,29.1,velocity,upper_uy,-0.2622958719730377 +illusion_1L,sr,97,29.1,velocity,center_ux,0.6793093085289001 +illusion_1L,sr,97,29.1,velocity,center_uy,0.18160191178321838 +illusion_1L,sr,97,29.1,velocity,lower_ux,0.6906481385231018 +illusion_1L,sr,97,29.1,velocity,lower_uy,0.15479525923728943 +illusion_1L,sr,98,29.4,velocity,upper_ux,1.3655908107757568 +illusion_1L,sr,98,29.4,velocity,upper_uy,-0.09963130950927734 +illusion_1L,sr,98,29.4,velocity,center_ux,0.6426244378089905 +illusion_1L,sr,98,29.4,velocity,center_uy,0.4278848171234131 +illusion_1L,sr,98,29.4,velocity,lower_ux,0.7460853457450867 +illusion_1L,sr,98,29.4,velocity,lower_uy,0.21417178213596344 +illusion_1L,sr,99,29.7,velocity,upper_ux,1.251230001449585 +illusion_1L,sr,99,29.7,velocity,upper_uy,0.11132526397705078 +illusion_1L,sr,99,29.7,velocity,center_ux,0.6499773859977722 +illusion_1L,sr,99,29.7,velocity,center_uy,0.588417649269104 +illusion_1L,sr,99,29.7,velocity,lower_ux,0.7995607256889343 +illusion_1L,sr,99,29.7,velocity,lower_uy,0.26890119910240173 +illusion_1L,sr,100,30.0,velocity,upper_ux,1.098459243774414 +illusion_1L,sr,100,30.0,velocity,upper_uy,0.30717870593070984 +illusion_1L,sr,100,30.0,velocity,center_ux,0.6976110935211182 +illusion_1L,sr,100,30.0,velocity,center_uy,0.6374461054801941 +illusion_1L,sr,100,30.0,velocity,lower_ux,0.8527882099151611 +illusion_1L,sr,100,30.0,velocity,lower_uy,0.31639692187309265 +illusion_1L,sr,101,30.3,velocity,upper_ux,0.9630040526390076 +illusion_1L,sr,101,30.3,velocity,upper_uy,0.4215991497039795 +illusion_1L,sr,101,30.3,velocity,center_ux,0.753354549407959 +illusion_1L,sr,101,30.3,velocity,center_uy,0.6439120769500732 +illusion_1L,sr,101,30.3,velocity,lower_ux,0.9087082147598267 +illusion_1L,sr,101,30.3,velocity,lower_uy,0.3560560345649719 +illusion_1L,sr,102,30.6,velocity,upper_ux,0.8684698343276978 +illusion_1L,sr,102,30.6,velocity,upper_uy,0.4446113705635071 +illusion_1L,sr,102,30.6,velocity,center_ux,0.7945992350578308 +illusion_1L,sr,102,30.6,velocity,center_uy,0.6555474400520325 +illusion_1L,sr,102,30.6,velocity,lower_ux,0.962841272354126 +illusion_1L,sr,102,30.6,velocity,lower_uy,0.3870120048522949 +illusion_1L,sr,103,30.9,velocity,upper_ux,0.8089230060577393 +illusion_1L,sr,103,30.9,velocity,upper_uy,0.4185134768486023 +illusion_1L,sr,103,30.9,velocity,center_ux,0.8266376852989197 +illusion_1L,sr,103,30.9,velocity,center_uy,0.6770735383033752 +illusion_1L,sr,103,30.9,velocity,lower_ux,1.019981026649475 +illusion_1L,sr,103,30.9,velocity,lower_uy,0.41204676032066345 +illusion_1L,sr,104,31.2,velocity,upper_ux,0.7594558000564575 +illusion_1L,sr,104,31.2,velocity,upper_uy,0.3744804859161377 +illusion_1L,sr,104,31.2,velocity,center_ux,0.850098729133606 +illusion_1L,sr,104,31.2,velocity,center_uy,0.6956396698951721 +illusion_1L,sr,104,31.2,velocity,lower_ux,1.078723669052124 +illusion_1L,sr,104,31.2,velocity,lower_uy,0.4309106469154358 +illusion_1L,sr,105,31.5,velocity,upper_ux,0.7089967131614685 +illusion_1L,sr,105,31.5,velocity,upper_uy,0.3173128068447113 +illusion_1L,sr,105,31.5,velocity,center_ux,0.8632495403289795 +illusion_1L,sr,105,31.5,velocity,center_uy,0.6893981695175171 +illusion_1L,sr,105,31.5,velocity,lower_ux,1.139435887336731 +illusion_1L,sr,105,31.5,velocity,lower_uy,0.4434232711791992 +illusion_1L,sr,106,31.8,velocity,upper_ux,0.660999596118927 +illusion_1L,sr,106,31.8,velocity,upper_uy,0.24170757830142975 +illusion_1L,sr,106,31.8,velocity,center_ux,0.8633086085319519 +illusion_1L,sr,106,31.8,velocity,center_uy,0.6338375210762024 +illusion_1L,sr,106,31.8,velocity,lower_ux,1.2044477462768555 +illusion_1L,sr,106,31.8,velocity,lower_uy,0.449405312538147 +illusion_1L,sr,107,32.1,velocity,upper_ux,0.6217647790908813 +illusion_1L,sr,107,32.1,velocity,upper_uy,0.1456901729106903 +illusion_1L,sr,107,32.1,velocity,center_ux,0.8426375985145569 +illusion_1L,sr,107,32.1,velocity,center_uy,0.5176587700843811 +illusion_1L,sr,107,32.1,velocity,lower_ux,1.2668571472167969 +illusion_1L,sr,107,32.1,velocity,lower_uy,0.44426071643829346 +illusion_1L,sr,108,32.4,velocity,upper_ux,0.606677770614624 +illusion_1L,sr,108,32.4,velocity,upper_uy,0.040421608835458755 +illusion_1L,sr,108,32.4,velocity,center_ux,0.8047423958778381 +illusion_1L,sr,108,32.4,velocity,center_uy,0.3550507426261902 +illusion_1L,sr,108,32.4,velocity,lower_ux,1.3292937278747559 +illusion_1L,sr,108,32.4,velocity,lower_uy,0.4252369701862335 +illusion_1L,sr,109,32.7,velocity,upper_ux,0.6235945820808411 +illusion_1L,sr,109,32.7,velocity,upper_uy,-0.05589601397514343 +illusion_1L,sr,109,32.7,velocity,center_ux,0.7501530647277832 +illusion_1L,sr,109,32.7,velocity,center_uy,0.15115505456924438 +illusion_1L,sr,109,32.7,velocity,lower_ux,1.3808826208114624 +illusion_1L,sr,109,32.7,velocity,lower_uy,0.38236671686172485 +illusion_1L,sr,110,33.0,velocity,upper_ux,0.6684010028839111 +illusion_1L,sr,110,33.0,velocity,upper_uy,-0.1308763176202774 +illusion_1L,sr,110,33.0,velocity,center_ux,0.6886183619499207 +illusion_1L,sr,110,33.0,velocity,center_uy,-0.09062770754098892 +illusion_1L,sr,110,33.0,velocity,lower_ux,1.4067763090133667 +illusion_1L,sr,110,33.0,velocity,lower_uy,0.30295076966285706 +illusion_1L,sr,111,33.3,velocity,upper_ux,0.7238542437553406 +illusion_1L,sr,111,33.3,velocity,upper_uy,-0.1917029470205307 +illusion_1L,sr,111,33.3,velocity,center_ux,0.6391711831092834 +illusion_1L,sr,111,33.3,velocity,center_uy,-0.3432524502277374 +illusion_1L,sr,111,33.3,velocity,lower_ux,1.3886420726776123 +illusion_1L,sr,111,33.3,velocity,lower_uy,0.17377950251102448 +illusion_1L,sr,112,33.6,velocity,upper_ux,0.7775906920433044 +illusion_1L,sr,112,33.6,velocity,upper_uy,-0.24835212528705597 +illusion_1L,sr,112,33.6,velocity,center_ux,0.6263180375099182 +illusion_1L,sr,112,33.6,velocity,center_uy,-0.5408605337142944 +illusion_1L,sr,112,33.6,velocity,lower_ux,1.308240532875061 +illusion_1L,sr,112,33.6,velocity,lower_uy,-0.008061346597969532 +illusion_1L,sr,113,33.9,velocity,upper_ux,0.8298845291137695 +illusion_1L,sr,113,33.9,velocity,upper_uy,-0.2994382977485657 +illusion_1L,sr,113,33.9,velocity,center_ux,0.6608530282974243 +illusion_1L,sr,113,33.9,velocity,center_uy,-0.6270778179168701 +illusion_1L,sr,113,33.9,velocity,lower_ux,1.1692949533462524 +illusion_1L,sr,113,33.9,velocity,lower_uy,-0.21049658954143524 +illusion_1L,sr,114,34.2,velocity,upper_ux,0.8829631805419922 +illusion_1L,sr,114,34.2,velocity,upper_uy,-0.34226638078689575 +illusion_1L,sr,114,34.2,velocity,center_ux,0.7169427275657654 +illusion_1L,sr,114,34.2,velocity,center_uy,-0.639198362827301 +illusion_1L,sr,114,34.2,velocity,lower_ux,1.0148046016693115 +illusion_1L,sr,114,34.2,velocity,lower_uy,-0.36690565943717957 +illusion_1L,sr,115,34.5,velocity,upper_ux,0.9372698068618774 +illusion_1L,sr,115,34.5,velocity,upper_uy,-0.3771441578865051 +illusion_1L,sr,115,34.5,velocity,center_ux,0.7643879055976868 +illusion_1L,sr,115,34.5,velocity,center_uy,-0.6472653746604919 +illusion_1L,sr,115,34.5,velocity,lower_ux,0.8932387232780457 +illusion_1L,sr,115,34.5,velocity,lower_uy,-0.43374842405319214 +illusion_1L,sr,116,34.8,velocity,upper_ux,0.9947953224182129 +illusion_1L,sr,116,34.8,velocity,upper_uy,-0.4057788550853729 +illusion_1L,sr,116,34.8,velocity,center_ux,0.800730288028717 +illusion_1L,sr,116,34.8,velocity,center_uy,-0.6677061915397644 +illusion_1L,sr,116,34.8,velocity,lower_ux,0.8180317878723145 +illusion_1L,sr,116,34.8,velocity,lower_uy,-0.4285726845264435 +illusion_1L,sr,117,35.1,velocity,upper_ux,1.0508649349212646 +illusion_1L,sr,117,35.1,velocity,upper_uy,-0.4266911447048187 +illusion_1L,sr,117,35.1,velocity,center_ux,0.8253999948501587 +illusion_1L,sr,117,35.1,velocity,center_uy,-0.6883519887924194 +illusion_1L,sr,117,35.1,velocity,lower_ux,0.7650980353355408 +illusion_1L,sr,117,35.1,velocity,lower_uy,-0.3892703354358673 +illusion_1L,sr,118,35.4,velocity,upper_ux,1.11091148853302 +illusion_1L,sr,118,35.4,velocity,upper_uy,-0.44197872281074524 +illusion_1L,sr,118,35.4,velocity,center_ux,0.8425226807594299 +illusion_1L,sr,118,35.4,velocity,center_uy,-0.6955147981643677 +illusion_1L,sr,118,35.4,velocity,lower_ux,0.7182788848876953 +illusion_1L,sr,118,35.4,velocity,lower_uy,-0.3367651700973511 +illusion_1L,sr,119,35.7,velocity,upper_ux,1.1731209754943848 +illusion_1L,sr,119,35.7,velocity,upper_uy,-0.450258731842041 +illusion_1L,sr,119,35.7,velocity,center_ux,0.8475674986839294 +illusion_1L,sr,119,35.7,velocity,center_uy,-0.662492573261261 +illusion_1L,sr,119,35.7,velocity,lower_ux,0.6712612509727478 +illusion_1L,sr,119,35.7,velocity,lower_uy,-0.26931247115135193 +illusion_1L,sr,120,36.0,velocity,upper_ux,1.2370749711990356 +illusion_1L,sr,120,36.0,velocity,upper_uy,-0.4498712718486786 +illusion_1L,sr,120,36.0,velocity,center_ux,0.8369399905204773 +illusion_1L,sr,120,36.0,velocity,center_uy,-0.5716083645820618 +illusion_1L,sr,120,36.0,velocity,lower_ux,0.6300786137580872 +illusion_1L,sr,120,36.0,velocity,lower_uy,-0.1833661049604416 +illusion_1L,sr,121,36.3,velocity,upper_ux,1.3002842664718628 +illusion_1L,sr,121,36.3,velocity,upper_uy,-0.4372215270996094 +illusion_1L,sr,121,36.3,velocity,center_ux,0.8087517023086548 +illusion_1L,sr,121,36.3,velocity,center_uy,-0.42845234274864197 +illusion_1L,sr,121,36.3,velocity,lower_ux,0.6059297323226929 +illusion_1L,sr,121,36.3,velocity,lower_uy,-0.08377726376056671 +illusion_1L,sr,122,36.6,velocity,upper_ux,1.3563719987869263 +illusion_1L,sr,122,36.6,velocity,upper_uy,-0.40571072697639465 +illusion_1L,sr,122,36.6,velocity,center_ux,0.7628494501113892 +illusion_1L,sr,122,36.6,velocity,center_uy,-0.2457887977361679 +illusion_1L,sr,122,36.6,velocity,lower_ux,0.6100198030471802 +illusion_1L,sr,122,36.6,velocity,lower_uy,0.014262941665947437 +illusion_1L,sr,123,36.9,velocity,upper_ux,1.3942128419876099 +illusion_1L,sr,123,36.9,velocity,upper_uy,-0.34541261196136475 +illusion_1L,sr,123,36.9,velocity,center_ux,0.7034491896629333 +illusion_1L,sr,123,36.9,velocity,center_uy,-0.025239247828722 +illusion_1L,sr,123,36.9,velocity,lower_ux,0.6447808742523193 +illusion_1L,sr,123,36.9,velocity,lower_uy,0.09519874304533005 +illusion_1L,sr,124,37.2,velocity,upper_ux,1.3993546962738037 +illusion_1L,sr,124,37.2,velocity,upper_uy,-0.24547825753688812 +illusion_1L,sr,124,37.2,velocity,center_ux,0.6444727182388306 +illusion_1L,sr,124,37.2,velocity,center_uy,0.2226308137178421 +illusion_1L,sr,124,37.2,velocity,lower_ux,0.6971907615661621 +illusion_1L,sr,124,37.2,velocity,lower_uy,0.1589205116033554 +illusion_1L,sr,125,37.5,velocity,upper_ux,1.3558921813964844 +illusion_1L,sr,125,37.5,velocity,upper_uy,-0.09821975976228714 +illusion_1L,sr,125,37.5,velocity,center_ux,0.6091552972793579 +illusion_1L,sr,125,37.5,velocity,center_uy,0.45292532444000244 +illusion_1L,sr,125,37.5,velocity,lower_ux,0.7508563995361328 +illusion_1L,sr,125,37.5,velocity,lower_uy,0.21698778867721558 +illusion_1L,sr,126,37.8,velocity,upper_ux,1.2510746717453003 +illusion_1L,sr,126,37.8,velocity,upper_uy,0.09012280404567719 +illusion_1L,sr,126,37.8,velocity,center_ux,0.6199364066123962 +illusion_1L,sr,126,37.8,velocity,center_uy,0.5966062545776367 +illusion_1L,sr,126,37.8,velocity,lower_ux,0.8021557331085205 +illusion_1L,sr,126,37.8,velocity,lower_uy,0.2720620930194855 +illusion_1L,sr,127,38.1,velocity,upper_ux,1.0998754501342773 +illusion_1L,sr,127,38.1,velocity,upper_uy,0.2769641876220703 +illusion_1L,sr,127,38.1,velocity,center_ux,0.671210527420044 +illusion_1L,sr,127,38.1,velocity,center_uy,0.6363787055015564 +illusion_1L,sr,127,38.1,velocity,lower_ux,0.8538029789924622 +illusion_1L,sr,127,38.1,velocity,lower_uy,0.3199329376220703 +illusion_1L,sr,128,38.4,velocity,upper_ux,0.9507932662963867 +illusion_1L,sr,128,38.4,velocity,upper_uy,0.40006598830223083 +illusion_1L,sr,128,38.4,velocity,center_ux,0.726869523525238 +illusion_1L,sr,128,38.4,velocity,center_uy,0.6408995389938354 +illusion_1L,sr,128,38.4,velocity,lower_ux,0.9067126512527466 +illusion_1L,sr,128,38.4,velocity,lower_uy,0.3594636917114258 +illusion_1L,sr,129,38.7,velocity,upper_ux,0.8433201313018799 +illusion_1L,sr,129,38.7,velocity,upper_uy,0.43595749139785767 +illusion_1L,sr,129,38.7,velocity,center_ux,0.768595814704895 +illusion_1L,sr,129,38.7,velocity,center_uy,0.6552460193634033 +illusion_1L,sr,129,38.7,velocity,lower_ux,0.9609874486923218 +illusion_1L,sr,129,38.7,velocity,lower_uy,0.39155709743499756 +illusion_1L,sr,130,39.0,velocity,upper_ux,0.7776132822036743 +illusion_1L,sr,130,39.0,velocity,upper_uy,0.4131849408149719 +illusion_1L,sr,130,39.0,velocity,center_ux,0.7990427017211914 +illusion_1L,sr,130,39.0,velocity,center_uy,0.6775707602500916 +illusion_1L,sr,130,39.0,velocity,lower_ux,1.017029881477356 +illusion_1L,sr,130,39.0,velocity,lower_uy,0.4169682264328003 +illusion_1L,sr,131,39.3,velocity,upper_ux,0.7316875457763672 +illusion_1L,sr,131,39.3,velocity,upper_uy,0.3670937418937683 +illusion_1L,sr,131,39.3,velocity,center_ux,0.8221933841705322 +illusion_1L,sr,131,39.3,velocity,center_uy,0.6965646743774414 +illusion_1L,sr,131,39.3,velocity,lower_ux,1.0770937204360962 +illusion_1L,sr,131,39.3,velocity,lower_uy,0.4366641342639923 +illusion_1L,sr,132,39.6,velocity,upper_ux,0.6859238147735596 +illusion_1L,sr,132,39.6,velocity,upper_uy,0.3066349923610687 +illusion_1L,sr,132,39.6,velocity,center_ux,0.8328911066055298 +illusion_1L,sr,132,39.6,velocity,center_uy,0.6873742938041687 +illusion_1L,sr,132,39.6,velocity,lower_ux,1.136114239692688 +illusion_1L,sr,132,39.6,velocity,lower_uy,0.44815394282341003 +illusion_1L,sr,133,39.9,velocity,upper_ux,0.6431547403335571 +illusion_1L,sr,133,39.9,velocity,upper_uy,0.23089657723903656 +illusion_1L,sr,133,39.9,velocity,center_ux,0.8320242166519165 +illusion_1L,sr,133,39.9,velocity,center_uy,0.6290022134780884 +illusion_1L,sr,133,39.9,velocity,lower_ux,1.1992080211639404 +illusion_1L,sr,133,39.9,velocity,lower_uy,0.45252615213394165 +illusion_1L,sr,134,40.2,velocity,upper_ux,0.6104040145874023 +illusion_1L,sr,134,40.2,velocity,upper_uy,0.1388993263244629 +illusion_1L,sr,134,40.2,velocity,center_ux,0.8154507279396057 +illusion_1L,sr,134,40.2,velocity,center_uy,0.5130605697631836 +illusion_1L,sr,134,40.2,velocity,lower_ux,1.262974739074707 +illusion_1L,sr,134,40.2,velocity,lower_uy,0.4466630518436432 +illusion_1L,sr,135,40.5,velocity,upper_ux,0.5994136333465576 +illusion_1L,sr,135,40.5,velocity,upper_uy,0.0398675911128521 +illusion_1L,sr,135,40.5,velocity,center_ux,0.7817807793617249 +illusion_1L,sr,135,40.5,velocity,center_uy,0.3526313900947571 +illusion_1L,sr,135,40.5,velocity,lower_ux,1.3233323097229004 +illusion_1L,sr,135,40.5,velocity,lower_uy,0.4260563254356384 +illusion_1L,sr,136,40.8,velocity,upper_ux,0.6186646223068237 +illusion_1L,sr,136,40.8,velocity,upper_uy,-0.049716878682374954 +illusion_1L,sr,136,40.8,velocity,center_ux,0.7310047149658203 +illusion_1L,sr,136,40.8,velocity,center_uy,0.1566316932439804 +illusion_1L,sr,136,40.8,velocity,lower_ux,1.3719987869262695 +illusion_1L,sr,136,40.8,velocity,lower_uy,0.3833579123020172 +illusion_1L,sr,137,41.1,velocity,upper_ux,0.6636978983879089 +illusion_1L,sr,137,41.1,velocity,upper_uy,-0.1202160120010376 +illusion_1L,sr,137,41.1,velocity,center_ux,0.6698322892189026 +illusion_1L,sr,137,41.1,velocity,center_uy,-0.0736457034945488 +illusion_1L,sr,137,41.1,velocity,lower_ux,1.3970507383346558 +illusion_1L,sr,137,41.1,velocity,lower_uy,0.3094731867313385 +illusion_1L,sr,138,41.4,velocity,upper_ux,0.7174828052520752 +illusion_1L,sr,138,41.4,velocity,upper_uy,-0.17936481535434723 +illusion_1L,sr,138,41.4,velocity,center_ux,0.6159839034080505 +illusion_1L,sr,138,41.4,velocity,center_uy,-0.31746360659599304 +illusion_1L,sr,138,41.4,velocity,lower_ux,1.385790467262268 +illusion_1L,sr,138,41.4,velocity,lower_uy,0.19672891497612 +illusion_1L,sr,139,41.7,velocity,upper_ux,0.7690562605857849 +illusion_1L,sr,139,41.7,velocity,upper_uy,-0.23666109144687653 +illusion_1L,sr,139,41.7,velocity,center_ux,0.5948306918144226 +illusion_1L,sr,139,41.7,velocity,center_uy,-0.5194228291511536 +illusion_1L,sr,139,41.7,velocity,lower_ux,1.3246898651123047 +illusion_1L,sr,139,41.7,velocity,lower_uy,0.041439589112997055 +illusion_1L,sr,140,42.0,velocity,upper_ux,0.8195448517799377 +illusion_1L,sr,140,42.0,velocity,upper_uy,-0.2897105813026428 +illusion_1L,sr,140,42.0,velocity,center_ux,0.6232458353042603 +illusion_1L,sr,140,42.0,velocity,center_uy,-0.6191367506980896 +illusion_1L,sr,140,42.0,velocity,lower_ux,1.205635905265808 +illusion_1L,sr,140,42.0,velocity,lower_uy,-0.1432420164346695 +illusion_1L,sr,141,42.3,velocity,upper_ux,0.8712322115898132 +illusion_1L,sr,141,42.3,velocity,upper_uy,-0.3348379135131836 +illusion_1L,sr,141,42.3,velocity,center_ux,0.6809991598129272 +illusion_1L,sr,141,42.3,velocity,center_uy,-0.6358609199523926 +illusion_1L,sr,141,42.3,velocity,lower_ux,1.050498604774475 +illusion_1L,sr,141,42.3,velocity,lower_uy,-0.3107377290725708 +illusion_1L,sr,142,42.6,velocity,upper_ux,0.9243752956390381 +illusion_1L,sr,142,42.6,velocity,upper_uy,-0.372081995010376 +illusion_1L,sr,142,42.6,velocity,center_ux,0.7325546741485596 +illusion_1L,sr,142,42.6,velocity,center_uy,-0.6418904662132263 +illusion_1L,sr,142,42.6,velocity,lower_ux,0.9077937006950378 +illusion_1L,sr,142,42.6,velocity,lower_uy,-0.40763673186302185 +illusion_1L,sr,143,42.9,velocity,upper_ux,0.9789519309997559 +illusion_1L,sr,143,42.9,velocity,upper_uy,-0.4023226797580719 +illusion_1L,sr,143,42.9,velocity,center_ux,0.7693387866020203 +illusion_1L,sr,143,42.9,velocity,center_uy,-0.6602150201797485 +illusion_1L,sr,143,42.9,velocity,lower_ux,0.8097254037857056 +illusion_1L,sr,143,42.9,velocity,lower_uy,-0.42407286167144775 +illusion_1L,sr,144,43.2,velocity,upper_ux,1.0353120565414429 +illusion_1L,sr,144,43.2,velocity,upper_uy,-0.4260789155960083 +illusion_1L,sr,144,43.2,velocity,center_ux,0.7954699397087097 +illusion_1L,sr,144,43.2,velocity,center_uy,-0.6826790571212769 +illusion_1L,sr,144,43.2,velocity,lower_ux,0.7496753931045532 +illusion_1L,sr,144,43.2,velocity,lower_uy,-0.3921663761138916 +illusion_1L,sr,145,43.5,velocity,upper_ux,1.0940476655960083 +illusion_1L,sr,145,43.5,velocity,upper_uy,-0.4433514475822449 +illusion_1L,sr,145,43.5,velocity,center_ux,0.8125393390655518 +illusion_1L,sr,145,43.5,velocity,center_uy,-0.6942614316940308 +illusion_1L,sr,145,43.5,velocity,lower_ux,0.7047117948532104 +illusion_1L,sr,145,43.5,velocity,lower_uy,-0.3404516875743866 +illusion_1L,sr,146,43.8,velocity,upper_ux,1.1554312705993652 +illusion_1L,sr,146,43.8,velocity,upper_uy,-0.4534532129764557 +illusion_1L,sr,146,43.8,velocity,center_ux,0.8191307187080383 +illusion_1L,sr,146,43.8,velocity,center_uy,-0.6713162660598755 +illusion_1L,sr,146,43.8,velocity,lower_ux,0.6625543236732483 +illusion_1L,sr,146,43.8,velocity,lower_uy,-0.27553001046180725 +illusion_1L,sr,147,44.1,velocity,upper_ux,1.2188204526901245 +illusion_1L,sr,147,44.1,velocity,upper_uy,-0.4547887146472931 +illusion_1L,sr,147,44.1,velocity,center_ux,0.8126806616783142 +illusion_1L,sr,147,44.1,velocity,center_uy,-0.5932801961898804 +illusion_1L,sr,147,44.1,velocity,lower_ux,0.6249591708183289 +illusion_1L,sr,147,44.1,velocity,lower_uy,-0.195350781083107 +illusion_1L,sr,148,44.4,velocity,upper_ux,1.283923625946045 +illusion_1L,sr,148,44.4,velocity,upper_uy,-0.44507238268852234 +illusion_1L,sr,148,44.4,velocity,center_ux,0.7925920486450195 +illusion_1L,sr,148,44.4,velocity,center_uy,-0.4618924856185913 +illusion_1L,sr,148,44.4,velocity,lower_ux,0.6022641062736511 +illusion_1L,sr,148,44.4,velocity,lower_uy,-0.1026715561747551 +illusion_1L,sr,149,44.7,velocity,upper_ux,1.3385627269744873 +illusion_1L,sr,149,44.7,velocity,upper_uy,-0.4168708026409149 +illusion_1L,sr,149,44.7,velocity,center_ux,0.7533961534500122 +illusion_1L,sr,149,44.7,velocity,center_uy,-0.29008573293685913 +illusion_1L,sr,149,44.7,velocity,lower_ux,0.6025346517562866 +illusion_1L,sr,149,44.7,velocity,lower_uy,-0.0089601781219244 +illusion_1L,sr,150,45.0,velocity,upper_ux,1.382103681564331 +illusion_1L,sr,150,45.0,velocity,upper_uy,-0.36552226543426514 +illusion_1L,sr,150,45.0,velocity,center_ux,0.7006773352622986 +illusion_1L,sr,150,45.0,velocity,center_uy,-0.08559567481279373 +illusion_1L,sr,150,45.0,velocity,lower_ux,0.6342718005180359 +illusion_1L,sr,150,45.0,velocity,lower_uy,0.07092242687940598 +illusion_1L,sr,151,45.3,velocity,upper_ux,1.3937909603118896 +illusion_1L,sr,151,45.3,velocity,upper_uy,-0.2809288501739502 +illusion_1L,sr,151,45.3,velocity,center_ux,0.6385922431945801 +illusion_1L,sr,151,45.3,velocity,center_uy,0.14856170117855072 +illusion_1L,sr,151,45.3,velocity,lower_ux,0.6827991008758545 +illusion_1L,sr,151,45.3,velocity,lower_uy,0.1341872662305832 +illusion_1L,sr,152,45.6,velocity,upper_ux,1.369820475578308 +illusion_1L,sr,152,45.6,velocity,upper_uy,-0.15969544649124146 +illusion_1L,sr,152,45.6,velocity,center_ux,0.5909661650657654 +illusion_1L,sr,152,45.6,velocity,center_uy,0.3832862973213196 +illusion_1L,sr,152,45.6,velocity,lower_ux,0.734698474407196 +illusion_1L,sr,152,45.6,velocity,lower_uy,0.19219093024730682 +illusion_1L,sr,153,45.9,velocity,upper_ux,1.296212077140808 +illusion_1L,sr,153,45.9,velocity,upper_uy,-0.0006797994137741625 +illusion_1L,sr,153,45.9,velocity,center_ux,0.5827333927154541 +illusion_1L,sr,153,45.9,velocity,center_uy,0.5579090118408203 +illusion_1L,sr,153,45.9,velocity,lower_ux,0.7836987376213074 +illusion_1L,sr,153,45.9,velocity,lower_uy,0.24931496381759644 +illusion_1L,sr,154,46.2,velocity,upper_ux,1.1683480739593506 +illusion_1L,sr,154,46.2,velocity,upper_uy,0.1790584772825241 +illusion_1L,sr,154,46.2,velocity,center_ux,0.6235502362251282 +illusion_1L,sr,154,46.2,velocity,center_uy,0.6274958252906799 +illusion_1L,sr,154,46.2,velocity,lower_ux,0.833078145980835 +illusion_1L,sr,154,46.2,velocity,lower_uy,0.30088403820991516 +illusion_1L,sr,155,46.5,velocity,upper_ux,1.0119409561157227 +illusion_1L,sr,155,46.5,velocity,upper_uy,0.3324306607246399 +illusion_1L,sr,155,46.5,velocity,center_ux,0.6838700771331787 +illusion_1L,sr,155,46.5,velocity,center_uy,0.6351675987243652 +illusion_1L,sr,155,46.5,velocity,lower_ux,0.8844725489616394 +illusion_1L,sr,155,46.5,velocity,lower_uy,0.3444490432739258 +illusion_1L,sr,156,46.8,velocity,upper_ux,0.876298725605011 +illusion_1L,sr,156,46.8,velocity,upper_uy,0.41310691833496094 +illusion_1L,sr,156,46.8,velocity,center_ux,0.7335239052772522 +illusion_1L,sr,156,46.8,velocity,center_uy,0.6457793712615967 +illusion_1L,sr,156,46.8,velocity,lower_ux,0.9390134811401367 +illusion_1L,sr,156,46.8,velocity,lower_uy,0.38096320629119873 +illusion_1L,sr,157,47.1,velocity,upper_ux,0.7830051779747009 +illusion_1L,sr,157,47.1,velocity,upper_uy,0.41731327772140503 +illusion_1L,sr,157,47.1,velocity,center_ux,0.7664175629615784 +illusion_1L,sr,157,47.1,velocity,center_uy,0.6655389666557312 +illusion_1L,sr,157,47.1,velocity,lower_ux,0.9923000335693359 +illusion_1L,sr,157,47.1,velocity,lower_uy,0.40952515602111816 +illusion_1L,sr,158,47.4,velocity,upper_ux,0.7269205451011658 +illusion_1L,sr,158,47.4,velocity,upper_uy,0.379619836807251 +illusion_1L,sr,158,47.4,velocity,center_ux,0.7899629473686218 +illusion_1L,sr,158,47.4,velocity,center_uy,0.686936616897583 +illusion_1L,sr,158,47.4,velocity,lower_ux,1.0488392114639282 +illusion_1L,sr,158,47.4,velocity,lower_uy,0.4321371912956238 +illusion_1L,sr,159,47.7,velocity,upper_ux,0.6837540864944458 +illusion_1L,sr,159,47.7,velocity,upper_uy,0.32360169291496277 +illusion_1L,sr,159,47.7,velocity,center_ux,0.8039831519126892 +illusion_1L,sr,159,47.7,velocity,center_uy,0.6920219659805298 +illusion_1L,sr,159,47.7,velocity,lower_ux,1.1081249713897705 +illusion_1L,sr,159,47.7,velocity,lower_uy,0.44813960790634155 +illusion_1L,sr,160,48.0,velocity,upper_ux,0.643945038318634 +illusion_1L,sr,160,48.0,velocity,upper_uy,0.25447550415992737 +illusion_1L,sr,160,48.0,velocity,center_ux,0.8068845868110657 +illusion_1L,sr,160,48.0,velocity,center_uy,0.6563785076141357 +illusion_1L,sr,160,48.0,velocity,lower_ux,1.1697593927383423 +illusion_1L,sr,160,48.0,velocity,lower_uy,0.4563915431499481 +illusion_1L,sr,161,48.3,velocity,upper_ux,0.6106903553009033 +illusion_1L,sr,161,48.3,velocity,upper_uy,0.1709597110748291 +illusion_1L,sr,161,48.3,velocity,center_ux,0.7968727350234985 +illusion_1L,sr,161,48.3,velocity,center_uy,0.5637637972831726 +illusion_1L,sr,161,48.3,velocity,lower_ux,1.2330379486083984 +illusion_1L,sr,161,48.3,velocity,lower_uy,0.4550231397151947 +illusion_1L,sr,162,48.6,velocity,upper_ux,0.5941174626350403 +illusion_1L,sr,162,48.6,velocity,upper_uy,0.0780365839600563 +illusion_1L,sr,162,48.6,velocity,center_ux,0.7726181745529175 +illusion_1L,sr,162,48.6,velocity,center_uy,0.42103806138038635 +illusion_1L,sr,162,48.6,velocity,lower_ux,1.2946697473526 +illusion_1L,sr,162,48.6,velocity,lower_uy,0.4405502378940582 +illusion_1L,sr,163,48.9,velocity,upper_ux,0.6042895317077637 +illusion_1L,sr,163,48.9,velocity,upper_uy,-0.011420037597417831 +illusion_1L,sr,163,48.9,velocity,center_ux,0.7323058843612671 +illusion_1L,sr,163,48.9,velocity,center_uy,0.24283351004123688 +illusion_1L,sr,163,48.9,velocity,lower_ux,1.348054051399231 +illusion_1L,sr,163,48.9,velocity,lower_uy,0.4073573350906372 +illusion_1L,sr,164,49.2,velocity,upper_ux,0.6431841850280762 +illusion_1L,sr,164,49.2,velocity,upper_uy,-0.0850972980260849 +illusion_1L,sr,164,49.2,velocity,center_ux,0.6781630516052246 +illusion_1L,sr,164,49.2,velocity,center_uy,0.03315451741218567 +illusion_1L,sr,164,49.2,velocity,lower_ux,1.3852694034576416 +illusion_1L,sr,164,49.2,velocity,lower_uy,0.3489764332771301 +illusion_1L,sr,165,49.5,velocity,upper_ux,0.6936328411102295 +illusion_1L,sr,165,49.5,velocity,upper_uy,-0.1447383612394333 +illusion_1L,sr,165,49.5,velocity,center_ux,0.6175974011421204 +illusion_1L,sr,165,49.5,velocity,center_uy,-0.20069558918476105 +illusion_1L,sr,165,49.5,velocity,lower_ux,1.3886733055114746 +illusion_1L,sr,165,49.5,velocity,lower_uy,0.2579643726348877 +illusion_1L,sr,166,49.8,velocity,upper_ux,0.7457420229911804 +illusion_1L,sr,166,49.8,velocity,upper_uy,-0.20301344990730286 +illusion_1L,sr,166,49.8,velocity,center_ux,0.5762923359870911 +illusion_1L,sr,166,49.8,velocity,center_uy,-0.42753586173057556 +illusion_1L,sr,166,49.8,velocity,lower_ux,1.3581370115280151 +illusion_1L,sr,166,49.8,velocity,lower_uy,0.13186998665332794 +illusion_1L,sr,167,50.1,velocity,upper_ux,0.7936472296714783 +illusion_1L,sr,167,50.1,velocity,upper_uy,-0.25971704721450806 +illusion_1L,sr,167,50.1,velocity,center_ux,0.577466607093811 +illusion_1L,sr,167,50.1,velocity,center_uy,-0.5813726186752319 +illusion_1L,sr,167,50.1,velocity,lower_ux,1.276551365852356 +illusion_1L,sr,167,50.1,velocity,lower_uy,-0.027758115902543068 +illusion_1L,sr,168,50.4,velocity,upper_ux,0.8412706255912781 +illusion_1L,sr,168,50.4,velocity,upper_uy,-0.3097054660320282 +illusion_1L,sr,168,50.4,velocity,center_ux,0.6244255304336548 +illusion_1L,sr,168,50.4,velocity,center_uy,-0.631425142288208 +illusion_1L,sr,168,50.4,velocity,lower_ux,1.1417003870010376 +illusion_1L,sr,168,50.4,velocity,lower_uy,-0.20173856616020203 +illusion_1L,sr,169,50.7,velocity,upper_ux,0.8924340009689331 +illusion_1L,sr,169,50.7,velocity,upper_uy,-0.35209235548973083 +illusion_1L,sr,169,50.7,velocity,center_ux,0.684566080570221 +illusion_1L,sr,169,50.7,velocity,center_uy,-0.6355960965156555 +illusion_1L,sr,169,50.7,velocity,lower_ux,0.9857645630836487 +illusion_1L,sr,169,50.7,velocity,lower_uy,-0.3437359631061554 +illusion_1L,sr,170,51.0,velocity,upper_ux,0.9457166790962219 +illusion_1L,sr,170,51.0,velocity,upper_uy,-0.3872022032737732 +illusion_1L,sr,170,51.0,velocity,center_ux,0.7305297255516052 +illusion_1L,sr,170,51.0,velocity,center_uy,-0.6475406885147095 +illusion_1L,sr,170,51.0,velocity,lower_ux,0.8520500659942627 +illusion_1L,sr,170,51.0,velocity,lower_uy,-0.4126031994819641 +illusion_1L,sr,171,51.3,velocity,upper_ux,1.0008370876312256 +illusion_1L,sr,171,51.3,velocity,upper_uy,-0.415610134601593 +illusion_1L,sr,171,51.3,velocity,center_ux,0.7623763084411621 +illusion_1L,sr,171,51.3,velocity,center_uy,-0.6693851947784424 +illusion_1L,sr,171,51.3,velocity,lower_ux,0.7643964886665344 +illusion_1L,sr,171,51.3,velocity,lower_uy,-0.4102383852005005 +illusion_1L,sr,172,51.6,velocity,upper_ux,1.0580742359161377 +illusion_1L,sr,172,51.6,velocity,upper_uy,-0.4375266432762146 +illusion_1L,sr,172,51.6,velocity,center_ux,0.7838143706321716 +illusion_1L,sr,172,51.6,velocity,center_uy,-0.6893254518508911 +illusion_1L,sr,172,51.6,velocity,lower_ux,0.7106127738952637 +illusion_1L,sr,172,51.6,velocity,lower_uy,-0.36871469020843506 +illusion_1L,sr,173,51.9,velocity,upper_ux,1.117707371711731 +illusion_1L,sr,173,51.9,velocity,upper_uy,-0.452529639005661 +illusion_1L,sr,173,51.9,velocity,center_ux,0.7951650619506836 +illusion_1L,sr,173,51.9,velocity,center_uy,-0.6889809966087341 +illusion_1L,sr,173,51.9,velocity,lower_ux,0.6692063808441162 +illusion_1L,sr,173,51.9,velocity,lower_uy,-0.31012871861457825 +illusion_1L,sr,174,52.2,velocity,upper_ux,1.1796576976776123 +illusion_1L,sr,174,52.2,velocity,upper_uy,-0.459434449672699 +illusion_1L,sr,174,52.2,velocity,center_ux,0.795147716999054 +illusion_1L,sr,174,52.2,velocity,center_uy,-0.6442866921424866 +illusion_1L,sr,174,52.2,velocity,lower_ux,0.6315450668334961 +illusion_1L,sr,174,52.2,velocity,lower_uy,-0.2385256141424179 +illusion_1L,sr,175,52.5,velocity,upper_ux,1.2426691055297852 +illusion_1L,sr,175,52.5,velocity,upper_uy,-0.45598897337913513 +illusion_1L,sr,175,52.5,velocity,center_ux,0.7825630307197571 +illusion_1L,sr,175,52.5,velocity,center_uy,-0.5424770712852478 +illusion_1L,sr,175,52.5,velocity,lower_ux,0.6018880009651184 +illusion_1L,sr,175,52.5,velocity,lower_uy,-0.15378111600875854 +illusion_1L,sr,176,52.8,velocity,upper_ux,1.3030706644058228 +illusion_1L,sr,176,52.8,velocity,upper_uy,-0.4383481442928314 +illusion_1L,sr,176,52.8,velocity,center_ux,0.7563117146492004 +illusion_1L,sr,176,52.8,velocity,center_uy,-0.39330700039863586 +illusion_1L,sr,176,52.8,velocity,lower_ux,0.5905919075012207 +illusion_1L,sr,176,52.8,velocity,lower_uy,-0.06202308088541031 +illusion_1L,sr,177,53.1,velocity,upper_ux,1.3535045385360718 +illusion_1L,sr,177,53.1,velocity,upper_uy,-0.4007978141307831 +illusion_1L,sr,177,53.1,velocity,center_ux,0.7145704627037048 +illusion_1L,sr,177,53.1,velocity,center_uy,-0.2110716700553894 +illusion_1L,sr,177,53.1,velocity,lower_ux,0.6068259477615356 +illusion_1L,sr,177,53.1,velocity,lower_uy,0.023406777530908585 +illusion_1L,sr,178,53.4,velocity,upper_ux,1.3836909532546997 +illusion_1L,sr,178,53.4,velocity,upper_uy,-0.3366525173187256 +illusion_1L,sr,178,53.4,velocity,center_ux,0.6587038636207581 +illusion_1L,sr,178,53.4,velocity,center_uy,0.00181065674405545 +illusion_1L,sr,178,53.4,velocity,lower_ux,0.6488760113716125 +illusion_1L,sr,178,53.4,velocity,lower_uy,0.09271588921546936 +illusion_1L,sr,179,53.7,velocity,upper_ux,1.3837727308273315 +illusion_1L,sr,179,53.7,velocity,upper_uy,-0.2414979338645935 +illusion_1L,sr,179,53.7,velocity,center_ux,0.6006935834884644 +illusion_1L,sr,179,53.7,velocity,center_uy,0.23546326160430908 +illusion_1L,sr,179,53.7,velocity,lower_ux,0.7011807560920715 +illusion_1L,sr,179,53.7,velocity,lower_uy,0.15090471506118774 +illusion_1L,sr,180,54.0,velocity,upper_ux,1.3457831144332886 +illusion_1L,sr,180,54.0,velocity,upper_uy,-0.1131465882062912 +illusion_1L,sr,180,54.0,velocity,center_ux,0.5630621314048767 +illusion_1L,sr,180,54.0,velocity,center_uy,0.4531671702861786 +illusion_1L,sr,180,54.0,velocity,lower_ux,0.7508118152618408 +illusion_1L,sr,180,54.0,velocity,lower_uy,0.20868359506130219 +illusion_1L,sr,181,54.3,velocity,upper_ux,1.2598956823349 +illusion_1L,sr,181,54.3,velocity,upper_uy,0.04592511057853699 +illusion_1L,sr,181,54.3,velocity,center_ux,0.5706769824028015 +illusion_1L,sr,181,54.3,velocity,center_uy,0.5933223366737366 +illusion_1L,sr,181,54.3,velocity,lower_ux,0.7979490756988525 +illusion_1L,sr,181,54.3,velocity,lower_uy,0.2650870680809021 +illusion_1L,sr,182,54.6,velocity,upper_ux,1.1250487565994263 +illusion_1L,sr,182,54.6,velocity,upper_uy,0.21542790532112122 +illusion_1L,sr,182,54.6,velocity,center_ux,0.6227372288703918 +illusion_1L,sr,182,54.6,velocity,center_uy,0.6341497898101807 +illusion_1L,sr,182,54.6,velocity,lower_ux,0.8464387655258179 +illusion_1L,sr,182,54.6,velocity,lower_uy,0.31479573249816895 +illusion_1L,sr,183,54.9,velocity,upper_ux,0.969194769859314 +illusion_1L,sr,183,54.9,velocity,upper_uy,0.35066404938697815 +illusion_1L,sr,183,54.9,velocity,center_ux,0.6828027367591858 +illusion_1L,sr,183,54.9,velocity,center_uy,0.6372556090354919 +illusion_1L,sr,183,54.9,velocity,lower_ux,0.897466242313385 +illusion_1L,sr,183,54.9,velocity,lower_uy,0.35666564106941223 +illusion_1L,sr,184,55.2,velocity,upper_ux,0.8376284241676331 +illusion_1L,sr,184,55.2,velocity,upper_uy,0.4128666818141937 +illusion_1L,sr,184,55.2,velocity,center_ux,0.7273511290550232 +illusion_1L,sr,184,55.2,velocity,center_uy,0.6506624221801758 +illusion_1L,sr,184,55.2,velocity,lower_ux,0.950714647769928 +illusion_1L,sr,184,55.2,velocity,lower_uy,0.39123713970184326 +illusion_1L,sr,185,55.5,velocity,upper_ux,0.7519130110740662 +illusion_1L,sr,185,55.5,velocity,upper_uy,0.40633246302604675 +illusion_1L,sr,185,55.5,velocity,center_ux,0.758167028427124 +illusion_1L,sr,185,55.5,velocity,center_uy,0.6728020906448364 +illusion_1L,sr,185,55.5,velocity,lower_ux,1.0061149597167969 +illusion_1L,sr,185,55.5,velocity,lower_uy,0.41915377974510193 +illusion_1L,sr,186,55.8,velocity,upper_ux,0.69936203956604 +illusion_1L,sr,186,55.8,velocity,upper_uy,0.36223748326301575 +illusion_1L,sr,186,55.8,velocity,center_ux,0.7785758972167969 +illusion_1L,sr,186,55.8,velocity,center_uy,0.6910611391067505 +illusion_1L,sr,186,55.8,velocity,lower_ux,1.0638123750686646 +illusion_1L,sr,186,55.8,velocity,lower_uy,0.44051021337509155 +illusion_1L,sr,187,56.1,velocity,upper_ux,0.6591344475746155 +illusion_1L,sr,187,56.1,velocity,upper_uy,0.3014570474624634 +illusion_1L,sr,187,56.1,velocity,center_ux,0.7886465787887573 +illusion_1L,sr,187,56.1,velocity,center_uy,0.686160683631897 +illusion_1L,sr,187,56.1,velocity,lower_ux,1.1238938570022583 +illusion_1L,sr,187,56.1,velocity,lower_uy,0.4547533094882965 +illusion_1L,sr,188,56.4,velocity,upper_ux,0.6232054829597473 +illusion_1L,sr,188,56.4,velocity,upper_uy,0.2279372662305832 +illusion_1L,sr,188,56.4,velocity,center_ux,0.7871324419975281 +illusion_1L,sr,188,56.4,velocity,center_uy,0.6347103118896484 +illusion_1L,sr,188,56.4,velocity,lower_ux,1.1859710216522217 +illusion_1L,sr,188,56.4,velocity,lower_uy,0.4605581760406494 +illusion_1L,sr,189,56.7,velocity,upper_ux,0.59620600938797 +illusion_1L,sr,189,56.7,velocity,upper_uy,0.14213189482688904 +illusion_1L,sr,189,56.7,velocity,center_ux,0.7731265425682068 +illusion_1L,sr,189,56.7,velocity,center_uy,0.5264925956726074 +illusion_1L,sr,189,56.7,velocity,lower_ux,1.248656153678894 +illusion_1L,sr,189,56.7,velocity,lower_uy,0.45550164580345154 +illusion_1L,sr,190,57.0,velocity,upper_ux,0.5886932611465454 +illusion_1L,sr,190,57.0,velocity,upper_uy,0.05125794559717178 +illusion_1L,sr,190,57.0,velocity,center_ux,0.7456586360931396 +illusion_1L,sr,190,57.0,velocity,center_uy,0.37328556180000305 +illusion_1L,sr,190,57.0,velocity,lower_ux,1.3078142404556274 +illusion_1L,sr,190,57.0,velocity,lower_uy,0.43555644154548645 +illusion_1L,sr,191,57.3,velocity,upper_ux,0.6089995503425598 +illusion_1L,sr,191,57.3,velocity,upper_uy,-0.031395118683576584 +illusion_1L,sr,191,57.3,velocity,center_ux,0.7029578685760498 +illusion_1L,sr,191,57.3,velocity,center_uy,0.1886482536792755 +illusion_1L,sr,191,57.3,velocity,lower_ux,1.355870008468628 +illusion_1L,sr,191,57.3,velocity,lower_uy,0.39506766200065613 +illusion_1L,sr,192,57.6,velocity,upper_ux,0.6534997820854187 +illusion_1L,sr,192,57.6,velocity,upper_uy,-0.09787986427545547 +illusion_1L,sr,192,57.6,velocity,center_ux,0.6469678282737732 +illusion_1L,sr,192,57.6,velocity,center_uy,-0.02515171281993389 +illusion_1L,sr,192,57.6,velocity,lower_ux,1.3827741146087646 +illusion_1L,sr,192,57.6,velocity,lower_uy,0.32801681756973267 +illusion_1L,sr,193,57.9,velocity,upper_ux,0.7060971856117249 +illusion_1L,sr,193,57.9,velocity,upper_uy,-0.15533952414989471 +illusion_1L,sr,193,57.9,velocity,center_ux,0.5899729132652283 +illusion_1L,sr,193,57.9,velocity,center_uy,-0.25795814394950867 +illusion_1L,sr,193,57.9,velocity,lower_ux,1.3794139623641968 +illusion_1L,sr,193,57.9,velocity,lower_uy,0.23046272993087769 +illusion_1L,sr,194,58.2,velocity,upper_ux,0.7550202012062073 +illusion_1L,sr,194,58.2,velocity,upper_uy,-0.21312955021858215 +illusion_1L,sr,194,58.2,velocity,center_ux,0.5554307699203491 +illusion_1L,sr,194,58.2,velocity,center_uy,-0.46939554810523987 +illusion_1L,sr,194,58.2,velocity,lower_ux,1.3386403322219849 +illusion_1L,sr,194,58.2,velocity,lower_uy,0.10183751583099365 +illusion_1L,sr,195,58.5,velocity,upper_ux,0.8017910122871399 +illusion_1L,sr,195,58.5,velocity,upper_uy,-0.2692604660987854 +illusion_1L,sr,195,58.5,velocity,center_ux,0.5672155022621155 +illusion_1L,sr,195,58.5,velocity,center_uy,-0.5999923944473267 +illusion_1L,sr,195,58.5,velocity,lower_ux,1.251032829284668 +illusion_1L,sr,195,58.5,velocity,lower_uy,-0.0552135594189167 +illusion_1L,sr,196,58.8,velocity,upper_ux,0.850082278251648 +illusion_1L,sr,196,58.8,velocity,upper_uy,-0.31852689385414124 +illusion_1L,sr,196,58.8,velocity,center_ux,0.6216601729393005 +illusion_1L,sr,196,58.8,velocity,center_uy,-0.6344842314720154 +illusion_1L,sr,196,58.8,velocity,lower_ux,1.115636944770813 +illusion_1L,sr,196,58.8,velocity,lower_uy,-0.2204875499010086 +illusion_1L,sr,197,59.1,velocity,upper_ux,0.9007692337036133 +illusion_1L,sr,197,59.1,velocity,upper_uy,-0.35992690920829773 +illusion_1L,sr,197,59.1,velocity,center_ux,0.6810017228126526 +illusion_1L,sr,197,59.1,velocity,center_uy,-0.6372533440589905 +illusion_1L,sr,197,59.1,velocity,lower_ux,0.9604215621948242 +illusion_1L,sr,197,59.1,velocity,lower_uy,-0.3504437506198883 +illusion_1L,sr,198,59.4,velocity,upper_ux,0.9538045525550842 +illusion_1L,sr,198,59.4,velocity,upper_uy,-0.39415329694747925 +illusion_1L,sr,198,59.4,velocity,center_ux,0.7242145538330078 +illusion_1L,sr,198,59.4,velocity,center_uy,-0.6515437364578247 +illusion_1L,sr,198,59.4,velocity,lower_ux,0.8292720317840576 +illusion_1L,sr,198,59.4,velocity,lower_uy,-0.40898633003234863 +illusion_1L,sr,199,59.7,velocity,upper_ux,1.0091736316680908 +illusion_1L,sr,199,59.7,velocity,upper_uy,-0.42173492908477783 +illusion_1L,sr,199,59.7,velocity,center_ux,0.7539523839950562 +illusion_1L,sr,199,59.7,velocity,center_uy,-0.6736327409744263 +illusion_1L,sr,199,59.7,velocity,lower_ux,0.7436742186546326 +illusion_1L,sr,199,59.7,velocity,lower_uy,-0.40068742632865906 +illusion_1L,sr,0,0.0,force,front_fx,0.0018704429967328906 +illusion_1L,sr,0,0.0,force,front_fy,-7.174687198130414e-05 +illusion_1L,sr,0,0.0,force,upper_fx,0.001303856261074543 +illusion_1L,sr,0,0.0,force,upper_fy,0.0026286435313522816 +illusion_1L,sr,0,0.0,force,lower_fx,0.001375798019580543 +illusion_1L,sr,0,0.0,force,lower_fy,-0.003059535287320614 +illusion_1L,sr,1,0.3,force,front_fx,0.0018734383629634976 +illusion_1L,sr,1,0.3,force,front_fy,-3.825978274107911e-05 +illusion_1L,sr,1,0.3,force,upper_fx,0.0015917026903480291 +illusion_1L,sr,1,0.3,force,upper_fy,0.002227679593488574 +illusion_1L,sr,1,0.3,force,lower_fx,0.0016470600385218859 +illusion_1L,sr,1,0.3,force,lower_fy,-0.002611990086734295 +illusion_1L,sr,2,0.6,force,front_fx,0.0019088381668552756 +illusion_1L,sr,2,0.6,force,front_fy,-5.260654688754585e-06 +illusion_1L,sr,2,0.6,force,upper_fx,0.001832360401749611 +illusion_1L,sr,2,0.6,force,upper_fy,0.0018895167158916593 +illusion_1L,sr,2,0.6,force,lower_fx,0.001861636876128614 +illusion_1L,sr,2,0.6,force,lower_fy,-0.002196681220084429 +illusion_1L,sr,3,0.9,force,front_fx,0.0019396422430872917 +illusion_1L,sr,3,0.9,force,front_fy,1.3578077414422296e-05 +illusion_1L,sr,3,0.9,force,upper_fx,0.002022084081545472 +illusion_1L,sr,3,0.9,force,upper_fy,0.001574040623381734 +illusion_1L,sr,3,0.9,force,lower_fx,0.0020346236415207386 +illusion_1L,sr,3,0.9,force,lower_fy,-0.0017652680398896337 +illusion_1L,sr,4,1.2,force,front_fx,0.001965949311852455 +illusion_1L,sr,4,1.2,force,front_fy,2.630227209010627e-05 +illusion_1L,sr,4,1.2,force,upper_fx,0.002167304279282689 +illusion_1L,sr,4,1.2,force,upper_fy,0.0012944837799295783 +illusion_1L,sr,4,1.2,force,lower_fx,0.0021681995131075382 +illusion_1L,sr,4,1.2,force,lower_fy,-0.001358864945359528 +illusion_1L,sr,5,1.5,force,front_fx,0.0019923883955925703 +illusion_1L,sr,5,1.5,force,front_fy,3.2993804779835045e-05 +illusion_1L,sr,5,1.5,force,upper_fx,0.002280134242027998 +illusion_1L,sr,5,1.5,force,upper_fy,0.001063182600773871 +illusion_1L,sr,5,1.5,force,lower_fx,0.0022687427699565887 +illusion_1L,sr,5,1.5,force,lower_fy,-0.001008457038551569 +illusion_1L,sr,6,1.8,force,front_fx,0.0020025824196636677 +illusion_1L,sr,6,1.8,force,front_fy,3.441269655013457e-05 +illusion_1L,sr,6,1.8,force,upper_fx,0.002351099392399192 +illusion_1L,sr,6,1.8,force,upper_fy,0.000891028146725148 +illusion_1L,sr,6,1.8,force,lower_fx,0.0023239152505993843 +illusion_1L,sr,6,1.8,force,lower_fy,-0.0007203156710602343 +illusion_1L,sr,7,2.1,force,front_fx,0.002012744313105941 +illusion_1L,sr,7,2.1,force,front_fy,3.42043858836405e-05 +illusion_1L,sr,7,2.1,force,upper_fx,0.002405600855126977 +illusion_1L,sr,7,2.1,force,upper_fy,0.0007704157033003867 +illusion_1L,sr,7,2.1,force,lower_fx,0.002354104770347476 +illusion_1L,sr,7,2.1,force,lower_fy,-0.0004863958456553519 +illusion_1L,sr,8,2.4,force,front_fx,0.002009723102673888 +illusion_1L,sr,8,2.4,force,front_fy,3.6016517697134987e-05 +illusion_1L,sr,8,2.4,force,upper_fx,0.0024411631748080254 +illusion_1L,sr,8,2.4,force,upper_fy,0.000688837724737823 +illusion_1L,sr,8,2.4,force,lower_fx,0.002353597665205598 +illusion_1L,sr,8,2.4,force,lower_fy,-0.0003052414976991713 +illusion_1L,sr,9,2.7,force,front_fx,0.0020087850280106068 +illusion_1L,sr,9,2.7,force,front_fy,4.434996299096383e-05 +illusion_1L,sr,9,2.7,force,upper_fx,0.0024779969826340675 +illusion_1L,sr,9,2.7,force,upper_fy,0.0006316133076325059 +illusion_1L,sr,9,2.7,force,lower_fx,0.0023450234439224005 +illusion_1L,sr,9,2.7,force,lower_fy,-0.000170492785400711 +illusion_1L,sr,10,3.0,force,front_fx,0.002005149843171239 +illusion_1L,sr,10,3.0,force,front_fy,5.9641370171448216e-05 +illusion_1L,sr,10,3.0,force,upper_fx,0.0025109953712671995 +illusion_1L,sr,10,3.0,force,upper_fy,0.0005860073724761605 +illusion_1L,sr,10,3.0,force,lower_fx,0.002327875467017293 +illusion_1L,sr,10,3.0,force,lower_fy,-8.011627505766228e-05 +illusion_1L,sr,11,3.3,force,front_fx,0.0020004287362098694 +illusion_1L,sr,11,3.3,force,front_fy,7.788607763359323e-05 +illusion_1L,sr,11,3.3,force,upper_fx,0.00254509667865932 +illusion_1L,sr,11,3.3,force,upper_fy,0.0005437771906144917 +illusion_1L,sr,11,3.3,force,lower_fx,0.0023122269194573164 +illusion_1L,sr,11,3.3,force,lower_fy,-2.8614678740268573e-05 +illusion_1L,sr,12,3.6,force,front_fx,0.002001296728849411 +illusion_1L,sr,12,3.6,force,front_fy,9.65657236520201e-05 +illusion_1L,sr,12,3.6,force,upper_fx,0.002584136324003339 +illusion_1L,sr,12,3.6,force,upper_fy,0.000502799462992698 +illusion_1L,sr,12,3.6,force,lower_fx,0.002307125134393573 +illusion_1L,sr,12,3.6,force,lower_fy,-1.0593089427857194e-05 +illusion_1L,sr,13,3.9,force,front_fx,0.0020005223341286182 +illusion_1L,sr,13,3.9,force,front_fy,0.00011181308218510821 +illusion_1L,sr,13,3.9,force,upper_fx,0.0026189011987298727 +illusion_1L,sr,13,3.9,force,upper_fy,0.00046504780766554177 +illusion_1L,sr,13,3.9,force,lower_fx,0.0023071416653692722 +illusion_1L,sr,13,3.9,force,lower_fy,-2.6619163691066206e-05 +illusion_1L,sr,14,4.2,force,front_fx,0.001991781173273921 +illusion_1L,sr,14,4.2,force,front_fy,0.0001217948374687694 +illusion_1L,sr,14,4.2,force,upper_fx,0.0026360342744737864 +illusion_1L,sr,14,4.2,force,upper_fy,0.00043266918510198593 +illusion_1L,sr,14,4.2,force,lower_fx,0.0023018205538392067 +illusion_1L,sr,14,4.2,force,lower_fy,-7.147523865569383e-05 +illusion_1L,sr,15,4.5,force,front_fx,0.0019816493149846792 +illusion_1L,sr,15,4.5,force,front_fy,0.00012791338667739183 +illusion_1L,sr,15,4.5,force,upper_fx,0.0026413355953991413 +illusion_1L,sr,15,4.5,force,upper_fy,0.000409874803153798 +illusion_1L,sr,15,4.5,force,lower_fx,0.0022986300755292177 +illusion_1L,sr,15,4.5,force,lower_fy,-0.00013942134683020413 +illusion_1L,sr,16,4.8,force,front_fx,0.001967810560017824 +illusion_1L,sr,16,4.8,force,front_fy,0.0001293727837037295 +illusion_1L,sr,16,4.8,force,upper_fx,0.002627685898914933 +illusion_1L,sr,16,4.8,force,upper_fy,0.0003927319194190204 +illusion_1L,sr,16,4.8,force,lower_fx,0.0022931231651455164 +illusion_1L,sr,16,4.8,force,lower_fy,-0.00022220320533961058 +illusion_1L,sr,17,5.1,force,front_fx,0.001955294283106923 +illusion_1L,sr,17,5.1,force,front_fy,0.00012203653750475496 +illusion_1L,sr,17,5.1,force,upper_fx,0.002600200707092881 +illusion_1L,sr,17,5.1,force,upper_fy,0.0003824931336566806 +illusion_1L,sr,17,5.1,force,lower_fx,0.0022889410611242056 +illusion_1L,sr,17,5.1,force,lower_fy,-0.00030982066527940333 +illusion_1L,sr,18,5.4,force,front_fx,0.0019450974650681019 +illusion_1L,sr,18,5.4,force,front_fy,0.0001108140277210623 +illusion_1L,sr,18,5.4,force,upper_fx,0.00256397295743227 +illusion_1L,sr,18,5.4,force,upper_fy,0.0003747781738638878 +illusion_1L,sr,18,5.4,force,lower_fx,0.0022898304741829634 +illusion_1L,sr,18,5.4,force,lower_fy,-0.000394196598790586 +illusion_1L,sr,19,5.7,force,front_fx,0.0019414861453697085 +illusion_1L,sr,19,5.7,force,front_fy,9.407969628227875e-05 +illusion_1L,sr,19,5.7,force,upper_fx,0.0025270795449614525 +illusion_1L,sr,19,5.7,force,upper_fy,0.0003603052464313805 +illusion_1L,sr,19,5.7,force,lower_fx,0.0023015132173895836 +illusion_1L,sr,19,5.7,force,lower_fy,-0.00046827990445308387 +illusion_1L,sr,20,6.0,force,front_fx,0.0019503893563523889 +illusion_1L,sr,20,6.0,force,front_fy,7.307547639356926e-05 +illusion_1L,sr,20,6.0,force,upper_fx,0.0024982262402772903 +illusion_1L,sr,20,6.0,force,upper_fy,0.00033894501393660903 +illusion_1L,sr,20,6.0,force,lower_fx,0.0023296119179576635 +illusion_1L,sr,20,6.0,force,lower_fy,-0.0005262370686978102 +illusion_1L,sr,21,6.3,force,front_fx,0.001953283092007041 +illusion_1L,sr,21,6.3,force,front_fy,4.912937947665341e-05 +illusion_1L,sr,21,6.3,force,upper_fx,0.002458727452903986 +illusion_1L,sr,21,6.3,force,upper_fy,0.00030817624065093696 +illusion_1L,sr,21,6.3,force,lower_fx,0.0023527296725660563 +illusion_1L,sr,21,6.3,force,lower_fy,-0.0005645930068567395 +illusion_1L,sr,22,6.6,force,front_fx,0.0019500561757013202 +illusion_1L,sr,22,6.6,force,front_fy,2.337594924028963e-05 +illusion_1L,sr,22,6.6,force,upper_fx,0.0024129964876919985 +illusion_1L,sr,22,6.6,force,upper_fy,0.00026797186001203954 +illusion_1L,sr,22,6.6,force,lower_fx,0.0023711342364549637 +illusion_1L,sr,22,6.6,force,lower_fy,-0.0005811913288198411 +illusion_1L,sr,23,6.9,force,front_fx,0.001953708939254284 +illusion_1L,sr,23,6.9,force,front_fy,-1.4104329011388472e-06 +illusion_1L,sr,23,6.9,force,upper_fx,0.00237733474932611 +illusion_1L,sr,23,6.9,force,upper_fy,0.00022306967002805322 +illusion_1L,sr,23,6.9,force,lower_fx,0.0023979940451681614 +illusion_1L,sr,23,6.9,force,lower_fy,-0.0005778299528174102 +illusion_1L,sr,24,7.2,force,front_fx,0.0019583015237003565 +illusion_1L,sr,24,7.2,force,front_fy,-2.4319691874552518e-05 +illusion_1L,sr,24,7.2,force,upper_fx,0.002349687507376075 +illusion_1L,sr,24,7.2,force,upper_fy,0.00017661164747551084 +illusion_1L,sr,24,7.2,force,lower_fx,0.0024289353750646114 +illusion_1L,sr,24,7.2,force,lower_fy,-0.0005563804297707975 +illusion_1L,sr,25,7.5,force,front_fx,0.0019619916565716267 +illusion_1L,sr,25,7.5,force,front_fy,-4.5376636990113184e-05 +illusion_1L,sr,25,7.5,force,upper_fx,0.002326101763173938 +illusion_1L,sr,25,7.5,force,upper_fy,0.00013586146815214306 +illusion_1L,sr,25,7.5,force,lower_fx,0.0024577996227890253 +illusion_1L,sr,25,7.5,force,lower_fy,-0.0005225611967034638 +illusion_1L,sr,26,7.8,force,front_fx,0.0019683679565787315 +illusion_1L,sr,26,7.8,force,front_fy,-6.288307486101985e-05 +illusion_1L,sr,26,7.8,force,upper_fx,0.002314629266038537 +illusion_1L,sr,26,7.8,force,upper_fy,0.00010632944758981466 +illusion_1L,sr,26,7.8,force,lower_fx,0.0024916259571909904 +illusion_1L,sr,26,7.8,force,lower_fy,-0.00047998761874623597 +illusion_1L,sr,27,8.1,force,front_fx,0.001979158027097583 +illusion_1L,sr,27,8.1,force,front_fy,-7.71351478761062e-05 +illusion_1L,sr,27,8.1,force,upper_fx,0.0023165433667600155 +illusion_1L,sr,27,8.1,force,upper_fy,9.341909026261419e-05 +illusion_1L,sr,27,8.1,force,lower_fx,0.0025303030852228403 +illusion_1L,sr,27,8.1,force,lower_fy,-0.00043698851368390024 +illusion_1L,sr,28,8.4,force,front_fx,0.0019856279250234365 +illusion_1L,sr,28,8.4,force,front_fy,-8.799713396001607e-05 +illusion_1L,sr,28,8.4,force,upper_fx,0.0023211543448269367 +illusion_1L,sr,28,8.4,force,upper_fy,0.00010290972568327561 +illusion_1L,sr,28,8.4,force,lower_fx,0.002562005538493395 +illusion_1L,sr,28,8.4,force,lower_fy,-0.00039929989725351334 +illusion_1L,sr,29,8.7,force,front_fx,0.0019827713258564472 +illusion_1L,sr,29,8.7,force,front_fy,-9.467558265896514e-05 +illusion_1L,sr,29,8.7,force,upper_fx,0.002320757368579507 +illusion_1L,sr,29,8.7,force,upper_fy,0.00013712156214751303 +illusion_1L,sr,29,8.7,force,lower_fx,0.00257792416960001 +illusion_1L,sr,29,8.7,force,lower_fy,-0.0003721965185832232 +illusion_1L,sr,30,9.0,force,front_fx,0.0019752755761146545 +illusion_1L,sr,30,9.0,force,front_fy,-9.775396028999239e-05 +illusion_1L,sr,30,9.0,force,upper_fx,0.002319593681022525 +illusion_1L,sr,30,9.0,force,upper_fy,0.00019283143046777695 +illusion_1L,sr,30,9.0,force,lower_fx,0.0025807381607592106 +illusion_1L,sr,30,9.0,force,lower_fy,-0.000357199867721647 +illusion_1L,sr,31,9.3,force,front_fx,0.0019684345461428165 +illusion_1L,sr,31,9.3,force,front_fy,-9.632781438995153e-05 +illusion_1L,sr,31,9.3,force,upper_fx,0.0023214812390506268 +illusion_1L,sr,31,9.3,force,upper_fy,0.00026370101841166615 +illusion_1L,sr,31,9.3,force,lower_fx,0.0025740107521414757 +illusion_1L,sr,31,9.3,force,lower_fy,-0.00035024096723645926 +illusion_1L,sr,32,9.6,force,front_fx,0.00195934041403234 +illusion_1L,sr,32,9.6,force,front_fy,-8.997187978820875e-05 +illusion_1L,sr,32,9.6,force,upper_fx,0.002323148539289832 +illusion_1L,sr,32,9.6,force,upper_fy,0.00034141159267164767 +illusion_1L,sr,32,9.6,force,lower_fx,0.0025542909279465675 +illusion_1L,sr,32,9.6,force,lower_fy,-0.0003483030595816672 +illusion_1L,sr,33,9.9,force,front_fx,0.0019524100935086608 +illusion_1L,sr,33,9.9,force,front_fy,-7.934887253213674e-05 +illusion_1L,sr,33,9.9,force,upper_fx,0.0023279315792024136 +illusion_1L,sr,33,9.9,force,upper_fy,0.0004161747347097844 +illusion_1L,sr,33,9.9,force,lower_fx,0.002526034601032734 +illusion_1L,sr,33,9.9,force,lower_fy,-0.000344905216479674 +illusion_1L,sr,34,10.2,force,front_fx,0.001953482860699296 +illusion_1L,sr,34,10.2,force,front_fy,-6.411984213627875e-05 +illusion_1L,sr,34,10.2,force,upper_fx,0.0023451081942766905 +illusion_1L,sr,34,10.2,force,upper_fy,0.00048000042443163693 +illusion_1L,sr,34,10.2,force,lower_fx,0.0025010898243635893 +illusion_1L,sr,34,10.2,force,lower_fy,-0.0003339767281431705 +illusion_1L,sr,35,10.5,force,front_fx,0.0019600072409957647 +illusion_1L,sr,35,10.5,force,front_fy,-4.619052560883574e-05 +illusion_1L,sr,35,10.5,force,upper_fx,0.0023699121084064245 +illusion_1L,sr,35,10.5,force,upper_fy,0.0005261203041300178 +illusion_1L,sr,35,10.5,force,lower_fx,0.002477324102073908 +illusion_1L,sr,35,10.5,force,lower_fy,-0.00031376080005429685 +illusion_1L,sr,36,10.8,force,front_fx,0.001963771879673004 +illusion_1L,sr,36,10.8,force,front_fy,-2.6622272343956865e-05 +illusion_1L,sr,36,10.8,force,upper_fx,0.002393812872469425 +illusion_1L,sr,36,10.8,force,upper_fy,0.0005524309235624969 +illusion_1L,sr,36,10.8,force,lower_fx,0.0024494915269315243 +illusion_1L,sr,36,10.8,force,lower_fy,-0.0002842593239620328 +illusion_1L,sr,37,11.1,force,front_fx,0.0019657397642731667 +illusion_1L,sr,37,11.1,force,front_fy,-6.265002866712166e-06 +illusion_1L,sr,37,11.1,force,upper_fx,0.0024164041969925165 +illusion_1L,sr,37,11.1,force,upper_fy,0.0005578498239628971 +illusion_1L,sr,37,11.1,force,lower_fx,0.0024209546390920877 +illusion_1L,sr,37,11.1,force,lower_fy,-0.00024846408632583916 +illusion_1L,sr,38,11.4,force,front_fx,0.0019714105874300003 +illusion_1L,sr,38,11.4,force,front_fy,1.2251960470166523e-05 +illusion_1L,sr,38,11.4,force,upper_fx,0.002444751327857375 +illusion_1L,sr,38,11.4,force,upper_fy,0.0005421251989901066 +illusion_1L,sr,38,11.4,force,lower_fx,0.0024009020999073982 +illusion_1L,sr,38,11.4,force,lower_fy,-0.00021022972941864282 +illusion_1L,sr,39,11.7,force,front_fx,0.0019750408828258514 +illusion_1L,sr,39,11.7,force,front_fy,2.8745236704708077e-05 +illusion_1L,sr,39,11.7,force,upper_fx,0.002470463514328003 +illusion_1L,sr,39,11.7,force,upper_fy,0.0005125717143528163 +illusion_1L,sr,39,11.7,force,lower_fx,0.0023834400344640017 +illusion_1L,sr,39,11.7,force,lower_fy,-0.00017619907157495618 +illusion_1L,sr,40,12.0,force,front_fx,0.001978547777980566 +illusion_1L,sr,40,12.0,force,front_fy,4.300259388401173e-05 +illusion_1L,sr,40,12.0,force,upper_fx,0.002495822496712208 +illusion_1L,sr,40,12.0,force,upper_fy,0.00047399094910360873 +illusion_1L,sr,40,12.0,force,lower_fx,0.0023726169019937515 +illusion_1L,sr,40,12.0,force,lower_fy,-0.00015295250341296196 +illusion_1L,sr,41,12.3,force,front_fx,0.0019838856533169746 +illusion_1L,sr,41,12.3,force,front_fy,5.348856211639941e-05 +illusion_1L,sr,41,12.3,force,upper_fx,0.0025218897499144077 +illusion_1L,sr,41,12.3,force,upper_fy,0.0004324189794715494 +illusion_1L,sr,41,12.3,force,lower_fx,0.0023703419137746096 +illusion_1L,sr,41,12.3,force,lower_fy,-0.0001457282342016697 +illusion_1L,sr,42,12.6,force,front_fx,0.001995811937376857 +illusion_1L,sr,42,12.6,force,front_fy,6.130547990323976e-05 +illusion_1L,sr,42,12.6,force,upper_fx,0.002553960308432579 +illusion_1L,sr,42,12.6,force,upper_fy,0.00039653386920690536 +illusion_1L,sr,42,12.6,force,lower_fx,0.002382851904258132 +illusion_1L,sr,42,12.6,force,lower_fy,-0.0001577113289386034 +illusion_1L,sr,43,12.9,force,front_fx,0.0019942871294915676 +illusion_1L,sr,43,12.9,force,front_fy,6.612059223698452e-05 +illusion_1L,sr,43,12.9,force,upper_fx,0.00256451778113842 +illusion_1L,sr,43,12.9,force,upper_fy,0.00036836459184996784 +illusion_1L,sr,43,12.9,force,lower_fx,0.0023840374778956175 +illusion_1L,sr,43,12.9,force,lower_fy,-0.00019032828276976943 +illusion_1L,sr,44,13.2,force,front_fx,0.0019884586799889803 +illusion_1L,sr,44,13.2,force,front_fy,6.687627319479361e-05 +illusion_1L,sr,44,13.2,force,upper_fx,0.0025644281413406134 +illusion_1L,sr,44,13.2,force,upper_fy,0.0003515482821967453 +illusion_1L,sr,44,13.2,force,lower_fx,0.002384277991950512 +illusion_1L,sr,44,13.2,force,lower_fy,-0.00024152691185008734 +illusion_1L,sr,45,13.5,force,front_fx,0.0019807114731520414 +illusion_1L,sr,45,13.5,force,front_fy,6.470581138273701e-05 +illusion_1L,sr,45,13.5,force,upper_fx,0.0025530816055834293 +illusion_1L,sr,45,13.5,force,upper_fy,0.00034355069510638714 +illusion_1L,sr,45,13.5,force,lower_fx,0.002383540151640773 +illusion_1L,sr,45,13.5,force,lower_fy,-0.00030221950146369636 +illusion_1L,sr,46,13.8,force,front_fx,0.001973859965801239 +illusion_1L,sr,46,13.8,force,front_fy,5.854890332557261e-05 +illusion_1L,sr,46,13.8,force,upper_fx,0.0025342062581330538 +illusion_1L,sr,46,13.8,force,upper_fy,0.00033821360557340086 +illusion_1L,sr,46,13.8,force,lower_fx,0.0023846998810768127 +illusion_1L,sr,46,13.8,force,lower_fy,-0.00036545281182043254 +illusion_1L,sr,47,14.1,force,front_fx,0.0019662510603666306 +illusion_1L,sr,47,14.1,force,front_fy,4.904401794192381e-05 +illusion_1L,sr,47,14.1,force,upper_fx,0.0025070104748010635 +illusion_1L,sr,47,14.1,force,upper_fy,0.0003321320400573313 +illusion_1L,sr,47,14.1,force,lower_fx,0.002385393949225545 +illusion_1L,sr,47,14.1,force,lower_fy,-0.0004226411983836442 +illusion_1L,sr,48,14.4,force,front_fx,0.001962508074939251 +illusion_1L,sr,48,14.4,force,front_fy,3.7378675187937915e-05 +illusion_1L,sr,48,14.4,force,upper_fx,0.0024792570620775223 +illusion_1L,sr,48,14.4,force,upper_fy,0.00032109968014992774 +illusion_1L,sr,48,14.4,force,lower_fx,0.002391599817201495 +illusion_1L,sr,48,14.4,force,lower_fy,-0.0004662953724619001 +illusion_1L,sr,49,14.7,force,front_fx,0.001966702053323388 +illusion_1L,sr,49,14.7,force,front_fy,2.322311956959311e-05 +illusion_1L,sr,49,14.7,force,upper_fx,0.0024593842681497335 +illusion_1L,sr,49,14.7,force,upper_fy,0.0003025883052032441 +illusion_1L,sr,49,14.7,force,lower_fx,0.0024090686347335577 +illusion_1L,sr,49,14.7,force,lower_fy,-0.000493257655762136 +illusion_1L,sr,50,15.0,force,front_fx,0.00197391863912344 +illusion_1L,sr,50,15.0,force,front_fy,8.414606782025658e-06 +illusion_1L,sr,50,15.0,force,upper_fx,0.0024429592303931713 +illusion_1L,sr,50,15.0,force,upper_fy,0.0002791073056869209 +illusion_1L,sr,50,15.0,force,lower_fx,0.0024309807922691107 +illusion_1L,sr,50,15.0,force,lower_fy,-0.0005020201206207275 +illusion_1L,sr,51,15.3,force,front_fx,0.001976939383894205 +illusion_1L,sr,51,15.3,force,front_fy,-5.452825462270994e-06 +illusion_1L,sr,51,15.3,force,upper_fx,0.002424021949991584 +illusion_1L,sr,51,15.3,force,upper_fy,0.0002542225120123476 +illusion_1L,sr,51,15.3,force,lower_fx,0.0024494000244885683 +illusion_1L,sr,51,15.3,force,lower_fy,-0.0004954854375682771 +illusion_1L,sr,52,15.6,force,front_fx,0.001977270469069481 +illusion_1L,sr,52,15.6,force,front_fy,-1.8729519069893286e-05 +illusion_1L,sr,52,15.6,force,upper_fx,0.00240491796284914 +illusion_1L,sr,52,15.6,force,upper_fy,0.00023077527293935418 +illusion_1L,sr,52,15.6,force,lower_fx,0.002464473946020007 +illusion_1L,sr,52,15.6,force,lower_fy,-0.0004764146578963846 +illusion_1L,sr,53,15.9,force,front_fx,0.001979766646400094 +illusion_1L,sr,53,15.9,force,front_fy,-3.0111006708466448e-05 +illusion_1L,sr,53,15.9,force,upper_fx,0.0023928757291287184 +illusion_1L,sr,53,15.9,force,upper_fy,0.00021403819846455008 +illusion_1L,sr,53,15.9,force,lower_fx,0.0024824365973472595 +illusion_1L,sr,53,15.9,force,lower_fy,-0.000448294187663123 +illusion_1L,sr,54,16.2,force,front_fx,0.001978941960260272 +illusion_1L,sr,54,16.2,force,front_fy,-3.923377153114416e-05 +illusion_1L,sr,54,16.2,force,upper_fx,0.002381142694503069 +illusion_1L,sr,54,16.2,force,upper_fy,0.00020822632359340787 +illusion_1L,sr,54,16.2,force,lower_fx,0.0024952709209173918 +illusion_1L,sr,54,16.2,force,lower_fy,-0.00041800792678259313 +illusion_1L,sr,55,16.5,force,front_fx,0.0019769524224102497 +illusion_1L,sr,55,16.5,force,front_fy,-4.6799646952422336e-05 +illusion_1L,sr,55,16.5,force,upper_fx,0.0023728804662823677 +illusion_1L,sr,55,16.5,force,upper_fy,0.00021497845591511577 +illusion_1L,sr,55,16.5,force,lower_fx,0.0025052353739738464 +illusion_1L,sr,55,16.5,force,lower_fy,-0.0003899433941114694 +illusion_1L,sr,56,16.8,force,front_fx,0.00197804719209671 +illusion_1L,sr,56,16.8,force,front_fy,-5.163962850929238e-05 +illusion_1L,sr,56,16.8,force,upper_fx,0.0023718676529824734 +illusion_1L,sr,56,16.8,force,upper_fy,0.0002359637146582827 +illusion_1L,sr,56,16.8,force,lower_fx,0.00251564709469676 +illusion_1L,sr,56,16.8,force,lower_fy,-0.00036692447611130774 +illusion_1L,sr,57,17.1,force,front_fx,0.0019817203283309937 +illusion_1L,sr,57,17.1,force,front_fy,-5.410839003161527e-05 +illusion_1L,sr,57,17.1,force,upper_fx,0.0023776015732437372 +illusion_1L,sr,57,17.1,force,upper_fy,0.000268850038992241 +illusion_1L,sr,57,17.1,force,lower_fx,0.0025251577608287334 +illusion_1L,sr,57,17.1,force,lower_fy,-0.00035157232196070254 +illusion_1L,sr,58,17.4,force,front_fx,0.0019797675777226686 +illusion_1L,sr,58,17.4,force,front_fy,-5.404527473729104e-05 +illusion_1L,sr,58,17.4,force,upper_fx,0.002378335688263178 +illusion_1L,sr,58,17.4,force,upper_fy,0.0003113890707027167 +illusion_1L,sr,58,17.4,force,lower_fx,0.0025217547081410885 +illusion_1L,sr,58,17.4,force,lower_fy,-0.0003437305858824402 +illusion_1L,sr,59,17.7,force,front_fx,0.0019725384190678596 +illusion_1L,sr,59,17.7,force,front_fy,-5.067287202109583e-05 +illusion_1L,sr,59,17.7,force,upper_fx,0.002375084673985839 +illusion_1L,sr,59,17.7,force,upper_fy,0.00035827106330543756 +illusion_1L,sr,59,17.7,force,lower_fx,0.0025069403927773237 +illusion_1L,sr,59,17.7,force,lower_fy,-0.00034015363780781627 +illusion_1L,sr,60,18.0,force,front_fx,0.001966348383575678 +illusion_1L,sr,60,18.0,force,front_fy,-4.470893327379599e-05 +illusion_1L,sr,60,18.0,force,upper_fx,0.0023732350673526525 +illusion_1L,sr,60,18.0,force,upper_fy,0.0004016099846921861 +illusion_1L,sr,60,18.0,force,lower_fx,0.002486858982592821 +illusion_1L,sr,60,18.0,force,lower_fy,-0.00033655212610028684 +illusion_1L,sr,61,18.3,force,front_fx,0.00196103285998106 +illusion_1L,sr,61,18.3,force,front_fy,-3.642575757112354e-05 +illusion_1L,sr,61,18.3,force,upper_fx,0.0023736541625112295 +illusion_1L,sr,61,18.3,force,upper_fy,0.00043670382001437247 +illusion_1L,sr,61,18.3,force,lower_fx,0.0024637726601213217 +illusion_1L,sr,61,18.3,force,lower_fy,-0.0003291087341494858 +illusion_1L,sr,62,18.6,force,front_fx,0.0019568204879760742 +illusion_1L,sr,62,18.6,force,front_fy,-2.6165213057538494e-05 +illusion_1L,sr,62,18.6,force,upper_fx,0.0023759568575769663 +illusion_1L,sr,62,18.6,force,upper_fy,0.000460103212390095 +illusion_1L,sr,62,18.6,force,lower_fx,0.00243914732709527 +illusion_1L,sr,62,18.6,force,lower_fy,-0.00031625202973373234 +illusion_1L,sr,63,18.9,force,front_fx,0.0019568956922739744 +illusion_1L,sr,63,18.9,force,front_fy,-1.5482526578125544e-05 +illusion_1L,sr,63,18.9,force,upper_fx,0.0023847634438425303 +illusion_1L,sr,63,18.9,force,upper_fy,0.0004697757540270686 +illusion_1L,sr,63,18.9,force,lower_fx,0.002419236581772566 +illusion_1L,sr,63,18.9,force,lower_fy,-0.0002984455495607108 +illusion_1L,sr,64,19.2,force,front_fx,0.001963989110663533 +illusion_1L,sr,64,19.2,force,front_fy,-4.578037533065071e-06 +illusion_1L,sr,64,19.2,force,upper_fx,0.0024032113142311573 +illusion_1L,sr,64,19.2,force,upper_fy,0.00046687989379279315 +illusion_1L,sr,64,19.2,force,lower_fx,0.002408934524282813 +illusion_1L,sr,64,19.2,force,lower_fy,-0.00027677425532601774 +illusion_1L,sr,65,19.5,force,front_fx,0.0019700820557773113 +illusion_1L,sr,65,19.5,force,front_fy,5.761816282756627e-06 +illusion_1L,sr,65,19.5,force,upper_fx,0.0024215085431933403 +illusion_1L,sr,65,19.5,force,upper_fy,0.00045446769217960536 +illusion_1L,sr,65,19.5,force,lower_fx,0.0023998527321964502 +illusion_1L,sr,65,19.5,force,lower_fy,-0.0002563550660852343 +illusion_1L,sr,66,19.8,force,front_fx,0.0019711777567863464 +illusion_1L,sr,66,19.8,force,front_fy,1.4955575352360029e-05 +illusion_1L,sr,66,19.8,force,upper_fx,0.0024346986319869757 +illusion_1L,sr,66,19.8,force,upper_fy,0.00043649255530908704 +illusion_1L,sr,66,19.8,force,lower_fx,0.0023880545049905777 +illusion_1L,sr,66,19.8,force,lower_fy,-0.00024105752527248114 +illusion_1L,sr,67,20.1,force,front_fx,0.0019698694813996553 +illusion_1L,sr,67,20.1,force,front_fy,2.3179774871096015e-05 +illusion_1L,sr,67,20.1,force,upper_fx,0.002444073325023055 +illusion_1L,sr,67,20.1,force,upper_fy,0.0004160537791904062 +illusion_1L,sr,67,20.1,force,lower_fx,0.002376022282987833 +illusion_1L,sr,67,20.1,force,lower_fy,-0.0002330985153093934 +illusion_1L,sr,68,20.4,force,front_fx,0.001968997297808528 +illusion_1L,sr,68,20.4,force,front_fy,2.9858825655537657e-05 +illusion_1L,sr,68,20.4,force,upper_fx,0.0024527402129024267 +illusion_1L,sr,68,20.4,force,upper_fy,0.0003961001639254391 +illusion_1L,sr,68,20.4,force,lower_fx,0.002367590321227908 +illusion_1L,sr,68,20.4,force,lower_fy,-0.0002349245041841641 +illusion_1L,sr,69,20.7,force,front_fx,0.00196544686332345 +illusion_1L,sr,69,20.7,force,front_fy,3.4729655453702435e-05 +illusion_1L,sr,69,20.7,force,upper_fx,0.00245606224052608 +illusion_1L,sr,69,20.7,force,upper_fy,0.00037964407238177955 +illusion_1L,sr,69,20.7,force,lower_fx,0.0023588843178004026 +illusion_1L,sr,69,20.7,force,lower_fy,-0.000247149815550074 +illusion_1L,sr,70,21.0,force,front_fx,0.0019610056187957525 +illusion_1L,sr,70,21.0,force,front_fy,3.7981259083608165e-05 +illusion_1L,sr,70,21.0,force,upper_fx,0.002455393085256219 +illusion_1L,sr,70,21.0,force,upper_fy,0.00036793143954128027 +illusion_1L,sr,70,21.0,force,lower_fx,0.0023519734386354685 +illusion_1L,sr,70,21.0,force,lower_fy,-0.0002689611283130944 +illusion_1L,sr,71,21.3,force,front_fx,0.0019611516036093235 +illusion_1L,sr,71,21.3,force,front_fy,3.870054933940992e-05 +illusion_1L,sr,71,21.3,force,upper_fx,0.0024563937913626432 +illusion_1L,sr,71,21.3,force,upper_fy,0.0003595125745050609 +illusion_1L,sr,71,21.3,force,lower_fx,0.002352752024307847 +illusion_1L,sr,71,21.3,force,lower_fy,-0.0002978942357003689 +illusion_1L,sr,72,21.6,force,front_fx,0.001963476650416851 +illusion_1L,sr,72,21.6,force,front_fy,3.721156099345535e-05 +illusion_1L,sr,72,21.6,force,upper_fx,0.0024557355791330338 +illusion_1L,sr,72,21.6,force,upper_fy,0.00035431672586128116 +illusion_1L,sr,72,21.6,force,lower_fx,0.002357898047193885 +illusion_1L,sr,72,21.6,force,lower_fy,-0.0003308196028228849 +illusion_1L,sr,73,21.9,force,front_fx,0.0019610561430454254 +illusion_1L,sr,73,21.9,force,front_fy,3.365053635207005e-05 +illusion_1L,sr,73,21.9,force,upper_fx,0.0024453967344015837 +illusion_1L,sr,73,21.9,force,upper_fy,0.00035068151191808283 +illusion_1L,sr,73,21.9,force,lower_fx,0.002359045436605811 +illusion_1L,sr,73,21.9,force,lower_fy,-0.0003650345024652779 +illusion_1L,sr,74,22.2,force,front_fx,0.001955501502379775 +illusion_1L,sr,74,22.2,force,front_fy,2.7772415705840103e-05 +illusion_1L,sr,74,22.2,force,upper_fx,0.002427451778203249 +illusion_1L,sr,74,22.2,force,upper_fy,0.0003452399396337569 +illusion_1L,sr,74,22.2,force,lower_fx,0.0023571818601340055 +illusion_1L,sr,74,22.2,force,lower_fy,-0.0003958460583817214 +illusion_1L,sr,75,22.5,force,front_fx,0.0019520644564181566 +illusion_1L,sr,75,22.5,force,front_fy,2.072135976050049e-05 +illusion_1L,sr,75,22.5,force,upper_fx,0.0024095128756016493 +illusion_1L,sr,75,22.5,force,upper_fy,0.00033629286917857826 +illusion_1L,sr,75,22.5,force,lower_fx,0.0023589269258081913 +illusion_1L,sr,75,22.5,force,lower_fy,-0.00041854564915411174 +illusion_1L,sr,76,22.8,force,front_fx,0.0019488770049065351 +illusion_1L,sr,76,22.8,force,front_fy,1.2528026672953274e-05 +illusion_1L,sr,76,22.8,force,upper_fx,0.0023899967782199383 +illusion_1L,sr,76,22.8,force,upper_fy,0.00032293840195052326 +illusion_1L,sr,76,22.8,force,lower_fx,0.0023612906225025654 +illusion_1L,sr,76,22.8,force,lower_fy,-0.0004323439206928015 +illusion_1L,sr,77,23.1,force,front_fx,0.0019464653450995684 +illusion_1L,sr,77,23.1,force,front_fy,3.6880869629385415e-06 +illusion_1L,sr,77,23.1,force,upper_fx,0.0023717167787253857 +illusion_1L,sr,77,23.1,force,upper_fy,0.000306523812469095 +illusion_1L,sr,77,23.1,force,lower_fx,0.0023656939156353474 +illusion_1L,sr,77,23.1,force,lower_fy,-0.00043634860776364803 +illusion_1L,sr,78,23.4,force,front_fx,0.0019481434719637036 +illusion_1L,sr,78,23.4,force,front_fy,-4.574425020109629e-06 +illusion_1L,sr,78,23.4,force,upper_fx,0.002359410747885704 +illusion_1L,sr,78,23.4,force,upper_fy,0.0002890340983867645 +illusion_1L,sr,78,23.4,force,lower_fx,0.0023758860770612955 +illusion_1L,sr,78,23.4,force,lower_fy,-0.00043141658534295857 +illusion_1L,sr,79,23.7,force,front_fx,0.001955548534169793 +illusion_1L,sr,79,23.7,force,front_fy,-1.2621205314644612e-05 +illusion_1L,sr,79,23.7,force,upper_fx,0.0023560780100524426 +illusion_1L,sr,79,23.7,force,upper_fy,0.0002726810344029218 +illusion_1L,sr,79,23.7,force,lower_fx,0.0023936820216476917 +illusion_1L,sr,79,23.7,force,lower_fy,-0.00042055919766426086 +illusion_1L,sr,80,24.0,force,front_fx,0.001959550892934203 +illusion_1L,sr,80,24.0,force,front_fy,-1.9941549908253364e-05 +illusion_1L,sr,80,24.0,force,upper_fx,0.0023514656350016594 +illusion_1L,sr,80,24.0,force,upper_fy,0.0002621389285195619 +illusion_1L,sr,80,24.0,force,lower_fx,0.002407896099612117 +illusion_1L,sr,80,24.0,force,lower_fy,-0.00040705918218009174 +illusion_1L,sr,81,24.3,force,front_fx,0.00195876182988286 +illusion_1L,sr,81,24.3,force,front_fy,-2.581809530965984e-05 +illusion_1L,sr,81,24.3,force,upper_fx,0.0023436290211975574 +illusion_1L,sr,81,24.3,force,upper_fy,0.00025935820303857327 +illusion_1L,sr,81,24.3,force,lower_fx,0.0024159271270036697 +illusion_1L,sr,81,24.3,force,lower_fy,-0.0003934763080906123 +illusion_1L,sr,82,24.6,force,front_fx,0.0019558509811758995 +illusion_1L,sr,82,24.6,force,front_fy,-3.0688006518175825e-05 +illusion_1L,sr,82,24.6,force,upper_fx,0.002335391938686371 +illusion_1L,sr,82,24.6,force,upper_fy,0.0002645622589625418 +illusion_1L,sr,82,24.6,force,lower_fx,0.0024196337908506393 +illusion_1L,sr,82,24.6,force,lower_fy,-0.0003821759601123631 +illusion_1L,sr,83,24.9,force,front_fx,0.0019563741516321898 +illusion_1L,sr,83,24.9,force,front_fy,-3.39597936545033e-05 +illusion_1L,sr,83,24.9,force,upper_fx,0.002332862466573715 +illusion_1L,sr,83,24.9,force,upper_fy,0.00027854449581354856 +illusion_1L,sr,83,24.9,force,lower_fx,0.0024248131085187197 +illusion_1L,sr,83,24.9,force,lower_fy,-0.0003734917554538697 +illusion_1L,sr,84,25.2,force,front_fx,0.0019481424242258072 +illusion_1L,sr,84,25.2,force,front_fy,-3.504684354993515e-05 +illusion_1L,sr,84,25.2,force,upper_fx,0.0023220053408294916 +illusion_1L,sr,84,25.2,force,upper_fy,0.0002983898448292166 +illusion_1L,sr,84,25.2,force,lower_fx,0.002416635863482952 +illusion_1L,sr,84,25.2,force,lower_fy,-0.00036614295095205307 +illusion_1L,sr,85,25.5,force,front_fx,0.0019442844204604626 +illusion_1L,sr,85,25.5,force,front_fy,-3.494767952361144e-05 +illusion_1L,sr,85,25.5,force,upper_fx,0.0023179820273071527 +illusion_1L,sr,85,25.5,force,upper_fy,0.00032282262691296637 +illusion_1L,sr,85,25.5,force,lower_fx,0.002410384127870202 +illusion_1L,sr,85,25.5,force,lower_fy,-0.00036151224048808217 +illusion_1L,sr,86,25.8,force,front_fx,0.0019460078328847885 +illusion_1L,sr,86,25.8,force,front_fy,-3.2684609323041514e-05 +illusion_1L,sr,86,25.8,force,upper_fx,0.0023223846219480038 +illusion_1L,sr,86,25.8,force,upper_fy,0.00034886010689660907 +illusion_1L,sr,86,25.8,force,lower_fx,0.002407850231975317 +illusion_1L,sr,86,25.8,force,lower_fy,-0.00035614866646938026 +illusion_1L,sr,87,26.1,force,front_fx,0.0019485137891024351 +illusion_1L,sr,87,26.1,force,front_fy,-2.855671482393518e-05 +illusion_1L,sr,87,26.1,force,upper_fx,0.0023289464879781008 +illusion_1L,sr,87,26.1,force,upper_fy,0.00037380773574113846 +illusion_1L,sr,87,26.1,force,lower_fx,0.0024032695218920708 +illusion_1L,sr,87,26.1,force,lower_fy,-0.0003502943436615169 +illusion_1L,sr,88,26.4,force,front_fx,0.001946739386767149 +illusion_1L,sr,88,26.4,force,front_fy,-2.3501444957219064e-05 +illusion_1L,sr,88,26.4,force,upper_fx,0.002332044765353203 +illusion_1L,sr,88,26.4,force,upper_fy,0.00039566835039295256 +illusion_1L,sr,88,26.4,force,lower_fx,0.002391501097008586 +illusion_1L,sr,88,26.4,force,lower_fy,-0.000343131716363132 +illusion_1L,sr,89,26.7,force,front_fx,0.0019429894164204597 +illusion_1L,sr,89,26.7,force,front_fy,-1.6871139450813644e-05 +illusion_1L,sr,89,26.7,force,upper_fx,0.002332933945581317 +illusion_1L,sr,89,26.7,force,upper_fy,0.0004123161779716611 +illusion_1L,sr,89,26.7,force,lower_fx,0.002375111449509859 +illusion_1L,sr,89,26.7,force,lower_fy,-0.0003327428421471268 +illusion_1L,sr,90,27.0,force,front_fx,0.0019412990659475327 +illusion_1L,sr,90,27.0,force,front_fy,-9.664014214649796e-06 +illusion_1L,sr,90,27.0,force,upper_fx,0.002337045967578888 +illusion_1L,sr,90,27.0,force,upper_fy,0.0004209954058751464 +illusion_1L,sr,90,27.0,force,lower_fx,0.0023604289162904024 +illusion_1L,sr,90,27.0,force,lower_fy,-0.00031955321901477873 +illusion_1L,sr,91,27.3,force,front_fx,0.0019391196547076106 +illusion_1L,sr,91,27.3,force,front_fy,-2.507188582967501e-06 +illusion_1L,sr,91,27.3,force,upper_fx,0.002340907696634531 +illusion_1L,sr,91,27.3,force,upper_fy,0.00042279844637960196 +illusion_1L,sr,91,27.3,force,lower_fx,0.0023449701257050037 +illusion_1L,sr,91,27.3,force,lower_fy,-0.00030462638824246824 +illusion_1L,sr,92,27.6,force,front_fx,0.0019374649273231626 +illusion_1L,sr,92,27.6,force,front_fy,4.942676696373383e-06 +illusion_1L,sr,92,27.6,force,upper_fx,0.0023462155368179083 +illusion_1L,sr,92,27.6,force,upper_fy,0.0004190153849776834 +illusion_1L,sr,92,27.6,force,lower_fx,0.0023316240403801203 +illusion_1L,sr,92,27.6,force,lower_fy,-0.00028969315462745726 +illusion_1L,sr,93,27.9,force,front_fx,0.0019399751909077168 +illusion_1L,sr,93,27.9,force,front_fy,1.1504928806971293e-05 +illusion_1L,sr,93,27.9,force,upper_fx,0.002356767188757658 +illusion_1L,sr,93,27.9,force,upper_fy,0.00041013082955032587 +illusion_1L,sr,93,27.9,force,lower_fx,0.0023248654324561357 +illusion_1L,sr,93,27.9,force,lower_fy,-0.0002770994324237108 +illusion_1L,sr,94,28.2,force,front_fx,0.001946420525200665 +illusion_1L,sr,94,28.2,force,front_fy,1.714661266305484e-05 +illusion_1L,sr,94,28.2,force,upper_fx,0.00237205158919096 +illusion_1L,sr,94,28.2,force,upper_fy,0.0003994417784269899 +illusion_1L,sr,94,28.2,force,lower_fx,0.0023250726517289877 +illusion_1L,sr,94,28.2,force,lower_fy,-0.00026879674987867475 +illusion_1L,sr,95,28.5,force,front_fx,0.0019486881792545319 +illusion_1L,sr,95,28.5,force,front_fy,2.1904854293097742e-05 +illusion_1L,sr,95,28.5,force,upper_fx,0.002381770173087716 +illusion_1L,sr,95,28.5,force,upper_fy,0.000389472785172984 +illusion_1L,sr,95,28.5,force,lower_fx,0.0023226479534059763 +illusion_1L,sr,95,28.5,force,lower_fy,-0.00026779912877827883 +illusion_1L,sr,96,28.8,force,front_fx,0.0019463286735117435 +illusion_1L,sr,96,28.8,force,front_fy,2.506225609977264e-05 +illusion_1L,sr,96,28.8,force,upper_fx,0.0023844807874411345 +illusion_1L,sr,96,28.8,force,upper_fy,0.00038117612712085247 +illusion_1L,sr,96,28.8,force,lower_fx,0.0023165929596871138 +illusion_1L,sr,96,28.8,force,lower_fy,-0.00027477293042466044 +illusion_1L,sr,97,29.1,force,front_fx,0.0019431097898632288 +illusion_1L,sr,97,29.1,force,front_fy,2.7059837520937435e-05 +illusion_1L,sr,97,29.1,force,upper_fx,0.0023838994093239307 +illusion_1L,sr,97,29.1,force,upper_fy,0.0003749178722500801 +illusion_1L,sr,97,29.1,force,lower_fx,0.0023111316841095686 +illusion_1L,sr,97,29.1,force,lower_fy,-0.0002880582760553807 +illusion_1L,sr,98,29.4,force,front_fx,0.0019393127877265215 +illusion_1L,sr,98,29.4,force,front_fy,2.7778900403063744e-05 +illusion_1L,sr,98,29.4,force,upper_fx,0.002379863290116191 +illusion_1L,sr,98,29.4,force,upper_fy,0.00036996538983657956 +illusion_1L,sr,98,29.4,force,lower_fx,0.0023063619155436754 +illusion_1L,sr,98,29.4,force,lower_fy,-0.0003066557692363858 +illusion_1L,sr,99,29.7,force,front_fx,0.0019345625769346952 +illusion_1L,sr,99,29.7,force,front_fy,2.6636169422999956e-05 +illusion_1L,sr,99,29.7,force,upper_fx,0.0023720760364085436 +illusion_1L,sr,99,29.7,force,upper_fy,0.0003654127649497241 +illusion_1L,sr,99,29.7,force,lower_fx,0.0023018496576696634 +illusion_1L,sr,99,29.7,force,lower_fy,-0.00032850936986505985 +illusion_1L,sr,100,30.0,force,front_fx,0.001932382001541555 +illusion_1L,sr,100,30.0,force,front_fy,2.4116561689879745e-05 +illusion_1L,sr,100,30.0,force,upper_fx,0.0023642743472009897 +illusion_1L,sr,100,30.0,force,upper_fy,0.00036038996768184006 +illusion_1L,sr,100,30.0,force,lower_fx,0.0023013055324554443 +illusion_1L,sr,100,30.0,force,lower_fy,-0.00035012722946703434 +illusion_1L,sr,101,30.3,force,front_fx,0.0019387499196454883 +illusion_1L,sr,101,30.3,force,front_fy,2.0313749701017514e-05 +illusion_1L,sr,101,30.3,force,upper_fx,0.0023650324437767267 +illusion_1L,sr,101,30.3,force,upper_fy,0.0003535850264597684 +illusion_1L,sr,101,30.3,force,lower_fx,0.002312591066583991 +illusion_1L,sr,101,30.3,force,lower_fy,-0.0003707821306306869 +illusion_1L,sr,102,30.6,force,front_fx,0.0019383452599868178 +illusion_1L,sr,102,30.6,force,front_fy,1.4972682038205676e-05 +illusion_1L,sr,102,30.6,force,upper_fx,0.002355632372200489 +illusion_1L,sr,102,30.6,force,upper_fy,0.0003439437714405358 +illusion_1L,sr,102,30.6,force,lower_fx,0.002316586207598448 +illusion_1L,sr,102,30.6,force,lower_fy,-0.00038723982288502157 +illusion_1L,sr,103,30.9,force,front_fx,0.0019370157970115542 +illusion_1L,sr,103,30.9,force,front_fy,9.338978088635486e-06 +illusion_1L,sr,103,30.9,force,upper_fx,0.002344604814425111 +illusion_1L,sr,103,30.9,force,upper_fy,0.0003335360379423946 +illusion_1L,sr,103,30.9,force,lower_fx,0.0023208523634821177 +illusion_1L,sr,103,30.9,force,lower_fy,-0.0003999810141976923 +illusion_1L,sr,104,31.2,force,front_fx,0.0019343680469319224 +illusion_1L,sr,104,31.2,force,front_fy,2.965524117826135e-06 +illusion_1L,sr,104,31.2,force,upper_fx,0.0023309874814003706 +illusion_1L,sr,104,31.2,force,upper_fy,0.00032109717722050846 +illusion_1L,sr,104,31.2,force,lower_fx,0.0023234309628605843 +illusion_1L,sr,104,31.2,force,lower_fy,-0.00040788110345602036 +illusion_1L,sr,105,31.5,force,front_fx,0.0019332957454025745 +illusion_1L,sr,105,31.5,force,front_fy,-3.4829838568839477e-06 +illusion_1L,sr,105,31.5,force,upper_fx,0.0023195601534098387 +illusion_1L,sr,105,31.5,force,upper_fy,0.000307958951452747 +illusion_1L,sr,105,31.5,force,lower_fx,0.0023282100446522236 +illusion_1L,sr,105,31.5,force,lower_fy,-0.00040978798642754555 +illusion_1L,sr,106,31.8,force,front_fx,0.0019346174085512757 +illusion_1L,sr,106,31.8,force,front_fy,-9.313665032095741e-06 +illusion_1L,sr,106,31.8,force,upper_fx,0.002311580115929246 +illusion_1L,sr,106,31.8,force,upper_fy,0.000296230660751462 +illusion_1L,sr,106,31.8,force,lower_fx,0.0023358147591352463 +illusion_1L,sr,106,31.8,force,lower_fy,-0.00040786026511341333 +illusion_1L,sr,107,32.1,force,front_fx,0.001929825753904879 +illusion_1L,sr,107,32.1,force,front_fy,-1.485221400798764e-05 +illusion_1L,sr,107,32.1,force,upper_fx,0.0022980307694524527 +illusion_1L,sr,107,32.1,force,upper_fy,0.0002857954241335392 +illusion_1L,sr,107,32.1,force,lower_fx,0.0023361491039395332 +illusion_1L,sr,107,32.1,force,lower_fy,-0.0004016453749500215 +illusion_1L,sr,108,32.4,force,front_fx,0.0019328405614942312 +illusion_1L,sr,108,32.4,force,front_fy,-1.933106432261411e-05 +illusion_1L,sr,108,32.4,force,upper_fx,0.002295706421136856 +illusion_1L,sr,108,32.4,force,upper_fy,0.00027996060089208186 +illusion_1L,sr,108,32.4,force,lower_fx,0.002345654182136059 +illusion_1L,sr,108,32.4,force,lower_fy,-0.0003936677530873567 +illusion_1L,sr,109,32.7,force,front_fx,0.0019379741279408336 +illusion_1L,sr,109,32.7,force,front_fy,-2.2501239072880708e-05 +illusion_1L,sr,109,32.7,force,upper_fx,0.0022978715132921934 +illusion_1L,sr,109,32.7,force,upper_fy,0.00027961816522292793 +illusion_1L,sr,109,32.7,force,lower_fx,0.0023570081684738398 +illusion_1L,sr,109,32.7,force,lower_fy,-0.0003856884432025254 +illusion_1L,sr,110,33.0,force,front_fx,0.001938601373694837 +illusion_1L,sr,110,33.0,force,front_fy,-2.4899927666410804e-05 +illusion_1L,sr,110,33.0,force,upper_fx,0.002296757884323597 +illusion_1L,sr,110,33.0,force,upper_fy,0.00028596469201147556 +illusion_1L,sr,110,33.0,force,lower_fx,0.0023618973791599274 +illusion_1L,sr,110,33.0,force,lower_fy,-0.00037955661537125707 +illusion_1L,sr,111,33.3,force,front_fx,0.0019353794632479548 +illusion_1L,sr,111,33.3,force,front_fy,-2.5824609110713936e-05 +illusion_1L,sr,111,33.3,force,upper_fx,0.002292248886078596 +illusion_1L,sr,111,33.3,force,upper_fy,0.0002988850465044379 +illusion_1L,sr,111,33.3,force,lower_fx,0.0023600647691637278 +illusion_1L,sr,111,33.3,force,lower_fy,-0.00037480166065506637 +illusion_1L,sr,112,33.6,force,front_fx,0.0019323817687109113 +illusion_1L,sr,112,33.6,force,front_fy,-2.5388593712705187e-05 +illusion_1L,sr,112,33.6,force,upper_fx,0.0022892747074365616 +illusion_1L,sr,112,33.6,force,upper_fy,0.00031558642513118684 +illusion_1L,sr,112,33.6,force,lower_fx,0.0023562342394143343 +illusion_1L,sr,112,33.6,force,lower_fy,-0.00037070023245178163 +illusion_1L,sr,113,33.9,force,front_fx,0.0019285200396552682 +illusion_1L,sr,113,33.9,force,front_fy,-2.383105493208859e-05 +illusion_1L,sr,113,33.9,force,upper_fx,0.0022860190365463495 +illusion_1L,sr,113,33.9,force,upper_fy,0.00033458994585089386 +illusion_1L,sr,113,33.9,force,lower_fx,0.0023486448917537928 +illusion_1L,sr,113,33.9,force,lower_fy,-0.00036648206878453493 +illusion_1L,sr,114,34.2,force,front_fx,0.0019245713483542204 +illusion_1L,sr,114,34.2,force,front_fy,-2.0675690393545665e-05 +illusion_1L,sr,114,34.2,force,upper_fx,0.0022836942225694656 +illusion_1L,sr,114,34.2,force,upper_fy,0.00035402519279159606 +illusion_1L,sr,114,34.2,force,lower_fx,0.002338909078389406 +illusion_1L,sr,114,34.2,force,lower_fy,-0.0003607271355576813 +illusion_1L,sr,115,34.5,force,front_fx,0.0019237762317061424 +illusion_1L,sr,115,34.5,force,front_fy,-1.6787178537924774e-05 +illusion_1L,sr,115,34.5,force,upper_fx,0.0022860157769173384 +illusion_1L,sr,115,34.5,force,upper_fy,0.00037118809996172786 +illusion_1L,sr,115,34.5,force,lower_fx,0.002331177704036236 +illusion_1L,sr,115,34.5,force,lower_fy,-0.00035289485822431743 +illusion_1L,sr,116,34.8,force,front_fx,0.0019312469521537423 +illusion_1L,sr,116,34.8,force,front_fy,-1.2023873750877101e-05 +illusion_1L,sr,116,34.8,force,upper_fx,0.002299222629517317 +illusion_1L,sr,116,34.8,force,upper_fy,0.0003857636475004256 +illusion_1L,sr,116,34.8,force,lower_fx,0.002332310890778899 +illusion_1L,sr,116,34.8,force,lower_fy,-0.00034299728577025235 +illusion_1L,sr,117,35.1,force,front_fx,0.0019305775640532374 +illusion_1L,sr,117,35.1,force,front_fy,-6.573756763827987e-06 +illusion_1L,sr,117,35.1,force,upper_fx,0.002303501358255744 +illusion_1L,sr,117,35.1,force,upper_fy,0.0003957473090849817 +illusion_1L,sr,117,35.1,force,lower_fx,0.0023232006933540106 +illusion_1L,sr,117,35.1,force,lower_fy,-0.00033060985151678324 +illusion_1L,sr,118,35.4,force,front_fx,0.001929496880620718 +illusion_1L,sr,118,35.4,force,front_fy,-1.1709601039910922e-06 +illusion_1L,sr,118,35.4,force,upper_fx,0.0023078483063727617 +illusion_1L,sr,118,35.4,force,upper_fy,0.0004024227964691818 +illusion_1L,sr,118,35.4,force,lower_fx,0.0023135500960052013 +illusion_1L,sr,118,35.4,force,lower_fy,-0.0003185849345754832 +illusion_1L,sr,119,35.7,force,front_fx,0.001927595934830606 +illusion_1L,sr,119,35.7,force,front_fy,4.130501565668965e-06 +illusion_1L,sr,119,35.7,force,upper_fx,0.0023109561298042536 +illusion_1L,sr,119,35.7,force,upper_fy,0.0004050515708513558 +illusion_1L,sr,119,35.7,force,lower_fx,0.002302916254848242 +illusion_1L,sr,119,35.7,force,lower_fy,-0.0003063648473471403 +illusion_1L,sr,120,36.0,force,front_fx,0.0019263147842139006 +illusion_1L,sr,120,36.0,force,front_fy,8.997453733172733e-06 +illusion_1L,sr,120,36.0,force,upper_fx,0.0023147230967879295 +illusion_1L,sr,120,36.0,force,upper_fy,0.00040367364999838173 +illusion_1L,sr,120,36.0,force,lower_fx,0.0022937844041734934 +illusion_1L,sr,120,36.0,force,lower_fy,-0.00029549351893365383 +illusion_1L,sr,121,36.3,force,front_fx,0.0019243030110374093 +illusion_1L,sr,121,36.3,force,front_fy,1.3108558960084338e-05 +illusion_1L,sr,121,36.3,force,upper_fx,0.0023172725923359394 +illusion_1L,sr,121,36.3,force,upper_fy,0.0003996155282948166 +illusion_1L,sr,121,36.3,force,lower_fx,0.002284771064296365 +illusion_1L,sr,121,36.3,force,lower_fy,-0.00028754238155670464 +illusion_1L,sr,122,36.6,force,front_fx,0.0019231863552704453 +illusion_1L,sr,122,36.6,force,front_fy,1.663068906054832e-05 +illusion_1L,sr,122,36.6,force,upper_fx,0.002320542000234127 +illusion_1L,sr,122,36.6,force,upper_fy,0.00039394214400090277 +illusion_1L,sr,122,36.6,force,lower_fx,0.002278432482853532 +illusion_1L,sr,122,36.6,force,lower_fy,-0.0002833528851624578 +illusion_1L,sr,123,36.9,force,front_fx,0.0019266352755948901 +illusion_1L,sr,123,36.9,force,front_fy,1.9226841686759144e-05 +illusion_1L,sr,123,36.9,force,upper_fx,0.0023287534713745117 +illusion_1L,sr,123,36.9,force,upper_fy,0.00038720446173101664 +illusion_1L,sr,123,36.9,force,lower_fx,0.002279354026541114 +illusion_1L,sr,123,36.9,force,lower_fy,-0.000283741217572242 +illusion_1L,sr,124,37.2,force,front_fx,0.0019306318135932088 +illusion_1L,sr,124,37.2,force,front_fy,2.075469819828868e-05 +illusion_1L,sr,124,37.2,force,upper_fx,0.0023365216329693794 +illusion_1L,sr,124,37.2,force,upper_fy,0.00038115031202323735 +illusion_1L,sr,124,37.2,force,lower_fx,0.002282514935359359 +illusion_1L,sr,124,37.2,force,lower_fy,-0.0002896292426157743 +illusion_1L,sr,125,37.5,force,front_fx,0.0019301220308989286 +illusion_1L,sr,125,37.5,force,front_fy,2.13009407161735e-05 +illusion_1L,sr,125,37.5,force,upper_fx,0.0023376757744699717 +illusion_1L,sr,125,37.5,force,upper_fy,0.0003765768778976053 +illusion_1L,sr,125,37.5,force,lower_fx,0.0022821102757006884 +illusion_1L,sr,125,37.5,force,lower_fy,-0.0003011602093465626 +illusion_1L,sr,126,37.8,force,front_fx,0.0019265227019786835 +illusion_1L,sr,126,37.8,force,front_fy,2.0526686057564802e-05 +illusion_1L,sr,126,37.8,force,upper_fx,0.0023328058887273073 +illusion_1L,sr,126,37.8,force,upper_fy,0.00037252079346217215 +illusion_1L,sr,126,37.8,force,lower_fx,0.002278687432408333 +illusion_1L,sr,126,37.8,force,lower_fy,-0.00031700541148893535 +illusion_1L,sr,127,38.1,force,front_fx,0.0019238420063629746 +illusion_1L,sr,127,38.1,force,front_fy,1.8600188923301175e-05 +illusion_1L,sr,127,38.1,force,upper_fx,0.002326940419152379 +illusion_1L,sr,127,38.1,force,upper_fy,0.00036782369716092944 +illusion_1L,sr,127,38.1,force,lower_fx,0.0022772783413529396 +illusion_1L,sr,127,38.1,force,lower_fy,-0.00033448540489189327 +illusion_1L,sr,128,38.4,force,front_fx,0.0019204751588404179 +illusion_1L,sr,128,38.4,force,front_fy,1.5761470422148705e-05 +illusion_1L,sr,128,38.4,force,upper_fx,0.0023180164862424135 +illusion_1L,sr,128,38.4,force,upper_fy,0.0003618336922954768 +illusion_1L,sr,128,38.4,force,lower_fx,0.0022754876408725977 +illusion_1L,sr,128,38.4,force,lower_fy,-0.00035211769863963127 +illusion_1L,sr,129,38.7,force,front_fx,0.0019172553438693285 +illusion_1L,sr,129,38.7,force,front_fy,1.1816729056590702e-05 +illusion_1L,sr,129,38.7,force,upper_fx,0.0023080019745975733 +illusion_1L,sr,129,38.7,force,upper_fy,0.00035372423008084297 +illusion_1L,sr,129,38.7,force,lower_fx,0.0022747968323528767 +illusion_1L,sr,129,38.7,force,lower_fy,-0.00036824680864810944 +illusion_1L,sr,130,39.0,force,front_fx,0.0019179093651473522 +illusion_1L,sr,130,39.0,force,front_fy,7.455778813891811e-06 +illusion_1L,sr,130,39.0,force,upper_fx,0.002301652915775776 +illusion_1L,sr,130,39.0,force,upper_fy,0.00034351309295743704 +illusion_1L,sr,130,39.0,force,lower_fx,0.002279438078403473 +illusion_1L,sr,130,39.0,force,lower_fy,-0.00038087155553512275 +illusion_1L,sr,131,39.3,force,front_fx,0.0019258108222857118 +illusion_1L,sr,131,39.3,force,front_fy,2.763599468380562e-06 +illusion_1L,sr,131,39.3,force,upper_fx,0.0023036140482872725 +illusion_1L,sr,131,39.3,force,upper_fy,0.00033201687620021403 +illusion_1L,sr,131,39.3,force,lower_fx,0.002293385798111558 +illusion_1L,sr,131,39.3,force,lower_fy,-0.000390595116186887 +illusion_1L,sr,132,39.6,force,front_fx,0.0019246554002165794 +illusion_1L,sr,132,39.6,force,front_fy,-2.065218268398894e-06 +illusion_1L,sr,132,39.6,force,upper_fx,0.0022950090933591127 +illusion_1L,sr,132,39.6,force,upper_fy,0.00031961294007487595 +illusion_1L,sr,132,39.6,force,lower_fx,0.00229713786393404 +illusion_1L,sr,132,39.6,force,lower_fy,-0.00039583531906828284 +illusion_1L,sr,133,39.9,force,front_fx,0.0019232999766245484 +illusion_1L,sr,133,39.9,force,front_fy,-6.447857231250964e-06 +illusion_1L,sr,133,39.9,force,upper_fx,0.0022863871417939663 +illusion_1L,sr,133,39.9,force,upper_fy,0.00030900893034413457 +illusion_1L,sr,133,39.9,force,lower_fx,0.0023007122799754143 +illusion_1L,sr,133,39.9,force,lower_fy,-0.00039846563595347106 +illusion_1L,sr,134,40.2,force,front_fx,0.0019217731896787882 +illusion_1L,sr,134,40.2,force,front_fy,-1.0666621165000834e-05 +illusion_1L,sr,134,40.2,force,upper_fx,0.002278122818097472 +illusion_1L,sr,134,40.2,force,upper_fy,0.0002998157578986138 +illusion_1L,sr,134,40.2,force,lower_fx,0.002303853165358305 +illusion_1L,sr,134,40.2,force,lower_fy,-0.00039803804247640073 +illusion_1L,sr,135,40.5,force,front_fx,0.001920170383527875 +illusion_1L,sr,135,40.5,force,front_fy,-1.435467493138276e-05 +illusion_1L,sr,135,40.5,force,upper_fx,0.002270594472065568 +illusion_1L,sr,135,40.5,force,upper_fy,0.00029364725924097 +illusion_1L,sr,135,40.5,force,lower_fx,0.0023064438719302416 +illusion_1L,sr,135,40.5,force,lower_fy,-0.00039499052218161523 +illusion_1L,sr,136,40.8,force,front_fx,0.0019178834045305848 +illusion_1L,sr,136,40.8,force,front_fy,-1.71874780789949e-05 +illusion_1L,sr,136,40.8,force,upper_fx,0.0022634209599345922 +illusion_1L,sr,136,40.8,force,upper_fy,0.0002911958727054298 +illusion_1L,sr,136,40.8,force,lower_fx,0.0023077530786395073 +illusion_1L,sr,136,40.8,force,lower_fy,-0.0003903752949554473 +illusion_1L,sr,137,41.1,force,front_fx,0.0019171559251844883 +illusion_1L,sr,137,41.1,force,front_fy,-1.9550057913875207e-05 +illusion_1L,sr,137,41.1,force,upper_fx,0.002259537810459733 +illusion_1L,sr,137,41.1,force,upper_fy,0.00029263633769005537 +illusion_1L,sr,137,41.1,force,lower_fx,0.0023101407568901777 +illusion_1L,sr,137,41.1,force,lower_fy,-0.000385042920242995 +illusion_1L,sr,138,41.4,force,front_fx,0.0019208901794627309 +illusion_1L,sr,138,41.4,force,front_fy,-2.0775451048393734e-05 +illusion_1L,sr,138,41.4,force,upper_fx,0.0022625522688031197 +illusion_1L,sr,138,41.4,force,upper_fy,0.00029849118436686695 +illusion_1L,sr,138,41.4,force,lower_fx,0.0023169699124991894 +illusion_1L,sr,138,41.4,force,lower_fy,-0.0003789887996390462 +illusion_1L,sr,139,41.7,force,front_fx,0.0019237337401136756 +illusion_1L,sr,139,41.7,force,front_fy,-2.1021893189754337e-05 +illusion_1L,sr,139,41.7,force,upper_fx,0.0022659795358777046 +illusion_1L,sr,139,41.7,force,upper_fy,0.00030877196695655584 +illusion_1L,sr,139,41.7,force,lower_fx,0.00232152221724391 +illusion_1L,sr,139,41.7,force,lower_fy,-0.0003737496735993773 +illusion_1L,sr,140,42.0,force,front_fx,0.0019224222050979733 +illusion_1L,sr,140,42.0,force,front_fy,-2.0417557607288472e-05 +illusion_1L,sr,140,42.0,force,upper_fx,0.002265909221023321 +illusion_1L,sr,140,42.0,force,upper_fy,0.00032299477607011795 +illusion_1L,sr,140,42.0,force,lower_fx,0.0023196593392640352 +illusion_1L,sr,140,42.0,force,lower_fy,-0.00036934236413799226 +illusion_1L,sr,141,42.3,force,front_fx,0.0019191140308976173 +illusion_1L,sr,141,42.3,force,front_fy,-1.8459804778103717e-05 +illusion_1L,sr,141,42.3,force,upper_fx,0.0022638668306171894 +illusion_1L,sr,141,42.3,force,upper_fy,0.00033939810236915946 +illusion_1L,sr,141,42.3,force,lower_fx,0.002313178265467286 +illusion_1L,sr,141,42.3,force,lower_fy,-0.0003645537653937936 +illusion_1L,sr,142,42.6,force,front_fx,0.0019166682614013553 +illusion_1L,sr,142,42.6,force,front_fy,-1.6053054423537105e-05 +illusion_1L,sr,142,42.6,force,upper_fx,0.0022635632194578648 +illusion_1L,sr,142,42.6,force,upper_fy,0.000355063151801005 +illusion_1L,sr,142,42.6,force,lower_fx,0.0023058808874338865 +illusion_1L,sr,142,42.6,force,lower_fy,-0.0003588779072742909 +illusion_1L,sr,143,42.9,force,front_fx,0.001913774642162025 +illusion_1L,sr,143,42.9,force,front_fy,-1.2700945262622554e-05 +illusion_1L,sr,143,42.9,force,upper_fx,0.0022631953470408916 +illusion_1L,sr,143,42.9,force,upper_fy,0.00036928048939444125 +illusion_1L,sr,143,42.9,force,lower_fx,0.0022963020019233227 +illusion_1L,sr,143,42.9,force,lower_fy,-0.0003514298587106168 +illusion_1L,sr,144,43.2,force,front_fx,0.0019115791656076908 +illusion_1L,sr,144,43.2,force,front_fy,-8.161757250491064e-06 +illusion_1L,sr,144,43.2,force,upper_fx,0.0022643201518803835 +illusion_1L,sr,144,43.2,force,upper_fy,0.0003807136381510645 +illusion_1L,sr,144,43.2,force,lower_fx,0.0022867026273161173 +illusion_1L,sr,144,43.2,force,lower_fy,-0.0003422802546992898 +illusion_1L,sr,145,43.5,force,front_fx,0.0019137111958116293 +illusion_1L,sr,145,43.5,force,front_fy,-3.782465000767843e-06 +illusion_1L,sr,145,43.5,force,upper_fx,0.0022713886573910713 +illusion_1L,sr,145,43.5,force,upper_fy,0.0003879437572322786 +illusion_1L,sr,145,43.5,force,lower_fx,0.00228191283531487 +illusion_1L,sr,145,43.5,force,lower_fy,-0.00033182170591317117 +illusion_1L,sr,146,43.8,force,front_fx,0.0019184011034667492 +illusion_1L,sr,146,43.8,force,front_fy,8.788097716205812e-07 +illusion_1L,sr,146,43.8,force,upper_fx,0.0022820106241852045 +illusion_1L,sr,146,43.8,force,upper_fy,0.00039217749144881964 +illusion_1L,sr,146,43.8,force,lower_fx,0.0022802837193012238 +illusion_1L,sr,146,43.8,force,lower_fy,-0.00032055567135103047 +illusion_1L,sr,147,44.1,force,front_fx,0.001919889822602272 +illusion_1L,sr,147,44.1,force,front_fy,5.99783470534021e-06 +illusion_1L,sr,147,44.1,force,upper_fx,0.002289343159645796 +illusion_1L,sr,147,44.1,force,upper_fy,0.00039397174259647727 +illusion_1L,sr,147,44.1,force,lower_fx,0.002275720937177539 +illusion_1L,sr,147,44.1,force,lower_fy,-0.0003107123193331063 +illusion_1L,sr,148,44.4,force,front_fx,0.0019214453641325235 +illusion_1L,sr,148,44.4,force,front_fy,9.99811072688317e-06 +illusion_1L,sr,148,44.4,force,upper_fx,0.00229632924310863 +illusion_1L,sr,148,44.4,force,upper_fy,0.0003937772708013654 +illusion_1L,sr,148,44.4,force,lower_fx,0.0022715155500918627 +illusion_1L,sr,148,44.4,force,lower_fy,-0.0003040778392460197 +illusion_1L,sr,149,44.7,force,front_fx,0.0019168128492310643 +illusion_1L,sr,149,44.7,force,front_fy,1.3680801203008741e-05 +illusion_1L,sr,149,44.7,force,upper_fx,0.0022954042069613934 +illusion_1L,sr,149,44.7,force,upper_fy,0.000390727975172922 +illusion_1L,sr,149,44.7,force,lower_fx,0.0022609601728618145 +illusion_1L,sr,149,44.7,force,lower_fy,-0.00029828224796801805 +illusion_1L,sr,150,45.0,force,front_fx,0.0019181278767064214 +illusion_1L,sr,150,45.0,force,front_fy,1.6839418094605207e-05 +illusion_1L,sr,150,45.0,force,upper_fx,0.002300606807693839 +illusion_1L,sr,150,45.0,force,upper_fy,0.0003873373207170516 +illusion_1L,sr,150,45.0,force,lower_fx,0.0022583636455237865 +illusion_1L,sr,150,45.0,force,lower_fy,-0.0002972499933093786 +illusion_1L,sr,151,45.3,force,front_fx,0.001912492560222745 +illusion_1L,sr,151,45.3,force,front_fy,1.8425553207634948e-05 +illusion_1L,sr,151,45.3,force,upper_fx,0.0022968195844441652 +illusion_1L,sr,151,45.3,force,upper_fy,0.00038168791797943413 +illusion_1L,sr,151,45.3,force,lower_fx,0.0022489656694233418 +illusion_1L,sr,151,45.3,force,lower_fy,-0.0002992890076711774 +illusion_1L,sr,152,45.6,force,front_fx,0.0019123232923448086 +illusion_1L,sr,152,45.6,force,front_fy,1.980876550078392e-05 +illusion_1L,sr,152,45.6,force,upper_fx,0.002298403298482299 +illusion_1L,sr,152,45.6,force,upper_fy,0.0003768329042941332 +illusion_1L,sr,152,45.6,force,lower_fx,0.0022474629804491997 +illusion_1L,sr,152,45.6,force,lower_fy,-0.00030468314071185887 +illusion_1L,sr,153,45.9,force,front_fx,0.001916177454404533 +illusion_1L,sr,153,45.9,force,front_fy,2.0173514712951146e-05 +illusion_1L,sr,153,45.9,force,upper_fx,0.0023036173079162836 +illusion_1L,sr,153,45.9,force,upper_fy,0.0003713248297572136 +illusion_1L,sr,153,45.9,force,lower_fx,0.0022522767540067434 +illusion_1L,sr,153,45.9,force,lower_fy,-0.00031374217360280454 +illusion_1L,sr,154,46.2,force,front_fx,0.0019183284603059292 +illusion_1L,sr,154,46.2,force,front_fy,1.8947077478514984e-05 +illusion_1L,sr,154,46.2,force,upper_fx,0.002305520698428154 +illusion_1L,sr,154,46.2,force,upper_fy,0.0003665734548121691 +illusion_1L,sr,154,46.2,force,lower_fx,0.002256350126117468 +illusion_1L,sr,154,46.2,force,lower_fy,-0.00032606805325485766 +illusion_1L,sr,155,46.5,force,front_fx,0.0019166587153449655 +illusion_1L,sr,155,46.5,force,front_fy,1.7406548067810945e-05 +illusion_1L,sr,155,46.5,force,upper_fx,0.002301145112141967 +illusion_1L,sr,155,46.5,force,upper_fy,0.00036273253499530256 +illusion_1L,sr,155,46.5,force,lower_fx,0.0022569368593394756 +illusion_1L,sr,155,46.5,force,lower_fy,-0.00033998407889157534 +illusion_1L,sr,156,46.8,force,front_fx,0.0019169998122379184 +illusion_1L,sr,156,46.8,force,front_fy,1.4608675883209798e-05 +illusion_1L,sr,156,46.8,force,upper_fx,0.002297383500263095 +illusion_1L,sr,156,46.8,force,upper_fy,0.00035811614361591637 +illusion_1L,sr,156,46.8,force,lower_fx,0.0022603527177125216 +illusion_1L,sr,156,46.8,force,lower_fy,-0.00035519167431630194 +illusion_1L,sr,157,47.1,force,front_fx,0.0019115755567327142 +illusion_1L,sr,157,47.1,force,front_fy,1.0603445844026282e-05 +illusion_1L,sr,157,47.1,force,upper_fx,0.002285222988575697 +illusion_1L,sr,157,47.1,force,upper_fy,0.0003510217647999525 +illusion_1L,sr,157,47.1,force,lower_fx,0.0022573787719011307 +illusion_1L,sr,157,47.1,force,lower_fy,-0.00036753297899849713 +illusion_1L,sr,158,47.4,force,front_fx,0.0019090687856078148 +illusion_1L,sr,158,47.4,force,front_fy,6.749979093001457e-06 +illusion_1L,sr,158,47.4,force,upper_fx,0.0022754413075745106 +illusion_1L,sr,158,47.4,force,upper_fy,0.0003433443489484489 +illusion_1L,sr,158,47.4,force,lower_fx,0.002258239546790719 +illusion_1L,sr,158,47.4,force,lower_fy,-0.00037758954567834735 +illusion_1L,sr,159,47.7,force,front_fx,0.0019076494500041008 +illusion_1L,sr,159,47.7,force,front_fy,1.925761807797244e-06 +illusion_1L,sr,159,47.7,force,upper_fx,0.002266682917252183 +illusion_1L,sr,159,47.7,force,upper_fy,0.00033364497357979417 +illusion_1L,sr,159,47.7,force,lower_fx,0.0022608661092817783 +illusion_1L,sr,159,47.7,force,lower_fy,-0.0003850769135169685 +illusion_1L,sr,160,48.0,force,front_fx,0.0019108365522697568 +illusion_1L,sr,160,48.0,force,front_fy,-2.994521537402761e-06 +illusion_1L,sr,160,48.0,force,upper_fx,0.0022637126967310905 +illusion_1L,sr,160,48.0,force,upper_fy,0.0003234938776586205 +illusion_1L,sr,160,48.0,force,lower_fx,0.0022693926002830267 +illusion_1L,sr,160,48.0,force,lower_fy,-0.0003886060731019825 +illusion_1L,sr,161,48.3,force,front_fx,0.001915019005537033 +illusion_1L,sr,161,48.3,force,front_fy,-7.091284260241082e-06 +illusion_1L,sr,161,48.3,force,upper_fx,0.0022625515703111887 +illusion_1L,sr,161,48.3,force,upper_fy,0.0003141505876556039 +illusion_1L,sr,161,48.3,force,lower_fx,0.002279397565871477 +illusion_1L,sr,161,48.3,force,lower_fy,-0.0003894758119713515 +illusion_1L,sr,162,48.6,force,front_fx,0.001915805391035974 +illusion_1L,sr,162,48.6,force,front_fy,-1.1136101420561317e-05 +illusion_1L,sr,162,48.6,force,upper_fx,0.002258514752611518 +illusion_1L,sr,162,48.6,force,upper_fy,0.0003066753561142832 +illusion_1L,sr,162,48.6,force,lower_fx,0.002285446971654892 +illusion_1L,sr,162,48.6,force,lower_fy,-0.0003891118394676596 +illusion_1L,sr,163,48.9,force,front_fx,0.0019139343639835715 +illusion_1L,sr,163,48.9,force,front_fy,-1.4386082511919085e-05 +illusion_1L,sr,163,48.9,force,upper_fx,0.002251869533210993 +illusion_1L,sr,163,48.9,force,upper_fy,0.0003026958729606122 +illusion_1L,sr,163,48.9,force,lower_fx,0.0022875326685607433 +illusion_1L,sr,163,48.9,force,lower_fy,-0.00038699645665474236 +illusion_1L,sr,164,49.2,force,front_fx,0.001915749511681497 +illusion_1L,sr,164,49.2,force,front_fy,-1.6828029401949607e-05 +illusion_1L,sr,164,49.2,force,upper_fx,0.002250564517453313 +illusion_1L,sr,164,49.2,force,upper_fy,0.00030206277733668685 +illusion_1L,sr,164,49.2,force,lower_fx,0.0022933282889425755 +illusion_1L,sr,164,49.2,force,lower_fy,-0.0003843926824629307 +illusion_1L,sr,165,49.5,force,front_fx,0.001910500694066286 +illusion_1L,sr,165,49.5,force,front_fy,-1.8925082258647308e-05 +illusion_1L,sr,165,49.5,force,upper_fx,0.0022419081069529057 +illusion_1L,sr,165,49.5,force,upper_fy,0.0003035767003893852 +illusion_1L,sr,165,49.5,force,lower_fx,0.0022894281428307295 +illusion_1L,sr,165,49.5,force,lower_fy,-0.00038013284211046994 +illusion_1L,sr,166,49.8,force,front_fx,0.0019113213056698442 +illusion_1L,sr,166,49.8,force,front_fy,-1.9765824617934413e-05 +illusion_1L,sr,166,49.8,force,upper_fx,0.0022417122963815928 +illusion_1L,sr,166,49.8,force,upper_fy,0.00030996467103250325 +illusion_1L,sr,166,49.8,force,lower_fx,0.002291902666911483 +illusion_1L,sr,166,49.8,force,lower_fy,-0.00037642536335624754 +illusion_1L,sr,167,50.1,force,front_fx,0.001911871018819511 +illusion_1L,sr,167,50.1,force,front_fy,-1.97013341676211e-05 +illusion_1L,sr,167,50.1,force,upper_fx,0.002242492977529764 +illusion_1L,sr,167,50.1,force,upper_fy,0.00031808545463718474 +illusion_1L,sr,167,50.1,force,lower_fx,0.00229279650375247 +illusion_1L,sr,167,50.1,force,lower_fy,-0.0003720561508089304 +illusion_1L,sr,168,50.4,force,front_fx,0.0019123374950140715 +illusion_1L,sr,168,50.4,force,front_fy,-1.8953849576064385e-05 +illusion_1L,sr,168,50.4,force,upper_fx,0.002244574949145317 +illusion_1L,sr,168,50.4,force,upper_fy,0.0003278921649325639 +illusion_1L,sr,168,50.4,force,lower_fx,0.002292271936312318 +illusion_1L,sr,168,50.4,force,lower_fy,-0.0003667190612759441 +illusion_1L,sr,169,50.7,force,front_fx,0.0019137434428557754 +illusion_1L,sr,169,50.7,force,front_fy,-1.6874830180313438e-05 +illusion_1L,sr,169,50.7,force,upper_fx,0.0022488641552627087 +illusion_1L,sr,169,50.7,force,upper_fy,0.0003405208990443498 +illusion_1L,sr,169,50.7,force,lower_fx,0.002291672630235553 +illusion_1L,sr,169,50.7,force,lower_fy,-0.0003619906201492995 +illusion_1L,sr,170,51.0,force,front_fx,0.0019118417985737324 +illusion_1L,sr,170,51.0,force,front_fy,-1.4045884199731518e-05 +illusion_1L,sr,170,51.0,force,upper_fx,0.0022498578764498234 +illusion_1L,sr,170,51.0,force,upper_fy,0.00035358694731257856 +illusion_1L,sr,170,51.0,force,lower_fx,0.0022855212446302176 +illusion_1L,sr,170,51.0,force,lower_fy,-0.0003573834546841681 +illusion_1L,sr,171,51.3,force,front_fx,0.001909598708152771 +illusion_1L,sr,171,51.3,force,front_fy,-1.0552326784818433e-05 +illusion_1L,sr,171,51.3,force,upper_fx,0.0022509321570396423 +illusion_1L,sr,171,51.3,force,upper_fy,0.0003656211483757943 +illusion_1L,sr,171,51.3,force,lower_fx,0.0022776201367378235 +illusion_1L,sr,171,51.3,force,lower_fy,-0.00035133326309733093 +illusion_1L,sr,172,51.6,force,front_fx,0.00190767424646765 +illusion_1L,sr,172,51.6,force,front_fy,-6.18753301750985e-06 +illusion_1L,sr,172,51.6,force,upper_fx,0.002252493053674698 +illusion_1L,sr,172,51.6,force,upper_fy,0.00037556211464107037 +illusion_1L,sr,172,51.6,force,lower_fx,0.0022690340410917997 +illusion_1L,sr,172,51.6,force,lower_fy,-0.00034366926411166787 +illusion_1L,sr,173,51.9,force,front_fx,0.0019055104348808527 +illusion_1L,sr,173,51.9,force,front_fy,-1.7744696378940716e-06 +illusion_1L,sr,173,51.9,force,upper_fx,0.002254101913422346 +illusion_1L,sr,173,51.9,force,upper_fy,0.00038249915814958513 +illusion_1L,sr,173,51.9,force,lower_fx,0.0022597324568778276 +illusion_1L,sr,173,51.9,force,lower_fy,-0.00033514125971123576 +illusion_1L,sr,174,52.2,force,front_fx,0.00190494314301759 +illusion_1L,sr,174,52.2,force,front_fy,2.697544232432847e-06 +illusion_1L,sr,174,52.2,force,upper_fx,0.0022578411735594273 +illusion_1L,sr,174,52.2,force,upper_fy,0.0003865351900458336 +illusion_1L,sr,174,52.2,force,lower_fx,0.002252505859360099 +illusion_1L,sr,174,52.2,force,lower_fy,-0.00032562066917307675 +illusion_1L,sr,175,52.5,force,front_fx,0.0019086945103481412 +illusion_1L,sr,175,52.5,force,front_fy,6.996157935645897e-06 +illusion_1L,sr,175,52.5,force,upper_fx,0.002266900148242712 +illusion_1L,sr,175,52.5,force,upper_fy,0.00038745487108826637 +illusion_1L,sr,175,52.5,force,lower_fx,0.0022511000279337168 +illusion_1L,sr,175,52.5,force,lower_fy,-0.0003162334905937314 +illusion_1L,sr,176,52.8,force,front_fx,0.0019122688099741936 +illusion_1L,sr,176,52.8,force,front_fy,1.0456198651809245e-05 +illusion_1L,sr,176,52.8,force,upper_fx,0.0022758354898542166 +illusion_1L,sr,176,52.8,force,upper_fy,0.00038640410639345646 +illusion_1L,sr,176,52.8,force,lower_fx,0.00225043878890574 +illusion_1L,sr,176,52.8,force,lower_fy,-0.0003089730744250119 +illusion_1L,sr,177,53.1,force,front_fx,0.0019124426180496812 +illusion_1L,sr,177,53.1,force,front_fy,1.3629545719595626e-05 +illusion_1L,sr,177,53.1,force,upper_fx,0.0022805205080658197 +illusion_1L,sr,177,53.1,force,upper_fy,0.00038476812187582254 +illusion_1L,sr,177,53.1,force,lower_fx,0.002246896969154477 +illusion_1L,sr,177,53.1,force,lower_fy,-0.0003044839249923825 +illusion_1L,sr,178,53.4,force,front_fx,0.0019105217652395368 +illusion_1L,sr,178,53.4,force,front_fy,1.6207406588364393e-05 +illusion_1L,sr,178,53.4,force,upper_fx,0.0022817368153482676 +illusion_1L,sr,178,53.4,force,upper_fy,0.0003822047438006848 +illusion_1L,sr,178,53.4,force,lower_fx,0.002241595182567835 +illusion_1L,sr,178,53.4,force,lower_fy,-0.00030353962210938334 +illusion_1L,sr,179,53.7,force,front_fx,0.0019089959096163511 +illusion_1L,sr,179,53.7,force,front_fy,1.7782940631150268e-05 +illusion_1L,sr,179,53.7,force,upper_fx,0.0022824567276984453 +illusion_1L,sr,179,53.7,force,upper_fy,0.0003789708425756544 +illusion_1L,sr,179,53.7,force,lower_fx,0.002237764885649085 +illusion_1L,sr,179,53.7,force,lower_fy,-0.00030576836434192955 +illusion_1L,sr,180,54.0,force,front_fx,0.001906825928017497 +illusion_1L,sr,180,54.0,force,front_fy,1.867259015853051e-05 +illusion_1L,sr,180,54.0,force,upper_fx,0.002281021559610963 +illusion_1L,sr,180,54.0,force,upper_fy,0.00037560542114079 +illusion_1L,sr,180,54.0,force,lower_fx,0.0022340603172779083 +illusion_1L,sr,180,54.0,force,lower_fy,-0.00031100891646929085 +illusion_1L,sr,181,54.3,force,front_fx,0.001904669450595975 +illusion_1L,sr,181,54.3,force,front_fy,1.8659002307686023e-05 +illusion_1L,sr,181,54.3,force,upper_fx,0.0022784871980547905 +illusion_1L,sr,181,54.3,force,upper_fy,0.0003717497456818819 +illusion_1L,sr,181,54.3,force,lower_fx,0.002231609309092164 +illusion_1L,sr,181,54.3,force,lower_fy,-0.00031906194635666907 +illusion_1L,sr,182,54.6,force,front_fx,0.0019059065962210298 +illusion_1L,sr,182,54.6,force,front_fy,1.7593121810932644e-05 +illusion_1L,sr,182,54.6,force,upper_fx,0.0022788133937865496 +illusion_1L,sr,182,54.6,force,upper_fy,0.00036722005461342633 +illusion_1L,sr,182,54.6,force,lower_fx,0.002234424464404583 +illusion_1L,sr,182,54.6,force,lower_fy,-0.0003288441803306341 +illusion_1L,sr,183,54.9,force,front_fx,0.0019093957962468266 +illusion_1L,sr,183,54.9,force,front_fy,1.568583866173867e-05 +illusion_1L,sr,183,54.9,force,upper_fx,0.0022804478649049997 +illusion_1L,sr,183,54.9,force,upper_fy,0.0003622392541728914 +illusion_1L,sr,183,54.9,force,lower_fx,0.002240903442725539 +illusion_1L,sr,183,54.9,force,lower_fy,-0.0003399177803657949 +illusion_1L,sr,184,55.2,force,front_fx,0.0019101930083706975 +illusion_1L,sr,184,55.2,force,front_fy,1.2882738701591734e-05 +illusion_1L,sr,184,55.2,force,upper_fx,0.002277976833283901 +illusion_1L,sr,184,55.2,force,upper_fy,0.00035697119892574847 +illusion_1L,sr,184,55.2,force,lower_fx,0.0022453307174146175 +illusion_1L,sr,184,55.2,force,lower_fy,-0.00035194269730709493 +illusion_1L,sr,185,55.5,force,front_fx,0.00190820696298033 +illusion_1L,sr,185,55.5,force,front_fy,9.385554221807979e-06 +illusion_1L,sr,185,55.5,force,upper_fx,0.0022707723546773195 +illusion_1L,sr,185,55.5,force,upper_fy,0.0003511644317768514 +illusion_1L,sr,185,55.5,force,lower_fx,0.0022467272356152534 +illusion_1L,sr,185,55.5,force,lower_fy,-0.00036360236117616296 +illusion_1L,sr,186,55.8,force,front_fx,0.0019064826192334294 +illusion_1L,sr,186,55.8,force,front_fy,5.281160156300757e-06 +illusion_1L,sr,186,55.8,force,upper_fx,0.0022629902232438326 +illusion_1L,sr,186,55.8,force,upper_fy,0.00034397977287881076 +illusion_1L,sr,186,55.8,force,lower_fx,0.002248728647828102 +illusion_1L,sr,186,55.8,force,lower_fy,-0.0003733877674676478 +illusion_1L,sr,187,56.1,force,front_fx,0.0019047848181799054 +illusion_1L,sr,187,56.1,force,front_fy,9.38372693326528e-07 +illusion_1L,sr,187,56.1,force,upper_fx,0.002254560124129057 +illusion_1L,sr,187,56.1,force,upper_fy,0.00033574283588677645 +illusion_1L,sr,187,56.1,force,lower_fx,0.0022506790701299906 +illusion_1L,sr,187,56.1,force,lower_fy,-0.0003805840970017016 +illusion_1L,sr,188,56.4,force,front_fx,0.001902777119539678 +illusion_1L,sr,188,56.4,force,front_fy,-3.2702841963327955e-06 +illusion_1L,sr,188,56.4,force,upper_fx,0.0022459423635154963 +illusion_1L,sr,188,56.4,force,upper_fy,0.0003270198358222842 +illusion_1L,sr,188,56.4,force,lower_fx,0.002252526581287384 +illusion_1L,sr,188,56.4,force,lower_fy,-0.0003850285429507494 +illusion_1L,sr,189,56.7,force,front_fx,0.00190296012442559 +illusion_1L,sr,189,56.7,force,front_fy,-7.2155953603214584e-06 +illusion_1L,sr,189,56.7,force,upper_fx,0.0022404256742447615 +illusion_1L,sr,189,56.7,force,upper_fy,0.0003184024535585195 +illusion_1L,sr,189,56.7,force,lower_fx,0.002256999956443906 +illusion_1L,sr,189,56.7,force,lower_fy,-0.0003866012266371399 +illusion_1L,sr,190,57.0,force,front_fx,0.001906930236145854 +illusion_1L,sr,190,57.0,force,front_fy,-1.0630733413563576e-05 +illusion_1L,sr,190,57.0,force,upper_fx,0.002240287372842431 +illusion_1L,sr,190,57.0,force,upper_fy,0.00031096988823264837 +illusion_1L,sr,190,57.0,force,lower_fx,0.0022660198155790567 +illusion_1L,sr,190,57.0,force,lower_fy,-0.0003856164694298059 +illusion_1L,sr,191,57.3,force,front_fx,0.0019098311895504594 +illusion_1L,sr,191,57.3,force,front_fy,-1.3657081581186503e-05 +illusion_1L,sr,191,57.3,force,upper_fx,0.002240037778392434 +illusion_1L,sr,191,57.3,force,upper_fy,0.00030617284937761724 +illusion_1L,sr,191,57.3,force,lower_fx,0.0022736683022230864 +illusion_1L,sr,191,57.3,force,lower_fy,-0.0003836824034806341 +illusion_1L,sr,192,57.6,force,front_fx,0.0019093964947387576 +illusion_1L,sr,192,57.6,force,front_fy,-1.62127962539671e-05 +illusion_1L,sr,192,57.6,force,upper_fx,0.002236895030364394 +illusion_1L,sr,192,57.6,force,upper_fy,0.0003049515071325004 +illusion_1L,sr,192,57.6,force,lower_fx,0.0022767409682273865 +illusion_1L,sr,192,57.6,force,lower_fy,-0.00038145188591443 +illusion_1L,sr,193,57.9,force,front_fx,0.0019075487507507205 +illusion_1L,sr,193,57.9,force,front_fy,-1.7651054804446176e-05 +illusion_1L,sr,193,57.9,force,upper_fx,0.002232935279607773 +illusion_1L,sr,193,57.9,force,upper_fy,0.000307264068396762 +illusion_1L,sr,193,57.9,force,lower_fx,0.0022771183867007494 +illusion_1L,sr,193,57.9,force,lower_fy,-0.00037864624755457044 +illusion_1L,sr,194,58.2,force,front_fx,0.0019057901808992028 +illusion_1L,sr,194,58.2,force,front_fy,-1.848338797572069e-05 +illusion_1L,sr,194,58.2,force,upper_fx,0.0022299932315945625 +illusion_1L,sr,194,58.2,force,upper_fy,0.0003122405905742198 +illusion_1L,sr,194,58.2,force,lower_fx,0.002276336308568716 +illusion_1L,sr,194,58.2,force,lower_fy,-0.00037572288420051336 +illusion_1L,sr,195,58.5,force,front_fx,0.0019033924909308553 +illusion_1L,sr,195,58.5,force,front_fy,-1.866607999545522e-05 +illusion_1L,sr,195,58.5,force,upper_fx,0.0022272842470556498 +illusion_1L,sr,195,58.5,force,upper_fy,0.00032001888030208647 +illusion_1L,sr,195,58.5,force,lower_fx,0.002273423131555319 +illusion_1L,sr,195,58.5,force,lower_fy,-0.0003723106347024441 +illusion_1L,sr,196,58.8,force,front_fx,0.0019017088925465941 +illusion_1L,sr,196,58.8,force,front_fy,-1.7329426555079408e-05 +illusion_1L,sr,196,58.8,force,upper_fx,0.0022263384889811277 +illusion_1L,sr,196,58.8,force,upper_fy,0.00032986464793793857 +illusion_1L,sr,196,58.8,force,lower_fx,0.002270005876198411 +illusion_1L,sr,196,58.8,force,lower_fy,-0.00036805515992455184 +illusion_1L,sr,197,59.1,force,front_fx,0.0019037321908399463 +illusion_1L,sr,197,59.1,force,front_fy,-1.5510178855038248e-05 +illusion_1L,sr,197,59.1,force,upper_fx,0.002230950864031911 +illusion_1L,sr,197,59.1,force,upper_fy,0.00033999464358203113 +illusion_1L,sr,197,59.1,force,lower_fx,0.002269850578159094 +illusion_1L,sr,197,59.1,force,lower_fy,-0.00036325285327620804 +illusion_1L,sr,198,59.4,force,front_fx,0.0019068281399086118 +illusion_1L,sr,198,59.4,force,front_fy,-1.2868262274423614e-05 +illusion_1L,sr,198,59.4,force,upper_fx,0.0022378540597856045 +illusion_1L,sr,198,59.4,force,upper_fy,0.0003509789239615202 +illusion_1L,sr,198,59.4,force,lower_fx,0.0022699455730617046 +illusion_1L,sr,198,59.4,force,lower_fy,-0.00035737341386266053 +illusion_1L,sr,199,59.7,force,front_fx,0.0019072724971920252 +illusion_1L,sr,199,59.7,force,front_fy,-9.085722922463901e-06 +illusion_1L,sr,199,59.7,force,upper_fx,0.0022423649206757545 +illusion_1L,sr,199,59.7,force,upper_fy,0.0003619600320234895 +illusion_1L,sr,199,59.7,force,lower_fx,0.0022661711554974318 +illusion_1L,sr,199,59.7,force,lower_fy,-0.00035105703864246607 +illusion_1L,sr,0,0.0,alpha,front,-0.06702279284310067 +illusion_1L,sr,0,0.0,alpha,upper,0.05434859279871335 +illusion_1L,sr,0,0.0,alpha,lower,0.05434859279871335 +illusion_1L,sr,1,0.3,alpha,front,-0.08241633558656292 +illusion_1L,sr,1,0.3,alpha,upper,0.06451124867087857 +illusion_1L,sr,1,0.3,alpha,lower,0.06451124867087857 +illusion_1L,sr,2,0.6,alpha,front,-0.028429060596675472 +illusion_1L,sr,2,0.6,alpha,upper,0.0237425617074173 +illusion_1L,sr,2,0.6,alpha,lower,0.0237425617074173 +illusion_1L,sr,3,0.9,alpha,front,0.015877682105807388 +illusion_1L,sr,3,0.9,alpha,upper,-0.010324114221548194 +illusion_1L,sr,3,0.9,alpha,lower,-0.010324114221548194 +illusion_1L,sr,4,1.2,alpha,front,0.039484248255278215 +illusion_1L,sr,4,1.2,alpha,upper,-0.028613370663743778 +illusion_1L,sr,4,1.2,alpha,lower,-0.028613370663743778 +illusion_1L,sr,5,1.5,alpha,front,0.05511846796675569 +illusion_1L,sr,5,1.5,alpha,upper,-0.04075333237701859 +illusion_1L,sr,5,1.5,alpha,lower,-0.04075333237701859 +illusion_1L,sr,6,1.8,alpha,front,0.057711614206820604 +illusion_1L,sr,6,1.8,alpha,upper,-0.04327202550609269 +illusion_1L,sr,6,1.8,alpha,lower,-0.04327202550609269 +illusion_1L,sr,7,2.1,alpha,front,0.04621742758437736 +illusion_1L,sr,7,2.1,alpha,upper,-0.0355347219507961 +illusion_1L,sr,7,2.1,alpha,lower,-0.0355347219507961 +illusion_1L,sr,8,2.4,alpha,front,0.023583223285816704 +illusion_1L,sr,8,2.4,alpha,upper,-0.019967475245594377 +illusion_1L,sr,8,2.4,alpha,lower,-0.019967475245594377 +illusion_1L,sr,9,2.7,alpha,front,-0.0056179250317343055 +illusion_1L,sr,9,2.7,alpha,upper,-0.00011308894477391611 +illusion_1L,sr,9,2.7,alpha,lower,-0.00011308894477391611 +illusion_1L,sr,10,3.0,alpha,front,-0.02988483605117301 +illusion_1L,sr,10,3.0,alpha,upper,0.01563360404634713 +illusion_1L,sr,10,3.0,alpha,lower,0.01563360404634713 +illusion_1L,sr,11,3.3,alpha,front,-0.044114618050397 +illusion_1L,sr,11,3.3,alpha,upper,0.023719993367633363 +illusion_1L,sr,11,3.3,alpha,lower,0.023719993367633363 +illusion_1L,sr,12,3.6,alpha,front,-0.05188519919291351 +illusion_1L,sr,12,3.6,alpha,upper,0.02704482135768371 +illusion_1L,sr,12,3.6,alpha,lower,0.02704482135768371 +illusion_1L,sr,13,3.9,alpha,front,-0.053635666972389 +illusion_1L,sr,13,3.9,alpha,upper,0.02618731590770107 +illusion_1L,sr,13,3.9,alpha,lower,0.02618731590770107 +illusion_1L,sr,14,4.2,alpha,front,-0.053893341532890354 +illusion_1L,sr,14,4.2,alpha,upper,0.02468307034871336 +illusion_1L,sr,14,4.2,alpha,lower,0.02468307034871336 +illusion_1L,sr,15,4.5,alpha,front,-0.05379353676524351 +illusion_1L,sr,15,4.5,alpha,upper,0.023513918745985157 +illusion_1L,sr,15,4.5,alpha,lower,0.023513918745985157 +illusion_1L,sr,16,4.8,alpha,front,-0.048917414544020654 +illusion_1L,sr,16,4.8,alpha,upper,0.019490546224433802 +illusion_1L,sr,16,4.8,alpha,lower,0.019490546224433802 +illusion_1L,sr,17,5.1,alpha,front,-0.03846767641820914 +illusion_1L,sr,17,5.1,alpha,upper,0.012153162400320106 +illusion_1L,sr,17,5.1,alpha,lower,0.012153162400320106 +illusion_1L,sr,18,5.4,alpha,front,-0.032330544331805544 +illusion_1L,sr,18,5.4,alpha,upper,0.008747332527874713 +illusion_1L,sr,18,5.4,alpha,lower,0.008747332527874713 +illusion_1L,sr,19,5.7,alpha,front,-0.02160015153566705 +illusion_1L,sr,19,5.7,alpha,upper,0.002615540251499293 +illusion_1L,sr,19,5.7,alpha,lower,0.002615540251499293 +illusion_1L,sr,20,6.0,alpha,front,-0.011783352106430223 +illusion_1L,sr,20,6.0,alpha,upper,-0.0022810869562912006 +illusion_1L,sr,20,6.0,alpha,lower,-0.0022810869562912006 +illusion_1L,sr,21,6.3,alpha,front,-0.0031320253029346596 +illusion_1L,sr,21,6.3,alpha,upper,-0.005906506568805481 +illusion_1L,sr,21,6.3,alpha,lower,-0.005906506568805481 +illusion_1L,sr,22,6.6,alpha,front,0.004619251075813013 +illusion_1L,sr,22,6.6,alpha,upper,-0.00858942944696045 +illusion_1L,sr,22,6.6,alpha,lower,-0.00858942944696045 +illusion_1L,sr,23,6.9,alpha,front,0.01002659510592787 +illusion_1L,sr,23,6.9,alpha,upper,-0.009463351698362002 +illusion_1L,sr,23,6.9,alpha,lower,-0.009463351698362002 +illusion_1L,sr,24,7.2,alpha,front,0.015956349719131457 +illusion_1L,sr,24,7.2,alpha,upper,-0.01080267369940721 +illusion_1L,sr,24,7.2,alpha,lower,-0.01080267369940721 +illusion_1L,sr,25,7.5,alpha,front,0.022169416914535008 +illusion_1L,sr,25,7.5,alpha,upper,-0.012543539201275425 +illusion_1L,sr,25,7.5,alpha,lower,-0.012543539201275425 +illusion_1L,sr,26,7.8,alpha,front,0.02660019467144556 +illusion_1L,sr,26,7.8,alpha,upper,-0.01326463875748664 +illusion_1L,sr,26,7.8,alpha,lower,-0.01326463875748664 +illusion_1L,sr,27,8.1,alpha,front,0.03182979899704366 +illusion_1L,sr,27,8.1,alpha,upper,-0.014925827365841582 +illusion_1L,sr,27,8.1,alpha,lower,-0.014925827365841582 +illusion_1L,sr,28,8.4,alpha,front,0.035982247970597236 +illusion_1L,sr,28,8.4,alpha,upper,-0.01620610141441549 +illusion_1L,sr,28,8.4,alpha,lower,-0.01620610141441549 +illusion_1L,sr,29,8.7,alpha,front,0.03830045791009659 +illusion_1L,sr,29,8.7,alpha,upper,-0.016600490725157874 +illusion_1L,sr,29,8.7,alpha,lower,-0.016600490725157874 +illusion_1L,sr,30,9.0,alpha,front,0.03941392761374174 +illusion_1L,sr,30,9.0,alpha,upper,-0.016628797759874248 +illusion_1L,sr,30,9.0,alpha,lower,-0.016628797759874248 +illusion_1L,sr,31,9.3,alpha,front,0.03669146173256746 +illusion_1L,sr,31,9.3,alpha,upper,-0.01441968719034173 +illusion_1L,sr,31,9.3,alpha,lower,-0.01441968719034173 +illusion_1L,sr,32,9.6,alpha,front,0.03176766246741397 +illusion_1L,sr,32,9.6,alpha,upper,-0.011195466132708803 +illusion_1L,sr,32,9.6,alpha,lower,-0.011195466132708803 +illusion_1L,sr,33,9.9,alpha,front,0.02535653758883075 +illusion_1L,sr,33,9.9,alpha,upper,-0.007493377579969541 +illusion_1L,sr,33,9.9,alpha,lower,-0.007493377579969541 +illusion_1L,sr,34,10.2,alpha,front,0.017112735723736977 +illusion_1L,sr,34,10.2,alpha,upper,-0.003003175358418167 +illusion_1L,sr,34,10.2,alpha,lower,-0.003003175358418167 +illusion_1L,sr,35,10.5,alpha,front,0.010083402682707937 +illusion_1L,sr,35,10.5,alpha,upper,0.00014510768531504625 +illusion_1L,sr,35,10.5,alpha,lower,0.00014510768531504625 +illusion_1L,sr,36,10.8,alpha,front,0.0027395953119797867 +illusion_1L,sr,36,10.8,alpha,upper,0.0032116199748713765 +illusion_1L,sr,36,10.8,alpha,lower,0.0032116199748713765 +illusion_1L,sr,37,11.1,alpha,front,-0.004110055489795983 +illusion_1L,sr,37,11.1,alpha,upper,0.0057580523813878445 +illusion_1L,sr,37,11.1,alpha,lower,0.0057580523813878445 +illusion_1L,sr,38,11.4,alpha,front,-0.008778124458437583 +illusion_1L,sr,38,11.4,alpha,upper,0.006719261901975058 +illusion_1L,sr,38,11.4,alpha,lower,0.006719261901975058 +illusion_1L,sr,39,11.7,alpha,front,-0.014753508632246294 +illusion_1L,sr,39,11.7,alpha,upper,0.008781199973801421 +illusion_1L,sr,39,11.7,alpha,lower,0.008781199973801421 +illusion_1L,sr,40,12.0,alpha,front,-0.020134394752191732 +illusion_1L,sr,40,12.0,alpha,upper,0.01065799630908279 +illusion_1L,sr,40,12.0,alpha,lower,0.01065799630908279 +illusion_1L,sr,41,12.3,alpha,front,-0.0237453860444954 +illusion_1L,sr,41,12.3,alpha,upper,0.011565835955396661 +illusion_1L,sr,41,12.3,alpha,lower,0.011565835955396661 +illusion_1L,sr,42,12.6,alpha,front,-0.027982209504465325 +illusion_1L,sr,42,12.6,alpha,upper,0.01331931381658251 +illusion_1L,sr,42,12.6,alpha,lower,0.01331931381658251 +illusion_1L,sr,43,12.9,alpha,front,-0.029708947459609784 +illusion_1L,sr,43,12.9,alpha,upper,0.013643259244976072 +illusion_1L,sr,43,12.9,alpha,lower,0.013643259244976072 +illusion_1L,sr,44,13.2,alpha,front,-0.0283275581880372 +illusion_1L,sr,44,13.2,alpha,upper,0.012163651073222786 +illusion_1L,sr,44,13.2,alpha,lower,0.012163651073222786 +illusion_1L,sr,45,13.5,alpha,front,-0.026465930152839854 +illusion_1L,sr,45,13.5,alpha,upper,0.010801835440394439 +illusion_1L,sr,45,13.5,alpha,lower,0.010801835440394439 +illusion_1L,sr,46,13.8,alpha,front,-0.021257888973020223 +illusion_1L,sr,46,13.8,alpha,upper,0.007464478117553298 +illusion_1L,sr,46,13.8,alpha,lower,0.007464478117553298 +illusion_1L,sr,47,14.1,alpha,front,-0.01567070310089126 +illusion_1L,sr,47,14.1,alpha,upper,0.004306293254478802 +illusion_1L,sr,47,14.1,alpha,lower,0.004306293254478802 +illusion_1L,sr,48,14.4,alpha,front,-0.009821609930136338 +illusion_1L,sr,48,14.4,alpha,upper,0.0013373959198732105 +illusion_1L,sr,48,14.4,alpha,lower,0.0013373959198732105 +illusion_1L,sr,49,14.7,alpha,front,-0.002889542836879269 +illusion_1L,sr,49,14.7,alpha,upper,-0.0021370285116311186 +illusion_1L,sr,49,14.7,alpha,lower,-0.0021370285116311186 +illusion_1L,sr,50,15.0,alpha,front,0.0019905877144187276 +illusion_1L,sr,50,15.0,alpha,upper,-0.003927687753381884 +illusion_1L,sr,50,15.0,alpha,lower,-0.003927687753381884 +illusion_1L,sr,51,15.3,alpha,front,0.006431961747898911 +illusion_1L,sr,51,15.3,alpha,upper,-0.005345029890323698 +illusion_1L,sr,51,15.3,alpha,lower,-0.005345029890323698 +illusion_1L,sr,52,15.6,alpha,front,0.01192053016680946 +illusion_1L,sr,52,15.6,alpha,upper,-0.007585309336557509 +illusion_1L,sr,52,15.6,alpha,lower,-0.007585309336557509 +illusion_1L,sr,53,15.9,alpha,front,0.01572564855317459 +illusion_1L,sr,53,15.9,alpha,upper,-0.00873459786420347 +illusion_1L,sr,53,15.9,alpha,lower,-0.00873459786420347 +illusion_1L,sr,54,16.2,alpha,front,0.0196321746320149 +illusion_1L,sr,54,16.2,alpha,upper,-0.01016249864412308 +illusion_1L,sr,54,16.2,alpha,lower,-0.01016249864412308 +illusion_1L,sr,55,16.5,alpha,front,0.023235712839765707 +illusion_1L,sr,55,16.5,alpha,upper,-0.011631370911476535 +illusion_1L,sr,55,16.5,alpha,lower,-0.011631370911476535 +illusion_1L,sr,56,16.8,alpha,front,0.024262484359519124 +illusion_1L,sr,56,16.8,alpha,upper,-0.011502287493016045 +illusion_1L,sr,56,16.8,alpha,lower,-0.011502287493016045 +illusion_1L,sr,57,17.1,alpha,front,0.02470442856128337 +illusion_1L,sr,57,17.1,alpha,upper,-0.01127213063299852 +illusion_1L,sr,57,17.1,alpha,lower,-0.01127213063299852 +illusion_1L,sr,58,17.4,alpha,front,0.02305699830502206 +illusion_1L,sr,58,17.4,alpha,upper,-0.009868529661313338 +illusion_1L,sr,58,17.4,alpha,lower,-0.009868529661313338 +illusion_1L,sr,59,17.7,alpha,front,0.01940881543781664 +illusion_1L,sr,59,17.7,alpha,upper,-0.0073700609232695 +illusion_1L,sr,59,17.7,alpha,lower,-0.0073700609232695 +illusion_1L,sr,60,18.0,alpha,front,0.015810329165318673 +illusion_1L,sr,60,18.0,alpha,upper,-0.005270610934284409 +illusion_1L,sr,60,18.0,alpha,lower,-0.005270610934284409 +illusion_1L,sr,61,18.3,alpha,front,0.01147169287331061 +illusion_1L,sr,61,18.3,alpha,upper,-0.002948603423105503 +illusion_1L,sr,61,18.3,alpha,lower,-0.002948603423105503 +illusion_1L,sr,62,18.6,alpha,front,0.007104701589161433 +illusion_1L,sr,62,18.6,alpha,upper,-0.0008628468363676561 +illusion_1L,sr,62,18.6,alpha,lower,-0.0008628468363676561 +illusion_1L,sr,63,18.9,alpha,front,0.0036940965006196096 +illusion_1L,sr,63,18.9,alpha,upper,0.00034807256601223496 +illusion_1L,sr,63,18.9,alpha,lower,0.00034807256601223496 +illusion_1L,sr,64,19.2,alpha,front,-0.0004791742071427047 +illusion_1L,sr,64,19.2,alpha,upper,0.0020362143324935446 +illusion_1L,sr,64,19.2,alpha,lower,0.0020362143324935446 +illusion_1L,sr,65,19.5,alpha,front,-0.004224305394653041 +illusion_1L,sr,65,19.5,alpha,upper,0.003405870355179011 +illusion_1L,sr,65,19.5,alpha,lower,0.003405870355179011 +illusion_1L,sr,66,19.8,alpha,front,-0.00788306981876296 +illusion_1L,sr,66,19.8,alpha,upper,0.004778470979207776 +illusion_1L,sr,66,19.8,alpha,lower,0.004778470979207776 +illusion_1L,sr,67,20.1,alpha,front,-0.011724502564997907 +illusion_1L,sr,67,20.1,alpha,upper,0.00640289184655566 +illusion_1L,sr,67,20.1,alpha,lower,0.00640289184655566 +illusion_1L,sr,68,20.4,alpha,front,-0.014296682939072906 +illusion_1L,sr,68,20.4,alpha,upper,0.007262545998200809 +illusion_1L,sr,68,20.4,alpha,lower,0.007262545998200809 +illusion_1L,sr,69,20.7,alpha,front,-0.016124246461261094 +illusion_1L,sr,69,20.7,alpha,upper,0.007781198088245685 +illusion_1L,sr,69,20.7,alpha,lower,0.007781198088245685 +illusion_1L,sr,70,21.0,alpha,front,-0.01705367979373687 +illusion_1L,sr,70,21.0,alpha,upper,0.007882428124524214 +illusion_1L,sr,70,21.0,alpha,lower,0.007882428124524214 +illusion_1L,sr,71,21.3,alpha,front,-0.01604134730436578 +illusion_1L,sr,71,21.3,alpha,upper,0.006828669385266925 +illusion_1L,sr,71,21.3,alpha,lower,0.006828669385266925 +illusion_1L,sr,72,21.6,alpha,front,-0.01475924087109555 +illusion_1L,sr,72,21.6,alpha,upper,0.005868858825884442 +illusion_1L,sr,72,21.6,alpha,lower,0.005868858825884442 +illusion_1L,sr,73,21.9,alpha,front,-0.01253222637125437 +illusion_1L,sr,73,21.9,alpha,upper,0.004503612219674005 +illusion_1L,sr,73,21.9,alpha,lower,0.004503612219674005 +illusion_1L,sr,74,22.2,alpha,front,-0.009393534089144298 +illusion_1L,sr,74,22.2,alpha,upper,0.0027407284466829246 +illusion_1L,sr,74,22.2,alpha,lower,0.0027407284466829246 +illusion_1L,sr,75,22.5,alpha,front,-0.006841713536250578 +illusion_1L,sr,75,22.5,alpha,upper,0.001636372955789667 +illusion_1L,sr,75,22.5,alpha,lower,0.001636372955789667 +illusion_1L,sr,76,22.8,alpha,front,-0.003421157692221719 +illusion_1L,sr,76,22.8,alpha,upper,6.47347120551478e-05 +illusion_1L,sr,76,22.8,alpha,lower,6.47347120551478e-05 +illusion_1L,sr,77,23.1,alpha,front,-0.0003533723807159772 +illusion_1L,sr,77,23.1,alpha,upper,-0.0011386847429581057 +illusion_1L,sr,77,23.1,alpha,lower,-0.0011386847429581057 +illusion_1L,sr,78,23.4,alpha,front,0.0021133351809839666 +illusion_1L,sr,78,23.4,alpha,upper,-0.0018580115042134667 +illusion_1L,sr,78,23.4,alpha,lower,-0.0018580115042134667 +illusion_1L,sr,79,23.7,alpha,front,0.005603085528675224 +illusion_1L,sr,79,23.7,alpha,upper,-0.0033435920745645397 +illusion_1L,sr,79,23.7,alpha,lower,-0.0033435920745645397 +illusion_1L,sr,80,24.0,alpha,front,0.008287436164229587 +illusion_1L,sr,80,24.0,alpha,upper,-0.004299842955469372 +illusion_1L,sr,80,24.0,alpha,lower,-0.004299842955469372 +illusion_1L,sr,81,24.3,alpha,front,0.010368877072891677 +illusion_1L,sr,81,24.3,alpha,upper,-0.004922137588339325 +illusion_1L,sr,81,24.3,alpha,lower,-0.004922137588339325 +illusion_1L,sr,82,24.6,alpha,front,0.01272874185931122 +illusion_1L,sr,82,24.6,alpha,upper,-0.005894839126976373 +illusion_1L,sr,82,24.6,alpha,lower,-0.005894839126976373 +illusion_1L,sr,83,24.9,alpha,front,0.013583094226765027 +illusion_1L,sr,83,24.9,alpha,upper,-0.005944607806285453 +illusion_1L,sr,83,24.9,alpha,lower,-0.005944607806285453 +illusion_1L,sr,84,25.2,alpha,front,0.01386896738169112 +illusion_1L,sr,84,25.2,alpha,upper,-0.005780179974644646 +illusion_1L,sr,84,25.2,alpha,lower,-0.005780179974644646 +illusion_1L,sr,85,25.5,alpha,front,0.014072301459133851 +illusion_1L,sr,85,25.5,alpha,upper,-0.005799961351384032 +illusion_1L,sr,85,25.5,alpha,lower,-0.005799961351384032 +illusion_1L,sr,86,25.8,alpha,front,0.01224180230607598 +illusion_1L,sr,86,25.8,alpha,upper,-0.004553780837183399 +illusion_1L,sr,86,25.8,alpha,lower,-0.004553780837183399 +illusion_1L,sr,87,26.1,alpha,front,0.010578782906865938 +illusion_1L,sr,87,26.1,alpha,upper,-0.0036612157162793165 +illusion_1L,sr,87,26.1,alpha,lower,-0.0036612157162793165 +illusion_1L,sr,88,26.4,alpha,front,0.008924252913316506 +illusion_1L,sr,88,26.4,alpha,upper,-0.0029801002888310765 +illusion_1L,sr,88,26.4,alpha,lower,-0.0029801002888310765 +illusion_1L,sr,89,26.7,alpha,front,0.005783030398707097 +illusion_1L,sr,89,26.7,alpha,upper,-0.0013802375178041115 +illusion_1L,sr,89,26.7,alpha,lower,-0.0013802375178041115 +illusion_1L,sr,90,27.0,alpha,front,0.0036904582409419823 +illusion_1L,sr,90,27.0,alpha,upper,-0.0006742132009052437 +illusion_1L,sr,90,27.0,alpha,lower,-0.0006742132009052437 +illusion_1L,sr,91,27.3,alpha,front,0.0014044091198656718 +illusion_1L,sr,91,27.3,alpha,upper,0.00010108208228283913 +illusion_1L,sr,91,27.3,alpha,lower,0.00010108208228283913 +illusion_1L,sr,92,27.6,alpha,front,-0.0014658475781868076 +illusion_1L,sr,92,27.6,alpha,upper,0.0012831342068351974 +illusion_1L,sr,92,27.6,alpha,lower,0.0012831342068351974 +illusion_1L,sr,93,27.9,alpha,front,-0.0031223242416386025 +illusion_1L,sr,93,27.9,alpha,upper,0.001599298946365531 +illusion_1L,sr,93,27.9,alpha,lower,0.001599298946365531 +illusion_1L,sr,94,28.2,alpha,front,-0.005384099175536637 +illusion_1L,sr,94,28.2,alpha,upper,0.0024290287624623465 +illusion_1L,sr,94,28.2,alpha,lower,0.0024290287624623465 +illusion_1L,sr,95,28.5,alpha,front,-0.007506905104802897 +illusion_1L,sr,95,28.5,alpha,upper,0.0032648239718990678 +illusion_1L,sr,95,28.5,alpha,lower,0.0032648239718990678 +illusion_1L,sr,96,28.8,alpha,front,-0.008774035023513947 +illusion_1L,sr,96,28.8,alpha,upper,0.003610384903101948 +illusion_1L,sr,96,28.8,alpha,lower,0.003610384903101948 +illusion_1L,sr,97,29.1,alpha,front,-0.010261250217087695 +illusion_1L,sr,97,29.1,alpha,upper,0.004283603725736697 +illusion_1L,sr,97,29.1,alpha,lower,0.004283603725736697 +illusion_1L,sr,98,29.4,alpha,front,-0.010594078503121676 +illusion_1L,sr,98,29.4,alpha,upper,0.00429191946439874 +illusion_1L,sr,98,29.4,alpha,lower,0.00429191946439874 +illusion_1L,sr,99,29.7,alpha,front,-0.009779621918953742 +illusion_1L,sr,99,29.7,alpha,upper,0.0036532974295371353 +illusion_1L,sr,99,29.7,alpha,lower,0.0036532974295371353 +illusion_1L,sr,100,30.0,alpha,front,-0.009147721144610536 +illusion_1L,sr,100,30.0,alpha,upper,0.0033453328800936155 +illusion_1L,sr,100,30.0,alpha,lower,0.0033453328800936155 +illusion_1L,sr,101,30.3,alpha,front,-0.007721084550381583 +illusion_1L,sr,101,30.3,alpha,upper,0.0026433925129229208 +illusion_1L,sr,101,30.3,alpha,lower,0.0026433925129229208 +illusion_1L,sr,102,30.6,alpha,front,-0.0059572314193992795 +illusion_1L,sr,102,30.6,alpha,upper,0.0018513539797241215 +illusion_1L,sr,102,30.6,alpha,lower,0.0018513539797241215 +illusion_1L,sr,103,30.9,alpha,front,-0.004749950967722599 +illusion_1L,sr,103,30.9,alpha,upper,0.0016111589411918687 +illusion_1L,sr,103,30.9,alpha,lower,0.0016111589411918687 +illusion_1L,sr,104,31.2,alpha,front,-0.0024129109951108348 +illusion_1L,sr,104,31.2,alpha,upper,0.0006273563671099474 +illusion_1L,sr,104,31.2,alpha,lower,0.0006273563671099474 +illusion_1L,sr,105,31.5,alpha,front,-0.0007790812812834348 +illusion_1L,sr,105,31.5,alpha,upper,0.00020805725164160446 +illusion_1L,sr,105,31.5,alpha,lower,0.00020805725164160446 +illusion_1L,sr,106,31.8,alpha,front,0.0007093690006370074 +illusion_1L,sr,106,31.8,alpha,upper,-0.00010312539493059422 +illusion_1L,sr,106,31.8,alpha,lower,-0.00010312539493059422 +illusion_1L,sr,107,32.1,alpha,front,0.002905556819632494 +illusion_1L,sr,107,32.1,alpha,upper,-0.0009684771416220965 +illusion_1L,sr,107,32.1,alpha,lower,-0.0009684771416220965 +illusion_1L,sr,108,32.4,alpha,front,0.004151267150765255 +illusion_1L,sr,108,32.4,alpha,upper,-0.0012132895933695473 +illusion_1L,sr,108,32.4,alpha,lower,-0.0012132895933695473 +illusion_1L,sr,109,32.7,alpha,front,0.005708553328776712 +illusion_1L,sr,109,32.7,alpha,upper,-0.0017889246706327235 +illusion_1L,sr,109,32.7,alpha,lower,-0.0017889246706327235 +illusion_1L,sr,110,33.0,alpha,front,0.0075559869643967645 +illusion_1L,sr,110,33.0,alpha,upper,-0.0027081189260415098 +illusion_1L,sr,110,33.0,alpha,lower,-0.0027081189260415098 +illusion_1L,sr,111,33.3,alpha,front,0.008086317874489435 +illusion_1L,sr,111,33.3,alpha,upper,-0.00280784473723434 +illusion_1L,sr,111,33.3,alpha,lower,-0.00280784473723434 +illusion_1L,sr,112,33.6,alpha,front,0.008621670765230453 +illusion_1L,sr,112,33.6,alpha,upper,-0.0030735466187852695 +illusion_1L,sr,112,33.6,alpha,lower,-0.0030735466187852695 +illusion_1L,sr,113,33.9,alpha,front,0.008739714116730496 +illusion_1L,sr,113,33.9,alpha,upper,-0.0032026901201115746 +illusion_1L,sr,113,33.9,alpha,lower,-0.0032026901201115746 +illusion_1L,sr,114,34.2,alpha,front,0.007997285506579993 +illusion_1L,sr,114,34.2,alpha,upper,-0.002864557009480573 +illusion_1L,sr,114,34.2,alpha,lower,-0.002864557009480573 +illusion_1L,sr,115,34.5,alpha,front,0.0077430313368886255 +illusion_1L,sr,115,34.5,alpha,upper,-0.003037862507921339 +illusion_1L,sr,115,34.5,alpha,lower,-0.003037862507921339 +illusion_1L,sr,116,34.8,alpha,front,0.006589474884447409 +illusion_1L,sr,116,34.8,alpha,upper,-0.00267440108948579 +illusion_1L,sr,116,34.8,alpha,lower,-0.00267440108948579 +illusion_1L,sr,117,35.1,alpha,front,0.005396378586114772 +illusion_1L,sr,117,35.1,alpha,upper,-0.0023802418004447504 +illusion_1L,sr,117,35.1,alpha,lower,-0.0023802418004447504 +illusion_1L,sr,118,35.4,alpha,front,0.004419971076868041 +illusion_1L,sr,118,35.4,alpha,upper,-0.0023106251951327816 +illusion_1L,sr,118,35.4,alpha,lower,-0.0023106251951327816 +illusion_1L,sr,119,35.7,alpha,front,0.0027900178131991804 +illusion_1L,sr,119,35.7,alpha,upper,-0.0017869615270847824 +illusion_1L,sr,119,35.7,alpha,lower,-0.0017869615270847824 +illusion_1L,sr,120,36.0,alpha,front,0.0011845557420987786 +illusion_1L,sr,120,36.0,alpha,upper,-0.0012689440310312576 +illusion_1L,sr,120,36.0,alpha,lower,-0.0012689440310312576 +illusion_1L,sr,121,36.3,alpha,front,-0.0005481741629315348 +illusion_1L,sr,121,36.3,alpha,upper,-0.0006156140665846532 +illusion_1L,sr,121,36.3,alpha,lower,-0.0006156140665846532 +illusion_1L,sr,122,36.6,alpha,front,-0.002621189196280505 +illusion_1L,sr,122,36.6,alpha,upper,0.00035475158561101144 +illusion_1L,sr,122,36.6,alpha,lower,0.00035475158561101144 +illusion_1L,sr,123,36.9,alpha,front,-0.00412477406260487 +illusion_1L,sr,123,36.9,alpha,upper,0.0009989967335911863 +illusion_1L,sr,123,36.9,alpha,lower,0.0009989967335911863 +illusion_1L,sr,124,37.2,alpha,front,-0.005422941898225078 +illusion_1L,sr,124,37.2,alpha,upper,0.0016042698260410916 +illusion_1L,sr,124,37.2,alpha,lower,0.0016042698260410916 +illusion_1L,sr,125,37.5,alpha,front,-0.006476506876146052 +illusion_1L,sr,125,37.5,alpha,upper,0.0021593519408721756 +illusion_1L,sr,125,37.5,alpha,lower,0.0021593519408721756 +illusion_1L,sr,126,37.8,alpha,front,-0.0067724495427107165 +illusion_1L,sr,126,37.8,alpha,upper,0.002302363815470422 +illusion_1L,sr,126,37.8,alpha,lower,0.002302363815470422 +illusion_1L,sr,127,38.1,alpha,front,-0.007049305741891957 +illusion_1L,sr,127,38.1,alpha,upper,0.002577868693077759 +illusion_1L,sr,127,38.1,alpha,lower,0.002577868693077759 +illusion_1L,sr,128,38.4,alpha,front,-0.006956525199328705 +illusion_1L,sr,128,38.4,alpha,upper,0.0027265703625878913 +illusion_1L,sr,128,38.4,alpha,lower,0.0027265703625878913 +illusion_1L,sr,129,38.7,alpha,front,-0.006302242737582453 +illusion_1L,sr,129,38.7,alpha,upper,0.0025902381554489574 +illusion_1L,sr,129,38.7,alpha,lower,0.0025902381554489574 +illusion_1L,sr,130,39.0,alpha,front,-0.005930774944491679 +illusion_1L,sr,130,39.0,alpha,upper,0.0027700843375441445 +illusion_1L,sr,130,39.0,alpha,lower,0.0027700843375441445 +illusion_1L,sr,131,39.3,alpha,front,-0.004896456478379807 +illusion_1L,sr,131,39.3,alpha,upper,0.002540602924936743 +illusion_1L,sr,131,39.3,alpha,lower,0.002540602924936743 +illusion_1L,sr,132,39.6,alpha,front,-0.0036360513475879974 +illusion_1L,sr,132,39.6,alpha,upper,0.002192376144183471 +illusion_1L,sr,132,39.6,alpha,lower,0.002192376144183471 +illusion_1L,sr,133,39.9,alpha,front,-0.002319417438944961 +illusion_1L,sr,133,39.9,alpha,upper,0.001820599699151342 +illusion_1L,sr,133,39.9,alpha,lower,0.001820599699151342 +illusion_1L,sr,134,40.2,alpha,front,-0.0002283755562944821 +illusion_1L,sr,134,40.2,alpha,upper,0.0008677938074481938 +illusion_1L,sr,134,40.2,alpha,lower,0.0008677938074481938 +illusion_1L,sr,135,40.5,alpha,front,0.0014784183896702253 +illusion_1L,sr,135,40.5,alpha,upper,0.00016080501851937698 +illusion_1L,sr,135,40.5,alpha,lower,0.00016080501851937698 +illusion_1L,sr,136,40.8,alpha,front,0.003106210205333859 +illusion_1L,sr,136,40.8,alpha,upper,-0.0005504454613302207 +illusion_1L,sr,136,40.8,alpha,lower,-0.0005504454613302207 +illusion_1L,sr,137,41.1,alpha,front,0.005005193636726843 +illusion_1L,sr,137,41.1,alpha,upper,-0.0015422413938377154 +illusion_1L,sr,137,41.1,alpha,lower,-0.0015422413938377154 +illusion_1L,sr,138,41.4,alpha,front,0.00585482488230752 +illusion_1L,sr,138,41.4,alpha,upper,-0.0018652314983970619 +illusion_1L,sr,138,41.4,alpha,lower,-0.0018652314983970619 +illusion_1L,sr,139,41.7,alpha,front,0.006808980689483274 +illusion_1L,sr,139,41.7,alpha,upper,-0.0023853935764777123 +illusion_1L,sr,139,41.7,alpha,lower,-0.0023853935764777123 +illusion_1L,sr,140,42.0,alpha,front,0.007327701945285189 +illusion_1L,sr,140,42.0,alpha,upper,-0.0027144576199788495 +illusion_1L,sr,140,42.0,alpha,lower,-0.0027144576199788495 +illusion_1L,sr,141,42.3,alpha,front,0.006938196693785794 +illusion_1L,sr,141,42.3,alpha,upper,-0.002513596121057393 +illusion_1L,sr,141,42.3,alpha,lower,-0.002513596121057393 +illusion_1L,sr,142,42.6,alpha,front,0.006926104303899846 +illusion_1L,sr,142,42.6,alpha,upper,-0.002721157547894138 +illusion_1L,sr,142,42.6,alpha,lower,-0.002721157547894138 +illusion_1L,sr,143,42.9,alpha,front,0.005507400935704301 +illusion_1L,sr,143,42.9,alpha,upper,-0.0020122215118811813 +illusion_1L,sr,143,42.9,alpha,lower,-0.0020122215118811813 +illusion_1L,sr,144,43.2,alpha,front,0.004015368317051737 +illusion_1L,sr,144,43.2,alpha,upper,-0.0013571631200784626 +illusion_1L,sr,144,43.2,alpha,lower,-0.0013571631200784626 +illusion_1L,sr,145,43.5,alpha,front,0.003592073335638459 +illusion_1L,sr,145,43.5,alpha,upper,-0.0015669613905404838 +illusion_1L,sr,145,43.5,alpha,lower,-0.0015669613905404838 +illusion_1L,sr,146,43.8,alpha,front,0.0018028823136112763 +illusion_1L,sr,146,43.8,alpha,upper,-0.0008210857372857081 +illusion_1L,sr,146,43.8,alpha,lower,-0.0008210857372857081 +illusion_1L,sr,147,44.1,alpha,front,0.00023711052114168751 +illusion_1L,sr,147,44.1,alpha,upper,-0.00025973758484196426 +illusion_1L,sr,147,44.1,alpha,lower,-0.00025973758484196426 +illusion_1L,sr,148,44.4,alpha,front,-5.871827554597247e-05 +illusion_1L,sr,148,44.4,alpha,upper,-0.0006210086544410232 +illusion_1L,sr,148,44.4,alpha,lower,-0.0006210086544410232 +illusion_1L,sr,149,44.7,alpha,front,-0.0020213710759929837 +illusion_1L,sr,149,44.7,alpha,upper,0.00028578483781685655 +illusion_1L,sr,149,44.7,alpha,lower,0.00028578483781685655 +illusion_1L,sr,150,45.0,alpha,front,-0.0032138941095200585 +illusion_1L,sr,150,45.0,alpha,upper,0.0006987012700815469 +illusion_1L,sr,150,45.0,alpha,lower,0.0006987012700815469 +illusion_1L,sr,151,45.3,alpha,front,-0.003815912559144888 +illusion_1L,sr,151,45.3,alpha,upper,0.0007638679381789768 +illusion_1L,sr,151,45.3,alpha,lower,0.0007638679381789768 +illusion_1L,sr,152,45.6,alpha,front,-0.0056656605085953285 +illusion_1L,sr,152,45.6,alpha,upper,0.0018593111620984137 +illusion_1L,sr,152,45.6,alpha,lower,0.0018593111620984137 +illusion_1L,sr,153,45.9,alpha,front,-0.00562884714593536 +illusion_1L,sr,153,45.9,alpha,upper,0.0016815132601758556 +illusion_1L,sr,153,45.9,alpha,lower,0.0016815132601758556 +illusion_1L,sr,154,46.2,alpha,front,-0.0052413613199681006 +illusion_1L,sr,154,46.2,alpha,upper,0.0013751852664813345 +illusion_1L,sr,154,46.2,alpha,lower,0.0013751852664813345 +illusion_1L,sr,155,46.5,alpha,front,-0.005791483312851474 +illusion_1L,sr,155,46.5,alpha,upper,0.0018882169181366724 +illusion_1L,sr,155,46.5,alpha,lower,0.0018882169181366724 +illusion_1L,sr,156,46.8,alpha,front,-0.004439798253269185 +illusion_1L,sr,156,46.8,alpha,upper,0.001129795041725317 +illusion_1L,sr,156,46.8,alpha,lower,0.001129795041725317 +illusion_1L,sr,157,47.1,alpha,front,-0.0036607863729308204 +illusion_1L,sr,157,47.1,alpha,upper,0.0009032997921558824 +illusion_1L,sr,157,47.1,alpha,lower,0.0009032997921558824 +illusion_1L,sr,158,47.4,alpha,front,-0.003539444742553161 +illusion_1L,sr,158,47.4,alpha,upper,0.0012615923581399333 +illusion_1L,sr,158,47.4,alpha,lower,0.0012615923581399333 +illusion_1L,sr,159,47.7,alpha,front,-0.0017751215099100683 +illusion_1L,sr,159,47.7,alpha,upper,0.0004748162798019085 +illusion_1L,sr,159,47.7,alpha,lower,0.0004748162798019085 +illusion_1L,sr,160,48.0,alpha,front,-0.001336781685650372 +illusion_1L,sr,160,48.0,alpha,upper,0.000705710281771917 +illusion_1L,sr,160,48.0,alpha,lower,0.000705710281771917 +illusion_1L,sr,161,48.3,alpha,front,-0.000994700079152912 +illusion_1L,sr,161,48.3,alpha,upper,0.0010133030761644724 +illusion_1L,sr,161,48.3,alpha,lower,0.0010133030761644724 +illusion_1L,sr,162,48.6,alpha,front,0.0007455783557806413 +illusion_1L,sr,162,48.6,alpha,upper,0.00026986634841809007 +illusion_1L,sr,162,48.6,alpha,lower,0.00026986634841809007 +illusion_1L,sr,163,48.9,alpha,front,0.0016068518399977895 +illusion_1L,sr,163,48.9,alpha,upper,0.00012436788968767445 +illusion_1L,sr,163,48.9,alpha,lower,0.00012436788968767445 +illusion_1L,sr,164,49.2,alpha,front,0.0028712537125964582 +illusion_1L,sr,164,49.2,alpha,upper,-0.0003856235512444129 +illusion_1L,sr,164,49.2,alpha,lower,-0.0003856235512444129 +illusion_1L,sr,165,49.5,alpha,front,0.004314898013804566 +illusion_1L,sr,165,49.5,alpha,upper,-0.0011078071903225621 +illusion_1L,sr,165,49.5,alpha,lower,-0.0011078071903225621 +illusion_1L,sr,166,49.8,alpha,front,0.004329453902715795 +illusion_1L,sr,166,49.8,alpha,upper,-0.0008865780791999337 +illusion_1L,sr,166,49.8,alpha,lower,-0.0008865780791999337 +illusion_1L,sr,167,50.1,alpha,front,0.0050325696601478676 +illusion_1L,sr,167,50.1,alpha,upper,-0.0012767481769670568 +illusion_1L,sr,167,50.1,alpha,lower,-0.0012767481769670568 +illusion_1L,sr,168,50.4,alpha,front,0.005269055056072218 +illusion_1L,sr,168,50.4,alpha,upper,-0.0014462678651884185 +illusion_1L,sr,168,50.4,alpha,lower,-0.0014462678651884185 +illusion_1L,sr,169,50.7,alpha,front,0.004431673968601328 +illusion_1L,sr,169,50.7,alpha,upper,-0.0009536068390815326 +illusion_1L,sr,169,50.7,alpha,lower,-0.0009536068390815326 +illusion_1L,sr,170,51.0,alpha,front,0.0042591059331442485 +illusion_1L,sr,170,51.0,alpha,upper,-0.0010643310383166363 +illusion_1L,sr,170,51.0,alpha,lower,-0.0010643310383166363 +illusion_1L,sr,171,51.3,alpha,front,0.003573803293461443 +illusion_1L,sr,171,51.3,alpha,upper,-0.0009056178586670099 +illusion_1L,sr,171,51.3,alpha,lower,-0.0009056178586670099 +illusion_1L,sr,172,51.6,alpha,front,0.0025889860154128634 +illusion_1L,sr,172,51.6,alpha,upper,-0.0006144913244124257 +illusion_1L,sr,172,51.6,alpha,lower,-0.0006144913244124257 +illusion_1L,sr,173,51.9,alpha,front,0.002332801633847475 +illusion_1L,sr,173,51.9,alpha,upper,-0.0009198254760038604 +illusion_1L,sr,173,51.9,alpha,lower,-0.0009198254760038604 +illusion_1L,sr,174,52.2,alpha,front,0.001479007496181968 +illusion_1L,sr,174,52.2,alpha,upper,-0.0008200671508091784 +illusion_1L,sr,174,52.2,alpha,lower,-0.0008200671508091784 +illusion_1L,sr,175,52.5,alpha,front,0.0006963067749028084 +illusion_1L,sr,175,52.5,alpha,upper,-0.000775632984107673 +illusion_1L,sr,175,52.5,alpha,lower,-0.000775632984107673 +illusion_1L,sr,176,52.8,alpha,front,1.3234098008090346e-05 +illusion_1L,sr,176,52.8,alpha,upper,-0.0007804999527445972 +illusion_1L,sr,176,52.8,alpha,lower,-0.0007804999527445972 +illusion_1L,sr,177,53.1,alpha,front,-0.0016081142586867152 +illusion_1L,sr,177,53.1,alpha,upper,-4.853338086444059e-05 +illusion_1L,sr,177,53.1,alpha,lower,-4.853338086444059e-05 +illusion_1L,sr,178,53.4,alpha,front,-0.0025703507074990514 +illusion_1L,sr,178,53.4,alpha,upper,0.0002623926072280493 +illusion_1L,sr,178,53.4,alpha,lower,0.0002623926072280493 +illusion_1L,sr,179,53.7,alpha,front,-0.003201364514405447 +illusion_1L,sr,179,53.7,alpha,upper,0.00041150753980908136 +illusion_1L,sr,179,53.7,alpha,lower,0.00041150753980908136 +illusion_1L,sr,180,54.0,alpha,front,-0.004104401621462854 +illusion_1L,sr,180,54.0,alpha,upper,0.0008579560293935155 +illusion_1L,sr,180,54.0,alpha,lower,0.0008579560293935155 +illusion_1L,sr,181,54.3,alpha,front,-0.004340374688393302 +illusion_1L,sr,181,54.3,alpha,upper,0.0009219183611784352 +illusion_1L,sr,181,54.3,alpha,lower,0.0009219183611784352 +illusion_1L,sr,182,54.6,alpha,front,-0.004292299899634526 +illusion_1L,sr,182,54.6,alpha,upper,0.0008904007196409609 +illusion_1L,sr,182,54.6,alpha,lower,0.0008904007196409609 +illusion_1L,sr,183,54.9,alpha,front,-0.0042196304188110295 +illusion_1L,sr,183,54.9,alpha,upper,0.0009580204462436397 +illusion_1L,sr,183,54.9,alpha,lower,0.0009580204462436397 +illusion_1L,sr,184,55.2,alpha,front,-0.0037327040049933424 +illusion_1L,sr,184,55.2,alpha,upper,0.0008339197170531866 +illusion_1L,sr,184,55.2,alpha,lower,0.0008339197170531866 +illusion_1L,sr,185,55.5,alpha,front,-0.0032194458418820654 +illusion_1L,sr,185,55.5,alpha,upper,0.000790510054352763 +illusion_1L,sr,185,55.5,alpha,lower,0.000790510054352763 +illusion_1L,sr,186,55.8,alpha,front,-0.002584049313777533 +illusion_1L,sr,186,55.8,alpha,upper,0.0007397518241371893 +illusion_1L,sr,186,55.8,alpha,lower,0.0007397518241371893 +illusion_1L,sr,187,56.1,alpha,front,-0.002122210045002777 +illusion_1L,sr,187,56.1,alpha,upper,0.0008751380917806154 +illusion_1L,sr,187,56.1,alpha,lower,0.0008751380917806154 +illusion_1L,sr,188,56.4,alpha,front,-0.0016073111598544692 +illusion_1L,sr,188,56.4,alpha,upper,0.0010003708741570824 +illusion_1L,sr,188,56.4,alpha,lower,0.0010003708741570824 +illusion_1L,sr,189,56.7,alpha,front,-0.0007380980075530974 +illusion_1L,sr,189,56.7,alpha,upper,0.0008674850828651343 +illusion_1L,sr,189,56.7,alpha,lower,0.0008674850828651343 +illusion_1L,sr,190,57.0,alpha,front,0.00024078261379431934 +illusion_1L,sr,190,57.0,alpha,upper,0.0006302469420156245 +illusion_1L,sr,190,57.0,alpha,lower,0.0006302469420156245 +illusion_1L,sr,191,57.3,alpha,front,0.0015544221933936932 +illusion_1L,sr,191,57.3,alpha,upper,0.00010465154668724482 +illusion_1L,sr,191,57.3,alpha,lower,0.00010465154668724482 +illusion_1L,sr,192,57.6,alpha,front,0.0025198824633613608 +illusion_1L,sr,192,57.6,alpha,upper,-0.00022469684677906002 +illusion_1L,sr,192,57.6,alpha,lower,-0.00022469684677906002 +illusion_1L,sr,193,57.9,alpha,front,0.0029201788016046046 +illusion_1L,sr,193,57.9,alpha,upper,-0.0002178060172833944 +illusion_1L,sr,193,57.9,alpha,lower,-0.0002178060172833944 +illusion_1L,sr,194,58.2,alpha,front,0.003912050248279134 +illusion_1L,sr,194,58.2,alpha,upper,-0.0007403987127766395 +illusion_1L,sr,194,58.2,alpha,lower,-0.0007403987127766395 +illusion_1L,sr,195,58.5,alpha,front,0.0041664094988433445 +illusion_1L,sr,195,58.5,alpha,upper,-0.0008233077732845221 +illusion_1L,sr,195,58.5,alpha,lower,-0.0008233077732845221 +illusion_1L,sr,196,58.8,alpha,front,0.0036027537409219763 +illusion_1L,sr,196,58.8,alpha,upper,-0.0004160672397757332 +illusion_1L,sr,196,58.8,alpha,lower,-0.0004160672397757332 +illusion_1L,sr,197,59.1,alpha,front,0.004105041382406582 +illusion_1L,sr,197,59.1,alpha,upper,-0.0009084008213200609 +illusion_1L,sr,197,59.1,alpha,lower,-0.0009084008213200609 +illusion_1L,sr,198,59.4,alpha,front,0.0035065391812065944 +illusion_1L,sr,198,59.4,alpha,upper,-0.0006979672699016469 +illusion_1L,sr,198,59.4,alpha,lower,-0.0006979672699016469 +illusion_1L,sr,199,59.7,alpha,front,0.0027428126102734957 +illusion_1L,sr,199,59.7,alpha,upper,-0.00046477336982942916 +illusion_1L,sr,199,59.7,alpha,lower,-0.00046477336982942916 +illusion_1L,sr,0,0.0,omega,front,-0.0006702279284310067 +illusion_1L,sr,0,0.0,omega,upper,0.0005434859279871334 +illusion_1L,sr,0,0.0,omega,lower,0.0005434859279871334 +illusion_1L,sr,1,0.3,omega,front,-0.0008241633558656292 +illusion_1L,sr,1,0.3,omega,upper,0.0006451124867087857 +illusion_1L,sr,1,0.3,omega,lower,0.0006451124867087857 +illusion_1L,sr,2,0.6,omega,front,-0.0002842906059667547 +illusion_1L,sr,2,0.6,omega,upper,0.00023742561707417302 +illusion_1L,sr,2,0.6,omega,lower,0.00023742561707417302 +illusion_1L,sr,3,0.9,omega,front,0.0001587768210580739 +illusion_1L,sr,3,0.9,omega,upper,-0.00010324114221548194 +illusion_1L,sr,3,0.9,omega,lower,-0.00010324114221548194 +illusion_1L,sr,4,1.2,omega,front,0.00039484248255278214 +illusion_1L,sr,4,1.2,omega,upper,-0.0002861337066374378 +illusion_1L,sr,4,1.2,omega,lower,-0.0002861337066374378 +illusion_1L,sr,5,1.5,omega,front,0.0005511846796675569 +illusion_1L,sr,5,1.5,omega,upper,-0.0004075333237701859 +illusion_1L,sr,5,1.5,omega,lower,-0.0004075333237701859 +illusion_1L,sr,6,1.8,omega,front,0.0005771161420682061 +illusion_1L,sr,6,1.8,omega,upper,-0.0004327202550609269 +illusion_1L,sr,6,1.8,omega,lower,-0.0004327202550609269 +illusion_1L,sr,7,2.1,omega,front,0.0004621742758437736 +illusion_1L,sr,7,2.1,omega,upper,-0.000355347219507961 +illusion_1L,sr,7,2.1,omega,lower,-0.000355347219507961 +illusion_1L,sr,8,2.4,omega,front,0.00023583223285816705 +illusion_1L,sr,8,2.4,omega,upper,-0.00019967475245594377 +illusion_1L,sr,8,2.4,omega,lower,-0.00019967475245594377 +illusion_1L,sr,9,2.7,omega,front,-5.617925031734306e-05 +illusion_1L,sr,9,2.7,omega,upper,-1.1308894477391612e-06 +illusion_1L,sr,9,2.7,omega,lower,-1.1308894477391612e-06 +illusion_1L,sr,10,3.0,omega,front,-0.0002988483605117301 +illusion_1L,sr,10,3.0,omega,upper,0.0001563360404634713 +illusion_1L,sr,10,3.0,omega,lower,0.0001563360404634713 +illusion_1L,sr,11,3.3,omega,front,-0.00044114618050397 +illusion_1L,sr,11,3.3,omega,upper,0.00023719993367633363 +illusion_1L,sr,11,3.3,omega,lower,0.00023719993367633363 +illusion_1L,sr,12,3.6,omega,front,-0.0005188519919291352 +illusion_1L,sr,12,3.6,omega,upper,0.0002704482135768371 +illusion_1L,sr,12,3.6,omega,lower,0.0002704482135768371 +illusion_1L,sr,13,3.9,omega,front,-0.00053635666972389 +illusion_1L,sr,13,3.9,omega,upper,0.0002618731590770107 +illusion_1L,sr,13,3.9,omega,lower,0.0002618731590770107 +illusion_1L,sr,14,4.2,omega,front,-0.0005389334153289036 +illusion_1L,sr,14,4.2,omega,upper,0.00024683070348713364 +illusion_1L,sr,14,4.2,omega,lower,0.00024683070348713364 +illusion_1L,sr,15,4.5,omega,front,-0.0005379353676524351 +illusion_1L,sr,15,4.5,omega,upper,0.00023513918745985158 +illusion_1L,sr,15,4.5,omega,lower,0.00023513918745985158 +illusion_1L,sr,16,4.8,omega,front,-0.0004891741454402065 +illusion_1L,sr,16,4.8,omega,upper,0.00019490546224433804 +illusion_1L,sr,16,4.8,omega,lower,0.00019490546224433804 +illusion_1L,sr,17,5.1,omega,front,-0.0003846767641820914 +illusion_1L,sr,17,5.1,omega,upper,0.00012153162400320105 +illusion_1L,sr,17,5.1,omega,lower,0.00012153162400320105 +illusion_1L,sr,18,5.4,omega,front,-0.00032330544331805546 +illusion_1L,sr,18,5.4,omega,upper,8.747332527874713e-05 +illusion_1L,sr,18,5.4,omega,lower,8.747332527874713e-05 +illusion_1L,sr,19,5.7,omega,front,-0.0002160015153566705 +illusion_1L,sr,19,5.7,omega,upper,2.615540251499293e-05 +illusion_1L,sr,19,5.7,omega,lower,2.615540251499293e-05 +illusion_1L,sr,20,6.0,omega,front,-0.00011783352106430223 +illusion_1L,sr,20,6.0,omega,upper,-2.2810869562912005e-05 +illusion_1L,sr,20,6.0,omega,lower,-2.2810869562912005e-05 +illusion_1L,sr,21,6.3,omega,front,-3.13202530293466e-05 +illusion_1L,sr,21,6.3,omega,upper,-5.9065065688054806e-05 +illusion_1L,sr,21,6.3,omega,lower,-5.9065065688054806e-05 +illusion_1L,sr,22,6.6,omega,front,4.6192510758130134e-05 +illusion_1L,sr,22,6.6,omega,upper,-8.58942944696045e-05 +illusion_1L,sr,22,6.6,omega,lower,-8.58942944696045e-05 +illusion_1L,sr,23,6.9,omega,front,0.0001002659510592787 +illusion_1L,sr,23,6.9,omega,upper,-9.463351698362002e-05 +illusion_1L,sr,23,6.9,omega,lower,-9.463351698362002e-05 +illusion_1L,sr,24,7.2,omega,front,0.00015956349719131458 +illusion_1L,sr,24,7.2,omega,upper,-0.0001080267369940721 +illusion_1L,sr,24,7.2,omega,lower,-0.0001080267369940721 +illusion_1L,sr,25,7.5,omega,front,0.00022169416914535008 +illusion_1L,sr,25,7.5,omega,upper,-0.00012543539201275426 +illusion_1L,sr,25,7.5,omega,lower,-0.00012543539201275426 +illusion_1L,sr,26,7.8,omega,front,0.0002660019467144556 +illusion_1L,sr,26,7.8,omega,upper,-0.0001326463875748664 +illusion_1L,sr,26,7.8,omega,lower,-0.0001326463875748664 +illusion_1L,sr,27,8.1,omega,front,0.0003182979899704366 +illusion_1L,sr,27,8.1,omega,upper,-0.00014925827365841582 +illusion_1L,sr,27,8.1,omega,lower,-0.00014925827365841582 +illusion_1L,sr,28,8.4,omega,front,0.00035982247970597236 +illusion_1L,sr,28,8.4,omega,upper,-0.0001620610141441549 +illusion_1L,sr,28,8.4,omega,lower,-0.0001620610141441549 +illusion_1L,sr,29,8.7,omega,front,0.0003830045791009659 +illusion_1L,sr,29,8.7,omega,upper,-0.00016600490725157875 +illusion_1L,sr,29,8.7,omega,lower,-0.00016600490725157875 +illusion_1L,sr,30,9.0,omega,front,0.0003941392761374174 +illusion_1L,sr,30,9.0,omega,upper,-0.00016628797759874248 +illusion_1L,sr,30,9.0,omega,lower,-0.00016628797759874248 +illusion_1L,sr,31,9.3,omega,front,0.0003669146173256746 +illusion_1L,sr,31,9.3,omega,upper,-0.0001441968719034173 +illusion_1L,sr,31,9.3,omega,lower,-0.0001441968719034173 +illusion_1L,sr,32,9.6,omega,front,0.0003176766246741397 +illusion_1L,sr,32,9.6,omega,upper,-0.00011195466132708804 +illusion_1L,sr,32,9.6,omega,lower,-0.00011195466132708804 +illusion_1L,sr,33,9.9,omega,front,0.0002535653758883075 +illusion_1L,sr,33,9.9,omega,upper,-7.493377579969541e-05 +illusion_1L,sr,33,9.9,omega,lower,-7.493377579969541e-05 +illusion_1L,sr,34,10.2,omega,front,0.00017112735723736976 +illusion_1L,sr,34,10.2,omega,upper,-3.003175358418167e-05 +illusion_1L,sr,34,10.2,omega,lower,-3.003175358418167e-05 +illusion_1L,sr,35,10.5,omega,front,0.00010083402682707937 +illusion_1L,sr,35,10.5,omega,upper,1.4510768531504627e-06 +illusion_1L,sr,35,10.5,omega,lower,1.4510768531504627e-06 +illusion_1L,sr,36,10.8,omega,front,2.7395953119797867e-05 +illusion_1L,sr,36,10.8,omega,upper,3.211619974871377e-05 +illusion_1L,sr,36,10.8,omega,lower,3.211619974871377e-05 +illusion_1L,sr,37,11.1,omega,front,-4.110055489795983e-05 +illusion_1L,sr,37,11.1,omega,upper,5.758052381387845e-05 +illusion_1L,sr,37,11.1,omega,lower,5.758052381387845e-05 +illusion_1L,sr,38,11.4,omega,front,-8.778124458437583e-05 +illusion_1L,sr,38,11.4,omega,upper,6.719261901975058e-05 +illusion_1L,sr,38,11.4,omega,lower,6.719261901975058e-05 +illusion_1L,sr,39,11.7,omega,front,-0.00014753508632246295 +illusion_1L,sr,39,11.7,omega,upper,8.781199973801422e-05 +illusion_1L,sr,39,11.7,omega,lower,8.781199973801422e-05 +illusion_1L,sr,40,12.0,omega,front,-0.00020134394752191733 +illusion_1L,sr,40,12.0,omega,upper,0.0001065799630908279 +illusion_1L,sr,40,12.0,omega,lower,0.0001065799630908279 +illusion_1L,sr,41,12.3,omega,front,-0.00023745386044495402 +illusion_1L,sr,41,12.3,omega,upper,0.0001156583595539666 +illusion_1L,sr,41,12.3,omega,lower,0.0001156583595539666 +illusion_1L,sr,42,12.6,omega,front,-0.00027982209504465324 +illusion_1L,sr,42,12.6,omega,upper,0.0001331931381658251 +illusion_1L,sr,42,12.6,omega,lower,0.0001331931381658251 +illusion_1L,sr,43,12.9,omega,front,-0.00029708947459609783 +illusion_1L,sr,43,12.9,omega,upper,0.00013643259244976072 +illusion_1L,sr,43,12.9,omega,lower,0.00013643259244976072 +illusion_1L,sr,44,13.2,omega,front,-0.000283275581880372 +illusion_1L,sr,44,13.2,omega,upper,0.00012163651073222787 +illusion_1L,sr,44,13.2,omega,lower,0.00012163651073222787 +illusion_1L,sr,45,13.5,omega,front,-0.00026465930152839854 +illusion_1L,sr,45,13.5,omega,upper,0.00010801835440394439 +illusion_1L,sr,45,13.5,omega,lower,0.00010801835440394439 +illusion_1L,sr,46,13.8,omega,front,-0.00021257888973020222 +illusion_1L,sr,46,13.8,omega,upper,7.464478117553298e-05 +illusion_1L,sr,46,13.8,omega,lower,7.464478117553298e-05 +illusion_1L,sr,47,14.1,omega,front,-0.00015670703100891263 +illusion_1L,sr,47,14.1,omega,upper,4.306293254478802e-05 +illusion_1L,sr,47,14.1,omega,lower,4.306293254478802e-05 +illusion_1L,sr,48,14.4,omega,front,-9.821609930136338e-05 +illusion_1L,sr,48,14.4,omega,upper,1.3373959198732106e-05 +illusion_1L,sr,48,14.4,omega,lower,1.3373959198732106e-05 +illusion_1L,sr,49,14.7,omega,front,-2.889542836879269e-05 +illusion_1L,sr,49,14.7,omega,upper,-2.1370285116311186e-05 +illusion_1L,sr,49,14.7,omega,lower,-2.1370285116311186e-05 +illusion_1L,sr,50,15.0,omega,front,1.9905877144187277e-05 +illusion_1L,sr,50,15.0,omega,upper,-3.927687753381884e-05 +illusion_1L,sr,50,15.0,omega,lower,-3.927687753381884e-05 +illusion_1L,sr,51,15.3,omega,front,6.431961747898912e-05 +illusion_1L,sr,51,15.3,omega,upper,-5.345029890323698e-05 +illusion_1L,sr,51,15.3,omega,lower,-5.345029890323698e-05 +illusion_1L,sr,52,15.6,omega,front,0.0001192053016680946 +illusion_1L,sr,52,15.6,omega,upper,-7.585309336557508e-05 +illusion_1L,sr,52,15.6,omega,lower,-7.585309336557508e-05 +illusion_1L,sr,53,15.9,omega,front,0.00015725648553174593 +illusion_1L,sr,53,15.9,omega,upper,-8.734597864203469e-05 +illusion_1L,sr,53,15.9,omega,lower,-8.734597864203469e-05 +illusion_1L,sr,54,16.2,omega,front,0.00019632174632014903 +illusion_1L,sr,54,16.2,omega,upper,-0.00010162498644123081 +illusion_1L,sr,54,16.2,omega,lower,-0.00010162498644123081 +illusion_1L,sr,55,16.5,omega,front,0.00023235712839765707 +illusion_1L,sr,55,16.5,omega,upper,-0.00011631370911476536 +illusion_1L,sr,55,16.5,omega,lower,-0.00011631370911476536 +illusion_1L,sr,56,16.8,omega,front,0.00024262484359519125 +illusion_1L,sr,56,16.8,omega,upper,-0.00011502287493016045 +illusion_1L,sr,56,16.8,omega,lower,-0.00011502287493016045 +illusion_1L,sr,57,17.1,omega,front,0.0002470442856128337 +illusion_1L,sr,57,17.1,omega,upper,-0.0001127213063299852 +illusion_1L,sr,57,17.1,omega,lower,-0.0001127213063299852 +illusion_1L,sr,58,17.4,omega,front,0.0002305699830502206 +illusion_1L,sr,58,17.4,omega,upper,-9.868529661313338e-05 +illusion_1L,sr,58,17.4,omega,lower,-9.868529661313338e-05 +illusion_1L,sr,59,17.7,omega,front,0.0001940881543781664 +illusion_1L,sr,59,17.7,omega,upper,-7.3700609232695e-05 +illusion_1L,sr,59,17.7,omega,lower,-7.3700609232695e-05 +illusion_1L,sr,60,18.0,omega,front,0.00015810329165318675 +illusion_1L,sr,60,18.0,omega,upper,-5.270610934284409e-05 +illusion_1L,sr,60,18.0,omega,lower,-5.270610934284409e-05 +illusion_1L,sr,61,18.3,omega,front,0.0001147169287331061 +illusion_1L,sr,61,18.3,omega,upper,-2.948603423105503e-05 +illusion_1L,sr,61,18.3,omega,lower,-2.948603423105503e-05 +illusion_1L,sr,62,18.6,omega,front,7.104701589161433e-05 +illusion_1L,sr,62,18.6,omega,upper,-8.628468363676562e-06 +illusion_1L,sr,62,18.6,omega,lower,-8.628468363676562e-06 +illusion_1L,sr,63,18.9,omega,front,3.6940965006196095e-05 +illusion_1L,sr,63,18.9,omega,upper,3.4807256601223496e-06 +illusion_1L,sr,63,18.9,omega,lower,3.4807256601223496e-06 +illusion_1L,sr,64,19.2,omega,front,-4.791742071427047e-06 +illusion_1L,sr,64,19.2,omega,upper,2.0362143324935446e-05 +illusion_1L,sr,64,19.2,omega,lower,2.0362143324935446e-05 +illusion_1L,sr,65,19.5,omega,front,-4.224305394653042e-05 +illusion_1L,sr,65,19.5,omega,upper,3.405870355179011e-05 +illusion_1L,sr,65,19.5,omega,lower,3.405870355179011e-05 +illusion_1L,sr,66,19.8,omega,front,-7.88306981876296e-05 +illusion_1L,sr,66,19.8,omega,upper,4.7784709792077756e-05 +illusion_1L,sr,66,19.8,omega,lower,4.7784709792077756e-05 +illusion_1L,sr,67,20.1,omega,front,-0.00011724502564997908 +illusion_1L,sr,67,20.1,omega,upper,6.40289184655566e-05 +illusion_1L,sr,67,20.1,omega,lower,6.40289184655566e-05 +illusion_1L,sr,68,20.4,omega,front,-0.00014296682939072907 +illusion_1L,sr,68,20.4,omega,upper,7.26254599820081e-05 +illusion_1L,sr,68,20.4,omega,lower,7.26254599820081e-05 +illusion_1L,sr,69,20.7,omega,front,-0.00016124246461261094 +illusion_1L,sr,69,20.7,omega,upper,7.781198088245685e-05 +illusion_1L,sr,69,20.7,omega,lower,7.781198088245685e-05 +illusion_1L,sr,70,21.0,omega,front,-0.0001705367979373687 +illusion_1L,sr,70,21.0,omega,upper,7.882428124524215e-05 +illusion_1L,sr,70,21.0,omega,lower,7.882428124524215e-05 +illusion_1L,sr,71,21.3,omega,front,-0.0001604134730436578 +illusion_1L,sr,71,21.3,omega,upper,6.828669385266925e-05 +illusion_1L,sr,71,21.3,omega,lower,6.828669385266925e-05 +illusion_1L,sr,72,21.6,omega,front,-0.0001475924087109555 +illusion_1L,sr,72,21.6,omega,upper,5.868858825884442e-05 +illusion_1L,sr,72,21.6,omega,lower,5.868858825884442e-05 +illusion_1L,sr,73,21.9,omega,front,-0.0001253222637125437 +illusion_1L,sr,73,21.9,omega,upper,4.503612219674005e-05 +illusion_1L,sr,73,21.9,omega,lower,4.503612219674005e-05 +illusion_1L,sr,74,22.2,omega,front,-9.393534089144298e-05 +illusion_1L,sr,74,22.2,omega,upper,2.7407284466829246e-05 +illusion_1L,sr,74,22.2,omega,lower,2.7407284466829246e-05 +illusion_1L,sr,75,22.5,omega,front,-6.841713536250578e-05 +illusion_1L,sr,75,22.5,omega,upper,1.636372955789667e-05 +illusion_1L,sr,75,22.5,omega,lower,1.636372955789667e-05 +illusion_1L,sr,76,22.8,omega,front,-3.421157692221719e-05 +illusion_1L,sr,76,22.8,omega,upper,6.47347120551478e-07 +illusion_1L,sr,76,22.8,omega,lower,6.47347120551478e-07 +illusion_1L,sr,77,23.1,omega,front,-3.5337238071597722e-06 +illusion_1L,sr,77,23.1,omega,upper,-1.1386847429581058e-05 +illusion_1L,sr,77,23.1,omega,lower,-1.1386847429581058e-05 +illusion_1L,sr,78,23.4,omega,front,2.1133351809839665e-05 +illusion_1L,sr,78,23.4,omega,upper,-1.8580115042134668e-05 +illusion_1L,sr,78,23.4,omega,lower,-1.8580115042134668e-05 +illusion_1L,sr,79,23.7,omega,front,5.603085528675224e-05 +illusion_1L,sr,79,23.7,omega,upper,-3.34359207456454e-05 +illusion_1L,sr,79,23.7,omega,lower,-3.34359207456454e-05 +illusion_1L,sr,80,24.0,omega,front,8.287436164229587e-05 +illusion_1L,sr,80,24.0,omega,upper,-4.299842955469372e-05 +illusion_1L,sr,80,24.0,omega,lower,-4.299842955469372e-05 +illusion_1L,sr,81,24.3,omega,front,0.00010368877072891678 +illusion_1L,sr,81,24.3,omega,upper,-4.9221375883393254e-05 +illusion_1L,sr,81,24.3,omega,lower,-4.9221375883393254e-05 +illusion_1L,sr,82,24.6,omega,front,0.0001272874185931122 +illusion_1L,sr,82,24.6,omega,upper,-5.894839126976373e-05 +illusion_1L,sr,82,24.6,omega,lower,-5.894839126976373e-05 +illusion_1L,sr,83,24.9,omega,front,0.00013583094226765028 +illusion_1L,sr,83,24.9,omega,upper,-5.944607806285453e-05 +illusion_1L,sr,83,24.9,omega,lower,-5.944607806285453e-05 +illusion_1L,sr,84,25.2,omega,front,0.0001386896738169112 +illusion_1L,sr,84,25.2,omega,upper,-5.780179974644646e-05 +illusion_1L,sr,84,25.2,omega,lower,-5.780179974644646e-05 +illusion_1L,sr,85,25.5,omega,front,0.00014072301459133851 +illusion_1L,sr,85,25.5,omega,upper,-5.799961351384032e-05 +illusion_1L,sr,85,25.5,omega,lower,-5.799961351384032e-05 +illusion_1L,sr,86,25.8,omega,front,0.0001224180230607598 +illusion_1L,sr,86,25.8,omega,upper,-4.553780837183399e-05 +illusion_1L,sr,86,25.8,omega,lower,-4.553780837183399e-05 +illusion_1L,sr,87,26.1,omega,front,0.00010578782906865938 +illusion_1L,sr,87,26.1,omega,upper,-3.6612157162793163e-05 +illusion_1L,sr,87,26.1,omega,lower,-3.6612157162793163e-05 +illusion_1L,sr,88,26.4,omega,front,8.924252913316507e-05 +illusion_1L,sr,88,26.4,omega,upper,-2.9801002888310767e-05 +illusion_1L,sr,88,26.4,omega,lower,-2.9801002888310767e-05 +illusion_1L,sr,89,26.7,omega,front,5.783030398707097e-05 +illusion_1L,sr,89,26.7,omega,upper,-1.3802375178041115e-05 +illusion_1L,sr,89,26.7,omega,lower,-1.3802375178041115e-05 +illusion_1L,sr,90,27.0,omega,front,3.690458240941982e-05 +illusion_1L,sr,90,27.0,omega,upper,-6.742132009052437e-06 +illusion_1L,sr,90,27.0,omega,lower,-6.742132009052437e-06 +illusion_1L,sr,91,27.3,omega,front,1.4044091198656718e-05 +illusion_1L,sr,91,27.3,omega,upper,1.0108208228283913e-06 +illusion_1L,sr,91,27.3,omega,lower,1.0108208228283913e-06 +illusion_1L,sr,92,27.6,omega,front,-1.4658475781868077e-05 +illusion_1L,sr,92,27.6,omega,upper,1.2831342068351974e-05 +illusion_1L,sr,92,27.6,omega,lower,1.2831342068351974e-05 +illusion_1L,sr,93,27.9,omega,front,-3.1223242416386026e-05 +illusion_1L,sr,93,27.9,omega,upper,1.599298946365531e-05 +illusion_1L,sr,93,27.9,omega,lower,1.599298946365531e-05 +illusion_1L,sr,94,28.2,omega,front,-5.3840991755366375e-05 +illusion_1L,sr,94,28.2,omega,upper,2.4290287624623466e-05 +illusion_1L,sr,94,28.2,omega,lower,2.4290287624623466e-05 +illusion_1L,sr,95,28.5,omega,front,-7.506905104802897e-05 +illusion_1L,sr,95,28.5,omega,upper,3.264823971899068e-05 +illusion_1L,sr,95,28.5,omega,lower,3.264823971899068e-05 +illusion_1L,sr,96,28.8,omega,front,-8.774035023513947e-05 +illusion_1L,sr,96,28.8,omega,upper,3.6103849031019484e-05 +illusion_1L,sr,96,28.8,omega,lower,3.6103849031019484e-05 +illusion_1L,sr,97,29.1,omega,front,-0.00010261250217087694 +illusion_1L,sr,97,29.1,omega,upper,4.283603725736697e-05 +illusion_1L,sr,97,29.1,omega,lower,4.283603725736697e-05 +illusion_1L,sr,98,29.4,omega,front,-0.00010594078503121677 +illusion_1L,sr,98,29.4,omega,upper,4.29191946439874e-05 +illusion_1L,sr,98,29.4,omega,lower,4.29191946439874e-05 +illusion_1L,sr,99,29.7,omega,front,-9.779621918953742e-05 +illusion_1L,sr,99,29.7,omega,upper,3.653297429537135e-05 +illusion_1L,sr,99,29.7,omega,lower,3.653297429537135e-05 +illusion_1L,sr,100,30.0,omega,front,-9.147721144610537e-05 +illusion_1L,sr,100,30.0,omega,upper,3.345332880093616e-05 +illusion_1L,sr,100,30.0,omega,lower,3.345332880093616e-05 +illusion_1L,sr,101,30.3,omega,front,-7.721084550381583e-05 +illusion_1L,sr,101,30.3,omega,upper,2.6433925129229207e-05 +illusion_1L,sr,101,30.3,omega,lower,2.6433925129229207e-05 +illusion_1L,sr,102,30.6,omega,front,-5.9572314193992795e-05 +illusion_1L,sr,102,30.6,omega,upper,1.8513539797241215e-05 +illusion_1L,sr,102,30.6,omega,lower,1.8513539797241215e-05 +illusion_1L,sr,103,30.9,omega,front,-4.7499509677225995e-05 +illusion_1L,sr,103,30.9,omega,upper,1.611158941191869e-05 +illusion_1L,sr,103,30.9,omega,lower,1.611158941191869e-05 +illusion_1L,sr,104,31.2,omega,front,-2.4129109951108347e-05 +illusion_1L,sr,104,31.2,omega,upper,6.273563671099474e-06 +illusion_1L,sr,104,31.2,omega,lower,6.273563671099474e-06 +illusion_1L,sr,105,31.5,omega,front,-7.790812812834349e-06 +illusion_1L,sr,105,31.5,omega,upper,2.0805725164160447e-06 +illusion_1L,sr,105,31.5,omega,lower,2.0805725164160447e-06 +illusion_1L,sr,106,31.8,omega,front,7.0936900063700745e-06 +illusion_1L,sr,106,31.8,omega,upper,-1.0312539493059423e-06 +illusion_1L,sr,106,31.8,omega,lower,-1.0312539493059423e-06 +illusion_1L,sr,107,32.1,omega,front,2.905556819632494e-05 +illusion_1L,sr,107,32.1,omega,upper,-9.684771416220965e-06 +illusion_1L,sr,107,32.1,omega,lower,-9.684771416220965e-06 +illusion_1L,sr,108,32.4,omega,front,4.151267150765255e-05 +illusion_1L,sr,108,32.4,omega,upper,-1.2132895933695473e-05 +illusion_1L,sr,108,32.4,omega,lower,-1.2132895933695473e-05 +illusion_1L,sr,109,32.7,omega,front,5.708553328776712e-05 +illusion_1L,sr,109,32.7,omega,upper,-1.7889246706327236e-05 +illusion_1L,sr,109,32.7,omega,lower,-1.7889246706327236e-05 +illusion_1L,sr,110,33.0,omega,front,7.555986964396765e-05 +illusion_1L,sr,110,33.0,omega,upper,-2.70811892604151e-05 +illusion_1L,sr,110,33.0,omega,lower,-2.70811892604151e-05 +illusion_1L,sr,111,33.3,omega,front,8.086317874489435e-05 +illusion_1L,sr,111,33.3,omega,upper,-2.80784473723434e-05 +illusion_1L,sr,111,33.3,omega,lower,-2.80784473723434e-05 +illusion_1L,sr,112,33.6,omega,front,8.621670765230454e-05 +illusion_1L,sr,112,33.6,omega,upper,-3.0735466187852695e-05 +illusion_1L,sr,112,33.6,omega,lower,-3.0735466187852695e-05 +illusion_1L,sr,113,33.9,omega,front,8.739714116730495e-05 +illusion_1L,sr,113,33.9,omega,upper,-3.202690120111575e-05 +illusion_1L,sr,113,33.9,omega,lower,-3.202690120111575e-05 +illusion_1L,sr,114,34.2,omega,front,7.997285506579993e-05 +illusion_1L,sr,114,34.2,omega,upper,-2.8645570094805728e-05 +illusion_1L,sr,114,34.2,omega,lower,-2.8645570094805728e-05 +illusion_1L,sr,115,34.5,omega,front,7.743031336888626e-05 +illusion_1L,sr,115,34.5,omega,upper,-3.0378625079213392e-05 +illusion_1L,sr,115,34.5,omega,lower,-3.0378625079213392e-05 +illusion_1L,sr,116,34.8,omega,front,6.589474884447409e-05 +illusion_1L,sr,116,34.8,omega,upper,-2.6744010894857902e-05 +illusion_1L,sr,116,34.8,omega,lower,-2.6744010894857902e-05 +illusion_1L,sr,117,35.1,omega,front,5.396378586114772e-05 +illusion_1L,sr,117,35.1,omega,upper,-2.3802418004447503e-05 +illusion_1L,sr,117,35.1,omega,lower,-2.3802418004447503e-05 +illusion_1L,sr,118,35.4,omega,front,4.419971076868042e-05 +illusion_1L,sr,118,35.4,omega,upper,-2.3106251951327818e-05 +illusion_1L,sr,118,35.4,omega,lower,-2.3106251951327818e-05 +illusion_1L,sr,119,35.7,omega,front,2.7900178131991803e-05 +illusion_1L,sr,119,35.7,omega,upper,-1.7869615270847825e-05 +illusion_1L,sr,119,35.7,omega,lower,-1.7869615270847825e-05 +illusion_1L,sr,120,36.0,omega,front,1.1845557420987787e-05 +illusion_1L,sr,120,36.0,omega,upper,-1.2689440310312575e-05 +illusion_1L,sr,120,36.0,omega,lower,-1.2689440310312575e-05 +illusion_1L,sr,121,36.3,omega,front,-5.481741629315348e-06 +illusion_1L,sr,121,36.3,omega,upper,-6.156140665846531e-06 +illusion_1L,sr,121,36.3,omega,lower,-6.156140665846531e-06 +illusion_1L,sr,122,36.6,omega,front,-2.6211891962805052e-05 +illusion_1L,sr,122,36.6,omega,upper,3.5475158561101145e-06 +illusion_1L,sr,122,36.6,omega,lower,3.5475158561101145e-06 +illusion_1L,sr,123,36.9,omega,front,-4.12477406260487e-05 +illusion_1L,sr,123,36.9,omega,upper,9.989967335911863e-06 +illusion_1L,sr,123,36.9,omega,lower,9.989967335911863e-06 +illusion_1L,sr,124,37.2,omega,front,-5.422941898225078e-05 +illusion_1L,sr,124,37.2,omega,upper,1.6042698260410917e-05 +illusion_1L,sr,124,37.2,omega,lower,1.6042698260410917e-05 +illusion_1L,sr,125,37.5,omega,front,-6.476506876146052e-05 +illusion_1L,sr,125,37.5,omega,upper,2.1593519408721757e-05 +illusion_1L,sr,125,37.5,omega,lower,2.1593519408721757e-05 +illusion_1L,sr,126,37.8,omega,front,-6.772449542710717e-05 +illusion_1L,sr,126,37.8,omega,upper,2.302363815470422e-05 +illusion_1L,sr,126,37.8,omega,lower,2.302363815470422e-05 +illusion_1L,sr,127,38.1,omega,front,-7.049305741891957e-05 +illusion_1L,sr,127,38.1,omega,upper,2.577868693077759e-05 +illusion_1L,sr,127,38.1,omega,lower,2.577868693077759e-05 +illusion_1L,sr,128,38.4,omega,front,-6.956525199328705e-05 +illusion_1L,sr,128,38.4,omega,upper,2.7265703625878913e-05 +illusion_1L,sr,128,38.4,omega,lower,2.7265703625878913e-05 +illusion_1L,sr,129,38.7,omega,front,-6.302242737582453e-05 +illusion_1L,sr,129,38.7,omega,upper,2.5902381554489576e-05 +illusion_1L,sr,129,38.7,omega,lower,2.5902381554489576e-05 +illusion_1L,sr,130,39.0,omega,front,-5.930774944491679e-05 +illusion_1L,sr,130,39.0,omega,upper,2.7700843375441447e-05 +illusion_1L,sr,130,39.0,omega,lower,2.7700843375441447e-05 +illusion_1L,sr,131,39.3,omega,front,-4.8964564783798065e-05 +illusion_1L,sr,131,39.3,omega,upper,2.540602924936743e-05 +illusion_1L,sr,131,39.3,omega,lower,2.540602924936743e-05 +illusion_1L,sr,132,39.6,omega,front,-3.636051347587998e-05 +illusion_1L,sr,132,39.6,omega,upper,2.192376144183471e-05 +illusion_1L,sr,132,39.6,omega,lower,2.192376144183471e-05 +illusion_1L,sr,133,39.9,omega,front,-2.319417438944961e-05 +illusion_1L,sr,133,39.9,omega,upper,1.820599699151342e-05 +illusion_1L,sr,133,39.9,omega,lower,1.820599699151342e-05 +illusion_1L,sr,134,40.2,omega,front,-2.283755562944821e-06 +illusion_1L,sr,134,40.2,omega,upper,8.677938074481937e-06 +illusion_1L,sr,134,40.2,omega,lower,8.677938074481937e-06 +illusion_1L,sr,135,40.5,omega,front,1.4784183896702255e-05 +illusion_1L,sr,135,40.5,omega,upper,1.6080501851937697e-06 +illusion_1L,sr,135,40.5,omega,lower,1.6080501851937697e-06 +illusion_1L,sr,136,40.8,omega,front,3.1062102053338594e-05 +illusion_1L,sr,136,40.8,omega,upper,-5.504454613302207e-06 +illusion_1L,sr,136,40.8,omega,lower,-5.504454613302207e-06 +illusion_1L,sr,137,41.1,omega,front,5.005193636726843e-05 +illusion_1L,sr,137,41.1,omega,upper,-1.5422413938377155e-05 +illusion_1L,sr,137,41.1,omega,lower,-1.5422413938377155e-05 +illusion_1L,sr,138,41.4,omega,front,5.8548248823075204e-05 +illusion_1L,sr,138,41.4,omega,upper,-1.865231498397062e-05 +illusion_1L,sr,138,41.4,omega,lower,-1.865231498397062e-05 +illusion_1L,sr,139,41.7,omega,front,6.808980689483275e-05 +illusion_1L,sr,139,41.7,omega,upper,-2.3853935764777125e-05 +illusion_1L,sr,139,41.7,omega,lower,-2.3853935764777125e-05 +illusion_1L,sr,140,42.0,omega,front,7.32770194528519e-05 +illusion_1L,sr,140,42.0,omega,upper,-2.7144576199788494e-05 +illusion_1L,sr,140,42.0,omega,lower,-2.7144576199788494e-05 +illusion_1L,sr,141,42.3,omega,front,6.938196693785794e-05 +illusion_1L,sr,141,42.3,omega,upper,-2.5135961210573934e-05 +illusion_1L,sr,141,42.3,omega,lower,-2.5135961210573934e-05 +illusion_1L,sr,142,42.6,omega,front,6.926104303899846e-05 +illusion_1L,sr,142,42.6,omega,upper,-2.721157547894138e-05 +illusion_1L,sr,142,42.6,omega,lower,-2.721157547894138e-05 +illusion_1L,sr,143,42.9,omega,front,5.5074009357043015e-05 +illusion_1L,sr,143,42.9,omega,upper,-2.0122215118811814e-05 +illusion_1L,sr,143,42.9,omega,lower,-2.0122215118811814e-05 +illusion_1L,sr,144,43.2,omega,front,4.0153683170517377e-05 +illusion_1L,sr,144,43.2,omega,upper,-1.3571631200784626e-05 +illusion_1L,sr,144,43.2,omega,lower,-1.3571631200784626e-05 +illusion_1L,sr,145,43.5,omega,front,3.592073335638459e-05 +illusion_1L,sr,145,43.5,omega,upper,-1.566961390540484e-05 +illusion_1L,sr,145,43.5,omega,lower,-1.566961390540484e-05 +illusion_1L,sr,146,43.8,omega,front,1.8028823136112762e-05 +illusion_1L,sr,146,43.8,omega,upper,-8.210857372857082e-06 +illusion_1L,sr,146,43.8,omega,lower,-8.210857372857082e-06 +illusion_1L,sr,147,44.1,omega,front,2.3711052114168753e-06 +illusion_1L,sr,147,44.1,omega,upper,-2.5973758484196425e-06 +illusion_1L,sr,147,44.1,omega,lower,-2.5973758484196425e-06 +illusion_1L,sr,148,44.4,omega,front,-5.871827554597247e-07 +illusion_1L,sr,148,44.4,omega,upper,-6.210086544410232e-06 +illusion_1L,sr,148,44.4,omega,lower,-6.210086544410232e-06 +illusion_1L,sr,149,44.7,omega,front,-2.021371075992984e-05 +illusion_1L,sr,149,44.7,omega,upper,2.8578483781685654e-06 +illusion_1L,sr,149,44.7,omega,lower,2.8578483781685654e-06 +illusion_1L,sr,150,45.0,omega,front,-3.2138941095200585e-05 +illusion_1L,sr,150,45.0,omega,upper,6.987012700815469e-06 +illusion_1L,sr,150,45.0,omega,lower,6.987012700815469e-06 +illusion_1L,sr,151,45.3,omega,front,-3.815912559144888e-05 +illusion_1L,sr,151,45.3,omega,upper,7.638679381789768e-06 +illusion_1L,sr,151,45.3,omega,lower,7.638679381789768e-06 +illusion_1L,sr,152,45.6,omega,front,-5.665660508595329e-05 +illusion_1L,sr,152,45.6,omega,upper,1.8593111620984136e-05 +illusion_1L,sr,152,45.6,omega,lower,1.8593111620984136e-05 +illusion_1L,sr,153,45.9,omega,front,-5.6288471459353606e-05 +illusion_1L,sr,153,45.9,omega,upper,1.6815132601758557e-05 +illusion_1L,sr,153,45.9,omega,lower,1.6815132601758557e-05 +illusion_1L,sr,154,46.2,omega,front,-5.241361319968101e-05 +illusion_1L,sr,154,46.2,omega,upper,1.3751852664813346e-05 +illusion_1L,sr,154,46.2,omega,lower,1.3751852664813346e-05 +illusion_1L,sr,155,46.5,omega,front,-5.791483312851474e-05 +illusion_1L,sr,155,46.5,omega,upper,1.8882169181366724e-05 +illusion_1L,sr,155,46.5,omega,lower,1.8882169181366724e-05 +illusion_1L,sr,156,46.8,omega,front,-4.439798253269185e-05 +illusion_1L,sr,156,46.8,omega,upper,1.129795041725317e-05 +illusion_1L,sr,156,46.8,omega,lower,1.129795041725317e-05 +illusion_1L,sr,157,47.1,omega,front,-3.6607863729308206e-05 +illusion_1L,sr,157,47.1,omega,upper,9.032997921558824e-06 +illusion_1L,sr,157,47.1,omega,lower,9.032997921558824e-06 +illusion_1L,sr,158,47.4,omega,front,-3.539444742553161e-05 +illusion_1L,sr,158,47.4,omega,upper,1.2615923581399332e-05 +illusion_1L,sr,158,47.4,omega,lower,1.2615923581399332e-05 +illusion_1L,sr,159,47.7,omega,front,-1.7751215099100684e-05 +illusion_1L,sr,159,47.7,omega,upper,4.748162798019085e-06 +illusion_1L,sr,159,47.7,omega,lower,4.748162798019085e-06 +illusion_1L,sr,160,48.0,omega,front,-1.336781685650372e-05 +illusion_1L,sr,160,48.0,omega,upper,7.05710281771917e-06 +illusion_1L,sr,160,48.0,omega,lower,7.05710281771917e-06 +illusion_1L,sr,161,48.3,omega,front,-9.94700079152912e-06 +illusion_1L,sr,161,48.3,omega,upper,1.0133030761644725e-05 +illusion_1L,sr,161,48.3,omega,lower,1.0133030761644725e-05 +illusion_1L,sr,162,48.6,omega,front,7.455783557806413e-06 +illusion_1L,sr,162,48.6,omega,upper,2.6986634841809006e-06 +illusion_1L,sr,162,48.6,omega,lower,2.6986634841809006e-06 +illusion_1L,sr,163,48.9,omega,front,1.6068518399977895e-05 +illusion_1L,sr,163,48.9,omega,upper,1.2436788968767445e-06 +illusion_1L,sr,163,48.9,omega,lower,1.2436788968767445e-06 +illusion_1L,sr,164,49.2,omega,front,2.871253712596458e-05 +illusion_1L,sr,164,49.2,omega,upper,-3.856235512444129e-06 +illusion_1L,sr,164,49.2,omega,lower,-3.856235512444129e-06 +illusion_1L,sr,165,49.5,omega,front,4.3148980138045664e-05 +illusion_1L,sr,165,49.5,omega,upper,-1.1078071903225622e-05 +illusion_1L,sr,165,49.5,omega,lower,-1.1078071903225622e-05 +illusion_1L,sr,166,49.8,omega,front,4.3294539027157954e-05 +illusion_1L,sr,166,49.8,omega,upper,-8.865780791999337e-06 +illusion_1L,sr,166,49.8,omega,lower,-8.865780791999337e-06 +illusion_1L,sr,167,50.1,omega,front,5.032569660147868e-05 +illusion_1L,sr,167,50.1,omega,upper,-1.2767481769670568e-05 +illusion_1L,sr,167,50.1,omega,lower,-1.2767481769670568e-05 +illusion_1L,sr,168,50.4,omega,front,5.269055056072218e-05 +illusion_1L,sr,168,50.4,omega,upper,-1.4462678651884186e-05 +illusion_1L,sr,168,50.4,omega,lower,-1.4462678651884186e-05 +illusion_1L,sr,169,50.7,omega,front,4.431673968601328e-05 +illusion_1L,sr,169,50.7,omega,upper,-9.536068390815326e-06 +illusion_1L,sr,169,50.7,omega,lower,-9.536068390815326e-06 +illusion_1L,sr,170,51.0,omega,front,4.259105933144249e-05 +illusion_1L,sr,170,51.0,omega,upper,-1.0643310383166363e-05 +illusion_1L,sr,170,51.0,omega,lower,-1.0643310383166363e-05 +illusion_1L,sr,171,51.3,omega,front,3.573803293461443e-05 +illusion_1L,sr,171,51.3,omega,upper,-9.0561785866701e-06 +illusion_1L,sr,171,51.3,omega,lower,-9.0561785866701e-06 +illusion_1L,sr,172,51.6,omega,front,2.5889860154128634e-05 +illusion_1L,sr,172,51.6,omega,upper,-6.144913244124258e-06 +illusion_1L,sr,172,51.6,omega,lower,-6.144913244124258e-06 +illusion_1L,sr,173,51.9,omega,front,2.3328016338474753e-05 +illusion_1L,sr,173,51.9,omega,upper,-9.198254760038605e-06 +illusion_1L,sr,173,51.9,omega,lower,-9.198254760038605e-06 +illusion_1L,sr,174,52.2,omega,front,1.479007496181968e-05 +illusion_1L,sr,174,52.2,omega,upper,-8.200671508091783e-06 +illusion_1L,sr,174,52.2,omega,lower,-8.200671508091783e-06 +illusion_1L,sr,175,52.5,omega,front,6.963067749028084e-06 +illusion_1L,sr,175,52.5,omega,upper,-7.75632984107673e-06 +illusion_1L,sr,175,52.5,omega,lower,-7.75632984107673e-06 +illusion_1L,sr,176,52.8,omega,front,1.3234098008090347e-07 +illusion_1L,sr,176,52.8,omega,upper,-7.804999527445972e-06 +illusion_1L,sr,176,52.8,omega,lower,-7.804999527445972e-06 +illusion_1L,sr,177,53.1,omega,front,-1.6081142586867153e-05 +illusion_1L,sr,177,53.1,omega,upper,-4.853338086444059e-07 +illusion_1L,sr,177,53.1,omega,lower,-4.853338086444059e-07 +illusion_1L,sr,178,53.4,omega,front,-2.5703507074990515e-05 +illusion_1L,sr,178,53.4,omega,upper,2.623926072280493e-06 +illusion_1L,sr,178,53.4,omega,lower,2.623926072280493e-06 +illusion_1L,sr,179,53.7,omega,front,-3.201364514405447e-05 +illusion_1L,sr,179,53.7,omega,upper,4.1150753980908135e-06 +illusion_1L,sr,179,53.7,omega,lower,4.1150753980908135e-06 +illusion_1L,sr,180,54.0,omega,front,-4.104401621462854e-05 +illusion_1L,sr,180,54.0,omega,upper,8.579560293935155e-06 +illusion_1L,sr,180,54.0,omega,lower,8.579560293935155e-06 +illusion_1L,sr,181,54.3,omega,front,-4.340374688393302e-05 +illusion_1L,sr,181,54.3,omega,upper,9.219183611784352e-06 +illusion_1L,sr,181,54.3,omega,lower,9.219183611784352e-06 +illusion_1L,sr,182,54.6,omega,front,-4.292299899634526e-05 +illusion_1L,sr,182,54.6,omega,upper,8.904007196409609e-06 +illusion_1L,sr,182,54.6,omega,lower,8.904007196409609e-06 +illusion_1L,sr,183,54.9,omega,front,-4.2196304188110295e-05 +illusion_1L,sr,183,54.9,omega,upper,9.580204462436397e-06 +illusion_1L,sr,183,54.9,omega,lower,9.580204462436397e-06 +illusion_1L,sr,184,55.2,omega,front,-3.7327040049933425e-05 +illusion_1L,sr,184,55.2,omega,upper,8.339197170531866e-06 +illusion_1L,sr,184,55.2,omega,lower,8.339197170531866e-06 +illusion_1L,sr,185,55.5,omega,front,-3.2194458418820655e-05 +illusion_1L,sr,185,55.5,omega,upper,7.90510054352763e-06 +illusion_1L,sr,185,55.5,omega,lower,7.90510054352763e-06 +illusion_1L,sr,186,55.8,omega,front,-2.5840493137775332e-05 +illusion_1L,sr,186,55.8,omega,upper,7.3975182413718935e-06 +illusion_1L,sr,186,55.8,omega,lower,7.3975182413718935e-06 +illusion_1L,sr,187,56.1,omega,front,-2.122210045002777e-05 +illusion_1L,sr,187,56.1,omega,upper,8.751380917806154e-06 +illusion_1L,sr,187,56.1,omega,lower,8.751380917806154e-06 +illusion_1L,sr,188,56.4,omega,front,-1.6073111598544692e-05 +illusion_1L,sr,188,56.4,omega,upper,1.0003708741570824e-05 +illusion_1L,sr,188,56.4,omega,lower,1.0003708741570824e-05 +illusion_1L,sr,189,56.7,omega,front,-7.3809800755309744e-06 +illusion_1L,sr,189,56.7,omega,upper,8.674850828651343e-06 +illusion_1L,sr,189,56.7,omega,lower,8.674850828651343e-06 +illusion_1L,sr,190,57.0,omega,front,2.4078261379431935e-06 +illusion_1L,sr,190,57.0,omega,upper,6.302469420156244e-06 +illusion_1L,sr,190,57.0,omega,lower,6.302469420156244e-06 +illusion_1L,sr,191,57.3,omega,front,1.5544221933936932e-05 +illusion_1L,sr,191,57.3,omega,upper,1.0465154668724482e-06 +illusion_1L,sr,191,57.3,omega,lower,1.0465154668724482e-06 +illusion_1L,sr,192,57.6,omega,front,2.5198824633613607e-05 +illusion_1L,sr,192,57.6,omega,upper,-2.2469684677906e-06 +illusion_1L,sr,192,57.6,omega,lower,-2.2469684677906e-06 +illusion_1L,sr,193,57.9,omega,front,2.9201788016046046e-05 +illusion_1L,sr,193,57.9,omega,upper,-2.178060172833944e-06 +illusion_1L,sr,193,57.9,omega,lower,-2.178060172833944e-06 +illusion_1L,sr,194,58.2,omega,front,3.9120502482791336e-05 +illusion_1L,sr,194,58.2,omega,upper,-7.403987127766396e-06 +illusion_1L,sr,194,58.2,omega,lower,-7.403987127766396e-06 +illusion_1L,sr,195,58.5,omega,front,4.1664094988433446e-05 +illusion_1L,sr,195,58.5,omega,upper,-8.233077732845221e-06 +illusion_1L,sr,195,58.5,omega,lower,-8.233077732845221e-06 +illusion_1L,sr,196,58.8,omega,front,3.6027537409219765e-05 +illusion_1L,sr,196,58.8,omega,upper,-4.160672397757332e-06 +illusion_1L,sr,196,58.8,omega,lower,-4.160672397757332e-06 +illusion_1L,sr,197,59.1,omega,front,4.105041382406582e-05 +illusion_1L,sr,197,59.1,omega,upper,-9.084008213200609e-06 +illusion_1L,sr,197,59.1,omega,lower,-9.084008213200609e-06 +illusion_1L,sr,198,59.4,omega,front,3.506539181206594e-05 +illusion_1L,sr,198,59.4,omega,upper,-6.979672699016469e-06 +illusion_1L,sr,198,59.4,omega,lower,-6.979672699016469e-06 +illusion_1L,sr,199,59.7,omega,front,2.7428126102734956e-05 +illusion_1L,sr,199,59.7,omega,upper,-4.647733698294292e-06 +illusion_1L,sr,199,59.7,omega,lower,-4.647733698294292e-06 +illusion_1L,sr,0,0.0,target_force,target_cd,0.005671756807714701 +illusion_1L,sr,0,0.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,sr,1,0.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,sr,1,0.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,sr,2,0.6,target_force,target_cd,0.005563950631767511 +illusion_1L,sr,2,0.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,sr,3,0.9,target_force,target_cd,0.005538197699934244 +illusion_1L,sr,3,0.9,target_force,target_cl,0.000727235630620271 +illusion_1L,sr,4,1.2,target_force,target_cd,0.005544575862586498 +illusion_1L,sr,4,1.2,target_force,target_cl,0.001170451520010829 +illusion_1L,sr,5,1.5,target_force,target_cd,0.005573783535510302 +illusion_1L,sr,5,1.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,sr,6,1.8,target_force,target_cd,0.005636546760797501 +illusion_1L,sr,6,1.8,target_force,target_cl,0.001829120796173811 +illusion_1L,sr,7,2.1,target_force,target_cd,0.005716180428862572 +illusion_1L,sr,7,2.1,target_force,target_cl,0.00200505624525249 +illusion_1L,sr,8,2.4,target_force,target_cd,0.005756895989179611 +illusion_1L,sr,8,2.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,sr,9,2.7,target_force,target_cd,0.005743067711591721 +illusion_1L,sr,9,2.7,target_force,target_cl,0.001995726488530636 +illusion_1L,sr,10,3.0,target_force,target_cd,0.005714329890906811 +illusion_1L,sr,10,3.0,target_force,target_cl,0.001809444511309266 +illusion_1L,sr,11,3.3,target_force,target_cd,0.005683825351297855 +illusion_1L,sr,11,3.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,sr,12,3.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,sr,12,3.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,sr,13,3.9,target_force,target_cd,0.005594110582023859 +illusion_1L,sr,13,3.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,sr,14,4.2,target_force,target_cd,0.005593768786638975 +illusion_1L,sr,14,4.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,sr,15,4.5,target_force,target_cd,0.005601159762591124 +illusion_1L,sr,15,4.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,sr,16,4.8,target_force,target_cd,0.005579833872616291 +illusion_1L,sr,16,4.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,sr,17,5.1,target_force,target_cd,0.005568155087530613 +illusion_1L,sr,17,5.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,sr,18,5.4,target_force,target_cd,0.005600422155112028 +illusion_1L,sr,18,5.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,sr,19,5.7,target_force,target_cd,0.005640667863190174 +illusion_1L,sr,19,5.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,sr,20,6.0,target_force,target_cd,0.005670505575835705 +illusion_1L,sr,20,6.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,sr,21,6.3,target_force,target_cd,0.005723041016608477 +illusion_1L,sr,21,6.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,sr,22,6.6,target_force,target_cd,0.005777770187705755 +illusion_1L,sr,22,6.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,sr,23,6.9,target_force,target_cd,0.005763606168329716 +illusion_1L,sr,23,6.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,sr,24,7.2,target_force,target_cd,0.005690249614417553 +illusion_1L,sr,24,7.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,sr,25,7.5,target_force,target_cd,0.005629390478134155 +illusion_1L,sr,25,7.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,sr,26,7.8,target_force,target_cd,0.005584970116615295 +illusion_1L,sr,26,7.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,sr,27,8.1,target_force,target_cd,0.005531984381377697 +illusion_1L,sr,27,8.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,sr,28,8.4,target_force,target_cd,0.005518179386854172 +illusion_1L,sr,28,8.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,sr,29,8.7,target_force,target_cd,0.005577066447585821 +illusion_1L,sr,29,8.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,sr,30,9.0,target_force,target_cd,0.005638485308736563 +illusion_1L,sr,30,9.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,sr,31,9.3,target_force,target_cd,0.005652999971061945 +illusion_1L,sr,31,9.3,target_force,target_cl,0.001821481972001493 +illusion_1L,sr,32,9.6,target_force,target_cd,0.005672627128660679 +illusion_1L,sr,32,9.6,target_force,target_cl,0.002030503237619996 +illusion_1L,sr,33,9.9,target_force,target_cd,0.005716722924262285 +illusion_1L,sr,33,9.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,sr,34,10.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,sr,34,10.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,sr,35,10.5,target_force,target_cd,0.005700415000319481 +illusion_1L,sr,35,10.5,target_force,target_cl,0.001855533104389906 +illusion_1L,sr,36,10.8,target_force,target_cd,0.00570518197491765 +illusion_1L,sr,36,10.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,sr,37,11.1,target_force,target_cd,0.005713063757866621 +illusion_1L,sr,37,11.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,sr,38,11.4,target_force,target_cd,0.00565308379009366 +illusion_1L,sr,38,11.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,sr,39,11.7,target_force,target_cd,0.005567865911871195 +illusion_1L,sr,39,11.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,sr,40,12.0,target_force,target_cd,0.005537909455597401 +illusion_1L,sr,40,12.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,sr,41,12.3,target_force,target_cd,0.005537074990570545 +illusion_1L,sr,41,12.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,sr,42,12.6,target_force,target_cd,0.005531030707061291 +illusion_1L,sr,42,12.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,sr,43,12.9,target_force,target_cd,0.00557838287204504 +illusion_1L,sr,43,12.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,sr,44,13.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,sr,44,13.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,sr,45,13.5,target_force,target_cd,0.005760743748396635 +illusion_1L,sr,45,13.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,sr,46,13.8,target_force,target_cd,0.005753485951572657 +illusion_1L,sr,46,13.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,sr,47,14.1,target_force,target_cd,0.005740967579185963 +illusion_1L,sr,47,14.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,sr,48,14.4,target_force,target_cd,0.005731895100325346 +illusion_1L,sr,48,14.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,sr,49,14.7,target_force,target_cd,0.00566871277987957 +illusion_1L,sr,49,14.7,target_force,target_cl,-0.0012652967125177383 +illusion_1L,sr,50,15.0,target_force,target_cd,0.005592959467321634 +illusion_1L,sr,50,15.0,target_force,target_cl,-0.0007947873091325164 +illusion_1L,sr,51,15.3,target_force,target_cd,0.0055853561498224735 +illusion_1L,sr,51,15.3,target_force,target_cl,-0.000273875892162323 +illusion_1L,sr,52,15.6,target_force,target_cd,0.0055999187752604485 +illusion_1L,sr,52,15.6,target_force,target_cl,0.000263598543824628 +illusion_1L,sr,53,15.9,target_force,target_cd,0.005566527601331472 +illusion_1L,sr,53,15.9,target_force,target_cl,0.000782874645665288 +illusion_1L,sr,54,16.2,target_force,target_cd,0.005543616600334644 +illusion_1L,sr,54,16.2,target_force,target_cl,0.0012505297781899571 +illusion_1L,sr,55,16.5,target_force,target_cd,0.0055874851532280445 +illusion_1L,sr,55,16.5,target_force,target_cl,0.0016366330673918128 +illusion_1L,sr,56,16.8,target_force,target_cd,0.005633705295622349 +illusion_1L,sr,56,16.8,target_force,target_cl,0.0019166492857038975 +illusion_1L,sr,57,17.1,target_force,target_cd,0.005650329869240522 +illusion_1L,sr,57,17.1,target_force,target_cl,0.002072976902127266 +illusion_1L,sr,58,17.4,target_force,target_cd,0.005705440882593393 +illusion_1L,sr,58,17.4,target_force,target_cl,0.002096022479236126 +illusion_1L,sr,59,17.7,target_force,target_cd,0.005788230337202549 +illusion_1L,sr,59,17.7,target_force,target_cl,0.0019847527146339417 +illusion_1L,sr,60,18.0,target_force,target_cd,0.00579201802611351 +illusion_1L,sr,60,18.0,target_force,target_cl,0.001746693509630859 +illusion_1L,sr,61,18.3,target_force,target_cd,0.005716915708035231 +illusion_1L,sr,61,18.3,target_force,target_cl,0.001397387241013348 +illusion_1L,sr,62,18.6,target_force,target_cd,0.00565684586763382 +illusion_1L,sr,62,18.6,target_force,target_cl,0.0009593489812687039 +illusion_1L,sr,63,18.9,target_force,target_cd,0.005609786603599787 +illusion_1L,sr,63,18.9,target_force,target_cl,0.0004605941940099001 +illusion_1L,sr,64,19.2,target_force,target_cd,0.005531110800802708 +illusion_1L,sr,64,19.2,target_force,target_cl,-6.716222560498863e-05 +illusion_1L,sr,65,19.5,target_force,target_cd,0.005488442722707987 +illusion_1L,sr,65,19.5,target_force,target_cl,-0.0005905209691263735 +illusion_1L,sr,66,19.8,target_force,target_cd,0.0055447774939239025 +illusion_1L,sr,66,19.8,target_force,target_cl,-0.0010764988837763667 +illusion_1L,sr,67,20.1,target_force,target_cd,0.005618898663669825 +illusion_1L,sr,67,20.1,target_force,target_cl,-0.0014945860020816326 +illusion_1L,sr,68,20.4,target_force,target_cd,0.0056407577358186245 +illusion_1L,sr,68,20.4,target_force,target_cl,-0.0018186323577538133 +illusion_1L,sr,69,20.7,target_force,target_cd,0.005669464357197285 +illusion_1L,sr,69,20.7,target_force,target_cl,-0.00202845293097198 +illusion_1L,sr,70,21.0,target_force,target_cd,0.005728682037442923 +illusion_1L,sr,70,21.0,target_force,target_cl,-0.002111055189743638 +illusion_1L,sr,71,21.3,target_force,target_cd,0.005740906111896038 +illusion_1L,sr,71,21.3,target_force,target_cl,-0.0020614201202988625 +illusion_1L,sr,72,21.6,target_force,target_cd,0.00570477731525898 +illusion_1L,sr,72,21.6,target_force,target_cl,-0.0018827876774594188 +illusion_1L,sr,73,21.9,target_force,target_cd,0.005704289767891169 +illusion_1L,sr,73,21.9,target_force,target_cl,-0.0015864415327087045 +illusion_1L,sr,74,22.2,target_force,target_cd,0.005719874519854784 +illusion_1L,sr,74,22.2,target_force,target_cl,-0.0011909975437447429 +illusion_1L,sr,75,22.5,target_force,target_cd,0.005665991455316544 +illusion_1L,sr,75,22.5,target_force,target_cl,-0.0007212489726953208 +illusion_1L,sr,76,22.8,target_force,target_cd,0.005579077173024416 +illusion_1L,sr,76,22.8,target_force,target_cl,-0.00020663297618739307 +illusion_1L,sr,77,23.1,target_force,target_cd,0.0055456943809986115 +illusion_1L,sr,77,23.1,target_force,target_cl,0.00032058797660283744 +illusion_1L,sr,78,23.4,target_force,target_cd,0.005538465455174446 +illusion_1L,sr,78,23.4,target_force,target_cl,0.0008273206767626107 +illusion_1L,sr,79,23.7,target_force,target_cd,0.005518500693142414 +illusion_1L,sr,79,23.7,target_force,target_cl,0.0012816928792744875 +illusion_1L,sr,80,24.0,target_force,target_cd,0.005552514921873808 +illusion_1L,sr,80,24.0,target_force,target_cl,0.0016550382133573294 +illusion_1L,sr,81,24.3,target_force,target_cd,0.005664129741489887 +illusion_1L,sr,81,24.3,target_force,target_cl,0.0019236936932429671 +illusion_1L,sr,82,24.6,target_force,target_cd,0.005749957635998726 +illusion_1L,sr,82,24.6,target_force,target_cl,0.0020704984199255705 +illusion_1L,sr,83,24.9,target_force,target_cd,0.005759336985647678 +illusion_1L,sr,83,24.9,target_force,target_cl,0.0020859010983258486 +illusion_1L,sr,84,25.2,target_force,target_cd,0.005756254307925701 +illusion_1L,sr,84,25.2,target_force,target_cl,0.0019686000887304544 +illusion_1L,sr,85,25.5,target_force,target_cd,0.005749706644564867 +illusion_1L,sr,85,25.5,target_force,target_cl,0.0017256771679967642 +illusion_1L,sr,86,25.8,target_force,target_cd,0.005683912429958582 +illusion_1L,sr,86,25.8,target_force,target_cl,0.0013722052099183202 +illusion_1L,sr,87,26.1,target_force,target_cd,0.005598609335720539 +illusion_1L,sr,87,26.1,target_force,target_cl,0.0009303490514867008 +illusion_1L,sr,88,26.4,target_force,target_cd,0.0055789402686059475 +illusion_1L,sr,88,26.4,target_force,target_cl,0.000428010243922472 +illusion_1L,sr,89,26.7,target_force,target_cd,0.005592026747763157 +illusion_1L,sr,89,26.7,target_force,target_cl,-0.00010290697537129745 +illusion_1L,sr,90,27.0,target_force,target_cd,0.0055693225003778934 +illusion_1L,sr,90,27.0,target_force,target_cl,-0.0006285032723098993 +illusion_1L,sr,91,27.3,target_force,target_cd,0.005552446935325861 +illusion_1L,sr,91,27.3,target_force,target_cl,-0.001115041202865541 +illusion_1L,sr,92,27.6,target_force,target_cd,0.005589765962213278 +illusion_1L,sr,92,27.6,target_force,target_cl,-0.0015311157330870628 +illusion_1L,sr,93,27.9,target_force,target_cd,0.00562874274328351 +illusion_1L,sr,93,27.9,target_force,target_cl,-0.0018496968550607562 +illusion_1L,sr,94,28.2,target_force,target_cd,0.005641409661620855 +illusion_1L,sr,94,28.2,target_force,target_cl,-0.0020499122329056263 +illusion_1L,sr,95,28.5,target_force,target_cd,0.005687114782631397 +illusion_1L,sr,95,28.5,target_force,target_cl,-0.0021184461656957865 +illusion_1L,sr,96,28.8,target_force,target_cd,0.005764052737504244 +illusion_1L,sr,96,28.8,target_force,target_cl,-0.0020504610147327185 +illusion_1L,sr,97,29.1,target_force,target_cd,0.005783763248473406 +illusion_1L,sr,97,29.1,target_force,target_cl,-0.001849970780313015 +illusion_1L,sr,98,29.4,target_force,target_cd,0.005733401048928499 +illusion_1L,sr,98,29.4,target_force,target_cl,-0.0015296366764232516 +illusion_1L,sr,99,29.7,target_force,target_cd,0.005679980851709843 +illusion_1L,sr,99,29.7,target_force,target_cl,-0.001109990873374045 +illusion_1L,sr,100,30.0,target_force,target_cd,0.005627625621855259 +illusion_1L,sr,100,30.0,target_force,target_cl,-0.0006181322387419641 +illusion_1L,sr,101,30.3,target_force,target_cd,0.005549031309783459 +illusion_1L,sr,101,30.3,target_force,target_cl,-8.59768915688619e-05 +illusion_1L,sr,102,30.6,target_force,target_cd,0.005499288439750671 +illusion_1L,sr,102,30.6,target_force,target_cl,0.0004518234054557979 +illusion_1L,sr,103,30.9,target_force,target_cd,0.00553347822278738 +illusion_1L,sr,103,30.9,target_force,target_cl,0.000960158125963062 +illusion_1L,sr,104,31.2,target_force,target_cd,0.0055986023508012295 +illusion_1L,sr,104,31.2,target_force,target_cl,0.0014057770604267716 +illusion_1L,sr,105,31.5,target_force,target_cd,0.005635641980916262 +illusion_1L,sr,105,31.5,target_force,target_cl,0.0017594960518181324 +illusion_1L,sr,106,31.8,target_force,target_cd,0.005671056918799877 +illusion_1L,sr,106,31.8,target_force,target_cl,0.0019981369841843843 +illusion_1L,sr,107,32.1,target_force,target_cd,0.005717759020626545 +illusion_1L,sr,107,32.1,target_force,target_cl,0.002106070751324296 +illusion_1L,sr,108,32.4,target_force,target_cd,0.005728086922317743 +illusion_1L,sr,108,32.4,target_force,target_cl,0.002076256787404418 +illusion_1L,sr,109,32.7,target_force,target_cd,0.005702213384211063 +illusion_1L,sr,109,32.7,target_force,target_cl,0.0019107060506939888 +illusion_1L,sr,110,33.0,target_force,target_cd,0.005696525331586599 +illusion_1L,sr,110,33.0,target_force,target_cl,0.0016203367849811912 +illusion_1L,sr,111,33.3,target_force,target_cd,0.005705347750335932 +illusion_1L,sr,111,33.3,target_force,target_cl,0.0012242335360497236 +illusion_1L,sr,112,33.6,target_force,target_cd,0.0056749628856778145 +illusion_1L,sr,112,33.6,target_force,target_cl,0.0007483611116185784 +illusion_1L,sr,113,33.9,target_force,target_cd,0.005616396199911833 +illusion_1L,sr,113,33.9,target_force,target_cl,0.00022382187307812274 +illusion_1L,sr,114,34.2,target_force,target_cd,0.005577105097472668 +illusion_1L,sr,114,34.2,target_force,target_cl,-0.00031522029894404113 +illusion_1L,sr,115,34.5,target_force,target_cd,0.005551840178668499 +illusion_1L,sr,115,34.5,target_force,target_cl,-0.0008338077459484339 +illusion_1L,sr,116,34.8,target_force,target_cd,0.0055290330201387405 +illusion_1L,sr,116,34.8,target_force,target_cl,-0.0012984927743673325 +illusion_1L,sr,117,35.1,target_force,target_cd,0.005548518151044846 +illusion_1L,sr,117,35.1,target_force,target_cl,-0.0016795200062915683 +illusion_1L,sr,118,35.4,target_force,target_cd,0.00562577648088336 +illusion_1L,sr,118,35.4,target_force,target_cl,-0.001952742924913764 +illusion_1L,sr,119,35.7,target_force,target_cd,0.005705163814127445 +illusion_1L,sr,119,35.7,target_force,target_cl,-0.0021011470817029476 +illusion_1L,sr,120,36.0,target_force,target_cd,0.005744705442339182 +illusion_1L,sr,120,36.0,target_force,target_cl,-0.0021158847957849503 +illusion_1L,sr,121,36.3,target_force,target_cd,0.005756988190114498 +illusion_1L,sr,121,36.3,target_force,target_cl,-0.0019967579282820225 +illusion_1L,sr,122,36.6,target_force,target_cd,0.005744813941419125 +illusion_1L,sr,122,36.6,target_force,target_cl,-0.0017521297559142113 +illusion_1L,sr,123,36.9,target_force,target_cd,0.005693688523024321 +illusion_1L,sr,123,36.9,target_force,target_cl,-0.001398277236148715 +illusion_1L,sr,124,37.2,target_force,target_cd,0.005629749968647957 +illusion_1L,sr,124,37.2,target_force,target_cl,-0.0009582436759956181 +illusion_1L,sr,125,37.5,target_force,target_cd,0.005596959963440895 +illusion_1L,sr,125,37.5,target_force,target_cl,-0.00046027303324081004 +illusion_1L,sr,126,37.8,target_force,target_cd,0.005591437220573425 +illusion_1L,sr,126,37.8,target_force,target_cl,6.405806198017672e-05 +illusion_1L,sr,127,38.1,target_force,target_cd,0.005585479084402323 +illusion_1L,sr,127,38.1,target_force,target_cl,0.0005818844656459987 +illusion_1L,sr,128,38.4,target_force,target_cd,0.005581559147685766 +illusion_1L,sr,128,38.4,target_force,target_cl,0.0010611350880935788 +illusion_1L,sr,129,38.7,target_force,target_cd,0.005591227672994137 +illusion_1L,sr,129,38.7,target_force,target_cl,0.0014725204091519117 +illusion_1L,sr,130,39.0,target_force,target_cd,0.0056059095077216625 +illusion_1L,sr,130,39.0,target_force,target_cl,0.0017913009505718946 +illusion_1L,sr,131,39.3,target_force,target_cd,0.005624179262667894 +illusion_1L,sr,131,39.3,target_force,target_cl,0.0019987314008176327 +illusion_1L,sr,132,39.6,target_force,target_cd,0.005661684088408947 +illusion_1L,sr,132,39.6,target_force,target_cl,0.0020831020083278418 +illusion_1L,sr,133,39.9,target_force,target_cd,0.005714363418519497 +illusion_1L,sr,133,39.9,target_force,target_cl,0.0020403247326612473 +illusion_1L,sr,134,40.2,target_force,target_cd,0.005751916207373142 +illusion_1L,sr,134,40.2,target_force,target_cl,0.001874040812253952 +illusion_1L,sr,135,40.5,target_force,target_cd,0.005752751603722572 +illusion_1L,sr,135,40.5,target_force,target_cl,0.0015952644171193242 +illusion_1L,sr,136,40.8,target_force,target_cd,0.005716994404792786 +illusion_1L,sr,136,40.8,target_force,target_cl,0.0012215939350426197 +illusion_1L,sr,137,41.1,target_force,target_cd,0.005655428394675255 +illusion_1L,sr,137,41.1,target_force,target_cl,0.0007760541047900915 +illusion_1L,sr,138,41.4,target_force,target_cd,0.005588269792497158 +illusion_1L,sr,138,41.4,target_force,target_cl,0.000285650254227221 +illusion_1L,sr,139,41.7,target_force,target_cd,0.005542092490941286 +illusion_1L,sr,139,41.7,target_force,target_cl,-0.00022027546947356313 +illusion_1L,sr,140,42.0,target_force,target_cd,0.005534210707992315 +illusion_1L,sr,140,42.0,target_force,target_cl,-0.0007117835339158773 +illusion_1L,sr,141,42.3,target_force,target_cd,0.005564122460782528 +illusion_1L,sr,141,42.3,target_force,target_cl,-0.0011600726284086704 +illusion_1L,sr,142,42.6,target_force,target_cd,0.005614774767309427 +illusion_1L,sr,142,42.6,target_force,target_cl,-0.0015391155611723661 +illusion_1L,sr,143,42.9,target_force,target_cd,0.005659830756485462 +illusion_1L,sr,143,42.9,target_force,target_cl,-0.0018271084409207106 +illusion_1L,sr,144,43.2,target_force,target_cd,0.005684380419552326 +illusion_1L,sr,144,43.2,target_force,target_cl,-0.002007660223171115 +illusion_1L,sr,145,43.5,target_force,target_cd,0.005696034524589777 +illusion_1L,sr,145,43.5,target_force,target_cl,-0.0020706653594970703 +illusion_1L,sr,146,43.8,target_force,target_cd,0.005703396163880825 +illusion_1L,sr,146,43.8,target_force,target_cl,-0.0020128197502344847 +illusion_1L,sr,147,44.1,target_force,target_cd,0.005702631548047066 +illusion_1L,sr,147,44.1,target_force,target_cl,-0.0018377614906057715 +illusion_1L,sr,148,44.4,target_force,target_cd,0.00569628830999136 +illusion_1L,sr,148,44.4,target_force,target_cl,-0.001555830822326243 +illusion_1L,sr,149,44.7,target_force,target_cd,0.005691180936992168 +illusion_1L,sr,149,44.7,target_force,target_cl,-0.0011834697797894478 +illusion_1L,sr,150,45.0,target_force,target_cd,0.005671756807714701 +illusion_1L,sr,150,45.0,target_force,target_cl,-0.0007422934286296368 +illusion_1L,sr,151,45.3,target_force,target_cd,0.0056210970506072044 +illusion_1L,sr,151,45.3,target_force,target_cl,-0.0002578797866590321 +illusion_1L,sr,152,45.6,target_force,target_cd,0.005563950631767511 +illusion_1L,sr,152,45.6,target_force,target_cl,0.00024165630748029798 +illusion_1L,sr,153,45.9,target_force,target_cd,0.005538197699934244 +illusion_1L,sr,153,45.9,target_force,target_cl,0.000727235630620271 +illusion_1L,sr,154,46.2,target_force,target_cd,0.005544575862586498 +illusion_1L,sr,154,46.2,target_force,target_cl,0.001170451520010829 +illusion_1L,sr,155,46.5,target_force,target_cd,0.005573783535510302 +illusion_1L,sr,155,46.5,target_force,target_cl,0.0015451861545443535 +illusion_1L,sr,156,46.8,target_force,target_cd,0.005636546760797501 +illusion_1L,sr,156,46.8,target_force,target_cl,0.001829120796173811 +illusion_1L,sr,157,47.1,target_force,target_cd,0.005716180428862572 +illusion_1L,sr,157,47.1,target_force,target_cl,0.00200505624525249 +illusion_1L,sr,158,47.4,target_force,target_cd,0.005756895989179611 +illusion_1L,sr,158,47.4,target_force,target_cl,0.0020619675051420927 +illusion_1L,sr,159,47.7,target_force,target_cd,0.005743067711591721 +illusion_1L,sr,159,47.7,target_force,target_cl,0.001995726488530636 +illusion_1L,sr,160,48.0,target_force,target_cd,0.005714329890906811 +illusion_1L,sr,160,48.0,target_force,target_cl,0.001809444511309266 +illusion_1L,sr,161,48.3,target_force,target_cd,0.005683825351297855 +illusion_1L,sr,161,48.3,target_force,target_cl,0.0015134024433791637 +illusion_1L,sr,162,48.6,target_force,target_cd,0.0056352922692894936 +illusion_1L,sr,162,48.6,target_force,target_cl,0.0011245590867474675 +illusion_1L,sr,163,48.9,target_force,target_cd,0.005594110582023859 +illusion_1L,sr,163,48.9,target_force,target_cl,0.0006656530895270407 +illusion_1L,sr,164,49.2,target_force,target_cd,0.005593768786638975 +illusion_1L,sr,164,49.2,target_force,target_cl,0.00016393783153034747 +illusion_1L,sr,165,49.5,target_force,target_cd,0.005601159762591124 +illusion_1L,sr,165,49.5,target_force,target_cl,-0.0003503881162032485 +illusion_1L,sr,166,49.8,target_force,target_cd,0.005579833872616291 +illusion_1L,sr,166,49.8,target_force,target_cl,-0.0008459693053737283 +illusion_1L,sr,167,50.1,target_force,target_cd,0.005568155087530613 +illusion_1L,sr,167,50.1,target_force,target_cl,-0.001292198314331472 +illusion_1L,sr,168,50.4,target_force,target_cd,0.005600422155112028 +illusion_1L,sr,168,50.4,target_force,target_cl,-0.001661122078076005 +illusion_1L,sr,169,50.7,target_force,target_cd,0.005640667863190174 +illusion_1L,sr,169,50.7,target_force,target_cl,-0.001929230522364378 +illusion_1L,sr,170,51.0,target_force,target_cd,0.005670505575835705 +illusion_1L,sr,170,51.0,target_force,target_cl,-0.0020790090784430504 +illusion_1L,sr,171,51.3,target_force,target_cd,0.005723041016608477 +illusion_1L,sr,171,51.3,target_force,target_cl,-0.002100147772580385 +illusion_1L,sr,172,51.6,target_force,target_cd,0.005777770187705755 +illusion_1L,sr,172,51.6,target_force,target_cl,-0.0019903185311704874 +illusion_1L,sr,173,51.9,target_force,target_cd,0.005763606168329716 +illusion_1L,sr,173,51.9,target_force,target_cl,-0.0017554573714733124 +illusion_1L,sr,174,52.2,target_force,target_cd,0.005690249614417553 +illusion_1L,sr,174,52.2,target_force,target_cl,-0.0014095163205638528 +illusion_1L,sr,175,52.5,target_force,target_cd,0.005629390478134155 +illusion_1L,sr,175,52.5,target_force,target_cl,-0.0009736909996718168 +illusion_1L,sr,176,52.8,target_force,target_cd,0.005584970116615295 +illusion_1L,sr,176,52.8,target_force,target_cl,-0.00047515766345895827 +illusion_1L,sr,177,53.1,target_force,target_cd,0.005531984381377697 +illusion_1L,sr,177,53.1,target_force,target_cl,5.460584725369699e-05 +illusion_1L,sr,178,53.4,target_force,target_cd,0.005518179386854172 +illusion_1L,sr,178,53.4,target_force,target_cl,0.0005818125791847706 +illusion_1L,sr,179,53.7,target_force,target_cd,0.005577066447585821 +illusion_1L,sr,179,53.7,target_force,target_cl,0.0010725450702011585 +illusion_1L,sr,180,54.0,target_force,target_cd,0.005638485308736563 +illusion_1L,sr,180,54.0,target_force,target_cl,0.0014949759934097528 +illusion_1L,sr,181,54.3,target_force,target_cd,0.005652999971061945 +illusion_1L,sr,181,54.3,target_force,target_cl,0.001821481972001493 +illusion_1L,sr,182,54.6,target_force,target_cd,0.005672627128660679 +illusion_1L,sr,182,54.6,target_force,target_cl,0.002030503237619996 +illusion_1L,sr,183,54.9,target_force,target_cd,0.005716722924262285 +illusion_1L,sr,183,54.9,target_force,target_cl,0.0021080211736261845 +illusion_1L,sr,184,55.2,target_force,target_cd,0.0057253409177064896 +illusion_1L,sr,184,55.2,target_force,target_cl,0.0020485445857048035 +illusion_1L,sr,185,55.5,target_force,target_cd,0.005700415000319481 +illusion_1L,sr,185,55.5,target_force,target_cl,0.001855533104389906 +illusion_1L,sr,186,55.8,target_force,target_cd,0.00570518197491765 +illusion_1L,sr,186,55.8,target_force,target_cl,0.0015412241918966174 +illusion_1L,sr,187,56.1,target_force,target_cd,0.005713063757866621 +illusion_1L,sr,187,56.1,target_force,target_cl,0.0011258659651502967 +illusion_1L,sr,188,56.4,target_force,target_cd,0.00565308379009366 +illusion_1L,sr,188,56.4,target_force,target_cl,0.0006364086293615401 +illusion_1L,sr,189,56.7,target_force,target_cd,0.005567865911871195 +illusion_1L,sr,189,56.7,target_force,target_cl,0.00010473776637809351 +illusion_1L,sr,190,57.0,target_force,target_cd,0.005537909455597401 +illusion_1L,sr,190,57.0,target_force,target_cl,-0.0004344300541561097 +illusion_1L,sr,191,57.3,target_force,target_cd,0.005537074990570545 +illusion_1L,sr,191,57.3,target_force,target_cl,-0.000945847132243216 +illusion_1L,sr,192,57.6,target_force,target_cd,0.005531030707061291 +illusion_1L,sr,192,57.6,target_force,target_cl,-0.0013960730284452438 +illusion_1L,sr,193,57.9,target_force,target_cd,0.00557838287204504 +illusion_1L,sr,193,57.9,target_force,target_cl,-0.0017556919483467937 +illusion_1L,sr,194,58.2,target_force,target_cd,0.0056895059533417225 +illusion_1L,sr,194,58.2,target_force,target_cl,-0.0020012580789625645 +illusion_1L,sr,195,58.5,target_force,target_cd,0.005760743748396635 +illusion_1L,sr,195,58.5,target_force,target_cl,-0.002116837538778782 +illusion_1L,sr,196,58.8,target_force,target_cd,0.005753485951572657 +illusion_1L,sr,196,58.8,target_force,target_cl,-0.0020950448233634233 +illusion_1L,sr,197,59.1,target_force,target_cd,0.005740967579185963 +illusion_1L,sr,197,59.1,target_force,target_cl,-0.0019375038100406528 +illusion_1L,sr,198,59.4,target_force,target_cd,0.005731895100325346 +illusion_1L,sr,198,59.4,target_force,target_cl,-0.0016547086415812373 +illusion_1L,sr,199,59.7,target_force,target_cd,0.00566871277987957 +illusion_1L,sr,199,59.7,target_force,target_cl,-0.0012652967125177383 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_manifest.json new file mode 100644 index 0000000..b764ca8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_manifest.json @@ -0,0 +1,16 @@ +{ + "scene": "illusion_1L", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-illusionA-20260718/telemetry/illusion_1L__pysr__f-ae67ae507106__si-600.npz", + "sample_interval": 600, + "conv_len": 36, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150, + "target_forces": 200, + "target_phase": 200 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_wide.csv new file mode 100644 index 0000000..5b698ab --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower,target_forces_target_cd,target_forces_target_cl,target_phase_target_phase +illusion_1L,sr,0,0.0,0.8128896951675415,0.27295929193496704,0.9321024417877197,0.546302855014801,1.1039224863052368,0.3189709782600403,0.0018704429967328906,-7.174687198130414e-05,0.001303856261074543,0.0026286435313522816,0.001375798019580543,-0.003059535287320614,-0.06702279284310067,0.05434859279871335,0.05434859279871335,-0.0006702279284310067,0.0005434859279871334,0.0005434859279871334,0.005671756807714701,-0.0007422934286296368,0 +illusion_1L,sr,1,0.3,0.7723796367645264,0.21021384000778198,0.9313374757766724,0.5450034737586975,1.1593849658966064,0.3316703140735626,0.0018734383629634976,-3.825978274107911e-05,0.0015917026903480291,0.002227679593488574,0.0016470600385218859,-0.002611990086734295,-0.08241633558656292,0.06451124867087857,0.06451124867087857,-0.0008241633558656292,0.0006451124867087857,0.0006451124867087857,0.0056210970506072044,-0.0002578797866590321,1 +illusion_1L,sr,2,0.6,0.7409915924072266,0.13363228738307953,0.9087691307067871,0.49309834837913513,1.2200008630752563,0.3371610939502716,0.0019088381668552756,-5.260654688754585e-06,0.001832360401749611,0.0018895167158916593,0.001861636876128614,-0.002196681220084429,-0.028429060596675472,0.0237425617074173,0.0237425617074173,-0.0002842906059667547,0.00023742561707417302,0.00023742561707417302,0.005563950631767511,0.00024165630748029798,2 +illusion_1L,sr,3,0.9,0.7308571934700012,0.051917023956775665,0.8627607226371765,0.3599072992801666,1.2855759859085083,0.33032065629959106,0.0019396422430872917,1.3578077414422296e-05,0.002022084081545472,0.001574040623381734,0.0020346236415207386,-0.0017652680398896337,0.015877682105807388,-0.010324114221548194,-0.010324114221548194,0.0001587768210580739,-0.00010324114221548194,-0.00010324114221548194,0.005538197699934244,0.000727235630620271,3 +illusion_1L,sr,4,1.2,0.7490007281303406,-0.020728349685668945,0.8035467267036438,0.1421334147453308,1.3485203981399536,0.29828763008117676,0.001965949311852455,2.630227209010627e-05,0.002167304279282689,0.0012944837799295783,0.0021681995131075382,-0.001358864945359528,0.039484248255278215,-0.028613370663743778,-0.028613370663743778,0.00039484248255278214,-0.0002861337066374378,-0.0002861337066374378,0.005544575862586498,0.001170451520010829,4 +illusion_1L,sr,5,1.5,0.7873564958572388,-0.07953356951475143,0.7524595856666565,-0.1243288666009903,1.383505940437317,0.2159450799226761,0.0019923883955925703,3.2993804779835045e-05,0.002280134242027998,0.001063182600773871,0.0022687427699565887,-0.001008457038551569,0.05511846796675569,-0.04075333237701859,-0.04075333237701859,0.0005511846796675569,-0.0004075333237701859,-0.0004075333237701859,0.005573783535510302,0.0015451861545443535,5 +illusion_1L,sr,6,1.8,0.8308911919593811,-0.1318424940109253,0.7333779335021973,-0.36627432703971863,1.3498297929763794,0.060965366661548615,0.0020025824196636677,3.441269655013457e-05,0.002351099392399192,0.000891028146725148,0.0023239152505993843,-0.0007203156710602343,0.057711614206820604,-0.04327202550609269,-0.04327202550609269,0.0005771161420682061,-0.0004327202550609269,-0.0004327202550609269,0.005636546760797501,0.001829120796173811,6 +illusion_1L,sr,7,2.1,0.8754022121429443,-0.1806657463312149,0.7611335515975952,-0.4987647533416748,1.2384228706359863,-0.13657236099243164,0.002012744313105941,3.42043858836405e-05,0.002405600855126977,0.0007704157033003867,0.002354104770347476,-0.0004863958456553519,0.04621742758437736,-0.0355347219507961,-0.0355347219507961,0.0004621742758437736,-0.000355347219507961,-0.000355347219507961,0.005716180428862572,0.00200505624525249,7 +illusion_1L,sr,8,2.4,0.9178608059883118,-0.22222428023815155,0.8150809407234192,-0.5174622535705566,1.0923079252243042,-0.29285481572151184,0.002009723102673888,3.6016517697134987e-05,0.0024411631748080254,0.000688837724737823,0.002353597665205598,-0.0003052414976991713,0.023583223285816704,-0.019967475245594377,-0.019967475245594377,0.00023583223285816705,-0.00019967475245594377,-0.00019967475245594377,0.005756895989179611,0.0020619675051420927,8 +illusion_1L,sr,9,2.7,0.9628998637199402,-0.2563496530056,0.8650445342063904,-0.5107206106185913,0.976986289024353,-0.3570994436740875,0.0020087850280106068,4.434996299096383e-05,0.0024779969826340675,0.0006316133076325059,0.0023450234439224005,-0.000170492785400711,-0.0056179250317343055,-0.00011308894477391611,-0.00011308894477391611,-5.617925031734306e-05,-1.1308894477391612e-06,-1.1308894477391612e-06,0.005743067711591721,0.001995726488530636,9 +illusion_1L,sr,10,3.0,1.0092304944992065,-0.28404155373573303,0.8999271392822266,-0.5175997018814087,0.9040133953094482,-0.3515065908432007,0.002005149843171239,5.9641370171448216e-05,0.0025109953712671995,0.0005860073724761605,0.002327875467017293,-8.011627505766228e-05,-0.02988483605117301,0.01563360404634713,0.01563360404634713,-0.0002988483605117301,0.0001563360404634713,0.0001563360404634713,0.005714329890906811,0.001809444511309266,10 +illusion_1L,sr,11,3.3,1.0574411153793335,-0.30632102489471436,0.923369824886322,-0.5347291231155396,0.8538809418678284,-0.3167727291584015,0.0020004287362098694,7.788607763359323e-05,0.00254509667865932,0.0005437771906144917,0.0023122269194573164,-2.8614678740268573e-05,-0.044114618050397,0.023719993367633363,0.023719993367633363,-0.00044114618050397,0.00023719993367633363,0.00023719993367633363,0.005683825351297855,0.0015134024433791637,11 +illusion_1L,sr,12,3.6,1.1091244220733643,-0.3237028121948242,0.9363011717796326,-0.5524300932884216,0.808786153793335,-0.2685866057872772,0.002001296728849411,9.65657236520201e-05,0.002584136324003339,0.000502799462992698,0.002307125134393573,-1.0593089427857194e-05,-0.05188519919291351,0.02704482135768371,0.02704482135768371,-0.0005188519919291352,0.0002704482135768371,0.0002704482135768371,0.0056352922692894936,0.0011245590867474675,12 +illusion_1L,sr,13,3.9,1.1656627655029297,-0.33553704619407654,0.9344321489334106,-0.5503189563751221,0.7658510208129883,-0.20596157014369965,0.0020005223341286182,0.00011181308218510821,0.0026189011987298727,0.00046504780766554177,0.0023071416653692722,-2.6619163691066206e-05,-0.053635666972389,0.02618731590770107,0.02618731590770107,-0.00053635666972389,0.0002618731590770107,0.0002618731590770107,0.005594110582023859,0.0006656530895270407,13 +illusion_1L,sr,14,4.2,1.2284355163574219,-0.3397369980812073,0.9110795259475708,-0.49480897188186646,0.7325156927108765,-0.1286732405424118,0.001991781173273921,0.0001217948374687694,0.0026360342744737864,0.00043266918510198593,0.0023018205538392067,-7.147523865569383e-05,-0.053893341532890354,0.02468307034871336,0.02468307034871336,-0.0005389334153289036,0.00024683070348713364,0.00024683070348713364,0.005593768786638975,0.00016393783153034747,14 +illusion_1L,sr,15,4.5,1.2987544536590576,-0.3311539590358734,0.8662837743759155,-0.3564164340496063,0.7216537594795227,-0.04591009393334389,0.0019816493149846792,0.00012791338667739183,0.0026413355953991413,0.000409874803153798,0.0022986300755292177,-0.00013942134683020413,-0.05379353676524351,0.023513918745985157,0.023513918745985157,-0.0005379353676524351,0.00023513918745985158,0.00023513918745985158,0.005601159762591124,-0.0003503881162032485,15 +illusion_1L,sr,16,4.8,1.361159086227417,-0.2939559817314148,0.8070753812789917,-0.13253268599510193,0.7358075976371765,0.02837866172194481,0.001967810560017824,0.0001293727837037295,0.002627685898914933,0.0003927319194190204,0.0022931231651455164,-0.00022220320533961058,-0.048917414544020654,0.019490546224433802,0.019490546224433802,-0.0004891741454402065,0.00019490546224433804,0.00019490546224433804,0.005579833872616291,-0.0008459693053737283,16 +illusion_1L,sr,17,5.1,1.3936597108840942,-0.2025659829378128,0.7600427269935608,0.13514535129070282,0.7705187797546387,0.08883789926767349,0.001955294283106923,0.00012203653750475496,0.002600200707092881,0.0003824931336566806,0.0022889410611242056,-0.00030982066527940333,-0.03846767641820914,0.012153162400320106,0.012153162400320106,-0.0003846767641820914,0.00012153162400320105,0.00012153162400320105,0.005568155087530613,-0.001292198314331472,17 +illusion_1L,sr,18,5.4,1.3517279624938965,-0.037496816366910934,0.7464601397514343,0.3686800003051758,0.8099538683891296,0.1417679488658905,0.0019450974650681019,0.0001108140277210623,0.00256397295743227,0.0003747781738638878,0.0022898304741829634,-0.000394196598790586,-0.032330544331805544,0.008747332527874713,0.008747332527874713,-0.00032330544331805546,8.747332527874713e-05,8.747332527874713e-05,0.005600422155112028,-0.001661122078076005,18 +illusion_1L,sr,19,5.7,1.2334918975830078,0.15739792585372925,0.7753278613090515,0.4857333302497864,0.8484610319137573,0.19031774997711182,0.0019414861453697085,9.407969628227875e-05,0.0025270795449614525,0.0003603052464313805,0.0023015132173895836,-0.00046827990445308387,-0.02160015153566705,0.002615540251499293,0.002615540251499293,-0.0002160015153566705,2.615540251499293e-05,2.615540251499293e-05,0.005640667863190174,-0.001929230522364378,19 +illusion_1L,sr,20,6.0,1.1004118919372559,0.2946741580963135,0.829054594039917,0.49159708619117737,0.8885165452957153,0.23296162486076355,0.0019503893563523889,7.307547639356926e-05,0.0024982262402772903,0.00033894501393660903,0.0023296119179576635,-0.0005262370686978102,-0.011783352106430223,-0.0022810869562912006,-0.0022810869562912006,-0.00011783352106430223,-2.2810869562912005e-05,-2.2810869562912005e-05,0.005670505575835705,-0.0020790090784430504,20 +illusion_1L,sr,21,6.3,1.0023610591888428,0.33876070380210876,0.8741258978843689,0.4687771201133728,0.9270864725112915,0.2688024640083313,0.001953283092007041,4.912937947665341e-05,0.002458727452903986,0.00030817624065093696,0.0023527296725660563,-0.0005645930068567395,-0.0031320253029346596,-0.005906506568805481,-0.005906506568805481,-3.13202530293466e-05,-5.9065065688054806e-05,-5.9065065688054806e-05,0.005723041016608477,-0.002100147772580385,21 +illusion_1L,sr,22,6.6,0.9434919953346252,0.32429569959640503,0.9012900590896606,0.45637771487236023,0.963575541973114,0.2996264100074768,0.0019500561757013202,2.337594924028963e-05,0.0024129964876919985,0.00026797186001203954,0.0023711342364549637,-0.0005811913288198411,0.004619251075813013,-0.00858942944696045,-0.00858942944696045,4.6192510758130134e-05,-8.58942944696045e-05,-8.58942944696045e-05,0.005777770187705755,-0.0019903185311704874,22 +illusion_1L,sr,23,6.9,0.9052640795707703,0.29061517119407654,0.9163095951080322,0.4553188979625702,1.0012704133987427,0.3283819854259491,0.001953708939254284,-1.4104329011388472e-06,0.00237733474932611,0.00022306967002805322,0.0023979940451681614,-0.0005778299528174102,0.01002659510592787,-0.009463351698362002,-0.009463351698362002,0.0001002659510592787,-9.463351698362002e-05,-9.463351698362002e-05,0.005763606168329716,-0.0017554573714733124,23 +illusion_1L,sr,24,7.2,0.8707051873207092,0.24937701225280762,0.9194257855415344,0.4623238742351532,1.0396652221679688,0.35609912872314453,0.0019583015237003565,-2.4319691874552518e-05,0.002349687507376075,0.00017661164747551084,0.0024289353750646114,-0.0005563804297707975,0.015956349719131457,-0.01080267369940721,-0.01080267369940721,0.00015956349719131458,-0.0001080267369940721,-0.0001080267369940721,0.005690249614417553,-0.0014095163205638528,24 +illusion_1L,sr,25,7.5,0.8363755345344543,0.20056270062923431,0.9099544286727905,0.474461168050766,1.0802754163742065,0.38355839252471924,0.0019619916565716267,-4.5376636990113184e-05,0.002326101763173938,0.00013586146815214306,0.0024577996227890253,-0.0005225611967034638,0.022169416914535008,-0.012543539201275425,-0.012543539201275425,0.00022169416914535008,-0.00012543539201275426,-0.00012543539201275426,0.005629390478134155,-0.0009736909996718168,25 +illusion_1L,sr,26,7.8,0.8056237697601318,0.14418992400169373,0.8852495551109314,0.4830882251262665,1.1254335641860962,0.410978764295578,0.0019683679565787315,-6.288307486101985e-05,0.002314629266038537,0.00010632944758981466,0.0024916259571909904,-0.00047998761874623597,0.02660019467144556,-0.01326463875748664,-0.01326463875748664,0.0002660019467144556,-0.0001326463875748664,-0.0001326463875748664,0.005584970116615295,-0.00047515766345895827,26 +illusion_1L,sr,27,8.1,0.7846283912658691,0.08371827751398087,0.841677725315094,0.46858692169189453,1.1771650314331055,0.4373326003551483,0.001979158027097583,-7.71351478761062e-05,0.0023165433667600155,9.341909026261419e-05,0.0025303030852228403,-0.00043698851368390024,0.03182979899704366,-0.014925827365841582,-0.014925827365841582,0.0003182979899704366,-0.00014925827365841582,-0.00014925827365841582,0.005531984381377697,5.460584725369699e-05,27 +illusion_1L,sr,28,8.4,0.7773318290710449,0.02303444780409336,0.7778517007827759,0.4028041958808899,1.235916256904602,0.4588630199432373,0.0019856279250234365,-8.799713396001607e-05,0.0023211543448269367,0.00010290972568327561,0.002562005538493395,-0.00039929989725351334,0.035982247970597236,-0.01620610141441549,-0.01620610141441549,0.00035982247970597236,-0.0001620610141441549,-0.0001620610141441549,0.005518179386854172,0.0005818125791847706,28 +illusion_1L,sr,29,8.7,0.7822845578193665,-0.03647495433688164,0.7000035047531128,0.26637721061706543,1.295516014099121,0.46443837881088257,0.0019827713258564472,-9.467558265896514e-05,0.002320757368579507,0.00013712156214751303,0.00257792416960001,-0.0003721965185832232,0.03830045791009659,-0.016600490725157874,-0.016600490725157874,0.0003830045791009659,-0.00016600490725157875,-0.00016600490725157875,0.005577066447585821,0.0010725450702011585,29 +illusion_1L,sr,30,9.0,0.7950735688209534,-0.09608080983161926,0.6224331855773926,0.06572670489549637,1.337294578552246,0.42959147691726685,0.0019752755761146545,-9.775396028999239e-05,0.002319593681022525,0.00019283143046777695,0.0025807381607592106,-0.000357199867721647,0.03941392761374174,-0.016628797759874248,-0.016628797759874248,0.0003941392761374174,-0.00016628797759874248,-0.00016628797759874248,0.005638485308736563,0.0014949759934097528,30 +illusion_1L,sr,31,9.3,0.8138003945350647,-0.15552841126918793,0.5644582509994507,-0.16615411639213562,1.3301982879638672,0.31770965456962585,0.0019684345461428165,-9.632781438995153e-05,0.0023214812390506268,0.00026370101841166615,0.0025740107521414757,-0.00035024096723645926,0.03669146173256746,-0.01441968719034173,-0.01441968719034173,0.0003669146173256746,-0.0001441968719034173,-0.0001441968719034173,0.005652999971061945,0.001821481972001493,31 +illusion_1L,sr,32,9.6,0.8387725949287415,-0.21211108565330505,0.5446239709854126,-0.3773209750652313,1.2521790266036987,0.10899698734283447,0.00195934041403234,-8.997187978820875e-05,0.002323148539289832,0.00034141159267164767,0.0025542909279465675,-0.0003483030595816672,0.03176766246741397,-0.011195466132708803,-0.011195466132708803,0.0003176766246741397,-0.00011195466132708804,-0.00011195466132708804,0.005672627128660679,0.002030503237619996,32 +illusion_1L,sr,33,9.9,0.8700262308120728,-0.26403412222862244,0.5713829398155212,-0.5198965072631836,1.1199795007705688,-0.15773500502109528,0.0019524100935086608,-7.934887253213674e-05,0.0023279315792024136,0.0004161747347097844,0.002526034601032734,-0.000344905216479674,0.02535653758883075,-0.007493377579969541,-0.007493377579969541,0.0002535653758883075,-7.493377579969541e-05,-7.493377579969541e-05,0.005716722924262285,0.0021080211736261845,33 +illusion_1L,sr,34,10.2,0.9070367217063904,-0.3108106553554535,0.6298251152038574,-0.5912621021270752,0.9776210784912109,-0.3975749611854553,0.001953482860699296,-6.411984213627875e-05,0.0023451081942766905,0.00048000042443163693,0.0025010898243635893,-0.0003339767281431705,0.017112735723736977,-0.003003175358418167,-0.003003175358418167,0.00017112735723736976,-3.003175358418167e-05,-3.003175358418167e-05,0.0057253409177064896,0.0020485445857048035,34 +illusion_1L,sr,35,10.5,0.9490530490875244,-0.3525206744670868,0.6913567781448364,-0.6326394081115723,0.8624522686004639,-0.5416670441627502,0.0019600072409957647,-4.619052560883574e-05,0.0023699121084064245,0.0005261203041300178,0.002477324102073908,-0.00031376080005429685,0.010083402682707937,0.00014510768531504625,0.00014510768531504625,0.00010083402682707937,1.4510768531504627e-06,1.4510768531504627e-06,0.005700415000319481,0.001855533104389906,35 +illusion_1L,sr,36,10.8,0.995349645614624,-0.38949236273765564,0.7433369159698486,-0.6696876883506775,0.7877528071403503,-0.5823526382446289,0.001963771879673004,-2.6622272343956865e-05,0.002393812872469425,0.0005524309235624969,0.0024494915269315243,-0.0002842593239620328,0.0027395953119797867,0.0032116199748713765,0.0032116199748713765,2.7395953119797867e-05,3.211619974871377e-05,3.211619974871377e-05,0.00570518197491765,0.0015412241918966174,36 +illusion_1L,sr,37,11.1,1.0452849864959717,-0.42204421758651733,0.7850447297096252,-0.7050000429153442,0.7395002841949463,-0.5639756321907043,0.0019657397642731667,-6.265002866712166e-06,0.0024164041969925165,0.0005578498239628971,0.0024209546390920877,-0.00024846408632583916,-0.004110055489795983,0.0057580523813878445,0.0057580523813878445,-4.110055489795983e-05,5.758052381387845e-05,5.758052381387845e-05,0.005713063757866621,0.0011258659651502967,37 +illusion_1L,sr,38,11.4,1.099031925201416,-0.45077478885650635,0.8162937760353088,-0.7308676242828369,0.6965837478637695,-0.5237399339675903,0.0019714105874300003,1.2251960470166523e-05,0.002444751327857375,0.0005421251989901066,0.0024009020999073982,-0.00021022972941864282,-0.008778124458437583,0.006719261901975058,0.006719261901975058,-8.778124458437583e-05,6.719261901975058e-05,6.719261901975058e-05,0.00565308379009366,0.0006364086293615401,38 +illusion_1L,sr,39,11.7,1.1571111679077148,-0.4758147597312927,0.8340368866920471,-0.7293323874473572,0.6507762670516968,-0.46693527698516846,0.0019750408828258514,2.8745236704708077e-05,0.002470463514328003,0.0005125717143528163,0.0023834400344640017,-0.00017619907157495618,-0.014753508632246294,0.008781199973801421,0.008781199973801421,-0.00014753508632246295,8.781199973801422e-05,8.781199973801422e-05,0.005567865911871195,0.00010473776637809351,39 +illusion_1L,sr,40,12.0,1.2200580835342407,-0.49640944600105286,0.8335853815078735,-0.6790778636932373,0.6047407984733582,-0.38483163714408875,0.001978547777980566,4.300259388401173e-05,0.002495822496712208,0.00047399094910360873,0.0023726169019937515,-0.00015295250341296196,-0.020134394752191732,0.01065799630908279,0.01065799630908279,-0.00020134394752191733,0.0001065799630908279,0.0001065799630908279,0.005537909455597401,-0.0004344300541561097,40 +illusion_1L,sr,41,12.3,1.286743402481079,-0.5086413621902466,0.8126958012580872,-0.5705915689468384,0.5658138394355774,-0.27251771092414856,0.0019838856533169746,5.348856211639941e-05,0.0025218897499144077,0.0004324189794715494,0.0023703419137746096,-0.0001457282342016697,-0.0237453860444954,0.011565835955396661,0.011565835955396661,-0.00023745386044495402,0.0001156583595539666,0.0001156583595539666,0.005537074990570545,-0.000945847132243216,41 +illusion_1L,sr,42,12.6,1.3522080183029175,-0.5009872317314148,0.7752780914306641,-0.40747594833374023,0.5426698923110962,-0.13539476692676544,0.001995811937376857,6.130547990323976e-05,0.002553960308432579,0.00039653386920690536,0.002382851904258132,-0.0001577113289386034,-0.027982209504465325,0.01331931381658251,0.01331931381658251,-0.00027982209504465324,0.0001331931381658251,0.0001331931381658251,0.005531030707061291,-0.0013960730284452438,42 +illusion_1L,sr,43,12.9,1.3908183574676514,-0.4436657130718231,0.7261965274810791,-0.1906185746192932,0.5400965213775635,0.011157975532114506,0.0019942871294915676,6.612059223698452e-05,0.00256451778113842,0.00036836459184996784,0.0023840374778956175,-0.00019032828276976943,-0.029708947459609784,0.013643259244976072,0.013643259244976072,-0.00029708947459609783,0.00013643259244976072,0.00013643259244976072,0.00557838287204504,-0.0017556919483467937,43 +illusion_1L,sr,44,13.2,1.3816815614700317,-0.30114510655403137,0.6842390894889832,0.06611666083335876,0.5685754418373108,0.13969598710536957,0.0019884586799889803,6.687627319479361e-05,0.0025644281413406134,0.0003515482821967453,0.002384277991950512,-0.00024152691185008734,-0.0283275581880372,0.012163651073222786,0.012163651073222786,-0.000283275581880372,0.00012163651073222787,0.00012163651073222787,0.0056895059533417225,-0.0020012580789625645,44 +illusion_1L,sr,45,13.5,1.3068660497665405,-0.05864393711090088,0.660070538520813,0.3339936137199402,0.6280248761177063,0.22687090933322906,0.0019807114731520414,6.470581138273701e-05,0.0025530816055834293,0.00034355069510638714,0.002383540151640773,-0.00030221950146369636,-0.026465930152839854,0.010801835440394439,0.010801835440394439,-0.00026465930152839854,0.00010801835440394439,0.00010801835440394439,0.005760743748396635,-0.002116837538778782,45 +illusion_1L,sr,46,13.8,1.1914863586425781,0.22283557057380676,0.6607775092124939,0.5655673742294312,0.7022657990455627,0.27991482615470886,0.001973859965801239,5.854890332557261e-05,0.0025342062581330538,0.00033821360557340086,0.0023846998810768127,-0.00036545281182043254,-0.021257888973020223,0.007464478117553298,0.007464478117553298,-0.00021257888973020222,7.464478117553298e-05,7.464478117553298e-05,0.005753485951572657,-0.0020950448233634233,46 +illusion_1L,sr,47,14.1,1.0757222175598145,0.45165297389030457,0.6932917833328247,0.696639358997345,0.7736415863037109,0.32320910692214966,0.0019662510603666306,4.904401794192381e-05,0.0025070104748010635,0.0003321320400573313,0.002385393949225545,-0.0004226411983836442,-0.01567070310089126,0.004306293254478802,0.004306293254478802,-0.00015670703100891263,4.306293254478802e-05,4.306293254478802e-05,0.005740967579185963,-0.0019375038100406528,47 +illusion_1L,sr,48,14.4,0.9812275171279907,0.5731037259101868,0.7477430105209351,0.7264226675033569,0.8398810029029846,0.36249321699142456,0.001962508074939251,3.7378675187937915e-05,0.0024792570620775223,0.00032109968014992774,0.002391599817201495,-0.0004662953724619001,-0.009821609930136338,0.0013373959198732105,0.0013373959198732105,-9.821609930136338e-05,1.3373959198732106e-05,1.3373959198732106e-05,0.005731895100325346,-0.0016547086415812373,48 +illusion_1L,sr,49,14.7,0.9138535857200623,0.5937198400497437,0.8012492656707764,0.730029284954071,0.9041051268577576,0.3953026235103607,0.001966702053323388,2.322311956959311e-05,0.0024593842681497335,0.0003025883052032441,0.0024090686347335577,-0.000493257655762136,-0.002889542836879269,-0.0021370285116311186,-0.0021370285116311186,-2.889542836879269e-05,-2.1370285116311186e-05,-2.1370285116311186e-05,0.00566871277987957,-0.0012652967125177383,49 +illusion_1L,sr,50,15.0,0.8618540167808533,0.5694268345832825,0.8460102081298828,0.7428085803985596,0.9676438570022583,0.4217710494995117,0.00197391863912344,8.414606782025658e-06,0.0024429592303931713,0.0002791073056869209,0.0024309807922691107,-0.0005020201206207275,0.0019905877144187276,-0.003927687753381884,-0.003927687753381884,1.9905877144187277e-05,-3.927687753381884e-05,-3.927687753381884e-05,0.005592959467321634,-0.0007947873091325164,50 +illusion_1L,sr,51,15.3,0.8093137741088867,0.5366841554641724,0.8837475776672363,0.7612671852111816,1.0316373109817505,0.4428979456424713,0.001976939383894205,-5.452825462270994e-06,0.002424021949991584,0.0002542225120123476,0.0024494000244885683,-0.0004954854375682771,0.006431961747898911,-0.005345029890323698,-0.005345029890323698,6.431961747898912e-05,-5.345029890323698e-05,-5.345029890323698e-05,0.0055853561498224735,-0.000273875892162323,51 +illusion_1L,sr,52,15.6,0.7509990930557251,0.49302318692207336,0.9130233526229858,0.7701777219772339,1.0968563556671143,0.4591429531574249,0.001977270469069481,-1.8729519069893286e-05,0.00240491796284914,0.00023077527293935418,0.002464473946020007,-0.0004764146578963846,0.01192053016680946,-0.007585309336557509,-0.007585309336557509,0.0001192053016680946,-7.585309336557508e-05,-7.585309336557508e-05,0.0055999187752604485,0.000263598543824628,52 +illusion_1L,sr,53,15.9,0.6900292038917542,0.4221786558628082,0.9276241064071655,0.7428886890411377,1.164796233177185,0.47043609619140625,0.001979766646400094,-3.0111006708466448e-05,0.0023928757291287184,0.00021403819846455008,0.0024824365973472595,-0.000448294187663123,0.01572564855317459,-0.00873459786420347,-0.00873459786420347,0.00015725648553174593,-8.734597864203469e-05,-8.734597864203469e-05,0.005566527601331472,0.000782874645665288,53 +illusion_1L,sr,54,16.2,0.6348261833190918,0.3142656683921814,0.9202286601066589,0.6566435694694519,1.2360866069793701,0.4750921130180359,0.001978941960260272,-3.923377153114416e-05,0.002381142694503069,0.00020822632359340787,0.0024952709209173918,-0.00041800792678259313,0.0196321746320149,-0.01016249864412308,-0.01016249864412308,0.00019632174632014903,-0.00010162498644123081,-0.00010162498644123081,0.005543616600334644,0.0012505297781899571,54 +illusion_1L,sr,55,16.5,0.5944786071777344,0.17245972156524658,0.8890767693519592,0.5085055828094482,1.309516191482544,0.46726176142692566,0.0019769524224102497,-4.6799646952422336e-05,0.0023728804662823677,0.00021497845591511577,0.0025052353739738464,-0.0003899433941114694,0.023235712839765707,-0.011631370911476535,-0.011631370911476535,0.00023235712839765707,-0.00011631370911476536,-0.00011631370911476536,0.0055874851532280445,0.0016366330673918128,55 +illusion_1L,sr,56,16.8,0.5782482624053955,0.01470527146011591,0.8395418524742126,0.2992718517780304,1.3753029108047485,0.43086984753608704,0.00197804719209671,-5.163962850929238e-05,0.0023718676529824734,0.0002359637146582827,0.00251564709469676,-0.00036692447611130774,0.024262484359519124,-0.011502287493016045,-0.011502287493016045,0.00024262484359519125,-0.00011502287493016045,-0.00011502287493016045,0.005633705295622349,0.0019166492857038975,56 +illusion_1L,sr,57,17.1,0.5952457189559937,-0.12907683849334717,0.7860816717147827,0.030501283705234528,1.4094340801239014,0.3358270823955536,0.0019817203283309937,-5.410839003161527e-05,0.0023776015732437372,0.000268850038992241,0.0025251577608287334,-0.00035157232196070254,0.02470442856128337,-0.01127213063299852,-0.01127213063299852,0.0002470442856128337,-0.0001127213063299852,-0.0001127213063299852,0.005650329869240522,0.002072976902127266,57 +illusion_1L,sr,58,17.4,0.6479537487030029,-0.2286936193704605,0.7476193308830261,-0.26371490955352783,1.3798657655715942,0.15364617109298706,0.0019797675777226686,-5.404527473729104e-05,0.002378335688263178,0.0003113890707027167,0.0025217547081410885,-0.0003437305858824402,0.02305699830502206,-0.009868529661313338,-0.009868529661313338,0.0002305699830502206,-9.868529661313338e-05,-9.868529661313338e-05,0.005705440882593393,0.002096022479236126,58 +illusion_1L,sr,59,17.7,0.7205972075462341,-0.2855395972728729,0.7367646098136902,-0.5155377984046936,1.278872013092041,-0.09313691407442093,0.0019725384190678596,-5.067287202109583e-05,0.002375084673985839,0.00035827106330543756,0.0025069403927773237,-0.00034015363780781627,0.01940881543781664,-0.0073700609232695,-0.0073700609232695,0.0001940881543781664,-7.3700609232695e-05,-7.3700609232695e-05,0.005788230337202549,0.0019847527146339417,59 +illusion_1L,sr,60,18.0,0.7925513386726379,-0.32622572779655457,0.7594590187072754,-0.649154782295227,1.147264838218689,-0.31346604228019714,0.001966348383575678,-4.470893327379599e-05,0.0023732350673526525,0.0004016099846921861,0.002486858982592821,-0.00033655212610028684,0.015810329165318673,-0.005270610934284409,-0.005270610934284409,0.00015810329165318675,-5.270610934284409e-05,-5.270610934284409e-05,0.00579201802611351,0.001746693509630859,60 +illusion_1L,sr,61,18.3,0.858812153339386,-0.3615114688873291,0.8030211329460144,-0.6730414628982544,1.0316123962402344,-0.4352858066558838,0.00196103285998106,-3.642575757112354e-05,0.0023736541625112295,0.00043670382001437247,0.0024637726601213217,-0.0003291087341494858,0.01147169287331061,-0.002948603423105503,-0.002948603423105503,0.0001147169287331061,-2.948603423105503e-05,-2.948603423105503e-05,0.005716915708035231,0.001397387241013348,61 +illusion_1L,sr,62,18.6,0.9216757416725159,-0.39059481024742126,0.844308614730835,-0.6715264916419983,0.9486421942710876,-0.4635296165943146,0.0019568204879760742,-2.6165213057538494e-05,0.0023759568575769663,0.000460103212390095,0.00243914732709527,-0.00031625202973373234,0.007104701589161433,-0.0008628468363676561,-0.0008628468363676561,7.104701589161433e-05,-8.628468363676562e-06,-8.628468363676562e-06,0.00565684586763382,0.0009593489812687039,62 +illusion_1L,sr,63,18.9,0.9829035401344299,-0.4138187766075134,0.8766939043998718,-0.6814239025115967,0.8877416253089905,-0.4472188949584961,0.0019568956922739744,-1.5482526578125544e-05,0.0023847634438425303,0.0004697757540270686,0.002419236581772566,-0.0002984455495607108,0.0036940965006196096,0.00034807256601223496,0.00034807256601223496,3.6940965006196095e-05,3.4807256601223496e-06,3.4807256601223496e-06,0.005609786603599787,0.0004605941940099001,63 +illusion_1L,sr,64,19.2,1.0441163778305054,-0.4320872128009796,0.9025746583938599,-0.6998558044433594,0.8314464092254639,-0.41809722781181335,0.001963989110663533,-4.578037533065071e-06,0.0024032113142311573,0.00046687989379279315,0.002408934524282813,-0.00027677425532601774,-0.0004791742071427047,0.0020362143324935446,0.0020362143324935446,-4.791742071427047e-06,2.0362143324935446e-05,2.0362143324935446e-05,0.005531110800802708,-6.716222560498863e-05,64 +illusion_1L,sr,65,19.5,1.1066030263900757,-0.44578680396080017,0.9214485883712769,-0.7119035124778748,0.7720345258712769,-0.3773864209651947,0.0019700820557773113,5.761816282756627e-06,0.0024215085431933403,0.00045446769217960536,0.0023998527321964502,-0.0002563550660852343,-0.004224305394653041,0.003405870355179011,0.003405870355179011,-4.224305394653042e-05,3.405870355179011e-05,3.405870355179011e-05,0.005488442722707987,-0.0005905209691263735,65 +illusion_1L,sr,66,19.8,1.1717026233673096,-0.4546774923801422,0.927846372127533,-0.6905584931373596,0.7112077474594116,-0.31460249423980713,0.0019711777567863464,1.4955575352360029e-05,0.0024346986319869757,0.00043649255530908704,0.0023880545049905777,-0.00024105752527248114,-0.00788306981876296,0.004778470979207776,0.004778470979207776,-7.88306981876296e-05,4.7784709792077756e-05,4.7784709792077756e-05,0.0055447774939239025,-0.0010764988837763667,66 +illusion_1L,sr,67,20.1,1.2400953769683838,-0.4572715163230896,0.9143587350845337,-0.6106522083282471,0.6566053032875061,-0.22277432680130005,0.0019698694813996553,2.3179774871096015e-05,0.002444073325023055,0.0004160537791904062,0.002376022282987833,-0.0002330985153093934,-0.011724502564997907,0.00640289184655566,0.00640289184655566,-0.00011724502564997908,6.40289184655566e-05,6.40289184655566e-05,0.005618898663669825,-0.0014945860020816326,67 +illusion_1L,sr,68,20.4,1.310591220855713,-0.4489768445491791,0.8779172897338867,-0.46815353631973267,0.6191500425338745,-0.10637688636779785,0.001968997297808528,2.9858825655537657e-05,0.0024527402129024267,0.0003961001639254391,0.002367590321227908,-0.0002349245041841641,-0.014296682939072906,0.007262545998200809,0.007262545998200809,-0.00014296682939072907,7.26254599820081e-05,7.26254599820081e-05,0.0056407577358186245,-0.0018186323577538133,68 +illusion_1L,sr,69,20.7,1.3757855892181396,-0.41797327995300293,0.8218610286712646,-0.26732558012008667,0.6103709936141968,0.016444623470306396,0.00196544686332345,3.4729655453702435e-05,0.00245606224052608,0.00037964407238177955,0.0023588843178004026,-0.000247149815550074,-0.016124246461261094,0.007781198088245685,0.007781198088245685,-0.00016124246461261094,7.781198088245685e-05,7.781198088245685e-05,0.005669464357197285,-0.00202845293097198,69 +illusion_1L,sr,70,21.0,1.4164890050888062,-0.3411896526813507,0.7585675120353699,-0.011470970697700977,0.6372418999671936,0.12048374116420746,0.0019610056187957525,3.7981259083608165e-05,0.002455393085256219,0.00036793143954128027,0.0023519734386354685,-0.0002689611283130944,-0.01705367979373687,0.007882428124524214,0.007882428124524214,-0.0001705367979373687,7.882428124524215e-05,7.882428124524215e-05,0.005728682037442923,-0.002111055189743638,70 +illusion_1L,sr,71,21.3,1.4023443460464478,-0.19050239026546478,0.708433210849762,0.26965272426605225,0.6917951703071594,0.19401876628398895,0.0019611516036093235,3.870054933940992e-05,0.0024563937913626432,0.0003595125745050609,0.002352752024307847,-0.0002978942357003689,-0.01604134730436578,0.006828669385266925,0.006828669385266925,-0.0001604134730436578,6.828669385266925e-05,6.828669385266925e-05,0.005740906111896038,-0.0020614201202988625,71 +illusion_1L,sr,72,21.6,1.312192440032959,0.03359455242753029,0.6910811066627502,0.5079251527786255,0.7542215585708618,0.24951176345348358,0.001963476650416851,3.721156099345535e-05,0.0024557355791330338,0.00035431672586128116,0.002357898047193885,-0.0003308196028228849,-0.01475924087109555,0.005868858825884442,0.005868858825884442,-0.0001475924087109555,5.868858825884442e-05,5.868858825884442e-05,0.00570477731525898,-0.0018827876774594188,72 +illusion_1L,sr,73,21.9,1.1721129417419434,0.26228228211402893,0.7167466282844543,0.6303304433822632,0.8144398927688599,0.29823732376098633,0.0019610561430454254,3.365053635207005e-05,0.0024453967344015837,0.00035068151191808283,0.002359045436605811,-0.0003650345024652779,-0.01253222637125437,0.004503612219674005,0.004503612219674005,-0.0001253222637125437,4.503612219674005e-05,4.503612219674005e-05,0.005704289767891169,-0.0015864415327087045,73 +illusion_1L,sr,74,22.2,1.0379924774169922,0.40920960903167725,0.767699658870697,0.6517654657363892,0.8729679584503174,0.3395932912826538,0.001955501502379775,2.7772415705840103e-05,0.002427451778203249,0.0003452399396337569,0.0023571818601340055,-0.0003958460583817214,-0.009393534089144298,0.0027407284466829246,0.0027407284466829246,-9.393534089144298e-05,2.7407284466829246e-05,2.7407284466829246e-05,0.005719874519854784,-0.0011909975437447429,74 +illusion_1L,sr,75,22.5,0.9412761330604553,0.4546813368797302,0.8146438598632812,0.6535871624946594,0.9307869672775269,0.37302321195602417,0.0019520644564181566,2.072135976050049e-05,0.0024095128756016493,0.00033629286917857826,0.0023589269258081913,-0.00041854564915411174,-0.006841713536250578,0.001636372955789667,0.001636372955789667,-6.841713536250578e-05,1.636372955789667e-05,1.636372955789667e-05,0.005665991455316544,-0.0007212489726953208,75 +illusion_1L,sr,76,22.8,0.8764024972915649,0.44087111949920654,0.8502522706985474,0.6670601963996887,0.9883909225463867,0.39963820576667786,0.0019488770049065351,1.2528026672953274e-05,0.0023899967782199383,0.00032293840195052326,0.0023612906225025654,-0.0004323439206928015,-0.003421157692221719,6.47347120551478e-05,6.47347120551478e-05,-3.421157692221719e-05,6.47347120551478e-07,6.47347120551478e-07,0.005579077173024416,-0.00020663297618739307,76 +illusion_1L,sr,77,23.1,0.8220532536506653,0.4079154133796692,0.8775426149368286,0.6878051161766052,1.0465244054794312,0.4203852415084839,0.0019464653450995684,3.6880869629385415e-06,0.0023717167787253857,0.000306523812469095,0.0023656939156353474,-0.00043634860776364803,-0.0003533723807159772,-0.0011386847429581057,-0.0011386847429581057,-3.5337238071597722e-06,-1.1386847429581058e-05,-1.1386847429581058e-05,0.0055456943809986115,0.00032058797660283744,77 +illusion_1L,sr,78,23.4,0.7660179138183594,0.3642118573188782,0.8970207571983337,0.700799822807312,1.1063097715377808,0.4356672167778015,0.0019481434719637036,-4.574425020109629e-06,0.002359410747885704,0.0002890340983867645,0.0023758860770612955,-0.00043141658534295857,0.0021133351809839666,-0.0018580115042134667,-0.0018580115042134667,2.1133351809839665e-05,-1.8580115042134668e-05,-1.8580115042134668e-05,0.005538465455174446,0.0008273206767626107,78 +illusion_1L,sr,79,23.7,0.7085517048835754,0.3018569052219391,0.9046145677566528,0.6797184944152832,1.168914794921875,0.44524145126342773,0.001955548534169793,-1.2621205314644612e-05,0.0023560780100524426,0.0002726810344029218,0.0023936820216476917,-0.00042055919766426086,0.005603085528675224,-0.0033435920745645397,-0.0033435920745645397,5.603085528675224e-05,-3.34359207456454e-05,-3.34359207456454e-05,0.005518500693142414,0.0012816928792744875,79 +illusion_1L,sr,80,24.0,0.6571377515792847,0.21436955034732819,0.8941333889961243,0.6011922359466553,1.2348289489746094,0.44780150055885315,0.001959550892934203,-1.9941549908253364e-05,0.0023514656350016594,0.0002621389285195619,0.002407896099612117,-0.00040705918218009174,0.008287436164229587,-0.004299842955469372,-0.004299842955469372,8.287436164229587e-05,-4.299842955469372e-05,-4.299842955469372e-05,0.005552514921873808,0.0016550382133573294,80 +illusion_1L,sr,81,24.3,0.6227133870124817,0.1055128425359726,0.8623068332672119,0.4634628891944885,1.3027427196502686,0.43964695930480957,0.00195876182988286,-2.581809530965984e-05,0.0023436290211975574,0.00025935820303857327,0.0024159271270036697,-0.0003934763080906123,0.010368877072891677,-0.004922137588339325,-0.004922137588339325,0.00010368877072891678,-4.9221375883393254e-05,-4.9221375883393254e-05,0.005664129741489887,0.0019236936932429671,81 +illusion_1L,sr,82,24.6,0.616635262966156,-0.008377938531339169,0.8103222250938416,0.27302733063697815,1.3664557933807373,0.41179996728897095,0.0019558509811758995,-3.0688006518175825e-05,0.002335391938686371,0.0002645622589625418,0.0024196337908506393,-0.0003821759601123631,0.01272874185931122,-0.005894839126976373,-0.005894839126976373,0.0001272874185931122,-5.894839126976373e-05,-5.894839126976373e-05,0.005749957635998726,0.0020704984199255705,82 +illusion_1L,sr,83,24.9,0.6456722617149353,-0.10502206534147263,0.7485677003860474,0.032270397990942,1.4129817485809326,0.34796255826950073,0.0019563741516321898,-3.39597936545033e-05,0.002332862466573715,0.00027854449581354856,0.0024248131085187197,-0.0003734917554538697,0.013583094226765027,-0.005944607806285453,-0.005944607806285453,0.00013583094226765028,-5.944607806285453e-05,-5.944607806285453e-05,0.005759336985647678,0.0020859010983258486,83 +illusion_1L,sr,84,25.2,0.6968142986297607,-0.17609284818172455,0.691712498664856,-0.2380773425102234,1.4106215238571167,0.2240380346775055,0.0019481424242258072,-3.504684354993515e-05,0.0023220053408294916,0.0002983898448292166,0.002416635863482952,-0.00036614295095205307,0.01386896738169112,-0.005780179974644646,-0.005780179974644646,0.0001386896738169112,-5.780179974644646e-05,-5.780179974644646e-05,0.005756254307925701,0.0019686000887304544,84 +illusion_1L,sr,85,25.5,0.7548640370368958,-0.23382341861724854,0.6656914353370667,-0.4780222475528717,1.3412292003631592,0.031240997835993767,0.0019442844204604626,-3.494767952361144e-05,0.0023179820273071527,0.00032282262691296637,0.002410384127870202,-0.00036151224048808217,0.014072301459133851,-0.005799961351384032,-0.005799961351384032,0.00014072301459133851,-5.799961351384032e-05,-5.799961351384032e-05,0.005749706644564867,0.0017256771679967642,85 +illusion_1L,sr,86,25.8,0.8111616373062134,-0.2857076823711395,0.6849478483200073,-0.6126589179039001,1.2076894044876099,-0.19194971024990082,0.0019460078328847885,-3.2684609323041514e-05,0.0023223846219480038,0.00034886010689660907,0.002407850231975317,-0.00035614866646938026,0.01224180230607598,-0.004553780837183399,-0.004553780837183399,0.0001224180230607598,-4.553780837183399e-05,-4.553780837183399e-05,0.005683912429958582,0.0013722052099183202,86 +illusion_1L,sr,87,26.1,0.8670369386672974,-0.32988184690475464,0.7357378005981445,-0.6427220106124878,1.0598608255386353,-0.36342906951904297,0.0019485137891024351,-2.855671482393518e-05,0.0023289464879781008,0.00037380773574113846,0.0024032695218920708,-0.0003502943436615169,0.010578782906865938,-0.0036612157162793165,-0.0036612157162793165,0.00010578782906865938,-3.6612157162793163e-05,-3.6612157162793163e-05,0.005598609335720539,0.0009303490514867008,87 +illusion_1L,sr,88,26.4,0.9235583543777466,-0.36594489216804504,0.7858302593231201,-0.6462082862854004,0.9438936114311218,-0.4374775290489197,0.001946739386767149,-2.3501444957219064e-05,0.002332044765353203,0.00039566835039295256,0.002391501097008586,-0.000343131716363132,0.008924252913316506,-0.0029801002888310765,-0.0029801002888310765,8.924252913316507e-05,-2.9801002888310767e-05,-2.9801002888310767e-05,0.0055789402686059475,0.000428010243922472,88 +illusion_1L,sr,89,26.7,0.9805063009262085,-0.3948705792427063,0.8236883282661438,-0.6601775288581848,0.8684895038604736,-0.43622949719429016,0.0019429894164204597,-1.6871139450813644e-05,0.002332933945581317,0.0004123161779716611,0.002375111449509859,-0.0003327428421471268,0.005783030398707097,-0.0013802375178041115,-0.0013802375178041115,5.783030398707097e-05,-1.3802375178041115e-05,-1.3802375178041115e-05,0.005592026747763157,-0.00010290697537129745,89 +illusion_1L,sr,90,27.0,1.0382550954818726,-0.4176084101200104,0.8520030975341797,-0.6815072894096375,0.8135692477226257,-0.4038676917552948,0.0019412990659475327,-9.664014214649796e-06,0.002337045967578888,0.0004209954058751464,0.0023604289162904024,-0.00031955321901477873,0.0036904582409419823,-0.0006742132009052437,-0.0006742132009052437,3.690458240941982e-05,-6.742132009052437e-06,-6.742132009052437e-06,0.0055693225003778934,-0.0006285032723098993,90 +illusion_1L,sr,91,27.3,1.0974611043930054,-0.4345049560070038,0.871809184551239,-0.6961783766746521,0.7610312104225159,-0.35913991928100586,0.0019391196547076106,-2.507188582967501e-06,0.002340907696634531,0.00042279844637960196,0.0023449701257050037,-0.00030462638824246824,0.0014044091198656718,0.00010108208228283913,0.00010108208228283913,1.4044091198656718e-05,1.0108208228283913e-06,1.0108208228283913e-06,0.005552446935325861,-0.001115041202865541,91 +illusion_1L,sr,92,27.6,1.1589093208312988,-0.44529566168785095,0.8801855444908142,-0.6793339252471924,0.7068925499916077,-0.29885968565940857,0.0019374649273231626,4.942676696373383e-06,0.0023462155368179083,0.0004190153849776834,0.0023316240403801203,-0.00028969315462745726,-0.0014658475781868076,0.0012831342068351974,0.0012831342068351974,-1.4658475781868077e-05,1.2831342068351974e-05,1.2831342068351974e-05,0.005589765962213278,-0.0015311157330870628,92 +illusion_1L,sr,93,27.9,1.2231296300888062,-0.44877806305885315,0.8723353147506714,-0.6072346568107605,0.6572663187980652,-0.21697430312633514,0.0019399751909077168,1.1504928806971293e-05,0.002356767188757658,0.00041013082955032587,0.0023248654324561357,-0.0002770994324237108,-0.0031223242416386025,0.001599298946365531,0.001599298946365531,-3.1223242416386026e-05,1.599298946365531e-05,1.599298946365531e-05,0.00562874274328351,-0.0018496968550607562,93 +illusion_1L,sr,94,28.2,1.2889567613601685,-0.44189998507499695,0.845370888710022,-0.47760239243507385,0.6230213642120361,-0.11586148291826248,0.001946420525200665,1.714661266305484e-05,0.00237205158919096,0.0003994417784269899,0.0023250726517289877,-0.00026879674987867475,-0.005384099175536637,0.0024290287624623465,0.0024290287624623465,-5.3840991755366375e-05,2.4290287624623466e-05,2.4290287624623466e-05,0.005641409661620855,-0.0020499122329056263,94 +illusion_1L,sr,95,28.5,1.3516136407852173,-0.4176984429359436,0.7990907430648804,-0.2995254397392273,0.6156673431396484,-0.008857419714331627,0.0019486881792545319,2.1904854293097742e-05,0.002381770173087716,0.000389472785172984,0.0023226479534059763,-0.00026779912877827883,-0.007506905104802897,0.0032648239718990678,0.0032648239718990678,-7.506905104802897e-05,3.264823971899068e-05,3.264823971899068e-05,0.005687114782631397,-0.0021184461656957865,95 +illusion_1L,sr,96,28.8,1.3987083435058594,-0.36350876092910767,0.7388070821762085,-0.07594653218984604,0.6412491798400879,0.08392557501792908,0.0019463286735117435,2.506225609977264e-05,0.0023844807874411345,0.00038117612712085247,0.0023165929596871138,-0.00027477293042466044,-0.008774035023513947,0.003610384903101948,0.003610384903101948,-8.774035023513947e-05,3.6103849031019484e-05,3.6103849031019484e-05,0.005764052737504244,-0.0020504610147327185,96 +illusion_1L,sr,97,29.1,1.411010503768921,-0.2622958719730377,0.6793093085289001,0.18160191178321838,0.6906481385231018,0.15479525923728943,0.0019431097898632288,2.7059837520937435e-05,0.0023838994093239307,0.0003749178722500801,0.0023111316841095686,-0.0002880582760553807,-0.010261250217087695,0.004283603725736697,0.004283603725736697,-0.00010261250217087694,4.283603725736697e-05,4.283603725736697e-05,0.005783763248473406,-0.001849970780313015,97 +illusion_1L,sr,98,29.4,1.3655908107757568,-0.09963130950927734,0.6426244378089905,0.4278848171234131,0.7460853457450867,0.21417178213596344,0.0019393127877265215,2.7778900403063744e-05,0.002379863290116191,0.00036996538983657956,0.0023063619155436754,-0.0003066557692363858,-0.010594078503121676,0.00429191946439874,0.00429191946439874,-0.00010594078503121677,4.29191946439874e-05,4.29191946439874e-05,0.005733401048928499,-0.0015296366764232516,98 +illusion_1L,sr,99,29.7,1.251230001449585,0.11132526397705078,0.6499773859977722,0.588417649269104,0.7995607256889343,0.26890119910240173,0.0019345625769346952,2.6636169422999956e-05,0.0023720760364085436,0.0003654127649497241,0.0023018496576696634,-0.00032850936986505985,-0.009779621918953742,0.0036532974295371353,0.0036532974295371353,-9.779621918953742e-05,3.653297429537135e-05,3.653297429537135e-05,0.005679980851709843,-0.001109990873374045,99 +illusion_1L,sr,100,30.0,1.098459243774414,0.30717870593070984,0.6976110935211182,0.6374461054801941,0.8527882099151611,0.31639692187309265,0.001932382001541555,2.4116561689879745e-05,0.0023642743472009897,0.00036038996768184006,0.0023013055324554443,-0.00035012722946703434,-0.009147721144610536,0.0033453328800936155,0.0033453328800936155,-9.147721144610537e-05,3.345332880093616e-05,3.345332880093616e-05,0.005627625621855259,-0.0006181322387419641,100 +illusion_1L,sr,101,30.3,0.9630040526390076,0.4215991497039795,0.753354549407959,0.6439120769500732,0.9087082147598267,0.3560560345649719,0.0019387499196454883,2.0313749701017514e-05,0.0023650324437767267,0.0003535850264597684,0.002312591066583991,-0.0003707821306306869,-0.007721084550381583,0.0026433925129229208,0.0026433925129229208,-7.721084550381583e-05,2.6433925129229207e-05,2.6433925129229207e-05,0.005549031309783459,-8.59768915688619e-05,101 +illusion_1L,sr,102,30.6,0.8684698343276978,0.4446113705635071,0.7945992350578308,0.6555474400520325,0.962841272354126,0.3870120048522949,0.0019383452599868178,1.4972682038205676e-05,0.002355632372200489,0.0003439437714405358,0.002316586207598448,-0.00038723982288502157,-0.0059572314193992795,0.0018513539797241215,0.0018513539797241215,-5.9572314193992795e-05,1.8513539797241215e-05,1.8513539797241215e-05,0.005499288439750671,0.0004518234054557979,102 +illusion_1L,sr,103,30.9,0.8089230060577393,0.4185134768486023,0.8266376852989197,0.6770735383033752,1.019981026649475,0.41204676032066345,0.0019370157970115542,9.338978088635486e-06,0.002344604814425111,0.0003335360379423946,0.0023208523634821177,-0.0003999810141976923,-0.004749950967722599,0.0016111589411918687,0.0016111589411918687,-4.7499509677225995e-05,1.611158941191869e-05,1.611158941191869e-05,0.00553347822278738,0.000960158125963062,103 +illusion_1L,sr,104,31.2,0.7594558000564575,0.3744804859161377,0.850098729133606,0.6956396698951721,1.078723669052124,0.4309106469154358,0.0019343680469319224,2.965524117826135e-06,0.0023309874814003706,0.00032109717722050846,0.0023234309628605843,-0.00040788110345602036,-0.0024129109951108348,0.0006273563671099474,0.0006273563671099474,-2.4129109951108347e-05,6.273563671099474e-06,6.273563671099474e-06,0.0055986023508012295,0.0014057770604267716,104 +illusion_1L,sr,105,31.5,0.7089967131614685,0.3173128068447113,0.8632495403289795,0.6893981695175171,1.139435887336731,0.4434232711791992,0.0019332957454025745,-3.4829838568839477e-06,0.0023195601534098387,0.000307958951452747,0.0023282100446522236,-0.00040978798642754555,-0.0007790812812834348,0.00020805725164160446,0.00020805725164160446,-7.790812812834349e-06,2.0805725164160447e-06,2.0805725164160447e-06,0.005635641980916262,0.0017594960518181324,105 +illusion_1L,sr,106,31.8,0.660999596118927,0.24170757830142975,0.8633086085319519,0.6338375210762024,1.2044477462768555,0.449405312538147,0.0019346174085512757,-9.313665032095741e-06,0.002311580115929246,0.000296230660751462,0.0023358147591352463,-0.00040786026511341333,0.0007093690006370074,-0.00010312539493059422,-0.00010312539493059422,7.0936900063700745e-06,-1.0312539493059423e-06,-1.0312539493059423e-06,0.005671056918799877,0.0019981369841843843,106 +illusion_1L,sr,107,32.1,0.6217647790908813,0.1456901729106903,0.8426375985145569,0.5176587700843811,1.2668571472167969,0.44426071643829346,0.001929825753904879,-1.485221400798764e-05,0.0022980307694524527,0.0002857954241335392,0.0023361491039395332,-0.0004016453749500215,0.002905556819632494,-0.0009684771416220965,-0.0009684771416220965,2.905556819632494e-05,-9.684771416220965e-06,-9.684771416220965e-06,0.005717759020626545,0.002106070751324296,107 +illusion_1L,sr,108,32.4,0.606677770614624,0.040421608835458755,0.8047423958778381,0.3550507426261902,1.3292937278747559,0.4252369701862335,0.0019328405614942312,-1.933106432261411e-05,0.002295706421136856,0.00027996060089208186,0.002345654182136059,-0.0003936677530873567,0.004151267150765255,-0.0012132895933695473,-0.0012132895933695473,4.151267150765255e-05,-1.2132895933695473e-05,-1.2132895933695473e-05,0.005728086922317743,0.002076256787404418,108 +illusion_1L,sr,109,32.7,0.6235945820808411,-0.05589601397514343,0.7501530647277832,0.15115505456924438,1.3808826208114624,0.38236671686172485,0.0019379741279408336,-2.2501239072880708e-05,0.0022978715132921934,0.00027961816522292793,0.0023570081684738398,-0.0003856884432025254,0.005708553328776712,-0.0017889246706327235,-0.0017889246706327235,5.708553328776712e-05,-1.7889246706327236e-05,-1.7889246706327236e-05,0.005702213384211063,0.0019107060506939888,109 +illusion_1L,sr,110,33.0,0.6684010028839111,-0.1308763176202774,0.6886183619499207,-0.09062770754098892,1.4067763090133667,0.30295076966285706,0.001938601373694837,-2.4899927666410804e-05,0.002296757884323597,0.00028596469201147556,0.0023618973791599274,-0.00037955661537125707,0.0075559869643967645,-0.0027081189260415098,-0.0027081189260415098,7.555986964396765e-05,-2.70811892604151e-05,-2.70811892604151e-05,0.005696525331586599,0.0016203367849811912,110 +illusion_1L,sr,111,33.3,0.7238542437553406,-0.1917029470205307,0.6391711831092834,-0.3432524502277374,1.3886420726776123,0.17377950251102448,0.0019353794632479548,-2.5824609110713936e-05,0.002292248886078596,0.0002988850465044379,0.0023600647691637278,-0.00037480166065506637,0.008086317874489435,-0.00280784473723434,-0.00280784473723434,8.086317874489435e-05,-2.80784473723434e-05,-2.80784473723434e-05,0.005705347750335932,0.0012242335360497236,111 +illusion_1L,sr,112,33.6,0.7775906920433044,-0.24835212528705597,0.6263180375099182,-0.5408605337142944,1.308240532875061,-0.008061346597969532,0.0019323817687109113,-2.5388593712705187e-05,0.0022892747074365616,0.00031558642513118684,0.0023562342394143343,-0.00037070023245178163,0.008621670765230453,-0.0030735466187852695,-0.0030735466187852695,8.621670765230454e-05,-3.0735466187852695e-05,-3.0735466187852695e-05,0.0056749628856778145,0.0007483611116185784,112 +illusion_1L,sr,113,33.9,0.8298845291137695,-0.2994382977485657,0.6608530282974243,-0.6270778179168701,1.1692949533462524,-0.21049658954143524,0.0019285200396552682,-2.383105493208859e-05,0.0022860190365463495,0.00033458994585089386,0.0023486448917537928,-0.00036648206878453493,0.008739714116730496,-0.0032026901201115746,-0.0032026901201115746,8.739714116730495e-05,-3.202690120111575e-05,-3.202690120111575e-05,0.005616396199911833,0.00022382187307812274,113 +illusion_1L,sr,114,34.2,0.8829631805419922,-0.34226638078689575,0.7169427275657654,-0.639198362827301,1.0148046016693115,-0.36690565943717957,0.0019245713483542204,-2.0675690393545665e-05,0.0022836942225694656,0.00035402519279159606,0.002338909078389406,-0.0003607271355576813,0.007997285506579993,-0.002864557009480573,-0.002864557009480573,7.997285506579993e-05,-2.8645570094805728e-05,-2.8645570094805728e-05,0.005577105097472668,-0.00031522029894404113,114 +illusion_1L,sr,115,34.5,0.9372698068618774,-0.3771441578865051,0.7643879055976868,-0.6472653746604919,0.8932387232780457,-0.43374842405319214,0.0019237762317061424,-1.6787178537924774e-05,0.0022860157769173384,0.00037118809996172786,0.002331177704036236,-0.00035289485822431743,0.0077430313368886255,-0.003037862507921339,-0.003037862507921339,7.743031336888626e-05,-3.0378625079213392e-05,-3.0378625079213392e-05,0.005551840178668499,-0.0008338077459484339,115 +illusion_1L,sr,116,34.8,0.9947953224182129,-0.4057788550853729,0.800730288028717,-0.6677061915397644,0.8180317878723145,-0.4285726845264435,0.0019312469521537423,-1.2023873750877101e-05,0.002299222629517317,0.0003857636475004256,0.002332310890778899,-0.00034299728577025235,0.006589474884447409,-0.00267440108948579,-0.00267440108948579,6.589474884447409e-05,-2.6744010894857902e-05,-2.6744010894857902e-05,0.0055290330201387405,-0.0012984927743673325,116 +illusion_1L,sr,117,35.1,1.0508649349212646,-0.4266911447048187,0.8253999948501587,-0.6883519887924194,0.7650980353355408,-0.3892703354358673,0.0019305775640532374,-6.573756763827987e-06,0.002303501358255744,0.0003957473090849817,0.0023232006933540106,-0.00033060985151678324,0.005396378586114772,-0.0023802418004447504,-0.0023802418004447504,5.396378586114772e-05,-2.3802418004447503e-05,-2.3802418004447503e-05,0.005548518151044846,-0.0016795200062915683,117 +illusion_1L,sr,118,35.4,1.11091148853302,-0.44197872281074524,0.8425226807594299,-0.6955147981643677,0.7182788848876953,-0.3367651700973511,0.001929496880620718,-1.1709601039910922e-06,0.0023078483063727617,0.0004024227964691818,0.0023135500960052013,-0.0003185849345754832,0.004419971076868041,-0.0023106251951327816,-0.0023106251951327816,4.419971076868042e-05,-2.3106251951327818e-05,-2.3106251951327818e-05,0.00562577648088336,-0.001952742924913764,118 +illusion_1L,sr,119,35.7,1.1731209754943848,-0.450258731842041,0.8475674986839294,-0.662492573261261,0.6712612509727478,-0.26931247115135193,0.001927595934830606,4.130501565668965e-06,0.0023109561298042536,0.0004050515708513558,0.002302916254848242,-0.0003063648473471403,0.0027900178131991804,-0.0017869615270847824,-0.0017869615270847824,2.7900178131991803e-05,-1.7869615270847825e-05,-1.7869615270847825e-05,0.005705163814127445,-0.0021011470817029476,119 +illusion_1L,sr,120,36.0,1.2370749711990356,-0.4498712718486786,0.8369399905204773,-0.5716083645820618,0.6300786137580872,-0.1833661049604416,0.0019263147842139006,8.997453733172733e-06,0.0023147230967879295,0.00040367364999838173,0.0022937844041734934,-0.00029549351893365383,0.0011845557420987786,-0.0012689440310312576,-0.0012689440310312576,1.1845557420987787e-05,-1.2689440310312575e-05,-1.2689440310312575e-05,0.005744705442339182,-0.0021158847957849503,120 +illusion_1L,sr,121,36.3,1.3002842664718628,-0.4372215270996094,0.8087517023086548,-0.42845234274864197,0.6059297323226929,-0.08377726376056671,0.0019243030110374093,1.3108558960084338e-05,0.0023172725923359394,0.0003996155282948166,0.002284771064296365,-0.00028754238155670464,-0.0005481741629315348,-0.0006156140665846532,-0.0006156140665846532,-5.481741629315348e-06,-6.156140665846531e-06,-6.156140665846531e-06,0.005756988190114498,-0.0019967579282820225,121 +illusion_1L,sr,122,36.6,1.3563719987869263,-0.40571072697639465,0.7628494501113892,-0.2457887977361679,0.6100198030471802,0.014262941665947437,0.0019231863552704453,1.663068906054832e-05,0.002320542000234127,0.00039394214400090277,0.002278432482853532,-0.0002833528851624578,-0.002621189196280505,0.00035475158561101144,0.00035475158561101144,-2.6211891962805052e-05,3.5475158561101145e-06,3.5475158561101145e-06,0.005744813941419125,-0.0017521297559142113,122 +illusion_1L,sr,123,36.9,1.3942128419876099,-0.34541261196136475,0.7034491896629333,-0.025239247828722,0.6447808742523193,0.09519874304533005,0.0019266352755948901,1.9226841686759144e-05,0.0023287534713745117,0.00038720446173101664,0.002279354026541114,-0.000283741217572242,-0.00412477406260487,0.0009989967335911863,0.0009989967335911863,-4.12477406260487e-05,9.989967335911863e-06,9.989967335911863e-06,0.005693688523024321,-0.001398277236148715,123 +illusion_1L,sr,124,37.2,1.3993546962738037,-0.24547825753688812,0.6444727182388306,0.2226308137178421,0.6971907615661621,0.1589205116033554,0.0019306318135932088,2.075469819828868e-05,0.0023365216329693794,0.00038115031202323735,0.002282514935359359,-0.0002896292426157743,-0.005422941898225078,0.0016042698260410916,0.0016042698260410916,-5.422941898225078e-05,1.6042698260410917e-05,1.6042698260410917e-05,0.005629749968647957,-0.0009582436759956181,124 +illusion_1L,sr,125,37.5,1.3558921813964844,-0.09821975976228714,0.6091552972793579,0.45292532444000244,0.7508563995361328,0.21698778867721558,0.0019301220308989286,2.13009407161735e-05,0.0023376757744699717,0.0003765768778976053,0.0022821102757006884,-0.0003011602093465626,-0.006476506876146052,0.0021593519408721756,0.0021593519408721756,-6.476506876146052e-05,2.1593519408721757e-05,2.1593519408721757e-05,0.005596959963440895,-0.00046027303324081004,125 +illusion_1L,sr,126,37.8,1.2510746717453003,0.09012280404567719,0.6199364066123962,0.5966062545776367,0.8021557331085205,0.2720620930194855,0.0019265227019786835,2.0526686057564802e-05,0.0023328058887273073,0.00037252079346217215,0.002278687432408333,-0.00031700541148893535,-0.0067724495427107165,0.002302363815470422,0.002302363815470422,-6.772449542710717e-05,2.302363815470422e-05,2.302363815470422e-05,0.005591437220573425,6.405806198017672e-05,126 +illusion_1L,sr,127,38.1,1.0998754501342773,0.2769641876220703,0.671210527420044,0.6363787055015564,0.8538029789924622,0.3199329376220703,0.0019238420063629746,1.8600188923301175e-05,0.002326940419152379,0.00036782369716092944,0.0022772783413529396,-0.00033448540489189327,-0.007049305741891957,0.002577868693077759,0.002577868693077759,-7.049305741891957e-05,2.577868693077759e-05,2.577868693077759e-05,0.005585479084402323,0.0005818844656459987,127 +illusion_1L,sr,128,38.4,0.9507932662963867,0.40006598830223083,0.726869523525238,0.6408995389938354,0.9067126512527466,0.3594636917114258,0.0019204751588404179,1.5761470422148705e-05,0.0023180164862424135,0.0003618336922954768,0.0022754876408725977,-0.00035211769863963127,-0.006956525199328705,0.0027265703625878913,0.0027265703625878913,-6.956525199328705e-05,2.7265703625878913e-05,2.7265703625878913e-05,0.005581559147685766,0.0010611350880935788,128 +illusion_1L,sr,129,38.7,0.8433201313018799,0.43595749139785767,0.768595814704895,0.6552460193634033,0.9609874486923218,0.39155709743499756,0.0019172553438693285,1.1816729056590702e-05,0.0023080019745975733,0.00035372423008084297,0.0022747968323528767,-0.00036824680864810944,-0.006302242737582453,0.0025902381554489574,0.0025902381554489574,-6.302242737582453e-05,2.5902381554489576e-05,2.5902381554489576e-05,0.005591227672994137,0.0014725204091519117,129 +illusion_1L,sr,130,39.0,0.7776132822036743,0.4131849408149719,0.7990427017211914,0.6775707602500916,1.017029881477356,0.4169682264328003,0.0019179093651473522,7.455778813891811e-06,0.002301652915775776,0.00034351309295743704,0.002279438078403473,-0.00038087155553512275,-0.005930774944491679,0.0027700843375441445,0.0027700843375441445,-5.930774944491679e-05,2.7700843375441447e-05,2.7700843375441447e-05,0.0056059095077216625,0.0017913009505718946,130 +illusion_1L,sr,131,39.3,0.7316875457763672,0.3670937418937683,0.8221933841705322,0.6965646743774414,1.0770937204360962,0.4366641342639923,0.0019258108222857118,2.763599468380562e-06,0.0023036140482872725,0.00033201687620021403,0.002293385798111558,-0.000390595116186887,-0.004896456478379807,0.002540602924936743,0.002540602924936743,-4.8964564783798065e-05,2.540602924936743e-05,2.540602924936743e-05,0.005624179262667894,0.0019987314008176327,131 +illusion_1L,sr,132,39.6,0.6859238147735596,0.3066349923610687,0.8328911066055298,0.6873742938041687,1.136114239692688,0.44815394282341003,0.0019246554002165794,-2.065218268398894e-06,0.0022950090933591127,0.00031961294007487595,0.00229713786393404,-0.00039583531906828284,-0.0036360513475879974,0.002192376144183471,0.002192376144183471,-3.636051347587998e-05,2.192376144183471e-05,2.192376144183471e-05,0.005661684088408947,0.0020831020083278418,132 +illusion_1L,sr,133,39.9,0.6431547403335571,0.23089657723903656,0.8320242166519165,0.6290022134780884,1.1992080211639404,0.45252615213394165,0.0019232999766245484,-6.447857231250964e-06,0.0022863871417939663,0.00030900893034413457,0.0023007122799754143,-0.00039846563595347106,-0.002319417438944961,0.001820599699151342,0.001820599699151342,-2.319417438944961e-05,1.820599699151342e-05,1.820599699151342e-05,0.005714363418519497,0.0020403247326612473,133 +illusion_1L,sr,134,40.2,0.6104040145874023,0.1388993263244629,0.8154507279396057,0.5130605697631836,1.262974739074707,0.4466630518436432,0.0019217731896787882,-1.0666621165000834e-05,0.002278122818097472,0.0002998157578986138,0.002303853165358305,-0.00039803804247640073,-0.0002283755562944821,0.0008677938074481938,0.0008677938074481938,-2.283755562944821e-06,8.677938074481937e-06,8.677938074481937e-06,0.005751916207373142,0.001874040812253952,134 +illusion_1L,sr,135,40.5,0.5994136333465576,0.0398675911128521,0.7817807793617249,0.3526313900947571,1.3233323097229004,0.4260563254356384,0.001920170383527875,-1.435467493138276e-05,0.002270594472065568,0.00029364725924097,0.0023064438719302416,-0.00039499052218161523,0.0014784183896702253,0.00016080501851937698,0.00016080501851937698,1.4784183896702255e-05,1.6080501851937697e-06,1.6080501851937697e-06,0.005752751603722572,0.0015952644171193242,135 +illusion_1L,sr,136,40.8,0.6186646223068237,-0.049716878682374954,0.7310047149658203,0.1566316932439804,1.3719987869262695,0.3833579123020172,0.0019178834045305848,-1.71874780789949e-05,0.0022634209599345922,0.0002911958727054298,0.0023077530786395073,-0.0003903752949554473,0.003106210205333859,-0.0005504454613302207,-0.0005504454613302207,3.1062102053338594e-05,-5.504454613302207e-06,-5.504454613302207e-06,0.005716994404792786,0.0012215939350426197,136 +illusion_1L,sr,137,41.1,0.6636978983879089,-0.1202160120010376,0.6698322892189026,-0.0736457034945488,1.3970507383346558,0.3094731867313385,0.0019171559251844883,-1.9550057913875207e-05,0.002259537810459733,0.00029263633769005537,0.0023101407568901777,-0.000385042920242995,0.005005193636726843,-0.0015422413938377154,-0.0015422413938377154,5.005193636726843e-05,-1.5422413938377155e-05,-1.5422413938377155e-05,0.005655428394675255,0.0007760541047900915,137 +illusion_1L,sr,138,41.4,0.7174828052520752,-0.17936481535434723,0.6159839034080505,-0.31746360659599304,1.385790467262268,0.19672891497612,0.0019208901794627309,-2.0775451048393734e-05,0.0022625522688031197,0.00029849118436686695,0.0023169699124991894,-0.0003789887996390462,0.00585482488230752,-0.0018652314983970619,-0.0018652314983970619,5.8548248823075204e-05,-1.865231498397062e-05,-1.865231498397062e-05,0.005588269792497158,0.000285650254227221,138 +illusion_1L,sr,139,41.7,0.7690562605857849,-0.23666109144687653,0.5948306918144226,-0.5194228291511536,1.3246898651123047,0.041439589112997055,0.0019237337401136756,-2.1021893189754337e-05,0.0022659795358777046,0.00030877196695655584,0.00232152221724391,-0.0003737496735993773,0.006808980689483274,-0.0023853935764777123,-0.0023853935764777123,6.808980689483275e-05,-2.3853935764777125e-05,-2.3853935764777125e-05,0.005542092490941286,-0.00022027546947356313,139 +illusion_1L,sr,140,42.0,0.8195448517799377,-0.2897105813026428,0.6232458353042603,-0.6191367506980896,1.205635905265808,-0.1432420164346695,0.0019224222050979733,-2.0417557607288472e-05,0.002265909221023321,0.00032299477607011795,0.0023196593392640352,-0.00036934236413799226,0.007327701945285189,-0.0027144576199788495,-0.0027144576199788495,7.32770194528519e-05,-2.7144576199788494e-05,-2.7144576199788494e-05,0.005534210707992315,-0.0007117835339158773,140 +illusion_1L,sr,141,42.3,0.8712322115898132,-0.3348379135131836,0.6809991598129272,-0.6358609199523926,1.050498604774475,-0.3107377290725708,0.0019191140308976173,-1.8459804778103717e-05,0.0022638668306171894,0.00033939810236915946,0.002313178265467286,-0.0003645537653937936,0.006938196693785794,-0.002513596121057393,-0.002513596121057393,6.938196693785794e-05,-2.5135961210573934e-05,-2.5135961210573934e-05,0.005564122460782528,-0.0011600726284086704,141 +illusion_1L,sr,142,42.6,0.9243752956390381,-0.372081995010376,0.7325546741485596,-0.6418904662132263,0.9077937006950378,-0.40763673186302185,0.0019166682614013553,-1.6053054423537105e-05,0.0022635632194578648,0.000355063151801005,0.0023058808874338865,-0.0003588779072742909,0.006926104303899846,-0.002721157547894138,-0.002721157547894138,6.926104303899846e-05,-2.721157547894138e-05,-2.721157547894138e-05,0.005614774767309427,-0.0015391155611723661,142 +illusion_1L,sr,143,42.9,0.9789519309997559,-0.4023226797580719,0.7693387866020203,-0.6602150201797485,0.8097254037857056,-0.42407286167144775,0.001913774642162025,-1.2700945262622554e-05,0.0022631953470408916,0.00036928048939444125,0.0022963020019233227,-0.0003514298587106168,0.005507400935704301,-0.0020122215118811813,-0.0020122215118811813,5.5074009357043015e-05,-2.0122215118811814e-05,-2.0122215118811814e-05,0.005659830756485462,-0.0018271084409207106,143 +illusion_1L,sr,144,43.2,1.0353120565414429,-0.4260789155960083,0.7954699397087097,-0.6826790571212769,0.7496753931045532,-0.3921663761138916,0.0019115791656076908,-8.161757250491064e-06,0.0022643201518803835,0.0003807136381510645,0.0022867026273161173,-0.0003422802546992898,0.004015368317051737,-0.0013571631200784626,-0.0013571631200784626,4.0153683170517377e-05,-1.3571631200784626e-05,-1.3571631200784626e-05,0.005684380419552326,-0.002007660223171115,144 +illusion_1L,sr,145,43.5,1.0940476655960083,-0.4433514475822449,0.8125393390655518,-0.6942614316940308,0.7047117948532104,-0.3404516875743866,0.0019137111958116293,-3.782465000767843e-06,0.0022713886573910713,0.0003879437572322786,0.00228191283531487,-0.00033182170591317117,0.003592073335638459,-0.0015669613905404838,-0.0015669613905404838,3.592073335638459e-05,-1.566961390540484e-05,-1.566961390540484e-05,0.005696034524589777,-0.0020706653594970703,145 +illusion_1L,sr,146,43.8,1.1554312705993652,-0.4534532129764557,0.8191307187080383,-0.6713162660598755,0.6625543236732483,-0.27553001046180725,0.0019184011034667492,8.788097716205812e-07,0.0022820106241852045,0.00039217749144881964,0.0022802837193012238,-0.00032055567135103047,0.0018028823136112763,-0.0008210857372857081,-0.0008210857372857081,1.8028823136112762e-05,-8.210857372857082e-06,-8.210857372857082e-06,0.005703396163880825,-0.0020128197502344847,146 +illusion_1L,sr,147,44.1,1.2188204526901245,-0.4547887146472931,0.8126806616783142,-0.5932801961898804,0.6249591708183289,-0.195350781083107,0.001919889822602272,5.99783470534021e-06,0.002289343159645796,0.00039397174259647727,0.002275720937177539,-0.0003107123193331063,0.00023711052114168751,-0.00025973758484196426,-0.00025973758484196426,2.3711052114168753e-06,-2.5973758484196425e-06,-2.5973758484196425e-06,0.005702631548047066,-0.0018377614906057715,147 +illusion_1L,sr,148,44.4,1.283923625946045,-0.44507238268852234,0.7925920486450195,-0.4618924856185913,0.6022641062736511,-0.1026715561747551,0.0019214453641325235,9.99811072688317e-06,0.00229632924310863,0.0003937772708013654,0.0022715155500918627,-0.0003040778392460197,-5.871827554597247e-05,-0.0006210086544410232,-0.0006210086544410232,-5.871827554597247e-07,-6.210086544410232e-06,-6.210086544410232e-06,0.00569628830999136,-0.001555830822326243,148 +illusion_1L,sr,149,44.7,1.3385627269744873,-0.4168708026409149,0.7533961534500122,-0.29008573293685913,0.6025346517562866,-0.0089601781219244,0.0019168128492310643,1.3680801203008741e-05,0.0022954042069613934,0.000390727975172922,0.0022609601728618145,-0.00029828224796801805,-0.0020213710759929837,0.00028578483781685655,0.00028578483781685655,-2.021371075992984e-05,2.8578483781685654e-06,2.8578483781685654e-06,0.005691180936992168,-0.0011834697797894478,149 +illusion_1L,sr,150,45.0,1.382103681564331,-0.36552226543426514,0.7006773352622986,-0.08559567481279373,0.6342718005180359,0.07092242687940598,0.0019181278767064214,1.6839418094605207e-05,0.002300606807693839,0.0003873373207170516,0.0022583636455237865,-0.0002972499933093786,-0.0032138941095200585,0.0006987012700815469,0.0006987012700815469,-3.2138941095200585e-05,6.987012700815469e-06,6.987012700815469e-06,0.005671756807714701,-0.0007422934286296368,150 +illusion_1L,sr,151,45.3,1.3937909603118896,-0.2809288501739502,0.6385922431945801,0.14856170117855072,0.6827991008758545,0.1341872662305832,0.001912492560222745,1.8425553207634948e-05,0.0022968195844441652,0.00038168791797943413,0.0022489656694233418,-0.0002992890076711774,-0.003815912559144888,0.0007638679381789768,0.0007638679381789768,-3.815912559144888e-05,7.638679381789768e-06,7.638679381789768e-06,0.0056210970506072044,-0.0002578797866590321,151 +illusion_1L,sr,152,45.6,1.369820475578308,-0.15969544649124146,0.5909661650657654,0.3832862973213196,0.734698474407196,0.19219093024730682,0.0019123232923448086,1.980876550078392e-05,0.002298403298482299,0.0003768329042941332,0.0022474629804491997,-0.00030468314071185887,-0.0056656605085953285,0.0018593111620984137,0.0018593111620984137,-5.665660508595329e-05,1.8593111620984136e-05,1.8593111620984136e-05,0.005563950631767511,0.00024165630748029798,152 +illusion_1L,sr,153,45.9,1.296212077140808,-0.0006797994137741625,0.5827333927154541,0.5579090118408203,0.7836987376213074,0.24931496381759644,0.001916177454404533,2.0173514712951146e-05,0.0023036173079162836,0.0003713248297572136,0.0022522767540067434,-0.00031374217360280454,-0.00562884714593536,0.0016815132601758556,0.0016815132601758556,-5.6288471459353606e-05,1.6815132601758557e-05,1.6815132601758557e-05,0.005538197699934244,0.000727235630620271,153 +illusion_1L,sr,154,46.2,1.1683480739593506,0.1790584772825241,0.6235502362251282,0.6274958252906799,0.833078145980835,0.30088403820991516,0.0019183284603059292,1.8947077478514984e-05,0.002305520698428154,0.0003665734548121691,0.002256350126117468,-0.00032606805325485766,-0.0052413613199681006,0.0013751852664813345,0.0013751852664813345,-5.241361319968101e-05,1.3751852664813346e-05,1.3751852664813346e-05,0.005544575862586498,0.001170451520010829,154 +illusion_1L,sr,155,46.5,1.0119409561157227,0.3324306607246399,0.6838700771331787,0.6351675987243652,0.8844725489616394,0.3444490432739258,0.0019166587153449655,1.7406548067810945e-05,0.002301145112141967,0.00036273253499530256,0.0022569368593394756,-0.00033998407889157534,-0.005791483312851474,0.0018882169181366724,0.0018882169181366724,-5.791483312851474e-05,1.8882169181366724e-05,1.8882169181366724e-05,0.005573783535510302,0.0015451861545443535,155 +illusion_1L,sr,156,46.8,0.876298725605011,0.41310691833496094,0.7335239052772522,0.6457793712615967,0.9390134811401367,0.38096320629119873,0.0019169998122379184,1.4608675883209798e-05,0.002297383500263095,0.00035811614361591637,0.0022603527177125216,-0.00035519167431630194,-0.004439798253269185,0.001129795041725317,0.001129795041725317,-4.439798253269185e-05,1.129795041725317e-05,1.129795041725317e-05,0.005636546760797501,0.001829120796173811,156 +illusion_1L,sr,157,47.1,0.7830051779747009,0.41731327772140503,0.7664175629615784,0.6655389666557312,0.9923000335693359,0.40952515602111816,0.0019115755567327142,1.0603445844026282e-05,0.002285222988575697,0.0003510217647999525,0.0022573787719011307,-0.00036753297899849713,-0.0036607863729308204,0.0009032997921558824,0.0009032997921558824,-3.6607863729308206e-05,9.032997921558824e-06,9.032997921558824e-06,0.005716180428862572,0.00200505624525249,157 +illusion_1L,sr,158,47.4,0.7269205451011658,0.379619836807251,0.7899629473686218,0.686936616897583,1.0488392114639282,0.4321371912956238,0.0019090687856078148,6.749979093001457e-06,0.0022754413075745106,0.0003433443489484489,0.002258239546790719,-0.00037758954567834735,-0.003539444742553161,0.0012615923581399333,0.0012615923581399333,-3.539444742553161e-05,1.2615923581399332e-05,1.2615923581399332e-05,0.005756895989179611,0.0020619675051420927,158 +illusion_1L,sr,159,47.7,0.6837540864944458,0.32360169291496277,0.8039831519126892,0.6920219659805298,1.1081249713897705,0.44813960790634155,0.0019076494500041008,1.925761807797244e-06,0.002266682917252183,0.00033364497357979417,0.0022608661092817783,-0.0003850769135169685,-0.0017751215099100683,0.0004748162798019085,0.0004748162798019085,-1.7751215099100684e-05,4.748162798019085e-06,4.748162798019085e-06,0.005743067711591721,0.001995726488530636,159 +illusion_1L,sr,160,48.0,0.643945038318634,0.25447550415992737,0.8068845868110657,0.6563785076141357,1.1697593927383423,0.4563915431499481,0.0019108365522697568,-2.994521537402761e-06,0.0022637126967310905,0.0003234938776586205,0.0022693926002830267,-0.0003886060731019825,-0.001336781685650372,0.000705710281771917,0.000705710281771917,-1.336781685650372e-05,7.05710281771917e-06,7.05710281771917e-06,0.005714329890906811,0.001809444511309266,160 +illusion_1L,sr,161,48.3,0.6106903553009033,0.1709597110748291,0.7968727350234985,0.5637637972831726,1.2330379486083984,0.4550231397151947,0.001915019005537033,-7.091284260241082e-06,0.0022625515703111887,0.0003141505876556039,0.002279397565871477,-0.0003894758119713515,-0.000994700079152912,0.0010133030761644724,0.0010133030761644724,-9.94700079152912e-06,1.0133030761644725e-05,1.0133030761644725e-05,0.005683825351297855,0.0015134024433791637,161 +illusion_1L,sr,162,48.6,0.5941174626350403,0.0780365839600563,0.7726181745529175,0.42103806138038635,1.2946697473526,0.4405502378940582,0.001915805391035974,-1.1136101420561317e-05,0.002258514752611518,0.0003066753561142832,0.002285446971654892,-0.0003891118394676596,0.0007455783557806413,0.00026986634841809007,0.00026986634841809007,7.455783557806413e-06,2.6986634841809006e-06,2.6986634841809006e-06,0.0056352922692894936,0.0011245590867474675,162 +illusion_1L,sr,163,48.9,0.6042895317077637,-0.011420037597417831,0.7323058843612671,0.24283351004123688,1.348054051399231,0.4073573350906372,0.0019139343639835715,-1.4386082511919085e-05,0.002251869533210993,0.0003026958729606122,0.0022875326685607433,-0.00038699645665474236,0.0016068518399977895,0.00012436788968767445,0.00012436788968767445,1.6068518399977895e-05,1.2436788968767445e-06,1.2436788968767445e-06,0.005594110582023859,0.0006656530895270407,163 +illusion_1L,sr,164,49.2,0.6431841850280762,-0.0850972980260849,0.6781630516052246,0.03315451741218567,1.3852694034576416,0.3489764332771301,0.001915749511681497,-1.6828029401949607e-05,0.002250564517453313,0.00030206277733668685,0.0022933282889425755,-0.0003843926824629307,0.0028712537125964582,-0.0003856235512444129,-0.0003856235512444129,2.871253712596458e-05,-3.856235512444129e-06,-3.856235512444129e-06,0.005593768786638975,0.00016393783153034747,164 +illusion_1L,sr,165,49.5,0.6936328411102295,-0.1447383612394333,0.6175974011421204,-0.20069558918476105,1.3886733055114746,0.2579643726348877,0.001910500694066286,-1.8925082258647308e-05,0.0022419081069529057,0.0003035767003893852,0.0022894281428307295,-0.00038013284211046994,0.004314898013804566,-0.0011078071903225621,-0.0011078071903225621,4.3148980138045664e-05,-1.1078071903225622e-05,-1.1078071903225622e-05,0.005601159762591124,-0.0003503881162032485,165 +illusion_1L,sr,166,49.8,0.7457420229911804,-0.20301344990730286,0.5762923359870911,-0.42753586173057556,1.3581370115280151,0.13186998665332794,0.0019113213056698442,-1.9765824617934413e-05,0.0022417122963815928,0.00030996467103250325,0.002291902666911483,-0.00037642536335624754,0.004329453902715795,-0.0008865780791999337,-0.0008865780791999337,4.3294539027157954e-05,-8.865780791999337e-06,-8.865780791999337e-06,0.005579833872616291,-0.0008459693053737283,166 +illusion_1L,sr,167,50.1,0.7936472296714783,-0.25971704721450806,0.577466607093811,-0.5813726186752319,1.276551365852356,-0.027758115902543068,0.001911871018819511,-1.97013341676211e-05,0.002242492977529764,0.00031808545463718474,0.00229279650375247,-0.0003720561508089304,0.0050325696601478676,-0.0012767481769670568,-0.0012767481769670568,5.032569660147868e-05,-1.2767481769670568e-05,-1.2767481769670568e-05,0.005568155087530613,-0.001292198314331472,167 +illusion_1L,sr,168,50.4,0.8412706255912781,-0.3097054660320282,0.6244255304336548,-0.631425142288208,1.1417003870010376,-0.20173856616020203,0.0019123374950140715,-1.8953849576064385e-05,0.002244574949145317,0.0003278921649325639,0.002292271936312318,-0.0003667190612759441,0.005269055056072218,-0.0014462678651884185,-0.0014462678651884185,5.269055056072218e-05,-1.4462678651884186e-05,-1.4462678651884186e-05,0.005600422155112028,-0.001661122078076005,168 +illusion_1L,sr,169,50.7,0.8924340009689331,-0.35209235548973083,0.684566080570221,-0.6355960965156555,0.9857645630836487,-0.3437359631061554,0.0019137434428557754,-1.6874830180313438e-05,0.0022488641552627087,0.0003405208990443498,0.002291672630235553,-0.0003619906201492995,0.004431673968601328,-0.0009536068390815326,-0.0009536068390815326,4.431673968601328e-05,-9.536068390815326e-06,-9.536068390815326e-06,0.005640667863190174,-0.001929230522364378,169 +illusion_1L,sr,170,51.0,0.9457166790962219,-0.3872022032737732,0.7305297255516052,-0.6475406885147095,0.8520500659942627,-0.4126031994819641,0.0019118417985737324,-1.4045884199731518e-05,0.0022498578764498234,0.00035358694731257856,0.0022855212446302176,-0.0003573834546841681,0.0042591059331442485,-0.0010643310383166363,-0.0010643310383166363,4.259105933144249e-05,-1.0643310383166363e-05,-1.0643310383166363e-05,0.005670505575835705,-0.0020790090784430504,170 +illusion_1L,sr,171,51.3,1.0008370876312256,-0.415610134601593,0.7623763084411621,-0.6693851947784424,0.7643964886665344,-0.4102383852005005,0.001909598708152771,-1.0552326784818433e-05,0.0022509321570396423,0.0003656211483757943,0.0022776201367378235,-0.00035133326309733093,0.003573803293461443,-0.0009056178586670099,-0.0009056178586670099,3.573803293461443e-05,-9.0561785866701e-06,-9.0561785866701e-06,0.005723041016608477,-0.002100147772580385,171 +illusion_1L,sr,172,51.6,1.0580742359161377,-0.4375266432762146,0.7838143706321716,-0.6893254518508911,0.7106127738952637,-0.36871469020843506,0.00190767424646765,-6.18753301750985e-06,0.002252493053674698,0.00037556211464107037,0.0022690340410917997,-0.00034366926411166787,0.0025889860154128634,-0.0006144913244124257,-0.0006144913244124257,2.5889860154128634e-05,-6.144913244124258e-06,-6.144913244124258e-06,0.005777770187705755,-0.0019903185311704874,172 +illusion_1L,sr,173,51.9,1.117707371711731,-0.452529639005661,0.7951650619506836,-0.6889809966087341,0.6692063808441162,-0.31012871861457825,0.0019055104348808527,-1.7744696378940716e-06,0.002254101913422346,0.00038249915814958513,0.0022597324568778276,-0.00033514125971123576,0.002332801633847475,-0.0009198254760038604,-0.0009198254760038604,2.3328016338474753e-05,-9.198254760038605e-06,-9.198254760038605e-06,0.005763606168329716,-0.0017554573714733124,173 +illusion_1L,sr,174,52.2,1.1796576976776123,-0.459434449672699,0.795147716999054,-0.6442866921424866,0.6315450668334961,-0.2385256141424179,0.00190494314301759,2.697544232432847e-06,0.0022578411735594273,0.0003865351900458336,0.002252505859360099,-0.00032562066917307675,0.001479007496181968,-0.0008200671508091784,-0.0008200671508091784,1.479007496181968e-05,-8.200671508091783e-06,-8.200671508091783e-06,0.005690249614417553,-0.0014095163205638528,174 +illusion_1L,sr,175,52.5,1.2426691055297852,-0.45598897337913513,0.7825630307197571,-0.5424770712852478,0.6018880009651184,-0.15378111600875854,0.0019086945103481412,6.996157935645897e-06,0.002266900148242712,0.00038745487108826637,0.0022511000279337168,-0.0003162334905937314,0.0006963067749028084,-0.000775632984107673,-0.000775632984107673,6.963067749028084e-06,-7.75632984107673e-06,-7.75632984107673e-06,0.005629390478134155,-0.0009736909996718168,175 +illusion_1L,sr,176,52.8,1.3030706644058228,-0.4383481442928314,0.7563117146492004,-0.39330700039863586,0.5905919075012207,-0.06202308088541031,0.0019122688099741936,1.0456198651809245e-05,0.0022758354898542166,0.00038640410639345646,0.00225043878890574,-0.0003089730744250119,1.3234098008090346e-05,-0.0007804999527445972,-0.0007804999527445972,1.3234098008090347e-07,-7.804999527445972e-06,-7.804999527445972e-06,0.005584970116615295,-0.00047515766345895827,176 +illusion_1L,sr,177,53.1,1.3535045385360718,-0.4007978141307831,0.7145704627037048,-0.2110716700553894,0.6068259477615356,0.023406777530908585,0.0019124426180496812,1.3629545719595626e-05,0.0022805205080658197,0.00038476812187582254,0.002246896969154477,-0.0003044839249923825,-0.0016081142586867152,-4.853338086444059e-05,-4.853338086444059e-05,-1.6081142586867153e-05,-4.853338086444059e-07,-4.853338086444059e-07,0.005531984381377697,5.460584725369699e-05,177 +illusion_1L,sr,178,53.4,1.3836909532546997,-0.3366525173187256,0.6587038636207581,0.00181065674405545,0.6488760113716125,0.09271588921546936,0.0019105217652395368,1.6207406588364393e-05,0.0022817368153482676,0.0003822047438006848,0.002241595182567835,-0.00030353962210938334,-0.0025703507074990514,0.0002623926072280493,0.0002623926072280493,-2.5703507074990515e-05,2.623926072280493e-06,2.623926072280493e-06,0.005518179386854172,0.0005818125791847706,178 +illusion_1L,sr,179,53.7,1.3837727308273315,-0.2414979338645935,0.6006935834884644,0.23546326160430908,0.7011807560920715,0.15090471506118774,0.0019089959096163511,1.7782940631150268e-05,0.0022824567276984453,0.0003789708425756544,0.002237764885649085,-0.00030576836434192955,-0.003201364514405447,0.00041150753980908136,0.00041150753980908136,-3.201364514405447e-05,4.1150753980908135e-06,4.1150753980908135e-06,0.005577066447585821,0.0010725450702011585,179 +illusion_1L,sr,180,54.0,1.3457831144332886,-0.1131465882062912,0.5630621314048767,0.4531671702861786,0.7508118152618408,0.20868359506130219,0.001906825928017497,1.867259015853051e-05,0.002281021559610963,0.00037560542114079,0.0022340603172779083,-0.00031100891646929085,-0.004104401621462854,0.0008579560293935155,0.0008579560293935155,-4.104401621462854e-05,8.579560293935155e-06,8.579560293935155e-06,0.005638485308736563,0.0014949759934097528,180 +illusion_1L,sr,181,54.3,1.2598956823349,0.04592511057853699,0.5706769824028015,0.5933223366737366,0.7979490756988525,0.2650870680809021,0.001904669450595975,1.8659002307686023e-05,0.0022784871980547905,0.0003717497456818819,0.002231609309092164,-0.00031906194635666907,-0.004340374688393302,0.0009219183611784352,0.0009219183611784352,-4.340374688393302e-05,9.219183611784352e-06,9.219183611784352e-06,0.005652999971061945,0.001821481972001493,181 +illusion_1L,sr,182,54.6,1.1250487565994263,0.21542790532112122,0.6227372288703918,0.6341497898101807,0.8464387655258179,0.31479573249816895,0.0019059065962210298,1.7593121810932644e-05,0.0022788133937865496,0.00036722005461342633,0.002234424464404583,-0.0003288441803306341,-0.004292299899634526,0.0008904007196409609,0.0008904007196409609,-4.292299899634526e-05,8.904007196409609e-06,8.904007196409609e-06,0.005672627128660679,0.002030503237619996,182 +illusion_1L,sr,183,54.9,0.969194769859314,0.35066404938697815,0.6828027367591858,0.6372556090354919,0.897466242313385,0.35666564106941223,0.0019093957962468266,1.568583866173867e-05,0.0022804478649049997,0.0003622392541728914,0.002240903442725539,-0.0003399177803657949,-0.0042196304188110295,0.0009580204462436397,0.0009580204462436397,-4.2196304188110295e-05,9.580204462436397e-06,9.580204462436397e-06,0.005716722924262285,0.0021080211736261845,183 +illusion_1L,sr,184,55.2,0.8376284241676331,0.4128666818141937,0.7273511290550232,0.6506624221801758,0.950714647769928,0.39123713970184326,0.0019101930083706975,1.2882738701591734e-05,0.002277976833283901,0.00035697119892574847,0.0022453307174146175,-0.00035194269730709493,-0.0037327040049933424,0.0008339197170531866,0.0008339197170531866,-3.7327040049933425e-05,8.339197170531866e-06,8.339197170531866e-06,0.0057253409177064896,0.0020485445857048035,184 +illusion_1L,sr,185,55.5,0.7519130110740662,0.40633246302604675,0.758167028427124,0.6728020906448364,1.0061149597167969,0.41915377974510193,0.00190820696298033,9.385554221807979e-06,0.0022707723546773195,0.0003511644317768514,0.0022467272356152534,-0.00036360236117616296,-0.0032194458418820654,0.000790510054352763,0.000790510054352763,-3.2194458418820655e-05,7.90510054352763e-06,7.90510054352763e-06,0.005700415000319481,0.001855533104389906,185 +illusion_1L,sr,186,55.8,0.69936203956604,0.36223748326301575,0.7785758972167969,0.6910611391067505,1.0638123750686646,0.44051021337509155,0.0019064826192334294,5.281160156300757e-06,0.0022629902232438326,0.00034397977287881076,0.002248728647828102,-0.0003733877674676478,-0.002584049313777533,0.0007397518241371893,0.0007397518241371893,-2.5840493137775332e-05,7.3975182413718935e-06,7.3975182413718935e-06,0.00570518197491765,0.0015412241918966174,186 +illusion_1L,sr,187,56.1,0.6591344475746155,0.3014570474624634,0.7886465787887573,0.686160683631897,1.1238938570022583,0.4547533094882965,0.0019047848181799054,9.38372693326528e-07,0.002254560124129057,0.00033574283588677645,0.0022506790701299906,-0.0003805840970017016,-0.002122210045002777,0.0008751380917806154,0.0008751380917806154,-2.122210045002777e-05,8.751380917806154e-06,8.751380917806154e-06,0.005713063757866621,0.0011258659651502967,187 +illusion_1L,sr,188,56.4,0.6232054829597473,0.2279372662305832,0.7871324419975281,0.6347103118896484,1.1859710216522217,0.4605581760406494,0.001902777119539678,-3.2702841963327955e-06,0.0022459423635154963,0.0003270198358222842,0.002252526581287384,-0.0003850285429507494,-0.0016073111598544692,0.0010003708741570824,0.0010003708741570824,-1.6073111598544692e-05,1.0003708741570824e-05,1.0003708741570824e-05,0.00565308379009366,0.0006364086293615401,188 +illusion_1L,sr,189,56.7,0.59620600938797,0.14213189482688904,0.7731265425682068,0.5264925956726074,1.248656153678894,0.45550164580345154,0.00190296012442559,-7.2155953603214584e-06,0.0022404256742447615,0.0003184024535585195,0.002256999956443906,-0.0003866012266371399,-0.0007380980075530974,0.0008674850828651343,0.0008674850828651343,-7.3809800755309744e-06,8.674850828651343e-06,8.674850828651343e-06,0.005567865911871195,0.00010473776637809351,189 +illusion_1L,sr,190,57.0,0.5886932611465454,0.05125794559717178,0.7456586360931396,0.37328556180000305,1.3078142404556274,0.43555644154548645,0.001906930236145854,-1.0630733413563576e-05,0.002240287372842431,0.00031096988823264837,0.0022660198155790567,-0.0003856164694298059,0.00024078261379431934,0.0006302469420156245,0.0006302469420156245,2.4078261379431935e-06,6.302469420156244e-06,6.302469420156244e-06,0.005537909455597401,-0.0004344300541561097,190 +illusion_1L,sr,191,57.3,0.6089995503425598,-0.031395118683576584,0.7029578685760498,0.1886482536792755,1.355870008468628,0.39506766200065613,0.0019098311895504594,-1.3657081581186503e-05,0.002240037778392434,0.00030617284937761724,0.0022736683022230864,-0.0003836824034806341,0.0015544221933936932,0.00010465154668724482,0.00010465154668724482,1.5544221933936932e-05,1.0465154668724482e-06,1.0465154668724482e-06,0.005537074990570545,-0.000945847132243216,191 +illusion_1L,sr,192,57.6,0.6534997820854187,-0.09787986427545547,0.6469678282737732,-0.02515171281993389,1.3827741146087646,0.32801681756973267,0.0019093964947387576,-1.62127962539671e-05,0.002236895030364394,0.0003049515071325004,0.0022767409682273865,-0.00038145188591443,0.0025198824633613608,-0.00022469684677906002,-0.00022469684677906002,2.5198824633613607e-05,-2.2469684677906e-06,-2.2469684677906e-06,0.005531030707061291,-0.0013960730284452438,192 +illusion_1L,sr,193,57.9,0.7060971856117249,-0.15533952414989471,0.5899729132652283,-0.25795814394950867,1.3794139623641968,0.23046272993087769,0.0019075487507507205,-1.7651054804446176e-05,0.002232935279607773,0.000307264068396762,0.0022771183867007494,-0.00037864624755457044,0.0029201788016046046,-0.0002178060172833944,-0.0002178060172833944,2.9201788016046046e-05,-2.178060172833944e-06,-2.178060172833944e-06,0.00557838287204504,-0.0017556919483467937,193 +illusion_1L,sr,194,58.2,0.7550202012062073,-0.21312955021858215,0.5554307699203491,-0.46939554810523987,1.3386403322219849,0.10183751583099365,0.0019057901808992028,-1.848338797572069e-05,0.0022299932315945625,0.0003122405905742198,0.002276336308568716,-0.00037572288420051336,0.003912050248279134,-0.0007403987127766395,-0.0007403987127766395,3.9120502482791336e-05,-7.403987127766396e-06,-7.403987127766396e-06,0.0056895059533417225,-0.0020012580789625645,194 +illusion_1L,sr,195,58.5,0.8017910122871399,-0.2692604660987854,0.5672155022621155,-0.5999923944473267,1.251032829284668,-0.0552135594189167,0.0019033924909308553,-1.866607999545522e-05,0.0022272842470556498,0.00032001888030208647,0.002273423131555319,-0.0003723106347024441,0.0041664094988433445,-0.0008233077732845221,-0.0008233077732845221,4.1664094988433446e-05,-8.233077732845221e-06,-8.233077732845221e-06,0.005760743748396635,-0.002116837538778782,195 +illusion_1L,sr,196,58.8,0.850082278251648,-0.31852689385414124,0.6216601729393005,-0.6344842314720154,1.115636944770813,-0.2204875499010086,0.0019017088925465941,-1.7329426555079408e-05,0.0022263384889811277,0.00032986464793793857,0.002270005876198411,-0.00036805515992455184,0.0036027537409219763,-0.0004160672397757332,-0.0004160672397757332,3.6027537409219765e-05,-4.160672397757332e-06,-4.160672397757332e-06,0.005753485951572657,-0.0020950448233634233,196 +illusion_1L,sr,197,59.1,0.9007692337036133,-0.35992690920829773,0.6810017228126526,-0.6372533440589905,0.9604215621948242,-0.3504437506198883,0.0019037321908399463,-1.5510178855038248e-05,0.002230950864031911,0.00033999464358203113,0.002269850578159094,-0.00036325285327620804,0.004105041382406582,-0.0009084008213200609,-0.0009084008213200609,4.105041382406582e-05,-9.084008213200609e-06,-9.084008213200609e-06,0.005740967579185963,-0.0019375038100406528,197 +illusion_1L,sr,198,59.4,0.9538045525550842,-0.39415329694747925,0.7242145538330078,-0.6515437364578247,0.8292720317840576,-0.40898633003234863,0.0019068281399086118,-1.2868262274423614e-05,0.0022378540597856045,0.0003509789239615202,0.0022699455730617046,-0.00035737341386266053,0.0035065391812065944,-0.0006979672699016469,-0.0006979672699016469,3.506539181206594e-05,-6.979672699016469e-06,-6.979672699016469e-06,0.005731895100325346,-0.0016547086415812373,198 +illusion_1L,sr,199,59.7,1.0091736316680908,-0.42173492908477783,0.7539523839950562,-0.6736327409744263,0.7436742186546326,-0.40068742632865906,0.0019072724971920252,-9.085722922463901e-06,0.0022423649206757545,0.0003619600320234895,0.0022661711554974318,-0.00035105703864246607,0.0027428126102734957,-0.00046477336982942916,-0.00046477336982942916,2.7428126102734956e-05,-4.647733698294292e-06,-4.647733698294292e-06,0.00566871277987957,-0.0012652967125177383,199 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_long.csv new file mode 100644 index 0000000..e171b52 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +illusion_1L,target,0,0.0,velocity,upper_ux,1.1252347230911255 +illusion_1L,target,0,0.0,velocity,upper_uy,-0.40857818722724915 +illusion_1L,target,0,0.0,velocity,center_ux,0.9915034174919128 +illusion_1L,target,0,0.0,velocity,center_uy,-0.6467664837837219 +illusion_1L,target,0,0.0,velocity,lower_ux,0.8765729665756226 +illusion_1L,target,0,0.0,velocity,lower_uy,-0.3825545608997345 +illusion_1L,target,1,0.3,velocity,upper_ux,1.1900655031204224 +illusion_1L,target,1,0.3,velocity,upper_uy,-0.4265606701374054 +illusion_1L,target,1,0.3,velocity,center_ux,0.986445426940918 +illusion_1L,target,1,0.3,velocity,center_uy,-0.6708802580833435 +illusion_1L,target,1,0.3,velocity,lower_ux,0.8146154284477234 +illusion_1L,target,1,0.3,velocity,lower_uy,-0.3382817208766937 +illusion_1L,target,2,0.6,velocity,upper_ux,1.2670818567276 +illusion_1L,target,2,0.6,velocity,upper_uy,-0.4411216676235199 +illusion_1L,target,2,0.6,velocity,center_ux,0.9622041583061218 +illusion_1L,target,2,0.6,velocity,center_uy,-0.6515958905220032 +illusion_1L,target,2,0.6,velocity,lower_ux,0.7533536553382874 +illusion_1L,target,2,0.6,velocity,lower_uy,-0.260587215423584 +illusion_1L,target,3,0.9,velocity,upper_ux,1.354554295539856 +illusion_1L,target,3,0.9,velocity,upper_uy,-0.43976256251335144 +illusion_1L,target,3,0.9,velocity,center_ux,0.9133744239807129 +illusion_1L,target,3,0.9,velocity,center_uy,-0.5183886885643005 +illusion_1L,target,3,0.9,velocity,lower_ux,0.7012986540794373 +illusion_1L,target,3,0.9,velocity,lower_uy,-0.1458350270986557 +illusion_1L,target,4,1.2,velocity,upper_ux,1.424862027168274 +illusion_1L,target,4,1.2,velocity,upper_uy,-0.37098604440689087 +illusion_1L,target,4,1.2,velocity,center_ux,0.8598676323890686 +illusion_1L,target,4,1.2,velocity,center_uy,-0.24441905319690704 +illusion_1L,target,4,1.2,velocity,lower_ux,0.6738600730895996 +illusion_1L,target,4,1.2,velocity,lower_uy,-0.008690298534929752 +illusion_1L,target,5,1.5,velocity,upper_ux,1.4068875312805176 +illusion_1L,target,5,1.5,velocity,upper_uy,-0.15388287603855133 +illusion_1L,target,5,1.5,velocity,center_ux,0.8294057250022888 +illusion_1L,target,5,1.5,velocity,center_uy,0.10335935652256012 +illusion_1L,target,5,1.5,velocity,lower_ux,0.6852775812149048 +illusion_1L,target,5,1.5,velocity,lower_uy,0.11723126471042633 +illusion_1L,target,6,1.8,velocity,upper_ux,1.304710865020752 +illusion_1L,target,6,1.8,velocity,upper_uy,0.1366477906703949 +illusion_1L,target,6,1.8,velocity,center_ux,0.8315333724021912 +illusion_1L,target,6,1.8,velocity,center_uy,0.41662681102752686 +illusion_1L,target,6,1.8,velocity,lower_ux,0.7345737218856812 +illusion_1L,target,6,1.8,velocity,lower_uy,0.20306912064552307 +illusion_1L,target,7,2.1,velocity,upper_ux,1.1981141567230225 +illusion_1L,target,7,2.1,velocity,upper_uy,0.33661341667175293 +illusion_1L,target,7,2.1,velocity,center_ux,0.8602028489112854 +illusion_1L,target,7,2.1,velocity,center_uy,0.59787517786026 +illusion_1L,target,7,2.1,velocity,lower_ux,0.8006802797317505 +illusion_1L,target,7,2.1,velocity,lower_uy,0.25577130913734436 +illusion_1L,target,8,2.4,velocity,upper_ux,1.1184349060058594 +illusion_1L,target,8,2.4,velocity,upper_uy,0.4138311743736267 +illusion_1L,target,8,2.4,velocity,center_ux,0.901807427406311 +illusion_1L,target,8,2.4,velocity,center_uy,0.63271164894104 +illusion_1L,target,8,2.4,velocity,lower_ux,0.8672434687614441 +illusion_1L,target,8,2.4,velocity,lower_uy,0.29589617252349854 +illusion_1L,target,9,2.7,velocity,upper_ux,1.0563114881515503 +illusion_1L,target,9,2.7,velocity,upper_uy,0.4228249490261078 +illusion_1L,target,9,2.7,velocity,center_ux,0.9360767602920532 +illusion_1L,target,9,2.7,velocity,center_uy,0.6120773553848267 +illusion_1L,target,9,2.7,velocity,lower_ux,0.9269662499427795 +illusion_1L,target,9,2.7,velocity,lower_uy,0.32803744077682495 +illusion_1L,target,10,3.0,velocity,upper_ux,1.00484037399292 +illusion_1L,target,10,3.0,velocity,upper_uy,0.41632208228111267 +illusion_1L,target,10,3.0,velocity,center_ux,0.9617033004760742 +illusion_1L,target,10,3.0,velocity,center_uy,0.6030316352844238 +illusion_1L,target,10,3.0,velocity,lower_ux,0.9851977825164795 +illusion_1L,target,10,3.0,velocity,lower_uy,0.3552166819572449 +illusion_1L,target,11,3.3,velocity,upper_ux,0.9536380767822266 +illusion_1L,target,11,3.3,velocity,upper_uy,0.40763628482818604 +illusion_1L,target,11,3.3,velocity,center_ux,0.978746235370636 +illusion_1L,target,11,3.3,velocity,center_uy,0.6114534735679626 +illusion_1L,target,11,3.3,velocity,lower_ux,1.0420613288879395 +illusion_1L,target,11,3.3,velocity,lower_uy,0.37879878282546997 +illusion_1L,target,12,3.6,velocity,upper_ux,0.8986892700195312 +illusion_1L,target,12,3.6,velocity,upper_uy,0.39208051562309265 +illusion_1L,target,12,3.6,velocity,center_ux,0.988491415977478 +illusion_1L,target,12,3.6,velocity,center_uy,0.6342819333076477 +illusion_1L,target,12,3.6,velocity,lower_ux,1.100000023841858 +illusion_1L,target,12,3.6,velocity,lower_uy,0.40012505650520325 +illusion_1L,target,13,3.9,velocity,upper_ux,0.838417112827301 +illusion_1L,target,13,3.9,velocity,upper_uy,0.35896340012550354 +illusion_1L,target,13,3.9,velocity,center_ux,0.9889183640480042 +illusion_1L,target,13,3.9,velocity,center_uy,0.6632939577102661 +illusion_1L,target,13,3.9,velocity,lower_ux,1.1623815298080444 +illusion_1L,target,13,3.9,velocity,lower_uy,0.419637531042099 +illusion_1L,target,14,4.2,velocity,upper_ux,0.7756282091140747 +illusion_1L,target,14,4.2,velocity,upper_uy,0.2959301173686981 +illusion_1L,target,14,4.2,velocity,center_ux,0.9730783104896545 +illusion_1L,target,14,4.2,velocity,center_uy,0.669158399105072 +illusion_1L,target,14,4.2,velocity,lower_ux,1.233931064605713 +illusion_1L,target,14,4.2,velocity,lower_uy,0.4363117516040802 +illusion_1L,target,15,4.5,velocity,upper_ux,0.7185335755348206 +illusion_1L,target,15,4.5,velocity,upper_uy,0.19563214480876923 +illusion_1L,target,15,4.5,velocity,center_ux,0.9332308769226074 +illusion_1L,target,15,4.5,velocity,center_uy,0.5888493061065674 +illusion_1L,target,15,4.5,velocity,lower_ux,1.318116307258606 +illusion_1L,target,15,4.5,velocity,lower_uy,0.4440999925136566 +illusion_1L,target,16,4.8,velocity,upper_ux,0.6803444027900696 +illusion_1L,target,16,4.8,velocity,upper_uy,0.06476416438817978 +illusion_1L,target,16,4.8,velocity,center_ux,0.879072368144989 +illusion_1L,target,16,4.8,velocity,center_uy,0.3683299422264099 +illusion_1L,target,16,4.8,velocity,lower_ux,1.4030427932739258 +illusion_1L,target,16,4.8,velocity,lower_uy,0.4124588072299957 +illusion_1L,target,17,5.1,velocity,upper_ux,0.6761963963508606 +illusion_1L,target,17,5.1,velocity,upper_uy,-0.0704255998134613 +illusion_1L,target,17,5.1,velocity,center_ux,0.8383448123931885 +illusion_1L,target,17,5.1,velocity,center_uy,0.0373145155608654 +illusion_1L,target,17,5.1,velocity,lower_ux,1.428860068321228 +illusion_1L,target,17,5.1,velocity,lower_uy,0.25823071599006653 +illusion_1L,target,18,5.4,velocity,upper_ux,0.7128292918205261 +illusion_1L,target,18,5.4,velocity,upper_uy,-0.17391443252563477 +illusion_1L,target,18,5.4,velocity,center_ux,0.8284916281700134 +illusion_1L,target,18,5.4,velocity,center_uy,-0.3033052384853363 +illusion_1L,target,18,5.4,velocity,lower_ux,1.3514645099639893 +illusion_1L,target,18,5.4,velocity,lower_uy,-0.02567569725215435 +illusion_1L,target,19,5.7,velocity,upper_ux,0.7751514911651611 +illusion_1L,target,19,5.7,velocity,upper_uy,-0.23719777166843414 +illusion_1L,target,19,5.7,velocity,center_ux,0.8479864001274109 +illusion_1L,target,19,5.7,velocity,center_uy,-0.5462064743041992 +illusion_1L,target,19,5.7,velocity,lower_ux,1.2394816875457764 +illusion_1L,target,19,5.7,velocity,lower_uy,-0.2738589644432068 +illusion_1L,target,20,6.0,velocity,upper_ux,0.8406079411506653 +illusion_1L,target,20,6.0,velocity,upper_uy,-0.2806248366832733 +illusion_1L,target,20,6.0,velocity,center_ux,0.8846142292022705 +illusion_1L,target,20,6.0,velocity,center_uy,-0.6311026215553284 +illusion_1L,target,20,6.0,velocity,lower_ux,1.14609956741333 +illusion_1L,target,20,6.0,velocity,lower_uy,-0.39479881525039673 +illusion_1L,target,21,6.3,velocity,upper_ux,0.9019336700439453 +illusion_1L,target,21,6.3,velocity,upper_uy,-0.31584927439689636 +illusion_1L,target,21,6.3,velocity,center_ux,0.9221540093421936 +illusion_1L,target,21,6.3,velocity,center_uy,-0.620201587677002 +illusion_1L,target,21,6.3,velocity,lower_ux,1.0774809122085571 +illusion_1L,target,21,6.3,velocity,lower_uy,-0.42267081141471863 +illusion_1L,target,22,6.6,velocity,upper_ux,0.9607424736022949 +illusion_1L,target,22,6.6,velocity,upper_uy,-0.3449222445487976 +illusion_1L,target,22,6.6,velocity,center_ux,0.9513844847679138 +illusion_1L,target,22,6.6,velocity,center_uy,-0.6042891144752502 +illusion_1L,target,22,6.6,velocity,lower_ux,1.0235825777053833 +illusion_1L,target,22,6.6,velocity,lower_uy,-0.41906291246414185 +illusion_1L,target,23,6.9,velocity,upper_ux,1.0183357000350952 +illusion_1L,target,23,6.9,velocity,upper_uy,-0.3696468472480774 +illusion_1L,target,23,6.9,velocity,center_ux,0.9721341729164124 +illusion_1L,target,23,6.9,velocity,center_uy,-0.6059418320655823 +illusion_1L,target,23,6.9,velocity,lower_ux,0.9737716913223267 +illusion_1L,target,23,6.9,velocity,lower_uy,-0.41128191351890564 +illusion_1L,target,24,7.2,velocity,upper_ux,1.0767216682434082 +illusion_1L,target,24,7.2,velocity,upper_uy,-0.39180871844291687 +illusion_1L,target,24,7.2,velocity,center_ux,0.9859495759010315 +illusion_1L,target,24,7.2,velocity,center_uy,-0.6233985424041748 +illusion_1L,target,24,7.2,velocity,lower_ux,0.9217605590820312 +illusion_1L,target,24,7.2,velocity,lower_uy,-0.39951446652412415 +illusion_1L,target,25,7.5,velocity,upper_ux,1.1378496885299683 +illusion_1L,target,25,7.5,velocity,upper_uy,-0.4121100902557373 +illusion_1L,target,25,7.5,velocity,center_ux,0.9915270209312439 +illusion_1L,target,25,7.5,velocity,center_uy,-0.6517183184623718 +illusion_1L,target,25,7.5,velocity,lower_ux,0.8644842505455017 +illusion_1L,target,25,7.5,velocity,lower_uy,-0.3747829496860504 +illusion_1L,target,26,7.8,velocity,upper_ux,1.2053070068359375 +illusion_1L,target,26,7.8,velocity,upper_uy,-0.43022212386131287 +illusion_1L,target,26,7.8,velocity,center_ux,0.9835293292999268 +illusion_1L,target,26,7.8,velocity,center_uy,-0.6725254654884338 +illusion_1L,target,26,7.8,velocity,lower_ux,0.8023589253425598 +illusion_1L,target,26,7.8,velocity,lower_uy,-0.3249686658382416 +illusion_1L,target,27,8.1,velocity,upper_ux,1.2858225107192993 +illusion_1L,target,27,8.1,velocity,upper_uy,-0.4438890218734741 +illusion_1L,target,27,8.1,velocity,center_ux,0.9541552662849426 +illusion_1L,target,27,8.1,velocity,center_uy,-0.6364942193031311 +illusion_1L,target,27,8.1,velocity,lower_ux,0.7419788837432861 +illusion_1L,target,27,8.1,velocity,lower_uy,-0.23983731865882874 +illusion_1L,target,28,8.4,velocity,upper_ux,1.3709977865219116 +illusion_1L,target,28,8.4,velocity,upper_uy,-0.43420445919036865 +illusion_1L,target,28,8.4,velocity,center_ux,0.8995974659919739 +illusion_1L,target,28,8.4,velocity,center_uy,-0.4722526967525482 +illusion_1L,target,28,8.4,velocity,lower_ux,0.6917169690132141 +illusion_1L,target,28,8.4,velocity,lower_uy,-0.11825936287641525 +illusion_1L,target,29,8.7,velocity,upper_ux,1.4293056726455688 +illusion_1L,target,29,8.7,velocity,upper_uy,-0.3398231267929077 +illusion_1L,target,29,8.7,velocity,center_ux,0.8494381308555603 +illusion_1L,target,29,8.7,velocity,center_uy,-0.1759316474199295 +illusion_1L,target,29,8.7,velocity,lower_ux,0.6717322468757629 +illusion_1L,target,29,8.7,velocity,lower_uy,0.019256753847002983 +illusion_1L,target,30,9.0,velocity,upper_ux,1.3901149034500122 +illusion_1L,target,30,9.0,velocity,upper_uy,-0.0935363620519638 +illusion_1L,target,30,9.0,velocity,center_ux,0.8268246650695801 +illusion_1L,target,30,9.0,velocity,center_uy,0.17392319440841675 +illusion_1L,target,30,9.0,velocity,lower_ux,0.6930293440818787 +illusion_1L,target,30,9.0,velocity,lower_uy,0.13835234940052032 +illusion_1L,target,31,9.3,velocity,upper_ux,1.282861590385437 +illusion_1L,target,31,9.3,velocity,upper_uy,0.18888334929943085 +illusion_1L,target,31,9.3,velocity,center_ux,0.8366309404373169 +illusion_1L,target,31,9.3,velocity,center_uy,0.46700748801231384 +illusion_1L,target,31,9.3,velocity,lower_ux,0.7491380572319031 +illusion_1L,target,31,9.3,velocity,lower_uy,0.21562433242797852 +illusion_1L,target,32,9.6,velocity,upper_ux,1.1808913946151733 +illusion_1L,target,32,9.6,velocity,upper_uy,0.36173632740974426 +illusion_1L,target,32,9.6,velocity,center_ux,0.869448721408844 +illusion_1L,target,32,9.6,velocity,center_uy,0.6148149371147156 +illusion_1L,target,32,9.6,velocity,lower_ux,0.8161891102790833 +illusion_1L,target,32,9.6,velocity,lower_uy,0.2644530236721039 +illusion_1L,target,33,9.9,velocity,upper_ux,1.103624939918518 +illusion_1L,target,33,9.9,velocity,upper_uy,0.4187723994255066 +illusion_1L,target,33,9.9,velocity,center_ux,0.909134030342102 +illusion_1L,target,33,9.9,velocity,center_uy,0.6285840272903442 +illusion_1L,target,33,9.9,velocity,lower_ux,0.8797383904457092 +illusion_1L,target,33,9.9,velocity,lower_uy,0.3025728762149811 +illusion_1L,target,34,10.2,velocity,upper_ux,1.0449258089065552 +illusion_1L,target,34,10.2,velocity,upper_uy,0.42209187150001526 +illusion_1L,target,34,10.2,velocity,center_ux,0.9418033957481384 +illusion_1L,target,34,10.2,velocity,center_uy,0.6086580157279968 +illusion_1L,target,34,10.2,velocity,lower_ux,0.9389824271202087 +illusion_1L,target,34,10.2,velocity,lower_uy,0.33394181728363037 +illusion_1L,target,35,10.5,velocity,upper_ux,0.9930696487426758 +illusion_1L,target,35,10.5,velocity,upper_uy,0.4148876965045929 +illusion_1L,target,35,10.5,velocity,center_ux,0.9645479321479797 +illusion_1L,target,35,10.5,velocity,center_uy,0.6034007668495178 +illusion_1L,target,35,10.5,velocity,lower_ux,0.9956961274147034 +illusion_1L,target,35,10.5,velocity,lower_uy,0.3602006137371063 +illusion_1L,target,36,10.8,velocity,upper_ux,0.9413129687309265 +illusion_1L,target,36,10.8,velocity,upper_uy,0.4054490625858307 +illusion_1L,target,36,10.8,velocity,center_ux,0.9800058007240295 +illusion_1L,target,36,10.8,velocity,center_uy,0.6149976253509521 +illusion_1L,target,36,10.8,velocity,lower_ux,1.0522788763046265 +illusion_1L,target,36,10.8,velocity,lower_uy,0.3831835687160492 +illusion_1L,target,37,11.1,velocity,upper_ux,0.8861823678016663 +illusion_1L,target,37,11.1,velocity,upper_uy,0.38720038533210754 +illusion_1L,target,37,11.1,velocity,center_ux,0.9891453981399536 +illusion_1L,target,37,11.1,velocity,center_uy,0.6400338411331177 +illusion_1L,target,37,11.1,velocity,lower_ux,1.1117162704467773 +illusion_1L,target,37,11.1,velocity,lower_uy,0.404146283864975 +illusion_1L,target,38,11.4,velocity,upper_ux,0.8263396620750427 +illusion_1L,target,38,11.4,velocity,upper_uy,0.3487412929534912 +illusion_1L,target,38,11.4,velocity,center_ux,0.9884268045425415 +illusion_1L,target,38,11.4,velocity,center_uy,0.66768878698349 +illusion_1L,target,38,11.4,velocity,lower_ux,1.176975131034851 +illusion_1L,target,38,11.4,velocity,lower_uy,0.42326757311820984 +illusion_1L,target,39,11.7,velocity,upper_ux,0.7646103501319885 +illusion_1L,target,39,11.7,velocity,upper_uy,0.27813786268234253 +illusion_1L,target,39,11.7,velocity,center_ux,0.9687802195549011 +illusion_1L,target,39,11.7,velocity,center_uy,0.661812424659729 +illusion_1L,target,39,11.7,velocity,lower_ux,1.2516202926635742 +illusion_1L,target,39,11.7,velocity,lower_uy,0.4389764964580536 +illusion_1L,target,40,12.0,velocity,upper_ux,0.7096495032310486 +illusion_1L,target,40,12.0,velocity,upper_uy,0.16984906792640686 +illusion_1L,target,40,12.0,velocity,center_ux,0.9237267971038818 +illusion_1L,target,40,12.0,velocity,center_uy,0.5546904802322388 +illusion_1L,target,40,12.0,velocity,lower_ux,1.3377283811569214 +illusion_1L,target,40,12.0,velocity,lower_uy,0.4427199363708496 +illusion_1L,target,41,12.3,velocity,upper_ux,0.6763022541999817 +illusion_1L,target,41,12.3,velocity,upper_uy,0.03481244668364525 +illusion_1L,target,41,12.3,velocity,center_ux,0.8686942458152771 +illusion_1L,target,41,12.3,velocity,center_uy,0.30467689037323 +illusion_1L,target,41,12.3,velocity,lower_ux,1.41605544090271 +illusion_1L,target,41,12.3,velocity,lower_uy,0.393574059009552 +illusion_1L,target,42,12.6,velocity,upper_ux,0.6809600591659546 +illusion_1L,target,42,12.6,velocity,upper_uy,-0.09638813138008118 +illusion_1L,target,42,12.6,velocity,center_ux,0.8339043855667114 +illusion_1L,target,42,12.6,velocity,center_uy,-0.037576403468847275 +illusion_1L,target,42,12.6,velocity,lower_ux,1.4211454391479492 +illusion_1L,target,42,12.6,velocity,lower_uy,0.20594707131385803 +illusion_1L,target,43,12.9,velocity,upper_ux,0.724606454372406 +illusion_1L,target,43,12.9,velocity,upper_uy,-0.19057606160640717 +illusion_1L,target,43,12.9,velocity,center_ux,0.8301790952682495 +illusion_1L,target,43,12.9,velocity,center_uy,-0.3663773238658905 +illusion_1L,target,43,12.9,velocity,lower_ux,1.3282777070999146 +illusion_1L,target,43,12.9,velocity,lower_uy,-0.08599714934825897 +illusion_1L,target,44,13.2,velocity,upper_ux,0.7880932092666626 +illusion_1L,target,44,13.2,velocity,upper_uy,-0.24721170961856842 +illusion_1L,target,44,13.2,velocity,center_ux,0.8534443378448486 +illusion_1L,target,44,13.2,velocity,center_uy,-0.5763831734657288 +illusion_1L,target,44,13.2,velocity,lower_ux,1.2167044878005981 +illusion_1L,target,44,13.2,velocity,lower_uy,-0.30914777517318726 +illusion_1L,target,45,13.5,velocity,upper_ux,0.8540876507759094 +illusion_1L,target,45,13.5,velocity,upper_uy,-0.2885628938674927 +illusion_1L,target,45,13.5,velocity,center_ux,0.8928506374359131 +illusion_1L,target,45,13.5,velocity,center_uy,-0.6326911449432373 +illusion_1L,target,45,13.5,velocity,lower_ux,1.129967212677002 +illusion_1L,target,45,13.5,velocity,lower_uy,-0.40604186058044434 +illusion_1L,target,46,13.8,velocity,upper_ux,0.9158453345298767 +illusion_1L,target,46,13.8,velocity,upper_uy,-0.3223944306373596 +illusion_1L,target,46,13.8,velocity,center_ux,0.9301763772964478 +illusion_1L,target,46,13.8,velocity,center_uy,-0.6157034039497375 +illusion_1L,target,46,13.8,velocity,lower_ux,1.066595196723938 +illusion_1L,target,46,13.8,velocity,lower_uy,-0.423250675201416 +illusion_1L,target,47,14.1,velocity,upper_ux,0.9743151664733887 +illusion_1L,target,47,14.1,velocity,upper_uy,-0.3504039943218231 +illusion_1L,target,47,14.1,velocity,center_ux,0.9575254321098328 +illusion_1L,target,47,14.1,velocity,center_uy,-0.603326141834259 +illusion_1L,target,47,14.1,velocity,lower_ux,1.014289379119873 +illusion_1L,target,47,14.1,velocity,lower_uy,-0.41777801513671875 +illusion_1L,target,48,14.4,velocity,upper_ux,1.031672477722168 +illusion_1L,target,48,14.4,velocity,upper_uy,-0.37471312284469604 +illusion_1L,target,48,14.4,velocity,center_ux,0.9761038422584534 +illusion_1L,target,48,14.4,velocity,center_uy,-0.6087660193443298 +illusion_1L,target,48,14.4,velocity,lower_ux,0.9629924297332764 +illusion_1L,target,48,14.4,velocity,lower_uy,-0.40948736667633057 +illusion_1L,target,49,14.7,velocity,upper_ux,1.0888770818710327 +illusion_1L,target,49,14.7,velocity,upper_uy,-0.3962743580341339 +illusion_1L,target,49,14.7,velocity,center_ux,0.9871668219566345 +illusion_1L,target,49,14.7,velocity,center_uy,-0.629150390625 +illusion_1L,target,49,14.7,velocity,lower_ux,0.9092175364494324 +illusion_1L,target,49,14.7,velocity,lower_uy,-0.3959605097770691 +illusion_1L,target,50,15.0,velocity,upper_ux,1.1501895189285278 +illusion_1L,target,50,15.0,velocity,upper_uy,-0.4161475896835327 +illusion_1L,target,50,15.0,velocity,center_ux,0.9897743463516235 +illusion_1L,target,50,15.0,velocity,center_uy,-0.6582958698272705 +illusion_1L,target,50,15.0,velocity,lower_ux,0.849947452545166 +illusion_1L,target,50,15.0,velocity,lower_uy,-0.36705029010772705 +illusion_1L,target,51,15.3,velocity,upper_ux,1.2196075916290283 +illusion_1L,target,51,15.3,velocity,upper_uy,-0.4335165321826935 +illusion_1L,target,51,15.3,velocity,center_ux,0.9778973460197449 +illusion_1L,target,51,15.3,velocity,center_uy,-0.6723489165306091 +illusion_1L,target,51,15.3,velocity,lower_ux,0.7874417901039124 +illusion_1L,target,51,15.3,velocity,lower_uy,-0.31057968735694885 +illusion_1L,target,52,15.6,velocity,upper_ux,1.3038160800933838 +illusion_1L,target,52,15.6,velocity,upper_uy,-0.4448147118091583 +illusion_1L,target,52,15.6,velocity,center_ux,0.9441414475440979 +illusion_1L,target,52,15.6,velocity,center_uy,-0.614688515663147 +illusion_1L,target,52,15.6,velocity,lower_ux,0.729535698890686 +illusion_1L,target,52,15.6,velocity,lower_uy,-0.2174752801656723 +illusion_1L,target,53,15.9,velocity,upper_ux,1.3892685174942017 +illusion_1L,target,53,15.9,velocity,upper_uy,-0.4245672821998596 +illusion_1L,target,53,15.9,velocity,center_ux,0.8890731930732727 +illusion_1L,target,53,15.9,velocity,center_uy,-0.4198022782802582 +illusion_1L,target,53,15.9,velocity,lower_ux,0.6853712797164917 +illusion_1L,target,53,15.9,velocity,lower_uy,-0.09038633108139038 +illusion_1L,target,54,16.2,velocity,upper_ux,1.4321821928024292 +illusion_1L,target,54,16.2,velocity,upper_uy,-0.2997894585132599 +illusion_1L,target,54,16.2,velocity,center_ux,0.8438051342964172 +illusion_1L,target,54,16.2,velocity,center_uy,-0.10317692160606384 +illusion_1L,target,54,16.2,velocity,lower_ux,0.6737959384918213 +illusion_1L,target,54,16.2,velocity,lower_uy,0.04669259861111641 +illusion_1L,target,55,16.5,velocity,upper_ux,1.3710359334945679 +illusion_1L,target,55,16.5,velocity,upper_uy,-0.029665237292647362 +illusion_1L,target,55,16.5,velocity,center_ux,0.8277826905250549 +illusion_1L,target,55,16.5,velocity,center_uy,0.24457430839538574 +illusion_1L,target,55,16.5,velocity,lower_ux,0.7032750844955444 +illusion_1L,target,55,16.5,velocity,lower_uy,0.15814828872680664 +illusion_1L,target,56,16.8,velocity,upper_ux,1.2592992782592773 +illusion_1L,target,56,16.8,velocity,upper_uy,0.23702949285507202 +illusion_1L,target,56,16.8,velocity,center_ux,0.842526376247406 +illusion_1L,target,56,16.8,velocity,center_uy,0.5128061175346375 +illusion_1L,target,56,16.8,velocity,lower_ux,0.762791633605957 +illusion_1L,target,56,16.8,velocity,lower_uy,0.22766919434070587 +illusion_1L,target,57,17.1,velocity,upper_ux,1.1614643335342407 +illusion_1L,target,57,17.1,velocity,upper_uy,0.3812333345413208 +illusion_1L,target,57,17.1,velocity,center_ux,0.8771281838417053 +illusion_1L,target,57,17.1,velocity,center_uy,0.625929594039917 +illusion_1L,target,57,17.1,velocity,lower_ux,0.8285796046257019 +illusion_1L,target,57,17.1,velocity,lower_uy,0.2732377350330353 +illusion_1L,target,58,17.4,velocity,upper_ux,1.088767647743225 +illusion_1L,target,58,17.4,velocity,upper_uy,0.42137178778648376 +illusion_1L,target,58,17.4,velocity,center_ux,0.9157316088676453 +illusion_1L,target,58,17.4,velocity,center_uy,0.6243324875831604 +illusion_1L,target,58,17.4,velocity,lower_ux,0.8908402323722839 +illusion_1L,target,58,17.4,velocity,lower_uy,0.30981922149658203 +illusion_1L,target,59,17.7,velocity,upper_ux,1.0332167148590088 +illusion_1L,target,59,17.7,velocity,upper_uy,0.4203713536262512 +illusion_1L,target,59,17.7,velocity,center_ux,0.9467155933380127 +illusion_1L,target,59,17.7,velocity,center_uy,0.6059727668762207 +illusion_1L,target,59,17.7,velocity,lower_ux,0.9499730467796326 +illusion_1L,target,59,17.7,velocity,lower_uy,0.3398726284503937 +illusion_1L,target,60,18.0,velocity,upper_ux,0.9831889867782593 +illusion_1L,target,60,18.0,velocity,upper_uy,0.4128629267215729 +illusion_1L,target,60,18.0,velocity,center_ux,0.9688958525657654 +illusion_1L,target,60,18.0,velocity,center_uy,0.6043649315834045 +illusion_1L,target,60,18.0,velocity,lower_ux,1.0076957941055298 +illusion_1L,target,60,18.0,velocity,lower_uy,0.36527329683303833 +illusion_1L,target,61,18.3,velocity,upper_ux,0.93182373046875 +illusion_1L,target,61,18.3,velocity,upper_uy,0.40237611532211304 +illusion_1L,target,61,18.3,velocity,center_ux,0.9839208722114563 +illusion_1L,target,61,18.3,velocity,center_uy,0.6191046237945557 +illusion_1L,target,61,18.3,velocity,lower_ux,1.0657140016555786 +illusion_1L,target,61,18.3,velocity,lower_uy,0.3878251612186432 +illusion_1L,target,62,18.6,velocity,upper_ux,0.8754756450653076 +illusion_1L,target,62,18.6,velocity,upper_uy,0.3809144198894501 +illusion_1L,target,62,18.6,velocity,center_ux,0.9911875128746033 +illusion_1L,target,62,18.6,velocity,center_uy,0.6461731791496277 +illusion_1L,target,62,18.6,velocity,lower_ux,1.1260672807693481 +illusion_1L,target,62,18.6,velocity,lower_uy,0.4084767997264862 +illusion_1L,target,63,18.9,velocity,upper_ux,0.8139335513114929 +illusion_1L,target,63,18.9,velocity,upper_uy,0.3366502523422241 +illusion_1L,target,63,18.9,velocity,center_ux,0.986350417137146 +illusion_1L,target,63,18.9,velocity,center_uy,0.6710474491119385 +illusion_1L,target,63,18.9,velocity,lower_ux,1.1920644044876099 +illusion_1L,target,63,18.9,velocity,lower_uy,0.42710575461387634 +illusion_1L,target,64,19.2,velocity,upper_ux,0.7515391707420349 +illusion_1L,target,64,19.2,velocity,upper_uy,0.2582475543022156 +illusion_1L,target,64,19.2,velocity,center_ux,0.9602108001708984 +illusion_1L,target,64,19.2,velocity,center_uy,0.6500935554504395 +illusion_1L,target,64,19.2,velocity,lower_ux,1.2681031227111816 +illusion_1L,target,64,19.2,velocity,lower_uy,0.4415237307548523 +illusion_1L,target,65,19.5,velocity,upper_ux,0.6991008520126343 +illusion_1L,target,65,19.5,velocity,upper_uy,0.14288096129894257 +illusion_1L,target,65,19.5,velocity,center_ux,0.9101796746253967 +illusion_1L,target,65,19.5,velocity,center_uy,0.5138093829154968 +illusion_1L,target,65,19.5,velocity,lower_ux,1.3550480604171753 +illusion_1L,target,65,19.5,velocity,lower_uy,0.43948888778686523 +illusion_1L,target,66,19.8,velocity,upper_ux,0.672624409198761 +illusion_1L,target,66,19.8,velocity,upper_uy,0.006087865214794874 +illusion_1L,target,66,19.8,velocity,center_ux,0.8572806715965271 +illusion_1L,target,66,19.8,velocity,center_uy,0.23821114003658295 +illusion_1L,target,66,19.8,velocity,lower_ux,1.42440664768219 +illusion_1L,target,66,19.8,velocity,lower_uy,0.36842527985572815 +illusion_1L,target,67,20.1,velocity,upper_ux,0.6859066486358643 +illusion_1L,target,67,20.1,velocity,upper_uy,-0.11899229884147644 +illusion_1L,target,67,20.1,velocity,center_ux,0.8286202549934387 +illusion_1L,target,67,20.1,velocity,center_uy,-0.10935486108064651 +illusion_1L,target,67,20.1,velocity,lower_ux,1.4055160284042358 +illusion_1L,target,67,20.1,velocity,lower_uy,0.14851003885269165 +illusion_1L,target,68,20.4,velocity,upper_ux,0.7371487021446228 +illusion_1L,target,68,20.4,velocity,upper_uy,-0.20412379503250122 +illusion_1L,target,68,20.4,velocity,center_ux,0.832758367061615 +illusion_1L,target,68,20.4,velocity,center_uy,-0.4214719533920288 +illusion_1L,target,68,20.4,velocity,lower_ux,1.3039305210113525 +illusion_1L,target,68,20.4,velocity,lower_uy,-0.14215534925460815 +illusion_1L,target,69,20.7,velocity,upper_ux,0.803798496723175 +illusion_1L,target,69,20.7,velocity,upper_uy,-0.256514310836792 +illusion_1L,target,69,20.7,velocity,center_ux,0.8623124361038208 +illusion_1L,target,69,20.7,velocity,center_uy,-0.5999436378479004 +illusion_1L,target,69,20.7,velocity,lower_ux,1.197946310043335 +illusion_1L,target,69,20.7,velocity,lower_uy,-0.33983662724494934 +illusion_1L,target,70,21.0,velocity,upper_ux,0.8682235479354858 +illusion_1L,target,70,21.0,velocity,upper_uy,-0.29605618119239807 +illusion_1L,target,70,21.0,velocity,center_ux,0.9019661545753479 +illusion_1L,target,70,21.0,velocity,center_uy,-0.6314373016357422 +illusion_1L,target,70,21.0,velocity,lower_ux,1.1161117553710938 +illusion_1L,target,70,21.0,velocity,lower_uy,-0.4141724109649658 +illusion_1L,target,71,21.3,velocity,upper_ux,0.9281047582626343 +illusion_1L,target,71,21.3,velocity,upper_uy,-0.3285662829875946 +illusion_1L,target,71,21.3,velocity,center_ux,0.9364506006240845 +illusion_1L,target,71,21.3,velocity,center_uy,-0.6116543412208557 +illusion_1L,target,71,21.3,velocity,lower_ux,1.054923415184021 +illusion_1L,target,71,21.3,velocity,lower_uy,-0.4229462146759033 +illusion_1L,target,72,21.6,velocity,upper_ux,0.9850819706916809 +illusion_1L,target,72,21.6,velocity,upper_uy,-0.3555782437324524 +illusion_1L,target,72,21.6,velocity,center_ux,0.9608793258666992 +illusion_1L,target,72,21.6,velocity,center_uy,-0.6030018925666809 +illusion_1L,target,72,21.6,velocity,lower_ux,1.0026224851608276 +illusion_1L,target,72,21.6,velocity,lower_uy,-0.4163203537464142 +illusion_1L,target,73,21.9,velocity,upper_ux,1.0416306257247925 +illusion_1L,target,73,21.9,velocity,upper_uy,-0.37906914949417114 +illusion_1L,target,73,21.9,velocity,center_ux,0.9776520729064941 +illusion_1L,target,73,21.9,velocity,center_uy,-0.6116605401039124 +illusion_1L,target,73,21.9,velocity,lower_ux,0.951253354549408 +illusion_1L,target,73,21.9,velocity,lower_uy,-0.40756842494010925 +illusion_1L,target,74,22.2,velocity,upper_ux,1.100428819656372 +illusion_1L,target,74,22.2,velocity,upper_uy,-0.40038561820983887 +illusion_1L,target,74,22.2,velocity,center_ux,0.9881208539009094 +illusion_1L,target,74,22.2,velocity,center_uy,-0.6346250772476196 +illusion_1L,target,74,22.2,velocity,lower_ux,0.8969205617904663 +illusion_1L,target,74,22.2,velocity,lower_uy,-0.3917159140110016 +illusion_1L,target,75,22.5,velocity,upper_ux,1.1641877889633179 +illusion_1L,target,75,22.5,velocity,upper_uy,-0.4198575019836426 +illusion_1L,target,75,22.5,velocity,center_ux,0.9897580146789551 +illusion_1L,target,75,22.5,velocity,center_uy,-0.6634287238121033 +illusion_1L,target,75,22.5,velocity,lower_ux,0.8380199074745178 +illusion_1L,target,75,22.5,velocity,lower_uy,-0.3580818176269531 +illusion_1L,target,76,22.8,velocity,upper_ux,1.2388546466827393 +illusion_1L,target,76,22.8,velocity,upper_uy,-0.43724003434181213 +illusion_1L,target,76,22.8,velocity,center_ux,0.9759873747825623 +illusion_1L,target,76,22.8,velocity,center_uy,-0.669447124004364 +illusion_1L,target,76,22.8,velocity,lower_ux,0.777302086353302 +illusion_1L,target,76,22.8,velocity,lower_uy,-0.2946490943431854 +illusion_1L,target,77,23.1,velocity,upper_ux,1.3215148448944092 +illusion_1L,target,77,23.1,velocity,upper_uy,-0.4439922571182251 +illusion_1L,target,77,23.1,velocity,center_ux,0.9332963228225708 +illusion_1L,target,77,23.1,velocity,center_uy,-0.5844136476516724 +illusion_1L,target,77,23.1,velocity,lower_ux,0.718410074710846 +illusion_1L,target,77,23.1,velocity,lower_uy,-0.19195044040679932 +illusion_1L,target,78,23.4,velocity,upper_ux,1.4045944213867188 +illusion_1L,target,78,23.4,velocity,upper_uy,-0.4107273519039154 +illusion_1L,target,78,23.4,velocity,center_ux,0.8781624436378479 +illusion_1L,target,78,23.4,velocity,center_uy,-0.3609769344329834 +illusion_1L,target,78,23.4,velocity,lower_ux,0.6800400018692017 +illusion_1L,target,78,23.4,velocity,lower_uy,-0.060798462480306625 +illusion_1L,target,79,23.7,velocity,upper_ux,1.4269369840621948 +illusion_1L,target,79,23.7,velocity,upper_uy,-0.2536008954048157 +illusion_1L,target,79,23.7,velocity,center_ux,0.8368450403213501 +illusion_1L,target,79,23.7,velocity,center_uy,-0.029536930844187737 +illusion_1L,target,79,23.7,velocity,lower_ux,0.6757974028587341 +illusion_1L,target,79,23.7,velocity,lower_uy,0.07356573641300201 +illusion_1L,target,80,24.0,velocity,upper_ux,1.3472930192947388 +illusion_1L,target,80,24.0,velocity,upper_uy,0.03147043660283089 +illusion_1L,target,80,24.0,velocity,center_ux,0.8270126581192017 +illusion_1L,target,80,24.0,velocity,center_uy,0.3099382221698761 +illusion_1L,target,80,24.0,velocity,lower_ux,0.7127828001976013 +illusion_1L,target,80,24.0,velocity,lower_uy,0.17589834332466125 +illusion_1L,target,81,24.3,velocity,upper_ux,1.235783576965332 +illusion_1L,target,81,24.3,velocity,upper_uy,0.27752718329429626 +illusion_1L,target,81,24.3,velocity,center_ux,0.8473293781280518 +illusion_1L,target,81,24.3,velocity,center_uy,0.5494834780693054 +illusion_1L,target,81,24.3,velocity,lower_ux,0.7757230401039124 +illusion_1L,target,81,24.3,velocity,lower_uy,0.23834258317947388 +illusion_1L,target,82,24.6,velocity,upper_ux,1.1444967985153198 +illusion_1L,target,82,24.6,velocity,upper_uy,0.395959734916687 +illusion_1L,target,82,24.6,velocity,center_ux,0.8851568698883057 +illusion_1L,target,82,24.6,velocity,center_uy,0.6312139630317688 +illusion_1L,target,82,24.6,velocity,lower_ux,0.8419991135597229 +illusion_1L,target,82,24.6,velocity,lower_uy,0.281339555978775 +illusion_1L,target,83,24.9,velocity,upper_ux,1.0772111415863037 +illusion_1L,target,83,24.9,velocity,upper_uy,0.42301610112190247 +illusion_1L,target,83,24.9,velocity,center_ux,0.9239615797996521 +illusion_1L,target,83,24.9,velocity,center_uy,0.6196895241737366 +illusion_1L,target,83,24.9,velocity,lower_ux,0.9047014117240906 +illusion_1L,target,83,24.9,velocity,lower_uy,0.31658291816711426 +illusion_1L,target,84,25.2,velocity,upper_ux,1.02363920211792 +illusion_1L,target,84,25.2,velocity,upper_uy,0.4191710948944092 +illusion_1L,target,84,25.2,velocity,center_ux,0.9531326293945312 +illusion_1L,target,84,25.2,velocity,center_uy,0.6042471528053284 +illusion_1L,target,84,25.2,velocity,lower_ux,0.9635828733444214 +illusion_1L,target,84,25.2,velocity,lower_uy,0.34554073214530945 +illusion_1L,target,85,25.5,velocity,upper_ux,0.9728673100471497 +illusion_1L,target,85,25.5,velocity,upper_uy,0.4112831950187683 +illusion_1L,target,85,25.5,velocity,center_ux,0.9730578660964966 +illusion_1L,target,85,25.5,velocity,center_uy,0.6064333319664001 +illusion_1L,target,85,25.5,velocity,lower_ux,1.0206397771835327 +illusion_1L,target,85,25.5,velocity,lower_uy,0.3702771067619324 +illusion_1L,target,86,25.8,velocity,upper_ux,0.9197821021080017 +illusion_1L,target,86,25.8,velocity,upper_uy,0.3993833661079407 +illusion_1L,target,86,25.8,velocity,center_ux,0.9855231642723083 +illusion_1L,target,86,25.8,velocity,center_uy,0.6242666840553284 +illusion_1L,target,86,25.8,velocity,lower_ux,1.0776500701904297 +illusion_1L,target,86,25.8,velocity,lower_uy,0.3922804892063141 +illusion_1L,target,87,26.1,velocity,upper_ux,0.8615261912345886 +illusion_1L,target,87,26.1,velocity,upper_uy,0.3742896616458893 +illusion_1L,target,87,26.1,velocity,center_ux,0.9901153445243835 +illusion_1L,target,87,26.1,velocity,center_uy,0.652788519859314 +illusion_1L,target,87,26.1,velocity,lower_ux,1.1380488872528076 +illusion_1L,target,87,26.1,velocity,lower_uy,0.41251611709594727 +illusion_1L,target,88,26.4,velocity,upper_ux,0.7990633249282837 +illusion_1L,target,88,26.4,velocity,upper_uy,0.3235916793346405 +illusion_1L,target,88,26.4,velocity,center_ux,0.9817292094230652 +illusion_1L,target,88,26.4,velocity,center_uy,0.6730135679244995 +illusion_1L,target,88,26.4,velocity,lower_ux,1.206039547920227 +illusion_1L,target,88,26.4,velocity,lower_uy,0.43058812618255615 +illusion_1L,target,89,26.7,velocity,upper_ux,0.7387211322784424 +illusion_1L,target,89,26.7,velocity,upper_uy,0.23751887679100037 +illusion_1L,target,89,26.7,velocity,center_ux,0.9512277245521545 +illusion_1L,target,89,26.7,velocity,center_uy,0.6336509585380554 +illusion_1L,target,89,26.7,velocity,lower_ux,1.285369634628296 +illusion_1L,target,89,26.7,velocity,lower_uy,0.44316649436950684 +illusion_1L,target,90,27.0,velocity,upper_ux,0.6915085315704346 +illusion_1L,target,90,27.0,velocity,upper_uy,0.11563225090503693 +illusion_1L,target,90,27.0,velocity,center_ux,0.8994028568267822 +illusion_1L,target,90,27.0,velocity,center_uy,0.4668494760990143 +illusion_1L,target,90,27.0,velocity,lower_ux,1.3740917444229126 +illusion_1L,target,90,27.0,velocity,lower_uy,0.43309351801872253 +illusion_1L,target,91,27.3,velocity,upper_ux,0.6729204058647156 +illusion_1L,target,91,27.3,velocity,upper_uy,-0.0222379881888628 +illusion_1L,target,91,27.3,velocity,center_ux,0.8503115177154541 +illusion_1L,target,91,27.3,velocity,center_uy,0.16734552383422852 +illusion_1L,target,91,27.3,velocity,lower_ux,1.4314154386520386 +illusion_1L,target,91,27.3,velocity,lower_uy,0.3351256549358368 +illusion_1L,target,92,27.6,velocity,upper_ux,0.6946603059768677 +illusion_1L,target,92,27.6,velocity,upper_uy,-0.14046236872673035 +illusion_1L,target,92,27.6,velocity,center_ux,0.8281951546669006 +illusion_1L,target,92,27.6,velocity,center_uy,-0.18183337152004242 +illusion_1L,target,92,27.6,velocity,lower_ux,1.3892966508865356 +illusion_1L,target,92,27.6,velocity,lower_uy,0.08646287024021149 +illusion_1L,target,93,27.9,velocity,upper_ux,0.7503046989440918 +illusion_1L,target,93,27.9,velocity,upper_uy,-0.21709352731704712 +illusion_1L,target,93,27.9,velocity,center_ux,0.8376625180244446 +illusion_1L,target,93,27.9,velocity,center_uy,-0.4726952016353607 +illusion_1L,target,93,27.9,velocity,lower_ux,1.2802762985229492 +illusion_1L,target,93,27.9,velocity,lower_uy,-0.19451873004436493 +illusion_1L,target,94,28.2,velocity,upper_ux,0.8164178729057312 +illusion_1L,target,94,28.2,velocity,upper_uy,-0.26559188961982727 +illusion_1L,target,94,28.2,velocity,center_ux,0.8697722554206848 +illusion_1L,target,94,28.2,velocity,center_uy,-0.6165415048599243 +illusion_1L,target,94,28.2,velocity,lower_ux,1.177708387374878 +illusion_1L,target,94,28.2,velocity,lower_uy,-0.3639342486858368 +illusion_1L,target,95,28.5,velocity,upper_ux,0.8794226050376892 +illusion_1L,target,95,28.5,velocity,upper_uy,-0.3034523129463196 +illusion_1L,target,95,28.5,velocity,center_ux,0.9088637232780457 +illusion_1L,target,95,28.5,velocity,center_uy,-0.6282294988632202 +illusion_1L,target,95,28.5,velocity,lower_ux,1.1008185148239136 +illusion_1L,target,95,28.5,velocity,lower_uy,-0.4187180995941162 +illusion_1L,target,96,28.8,velocity,upper_ux,0.9392709136009216 +illusion_1L,target,96,28.8,velocity,upper_uy,-0.33471953868865967 +illusion_1L,target,96,28.8,velocity,center_ux,0.9417814016342163 +illusion_1L,target,96,28.8,velocity,center_uy,-0.6082803606987 +illusion_1L,target,96,28.8,velocity,lower_ux,1.042894959449768 +illusion_1L,target,96,28.8,velocity,lower_uy,-0.42153018712997437 +illusion_1L,target,97,29.1,velocity,upper_ux,0.9972000122070312 +illusion_1L,target,97,29.1,velocity,upper_uy,-0.3608560264110565 +illusion_1L,target,97,29.1,velocity,center_ux,0.9654627442359924 +illusion_1L,target,97,29.1,velocity,center_uy,-0.6033629775047302 +illusion_1L,target,97,29.1,velocity,lower_ux,0.9924460649490356 +illusion_1L,target,97,29.1,velocity,lower_uy,-0.4143495261669159 +illusion_1L,target,98,29.4,velocity,upper_ux,1.0549784898757935 +illusion_1L,target,98,29.4,velocity,upper_uy,-0.3838416635990143 +illusion_1L,target,98,29.4,velocity,center_ux,0.9816965460777283 +illusion_1L,target,98,29.4,velocity,center_uy,-0.6153199076652527 +illusion_1L,target,98,29.4,velocity,lower_ux,0.9415742754936218 +illusion_1L,target,98,29.4,velocity,lower_uy,-0.40482765436172485 +illusion_1L,target,99,29.7,velocity,upper_ux,1.1144354343414307 +illusion_1L,target,99,29.7,velocity,upper_uy,-0.40475794672966003 +illusion_1L,target,99,29.7,velocity,center_ux,0.9904730319976807 +illusion_1L,target,99,29.7,velocity,center_uy,-0.6406040191650391 +illusion_1L,target,99,29.7,velocity,lower_ux,0.8863534331321716 +illusion_1L,target,99,29.7,velocity,lower_uy,-0.38628363609313965 +illusion_1L,target,100,30.0,velocity,upper_ux,1.1790632009506226 +illusion_1L,target,100,30.0,velocity,upper_uy,-0.42383670806884766 +illusion_1L,target,100,30.0,velocity,center_ux,0.9884620904922485 +illusion_1L,target,100,30.0,velocity,center_uy,-0.668077826499939 +illusion_1L,target,100,30.0,velocity,lower_ux,0.8255698680877686 +illusion_1L,target,100,30.0,velocity,lower_uy,-0.3472236096858978 +illusion_1L,target,101,30.3,velocity,upper_ux,1.2529010772705078 +illusion_1L,target,101,30.3,velocity,upper_uy,-0.43942996859550476 +illusion_1L,target,101,30.3,velocity,center_ux,0.9669845700263977 +illusion_1L,target,101,30.3,velocity,center_uy,-0.66070157289505 +illusion_1L,target,101,30.3,velocity,lower_ux,0.762717068195343 +illusion_1L,target,101,30.3,velocity,lower_uy,-0.2758041024208069 +illusion_1L,target,102,30.6,velocity,upper_ux,1.3384501934051514 +illusion_1L,target,102,30.6,velocity,upper_uy,-0.4426383376121521 +illusion_1L,target,102,30.6,velocity,center_ux,0.9207491874694824 +illusion_1L,target,102,30.6,velocity,center_uy,-0.5507025122642517 +illusion_1L,target,102,30.6,velocity,lower_ux,0.7074638605117798 +illusion_1L,target,102,30.6,velocity,lower_uy,-0.1670052409172058 +illusion_1L,target,103,30.9,velocity,upper_ux,1.4160964488983154 +illusion_1L,target,103,30.9,velocity,upper_uy,-0.39141646027565 +illusion_1L,target,103,30.9,velocity,center_ux,0.8660581707954407 +illusion_1L,target,103,30.9,velocity,center_uy,-0.29826438426971436 +illusion_1L,target,103,30.9,velocity,lower_ux,0.6749317049980164 +illusion_1L,target,103,30.9,velocity,lower_uy,-0.031993187963962555 +illusion_1L,target,104,31.2,velocity,upper_ux,1.4176621437072754 +illusion_1L,target,104,31.2,velocity,upper_uy,-0.20043013989925385 +illusion_1L,target,104,31.2,velocity,center_ux,0.8315907716751099 +illusion_1L,target,104,31.2,velocity,center_uy,0.043844010680913925 +illusion_1L,target,104,31.2,velocity,lower_ux,0.6802254915237427 +illusion_1L,target,104,31.2,velocity,lower_uy,0.09819047898054123 +illusion_1L,target,105,31.5,velocity,upper_ux,1.325027346611023 +illusion_1L,target,105,31.5,velocity,upper_uy,0.0918768122792244 +illusion_1L,target,105,31.5,velocity,center_ux,0.8298102021217346 +illusion_1L,target,105,31.5,velocity,center_uy,0.3712744116783142 +illusion_1L,target,105,31.5,velocity,lower_ux,0.7257251739501953 +illusion_1L,target,105,31.5,velocity,lower_uy,0.19150036573410034 +illusion_1L,target,106,31.8,velocity,upper_ux,1.216138243675232 +illusion_1L,target,106,31.8,velocity,upper_uy,0.31312447786331177 +illusion_1L,target,106,31.8,velocity,center_ux,0.8554716110229492 +illusion_1L,target,106,31.8,velocity,center_uy,0.5793166756629944 +illusion_1L,target,106,31.8,velocity,lower_ux,0.7911531925201416 +illusion_1L,target,106,31.8,velocity,lower_uy,0.24809232354164124 +illusion_1L,target,107,32.1,velocity,upper_ux,1.1295461654663086 +illusion_1L,target,107,32.1,velocity,upper_uy,0.4072645902633667 +illusion_1L,target,107,32.1,velocity,center_ux,0.8944889307022095 +illusion_1L,target,107,32.1,velocity,center_uy,0.6327395439147949 +illusion_1L,target,107,32.1,velocity,lower_ux,0.8563884496688843 +illusion_1L,target,107,32.1,velocity,lower_uy,0.28919869661331177 +illusion_1L,target,108,32.4,velocity,upper_ux,1.0652364492416382 +illusion_1L,target,108,32.4,velocity,upper_uy,0.42339012026786804 +illusion_1L,target,108,32.4,velocity,center_ux,0.9307183027267456 +illusion_1L,target,108,32.4,velocity,center_uy,0.6152138113975525 +illusion_1L,target,108,32.4,velocity,lower_ux,0.9170976877212524 +illusion_1L,target,108,32.4,velocity,lower_uy,0.3229827284812927 +illusion_1L,target,109,32.7,velocity,upper_ux,1.0120295286178589 +illusion_1L,target,109,32.7,velocity,upper_uy,0.4177010655403137 +illusion_1L,target,109,32.7,velocity,center_ux,0.9569888114929199 +illusion_1L,target,109,32.7,velocity,center_uy,0.6032145023345947 +illusion_1L,target,109,32.7,velocity,lower_ux,0.974592387676239 +illusion_1L,target,109,32.7,velocity,lower_uy,0.35090702772140503 +illusion_1L,target,110,33.0,velocity,upper_ux,0.9601144194602966 +illusion_1L,target,110,33.0,velocity,upper_uy,0.4092765748500824 +illusion_1L,target,110,33.0,velocity,center_ux,0.9753270745277405 +illusion_1L,target,110,33.0,velocity,center_uy,0.6090940237045288 +illusion_1L,target,110,33.0,velocity,lower_ux,1.0320621728897095 +illusion_1L,target,110,33.0,velocity,lower_uy,0.37529170513153076 +illusion_1L,target,111,33.3,velocity,upper_ux,0.9075194001197815 +illusion_1L,target,111,33.3,velocity,upper_uy,0.39563891291618347 +illusion_1L,target,111,33.3,velocity,center_ux,0.9867957830429077 +illusion_1L,target,111,33.3,velocity,center_uy,0.6294578909873962 +illusion_1L,target,111,33.3,velocity,lower_ux,1.0892562866210938 +illusion_1L,target,111,33.3,velocity,lower_uy,0.3965487480163574 +illusion_1L,target,112,33.6,velocity,upper_ux,0.8494704961776733 +illusion_1L,target,112,33.6,velocity,upper_uy,0.3662659525871277 +illusion_1L,target,112,33.6,velocity,center_ux,0.9905022978782654 +illusion_1L,target,112,33.6,velocity,center_uy,0.6584954857826233 +illusion_1L,target,112,33.6,velocity,lower_ux,1.1518412828445435 +illusion_1L,target,112,33.6,velocity,lower_uy,0.41638851165771484 +illusion_1L,target,113,33.9,velocity,upper_ux,0.7887881994247437 +illusion_1L,target,113,33.9,velocity,upper_uy,0.30923306941986084 +illusion_1L,target,113,33.9,velocity,center_ux,0.9806240797042847 +illusion_1L,target,113,33.9,velocity,center_uy,0.672895073890686 +illusion_1L,target,113,33.9,velocity,lower_ux,1.2245625257492065 +illusion_1L,target,113,33.9,velocity,lower_uy,0.4345240294933319 +illusion_1L,target,114,34.2,velocity,upper_ux,0.7283728122711182 +illusion_1L,target,114,34.2,velocity,upper_uy,0.21429644525051117 +illusion_1L,target,114,34.2,velocity,center_ux,0.9429059028625488 +illusion_1L,target,114,34.2,velocity,center_uy,0.6107417941093445 +illusion_1L,target,114,34.2,velocity,lower_ux,1.3044742345809937 +illusion_1L,target,114,34.2,velocity,lower_uy,0.44412150979042053 +illusion_1L,target,115,34.5,velocity,upper_ux,0.6849962472915649 +illusion_1L,target,115,34.5,velocity,upper_uy,0.08662295341491699 +illusion_1L,target,115,34.5,velocity,center_ux,0.8881716728210449 +illusion_1L,target,115,34.5,velocity,center_uy,0.41327011585235596 +illusion_1L,target,115,34.5,velocity,lower_ux,1.391050100326538 +illusion_1L,target,115,34.5,velocity,lower_uy,0.4233848750591278 +illusion_1L,target,116,34.8,velocity,upper_ux,0.6733570098876953 +illusion_1L,target,116,34.8,velocity,upper_uy,-0.050155896693468094 +illusion_1L,target,116,34.8,velocity,center_ux,0.8422419428825378 +illusion_1L,target,116,34.8,velocity,center_uy,0.0949486568570137 +illusion_1L,target,116,34.8,velocity,lower_ux,1.430873155593872 +illusion_1L,target,116,34.8,velocity,lower_uy,0.29540732502937317 +illusion_1L,target,117,35.1,velocity,upper_ux,0.7031682133674622 +illusion_1L,target,117,35.1,velocity,upper_uy,-0.16016045212745667 +illusion_1L,target,117,35.1,velocity,center_ux,0.8263111710548401 +illusion_1L,target,117,35.1,velocity,center_uy,-0.2509993612766266 +illusion_1L,target,117,35.1,velocity,lower_ux,1.3673806190490723 +illusion_1L,target,117,35.1,velocity,lower_uy,0.024247528985142708 +illusion_1L,target,118,35.4,velocity,upper_ux,0.7646104693412781 +illusion_1L,target,118,35.4,velocity,upper_uy,-0.22920039296150208 +illusion_1L,target,118,35.4,velocity,center_ux,0.8432068824768066 +illusion_1L,target,118,35.4,velocity,center_uy,-0.5173985958099365 +illusion_1L,target,118,35.4,velocity,lower_ux,1.2578527927398682 +illusion_1L,target,118,35.4,velocity,lower_uy,-0.24137374758720398 +illusion_1L,target,119,35.7,velocity,upper_ux,0.8301838636398315 +illusion_1L,target,119,35.7,velocity,upper_uy,-0.27411961555480957 +illusion_1L,target,119,35.7,velocity,center_ux,0.8777422308921814 +illusion_1L,target,119,35.7,velocity,center_uy,-0.6265295147895813 +illusion_1L,target,119,35.7,velocity,lower_ux,1.1594041585922241 +illusion_1L,target,119,35.7,velocity,lower_uy,-0.383023202419281 +illusion_1L,target,120,36.0,velocity,upper_ux,0.8934093117713928 +illusion_1L,target,120,36.0,velocity,upper_uy,-0.31053274869918823 +illusion_1L,target,120,36.0,velocity,center_ux,0.917380154132843 +illusion_1L,target,120,36.0,velocity,center_uy,-0.6238217949867249 +illusion_1L,target,120,36.0,velocity,lower_ux,1.0883479118347168 +illusion_1L,target,120,36.0,velocity,lower_uy,-0.4218392074108124 +illusion_1L,target,121,36.3,velocity,upper_ux,0.9528118968009949 +illusion_1L,target,121,36.3,velocity,upper_uy,-0.34053662419319153 +illusion_1L,target,121,36.3,velocity,center_ux,0.948445737361908 +illusion_1L,target,121,36.3,velocity,center_uy,-0.6058086156845093 +illusion_1L,target,121,36.3,velocity,lower_ux,1.0330896377563477 +illusion_1L,target,121,36.3,velocity,lower_uy,-0.4204917252063751 +illusion_1L,target,122,36.6,velocity,upper_ux,1.009887933731079 +illusion_1L,target,122,36.6,velocity,upper_uy,-0.36585694551467896 +illusion_1L,target,122,36.6,velocity,center_ux,0.969834566116333 +illusion_1L,target,122,36.6,velocity,center_uy,-0.604728102684021 +illusion_1L,target,122,36.6,velocity,lower_ux,0.9824158549308777 +illusion_1L,target,122,36.6,velocity,lower_uy,-0.4129032790660858 +illusion_1L,target,123,36.9,velocity,upper_ux,1.0669121742248535 +illusion_1L,target,123,36.9,velocity,upper_uy,-0.3883645534515381 +illusion_1L,target,123,36.9,velocity,center_ux,0.9836722016334534 +illusion_1L,target,123,36.9,velocity,center_uy,-0.6199507117271423 +illusion_1L,target,123,36.9,velocity,lower_ux,0.9297991991043091 +illusion_1L,target,123,36.9,velocity,lower_uy,-0.40224069356918335 +illusion_1L,target,124,37.2,velocity,upper_ux,1.1265074014663696 +illusion_1L,target,124,37.2,velocity,upper_uy,-0.4089256525039673 +illusion_1L,target,124,37.2,velocity,center_ux,0.9899954199790955 +illusion_1L,target,124,37.2,velocity,center_uy,-0.6472634077072144 +illusion_1L,target,124,37.2,velocity,lower_ux,0.8725785613059998 +illusion_1L,target,124,37.2,velocity,lower_uy,-0.3804311156272888 +illusion_1L,target,125,37.5,velocity,upper_ux,1.1925066709518433 +illusion_1L,target,125,37.5,velocity,upper_uy,-0.4274219870567322 +illusion_1L,target,125,37.5,velocity,center_ux,0.9848213791847229 +illusion_1L,target,125,37.5,velocity,center_uy,-0.6716837286949158 +illusion_1L,target,125,37.5,velocity,lower_ux,0.8110069036483765 +illusion_1L,target,125,37.5,velocity,lower_uy,-0.33565667271614075 +illusion_1L,target,126,37.8,velocity,upper_ux,1.2696974277496338 +illusion_1L,target,126,37.8,velocity,upper_uy,-0.4416264295578003 +illusion_1L,target,126,37.8,velocity,center_ux,0.9589637517929077 +illusion_1L,target,126,37.8,velocity,center_uy,-0.648810625076294 +illusion_1L,target,126,37.8,velocity,lower_ux,0.7494499683380127 +illusion_1L,target,126,37.8,velocity,lower_uy,-0.25640836358070374 +illusion_1L,target,127,38.1,velocity,upper_ux,1.3577001094818115 +illusion_1L,target,127,38.1,velocity,upper_uy,-0.4388270676136017 +illusion_1L,target,127,38.1,velocity,center_ux,0.9100491404533386 +illusion_1L,target,127,38.1,velocity,center_uy,-0.5098481178283691 +illusion_1L,target,127,38.1,velocity,lower_ux,0.6987960934638977 +illusion_1L,target,127,38.1,velocity,lower_uy,-0.14076586067676544 +illusion_1L,target,128,38.4,velocity,upper_ux,1.4268208742141724 +illusion_1L,target,128,38.4,velocity,upper_uy,-0.364601731300354 +illusion_1L,target,128,38.4,velocity,center_ux,0.8578541874885559 +illusion_1L,target,128,38.4,velocity,center_uy,-0.22995465993881226 +illusion_1L,target,128,38.4,velocity,lower_ux,0.6735093593597412 +illusion_1L,target,128,38.4,velocity,lower_uy,-0.0029968409799039364 +illusion_1L,target,129,38.7,velocity,upper_ux,1.404913306236267 +illusion_1L,target,129,38.7,velocity,upper_uy,-0.14145736396312714 +illusion_1L,target,129,38.7,velocity,center_ux,0.829760730266571 +illusion_1L,target,129,38.7,velocity,center_uy,0.11775539070367813 +illusion_1L,target,129,38.7,velocity,lower_ux,0.6874183416366577 +illusion_1L,target,129,38.7,velocity,lower_uy,0.12138815224170685 +illusion_1L,target,130,39.0,velocity,upper_ux,1.301074504852295 +illusion_1L,target,130,39.0,velocity,upper_uy,0.1489182561635971 +illusion_1L,target,130,39.0,velocity,center_ux,0.8337428569793701 +illusion_1L,target,130,39.0,velocity,center_uy,0.4283789098262787 +illusion_1L,target,130,39.0,velocity,lower_ux,0.7385061383247375 +illusion_1L,target,130,39.0,velocity,lower_uy,0.20586556196212769 +illusion_1L,target,131,39.3,velocity,upper_ux,1.1969443559646606 +illusion_1L,target,131,39.3,velocity,upper_uy,0.34295082092285156 +illusion_1L,target,131,39.3,velocity,center_ux,0.8640706539154053 +illusion_1L,target,131,39.3,velocity,center_uy,0.6031558513641357 +illusion_1L,target,131,39.3,velocity,lower_ux,0.8054124712944031 +illusion_1L,target,131,39.3,velocity,lower_uy,0.25803712010383606 +illusion_1L,target,132,39.6,velocity,upper_ux,1.1133493185043335 +illusion_1L,target,132,39.6,velocity,upper_uy,0.4143781065940857 +illusion_1L,target,132,39.6,velocity,center_ux,0.9018046855926514 +illusion_1L,target,132,39.6,velocity,center_uy,0.6312337517738342 +illusion_1L,target,132,39.6,velocity,lower_ux,0.8680265545845032 +illusion_1L,target,132,39.6,velocity,lower_uy,0.2969416677951813 +illusion_1L,target,133,39.9,velocity,upper_ux,1.052910566329956 +illusion_1L,target,133,39.9,velocity,upper_uy,0.4224635660648346 +illusion_1L,target,133,39.9,velocity,center_ux,0.9364399313926697 +illusion_1L,target,133,39.9,velocity,center_uy,0.6112438440322876 +illusion_1L,target,133,39.9,velocity,lower_ux,0.9283629059791565 +illusion_1L,target,133,39.9,velocity,lower_uy,0.3293286859989166 +illusion_1L,target,134,40.2,velocity,upper_ux,1.0018784999847412 +illusion_1L,target,134,40.2,velocity,upper_uy,0.41582030057907104 +illusion_1L,target,134,40.2,velocity,center_ux,0.9617060422897339 +illusion_1L,target,134,40.2,velocity,center_uy,0.6029236912727356 +illusion_1L,target,134,40.2,velocity,lower_ux,0.9864746332168579 +illusion_1L,target,134,40.2,velocity,lower_uy,0.3562358021736145 +illusion_1L,target,135,40.5,velocity,upper_ux,0.9514967799186707 +illusion_1L,target,135,40.5,velocity,upper_uy,0.4070505201816559 +illusion_1L,target,135,40.5,velocity,center_ux,0.9791650176048279 +illusion_1L,target,135,40.5,velocity,center_uy,0.6118991374969482 +illusion_1L,target,135,40.5,velocity,lower_ux,1.043979287147522 +illusion_1L,target,135,40.5,velocity,lower_uy,0.37965911626815796 +illusion_1L,target,136,40.8,velocity,upper_ux,0.8969932794570923 +illusion_1L,target,136,40.8,velocity,upper_uy,0.39091983437538147 +illusion_1L,target,136,40.8,velocity,center_ux,0.9894206523895264 +illusion_1L,target,136,40.8,velocity,center_uy,0.6352044939994812 +illusion_1L,target,136,40.8,velocity,lower_ux,1.1030524969100952 +illusion_1L,target,136,40.8,velocity,lower_uy,0.400995671749115 +illusion_1L,target,137,41.1,velocity,upper_ux,0.8371593952178955 +illusion_1L,target,137,41.1,velocity,upper_uy,0.3566797375679016 +illusion_1L,target,137,41.1,velocity,center_ux,0.9899106025695801 +illusion_1L,target,137,41.1,velocity,center_uy,0.6640012860298157 +illusion_1L,target,137,41.1,velocity,lower_ux,1.1663566827774048 +illusion_1L,target,137,41.1,velocity,lower_uy,0.42044898867607117 +illusion_1L,target,138,41.4,velocity,upper_ux,0.7742124795913696 +illusion_1L,target,138,41.4,velocity,upper_uy,0.29210588335990906 +illusion_1L,target,138,41.4,velocity,center_ux,0.9728559255599976 +illusion_1L,target,138,41.4,velocity,center_uy,0.6677083969116211 +illusion_1L,target,138,41.4,velocity,lower_ux,1.2380584478378296 +illusion_1L,target,138,41.4,velocity,lower_uy,0.4369686245918274 +illusion_1L,target,139,41.7,velocity,upper_ux,0.715421199798584 +illusion_1L,target,139,41.7,velocity,upper_uy,0.1873166412115097 +illusion_1L,target,139,41.7,velocity,center_ux,0.9296984672546387 +illusion_1L,target,139,41.7,velocity,center_uy,0.5786078572273254 +illusion_1L,target,139,41.7,velocity,lower_ux,1.3238252401351929 +illusion_1L,target,139,41.7,velocity,lower_uy,0.44399672746658325 +illusion_1L,target,140,42.0,velocity,upper_ux,0.6785293817520142 +illusion_1L,target,140,42.0,velocity,upper_uy,0.05776370316743851 +illusion_1L,target,140,42.0,velocity,center_ux,0.8754746317863464 +illusion_1L,target,140,42.0,velocity,center_uy,0.35444390773773193 +illusion_1L,target,140,42.0,velocity,lower_ux,1.4051094055175781 +illusion_1L,target,140,42.0,velocity,lower_uy,0.40896522998809814 +illusion_1L,target,141,42.3,velocity,upper_ux,0.6760101318359375 +illusion_1L,target,141,42.3,velocity,upper_uy,-0.07590368390083313 +illusion_1L,target,141,42.3,velocity,center_ux,0.8357532620429993 +illusion_1L,target,141,42.3,velocity,center_uy,0.02242068015038967 +illusion_1L,target,141,42.3,velocity,lower_ux,1.4261229038238525 +illusion_1L,target,141,42.3,velocity,lower_uy,0.24841880798339844 +illusion_1L,target,142,42.6,velocity,upper_ux,0.7148734927177429 +illusion_1L,target,142,42.6,velocity,upper_uy,-0.17736424505710602 +illusion_1L,target,142,42.6,velocity,center_ux,0.8278207182884216 +illusion_1L,target,142,42.6,velocity,center_uy,-0.3161296248435974 +illusion_1L,target,142,42.6,velocity,lower_ux,1.3460673093795776 +illusion_1L,target,142,42.6,velocity,lower_uy,-0.03798113763332367 +illusion_1L,target,143,42.9,velocity,upper_ux,0.7783814668655396 +illusion_1L,target,143,42.9,velocity,upper_uy,-0.23913128674030304 +illusion_1L,target,143,42.9,velocity,center_ux,0.849094569683075 +illusion_1L,target,143,42.9,velocity,center_uy,-0.5525777339935303 +illusion_1L,target,143,42.9,velocity,lower_ux,1.2353484630584717 +illusion_1L,target,143,42.9,velocity,lower_uy,-0.2814241349697113 +illusion_1L,target,144,43.2,velocity,upper_ux,0.844476580619812 +illusion_1L,target,144,43.2,velocity,upper_uy,-0.28214260935783386 +illusion_1L,target,144,43.2,velocity,center_ux,0.8869429230690002 +illusion_1L,target,144,43.2,velocity,center_uy,-0.6316467523574829 +illusion_1L,target,144,43.2,velocity,lower_ux,1.1437125205993652 +illusion_1L,target,144,43.2,velocity,lower_uy,-0.397681325674057 +illusion_1L,target,145,43.5,velocity,upper_ux,0.9058595895767212 +illusion_1L,target,145,43.5,velocity,upper_uy,-0.31712770462036133 +illusion_1L,target,145,43.5,velocity,center_ux,0.9245491623878479 +illusion_1L,target,145,43.5,velocity,center_uy,-0.619234025478363 +illusion_1L,target,145,43.5,velocity,lower_ux,1.076047658920288 +illusion_1L,target,145,43.5,velocity,lower_uy,-0.42320582270622253 +illusion_1L,target,146,43.8,velocity,upper_ux,0.9638742208480835 +illusion_1L,target,146,43.8,velocity,upper_uy,-0.3460223376750946 +illusion_1L,target,146,43.8,velocity,center_ux,0.9527327418327332 +illusion_1L,target,146,43.8,velocity,center_uy,-0.6040652394294739 +illusion_1L,target,146,43.8,velocity,lower_ux,1.0216368436813354 +illusion_1L,target,146,43.8,velocity,lower_uy,-0.4190741181373596 +illusion_1L,target,147,44.1,velocity,upper_ux,1.0205624103546143 +illusion_1L,target,147,44.1,velocity,upper_uy,-0.370658278465271 +illusion_1L,target,147,44.1,velocity,center_ux,0.9722614288330078 +illusion_1L,target,147,44.1,velocity,center_uy,-0.6065656542778015 +illusion_1L,target,147,44.1,velocity,lower_ux,0.9706389307975769 +illusion_1L,target,147,44.1,velocity,lower_uy,-0.411148339509964 +illusion_1L,target,148,44.4,velocity,upper_ux,1.0781421661376953 +illusion_1L,target,148,44.4,velocity,upper_uy,-0.39262259006500244 +illusion_1L,target,148,44.4,velocity,center_ux,0.9851830005645752 +illusion_1L,target,148,44.4,velocity,center_uy,-0.6246005892753601 +illusion_1L,target,148,44.4,velocity,lower_ux,0.918008029460907 +illusion_1L,target,148,44.4,velocity,lower_uy,-0.3990514278411865 +illusion_1L,target,149,44.7,velocity,upper_ux,1.1396934986114502 +illusion_1L,target,149,44.7,velocity,upper_uy,-0.41281744837760925 +illusion_1L,target,149,44.7,velocity,center_ux,0.990743100643158 +illusion_1L,target,149,44.7,velocity,center_uy,-0.6530967950820923 +illusion_1L,target,149,44.7,velocity,lower_ux,0.8608477711677551 +illusion_1L,target,149,44.7,velocity,lower_uy,-0.3735165297985077 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_wide.csv new file mode 100644 index 0000000..005d54f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/illusion_1L/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +illusion_1L,target,0,0.0,1.1252347230911255,-0.40857818722724915,0.9915034174919128,-0.6467664837837219,0.8765729665756226,-0.3825545608997345 +illusion_1L,target,1,0.3,1.1900655031204224,-0.4265606701374054,0.986445426940918,-0.6708802580833435,0.8146154284477234,-0.3382817208766937 +illusion_1L,target,2,0.6,1.2670818567276,-0.4411216676235199,0.9622041583061218,-0.6515958905220032,0.7533536553382874,-0.260587215423584 +illusion_1L,target,3,0.9,1.354554295539856,-0.43976256251335144,0.9133744239807129,-0.5183886885643005,0.7012986540794373,-0.1458350270986557 +illusion_1L,target,4,1.2,1.424862027168274,-0.37098604440689087,0.8598676323890686,-0.24441905319690704,0.6738600730895996,-0.008690298534929752 +illusion_1L,target,5,1.5,1.4068875312805176,-0.15388287603855133,0.8294057250022888,0.10335935652256012,0.6852775812149048,0.11723126471042633 +illusion_1L,target,6,1.8,1.304710865020752,0.1366477906703949,0.8315333724021912,0.41662681102752686,0.7345737218856812,0.20306912064552307 +illusion_1L,target,7,2.1,1.1981141567230225,0.33661341667175293,0.8602028489112854,0.59787517786026,0.8006802797317505,0.25577130913734436 +illusion_1L,target,8,2.4,1.1184349060058594,0.4138311743736267,0.901807427406311,0.63271164894104,0.8672434687614441,0.29589617252349854 +illusion_1L,target,9,2.7,1.0563114881515503,0.4228249490261078,0.9360767602920532,0.6120773553848267,0.9269662499427795,0.32803744077682495 +illusion_1L,target,10,3.0,1.00484037399292,0.41632208228111267,0.9617033004760742,0.6030316352844238,0.9851977825164795,0.3552166819572449 +illusion_1L,target,11,3.3,0.9536380767822266,0.40763628482818604,0.978746235370636,0.6114534735679626,1.0420613288879395,0.37879878282546997 +illusion_1L,target,12,3.6,0.8986892700195312,0.39208051562309265,0.988491415977478,0.6342819333076477,1.100000023841858,0.40012505650520325 +illusion_1L,target,13,3.9,0.838417112827301,0.35896340012550354,0.9889183640480042,0.6632939577102661,1.1623815298080444,0.419637531042099 +illusion_1L,target,14,4.2,0.7756282091140747,0.2959301173686981,0.9730783104896545,0.669158399105072,1.233931064605713,0.4363117516040802 +illusion_1L,target,15,4.5,0.7185335755348206,0.19563214480876923,0.9332308769226074,0.5888493061065674,1.318116307258606,0.4440999925136566 +illusion_1L,target,16,4.8,0.6803444027900696,0.06476416438817978,0.879072368144989,0.3683299422264099,1.4030427932739258,0.4124588072299957 +illusion_1L,target,17,5.1,0.6761963963508606,-0.0704255998134613,0.8383448123931885,0.0373145155608654,1.428860068321228,0.25823071599006653 +illusion_1L,target,18,5.4,0.7128292918205261,-0.17391443252563477,0.8284916281700134,-0.3033052384853363,1.3514645099639893,-0.02567569725215435 +illusion_1L,target,19,5.7,0.7751514911651611,-0.23719777166843414,0.8479864001274109,-0.5462064743041992,1.2394816875457764,-0.2738589644432068 +illusion_1L,target,20,6.0,0.8406079411506653,-0.2806248366832733,0.8846142292022705,-0.6311026215553284,1.14609956741333,-0.39479881525039673 +illusion_1L,target,21,6.3,0.9019336700439453,-0.31584927439689636,0.9221540093421936,-0.620201587677002,1.0774809122085571,-0.42267081141471863 +illusion_1L,target,22,6.6,0.9607424736022949,-0.3449222445487976,0.9513844847679138,-0.6042891144752502,1.0235825777053833,-0.41906291246414185 +illusion_1L,target,23,6.9,1.0183357000350952,-0.3696468472480774,0.9721341729164124,-0.6059418320655823,0.9737716913223267,-0.41128191351890564 +illusion_1L,target,24,7.2,1.0767216682434082,-0.39180871844291687,0.9859495759010315,-0.6233985424041748,0.9217605590820312,-0.39951446652412415 +illusion_1L,target,25,7.5,1.1378496885299683,-0.4121100902557373,0.9915270209312439,-0.6517183184623718,0.8644842505455017,-0.3747829496860504 +illusion_1L,target,26,7.8,1.2053070068359375,-0.43022212386131287,0.9835293292999268,-0.6725254654884338,0.8023589253425598,-0.3249686658382416 +illusion_1L,target,27,8.1,1.2858225107192993,-0.4438890218734741,0.9541552662849426,-0.6364942193031311,0.7419788837432861,-0.23983731865882874 +illusion_1L,target,28,8.4,1.3709977865219116,-0.43420445919036865,0.8995974659919739,-0.4722526967525482,0.6917169690132141,-0.11825936287641525 +illusion_1L,target,29,8.7,1.4293056726455688,-0.3398231267929077,0.8494381308555603,-0.1759316474199295,0.6717322468757629,0.019256753847002983 +illusion_1L,target,30,9.0,1.3901149034500122,-0.0935363620519638,0.8268246650695801,0.17392319440841675,0.6930293440818787,0.13835234940052032 +illusion_1L,target,31,9.3,1.282861590385437,0.18888334929943085,0.8366309404373169,0.46700748801231384,0.7491380572319031,0.21562433242797852 +illusion_1L,target,32,9.6,1.1808913946151733,0.36173632740974426,0.869448721408844,0.6148149371147156,0.8161891102790833,0.2644530236721039 +illusion_1L,target,33,9.9,1.103624939918518,0.4187723994255066,0.909134030342102,0.6285840272903442,0.8797383904457092,0.3025728762149811 +illusion_1L,target,34,10.2,1.0449258089065552,0.42209187150001526,0.9418033957481384,0.6086580157279968,0.9389824271202087,0.33394181728363037 +illusion_1L,target,35,10.5,0.9930696487426758,0.4148876965045929,0.9645479321479797,0.6034007668495178,0.9956961274147034,0.3602006137371063 +illusion_1L,target,36,10.8,0.9413129687309265,0.4054490625858307,0.9800058007240295,0.6149976253509521,1.0522788763046265,0.3831835687160492 +illusion_1L,target,37,11.1,0.8861823678016663,0.38720038533210754,0.9891453981399536,0.6400338411331177,1.1117162704467773,0.404146283864975 +illusion_1L,target,38,11.4,0.8263396620750427,0.3487412929534912,0.9884268045425415,0.66768878698349,1.176975131034851,0.42326757311820984 +illusion_1L,target,39,11.7,0.7646103501319885,0.27813786268234253,0.9687802195549011,0.661812424659729,1.2516202926635742,0.4389764964580536 +illusion_1L,target,40,12.0,0.7096495032310486,0.16984906792640686,0.9237267971038818,0.5546904802322388,1.3377283811569214,0.4427199363708496 +illusion_1L,target,41,12.3,0.6763022541999817,0.03481244668364525,0.8686942458152771,0.30467689037323,1.41605544090271,0.393574059009552 +illusion_1L,target,42,12.6,0.6809600591659546,-0.09638813138008118,0.8339043855667114,-0.037576403468847275,1.4211454391479492,0.20594707131385803 +illusion_1L,target,43,12.9,0.724606454372406,-0.19057606160640717,0.8301790952682495,-0.3663773238658905,1.3282777070999146,-0.08599714934825897 +illusion_1L,target,44,13.2,0.7880932092666626,-0.24721170961856842,0.8534443378448486,-0.5763831734657288,1.2167044878005981,-0.30914777517318726 +illusion_1L,target,45,13.5,0.8540876507759094,-0.2885628938674927,0.8928506374359131,-0.6326911449432373,1.129967212677002,-0.40604186058044434 +illusion_1L,target,46,13.8,0.9158453345298767,-0.3223944306373596,0.9301763772964478,-0.6157034039497375,1.066595196723938,-0.423250675201416 +illusion_1L,target,47,14.1,0.9743151664733887,-0.3504039943218231,0.9575254321098328,-0.603326141834259,1.014289379119873,-0.41777801513671875 +illusion_1L,target,48,14.4,1.031672477722168,-0.37471312284469604,0.9761038422584534,-0.6087660193443298,0.9629924297332764,-0.40948736667633057 +illusion_1L,target,49,14.7,1.0888770818710327,-0.3962743580341339,0.9871668219566345,-0.629150390625,0.9092175364494324,-0.3959605097770691 +illusion_1L,target,50,15.0,1.1501895189285278,-0.4161475896835327,0.9897743463516235,-0.6582958698272705,0.849947452545166,-0.36705029010772705 +illusion_1L,target,51,15.3,1.2196075916290283,-0.4335165321826935,0.9778973460197449,-0.6723489165306091,0.7874417901039124,-0.31057968735694885 +illusion_1L,target,52,15.6,1.3038160800933838,-0.4448147118091583,0.9441414475440979,-0.614688515663147,0.729535698890686,-0.2174752801656723 +illusion_1L,target,53,15.9,1.3892685174942017,-0.4245672821998596,0.8890731930732727,-0.4198022782802582,0.6853712797164917,-0.09038633108139038 +illusion_1L,target,54,16.2,1.4321821928024292,-0.2997894585132599,0.8438051342964172,-0.10317692160606384,0.6737959384918213,0.04669259861111641 +illusion_1L,target,55,16.5,1.3710359334945679,-0.029665237292647362,0.8277826905250549,0.24457430839538574,0.7032750844955444,0.15814828872680664 +illusion_1L,target,56,16.8,1.2592992782592773,0.23702949285507202,0.842526376247406,0.5128061175346375,0.762791633605957,0.22766919434070587 +illusion_1L,target,57,17.1,1.1614643335342407,0.3812333345413208,0.8771281838417053,0.625929594039917,0.8285796046257019,0.2732377350330353 +illusion_1L,target,58,17.4,1.088767647743225,0.42137178778648376,0.9157316088676453,0.6243324875831604,0.8908402323722839,0.30981922149658203 +illusion_1L,target,59,17.7,1.0332167148590088,0.4203713536262512,0.9467155933380127,0.6059727668762207,0.9499730467796326,0.3398726284503937 +illusion_1L,target,60,18.0,0.9831889867782593,0.4128629267215729,0.9688958525657654,0.6043649315834045,1.0076957941055298,0.36527329683303833 +illusion_1L,target,61,18.3,0.93182373046875,0.40237611532211304,0.9839208722114563,0.6191046237945557,1.0657140016555786,0.3878251612186432 +illusion_1L,target,62,18.6,0.8754756450653076,0.3809144198894501,0.9911875128746033,0.6461731791496277,1.1260672807693481,0.4084767997264862 +illusion_1L,target,63,18.9,0.8139335513114929,0.3366502523422241,0.986350417137146,0.6710474491119385,1.1920644044876099,0.42710575461387634 +illusion_1L,target,64,19.2,0.7515391707420349,0.2582475543022156,0.9602108001708984,0.6500935554504395,1.2681031227111816,0.4415237307548523 +illusion_1L,target,65,19.5,0.6991008520126343,0.14288096129894257,0.9101796746253967,0.5138093829154968,1.3550480604171753,0.43948888778686523 +illusion_1L,target,66,19.8,0.672624409198761,0.006087865214794874,0.8572806715965271,0.23821114003658295,1.42440664768219,0.36842527985572815 +illusion_1L,target,67,20.1,0.6859066486358643,-0.11899229884147644,0.8286202549934387,-0.10935486108064651,1.4055160284042358,0.14851003885269165 +illusion_1L,target,68,20.4,0.7371487021446228,-0.20412379503250122,0.832758367061615,-0.4214719533920288,1.3039305210113525,-0.14215534925460815 +illusion_1L,target,69,20.7,0.803798496723175,-0.256514310836792,0.8623124361038208,-0.5999436378479004,1.197946310043335,-0.33983662724494934 +illusion_1L,target,70,21.0,0.8682235479354858,-0.29605618119239807,0.9019661545753479,-0.6314373016357422,1.1161117553710938,-0.4141724109649658 +illusion_1L,target,71,21.3,0.9281047582626343,-0.3285662829875946,0.9364506006240845,-0.6116543412208557,1.054923415184021,-0.4229462146759033 +illusion_1L,target,72,21.6,0.9850819706916809,-0.3555782437324524,0.9608793258666992,-0.6030018925666809,1.0026224851608276,-0.4163203537464142 +illusion_1L,target,73,21.9,1.0416306257247925,-0.37906914949417114,0.9776520729064941,-0.6116605401039124,0.951253354549408,-0.40756842494010925 +illusion_1L,target,74,22.2,1.100428819656372,-0.40038561820983887,0.9881208539009094,-0.6346250772476196,0.8969205617904663,-0.3917159140110016 +illusion_1L,target,75,22.5,1.1641877889633179,-0.4198575019836426,0.9897580146789551,-0.6634287238121033,0.8380199074745178,-0.3580818176269531 +illusion_1L,target,76,22.8,1.2388546466827393,-0.43724003434181213,0.9759873747825623,-0.669447124004364,0.777302086353302,-0.2946490943431854 +illusion_1L,target,77,23.1,1.3215148448944092,-0.4439922571182251,0.9332963228225708,-0.5844136476516724,0.718410074710846,-0.19195044040679932 +illusion_1L,target,78,23.4,1.4045944213867188,-0.4107273519039154,0.8781624436378479,-0.3609769344329834,0.6800400018692017,-0.060798462480306625 +illusion_1L,target,79,23.7,1.4269369840621948,-0.2536008954048157,0.8368450403213501,-0.029536930844187737,0.6757974028587341,0.07356573641300201 +illusion_1L,target,80,24.0,1.3472930192947388,0.03147043660283089,0.8270126581192017,0.3099382221698761,0.7127828001976013,0.17589834332466125 +illusion_1L,target,81,24.3,1.235783576965332,0.27752718329429626,0.8473293781280518,0.5494834780693054,0.7757230401039124,0.23834258317947388 +illusion_1L,target,82,24.6,1.1444967985153198,0.395959734916687,0.8851568698883057,0.6312139630317688,0.8419991135597229,0.281339555978775 +illusion_1L,target,83,24.9,1.0772111415863037,0.42301610112190247,0.9239615797996521,0.6196895241737366,0.9047014117240906,0.31658291816711426 +illusion_1L,target,84,25.2,1.02363920211792,0.4191710948944092,0.9531326293945312,0.6042471528053284,0.9635828733444214,0.34554073214530945 +illusion_1L,target,85,25.5,0.9728673100471497,0.4112831950187683,0.9730578660964966,0.6064333319664001,1.0206397771835327,0.3702771067619324 +illusion_1L,target,86,25.8,0.9197821021080017,0.3993833661079407,0.9855231642723083,0.6242666840553284,1.0776500701904297,0.3922804892063141 +illusion_1L,target,87,26.1,0.8615261912345886,0.3742896616458893,0.9901153445243835,0.652788519859314,1.1380488872528076,0.41251611709594727 +illusion_1L,target,88,26.4,0.7990633249282837,0.3235916793346405,0.9817292094230652,0.6730135679244995,1.206039547920227,0.43058812618255615 +illusion_1L,target,89,26.7,0.7387211322784424,0.23751887679100037,0.9512277245521545,0.6336509585380554,1.285369634628296,0.44316649436950684 +illusion_1L,target,90,27.0,0.6915085315704346,0.11563225090503693,0.8994028568267822,0.4668494760990143,1.3740917444229126,0.43309351801872253 +illusion_1L,target,91,27.3,0.6729204058647156,-0.0222379881888628,0.8503115177154541,0.16734552383422852,1.4314154386520386,0.3351256549358368 +illusion_1L,target,92,27.6,0.6946603059768677,-0.14046236872673035,0.8281951546669006,-0.18183337152004242,1.3892966508865356,0.08646287024021149 +illusion_1L,target,93,27.9,0.7503046989440918,-0.21709352731704712,0.8376625180244446,-0.4726952016353607,1.2802762985229492,-0.19451873004436493 +illusion_1L,target,94,28.2,0.8164178729057312,-0.26559188961982727,0.8697722554206848,-0.6165415048599243,1.177708387374878,-0.3639342486858368 +illusion_1L,target,95,28.5,0.8794226050376892,-0.3034523129463196,0.9088637232780457,-0.6282294988632202,1.1008185148239136,-0.4187180995941162 +illusion_1L,target,96,28.8,0.9392709136009216,-0.33471953868865967,0.9417814016342163,-0.6082803606987,1.042894959449768,-0.42153018712997437 +illusion_1L,target,97,29.1,0.9972000122070312,-0.3608560264110565,0.9654627442359924,-0.6033629775047302,0.9924460649490356,-0.4143495261669159 +illusion_1L,target,98,29.4,1.0549784898757935,-0.3838416635990143,0.9816965460777283,-0.6153199076652527,0.9415742754936218,-0.40482765436172485 +illusion_1L,target,99,29.7,1.1144354343414307,-0.40475794672966003,0.9904730319976807,-0.6406040191650391,0.8863534331321716,-0.38628363609313965 +illusion_1L,target,100,30.0,1.1790632009506226,-0.42383670806884766,0.9884620904922485,-0.668077826499939,0.8255698680877686,-0.3472236096858978 +illusion_1L,target,101,30.3,1.2529010772705078,-0.43942996859550476,0.9669845700263977,-0.66070157289505,0.762717068195343,-0.2758041024208069 +illusion_1L,target,102,30.6,1.3384501934051514,-0.4426383376121521,0.9207491874694824,-0.5507025122642517,0.7074638605117798,-0.1670052409172058 +illusion_1L,target,103,30.9,1.4160964488983154,-0.39141646027565,0.8660581707954407,-0.29826438426971436,0.6749317049980164,-0.031993187963962555 +illusion_1L,target,104,31.2,1.4176621437072754,-0.20043013989925385,0.8315907716751099,0.043844010680913925,0.6802254915237427,0.09819047898054123 +illusion_1L,target,105,31.5,1.325027346611023,0.0918768122792244,0.8298102021217346,0.3712744116783142,0.7257251739501953,0.19150036573410034 +illusion_1L,target,106,31.8,1.216138243675232,0.31312447786331177,0.8554716110229492,0.5793166756629944,0.7911531925201416,0.24809232354164124 +illusion_1L,target,107,32.1,1.1295461654663086,0.4072645902633667,0.8944889307022095,0.6327395439147949,0.8563884496688843,0.28919869661331177 +illusion_1L,target,108,32.4,1.0652364492416382,0.42339012026786804,0.9307183027267456,0.6152138113975525,0.9170976877212524,0.3229827284812927 +illusion_1L,target,109,32.7,1.0120295286178589,0.4177010655403137,0.9569888114929199,0.6032145023345947,0.974592387676239,0.35090702772140503 +illusion_1L,target,110,33.0,0.9601144194602966,0.4092765748500824,0.9753270745277405,0.6090940237045288,1.0320621728897095,0.37529170513153076 +illusion_1L,target,111,33.3,0.9075194001197815,0.39563891291618347,0.9867957830429077,0.6294578909873962,1.0892562866210938,0.3965487480163574 +illusion_1L,target,112,33.6,0.8494704961776733,0.3662659525871277,0.9905022978782654,0.6584954857826233,1.1518412828445435,0.41638851165771484 +illusion_1L,target,113,33.9,0.7887881994247437,0.30923306941986084,0.9806240797042847,0.672895073890686,1.2245625257492065,0.4345240294933319 +illusion_1L,target,114,34.2,0.7283728122711182,0.21429644525051117,0.9429059028625488,0.6107417941093445,1.3044742345809937,0.44412150979042053 +illusion_1L,target,115,34.5,0.6849962472915649,0.08662295341491699,0.8881716728210449,0.41327011585235596,1.391050100326538,0.4233848750591278 +illusion_1L,target,116,34.8,0.6733570098876953,-0.050155896693468094,0.8422419428825378,0.0949486568570137,1.430873155593872,0.29540732502937317 +illusion_1L,target,117,35.1,0.7031682133674622,-0.16016045212745667,0.8263111710548401,-0.2509993612766266,1.3673806190490723,0.024247528985142708 +illusion_1L,target,118,35.4,0.7646104693412781,-0.22920039296150208,0.8432068824768066,-0.5173985958099365,1.2578527927398682,-0.24137374758720398 +illusion_1L,target,119,35.7,0.8301838636398315,-0.27411961555480957,0.8777422308921814,-0.6265295147895813,1.1594041585922241,-0.383023202419281 +illusion_1L,target,120,36.0,0.8934093117713928,-0.31053274869918823,0.917380154132843,-0.6238217949867249,1.0883479118347168,-0.4218392074108124 +illusion_1L,target,121,36.3,0.9528118968009949,-0.34053662419319153,0.948445737361908,-0.6058086156845093,1.0330896377563477,-0.4204917252063751 +illusion_1L,target,122,36.6,1.009887933731079,-0.36585694551467896,0.969834566116333,-0.604728102684021,0.9824158549308777,-0.4129032790660858 +illusion_1L,target,123,36.9,1.0669121742248535,-0.3883645534515381,0.9836722016334534,-0.6199507117271423,0.9297991991043091,-0.40224069356918335 +illusion_1L,target,124,37.2,1.1265074014663696,-0.4089256525039673,0.9899954199790955,-0.6472634077072144,0.8725785613059998,-0.3804311156272888 +illusion_1L,target,125,37.5,1.1925066709518433,-0.4274219870567322,0.9848213791847229,-0.6716837286949158,0.8110069036483765,-0.33565667271614075 +illusion_1L,target,126,37.8,1.2696974277496338,-0.4416264295578003,0.9589637517929077,-0.648810625076294,0.7494499683380127,-0.25640836358070374 +illusion_1L,target,127,38.1,1.3577001094818115,-0.4388270676136017,0.9100491404533386,-0.5098481178283691,0.6987960934638977,-0.14076586067676544 +illusion_1L,target,128,38.4,1.4268208742141724,-0.364601731300354,0.8578541874885559,-0.22995465993881226,0.6735093593597412,-0.0029968409799039364 +illusion_1L,target,129,38.7,1.404913306236267,-0.14145736396312714,0.829760730266571,0.11775539070367813,0.6874183416366577,0.12138815224170685 +illusion_1L,target,130,39.0,1.301074504852295,0.1489182561635971,0.8337428569793701,0.4283789098262787,0.7385061383247375,0.20586556196212769 +illusion_1L,target,131,39.3,1.1969443559646606,0.34295082092285156,0.8640706539154053,0.6031558513641357,0.8054124712944031,0.25803712010383606 +illusion_1L,target,132,39.6,1.1133493185043335,0.4143781065940857,0.9018046855926514,0.6312337517738342,0.8680265545845032,0.2969416677951813 +illusion_1L,target,133,39.9,1.052910566329956,0.4224635660648346,0.9364399313926697,0.6112438440322876,0.9283629059791565,0.3293286859989166 +illusion_1L,target,134,40.2,1.0018784999847412,0.41582030057907104,0.9617060422897339,0.6029236912727356,0.9864746332168579,0.3562358021736145 +illusion_1L,target,135,40.5,0.9514967799186707,0.4070505201816559,0.9791650176048279,0.6118991374969482,1.043979287147522,0.37965911626815796 +illusion_1L,target,136,40.8,0.8969932794570923,0.39091983437538147,0.9894206523895264,0.6352044939994812,1.1030524969100952,0.400995671749115 +illusion_1L,target,137,41.1,0.8371593952178955,0.3566797375679016,0.9899106025695801,0.6640012860298157,1.1663566827774048,0.42044898867607117 +illusion_1L,target,138,41.4,0.7742124795913696,0.29210588335990906,0.9728559255599976,0.6677083969116211,1.2380584478378296,0.4369686245918274 +illusion_1L,target,139,41.7,0.715421199798584,0.1873166412115097,0.9296984672546387,0.5786078572273254,1.3238252401351929,0.44399672746658325 +illusion_1L,target,140,42.0,0.6785293817520142,0.05776370316743851,0.8754746317863464,0.35444390773773193,1.4051094055175781,0.40896522998809814 +illusion_1L,target,141,42.3,0.6760101318359375,-0.07590368390083313,0.8357532620429993,0.02242068015038967,1.4261229038238525,0.24841880798339844 +illusion_1L,target,142,42.6,0.7148734927177429,-0.17736424505710602,0.8278207182884216,-0.3161296248435974,1.3460673093795776,-0.03798113763332367 +illusion_1L,target,143,42.9,0.7783814668655396,-0.23913128674030304,0.849094569683075,-0.5525777339935303,1.2353484630584717,-0.2814241349697113 +illusion_1L,target,144,43.2,0.844476580619812,-0.28214260935783386,0.8869429230690002,-0.6316467523574829,1.1437125205993652,-0.397681325674057 +illusion_1L,target,145,43.5,0.9058595895767212,-0.31712770462036133,0.9245491623878479,-0.619234025478363,1.076047658920288,-0.42320582270622253 +illusion_1L,target,146,43.8,0.9638742208480835,-0.3460223376750946,0.9527327418327332,-0.6040652394294739,1.0216368436813354,-0.4190741181373596 +illusion_1L,target,147,44.1,1.0205624103546143,-0.370658278465271,0.9722614288330078,-0.6065656542778015,0.9706389307975769,-0.411148339509964 +illusion_1L,target,148,44.4,1.0781421661376953,-0.39262259006500244,0.9851830005645752,-0.6246005892753601,0.918008029460907,-0.3990514278411865 +illusion_1L,target,149,44.7,1.1396934986114502,-0.41281744837760925,0.990743100643158,-0.6530967950820923,0.8608477711677551,-0.3735165297985077 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_dtw_convergence.csv new file mode 100644 index 0000000..b06b0ab --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re100,ppo,60,24.0,30,0.9455456534141882,-2,0.9758530179659526,0.9623066848143935,0.8515015482902527,0.9376910006006559,0.9815029621124267,0.9644187067014476 +karman_re100,ppo,90,36.0,30,0.9509602372689794,-8,0.9716981947422028,0.966937267438819,0.876116277774175,0.9500254292661945,0.9750792642434438,0.965904990149041 +karman_re100,ppo,120,48.0,30,0.9470095755196074,3,0.9753415962060292,0.9627438243168096,0.8680513560771942,0.9383343635747831,0.9779569069544475,0.9596294059883803 +karman_re100,ppo,150,60.0,30,0.9486087299676403,-2,0.9746051828066508,0.9587941548476616,0.8726309080918631,0.9417432154218356,0.9762910505135854,0.9675878681242466 +karman_re100,ppo,180,72.0,30,0.9520601762070632,-8,0.9779323657353719,0.9659514962850759,0.8724855403105418,0.9543559890861313,0.9729175627231598,0.9687181031020979 +karman_re100,ppo,200,80.0,30,0.9525476844593262,-6,0.9755004604657491,0.967524828777338,0.8716123402118683,0.9576588523263733,0.9730290512243907,0.9699605737502376 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_long.csv new file mode 100644 index 0000000..bdcbe3a --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,ppo,0,0.0,velocity,upper_ux,0.9709039330482483 +karman_re100,ppo,0,0.0,velocity,upper_uy,0.2778119146823883 +karman_re100,ppo,0,0.0,velocity,center_ux,0.9676973819732666 +karman_re100,ppo,0,0.0,velocity,center_uy,0.36769822239875793 +karman_re100,ppo,0,0.0,velocity,lower_ux,1.1022075414657593 +karman_re100,ppo,0,0.0,velocity,lower_uy,0.29072946310043335 +karman_re100,ppo,1,0.4,velocity,upper_ux,0.9415207505226135 +karman_re100,ppo,1,0.4,velocity,upper_uy,0.23514942824840546 +karman_re100,ppo,1,0.4,velocity,center_ux,0.9664052724838257 +karman_re100,ppo,1,0.4,velocity,center_uy,0.30900734663009644 +karman_re100,ppo,1,0.4,velocity,lower_ux,1.1412029266357422 +karman_re100,ppo,1,0.4,velocity,lower_uy,0.26178237795829773 +karman_re100,ppo,2,0.8,velocity,upper_ux,0.9252344369888306 +karman_re100,ppo,2,0.8,velocity,upper_uy,0.16098111867904663 +karman_re100,ppo,2,0.8,velocity,center_ux,0.9555662274360657 +karman_re100,ppo,2,0.8,velocity,center_uy,0.20538637042045593 +karman_re100,ppo,2,0.8,velocity,lower_ux,1.1765094995498657 +karman_re100,ppo,2,0.8,velocity,lower_uy,0.21470759809017181 +karman_re100,ppo,3,1.2,velocity,upper_ux,0.9195926189422607 +karman_re100,ppo,3,1.2,velocity,upper_uy,0.05493824556469917 +karman_re100,ppo,3,1.2,velocity,center_ux,0.9470482468605042 +karman_re100,ppo,3,1.2,velocity,center_uy,0.0598134882748127 +karman_re100,ppo,3,1.2,velocity,lower_ux,1.1940525770187378 +karman_re100,ppo,3,1.2,velocity,lower_uy,0.12777075171470642 +karman_re100,ppo,4,1.6,velocity,upper_ux,0.9175910353660583 +karman_re100,ppo,4,1.6,velocity,upper_uy,-0.0716681107878685 +karman_re100,ppo,4,1.6,velocity,center_ux,0.9472340941429138 +karman_re100,ppo,4,1.6,velocity,center_uy,-0.08316131681203842 +karman_re100,ppo,4,1.6,velocity,lower_ux,1.169426441192627 +karman_re100,ppo,4,1.6,velocity,lower_uy,-0.0025739900302141905 +karman_re100,ppo,5,2.0,velocity,upper_ux,0.9345345497131348 +karman_re100,ppo,5,2.0,velocity,upper_uy,-0.17275147140026093 +karman_re100,ppo,5,2.0,velocity,center_ux,0.9496811032295227 +karman_re100,ppo,5,2.0,velocity,center_uy,-0.20904181897640228 +karman_re100,ppo,5,2.0,velocity,lower_ux,1.1260844469070435 +karman_re100,ppo,5,2.0,velocity,lower_uy,-0.12521012127399445 +karman_re100,ppo,6,2.4,velocity,upper_ux,0.9716048240661621 +karman_re100,ppo,6,2.4,velocity,upper_uy,-0.23390717804431915 +karman_re100,ppo,6,2.4,velocity,center_ux,0.9509647488594055 +karman_re100,ppo,6,2.4,velocity,center_uy,-0.3097527027130127 +karman_re100,ppo,6,2.4,velocity,lower_ux,1.0927534103393555 +karman_re100,ppo,6,2.4,velocity,lower_uy,-0.20457133650779724 +karman_re100,ppo,7,2.8,velocity,upper_ux,1.0143113136291504 +karman_re100,ppo,7,2.8,velocity,upper_uy,-0.27776122093200684 +karman_re100,ppo,7,2.8,velocity,center_ux,0.9560368061065674 +karman_re100,ppo,7,2.8,velocity,center_uy,-0.36463192105293274 +karman_re100,ppo,7,2.8,velocity,lower_ux,1.056153416633606 +karman_re100,ppo,7,2.8,velocity,lower_uy,-0.25657567381858826 +karman_re100,ppo,8,3.2,velocity,upper_ux,1.056980848312378 +karman_re100,ppo,8,3.2,velocity,upper_uy,-0.29848966002464294 +karman_re100,ppo,8,3.2,velocity,center_ux,0.9617626070976257 +karman_re100,ppo,8,3.2,velocity,center_uy,-0.3830200433731079 +karman_re100,ppo,8,3.2,velocity,lower_ux,1.0134693384170532 +karman_re100,ppo,8,3.2,velocity,lower_uy,-0.28142616152763367 +karman_re100,ppo,9,3.6,velocity,upper_ux,1.0980604887008667 +karman_re100,ppo,9,3.6,velocity,upper_uy,-0.28764447569847107 +karman_re100,ppo,9,3.6,velocity,center_ux,0.9675838947296143 +karman_re100,ppo,9,3.6,velocity,center_uy,-0.3625679314136505 +karman_re100,ppo,9,3.6,velocity,lower_ux,0.9759576916694641 +karman_re100,ppo,9,3.6,velocity,lower_uy,-0.27335384488105774 +karman_re100,ppo,10,4.0,velocity,upper_ux,1.1357303857803345 +karman_re100,ppo,10,4.0,velocity,upper_uy,-0.2591927647590637 +karman_re100,ppo,10,4.0,velocity,center_ux,0.9653085470199585 +karman_re100,ppo,10,4.0,velocity,center_uy,-0.30363166332244873 +karman_re100,ppo,10,4.0,velocity,lower_ux,0.9466985464096069 +karman_re100,ppo,10,4.0,velocity,lower_uy,-0.2305513173341751 +karman_re100,ppo,11,4.4,velocity,upper_ux,1.1691312789916992 +karman_re100,ppo,11,4.4,velocity,upper_uy,-0.2135164439678192 +karman_re100,ppo,11,4.4,velocity,center_ux,0.9525955319404602 +karman_re100,ppo,11,4.4,velocity,center_uy,-0.20030780136585236 +karman_re100,ppo,11,4.4,velocity,lower_ux,0.9297465682029724 +karman_re100,ppo,11,4.4,velocity,lower_uy,-0.15582579374313354 +karman_re100,ppo,12,4.8,velocity,upper_ux,1.185331106185913 +karman_re100,ppo,12,4.8,velocity,upper_uy,-0.12954086065292358 +karman_re100,ppo,12,4.8,velocity,center_ux,0.9415746927261353 +karman_re100,ppo,12,4.8,velocity,center_uy,-0.055968619883060455 +karman_re100,ppo,12,4.8,velocity,lower_ux,0.9231547713279724 +karman_re100,ppo,12,4.8,velocity,lower_uy,-0.04858606308698654 +karman_re100,ppo,13,5.2,velocity,upper_ux,1.1628172397613525 +karman_re100,ppo,13,5.2,velocity,upper_uy,-0.0014581248397007585 +karman_re100,ppo,13,5.2,velocity,center_ux,0.9407121539115906 +karman_re100,ppo,13,5.2,velocity,center_uy,0.08756628632545471 +karman_re100,ppo,13,5.2,velocity,lower_ux,0.9224338531494141 +karman_re100,ppo,13,5.2,velocity,lower_uy,0.07947118580341339 +karman_re100,ppo,14,5.6,velocity,upper_ux,1.1200729608535767 +karman_re100,ppo,14,5.6,velocity,upper_uy,0.12031976878643036 +karman_re100,ppo,14,5.6,velocity,center_ux,0.9415270090103149 +karman_re100,ppo,14,5.6,velocity,center_uy,0.215410515666008 +karman_re100,ppo,14,5.6,velocity,lower_ux,0.9414420127868652 +karman_re100,ppo,14,5.6,velocity,lower_uy,0.1800745576620102 +karman_re100,ppo,15,6.0,velocity,upper_ux,1.0828789472579956 +karman_re100,ppo,15,6.0,velocity,upper_uy,0.19958345592021942 +karman_re100,ppo,15,6.0,velocity,center_ux,0.9390735030174255 +karman_re100,ppo,15,6.0,velocity,center_uy,0.31833529472351074 +karman_re100,ppo,15,6.0,velocity,lower_ux,0.9782232046127319 +karman_re100,ppo,15,6.0,velocity,lower_uy,0.24274824559688568 +karman_re100,ppo,16,6.4,velocity,upper_ux,1.040338397026062 +karman_re100,ppo,16,6.4,velocity,upper_uy,0.2496970295906067 +karman_re100,ppo,16,6.4,velocity,center_ux,0.9393398761749268 +karman_re100,ppo,16,6.4,velocity,center_uy,0.3744255304336548 +karman_re100,ppo,16,6.4,velocity,lower_ux,1.0196377038955688 +karman_re100,ppo,16,6.4,velocity,lower_uy,0.28772497177124023 +karman_re100,ppo,17,6.8,velocity,upper_ux,0.9935014247894287 +karman_re100,ppo,17,6.8,velocity,upper_uy,0.27287447452545166 +karman_re100,ppo,17,6.8,velocity,center_ux,0.9416049122810364 +karman_re100,ppo,17,6.8,velocity,center_uy,0.39459478855133057 +karman_re100,ppo,17,6.8,velocity,lower_ux,1.0638513565063477 +karman_re100,ppo,17,6.8,velocity,lower_uy,0.3091020882129669 +karman_re100,ppo,18,7.2,velocity,upper_ux,0.950883686542511 +karman_re100,ppo,18,7.2,velocity,upper_uy,0.2615574598312378 +karman_re100,ppo,18,7.2,velocity,center_ux,0.941098690032959 +karman_re100,ppo,18,7.2,velocity,center_uy,0.3747028112411499 +karman_re100,ppo,18,7.2,velocity,lower_ux,1.106866478919983 +karman_re100,ppo,18,7.2,velocity,lower_uy,0.299032598733902 +karman_re100,ppo,19,7.6,velocity,upper_ux,0.9191317558288574 +karman_re100,ppo,19,7.6,velocity,upper_uy,0.21429675817489624 +karman_re100,ppo,19,7.6,velocity,center_ux,0.9312832355499268 +karman_re100,ppo,19,7.6,velocity,center_uy,0.3144672214984894 +karman_re100,ppo,19,7.6,velocity,lower_ux,1.1498379707336426 +karman_re100,ppo,19,7.6,velocity,lower_uy,0.272093802690506 +karman_re100,ppo,20,8.0,velocity,upper_ux,0.9041010141372681 +karman_re100,ppo,20,8.0,velocity,upper_uy,0.13340653479099274 +karman_re100,ppo,20,8.0,velocity,center_ux,0.9107217192649841 +karman_re100,ppo,20,8.0,velocity,center_uy,0.20267808437347412 +karman_re100,ppo,20,8.0,velocity,lower_ux,1.1897499561309814 +karman_re100,ppo,20,8.0,velocity,lower_uy,0.21927614510059357 +karman_re100,ppo,21,8.4,velocity,upper_ux,0.9016017913818359 +karman_re100,ppo,21,8.4,velocity,upper_uy,0.023354699835181236 +karman_re100,ppo,21,8.4,velocity,center_ux,0.8863152265548706 +karman_re100,ppo,21,8.4,velocity,center_uy,0.03672696277499199 +karman_re100,ppo,21,8.4,velocity,lower_ux,1.2078680992126465 +karman_re100,ppo,21,8.4,velocity,lower_uy,0.11589336395263672 +karman_re100,ppo,22,8.8,velocity,upper_ux,0.909199595451355 +karman_re100,ppo,22,8.8,velocity,upper_uy,-0.10430904477834702 +karman_re100,ppo,22,8.8,velocity,center_ux,0.8749072551727295 +karman_re100,ppo,22,8.8,velocity,center_uy,-0.14969705045223236 +karman_re100,ppo,22,8.8,velocity,lower_ux,1.195060133934021 +karman_re100,ppo,22,8.8,velocity,lower_uy,-0.0312715619802475 +karman_re100,ppo,23,9.2,velocity,upper_ux,0.9374370574951172 +karman_re100,ppo,23,9.2,velocity,upper_uy,-0.20815522968769073 +karman_re100,ppo,23,9.2,velocity,center_ux,0.8833985328674316 +karman_re100,ppo,23,9.2,velocity,center_uy,-0.3118325471878052 +karman_re100,ppo,23,9.2,velocity,lower_ux,1.1411662101745605 +karman_re100,ppo,23,9.2,velocity,lower_uy,-0.19850033521652222 +karman_re100,ppo,24,9.6,velocity,upper_ux,0.9845808148384094 +karman_re100,ppo,24,9.6,velocity,upper_uy,-0.27456429600715637 +karman_re100,ppo,24,9.6,velocity,center_ux,0.9018001556396484 +karman_re100,ppo,24,9.6,velocity,center_uy,-0.421967476606369 +karman_re100,ppo,24,9.6,velocity,lower_ux,1.0670826435089111 +karman_re100,ppo,24,9.6,velocity,lower_uy,-0.32048752903938293 +karman_re100,ppo,25,10.0,velocity,upper_ux,1.0394443273544312 +karman_re100,ppo,25,10.0,velocity,upper_uy,-0.322548508644104 +karman_re100,ppo,25,10.0,velocity,center_ux,0.9221569895744324 +karman_re100,ppo,25,10.0,velocity,center_uy,-0.47995758056640625 +karman_re100,ppo,25,10.0,velocity,lower_ux,0.9961594343185425 +karman_re100,ppo,25,10.0,velocity,lower_uy,-0.3748443126678467 +karman_re100,ppo,26,10.4,velocity,upper_ux,1.0966613292694092 +karman_re100,ppo,26,10.4,velocity,upper_uy,-0.3377894163131714 +karman_re100,ppo,26,10.4,velocity,center_ux,0.9385675191879272 +karman_re100,ppo,26,10.4,velocity,center_uy,-0.49651041626930237 +karman_re100,ppo,26,10.4,velocity,lower_ux,0.932808518409729 +karman_re100,ppo,26,10.4,velocity,lower_uy,-0.3760647475719452 +karman_re100,ppo,27,10.8,velocity,upper_ux,1.1529531478881836 +karman_re100,ppo,27,10.8,velocity,upper_uy,-0.31714868545532227 +karman_re100,ppo,27,10.8,velocity,center_ux,0.9460339546203613 +karman_re100,ppo,27,10.8,velocity,center_uy,-0.4687967598438263 +karman_re100,ppo,27,10.8,velocity,lower_ux,0.8746010661125183 +karman_re100,ppo,27,10.8,velocity,lower_uy,-0.33333176374435425 +karman_re100,ppo,28,11.2,velocity,upper_ux,1.2075119018554688 +karman_re100,ppo,28,11.2,velocity,upper_uy,-0.26297828555107117 +karman_re100,ppo,28,11.2,velocity,center_ux,0.9413063526153564 +karman_re100,ppo,28,11.2,velocity,center_uy,-0.3881608843803406 +karman_re100,ppo,28,11.2,velocity,lower_ux,0.8284239768981934 +karman_re100,ppo,28,11.2,velocity,lower_uy,-0.24450767040252686 +karman_re100,ppo,29,11.6,velocity,upper_ux,1.2420765161514282 +karman_re100,ppo,29,11.6,velocity,upper_uy,-0.14714586734771729 +karman_re100,ppo,29,11.6,velocity,center_ux,0.9233714938163757 +karman_re100,ppo,29,11.6,velocity,center_uy,-0.21997743844985962 +karman_re100,ppo,29,11.6,velocity,lower_ux,0.8022379279136658 +karman_re100,ppo,29,11.6,velocity,lower_uy,-0.11355482786893845 +karman_re100,ppo,30,12.0,velocity,upper_ux,1.2492023706436157 +karman_re100,ppo,30,12.0,velocity,upper_uy,0.009786643087863922 +karman_re100,ppo,30,12.0,velocity,center_ux,0.9106659889221191 +karman_re100,ppo,30,12.0,velocity,center_uy,0.06582187861204147 +karman_re100,ppo,30,12.0,velocity,lower_ux,0.8062187433242798 +karman_re100,ppo,30,12.0,velocity,lower_uy,0.035644788295030594 +karman_re100,ppo,31,12.4,velocity,upper_ux,1.2145378589630127 +karman_re100,ppo,31,12.4,velocity,upper_uy,0.16796495020389557 +karman_re100,ppo,31,12.4,velocity,center_ux,0.9208974242210388 +karman_re100,ppo,31,12.4,velocity,center_uy,0.33232414722442627 +karman_re100,ppo,31,12.4,velocity,lower_ux,0.8444077968597412 +karman_re100,ppo,31,12.4,velocity,lower_uy,0.16965872049331665 +karman_re100,ppo,32,12.8,velocity,upper_ux,1.1469789743423462 +karman_re100,ppo,32,12.8,velocity,upper_uy,0.2885872721672058 +karman_re100,ppo,32,12.8,velocity,center_ux,0.9388285279273987 +karman_re100,ppo,32,12.8,velocity,center_uy,0.4694617986679077 +karman_re100,ppo,32,12.8,velocity,lower_ux,0.9015955328941345 +karman_re100,ppo,32,12.8,velocity,lower_uy,0.2695032060146332 +karman_re100,ppo,33,13.2,velocity,upper_ux,1.0726068019866943 +karman_re100,ppo,33,13.2,velocity,upper_uy,0.35936832427978516 +karman_re100,ppo,33,13.2,velocity,center_ux,0.9538568258285522 +karman_re100,ppo,33,13.2,velocity,center_uy,0.5278605222702026 +karman_re100,ppo,33,13.2,velocity,lower_ux,0.9684926867485046 +karman_re100,ppo,33,13.2,velocity,lower_uy,0.3329940438270569 +karman_re100,ppo,34,13.6,velocity,upper_ux,1.0023831129074097 +karman_re100,ppo,34,13.6,velocity,upper_uy,0.386077344417572 +karman_re100,ppo,34,13.6,velocity,center_ux,0.9652966856956482 +karman_re100,ppo,34,13.6,velocity,center_uy,0.5560632944107056 +karman_re100,ppo,34,13.6,velocity,lower_ux,1.039613962173462 +karman_re100,ppo,34,13.6,velocity,lower_uy,0.37601611018180847 +karman_re100,ppo,35,14.0,velocity,upper_ux,0.9337940216064453 +karman_re100,ppo,35,14.0,velocity,upper_uy,0.3761533498764038 +karman_re100,ppo,35,14.0,velocity,center_ux,0.9686163067817688 +karman_re100,ppo,35,14.0,velocity,center_uy,0.5608623027801514 +karman_re100,ppo,35,14.0,velocity,lower_ux,1.1096705198287964 +karman_re100,ppo,35,14.0,velocity,lower_uy,0.3898056149482727 +karman_re100,ppo,36,14.4,velocity,upper_ux,0.8704457879066467 +karman_re100,ppo,36,14.4,velocity,upper_uy,0.3237706422805786 +karman_re100,ppo,36,14.4,velocity,center_ux,0.9606712460517883 +karman_re100,ppo,36,14.4,velocity,center_uy,0.5303454399108887 +karman_re100,ppo,36,14.4,velocity,lower_ux,1.1805062294006348 +karman_re100,ppo,36,14.4,velocity,lower_uy,0.3653607666492462 +karman_re100,ppo,37,14.8,velocity,upper_ux,0.8200109601020813 +karman_re100,ppo,37,14.8,velocity,upper_uy,0.22545787692070007 +karman_re100,ppo,37,14.8,velocity,center_ux,0.9346612691879272 +karman_re100,ppo,37,14.8,velocity,center_uy,0.4394037127494812 +karman_re100,ppo,37,14.8,velocity,lower_ux,1.251347541809082 +karman_re100,ppo,37,14.8,velocity,lower_uy,0.29870668053627014 +karman_re100,ppo,38,15.2,velocity,upper_ux,0.7900267243385315 +karman_re100,ppo,38,15.2,velocity,upper_uy,0.0881519615650177 +karman_re100,ppo,38,15.2,velocity,center_ux,0.8947667479515076 +karman_re100,ppo,38,15.2,velocity,center_uy,0.2169811874628067 +karman_re100,ppo,38,15.2,velocity,lower_ux,1.3000547885894775 +karman_re100,ppo,38,15.2,velocity,lower_uy,0.16107207536697388 +karman_re100,ppo,39,15.6,velocity,upper_ux,0.794557511806488 +karman_re100,ppo,39,15.6,velocity,upper_uy,-0.06277541816234589 +karman_re100,ppo,39,15.6,velocity,center_ux,0.8848479986190796 +karman_re100,ppo,39,15.6,velocity,center_uy,-0.12391293793916702 +karman_re100,ppo,39,15.6,velocity,lower_ux,1.3057206869125366 +karman_re100,ppo,39,15.6,velocity,lower_uy,-0.02246488817036152 +karman_re100,ppo,40,16.0,velocity,upper_ux,0.8380486965179443 +karman_re100,ppo,40,16.0,velocity,upper_uy,-0.19050998985767365 +karman_re100,ppo,40,16.0,velocity,center_ux,0.9115650653839111 +karman_re100,ppo,40,16.0,velocity,center_uy,-0.3891279697418213 +karman_re100,ppo,40,16.0,velocity,lower_ux,1.253037452697754 +karman_re100,ppo,40,16.0,velocity,lower_uy,-0.19592346251010895 +karman_re100,ppo,41,16.4,velocity,upper_ux,0.9003173112869263 +karman_re100,ppo,41,16.4,velocity,upper_uy,-0.2848178446292877 +karman_re100,ppo,41,16.4,velocity,center_ux,0.9412792921066284 +karman_re100,ppo,41,16.4,velocity,center_uy,-0.5132113695144653 +karman_re100,ppo,41,16.4,velocity,lower_ux,1.1679819822311401 +karman_re100,ppo,41,16.4,velocity,lower_uy,-0.3179885745048523 +karman_re100,ppo,42,16.8,velocity,upper_ux,0.9750264883041382 +karman_re100,ppo,42,16.8,velocity,upper_uy,-0.34415698051452637 +karman_re100,ppo,42,16.8,velocity,center_ux,0.967231035232544 +karman_re100,ppo,42,16.8,velocity,center_uy,-0.5667238831520081 +karman_re100,ppo,42,16.8,velocity,lower_ux,1.082522988319397 +karman_re100,ppo,42,16.8,velocity,lower_uy,-0.3866736888885498 +karman_re100,ppo,43,17.2,velocity,upper_ux,1.052505373954773 +karman_re100,ppo,43,17.2,velocity,upper_uy,-0.38225430250167847 +karman_re100,ppo,43,17.2,velocity,center_ux,0.9869014620780945 +karman_re100,ppo,43,17.2,velocity,center_uy,-0.5961102843284607 +karman_re100,ppo,43,17.2,velocity,lower_ux,0.999591588973999 +karman_re100,ppo,43,17.2,velocity,lower_uy,-0.41375577449798584 +karman_re100,ppo,44,17.6,velocity,upper_ux,1.128128170967102 +karman_re100,ppo,44,17.6,velocity,upper_uy,-0.3861459493637085 +karman_re100,ppo,44,17.6,velocity,center_ux,1.0004887580871582 +karman_re100,ppo,44,17.6,velocity,center_uy,-0.601006031036377 +karman_re100,ppo,44,17.6,velocity,lower_ux,0.9185275435447693 +karman_re100,ppo,44,17.6,velocity,lower_uy,-0.4021500051021576 +karman_re100,ppo,45,18.0,velocity,upper_ux,1.2022641897201538 +karman_re100,ppo,45,18.0,velocity,upper_uy,-0.34545230865478516 +karman_re100,ppo,45,18.0,velocity,center_ux,1.0087952613830566 +karman_re100,ppo,45,18.0,velocity,center_uy,-0.5697780847549438 +karman_re100,ppo,45,18.0,velocity,lower_ux,0.8442839980125427 +karman_re100,ppo,45,18.0,velocity,lower_uy,-0.34407857060432434 +karman_re100,ppo,46,18.4,velocity,upper_ux,1.2652775049209595 +karman_re100,ppo,46,18.4,velocity,upper_uy,-0.25407513976097107 +karman_re100,ppo,46,18.4,velocity,center_ux,1.0099841356277466 +karman_re100,ppo,46,18.4,velocity,center_uy,-0.4615824222564697 +karman_re100,ppo,46,18.4,velocity,lower_ux,0.7845078110694885 +karman_re100,ppo,46,18.4,velocity,lower_uy,-0.23284004628658295 +karman_re100,ppo,47,18.8,velocity,upper_ux,1.2870296239852905 +karman_re100,ppo,47,18.8,velocity,upper_uy,-0.09833318740129471 +karman_re100,ppo,47,18.8,velocity,center_ux,1.0125142335891724 +karman_re100,ppo,47,18.8,velocity,center_uy,-0.15439440310001373 +karman_re100,ppo,47,18.8,velocity,lower_ux,0.7527583837509155 +karman_re100,ppo,47,18.8,velocity,lower_uy,-0.07568273693323135 +karman_re100,ppo,48,19.2,velocity,upper_ux,1.2757906913757324 +karman_re100,ppo,48,19.2,velocity,upper_uy,0.062378935515880585 +karman_re100,ppo,48,19.2,velocity,center_ux,1.0245517492294312 +karman_re100,ppo,48,19.2,velocity,center_uy,0.22526557743549347 +karman_re100,ppo,48,19.2,velocity,lower_ux,0.7707619667053223 +karman_re100,ppo,48,19.2,velocity,lower_uy,0.08812428265810013 +karman_re100,ppo,49,19.6,velocity,upper_ux,1.2320044040679932 +karman_re100,ppo,49,19.6,velocity,upper_uy,0.19289880990982056 +karman_re100,ppo,49,19.6,velocity,center_ux,1.0285052061080933 +karman_re100,ppo,49,19.6,velocity,center_uy,0.43707239627838135 +karman_re100,ppo,49,19.6,velocity,lower_ux,0.830273449420929 +karman_re100,ppo,49,19.6,velocity,lower_uy,0.21222807466983795 +karman_re100,ppo,50,20.0,velocity,upper_ux,1.1690571308135986 +karman_re100,ppo,50,20.0,velocity,upper_uy,0.2889239192008972 +karman_re100,ppo,50,20.0,velocity,center_ux,1.02922785282135 +karman_re100,ppo,50,20.0,velocity,center_uy,0.5027104616165161 +karman_re100,ppo,50,20.0,velocity,lower_ux,0.9038335680961609 +karman_re100,ppo,50,20.0,velocity,lower_uy,0.2982977628707886 +karman_re100,ppo,51,20.4,velocity,upper_ux,1.1019728183746338 +karman_re100,ppo,51,20.4,velocity,upper_uy,0.34533068537712097 +karman_re100,ppo,51,20.4,velocity,center_ux,1.0329149961471558 +karman_re100,ppo,51,20.4,velocity,center_uy,0.5300077199935913 +karman_re100,ppo,51,20.4,velocity,lower_ux,0.980132520198822 +karman_re100,ppo,51,20.4,velocity,lower_uy,0.35041457414627075 +karman_re100,ppo,52,20.8,velocity,upper_ux,1.0329179763793945 +karman_re100,ppo,52,20.8,velocity,upper_uy,0.3655959665775299 +karman_re100,ppo,52,20.8,velocity,center_ux,1.0356589555740356 +karman_re100,ppo,52,20.8,velocity,center_uy,0.5445960760116577 +karman_re100,ppo,52,20.8,velocity,lower_ux,1.0534310340881348 +karman_re100,ppo,52,20.8,velocity,lower_uy,0.38258761167526245 +karman_re100,ppo,53,21.2,velocity,upper_ux,0.9660810232162476 +karman_re100,ppo,53,21.2,velocity,upper_uy,0.3497769832611084 +karman_re100,ppo,53,21.2,velocity,center_ux,1.0372785329818726 +karman_re100,ppo,53,21.2,velocity,center_uy,0.5366832613945007 +karman_re100,ppo,53,21.2,velocity,lower_ux,1.1250050067901611 +karman_re100,ppo,53,21.2,velocity,lower_uy,0.38948068022727966 +karman_re100,ppo,54,21.6,velocity,upper_ux,0.9011826515197754 +karman_re100,ppo,54,21.6,velocity,upper_uy,0.2879236340522766 +karman_re100,ppo,54,21.6,velocity,center_ux,1.0273652076721191 +karman_re100,ppo,54,21.6,velocity,center_uy,0.49052950739860535 +karman_re100,ppo,54,21.6,velocity,lower_ux,1.1901166439056396 +karman_re100,ppo,54,21.6,velocity,lower_uy,0.35790884494781494 +karman_re100,ppo,55,22.0,velocity,upper_ux,0.8484302759170532 +karman_re100,ppo,55,22.0,velocity,upper_uy,0.1813790202140808 +karman_re100,ppo,55,22.0,velocity,center_ux,1.001872181892395 +karman_re100,ppo,55,22.0,velocity,center_uy,0.38434258103370667 +karman_re100,ppo,55,22.0,velocity,lower_ux,1.25221848487854 +karman_re100,ppo,55,22.0,velocity,lower_uy,0.2918948829174042 +karman_re100,ppo,56,22.4,velocity,upper_ux,0.8194841742515564 +karman_re100,ppo,56,22.4,velocity,upper_uy,0.040441468358039856 +karman_re100,ppo,56,22.4,velocity,center_ux,0.9654461741447449 +karman_re100,ppo,56,22.4,velocity,center_uy,0.16268238425254822 +karman_re100,ppo,56,22.4,velocity,lower_ux,1.2935465574264526 +karman_re100,ppo,56,22.4,velocity,lower_uy,0.16204465925693512 +karman_re100,ppo,57,22.8,velocity,upper_ux,0.8280076384544373 +karman_re100,ppo,57,22.8,velocity,upper_uy,-0.09849317371845245 +karman_re100,ppo,57,22.8,velocity,center_ux,0.9497827887535095 +karman_re100,ppo,57,22.8,velocity,center_uy,-0.14430244266986847 +karman_re100,ppo,57,22.8,velocity,lower_ux,1.29408597946167 +karman_re100,ppo,57,22.8,velocity,lower_uy,-0.014983042143285275 +karman_re100,ppo,58,23.2,velocity,upper_ux,0.8696796894073486 +karman_re100,ppo,58,23.2,velocity,upper_uy,-0.2111143171787262 +karman_re100,ppo,58,23.2,velocity,center_ux,0.9622249007225037 +karman_re100,ppo,58,23.2,velocity,center_uy,-0.36373618245124817 +karman_re100,ppo,58,23.2,velocity,lower_ux,1.241626262664795 +karman_re100,ppo,58,23.2,velocity,lower_uy,-0.1818496286869049 +karman_re100,ppo,59,23.6,velocity,upper_ux,0.9306238293647766 +karman_re100,ppo,59,23.6,velocity,upper_uy,-0.2940503656864166 +karman_re100,ppo,59,23.6,velocity,center_ux,0.9826028347015381 +karman_re100,ppo,59,23.6,velocity,center_uy,-0.4694458842277527 +karman_re100,ppo,59,23.6,velocity,lower_ux,1.1679366827011108 +karman_re100,ppo,59,23.6,velocity,lower_uy,-0.2969719469547272 +karman_re100,ppo,60,24.0,velocity,upper_ux,0.9972089529037476 +karman_re100,ppo,60,24.0,velocity,upper_uy,-0.3434238135814667 +karman_re100,ppo,60,24.0,velocity,center_ux,0.9965878129005432 +karman_re100,ppo,60,24.0,velocity,center_uy,-0.5195947885513306 +karman_re100,ppo,60,24.0,velocity,lower_ux,1.089592695236206 +karman_re100,ppo,60,24.0,velocity,lower_uy,-0.35785457491874695 +karman_re100,ppo,61,24.4,velocity,upper_ux,1.0671100616455078 +karman_re100,ppo,61,24.4,velocity,upper_uy,-0.3776913583278656 +karman_re100,ppo,61,24.4,velocity,center_ux,1.0079938173294067 +karman_re100,ppo,61,24.4,velocity,center_uy,-0.5470414757728577 +karman_re100,ppo,61,24.4,velocity,lower_ux,1.0159828662872314 +karman_re100,ppo,61,24.4,velocity,lower_uy,-0.37887927889823914 +karman_re100,ppo,62,24.8,velocity,upper_ux,1.1402134895324707 +karman_re100,ppo,62,24.8,velocity,upper_uy,-0.38168370723724365 +karman_re100,ppo,62,24.8,velocity,center_ux,1.0148948431015015 +karman_re100,ppo,62,24.8,velocity,center_uy,-0.547112762928009 +karman_re100,ppo,62,24.8,velocity,lower_ux,0.9415170550346375 +karman_re100,ppo,62,24.8,velocity,lower_uy,-0.3618243336677551 +karman_re100,ppo,63,25.2,velocity,upper_ux,1.2111694812774658 +karman_re100,ppo,63,25.2,velocity,upper_uy,-0.34617024660110474 +karman_re100,ppo,63,25.2,velocity,center_ux,1.0129567384719849 +karman_re100,ppo,63,25.2,velocity,center_uy,-0.5098505616188049 +karman_re100,ppo,63,25.2,velocity,lower_ux,0.8759809732437134 +karman_re100,ppo,63,25.2,velocity,lower_uy,-0.3016170263290405 +karman_re100,ppo,64,25.6,velocity,upper_ux,1.2729500532150269 +karman_re100,ppo,64,25.6,velocity,upper_uy,-0.26095303893089294 +karman_re100,ppo,64,25.6,velocity,center_ux,0.9914400577545166 +karman_re100,ppo,64,25.6,velocity,center_uy,-0.39621102809906006 +karman_re100,ppo,64,25.6,velocity,lower_ux,0.8216681480407715 +karman_re100,ppo,64,25.6,velocity,lower_uy,-0.18959301710128784 +karman_re100,ppo,65,26.0,velocity,upper_ux,1.3028512001037598 +karman_re100,ppo,65,26.0,velocity,upper_uy,-0.1140383929014206 +karman_re100,ppo,65,26.0,velocity,center_ux,0.9681165814399719 +karman_re100,ppo,65,26.0,velocity,center_uy,-0.13894127309322357 +karman_re100,ppo,65,26.0,velocity,lower_ux,0.7979012131690979 +karman_re100,ppo,65,26.0,velocity,lower_uy,-0.04980245605111122 +karman_re100,ppo,66,26.4,velocity,upper_ux,1.2908152341842651 +karman_re100,ppo,66,26.4,velocity,upper_uy,0.059176791459321976 +karman_re100,ppo,66,26.4,velocity,center_ux,0.9707306623458862 +karman_re100,ppo,66,26.4,velocity,center_uy,0.20095743238925934 +karman_re100,ppo,66,26.4,velocity,lower_ux,0.8132858872413635 +karman_re100,ppo,66,26.4,velocity,lower_uy,0.09221009165048599 +karman_re100,ppo,67,26.8,velocity,upper_ux,1.2398806810379028 +karman_re100,ppo,67,26.8,velocity,upper_uy,0.20202812552452087 +karman_re100,ppo,67,26.8,velocity,center_ux,0.990305483341217 +karman_re100,ppo,67,26.8,velocity,center_uy,0.4052480459213257 +karman_re100,ppo,67,26.8,velocity,lower_ux,0.8634063601493835 +karman_re100,ppo,67,26.8,velocity,lower_uy,0.2067190706729889 +karman_re100,ppo,68,27.2,velocity,upper_ux,1.1722301244735718 +karman_re100,ppo,68,27.2,velocity,upper_uy,0.2986043691635132 +karman_re100,ppo,68,27.2,velocity,center_ux,1.0072898864746094 +karman_re100,ppo,68,27.2,velocity,center_uy,0.48099014163017273 +karman_re100,ppo,68,27.2,velocity,lower_ux,0.9262731671333313 +karman_re100,ppo,68,27.2,velocity,lower_uy,0.29036396741867065 +karman_re100,ppo,69,27.6,velocity,upper_ux,1.102735161781311 +karman_re100,ppo,69,27.6,velocity,upper_uy,0.3530125021934509 +karman_re100,ppo,69,27.6,velocity,center_ux,1.02061128616333 +karman_re100,ppo,69,27.6,velocity,center_uy,0.5176758766174316 +karman_re100,ppo,69,27.6,velocity,lower_ux,0.9965351223945618 +karman_re100,ppo,69,27.6,velocity,lower_uy,0.34115809202194214 +karman_re100,ppo,70,28.0,velocity,upper_ux,1.033913254737854 +karman_re100,ppo,70,28.0,velocity,upper_uy,0.36984607577323914 +karman_re100,ppo,70,28.0,velocity,center_ux,1.02986741065979 +karman_re100,ppo,70,28.0,velocity,center_uy,0.5356084704399109 +karman_re100,ppo,70,28.0,velocity,lower_ux,1.066470742225647 +karman_re100,ppo,70,28.0,velocity,lower_uy,0.3739924728870392 +karman_re100,ppo,71,28.4,velocity,upper_ux,0.9648802280426025 +karman_re100,ppo,71,28.4,velocity,upper_uy,0.3507973551750183 +karman_re100,ppo,71,28.4,velocity,center_ux,1.0333492755889893 +karman_re100,ppo,71,28.4,velocity,center_uy,0.5275729894638062 +karman_re100,ppo,71,28.4,velocity,lower_ux,1.1331026554107666 +karman_re100,ppo,71,28.4,velocity,lower_uy,0.37989142537117004 +karman_re100,ppo,72,28.8,velocity,upper_ux,0.9002426266670227 +karman_re100,ppo,72,28.8,velocity,upper_uy,0.28676557540893555 +karman_re100,ppo,72,28.8,velocity,center_ux,1.0262423753738403 +karman_re100,ppo,72,28.8,velocity,center_uy,0.47982096672058105 +karman_re100,ppo,72,28.8,velocity,lower_ux,1.1943519115447998 +karman_re100,ppo,72,28.8,velocity,lower_uy,0.3477340638637543 +karman_re100,ppo,73,29.2,velocity,upper_ux,0.8506268858909607 +karman_re100,ppo,73,29.2,velocity,upper_uy,0.17756086587905884 +karman_re100,ppo,73,29.2,velocity,center_ux,1.006913423538208 +karman_re100,ppo,73,29.2,velocity,center_uy,0.37124159932136536 +karman_re100,ppo,73,29.2,velocity,lower_ux,1.255942702293396 +karman_re100,ppo,73,29.2,velocity,lower_uy,0.28144368529319763 +karman_re100,ppo,74,29.6,velocity,upper_ux,0.8214596509933472 +karman_re100,ppo,74,29.6,velocity,upper_uy,0.03421761840581894 +karman_re100,ppo,74,29.6,velocity,center_ux,0.971933126449585 +karman_re100,ppo,74,29.6,velocity,center_uy,0.1463523507118225 +karman_re100,ppo,74,29.6,velocity,lower_ux,1.2887340784072876 +karman_re100,ppo,74,29.6,velocity,lower_uy,0.15165765583515167 +karman_re100,ppo,75,30.0,velocity,upper_ux,0.831959068775177 +karman_re100,ppo,75,30.0,velocity,upper_uy,-0.1064164862036705 +karman_re100,ppo,75,30.0,velocity,center_ux,0.9569587111473083 +karman_re100,ppo,75,30.0,velocity,center_uy,-0.15907002985477448 +karman_re100,ppo,75,30.0,velocity,lower_ux,1.2846441268920898 +karman_re100,ppo,75,30.0,velocity,lower_uy,-0.021242570132017136 +karman_re100,ppo,76,30.4,velocity,upper_ux,0.8750095963478088 +karman_re100,ppo,76,30.4,velocity,upper_uy,-0.2201855331659317 +karman_re100,ppo,76,30.4,velocity,center_ux,0.9666649103164673 +karman_re100,ppo,76,30.4,velocity,center_uy,-0.37145909667015076 +karman_re100,ppo,76,30.4,velocity,lower_ux,1.2330683469772339 +karman_re100,ppo,76,30.4,velocity,lower_uy,-0.18273304402828217 +karman_re100,ppo,77,30.8,velocity,upper_ux,0.9347975850105286 +karman_re100,ppo,77,30.8,velocity,upper_uy,-0.30043914914131165 +karman_re100,ppo,77,30.8,velocity,center_ux,0.98110032081604 +karman_re100,ppo,77,30.8,velocity,center_uy,-0.4751795530319214 +karman_re100,ppo,77,30.8,velocity,lower_ux,1.1561534404754639 +karman_re100,ppo,77,30.8,velocity,lower_uy,-0.296576589345932 +karman_re100,ppo,78,31.2,velocity,upper_ux,1.0041731595993042 +karman_re100,ppo,78,31.2,velocity,upper_uy,-0.3485104739665985 +karman_re100,ppo,78,31.2,velocity,center_ux,0.9952790141105652 +karman_re100,ppo,78,31.2,velocity,center_uy,-0.5253354907035828 +karman_re100,ppo,78,31.2,velocity,lower_ux,1.0788605213165283 +karman_re100,ppo,78,31.2,velocity,lower_uy,-0.3575265407562256 +karman_re100,ppo,79,31.6,velocity,upper_ux,1.0753730535507202 +karman_re100,ppo,79,31.6,velocity,upper_uy,-0.3821098208427429 +karman_re100,ppo,79,31.6,velocity,center_ux,1.0062919855117798 +karman_re100,ppo,79,31.6,velocity,center_uy,-0.5536080002784729 +karman_re100,ppo,79,31.6,velocity,lower_ux,1.0046404600143433 +karman_re100,ppo,79,31.6,velocity,lower_uy,-0.378165602684021 +karman_re100,ppo,80,32.0,velocity,upper_ux,1.144782304763794 +karman_re100,ppo,80,32.0,velocity,upper_uy,-0.3850865960121155 +karman_re100,ppo,80,32.0,velocity,center_ux,1.0113935470581055 +karman_re100,ppo,80,32.0,velocity,center_uy,-0.5556858777999878 +karman_re100,ppo,80,32.0,velocity,lower_ux,0.9311182498931885 +karman_re100,ppo,80,32.0,velocity,lower_uy,-0.3627805709838867 +karman_re100,ppo,81,32.4,velocity,upper_ux,1.2135967016220093 +karman_re100,ppo,81,32.4,velocity,upper_uy,-0.3488142788410187 +karman_re100,ppo,81,32.4,velocity,center_ux,1.008115530014038 +karman_re100,ppo,81,32.4,velocity,center_uy,-0.5216673016548157 +karman_re100,ppo,81,32.4,velocity,lower_ux,0.8633967638015747 +karman_re100,ppo,81,32.4,velocity,lower_uy,-0.30507799983024597 +karman_re100,ppo,82,32.8,velocity,upper_ux,1.2749717235565186 +karman_re100,ppo,82,32.8,velocity,upper_uy,-0.26690539717674255 +karman_re100,ppo,82,32.8,velocity,center_ux,0.9896684885025024 +karman_re100,ppo,82,32.8,velocity,center_uy,-0.4190767705440521 +karman_re100,ppo,82,32.8,velocity,lower_ux,0.8092604875564575 +karman_re100,ppo,82,32.8,velocity,lower_uy,-0.20021317899227142 +karman_re100,ppo,83,33.2,velocity,upper_ux,1.303310513496399 +karman_re100,ppo,83,33.2,velocity,upper_uy,-0.11675916612148285 +karman_re100,ppo,83,33.2,velocity,center_ux,0.9683176279067993 +karman_re100,ppo,83,33.2,velocity,center_uy,-0.15530526638031006 +karman_re100,ppo,83,33.2,velocity,lower_ux,0.7825344800949097 +karman_re100,ppo,83,33.2,velocity,lower_uy,-0.05914440006017685 +karman_re100,ppo,84,33.6,velocity,upper_ux,1.2913124561309814 +karman_re100,ppo,84,33.6,velocity,upper_uy,0.054867640137672424 +karman_re100,ppo,84,33.6,velocity,center_ux,0.9738811254501343 +karman_re100,ppo,84,33.6,velocity,center_uy,0.19780246913433075 +karman_re100,ppo,84,33.6,velocity,lower_ux,0.7989221811294556 +karman_re100,ppo,84,33.6,velocity,lower_uy,0.08429434895515442 +karman_re100,ppo,85,34.0,velocity,upper_ux,1.2424590587615967 +karman_re100,ppo,85,34.0,velocity,upper_uy,0.1933804154396057 +karman_re100,ppo,85,34.0,velocity,center_ux,0.9916167259216309 +karman_re100,ppo,85,34.0,velocity,center_uy,0.4113653302192688 +karman_re100,ppo,85,34.0,velocity,lower_ux,0.8505764603614807 +karman_re100,ppo,85,34.0,velocity,lower_uy,0.19770637154579163 +karman_re100,ppo,86,34.4,velocity,upper_ux,1.1761971712112427 +karman_re100,ppo,86,34.4,velocity,upper_uy,0.29089897871017456 +karman_re100,ppo,86,34.4,velocity,center_ux,1.006981372833252 +karman_re100,ppo,86,34.4,velocity,center_uy,0.4855383634567261 +karman_re100,ppo,86,34.4,velocity,lower_ux,0.9156488180160522 +karman_re100,ppo,86,34.4,velocity,lower_uy,0.2834554612636566 +karman_re100,ppo,87,34.8,velocity,upper_ux,1.1065664291381836 +karman_re100,ppo,87,34.8,velocity,upper_uy,0.3482471704483032 +karman_re100,ppo,87,34.8,velocity,center_ux,1.0191060304641724 +karman_re100,ppo,87,34.8,velocity,center_uy,0.5198497176170349 +karman_re100,ppo,87,34.8,velocity,lower_ux,0.9865090250968933 +karman_re100,ppo,87,34.8,velocity,lower_uy,0.3365020751953125 +karman_re100,ppo,88,35.2,velocity,upper_ux,1.035535216331482 +karman_re100,ppo,88,35.2,velocity,upper_uy,0.369457483291626 +karman_re100,ppo,88,35.2,velocity,center_ux,1.0270658731460571 +karman_re100,ppo,88,35.2,velocity,center_uy,0.5392223000526428 +karman_re100,ppo,88,35.2,velocity,lower_ux,1.0569006204605103 +karman_re100,ppo,88,35.2,velocity,lower_uy,0.37115004658699036 +karman_re100,ppo,89,35.6,velocity,upper_ux,0.9649508595466614 +karman_re100,ppo,89,35.6,velocity,upper_uy,0.35502761602401733 +karman_re100,ppo,89,35.6,velocity,center_ux,1.0303287506103516 +karman_re100,ppo,89,35.6,velocity,center_uy,0.534879744052887 +karman_re100,ppo,89,35.6,velocity,lower_ux,1.1237592697143555 +karman_re100,ppo,89,35.6,velocity,lower_uy,0.38017329573631287 +karman_re100,ppo,90,36.0,velocity,upper_ux,0.8999846577644348 +karman_re100,ppo,90,36.0,velocity,upper_uy,0.2966400384902954 +karman_re100,ppo,90,36.0,velocity,center_ux,1.0271425247192383 +karman_re100,ppo,90,36.0,velocity,center_uy,0.49337103962898254 +karman_re100,ppo,90,36.0,velocity,lower_ux,1.1889225244522095 +karman_re100,ppo,90,36.0,velocity,lower_uy,0.35103875398635864 +karman_re100,ppo,91,36.4,velocity,upper_ux,0.8457091450691223 +karman_re100,ppo,91,36.4,velocity,upper_uy,0.19180834293365479 +karman_re100,ppo,91,36.4,velocity,center_ux,1.0081803798675537 +karman_re100,ppo,91,36.4,velocity,center_uy,0.39362049102783203 +karman_re100,ppo,91,36.4,velocity,lower_ux,1.2490524053573608 +karman_re100,ppo,91,36.4,velocity,lower_uy,0.2871764004230499 +karman_re100,ppo,92,36.8,velocity,upper_ux,0.8150972127914429 +karman_re100,ppo,92,36.8,velocity,upper_uy,0.04931305721402168 +karman_re100,ppo,92,36.8,velocity,center_ux,0.977131187915802 +karman_re100,ppo,92,36.8,velocity,center_uy,0.174525648355484 +karman_re100,ppo,92,36.8,velocity,lower_ux,1.286353588104248 +karman_re100,ppo,92,36.8,velocity,lower_uy,0.16210512816905975 +karman_re100,ppo,93,37.2,velocity,upper_ux,0.8226932287216187 +karman_re100,ppo,93,37.2,velocity,upper_uy,-0.0942196175456047 +karman_re100,ppo,93,37.2,velocity,center_ux,0.9617407917976379 +karman_re100,ppo,93,37.2,velocity,center_uy,-0.1400337815284729 +karman_re100,ppo,93,37.2,velocity,lower_ux,1.2841198444366455 +karman_re100,ppo,93,37.2,velocity,lower_uy,-0.0067810420878231525 +karman_re100,ppo,94,37.6,velocity,upper_ux,0.8645977973937988 +karman_re100,ppo,94,37.6,velocity,upper_uy,-0.21097509562969208 +karman_re100,ppo,94,37.6,velocity,center_ux,0.9684702157974243 +karman_re100,ppo,94,37.6,velocity,center_uy,-0.36495286226272583 +karman_re100,ppo,94,37.6,velocity,lower_ux,1.2355369329452515 +karman_re100,ppo,94,37.6,velocity,lower_uy,-0.16610859334468842 +karman_re100,ppo,95,38.0,velocity,upper_ux,0.925384521484375 +karman_re100,ppo,95,38.0,velocity,upper_uy,-0.29550015926361084 +karman_re100,ppo,95,38.0,velocity,center_ux,0.9817956686019897 +karman_re100,ppo,95,38.0,velocity,center_uy,-0.47112196683883667 +karman_re100,ppo,95,38.0,velocity,lower_ux,1.1615010499954224 +karman_re100,ppo,95,38.0,velocity,lower_uy,-0.2818617522716522 +karman_re100,ppo,96,38.4,velocity,upper_ux,0.9948557019233704 +karman_re100,ppo,96,38.4,velocity,upper_uy,-0.346282958984375 +karman_re100,ppo,96,38.4,velocity,center_ux,0.9938661456108093 +karman_re100,ppo,96,38.4,velocity,center_uy,-0.523128092288971 +karman_re100,ppo,96,38.4,velocity,lower_ux,1.0837044715881348 +karman_re100,ppo,96,38.4,velocity,lower_uy,-0.3474913537502289 +karman_re100,ppo,97,38.8,velocity,upper_ux,1.0668028593063354 +karman_re100,ppo,97,38.8,velocity,upper_uy,-0.38181546330451965 +karman_re100,ppo,97,38.8,velocity,center_ux,1.0033795833587646 +karman_re100,ppo,97,38.8,velocity,center_uy,-0.55326247215271 +karman_re100,ppo,97,38.8,velocity,lower_ux,1.0079936981201172 +karman_re100,ppo,97,38.8,velocity,lower_uy,-0.3726586401462555 +karman_re100,ppo,98,39.2,velocity,upper_ux,1.1382699012756348 +karman_re100,ppo,98,39.2,velocity,upper_uy,-0.38922059535980225 +karman_re100,ppo,98,39.2,velocity,center_ux,1.0084280967712402 +karman_re100,ppo,98,39.2,velocity,center_uy,-0.5598897337913513 +karman_re100,ppo,98,39.2,velocity,lower_ux,0.9341659545898438 +karman_re100,ppo,98,39.2,velocity,lower_uy,-0.36241957545280457 +karman_re100,ppo,99,39.6,velocity,upper_ux,1.2075059413909912 +karman_re100,ppo,99,39.6,velocity,upper_uy,-0.3565107583999634 +karman_re100,ppo,99,39.6,velocity,center_ux,1.003592610359192 +karman_re100,ppo,99,39.6,velocity,center_uy,-0.5318002104759216 +karman_re100,ppo,99,39.6,velocity,lower_ux,0.8634079098701477 +karman_re100,ppo,99,39.6,velocity,lower_uy,-0.31059208512306213 +karman_re100,ppo,100,40.0,velocity,upper_ux,1.2720730304718018 +karman_re100,ppo,100,40.0,velocity,upper_uy,-0.2787281572818756 +karman_re100,ppo,100,40.0,velocity,center_ux,0.9845826029777527 +karman_re100,ppo,100,40.0,velocity,center_uy,-0.44011634588241577 +karman_re100,ppo,100,40.0,velocity,lower_ux,0.806749701499939 +karman_re100,ppo,100,40.0,velocity,lower_uy,-0.21150457859039307 +karman_re100,ppo,101,40.4,velocity,upper_ux,1.3055899143218994 +karman_re100,ppo,101,40.4,velocity,upper_uy,-0.12963862717151642 +karman_re100,ppo,101,40.4,velocity,center_ux,0.9619459509849548 +karman_re100,ppo,101,40.4,velocity,center_uy,-0.1879296749830246 +karman_re100,ppo,101,40.4,velocity,lower_ux,0.7775154113769531 +karman_re100,ppo,101,40.4,velocity,lower_uy,-0.07337276637554169 +karman_re100,ppo,102,40.8,velocity,upper_ux,1.2950187921524048 +karman_re100,ppo,102,40.8,velocity,upper_uy,0.045881010591983795 +karman_re100,ppo,102,40.8,velocity,center_ux,0.9661124348640442 +karman_re100,ppo,102,40.8,velocity,center_uy,0.1753462553024292 +karman_re100,ppo,102,40.8,velocity,lower_ux,0.7897285223007202 +karman_re100,ppo,102,40.8,velocity,lower_uy,0.07120450586080551 +karman_re100,ppo,103,41.2,velocity,upper_ux,1.2482389211654663 +karman_re100,ppo,103,41.2,velocity,upper_uy,0.1875511109828949 +karman_re100,ppo,103,41.2,velocity,center_ux,0.9870747923851013 +karman_re100,ppo,103,41.2,velocity,center_uy,0.40738242864608765 +karman_re100,ppo,103,41.2,velocity,lower_ux,0.8414089679718018 +karman_re100,ppo,103,41.2,velocity,lower_uy,0.18666964769363403 +karman_re100,ppo,104,41.6,velocity,upper_ux,1.182770848274231 +karman_re100,ppo,104,41.6,velocity,upper_uy,0.2878747582435608 +karman_re100,ppo,104,41.6,velocity,center_ux,1.0047938823699951 +karman_re100,ppo,104,41.6,velocity,center_uy,0.4858766198158264 +karman_re100,ppo,104,41.6,velocity,lower_ux,0.9071598052978516 +karman_re100,ppo,104,41.6,velocity,lower_uy,0.2753007411956787 +karman_re100,ppo,105,42.0,velocity,upper_ux,1.112069010734558 +karman_re100,ppo,105,42.0,velocity,upper_uy,0.34807005524635315 +karman_re100,ppo,105,42.0,velocity,center_ux,1.0172336101531982 +karman_re100,ppo,105,42.0,velocity,center_uy,0.5193129777908325 +karman_re100,ppo,105,42.0,velocity,lower_ux,0.9774659872055054 +karman_re100,ppo,105,42.0,velocity,lower_uy,0.33130374550819397 +karman_re100,ppo,106,42.4,velocity,upper_ux,1.0424184799194336 +karman_re100,ppo,106,42.4,velocity,upper_uy,0.3717387020587921 +karman_re100,ppo,106,42.4,velocity,center_ux,1.0272181034088135 +karman_re100,ppo,106,42.4,velocity,center_uy,0.5386716723442078 +karman_re100,ppo,106,42.4,velocity,lower_ux,1.049179196357727 +karman_re100,ppo,106,42.4,velocity,lower_uy,0.36737555265426636 +karman_re100,ppo,107,42.8,velocity,upper_ux,0.9742519855499268 +karman_re100,ppo,107,42.8,velocity,upper_uy,0.3606036305427551 +karman_re100,ppo,107,42.8,velocity,center_ux,1.0341907739639282 +karman_re100,ppo,107,42.8,velocity,center_uy,0.5371183156967163 +karman_re100,ppo,107,42.8,velocity,lower_ux,1.1196461915969849 +karman_re100,ppo,107,42.8,velocity,lower_uy,0.3802888095378876 +karman_re100,ppo,108,43.2,velocity,upper_ux,0.9072627425193787 +karman_re100,ppo,108,43.2,velocity,upper_uy,0.30451083183288574 +karman_re100,ppo,108,43.2,velocity,center_ux,1.0306051969528198 +karman_re100,ppo,108,43.2,velocity,center_uy,0.4971264600753784 +karman_re100,ppo,108,43.2,velocity,lower_ux,1.1830377578735352 +karman_re100,ppo,108,43.2,velocity,lower_uy,0.3536081314086914 +karman_re100,ppo,109,43.6,velocity,upper_ux,0.8524683117866516 +karman_re100,ppo,109,43.6,velocity,upper_uy,0.20164266228675842 +karman_re100,ppo,109,43.6,velocity,center_ux,1.0142790079116821 +karman_re100,ppo,109,43.6,velocity,center_uy,0.4019758701324463 +karman_re100,ppo,109,43.6,velocity,lower_ux,1.244907021522522 +karman_re100,ppo,109,43.6,velocity,lower_uy,0.29334282875061035 +karman_re100,ppo,110,44.0,velocity,upper_ux,0.8183300495147705 +karman_re100,ppo,110,44.0,velocity,upper_uy,0.05994980409741402 +karman_re100,ppo,110,44.0,velocity,center_ux,0.983223557472229 +karman_re100,ppo,110,44.0,velocity,center_uy,0.19522292912006378 +karman_re100,ppo,110,44.0,velocity,lower_ux,1.2840895652770996 +karman_re100,ppo,110,44.0,velocity,lower_uy,0.1743229627609253 +karman_re100,ppo,111,44.4,velocity,upper_ux,0.8229215145111084 +karman_re100,ppo,111,44.4,velocity,upper_uy,-0.08568829298019409 +karman_re100,ppo,111,44.4,velocity,center_ux,0.9665039777755737 +karman_re100,ppo,111,44.4,velocity,center_uy,-0.11478140950202942 +karman_re100,ppo,111,44.4,velocity,lower_ux,1.2873106002807617 +karman_re100,ppo,111,44.4,velocity,lower_uy,0.007466367445886135 +karman_re100,ppo,112,44.8,velocity,upper_ux,0.8622635006904602 +karman_re100,ppo,112,44.8,velocity,upper_uy,-0.2043289989233017 +karman_re100,ppo,112,44.8,velocity,center_ux,0.9712561964988708 +karman_re100,ppo,112,44.8,velocity,center_uy,-0.34837913513183594 +karman_re100,ppo,112,44.8,velocity,lower_ux,1.2421886920928955 +karman_re100,ppo,112,44.8,velocity,lower_uy,-0.1545892357826233 +karman_re100,ppo,113,45.2,velocity,upper_ux,0.92082679271698 +karman_re100,ppo,113,45.2,velocity,upper_uy,-0.2911480665206909 +karman_re100,ppo,113,45.2,velocity,center_ux,0.9830333590507507 +karman_re100,ppo,113,45.2,velocity,center_uy,-0.46181854605674744 +karman_re100,ppo,113,45.2,velocity,lower_ux,1.1689475774765015 +karman_re100,ppo,113,45.2,velocity,lower_uy,-0.27451831102371216 +karman_re100,ppo,114,45.6,velocity,upper_ux,0.9899152517318726 +karman_re100,ppo,114,45.6,velocity,upper_uy,-0.34338095784187317 +karman_re100,ppo,114,45.6,velocity,center_ux,0.9950518012046814 +karman_re100,ppo,114,45.6,velocity,center_uy,-0.5170575380325317 +karman_re100,ppo,114,45.6,velocity,lower_ux,1.0921608209609985 +karman_re100,ppo,114,45.6,velocity,lower_uy,-0.34341180324554443 +karman_re100,ppo,115,46.0,velocity,upper_ux,1.061700701713562 +karman_re100,ppo,115,46.0,velocity,upper_uy,-0.37977930903434753 +karman_re100,ppo,115,46.0,velocity,center_ux,1.0047177076339722 +karman_re100,ppo,115,46.0,velocity,center_uy,-0.5479605197906494 +karman_re100,ppo,115,46.0,velocity,lower_ux,1.0176204442977905 +karman_re100,ppo,115,46.0,velocity,lower_uy,-0.3705126643180847 +karman_re100,ppo,116,46.4,velocity,upper_ux,1.1316497325897217 +karman_re100,ppo,116,46.4,velocity,upper_uy,-0.3903930187225342 +karman_re100,ppo,116,46.4,velocity,center_ux,1.0084069967269897 +karman_re100,ppo,116,46.4,velocity,center_uy,-0.556444525718689 +karman_re100,ppo,116,46.4,velocity,lower_ux,0.9435936212539673 +karman_re100,ppo,116,46.4,velocity,lower_uy,-0.36252638697624207 +karman_re100,ppo,117,46.8,velocity,upper_ux,1.2012158632278442 +karman_re100,ppo,117,46.8,velocity,upper_uy,-0.36155566573143005 +karman_re100,ppo,117,46.8,velocity,center_ux,1.0042285919189453 +karman_re100,ppo,117,46.8,velocity,center_uy,-0.5310794115066528 +karman_re100,ppo,117,46.8,velocity,lower_ux,0.8740277290344238 +karman_re100,ppo,117,46.8,velocity,lower_uy,-0.3141964375972748 +karman_re100,ppo,118,47.2,velocity,upper_ux,1.2679283618927002 +karman_re100,ppo,118,47.2,velocity,upper_uy,-0.2898766100406647 +karman_re100,ppo,118,47.2,velocity,center_ux,0.9847269654273987 +karman_re100,ppo,118,47.2,velocity,center_uy,-0.44695156812667847 +karman_re100,ppo,118,47.2,velocity,lower_ux,0.8168196678161621 +karman_re100,ppo,118,47.2,velocity,lower_uy,-0.2190086990594864 +karman_re100,ppo,119,47.6,velocity,upper_ux,1.3063790798187256 +karman_re100,ppo,119,47.6,velocity,upper_uy,-0.14764882624149323 +karman_re100,ppo,119,47.6,velocity,center_ux,0.9567590951919556 +karman_re100,ppo,119,47.6,velocity,center_uy,-0.2172241061925888 +karman_re100,ppo,119,47.6,velocity,lower_ux,0.7843823432922363 +karman_re100,ppo,119,47.6,velocity,lower_uy,-0.08481798321008682 +karman_re100,ppo,120,48.0,velocity,upper_ux,1.302156925201416 +karman_re100,ppo,120,48.0,velocity,upper_uy,0.03051479533314705 +karman_re100,ppo,120,48.0,velocity,center_ux,0.9570751190185547 +karman_re100,ppo,120,48.0,velocity,center_uy,0.14149731397628784 +karman_re100,ppo,120,48.0,velocity,lower_ux,0.7929297685623169 +karman_re100,ppo,120,48.0,velocity,lower_uy,0.059226684272289276 +karman_re100,ppo,121,48.4,velocity,upper_ux,1.2563121318817139 +karman_re100,ppo,121,48.4,velocity,upper_uy,0.17895816266536713 +karman_re100,ppo,121,48.4,velocity,center_ux,0.9791205525398254 +karman_re100,ppo,121,48.4,velocity,center_uy,0.3898365795612335 +karman_re100,ppo,121,48.4,velocity,lower_ux,0.8401070237159729 +karman_re100,ppo,121,48.4,velocity,lower_uy,0.17664405703544617 +karman_re100,ppo,122,48.8,velocity,upper_ux,1.1917085647583008 +karman_re100,ppo,122,48.8,velocity,upper_uy,0.2835783064365387 +karman_re100,ppo,122,48.8,velocity,center_ux,1.00102698802948 +karman_re100,ppo,122,48.8,velocity,center_uy,0.4794352650642395 +karman_re100,ppo,122,48.8,velocity,lower_ux,0.9043598771095276 +karman_re100,ppo,122,48.8,velocity,lower_uy,0.2679409682750702 +karman_re100,ppo,123,49.2,velocity,upper_ux,1.1200696229934692 +karman_re100,ppo,123,49.2,velocity,upper_uy,0.3461886942386627 +karman_re100,ppo,123,49.2,velocity,center_ux,1.01543390750885 +karman_re100,ppo,123,49.2,velocity,center_uy,0.5152695775032043 +karman_re100,ppo,123,49.2,velocity,lower_ux,0.9734877943992615 +karman_re100,ppo,123,49.2,velocity,lower_uy,0.32595062255859375 +karman_re100,ppo,124,49.6,velocity,upper_ux,1.0495009422302246 +karman_re100,ppo,124,49.6,velocity,upper_uy,0.3719029724597931 +karman_re100,ppo,124,49.6,velocity,center_ux,1.026102066040039 +karman_re100,ppo,124,49.6,velocity,center_uy,0.5357967019081116 +karman_re100,ppo,124,49.6,velocity,lower_ux,1.044163465499878 +karman_re100,ppo,124,49.6,velocity,lower_uy,0.36325645446777344 +karman_re100,ppo,125,50.0,velocity,upper_ux,0.9815685749053955 +karman_re100,ppo,125,50.0,velocity,upper_uy,0.36309191584587097 +karman_re100,ppo,125,50.0,velocity,center_ux,1.0342944860458374 +karman_re100,ppo,125,50.0,velocity,center_uy,0.5363079309463501 +karman_re100,ppo,125,50.0,velocity,lower_ux,1.114543080329895 +karman_re100,ppo,125,50.0,velocity,lower_uy,0.3787009119987488 +karman_re100,ppo,126,50.4,velocity,upper_ux,0.9147254824638367 +karman_re100,ppo,126,50.4,velocity,upper_uy,0.30989930033683777 +karman_re100,ppo,126,50.4,velocity,center_ux,1.0325161218643188 +karman_re100,ppo,126,50.4,velocity,center_uy,0.4987778961658478 +karman_re100,ppo,126,50.4,velocity,lower_ux,1.1782256364822388 +karman_re100,ppo,126,50.4,velocity,lower_uy,0.35473090410232544 +karman_re100,ppo,127,50.8,velocity,upper_ux,0.8579270243644714 +karman_re100,ppo,127,50.8,velocity,upper_uy,0.20986858010292053 +karman_re100,ppo,127,50.8,velocity,center_ux,1.0167341232299805 +karman_re100,ppo,127,50.8,velocity,center_uy,0.40868666768074036 +karman_re100,ppo,127,50.8,velocity,lower_ux,1.2390843629837036 +karman_re100,ppo,127,50.8,velocity,lower_uy,0.29777464270591736 +karman_re100,ppo,128,51.2,velocity,upper_ux,0.8223835229873657 +karman_re100,ppo,128,51.2,velocity,upper_uy,0.07012028992176056 +karman_re100,ppo,128,51.2,velocity,center_ux,0.9869576096534729 +karman_re100,ppo,128,51.2,velocity,center_uy,0.21326018869876862 +karman_re100,ppo,128,51.2,velocity,lower_ux,1.2810276746749878 +karman_re100,ppo,128,51.2,velocity,lower_uy,0.18507404625415802 +karman_re100,ppo,129,51.6,velocity,upper_ux,0.8233262896537781 +karman_re100,ppo,129,51.6,velocity,upper_uy,-0.07664912939071655 +karman_re100,ppo,129,51.6,velocity,center_ux,0.9671249985694885 +karman_re100,ppo,129,51.6,velocity,center_uy,-0.0923549085855484 +karman_re100,ppo,129,51.6,velocity,lower_ux,1.2861449718475342 +karman_re100,ppo,129,51.6,velocity,lower_uy,0.020698871463537216 +karman_re100,ppo,130,52.0,velocity,upper_ux,0.8605561256408691 +karman_re100,ppo,130,52.0,velocity,upper_uy,-0.19798476994037628 +karman_re100,ppo,130,52.0,velocity,center_ux,0.970618486404419 +karman_re100,ppo,130,52.0,velocity,center_uy,-0.33477863669395447 +karman_re100,ppo,130,52.0,velocity,lower_ux,1.2451797723770142 +karman_re100,ppo,130,52.0,velocity,lower_uy,-0.1435728371143341 +karman_re100,ppo,131,52.4,velocity,upper_ux,0.9185792803764343 +karman_re100,ppo,131,52.4,velocity,upper_uy,-0.2875373661518097 +karman_re100,ppo,131,52.4,velocity,center_ux,0.9826581478118896 +karman_re100,ppo,131,52.4,velocity,center_uy,-0.45549869537353516 +karman_re100,ppo,131,52.4,velocity,lower_ux,1.1733386516571045 +karman_re100,ppo,131,52.4,velocity,lower_uy,-0.26774492859840393 +karman_re100,ppo,132,52.8,velocity,upper_ux,0.986602783203125 +karman_re100,ppo,132,52.8,velocity,upper_uy,-0.3411247730255127 +karman_re100,ppo,132,52.8,velocity,center_ux,0.9941125512123108 +karman_re100,ppo,132,52.8,velocity,center_uy,-0.5139279961585999 +karman_re100,ppo,132,52.8,velocity,lower_ux,1.0958863496780396 +karman_re100,ppo,132,52.8,velocity,lower_uy,-0.33988580107688904 +karman_re100,ppo,133,53.2,velocity,upper_ux,1.0574116706848145 +karman_re100,ppo,133,53.2,velocity,upper_uy,-0.37828099727630615 +karman_re100,ppo,133,53.2,velocity,center_ux,1.003279685974121 +karman_re100,ppo,133,53.2,velocity,center_uy,-0.5460543632507324 +karman_re100,ppo,133,53.2,velocity,lower_ux,1.0207422971725464 +karman_re100,ppo,133,53.2,velocity,lower_uy,-0.3692283630371094 +karman_re100,ppo,134,53.6,velocity,upper_ux,1.128455400466919 +karman_re100,ppo,134,53.6,velocity,upper_uy,-0.3912811279296875 +karman_re100,ppo,134,53.6,velocity,center_ux,1.0081465244293213 +karman_re100,ppo,134,53.6,velocity,center_uy,-0.5566713809967041 +karman_re100,ppo,134,53.6,velocity,lower_ux,0.9474615454673767 +karman_re100,ppo,134,53.6,velocity,lower_uy,-0.36353641748428345 +karman_re100,ppo,135,54.0,velocity,upper_ux,1.197390079498291 +karman_re100,ppo,135,54.0,velocity,upper_uy,-0.364715039730072 +karman_re100,ppo,135,54.0,velocity,center_ux,1.004063606262207 +karman_re100,ppo,135,54.0,velocity,center_uy,-0.5336652398109436 +karman_re100,ppo,135,54.0,velocity,lower_ux,0.877094566822052 +karman_re100,ppo,135,54.0,velocity,lower_uy,-0.3179537057876587 +karman_re100,ppo,136,54.4,velocity,upper_ux,1.264681339263916 +karman_re100,ppo,136,54.4,velocity,upper_uy,-0.2964414358139038 +karman_re100,ppo,136,54.4,velocity,center_ux,0.9853134155273438 +karman_re100,ppo,136,54.4,velocity,center_uy,-0.45484817028045654 +karman_re100,ppo,136,54.4,velocity,lower_ux,0.8187336921691895 +karman_re100,ppo,136,54.4,velocity,lower_uy,-0.22570841014385223 +karman_re100,ppo,137,54.8,velocity,upper_ux,1.3058710098266602 +karman_re100,ppo,137,54.8,velocity,upper_uy,-0.15815265476703644 +karman_re100,ppo,137,54.8,velocity,center_ux,0.9572854042053223 +karman_re100,ppo,137,54.8,velocity,center_uy,-0.23663990199565887 +karman_re100,ppo,137,54.8,velocity,lower_ux,0.7849564552307129 +karman_re100,ppo,137,54.8,velocity,lower_uy,-0.09334032982587814 +karman_re100,ppo,138,55.2,velocity,upper_ux,1.3030439615249634 +karman_re100,ppo,138,55.2,velocity,upper_uy,0.020567767322063446 +karman_re100,ppo,138,55.2,velocity,center_ux,0.9542598724365234 +karman_re100,ppo,138,55.2,velocity,center_uy,0.12157490104436874 +karman_re100,ppo,138,55.2,velocity,lower_ux,0.7896926403045654 +karman_re100,ppo,138,55.2,velocity,lower_uy,0.05156795680522919 +karman_re100,ppo,139,55.6,velocity,upper_ux,1.2593066692352295 +karman_re100,ppo,139,55.6,velocity,upper_uy,0.171810582280159 +karman_re100,ppo,139,55.6,velocity,center_ux,0.9761461019515991 +karman_re100,ppo,139,55.6,velocity,center_uy,0.38123756647109985 +karman_re100,ppo,139,55.6,velocity,lower_ux,0.8354581594467163 +karman_re100,ppo,139,55.6,velocity,lower_uy,0.17074809968471527 +karman_re100,ppo,140,56.0,velocity,upper_ux,1.194100022315979 +karman_re100,ppo,140,56.0,velocity,upper_uy,0.2791524827480316 +karman_re100,ppo,140,56.0,velocity,center_ux,0.997897744178772 +karman_re100,ppo,140,56.0,velocity,center_uy,0.47733578085899353 +karman_re100,ppo,140,56.0,velocity,lower_ux,0.8990453481674194 +karman_re100,ppo,140,56.0,velocity,lower_uy,0.26333168148994446 +karman_re100,ppo,141,56.4,velocity,upper_ux,1.1231598854064941 +karman_re100,ppo,141,56.4,velocity,upper_uy,0.3447704315185547 +karman_re100,ppo,141,56.4,velocity,center_ux,1.0133041143417358 +karman_re100,ppo,141,56.4,velocity,center_uy,0.515097439289093 +karman_re100,ppo,141,56.4,velocity,lower_ux,0.9685282111167908 +karman_re100,ppo,141,56.4,velocity,lower_uy,0.3234875798225403 +karman_re100,ppo,142,56.8,velocity,upper_ux,1.0531998872756958 +karman_re100,ppo,142,56.8,velocity,upper_uy,0.37288668751716614 +karman_re100,ppo,142,56.8,velocity,center_ux,1.0250041484832764 +karman_re100,ppo,142,56.8,velocity,center_uy,0.5366876125335693 +karman_re100,ppo,142,56.8,velocity,lower_ux,1.039965033531189 +karman_re100,ppo,142,56.8,velocity,lower_uy,0.36184948682785034 +karman_re100,ppo,143,57.2,velocity,upper_ux,0.9834437370300293 +karman_re100,ppo,143,57.2,velocity,upper_uy,0.3661291003227234 +karman_re100,ppo,143,57.2,velocity,center_ux,1.0321708917617798 +karman_re100,ppo,143,57.2,velocity,center_uy,0.5387969017028809 +karman_re100,ppo,143,57.2,velocity,lower_ux,1.1093859672546387 +karman_re100,ppo,143,57.2,velocity,lower_uy,0.3790118098258972 +karman_re100,ppo,144,57.6,velocity,upper_ux,0.9165995121002197 +karman_re100,ppo,144,57.6,velocity,upper_uy,0.3166499435901642 +karman_re100,ppo,144,57.6,velocity,center_ux,1.0318377017974854 +karman_re100,ppo,144,57.6,velocity,center_uy,0.5051540732383728 +karman_re100,ppo,144,57.6,velocity,lower_ux,1.174294114112854 +karman_re100,ppo,144,57.6,velocity,lower_uy,0.35792282223701477 +karman_re100,ppo,145,58.0,velocity,upper_ux,0.8608185052871704 +karman_re100,ppo,145,58.0,velocity,upper_uy,0.21997526288032532 +karman_re100,ppo,145,58.0,velocity,center_ux,1.0195250511169434 +karman_re100,ppo,145,58.0,velocity,center_uy,0.4207141101360321 +karman_re100,ppo,145,58.0,velocity,lower_ux,1.238218069076538 +karman_re100,ppo,145,58.0,velocity,lower_uy,0.3034074306488037 +karman_re100,ppo,146,58.4,velocity,upper_ux,0.8218787908554077 +karman_re100,ppo,146,58.4,velocity,upper_uy,0.0810646116733551 +karman_re100,ppo,146,58.4,velocity,center_ux,0.9889886379241943 +karman_re100,ppo,146,58.4,velocity,center_uy,0.23165953159332275 +karman_re100,ppo,146,58.4,velocity,lower_ux,1.2805670499801636 +karman_re100,ppo,146,58.4,velocity,lower_uy,0.19355735182762146 +karman_re100,ppo,147,58.8,velocity,upper_ux,0.8198620676994324 +karman_re100,ppo,147,58.8,velocity,upper_uy,-0.0677681416273117 +karman_re100,ppo,147,58.8,velocity,center_ux,0.9682167172431946 +karman_re100,ppo,147,58.8,velocity,center_uy,-0.07441206276416779 +karman_re100,ppo,147,58.8,velocity,lower_ux,1.2878798246383667 +karman_re100,ppo,147,58.8,velocity,lower_uy,0.030552465468645096 +karman_re100,ppo,148,59.2,velocity,upper_ux,0.8562006950378418 +karman_re100,ppo,148,59.2,velocity,upper_uy,-0.19130371510982513 +karman_re100,ppo,148,59.2,velocity,center_ux,0.9716033935546875 +karman_re100,ppo,148,59.2,velocity,center_uy,-0.32574036717414856 +karman_re100,ppo,148,59.2,velocity,lower_ux,1.2503825426101685 +karman_re100,ppo,148,59.2,velocity,lower_uy,-0.1343165636062622 +karman_re100,ppo,149,59.6,velocity,upper_ux,0.9127950072288513 +karman_re100,ppo,149,59.6,velocity,upper_uy,-0.2834673225879669 +karman_re100,ppo,149,59.6,velocity,center_ux,0.9823622703552246 +karman_re100,ppo,149,59.6,velocity,center_uy,-0.4519355893135071 +karman_re100,ppo,149,59.6,velocity,lower_ux,1.178695797920227 +karman_re100,ppo,149,59.6,velocity,lower_uy,-0.26124459505081177 +karman_re100,ppo,150,60.0,velocity,upper_ux,0.9808821082115173 +karman_re100,ppo,150,60.0,velocity,upper_uy,-0.33909010887145996 +karman_re100,ppo,150,60.0,velocity,center_ux,0.9937408566474915 +karman_re100,ppo,150,60.0,velocity,center_uy,-0.5127145648002625 +karman_re100,ppo,150,60.0,velocity,lower_ux,1.101227879524231 +karman_re100,ppo,150,60.0,velocity,lower_uy,-0.336576908826828 +karman_re100,ppo,151,60.4,velocity,upper_ux,1.0526996850967407 +karman_re100,ppo,151,60.4,velocity,upper_uy,-0.3770592510700226 +karman_re100,ppo,151,60.4,velocity,center_ux,1.0036417245864868 +karman_re100,ppo,151,60.4,velocity,center_uy,-0.5456646680831909 +karman_re100,ppo,151,60.4,velocity,lower_ux,1.026344656944275 +karman_re100,ppo,151,60.4,velocity,lower_uy,-0.36835503578186035 +karman_re100,ppo,152,60.8,velocity,upper_ux,1.1233429908752441 +karman_re100,ppo,152,60.8,velocity,upper_uy,-0.39252766966819763 +karman_re100,ppo,152,60.8,velocity,center_ux,1.0080646276474 +karman_re100,ppo,152,60.8,velocity,center_uy,-0.5583334565162659 +karman_re100,ppo,152,60.8,velocity,lower_ux,0.9521684050559998 +karman_re100,ppo,152,60.8,velocity,lower_uy,-0.3652305603027344 +karman_re100,ppo,153,61.2,velocity,upper_ux,1.1931570768356323 +karman_re100,ppo,153,61.2,velocity,upper_uy,-0.3684309720993042 +karman_re100,ppo,153,61.2,velocity,center_ux,1.0050870180130005 +karman_re100,ppo,153,61.2,velocity,center_uy,-0.5379582047462463 +karman_re100,ppo,153,61.2,velocity,lower_ux,0.8814951181411743 +karman_re100,ppo,153,61.2,velocity,lower_uy,-0.3225466012954712 +karman_re100,ppo,154,61.6,velocity,upper_ux,1.26128089427948 +karman_re100,ppo,154,61.6,velocity,upper_uy,-0.30360257625579834 +karman_re100,ppo,154,61.6,velocity,center_ux,0.9873234629631042 +karman_re100,ppo,154,61.6,velocity,center_uy,-0.46492230892181396 +karman_re100,ppo,154,61.6,velocity,lower_ux,0.821804940700531 +karman_re100,ppo,154,61.6,velocity,lower_uy,-0.23357364535331726 +karman_re100,ppo,155,62.0,velocity,upper_ux,1.3044923543930054 +karman_re100,ppo,155,62.0,velocity,upper_uy,-0.16938237845897675 +karman_re100,ppo,155,62.0,velocity,center_ux,0.9580206274986267 +karman_re100,ppo,155,62.0,velocity,center_uy,-0.2580221891403198 +karman_re100,ppo,155,62.0,velocity,lower_ux,0.7848567366600037 +karman_re100,ppo,155,62.0,velocity,lower_uy,-0.10295853763818741 +karman_re100,ppo,156,62.4,velocity,upper_ux,1.3052780628204346 +karman_re100,ppo,156,62.4,velocity,upper_uy,0.009160725399851799 +karman_re100,ppo,156,62.4,velocity,center_ux,0.9536634087562561 +karman_re100,ppo,156,62.4,velocity,center_uy,0.0985274538397789 +karman_re100,ppo,156,62.4,velocity,lower_ux,0.7874071598052979 +karman_re100,ppo,156,62.4,velocity,lower_uy,0.042272742837667465 +karman_re100,ppo,157,62.8,velocity,upper_ux,1.2652709484100342 +karman_re100,ppo,157,62.8,velocity,upper_uy,0.1634693145751953 +karman_re100,ppo,157,62.8,velocity,center_ux,0.9763031601905823 +karman_re100,ppo,157,62.8,velocity,center_uy,0.37130728363990784 +karman_re100,ppo,157,62.8,velocity,lower_ux,0.832288920879364 +karman_re100,ppo,157,62.8,velocity,lower_uy,0.16371923685073853 +karman_re100,ppo,158,63.2,velocity,upper_ux,1.1990817785263062 +karman_re100,ppo,158,63.2,velocity,upper_uy,0.273184597492218 +karman_re100,ppo,158,63.2,velocity,center_ux,0.996956467628479 +karman_re100,ppo,158,63.2,velocity,center_uy,0.4743043780326843 +karman_re100,ppo,158,63.2,velocity,lower_ux,0.8940486311912537 +karman_re100,ppo,158,63.2,velocity,lower_uy,0.257697731256485 +karman_re100,ppo,159,63.6,velocity,upper_ux,1.1288788318634033 +karman_re100,ppo,159,63.6,velocity,upper_uy,0.3415636122226715 +karman_re100,ppo,159,63.6,velocity,center_ux,1.0134395360946655 +karman_re100,ppo,159,63.6,velocity,center_uy,0.5132949352264404 +karman_re100,ppo,159,63.6,velocity,lower_ux,0.9640399813652039 +karman_re100,ppo,159,63.6,velocity,lower_uy,0.32012149691581726 +karman_re100,ppo,160,64.0,velocity,upper_ux,1.0581146478652954 +karman_re100,ppo,160,64.0,velocity,upper_uy,0.3720766305923462 +karman_re100,ppo,160,64.0,velocity,center_ux,1.024659514427185 +karman_re100,ppo,160,64.0,velocity,center_uy,0.5355708599090576 +karman_re100,ppo,160,64.0,velocity,lower_ux,1.0348073244094849 +karman_re100,ppo,160,64.0,velocity,lower_uy,0.35944774746894836 +karman_re100,ppo,161,64.4,velocity,upper_ux,0.9883300065994263 +karman_re100,ppo,161,64.4,velocity,upper_uy,0.36787787079811096 +karman_re100,ppo,161,64.4,velocity,center_ux,1.0321916341781616 +karman_re100,ppo,161,64.4,velocity,center_uy,0.5395148992538452 +karman_re100,ppo,161,64.4,velocity,lower_ux,1.1043720245361328 +karman_re100,ppo,161,64.4,velocity,lower_uy,0.3786889314651489 +karman_re100,ppo,162,64.8,velocity,upper_ux,0.9218659400939941 +karman_re100,ppo,162,64.8,velocity,upper_uy,0.3215796649456024 +karman_re100,ppo,162,64.8,velocity,center_ux,1.0333877801895142 +karman_re100,ppo,162,64.8,velocity,center_uy,0.5084418058395386 +karman_re100,ppo,162,64.8,velocity,lower_ux,1.1702114343643188 +karman_re100,ppo,162,64.8,velocity,lower_uy,0.3601815104484558 +karman_re100,ppo,163,65.2,velocity,upper_ux,0.8633564114570618 +karman_re100,ppo,163,65.2,velocity,upper_uy,0.22750814259052277 +karman_re100,ppo,163,65.2,velocity,center_ux,1.020418405532837 +karman_re100,ppo,163,65.2,velocity,center_uy,0.42780911922454834 +karman_re100,ppo,163,65.2,velocity,lower_ux,1.2324050664901733 +karman_re100,ppo,163,65.2,velocity,lower_uy,0.3075985014438629 +karman_re100,ppo,164,65.6,velocity,upper_ux,0.8241186738014221 +karman_re100,ppo,164,65.6,velocity,upper_uy,0.09116244316101074 +karman_re100,ppo,164,65.6,velocity,center_ux,0.9923964738845825 +karman_re100,ppo,164,65.6,velocity,center_uy,0.2487173229455948 +karman_re100,ppo,164,65.6,velocity,lower_ux,1.278552532196045 +karman_re100,ppo,164,65.6,velocity,lower_uy,0.20309235155582428 +karman_re100,ppo,165,66.0,velocity,upper_ux,0.81943678855896 +karman_re100,ppo,165,66.0,velocity,upper_uy,-0.05845986306667328 +karman_re100,ppo,165,66.0,velocity,center_ux,0.9702581167221069 +karman_re100,ppo,165,66.0,velocity,center_uy,-0.05320418253540993 +karman_re100,ppo,165,66.0,velocity,lower_ux,1.288664698600769 +karman_re100,ppo,165,66.0,velocity,lower_uy,0.04241529852151871 +karman_re100,ppo,166,66.4,velocity,upper_ux,0.8528984785079956 +karman_re100,ppo,166,66.4,velocity,upper_uy,-0.18402749300003052 +karman_re100,ppo,166,66.4,velocity,center_ux,0.971465528011322 +karman_re100,ppo,166,66.4,velocity,center_uy,-0.3126971125602722 +karman_re100,ppo,166,66.4,velocity,lower_ux,1.2535665035247803 +karman_re100,ppo,166,66.4,velocity,lower_uy,-0.12366468459367752 +karman_re100,ppo,167,66.8,velocity,upper_ux,0.9088943600654602 +karman_re100,ppo,167,66.8,velocity,upper_uy,-0.27850258350372314 +karman_re100,ppo,167,66.8,velocity,center_ux,0.9824565649032593 +karman_re100,ppo,167,66.8,velocity,center_uy,-0.44514331221580505 +karman_re100,ppo,167,66.8,velocity,lower_ux,1.1840749979019165 +karman_re100,ppo,167,66.8,velocity,lower_uy,-0.25360772013664246 +karman_re100,ppo,168,67.2,velocity,upper_ux,0.9777670502662659 +karman_re100,ppo,168,67.2,velocity,upper_uy,-0.33646076917648315 +karman_re100,ppo,168,67.2,velocity,center_ux,0.9950277805328369 +karman_re100,ppo,168,67.2,velocity,center_uy,-0.5096042156219482 +karman_re100,ppo,168,67.2,velocity,lower_ux,1.1081620454788208 +karman_re100,ppo,168,67.2,velocity,lower_uy,-0.33273330330848694 +karman_re100,ppo,169,67.6,velocity,upper_ux,1.047703742980957 +karman_re100,ppo,169,67.6,velocity,upper_uy,-0.3747645914554596 +karman_re100,ppo,169,67.6,velocity,center_ux,1.0033373832702637 +karman_re100,ppo,169,67.6,velocity,center_uy,-0.54302579164505 +karman_re100,ppo,169,67.6,velocity,lower_ux,1.031514048576355 +karman_re100,ppo,169,67.6,velocity,lower_uy,-0.366637259721756 +karman_re100,ppo,170,68.0,velocity,upper_ux,1.1190060377120972 +karman_re100,ppo,170,68.0,velocity,upper_uy,-0.3925299346446991 +karman_re100,ppo,170,68.0,velocity,center_ux,1.008667230606079 +karman_re100,ppo,170,68.0,velocity,center_uy,-0.557513952255249 +karman_re100,ppo,170,68.0,velocity,lower_ux,0.9580159783363342 +karman_re100,ppo,170,68.0,velocity,lower_uy,-0.36589592695236206 +karman_re100,ppo,171,68.4,velocity,upper_ux,1.189626932144165 +karman_re100,ppo,171,68.4,velocity,upper_uy,-0.37159591913223267 +karman_re100,ppo,171,68.4,velocity,center_ux,1.0069615840911865 +karman_re100,ppo,171,68.4,velocity,center_uy,-0.5401201248168945 +karman_re100,ppo,171,68.4,velocity,lower_ux,0.8875031471252441 +karman_re100,ppo,171,68.4,velocity,lower_uy,-0.3265635669231415 +karman_re100,ppo,172,68.8,velocity,upper_ux,1.2564420700073242 +karman_re100,ppo,172,68.8,velocity,upper_uy,-0.30998483300209045 +karman_re100,ppo,172,68.8,velocity,center_ux,0.988740861415863 +karman_re100,ppo,172,68.8,velocity,center_uy,-0.47151488065719604 +karman_re100,ppo,172,68.8,velocity,lower_ux,0.8255481719970703 +karman_re100,ppo,172,68.8,velocity,lower_uy,-0.24048015475273132 +karman_re100,ppo,173,69.2,velocity,upper_ux,1.3030874729156494 +karman_re100,ppo,173,69.2,velocity,upper_uy,-0.18141046166419983 +karman_re100,ppo,173,69.2,velocity,center_ux,0.959769606590271 +karman_re100,ppo,173,69.2,velocity,center_uy,-0.2783801257610321 +karman_re100,ppo,173,69.2,velocity,lower_ux,0.7873908877372742 +karman_re100,ppo,173,69.2,velocity,lower_uy,-0.11248129606246948 +karman_re100,ppo,174,69.6,velocity,upper_ux,1.3066879510879517 +karman_re100,ppo,174,69.6,velocity,upper_uy,-0.0034997197799384594 +karman_re100,ppo,174,69.6,velocity,center_ux,0.9519141316413879 +karman_re100,ppo,174,69.6,velocity,center_uy,0.07294957339763641 +karman_re100,ppo,174,69.6,velocity,lower_ux,0.7863296270370483 +karman_re100,ppo,174,69.6,velocity,lower_uy,0.03276067599654198 +karman_re100,ppo,175,70.0,velocity,upper_ux,1.267768144607544 +karman_re100,ppo,175,70.0,velocity,upper_uy,0.1540571004152298 +karman_re100,ppo,175,70.0,velocity,center_ux,0.9726566076278687 +karman_re100,ppo,175,70.0,velocity,center_uy,0.3572394549846649 +karman_re100,ppo,175,70.0,velocity,lower_ux,0.8279411196708679 +karman_re100,ppo,175,70.0,velocity,lower_uy,0.1560395210981369 +karman_re100,ppo,176,70.4,velocity,upper_ux,1.2043095827102661 +karman_re100,ppo,176,70.4,velocity,upper_uy,0.2669457197189331 +karman_re100,ppo,176,70.4,velocity,center_ux,0.9953915476799011 +karman_re100,ppo,176,70.4,velocity,center_uy,0.46964484453201294 +karman_re100,ppo,176,70.4,velocity,lower_ux,0.890097975730896 +karman_re100,ppo,176,70.4,velocity,lower_uy,0.251809686422348 +karman_re100,ppo,177,70.8,velocity,upper_ux,1.1332911252975464 +karman_re100,ppo,177,70.8,velocity,upper_uy,0.3382377326488495 +karman_re100,ppo,177,70.8,velocity,center_ux,1.0116026401519775 +karman_re100,ppo,177,70.8,velocity,center_uy,0.5108631253242493 +karman_re100,ppo,177,70.8,velocity,lower_ux,0.9588124752044678 +karman_re100,ppo,177,70.8,velocity,lower_uy,0.3165775537490845 +karman_re100,ppo,178,71.2,velocity,upper_ux,1.0630227327346802 +karman_re100,ppo,178,71.2,velocity,upper_uy,0.3710685670375824 +karman_re100,ppo,178,71.2,velocity,center_ux,1.0236923694610596 +karman_re100,ppo,178,71.2,velocity,center_uy,0.5340853333473206 +karman_re100,ppo,178,71.2,velocity,lower_ux,1.029982566833496 +karman_re100,ppo,178,71.2,velocity,lower_uy,0.3568979501724243 +karman_re100,ppo,179,71.6,velocity,upper_ux,0.993365466594696 +karman_re100,ppo,179,71.6,velocity,upper_uy,0.3693883419036865 +karman_re100,ppo,179,71.6,velocity,center_ux,1.0318440198898315 +karman_re100,ppo,179,71.6,velocity,center_uy,0.5400228500366211 +karman_re100,ppo,179,71.6,velocity,lower_ux,1.099993109703064 +karman_re100,ppo,179,71.6,velocity,lower_uy,0.37824782729148865 +karman_re100,ppo,180,72.0,velocity,upper_ux,0.9260976910591125 +karman_re100,ppo,180,72.0,velocity,upper_uy,0.32627272605895996 +karman_re100,ppo,180,72.0,velocity,center_ux,1.033264398574829 +karman_re100,ppo,180,72.0,velocity,center_uy,0.5116809606552124 +karman_re100,ppo,180,72.0,velocity,lower_ux,1.1656185388565063 +karman_re100,ppo,180,72.0,velocity,lower_uy,0.36241093277931213 +karman_re100,ppo,181,72.4,velocity,upper_ux,0.8674120306968689 +karman_re100,ppo,181,72.4,velocity,upper_uy,0.23553863167762756 +karman_re100,ppo,181,72.4,velocity,center_ux,1.0220236778259277 +karman_re100,ppo,181,72.4,velocity,center_uy,0.43564414978027344 +karman_re100,ppo,181,72.4,velocity,lower_ux,1.2286467552185059 +karman_re100,ppo,181,72.4,velocity,lower_uy,0.3123072683811188 +karman_re100,ppo,182,72.8,velocity,upper_ux,0.8259789943695068 +karman_re100,ppo,182,72.8,velocity,upper_uy,0.10158412903547287 +karman_re100,ppo,182,72.8,velocity,center_ux,0.9943382740020752 +karman_re100,ppo,182,72.8,velocity,center_uy,0.26562759280204773 +karman_re100,ppo,182,72.8,velocity,lower_ux,1.2763477563858032 +karman_re100,ppo,182,72.8,velocity,lower_uy,0.2123742550611496 +karman_re100,ppo,183,73.2,velocity,upper_ux,0.8181280493736267 +karman_re100,ppo,183,73.2,velocity,upper_uy,-0.04881136864423752 +karman_re100,ppo,183,73.2,velocity,center_ux,0.9703513383865356 +karman_re100,ppo,183,73.2,velocity,center_uy,-0.03192441910505295 +karman_re100,ppo,183,73.2,velocity,lower_ux,1.2887927293777466 +karman_re100,ppo,183,73.2,velocity,lower_uy,0.053917378187179565 +karman_re100,ppo,184,73.6,velocity,upper_ux,0.8501408100128174 +karman_re100,ppo,184,73.6,velocity,upper_uy,-0.17637233436107635 +karman_re100,ppo,184,73.6,velocity,center_ux,0.971052885055542 +karman_re100,ppo,184,73.6,velocity,center_uy,-0.29951828718185425 +karman_re100,ppo,184,73.6,velocity,lower_ux,1.2575913667678833 +karman_re100,ppo,184,73.6,velocity,lower_uy,-0.11320328712463379 +karman_re100,ppo,185,74.0,velocity,upper_ux,0.9046728014945984 +karman_re100,ppo,185,74.0,velocity,upper_uy,-0.27346858382225037 +karman_re100,ppo,185,74.0,velocity,center_ux,0.9814878106117249 +karman_re100,ppo,185,74.0,velocity,center_uy,-0.43913447856903076 +karman_re100,ppo,185,74.0,velocity,lower_ux,1.189043402671814 +karman_re100,ppo,185,74.0,velocity,lower_uy,-0.2465214729309082 +karman_re100,ppo,186,74.4,velocity,upper_ux,0.9718012809753418 +karman_re100,ppo,186,74.4,velocity,upper_uy,-0.3330352306365967 +karman_re100,ppo,186,74.4,velocity,center_ux,0.9929351210594177 +karman_re100,ppo,186,74.4,velocity,center_uy,-0.5060150027275085 +karman_re100,ppo,186,74.4,velocity,lower_ux,1.1118707656860352 +karman_re100,ppo,186,74.4,velocity,lower_uy,-0.32850828766822815 +karman_re100,ppo,187,74.8,velocity,upper_ux,1.0432759523391724 +karman_re100,ppo,187,74.8,velocity,upper_uy,-0.37265545129776 +karman_re100,ppo,187,74.8,velocity,center_ux,1.0030955076217651 +karman_re100,ppo,187,74.8,velocity,center_uy,-0.5412939786911011 +karman_re100,ppo,187,74.8,velocity,lower_ux,1.0367907285690308 +karman_re100,ppo,187,74.8,velocity,lower_uy,-0.36545413732528687 +karman_re100,ppo,188,75.2,velocity,upper_ux,1.113903522491455 +karman_re100,ppo,188,75.2,velocity,upper_uy,-0.392637699842453 +karman_re100,ppo,188,75.2,velocity,center_ux,1.007982611656189 +karman_re100,ppo,188,75.2,velocity,center_uy,-0.5575984120368958 +karman_re100,ppo,188,75.2,velocity,lower_ux,0.9623338580131531 +karman_re100,ppo,188,75.2,velocity,lower_uy,-0.36707696318626404 +karman_re100,ppo,189,75.6,velocity,upper_ux,1.1833058595657349 +karman_re100,ppo,189,75.6,velocity,upper_uy,-0.3738740086555481 +karman_re100,ppo,189,75.6,velocity,center_ux,1.0060527324676514 +karman_re100,ppo,189,75.6,velocity,center_uy,-0.5419194102287292 +karman_re100,ppo,189,75.6,velocity,lower_ux,0.8907523155212402 +karman_re100,ppo,189,75.6,velocity,lower_uy,-0.3302808403968811 +karman_re100,ppo,190,76.0,velocity,upper_ux,1.252792239189148 +karman_re100,ppo,190,76.0,velocity,upper_uy,-0.3155704140663147 +karman_re100,ppo,190,76.0,velocity,center_ux,0.9903550148010254 +karman_re100,ppo,190,76.0,velocity,center_uy,-0.47809040546417236 +karman_re100,ppo,190,76.0,velocity,lower_ux,0.8288208246231079 +karman_re100,ppo,190,76.0,velocity,lower_uy,-0.24712732434272766 +karman_re100,ppo,191,76.4,velocity,upper_ux,1.3009775876998901 +karman_re100,ppo,191,76.4,velocity,upper_uy,-0.1924344301223755 +karman_re100,ppo,191,76.4,velocity,center_ux,0.961193859577179 +karman_re100,ppo,191,76.4,velocity,center_uy,-0.2976299226284027 +karman_re100,ppo,191,76.4,velocity,lower_ux,0.7885117530822754 +karman_re100,ppo,191,76.4,velocity,lower_uy,-0.12204445153474808 +karman_re100,ppo,192,76.8,velocity,upper_ux,1.3080551624298096 +karman_re100,ppo,192,76.8,velocity,upper_uy,-0.015483853407204151 +karman_re100,ppo,192,76.8,velocity,center_ux,0.9514321684837341 +karman_re100,ppo,192,76.8,velocity,center_uy,0.04832475259900093 +karman_re100,ppo,192,76.8,velocity,lower_ux,0.7849985361099243 +karman_re100,ppo,192,76.8,velocity,lower_uy,0.023302000015974045 +karman_re100,ppo,193,77.2,velocity,upper_ux,1.2712929248809814 +karman_re100,ppo,193,77.2,velocity,upper_uy,0.14511917531490326 +karman_re100,ppo,193,77.2,velocity,center_ux,0.9709020853042603 +karman_re100,ppo,193,77.2,velocity,center_uy,0.3442753553390503 +karman_re100,ppo,193,77.2,velocity,lower_ux,0.8240649700164795 +karman_re100,ppo,193,77.2,velocity,lower_uy,0.14889544248580933 +karman_re100,ppo,194,77.6,velocity,upper_ux,1.208329200744629 +karman_re100,ppo,194,77.6,velocity,upper_uy,0.26084744930267334 +karman_re100,ppo,194,77.6,velocity,center_ux,0.9934613704681396 +karman_re100,ppo,194,77.6,velocity,center_uy,0.465834379196167 +karman_re100,ppo,194,77.6,velocity,lower_ux,0.8850870728492737 +karman_re100,ppo,194,77.6,velocity,lower_uy,0.24621078372001648 +karman_re100,ppo,195,78.0,velocity,upper_ux,1.1382139921188354 +karman_re100,ppo,195,78.0,velocity,upper_uy,0.33491286635398865 +karman_re100,ppo,195,78.0,velocity,center_ux,1.0107377767562866 +karman_re100,ppo,195,78.0,velocity,center_uy,0.5090354084968567 +karman_re100,ppo,195,78.0,velocity,lower_ux,0.9540982246398926 +karman_re100,ppo,195,78.0,velocity,lower_uy,0.3131974935531616 +karman_re100,ppo,196,78.4,velocity,upper_ux,1.0675604343414307 +karman_re100,ppo,196,78.4,velocity,upper_uy,0.3702246844768524 +karman_re100,ppo,196,78.4,velocity,center_ux,1.0228623151779175 +karman_re100,ppo,196,78.4,velocity,center_uy,0.5331659317016602 +karman_re100,ppo,196,78.4,velocity,lower_ux,1.0251328945159912 +karman_re100,ppo,196,78.4,velocity,lower_uy,0.35466575622558594 +karman_re100,ppo,197,78.8,velocity,upper_ux,0.9978251457214355 +karman_re100,ppo,197,78.8,velocity,upper_uy,0.37104254961013794 +karman_re100,ppo,197,78.8,velocity,center_ux,1.0313079357147217 +karman_re100,ppo,197,78.8,velocity,center_uy,0.5409257411956787 +karman_re100,ppo,197,78.8,velocity,lower_ux,1.0953150987625122 +karman_re100,ppo,197,78.8,velocity,lower_uy,0.3779304623603821 +karman_re100,ppo,198,79.2,velocity,upper_ux,0.9301435351371765 +karman_re100,ppo,198,79.2,velocity,upper_uy,0.3305616080760956 +karman_re100,ppo,198,79.2,velocity,center_ux,1.033798098564148 +karman_re100,ppo,198,79.2,velocity,center_uy,0.5149264335632324 +karman_re100,ppo,198,79.2,velocity,lower_ux,1.162318229675293 +karman_re100,ppo,198,79.2,velocity,lower_uy,0.3646053969860077 +karman_re100,ppo,199,79.6,velocity,upper_ux,0.8704570531845093 +karman_re100,ppo,199,79.6,velocity,upper_uy,0.24358245730400085 +karman_re100,ppo,199,79.6,velocity,center_ux,1.0229828357696533 +karman_re100,ppo,199,79.6,velocity,center_uy,0.44358208775520325 +karman_re100,ppo,199,79.6,velocity,lower_ux,1.2243928909301758 +karman_re100,ppo,199,79.6,velocity,lower_uy,0.31690531969070435 +karman_re100,ppo,0,0.0,force,front_fx,0.00029048335272818804 +karman_re100,ppo,0,0.0,force,front_fy,0.003256825730204582 +karman_re100,ppo,0,0.0,force,upper_fx,-0.006489500403404236 +karman_re100,ppo,0,0.0,force,upper_fy,0.0021631838753819466 +karman_re100,ppo,0,0.0,force,lower_fx,0.005222808104008436 +karman_re100,ppo,0,0.0,force,lower_fy,-0.0040438733994960785 +karman_re100,ppo,1,0.4,force,front_fx,0.0018532680114731193 +karman_re100,ppo,1,0.4,force,front_fy,0.0016717618564143777 +karman_re100,ppo,1,0.4,force,upper_fx,-0.0062775821425020695 +karman_re100,ppo,1,0.4,force,upper_fy,0.0022632572799921036 +karman_re100,ppo,1,0.4,force,lower_fx,0.003917732276022434 +karman_re100,ppo,1,0.4,force,lower_fy,-0.003955738618969917 +karman_re100,ppo,2,0.8,force,front_fx,0.0025434098206460476 +karman_re100,ppo,2,0.8,force,front_fy,0.0003902101016137749 +karman_re100,ppo,2,0.8,force,upper_fx,-0.006339931860566139 +karman_re100,ppo,2,0.8,force,upper_fy,0.0017894069897010922 +karman_re100,ppo,2,0.8,force,lower_fx,0.002846615621820092 +karman_re100,ppo,2,0.8,force,lower_fy,-0.004206875339150429 +karman_re100,ppo,3,1.2,force,front_fx,0.0017849826253950596 +karman_re100,ppo,3,1.2,force,front_fy,-0.0010302071459591389 +karman_re100,ppo,3,1.2,force,upper_fx,-0.005798878148198128 +karman_re100,ppo,3,1.2,force,upper_fy,0.003242708509787917 +karman_re100,ppo,3,1.2,force,lower_fx,0.0018117268336936831 +karman_re100,ppo,3,1.2,force,lower_fy,-0.0042830053716897964 +karman_re100,ppo,4,1.6,force,front_fx,0.0006374265067279339 +karman_re100,ppo,4,1.6,force,front_fy,-0.002281723078340292 +karman_re100,ppo,4,1.6,force,upper_fx,-0.0033873068168759346 +karman_re100,ppo,4,1.6,force,upper_fy,0.0053958832286298275 +karman_re100,ppo,4,1.6,force,lower_fx,0.0006860963185317814 +karman_re100,ppo,4,1.6,force,lower_fy,-0.00431571202352643 +karman_re100,ppo,5,2.0,force,front_fx,-0.000429347186582163 +karman_re100,ppo,5,2.0,force,front_fy,-0.0026480110827833414 +karman_re100,ppo,5,2.0,force,upper_fx,-0.0002986715408042073 +karman_re100,ppo,5,2.0,force,upper_fy,0.006091086193919182 +karman_re100,ppo,5,2.0,force,lower_fx,-0.00045585804036818445 +karman_re100,ppo,5,2.0,force,lower_fy,-0.004360404796898365 +karman_re100,ppo,6,2.4,force,front_fx,-0.00090946996351704 +karman_re100,ppo,6,2.4,force,front_fy,-0.0029564336873590946 +karman_re100,ppo,6,2.4,force,upper_fx,0.001951042446307838 +karman_re100,ppo,6,2.4,force,upper_fy,0.005769950803369284 +karman_re100,ppo,6,2.4,force,lower_fx,-0.0017739370232447982 +karman_re100,ppo,6,2.4,force,lower_fy,-0.004365337081253529 +karman_re100,ppo,7,2.8,force,front_fx,-0.0005774656892754138 +karman_re100,ppo,7,2.8,force,front_fy,-0.0035475511103868484 +karman_re100,ppo,7,2.8,force,upper_fx,0.003274191403761506 +karman_re100,ppo,7,2.8,force,upper_fy,0.005616077687591314 +karman_re100,ppo,7,2.8,force,lower_fx,-0.00322538148611784 +karman_re100,ppo,7,2.8,force,lower_fy,-0.0035937584470957518 +karman_re100,ppo,8,3.2,force,front_fx,0.0005562750739045441 +karman_re100,ppo,8,3.2,force,front_fy,-0.0038017453625798225 +karman_re100,ppo,8,3.2,force,upper_fx,0.003955121152102947 +karman_re100,ppo,8,3.2,force,upper_fy,0.005470018368214369 +karman_re100,ppo,8,3.2,force,lower_fx,-0.0050385682843625546 +karman_re100,ppo,8,3.2,force,lower_fy,-0.0025682535488158464 +karman_re100,ppo,9,3.6,force,front_fx,0.002057035453617573 +karman_re100,ppo,9,3.6,force,front_fy,-0.0033367255236953497 +karman_re100,ppo,9,3.6,force,upper_fx,0.0037861166056245565 +karman_re100,ppo,9,3.6,force,upper_fy,0.005135705694556236 +karman_re100,ppo,9,3.6,force,lower_fx,-0.006334025412797928 +karman_re100,ppo,9,3.6,force,lower_fy,-0.002297475701197982 +karman_re100,ppo,10,4.0,force,front_fx,0.0032733094412833452 +karman_re100,ppo,10,4.0,force,front_fy,-0.0021556688006967306 +karman_re100,ppo,10,4.0,force,upper_fx,0.0028997145127505064 +karman_re100,ppo,10,4.0,force,upper_fy,0.004782157018780708 +karman_re100,ppo,10,4.0,force,lower_fx,-0.006582585629075766 +karman_re100,ppo,10,4.0,force,lower_fy,-0.0026541135739535093 +karman_re100,ppo,11,4.4,force,front_fx,0.0031002992764115334 +karman_re100,ppo,11,4.4,force,front_fy,-0.0008191209053620696 +karman_re100,ppo,11,4.4,force,upper_fx,0.0019553164020180702 +karman_re100,ppo,11,4.4,force,upper_fy,0.004506054800003767 +karman_re100,ppo,11,4.4,force,lower_fx,-0.005484377034008503 +karman_re100,ppo,11,4.4,force,lower_fy,-0.0037719460669904947 +karman_re100,ppo,12,4.8,force,front_fx,0.001757805235683918 +karman_re100,ppo,12,4.8,force,front_fy,0.0005362111260183156 +karman_re100,ppo,12,4.8,force,upper_fx,0.0009747222065925598 +karman_re100,ppo,12,4.8,force,upper_fy,0.004434884060174227 +karman_re100,ppo,12,4.8,force,lower_fx,-0.0029553610365837812 +karman_re100,ppo,12,4.8,force,lower_fy,-0.005263268947601318 +karman_re100,ppo,13,5.2,force,front_fx,0.0002796921180561185 +karman_re100,ppo,13,5.2,force,front_fy,0.0015925182960927486 +karman_re100,ppo,13,5.2,force,upper_fx,-0.00022658983652945608 +karman_re100,ppo,13,5.2,force,upper_fy,0.004335278179496527 +karman_re100,ppo,13,5.2,force,lower_fx,0.00036055492819286883 +karman_re100,ppo,13,5.2,force,lower_fy,-0.00612831162288785 +karman_re100,ppo,14,5.6,force,front_fx,-0.000684386701323092 +karman_re100,ppo,14,5.6,force,front_fy,0.002365105552598834 +karman_re100,ppo,14,5.6,force,upper_fx,-0.0016962921945378184 +karman_re100,ppo,14,5.6,force,upper_fy,0.0039023812860250473 +karman_re100,ppo,14,5.6,force,lower_fx,0.0032099250238388777 +karman_re100,ppo,14,5.6,force,lower_fy,-0.005830448120832443 +karman_re100,ppo,15,6.0,force,front_fx,-0.0009911522502079606 +karman_re100,ppo,15,6.0,force,front_fy,0.0030203801579773426 +karman_re100,ppo,15,6.0,force,upper_fx,-0.003298407420516014 +karman_re100,ppo,15,6.0,force,upper_fy,0.0029880418442189693 +karman_re100,ppo,15,6.0,force,lower_fx,0.004836201202124357 +karman_re100,ppo,15,6.0,force,lower_fy,-0.005191364791244268 +karman_re100,ppo,16,6.4,force,front_fx,-0.0005341351497918367 +karman_re100,ppo,16,6.4,force,front_fy,0.0034687009174376726 +karman_re100,ppo,16,6.4,force,upper_fx,-0.005185240879654884 +karman_re100,ppo,16,6.4,force,upper_fy,0.001850006403401494 +karman_re100,ppo,16,6.4,force,lower_fx,0.005472629796713591 +karman_re100,ppo,16,6.4,force,lower_fy,-0.00503110745921731 +karman_re100,ppo,17,6.8,force,front_fx,0.0008421501261182129 +karman_re100,ppo,17,6.8,force,front_fy,0.003652470652014017 +karman_re100,ppo,17,6.8,force,upper_fx,-0.007269468158483505 +karman_re100,ppo,17,6.8,force,upper_fy,0.0013504140079021454 +karman_re100,ppo,17,6.8,force,lower_fx,0.005437682382762432 +karman_re100,ppo,17,6.8,force,lower_fy,-0.0052223242819309235 +karman_re100,ppo,18,7.2,force,front_fx,0.0027733915485441685 +karman_re100,ppo,18,7.2,force,front_fy,0.0033721309155225754 +karman_re100,ppo,18,7.2,force,upper_fx,-0.008625403977930546 +karman_re100,ppo,18,7.2,force,upper_fy,0.0017755606677383184 +karman_re100,ppo,18,7.2,force,lower_fx,0.004748739767819643 +karman_re100,ppo,18,7.2,force,lower_fy,-0.005322207231074572 +karman_re100,ppo,19,7.6,force,front_fx,0.004095541313290596 +karman_re100,ppo,19,7.6,force,front_fy,0.0025355208199471235 +karman_re100,ppo,19,7.6,force,upper_fx,-0.008358502760529518 +karman_re100,ppo,19,7.6,force,upper_fy,0.0026584079023450613 +karman_re100,ppo,19,7.6,force,lower_fx,0.003629727056249976 +karman_re100,ppo,19,7.6,force,lower_fy,-0.004977329168468714 +karman_re100,ppo,20,8.0,force,front_fx,0.0039238352328538895 +karman_re100,ppo,20,8.0,force,front_fy,0.0009920474840328097 +karman_re100,ppo,20,8.0,force,upper_fx,-0.006514725275337696 +karman_re100,ppo,20,8.0,force,upper_fy,0.003610165324062109 +karman_re100,ppo,20,8.0,force,lower_fx,0.002313952660188079 +karman_re100,ppo,20,8.0,force,lower_fy,-0.004591846838593483 +karman_re100,ppo,21,8.4,force,front_fx,0.0024883514270186424 +karman_re100,ppo,21,8.4,force,front_fy,-0.0006244576070457697 +karman_re100,ppo,21,8.4,force,upper_fx,-0.003869215026497841 +karman_re100,ppo,21,8.4,force,upper_fy,0.004971128422766924 +karman_re100,ppo,21,8.4,force,lower_fx,0.001116812927648425 +karman_re100,ppo,21,8.4,force,lower_fy,-0.004424592480063438 +karman_re100,ppo,22,8.8,force,front_fx,0.0006422937149181962 +karman_re100,ppo,22,8.8,force,front_fy,-0.0015923172468319535 +karman_re100,ppo,22,8.8,force,upper_fx,-0.0007210829062387347 +karman_re100,ppo,22,8.8,force,upper_fy,0.006483880337327719 +karman_re100,ppo,22,8.8,force,lower_fx,3.76612733816728e-05 +karman_re100,ppo,22,8.8,force,lower_fy,-0.0043650539591908455 +karman_re100,ppo,23,9.2,force,front_fx,-0.0005141334841027856 +karman_re100,ppo,23,9.2,force,front_fy,-0.002036022488027811 +karman_re100,ppo,23,9.2,force,upper_fx,0.0023547338787466288 +karman_re100,ppo,23,9.2,force,upper_fy,0.006930836476385593 +karman_re100,ppo,23,9.2,force,lower_fx,-0.0014558263355866075 +karman_re100,ppo,23,9.2,force,lower_fy,-0.004287038464099169 +karman_re100,ppo,24,9.6,force,front_fx,-0.000691126799210906 +karman_re100,ppo,24,9.6,force,front_fy,-0.002798211295157671 +karman_re100,ppo,24,9.6,force,upper_fx,0.004345325753092766 +karman_re100,ppo,24,9.6,force,upper_fy,0.006614703685045242 +karman_re100,ppo,24,9.6,force,lower_fx,-0.003130937460809946 +karman_re100,ppo,24,9.6,force,lower_fy,-0.0040495614521205425 +karman_re100,ppo,25,10.0,force,front_fx,7.981940871104598e-05 +karman_re100,ppo,25,10.0,force,front_fy,-0.0036572867538779974 +karman_re100,ppo,25,10.0,force,upper_fx,0.005324304103851318 +karman_re100,ppo,25,10.0,force,upper_fy,0.006391590926796198 +karman_re100,ppo,25,10.0,force,lower_fx,-0.004909429233521223 +karman_re100,ppo,25,10.0,force,lower_fy,-0.002846034709364176 +karman_re100,ppo,26,10.4,force,front_fx,0.0018500137375667691 +karman_re100,ppo,26,10.4,force,front_fy,-0.004005294293165207 +karman_re100,ppo,26,10.4,force,upper_fx,0.00547541631385684 +karman_re100,ppo,26,10.4,force,upper_fy,0.006149375345557928 +karman_re100,ppo,26,10.4,force,lower_fx,-0.006969192065298557 +karman_re100,ppo,26,10.4,force,lower_fy,-0.0017882236279547215 +karman_re100,ppo,27,10.8,force,front_fx,0.0040439339354634285 +karman_re100,ppo,27,10.8,force,front_fy,-0.0035973074845969677 +karman_re100,ppo,27,10.8,force,upper_fx,0.004716895986348391 +karman_re100,ppo,27,10.8,force,upper_fy,0.005644667893648148 +karman_re100,ppo,27,10.8,force,lower_fx,-0.008377834223210812 +karman_re100,ppo,27,10.8,force,lower_fy,-0.0016010355902835727 +karman_re100,ppo,28,11.2,force,front_fx,0.0053962296806275845 +karman_re100,ppo,28,11.2,force,front_fy,-0.0024345689453184605 +karman_re100,ppo,28,11.2,force,upper_fx,0.003493658499792218 +karman_re100,ppo,28,11.2,force,upper_fy,0.00485414220020175 +karman_re100,ppo,28,11.2,force,lower_fx,-0.008437798358500004 +karman_re100,ppo,28,11.2,force,lower_fy,-0.002095564967021346 +karman_re100,ppo,29,11.6,force,front_fx,0.004825809504836798 +karman_re100,ppo,29,11.6,force,front_fy,-0.0008697712328284979 +karman_re100,ppo,29,11.6,force,upper_fx,0.0024028560146689415 +karman_re100,ppo,29,11.6,force,upper_fy,0.004298810847103596 +karman_re100,ppo,29,11.6,force,lower_fx,-0.006903014611452818 +karman_re100,ppo,29,11.6,force,lower_fy,-0.0033057373948395252 +karman_re100,ppo,30,12.0,force,front_fx,0.0029010919388383627 +karman_re100,ppo,30,12.0,force,front_fy,0.00046217883937060833 +karman_re100,ppo,30,12.0,force,upper_fx,0.0014786801766604185 +karman_re100,ppo,30,12.0,force,upper_fy,0.004277014173567295 +karman_re100,ppo,30,12.0,force,lower_fx,-0.004129729699343443 +karman_re100,ppo,30,12.0,force,lower_fy,-0.004887147806584835 +karman_re100,ppo,31,12.4,force,front_fx,0.0008284067152999341 +karman_re100,ppo,31,12.4,force,front_fy,0.0013932656729593873 +karman_re100,ppo,31,12.4,force,upper_fx,0.0003289449668955058 +karman_re100,ppo,31,12.4,force,upper_fy,0.004492057487368584 +karman_re100,ppo,31,12.4,force,lower_fx,-0.0007427518139593303 +karman_re100,ppo,31,12.4,force,lower_fy,-0.006121372804045677 +karman_re100,ppo,32,12.8,force,front_fx,-0.0005077321548014879 +karman_re100,ppo,32,12.8,force,front_fy,0.00220820726826787 +karman_re100,ppo,32,12.8,force,upper_fx,-0.0010779963340610266 +karman_re100,ppo,32,12.8,force,upper_fy,0.0045638736337423325 +karman_re100,ppo,32,12.8,force,lower_fx,0.002282726811245084 +karman_re100,ppo,32,12.8,force,lower_fy,-0.006255899090319872 +karman_re100,ppo,33,13.2,force,front_fx,-0.0011360910721123219 +karman_re100,ppo,33,13.2,force,front_fy,0.0028801364824175835 +karman_re100,ppo,33,13.2,force,upper_fx,-0.0023952091578394175 +karman_re100,ppo,33,13.2,force,upper_fy,0.004251966252923012 +karman_re100,ppo,33,13.2,force,lower_fx,0.004057403653860092 +karman_re100,ppo,33,13.2,force,lower_fy,-0.0057427240535616875 +karman_re100,ppo,34,13.6,force,front_fx,-0.001032680505886674 +karman_re100,ppo,34,13.6,force,front_fy,0.0033660572953522205 +karman_re100,ppo,34,13.6,force,upper_fx,-0.00362606905400753 +karman_re100,ppo,34,13.6,force,upper_fy,0.0034383898600935936 +karman_re100,ppo,34,13.6,force,lower_fx,0.004794379696249962 +karman_re100,ppo,34,13.6,force,lower_fy,-0.0055156066082417965 +karman_re100,ppo,35,14.0,force,front_fx,-4.4246509787626565e-05 +karman_re100,ppo,35,14.0,force,front_fy,0.0035611100029200315 +karman_re100,ppo,35,14.0,force,upper_fx,-0.0049880919978022575 +karman_re100,ppo,35,14.0,force,upper_fy,0.0025331194046884775 +karman_re100,ppo,35,14.0,force,lower_fx,0.004994736053049564 +karman_re100,ppo,35,14.0,force,lower_fy,-0.005582138430327177 +karman_re100,ppo,36,14.4,force,front_fx,0.0014463802799582481 +karman_re100,ppo,36,14.4,force,front_fy,0.0032589896582067013 +karman_re100,ppo,36,14.4,force,upper_fx,-0.006177512928843498 +karman_re100,ppo,36,14.4,force,upper_fy,0.0020961600821465254 +karman_re100,ppo,36,14.4,force,lower_fx,0.004636079538613558 +karman_re100,ppo,36,14.4,force,lower_fy,-0.005586797371506691 +karman_re100,ppo,37,14.8,force,front_fx,0.0028417124412953854 +karman_re100,ppo,37,14.8,force,front_fy,0.00235242722555995 +karman_re100,ppo,37,14.8,force,upper_fx,-0.006591002456843853 +karman_re100,ppo,37,14.8,force,upper_fy,0.002239139284938574 +karman_re100,ppo,37,14.8,force,lower_fx,0.0037257329095155 +karman_re100,ppo,37,14.8,force,lower_fy,-0.005292917601764202 +karman_re100,ppo,38,15.2,force,front_fx,0.0031948857940733433 +karman_re100,ppo,38,15.2,force,front_fy,0.0009153124410659075 +karman_re100,ppo,38,15.2,force,upper_fx,-0.0058334642089903355 +karman_re100,ppo,38,15.2,force,upper_fy,0.002913480391725898 +karman_re100,ppo,38,15.2,force,lower_fx,0.00252393982373178 +karman_re100,ppo,38,15.2,force,lower_fy,-0.004927865695208311 +karman_re100,ppo,39,15.6,force,front_fx,0.002318234648555517 +karman_re100,ppo,39,15.6,force,front_fy,-0.0006557553424499929 +karman_re100,ppo,39,15.6,force,upper_fx,-0.003993054386228323 +karman_re100,ppo,39,15.6,force,upper_fy,0.004207245074212551 +karman_re100,ppo,39,15.6,force,lower_fx,0.0012893781531602144 +karman_re100,ppo,39,15.6,force,lower_fy,-0.004664990119636059 +karman_re100,ppo,40,16.0,force,front_fx,0.0007684135343879461 +karman_re100,ppo,40,16.0,force,front_fy,-0.001748944167047739 +karman_re100,ppo,40,16.0,force,upper_fx,-0.001367765013128519 +karman_re100,ppo,40,16.0,force,upper_fy,0.005691459868103266 +karman_re100,ppo,40,16.0,force,lower_fx,0.00019457617599982768 +karman_re100,ppo,40,16.0,force,lower_fy,-0.004556219559162855 +karman_re100,ppo,41,16.4,force,front_fx,-0.0005452547338791192 +karman_re100,ppo,41,16.4,force,front_fy,-0.0021055988036096096 +karman_re100,ppo,41,16.4,force,upper_fx,0.001451103831641376 +karman_re100,ppo,41,16.4,force,upper_fy,0.006239013746380806 +karman_re100,ppo,41,16.4,force,lower_fx,-0.001029955456033349 +karman_re100,ppo,41,16.4,force,lower_fy,-0.004407960921525955 +karman_re100,ppo,42,16.8,force,front_fx,-0.0010938576888293028 +karman_re100,ppo,42,16.8,force,front_fy,-0.0026429377030581236 +karman_re100,ppo,42,16.8,force,upper_fx,0.0034499752800911665 +karman_re100,ppo,42,16.8,force,upper_fy,0.005913404282182455 +karman_re100,ppo,42,16.8,force,lower_fx,-0.0023624671157449484 +karman_re100,ppo,42,16.8,force,lower_fy,-0.004141996614634991 +karman_re100,ppo,43,17.2,force,front_fx,-0.0007559194345958531 +karman_re100,ppo,43,17.2,force,front_fy,-0.003332023974508047 +karman_re100,ppo,43,17.2,force,upper_fx,0.00461199227720499 +karman_re100,ppo,43,17.2,force,upper_fy,0.005793899297714233 +karman_re100,ppo,43,17.2,force,lower_fx,-0.0038287893403321505 +karman_re100,ppo,43,17.2,force,lower_fy,-0.0028947421815246344 +karman_re100,ppo,44,17.6,force,front_fx,0.0007282652659341693 +karman_re100,ppo,44,17.6,force,front_fy,-0.0037313327193260193 +karman_re100,ppo,44,17.6,force,upper_fx,0.005176090635359287 +karman_re100,ppo,44,17.6,force,upper_fy,0.005784803535789251 +karman_re100,ppo,44,17.6,force,lower_fx,-0.005875550676137209 +karman_re100,ppo,44,17.6,force,lower_fy,-0.0015961624449118972 +karman_re100,ppo,45,18.0,force,front_fx,0.0029155912343412638 +karman_re100,ppo,45,18.0,force,front_fy,-0.0034890458919107914 +karman_re100,ppo,45,18.0,force,upper_fx,0.004852547310292721 +karman_re100,ppo,45,18.0,force,upper_fy,0.0055952854454517365 +karman_re100,ppo,45,18.0,force,lower_fx,-0.007699952926486731 +karman_re100,ppo,45,18.0,force,lower_fy,-0.0011896580690518022 +karman_re100,ppo,46,18.4,force,front_fx,0.0048471298068761826 +karman_re100,ppo,46,18.4,force,front_fy,-0.0024587863590568304 +karman_re100,ppo,46,18.4,force,upper_fx,0.0037109171971678734 +karman_re100,ppo,46,18.4,force,upper_fy,0.005103988107293844 +karman_re100,ppo,46,18.4,force,lower_fx,-0.008566421456634998 +karman_re100,ppo,46,18.4,force,lower_fy,-0.001518763485364616 +karman_re100,ppo,47,18.8,force,front_fx,0.0049108886159956455 +karman_re100,ppo,47,18.8,force,front_fy,-0.0009762805420905352 +karman_re100,ppo,47,18.8,force,upper_fx,0.0025571605656296015 +karman_re100,ppo,47,18.8,force,upper_fy,0.00452507333829999 +karman_re100,ppo,47,18.8,force,lower_fx,-0.007782384287565947 +karman_re100,ppo,47,18.8,force,lower_fy,-0.0026786932721734047 +karman_re100,ppo,48,19.2,force,front_fx,0.0033219491597265005 +karman_re100,ppo,48,19.2,force,front_fy,0.0005160364089533687 +karman_re100,ppo,48,19.2,force,upper_fx,0.001601984491571784 +karman_re100,ppo,48,19.2,force,upper_fy,0.004359529819339514 +karman_re100,ppo,48,19.2,force,lower_fx,-0.0054647731594741344 +karman_re100,ppo,48,19.2,force,lower_fy,-0.004280649125576019 +karman_re100,ppo,49,19.6,force,front_fx,0.001241913065314293 +karman_re100,ppo,49,19.6,force,front_fy,0.0014735424192622304 +karman_re100,ppo,49,19.6,force,upper_fx,0.0006228957208804786 +karman_re100,ppo,49,19.6,force,upper_fy,0.0044687530025839806 +karman_re100,ppo,49,19.6,force,lower_fx,-0.002295092446729541 +karman_re100,ppo,49,19.6,force,lower_fy,-0.0057538882829248905 +karman_re100,ppo,50,20.0,force,front_fx,-0.0003363724099472165 +karman_re100,ppo,50,20.0,force,front_fy,0.002163778757676482 +karman_re100,ppo,50,20.0,force,upper_fx,-0.0005833739996887743 +karman_re100,ppo,50,20.0,force,upper_fy,0.0045869480818510056 +karman_re100,ppo,50,20.0,force,lower_fx,0.0008914226782508194 +karman_re100,ppo,50,20.0,force,lower_fy,-0.006197574082762003 +karman_re100,ppo,51,20.4,force,front_fx,-0.0011691924883052707 +karman_re100,ppo,51,20.4,force,front_fy,0.002713259542360902 +karman_re100,ppo,51,20.4,force,upper_fx,-0.0017304581124335527 +karman_re100,ppo,51,20.4,force,upper_fy,0.004420269280672073 +karman_re100,ppo,51,20.4,force,lower_fx,0.0030584470368921757 +karman_re100,ppo,51,20.4,force,lower_fy,-0.005831311456859112 +karman_re100,ppo,52,20.8,force,front_fx,-0.0012623434886336327 +karman_re100,ppo,52,20.8,force,front_fy,0.0031963461078703403 +karman_re100,ppo,52,20.8,force,upper_fx,-0.00286190677434206 +karman_re100,ppo,52,20.8,force,upper_fy,0.0036750060971826315 +karman_re100,ppo,52,20.8,force,lower_fx,0.004137968644499779 +karman_re100,ppo,52,20.8,force,lower_fy,-0.005578239448368549 +karman_re100,ppo,53,21.2,force,front_fx,-0.0004877186147496104 +karman_re100,ppo,53,21.2,force,front_fy,0.0034273830242455006 +karman_re100,ppo,53,21.2,force,upper_fx,-0.004239396657794714 +karman_re100,ppo,53,21.2,force,upper_fy,0.0027282624505460262 +karman_re100,ppo,53,21.2,force,lower_fx,0.004585328046232462 +karman_re100,ppo,53,21.2,force,lower_fy,-0.005588027648627758 +karman_re100,ppo,54,21.6,force,front_fx,0.0009054836118593812 +karman_re100,ppo,54,21.6,force,front_fy,0.0031410842202603817 +karman_re100,ppo,54,21.6,force,upper_fx,-0.005474111996591091 +karman_re100,ppo,54,21.6,force,upper_fy,0.0022575499024242163 +karman_re100,ppo,54,21.6,force,lower_fx,0.004404477309435606 +karman_re100,ppo,54,21.6,force,lower_fy,-0.005531304981559515 +karman_re100,ppo,55,22.0,force,front_fx,0.0022837496362626553 +karman_re100,ppo,55,22.0,force,front_fy,0.002259082393720746 +karman_re100,ppo,55,22.0,force,upper_fx,-0.006009504199028015 +karman_re100,ppo,55,22.0,force,upper_fy,0.0024591132532805204 +karman_re100,ppo,55,22.0,force,lower_fx,0.0035802111960947514 +karman_re100,ppo,55,22.0,force,lower_fy,-0.005275626666843891 +karman_re100,ppo,56,22.4,force,front_fx,0.0028038627933710814 +karman_re100,ppo,56,22.4,force,front_fy,0.0008814672473818064 +karman_re100,ppo,56,22.4,force,upper_fx,-0.005385134369134903 +karman_re100,ppo,56,22.4,force,upper_fy,0.0032084807753562927 +karman_re100,ppo,56,22.4,force,lower_fx,0.0024162251502275467 +karman_re100,ppo,56,22.4,force,lower_fy,-0.004958974663168192 +karman_re100,ppo,57,22.8,force,front_fx,0.002078975783661008 +karman_re100,ppo,57,22.8,force,front_fy,-0.0006059735896997154 +karman_re100,ppo,57,22.8,force,upper_fx,-0.0035893148742616177 +karman_re100,ppo,57,22.8,force,upper_fy,0.004544963128864765 +karman_re100,ppo,57,22.8,force,lower_fx,0.001234107301570475 +karman_re100,ppo,57,22.8,force,lower_fy,-0.004703186452388763 +karman_re100,ppo,58,23.2,force,front_fx,0.0006459567230194807 +karman_re100,ppo,58,23.2,force,front_fy,-0.0016547718551009893 +karman_re100,ppo,58,23.2,force,upper_fx,-0.0009276745258830488 +karman_re100,ppo,58,23.2,force,upper_fy,0.005841893143951893 +karman_re100,ppo,58,23.2,force,lower_fx,0.0001118157961172983 +karman_re100,ppo,58,23.2,force,lower_fy,-0.004567968659102917 +karman_re100,ppo,59,23.6,force,front_fx,-0.0005521373241208494 +karman_re100,ppo,59,23.6,force,front_fy,-0.002076296368613839 +karman_re100,ppo,59,23.6,force,upper_fx,0.0017695699352771044 +karman_re100,ppo,59,23.6,force,upper_fy,0.006152159534394741 +karman_re100,ppo,59,23.6,force,lower_fx,-0.0011882914695888758 +karman_re100,ppo,59,23.6,force,lower_fy,-0.004376721568405628 +karman_re100,ppo,60,24.0,force,front_fx,-0.001023008837364614 +karman_re100,ppo,60,24.0,force,front_fy,-0.002701027086004615 +karman_re100,ppo,60,24.0,force,upper_fx,0.003641013288870454 +karman_re100,ppo,60,24.0,force,upper_fy,0.00581673439592123 +karman_re100,ppo,60,24.0,force,lower_fx,-0.002561706816777587 +karman_re100,ppo,60,24.0,force,lower_fy,-0.003923064563423395 +karman_re100,ppo,61,24.4,force,front_fx,-0.0005652221734635532 +karman_re100,ppo,61,24.4,force,front_fy,-0.0034310680348426104 +karman_re100,ppo,61,24.4,force,upper_fx,0.004796854220330715 +karman_re100,ppo,61,24.4,force,upper_fy,0.005743612069636583 +karman_re100,ppo,61,24.4,force,lower_fx,-0.0042313262820243835 +karman_re100,ppo,61,24.4,force,lower_fy,-0.002539009554311633 +karman_re100,ppo,62,24.8,force,front_fx,0.0012328661978244781 +karman_re100,ppo,62,24.8,force,front_fy,-0.0038516076747328043 +karman_re100,ppo,62,24.8,force,upper_fx,0.005181869491934776 +karman_re100,ppo,62,24.8,force,upper_fy,0.0056211380288004875 +karman_re100,ppo,62,24.8,force,lower_fx,-0.006666216999292374 +karman_re100,ppo,62,24.8,force,lower_fy,-0.0012811273336410522 +karman_re100,ppo,63,25.2,force,front_fx,0.0035339409951120615 +karman_re100,ppo,63,25.2,force,front_fy,-0.0035767301451414824 +karman_re100,ppo,63,25.2,force,upper_fx,0.004815808963030577 +karman_re100,ppo,63,25.2,force,upper_fy,0.0055528562515974045 +karman_re100,ppo,63,25.2,force,lower_fx,-0.008379241451621056 +karman_re100,ppo,63,25.2,force,lower_fy,-0.0011193006066605449 +karman_re100,ppo,64,25.6,force,front_fx,0.005448675714433193 +karman_re100,ppo,64,25.6,force,front_fy,-0.002471423940733075 +karman_re100,ppo,64,25.6,force,upper_fx,0.0035570894833654165 +karman_re100,ppo,64,25.6,force,upper_fy,0.004919077735394239 +karman_re100,ppo,64,25.6,force,lower_fx,-0.009042234160006046 +karman_re100,ppo,64,25.6,force,lower_fy,-0.0015979777090251446 +karman_re100,ppo,65,26.0,force,front_fx,0.005216344725340605 +karman_re100,ppo,65,26.0,force,front_fy,-0.0010146640706807375 +karman_re100,ppo,65,26.0,force,upper_fx,0.0025063969660550356 +karman_re100,ppo,65,26.0,force,upper_fy,0.004302863031625748 +karman_re100,ppo,65,26.0,force,lower_fx,-0.007948346436023712 +karman_re100,ppo,65,26.0,force,lower_fy,-0.0028457387816160917 +karman_re100,ppo,66,26.4,force,front_fx,0.0034226488787680864 +karman_re100,ppo,66,26.4,force,front_fy,0.0004360470629762858 +karman_re100,ppo,66,26.4,force,upper_fx,0.0015955178532749414 +karman_re100,ppo,66,26.4,force,upper_fy,0.004195988643914461 +karman_re100,ppo,66,26.4,force,lower_fx,-0.005372074898332357 +karman_re100,ppo,66,26.4,force,lower_fy,-0.004413996823132038 +karman_re100,ppo,67,26.8,force,front_fx,0.0012998117599636316 +karman_re100,ppo,67,26.8,force,front_fy,0.0014066003495827317 +karman_re100,ppo,67,26.8,force,upper_fx,0.0005885502905584872 +karman_re100,ppo,67,26.8,force,upper_fy,0.004403228871524334 +karman_re100,ppo,67,26.8,force,lower_fx,-0.0020580501295626163 +karman_re100,ppo,67,26.8,force,lower_fy,-0.005746600683778524 +karman_re100,ppo,68,27.2,force,front_fx,-0.00026767730014398694 +karman_re100,ppo,68,27.2,force,front_fy,0.0021622320637106895 +karman_re100,ppo,68,27.2,force,upper_fx,-0.0006514047272503376 +karman_re100,ppo,68,27.2,force,upper_fy,0.004584860056638718 +karman_re100,ppo,68,27.2,force,lower_fx,0.0010667413007467985 +karman_re100,ppo,68,27.2,force,lower_fy,-0.006106875371187925 +karman_re100,ppo,69,27.6,force,front_fx,-0.0010516337351873517 +karman_re100,ppo,69,27.6,force,front_fy,0.0027794232591986656 +karman_re100,ppo,69,27.6,force,upper_fx,-0.00184325547888875 +karman_re100,ppo,69,27.6,force,upper_fy,0.004395540803670883 +karman_re100,ppo,69,27.6,force,lower_fx,0.003143308451399207 +karman_re100,ppo,69,27.6,force,lower_fy,-0.005822339095175266 +karman_re100,ppo,70,28.0,force,front_fx,-0.001070602098479867 +karman_re100,ppo,70,28.0,force,front_fy,0.003295290283858776 +karman_re100,ppo,70,28.0,force,upper_fx,-0.0030587578658014536 +karman_re100,ppo,70,28.0,force,upper_fy,0.0036156175192445517 +karman_re100,ppo,70,28.0,force,lower_fx,0.004186211619526148 +karman_re100,ppo,70,28.0,force,lower_fy,-0.005654367618262768 +karman_re100,ppo,71,28.4,force,front_fx,-0.0002107582986354828 +karman_re100,ppo,71,28.4,force,front_fy,0.003537863725796342 +karman_re100,ppo,71,28.4,force,upper_fx,-0.004469757899641991 +karman_re100,ppo,71,28.4,force,upper_fy,0.0027335570193827152 +karman_re100,ppo,71,28.4,force,lower_fx,0.004607765469700098 +karman_re100,ppo,71,28.4,force,lower_fy,-0.005646034609526396 +karman_re100,ppo,72,28.8,force,front_fx,0.001223573461174965 +karman_re100,ppo,72,28.8,force,front_fy,0.003253750503063202 +karman_re100,ppo,72,28.8,force,upper_fx,-0.005673372186720371 +karman_re100,ppo,72,28.8,force,upper_fy,0.0023259278386831284 +karman_re100,ppo,72,28.8,force,lower_fx,0.004364839754998684 +karman_re100,ppo,72,28.8,force,lower_fy,-0.005583241116255522 +karman_re100,ppo,73,29.2,force,front_fx,0.0025960728526115417 +karman_re100,ppo,73,29.2,force,front_fy,0.002356146462261677 +karman_re100,ppo,73,29.2,force,upper_fx,-0.006159880664199591 +karman_re100,ppo,73,29.2,force,upper_fy,0.0025083806831389666 +karman_re100,ppo,73,29.2,force,lower_fx,0.003547930158674717 +karman_re100,ppo,73,29.2,force,lower_fy,-0.005325955338776112 +karman_re100,ppo,74,29.6,force,front_fx,0.0029972600750625134 +karman_re100,ppo,74,29.6,force,front_fy,0.0009719253284856677 +karman_re100,ppo,74,29.6,force,upper_fx,-0.005433329381048679 +karman_re100,ppo,74,29.6,force,upper_fy,0.0032928823493421078 +karman_re100,ppo,74,29.6,force,lower_fx,0.0023991381749510765 +karman_re100,ppo,74,29.6,force,lower_fy,-0.004974524024873972 +karman_re100,ppo,75,30.0,force,front_fx,0.002165453974157572 +karman_re100,ppo,75,30.0,force,front_fy,-0.0005470463656820357 +karman_re100,ppo,75,30.0,force,upper_fx,-0.0035437322221696377 +karman_re100,ppo,75,30.0,force,upper_fy,0.004631557501852512 +karman_re100,ppo,75,30.0,force,lower_fx,0.0012200715718790889 +karman_re100,ppo,75,30.0,force,lower_fy,-0.00471879169344902 +karman_re100,ppo,76,30.4,force,front_fx,0.0007107194978743792 +karman_re100,ppo,76,30.4,force,front_fy,-0.0015925623010843992 +karman_re100,ppo,76,30.4,force,upper_fx,-0.0008512947242707014 +karman_re100,ppo,76,30.4,force,upper_fy,0.005837270524352789 +karman_re100,ppo,76,30.4,force,lower_fx,9.099856106331572e-05 +karman_re100,ppo,76,30.4,force,lower_fy,-0.0045921094715595245 +karman_re100,ppo,77,30.8,force,front_fx,-0.00044916197657585144 +karman_re100,ppo,77,30.8,force,front_fy,-0.0020631239749491215 +karman_re100,ppo,77,30.8,force,upper_fx,0.0018389044562354684 +karman_re100,ppo,77,30.8,force,upper_fy,0.006081272382289171 +karman_re100,ppo,77,30.8,force,lower_fx,-0.0012314729392528534 +karman_re100,ppo,77,30.8,force,lower_fy,-0.004406252410262823 +karman_re100,ppo,78,31.2,force,front_fx,-0.0009024098399095237 +karman_re100,ppo,78,31.2,force,front_fy,-0.002725479658693075 +karman_re100,ppo,78,31.2,force,upper_fx,0.0037014379631727934 +karman_re100,ppo,78,31.2,force,upper_fy,0.005833265837281942 +karman_re100,ppo,78,31.2,force,lower_fx,-0.0026199573185294867 +karman_re100,ppo,78,31.2,force,lower_fy,-0.0038950482849031687 +karman_re100,ppo,79,31.6,force,front_fx,-0.00040742798591963947 +karman_re100,ppo,79,31.6,force,front_fy,-0.0034385668113827705 +karman_re100,ppo,79,31.6,force,upper_fx,0.004852378275245428 +karman_re100,ppo,79,31.6,force,upper_fy,0.00582267576828599 +karman_re100,ppo,79,31.6,force,lower_fx,-0.004340686369687319 +karman_re100,ppo,79,31.6,force,lower_fy,-0.002468534978106618 +karman_re100,ppo,80,32.0,force,front_fx,0.0012174067087471485 +karman_re100,ppo,80,32.0,force,front_fy,-0.003872878849506378 +karman_re100,ppo,80,32.0,force,upper_fx,0.005331625230610371 +karman_re100,ppo,80,32.0,force,upper_fy,0.005819861311465502 +karman_re100,ppo,80,32.0,force,lower_fx,-0.006553691811859608 +karman_re100,ppo,80,32.0,force,lower_fy,-0.0013538378989323974 +karman_re100,ppo,81,32.4,force,front_fx,0.0036429145839065313 +karman_re100,ppo,81,32.4,force,front_fy,-0.0036383485421538353 +karman_re100,ppo,81,32.4,force,upper_fx,0.004814361222088337 +karman_re100,ppo,81,32.4,force,upper_fy,0.0056002093479037285 +karman_re100,ppo,81,32.4,force,lower_fx,-0.00848271232098341 +karman_re100,ppo,81,32.4,force,lower_fy,-0.001071675680577755 +karman_re100,ppo,82,32.8,force,front_fx,0.0055512599647045135 +karman_re100,ppo,82,32.8,force,front_fy,-0.002676957519724965 +karman_re100,ppo,82,32.8,force,upper_fx,0.0036545144394040108 +karman_re100,ppo,82,32.8,force,upper_fy,0.004912784788757563 +karman_re100,ppo,82,32.8,force,lower_fx,-0.009204021655023098 +karman_re100,ppo,82,32.8,force,lower_fy,-0.001517511554993689 +karman_re100,ppo,83,33.2,force,front_fx,0.00544197391718626 +karman_re100,ppo,83,33.2,force,front_fy,-0.0011426425771787763 +karman_re100,ppo,83,33.2,force,upper_fx,0.0025568995624780655 +karman_re100,ppo,83,33.2,force,upper_fy,0.004233457613736391 +karman_re100,ppo,83,33.2,force,lower_fx,-0.008127511478960514 +karman_re100,ppo,83,33.2,force,lower_fy,-0.0027065190952271223 +karman_re100,ppo,84,33.6,force,front_fx,0.003708999138325453 +karman_re100,ppo,84,33.6,force,front_fy,0.00033012041239999235 +karman_re100,ppo,84,33.6,force,upper_fx,0.0016741352155804634 +karman_re100,ppo,84,33.6,force,upper_fy,0.004089013207703829 +karman_re100,ppo,84,33.6,force,lower_fx,-0.005625490564852953 +karman_re100,ppo,84,33.6,force,lower_fy,-0.004214705433696508 +karman_re100,ppo,85,34.0,force,front_fx,0.0015237299958243966 +karman_re100,ppo,85,34.0,force,front_fy,0.0012949579395353794 +karman_re100,ppo,85,34.0,force,upper_fx,0.0007228018948808312 +karman_re100,ppo,85,34.0,force,upper_fy,0.004302177112549543 +karman_re100,ppo,85,34.0,force,lower_fx,-0.0024306578561663628 +karman_re100,ppo,85,34.0,force,lower_fy,-0.005604195408523083 +karman_re100,ppo,86,34.4,force,front_fx,-0.0001237257820321247 +karman_re100,ppo,86,34.4,force,front_fy,0.002082443330436945 +karman_re100,ppo,86,34.4,force,upper_fx,-0.00049929617671296 +karman_re100,ppo,86,34.4,force,upper_fy,0.004533860366791487 +karman_re100,ppo,86,34.4,force,lower_fx,0.0007155373459681869 +karman_re100,ppo,86,34.4,force,lower_fy,-0.006121625192463398 +karman_re100,ppo,87,34.8,force,front_fx,-0.0010242168791592121 +karman_re100,ppo,87,34.8,force,front_fy,0.002699356060475111 +karman_re100,ppo,87,34.8,force,upper_fx,-0.0016744770109653473 +karman_re100,ppo,87,34.8,force,upper_fy,0.004450739361345768 +karman_re100,ppo,87,34.8,force,lower_fx,0.0028807383496314287 +karman_re100,ppo,87,34.8,force,lower_fy,-0.005873982794582844 +karman_re100,ppo,88,35.2,force,front_fx,-0.001161649008281529 +karman_re100,ppo,88,35.2,force,front_fy,0.0032428265549242496 +karman_re100,ppo,88,35.2,force,upper_fx,-0.0028118023183196783 +karman_re100,ppo,88,35.2,force,upper_fy,0.00379444332793355 +karman_re100,ppo,88,35.2,force,lower_fx,0.0040039317682385445 +karman_re100,ppo,88,35.2,force,lower_fy,-0.005650973413139582 +karman_re100,ppo,89,35.6,force,front_fx,-0.0004745480546262115 +karman_re100,ppo,89,35.6,force,front_fy,0.0034968717955052853 +karman_re100,ppo,89,35.6,force,upper_fx,-0.0040819281712174416 +karman_re100,ppo,89,35.6,force,upper_fy,0.002901893574744463 +karman_re100,ppo,89,35.6,force,lower_fx,0.004510937724262476 +karman_re100,ppo,89,35.6,force,lower_fy,-0.00569172203540802 +karman_re100,ppo,90,36.0,force,front_fx,0.0008556332322768867 +karman_re100,ppo,90,36.0,force,front_fy,0.003292956156656146 +karman_re100,ppo,90,36.0,force,upper_fx,-0.005277592688798904 +karman_re100,ppo,90,36.0,force,upper_fy,0.0024060504510998726 +karman_re100,ppo,90,36.0,force,lower_fx,0.004397277720272541 +karman_re100,ppo,90,36.0,force,lower_fy,-0.005638407543301582 +karman_re100,ppo,91,36.4,force,front_fx,0.002246925374493003 +karman_re100,ppo,91,36.4,force,front_fy,0.002468750812113285 +karman_re100,ppo,91,36.4,force,upper_fx,-0.0058413315564394 +karman_re100,ppo,91,36.4,force,upper_fy,0.0024961282033473253 +karman_re100,ppo,91,36.4,force,lower_fx,0.0036592907272279263 +karman_re100,ppo,91,36.4,force,lower_fy,-0.005388809833675623 +karman_re100,ppo,92,36.8,force,front_fx,0.002834649756550789 +karman_re100,ppo,92,36.8,force,front_fy,0.001117113628424704 +karman_re100,ppo,92,36.8,force,upper_fx,-0.005325273144990206 +karman_re100,ppo,92,36.8,force,upper_fy,0.003132039913907647 +karman_re100,ppo,92,36.8,force,lower_fx,0.002534017199650407 +karman_re100,ppo,92,36.8,force,lower_fy,-0.005036462098360062 +karman_re100,ppo,93,37.2,force,front_fx,0.0022119078785181046 +karman_re100,ppo,93,37.2,force,front_fy,-0.00040277757216244936 +karman_re100,ppo,93,37.2,force,upper_fx,-0.0036807283759117126 +karman_re100,ppo,93,37.2,force,upper_fy,0.004358145873993635 +karman_re100,ppo,93,37.2,force,lower_fx,0.0013493755832314491 +karman_re100,ppo,93,37.2,force,lower_fy,-0.004750214982777834 +karman_re100,ppo,94,37.6,force,front_fx,0.000824921706225723 +karman_re100,ppo,94,37.6,force,front_fy,-0.0015369309112429619 +karman_re100,ppo,94,37.6,force,upper_fx,-0.0011468360899016261 +karman_re100,ppo,94,37.6,force,upper_fy,0.005674524698406458 +karman_re100,ppo,94,37.6,force,lower_fx,0.00021688958804588765 +karman_re100,ppo,94,37.6,force,lower_fy,-0.004583964589983225 +karman_re100,ppo,95,38.0,force,front_fx,-0.00042078454862348735 +karman_re100,ppo,95,38.0,force,front_fy,-0.001999710686504841 +karman_re100,ppo,95,38.0,force,upper_fx,0.0015547266229987144 +karman_re100,ppo,95,38.0,force,upper_fy,0.006121502723544836 +karman_re100,ppo,95,38.0,force,lower_fx,-0.0010460842167958617 +karman_re100,ppo,95,38.0,force,lower_fy,-0.004377668723464012 +karman_re100,ppo,96,38.4,force,front_fx,-0.0009935233974829316 +karman_re100,ppo,96,38.4,force,front_fy,-0.00260759680531919 +karman_re100,ppo,96,38.4,force,upper_fx,0.0035385587252676487 +karman_re100,ppo,96,38.4,force,upper_fy,0.005835910327732563 +karman_re100,ppo,96,38.4,force,lower_fx,-0.002411261899396777 +karman_re100,ppo,96,38.4,force,lower_fy,-0.004002811387181282 +karman_re100,ppo,97,38.8,force,front_fx,-0.0006417008698917925 +karman_re100,ppo,97,38.8,force,front_fy,-0.003335387911647558 +karman_re100,ppo,97,38.8,force,upper_fx,0.0047532799653708935 +karman_re100,ppo,97,38.8,force,upper_fy,0.005767008289694786 +karman_re100,ppo,97,38.8,force,lower_fx,-0.004022947978228331 +karman_re100,ppo,97,38.8,force,lower_fy,-0.0026619702111929655 +karman_re100,ppo,98,39.2,force,front_fx,0.0008486097794957459 +karman_re100,ppo,98,39.2,force,front_fy,-0.0038352643605321646 +karman_re100,ppo,98,39.2,force,upper_fx,0.0053636785596609116 +karman_re100,ppo,98,39.2,force,upper_fy,0.005782890133559704 +karman_re100,ppo,98,39.2,force,lower_fx,-0.006246951408684254 +karman_re100,ppo,98,39.2,force,lower_fy,-0.0013701340649276972 +karman_re100,ppo,99,39.6,force,front_fx,0.0031992588192224503 +karman_re100,ppo,99,39.6,force,front_fy,-0.003705824026837945 +karman_re100,ppo,99,39.6,force,upper_fx,0.005025027319788933 +karman_re100,ppo,99,39.6,force,upper_fy,0.0056258211843669415 +karman_re100,ppo,99,39.6,force,lower_fx,-0.008276603184640408 +karman_re100,ppo,99,39.6,force,lower_fy,-0.0009897236013785005 +karman_re100,ppo,100,40.0,force,front_fx,0.00534068001434207 +karman_re100,ppo,100,40.0,force,front_fy,-0.002795693464577198 +karman_re100,ppo,100,40.0,force,upper_fx,0.0038577457889914513 +karman_re100,ppo,100,40.0,force,upper_fy,0.005033829249441624 +karman_re100,ppo,100,40.0,force,lower_fx,-0.009245777502655983 +karman_re100,ppo,100,40.0,force,lower_fy,-0.001325302990153432 +karman_re100,ppo,101,40.4,force,front_fx,0.005566386505961418 +karman_re100,ppo,101,40.4,force,front_fy,-0.0012960731983184814 +karman_re100,ppo,101,40.4,force,upper_fx,0.002700447104871273 +karman_re100,ppo,101,40.4,force,upper_fy,0.004319583065807819 +karman_re100,ppo,101,40.4,force,lower_fx,-0.008455151692032814 +karman_re100,ppo,101,40.4,force,lower_fy,-0.0024387913290411234 +karman_re100,ppo,102,40.8,force,front_fx,0.004004032351076603 +karman_re100,ppo,102,40.8,force,front_fy,0.0002577637496870011 +karman_re100,ppo,102,40.8,force,upper_fx,0.0017774428706616163 +karman_re100,ppo,102,40.8,force,upper_fy,0.004088124725967646 +karman_re100,ppo,102,40.8,force,lower_fx,-0.006103771738708019 +karman_re100,ppo,102,40.8,force,lower_fy,-0.003956107888370752 +karman_re100,ppo,103,41.2,force,front_fx,0.0017617068951949477 +karman_re100,ppo,103,41.2,force,front_fy,0.0012517751893028617 +karman_re100,ppo,103,41.2,force,upper_fx,0.0008711609407328069 +karman_re100,ppo,103,41.2,force,upper_fy,0.004260397050529718 +karman_re100,ppo,103,41.2,force,lower_fx,-0.0029790166299790144 +karman_re100,ppo,103,41.2,force,lower_fy,-0.005450718570500612 +karman_re100,ppo,104,41.6,force,front_fx,-2.605239387776237e-05 +karman_re100,ppo,104,41.6,force,front_fy,0.002020337153226137 +karman_re100,ppo,104,41.6,force,upper_fx,-0.00030949132633395493 +karman_re100,ppo,104,41.6,force,upper_fy,0.004510845057666302 +karman_re100,ppo,104,41.6,force,lower_fx,0.00026192457880824804 +karman_re100,ppo,104,41.6,force,lower_fy,-0.006137060932815075 +karman_re100,ppo,105,42.0,force,front_fx,-0.0010135946795344353 +karman_re100,ppo,105,42.0,force,front_fy,0.00263447524048388 +karman_re100,ppo,105,42.0,force,upper_fx,-0.0014880417147651315 +karman_re100,ppo,105,42.0,force,upper_fy,0.004499105736613274 +karman_re100,ppo,105,42.0,force,lower_fx,0.0026248106732964516 +karman_re100,ppo,105,42.0,force,lower_fy,-0.005946593824774027 +karman_re100,ppo,106,42.4,force,front_fx,-0.001241154968738556 +karman_re100,ppo,106,42.4,force,front_fy,0.00318173342384398 +karman_re100,ppo,106,42.4,force,upper_fx,-0.0025969191920012236 +karman_re100,ppo,106,42.4,force,upper_fy,0.003914404660463333 +karman_re100,ppo,106,42.4,force,lower_fx,0.0038868733681738377 +karman_re100,ppo,106,42.4,force,lower_fy,-0.005699470639228821 +karman_re100,ppo,107,42.8,force,front_fx,-0.0006030048243701458 +karman_re100,ppo,107,42.8,force,front_fy,0.003480929648503661 +karman_re100,ppo,107,42.8,force,upper_fx,-0.0038842367939651012 +karman_re100,ppo,107,42.8,force,upper_fy,0.0030128720682114363 +karman_re100,ppo,107,42.8,force,lower_fx,0.004459643270820379 +karman_re100,ppo,107,42.8,force,lower_fy,-0.005704564042389393 +karman_re100,ppo,108,43.2,force,front_fx,0.0006621952634304762 +karman_re100,ppo,108,43.2,force,front_fy,0.003306241240352392 +karman_re100,ppo,108,43.2,force,upper_fx,-0.005109093151986599 +karman_re100,ppo,108,43.2,force,upper_fy,0.0024525895714759827 +karman_re100,ppo,108,43.2,force,lower_fx,0.004412940703332424 +karman_re100,ppo,108,43.2,force,lower_fy,-0.005655207205563784 +karman_re100,ppo,109,43.6,force,front_fx,0.0020816167816519737 +karman_re100,ppo,109,43.6,force,front_fy,0.002519178669899702 +karman_re100,ppo,109,43.6,force,upper_fx,-0.005771399941295385 +karman_re100,ppo,109,43.6,force,upper_fy,0.002479850547388196 +karman_re100,ppo,109,43.6,force,lower_fx,0.0037256127689033747 +karman_re100,ppo,109,43.6,force,lower_fy,-0.005409427918493748 +karman_re100,ppo,110,44.0,force,front_fx,0.0027840337716042995 +karman_re100,ppo,110,44.0,force,front_fy,0.0012006652541458607 +karman_re100,ppo,110,44.0,force,upper_fx,-0.005377341527491808 +karman_re100,ppo,110,44.0,force,upper_fy,0.003071829443797469 +karman_re100,ppo,110,44.0,force,lower_fx,0.0026139039546251297 +karman_re100,ppo,110,44.0,force,lower_fy,-0.005062791518867016 +karman_re100,ppo,111,44.4,force,front_fx,0.002266035648062825 +karman_re100,ppo,111,44.4,force,front_fy,-0.0003201353829354048 +karman_re100,ppo,111,44.4,force,upper_fx,-0.003842404577881098 +karman_re100,ppo,111,44.4,force,upper_fy,0.00427626958116889 +karman_re100,ppo,111,44.4,force,lower_fx,0.0014348482945933938 +karman_re100,ppo,111,44.4,force,lower_fy,-0.004776672925800085 +karman_re100,ppo,112,44.8,force,front_fx,0.000910507864318788 +karman_re100,ppo,112,44.8,force,front_fy,-0.0014932152116671205 +karman_re100,ppo,112,44.8,force,upper_fx,-0.0013448538957163692 +karman_re100,ppo,112,44.8,force,upper_fy,0.005628343205899 +karman_re100,ppo,112,44.8,force,lower_fx,0.000312072312226519 +karman_re100,ppo,112,44.8,force,lower_fy,-0.0046091764234006405 +karman_re100,ppo,113,45.2,force,front_fx,-0.00037584989331662655 +karman_re100,ppo,113,45.2,force,front_fy,-0.0019829280208796263 +karman_re100,ppo,113,45.2,force,upper_fx,0.0013810353120788932 +karman_re100,ppo,113,45.2,force,upper_fy,0.0061523765325546265 +karman_re100,ppo,113,45.2,force,lower_fx,-0.0009317619842477143 +karman_re100,ppo,113,45.2,force,lower_fy,-0.004415880888700485 +karman_re100,ppo,114,45.6,force,front_fx,-0.0009774324717000127 +karman_re100,ppo,114,45.6,force,front_fy,-0.00256171147339046 +karman_re100,ppo,114,45.6,force,upper_fx,0.0034172760788351297 +karman_re100,ppo,114,45.6,force,upper_fy,0.005864822305738926 +karman_re100,ppo,114,45.6,force,lower_fx,-0.00231943279504776 +karman_re100,ppo,114,45.6,force,lower_fy,-0.004062326159328222 +karman_re100,ppo,115,46.0,force,front_fx,-0.000695494469255209 +karman_re100,ppo,115,46.0,force,front_fy,-0.0032905233092606068 +karman_re100,ppo,115,46.0,force,upper_fx,0.004666394088417292 +karman_re100,ppo,115,46.0,force,upper_fy,0.00575163122266531 +karman_re100,ppo,115,46.0,force,lower_fx,-0.003894659923389554 +karman_re100,ppo,115,46.0,force,lower_fy,-0.0027547944337129593 +karman_re100,ppo,116,46.4,force,front_fx,0.0007132879109121859 +karman_re100,ppo,116,46.4,force,front_fy,-0.0038105410058051348 +karman_re100,ppo,116,46.4,force,upper_fx,0.0053350310772657394 +karman_re100,ppo,116,46.4,force,upper_fy,0.005780847743153572 +karman_re100,ppo,116,46.4,force,lower_fx,-0.006090632174164057 +karman_re100,ppo,116,46.4,force,lower_fy,-0.00142853322904557 +karman_re100,ppo,117,46.8,force,front_fx,0.0030017162207514048 +karman_re100,ppo,117,46.8,force,front_fy,-0.003737060818821192 +karman_re100,ppo,117,46.8,force,upper_fx,0.005067335441708565 +karman_re100,ppo,117,46.8,force,upper_fy,0.005643554963171482 +karman_re100,ppo,117,46.8,force,lower_fx,-0.00815754383802414 +karman_re100,ppo,117,46.8,force,lower_fy,-0.001010057283565402 +karman_re100,ppo,118,47.2,force,front_fx,0.005236846394836903 +karman_re100,ppo,118,47.2,force,front_fy,-0.0028779434505850077 +karman_re100,ppo,118,47.2,force,upper_fx,0.003920543473213911 +karman_re100,ppo,118,47.2,force,upper_fy,0.0050780498422682285 +karman_re100,ppo,118,47.2,force,lower_fx,-0.00921312253922224 +karman_re100,ppo,118,47.2,force,lower_fy,-0.0013326230691745877 +karman_re100,ppo,119,47.6,force,front_fx,0.005601346027106047 +karman_re100,ppo,119,47.6,force,front_fy,-0.0014207492349669337 +karman_re100,ppo,119,47.6,force,upper_fx,0.0027477999683469534 +karman_re100,ppo,119,47.6,force,upper_fy,0.004355854354798794 +karman_re100,ppo,119,47.6,force,lower_fx,-0.008517672307789326 +karman_re100,ppo,119,47.6,force,lower_fy,-0.0023930836468935013 +karman_re100,ppo,120,48.0,force,front_fx,0.00411016121506691 +karman_re100,ppo,120,48.0,force,front_fy,0.00015005342720542103 +karman_re100,ppo,120,48.0,force,upper_fx,0.001808722736313939 +karman_re100,ppo,120,48.0,force,upper_fy,0.0040833731181919575 +karman_re100,ppo,120,48.0,force,lower_fx,-0.006239401642233133 +karman_re100,ppo,120,48.0,force,lower_fy,-0.003890977008268237 +karman_re100,ppo,121,48.4,force,front_fx,0.0018799242097884417 +karman_re100,ppo,121,48.4,force,front_fy,0.00118350051343441 +karman_re100,ppo,121,48.4,force,upper_fx,0.0009168192627839744 +karman_re100,ppo,121,48.4,force,upper_fy,0.004236340988427401 +karman_re100,ppo,121,48.4,force,lower_fx,-0.0031342366710305214 +karman_re100,ppo,121,48.4,force,lower_fy,-0.005391272716224194 +karman_re100,ppo,122,48.8,force,front_fx,6.107497029006481e-05 +karman_re100,ppo,122,48.8,force,front_fy,0.0019596698693931103 +karman_re100,ppo,122,48.8,force,upper_fx,-0.00025901480694301426 +karman_re100,ppo,122,48.8,force,upper_fy,0.004485114011913538 +karman_re100,ppo,122,48.8,force,lower_fx,0.00012704348773695529 +karman_re100,ppo,122,48.8,force,lower_fy,-0.006144292186945677 +karman_re100,ppo,123,49.2,force,front_fx,-0.0009590315166860819 +karman_re100,ppo,123,49.2,force,front_fy,0.00259210797958076 +karman_re100,ppo,123,49.2,force,upper_fx,-0.0014464330160990357 +karman_re100,ppo,123,49.2,force,upper_fy,0.0044939410872757435 +karman_re100,ppo,123,49.2,force,lower_fx,0.0025634176563471556 +karman_re100,ppo,123,49.2,force,lower_fy,-0.005965724587440491 +karman_re100,ppo,124,49.6,force,front_fx,-0.0012356056831777096 +karman_re100,ppo,124,49.6,force,front_fy,0.0031516605522483587 +karman_re100,ppo,124,49.6,force,upper_fx,-0.0025553724262863398 +karman_re100,ppo,124,49.6,force,upper_fy,0.0039421869441866875 +karman_re100,ppo,124,49.6,force,lower_fx,0.003861789358779788 +karman_re100,ppo,124,49.6,force,lower_fy,-0.005695614032447338 +karman_re100,ppo,125,50.0,force,front_fx,-0.0006637070327997208 +karman_re100,ppo,125,50.0,force,front_fy,0.0034708536695688963 +karman_re100,ppo,125,50.0,force,upper_fx,-0.0038299579173326492 +karman_re100,ppo,125,50.0,force,upper_fy,0.003047381527721882 +karman_re100,ppo,125,50.0,force,lower_fx,0.004459527786821127 +karman_re100,ppo,125,50.0,force,lower_fy,-0.00571192242205143 +karman_re100,ppo,126,50.4,force,front_fx,0.0005974132218398154 +karman_re100,ppo,126,50.4,force,front_fy,0.003347662976011634 +karman_re100,ppo,126,50.4,force,upper_fx,-0.005085027776658535 +karman_re100,ppo,126,50.4,force,upper_fy,0.0024545525666326284 +karman_re100,ppo,126,50.4,force,lower_fx,0.00444210646674037 +karman_re100,ppo,126,50.4,force,lower_fy,-0.005670873448252678 +karman_re100,ppo,127,50.8,force,front_fx,0.0019997351337224245 +karman_re100,ppo,127,50.8,force,front_fy,0.0025749376509338617 +karman_re100,ppo,127,50.8,force,upper_fx,-0.005787400994449854 +karman_re100,ppo,127,50.8,force,upper_fy,0.0024586254730820656 +karman_re100,ppo,127,50.8,force,lower_fx,0.0037902668118476868 +karman_re100,ppo,127,50.8,force,lower_fy,-0.005442226305603981 +karman_re100,ppo,128,51.2,force,front_fx,0.0027999477460980415 +karman_re100,ppo,128,51.2,force,front_fy,0.0013180626556277275 +karman_re100,ppo,128,51.2,force,upper_fx,-0.005448454525321722 +karman_re100,ppo,128,51.2,force,upper_fy,0.0030257634352892637 +karman_re100,ppo,128,51.2,force,lower_fx,0.0026936009526252747 +karman_re100,ppo,128,51.2,force,lower_fy,-0.005082852207124233 +karman_re100,ppo,129,51.6,force,front_fx,0.002342723775655031 +karman_re100,ppo,129,51.6,force,front_fy,-0.00021359490347094834 +karman_re100,ppo,129,51.6,force,upper_fx,-0.003958985675126314 +karman_re100,ppo,129,51.6,force,upper_fy,0.004197504371404648 +karman_re100,ppo,129,51.6,force,lower_fx,0.0015076750423759222 +karman_re100,ppo,129,51.6,force,lower_fy,-0.004795031156390905 +karman_re100,ppo,130,52.0,force,front_fx,0.0010093242162838578 +karman_re100,ppo,130,52.0,force,front_fy,-0.0014303188072517514 +karman_re100,ppo,130,52.0,force,upper_fx,-0.0014929847093299031 +karman_re100,ppo,130,52.0,force,upper_fy,0.005589398555457592 +karman_re100,ppo,130,52.0,force,lower_fx,0.00037989113479852676 +karman_re100,ppo,130,52.0,force,lower_fy,-0.004626198671758175 +karman_re100,ppo,131,52.4,force,front_fx,-0.0003161068307235837 +karman_re100,ppo,131,52.4,force,front_fy,-0.0019482168136164546 +karman_re100,ppo,131,52.4,force,upper_fx,0.0012579741887748241 +karman_re100,ppo,131,52.4,force,upper_fy,0.006175529211759567 +karman_re100,ppo,131,52.4,force,lower_fx,-0.0008613946847617626 +karman_re100,ppo,131,52.4,force,lower_fy,-0.004430487751960754 +karman_re100,ppo,132,52.8,force,front_fx,-0.0009651961736381054 +karman_re100,ppo,132,52.8,force,front_fy,-0.0025076461024582386 +karman_re100,ppo,132,52.8,force,upper_fx,0.0033520159777253866 +karman_re100,ppo,132,52.8,force,upper_fy,0.005894756875932217 +karman_re100,ppo,132,52.8,force,lower_fx,-0.0022578551433980465 +karman_re100,ppo,132,52.8,force,lower_fy,-0.00410334812477231 +karman_re100,ppo,133,53.2,force,front_fx,-0.0007437475142069161 +karman_re100,ppo,133,53.2,force,front_fy,-0.0032506075222045183 +karman_re100,ppo,133,53.2,force,upper_fx,0.004643631633371115 +karman_re100,ppo,133,53.2,force,upper_fy,0.005777882412075996 +karman_re100,ppo,133,53.2,force,lower_fx,-0.0038024603854864836 +karman_re100,ppo,133,53.2,force,lower_fy,-0.0028525125235319138 +karman_re100,ppo,134,53.6,force,front_fx,0.0006369322072714567 +karman_re100,ppo,134,53.6,force,front_fy,-0.003805197076871991 +karman_re100,ppo,134,53.6,force,upper_fx,0.005350629799067974 +karman_re100,ppo,134,53.6,force,upper_fy,0.0057905446738004684 +karman_re100,ppo,134,53.6,force,lower_fx,-0.006000147666782141 +karman_re100,ppo,134,53.6,force,lower_fy,-0.00147060991730541 +karman_re100,ppo,135,54.0,force,front_fx,0.0028861453756690025 +karman_re100,ppo,135,54.0,force,front_fy,-0.0037755370140075684 +karman_re100,ppo,135,54.0,force,upper_fx,0.005140489432960749 +karman_re100,ppo,135,54.0,force,upper_fy,0.00567525764927268 +karman_re100,ppo,135,54.0,force,lower_fx,-0.00809695478528738 +karman_re100,ppo,135,54.0,force,lower_fy,-0.0010086501715704799 +karman_re100,ppo,136,54.4,force,front_fx,0.005181627813726664 +karman_re100,ppo,136,54.4,force,front_fy,-0.002963036298751831 +karman_re100,ppo,136,54.4,force,upper_fx,0.004018289968371391 +karman_re100,ppo,136,54.4,force,upper_fy,0.005123148672282696 +karman_re100,ppo,136,54.4,force,lower_fx,-0.009237315505743027 +karman_re100,ppo,136,54.4,force,lower_fy,-0.0012723708059638739 +karman_re100,ppo,137,54.8,force,front_fx,0.005676829256117344 +karman_re100,ppo,137,54.8,force,front_fy,-0.001534546259790659 +karman_re100,ppo,137,54.8,force,upper_fx,0.0028218673542141914 +karman_re100,ppo,137,54.8,force,upper_fy,0.004379500634968281 +karman_re100,ppo,137,54.8,force,lower_fx,-0.008661855012178421 +karman_re100,ppo,137,54.8,force,lower_fy,-0.0022817356511950493 +karman_re100,ppo,138,55.2,force,front_fx,0.00428219698369503 +karman_re100,ppo,138,55.2,force,front_fy,6.257901986828074e-05 +karman_re100,ppo,138,55.2,force,upper_fx,0.001872480264864862 +karman_re100,ppo,138,55.2,force,upper_fy,0.004066257271915674 +karman_re100,ppo,138,55.2,force,lower_fx,-0.006445064675062895 +karman_re100,ppo,138,55.2,force,lower_fy,-0.003761525731533766 +karman_re100,ppo,139,55.6,force,front_fx,0.002044821623712778 +karman_re100,ppo,139,55.6,force,front_fy,0.0011272041592746973 +karman_re100,ppo,139,55.6,force,upper_fx,0.0009923586621880531 +karman_re100,ppo,139,55.6,force,upper_fy,0.004205812234431505 +karman_re100,ppo,139,55.6,force,lower_fx,-0.0033831459004431963 +karman_re100,ppo,139,55.6,force,lower_fy,-0.005278949625790119 +karman_re100,ppo,140,56.0,force,front_fx,0.00017592110089026392 +karman_re100,ppo,140,56.0,force,front_fy,0.0019151538144797087 +karman_re100,ppo,140,56.0,force,upper_fx,-0.00015929993242025375 +karman_re100,ppo,140,56.0,force,upper_fy,0.004464772064238787 +karman_re100,ppo,140,56.0,force,lower_fx,-9.673586464487016e-05 +karman_re100,ppo,140,56.0,force,lower_fy,-0.006107698194682598 +karman_re100,ppo,141,56.4,force,front_fx,-0.0009206741233356297 +karman_re100,ppo,141,56.4,force,front_fy,0.0025546273682266474 +karman_re100,ppo,141,56.4,force,upper_fx,-0.0013625269057229161 +karman_re100,ppo,141,56.4,force,upper_fy,0.00451771542429924 +karman_re100,ppo,141,56.4,force,lower_fx,0.0024106267374008894 +karman_re100,ppo,141,56.4,force,lower_fy,-0.005998483393341303 +karman_re100,ppo,142,56.8,force,front_fx,-0.0012542317854240537 +karman_re100,ppo,142,56.8,force,front_fy,0.003123570466414094 +karman_re100,ppo,142,56.8,force,upper_fx,-0.002468883292749524 +karman_re100,ppo,142,56.8,force,upper_fy,0.004020265769213438 +karman_re100,ppo,142,56.8,force,lower_fx,0.003780077677220106 +karman_re100,ppo,142,56.8,force,lower_fy,-0.005724885035306215 +karman_re100,ppo,143,57.2,force,front_fx,-0.0007375538116320968 +karman_re100,ppo,143,57.2,force,front_fy,0.0034566326066851616 +karman_re100,ppo,143,57.2,force,upper_fx,-0.003718496533110738 +karman_re100,ppo,143,57.2,force,upper_fy,0.003113290062174201 +karman_re100,ppo,143,57.2,force,lower_fx,0.004422133322805166 +karman_re100,ppo,143,57.2,force,lower_fy,-0.005709807388484478 +karman_re100,ppo,144,57.6,force,front_fx,0.0005002482794225216 +karman_re100,ppo,144,57.6,force,front_fy,0.003380236914381385 +karman_re100,ppo,144,57.6,force,upper_fx,-0.004992653615772724 +karman_re100,ppo,144,57.6,force,upper_fy,0.0024855071678757668 +karman_re100,ppo,144,57.6,force,lower_fx,0.004455834161490202 +karman_re100,ppo,144,57.6,force,lower_fy,-0.005676045548170805 +karman_re100,ppo,145,58.0,force,front_fx,0.0019350667716935277 +karman_re100,ppo,145,58.0,force,front_fy,0.0026755579747259617 +karman_re100,ppo,145,58.0,force,upper_fx,-0.005745135713368654 +karman_re100,ppo,145,58.0,force,upper_fy,0.0024466293398290873 +karman_re100,ppo,145,58.0,force,lower_fx,0.003859911812469363 +karman_re100,ppo,145,58.0,force,lower_fy,-0.005471724085509777 +karman_re100,ppo,146,58.4,force,front_fx,0.0027811038307845592 +karman_re100,ppo,146,58.4,force,front_fy,0.0014117215760052204 +karman_re100,ppo,146,58.4,force,upper_fx,-0.005488955415785313 +karman_re100,ppo,146,58.4,force,upper_fy,0.00296916626393795 +karman_re100,ppo,146,58.4,force,lower_fx,0.0027810411993414164 +karman_re100,ppo,146,58.4,force,lower_fy,-0.005116111133247614 +karman_re100,ppo,147,58.8,force,front_fx,0.0024122667964547873 +karman_re100,ppo,147,58.8,force,front_fy,-0.00011277981684543192 +karman_re100,ppo,147,58.8,force,upper_fx,-0.00408458337187767 +karman_re100,ppo,147,58.8,force,upper_fy,0.004095965530723333 +karman_re100,ppo,147,58.8,force,lower_fx,0.0015920200385153294 +karman_re100,ppo,147,58.8,force,lower_fy,-0.004813546314835548 +karman_re100,ppo,148,59.2,force,front_fx,0.0011127579491585493 +karman_re100,ppo,148,59.2,force,front_fy,-0.0013681910932064056 +karman_re100,ppo,148,59.2,force,upper_fx,-0.0016970138531178236 +karman_re100,ppo,148,59.2,force,upper_fy,0.005487286485731602 +karman_re100,ppo,148,59.2,force,lower_fx,0.0004574960039462894 +karman_re100,ppo,148,59.2,force,lower_fy,-0.00463468162342906 +karman_re100,ppo,149,59.6,force,front_fx,-0.0002440012467559427 +karman_re100,ppo,149,59.6,force,front_fy,-0.001924957730807364 +karman_re100,ppo,149,59.6,force,upper_fx,0.0010557761415839195 +karman_re100,ppo,149,59.6,force,upper_fy,0.006156550720334053 +karman_re100,ppo,149,59.6,force,lower_fx,-0.0007599905366078019 +karman_re100,ppo,149,59.6,force,lower_fy,-0.004448001738637686 +karman_re100,ppo,150,60.0,force,front_fx,-0.0009418409899808466 +karman_re100,ppo,150,60.0,force,front_fy,-0.002458962146192789 +karman_re100,ppo,150,60.0,force,upper_fx,0.0032233232632279396 +karman_re100,ppo,150,60.0,force,upper_fy,0.00590687757357955 +karman_re100,ppo,150,60.0,force,lower_fx,-0.002152262255549431 +karman_re100,ppo,150,60.0,force,lower_fy,-0.0041446383111178875 +karman_re100,ppo,151,60.4,force,front_fx,-0.0007903253426775336 +karman_re100,ppo,151,60.4,force,front_fy,-0.0031985361129045486 +karman_re100,ppo,151,60.4,force,upper_fx,0.004553278908133507 +karman_re100,ppo,151,60.4,force,upper_fy,0.005757143720984459 +karman_re100,ppo,151,60.4,force,lower_fx,-0.0036521032452583313 +karman_re100,ppo,151,60.4,force,lower_fy,-0.002964015817269683 +karman_re100,ppo,152,60.8,force,front_fx,0.0004628569877240807 +karman_re100,ppo,152,60.8,force,front_fy,-0.0037633543834090233 +karman_re100,ppo,152,60.8,force,upper_fx,0.00531051866710186 +karman_re100,ppo,152,60.8,force,upper_fy,0.005792134907096624 +karman_re100,ppo,152,60.8,force,lower_fx,-0.005811720620840788 +karman_re100,ppo,152,60.8,force,lower_fy,-0.0015484023606404662 +karman_re100,ppo,153,61.2,force,front_fx,0.0026781451888382435 +karman_re100,ppo,153,61.2,force,front_fy,-0.003802762134000659 +karman_re100,ppo,153,61.2,force,upper_fx,0.0051952083595097065 +karman_re100,ppo,153,61.2,force,upper_fy,0.005696617998182774 +karman_re100,ppo,153,61.2,force,lower_fx,-0.007933976128697395 +karman_re100,ppo,153,61.2,force,lower_fy,-0.0010224785655736923 +karman_re100,ppo,154,61.6,force,front_fx,0.005047851707786322 +karman_re100,ppo,154,61.6,force,front_fy,-0.003041696036234498 +karman_re100,ppo,154,61.6,force,upper_fx,0.004105009138584137 +karman_re100,ppo,154,61.6,force,upper_fy,0.005178694613277912 +karman_re100,ppo,154,61.6,force,lower_fx,-0.009187429212033749 +karman_re100,ppo,154,61.6,force,lower_fy,-0.0012186927488073707 +karman_re100,ppo,155,62.0,force,front_fx,0.005692616105079651 +karman_re100,ppo,155,62.0,force,front_fy,-0.0016416384605690837 +karman_re100,ppo,155,62.0,force,upper_fx,0.00289729330688715 +karman_re100,ppo,155,62.0,force,upper_fy,0.0044236378744244576 +karman_re100,ppo,155,62.0,force,lower_fx,-0.008759330958127975 +karman_re100,ppo,155,62.0,force,lower_fy,-0.0021794079802930355 +karman_re100,ppo,156,62.4,force,front_fx,0.004410811234265566 +karman_re100,ppo,156,62.4,force,front_fy,-3.0216455343179405e-05 +karman_re100,ppo,156,62.4,force,upper_fx,0.001937174703925848 +karman_re100,ppo,156,62.4,force,upper_fy,0.004074805416166782 +karman_re100,ppo,156,62.4,force,lower_fx,-0.006646158639341593 +karman_re100,ppo,156,62.4,force,lower_fy,-0.0036415723152458668 +karman_re100,ppo,157,62.8,force,front_fx,0.0022000225726515055 +karman_re100,ppo,157,62.8,force,front_fy,0.001076467800885439 +karman_re100,ppo,157,62.8,force,upper_fx,0.0010659985709935427 +karman_re100,ppo,157,62.8,force,upper_fy,0.004200302995741367 +karman_re100,ppo,157,62.8,force,lower_fx,-0.0036292339209467173 +karman_re100,ppo,157,62.8,force,lower_fy,-0.005192258860915899 +karman_re100,ppo,158,63.2,force,front_fx,0.00027804801356978714 +karman_re100,ppo,158,63.2,force,front_fy,0.0018639725167304277 +karman_re100,ppo,158,63.2,force,upper_fx,-7.105910481186584e-05 +karman_re100,ppo,158,63.2,force,upper_fy,0.0044542476534843445 +karman_re100,ppo,158,63.2,force,lower_fx,-0.0003205527609679848 +karman_re100,ppo,158,63.2,force,lower_fy,-0.00609362730756402 +karman_re100,ppo,159,63.6,force,front_fx,-0.0008740724879316986 +karman_re100,ppo,159,63.6,force,front_fy,0.002511670347303152 +karman_re100,ppo,159,63.6,force,upper_fx,-0.0012803823919966817 +karman_re100,ppo,159,63.6,force,upper_fy,0.004528649616986513 +karman_re100,ppo,159,63.6,force,lower_fx,0.002272031269967556 +karman_re100,ppo,159,63.6,force,lower_fy,-0.006015104707330465 +karman_re100,ppo,160,64.0,force,front_fx,-0.0012537776492536068 +karman_re100,ppo,160,64.0,force,front_fy,0.00308468216098845 +karman_re100,ppo,160,64.0,force,upper_fx,-0.0023861010558903217 +karman_re100,ppo,160,64.0,force,upper_fy,0.004064646083861589 +karman_re100,ppo,160,64.0,force,lower_fx,0.0037084040232002735 +karman_re100,ppo,160,64.0,force,lower_fy,-0.005726016126573086 +karman_re100,ppo,161,64.4,force,front_fx,-0.0008007844444364309 +karman_re100,ppo,161,64.4,force,front_fy,0.0034461438190191984 +karman_re100,ppo,161,64.4,force,upper_fx,-0.003624742617830634 +karman_re100,ppo,161,64.4,force,upper_fy,0.003167903982102871 +karman_re100,ppo,161,64.4,force,lower_fx,0.004395904019474983 +karman_re100,ppo,161,64.4,force,lower_fy,-0.0056976680643856525 +karman_re100,ppo,162,64.8,force,front_fx,0.0003940811147913337 +karman_re100,ppo,162,64.8,force,front_fy,0.003399135544896126 +karman_re100,ppo,162,64.8,force,upper_fx,-0.004914699587970972 +karman_re100,ppo,162,64.8,force,upper_fy,0.0025067583192139864 +karman_re100,ppo,162,64.8,force,lower_fx,0.004478047601878643 +karman_re100,ppo,162,64.8,force,lower_fy,-0.005682691931724548 +karman_re100,ppo,163,65.2,force,front_fx,0.0018402949208393693 +karman_re100,ppo,163,65.2,force,front_fy,0.002737220609560609 +karman_re100,ppo,163,65.2,force,upper_fx,-0.005734662525355816 +karman_re100,ppo,163,65.2,force,upper_fy,0.0024384947028011084 +karman_re100,ppo,163,65.2,force,lower_fx,0.003904049750417471 +karman_re100,ppo,163,65.2,force,lower_fy,-0.005489936098456383 +karman_re100,ppo,164,65.6,force,front_fx,0.002758781658485532 +karman_re100,ppo,164,65.6,force,front_fy,0.0015141419135034084 +karman_re100,ppo,164,65.6,force,upper_fx,-0.005553149618208408 +karman_re100,ppo,164,65.6,force,upper_fy,0.0029222911689430475 +karman_re100,ppo,164,65.6,force,lower_fx,0.002857186598703265 +karman_re100,ppo,164,65.6,force,lower_fy,-0.005144761875271797 +karman_re100,ppo,165,66.0,force,front_fx,0.00246573518961668 +karman_re100,ppo,165,66.0,force,front_fy,-1.2621841051441152e-05 +karman_re100,ppo,165,66.0,force,upper_fx,-0.00422811321914196 +karman_re100,ppo,165,66.0,force,upper_fy,0.004004793241620064 +karman_re100,ppo,165,66.0,force,lower_fx,0.001667864271439612 +karman_re100,ppo,165,66.0,force,lower_fy,-0.004831855185329914 +karman_re100,ppo,166,66.4,force,front_fx,0.0012161025078967214 +karman_re100,ppo,166,66.4,force,front_fy,-0.0013011338887736201 +karman_re100,ppo,166,66.4,force,upper_fx,-0.001879573450423777 +karman_re100,ppo,166,66.4,force,upper_fy,0.005414159502834082 +karman_re100,ppo,166,66.4,force,lower_fx,0.0005424784030765295 +karman_re100,ppo,166,66.4,force,lower_fy,-0.004643733147531748 +karman_re100,ppo,167,66.8,force,front_fx,-0.00017304760694969445 +karman_re100,ppo,167,66.8,force,front_fy,-0.001900013885460794 +karman_re100,ppo,167,66.8,force,upper_fx,0.0008790860301814973 +karman_re100,ppo,167,66.8,force,upper_fy,0.006151970475912094 +karman_re100,ppo,167,66.8,force,lower_fx,-0.000664928404148668 +karman_re100,ppo,167,66.8,force,lower_fy,-0.004462698940187693 +karman_re100,ppo,168,67.2,force,front_fx,-0.0009189790580421686 +karman_re100,ppo,168,67.2,force,front_fy,-0.002409751061350107 +karman_re100,ppo,168,67.2,force,upper_fx,0.003110278630629182 +karman_re100,ppo,168,67.2,force,upper_fy,0.005947466008365154 +karman_re100,ppo,168,67.2,force,lower_fx,-0.002053653821349144 +karman_re100,ppo,168,67.2,force,lower_fy,-0.004193280823528767 +karman_re100,ppo,169,67.6,force,front_fx,-0.0008511083433404565 +karman_re100,ppo,169,67.6,force,front_fy,-0.0031482442282140255 +karman_re100,ppo,169,67.6,force,upper_fx,0.004477187059819698 +karman_re100,ppo,169,67.6,force,upper_fy,0.005771187599748373 +karman_re100,ppo,169,67.6,force,lower_fx,-0.0035233628004789352 +karman_re100,ppo,169,67.6,force,lower_fy,-0.003085791366174817 +karman_re100,ppo,170,68.0,force,front_fx,0.0003527132503222674 +karman_re100,ppo,170,68.0,force,front_fy,-0.0037388778291642666 +karman_re100,ppo,170,68.0,force,upper_fx,0.005280390847474337 +karman_re100,ppo,170,68.0,force,upper_fy,0.005800453945994377 +karman_re100,ppo,170,68.0,force,lower_fx,-0.005648212507367134 +karman_re100,ppo,170,68.0,force,lower_fy,-0.0016230312176048756 +karman_re100,ppo,171,68.4,force,front_fx,0.0025092842988669872 +karman_re100,ppo,171,68.4,force,front_fy,-0.0038316152058541775 +karman_re100,ppo,171,68.4,force,upper_fx,0.005234179552644491 +karman_re100,ppo,171,68.4,force,upper_fy,0.005712114740163088 +karman_re100,ppo,171,68.4,force,lower_fx,-0.007830026559531689 +karman_re100,ppo,171,68.4,force,lower_fy,-0.0010244986042380333 +karman_re100,ppo,172,68.8,force,front_fx,0.004918577615171671 +karman_re100,ppo,172,68.8,force,front_fy,-0.003112220671027899 +karman_re100,ppo,172,68.8,force,upper_fx,0.004190507344901562 +karman_re100,ppo,172,68.8,force,upper_fy,0.005223858170211315 +karman_re100,ppo,172,68.8,force,lower_fx,-0.009149037301540375 +karman_re100,ppo,172,68.8,force,lower_fy,-0.0011815903708338737 +karman_re100,ppo,173,69.2,force,front_fx,0.005735775921493769 +karman_re100,ppo,173,69.2,force,front_fy,-0.0017185424221679568 +karman_re100,ppo,173,69.2,force,upper_fx,0.0029709385707974434 +karman_re100,ppo,173,69.2,force,upper_fy,0.004465596750378609 +karman_re100,ppo,173,69.2,force,lower_fx,-0.008839611895382404 +karman_re100,ppo,173,69.2,force,lower_fy,-0.0020904424600303173 +karman_re100,ppo,174,69.6,force,front_fx,0.0045429496094584465 +karman_re100,ppo,174,69.6,force,front_fy,-0.00013342624879442155 +karman_re100,ppo,174,69.6,force,upper_fx,0.0019932000432163477 +karman_re100,ppo,174,69.6,force,upper_fy,0.004080186598002911 +karman_re100,ppo,174,69.6,force,lower_fx,-0.006825435906648636 +karman_re100,ppo,174,69.6,force,lower_fy,-0.003539895173162222 +karman_re100,ppo,175,70.0,force,front_fx,0.0023407854605466127 +karman_re100,ppo,175,70.0,force,front_fy,0.0010124946711584926 +karman_re100,ppo,175,70.0,force,upper_fx,0.0011278390884399414 +karman_re100,ppo,175,70.0,force,upper_fy,0.004181643947958946 +karman_re100,ppo,175,70.0,force,lower_fx,-0.0038260803557932377 +karman_re100,ppo,175,70.0,force,lower_fy,-0.005084020085632801 +karman_re100,ppo,176,70.4,force,front_fx,0.0003755033831112087 +karman_re100,ppo,176,70.4,force,front_fy,0.0018116625724360347 +karman_re100,ppo,176,70.4,force,upper_fx,8.58990188135067e-06 +karman_re100,ppo,176,70.4,force,upper_fy,0.004434326663613319 +karman_re100,ppo,176,70.4,force,lower_fx,-0.0005317303002811968 +karman_re100,ppo,176,70.4,force,lower_fy,-0.00606950931251049 +karman_re100,ppo,177,70.8,force,front_fx,-0.0008305507362820208 +karman_re100,ppo,177,70.8,force,front_fy,0.002474164590239525 +karman_re100,ppo,177,70.8,force,upper_fx,-0.0012148760724812746 +karman_re100,ppo,177,70.8,force,upper_fy,0.004530389793217182 +karman_re100,ppo,177,70.8,force,lower_fx,0.002137072617188096 +karman_re100,ppo,177,70.8,force,lower_fy,-0.006037685088813305 +karman_re100,ppo,178,71.2,force,front_fx,-0.0012540466850623488 +karman_re100,ppo,178,71.2,force,front_fy,0.003048853250220418 +karman_re100,ppo,178,71.2,force,upper_fx,-0.002314824378117919 +karman_re100,ppo,178,71.2,force,upper_fy,0.004108055494725704 +karman_re100,ppo,178,71.2,force,lower_fx,0.0036480946000665426 +karman_re100,ppo,178,71.2,force,lower_fy,-0.005735347047448158 +karman_re100,ppo,179,71.6,force,front_fx,-0.0008434352348558605 +karman_re100,ppo,179,71.6,force,front_fy,0.003437523264437914 +karman_re100,ppo,179,71.6,force,upper_fx,-0.003543171798810363 +karman_re100,ppo,179,71.6,force,upper_fy,0.0032274932600557804 +karman_re100,ppo,179,71.6,force,lower_fx,0.0043760035187006 +karman_re100,ppo,179,71.6,force,lower_fy,-0.005695149302482605 +karman_re100,ppo,180,72.0,force,front_fx,0.00030529758078046143 +karman_re100,ppo,180,72.0,force,front_fy,0.0034237366635352373 +karman_re100,ppo,180,72.0,force,upper_fx,-0.0048417942598462105 +karman_re100,ppo,180,72.0,force,upper_fy,0.0025367536582052708 +karman_re100,ppo,180,72.0,force,lower_fx,0.004499570932239294 +karman_re100,ppo,180,72.0,force,lower_fy,-0.005694157909601927 +karman_re100,ppo,181,72.4,force,front_fx,0.0017489693127572536 +karman_re100,ppo,181,72.4,force,front_fy,0.0028073075227439404 +karman_re100,ppo,181,72.4,force,upper_fx,-0.005700366571545601 +karman_re100,ppo,181,72.4,force,upper_fy,0.0024235574528574944 +karman_re100,ppo,181,72.4,force,lower_fx,0.003976273816078901 +karman_re100,ppo,181,72.4,force,lower_fy,-0.005513548851013184 +karman_re100,ppo,182,72.8,force,front_fx,0.0027389260940253735 +karman_re100,ppo,182,72.8,force,front_fy,0.001617190195247531 +karman_re100,ppo,182,72.8,force,upper_fx,-0.005615634378045797 +karman_re100,ppo,182,72.8,force,upper_fy,0.002863639499992132 +karman_re100,ppo,182,72.8,force,lower_fx,0.0029369154945015907 +karman_re100,ppo,182,72.8,force,lower_fy,-0.005167403258383274 +karman_re100,ppo,183,73.2,force,front_fx,0.0025333359371870756 +karman_re100,ppo,183,73.2,force,front_fy,9.497337305219844e-05 +karman_re100,ppo,183,73.2,force,upper_fx,-0.004355282988399267 +karman_re100,ppo,183,73.2,force,upper_fy,0.003908864222466946 +karman_re100,ppo,183,73.2,force,lower_fx,0.0017490028403699398 +karman_re100,ppo,183,73.2,force,lower_fy,-0.004851309582591057 +karman_re100,ppo,184,73.6,force,front_fx,0.0013203760609030724 +karman_re100,ppo,184,73.6,force,front_fy,-0.0012357216328382492 +karman_re100,ppo,184,73.6,force,upper_fx,-0.0020728767849504948 +karman_re100,ppo,184,73.6,force,upper_fy,0.0053187161684036255 +karman_re100,ppo,184,73.6,force,lower_fx,0.000609441427513957 +karman_re100,ppo,184,73.6,force,lower_fy,-0.00465205917134881 +karman_re100,ppo,185,74.0,force,front_fx,-8.272606646642089e-05 +karman_re100,ppo,185,74.0,force,front_fy,-0.001874445821158588 +karman_re100,ppo,185,74.0,force,upper_fx,0.0007022960344329476 +karman_re100,ppo,185,74.0,force,upper_fy,0.006146235857158899 +karman_re100,ppo,185,74.0,force,lower_fx,-0.0005706474767066538 +karman_re100,ppo,185,74.0,force,lower_fy,-0.0044813258573412895 +karman_re100,ppo,186,74.4,force,front_fx,-0.000897994264960289 +karman_re100,ppo,186,74.4,force,front_fy,-0.002357801888138056 +karman_re100,ppo,186,74.4,force,upper_fx,0.0029840192291885614 +karman_re100,ppo,186,74.4,force,upper_fy,0.005974265746772289 +karman_re100,ppo,186,74.4,force,lower_fx,-0.0019598619546741247 +karman_re100,ppo,186,74.4,force,lower_fy,-0.004226436838507652 +karman_re100,ppo,187,74.8,force,front_fx,-0.0008824015385471284 +karman_re100,ppo,187,74.8,force,front_fy,-0.0030973299872130156 +karman_re100,ppo,187,74.8,force,upper_fx,0.004400909412652254 +karman_re100,ppo,187,74.8,force,upper_fy,0.005776537116616964 +karman_re100,ppo,187,74.8,force,lower_fx,-0.003407444106414914 +karman_re100,ppo,187,74.8,force,lower_fy,-0.003196764038875699 +karman_re100,ppo,188,75.2,force,front_fx,0.00022592410095967352 +karman_re100,ppo,188,75.2,force,front_fy,-0.0037043369375169277 +karman_re100,ppo,188,75.2,force,upper_fx,0.005248627159744501 +karman_re100,ppo,188,75.2,force,upper_fy,0.005803282372653484 +karman_re100,ppo,188,75.2,force,lower_fx,-0.005494801793247461 +karman_re100,ppo,188,75.2,force,lower_fy,-0.0016971742734313011 +karman_re100,ppo,189,75.6,force,front_fx,0.0023443903774023056 +karman_re100,ppo,189,75.6,force,front_fy,-0.0038517306093126535 +karman_re100,ppo,189,75.6,force,upper_fx,0.005269602406769991 +karman_re100,ppo,189,75.6,force,upper_fy,0.005717510357499123 +karman_re100,ppo,189,75.6,force,lower_fx,-0.0076904259622097015 +karman_re100,ppo,189,75.6,force,lower_fy,-0.0010327716590836644 +karman_re100,ppo,190,76.0,force,front_fx,0.004802836570888758 +karman_re100,ppo,190,76.0,force,front_fy,-0.003186498535797 +karman_re100,ppo,190,76.0,force,upper_fx,0.00426519988104701 +karman_re100,ppo,190,76.0,force,upper_fy,0.005205817986279726 +karman_re100,ppo,190,76.0,force,lower_fx,-0.009138467721641064 +karman_re100,ppo,190,76.0,force,lower_fy,-0.0011104433797299862 +karman_re100,ppo,191,76.4,force,front_fx,0.00574492197483778 +karman_re100,ppo,191,76.4,force,front_fy,-0.0018671073485165834 +karman_re100,ppo,191,76.4,force,upper_fx,0.0030527643393725157 +karman_re100,ppo,191,76.4,force,upper_fy,0.004511539358645678 +karman_re100,ppo,191,76.4,force,lower_fx,-0.008918129839003086 +karman_re100,ppo,191,76.4,force,lower_fy,-0.0020148109178990126 +karman_re100,ppo,192,76.8,force,front_fx,0.004669183399528265 +karman_re100,ppo,192,76.8,force,front_fy,-0.00023457805218640715 +karman_re100,ppo,192,76.8,force,upper_fx,0.0020575427915900946 +karman_re100,ppo,192,76.8,force,upper_fy,0.004089432768523693 +karman_re100,ppo,192,76.8,force,lower_fx,-0.006991171278059483 +karman_re100,ppo,192,76.8,force,lower_fy,-0.0034309702459722757 +karman_re100,ppo,193,77.2,force,front_fx,0.0024996893480420113 +karman_re100,ppo,193,77.2,force,front_fy,0.0009540271712467074 +karman_re100,ppo,193,77.2,force,upper_fx,0.0011847029672935605 +karman_re100,ppo,193,77.2,force,upper_fy,0.004162905737757683 +karman_re100,ppo,193,77.2,force,lower_fx,-0.0040605817921459675 +karman_re100,ppo,193,77.2,force,lower_fy,-0.0049895127303898335 +karman_re100,ppo,194,77.6,force,front_fx,0.00048784553655423224 +karman_re100,ppo,194,77.6,force,front_fy,0.0017611798830330372 +karman_re100,ppo,194,77.6,force,upper_fx,9.618809417588636e-05 +karman_re100,ppo,194,77.6,force,upper_fy,0.00441545806825161 +karman_re100,ppo,194,77.6,force,lower_fx,-0.0007523455424234271 +karman_re100,ppo,194,77.6,force,lower_fy,-0.006027074530720711 +karman_re100,ppo,195,78.0,force,front_fx,-0.0007672843057662249 +karman_re100,ppo,195,78.0,force,front_fy,0.002433632966130972 +karman_re100,ppo,195,78.0,force,upper_fx,-0.0011318095494061708 +karman_re100,ppo,195,78.0,force,upper_fy,0.004535769112408161 +karman_re100,ppo,195,78.0,force,lower_fx,0.0019888700917363167 +karman_re100,ppo,195,78.0,force,lower_fy,-0.00605458440259099 +karman_re100,ppo,196,78.4,force,front_fx,-0.0012467321939766407 +karman_re100,ppo,196,78.4,force,front_fy,0.003014263231307268 +karman_re100,ppo,196,78.4,force,upper_fx,-0.0022302407305687666 +karman_re100,ppo,196,78.4,force,upper_fy,0.0041644214652478695 +karman_re100,ppo,196,78.4,force,lower_fx,0.0035739357117563486 +karman_re100,ppo,196,78.4,force,lower_fy,-0.005751070566475391 +karman_re100,ppo,197,78.8,force,front_fx,-0.0009126344230026007 +karman_re100,ppo,197,78.8,force,front_fy,0.0034208064898848534 +karman_re100,ppo,197,78.8,force,upper_fx,-0.003447748487815261 +karman_re100,ppo,197,78.8,force,upper_fy,0.003297025803476572 +karman_re100,ppo,197,78.8,force,lower_fx,0.004339692182838917 +karman_re100,ppo,197,78.8,force,lower_fy,-0.005695051979273558 +karman_re100,ppo,198,79.2,force,front_fx,0.00023975806834641844 +karman_re100,ppo,198,79.2,force,front_fy,0.003443965222686529 +karman_re100,ppo,198,79.2,force,upper_fx,-0.004804504103958607 +karman_re100,ppo,198,79.2,force,upper_fy,0.0024977978318929672 +karman_re100,ppo,198,79.2,force,lower_fx,0.004479377064853907 +karman_re100,ppo,198,79.2,force,lower_fy,-0.005598029121756554 +karman_re100,ppo,199,79.6,force,front_fx,0.0016547845443710685 +karman_re100,ppo,199,79.6,force,front_fy,0.0028698048554360867 +karman_re100,ppo,199,79.6,force,upper_fx,-0.005663212388753891 +karman_re100,ppo,199,79.6,force,upper_fy,0.002407326363027096 +karman_re100,ppo,199,79.6,force,lower_fx,0.004027129616588354 +karman_re100,ppo,199,79.6,force,lower_fy,-0.005527126137167215 +karman_re100,ppo,0,0.0,alpha,front,1.3321279287338257 +karman_re100,ppo,0,0.0,alpha,upper,-7.146883964538574 +karman_re100,ppo,0,0.0,alpha,lower,2.303671360015869 +karman_re100,ppo,1,0.4,alpha,front,1.5221006870269775 +karman_re100,ppo,1,0.4,alpha,upper,-6.257075786590576 +karman_re100,ppo,1,0.4,alpha,lower,2.3259525299072266 +karman_re100,ppo,2,0.8,alpha,front,1.3575665950775146 +karman_re100,ppo,2,0.8,alpha,upper,-5.207825660705566 +karman_re100,ppo,2,0.8,alpha,lower,2.1182103157043457 +karman_re100,ppo,3,1.2,alpha,front,1.3112810850143433 +karman_re100,ppo,3,1.2,alpha,upper,-4.715657711029053 +karman_re100,ppo,3,1.2,alpha,lower,1.8277181386947632 +karman_re100,ppo,4,1.6,alpha,front,1.0120980739593506 +karman_re100,ppo,4,1.6,alpha,upper,-3.534660577774048 +karman_re100,ppo,4,1.6,alpha,lower,2.9372262954711914 +karman_re100,ppo,5,2.0,alpha,front,0.6309263706207275 +karman_re100,ppo,5,2.0,alpha,upper,-2.352982997894287 +karman_re100,ppo,5,2.0,alpha,lower,5.559906959533691 +karman_re100,ppo,6,2.4,alpha,front,0.13141797482967377 +karman_re100,ppo,6,2.4,alpha,upper,-2.4106335639953613 +karman_re100,ppo,6,2.4,alpha,lower,7.03110408782959 +karman_re100,ppo,7,2.8,alpha,front,-0.34950539469718933 +karman_re100,ppo,7,2.8,alpha,upper,-2.791900634765625 +karman_re100,ppo,7,2.8,alpha,lower,7.2478108406066895 +karman_re100,ppo,8,3.2,alpha,front,-0.8866881132125854 +karman_re100,ppo,8,3.2,alpha,upper,-2.4229443073272705 +karman_re100,ppo,8,3.2,alpha,lower,7.149287700653076 +karman_re100,ppo,9,3.6,alpha,front,-1.4705945253372192 +karman_re100,ppo,9,3.6,alpha,upper,-1.8637278079986572 +karman_re100,ppo,9,3.6,alpha,lower,6.47968864440918 +karman_re100,ppo,10,4.0,alpha,front,-1.657439947128296 +karman_re100,ppo,10,4.0,alpha,upper,-1.7638616561889648 +karman_re100,ppo,10,4.0,alpha,lower,5.755279541015625 +karman_re100,ppo,11,4.4,alpha,front,-1.4349493980407715 +karman_re100,ppo,11,4.4,alpha,upper,-2.1529524326324463 +karman_re100,ppo,11,4.4,alpha,lower,5.309651851654053 +karman_re100,ppo,12,4.8,alpha,front,-1.096930742263794 +karman_re100,ppo,12,4.8,alpha,upper,-3.2125113010406494 +karman_re100,ppo,12,4.8,alpha,lower,5.004480361938477 +karman_re100,ppo,13,5.2,alpha,front,-0.8209068775177002 +karman_re100,ppo,13,5.2,alpha,upper,-4.780428886413574 +karman_re100,ppo,13,5.2,alpha,lower,4.332826137542725 +karman_re100,ppo,14,5.6,alpha,front,-0.5146970748901367 +karman_re100,ppo,14,5.6,alpha,upper,-6.13303279876709 +karman_re100,ppo,14,5.6,alpha,lower,3.391568183898926 +karman_re100,ppo,15,6.0,alpha,front,-0.03636343777179718 +karman_re100,ppo,15,6.0,alpha,upper,-6.7743096351623535 +karman_re100,ppo,15,6.0,alpha,lower,2.91085147857666 +karman_re100,ppo,16,6.4,alpha,front,0.5091121196746826 +karman_re100,ppo,16,6.4,alpha,upper,-7.086981773376465 +karman_re100,ppo,16,6.4,alpha,lower,2.5878896713256836 +karman_re100,ppo,17,6.8,alpha,front,1.1869723796844482 +karman_re100,ppo,17,6.8,alpha,upper,-7.256282806396484 +karman_re100,ppo,17,6.8,alpha,lower,2.229677677154541 +karman_re100,ppo,18,7.2,alpha,front,1.8511027097702026 +karman_re100,ppo,18,7.2,alpha,upper,-6.903808116912842 +karman_re100,ppo,18,7.2,alpha,lower,2.026543140411377 +karman_re100,ppo,19,7.6,alpha,front,2.0860366821289062 +karman_re100,ppo,19,7.6,alpha,upper,-5.9846391677856445 +karman_re100,ppo,19,7.6,alpha,lower,1.777233362197876 +karman_re100,ppo,20,8.0,alpha,front,1.770702838897705 +karman_re100,ppo,20,8.0,alpha,upper,-4.900747299194336 +karman_re100,ppo,20,8.0,alpha,lower,1.5767778158187866 +karman_re100,ppo,21,8.4,alpha,front,1.1937004327774048 +karman_re100,ppo,21,8.4,alpha,upper,-3.9601614475250244 +karman_re100,ppo,21,8.4,alpha,lower,2.063188076019287 +karman_re100,ppo,22,8.8,alpha,front,0.74370276927948 +karman_re100,ppo,22,8.8,alpha,upper,-3.0977869033813477 +karman_re100,ppo,22,8.8,alpha,lower,4.019021034240723 +karman_re100,ppo,23,9.2,alpha,front,0.3608790934085846 +karman_re100,ppo,23,9.2,alpha,upper,-2.568655490875244 +karman_re100,ppo,23,9.2,alpha,lower,6.627094745635986 +karman_re100,ppo,24,9.6,alpha,front,-0.2614800035953522 +karman_re100,ppo,24,9.6,alpha,upper,-2.679436683654785 +karman_re100,ppo,24,9.6,alpha,lower,7.695155620574951 +karman_re100,ppo,25,10.0,alpha,front,-0.9540444612503052 +karman_re100,ppo,25,10.0,alpha,upper,-2.6841516494750977 +karman_re100,ppo,25,10.0,alpha,lower,7.469958782196045 +karman_re100,ppo,26,10.4,alpha,front,-1.7347157001495361 +karman_re100,ppo,26,10.4,alpha,upper,-1.9936904907226562 +karman_re100,ppo,26,10.4,alpha,lower,6.700107097625732 +karman_re100,ppo,27,10.8,alpha,front,-2.3594110012054443 +karman_re100,ppo,27,10.8,alpha,upper,-1.2807016372680664 +karman_re100,ppo,27,10.8,alpha,lower,5.560535430908203 +karman_re100,ppo,28,11.2,alpha,front,-2.4206035137176514 +karman_re100,ppo,28,11.2,alpha,upper,-1.067385196685791 +karman_re100,ppo,28,11.2,alpha,lower,4.70844841003418 +karman_re100,ppo,29,11.6,alpha,front,-1.9783029556274414 +karman_re100,ppo,29,11.6,alpha,upper,-1.616365909576416 +karman_re100,ppo,29,11.6,alpha,lower,4.405108451843262 +karman_re100,ppo,30,12.0,alpha,front,-1.4344903230667114 +karman_re100,ppo,30,12.0,alpha,upper,-2.983045816421509 +karman_re100,ppo,30,12.0,alpha,lower,4.351139545440674 +karman_re100,ppo,31,12.4,alpha,front,-1.1933469772338867 +karman_re100,ppo,31,12.4,alpha,upper,-4.668217182159424 +karman_re100,ppo,31,12.4,alpha,lower,3.856999397277832 +karman_re100,ppo,32,12.8,alpha,front,-0.9714488983154297 +karman_re100,ppo,32,12.8,alpha,upper,-6.055218696594238 +karman_re100,ppo,32,12.8,alpha,lower,3.1111814975738525 +karman_re100,ppo,33,13.2,alpha,front,-0.45377376675605774 +karman_re100,ppo,33,13.2,alpha,upper,-6.731426239013672 +karman_re100,ppo,33,13.2,alpha,lower,2.8428165912628174 +karman_re100,ppo,34,13.6,alpha,front,0.13490352034568787 +karman_re100,ppo,34,13.6,alpha,upper,-6.938529014587402 +karman_re100,ppo,34,13.6,alpha,lower,2.8396849632263184 +karman_re100,ppo,35,14.0,alpha,front,0.7131134271621704 +karman_re100,ppo,35,14.0,alpha,upper,-7.135851860046387 +karman_re100,ppo,35,14.0,alpha,lower,2.6107852458953857 +karman_re100,ppo,36,14.4,alpha,front,1.3420194387435913 +karman_re100,ppo,36,14.4,alpha,upper,-7.095191955566406 +karman_re100,ppo,36,14.4,alpha,lower,2.3720786571502686 +karman_re100,ppo,37,14.8,alpha,front,1.762679100036621 +karman_re100,ppo,37,14.8,alpha,upper,-6.5337815284729 +karman_re100,ppo,37,14.8,alpha,lower,2.181612014770508 +karman_re100,ppo,38,15.2,alpha,front,1.747351884841919 +karman_re100,ppo,38,15.2,alpha,upper,-5.525385856628418 +karman_re100,ppo,38,15.2,alpha,lower,1.9741939306259155 +karman_re100,ppo,39,15.6,alpha,front,1.4191464185714722 +karman_re100,ppo,39,15.6,alpha,upper,-4.417978286743164 +karman_re100,ppo,39,15.6,alpha,lower,2.2044005393981934 +karman_re100,ppo,40,16.0,alpha,front,1.151934027671814 +karman_re100,ppo,40,16.0,alpha,upper,-3.351814031600952 +karman_re100,ppo,40,16.0,alpha,lower,3.8367297649383545 +karman_re100,ppo,41,16.4,alpha,front,0.8500692844390869 +karman_re100,ppo,41,16.4,alpha,upper,-2.672001838684082 +karman_re100,ppo,41,16.4,alpha,lower,6.329621315002441 +karman_re100,ppo,42,16.8,alpha,front,0.19364075362682343 +karman_re100,ppo,42,16.8,alpha,upper,-2.7818567752838135 +karman_re100,ppo,42,16.8,alpha,lower,7.501190185546875 +karman_re100,ppo,43,17.2,alpha,front,-0.5262085795402527 +karman_re100,ppo,43,17.2,alpha,upper,-2.9808509349823 +karman_re100,ppo,43,17.2,alpha,lower,7.4451003074646 +karman_re100,ppo,44,17.6,alpha,front,-1.3334007263183594 +karman_re100,ppo,44,17.6,alpha,upper,-2.442291736602783 +karman_re100,ppo,44,17.6,alpha,lower,6.927313804626465 +karman_re100,ppo,45,18.0,alpha,front,-2.154155731201172 +karman_re100,ppo,45,18.0,alpha,upper,-1.6899542808532715 +karman_re100,ppo,45,18.0,alpha,lower,5.815095901489258 +karman_re100,ppo,46,18.4,alpha,front,-2.4986820220947266 +karman_re100,ppo,46,18.4,alpha,upper,-1.3247175216674805 +karman_re100,ppo,46,18.4,alpha,lower,4.775747299194336 +karman_re100,ppo,47,18.8,alpha,front,-2.257676601409912 +karman_re100,ppo,47,18.8,alpha,upper,-1.5707416534423828 +karman_re100,ppo,47,18.8,alpha,lower,4.211227893829346 +karman_re100,ppo,48,19.2,alpha,front,-1.769968867301941 +karman_re100,ppo,48,19.2,alpha,upper,-2.660625457763672 +karman_re100,ppo,48,19.2,alpha,lower,4.201745510101318 +karman_re100,ppo,49,19.6,alpha,front,-1.4818971157073975 +karman_re100,ppo,49,19.6,alpha,upper,-4.254806995391846 +karman_re100,ppo,49,19.6,alpha,lower,3.879639148712158 +karman_re100,ppo,50,20.0,alpha,front,-1.2023048400878906 +karman_re100,ppo,50,20.0,alpha,upper,-5.76853609085083 +karman_re100,ppo,50,20.0,alpha,lower,3.1599135398864746 +karman_re100,ppo,51,20.4,alpha,front,-0.6844732761383057 +karman_re100,ppo,51,20.4,alpha,upper,-6.626391410827637 +karman_re100,ppo,51,20.4,alpha,lower,2.8424715995788574 +karman_re100,ppo,52,20.8,alpha,front,-0.1169591024518013 +karman_re100,ppo,52,20.8,alpha,upper,-6.911383628845215 +karman_re100,ppo,52,20.8,alpha,lower,2.874941825866699 +karman_re100,ppo,53,21.2,alpha,front,0.4335324466228485 +karman_re100,ppo,53,21.2,alpha,upper,-7.164649963378906 +karman_re100,ppo,53,21.2,alpha,lower,2.6359035968780518 +karman_re100,ppo,54,21.6,alpha,front,1.0531078577041626 +karman_re100,ppo,54,21.6,alpha,upper,-7.200906753540039 +karman_re100,ppo,54,21.6,alpha,lower,2.3278396129608154 +karman_re100,ppo,55,22.0,alpha,front,1.4929616451263428 +karman_re100,ppo,55,22.0,alpha,upper,-6.655542850494385 +karman_re100,ppo,55,22.0,alpha,lower,2.1300735473632812 +karman_re100,ppo,56,22.4,alpha,front,1.5268017053604126 +karman_re100,ppo,56,22.4,alpha,upper,-5.6159868240356445 +karman_re100,ppo,56,22.4,alpha,lower,1.991668939590454 +karman_re100,ppo,57,22.8,alpha,front,1.275164008140564 +karman_re100,ppo,57,22.8,alpha,upper,-4.440047740936279 +karman_re100,ppo,57,22.8,alpha,lower,2.384467363357544 +karman_re100,ppo,58,23.2,alpha,front,1.052129864692688 +karman_re100,ppo,58,23.2,alpha,upper,-3.3440561294555664 +karman_re100,ppo,58,23.2,alpha,lower,4.184351921081543 +karman_re100,ppo,59,23.6,alpha,front,0.701640248298645 +karman_re100,ppo,59,23.6,alpha,upper,-2.747272491455078 +karman_re100,ppo,59,23.6,alpha,lower,6.506291389465332 +karman_re100,ppo,60,24.0,alpha,front,0.04713413119316101 +karman_re100,ppo,60,24.0,alpha,upper,-2.8879787921905518 +karman_re100,ppo,60,24.0,alpha,lower,7.458131313323975 +karman_re100,ppo,61,24.4,alpha,front,-0.6516400575637817 +karman_re100,ppo,61,24.4,alpha,upper,-2.9514148235321045 +karman_re100,ppo,61,24.4,alpha,lower,7.381661415100098 +karman_re100,ppo,62,24.8,alpha,front,-1.4989063739776611 +karman_re100,ppo,62,24.8,alpha,upper,-2.298190116882324 +karman_re100,ppo,62,24.8,alpha,lower,6.773858547210693 +karman_re100,ppo,63,25.2,alpha,front,-2.3222970962524414 +karman_re100,ppo,63,25.2,alpha,upper,-1.485288143157959 +karman_re100,ppo,63,25.2,alpha,lower,5.485260963439941 +karman_re100,ppo,64,25.6,alpha,front,-2.6020667552948 +karman_re100,ppo,64,25.6,alpha,upper,-1.1473147869110107 +karman_re100,ppo,64,25.6,alpha,lower,4.540738582611084 +karman_re100,ppo,65,26.0,alpha,front,-2.2484660148620605 +karman_re100,ppo,65,26.0,alpha,upper,-1.5091369152069092 +karman_re100,ppo,65,26.0,alpha,lower,4.0803961753845215 +karman_re100,ppo,66,26.4,alpha,front,-1.7269207239151 +karman_re100,ppo,66,26.4,alpha,upper,-2.746030807495117 +karman_re100,ppo,66,26.4,alpha,lower,4.108991622924805 +karman_re100,ppo,67,26.8,alpha,front,-1.426629900932312 +karman_re100,ppo,67,26.8,alpha,upper,-4.387010097503662 +karman_re100,ppo,67,26.8,alpha,lower,3.7622385025024414 +karman_re100,ppo,68,27.2,alpha,front,-1.1195873022079468 +karman_re100,ppo,68,27.2,alpha,upper,-5.8312506675720215 +karman_re100,ppo,68,27.2,alpha,lower,3.116250991821289 +karman_re100,ppo,69,27.6,alpha,front,-0.6036595106124878 +karman_re100,ppo,69,27.6,alpha,upper,-6.618534088134766 +karman_re100,ppo,69,27.6,alpha,lower,2.8696792125701904 +karman_re100,ppo,70,28.0,alpha,front,-0.04473491013050079 +karman_re100,ppo,70,28.0,alpha,upper,-6.930976390838623 +karman_re100,ppo,70,28.0,alpha,lower,2.8421096801757812 +karman_re100,ppo,71,28.4,alpha,front,0.5213966369628906 +karman_re100,ppo,71,28.4,alpha,upper,-7.202509880065918 +karman_re100,ppo,71,28.4,alpha,lower,2.5644493103027344 +karman_re100,ppo,72,28.8,alpha,front,1.1429457664489746 +karman_re100,ppo,72,28.8,alpha,upper,-7.175852298736572 +karman_re100,ppo,72,28.8,alpha,lower,2.291560649871826 +karman_re100,ppo,73,29.2,alpha,front,1.5536452531814575 +karman_re100,ppo,73,29.2,alpha,upper,-6.595933437347412 +karman_re100,ppo,73,29.2,alpha,lower,2.0887856483459473 +karman_re100,ppo,74,29.6,alpha,front,1.5719064474105835 +karman_re100,ppo,74,29.6,alpha,upper,-5.572264671325684 +karman_re100,ppo,74,29.6,alpha,lower,1.9377896785736084 +karman_re100,ppo,75,30.0,alpha,front,1.286271095275879 +karman_re100,ppo,75,30.0,alpha,upper,-4.403053283691406 +karman_re100,ppo,75,30.0,alpha,lower,2.363901138305664 +karman_re100,ppo,76,30.4,alpha,front,1.0443142652511597 +karman_re100,ppo,76,30.4,alpha,upper,-3.3253090381622314 +karman_re100,ppo,76,30.4,alpha,lower,4.219768524169922 +karman_re100,ppo,77,30.8,alpha,front,0.6778218746185303 +karman_re100,ppo,77,30.8,alpha,upper,-2.7841694355010986 +karman_re100,ppo,77,30.8,alpha,lower,6.483981132507324 +karman_re100,ppo,78,31.2,alpha,front,0.020866479724645615 +karman_re100,ppo,78,31.2,alpha,upper,-2.9273009300231934 +karman_re100,ppo,78,31.2,alpha,lower,7.3935041427612305 +karman_re100,ppo,79,31.6,alpha,front,-0.6950311660766602 +karman_re100,ppo,79,31.6,alpha,upper,-2.9179186820983887 +karman_re100,ppo,79,31.6,alpha,lower,7.346688270568848 +karman_re100,ppo,80,32.0,alpha,front,-1.5702050924301147 +karman_re100,ppo,80,32.0,alpha,upper,-2.2275562286376953 +karman_re100,ppo,80,32.0,alpha,lower,6.702549934387207 +karman_re100,ppo,81,32.4,alpha,front,-2.3694281578063965 +karman_re100,ppo,81,32.4,alpha,upper,-1.4736948013305664 +karman_re100,ppo,81,32.4,alpha,lower,5.524394512176514 +karman_re100,ppo,82,32.8,alpha,front,-2.6480116844177246 +karman_re100,ppo,82,32.8,alpha,upper,-1.0732128620147705 +karman_re100,ppo,82,32.8,alpha,lower,4.475482940673828 +karman_re100,ppo,83,33.2,alpha,front,-2.3179731369018555 +karman_re100,ppo,83,33.2,alpha,upper,-1.4094316959381104 +karman_re100,ppo,83,33.2,alpha,lower,3.9965217113494873 +karman_re100,ppo,84,33.6,alpha,front,-1.761277198791504 +karman_re100,ppo,84,33.6,alpha,upper,-2.6377429962158203 +karman_re100,ppo,84,33.6,alpha,lower,4.044646739959717 +karman_re100,ppo,85,34.0,alpha,front,-1.462108850479126 +karman_re100,ppo,85,34.0,alpha,upper,-4.247464179992676 +karman_re100,ppo,85,34.0,alpha,lower,3.747389078140259 +karman_re100,ppo,86,34.4,alpha,front,-1.1827926635742188 +karman_re100,ppo,86,34.4,alpha,upper,-5.701300144195557 +karman_re100,ppo,86,34.4,alpha,lower,3.1401829719543457 +karman_re100,ppo,87,34.8,alpha,front,-0.6808305978775024 +karman_re100,ppo,87,34.8,alpha,upper,-6.57124137878418 +karman_re100,ppo,87,34.8,alpha,lower,2.8432202339172363 +karman_re100,ppo,88,35.2,alpha,front,-0.12639681994915009 +karman_re100,ppo,88,35.2,alpha,upper,-6.8924970626831055 +karman_re100,ppo,88,35.2,alpha,lower,2.8573224544525146 +karman_re100,ppo,89,35.6,alpha,front,0.4168907701969147 +karman_re100,ppo,89,35.6,alpha,upper,-7.150174617767334 +karman_re100,ppo,89,35.6,alpha,lower,2.6350507736206055 +karman_re100,ppo,90,36.0,alpha,front,1.0139920711517334 +karman_re100,ppo,90,36.0,alpha,upper,-7.219011306762695 +karman_re100,ppo,90,36.0,alpha,lower,2.3494129180908203 +karman_re100,ppo,91,36.4,alpha,front,1.4644503593444824 +karman_re100,ppo,91,36.4,alpha,upper,-6.7416887283325195 +karman_re100,ppo,91,36.4,alpha,lower,2.1580419540405273 +karman_re100,ppo,92,36.8,alpha,front,1.5353646278381348 +karman_re100,ppo,92,36.8,alpha,upper,-5.770300388336182 +karman_re100,ppo,92,36.8,alpha,lower,2.0048859119415283 +karman_re100,ppo,93,37.2,alpha,front,1.2997057437896729 +karman_re100,ppo,93,37.2,alpha,upper,-4.615270614624023 +karman_re100,ppo,93,37.2,alpha,lower,2.304713249206543 +karman_re100,ppo,94,37.6,alpha,front,1.0750311613082886 +karman_re100,ppo,94,37.6,alpha,upper,-3.5100245475769043 +karman_re100,ppo,94,37.6,alpha,lower,3.9341561794281006 +karman_re100,ppo,95,38.0,alpha,front,0.744854211807251 +karman_re100,ppo,95,38.0,alpha,upper,-2.822686195373535 +karman_re100,ppo,95,38.0,alpha,lower,6.274299621582031 +karman_re100,ppo,96,38.4,alpha,front,0.1014200747013092 +karman_re100,ppo,96,38.4,alpha,upper,-2.8806376457214355 +karman_re100,ppo,96,38.4,alpha,lower,7.389322280883789 +karman_re100,ppo,97,38.8,alpha,front,-0.6072068214416504 +karman_re100,ppo,97,38.8,alpha,upper,-2.994757652282715 +karman_re100,ppo,97,38.8,alpha,lower,7.384575366973877 +karman_re100,ppo,98,39.2,alpha,front,-1.4479695558547974 +karman_re100,ppo,98,39.2,alpha,upper,-2.384122371673584 +karman_re100,ppo,98,39.2,alpha,lower,6.84097957611084 +karman_re100,ppo,99,39.6,alpha,front,-2.310955286026001 +karman_re100,ppo,99,39.6,alpha,upper,-1.5805747509002686 +karman_re100,ppo,99,39.6,alpha,lower,5.672511100769043 +karman_re100,ppo,100,40.0,alpha,front,-2.685181140899658 +karman_re100,ppo,100,40.0,alpha,upper,-1.1207828521728516 +karman_re100,ppo,100,40.0,alpha,lower,4.579085826873779 +karman_re100,ppo,101,40.4,alpha,front,-2.426529884338379 +karman_re100,ppo,101,40.4,alpha,upper,-1.316086769104004 +karman_re100,ppo,101,40.4,alpha,lower,3.995084762573242 +karman_re100,ppo,102,40.8,alpha,front,-1.856438159942627 +karman_re100,ppo,102,40.8,alpha,upper,-2.4322493076324463 +karman_re100,ppo,102,40.8,alpha,lower,4.027906894683838 +karman_re100,ppo,103,41.2,alpha,front,-1.5110297203063965 +karman_re100,ppo,103,41.2,alpha,upper,-4.037414073944092 +karman_re100,ppo,103,41.2,alpha,lower,3.7948899269104004 +karman_re100,ppo,104,41.6,alpha,front,-1.2469600439071655 +karman_re100,ppo,104,41.6,alpha,upper,-5.558619499206543 +karman_re100,ppo,104,41.6,alpha,lower,3.190786361694336 +karman_re100,ppo,105,42.0,alpha,front,-0.7635141611099243 +karman_re100,ppo,105,42.0,alpha,upper,-6.530463218688965 +karman_re100,ppo,105,42.0,alpha,lower,2.843249797821045 +karman_re100,ppo,106,42.4,alpha,front,-0.20108847320079803 +karman_re100,ppo,106,42.4,alpha,upper,-6.885330677032471 +karman_re100,ppo,106,42.4,alpha,lower,2.8664751052856445 +karman_re100,ppo,107,42.8,alpha,front,0.3387419879436493 +karman_re100,ppo,107,42.8,alpha,upper,-7.146501541137695 +karman_re100,ppo,107,42.8,alpha,lower,2.683938503265381 +karman_re100,ppo,108,43.2,alpha,front,0.9390913844108582 +karman_re100,ppo,108,43.2,alpha,upper,-7.245334625244141 +karman_re100,ppo,108,43.2,alpha,lower,2.379012107849121 +karman_re100,ppo,109,43.6,alpha,front,1.4123972654342651 +karman_re100,ppo,109,43.6,alpha,upper,-6.815898418426514 +karman_re100,ppo,109,43.6,alpha,lower,2.181553840637207 +karman_re100,ppo,110,44.0,alpha,front,1.5239721536636353 +karman_re100,ppo,110,44.0,alpha,upper,-5.866938591003418 +karman_re100,ppo,110,44.0,alpha,lower,2.0199427604675293 +karman_re100,ppo,111,44.4,alpha,front,1.308302402496338 +karman_re100,ppo,111,44.4,alpha,upper,-4.701861381530762 +karman_re100,ppo,111,44.4,alpha,lower,2.25864577293396 +karman_re100,ppo,112,44.8,alpha,front,1.0840802192687988 +karman_re100,ppo,112,44.8,alpha,upper,-3.571727991104126 +karman_re100,ppo,112,44.8,alpha,lower,3.7862424850463867 +karman_re100,ppo,113,45.2,alpha,front,0.7742617130279541 +karman_re100,ppo,113,45.2,alpha,upper,-2.838118076324463 +karman_re100,ppo,113,45.2,alpha,lower,6.152014255523682 +karman_re100,ppo,114,45.6,alpha,front,0.14883968234062195 +karman_re100,ppo,114,45.6,alpha,upper,-2.858867645263672 +karman_re100,ppo,114,45.6,alpha,lower,7.374504566192627 +karman_re100,ppo,115,46.0,alpha,front,-0.5557593107223511 +karman_re100,ppo,115,46.0,alpha,upper,-3.000704526901245 +karman_re100,ppo,115,46.0,alpha,lower,7.403229236602783 +karman_re100,ppo,116,46.4,alpha,front,-1.3774168491363525 +karman_re100,ppo,116,46.4,alpha,upper,-2.4341506958007812 +karman_re100,ppo,116,46.4,alpha,lower,6.9058332443237305 +karman_re100,ppo,117,46.8,alpha,front,-2.2551755905151367 +karman_re100,ppo,117,46.8,alpha,upper,-1.624770998954773 +karman_re100,ppo,117,46.8,alpha,lower,5.766337871551514 +karman_re100,ppo,118,47.2,alpha,front,-2.6702146530151367 +karman_re100,ppo,118,47.2,alpha,upper,-1.1413369178771973 +karman_re100,ppo,118,47.2,alpha,lower,4.6577558517456055 +karman_re100,ppo,119,47.6,alpha,front,-2.443657398223877 +karman_re100,ppo,119,47.6,alpha,upper,-1.286834955215454 +karman_re100,ppo,119,47.6,alpha,lower,4.030369281768799 +karman_re100,ppo,120,48.0,alpha,front,-1.875072717666626 +karman_re100,ppo,120,48.0,alpha,upper,-2.3463618755340576 +karman_re100,ppo,120,48.0,alpha,lower,4.042372703552246 +karman_re100,ppo,121,48.4,alpha,front,-1.5135952234268188 +karman_re100,ppo,121,48.4,alpha,upper,-3.949838161468506 +karman_re100,ppo,121,48.4,alpha,lower,3.8312110900878906 +karman_re100,ppo,122,48.8,alpha,front,-1.259844422340393 +karman_re100,ppo,122,48.8,alpha,upper,-5.492762565612793 +karman_re100,ppo,122,48.8,alpha,lower,3.222791910171509 +karman_re100,ppo,123,49.2,alpha,front,-0.7918299436569214 +karman_re100,ppo,123,49.2,alpha,upper,-6.507286548614502 +karman_re100,ppo,123,49.2,alpha,lower,2.8345441818237305 +karman_re100,ppo,124,49.6,alpha,front,-0.22545446455478668 +karman_re100,ppo,124,49.6,alpha,upper,-6.879588603973389 +karman_re100,ppo,124,49.6,alpha,lower,2.856447219848633 +karman_re100,ppo,125,50.0,alpha,front,0.3127964437007904 +karman_re100,ppo,125,50.0,alpha,upper,-7.135416030883789 +karman_re100,ppo,125,50.0,alpha,lower,2.6944127082824707 +karman_re100,ppo,126,50.4,alpha,front,0.9086610078811646 +karman_re100,ppo,126,50.4,alpha,upper,-7.261585712432861 +karman_re100,ppo,126,50.4,alpha,lower,2.3877735137939453 +karman_re100,ppo,127,50.8,alpha,front,1.4010028839111328 +karman_re100,ppo,127,50.8,alpha,upper,-6.867486953735352 +karman_re100,ppo,127,50.8,alpha,lower,2.180563449859619 +karman_re100,ppo,128,51.2,alpha,front,1.5297867059707642 +karman_re100,ppo,128,51.2,alpha,upper,-5.936868667602539 +karman_re100,ppo,128,51.2,alpha,lower,2.018883466720581 +karman_re100,ppo,129,51.6,alpha,front,1.3228437900543213 +karman_re100,ppo,129,51.6,alpha,upper,-4.779947757720947 +karman_re100,ppo,129,51.6,alpha,lower,2.2056663036346436 +karman_re100,ppo,130,52.0,alpha,front,1.0867364406585693 +karman_re100,ppo,130,52.0,alpha,upper,-3.6425039768218994 +karman_re100,ppo,130,52.0,alpha,lower,3.6415414810180664 +karman_re100,ppo,131,52.4,alpha,front,0.792910099029541 +karman_re100,ppo,131,52.4,alpha,upper,-2.8599672317504883 +karman_re100,ppo,131,52.4,alpha,lower,6.035089492797852 +karman_re100,ppo,132,52.8,alpha,front,0.1804123967885971 +karman_re100,ppo,132,52.8,alpha,upper,-2.844501495361328 +karman_re100,ppo,132,52.8,alpha,lower,7.353981971740723 +karman_re100,ppo,133,53.2,alpha,front,-0.5248688459396362 +karman_re100,ppo,133,53.2,alpha,upper,-3.0135276317596436 +karman_re100,ppo,133,53.2,alpha,lower,7.41392707824707 +karman_re100,ppo,134,53.6,alpha,front,-1.3383249044418335 +karman_re100,ppo,134,53.6,alpha,upper,-2.4782004356384277 +karman_re100,ppo,134,53.6,alpha,lower,6.953454971313477 +karman_re100,ppo,135,54.0,alpha,front,-2.2305893898010254 +karman_re100,ppo,135,54.0,alpha,upper,-1.653507947921753 +karman_re100,ppo,135,54.0,alpha,lower,5.818170547485352 +karman_re100,ppo,136,54.4,alpha,front,-2.6792426109313965 +karman_re100,ppo,136,54.4,alpha,upper,-1.143592119216919 +karman_re100,ppo,136,54.4,alpha,lower,4.69655704498291 +karman_re100,ppo,137,54.8,alpha,front,-2.486081838607788 +karman_re100,ppo,137,54.8,alpha,upper,-1.2371277809143066 +karman_re100,ppo,137,54.8,alpha,lower,4.028402805328369 +karman_re100,ppo,138,55.2,alpha,front,-1.9174009561538696 +karman_re100,ppo,138,55.2,alpha,upper,-2.2434301376342773 +karman_re100,ppo,138,55.2,alpha,lower,4.022458076477051 +karman_re100,ppo,139,55.6,alpha,front,-1.5321063995361328 +karman_re100,ppo,139,55.6,alpha,upper,-3.8325276374816895 +karman_re100,ppo,139,55.6,alpha,lower,3.8519985675811768 +karman_re100,ppo,140,56.0,alpha,front,-1.2849260568618774 +karman_re100,ppo,140,56.0,alpha,upper,-5.392208099365234 +karman_re100,ppo,140,56.0,alpha,lower,3.2610671520233154 +karman_re100,ppo,141,56.4,alpha,front,-0.8304478526115417 +karman_re100,ppo,141,56.4,alpha,upper,-6.455043315887451 +karman_re100,ppo,141,56.4,alpha,lower,2.8436574935913086 +karman_re100,ppo,142,56.8,alpha,front,-0.2656386196613312 +karman_re100,ppo,142,56.8,alpha,upper,-6.862408638000488 +karman_re100,ppo,142,56.8,alpha,lower,2.855483055114746 +karman_re100,ppo,143,57.2,alpha,front,0.2716406285762787 +karman_re100,ppo,143,57.2,alpha,upper,-7.119122505187988 +karman_re100,ppo,143,57.2,alpha,lower,2.7175464630126953 +karman_re100,ppo,144,57.6,alpha,front,0.863741934299469 +karman_re100,ppo,144,57.6,alpha,upper,-7.2628889083862305 +karman_re100,ppo,144,57.6,alpha,lower,2.409088611602783 +karman_re100,ppo,145,58.0,alpha,front,1.3757373094558716 +karman_re100,ppo,145,58.0,alpha,upper,-6.910489082336426 +karman_re100,ppo,145,58.0,alpha,lower,2.197633981704712 +karman_re100,ppo,146,58.4,alpha,front,1.5390738248825073 +karman_re100,ppo,146,58.4,alpha,upper,-6.025765419006348 +karman_re100,ppo,146,58.4,alpha,lower,2.030339241027832 +karman_re100,ppo,147,58.8,alpha,front,1.3446077108383179 +karman_re100,ppo,147,58.8,alpha,upper,-4.863941192626953 +karman_re100,ppo,147,58.8,alpha,lower,2.169814109802246 +karman_re100,ppo,148,59.2,alpha,front,1.1067416667938232 +karman_re100,ppo,148,59.2,alpha,upper,-3.717885732650757 +karman_re100,ppo,148,59.2,alpha,lower,3.4957518577575684 +karman_re100,ppo,149,59.6,alpha,front,0.8314142823219299 +karman_re100,ppo,149,59.6,alpha,upper,-2.8961892127990723 +karman_re100,ppo,149,59.6,alpha,lower,5.873632431030273 +karman_re100,ppo,150,60.0,alpha,front,0.23740842938423157 +karman_re100,ppo,150,60.0,alpha,upper,-2.828272819519043 +karman_re100,ppo,150,60.0,alpha,lower,7.306269645690918 +karman_re100,ppo,151,60.4,alpha,front,-0.4692924916744232 +karman_re100,ppo,151,60.4,alpha,upper,-3.019127368927002 +karman_re100,ppo,151,60.4,alpha,lower,7.425398349761963 +karman_re100,ppo,152,60.8,alpha,front,-1.2633442878723145 +karman_re100,ppo,152,60.8,alpha,upper,-2.5409388542175293 +karman_re100,ppo,152,60.8,alpha,lower,7.0126142501831055 +karman_re100,ppo,153,61.2,alpha,front,-2.1708898544311523 +karman_re100,ppo,153,61.2,alpha,upper,-1.7184704542160034 +karman_re100,ppo,153,61.2,alpha,lower,5.9162983894348145 +karman_re100,ppo,154,61.6,alpha,front,-2.664429187774658 +karman_re100,ppo,154,61.6,alpha,upper,-1.174748420715332 +karman_re100,ppo,154,61.6,alpha,lower,4.77894926071167 +karman_re100,ppo,155,62.0,alpha,front,-2.5177483558654785 +karman_re100,ppo,155,62.0,alpha,upper,-1.201096534729004 +karman_re100,ppo,155,62.0,alpha,lower,4.056382179260254 +karman_re100,ppo,156,62.4,alpha,front,-1.9593589305877686 +karman_re100,ppo,156,62.4,alpha,upper,-2.1491029262542725 +karman_re100,ppo,156,62.4,alpha,lower,4.017276763916016 +karman_re100,ppo,157,62.8,alpha,front,-1.5536308288574219 +karman_re100,ppo,157,62.8,alpha,upper,-3.7145612239837646 +karman_re100,ppo,157,62.8,alpha,lower,3.8878486156463623 +karman_re100,ppo,158,63.2,alpha,front,-1.3114491701126099 +karman_re100,ppo,158,63.2,alpha,upper,-5.297328948974609 +karman_re100,ppo,158,63.2,alpha,lower,3.306731939315796 +karman_re100,ppo,159,63.6,alpha,front,-0.8712698221206665 +karman_re100,ppo,159,63.6,alpha,upper,-6.405383586883545 +karman_re100,ppo,159,63.6,alpha,lower,2.855294704437256 +karman_re100,ppo,160,64.0,alpha,front,-0.30501365661621094 +karman_re100,ppo,160,64.0,alpha,upper,-6.84410285949707 +karman_re100,ppo,160,64.0,alpha,lower,2.857311248779297 +karman_re100,ppo,161,64.4,alpha,front,0.23275810480117798 +karman_re100,ppo,161,64.4,alpha,upper,-7.099697113037109 +karman_re100,ppo,161,64.4,alpha,lower,2.7354917526245117 +karman_re100,ppo,162,64.8,alpha,front,0.8212908506393433 +karman_re100,ppo,162,64.8,alpha,upper,-7.265765190124512 +karman_re100,ppo,162,64.8,alpha,lower,2.4266042709350586 +karman_re100,ppo,163,65.2,alpha,front,1.349334478378296 +karman_re100,ppo,163,65.2,alpha,upper,-6.955918312072754 +karman_re100,ppo,163,65.2,alpha,lower,2.210745096206665 +karman_re100,ppo,164,65.6,alpha,front,1.5374219417572021 +karman_re100,ppo,164,65.6,alpha,upper,-6.087609767913818 +karman_re100,ppo,164,65.6,alpha,lower,2.03513765335083 +karman_re100,ppo,165,66.0,alpha,front,1.3626493215560913 +karman_re100,ppo,165,66.0,alpha,upper,-4.943068981170654 +karman_re100,ppo,165,66.0,alpha,lower,2.1322007179260254 +karman_re100,ppo,166,66.4,alpha,front,1.120184063911438 +karman_re100,ppo,166,66.4,alpha,upper,-3.7889795303344727 +karman_re100,ppo,166,66.4,alpha,lower,3.35636305809021 +karman_re100,ppo,167,66.8,alpha,front,0.8586351275444031 +karman_re100,ppo,167,66.8,alpha,upper,-2.926957130432129 +karman_re100,ppo,167,66.8,alpha,lower,5.7262372970581055 +karman_re100,ppo,168,67.2,alpha,front,0.28359854221343994 +karman_re100,ppo,168,67.2,alpha,upper,-2.81282377243042 +karman_re100,ppo,168,67.2,alpha,lower,7.263399124145508 +karman_re100,ppo,169,67.6,alpha,front,-0.4228043854236603 +karman_re100,ppo,169,67.6,alpha,upper,-3.0226850509643555 +karman_re100,ppo,169,67.6,alpha,lower,7.441018104553223 +karman_re100,ppo,170,68.0,alpha,front,-1.2018977403640747 +karman_re100,ppo,170,68.0,alpha,upper,-2.596569538116455 +karman_re100,ppo,170,68.0,alpha,lower,7.068882942199707 +karman_re100,ppo,171,68.4,alpha,front,-2.1161108016967773 +karman_re100,ppo,171,68.4,alpha,upper,-1.7657504081726074 +karman_re100,ppo,171,68.4,alpha,lower,6.003807067871094 +karman_re100,ppo,172,68.8,alpha,front,-2.6562623977661133 +karman_re100,ppo,172,68.8,alpha,upper,-1.1923959255218506 +karman_re100,ppo,172,68.8,alpha,lower,4.838188648223877 +karman_re100,ppo,173,69.2,alpha,front,-2.5451817512512207 +karman_re100,ppo,173,69.2,alpha,upper,-1.1733732223510742 +karman_re100,ppo,173,69.2,alpha,lower,4.084147930145264 +karman_re100,ppo,174,69.6,alpha,front,-1.9925044775009155 +karman_re100,ppo,174,69.6,alpha,upper,-2.0685157775878906 +karman_re100,ppo,174,69.6,alpha,lower,4.009456157684326 +karman_re100,ppo,175,70.0,alpha,front,-1.5699833631515503 +karman_re100,ppo,175,70.0,alpha,upper,-3.600867986679077 +karman_re100,ppo,175,70.0,alpha,lower,3.9152016639709473 +karman_re100,ppo,176,70.4,alpha,front,-1.327309250831604 +karman_re100,ppo,176,70.4,alpha,upper,-5.1959028244018555 +karman_re100,ppo,176,70.4,alpha,lower,3.35809588432312 +karman_re100,ppo,177,70.8,alpha,front,-0.9067975878715515 +karman_re100,ppo,177,70.8,alpha,upper,-6.356688022613525 +karman_re100,ppo,177,70.8,alpha,lower,2.8680624961853027 +karman_re100,ppo,178,71.2,alpha,front,-0.34053781628608704 +karman_re100,ppo,178,71.2,alpha,upper,-6.829787254333496 +karman_re100,ppo,178,71.2,alpha,lower,2.850172996520996 +karman_re100,ppo,179,71.6,alpha,front,0.19808223843574524 +karman_re100,ppo,179,71.6,alpha,upper,-7.083501815795898 +karman_re100,ppo,179,71.6,alpha,lower,2.7524919509887695 +karman_re100,ppo,180,72.0,alpha,front,0.7838250994682312 +karman_re100,ppo,180,72.0,alpha,upper,-7.265779495239258 +karman_re100,ppo,180,72.0,alpha,lower,2.443873882293701 +karman_re100,ppo,181,72.4,alpha,front,1.3247489929199219 +karman_re100,ppo,181,72.4,alpha,upper,-6.995982646942139 +karman_re100,ppo,181,72.4,alpha,lower,2.224127769470215 +karman_re100,ppo,182,72.8,alpha,front,1.5403001308441162 +karman_re100,ppo,182,72.8,alpha,upper,-6.166653156280518 +karman_re100,ppo,182,72.8,alpha,lower,2.0478763580322266 +karman_re100,ppo,183,73.2,alpha,front,1.383790373802185 +karman_re100,ppo,183,73.2,alpha,upper,-5.024622440338135 +karman_re100,ppo,183,73.2,alpha,lower,2.096116065979004 +karman_re100,ppo,184,73.6,alpha,front,1.134570598602295 +karman_re100,ppo,184,73.6,alpha,upper,-3.865870475769043 +karman_re100,ppo,184,73.6,alpha,lower,3.2162365913391113 +karman_re100,ppo,185,74.0,alpha,front,0.885511040687561 +karman_re100,ppo,185,74.0,alpha,upper,-2.964323043823242 +karman_re100,ppo,185,74.0,alpha,lower,5.561518669128418 +karman_re100,ppo,186,74.4,alpha,front,0.3302610218524933 +karman_re100,ppo,186,74.4,alpha,upper,-2.7967047691345215 +karman_re100,ppo,186,74.4,alpha,lower,7.2121734619140625 +karman_re100,ppo,187,74.8,alpha,front,-0.37539806962013245 +karman_re100,ppo,187,74.8,alpha,upper,-3.020378589630127 +karman_re100,ppo,187,74.8,alpha,lower,7.450379371643066 +karman_re100,ppo,188,75.2,alpha,front,-1.1415914297103882 +karman_re100,ppo,188,75.2,alpha,upper,-2.6477198600769043 +karman_re100,ppo,188,75.2,alpha,lower,7.114409923553467 +karman_re100,ppo,189,75.6,alpha,front,-2.0629849433898926 +karman_re100,ppo,189,75.6,alpha,upper,-1.819002628326416 +karman_re100,ppo,189,75.6,alpha,lower,6.0868425369262695 +karman_re100,ppo,190,76.0,alpha,front,-2.6352663040161133 +karman_re100,ppo,190,76.0,alpha,upper,-1.2157526016235352 +karman_re100,ppo,190,76.0,alpha,lower,4.912304878234863 +karman_re100,ppo,191,76.4,alpha,front,-2.5687265396118164 +karman_re100,ppo,191,76.4,alpha,upper,-1.1541640758514404 +karman_re100,ppo,191,76.4,alpha,lower,4.093023777008057 +karman_re100,ppo,192,76.8,alpha,front,-2.0355799198150635 +karman_re100,ppo,192,76.8,alpha,upper,-1.970861554145813 +karman_re100,ppo,192,76.8,alpha,lower,4.005319595336914 +karman_re100,ppo,193,77.2,alpha,front,-1.5883015394210815 +karman_re100,ppo,193,77.2,alpha,upper,-3.4885802268981934 +karman_re100,ppo,193,77.2,alpha,lower,3.9433741569519043 +karman_re100,ppo,194,77.6,alpha,front,-1.3473387956619263 +karman_re100,ppo,194,77.6,alpha,upper,-5.096250057220459 +karman_re100,ppo,194,77.6,alpha,lower,3.394270420074463 +karman_re100,ppo,195,78.0,alpha,front,-0.943185567855835 +karman_re100,ppo,195,78.0,alpha,upper,-6.296847343444824 +karman_re100,ppo,195,78.0,alpha,lower,2.8875792026519775 +karman_re100,ppo,196,78.4,alpha,front,-0.3791944682598114 +karman_re100,ppo,196,78.4,alpha,upper,-6.8101420402526855 +karman_re100,ppo,196,78.4,alpha,lower,2.8466479778289795 +karman_re100,ppo,197,78.8,alpha,front,0.15982894599437714 +karman_re100,ppo,197,78.8,alpha,upper,-7.064330577850342 +karman_re100,ppo,197,78.8,alpha,lower,2.7723939418792725 +karman_re100,ppo,198,79.2,alpha,front,0.739232063293457 +karman_re100,ppo,198,79.2,alpha,upper,-7.263915538787842 +karman_re100,ppo,198,79.2,alpha,lower,2.4664955139160156 +karman_re100,ppo,199,79.6,alpha,front,1.3025544881820679 +karman_re100,ppo,199,79.6,alpha,upper,-7.010113716125488 +karman_re100,ppo,199,79.6,alpha,lower,2.21791410446167 +karman_re100,ppo,0,0.0,omega,front,0.013321278616786003 +karman_re100,ppo,0,0.0,omega,upper,-0.07146883755922318 +karman_re100,ppo,0,0.0,omega,lower,0.023036712780594826 +karman_re100,ppo,1,0.4,omega,front,0.015221006236970425 +karman_re100,ppo,1,0.4,omega,upper,-0.06257075816392899 +karman_re100,ppo,1,0.4,omega,lower,0.023259524255990982 +karman_re100,ppo,2,0.8,omega,front,0.013575665652751923 +karman_re100,ppo,2,0.8,omega,upper,-0.0520782545208931 +karman_re100,ppo,2,0.8,omega,lower,0.02118210308253765 +karman_re100,ppo,3,1.2,omega,front,0.0131128104403615 +karman_re100,ppo,3,1.2,omega,upper,-0.047156576067209244 +karman_re100,ppo,3,1.2,omega,lower,0.018277181312441826 +karman_re100,ppo,4,1.6,omega,front,0.010120980441570282 +karman_re100,ppo,4,1.6,omega,upper,-0.03534660488367081 +karman_re100,ppo,4,1.6,omega,lower,0.029372261837124825 +karman_re100,ppo,5,2.0,omega,front,0.0063092634081840515 +karman_re100,ppo,5,2.0,omega,upper,-0.02352982945740223 +karman_re100,ppo,5,2.0,omega,lower,0.055599067360162735 +karman_re100,ppo,6,2.4,omega,front,0.001314179738983512 +karman_re100,ppo,6,2.4,omega,upper,-0.024106334894895554 +karman_re100,ppo,6,2.4,omega,lower,0.070311039686203 +karman_re100,ppo,7,2.8,omega,front,-0.003495053853839636 +karman_re100,ppo,7,2.8,omega,upper,-0.02791900560259819 +karman_re100,ppo,7,2.8,omega,lower,0.07247810810804367 +karman_re100,ppo,8,3.2,omega,front,-0.008866881020367146 +karman_re100,ppo,8,3.2,omega,upper,-0.024229442700743675 +karman_re100,ppo,8,3.2,omega,lower,0.07149287313222885 +karman_re100,ppo,9,3.6,omega,front,-0.014705944806337357 +karman_re100,ppo,9,3.6,omega,upper,-0.0186372771859169 +karman_re100,ppo,9,3.6,omega,lower,0.06479688733816147 +karman_re100,ppo,10,4.0,omega,front,-0.016574399545788765 +karman_re100,ppo,10,4.0,omega,upper,-0.017638616263866425 +karman_re100,ppo,10,4.0,omega,lower,0.057552795857191086 +karman_re100,ppo,11,4.4,omega,front,-0.014349493198096752 +karman_re100,ppo,11,4.4,omega,upper,-0.02152952365577221 +karman_re100,ppo,11,4.4,omega,lower,0.05309651792049408 +karman_re100,ppo,12,4.8,omega,front,-0.010969307273626328 +karman_re100,ppo,12,4.8,omega,upper,-0.03212511166930199 +karman_re100,ppo,12,4.8,omega,lower,0.05004480108618736 +karman_re100,ppo,13,5.2,omega,front,-0.008209068328142166 +karman_re100,ppo,13,5.2,omega,upper,-0.04780428856611252 +karman_re100,ppo,13,5.2,omega,lower,0.04332825914025307 +karman_re100,ppo,14,5.6,omega,front,-0.005146970506757498 +karman_re100,ppo,14,5.6,omega,upper,-0.06133032590150833 +karman_re100,ppo,14,5.6,omega,lower,0.0339156799018383 +karman_re100,ppo,15,6.0,omega,front,-0.00036363437538966537 +karman_re100,ppo,15,6.0,omega,upper,-0.06774309277534485 +karman_re100,ppo,15,6.0,omega,lower,0.02910851500928402 +karman_re100,ppo,16,6.4,omega,front,0.005091120954602957 +karman_re100,ppo,16,6.4,omega,upper,-0.0708698183298111 +karman_re100,ppo,16,6.4,omega,lower,0.025878896936774254 +karman_re100,ppo,17,6.8,omega,front,0.011869723908603191 +karman_re100,ppo,17,6.8,omega,upper,-0.07256282866001129 +karman_re100,ppo,17,6.8,omega,lower,0.022296776995062828 +karman_re100,ppo,18,7.2,omega,front,0.018511027097702026 +karman_re100,ppo,18,7.2,omega,upper,-0.06903807818889618 +karman_re100,ppo,18,7.2,omega,lower,0.020265430212020874 +karman_re100,ppo,19,7.6,omega,front,0.02086036652326584 +karman_re100,ppo,19,7.6,omega,upper,-0.059846390038728714 +karman_re100,ppo,19,7.6,omega,lower,0.017772333696484566 +karman_re100,ppo,20,8.0,omega,front,0.01770702749490738 +karman_re100,ppo,20,8.0,omega,upper,-0.04900747165083885 +karman_re100,ppo,20,8.0,omega,lower,0.015767777338624 +karman_re100,ppo,21,8.4,omega,front,0.011937004514038563 +karman_re100,ppo,21,8.4,omega,upper,-0.03960161283612251 +karman_re100,ppo,21,8.4,omega,lower,0.020631879568099976 +karman_re100,ppo,22,8.8,omega,front,0.007437027525156736 +karman_re100,ppo,22,8.8,omega,upper,-0.030977867543697357 +karman_re100,ppo,22,8.8,omega,lower,0.040190208703279495 +karman_re100,ppo,23,9.2,omega,front,0.00360879092477262 +karman_re100,ppo,23,9.2,omega,upper,-0.025686554610729218 +karman_re100,ppo,23,9.2,omega,lower,0.06627094745635986 +karman_re100,ppo,24,9.6,omega,front,-0.00261479988694191 +karman_re100,ppo,24,9.6,omega,upper,-0.026794366538524628 +karman_re100,ppo,24,9.6,omega,lower,0.07695155590772629 +karman_re100,ppo,25,10.0,omega,front,-0.009540444239974022 +karman_re100,ppo,25,10.0,omega,upper,-0.02684151567518711 +karman_re100,ppo,25,10.0,omega,lower,0.07469958811998367 +karman_re100,ppo,26,10.4,omega,front,-0.01734715700149536 +karman_re100,ppo,26,10.4,omega,upper,-0.019936904311180115 +karman_re100,ppo,26,10.4,omega,lower,0.06700106710195541 +karman_re100,ppo,27,10.8,omega,front,-0.02359410934150219 +karman_re100,ppo,27,10.8,omega,upper,-0.012807016260921955 +karman_re100,ppo,27,10.8,omega,lower,0.05560535192489624 +karman_re100,ppo,28,11.2,omega,front,-0.02420603483915329 +karman_re100,ppo,28,11.2,omega,upper,-0.01067385170608759 +karman_re100,ppo,28,11.2,omega,lower,0.04708448424935341 +karman_re100,ppo,29,11.6,omega,front,-0.019783029332756996 +karman_re100,ppo,29,11.6,omega,upper,-0.0161636583507061 +karman_re100,ppo,29,11.6,omega,lower,0.04405108466744423 +karman_re100,ppo,30,12.0,omega,front,-0.014344902709126472 +karman_re100,ppo,30,12.0,omega,upper,-0.029830457642674446 +karman_re100,ppo,30,12.0,omega,lower,0.043511394411325455 +karman_re100,ppo,31,12.4,omega,front,-0.011933469213545322 +karman_re100,ppo,31,12.4,omega,upper,-0.046682171523571014 +karman_re100,ppo,31,12.4,omega,lower,0.038569994270801544 +karman_re100,ppo,32,12.8,omega,front,-0.009714488871395588 +karman_re100,ppo,32,12.8,omega,upper,-0.06055218726396561 +karman_re100,ppo,32,12.8,omega,lower,0.031111814081668854 +karman_re100,ppo,33,13.2,omega,front,-0.004537737462669611 +karman_re100,ppo,33,13.2,omega,upper,-0.0673142597079277 +karman_re100,ppo,33,13.2,omega,lower,0.02842816524207592 +karman_re100,ppo,34,13.6,omega,front,0.0013490351848304272 +karman_re100,ppo,34,13.6,omega,upper,-0.06938529014587402 +karman_re100,ppo,34,13.6,omega,lower,0.0283968485891819 +karman_re100,ppo,35,14.0,omega,front,0.007131134159862995 +karman_re100,ppo,35,14.0,omega,upper,-0.07135851681232452 +karman_re100,ppo,35,14.0,omega,lower,0.026107851415872574 +karman_re100,ppo,36,14.4,omega,front,0.013420194387435913 +karman_re100,ppo,36,14.4,omega,upper,-0.0709519162774086 +karman_re100,ppo,36,14.4,omega,lower,0.023720785975456238 +karman_re100,ppo,37,14.8,omega,front,0.017626790329813957 +karman_re100,ppo,37,14.8,omega,upper,-0.06533781439065933 +karman_re100,ppo,37,14.8,omega,lower,0.02181611955165863 +karman_re100,ppo,38,15.2,omega,front,0.01747351884841919 +karman_re100,ppo,38,15.2,omega,upper,-0.055253855884075165 +karman_re100,ppo,38,15.2,omega,lower,0.01974193938076496 +karman_re100,ppo,39,15.6,omega,front,0.014191463589668274 +karman_re100,ppo,39,15.6,omega,upper,-0.04417978227138519 +karman_re100,ppo,39,15.6,omega,lower,0.022044004872441292 +karman_re100,ppo,40,16.0,omega,front,0.011519339866936207 +karman_re100,ppo,40,16.0,omega,upper,-0.03351813927292824 +karman_re100,ppo,40,16.0,omega,lower,0.03836729750037193 +karman_re100,ppo,41,16.4,omega,front,0.008500692434608936 +karman_re100,ppo,41,16.4,omega,upper,-0.026720017194747925 +karman_re100,ppo,41,16.4,omega,lower,0.06329621374607086 +karman_re100,ppo,42,16.8,omega,front,0.0019364075269550085 +karman_re100,ppo,42,16.8,omega,upper,-0.02781856805086136 +karman_re100,ppo,42,16.8,omega,lower,0.07501190155744553 +karman_re100,ppo,43,17.2,omega,front,-0.005262085702270269 +karman_re100,ppo,43,17.2,omega,upper,-0.02980850823223591 +karman_re100,ppo,43,17.2,omega,lower,0.07445099949836731 +karman_re100,ppo,44,17.6,omega,front,-0.013334007002413273 +karman_re100,ppo,44,17.6,omega,upper,-0.024422917515039444 +karman_re100,ppo,44,17.6,omega,lower,0.06927313655614853 +karman_re100,ppo,45,18.0,omega,front,-0.02154155634343624 +karman_re100,ppo,45,18.0,omega,upper,-0.01689954288303852 +karman_re100,ppo,45,18.0,omega,lower,0.05815095826983452 +karman_re100,ppo,46,18.4,omega,front,-0.02498682029545307 +karman_re100,ppo,46,18.4,omega,upper,-0.013247175142168999 +karman_re100,ppo,46,18.4,omega,lower,0.04775747284293175 +karman_re100,ppo,47,18.8,omega,front,-0.022576766088604927 +karman_re100,ppo,47,18.8,omega,upper,-0.015707416459918022 +karman_re100,ppo,47,18.8,omega,lower,0.04211227968335152 +karman_re100,ppo,48,19.2,omega,front,-0.01769968867301941 +karman_re100,ppo,48,19.2,omega,upper,-0.026606254279613495 +karman_re100,ppo,48,19.2,omega,lower,0.04201745241880417 +karman_re100,ppo,49,19.6,omega,front,-0.014818971045315266 +karman_re100,ppo,49,19.6,omega,upper,-0.04254806786775589 +karman_re100,ppo,49,19.6,omega,lower,0.03879639133810997 +karman_re100,ppo,50,20.0,omega,front,-0.012023048475384712 +karman_re100,ppo,50,20.0,omega,upper,-0.05768536031246185 +karman_re100,ppo,50,20.0,omega,lower,0.03159913420677185 +karman_re100,ppo,51,20.4,omega,front,-0.006844732444733381 +karman_re100,ppo,51,20.4,omega,upper,-0.06626391410827637 +karman_re100,ppo,51,20.4,omega,lower,0.028424715623259544 +karman_re100,ppo,52,20.8,omega,front,-0.0011695909779518843 +karman_re100,ppo,52,20.8,omega,upper,-0.0691138356924057 +karman_re100,ppo,52,20.8,omega,lower,0.028749417513608932 +karman_re100,ppo,53,21.2,omega,front,0.00433532427996397 +karman_re100,ppo,53,21.2,omega,upper,-0.07164649665355682 +karman_re100,ppo,53,21.2,omega,lower,0.026359034702181816 +karman_re100,ppo,54,21.6,omega,front,0.010531078092753887 +karman_re100,ppo,54,21.6,omega,upper,-0.07200906425714493 +karman_re100,ppo,54,21.6,omega,lower,0.02327839471399784 +karman_re100,ppo,55,22.0,omega,front,0.014929615892469883 +karman_re100,ppo,55,22.0,omega,upper,-0.06655542552471161 +karman_re100,ppo,55,22.0,omega,lower,0.02130073495209217 +karman_re100,ppo,56,22.4,omega,front,0.01526801660656929 +karman_re100,ppo,56,22.4,omega,upper,-0.05615986883640289 +karman_re100,ppo,56,22.4,omega,lower,0.01991668902337551 +karman_re100,ppo,57,22.8,omega,front,0.012751639820635319 +karman_re100,ppo,57,22.8,omega,upper,-0.044400475919246674 +karman_re100,ppo,57,22.8,omega,lower,0.023844672366976738 +karman_re100,ppo,58,23.2,omega,front,0.01052129827439785 +karman_re100,ppo,58,23.2,omega,upper,-0.03344056010246277 +karman_re100,ppo,58,23.2,omega,lower,0.04184351861476898 +karman_re100,ppo,59,23.6,omega,front,0.007016402203589678 +karman_re100,ppo,59,23.6,omega,upper,-0.0274727251380682 +karman_re100,ppo,59,23.6,omega,lower,0.06506291031837463 +karman_re100,ppo,60,24.0,omega,front,0.00047134130727499723 +karman_re100,ppo,60,24.0,omega,upper,-0.028879787772893906 +karman_re100,ppo,60,24.0,omega,lower,0.07458131015300751 +karman_re100,ppo,61,24.4,omega,front,-0.006516400258988142 +karman_re100,ppo,61,24.4,omega,upper,-0.029514146968722343 +karman_re100,ppo,61,24.4,omega,lower,0.07381661236286163 +karman_re100,ppo,62,24.8,omega,front,-0.014989063143730164 +karman_re100,ppo,62,24.8,omega,upper,-0.022981900721788406 +karman_re100,ppo,62,24.8,omega,lower,0.06773858517408371 +karman_re100,ppo,63,25.2,omega,front,-0.023222969844937325 +karman_re100,ppo,63,25.2,omega,upper,-0.01485288143157959 +karman_re100,ppo,63,25.2,omega,lower,0.05485260859131813 +karman_re100,ppo,64,25.6,omega,front,-0.02602066658437252 +karman_re100,ppo,64,25.6,omega,upper,-0.011473147198557854 +karman_re100,ppo,64,25.6,omega,lower,0.045407384634017944 +karman_re100,ppo,65,26.0,omega,front,-0.022484660148620605 +karman_re100,ppo,65,26.0,omega,upper,-0.015091368928551674 +karman_re100,ppo,65,26.0,omega,lower,0.04080396145582199 +karman_re100,ppo,66,26.4,omega,front,-0.017269207164645195 +karman_re100,ppo,66,26.4,omega,upper,-0.027460306882858276 +karman_re100,ppo,66,26.4,omega,lower,0.04108991473913193 +karman_re100,ppo,67,26.8,omega,front,-0.014266299083828926 +karman_re100,ppo,67,26.8,omega,upper,-0.043870098888874054 +karman_re100,ppo,67,26.8,omega,lower,0.03762238472700119 +karman_re100,ppo,68,27.2,omega,front,-0.011195872910320759 +karman_re100,ppo,68,27.2,omega,upper,-0.05831250548362732 +karman_re100,ppo,68,27.2,omega,lower,0.031162509694695473 +karman_re100,ppo,69,27.6,omega,front,-0.0060365949757397175 +karman_re100,ppo,69,27.6,omega,upper,-0.06618534028530121 +karman_re100,ppo,69,27.6,omega,lower,0.02869679220020771 +karman_re100,ppo,70,28.0,omega,front,-0.0004473490989767015 +karman_re100,ppo,70,28.0,omega,upper,-0.069309763610363 +karman_re100,ppo,70,28.0,omega,lower,0.02842109650373459 +karman_re100,ppo,71,28.4,omega,front,0.005213966127485037 +karman_re100,ppo,71,28.4,omega,upper,-0.07202509790658951 +karman_re100,ppo,71,28.4,omega,lower,0.025644492357969284 +karman_re100,ppo,72,28.8,omega,front,0.011429456993937492 +karman_re100,ppo,72,28.8,omega,upper,-0.07175852358341217 +karman_re100,ppo,72,28.8,omega,lower,0.022915605455636978 +karman_re100,ppo,73,29.2,omega,front,0.015536452643573284 +karman_re100,ppo,73,29.2,omega,upper,-0.06595933437347412 +karman_re100,ppo,73,29.2,omega,lower,0.02088785544037819 +karman_re100,ppo,74,29.6,omega,front,0.015719063580036163 +karman_re100,ppo,74,29.6,omega,upper,-0.05572264641523361 +karman_re100,ppo,74,29.6,omega,lower,0.019377896562218666 +karman_re100,ppo,75,30.0,omega,front,0.012862710282206535 +karman_re100,ppo,75,30.0,omega,upper,-0.044030532240867615 +karman_re100,ppo,75,30.0,omega,lower,0.02363901026546955 +karman_re100,ppo,76,30.4,omega,front,0.010443142615258694 +karman_re100,ppo,76,30.4,omega,upper,-0.03325308859348297 +karman_re100,ppo,76,30.4,omega,lower,0.042197685688734055 +karman_re100,ppo,77,30.8,omega,front,0.006778218783438206 +karman_re100,ppo,77,30.8,omega,upper,-0.02784169465303421 +karman_re100,ppo,77,30.8,omega,lower,0.06483981013298035 +karman_re100,ppo,78,31.2,omega,front,0.0002086647873511538 +karman_re100,ppo,78,31.2,omega,upper,-0.029273008927702904 +karman_re100,ppo,78,31.2,omega,lower,0.07393503934144974 +karman_re100,ppo,79,31.6,omega,front,-0.006950311362743378 +karman_re100,ppo,79,31.6,omega,upper,-0.02917918562889099 +karman_re100,ppo,79,31.6,omega,lower,0.07346688210964203 +karman_re100,ppo,80,32.0,omega,front,-0.015702050179243088 +karman_re100,ppo,80,32.0,omega,upper,-0.022275561466813087 +karman_re100,ppo,80,32.0,omega,lower,0.06702549755573273 +karman_re100,ppo,81,32.4,omega,front,-0.02369428053498268 +karman_re100,ppo,81,32.4,omega,upper,-0.014736947603523731 +karman_re100,ppo,81,32.4,omega,lower,0.05524394288659096 +karman_re100,ppo,82,32.8,omega,front,-0.026480115950107574 +karman_re100,ppo,82,32.8,omega,upper,-0.010732128284871578 +karman_re100,ppo,82,32.8,omega,lower,0.04475482925772667 +karman_re100,ppo,83,33.2,omega,front,-0.023179730400443077 +karman_re100,ppo,83,33.2,omega,upper,-0.014094316400587559 +karman_re100,ppo,83,33.2,omega,lower,0.03996521607041359 +karman_re100,ppo,84,33.6,omega,front,-0.017612772062420845 +karman_re100,ppo,84,33.6,omega,upper,-0.02637743018567562 +karman_re100,ppo,84,33.6,omega,lower,0.04044646769762039 +karman_re100,ppo,85,34.0,omega,front,-0.014621088281273842 +karman_re100,ppo,85,34.0,omega,upper,-0.042474642395973206 +karman_re100,ppo,85,34.0,omega,lower,0.0374738909304142 +karman_re100,ppo,86,34.4,omega,front,-0.011827926151454449 +karman_re100,ppo,86,34.4,omega,upper,-0.057013001292943954 +karman_re100,ppo,86,34.4,omega,lower,0.031401827931404114 +karman_re100,ppo,87,34.8,omega,front,-0.006808305624872446 +karman_re100,ppo,87,34.8,omega,upper,-0.06571241468191147 +karman_re100,ppo,87,34.8,omega,lower,0.028432201594114304 +karman_re100,ppo,88,35.2,omega,front,-0.0012639681808650494 +karman_re100,ppo,88,35.2,omega,upper,-0.06892497092485428 +karman_re100,ppo,88,35.2,omega,lower,0.02857322432100773 +karman_re100,ppo,89,35.6,omega,front,0.004168907646089792 +karman_re100,ppo,89,35.6,omega,upper,-0.07150174677371979 +karman_re100,ppo,89,35.6,omega,lower,0.026350507512688637 +karman_re100,ppo,90,36.0,omega,front,0.010139920748770237 +karman_re100,ppo,90,36.0,omega,upper,-0.07219011336565018 +karman_re100,ppo,90,36.0,omega,lower,0.02349412813782692 +karman_re100,ppo,91,36.4,omega,front,0.014644503593444824 +karman_re100,ppo,91,36.4,omega,upper,-0.06741688400506973 +karman_re100,ppo,91,36.4,omega,lower,0.021580418571829796 +karman_re100,ppo,92,36.8,omega,front,0.015353646129369736 +karman_re100,ppo,92,36.8,omega,upper,-0.05770300328731537 +karman_re100,ppo,92,36.8,omega,lower,0.02004885859787464 +karman_re100,ppo,93,37.2,omega,front,0.012997057288885117 +karman_re100,ppo,93,37.2,omega,upper,-0.04615270346403122 +karman_re100,ppo,93,37.2,omega,lower,0.023047132417559624 +karman_re100,ppo,94,37.6,omega,front,0.01075031142681837 +karman_re100,ppo,94,37.6,omega,upper,-0.035100243985652924 +karman_re100,ppo,94,37.6,omega,lower,0.03934156149625778 +karman_re100,ppo,95,38.0,omega,front,0.007448541931807995 +karman_re100,ppo,95,38.0,omega,upper,-0.028226861730217934 +karman_re100,ppo,95,38.0,omega,lower,0.06274299323558807 +karman_re100,ppo,96,38.4,omega,front,0.0010142007376998663 +karman_re100,ppo,96,38.4,omega,upper,-0.028806375339627266 +karman_re100,ppo,96,38.4,omega,lower,0.0738932192325592 +karman_re100,ppo,97,38.8,omega,front,-0.0060720681212842464 +karman_re100,ppo,97,38.8,omega,upper,-0.02994757518172264 +karman_re100,ppo,97,38.8,omega,lower,0.0738457515835762 +karman_re100,ppo,98,39.2,omega,front,-0.01447969488799572 +karman_re100,ppo,98,39.2,omega,upper,-0.023841222748160362 +karman_re100,ppo,98,39.2,omega,lower,0.06840979307889938 +karman_re100,ppo,99,39.6,omega,front,-0.023109551519155502 +karman_re100,ppo,99,39.6,omega,upper,-0.015805747359991074 +karman_re100,ppo,99,39.6,omega,lower,0.05672511085867882 +karman_re100,ppo,100,40.0,omega,front,-0.02685181051492691 +karman_re100,ppo,100,40.0,omega,upper,-0.011207828298211098 +karman_re100,ppo,100,40.0,omega,lower,0.04579085856676102 +karman_re100,ppo,101,40.4,omega,front,-0.02426529861986637 +karman_re100,ppo,101,40.4,omega,upper,-0.013160867616534233 +karman_re100,ppo,101,40.4,omega,lower,0.03995084762573242 +karman_re100,ppo,102,40.8,omega,front,-0.018564380705356598 +karman_re100,ppo,102,40.8,omega,upper,-0.024322493001818657 +karman_re100,ppo,102,40.8,omega,lower,0.04027906805276871 +karman_re100,ppo,103,41.2,omega,front,-0.015110297128558159 +karman_re100,ppo,103,41.2,omega,upper,-0.040374141186475754 +karman_re100,ppo,103,41.2,omega,lower,0.03794889897108078 +karman_re100,ppo,104,41.6,omega,front,-0.012469599954783916 +karman_re100,ppo,104,41.6,omega,upper,-0.05558619275689125 +karman_re100,ppo,104,41.6,omega,lower,0.03190786391496658 +karman_re100,ppo,105,42.0,omega,front,-0.007635141257196665 +karman_re100,ppo,105,42.0,omega,upper,-0.06530462950468063 +karman_re100,ppo,105,42.0,omega,lower,0.02843249775469303 +karman_re100,ppo,106,42.4,omega,front,-0.0020108846947550774 +karman_re100,ppo,106,42.4,omega,upper,-0.06885330379009247 +karman_re100,ppo,106,42.4,omega,lower,0.02866475097835064 +karman_re100,ppo,107,42.8,omega,front,0.0033874197397381067 +karman_re100,ppo,107,42.8,omega,upper,-0.07146501541137695 +karman_re100,ppo,107,42.8,omega,lower,0.02683938480913639 +karman_re100,ppo,108,43.2,omega,front,0.009390913881361485 +karman_re100,ppo,108,43.2,omega,upper,-0.0724533423781395 +karman_re100,ppo,108,43.2,omega,lower,0.02379012107849121 +karman_re100,ppo,109,43.6,omega,front,0.01412397250533104 +karman_re100,ppo,109,43.6,omega,upper,-0.06815898418426514 +karman_re100,ppo,109,43.6,omega,lower,0.02181553840637207 +karman_re100,ppo,110,44.0,omega,front,0.015239721164107323 +karman_re100,ppo,110,44.0,omega,upper,-0.05866938456892967 +karman_re100,ppo,110,44.0,omega,lower,0.020199427381157875 +karman_re100,ppo,111,44.4,omega,front,0.013083023950457573 +karman_re100,ppo,111,44.4,omega,upper,-0.047018613666296005 +karman_re100,ppo,111,44.4,omega,lower,0.022586457431316376 +karman_re100,ppo,112,44.8,omega,front,0.010840801522135735 +karman_re100,ppo,112,44.8,omega,upper,-0.035717278718948364 +karman_re100,ppo,112,44.8,omega,lower,0.037862423807382584 +karman_re100,ppo,113,45.2,omega,front,0.007742616813629866 +karman_re100,ppo,113,45.2,omega,upper,-0.02838118001818657 +karman_re100,ppo,113,45.2,omega,lower,0.06152014061808586 +karman_re100,ppo,114,45.6,omega,front,0.0014883967814967036 +karman_re100,ppo,114,45.6,omega,upper,-0.0285886749625206 +karman_re100,ppo,114,45.6,omega,lower,0.07374504208564758 +karman_re100,ppo,115,46.0,omega,front,-0.005557592958211899 +karman_re100,ppo,115,46.0,omega,upper,-0.030007043853402138 +karman_re100,ppo,115,46.0,omega,lower,0.07403229176998138 +karman_re100,ppo,116,46.4,omega,front,-0.013774167746305466 +karman_re100,ppo,116,46.4,omega,upper,-0.024341506883502007 +karman_re100,ppo,116,46.4,omega,lower,0.06905832886695862 +karman_re100,ppo,117,46.8,omega,front,-0.022551754489541054 +karman_re100,ppo,117,46.8,omega,upper,-0.016247710213065147 +karman_re100,ppo,117,46.8,omega,lower,0.05766337737441063 +karman_re100,ppo,118,47.2,omega,front,-0.026702145114541054 +karman_re100,ppo,118,47.2,omega,upper,-0.011413369327783585 +karman_re100,ppo,118,47.2,omega,lower,0.04657755792140961 +karman_re100,ppo,119,47.6,omega,front,-0.024436572566628456 +karman_re100,ppo,119,47.6,omega,upper,-0.012868349440395832 +karman_re100,ppo,119,47.6,omega,lower,0.04030369222164154 +karman_re100,ppo,120,48.0,omega,front,-0.01875072717666626 +karman_re100,ppo,120,48.0,omega,upper,-0.023463618010282516 +karman_re100,ppo,120,48.0,omega,lower,0.04042372480034828 +karman_re100,ppo,121,48.4,omega,front,-0.015135952271521091 +karman_re100,ppo,121,48.4,omega,upper,-0.039498381316661835 +karman_re100,ppo,121,48.4,omega,lower,0.03831211104989052 +karman_re100,ppo,122,48.8,omega,front,-0.012598443776369095 +karman_re100,ppo,122,48.8,omega,upper,-0.05492762476205826 +karman_re100,ppo,122,48.8,omega,lower,0.03222791850566864 +karman_re100,ppo,123,49.2,omega,front,-0.007918299175798893 +karman_re100,ppo,123,49.2,omega,upper,-0.06507286429405212 +karman_re100,ppo,123,49.2,omega,lower,0.028345441445708275 +karman_re100,ppo,124,49.6,omega,front,-0.002254544524475932 +karman_re100,ppo,124,49.6,omega,upper,-0.06879588216543198 +karman_re100,ppo,124,49.6,omega,lower,0.028564471751451492 +karman_re100,ppo,125,50.0,omega,front,0.00312796444632113 +karman_re100,ppo,125,50.0,omega,upper,-0.07135415822267532 +karman_re100,ppo,125,50.0,omega,lower,0.026944126933813095 +karman_re100,ppo,126,50.4,omega,front,0.009086609818041325 +karman_re100,ppo,126,50.4,omega,upper,-0.0726158544421196 +karman_re100,ppo,126,50.4,omega,lower,0.023877734318375587 +karman_re100,ppo,127,50.8,omega,front,0.014010028913617134 +karman_re100,ppo,127,50.8,omega,upper,-0.06867486983537674 +karman_re100,ppo,127,50.8,omega,lower,0.02180563472211361 +karman_re100,ppo,128,51.2,omega,front,0.01529786642640829 +karman_re100,ppo,128,51.2,omega,upper,-0.05936868488788605 +karman_re100,ppo,128,51.2,omega,lower,0.0201888345181942 +karman_re100,ppo,129,51.6,omega,front,0.01322843786329031 +karman_re100,ppo,129,51.6,omega,upper,-0.047799475491046906 +karman_re100,ppo,129,51.6,omega,lower,0.022056663408875465 +karman_re100,ppo,130,52.0,omega,front,0.010867363773286343 +karman_re100,ppo,130,52.0,omega,upper,-0.036425039172172546 +karman_re100,ppo,130,52.0,omega,lower,0.03641541302204132 +karman_re100,ppo,131,52.4,omega,front,0.007929100655019283 +karman_re100,ppo,131,52.4,omega,upper,-0.02859967201948166 +karman_re100,ppo,131,52.4,omega,lower,0.060350894927978516 +karman_re100,ppo,132,52.8,omega,front,0.0018041239818558097 +karman_re100,ppo,132,52.8,omega,upper,-0.028445014730095863 +karman_re100,ppo,132,52.8,omega,lower,0.07353981584310532 +karman_re100,ppo,133,53.2,omega,front,-0.005248688161373138 +karman_re100,ppo,133,53.2,omega,upper,-0.030135275796055794 +karman_re100,ppo,133,53.2,omega,lower,0.07413926720619202 +karman_re100,ppo,134,53.6,omega,front,-0.013383248820900917 +karman_re100,ppo,134,53.6,omega,upper,-0.024782003834843636 +karman_re100,ppo,134,53.6,omega,lower,0.0695345476269722 +karman_re100,ppo,135,54.0,omega,front,-0.022305892780423164 +karman_re100,ppo,135,54.0,omega,upper,-0.0165350791066885 +karman_re100,ppo,135,54.0,omega,lower,0.058181703090667725 +karman_re100,ppo,136,54.4,omega,front,-0.02679242566227913 +karman_re100,ppo,136,54.4,omega,upper,-0.011435921303927898 +karman_re100,ppo,136,54.4,omega,lower,0.046965569257736206 +karman_re100,ppo,137,54.8,omega,front,-0.024860817939043045 +karman_re100,ppo,137,54.8,omega,upper,-0.012371277436614037 +karman_re100,ppo,137,54.8,omega,lower,0.04028402641415596 +karman_re100,ppo,138,55.2,omega,front,-0.019174009561538696 +karman_re100,ppo,138,55.2,omega,upper,-0.022434301674365997 +karman_re100,ppo,138,55.2,omega,lower,0.040224578231573105 +karman_re100,ppo,139,55.6,omega,front,-0.015321063809096813 +karman_re100,ppo,139,55.6,omega,upper,-0.03832527622580528 +karman_re100,ppo,139,55.6,omega,lower,0.03851998597383499 +karman_re100,ppo,140,56.0,omega,front,-0.012849260121583939 +karman_re100,ppo,140,56.0,omega,upper,-0.053922079503536224 +karman_re100,ppo,140,56.0,omega,lower,0.03261066973209381 +karman_re100,ppo,141,56.4,omega,front,-0.008304478600621223 +karman_re100,ppo,141,56.4,omega,upper,-0.06455042958259583 +karman_re100,ppo,141,56.4,omega,lower,0.028436575084924698 +karman_re100,ppo,142,56.8,omega,front,-0.0026563862338662148 +karman_re100,ppo,142,56.8,omega,upper,-0.0686240866780281 +karman_re100,ppo,142,56.8,omega,lower,0.028554830700159073 +karman_re100,ppo,143,57.2,omega,front,0.002716406248509884 +karman_re100,ppo,143,57.2,omega,upper,-0.0711912214756012 +karman_re100,ppo,143,57.2,omega,lower,0.02717546373605728 +karman_re100,ppo,144,57.6,omega,front,0.00863741897046566 +karman_re100,ppo,144,57.6,omega,upper,-0.07262888550758362 +karman_re100,ppo,144,57.6,omega,lower,0.024090886116027832 +karman_re100,ppo,145,58.0,omega,front,0.013757373206317425 +karman_re100,ppo,145,58.0,omega,upper,-0.0691048875451088 +karman_re100,ppo,145,58.0,omega,lower,0.02197633869946003 +karman_re100,ppo,146,58.4,omega,front,0.015390737913548946 +karman_re100,ppo,146,58.4,omega,upper,-0.06025765463709831 +karman_re100,ppo,146,58.4,omega,lower,0.02030339278280735 +karman_re100,ppo,147,58.8,omega,front,0.013446076773107052 +karman_re100,ppo,147,58.8,omega,upper,-0.048639409244060516 +karman_re100,ppo,147,58.8,omega,lower,0.02169814147055149 +karman_re100,ppo,148,59.2,omega,front,0.01106741651892662 +karman_re100,ppo,148,59.2,omega,upper,-0.03717885538935661 +karman_re100,ppo,148,59.2,omega,lower,0.03495751693844795 +karman_re100,ppo,149,59.6,omega,front,0.008314142934978008 +karman_re100,ppo,149,59.6,omega,upper,-0.028961891308426857 +karman_re100,ppo,149,59.6,omega,lower,0.058736324310302734 +karman_re100,ppo,150,60.0,omega,front,0.002374084200710058 +karman_re100,ppo,150,60.0,omega,upper,-0.028282728046178818 +karman_re100,ppo,150,60.0,omega,lower,0.07306269556283951 +karman_re100,ppo,151,60.4,omega,front,-0.004692924674600363 +karman_re100,ppo,151,60.4,omega,upper,-0.030191272497177124 +karman_re100,ppo,151,60.4,omega,lower,0.07425398379564285 +karman_re100,ppo,152,60.8,omega,front,-0.012633442878723145 +karman_re100,ppo,152,60.8,omega,upper,-0.025409387424588203 +karman_re100,ppo,152,60.8,omega,lower,0.07012613862752914 +karman_re100,ppo,153,61.2,omega,front,-0.0217088982462883 +karman_re100,ppo,153,61.2,omega,upper,-0.017184704542160034 +karman_re100,ppo,153,61.2,omega,lower,0.05916298180818558 +karman_re100,ppo,154,61.6,omega,front,-0.02664429135620594 +karman_re100,ppo,154,61.6,omega,upper,-0.011747484095394611 +karman_re100,ppo,154,61.6,omega,lower,0.04778949171304703 +karman_re100,ppo,155,62.0,omega,front,-0.0251774825155735 +karman_re100,ppo,155,62.0,omega,upper,-0.012010965496301651 +karman_re100,ppo,155,62.0,omega,lower,0.04056382179260254 +karman_re100,ppo,156,62.4,omega,front,-0.01959358900785446 +karman_re100,ppo,156,62.4,omega,upper,-0.021491028368473053 +karman_re100,ppo,156,62.4,omega,lower,0.0401727668941021 +karman_re100,ppo,157,62.8,omega,front,-0.015536308288574219 +karman_re100,ppo,157,62.8,omega,upper,-0.03714561089873314 +karman_re100,ppo,157,62.8,omega,lower,0.038878485560417175 +karman_re100,ppo,158,63.2,omega,front,-0.01311449147760868 +karman_re100,ppo,158,63.2,omega,upper,-0.05297328904271126 +karman_re100,ppo,158,63.2,omega,lower,0.03306731954216957 +karman_re100,ppo,159,63.6,omega,front,-0.00871269777417183 +karman_re100,ppo,159,63.6,omega,upper,-0.06405383348464966 +karman_re100,ppo,159,63.6,omega,lower,0.02855294570326805 +karman_re100,ppo,160,64.0,omega,front,-0.003050136612728238 +karman_re100,ppo,160,64.0,omega,upper,-0.06844102591276169 +karman_re100,ppo,160,64.0,omega,lower,0.028573112562298775 +karman_re100,ppo,161,64.4,omega,front,0.002327580936253071 +karman_re100,ppo,161,64.4,omega,upper,-0.0709969699382782 +karman_re100,ppo,161,64.4,omega,lower,0.02735491655766964 +karman_re100,ppo,162,64.8,omega,front,0.008212908171117306 +karman_re100,ppo,162,64.8,omega,upper,-0.07265765219926834 +karman_re100,ppo,162,64.8,omega,lower,0.024266041815280914 +karman_re100,ppo,163,65.2,omega,front,0.013493344187736511 +karman_re100,ppo,163,65.2,omega,upper,-0.06955917924642563 +karman_re100,ppo,163,65.2,omega,lower,0.022107450291514397 +karman_re100,ppo,164,65.6,omega,front,0.015374219045042992 +karman_re100,ppo,164,65.6,omega,upper,-0.06087609753012657 +karman_re100,ppo,164,65.6,omega,lower,0.02035137638449669 +karman_re100,ppo,165,66.0,omega,front,0.013626492582261562 +karman_re100,ppo,165,66.0,omega,upper,-0.049430686980485916 +karman_re100,ppo,165,66.0,omega,lower,0.021322006359696388 +karman_re100,ppo,166,66.4,omega,front,0.011201840825378895 +karman_re100,ppo,166,66.4,omega,upper,-0.03788979351520538 +karman_re100,ppo,166,66.4,omega,lower,0.033563628792762756 +karman_re100,ppo,167,66.8,omega,front,0.008586350828409195 +karman_re100,ppo,167,66.8,omega,upper,-0.029269570484757423 +karman_re100,ppo,167,66.8,omega,lower,0.057262372225522995 +karman_re100,ppo,168,67.2,omega,front,0.0028359852731227875 +karman_re100,ppo,168,67.2,omega,upper,-0.028128236532211304 +karman_re100,ppo,168,67.2,omega,lower,0.07263398915529251 +karman_re100,ppo,169,67.6,omega,front,-0.004228043835610151 +karman_re100,ppo,169,67.6,omega,upper,-0.030226849019527435 +karman_re100,ppo,169,67.6,omega,lower,0.07441017776727676 +karman_re100,ppo,170,68.0,omega,front,-0.012018976733088493 +karman_re100,ppo,170,68.0,omega,upper,-0.025965694338083267 +karman_re100,ppo,170,68.0,omega,lower,0.07068882882595062 +karman_re100,ppo,171,68.4,omega,front,-0.02116110734641552 +karman_re100,ppo,171,68.4,omega,upper,-0.017657503485679626 +karman_re100,ppo,171,68.4,omega,lower,0.06003807112574577 +karman_re100,ppo,172,68.8,omega,front,-0.02656262367963791 +karman_re100,ppo,172,68.8,omega,upper,-0.01192395854741335 +karman_re100,ppo,172,68.8,omega,lower,0.04838188365101814 +karman_re100,ppo,173,69.2,omega,front,-0.025451816618442535 +karman_re100,ppo,173,69.2,omega,upper,-0.01173373218625784 +karman_re100,ppo,173,69.2,omega,lower,0.0408414788544178 +karman_re100,ppo,174,69.6,omega,front,-0.01992504484951496 +karman_re100,ppo,174,69.6,omega,upper,-0.02068515680730343 +karman_re100,ppo,174,69.6,omega,lower,0.040094561874866486 +karman_re100,ppo,175,70.0,omega,front,-0.015699833631515503 +karman_re100,ppo,175,70.0,omega,upper,-0.03600867837667465 +karman_re100,ppo,175,70.0,omega,lower,0.03915201500058174 +karman_re100,ppo,176,70.4,omega,front,-0.013273091986775398 +karman_re100,ppo,176,70.4,omega,upper,-0.05195902660489082 +karman_re100,ppo,176,70.4,omega,lower,0.0335809588432312 +karman_re100,ppo,177,70.8,omega,front,-0.009067975915968418 +karman_re100,ppo,177,70.8,omega,upper,-0.06356687843799591 +karman_re100,ppo,177,70.8,omega,lower,0.028680624440312386 +karman_re100,ppo,178,71.2,omega,front,-0.0034053782001137733 +karman_re100,ppo,178,71.2,omega,upper,-0.0682978704571724 +karman_re100,ppo,178,71.2,omega,lower,0.028501728549599648 +karman_re100,ppo,179,71.6,omega,front,0.0019808223005384207 +karman_re100,ppo,179,71.6,omega,upper,-0.07083501666784286 +karman_re100,ppo,179,71.6,omega,lower,0.0275249183177948 +karman_re100,ppo,180,72.0,omega,front,0.007838251069188118 +karman_re100,ppo,180,72.0,omega,upper,-0.07265779376029968 +karman_re100,ppo,180,72.0,omega,lower,0.02443873882293701 +karman_re100,ppo,181,72.4,omega,front,0.013247489929199219 +karman_re100,ppo,181,72.4,omega,upper,-0.06995982676744461 +karman_re100,ppo,181,72.4,omega,lower,0.022241277620196342 +karman_re100,ppo,182,72.8,omega,front,0.015403000637888908 +karman_re100,ppo,182,72.8,omega,upper,-0.06166652962565422 +karman_re100,ppo,182,72.8,omega,lower,0.020478762686252594 +karman_re100,ppo,183,73.2,omega,front,0.01383790373802185 +karman_re100,ppo,183,73.2,omega,upper,-0.0502462238073349 +karman_re100,ppo,183,73.2,omega,lower,0.020961159840226173 +karman_re100,ppo,184,73.6,omega,front,0.011345705948770046 +karman_re100,ppo,184,73.6,omega,upper,-0.03865870460867882 +karman_re100,ppo,184,73.6,omega,lower,0.032162364572286606 +karman_re100,ppo,185,74.0,omega,front,0.00885511003434658 +karman_re100,ppo,185,74.0,omega,upper,-0.029643230140209198 +karman_re100,ppo,185,74.0,omega,lower,0.05561518669128418 +karman_re100,ppo,186,74.4,omega,front,0.00330261024646461 +karman_re100,ppo,186,74.4,omega,upper,-0.027967046946287155 +karman_re100,ppo,186,74.4,omega,lower,0.07212173193693161 +karman_re100,ppo,187,74.8,omega,front,-0.0037539806216955185 +karman_re100,ppo,187,74.8,omega,upper,-0.030203785747289658 +karman_re100,ppo,187,74.8,omega,lower,0.07450379431247711 +karman_re100,ppo,188,75.2,omega,front,-0.011415913701057434 +karman_re100,ppo,188,75.2,omega,upper,-0.02647719718515873 +karman_re100,ppo,188,75.2,omega,lower,0.07114409655332565 +karman_re100,ppo,189,75.6,omega,front,-0.020629849284887314 +karman_re100,ppo,189,75.6,omega,upper,-0.01819002628326416 +karman_re100,ppo,189,75.6,omega,lower,0.06086842343211174 +karman_re100,ppo,190,76.0,omega,front,-0.026352662593126297 +karman_re100,ppo,190,76.0,omega,upper,-0.01215752586722374 +karman_re100,ppo,190,76.0,omega,lower,0.04912304878234863 +karman_re100,ppo,191,76.4,omega,front,-0.025687264278531075 +karman_re100,ppo,191,76.4,omega,upper,-0.011541640385985374 +karman_re100,ppo,191,76.4,omega,lower,0.040930237621068954 +karman_re100,ppo,192,76.8,omega,front,-0.020355798304080963 +karman_re100,ppo,192,76.8,omega,upper,-0.01970861479640007 +karman_re100,ppo,192,76.8,omega,lower,0.040053196251392365 +karman_re100,ppo,193,77.2,omega,front,-0.01588301546871662 +karman_re100,ppo,193,77.2,omega,upper,-0.03488580137491226 +karman_re100,ppo,193,77.2,omega,lower,0.039433740079402924 +karman_re100,ppo,194,77.6,omega,front,-0.01347338780760765 +karman_re100,ppo,194,77.6,omega,upper,-0.050962500274181366 +karman_re100,ppo,194,77.6,omega,lower,0.033942703157663345 +karman_re100,ppo,195,78.0,omega,front,-0.009431855753064156 +karman_re100,ppo,195,78.0,omega,upper,-0.06296847015619278 +karman_re100,ppo,195,78.0,omega,lower,0.028875790536403656 +karman_re100,ppo,196,78.4,omega,front,-0.0037919445894658566 +karman_re100,ppo,196,78.4,omega,upper,-0.0681014209985733 +karman_re100,ppo,196,78.4,omega,lower,0.0284664798527956 +karman_re100,ppo,197,78.8,omega,front,0.0015982894692569971 +karman_re100,ppo,197,78.8,omega,upper,-0.07064330577850342 +karman_re100,ppo,197,78.8,omega,lower,0.02772393822669983 +karman_re100,ppo,198,79.2,omega,front,0.007392320316284895 +karman_re100,ppo,198,79.2,omega,upper,-0.07263915240764618 +karman_re100,ppo,198,79.2,omega,lower,0.024664955213665962 +karman_re100,ppo,199,79.6,omega,front,0.013025544583797455 +karman_re100,ppo,199,79.6,omega,upper,-0.07010113447904587 +karman_re100,ppo,199,79.6,omega,lower,0.022179139778017998 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_manifest.json new file mode 100644 index 0000000..3163908 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re100", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re100/controlled.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_wide.csv new file mode 100644 index 0000000..e55576f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re100,ppo,0,0.0,0.9709039330482483,0.2778119146823883,0.9676973819732666,0.36769822239875793,1.1022075414657593,0.29072946310043335,0.00029048335272818804,0.003256825730204582,-0.006489500403404236,0.0021631838753819466,0.005222808104008436,-0.0040438733994960785,1.3321279287338257,-7.146883964538574,2.303671360015869,0.013321278616786003,-0.07146883755922318,0.023036712780594826 +karman_re100,ppo,1,0.4,0.9415207505226135,0.23514942824840546,0.9664052724838257,0.30900734663009644,1.1412029266357422,0.26178237795829773,0.0018532680114731193,0.0016717618564143777,-0.0062775821425020695,0.0022632572799921036,0.003917732276022434,-0.003955738618969917,1.5221006870269775,-6.257075786590576,2.3259525299072266,0.015221006236970425,-0.06257075816392899,0.023259524255990982 +karman_re100,ppo,2,0.8,0.9252344369888306,0.16098111867904663,0.9555662274360657,0.20538637042045593,1.1765094995498657,0.21470759809017181,0.0025434098206460476,0.0003902101016137749,-0.006339931860566139,0.0017894069897010922,0.002846615621820092,-0.004206875339150429,1.3575665950775146,-5.207825660705566,2.1182103157043457,0.013575665652751923,-0.0520782545208931,0.02118210308253765 +karman_re100,ppo,3,1.2,0.9195926189422607,0.05493824556469917,0.9470482468605042,0.0598134882748127,1.1940525770187378,0.12777075171470642,0.0017849826253950596,-0.0010302071459591389,-0.005798878148198128,0.003242708509787917,0.0018117268336936831,-0.0042830053716897964,1.3112810850143433,-4.715657711029053,1.8277181386947632,0.0131128104403615,-0.047156576067209244,0.018277181312441826 +karman_re100,ppo,4,1.6,0.9175910353660583,-0.0716681107878685,0.9472340941429138,-0.08316131681203842,1.169426441192627,-0.0025739900302141905,0.0006374265067279339,-0.002281723078340292,-0.0033873068168759346,0.0053958832286298275,0.0006860963185317814,-0.00431571202352643,1.0120980739593506,-3.534660577774048,2.9372262954711914,0.010120980441570282,-0.03534660488367081,0.029372261837124825 +karman_re100,ppo,5,2.0,0.9345345497131348,-0.17275147140026093,0.9496811032295227,-0.20904181897640228,1.1260844469070435,-0.12521012127399445,-0.000429347186582163,-0.0026480110827833414,-0.0002986715408042073,0.006091086193919182,-0.00045585804036818445,-0.004360404796898365,0.6309263706207275,-2.352982997894287,5.559906959533691,0.0063092634081840515,-0.02352982945740223,0.055599067360162735 +karman_re100,ppo,6,2.4,0.9716048240661621,-0.23390717804431915,0.9509647488594055,-0.3097527027130127,1.0927534103393555,-0.20457133650779724,-0.00090946996351704,-0.0029564336873590946,0.001951042446307838,0.005769950803369284,-0.0017739370232447982,-0.004365337081253529,0.13141797482967377,-2.4106335639953613,7.03110408782959,0.001314179738983512,-0.024106334894895554,0.070311039686203 +karman_re100,ppo,7,2.8,1.0143113136291504,-0.27776122093200684,0.9560368061065674,-0.36463192105293274,1.056153416633606,-0.25657567381858826,-0.0005774656892754138,-0.0035475511103868484,0.003274191403761506,0.005616077687591314,-0.00322538148611784,-0.0035937584470957518,-0.34950539469718933,-2.791900634765625,7.2478108406066895,-0.003495053853839636,-0.02791900560259819,0.07247810810804367 +karman_re100,ppo,8,3.2,1.056980848312378,-0.29848966002464294,0.9617626070976257,-0.3830200433731079,1.0134693384170532,-0.28142616152763367,0.0005562750739045441,-0.0038017453625798225,0.003955121152102947,0.005470018368214369,-0.0050385682843625546,-0.0025682535488158464,-0.8866881132125854,-2.4229443073272705,7.149287700653076,-0.008866881020367146,-0.024229442700743675,0.07149287313222885 +karman_re100,ppo,9,3.6,1.0980604887008667,-0.28764447569847107,0.9675838947296143,-0.3625679314136505,0.9759576916694641,-0.27335384488105774,0.002057035453617573,-0.0033367255236953497,0.0037861166056245565,0.005135705694556236,-0.006334025412797928,-0.002297475701197982,-1.4705945253372192,-1.8637278079986572,6.47968864440918,-0.014705944806337357,-0.0186372771859169,0.06479688733816147 +karman_re100,ppo,10,4.0,1.1357303857803345,-0.2591927647590637,0.9653085470199585,-0.30363166332244873,0.9466985464096069,-0.2305513173341751,0.0032733094412833452,-0.0021556688006967306,0.0028997145127505064,0.004782157018780708,-0.006582585629075766,-0.0026541135739535093,-1.657439947128296,-1.7638616561889648,5.755279541015625,-0.016574399545788765,-0.017638616263866425,0.057552795857191086 +karman_re100,ppo,11,4.4,1.1691312789916992,-0.2135164439678192,0.9525955319404602,-0.20030780136585236,0.9297465682029724,-0.15582579374313354,0.0031002992764115334,-0.0008191209053620696,0.0019553164020180702,0.004506054800003767,-0.005484377034008503,-0.0037719460669904947,-1.4349493980407715,-2.1529524326324463,5.309651851654053,-0.014349493198096752,-0.02152952365577221,0.05309651792049408 +karman_re100,ppo,12,4.8,1.185331106185913,-0.12954086065292358,0.9415746927261353,-0.055968619883060455,0.9231547713279724,-0.04858606308698654,0.001757805235683918,0.0005362111260183156,0.0009747222065925598,0.004434884060174227,-0.0029553610365837812,-0.005263268947601318,-1.096930742263794,-3.2125113010406494,5.004480361938477,-0.010969307273626328,-0.03212511166930199,0.05004480108618736 +karman_re100,ppo,13,5.2,1.1628172397613525,-0.0014581248397007585,0.9407121539115906,0.08756628632545471,0.9224338531494141,0.07947118580341339,0.0002796921180561185,0.0015925182960927486,-0.00022658983652945608,0.004335278179496527,0.00036055492819286883,-0.00612831162288785,-0.8209068775177002,-4.780428886413574,4.332826137542725,-0.008209068328142166,-0.04780428856611252,0.04332825914025307 +karman_re100,ppo,14,5.6,1.1200729608535767,0.12031976878643036,0.9415270090103149,0.215410515666008,0.9414420127868652,0.1800745576620102,-0.000684386701323092,0.002365105552598834,-0.0016962921945378184,0.0039023812860250473,0.0032099250238388777,-0.005830448120832443,-0.5146970748901367,-6.13303279876709,3.391568183898926,-0.005146970506757498,-0.06133032590150833,0.0339156799018383 +karman_re100,ppo,15,6.0,1.0828789472579956,0.19958345592021942,0.9390735030174255,0.31833529472351074,0.9782232046127319,0.24274824559688568,-0.0009911522502079606,0.0030203801579773426,-0.003298407420516014,0.0029880418442189693,0.004836201202124357,-0.005191364791244268,-0.03636343777179718,-6.7743096351623535,2.91085147857666,-0.00036363437538966537,-0.06774309277534485,0.02910851500928402 +karman_re100,ppo,16,6.4,1.040338397026062,0.2496970295906067,0.9393398761749268,0.3744255304336548,1.0196377038955688,0.28772497177124023,-0.0005341351497918367,0.0034687009174376726,-0.005185240879654884,0.001850006403401494,0.005472629796713591,-0.00503110745921731,0.5091121196746826,-7.086981773376465,2.5878896713256836,0.005091120954602957,-0.0708698183298111,0.025878896936774254 +karman_re100,ppo,17,6.8,0.9935014247894287,0.27287447452545166,0.9416049122810364,0.39459478855133057,1.0638513565063477,0.3091020882129669,0.0008421501261182129,0.003652470652014017,-0.007269468158483505,0.0013504140079021454,0.005437682382762432,-0.0052223242819309235,1.1869723796844482,-7.256282806396484,2.229677677154541,0.011869723908603191,-0.07256282866001129,0.022296776995062828 +karman_re100,ppo,18,7.2,0.950883686542511,0.2615574598312378,0.941098690032959,0.3747028112411499,1.106866478919983,0.299032598733902,0.0027733915485441685,0.0033721309155225754,-0.008625403977930546,0.0017755606677383184,0.004748739767819643,-0.005322207231074572,1.8511027097702026,-6.903808116912842,2.026543140411377,0.018511027097702026,-0.06903807818889618,0.020265430212020874 +karman_re100,ppo,19,7.6,0.9191317558288574,0.21429675817489624,0.9312832355499268,0.3144672214984894,1.1498379707336426,0.272093802690506,0.004095541313290596,0.0025355208199471235,-0.008358502760529518,0.0026584079023450613,0.003629727056249976,-0.004977329168468714,2.0860366821289062,-5.9846391677856445,1.777233362197876,0.02086036652326584,-0.059846390038728714,0.017772333696484566 +karman_re100,ppo,20,8.0,0.9041010141372681,0.13340653479099274,0.9107217192649841,0.20267808437347412,1.1897499561309814,0.21927614510059357,0.0039238352328538895,0.0009920474840328097,-0.006514725275337696,0.003610165324062109,0.002313952660188079,-0.004591846838593483,1.770702838897705,-4.900747299194336,1.5767778158187866,0.01770702749490738,-0.04900747165083885,0.015767777338624 +karman_re100,ppo,21,8.4,0.9016017913818359,0.023354699835181236,0.8863152265548706,0.03672696277499199,1.2078680992126465,0.11589336395263672,0.0024883514270186424,-0.0006244576070457697,-0.003869215026497841,0.004971128422766924,0.001116812927648425,-0.004424592480063438,1.1937004327774048,-3.9601614475250244,2.063188076019287,0.011937004514038563,-0.03960161283612251,0.020631879568099976 +karman_re100,ppo,22,8.8,0.909199595451355,-0.10430904477834702,0.8749072551727295,-0.14969705045223236,1.195060133934021,-0.0312715619802475,0.0006422937149181962,-0.0015923172468319535,-0.0007210829062387347,0.006483880337327719,3.76612733816728e-05,-0.0043650539591908455,0.74370276927948,-3.0977869033813477,4.019021034240723,0.007437027525156736,-0.030977867543697357,0.040190208703279495 +karman_re100,ppo,23,9.2,0.9374370574951172,-0.20815522968769073,0.8833985328674316,-0.3118325471878052,1.1411662101745605,-0.19850033521652222,-0.0005141334841027856,-0.002036022488027811,0.0023547338787466288,0.006930836476385593,-0.0014558263355866075,-0.004287038464099169,0.3608790934085846,-2.568655490875244,6.627094745635986,0.00360879092477262,-0.025686554610729218,0.06627094745635986 +karman_re100,ppo,24,9.6,0.9845808148384094,-0.27456429600715637,0.9018001556396484,-0.421967476606369,1.0670826435089111,-0.32048752903938293,-0.000691126799210906,-0.002798211295157671,0.004345325753092766,0.006614703685045242,-0.003130937460809946,-0.0040495614521205425,-0.2614800035953522,-2.679436683654785,7.695155620574951,-0.00261479988694191,-0.026794366538524628,0.07695155590772629 +karman_re100,ppo,25,10.0,1.0394443273544312,-0.322548508644104,0.9221569895744324,-0.47995758056640625,0.9961594343185425,-0.3748443126678467,7.981940871104598e-05,-0.0036572867538779974,0.005324304103851318,0.006391590926796198,-0.004909429233521223,-0.002846034709364176,-0.9540444612503052,-2.6841516494750977,7.469958782196045,-0.009540444239974022,-0.02684151567518711,0.07469958811998367 +karman_re100,ppo,26,10.4,1.0966613292694092,-0.3377894163131714,0.9385675191879272,-0.49651041626930237,0.932808518409729,-0.3760647475719452,0.0018500137375667691,-0.004005294293165207,0.00547541631385684,0.006149375345557928,-0.006969192065298557,-0.0017882236279547215,-1.7347157001495361,-1.9936904907226562,6.700107097625732,-0.01734715700149536,-0.019936904311180115,0.06700106710195541 +karman_re100,ppo,27,10.8,1.1529531478881836,-0.31714868545532227,0.9460339546203613,-0.4687967598438263,0.8746010661125183,-0.33333176374435425,0.0040439339354634285,-0.0035973074845969677,0.004716895986348391,0.005644667893648148,-0.008377834223210812,-0.0016010355902835727,-2.3594110012054443,-1.2807016372680664,5.560535430908203,-0.02359410934150219,-0.012807016260921955,0.05560535192489624 +karman_re100,ppo,28,11.2,1.2075119018554688,-0.26297828555107117,0.9413063526153564,-0.3881608843803406,0.8284239768981934,-0.24450767040252686,0.0053962296806275845,-0.0024345689453184605,0.003493658499792218,0.00485414220020175,-0.008437798358500004,-0.002095564967021346,-2.4206035137176514,-1.067385196685791,4.70844841003418,-0.02420603483915329,-0.01067385170608759,0.04708448424935341 +karman_re100,ppo,29,11.6,1.2420765161514282,-0.14714586734771729,0.9233714938163757,-0.21997743844985962,0.8022379279136658,-0.11355482786893845,0.004825809504836798,-0.0008697712328284979,0.0024028560146689415,0.004298810847103596,-0.006903014611452818,-0.0033057373948395252,-1.9783029556274414,-1.616365909576416,4.405108451843262,-0.019783029332756996,-0.0161636583507061,0.04405108466744423 +karman_re100,ppo,30,12.0,1.2492023706436157,0.009786643087863922,0.9106659889221191,0.06582187861204147,0.8062187433242798,0.035644788295030594,0.0029010919388383627,0.00046217883937060833,0.0014786801766604185,0.004277014173567295,-0.004129729699343443,-0.004887147806584835,-1.4344903230667114,-2.983045816421509,4.351139545440674,-0.014344902709126472,-0.029830457642674446,0.043511394411325455 +karman_re100,ppo,31,12.4,1.2145378589630127,0.16796495020389557,0.9208974242210388,0.33232414722442627,0.8444077968597412,0.16965872049331665,0.0008284067152999341,0.0013932656729593873,0.0003289449668955058,0.004492057487368584,-0.0007427518139593303,-0.006121372804045677,-1.1933469772338867,-4.668217182159424,3.856999397277832,-0.011933469213545322,-0.046682171523571014,0.038569994270801544 +karman_re100,ppo,32,12.8,1.1469789743423462,0.2885872721672058,0.9388285279273987,0.4694617986679077,0.9015955328941345,0.2695032060146332,-0.0005077321548014879,0.00220820726826787,-0.0010779963340610266,0.0045638736337423325,0.002282726811245084,-0.006255899090319872,-0.9714488983154297,-6.055218696594238,3.1111814975738525,-0.009714488871395588,-0.06055218726396561,0.031111814081668854 +karman_re100,ppo,33,13.2,1.0726068019866943,0.35936832427978516,0.9538568258285522,0.5278605222702026,0.9684926867485046,0.3329940438270569,-0.0011360910721123219,0.0028801364824175835,-0.0023952091578394175,0.004251966252923012,0.004057403653860092,-0.0057427240535616875,-0.45377376675605774,-6.731426239013672,2.8428165912628174,-0.004537737462669611,-0.0673142597079277,0.02842816524207592 +karman_re100,ppo,34,13.6,1.0023831129074097,0.386077344417572,0.9652966856956482,0.5560632944107056,1.039613962173462,0.37601611018180847,-0.001032680505886674,0.0033660572953522205,-0.00362606905400753,0.0034383898600935936,0.004794379696249962,-0.0055156066082417965,0.13490352034568787,-6.938529014587402,2.8396849632263184,0.0013490351848304272,-0.06938529014587402,0.0283968485891819 +karman_re100,ppo,35,14.0,0.9337940216064453,0.3761533498764038,0.9686163067817688,0.5608623027801514,1.1096705198287964,0.3898056149482727,-4.4246509787626565e-05,0.0035611100029200315,-0.0049880919978022575,0.0025331194046884775,0.004994736053049564,-0.005582138430327177,0.7131134271621704,-7.135851860046387,2.6107852458953857,0.007131134159862995,-0.07135851681232452,0.026107851415872574 +karman_re100,ppo,36,14.4,0.8704457879066467,0.3237706422805786,0.9606712460517883,0.5303454399108887,1.1805062294006348,0.3653607666492462,0.0014463802799582481,0.0032589896582067013,-0.006177512928843498,0.0020961600821465254,0.004636079538613558,-0.005586797371506691,1.3420194387435913,-7.095191955566406,2.3720786571502686,0.013420194387435913,-0.0709519162774086,0.023720785975456238 +karman_re100,ppo,37,14.8,0.8200109601020813,0.22545787692070007,0.9346612691879272,0.4394037127494812,1.251347541809082,0.29870668053627014,0.0028417124412953854,0.00235242722555995,-0.006591002456843853,0.002239139284938574,0.0037257329095155,-0.005292917601764202,1.762679100036621,-6.5337815284729,2.181612014770508,0.017626790329813957,-0.06533781439065933,0.02181611955165863 +karman_re100,ppo,38,15.2,0.7900267243385315,0.0881519615650177,0.8947667479515076,0.2169811874628067,1.3000547885894775,0.16107207536697388,0.0031948857940733433,0.0009153124410659075,-0.0058334642089903355,0.002913480391725898,0.00252393982373178,-0.004927865695208311,1.747351884841919,-5.525385856628418,1.9741939306259155,0.01747351884841919,-0.055253855884075165,0.01974193938076496 +karman_re100,ppo,39,15.6,0.794557511806488,-0.06277541816234589,0.8848479986190796,-0.12391293793916702,1.3057206869125366,-0.02246488817036152,0.002318234648555517,-0.0006557553424499929,-0.003993054386228323,0.004207245074212551,0.0012893781531602144,-0.004664990119636059,1.4191464185714722,-4.417978286743164,2.2044005393981934,0.014191463589668274,-0.04417978227138519,0.022044004872441292 +karman_re100,ppo,40,16.0,0.8380486965179443,-0.19050998985767365,0.9115650653839111,-0.3891279697418213,1.253037452697754,-0.19592346251010895,0.0007684135343879461,-0.001748944167047739,-0.001367765013128519,0.005691459868103266,0.00019457617599982768,-0.004556219559162855,1.151934027671814,-3.351814031600952,3.8367297649383545,0.011519339866936207,-0.03351813927292824,0.03836729750037193 +karman_re100,ppo,41,16.4,0.9003173112869263,-0.2848178446292877,0.9412792921066284,-0.5132113695144653,1.1679819822311401,-0.3179885745048523,-0.0005452547338791192,-0.0021055988036096096,0.001451103831641376,0.006239013746380806,-0.001029955456033349,-0.004407960921525955,0.8500692844390869,-2.672001838684082,6.329621315002441,0.008500692434608936,-0.026720017194747925,0.06329621374607086 +karman_re100,ppo,42,16.8,0.9750264883041382,-0.34415698051452637,0.967231035232544,-0.5667238831520081,1.082522988319397,-0.3866736888885498,-0.0010938576888293028,-0.0026429377030581236,0.0034499752800911665,0.005913404282182455,-0.0023624671157449484,-0.004141996614634991,0.19364075362682343,-2.7818567752838135,7.501190185546875,0.0019364075269550085,-0.02781856805086136,0.07501190155744553 +karman_re100,ppo,43,17.2,1.052505373954773,-0.38225430250167847,0.9869014620780945,-0.5961102843284607,0.999591588973999,-0.41375577449798584,-0.0007559194345958531,-0.003332023974508047,0.00461199227720499,0.005793899297714233,-0.0038287893403321505,-0.0028947421815246344,-0.5262085795402527,-2.9808509349823,7.4451003074646,-0.005262085702270269,-0.02980850823223591,0.07445099949836731 +karman_re100,ppo,44,17.6,1.128128170967102,-0.3861459493637085,1.0004887580871582,-0.601006031036377,0.9185275435447693,-0.4021500051021576,0.0007282652659341693,-0.0037313327193260193,0.005176090635359287,0.005784803535789251,-0.005875550676137209,-0.0015961624449118972,-1.3334007263183594,-2.442291736602783,6.927313804626465,-0.013334007002413273,-0.024422917515039444,0.06927313655614853 +karman_re100,ppo,45,18.0,1.2022641897201538,-0.34545230865478516,1.0087952613830566,-0.5697780847549438,0.8442839980125427,-0.34407857060432434,0.0029155912343412638,-0.0034890458919107914,0.004852547310292721,0.0055952854454517365,-0.007699952926486731,-0.0011896580690518022,-2.154155731201172,-1.6899542808532715,5.815095901489258,-0.02154155634343624,-0.01689954288303852,0.05815095826983452 +karman_re100,ppo,46,18.4,1.2652775049209595,-0.25407513976097107,1.0099841356277466,-0.4615824222564697,0.7845078110694885,-0.23284004628658295,0.0048471298068761826,-0.0024587863590568304,0.0037109171971678734,0.005103988107293844,-0.008566421456634998,-0.001518763485364616,-2.4986820220947266,-1.3247175216674805,4.775747299194336,-0.02498682029545307,-0.013247175142168999,0.04775747284293175 +karman_re100,ppo,47,18.8,1.2870296239852905,-0.09833318740129471,1.0125142335891724,-0.15439440310001373,0.7527583837509155,-0.07568273693323135,0.0049108886159956455,-0.0009762805420905352,0.0025571605656296015,0.00452507333829999,-0.007782384287565947,-0.0026786932721734047,-2.257676601409912,-1.5707416534423828,4.211227893829346,-0.022576766088604927,-0.015707416459918022,0.04211227968335152 +karman_re100,ppo,48,19.2,1.2757906913757324,0.062378935515880585,1.0245517492294312,0.22526557743549347,0.7707619667053223,0.08812428265810013,0.0033219491597265005,0.0005160364089533687,0.001601984491571784,0.004359529819339514,-0.0054647731594741344,-0.004280649125576019,-1.769968867301941,-2.660625457763672,4.201745510101318,-0.01769968867301941,-0.026606254279613495,0.04201745241880417 +karman_re100,ppo,49,19.6,1.2320044040679932,0.19289880990982056,1.0285052061080933,0.43707239627838135,0.830273449420929,0.21222807466983795,0.001241913065314293,0.0014735424192622304,0.0006228957208804786,0.0044687530025839806,-0.002295092446729541,-0.0057538882829248905,-1.4818971157073975,-4.254806995391846,3.879639148712158,-0.014818971045315266,-0.04254806786775589,0.03879639133810997 +karman_re100,ppo,50,20.0,1.1690571308135986,0.2889239192008972,1.02922785282135,0.5027104616165161,0.9038335680961609,0.2982977628707886,-0.0003363724099472165,0.002163778757676482,-0.0005833739996887743,0.0045869480818510056,0.0008914226782508194,-0.006197574082762003,-1.2023048400878906,-5.76853609085083,3.1599135398864746,-0.012023048475384712,-0.05768536031246185,0.03159913420677185 +karman_re100,ppo,51,20.4,1.1019728183746338,0.34533068537712097,1.0329149961471558,0.5300077199935913,0.980132520198822,0.35041457414627075,-0.0011691924883052707,0.002713259542360902,-0.0017304581124335527,0.004420269280672073,0.0030584470368921757,-0.005831311456859112,-0.6844732761383057,-6.626391410827637,2.8424715995788574,-0.006844732444733381,-0.06626391410827637,0.028424715623259544 +karman_re100,ppo,52,20.8,1.0329179763793945,0.3655959665775299,1.0356589555740356,0.5445960760116577,1.0534310340881348,0.38258761167526245,-0.0012623434886336327,0.0031963461078703403,-0.00286190677434206,0.0036750060971826315,0.004137968644499779,-0.005578239448368549,-0.1169591024518013,-6.911383628845215,2.874941825866699,-0.0011695909779518843,-0.0691138356924057,0.028749417513608932 +karman_re100,ppo,53,21.2,0.9660810232162476,0.3497769832611084,1.0372785329818726,0.5366832613945007,1.1250050067901611,0.38948068022727966,-0.0004877186147496104,0.0034273830242455006,-0.004239396657794714,0.0027282624505460262,0.004585328046232462,-0.005588027648627758,0.4335324466228485,-7.164649963378906,2.6359035968780518,0.00433532427996397,-0.07164649665355682,0.026359034702181816 +karman_re100,ppo,54,21.6,0.9011826515197754,0.2879236340522766,1.0273652076721191,0.49052950739860535,1.1901166439056396,0.35790884494781494,0.0009054836118593812,0.0031410842202603817,-0.005474111996591091,0.0022575499024242163,0.004404477309435606,-0.005531304981559515,1.0531078577041626,-7.200906753540039,2.3278396129608154,0.010531078092753887,-0.07200906425714493,0.02327839471399784 +karman_re100,ppo,55,22.0,0.8484302759170532,0.1813790202140808,1.001872181892395,0.38434258103370667,1.25221848487854,0.2918948829174042,0.0022837496362626553,0.002259082393720746,-0.006009504199028015,0.0024591132532805204,0.0035802111960947514,-0.005275626666843891,1.4929616451263428,-6.655542850494385,2.1300735473632812,0.014929615892469883,-0.06655542552471161,0.02130073495209217 +karman_re100,ppo,56,22.4,0.8194841742515564,0.040441468358039856,0.9654461741447449,0.16268238425254822,1.2935465574264526,0.16204465925693512,0.0028038627933710814,0.0008814672473818064,-0.005385134369134903,0.0032084807753562927,0.0024162251502275467,-0.004958974663168192,1.5268017053604126,-5.6159868240356445,1.991668939590454,0.01526801660656929,-0.05615986883640289,0.01991668902337551 +karman_re100,ppo,57,22.8,0.8280076384544373,-0.09849317371845245,0.9497827887535095,-0.14430244266986847,1.29408597946167,-0.014983042143285275,0.002078975783661008,-0.0006059735896997154,-0.0035893148742616177,0.004544963128864765,0.001234107301570475,-0.004703186452388763,1.275164008140564,-4.440047740936279,2.384467363357544,0.012751639820635319,-0.044400475919246674,0.023844672366976738 +karman_re100,ppo,58,23.2,0.8696796894073486,-0.2111143171787262,0.9622249007225037,-0.36373618245124817,1.241626262664795,-0.1818496286869049,0.0006459567230194807,-0.0016547718551009893,-0.0009276745258830488,0.005841893143951893,0.0001118157961172983,-0.004567968659102917,1.052129864692688,-3.3440561294555664,4.184351921081543,0.01052129827439785,-0.03344056010246277,0.04184351861476898 +karman_re100,ppo,59,23.6,0.9306238293647766,-0.2940503656864166,0.9826028347015381,-0.4694458842277527,1.1679366827011108,-0.2969719469547272,-0.0005521373241208494,-0.002076296368613839,0.0017695699352771044,0.006152159534394741,-0.0011882914695888758,-0.004376721568405628,0.701640248298645,-2.747272491455078,6.506291389465332,0.007016402203589678,-0.0274727251380682,0.06506291031837463 +karman_re100,ppo,60,24.0,0.9972089529037476,-0.3434238135814667,0.9965878129005432,-0.5195947885513306,1.089592695236206,-0.35785457491874695,-0.001023008837364614,-0.002701027086004615,0.003641013288870454,0.00581673439592123,-0.002561706816777587,-0.003923064563423395,0.04713413119316101,-2.8879787921905518,7.458131313323975,0.00047134130727499723,-0.028879787772893906,0.07458131015300751 +karman_re100,ppo,61,24.4,1.0671100616455078,-0.3776913583278656,1.0079938173294067,-0.5470414757728577,1.0159828662872314,-0.37887927889823914,-0.0005652221734635532,-0.0034310680348426104,0.004796854220330715,0.005743612069636583,-0.0042313262820243835,-0.002539009554311633,-0.6516400575637817,-2.9514148235321045,7.381661415100098,-0.006516400258988142,-0.029514146968722343,0.07381661236286163 +karman_re100,ppo,62,24.8,1.1402134895324707,-0.38168370723724365,1.0148948431015015,-0.547112762928009,0.9415170550346375,-0.3618243336677551,0.0012328661978244781,-0.0038516076747328043,0.005181869491934776,0.0056211380288004875,-0.006666216999292374,-0.0012811273336410522,-1.4989063739776611,-2.298190116882324,6.773858547210693,-0.014989063143730164,-0.022981900721788406,0.06773858517408371 +karman_re100,ppo,63,25.2,1.2111694812774658,-0.34617024660110474,1.0129567384719849,-0.5098505616188049,0.8759809732437134,-0.3016170263290405,0.0035339409951120615,-0.0035767301451414824,0.004815808963030577,0.0055528562515974045,-0.008379241451621056,-0.0011193006066605449,-2.3222970962524414,-1.485288143157959,5.485260963439941,-0.023222969844937325,-0.01485288143157959,0.05485260859131813 +karman_re100,ppo,64,25.6,1.2729500532150269,-0.26095303893089294,0.9914400577545166,-0.39621102809906006,0.8216681480407715,-0.18959301710128784,0.005448675714433193,-0.002471423940733075,0.0035570894833654165,0.004919077735394239,-0.009042234160006046,-0.0015979777090251446,-2.6020667552948,-1.1473147869110107,4.540738582611084,-0.02602066658437252,-0.011473147198557854,0.045407384634017944 +karman_re100,ppo,65,26.0,1.3028512001037598,-0.1140383929014206,0.9681165814399719,-0.13894127309322357,0.7979012131690979,-0.04980245605111122,0.005216344725340605,-0.0010146640706807375,0.0025063969660550356,0.004302863031625748,-0.007948346436023712,-0.0028457387816160917,-2.2484660148620605,-1.5091369152069092,4.0803961753845215,-0.022484660148620605,-0.015091368928551674,0.04080396145582199 +karman_re100,ppo,66,26.4,1.2908152341842651,0.059176791459321976,0.9707306623458862,0.20095743238925934,0.8132858872413635,0.09221009165048599,0.0034226488787680864,0.0004360470629762858,0.0015955178532749414,0.004195988643914461,-0.005372074898332357,-0.004413996823132038,-1.7269207239151,-2.746030807495117,4.108991622924805,-0.017269207164645195,-0.027460306882858276,0.04108991473913193 +karman_re100,ppo,67,26.8,1.2398806810379028,0.20202812552452087,0.990305483341217,0.4052480459213257,0.8634063601493835,0.2067190706729889,0.0012998117599636316,0.0014066003495827317,0.0005885502905584872,0.004403228871524334,-0.0020580501295626163,-0.005746600683778524,-1.426629900932312,-4.387010097503662,3.7622385025024414,-0.014266299083828926,-0.043870098888874054,0.03762238472700119 +karman_re100,ppo,68,27.2,1.1722301244735718,0.2986043691635132,1.0072898864746094,0.48099014163017273,0.9262731671333313,0.29036396741867065,-0.00026767730014398694,0.0021622320637106895,-0.0006514047272503376,0.004584860056638718,0.0010667413007467985,-0.006106875371187925,-1.1195873022079468,-5.8312506675720215,3.116250991821289,-0.011195872910320759,-0.05831250548362732,0.031162509694695473 +karman_re100,ppo,69,27.6,1.102735161781311,0.3530125021934509,1.02061128616333,0.5176758766174316,0.9965351223945618,0.34115809202194214,-0.0010516337351873517,0.0027794232591986656,-0.00184325547888875,0.004395540803670883,0.003143308451399207,-0.005822339095175266,-0.6036595106124878,-6.618534088134766,2.8696792125701904,-0.0060365949757397175,-0.06618534028530121,0.02869679220020771 +karman_re100,ppo,70,28.0,1.033913254737854,0.36984607577323914,1.02986741065979,0.5356084704399109,1.066470742225647,0.3739924728870392,-0.001070602098479867,0.003295290283858776,-0.0030587578658014536,0.0036156175192445517,0.004186211619526148,-0.005654367618262768,-0.04473491013050079,-6.930976390838623,2.8421096801757812,-0.0004473490989767015,-0.069309763610363,0.02842109650373459 +karman_re100,ppo,71,28.4,0.9648802280426025,0.3507973551750183,1.0333492755889893,0.5275729894638062,1.1331026554107666,0.37989142537117004,-0.0002107582986354828,0.003537863725796342,-0.004469757899641991,0.0027335570193827152,0.004607765469700098,-0.005646034609526396,0.5213966369628906,-7.202509880065918,2.5644493103027344,0.005213966127485037,-0.07202509790658951,0.025644492357969284 +karman_re100,ppo,72,28.8,0.9002426266670227,0.28676557540893555,1.0262423753738403,0.47982096672058105,1.1943519115447998,0.3477340638637543,0.001223573461174965,0.003253750503063202,-0.005673372186720371,0.0023259278386831284,0.004364839754998684,-0.005583241116255522,1.1429457664489746,-7.175852298736572,2.291560649871826,0.011429456993937492,-0.07175852358341217,0.022915605455636978 +karman_re100,ppo,73,29.2,0.8506268858909607,0.17756086587905884,1.006913423538208,0.37124159932136536,1.255942702293396,0.28144368529319763,0.0025960728526115417,0.002356146462261677,-0.006159880664199591,0.0025083806831389666,0.003547930158674717,-0.005325955338776112,1.5536452531814575,-6.595933437347412,2.0887856483459473,0.015536452643573284,-0.06595933437347412,0.02088785544037819 +karman_re100,ppo,74,29.6,0.8214596509933472,0.03421761840581894,0.971933126449585,0.1463523507118225,1.2887340784072876,0.15165765583515167,0.0029972600750625134,0.0009719253284856677,-0.005433329381048679,0.0032928823493421078,0.0023991381749510765,-0.004974524024873972,1.5719064474105835,-5.572264671325684,1.9377896785736084,0.015719063580036163,-0.05572264641523361,0.019377896562218666 +karman_re100,ppo,75,30.0,0.831959068775177,-0.1064164862036705,0.9569587111473083,-0.15907002985477448,1.2846441268920898,-0.021242570132017136,0.002165453974157572,-0.0005470463656820357,-0.0035437322221696377,0.004631557501852512,0.0012200715718790889,-0.00471879169344902,1.286271095275879,-4.403053283691406,2.363901138305664,0.012862710282206535,-0.044030532240867615,0.02363901026546955 +karman_re100,ppo,76,30.4,0.8750095963478088,-0.2201855331659317,0.9666649103164673,-0.37145909667015076,1.2330683469772339,-0.18273304402828217,0.0007107194978743792,-0.0015925623010843992,-0.0008512947242707014,0.005837270524352789,9.099856106331572e-05,-0.0045921094715595245,1.0443142652511597,-3.3253090381622314,4.219768524169922,0.010443142615258694,-0.03325308859348297,0.042197685688734055 +karman_re100,ppo,77,30.8,0.9347975850105286,-0.30043914914131165,0.98110032081604,-0.4751795530319214,1.1561534404754639,-0.296576589345932,-0.00044916197657585144,-0.0020631239749491215,0.0018389044562354684,0.006081272382289171,-0.0012314729392528534,-0.004406252410262823,0.6778218746185303,-2.7841694355010986,6.483981132507324,0.006778218783438206,-0.02784169465303421,0.06483981013298035 +karman_re100,ppo,78,31.2,1.0041731595993042,-0.3485104739665985,0.9952790141105652,-0.5253354907035828,1.0788605213165283,-0.3575265407562256,-0.0009024098399095237,-0.002725479658693075,0.0037014379631727934,0.005833265837281942,-0.0026199573185294867,-0.0038950482849031687,0.020866479724645615,-2.9273009300231934,7.3935041427612305,0.0002086647873511538,-0.029273008927702904,0.07393503934144974 +karman_re100,ppo,79,31.6,1.0753730535507202,-0.3821098208427429,1.0062919855117798,-0.5536080002784729,1.0046404600143433,-0.378165602684021,-0.00040742798591963947,-0.0034385668113827705,0.004852378275245428,0.00582267576828599,-0.004340686369687319,-0.002468534978106618,-0.6950311660766602,-2.9179186820983887,7.346688270568848,-0.006950311362743378,-0.02917918562889099,0.07346688210964203 +karman_re100,ppo,80,32.0,1.144782304763794,-0.3850865960121155,1.0113935470581055,-0.5556858777999878,0.9311182498931885,-0.3627805709838867,0.0012174067087471485,-0.003872878849506378,0.005331625230610371,0.005819861311465502,-0.006553691811859608,-0.0013538378989323974,-1.5702050924301147,-2.2275562286376953,6.702549934387207,-0.015702050179243088,-0.022275561466813087,0.06702549755573273 +karman_re100,ppo,81,32.4,1.2135967016220093,-0.3488142788410187,1.008115530014038,-0.5216673016548157,0.8633967638015747,-0.30507799983024597,0.0036429145839065313,-0.0036383485421538353,0.004814361222088337,0.0056002093479037285,-0.00848271232098341,-0.001071675680577755,-2.3694281578063965,-1.4736948013305664,5.524394512176514,-0.02369428053498268,-0.014736947603523731,0.05524394288659096 +karman_re100,ppo,82,32.8,1.2749717235565186,-0.26690539717674255,0.9896684885025024,-0.4190767705440521,0.8092604875564575,-0.20021317899227142,0.0055512599647045135,-0.002676957519724965,0.0036545144394040108,0.004912784788757563,-0.009204021655023098,-0.001517511554993689,-2.6480116844177246,-1.0732128620147705,4.475482940673828,-0.026480115950107574,-0.010732128284871578,0.04475482925772667 +karman_re100,ppo,83,33.2,1.303310513496399,-0.11675916612148285,0.9683176279067993,-0.15530526638031006,0.7825344800949097,-0.05914440006017685,0.00544197391718626,-0.0011426425771787763,0.0025568995624780655,0.004233457613736391,-0.008127511478960514,-0.0027065190952271223,-2.3179731369018555,-1.4094316959381104,3.9965217113494873,-0.023179730400443077,-0.014094316400587559,0.03996521607041359 +karman_re100,ppo,84,33.6,1.2913124561309814,0.054867640137672424,0.9738811254501343,0.19780246913433075,0.7989221811294556,0.08429434895515442,0.003708999138325453,0.00033012041239999235,0.0016741352155804634,0.004089013207703829,-0.005625490564852953,-0.004214705433696508,-1.761277198791504,-2.6377429962158203,4.044646739959717,-0.017612772062420845,-0.02637743018567562,0.04044646769762039 +karman_re100,ppo,85,34.0,1.2424590587615967,0.1933804154396057,0.9916167259216309,0.4113653302192688,0.8505764603614807,0.19770637154579163,0.0015237299958243966,0.0012949579395353794,0.0007228018948808312,0.004302177112549543,-0.0024306578561663628,-0.005604195408523083,-1.462108850479126,-4.247464179992676,3.747389078140259,-0.014621088281273842,-0.042474642395973206,0.0374738909304142 +karman_re100,ppo,86,34.4,1.1761971712112427,0.29089897871017456,1.006981372833252,0.4855383634567261,0.9156488180160522,0.2834554612636566,-0.0001237257820321247,0.002082443330436945,-0.00049929617671296,0.004533860366791487,0.0007155373459681869,-0.006121625192463398,-1.1827926635742188,-5.701300144195557,3.1401829719543457,-0.011827926151454449,-0.057013001292943954,0.031401827931404114 +karman_re100,ppo,87,34.8,1.1065664291381836,0.3482471704483032,1.0191060304641724,0.5198497176170349,0.9865090250968933,0.3365020751953125,-0.0010242168791592121,0.002699356060475111,-0.0016744770109653473,0.004450739361345768,0.0028807383496314287,-0.005873982794582844,-0.6808305978775024,-6.57124137878418,2.8432202339172363,-0.006808305624872446,-0.06571241468191147,0.028432201594114304 +karman_re100,ppo,88,35.2,1.035535216331482,0.369457483291626,1.0270658731460571,0.5392223000526428,1.0569006204605103,0.37115004658699036,-0.001161649008281529,0.0032428265549242496,-0.0028118023183196783,0.00379444332793355,0.0040039317682385445,-0.005650973413139582,-0.12639681994915009,-6.8924970626831055,2.8573224544525146,-0.0012639681808650494,-0.06892497092485428,0.02857322432100773 +karman_re100,ppo,89,35.6,0.9649508595466614,0.35502761602401733,1.0303287506103516,0.534879744052887,1.1237592697143555,0.38017329573631287,-0.0004745480546262115,0.0034968717955052853,-0.0040819281712174416,0.002901893574744463,0.004510937724262476,-0.00569172203540802,0.4168907701969147,-7.150174617767334,2.6350507736206055,0.004168907646089792,-0.07150174677371979,0.026350507512688637 +karman_re100,ppo,90,36.0,0.8999846577644348,0.2966400384902954,1.0271425247192383,0.49337103962898254,1.1889225244522095,0.35103875398635864,0.0008556332322768867,0.003292956156656146,-0.005277592688798904,0.0024060504510998726,0.004397277720272541,-0.005638407543301582,1.0139920711517334,-7.219011306762695,2.3494129180908203,0.010139920748770237,-0.07219011336565018,0.02349412813782692 +karman_re100,ppo,91,36.4,0.8457091450691223,0.19180834293365479,1.0081803798675537,0.39362049102783203,1.2490524053573608,0.2871764004230499,0.002246925374493003,0.002468750812113285,-0.0058413315564394,0.0024961282033473253,0.0036592907272279263,-0.005388809833675623,1.4644503593444824,-6.7416887283325195,2.1580419540405273,0.014644503593444824,-0.06741688400506973,0.021580418571829796 +karman_re100,ppo,92,36.8,0.8150972127914429,0.04931305721402168,0.977131187915802,0.174525648355484,1.286353588104248,0.16210512816905975,0.002834649756550789,0.001117113628424704,-0.005325273144990206,0.003132039913907647,0.002534017199650407,-0.005036462098360062,1.5353646278381348,-5.770300388336182,2.0048859119415283,0.015353646129369736,-0.05770300328731537,0.02004885859787464 +karman_re100,ppo,93,37.2,0.8226932287216187,-0.0942196175456047,0.9617407917976379,-0.1400337815284729,1.2841198444366455,-0.0067810420878231525,0.0022119078785181046,-0.00040277757216244936,-0.0036807283759117126,0.004358145873993635,0.0013493755832314491,-0.004750214982777834,1.2997057437896729,-4.615270614624023,2.304713249206543,0.012997057288885117,-0.04615270346403122,0.023047132417559624 +karman_re100,ppo,94,37.6,0.8645977973937988,-0.21097509562969208,0.9684702157974243,-0.36495286226272583,1.2355369329452515,-0.16610859334468842,0.000824921706225723,-0.0015369309112429619,-0.0011468360899016261,0.005674524698406458,0.00021688958804588765,-0.004583964589983225,1.0750311613082886,-3.5100245475769043,3.9341561794281006,0.01075031142681837,-0.035100243985652924,0.03934156149625778 +karman_re100,ppo,95,38.0,0.925384521484375,-0.29550015926361084,0.9817956686019897,-0.47112196683883667,1.1615010499954224,-0.2818617522716522,-0.00042078454862348735,-0.001999710686504841,0.0015547266229987144,0.006121502723544836,-0.0010460842167958617,-0.004377668723464012,0.744854211807251,-2.822686195373535,6.274299621582031,0.007448541931807995,-0.028226861730217934,0.06274299323558807 +karman_re100,ppo,96,38.4,0.9948557019233704,-0.346282958984375,0.9938661456108093,-0.523128092288971,1.0837044715881348,-0.3474913537502289,-0.0009935233974829316,-0.00260759680531919,0.0035385587252676487,0.005835910327732563,-0.002411261899396777,-0.004002811387181282,0.1014200747013092,-2.8806376457214355,7.389322280883789,0.0010142007376998663,-0.028806375339627266,0.0738932192325592 +karman_re100,ppo,97,38.8,1.0668028593063354,-0.38181546330451965,1.0033795833587646,-0.55326247215271,1.0079936981201172,-0.3726586401462555,-0.0006417008698917925,-0.003335387911647558,0.0047532799653708935,0.005767008289694786,-0.004022947978228331,-0.0026619702111929655,-0.6072068214416504,-2.994757652282715,7.384575366973877,-0.0060720681212842464,-0.02994757518172264,0.0738457515835762 +karman_re100,ppo,98,39.2,1.1382699012756348,-0.38922059535980225,1.0084280967712402,-0.5598897337913513,0.9341659545898438,-0.36241957545280457,0.0008486097794957459,-0.0038352643605321646,0.0053636785596609116,0.005782890133559704,-0.006246951408684254,-0.0013701340649276972,-1.4479695558547974,-2.384122371673584,6.84097957611084,-0.01447969488799572,-0.023841222748160362,0.06840979307889938 +karman_re100,ppo,99,39.6,1.2075059413909912,-0.3565107583999634,1.003592610359192,-0.5318002104759216,0.8634079098701477,-0.31059208512306213,0.0031992588192224503,-0.003705824026837945,0.005025027319788933,0.0056258211843669415,-0.008276603184640408,-0.0009897236013785005,-2.310955286026001,-1.5805747509002686,5.672511100769043,-0.023109551519155502,-0.015805747359991074,0.05672511085867882 +karman_re100,ppo,100,40.0,1.2720730304718018,-0.2787281572818756,0.9845826029777527,-0.44011634588241577,0.806749701499939,-0.21150457859039307,0.00534068001434207,-0.002795693464577198,0.0038577457889914513,0.005033829249441624,-0.009245777502655983,-0.001325302990153432,-2.685181140899658,-1.1207828521728516,4.579085826873779,-0.02685181051492691,-0.011207828298211098,0.04579085856676102 +karman_re100,ppo,101,40.4,1.3055899143218994,-0.12963862717151642,0.9619459509849548,-0.1879296749830246,0.7775154113769531,-0.07337276637554169,0.005566386505961418,-0.0012960731983184814,0.002700447104871273,0.004319583065807819,-0.008455151692032814,-0.0024387913290411234,-2.426529884338379,-1.316086769104004,3.995084762573242,-0.02426529861986637,-0.013160867616534233,0.03995084762573242 +karman_re100,ppo,102,40.8,1.2950187921524048,0.045881010591983795,0.9661124348640442,0.1753462553024292,0.7897285223007202,0.07120450586080551,0.004004032351076603,0.0002577637496870011,0.0017774428706616163,0.004088124725967646,-0.006103771738708019,-0.003956107888370752,-1.856438159942627,-2.4322493076324463,4.027906894683838,-0.018564380705356598,-0.024322493001818657,0.04027906805276871 +karman_re100,ppo,103,41.2,1.2482389211654663,0.1875511109828949,0.9870747923851013,0.40738242864608765,0.8414089679718018,0.18666964769363403,0.0017617068951949477,0.0012517751893028617,0.0008711609407328069,0.004260397050529718,-0.0029790166299790144,-0.005450718570500612,-1.5110297203063965,-4.037414073944092,3.7948899269104004,-0.015110297128558159,-0.040374141186475754,0.03794889897108078 +karman_re100,ppo,104,41.6,1.182770848274231,0.2878747582435608,1.0047938823699951,0.4858766198158264,0.9071598052978516,0.2753007411956787,-2.605239387776237e-05,0.002020337153226137,-0.00030949132633395493,0.004510845057666302,0.00026192457880824804,-0.006137060932815075,-1.2469600439071655,-5.558619499206543,3.190786361694336,-0.012469599954783916,-0.05558619275689125,0.03190786391496658 +karman_re100,ppo,105,42.0,1.112069010734558,0.34807005524635315,1.0172336101531982,0.5193129777908325,0.9774659872055054,0.33130374550819397,-0.0010135946795344353,0.00263447524048388,-0.0014880417147651315,0.004499105736613274,0.0026248106732964516,-0.005946593824774027,-0.7635141611099243,-6.530463218688965,2.843249797821045,-0.007635141257196665,-0.06530462950468063,0.02843249775469303 +karman_re100,ppo,106,42.4,1.0424184799194336,0.3717387020587921,1.0272181034088135,0.5386716723442078,1.049179196357727,0.36737555265426636,-0.001241154968738556,0.00318173342384398,-0.0025969191920012236,0.003914404660463333,0.0038868733681738377,-0.005699470639228821,-0.20108847320079803,-6.885330677032471,2.8664751052856445,-0.0020108846947550774,-0.06885330379009247,0.02866475097835064 +karman_re100,ppo,107,42.8,0.9742519855499268,0.3606036305427551,1.0341907739639282,0.5371183156967163,1.1196461915969849,0.3802888095378876,-0.0006030048243701458,0.003480929648503661,-0.0038842367939651012,0.0030128720682114363,0.004459643270820379,-0.005704564042389393,0.3387419879436493,-7.146501541137695,2.683938503265381,0.0033874197397381067,-0.07146501541137695,0.02683938480913639 +karman_re100,ppo,108,43.2,0.9072627425193787,0.30451083183288574,1.0306051969528198,0.4971264600753784,1.1830377578735352,0.3536081314086914,0.0006621952634304762,0.003306241240352392,-0.005109093151986599,0.0024525895714759827,0.004412940703332424,-0.005655207205563784,0.9390913844108582,-7.245334625244141,2.379012107849121,0.009390913881361485,-0.0724533423781395,0.02379012107849121 +karman_re100,ppo,109,43.6,0.8524683117866516,0.20164266228675842,1.0142790079116821,0.4019758701324463,1.244907021522522,0.29334282875061035,0.0020816167816519737,0.002519178669899702,-0.005771399941295385,0.002479850547388196,0.0037256127689033747,-0.005409427918493748,1.4123972654342651,-6.815898418426514,2.181553840637207,0.01412397250533104,-0.06815898418426514,0.02181553840637207 +karman_re100,ppo,110,44.0,0.8183300495147705,0.05994980409741402,0.983223557472229,0.19522292912006378,1.2840895652770996,0.1743229627609253,0.0027840337716042995,0.0012006652541458607,-0.005377341527491808,0.003071829443797469,0.0026139039546251297,-0.005062791518867016,1.5239721536636353,-5.866938591003418,2.0199427604675293,0.015239721164107323,-0.05866938456892967,0.020199427381157875 +karman_re100,ppo,111,44.4,0.8229215145111084,-0.08568829298019409,0.9665039777755737,-0.11478140950202942,1.2873106002807617,0.007466367445886135,0.002266035648062825,-0.0003201353829354048,-0.003842404577881098,0.00427626958116889,0.0014348482945933938,-0.004776672925800085,1.308302402496338,-4.701861381530762,2.25864577293396,0.013083023950457573,-0.047018613666296005,0.022586457431316376 +karman_re100,ppo,112,44.8,0.8622635006904602,-0.2043289989233017,0.9712561964988708,-0.34837913513183594,1.2421886920928955,-0.1545892357826233,0.000910507864318788,-0.0014932152116671205,-0.0013448538957163692,0.005628343205899,0.000312072312226519,-0.0046091764234006405,1.0840802192687988,-3.571727991104126,3.7862424850463867,0.010840801522135735,-0.035717278718948364,0.037862423807382584 +karman_re100,ppo,113,45.2,0.92082679271698,-0.2911480665206909,0.9830333590507507,-0.46181854605674744,1.1689475774765015,-0.27451831102371216,-0.00037584989331662655,-0.0019829280208796263,0.0013810353120788932,0.0061523765325546265,-0.0009317619842477143,-0.004415880888700485,0.7742617130279541,-2.838118076324463,6.152014255523682,0.007742616813629866,-0.02838118001818657,0.06152014061808586 +karman_re100,ppo,114,45.6,0.9899152517318726,-0.34338095784187317,0.9950518012046814,-0.5170575380325317,1.0921608209609985,-0.34341180324554443,-0.0009774324717000127,-0.00256171147339046,0.0034172760788351297,0.005864822305738926,-0.00231943279504776,-0.004062326159328222,0.14883968234062195,-2.858867645263672,7.374504566192627,0.0014883967814967036,-0.0285886749625206,0.07374504208564758 +karman_re100,ppo,115,46.0,1.061700701713562,-0.37977930903434753,1.0047177076339722,-0.5479605197906494,1.0176204442977905,-0.3705126643180847,-0.000695494469255209,-0.0032905233092606068,0.004666394088417292,0.00575163122266531,-0.003894659923389554,-0.0027547944337129593,-0.5557593107223511,-3.000704526901245,7.403229236602783,-0.005557592958211899,-0.030007043853402138,0.07403229176998138 +karman_re100,ppo,116,46.4,1.1316497325897217,-0.3903930187225342,1.0084069967269897,-0.556444525718689,0.9435936212539673,-0.36252638697624207,0.0007132879109121859,-0.0038105410058051348,0.0053350310772657394,0.005780847743153572,-0.006090632174164057,-0.00142853322904557,-1.3774168491363525,-2.4341506958007812,6.9058332443237305,-0.013774167746305466,-0.024341506883502007,0.06905832886695862 +karman_re100,ppo,117,46.8,1.2012158632278442,-0.36155566573143005,1.0042285919189453,-0.5310794115066528,0.8740277290344238,-0.3141964375972748,0.0030017162207514048,-0.003737060818821192,0.005067335441708565,0.005643554963171482,-0.00815754383802414,-0.001010057283565402,-2.2551755905151367,-1.624770998954773,5.766337871551514,-0.022551754489541054,-0.016247710213065147,0.05766337737441063 +karman_re100,ppo,118,47.2,1.2679283618927002,-0.2898766100406647,0.9847269654273987,-0.44695156812667847,0.8168196678161621,-0.2190086990594864,0.005236846394836903,-0.0028779434505850077,0.003920543473213911,0.0050780498422682285,-0.00921312253922224,-0.0013326230691745877,-2.6702146530151367,-1.1413369178771973,4.6577558517456055,-0.026702145114541054,-0.011413369327783585,0.04657755792140961 +karman_re100,ppo,119,47.6,1.3063790798187256,-0.14764882624149323,0.9567590951919556,-0.2172241061925888,0.7843823432922363,-0.08481798321008682,0.005601346027106047,-0.0014207492349669337,0.0027477999683469534,0.004355854354798794,-0.008517672307789326,-0.0023930836468935013,-2.443657398223877,-1.286834955215454,4.030369281768799,-0.024436572566628456,-0.012868349440395832,0.04030369222164154 +karman_re100,ppo,120,48.0,1.302156925201416,0.03051479533314705,0.9570751190185547,0.14149731397628784,0.7929297685623169,0.059226684272289276,0.00411016121506691,0.00015005342720542103,0.001808722736313939,0.0040833731181919575,-0.006239401642233133,-0.003890977008268237,-1.875072717666626,-2.3463618755340576,4.042372703552246,-0.01875072717666626,-0.023463618010282516,0.04042372480034828 +karman_re100,ppo,121,48.4,1.2563121318817139,0.17895816266536713,0.9791205525398254,0.3898365795612335,0.8401070237159729,0.17664405703544617,0.0018799242097884417,0.00118350051343441,0.0009168192627839744,0.004236340988427401,-0.0031342366710305214,-0.005391272716224194,-1.5135952234268188,-3.949838161468506,3.8312110900878906,-0.015135952271521091,-0.039498381316661835,0.03831211104989052 +karman_re100,ppo,122,48.8,1.1917085647583008,0.2835783064365387,1.00102698802948,0.4794352650642395,0.9043598771095276,0.2679409682750702,6.107497029006481e-05,0.0019596698693931103,-0.00025901480694301426,0.004485114011913538,0.00012704348773695529,-0.006144292186945677,-1.259844422340393,-5.492762565612793,3.222791910171509,-0.012598443776369095,-0.05492762476205826,0.03222791850566864 +karman_re100,ppo,123,49.2,1.1200696229934692,0.3461886942386627,1.01543390750885,0.5152695775032043,0.9734877943992615,0.32595062255859375,-0.0009590315166860819,0.00259210797958076,-0.0014464330160990357,0.0044939410872757435,0.0025634176563471556,-0.005965724587440491,-0.7918299436569214,-6.507286548614502,2.8345441818237305,-0.007918299175798893,-0.06507286429405212,0.028345441445708275 +karman_re100,ppo,124,49.6,1.0495009422302246,0.3719029724597931,1.026102066040039,0.5357967019081116,1.044163465499878,0.36325645446777344,-0.0012356056831777096,0.0031516605522483587,-0.0025553724262863398,0.0039421869441866875,0.003861789358779788,-0.005695614032447338,-0.22545446455478668,-6.879588603973389,2.856447219848633,-0.002254544524475932,-0.06879588216543198,0.028564471751451492 +karman_re100,ppo,125,50.0,0.9815685749053955,0.36309191584587097,1.0342944860458374,0.5363079309463501,1.114543080329895,0.3787009119987488,-0.0006637070327997208,0.0034708536695688963,-0.0038299579173326492,0.003047381527721882,0.004459527786821127,-0.00571192242205143,0.3127964437007904,-7.135416030883789,2.6944127082824707,0.00312796444632113,-0.07135415822267532,0.026944126933813095 +karman_re100,ppo,126,50.4,0.9147254824638367,0.30989930033683777,1.0325161218643188,0.4987778961658478,1.1782256364822388,0.35473090410232544,0.0005974132218398154,0.003347662976011634,-0.005085027776658535,0.0024545525666326284,0.00444210646674037,-0.005670873448252678,0.9086610078811646,-7.261585712432861,2.3877735137939453,0.009086609818041325,-0.0726158544421196,0.023877734318375587 +karman_re100,ppo,127,50.8,0.8579270243644714,0.20986858010292053,1.0167341232299805,0.40868666768074036,1.2390843629837036,0.29777464270591736,0.0019997351337224245,0.0025749376509338617,-0.005787400994449854,0.0024586254730820656,0.0037902668118476868,-0.005442226305603981,1.4010028839111328,-6.867486953735352,2.180563449859619,0.014010028913617134,-0.06867486983537674,0.02180563472211361 +karman_re100,ppo,128,51.2,0.8223835229873657,0.07012028992176056,0.9869576096534729,0.21326018869876862,1.2810276746749878,0.18507404625415802,0.0027999477460980415,0.0013180626556277275,-0.005448454525321722,0.0030257634352892637,0.0026936009526252747,-0.005082852207124233,1.5297867059707642,-5.936868667602539,2.018883466720581,0.01529786642640829,-0.05936868488788605,0.0201888345181942 +karman_re100,ppo,129,51.6,0.8233262896537781,-0.07664912939071655,0.9671249985694885,-0.0923549085855484,1.2861449718475342,0.020698871463537216,0.002342723775655031,-0.00021359490347094834,-0.003958985675126314,0.004197504371404648,0.0015076750423759222,-0.004795031156390905,1.3228437900543213,-4.779947757720947,2.2056663036346436,0.01322843786329031,-0.047799475491046906,0.022056663408875465 +karman_re100,ppo,130,52.0,0.8605561256408691,-0.19798476994037628,0.970618486404419,-0.33477863669395447,1.2451797723770142,-0.1435728371143341,0.0010093242162838578,-0.0014303188072517514,-0.0014929847093299031,0.005589398555457592,0.00037989113479852676,-0.004626198671758175,1.0867364406585693,-3.6425039768218994,3.6415414810180664,0.010867363773286343,-0.036425039172172546,0.03641541302204132 +karman_re100,ppo,131,52.4,0.9185792803764343,-0.2875373661518097,0.9826581478118896,-0.45549869537353516,1.1733386516571045,-0.26774492859840393,-0.0003161068307235837,-0.0019482168136164546,0.0012579741887748241,0.006175529211759567,-0.0008613946847617626,-0.004430487751960754,0.792910099029541,-2.8599672317504883,6.035089492797852,0.007929100655019283,-0.02859967201948166,0.060350894927978516 +karman_re100,ppo,132,52.8,0.986602783203125,-0.3411247730255127,0.9941125512123108,-0.5139279961585999,1.0958863496780396,-0.33988580107688904,-0.0009651961736381054,-0.0025076461024582386,0.0033520159777253866,0.005894756875932217,-0.0022578551433980465,-0.00410334812477231,0.1804123967885971,-2.844501495361328,7.353981971740723,0.0018041239818558097,-0.028445014730095863,0.07353981584310532 +karman_re100,ppo,133,53.2,1.0574116706848145,-0.37828099727630615,1.003279685974121,-0.5460543632507324,1.0207422971725464,-0.3692283630371094,-0.0007437475142069161,-0.0032506075222045183,0.004643631633371115,0.005777882412075996,-0.0038024603854864836,-0.0028525125235319138,-0.5248688459396362,-3.0135276317596436,7.41392707824707,-0.005248688161373138,-0.030135275796055794,0.07413926720619202 +karman_re100,ppo,134,53.6,1.128455400466919,-0.3912811279296875,1.0081465244293213,-0.5566713809967041,0.9474615454673767,-0.36353641748428345,0.0006369322072714567,-0.003805197076871991,0.005350629799067974,0.0057905446738004684,-0.006000147666782141,-0.00147060991730541,-1.3383249044418335,-2.4782004356384277,6.953454971313477,-0.013383248820900917,-0.024782003834843636,0.0695345476269722 +karman_re100,ppo,135,54.0,1.197390079498291,-0.364715039730072,1.004063606262207,-0.5336652398109436,0.877094566822052,-0.3179537057876587,0.0028861453756690025,-0.0037755370140075684,0.005140489432960749,0.00567525764927268,-0.00809695478528738,-0.0010086501715704799,-2.2305893898010254,-1.653507947921753,5.818170547485352,-0.022305892780423164,-0.0165350791066885,0.058181703090667725 +karman_re100,ppo,136,54.4,1.264681339263916,-0.2964414358139038,0.9853134155273438,-0.45484817028045654,0.8187336921691895,-0.22570841014385223,0.005181627813726664,-0.002963036298751831,0.004018289968371391,0.005123148672282696,-0.009237315505743027,-0.0012723708059638739,-2.6792426109313965,-1.143592119216919,4.69655704498291,-0.02679242566227913,-0.011435921303927898,0.046965569257736206 +karman_re100,ppo,137,54.8,1.3058710098266602,-0.15815265476703644,0.9572854042053223,-0.23663990199565887,0.7849564552307129,-0.09334032982587814,0.005676829256117344,-0.001534546259790659,0.0028218673542141914,0.004379500634968281,-0.008661855012178421,-0.0022817356511950493,-2.486081838607788,-1.2371277809143066,4.028402805328369,-0.024860817939043045,-0.012371277436614037,0.04028402641415596 +karman_re100,ppo,138,55.2,1.3030439615249634,0.020567767322063446,0.9542598724365234,0.12157490104436874,0.7896926403045654,0.05156795680522919,0.00428219698369503,6.257901986828074e-05,0.001872480264864862,0.004066257271915674,-0.006445064675062895,-0.003761525731533766,-1.9174009561538696,-2.2434301376342773,4.022458076477051,-0.019174009561538696,-0.022434301674365997,0.040224578231573105 +karman_re100,ppo,139,55.6,1.2593066692352295,0.171810582280159,0.9761461019515991,0.38123756647109985,0.8354581594467163,0.17074809968471527,0.002044821623712778,0.0011272041592746973,0.0009923586621880531,0.004205812234431505,-0.0033831459004431963,-0.005278949625790119,-1.5321063995361328,-3.8325276374816895,3.8519985675811768,-0.015321063809096813,-0.03832527622580528,0.03851998597383499 +karman_re100,ppo,140,56.0,1.194100022315979,0.2791524827480316,0.997897744178772,0.47733578085899353,0.8990453481674194,0.26333168148994446,0.00017592110089026392,0.0019151538144797087,-0.00015929993242025375,0.004464772064238787,-9.673586464487016e-05,-0.006107698194682598,-1.2849260568618774,-5.392208099365234,3.2610671520233154,-0.012849260121583939,-0.053922079503536224,0.03261066973209381 +karman_re100,ppo,141,56.4,1.1231598854064941,0.3447704315185547,1.0133041143417358,0.515097439289093,0.9685282111167908,0.3234875798225403,-0.0009206741233356297,0.0025546273682266474,-0.0013625269057229161,0.00451771542429924,0.0024106267374008894,-0.005998483393341303,-0.8304478526115417,-6.455043315887451,2.8436574935913086,-0.008304478600621223,-0.06455042958259583,0.028436575084924698 +karman_re100,ppo,142,56.8,1.0531998872756958,0.37288668751716614,1.0250041484832764,0.5366876125335693,1.039965033531189,0.36184948682785034,-0.0012542317854240537,0.003123570466414094,-0.002468883292749524,0.004020265769213438,0.003780077677220106,-0.005724885035306215,-0.2656386196613312,-6.862408638000488,2.855483055114746,-0.0026563862338662148,-0.0686240866780281,0.028554830700159073 +karman_re100,ppo,143,57.2,0.9834437370300293,0.3661291003227234,1.0321708917617798,0.5387969017028809,1.1093859672546387,0.3790118098258972,-0.0007375538116320968,0.0034566326066851616,-0.003718496533110738,0.003113290062174201,0.004422133322805166,-0.005709807388484478,0.2716406285762787,-7.119122505187988,2.7175464630126953,0.002716406248509884,-0.0711912214756012,0.02717546373605728 +karman_re100,ppo,144,57.6,0.9165995121002197,0.3166499435901642,1.0318377017974854,0.5051540732383728,1.174294114112854,0.35792282223701477,0.0005002482794225216,0.003380236914381385,-0.004992653615772724,0.0024855071678757668,0.004455834161490202,-0.005676045548170805,0.863741934299469,-7.2628889083862305,2.409088611602783,0.00863741897046566,-0.07262888550758362,0.024090886116027832 +karman_re100,ppo,145,58.0,0.8608185052871704,0.21997526288032532,1.0195250511169434,0.4207141101360321,1.238218069076538,0.3034074306488037,0.0019350667716935277,0.0026755579747259617,-0.005745135713368654,0.0024466293398290873,0.003859911812469363,-0.005471724085509777,1.3757373094558716,-6.910489082336426,2.197633981704712,0.013757373206317425,-0.0691048875451088,0.02197633869946003 +karman_re100,ppo,146,58.4,0.8218787908554077,0.0810646116733551,0.9889886379241943,0.23165953159332275,1.2805670499801636,0.19355735182762146,0.0027811038307845592,0.0014117215760052204,-0.005488955415785313,0.00296916626393795,0.0027810411993414164,-0.005116111133247614,1.5390738248825073,-6.025765419006348,2.030339241027832,0.015390737913548946,-0.06025765463709831,0.02030339278280735 +karman_re100,ppo,147,58.8,0.8198620676994324,-0.0677681416273117,0.9682167172431946,-0.07441206276416779,1.2878798246383667,0.030552465468645096,0.0024122667964547873,-0.00011277981684543192,-0.00408458337187767,0.004095965530723333,0.0015920200385153294,-0.004813546314835548,1.3446077108383179,-4.863941192626953,2.169814109802246,0.013446076773107052,-0.048639409244060516,0.02169814147055149 +karman_re100,ppo,148,59.2,0.8562006950378418,-0.19130371510982513,0.9716033935546875,-0.32574036717414856,1.2503825426101685,-0.1343165636062622,0.0011127579491585493,-0.0013681910932064056,-0.0016970138531178236,0.005487286485731602,0.0004574960039462894,-0.00463468162342906,1.1067416667938232,-3.717885732650757,3.4957518577575684,0.01106741651892662,-0.03717885538935661,0.03495751693844795 +karman_re100,ppo,149,59.6,0.9127950072288513,-0.2834673225879669,0.9823622703552246,-0.4519355893135071,1.178695797920227,-0.26124459505081177,-0.0002440012467559427,-0.001924957730807364,0.0010557761415839195,0.006156550720334053,-0.0007599905366078019,-0.004448001738637686,0.8314142823219299,-2.8961892127990723,5.873632431030273,0.008314142934978008,-0.028961891308426857,0.058736324310302734 +karman_re100,ppo,150,60.0,0.9808821082115173,-0.33909010887145996,0.9937408566474915,-0.5127145648002625,1.101227879524231,-0.336576908826828,-0.0009418409899808466,-0.002458962146192789,0.0032233232632279396,0.00590687757357955,-0.002152262255549431,-0.0041446383111178875,0.23740842938423157,-2.828272819519043,7.306269645690918,0.002374084200710058,-0.028282728046178818,0.07306269556283951 +karman_re100,ppo,151,60.4,1.0526996850967407,-0.3770592510700226,1.0036417245864868,-0.5456646680831909,1.026344656944275,-0.36835503578186035,-0.0007903253426775336,-0.0031985361129045486,0.004553278908133507,0.005757143720984459,-0.0036521032452583313,-0.002964015817269683,-0.4692924916744232,-3.019127368927002,7.425398349761963,-0.004692924674600363,-0.030191272497177124,0.07425398379564285 +karman_re100,ppo,152,60.8,1.1233429908752441,-0.39252766966819763,1.0080646276474,-0.5583334565162659,0.9521684050559998,-0.3652305603027344,0.0004628569877240807,-0.0037633543834090233,0.00531051866710186,0.005792134907096624,-0.005811720620840788,-0.0015484023606404662,-1.2633442878723145,-2.5409388542175293,7.0126142501831055,-0.012633442878723145,-0.025409387424588203,0.07012613862752914 +karman_re100,ppo,153,61.2,1.1931570768356323,-0.3684309720993042,1.0050870180130005,-0.5379582047462463,0.8814951181411743,-0.3225466012954712,0.0026781451888382435,-0.003802762134000659,0.0051952083595097065,0.005696617998182774,-0.007933976128697395,-0.0010224785655736923,-2.1708898544311523,-1.7184704542160034,5.9162983894348145,-0.0217088982462883,-0.017184704542160034,0.05916298180818558 +karman_re100,ppo,154,61.6,1.26128089427948,-0.30360257625579834,0.9873234629631042,-0.46492230892181396,0.821804940700531,-0.23357364535331726,0.005047851707786322,-0.003041696036234498,0.004105009138584137,0.005178694613277912,-0.009187429212033749,-0.0012186927488073707,-2.664429187774658,-1.174748420715332,4.77894926071167,-0.02664429135620594,-0.011747484095394611,0.04778949171304703 +karman_re100,ppo,155,62.0,1.3044923543930054,-0.16938237845897675,0.9580206274986267,-0.2580221891403198,0.7848567366600037,-0.10295853763818741,0.005692616105079651,-0.0016416384605690837,0.00289729330688715,0.0044236378744244576,-0.008759330958127975,-0.0021794079802930355,-2.5177483558654785,-1.201096534729004,4.056382179260254,-0.0251774825155735,-0.012010965496301651,0.04056382179260254 +karman_re100,ppo,156,62.4,1.3052780628204346,0.009160725399851799,0.9536634087562561,0.0985274538397789,0.7874071598052979,0.042272742837667465,0.004410811234265566,-3.0216455343179405e-05,0.001937174703925848,0.004074805416166782,-0.006646158639341593,-0.0036415723152458668,-1.9593589305877686,-2.1491029262542725,4.017276763916016,-0.01959358900785446,-0.021491028368473053,0.0401727668941021 +karman_re100,ppo,157,62.8,1.2652709484100342,0.1634693145751953,0.9763031601905823,0.37130728363990784,0.832288920879364,0.16371923685073853,0.0022000225726515055,0.001076467800885439,0.0010659985709935427,0.004200302995741367,-0.0036292339209467173,-0.005192258860915899,-1.5536308288574219,-3.7145612239837646,3.8878486156463623,-0.015536308288574219,-0.03714561089873314,0.038878485560417175 +karman_re100,ppo,158,63.2,1.1990817785263062,0.273184597492218,0.996956467628479,0.4743043780326843,0.8940486311912537,0.257697731256485,0.00027804801356978714,0.0018639725167304277,-7.105910481186584e-05,0.0044542476534843445,-0.0003205527609679848,-0.00609362730756402,-1.3114491701126099,-5.297328948974609,3.306731939315796,-0.01311449147760868,-0.05297328904271126,0.03306731954216957 +karman_re100,ppo,159,63.6,1.1288788318634033,0.3415636122226715,1.0134395360946655,0.5132949352264404,0.9640399813652039,0.32012149691581726,-0.0008740724879316986,0.002511670347303152,-0.0012803823919966817,0.004528649616986513,0.002272031269967556,-0.006015104707330465,-0.8712698221206665,-6.405383586883545,2.855294704437256,-0.00871269777417183,-0.06405383348464966,0.02855294570326805 +karman_re100,ppo,160,64.0,1.0581146478652954,0.3720766305923462,1.024659514427185,0.5355708599090576,1.0348073244094849,0.35944774746894836,-0.0012537776492536068,0.00308468216098845,-0.0023861010558903217,0.004064646083861589,0.0037084040232002735,-0.005726016126573086,-0.30501365661621094,-6.84410285949707,2.857311248779297,-0.003050136612728238,-0.06844102591276169,0.028573112562298775 +karman_re100,ppo,161,64.4,0.9883300065994263,0.36787787079811096,1.0321916341781616,0.5395148992538452,1.1043720245361328,0.3786889314651489,-0.0008007844444364309,0.0034461438190191984,-0.003624742617830634,0.003167903982102871,0.004395904019474983,-0.0056976680643856525,0.23275810480117798,-7.099697113037109,2.7354917526245117,0.002327580936253071,-0.0709969699382782,0.02735491655766964 +karman_re100,ppo,162,64.8,0.9218659400939941,0.3215796649456024,1.0333877801895142,0.5084418058395386,1.1702114343643188,0.3601815104484558,0.0003940811147913337,0.003399135544896126,-0.004914699587970972,0.0025067583192139864,0.004478047601878643,-0.005682691931724548,0.8212908506393433,-7.265765190124512,2.4266042709350586,0.008212908171117306,-0.07265765219926834,0.024266041815280914 +karman_re100,ppo,163,65.2,0.8633564114570618,0.22750814259052277,1.020418405532837,0.42780911922454834,1.2324050664901733,0.3075985014438629,0.0018402949208393693,0.002737220609560609,-0.005734662525355816,0.0024384947028011084,0.003904049750417471,-0.005489936098456383,1.349334478378296,-6.955918312072754,2.210745096206665,0.013493344187736511,-0.06955917924642563,0.022107450291514397 +karman_re100,ppo,164,65.6,0.8241186738014221,0.09116244316101074,0.9923964738845825,0.2487173229455948,1.278552532196045,0.20309235155582428,0.002758781658485532,0.0015141419135034084,-0.005553149618208408,0.0029222911689430475,0.002857186598703265,-0.005144761875271797,1.5374219417572021,-6.087609767913818,2.03513765335083,0.015374219045042992,-0.06087609753012657,0.02035137638449669 +karman_re100,ppo,165,66.0,0.81943678855896,-0.05845986306667328,0.9702581167221069,-0.05320418253540993,1.288664698600769,0.04241529852151871,0.00246573518961668,-1.2621841051441152e-05,-0.00422811321914196,0.004004793241620064,0.001667864271439612,-0.004831855185329914,1.3626493215560913,-4.943068981170654,2.1322007179260254,0.013626492582261562,-0.049430686980485916,0.021322006359696388 +karman_re100,ppo,166,66.4,0.8528984785079956,-0.18402749300003052,0.971465528011322,-0.3126971125602722,1.2535665035247803,-0.12366468459367752,0.0012161025078967214,-0.0013011338887736201,-0.001879573450423777,0.005414159502834082,0.0005424784030765295,-0.004643733147531748,1.120184063911438,-3.7889795303344727,3.35636305809021,0.011201840825378895,-0.03788979351520538,0.033563628792762756 +karman_re100,ppo,167,66.8,0.9088943600654602,-0.27850258350372314,0.9824565649032593,-0.44514331221580505,1.1840749979019165,-0.25360772013664246,-0.00017304760694969445,-0.001900013885460794,0.0008790860301814973,0.006151970475912094,-0.000664928404148668,-0.004462698940187693,0.8586351275444031,-2.926957130432129,5.7262372970581055,0.008586350828409195,-0.029269570484757423,0.057262372225522995 +karman_re100,ppo,168,67.2,0.9777670502662659,-0.33646076917648315,0.9950277805328369,-0.5096042156219482,1.1081620454788208,-0.33273330330848694,-0.0009189790580421686,-0.002409751061350107,0.003110278630629182,0.005947466008365154,-0.002053653821349144,-0.004193280823528767,0.28359854221343994,-2.81282377243042,7.263399124145508,0.0028359852731227875,-0.028128236532211304,0.07263398915529251 +karman_re100,ppo,169,67.6,1.047703742980957,-0.3747645914554596,1.0033373832702637,-0.54302579164505,1.031514048576355,-0.366637259721756,-0.0008511083433404565,-0.0031482442282140255,0.004477187059819698,0.005771187599748373,-0.0035233628004789352,-0.003085791366174817,-0.4228043854236603,-3.0226850509643555,7.441018104553223,-0.004228043835610151,-0.030226849019527435,0.07441017776727676 +karman_re100,ppo,170,68.0,1.1190060377120972,-0.3925299346446991,1.008667230606079,-0.557513952255249,0.9580159783363342,-0.36589592695236206,0.0003527132503222674,-0.0037388778291642666,0.005280390847474337,0.005800453945994377,-0.005648212507367134,-0.0016230312176048756,-1.2018977403640747,-2.596569538116455,7.068882942199707,-0.012018976733088493,-0.025965694338083267,0.07068882882595062 +karman_re100,ppo,171,68.4,1.189626932144165,-0.37159591913223267,1.0069615840911865,-0.5401201248168945,0.8875031471252441,-0.3265635669231415,0.0025092842988669872,-0.0038316152058541775,0.005234179552644491,0.005712114740163088,-0.007830026559531689,-0.0010244986042380333,-2.1161108016967773,-1.7657504081726074,6.003807067871094,-0.02116110734641552,-0.017657503485679626,0.06003807112574577 +karman_re100,ppo,172,68.8,1.2564420700073242,-0.30998483300209045,0.988740861415863,-0.47151488065719604,0.8255481719970703,-0.24048015475273132,0.004918577615171671,-0.003112220671027899,0.004190507344901562,0.005223858170211315,-0.009149037301540375,-0.0011815903708338737,-2.6562623977661133,-1.1923959255218506,4.838188648223877,-0.02656262367963791,-0.01192395854741335,0.04838188365101814 +karman_re100,ppo,173,69.2,1.3030874729156494,-0.18141046166419983,0.959769606590271,-0.2783801257610321,0.7873908877372742,-0.11248129606246948,0.005735775921493769,-0.0017185424221679568,0.0029709385707974434,0.004465596750378609,-0.008839611895382404,-0.0020904424600303173,-2.5451817512512207,-1.1733732223510742,4.084147930145264,-0.025451816618442535,-0.01173373218625784,0.0408414788544178 +karman_re100,ppo,174,69.6,1.3066879510879517,-0.0034997197799384594,0.9519141316413879,0.07294957339763641,0.7863296270370483,0.03276067599654198,0.0045429496094584465,-0.00013342624879442155,0.0019932000432163477,0.004080186598002911,-0.006825435906648636,-0.003539895173162222,-1.9925044775009155,-2.0685157775878906,4.009456157684326,-0.01992504484951496,-0.02068515680730343,0.040094561874866486 +karman_re100,ppo,175,70.0,1.267768144607544,0.1540571004152298,0.9726566076278687,0.3572394549846649,0.8279411196708679,0.1560395210981369,0.0023407854605466127,0.0010124946711584926,0.0011278390884399414,0.004181643947958946,-0.0038260803557932377,-0.005084020085632801,-1.5699833631515503,-3.600867986679077,3.9152016639709473,-0.015699833631515503,-0.03600867837667465,0.03915201500058174 +karman_re100,ppo,176,70.4,1.2043095827102661,0.2669457197189331,0.9953915476799011,0.46964484453201294,0.890097975730896,0.251809686422348,0.0003755033831112087,0.0018116625724360347,8.58990188135067e-06,0.004434326663613319,-0.0005317303002811968,-0.00606950931251049,-1.327309250831604,-5.1959028244018555,3.35809588432312,-0.013273091986775398,-0.05195902660489082,0.0335809588432312 +karman_re100,ppo,177,70.8,1.1332911252975464,0.3382377326488495,1.0116026401519775,0.5108631253242493,0.9588124752044678,0.3165775537490845,-0.0008305507362820208,0.002474164590239525,-0.0012148760724812746,0.004530389793217182,0.002137072617188096,-0.006037685088813305,-0.9067975878715515,-6.356688022613525,2.8680624961853027,-0.009067975915968418,-0.06356687843799591,0.028680624440312386 +karman_re100,ppo,178,71.2,1.0630227327346802,0.3710685670375824,1.0236923694610596,0.5340853333473206,1.029982566833496,0.3568979501724243,-0.0012540466850623488,0.003048853250220418,-0.002314824378117919,0.004108055494725704,0.0036480946000665426,-0.005735347047448158,-0.34053781628608704,-6.829787254333496,2.850172996520996,-0.0034053782001137733,-0.0682978704571724,0.028501728549599648 +karman_re100,ppo,179,71.6,0.993365466594696,0.3693883419036865,1.0318440198898315,0.5400228500366211,1.099993109703064,0.37824782729148865,-0.0008434352348558605,0.003437523264437914,-0.003543171798810363,0.0032274932600557804,0.0043760035187006,-0.005695149302482605,0.19808223843574524,-7.083501815795898,2.7524919509887695,0.0019808223005384207,-0.07083501666784286,0.0275249183177948 +karman_re100,ppo,180,72.0,0.9260976910591125,0.32627272605895996,1.033264398574829,0.5116809606552124,1.1656185388565063,0.36241093277931213,0.00030529758078046143,0.0034237366635352373,-0.0048417942598462105,0.0025367536582052708,0.004499570932239294,-0.005694157909601927,0.7838250994682312,-7.265779495239258,2.443873882293701,0.007838251069188118,-0.07265779376029968,0.02443873882293701 +karman_re100,ppo,181,72.4,0.8674120306968689,0.23553863167762756,1.0220236778259277,0.43564414978027344,1.2286467552185059,0.3123072683811188,0.0017489693127572536,0.0028073075227439404,-0.005700366571545601,0.0024235574528574944,0.003976273816078901,-0.005513548851013184,1.3247489929199219,-6.995982646942139,2.224127769470215,0.013247489929199219,-0.06995982676744461,0.022241277620196342 +karman_re100,ppo,182,72.8,0.8259789943695068,0.10158412903547287,0.9943382740020752,0.26562759280204773,1.2763477563858032,0.2123742550611496,0.0027389260940253735,0.001617190195247531,-0.005615634378045797,0.002863639499992132,0.0029369154945015907,-0.005167403258383274,1.5403001308441162,-6.166653156280518,2.0478763580322266,0.015403000637888908,-0.06166652962565422,0.020478762686252594 +karman_re100,ppo,183,73.2,0.8181280493736267,-0.04881136864423752,0.9703513383865356,-0.03192441910505295,1.2887927293777466,0.053917378187179565,0.0025333359371870756,9.497337305219844e-05,-0.004355282988399267,0.003908864222466946,0.0017490028403699398,-0.004851309582591057,1.383790373802185,-5.024622440338135,2.096116065979004,0.01383790373802185,-0.0502462238073349,0.020961159840226173 +karman_re100,ppo,184,73.6,0.8501408100128174,-0.17637233436107635,0.971052885055542,-0.29951828718185425,1.2575913667678833,-0.11320328712463379,0.0013203760609030724,-0.0012357216328382492,-0.0020728767849504948,0.0053187161684036255,0.000609441427513957,-0.00465205917134881,1.134570598602295,-3.865870475769043,3.2162365913391113,0.011345705948770046,-0.03865870460867882,0.032162364572286606 +karman_re100,ppo,185,74.0,0.9046728014945984,-0.27346858382225037,0.9814878106117249,-0.43913447856903076,1.189043402671814,-0.2465214729309082,-8.272606646642089e-05,-0.001874445821158588,0.0007022960344329476,0.006146235857158899,-0.0005706474767066538,-0.0044813258573412895,0.885511040687561,-2.964323043823242,5.561518669128418,0.00885511003434658,-0.029643230140209198,0.05561518669128418 +karman_re100,ppo,186,74.4,0.9718012809753418,-0.3330352306365967,0.9929351210594177,-0.5060150027275085,1.1118707656860352,-0.32850828766822815,-0.000897994264960289,-0.002357801888138056,0.0029840192291885614,0.005974265746772289,-0.0019598619546741247,-0.004226436838507652,0.3302610218524933,-2.7967047691345215,7.2121734619140625,0.00330261024646461,-0.027967046946287155,0.07212173193693161 +karman_re100,ppo,187,74.8,1.0432759523391724,-0.37265545129776,1.0030955076217651,-0.5412939786911011,1.0367907285690308,-0.36545413732528687,-0.0008824015385471284,-0.0030973299872130156,0.004400909412652254,0.005776537116616964,-0.003407444106414914,-0.003196764038875699,-0.37539806962013245,-3.020378589630127,7.450379371643066,-0.0037539806216955185,-0.030203785747289658,0.07450379431247711 +karman_re100,ppo,188,75.2,1.113903522491455,-0.392637699842453,1.007982611656189,-0.5575984120368958,0.9623338580131531,-0.36707696318626404,0.00022592410095967352,-0.0037043369375169277,0.005248627159744501,0.005803282372653484,-0.005494801793247461,-0.0016971742734313011,-1.1415914297103882,-2.6477198600769043,7.114409923553467,-0.011415913701057434,-0.02647719718515873,0.07114409655332565 +karman_re100,ppo,189,75.6,1.1833058595657349,-0.3738740086555481,1.0060527324676514,-0.5419194102287292,0.8907523155212402,-0.3302808403968811,0.0023443903774023056,-0.0038517306093126535,0.005269602406769991,0.005717510357499123,-0.0076904259622097015,-0.0010327716590836644,-2.0629849433898926,-1.819002628326416,6.0868425369262695,-0.020629849284887314,-0.01819002628326416,0.06086842343211174 +karman_re100,ppo,190,76.0,1.252792239189148,-0.3155704140663147,0.9903550148010254,-0.47809040546417236,0.8288208246231079,-0.24712732434272766,0.004802836570888758,-0.003186498535797,0.00426519988104701,0.005205817986279726,-0.009138467721641064,-0.0011104433797299862,-2.6352663040161133,-1.2157526016235352,4.912304878234863,-0.026352662593126297,-0.01215752586722374,0.04912304878234863 +karman_re100,ppo,191,76.4,1.3009775876998901,-0.1924344301223755,0.961193859577179,-0.2976299226284027,0.7885117530822754,-0.12204445153474808,0.00574492197483778,-0.0018671073485165834,0.0030527643393725157,0.004511539358645678,-0.008918129839003086,-0.0020148109178990126,-2.5687265396118164,-1.1541640758514404,4.093023777008057,-0.025687264278531075,-0.011541640385985374,0.040930237621068954 +karman_re100,ppo,192,76.8,1.3080551624298096,-0.015483853407204151,0.9514321684837341,0.04832475259900093,0.7849985361099243,0.023302000015974045,0.004669183399528265,-0.00023457805218640715,0.0020575427915900946,0.004089432768523693,-0.006991171278059483,-0.0034309702459722757,-2.0355799198150635,-1.970861554145813,4.005319595336914,-0.020355798304080963,-0.01970861479640007,0.040053196251392365 +karman_re100,ppo,193,77.2,1.2712929248809814,0.14511917531490326,0.9709020853042603,0.3442753553390503,0.8240649700164795,0.14889544248580933,0.0024996893480420113,0.0009540271712467074,0.0011847029672935605,0.004162905737757683,-0.0040605817921459675,-0.0049895127303898335,-1.5883015394210815,-3.4885802268981934,3.9433741569519043,-0.01588301546871662,-0.03488580137491226,0.039433740079402924 +karman_re100,ppo,194,77.6,1.208329200744629,0.26084744930267334,0.9934613704681396,0.465834379196167,0.8850870728492737,0.24621078372001648,0.00048784553655423224,0.0017611798830330372,9.618809417588636e-05,0.00441545806825161,-0.0007523455424234271,-0.006027074530720711,-1.3473387956619263,-5.096250057220459,3.394270420074463,-0.01347338780760765,-0.050962500274181366,0.033942703157663345 +karman_re100,ppo,195,78.0,1.1382139921188354,0.33491286635398865,1.0107377767562866,0.5090354084968567,0.9540982246398926,0.3131974935531616,-0.0007672843057662249,0.002433632966130972,-0.0011318095494061708,0.004535769112408161,0.0019888700917363167,-0.00605458440259099,-0.943185567855835,-6.296847343444824,2.8875792026519775,-0.009431855753064156,-0.06296847015619278,0.028875790536403656 +karman_re100,ppo,196,78.4,1.0675604343414307,0.3702246844768524,1.0228623151779175,0.5331659317016602,1.0251328945159912,0.35466575622558594,-0.0012467321939766407,0.003014263231307268,-0.0022302407305687666,0.0041644214652478695,0.0035739357117563486,-0.005751070566475391,-0.3791944682598114,-6.8101420402526855,2.8466479778289795,-0.0037919445894658566,-0.0681014209985733,0.0284664798527956 +karman_re100,ppo,197,78.8,0.9978251457214355,0.37104254961013794,1.0313079357147217,0.5409257411956787,1.0953150987625122,0.3779304623603821,-0.0009126344230026007,0.0034208064898848534,-0.003447748487815261,0.003297025803476572,0.004339692182838917,-0.005695051979273558,0.15982894599437714,-7.064330577850342,2.7723939418792725,0.0015982894692569971,-0.07064330577850342,0.02772393822669983 +karman_re100,ppo,198,79.2,0.9301435351371765,0.3305616080760956,1.033798098564148,0.5149264335632324,1.162318229675293,0.3646053969860077,0.00023975806834641844,0.003443965222686529,-0.004804504103958607,0.0024977978318929672,0.004479377064853907,-0.005598029121756554,0.739232063293457,-7.263915538787842,2.4664955139160156,0.007392320316284895,-0.07263915240764618,0.024664955213665962 +karman_re100,ppo,199,79.6,0.8704570531845093,0.24358245730400085,1.0229828357696533,0.44358208775520325,1.2243928909301758,0.31690531969070435,0.0016547845443710685,0.0028698048554360867,-0.005663212388753891,0.002407326363027096,0.004027129616588354,-0.005527126137167215,1.3025544881820679,-7.010113716125488,2.21791410446167,0.013025544583797455,-0.07010113447904587,0.022179139778017998 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv new file mode 100644 index 0000000..7971a14 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re100,sr,60,24.0,30,0.9389701881885736,-4,0.9765115320682526,0.9687676217406989,0.7848671476046244,0.9575861632823944,0.9752628008524576,0.9708258635830134 +karman_re100,sr,90,36.0,30,0.9464262937615988,8,0.975012336174647,0.9781726618879475,0.800112889210383,0.9777221590280533,0.9734991331895192,0.9740385830790426 +karman_re100,sr,120,48.0,30,0.9474768419672425,2,0.9729061047236125,0.9743734958581627,0.8074827472368876,0.9780531113346418,0.9733143607775371,0.9787312318726132 +karman_re100,sr,150,60.0,30,0.9459773220639262,-4,0.9754436035950979,0.9733552847678463,0.8079676151275634,0.9715212486684323,0.974757460753123,0.9728187194714943 +karman_re100,sr,180,72.0,30,0.9382044186608659,7,0.9785865982373555,0.9610461091622711,0.7998667995134989,0.9499757303545873,0.9765243530273438,0.9632269216701388 +karman_re100,sr,200,80.0,30,0.9427085564885704,-8,0.9814277211825053,0.9649004686623812,0.8044749160607656,0.9586062712594867,0.9800249854723613,0.9668169762939215 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_long.csv new file mode 100644 index 0000000..4b52a13 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,sr,0,0.0,velocity,upper_ux,1.0685993432998657 +karman_re100,sr,0,0.0,velocity,upper_uy,0.24136945605278015 +karman_re100,sr,0,0.0,velocity,center_ux,0.951983630657196 +karman_re100,sr,0,0.0,velocity,center_uy,0.35171154141426086 +karman_re100,sr,0,0.0,velocity,lower_ux,0.9978394508361816 +karman_re100,sr,0,0.0,velocity,lower_uy,0.2656116187572479 +karman_re100,sr,1,0.4,velocity,upper_ux,1.0256357192993164 +karman_re100,sr,1,0.4,velocity,upper_uy,0.2784147560596466 +karman_re100,sr,1,0.4,velocity,center_ux,0.9571142792701721 +karman_re100,sr,1,0.4,velocity,center_uy,0.3840985596179962 +karman_re100,sr,1,0.4,velocity,lower_ux,1.0403664112091064 +karman_re100,sr,1,0.4,velocity,lower_uy,0.2973689138889313 +karman_re100,sr,2,0.8,velocity,upper_ux,0.9840131402015686 +karman_re100,sr,2,0.8,velocity,upper_uy,0.2844412922859192 +karman_re100,sr,2,0.8,velocity,center_ux,0.9631149172782898 +karman_re100,sr,2,0.8,velocity,center_uy,0.3802558183670044 +karman_re100,sr,2,0.8,velocity,lower_ux,1.082318902015686 +karman_re100,sr,2,0.8,velocity,lower_uy,0.298073410987854 +karman_re100,sr,3,1.2,velocity,upper_ux,0.9511460065841675 +karman_re100,sr,3,1.2,velocity,upper_uy,0.2562474012374878 +karman_re100,sr,3,1.2,velocity,center_ux,0.9665431976318359 +karman_re100,sr,3,1.2,velocity,center_uy,0.33770468831062317 +karman_re100,sr,3,1.2,velocity,lower_ux,1.1226905584335327 +karman_re100,sr,3,1.2,velocity,lower_uy,0.27484893798828125 +karman_re100,sr,4,1.6,velocity,upper_ux,0.9302495718002319 +karman_re100,sr,4,1.6,velocity,upper_uy,0.19517673552036285 +karman_re100,sr,4,1.6,velocity,center_ux,0.9602498412132263 +karman_re100,sr,4,1.6,velocity,center_uy,0.25486046075820923 +karman_re100,sr,4,1.6,velocity,lower_ux,1.1615686416625977 +karman_re100,sr,4,1.6,velocity,lower_uy,0.23747190833091736 +karman_re100,sr,5,2.0,velocity,upper_ux,0.9191654920578003 +karman_re100,sr,5,2.0,velocity,upper_uy,0.10398537665605545 +karman_re100,sr,5,2.0,velocity,center_ux,0.9472877383232117 +karman_re100,sr,5,2.0,velocity,center_uy,0.12479744851589203 +karman_re100,sr,5,2.0,velocity,lower_ux,1.1881532669067383 +karman_re100,sr,5,2.0,velocity,lower_uy,0.17102228105068207 +karman_re100,sr,6,2.4,velocity,upper_ux,0.9147189259529114 +karman_re100,sr,6,2.4,velocity,upper_uy,-0.016590869054198265 +karman_re100,sr,6,2.4,velocity,center_ux,0.9440224170684814 +karman_re100,sr,6,2.4,velocity,center_uy,-0.02322998456656933 +karman_re100,sr,6,2.4,velocity,lower_ux,1.1834924221038818 +karman_re100,sr,6,2.4,velocity,lower_uy,0.05765269696712494 +karman_re100,sr,7,2.8,velocity,upper_ux,0.9213874340057373 +karman_re100,sr,7,2.8,velocity,upper_uy,-0.13450811803340912 +karman_re100,sr,7,2.8,velocity,center_ux,0.9467764496803284 +karman_re100,sr,7,2.8,velocity,center_uy,-0.1547740399837494 +karman_re100,sr,7,2.8,velocity,lower_ux,1.1426308155059814 +karman_re100,sr,7,2.8,velocity,lower_uy,-0.07581524550914764 +karman_re100,sr,8,3.2,velocity,upper_ux,0.9514302611351013 +karman_re100,sr,8,3.2,velocity,upper_uy,-0.21099725365638733 +karman_re100,sr,8,3.2,velocity,center_ux,0.9476280808448792 +karman_re100,sr,8,3.2,velocity,center_uy,-0.2703494727611542 +karman_re100,sr,8,3.2,velocity,lower_ux,1.1047674417495728 +karman_re100,sr,8,3.2,velocity,lower_uy,-0.17313984036445618 +karman_re100,sr,9,3.6,velocity,upper_ux,0.9928194284439087 +karman_re100,sr,9,3.6,velocity,upper_uy,-0.2608775794506073 +karman_re100,sr,9,3.6,velocity,center_ux,0.9511076211929321 +karman_re100,sr,9,3.6,velocity,center_uy,-0.34447094798088074 +karman_re100,sr,9,3.6,velocity,lower_ux,1.0720512866973877 +karman_re100,sr,9,3.6,velocity,lower_uy,-0.23495210707187653 +karman_re100,sr,10,4.0,velocity,upper_ux,1.0349479913711548 +karman_re100,sr,10,4.0,velocity,upper_uy,-0.2935445010662079 +karman_re100,sr,10,4.0,velocity,center_ux,0.9563013315200806 +karman_re100,sr,10,4.0,velocity,center_uy,-0.37726420164108276 +karman_re100,sr,10,4.0,velocity,lower_ux,1.0309902429580688 +karman_re100,sr,10,4.0,velocity,lower_uy,-0.27168896794319153 +karman_re100,sr,11,4.4,velocity,upper_ux,1.0747613906860352 +karman_re100,sr,11,4.4,velocity,upper_uy,-0.2958945035934448 +karman_re100,sr,11,4.4,velocity,center_ux,0.9605038166046143 +karman_re100,sr,11,4.4,velocity,center_uy,-0.3740268647670746 +karman_re100,sr,11,4.4,velocity,lower_ux,0.9893826842308044 +karman_re100,sr,11,4.4,velocity,lower_uy,-0.27755963802337646 +karman_re100,sr,12,4.8,velocity,upper_ux,1.1130483150482178 +karman_re100,sr,12,4.8,velocity,upper_uy,-0.2738376557826996 +karman_re100,sr,12,4.8,velocity,center_ux,0.9623351097106934 +karman_re100,sr,12,4.8,velocity,center_uy,-0.33226460218429565 +karman_re100,sr,12,4.8,velocity,lower_ux,0.9565280675888062 +karman_re100,sr,12,4.8,velocity,lower_uy,-0.249216690659523 +karman_re100,sr,13,5.2,velocity,upper_ux,1.1502400636672974 +karman_re100,sr,13,5.2,velocity,upper_uy,-0.23930568993091583 +karman_re100,sr,13,5.2,velocity,center_ux,0.9544419050216675 +karman_re100,sr,13,5.2,velocity,center_uy,-0.2522604465484619 +karman_re100,sr,13,5.2,velocity,lower_ux,0.93589186668396 +karman_re100,sr,13,5.2,velocity,lower_uy,-0.18779800832271576 +karman_re100,sr,14,5.6,velocity,upper_ux,1.1787209510803223 +karman_re100,sr,14,5.6,velocity,upper_uy,-0.18117406964302063 +karman_re100,sr,14,5.6,velocity,center_ux,0.9382843971252441 +karman_re100,sr,14,5.6,velocity,center_uy,-0.1262035220861435 +karman_re100,sr,14,5.6,velocity,lower_ux,0.9253460168838501 +karman_re100,sr,14,5.6,velocity,lower_uy,-0.09408948570489883 +karman_re100,sr,15,6.0,velocity,upper_ux,1.1788434982299805 +karman_re100,sr,15,6.0,velocity,upper_uy,-0.08315591514110565 +karman_re100,sr,15,6.0,velocity,center_ux,0.9267156720161438 +karman_re100,sr,15,6.0,velocity,center_uy,0.022946422919631004 +karman_re100,sr,15,6.0,velocity,lower_ux,0.9193148016929626 +karman_re100,sr,15,6.0,velocity,lower_uy,0.03066849708557129 +karman_re100,sr,16,6.4,velocity,upper_ux,1.1407076120376587 +karman_re100,sr,16,6.4,velocity,upper_uy,0.040212634950876236 +karman_re100,sr,16,6.4,velocity,center_ux,0.9226230382919312 +karman_re100,sr,16,6.4,velocity,center_uy,0.16076290607452393 +karman_re100,sr,16,6.4,velocity,lower_ux,0.9269216656684875 +karman_re100,sr,16,6.4,velocity,lower_uy,0.14937599003314972 +karman_re100,sr,17,6.8,velocity,upper_ux,1.0880900621414185 +karman_re100,sr,17,6.8,velocity,upper_uy,0.14289094507694244 +karman_re100,sr,17,6.8,velocity,center_ux,0.9164557456970215 +karman_re100,sr,17,6.8,velocity,center_uy,0.283186674118042 +karman_re100,sr,17,6.8,velocity,lower_ux,0.9571163654327393 +karman_re100,sr,17,6.8,velocity,lower_uy,0.22653093934059143 +karman_re100,sr,18,7.2,velocity,upper_ux,1.0352015495300293 +karman_re100,sr,18,7.2,velocity,upper_uy,0.212816521525383 +karman_re100,sr,18,7.2,velocity,center_ux,0.9138805270195007 +karman_re100,sr,18,7.2,velocity,center_uy,0.3661787509918213 +karman_re100,sr,18,7.2,velocity,lower_ux,0.9989830851554871 +karman_re100,sr,18,7.2,velocity,lower_uy,0.2800663113594055 +karman_re100,sr,19,7.6,velocity,upper_ux,0.9775646328926086 +karman_re100,sr,19,7.6,velocity,upper_uy,0.2580114006996155 +karman_re100,sr,19,7.6,velocity,center_ux,0.9157058000564575 +karman_re100,sr,19,7.6,velocity,center_uy,0.4093434512615204 +karman_re100,sr,19,7.6,velocity,lower_ux,1.044649600982666 +karman_re100,sr,19,7.6,velocity,lower_uy,0.3151072859764099 +karman_re100,sr,20,8.0,velocity,upper_ux,0.9218024611473083 +karman_re100,sr,20,8.0,velocity,upper_uy,0.27213943004608154 +karman_re100,sr,20,8.0,velocity,center_ux,0.918152928352356 +karman_re100,sr,20,8.0,velocity,center_uy,0.4162585735321045 +karman_re100,sr,20,8.0,velocity,lower_ux,1.0911028385162354 +karman_re100,sr,20,8.0,velocity,lower_uy,0.3174692690372467 +karman_re100,sr,21,8.4,velocity,upper_ux,0.8754460215568542 +karman_re100,sr,21,8.4,velocity,upper_uy,0.24871593713760376 +karman_re100,sr,21,8.4,velocity,center_ux,0.9160491228103638 +karman_re100,sr,21,8.4,velocity,center_uy,0.3850661814212799 +karman_re100,sr,21,8.4,velocity,lower_ux,1.1377482414245605 +karman_re100,sr,21,8.4,velocity,lower_uy,0.296033650636673 +karman_re100,sr,22,8.8,velocity,upper_ux,0.844402015209198 +karman_re100,sr,22,8.8,velocity,upper_uy,0.18758410215377808 +karman_re100,sr,22,8.8,velocity,center_ux,0.9033003449440002 +karman_re100,sr,22,8.8,velocity,center_uy,0.3101060390472412 +karman_re100,sr,22,8.8,velocity,lower_ux,1.1833808422088623 +karman_re100,sr,22,8.8,velocity,lower_uy,0.2535410523414612 +karman_re100,sr,23,9.2,velocity,upper_ux,0.8355039358139038 +karman_re100,sr,23,9.2,velocity,upper_uy,0.09668097645044327 +karman_re100,sr,23,9.2,velocity,center_ux,0.8810128569602966 +karman_re100,sr,23,9.2,velocity,center_uy,0.1790051907300949 +karman_re100,sr,23,9.2,velocity,lower_ux,1.2155579328536987 +karman_re100,sr,23,9.2,velocity,lower_uy,0.17093977332115173 +karman_re100,sr,24,9.6,velocity,upper_ux,0.8494583964347839 +karman_re100,sr,24,9.6,velocity,upper_uy,-0.01110365241765976 +karman_re100,sr,24,9.6,velocity,center_ux,0.8519541025161743 +karman_re100,sr,24,9.6,velocity,center_uy,-0.013210451230406761 +karman_re100,sr,24,9.6,velocity,lower_ux,1.2276928424835205 +karman_re100,sr,24,9.6,velocity,lower_uy,0.05608643963932991 +karman_re100,sr,25,10.0,velocity,upper_ux,0.8762142062187195 +karman_re100,sr,25,10.0,velocity,upper_uy,-0.128221794962883 +karman_re100,sr,25,10.0,velocity,center_ux,0.8398563861846924 +karman_re100,sr,25,10.0,velocity,center_uy,-0.23244890570640564 +karman_re100,sr,25,10.0,velocity,lower_ux,1.209485650062561 +karman_re100,sr,25,10.0,velocity,lower_uy,-0.08197849988937378 +karman_re100,sr,26,10.4,velocity,upper_ux,0.9169557690620422 +karman_re100,sr,26,10.4,velocity,upper_uy,-0.22786685824394226 +karman_re100,sr,26,10.4,velocity,center_ux,0.8577240109443665 +karman_re100,sr,26,10.4,velocity,center_uy,-0.3849863111972809 +karman_re100,sr,26,10.4,velocity,lower_ux,1.1450300216674805 +karman_re100,sr,26,10.4,velocity,lower_uy,-0.21893243491649628 +karman_re100,sr,27,10.8,velocity,upper_ux,0.9668843150138855 +karman_re100,sr,27,10.8,velocity,upper_uy,-0.29644709825515747 +karman_re100,sr,27,10.8,velocity,center_ux,0.880764901638031 +karman_re100,sr,27,10.8,velocity,center_uy,-0.46225711703300476 +karman_re100,sr,27,10.8,velocity,lower_ux,1.0585598945617676 +karman_re100,sr,27,10.8,velocity,lower_uy,-0.30814623832702637 +karman_re100,sr,28,11.2,velocity,upper_ux,1.0219862461090088 +karman_re100,sr,28,11.2,velocity,upper_uy,-0.34168240427970886 +karman_re100,sr,28,11.2,velocity,center_ux,0.8993048071861267 +karman_re100,sr,28,11.2,velocity,center_uy,-0.5004533529281616 +karman_re100,sr,28,11.2,velocity,lower_ux,0.9787542223930359 +karman_re100,sr,28,11.2,velocity,lower_uy,-0.3504641354084015 +karman_re100,sr,29,11.6,velocity,upper_ux,1.0783275365829468 +karman_re100,sr,29,11.6,velocity,upper_uy,-0.3513319492340088 +karman_re100,sr,29,11.6,velocity,center_ux,0.9127368330955505 +karman_re100,sr,29,11.6,velocity,center_uy,-0.5042627453804016 +karman_re100,sr,29,11.6,velocity,lower_ux,0.9100785851478577 +karman_re100,sr,29,11.6,velocity,lower_uy,-0.35410091280937195 +karman_re100,sr,30,12.0,velocity,upper_ux,1.1380828619003296 +karman_re100,sr,30,12.0,velocity,upper_uy,-0.3338465094566345 +karman_re100,sr,30,12.0,velocity,center_ux,0.9202736020088196 +karman_re100,sr,30,12.0,velocity,center_uy,-0.4729531407356262 +karman_re100,sr,30,12.0,velocity,lower_ux,0.8548842072486877 +karman_re100,sr,30,12.0,velocity,lower_uy,-0.31821200251579285 +karman_re100,sr,31,12.4,velocity,upper_ux,1.1960800886154175 +karman_re100,sr,31,12.4,velocity,upper_uy,-0.29282569885253906 +karman_re100,sr,31,12.4,velocity,center_ux,0.9120436906814575 +karman_re100,sr,31,12.4,velocity,center_uy,-0.3961343765258789 +karman_re100,sr,31,12.4,velocity,lower_ux,0.812630832195282 +karman_re100,sr,31,12.4,velocity,lower_uy,-0.2393292635679245 +karman_re100,sr,32,12.8,velocity,upper_ux,1.2440751791000366 +karman_re100,sr,32,12.8,velocity,upper_uy,-0.21193331480026245 +karman_re100,sr,32,12.8,velocity,center_ux,0.8878138661384583 +karman_re100,sr,32,12.8,velocity,center_uy,-0.25953078269958496 +karman_re100,sr,32,12.8,velocity,lower_ux,0.79156494140625 +karman_re100,sr,32,12.8,velocity,lower_uy,-0.12582531571388245 +karman_re100,sr,33,13.2,velocity,upper_ux,1.264907717704773 +karman_re100,sr,33,13.2,velocity,upper_uy,-0.08634331822395325 +karman_re100,sr,33,13.2,velocity,center_ux,0.8488647937774658 +karman_re100,sr,33,13.2,velocity,center_uy,-0.03883162885904312 +karman_re100,sr,33,13.2,velocity,lower_ux,0.7966313362121582 +karman_re100,sr,33,13.2,velocity,lower_uy,0.0038643977604806423 +karman_re100,sr,34,13.6,velocity,upper_ux,1.2406665086746216 +karman_re100,sr,34,13.6,velocity,upper_uy,0.08030009269714355 +karman_re100,sr,34,13.6,velocity,center_ux,0.8348119854927063 +karman_re100,sr,34,13.6,velocity,center_uy,0.23441001772880554 +karman_re100,sr,34,13.6,velocity,lower_ux,0.8296836614608765 +karman_re100,sr,34,13.6,velocity,lower_uy,0.13032986223697662 +karman_re100,sr,35,14.0,velocity,upper_ux,1.1657928228378296 +karman_re100,sr,35,14.0,velocity,upper_uy,0.23713922500610352 +karman_re100,sr,35,14.0,velocity,center_ux,0.8547917008399963 +karman_re100,sr,35,14.0,velocity,center_uy,0.42984938621520996 +karman_re100,sr,35,14.0,velocity,lower_ux,0.8780080676078796 +karman_re100,sr,35,14.0,velocity,lower_uy,0.2387680858373642 +karman_re100,sr,36,14.4,velocity,upper_ux,1.074760913848877 +karman_re100,sr,36,14.4,velocity,upper_uy,0.3390396535396576 +karman_re100,sr,36,14.4,velocity,center_ux,0.886965274810791 +karman_re100,sr,36,14.4,velocity,center_uy,0.5151647329330444 +karman_re100,sr,36,14.4,velocity,lower_ux,0.9389211535453796 +karman_re100,sr,36,14.4,velocity,lower_uy,0.3120744824409485 +karman_re100,sr,37,14.8,velocity,upper_ux,0.9903466701507568 +karman_re100,sr,37,14.8,velocity,upper_uy,0.3885451853275299 +karman_re100,sr,37,14.8,velocity,center_ux,0.9134388566017151 +karman_re100,sr,37,14.8,velocity,center_uy,0.5492883920669556 +karman_re100,sr,37,14.8,velocity,lower_ux,1.0035969018936157 +karman_re100,sr,37,14.8,velocity,lower_uy,0.3604206442832947 +karman_re100,sr,38,15.2,velocity,upper_ux,0.9165979623794556 +karman_re100,sr,38,15.2,velocity,upper_uy,0.39599570631980896 +karman_re100,sr,38,15.2,velocity,center_ux,0.9310479164123535 +karman_re100,sr,38,15.2,velocity,center_uy,0.5525509119033813 +karman_re100,sr,38,15.2,velocity,lower_ux,1.0662281513214111 +karman_re100,sr,38,15.2,velocity,lower_uy,0.3756490647792816 +karman_re100,sr,39,15.6,velocity,upper_ux,0.8546491265296936 +karman_re100,sr,39,15.6,velocity,upper_uy,0.3610641062259674 +karman_re100,sr,39,15.6,velocity,center_ux,0.9400371313095093 +karman_re100,sr,39,15.6,velocity,center_uy,0.5246885418891907 +karman_re100,sr,39,15.6,velocity,lower_ux,1.1285998821258545 +karman_re100,sr,39,15.6,velocity,lower_uy,0.3596866726875305 +karman_re100,sr,40,16.0,velocity,upper_ux,0.8066908121109009 +karman_re100,sr,40,16.0,velocity,upper_uy,0.2808384895324707 +karman_re100,sr,40,16.0,velocity,center_ux,0.9351588487625122 +karman_re100,sr,40,16.0,velocity,center_uy,0.4575236439704895 +karman_re100,sr,40,16.0,velocity,lower_ux,1.1941264867782593 +karman_re100,sr,40,16.0,velocity,lower_uy,0.3232685923576355 +karman_re100,sr,41,16.4,velocity,upper_ux,0.7766968011856079 +karman_re100,sr,41,16.4,velocity,upper_uy,0.1597854644060135 +karman_re100,sr,41,16.4,velocity,center_ux,0.9117068648338318 +karman_re100,sr,41,16.4,velocity,center_uy,0.3272552788257599 +karman_re100,sr,41,16.4,velocity,lower_ux,1.2558916807174683 +karman_re100,sr,41,16.4,velocity,lower_uy,0.2524052858352661 +karman_re100,sr,42,16.8,velocity,upper_ux,0.7718124985694885 +karman_re100,sr,42,16.8,velocity,upper_uy,0.014154825359582901 +karman_re100,sr,42,16.8,velocity,center_ux,0.8711965680122375 +karman_re100,sr,42,16.8,velocity,center_uy,0.10287979990243912 +karman_re100,sr,42,16.8,velocity,lower_ux,1.2921160459518433 +karman_re100,sr,42,16.8,velocity,lower_uy,0.1279870718717575 +karman_re100,sr,43,17.2,velocity,upper_ux,0.8030829429626465 +karman_re100,sr,43,17.2,velocity,upper_uy,-0.1241530030965805 +karman_re100,sr,43,17.2,velocity,center_ux,0.8525850772857666 +karman_re100,sr,43,17.2,velocity,center_uy,-0.19661904871463776 +karman_re100,sr,43,17.2,velocity,lower_ux,1.273229718208313 +karman_re100,sr,43,17.2,velocity,lower_uy,-0.053916625678539276 +karman_re100,sr,44,17.6,velocity,upper_ux,0.8564900159835815 +karman_re100,sr,44,17.6,velocity,upper_uy,-0.2378624528646469 +karman_re100,sr,44,17.6,velocity,center_ux,0.8679225444793701 +karman_re100,sr,44,17.6,velocity,center_uy,-0.4322766363620758 +karman_re100,sr,44,17.6,velocity,lower_ux,1.1983050107955933 +karman_re100,sr,44,17.6,velocity,lower_uy,-0.22637784481048584 +karman_re100,sr,45,18.0,velocity,upper_ux,0.9211528301239014 +karman_re100,sr,45,18.0,velocity,upper_uy,-0.3165160119533539 +karman_re100,sr,45,18.0,velocity,center_ux,0.8987213373184204 +karman_re100,sr,45,18.0,velocity,center_uy,-0.5345503687858582 +karman_re100,sr,45,18.0,velocity,lower_ux,1.1043000221252441 +karman_re100,sr,45,18.0,velocity,lower_uy,-0.3384215831756592 +karman_re100,sr,46,18.4,velocity,upper_ux,0.9898505210876465 +karman_re100,sr,46,18.4,velocity,upper_uy,-0.36641567945480347 +karman_re100,sr,46,18.4,velocity,center_ux,0.9265032410621643 +karman_re100,sr,46,18.4,velocity,center_uy,-0.5669737458229065 +karman_re100,sr,46,18.4,velocity,lower_ux,1.015696406364441 +karman_re100,sr,46,18.4,velocity,lower_uy,-0.39324405789375305 +karman_re100,sr,47,18.8,velocity,upper_ux,1.0573780536651611 +karman_re100,sr,47,18.8,velocity,upper_uy,-0.3840723931789398 +karman_re100,sr,47,18.8,velocity,center_ux,0.9470993280410767 +karman_re100,sr,47,18.8,velocity,center_uy,-0.5679457187652588 +karman_re100,sr,47,18.8,velocity,lower_ux,0.9397582411766052 +karman_re100,sr,47,18.8,velocity,lower_uy,-0.40355053544044495 +karman_re100,sr,48,19.2,velocity,upper_ux,1.1233733892440796 +karman_re100,sr,48,19.2,velocity,upper_uy,-0.3680937588214874 +karman_re100,sr,48,19.2,velocity,center_ux,0.9596675634384155 +karman_re100,sr,48,19.2,velocity,center_uy,-0.5385795831680298 +karman_re100,sr,48,19.2,velocity,lower_ux,0.8761855363845825 +karman_re100,sr,48,19.2,velocity,lower_uy,-0.36989516019821167 +karman_re100,sr,49,19.6,velocity,upper_ux,1.1896281242370605 +karman_re100,sr,49,19.6,velocity,upper_uy,-0.3319503664970398 +karman_re100,sr,49,19.6,velocity,center_ux,0.9566666483879089 +karman_re100,sr,49,19.6,velocity,center_uy,-0.472507119178772 +karman_re100,sr,49,19.6,velocity,lower_ux,0.8242831230163574 +karman_re100,sr,49,19.6,velocity,lower_uy,-0.28959372639656067 +karman_re100,sr,50,20.0,velocity,upper_ux,1.251123070716858 +karman_re100,sr,50,20.0,velocity,upper_uy,-0.26609423756599426 +karman_re100,sr,50,20.0,velocity,center_ux,0.9322969317436218 +karman_re100,sr,50,20.0,velocity,center_uy,-0.3457460105419159 +karman_re100,sr,50,20.0,velocity,lower_ux,0.7883290648460388 +karman_re100,sr,50,20.0,velocity,lower_uy,-0.16732202470302582 +karman_re100,sr,51,20.4,velocity,upper_ux,1.2939971685409546 +karman_re100,sr,51,20.4,velocity,upper_uy,-0.15106719732284546 +karman_re100,sr,51,20.4,velocity,center_ux,0.8898879885673523 +karman_re100,sr,51,20.4,velocity,center_uy,-0.1278548687696457 +karman_re100,sr,51,20.4,velocity,lower_ux,0.7793993949890137 +karman_re100,sr,51,20.4,velocity,lower_uy,-0.019314508885145187 +karman_re100,sr,52,20.8,velocity,upper_ux,1.2823777198791504 +karman_re100,sr,52,20.8,velocity,upper_uy,0.02861061319708824 +karman_re100,sr,52,20.8,velocity,center_ux,0.8659404516220093 +karman_re100,sr,52,20.8,velocity,center_uy,0.1738244593143463 +karman_re100,sr,52,20.8,velocity,lower_ux,0.8073822259902954 +karman_re100,sr,52,20.8,velocity,lower_uy,0.12258777767419815 +karman_re100,sr,53,21.2,velocity,upper_ux,1.210160732269287 +karman_re100,sr,53,21.2,velocity,upper_uy,0.21055439114570618 +karman_re100,sr,53,21.2,velocity,center_ux,0.8786900043487549 +karman_re100,sr,53,21.2,velocity,center_uy,0.42032474279403687 +karman_re100,sr,53,21.2,velocity,lower_ux,0.8605661988258362 +karman_re100,sr,53,21.2,velocity,lower_uy,0.23861117660999298 +karman_re100,sr,54,21.6,velocity,upper_ux,1.1149803400039673 +karman_re100,sr,54,21.6,velocity,upper_uy,0.3308956027030945 +karman_re100,sr,54,21.6,velocity,center_ux,0.9086862802505493 +karman_re100,sr,54,21.6,velocity,center_uy,0.5300058126449585 +karman_re100,sr,54,21.6,velocity,lower_ux,0.9255692362785339 +karman_re100,sr,54,21.6,velocity,lower_uy,0.3171132206916809 +karman_re100,sr,55,22.0,velocity,upper_ux,1.025197982788086 +karman_re100,sr,55,22.0,velocity,upper_uy,0.3899257183074951 +karman_re100,sr,55,22.0,velocity,center_ux,0.9368245601654053 +karman_re100,sr,55,22.0,velocity,center_uy,0.5648769736289978 +karman_re100,sr,55,22.0,velocity,lower_ux,0.9947471022605896 +karman_re100,sr,55,22.0,velocity,lower_uy,0.36687934398651123 +karman_re100,sr,56,22.4,velocity,upper_ux,0.9462259411811829 +karman_re100,sr,56,22.4,velocity,upper_uy,0.40121108293533325 +karman_re100,sr,56,22.4,velocity,center_ux,0.9555522799491882 +karman_re100,sr,56,22.4,velocity,center_uy,0.5655602812767029 +karman_re100,sr,56,22.4,velocity,lower_ux,1.0595734119415283 +karman_re100,sr,56,22.4,velocity,lower_uy,0.3840252757072449 +karman_re100,sr,57,22.8,velocity,upper_ux,0.8813950419425964 +karman_re100,sr,57,22.8,velocity,upper_uy,0.3686554431915283 +karman_re100,sr,57,22.8,velocity,center_ux,0.9684851765632629 +karman_re100,sr,57,22.8,velocity,center_uy,0.5365306735038757 +karman_re100,sr,57,22.8,velocity,lower_ux,1.1242311000823975 +karman_re100,sr,57,22.8,velocity,lower_uy,0.36748775839805603 +karman_re100,sr,58,23.2,velocity,upper_ux,0.8311298489570618 +karman_re100,sr,58,23.2,velocity,upper_uy,0.28964802622795105 +karman_re100,sr,58,23.2,velocity,center_ux,0.9694045186042786 +karman_re100,sr,58,23.2,velocity,center_uy,0.47214367985725403 +karman_re100,sr,58,23.2,velocity,lower_ux,1.1917405128479004 +karman_re100,sr,58,23.2,velocity,lower_uy,0.3310423791408539 +karman_re100,sr,59,23.6,velocity,upper_ux,0.795132040977478 +karman_re100,sr,59,23.6,velocity,upper_uy,0.16714511811733246 +karman_re100,sr,59,23.6,velocity,center_ux,0.9469555616378784 +karman_re100,sr,59,23.6,velocity,center_uy,0.34776508808135986 +karman_re100,sr,59,23.6,velocity,lower_ux,1.2525502443313599 +karman_re100,sr,59,23.6,velocity,lower_uy,0.26600196957588196 +karman_re100,sr,60,24.0,velocity,upper_ux,0.7855769991874695 +karman_re100,sr,60,24.0,velocity,upper_uy,0.019219430163502693 +karman_re100,sr,60,24.0,velocity,center_ux,0.9037739634513855 +karman_re100,sr,60,24.0,velocity,center_uy,0.133535698056221 +karman_re100,sr,60,24.0,velocity,lower_ux,1.2955549955368042 +karman_re100,sr,60,24.0,velocity,lower_uy,0.15605714917182922 +karman_re100,sr,61,24.4,velocity,upper_ux,0.8117072582244873 +karman_re100,sr,61,24.4,velocity,upper_uy,-0.12310851365327835 +karman_re100,sr,61,24.4,velocity,center_ux,0.8760100603103638 +karman_re100,sr,61,24.4,velocity,center_uy,-0.1693914532661438 +karman_re100,sr,61,24.4,velocity,lower_ux,1.2850261926651 +karman_re100,sr,61,24.4,velocity,lower_uy,-0.017155252397060394 +karman_re100,sr,62,24.8,velocity,upper_ux,0.8628871440887451 +karman_re100,sr,62,24.8,velocity,upper_uy,-0.2398117631673813 +karman_re100,sr,62,24.8,velocity,center_ux,0.885266125202179 +karman_re100,sr,62,24.8,velocity,center_uy,-0.4161558449268341 +karman_re100,sr,62,24.8,velocity,lower_ux,1.2124096155166626 +karman_re100,sr,62,24.8,velocity,lower_uy,-0.19806434214115143 +karman_re100,sr,63,25.2,velocity,upper_ux,0.9273298382759094 +karman_re100,sr,63,25.2,velocity,upper_uy,-0.31802889704704285 +karman_re100,sr,63,25.2,velocity,center_ux,0.9132275581359863 +karman_re100,sr,63,25.2,velocity,center_uy,-0.5250338912010193 +karman_re100,sr,63,25.2,velocity,lower_ux,1.1172785758972168 +karman_re100,sr,63,25.2,velocity,lower_uy,-0.319859117269516 +karman_re100,sr,64,25.6,velocity,upper_ux,0.9962099194526672 +karman_re100,sr,64,25.6,velocity,upper_uy,-0.36703377962112427 +karman_re100,sr,64,25.6,velocity,center_ux,0.9399207234382629 +karman_re100,sr,64,25.6,velocity,center_uy,-0.5592526197433472 +karman_re100,sr,64,25.6,velocity,lower_ux,1.0276728868484497 +karman_re100,sr,64,25.6,velocity,lower_uy,-0.37992459535598755 +karman_re100,sr,65,26.0,velocity,upper_ux,1.0628588199615479 +karman_re100,sr,65,26.0,velocity,upper_uy,-0.38497352600097656 +karman_re100,sr,65,26.0,velocity,center_ux,0.9592803120613098 +karman_re100,sr,65,26.0,velocity,center_uy,-0.5612295269966125 +karman_re100,sr,65,26.0,velocity,lower_ux,0.9501925110816956 +karman_re100,sr,65,26.0,velocity,lower_uy,-0.3931945860385895 +karman_re100,sr,66,26.4,velocity,upper_ux,1.1276227235794067 +karman_re100,sr,66,26.4,velocity,upper_uy,-0.36901041865348816 +karman_re100,sr,66,26.4,velocity,center_ux,0.9715999364852905 +karman_re100,sr,66,26.4,velocity,center_uy,-0.5333175659179688 +karman_re100,sr,66,26.4,velocity,lower_ux,0.8853080868721008 +karman_re100,sr,66,26.4,velocity,lower_uy,-0.36263614892959595 +karman_re100,sr,67,26.8,velocity,upper_ux,1.1904261112213135 +karman_re100,sr,67,26.8,velocity,upper_uy,-0.3317290246486664 +karman_re100,sr,67,26.8,velocity,center_ux,0.9684464931488037 +karman_re100,sr,67,26.8,velocity,center_uy,-0.46807658672332764 +karman_re100,sr,67,26.8,velocity,lower_ux,0.8316358327865601 +karman_re100,sr,67,26.8,velocity,lower_uy,-0.28481826186180115 +karman_re100,sr,68,27.2,velocity,upper_ux,1.2528055906295776 +karman_re100,sr,68,27.2,velocity,upper_uy,-0.2678004801273346 +karman_re100,sr,68,27.2,velocity,center_ux,0.9478675127029419 +karman_re100,sr,68,27.2,velocity,center_uy,-0.34555676579475403 +karman_re100,sr,68,27.2,velocity,lower_ux,0.7971174716949463 +karman_re100,sr,68,27.2,velocity,lower_uy,-0.1654333919286728 +karman_re100,sr,69,27.6,velocity,upper_ux,1.2955830097198486 +karman_re100,sr,69,27.6,velocity,upper_uy,-0.16027149558067322 +karman_re100,sr,69,27.6,velocity,center_ux,0.9037832617759705 +karman_re100,sr,69,27.6,velocity,center_uy,-0.13652418553829193 +karman_re100,sr,69,27.6,velocity,lower_ux,0.7878772616386414 +karman_re100,sr,69,27.6,velocity,lower_uy,-0.020670998841524124 +karman_re100,sr,70,28.0,velocity,upper_ux,1.2898478507995605 +karman_re100,sr,70,28.0,velocity,upper_uy,0.009809549897909164 +karman_re100,sr,70,28.0,velocity,center_ux,0.8751348853111267 +karman_re100,sr,70,28.0,velocity,center_uy,0.1611253172159195 +karman_re100,sr,70,28.0,velocity,lower_ux,0.8152850866317749 +karman_re100,sr,70,28.0,velocity,lower_uy,0.11913193762302399 +karman_re100,sr,71,28.4,velocity,upper_ux,1.2182575464248657 +karman_re100,sr,71,28.4,velocity,upper_uy,0.19336216151714325 +karman_re100,sr,71,28.4,velocity,center_ux,0.8831113576889038 +karman_re100,sr,71,28.4,velocity,center_uy,0.4087507724761963 +karman_re100,sr,71,28.4,velocity,lower_ux,0.8652562499046326 +karman_re100,sr,71,28.4,velocity,lower_uy,0.23546241223812103 +karman_re100,sr,72,28.8,velocity,upper_ux,1.1226320266723633 +karman_re100,sr,72,28.8,velocity,upper_uy,0.31890028715133667 +karman_re100,sr,72,28.8,velocity,center_ux,0.9118619561195374 +karman_re100,sr,72,28.8,velocity,center_uy,0.5208615660667419 +karman_re100,sr,72,28.8,velocity,lower_ux,0.9288073182106018 +karman_re100,sr,72,28.8,velocity,lower_uy,0.31446200609207153 +karman_re100,sr,73,29.2,velocity,upper_ux,1.0300915241241455 +karman_re100,sr,73,29.2,velocity,upper_uy,0.38029441237449646 +karman_re100,sr,73,29.2,velocity,center_ux,0.9376876354217529 +karman_re100,sr,73,29.2,velocity,center_uy,0.5561468601226807 +karman_re100,sr,73,29.2,velocity,lower_ux,0.9949411153793335 +karman_re100,sr,73,29.2,velocity,lower_uy,0.36372554302215576 +karman_re100,sr,74,29.6,velocity,upper_ux,0.9524272680282593 +karman_re100,sr,74,29.6,velocity,upper_uy,0.3946036100387573 +karman_re100,sr,74,29.6,velocity,center_ux,0.9581191539764404 +karman_re100,sr,74,29.6,velocity,center_uy,0.5594256520271301 +karman_re100,sr,74,29.6,velocity,lower_ux,1.0611156225204468 +karman_re100,sr,74,29.6,velocity,lower_uy,0.38270795345306396 +karman_re100,sr,75,30.0,velocity,upper_ux,0.8876951336860657 +karman_re100,sr,75,30.0,velocity,upper_uy,0.36468231678009033 +karman_re100,sr,75,30.0,velocity,center_ux,0.9717541337013245 +karman_re100,sr,75,30.0,velocity,center_uy,0.53175950050354 +karman_re100,sr,75,30.0,velocity,lower_ux,1.1253544092178345 +karman_re100,sr,75,30.0,velocity,lower_uy,0.36696526408195496 +karman_re100,sr,76,30.4,velocity,upper_ux,0.8359233140945435 +karman_re100,sr,76,30.4,velocity,upper_uy,0.28814059495925903 +karman_re100,sr,76,30.4,velocity,center_ux,0.9721227288246155 +karman_re100,sr,76,30.4,velocity,center_uy,0.4686139225959778 +karman_re100,sr,76,30.4,velocity,lower_ux,1.1900315284729004 +karman_re100,sr,76,30.4,velocity,lower_uy,0.33064913749694824 +karman_re100,sr,77,30.8,velocity,upper_ux,0.7994032502174377 +karman_re100,sr,77,30.8,velocity,upper_uy,0.16900162398815155 +karman_re100,sr,77,30.8,velocity,center_ux,0.9511048793792725 +karman_re100,sr,77,30.8,velocity,center_uy,0.3481859266757965 +karman_re100,sr,77,30.8,velocity,lower_ux,1.249994158744812 +karman_re100,sr,77,30.8,velocity,lower_uy,0.26783210039138794 +karman_re100,sr,78,31.2,velocity,upper_ux,0.7893328666687012 +karman_re100,sr,78,31.2,velocity,upper_uy,0.024188490584492683 +karman_re100,sr,78,31.2,velocity,center_ux,0.9078017473220825 +karman_re100,sr,78,31.2,velocity,center_uy,0.1430589258670807 +karman_re100,sr,78,31.2,velocity,lower_ux,1.2936007976531982 +karman_re100,sr,78,31.2,velocity,lower_uy,0.16325685381889343 +karman_re100,sr,79,31.6,velocity,upper_ux,0.816088855266571 +karman_re100,sr,79,31.6,velocity,upper_uy,-0.11672414839267731 +karman_re100,sr,79,31.6,velocity,center_ux,0.8784130811691284 +karman_re100,sr,79,31.6,velocity,center_uy,-0.1540454924106598 +karman_re100,sr,79,31.6,velocity,lower_ux,1.2904199361801147 +karman_re100,sr,79,31.6,velocity,lower_uy,-0.003473325865343213 +karman_re100,sr,80,32.0,velocity,upper_ux,0.8649303317070007 +karman_re100,sr,80,32.0,velocity,upper_uy,-0.2340112328529358 +karman_re100,sr,80,32.0,velocity,center_ux,0.8844341039657593 +karman_re100,sr,80,32.0,velocity,center_uy,-0.4037771224975586 +karman_re100,sr,80,32.0,velocity,lower_ux,1.2192803621292114 +karman_re100,sr,80,32.0,velocity,lower_uy,-0.18645669519901276 +karman_re100,sr,81,32.4,velocity,upper_ux,0.928497850894928 +karman_re100,sr,81,32.4,velocity,upper_uy,-0.3134573698043823 +karman_re100,sr,81,32.4,velocity,center_ux,0.9125216007232666 +karman_re100,sr,81,32.4,velocity,center_uy,-0.5175764560699463 +karman_re100,sr,81,32.4,velocity,lower_ux,1.1240894794464111 +karman_re100,sr,81,32.4,velocity,lower_uy,-0.31310027837753296 +karman_re100,sr,82,32.8,velocity,upper_ux,0.9958876967430115 +karman_re100,sr,82,32.8,velocity,upper_uy,-0.36356431245803833 +karman_re100,sr,82,32.8,velocity,center_ux,0.9389171600341797 +karman_re100,sr,82,32.8,velocity,center_uy,-0.5545527338981628 +karman_re100,sr,82,32.8,velocity,lower_ux,1.0325722694396973 +karman_re100,sr,82,32.8,velocity,lower_uy,-0.3764165937900543 +karman_re100,sr,83,33.2,velocity,upper_ux,1.0609359741210938 +karman_re100,sr,83,33.2,velocity,upper_uy,-0.3831018805503845 +karman_re100,sr,83,33.2,velocity,center_ux,0.9578186869621277 +karman_re100,sr,83,33.2,velocity,center_uy,-0.5586183071136475 +karman_re100,sr,83,33.2,velocity,lower_ux,0.953578770160675 +karman_re100,sr,83,33.2,velocity,lower_uy,-0.3918779790401459 +karman_re100,sr,84,33.6,velocity,upper_ux,1.1241525411605835 +karman_re100,sr,84,33.6,velocity,upper_uy,-0.3677581548690796 +karman_re100,sr,84,33.6,velocity,center_ux,0.9702134728431702 +karman_re100,sr,84,33.6,velocity,center_uy,-0.5316924452781677 +karman_re100,sr,84,33.6,velocity,lower_ux,0.8874907493591309 +karman_re100,sr,84,33.6,velocity,lower_uy,-0.36326825618743896 +karman_re100,sr,85,34.0,velocity,upper_ux,1.1884396076202393 +karman_re100,sr,85,34.0,velocity,upper_uy,-0.3316571116447449 +karman_re100,sr,85,34.0,velocity,center_ux,0.9703270196914673 +karman_re100,sr,85,34.0,velocity,center_uy,-0.46945008635520935 +karman_re100,sr,85,34.0,velocity,lower_ux,0.8350268006324768 +karman_re100,sr,85,34.0,velocity,lower_uy,-0.2883068323135376 +karman_re100,sr,86,34.4,velocity,upper_ux,1.2494032382965088 +karman_re100,sr,86,34.4,velocity,upper_uy,-0.26907217502593994 +karman_re100,sr,86,34.4,velocity,center_ux,0.9510409832000732 +karman_re100,sr,86,34.4,velocity,center_uy,-0.3504656255245209 +karman_re100,sr,86,34.4,velocity,lower_ux,0.7993953824043274 +karman_re100,sr,86,34.4,velocity,lower_uy,-0.17089557647705078 +karman_re100,sr,87,34.8,velocity,upper_ux,1.294338583946228 +karman_re100,sr,87,34.8,velocity,upper_uy,-0.16553355753421783 +karman_re100,sr,87,34.8,velocity,center_ux,0.908865749835968 +karman_re100,sr,87,34.8,velocity,center_uy,-0.148416668176651 +karman_re100,sr,87,34.8,velocity,lower_ux,0.789989709854126 +karman_re100,sr,87,34.8,velocity,lower_uy,-0.02745319902896881 +karman_re100,sr,88,35.2,velocity,upper_ux,1.2908227443695068 +karman_re100,sr,88,35.2,velocity,upper_uy,-0.000793994520790875 +karman_re100,sr,88,35.2,velocity,center_ux,0.8768590688705444 +karman_re100,sr,88,35.2,velocity,center_uy,0.14736126363277435 +karman_re100,sr,88,35.2,velocity,lower_ux,0.8148095011711121 +karman_re100,sr,88,35.2,velocity,lower_uy,0.1127307340502739 +karman_re100,sr,89,35.6,velocity,upper_ux,1.2215096950531006 +karman_re100,sr,89,35.6,velocity,upper_uy,0.1822890341281891 +karman_re100,sr,89,35.6,velocity,center_ux,0.8823794722557068 +karman_re100,sr,89,35.6,velocity,center_uy,0.3991689383983612 +karman_re100,sr,89,35.6,velocity,lower_ux,0.863167405128479 +karman_re100,sr,89,35.6,velocity,lower_uy,0.23028957843780518 +karman_re100,sr,90,36.0,velocity,upper_ux,1.125554084777832 +karman_re100,sr,90,36.0,velocity,upper_uy,0.3105171322822571 +karman_re100,sr,90,36.0,velocity,center_ux,0.9098389148712158 +karman_re100,sr,90,36.0,velocity,center_uy,0.5151430368423462 +karman_re100,sr,90,36.0,velocity,lower_ux,0.925507128238678 +karman_re100,sr,90,36.0,velocity,lower_uy,0.3105091452598572 +karman_re100,sr,91,36.4,velocity,upper_ux,1.0343623161315918 +karman_re100,sr,91,36.4,velocity,upper_uy,0.3753180205821991 +karman_re100,sr,91,36.4,velocity,center_ux,0.9371775984764099 +karman_re100,sr,91,36.4,velocity,center_uy,0.5531265735626221 +karman_re100,sr,91,36.4,velocity,lower_ux,0.9931891560554504 +karman_re100,sr,91,36.4,velocity,lower_uy,0.36136364936828613 +karman_re100,sr,92,36.8,velocity,upper_ux,0.9565203189849854 +karman_re100,sr,92,36.8,velocity,upper_uy,0.39218634366989136 +karman_re100,sr,92,36.8,velocity,center_ux,0.9579178094863892 +karman_re100,sr,92,36.8,velocity,center_uy,0.5582790970802307 +karman_re100,sr,92,36.8,velocity,lower_ux,1.059802532196045 +karman_re100,sr,92,36.8,velocity,lower_uy,0.38231974840164185 +karman_re100,sr,93,37.2,velocity,upper_ux,0.8904626965522766 +karman_re100,sr,93,37.2,velocity,upper_uy,0.3651290237903595 +karman_re100,sr,93,37.2,velocity,center_ux,0.9709516167640686 +karman_re100,sr,93,37.2,velocity,center_uy,0.5325075387954712 +karman_re100,sr,93,37.2,velocity,lower_ux,1.1233502626419067 +karman_re100,sr,93,37.2,velocity,lower_uy,0.3681566119194031 +karman_re100,sr,94,37.6,velocity,upper_ux,0.8368427157402039 +karman_re100,sr,94,37.6,velocity,upper_uy,0.29167404770851135 +karman_re100,sr,94,37.6,velocity,center_ux,0.970628559589386 +karman_re100,sr,94,37.6,velocity,center_uy,0.47217243909835815 +karman_re100,sr,94,37.6,velocity,lower_ux,1.186846137046814 +karman_re100,sr,94,37.6,velocity,lower_uy,0.33301281929016113 +karman_re100,sr,95,38.0,velocity,upper_ux,0.7997420430183411 +karman_re100,sr,95,38.0,velocity,upper_uy,0.17551347613334656 +karman_re100,sr,95,38.0,velocity,center_ux,0.9508816003799438 +karman_re100,sr,95,38.0,velocity,center_uy,0.3555493652820587 +karman_re100,sr,95,38.0,velocity,lower_ux,1.2475180625915527 +karman_re100,sr,95,38.0,velocity,lower_uy,0.2720610499382019 +karman_re100,sr,96,38.4,velocity,upper_ux,0.7888218760490417 +karman_re100,sr,96,38.4,velocity,upper_uy,0.03265971317887306 +karman_re100,sr,96,38.4,velocity,center_ux,0.9086329936981201 +karman_re100,sr,96,38.4,velocity,center_uy,0.1571030616760254 +karman_re100,sr,96,38.4,velocity,lower_ux,1.293319821357727 +karman_re100,sr,96,38.4,velocity,lower_uy,0.17047758400440216 +karman_re100,sr,97,38.8,velocity,upper_ux,0.8134470582008362 +karman_re100,sr,97,38.8,velocity,upper_uy,-0.10789193958044052 +karman_re100,sr,97,38.8,velocity,center_ux,0.8767715692520142 +karman_re100,sr,97,38.8,velocity,center_uy,-0.1361469328403473 +karman_re100,sr,97,38.8,velocity,lower_ux,1.2931983470916748 +karman_re100,sr,97,38.8,velocity,lower_uy,0.007181160617619753 +karman_re100,sr,98,39.2,velocity,upper_ux,0.8624961972236633 +karman_re100,sr,98,39.2,velocity,upper_uy,-0.22678810358047485 +karman_re100,sr,98,39.2,velocity,center_ux,0.8825023174285889 +karman_re100,sr,98,39.2,velocity,center_uy,-0.3924257159233093 +karman_re100,sr,98,39.2,velocity,lower_ux,1.2266569137573242 +karman_re100,sr,98,39.2,velocity,lower_uy,-0.17748187482357025 +karman_re100,sr,99,39.6,velocity,upper_ux,0.9242300391197205 +karman_re100,sr,99,39.6,velocity,upper_uy,-0.308500736951828 +karman_re100,sr,99,39.6,velocity,center_ux,0.9094833135604858 +karman_re100,sr,99,39.6,velocity,center_uy,-0.5130506753921509 +karman_re100,sr,99,39.6,velocity,lower_ux,1.1304869651794434 +karman_re100,sr,99,39.6,velocity,lower_uy,-0.3078787922859192 +karman_re100,sr,100,40.0,velocity,upper_ux,0.9909315705299377 +karman_re100,sr,100,40.0,velocity,upper_uy,-0.36019280552864075 +karman_re100,sr,100,40.0,velocity,center_ux,0.9361083507537842 +karman_re100,sr,100,40.0,velocity,center_uy,-0.5525540709495544 +karman_re100,sr,100,40.0,velocity,lower_ux,1.0376931428909302 +karman_re100,sr,100,40.0,velocity,lower_uy,-0.374074786901474 +karman_re100,sr,101,40.4,velocity,upper_ux,1.0566985607147217 +karman_re100,sr,101,40.4,velocity,upper_uy,-0.38227546215057373 +karman_re100,sr,101,40.4,velocity,center_ux,0.9561969637870789 +karman_re100,sr,101,40.4,velocity,center_uy,-0.5585854053497314 +karman_re100,sr,101,40.4,velocity,lower_ux,0.9584885239601135 +karman_re100,sr,101,40.4,velocity,lower_uy,-0.39195623993873596 +karman_re100,sr,102,40.8,velocity,upper_ux,1.120506763458252 +karman_re100,sr,102,40.8,velocity,upper_uy,-0.36891743540763855 +karman_re100,sr,102,40.8,velocity,center_ux,0.9697534441947937 +karman_re100,sr,102,40.8,velocity,center_uy,-0.5335052609443665 +karman_re100,sr,102,40.8,velocity,lower_ux,0.8921326994895935 +karman_re100,sr,102,40.8,velocity,lower_uy,-0.36605164408683777 +karman_re100,sr,103,41.2,velocity,upper_ux,1.1852091550827026 +karman_re100,sr,103,41.2,velocity,upper_uy,-0.334420770406723 +karman_re100,sr,103,41.2,velocity,center_ux,0.9712794423103333 +karman_re100,sr,103,41.2,velocity,center_uy,-0.47435662150382996 +karman_re100,sr,103,41.2,velocity,lower_ux,0.8392916917800903 +karman_re100,sr,103,41.2,velocity,lower_uy,-0.294023722410202 +karman_re100,sr,104,41.6,velocity,upper_ux,1.24637770652771 +karman_re100,sr,104,41.6,velocity,upper_uy,-0.27434056997299194 +karman_re100,sr,104,41.6,velocity,center_ux,0.9528642892837524 +karman_re100,sr,104,41.6,velocity,center_uy,-0.35931605100631714 +karman_re100,sr,104,41.6,velocity,lower_ux,0.8019258379936218 +karman_re100,sr,104,41.6,velocity,lower_uy,-0.17896252870559692 +karman_re100,sr,105,42.0,velocity,upper_ux,1.293494701385498 +karman_re100,sr,105,42.0,velocity,upper_uy,-0.17448323965072632 +karman_re100,sr,105,42.0,velocity,center_ux,0.9115458726882935 +karman_re100,sr,105,42.0,velocity,center_uy,-0.1643846333026886 +karman_re100,sr,105,42.0,velocity,lower_ux,0.7903461456298828 +karman_re100,sr,105,42.0,velocity,lower_uy,-0.03658388927578926 +karman_re100,sr,106,42.4,velocity,upper_ux,1.2926325798034668 +karman_re100,sr,106,42.4,velocity,upper_uy,-0.013028540648519993 +karman_re100,sr,106,42.4,velocity,center_ux,0.8764637112617493 +karman_re100,sr,106,42.4,velocity,center_uy,0.1274338811635971 +karman_re100,sr,106,42.4,velocity,lower_ux,0.8121820688247681 +karman_re100,sr,106,42.4,velocity,lower_uy,0.10421787202358246 +karman_re100,sr,107,42.8,velocity,upper_ux,1.2271535396575928 +karman_re100,sr,107,42.8,velocity,upper_uy,0.17217420041561127 +karman_re100,sr,107,42.8,velocity,center_ux,0.8804375529289246 +karman_re100,sr,107,42.8,velocity,center_uy,0.3865165412425995 +karman_re100,sr,107,42.8,velocity,lower_ux,0.8600548505783081 +karman_re100,sr,107,42.8,velocity,lower_uy,0.2234974056482315 +karman_re100,sr,108,43.2,velocity,upper_ux,1.1320990324020386 +karman_re100,sr,108,43.2,velocity,upper_uy,0.305036723613739 +karman_re100,sr,108,43.2,velocity,center_ux,0.9080290794372559 +karman_re100,sr,108,43.2,velocity,center_uy,0.510753870010376 +karman_re100,sr,108,43.2,velocity,lower_ux,0.9222918748855591 +karman_re100,sr,108,43.2,velocity,lower_uy,0.30612123012542725 +karman_re100,sr,109,43.6,velocity,upper_ux,1.0402709245681763 +karman_re100,sr,109,43.6,velocity,upper_uy,0.3733289837837219 +karman_re100,sr,109,43.6,velocity,center_ux,0.9362434148788452 +karman_re100,sr,109,43.6,velocity,center_uy,0.5517919659614563 +karman_re100,sr,109,43.6,velocity,lower_ux,0.9902040362358093 +karman_re100,sr,109,43.6,velocity,lower_uy,0.35851359367370605 +karman_re100,sr,110,44.0,velocity,upper_ux,0.960503339767456 +karman_re100,sr,110,44.0,velocity,upper_uy,0.3928205072879791 +karman_re100,sr,110,44.0,velocity,center_ux,0.9565879106521606 +karman_re100,sr,110,44.0,velocity,center_uy,0.5590187311172485 +karman_re100,sr,110,44.0,velocity,lower_ux,1.0560342073440552 +karman_re100,sr,110,44.0,velocity,lower_uy,0.3817910850048065 +karman_re100,sr,111,44.4,velocity,upper_ux,0.8929426670074463 +karman_re100,sr,111,44.4,velocity,upper_uy,0.3685763478279114 +karman_re100,sr,111,44.4,velocity,center_ux,0.9696652293205261 +karman_re100,sr,111,44.4,velocity,center_uy,0.5352533459663391 +karman_re100,sr,111,44.4,velocity,lower_ux,1.1190108060836792 +karman_re100,sr,111,44.4,velocity,lower_uy,0.3694128096103668 +karman_re100,sr,112,44.8,velocity,upper_ux,0.8399637341499329 +karman_re100,sr,112,44.8,velocity,upper_uy,0.2984376847743988 +karman_re100,sr,112,44.8,velocity,center_ux,0.9722462296485901 +karman_re100,sr,112,44.8,velocity,center_uy,0.47855278849601746 +karman_re100,sr,112,44.8,velocity,lower_ux,1.1845009326934814 +karman_re100,sr,112,44.8,velocity,lower_uy,0.3358967900276184 +karman_re100,sr,113,45.2,velocity,upper_ux,0.8010447025299072 +karman_re100,sr,113,45.2,velocity,upper_uy,0.18435989320278168 +karman_re100,sr,113,45.2,velocity,center_ux,0.9534611701965332 +karman_re100,sr,113,45.2,velocity,center_uy,0.365672767162323 +karman_re100,sr,113,45.2,velocity,lower_ux,1.244694471359253 +karman_re100,sr,113,45.2,velocity,lower_uy,0.27648720145225525 +karman_re100,sr,114,45.6,velocity,upper_ux,0.7884973287582397 +karman_re100,sr,114,45.6,velocity,upper_uy,0.042105525732040405 +karman_re100,sr,114,45.6,velocity,center_ux,0.9126700758934021 +karman_re100,sr,114,45.6,velocity,center_uy,0.17340928316116333 +karman_re100,sr,114,45.6,velocity,lower_ux,1.2924484014511108 +karman_re100,sr,114,45.6,velocity,lower_uy,0.1777469515800476 +karman_re100,sr,115,46.0,velocity,upper_ux,0.8108007907867432 +karman_re100,sr,115,46.0,velocity,upper_uy,-0.09955187141895294 +karman_re100,sr,115,46.0,velocity,center_ux,0.8788447380065918 +karman_re100,sr,115,46.0,velocity,center_uy,-0.11774268746376038 +karman_re100,sr,115,46.0,velocity,lower_ux,1.2958816289901733 +karman_re100,sr,115,46.0,velocity,lower_uy,0.01834372617304325 +karman_re100,sr,116,46.4,velocity,upper_ux,0.8578677177429199 +karman_re100,sr,116,46.4,velocity,upper_uy,-0.22038346529006958 +karman_re100,sr,116,46.4,velocity,center_ux,0.8815414309501648 +karman_re100,sr,116,46.4,velocity,center_uy,-0.38137173652648926 +karman_re100,sr,116,46.4,velocity,lower_ux,1.231404423713684 +karman_re100,sr,116,46.4,velocity,lower_uy,-0.16703802347183228 +karman_re100,sr,117,46.8,velocity,upper_ux,0.9190807938575745 +karman_re100,sr,117,46.8,velocity,upper_uy,-0.30456873774528503 +karman_re100,sr,117,46.8,velocity,center_ux,0.9078167676925659 +karman_re100,sr,117,46.8,velocity,center_uy,-0.5093166828155518 +karman_re100,sr,117,46.8,velocity,lower_ux,1.1359175443649292 +karman_re100,sr,117,46.8,velocity,lower_uy,-0.3011209964752197 +karman_re100,sr,118,47.2,velocity,upper_ux,0.9863687753677368 +karman_re100,sr,118,47.2,velocity,upper_uy,-0.35774654150009155 +karman_re100,sr,118,47.2,velocity,center_ux,0.935203492641449 +karman_re100,sr,118,47.2,velocity,center_uy,-0.5513830184936523 +karman_re100,sr,118,47.2,velocity,lower_ux,1.0432194471359253 +karman_re100,sr,118,47.2,velocity,lower_uy,-0.37076517939567566 +karman_re100,sr,119,47.6,velocity,upper_ux,1.0530340671539307 +karman_re100,sr,119,47.6,velocity,upper_uy,-0.38231146335601807 +karman_re100,sr,119,47.6,velocity,center_ux,0.9560874104499817 +karman_re100,sr,119,47.6,velocity,center_uy,-0.5592981576919556 +karman_re100,sr,119,47.6,velocity,lower_ux,0.9636772871017456 +karman_re100,sr,119,47.6,velocity,lower_uy,-0.3915797770023346 +karman_re100,sr,120,48.0,velocity,upper_ux,1.11874258518219 +karman_re100,sr,120,48.0,velocity,upper_uy,-0.37145379185676575 +karman_re100,sr,120,48.0,velocity,center_ux,0.971540093421936 +karman_re100,sr,120,48.0,velocity,center_uy,-0.5368741154670715 +karman_re100,sr,120,48.0,velocity,lower_ux,0.8979693055152893 +karman_re100,sr,120,48.0,velocity,lower_uy,-0.36923253536224365 +karman_re100,sr,121,48.4,velocity,upper_ux,1.181355357170105 +karman_re100,sr,121,48.4,velocity,upper_uy,-0.33778342604637146 +karman_re100,sr,121,48.4,velocity,center_ux,0.9717864990234375 +karman_re100,sr,121,48.4,velocity,center_uy,-0.4799997806549072 +karman_re100,sr,121,48.4,velocity,lower_ux,0.8421920537948608 +karman_re100,sr,121,48.4,velocity,lower_uy,-0.299765944480896 +karman_re100,sr,122,48.8,velocity,upper_ux,1.2424933910369873 +karman_re100,sr,122,48.8,velocity,upper_uy,-0.2799351215362549 +karman_re100,sr,122,48.8,velocity,center_ux,0.9538373351097107 +karman_re100,sr,122,48.8,velocity,center_uy,-0.3690798878669739 +karman_re100,sr,122,48.8,velocity,lower_ux,0.8028466701507568 +karman_re100,sr,122,48.8,velocity,lower_uy,-0.18737684190273285 +karman_re100,sr,123,49.2,velocity,upper_ux,1.2902127504348755 +karman_re100,sr,123,49.2,velocity,upper_uy,-0.18307623267173767 +karman_re100,sr,123,49.2,velocity,center_ux,0.9126701354980469 +karman_re100,sr,123,49.2,velocity,center_uy,-0.18061308562755585 +karman_re100,sr,123,49.2,velocity,lower_ux,0.7885792255401611 +karman_re100,sr,123,49.2,velocity,lower_uy,-0.0462418757379055 +karman_re100,sr,124,49.6,velocity,upper_ux,1.2959524393081665 +karman_re100,sr,124,49.6,velocity,upper_uy,-0.025453930720686913 +karman_re100,sr,124,49.6,velocity,center_ux,0.8773354291915894 +karman_re100,sr,124,49.6,velocity,center_uy,0.10673379898071289 +karman_re100,sr,124,49.6,velocity,lower_ux,0.8096601366996765 +karman_re100,sr,124,49.6,velocity,lower_uy,0.09520608186721802 +karman_re100,sr,125,50.0,velocity,upper_ux,1.2344965934753418 +karman_re100,sr,125,50.0,velocity,upper_uy,0.16168585419654846 +karman_re100,sr,125,50.0,velocity,center_ux,0.8796169757843018 +karman_re100,sr,125,50.0,velocity,center_uy,0.3732661306858063 +karman_re100,sr,125,50.0,velocity,lower_ux,0.8569851517677307 +karman_re100,sr,125,50.0,velocity,lower_uy,0.21644246578216553 +karman_re100,sr,126,50.4,velocity,upper_ux,1.1398741006851196 +karman_re100,sr,126,50.4,velocity,upper_uy,0.2990816831588745 +karman_re100,sr,126,50.4,velocity,center_ux,0.9065723419189453 +karman_re100,sr,126,50.4,velocity,center_uy,0.5062061548233032 +karman_re100,sr,126,50.4,velocity,lower_ux,0.9184406995773315 +karman_re100,sr,126,50.4,velocity,lower_uy,0.3017337918281555 +karman_re100,sr,127,50.8,velocity,upper_ux,1.0461487770080566 +karman_re100,sr,127,50.8,velocity,upper_uy,0.37092968821525574 +karman_re100,sr,127,50.8,velocity,center_ux,0.9342673420906067 +karman_re100,sr,127,50.8,velocity,center_uy,0.550428569316864 +karman_re100,sr,127,50.8,velocity,lower_ux,0.9852117896080017 +karman_re100,sr,127,50.8,velocity,lower_uy,0.355741947889328 +karman_re100,sr,128,51.2,velocity,upper_ux,0.9652842879295349 +karman_re100,sr,128,51.2,velocity,upper_uy,0.3931315541267395 +karman_re100,sr,128,51.2,velocity,center_ux,0.9549914598464966 +karman_re100,sr,128,51.2,velocity,center_uy,0.5596358776092529 +karman_re100,sr,128,51.2,velocity,lower_ux,1.0510320663452148 +karman_re100,sr,128,51.2,velocity,lower_uy,0.3814530670642853 +karman_re100,sr,129,51.6,velocity,upper_ux,0.8973751068115234 +karman_re100,sr,129,51.6,velocity,upper_uy,0.3717100918292999 +karman_re100,sr,129,51.6,velocity,center_ux,0.9692507386207581 +karman_re100,sr,129,51.6,velocity,center_uy,0.5376918911933899 +karman_re100,sr,129,51.6,velocity,lower_ux,1.114612102508545 +karman_re100,sr,129,51.6,velocity,lower_uy,0.37105506658554077 +karman_re100,sr,130,52.0,velocity,upper_ux,0.8428881764411926 +karman_re100,sr,130,52.0,velocity,upper_uy,0.3041616380214691 +karman_re100,sr,130,52.0,velocity,center_ux,0.9722046852111816 +karman_re100,sr,130,52.0,velocity,center_uy,0.483144074678421 +karman_re100,sr,130,52.0,velocity,lower_ux,1.1789573431015015 +karman_re100,sr,130,52.0,velocity,lower_uy,0.3383878469467163 +karman_re100,sr,131,52.4,velocity,upper_ux,0.8051022291183472 +karman_re100,sr,131,52.4,velocity,upper_uy,0.19305898249149323 +karman_re100,sr,131,52.4,velocity,center_ux,0.9578514695167542 +karman_re100,sr,131,52.4,velocity,center_uy,0.3752855062484741 +karman_re100,sr,131,52.4,velocity,lower_ux,1.243029236793518 +karman_re100,sr,131,52.4,velocity,lower_uy,0.2819064259529114 +karman_re100,sr,132,52.8,velocity,upper_ux,0.78877854347229 +karman_re100,sr,132,52.8,velocity,upper_uy,0.05142217129468918 +karman_re100,sr,132,52.8,velocity,center_ux,0.9163876175880432 +karman_re100,sr,132,52.8,velocity,center_uy,0.18927258253097534 +karman_re100,sr,132,52.8,velocity,lower_ux,1.2899092435836792 +karman_re100,sr,132,52.8,velocity,lower_uy,0.1860399842262268 +karman_re100,sr,133,53.2,velocity,upper_ux,0.8080243468284607 +karman_re100,sr,133,53.2,velocity,upper_uy,-0.09116421639919281 +karman_re100,sr,133,53.2,velocity,center_ux,0.8797683119773865 +karman_re100,sr,133,53.2,velocity,center_uy,-0.09776949882507324 +karman_re100,sr,133,53.2,velocity,lower_ux,1.2965209484100342 +karman_re100,sr,133,53.2,velocity,lower_uy,0.030777230858802795 +karman_re100,sr,134,53.6,velocity,upper_ux,0.8552308082580566 +karman_re100,sr,134,53.6,velocity,upper_uy,-0.21395893394947052 +karman_re100,sr,134,53.6,velocity,center_ux,0.8813391923904419 +karman_re100,sr,134,53.6,velocity,center_uy,-0.3685261905193329 +karman_re100,sr,134,53.6,velocity,lower_ux,1.2375167608261108 +karman_re100,sr,134,53.6,velocity,lower_uy,-0.15580430626869202 +karman_re100,sr,135,54.0,velocity,upper_ux,0.915122389793396 +karman_re100,sr,135,54.0,velocity,upper_uy,-0.3003174364566803 +karman_re100,sr,135,54.0,velocity,center_ux,0.9061066508293152 +karman_re100,sr,135,54.0,velocity,center_uy,-0.5044673681259155 +karman_re100,sr,135,54.0,velocity,lower_ux,1.1417497396469116 +karman_re100,sr,135,54.0,velocity,lower_uy,-0.29422348737716675 +karman_re100,sr,136,54.4,velocity,upper_ux,0.982924222946167 +karman_re100,sr,136,54.4,velocity,upper_uy,-0.35507845878601074 +karman_re100,sr,136,54.4,velocity,center_ux,0.9343540072441101 +karman_re100,sr,136,54.4,velocity,center_uy,-0.5499085783958435 +karman_re100,sr,136,54.4,velocity,lower_ux,1.0488322973251343 +karman_re100,sr,136,54.4,velocity,lower_uy,-0.3678564727306366 +karman_re100,sr,137,54.8,velocity,upper_ux,1.0498219728469849 +karman_re100,sr,137,54.8,velocity,upper_uy,-0.38191553950309753 +karman_re100,sr,137,54.8,velocity,center_ux,0.9556938409805298 +karman_re100,sr,137,54.8,velocity,center_uy,-0.5599068999290466 +karman_re100,sr,137,54.8,velocity,lower_ux,0.9684392809867859 +karman_re100,sr,137,54.8,velocity,lower_uy,-0.3916584253311157 +karman_re100,sr,138,55.2,velocity,upper_ux,1.1133021116256714 +karman_re100,sr,138,55.2,velocity,upper_uy,-0.3725411891937256 +karman_re100,sr,138,55.2,velocity,center_ux,0.9695030450820923 +karman_re100,sr,138,55.2,velocity,center_uy,-0.5389065742492676 +karman_re100,sr,138,55.2,velocity,lower_ux,0.8997663855552673 +karman_re100,sr,138,55.2,velocity,lower_uy,-0.3718967139720917 +karman_re100,sr,139,55.6,velocity,upper_ux,1.176970362663269 +karman_re100,sr,139,55.6,velocity,upper_uy,-0.3405023217201233 +karman_re100,sr,139,55.6,velocity,center_ux,0.9717165231704712 +karman_re100,sr,139,55.6,velocity,center_uy,-0.4856978952884674 +karman_re100,sr,139,55.6,velocity,lower_ux,0.8439401388168335 +karman_re100,sr,139,55.6,velocity,lower_uy,-0.30607229471206665 +karman_re100,sr,140,56.0,velocity,upper_ux,1.239060640335083 +karman_re100,sr,140,56.0,velocity,upper_uy,-0.28460174798965454 +karman_re100,sr,140,56.0,velocity,center_ux,0.9558036923408508 +karman_re100,sr,140,56.0,velocity,center_uy,-0.37921497225761414 +karman_re100,sr,140,56.0,velocity,lower_ux,0.8038504719734192 +karman_re100,sr,140,56.0,velocity,lower_uy,-0.1964154988527298 +karman_re100,sr,141,56.4,velocity,upper_ux,1.2887377738952637 +karman_re100,sr,141,56.4,velocity,upper_uy,-0.19055801630020142 +karman_re100,sr,141,56.4,velocity,center_ux,0.9162358045578003 +karman_re100,sr,141,56.4,velocity,center_uy,-0.19705872237682343 +karman_re100,sr,141,56.4,velocity,lower_ux,0.7879282236099243 +karman_re100,sr,141,56.4,velocity,lower_uy,-0.05623456835746765 +karman_re100,sr,142,56.8,velocity,upper_ux,1.2989050149917603 +karman_re100,sr,142,56.8,velocity,upper_uy,-0.03699709102511406 +karman_re100,sr,142,56.8,velocity,center_ux,0.8796958923339844 +karman_re100,sr,142,56.8,velocity,center_uy,0.0869862362742424 +karman_re100,sr,142,56.8,velocity,lower_ux,0.807198166847229 +karman_re100,sr,142,56.8,velocity,lower_uy,0.08626014739274979 +karman_re100,sr,143,57.2,velocity,upper_ux,1.2406470775604248 +karman_re100,sr,143,57.2,velocity,upper_uy,0.15047568082809448 +karman_re100,sr,143,57.2,velocity,center_ux,0.8793392777442932 +karman_re100,sr,143,57.2,velocity,center_uy,0.3604135811328888 +karman_re100,sr,143,57.2,velocity,lower_ux,0.853007435798645 +karman_re100,sr,143,57.2,velocity,lower_uy,0.20941638946533203 +karman_re100,sr,144,57.6,velocity,upper_ux,1.1475375890731812 +karman_re100,sr,144,57.6,velocity,upper_uy,0.2920982241630554 +karman_re100,sr,144,57.6,velocity,center_ux,0.9057184457778931 +karman_re100,sr,144,57.6,velocity,center_uy,0.5023195743560791 +karman_re100,sr,144,57.6,velocity,lower_ux,0.9141140580177307 +karman_re100,sr,144,57.6,velocity,lower_uy,0.2978249490261078 +karman_re100,sr,145,58.0,velocity,upper_ux,1.0519813299179077 +karman_re100,sr,145,58.0,velocity,upper_uy,0.36724984645843506 +karman_re100,sr,145,58.0,velocity,center_ux,0.9326416850090027 +karman_re100,sr,145,58.0,velocity,center_uy,0.5490081310272217 +karman_re100,sr,145,58.0,velocity,lower_ux,0.9798780679702759 +karman_re100,sr,145,58.0,velocity,lower_uy,0.3531057834625244 +karman_re100,sr,146,58.4,velocity,upper_ux,0.9707579016685486 +karman_re100,sr,146,58.4,velocity,upper_uy,0.3924212157726288 +karman_re100,sr,146,58.4,velocity,center_ux,0.9541028738021851 +karman_re100,sr,146,58.4,velocity,center_uy,0.5600849986076355 +karman_re100,sr,146,58.4,velocity,lower_ux,1.0463838577270508 +karman_re100,sr,146,58.4,velocity,lower_uy,0.3812634348869324 +karman_re100,sr,147,58.8,velocity,upper_ux,0.9036527872085571 +karman_re100,sr,147,58.8,velocity,upper_uy,0.3745719790458679 +karman_re100,sr,147,58.8,velocity,center_ux,0.9704306721687317 +karman_re100,sr,147,58.8,velocity,center_uy,0.5407658219337463 +karman_re100,sr,147,58.8,velocity,lower_ux,1.1120085716247559 +karman_re100,sr,147,58.8,velocity,lower_uy,0.3735501170158386 +karman_re100,sr,148,59.2,velocity,upper_ux,0.8482308983802795 +karman_re100,sr,148,59.2,velocity,upper_uy,0.31008851528167725 +karman_re100,sr,148,59.2,velocity,center_ux,0.9743291735649109 +karman_re100,sr,148,59.2,velocity,center_uy,0.4888593256473541 +karman_re100,sr,148,59.2,velocity,lower_ux,1.176590085029602 +karman_re100,sr,148,59.2,velocity,lower_uy,0.34216880798339844 +karman_re100,sr,149,59.6,velocity,upper_ux,0.8062533736228943 +karman_re100,sr,149,59.6,velocity,upper_uy,0.2011394500732422 +karman_re100,sr,149,59.6,velocity,center_ux,0.9579634070396423 +karman_re100,sr,149,59.6,velocity,center_uy,0.3839172422885895 +karman_re100,sr,149,59.6,velocity,lower_ux,1.237266182899475 +karman_re100,sr,149,59.6,velocity,lower_uy,0.2871217429637909 +karman_re100,sr,150,60.0,velocity,upper_ux,0.7884842753410339 +karman_re100,sr,150,60.0,velocity,upper_uy,0.06125253811478615 +karman_re100,sr,150,60.0,velocity,center_ux,0.9184607863426208 +karman_re100,sr,150,60.0,velocity,center_uy,0.20514912903308868 +karman_re100,sr,150,60.0,velocity,lower_ux,1.2869027853012085 +karman_re100,sr,150,60.0,velocity,lower_uy,0.19496189057826996 +karman_re100,sr,151,60.4,velocity,upper_ux,0.8057259321212769 +karman_re100,sr,151,60.4,velocity,upper_uy,-0.0819079801440239 +karman_re100,sr,151,60.4,velocity,center_ux,0.8802980184555054 +karman_re100,sr,151,60.4,velocity,center_uy,-0.0761965811252594 +karman_re100,sr,151,60.4,velocity,lower_ux,1.2983566522598267 +karman_re100,sr,151,60.4,velocity,lower_uy,0.04380588233470917 +karman_re100,sr,152,60.8,velocity,upper_ux,0.8509200811386108 +karman_re100,sr,152,60.8,velocity,upper_uy,-0.2060706913471222 +karman_re100,sr,152,60.8,velocity,center_ux,0.878581166267395 +karman_re100,sr,152,60.8,velocity,center_uy,-0.35267287492752075 +karman_re100,sr,152,60.8,velocity,lower_ux,1.2423213720321655 +karman_re100,sr,152,60.8,velocity,lower_uy,-0.14392565190792084 +karman_re100,sr,153,61.2,velocity,upper_ux,0.9115047454833984 +karman_re100,sr,153,61.2,velocity,upper_uy,-0.29542261362075806 +karman_re100,sr,153,61.2,velocity,center_ux,0.9041596055030823 +karman_re100,sr,153,61.2,velocity,center_uy,-0.49876338243484497 +karman_re100,sr,153,61.2,velocity,lower_ux,1.1493463516235352 +karman_re100,sr,153,61.2,velocity,lower_uy,-0.28764134645462036 +karman_re100,sr,154,61.6,velocity,upper_ux,0.978773295879364 +karman_re100,sr,154,61.6,velocity,upper_uy,-0.3518761098384857 +karman_re100,sr,154,61.6,velocity,center_ux,0.9326418042182922 +karman_re100,sr,154,61.6,velocity,center_uy,-0.5481359362602234 +karman_re100,sr,154,61.6,velocity,lower_ux,1.0552524328231812 +karman_re100,sr,154,61.6,velocity,lower_uy,-0.36534786224365234 +karman_re100,sr,155,62.0,velocity,upper_ux,1.0449433326721191 +karman_re100,sr,155,62.0,velocity,upper_uy,-0.38107091188430786 +karman_re100,sr,155,62.0,velocity,center_ux,0.95379239320755 +karman_re100,sr,155,62.0,velocity,center_uy,-0.5602915287017822 +karman_re100,sr,155,62.0,velocity,lower_ux,0.9730134010314941 +karman_re100,sr,155,62.0,velocity,lower_uy,-0.39207446575164795 +karman_re100,sr,156,62.4,velocity,upper_ux,1.1085695028305054 +karman_re100,sr,156,62.4,velocity,upper_uy,-0.37381961941719055 +karman_re100,sr,156,62.4,velocity,center_ux,0.9683908224105835 +karman_re100,sr,156,62.4,velocity,center_uy,-0.5413461923599243 +karman_re100,sr,156,62.4,velocity,lower_ux,0.903547465801239 +karman_re100,sr,156,62.4,velocity,lower_uy,-0.37524428963661194 +karman_re100,sr,157,62.8,velocity,upper_ux,1.1725064516067505 +karman_re100,sr,157,62.8,velocity,upper_uy,-0.342993825674057 +karman_re100,sr,157,62.8,velocity,center_ux,0.9722553491592407 +karman_re100,sr,157,62.8,velocity,center_uy,-0.49090394377708435 +karman_re100,sr,157,62.8,velocity,lower_ux,0.8472673296928406 +karman_re100,sr,157,62.8,velocity,lower_uy,-0.3125055730342865 +karman_re100,sr,158,63.2,velocity,upper_ux,1.2354615926742554 +karman_re100,sr,158,63.2,velocity,upper_uy,-0.28913286328315735 +karman_re100,sr,158,63.2,velocity,center_ux,0.958549439907074 +karman_re100,sr,158,63.2,velocity,center_uy,-0.3886718451976776 +karman_re100,sr,158,63.2,velocity,lower_ux,0.8064022660255432 +karman_re100,sr,158,63.2,velocity,lower_uy,-0.2054271101951599 +karman_re100,sr,159,63.6,velocity,upper_ux,1.2882128953933716 +karman_re100,sr,159,63.6,velocity,upper_uy,-0.19847482442855835 +karman_re100,sr,159,63.6,velocity,center_ux,0.9218384623527527 +karman_re100,sr,159,63.6,velocity,center_uy,-0.2134222537279129 +karman_re100,sr,159,63.6,velocity,lower_ux,0.7895876169204712 +karman_re100,sr,159,63.6,velocity,lower_uy,-0.06640893220901489 +karman_re100,sr,160,64.0,velocity,upper_ux,1.3015358448028564 +karman_re100,sr,160,64.0,velocity,upper_uy,-0.04917658865451813 +karman_re100,sr,160,64.0,velocity,center_ux,0.8828061819076538 +karman_re100,sr,160,64.0,velocity,center_uy,0.06671148538589478 +karman_re100,sr,160,64.0,velocity,lower_ux,0.8057034015655518 +karman_re100,sr,160,64.0,velocity,lower_uy,0.07744910567998886 +karman_re100,sr,161,64.4,velocity,upper_ux,1.24517023563385 +karman_re100,sr,161,64.4,velocity,upper_uy,0.1382649540901184 +karman_re100,sr,161,64.4,velocity,center_ux,0.8783158659934998 +karman_re100,sr,161,64.4,velocity,center_uy,0.3461204767227173 +karman_re100,sr,161,64.4,velocity,lower_ux,0.8487102389335632 +karman_re100,sr,161,64.4,velocity,lower_uy,0.2023039311170578 +karman_re100,sr,162,64.8,velocity,upper_ux,1.1520564556121826 +karman_re100,sr,162,64.8,velocity,upper_uy,0.28374138474464417 +karman_re100,sr,162,64.8,velocity,center_ux,0.9027706384658813 +karman_re100,sr,162,64.8,velocity,center_uy,0.49631503224372864 +karman_re100,sr,162,64.8,velocity,lower_ux,0.908254861831665 +karman_re100,sr,162,64.8,velocity,lower_uy,0.2930132746696472 +karman_re100,sr,163,65.2,velocity,upper_ux,1.0577446222305298 +karman_re100,sr,163,65.2,velocity,upper_uy,0.36333900690078735 +karman_re100,sr,163,65.2,velocity,center_ux,0.9313662052154541 +karman_re100,sr,163,65.2,velocity,center_uy,0.5472948551177979 +karman_re100,sr,163,65.2,velocity,lower_ux,0.9754973649978638 +karman_re100,sr,163,65.2,velocity,lower_uy,0.3503069281578064 +karman_re100,sr,164,65.6,velocity,upper_ux,0.976132333278656 +karman_re100,sr,164,65.6,velocity,upper_uy,0.39164260029792786 +karman_re100,sr,164,65.6,velocity,center_ux,0.9536191821098328 +karman_re100,sr,164,65.6,velocity,center_uy,0.5603800415992737 +karman_re100,sr,164,65.6,velocity,lower_ux,1.0426907539367676 +karman_re100,sr,164,65.6,velocity,lower_uy,0.38073933124542236 +karman_re100,sr,165,66.0,velocity,upper_ux,0.906775951385498 +karman_re100,sr,165,66.0,velocity,upper_uy,0.37643688917160034 +karman_re100,sr,165,66.0,velocity,center_ux,0.9689105153083801 +karman_re100,sr,165,66.0,velocity,center_uy,0.5424547791481018 +karman_re100,sr,165,66.0,velocity,lower_ux,1.1069430112838745 +karman_re100,sr,165,66.0,velocity,lower_uy,0.37474414706230164 +karman_re100,sr,166,66.4,velocity,upper_ux,0.8496373891830444 +karman_re100,sr,166,66.4,velocity,upper_uy,0.31531429290771484 +karman_re100,sr,166,66.4,velocity,center_ux,0.9727945923805237 +karman_re100,sr,166,66.4,velocity,center_uy,0.4933742582798004 +karman_re100,sr,166,66.4,velocity,lower_ux,1.1705679893493652 +karman_re100,sr,166,66.4,velocity,lower_uy,0.34464699029922485 +karman_re100,sr,167,66.8,velocity,upper_ux,0.8075056672096252 +karman_re100,sr,167,66.8,velocity,upper_uy,0.20968811213970184 +karman_re100,sr,167,66.8,velocity,center_ux,0.9589589834213257 +karman_re100,sr,167,66.8,velocity,center_uy,0.39327290654182434 +karman_re100,sr,167,66.8,velocity,lower_ux,1.2331397533416748 +karman_re100,sr,167,66.8,velocity,lower_uy,0.2919991612434387 +karman_re100,sr,168,67.2,velocity,upper_ux,0.7881357073783875 +karman_re100,sr,168,67.2,velocity,upper_uy,0.07136892527341843 +karman_re100,sr,168,67.2,velocity,center_ux,0.9211354851722717 +karman_re100,sr,168,67.2,velocity,center_uy,0.220906600356102 +karman_re100,sr,168,67.2,velocity,lower_ux,1.2846407890319824 +karman_re100,sr,168,67.2,velocity,lower_uy,0.20277900993824005 +karman_re100,sr,169,67.6,velocity,upper_ux,0.8034278750419617 +karman_re100,sr,169,67.6,velocity,upper_uy,-0.07236318290233612 +karman_re100,sr,169,67.6,velocity,center_ux,0.8818711042404175 +karman_re100,sr,169,67.6,velocity,center_uy,-0.055069632828235626 +karman_re100,sr,169,67.6,velocity,lower_ux,1.3007007837295532 +karman_re100,sr,169,67.6,velocity,lower_uy,0.055873509496450424 +karman_re100,sr,170,68.0,velocity,upper_ux,0.8476752638816833 +karman_re100,sr,170,68.0,velocity,upper_uy,-0.19827325642108917 +karman_re100,sr,170,68.0,velocity,center_ux,0.8780550956726074 +karman_re100,sr,170,68.0,velocity,center_uy,-0.33756187558174133 +karman_re100,sr,170,68.0,velocity,lower_ux,1.2491421699523926 +karman_re100,sr,170,68.0,velocity,lower_uy,-0.13229183852672577 +karman_re100,sr,171,68.4,velocity,upper_ux,0.9068112969398499 +karman_re100,sr,171,68.4,velocity,upper_uy,-0.29042619466781616 +karman_re100,sr,171,68.4,velocity,center_ux,0.9021084308624268 +karman_re100,sr,171,68.4,velocity,center_uy,-0.4930369555950165 +karman_re100,sr,171,68.4,velocity,lower_ux,1.1566075086593628 +karman_re100,sr,171,68.4,velocity,lower_uy,-0.2803190052509308 +karman_re100,sr,172,68.8,velocity,upper_ux,0.9733304381370544 +karman_re100,sr,172,68.8,velocity,upper_uy,-0.3486511707305908 +karman_re100,sr,172,68.8,velocity,center_ux,0.9304006695747375 +karman_re100,sr,172,68.8,velocity,center_uy,-0.5462883114814758 +karman_re100,sr,172,68.8,velocity,lower_ux,1.061312198638916 +karman_re100,sr,172,68.8,velocity,lower_uy,-0.3619542717933655 +karman_re100,sr,173,69.2,velocity,upper_ux,1.0398887395858765 +karman_re100,sr,173,69.2,velocity,upper_uy,-0.3801921606063843 +karman_re100,sr,173,69.2,velocity,center_ux,0.952318549156189 +karman_re100,sr,173,69.2,velocity,center_uy,-0.5603960156440735 +karman_re100,sr,173,69.2,velocity,lower_ux,0.9784551858901978 +karman_re100,sr,173,69.2,velocity,lower_uy,-0.3916202187538147 +karman_re100,sr,174,69.6,velocity,upper_ux,1.1039754152297974 +karman_re100,sr,174,69.6,velocity,upper_uy,-0.37528789043426514 +karman_re100,sr,174,69.6,velocity,center_ux,0.9678213596343994 +karman_re100,sr,174,69.6,velocity,center_uy,-0.5434466600418091 +karman_re100,sr,174,69.6,velocity,lower_ux,0.9085568189620972 +karman_re100,sr,174,69.6,velocity,lower_uy,-0.37779632210731506 +karman_re100,sr,175,70.0,velocity,upper_ux,1.1683188676834106 +karman_re100,sr,175,70.0,velocity,upper_uy,-0.3457486033439636 +karman_re100,sr,175,70.0,velocity,center_ux,0.9731624722480774 +karman_re100,sr,175,70.0,velocity,center_uy,-0.49548912048339844 +karman_re100,sr,175,70.0,velocity,lower_ux,0.8517695665359497 +karman_re100,sr,175,70.0,velocity,lower_uy,-0.3181355595588684 +karman_re100,sr,176,70.4,velocity,upper_ux,1.2315462827682495 +karman_re100,sr,176,70.4,velocity,upper_uy,-0.29401201009750366 +karman_re100,sr,176,70.4,velocity,center_ux,0.9608369469642639 +karman_re100,sr,176,70.4,velocity,center_uy,-0.3972320556640625 +karman_re100,sr,176,70.4,velocity,lower_ux,0.8096109628677368 +karman_re100,sr,176,70.4,velocity,lower_uy,-0.21375048160552979 +karman_re100,sr,177,70.8,velocity,upper_ux,1.2831611633300781 +karman_re100,sr,177,70.8,velocity,upper_uy,-0.20627082884311676 +karman_re100,sr,177,70.8,velocity,center_ux,0.9236384630203247 +karman_re100,sr,177,70.8,velocity,center_uy,-0.22796502709388733 +karman_re100,sr,177,70.8,velocity,lower_ux,0.7890151739120483 +karman_re100,sr,177,70.8,velocity,lower_uy,-0.0759875550866127 +karman_re100,sr,178,71.2,velocity,upper_ux,1.3002451658248901 +karman_re100,sr,178,71.2,velocity,upper_uy,-0.06198880076408386 +karman_re100,sr,178,71.2,velocity,center_ux,0.8829749822616577 +karman_re100,sr,178,71.2,velocity,center_uy,0.04504162445664406 +karman_re100,sr,178,71.2,velocity,lower_ux,0.8024697303771973 +karman_re100,sr,178,71.2,velocity,lower_uy,0.06805428862571716 +karman_re100,sr,179,71.6,velocity,upper_ux,1.2502105236053467 +karman_re100,sr,179,71.6,velocity,upper_uy,0.12574553489685059 +karman_re100,sr,179,71.6,velocity,center_ux,0.8770898580551147 +karman_re100,sr,179,71.6,velocity,center_uy,0.3299154043197632 +karman_re100,sr,179,71.6,velocity,lower_ux,0.8453758358955383 +karman_re100,sr,179,71.6,velocity,lower_uy,0.19471032917499542 +karman_re100,sr,180,72.0,velocity,upper_ux,1.1586942672729492 +karman_re100,sr,180,72.0,velocity,upper_uy,0.2760191559791565 +karman_re100,sr,180,72.0,velocity,center_ux,0.900791347026825 +karman_re100,sr,180,72.0,velocity,center_uy,0.48984473943710327 +karman_re100,sr,180,72.0,velocity,lower_ux,0.9044281244277954 +karman_re100,sr,180,72.0,velocity,lower_uy,0.288080096244812 +karman_re100,sr,181,72.4,velocity,upper_ux,1.064130187034607 +karman_re100,sr,181,72.4,velocity,upper_uy,0.35989826917648315 +karman_re100,sr,181,72.4,velocity,center_ux,0.9300458431243896 +karman_re100,sr,181,72.4,velocity,center_uy,0.5451562404632568 +karman_re100,sr,181,72.4,velocity,lower_ux,0.9717720746994019 +karman_re100,sr,181,72.4,velocity,lower_uy,0.3470674157142639 +karman_re100,sr,182,72.8,velocity,upper_ux,0.9809878468513489 +karman_re100,sr,182,72.8,velocity,upper_uy,0.39131590723991394 +karman_re100,sr,182,72.8,velocity,center_ux,0.9523361325263977 +karman_re100,sr,182,72.8,velocity,center_uy,0.5604022741317749 +karman_re100,sr,182,72.8,velocity,lower_ux,1.0386302471160889 +karman_re100,sr,182,72.8,velocity,lower_uy,0.3797176778316498 +karman_re100,sr,183,73.2,velocity,upper_ux,0.9102020263671875 +karman_re100,sr,183,73.2,velocity,upper_uy,0.37912091612815857 +karman_re100,sr,183,73.2,velocity,center_ux,0.9675590991973877 +karman_re100,sr,183,73.2,velocity,center_uy,0.5446292161941528 +karman_re100,sr,183,73.2,velocity,lower_ux,1.1023305654525757 +karman_re100,sr,183,73.2,velocity,lower_uy,0.375936895608902 +karman_re100,sr,184,73.6,velocity,upper_ux,0.8523475527763367 +karman_re100,sr,184,73.6,velocity,upper_uy,0.32117393612861633 +karman_re100,sr,184,73.6,velocity,center_ux,0.9726876020431519 +karman_re100,sr,184,73.6,velocity,center_uy,0.4981515109539032 +karman_re100,sr,184,73.6,velocity,lower_ux,1.1660280227661133 +karman_re100,sr,184,73.6,velocity,lower_uy,0.34702736139297485 +karman_re100,sr,185,74.0,velocity,upper_ux,0.8104400038719177 +karman_re100,sr,185,74.0,velocity,upper_uy,0.21870005130767822 +karman_re100,sr,185,74.0,velocity,center_ux,0.9620007276535034 +karman_re100,sr,185,74.0,velocity,center_uy,0.4027937352657318 +karman_re100,sr,185,74.0,velocity,lower_ux,1.230751633644104 +karman_re100,sr,185,74.0,velocity,lower_uy,0.2966421842575073 +karman_re100,sr,186,74.4,velocity,upper_ux,0.7885469198226929 +karman_re100,sr,186,74.4,velocity,upper_uy,0.08148708939552307 +karman_re100,sr,186,74.4,velocity,center_ux,0.9250037670135498 +karman_re100,sr,186,74.4,velocity,center_uy,0.2361394315958023 +karman_re100,sr,186,74.4,velocity,lower_ux,1.2823350429534912 +karman_re100,sr,186,74.4,velocity,lower_uy,0.20989200472831726 +karman_re100,sr,187,74.8,velocity,upper_ux,0.8014114499092102 +karman_re100,sr,187,74.8,velocity,upper_uy,-0.06300034373998642 +karman_re100,sr,187,74.8,velocity,center_ux,0.8844383358955383 +karman_re100,sr,187,74.8,velocity,center_uy,-0.03443199768662453 +karman_re100,sr,187,74.8,velocity,lower_ux,1.3020923137664795 +karman_re100,sr,187,74.8,velocity,lower_uy,0.06759058684110641 +karman_re100,sr,188,75.2,velocity,upper_ux,0.8435689806938171 +karman_re100,sr,188,75.2,velocity,upper_uy,-0.1906702220439911 +karman_re100,sr,188,75.2,velocity,center_ux,0.8773382306098938 +karman_re100,sr,188,75.2,velocity,center_uy,-0.322235107421875 +karman_re100,sr,188,75.2,velocity,lower_ux,1.254079818725586 +karman_re100,sr,188,75.2,velocity,lower_uy,-0.11995062232017517 +karman_re100,sr,189,75.6,velocity,upper_ux,0.9016810655593872 +karman_re100,sr,189,75.6,velocity,upper_uy,-0.28559380769729614 +karman_re100,sr,189,75.6,velocity,center_ux,0.8999510407447815 +karman_re100,sr,189,75.6,velocity,center_uy,-0.48700907826423645 +karman_re100,sr,189,75.6,velocity,lower_ux,1.1626375913619995 +karman_re100,sr,189,75.6,velocity,lower_uy,-0.27203449606895447 +karman_re100,sr,190,76.0,velocity,upper_ux,0.970754861831665 +karman_re100,sr,190,76.0,velocity,upper_uy,-0.34642982482910156 +karman_re100,sr,190,76.0,velocity,center_ux,0.9309855699539185 +karman_re100,sr,190,76.0,velocity,center_uy,-0.5457130074501038 +karman_re100,sr,190,76.0,velocity,lower_ux,1.0698977708816528 +karman_re100,sr,190,76.0,velocity,lower_uy,-0.3586740791797638 +karman_re100,sr,191,76.4,velocity,upper_ux,1.035456895828247 +karman_re100,sr,191,76.4,velocity,upper_uy,-0.37935423851013184 +karman_re100,sr,191,76.4,velocity,center_ux,0.9513185620307922 +karman_re100,sr,191,76.4,velocity,center_uy,-0.5604344606399536 +karman_re100,sr,191,76.4,velocity,lower_ux,0.9838892221450806 +karman_re100,sr,191,76.4,velocity,lower_uy,-0.39062267541885376 +karman_re100,sr,192,76.8,velocity,upper_ux,1.1001596450805664 +karman_re100,sr,192,76.8,velocity,upper_uy,-0.376871258020401 +karman_re100,sr,192,76.8,velocity,center_ux,0.9675747156143188 +karman_re100,sr,192,76.8,velocity,center_uy,-0.5455987453460693 +karman_re100,sr,192,76.8,velocity,lower_ux,0.9135192632675171 +karman_re100,sr,192,76.8,velocity,lower_uy,-0.3799137473106384 +karman_re100,sr,193,77.2,velocity,upper_ux,1.1640690565109253 +karman_re100,sr,193,77.2,velocity,upper_uy,-0.34867390990257263 +karman_re100,sr,193,77.2,velocity,center_ux,0.9733201861381531 +karman_re100,sr,193,77.2,velocity,center_uy,-0.5002210140228271 +karman_re100,sr,193,77.2,velocity,lower_ux,0.8554245233535767 +karman_re100,sr,193,77.2,velocity,lower_uy,-0.3235398530960083 +karman_re100,sr,194,77.6,velocity,upper_ux,1.2270820140838623 +karman_re100,sr,194,77.6,velocity,upper_uy,-0.29895448684692383 +karman_re100,sr,194,77.6,velocity,center_ux,0.9615915417671204 +karman_re100,sr,194,77.6,velocity,center_uy,-0.4060746729373932 +karman_re100,sr,194,77.6,velocity,lower_ux,0.8114462494850159 +karman_re100,sr,194,77.6,velocity,lower_uy,-0.22209884226322174 +karman_re100,sr,195,78.0,velocity,upper_ux,1.280157446861267 +karman_re100,sr,195,78.0,velocity,upper_uy,-0.21428605914115906 +karman_re100,sr,195,78.0,velocity,center_ux,0.9259645938873291 +karman_re100,sr,195,78.0,velocity,center_uy,-0.24300432205200195 +karman_re100,sr,195,78.0,velocity,lower_ux,0.7890362739562988 +karman_re100,sr,195,78.0,velocity,lower_uy,-0.08619551360607147 +karman_re100,sr,196,78.4,velocity,upper_ux,1.3015018701553345 +karman_re100,sr,196,78.4,velocity,upper_uy,-0.07288794964551926 +karman_re100,sr,196,78.4,velocity,center_ux,0.8839729428291321 +karman_re100,sr,196,78.4,velocity,center_uy,0.026137324050068855 +karman_re100,sr,196,78.4,velocity,lower_ux,0.8005424737930298 +karman_re100,sr,196,78.4,velocity,lower_uy,0.05951029434800148 +karman_re100,sr,197,78.8,velocity,upper_ux,1.2565661668777466 +karman_re100,sr,197,78.8,velocity,upper_uy,0.11344180256128311 +karman_re100,sr,197,78.8,velocity,center_ux,0.8761621713638306 +karman_re100,sr,197,78.8,velocity,center_uy,0.3129923939704895 +karman_re100,sr,197,78.8,velocity,lower_ux,0.8421666026115417 +karman_re100,sr,197,78.8,velocity,lower_uy,0.1865837126970291 +karman_re100,sr,198,79.2,velocity,upper_ux,1.166500449180603 +karman_re100,sr,198,79.2,velocity,upper_uy,0.2683446705341339 +karman_re100,sr,198,79.2,velocity,center_ux,0.8988792300224304 +karman_re100,sr,198,79.2,velocity,center_uy,0.4830555021762848 +karman_re100,sr,198,79.2,velocity,lower_ux,0.9004372358322144 +karman_re100,sr,198,79.2,velocity,lower_uy,0.28276166319847107 +karman_re100,sr,199,79.6,velocity,upper_ux,1.0705935955047607 +karman_re100,sr,199,79.6,velocity,upper_uy,0.35649165511131287 +karman_re100,sr,199,79.6,velocity,center_ux,0.9278521537780762 +karman_re100,sr,199,79.6,velocity,center_uy,0.5430580377578735 +karman_re100,sr,199,79.6,velocity,lower_ux,0.9668564796447754 +karman_re100,sr,199,79.6,velocity,lower_uy,0.34363627433776855 +karman_re100,sr,0,0.0,force,front_fx,-0.00021766476857010275 +karman_re100,sr,0,0.0,force,front_fy,0.004785771481692791 +karman_re100,sr,0,0.0,force,upper_fx,-0.004755847621709108 +karman_re100,sr,0,0.0,force,upper_fy,0.002707300242036581 +karman_re100,sr,0,0.0,force,lower_fx,0.0039196982979774475 +karman_re100,sr,0,0.0,force,lower_fy,-0.004147517494857311 +karman_re100,sr,1,0.4,force,front_fx,0.001182967214845121 +karman_re100,sr,1,0.4,force,front_fy,0.004420048091560602 +karman_re100,sr,1,0.4,force,upper_fx,-0.006104665342718363 +karman_re100,sr,1,0.4,force,upper_fy,0.001949600176885724 +karman_re100,sr,1,0.4,force,lower_fx,0.004534864332526922 +karman_re100,sr,1,0.4,force,lower_fy,-0.004403235390782356 +karman_re100,sr,2,0.8,force,front_fx,0.0033913084771484137 +karman_re100,sr,2,0.8,force,front_fy,0.004041346721351147 +karman_re100,sr,2,0.8,force,upper_fx,-0.008138316683471203 +karman_re100,sr,2,0.8,force,upper_fy,0.0007623916026204824 +karman_re100,sr,2,0.8,force,lower_fx,0.004638554062694311 +karman_re100,sr,2,0.8,force,lower_fy,-0.004541249480098486 +karman_re100,sr,3,1.2,force,front_fx,0.005002328660339117 +karman_re100,sr,3,1.2,force,front_fy,0.0029543815180659294 +karman_re100,sr,3,1.2,force,upper_fx,-0.010226522572338581 +karman_re100,sr,3,1.2,force,upper_fy,0.0006583164795301855 +karman_re100,sr,3,1.2,force,lower_fx,0.003903907723724842 +karman_re100,sr,3,1.2,force,lower_fy,-0.004149898421019316 +karman_re100,sr,4,1.6,force,front_fx,0.005424212664365768 +karman_re100,sr,4,1.6,force,front_fy,0.0013268479378893971 +karman_re100,sr,4,1.6,force,upper_fx,-0.010555536486208439 +karman_re100,sr,4,1.6,force,upper_fy,0.0025683874264359474 +karman_re100,sr,4,1.6,force,lower_fx,0.002705019898712635 +karman_re100,sr,4,1.6,force,lower_fy,-0.0037309438921511173 +karman_re100,sr,5,2.0,force,front_fx,0.004525789991021156 +karman_re100,sr,5,2.0,force,front_fy,-9.321111429017037e-05 +karman_re100,sr,5,2.0,force,upper_fx,-0.007756952196359634 +karman_re100,sr,5,2.0,force,upper_fy,0.00459672138094902 +karman_re100,sr,5,2.0,force,lower_fx,0.0019957786425948143 +karman_re100,sr,5,2.0,force,lower_fy,-0.0036045906599611044 +karman_re100,sr,6,2.4,force,front_fx,0.002648918889462948 +karman_re100,sr,6,2.4,force,front_fy,-0.0011285010259598494 +karman_re100,sr,6,2.4,force,upper_fx,-0.004050768446177244 +karman_re100,sr,6,2.4,force,upper_fy,0.004530958365648985 +karman_re100,sr,6,2.4,force,lower_fx,0.001425417372956872 +karman_re100,sr,6,2.4,force,lower_fy,-0.003907898440957069 +karman_re100,sr,7,2.8,force,front_fx,0.0004278732812963426 +karman_re100,sr,7,2.8,force,front_fy,-0.0020887136925011873 +karman_re100,sr,7,2.8,force,upper_fx,-0.0014474287163466215 +karman_re100,sr,7,2.8,force,upper_fy,0.004119493532925844 +karman_re100,sr,7,2.8,force,lower_fx,0.0006553788552992046 +karman_re100,sr,7,2.8,force,lower_fy,-0.004430894739925861 +karman_re100,sr,8,3.2,force,front_fx,-0.0009404827142134309 +karman_re100,sr,8,3.2,force,front_fy,-0.002880303654819727 +karman_re100,sr,8,3.2,force,upper_fx,0.0003986329829785973 +karman_re100,sr,8,3.2,force,upper_fy,0.004827579017728567 +karman_re100,sr,8,3.2,force,lower_fx,-0.00044250223436392844 +karman_re100,sr,8,3.2,force,lower_fy,-0.004370120353996754 +karman_re100,sr,9,3.6,force,front_fx,-0.001079218927770853 +karman_re100,sr,9,3.6,force,front_fy,-0.003438311628997326 +karman_re100,sr,9,3.6,force,upper_fx,0.002386919455602765 +karman_re100,sr,9,3.6,force,upper_fy,0.005977455992251635 +karman_re100,sr,9,3.6,force,lower_fx,-0.0019552588928490877 +karman_re100,sr,9,3.6,force,lower_fy,-0.00358651508577168 +karman_re100,sr,10,4.0,force,front_fx,-0.00022722162248101085 +karman_re100,sr,10,4.0,force,front_fy,-0.003486206755042076 +karman_re100,sr,10,4.0,force,upper_fx,0.004068595357239246 +karman_re100,sr,10,4.0,force,upper_fy,0.0062318588607013226 +karman_re100,sr,10,4.0,force,lower_fx,-0.0037634752225130796 +karman_re100,sr,10,4.0,force,lower_fy,-0.0025864506606012583 +karman_re100,sr,11,4.4,force,front_fx,0.0014357778709381819 +karman_re100,sr,11,4.4,force,front_fy,-0.002989836735650897 +karman_re100,sr,11,4.4,force,upper_fx,0.004440390970557928 +karman_re100,sr,11,4.4,force,upper_fy,0.005753229837864637 +karman_re100,sr,11,4.4,force,lower_fx,-0.005764731205999851 +karman_re100,sr,11,4.4,force,lower_fy,-0.0019169463776051998 +karman_re100,sr,12,4.8,force,front_fx,0.003371965605765581 +karman_re100,sr,12,4.8,force,front_fy,-0.002026990056037903 +karman_re100,sr,12,4.8,force,upper_fx,0.0037065453361719847 +karman_re100,sr,12,4.8,force,upper_fy,0.005174695048481226 +karman_re100,sr,12,4.8,force,lower_fx,-0.007331243250519037 +karman_re100,sr,12,4.8,force,lower_fy,-0.002071816474199295 +karman_re100,sr,13,5.2,force,front_fx,0.004011107143014669 +karman_re100,sr,13,5.2,force,front_fy,-0.0009066071943379939 +karman_re100,sr,13,5.2,force,upper_fx,0.002886261558160186 +karman_re100,sr,13,5.2,force,upper_fy,0.004609730560332537 +karman_re100,sr,13,5.2,force,lower_fx,-0.007215344812721014 +karman_re100,sr,13,5.2,force,lower_fy,-0.0032675499096512794 +karman_re100,sr,14,5.6,force,front_fx,0.0031688630115240812 +karman_re100,sr,14,5.6,force,front_fy,0.00043778427061624825 +karman_re100,sr,14,5.6,force,upper_fx,0.0021039769053459167 +karman_re100,sr,14,5.6,force,upper_fy,0.0044846367090940475 +karman_re100,sr,14,5.6,force,lower_fx,-0.00484855193644762 +karman_re100,sr,14,5.6,force,lower_fy,-0.004419832956045866 +karman_re100,sr,15,6.0,force,front_fx,0.0015784796560183167 +karman_re100,sr,15,6.0,force,front_fy,0.001627272111363709 +karman_re100,sr,15,6.0,force,upper_fx,0.0011603280436247587 +karman_re100,sr,15,6.0,force,upper_fy,0.004749261308461428 +karman_re100,sr,15,6.0,force,lower_fx,-0.0020479257218539715 +karman_re100,sr,15,6.0,force,lower_fy,-0.004537125118076801 +karman_re100,sr,16,6.4,force,front_fx,-7.715291576460004e-05 +karman_re100,sr,16,6.4,force,front_fy,0.002589578740298748 +karman_re100,sr,16,6.4,force,upper_fx,3.5482033126754686e-05 +karman_re100,sr,16,6.4,force,upper_fy,0.004955627955496311 +karman_re100,sr,16,6.4,force,lower_fx,0.00014622107846662402 +karman_re100,sr,16,6.4,force,lower_fy,-0.004738920833915472 +karman_re100,sr,17,6.8,force,front_fx,-0.0008909062016755342 +karman_re100,sr,17,6.8,force,front_fy,0.003265267238020897 +karman_re100,sr,17,6.8,force,upper_fx,-0.0012936432613059878 +karman_re100,sr,17,6.8,force,upper_fy,0.004567819647490978 +karman_re100,sr,17,6.8,force,lower_fx,0.0021269996650516987 +karman_re100,sr,17,6.8,force,lower_fy,-0.005529763642698526 +karman_re100,sr,18,7.2,force,front_fx,-0.0006352764903567731 +karman_re100,sr,18,7.2,force,front_fy,0.0036653249990195036 +karman_re100,sr,18,7.2,force,upper_fx,-0.002947344211861491 +karman_re100,sr,18,7.2,force,upper_fy,0.003569908207282424 +karman_re100,sr,18,7.2,force,lower_fx,0.004115141462534666 +karman_re100,sr,18,7.2,force,lower_fy,-0.006235160864889622 +karman_re100,sr,19,7.6,force,front_fx,0.0005927280872128904 +karman_re100,sr,19,7.6,force,front_fy,0.0037062251940369606 +karman_re100,sr,19,7.6,force,upper_fx,-0.0050110165029764175 +karman_re100,sr,19,7.6,force,upper_fy,0.0023870724253356457 +karman_re100,sr,19,7.6,force,lower_fx,0.005388341378420591 +karman_re100,sr,19,7.6,force,lower_fy,-0.0062576886266469955 +karman_re100,sr,20,8.0,force,front_fx,0.0026498998049646616 +karman_re100,sr,20,8.0,force,front_fy,0.003210876602679491 +karman_re100,sr,20,8.0,force,upper_fx,-0.0073373508639633656 +karman_re100,sr,20,8.0,force,upper_fy,0.0015762138646095991 +karman_re100,sr,20,8.0,force,lower_fx,0.0052336533553898335 +karman_re100,sr,20,8.0,force,lower_fy,-0.005828559398651123 +karman_re100,sr,21,8.4,force,front_fx,0.0046653044410049915 +karman_re100,sr,21,8.4,force,front_fy,0.0022903147619217634 +karman_re100,sr,21,8.4,force,upper_fx,-0.009003118611872196 +karman_re100,sr,21,8.4,force,upper_fy,0.0018319669179618359 +karman_re100,sr,21,8.4,force,lower_fx,0.004162011202424765 +karman_re100,sr,21,8.4,force,lower_fy,-0.005047825165092945 +karman_re100,sr,22,8.8,force,front_fx,0.0050125522539019585 +karman_re100,sr,22,8.8,force,front_fy,0.001046126359142363 +karman_re100,sr,22,8.8,force,upper_fx,-0.008258822374045849 +karman_re100,sr,22,8.8,force,upper_fy,0.0032278418075293303 +karman_re100,sr,22,8.8,force,lower_fx,0.003239604877308011 +karman_re100,sr,22,8.8,force,lower_fy,-0.004351410083472729 +karman_re100,sr,23,9.2,force,front_fx,0.004009884782135487 +karman_re100,sr,23,9.2,force,front_fy,-0.0003093153063673526 +karman_re100,sr,23,9.2,force,upper_fx,-0.005298560485243797 +karman_re100,sr,23,9.2,force,upper_fy,0.0039022592827677727 +karman_re100,sr,23,9.2,force,lower_fx,0.0024617956951260567 +karman_re100,sr,23,9.2,force,lower_fy,-0.004274615086615086 +karman_re100,sr,24,9.6,force,front_fx,0.002092086710035801 +karman_re100,sr,24,9.6,force,front_fy,-0.0015143757918849587 +karman_re100,sr,24,9.6,force,upper_fx,-0.0024457918480038643 +karman_re100,sr,24,9.6,force,upper_fy,0.0036085129249840975 +karman_re100,sr,24,9.6,force,lower_fx,0.001573052373714745 +karman_re100,sr,24,9.6,force,lower_fy,-0.004705353174358606 +karman_re100,sr,25,10.0,force,front_fx,7.46639707358554e-05 +karman_re100,sr,25,10.0,force,front_fy,-0.002602165564894676 +karman_re100,sr,25,10.0,force,upper_fx,-0.00033008825266733766 +karman_re100,sr,25,10.0,force,upper_fy,0.004069609567523003 +karman_re100,sr,25,10.0,force,lower_fx,0.0004241064889356494 +karman_re100,sr,25,10.0,force,lower_fy,-0.005051364190876484 +karman_re100,sr,26,10.4,force,front_fx,-0.0009629062842577696 +karman_re100,sr,26,10.4,force,front_fy,-0.003360923146829009 +karman_re100,sr,26,10.4,force,upper_fx,0.0017706992803141475 +karman_re100,sr,26,10.4,force,upper_fy,0.00543607072904706 +karman_re100,sr,26,10.4,force,lower_fx,-0.0009383505675941706 +karman_re100,sr,26,10.4,force,lower_fy,-0.00471976213157177 +karman_re100,sr,27,10.8,force,front_fx,-0.000909463269636035 +karman_re100,sr,27,10.8,force,front_fy,-0.003688303753733635 +karman_re100,sr,27,10.8,force,upper_fx,0.004109302069991827 +karman_re100,sr,27,10.8,force,upper_fy,0.006423818878829479 +karman_re100,sr,27,10.8,force,lower_fx,-0.0025733669754117727 +karman_re100,sr,27,10.8,force,lower_fy,-0.003750832984223962 +karman_re100,sr,28,11.2,force,front_fx,0.00015109438390936702 +karman_re100,sr,28,11.2,force,front_fy,-0.0036195942666381598 +karman_re100,sr,28,11.2,force,upper_fx,0.00565753597766161 +karman_re100,sr,28,11.2,force,upper_fy,0.006376987788826227 +karman_re100,sr,28,11.2,force,lower_fx,-0.004634408745914698 +karman_re100,sr,28,11.2,force,lower_fy,-0.0025747197214514017 +karman_re100,sr,29,11.6,force,front_fx,0.002241720911115408 +karman_re100,sr,29,11.6,force,front_fy,-0.0031093189027160406 +karman_re100,sr,29,11.6,force,upper_fx,0.005641390569508076 +karman_re100,sr,29,11.6,force,upper_fy,0.0059502823278307915 +karman_re100,sr,29,11.6,force,lower_fx,-0.00702604278922081 +karman_re100,sr,29,11.6,force,lower_fy,-0.0016323707532137632 +karman_re100,sr,30,12.0,force,front_fx,0.004539597313851118 +karman_re100,sr,30,12.0,force,front_fy,-0.0022221545223146677 +karman_re100,sr,30,12.0,force,upper_fx,0.0045466297306120396 +karman_re100,sr,30,12.0,force,upper_fy,0.00526980496942997 +karman_re100,sr,30,12.0,force,lower_fx,-0.009023408405482769 +karman_re100,sr,30,12.0,force,lower_fy,-0.0016406504437327385 +karman_re100,sr,31,12.4,force,front_fx,0.0050875283777713776 +karman_re100,sr,31,12.4,force,front_fy,-0.0010070777498185635 +karman_re100,sr,31,12.4,force,upper_fx,0.0035190146882086992 +karman_re100,sr,31,12.4,force,upper_fy,0.004516160115599632 +karman_re100,sr,31,12.4,force,lower_fx,-0.008709879592061043 +karman_re100,sr,31,12.4,force,lower_fy,-0.0030696264002472162 +karman_re100,sr,32,12.8,force,front_fx,0.004194216802716255 +karman_re100,sr,32,12.8,force,front_fy,0.00038962066173553467 +karman_re100,sr,32,12.8,force,upper_fx,0.0026630631182342768 +karman_re100,sr,32,12.8,force,upper_fy,0.0043473937548696995 +karman_re100,sr,32,12.8,force,lower_fx,-0.005825120024383068 +karman_re100,sr,32,12.8,force,lower_fy,-0.004062000662088394 +karman_re100,sr,33,13.2,force,front_fx,0.002314043464139104 +karman_re100,sr,33,13.2,force,front_fy,0.0015276431804522872 +karman_re100,sr,33,13.2,force,upper_fx,0.001762649742886424 +karman_re100,sr,33,13.2,force,upper_fy,0.004737248178571463 +karman_re100,sr,33,13.2,force,lower_fx,-0.0027987053617835045 +karman_re100,sr,33,13.2,force,lower_fy,-0.0037130939308553934 +karman_re100,sr,34,13.6,force,front_fx,0.00021569564705714583 +karman_re100,sr,34,13.6,force,front_fy,0.002584129339084029 +karman_re100,sr,34,13.6,force,upper_fx,0.0006416907417587936 +karman_re100,sr,34,13.6,force,upper_fy,0.005146963056176901 +karman_re100,sr,34,13.6,force,lower_fx,-0.0005887190345674753 +karman_re100,sr,34,13.6,force,lower_fy,-0.0038946731947362423 +karman_re100,sr,35,14.0,force,front_fx,-0.0009616340976208448 +karman_re100,sr,35,14.0,force,front_fy,0.0033653578720986843 +karman_re100,sr,35,14.0,force,upper_fx,-0.0006832198705524206 +karman_re100,sr,35,14.0,force,upper_fy,0.004901429172605276 +karman_re100,sr,35,14.0,force,lower_fx,0.00148582155816257 +karman_re100,sr,35,14.0,force,lower_fy,-0.005200810264796019 +karman_re100,sr,36,14.4,force,front_fx,-0.0010041299974545836 +karman_re100,sr,36,14.4,force,front_fy,0.003744262969121337 +karman_re100,sr,36,14.4,force,upper_fx,-0.0022715763188898563 +karman_re100,sr,36,14.4,force,upper_fy,0.0039794426411390305 +karman_re100,sr,36,14.4,force,lower_fx,0.003899218747392297 +karman_re100,sr,36,14.4,force,lower_fy,-0.0064342995174229145 +karman_re100,sr,37,14.8,force,front_fx,-5.8833964430959895e-05 +karman_re100,sr,37,14.8,force,front_fy,0.003668807214125991 +karman_re100,sr,37,14.8,force,upper_fx,-0.004296566359698772 +karman_re100,sr,37,14.8,force,upper_fy,0.0027952396776527166 +karman_re100,sr,37,14.8,force,lower_fx,0.005661300383508205 +karman_re100,sr,37,14.8,force,lower_fy,-0.0065253255888819695 +karman_re100,sr,38,15.2,force,front_fx,0.0019158241339027882 +karman_re100,sr,38,15.2,force,front_fy,0.0031512496061623096 +karman_re100,sr,38,15.2,force,upper_fx,-0.006710754707455635 +karman_re100,sr,38,15.2,force,upper_fy,0.0017617720877751708 +karman_re100,sr,38,15.2,force,lower_fx,0.005802903324365616 +karman_re100,sr,38,15.2,force,lower_fy,-0.006050125230103731 +karman_re100,sr,39,15.6,force,front_fx,0.004284636117517948 +karman_re100,sr,39,15.6,force,front_fy,0.002205898519605398 +karman_re100,sr,39,15.6,force,upper_fx,-0.008883547969162464 +karman_re100,sr,39,15.6,force,upper_fy,0.001549888402223587 +karman_re100,sr,39,15.6,force,lower_fx,0.004687757696956396 +karman_re100,sr,39,15.6,force,lower_fy,-0.005384933203458786 +karman_re100,sr,40,16.0,force,front_fx,0.005066022276878357 +karman_re100,sr,40,16.0,force,front_fy,0.0010327039053663611 +karman_re100,sr,40,16.0,force,upper_fx,-0.008970025926828384 +karman_re100,sr,40,16.0,force,upper_fy,0.002858765423297882 +karman_re100,sr,40,16.0,force,lower_fx,0.0036271633580327034 +karman_re100,sr,40,16.0,force,lower_fy,-0.004610915668308735 +karman_re100,sr,41,16.4,force,front_fx,0.004268244840204716 +karman_re100,sr,41,16.4,force,front_fy,-0.00040811236249282956 +karman_re100,sr,41,16.4,force,upper_fx,-0.006216196343302727 +karman_re100,sr,41,16.4,force,upper_fy,0.004158619325608015 +karman_re100,sr,41,16.4,force,lower_fx,0.0027760090306401253 +karman_re100,sr,41,16.4,force,lower_fy,-0.0043928492814302444 +karman_re100,sr,42,16.8,force,front_fx,0.00246731867082417 +karman_re100,sr,42,16.8,force,front_fy,-0.001541679841466248 +karman_re100,sr,42,16.8,force,upper_fx,-0.0030217107851058245 +karman_re100,sr,42,16.8,force,upper_fy,0.003980197943747044 +karman_re100,sr,42,16.8,force,lower_fx,0.0018951259553432465 +karman_re100,sr,42,16.8,force,lower_fy,-0.004772708751261234 +karman_re100,sr,43,17.2,force,front_fx,0.0003422501031309366 +karman_re100,sr,43,17.2,force,front_fy,-0.0025512694846838713 +karman_re100,sr,43,17.2,force,upper_fx,-0.0007149561424739659 +karman_re100,sr,43,17.2,force,upper_fy,0.00399860180914402 +karman_re100,sr,43,17.2,force,lower_fx,0.0007747702184133232 +karman_re100,sr,43,17.2,force,lower_fy,-0.005236785858869553 +karman_re100,sr,44,17.6,force,front_fx,-0.0009530268143862486 +karman_re100,sr,44,17.6,force,front_fy,-0.0033119951840490103 +karman_re100,sr,44,17.6,force,upper_fx,0.0012995564611628652 +karman_re100,sr,44,17.6,force,upper_fy,0.0051041715778410435 +karman_re100,sr,44,17.6,force,lower_fx,-0.0005628111539408565 +karman_re100,sr,44,17.6,force,lower_fy,-0.0050386120565235615 +karman_re100,sr,45,18.0,force,front_fx,-0.0010691898642107844 +karman_re100,sr,45,18.0,force,front_fy,-0.0037294826470315456 +karman_re100,sr,45,18.0,force,upper_fx,0.003665090771391988 +karman_re100,sr,45,18.0,force,upper_fy,0.0063279313035309315 +karman_re100,sr,45,18.0,force,lower_fx,-0.002142079873010516 +karman_re100,sr,45,18.0,force,lower_fy,-0.004109753295779228 +karman_re100,sr,46,18.4,force,front_fx,-0.0001727160270093009 +karman_re100,sr,46,18.4,force,front_fy,-0.003682189853861928 +karman_re100,sr,46,18.4,force,upper_fx,0.00555564695969224 +karman_re100,sr,46,18.4,force,upper_fy,0.0065348208881914616 +karman_re100,sr,46,18.4,force,lower_fx,-0.004097441211342812 +karman_re100,sr,46,18.4,force,lower_fy,-0.0028971985448151827 +karman_re100,sr,47,18.8,force,front_fx,0.0017034970223903656 +karman_re100,sr,47,18.8,force,front_fy,-0.0031824950128793716 +karman_re100,sr,47,18.8,force,upper_fx,0.005872076377272606 +karman_re100,sr,47,18.8,force,upper_fy,0.006099879741668701 +karman_re100,sr,47,18.8,force,lower_fx,-0.006460008677095175 +karman_re100,sr,47,18.8,force,lower_fy,-0.001848603948019445 +karman_re100,sr,48,19.2,force,front_fx,0.0040693082846701145 +karman_re100,sr,48,19.2,force,front_fy,-0.002214964712038636 +karman_re100,sr,48,19.2,force,upper_fx,0.004792029969394207 +karman_re100,sr,48,19.2,force,upper_fy,0.005478964652866125 +karman_re100,sr,48,19.2,force,lower_fx,-0.008665486238896847 +karman_re100,sr,48,19.2,force,lower_fy,-0.0015686757396906614 +karman_re100,sr,49,19.6,force,front_fx,0.004997927695512772 +karman_re100,sr,49,19.6,force,front_fy,-0.001066732220351696 +karman_re100,sr,49,19.6,force,upper_fx,0.003655441338196397 +karman_re100,sr,49,19.6,force,upper_fy,0.004680413752794266 +karman_re100,sr,49,19.6,force,lower_fx,-0.009019073098897934 +karman_re100,sr,49,19.6,force,lower_fy,-0.0027433743234723806 +karman_re100,sr,50,20.0,force,front_fx,0.00424529192969203 +karman_re100,sr,50,20.0,force,front_fy,0.00037037875154055655 +karman_re100,sr,50,20.0,force,upper_fx,0.0027741091325879097 +karman_re100,sr,50,20.0,force,upper_fy,0.00439136428758502 +karman_re100,sr,50,20.0,force,lower_fx,-0.006470373831689358 +karman_re100,sr,50,20.0,force,lower_fy,-0.004098339471966028 +karman_re100,sr,51,20.4,force,front_fx,0.0025298562832176685 +karman_re100,sr,51,20.4,force,front_fy,0.0015196400927379727 +karman_re100,sr,51,20.4,force,upper_fx,0.001916097360663116 +karman_re100,sr,51,20.4,force,upper_fy,0.0047207544557750225 +karman_re100,sr,51,20.4,force,lower_fx,-0.0032294741831719875 +karman_re100,sr,51,20.4,force,lower_fy,-0.004026674199849367 +karman_re100,sr,52,20.8,force,front_fx,0.00043720848043449223 +karman_re100,sr,52,20.8,force,front_fy,0.0025326276663690805 +karman_re100,sr,52,20.8,force,upper_fx,0.000840695109218359 +karman_re100,sr,52,20.8,force,upper_fy,0.005207446403801441 +karman_re100,sr,52,20.8,force,lower_fx,-0.0008166256593540311 +karman_re100,sr,52,20.8,force,lower_fy,-0.004022210370749235 +karman_re100,sr,53,21.2,force,front_fx,-0.0009096676367335021 +karman_re100,sr,53,21.2,force,front_fy,0.003297596937045455 +karman_re100,sr,53,21.2,force,upper_fx,-0.000467657606350258 +karman_re100,sr,53,21.2,force,upper_fy,0.005092192441225052 +karman_re100,sr,53,21.2,force,lower_fx,0.0012219366617500782 +karman_re100,sr,53,21.2,force,lower_fy,-0.00508283032104373 +karman_re100,sr,54,21.6,force,front_fx,-0.0010796798160299659 +karman_re100,sr,54,21.6,force,front_fy,0.00373215414583683 +karman_re100,sr,54,21.6,force,upper_fx,-0.0020572056528180838 +karman_re100,sr,54,21.6,force,upper_fy,0.004214799031615257 +karman_re100,sr,54,21.6,force,lower_fx,0.0035432332661002874 +karman_re100,sr,54,21.6,force,lower_fy,-0.006320095155388117 +karman_re100,sr,55,22.0,force,front_fx,-0.00023427144333254546 +karman_re100,sr,55,22.0,force,front_fy,0.003724681679159403 +karman_re100,sr,55,22.0,force,upper_fx,-0.004049115348607302 +karman_re100,sr,55,22.0,force,upper_fy,0.002971063368022442 +karman_re100,sr,55,22.0,force,lower_fx,0.005457571242004633 +karman_re100,sr,55,22.0,force,lower_fy,-0.006532126571983099 +karman_re100,sr,56,22.4,force,front_fx,0.001614660955965519 +karman_re100,sr,56,22.4,force,front_fy,0.003236123826354742 +karman_re100,sr,56,22.4,force,upper_fx,-0.006372402422130108 +karman_re100,sr,56,22.4,force,upper_fy,0.0018762887921184301 +karman_re100,sr,56,22.4,force,lower_fx,0.00584688363596797 +karman_re100,sr,56,22.4,force,lower_fy,-0.006094331853091717 +karman_re100,sr,57,22.8,force,front_fx,0.003984746523201466 +karman_re100,sr,57,22.8,force,front_fy,0.0022620451636612415 +karman_re100,sr,57,22.8,force,upper_fx,-0.008590005338191986 +karman_re100,sr,57,22.8,force,upper_fy,0.0015335911884903908 +karman_re100,sr,57,22.8,force,lower_fx,0.0048442417755723 +karman_re100,sr,57,22.8,force,lower_fy,-0.005494418554008007 +karman_re100,sr,58,23.2,force,front_fx,0.005018080584704876 +karman_re100,sr,58,23.2,force,front_fy,0.0011106044985353947 +karman_re100,sr,58,23.2,force,upper_fx,-0.009061203338205814 +karman_re100,sr,58,23.2,force,upper_fy,0.002686809515580535 +karman_re100,sr,58,23.2,force,lower_fx,0.00372348097153008 +karman_re100,sr,58,23.2,force,lower_fy,-0.004731091670691967 +karman_re100,sr,59,23.6,force,front_fx,0.0043016355484724045 +karman_re100,sr,59,23.6,force,front_fy,-0.00034169864375144243 +karman_re100,sr,59,23.6,force,upper_fx,-0.006600779946893454 +karman_re100,sr,59,23.6,force,upper_fy,0.004152082372456789 +karman_re100,sr,59,23.6,force,lower_fx,0.002827615477144718 +karman_re100,sr,59,23.6,force,lower_fy,-0.004425604362040758 +karman_re100,sr,60,24.0,force,front_fx,0.0025991499423980713 +karman_re100,sr,60,24.0,force,front_fy,-0.0014966879971325397 +karman_re100,sr,60,24.0,force,upper_fx,-0.0033548264764249325 +karman_re100,sr,60,24.0,force,upper_fy,0.004120573867112398 +karman_re100,sr,60,24.0,force,lower_fx,0.001949360128492117 +karman_re100,sr,60,24.0,force,lower_fy,-0.004736841190606356 +karman_re100,sr,61,24.4,force,front_fx,0.0004955428303219378 +karman_re100,sr,61,24.4,force,front_fy,-0.0024956900160759687 +karman_re100,sr,61,24.4,force,upper_fx,-0.0009282202809117734 +karman_re100,sr,61,24.4,force,upper_fy,0.004013982135802507 +karman_re100,sr,61,24.4,force,lower_fx,0.0008646621718071401 +karman_re100,sr,61,24.4,force,lower_fy,-0.005214303731918335 +karman_re100,sr,62,24.8,force,front_fx,-0.0008893694612197578 +karman_re100,sr,62,24.8,force,front_fy,-0.0032625109888613224 +karman_re100,sr,62,24.8,force,upper_fx,0.0011021738173440099 +karman_re100,sr,62,24.8,force,upper_fy,0.004991159308701754 +karman_re100,sr,62,24.8,force,lower_fx,-0.0004174297791905701 +karman_re100,sr,62,24.8,force,lower_fy,-0.005108124576508999 +karman_re100,sr,63,25.2,force,front_fx,-0.00109530717600137 +karman_re100,sr,63,25.2,force,front_fy,-0.003720890497788787 +karman_re100,sr,63,25.2,force,upper_fx,0.0034313173964619637 +karman_re100,sr,63,25.2,force,upper_fy,0.006272622849792242 +karman_re100,sr,63,25.2,force,lower_fx,-0.001969900680705905 +karman_re100,sr,63,25.2,force,lower_fy,-0.004256109707057476 +karman_re100,sr,64,25.6,force,front_fx,-0.0002906961599364877 +karman_re100,sr,64,25.6,force,front_fy,-0.0037207668647170067 +karman_re100,sr,64,25.6,force,upper_fx,0.005402333103120327 +karman_re100,sr,64,25.6,force,upper_fy,0.006590130738914013 +karman_re100,sr,64,25.6,force,lower_fx,-0.003893746994435787 +karman_re100,sr,64,25.6,force,lower_fy,-0.0030598239973187447 +karman_re100,sr,65,26.0,force,front_fx,0.001511106383986771 +karman_re100,sr,65,26.0,force,front_fy,-0.0032579388935118914 +karman_re100,sr,65,26.0,force,upper_fx,0.005860241129994392 +karman_re100,sr,65,26.0,force,upper_fy,0.006151176523417234 +karman_re100,sr,65,26.0,force,lower_fx,-0.006238377187401056 +karman_re100,sr,65,26.0,force,lower_fy,-0.0019573832396417856 +karman_re100,sr,66,26.4,force,front_fx,0.003855585353448987 +karman_re100,sr,66,26.4,force,front_fy,-0.002288020448759198 +karman_re100,sr,66,26.4,force,upper_fx,0.004869250115007162 +karman_re100,sr,66,26.4,force,upper_fy,0.005545424297451973 +karman_re100,sr,66,26.4,force,lower_fx,-0.008501709438860416 +karman_re100,sr,66,26.4,force,lower_fy,-0.0015491126105189323 +karman_re100,sr,67,26.8,force,front_fx,0.004954589530825615 +karman_re100,sr,67,26.8,force,front_fy,-0.0011456889333203435 +karman_re100,sr,67,26.8,force,upper_fx,0.003715658560395241 +karman_re100,sr,67,26.8,force,upper_fy,0.004747235216200352 +karman_re100,sr,67,26.8,force,lower_fx,-0.009073767811059952 +karman_re100,sr,67,26.8,force,lower_fy,-0.0025809300132095814 +karman_re100,sr,68,27.2,force,front_fx,0.004320125095546246 +karman_re100,sr,68,27.2,force,front_fy,0.0003050181840080768 +karman_re100,sr,68,27.2,force,upper_fx,0.00284297252073884 +karman_re100,sr,68,27.2,force,upper_fy,0.004416175186634064 +karman_re100,sr,68,27.2,force,lower_fx,-0.00672708498314023 +karman_re100,sr,68,27.2,force,lower_fy,-0.004090096801519394 +karman_re100,sr,69,27.6,force,front_fx,0.0026600188575685024 +karman_re100,sr,69,27.6,force,front_fy,0.0014755389420315623 +karman_re100,sr,69,27.6,force,upper_fx,0.0019849396776407957 +karman_re100,sr,69,27.6,force,upper_fy,0.004711562767624855 +karman_re100,sr,69,27.6,force,lower_fx,-0.003428221680223942 +karman_re100,sr,69,27.6,force,lower_fy,-0.004174800124019384 +karman_re100,sr,70,28.0,force,front_fx,0.0005658038426190615 +karman_re100,sr,70,28.0,force,front_fy,0.0024793592747300863 +karman_re100,sr,70,28.0,force,upper_fx,0.000915135198738426 +karman_re100,sr,70,28.0,force,upper_fy,0.0052180164493620396 +karman_re100,sr,70,28.0,force,lower_fx,-0.0009425558382645249 +karman_re100,sr,70,28.0,force,lower_fy,-0.004080795682966709 +karman_re100,sr,71,28.4,force,front_fx,-0.0008678516605868936 +karman_re100,sr,71,28.4,force,front_fy,0.003244053339585662 +karman_re100,sr,71,28.4,force,upper_fx,-0.0003914992557838559 +karman_re100,sr,71,28.4,force,upper_fy,0.005145200528204441 +karman_re100,sr,71,28.4,force,lower_fx,0.001074114697985351 +karman_re100,sr,71,28.4,force,lower_fy,-0.004993337672203779 +karman_re100,sr,72,28.8,force,front_fx,-0.0011118865804746747 +karman_re100,sr,72,28.8,force,front_fy,0.0037148883566260338 +karman_re100,sr,72,28.8,force,upper_fx,-0.001963800983503461 +karman_re100,sr,72,28.8,force,upper_fy,0.004292482975870371 +karman_re100,sr,72,28.8,force,lower_fx,0.0033609906677156687 +karman_re100,sr,72,28.8,force,lower_fy,-0.00622632447630167 +karman_re100,sr,73,29.2,force,front_fx,-0.0003234234172850847 +karman_re100,sr,73,29.2,force,front_fy,0.003733215853571892 +karman_re100,sr,73,29.2,force,upper_fx,-0.003876920323818922 +karman_re100,sr,73,29.2,force,upper_fy,0.00306037743575871 +karman_re100,sr,73,29.2,force,lower_fx,0.005345708690583706 +karman_re100,sr,73,29.2,force,lower_fy,-0.006544796284288168 +karman_re100,sr,74,29.6,force,front_fx,0.001478761900216341 +karman_re100,sr,74,29.6,force,front_fy,0.0032990945037454367 +karman_re100,sr,74,29.6,force,upper_fx,-0.006192916072905064 +karman_re100,sr,74,29.6,force,upper_fy,0.0019505855161696672 +karman_re100,sr,74,29.6,force,lower_fx,0.005880333017557859 +karman_re100,sr,74,29.6,force,lower_fy,-0.0061406539753079414 +karman_re100,sr,75,30.0,force,front_fx,0.003831255715340376 +karman_re100,sr,75,30.0,force,front_fy,0.002338229911401868 +karman_re100,sr,75,30.0,force,upper_fx,-0.008455936796963215 +karman_re100,sr,75,30.0,force,upper_fy,0.0015488694189116359 +karman_re100,sr,75,30.0,force,lower_fx,0.004929124843329191 +karman_re100,sr,75,30.0,force,lower_fy,-0.005562520120292902 +karman_re100,sr,76,30.4,force,front_fx,0.004988798405975103 +karman_re100,sr,76,30.4,force,front_fy,0.0011969167971983552 +karman_re100,sr,76,30.4,force,upper_fx,-0.00910747330635786 +karman_re100,sr,76,30.4,force,upper_fy,0.0025736645329743624 +karman_re100,sr,76,30.4,force,lower_fx,0.003762276843190193 +karman_re100,sr,76,30.4,force,lower_fy,-0.00477905198931694 +karman_re100,sr,77,30.8,force,front_fx,0.004365880507975817 +karman_re100,sr,77,30.8,force,front_fy,-0.00024781518732197583 +karman_re100,sr,77,30.8,force,upper_fx,-0.006835034117102623 +karman_re100,sr,77,30.8,force,upper_fy,0.004062185995280743 +karman_re100,sr,77,30.8,force,lower_fx,0.0028619125951081514 +karman_re100,sr,77,30.8,force,lower_fy,-0.004418777301907539 +karman_re100,sr,78,31.2,force,front_fx,0.002719477517530322 +karman_re100,sr,78,31.2,force,front_fy,-0.001425557304173708 +karman_re100,sr,78,31.2,force,upper_fx,-0.003564602928236127 +karman_re100,sr,78,31.2,force,upper_fy,0.0041210949420928955 +karman_re100,sr,78,31.2,force,lower_fx,0.00200058426707983 +karman_re100,sr,78,31.2,force,lower_fy,-0.004687758628278971 +karman_re100,sr,79,31.6,force,front_fx,0.0006324901478365064 +karman_re100,sr,79,31.6,force,front_fy,-0.0024441657587885857 +karman_re100,sr,79,31.6,force,upper_fx,-0.001055741449818015 +karman_re100,sr,79,31.6,force,upper_fy,0.004007450770586729 +karman_re100,sr,79,31.6,force,lower_fx,0.0009573373245075345 +karman_re100,sr,79,31.6,force,lower_fy,-0.005190902855247259 +karman_re100,sr,80,32.0,force,front_fx,-0.000826079398393631 +karman_re100,sr,80,32.0,force,front_fy,-0.003228374058380723 +karman_re100,sr,80,32.0,force,upper_fx,0.0009875703835859895 +karman_re100,sr,80,32.0,force,upper_fy,0.004949877969920635 +karman_re100,sr,80,32.0,force,lower_fx,-0.00031770358327776194 +karman_re100,sr,80,32.0,force,lower_fy,-0.005154298152774572 +karman_re100,sr,81,32.4,force,front_fx,-0.0011133241932839155 +karman_re100,sr,81,32.4,force,front_fy,-0.0037033443804830313 +karman_re100,sr,81,32.4,force,upper_fx,0.003287614556029439 +karman_re100,sr,81,32.4,force,upper_fy,0.006243202835321426 +karman_re100,sr,81,32.4,force,lower_fx,-0.0018677539192140102 +karman_re100,sr,81,32.4,force,lower_fy,-0.004346042405813932 +karman_re100,sr,82,32.8,force,front_fx,-0.00037782106664963067 +karman_re100,sr,82,32.8,force,front_fy,-0.003732446115463972 +karman_re100,sr,82,32.8,force,upper_fx,0.005295407958328724 +karman_re100,sr,82,32.8,force,upper_fy,0.006592836230993271 +karman_re100,sr,82,32.8,force,lower_fx,-0.0037910498213022947 +karman_re100,sr,82,32.8,force,lower_fy,-0.0031355158425867558 +karman_re100,sr,83,33.2,force,front_fx,0.0013713301159441471 +karman_re100,sr,83,33.2,force,front_fy,-0.0033083343878388405 +karman_re100,sr,83,33.2,force,upper_fx,0.0058616758324205875 +karman_re100,sr,83,33.2,force,upper_fy,0.006166528910398483 +karman_re100,sr,83,33.2,force,lower_fx,-0.006104991305619478 +karman_re100,sr,83,33.2,force,lower_fy,-0.0020029775332659483 +karman_re100,sr,84,33.6,force,front_fx,0.0037274081259965897 +karman_re100,sr,84,33.6,force,front_fy,-0.0023643351159989834 +karman_re100,sr,84,33.6,force,upper_fx,0.004947899375110865 +karman_re100,sr,84,33.6,force,upper_fy,0.005573658272624016 +karman_re100,sr,84,33.6,force,lower_fx,-0.008378662168979645 +karman_re100,sr,84,33.6,force,lower_fy,-0.0015248468844220042 +karman_re100,sr,85,34.0,force,front_fx,0.0049678850919008255 +karman_re100,sr,85,34.0,force,front_fy,-0.0012386972084641457 +karman_re100,sr,85,34.0,force,upper_fx,0.0037973173893988132 +karman_re100,sr,85,34.0,force,upper_fy,0.004789979662746191 +karman_re100,sr,85,34.0,force,lower_fx,-0.009105268865823746 +karman_re100,sr,85,34.0,force,lower_fy,-0.0024943859316408634 +karman_re100,sr,86,34.4,force,front_fx,0.004394290968775749 +karman_re100,sr,86,34.4,force,front_fy,0.00021381821716204286 +karman_re100,sr,86,34.4,force,upper_fx,0.0029022314120084047 +karman_re100,sr,86,34.4,force,upper_fy,0.0044287885539233685 +karman_re100,sr,86,34.4,force,lower_fx,-0.006903409957885742 +karman_re100,sr,86,34.4,force,lower_fy,-0.0040526012890040874 +karman_re100,sr,87,34.8,force,front_fx,0.0027824381832033396 +karman_re100,sr,87,34.8,force,front_fy,0.001400028937496245 +karman_re100,sr,87,34.8,force,upper_fx,0.0020400285720825195 +karman_re100,sr,87,34.8,force,upper_fy,0.004689068999141455 +karman_re100,sr,87,34.8,force,lower_fx,-0.003616791684180498 +karman_re100,sr,87,34.8,force,lower_fy,-0.0041931550949811935 +karman_re100,sr,88,35.2,force,front_fx,0.0006728648440912366 +karman_re100,sr,88,35.2,force,front_fy,0.002413948532193899 +karman_re100,sr,88,35.2,force,upper_fx,0.0009746274445205927 +karman_re100,sr,88,35.2,force,upper_fy,0.005187537521123886 +karman_re100,sr,88,35.2,force,lower_fx,-0.0010994854383170605 +karman_re100,sr,88,35.2,force,lower_fy,-0.004020358435809612 +karman_re100,sr,89,35.6,force,front_fx,-0.0008121563005261123 +karman_re100,sr,89,35.6,force,front_fy,0.003200320526957512 +karman_re100,sr,89,35.6,force,upper_fx,-0.0003047404170501977 +karman_re100,sr,89,35.6,force,upper_fy,0.005152918864041567 +karman_re100,sr,89,35.6,force,lower_fx,0.0009218667983077466 +karman_re100,sr,89,35.6,force,lower_fy,-0.004877537954598665 +karman_re100,sr,90,36.0,force,front_fx,-0.0011167542543262243 +karman_re100,sr,90,36.0,force,front_fy,0.003695231396704912 +karman_re100,sr,90,36.0,force,upper_fx,-0.0018340677488595247 +karman_re100,sr,90,36.0,force,upper_fy,0.0043454840779304504 +karman_re100,sr,90,36.0,force,lower_fx,0.003210735972970724 +karman_re100,sr,90,36.0,force,lower_fy,-0.006155719049274921 +karman_re100,sr,91,36.4,force,front_fx,-0.0003966334043070674 +karman_re100,sr,91,36.4,force,front_fy,0.003748504212126136 +karman_re100,sr,91,36.4,force,upper_fx,-0.0037160359788686037 +karman_re100,sr,91,36.4,force,upper_fy,0.0031537055037915707 +karman_re100,sr,91,36.4,force,lower_fx,0.005266585387289524 +karman_re100,sr,91,36.4,force,lower_fy,-0.0065836613066494465 +karman_re100,sr,92,36.8,force,front_fx,0.0013275806559249759 +karman_re100,sr,92,36.8,force,front_fy,0.003345672506839037 +karman_re100,sr,92,36.8,force,upper_fx,-0.006027602590620518 +karman_re100,sr,92,36.8,force,upper_fy,0.002030760981142521 +karman_re100,sr,92,36.8,force,lower_fx,0.005898454692214727 +karman_re100,sr,92,36.8,force,lower_fy,-0.006197753362357616 +karman_re100,sr,93,37.2,force,front_fx,0.0036736256442964077 +karman_re100,sr,93,37.2,force,front_fy,0.0024074637331068516 +karman_re100,sr,93,37.2,force,upper_fx,-0.008343216963112354 +karman_re100,sr,93,37.2,force,upper_fy,0.0015405586455017328 +karman_re100,sr,93,37.2,force,lower_fx,0.004993151873350143 +karman_re100,sr,93,37.2,force,lower_fy,-0.0056160627864301205 +karman_re100,sr,94,37.6,force,front_fx,0.004973951727151871 +karman_re100,sr,94,37.6,force,front_fy,0.001288113766349852 +karman_re100,sr,94,37.6,force,upper_fx,-0.009168388321995735 +karman_re100,sr,94,37.6,force,upper_fy,0.002443772042170167 +karman_re100,sr,94,37.6,force,lower_fx,0.00381283788010478 +karman_re100,sr,94,37.6,force,lower_fy,-0.0048121195286512375 +karman_re100,sr,95,38.0,force,front_fx,0.0044450522400438786 +karman_re100,sr,95,38.0,force,front_fy,-0.00015397105016745627 +karman_re100,sr,95,38.0,force,upper_fx,-0.007048828527331352 +karman_re100,sr,95,38.0,force,upper_fy,0.003990077879279852 +karman_re100,sr,95,38.0,force,lower_fx,0.0029141136910766363 +karman_re100,sr,95,38.0,force,lower_fy,-0.004417996387928724 +karman_re100,sr,96,38.4,force,front_fx,0.0028678900562226772 +karman_re100,sr,96,38.4,force,front_fy,-0.0013582090614363551 +karman_re100,sr,96,38.4,force,upper_fx,-0.003735848469659686 +karman_re100,sr,96,38.4,force,upper_fy,0.004170066211372614 +karman_re100,sr,96,38.4,force,lower_fx,0.0020781110506504774 +karman_re100,sr,96,38.4,force,lower_fy,-0.004658734891563654 +karman_re100,sr,97,38.8,force,front_fx,0.0007712716469541192 +karman_re100,sr,97,38.8,force,front_fy,-0.0023826383985579014 +karman_re100,sr,97,38.8,force,upper_fx,-0.0011662644101306796 +karman_re100,sr,97,38.8,force,upper_fy,0.004024549387395382 +karman_re100,sr,97,38.8,force,lower_fx,0.0010409521637484431 +karman_re100,sr,97,38.8,force,lower_fy,-0.005179667379707098 +karman_re100,sr,98,39.2,force,front_fx,-0.0007689368794672191 +karman_re100,sr,98,39.2,force,front_fy,-0.0031809292268007994 +karman_re100,sr,98,39.2,force,upper_fx,0.0008642215398140252 +karman_re100,sr,98,39.2,force,upper_fy,0.0048846169374883175 +karman_re100,sr,98,39.2,force,lower_fx,-0.0002348475536564365 +karman_re100,sr,98,39.2,force,lower_fy,-0.0051970710046589375 +karman_re100,sr,99,39.6,force,front_fx,-0.0011306151282042265 +karman_re100,sr,99,39.6,force,front_fy,-0.0036778878420591354 +karman_re100,sr,99,39.6,force,upper_fx,0.0031272205524146557 +karman_re100,sr,99,39.6,force,upper_fy,0.006161265540868044 +karman_re100,sr,99,39.6,force,lower_fx,-0.0017796322936192155 +karman_re100,sr,99,39.6,force,lower_fy,-0.0044095274060964584 +karman_re100,sr,100,40.0,force,front_fx,-0.0004546665877569467 +karman_re100,sr,100,40.0,force,front_fy,-0.0037410843651741743 +karman_re100,sr,100,40.0,force,upper_fx,0.005195862613618374 +karman_re100,sr,100,40.0,force,upper_fy,0.0065762437880039215 +karman_re100,sr,100,40.0,force,lower_fx,-0.0036661706399172544 +karman_re100,sr,100,40.0,force,lower_fy,-0.0031964106019586325 +karman_re100,sr,101,40.4,force,front_fx,0.0012444943422451615 +karman_re100,sr,101,40.4,force,front_fy,-0.003355891676619649 +karman_re100,sr,101,40.4,force,upper_fx,0.005889839492738247 +karman_re100,sr,101,40.4,force,upper_fy,0.006190332118421793 +karman_re100,sr,101,40.4,force,lower_fx,-0.005948339123278856 +karman_re100,sr,101,40.4,force,lower_fy,-0.002048893366008997 +karman_re100,sr,102,40.8,force,front_fx,0.003600412281230092 +karman_re100,sr,102,40.8,force,front_fy,-0.0024430332705378532 +karman_re100,sr,102,40.8,force,upper_fx,0.005047553218901157 +karman_re100,sr,102,40.8,force,upper_fy,0.005628890357911587 +karman_re100,sr,102,40.8,force,lower_fx,-0.008253423497080803 +karman_re100,sr,102,40.8,force,lower_fy,-0.001533500850200653 +karman_re100,sr,103,41.2,force,front_fx,0.0049611302092671394 +karman_re100,sr,103,41.2,force,front_fy,-0.0013345804763957858 +karman_re100,sr,103,41.2,force,upper_fx,0.003870505141094327 +karman_re100,sr,103,41.2,force,upper_fy,0.00484886160120368 +karman_re100,sr,103,41.2,force,lower_fx,-0.00914246030151844 +karman_re100,sr,103,41.2,force,lower_fy,-0.00241304119117558 +karman_re100,sr,104,41.6,force,front_fx,0.004469776526093483 +karman_re100,sr,104,41.6,force,front_fy,0.00010902019857894629 +karman_re100,sr,104,41.6,force,upper_fx,0.002949691377580166 +karman_re100,sr,104,41.6,force,upper_fy,0.004432723391801119 +karman_re100,sr,104,41.6,force,lower_fx,-0.007122852373868227 +karman_re100,sr,104,41.6,force,lower_fy,-0.003981933929026127 +karman_re100,sr,105,42.0,force,front_fx,0.002917311852797866 +karman_re100,sr,105,42.0,force,front_fy,0.0013201214605942369 +karman_re100,sr,105,42.0,force,upper_fx,0.0020911500323563814 +karman_re100,sr,105,42.0,force,upper_fy,0.004651300143450499 +karman_re100,sr,105,42.0,force,lower_fx,-0.003846400184556842 +karman_re100,sr,105,42.0,force,lower_fy,-0.004175852052867413 +karman_re100,sr,106,42.4,force,front_fx,0.000817059597466141 +karman_re100,sr,106,42.4,force,front_fy,0.0023447852581739426 +karman_re100,sr,106,42.4,force,upper_fx,0.0010568300494924188 +karman_re100,sr,106,42.4,force,upper_fy,0.005142176523804665 +karman_re100,sr,106,42.4,force,lower_fx,-0.001263085869140923 +karman_re100,sr,106,42.4,force,lower_fy,-0.003962429240345955 +karman_re100,sr,107,42.8,force,front_fx,-0.0007359831943176687 +karman_re100,sr,107,42.8,force,front_fy,0.003161246422678232 +karman_re100,sr,107,42.8,force,upper_fx,-0.00019096489995718002 +karman_re100,sr,107,42.8,force,upper_fy,0.0051793502643704414 +karman_re100,sr,107,42.8,force,lower_fx,0.0007815086864866316 +karman_re100,sr,107,42.8,force,lower_fy,-0.0047989641316235065 +karman_re100,sr,108,43.2,force,front_fx,-0.0011244082124903798 +karman_re100,sr,108,43.2,force,front_fy,0.00368282338604331 +karman_re100,sr,108,43.2,force,upper_fx,-0.0017035841010510921 +karman_re100,sr,108,43.2,force,upper_fy,0.004434073343873024 +karman_re100,sr,108,43.2,force,lower_fx,0.0030567245557904243 +karman_re100,sr,108,43.2,force,lower_fy,-0.006124860607087612 +karman_re100,sr,109,43.6,force,front_fx,-0.00048423567204736173 +karman_re100,sr,109,43.6,force,front_fy,0.00375396478921175 +karman_re100,sr,109,43.6,force,upper_fx,-0.0035690837539732456 +karman_re100,sr,109,43.6,force,upper_fy,0.0032579577527940273 +karman_re100,sr,109,43.6,force,lower_fx,0.005160885863006115 +karman_re100,sr,109,43.6,force,lower_fy,-0.0066153849475085735 +karman_re100,sr,110,44.0,force,front_fx,0.0011695254361256957 +karman_re100,sr,110,44.0,force,front_fy,0.0033842839766293764 +karman_re100,sr,110,44.0,force,upper_fx,-0.0058676330372691154 +karman_re100,sr,110,44.0,force,upper_fy,0.0021012965589761734 +karman_re100,sr,110,44.0,force,lower_fx,0.005890033207833767 +karman_re100,sr,110,44.0,force,lower_fy,-0.006229334510862827 +karman_re100,sr,111,44.4,force,front_fx,0.0035114146303385496 +karman_re100,sr,111,44.4,force,front_fy,0.002477372530847788 +karman_re100,sr,111,44.4,force,upper_fx,-0.008207719773054123 +karman_re100,sr,111,44.4,force,upper_fy,0.0015244311653077602 +karman_re100,sr,111,44.4,force,lower_fx,0.005068004596978426 +karman_re100,sr,111,44.4,force,lower_fy,-0.0056537757627666 +karman_re100,sr,112,44.8,force,front_fx,0.004961703903973103 +karman_re100,sr,112,44.8,force,front_fy,0.0013802200555801392 +karman_re100,sr,112,44.8,force,upper_fx,-0.009198378771543503 +karman_re100,sr,112,44.8,force,upper_fy,0.0023335753940045834 +karman_re100,sr,112,44.8,force,lower_fx,0.0038929167203605175 +karman_re100,sr,112,44.8,force,lower_fy,-0.004861297085881233 +karman_re100,sr,113,45.2,force,front_fx,0.004519857000559568 +karman_re100,sr,113,45.2,force,front_fy,-6.351870251819491e-05 +karman_re100,sr,113,45.2,force,upper_fx,-0.0072348350659012794 +karman_re100,sr,113,45.2,force,upper_fy,0.003945569042116404 +karman_re100,sr,113,45.2,force,lower_fx,0.002987396903336048 +karman_re100,sr,113,45.2,force,lower_fy,-0.004428138956427574 +karman_re100,sr,114,45.6,force,front_fx,0.002998401876538992 +karman_re100,sr,114,45.6,force,front_fy,-0.001288101077079773 +karman_re100,sr,114,45.6,force,upper_fx,-0.003920411691069603 +karman_re100,sr,114,45.6,force,upper_fy,0.004224636126309633 +karman_re100,sr,114,45.6,force,lower_fx,0.002138586947694421 +karman_re100,sr,114,45.6,force,lower_fy,-0.004641613457351923 +karman_re100,sr,115,46.0,force,front_fx,0.0008982268045656383 +karman_re100,sr,115,46.0,force,front_fy,-0.00231612054631114 +karman_re100,sr,115,46.0,force,upper_fx,-0.0013119266368448734 +karman_re100,sr,115,46.0,force,upper_fy,0.004005840048193932 +karman_re100,sr,115,46.0,force,lower_fx,0.0011078055249527097 +karman_re100,sr,115,46.0,force,lower_fy,-0.005157104693353176 +karman_re100,sr,116,46.4,force,front_fx,-0.0007098452770151198 +karman_re100,sr,116,46.4,force,front_fy,-0.0031315952073782682 +karman_re100,sr,116,46.4,force,upper_fx,0.0007151648169383407 +karman_re100,sr,116,46.4,force,upper_fy,0.00477149011567235 +karman_re100,sr,116,46.4,force,lower_fx,-0.0001566561113577336 +karman_re100,sr,116,46.4,force,lower_fy,-0.005212228745222092 +karman_re100,sr,117,46.8,force,front_fx,-0.001138456747867167 +karman_re100,sr,117,46.8,force,front_fy,-0.0036574655678123236 +karman_re100,sr,117,46.8,force,upper_fx,0.0029621904250234365 +karman_re100,sr,117,46.8,force,upper_fy,0.006063276436179876 +karman_re100,sr,117,46.8,force,lower_fx,-0.0016708506736904383 +karman_re100,sr,117,46.8,force,lower_fy,-0.0044600521214306355 +karman_re100,sr,118,47.2,force,front_fx,-0.0005207958747632802 +karman_re100,sr,118,47.2,force,front_fy,-0.0037535151932388544 +karman_re100,sr,118,47.2,force,upper_fx,0.005103047471493483 +karman_re100,sr,118,47.2,force,upper_fy,0.006586791947484016 +karman_re100,sr,118,47.2,force,lower_fx,-0.003506456268951297 +karman_re100,sr,118,47.2,force,lower_fy,-0.0032774568535387516 +karman_re100,sr,119,47.6,force,front_fx,0.0011095675872638822 +karman_re100,sr,119,47.6,force,front_fy,-0.00340396910905838 +karman_re100,sr,119,47.6,force,upper_fx,0.005912157241255045 +karman_re100,sr,119,47.6,force,upper_fy,0.006241481751203537 +karman_re100,sr,119,47.6,force,lower_fx,-0.005774428136646748 +karman_re100,sr,119,47.6,force,lower_fy,-0.002124359365552664 +karman_re100,sr,120,48.0,force,front_fx,0.0034424106124788523 +karman_re100,sr,120,48.0,force,front_fy,-0.0025165111292153597 +karman_re100,sr,120,48.0,force,upper_fx,0.005139708984643221 +karman_re100,sr,120,48.0,force,upper_fy,0.005699427332729101 +karman_re100,sr,120,48.0,force,lower_fx,-0.008128267712891102 +karman_re100,sr,120,48.0,force,lower_fy,-0.001548171043395996 +karman_re100,sr,121,48.4,force,front_fx,0.004938558675348759 +karman_re100,sr,121,48.4,force,front_fy,-0.0014180946163833141 +karman_re100,sr,121,48.4,force,upper_fx,0.003920300863683224 +karman_re100,sr,121,48.4,force,upper_fy,0.004892276134341955 +karman_re100,sr,121,48.4,force,lower_fx,-0.009192606434226036 +karman_re100,sr,121,48.4,force,lower_fy,-0.002295850310474634 +karman_re100,sr,122,48.8,force,front_fx,0.004543981049209833 +karman_re100,sr,122,48.8,force,front_fy,1.0078106242872309e-05 +karman_re100,sr,122,48.8,force,upper_fx,0.0029958903323858976 +karman_re100,sr,122,48.8,force,upper_fy,0.00442699808627367 +karman_re100,sr,122,48.8,force,lower_fx,-0.00735478475689888 +karman_re100,sr,122,48.8,force,lower_fy,-0.0038857723120599985 +karman_re100,sr,123,49.2,force,front_fx,0.0030547764617949724 +karman_re100,sr,123,49.2,force,front_fy,0.0012409547343850136 +karman_re100,sr,123,49.2,force,upper_fx,0.002156513510271907 +karman_re100,sr,123,49.2,force,upper_fy,0.004603669513016939 +karman_re100,sr,123,49.2,force,lower_fx,-0.00405421806499362 +karman_re100,sr,123,49.2,force,lower_fy,-0.004186262376606464 +karman_re100,sr,124,49.6,force,front_fx,0.0009749418240971863 +karman_re100,sr,124,49.6,force,front_fy,0.0022820320446044207 +karman_re100,sr,124,49.6,force,upper_fx,0.001149910967797041 +karman_re100,sr,124,49.6,force,upper_fy,0.005123967304825783 +karman_re100,sr,124,49.6,force,lower_fx,-0.001395893283188343 +karman_re100,sr,124,49.6,force,lower_fy,-0.003975017461925745 +karman_re100,sr,125,50.0,force,front_fx,-0.000663495680782944 +karman_re100,sr,125,50.0,force,front_fy,0.0031148744747042656 +karman_re100,sr,125,50.0,force,upper_fx,-9.228420094586909e-05 +karman_re100,sr,125,50.0,force,upper_fy,0.005221791099756956 +karman_re100,sr,125,50.0,force,lower_fx,0.0006556105799973011 +karman_re100,sr,125,50.0,force,lower_fy,-0.004745024256408215 +karman_re100,sr,126,50.4,force,front_fx,-0.001136289443820715 +karman_re100,sr,126,50.4,force,front_fy,0.003651807550340891 +karman_re100,sr,126,50.4,force,upper_fx,-0.0016018155729398131 +karman_re100,sr,126,50.4,force,upper_fy,0.0045160893350839615 +karman_re100,sr,126,50.4,force,lower_fx,0.0028953799046576023 +karman_re100,sr,126,50.4,force,lower_fy,-0.006061898544430733 +karman_re100,sr,127,50.8,force,front_fx,-0.0005649965605698526 +karman_re100,sr,127,50.8,force,front_fy,0.0037588090635836124 +karman_re100,sr,127,50.8,force,upper_fx,-0.003446767572313547 +karman_re100,sr,127,50.8,force,upper_fy,0.003335083369165659 +karman_re100,sr,127,50.8,force,lower_fx,0.005040077958256006 +karman_re100,sr,127,50.8,force,lower_fy,-0.006603402551263571 +karman_re100,sr,128,51.2,force,front_fx,0.0010311208898201585 +karman_re100,sr,128,51.2,force,front_fy,0.0034256414510309696 +karman_re100,sr,128,51.2,force,upper_fx,-0.005713315214961767 +karman_re100,sr,128,51.2,force,upper_fy,0.0021514513064175844 +karman_re100,sr,128,51.2,force,lower_fx,0.005893084220588207 +karman_re100,sr,128,51.2,force,lower_fy,-0.006243659649044275 +karman_re100,sr,129,51.6,force,front_fx,0.003371749771758914 +karman_re100,sr,129,51.6,force,front_fy,0.00255305296741426 +karman_re100,sr,129,51.6,force,upper_fx,-0.008054886013269424 +karman_re100,sr,129,51.6,force,upper_fy,0.00152983283624053 +karman_re100,sr,129,51.6,force,lower_fx,0.005170081276446581 +karman_re100,sr,129,51.6,force,lower_fy,-0.00569722056388855 +karman_re100,sr,130,52.0,force,front_fx,0.004933214746415615 +karman_re100,sr,130,52.0,force,front_fy,0.0014639614382758737 +karman_re100,sr,130,52.0,force,upper_fx,-0.009191312827169895 +karman_re100,sr,130,52.0,force,upper_fy,0.0022472147829830647 +karman_re100,sr,130,52.0,force,lower_fx,0.003970783669501543 +karman_re100,sr,130,52.0,force,lower_fy,-0.004915695637464523 +karman_re100,sr,131,52.4,force,front_fx,0.004591396078467369 +karman_re100,sr,131,52.4,force,front_fy,3.633076630649157e-05 +karman_re100,sr,131,52.4,force,upper_fx,-0.007444733288139105 +karman_re100,sr,131,52.4,force,upper_fy,0.0038816211745142937 +karman_re100,sr,131,52.4,force,lower_fx,0.0030489733908325434 +karman_re100,sr,131,52.4,force,lower_fy,-0.004451983142644167 +karman_re100,sr,132,52.8,force,front_fx,0.0031169624999165535 +karman_re100,sr,132,52.8,force,front_fy,-0.0012090499512851238 +karman_re100,sr,132,52.8,force,upper_fx,-0.004145059734582901 +karman_re100,sr,132,52.8,force,upper_fy,0.004226107150316238 +karman_re100,sr,132,52.8,force,lower_fx,0.002187381498515606 +karman_re100,sr,132,52.8,force,lower_fy,-0.0046112556010484695 +karman_re100,sr,133,53.2,force,front_fx,0.0010476894676685333 +karman_re100,sr,133,53.2,force,front_fy,-0.0022587173152714968 +karman_re100,sr,133,53.2,force,upper_fx,-0.0014818338677287102 +karman_re100,sr,133,53.2,force,upper_fy,0.003962155431509018 +karman_re100,sr,133,53.2,force,lower_fx,0.0011738348985090852 +karman_re100,sr,133,53.2,force,lower_fy,-0.00511497026309371 +karman_re100,sr,134,53.6,force,front_fx,-0.0006357234087772667 +karman_re100,sr,134,53.6,force,front_fy,-0.0030892009381204844 +karman_re100,sr,134,53.6,force,upper_fx,0.0005652316613122821 +karman_re100,sr,134,53.6,force,upper_fy,0.004671556409448385 +karman_re100,sr,134,53.6,force,lower_fx,-5.9824604250025004e-05 +karman_re100,sr,134,53.6,force,lower_fy,-0.005224209278821945 +karman_re100,sr,135,54.0,force,front_fx,-0.001136000850237906 +karman_re100,sr,135,54.0,force,front_fy,-0.003638708498328924 +karman_re100,sr,135,54.0,force,upper_fx,0.0028046551160514355 +karman_re100,sr,135,54.0,force,upper_fy,0.0059989457949995995 +karman_re100,sr,135,54.0,force,lower_fx,-0.001538813579827547 +karman_re100,sr,135,54.0,force,lower_fy,-0.0045323120430111885 +karman_re100,sr,136,54.4,force,front_fx,-0.0005946898018009961 +karman_re100,sr,136,54.4,force,front_fy,-0.0037659129593521357 +karman_re100,sr,136,54.4,force,upper_fx,0.004995671566575766 +karman_re100,sr,136,54.4,force,upper_fy,0.006613047327846289 +karman_re100,sr,136,54.4,force,lower_fx,-0.0033561885356903076 +karman_re100,sr,136,54.4,force,lower_fy,-0.003376859938725829 +karman_re100,sr,137,54.8,force,front_fx,0.0009596688905730844 +karman_re100,sr,137,54.8,force,front_fy,-0.003444575471803546 +karman_re100,sr,137,54.8,force,upper_fx,0.005906426347792149 +karman_re100,sr,137,54.8,force,upper_fy,0.0062876129522919655 +karman_re100,sr,137,54.8,force,lower_fx,-0.005608766805380583 +karman_re100,sr,137,54.8,force,lower_fy,-0.002208309480920434 +karman_re100,sr,138,55.2,force,front_fx,0.0032713008113205433 +karman_re100,sr,138,55.2,force,front_fy,-0.0025835991837084293 +karman_re100,sr,138,55.2,force,upper_fx,0.005201348103582859 +karman_re100,sr,138,55.2,force,upper_fy,0.005732033401727676 +karman_re100,sr,138,55.2,force,lower_fx,-0.00798562727868557 +karman_re100,sr,138,55.2,force,lower_fy,-0.0015443649608641863 +karman_re100,sr,139,55.6,force,front_fx,0.004902540240436792 +karman_re100,sr,139,55.6,force,front_fy,-0.0015049704816192389 +karman_re100,sr,139,55.6,force,upper_fx,0.003987888805568218 +karman_re100,sr,139,55.6,force,upper_fy,0.004935319535434246 +karman_re100,sr,139,55.6,force,lower_fx,-0.00920946802943945 +karman_re100,sr,139,55.6,force,lower_fy,-0.002177153481170535 +karman_re100,sr,140,56.0,force,front_fx,0.004610835108906031 +karman_re100,sr,140,56.0,force,front_fy,-8.625668124295771e-05 +karman_re100,sr,140,56.0,force,upper_fx,0.003065321361646056 +karman_re100,sr,140,56.0,force,upper_fy,0.00443799514323473 +karman_re100,sr,140,56.0,force,lower_fx,-0.007554422598332167 +karman_re100,sr,140,56.0,force,lower_fy,-0.0038025856483727694 +karman_re100,sr,141,56.4,force,front_fx,0.0031885886564850807 +karman_re100,sr,141,56.4,force,front_fy,0.001174050266854465 +karman_re100,sr,141,56.4,force,upper_fx,0.0022280740085989237 +karman_re100,sr,141,56.4,force,upper_fy,0.004586016293615103 +karman_re100,sr,141,56.4,force,lower_fx,-0.004249665420502424 +karman_re100,sr,141,56.4,force,lower_fy,-0.004237292800098658 +karman_re100,sr,142,56.8,force,front_fx,0.0011158634442836046 +karman_re100,sr,142,56.8,force,front_fy,0.0022186802234500647 +karman_re100,sr,142,56.8,force,upper_fx,0.0012260421644896269 +karman_re100,sr,142,56.8,force,upper_fy,0.005108552053570747 +karman_re100,sr,142,56.8,force,lower_fx,-0.0015335062053054571 +karman_re100,sr,142,56.8,force,lower_fy,-0.003995480015873909 +karman_re100,sr,143,57.2,force,front_fx,-0.0005936473025940359 +karman_re100,sr,143,57.2,force,front_fy,0.0030637315940111876 +karman_re100,sr,143,57.2,force,upper_fx,-1.3095795111439656e-05 +karman_re100,sr,143,57.2,force,upper_fy,0.005248650908470154 +karman_re100,sr,143,57.2,force,lower_fx,0.0005186166381463408 +karman_re100,sr,143,57.2,force,lower_fy,-0.004665741231292486 +karman_re100,sr,144,57.6,force,front_fx,-0.0011458572698757052 +karman_re100,sr,144,57.6,force,front_fy,0.003627186641097069 +karman_re100,sr,144,57.6,force,upper_fx,-0.0015069787623360753 +karman_re100,sr,144,57.6,force,upper_fy,0.004580331034958363 +karman_re100,sr,144,57.6,force,lower_fx,0.0027292484883219004 +karman_re100,sr,144,57.6,force,lower_fy,-0.005967877339571714 +karman_re100,sr,145,58.0,force,front_fx,-0.0006307576550170779 +karman_re100,sr,145,58.0,force,front_fy,0.0037652438040822744 +karman_re100,sr,145,58.0,force,upper_fx,-0.0033109369687736034 +karman_re100,sr,145,58.0,force,upper_fy,0.0034050389658659697 +karman_re100,sr,145,58.0,force,lower_fx,0.004926380235701799 +karman_re100,sr,145,58.0,force,lower_fy,-0.006582965143024921 +karman_re100,sr,146,58.4,force,front_fx,0.000905510620214045 +karman_re100,sr,146,58.4,force,front_fy,0.00346716633066535 +karman_re100,sr,146,58.4,force,upper_fx,-0.0055405558086931705 +karman_re100,sr,146,58.4,force,upper_fy,0.0022193510085344315 +karman_re100,sr,146,58.4,force,lower_fx,0.005906702950596809 +karman_re100,sr,146,58.4,force,lower_fy,-0.006280021741986275 +karman_re100,sr,147,58.8,force,front_fx,0.0032149585895240307 +karman_re100,sr,147,58.8,force,front_fy,0.00262887473218143 +karman_re100,sr,147,58.8,force,upper_fx,-0.00792321003973484 +karman_re100,sr,147,58.8,force,upper_fy,0.0015492546372115612 +karman_re100,sr,147,58.8,force,lower_fx,0.005269438493996859 +karman_re100,sr,147,58.8,force,lower_fy,-0.005759826861321926 +karman_re100,sr,148,59.2,force,front_fx,0.004904801957309246 +karman_re100,sr,148,59.2,force,front_fy,0.001548560569062829 +karman_re100,sr,148,59.2,force,upper_fx,-0.009217058308422565 +karman_re100,sr,148,59.2,force,upper_fy,0.002157516311854124 +karman_re100,sr,148,59.2,force,lower_fx,0.004044550936669111 +karman_re100,sr,148,59.2,force,lower_fy,-0.004977724980562925 +karman_re100,sr,149,59.6,force,front_fx,0.004652340896427631 +karman_re100,sr,149,59.6,force,front_fy,0.00013752256927546114 +karman_re100,sr,149,59.6,force,upper_fx,-0.00765911815688014 +karman_re100,sr,149,59.6,force,upper_fy,0.0037736392114311457 +karman_re100,sr,149,59.6,force,lower_fx,0.003090893616899848 +karman_re100,sr,149,59.6,force,lower_fy,-0.004450533073395491 +karman_re100,sr,150,60.0,force,front_fx,0.0032517772633582354 +karman_re100,sr,150,60.0,force,front_fy,-0.0011271933326497674 +karman_re100,sr,150,60.0,force,upper_fx,-0.004382507875561714 +karman_re100,sr,150,60.0,force,upper_fy,0.004216072149574757 +karman_re100,sr,150,60.0,force,lower_fx,0.0022456981241703033 +karman_re100,sr,150,60.0,force,lower_fy,-0.004564826376736164 +karman_re100,sr,151,60.4,force,front_fx,0.001189521630294621 +karman_re100,sr,151,60.4,force,front_fy,-0.0021764831617474556 +karman_re100,sr,151,60.4,force,upper_fx,-0.0016455012373626232 +karman_re100,sr,151,60.4,force,upper_fy,0.00394517881795764 +karman_re100,sr,151,60.4,force,lower_fx,0.0012579052709043026 +karman_re100,sr,151,60.4,force,lower_fy,-0.0050758663564920425 +karman_re100,sr,152,60.8,force,front_fx,-0.0005478039965964854 +karman_re100,sr,152,60.8,force,front_fy,-0.0030402459669858217 +karman_re100,sr,152,60.8,force,upper_fx,0.00042992678936570883 +karman_re100,sr,152,60.8,force,upper_fy,0.004602575674653053 +karman_re100,sr,152,60.8,force,lower_fx,4.71735475002788e-05 +karman_re100,sr,152,60.8,force,lower_fy,-0.0052431495860219 +karman_re100,sr,153,61.2,force,front_fx,-0.0011387832928448915 +karman_re100,sr,153,61.2,force,front_fy,-0.00361407408490777 +karman_re100,sr,153,61.2,force,upper_fx,0.0026441963855177164 +karman_re100,sr,153,61.2,force,upper_fy,0.005943608470261097 +karman_re100,sr,153,61.2,force,lower_fx,-0.0014230577507987618 +karman_re100,sr,153,61.2,force,lower_fy,-0.004615396726876497 +karman_re100,sr,154,61.6,force,front_fx,-0.0006725372513756156 +karman_re100,sr,154,61.6,force,front_fy,-0.0037670177407562733 +karman_re100,sr,154,61.6,force,upper_fx,0.004864975810050964 +karman_re100,sr,154,61.6,force,upper_fy,0.006617211736738682 +karman_re100,sr,154,61.6,force,lower_fx,-0.003222829895094037 +karman_re100,sr,154,61.6,force,lower_fy,-0.003473491407930851 +karman_re100,sr,155,62.0,force,front_fx,0.0008162930607795715 +karman_re100,sr,155,62.0,force,front_fy,-0.0034791557118296623 +karman_re100,sr,155,62.0,force,upper_fx,0.005884979851543903 +karman_re100,sr,155,62.0,force,upper_fy,0.00630857702344656 +karman_re100,sr,155,62.0,force,lower_fx,-0.005453439429402351 +karman_re100,sr,155,62.0,force,lower_fy,-0.002273150719702244 +karman_re100,sr,156,62.4,force,front_fx,0.0031094036530703306 +karman_re100,sr,156,62.4,force,front_fy,-0.002654963405802846 +karman_re100,sr,156,62.4,force,upper_fx,0.00528289657086134 +karman_re100,sr,156,62.4,force,upper_fy,0.005764156114310026 +karman_re100,sr,156,62.4,force,lower_fx,-0.007836500182747841 +karman_re100,sr,156,62.4,force,lower_fy,-0.0015476017724722624 +karman_re100,sr,157,62.8,force,front_fx,0.004863014444708824 +karman_re100,sr,157,62.8,force,front_fy,-0.00158568168990314 +karman_re100,sr,157,62.8,force,upper_fx,0.004073620308190584 +karman_re100,sr,157,62.8,force,upper_fy,0.004990340676158667 +karman_re100,sr,157,62.8,force,lower_fx,-0.009189283475279808 +karman_re100,sr,157,62.8,force,lower_fy,-0.0020880817901343107 +karman_re100,sr,158,63.2,force,front_fx,0.004675209987908602 +karman_re100,sr,158,63.2,force,front_fy,-0.00018535114941187203 +karman_re100,sr,158,63.2,force,upper_fx,0.003133307909592986 +karman_re100,sr,158,63.2,force,upper_fy,0.004462381824851036 +karman_re100,sr,158,63.2,force,lower_fx,-0.007734635379165411 +karman_re100,sr,158,63.2,force,lower_fy,-0.0037318882532417774 +karman_re100,sr,159,63.6,force,front_fx,0.0033123930916190147 +karman_re100,sr,159,63.6,force,front_fy,0.001101032248698175 +karman_re100,sr,159,63.6,force,upper_fx,0.0022906705271452665 +karman_re100,sr,159,63.6,force,upper_fy,0.004571100231260061 +karman_re100,sr,159,63.6,force,lower_fx,-0.004468717612326145 +karman_re100,sr,159,63.6,force,lower_fy,-0.004269798286259174 +karman_re100,sr,160,64.0,force,front_fx,0.0012540025636553764 +karman_re100,sr,160,64.0,force,front_fy,0.0021490980871021748 +karman_re100,sr,160,64.0,force,upper_fx,0.0012938075233250856 +karman_re100,sr,160,64.0,force,upper_fy,0.005078341346234083 +karman_re100,sr,160,64.0,force,lower_fx,-0.001700516906566918 +karman_re100,sr,160,64.0,force,lower_fy,-0.003983505070209503 +karman_re100,sr,161,64.4,force,front_fx,-0.0005184069741517305 +karman_re100,sr,161,64.4,force,front_fy,0.0030132210813462734 +karman_re100,sr,161,64.4,force,upper_fx,7.12176479282789e-05 +karman_re100,sr,161,64.4,force,upper_fy,0.005250155925750732 +karman_re100,sr,161,64.4,force,lower_fx,0.00036619260208681226 +karman_re100,sr,161,64.4,force,lower_fy,-0.004556190222501755 +karman_re100,sr,162,64.8,force,front_fx,-0.0011396268382668495 +karman_re100,sr,162,64.8,force,front_fy,0.0035975242499262094 +karman_re100,sr,162,64.8,force,upper_fx,-0.0013868536334484816 +karman_re100,sr,162,64.8,force,upper_fy,0.004630591254681349 +karman_re100,sr,162,64.8,force,lower_fx,0.002558669075369835 +karman_re100,sr,162,64.8,force,lower_fy,-0.005863357335329056 +karman_re100,sr,163,65.2,force,front_fx,-0.0006932502728886902 +karman_re100,sr,163,65.2,force,front_fy,0.0037737861275672913 +karman_re100,sr,163,65.2,force,upper_fx,-0.0031489955727010965 +karman_re100,sr,163,65.2,force,upper_fy,0.003496750257909298 +karman_re100,sr,163,65.2,force,lower_fx,0.004814255982637405 +karman_re100,sr,163,65.2,force,lower_fy,-0.006592662539333105 +karman_re100,sr,164,65.6,force,front_fx,0.000762535841204226 +karman_re100,sr,164,65.6,force,front_fy,0.003505707485601306 +karman_re100,sr,164,65.6,force,upper_fx,-0.005363736767321825 +karman_re100,sr,164,65.6,force,upper_fy,0.0023062455002218485 +karman_re100,sr,164,65.6,force,lower_fx,0.005901010241359472 +karman_re100,sr,164,65.6,force,lower_fy,-0.00633219676092267 +karman_re100,sr,165,66.0,force,front_fx,0.0030347618740051985 +karman_re100,sr,165,66.0,force,front_fy,0.0026943066623061895 +karman_re100,sr,165,66.0,force,upper_fx,-0.007763249333947897 +karman_re100,sr,165,66.0,force,upper_fy,0.0015682547818869352 +karman_re100,sr,165,66.0,force,lower_fx,0.005335104651749134 +karman_re100,sr,165,66.0,force,lower_fy,-0.0058023142628371716 +karman_re100,sr,166,66.4,force,front_fx,0.004840198438614607 +karman_re100,sr,166,66.4,force,front_fy,0.0016267279861494899 +karman_re100,sr,166,66.4,force,upper_fx,-0.00920427218079567 +karman_re100,sr,166,66.4,force,upper_fy,0.00204741139896214 +karman_re100,sr,166,66.4,force,lower_fx,0.0041009956039488316 +karman_re100,sr,166,66.4,force,lower_fy,-0.005021074321120977 +karman_re100,sr,167,66.8,force,front_fx,0.004704365506768227 +karman_re100,sr,167,66.8,force,front_fy,0.0002404430997557938 +karman_re100,sr,167,66.8,force,upper_fx,-0.00785952527076006 +karman_re100,sr,167,66.8,force,upper_fy,0.003664185991510749 +karman_re100,sr,167,66.8,force,lower_fx,0.0031492868438363075 +karman_re100,sr,167,66.8,force,lower_fy,-0.004460723139345646 +karman_re100,sr,168,67.2,force,front_fx,0.003377961227670312 +karman_re100,sr,168,67.2,force,front_fy,-0.0010556912748143077 +karman_re100,sr,168,67.2,force,upper_fx,-0.004593070596456528 +karman_re100,sr,168,67.2,force,upper_fy,0.004243575502187014 +karman_re100,sr,168,67.2,force,lower_fx,0.0023150525521486998 +karman_re100,sr,168,67.2,force,lower_fy,-0.00453958148136735 +karman_re100,sr,169,67.6,force,front_fx,0.0013375469716265798 +karman_re100,sr,169,67.6,force,front_fy,-0.0021147197112441063 +karman_re100,sr,169,67.6,force,upper_fx,-0.001781473751179874 +karman_re100,sr,169,67.6,force,upper_fy,0.003975563682615757 +karman_re100,sr,169,67.6,force,lower_fx,0.0013432560954242945 +karman_re100,sr,169,67.6,force,lower_fy,-0.005052974447607994 +karman_re100,sr,170,68.0,force,front_fx,-0.0004651772906072438 +karman_re100,sr,170,68.0,force,front_fy,-0.002990741515532136 +karman_re100,sr,170,68.0,force,upper_fx,0.00030884056468494236 +karman_re100,sr,170,68.0,force,upper_fy,0.004546745214611292 +karman_re100,sr,170,68.0,force,lower_fx,0.00013532370212487876 +karman_re100,sr,170,68.0,force,lower_fy,-0.005270351655781269 +karman_re100,sr,171,68.4,force,front_fx,-0.0011393914464861155 +karman_re100,sr,171,68.4,force,front_fy,-0.0035824289079755545 +karman_re100,sr,171,68.4,force,upper_fx,0.0024809243623167276 +karman_re100,sr,171,68.4,force,upper_fy,0.005852608010172844 +karman_re100,sr,171,68.4,force,lower_fx,-0.001330380910076201 +karman_re100,sr,171,68.4,force,lower_fy,-0.004683479201048613 +karman_re100,sr,172,68.8,force,front_fx,-0.0007363028125837445 +karman_re100,sr,172,68.8,force,front_fy,-0.003769202157855034 +karman_re100,sr,172,68.8,force,upper_fx,0.004734127316623926 +karman_re100,sr,172,68.8,force,upper_fy,0.006586990784853697 +karman_re100,sr,172,68.8,force,lower_fx,-0.0031021619215607643 +karman_re100,sr,172,68.8,force,lower_fy,-0.003545149229466915 +karman_re100,sr,173,69.2,force,front_fx,0.0006922903703525662 +karman_re100,sr,173,69.2,force,front_fy,-0.0035159336403012276 +karman_re100,sr,173,69.2,force,upper_fx,0.005875949747860432 +karman_re100,sr,173,69.2,force,upper_fy,0.006329989060759544 +karman_re100,sr,173,69.2,force,lower_fx,-0.005295220762491226 +karman_re100,sr,173,69.2,force,lower_fy,-0.0023324168287217617 +karman_re100,sr,174,69.6,force,front_fx,0.002954077674075961 +karman_re100,sr,174,69.6,force,front_fy,-0.002728960709646344 +karman_re100,sr,174,69.6,force,upper_fx,0.005378974135965109 +karman_re100,sr,174,69.6,force,upper_fy,0.005811141803860664 +karman_re100,sr,174,69.6,force,lower_fx,-0.007680742535740137 +karman_re100,sr,174,69.6,force,lower_fy,-0.0015684727113693953 +karman_re100,sr,175,70.0,force,front_fx,0.004816774278879166 +karman_re100,sr,175,70.0,force,front_fy,-0.0016651410842314363 +karman_re100,sr,175,70.0,force,upper_fx,0.004154955968260765 +karman_re100,sr,175,70.0,force,upper_fy,0.005051789339631796 +karman_re100,sr,175,70.0,force,lower_fx,-0.009172330610454082 +karman_re100,sr,175,70.0,force,lower_fy,-0.0020141275599598885 +karman_re100,sr,176,70.4,force,front_fx,0.004732249770313501 +karman_re100,sr,176,70.4,force,front_fy,-0.0002877172955777496 +karman_re100,sr,176,70.4,force,upper_fx,0.0031876168213784695 +karman_re100,sr,176,70.4,force,upper_fy,0.004482333082705736 +karman_re100,sr,176,70.4,force,lower_fx,-0.007930951192975044 +karman_re100,sr,176,70.4,force,lower_fy,-0.003637166228145361 +karman_re100,sr,177,70.8,force,front_fx,0.003428318304941058 +karman_re100,sr,177,70.8,force,front_fy,0.0010180961107835174 +karman_re100,sr,177,70.8,force,upper_fx,0.002336804987862706 +karman_re100,sr,177,70.8,force,upper_fy,0.004533004947006702 +karman_re100,sr,177,70.8,force,lower_fx,-0.004701222758740187 +karman_re100,sr,177,70.8,force,lower_fy,-0.004249574150890112 +karman_re100,sr,178,71.2,force,front_fx,0.001398047199472785 +karman_re100,sr,178,71.2,force,front_fy,0.002076050965115428 +karman_re100,sr,178,71.2,force,upper_fx,0.0013656234368681908 +karman_re100,sr,178,71.2,force,upper_fy,0.005026945378631353 +karman_re100,sr,178,71.2,force,lower_fx,-0.001877932227216661 +karman_re100,sr,178,71.2,force,lower_fy,-0.003950438462197781 +karman_re100,sr,179,71.6,force,front_fx,-0.00042304140515625477 +karman_re100,sr,179,71.6,force,front_fy,0.0029640141874551773 +karman_re100,sr,179,71.6,force,upper_fx,0.000172025800566189 +karman_re100,sr,179,71.6,force,upper_fy,0.0052558970637619495 +karman_re100,sr,179,71.6,force,lower_fx,0.00022439606254920363 +karman_re100,sr,179,71.6,force,lower_fy,-0.004477248061448336 +karman_re100,sr,180,72.0,force,front_fx,-0.0011285125510767102 +karman_re100,sr,180,72.0,force,front_fy,0.0035721706226468086 +karman_re100,sr,180,72.0,force,upper_fx,-0.0012645971728488803 +karman_re100,sr,180,72.0,force,upper_fy,0.004703131504356861 +karman_re100,sr,180,72.0,force,lower_fx,0.002401921199634671 +karman_re100,sr,180,72.0,force,lower_fy,-0.005800303071737289 +karman_re100,sr,181,72.4,force,front_fx,-0.0007621424156241119 +karman_re100,sr,181,72.4,force,front_fy,0.0037754105869680643 +karman_re100,sr,181,72.4,force,upper_fx,-0.0030172569677233696 +karman_re100,sr,181,72.4,force,upper_fy,0.0035958250518888235 +karman_re100,sr,181,72.4,force,lower_fx,0.004678772762417793 +karman_re100,sr,181,72.4,force,lower_fy,-0.006599134299904108 +karman_re100,sr,182,72.8,force,front_fx,0.0006242413655854762 +karman_re100,sr,182,72.8,force,front_fy,0.0035356986336410046 +karman_re100,sr,182,72.8,force,upper_fx,-0.005208206363022327 +karman_re100,sr,182,72.8,force,upper_fy,0.0023877331987023354 +karman_re100,sr,182,72.8,force,lower_fx,0.005866710562258959 +karman_re100,sr,182,72.8,force,lower_fy,-0.0063663506880402565 +karman_re100,sr,183,73.2,force,front_fx,0.0028582194354385138 +karman_re100,sr,183,73.2,force,front_fy,0.002765299053862691 +karman_re100,sr,183,73.2,force,upper_fx,-0.007611408364027739 +karman_re100,sr,183,73.2,force,upper_fy,0.0015826288145035505 +karman_re100,sr,183,73.2,force,lower_fx,0.005403416231274605 +karman_re100,sr,183,73.2,force,lower_fy,-0.0058366223238408566 +karman_re100,sr,184,73.6,force,front_fx,0.004779260605573654 +karman_re100,sr,184,73.6,force,front_fy,0.0017051053000614047 +karman_re100,sr,184,73.6,force,upper_fx,-0.009174955077469349 +karman_re100,sr,184,73.6,force,upper_fy,0.0019527957774698734 +karman_re100,sr,184,73.6,force,lower_fx,0.004178858827799559 +karman_re100,sr,184,73.6,force,lower_fy,-0.005070853978395462 +karman_re100,sr,185,74.0,force,front_fx,0.004768576472997665 +karman_re100,sr,185,74.0,force,front_fy,0.00034066871739923954 +karman_re100,sr,185,74.0,force,upper_fx,-0.008040662854909897 +karman_re100,sr,185,74.0,force,upper_fy,0.0035783385392278433 +karman_re100,sr,185,74.0,force,lower_fx,0.0032236380502581596 +karman_re100,sr,185,74.0,force,lower_fy,-0.0044899373315274715 +karman_re100,sr,186,74.4,force,front_fx,0.0034992375876754522 +karman_re100,sr,186,74.4,force,front_fy,-0.0009833619697019458 +karman_re100,sr,186,74.4,force,upper_fx,-0.004802474286407232 +karman_re100,sr,186,74.4,force,upper_fy,0.004277920350432396 +karman_re100,sr,186,74.4,force,lower_fx,0.002379489131271839 +karman_re100,sr,186,74.4,force,lower_fy,-0.004524105694144964 +karman_re100,sr,187,74.8,force,front_fx,0.0014795097522437572 +karman_re100,sr,187,74.8,force,front_fy,-0.002046791836619377 +karman_re100,sr,187,74.8,force,upper_fx,-0.001940133166499436 +karman_re100,sr,187,74.8,force,upper_fy,0.00398830883204937 +karman_re100,sr,187,74.8,force,lower_fx,0.0014116198290139437 +karman_re100,sr,187,74.8,force,lower_fy,-0.005024940241128206 +karman_re100,sr,188,75.2,force,front_fx,-0.0003809717600233853 +karman_re100,sr,188,75.2,force,front_fy,-0.002936738543212414 +karman_re100,sr,188,75.2,force,upper_fx,0.0001645454321987927 +karman_re100,sr,188,75.2,force,upper_fy,0.004458834417164326 +karman_re100,sr,188,75.2,force,lower_fx,0.00021173033746890724 +karman_re100,sr,188,75.2,force,lower_fy,-0.0052765230648219585 +karman_re100,sr,189,75.6,force,front_fx,-0.00113144691567868 +karman_re100,sr,189,75.6,force,front_fy,-0.003551263827830553 +karman_re100,sr,189,75.6,force,upper_fx,0.002313032979145646 +karman_re100,sr,189,75.6,force,upper_fy,0.005742085166275501 +karman_re100,sr,189,75.6,force,lower_fx,-0.0012264495017006993 +karman_re100,sr,189,75.6,force,lower_fy,-0.004732170607894659 +karman_re100,sr,190,76.0,force,front_fx,-0.0007924551609903574 +karman_re100,sr,190,76.0,force,front_fy,-0.003782808780670166 +karman_re100,sr,190,76.0,force,upper_fx,0.004616613499820232 +karman_re100,sr,190,76.0,force,upper_fy,0.006582470610737801 +karman_re100,sr,190,76.0,force,lower_fx,-0.0029690603259950876 +karman_re100,sr,190,76.0,force,lower_fy,-0.003629729151725769 +karman_re100,sr,191,76.4,force,front_fx,0.000568479998037219 +karman_re100,sr,191,76.4,force,front_fy,-0.0035510649904608727 +karman_re100,sr,191,76.4,force,upper_fx,0.005862336605787277 +karman_re100,sr,191,76.4,force,upper_fy,0.00637237960472703 +karman_re100,sr,191,76.4,force,lower_fx,-0.005123710259795189 +karman_re100,sr,191,76.4,force,lower_fy,-0.0024124523624777794 +karman_re100,sr,192,76.8,force,front_fx,0.00279046269133687 +karman_re100,sr,192,76.8,force,front_fy,-0.002798903500661254 +karman_re100,sr,192,76.8,force,upper_fx,0.005453398916870356 +karman_re100,sr,192,76.8,force,upper_fy,0.005861631128937006 +karman_re100,sr,192,76.8,force,lower_fx,-0.007527219131588936 +karman_re100,sr,192,76.8,force,lower_fy,-0.001602708245627582 +karman_re100,sr,193,77.2,force,front_fx,0.004747860599309206 +karman_re100,sr,193,77.2,force,front_fy,-0.0017451102612540126 +karman_re100,sr,193,77.2,force,upper_fx,0.004224021919071674 +karman_re100,sr,193,77.2,force,upper_fy,0.005110033787786961 +karman_re100,sr,193,77.2,force,lower_fx,-0.009152202866971493 +karman_re100,sr,193,77.2,force,lower_fy,-0.0019320499850437045 +karman_re100,sr,194,77.6,force,front_fx,0.004782107658684254 +karman_re100,sr,194,77.6,force,front_fy,-0.0003933733969461173 +karman_re100,sr,194,77.6,force,upper_fx,0.0032387974206358194 +karman_re100,sr,194,77.6,force,upper_fy,0.0044939396902918816 +karman_re100,sr,194,77.6,force,lower_fx,-0.008124799467623234 +karman_re100,sr,194,77.6,force,lower_fy,-0.0035174954682588577 +karman_re100,sr,195,78.0,force,front_fx,0.0035533057525753975 +karman_re100,sr,195,78.0,force,front_fy,0.000936869706492871 +karman_re100,sr,195,78.0,force,upper_fx,0.0023970685433596373 +karman_re100,sr,195,78.0,force,upper_fy,0.004502677824348211 +karman_re100,sr,195,78.0,force,lower_fx,-0.004933987744152546 +karman_re100,sr,195,78.0,force,lower_fy,-0.004249365534633398 +karman_re100,sr,196,78.4,force,front_fx,0.0015342239057645202 +karman_re100,sr,196,78.4,force,front_fy,0.002023308537900448 +karman_re100,sr,196,78.4,force,upper_fx,0.0014233803376555443 +karman_re100,sr,196,78.4,force,upper_fy,0.004972199909389019 +karman_re100,sr,196,78.4,force,lower_fx,-0.002045800443738699 +karman_re100,sr,196,78.4,force,lower_fy,-0.00392556469887495 +karman_re100,sr,197,78.8,force,front_fx,-0.0003239727520849556 +karman_re100,sr,197,78.8,force,front_fy,0.0029145360458642244 +karman_re100,sr,197,78.8,force,upper_fx,0.00027105529443360865 +karman_re100,sr,197,78.8,force,upper_fy,0.005275582894682884 +karman_re100,sr,197,78.8,force,lower_fx,0.00010263636067975312 +karman_re100,sr,197,78.8,force,lower_fy,-0.00443251384422183 +karman_re100,sr,198,79.2,force,front_fx,-0.0011182058369740844 +karman_re100,sr,198,79.2,force,front_fy,0.003539798781275749 +karman_re100,sr,198,79.2,force,upper_fx,-0.0011613968526944518 +karman_re100,sr,198,79.2,force,upper_fy,0.0047712079249322414 +karman_re100,sr,198,79.2,force,lower_fx,0.0022471232805401087 +karman_re100,sr,198,79.2,force,lower_fy,-0.005732443183660507 +karman_re100,sr,199,79.6,force,front_fx,-0.0008200268493965268 +karman_re100,sr,199,79.6,force,front_fy,0.003771465737372637 +karman_re100,sr,199,79.6,force,upper_fx,-0.002898663515225053 +karman_re100,sr,199,79.6,force,upper_fy,0.0036771062295883894 +karman_re100,sr,199,79.6,force,lower_fx,0.00454107066616416 +karman_re100,sr,199,79.6,force,lower_fy,-0.006579733919352293 +karman_re100,sr,0,0.0,alpha,front,1.101687026524554 +karman_re100,sr,0,0.0,alpha,upper,-4.081465116091075 +karman_re100,sr,0,0.0,alpha,lower,2.7809522449301576 +karman_re100,sr,1,0.4,alpha,front,1.6543894486858353 +karman_re100,sr,1,0.4,alpha,upper,-4.372953626474109 +karman_re100,sr,1,0.4,alpha,lower,2.4894637345471233 +karman_re100,sr,2,0.8,alpha,front,2.028912738939382 +karman_re100,sr,2,0.8,alpha,upper,-5.035618402307519 +karman_re100,sr,2,0.8,alpha,lower,1.8267989587137132 +karman_re100,sr,3,1.2,alpha,front,2.4364945267262956 +karman_re100,sr,3,1.2,alpha,upper,-5.902169433590979 +karman_re100,sr,3,1.2,alpha,lower,0.9602479274302538 +karman_re100,sr,4,1.6,alpha,front,2.6946125354659642 +karman_re100,sr,4,1.6,alpha,upper,-5.71432231518951 +karman_re100,sr,4,1.6,alpha,lower,1.148095045831722 +karman_re100,sr,5,2.0,alpha,front,2.5287313063648247 +karman_re100,sr,5,2.0,alpha,upper,-4.191393766364966 +karman_re100,sr,5,2.0,alpha,lower,2.671023594656267 +karman_re100,sr,6,2.4,alpha,front,1.8598039991035098 +karman_re100,sr,6,2.4,alpha,upper,-2.7824634371137944 +karman_re100,sr,6,2.4,alpha,lower,4.079953923907437 +karman_re100,sr,7,2.8,alpha,front,1.0442851806778062 +karman_re100,sr,7,2.8,alpha,upper,-3.0237954697871623 +karman_re100,sr,7,2.8,alpha,lower,3.8386218912340704 +karman_re100,sr,8,3.2,alpha,front,0.400996397385587 +karman_re100,sr,8,3.2,alpha,upper,-3.6348310939241713 +karman_re100,sr,8,3.2,alpha,lower,3.2275862670970605 +karman_re100,sr,9,3.6,alpha,front,-0.16040088328410554 +karman_re100,sr,9,3.6,alpha,upper,-3.1320806262445746 +karman_re100,sr,9,3.6,alpha,lower,3.7303367347766576 +karman_re100,sr,10,4.0,alpha,front,-0.8280348130818692 +karman_re100,sr,10,4.0,alpha,upper,-1.8677941953939436 +karman_re100,sr,10,4.0,alpha,lower,4.994623165627289 +karman_re100,sr,11,4.4,alpha,front,-1.493542314046462 +karman_re100,sr,11,4.4,alpha,upper,-1.0475094561787754 +karman_re100,sr,11,4.4,alpha,lower,5.814907904842457 +karman_re100,sr,12,4.8,alpha,front,-1.9460730895488134 +karman_re100,sr,12,4.8,alpha,upper,-0.922697861808206 +karman_re100,sr,12,4.8,alpha,lower,5.939719499213027 +karman_re100,sr,13,5.2,alpha,front,-2.104859007570825 +karman_re100,sr,13,5.2,alpha,upper,-1.4022646378355867 +karman_re100,sr,13,5.2,alpha,lower,5.4601527231856455 +karman_re100,sr,14,5.6,alpha,front,-1.9263330687744509 +karman_re100,sr,14,5.6,alpha,upper,-2.5535689758941897 +karman_re100,sr,14,5.6,alpha,lower,4.3088483851270425 +karman_re100,sr,15,6.0,alpha,front,-1.3258174717796605 +karman_re100,sr,15,6.0,alpha,upper,-3.3888340965420767 +karman_re100,sr,15,6.0,alpha,lower,3.4735832644791556 +karman_re100,sr,16,6.4,alpha,front,-0.6118002518170496 +karman_re100,sr,16,6.4,alpha,upper,-3.2924947574831034 +karman_re100,sr,16,6.4,alpha,lower,3.5699226035381293 +karman_re100,sr,17,6.8,alpha,front,0.02111746164032076 +karman_re100,sr,17,6.8,alpha,upper,-3.2895058672000923 +karman_re100,sr,17,6.8,alpha,lower,3.5729114938211395 +karman_re100,sr,18,7.2,alpha,front,0.6523019551134431 +karman_re100,sr,18,7.2,alpha,upper,-4.06021509882173 +karman_re100,sr,18,7.2,alpha,lower,2.8022022621995024 +karman_re100,sr,19,7.6,alpha,front,1.34678576880128 +karman_re100,sr,19,7.6,alpha,upper,-5.1739931216089445 +karman_re100,sr,19,7.6,alpha,lower,1.6884242394122873 +karman_re100,sr,20,8.0,alpha,front,1.9831130065314309 +karman_re100,sr,20,8.0,alpha,upper,-5.962169365928196 +karman_re100,sr,20,8.0,alpha,lower,0.9002479950930371 +karman_re100,sr,21,8.4,alpha,front,2.397236661809341 +karman_re100,sr,21,8.4,alpha,upper,-6.211778700298115 +karman_re100,sr,21,8.4,alpha,lower,0.6506386607231169 +karman_re100,sr,22,8.8,alpha,front,2.510533868067995 +karman_re100,sr,22,8.8,alpha,upper,-5.53402910238742 +karman_re100,sr,22,8.8,alpha,lower,1.328388258633812 +karman_re100,sr,23,9.2,alpha,front,2.1927008279622804 +karman_re100,sr,23,9.2,alpha,upper,-4.165899744127751 +karman_re100,sr,23,9.2,alpha,lower,2.696517616893481 +karman_re100,sr,24,9.6,alpha,front,1.4798666852439013 +karman_re100,sr,24,9.6,alpha,upper,-3.674688749706141 +karman_re100,sr,24,9.6,alpha,lower,3.187728611315091 +karman_re100,sr,25,10.0,alpha,front,0.7663763799850327 +karman_re100,sr,25,10.0,alpha,upper,-4.148422530959022 +karman_re100,sr,25,10.0,alpha,lower,2.7139948300622105 +karman_re100,sr,26,10.4,alpha,front,0.1438217069350031 +karman_re100,sr,26,10.4,alpha,upper,-4.073169088156502 +karman_re100,sr,26,10.4,alpha,lower,2.7892482728647305 +karman_re100,sr,27,10.8,alpha,front,-0.5166042028748105 +karman_re100,sr,27,10.8,alpha,upper,-2.9628210118437135 +karman_re100,sr,27,10.8,alpha,lower,3.899596349177519 +karman_re100,sr,28,11.2,alpha,front,-1.2743563644435874 +karman_re100,sr,28,11.2,alpha,upper,-1.6833675461635143 +karman_re100,sr,28,11.2,alpha,lower,5.179049814857718 +karman_re100,sr,29,11.6,alpha,front,-1.962629777395919 +karman_re100,sr,29,11.6,alpha,upper,-0.9449402174467778 +karman_re100,sr,29,11.6,alpha,lower,5.917477143574454 +karman_re100,sr,30,12.0,alpha,front,-2.4156252856729967 +karman_re100,sr,30,12.0,alpha,upper,-0.6077656238824005 +karman_re100,sr,30,12.0,alpha,lower,6.254651737138832 +karman_re100,sr,31,12.4,alpha,front,-2.5877481507735207 +karman_re100,sr,31,12.4,alpha,upper,-1.058137585853118 +karman_re100,sr,31,12.4,alpha,lower,5.804279775168114 +karman_re100,sr,32,12.8,alpha,front,-2.3319977617159307 +karman_re100,sr,32,12.8,alpha,upper,-2.4853334572199124 +karman_re100,sr,32,12.8,alpha,lower,4.37708390380132 +karman_re100,sr,33,13.2,alpha,front,-1.6186601695915486 +karman_re100,sr,33,13.2,alpha,upper,-3.2445927361360494 +karman_re100,sr,33,13.2,alpha,lower,3.6178246248851833 +karman_re100,sr,34,13.6,alpha,front,-0.8698308817375088 +karman_re100,sr,34,13.6,alpha,upper,-2.7615235446155624 +karman_re100,sr,34,13.6,alpha,lower,4.100893816405669 +karman_re100,sr,35,14.0,alpha,front,-0.2346338743818928 +karman_re100,sr,35,14.0,alpha,upper,-2.612347744368324 +karman_re100,sr,35,14.0,alpha,lower,4.250069616652908 +karman_re100,sr,36,14.4,alpha,front,0.4136269102426903 +karman_re100,sr,36,14.4,alpha,upper,-3.6269712503142126 +karman_re100,sr,36,14.4,alpha,lower,3.235446110707019 +karman_re100,sr,37,14.8,alpha,front,1.1767441890306596 +karman_re100,sr,37,14.8,alpha,upper,-5.036417236217205 +karman_re100,sr,37,14.8,alpha,lower,1.8260001248040274 +karman_re100,sr,38,15.2,alpha,front,1.8989225374276404 +karman_re100,sr,38,15.2,alpha,upper,-5.870277889013586 +karman_re100,sr,38,15.2,alpha,lower,0.9921394720076467 +karman_re100,sr,39,15.6,alpha,front,2.3863009894662404 +karman_re100,sr,39,15.6,alpha,upper,-6.2353237474457845 +karman_re100,sr,39,15.6,alpha,lower,0.6270936135754481 +karman_re100,sr,40,16.0,alpha,front,2.5879898633201543 +karman_re100,sr,40,16.0,alpha,upper,-5.938909551357199 +karman_re100,sr,40,16.0,alpha,lower,0.9235078096640339 +karman_re100,sr,41,16.4,alpha,front,2.4022300416485387 +karman_re100,sr,41,16.4,alpha,upper,-4.576923769380655 +karman_re100,sr,41,16.4,alpha,lower,2.285493591640577 +karman_re100,sr,42,16.8,alpha,front,1.7147750503295829 +karman_re100,sr,42,16.8,alpha,upper,-3.584369515556032 +karman_re100,sr,42,16.8,alpha,lower,3.2780478454652013 +karman_re100,sr,43,17.2,alpha,front,0.937619707118522 +karman_re100,sr,43,17.2,alpha,upper,-3.9494242803697275 +karman_re100,sr,43,17.2,alpha,lower,2.912993080651505 +karman_re100,sr,44,17.6,alpha,front,0.2840844363797826 +karman_re100,sr,44,17.6,alpha,upper,-4.240845954830072 +karman_re100,sr,44,17.6,alpha,lower,2.62157140619116 +karman_re100,sr,45,18.0,alpha,front,-0.35514552750048933 +karman_re100,sr,45,18.0,alpha,upper,-3.388339906553351 +karman_re100,sr,45,18.0,alpha,lower,3.474077454467881 +karman_re100,sr,46,18.4,alpha,front,-1.1074025692166163 +karman_re100,sr,46,18.4,alpha,upper,-1.9807622815689159 +karman_re100,sr,46,18.4,alpha,lower,4.881655079452316 +karman_re100,sr,47,18.8,alpha,front,-1.8408025691104202 +karman_re100,sr,47,18.8,alpha,upper,-1.0526005569868375 +karman_re100,sr,47,18.8,alpha,lower,5.809816804034394 +karman_re100,sr,48,19.2,alpha,front,-2.3516758003604066 +karman_re100,sr,48,19.2,alpha,upper,-0.6513381542237937 +karman_re100,sr,48,19.2,alpha,lower,6.2110792067974385 +karman_re100,sr,49,19.6,alpha,front,-2.5662907010835943 +karman_re100,sr,49,19.6,alpha,upper,-0.8743063700933917 +karman_re100,sr,49,19.6,alpha,lower,5.98811099092784 +karman_re100,sr,50,20.0,alpha,front,-2.416975616988347 +karman_re100,sr,50,20.0,alpha,upper,-2.164596237753718 +karman_re100,sr,50,20.0,alpha,lower,4.697821123267515 +karman_re100,sr,51,20.4,alpha,front,-1.762883306277149 +karman_re100,sr,51,20.4,alpha,upper,-3.239602422072453 +karman_re100,sr,51,20.4,alpha,lower,3.622814938948779 +karman_re100,sr,52,20.8,alpha,front,-0.9812384544310546 +karman_re100,sr,52,20.8,alpha,upper,-2.977355921955726 +karman_re100,sr,52,20.8,alpha,lower,3.885061439065506 +karman_re100,sr,53,21.2,alpha,front,-0.31604397210234847 +karman_re100,sr,53,21.2,alpha,upper,-2.6561936321110595 +karman_re100,sr,53,21.2,alpha,lower,4.206223728910173 +karman_re100,sr,54,21.6,alpha,front,0.3221983902318223 +karman_re100,sr,54,21.6,alpha,upper,-3.425086875382261 +karman_re100,sr,54,21.6,alpha,lower,3.437330485638971 +karman_re100,sr,55,22.0,alpha,front,1.0679797146186751 +karman_re100,sr,55,22.0,alpha,upper,-4.807842643502317 +karman_re100,sr,55,22.0,alpha,lower,2.0545747175189146 +karman_re100,sr,56,22.4,alpha,front,1.8128844147757952 +karman_re100,sr,56,22.4,alpha,upper,-5.7597554799732045 +karman_re100,sr,56,22.4,alpha,lower,1.1026618810480282 +karman_re100,sr,57,22.8,alpha,front,2.3301655149007345 +karman_re100,sr,57,22.8,alpha,upper,-6.18934862554183 +karman_re100,sr,57,22.8,alpha,lower,0.6730687354794025 +karman_re100,sr,58,23.2,alpha,front,2.5618533844211115 +karman_re100,sr,58,23.2,alpha,upper,-6.021157624674814 +karman_re100,sr,58,23.2,alpha,lower,0.8412597363464182 +karman_re100,sr,59,23.6,alpha,front,2.437984539832922 +karman_re100,sr,59,23.6,alpha,upper,-4.76794616503177 +karman_re100,sr,59,23.6,alpha,lower,2.094471195989463 +karman_re100,sr,60,24.0,alpha,front,1.7979546246387825 +karman_re100,sr,60,24.0,alpha,upper,-3.610062218611264 +karman_re100,sr,60,24.0,alpha,lower,3.252355142409969 +karman_re100,sr,61,24.4,alpha,front,1.0114856672158048 +karman_re100,sr,61,24.4,alpha,upper,-3.834180271169046 +karman_re100,sr,61,24.4,alpha,lower,3.0282370898521864 +karman_re100,sr,62,24.8,alpha,front,0.34189500464534645 +karman_re100,sr,62,24.8,alpha,upper,-4.216088041217469 +karman_re100,sr,62,24.8,alpha,lower,2.6463293198037636 +karman_re100,sr,63,25.2,alpha,front,-0.2897818972506443 +karman_re100,sr,63,25.2,alpha,upper,-3.5076912039597716 +karman_re100,sr,63,25.2,alpha,lower,3.3547261570614606 +karman_re100,sr,64,25.6,alpha,front,-1.029989153378899 +karman_re100,sr,64,25.6,alpha,upper,-2.1126291002979305 +karman_re100,sr,64,25.6,alpha,lower,4.749788260723301 +karman_re100,sr,65,26.0,alpha,front,-1.7727226585979357 +karman_re100,sr,65,26.0,alpha,upper,-1.1227732516982494 +karman_re100,sr,65,26.0,alpha,lower,5.739644109322983 +karman_re100,sr,66,26.4,alpha,front,-2.307154693580294 +karman_re100,sr,66,26.4,alpha,upper,-0.6889254439531252 +karman_re100,sr,66,26.4,alpha,lower,6.173491917068107 +karman_re100,sr,67,26.8,alpha,front,-2.5497847178155215 +karman_re100,sr,67,26.8,alpha,upper,-0.8180568617186696 +karman_re100,sr,67,26.8,alpha,lower,6.044360499302563 +karman_re100,sr,68,27.2,alpha,front,-2.4388888306920853 +karman_re100,sr,68,27.2,alpha,upper,-2.0146814362109553 +karman_re100,sr,68,27.2,alpha,lower,4.8477359248102765 +karman_re100,sr,69,27.6,alpha,front,-1.8249689765121158 +karman_re100,sr,69,27.6,alpha,upper,-3.217988993988848 +karman_re100,sr,69,27.6,alpha,lower,3.644428367032384 +karman_re100,sr,70,28.0,alpha,front,-1.0322666858535707 +karman_re100,sr,70,28.0,alpha,upper,-3.0802244760043695 +karman_re100,sr,70,28.0,alpha,lower,3.7821928850168627 +karman_re100,sr,71,28.4,alpha,front,-0.3542537240869066 +karman_re100,sr,71,28.4,alpha,upper,-2.6875903777163774 +karman_re100,sr,71,28.4,alpha,lower,4.174826983304855 +karman_re100,sr,72,28.8,alpha,front,0.2794863036181254 +karman_re100,sr,72,28.8,alpha,upper,-3.3319069419443674 +karman_re100,sr,72,28.8,alpha,lower,3.530510419076865 +karman_re100,sr,73,29.2,alpha,front,1.0154149612922145 +karman_re100,sr,73,29.2,alpha,upper,-4.695730026688604 +karman_re100,sr,73,29.2,alpha,lower,2.166687334332628 +karman_re100,sr,74,29.6,alpha,front,1.758715851638626 +karman_re100,sr,74,29.6,alpha,upper,-5.709638433935466 +karman_re100,sr,74,29.6,alpha,lower,1.152778927085766 +karman_re100,sr,75,30.0,alpha,front,2.302316890663102 +karman_re100,sr,75,30.0,alpha,upper,-6.171056288158795 +karman_re100,sr,75,30.0,alpha,lower,0.6913610728624371 +karman_re100,sr,76,30.4,alpha,front,2.5524739252961424 +karman_re100,sr,76,30.4,alpha,upper,-6.0556983229486985 +karman_re100,sr,76,30.4,alpha,lower,0.8067190380725333 +karman_re100,sr,77,30.8,alpha,front,2.4542062311399198 +karman_re100,sr,77,30.8,alpha,upper,-4.873291454365866 +karman_re100,sr,77,30.8,alpha,lower,1.9891259066553664 +karman_re100,sr,78,31.2,alpha,front,1.8491662050622766 +karman_re100,sr,78,31.2,alpha,upper,-3.6643804885365157 +karman_re100,sr,78,31.2,alpha,lower,3.198036872484716 +karman_re100,sr,79,31.6,alpha,front,1.0612573619142207 +karman_re100,sr,79,31.6,alpha,upper,-3.801744904459883 +karman_re100,sr,79,31.6,alpha,lower,3.06067245656135 +karman_re100,sr,80,32.0,alpha,front,0.38388550005368766 +karman_re100,sr,80,32.0,alpha,upper,-4.205057221302775 +karman_re100,sr,80,32.0,alpha,lower,2.657360139718457 +karman_re100,sr,81,32.4,alpha,front,-0.24891015486685525 +karman_re100,sr,81,32.4,alpha,upper,-3.5648771764813354 +karman_re100,sr,81,32.4,alpha,lower,3.297540184539897 +karman_re100,sr,82,32.8,alpha,front,-0.9831066872894257 +karman_re100,sr,82,32.8,alpha,upper,-2.190672752565443 +karman_re100,sr,82,32.8,alpha,lower,4.671744608455789 +karman_re100,sr,83,33.2,alpha,front,-1.7327485804021883 +karman_re100,sr,83,33.2,alpha,upper,-1.1704983633820563 +karman_re100,sr,83,33.2,alpha,lower,5.691918997639176 +karman_re100,sr,84,33.6,alpha,front,-2.2819921688368265 +karman_re100,sr,84,33.6,alpha,upper,-0.7087003513023356 +karman_re100,sr,84,33.6,alpha,lower,6.153717009718896 +karman_re100,sr,85,34.0,alpha,front,-2.5413182075119845 +karman_re100,sr,85,34.0,alpha,upper,-0.7837277851589954 +karman_re100,sr,85,34.0,alpha,lower,6.078689575862237 +karman_re100,sr,86,34.4,alpha,front,-2.4604679358518458 +karman_re100,sr,86,34.4,alpha,upper,-1.9301408450713362 +karman_re100,sr,86,34.4,alpha,lower,4.932276515949896 +karman_re100,sr,87,34.8,alpha,front,-1.8698938107328122 +karman_re100,sr,87,34.8,alpha,upper,-3.1852232538121754 +karman_re100,sr,87,34.8,alpha,lower,3.6771941072090564 +karman_re100,sr,88,35.2,alpha,front,-1.0787313941636034 +karman_re100,sr,88,35.2,alpha,upper,-3.1069350947295393 +karman_re100,sr,88,35.2,alpha,lower,3.755482266291693 +karman_re100,sr,89,35.6,alpha,front,-0.39552444313198304 +karman_re100,sr,89,35.6,alpha,upper,-2.6680009057973173 +karman_re100,sr,89,35.6,alpha,lower,4.194416455223915 +karman_re100,sr,90,36.0,alpha,front,0.23390874229196804 +karman_re100,sr,90,36.0,alpha,upper,-3.2511396116428766 +karman_re100,sr,90,36.0,alpha,lower,3.611277749378355 +karman_re100,sr,91,36.4,alpha,front,0.9620224623730118 +karman_re100,sr,91,36.4,alpha,upper,-4.614904842968841 +karman_re100,sr,91,36.4,alpha,lower,2.247512518052392 +karman_re100,sr,92,36.8,alpha,front,1.7129474210942637 +karman_re100,sr,92,36.8,alpha,upper,-5.6740255443505525 +karman_re100,sr,92,36.8,alpha,lower,1.1883918166706793 +karman_re100,sr,93,37.2,alpha,front,2.2742480433851866 +karman_re100,sr,93,37.2,alpha,upper,-6.155967050952221 +karman_re100,sr,93,37.2,alpha,lower,0.7064503100690116 +karman_re100,sr,94,37.6,alpha,front,2.5431884161617453 +karman_re100,sr,94,37.6,alpha,upper,-6.096143723786575 +karman_re100,sr,94,37.6,alpha,lower,0.7662736372346566 +karman_re100,sr,95,38.0,alpha,front,2.475464236899009 +karman_re100,sr,95,38.0,alpha,upper,-4.979849534041979 +karman_re100,sr,95,38.0,alpha,lower,1.882567826979253 +karman_re100,sr,96,38.4,alpha,front,1.8998904088097237 +karman_re100,sr,96,38.4,alpha,upper,-3.711020696381859 +karman_re100,sr,96,38.4,alpha,lower,3.1513966646393743 +karman_re100,sr,97,38.8,alpha,front,1.108697178774798 +karman_re100,sr,97,38.8,alpha,upper,-3.750744680318449 +karman_re100,sr,97,38.8,alpha,lower,3.1116726807027835 +karman_re100,sr,98,39.2,alpha,front,0.4209067469176684 +karman_re100,sr,98,39.2,alpha,upper,-4.186529816346545 +karman_re100,sr,98,39.2,alpha,lower,2.675887544674687 +karman_re100,sr,99,39.6,alpha,front,-0.20958776870607954 +karman_re100,sr,99,39.6,alpha,upper,-3.6355195496016255 +karman_re100,sr,99,39.6,alpha,lower,3.2268978114196067 +karman_re100,sr,100,40.0,alpha,front,-0.9357158212155243 +karman_re100,sr,100,40.0,alpha,upper,-2.285763066773061 +karman_re100,sr,100,40.0,alpha,lower,4.576654294248171 +karman_re100,sr,101,40.4,alpha,front,-1.6899517845076486 +karman_re100,sr,101,40.4,alpha,upper,-1.2211665393517674 +karman_re100,sr,101,40.4,alpha,lower,5.641250821669464 +karman_re100,sr,102,40.8,alpha,front,-2.2574899580157575 +karman_re100,sr,102,40.8,alpha,upper,-0.72315959523308 +karman_re100,sr,102,40.8,alpha,lower,6.139257765788152 +karman_re100,sr,103,41.2,alpha,front,-2.5364392903739663 +karman_re100,sr,103,41.2,alpha,upper,-0.7532707769860267 +karman_re100,sr,103,41.2,alpha,lower,6.109146584035205 +karman_re100,sr,104,41.6,alpha,front,-2.4815167741224724 +karman_re100,sr,104,41.6,alpha,upper,-1.8384478967289066 +karman_re100,sr,104,41.6,alpha,lower,5.023969464292326 +karman_re100,sr,105,42.0,alpha,front,-1.9207909517266113 +karman_re100,sr,105,42.0,alpha,upper,-3.1364415560156913 +karman_re100,sr,105,42.0,alpha,lower,3.725975805005541 +karman_re100,sr,106,42.4,alpha,front,-1.1322653952661494 +karman_re100,sr,106,42.4,alpha,upper,-3.12031750385121 +karman_re100,sr,106,42.4,alpha,lower,3.7420998571700217 +karman_re100,sr,107,42.8,alpha,front,-0.44239802926015453 +karman_re100,sr,107,42.8,alpha,upper,-2.6597826754857383 +karman_re100,sr,107,42.8,alpha,lower,4.202634685535494 +karman_re100,sr,108,43.2,alpha,front,0.18544654773684163 +karman_re100,sr,108,43.2,alpha,upper,-3.182477652377589 +karman_re100,sr,108,43.2,alpha,lower,3.679939708643643 +karman_re100,sr,109,43.6,alpha,front,0.9077704719994129 +karman_re100,sr,109,43.6,alpha,upper,-4.536799074399602 +karman_re100,sr,109,43.6,alpha,lower,2.32561828662163 +karman_re100,sr,110,44.0,alpha,front,1.6647678146576381 +karman_re100,sr,110,44.0,alpha,upper,-5.626599747983392 +karman_re100,sr,110,44.0,alpha,lower,1.23581761303784 +karman_re100,sr,111,44.4,alpha,front,2.242136593724651 +karman_re100,sr,111,44.4,alpha,upper,-6.130495104361453 +karman_re100,sr,111,44.4,alpha,lower,0.7319222566597792 +karman_re100,sr,112,44.8,alpha,front,2.531623776159642 +karman_re100,sr,112,44.8,alpha,upper,-6.131349508001849 +karman_re100,sr,112,44.8,alpha,lower,0.7310678530193835 +karman_re100,sr,113,45.2,alpha,front,2.4964539790271725 +karman_re100,sr,113,45.2,alpha,upper,-5.084062875573805 +karman_re100,sr,113,45.2,alpha,lower,1.7783544854474278 +karman_re100,sr,114,45.6,alpha,front,1.9493358537299137 +karman_re100,sr,114,45.6,alpha,upper,-3.7467567528493584 +karman_re100,sr,114,45.6,alpha,lower,3.115660608171874 +karman_re100,sr,115,46.0,alpha,front,1.1554250891378142 +karman_re100,sr,115,46.0,alpha,upper,-3.70386635998316 +karman_re100,sr,115,46.0,alpha,lower,3.158551001038072 +karman_re100,sr,116,46.4,alpha,front,0.4614325593089963 +karman_re100,sr,116,46.4,alpha,upper,-4.1840101477349 +karman_re100,sr,116,46.4,alpha,lower,2.6784072132863326 +karman_re100,sr,117,46.8,alpha,front,-0.16625251693309304 +karman_re100,sr,117,46.8,alpha,upper,-3.7194036566896784 +karman_re100,sr,117,46.8,alpha,lower,3.1430137043315534 +karman_re100,sr,118,47.2,alpha,front,-0.8835010937636754 +karman_re100,sr,118,47.2,alpha,upper,-2.3828749012118227 +karman_re100,sr,118,47.2,alpha,lower,4.47954245980941 +karman_re100,sr,119,47.6,alpha,front,-1.6417954879694403 +karman_re100,sr,119,47.6,alpha,upper,-1.267264599769553 +karman_re100,sr,119,47.6,alpha,lower,5.595152761251679 +karman_re100,sr,120,48.0,alpha,front,-2.228581776795601 +karman_re100,sr,120,48.0,alpha,upper,-0.7390598460163456 +karman_re100,sr,120,48.0,alpha,lower,6.123357515004887 +karman_re100,sr,121,48.4,alpha,front,-2.5301463281982577 +karman_re100,sr,121,48.4,alpha,upper,-0.7167399972464548 +karman_re100,sr,121,48.4,alpha,lower,6.1456773637747775 +karman_re100,sr,122,48.8,alpha,front,-2.5005752578669256 +karman_re100,sr,122,48.8,alpha,upper,-1.7334294792080551 +karman_re100,sr,122,48.8,alpha,lower,5.1289878818131776 +karman_re100,sr,123,49.2,alpha,front,-1.9738294065887136 +karman_re100,sr,123,49.2,alpha,upper,-3.07730607554415 +karman_re100,sr,123,49.2,alpha,lower,3.785111285477082 +karman_re100,sr,124,49.6,alpha,front,-1.184359910241876 +karman_re100,sr,124,49.6,alpha,upper,-3.158269955221933 +karman_re100,sr,124,49.6,alpha,lower,3.704147405799299 +karman_re100,sr,125,50.0,alpha,front,-0.4854739667382147 +karman_re100,sr,125,50.0,alpha,upper,-2.6799208414033706 +karman_re100,sr,125,50.0,alpha,lower,4.182496519617862 +karman_re100,sr,126,50.4,alpha,front,0.14262033142051403 +karman_re100,sr,126,50.4,alpha,upper,-3.119455183427261 +karman_re100,sr,126,50.4,alpha,lower,3.742962177593972 +karman_re100,sr,127,50.8,alpha,front,0.8575959156566402 +karman_re100,sr,127,50.8,alpha,upper,-4.441999245250052 +karman_re100,sr,127,50.8,alpha,lower,2.42041811577118 +karman_re100,sr,128,51.2,alpha,front,1.6184050927031561 +karman_re100,sr,128,51.2,alpha,upper,-5.568332830015141 +karman_re100,sr,128,51.2,alpha,lower,1.2940845310060918 +karman_re100,sr,129,51.6,alpha,front,2.21329066103322 +karman_re100,sr,129,51.6,alpha,upper,-6.1070664491566 +karman_re100,sr,129,51.6,alpha,lower,0.7553509118646322 +karman_re100,sr,130,52.0,alpha,front,2.521944618340739 +karman_re100,sr,130,52.0,alpha,upper,-6.1562255643844 +karman_re100,sr,130,52.0,alpha,lower,0.7061917966368321 +karman_re100,sr,131,52.4,alpha,front,2.509955427388799 +karman_re100,sr,131,52.4,alpha,upper,-5.176104010146737 +karman_re100,sr,131,52.4,alpha,lower,1.6863133508744952 +karman_re100,sr,132,52.8,alpha,front,2.0011049181239313 +karman_re100,sr,132,52.8,alpha,upper,-3.8041631773437117 +karman_re100,sr,132,52.8,alpha,lower,3.05825418367752 +karman_re100,sr,133,53.2,alpha,front,1.2075694206964436 +karman_re100,sr,133,53.2,alpha,upper,-3.6830537450051297 +karman_re100,sr,133,53.2,alpha,lower,3.179363616016102 +karman_re100,sr,134,53.6,alpha,front,0.5064246592365538 +karman_re100,sr,134,53.6,alpha,upper,-4.185023800521385 +karman_re100,sr,134,53.6,alpha,lower,2.677393560499847 +karman_re100,sr,135,54.0,alpha,front,-0.1191955526665708 +karman_re100,sr,135,54.0,alpha,upper,-3.7925833589387716 +karman_re100,sr,135,54.0,alpha,lower,3.0698340020824606 +karman_re100,sr,136,54.4,alpha,front,-0.8282808768095405 +karman_re100,sr,136,54.4,alpha,upper,-2.472190226309051 +karman_re100,sr,136,54.4,alpha,lower,4.390227134712181 +karman_re100,sr,137,54.8,alpha,front,-1.592663949681267 +karman_re100,sr,137,54.8,alpha,upper,-1.31509521781879 +karman_re100,sr,137,54.8,alpha,lower,5.547322143202442 +karman_re100,sr,138,55.2,alpha,front,-2.1958980136291677 +karman_re100,sr,138,55.2,alpha,upper,-0.7637892896573253 +karman_re100,sr,138,55.2,alpha,lower,6.0986280713639065 +karman_re100,sr,139,55.6,alpha,front,-2.514699724313483 +karman_re100,sr,139,55.6,alpha,upper,-0.6929304229560227 +karman_re100,sr,139,55.6,alpha,lower,6.1694869380652095 +karman_re100,sr,140,56.0,alpha,front,-2.5166794228860945 +karman_re100,sr,140,56.0,alpha,upper,-1.6276690154749276 +karman_re100,sr,140,56.0,alpha,lower,5.234748345546304 +karman_re100,sr,141,56.4,alpha,front,-2.0251396877820764 +karman_re100,sr,141,56.4,alpha,upper,-3.015720198317054 +karman_re100,sr,141,56.4,alpha,lower,3.846697162704178 +karman_re100,sr,142,56.8,alpha,front,-1.2352771643480236 +karman_re100,sr,142,56.8,alpha,upper,-3.2031815638276004 +karman_re100,sr,142,56.8,alpha,lower,3.6592357971936322 +karman_re100,sr,143,57.2,alpha,front,-0.5262340547085859 +karman_re100,sr,143,57.2,alpha,upper,-2.7033810114965986 +karman_re100,sr,143,57.2,alpha,lower,4.159036349524634 +karman_re100,sr,144,57.6,alpha,front,0.1013952836467178 +karman_re100,sr,144,57.6,alpha,upper,-3.0500493509996467 +karman_re100,sr,144,57.6,alpha,lower,3.8123680100215855 +karman_re100,sr,145,58.0,alpha,front,0.8078303925313289 +karman_re100,sr,145,58.0,alpha,upper,-4.338512573100909 +karman_re100,sr,145,58.0,alpha,lower,2.523904787920324 +karman_re100,sr,146,58.4,alpha,front,1.5708211096708449 +karman_re100,sr,146,58.4,alpha,upper,-5.509225667269385 +karman_re100,sr,146,58.4,alpha,lower,1.3531916937518464 +karman_re100,sr,147,58.8,alpha,front,2.182943215685276 +karman_re100,sr,147,58.8,alpha,upper,-6.086444293721359 +karman_re100,sr,147,58.8,alpha,lower,0.7759730672998728 +karman_re100,sr,148,59.2,alpha,front,2.515781569998875 +karman_re100,sr,148,59.2,alpha,upper,-6.1844635133519885 +karman_re100,sr,148,59.2,alpha,lower,0.6779538476692437 +karman_re100,sr,149,59.6,alpha,front,2.528932082289857 +karman_re100,sr,149,59.6,alpha,upper,-5.2753174461272 +karman_re100,sr,149,59.6,alpha,lower,1.587099914894032 +karman_re100,sr,150,60.0,alpha,front,2.0499812019244854 +karman_re100,sr,150,60.0,alpha,upper,-3.8738234125658915 +karman_re100,sr,150,60.0,alpha,lower,2.9885939484553408 +karman_re100,sr,151,60.4,alpha,front,1.2639704949044845 +karman_re100,sr,151,60.4,alpha,upper,-3.65925589364419 +karman_re100,sr,151,60.4,alpha,lower,3.203161467377042 +karman_re100,sr,152,60.8,alpha,front,0.5536671855569095 +karman_re100,sr,152,60.8,alpha,upper,-4.170554965102874 +karman_re100,sr,152,60.8,alpha,lower,2.6918623959183576 +karman_re100,sr,153,61.2,alpha,front,-0.07298940385475396 +karman_re100,sr,153,61.2,alpha,upper,-3.8500741276271335 +karman_re100,sr,153,61.2,alpha,lower,3.0123432333940983 +karman_re100,sr,154,61.6,alpha,front,-0.7756079433545215 +karman_re100,sr,154,61.6,alpha,upper,-2.56270311716454 +karman_re100,sr,154,61.6,alpha,lower,4.299714243856693 +karman_re100,sr,155,62.0,alpha,front,-1.542309907120683 +karman_re100,sr,155,62.0,alpha,upper,-1.375558586485544 +karman_re100,sr,155,62.0,alpha,lower,5.486858774535689 +karman_re100,sr,156,62.4,alpha,front,-2.162187993335092 +karman_re100,sr,156,62.4,alpha,upper,-0.7924801699916592 +karman_re100,sr,156,62.4,alpha,lower,6.069937191029573 +karman_re100,sr,157,62.8,alpha,front,-2.501812769273937 +karman_re100,sr,157,62.8,alpha,upper,-0.6740421953647715 +karman_re100,sr,157,62.8,alpha,lower,6.188375165656461 +karman_re100,sr,158,63.2,alpha,front,-2.5291789452140456 +karman_re100,sr,158,63.2,alpha,upper,-1.533448024999787 +karman_re100,sr,158,63.2,alpha,lower,5.328969336021445 +karman_re100,sr,159,63.6,alpha,front,-2.0724702367188357 +karman_re100,sr,159,63.6,alpha,upper,-2.9535455864361064 +karman_re100,sr,159,63.6,alpha,lower,3.908871774585126 +karman_re100,sr,160,64.0,alpha,front,-1.2889863670870532 +karman_re100,sr,160,64.0,alpha,upper,-3.2341900825471357 +karman_re100,sr,160,64.0,alpha,lower,3.6282272784740965 +karman_re100,sr,161,64.4,alpha,front,-0.5710048438006006 +karman_re100,sr,161,64.4,alpha,upper,-2.7153052099861035 +karman_re100,sr,161,64.4,alpha,lower,4.147112151035128 +karman_re100,sr,162,64.8,alpha,front,0.05625046035190566 +karman_re100,sr,162,64.8,alpha,upper,-2.9774308269078067 +karman_re100,sr,162,64.8,alpha,lower,3.8849865341134255 +karman_re100,sr,163,65.2,alpha,front,0.7523942815180455 +karman_re100,sr,163,65.2,alpha,upper,-4.237303194190012 +karman_re100,sr,163,65.2,alpha,lower,2.6251141668312203 +karman_re100,sr,164,65.6,alpha,front,1.5185579642299982 +karman_re100,sr,164,65.6,alpha,upper,-5.4555975277258 +karman_re100,sr,164,65.6,alpha,lower,1.4068198332954318 +karman_re100,sr,165,66.0,alpha,front,2.148139006559599 +karman_re100,sr,165,66.0,alpha,upper,-6.06374154667 +karman_re100,sr,165,66.0,alpha,lower,0.7986758143512317 +karman_re100,sr,166,66.4,alpha,front,2.497800003561291 +karman_re100,sr,166,66.4,alpha,upper,-6.1998216167076965 +karman_re100,sr,166,66.4,alpha,lower,0.6625957443135353 +karman_re100,sr,167,66.8,alpha,front,2.537257578807922 +karman_re100,sr,167,66.8,alpha,upper,-5.375659784993183 +karman_re100,sr,167,66.8,alpha,lower,1.4867575760280494 +karman_re100,sr,168,67.2,alpha,front,2.099333318451394 +karman_re100,sr,168,67.2,alpha,upper,-3.9520570676386813 +karman_re100,sr,168,67.2,alpha,lower,2.910360293382551 +karman_re100,sr,169,67.6,alpha,front,1.3173494962825087 +karman_re100,sr,169,67.6,alpha,upper,-3.6247642946529193 +karman_re100,sr,169,67.6,alpha,lower,3.2376530663683134 +karman_re100,sr,170,68.0,alpha,front,0.5958725982286561 +karman_re100,sr,170,68.0,alpha,upper,-4.1357177680603385 +karman_re100,sr,170,68.0,alpha,lower,2.726699592960894 +karman_re100,sr,171,68.4,alpha,front,-0.03308892250077687 +karman_re100,sr,171,68.4,alpha,upper,-3.9043683427100517 +karman_re100,sr,171,68.4,alpha,lower,2.9580490183111805 +karman_re100,sr,172,68.8,alpha,front,-0.7267995912579257 +karman_re100,sr,172,68.8,alpha,upper,-2.666725999153576 +karman_re100,sr,172,68.8,alpha,lower,4.195691361867656 +karman_re100,sr,173,69.2,alpha,front,-1.4943467941405937 +karman_re100,sr,173,69.2,alpha,upper,-1.4421761886440534 +karman_re100,sr,173,69.2,alpha,lower,5.420241172377179 +karman_re100,sr,174,69.6,alpha,front,-2.1302943691252882 +karman_re100,sr,174,69.6,alpha,upper,-0.8172326027541109 +karman_re100,sr,174,69.6,alpha,lower,6.045184758267121 +karman_re100,sr,175,70.0,alpha,front,-2.4904320332703933 +karman_re100,sr,175,70.0,alpha,upper,-0.6569659977321796 +karman_re100,sr,175,70.0,alpha,lower,6.205451363289052 +karman_re100,sr,176,70.4,alpha,front,-2.5414564685094527 +karman_re100,sr,176,70.4,alpha,upper,-1.4449093059199605 +karman_re100,sr,176,70.4,alpha,lower,5.417508055101272 +karman_re100,sr,177,70.8,alpha,front,-2.1202632984399967 +karman_re100,sr,177,70.8,alpha,upper,-2.878561771011908 +karman_re100,sr,177,70.8,alpha,lower,3.983855590009324 +karman_re100,sr,178,71.2,alpha,front,-1.342121746726764 +karman_re100,sr,178,71.2,alpha,upper,-3.2458758640550194 +karman_re100,sr,178,71.2,alpha,lower,3.616541496966213 +karman_re100,sr,179,71.6,alpha,front,-0.6185321726798065 +karman_re100,sr,179,71.6,alpha,upper,-2.7272906113023083 +karman_re100,sr,179,71.6,alpha,lower,4.135126749718924 +karman_re100,sr,180,72.0,alpha,front,0.009986784653287 +karman_re100,sr,180,72.0,alpha,upper,-2.9220571888365767 +karman_re100,sr,180,72.0,alpha,lower,3.940360172184656 +karman_re100,sr,181,72.4,alpha,front,0.6991893495814389 +karman_re100,sr,181,72.4,alpha,upper,-4.148639176785872 +karman_re100,sr,181,72.4,alpha,lower,2.71377818423536 +karman_re100,sr,182,72.8,alpha,front,1.4675999067016692 +karman_re100,sr,182,72.8,alpha,upper,-5.39504524748991 +karman_re100,sr,182,72.8,alpha,lower,1.467372113531322 +karman_re100,sr,183,73.2,alpha,front,2.1119392227157396 +karman_re100,sr,183,73.2,alpha,upper,-6.0327904246312265 +karman_re100,sr,183,73.2,alpha,lower,0.8296269363900061 +karman_re100,sr,184,73.6,alpha,front,2.4818713065774447 +karman_re100,sr,184,73.6,alpha,upper,-6.212856296336377 +karman_re100,sr,184,73.6,alpha,lower,0.6495610646848551 +karman_re100,sr,185,74.0,alpha,front,2.5465151160642185 +karman_re100,sr,185,74.0,alpha,upper,-5.470078542811317 +karman_re100,sr,185,74.0,alpha,lower,1.392338818209916 +karman_re100,sr,186,74.4,alpha,front,2.1480539365303284 +karman_re100,sr,186,74.4,alpha,upper,-4.027294829119932 +karman_re100,sr,186,74.4,alpha,lower,2.8351225319013 +karman_re100,sr,187,74.8,alpha,front,1.369569662710655 +karman_re100,sr,187,74.8,alpha,upper,-3.592187034823148 +karman_re100,sr,187,74.8,alpha,lower,3.2702303261980843 +karman_re100,sr,188,75.2,alpha,front,0.6391649403636399 +karman_re100,sr,188,75.2,alpha,upper,-4.109052518594762 +karman_re100,sr,188,75.2,alpha,lower,2.7533648424264703 +karman_re100,sr,189,75.6,alpha,front,0.008997959337518959 +karman_re100,sr,189,75.6,alpha,upper,-3.9658878407519715 +karman_re100,sr,189,75.6,alpha,lower,2.896529520269261 +karman_re100,sr,190,76.0,alpha,front,-0.6749641491531776 +karman_re100,sr,190,76.0,alpha,upper,-2.770834747794997 +karman_re100,sr,190,76.0,alpha,lower,4.091582613226236 +karman_re100,sr,191,76.4,alpha,front,-1.4465555084116932 +karman_re100,sr,191,76.4,alpha,upper,-1.5004379302538282 +karman_re100,sr,191,76.4,alpha,lower,5.361979430767404 +karman_re100,sr,192,76.8,alpha,front,-2.094992082970196 +karman_re100,sr,192,76.8,alpha,upper,-0.8418483187544314 +karman_re100,sr,192,76.8,alpha,lower,6.020569042266801 +karman_re100,sr,193,77.2,alpha,front,-2.475348264604408 +karman_re100,sr,193,77.2,alpha,upper,-0.6463377919349185 +karman_re100,sr,193,77.2,alpha,lower,6.216079569086314 +karman_re100,sr,194,77.6,alpha,front,-2.55078877503991 +karman_re100,sr,194,77.6,alpha,upper,-1.35315401290705 +karman_re100,sr,194,77.6,alpha,lower,5.509263348114182 +karman_re100,sr,195,78.0,alpha,front,-2.1669892552115266 +karman_re100,sr,195,78.0,alpha,upper,-2.792720695927837 +karman_re100,sr,195,78.0,alpha,lower,4.069696665093395 +karman_re100,sr,196,78.4,alpha,front,-1.3980010344087144 +karman_re100,sr,196,78.4,alpha,upper,-3.2655700811103223 +karman_re100,sr,196,78.4,alpha,lower,3.596847279910911 +karman_re100,sr,197,78.8,alpha,front,-0.6615579161766085 +karman_re100,sr,197,78.8,alpha,upper,-2.7468234477697955 +karman_re100,sr,197,78.8,alpha,lower,4.115593913251437 +karman_re100,sr,198,79.2,alpha,front,-0.03211676931235286 +karman_re100,sr,198,79.2,alpha,upper,-2.8799335060083386 +karman_re100,sr,198,79.2,alpha,lower,3.9824838550128936 +karman_re100,sr,199,79.6,alpha,front,0.6499901903879531 +karman_re100,sr,199,79.6,alpha,upper,-4.059751662492192 +karman_re100,sr,199,79.6,alpha,lower,2.80266569852904 +karman_re100,sr,0,0.0,omega,front,0.01101687026524554 +karman_re100,sr,0,0.0,omega,upper,-0.04081465116091075 +karman_re100,sr,0,0.0,omega,lower,0.027809522449301575 +karman_re100,sr,1,0.4,omega,front,0.016543894486858352 +karman_re100,sr,1,0.4,omega,upper,-0.04372953626474109 +karman_re100,sr,1,0.4,omega,lower,0.024894637345471232 +karman_re100,sr,2,0.8,omega,front,0.020289127389393823 +karman_re100,sr,2,0.8,omega,upper,-0.05035618402307519 +karman_re100,sr,2,0.8,omega,lower,0.018267989587137132 +karman_re100,sr,3,1.2,omega,front,0.024364945267262957 +karman_re100,sr,3,1.2,omega,upper,-0.05902169433590979 +karman_re100,sr,3,1.2,omega,lower,0.009602479274302538 +karman_re100,sr,4,1.6,omega,front,0.026946125354659643 +karman_re100,sr,4,1.6,omega,upper,-0.0571432231518951 +karman_re100,sr,4,1.6,omega,lower,0.011480950458317221 +karman_re100,sr,5,2.0,omega,front,0.02528731306364825 +karman_re100,sr,5,2.0,omega,upper,-0.04191393766364966 +karman_re100,sr,5,2.0,omega,lower,0.026710235946562667 +karman_re100,sr,6,2.4,omega,front,0.018598039991035098 +karman_re100,sr,6,2.4,omega,upper,-0.027824634371137944 +karman_re100,sr,6,2.4,omega,lower,0.040799539239074374 +karman_re100,sr,7,2.8,omega,front,0.010442851806778062 +karman_re100,sr,7,2.8,omega,upper,-0.030237954697871623 +karman_re100,sr,7,2.8,omega,lower,0.0383862189123407 +karman_re100,sr,8,3.2,omega,front,0.00400996397385587 +karman_re100,sr,8,3.2,omega,upper,-0.036348310939241714 +karman_re100,sr,8,3.2,omega,lower,0.03227586267097061 +karman_re100,sr,9,3.6,omega,front,-0.0016040088328410553 +karman_re100,sr,9,3.6,omega,upper,-0.031320806262445745 +karman_re100,sr,9,3.6,omega,lower,0.037303367347766576 +karman_re100,sr,10,4.0,omega,front,-0.008280348130818693 +karman_re100,sr,10,4.0,omega,upper,-0.018677941953939438 +karman_re100,sr,10,4.0,omega,lower,0.049946231656272884 +karman_re100,sr,11,4.4,omega,front,-0.01493542314046462 +karman_re100,sr,11,4.4,omega,upper,-0.010475094561787754 +karman_re100,sr,11,4.4,omega,lower,0.05814907904842457 +karman_re100,sr,12,4.8,omega,front,-0.019460730895488134 +karman_re100,sr,12,4.8,omega,upper,-0.00922697861808206 +karman_re100,sr,12,4.8,omega,lower,0.05939719499213027 +karman_re100,sr,13,5.2,omega,front,-0.02104859007570825 +karman_re100,sr,13,5.2,omega,upper,-0.014022646378355867 +karman_re100,sr,13,5.2,omega,lower,0.054601527231856455 +karman_re100,sr,14,5.6,omega,front,-0.01926333068774451 +karman_re100,sr,14,5.6,omega,upper,-0.0255356897589419 +karman_re100,sr,14,5.6,omega,lower,0.043088483851270426 +karman_re100,sr,15,6.0,omega,front,-0.013258174717796604 +karman_re100,sr,15,6.0,omega,upper,-0.03388834096542077 +karman_re100,sr,15,6.0,omega,lower,0.034735832644791555 +karman_re100,sr,16,6.4,omega,front,-0.006118002518170496 +karman_re100,sr,16,6.4,omega,upper,-0.03292494757483103 +karman_re100,sr,16,6.4,omega,lower,0.035699226035381296 +karman_re100,sr,17,6.8,omega,front,0.0002111746164032076 +karman_re100,sr,17,6.8,omega,upper,-0.032895058672000925 +karman_re100,sr,17,6.8,omega,lower,0.0357291149382114 +karman_re100,sr,18,7.2,omega,front,0.006523019551134431 +karman_re100,sr,18,7.2,omega,upper,-0.040602150988217296 +karman_re100,sr,18,7.2,omega,lower,0.028022022621995026 +karman_re100,sr,19,7.6,omega,front,0.013467857688012801 +karman_re100,sr,19,7.6,omega,upper,-0.05173993121608945 +karman_re100,sr,19,7.6,omega,lower,0.016884242394122874 +karman_re100,sr,20,8.0,omega,front,0.01983113006531431 +karman_re100,sr,20,8.0,omega,upper,-0.05962169365928196 +karman_re100,sr,20,8.0,omega,lower,0.009002479950930372 +karman_re100,sr,21,8.4,omega,front,0.02397236661809341 +karman_re100,sr,21,8.4,omega,upper,-0.06211778700298116 +karman_re100,sr,21,8.4,omega,lower,0.006506386607231169 +karman_re100,sr,22,8.8,omega,front,0.02510533868067995 +karman_re100,sr,22,8.8,omega,upper,-0.0553402910238742 +karman_re100,sr,22,8.8,omega,lower,0.01328388258633812 +karman_re100,sr,23,9.2,omega,front,0.021927008279622805 +karman_re100,sr,23,9.2,omega,upper,-0.04165899744127751 +karman_re100,sr,23,9.2,omega,lower,0.026965176168934808 +karman_re100,sr,24,9.6,omega,front,0.014798666852439014 +karman_re100,sr,24,9.6,omega,upper,-0.03674688749706141 +karman_re100,sr,24,9.6,omega,lower,0.03187728611315091 +karman_re100,sr,25,10.0,omega,front,0.007663763799850327 +karman_re100,sr,25,10.0,omega,upper,-0.04148422530959022 +karman_re100,sr,25,10.0,omega,lower,0.027139948300622108 +karman_re100,sr,26,10.4,omega,front,0.001438217069350031 +karman_re100,sr,26,10.4,omega,upper,-0.040731690881565016 +karman_re100,sr,26,10.4,omega,lower,0.027892482728647305 +karman_re100,sr,27,10.8,omega,front,-0.005166042028748105 +karman_re100,sr,27,10.8,omega,upper,-0.029628210118437137 +karman_re100,sr,27,10.8,omega,lower,0.03899596349177519 +karman_re100,sr,28,11.2,omega,front,-0.012743563644435874 +karman_re100,sr,28,11.2,omega,upper,-0.016833675461635143 +karman_re100,sr,28,11.2,omega,lower,0.05179049814857718 +karman_re100,sr,29,11.6,omega,front,-0.01962629777395919 +karman_re100,sr,29,11.6,omega,upper,-0.009449402174467778 +karman_re100,sr,29,11.6,omega,lower,0.059174771435744546 +karman_re100,sr,30,12.0,omega,front,-0.024156252856729968 +karman_re100,sr,30,12.0,omega,upper,-0.006077656238824006 +karman_re100,sr,30,12.0,omega,lower,0.06254651737138832 +karman_re100,sr,31,12.4,omega,front,-0.02587748150773521 +karman_re100,sr,31,12.4,omega,upper,-0.010581375858531179 +karman_re100,sr,31,12.4,omega,lower,0.05804279775168114 +karman_re100,sr,32,12.8,omega,front,-0.02331997761715931 +karman_re100,sr,32,12.8,omega,upper,-0.024853334572199126 +karman_re100,sr,32,12.8,omega,lower,0.0437708390380132 +karman_re100,sr,33,13.2,omega,front,-0.016186601695915487 +karman_re100,sr,33,13.2,omega,upper,-0.032445927361360496 +karman_re100,sr,33,13.2,omega,lower,0.03617824624885183 +karman_re100,sr,34,13.6,omega,front,-0.008698308817375088 +karman_re100,sr,34,13.6,omega,upper,-0.027615235446155625 +karman_re100,sr,34,13.6,omega,lower,0.041008938164056694 +karman_re100,sr,35,14.0,omega,front,-0.002346338743818928 +karman_re100,sr,35,14.0,omega,upper,-0.026123477443683242 +karman_re100,sr,35,14.0,omega,lower,0.04250069616652908 +karman_re100,sr,36,14.4,omega,front,0.0041362691024269035 +karman_re100,sr,36,14.4,omega,upper,-0.03626971250314213 +karman_re100,sr,36,14.4,omega,lower,0.032354461107070194 +karman_re100,sr,37,14.8,omega,front,0.011767441890306596 +karman_re100,sr,37,14.8,omega,upper,-0.050364172362172055 +karman_re100,sr,37,14.8,omega,lower,0.018260001248040274 +karman_re100,sr,38,15.2,omega,front,0.018989225374276403 +karman_re100,sr,38,15.2,omega,upper,-0.058702778890135865 +karman_re100,sr,38,15.2,omega,lower,0.009921394720076467 +karman_re100,sr,39,15.6,omega,front,0.023863009894662404 +karman_re100,sr,39,15.6,omega,upper,-0.06235323747445785 +karman_re100,sr,39,15.6,omega,lower,0.006270936135754482 +karman_re100,sr,40,16.0,omega,front,0.025879898633201545 +karman_re100,sr,40,16.0,omega,upper,-0.059389095513571986 +karman_re100,sr,40,16.0,omega,lower,0.009235078096640339 +karman_re100,sr,41,16.4,omega,front,0.024022300416485388 +karman_re100,sr,41,16.4,omega,upper,-0.04576923769380655 +karman_re100,sr,41,16.4,omega,lower,0.022854935916405774 +karman_re100,sr,42,16.8,omega,front,0.01714775050329583 +karman_re100,sr,42,16.8,omega,upper,-0.035843695155560316 +karman_re100,sr,42,16.8,omega,lower,0.03278047845465201 +karman_re100,sr,43,17.2,omega,front,0.00937619707118522 +karman_re100,sr,43,17.2,omega,upper,-0.039494242803697274 +karman_re100,sr,43,17.2,omega,lower,0.02912993080651505 +karman_re100,sr,44,17.6,omega,front,0.002840844363797826 +karman_re100,sr,44,17.6,omega,upper,-0.04240845954830072 +karman_re100,sr,44,17.6,omega,lower,0.026215714061911602 +karman_re100,sr,45,18.0,omega,front,-0.0035514552750048932 +karman_re100,sr,45,18.0,omega,upper,-0.03388339906553351 +karman_re100,sr,45,18.0,omega,lower,0.03474077454467881 +karman_re100,sr,46,18.4,omega,front,-0.011074025692166162 +karman_re100,sr,46,18.4,omega,upper,-0.01980762281568916 +karman_re100,sr,46,18.4,omega,lower,0.04881655079452316 +karman_re100,sr,47,18.8,omega,front,-0.018408025691104203 +karman_re100,sr,47,18.8,omega,upper,-0.010526005569868376 +karman_re100,sr,47,18.8,omega,lower,0.05809816804034394 +karman_re100,sr,48,19.2,omega,front,-0.023516758003604067 +karman_re100,sr,48,19.2,omega,upper,-0.006513381542237937 +karman_re100,sr,48,19.2,omega,lower,0.06211079206797439 +karman_re100,sr,49,19.6,omega,front,-0.025662907010835942 +karman_re100,sr,49,19.6,omega,upper,-0.008743063700933917 +karman_re100,sr,49,19.6,omega,lower,0.059881109909278404 +karman_re100,sr,50,20.0,omega,front,-0.02416975616988347 +karman_re100,sr,50,20.0,omega,upper,-0.02164596237753718 +karman_re100,sr,50,20.0,omega,lower,0.04697821123267515 +karman_re100,sr,51,20.4,omega,front,-0.01762883306277149 +karman_re100,sr,51,20.4,omega,upper,-0.03239602422072453 +karman_re100,sr,51,20.4,omega,lower,0.03622814938948779 +karman_re100,sr,52,20.8,omega,front,-0.009812384544310547 +karman_re100,sr,52,20.8,omega,upper,-0.029773559219557263 +karman_re100,sr,52,20.8,omega,lower,0.03885061439065506 +karman_re100,sr,53,21.2,omega,front,-0.003160439721023485 +karman_re100,sr,53,21.2,omega,upper,-0.026561936321110594 +karman_re100,sr,53,21.2,omega,lower,0.04206223728910173 +karman_re100,sr,54,21.6,omega,front,0.003221983902318223 +karman_re100,sr,54,21.6,omega,upper,-0.03425086875382261 +karman_re100,sr,54,21.6,omega,lower,0.03437330485638971 +karman_re100,sr,55,22.0,omega,front,0.010679797146186751 +karman_re100,sr,55,22.0,omega,upper,-0.04807842643502317 +karman_re100,sr,55,22.0,omega,lower,0.020545747175189148 +karman_re100,sr,56,22.4,omega,front,0.018128844147757953 +karman_re100,sr,56,22.4,omega,upper,-0.05759755479973205 +karman_re100,sr,56,22.4,omega,lower,0.011026618810480282 +karman_re100,sr,57,22.8,omega,front,0.023301655149007346 +karman_re100,sr,57,22.8,omega,upper,-0.0618934862554183 +karman_re100,sr,57,22.8,omega,lower,0.006730687354794025 +karman_re100,sr,58,23.2,omega,front,0.025618533844211117 +karman_re100,sr,58,23.2,omega,upper,-0.06021157624674814 +karman_re100,sr,58,23.2,omega,lower,0.008412597363464181 +karman_re100,sr,59,23.6,omega,front,0.02437984539832922 +karman_re100,sr,59,23.6,omega,upper,-0.0476794616503177 +karman_re100,sr,59,23.6,omega,lower,0.02094471195989463 +karman_re100,sr,60,24.0,omega,front,0.017979546246387826 +karman_re100,sr,60,24.0,omega,upper,-0.03610062218611264 +karman_re100,sr,60,24.0,omega,lower,0.03252355142409969 +karman_re100,sr,61,24.4,omega,front,0.010114856672158048 +karman_re100,sr,61,24.4,omega,upper,-0.03834180271169046 +karman_re100,sr,61,24.4,omega,lower,0.030282370898521864 +karman_re100,sr,62,24.8,omega,front,0.0034189500464534644 +karman_re100,sr,62,24.8,omega,upper,-0.04216088041217469 +karman_re100,sr,62,24.8,omega,lower,0.026463293198037637 +karman_re100,sr,63,25.2,omega,front,-0.002897818972506443 +karman_re100,sr,63,25.2,omega,upper,-0.035076912039597716 +karman_re100,sr,63,25.2,omega,lower,0.033547261570614606 +karman_re100,sr,64,25.6,omega,front,-0.010299891533788989 +karman_re100,sr,64,25.6,omega,upper,-0.021126291002979306 +karman_re100,sr,64,25.6,omega,lower,0.04749788260723301 +karman_re100,sr,65,26.0,omega,front,-0.017727226585979357 +karman_re100,sr,65,26.0,omega,upper,-0.011227732516982494 +karman_re100,sr,65,26.0,omega,lower,0.05739644109322983 +karman_re100,sr,66,26.4,omega,front,-0.023071546935802937 +karman_re100,sr,66,26.4,omega,upper,-0.006889254439531252 +karman_re100,sr,66,26.4,omega,lower,0.06173491917068107 +karman_re100,sr,67,26.8,omega,front,-0.025497847178155217 +karman_re100,sr,67,26.8,omega,upper,-0.008180568617186697 +karman_re100,sr,67,26.8,omega,lower,0.06044360499302563 +karman_re100,sr,68,27.2,omega,front,-0.024388888306920854 +karman_re100,sr,68,27.2,omega,upper,-0.020146814362109553 +karman_re100,sr,68,27.2,omega,lower,0.048477359248102765 +karman_re100,sr,69,27.6,omega,front,-0.018249689765121157 +karman_re100,sr,69,27.6,omega,upper,-0.03217988993988848 +karman_re100,sr,69,27.6,omega,lower,0.03644428367032384 +karman_re100,sr,70,28.0,omega,front,-0.010322666858535707 +karman_re100,sr,70,28.0,omega,upper,-0.030802244760043698 +karman_re100,sr,70,28.0,omega,lower,0.03782192885016863 +karman_re100,sr,71,28.4,omega,front,-0.003542537240869066 +karman_re100,sr,71,28.4,omega,upper,-0.026875903777163774 +karman_re100,sr,71,28.4,omega,lower,0.04174826983304855 +karman_re100,sr,72,28.8,omega,front,0.0027948630361812536 +karman_re100,sr,72,28.8,omega,upper,-0.033319069419443674 +karman_re100,sr,72,28.8,omega,lower,0.03530510419076865 +karman_re100,sr,73,29.2,omega,front,0.010154149612922145 +karman_re100,sr,73,29.2,omega,upper,-0.04695730026688605 +karman_re100,sr,73,29.2,omega,lower,0.02166687334332628 +karman_re100,sr,74,29.6,omega,front,0.017587158516386262 +karman_re100,sr,74,29.6,omega,upper,-0.05709638433935466 +karman_re100,sr,74,29.6,omega,lower,0.011527789270857661 +karman_re100,sr,75,30.0,omega,front,0.023023168906631024 +karman_re100,sr,75,30.0,omega,upper,-0.061710562881587945 +karman_re100,sr,75,30.0,omega,lower,0.006913610728624371 +karman_re100,sr,76,30.4,omega,front,0.025524739252961424 +karman_re100,sr,76,30.4,omega,upper,-0.06055698322948699 +karman_re100,sr,76,30.4,omega,lower,0.008067190380725333 +karman_re100,sr,77,30.8,omega,front,0.024542062311399198 +karman_re100,sr,77,30.8,omega,upper,-0.04873291454365866 +karman_re100,sr,77,30.8,omega,lower,0.019891259066553663 +karman_re100,sr,78,31.2,omega,front,0.018491662050622765 +karman_re100,sr,78,31.2,omega,upper,-0.03664380488536516 +karman_re100,sr,78,31.2,omega,lower,0.031980368724847164 +karman_re100,sr,79,31.6,omega,front,0.010612573619142208 +karman_re100,sr,79,31.6,omega,upper,-0.038017449044598826 +karman_re100,sr,79,31.6,omega,lower,0.0306067245656135 +karman_re100,sr,80,32.0,omega,front,0.0038388550005368765 +karman_re100,sr,80,32.0,omega,upper,-0.042050572213027756 +karman_re100,sr,80,32.0,omega,lower,0.02657360139718457 +karman_re100,sr,81,32.4,omega,front,-0.0024891015486685525 +karman_re100,sr,81,32.4,omega,upper,-0.035648771764813354 +karman_re100,sr,81,32.4,omega,lower,0.03297540184539897 +karman_re100,sr,82,32.8,omega,front,-0.009831066872894258 +karman_re100,sr,82,32.8,omega,upper,-0.02190672752565443 +karman_re100,sr,82,32.8,omega,lower,0.04671744608455789 +karman_re100,sr,83,33.2,omega,front,-0.017327485804021884 +karman_re100,sr,83,33.2,omega,upper,-0.011704983633820562 +karman_re100,sr,83,33.2,omega,lower,0.05691918997639176 +karman_re100,sr,84,33.6,omega,front,-0.022819921688368265 +karman_re100,sr,84,33.6,omega,upper,-0.007087003513023355 +karman_re100,sr,84,33.6,omega,lower,0.06153717009718896 +karman_re100,sr,85,34.0,omega,front,-0.025413182075119844 +karman_re100,sr,85,34.0,omega,upper,-0.007837277851589955 +karman_re100,sr,85,34.0,omega,lower,0.06078689575862237 +karman_re100,sr,86,34.4,omega,front,-0.02460467935851846 +karman_re100,sr,86,34.4,omega,upper,-0.01930140845071336 +karman_re100,sr,86,34.4,omega,lower,0.04932276515949896 +karman_re100,sr,87,34.8,omega,front,-0.018698938107328124 +karman_re100,sr,87,34.8,omega,upper,-0.03185223253812176 +karman_re100,sr,87,34.8,omega,lower,0.036771941072090565 +karman_re100,sr,88,35.2,omega,front,-0.010787313941636035 +karman_re100,sr,88,35.2,omega,upper,-0.031069350947295394 +karman_re100,sr,88,35.2,omega,lower,0.03755482266291693 +karman_re100,sr,89,35.6,omega,front,-0.003955244431319831 +karman_re100,sr,89,35.6,omega,upper,-0.026680009057973172 +karman_re100,sr,89,35.6,omega,lower,0.04194416455223915 +karman_re100,sr,90,36.0,omega,front,0.0023390874229196803 +karman_re100,sr,90,36.0,omega,upper,-0.03251139611642877 +karman_re100,sr,90,36.0,omega,lower,0.036112777493783554 +karman_re100,sr,91,36.4,omega,front,0.009620224623730118 +karman_re100,sr,91,36.4,omega,upper,-0.04614904842968841 +karman_re100,sr,91,36.4,omega,lower,0.02247512518052392 +karman_re100,sr,92,36.8,omega,front,0.017129474210942637 +karman_re100,sr,92,36.8,omega,upper,-0.05674025544350553 +karman_re100,sr,92,36.8,omega,lower,0.011883918166706793 +karman_re100,sr,93,37.2,omega,front,0.022742480433851867 +karman_re100,sr,93,37.2,omega,upper,-0.061559670509522206 +karman_re100,sr,93,37.2,omega,lower,0.007064503100690116 +karman_re100,sr,94,37.6,omega,front,0.025431884161617454 +karman_re100,sr,94,37.6,omega,upper,-0.060961437237865755 +karman_re100,sr,94,37.6,omega,lower,0.007662736372346566 +karman_re100,sr,95,38.0,omega,front,0.02475464236899009 +karman_re100,sr,95,38.0,omega,upper,-0.049798495340419795 +karman_re100,sr,95,38.0,omega,lower,0.01882567826979253 +karman_re100,sr,96,38.4,omega,front,0.01899890408809724 +karman_re100,sr,96,38.4,omega,upper,-0.03711020696381859 +karman_re100,sr,96,38.4,omega,lower,0.03151396664639374 +karman_re100,sr,97,38.8,omega,front,0.011086971787747979 +karman_re100,sr,97,38.8,omega,upper,-0.03750744680318449 +karman_re100,sr,97,38.8,omega,lower,0.031116726807027834 +karman_re100,sr,98,39.2,omega,front,0.004209067469176684 +karman_re100,sr,98,39.2,omega,upper,-0.04186529816346545 +karman_re100,sr,98,39.2,omega,lower,0.02675887544674687 +karman_re100,sr,99,39.6,omega,front,-0.0020958776870607953 +karman_re100,sr,99,39.6,omega,upper,-0.036355195496016256 +karman_re100,sr,99,39.6,omega,lower,0.032268978114196066 +karman_re100,sr,100,40.0,omega,front,-0.009357158212155244 +karman_re100,sr,100,40.0,omega,upper,-0.02285763066773061 +karman_re100,sr,100,40.0,omega,lower,0.04576654294248171 +karman_re100,sr,101,40.4,omega,front,-0.016899517845076487 +karman_re100,sr,101,40.4,omega,upper,-0.012211665393517675 +karman_re100,sr,101,40.4,omega,lower,0.05641250821669464 +karman_re100,sr,102,40.8,omega,front,-0.022574899580157574 +karman_re100,sr,102,40.8,omega,upper,-0.0072315959523308005 +karman_re100,sr,102,40.8,omega,lower,0.06139257765788152 +karman_re100,sr,103,41.2,omega,front,-0.025364392903739662 +karman_re100,sr,103,41.2,omega,upper,-0.007532707769860267 +karman_re100,sr,103,41.2,omega,lower,0.06109146584035205 +karman_re100,sr,104,41.6,omega,front,-0.024815167741224723 +karman_re100,sr,104,41.6,omega,upper,-0.018384478967289068 +karman_re100,sr,104,41.6,omega,lower,0.05023969464292326 +karman_re100,sr,105,42.0,omega,front,-0.019207909517266114 +karman_re100,sr,105,42.0,omega,upper,-0.031364415560156914 +karman_re100,sr,105,42.0,omega,lower,0.03725975805005541 +karman_re100,sr,106,42.4,omega,front,-0.011322653952661495 +karman_re100,sr,106,42.4,omega,upper,-0.031203175038512103 +karman_re100,sr,106,42.4,omega,lower,0.03742099857170022 +karman_re100,sr,107,42.8,omega,front,-0.0044239802926015455 +karman_re100,sr,107,42.8,omega,upper,-0.026597826754857383 +karman_re100,sr,107,42.8,omega,lower,0.04202634685535494 +karman_re100,sr,108,43.2,omega,front,0.0018544654773684163 +karman_re100,sr,108,43.2,omega,upper,-0.03182477652377589 +karman_re100,sr,108,43.2,omega,lower,0.03679939708643643 +karman_re100,sr,109,43.6,omega,front,0.00907770471999413 +karman_re100,sr,109,43.6,omega,upper,-0.04536799074399602 +karman_re100,sr,109,43.6,omega,lower,0.0232561828662163 +karman_re100,sr,110,44.0,omega,front,0.016647678146576382 +karman_re100,sr,110,44.0,omega,upper,-0.05626599747983392 +karman_re100,sr,110,44.0,omega,lower,0.012358176130378401 +karman_re100,sr,111,44.4,omega,front,0.02242136593724651 +karman_re100,sr,111,44.4,omega,upper,-0.061304951043614525 +karman_re100,sr,111,44.4,omega,lower,0.0073192225665977915 +karman_re100,sr,112,44.8,omega,front,0.02531623776159642 +karman_re100,sr,112,44.8,omega,upper,-0.06131349508001849 +karman_re100,sr,112,44.8,omega,lower,0.007310678530193835 +karman_re100,sr,113,45.2,omega,front,0.024964539790271724 +karman_re100,sr,113,45.2,omega,upper,-0.05084062875573805 +karman_re100,sr,113,45.2,omega,lower,0.017783544854474278 +karman_re100,sr,114,45.6,omega,front,0.019493358537299138 +karman_re100,sr,114,45.6,omega,upper,-0.03746756752849358 +karman_re100,sr,114,45.6,omega,lower,0.03115660608171874 +karman_re100,sr,115,46.0,omega,front,0.011554250891378142 +karman_re100,sr,115,46.0,omega,upper,-0.0370386635998316 +karman_re100,sr,115,46.0,omega,lower,0.03158551001038072 +karman_re100,sr,116,46.4,omega,front,0.004614325593089963 +karman_re100,sr,116,46.4,omega,upper,-0.041840101477349 +karman_re100,sr,116,46.4,omega,lower,0.026784072132863327 +karman_re100,sr,117,46.8,omega,front,-0.0016625251693309303 +karman_re100,sr,117,46.8,omega,upper,-0.037194036566896786 +karman_re100,sr,117,46.8,omega,lower,0.031430137043315536 +karman_re100,sr,118,47.2,omega,front,-0.008835010937636754 +karman_re100,sr,118,47.2,omega,upper,-0.023828749012118226 +karman_re100,sr,118,47.2,omega,lower,0.044795424598094095 +karman_re100,sr,119,47.6,omega,front,-0.016417954879694403 +karman_re100,sr,119,47.6,omega,upper,-0.012672645997695532 +karman_re100,sr,119,47.6,omega,lower,0.055951527612516795 +karman_re100,sr,120,48.0,omega,front,-0.02228581776795601 +karman_re100,sr,120,48.0,omega,upper,-0.007390598460163456 +karman_re100,sr,120,48.0,omega,lower,0.061233575150048875 +karman_re100,sr,121,48.4,omega,front,-0.025301463281982576 +karman_re100,sr,121,48.4,omega,upper,-0.007167399972464548 +karman_re100,sr,121,48.4,omega,lower,0.06145677363774778 +karman_re100,sr,122,48.8,omega,front,-0.025005752578669257 +karman_re100,sr,122,48.8,omega,upper,-0.01733429479208055 +karman_re100,sr,122,48.8,omega,lower,0.051289878818131775 +karman_re100,sr,123,49.2,omega,front,-0.019738294065887136 +karman_re100,sr,123,49.2,omega,upper,-0.030773060755441502 +karman_re100,sr,123,49.2,omega,lower,0.03785111285477082 +karman_re100,sr,124,49.6,omega,front,-0.01184359910241876 +karman_re100,sr,124,49.6,omega,upper,-0.03158269955221933 +karman_re100,sr,124,49.6,omega,lower,0.03704147405799299 +karman_re100,sr,125,50.0,omega,front,-0.004854739667382147 +karman_re100,sr,125,50.0,omega,upper,-0.026799208414033708 +karman_re100,sr,125,50.0,omega,lower,0.04182496519617862 +karman_re100,sr,126,50.4,omega,front,0.0014262033142051402 +karman_re100,sr,126,50.4,omega,upper,-0.03119455183427261 +karman_re100,sr,126,50.4,omega,lower,0.03742962177593972 +karman_re100,sr,127,50.8,omega,front,0.008575959156566402 +karman_re100,sr,127,50.8,omega,upper,-0.04441999245250052 +karman_re100,sr,127,50.8,omega,lower,0.0242041811577118 +karman_re100,sr,128,51.2,omega,front,0.01618405092703156 +karman_re100,sr,128,51.2,omega,upper,-0.05568332830015141 +karman_re100,sr,128,51.2,omega,lower,0.012940845310060917 +karman_re100,sr,129,51.6,omega,front,0.0221329066103322 +karman_re100,sr,129,51.6,omega,upper,-0.061070664491566 +karman_re100,sr,129,51.6,omega,lower,0.007553509118646323 +karman_re100,sr,130,52.0,omega,front,0.02521944618340739 +karman_re100,sr,130,52.0,omega,upper,-0.061562255643843995 +karman_re100,sr,130,52.0,omega,lower,0.0070619179663683205 +karman_re100,sr,131,52.4,omega,front,0.025099554273887992 +karman_re100,sr,131,52.4,omega,upper,-0.05176104010146737 +karman_re100,sr,131,52.4,omega,lower,0.01686313350874495 +karman_re100,sr,132,52.8,omega,front,0.020011049181239315 +karman_re100,sr,132,52.8,omega,upper,-0.03804163177343712 +karman_re100,sr,132,52.8,omega,lower,0.030582541836775202 +karman_re100,sr,133,53.2,omega,front,0.012075694206964437 +karman_re100,sr,133,53.2,omega,upper,-0.0368305374500513 +karman_re100,sr,133,53.2,omega,lower,0.03179363616016102 +karman_re100,sr,134,53.6,omega,front,0.005064246592365538 +karman_re100,sr,134,53.6,omega,upper,-0.041850238005213855 +karman_re100,sr,134,53.6,omega,lower,0.02677393560499847 +karman_re100,sr,135,54.0,omega,front,-0.001191955526665708 +karman_re100,sr,135,54.0,omega,upper,-0.03792583358938772 +karman_re100,sr,135,54.0,omega,lower,0.030698340020824607 +karman_re100,sr,136,54.4,omega,front,-0.008282808768095406 +karman_re100,sr,136,54.4,omega,upper,-0.02472190226309051 +karman_re100,sr,136,54.4,omega,lower,0.04390227134712182 +karman_re100,sr,137,54.8,omega,front,-0.01592663949681267 +karman_re100,sr,137,54.8,omega,upper,-0.0131509521781879 +karman_re100,sr,137,54.8,omega,lower,0.055473221432024426 +karman_re100,sr,138,55.2,omega,front,-0.02195898013629168 +karman_re100,sr,138,55.2,omega,upper,-0.007637892896573253 +karman_re100,sr,138,55.2,omega,lower,0.06098628071363907 +karman_re100,sr,139,55.6,omega,front,-0.025146997243134833 +karman_re100,sr,139,55.6,omega,upper,-0.0069293042295602274 +karman_re100,sr,139,55.6,omega,lower,0.0616948693806521 +karman_re100,sr,140,56.0,omega,front,-0.025166794228860947 +karman_re100,sr,140,56.0,omega,upper,-0.016276690154749276 +karman_re100,sr,140,56.0,omega,lower,0.05234748345546304 +karman_re100,sr,141,56.4,omega,front,-0.020251396877820765 +karman_re100,sr,141,56.4,omega,upper,-0.03015720198317054 +karman_re100,sr,141,56.4,omega,lower,0.03846697162704178 +karman_re100,sr,142,56.8,omega,front,-0.012352771643480236 +karman_re100,sr,142,56.8,omega,upper,-0.03203181563827601 +karman_re100,sr,142,56.8,omega,lower,0.03659235797193632 +karman_re100,sr,143,57.2,omega,front,-0.005262340547085859 +karman_re100,sr,143,57.2,omega,upper,-0.027033810114965987 +karman_re100,sr,143,57.2,omega,lower,0.041590363495246335 +karman_re100,sr,144,57.6,omega,front,0.001013952836467178 +karman_re100,sr,144,57.6,omega,upper,-0.03050049350999647 +karman_re100,sr,144,57.6,omega,lower,0.038123680100215857 +karman_re100,sr,145,58.0,omega,front,0.00807830392531329 +karman_re100,sr,145,58.0,omega,upper,-0.04338512573100909 +karman_re100,sr,145,58.0,omega,lower,0.025239047879203242 +karman_re100,sr,146,58.4,omega,front,0.01570821109670845 +karman_re100,sr,146,58.4,omega,upper,-0.05509225667269385 +karman_re100,sr,146,58.4,omega,lower,0.013531916937518465 +karman_re100,sr,147,58.8,omega,front,0.021829432156852763 +karman_re100,sr,147,58.8,omega,upper,-0.060864442937213596 +karman_re100,sr,147,58.8,omega,lower,0.007759730672998728 +karman_re100,sr,148,59.2,omega,front,0.025157815699988748 +karman_re100,sr,148,59.2,omega,upper,-0.061844635133519885 +karman_re100,sr,148,59.2,omega,lower,0.006779538476692437 +karman_re100,sr,149,59.6,omega,front,0.02528932082289857 +karman_re100,sr,149,59.6,omega,upper,-0.05275317446127201 +karman_re100,sr,149,59.6,omega,lower,0.01587099914894032 +karman_re100,sr,150,60.0,omega,front,0.020499812019244855 +karman_re100,sr,150,60.0,omega,upper,-0.03873823412565892 +karman_re100,sr,150,60.0,omega,lower,0.029885939484553408 +karman_re100,sr,151,60.4,omega,front,0.012639704949044846 +karman_re100,sr,151,60.4,omega,upper,-0.0365925589364419 +karman_re100,sr,151,60.4,omega,lower,0.03203161467377042 +karman_re100,sr,152,60.8,omega,front,0.0055366718555690956 +karman_re100,sr,152,60.8,omega,upper,-0.04170554965102874 +karman_re100,sr,152,60.8,omega,lower,0.026918623959183575 +karman_re100,sr,153,61.2,omega,front,-0.0007298940385475395 +karman_re100,sr,153,61.2,omega,upper,-0.03850074127627134 +karman_re100,sr,153,61.2,omega,lower,0.030123432333940985 +karman_re100,sr,154,61.6,omega,front,-0.007756079433545215 +karman_re100,sr,154,61.6,omega,upper,-0.025627031171645397 +karman_re100,sr,154,61.6,omega,lower,0.04299714243856693 +karman_re100,sr,155,62.0,omega,front,-0.01542309907120683 +karman_re100,sr,155,62.0,omega,upper,-0.01375558586485544 +karman_re100,sr,155,62.0,omega,lower,0.05486858774535689 +karman_re100,sr,156,62.4,omega,front,-0.021621879933350917 +karman_re100,sr,156,62.4,omega,upper,-0.007924801699916592 +karman_re100,sr,156,62.4,omega,lower,0.06069937191029573 +karman_re100,sr,157,62.8,omega,front,-0.02501812769273937 +karman_re100,sr,157,62.8,omega,upper,-0.006740421953647715 +karman_re100,sr,157,62.8,omega,lower,0.06188375165656461 +karman_re100,sr,158,63.2,omega,front,-0.025291789452140456 +karman_re100,sr,158,63.2,omega,upper,-0.01533448024999787 +karman_re100,sr,158,63.2,omega,lower,0.053289693360214455 +karman_re100,sr,159,63.6,omega,front,-0.020724702367188357 +karman_re100,sr,159,63.6,omega,upper,-0.029535455864361064 +karman_re100,sr,159,63.6,omega,lower,0.03908871774585126 +karman_re100,sr,160,64.0,omega,front,-0.012889863670870532 +karman_re100,sr,160,64.0,omega,upper,-0.03234190082547136 +karman_re100,sr,160,64.0,omega,lower,0.036282272784740964 +karman_re100,sr,161,64.4,omega,front,-0.005710048438006006 +karman_re100,sr,161,64.4,omega,upper,-0.027153052099861037 +karman_re100,sr,161,64.4,omega,lower,0.04147112151035128 +karman_re100,sr,162,64.8,omega,front,0.0005625046035190566 +karman_re100,sr,162,64.8,omega,upper,-0.029774308269078068 +karman_re100,sr,162,64.8,omega,lower,0.03884986534113426 +karman_re100,sr,163,65.2,omega,front,0.007523942815180456 +karman_re100,sr,163,65.2,omega,upper,-0.042373031941900126 +karman_re100,sr,163,65.2,omega,lower,0.026251141668312203 +karman_re100,sr,164,65.6,omega,front,0.015185579642299983 +karman_re100,sr,164,65.6,omega,upper,-0.054555975277258 +karman_re100,sr,164,65.6,omega,lower,0.01406819833295432 +karman_re100,sr,165,66.0,omega,front,0.02148139006559599 +karman_re100,sr,165,66.0,omega,upper,-0.060637415466700005 +karman_re100,sr,165,66.0,omega,lower,0.007986758143512317 +karman_re100,sr,166,66.4,omega,front,0.024978000035612912 +karman_re100,sr,166,66.4,omega,upper,-0.061998216167076965 +karman_re100,sr,166,66.4,omega,lower,0.006625957443135353 +karman_re100,sr,167,66.8,omega,front,0.02537257578807922 +karman_re100,sr,167,66.8,omega,upper,-0.05375659784993183 +karman_re100,sr,167,66.8,omega,lower,0.014867575760280494 +karman_re100,sr,168,67.2,omega,front,0.02099333318451394 +karman_re100,sr,168,67.2,omega,upper,-0.03952057067638681 +karman_re100,sr,168,67.2,omega,lower,0.02910360293382551 +karman_re100,sr,169,67.6,omega,front,0.013173494962825088 +karman_re100,sr,169,67.6,omega,upper,-0.03624764294652919 +karman_re100,sr,169,67.6,omega,lower,0.03237653066368314 +karman_re100,sr,170,68.0,omega,front,0.005958725982286562 +karman_re100,sr,170,68.0,omega,upper,-0.04135717768060339 +karman_re100,sr,170,68.0,omega,lower,0.02726699592960894 +karman_re100,sr,171,68.4,omega,front,-0.0003308892250077687 +karman_re100,sr,171,68.4,omega,upper,-0.03904368342710052 +karman_re100,sr,171,68.4,omega,lower,0.029580490183111804 +karman_re100,sr,172,68.8,omega,front,-0.007267995912579257 +karman_re100,sr,172,68.8,omega,upper,-0.02666725999153576 +karman_re100,sr,172,68.8,omega,lower,0.04195691361867656 +karman_re100,sr,173,69.2,omega,front,-0.014943467941405938 +karman_re100,sr,173,69.2,omega,upper,-0.014421761886440534 +karman_re100,sr,173,69.2,omega,lower,0.05420241172377179 +karman_re100,sr,174,69.6,omega,front,-0.021302943691252883 +karman_re100,sr,174,69.6,omega,upper,-0.008172326027541109 +karman_re100,sr,174,69.6,omega,lower,0.06045184758267121 +karman_re100,sr,175,70.0,omega,front,-0.024904320332703934 +karman_re100,sr,175,70.0,omega,upper,-0.006569659977321796 +karman_re100,sr,175,70.0,omega,lower,0.06205451363289052 +karman_re100,sr,176,70.4,omega,front,-0.025414564685094527 +karman_re100,sr,176,70.4,omega,upper,-0.014449093059199605 +karman_re100,sr,176,70.4,omega,lower,0.05417508055101272 +karman_re100,sr,177,70.8,omega,front,-0.021202632984399967 +karman_re100,sr,177,70.8,omega,upper,-0.02878561771011908 +karman_re100,sr,177,70.8,omega,lower,0.03983855590009324 +karman_re100,sr,178,71.2,omega,front,-0.01342121746726764 +karman_re100,sr,178,71.2,omega,upper,-0.032458758640550193 +karman_re100,sr,178,71.2,omega,lower,0.03616541496966213 +karman_re100,sr,179,71.6,omega,front,-0.006185321726798066 +karman_re100,sr,179,71.6,omega,upper,-0.027272906113023083 +karman_re100,sr,179,71.6,omega,lower,0.04135126749718924 +karman_re100,sr,180,72.0,omega,front,9.986784653286999e-05 +karman_re100,sr,180,72.0,omega,upper,-0.029220571888365767 +karman_re100,sr,180,72.0,omega,lower,0.03940360172184656 +karman_re100,sr,181,72.4,omega,front,0.006991893495814389 +karman_re100,sr,181,72.4,omega,upper,-0.041486391767858725 +karman_re100,sr,181,72.4,omega,lower,0.0271377818423536 +karman_re100,sr,182,72.8,omega,front,0.014675999067016693 +karman_re100,sr,182,72.8,omega,upper,-0.0539504524748991 +karman_re100,sr,182,72.8,omega,lower,0.01467372113531322 +karman_re100,sr,183,73.2,omega,front,0.021119392227157398 +karman_re100,sr,183,73.2,omega,upper,-0.060327904246312264 +karman_re100,sr,183,73.2,omega,lower,0.008296269363900061 +karman_re100,sr,184,73.6,omega,front,0.024818713065774448 +karman_re100,sr,184,73.6,omega,upper,-0.062128562963363776 +karman_re100,sr,184,73.6,omega,lower,0.006495610646848551 +karman_re100,sr,185,74.0,omega,front,0.025465151160642185 +karman_re100,sr,185,74.0,omega,upper,-0.05470078542811317 +karman_re100,sr,185,74.0,omega,lower,0.013923388182099159 +karman_re100,sr,186,74.4,omega,front,0.021480539365303284 +karman_re100,sr,186,74.4,omega,upper,-0.040272948291199324 +karman_re100,sr,186,74.4,omega,lower,0.028351225319013 +karman_re100,sr,187,74.8,omega,front,0.013695696627106551 +karman_re100,sr,187,74.8,omega,upper,-0.03592187034823148 +karman_re100,sr,187,74.8,omega,lower,0.03270230326198084 +karman_re100,sr,188,75.2,omega,front,0.0063916494036364 +karman_re100,sr,188,75.2,omega,upper,-0.04109052518594762 +karman_re100,sr,188,75.2,omega,lower,0.027533648424264704 +karman_re100,sr,189,75.6,omega,front,8.997959337518959e-05 +karman_re100,sr,189,75.6,omega,upper,-0.039658878407519714 +karman_re100,sr,189,75.6,omega,lower,0.02896529520269261 +karman_re100,sr,190,76.0,omega,front,-0.006749641491531776 +karman_re100,sr,190,76.0,omega,upper,-0.02770834747794997 +karman_re100,sr,190,76.0,omega,lower,0.040915826132262356 +karman_re100,sr,191,76.4,omega,front,-0.014465555084116932 +karman_re100,sr,191,76.4,omega,upper,-0.015004379302538283 +karman_re100,sr,191,76.4,omega,lower,0.05361979430767404 +karman_re100,sr,192,76.8,omega,front,-0.02094992082970196 +karman_re100,sr,192,76.8,omega,upper,-0.008418483187544314 +karman_re100,sr,192,76.8,omega,lower,0.06020569042266801 +karman_re100,sr,193,77.2,omega,front,-0.02475348264604408 +karman_re100,sr,193,77.2,omega,upper,-0.006463377919349185 +karman_re100,sr,193,77.2,omega,lower,0.06216079569086314 +karman_re100,sr,194,77.6,omega,front,-0.0255078877503991 +karman_re100,sr,194,77.6,omega,upper,-0.0135315401290705 +karman_re100,sr,194,77.6,omega,lower,0.055092633481141816 +karman_re100,sr,195,78.0,omega,front,-0.021669892552115266 +karman_re100,sr,195,78.0,omega,upper,-0.027927206959278368 +karman_re100,sr,195,78.0,omega,lower,0.040696966650933954 +karman_re100,sr,196,78.4,omega,front,-0.013980010344087144 +karman_re100,sr,196,78.4,omega,upper,-0.03265570081110322 +karman_re100,sr,196,78.4,omega,lower,0.03596847279910911 +karman_re100,sr,197,78.8,omega,front,-0.006615579161766086 +karman_re100,sr,197,78.8,omega,upper,-0.027468234477697955 +karman_re100,sr,197,78.8,omega,lower,0.04115593913251437 +karman_re100,sr,198,79.2,omega,front,-0.00032116769312352865 +karman_re100,sr,198,79.2,omega,upper,-0.02879933506008339 +karman_re100,sr,198,79.2,omega,lower,0.03982483855012894 +karman_re100,sr,199,79.6,omega,front,0.006499901903879532 +karman_re100,sr,199,79.6,omega,upper,-0.04059751662492192 +karman_re100,sr,199,79.6,omega,lower,0.028026656985290402 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_manifest.json new file mode 100644 index 0000000..01030b8 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re100", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re100__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_wide.csv new file mode 100644 index 0000000..d94a66f --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re100,sr,0,0.0,1.0685993432998657,0.24136945605278015,0.951983630657196,0.35171154141426086,0.9978394508361816,0.2656116187572479,-0.00021766476857010275,0.004785771481692791,-0.004755847621709108,0.002707300242036581,0.0039196982979774475,-0.004147517494857311,1.101687026524554,-4.081465116091075,2.7809522449301576,0.01101687026524554,-0.04081465116091075,0.027809522449301575 +karman_re100,sr,1,0.4,1.0256357192993164,0.2784147560596466,0.9571142792701721,0.3840985596179962,1.0403664112091064,0.2973689138889313,0.001182967214845121,0.004420048091560602,-0.006104665342718363,0.001949600176885724,0.004534864332526922,-0.004403235390782356,1.6543894486858353,-4.372953626474109,2.4894637345471233,0.016543894486858352,-0.04372953626474109,0.024894637345471232 +karman_re100,sr,2,0.8,0.9840131402015686,0.2844412922859192,0.9631149172782898,0.3802558183670044,1.082318902015686,0.298073410987854,0.0033913084771484137,0.004041346721351147,-0.008138316683471203,0.0007623916026204824,0.004638554062694311,-0.004541249480098486,2.028912738939382,-5.035618402307519,1.8267989587137132,0.020289127389393823,-0.05035618402307519,0.018267989587137132 +karman_re100,sr,3,1.2,0.9511460065841675,0.2562474012374878,0.9665431976318359,0.33770468831062317,1.1226905584335327,0.27484893798828125,0.005002328660339117,0.0029543815180659294,-0.010226522572338581,0.0006583164795301855,0.003903907723724842,-0.004149898421019316,2.4364945267262956,-5.902169433590979,0.9602479274302538,0.024364945267262957,-0.05902169433590979,0.009602479274302538 +karman_re100,sr,4,1.6,0.9302495718002319,0.19517673552036285,0.9602498412132263,0.25486046075820923,1.1615686416625977,0.23747190833091736,0.005424212664365768,0.0013268479378893971,-0.010555536486208439,0.0025683874264359474,0.002705019898712635,-0.0037309438921511173,2.6946125354659642,-5.71432231518951,1.148095045831722,0.026946125354659643,-0.0571432231518951,0.011480950458317221 +karman_re100,sr,5,2.0,0.9191654920578003,0.10398537665605545,0.9472877383232117,0.12479744851589203,1.1881532669067383,0.17102228105068207,0.004525789991021156,-9.321111429017037e-05,-0.007756952196359634,0.00459672138094902,0.0019957786425948143,-0.0036045906599611044,2.5287313063648247,-4.191393766364966,2.671023594656267,0.02528731306364825,-0.04191393766364966,0.026710235946562667 +karman_re100,sr,6,2.4,0.9147189259529114,-0.016590869054198265,0.9440224170684814,-0.02322998456656933,1.1834924221038818,0.05765269696712494,0.002648918889462948,-0.0011285010259598494,-0.004050768446177244,0.004530958365648985,0.001425417372956872,-0.003907898440957069,1.8598039991035098,-2.7824634371137944,4.079953923907437,0.018598039991035098,-0.027824634371137944,0.040799539239074374 +karman_re100,sr,7,2.8,0.9213874340057373,-0.13450811803340912,0.9467764496803284,-0.1547740399837494,1.1426308155059814,-0.07581524550914764,0.0004278732812963426,-0.0020887136925011873,-0.0014474287163466215,0.004119493532925844,0.0006553788552992046,-0.004430894739925861,1.0442851806778062,-3.0237954697871623,3.8386218912340704,0.010442851806778062,-0.030237954697871623,0.0383862189123407 +karman_re100,sr,8,3.2,0.9514302611351013,-0.21099725365638733,0.9476280808448792,-0.2703494727611542,1.1047674417495728,-0.17313984036445618,-0.0009404827142134309,-0.002880303654819727,0.0003986329829785973,0.004827579017728567,-0.00044250223436392844,-0.004370120353996754,0.400996397385587,-3.6348310939241713,3.2275862670970605,0.00400996397385587,-0.036348310939241714,0.03227586267097061 +karman_re100,sr,9,3.6,0.9928194284439087,-0.2608775794506073,0.9511076211929321,-0.34447094798088074,1.0720512866973877,-0.23495210707187653,-0.001079218927770853,-0.003438311628997326,0.002386919455602765,0.005977455992251635,-0.0019552588928490877,-0.00358651508577168,-0.16040088328410554,-3.1320806262445746,3.7303367347766576,-0.0016040088328410553,-0.031320806262445745,0.037303367347766576 +karman_re100,sr,10,4.0,1.0349479913711548,-0.2935445010662079,0.9563013315200806,-0.37726420164108276,1.0309902429580688,-0.27168896794319153,-0.00022722162248101085,-0.003486206755042076,0.004068595357239246,0.0062318588607013226,-0.0037634752225130796,-0.0025864506606012583,-0.8280348130818692,-1.8677941953939436,4.994623165627289,-0.008280348130818693,-0.018677941953939438,0.049946231656272884 +karman_re100,sr,11,4.4,1.0747613906860352,-0.2958945035934448,0.9605038166046143,-0.3740268647670746,0.9893826842308044,-0.27755963802337646,0.0014357778709381819,-0.002989836735650897,0.004440390970557928,0.005753229837864637,-0.005764731205999851,-0.0019169463776051998,-1.493542314046462,-1.0475094561787754,5.814907904842457,-0.01493542314046462,-0.010475094561787754,0.05814907904842457 +karman_re100,sr,12,4.8,1.1130483150482178,-0.2738376557826996,0.9623351097106934,-0.33226460218429565,0.9565280675888062,-0.249216690659523,0.003371965605765581,-0.002026990056037903,0.0037065453361719847,0.005174695048481226,-0.007331243250519037,-0.002071816474199295,-1.9460730895488134,-0.922697861808206,5.939719499213027,-0.019460730895488134,-0.00922697861808206,0.05939719499213027 +karman_re100,sr,13,5.2,1.1502400636672974,-0.23930568993091583,0.9544419050216675,-0.2522604465484619,0.93589186668396,-0.18779800832271576,0.004011107143014669,-0.0009066071943379939,0.002886261558160186,0.004609730560332537,-0.007215344812721014,-0.0032675499096512794,-2.104859007570825,-1.4022646378355867,5.4601527231856455,-0.02104859007570825,-0.014022646378355867,0.054601527231856455 +karman_re100,sr,14,5.6,1.1787209510803223,-0.18117406964302063,0.9382843971252441,-0.1262035220861435,0.9253460168838501,-0.09408948570489883,0.0031688630115240812,0.00043778427061624825,0.0021039769053459167,0.0044846367090940475,-0.00484855193644762,-0.004419832956045866,-1.9263330687744509,-2.5535689758941897,4.3088483851270425,-0.01926333068774451,-0.0255356897589419,0.043088483851270426 +karman_re100,sr,15,6.0,1.1788434982299805,-0.08315591514110565,0.9267156720161438,0.022946422919631004,0.9193148016929626,0.03066849708557129,0.0015784796560183167,0.001627272111363709,0.0011603280436247587,0.004749261308461428,-0.0020479257218539715,-0.004537125118076801,-1.3258174717796605,-3.3888340965420767,3.4735832644791556,-0.013258174717796604,-0.03388834096542077,0.034735832644791555 +karman_re100,sr,16,6.4,1.1407076120376587,0.040212634950876236,0.9226230382919312,0.16076290607452393,0.9269216656684875,0.14937599003314972,-7.715291576460004e-05,0.002589578740298748,3.5482033126754686e-05,0.004955627955496311,0.00014622107846662402,-0.004738920833915472,-0.6118002518170496,-3.2924947574831034,3.5699226035381293,-0.006118002518170496,-0.03292494757483103,0.035699226035381296 +karman_re100,sr,17,6.8,1.0880900621414185,0.14289094507694244,0.9164557456970215,0.283186674118042,0.9571163654327393,0.22653093934059143,-0.0008909062016755342,0.003265267238020897,-0.0012936432613059878,0.004567819647490978,0.0021269996650516987,-0.005529763642698526,0.02111746164032076,-3.2895058672000923,3.5729114938211395,0.0002111746164032076,-0.032895058672000925,0.0357291149382114 +karman_re100,sr,18,7.2,1.0352015495300293,0.212816521525383,0.9138805270195007,0.3661787509918213,0.9989830851554871,0.2800663113594055,-0.0006352764903567731,0.0036653249990195036,-0.002947344211861491,0.003569908207282424,0.004115141462534666,-0.006235160864889622,0.6523019551134431,-4.06021509882173,2.8022022621995024,0.006523019551134431,-0.040602150988217296,0.028022022621995026 +karman_re100,sr,19,7.6,0.9775646328926086,0.2580114006996155,0.9157058000564575,0.4093434512615204,1.044649600982666,0.3151072859764099,0.0005927280872128904,0.0037062251940369606,-0.0050110165029764175,0.0023870724253356457,0.005388341378420591,-0.0062576886266469955,1.34678576880128,-5.1739931216089445,1.6884242394122873,0.013467857688012801,-0.05173993121608945,0.016884242394122874 +karman_re100,sr,20,8.0,0.9218024611473083,0.27213943004608154,0.918152928352356,0.4162585735321045,1.0911028385162354,0.3174692690372467,0.0026498998049646616,0.003210876602679491,-0.0073373508639633656,0.0015762138646095991,0.0052336533553898335,-0.005828559398651123,1.9831130065314309,-5.962169365928196,0.9002479950930371,0.01983113006531431,-0.05962169365928196,0.009002479950930372 +karman_re100,sr,21,8.4,0.8754460215568542,0.24871593713760376,0.9160491228103638,0.3850661814212799,1.1377482414245605,0.296033650636673,0.0046653044410049915,0.0022903147619217634,-0.009003118611872196,0.0018319669179618359,0.004162011202424765,-0.005047825165092945,2.397236661809341,-6.211778700298115,0.6506386607231169,0.02397236661809341,-0.06211778700298116,0.006506386607231169 +karman_re100,sr,22,8.8,0.844402015209198,0.18758410215377808,0.9033003449440002,0.3101060390472412,1.1833808422088623,0.2535410523414612,0.0050125522539019585,0.001046126359142363,-0.008258822374045849,0.0032278418075293303,0.003239604877308011,-0.004351410083472729,2.510533868067995,-5.53402910238742,1.328388258633812,0.02510533868067995,-0.0553402910238742,0.01328388258633812 +karman_re100,sr,23,9.2,0.8355039358139038,0.09668097645044327,0.8810128569602966,0.1790051907300949,1.2155579328536987,0.17093977332115173,0.004009884782135487,-0.0003093153063673526,-0.005298560485243797,0.0039022592827677727,0.0024617956951260567,-0.004274615086615086,2.1927008279622804,-4.165899744127751,2.696517616893481,0.021927008279622805,-0.04165899744127751,0.026965176168934808 +karman_re100,sr,24,9.6,0.8494583964347839,-0.01110365241765976,0.8519541025161743,-0.013210451230406761,1.2276928424835205,0.05608643963932991,0.002092086710035801,-0.0015143757918849587,-0.0024457918480038643,0.0036085129249840975,0.001573052373714745,-0.004705353174358606,1.4798666852439013,-3.674688749706141,3.187728611315091,0.014798666852439014,-0.03674688749706141,0.03187728611315091 +karman_re100,sr,25,10.0,0.8762142062187195,-0.128221794962883,0.8398563861846924,-0.23244890570640564,1.209485650062561,-0.08197849988937378,7.46639707358554e-05,-0.002602165564894676,-0.00033008825266733766,0.004069609567523003,0.0004241064889356494,-0.005051364190876484,0.7663763799850327,-4.148422530959022,2.7139948300622105,0.007663763799850327,-0.04148422530959022,0.027139948300622108 +karman_re100,sr,26,10.4,0.9169557690620422,-0.22786685824394226,0.8577240109443665,-0.3849863111972809,1.1450300216674805,-0.21893243491649628,-0.0009629062842577696,-0.003360923146829009,0.0017706992803141475,0.00543607072904706,-0.0009383505675941706,-0.00471976213157177,0.1438217069350031,-4.073169088156502,2.7892482728647305,0.001438217069350031,-0.040731690881565016,0.027892482728647305 +karman_re100,sr,27,10.8,0.9668843150138855,-0.29644709825515747,0.880764901638031,-0.46225711703300476,1.0585598945617676,-0.30814623832702637,-0.000909463269636035,-0.003688303753733635,0.004109302069991827,0.006423818878829479,-0.0025733669754117727,-0.003750832984223962,-0.5166042028748105,-2.9628210118437135,3.899596349177519,-0.005166042028748105,-0.029628210118437137,0.03899596349177519 +karman_re100,sr,28,11.2,1.0219862461090088,-0.34168240427970886,0.8993048071861267,-0.5004533529281616,0.9787542223930359,-0.3504641354084015,0.00015109438390936702,-0.0036195942666381598,0.00565753597766161,0.006376987788826227,-0.004634408745914698,-0.0025747197214514017,-1.2743563644435874,-1.6833675461635143,5.179049814857718,-0.012743563644435874,-0.016833675461635143,0.05179049814857718 +karman_re100,sr,29,11.6,1.0783275365829468,-0.3513319492340088,0.9127368330955505,-0.5042627453804016,0.9100785851478577,-0.35410091280937195,0.002241720911115408,-0.0031093189027160406,0.005641390569508076,0.0059502823278307915,-0.00702604278922081,-0.0016323707532137632,-1.962629777395919,-0.9449402174467778,5.917477143574454,-0.01962629777395919,-0.009449402174467778,0.059174771435744546 +karman_re100,sr,30,12.0,1.1380828619003296,-0.3338465094566345,0.9202736020088196,-0.4729531407356262,0.8548842072486877,-0.31821200251579285,0.004539597313851118,-0.0022221545223146677,0.0045466297306120396,0.00526980496942997,-0.009023408405482769,-0.0016406504437327385,-2.4156252856729967,-0.6077656238824005,6.254651737138832,-0.024156252856729968,-0.006077656238824006,0.06254651737138832 +karman_re100,sr,31,12.4,1.1960800886154175,-0.29282569885253906,0.9120436906814575,-0.3961343765258789,0.812630832195282,-0.2393292635679245,0.0050875283777713776,-0.0010070777498185635,0.0035190146882086992,0.004516160115599632,-0.008709879592061043,-0.0030696264002472162,-2.5877481507735207,-1.058137585853118,5.804279775168114,-0.02587748150773521,-0.010581375858531179,0.05804279775168114 +karman_re100,sr,32,12.8,1.2440751791000366,-0.21193331480026245,0.8878138661384583,-0.25953078269958496,0.79156494140625,-0.12582531571388245,0.004194216802716255,0.00038962066173553467,0.0026630631182342768,0.0043473937548696995,-0.005825120024383068,-0.004062000662088394,-2.3319977617159307,-2.4853334572199124,4.37708390380132,-0.02331997761715931,-0.024853334572199126,0.0437708390380132 +karman_re100,sr,33,13.2,1.264907717704773,-0.08634331822395325,0.8488647937774658,-0.03883162885904312,0.7966313362121582,0.0038643977604806423,0.002314043464139104,0.0015276431804522872,0.001762649742886424,0.004737248178571463,-0.0027987053617835045,-0.0037130939308553934,-1.6186601695915486,-3.2445927361360494,3.6178246248851833,-0.016186601695915487,-0.032445927361360496,0.03617824624885183 +karman_re100,sr,34,13.6,1.2406665086746216,0.08030009269714355,0.8348119854927063,0.23441001772880554,0.8296836614608765,0.13032986223697662,0.00021569564705714583,0.002584129339084029,0.0006416907417587936,0.005146963056176901,-0.0005887190345674753,-0.0038946731947362423,-0.8698308817375088,-2.7615235446155624,4.100893816405669,-0.008698308817375088,-0.027615235446155625,0.041008938164056694 +karman_re100,sr,35,14.0,1.1657928228378296,0.23713922500610352,0.8547917008399963,0.42984938621520996,0.8780080676078796,0.2387680858373642,-0.0009616340976208448,0.0033653578720986843,-0.0006832198705524206,0.004901429172605276,0.00148582155816257,-0.005200810264796019,-0.2346338743818928,-2.612347744368324,4.250069616652908,-0.002346338743818928,-0.026123477443683242,0.04250069616652908 +karman_re100,sr,36,14.4,1.074760913848877,0.3390396535396576,0.886965274810791,0.5151647329330444,0.9389211535453796,0.3120744824409485,-0.0010041299974545836,0.003744262969121337,-0.0022715763188898563,0.0039794426411390305,0.003899218747392297,-0.0064342995174229145,0.4136269102426903,-3.6269712503142126,3.235446110707019,0.0041362691024269035,-0.03626971250314213,0.032354461107070194 +karman_re100,sr,37,14.8,0.9903466701507568,0.3885451853275299,0.9134388566017151,0.5492883920669556,1.0035969018936157,0.3604206442832947,-5.8833964430959895e-05,0.003668807214125991,-0.004296566359698772,0.0027952396776527166,0.005661300383508205,-0.0065253255888819695,1.1767441890306596,-5.036417236217205,1.8260001248040274,0.011767441890306596,-0.050364172362172055,0.018260001248040274 +karman_re100,sr,38,15.2,0.9165979623794556,0.39599570631980896,0.9310479164123535,0.5525509119033813,1.0662281513214111,0.3756490647792816,0.0019158241339027882,0.0031512496061623096,-0.006710754707455635,0.0017617720877751708,0.005802903324365616,-0.006050125230103731,1.8989225374276404,-5.870277889013586,0.9921394720076467,0.018989225374276403,-0.058702778890135865,0.009921394720076467 +karman_re100,sr,39,15.6,0.8546491265296936,0.3610641062259674,0.9400371313095093,0.5246885418891907,1.1285998821258545,0.3596866726875305,0.004284636117517948,0.002205898519605398,-0.008883547969162464,0.001549888402223587,0.004687757696956396,-0.005384933203458786,2.3863009894662404,-6.2353237474457845,0.6270936135754481,0.023863009894662404,-0.06235323747445785,0.006270936135754482 +karman_re100,sr,40,16.0,0.8066908121109009,0.2808384895324707,0.9351588487625122,0.4575236439704895,1.1941264867782593,0.3232685923576355,0.005066022276878357,0.0010327039053663611,-0.008970025926828384,0.002858765423297882,0.0036271633580327034,-0.004610915668308735,2.5879898633201543,-5.938909551357199,0.9235078096640339,0.025879898633201545,-0.059389095513571986,0.009235078096640339 +karman_re100,sr,41,16.4,0.7766968011856079,0.1597854644060135,0.9117068648338318,0.3272552788257599,1.2558916807174683,0.2524052858352661,0.004268244840204716,-0.00040811236249282956,-0.006216196343302727,0.004158619325608015,0.0027760090306401253,-0.0043928492814302444,2.4022300416485387,-4.576923769380655,2.285493591640577,0.024022300416485388,-0.04576923769380655,0.022854935916405774 +karman_re100,sr,42,16.8,0.7718124985694885,0.014154825359582901,0.8711965680122375,0.10287979990243912,1.2921160459518433,0.1279870718717575,0.00246731867082417,-0.001541679841466248,-0.0030217107851058245,0.003980197943747044,0.0018951259553432465,-0.004772708751261234,1.7147750503295829,-3.584369515556032,3.2780478454652013,0.01714775050329583,-0.035843695155560316,0.03278047845465201 +karman_re100,sr,43,17.2,0.8030829429626465,-0.1241530030965805,0.8525850772857666,-0.19661904871463776,1.273229718208313,-0.053916625678539276,0.0003422501031309366,-0.0025512694846838713,-0.0007149561424739659,0.00399860180914402,0.0007747702184133232,-0.005236785858869553,0.937619707118522,-3.9494242803697275,2.912993080651505,0.00937619707118522,-0.039494242803697274,0.02912993080651505 +karman_re100,sr,44,17.6,0.8564900159835815,-0.2378624528646469,0.8679225444793701,-0.4322766363620758,1.1983050107955933,-0.22637784481048584,-0.0009530268143862486,-0.0033119951840490103,0.0012995564611628652,0.0051041715778410435,-0.0005628111539408565,-0.0050386120565235615,0.2840844363797826,-4.240845954830072,2.62157140619116,0.002840844363797826,-0.04240845954830072,0.026215714061911602 +karman_re100,sr,45,18.0,0.9211528301239014,-0.3165160119533539,0.8987213373184204,-0.5345503687858582,1.1043000221252441,-0.3384215831756592,-0.0010691898642107844,-0.0037294826470315456,0.003665090771391988,0.0063279313035309315,-0.002142079873010516,-0.004109753295779228,-0.35514552750048933,-3.388339906553351,3.474077454467881,-0.0035514552750048932,-0.03388339906553351,0.03474077454467881 +karman_re100,sr,46,18.4,0.9898505210876465,-0.36641567945480347,0.9265032410621643,-0.5669737458229065,1.015696406364441,-0.39324405789375305,-0.0001727160270093009,-0.003682189853861928,0.00555564695969224,0.0065348208881914616,-0.004097441211342812,-0.0028971985448151827,-1.1074025692166163,-1.9807622815689159,4.881655079452316,-0.011074025692166162,-0.01980762281568916,0.04881655079452316 +karman_re100,sr,47,18.8,1.0573780536651611,-0.3840723931789398,0.9470993280410767,-0.5679457187652588,0.9397582411766052,-0.40355053544044495,0.0017034970223903656,-0.0031824950128793716,0.005872076377272606,0.006099879741668701,-0.006460008677095175,-0.001848603948019445,-1.8408025691104202,-1.0526005569868375,5.809816804034394,-0.018408025691104203,-0.010526005569868376,0.05809816804034394 +karman_re100,sr,48,19.2,1.1233733892440796,-0.3680937588214874,0.9596675634384155,-0.5385795831680298,0.8761855363845825,-0.36989516019821167,0.0040693082846701145,-0.002214964712038636,0.004792029969394207,0.005478964652866125,-0.008665486238896847,-0.0015686757396906614,-2.3516758003604066,-0.6513381542237937,6.2110792067974385,-0.023516758003604067,-0.006513381542237937,0.06211079206797439 +karman_re100,sr,49,19.6,1.1896281242370605,-0.3319503664970398,0.9566666483879089,-0.472507119178772,0.8242831230163574,-0.28959372639656067,0.004997927695512772,-0.001066732220351696,0.003655441338196397,0.004680413752794266,-0.009019073098897934,-0.0027433743234723806,-2.5662907010835943,-0.8743063700933917,5.98811099092784,-0.025662907010835942,-0.008743063700933917,0.059881109909278404 +karman_re100,sr,50,20.0,1.251123070716858,-0.26609423756599426,0.9322969317436218,-0.3457460105419159,0.7883290648460388,-0.16732202470302582,0.00424529192969203,0.00037037875154055655,0.0027741091325879097,0.00439136428758502,-0.006470373831689358,-0.004098339471966028,-2.416975616988347,-2.164596237753718,4.697821123267515,-0.02416975616988347,-0.02164596237753718,0.04697821123267515 +karman_re100,sr,51,20.4,1.2939971685409546,-0.15106719732284546,0.8898879885673523,-0.1278548687696457,0.7793993949890137,-0.019314508885145187,0.0025298562832176685,0.0015196400927379727,0.001916097360663116,0.0047207544557750225,-0.0032294741831719875,-0.004026674199849367,-1.762883306277149,-3.239602422072453,3.622814938948779,-0.01762883306277149,-0.03239602422072453,0.03622814938948779 +karman_re100,sr,52,20.8,1.2823777198791504,0.02861061319708824,0.8659404516220093,0.1738244593143463,0.8073822259902954,0.12258777767419815,0.00043720848043449223,0.0025326276663690805,0.000840695109218359,0.005207446403801441,-0.0008166256593540311,-0.004022210370749235,-0.9812384544310546,-2.977355921955726,3.885061439065506,-0.009812384544310547,-0.029773559219557263,0.03885061439065506 +karman_re100,sr,53,21.2,1.210160732269287,0.21055439114570618,0.8786900043487549,0.42032474279403687,0.8605661988258362,0.23861117660999298,-0.0009096676367335021,0.003297596937045455,-0.000467657606350258,0.005092192441225052,0.0012219366617500782,-0.00508283032104373,-0.31604397210234847,-2.6561936321110595,4.206223728910173,-0.003160439721023485,-0.026561936321110594,0.04206223728910173 +karman_re100,sr,54,21.6,1.1149803400039673,0.3308956027030945,0.9086862802505493,0.5300058126449585,0.9255692362785339,0.3171132206916809,-0.0010796798160299659,0.00373215414583683,-0.0020572056528180838,0.004214799031615257,0.0035432332661002874,-0.006320095155388117,0.3221983902318223,-3.425086875382261,3.437330485638971,0.003221983902318223,-0.03425086875382261,0.03437330485638971 +karman_re100,sr,55,22.0,1.025197982788086,0.3899257183074951,0.9368245601654053,0.5648769736289978,0.9947471022605896,0.36687934398651123,-0.00023427144333254546,0.003724681679159403,-0.004049115348607302,0.002971063368022442,0.005457571242004633,-0.006532126571983099,1.0679797146186751,-4.807842643502317,2.0545747175189146,0.010679797146186751,-0.04807842643502317,0.020545747175189148 +karman_re100,sr,56,22.4,0.9462259411811829,0.40121108293533325,0.9555522799491882,0.5655602812767029,1.0595734119415283,0.3840252757072449,0.001614660955965519,0.003236123826354742,-0.006372402422130108,0.0018762887921184301,0.00584688363596797,-0.006094331853091717,1.8128844147757952,-5.7597554799732045,1.1026618810480282,0.018128844147757953,-0.05759755479973205,0.011026618810480282 +karman_re100,sr,57,22.8,0.8813950419425964,0.3686554431915283,0.9684851765632629,0.5365306735038757,1.1242311000823975,0.36748775839805603,0.003984746523201466,0.0022620451636612415,-0.008590005338191986,0.0015335911884903908,0.0048442417755723,-0.005494418554008007,2.3301655149007345,-6.18934862554183,0.6730687354794025,0.023301655149007346,-0.0618934862554183,0.006730687354794025 +karman_re100,sr,58,23.2,0.8311298489570618,0.28964802622795105,0.9694045186042786,0.47214367985725403,1.1917405128479004,0.3310423791408539,0.005018080584704876,0.0011106044985353947,-0.009061203338205814,0.002686809515580535,0.00372348097153008,-0.004731091670691967,2.5618533844211115,-6.021157624674814,0.8412597363464182,0.025618533844211117,-0.06021157624674814,0.008412597363464181 +karman_re100,sr,59,23.6,0.795132040977478,0.16714511811733246,0.9469555616378784,0.34776508808135986,1.2525502443313599,0.26600196957588196,0.0043016355484724045,-0.00034169864375144243,-0.006600779946893454,0.004152082372456789,0.002827615477144718,-0.004425604362040758,2.437984539832922,-4.76794616503177,2.094471195989463,0.02437984539832922,-0.0476794616503177,0.02094471195989463 +karman_re100,sr,60,24.0,0.7855769991874695,0.019219430163502693,0.9037739634513855,0.133535698056221,1.2955549955368042,0.15605714917182922,0.0025991499423980713,-0.0014966879971325397,-0.0033548264764249325,0.004120573867112398,0.001949360128492117,-0.004736841190606356,1.7979546246387825,-3.610062218611264,3.252355142409969,0.017979546246387826,-0.03610062218611264,0.03252355142409969 +karman_re100,sr,61,24.4,0.8117072582244873,-0.12310851365327835,0.8760100603103638,-0.1693914532661438,1.2850261926651,-0.017155252397060394,0.0004955428303219378,-0.0024956900160759687,-0.0009282202809117734,0.004013982135802507,0.0008646621718071401,-0.005214303731918335,1.0114856672158048,-3.834180271169046,3.0282370898521864,0.010114856672158048,-0.03834180271169046,0.030282370898521864 +karman_re100,sr,62,24.8,0.8628871440887451,-0.2398117631673813,0.885266125202179,-0.4161558449268341,1.2124096155166626,-0.19806434214115143,-0.0008893694612197578,-0.0032625109888613224,0.0011021738173440099,0.004991159308701754,-0.0004174297791905701,-0.005108124576508999,0.34189500464534645,-4.216088041217469,2.6463293198037636,0.0034189500464534644,-0.04216088041217469,0.026463293198037637 +karman_re100,sr,63,25.2,0.9273298382759094,-0.31802889704704285,0.9132275581359863,-0.5250338912010193,1.1172785758972168,-0.319859117269516,-0.00109530717600137,-0.003720890497788787,0.0034313173964619637,0.006272622849792242,-0.001969900680705905,-0.004256109707057476,-0.2897818972506443,-3.5076912039597716,3.3547261570614606,-0.002897818972506443,-0.035076912039597716,0.033547261570614606 +karman_re100,sr,64,25.6,0.9962099194526672,-0.36703377962112427,0.9399207234382629,-0.5592526197433472,1.0276728868484497,-0.37992459535598755,-0.0002906961599364877,-0.0037207668647170067,0.005402333103120327,0.006590130738914013,-0.003893746994435787,-0.0030598239973187447,-1.029989153378899,-2.1126291002979305,4.749788260723301,-0.010299891533788989,-0.021126291002979306,0.04749788260723301 +karman_re100,sr,65,26.0,1.0628588199615479,-0.38497352600097656,0.9592803120613098,-0.5612295269966125,0.9501925110816956,-0.3931945860385895,0.001511106383986771,-0.0032579388935118914,0.005860241129994392,0.006151176523417234,-0.006238377187401056,-0.0019573832396417856,-1.7727226585979357,-1.1227732516982494,5.739644109322983,-0.017727226585979357,-0.011227732516982494,0.05739644109322983 +karman_re100,sr,66,26.4,1.1276227235794067,-0.36901041865348816,0.9715999364852905,-0.5333175659179688,0.8853080868721008,-0.36263614892959595,0.003855585353448987,-0.002288020448759198,0.004869250115007162,0.005545424297451973,-0.008501709438860416,-0.0015491126105189323,-2.307154693580294,-0.6889254439531252,6.173491917068107,-0.023071546935802937,-0.006889254439531252,0.06173491917068107 +karman_re100,sr,67,26.8,1.1904261112213135,-0.3317290246486664,0.9684464931488037,-0.46807658672332764,0.8316358327865601,-0.28481826186180115,0.004954589530825615,-0.0011456889333203435,0.003715658560395241,0.004747235216200352,-0.009073767811059952,-0.0025809300132095814,-2.5497847178155215,-0.8180568617186696,6.044360499302563,-0.025497847178155217,-0.008180568617186697,0.06044360499302563 +karman_re100,sr,68,27.2,1.2528055906295776,-0.2678004801273346,0.9478675127029419,-0.34555676579475403,0.7971174716949463,-0.1654333919286728,0.004320125095546246,0.0003050181840080768,0.00284297252073884,0.004416175186634064,-0.00672708498314023,-0.004090096801519394,-2.4388888306920853,-2.0146814362109553,4.8477359248102765,-0.024388888306920854,-0.020146814362109553,0.048477359248102765 +karman_re100,sr,69,27.6,1.2955830097198486,-0.16027149558067322,0.9037832617759705,-0.13652418553829193,0.7878772616386414,-0.020670998841524124,0.0026600188575685024,0.0014755389420315623,0.0019849396776407957,0.004711562767624855,-0.003428221680223942,-0.004174800124019384,-1.8249689765121158,-3.217988993988848,3.644428367032384,-0.018249689765121157,-0.03217988993988848,0.03644428367032384 +karman_re100,sr,70,28.0,1.2898478507995605,0.009809549897909164,0.8751348853111267,0.1611253172159195,0.8152850866317749,0.11913193762302399,0.0005658038426190615,0.0024793592747300863,0.000915135198738426,0.0052180164493620396,-0.0009425558382645249,-0.004080795682966709,-1.0322666858535707,-3.0802244760043695,3.7821928850168627,-0.010322666858535707,-0.030802244760043698,0.03782192885016863 +karman_re100,sr,71,28.4,1.2182575464248657,0.19336216151714325,0.8831113576889038,0.4087507724761963,0.8652562499046326,0.23546241223812103,-0.0008678516605868936,0.003244053339585662,-0.0003914992557838559,0.005145200528204441,0.001074114697985351,-0.004993337672203779,-0.3542537240869066,-2.6875903777163774,4.174826983304855,-0.003542537240869066,-0.026875903777163774,0.04174826983304855 +karman_re100,sr,72,28.8,1.1226320266723633,0.31890028715133667,0.9118619561195374,0.5208615660667419,0.9288073182106018,0.31446200609207153,-0.0011118865804746747,0.0037148883566260338,-0.001963800983503461,0.004292482975870371,0.0033609906677156687,-0.00622632447630167,0.2794863036181254,-3.3319069419443674,3.530510419076865,0.0027948630361812536,-0.033319069419443674,0.03530510419076865 +karman_re100,sr,73,29.2,1.0300915241241455,0.38029441237449646,0.9376876354217529,0.5561468601226807,0.9949411153793335,0.36372554302215576,-0.0003234234172850847,0.003733215853571892,-0.003876920323818922,0.00306037743575871,0.005345708690583706,-0.006544796284288168,1.0154149612922145,-4.695730026688604,2.166687334332628,0.010154149612922145,-0.04695730026688605,0.02166687334332628 +karman_re100,sr,74,29.6,0.9524272680282593,0.3946036100387573,0.9581191539764404,0.5594256520271301,1.0611156225204468,0.38270795345306396,0.001478761900216341,0.0032990945037454367,-0.006192916072905064,0.0019505855161696672,0.005880333017557859,-0.0061406539753079414,1.758715851638626,-5.709638433935466,1.152778927085766,0.017587158516386262,-0.05709638433935466,0.011527789270857661 +karman_re100,sr,75,30.0,0.8876951336860657,0.36468231678009033,0.9717541337013245,0.53175950050354,1.1253544092178345,0.36696526408195496,0.003831255715340376,0.002338229911401868,-0.008455936796963215,0.0015488694189116359,0.004929124843329191,-0.005562520120292902,2.302316890663102,-6.171056288158795,0.6913610728624371,0.023023168906631024,-0.061710562881587945,0.006913610728624371 +karman_re100,sr,76,30.4,0.8359233140945435,0.28814059495925903,0.9721227288246155,0.4686139225959778,1.1900315284729004,0.33064913749694824,0.004988798405975103,0.0011969167971983552,-0.00910747330635786,0.0025736645329743624,0.003762276843190193,-0.00477905198931694,2.5524739252961424,-6.0556983229486985,0.8067190380725333,0.025524739252961424,-0.06055698322948699,0.008067190380725333 +karman_re100,sr,77,30.8,0.7994032502174377,0.16900162398815155,0.9511048793792725,0.3481859266757965,1.249994158744812,0.26783210039138794,0.004365880507975817,-0.00024781518732197583,-0.006835034117102623,0.004062185995280743,0.0028619125951081514,-0.004418777301907539,2.4542062311399198,-4.873291454365866,1.9891259066553664,0.024542062311399198,-0.04873291454365866,0.019891259066553663 +karman_re100,sr,78,31.2,0.7893328666687012,0.024188490584492683,0.9078017473220825,0.1430589258670807,1.2936007976531982,0.16325685381889343,0.002719477517530322,-0.001425557304173708,-0.003564602928236127,0.0041210949420928955,0.00200058426707983,-0.004687758628278971,1.8491662050622766,-3.6643804885365157,3.198036872484716,0.018491662050622765,-0.03664380488536516,0.031980368724847164 +karman_re100,sr,79,31.6,0.816088855266571,-0.11672414839267731,0.8784130811691284,-0.1540454924106598,1.2904199361801147,-0.003473325865343213,0.0006324901478365064,-0.0024441657587885857,-0.001055741449818015,0.004007450770586729,0.0009573373245075345,-0.005190902855247259,1.0612573619142207,-3.801744904459883,3.06067245656135,0.010612573619142208,-0.038017449044598826,0.0306067245656135 +karman_re100,sr,80,32.0,0.8649303317070007,-0.2340112328529358,0.8844341039657593,-0.4037771224975586,1.2192803621292114,-0.18645669519901276,-0.000826079398393631,-0.003228374058380723,0.0009875703835859895,0.004949877969920635,-0.00031770358327776194,-0.005154298152774572,0.38388550005368766,-4.205057221302775,2.657360139718457,0.0038388550005368765,-0.042050572213027756,0.02657360139718457 +karman_re100,sr,81,32.4,0.928497850894928,-0.3134573698043823,0.9125216007232666,-0.5175764560699463,1.1240894794464111,-0.31310027837753296,-0.0011133241932839155,-0.0037033443804830313,0.003287614556029439,0.006243202835321426,-0.0018677539192140102,-0.004346042405813932,-0.24891015486685525,-3.5648771764813354,3.297540184539897,-0.0024891015486685525,-0.035648771764813354,0.03297540184539897 +karman_re100,sr,82,32.8,0.9958876967430115,-0.36356431245803833,0.9389171600341797,-0.5545527338981628,1.0325722694396973,-0.3764165937900543,-0.00037782106664963067,-0.003732446115463972,0.005295407958328724,0.006592836230993271,-0.0037910498213022947,-0.0031355158425867558,-0.9831066872894257,-2.190672752565443,4.671744608455789,-0.009831066872894258,-0.02190672752565443,0.04671744608455789 +karman_re100,sr,83,33.2,1.0609359741210938,-0.3831018805503845,0.9578186869621277,-0.5586183071136475,0.953578770160675,-0.3918779790401459,0.0013713301159441471,-0.0033083343878388405,0.0058616758324205875,0.006166528910398483,-0.006104991305619478,-0.0020029775332659483,-1.7327485804021883,-1.1704983633820563,5.691918997639176,-0.017327485804021884,-0.011704983633820562,0.05691918997639176 +karman_re100,sr,84,33.6,1.1241525411605835,-0.3677581548690796,0.9702134728431702,-0.5316924452781677,0.8874907493591309,-0.36326825618743896,0.0037274081259965897,-0.0023643351159989834,0.004947899375110865,0.005573658272624016,-0.008378662168979645,-0.0015248468844220042,-2.2819921688368265,-0.7087003513023356,6.153717009718896,-0.022819921688368265,-0.007087003513023355,0.06153717009718896 +karman_re100,sr,85,34.0,1.1884396076202393,-0.3316571116447449,0.9703270196914673,-0.46945008635520935,0.8350268006324768,-0.2883068323135376,0.0049678850919008255,-0.0012386972084641457,0.0037973173893988132,0.004789979662746191,-0.009105268865823746,-0.0024943859316408634,-2.5413182075119845,-0.7837277851589954,6.078689575862237,-0.025413182075119844,-0.007837277851589955,0.06078689575862237 +karman_re100,sr,86,34.4,1.2494032382965088,-0.26907217502593994,0.9510409832000732,-0.3504656255245209,0.7993953824043274,-0.17089557647705078,0.004394290968775749,0.00021381821716204286,0.0029022314120084047,0.0044287885539233685,-0.006903409957885742,-0.0040526012890040874,-2.4604679358518458,-1.9301408450713362,4.932276515949896,-0.02460467935851846,-0.01930140845071336,0.04932276515949896 +karman_re100,sr,87,34.8,1.294338583946228,-0.16553355753421783,0.908865749835968,-0.148416668176651,0.789989709854126,-0.02745319902896881,0.0027824381832033396,0.001400028937496245,0.0020400285720825195,0.004689068999141455,-0.003616791684180498,-0.0041931550949811935,-1.8698938107328122,-3.1852232538121754,3.6771941072090564,-0.018698938107328124,-0.03185223253812176,0.036771941072090565 +karman_re100,sr,88,35.2,1.2908227443695068,-0.000793994520790875,0.8768590688705444,0.14736126363277435,0.8148095011711121,0.1127307340502739,0.0006728648440912366,0.002413948532193899,0.0009746274445205927,0.005187537521123886,-0.0010994854383170605,-0.004020358435809612,-1.0787313941636034,-3.1069350947295393,3.755482266291693,-0.010787313941636035,-0.031069350947295394,0.03755482266291693 +karman_re100,sr,89,35.6,1.2215096950531006,0.1822890341281891,0.8823794722557068,0.3991689383983612,0.863167405128479,0.23028957843780518,-0.0008121563005261123,0.003200320526957512,-0.0003047404170501977,0.005152918864041567,0.0009218667983077466,-0.004877537954598665,-0.39552444313198304,-2.6680009057973173,4.194416455223915,-0.003955244431319831,-0.026680009057973172,0.04194416455223915 +karman_re100,sr,90,36.0,1.125554084777832,0.3105171322822571,0.9098389148712158,0.5151430368423462,0.925507128238678,0.3105091452598572,-0.0011167542543262243,0.003695231396704912,-0.0018340677488595247,0.0043454840779304504,0.003210735972970724,-0.006155719049274921,0.23390874229196804,-3.2511396116428766,3.611277749378355,0.0023390874229196803,-0.03251139611642877,0.036112777493783554 +karman_re100,sr,91,36.4,1.0343623161315918,0.3753180205821991,0.9371775984764099,0.5531265735626221,0.9931891560554504,0.36136364936828613,-0.0003966334043070674,0.003748504212126136,-0.0037160359788686037,0.0031537055037915707,0.005266585387289524,-0.0065836613066494465,0.9620224623730118,-4.614904842968841,2.247512518052392,0.009620224623730118,-0.04614904842968841,0.02247512518052392 +karman_re100,sr,92,36.8,0.9565203189849854,0.39218634366989136,0.9579178094863892,0.5582790970802307,1.059802532196045,0.38231974840164185,0.0013275806559249759,0.003345672506839037,-0.006027602590620518,0.002030760981142521,0.005898454692214727,-0.006197753362357616,1.7129474210942637,-5.6740255443505525,1.1883918166706793,0.017129474210942637,-0.05674025544350553,0.011883918166706793 +karman_re100,sr,93,37.2,0.8904626965522766,0.3651290237903595,0.9709516167640686,0.5325075387954712,1.1233502626419067,0.3681566119194031,0.0036736256442964077,0.0024074637331068516,-0.008343216963112354,0.0015405586455017328,0.004993151873350143,-0.0056160627864301205,2.2742480433851866,-6.155967050952221,0.7064503100690116,0.022742480433851867,-0.061559670509522206,0.007064503100690116 +karman_re100,sr,94,37.6,0.8368427157402039,0.29167404770851135,0.970628559589386,0.47217243909835815,1.186846137046814,0.33301281929016113,0.004973951727151871,0.001288113766349852,-0.009168388321995735,0.002443772042170167,0.00381283788010478,-0.0048121195286512375,2.5431884161617453,-6.096143723786575,0.7662736372346566,0.025431884161617454,-0.060961437237865755,0.007662736372346566 +karman_re100,sr,95,38.0,0.7997420430183411,0.17551347613334656,0.9508816003799438,0.3555493652820587,1.2475180625915527,0.2720610499382019,0.0044450522400438786,-0.00015397105016745627,-0.007048828527331352,0.003990077879279852,0.0029141136910766363,-0.004417996387928724,2.475464236899009,-4.979849534041979,1.882567826979253,0.02475464236899009,-0.049798495340419795,0.01882567826979253 +karman_re100,sr,96,38.4,0.7888218760490417,0.03265971317887306,0.9086329936981201,0.1571030616760254,1.293319821357727,0.17047758400440216,0.0028678900562226772,-0.0013582090614363551,-0.003735848469659686,0.004170066211372614,0.0020781110506504774,-0.004658734891563654,1.8998904088097237,-3.711020696381859,3.1513966646393743,0.01899890408809724,-0.03711020696381859,0.03151396664639374 +karman_re100,sr,97,38.8,0.8134470582008362,-0.10789193958044052,0.8767715692520142,-0.1361469328403473,1.2931983470916748,0.007181160617619753,0.0007712716469541192,-0.0023826383985579014,-0.0011662644101306796,0.004024549387395382,0.0010409521637484431,-0.005179667379707098,1.108697178774798,-3.750744680318449,3.1116726807027835,0.011086971787747979,-0.03750744680318449,0.031116726807027834 +karman_re100,sr,98,39.2,0.8624961972236633,-0.22678810358047485,0.8825023174285889,-0.3924257159233093,1.2266569137573242,-0.17748187482357025,-0.0007689368794672191,-0.0031809292268007994,0.0008642215398140252,0.0048846169374883175,-0.0002348475536564365,-0.0051970710046589375,0.4209067469176684,-4.186529816346545,2.675887544674687,0.004209067469176684,-0.04186529816346545,0.02675887544674687 +karman_re100,sr,99,39.6,0.9242300391197205,-0.308500736951828,0.9094833135604858,-0.5130506753921509,1.1304869651794434,-0.3078787922859192,-0.0011306151282042265,-0.0036778878420591354,0.0031272205524146557,0.006161265540868044,-0.0017796322936192155,-0.0044095274060964584,-0.20958776870607954,-3.6355195496016255,3.2268978114196067,-0.0020958776870607953,-0.036355195496016256,0.032268978114196066 +karman_re100,sr,100,40.0,0.9909315705299377,-0.36019280552864075,0.9361083507537842,-0.5525540709495544,1.0376931428909302,-0.374074786901474,-0.0004546665877569467,-0.0037410843651741743,0.005195862613618374,0.0065762437880039215,-0.0036661706399172544,-0.0031964106019586325,-0.9357158212155243,-2.285763066773061,4.576654294248171,-0.009357158212155244,-0.02285763066773061,0.04576654294248171 +karman_re100,sr,101,40.4,1.0566985607147217,-0.38227546215057373,0.9561969637870789,-0.5585854053497314,0.9584885239601135,-0.39195623993873596,0.0012444943422451615,-0.003355891676619649,0.005889839492738247,0.006190332118421793,-0.005948339123278856,-0.002048893366008997,-1.6899517845076486,-1.2211665393517674,5.641250821669464,-0.016899517845076487,-0.012211665393517675,0.05641250821669464 +karman_re100,sr,102,40.8,1.120506763458252,-0.36891743540763855,0.9697534441947937,-0.5335052609443665,0.8921326994895935,-0.36605164408683777,0.003600412281230092,-0.0024430332705378532,0.005047553218901157,0.005628890357911587,-0.008253423497080803,-0.001533500850200653,-2.2574899580157575,-0.72315959523308,6.139257765788152,-0.022574899580157574,-0.0072315959523308005,0.06139257765788152 +karman_re100,sr,103,41.2,1.1852091550827026,-0.334420770406723,0.9712794423103333,-0.47435662150382996,0.8392916917800903,-0.294023722410202,0.0049611302092671394,-0.0013345804763957858,0.003870505141094327,0.00484886160120368,-0.00914246030151844,-0.00241304119117558,-2.5364392903739663,-0.7532707769860267,6.109146584035205,-0.025364392903739662,-0.007532707769860267,0.06109146584035205 +karman_re100,sr,104,41.6,1.24637770652771,-0.27434056997299194,0.9528642892837524,-0.35931605100631714,0.8019258379936218,-0.17896252870559692,0.004469776526093483,0.00010902019857894629,0.002949691377580166,0.004432723391801119,-0.007122852373868227,-0.003981933929026127,-2.4815167741224724,-1.8384478967289066,5.023969464292326,-0.024815167741224723,-0.018384478967289068,0.05023969464292326 +karman_re100,sr,105,42.0,1.293494701385498,-0.17448323965072632,0.9115458726882935,-0.1643846333026886,0.7903461456298828,-0.03658388927578926,0.002917311852797866,0.0013201214605942369,0.0020911500323563814,0.004651300143450499,-0.003846400184556842,-0.004175852052867413,-1.9207909517266113,-3.1364415560156913,3.725975805005541,-0.019207909517266114,-0.031364415560156914,0.03725975805005541 +karman_re100,sr,106,42.4,1.2926325798034668,-0.013028540648519993,0.8764637112617493,0.1274338811635971,0.8121820688247681,0.10421787202358246,0.000817059597466141,0.0023447852581739426,0.0010568300494924188,0.005142176523804665,-0.001263085869140923,-0.003962429240345955,-1.1322653952661494,-3.12031750385121,3.7420998571700217,-0.011322653952661495,-0.031203175038512103,0.03742099857170022 +karman_re100,sr,107,42.8,1.2271535396575928,0.17217420041561127,0.8804375529289246,0.3865165412425995,0.8600548505783081,0.2234974056482315,-0.0007359831943176687,0.003161246422678232,-0.00019096489995718002,0.0051793502643704414,0.0007815086864866316,-0.0047989641316235065,-0.44239802926015453,-2.6597826754857383,4.202634685535494,-0.0044239802926015455,-0.026597826754857383,0.04202634685535494 +karman_re100,sr,108,43.2,1.1320990324020386,0.305036723613739,0.9080290794372559,0.510753870010376,0.9222918748855591,0.30612123012542725,-0.0011244082124903798,0.00368282338604331,-0.0017035841010510921,0.004434073343873024,0.0030567245557904243,-0.006124860607087612,0.18544654773684163,-3.182477652377589,3.679939708643643,0.0018544654773684163,-0.03182477652377589,0.03679939708643643 +karman_re100,sr,109,43.6,1.0402709245681763,0.3733289837837219,0.9362434148788452,0.5517919659614563,0.9902040362358093,0.35851359367370605,-0.00048423567204736173,0.00375396478921175,-0.0035690837539732456,0.0032579577527940273,0.005160885863006115,-0.0066153849475085735,0.9077704719994129,-4.536799074399602,2.32561828662163,0.00907770471999413,-0.04536799074399602,0.0232561828662163 +karman_re100,sr,110,44.0,0.960503339767456,0.3928205072879791,0.9565879106521606,0.5590187311172485,1.0560342073440552,0.3817910850048065,0.0011695254361256957,0.0033842839766293764,-0.0058676330372691154,0.0021012965589761734,0.005890033207833767,-0.006229334510862827,1.6647678146576381,-5.626599747983392,1.23581761303784,0.016647678146576382,-0.05626599747983392,0.012358176130378401 +karman_re100,sr,111,44.4,0.8929426670074463,0.3685763478279114,0.9696652293205261,0.5352533459663391,1.1190108060836792,0.3694128096103668,0.0035114146303385496,0.002477372530847788,-0.008207719773054123,0.0015244311653077602,0.005068004596978426,-0.0056537757627666,2.242136593724651,-6.130495104361453,0.7319222566597792,0.02242136593724651,-0.061304951043614525,0.0073192225665977915 +karman_re100,sr,112,44.8,0.8399637341499329,0.2984376847743988,0.9722462296485901,0.47855278849601746,1.1845009326934814,0.3358967900276184,0.004961703903973103,0.0013802200555801392,-0.009198378771543503,0.0023335753940045834,0.0038929167203605175,-0.004861297085881233,2.531623776159642,-6.131349508001849,0.7310678530193835,0.02531623776159642,-0.06131349508001849,0.007310678530193835 +karman_re100,sr,113,45.2,0.8010447025299072,0.18435989320278168,0.9534611701965332,0.365672767162323,1.244694471359253,0.27648720145225525,0.004519857000559568,-6.351870251819491e-05,-0.0072348350659012794,0.003945569042116404,0.002987396903336048,-0.004428138956427574,2.4964539790271725,-5.084062875573805,1.7783544854474278,0.024964539790271724,-0.05084062875573805,0.017783544854474278 +karman_re100,sr,114,45.6,0.7884973287582397,0.042105525732040405,0.9126700758934021,0.17340928316116333,1.2924484014511108,0.1777469515800476,0.002998401876538992,-0.001288101077079773,-0.003920411691069603,0.004224636126309633,0.002138586947694421,-0.004641613457351923,1.9493358537299137,-3.7467567528493584,3.115660608171874,0.019493358537299138,-0.03746756752849358,0.03115660608171874 +karman_re100,sr,115,46.0,0.8108007907867432,-0.09955187141895294,0.8788447380065918,-0.11774268746376038,1.2958816289901733,0.01834372617304325,0.0008982268045656383,-0.00231612054631114,-0.0013119266368448734,0.004005840048193932,0.0011078055249527097,-0.005157104693353176,1.1554250891378142,-3.70386635998316,3.158551001038072,0.011554250891378142,-0.0370386635998316,0.03158551001038072 +karman_re100,sr,116,46.4,0.8578677177429199,-0.22038346529006958,0.8815414309501648,-0.38137173652648926,1.231404423713684,-0.16703802347183228,-0.0007098452770151198,-0.0031315952073782682,0.0007151648169383407,0.00477149011567235,-0.0001566561113577336,-0.005212228745222092,0.4614325593089963,-4.1840101477349,2.6784072132863326,0.004614325593089963,-0.041840101477349,0.026784072132863327 +karman_re100,sr,117,46.8,0.9190807938575745,-0.30456873774528503,0.9078167676925659,-0.5093166828155518,1.1359175443649292,-0.3011209964752197,-0.001138456747867167,-0.0036574655678123236,0.0029621904250234365,0.006063276436179876,-0.0016708506736904383,-0.0044600521214306355,-0.16625251693309304,-3.7194036566896784,3.1430137043315534,-0.0016625251693309303,-0.037194036566896786,0.031430137043315536 +karman_re100,sr,118,47.2,0.9863687753677368,-0.35774654150009155,0.935203492641449,-0.5513830184936523,1.0432194471359253,-0.37076517939567566,-0.0005207958747632802,-0.0037535151932388544,0.005103047471493483,0.006586791947484016,-0.003506456268951297,-0.0032774568535387516,-0.8835010937636754,-2.3828749012118227,4.47954245980941,-0.008835010937636754,-0.023828749012118226,0.044795424598094095 +karman_re100,sr,119,47.6,1.0530340671539307,-0.38231146335601807,0.9560874104499817,-0.5592981576919556,0.9636772871017456,-0.3915797770023346,0.0011095675872638822,-0.00340396910905838,0.005912157241255045,0.006241481751203537,-0.005774428136646748,-0.002124359365552664,-1.6417954879694403,-1.267264599769553,5.595152761251679,-0.016417954879694403,-0.012672645997695532,0.055951527612516795 +karman_re100,sr,120,48.0,1.11874258518219,-0.37145379185676575,0.971540093421936,-0.5368741154670715,0.8979693055152893,-0.36923253536224365,0.0034424106124788523,-0.0025165111292153597,0.005139708984643221,0.005699427332729101,-0.008128267712891102,-0.001548171043395996,-2.228581776795601,-0.7390598460163456,6.123357515004887,-0.02228581776795601,-0.007390598460163456,0.061233575150048875 +karman_re100,sr,121,48.4,1.181355357170105,-0.33778342604637146,0.9717864990234375,-0.4799997806549072,0.8421920537948608,-0.299765944480896,0.004938558675348759,-0.0014180946163833141,0.003920300863683224,0.004892276134341955,-0.009192606434226036,-0.002295850310474634,-2.5301463281982577,-0.7167399972464548,6.1456773637747775,-0.025301463281982576,-0.007167399972464548,0.06145677363774778 +karman_re100,sr,122,48.8,1.2424933910369873,-0.2799351215362549,0.9538373351097107,-0.3690798878669739,0.8028466701507568,-0.18737684190273285,0.004543981049209833,1.0078106242872309e-05,0.0029958903323858976,0.00442699808627367,-0.00735478475689888,-0.0038857723120599985,-2.5005752578669256,-1.7334294792080551,5.1289878818131776,-0.025005752578669257,-0.01733429479208055,0.051289878818131775 +karman_re100,sr,123,49.2,1.2902127504348755,-0.18307623267173767,0.9126701354980469,-0.18061308562755585,0.7885792255401611,-0.0462418757379055,0.0030547764617949724,0.0012409547343850136,0.002156513510271907,0.004603669513016939,-0.00405421806499362,-0.004186262376606464,-1.9738294065887136,-3.07730607554415,3.785111285477082,-0.019738294065887136,-0.030773060755441502,0.03785111285477082 +karman_re100,sr,124,49.6,1.2959524393081665,-0.025453930720686913,0.8773354291915894,0.10673379898071289,0.8096601366996765,0.09520608186721802,0.0009749418240971863,0.0022820320446044207,0.001149910967797041,0.005123967304825783,-0.001395893283188343,-0.003975017461925745,-1.184359910241876,-3.158269955221933,3.704147405799299,-0.01184359910241876,-0.03158269955221933,0.03704147405799299 +karman_re100,sr,125,50.0,1.2344965934753418,0.16168585419654846,0.8796169757843018,0.3732661306858063,0.8569851517677307,0.21644246578216553,-0.000663495680782944,0.0031148744747042656,-9.228420094586909e-05,0.005221791099756956,0.0006556105799973011,-0.004745024256408215,-0.4854739667382147,-2.6799208414033706,4.182496519617862,-0.004854739667382147,-0.026799208414033708,0.04182496519617862 +karman_re100,sr,126,50.4,1.1398741006851196,0.2990816831588745,0.9065723419189453,0.5062061548233032,0.9184406995773315,0.3017337918281555,-0.001136289443820715,0.003651807550340891,-0.0016018155729398131,0.0045160893350839615,0.0028953799046576023,-0.006061898544430733,0.14262033142051403,-3.119455183427261,3.742962177593972,0.0014262033142051402,-0.03119455183427261,0.03742962177593972 +karman_re100,sr,127,50.8,1.0461487770080566,0.37092968821525574,0.9342673420906067,0.550428569316864,0.9852117896080017,0.355741947889328,-0.0005649965605698526,0.0037588090635836124,-0.003446767572313547,0.003335083369165659,0.005040077958256006,-0.006603402551263571,0.8575959156566402,-4.441999245250052,2.42041811577118,0.008575959156566402,-0.04441999245250052,0.0242041811577118 +karman_re100,sr,128,51.2,0.9652842879295349,0.3931315541267395,0.9549914598464966,0.5596358776092529,1.0510320663452148,0.3814530670642853,0.0010311208898201585,0.0034256414510309696,-0.005713315214961767,0.0021514513064175844,0.005893084220588207,-0.006243659649044275,1.6184050927031561,-5.568332830015141,1.2940845310060918,0.01618405092703156,-0.05568332830015141,0.012940845310060917 +karman_re100,sr,129,51.6,0.8973751068115234,0.3717100918292999,0.9692507386207581,0.5376918911933899,1.114612102508545,0.37105506658554077,0.003371749771758914,0.00255305296741426,-0.008054886013269424,0.00152983283624053,0.005170081276446581,-0.00569722056388855,2.21329066103322,-6.1070664491566,0.7553509118646322,0.0221329066103322,-0.061070664491566,0.007553509118646323 +karman_re100,sr,130,52.0,0.8428881764411926,0.3041616380214691,0.9722046852111816,0.483144074678421,1.1789573431015015,0.3383878469467163,0.004933214746415615,0.0014639614382758737,-0.009191312827169895,0.0022472147829830647,0.003970783669501543,-0.004915695637464523,2.521944618340739,-6.1562255643844,0.7061917966368321,0.02521944618340739,-0.061562255643843995,0.0070619179663683205 +karman_re100,sr,131,52.4,0.8051022291183472,0.19305898249149323,0.9578514695167542,0.3752855062484741,1.243029236793518,0.2819064259529114,0.004591396078467369,3.633076630649157e-05,-0.007444733288139105,0.0038816211745142937,0.0030489733908325434,-0.004451983142644167,2.509955427388799,-5.176104010146737,1.6863133508744952,0.025099554273887992,-0.05176104010146737,0.01686313350874495 +karman_re100,sr,132,52.8,0.78877854347229,0.05142217129468918,0.9163876175880432,0.18927258253097534,1.2899092435836792,0.1860399842262268,0.0031169624999165535,-0.0012090499512851238,-0.004145059734582901,0.004226107150316238,0.002187381498515606,-0.0046112556010484695,2.0011049181239313,-3.8041631773437117,3.05825418367752,0.020011049181239315,-0.03804163177343712,0.030582541836775202 +karman_re100,sr,133,53.2,0.8080243468284607,-0.09116421639919281,0.8797683119773865,-0.09776949882507324,1.2965209484100342,0.030777230858802795,0.0010476894676685333,-0.0022587173152714968,-0.0014818338677287102,0.003962155431509018,0.0011738348985090852,-0.00511497026309371,1.2075694206964436,-3.6830537450051297,3.179363616016102,0.012075694206964437,-0.0368305374500513,0.03179363616016102 +karman_re100,sr,134,53.6,0.8552308082580566,-0.21395893394947052,0.8813391923904419,-0.3685261905193329,1.2375167608261108,-0.15580430626869202,-0.0006357234087772667,-0.0030892009381204844,0.0005652316613122821,0.004671556409448385,-5.9824604250025004e-05,-0.005224209278821945,0.5064246592365538,-4.185023800521385,2.677393560499847,0.005064246592365538,-0.041850238005213855,0.02677393560499847 +karman_re100,sr,135,54.0,0.915122389793396,-0.3003174364566803,0.9061066508293152,-0.5044673681259155,1.1417497396469116,-0.29422348737716675,-0.001136000850237906,-0.003638708498328924,0.0028046551160514355,0.0059989457949995995,-0.001538813579827547,-0.0045323120430111885,-0.1191955526665708,-3.7925833589387716,3.0698340020824606,-0.001191955526665708,-0.03792583358938772,0.030698340020824607 +karman_re100,sr,136,54.4,0.982924222946167,-0.35507845878601074,0.9343540072441101,-0.5499085783958435,1.0488322973251343,-0.3678564727306366,-0.0005946898018009961,-0.0037659129593521357,0.004995671566575766,0.006613047327846289,-0.0033561885356903076,-0.003376859938725829,-0.8282808768095405,-2.472190226309051,4.390227134712181,-0.008282808768095406,-0.02472190226309051,0.04390227134712182 +karman_re100,sr,137,54.8,1.0498219728469849,-0.38191553950309753,0.9556938409805298,-0.5599068999290466,0.9684392809867859,-0.3916584253311157,0.0009596688905730844,-0.003444575471803546,0.005906426347792149,0.0062876129522919655,-0.005608766805380583,-0.002208309480920434,-1.592663949681267,-1.31509521781879,5.547322143202442,-0.01592663949681267,-0.0131509521781879,0.055473221432024426 +karman_re100,sr,138,55.2,1.1133021116256714,-0.3725411891937256,0.9695030450820923,-0.5389065742492676,0.8997663855552673,-0.3718967139720917,0.0032713008113205433,-0.0025835991837084293,0.005201348103582859,0.005732033401727676,-0.00798562727868557,-0.0015443649608641863,-2.1958980136291677,-0.7637892896573253,6.0986280713639065,-0.02195898013629168,-0.007637892896573253,0.06098628071363907 +karman_re100,sr,139,55.6,1.176970362663269,-0.3405023217201233,0.9717165231704712,-0.4856978952884674,0.8439401388168335,-0.30607229471206665,0.004902540240436792,-0.0015049704816192389,0.003987888805568218,0.004935319535434246,-0.00920946802943945,-0.002177153481170535,-2.514699724313483,-0.6929304229560227,6.1694869380652095,-0.025146997243134833,-0.0069293042295602274,0.0616948693806521 +karman_re100,sr,140,56.0,1.239060640335083,-0.28460174798965454,0.9558036923408508,-0.37921497225761414,0.8038504719734192,-0.1964154988527298,0.004610835108906031,-8.625668124295771e-05,0.003065321361646056,0.00443799514323473,-0.007554422598332167,-0.0038025856483727694,-2.5166794228860945,-1.6276690154749276,5.234748345546304,-0.025166794228860947,-0.016276690154749276,0.05234748345546304 +karman_re100,sr,141,56.4,1.2887377738952637,-0.19055801630020142,0.9162358045578003,-0.19705872237682343,0.7879282236099243,-0.05623456835746765,0.0031885886564850807,0.001174050266854465,0.0022280740085989237,0.004586016293615103,-0.004249665420502424,-0.004237292800098658,-2.0251396877820764,-3.015720198317054,3.846697162704178,-0.020251396877820765,-0.03015720198317054,0.03846697162704178 +karman_re100,sr,142,56.8,1.2989050149917603,-0.03699709102511406,0.8796958923339844,0.0869862362742424,0.807198166847229,0.08626014739274979,0.0011158634442836046,0.0022186802234500647,0.0012260421644896269,0.005108552053570747,-0.0015335062053054571,-0.003995480015873909,-1.2352771643480236,-3.2031815638276004,3.6592357971936322,-0.012352771643480236,-0.03203181563827601,0.03659235797193632 +karman_re100,sr,143,57.2,1.2406470775604248,0.15047568082809448,0.8793392777442932,0.3604135811328888,0.853007435798645,0.20941638946533203,-0.0005936473025940359,0.0030637315940111876,-1.3095795111439656e-05,0.005248650908470154,0.0005186166381463408,-0.004665741231292486,-0.5262340547085859,-2.7033810114965986,4.159036349524634,-0.005262340547085859,-0.027033810114965987,0.041590363495246335 +karman_re100,sr,144,57.6,1.1475375890731812,0.2920982241630554,0.9057184457778931,0.5023195743560791,0.9141140580177307,0.2978249490261078,-0.0011458572698757052,0.003627186641097069,-0.0015069787623360753,0.004580331034958363,0.0027292484883219004,-0.005967877339571714,0.1013952836467178,-3.0500493509996467,3.8123680100215855,0.001013952836467178,-0.03050049350999647,0.038123680100215857 +karman_re100,sr,145,58.0,1.0519813299179077,0.36724984645843506,0.9326416850090027,0.5490081310272217,0.9798780679702759,0.3531057834625244,-0.0006307576550170779,0.0037652438040822744,-0.0033109369687736034,0.0034050389658659697,0.004926380235701799,-0.006582965143024921,0.8078303925313289,-4.338512573100909,2.523904787920324,0.00807830392531329,-0.04338512573100909,0.025239047879203242 +karman_re100,sr,146,58.4,0.9707579016685486,0.3924212157726288,0.9541028738021851,0.5600849986076355,1.0463838577270508,0.3812634348869324,0.000905510620214045,0.00346716633066535,-0.0055405558086931705,0.0022193510085344315,0.005906702950596809,-0.006280021741986275,1.5708211096708449,-5.509225667269385,1.3531916937518464,0.01570821109670845,-0.05509225667269385,0.013531916937518465 +karman_re100,sr,147,58.8,0.9036527872085571,0.3745719790458679,0.9704306721687317,0.5407658219337463,1.1120085716247559,0.3735501170158386,0.0032149585895240307,0.00262887473218143,-0.00792321003973484,0.0015492546372115612,0.005269438493996859,-0.005759826861321926,2.182943215685276,-6.086444293721359,0.7759730672998728,0.021829432156852763,-0.060864442937213596,0.007759730672998728 +karman_re100,sr,148,59.2,0.8482308983802795,0.31008851528167725,0.9743291735649109,0.4888593256473541,1.176590085029602,0.34216880798339844,0.004904801957309246,0.001548560569062829,-0.009217058308422565,0.002157516311854124,0.004044550936669111,-0.004977724980562925,2.515781569998875,-6.1844635133519885,0.6779538476692437,0.025157815699988748,-0.061844635133519885,0.006779538476692437 +karman_re100,sr,149,59.6,0.8062533736228943,0.2011394500732422,0.9579634070396423,0.3839172422885895,1.237266182899475,0.2871217429637909,0.004652340896427631,0.00013752256927546114,-0.00765911815688014,0.0037736392114311457,0.003090893616899848,-0.004450533073395491,2.528932082289857,-5.2753174461272,1.587099914894032,0.02528932082289857,-0.05275317446127201,0.01587099914894032 +karman_re100,sr,150,60.0,0.7884842753410339,0.06125253811478615,0.9184607863426208,0.20514912903308868,1.2869027853012085,0.19496189057826996,0.0032517772633582354,-0.0011271933326497674,-0.004382507875561714,0.004216072149574757,0.0022456981241703033,-0.004564826376736164,2.0499812019244854,-3.8738234125658915,2.9885939484553408,0.020499812019244855,-0.03873823412565892,0.029885939484553408 +karman_re100,sr,151,60.4,0.8057259321212769,-0.0819079801440239,0.8802980184555054,-0.0761965811252594,1.2983566522598267,0.04380588233470917,0.001189521630294621,-0.0021764831617474556,-0.0016455012373626232,0.00394517881795764,0.0012579052709043026,-0.0050758663564920425,1.2639704949044845,-3.65925589364419,3.203161467377042,0.012639704949044846,-0.0365925589364419,0.03203161467377042 +karman_re100,sr,152,60.8,0.8509200811386108,-0.2060706913471222,0.878581166267395,-0.35267287492752075,1.2423213720321655,-0.14392565190792084,-0.0005478039965964854,-0.0030402459669858217,0.00042992678936570883,0.004602575674653053,4.71735475002788e-05,-0.0052431495860219,0.5536671855569095,-4.170554965102874,2.6918623959183576,0.0055366718555690956,-0.04170554965102874,0.026918623959183575 +karman_re100,sr,153,61.2,0.9115047454833984,-0.29542261362075806,0.9041596055030823,-0.49876338243484497,1.1493463516235352,-0.28764134645462036,-0.0011387832928448915,-0.00361407408490777,0.0026441963855177164,0.005943608470261097,-0.0014230577507987618,-0.004615396726876497,-0.07298940385475396,-3.8500741276271335,3.0123432333940983,-0.0007298940385475395,-0.03850074127627134,0.030123432333940985 +karman_re100,sr,154,61.6,0.978773295879364,-0.3518761098384857,0.9326418042182922,-0.5481359362602234,1.0552524328231812,-0.36534786224365234,-0.0006725372513756156,-0.0037670177407562733,0.004864975810050964,0.006617211736738682,-0.003222829895094037,-0.003473491407930851,-0.7756079433545215,-2.56270311716454,4.299714243856693,-0.007756079433545215,-0.025627031171645397,0.04299714243856693 +karman_re100,sr,155,62.0,1.0449433326721191,-0.38107091188430786,0.95379239320755,-0.5602915287017822,0.9730134010314941,-0.39207446575164795,0.0008162930607795715,-0.0034791557118296623,0.005884979851543903,0.00630857702344656,-0.005453439429402351,-0.002273150719702244,-1.542309907120683,-1.375558586485544,5.486858774535689,-0.01542309907120683,-0.01375558586485544,0.05486858774535689 +karman_re100,sr,156,62.4,1.1085695028305054,-0.37381961941719055,0.9683908224105835,-0.5413461923599243,0.903547465801239,-0.37524428963661194,0.0031094036530703306,-0.002654963405802846,0.00528289657086134,0.005764156114310026,-0.007836500182747841,-0.0015476017724722624,-2.162187993335092,-0.7924801699916592,6.069937191029573,-0.021621879933350917,-0.007924801699916592,0.06069937191029573 +karman_re100,sr,157,62.8,1.1725064516067505,-0.342993825674057,0.9722553491592407,-0.49090394377708435,0.8472673296928406,-0.3125055730342865,0.004863014444708824,-0.00158568168990314,0.004073620308190584,0.004990340676158667,-0.009189283475279808,-0.0020880817901343107,-2.501812769273937,-0.6740421953647715,6.188375165656461,-0.02501812769273937,-0.006740421953647715,0.06188375165656461 +karman_re100,sr,158,63.2,1.2354615926742554,-0.28913286328315735,0.958549439907074,-0.3886718451976776,0.8064022660255432,-0.2054271101951599,0.004675209987908602,-0.00018535114941187203,0.003133307909592986,0.004462381824851036,-0.007734635379165411,-0.0037318882532417774,-2.5291789452140456,-1.533448024999787,5.328969336021445,-0.025291789452140456,-0.01533448024999787,0.053289693360214455 +karman_re100,sr,159,63.6,1.2882128953933716,-0.19847482442855835,0.9218384623527527,-0.2134222537279129,0.7895876169204712,-0.06640893220901489,0.0033123930916190147,0.001101032248698175,0.0022906705271452665,0.004571100231260061,-0.004468717612326145,-0.004269798286259174,-2.0724702367188357,-2.9535455864361064,3.908871774585126,-0.020724702367188357,-0.029535455864361064,0.03908871774585126 +karman_re100,sr,160,64.0,1.3015358448028564,-0.04917658865451813,0.8828061819076538,0.06671148538589478,0.8057034015655518,0.07744910567998886,0.0012540025636553764,0.0021490980871021748,0.0012938075233250856,0.005078341346234083,-0.001700516906566918,-0.003983505070209503,-1.2889863670870532,-3.2341900825471357,3.6282272784740965,-0.012889863670870532,-0.03234190082547136,0.036282272784740964 +karman_re100,sr,161,64.4,1.24517023563385,0.1382649540901184,0.8783158659934998,0.3461204767227173,0.8487102389335632,0.2023039311170578,-0.0005184069741517305,0.0030132210813462734,7.12176479282789e-05,0.005250155925750732,0.00036619260208681226,-0.004556190222501755,-0.5710048438006006,-2.7153052099861035,4.147112151035128,-0.005710048438006006,-0.027153052099861037,0.04147112151035128 +karman_re100,sr,162,64.8,1.1520564556121826,0.28374138474464417,0.9027706384658813,0.49631503224372864,0.908254861831665,0.2930132746696472,-0.0011396268382668495,0.0035975242499262094,-0.0013868536334484816,0.004630591254681349,0.002558669075369835,-0.005863357335329056,0.05625046035190566,-2.9774308269078067,3.8849865341134255,0.0005625046035190566,-0.029774308269078068,0.03884986534113426 +karman_re100,sr,163,65.2,1.0577446222305298,0.36333900690078735,0.9313662052154541,0.5472948551177979,0.9754973649978638,0.3503069281578064,-0.0006932502728886902,0.0037737861275672913,-0.0031489955727010965,0.003496750257909298,0.004814255982637405,-0.006592662539333105,0.7523942815180455,-4.237303194190012,2.6251141668312203,0.007523942815180456,-0.042373031941900126,0.026251141668312203 +karman_re100,sr,164,65.6,0.976132333278656,0.39164260029792786,0.9536191821098328,0.5603800415992737,1.0426907539367676,0.38073933124542236,0.000762535841204226,0.003505707485601306,-0.005363736767321825,0.0023062455002218485,0.005901010241359472,-0.00633219676092267,1.5185579642299982,-5.4555975277258,1.4068198332954318,0.015185579642299983,-0.054555975277258,0.01406819833295432 +karman_re100,sr,165,66.0,0.906775951385498,0.37643688917160034,0.9689105153083801,0.5424547791481018,1.1069430112838745,0.37474414706230164,0.0030347618740051985,0.0026943066623061895,-0.007763249333947897,0.0015682547818869352,0.005335104651749134,-0.0058023142628371716,2.148139006559599,-6.06374154667,0.7986758143512317,0.02148139006559599,-0.060637415466700005,0.007986758143512317 +karman_re100,sr,166,66.4,0.8496373891830444,0.31531429290771484,0.9727945923805237,0.4933742582798004,1.1705679893493652,0.34464699029922485,0.004840198438614607,0.0016267279861494899,-0.00920427218079567,0.00204741139896214,0.0041009956039488316,-0.005021074321120977,2.497800003561291,-6.1998216167076965,0.6625957443135353,0.024978000035612912,-0.061998216167076965,0.006625957443135353 +karman_re100,sr,167,66.8,0.8075056672096252,0.20968811213970184,0.9589589834213257,0.39327290654182434,1.2331397533416748,0.2919991612434387,0.004704365506768227,0.0002404430997557938,-0.00785952527076006,0.003664185991510749,0.0031492868438363075,-0.004460723139345646,2.537257578807922,-5.375659784993183,1.4867575760280494,0.02537257578807922,-0.05375659784993183,0.014867575760280494 +karman_re100,sr,168,67.2,0.7881357073783875,0.07136892527341843,0.9211354851722717,0.220906600356102,1.2846407890319824,0.20277900993824005,0.003377961227670312,-0.0010556912748143077,-0.004593070596456528,0.004243575502187014,0.0023150525521486998,-0.00453958148136735,2.099333318451394,-3.9520570676386813,2.910360293382551,0.02099333318451394,-0.03952057067638681,0.02910360293382551 +karman_re100,sr,169,67.6,0.8034278750419617,-0.07236318290233612,0.8818711042404175,-0.055069632828235626,1.3007007837295532,0.055873509496450424,0.0013375469716265798,-0.0021147197112441063,-0.001781473751179874,0.003975563682615757,0.0013432560954242945,-0.005052974447607994,1.3173494962825087,-3.6247642946529193,3.2376530663683134,0.013173494962825088,-0.03624764294652919,0.03237653066368314 +karman_re100,sr,170,68.0,0.8476752638816833,-0.19827325642108917,0.8780550956726074,-0.33756187558174133,1.2491421699523926,-0.13229183852672577,-0.0004651772906072438,-0.002990741515532136,0.00030884056468494236,0.004546745214611292,0.00013532370212487876,-0.005270351655781269,0.5958725982286561,-4.1357177680603385,2.726699592960894,0.005958725982286562,-0.04135717768060339,0.02726699592960894 +karman_re100,sr,171,68.4,0.9068112969398499,-0.29042619466781616,0.9021084308624268,-0.4930369555950165,1.1566075086593628,-0.2803190052509308,-0.0011393914464861155,-0.0035824289079755545,0.0024809243623167276,0.005852608010172844,-0.001330380910076201,-0.004683479201048613,-0.03308892250077687,-3.9043683427100517,2.9580490183111805,-0.0003308892250077687,-0.03904368342710052,0.029580490183111804 +karman_re100,sr,172,68.8,0.9733304381370544,-0.3486511707305908,0.9304006695747375,-0.5462883114814758,1.061312198638916,-0.3619542717933655,-0.0007363028125837445,-0.003769202157855034,0.004734127316623926,0.006586990784853697,-0.0031021619215607643,-0.003545149229466915,-0.7267995912579257,-2.666725999153576,4.195691361867656,-0.007267995912579257,-0.02666725999153576,0.04195691361867656 +karman_re100,sr,173,69.2,1.0398887395858765,-0.3801921606063843,0.952318549156189,-0.5603960156440735,0.9784551858901978,-0.3916202187538147,0.0006922903703525662,-0.0035159336403012276,0.005875949747860432,0.006329989060759544,-0.005295220762491226,-0.0023324168287217617,-1.4943467941405937,-1.4421761886440534,5.420241172377179,-0.014943467941405938,-0.014421761886440534,0.05420241172377179 +karman_re100,sr,174,69.6,1.1039754152297974,-0.37528789043426514,0.9678213596343994,-0.5434466600418091,0.9085568189620972,-0.37779632210731506,0.002954077674075961,-0.002728960709646344,0.005378974135965109,0.005811141803860664,-0.007680742535740137,-0.0015684727113693953,-2.1302943691252882,-0.8172326027541109,6.045184758267121,-0.021302943691252883,-0.008172326027541109,0.06045184758267121 +karman_re100,sr,175,70.0,1.1683188676834106,-0.3457486033439636,0.9731624722480774,-0.49548912048339844,0.8517695665359497,-0.3181355595588684,0.004816774278879166,-0.0016651410842314363,0.004154955968260765,0.005051789339631796,-0.009172330610454082,-0.0020141275599598885,-2.4904320332703933,-0.6569659977321796,6.205451363289052,-0.024904320332703934,-0.006569659977321796,0.06205451363289052 +karman_re100,sr,176,70.4,1.2315462827682495,-0.29401201009750366,0.9608369469642639,-0.3972320556640625,0.8096109628677368,-0.21375048160552979,0.004732249770313501,-0.0002877172955777496,0.0031876168213784695,0.004482333082705736,-0.007930951192975044,-0.003637166228145361,-2.5414564685094527,-1.4449093059199605,5.417508055101272,-0.025414564685094527,-0.014449093059199605,0.05417508055101272 +karman_re100,sr,177,70.8,1.2831611633300781,-0.20627082884311676,0.9236384630203247,-0.22796502709388733,0.7890151739120483,-0.0759875550866127,0.003428318304941058,0.0010180961107835174,0.002336804987862706,0.004533004947006702,-0.004701222758740187,-0.004249574150890112,-2.1202632984399967,-2.878561771011908,3.983855590009324,-0.021202632984399967,-0.02878561771011908,0.03983855590009324 +karman_re100,sr,178,71.2,1.3002451658248901,-0.06198880076408386,0.8829749822616577,0.04504162445664406,0.8024697303771973,0.06805428862571716,0.001398047199472785,0.002076050965115428,0.0013656234368681908,0.005026945378631353,-0.001877932227216661,-0.003950438462197781,-1.342121746726764,-3.2458758640550194,3.616541496966213,-0.01342121746726764,-0.032458758640550193,0.03616541496966213 +karman_re100,sr,179,71.6,1.2502105236053467,0.12574553489685059,0.8770898580551147,0.3299154043197632,0.8453758358955383,0.19471032917499542,-0.00042304140515625477,0.0029640141874551773,0.000172025800566189,0.0052558970637619495,0.00022439606254920363,-0.004477248061448336,-0.6185321726798065,-2.7272906113023083,4.135126749718924,-0.006185321726798066,-0.027272906113023083,0.04135126749718924 +karman_re100,sr,180,72.0,1.1586942672729492,0.2760191559791565,0.900791347026825,0.48984473943710327,0.9044281244277954,0.288080096244812,-0.0011285125510767102,0.0035721706226468086,-0.0012645971728488803,0.004703131504356861,0.002401921199634671,-0.005800303071737289,0.009986784653287,-2.9220571888365767,3.940360172184656,9.986784653286999e-05,-0.029220571888365767,0.03940360172184656 +karman_re100,sr,181,72.4,1.064130187034607,0.35989826917648315,0.9300458431243896,0.5451562404632568,0.9717720746994019,0.3470674157142639,-0.0007621424156241119,0.0037754105869680643,-0.0030172569677233696,0.0035958250518888235,0.004678772762417793,-0.006599134299904108,0.6991893495814389,-4.148639176785872,2.71377818423536,0.006991893495814389,-0.041486391767858725,0.0271377818423536 +karman_re100,sr,182,72.8,0.9809878468513489,0.39131590723991394,0.9523361325263977,0.5604022741317749,1.0386302471160889,0.3797176778316498,0.0006242413655854762,0.0035356986336410046,-0.005208206363022327,0.0023877331987023354,0.005866710562258959,-0.0063663506880402565,1.4675999067016692,-5.39504524748991,1.467372113531322,0.014675999067016693,-0.0539504524748991,0.01467372113531322 +karman_re100,sr,183,73.2,0.9102020263671875,0.37912091612815857,0.9675590991973877,0.5446292161941528,1.1023305654525757,0.375936895608902,0.0028582194354385138,0.002765299053862691,-0.007611408364027739,0.0015826288145035505,0.005403416231274605,-0.0058366223238408566,2.1119392227157396,-6.0327904246312265,0.8296269363900061,0.021119392227157398,-0.060327904246312264,0.008296269363900061 +karman_re100,sr,184,73.6,0.8523475527763367,0.32117393612861633,0.9726876020431519,0.4981515109539032,1.1660280227661133,0.34702736139297485,0.004779260605573654,0.0017051053000614047,-0.009174955077469349,0.0019527957774698734,0.004178858827799559,-0.005070853978395462,2.4818713065774447,-6.212856296336377,0.6495610646848551,0.024818713065774448,-0.062128562963363776,0.006495610646848551 +karman_re100,sr,185,74.0,0.8104400038719177,0.21870005130767822,0.9620007276535034,0.4027937352657318,1.230751633644104,0.2966421842575073,0.004768576472997665,0.00034066871739923954,-0.008040662854909897,0.0035783385392278433,0.0032236380502581596,-0.0044899373315274715,2.5465151160642185,-5.470078542811317,1.392338818209916,0.025465151160642185,-0.05470078542811317,0.013923388182099159 +karman_re100,sr,186,74.4,0.7885469198226929,0.08148708939552307,0.9250037670135498,0.2361394315958023,1.2823350429534912,0.20989200472831726,0.0034992375876754522,-0.0009833619697019458,-0.004802474286407232,0.004277920350432396,0.002379489131271839,-0.004524105694144964,2.1480539365303284,-4.027294829119932,2.8351225319013,0.021480539365303284,-0.040272948291199324,0.028351225319013 +karman_re100,sr,187,74.8,0.8014114499092102,-0.06300034373998642,0.8844383358955383,-0.03443199768662453,1.3020923137664795,0.06759058684110641,0.0014795097522437572,-0.002046791836619377,-0.001940133166499436,0.00398830883204937,0.0014116198290139437,-0.005024940241128206,1.369569662710655,-3.592187034823148,3.2702303261980843,0.013695696627106551,-0.03592187034823148,0.03270230326198084 +karman_re100,sr,188,75.2,0.8435689806938171,-0.1906702220439911,0.8773382306098938,-0.322235107421875,1.254079818725586,-0.11995062232017517,-0.0003809717600233853,-0.002936738543212414,0.0001645454321987927,0.004458834417164326,0.00021173033746890724,-0.0052765230648219585,0.6391649403636399,-4.109052518594762,2.7533648424264703,0.0063916494036364,-0.04109052518594762,0.027533648424264704 +karman_re100,sr,189,75.6,0.9016810655593872,-0.28559380769729614,0.8999510407447815,-0.48700907826423645,1.1626375913619995,-0.27203449606895447,-0.00113144691567868,-0.003551263827830553,0.002313032979145646,0.005742085166275501,-0.0012264495017006993,-0.004732170607894659,0.008997959337518959,-3.9658878407519715,2.896529520269261,8.997959337518959e-05,-0.039658878407519714,0.02896529520269261 +karman_re100,sr,190,76.0,0.970754861831665,-0.34642982482910156,0.9309855699539185,-0.5457130074501038,1.0698977708816528,-0.3586740791797638,-0.0007924551609903574,-0.003782808780670166,0.004616613499820232,0.006582470610737801,-0.0029690603259950876,-0.003629729151725769,-0.6749641491531776,-2.770834747794997,4.091582613226236,-0.006749641491531776,-0.02770834747794997,0.040915826132262356 +karman_re100,sr,191,76.4,1.035456895828247,-0.37935423851013184,0.9513185620307922,-0.5604344606399536,0.9838892221450806,-0.39062267541885376,0.000568479998037219,-0.0035510649904608727,0.005862336605787277,0.00637237960472703,-0.005123710259795189,-0.0024124523624777794,-1.4465555084116932,-1.5004379302538282,5.361979430767404,-0.014465555084116932,-0.015004379302538283,0.05361979430767404 +karman_re100,sr,192,76.8,1.1001596450805664,-0.376871258020401,0.9675747156143188,-0.5455987453460693,0.9135192632675171,-0.3799137473106384,0.00279046269133687,-0.002798903500661254,0.005453398916870356,0.005861631128937006,-0.007527219131588936,-0.001602708245627582,-2.094992082970196,-0.8418483187544314,6.020569042266801,-0.02094992082970196,-0.008418483187544314,0.06020569042266801 +karman_re100,sr,193,77.2,1.1640690565109253,-0.34867390990257263,0.9733201861381531,-0.5002210140228271,0.8554245233535767,-0.3235398530960083,0.004747860599309206,-0.0017451102612540126,0.004224021919071674,0.005110033787786961,-0.009152202866971493,-0.0019320499850437045,-2.475348264604408,-0.6463377919349185,6.216079569086314,-0.02475348264604408,-0.006463377919349185,0.06216079569086314 +karman_re100,sr,194,77.6,1.2270820140838623,-0.29895448684692383,0.9615915417671204,-0.4060746729373932,0.8114462494850159,-0.22209884226322174,0.004782107658684254,-0.0003933733969461173,0.0032387974206358194,0.0044939396902918816,-0.008124799467623234,-0.0035174954682588577,-2.55078877503991,-1.35315401290705,5.509263348114182,-0.0255078877503991,-0.0135315401290705,0.055092633481141816 +karman_re100,sr,195,78.0,1.280157446861267,-0.21428605914115906,0.9259645938873291,-0.24300432205200195,0.7890362739562988,-0.08619551360607147,0.0035533057525753975,0.000936869706492871,0.0023970685433596373,0.004502677824348211,-0.004933987744152546,-0.004249365534633398,-2.1669892552115266,-2.792720695927837,4.069696665093395,-0.021669892552115266,-0.027927206959278368,0.040696966650933954 +karman_re100,sr,196,78.4,1.3015018701553345,-0.07288794964551926,0.8839729428291321,0.026137324050068855,0.8005424737930298,0.05951029434800148,0.0015342239057645202,0.002023308537900448,0.0014233803376555443,0.004972199909389019,-0.002045800443738699,-0.00392556469887495,-1.3980010344087144,-3.2655700811103223,3.596847279910911,-0.013980010344087144,-0.03265570081110322,0.03596847279910911 +karman_re100,sr,197,78.8,1.2565661668777466,0.11344180256128311,0.8761621713638306,0.3129923939704895,0.8421666026115417,0.1865837126970291,-0.0003239727520849556,0.0029145360458642244,0.00027105529443360865,0.005275582894682884,0.00010263636067975312,-0.00443251384422183,-0.6615579161766085,-2.7468234477697955,4.115593913251437,-0.006615579161766086,-0.027468234477697955,0.04115593913251437 +karman_re100,sr,198,79.2,1.166500449180603,0.2683446705341339,0.8988792300224304,0.4830555021762848,0.9004372358322144,0.28276166319847107,-0.0011182058369740844,0.003539798781275749,-0.0011613968526944518,0.0047712079249322414,0.0022471232805401087,-0.005732443183660507,-0.03211676931235286,-2.8799335060083386,3.9824838550128936,-0.00032116769312352865,-0.02879933506008339,0.03982483855012894 +karman_re100,sr,199,79.6,1.0705935955047607,0.35649165511131287,0.9278521537780762,0.5430580377578735,0.9668564796447754,0.34363627433776855,-0.0008200268493965268,0.003771465737372637,-0.002898663515225053,0.0036771062295883894,0.00454107066616416,-0.006579733919352293,0.6499901903879531,-4.059751662492192,2.80266569852904,0.006499901903879532,-0.04059751662492192,0.028026656985290402 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_long.csv new file mode 100644 index 0000000..09976ce --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re100,target,0,0.0,velocity,upper_ux,0.8584204912185669 +karman_re100,target,0,0.0,velocity,upper_uy,0.3772485852241516 +karman_re100,target,0,0.0,velocity,center_ux,1.1368398666381836 +karman_re100,target,0,0.0,velocity,center_uy,0.5415143370628357 +karman_re100,target,0,0.0,velocity,lower_ux,1.235891342163086 +karman_re100,target,0,0.0,velocity,lower_uy,0.3400333523750305 +karman_re100,target,1,0.4,velocity,upper_ux,0.7933717370033264 +karman_re100,target,1,0.4,velocity,upper_uy,0.2655923664569855 +karman_re100,target,1,0.4,velocity,center_ux,1.1476922035217285 +karman_re100,target,1,0.4,velocity,center_uy,0.40260231494903564 +karman_re100,target,1,0.4,velocity,lower_ux,1.2943214178085327 +karman_re100,target,1,0.4,velocity,lower_uy,0.2616910934448242 +karman_re100,target,2,0.8,velocity,upper_ux,0.7587673664093018 +karman_re100,target,2,0.8,velocity,upper_uy,0.09187765419483185 +karman_re100,target,2,0.8,velocity,center_ux,1.1470205783843994 +karman_re100,target,2,0.8,velocity,center_uy,0.15023547410964966 +karman_re100,target,2,0.8,velocity,lower_ux,1.3244311809539795 +karman_re100,target,2,0.8,velocity,lower_uy,0.13604377210140228 +karman_re100,target,3,1.2,velocity,upper_ux,0.7704558372497559 +karman_re100,target,3,1.2,velocity,upper_uy,-0.10145293176174164 +karman_re100,target,3,1.2,velocity,center_ux,1.135690450668335 +karman_re100,target,3,1.2,velocity,center_uy,-0.1461048573255539 +karman_re100,target,3,1.2,velocity,lower_ux,1.3096165657043457 +karman_re100,target,3,1.2,velocity,lower_uy,-0.023924974724650383 +karman_re100,target,4,1.6,velocity,upper_ux,0.8279091119766235 +karman_re100,target,4,1.6,velocity,upper_uy,-0.2547966539859772 +karman_re100,target,4,1.6,velocity,center_ux,1.1198042631149292 +karman_re100,target,4,1.6,velocity,center_uy,-0.384231299161911 +karman_re100,target,4,1.6,velocity,lower_ux,1.2552186250686646 +karman_re100,target,4,1.6,velocity,lower_uy,-0.17608577013015747 +karman_re100,target,5,2.0,velocity,upper_ux,0.9128803014755249 +karman_re100,target,5,2.0,velocity,upper_uy,-0.33062803745269775 +karman_re100,target,5,2.0,velocity,center_ux,1.1053030490875244 +karman_re100,target,5,2.0,velocity,center_uy,-0.506623387336731 +karman_re100,target,5,2.0,velocity,lower_ux,1.1788685321807861 +karman_re100,target,5,2.0,velocity,lower_uy,-0.28890302777290344 +karman_re100,target,6,2.4,velocity,upper_ux,1.003257393836975 +karman_re100,target,6,2.4,velocity,upper_uy,-0.35395416617393494 +karman_re100,target,6,2.4,velocity,center_ux,1.101739525794983 +karman_re100,target,6,2.4,velocity,center_uy,-0.547501802444458 +karman_re100,target,6,2.4,velocity,lower_ux,1.0990997552871704 +karman_re100,target,6,2.4,velocity,lower_uy,-0.3623273968696594 +karman_re100,target,7,2.8,velocity,upper_ux,1.0856614112854004 +karman_re100,target,7,2.8,velocity,upper_uy,-0.36834025382995605 +karman_re100,target,7,2.8,velocity,center_ux,1.107029914855957 +karman_re100,target,7,2.8,velocity,center_uy,-0.5733320116996765 +karman_re100,target,7,2.8,velocity,lower_ux,1.0169382095336914 +karman_re100,target,7,2.8,velocity,lower_uy,-0.40744006633758545 +karman_re100,target,8,3.2,velocity,upper_ux,1.1644058227539062 +karman_re100,target,8,3.2,velocity,upper_uy,-0.37401705980300903 +karman_re100,target,8,3.2,velocity,center_ux,1.119808554649353 +karman_re100,target,8,3.2,velocity,center_uy,-0.5829169750213623 +karman_re100,target,8,3.2,velocity,lower_ux,0.9350130558013916 +karman_re100,target,8,3.2,velocity,lower_uy,-0.4195091128349304 +karman_re100,target,9,3.6,velocity,upper_ux,1.2352972030639648 +karman_re100,target,9,3.6,velocity,upper_uy,-0.3397936224937439 +karman_re100,target,9,3.6,velocity,center_ux,1.1358156204223633 +karman_re100,target,9,3.6,velocity,center_uy,-0.5410215854644775 +karman_re100,target,9,3.6,velocity,lower_ux,0.8572074174880981 +karman_re100,target,9,3.6,velocity,lower_uy,-0.3767562508583069 +karman_re100,target,10,4.0,velocity,upper_ux,1.2943018674850464 +karman_re100,target,10,4.0,velocity,upper_uy,-0.2612610161304474 +karman_re100,target,10,4.0,velocity,center_ux,1.1472806930541992 +karman_re100,target,10,4.0,velocity,center_uy,-0.4015907049179077 +karman_re100,target,10,4.0,velocity,lower_ux,0.7930717468261719 +karman_re100,target,10,4.0,velocity,lower_uy,-0.26486170291900635 +karman_re100,target,11,4.4,velocity,upper_ux,1.3250856399536133 +karman_re100,target,11,4.4,velocity,upper_uy,-0.1352805197238922 +karman_re100,target,11,4.4,velocity,center_ux,1.1474056243896484 +karman_re100,target,11,4.4,velocity,center_uy,-0.14870686829090118 +karman_re100,target,11,4.4,velocity,lower_ux,0.7595500946044922 +karman_re100,target,11,4.4,velocity,lower_uy,-0.09094157814979553 +karman_re100,target,12,4.8,velocity,upper_ux,1.3104056119918823 +karman_re100,target,12,4.8,velocity,upper_uy,0.025076797232031822 +karman_re100,target,12,4.8,velocity,center_ux,1.136481523513794 +karman_re100,target,12,4.8,velocity,center_uy,0.14796078205108643 +karman_re100,target,12,4.8,velocity,lower_ux,0.7719810009002686 +karman_re100,target,12,4.8,velocity,lower_uy,0.10250476002693176 +karman_re100,target,13,5.2,velocity,upper_ux,1.2544374465942383 +karman_re100,target,13,5.2,velocity,upper_uy,0.1772232949733734 +karman_re100,target,13,5.2,velocity,center_ux,1.1193439960479736 +karman_re100,target,13,5.2,velocity,center_uy,0.38553982973098755 +karman_re100,target,13,5.2,velocity,lower_ux,0.8284285664558411 +karman_re100,target,13,5.2,velocity,lower_uy,0.25543034076690674 +karman_re100,target,14,5.6,velocity,upper_ux,1.1770727634429932 +karman_re100,target,14,5.6,velocity,upper_uy,0.2897234559059143 +karman_re100,target,14,5.6,velocity,center_ux,1.1040130853652954 +karman_re100,target,14,5.6,velocity,center_uy,0.5070653557777405 +karman_re100,target,14,5.6,velocity,lower_ux,0.9124644994735718 +karman_re100,target,14,5.6,velocity,lower_uy,0.33068138360977173 +karman_re100,target,15,6.0,velocity,upper_ux,1.0966600179672241 +karman_re100,target,15,6.0,velocity,upper_uy,0.3624647557735443 +karman_re100,target,15,6.0,velocity,center_ux,1.0999159812927246 +karman_re100,target,15,6.0,velocity,center_uy,0.5469920635223389 +karman_re100,target,15,6.0,velocity,lower_ux,1.002146601676941 +karman_re100,target,15,6.0,velocity,lower_uy,0.35344329476356506 +karman_re100,target,16,6.4,velocity,upper_ux,1.0178581476211548 +karman_re100,target,16,6.4,velocity,upper_uy,0.40838754177093506 +karman_re100,target,16,6.4,velocity,center_ux,1.108801245689392 +karman_re100,target,16,6.4,velocity,center_uy,0.5742221474647522 +karman_re100,target,16,6.4,velocity,lower_ux,1.0878095626831055 +karman_re100,target,16,6.4,velocity,lower_uy,0.3687598407268524 +karman_re100,target,17,6.8,velocity,upper_ux,0.9354466199874878 +karman_re100,target,17,6.8,velocity,upper_uy,0.4196390211582184 +karman_re100,target,17,6.8,velocity,center_ux,1.1211299896240234 +karman_re100,target,17,6.8,velocity,center_uy,0.5828365087509155 +karman_re100,target,17,6.8,velocity,lower_ux,1.1660131216049194 +karman_re100,target,17,6.8,velocity,lower_uy,0.37378910183906555 +karman_re100,target,18,7.2,velocity,upper_ux,0.8573048114776611 +karman_re100,target,18,7.2,velocity,upper_uy,0.37631770968437195 +karman_re100,target,18,7.2,velocity,center_ux,1.1369131803512573 +karman_re100,target,18,7.2,velocity,center_uy,0.5403704643249512 +karman_re100,target,18,7.2,velocity,lower_ux,1.2365596294403076 +karman_re100,target,18,7.2,velocity,lower_uy,0.33917275071144104 +karman_re100,target,19,7.6,velocity,upper_ux,0.791826605796814 +karman_re100,target,19,7.6,velocity,upper_uy,0.263823926448822 +karman_re100,target,19,7.6,velocity,center_ux,1.1468801498413086 +karman_re100,target,19,7.6,velocity,center_uy,0.4000270962715149 +karman_re100,target,19,7.6,velocity,lower_ux,1.2939034700393677 +karman_re100,target,19,7.6,velocity,lower_uy,0.26034221053123474 +karman_re100,target,20,8.0,velocity,upper_ux,0.7584874629974365 +karman_re100,target,20,8.0,velocity,upper_uy,0.08959958702325821 +karman_re100,target,20,8.0,velocity,center_ux,1.1468262672424316 +karman_re100,target,20,8.0,velocity,center_uy,0.14669020473957062 +karman_re100,target,20,8.0,velocity,lower_ux,1.324235200881958 +karman_re100,target,20,8.0,velocity,lower_uy,0.13419963419437408 +karman_re100,target,21,8.4,velocity,upper_ux,0.7719693183898926 +karman_re100,target,21,8.4,velocity,upper_uy,-0.10381671786308289 +karman_re100,target,21,8.4,velocity,center_ux,1.1365605592727661 +karman_re100,target,21,8.4,velocity,center_uy,-0.1497778594493866 +karman_re100,target,21,8.4,velocity,lower_ux,1.309996485710144 +karman_re100,target,21,8.4,velocity,lower_uy,-0.026068156585097313 +karman_re100,target,22,8.8,velocity,upper_ux,0.8294631838798523 +karman_re100,target,22,8.8,velocity,upper_uy,-0.256427526473999 +karman_re100,target,22,8.8,velocity,center_ux,1.1201248168945312 +karman_re100,target,22,8.8,velocity,center_uy,-0.3867265284061432 +karman_re100,target,22,8.8,velocity,lower_ux,1.254632830619812 +karman_re100,target,22,8.8,velocity,lower_uy,-0.17794466018676758 +karman_re100,target,23,9.2,velocity,upper_ux,0.9141712784767151 +karman_re100,target,23,9.2,velocity,upper_uy,-0.3312492370605469 +karman_re100,target,23,9.2,velocity,center_ux,1.1052151918411255 +karman_re100,target,23,9.2,velocity,center_uy,-0.5075727105140686 +karman_re100,target,23,9.2,velocity,lower_ux,1.1776421070098877 +karman_re100,target,23,9.2,velocity,lower_uy,-0.2901743948459625 +karman_re100,target,24,9.6,velocity,upper_ux,1.0027797222137451 +karman_re100,target,24,9.6,velocity,upper_uy,-0.3537701368331909 +karman_re100,target,24,9.6,velocity,center_ux,1.0999817848205566 +karman_re100,target,24,9.6,velocity,center_uy,-0.5471999645233154 +karman_re100,target,24,9.6,velocity,lower_ux,1.0960441827774048 +karman_re100,target,24,9.6,velocity,lower_uy,-0.3626973628997803 +karman_re100,target,25,10.0,velocity,upper_ux,1.0858912467956543 +karman_re100,target,25,10.0,velocity,upper_uy,-0.3685588538646698 +karman_re100,target,25,10.0,velocity,center_ux,1.1063634157180786 +karman_re100,target,25,10.0,velocity,center_uy,-0.5736711025238037 +karman_re100,target,25,10.0,velocity,lower_ux,1.0149235725402832 +karman_re100,target,25,10.0,velocity,lower_uy,-0.40787455439567566 +karman_re100,target,26,10.4,velocity,upper_ux,1.1659252643585205 +karman_re100,target,26,10.4,velocity,upper_uy,-0.3738739490509033 +karman_re100,target,26,10.4,velocity,center_ux,1.1205884218215942 +karman_re100,target,26,10.4,velocity,center_uy,-0.5827891826629639 +karman_re100,target,26,10.4,velocity,lower_ux,0.9344055652618408 +karman_re100,target,26,10.4,velocity,lower_uy,-0.41936007142066956 +karman_re100,target,27,10.8,velocity,upper_ux,1.2370781898498535 +karman_re100,target,27,10.8,velocity,upper_uy,-0.3389963209629059 +karman_re100,target,27,10.8,velocity,center_ux,1.1369521617889404 +karman_re100,target,27,10.8,velocity,center_uy,-0.5399372577667236 +karman_re100,target,27,10.8,velocity,lower_ux,0.8569769263267517 +karman_re100,target,27,10.8,velocity,lower_uy,-0.37570738792419434 +karman_re100,target,28,11.2,velocity,upper_ux,1.2951843738555908 +karman_re100,target,28,11.2,velocity,upper_uy,-0.25984352827072144 +karman_re100,target,28,11.2,velocity,center_ux,1.1476027965545654 +karman_re100,target,28,11.2,velocity,center_uy,-0.3988019824028015 +karman_re100,target,28,11.2,velocity,lower_ux,0.7923638820648193 +karman_re100,target,28,11.2,velocity,lower_uy,-0.26277539134025574 +karman_re100,target,29,11.6,velocity,upper_ux,1.325142502784729 +karman_re100,target,29,11.6,velocity,upper_uy,-0.13322335481643677 +karman_re100,target,29,11.6,velocity,center_ux,1.147280216217041 +karman_re100,target,29,11.6,velocity,center_uy,-0.1446620225906372 +karman_re100,target,29,11.6,velocity,lower_ux,0.7591198682785034 +karman_re100,target,29,11.6,velocity,lower_uy,-0.08818918466567993 +karman_re100,target,30,12.0,velocity,upper_ux,1.3091200590133667 +karman_re100,target,30,12.0,velocity,upper_uy,0.027214614674448967 +karman_re100,target,30,12.0,velocity,center_ux,1.135496973991394 +karman_re100,target,30,12.0,velocity,center_uy,0.15174290537834167 +karman_re100,target,30,12.0,velocity,lower_ux,0.7714856863021851 +karman_re100,target,30,12.0,velocity,lower_uy,0.1050395742058754 +karman_re100,target,31,12.4,velocity,upper_ux,1.2532716989517212 +karman_re100,target,31,12.4,velocity,upper_uy,0.17882320284843445 +karman_re100,target,31,12.4,velocity,center_ux,1.1187938451766968 +karman_re100,target,31,12.4,velocity,center_uy,0.38782715797424316 +karman_re100,target,31,12.4,velocity,lower_ux,0.8288736939430237 +karman_re100,target,31,12.4,velocity,lower_uy,0.2569805085659027 +karman_re100,target,32,12.8,velocity,upper_ux,1.1770007610321045 +karman_re100,target,32,12.8,velocity,upper_uy,0.29075175523757935 +karman_re100,target,32,12.8,velocity,center_ux,1.104743480682373 +karman_re100,target,32,12.8,velocity,center_uy,0.5079305171966553 +karman_re100,target,32,12.8,velocity,lower_ux,0.9143919944763184 +karman_re100,target,32,12.8,velocity,lower_uy,0.33127617835998535 +karman_re100,target,33,13.2,velocity,upper_ux,1.0961319208145142 +karman_re100,target,33,13.2,velocity,upper_uy,0.36310917139053345 +karman_re100,target,33,13.2,velocity,center_ux,1.1003828048706055 +karman_re100,target,33,13.2,velocity,center_uy,0.5473290681838989 +karman_re100,target,33,13.2,velocity,lower_ux,1.0037388801574707 +karman_re100,target,33,13.2,velocity,lower_uy,0.3537008762359619 +karman_re100,target,34,13.6,velocity,upper_ux,1.0154926776885986 +karman_re100,target,34,13.6,velocity,upper_uy,0.40816983580589294 +karman_re100,target,34,13.6,velocity,center_ux,1.1074190139770508 +karman_re100,target,34,13.6,velocity,center_uy,0.5738195776939392 +karman_re100,target,34,13.6,velocity,lower_ux,1.0874433517456055 +karman_re100,target,34,13.6,velocity,lower_uy,0.36856064200401306 +karman_re100,target,35,14.0,velocity,upper_ux,0.9340183734893799 +karman_re100,target,35,14.0,velocity,upper_uy,0.41935575008392334 +karman_re100,target,35,14.0,velocity,center_ux,1.1207808256149292 +karman_re100,target,35,14.0,velocity,center_uy,0.5826788544654846 +karman_re100,target,35,14.0,velocity,lower_ux,1.1665430068969727 +karman_re100,target,35,14.0,velocity,lower_uy,0.37373197078704834 +karman_re100,target,36,14.4,velocity,upper_ux,0.8555406928062439 +karman_re100,target,36,14.4,velocity,upper_uy,0.3752945363521576 +karman_re100,target,36,14.4,velocity,center_ux,1.1359798908233643 +karman_re100,target,36,14.4,velocity,center_uy,0.5393502712249756 +karman_re100,target,36,14.4,velocity,lower_ux,1.2363841533660889 +karman_re100,target,36,14.4,velocity,lower_uy,0.3385625183582306 +karman_re100,target,37,14.8,velocity,upper_ux,0.7915717363357544 +karman_re100,target,37,14.8,velocity,upper_uy,0.261982798576355 +karman_re100,target,37,14.8,velocity,center_ux,1.1470319032669067 +karman_re100,target,37,14.8,velocity,center_uy,0.39754700660705566 +karman_re100,target,37,14.8,velocity,lower_ux,1.2947689294815063 +karman_re100,target,37,14.8,velocity,lower_uy,0.2591778337955475 +karman_re100,target,38,15.2,velocity,upper_ux,0.7592748403549194 +karman_re100,target,38,15.2,velocity,upper_uy,0.08715063333511353 +karman_re100,target,38,15.2,velocity,center_ux,1.1473402976989746 +karman_re100,target,38,15.2,velocity,center_uy,0.14294129610061646 +karman_re100,target,38,15.2,velocity,lower_ux,1.3251571655273438 +karman_re100,target,38,15.2,velocity,lower_uy,0.1323079615831375 +karman_re100,target,39,15.6,velocity,upper_ux,0.7730602025985718 +karman_re100,target,39,15.6,velocity,upper_uy,-0.10792404413223267 +karman_re100,target,39,15.6,velocity,center_ux,1.136151671409607 +karman_re100,target,39,15.6,velocity,center_uy,-0.15630380809307098 +karman_re100,target,39,15.6,velocity,lower_ux,1.309251070022583 +karman_re100,target,39,15.6,velocity,lower_uy,-0.029900722205638885 +karman_re100,target,40,16.0,velocity,upper_ux,0.8303975462913513 +karman_re100,target,40,16.0,velocity,upper_uy,-0.257776141166687 +karman_re100,target,40,16.0,velocity,center_ux,1.1195855140686035 +karman_re100,target,40,16.0,velocity,center_uy,-0.38911429047584534 +karman_re100,target,40,16.0,velocity,lower_ux,1.2535070180892944 +karman_re100,target,40,16.0,velocity,lower_uy,-0.1798517405986786 +karman_re100,target,41,16.4,velocity,upper_ux,0.9146475791931152 +karman_re100,target,41,16.4,velocity,upper_uy,-0.33155983686447144 +karman_re100,target,41,16.4,velocity,center_ux,1.1042265892028809 +karman_re100,target,41,16.4,velocity,center_uy,-0.5084126591682434 +karman_re100,target,41,16.4,velocity,lower_ux,1.1757845878601074 +karman_re100,target,41,16.4,velocity,lower_uy,-0.29148927330970764 +karman_re100,target,42,16.8,velocity,upper_ux,1.0034040212631226 +karman_re100,target,42,16.8,velocity,upper_uy,-0.35380828380584717 +karman_re100,target,42,16.8,velocity,center_ux,1.0995018482208252 +karman_re100,target,42,16.8,velocity,center_uy,-0.5475315451622009 +karman_re100,target,42,16.8,velocity,lower_ux,1.0945141315460205 +karman_re100,target,42,16.8,velocity,lower_uy,-0.363585889339447 +karman_re100,target,43,17.2,velocity,upper_ux,1.0877801179885864 +karman_re100,target,43,17.2,velocity,upper_uy,-0.3686370551586151 +karman_re100,target,43,17.2,velocity,center_ux,1.1073647737503052 +karman_re100,target,43,17.2,velocity,center_uy,-0.5739956498146057 +karman_re100,target,43,17.2,velocity,lower_ux,1.014662504196167 +karman_re100,target,43,17.2,velocity,lower_uy,-0.408456414937973 +karman_re100,target,44,17.6,velocity,upper_ux,1.1690195798873901 +karman_re100,target,44,17.6,velocity,upper_uy,-0.37406933307647705 +karman_re100,target,44,17.6,velocity,center_ux,1.122889757156372 +karman_re100,target,44,17.6,velocity,center_uy,-0.5833419561386108 +karman_re100,target,44,17.6,velocity,lower_ux,0.9350378513336182 +karman_re100,target,44,17.6,velocity,lower_uy,-0.41986510157585144 +karman_re100,target,45,18.0,velocity,upper_ux,1.237956166267395 +karman_re100,target,45,18.0,velocity,upper_uy,-0.33806830644607544 +karman_re100,target,45,18.0,velocity,center_ux,1.137302041053772 +karman_re100,target,45,18.0,velocity,center_uy,-0.5387709140777588 +karman_re100,target,45,18.0,velocity,lower_ux,0.8559364080429077 +karman_re100,target,45,18.0,velocity,lower_uy,-0.3747695982456207 +karman_re100,target,46,18.4,velocity,upper_ux,1.295504093170166 +karman_re100,target,46,18.4,velocity,upper_uy,-0.25831717252731323 +karman_re100,target,46,18.4,velocity,center_ux,1.1475811004638672 +karman_re100,target,46,18.4,velocity,center_uy,-0.3959483206272125 +karman_re100,target,46,18.4,velocity,lower_ux,0.7913162708282471 +karman_re100,target,46,18.4,velocity,lower_uy,-0.26079997420310974 +karman_re100,target,47,18.8,velocity,upper_ux,1.3243474960327148 +karman_re100,target,47,18.8,velocity,upper_uy,-0.13120369613170624 +karman_re100,target,47,18.8,velocity,center_ux,1.1465791463851929 +karman_re100,target,47,18.8,velocity,center_uy,-0.14079713821411133 +karman_re100,target,47,18.8,velocity,lower_ux,0.7581018209457397 +karman_re100,target,47,18.8,velocity,lower_uy,-0.08565463125705719 +karman_re100,target,48,19.2,velocity,upper_ux,1.308789849281311 +karman_re100,target,48,19.2,velocity,upper_uy,0.02929086424410343 +karman_re100,target,48,19.2,velocity,center_ux,1.135737657546997 +karman_re100,target,48,19.2,velocity,center_uy,0.15536129474639893 +karman_re100,target,48,19.2,velocity,lower_ux,0.7721487283706665 +karman_re100,target,48,19.2,velocity,lower_uy,0.10744799673557281 +karman_re100,target,49,19.6,velocity,upper_ux,1.2531423568725586 +karman_re100,target,49,19.6,velocity,upper_uy,0.18064598739147186 +karman_re100,target,49,19.6,velocity,center_ux,1.1196248531341553 +karman_re100,target,49,19.6,velocity,center_uy,0.3903851807117462 +karman_re100,target,49,19.6,velocity,lower_ux,0.8308126330375671 +karman_re100,target,49,19.6,velocity,lower_uy,0.25875985622406006 +karman_re100,target,50,20.0,velocity,upper_ux,1.1761037111282349 +karman_re100,target,50,20.0,velocity,upper_uy,0.2918894290924072 +karman_re100,target,50,20.0,velocity,center_ux,1.1049604415893555 +karman_re100,target,50,20.0,velocity,center_uy,0.5088603496551514 +karman_re100,target,50,20.0,velocity,lower_ux,0.9158786535263062 +karman_re100,target,50,20.0,velocity,lower_uy,0.33199653029441833 +karman_re100,target,51,20.4,velocity,upper_ux,1.0948996543884277 +karman_re100,target,51,20.4,velocity,upper_uy,0.3637731969356537 +karman_re100,target,51,20.4,velocity,center_ux,1.1003499031066895 +karman_re100,target,51,20.4,velocity,center_uy,0.5476963520050049 +karman_re100,target,51,20.4,velocity,lower_ux,1.004788875579834 +karman_re100,target,51,20.4,velocity,lower_uy,0.35403916239738464 +karman_re100,target,52,20.8,velocity,upper_ux,1.0137509107589722 +karman_re100,target,52,20.8,velocity,upper_uy,0.4084593951702118 +karman_re100,target,52,20.8,velocity,center_ux,1.106940507888794 +karman_re100,target,52,20.8,velocity,center_uy,0.5741421580314636 +karman_re100,target,52,20.8,velocity,lower_ux,1.0878918170928955 +karman_re100,target,52,20.8,velocity,lower_uy,0.36885353922843933 +karman_re100,target,53,21.2,velocity,upper_ux,0.9323803782463074 +karman_re100,target,53,21.2,velocity,upper_uy,0.4190697968006134 +karman_re100,target,53,21.2,velocity,center_ux,1.1203818321228027 +karman_re100,target,53,21.2,velocity,center_uy,0.582538366317749 +karman_re100,target,53,21.2,velocity,lower_ux,1.1669495105743408 +karman_re100,target,53,21.2,velocity,lower_uy,0.37366706132888794 +karman_re100,target,54,21.6,velocity,upper_ux,0.8552517890930176 +karman_re100,target,54,21.6,velocity,upper_uy,0.3741911053657532 +karman_re100,target,54,21.6,velocity,center_ux,1.1368190050125122 +karman_re100,target,54,21.6,velocity,center_uy,0.5383028984069824 +karman_re100,target,54,21.6,velocity,lower_ux,1.2379636764526367 +karman_re100,target,54,21.6,velocity,lower_uy,0.33789294958114624 +karman_re100,target,55,22.0,velocity,upper_ux,0.7914443016052246 +karman_re100,target,55,22.0,velocity,upper_uy,0.25994056463241577 +karman_re100,target,55,22.0,velocity,center_ux,1.147636890411377 +karman_re100,target,55,22.0,velocity,center_uy,0.39488765597343445 +karman_re100,target,55,22.0,velocity,lower_ux,1.2960783243179321 +karman_re100,target,55,22.0,velocity,lower_uy,0.2579053044319153 +karman_re100,target,56,22.4,velocity,upper_ux,0.7590339183807373 +karman_re100,target,56,22.4,velocity,upper_uy,0.08446554094552994 +karman_re100,target,56,22.4,velocity,center_ux,1.1471285820007324 +karman_re100,target,56,22.4,velocity,center_uy,0.1389804631471634 +karman_re100,target,56,22.4,velocity,lower_ux,1.3253244161605835 +karman_re100,target,56,22.4,velocity,lower_uy,0.13031841814517975 +karman_re100,target,57,22.8,velocity,upper_ux,0.7728442549705505 +karman_re100,target,57,22.8,velocity,upper_uy,-0.10856542736291885 +karman_re100,target,57,22.8,velocity,center_ux,1.135680913925171 +karman_re100,target,57,22.8,velocity,center_uy,-0.15728816390037537 +karman_re100,target,57,22.8,velocity,lower_ux,1.3088737726211548 +karman_re100,target,57,22.8,velocity,lower_uy,-0.030470380559563637 +karman_re100,target,58,23.2,velocity,upper_ux,0.8325350284576416 +karman_re100,target,58,23.2,velocity,upper_uy,-0.25985264778137207 +karman_re100,target,58,23.2,velocity,center_ux,1.1212081909179688 +karman_re100,target,58,23.2,velocity,center_uy,-0.39241355657577515 +karman_re100,target,58,23.2,velocity,lower_ux,1.2549571990966797 +karman_re100,target,58,23.2,velocity,lower_uy,-0.18203668296337128 +karman_re100,target,59,23.6,velocity,upper_ux,0.9157357811927795 +karman_re100,target,59,23.6,velocity,upper_uy,-0.331969290971756 +karman_re100,target,59,23.6,velocity,center_ux,1.1040146350860596 +karman_re100,target,59,23.6,velocity,center_uy,-0.5092334151268005 +karman_re100,target,59,23.6,velocity,lower_ux,1.1748470067977905 +karman_re100,target,59,23.6,velocity,lower_uy,-0.29261043667793274 +karman_re100,target,60,24.0,velocity,upper_ux,1.0052976608276367 +karman_re100,target,60,24.0,velocity,upper_uy,-0.3539288640022278 +karman_re100,target,60,24.0,velocity,center_ux,1.1002917289733887 +karman_re100,target,60,24.0,velocity,center_uy,-0.5478423833847046 +karman_re100,target,60,24.0,velocity,lower_ux,1.094390630722046 +karman_re100,target,60,24.0,velocity,lower_uy,-0.36430293321609497 +karman_re100,target,61,24.4,velocity,upper_ux,1.089096188545227 +karman_re100,target,61,24.4,velocity,upper_uy,-0.3688009977340698 +karman_re100,target,61,24.4,velocity,center_ux,1.1077146530151367 +karman_re100,target,61,24.4,velocity,center_uy,-0.5742964148521423 +karman_re100,target,61,24.4,velocity,lower_ux,1.0139155387878418 +karman_re100,target,61,24.4,velocity,lower_uy,-0.4088606536388397 +karman_re100,target,62,24.8,velocity,upper_ux,1.1683803796768188 +karman_re100,target,62,24.8,velocity,upper_uy,-0.3734443187713623 +karman_re100,target,62,24.8,velocity,center_ux,1.121476411819458 +karman_re100,target,62,24.8,velocity,center_uy,-0.5824307799339294 +karman_re100,target,62,24.8,velocity,lower_ux,0.9327093362808228 +karman_re100,target,62,24.8,velocity,lower_uy,-0.4191623628139496 +karman_re100,target,63,25.2,velocity,upper_ux,1.238481044769287 +karman_re100,target,63,25.2,velocity,upper_uy,-0.33703380823135376 +karman_re100,target,63,25.2,velocity,center_ux,1.1369034051895142 +karman_re100,target,63,25.2,velocity,center_uy,-0.5372427105903625 +karman_re100,target,63,25.2,velocity,lower_ux,0.854133129119873 +karman_re100,target,63,25.2,velocity,lower_uy,-0.3733938932418823 +karman_re100,target,64,25.6,velocity,upper_ux,1.2970043420791626 +karman_re100,target,64,25.6,velocity,upper_uy,-0.2573641836643219 +karman_re100,target,64,25.6,velocity,center_ux,1.1483458280563354 +karman_re100,target,64,25.6,velocity,center_uy,-0.3938692510128021 +karman_re100,target,64,25.6,velocity,lower_ux,0.7911085486412048 +karman_re100,target,64,25.6,velocity,lower_uy,-0.2593045234680176 +karman_re100,target,65,26.0,velocity,upper_ux,1.3249632120132446 +karman_re100,target,65,26.0,velocity,upper_uy,-0.12930122017860413 +karman_re100,target,65,26.0,velocity,center_ux,1.1470043659210205 +karman_re100,target,65,26.0,velocity,center_uy,-0.1370965540409088 +karman_re100,target,65,26.0,velocity,lower_ux,0.7586721777915955 +karman_re100,target,65,26.0,velocity,lower_uy,-0.08327207714319229 +karman_re100,target,66,26.4,velocity,upper_ux,1.3088685274124146 +karman_re100,target,66,26.4,velocity,upper_uy,0.03149283304810524 +karman_re100,target,66,26.4,velocity,center_ux,1.136144995689392 +karman_re100,target,66,26.4,velocity,center_uy,0.1590639054775238 +karman_re100,target,66,26.4,velocity,lower_ux,0.7734333872795105 +karman_re100,target,66,26.4,velocity,lower_uy,0.10976693034172058 +karman_re100,target,67,26.8,velocity,upper_ux,1.2521491050720215 +karman_re100,target,67,26.8,velocity,upper_uy,0.18250402808189392 +karman_re100,target,67,26.8,velocity,center_ux,1.119390606880188 +karman_re100,target,67,26.8,velocity,center_uy,0.39274415373802185 +karman_re100,target,67,26.8,velocity,lower_ux,0.8319432735443115 +karman_re100,target,67,26.8,velocity,lower_uy,0.2601805031299591 +karman_re100,target,68,27.2,velocity,upper_ux,1.1746973991394043 +karman_re100,target,68,27.2,velocity,upper_uy,0.29319101572036743 +karman_re100,target,68,27.2,velocity,center_ux,1.1045820713043213 +karman_re100,target,68,27.2,velocity,center_uy,0.5097253322601318 +karman_re100,target,68,27.2,velocity,lower_ux,0.9169314503669739 +karman_re100,target,68,27.2,velocity,lower_uy,0.3324318826198578 +karman_re100,target,69,27.6,velocity,upper_ux,1.0930352210998535 +karman_re100,target,69,27.6,velocity,upper_uy,0.3646193742752075 +karman_re100,target,69,27.6,velocity,center_ux,1.0996547937393188 +karman_re100,target,69,27.6,velocity,center_uy,0.5480450987815857 +karman_re100,target,69,27.6,velocity,lower_ux,1.0051823854446411 +karman_re100,target,69,27.6,velocity,lower_uy,0.3541729748249054 +karman_re100,target,70,28.0,velocity,upper_ux,1.0125583410263062 +karman_re100,target,70,28.0,velocity,upper_uy,0.4089793860912323 +karman_re100,target,70,28.0,velocity,center_ux,1.1070735454559326 +karman_re100,target,70,28.0,velocity,center_uy,0.5744725465774536 +karman_re100,target,70,28.0,velocity,lower_ux,1.0888961553573608 +karman_re100,target,70,28.0,velocity,lower_uy,0.36898982524871826 +karman_re100,target,71,28.4,velocity,upper_ux,0.9321050047874451 +karman_re100,target,71,28.4,velocity,upper_uy,0.4189811050891876 +karman_re100,target,71,28.4,velocity,center_ux,1.1215548515319824 +karman_re100,target,71,28.4,velocity,center_uy,0.5823683142662048 +karman_re100,target,71,28.4,velocity,lower_ux,1.1688426733016968 +karman_re100,target,71,28.4,velocity,lower_uy,0.37342822551727295 +karman_re100,target,72,28.8,velocity,upper_ux,0.8545377254486084 +karman_re100,target,72,28.8,velocity,upper_uy,0.3731633722782135 +karman_re100,target,72,28.8,velocity,center_ux,1.13754403591156 +karman_re100,target,72,28.8,velocity,center_uy,0.5371230244636536 +karman_re100,target,72,28.8,velocity,lower_ux,1.239261269569397 +karman_re100,target,72,28.8,velocity,lower_uy,0.3369859755039215 +karman_re100,target,73,29.2,velocity,upper_ux,0.7905303239822388 +karman_re100,target,73,29.2,velocity,upper_uy,0.25783994793891907 +karman_re100,target,73,29.2,velocity,center_ux,1.147811770439148 +karman_re100,target,73,29.2,velocity,center_uy,0.39195773005485535 +karman_re100,target,73,29.2,velocity,lower_ux,1.2966800928115845 +karman_re100,target,73,29.2,velocity,lower_uy,0.2563720643520355 +karman_re100,target,74,29.6,velocity,upper_ux,0.758348822593689 +karman_re100,target,74,29.6,velocity,upper_uy,0.08175364136695862 +karman_re100,target,74,29.6,velocity,center_ux,1.1467926502227783 +karman_re100,target,74,29.6,velocity,center_uy,0.13493427634239197 +karman_re100,target,74,29.6,velocity,lower_ux,1.3249866962432861 +karman_re100,target,74,29.6,velocity,lower_uy,0.12822848558425903 +karman_re100,target,75,30.0,velocity,upper_ux,0.7725909948348999 +karman_re100,target,75,30.0,velocity,upper_uy,-0.11104192584753036 +karman_re100,target,75,30.0,velocity,center_ux,1.135008692741394 +karman_re100,target,75,30.0,velocity,center_uy,-0.1609611064195633 +karman_re100,target,75,30.0,velocity,lower_ux,1.3077272176742554 +karman_re100,target,75,30.0,velocity,lower_uy,-0.03255901113152504 +karman_re100,target,76,30.4,velocity,upper_ux,0.8318604230880737 +karman_re100,target,76,30.4,velocity,upper_uy,-0.26085686683654785 +karman_re100,target,76,30.4,velocity,center_ux,1.1187996864318848 +karman_re100,target,76,30.4,velocity,center_uy,-0.3937959671020508 +karman_re100,target,76,30.4,velocity,lower_ux,1.2514063119888306 +karman_re100,target,76,30.4,velocity,lower_uy,-0.18324381113052368 +karman_re100,target,77,30.8,velocity,upper_ux,0.9175968766212463 +karman_re100,target,77,30.8,velocity,upper_uy,-0.3326425552368164 +karman_re100,target,77,30.8,velocity,center_ux,1.1046591997146606 +karman_re100,target,77,30.8,velocity,center_uy,-0.5101075768470764 +karman_re100,target,77,30.8,velocity,lower_ux,1.1745190620422363 +karman_re100,target,77,30.8,velocity,lower_uy,-0.29365915060043335 +karman_re100,target,78,31.2,velocity,upper_ux,1.0064905881881714 +karman_re100,target,78,31.2,velocity,upper_uy,-0.3542494475841522 +karman_re100,target,78,31.2,velocity,center_ux,1.100389003753662 +karman_re100,target,78,31.2,velocity,center_uy,-0.5481968522071838 +karman_re100,target,78,31.2,velocity,lower_ux,1.0933849811553955 +karman_re100,target,78,31.2,velocity,lower_uy,-0.36492621898651123 +karman_re100,target,79,31.6,velocity,upper_ux,1.0899335145950317 +karman_re100,target,79,31.6,velocity,upper_uy,-0.3690941631793976 +karman_re100,target,79,31.6,velocity,center_ux,1.107590913772583 +karman_re100,target,79,31.6,velocity,center_uy,-0.5746102929115295 +karman_re100,target,79,31.6,velocity,lower_ux,1.0126209259033203 +karman_re100,target,79,31.6,velocity,lower_uy,-0.4091135263442993 +karman_re100,target,80,32.0,velocity,upper_ux,1.16862154006958 +karman_re100,target,80,32.0,velocity,upper_uy,-0.3733859360218048 +karman_re100,target,80,32.0,velocity,center_ux,1.120866060256958 +karman_re100,target,80,32.0,velocity,center_uy,-0.5822645425796509 +karman_re100,target,80,32.0,velocity,lower_ux,0.9309683442115784 +karman_re100,target,80,32.0,velocity,lower_uy,-0.41883084177970886 +karman_re100,target,81,32.4,velocity,upper_ux,1.2387235164642334 +karman_re100,target,81,32.4,velocity,upper_uy,-0.336698979139328 +karman_re100,target,81,32.4,velocity,center_ux,1.1366254091262817 +karman_re100,target,81,32.4,velocity,center_uy,-0.5366016030311584 +karman_re100,target,81,32.4,velocity,lower_ux,0.8533651232719421 +karman_re100,target,81,32.4,velocity,lower_uy,-0.37268492579460144 +karman_re100,target,82,32.8,velocity,upper_ux,1.2967579364776611 +karman_re100,target,82,32.8,velocity,upper_uy,-0.25583869218826294 +karman_re100,target,82,32.8,velocity,center_ux,1.1475473642349243 +karman_re100,target,82,32.8,velocity,center_uy,-0.3907952606678009 +karman_re100,target,82,32.8,velocity,lower_ux,0.7902572751045227 +karman_re100,target,82,32.8,velocity,lower_uy,-0.25702476501464844 +karman_re100,target,83,33.2,velocity,upper_ux,1.3254709243774414 +karman_re100,target,83,33.2,velocity,upper_uy,-0.1273527294397354 +karman_re100,target,83,33.2,velocity,center_ux,1.1470850706100464 +karman_re100,target,83,33.2,velocity,center_uy,-0.1332225203514099 +karman_re100,target,83,33.2,velocity,lower_ux,0.7589471936225891 +karman_re100,target,83,33.2,velocity,lower_uy,-0.08069521188735962 +karman_re100,target,84,33.6,velocity,upper_ux,1.3082406520843506 +karman_re100,target,84,33.6,velocity,upper_uy,0.0336923711001873 +karman_re100,target,84,33.6,velocity,center_ux,1.1356083154678345 +karman_re100,target,84,33.6,velocity,center_uy,0.16278953850269318 +karman_re100,target,84,33.6,velocity,lower_ux,0.7738341689109802 +karman_re100,target,84,33.6,velocity,lower_uy,0.11210666596889496 +karman_re100,target,85,34.0,velocity,upper_ux,1.2508553266525269 +karman_re100,target,85,34.0,velocity,upper_uy,0.18422703444957733 +karman_re100,target,85,34.0,velocity,center_ux,1.1185870170593262 +karman_re100,target,85,34.0,velocity,center_uy,0.3949202299118042 +karman_re100,target,85,34.0,velocity,lower_ux,0.8324794173240662 +karman_re100,target,85,34.0,velocity,lower_uy,0.2614269554615021 +karman_re100,target,86,34.4,velocity,upper_ux,1.1744297742843628 +karman_re100,target,86,34.4,velocity,upper_uy,0.29479312896728516 +karman_re100,target,86,34.4,velocity,center_ux,1.105020523071289 +karman_re100,target,86,34.4,velocity,center_uy,0.511171281337738 +karman_re100,target,86,34.4,velocity,lower_ux,0.9185488224029541 +karman_re100,target,86,34.4,velocity,lower_uy,0.33316367864608765 +karman_re100,target,87,34.8,velocity,upper_ux,1.0923378467559814 +karman_re100,target,87,34.8,velocity,upper_uy,0.36546313762664795 +karman_re100,target,87,34.8,velocity,center_ux,1.0999722480773926 +karman_re100,target,87,34.8,velocity,center_uy,0.5483775734901428 +karman_re100,target,87,34.8,velocity,lower_ux,1.0066407918930054 +karman_re100,target,87,34.8,velocity,lower_uy,0.35423484444618225 +karman_re100,target,88,35.2,velocity,upper_ux,1.0135130882263184 +karman_re100,target,88,35.2,velocity,upper_uy,0.4099976718425751 +karman_re100,target,88,35.2,velocity,center_ux,1.1093353033065796 +karman_re100,target,88,35.2,velocity,center_uy,0.5754939913749695 +karman_re100,target,88,35.2,velocity,lower_ux,1.0920637845993042 +karman_re100,target,88,35.2,velocity,lower_uy,0.36955177783966064 +karman_re100,target,89,35.6,velocity,upper_ux,0.9311556220054626 +karman_re100,target,89,35.6,velocity,upper_uy,0.4188873767852783 +karman_re100,target,89,35.6,velocity,center_ux,1.1218942403793335 +karman_re100,target,89,35.6,velocity,center_uy,0.5821700096130371 +karman_re100,target,89,35.6,velocity,lower_ux,1.1699447631835938 +karman_re100,target,89,35.6,velocity,lower_uy,0.37318024039268494 +karman_re100,target,90,36.0,velocity,upper_ux,0.8534150719642639 +karman_re100,target,90,36.0,velocity,upper_uy,0.37221255898475647 +karman_re100,target,90,36.0,velocity,center_ux,1.1375787258148193 +karman_re100,target,90,36.0,velocity,center_uy,0.5359570980072021 +karman_re100,target,90,36.0,velocity,lower_ux,1.2398624420166016 +karman_re100,target,90,36.0,velocity,lower_uy,0.336129754781723 +karman_re100,target,91,36.4,velocity,upper_ux,0.7892789244651794 +karman_re100,target,91,36.4,velocity,upper_uy,0.25591668486595154 +karman_re100,target,91,36.4,velocity,center_ux,1.1473394632339478 +karman_re100,target,91,36.4,velocity,center_uy,0.3891720473766327 +karman_re100,target,91,36.4,velocity,lower_ux,1.2966148853302002 +karman_re100,target,91,36.4,velocity,lower_uy,0.2549264132976532 +karman_re100,target,92,36.8,velocity,upper_ux,0.7579734325408936 +karman_re100,target,92,36.8,velocity,upper_uy,0.07932078838348389 +karman_re100,target,92,36.8,velocity,center_ux,1.1464996337890625 +karman_re100,target,92,36.8,velocity,center_uy,0.1311730146408081 +karman_re100,target,92,36.8,velocity,lower_ux,1.3246872425079346 +karman_re100,target,92,36.8,velocity,lower_uy,0.1262667030096054 +karman_re100,target,93,37.2,velocity,upper_ux,0.7738845944404602 +karman_re100,target,93,37.2,velocity,upper_uy,-0.11335798352956772 +karman_re100,target,93,37.2,velocity,center_ux,1.1356618404388428 +karman_re100,target,93,37.2,velocity,center_uy,-0.16453994810581207 +karman_re100,target,93,37.2,velocity,lower_ux,1.3078840970993042 +karman_re100,target,93,37.2,velocity,lower_uy,-0.034658536314964294 +karman_re100,target,94,37.6,velocity,upper_ux,0.8334209322929382 +karman_re100,target,94,37.6,velocity,upper_uy,-0.26241785287857056 +karman_re100,target,94,37.6,velocity,center_ux,1.1191457509994507 +karman_re100,target,94,37.6,velocity,center_uy,-0.3961676061153412 +karman_re100,target,94,37.6,velocity,lower_ux,1.250861406326294 +karman_re100,target,94,37.6,velocity,lower_uy,-0.18503327667713165 +karman_re100,target,95,38.0,velocity,upper_ux,0.9188098311424255 +karman_re100,target,95,38.0,velocity,upper_uy,-0.33322909474372864 +karman_re100,target,95,38.0,velocity,center_ux,1.1045202016830444 +karman_re100,target,95,38.0,velocity,center_uy,-0.5109893679618835 +karman_re100,target,95,38.0,velocity,lower_ux,1.173269271850586 +karman_re100,target,95,38.0,velocity,lower_uy,-0.2948720455169678 +karman_re100,target,96,38.4,velocity,upper_ux,1.0073518753051758 +karman_re100,target,96,38.4,velocity,upper_uy,-0.354506254196167 +karman_re100,target,96,38.4,velocity,center_ux,1.1001408100128174 +karman_re100,target,96,38.4,velocity,center_uy,-0.5485662817955017 +karman_re100,target,96,38.4,velocity,lower_ux,1.0918940305709839 +karman_re100,target,96,38.4,velocity,lower_uy,-0.36568892002105713 +karman_re100,target,97,38.8,velocity,upper_ux,1.0903728008270264 +karman_re100,target,97,38.8,velocity,upper_uy,-0.36931636929512024 +karman_re100,target,97,38.8,velocity,center_ux,1.1071282625198364 +karman_re100,target,97,38.8,velocity,center_uy,-0.5749335289001465 +karman_re100,target,97,38.8,velocity,lower_ux,1.0108343362808228 +karman_re100,target,97,38.8,velocity,lower_uy,-0.409501850605011 +karman_re100,target,98,39.2,velocity,upper_ux,1.169822096824646 +karman_re100,target,98,39.2,velocity,upper_uy,-0.373230904340744 +karman_re100,target,98,39.2,velocity,center_ux,1.1213487386703491 +karman_re100,target,98,39.2,velocity,center_uy,-0.5821050405502319 +karman_re100,target,98,39.2,velocity,lower_ux,0.9301555752754211 +karman_re100,target,98,39.2,velocity,lower_uy,-0.41862717270851135 +karman_re100,target,99,39.6,velocity,upper_ux,1.2404066324234009 +karman_re100,target,99,39.6,velocity,upper_uy,-0.3358844816684723 +karman_re100,target,99,39.6,velocity,center_ux,1.137639045715332 +karman_re100,target,99,39.6,velocity,center_uy,-0.5354356169700623 +karman_re100,target,99,39.6,velocity,lower_ux,0.8530622720718384 +karman_re100,target,99,39.6,velocity,lower_uy,-0.37156638503074646 +karman_re100,target,100,40.0,velocity,upper_ux,1.298140287399292 +karman_re100,target,100,40.0,velocity,upper_uy,-0.2533717751502991 +karman_re100,target,100,40.0,velocity,center_ux,1.1479064226150513 +karman_re100,target,100,40.0,velocity,center_uy,-0.3858721852302551 +karman_re100,target,100,40.0,velocity,lower_ux,0.7890681624412537 +karman_re100,target,100,40.0,velocity,lower_uy,-0.2533886134624481 +karman_re100,target,101,40.4,velocity,upper_ux,1.3254258632659912 +karman_re100,target,101,40.4,velocity,upper_uy,-0.12529903650283813 +karman_re100,target,101,40.4,velocity,center_ux,1.1468536853790283 +karman_re100,target,101,40.4,velocity,center_uy,-0.129197895526886 +karman_re100,target,101,40.4,velocity,lower_ux,0.7585252523422241 +karman_re100,target,101,40.4,velocity,lower_uy,-0.07797529548406601 +karman_re100,target,102,40.8,velocity,upper_ux,1.3072128295898438 +karman_re100,target,102,40.8,velocity,upper_uy,0.03582559898495674 +karman_re100,target,102,40.8,velocity,center_ux,1.1348764896392822 +karman_re100,target,102,40.8,velocity,center_uy,0.16650770604610443 +karman_re100,target,102,40.8,velocity,lower_ux,0.7736921906471252 +karman_re100,target,102,40.8,velocity,lower_uy,0.11457282304763794 +karman_re100,target,103,41.2,velocity,upper_ux,1.2495810985565186 +karman_re100,target,103,41.2,velocity,upper_uy,0.18591314554214478 +karman_re100,target,103,41.2,velocity,center_ux,1.1179640293121338 +karman_re100,target,103,41.2,velocity,center_uy,0.39723843336105347 +karman_re100,target,103,41.2,velocity,lower_ux,0.8329868316650391 +karman_re100,target,103,41.2,velocity,lower_uy,0.26295772194862366 +karman_re100,target,104,41.6,velocity,upper_ux,1.1726467609405518 +karman_re100,target,104,41.6,velocity,upper_uy,0.2954460084438324 +karman_re100,target,104,41.6,velocity,center_ux,1.1041244268417358 +karman_re100,target,104,41.6,velocity,center_uy,0.5113259553909302 +karman_re100,target,104,41.6,velocity,lower_ux,0.9190963506698608 +karman_re100,target,104,41.6,velocity,lower_uy,0.3332597613334656 +karman_re100,target,105,42.0,velocity,upper_ux,1.0918364524841309 +karman_re100,target,105,42.0,velocity,upper_uy,0.36610811948776245 +karman_re100,target,105,42.0,velocity,center_ux,1.1004596948623657 +karman_re100,target,105,42.0,velocity,center_uy,0.5487035512924194 +karman_re100,target,105,42.0,velocity,lower_ux,1.008227825164795 +karman_re100,target,105,42.0,velocity,lower_uy,0.3544577360153198 +karman_re100,target,106,42.4,velocity,upper_ux,1.0111377239227295 +karman_re100,target,106,42.4,velocity,upper_uy,0.40978461503982544 +karman_re100,target,106,42.4,velocity,center_ux,1.1079450845718384 +karman_re100,target,106,42.4,velocity,center_uy,0.5750730633735657 +karman_re100,target,106,42.4,velocity,lower_ux,1.091659665107727 +karman_re100,target,106,42.4,velocity,lower_uy,0.3693220019340515 +karman_re100,target,107,42.8,velocity,upper_ux,0.929798424243927 +karman_re100,target,107,42.8,velocity,upper_uy,0.41859766840934753 +karman_re100,target,107,42.8,velocity,center_ux,1.1216635704040527 +karman_re100,target,107,42.8,velocity,center_uy,0.581976056098938 +karman_re100,target,107,42.8,velocity,lower_ux,1.1705759763717651 +karman_re100,target,107,42.8,velocity,lower_uy,0.3730674684047699 +karman_re100,target,108,43.2,velocity,upper_ux,0.851841151714325 +karman_re100,target,108,43.2,velocity,upper_uy,0.3710986077785492 +karman_re100,target,108,43.2,velocity,center_ux,1.1369510889053345 +karman_re100,target,108,43.2,velocity,center_uy,0.5347947478294373 +karman_re100,target,108,43.2,velocity,lower_ux,1.2400014400482178 +karman_re100,target,108,43.2,velocity,lower_uy,0.33541354537010193 +karman_re100,target,109,43.6,velocity,upper_ux,0.7888140678405762 +karman_re100,target,109,43.6,velocity,upper_uy,0.2540436089038849 +karman_re100,target,109,43.6,velocity,center_ux,1.1473114490509033 +karman_re100,target,109,43.6,velocity,center_uy,0.3866044580936432 +karman_re100,target,109,43.6,velocity,lower_ux,1.2972428798675537 +karman_re100,target,109,43.6,velocity,lower_uy,0.2537028193473816 +karman_re100,target,110,44.0,velocity,upper_ux,0.7586755156517029 +karman_re100,target,110,44.0,velocity,upper_uy,0.07687093317508698 +karman_re100,target,110,44.0,velocity,center_ux,1.1469570398330688 +karman_re100,target,110,44.0,velocity,center_uy,0.12741023302078247 +karman_re100,target,110,44.0,velocity,lower_ux,1.3254683017730713 +karman_re100,target,110,44.0,velocity,lower_uy,0.12434834241867065 +karman_re100,target,111,44.4,velocity,upper_ux,0.7746873497962952 +karman_re100,target,111,44.4,velocity,upper_uy,-0.11565961688756943 +karman_re100,target,111,44.4,velocity,center_ux,1.1354897022247314 +karman_re100,target,111,44.4,velocity,center_uy,-0.16824448108673096 +karman_re100,target,111,44.4,velocity,lower_ux,1.3075100183486938 +karman_re100,target,111,44.4,velocity,lower_uy,-0.03687593340873718 +karman_re100,target,112,44.8,velocity,upper_ux,0.8343134522438049 +karman_re100,target,112,44.8,velocity,upper_uy,-0.26373839378356934 +karman_re100,target,112,44.8,velocity,center_ux,1.1186071634292603 +karman_re100,target,112,44.8,velocity,center_uy,-0.39846062660217285 +karman_re100,target,112,44.8,velocity,lower_ux,1.249679684638977 +karman_re100,target,112,44.8,velocity,lower_uy,-0.18688346445560455 +karman_re100,target,113,45.2,velocity,upper_ux,0.9195464849472046 +karman_re100,target,113,45.2,velocity,upper_uy,-0.3335531949996948 +karman_re100,target,113,45.2,velocity,center_ux,1.1038261651992798 +karman_re100,target,113,45.2,velocity,center_uy,-0.511785626411438 +karman_re100,target,113,45.2,velocity,lower_ux,1.1716660261154175 +karman_re100,target,113,45.2,velocity,lower_uy,-0.29614123702049255 +karman_re100,target,114,45.6,velocity,upper_ux,1.0080275535583496 +karman_re100,target,114,45.6,velocity,upper_uy,-0.354582279920578 +karman_re100,target,114,45.6,velocity,center_ux,1.099711537361145 +karman_re100,target,114,45.6,velocity,center_uy,-0.5489056706428528 +karman_re100,target,114,45.6,velocity,lower_ux,1.0903676748275757 +karman_re100,target,114,45.6,velocity,lower_uy,-0.36654797196388245 +karman_re100,target,115,46.0,velocity,upper_ux,1.092010259628296 +karman_re100,target,115,46.0,velocity,upper_uy,-0.3694148659706116 +karman_re100,target,115,46.0,velocity,center_ux,1.1078842878341675 +karman_re100,target,115,46.0,velocity,center_uy,-0.5752438902854919 +karman_re100,target,115,46.0,velocity,lower_ux,1.0103256702423096 +karman_re100,target,115,46.0,velocity,lower_uy,-0.4100285470485687 +karman_re100,target,116,46.4,velocity,upper_ux,1.171478509902954 +karman_re100,target,116,46.4,velocity,upper_uy,-0.3729434311389923 +karman_re100,target,116,46.4,velocity,center_ux,1.122236728668213 +karman_re100,target,116,46.4,velocity,center_uy,-0.5818885564804077 +karman_re100,target,116,46.4,velocity,lower_ux,0.9295694828033447 +karman_re100,target,116,46.4,velocity,lower_uy,-0.418526291847229 +karman_re100,target,117,46.8,velocity,upper_ux,1.241278886795044 +karman_re100,target,117,46.8,velocity,upper_uy,-0.3349483013153076 +karman_re100,target,117,46.8,velocity,center_ux,1.1379551887512207 +karman_re100,target,117,46.8,velocity,center_uy,-0.5341951847076416 +karman_re100,target,117,46.8,velocity,lower_ux,0.852016806602478 +karman_re100,target,117,46.8,velocity,lower_uy,-0.37054210901260376 +karman_re100,target,118,47.2,velocity,upper_ux,1.2979694604873657 +karman_re100,target,118,47.2,velocity,upper_uy,-0.25289061665534973 +karman_re100,target,118,47.2,velocity,center_ux,1.1478196382522583 +karman_re100,target,118,47.2,velocity,center_uy,-0.38504451513290405 +karman_re100,target,118,47.2,velocity,lower_ux,0.7886470556259155 +karman_re100,target,118,47.2,velocity,lower_uy,-0.2528856098651886 +karman_re100,target,119,47.6,velocity,upper_ux,1.3248783349990845 +karman_re100,target,119,47.6,velocity,upper_uy,-0.12324157357215881 +karman_re100,target,119,47.6,velocity,center_ux,1.1463640928268433 +karman_re100,target,119,47.6,velocity,center_uy,-0.12525123357772827 +karman_re100,target,119,47.6,velocity,lower_ux,0.7577914595603943 +karman_re100,target,119,47.6,velocity,lower_uy,-0.07537584751844406 +karman_re100,target,120,48.0,velocity,upper_ux,1.3066731691360474 +karman_re100,target,120,48.0,velocity,upper_uy,0.037906236946582794 +karman_re100,target,120,48.0,velocity,center_ux,1.1348766088485718 +karman_re100,target,120,48.0,velocity,center_uy,0.17010608315467834 +karman_re100,target,120,48.0,velocity,lower_ux,0.77419114112854 +karman_re100,target,120,48.0,velocity,lower_uy,0.11696621775627136 +karman_re100,target,121,48.4,velocity,upper_ux,1.2493754625320435 +karman_re100,target,121,48.4,velocity,upper_uy,0.18757382035255432 +karman_re100,target,121,48.4,velocity,center_ux,1.1186327934265137 +karman_re100,target,121,48.4,velocity,center_uy,0.39951881766319275 +karman_re100,target,121,48.4,velocity,lower_ux,0.8347168564796448 +karman_re100,target,121,48.4,velocity,lower_uy,0.264535516500473 +karman_re100,target,122,48.8,velocity,upper_ux,1.171789288520813 +karman_re100,target,122,48.8,velocity,upper_uy,0.2965673804283142 +karman_re100,target,122,48.8,velocity,center_ux,1.1043516397476196 +karman_re100,target,122,48.8,velocity,center_uy,0.5121945142745972 +karman_re100,target,122,48.8,velocity,lower_ux,0.9206104874610901 +karman_re100,target,122,48.8,velocity,lower_uy,0.3339114785194397 +karman_re100,target,123,49.2,velocity,upper_ux,1.090559720993042 +karman_re100,target,123,49.2,velocity,upper_uy,0.36677631735801697 +karman_re100,target,123,49.2,velocity,center_ux,1.1003730297088623 +karman_re100,target,123,49.2,velocity,center_uy,0.549070417881012 +karman_re100,target,123,49.2,velocity,lower_ux,1.0092324018478394 +karman_re100,target,123,49.2,velocity,lower_uy,0.35476890206336975 +karman_re100,target,124,49.6,velocity,upper_ux,1.0096027851104736 +karman_re100,target,124,49.6,velocity,upper_uy,0.4100719094276428 +karman_re100,target,124,49.6,velocity,center_ux,1.1076679229736328 +karman_re100,target,124,49.6,velocity,center_uy,0.5753857493400574 +karman_re100,target,124,49.6,velocity,lower_ux,1.0923157930374146 +karman_re100,target,124,49.6,velocity,lower_uy,0.36959466338157654 +karman_re100,target,125,50.0,velocity,upper_ux,0.9282466173171997 +karman_re100,target,125,50.0,velocity,upper_uy,0.4182877242565155 +karman_re100,target,125,50.0,velocity,center_ux,1.1213431358337402 +karman_re100,target,125,50.0,velocity,center_uy,0.581794023513794 +karman_re100,target,125,50.0,velocity,lower_ux,1.1710588932037354 +karman_re100,target,125,50.0,velocity,lower_uy,0.3729584515094757 +karman_re100,target,126,50.4,velocity,upper_ux,0.8513058423995972 +karman_re100,target,126,50.4,velocity,upper_uy,0.36993056535720825 +karman_re100,target,126,50.4,velocity,center_ux,1.1375330686569214 +karman_re100,target,126,50.4,velocity,center_uy,0.5336299538612366 +karman_re100,target,126,50.4,velocity,lower_ux,1.2413278818130493 +karman_re100,target,126,50.4,velocity,lower_uy,0.3346826136112213 +karman_re100,target,127,50.8,velocity,upper_ux,0.7886936664581299 +karman_re100,target,127,50.8,velocity,upper_uy,0.25194478034973145 +karman_re100,target,127,50.8,velocity,center_ux,1.1478830575942993 +karman_re100,target,127,50.8,velocity,center_uy,0.3838144540786743 +karman_re100,target,127,50.8,velocity,lower_ux,1.2985012531280518 +karman_re100,target,127,50.8,velocity,lower_uy,0.25236621499061584 +karman_re100,target,128,51.2,velocity,upper_ux,0.7585077881813049 +karman_re100,target,128,51.2,velocity,upper_uy,0.07420293986797333 +karman_re100,target,128,51.2,velocity,center_ux,1.1467524766921997 +karman_re100,target,128,51.2,velocity,center_uy,0.12343726307153702 +karman_re100,target,128,51.2,velocity,lower_ux,1.3255914449691772 +karman_re100,target,128,51.2,velocity,lower_uy,0.1223360076546669 +karman_re100,target,129,51.6,velocity,upper_ux,0.7748985886573792 +karman_re100,target,129,51.6,velocity,upper_uy,-0.11807026714086533 +karman_re100,target,129,51.6,velocity,center_ux,1.134893536567688 +karman_re100,target,129,51.6,velocity,center_uy,-0.1719857007265091 +karman_re100,target,129,51.6,velocity,lower_ux,1.3067361116409302 +karman_re100,target,129,51.6,velocity,lower_uy,-0.03906384855508804 +karman_re100,target,130,52.0,velocity,upper_ux,0.834667980670929 +karman_re100,target,130,52.0,velocity,upper_uy,-0.2650807201862335 +karman_re100,target,130,52.0,velocity,center_ux,1.1177066564559937 +karman_re100,target,130,52.0,velocity,center_uy,-0.40065887570381165 +karman_re100,target,130,52.0,velocity,lower_ux,1.2482318878173828 +karman_re100,target,130,52.0,velocity,lower_uy,-0.18857206404209137 +karman_re100,target,131,52.4,velocity,upper_ux,0.9205212593078613 +karman_re100,target,131,52.4,velocity,upper_uy,-0.33392757177352905 +karman_re100,target,131,52.4,velocity,center_ux,1.103498935699463 +karman_re100,target,131,52.4,velocity,center_uy,-0.512549102306366 +karman_re100,target,131,52.4,velocity,lower_ux,1.170569896697998 +karman_re100,target,131,52.4,velocity,lower_uy,-0.2972494065761566 +karman_re100,target,132,52.8,velocity,upper_ux,1.0097835063934326 +karman_re100,target,132,52.8,velocity,upper_uy,-0.3547075390815735 +karman_re100,target,132,52.8,velocity,center_ux,1.100366234779358 +karman_re100,target,132,52.8,velocity,center_uy,-0.5492257475852966 +karman_re100,target,132,52.8,velocity,lower_ux,1.0900518894195557 +karman_re100,target,132,52.8,velocity,lower_uy,-0.3672773838043213 +karman_re100,target,133,53.2,velocity,upper_ux,1.0933748483657837 +karman_re100,target,133,53.2,velocity,upper_uy,-0.36957043409347534 +karman_re100,target,133,53.2,velocity,center_ux,1.1082967519760132 +karman_re100,target,133,53.2,velocity,center_uy,-0.5755355358123779 +karman_re100,target,133,53.2,velocity,lower_ux,1.009594440460205 +karman_re100,target,133,53.2,velocity,lower_uy,-0.41042739152908325 +karman_re100,target,134,53.6,velocity,upper_ux,1.172318696975708 +karman_re100,target,134,53.6,velocity,upper_uy,-0.37273815274238586 +karman_re100,target,134,53.6,velocity,center_ux,1.1222401857376099 +karman_re100,target,134,53.6,velocity,center_uy,-0.5816689729690552 +karman_re100,target,134,53.6,velocity,lower_ux,0.928335428237915 +karman_re100,target,134,53.6,velocity,lower_uy,-0.4183191955089569 +karman_re100,target,135,54.0,velocity,upper_ux,1.2416796684265137 +karman_re100,target,135,54.0,velocity,upper_uy,-0.3341391384601593 +karman_re100,target,135,54.0,velocity,center_ux,1.1376899480819702 +karman_re100,target,135,54.0,velocity,center_uy,-0.5329808592796326 +karman_re100,target,135,54.0,velocity,lower_ux,0.8507171869277954 +karman_re100,target,135,54.0,velocity,lower_uy,-0.369485467672348 +karman_re100,target,136,54.4,velocity,upper_ux,1.2979823350906372 +karman_re100,target,136,54.4,velocity,upper_uy,-0.25154122710227966 +karman_re100,target,136,54.4,velocity,center_ux,1.1473150253295898 +karman_re100,target,136,54.4,velocity,center_uy,-0.3823348879814148 +karman_re100,target,136,54.4,velocity,lower_ux,0.7875707149505615 +karman_re100,target,136,54.4,velocity,lower_uy,-0.25098174810409546 +karman_re100,target,137,54.8,velocity,upper_ux,1.3252313137054443 +karman_re100,target,137,54.8,velocity,upper_uy,-0.12132100015878677 +karman_re100,target,137,54.8,velocity,center_ux,1.1465864181518555 +karman_re100,target,137,54.8,velocity,center_uy,-0.12154028564691544 +karman_re100,target,137,54.8,velocity,lower_ux,0.7581326365470886 +karman_re100,target,137,54.8,velocity,lower_uy,-0.07298092544078827 +karman_re100,target,138,55.2,velocity,upper_ux,1.3066929578781128 +karman_re100,target,138,55.2,velocity,upper_uy,0.04008592292666435 +karman_re100,target,138,55.2,velocity,center_ux,1.1352726221084595 +karman_re100,target,138,55.2,velocity,center_uy,0.17375870048999786 +karman_re100,target,138,55.2,velocity,lower_ux,0.7754371166229248 +karman_re100,target,138,55.2,velocity,lower_uy,0.11927595734596252 +karman_re100,target,139,55.6,velocity,upper_ux,1.2484418153762817 +karman_re100,target,139,55.6,velocity,upper_uy,0.18931129574775696 +karman_re100,target,139,55.6,velocity,center_ux,1.1184585094451904 +karman_re100,target,139,55.6,velocity,center_uy,0.40170615911483765 +karman_re100,target,139,55.6,velocity,lower_ux,0.8358336687088013 +karman_re100,target,139,55.6,velocity,lower_uy,0.26587817072868347 +karman_re100,target,140,56.0,velocity,upper_ux,1.171865463256836 +karman_re100,target,140,56.0,velocity,upper_uy,0.29817646741867065 +karman_re100,target,140,56.0,velocity,center_ux,1.1053749322891235 +karman_re100,target,140,56.0,velocity,center_uy,0.5136473178863525 +karman_re100,target,140,56.0,velocity,lower_ux,0.9227950572967529 +karman_re100,target,140,56.0,velocity,lower_uy,0.33476582169532776 +karman_re100,target,141,56.4,velocity,upper_ux,1.0889172554016113 +karman_re100,target,141,56.4,velocity,upper_uy,0.36759743094444275 +karman_re100,target,141,56.4,velocity,center_ux,1.0999337434768677 +karman_re100,target,141,56.4,velocity,center_uy,0.5494288802146912 +karman_re100,target,141,56.4,velocity,lower_ux,1.0099053382873535 +karman_re100,target,141,56.4,velocity,lower_uy,0.35493454337120056 +karman_re100,target,142,56.8,velocity,upper_ux,1.008318543434143 +karman_re100,target,142,56.8,velocity,upper_uy,0.41053134202957153 +karman_re100,target,142,56.8,velocity,center_ux,1.107698917388916 +karman_re100,target,142,56.8,velocity,center_uy,0.5756993889808655 +karman_re100,target,142,56.8,velocity,lower_ux,1.0932283401489258 +karman_re100,target,142,56.8,velocity,lower_uy,0.3697469234466553 +karman_re100,target,143,57.2,velocity,upper_ux,0.9277364611625671 +karman_re100,target,143,57.2,velocity,upper_uy,0.41810905933380127 +karman_re100,target,143,57.2,velocity,center_ux,1.1223104000091553 +karman_re100,target,143,57.2,velocity,center_uy,0.5815766453742981 +karman_re100,target,143,57.2,velocity,lower_ux,1.172797441482544 +karman_re100,target,143,57.2,velocity,lower_uy,0.37269723415374756 +karman_re100,target,144,57.6,velocity,upper_ux,0.8506627082824707 +karman_re100,target,144,57.6,velocity,upper_uy,0.368875652551651 +karman_re100,target,144,57.6,velocity,center_ux,1.1382262706756592 +karman_re100,target,144,57.6,velocity,center_uy,0.5324338674545288 +karman_re100,target,144,57.6,velocity,lower_ux,1.2426003217697144 +karman_re100,target,144,57.6,velocity,lower_uy,0.33380821347236633 +karman_re100,target,145,58.0,velocity,upper_ux,0.7875350713729858 +karman_re100,target,145,58.0,velocity,upper_uy,0.24900543689727783 +karman_re100,target,145,58.0,velocity,center_ux,1.1480019092559814 +karman_re100,target,145,58.0,velocity,center_uy,0.37972426414489746 +karman_re100,target,145,58.0,velocity,lower_ux,1.2992966175079346 +karman_re100,target,145,58.0,velocity,lower_uy,0.25028544664382935 +karman_re100,target,146,58.4,velocity,upper_ux,0.7579848766326904 +karman_re100,target,146,58.4,velocity,upper_uy,0.07151975482702255 +karman_re100,target,146,58.4,velocity,center_ux,1.1464664936065674 +karman_re100,target,146,58.4,velocity,center_uy,0.11942527443170547 +karman_re100,target,146,58.4,velocity,lower_ux,1.325339674949646 +karman_re100,target,146,58.4,velocity,lower_uy,0.1202620342373848 +karman_re100,target,147,58.8,velocity,upper_ux,0.774848997592926 +karman_re100,target,147,58.8,velocity,upper_uy,-0.12050080299377441 +karman_re100,target,147,58.8,velocity,center_ux,1.1343200206756592 +karman_re100,target,147,58.8,velocity,center_uy,-0.1756194531917572 +karman_re100,target,147,58.8,velocity,lower_ux,1.3057222366333008 +karman_re100,target,147,58.8,velocity,lower_uy,-0.0411558598279953 +karman_re100,target,148,59.2,velocity,upper_ux,0.8358415365219116 +karman_re100,target,148,59.2,velocity,upper_uy,-0.26658815145492554 +karman_re100,target,148,59.2,velocity,center_ux,1.1178396940231323 +karman_re100,target,148,59.2,velocity,center_uy,-0.40285396575927734 +karman_re100,target,148,59.2,velocity,lower_ux,1.2476129531860352 +karman_re100,target,148,59.2,velocity,lower_uy,-0.19016443192958832 +karman_re100,target,149,59.6,velocity,upper_ux,0.9223166108131409 +karman_re100,target,149,59.6,velocity,upper_uy,-0.33452102541923523 +karman_re100,target,149,59.6,velocity,center_ux,1.104048728942871 +karman_re100,target,149,59.6,velocity,center_uy,-0.5133646130561829 +karman_re100,target,149,59.6,velocity,lower_ux,1.1701656579971313 +karman_re100,target,149,59.6,velocity,lower_uy,-0.29829779267311096 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_wide.csv new file mode 100644 index 0000000..7f5ac2b --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re100/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re100,target,0,0.0,0.8584204912185669,0.3772485852241516,1.1368398666381836,0.5415143370628357,1.235891342163086,0.3400333523750305 +karman_re100,target,1,0.4,0.7933717370033264,0.2655923664569855,1.1476922035217285,0.40260231494903564,1.2943214178085327,0.2616910934448242 +karman_re100,target,2,0.8,0.7587673664093018,0.09187765419483185,1.1470205783843994,0.15023547410964966,1.3244311809539795,0.13604377210140228 +karman_re100,target,3,1.2,0.7704558372497559,-0.10145293176174164,1.135690450668335,-0.1461048573255539,1.3096165657043457,-0.023924974724650383 +karman_re100,target,4,1.6,0.8279091119766235,-0.2547966539859772,1.1198042631149292,-0.384231299161911,1.2552186250686646,-0.17608577013015747 +karman_re100,target,5,2.0,0.9128803014755249,-0.33062803745269775,1.1053030490875244,-0.506623387336731,1.1788685321807861,-0.28890302777290344 +karman_re100,target,6,2.4,1.003257393836975,-0.35395416617393494,1.101739525794983,-0.547501802444458,1.0990997552871704,-0.3623273968696594 +karman_re100,target,7,2.8,1.0856614112854004,-0.36834025382995605,1.107029914855957,-0.5733320116996765,1.0169382095336914,-0.40744006633758545 +karman_re100,target,8,3.2,1.1644058227539062,-0.37401705980300903,1.119808554649353,-0.5829169750213623,0.9350130558013916,-0.4195091128349304 +karman_re100,target,9,3.6,1.2352972030639648,-0.3397936224937439,1.1358156204223633,-0.5410215854644775,0.8572074174880981,-0.3767562508583069 +karman_re100,target,10,4.0,1.2943018674850464,-0.2612610161304474,1.1472806930541992,-0.4015907049179077,0.7930717468261719,-0.26486170291900635 +karman_re100,target,11,4.4,1.3250856399536133,-0.1352805197238922,1.1474056243896484,-0.14870686829090118,0.7595500946044922,-0.09094157814979553 +karman_re100,target,12,4.8,1.3104056119918823,0.025076797232031822,1.136481523513794,0.14796078205108643,0.7719810009002686,0.10250476002693176 +karman_re100,target,13,5.2,1.2544374465942383,0.1772232949733734,1.1193439960479736,0.38553982973098755,0.8284285664558411,0.25543034076690674 +karman_re100,target,14,5.6,1.1770727634429932,0.2897234559059143,1.1040130853652954,0.5070653557777405,0.9124644994735718,0.33068138360977173 +karman_re100,target,15,6.0,1.0966600179672241,0.3624647557735443,1.0999159812927246,0.5469920635223389,1.002146601676941,0.35344329476356506 +karman_re100,target,16,6.4,1.0178581476211548,0.40838754177093506,1.108801245689392,0.5742221474647522,1.0878095626831055,0.3687598407268524 +karman_re100,target,17,6.8,0.9354466199874878,0.4196390211582184,1.1211299896240234,0.5828365087509155,1.1660131216049194,0.37378910183906555 +karman_re100,target,18,7.2,0.8573048114776611,0.37631770968437195,1.1369131803512573,0.5403704643249512,1.2365596294403076,0.33917275071144104 +karman_re100,target,19,7.6,0.791826605796814,0.263823926448822,1.1468801498413086,0.4000270962715149,1.2939034700393677,0.26034221053123474 +karman_re100,target,20,8.0,0.7584874629974365,0.08959958702325821,1.1468262672424316,0.14669020473957062,1.324235200881958,0.13419963419437408 +karman_re100,target,21,8.4,0.7719693183898926,-0.10381671786308289,1.1365605592727661,-0.1497778594493866,1.309996485710144,-0.026068156585097313 +karman_re100,target,22,8.8,0.8294631838798523,-0.256427526473999,1.1201248168945312,-0.3867265284061432,1.254632830619812,-0.17794466018676758 +karman_re100,target,23,9.2,0.9141712784767151,-0.3312492370605469,1.1052151918411255,-0.5075727105140686,1.1776421070098877,-0.2901743948459625 +karman_re100,target,24,9.6,1.0027797222137451,-0.3537701368331909,1.0999817848205566,-0.5471999645233154,1.0960441827774048,-0.3626973628997803 +karman_re100,target,25,10.0,1.0858912467956543,-0.3685588538646698,1.1063634157180786,-0.5736711025238037,1.0149235725402832,-0.40787455439567566 +karman_re100,target,26,10.4,1.1659252643585205,-0.3738739490509033,1.1205884218215942,-0.5827891826629639,0.9344055652618408,-0.41936007142066956 +karman_re100,target,27,10.8,1.2370781898498535,-0.3389963209629059,1.1369521617889404,-0.5399372577667236,0.8569769263267517,-0.37570738792419434 +karman_re100,target,28,11.2,1.2951843738555908,-0.25984352827072144,1.1476027965545654,-0.3988019824028015,0.7923638820648193,-0.26277539134025574 +karman_re100,target,29,11.6,1.325142502784729,-0.13322335481643677,1.147280216217041,-0.1446620225906372,0.7591198682785034,-0.08818918466567993 +karman_re100,target,30,12.0,1.3091200590133667,0.027214614674448967,1.135496973991394,0.15174290537834167,0.7714856863021851,0.1050395742058754 +karman_re100,target,31,12.4,1.2532716989517212,0.17882320284843445,1.1187938451766968,0.38782715797424316,0.8288736939430237,0.2569805085659027 +karman_re100,target,32,12.8,1.1770007610321045,0.29075175523757935,1.104743480682373,0.5079305171966553,0.9143919944763184,0.33127617835998535 +karman_re100,target,33,13.2,1.0961319208145142,0.36310917139053345,1.1003828048706055,0.5473290681838989,1.0037388801574707,0.3537008762359619 +karman_re100,target,34,13.6,1.0154926776885986,0.40816983580589294,1.1074190139770508,0.5738195776939392,1.0874433517456055,0.36856064200401306 +karman_re100,target,35,14.0,0.9340183734893799,0.41935575008392334,1.1207808256149292,0.5826788544654846,1.1665430068969727,0.37373197078704834 +karman_re100,target,36,14.4,0.8555406928062439,0.3752945363521576,1.1359798908233643,0.5393502712249756,1.2363841533660889,0.3385625183582306 +karman_re100,target,37,14.8,0.7915717363357544,0.261982798576355,1.1470319032669067,0.39754700660705566,1.2947689294815063,0.2591778337955475 +karman_re100,target,38,15.2,0.7592748403549194,0.08715063333511353,1.1473402976989746,0.14294129610061646,1.3251571655273438,0.1323079615831375 +karman_re100,target,39,15.6,0.7730602025985718,-0.10792404413223267,1.136151671409607,-0.15630380809307098,1.309251070022583,-0.029900722205638885 +karman_re100,target,40,16.0,0.8303975462913513,-0.257776141166687,1.1195855140686035,-0.38911429047584534,1.2535070180892944,-0.1798517405986786 +karman_re100,target,41,16.4,0.9146475791931152,-0.33155983686447144,1.1042265892028809,-0.5084126591682434,1.1757845878601074,-0.29148927330970764 +karman_re100,target,42,16.8,1.0034040212631226,-0.35380828380584717,1.0995018482208252,-0.5475315451622009,1.0945141315460205,-0.363585889339447 +karman_re100,target,43,17.2,1.0877801179885864,-0.3686370551586151,1.1073647737503052,-0.5739956498146057,1.014662504196167,-0.408456414937973 +karman_re100,target,44,17.6,1.1690195798873901,-0.37406933307647705,1.122889757156372,-0.5833419561386108,0.9350378513336182,-0.41986510157585144 +karman_re100,target,45,18.0,1.237956166267395,-0.33806830644607544,1.137302041053772,-0.5387709140777588,0.8559364080429077,-0.3747695982456207 +karman_re100,target,46,18.4,1.295504093170166,-0.25831717252731323,1.1475811004638672,-0.3959483206272125,0.7913162708282471,-0.26079997420310974 +karman_re100,target,47,18.8,1.3243474960327148,-0.13120369613170624,1.1465791463851929,-0.14079713821411133,0.7581018209457397,-0.08565463125705719 +karman_re100,target,48,19.2,1.308789849281311,0.02929086424410343,1.135737657546997,0.15536129474639893,0.7721487283706665,0.10744799673557281 +karman_re100,target,49,19.6,1.2531423568725586,0.18064598739147186,1.1196248531341553,0.3903851807117462,0.8308126330375671,0.25875985622406006 +karman_re100,target,50,20.0,1.1761037111282349,0.2918894290924072,1.1049604415893555,0.5088603496551514,0.9158786535263062,0.33199653029441833 +karman_re100,target,51,20.4,1.0948996543884277,0.3637731969356537,1.1003499031066895,0.5476963520050049,1.004788875579834,0.35403916239738464 +karman_re100,target,52,20.8,1.0137509107589722,0.4084593951702118,1.106940507888794,0.5741421580314636,1.0878918170928955,0.36885353922843933 +karman_re100,target,53,21.2,0.9323803782463074,0.4190697968006134,1.1203818321228027,0.582538366317749,1.1669495105743408,0.37366706132888794 +karman_re100,target,54,21.6,0.8552517890930176,0.3741911053657532,1.1368190050125122,0.5383028984069824,1.2379636764526367,0.33789294958114624 +karman_re100,target,55,22.0,0.7914443016052246,0.25994056463241577,1.147636890411377,0.39488765597343445,1.2960783243179321,0.2579053044319153 +karman_re100,target,56,22.4,0.7590339183807373,0.08446554094552994,1.1471285820007324,0.1389804631471634,1.3253244161605835,0.13031841814517975 +karman_re100,target,57,22.8,0.7728442549705505,-0.10856542736291885,1.135680913925171,-0.15728816390037537,1.3088737726211548,-0.030470380559563637 +karman_re100,target,58,23.2,0.8325350284576416,-0.25985264778137207,1.1212081909179688,-0.39241355657577515,1.2549571990966797,-0.18203668296337128 +karman_re100,target,59,23.6,0.9157357811927795,-0.331969290971756,1.1040146350860596,-0.5092334151268005,1.1748470067977905,-0.29261043667793274 +karman_re100,target,60,24.0,1.0052976608276367,-0.3539288640022278,1.1002917289733887,-0.5478423833847046,1.094390630722046,-0.36430293321609497 +karman_re100,target,61,24.4,1.089096188545227,-0.3688009977340698,1.1077146530151367,-0.5742964148521423,1.0139155387878418,-0.4088606536388397 +karman_re100,target,62,24.8,1.1683803796768188,-0.3734443187713623,1.121476411819458,-0.5824307799339294,0.9327093362808228,-0.4191623628139496 +karman_re100,target,63,25.2,1.238481044769287,-0.33703380823135376,1.1369034051895142,-0.5372427105903625,0.854133129119873,-0.3733938932418823 +karman_re100,target,64,25.6,1.2970043420791626,-0.2573641836643219,1.1483458280563354,-0.3938692510128021,0.7911085486412048,-0.2593045234680176 +karman_re100,target,65,26.0,1.3249632120132446,-0.12930122017860413,1.1470043659210205,-0.1370965540409088,0.7586721777915955,-0.08327207714319229 +karman_re100,target,66,26.4,1.3088685274124146,0.03149283304810524,1.136144995689392,0.1590639054775238,0.7734333872795105,0.10976693034172058 +karman_re100,target,67,26.8,1.2521491050720215,0.18250402808189392,1.119390606880188,0.39274415373802185,0.8319432735443115,0.2601805031299591 +karman_re100,target,68,27.2,1.1746973991394043,0.29319101572036743,1.1045820713043213,0.5097253322601318,0.9169314503669739,0.3324318826198578 +karman_re100,target,69,27.6,1.0930352210998535,0.3646193742752075,1.0996547937393188,0.5480450987815857,1.0051823854446411,0.3541729748249054 +karman_re100,target,70,28.0,1.0125583410263062,0.4089793860912323,1.1070735454559326,0.5744725465774536,1.0888961553573608,0.36898982524871826 +karman_re100,target,71,28.4,0.9321050047874451,0.4189811050891876,1.1215548515319824,0.5823683142662048,1.1688426733016968,0.37342822551727295 +karman_re100,target,72,28.8,0.8545377254486084,0.3731633722782135,1.13754403591156,0.5371230244636536,1.239261269569397,0.3369859755039215 +karman_re100,target,73,29.2,0.7905303239822388,0.25783994793891907,1.147811770439148,0.39195773005485535,1.2966800928115845,0.2563720643520355 +karman_re100,target,74,29.6,0.758348822593689,0.08175364136695862,1.1467926502227783,0.13493427634239197,1.3249866962432861,0.12822848558425903 +karman_re100,target,75,30.0,0.7725909948348999,-0.11104192584753036,1.135008692741394,-0.1609611064195633,1.3077272176742554,-0.03255901113152504 +karman_re100,target,76,30.4,0.8318604230880737,-0.26085686683654785,1.1187996864318848,-0.3937959671020508,1.2514063119888306,-0.18324381113052368 +karman_re100,target,77,30.8,0.9175968766212463,-0.3326425552368164,1.1046591997146606,-0.5101075768470764,1.1745190620422363,-0.29365915060043335 +karman_re100,target,78,31.2,1.0064905881881714,-0.3542494475841522,1.100389003753662,-0.5481968522071838,1.0933849811553955,-0.36492621898651123 +karman_re100,target,79,31.6,1.0899335145950317,-0.3690941631793976,1.107590913772583,-0.5746102929115295,1.0126209259033203,-0.4091135263442993 +karman_re100,target,80,32.0,1.16862154006958,-0.3733859360218048,1.120866060256958,-0.5822645425796509,0.9309683442115784,-0.41883084177970886 +karman_re100,target,81,32.4,1.2387235164642334,-0.336698979139328,1.1366254091262817,-0.5366016030311584,0.8533651232719421,-0.37268492579460144 +karman_re100,target,82,32.8,1.2967579364776611,-0.25583869218826294,1.1475473642349243,-0.3907952606678009,0.7902572751045227,-0.25702476501464844 +karman_re100,target,83,33.2,1.3254709243774414,-0.1273527294397354,1.1470850706100464,-0.1332225203514099,0.7589471936225891,-0.08069521188735962 +karman_re100,target,84,33.6,1.3082406520843506,0.0336923711001873,1.1356083154678345,0.16278953850269318,0.7738341689109802,0.11210666596889496 +karman_re100,target,85,34.0,1.2508553266525269,0.18422703444957733,1.1185870170593262,0.3949202299118042,0.8324794173240662,0.2614269554615021 +karman_re100,target,86,34.4,1.1744297742843628,0.29479312896728516,1.105020523071289,0.511171281337738,0.9185488224029541,0.33316367864608765 +karman_re100,target,87,34.8,1.0923378467559814,0.36546313762664795,1.0999722480773926,0.5483775734901428,1.0066407918930054,0.35423484444618225 +karman_re100,target,88,35.2,1.0135130882263184,0.4099976718425751,1.1093353033065796,0.5754939913749695,1.0920637845993042,0.36955177783966064 +karman_re100,target,89,35.6,0.9311556220054626,0.4188873767852783,1.1218942403793335,0.5821700096130371,1.1699447631835938,0.37318024039268494 +karman_re100,target,90,36.0,0.8534150719642639,0.37221255898475647,1.1375787258148193,0.5359570980072021,1.2398624420166016,0.336129754781723 +karman_re100,target,91,36.4,0.7892789244651794,0.25591668486595154,1.1473394632339478,0.3891720473766327,1.2966148853302002,0.2549264132976532 +karman_re100,target,92,36.8,0.7579734325408936,0.07932078838348389,1.1464996337890625,0.1311730146408081,1.3246872425079346,0.1262667030096054 +karman_re100,target,93,37.2,0.7738845944404602,-0.11335798352956772,1.1356618404388428,-0.16453994810581207,1.3078840970993042,-0.034658536314964294 +karman_re100,target,94,37.6,0.8334209322929382,-0.26241785287857056,1.1191457509994507,-0.3961676061153412,1.250861406326294,-0.18503327667713165 +karman_re100,target,95,38.0,0.9188098311424255,-0.33322909474372864,1.1045202016830444,-0.5109893679618835,1.173269271850586,-0.2948720455169678 +karman_re100,target,96,38.4,1.0073518753051758,-0.354506254196167,1.1001408100128174,-0.5485662817955017,1.0918940305709839,-0.36568892002105713 +karman_re100,target,97,38.8,1.0903728008270264,-0.36931636929512024,1.1071282625198364,-0.5749335289001465,1.0108343362808228,-0.409501850605011 +karman_re100,target,98,39.2,1.169822096824646,-0.373230904340744,1.1213487386703491,-0.5821050405502319,0.9301555752754211,-0.41862717270851135 +karman_re100,target,99,39.6,1.2404066324234009,-0.3358844816684723,1.137639045715332,-0.5354356169700623,0.8530622720718384,-0.37156638503074646 +karman_re100,target,100,40.0,1.298140287399292,-0.2533717751502991,1.1479064226150513,-0.3858721852302551,0.7890681624412537,-0.2533886134624481 +karman_re100,target,101,40.4,1.3254258632659912,-0.12529903650283813,1.1468536853790283,-0.129197895526886,0.7585252523422241,-0.07797529548406601 +karman_re100,target,102,40.8,1.3072128295898438,0.03582559898495674,1.1348764896392822,0.16650770604610443,0.7736921906471252,0.11457282304763794 +karman_re100,target,103,41.2,1.2495810985565186,0.18591314554214478,1.1179640293121338,0.39723843336105347,0.8329868316650391,0.26295772194862366 +karman_re100,target,104,41.6,1.1726467609405518,0.2954460084438324,1.1041244268417358,0.5113259553909302,0.9190963506698608,0.3332597613334656 +karman_re100,target,105,42.0,1.0918364524841309,0.36610811948776245,1.1004596948623657,0.5487035512924194,1.008227825164795,0.3544577360153198 +karman_re100,target,106,42.4,1.0111377239227295,0.40978461503982544,1.1079450845718384,0.5750730633735657,1.091659665107727,0.3693220019340515 +karman_re100,target,107,42.8,0.929798424243927,0.41859766840934753,1.1216635704040527,0.581976056098938,1.1705759763717651,0.3730674684047699 +karman_re100,target,108,43.2,0.851841151714325,0.3710986077785492,1.1369510889053345,0.5347947478294373,1.2400014400482178,0.33541354537010193 +karman_re100,target,109,43.6,0.7888140678405762,0.2540436089038849,1.1473114490509033,0.3866044580936432,1.2972428798675537,0.2537028193473816 +karman_re100,target,110,44.0,0.7586755156517029,0.07687093317508698,1.1469570398330688,0.12741023302078247,1.3254683017730713,0.12434834241867065 +karman_re100,target,111,44.4,0.7746873497962952,-0.11565961688756943,1.1354897022247314,-0.16824448108673096,1.3075100183486938,-0.03687593340873718 +karman_re100,target,112,44.8,0.8343134522438049,-0.26373839378356934,1.1186071634292603,-0.39846062660217285,1.249679684638977,-0.18688346445560455 +karman_re100,target,113,45.2,0.9195464849472046,-0.3335531949996948,1.1038261651992798,-0.511785626411438,1.1716660261154175,-0.29614123702049255 +karman_re100,target,114,45.6,1.0080275535583496,-0.354582279920578,1.099711537361145,-0.5489056706428528,1.0903676748275757,-0.36654797196388245 +karman_re100,target,115,46.0,1.092010259628296,-0.3694148659706116,1.1078842878341675,-0.5752438902854919,1.0103256702423096,-0.4100285470485687 +karman_re100,target,116,46.4,1.171478509902954,-0.3729434311389923,1.122236728668213,-0.5818885564804077,0.9295694828033447,-0.418526291847229 +karman_re100,target,117,46.8,1.241278886795044,-0.3349483013153076,1.1379551887512207,-0.5341951847076416,0.852016806602478,-0.37054210901260376 +karman_re100,target,118,47.2,1.2979694604873657,-0.25289061665534973,1.1478196382522583,-0.38504451513290405,0.7886470556259155,-0.2528856098651886 +karman_re100,target,119,47.6,1.3248783349990845,-0.12324157357215881,1.1463640928268433,-0.12525123357772827,0.7577914595603943,-0.07537584751844406 +karman_re100,target,120,48.0,1.3066731691360474,0.037906236946582794,1.1348766088485718,0.17010608315467834,0.77419114112854,0.11696621775627136 +karman_re100,target,121,48.4,1.2493754625320435,0.18757382035255432,1.1186327934265137,0.39951881766319275,0.8347168564796448,0.264535516500473 +karman_re100,target,122,48.8,1.171789288520813,0.2965673804283142,1.1043516397476196,0.5121945142745972,0.9206104874610901,0.3339114785194397 +karman_re100,target,123,49.2,1.090559720993042,0.36677631735801697,1.1003730297088623,0.549070417881012,1.0092324018478394,0.35476890206336975 +karman_re100,target,124,49.6,1.0096027851104736,0.4100719094276428,1.1076679229736328,0.5753857493400574,1.0923157930374146,0.36959466338157654 +karman_re100,target,125,50.0,0.9282466173171997,0.4182877242565155,1.1213431358337402,0.581794023513794,1.1710588932037354,0.3729584515094757 +karman_re100,target,126,50.4,0.8513058423995972,0.36993056535720825,1.1375330686569214,0.5336299538612366,1.2413278818130493,0.3346826136112213 +karman_re100,target,127,50.8,0.7886936664581299,0.25194478034973145,1.1478830575942993,0.3838144540786743,1.2985012531280518,0.25236621499061584 +karman_re100,target,128,51.2,0.7585077881813049,0.07420293986797333,1.1467524766921997,0.12343726307153702,1.3255914449691772,0.1223360076546669 +karman_re100,target,129,51.6,0.7748985886573792,-0.11807026714086533,1.134893536567688,-0.1719857007265091,1.3067361116409302,-0.03906384855508804 +karman_re100,target,130,52.0,0.834667980670929,-0.2650807201862335,1.1177066564559937,-0.40065887570381165,1.2482318878173828,-0.18857206404209137 +karman_re100,target,131,52.4,0.9205212593078613,-0.33392757177352905,1.103498935699463,-0.512549102306366,1.170569896697998,-0.2972494065761566 +karman_re100,target,132,52.8,1.0097835063934326,-0.3547075390815735,1.100366234779358,-0.5492257475852966,1.0900518894195557,-0.3672773838043213 +karman_re100,target,133,53.2,1.0933748483657837,-0.36957043409347534,1.1082967519760132,-0.5755355358123779,1.009594440460205,-0.41042739152908325 +karman_re100,target,134,53.6,1.172318696975708,-0.37273815274238586,1.1222401857376099,-0.5816689729690552,0.928335428237915,-0.4183191955089569 +karman_re100,target,135,54.0,1.2416796684265137,-0.3341391384601593,1.1376899480819702,-0.5329808592796326,0.8507171869277954,-0.369485467672348 +karman_re100,target,136,54.4,1.2979823350906372,-0.25154122710227966,1.1473150253295898,-0.3823348879814148,0.7875707149505615,-0.25098174810409546 +karman_re100,target,137,54.8,1.3252313137054443,-0.12132100015878677,1.1465864181518555,-0.12154028564691544,0.7581326365470886,-0.07298092544078827 +karman_re100,target,138,55.2,1.3066929578781128,0.04008592292666435,1.1352726221084595,0.17375870048999786,0.7754371166229248,0.11927595734596252 +karman_re100,target,139,55.6,1.2484418153762817,0.18931129574775696,1.1184585094451904,0.40170615911483765,0.8358336687088013,0.26587817072868347 +karman_re100,target,140,56.0,1.171865463256836,0.29817646741867065,1.1053749322891235,0.5136473178863525,0.9227950572967529,0.33476582169532776 +karman_re100,target,141,56.4,1.0889172554016113,0.36759743094444275,1.0999337434768677,0.5494288802146912,1.0099053382873535,0.35493454337120056 +karman_re100,target,142,56.8,1.008318543434143,0.41053134202957153,1.107698917388916,0.5756993889808655,1.0932283401489258,0.3697469234466553 +karman_re100,target,143,57.2,0.9277364611625671,0.41810905933380127,1.1223104000091553,0.5815766453742981,1.172797441482544,0.37269723415374756 +karman_re100,target,144,57.6,0.8506627082824707,0.368875652551651,1.1382262706756592,0.5324338674545288,1.2426003217697144,0.33380821347236633 +karman_re100,target,145,58.0,0.7875350713729858,0.24900543689727783,1.1480019092559814,0.37972426414489746,1.2992966175079346,0.25028544664382935 +karman_re100,target,146,58.4,0.7579848766326904,0.07151975482702255,1.1464664936065674,0.11942527443170547,1.325339674949646,0.1202620342373848 +karman_re100,target,147,58.8,0.774848997592926,-0.12050080299377441,1.1343200206756592,-0.1756194531917572,1.3057222366333008,-0.0411558598279953 +karman_re100,target,148,59.2,0.8358415365219116,-0.26658815145492554,1.1178396940231323,-0.40285396575927734,1.2476129531860352,-0.19016443192958832 +karman_re100,target,149,59.6,0.9223166108131409,-0.33452102541923523,1.104048728942871,-0.5133646130561829,1.1701656579971313,-0.29829779267311096 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_dtw_convergence.csv new file mode 100644 index 0000000..f3afcf6 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re200,ppo,60,24.0,30,0.8750741642822203,6,0.9397843658924103,0.9515864290607472,0.6220055679480234,0.8864622507089128,0.9123775641123454,0.9382288079708815 +karman_re200,ppo,90,36.0,30,0.9023278206586838,5,0.9180486659208933,0.9476100304163992,0.7964939792950948,0.8924511375216146,0.9125136812527974,0.9468494295453032 +karman_re200,ppo,120,48.0,30,0.9066282971438744,4,0.9320560375849406,0.9658388442980747,0.809084298213323,0.8489459272939712,0.9221059282620748,0.9617387472108627 +karman_re200,ppo,150,60.0,30,0.8978294295181212,3,0.8950562417507172,0.9608882241571943,0.7978444238503775,0.907198636373505,0.8824507832527161,0.943538267724216 +karman_re200,ppo,180,72.0,30,0.9015037238213052,1,0.9306341489156087,0.9423266131663695,0.7730522771676381,0.8975797094249477,0.8989095886548361,0.9665200055984314 +karman_re200,ppo,200,80.0,30,0.9019246985126909,5,0.928545085589091,0.9512627394559483,0.7854857325553894,0.8831704071257264,0.9024904727935791,0.9605937535564105 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_long.csv new file mode 100644 index 0000000..cf1fa42 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,ppo,0,0.0,velocity,upper_ux,0.8998950719833374 +karman_re200,ppo,0,0.0,velocity,upper_uy,-0.22428524494171143 +karman_re200,ppo,0,0.0,velocity,center_ux,0.9940553903579712 +karman_re200,ppo,0,0.0,velocity,center_uy,-0.2651898264884949 +karman_re200,ppo,0,0.0,velocity,lower_ux,1.233524203300476 +karman_re200,ppo,0,0.0,velocity,lower_uy,-0.12603864073753357 +karman_re200,ppo,1,0.4,velocity,upper_ux,0.9510888457298279 +karman_re200,ppo,1,0.4,velocity,upper_uy,-0.3047756254673004 +karman_re200,ppo,1,0.4,velocity,center_ux,1.0013774633407593 +karman_re200,ppo,1,0.4,velocity,center_uy,-0.4294683337211609 +karman_re200,ppo,1,0.4,velocity,lower_ux,1.1550174951553345 +karman_re200,ppo,1,0.4,velocity,lower_uy,-0.2583763301372528 +karman_re200,ppo,2,0.8,velocity,upper_ux,1.0141762495040894 +karman_re200,ppo,2,0.8,velocity,upper_uy,-0.337396502494812 +karman_re200,ppo,2,0.8,velocity,center_ux,1.0089491605758667 +karman_re200,ppo,2,0.8,velocity,center_uy,-0.46324774622917175 +karman_re200,ppo,2,0.8,velocity,lower_ux,1.072494626045227 +karman_re200,ppo,2,0.8,velocity,lower_uy,-0.31343400478363037 +karman_re200,ppo,3,1.2,velocity,upper_ux,1.0756816864013672 +karman_re200,ppo,3,1.2,velocity,upper_uy,-0.36083194613456726 +karman_re200,ppo,3,1.2,velocity,center_ux,1.0087084770202637 +karman_re200,ppo,3,1.2,velocity,center_uy,-0.46962130069732666 +karman_re200,ppo,3,1.2,velocity,lower_ux,1.008845567703247 +karman_re200,ppo,3,1.2,velocity,lower_uy,-0.3216666281223297 +karman_re200,ppo,4,1.6,velocity,upper_ux,1.1364656686782837 +karman_re200,ppo,4,1.6,velocity,upper_uy,-0.35248976945877075 +karman_re200,ppo,4,1.6,velocity,center_ux,0.9974466562271118 +karman_re200,ppo,4,1.6,velocity,center_uy,-0.4538664221763611 +karman_re200,ppo,4,1.6,velocity,lower_ux,0.9579305052757263 +karman_re200,ppo,4,1.6,velocity,lower_uy,-0.3018237054347992 +karman_re200,ppo,5,2.0,velocity,upper_ux,1.2079800367355347 +karman_re200,ppo,5,2.0,velocity,upper_uy,-0.3190653622150421 +karman_re200,ppo,5,2.0,velocity,center_ux,0.9685810804367065 +karman_re200,ppo,5,2.0,velocity,center_uy,-0.39849093556404114 +karman_re200,ppo,5,2.0,velocity,lower_ux,0.9199088215827942 +karman_re200,ppo,5,2.0,velocity,lower_uy,-0.24761894345283508 +karman_re200,ppo,6,2.4,velocity,upper_ux,1.2698920965194702 +karman_re200,ppo,6,2.4,velocity,upper_uy,-0.20139369368553162 +karman_re200,ppo,6,2.4,velocity,center_ux,0.9350675940513611 +karman_re200,ppo,6,2.4,velocity,center_uy,-0.22454576194286346 +karman_re200,ppo,6,2.4,velocity,lower_ux,0.8935754895210266 +karman_re200,ppo,6,2.4,velocity,lower_uy,-0.14559707045555115 +karman_re200,ppo,7,2.8,velocity,upper_ux,1.276492953300476 +karman_re200,ppo,7,2.8,velocity,upper_uy,-0.001987211871892214 +karman_re200,ppo,7,2.8,velocity,center_ux,0.9396016001701355 +karman_re200,ppo,7,2.8,velocity,center_uy,0.041012249886989594 +karman_re200,ppo,7,2.8,velocity,lower_ux,0.8739466071128845 +karman_re200,ppo,7,2.8,velocity,lower_uy,0.019488850608468056 +karman_re200,ppo,8,3.2,velocity,upper_ux,1.2516652345657349 +karman_re200,ppo,8,3.2,velocity,upper_uy,0.15421532094478607 +karman_re200,ppo,8,3.2,velocity,center_ux,0.9652247428894043 +karman_re200,ppo,8,3.2,velocity,center_uy,0.2691305875778198 +karman_re200,ppo,8,3.2,velocity,lower_ux,0.8832982778549194 +karman_re200,ppo,8,3.2,velocity,lower_uy,0.19380739331245422 +karman_re200,ppo,9,3.6,velocity,upper_ux,1.1645212173461914 +karman_re200,ppo,9,3.6,velocity,upper_uy,0.29210415482521057 +karman_re200,ppo,9,3.6,velocity,center_ux,0.9844967126846313 +karman_re200,ppo,9,3.6,velocity,center_uy,0.43761059641838074 +karman_re200,ppo,9,3.6,velocity,lower_ux,0.9345192909240723 +karman_re200,ppo,9,3.6,velocity,lower_uy,0.27694451808929443 +karman_re200,ppo,10,4.0,velocity,upper_ux,1.082424283027649 +karman_re200,ppo,10,4.0,velocity,upper_uy,0.3436315655708313 +karman_re200,ppo,10,4.0,velocity,center_ux,1.0012720823287964 +karman_re200,ppo,10,4.0,velocity,center_uy,0.4721568822860718 +karman_re200,ppo,10,4.0,velocity,lower_ux,0.9968566298484802 +karman_re200,ppo,10,4.0,velocity,lower_uy,0.3146049380302429 +karman_re200,ppo,11,4.4,velocity,upper_ux,1.0226569175720215 +karman_re200,ppo,11,4.4,velocity,upper_uy,0.3509787619113922 +karman_re200,ppo,11,4.4,velocity,center_ux,1.0107239484786987 +karman_re200,ppo,11,4.4,velocity,center_uy,0.47024935483932495 +karman_re200,ppo,11,4.4,velocity,lower_ux,1.0575882196426392 +karman_re200,ppo,11,4.4,velocity,lower_uy,0.3413645029067993 +karman_re200,ppo,12,4.8,velocity,upper_ux,0.9809382557868958 +karman_re200,ppo,12,4.8,velocity,upper_uy,0.3266327977180481 +karman_re200,ppo,12,4.8,velocity,center_ux,1.0111494064331055 +karman_re200,ppo,12,4.8,velocity,center_uy,0.44407880306243896 +karman_re200,ppo,12,4.8,velocity,lower_ux,1.1173961162567139 +karman_re200,ppo,12,4.8,velocity,lower_uy,0.3347955048084259 +karman_re200,ppo,13,5.2,velocity,upper_ux,0.9493526220321655 +karman_re200,ppo,13,5.2,velocity,upper_uy,0.2569063901901245 +karman_re200,ppo,13,5.2,velocity,center_ux,0.9925389885902405 +karman_re200,ppo,13,5.2,velocity,center_uy,0.3748483955860138 +karman_re200,ppo,13,5.2,velocity,lower_ux,1.1812843084335327 +karman_re200,ppo,13,5.2,velocity,lower_uy,0.30477139353752136 +karman_re200,ppo,14,5.6,velocity,upper_ux,0.914745569229126 +karman_re200,ppo,14,5.6,velocity,upper_uy,0.10816149413585663 +karman_re200,ppo,14,5.6,velocity,center_ux,0.9585051536560059 +karman_re200,ppo,14,5.6,velocity,center_uy,0.19502079486846924 +karman_re200,ppo,14,5.6,velocity,lower_ux,1.242448091506958 +karman_re200,ppo,14,5.6,velocity,lower_uy,0.22538751363754272 +karman_re200,ppo,15,6.0,velocity,upper_ux,0.8908949494361877 +karman_re200,ppo,15,6.0,velocity,upper_uy,-0.10741172730922699 +karman_re200,ppo,15,6.0,velocity,center_ux,0.9490335583686829 +karman_re200,ppo,15,6.0,velocity,center_uy,-0.06902313232421875 +karman_re200,ppo,15,6.0,velocity,lower_ux,1.2432820796966553 +karman_re200,ppo,15,6.0,velocity,lower_uy,0.045016560703516006 +karman_re200,ppo,16,6.4,velocity,upper_ux,0.9094306230545044 +karman_re200,ppo,16,6.4,velocity,upper_uy,-0.2684662342071533 +karman_re200,ppo,16,6.4,velocity,center_ux,0.9483522772789001 +karman_re200,ppo,16,6.4,velocity,center_uy,-0.3177577555179596 +karman_re200,ppo,16,6.4,velocity,lower_ux,1.191707968711853 +karman_re200,ppo,16,6.4,velocity,lower_uy,-0.12112287431955338 +karman_re200,ppo,17,6.8,velocity,upper_ux,0.9657301902770996 +karman_re200,ppo,17,6.8,velocity,upper_uy,-0.32009780406951904 +karman_re200,ppo,17,6.8,velocity,center_ux,0.9523962140083313 +karman_re200,ppo,17,6.8,velocity,center_uy,-0.4492759704589844 +karman_re200,ppo,17,6.8,velocity,lower_ux,1.095005750656128 +karman_re200,ppo,17,6.8,velocity,lower_uy,-0.2621208429336548 +karman_re200,ppo,18,7.2,velocity,upper_ux,1.027988314628601 +karman_re200,ppo,18,7.2,velocity,upper_uy,-0.3579159080982208 +karman_re200,ppo,18,7.2,velocity,center_ux,0.9605187773704529 +karman_re200,ppo,18,7.2,velocity,center_uy,-0.48111870884895325 +karman_re200,ppo,18,7.2,velocity,lower_ux,1.0078880786895752 +karman_re200,ppo,18,7.2,velocity,lower_uy,-0.3200860321521759 +karman_re200,ppo,19,7.6,velocity,upper_ux,1.0877563953399658 +karman_re200,ppo,19,7.6,velocity,upper_uy,-0.3769296705722809 +karman_re200,ppo,19,7.6,velocity,center_ux,0.9555813670158386 +karman_re200,ppo,19,7.6,velocity,center_uy,-0.48980703949928284 +karman_re200,ppo,19,7.6,velocity,lower_ux,0.9457239508628845 +karman_re200,ppo,19,7.6,velocity,lower_uy,-0.3183024525642395 +karman_re200,ppo,20,8.0,velocity,upper_ux,1.1514613628387451 +karman_re200,ppo,20,8.0,velocity,upper_uy,-0.3661528527736664 +karman_re200,ppo,20,8.0,velocity,center_ux,0.9355918765068054 +karman_re200,ppo,20,8.0,velocity,center_uy,-0.47543400526046753 +karman_re200,ppo,20,8.0,velocity,lower_ux,0.8983800411224365 +karman_re200,ppo,20,8.0,velocity,lower_uy,-0.27973806858062744 +karman_re200,ppo,21,8.4,velocity,upper_ux,1.229141354560852 +karman_re200,ppo,21,8.4,velocity,upper_uy,-0.3352474868297577 +karman_re200,ppo,21,8.4,velocity,center_ux,0.8895828127861023 +karman_re200,ppo,21,8.4,velocity,center_uy,-0.4146876931190491 +karman_re200,ppo,21,8.4,velocity,lower_ux,0.8618685007095337 +karman_re200,ppo,21,8.4,velocity,lower_uy,-0.20363856852054596 +karman_re200,ppo,22,8.8,velocity,upper_ux,1.3000353574752808 +karman_re200,ppo,22,8.8,velocity,upper_uy,-0.2442573606967926 +karman_re200,ppo,22,8.8,velocity,center_ux,0.8284677267074585 +karman_re200,ppo,22,8.8,velocity,center_uy,-0.22938112914562225 +karman_re200,ppo,22,8.8,velocity,lower_ux,0.840848982334137 +karman_re200,ppo,22,8.8,velocity,lower_uy,-0.08492540568113327 +karman_re200,ppo,23,9.2,velocity,upper_ux,1.304603934288025 +karman_re200,ppo,23,9.2,velocity,upper_uy,-0.055199433118104935 +karman_re200,ppo,23,9.2,velocity,center_ux,0.7862431406974792 +karman_re200,ppo,23,9.2,velocity,center_uy,0.06753866374492645 +karman_re200,ppo,23,9.2,velocity,lower_ux,0.8447523713111877 +karman_re200,ppo,23,9.2,velocity,lower_uy,0.06977906823158264 +karman_re200,ppo,24,9.6,velocity,upper_ux,1.2389551401138306 +karman_re200,ppo,24,9.6,velocity,upper_uy,0.17780178785324097 +karman_re200,ppo,24,9.6,velocity,center_ux,0.7917512655258179 +karman_re200,ppo,24,9.6,velocity,center_uy,0.37667787075042725 +karman_re200,ppo,24,9.6,velocity,lower_ux,0.8753359317779541 +karman_re200,ppo,24,9.6,velocity,lower_uy,0.2211390733718872 +karman_re200,ppo,25,10.0,velocity,upper_ux,1.1195977926254272 +karman_re200,ppo,25,10.0,velocity,upper_uy,0.3733256161212921 +karman_re200,ppo,25,10.0,velocity,center_ux,0.8375132083892822 +karman_re200,ppo,25,10.0,velocity,center_uy,0.5784127712249756 +karman_re200,ppo,25,10.0,velocity,lower_ux,0.9436401128768921 +karman_re200,ppo,25,10.0,velocity,lower_uy,0.2989959716796875 +karman_re200,ppo,26,10.4,velocity,upper_ux,0.999377965927124 +karman_re200,ppo,26,10.4,velocity,upper_uy,0.4569172263145447 +karman_re200,ppo,26,10.4,velocity,center_ux,0.889234721660614 +karman_re200,ppo,26,10.4,velocity,center_uy,0.6467837691307068 +karman_re200,ppo,26,10.4,velocity,lower_ux,1.0218253135681152 +karman_re200,ppo,26,10.4,velocity,lower_uy,0.3489629030227661 +karman_re200,ppo,27,10.8,velocity,upper_ux,0.9000943899154663 +karman_re200,ppo,27,10.8,velocity,upper_uy,0.4528927206993103 +karman_re200,ppo,27,10.8,velocity,center_ux,0.9305673837661743 +karman_re200,ppo,27,10.8,velocity,center_uy,0.675280749797821 +karman_re200,ppo,27,10.8,velocity,lower_ux,1.0994060039520264 +karman_re200,ppo,27,10.8,velocity,lower_uy,0.3586976230144501 +karman_re200,ppo,28,11.2,velocity,upper_ux,0.8142690062522888 +karman_re200,ppo,28,11.2,velocity,upper_uy,0.3910525441169739 +karman_re200,ppo,28,11.2,velocity,center_ux,0.9785693883895874 +karman_re200,ppo,28,11.2,velocity,center_uy,0.669971764087677 +karman_re200,ppo,28,11.2,velocity,lower_ux,1.1802124977111816 +karman_re200,ppo,28,11.2,velocity,lower_uy,0.3233332931995392 +karman_re200,ppo,29,11.6,velocity,upper_ux,0.740949809551239 +karman_re200,ppo,29,11.6,velocity,upper_uy,0.26815715432167053 +karman_re200,ppo,29,11.6,velocity,center_ux,1.0621860027313232 +karman_re200,ppo,29,11.6,velocity,center_uy,0.6307822465896606 +karman_re200,ppo,29,11.6,velocity,lower_ux,1.2447423934936523 +karman_re200,ppo,29,11.6,velocity,lower_uy,0.2264334112405777 +karman_re200,ppo,30,12.0,velocity,upper_ux,0.7037364840507507 +karman_re200,ppo,30,12.0,velocity,upper_uy,0.09057153016328812 +karman_re200,ppo,30,12.0,velocity,center_ux,1.1405150890350342 +karman_re200,ppo,30,12.0,velocity,center_uy,0.2863110601902008 +karman_re200,ppo,30,12.0,velocity,lower_ux,1.2388406991958618 +karman_re200,ppo,30,12.0,velocity,lower_uy,0.038967110216617584 +karman_re200,ppo,31,12.4,velocity,upper_ux,0.7284371256828308 +karman_re200,ppo,31,12.4,velocity,upper_uy,-0.0953722670674324 +karman_re200,ppo,31,12.4,velocity,center_ux,1.1259270906448364 +karman_re200,ppo,31,12.4,velocity,center_uy,-0.3986295461654663 +karman_re200,ppo,31,12.4,velocity,lower_ux,1.2349486351013184 +karman_re200,ppo,31,12.4,velocity,lower_uy,-0.08117450028657913 +karman_re200,ppo,32,12.8,velocity,upper_ux,0.7970094084739685 +karman_re200,ppo,32,12.8,velocity,upper_uy,-0.2452317774295807 +karman_re200,ppo,32,12.8,velocity,center_ux,1.06181001663208 +karman_re200,ppo,32,12.8,velocity,center_uy,-0.6220481991767883 +karman_re200,ppo,32,12.8,velocity,lower_ux,1.2047533988952637 +karman_re200,ppo,32,12.8,velocity,lower_uy,-0.16457556188106537 +karman_re200,ppo,33,13.2,velocity,upper_ux,0.8794994354248047 +karman_re200,ppo,33,13.2,velocity,upper_uy,-0.3408704400062561 +karman_re200,ppo,33,13.2,velocity,center_ux,1.0171585083007812 +karman_re200,ppo,33,13.2,velocity,center_uy,-0.5974361896514893 +karman_re200,ppo,33,13.2,velocity,lower_ux,1.1261513233184814 +karman_re200,ppo,33,13.2,velocity,lower_uy,-0.22961866855621338 +karman_re200,ppo,34,13.6,velocity,upper_ux,0.967180073261261 +karman_re200,ppo,34,13.6,velocity,upper_uy,-0.3950577974319458 +karman_re200,ppo,34,13.6,velocity,center_ux,0.9894084334373474 +karman_re200,ppo,34,13.6,velocity,center_uy,-0.5733836889266968 +karman_re200,ppo,34,13.6,velocity,lower_ux,1.0465400218963623 +karman_re200,ppo,34,13.6,velocity,lower_uy,-0.2705897390842438 +karman_re200,ppo,35,14.0,velocity,upper_ux,1.0505443811416626 +karman_re200,ppo,35,14.0,velocity,upper_uy,-0.41859257221221924 +karman_re200,ppo,35,14.0,velocity,center_ux,0.961659848690033 +karman_re200,ppo,35,14.0,velocity,center_uy,-0.5512306094169617 +karman_re200,ppo,35,14.0,velocity,lower_ux,0.9893975853919983 +karman_re200,ppo,35,14.0,velocity,lower_uy,-0.27379709482192993 +karman_re200,ppo,36,14.4,velocity,upper_ux,1.1341407299041748 +karman_re200,ppo,36,14.4,velocity,upper_uy,-0.4083320200443268 +karman_re200,ppo,36,14.4,velocity,center_ux,0.9188809394836426 +karman_re200,ppo,36,14.4,velocity,center_uy,-0.5200172662734985 +karman_re200,ppo,36,14.4,velocity,lower_ux,0.9441970586776733 +karman_re200,ppo,36,14.4,velocity,lower_uy,-0.22985021770000458 +karman_re200,ppo,37,14.8,velocity,upper_ux,1.2264739274978638 +karman_re200,ppo,37,14.8,velocity,upper_uy,-0.37191322445869446 +karman_re200,ppo,37,14.8,velocity,center_ux,0.8502609133720398 +karman_re200,ppo,37,14.8,velocity,center_uy,-0.4431858956813812 +karman_re200,ppo,37,14.8,velocity,lower_ux,0.9100213050842285 +karman_re200,ppo,37,14.8,velocity,lower_uy,-0.1465877890586853 +karman_re200,ppo,38,15.2,velocity,upper_ux,1.320051908493042 +karman_re200,ppo,38,15.2,velocity,upper_uy,-0.293849915266037 +karman_re200,ppo,38,15.2,velocity,center_ux,0.7635692358016968 +karman_re200,ppo,38,15.2,velocity,center_uy,-0.25256016850471497 +karman_re200,ppo,38,15.2,velocity,lower_ux,0.8873841166496277 +karman_re200,ppo,38,15.2,velocity,lower_uy,-0.029389357194304466 +karman_re200,ppo,39,15.6,velocity,upper_ux,1.4126019477844238 +karman_re200,ppo,39,15.6,velocity,upper_uy,-0.153234601020813 +karman_re200,ppo,39,15.6,velocity,center_ux,0.6714681386947632 +karman_re200,ppo,39,15.6,velocity,center_uy,0.044863101094961166 +karman_re200,ppo,39,15.6,velocity,lower_ux,0.8663692474365234 +karman_re200,ppo,39,15.6,velocity,lower_uy,0.11435189843177795 +karman_re200,ppo,40,16.0,velocity,upper_ux,1.3734561204910278 +karman_re200,ppo,40,16.0,velocity,upper_uy,0.13901787996292114 +karman_re200,ppo,40,16.0,velocity,center_ux,0.6619011163711548 +karman_re200,ppo,40,16.0,velocity,center_uy,0.36714884638786316 +karman_re200,ppo,40,16.0,velocity,lower_ux,0.8910683989524841 +karman_re200,ppo,40,16.0,velocity,lower_uy,0.22077412903308868 +karman_re200,ppo,41,16.4,velocity,upper_ux,1.2046685218811035 +karman_re200,ppo,41,16.4,velocity,upper_uy,0.3713493049144745 +karman_re200,ppo,41,16.4,velocity,center_ux,0.7222836017608643 +karman_re200,ppo,41,16.4,velocity,center_uy,0.5588952898979187 +karman_re200,ppo,41,16.4,velocity,lower_ux,0.9501181840896606 +karman_re200,ppo,41,16.4,velocity,lower_uy,0.2981567978858948 +karman_re200,ppo,42,16.8,velocity,upper_ux,1.053991436958313 +karman_re200,ppo,42,16.8,velocity,upper_uy,0.44647303223609924 +karman_re200,ppo,42,16.8,velocity,center_ux,0.780659556388855 +karman_re200,ppo,42,16.8,velocity,center_uy,0.6373046636581421 +karman_re200,ppo,42,16.8,velocity,lower_ux,1.0195289850234985 +karman_re200,ppo,42,16.8,velocity,lower_uy,0.36057814955711365 +karman_re200,ppo,43,17.2,velocity,upper_ux,0.9421260356903076 +karman_re200,ppo,43,17.2,velocity,upper_uy,0.42381954193115234 +karman_re200,ppo,43,17.2,velocity,center_ux,0.8047322630882263 +karman_re200,ppo,43,17.2,velocity,center_uy,0.6729869246482849 +karman_re200,ppo,43,17.2,velocity,lower_ux,1.0943812131881714 +karman_re200,ppo,43,17.2,velocity,lower_uy,0.3780343234539032 +karman_re200,ppo,44,17.6,velocity,upper_ux,0.8563447594642639 +karman_re200,ppo,44,17.6,velocity,upper_uy,0.34405025839805603 +karman_re200,ppo,44,17.6,velocity,center_ux,0.7995109558105469 +karman_re200,ppo,44,17.6,velocity,center_uy,0.6711927056312561 +karman_re200,ppo,44,17.6,velocity,lower_ux,1.1772854328155518 +karman_re200,ppo,44,17.6,velocity,lower_uy,0.35171589255332947 +karman_re200,ppo,45,18.0,velocity,upper_ux,0.7970131635665894 +karman_re200,ppo,45,18.0,velocity,upper_uy,0.21876460313796997 +karman_re200,ppo,45,18.0,velocity,center_ux,0.7437017560005188 +karman_re200,ppo,45,18.0,velocity,center_uy,0.6342722773551941 +karman_re200,ppo,45,18.0,velocity,lower_ux,1.2366647720336914 +karman_re200,ppo,45,18.0,velocity,lower_uy,0.2101479023694992 +karman_re200,ppo,46,18.4,velocity,upper_ux,0.7735918164253235 +karman_re200,ppo,46,18.4,velocity,upper_uy,0.06690138578414917 +karman_re200,ppo,46,18.4,velocity,center_ux,0.5896114110946655 +karman_re200,ppo,46,18.4,velocity,center_uy,0.3623797297477722 +karman_re200,ppo,46,18.4,velocity,lower_ux,1.3073010444641113 +karman_re200,ppo,46,18.4,velocity,lower_uy,0.0369110070168972 +karman_re200,ppo,47,18.8,velocity,upper_ux,0.7918771505355835 +karman_re200,ppo,47,18.8,velocity,upper_uy,-0.08489059656858444 +karman_re200,ppo,47,18.8,velocity,center_ux,0.5676249265670776 +karman_re200,ppo,47,18.8,velocity,center_uy,-0.3302331864833832 +karman_re200,ppo,47,18.8,velocity,lower_ux,1.345365285873413 +karman_re200,ppo,47,18.8,velocity,lower_uy,-0.13292083144187927 +karman_re200,ppo,48,19.2,velocity,upper_ux,0.8327118754386902 +karman_re200,ppo,48,19.2,velocity,upper_uy,-0.22497129440307617 +karman_re200,ppo,48,19.2,velocity,center_ux,0.705211341381073 +karman_re200,ppo,48,19.2,velocity,center_uy,-0.7028136253356934 +karman_re200,ppo,48,19.2,velocity,lower_ux,1.274833083152771 +karman_re200,ppo,48,19.2,velocity,lower_uy,-0.2912844717502594 +karman_re200,ppo,49,19.6,velocity,upper_ux,0.9013506174087524 +karman_re200,ppo,49,19.6,velocity,upper_uy,-0.32256489992141724 +karman_re200,ppo,49,19.6,velocity,center_ux,0.8114560842514038 +karman_re200,ppo,49,19.6,velocity,center_uy,-0.7213150262832642 +karman_re200,ppo,49,19.6,velocity,lower_ux,1.172055721282959 +karman_re200,ppo,49,19.6,velocity,lower_uy,-0.37269356846809387 +karman_re200,ppo,50,20.0,velocity,upper_ux,0.9826056957244873 +karman_re200,ppo,50,20.0,velocity,upper_uy,-0.3927118182182312 +karman_re200,ppo,50,20.0,velocity,center_ux,0.8493850231170654 +karman_re200,ppo,50,20.0,velocity,center_uy,-0.6922522187232971 +karman_re200,ppo,50,20.0,velocity,lower_ux,1.075244426727295 +karman_re200,ppo,50,20.0,velocity,lower_uy,-0.3935326635837555 +karman_re200,ppo,51,20.4,velocity,upper_ux,1.0730000734329224 +karman_re200,ppo,51,20.4,velocity,upper_uy,-0.41301918029785156 +karman_re200,ppo,51,20.4,velocity,center_ux,0.8450900316238403 +karman_re200,ppo,51,20.4,velocity,center_uy,-0.6668527126312256 +karman_re200,ppo,51,20.4,velocity,lower_ux,0.9953916668891907 +karman_re200,ppo,51,20.4,velocity,lower_uy,-0.3597570061683655 +karman_re200,ppo,52,20.8,velocity,upper_ux,1.1745011806488037 +karman_re200,ppo,52,20.8,velocity,upper_uy,-0.3955957293510437 +karman_re200,ppo,52,20.8,velocity,center_ux,0.8009697198867798 +karman_re200,ppo,52,20.8,velocity,center_uy,-0.6221424341201782 +karman_re200,ppo,52,20.8,velocity,lower_ux,0.933027982711792 +karman_re200,ppo,52,20.8,velocity,lower_uy,-0.28221797943115234 +karman_re200,ppo,53,21.2,velocity,upper_ux,1.2541121244430542 +karman_re200,ppo,53,21.2,velocity,upper_uy,-0.28142237663269043 +karman_re200,ppo,53,21.2,velocity,center_ux,0.6979488134384155 +karman_re200,ppo,53,21.2,velocity,center_uy,-0.4931636452674866 +karman_re200,ppo,53,21.2,velocity,lower_ux,0.8892806172370911 +karman_re200,ppo,53,21.2,velocity,lower_uy,-0.15831944346427917 +karman_re200,ppo,54,21.6,velocity,upper_ux,1.3135849237442017 +karman_re200,ppo,54,21.6,velocity,upper_uy,-0.09941590577363968 +karman_re200,ppo,54,21.6,velocity,center_ux,0.5449478626251221 +karman_re200,ppo,54,21.6,velocity,center_uy,-0.1460869461297989 +karman_re200,ppo,54,21.6,velocity,lower_ux,0.8523542284965515 +karman_re200,ppo,54,21.6,velocity,lower_uy,0.018741028383374214 +karman_re200,ppo,55,22.0,velocity,upper_ux,1.3109744787216187 +karman_re200,ppo,55,22.0,velocity,upper_uy,0.1204456314444542 +karman_re200,ppo,55,22.0,velocity,center_ux,0.549618124961853 +karman_re200,ppo,55,22.0,velocity,center_uy,0.36778339743614197 +karman_re200,ppo,55,22.0,velocity,lower_ux,0.8370591998100281 +karman_re200,ppo,55,22.0,velocity,lower_uy,0.20028777420520782 +karman_re200,ppo,56,22.4,velocity,upper_ux,1.1992406845092773 +karman_re200,ppo,56,22.4,velocity,upper_uy,0.3325522243976593 +karman_re200,ppo,56,22.4,velocity,center_ux,0.6828094720840454 +karman_re200,ppo,56,22.4,velocity,center_uy,0.638232946395874 +karman_re200,ppo,56,22.4,velocity,lower_ux,0.8909170031547546 +karman_re200,ppo,56,22.4,velocity,lower_uy,0.29245084524154663 +karman_re200,ppo,57,22.8,velocity,upper_ux,1.0612305402755737 +karman_re200,ppo,57,22.8,velocity,upper_uy,0.4415839910507202 +karman_re200,ppo,57,22.8,velocity,center_ux,0.7876800298690796 +karman_re200,ppo,57,22.8,velocity,center_uy,0.7380152940750122 +karman_re200,ppo,57,22.8,velocity,lower_ux,0.9713355302810669 +karman_re200,ppo,57,22.8,velocity,lower_uy,0.3551495671272278 +karman_re200,ppo,58,23.2,velocity,upper_ux,0.921599268913269 +karman_re200,ppo,58,23.2,velocity,upper_uy,0.45794975757598877 +karman_re200,ppo,58,23.2,velocity,center_ux,0.862000584602356 +karman_re200,ppo,58,23.2,velocity,center_uy,0.779216468334198 +karman_re200,ppo,58,23.2,velocity,lower_ux,1.0522990226745605 +karman_re200,ppo,58,23.2,velocity,lower_uy,0.39102962613105774 +karman_re200,ppo,59,23.6,velocity,upper_ux,0.7780218720436096 +karman_re200,ppo,59,23.6,velocity,upper_uy,0.4102623760700226 +karman_re200,ppo,59,23.6,velocity,center_ux,0.930318295955658 +karman_re200,ppo,59,23.6,velocity,center_uy,0.7843328714370728 +karman_re200,ppo,59,23.6,velocity,lower_ux,1.1265887022018433 +karman_re200,ppo,59,23.6,velocity,lower_uy,0.3777875006198883 +karman_re200,ppo,60,24.0,velocity,upper_ux,0.6400914192199707 +karman_re200,ppo,60,24.0,velocity,upper_uy,0.3159417510032654 +karman_re200,ppo,60,24.0,velocity,center_ux,1.030793309211731 +karman_re200,ppo,60,24.0,velocity,center_uy,0.7410212159156799 +karman_re200,ppo,60,24.0,velocity,lower_ux,1.1889843940734863 +karman_re200,ppo,60,24.0,velocity,lower_uy,0.31814658641815186 +karman_re200,ppo,61,24.4,velocity,upper_ux,0.5435666441917419 +karman_re200,ppo,61,24.4,velocity,upper_uy,0.16060610115528107 +karman_re200,ppo,61,24.4,velocity,center_ux,1.1559087038040161 +karman_re200,ppo,61,24.4,velocity,center_uy,0.6465939283370972 +karman_re200,ppo,61,24.4,velocity,lower_ux,1.1907674074172974 +karman_re200,ppo,61,24.4,velocity,lower_uy,0.13216428458690643 +karman_re200,ppo,62,24.8,velocity,upper_ux,0.5390944480895996 +karman_re200,ppo,62,24.8,velocity,upper_uy,-0.026766924187541008 +karman_re200,ppo,62,24.8,velocity,center_ux,1.2009172439575195 +karman_re200,ppo,62,24.8,velocity,center_uy,-0.007421852555125952 +karman_re200,ppo,62,24.8,velocity,lower_ux,1.190244436264038 +karman_re200,ppo,62,24.8,velocity,lower_uy,-0.05039837956428528 +karman_re200,ppo,63,25.2,velocity,upper_ux,0.6504400372505188 +karman_re200,ppo,63,25.2,velocity,upper_uy,-0.17040319740772247 +karman_re200,ppo,63,25.2,velocity,center_ux,1.1169720888137817 +karman_re200,ppo,63,25.2,velocity,center_uy,-0.6816537976264954 +karman_re200,ppo,63,25.2,velocity,lower_ux,1.2059441804885864 +karman_re200,ppo,63,25.2,velocity,lower_uy,-0.16764339804649353 +karman_re200,ppo,64,25.6,velocity,upper_ux,0.7855331301689148 +karman_re200,ppo,64,25.6,velocity,upper_uy,-0.28284719586372375 +karman_re200,ppo,64,25.6,velocity,center_ux,1.0111438035964966 +karman_re200,ppo,64,25.6,velocity,center_uy,-0.8406761288642883 +karman_re200,ppo,64,25.6,velocity,lower_ux,1.1441411972045898 +karman_re200,ppo,64,25.6,velocity,lower_uy,-0.2855977416038513 +karman_re200,ppo,65,26.0,velocity,upper_ux,0.8975996375083923 +karman_re200,ppo,65,26.0,velocity,upper_uy,-0.3812166154384613 +karman_re200,ppo,65,26.0,velocity,center_ux,0.9560005068778992 +karman_re200,ppo,65,26.0,velocity,center_uy,-0.7893842458724976 +karman_re200,ppo,65,26.0,velocity,lower_ux,1.0560238361358643 +karman_re200,ppo,65,26.0,velocity,lower_uy,-0.3561224043369293 +karman_re200,ppo,66,26.4,velocity,upper_ux,1.0064703226089478 +karman_re200,ppo,66,26.4,velocity,upper_uy,-0.4292792081832886 +karman_re200,ppo,66,26.4,velocity,center_ux,0.9275338053703308 +karman_re200,ppo,66,26.4,velocity,center_uy,-0.7770577073097229 +karman_re200,ppo,66,26.4,velocity,lower_ux,0.9668300747871399 +karman_re200,ppo,66,26.4,velocity,lower_uy,-0.3764433264732361 +karman_re200,ppo,67,26.8,velocity,upper_ux,1.1118862628936768 +karman_re200,ppo,67,26.8,velocity,upper_uy,-0.41595184803009033 +karman_re200,ppo,67,26.8,velocity,center_ux,0.9010260701179504 +karman_re200,ppo,67,26.8,velocity,center_uy,-0.7717679738998413 +karman_re200,ppo,67,26.8,velocity,lower_ux,0.8876358270645142 +karman_re200,ppo,67,26.8,velocity,lower_uy,-0.34225255250930786 +karman_re200,ppo,68,27.2,velocity,upper_ux,1.207296371459961 +karman_re200,ppo,68,27.2,velocity,upper_uy,-0.3484164774417877 +karman_re200,ppo,68,27.2,velocity,center_ux,0.8562278151512146 +karman_re200,ppo,68,27.2,velocity,center_uy,-0.7712417840957642 +karman_re200,ppo,68,27.2,velocity,lower_ux,0.827046811580658 +karman_re200,ppo,68,27.2,velocity,lower_uy,-0.25730565190315247 +karman_re200,ppo,69,27.6,velocity,upper_ux,1.2477625608444214 +karman_re200,ppo,69,27.6,velocity,upper_uy,-0.1858992725610733 +karman_re200,ppo,69,27.6,velocity,center_ux,0.7585775852203369 +karman_re200,ppo,69,27.6,velocity,center_uy,-0.516588568687439 +karman_re200,ppo,69,27.6,velocity,lower_ux,0.7937780022621155 +karman_re200,ppo,69,27.6,velocity,lower_uy,-0.11786697059869766 +karman_re200,ppo,70,28.0,velocity,upper_ux,1.2677477598190308 +karman_re200,ppo,70,28.0,velocity,upper_uy,-0.016931310296058655 +karman_re200,ppo,70,28.0,velocity,center_ux,0.7214778065681458 +karman_re200,ppo,70,28.0,velocity,center_uy,0.27337905764579773 +karman_re200,ppo,70,28.0,velocity,lower_ux,0.7866817712783813 +karman_re200,ppo,70,28.0,velocity,lower_uy,0.06451000273227692 +karman_re200,ppo,71,28.4,velocity,upper_ux,1.212775468826294 +karman_re200,ppo,71,28.4,velocity,upper_uy,0.17168813943862915 +karman_re200,ppo,71,28.4,velocity,center_ux,0.7885090112686157 +karman_re200,ppo,71,28.4,velocity,center_uy,0.7105434536933899 +karman_re200,ppo,71,28.4,velocity,lower_ux,0.8030958771705627 +karman_re200,ppo,71,28.4,velocity,lower_uy,0.2610231041908264 +karman_re200,ppo,72,28.8,velocity,upper_ux,1.1081316471099854 +karman_re200,ppo,72,28.8,velocity,upper_uy,0.3248596489429474 +karman_re200,ppo,72,28.8,velocity,center_ux,0.8502984642982483 +karman_re200,ppo,72,28.8,velocity,center_uy,0.7703506946563721 +karman_re200,ppo,72,28.8,velocity,lower_ux,0.880984365940094 +karman_re200,ppo,72,28.8,velocity,lower_uy,0.35670575499534607 +karman_re200,ppo,73,29.2,velocity,upper_ux,1.0078359842300415 +karman_re200,ppo,73,29.2,velocity,upper_uy,0.37274375557899475 +karman_re200,ppo,73,29.2,velocity,center_ux,0.8894705176353455 +karman_re200,ppo,73,29.2,velocity,center_uy,0.7982009053230286 +karman_re200,ppo,73,29.2,velocity,lower_ux,0.9790728092193604 +karman_re200,ppo,73,29.2,velocity,lower_uy,0.41028881072998047 +karman_re200,ppo,74,29.6,velocity,upper_ux,0.8850522637367249 +karman_re200,ppo,74,29.6,velocity,upper_uy,0.3352449834346771 +karman_re200,ppo,74,29.6,velocity,center_ux,0.9291120767593384 +karman_re200,ppo,74,29.6,velocity,center_uy,0.8237689733505249 +karman_re200,ppo,74,29.6,velocity,lower_ux,1.0717029571533203 +karman_re200,ppo,74,29.6,velocity,lower_uy,0.42356425523757935 +karman_re200,ppo,75,30.0,velocity,upper_ux,0.7282188534736633 +karman_re200,ppo,75,30.0,velocity,upper_uy,0.26610711216926575 +karman_re200,ppo,75,30.0,velocity,center_ux,0.9919326305389404 +karman_re200,ppo,75,30.0,velocity,center_uy,0.8047823309898376 +karman_re200,ppo,75,30.0,velocity,lower_ux,1.1480170488357544 +karman_re200,ppo,75,30.0,velocity,lower_uy,0.38847190141677856 +karman_re200,ppo,76,30.4,velocity,upper_ux,0.5913724899291992 +karman_re200,ppo,76,30.4,velocity,upper_uy,0.17359821498394012 +karman_re200,ppo,76,30.4,velocity,center_ux,1.099522590637207 +karman_re200,ppo,76,30.4,velocity,center_uy,0.8211442828178406 +karman_re200,ppo,76,30.4,velocity,lower_ux,1.189774751663208 +karman_re200,ppo,76,30.4,velocity,lower_uy,0.28770318627357483 +karman_re200,ppo,77,30.8,velocity,upper_ux,0.5479171276092529 +karman_re200,ppo,77,30.8,velocity,upper_uy,0.04750039428472519 +karman_re200,ppo,77,30.8,velocity,center_ux,1.1720378398895264 +karman_re200,ppo,77,30.8,velocity,center_uy,0.3730586767196655 +karman_re200,ppo,77,30.8,velocity,lower_ux,1.157362937927246 +karman_re200,ppo,77,30.8,velocity,lower_uy,0.06202828511595726 +karman_re200,ppo,78,31.2,velocity,upper_ux,0.6357311606407166 +karman_re200,ppo,78,31.2,velocity,upper_uy,-0.07315295934677124 +karman_re200,ppo,78,31.2,velocity,center_ux,1.116859793663025 +karman_re200,ppo,78,31.2,velocity,center_uy,-0.4802202582359314 +karman_re200,ppo,78,31.2,velocity,lower_ux,1.173592209815979 +karman_re200,ppo,78,31.2,velocity,lower_uy,-0.10801278054714203 +karman_re200,ppo,79,31.6,velocity,upper_ux,0.77037513256073 +karman_re200,ppo,79,31.6,velocity,upper_uy,-0.1949135959148407 +karman_re200,ppo,79,31.6,velocity,center_ux,1.0054974555969238 +karman_re200,ppo,79,31.6,velocity,center_uy,-0.8734877109527588 +karman_re200,ppo,79,31.6,velocity,lower_ux,1.1730962991714478 +karman_re200,ppo,79,31.6,velocity,lower_uy,-0.2353937178850174 +karman_re200,ppo,80,32.0,velocity,upper_ux,0.8748300671577454 +karman_re200,ppo,80,32.0,velocity,upper_uy,-0.32418712973594666 +karman_re200,ppo,80,32.0,velocity,center_ux,0.9446833729743958 +karman_re200,ppo,80,32.0,velocity,center_uy,-0.8470543026924133 +karman_re200,ppo,80,32.0,velocity,lower_ux,1.097161054611206 +karman_re200,ppo,80,32.0,velocity,lower_uy,-0.331099271774292 +karman_re200,ppo,81,32.4,velocity,upper_ux,0.9803646206855774 +karman_re200,ppo,81,32.4,velocity,upper_uy,-0.39686575531959534 +karman_re200,ppo,81,32.4,velocity,center_ux,0.9249425530433655 +karman_re200,ppo,81,32.4,velocity,center_uy,-0.8232013583183289 +karman_re200,ppo,81,32.4,velocity,lower_ux,0.9923621416091919 +karman_re200,ppo,81,32.4,velocity,lower_uy,-0.3719843924045563 +karman_re200,ppo,82,32.8,velocity,upper_ux,1.0757125616073608 +karman_re200,ppo,82,32.8,velocity,upper_uy,-0.40351545810699463 +karman_re200,ppo,82,32.8,velocity,center_ux,0.9247979521751404 +karman_re200,ppo,82,32.8,velocity,center_uy,-0.8317394852638245 +karman_re200,ppo,82,32.8,velocity,lower_ux,0.8841261863708496 +karman_re200,ppo,82,32.8,velocity,lower_uy,-0.3594464361667633 +karman_re200,ppo,83,33.2,velocity,upper_ux,1.1594359874725342 +karman_re200,ppo,83,33.2,velocity,upper_uy,-0.3557312786579132 +karman_re200,ppo,83,33.2,velocity,center_ux,0.954745888710022 +karman_re200,ppo,83,33.2,velocity,center_uy,-0.8782874345779419 +karman_re200,ppo,83,33.2,velocity,lower_ux,0.7881025075912476 +karman_re200,ppo,83,33.2,velocity,lower_uy,-0.29676303267478943 +karman_re200,ppo,84,33.6,velocity,upper_ux,1.2070817947387695 +karman_re200,ppo,84,33.6,velocity,upper_uy,-0.2423696517944336 +karman_re200,ppo,84,33.6,velocity,center_ux,1.0169832706451416 +karman_re200,ppo,84,33.6,velocity,center_uy,-0.7252103686332703 +karman_re200,ppo,84,33.6,velocity,lower_ux,0.7216939330101013 +karman_re200,ppo,84,33.6,velocity,lower_uy,-0.1798253208398819 +karman_re200,ppo,85,34.0,velocity,upper_ux,1.2384593486785889 +karman_re200,ppo,85,34.0,velocity,upper_uy,-0.09835074096918106 +karman_re200,ppo,85,34.0,velocity,center_ux,1.0370270013809204 +karman_re200,ppo,85,34.0,velocity,center_uy,0.06910137832164764 +karman_re200,ppo,85,34.0,velocity,lower_ux,0.7061255574226379 +karman_re200,ppo,85,34.0,velocity,lower_uy,-0.020502952858805656 +karman_re200,ppo,86,34.4,velocity,upper_ux,1.2350891828536987 +karman_re200,ppo,86,34.4,velocity,upper_uy,0.06603474915027618 +karman_re200,ppo,86,34.4,velocity,center_ux,0.9789013862609863 +karman_re200,ppo,86,34.4,velocity,center_uy,0.6753366589546204 +karman_re200,ppo,86,34.4,velocity,lower_ux,0.7349643707275391 +karman_re200,ppo,86,34.4,velocity,lower_uy,0.1548897624015808 +karman_re200,ppo,87,34.8,velocity,upper_ux,1.1402366161346436 +karman_re200,ppo,87,34.8,velocity,upper_uy,0.2715376317501068 +karman_re200,ppo,87,34.8,velocity,center_ux,0.9338560700416565 +karman_re200,ppo,87,34.8,velocity,center_uy,0.7478051781654358 +karman_re200,ppo,87,34.8,velocity,lower_ux,0.7967551946640015 +karman_re200,ppo,87,34.8,velocity,lower_uy,0.32063430547714233 +karman_re200,ppo,88,35.2,velocity,upper_ux,1.0234131813049316 +karman_re200,ppo,88,35.2,velocity,upper_uy,0.4037771224975586 +karman_re200,ppo,88,35.2,velocity,center_ux,0.9331604838371277 +karman_re200,ppo,88,35.2,velocity,center_uy,0.7832515835762024 +karman_re200,ppo,88,35.2,velocity,lower_ux,0.8979262709617615 +karman_re200,ppo,88,35.2,velocity,lower_uy,0.39278945326805115 +karman_re200,ppo,89,35.6,velocity,upper_ux,0.9022305011749268 +karman_re200,ppo,89,35.6,velocity,upper_uy,0.4449767768383026 +karman_re200,ppo,89,35.6,velocity,center_ux,0.958228349685669 +karman_re200,ppo,89,35.6,velocity,center_uy,0.8016855120658875 +karman_re200,ppo,89,35.6,velocity,lower_ux,0.9984635710716248 +karman_re200,ppo,89,35.6,velocity,lower_uy,0.4344641864299774 +karman_re200,ppo,90,36.0,velocity,upper_ux,0.7811694145202637 +karman_re200,ppo,90,36.0,velocity,upper_uy,0.4184509217739105 +karman_re200,ppo,90,36.0,velocity,center_ux,0.9997035264968872 +karman_re200,ppo,90,36.0,velocity,center_uy,0.8026238083839417 +karman_re200,ppo,90,36.0,velocity,lower_ux,1.0867658853530884 +karman_re200,ppo,90,36.0,velocity,lower_uy,0.43120723962783813 +karman_re200,ppo,91,36.4,velocity,upper_ux,0.6661003828048706 +karman_re200,ppo,91,36.4,velocity,upper_uy,0.33445560932159424 +karman_re200,ppo,91,36.4,velocity,center_ux,1.0767704248428345 +karman_re200,ppo,91,36.4,velocity,center_uy,0.7955038547515869 +karman_re200,ppo,91,36.4,velocity,lower_ux,1.1600245237350464 +karman_re200,ppo,91,36.4,velocity,lower_uy,0.39037591218948364 +karman_re200,ppo,92,36.8,velocity,upper_ux,0.5825005173683167 +karman_re200,ppo,92,36.8,velocity,upper_uy,0.177512526512146 +karman_re200,ppo,92,36.8,velocity,center_ux,1.233628749847412 +karman_re200,ppo,92,36.8,velocity,center_uy,0.7801644206047058 +karman_re200,ppo,92,36.8,velocity,lower_ux,1.189344882965088 +karman_re200,ppo,92,36.8,velocity,lower_uy,0.28513628244400024 +karman_re200,ppo,93,37.2,velocity,upper_ux,0.5747025609016418 +karman_re200,ppo,93,37.2,velocity,upper_uy,-0.016495922580361366 +karman_re200,ppo,93,37.2,velocity,center_ux,1.3232438564300537 +karman_re200,ppo,93,37.2,velocity,center_uy,0.08006508648395538 +karman_re200,ppo,93,37.2,velocity,lower_ux,1.1298960447311401 +karman_re200,ppo,93,37.2,velocity,lower_uy,0.04205889627337456 +karman_re200,ppo,94,37.6,velocity,upper_ux,0.6741890907287598 +karman_re200,ppo,94,37.6,velocity,upper_uy,-0.1685144454240799 +karman_re200,ppo,94,37.6,velocity,center_ux,1.205315351486206 +karman_re200,ppo,94,37.6,velocity,center_uy,-0.7533721923828125 +karman_re200,ppo,94,37.6,velocity,lower_ux,1.1161246299743652 +karman_re200,ppo,94,37.6,velocity,lower_uy,-0.15052613615989685 +karman_re200,ppo,95,38.0,velocity,upper_ux,0.7949082255363464 +karman_re200,ppo,95,38.0,velocity,upper_uy,-0.29995226860046387 +karman_re200,ppo,95,38.0,velocity,center_ux,1.0557256937026978 +karman_re200,ppo,95,38.0,velocity,center_uy,-0.8752724528312683 +karman_re200,ppo,95,38.0,velocity,lower_ux,1.1045806407928467 +karman_re200,ppo,95,38.0,velocity,lower_uy,-0.2600387930870056 +karman_re200,ppo,96,38.4,velocity,upper_ux,0.9092861413955688 +karman_re200,ppo,96,38.4,velocity,upper_uy,-0.39352214336395264 +karman_re200,ppo,96,38.4,velocity,center_ux,0.9835571050643921 +karman_re200,ppo,96,38.4,velocity,center_uy,-0.794269859790802 +karman_re200,ppo,96,38.4,velocity,lower_ux,1.027762532234192 +karman_re200,ppo,96,38.4,velocity,lower_uy,-0.3373587429523468 +karman_re200,ppo,97,38.8,velocity,upper_ux,1.0171887874603271 +karman_re200,ppo,97,38.8,velocity,upper_uy,-0.432702898979187 +karman_re200,ppo,97,38.8,velocity,center_ux,0.9514103531837463 +karman_re200,ppo,97,38.8,velocity,center_uy,-0.8088081479072571 +karman_re200,ppo,97,38.8,velocity,lower_ux,0.9300585985183716 +karman_re200,ppo,97,38.8,velocity,lower_uy,-0.36583957076072693 +karman_re200,ppo,98,39.2,velocity,upper_ux,1.1146597862243652 +karman_re200,ppo,98,39.2,velocity,upper_uy,-0.4102497100830078 +karman_re200,ppo,98,39.2,velocity,center_ux,0.9474522471427917 +karman_re200,ppo,98,39.2,velocity,center_uy,-0.8368181586265564 +karman_re200,ppo,98,39.2,velocity,lower_ux,0.834738552570343 +karman_re200,ppo,98,39.2,velocity,lower_uy,-0.3410615622997284 +karman_re200,ppo,99,39.6,velocity,upper_ux,1.192845106124878 +karman_re200,ppo,99,39.6,velocity,upper_uy,-0.3369721472263336 +karman_re200,ppo,99,39.6,velocity,center_ux,0.966623067855835 +karman_re200,ppo,99,39.6,velocity,center_uy,-0.9296392798423767 +karman_re200,ppo,99,39.6,velocity,lower_ux,0.7532989382743835 +karman_re200,ppo,99,39.6,velocity,lower_uy,-0.26731595396995544 +karman_re200,ppo,100,40.0,velocity,upper_ux,1.222376823425293 +karman_re200,ppo,100,40.0,velocity,upper_uy,-0.19962230324745178 +karman_re200,ppo,100,40.0,velocity,center_ux,1.0116842985153198 +karman_re200,ppo,100,40.0,velocity,center_uy,-0.5318812727928162 +karman_re200,ppo,100,40.0,velocity,lower_ux,0.7032586932182312 +karman_re200,ppo,100,40.0,velocity,lower_uy,-0.1382683664560318 +karman_re200,ppo,101,40.4,velocity,upper_ux,1.245190978050232 +karman_re200,ppo,101,40.4,velocity,upper_uy,-0.05822981894016266 +karman_re200,ppo,101,40.4,velocity,center_ux,1.0199825763702393 +karman_re200,ppo,101,40.4,velocity,center_uy,0.3950726389884949 +karman_re200,ppo,101,40.4,velocity,lower_ux,0.7106085419654846 +karman_re200,ppo,101,40.4,velocity,lower_uy,0.019691400229930878 +karman_re200,ppo,102,40.8,velocity,upper_ux,1.218700885772705 +karman_re200,ppo,102,40.8,velocity,upper_uy,0.11362127214670181 +karman_re200,ppo,102,40.8,velocity,center_ux,0.9715015292167664 +karman_re200,ppo,102,40.8,velocity,center_uy,0.7497535943984985 +karman_re200,ppo,102,40.8,velocity,lower_ux,0.7518386244773865 +karman_re200,ppo,102,40.8,velocity,lower_uy,0.21354940533638 +karman_re200,ppo,103,41.2,velocity,upper_ux,1.1181634664535522 +karman_re200,ppo,103,41.2,velocity,upper_uy,0.2934541702270508 +karman_re200,ppo,103,41.2,velocity,center_ux,0.9305175542831421 +karman_re200,ppo,103,41.2,velocity,center_uy,0.7503964900970459 +karman_re200,ppo,103,41.2,velocity,lower_ux,0.8221408128738403 +karman_re200,ppo,103,41.2,velocity,lower_uy,0.37156450748443604 +karman_re200,ppo,104,41.6,velocity,upper_ux,1.0090302228927612 +karman_re200,ppo,104,41.6,velocity,upper_uy,0.39244967699050903 +karman_re200,ppo,104,41.6,velocity,center_ux,0.9217782020568848 +karman_re200,ppo,104,41.6,velocity,center_uy,0.7876772284507751 +karman_re200,ppo,104,41.6,velocity,lower_ux,0.9288684129714966 +karman_re200,ppo,104,41.6,velocity,lower_uy,0.4329783618450165 +karman_re200,ppo,105,42.0,velocity,upper_ux,0.9005542993545532 +karman_re200,ppo,105,42.0,velocity,upper_uy,0.40332114696502686 +karman_re200,ppo,105,42.0,velocity,center_ux,0.925315797328949 +karman_re200,ppo,105,42.0,velocity,center_uy,0.8107817769050598 +karman_re200,ppo,105,42.0,velocity,lower_ux,1.0300536155700684 +karman_re200,ppo,105,42.0,velocity,lower_uy,0.46549493074417114 +karman_re200,ppo,106,42.4,velocity,upper_ux,0.7902542948722839 +karman_re200,ppo,106,42.4,velocity,upper_uy,0.35732901096343994 +karman_re200,ppo,106,42.4,velocity,center_ux,0.9353311657905579 +karman_re200,ppo,106,42.4,velocity,center_uy,0.8294249773025513 +karman_re200,ppo,106,42.4,velocity,lower_ux,1.1166348457336426 +karman_re200,ppo,106,42.4,velocity,lower_uy,0.45066070556640625 +karman_re200,ppo,107,42.8,velocity,upper_ux,0.6939277648925781 +karman_re200,ppo,107,42.8,velocity,upper_uy,0.259461909532547 +karman_re200,ppo,107,42.8,velocity,center_ux,0.9639493823051453 +karman_re200,ppo,107,42.8,velocity,center_uy,0.8586673736572266 +karman_re200,ppo,107,42.8,velocity,lower_ux,1.1905628442764282 +karman_re200,ppo,107,42.8,velocity,lower_uy,0.39512911438941956 +karman_re200,ppo,108,43.2,velocity,upper_ux,0.6333954334259033 +karman_re200,ppo,108,43.2,velocity,upper_uy,0.1103576272726059 +karman_re200,ppo,108,43.2,velocity,center_ux,0.952667236328125 +karman_re200,ppo,108,43.2,velocity,center_uy,0.7882441878318787 +karman_re200,ppo,108,43.2,velocity,lower_ux,1.202729344367981 +karman_re200,ppo,108,43.2,velocity,lower_uy,0.24719808995723724 +karman_re200,ppo,109,43.6,velocity,upper_ux,0.6537976861000061 +karman_re200,ppo,109,43.6,velocity,upper_uy,-0.039046335965394974 +karman_re200,ppo,109,43.6,velocity,center_ux,0.888080894947052 +karman_re200,ppo,109,43.6,velocity,center_uy,-0.026761846616864204 +karman_re200,ppo,109,43.6,velocity,lower_ux,1.1663416624069214 +karman_re200,ppo,109,43.6,velocity,lower_uy,0.0077328975312411785 +karman_re200,ppo,110,44.0,velocity,upper_ux,0.7435299158096313 +karman_re200,ppo,110,44.0,velocity,upper_uy,-0.16571682691574097 +karman_re200,ppo,110,44.0,velocity,center_ux,0.8516362905502319 +karman_re200,ppo,110,44.0,velocity,center_uy,-0.8387048244476318 +karman_re200,ppo,110,44.0,velocity,lower_ux,1.1943812370300293 +karman_re200,ppo,110,44.0,velocity,lower_uy,-0.16196835041046143 +karman_re200,ppo,111,44.4,velocity,upper_ux,0.8204010128974915 +karman_re200,ppo,111,44.4,velocity,upper_uy,-0.3041033446788788 +karman_re200,ppo,111,44.4,velocity,center_ux,0.8693023920059204 +karman_re200,ppo,111,44.4,velocity,center_uy,-0.9407545328140259 +karman_re200,ppo,111,44.4,velocity,lower_ux,1.126667857170105 +karman_re200,ppo,111,44.4,velocity,lower_uy,-0.3059883713722229 +karman_re200,ppo,112,44.8,velocity,upper_ux,0.9222679138183594 +karman_re200,ppo,112,44.8,velocity,upper_uy,-0.38927242159843445 +karman_re200,ppo,112,44.8,velocity,center_ux,0.8935617804527283 +karman_re200,ppo,112,44.8,velocity,center_uy,-0.8535993099212646 +karman_re200,ppo,112,44.8,velocity,lower_ux,1.020603895187378 +karman_re200,ppo,112,44.8,velocity,lower_uy,-0.39462339878082275 +karman_re200,ppo,113,45.2,velocity,upper_ux,1.0259240865707397 +karman_re200,ppo,113,45.2,velocity,upper_uy,-0.4281974136829376 +karman_re200,ppo,113,45.2,velocity,center_ux,0.909273087978363 +karman_re200,ppo,113,45.2,velocity,center_uy,-0.8599516153335571 +karman_re200,ppo,113,45.2,velocity,lower_ux,0.9146310687065125 +karman_re200,ppo,113,45.2,velocity,lower_uy,-0.4229918420314789 +karman_re200,ppo,114,45.6,velocity,upper_ux,1.118871808052063 +karman_re200,ppo,114,45.6,velocity,upper_uy,-0.40824273228645325 +karman_re200,ppo,114,45.6,velocity,center_ux,0.9337762594223022 +karman_re200,ppo,114,45.6,velocity,center_uy,-0.8823338150978088 +karman_re200,ppo,114,45.6,velocity,lower_ux,0.8082999587059021 +karman_re200,ppo,114,45.6,velocity,lower_uy,-0.39499109983444214 +karman_re200,ppo,115,46.0,velocity,upper_ux,1.1961015462875366 +karman_re200,ppo,115,46.0,velocity,upper_uy,-0.33258533477783203 +karman_re200,ppo,115,46.0,velocity,center_ux,0.9875940084457397 +karman_re200,ppo,115,46.0,velocity,center_uy,-0.9782664775848389 +karman_re200,ppo,115,46.0,velocity,lower_ux,0.7193987369537354 +karman_re200,ppo,115,46.0,velocity,lower_uy,-0.3112454116344452 +karman_re200,ppo,116,46.4,velocity,upper_ux,1.2244657278060913 +karman_re200,ppo,116,46.4,velocity,upper_uy,-0.186228409409523 +karman_re200,ppo,116,46.4,velocity,center_ux,1.071605920791626 +karman_re200,ppo,116,46.4,velocity,center_uy,-0.6054633259773254 +karman_re200,ppo,116,46.4,velocity,lower_ux,0.6610040068626404 +karman_re200,ppo,116,46.4,velocity,lower_uy,-0.16637784242630005 +karman_re200,ppo,117,46.8,velocity,upper_ux,1.250695824623108 +karman_re200,ppo,117,46.8,velocity,upper_uy,-0.03767138347029686 +karman_re200,ppo,117,46.8,velocity,center_ux,1.0938342809677124 +karman_re200,ppo,117,46.8,velocity,center_uy,0.3765653669834137 +karman_re200,ppo,117,46.8,velocity,lower_ux,0.6660992503166199 +karman_re200,ppo,117,46.8,velocity,lower_uy,0.003581262892112136 +karman_re200,ppo,118,47.2,velocity,upper_ux,1.200848937034607 +karman_re200,ppo,118,47.2,velocity,upper_uy,0.1677713543176651 +karman_re200,ppo,118,47.2,velocity,center_ux,1.0382064580917358 +karman_re200,ppo,118,47.2,velocity,center_uy,0.8266476988792419 +karman_re200,ppo,118,47.2,velocity,lower_ux,0.7300282120704651 +karman_re200,ppo,118,47.2,velocity,lower_uy,0.183303564786911 +karman_re200,ppo,119,47.6,velocity,upper_ux,1.0938115119934082 +karman_re200,ppo,119,47.6,velocity,upper_uy,0.34822142124176025 +karman_re200,ppo,119,47.6,velocity,center_ux,1.0025346279144287 +karman_re200,ppo,119,47.6,velocity,center_uy,0.8195068836212158 +karman_re200,ppo,119,47.6,velocity,lower_ux,0.8089463114738464 +karman_re200,ppo,119,47.6,velocity,lower_uy,0.3462463617324829 +karman_re200,ppo,120,48.0,velocity,upper_ux,0.9633066654205322 +karman_re200,ppo,120,48.0,velocity,upper_uy,0.44081687927246094 +karman_re200,ppo,120,48.0,velocity,center_ux,1.0280681848526 +karman_re200,ppo,120,48.0,velocity,center_uy,0.8279842138290405 +karman_re200,ppo,120,48.0,velocity,lower_ux,0.9152981638908386 +karman_re200,ppo,120,48.0,velocity,lower_uy,0.4077477753162384 +karman_re200,ppo,121,48.4,velocity,upper_ux,0.8044169545173645 +karman_re200,ppo,121,48.4,velocity,upper_uy,0.4599398672580719 +karman_re200,ppo,121,48.4,velocity,center_ux,1.094226598739624 +karman_re200,ppo,121,48.4,velocity,center_uy,0.8008389472961426 +karman_re200,ppo,121,48.4,velocity,lower_ux,1.0100284814834595 +karman_re200,ppo,121,48.4,velocity,lower_uy,0.42617306113243103 +karman_re200,ppo,122,48.8,velocity,upper_ux,0.6200383901596069 +karman_re200,ppo,122,48.8,velocity,upper_uy,0.43061286211013794 +karman_re200,ppo,122,48.8,velocity,center_ux,1.1844875812530518 +karman_re200,ppo,122,48.8,velocity,center_uy,0.7051206231117249 +karman_re200,ppo,122,48.8,velocity,lower_ux,1.076522946357727 +karman_re200,ppo,122,48.8,velocity,lower_uy,0.4067467749118805 +karman_re200,ppo,123,49.2,velocity,upper_ux,0.4452676475048065 +karman_re200,ppo,123,49.2,velocity,upper_uy,0.2988537549972534 +karman_re200,ppo,123,49.2,velocity,center_ux,1.3427554368972778 +karman_re200,ppo,123,49.2,velocity,center_uy,0.5713407397270203 +karman_re200,ppo,123,49.2,velocity,lower_ux,1.1240214109420776 +karman_re200,ppo,123,49.2,velocity,lower_uy,0.36068791151046753 +karman_re200,ppo,124,49.6,velocity,upper_ux,0.34908032417297363 +karman_re200,ppo,124,49.6,velocity,upper_uy,0.02867102436721325 +karman_re200,ppo,124,49.6,velocity,center_ux,1.4729313850402832 +karman_re200,ppo,124,49.6,velocity,center_uy,0.23347438871860504 +karman_re200,ppo,124,49.6,velocity,lower_ux,1.1372671127319336 +karman_re200,ppo,124,49.6,velocity,lower_uy,0.2822660803794861 +karman_re200,ppo,125,50.0,velocity,upper_ux,0.43127888441085815 +karman_re200,ppo,125,50.0,velocity,upper_uy,-0.25639522075653076 +karman_re200,ppo,125,50.0,velocity,center_ux,1.370200514793396 +karman_re200,ppo,125,50.0,velocity,center_uy,-0.2817005515098572 +karman_re200,ppo,125,50.0,velocity,lower_ux,1.0660009384155273 +karman_re200,ppo,125,50.0,velocity,lower_uy,0.11111127585172653 +karman_re200,ppo,126,50.4,velocity,upper_ux,0.6654576063156128 +karman_re200,ppo,126,50.4,velocity,upper_uy,-0.3622977137565613 +karman_re200,ppo,126,50.4,velocity,center_ux,1.162009835243225 +karman_re200,ppo,126,50.4,velocity,center_uy,-0.5643579363822937 +karman_re200,ppo,126,50.4,velocity,lower_ux,0.9308406710624695 +karman_re200,ppo,126,50.4,velocity,lower_uy,-0.15911373496055603 +karman_re200,ppo,127,50.8,velocity,upper_ux,0.8491963148117065 +karman_re200,ppo,127,50.8,velocity,upper_uy,-0.42071524262428284 +karman_re200,ppo,127,50.8,velocity,center_ux,1.0256396532058716 +karman_re200,ppo,127,50.8,velocity,center_uy,-0.6482499837875366 +karman_re200,ppo,127,50.8,velocity,lower_ux,0.9035105109214783 +karman_re200,ppo,127,50.8,velocity,lower_uy,-0.31401243805885315 +karman_re200,ppo,128,51.2,velocity,upper_ux,0.9823364019393921 +karman_re200,ppo,128,51.2,velocity,upper_uy,-0.46952828764915466 +karman_re200,ppo,128,51.2,velocity,center_ux,0.9607558250427246 +karman_re200,ppo,128,51.2,velocity,center_uy,-0.7124395966529846 +karman_re200,ppo,128,51.2,velocity,lower_ux,0.8909792900085449 +karman_re200,ppo,128,51.2,velocity,lower_uy,-0.36512625217437744 +karman_re200,ppo,129,51.6,velocity,upper_ux,1.0961378812789917 +karman_re200,ppo,129,51.6,velocity,upper_uy,-0.47184035181999207 +karman_re200,ppo,129,51.6,velocity,center_ux,0.9237791299819946 +karman_re200,ppo,129,51.6,velocity,center_uy,-0.7628234028816223 +karman_re200,ppo,129,51.6,velocity,lower_ux,0.832319438457489 +karman_re200,ppo,129,51.6,velocity,lower_uy,-0.3639749586582184 +karman_re200,ppo,130,52.0,velocity,upper_ux,1.1933311223983765 +karman_re200,ppo,130,52.0,velocity,upper_uy,-0.426436185836792 +karman_re200,ppo,130,52.0,velocity,center_ux,0.8960214853286743 +karman_re200,ppo,130,52.0,velocity,center_uy,-0.8259118795394897 +karman_re200,ppo,130,52.0,velocity,lower_ux,0.761997401714325 +karman_re200,ppo,130,52.0,velocity,lower_uy,-0.32312580943107605 +karman_re200,ppo,131,52.4,velocity,upper_ux,1.2586570978164673 +karman_re200,ppo,131,52.4,velocity,upper_uy,-0.31162065267562866 +karman_re200,ppo,131,52.4,velocity,center_ux,0.8364838361740112 +karman_re200,ppo,131,52.4,velocity,center_uy,-0.901893675327301 +karman_re200,ppo,131,52.4,velocity,lower_ux,0.7063919305801392 +karman_re200,ppo,131,52.4,velocity,lower_uy,-0.2351972758769989 +karman_re200,ppo,132,52.8,velocity,upper_ux,1.2933220863342285 +karman_re200,ppo,132,52.8,velocity,upper_uy,-0.15031760931015015 +karman_re200,ppo,132,52.8,velocity,center_ux,0.7883185744285583 +karman_re200,ppo,132,52.8,velocity,center_uy,-0.31208503246307373 +karman_re200,ppo,132,52.8,velocity,lower_ux,0.6880589127540588 +karman_re200,ppo,132,52.8,velocity,lower_uy,-0.10683237016201019 +karman_re200,ppo,133,53.2,velocity,upper_ux,1.29683256149292 +karman_re200,ppo,133,53.2,velocity,upper_uy,0.018120119348168373 +karman_re200,ppo,133,53.2,velocity,center_ux,0.8185356259346008 +karman_re200,ppo,133,53.2,velocity,center_uy,0.6098050475120544 +karman_re200,ppo,133,53.2,velocity,lower_ux,0.7197598218917847 +karman_re200,ppo,133,53.2,velocity,lower_uy,0.03366249054670334 +karman_re200,ppo,134,53.6,velocity,upper_ux,1.2072643041610718 +karman_re200,ppo,134,53.6,velocity,upper_uy,0.23254287242889404 +karman_re200,ppo,134,53.6,velocity,center_ux,0.8866936564445496 +karman_re200,ppo,134,53.6,velocity,center_uy,0.8365513682365417 +karman_re200,ppo,134,53.6,velocity,lower_ux,0.7785036563873291 +karman_re200,ppo,134,53.6,velocity,lower_uy,0.20267000794410706 +karman_re200,ppo,135,54.0,velocity,upper_ux,1.1003206968307495 +karman_re200,ppo,135,54.0,velocity,upper_uy,0.3936525583267212 +karman_re200,ppo,135,54.0,velocity,center_ux,0.9452564120292664 +karman_re200,ppo,135,54.0,velocity,center_uy,0.8050881028175354 +karman_re200,ppo,135,54.0,velocity,lower_ux,0.8561285138130188 +karman_re200,ppo,135,54.0,velocity,lower_uy,0.33773118257522583 +karman_re200,ppo,136,54.4,velocity,upper_ux,0.9533544778823853 +karman_re200,ppo,136,54.4,velocity,upper_uy,0.46993228793144226 +karman_re200,ppo,136,54.4,velocity,center_ux,1.0146538019180298 +karman_re200,ppo,136,54.4,velocity,center_uy,0.8153981566429138 +karman_re200,ppo,136,54.4,velocity,lower_ux,0.9524463415145874 +karman_re200,ppo,136,54.4,velocity,lower_uy,0.3838956952095032 +karman_re200,ppo,137,54.8,velocity,upper_ux,0.7637252807617188 +karman_re200,ppo,137,54.8,velocity,upper_uy,0.48922431468963623 +karman_re200,ppo,137,54.8,velocity,center_ux,1.1140377521514893 +karman_re200,ppo,137,54.8,velocity,center_uy,0.7689160108566284 +karman_re200,ppo,137,54.8,velocity,lower_ux,1.0396744012832642 +karman_re200,ppo,137,54.8,velocity,lower_uy,0.3922778069972992 +karman_re200,ppo,138,55.2,velocity,upper_ux,0.548931896686554 +karman_re200,ppo,138,55.2,velocity,upper_uy,0.45617106556892395 +karman_re200,ppo,138,55.2,velocity,center_ux,1.2216585874557495 +karman_re200,ppo,138,55.2,velocity,center_uy,0.6168592572212219 +karman_re200,ppo,138,55.2,velocity,lower_ux,1.1004313230514526 +karman_re200,ppo,138,55.2,velocity,lower_uy,0.36073189973831177 +karman_re200,ppo,139,55.6,velocity,upper_ux,0.3645475506782532 +karman_re200,ppo,139,55.6,velocity,upper_uy,0.2797664403915405 +karman_re200,ppo,139,55.6,velocity,center_ux,1.3873234987258911 +karman_re200,ppo,139,55.6,velocity,center_uy,0.43114998936653137 +karman_re200,ppo,139,55.6,velocity,lower_ux,1.1362544298171997 +karman_re200,ppo,139,55.6,velocity,lower_uy,0.29742902517318726 +karman_re200,ppo,140,56.0,velocity,upper_ux,0.3261740505695343 +karman_re200,ppo,140,56.0,velocity,upper_uy,-0.057633087038993835 +karman_re200,ppo,140,56.0,velocity,center_ux,1.4261430501937866 +karman_re200,ppo,140,56.0,velocity,center_uy,0.029479239135980606 +karman_re200,ppo,140,56.0,velocity,lower_ux,1.1165447235107422 +karman_re200,ppo,140,56.0,velocity,lower_uy,0.16118036210536957 +karman_re200,ppo,141,56.4,velocity,upper_ux,0.5004356503486633 +karman_re200,ppo,141,56.4,velocity,upper_uy,-0.32577893137931824 +karman_re200,ppo,141,56.4,velocity,center_ux,1.2934132814407349 +karman_re200,ppo,141,56.4,velocity,center_uy,-0.3373993933200836 +karman_re200,ppo,141,56.4,velocity,lower_ux,1.009859561920166 +karman_re200,ppo,141,56.4,velocity,lower_uy,-0.09307046979665756 +karman_re200,ppo,142,56.8,velocity,upper_ux,0.7479958534240723 +karman_re200,ppo,142,56.8,velocity,upper_uy,-0.3751952648162842 +karman_re200,ppo,142,56.8,velocity,center_ux,1.1545923948287964 +karman_re200,ppo,142,56.8,velocity,center_uy,-0.5085769891738892 +karman_re200,ppo,142,56.8,velocity,lower_ux,0.9674193859100342 +karman_re200,ppo,142,56.8,velocity,lower_uy,-0.24553117156028748 +karman_re200,ppo,143,57.2,velocity,upper_ux,0.916312575340271 +karman_re200,ppo,143,57.2,velocity,upper_uy,-0.424243688583374 +karman_re200,ppo,143,57.2,velocity,center_ux,1.0681756734848022 +karman_re200,ppo,143,57.2,velocity,center_uy,-0.5825290679931641 +karman_re200,ppo,143,57.2,velocity,lower_ux,0.9847736954689026 +karman_re200,ppo,143,57.2,velocity,lower_uy,-0.27256259322166443 +karman_re200,ppo,144,57.6,velocity,upper_ux,1.0399399995803833 +karman_re200,ppo,144,57.6,velocity,upper_uy,-0.44130611419677734 +karman_re200,ppo,144,57.6,velocity,center_ux,0.9986159801483154 +karman_re200,ppo,144,57.6,velocity,center_uy,-0.6284310221672058 +karman_re200,ppo,144,57.6,velocity,lower_ux,0.9450023174285889 +karman_re200,ppo,144,57.6,velocity,lower_uy,-0.28147879242897034 +karman_re200,ppo,145,58.0,velocity,upper_ux,1.1455854177474976 +karman_re200,ppo,145,58.0,velocity,upper_uy,-0.4162513315677643 +karman_re200,ppo,145,58.0,velocity,center_ux,0.9334736466407776 +karman_re200,ppo,145,58.0,velocity,center_uy,-0.6747509241104126 +karman_re200,ppo,145,58.0,velocity,lower_ux,0.8862603902816772 +karman_re200,ppo,145,58.0,velocity,lower_uy,-0.26192912459373474 +karman_re200,ppo,146,58.4,velocity,upper_ux,1.227616310119629 +karman_re200,ppo,146,58.4,velocity,upper_uy,-0.33561956882476807 +karman_re200,ppo,146,58.4,velocity,center_ux,0.832834780216217 +karman_re200,ppo,146,58.4,velocity,center_uy,-0.7285810708999634 +karman_re200,ppo,146,58.4,velocity,lower_ux,0.8382834792137146 +karman_re200,ppo,146,58.4,velocity,lower_uy,-0.20767660439014435 +karman_re200,ppo,147,58.8,velocity,upper_ux,1.2479311227798462 +karman_re200,ppo,147,58.8,velocity,upper_uy,-0.19200371205806732 +karman_re200,ppo,147,58.8,velocity,center_ux,0.687714159488678 +karman_re200,ppo,147,58.8,velocity,center_uy,-0.4055755138397217 +karman_re200,ppo,147,58.8,velocity,lower_ux,0.8175632953643799 +karman_re200,ppo,147,58.8,velocity,lower_uy,-0.11726713180541992 +karman_re200,ppo,148,59.2,velocity,upper_ux,1.2332779169082642 +karman_re200,ppo,148,59.2,velocity,upper_uy,-0.04349353909492493 +karman_re200,ppo,148,59.2,velocity,center_ux,0.7033207416534424 +karman_re200,ppo,148,59.2,velocity,center_uy,0.37960484623908997 +karman_re200,ppo,148,59.2,velocity,lower_ux,0.8208439350128174 +karman_re200,ppo,148,59.2,velocity,lower_uy,0.02536906488239765 +karman_re200,ppo,149,59.6,velocity,upper_ux,1.2109757661819458 +karman_re200,ppo,149,59.6,velocity,upper_uy,0.08629107475280762 +karman_re200,ppo,149,59.6,velocity,center_ux,0.8209084272384644 +karman_re200,ppo,149,59.6,velocity,center_uy,0.6431989073753357 +karman_re200,ppo,149,59.6,velocity,lower_ux,0.8199926614761353 +karman_re200,ppo,149,59.6,velocity,lower_uy,0.2450316995382309 +karman_re200,ppo,150,60.0,velocity,upper_ux,1.1229352951049805 +karman_re200,ppo,150,60.0,velocity,upper_uy,0.230285182595253 +karman_re200,ppo,150,60.0,velocity,center_ux,0.8765891194343567 +karman_re200,ppo,150,60.0,velocity,center_uy,0.6648958325386047 +karman_re200,ppo,150,60.0,velocity,lower_ux,0.8807141184806824 +karman_re200,ppo,150,60.0,velocity,lower_uy,0.3566986322402954 +karman_re200,ppo,151,60.4,velocity,upper_ux,1.0034775733947754 +karman_re200,ppo,151,60.4,velocity,upper_uy,0.34745368361473083 +karman_re200,ppo,151,60.4,velocity,center_ux,0.8984660506248474 +karman_re200,ppo,151,60.4,velocity,center_uy,0.7244857549667358 +karman_re200,ppo,151,60.4,velocity,lower_ux,0.9743494987487793 +karman_re200,ppo,151,60.4,velocity,lower_uy,0.40527796745300293 +karman_re200,ppo,152,60.8,velocity,upper_ux,0.8869384527206421 +karman_re200,ppo,152,60.8,velocity,upper_uy,0.3829370141029358 +karman_re200,ppo,152,60.8,velocity,center_ux,0.9199160933494568 +karman_re200,ppo,152,60.8,velocity,center_uy,0.7630519866943359 +karman_re200,ppo,152,60.8,velocity,lower_ux,1.061356544494629 +karman_re200,ppo,152,60.8,velocity,lower_uy,0.43226006627082825 +karman_re200,ppo,153,61.2,velocity,upper_ux,0.7772880792617798 +karman_re200,ppo,153,61.2,velocity,upper_uy,0.3555171489715576 +karman_re200,ppo,153,61.2,velocity,center_ux,0.9557890295982361 +karman_re200,ppo,153,61.2,velocity,center_uy,0.7934859395027161 +karman_re200,ppo,153,61.2,velocity,lower_ux,1.1376631259918213 +karman_re200,ppo,153,61.2,velocity,lower_uy,0.41453129053115845 +karman_re200,ppo,154,61.6,velocity,upper_ux,0.6810048818588257 +karman_re200,ppo,154,61.6,velocity,upper_uy,0.2720419764518738 +karman_re200,ppo,154,61.6,velocity,center_ux,1.041113257408142 +karman_re200,ppo,154,61.6,velocity,center_uy,0.8683747053146362 +karman_re200,ppo,154,61.6,velocity,lower_ux,1.1964163780212402 +karman_re200,ppo,154,61.6,velocity,lower_uy,0.3524119257926941 +karman_re200,ppo,155,62.0,velocity,upper_ux,0.6220608353614807 +karman_re200,ppo,155,62.0,velocity,upper_uy,0.13871008157730103 +karman_re200,ppo,155,62.0,velocity,center_ux,1.1547887325286865 +karman_re200,ppo,155,62.0,velocity,center_uy,0.7031990885734558 +karman_re200,ppo,155,62.0,velocity,lower_ux,1.195335030555725 +karman_re200,ppo,155,62.0,velocity,lower_uy,0.21923106908798218 +karman_re200,ppo,156,62.4,velocity,upper_ux,0.6447648406028748 +karman_re200,ppo,156,62.4,velocity,upper_uy,-0.00263245333917439 +karman_re200,ppo,156,62.4,velocity,center_ux,1.17592191696167 +karman_re200,ppo,156,62.4,velocity,center_uy,-0.21773551404476166 +karman_re200,ppo,156,62.4,velocity,lower_ux,1.1293532848358154 +karman_re200,ppo,156,62.4,velocity,lower_uy,0.00010389258386567235 +karman_re200,ppo,157,62.8,velocity,upper_ux,0.7292630672454834 +karman_re200,ppo,157,62.8,velocity,upper_uy,-0.12907004356384277 +karman_re200,ppo,157,62.8,velocity,center_ux,1.0832786560058594 +karman_re200,ppo,157,62.8,velocity,center_uy,-0.8289821743965149 +karman_re200,ppo,157,62.8,velocity,lower_ux,1.1387120485305786 +karman_re200,ppo,157,62.8,velocity,lower_uy,-0.16632626950740814 +karman_re200,ppo,158,63.2,velocity,upper_ux,0.8042484521865845 +karman_re200,ppo,158,63.2,velocity,upper_uy,-0.27314242720603943 +karman_re200,ppo,158,63.2,velocity,center_ux,1.000728964805603 +karman_re200,ppo,158,63.2,velocity,center_uy,-0.7549275159835815 +karman_re200,ppo,158,63.2,velocity,lower_ux,1.1340186595916748 +karman_re200,ppo,158,63.2,velocity,lower_uy,-0.2726210057735443 +karman_re200,ppo,159,63.6,velocity,upper_ux,0.904430091381073 +karman_re200,ppo,159,63.6,velocity,upper_uy,-0.3606506288051605 +karman_re200,ppo,159,63.6,velocity,center_ux,0.962004542350769 +karman_re200,ppo,159,63.6,velocity,center_uy,-0.6929657459259033 +karman_re200,ppo,159,63.6,velocity,lower_ux,1.067793607711792 +karman_re200,ppo,159,63.6,velocity,lower_uy,-0.343540221452713 +karman_re200,ppo,160,64.0,velocity,upper_ux,1.0081322193145752 +karman_re200,ppo,160,64.0,velocity,upper_uy,-0.4018157124519348 +karman_re200,ppo,160,64.0,velocity,center_ux,0.9357658624649048 +karman_re200,ppo,160,64.0,velocity,center_uy,-0.7058491706848145 +karman_re200,ppo,160,64.0,velocity,lower_ux,0.9888300895690918 +karman_re200,ppo,160,64.0,velocity,lower_uy,-0.35940802097320557 +karman_re200,ppo,161,64.4,velocity,upper_ux,1.1084901094436646 +karman_re200,ppo,161,64.4,velocity,upper_uy,-0.39719486236572266 +karman_re200,ppo,161,64.4,velocity,center_ux,0.9047249555587769 +karman_re200,ppo,161,64.4,velocity,center_uy,-0.7334142327308655 +karman_re200,ppo,161,64.4,velocity,lower_ux,0.9160386919975281 +karman_re200,ppo,161,64.4,velocity,lower_uy,-0.3335567116737366 +karman_re200,ppo,162,64.8,velocity,upper_ux,1.2002904415130615 +karman_re200,ppo,162,64.8,velocity,upper_uy,-0.3322235941886902 +karman_re200,ppo,162,64.8,velocity,center_ux,0.846585750579834 +karman_re200,ppo,162,64.8,velocity,center_uy,-0.7853503227233887 +karman_re200,ppo,162,64.8,velocity,lower_ux,0.8612948656082153 +karman_re200,ppo,162,64.8,velocity,lower_uy,-0.2641526460647583 +karman_re200,ppo,163,65.2,velocity,upper_ux,1.2339595556259155 +karman_re200,ppo,163,65.2,velocity,upper_uy,-0.19849619269371033 +karman_re200,ppo,163,65.2,velocity,center_ux,0.7287989854812622 +karman_re200,ppo,163,65.2,velocity,center_uy,-0.5816197395324707 +karman_re200,ppo,163,65.2,velocity,lower_ux,0.8300012350082397 +karman_re200,ppo,163,65.2,velocity,lower_uy,-0.15261676907539368 +karman_re200,ppo,164,65.6,velocity,upper_ux,1.2246779203414917 +karman_re200,ppo,164,65.6,velocity,upper_uy,-0.04730065166950226 +karman_re200,ppo,164,65.6,velocity,center_ux,0.7013253569602966 +karman_re200,ppo,164,65.6,velocity,center_uy,0.23607668280601501 +karman_re200,ppo,164,65.6,velocity,lower_ux,0.8286378979682922 +karman_re200,ppo,164,65.6,velocity,lower_uy,0.005323543678969145 +karman_re200,ppo,165,66.0,velocity,upper_ux,1.2052085399627686 +karman_re200,ppo,165,66.0,velocity,upper_uy,0.08799508213996887 +karman_re200,ppo,165,66.0,velocity,center_ux,0.7975462079048157 +karman_re200,ppo,165,66.0,velocity,center_uy,0.6995657086372375 +karman_re200,ppo,165,66.0,velocity,lower_ux,0.8286591172218323 +karman_re200,ppo,165,66.0,velocity,lower_uy,0.2286851704120636 +karman_re200,ppo,166,66.4,velocity,upper_ux,1.1162139177322388 +karman_re200,ppo,166,66.4,velocity,upper_uy,0.21415181457996368 +karman_re200,ppo,166,66.4,velocity,center_ux,0.8693036437034607 +karman_re200,ppo,166,66.4,velocity,center_uy,0.7137819528579712 +karman_re200,ppo,166,66.4,velocity,lower_ux,0.8815706372261047 +karman_re200,ppo,166,66.4,velocity,lower_uy,0.3468143343925476 +karman_re200,ppo,167,66.8,velocity,upper_ux,1.0082069635391235 +karman_re200,ppo,167,66.8,velocity,upper_uy,0.27836012840270996 +karman_re200,ppo,167,66.8,velocity,center_ux,0.8978177905082703 +karman_re200,ppo,167,66.8,velocity,center_uy,0.7451590895652771 +karman_re200,ppo,167,66.8,velocity,lower_ux,0.9722549319267273 +karman_re200,ppo,167,66.8,velocity,lower_uy,0.4016699194908142 +karman_re200,ppo,168,67.2,velocity,upper_ux,0.8766646385192871 +karman_re200,ppo,168,67.2,velocity,upper_uy,0.27196553349494934 +karman_re200,ppo,168,67.2,velocity,center_ux,0.9182336926460266 +karman_re200,ppo,168,67.2,velocity,center_uy,0.7840925455093384 +karman_re200,ppo,168,67.2,velocity,lower_ux,1.0589370727539062 +karman_re200,ppo,168,67.2,velocity,lower_uy,0.42135849595069885 +karman_re200,ppo,169,67.6,velocity,upper_ux,0.7081778645515442 +karman_re200,ppo,169,67.6,velocity,upper_uy,0.26166749000549316 +karman_re200,ppo,169,67.6,velocity,center_ux,0.9587091207504272 +karman_re200,ppo,169,67.6,velocity,center_uy,0.8439247608184814 +karman_re200,ppo,169,67.6,velocity,lower_ux,1.1262134313583374 +karman_re200,ppo,169,67.6,velocity,lower_uy,0.39295142889022827 +karman_re200,ppo,170,68.0,velocity,upper_ux,0.5791128277778625 +karman_re200,ppo,170,68.0,velocity,upper_uy,0.22172507643699646 +karman_re200,ppo,170,68.0,velocity,center_ux,1.0936400890350342 +karman_re200,ppo,170,68.0,velocity,center_uy,0.8418933749198914 +karman_re200,ppo,170,68.0,velocity,lower_ux,1.1673952341079712 +karman_re200,ppo,170,68.0,velocity,lower_uy,0.32293957471847534 +karman_re200,ppo,171,68.4,velocity,upper_ux,0.5347499847412109 +karman_re200,ppo,171,68.4,velocity,upper_uy,0.11346288025379181 +karman_re200,ppo,171,68.4,velocity,center_ux,1.2179677486419678 +karman_re200,ppo,171,68.4,velocity,center_uy,0.4089408218860626 +karman_re200,ppo,171,68.4,velocity,lower_ux,1.147659420967102 +karman_re200,ppo,171,68.4,velocity,lower_uy,0.21214735507965088 +karman_re200,ppo,172,68.8,velocity,upper_ux,0.5916315317153931 +karman_re200,ppo,172,68.8,velocity,upper_uy,-0.03339993581175804 +karman_re200,ppo,172,68.8,velocity,center_ux,1.1600958108901978 +karman_re200,ppo,172,68.8,velocity,center_uy,-0.3974394202232361 +karman_re200,ppo,172,68.8,velocity,lower_ux,1.0517890453338623 +karman_re200,ppo,172,68.8,velocity,lower_uy,0.028461093083024025 +karman_re200,ppo,173,69.2,velocity,upper_ux,0.7133663892745972 +karman_re200,ppo,173,69.2,velocity,upper_uy,-0.1768093854188919 +karman_re200,ppo,173,69.2,velocity,center_ux,1.0192689895629883 +karman_re200,ppo,173,69.2,velocity,center_uy,-0.7716130018234253 +karman_re200,ppo,173,69.2,velocity,lower_ux,0.9927603006362915 +karman_re200,ppo,173,69.2,velocity,lower_uy,-0.16762329638004303 +karman_re200,ppo,174,69.6,velocity,upper_ux,0.8172014355659485 +karman_re200,ppo,174,69.6,velocity,upper_uy,-0.3178522288799286 +karman_re200,ppo,174,69.6,velocity,center_ux,0.933533251285553 +karman_re200,ppo,174,69.6,velocity,center_uy,-0.777432918548584 +karman_re200,ppo,174,69.6,velocity,lower_ux,1.0023608207702637 +karman_re200,ppo,174,69.6,velocity,lower_uy,-0.28913888335227966 +karman_re200,ppo,175,70.0,velocity,upper_ux,0.9310743808746338 +karman_re200,ppo,175,70.0,velocity,upper_uy,-0.4032694697380066 +karman_re200,ppo,175,70.0,velocity,center_ux,0.895915687084198 +karman_re200,ppo,175,70.0,velocity,center_uy,-0.7801406383514404 +karman_re200,ppo,175,70.0,velocity,lower_ux,0.9479939341545105 +karman_re200,ppo,175,70.0,velocity,lower_uy,-0.3773898780345917 +karman_re200,ppo,176,70.4,velocity,upper_ux,1.0430686473846436 +karman_re200,ppo,176,70.4,velocity,upper_uy,-0.43297234177589417 +karman_re200,ppo,176,70.4,velocity,center_ux,0.8755207061767578 +karman_re200,ppo,176,70.4,velocity,center_uy,-0.8087751269340515 +karman_re200,ppo,176,70.4,velocity,lower_ux,0.8714516162872314 +karman_re200,ppo,176,70.4,velocity,lower_uy,-0.4025605022907257 +karman_re200,ppo,177,70.8,velocity,upper_ux,1.143776535987854 +karman_re200,ppo,177,70.8,velocity,upper_uy,-0.40422192215919495 +karman_re200,ppo,177,70.8,velocity,center_ux,0.8592813014984131 +karman_re200,ppo,177,70.8,velocity,center_uy,-0.8677536249160767 +karman_re200,ppo,177,70.8,velocity,lower_ux,0.7929221391677856 +karman_re200,ppo,177,70.8,velocity,lower_uy,-0.37967801094055176 +karman_re200,ppo,178,71.2,velocity,upper_ux,1.2137095928192139 +karman_re200,ppo,178,71.2,velocity,upper_uy,-0.3047369122505188 +karman_re200,ppo,178,71.2,velocity,center_ux,0.8372133374214172 +karman_re200,ppo,178,71.2,velocity,center_uy,-0.9609053134918213 +karman_re200,ppo,178,71.2,velocity,lower_ux,0.7263448238372803 +karman_re200,ppo,178,71.2,velocity,lower_uy,-0.3014562129974365 +karman_re200,ppo,179,71.6,velocity,upper_ux,1.2272343635559082 +karman_re200,ppo,179,71.6,velocity,upper_uy,-0.15593816339969635 +karman_re200,ppo,179,71.6,velocity,center_ux,0.833588182926178 +karman_re200,ppo,179,71.6,velocity,center_uy,-0.5055190920829773 +karman_re200,ppo,179,71.6,velocity,lower_ux,0.6852611303329468 +karman_re200,ppo,179,71.6,velocity,lower_uy,-0.1757233589887619 +karman_re200,ppo,180,72.0,velocity,upper_ux,1.253656268119812 +karman_re200,ppo,180,72.0,velocity,upper_uy,-0.0277141984552145 +karman_re200,ppo,180,72.0,velocity,center_ux,0.8844708800315857 +karman_re200,ppo,180,72.0,velocity,center_uy,0.443048894405365 +karman_re200,ppo,180,72.0,velocity,lower_ux,0.6932064890861511 +karman_re200,ppo,180,72.0,velocity,lower_uy,-0.02465250715613365 +karman_re200,ppo,181,72.4,velocity,upper_ux,1.2402468919754028 +karman_re200,ppo,181,72.4,velocity,upper_uy,0.11706540733575821 +karman_re200,ppo,181,72.4,velocity,center_ux,0.9248868823051453 +karman_re200,ppo,181,72.4,velocity,center_uy,0.7585303783416748 +karman_re200,ppo,181,72.4,velocity,lower_ux,0.7459724545478821 +karman_re200,ppo,181,72.4,velocity,lower_uy,0.14272800087928772 +karman_re200,ppo,182,72.8,velocity,upper_ux,1.1496312618255615 +karman_re200,ppo,182,72.8,velocity,upper_uy,0.2745569050312042 +karman_re200,ppo,182,72.8,velocity,center_ux,0.9348718523979187 +karman_re200,ppo,182,72.8,velocity,center_uy,0.722597599029541 +karman_re200,ppo,182,72.8,velocity,lower_ux,0.8092081546783447 +karman_re200,ppo,182,72.8,velocity,lower_uy,0.33387768268585205 +karman_re200,ppo,183,73.2,velocity,upper_ux,1.0465893745422363 +karman_re200,ppo,183,73.2,velocity,upper_uy,0.36344006657600403 +karman_re200,ppo,183,73.2,velocity,center_ux,0.9421266317367554 +karman_re200,ppo,183,73.2,velocity,center_uy,0.7686101794242859 +karman_re200,ppo,183,73.2,velocity,lower_ux,0.9097710251808167 +karman_re200,ppo,183,73.2,velocity,lower_uy,0.4115242660045624 +karman_re200,ppo,184,73.6,velocity,upper_ux,0.9311652183532715 +karman_re200,ppo,184,73.6,velocity,upper_uy,0.36660030484199524 +karman_re200,ppo,184,73.6,velocity,center_ux,0.9579094052314758 +karman_re200,ppo,184,73.6,velocity,center_uy,0.7942000031471252 +karman_re200,ppo,184,73.6,velocity,lower_ux,1.012376070022583 +karman_re200,ppo,184,73.6,velocity,lower_uy,0.43579423427581787 +karman_re200,ppo,185,74.0,velocity,upper_ux,0.7980883121490479 +karman_re200,ppo,185,74.0,velocity,upper_uy,0.3274267315864563 +karman_re200,ppo,185,74.0,velocity,center_ux,0.991934061050415 +karman_re200,ppo,185,74.0,velocity,center_uy,0.824757993221283 +karman_re200,ppo,185,74.0,velocity,lower_ux,1.0949537754058838 +karman_re200,ppo,185,74.0,velocity,lower_uy,0.41761407256126404 +karman_re200,ppo,186,74.4,velocity,upper_ux,0.6777946352958679 +karman_re200,ppo,186,74.4,velocity,upper_uy,0.23798736929893494 +karman_re200,ppo,186,74.4,velocity,center_ux,1.0869578123092651 +karman_re200,ppo,186,74.4,velocity,center_uy,0.8293800354003906 +karman_re200,ppo,186,74.4,velocity,lower_ux,1.1545501947402954 +karman_re200,ppo,186,74.4,velocity,lower_uy,0.35253480076789856 +karman_re200,ppo,187,74.8,velocity,upper_ux,0.6178068518638611 +karman_re200,ppo,187,74.8,velocity,upper_uy,0.1023450642824173 +karman_re200,ppo,187,74.8,velocity,center_ux,1.1898112297058105 +karman_re200,ppo,187,74.8,velocity,center_uy,0.5651971697807312 +karman_re200,ppo,187,74.8,velocity,lower_ux,1.163355827331543 +karman_re200,ppo,187,74.8,velocity,lower_uy,0.22712263464927673 +karman_re200,ppo,188,75.2,velocity,upper_ux,0.6579063534736633 +karman_re200,ppo,188,75.2,velocity,upper_uy,-0.05214425548911095 +karman_re200,ppo,188,75.2,velocity,center_ux,1.157507300376892 +karman_re200,ppo,188,75.2,velocity,center_uy,-0.29344189167022705 +karman_re200,ppo,188,75.2,velocity,lower_ux,1.0875377655029297 +karman_re200,ppo,188,75.2,velocity,lower_uy,-0.011256923899054527 +karman_re200,ppo,189,75.6,velocity,upper_ux,0.7623220086097717 +karman_re200,ppo,189,75.6,velocity,upper_uy,-0.19469688832759857 +karman_re200,ppo,189,75.6,velocity,center_ux,1.0357882976531982 +karman_re200,ppo,189,75.6,velocity,center_uy,-0.7707528471946716 +karman_re200,ppo,189,75.6,velocity,lower_ux,1.0862305164337158 +karman_re200,ppo,189,75.6,velocity,lower_uy,-0.1848662793636322 +karman_re200,ppo,190,76.0,velocity,upper_ux,0.8576639294624329 +karman_re200,ppo,190,76.0,velocity,upper_uy,-0.3349034786224365 +karman_re200,ppo,190,76.0,velocity,center_ux,0.960788905620575 +karman_re200,ppo,190,76.0,velocity,center_uy,-0.7763930559158325 +karman_re200,ppo,190,76.0,velocity,lower_ux,1.0794272422790527 +karman_re200,ppo,190,76.0,velocity,lower_uy,-0.28561973571777344 +karman_re200,ppo,191,76.4,velocity,upper_ux,0.9679381847381592 +karman_re200,ppo,191,76.4,velocity,upper_uy,-0.40741783380508423 +karman_re200,ppo,191,76.4,velocity,center_ux,0.9213235974311829 +karman_re200,ppo,191,76.4,velocity,center_uy,-0.7681533694267273 +karman_re200,ppo,191,76.4,velocity,lower_ux,0.9968564510345459 +karman_re200,ppo,191,76.4,velocity,lower_uy,-0.34664055705070496 +karman_re200,ppo,192,76.8,velocity,upper_ux,1.0759952068328857 +karman_re200,ppo,192,76.8,velocity,upper_uy,-0.4208453297615051 +karman_re200,ppo,192,76.8,velocity,center_ux,0.8884625434875488 +karman_re200,ppo,192,76.8,velocity,center_uy,-0.7992666363716125 +karman_re200,ppo,192,76.8,velocity,lower_ux,0.9039692878723145 +karman_re200,ppo,192,76.8,velocity,lower_uy,-0.3512512147426605 +karman_re200,ppo,193,77.2,velocity,upper_ux,1.1711251735687256 +karman_re200,ppo,193,77.2,velocity,upper_uy,-0.3685797452926636 +karman_re200,ppo,193,77.2,velocity,center_ux,0.8484801650047302 +karman_re200,ppo,193,77.2,velocity,center_uy,-0.8761836886405945 +karman_re200,ppo,193,77.2,velocity,lower_ux,0.822306752204895 +karman_re200,ppo,193,77.2,velocity,lower_uy,-0.3111937940120697 +karman_re200,ppo,194,77.6,velocity,upper_ux,1.21611750125885 +karman_re200,ppo,194,77.6,velocity,upper_uy,-0.2446659654378891 +karman_re200,ppo,194,77.6,velocity,center_ux,0.786500096321106 +karman_re200,ppo,194,77.6,velocity,center_uy,-0.8322375416755676 +karman_re200,ppo,194,77.6,velocity,lower_ux,0.7633046507835388 +karman_re200,ppo,194,77.6,velocity,lower_uy,-0.22035926580429077 +karman_re200,ppo,195,78.0,velocity,upper_ux,1.2216588258743286 +karman_re200,ppo,195,78.0,velocity,upper_uy,-0.10365030914545059 +karman_re200,ppo,195,78.0,velocity,center_ux,0.7872428894042969 +karman_re200,ppo,195,78.0,velocity,center_uy,-0.04711407795548439 +karman_re200,ppo,195,78.0,velocity,lower_ux,0.745110273361206 +karman_re200,ppo,195,78.0,velocity,lower_uy,-0.0933871641755104 +karman_re200,ppo,196,78.4,velocity,upper_ux,1.2398606538772583 +karman_re200,ppo,196,78.4,velocity,upper_uy,0.019835561513900757 +karman_re200,ppo,196,78.4,velocity,center_ux,0.8533066511154175 +karman_re200,ppo,196,78.4,velocity,center_uy,0.6664581894874573 +karman_re200,ppo,196,78.4,velocity,lower_ux,0.764278769493103 +karman_re200,ppo,196,78.4,velocity,lower_uy,0.0725579634308815 +karman_re200,ppo,197,78.8,velocity,upper_ux,1.1874514818191528 +karman_re200,ppo,197,78.8,velocity,upper_uy,0.1710532009601593 +karman_re200,ppo,197,78.8,velocity,center_ux,0.9024556875228882 +karman_re200,ppo,197,78.8,velocity,center_uy,0.7118546366691589 +karman_re200,ppo,197,78.8,velocity,lower_ux,0.794735312461853 +karman_re200,ppo,197,78.8,velocity,lower_uy,0.27746060490608215 +karman_re200,ppo,198,79.2,velocity,upper_ux,1.0754976272583008 +karman_re200,ppo,198,79.2,velocity,upper_uy,0.31641972064971924 +karman_re200,ppo,198,79.2,velocity,center_ux,0.9229133725166321 +karman_re200,ppo,198,79.2,velocity,center_uy,0.7368345856666565 +karman_re200,ppo,198,79.2,velocity,lower_ux,0.8781017065048218 +karman_re200,ppo,198,79.2,velocity,lower_uy,0.3817964196205139 +karman_re200,ppo,199,79.6,velocity,upper_ux,0.9615001082420349 +karman_re200,ppo,199,79.6,velocity,upper_uy,0.37533214688301086 +karman_re200,ppo,199,79.6,velocity,center_ux,0.947110652923584 +karman_re200,ppo,199,79.6,velocity,center_uy,0.770409107208252 +karman_re200,ppo,199,79.6,velocity,lower_ux,0.9760763049125671 +karman_re200,ppo,199,79.6,velocity,lower_uy,0.4214988648891449 +karman_re200,ppo,0,0.0,force,front_fx,-0.0003988382522948086 +karman_re200,ppo,0,0.0,force,front_fy,-0.005316844675689936 +karman_re200,ppo,0,0.0,force,upper_fx,0.006122389808297157 +karman_re200,ppo,0,0.0,force,upper_fy,0.005452316254377365 +karman_re200,ppo,0,0.0,force,lower_fx,-0.007748854346573353 +karman_re200,ppo,0,0.0,force,lower_fy,-0.002878145081922412 +karman_re200,ppo,1,0.4,force,front_fx,0.001221952959895134 +karman_re200,ppo,1,0.4,force,front_fy,-0.003685109317302704 +karman_re200,ppo,1,0.4,force,upper_fx,0.005111530888825655 +karman_re200,ppo,1,0.4,force,upper_fy,0.005265690851956606 +karman_re200,ppo,1,0.4,force,lower_fx,-0.009419985115528107 +karman_re200,ppo,1,0.4,force,lower_fy,-0.0035197478719055653 +karman_re200,ppo,2,0.8,force,front_fx,0.0047850413247942924 +karman_re200,ppo,2,0.8,force,front_fy,-0.0023263979237526655 +karman_re200,ppo,2,0.8,force,upper_fx,0.0037916165310889482 +karman_re200,ppo,2,0.8,force,upper_fy,0.00510427076369524 +karman_re200,ppo,2,0.8,force,lower_fx,-0.010832775384187698 +karman_re200,ppo,2,0.8,force,lower_fy,-0.00408854940906167 +karman_re200,ppo,3,1.2,force,front_fx,0.0035518272779881954 +karman_re200,ppo,3,1.2,force,front_fy,-0.0013579735532402992 +karman_re200,ppo,3,1.2,force,upper_fx,0.003367109689861536 +karman_re200,ppo,3,1.2,force,upper_fy,0.004881001077592373 +karman_re200,ppo,3,1.2,force,lower_fx,-0.009447714313864708 +karman_re200,ppo,3,1.2,force,lower_fy,-0.006503139156848192 +karman_re200,ppo,4,1.6,force,front_fx,0.0025811600498855114 +karman_re200,ppo,4,1.6,force,front_fy,0.0008925175643526018 +karman_re200,ppo,4,1.6,force,upper_fx,0.00186295120511204 +karman_re200,ppo,4,1.6,force,upper_fy,0.0049044545739889145 +karman_re200,ppo,4,1.6,force,lower_fx,-0.0038893213495612144 +karman_re200,ppo,4,1.6,force,lower_fy,-0.007127102464437485 +karman_re200,ppo,5,2.0,force,front_fx,0.00023605162277817726 +karman_re200,ppo,5,2.0,force,front_fy,0.0029629296623170376 +karman_re200,ppo,5,2.0,force,upper_fx,-3.55020456481725e-05 +karman_re200,ppo,5,2.0,force,upper_fy,0.005434904247522354 +karman_re200,ppo,5,2.0,force,lower_fx,-0.00016163843974936754 +karman_re200,ppo,5,2.0,force,lower_fy,-0.00603101123124361 +karman_re200,ppo,6,2.4,force,front_fx,-0.0012198538752272725 +karman_re200,ppo,6,2.4,force,front_fy,0.004096799064427614 +karman_re200,ppo,6,2.4,force,upper_fx,-0.0015978396404534578 +karman_re200,ppo,6,2.4,force,upper_fy,0.00548841618001461 +karman_re200,ppo,6,2.4,force,lower_fx,0.0023863553069531918 +karman_re200,ppo,6,2.4,force,lower_fy,-0.0060774642042815685 +karman_re200,ppo,7,2.8,force,front_fx,-0.0013042631326243281 +karman_re200,ppo,7,2.8,force,front_fy,0.004316967912018299 +karman_re200,ppo,7,2.8,force,upper_fx,-0.0032630725763738155 +karman_re200,ppo,7,2.8,force,upper_fy,0.004831623286008835 +karman_re200,ppo,7,2.8,force,lower_fx,0.004079735837876797 +karman_re200,ppo,7,2.8,force,lower_fy,-0.006059771403670311 +karman_re200,ppo,8,3.2,force,front_fx,0.0003088954254053533 +karman_re200,ppo,8,3.2,force,front_fy,0.004307630937546492 +karman_re200,ppo,8,3.2,force,upper_fx,-0.0054944646544754505 +karman_re200,ppo,8,3.2,force,upper_fy,0.0037086450029164553 +karman_re200,ppo,8,3.2,force,lower_fx,0.004742945544421673 +karman_re200,ppo,8,3.2,force,lower_fy,-0.005839893594384193 +karman_re200,ppo,9,3.6,force,front_fx,0.003819552017375827 +karman_re200,ppo,9,3.6,force,front_fy,0.003345387987792492 +karman_re200,ppo,9,3.6,force,upper_fx,-0.008109219372272491 +karman_re200,ppo,9,3.6,force,upper_fy,0.0026466231793165207 +karman_re200,ppo,9,3.6,force,lower_fx,0.004305184818804264 +karman_re200,ppo,9,3.6,force,lower_fy,-0.005176173523068428 +karman_re200,ppo,10,4.0,force,front_fx,0.006337540689855814 +karman_re200,ppo,10,4.0,force,front_fy,0.0020767785608768463 +karman_re200,ppo,10,4.0,force,upper_fx,-0.009920532815158367 +karman_re200,ppo,10,4.0,force,upper_fy,0.003381414106115699 +karman_re200,ppo,10,4.0,force,lower_fx,0.004293805919587612 +karman_re200,ppo,10,4.0,force,lower_fy,-0.0035974280908703804 +karman_re200,ppo,11,4.4,force,front_fx,0.005674056243151426 +karman_re200,ppo,11,4.4,force,front_fy,-8.60506042954512e-05 +karman_re200,ppo,11,4.4,force,upper_fx,-0.007400944363325834 +karman_re200,ppo,11,4.4,force,upper_fy,0.006387773901224136 +karman_re200,ppo,11,4.4,force,lower_fx,0.0037013047840446234 +karman_re200,ppo,11,4.4,force,lower_fy,-0.0028060362674295902 +karman_re200,ppo,12,4.8,force,front_fx,0.0040677315555512905 +karman_re200,ppo,12,4.8,force,front_fy,-0.0015299621736630797 +karman_re200,ppo,12,4.8,force,upper_fx,-0.0028647547587752342 +karman_re200,ppo,12,4.8,force,upper_fy,0.005889140535145998 +karman_re200,ppo,12,4.8,force,lower_fx,0.002201256575062871 +karman_re200,ppo,12,4.8,force,lower_fy,-0.003633915213868022 +karman_re200,ppo,13,5.2,force,front_fx,0.0009571907576173544 +karman_re200,ppo,13,5.2,force,front_fy,-0.003754463978111744 +karman_re200,ppo,13,5.2,force,upper_fx,9.206763024849351e-06 +karman_re200,ppo,13,5.2,force,upper_fy,0.004448086488991976 +karman_re200,ppo,13,5.2,force,lower_fx,6.61411031614989e-05 +karman_re200,ppo,13,5.2,force,lower_fy,-0.005057047586888075 +karman_re200,ppo,14,5.6,force,front_fx,-0.0016934684244915843 +karman_re200,ppo,14,5.6,force,front_fy,-0.004213887266814709 +karman_re200,ppo,14,5.6,force,upper_fx,0.0013921078061684966 +karman_re200,ppo,14,5.6,force,upper_fy,0.004256729502230883 +karman_re200,ppo,14,5.6,force,lower_fx,-0.00015959807205945253 +karman_re200,ppo,14,5.6,force,lower_fy,-0.005645209923386574 +karman_re200,ppo,15,6.0,force,front_fx,-0.0027616911102086306 +karman_re200,ppo,15,6.0,force,front_fy,-0.0049066985957324505 +karman_re200,ppo,15,6.0,force,upper_fx,0.0023637597914785147 +karman_re200,ppo,15,6.0,force,upper_fy,0.004729796666651964 +karman_re200,ppo,15,6.0,force,lower_fx,-0.0013520884094759822 +karman_re200,ppo,15,6.0,force,lower_fy,-0.004946581553667784 +karman_re200,ppo,16,6.4,force,front_fx,-0.0022534190211445093 +karman_re200,ppo,16,6.4,force,front_fy,-0.0047195483930408955 +karman_re200,ppo,16,6.4,force,upper_fx,0.003139100968837738 +karman_re200,ppo,16,6.4,force,upper_fy,0.0053611136972904205 +karman_re200,ppo,16,6.4,force,lower_fx,-0.0023917926009744406 +karman_re200,ppo,16,6.4,force,lower_fy,-0.0039057934191077948 +karman_re200,ppo,17,6.8,force,front_fx,-0.00029515509959310293 +karman_re200,ppo,17,6.8,force,front_fy,-0.0034804996103048325 +karman_re200,ppo,17,6.8,force,upper_fx,0.0036945322062820196 +karman_re200,ppo,17,6.8,force,upper_fy,0.005605114158242941 +karman_re200,ppo,17,6.8,force,lower_fx,-0.0035030096769332886 +karman_re200,ppo,17,6.8,force,lower_fy,-0.0030598361045122147 +karman_re200,ppo,18,7.2,force,front_fx,0.0020781392231583595 +karman_re200,ppo,18,7.2,force,front_fy,-0.0012294630287215114 +karman_re200,ppo,18,7.2,force,upper_fx,0.0037522551137953997 +karman_re200,ppo,18,7.2,force,upper_fy,0.0056697903200984 +karman_re200,ppo,18,7.2,force,lower_fx,-0.004762677010148764 +karman_re200,ppo,18,7.2,force,lower_fy,-0.0026433884631842375 +karman_re200,ppo,19,7.6,force,front_fx,0.003276477800682187 +karman_re200,ppo,19,7.6,force,front_fy,0.0011876601492986083 +karman_re200,ppo,19,7.6,force,upper_fx,0.003054989967495203 +karman_re200,ppo,19,7.6,force,upper_fy,0.005057910457253456 +karman_re200,ppo,19,7.6,force,lower_fx,-0.005829969421029091 +karman_re200,ppo,19,7.6,force,lower_fy,-0.0034051775000989437 +karman_re200,ppo,20,8.0,force,front_fx,0.0014861572999507189 +karman_re200,ppo,20,8.0,force,front_fy,0.00222877599298954 +karman_re200,ppo,20,8.0,force,upper_fx,0.0018412868957966566 +karman_re200,ppo,20,8.0,force,upper_fy,0.004797539208084345 +karman_re200,ppo,20,8.0,force,lower_fx,-0.0044487230479717255 +karman_re200,ppo,20,8.0,force,lower_fy,-0.005979655310511589 +karman_re200,ppo,21,8.4,force,front_fx,-0.0003791947674471885 +karman_re200,ppo,21,8.4,force,front_fy,0.0038180160336196423 +karman_re200,ppo,21,8.4,force,upper_fx,0.00010371779353590682 +karman_re200,ppo,21,8.4,force,upper_fy,0.005503027234226465 +karman_re200,ppo,21,8.4,force,lower_fx,-0.0005365396500565112 +karman_re200,ppo,21,8.4,force,lower_fy,-0.007150901947170496 +karman_re200,ppo,22,8.8,force,front_fx,-0.001566579332575202 +karman_re200,ppo,22,8.8,force,front_fy,0.004619208164513111 +karman_re200,ppo,22,8.8,force,upper_fx,-0.001445271074771881 +karman_re200,ppo,22,8.8,force,upper_fy,0.006088280584663153 +karman_re200,ppo,22,8.8,force,lower_fx,0.0021770948078483343 +karman_re200,ppo,22,8.8,force,lower_fy,-0.006605278700590134 +karman_re200,ppo,23,9.2,force,front_fx,-0.001400039647705853 +karman_re200,ppo,23,9.2,force,front_fy,0.004804426338523626 +karman_re200,ppo,23,9.2,force,upper_fx,-0.0022888879757374525 +karman_re200,ppo,23,9.2,force,upper_fy,0.005677955690771341 +karman_re200,ppo,23,9.2,force,lower_fx,0.0035525166895240545 +karman_re200,ppo,23,9.2,force,lower_fy,-0.006035335827618837 +karman_re200,ppo,24,9.6,force,front_fx,2.75541369774146e-05 +karman_re200,ppo,24,9.6,force,front_fy,0.0044761230237782 +karman_re200,ppo,24,9.6,force,upper_fx,-0.0035535739734768867 +karman_re200,ppo,24,9.6,force,upper_fy,0.004225120414048433 +karman_re200,ppo,24,9.6,force,lower_fx,0.004140819422900677 +karman_re200,ppo,24,9.6,force,lower_fy,-0.005627346690744162 +karman_re200,ppo,25,10.0,force,front_fx,0.0029444473329931498 +karman_re200,ppo,25,10.0,force,front_fy,0.0033131877426058054 +karman_re200,ppo,25,10.0,force,upper_fx,-0.005524809472262859 +karman_re200,ppo,25,10.0,force,upper_fy,0.0030271101277321577 +karman_re200,ppo,25,10.0,force,lower_fx,0.004208714235574007 +karman_re200,ppo,25,10.0,force,lower_fy,-0.00470517436042428 +karman_re200,ppo,26,10.4,force,front_fx,0.005485568195581436 +karman_re200,ppo,26,10.4,force,front_fy,0.0014088309835642576 +karman_re200,ppo,26,10.4,force,upper_fx,-0.007071517873555422 +karman_re200,ppo,26,10.4,force,upper_fy,0.0034359183628112078 +karman_re200,ppo,26,10.4,force,lower_fx,0.004450101405382156 +karman_re200,ppo,26,10.4,force,lower_fy,-0.002952511887997389 +karman_re200,ppo,27,10.8,force,front_fx,0.004944161977618933 +karman_re200,ppo,27,10.8,force,front_fy,-0.0007692038780078292 +karman_re200,ppo,27,10.8,force,upper_fx,-0.00542282173410058 +karman_re200,ppo,27,10.8,force,upper_fy,0.0060788230039179325 +karman_re200,ppo,27,10.8,force,lower_fx,0.004377451259642839 +karman_re200,ppo,27,10.8,force,lower_fy,-0.0020838638301938772 +karman_re200,ppo,28,11.2,force,front_fx,0.0033663460053503513 +karman_re200,ppo,28,11.2,force,front_fy,-0.002148349303752184 +karman_re200,ppo,28,11.2,force,upper_fx,-0.0017927461303770542 +karman_re200,ppo,28,11.2,force,upper_fy,0.006231953389942646 +karman_re200,ppo,28,11.2,force,lower_fx,0.0026044142432510853 +karman_re200,ppo,28,11.2,force,lower_fy,-0.0033598977606743574 +karman_re200,ppo,29,11.6,force,front_fx,0.0009079581359401345 +karman_re200,ppo,29,11.6,force,front_fy,-0.004033061675727367 +karman_re200,ppo,29,11.6,force,upper_fx,0.00030016523669473827 +karman_re200,ppo,29,11.6,force,upper_fy,0.004669196903705597 +karman_re200,ppo,29,11.6,force,lower_fx,0.0003923401527572423 +karman_re200,ppo,29,11.6,force,lower_fy,-0.004654244054108858 +karman_re200,ppo,30,12.0,force,front_fx,-0.0016568697756156325 +karman_re200,ppo,30,12.0,force,front_fy,-0.004569589160382748 +karman_re200,ppo,30,12.0,force,upper_fx,0.0009919714648276567 +karman_re200,ppo,30,12.0,force,upper_fy,0.004318948369473219 +karman_re200,ppo,30,12.0,force,lower_fx,-0.00026010884903371334 +karman_re200,ppo,30,12.0,force,lower_fy,-0.0050934236496686935 +karman_re200,ppo,31,12.4,force,front_fx,-0.0027054513338953257 +karman_re200,ppo,31,12.4,force,front_fy,-0.004895046819001436 +karman_re200,ppo,31,12.4,force,upper_fx,0.0014366059331223369 +karman_re200,ppo,31,12.4,force,upper_fy,0.005085295531898737 +karman_re200,ppo,31,12.4,force,lower_fx,-0.001014563487842679 +karman_re200,ppo,31,12.4,force,lower_fy,-0.004470084328204393 +karman_re200,ppo,32,12.8,force,front_fx,-0.002061057835817337 +karman_re200,ppo,32,12.8,force,front_fy,-0.004173389635980129 +karman_re200,ppo,32,12.8,force,upper_fx,0.002008780837059021 +karman_re200,ppo,32,12.8,force,upper_fy,0.0057989452034235 +karman_re200,ppo,32,12.8,force,lower_fx,-0.0017797381151467562 +karman_re200,ppo,32,12.8,force,lower_fy,-0.0038398182950913906 +karman_re200,ppo,33,13.2,force,front_fx,0.00026962056290358305 +karman_re200,ppo,33,13.2,force,front_fy,-0.002939097583293915 +karman_re200,ppo,33,13.2,force,upper_fx,0.002958552911877632 +karman_re200,ppo,33,13.2,force,upper_fy,0.005770983640104532 +karman_re200,ppo,33,13.2,force,lower_fx,-0.0021851782221347094 +karman_re200,ppo,33,13.2,force,lower_fy,-0.0037260961253196 +karman_re200,ppo,34,13.6,force,front_fx,0.0026508825831115246 +karman_re200,ppo,34,13.6,force,front_fy,-0.0004379519377835095 +karman_re200,ppo,34,13.6,force,upper_fx,0.0034692648332566023 +karman_re200,ppo,34,13.6,force,upper_fy,0.005775551777333021 +karman_re200,ppo,34,13.6,force,lower_fx,-0.003440029686316848 +karman_re200,ppo,34,13.6,force,lower_fy,-0.00268974294885993 +karman_re200,ppo,35,14.0,force,front_fx,0.0034268207382410765 +karman_re200,ppo,35,14.0,force,front_fy,0.00122411351185292 +karman_re200,ppo,35,14.0,force,upper_fx,0.002864174311980605 +karman_re200,ppo,35,14.0,force,upper_fy,0.004550458397716284 +karman_re200,ppo,35,14.0,force,lower_fx,-0.005692430771887302 +karman_re200,ppo,35,14.0,force,lower_fy,-0.004626831505447626 +karman_re200,ppo,36,14.4,force,front_fx,0.0010049594566226006 +karman_re200,ppo,36,14.4,force,front_fy,0.0023537222295999527 +karman_re200,ppo,36,14.4,force,upper_fx,0.0011934072244912386 +karman_re200,ppo,36,14.4,force,upper_fy,0.004329505376517773 +karman_re200,ppo,36,14.4,force,lower_fx,-0.002544804010540247 +karman_re200,ppo,36,14.4,force,lower_fy,-0.008748618885874748 +karman_re200,ppo,37,14.8,force,front_fx,-0.0004537206841632724 +karman_re200,ppo,37,14.8,force,front_fy,0.0037388664204627275 +karman_re200,ppo,37,14.8,force,upper_fx,-0.0006930232630111277 +karman_re200,ppo,37,14.8,force,upper_fy,0.004931463859975338 +karman_re200,ppo,37,14.8,force,lower_fx,0.0016613549087196589 +karman_re200,ppo,37,14.8,force,lower_fy,-0.0083143450319767 +karman_re200,ppo,38,15.2,force,front_fx,-0.001503816805779934 +karman_re200,ppo,38,15.2,force,front_fy,0.004309645388275385 +karman_re200,ppo,38,15.2,force,upper_fx,-0.0015112502733245492 +karman_re200,ppo,38,15.2,force,upper_fy,0.005575679708272219 +karman_re200,ppo,38,15.2,force,lower_fx,0.0034109961707144976 +karman_re200,ppo,38,15.2,force,lower_fy,-0.007176484912633896 +karman_re200,ppo,39,15.6,force,front_fx,-0.0010988444555550814 +karman_re200,ppo,39,15.6,force,front_fy,0.004231729544699192 +karman_re200,ppo,39,15.6,force,upper_fx,-0.0020051856990903616 +karman_re200,ppo,39,15.6,force,upper_fy,0.004060737323015928 +karman_re200,ppo,39,15.6,force,lower_fx,0.004091514274477959 +karman_re200,ppo,39,15.6,force,lower_fy,-0.006541168782860041 +karman_re200,ppo,40,16.0,force,front_fx,0.0006178872426971793 +karman_re200,ppo,40,16.0,force,front_fy,0.0038053966127336025 +karman_re200,ppo,40,16.0,force,upper_fx,-0.0037875354755669832 +karman_re200,ppo,40,16.0,force,upper_fy,0.002178807044401765 +karman_re200,ppo,40,16.0,force,lower_fx,0.004456314258277416 +karman_re200,ppo,40,16.0,force,lower_fy,-0.00593864731490612 +karman_re200,ppo,41,16.4,force,front_fx,0.003437607316300273 +karman_re200,ppo,41,16.4,force,front_fy,0.0024470363277941942 +karman_re200,ppo,41,16.4,force,upper_fx,-0.0061593069694936275 +karman_re200,ppo,41,16.4,force,upper_fy,0.0018141713226214051 +karman_re200,ppo,41,16.4,force,lower_fx,0.004767280071973801 +karman_re200,ppo,41,16.4,force,lower_fy,-0.004319797269999981 +karman_re200,ppo,42,16.8,force,front_fx,0.005289145745337009 +karman_re200,ppo,42,16.8,force,front_fy,0.0007833325653336942 +karman_re200,ppo,42,16.8,force,upper_fx,-0.00674069207161665 +karman_re200,ppo,42,16.8,force,upper_fy,0.004192919936031103 +karman_re200,ppo,42,16.8,force,lower_fx,0.00593313854187727 +karman_re200,ppo,42,16.8,force,lower_fy,-0.0021950812079012394 +karman_re200,ppo,43,17.2,force,front_fx,0.004299547988921404 +karman_re200,ppo,43,17.2,force,front_fy,-0.0011749289697036147 +karman_re200,ppo,43,17.2,force,upper_fx,-0.003146405564621091 +karman_re200,ppo,43,17.2,force,upper_fy,0.007331314031034708 +karman_re200,ppo,43,17.2,force,lower_fx,0.0052956873551011086 +karman_re200,ppo,43,17.2,force,lower_fy,-0.002171081490814686 +karman_re200,ppo,44,17.6,force,front_fx,0.0028515150770545006 +karman_re200,ppo,44,17.6,force,front_fy,-0.0024528708308935165 +karman_re200,ppo,44,17.6,force,upper_fx,-8.766131031734403e-06 +karman_re200,ppo,44,17.6,force,upper_fy,0.00579955754801631 +karman_re200,ppo,44,17.6,force,lower_fx,0.002479898277670145 +karman_re200,ppo,44,17.6,force,lower_fy,-0.0043945605866611 +karman_re200,ppo,45,18.0,force,front_fx,-0.0002938887046184391 +karman_re200,ppo,45,18.0,force,front_fy,-0.004440193064510822 +karman_re200,ppo,45,18.0,force,upper_fx,0.0011466732248663902 +karman_re200,ppo,45,18.0,force,upper_fy,0.003927623387426138 +karman_re200,ppo,45,18.0,force,lower_fx,-0.00033488014014437795 +karman_re200,ppo,45,18.0,force,lower_fy,-0.005752216093242168 +karman_re200,ppo,46,18.4,force,front_fx,-0.0023132816422730684 +karman_re200,ppo,46,18.4,force,front_fy,-0.004800265654921532 +karman_re200,ppo,46,18.4,force,upper_fx,0.0012769155437126756 +karman_re200,ppo,46,18.4,force,upper_fy,0.0038856512401252985 +karman_re200,ppo,46,18.4,force,lower_fx,-0.0004666997119784355 +karman_re200,ppo,46,18.4,force,lower_fy,-0.0050740367732942104 +karman_re200,ppo,47,18.8,force,front_fx,-0.0028385177720338106 +karman_re200,ppo,47,18.8,force,front_fy,-0.005481190513819456 +karman_re200,ppo,47,18.8,force,upper_fx,0.0014748034300282598 +karman_re200,ppo,47,18.8,force,upper_fy,0.005357288755476475 +karman_re200,ppo,47,18.8,force,lower_fx,-0.0013382607139647007 +karman_re200,ppo,47,18.8,force,lower_fy,-0.0040407259948551655 +karman_re200,ppo,48,19.2,force,front_fx,-0.0018151344265788794 +karman_re200,ppo,48,19.2,force,front_fy,-0.0044626337476074696 +karman_re200,ppo,48,19.2,force,upper_fx,0.002125048078596592 +karman_re200,ppo,48,19.2,force,upper_fy,0.006527685094624758 +karman_re200,ppo,48,19.2,force,lower_fx,-0.0019497183384373784 +karman_re200,ppo,48,19.2,force,lower_fy,-0.00343779893592 +karman_re200,ppo,49,19.6,force,front_fx,0.0006908648647367954 +karman_re200,ppo,49,19.6,force,front_fy,-0.0028182619716972113 +karman_re200,ppo,49,19.6,force,upper_fx,0.0035238172858953476 +karman_re200,ppo,49,19.6,force,upper_fy,0.006272649392485619 +karman_re200,ppo,49,19.6,force,lower_fx,-0.002209128811955452 +karman_re200,ppo,49,19.6,force,lower_fy,-0.0039062383584678173 +karman_re200,ppo,50,20.0,force,front_fx,0.003004992613568902 +karman_re200,ppo,50,20.0,force,front_fy,8.958658145274967e-05 +karman_re200,ppo,50,20.0,force,upper_fx,0.004427711013704538 +karman_re200,ppo,50,20.0,force,upper_fy,0.005724927876144648 +karman_re200,ppo,50,20.0,force,lower_fx,-0.0030213361606001854 +karman_re200,ppo,50,20.0,force,lower_fy,-0.0028542084619402885 +karman_re200,ppo,51,20.4,force,front_fx,0.003199879312887788 +karman_re200,ppo,51,20.4,force,front_fy,0.0016847216757014394 +karman_re200,ppo,51,20.4,force,upper_fx,0.0034650093875825405 +karman_re200,ppo,51,20.4,force,upper_fy,0.0043868799693882465 +karman_re200,ppo,51,20.4,force,lower_fx,-0.005187260918319225 +karman_re200,ppo,51,20.4,force,lower_fy,-0.00582776078954339 +karman_re200,ppo,52,20.8,force,front_fx,0.0008172430680133402 +karman_re200,ppo,52,20.8,force,front_fy,0.0029262371826916933 +karman_re200,ppo,52,20.8,force,upper_fx,0.001059653819538653 +karman_re200,ppo,52,20.8,force,upper_fy,0.004319535102695227 +karman_re200,ppo,52,20.8,force,lower_fx,-0.0008248747326433659 +karman_re200,ppo,52,20.8,force,lower_fy,-0.009663463570177555 +karman_re200,ppo,53,21.2,force,front_fx,-0.0007134859333746135 +karman_re200,ppo,53,21.2,force,front_fy,0.003988662734627724 +karman_re200,ppo,53,21.2,force,upper_fx,-0.0007090949220582843 +karman_re200,ppo,53,21.2,force,upper_fy,0.005175373051315546 +karman_re200,ppo,53,21.2,force,lower_fx,0.0024239886552095413 +karman_re200,ppo,53,21.2,force,lower_fy,-0.00807467196136713 +karman_re200,ppo,54,21.6,force,front_fx,-0.0018991214456036687 +karman_re200,ppo,54,21.6,force,front_fy,0.004251515492796898 +karman_re200,ppo,54,21.6,force,upper_fx,-0.0009032727684825659 +karman_re200,ppo,54,21.6,force,upper_fy,0.005642760545015335 +karman_re200,ppo,54,21.6,force,lower_fx,0.0032943296246230602 +karman_re200,ppo,54,21.6,force,lower_fy,-0.00705498643219471 +karman_re200,ppo,55,22.0,force,front_fx,-0.0014649747172370553 +karman_re200,ppo,55,22.0,force,front_fy,0.0039848764427006245 +karman_re200,ppo,55,22.0,force,upper_fx,-0.001273843226954341 +karman_re200,ppo,55,22.0,force,upper_fy,0.0033962619490921497 +karman_re200,ppo,55,22.0,force,lower_fx,0.003745910245925188 +karman_re200,ppo,55,22.0,force,lower_fy,-0.0066698212176561356 +karman_re200,ppo,56,22.4,force,front_fx,0.0004818682500626892 +karman_re200,ppo,56,22.4,force,front_fy,0.003561340505257249 +karman_re200,ppo,56,22.4,force,upper_fx,-0.003291417146101594 +karman_re200,ppo,56,22.4,force,upper_fy,0.0015173600986599922 +karman_re200,ppo,56,22.4,force,lower_fx,0.0048310947604477406 +karman_re200,ppo,56,22.4,force,lower_fy,-0.00578043470159173 +karman_re200,ppo,57,22.8,force,front_fx,0.004323503468185663 +karman_re200,ppo,57,22.8,force,front_fy,0.001921068993397057 +karman_re200,ppo,57,22.8,force,upper_fx,-0.006389998365193605 +karman_re200,ppo,57,22.8,force,upper_fy,0.0013341490412130952 +karman_re200,ppo,57,22.8,force,lower_fx,0.006081249099224806 +karman_re200,ppo,57,22.8,force,lower_fy,-0.003980651963502169 +karman_re200,ppo,58,23.2,force,front_fx,0.0058125946670770645 +karman_re200,ppo,58,23.2,force,front_fy,0.0006446106708608568 +karman_re200,ppo,58,23.2,force,upper_fx,-0.007306438870728016 +karman_re200,ppo,58,23.2,force,upper_fy,0.005385564640164375 +karman_re200,ppo,58,23.2,force,lower_fx,0.008504129946231842 +karman_re200,ppo,58,23.2,force,lower_fy,-0.002757385140284896 +karman_re200,ppo,59,23.6,force,front_fx,0.00484755914658308 +karman_re200,ppo,59,23.6,force,front_fy,-0.001305294455960393 +karman_re200,ppo,59,23.6,force,upper_fx,-0.0029142529238015413 +karman_re200,ppo,59,23.6,force,upper_fy,0.008268449455499649 +karman_re200,ppo,59,23.6,force,lower_fx,0.005883048754185438 +karman_re200,ppo,59,23.6,force,lower_fy,-0.0030035176314413548 +karman_re200,ppo,60,24.0,force,front_fx,0.0034067516680806875 +karman_re200,ppo,60,24.0,force,front_fy,-0.002695290371775627 +karman_re200,ppo,60,24.0,force,upper_fx,-0.0005793659947812557 +karman_re200,ppo,60,24.0,force,upper_fy,0.0050184037536382675 +karman_re200,ppo,60,24.0,force,lower_fx,0.000981763587333262 +karman_re200,ppo,60,24.0,force,lower_fy,-0.004336949437856674 +karman_re200,ppo,61,24.4,force,front_fx,-0.0003273230395279825 +karman_re200,ppo,61,24.4,force,front_fy,-0.0044817132875323296 +karman_re200,ppo,61,24.4,force,upper_fx,0.00018459567218087614 +karman_re200,ppo,61,24.4,force,upper_fy,0.002582163317129016 +karman_re200,ppo,61,24.4,force,lower_fx,-0.0005490483017638326 +karman_re200,ppo,61,24.4,force,lower_fy,-0.005203068256378174 +karman_re200,ppo,62,24.8,force,front_fx,-0.002106047933921218 +karman_re200,ppo,62,24.8,force,front_fy,-0.005179684143513441 +karman_re200,ppo,62,24.8,force,upper_fx,-0.0005805881228297949 +karman_re200,ppo,62,24.8,force,upper_fy,0.0030563250184059143 +karman_re200,ppo,62,24.8,force,lower_fx,-0.00032573737553320825 +karman_re200,ppo,62,24.8,force,lower_fy,-0.00410905946046114 +karman_re200,ppo,63,25.2,force,front_fx,-0.0024570035748183727 +karman_re200,ppo,63,25.2,force,front_fy,-0.0056082927621901035 +karman_re200,ppo,63,25.2,force,upper_fx,-0.0006251231534406543 +karman_re200,ppo,63,25.2,force,upper_fy,0.005724004004150629 +karman_re200,ppo,63,25.2,force,lower_fx,-0.0009455189574509859 +karman_re200,ppo,63,25.2,force,lower_fy,-0.003675408661365509 +karman_re200,ppo,64,25.6,force,front_fx,-0.0010586099233478308 +karman_re200,ppo,64,25.6,force,front_fy,-0.0036888315808027983 +karman_re200,ppo,64,25.6,force,upper_fx,0.0009170565172098577 +karman_re200,ppo,64,25.6,force,upper_fy,0.006983510684221983 +karman_re200,ppo,64,25.6,force,lower_fx,-0.0011878387304022908 +karman_re200,ppo,64,25.6,force,lower_fy,-0.0038005306851118803 +karman_re200,ppo,65,26.0,force,front_fx,0.0010777191491797566 +karman_re200,ppo,65,26.0,force,front_fy,-0.0023563308641314507 +karman_re200,ppo,65,26.0,force,upper_fx,0.003811401082202792 +karman_re200,ppo,65,26.0,force,upper_fy,0.00686596380546689 +karman_re200,ppo,65,26.0,force,lower_fx,-0.0005125064635649323 +karman_re200,ppo,65,26.0,force,lower_fy,-0.004353352356702089 +karman_re200,ppo,66,26.4,force,front_fx,0.0037327397149056196 +karman_re200,ppo,66,26.4,force,front_fy,0.000691611843649298 +karman_re200,ppo,66,26.4,force,upper_fx,0.004442631732672453 +karman_re200,ppo,66,26.4,force,upper_fy,0.0058093382976949215 +karman_re200,ppo,66,26.4,force,lower_fx,-0.0038736469577997923 +karman_re200,ppo,66,26.4,force,lower_fy,-0.0035188335459679365 +karman_re200,ppo,67,26.8,force,front_fx,0.0025174703914672136 +karman_re200,ppo,67,26.8,force,front_fy,0.0014236560091376305 +karman_re200,ppo,67,26.8,force,upper_fx,0.003331099171191454 +karman_re200,ppo,67,26.8,force,upper_fy,0.003924073185771704 +karman_re200,ppo,67,26.8,force,lower_fx,-0.004230421036481857 +karman_re200,ppo,67,26.8,force,lower_fy,-0.009168248623609543 +karman_re200,ppo,68,27.2,force,front_fx,0.0009885963518172503 +karman_re200,ppo,68,27.2,force,front_fy,0.0028928525280207396 +karman_re200,ppo,68,27.2,force,upper_fx,0.0002806413685902953 +karman_re200,ppo,68,27.2,force,upper_fy,0.004322439432144165 +karman_re200,ppo,68,27.2,force,lower_fx,0.0016667527379468083 +karman_re200,ppo,68,27.2,force,lower_fy,-0.010513341054320335 +karman_re200,ppo,69,27.6,force,front_fx,-0.001114111626520753 +karman_re200,ppo,69,27.6,force,front_fy,0.0039116088300943375 +karman_re200,ppo,69,27.6,force,upper_fx,-0.0007930632564239204 +karman_re200,ppo,69,27.6,force,upper_fy,0.005488550756126642 +karman_re200,ppo,69,27.6,force,lower_fx,0.0031099978368729353 +karman_re200,ppo,69,27.6,force,lower_fy,-0.00803722720593214 +karman_re200,ppo,70,28.0,force,front_fx,-0.002130343811586499 +karman_re200,ppo,70,28.0,force,front_fy,0.003932524472475052 +karman_re200,ppo,70,28.0,force,upper_fx,-0.0004271348880138248 +karman_re200,ppo,70,28.0,force,upper_fy,0.00415260624140501 +karman_re200,ppo,70,28.0,force,lower_fx,0.00329801207408309 +karman_re200,ppo,70,28.0,force,lower_fy,-0.007600600831210613 +karman_re200,ppo,71,28.4,force,front_fx,-0.0012118322774767876 +karman_re200,ppo,71,28.4,force,front_fy,0.003528112545609474 +karman_re200,ppo,71,28.4,force,upper_fx,-0.0015691472217440605 +karman_re200,ppo,71,28.4,force,upper_fy,0.0014190137153491378 +karman_re200,ppo,71,28.4,force,lower_fx,0.004360147751867771 +karman_re200,ppo,71,28.4,force,lower_fy,-0.00691797211766243 +karman_re200,ppo,72,28.8,force,front_fx,0.0016704886220395565 +karman_re200,ppo,72,28.8,force,front_fy,0.0028607698623090982 +karman_re200,ppo,72,28.8,force,upper_fx,-0.004583308007568121 +karman_re200,ppo,72,28.8,force,upper_fy,0.0002398150390945375 +karman_re200,ppo,72,28.8,force,lower_fx,0.0063682738691568375 +karman_re200,ppo,72,28.8,force,lower_fy,-0.00568626681342721 +karman_re200,ppo,73,29.2,force,front_fx,0.006658943835645914 +karman_re200,ppo,73,29.2,force,front_fy,0.0016138592036440969 +karman_re200,ppo,73,29.2,force,upper_fx,-0.008847661316394806 +karman_re200,ppo,73,29.2,force,upper_fy,0.0022307236213237047 +karman_re200,ppo,73,29.2,force,lower_fx,0.00822540558874607 +karman_re200,ppo,73,29.2,force,lower_fy,-0.0052297418005764484 +karman_re200,ppo,74,29.6,force,front_fx,0.006106998771429062 +karman_re200,ppo,74,29.6,force,front_fy,-0.00013120965741109103 +karman_re200,ppo,74,29.6,force,upper_fx,-0.006881715264171362 +karman_re200,ppo,74,29.6,force,upper_fy,0.008372636511921883 +karman_re200,ppo,74,29.6,force,lower_fx,0.008214099332690239 +karman_re200,ppo,74,29.6,force,lower_fy,-0.004343059379607439 +karman_re200,ppo,75,30.0,force,front_fx,0.005113658495247364 +karman_re200,ppo,75,30.0,force,front_fy,-0.0010974491015076637 +karman_re200,ppo,75,30.0,force,upper_fx,-0.0022478546015918255 +karman_re200,ppo,75,30.0,force,upper_fy,0.006804467644542456 +karman_re200,ppo,75,30.0,force,lower_fx,0.002800212474539876 +karman_re200,ppo,75,30.0,force,lower_fy,-0.0036305608227849007 +karman_re200,ppo,76,30.4,force,front_fx,0.002918260172009468 +karman_re200,ppo,76,30.4,force,front_fy,-0.0036346560809761286 +karman_re200,ppo,76,30.4,force,upper_fx,-0.0005952013307251036 +karman_re200,ppo,76,30.4,force,upper_fy,0.0021680162753909826 +karman_re200,ppo,76,30.4,force,lower_fx,-0.0003009955398738384 +karman_re200,ppo,76,30.4,force,lower_fy,-0.004402377177029848 +karman_re200,ppo,77,30.8,force,front_fx,-0.0005024965503253043 +karman_re200,ppo,77,30.8,force,front_fy,-0.004800983238965273 +karman_re200,ppo,77,30.8,force,upper_fx,-0.0019431698601692915 +karman_re200,ppo,77,30.8,force,upper_fy,0.001195441698655486 +karman_re200,ppo,77,30.8,force,lower_fx,-0.00021528992510866374 +karman_re200,ppo,77,30.8,force,lower_fy,-0.0039652269333601 +karman_re200,ppo,78,31.2,force,front_fx,-0.0017256863648071885 +karman_re200,ppo,78,31.2,force,front_fy,-0.005886862985789776 +karman_re200,ppo,78,31.2,force,upper_fx,-0.0028685424476861954 +karman_re200,ppo,78,31.2,force,upper_fy,0.004653335548937321 +karman_re200,ppo,78,31.2,force,lower_fx,-0.0006347188609652221 +karman_re200,ppo,78,31.2,force,lower_fy,-0.0035223800223320723 +karman_re200,ppo,79,31.6,force,front_fx,-0.0019225615542382002 +karman_re200,ppo,79,31.6,force,front_fy,-0.004759362433105707 +karman_re200,ppo,79,31.6,force,upper_fx,-0.0006614185986109078 +karman_re200,ppo,79,31.6,force,upper_fy,0.008093294687569141 +karman_re200,ppo,79,31.6,force,lower_fx,-0.0006211735308170319 +karman_re200,ppo,79,31.6,force,lower_fy,-0.0036922013387084007 +karman_re200,ppo,80,32.0,force,front_fx,-0.0008596862899139524 +karman_re200,ppo,80,32.0,force,front_fy,-0.003975458908826113 +karman_re200,ppo,80,32.0,force,upper_fx,0.0033488739281892776 +karman_re200,ppo,80,32.0,force,upper_fy,0.008436799980700016 +karman_re200,ppo,80,32.0,force,lower_fx,-2.2034602807252668e-05 +karman_re200,ppo,80,32.0,force,lower_fy,-0.005656572058796883 +karman_re200,ppo,81,32.4,force,front_fx,0.002991695888340473 +karman_re200,ppo,81,32.4,force,front_fy,-0.0019561436492949724 +karman_re200,ppo,81,32.4,force,upper_fx,0.006009700708091259 +karman_re200,ppo,81,32.4,force,upper_fy,0.0071663339622318745 +karman_re200,ppo,81,32.4,force,lower_fx,-0.0014568231999874115 +karman_re200,ppo,81,32.4,force,lower_fy,-0.003005190985277295 +karman_re200,ppo,82,32.8,force,front_fx,0.00457975547760725 +karman_re200,ppo,82,32.8,force,front_fy,0.0003212337614968419 +karman_re200,ppo,82,32.8,force,upper_fx,0.005187390372157097 +karman_re200,ppo,82,32.8,force,upper_fy,0.005074475426226854 +karman_re200,ppo,82,32.8,force,lower_fx,-0.006248351186513901 +karman_re200,ppo,82,32.8,force,lower_fy,-0.005487962160259485 +karman_re200,ppo,83,33.2,force,front_fx,0.0028749152552336454 +karman_re200,ppo,83,33.2,force,front_fy,0.0017484427662566304 +karman_re200,ppo,83,33.2,force,upper_fx,0.002721079858019948 +karman_re200,ppo,83,33.2,force,upper_fy,0.0034614920150488615 +karman_re200,ppo,83,33.2,force,lower_fx,-0.001705033821053803 +karman_re200,ppo,83,33.2,force,lower_fy,-0.010389616712927818 +karman_re200,ppo,84,33.6,force,front_fx,0.0013229731703177094 +karman_re200,ppo,84,33.6,force,front_fy,0.00300283869728446 +karman_re200,ppo,84,33.6,force,upper_fx,0.00042902742279693484 +karman_re200,ppo,84,33.6,force,upper_fy,0.0042383973486721516 +karman_re200,ppo,84,33.6,force,lower_fx,0.0014460247475653887 +karman_re200,ppo,84,33.6,force,lower_fy,-0.00787702202796936 +karman_re200,ppo,85,34.0,force,front_fx,-0.0014441971434280276 +karman_re200,ppo,85,34.0,force,front_fy,0.0038442278746515512 +karman_re200,ppo,85,34.0,force,upper_fx,-0.00017953450151253492 +karman_re200,ppo,85,34.0,force,upper_fy,0.004965686704963446 +karman_re200,ppo,85,34.0,force,lower_fx,0.001432466902770102 +karman_re200,ppo,85,34.0,force,lower_fy,-0.006993075832724571 +karman_re200,ppo,86,34.4,force,front_fx,-0.0017565202433615923 +karman_re200,ppo,86,34.4,force,front_fy,0.0034800595603883266 +karman_re200,ppo,86,34.4,force,upper_fx,-0.0006131295231170952 +karman_re200,ppo,86,34.4,force,upper_fy,0.0028756395913660526 +karman_re200,ppo,86,34.4,force,lower_fx,0.0023892028257250786 +karman_re200,ppo,86,34.4,force,lower_fy,-0.007504824548959732 +karman_re200,ppo,87,34.8,force,front_fx,-0.00038884818786755204 +karman_re200,ppo,87,34.8,force,front_fy,0.00322495074942708 +karman_re200,ppo,87,34.8,force,upper_fx,-0.0025043832138180733 +karman_re200,ppo,87,34.8,force,upper_fy,0.00120292860083282 +karman_re200,ppo,87,34.8,force,lower_fx,0.005026744678616524 +karman_re200,ppo,87,34.8,force,lower_fy,-0.0067741721868515015 +karman_re200,ppo,88,35.2,force,front_fx,0.0043894099071621895 +karman_re200,ppo,88,35.2,force,front_fy,0.002362980740144849 +karman_re200,ppo,88,35.2,force,upper_fx,-0.0074280486442148685 +karman_re200,ppo,88,35.2,force,upper_fy,0.0003058658621739596 +karman_re200,ppo,88,35.2,force,lower_fx,0.006904552690684795 +karman_re200,ppo,88,35.2,force,lower_fy,-0.006576900370419025 +karman_re200,ppo,89,35.6,force,front_fx,0.006744463928043842 +karman_re200,ppo,89,35.6,force,front_fy,0.0024107727222144604 +karman_re200,ppo,89,35.6,force,upper_fx,-0.010503989644348621 +karman_re200,ppo,89,35.6,force,upper_fy,0.005874170456081629 +karman_re200,ppo,89,35.6,force,lower_fx,0.009200207889080048 +karman_re200,ppo,89,35.6,force,lower_fy,-0.0052863978780806065 +karman_re200,ppo,90,36.0,force,front_fx,0.007366649340838194 +karman_re200,ppo,90,36.0,force,front_fy,-8.802121737971902e-05 +karman_re200,ppo,90,36.0,force,upper_fx,-0.004237240646034479 +karman_re200,ppo,90,36.0,force,upper_fy,0.008221937343478203 +karman_re200,ppo,90,36.0,force,lower_fx,0.005517368204891682 +karman_re200,ppo,90,36.0,force,lower_fy,-0.0034207096323370934 +karman_re200,ppo,91,36.4,force,front_fx,0.00580168329179287 +karman_re200,ppo,91,36.4,force,front_fy,-0.0009230091236531734 +karman_re200,ppo,91,36.4,force,upper_fx,-0.0014966008020564914 +karman_re200,ppo,91,36.4,force,upper_fy,0.003972996026277542 +karman_re200,ppo,91,36.4,force,lower_fx,0.0009533815900795162 +karman_re200,ppo,91,36.4,force,lower_fy,-0.0033022603020071983 +karman_re200,ppo,92,36.8,force,front_fx,0.0015749456360936165 +karman_re200,ppo,92,36.8,force,front_fy,-0.0037683197297155857 +karman_re200,ppo,92,36.8,force,upper_fx,-0.0013775952393189073 +karman_re200,ppo,92,36.8,force,upper_fy,-0.0007661841809749603 +karman_re200,ppo,92,36.8,force,lower_fx,8.899022213881835e-05 +karman_re200,ppo,92,36.8,force,lower_fy,-0.003016364760696888 +karman_re200,ppo,93,37.2,force,front_fx,-0.0004568567092064768 +karman_re200,ppo,93,37.2,force,front_fy,-0.004971395246684551 +karman_re200,ppo,93,37.2,force,upper_fx,-0.004840581212192774 +karman_re200,ppo,93,37.2,force,upper_fy,0.001266835373826325 +karman_re200,ppo,93,37.2,force,lower_fx,-0.0004378470475785434 +karman_re200,ppo,93,37.2,force,lower_fy,-0.0028820717707276344 +karman_re200,ppo,94,37.6,force,front_fx,-0.0010806232457980514 +karman_re200,ppo,94,37.6,force,front_fy,-0.006628815550357103 +karman_re200,ppo,94,37.6,force,upper_fx,-0.004115380346775055 +karman_re200,ppo,94,37.6,force,upper_fy,0.007628780789673328 +karman_re200,ppo,94,37.6,force,lower_fx,-0.0009149547549895942 +karman_re200,ppo,94,37.6,force,lower_fy,-0.0031971153803169727 +karman_re200,ppo,95,38.0,force,front_fx,-0.0016098992200568318 +karman_re200,ppo,95,38.0,force,front_fy,-0.0040485248900949955 +karman_re200,ppo,95,38.0,force,upper_fx,0.00053419079631567 +karman_re200,ppo,95,38.0,force,upper_fy,0.01005167979747057 +karman_re200,ppo,95,38.0,force,lower_fx,-0.000604153610765934 +karman_re200,ppo,95,38.0,force,lower_fy,-0.003925977740436792 +karman_re200,ppo,96,38.4,force,front_fx,-0.00014003175601828843 +karman_re200,ppo,96,38.4,force,front_fy,-0.0039492021314799786 +karman_re200,ppo,96,38.4,force,upper_fx,0.006680311635136604 +karman_re200,ppo,96,38.4,force,upper_fy,0.00901765562593937 +karman_re200,ppo,96,38.4,force,lower_fx,0.0024906378239393234 +karman_re200,ppo,96,38.4,force,lower_fy,-0.00570068322122097 +karman_re200,ppo,97,38.8,force,front_fx,0.004117188975214958 +karman_re200,ppo,97,38.8,force,front_fy,-0.0013912369031459093 +karman_re200,ppo,97,38.8,force,upper_fx,0.007367515936493874 +karman_re200,ppo,97,38.8,force,upper_fy,0.0067665306851267815 +karman_re200,ppo,97,38.8,force,lower_fx,-0.0024178645107895136 +karman_re200,ppo,97,38.8,force,lower_fy,-0.002346084685996175 +karman_re200,ppo,98,39.2,force,front_fx,0.004002777393907309 +karman_re200,ppo,98,39.2,force,front_fy,0.00029353416175581515 +karman_re200,ppo,98,39.2,force,upper_fx,0.005289421882480383 +karman_re200,ppo,98,39.2,force,upper_fy,0.004331686068326235 +karman_re200,ppo,98,39.2,force,lower_fx,-0.0053464979864656925 +karman_re200,ppo,98,39.2,force,lower_fy,-0.007016999181360006 +karman_re200,ppo,99,39.6,force,front_fx,0.003086320823058486 +karman_re200,ppo,99,39.6,force,front_fy,0.0017616200493648648 +karman_re200,ppo,99,39.6,force,upper_fx,0.0020191511139273643 +karman_re200,ppo,99,39.6,force,upper_fy,0.0036804648116230965 +karman_re200,ppo,99,39.6,force,lower_fx,-0.0006946726934984326 +karman_re200,ppo,99,39.6,force,lower_fy,-0.00836609024554491 +karman_re200,ppo,100,40.0,force,front_fx,0.0009411004139110446 +karman_re200,ppo,100,40.0,force,front_fy,0.003764393040910363 +karman_re200,ppo,100,40.0,force,upper_fx,0.00020818486518692225 +karman_re200,ppo,100,40.0,force,upper_fy,0.003601039992645383 +karman_re200,ppo,100,40.0,force,lower_fx,0.0008747537503950298 +karman_re200,ppo,100,40.0,force,lower_fy,-0.006241051945835352 +karman_re200,ppo,101,40.4,force,front_fx,-0.0014600498834624887 +karman_re200,ppo,101,40.4,force,front_fy,0.003211207687854767 +karman_re200,ppo,101,40.4,force,upper_fx,-0.0004369164234958589 +karman_re200,ppo,101,40.4,force,upper_fy,0.003819650737568736 +karman_re200,ppo,101,40.4,force,lower_fx,0.0008134313393384218 +karman_re200,ppo,101,40.4,force,lower_fy,-0.0069673568941652775 +karman_re200,ppo,102,40.8,force,front_fx,-0.0020977191161364317 +karman_re200,ppo,102,40.8,force,front_fy,0.0033871070481836796 +karman_re200,ppo,102,40.8,force,upper_fx,-0.0013300756691023707 +karman_re200,ppo,102,40.8,force,upper_fy,0.0031808025669306517 +karman_re200,ppo,102,40.8,force,lower_fx,0.0034561820793896914 +karman_re200,ppo,102,40.8,force,lower_fy,-0.007831258699297905 +karman_re200,ppo,103,41.2,force,front_fx,0.0007146592251956463 +karman_re200,ppo,103,41.2,force,front_fy,0.0033621257171034813 +karman_re200,ppo,103,41.2,force,upper_fx,-0.0035058772191405296 +karman_re200,ppo,103,41.2,force,upper_fy,0.0011391297448426485 +karman_re200,ppo,103,41.2,force,lower_fx,0.006488500628620386 +karman_re200,ppo,103,41.2,force,lower_fy,-0.0068408590741455555 +karman_re200,ppo,104,41.6,force,front_fx,0.007174707483500242 +karman_re200,ppo,104,41.6,force,front_fy,0.0021684288512915373 +karman_re200,ppo,104,41.6,force,upper_fx,-0.00986393727362156 +karman_re200,ppo,104,41.6,force,upper_fy,0.001028598751872778 +karman_re200,ppo,104,41.6,force,lower_fx,0.007569835055619478 +karman_re200,ppo,104,41.6,force,lower_fy,-0.006890740245580673 +karman_re200,ppo,105,42.0,force,front_fx,0.007316286675632 +karman_re200,ppo,105,42.0,force,front_fy,0.0010835160501301289 +karman_re200,ppo,105,42.0,force,upper_fx,-0.009451771154999733 +karman_re200,ppo,105,42.0,force,upper_fy,0.008336767554283142 +karman_re200,ppo,105,42.0,force,lower_fx,0.007891800254583359 +karman_re200,ppo,105,42.0,force,lower_fy,-0.004973877687007189 +karman_re200,ppo,106,42.4,force,front_fx,0.007182361092418432 +karman_re200,ppo,106,42.4,force,front_fy,-4.198942770017311e-05 +karman_re200,ppo,106,42.4,force,upper_fx,-0.004274256993085146 +karman_re200,ppo,106,42.4,force,upper_fy,0.007081680465489626 +karman_re200,ppo,106,42.4,force,lower_fx,0.003235075855627656 +karman_re200,ppo,106,42.4,force,lower_fy,-0.003022522432729602 +karman_re200,ppo,107,42.8,force,front_fx,0.005611348897218704 +karman_re200,ppo,107,42.8,force,front_fy,-0.0019881578627973795 +karman_re200,ppo,107,42.8,force,upper_fx,-0.0016739650163799524 +karman_re200,ppo,107,42.8,force,upper_fy,0.00213858881033957 +karman_re200,ppo,107,42.8,force,lower_fx,0.000601515406742692 +karman_re200,ppo,107,42.8,force,lower_fy,-0.003523979103192687 +karman_re200,ppo,108,43.2,force,front_fx,0.0006845678435638547 +karman_re200,ppo,108,43.2,force,front_fy,-0.004563465248793364 +karman_re200,ppo,108,43.2,force,upper_fx,-0.0025892590638250113 +karman_re200,ppo,108,43.2,force,upper_fy,-0.00015137832087930292 +karman_re200,ppo,108,43.2,force,lower_fx,-0.00045004868297837675 +karman_re200,ppo,108,43.2,force,lower_fy,-0.003837582655251026 +karman_re200,ppo,109,43.6,force,front_fx,-0.0010457936441525817 +karman_re200,ppo,109,43.6,force,front_fy,-0.005792245734483004 +karman_re200,ppo,109,43.6,force,upper_fx,-0.0049302843399345875 +karman_re200,ppo,109,43.6,force,upper_fy,0.0034280947875231504 +karman_re200,ppo,109,43.6,force,lower_fx,-0.0007352636894211173 +karman_re200,ppo,109,43.6,force,lower_fy,-0.0035432386212050915 +karman_re200,ppo,110,44.0,force,front_fx,-0.0013505390379577875 +karman_re200,ppo,110,44.0,force,front_fy,-0.00626525841653347 +karman_re200,ppo,110,44.0,force,upper_fx,-0.002753194887191057 +karman_re200,ppo,110,44.0,force,upper_fy,0.008828709833323956 +karman_re200,ppo,110,44.0,force,lower_fx,-0.0007968910504132509 +karman_re200,ppo,110,44.0,force,lower_fy,-0.003487412352114916 +karman_re200,ppo,111,44.4,force,front_fx,-0.001618791720829904 +karman_re200,ppo,111,44.4,force,front_fy,-0.00440902728587389 +karman_re200,ppo,111,44.4,force,upper_fx,0.0019275954691693187 +karman_re200,ppo,111,44.4,force,upper_fy,0.009999772533774376 +karman_re200,ppo,111,44.4,force,lower_fx,-0.0010449733817949891 +karman_re200,ppo,111,44.4,force,lower_fy,-0.005232674535363913 +karman_re200,ppo,112,44.8,force,front_fx,0.0005218109581619501 +karman_re200,ppo,112,44.8,force,front_fy,-0.0036368367727845907 +karman_re200,ppo,112,44.8,force,upper_fx,0.0067404466681182384 +karman_re200,ppo,112,44.8,force,upper_fy,0.008907802402973175 +karman_re200,ppo,112,44.8,force,lower_fx,0.0026003869716078043 +karman_re200,ppo,112,44.8,force,lower_fy,-0.005317029543220997 +karman_re200,ppo,113,45.2,force,front_fx,0.004609846044331789 +karman_re200,ppo,113,45.2,force,front_fy,-0.0007974556647241116 +karman_re200,ppo,113,45.2,force,upper_fx,0.006623879075050354 +karman_re200,ppo,113,45.2,force,upper_fy,0.006581119727343321 +karman_re200,ppo,113,45.2,force,lower_fx,-0.003056339221075177 +karman_re200,ppo,113,45.2,force,lower_fy,-0.002315941732376814 +karman_re200,ppo,114,45.6,force,front_fx,0.004004769027233124 +karman_re200,ppo,114,45.6,force,front_fy,0.0008860084926709533 +karman_re200,ppo,114,45.6,force,upper_fx,0.005047500133514404 +karman_re200,ppo,114,45.6,force,upper_fy,0.003932836931198835 +karman_re200,ppo,114,45.6,force,lower_fx,-0.004752811975777149 +karman_re200,ppo,114,45.6,force,lower_fy,-0.007341388612985611 +karman_re200,ppo,115,46.0,force,front_fx,0.002705859951674938 +karman_re200,ppo,115,46.0,force,front_fy,0.001938902190886438 +karman_re200,ppo,115,46.0,force,upper_fx,0.0022227177396416664 +karman_re200,ppo,115,46.0,force,upper_fy,0.0038828623946756124 +karman_re200,ppo,115,46.0,force,lower_fx,-0.0005288959946483374 +karman_re200,ppo,115,46.0,force,lower_fy,-0.008159621618688107 +karman_re200,ppo,116,46.4,force,front_fx,0.0008694251882843673 +karman_re200,ppo,116,46.4,force,front_fy,0.0041040293872356415 +karman_re200,ppo,116,46.4,force,upper_fx,-0.0003547317464835942 +karman_re200,ppo,116,46.4,force,upper_fy,0.003602120792493224 +karman_re200,ppo,116,46.4,force,lower_fx,0.0006222884403541684 +karman_re200,ppo,116,46.4,force,lower_fy,-0.005945893470197916 +karman_re200,ppo,117,46.8,force,front_fx,-0.0018562226323410869 +karman_re200,ppo,117,46.8,force,front_fy,0.0032580248080193996 +karman_re200,ppo,117,46.8,force,upper_fx,-0.00035820985794998705 +karman_re200,ppo,117,46.8,force,upper_fy,0.003826856380328536 +karman_re200,ppo,117,46.8,force,lower_fx,0.0006716804346069694 +karman_re200,ppo,117,46.8,force,lower_fy,-0.007204918656498194 +karman_re200,ppo,118,47.2,force,front_fx,-0.0021647741086781025 +karman_re200,ppo,118,47.2,force,front_fy,0.0034089565742760897 +karman_re200,ppo,118,47.2,force,upper_fx,-0.0014048418961465359 +karman_re200,ppo,118,47.2,force,upper_fy,0.002896654885262251 +karman_re200,ppo,118,47.2,force,lower_fx,0.003694743849337101 +karman_re200,ppo,118,47.2,force,lower_fy,-0.007510270457714796 +karman_re200,ppo,119,47.6,force,front_fx,0.00047538074431940913 +karman_re200,ppo,119,47.6,force,front_fy,0.003212406300008297 +karman_re200,ppo,119,47.6,force,upper_fx,-0.0033490618225187063 +karman_re200,ppo,119,47.6,force,upper_fy,0.0011784195667132735 +karman_re200,ppo,119,47.6,force,lower_fx,0.006594785489141941 +karman_re200,ppo,119,47.6,force,lower_fy,-0.006941414903849363 +karman_re200,ppo,120,48.0,force,front_fx,0.006743387784808874 +karman_re200,ppo,120,48.0,force,front_fy,0.0016886667581275105 +karman_re200,ppo,120,48.0,force,upper_fx,-0.009662390686571598 +karman_re200,ppo,120,48.0,force,upper_fy,0.0010882248170673847 +karman_re200,ppo,120,48.0,force,lower_fx,0.007456869352608919 +karman_re200,ppo,120,48.0,force,lower_fy,-0.007493956480175257 +karman_re200,ppo,121,48.4,force,front_fx,0.006767666898667812 +karman_re200,ppo,121,48.4,force,front_fy,0.0005969859194010496 +karman_re200,ppo,121,48.4,force,upper_fx,-0.009698683395981789 +karman_re200,ppo,121,48.4,force,upper_fy,0.008356870152056217 +karman_re200,ppo,121,48.4,force,lower_fx,0.007789488881826401 +karman_re200,ppo,121,48.4,force,lower_fy,-0.005437192507088184 +karman_re200,ppo,122,48.8,force,front_fx,0.006600511260330677 +karman_re200,ppo,122,48.8,force,front_fy,-0.0006252377643249929 +karman_re200,ppo,122,48.8,force,upper_fx,-0.004220511764287949 +karman_re200,ppo,122,48.8,force,upper_fy,0.007594516966491938 +karman_re200,ppo,122,48.8,force,lower_fx,0.0031422763131558895 +karman_re200,ppo,122,48.8,force,lower_fy,-0.0033763230312615633 +karman_re200,ppo,123,49.2,force,front_fx,0.004989731125533581 +karman_re200,ppo,123,49.2,force,front_fy,-0.00252824486233294 +karman_re200,ppo,123,49.2,force,upper_fx,-0.0013342179590836167 +karman_re200,ppo,123,49.2,force,upper_fy,0.00290897348895669 +karman_re200,ppo,123,49.2,force,lower_fx,0.00020331185078248382 +karman_re200,ppo,123,49.2,force,lower_fy,-0.004080865532159805 +karman_re200,ppo,124,49.6,force,front_fx,-0.0001990518212551251 +karman_re200,ppo,124,49.6,force,front_fy,-0.004634547047317028 +karman_re200,ppo,124,49.6,force,upper_fx,-0.0019027568632736802 +karman_re200,ppo,124,49.6,force,upper_fy,0.0005186519701965153 +karman_re200,ppo,124,49.6,force,lower_fx,-0.00023519416572526097 +karman_re200,ppo,124,49.6,force,lower_fy,-0.004784486256539822 +karman_re200,ppo,125,50.0,force,front_fx,-0.0018404221627861261 +karman_re200,ppo,125,50.0,force,front_fy,-0.004943022970110178 +karman_re200,ppo,125,50.0,force,upper_fx,-0.003482597880065441 +karman_re200,ppo,125,50.0,force,upper_fy,0.0027367144357413054 +karman_re200,ppo,125,50.0,force,lower_fx,-5.604504985967651e-05 +karman_re200,ppo,125,50.0,force,lower_fy,-0.0033545433543622494 +karman_re200,ppo,126,50.4,force,front_fx,-0.0024559174198657274 +karman_re200,ppo,126,50.4,force,front_fy,-0.005048805847764015 +karman_re200,ppo,126,50.4,force,upper_fx,-0.0010630452306941152 +karman_re200,ppo,126,50.4,force,upper_fy,0.0065069664269685745 +karman_re200,ppo,126,50.4,force,lower_fx,-0.0007421650225296617 +karman_re200,ppo,126,50.4,force,lower_fy,-0.0033853482455015182 +karman_re200,ppo,127,50.8,force,front_fx,-0.0009581507765688002 +karman_re200,ppo,127,50.8,force,front_fy,-0.003980867564678192 +karman_re200,ppo,127,50.8,force,upper_fx,0.0020272433757781982 +karman_re200,ppo,127,50.8,force,upper_fy,0.0065941172651946545 +karman_re200,ppo,127,50.8,force,lower_fx,-0.0013498920015990734 +karman_re200,ppo,127,50.8,force,lower_fy,-0.003950553014874458 +karman_re200,ppo,128,51.2,force,front_fx,0.0019846204668283463 +karman_re200,ppo,128,51.2,force,front_fy,-0.0025377445854246616 +karman_re200,ppo,128,51.2,force,upper_fx,0.004482681397348642 +karman_re200,ppo,128,51.2,force,upper_fy,0.006199571304023266 +karman_re200,ppo,128,51.2,force,lower_fx,-0.002450932515785098 +karman_re200,ppo,128,51.2,force,lower_fy,-0.0032710700761526823 +karman_re200,ppo,129,51.6,force,front_fx,0.005089966580271721 +karman_re200,ppo,129,51.6,force,front_fy,2.9209344575065188e-05 +karman_re200,ppo,129,51.6,force,upper_fx,0.003998479340225458 +karman_re200,ppo,129,51.6,force,upper_fy,0.005067568272352219 +karman_re200,ppo,129,51.6,force,lower_fx,-0.007171032018959522 +karman_re200,ppo,129,51.6,force,lower_fy,-0.004057817626744509 +karman_re200,ppo,130,52.0,force,front_fx,0.003194413846358657 +karman_re200,ppo,130,52.0,force,front_fy,0.0010617547668516636 +karman_re200,ppo,130,52.0,force,upper_fx,0.0027048829942941666 +karman_re200,ppo,130,52.0,force,upper_fy,0.0034500150941312313 +karman_re200,ppo,130,52.0,force,lower_fx,-0.005250369198620319 +karman_re200,ppo,130,52.0,force,lower_fy,-0.010218309238553047 +karman_re200,ppo,131,52.4,force,front_fx,0.0018626251257956028 +karman_re200,ppo,131,52.4,force,front_fy,0.0024437173269689083 +karman_re200,ppo,131,52.4,force,upper_fx,0.00030510209035128355 +karman_re200,ppo,131,52.4,force,upper_fy,0.003985160496085882 +karman_re200,ppo,131,52.4,force,lower_fx,0.0007417100132443011 +karman_re200,ppo,131,52.4,force,lower_fy,-0.009475336410105228 +karman_re200,ppo,132,52.8,force,front_fx,-0.000933704839553684 +karman_re200,ppo,132,52.8,force,front_fy,0.0037669583689421415 +karman_re200,ppo,132,52.8,force,upper_fx,-0.0004222592106088996 +karman_re200,ppo,132,52.8,force,upper_fy,0.005593976937234402 +karman_re200,ppo,132,52.8,force,lower_fx,0.0020598929841071367 +karman_re200,ppo,132,52.8,force,lower_fy,-0.007092676591128111 +karman_re200,ppo,133,53.2,force,front_fx,-0.0020939717069268227 +karman_re200,ppo,133,53.2,force,front_fy,0.003869036678224802 +karman_re200,ppo,133,53.2,force,upper_fx,-0.00017404818208888173 +karman_re200,ppo,133,53.2,force,upper_fy,0.003917192108929157 +karman_re200,ppo,133,53.2,force,lower_fx,0.002261343877762556 +karman_re200,ppo,133,53.2,force,lower_fy,-0.00685052340850234 +karman_re200,ppo,134,53.6,force,front_fx,-0.0012272311141714454 +karman_re200,ppo,134,53.6,force,front_fy,0.003418741514906287 +karman_re200,ppo,134,53.6,force,upper_fx,-0.0015233948361128569 +karman_re200,ppo,134,53.6,force,upper_fy,0.001987732946872711 +karman_re200,ppo,134,53.6,force,lower_fx,0.0035900697112083435 +karman_re200,ppo,134,53.6,force,lower_fy,-0.0062627000734210014 +karman_re200,ppo,135,54.0,force,front_fx,0.0018999897874891758 +karman_re200,ppo,135,54.0,force,front_fy,0.0030926114413887262 +karman_re200,ppo,135,54.0,force,upper_fx,-0.004553915932774544 +karman_re200,ppo,135,54.0,force,upper_fy,0.0009781870758160949 +karman_re200,ppo,135,54.0,force,lower_fx,0.005867526400834322 +karman_re200,ppo,135,54.0,force,lower_fy,-0.006095363292843103 +karman_re200,ppo,136,54.4,force,front_fx,0.007094189524650574 +karman_re200,ppo,136,54.4,force,front_fy,0.002370536560192704 +karman_re200,ppo,136,54.4,force,upper_fx,-0.009245088323950768 +karman_re200,ppo,136,54.4,force,upper_fy,0.003189981682226062 +karman_re200,ppo,136,54.4,force,lower_fx,0.007592659443616867 +karman_re200,ppo,136,54.4,force,lower_fy,-0.00614084443077445 +karman_re200,ppo,137,54.8,force,front_fx,0.006827977951616049 +karman_re200,ppo,137,54.8,force,front_fy,0.00037990938290022314 +karman_re200,ppo,137,54.8,force,upper_fx,-0.005717364139854908 +karman_re200,ppo,137,54.8,force,upper_fy,0.008795011788606644 +karman_re200,ppo,137,54.8,force,lower_fx,0.0070474701933562756 +karman_re200,ppo,137,54.8,force,lower_fy,-0.004319091327488422 +karman_re200,ppo,138,55.2,force,front_fx,0.005755859427154064 +karman_re200,ppo,138,55.2,force,front_fy,-0.0005786502151750028 +karman_re200,ppo,138,55.2,force,upper_fx,-0.00242263893596828 +karman_re200,ppo,138,55.2,force,upper_fy,0.006152207963168621 +karman_re200,ppo,138,55.2,force,lower_fx,0.0024060732685029507 +karman_re200,ppo,138,55.2,force,lower_fy,-0.0033066854812204838 +karman_re200,ppo,139,55.6,force,front_fx,0.003331589512526989 +karman_re200,ppo,139,55.6,force,front_fy,-0.003110199933871627 +karman_re200,ppo,139,55.6,force,upper_fx,-0.001340661197900772 +karman_re200,ppo,139,55.6,force,upper_fy,0.0015481174923479557 +karman_re200,ppo,139,55.6,force,lower_fx,0.00032937529613263905 +karman_re200,ppo,139,55.6,force,lower_fy,-0.003580805379897356 +karman_re200,ppo,140,56.0,force,front_fx,-3.0299581339932047e-05 +karman_re200,ppo,140,56.0,force,front_fy,-0.004112424794584513 +karman_re200,ppo,140,56.0,force,upper_fx,-0.0031681982800364494 +karman_re200,ppo,140,56.0,force,upper_fy,0.001461113104596734 +karman_re200,ppo,140,56.0,force,lower_fx,-7.842233753763139e-05 +karman_re200,ppo,140,56.0,force,lower_fy,-0.0036164247430860996 +karman_re200,ppo,141,56.4,force,front_fx,-0.0020820777863264084 +karman_re200,ppo,141,56.4,force,front_fy,-0.004804741591215134 +karman_re200,ppo,141,56.4,force,upper_fx,-0.0025273356586694717 +karman_re200,ppo,141,56.4,force,upper_fy,0.005138772539794445 +karman_re200,ppo,141,56.4,force,lower_fx,-0.00021920034487266093 +karman_re200,ppo,141,56.4,force,lower_fy,-0.0030451202765107155 +karman_re200,ppo,142,56.8,force,front_fx,-0.0019113547168672085 +karman_re200,ppo,142,56.8,force,front_fy,-0.004108489025384188 +karman_re200,ppo,142,56.8,force,upper_fx,0.0003722643887158483 +karman_re200,ppo,142,56.8,force,upper_fy,0.006643048953264952 +karman_re200,ppo,142,56.8,force,lower_fx,-0.0008155716932378709 +karman_re200,ppo,142,56.8,force,lower_fy,-0.0028058644384145737 +karman_re200,ppo,143,57.2,force,front_fx,-0.0001597767841303721 +karman_re200,ppo,143,57.2,force,front_fy,-0.003689558245241642 +karman_re200,ppo,143,57.2,force,upper_fx,0.0031282745767384768 +karman_re200,ppo,143,57.2,force,upper_fy,0.0061677368357777596 +karman_re200,ppo,143,57.2,force,lower_fx,-0.0014164140447974205 +karman_re200,ppo,143,57.2,force,lower_fy,-0.0028543078806251287 +karman_re200,ppo,144,57.6,force,front_fx,0.0033172774128615856 +karman_re200,ppo,144,57.6,force,front_fy,-0.0014034243067726493 +karman_re200,ppo,144,57.6,force,upper_fx,0.004636041820049286 +karman_re200,ppo,144,57.6,force,upper_fy,0.005813713651150465 +karman_re200,ppo,144,57.6,force,lower_fx,-0.004636644385755062 +karman_re200,ppo,144,57.6,force,lower_fy,-0.00172321533318609 +karman_re200,ppo,145,58.0,force,front_fx,0.004825367592275143 +karman_re200,ppo,145,58.0,force,front_fy,-9.790947660803795e-05 +karman_re200,ppo,145,58.0,force,upper_fx,0.004296926781535149 +karman_re200,ppo,145,58.0,force,upper_fy,0.0039869858883321285 +karman_re200,ppo,145,58.0,force,lower_fx,-0.008094490505754948 +karman_re200,ppo,145,58.0,force,lower_fy,-0.005521293263882399 +karman_re200,ppo,146,58.4,force,front_fx,0.0027563718613237143 +karman_re200,ppo,146,58.4,force,front_fy,0.0016069784760475159 +karman_re200,ppo,146,58.4,force,upper_fx,0.0022840071469545364 +karman_re200,ppo,146,58.4,force,upper_fy,0.00355472881346941 +karman_re200,ppo,146,58.4,force,lower_fx,-0.002748569007962942 +karman_re200,ppo,146,58.4,force,lower_fy,-0.010504416190087795 +karman_re200,ppo,147,58.8,force,front_fx,0.0009404258453287184 +karman_re200,ppo,147,58.8,force,front_fy,0.0030478578992187977 +karman_re200,ppo,147,58.8,force,upper_fx,0.00010988887515850365 +karman_re200,ppo,147,58.8,force,upper_fy,0.004549636039882898 +karman_re200,ppo,147,58.8,force,lower_fx,0.0014945004368200898 +karman_re200,ppo,147,58.8,force,lower_fy,-0.008236822672188282 +karman_re200,ppo,148,59.2,force,front_fx,-0.001400414970703423 +karman_re200,ppo,148,59.2,force,front_fy,0.0037100589834153652 +karman_re200,ppo,148,59.2,force,upper_fx,-0.0004775194393005222 +karman_re200,ppo,148,59.2,force,upper_fy,0.0060716355219483376 +karman_re200,ppo,148,59.2,force,lower_fx,0.0023307872470468283 +karman_re200,ppo,148,59.2,force,lower_fy,-0.006751345004886389 +karman_re200,ppo,149,59.6,force,front_fx,-0.0015851068310439587 +karman_re200,ppo,149,59.6,force,front_fy,0.0035220040008425713 +karman_re200,ppo,149,59.6,force,upper_fx,-0.0005765161477029324 +karman_re200,ppo,149,59.6,force,upper_fy,0.004340434446930885 +karman_re200,ppo,149,59.6,force,lower_fx,0.00286527699790895 +karman_re200,ppo,149,59.6,force,lower_fy,-0.006217408925294876 +karman_re200,ppo,150,60.0,force,front_fx,0.001232624868862331 +karman_re200,ppo,150,60.0,force,front_fy,0.0036304877139627934 +karman_re200,ppo,150,60.0,force,upper_fx,-0.00340770254842937 +karman_re200,ppo,150,60.0,force,upper_fy,0.0018473508534952998 +karman_re200,ppo,150,60.0,force,lower_fx,0.004418272990733385 +karman_re200,ppo,150,60.0,force,lower_fy,-0.005234049167484045 +karman_re200,ppo,151,60.4,force,front_fx,0.007076798006892204 +karman_re200,ppo,151,60.4,force,front_fy,0.0029964970890432596 +karman_re200,ppo,151,60.4,force,upper_fx,-0.00892671663314104 +karman_re200,ppo,151,60.4,force,upper_fy,0.0016826668288558722 +karman_re200,ppo,151,60.4,force,lower_fx,0.005979978013783693 +karman_re200,ppo,151,60.4,force,lower_fy,-0.0038063330575823784 +karman_re200,ppo,152,60.8,force,front_fx,0.0076509942300617695 +karman_re200,ppo,152,60.8,force,front_fy,0.002061392180621624 +karman_re200,ppo,152,60.8,force,upper_fx,-0.008732815273106098 +karman_re200,ppo,152,60.8,force,upper_fy,0.0074516101740300655 +karman_re200,ppo,152,60.8,force,lower_fx,0.00743062375113368 +karman_re200,ppo,152,60.8,force,lower_fy,-0.002333446405827999 +karman_re200,ppo,153,61.2,force,front_fx,0.007871423847973347 +karman_re200,ppo,153,61.2,force,front_fy,0.0011659945594146848 +karman_re200,ppo,153,61.2,force,upper_fx,-0.004126377869397402 +karman_re200,ppo,153,61.2,force,upper_fy,0.006672060117125511 +karman_re200,ppo,153,61.2,force,lower_fx,0.003996517043560743 +karman_re200,ppo,153,61.2,force,lower_fy,-0.001921995310112834 +karman_re200,ppo,154,61.6,force,front_fx,0.00633541215211153 +karman_re200,ppo,154,61.6,force,front_fy,-0.001107668154872954 +karman_re200,ppo,154,61.6,force,upper_fx,-0.002525705611333251 +karman_re200,ppo,154,61.6,force,upper_fy,0.0015773039776831865 +karman_re200,ppo,154,61.6,force,lower_fx,0.00048149400390684605 +karman_re200,ppo,154,61.6,force,lower_fy,-0.00238901493139565 +karman_re200,ppo,155,62.0,force,front_fx,0.001525665051303804 +karman_re200,ppo,155,62.0,force,front_fy,-0.0035474884789437056 +karman_re200,ppo,155,62.0,force,upper_fx,-0.0035070818848907948 +karman_re200,ppo,155,62.0,force,upper_fy,-8.165284089045599e-05 +karman_re200,ppo,155,62.0,force,lower_fx,-0.0004375112184789032 +karman_re200,ppo,155,62.0,force,lower_fy,-0.0026467549614608288 +karman_re200,ppo,156,62.4,force,front_fx,-0.00033332168823108077 +karman_re200,ppo,156,62.4,force,front_fy,-0.0053099943324923515 +karman_re200,ppo,156,62.4,force,upper_fx,-0.0049920398741960526 +karman_re200,ppo,156,62.4,force,upper_fy,0.0036736021284013987 +karman_re200,ppo,156,62.4,force,lower_fx,-0.0011238135630264878 +karman_re200,ppo,156,62.4,force,lower_fy,-0.002927274676039815 +karman_re200,ppo,157,62.8,force,front_fx,-0.0010261061834171414 +karman_re200,ppo,157,62.8,force,front_fy,-0.005388400051742792 +karman_re200,ppo,157,62.8,force,upper_fx,-0.0027389186434447765 +karman_re200,ppo,157,62.8,force,upper_fy,0.008450377732515335 +karman_re200,ppo,157,62.8,force,lower_fx,-0.0010140928206965327 +karman_re200,ppo,157,62.8,force,lower_fy,-0.0029206466861069202 +karman_re200,ppo,158,63.2,force,front_fx,-0.0017073513008654118 +karman_re200,ppo,158,63.2,force,front_fy,-0.0042446088045835495 +karman_re200,ppo,158,63.2,force,upper_fx,0.001840148470364511 +karman_re200,ppo,158,63.2,force,upper_fy,0.009261736646294594 +karman_re200,ppo,158,63.2,force,lower_fx,-0.0007793426630087197 +karman_re200,ppo,158,63.2,force,lower_fy,-0.004944786429405212 +karman_re200,ppo,159,63.6,force,front_fx,0.0007235864759422839 +karman_re200,ppo,159,63.6,force,front_fy,-0.0037806981708854437 +karman_re200,ppo,159,63.6,force,upper_fx,0.006395640783011913 +karman_re200,ppo,159,63.6,force,upper_fy,0.008072752505540848 +karman_re200,ppo,159,63.6,force,lower_fx,0.001360828522592783 +karman_re200,ppo,159,63.6,force,lower_fy,-0.0035367831587791443 +karman_re200,ppo,160,64.0,force,front_fx,0.00478637358173728 +karman_re200,ppo,160,64.0,force,front_fy,-0.0015243958914652467 +karman_re200,ppo,160,64.0,force,upper_fx,0.0061546145007014275 +karman_re200,ppo,160,64.0,force,upper_fy,0.006018372252583504 +karman_re200,ppo,160,64.0,force,lower_fx,-0.004308216739445925 +karman_re200,ppo,160,64.0,force,lower_fy,-0.0022946647368371487 +karman_re200,ppo,161,64.4,force,front_fx,0.004568017553538084 +karman_re200,ppo,161,64.4,force,front_fy,0.00020732113625854254 +karman_re200,ppo,161,64.4,force,upper_fx,0.004802907817065716 +karman_re200,ppo,161,64.4,force,upper_fy,0.00342469266615808 +karman_re200,ppo,161,64.4,force,lower_fx,-0.00464688241481781 +karman_re200,ppo,161,64.4,force,lower_fy,-0.006333973258733749 +karman_re200,ppo,162,64.8,force,front_fx,0.003214506432414055 +karman_re200,ppo,162,64.8,force,front_fy,0.00173699960578233 +karman_re200,ppo,162,64.8,force,upper_fx,0.0020948981400579214 +karman_re200,ppo,162,64.8,force,upper_fy,0.003470020368695259 +karman_re200,ppo,162,64.8,force,lower_fx,-0.0010306778131052852 +karman_re200,ppo,162,64.8,force,lower_fy,-0.006769642233848572 +karman_re200,ppo,163,65.2,force,front_fx,0.0005626728525385261 +karman_re200,ppo,163,65.2,force,front_fy,0.0035561651457101107 +karman_re200,ppo,163,65.2,force,upper_fx,0.00026117084780707955 +karman_re200,ppo,163,65.2,force,upper_fy,0.0037573075387626886 +karman_re200,ppo,163,65.2,force,lower_fx,-5.9495228924788535e-05 +karman_re200,ppo,163,65.2,force,lower_fy,-0.0056499880738556385 +karman_re200,ppo,164,65.6,force,front_fx,-0.001500287209637463 +karman_re200,ppo,164,65.6,force,front_fy,0.0036172440741211176 +karman_re200,ppo,164,65.6,force,upper_fx,-0.0006435512914322317 +karman_re200,ppo,164,65.6,force,upper_fy,0.003786915447562933 +karman_re200,ppo,164,65.6,force,lower_fx,0.0006978923338465393 +karman_re200,ppo,164,65.6,force,lower_fy,-0.006668337155133486 +karman_re200,ppo,165,66.0,force,front_fx,-0.0021248538978397846 +karman_re200,ppo,165,66.0,force,front_fy,0.0036295182071626186 +karman_re200,ppo,165,66.0,force,upper_fx,-0.0015443405136466026 +karman_re200,ppo,165,66.0,force,upper_fy,0.0031944075599312782 +karman_re200,ppo,165,66.0,force,lower_fx,0.0035027628764510155 +karman_re200,ppo,165,66.0,force,lower_fy,-0.00748238991945982 +karman_re200,ppo,166,66.4,force,front_fx,0.000382724916562438 +karman_re200,ppo,166,66.4,force,front_fy,0.003589014057070017 +karman_re200,ppo,166,66.4,force,upper_fx,-0.0035870838910341263 +karman_re200,ppo,166,66.4,force,upper_fy,0.0020406758412718773 +karman_re200,ppo,166,66.4,force,lower_fx,0.005807423964142799 +karman_re200,ppo,166,66.4,force,lower_fy,-0.006041723303496838 +karman_re200,ppo,167,66.8,force,front_fx,0.006337005645036697 +karman_re200,ppo,167,66.8,force,front_fy,0.002100348239764571 +karman_re200,ppo,167,66.8,force,upper_fx,-0.008774717338383198 +karman_re200,ppo,167,66.8,force,upper_fy,0.0010847386438399553 +karman_re200,ppo,167,66.8,force,lower_fx,0.006218243855983019 +karman_re200,ppo,167,66.8,force,lower_fy,-0.006386937573552132 +karman_re200,ppo,168,67.2,force,front_fx,0.006796212401241064 +karman_re200,ppo,168,67.2,force,front_fy,0.0015342016704380512 +karman_re200,ppo,168,67.2,force,upper_fx,-0.00992977898567915 +karman_re200,ppo,168,67.2,force,upper_fy,0.007170494645833969 +karman_re200,ppo,168,67.2,force,lower_fx,0.0074127609841525555 +karman_re200,ppo,168,67.2,force,lower_fy,-0.004682998172938824 +karman_re200,ppo,169,67.6,force,front_fx,0.007210938725620508 +karman_re200,ppo,169,67.6,force,front_fy,2.326648245798424e-05 +karman_re200,ppo,169,67.6,force,upper_fx,-0.00450065266340971 +karman_re200,ppo,169,67.6,force,upper_fy,0.0072556668892502785 +karman_re200,ppo,169,67.6,force,lower_fx,0.0035447152331471443 +karman_re200,ppo,169,67.6,force,lower_fy,-0.002669933717697859 +karman_re200,ppo,170,68.0,force,front_fx,0.005754066631197929 +karman_re200,ppo,170,68.0,force,front_fy,-0.0014783750521019101 +karman_re200,ppo,170,68.0,force,upper_fx,-0.001805268693715334 +karman_re200,ppo,170,68.0,force,upper_fy,0.002709455555304885 +karman_re200,ppo,170,68.0,force,lower_fx,0.0007438194588758051 +karman_re200,ppo,170,68.0,force,lower_fy,-0.002895711688324809 +karman_re200,ppo,171,68.4,force,front_fx,0.0012197468895465136 +karman_re200,ppo,171,68.4,force,front_fy,-0.004002043511718512 +karman_re200,ppo,171,68.4,force,upper_fx,-0.002144227270036936 +karman_re200,ppo,171,68.4,force,upper_fy,-0.00012039101420668885 +karman_re200,ppo,171,68.4,force,lower_fx,-9.142097405856475e-05 +karman_re200,ppo,171,68.4,force,lower_fy,-0.0029775581788271666 +karman_re200,ppo,172,68.8,force,front_fx,-0.0008599182474426925 +karman_re200,ppo,172,68.8,force,front_fy,-0.005265213083475828 +karman_re200,ppo,172,68.8,force,upper_fx,-0.004130866378545761 +karman_re200,ppo,172,68.8,force,upper_fy,0.0028217786457389593 +karman_re200,ppo,172,68.8,force,lower_fx,-0.0006028310162946582 +karman_re200,ppo,172,68.8,force,lower_fy,-0.003221893683075905 +karman_re200,ppo,173,69.2,force,front_fx,-0.0018388245953246951 +karman_re200,ppo,173,69.2,force,front_fy,-0.004963661544024944 +karman_re200,ppo,173,69.2,force,upper_fx,-0.0019253380596637726 +karman_re200,ppo,173,69.2,force,upper_fy,0.007397317793220282 +karman_re200,ppo,173,69.2,force,lower_fx,-0.0006149558466859162 +karman_re200,ppo,173,69.2,force,lower_fy,-0.0033431854099035263 +karman_re200,ppo,174,69.6,force,front_fx,-0.0015126769430935383 +karman_re200,ppo,174,69.6,force,front_fy,-0.004145556595176458 +karman_re200,ppo,174,69.6,force,upper_fx,0.0021624199580401182 +karman_re200,ppo,174,69.6,force,upper_fy,0.007919924333691597 +karman_re200,ppo,174,69.6,force,lower_fx,-0.0005926793091930449 +karman_re200,ppo,174,69.6,force,lower_fy,-0.004844560753554106 +karman_re200,ppo,175,70.0,force,front_fx,0.001732428791001439 +karman_re200,ppo,175,70.0,force,front_fy,-0.0034301963169127703 +karman_re200,ppo,175,70.0,force,upper_fx,0.00571822514757514 +karman_re200,ppo,175,70.0,force,upper_fy,0.0071616508066654205 +karman_re200,ppo,175,70.0,force,lower_fx,-0.000847924267873168 +karman_re200,ppo,175,70.0,force,lower_fy,-0.003261788282543421 +karman_re200,ppo,176,70.4,force,front_fx,0.0055532436817884445 +karman_re200,ppo,176,70.4,force,front_fy,-0.001135394093580544 +karman_re200,ppo,176,70.4,force,upper_fx,0.0054301549680531025 +karman_re200,ppo,176,70.4,force,upper_fy,0.0054025244899094105 +karman_re200,ppo,176,70.4,force,lower_fx,-0.006266160402446985 +karman_re200,ppo,176,70.4,force,lower_fy,-0.0032735473942011595 +karman_re200,ppo,177,70.8,force,front_fx,0.004546435084193945 +karman_re200,ppo,177,70.8,force,front_fy,0.0005058142123743892 +karman_re200,ppo,177,70.8,force,upper_fx,0.004085000604391098 +karman_re200,ppo,177,70.8,force,upper_fy,0.003025504993274808 +karman_re200,ppo,177,70.8,force,lower_fx,-0.004774462431669235 +karman_re200,ppo,177,70.8,force,lower_fy,-0.008565125055611134 +karman_re200,ppo,178,71.2,force,front_fx,0.003239481709897518 +karman_re200,ppo,178,71.2,force,front_fy,0.0017623640596866608 +karman_re200,ppo,178,71.2,force,upper_fx,0.001551167224533856 +karman_re200,ppo,178,71.2,force,upper_fy,0.003514445386826992 +karman_re200,ppo,178,71.2,force,lower_fx,-0.0002024988061748445 +karman_re200,ppo,178,71.2,force,lower_fy,-0.00736534409224987 +karman_re200,ppo,179,71.6,force,front_fx,0.00036832166370004416 +karman_re200,ppo,179,71.6,force,front_fy,0.0038492793682962656 +karman_re200,ppo,179,71.6,force,upper_fx,-2.1950598238618113e-05 +karman_re200,ppo,179,71.6,force,upper_fy,0.0037820814177393913 +karman_re200,ppo,179,71.6,force,lower_fx,-0.00015837607497815043 +karman_re200,ppo,179,71.6,force,lower_fy,-0.0053413198329508305 +karman_re200,ppo,180,72.0,force,front_fx,-0.0014907227596268058 +karman_re200,ppo,180,72.0,force,front_fy,0.0034887436777353287 +karman_re200,ppo,180,72.0,force,upper_fx,-0.00043637535418383777 +karman_re200,ppo,180,72.0,force,upper_fy,0.003395952982828021 +karman_re200,ppo,180,72.0,force,lower_fx,8.011156023712829e-05 +karman_re200,ppo,180,72.0,force,lower_fy,-0.00678087817505002 +karman_re200,ppo,181,72.4,force,front_fx,-0.0020997149404138327 +karman_re200,ppo,181,72.4,force,front_fy,0.0032892629969865084 +karman_re200,ppo,181,72.4,force,upper_fx,-0.0012488893698900938 +karman_re200,ppo,181,72.4,force,upper_fy,0.0028756726533174515 +karman_re200,ppo,181,72.4,force,lower_fx,0.003042193129658699 +karman_re200,ppo,181,72.4,force,lower_fy,-0.007662641815841198 +karman_re200,ppo,182,72.8,force,front_fx,0.0007023728103376925 +karman_re200,ppo,182,72.8,force,front_fy,0.003532486967742443 +karman_re200,ppo,182,72.8,force,upper_fx,-0.0033838015515357256 +karman_re200,ppo,182,72.8,force,upper_fy,0.0018218106124550104 +karman_re200,ppo,182,72.8,force,lower_fx,0.0060198185965418816 +karman_re200,ppo,182,72.8,force,lower_fy,-0.006799967493861914 +karman_re200,ppo,183,73.2,force,front_fx,0.006856028456240892 +karman_re200,ppo,183,73.2,force,front_fy,0.0020102527923882008 +karman_re200,ppo,183,73.2,force,upper_fx,-0.008862456306815147 +karman_re200,ppo,183,73.2,force,upper_fy,0.0016063462244346738 +karman_re200,ppo,183,73.2,force,lower_fx,0.006633327808231115 +karman_re200,ppo,183,73.2,force,lower_fy,-0.007208610884845257 +karman_re200,ppo,184,73.6,force,front_fx,0.006706856656819582 +karman_re200,ppo,184,73.6,force,front_fy,0.0008857165230438113 +karman_re200,ppo,184,73.6,force,upper_fx,-0.008174993097782135 +karman_re200,ppo,184,73.6,force,upper_fy,0.008360709063708782 +karman_re200,ppo,184,73.6,force,lower_fx,0.00732019729912281 +karman_re200,ppo,184,73.6,force,lower_fy,-0.004989566281437874 +karman_re200,ppo,185,74.0,force,front_fx,0.006538875866681337 +karman_re200,ppo,185,74.0,force,front_fy,-0.00035108611336909235 +karman_re200,ppo,185,74.0,force,upper_fx,-0.003592998720705509 +karman_re200,ppo,185,74.0,force,upper_fy,0.006926161702722311 +karman_re200,ppo,185,74.0,force,lower_fx,0.0031643640249967575 +karman_re200,ppo,185,74.0,force,lower_fy,-0.003157187718898058 +karman_re200,ppo,186,74.4,force,front_fx,0.004750935360789299 +karman_re200,ppo,186,74.4,force,front_fy,-0.0022272763308137655 +karman_re200,ppo,186,74.4,force,upper_fx,-0.001581541495397687 +karman_re200,ppo,186,74.4,force,upper_fy,0.0023133992217481136 +karman_re200,ppo,186,74.4,force,lower_fx,0.0009371151681989431 +karman_re200,ppo,186,74.4,force,lower_fy,-0.003505672561004758 +karman_re200,ppo,187,74.8,force,front_fx,0.0007427678210660815 +karman_re200,ppo,187,74.8,force,front_fy,-0.004571898374706507 +karman_re200,ppo,187,74.8,force,upper_fx,-0.0028862589970231056 +karman_re200,ppo,187,74.8,force,upper_fy,0.0009021296864375472 +karman_re200,ppo,187,74.8,force,lower_fx,-0.0007014197763055563 +karman_re200,ppo,187,74.8,force,lower_fy,-0.00353767117485404 +karman_re200,ppo,188,75.2,force,front_fx,-0.0013292005751281977 +karman_re200,ppo,188,75.2,force,front_fy,-0.005624113138765097 +karman_re200,ppo,188,75.2,force,upper_fx,-0.003725206945091486 +karman_re200,ppo,188,75.2,force,upper_fy,0.0047052581794559956 +karman_re200,ppo,188,75.2,force,lower_fx,-0.0006986143416725099 +karman_re200,ppo,188,75.2,force,lower_fy,-0.003422629553824663 +karman_re200,ppo,189,75.6,force,front_fx,-0.0018122692126780748 +karman_re200,ppo,189,75.6,force,front_fy,-0.004967495799064636 +karman_re200,ppo,189,75.6,force,upper_fx,-0.001124944188632071 +karman_re200,ppo,189,75.6,force,upper_fy,0.00839902088046074 +karman_re200,ppo,189,75.6,force,lower_fx,-0.000767061545047909 +karman_re200,ppo,189,75.6,force,lower_fy,-0.0033534569665789604 +karman_re200,ppo,190,76.0,force,front_fx,-0.001546841231174767 +karman_re200,ppo,190,76.0,force,front_fy,-0.0041769715026021 +karman_re200,ppo,190,76.0,force,upper_fx,0.0026716249994933605 +karman_re200,ppo,190,76.0,force,upper_fy,0.00838152039796114 +karman_re200,ppo,190,76.0,force,lower_fx,-0.0004972508759237826 +karman_re200,ppo,190,76.0,force,lower_fy,-0.0053971195593476295 +karman_re200,ppo,191,76.4,force,front_fx,0.0018660249188542366 +karman_re200,ppo,191,76.4,force,front_fy,-0.0028557172045111656 +karman_re200,ppo,191,76.4,force,upper_fx,0.005827563814818859 +karman_re200,ppo,191,76.4,force,upper_fy,0.007572249975055456 +karman_re200,ppo,191,76.4,force,lower_fx,-0.00044830457773059607 +karman_re200,ppo,191,76.4,force,lower_fy,-0.0030699698254466057 +karman_re200,ppo,192,76.8,force,front_fx,0.005128413438796997 +karman_re200,ppo,192,76.8,force,front_fy,-0.0005124675808474422 +karman_re200,ppo,192,76.8,force,upper_fx,0.005317832808941603 +karman_re200,ppo,192,76.8,force,upper_fy,0.005652862600982189 +karman_re200,ppo,192,76.8,force,lower_fx,-0.006260007619857788 +karman_re200,ppo,192,76.8,force,lower_fy,-0.0034516053274273872 +karman_re200,ppo,193,77.2,force,front_fx,0.0038374708965420723 +karman_re200,ppo,193,77.2,force,front_fy,0.0011483537964522839 +karman_re200,ppo,193,77.2,force,upper_fx,0.0038760583847761154 +karman_re200,ppo,193,77.2,force,upper_fy,0.0033061588183045387 +karman_re200,ppo,193,77.2,force,lower_fx,-0.004111261572688818 +karman_re200,ppo,193,77.2,force,lower_fy,-0.00895962305366993 +karman_re200,ppo,194,77.6,force,front_fx,0.002320815110579133 +karman_re200,ppo,194,77.6,force,front_fy,0.0022496317978948355 +karman_re200,ppo,194,77.6,force,upper_fx,0.0012835182715207338 +karman_re200,ppo,194,77.6,force,upper_fy,0.0038751643151044846 +karman_re200,ppo,194,77.6,force,lower_fx,0.0005209589726291597 +karman_re200,ppo,194,77.6,force,lower_fy,-0.007901154458522797 +karman_re200,ppo,195,78.0,force,front_fx,-0.00047967818682082 +karman_re200,ppo,195,78.0,force,front_fy,0.0039658877067267895 +karman_re200,ppo,195,78.0,force,upper_fx,-0.00013216552906669676 +karman_re200,ppo,195,78.0,force,upper_fy,0.004347017966210842 +karman_re200,ppo,195,78.0,force,lower_fx,0.0008152223308570683 +karman_re200,ppo,195,78.0,force,lower_fy,-0.006049771793186665 +karman_re200,ppo,196,78.4,force,front_fx,-0.0015708996215835214 +karman_re200,ppo,196,78.4,force,front_fy,0.003407915122807026 +karman_re200,ppo,196,78.4,force,upper_fx,-0.0007674042717553675 +karman_re200,ppo,196,78.4,force,upper_fy,0.0035319707822054625 +karman_re200,ppo,196,78.4,force,lower_fx,0.0013212610501796007 +karman_re200,ppo,196,78.4,force,lower_fy,-0.006752479821443558 +karman_re200,ppo,197,78.8,force,front_fx,-0.0014223840553313494 +karman_re200,ppo,197,78.8,force,front_fy,0.003266766434535384 +karman_re200,ppo,197,78.8,force,upper_fx,-0.0017467247089371085 +karman_re200,ppo,197,78.8,force,upper_fy,0.0027265476528555155 +karman_re200,ppo,197,78.8,force,lower_fx,0.003779195947572589 +karman_re200,ppo,197,78.8,force,lower_fy,-0.007227993570268154 +karman_re200,ppo,198,79.2,force,front_fx,0.002951705828309059 +karman_re200,ppo,198,79.2,force,front_fy,0.0031545814126729965 +karman_re200,ppo,198,79.2,force,upper_fx,-0.005602891556918621 +karman_re200,ppo,198,79.2,force,upper_fy,0.0007541839731857181 +karman_re200,ppo,198,79.2,force,lower_fx,0.006088497117161751 +karman_re200,ppo,198,79.2,force,lower_fy,-0.007007690612226725 +karman_re200,ppo,199,79.6,force,front_fx,0.007723832502961159 +karman_re200,ppo,199,79.6,force,front_fy,0.0031622627284377813 +karman_re200,ppo,199,79.6,force,upper_fx,-0.010648873634636402 +karman_re200,ppo,199,79.6,force,upper_fy,0.003790436079725623 +karman_re200,ppo,199,79.6,force,lower_fx,0.008514493703842163 +karman_re200,ppo,199,79.6,force,lower_fy,-0.00594718474894762 +karman_re200,ppo,0,0.0,alpha,front,-0.6228015422821045 +karman_re200,ppo,0,0.0,alpha,upper,-0.07173871994018555 +karman_re200,ppo,0,0.0,alpha,lower,5.15933895111084 +karman_re200,ppo,1,0.4,alpha,front,-1.5031547546386719 +karman_re200,ppo,1,0.4,alpha,upper,-0.09985946863889694 +karman_re200,ppo,1,0.4,alpha,lower,5.192103862762451 +karman_re200,ppo,2,0.8,alpha,front,-1.8332595825195312 +karman_re200,ppo,2,0.8,alpha,upper,-1.2449073791503906 +karman_re200,ppo,2,0.8,alpha,lower,4.885129928588867 +karman_re200,ppo,3,1.2,alpha,front,-1.7390445470809937 +karman_re200,ppo,3,1.2,alpha,upper,-3.177455425262451 +karman_re200,ppo,3,1.2,alpha,lower,4.8443193435668945 +karman_re200,ppo,4,1.6,alpha,front,-1.4200859069824219 +karman_re200,ppo,4,1.6,alpha,upper,-4.6419572830200195 +karman_re200,ppo,4,1.6,alpha,lower,3.1799685955047607 +karman_re200,ppo,5,2.0,alpha,front,-0.8761156797409058 +karman_re200,ppo,5,2.0,alpha,upper,-5.264764308929443 +karman_re200,ppo,5,2.0,alpha,lower,2.650411367416382 +karman_re200,ppo,6,2.4,alpha,front,-0.467833936214447 +karman_re200,ppo,6,2.4,alpha,upper,-4.493804454803467 +karman_re200,ppo,6,2.4,alpha,lower,2.275334358215332 +karman_re200,ppo,7,2.8,alpha,front,0.33422422409057617 +karman_re200,ppo,7,2.8,alpha,upper,-4.798018932342529 +karman_re200,ppo,7,2.8,alpha,lower,1.0930614471435547 +karman_re200,ppo,8,3.2,alpha,front,1.472004771232605 +karman_re200,ppo,8,3.2,alpha,upper,-5.487400054931641 +karman_re200,ppo,8,3.2,alpha,lower,-0.17785310745239258 +karman_re200,ppo,9,3.6,alpha,front,2.4666459560394287 +karman_re200,ppo,9,3.6,alpha,upper,-6.272413730621338 +karman_re200,ppo,9,3.6,alpha,lower,-1.0200557708740234 +karman_re200,ppo,10,4.0,alpha,front,2.862161159515381 +karman_re200,ppo,10,4.0,alpha,upper,-6.209733009338379 +karman_re200,ppo,10,4.0,alpha,lower,-0.3963909149169922 +karman_re200,ppo,11,4.4,alpha,front,2.6274633407592773 +karman_re200,ppo,11,4.4,alpha,upper,-4.712515354156494 +karman_re200,ppo,11,4.4,alpha,lower,2.3559646606445312 +karman_re200,ppo,12,4.8,alpha,front,2.2111732959747314 +karman_re200,ppo,12,4.8,alpha,upper,-3.3742785453796387 +karman_re200,ppo,12,4.8,alpha,lower,5.520130634307861 +karman_re200,ppo,13,5.2,alpha,front,1.9968701601028442 +karman_re200,ppo,13,5.2,alpha,upper,-3.703744888305664 +karman_re200,ppo,13,5.2,alpha,lower,4.383648872375488 +karman_re200,ppo,14,5.6,alpha,front,1.7197352647781372 +karman_re200,ppo,14,5.6,alpha,upper,-3.3559226989746094 +karman_re200,ppo,14,5.6,alpha,lower,2.6264185905456543 +karman_re200,ppo,15,6.0,alpha,front,1.0772496461868286 +karman_re200,ppo,15,6.0,alpha,upper,-2.409902811050415 +karman_re200,ppo,15,6.0,alpha,lower,2.320704460144043 +karman_re200,ppo,16,6.4,alpha,front,-0.10529162734746933 +karman_re200,ppo,16,6.4,alpha,upper,-0.6786582469940186 +karman_re200,ppo,16,6.4,alpha,lower,3.942622661590576 +karman_re200,ppo,17,6.8,alpha,front,-1.1631171703338623 +karman_re200,ppo,17,6.8,alpha,upper,0.4118137061595917 +karman_re200,ppo,17,6.8,alpha,lower,5.736422538757324 +karman_re200,ppo,18,7.2,alpha,front,-1.7554987668991089 +karman_re200,ppo,18,7.2,alpha,upper,0.1854534149169922 +karman_re200,ppo,18,7.2,alpha,lower,6.415607929229736 +karman_re200,ppo,19,7.6,alpha,front,-1.838507890701294 +karman_re200,ppo,19,7.6,alpha,upper,-1.2842354774475098 +karman_re200,ppo,19,7.6,alpha,lower,5.835360527038574 +karman_re200,ppo,20,8.0,alpha,front,-1.4813798666000366 +karman_re200,ppo,20,8.0,alpha,upper,-3.453908681869507 +karman_re200,ppo,20,8.0,alpha,lower,3.858278512954712 +karman_re200,ppo,21,8.4,alpha,front,-0.9785566926002502 +karman_re200,ppo,21,8.4,alpha,upper,-4.881351470947266 +karman_re200,ppo,21,8.4,alpha,lower,1.8799724578857422 +karman_re200,ppo,22,8.8,alpha,front,-0.44979599118232727 +karman_re200,ppo,22,8.8,alpha,upper,-5.330161094665527 +karman_re200,ppo,22,8.8,alpha,lower,1.2013216018676758 +karman_re200,ppo,23,9.2,alpha,front,0.1920347362756729 +karman_re200,ppo,23,9.2,alpha,upper,-5.077755451202393 +karman_re200,ppo,23,9.2,alpha,lower,0.9000688195228577 +karman_re200,ppo,24,9.6,alpha,front,1.23276948928833 +karman_re200,ppo,24,9.6,alpha,upper,-5.662370681762695 +karman_re200,ppo,24,9.6,alpha,lower,-0.21919868886470795 +karman_re200,ppo,25,10.0,alpha,front,2.4300708770751953 +karman_re200,ppo,25,10.0,alpha,upper,-6.62451171875 +karman_re200,ppo,25,10.0,alpha,lower,-1.5790143013000488 +karman_re200,ppo,26,10.4,alpha,front,3.022137403488159 +karman_re200,ppo,26,10.4,alpha,upper,-6.512508869171143 +karman_re200,ppo,26,10.4,alpha,lower,-1.122884750366211 +karman_re200,ppo,27,10.8,alpha,front,2.9367547035217285 +karman_re200,ppo,27,10.8,alpha,upper,-4.887861251831055 +karman_re200,ppo,27,10.8,alpha,lower,1.7268950939178467 +karman_re200,ppo,28,11.2,alpha,front,2.634439468383789 +karman_re200,ppo,28,11.2,alpha,upper,-3.4506165981292725 +karman_re200,ppo,28,11.2,alpha,lower,4.804506301879883 +karman_re200,ppo,29,11.6,alpha,front,2.4896323680877686 +karman_re200,ppo,29,11.6,alpha,upper,-4.033602237701416 +karman_re200,ppo,29,11.6,alpha,lower,3.915010929107666 +karman_re200,ppo,30,12.0,alpha,front,2.371039867401123 +karman_re200,ppo,30,12.0,alpha,upper,-4.205699920654297 +karman_re200,ppo,30,12.0,alpha,lower,2.144402503967285 +karman_re200,ppo,31,12.4,alpha,front,1.2933554649353027 +karman_re200,ppo,31,12.4,alpha,upper,-2.6241118907928467 +karman_re200,ppo,31,12.4,alpha,lower,2.70802640914917 +karman_re200,ppo,32,12.8,alpha,front,-0.9009665250778198 +karman_re200,ppo,32,12.8,alpha,upper,0.8364276885986328 +karman_re200,ppo,32,12.8,alpha,lower,6.313188552856445 +karman_re200,ppo,33,13.2,alpha,front,-1.7431343793869019 +karman_re200,ppo,33,13.2,alpha,upper,1.405489444732666 +karman_re200,ppo,33,13.2,alpha,lower,7.562210559844971 +karman_re200,ppo,34,13.6,alpha,front,-1.8774815797805786 +karman_re200,ppo,34,13.6,alpha,upper,0.0778350830078125 +karman_re200,ppo,34,13.6,alpha,lower,7.212472915649414 +karman_re200,ppo,35,14.0,alpha,front,-1.8726388216018677 +karman_re200,ppo,35,14.0,alpha,upper,-1.426513671875 +karman_re200,ppo,35,14.0,alpha,lower,6.327376842498779 +karman_re200,ppo,36,14.4,alpha,front,-1.3749603033065796 +karman_re200,ppo,36,14.4,alpha,upper,-4.183618068695068 +karman_re200,ppo,36,14.4,alpha,lower,3.355394124984741 +karman_re200,ppo,37,14.8,alpha,front,-0.6250023245811462 +karman_re200,ppo,37,14.8,alpha,upper,-6.24503755569458 +karman_re200,ppo,37,14.8,alpha,lower,0.9608745574951172 +karman_re200,ppo,38,15.2,alpha,front,-0.20758657157421112 +karman_re200,ppo,38,15.2,alpha,upper,-5.724234104156494 +karman_re200,ppo,38,15.2,alpha,lower,1.0757880210876465 +karman_re200,ppo,39,15.6,alpha,front,0.23346836864948273 +karman_re200,ppo,39,15.6,alpha,upper,-5.148215293884277 +karman_re200,ppo,39,15.6,alpha,lower,0.8675422668457031 +karman_re200,ppo,40,16.0,alpha,front,1.2232978343963623 +karman_re200,ppo,40,16.0,alpha,upper,-5.8777995109558105 +karman_re200,ppo,40,16.0,alpha,lower,-1.0363473892211914 +karman_re200,ppo,41,16.4,alpha,front,2.490227699279785 +karman_re200,ppo,41,16.4,alpha,upper,-6.76336669921875 +karman_re200,ppo,41,16.4,alpha,lower,-2.499680519104004 +karman_re200,ppo,42,16.8,alpha,front,2.9826455116271973 +karman_re200,ppo,42,16.8,alpha,upper,-5.911075592041016 +karman_re200,ppo,42,16.8,alpha,lower,-0.9002719521522522 +karman_re200,ppo,43,17.2,alpha,front,2.75288724899292 +karman_re200,ppo,43,17.2,alpha,upper,-3.904170513153076 +karman_re200,ppo,43,17.2,alpha,lower,3.2494356632232666 +karman_re200,ppo,44,17.6,alpha,front,2.2764506340026855 +karman_re200,ppo,44,17.6,alpha,upper,-3.076730251312256 +karman_re200,ppo,44,17.6,alpha,lower,5.670372009277344 +karman_re200,ppo,45,18.0,alpha,front,2.3442158699035645 +karman_re200,ppo,45,18.0,alpha,upper,-4.572616100311279 +karman_re200,ppo,45,18.0,alpha,lower,2.9953901767730713 +karman_re200,ppo,46,18.4,alpha,front,2.2363831996917725 +karman_re200,ppo,46,18.4,alpha,upper,-4.538782119750977 +karman_re200,ppo,46,18.4,alpha,lower,0.8510265946388245 +karman_re200,ppo,47,18.8,alpha,front,1.2223148345947266 +karman_re200,ppo,47,18.8,alpha,upper,-2.4639530181884766 +karman_re200,ppo,47,18.8,alpha,lower,2.018372058868408 +karman_re200,ppo,48,19.2,alpha,front,-1.1381219625473022 +karman_re200,ppo,48,19.2,alpha,upper,1.5072245597839355 +karman_re200,ppo,48,19.2,alpha,lower,6.79281759262085 +karman_re200,ppo,49,19.6,alpha,front,-2.30961012840271 +karman_re200,ppo,49,19.6,alpha,upper,2.29356050491333 +karman_re200,ppo,49,19.6,alpha,lower,8.948265075683594 +karman_re200,ppo,50,20.0,alpha,front,-2.432805299758911 +karman_re200,ppo,50,20.0,alpha,upper,0.4351496696472168 +karman_re200,ppo,50,20.0,alpha,lower,8.166410446166992 +karman_re200,ppo,51,20.4,alpha,front,-2.3063676357269287 +karman_re200,ppo,51,20.4,alpha,upper,-1.4026744365692139 +karman_re200,ppo,51,20.4,alpha,lower,6.618103504180908 +karman_re200,ppo,52,20.8,alpha,front,-1.6564348936080933 +karman_re200,ppo,52,20.8,alpha,upper,-4.587634563446045 +karman_re200,ppo,52,20.8,alpha,lower,3.067389965057373 +karman_re200,ppo,53,21.2,alpha,front,-0.8208730220794678 +karman_re200,ppo,53,21.2,alpha,upper,-6.347416400909424 +karman_re200,ppo,53,21.2,alpha,lower,1.1397957801818848 +karman_re200,ppo,54,21.6,alpha,front,-0.45833683013916016 +karman_re200,ppo,54,21.6,alpha,upper,-5.063780307769775 +karman_re200,ppo,54,21.6,alpha,lower,1.607569694519043 +karman_re200,ppo,55,22.0,alpha,front,0.3528883457183838 +karman_re200,ppo,55,22.0,alpha,upper,-5.016493797302246 +karman_re200,ppo,55,22.0,alpha,lower,0.41820141673088074 +karman_re200,ppo,56,22.4,alpha,front,2.1441142559051514 +karman_re200,ppo,56,22.4,alpha,upper,-6.891294956207275 +karman_re200,ppo,56,22.4,alpha,lower,-2.979578971862793 +karman_re200,ppo,57,22.8,alpha,front,3.2697694301605225 +karman_re200,ppo,57,22.8,alpha,upper,-7.458701133728027 +karman_re200,ppo,57,22.8,alpha,lower,-3.8139522075653076 +karman_re200,ppo,58,23.2,alpha,front,3.3837027549743652 +karman_re200,ppo,58,23.2,alpha,upper,-6.008718967437744 +karman_re200,ppo,58,23.2,alpha,lower,-0.9597978591918945 +karman_re200,ppo,59,23.6,alpha,front,2.983255624771118 +karman_re200,ppo,59,23.6,alpha,upper,-4.081622123718262 +karman_re200,ppo,59,23.6,alpha,lower,4.134400367736816 +karman_re200,ppo,60,24.0,alpha,front,2.535431385040283 +karman_re200,ppo,60,24.0,alpha,upper,-3.9442811012268066 +karman_re200,ppo,60,24.0,alpha,lower,5.872053146362305 +karman_re200,ppo,61,24.4,alpha,front,2.733664035797119 +karman_re200,ppo,61,24.4,alpha,upper,-5.37456750869751 +karman_re200,ppo,61,24.4,alpha,lower,2.295668601989746 +karman_re200,ppo,62,24.8,alpha,front,2.637021541595459 +karman_re200,ppo,62,24.8,alpha,upper,-4.9575910568237305 +karman_re200,ppo,62,24.8,alpha,lower,0.3491225242614746 +karman_re200,ppo,63,25.2,alpha,front,0.6250584721565247 +karman_re200,ppo,63,25.2,alpha,upper,-0.8623387813568115 +karman_re200,ppo,63,25.2,alpha,lower,4.213698863983154 +karman_re200,ppo,64,25.6,alpha,front,-1.6803532838821411 +karman_re200,ppo,64,25.6,alpha,upper,2.6631946563720703 +karman_re200,ppo,64,25.6,alpha,lower,9.18140983581543 +karman_re200,ppo,65,26.0,alpha,front,-2.3999440670013428 +karman_re200,ppo,65,26.0,alpha,upper,2.030003547668457 +karman_re200,ppo,65,26.0,alpha,lower,9.72780990600586 +karman_re200,ppo,66,26.4,alpha,front,-2.5723767280578613 +karman_re200,ppo,66,26.4,alpha,upper,0.23421527445316315 +karman_re200,ppo,66,26.4,alpha,lower,8.841802597045898 +karman_re200,ppo,67,26.8,alpha,front,-2.4563310146331787 +karman_re200,ppo,67,26.8,alpha,upper,-2.062518358230591 +karman_re200,ppo,67,26.8,alpha,lower,6.456820964813232 +karman_re200,ppo,68,27.2,alpha,front,-1.588883876800537 +karman_re200,ppo,68,27.2,alpha,upper,-5.814050674438477 +karman_re200,ppo,68,27.2,alpha,lower,2.127040386199951 +karman_re200,ppo,69,27.6,alpha,front,-1.0306967496871948 +karman_re200,ppo,69,27.6,alpha,upper,-5.859549522399902 +karman_re200,ppo,69,27.6,alpha,lower,2.2612009048461914 +karman_re200,ppo,70,28.0,alpha,front,-0.5214755535125732 +karman_re200,ppo,70,28.0,alpha,upper,-4.519156455993652 +karman_re200,ppo,70,28.0,alpha,lower,2.085028648376465 +karman_re200,ppo,71,28.4,alpha,front,1.7773414850234985 +karman_re200,ppo,71,28.4,alpha,upper,-7.183185577392578 +karman_re200,ppo,71,28.4,alpha,lower,-2.6918458938598633 +karman_re200,ppo,72,28.8,alpha,front,3.3455116748809814 +karman_re200,ppo,72,28.8,alpha,upper,-8.41006088256836 +karman_re200,ppo,72,28.8,alpha,lower,-4.0 +karman_re200,ppo,73,29.2,alpha,front,3.7352969646453857 +karman_re200,ppo,73,29.2,alpha,upper,-7.637403964996338 +karman_re200,ppo,73,29.2,alpha,lower,-3.9298624992370605 +karman_re200,ppo,74,29.6,alpha,front,3.209918737411499 +karman_re200,ppo,74,29.6,alpha,upper,-5.9302592277526855 +karman_re200,ppo,74,29.6,alpha,lower,0.5439291000366211 +karman_re200,ppo,75,30.0,alpha,front,2.7151682376861572 +karman_re200,ppo,75,30.0,alpha,upper,-4.484391689300537 +karman_re200,ppo,75,30.0,alpha,lower,5.874200344085693 +karman_re200,ppo,76,30.4,alpha,front,2.7073497772216797 +karman_re200,ppo,76,30.4,alpha,upper,-5.408656120300293 +karman_re200,ppo,76,30.4,alpha,lower,3.640784502029419 +karman_re200,ppo,77,30.8,alpha,front,3.1261613368988037 +karman_re200,ppo,77,30.8,alpha,upper,-6.095123291015625 +karman_re200,ppo,77,30.8,alpha,lower,0.07310819625854492 +karman_re200,ppo,78,31.2,alpha,front,2.097083568572998 +karman_re200,ppo,78,31.2,alpha,upper,-3.1684060096740723 +karman_re200,ppo,78,31.2,alpha,lower,1.6473275423049927 +karman_re200,ppo,79,31.6,alpha,front,-0.8566150665283203 +karman_re200,ppo,79,31.6,alpha,upper,2.0955519676208496 +karman_re200,ppo,79,31.6,alpha,lower,8.381519317626953 +karman_re200,ppo,80,32.0,alpha,front,-2.4507217407226562 +karman_re200,ppo,80,32.0,alpha,upper,3.2785933017730713 +karman_re200,ppo,80,32.0,alpha,lower,11.223129272460938 +karman_re200,ppo,81,32.4,alpha,front,-2.7978951930999756 +karman_re200,ppo,81,32.4,alpha,upper,1.3622188568115234 +karman_re200,ppo,81,32.4,alpha,lower,10.259937286376953 +karman_re200,ppo,82,32.8,alpha,front,-3.08646559715271 +karman_re200,ppo,82,32.8,alpha,upper,0.3763723373413086 +karman_re200,ppo,82,32.8,alpha,lower,9.46911334991455 +karman_re200,ppo,83,33.2,alpha,front,-2.531464099884033 +karman_re200,ppo,83,33.2,alpha,upper,-3.3802151679992676 +karman_re200,ppo,83,33.2,alpha,lower,5.24588680267334 +karman_re200,ppo,84,33.6,alpha,front,-1.5425387620925903 +karman_re200,ppo,84,33.6,alpha,upper,-6.033371925354004 +karman_re200,ppo,84,33.6,alpha,lower,2.3666980266571045 +karman_re200,ppo,85,34.0,alpha,front,-1.06093430519104 +karman_re200,ppo,85,34.0,alpha,upper,-4.50738525390625 +karman_re200,ppo,85,34.0,alpha,lower,2.9343175888061523 +karman_re200,ppo,86,34.4,alpha,front,1.0708645582199097 +karman_re200,ppo,86,34.4,alpha,upper,-6.4613871574401855 +karman_re200,ppo,86,34.4,alpha,lower,-1.17909574508667 +karman_re200,ppo,87,34.8,alpha,front,2.994231939315796 +karman_re200,ppo,87,34.8,alpha,upper,-8.675407409667969 +karman_re200,ppo,87,34.8,alpha,lower,-4.0 +karman_re200,ppo,88,35.2,alpha,front,3.5973799228668213 +karman_re200,ppo,88,35.2,alpha,upper,-8.287656784057617 +karman_re200,ppo,88,35.2,alpha,lower,-4.0 +karman_re200,ppo,89,35.6,alpha,front,3.609811305999756 +karman_re200,ppo,89,35.6,alpha,upper,-7.379256248474121 +karman_re200,ppo,89,35.6,alpha,lower,-2.7156429290771484 +karman_re200,ppo,90,36.0,alpha,front,2.971911907196045 +karman_re200,ppo,90,36.0,alpha,upper,-5.1884002685546875 +karman_re200,ppo,90,36.0,alpha,lower,3.1307318210601807 +karman_re200,ppo,91,36.4,alpha,front,2.4795119762420654 +karman_re200,ppo,91,36.4,alpha,upper,-4.783987522125244 +karman_re200,ppo,91,36.4,alpha,lower,5.621772766113281 +karman_re200,ppo,92,36.8,alpha,front,2.914278745651245 +karman_re200,ppo,92,36.8,alpha,upper,-6.12315559387207 +karman_re200,ppo,92,36.8,alpha,lower,1.378333330154419 +karman_re200,ppo,93,37.2,alpha,front,3.392610788345337 +karman_re200,ppo,93,37.2,alpha,upper,-5.346921920776367 +karman_re200,ppo,93,37.2,alpha,lower,-1.3594841957092285 +karman_re200,ppo,94,37.6,alpha,front,1.4036705493927002 +karman_re200,ppo,94,37.6,alpha,upper,-1.0754199028015137 +karman_re200,ppo,94,37.6,alpha,lower,3.9559152126312256 +karman_re200,ppo,95,38.0,alpha,front,-2.0129804611206055 +karman_re200,ppo,95,38.0,alpha,upper,3.795830249786377 +karman_re200,ppo,95,38.0,alpha,lower,12.0 +karman_re200,ppo,96,38.4,alpha,front,-2.8257646560668945 +karman_re200,ppo,96,38.4,alpha,upper,2.9168624877929688 +karman_re200,ppo,96,38.4,alpha,lower,12.0 +karman_re200,ppo,97,38.8,alpha,front,-3.0254058837890625 +karman_re200,ppo,97,38.8,alpha,upper,0.9652203917503357 +karman_re200,ppo,97,38.8,alpha,lower,10.630073547363281 +karman_re200,ppo,98,39.2,alpha,front,-3.183126211166382 +karman_re200,ppo,98,39.2,alpha,upper,-0.13055706024169922 +karman_re200,ppo,98,39.2,alpha,lower,8.93212890625 +karman_re200,ppo,99,39.6,alpha,front,-2.3251395225524902 +karman_re200,ppo,99,39.6,alpha,upper,-4.164270401000977 +karman_re200,ppo,99,39.6,alpha,lower,4.1458353996276855 +karman_re200,ppo,100,40.0,alpha,front,-1.8259961605072021 +karman_re200,ppo,100,40.0,alpha,upper,-4.37882137298584 +karman_re200,ppo,100,40.0,alpha,lower,3.8875222206115723 +karman_re200,ppo,101,40.4,alpha,front,-0.5160751342773438 +karman_re200,ppo,101,40.4,alpha,upper,-4.702108383178711 +karman_re200,ppo,101,40.4,alpha,lower,1.5090570449829102 +karman_re200,ppo,102,40.8,alpha,front,2.0111613273620605 +karman_re200,ppo,102,40.8,alpha,upper,-7.568153381347656 +karman_re200,ppo,102,40.8,alpha,lower,-3.1105613708496094 +karman_re200,ppo,103,41.2,alpha,front,3.278820276260376 +karman_re200,ppo,103,41.2,alpha,upper,-8.707999229431152 +karman_re200,ppo,103,41.2,alpha,lower,-4.0 +karman_re200,ppo,104,41.6,alpha,front,3.6789162158966064 +karman_re200,ppo,104,41.6,alpha,upper,-8.24531364440918 +karman_re200,ppo,104,41.6,alpha,lower,-4.0 +karman_re200,ppo,105,42.0,alpha,front,3.171349048614502 +karman_re200,ppo,105,42.0,alpha,upper,-6.7194647789001465 +karman_re200,ppo,105,42.0,alpha,lower,-1.0555329322814941 +karman_re200,ppo,106,42.4,alpha,front,2.6203694343566895 +karman_re200,ppo,106,42.4,alpha,upper,-4.646454334259033 +karman_re200,ppo,106,42.4,alpha,lower,5.534146785736084 +karman_re200,ppo,107,42.8,alpha,front,2.6354620456695557 +karman_re200,ppo,107,42.8,alpha,upper,-5.1829328536987305 +karman_re200,ppo,107,42.8,alpha,lower,4.255780220031738 +karman_re200,ppo,108,43.2,alpha,front,3.1873483657836914 +karman_re200,ppo,108,43.2,alpha,upper,-6.37326192855835 +karman_re200,ppo,108,43.2,alpha,lower,0.1991891860961914 +karman_re200,ppo,109,43.6,alpha,front,3.3790340423583984 +karman_re200,ppo,109,43.6,alpha,upper,-5.135754585266113 +karman_re200,ppo,109,43.6,alpha,lower,-1.0285401344299316 +karman_re200,ppo,110,44.0,alpha,front,0.6888652443885803 +karman_re200,ppo,110,44.0,alpha,upper,0.10603905469179153 +karman_re200,ppo,110,44.0,alpha,lower,5.970192909240723 +karman_re200,ppo,111,44.4,alpha,front,-2.4715089797973633 +karman_re200,ppo,111,44.4,alpha,upper,4.0 +karman_re200,ppo,111,44.4,alpha,lower,12.0 +karman_re200,ppo,112,44.8,alpha,front,-3.1181352138519287 +karman_re200,ppo,112,44.8,alpha,upper,2.543682098388672 +karman_re200,ppo,112,44.8,alpha,lower,11.909772872924805 +karman_re200,ppo,113,45.2,alpha,front,-3.2601959705352783 +karman_re200,ppo,113,45.2,alpha,upper,1.141157627105713 +karman_re200,ppo,113,45.2,alpha,lower,11.044239044189453 +karman_re200,ppo,114,45.6,alpha,front,-3.2471516132354736 +karman_re200,ppo,114,45.6,alpha,upper,-0.35262131690979004 +karman_re200,ppo,114,45.6,alpha,lower,8.863020896911621 +karman_re200,ppo,115,46.0,alpha,front,-2.301624298095703 +karman_re200,ppo,115,46.0,alpha,upper,-4.504244327545166 +karman_re200,ppo,115,46.0,alpha,lower,3.798004627227783 +karman_re200,ppo,116,46.4,alpha,front,-2.0221822261810303 +karman_re200,ppo,116,46.4,alpha,upper,-3.9988369941711426 +karman_re200,ppo,116,46.4,alpha,lower,4.148578643798828 +karman_re200,ppo,117,46.8,alpha,front,-0.6912481188774109 +karman_re200,ppo,117,46.8,alpha,upper,-4.341096878051758 +karman_re200,ppo,117,46.8,alpha,lower,1.8060355186462402 +karman_re200,ppo,118,47.2,alpha,front,1.9474413394927979 +karman_re200,ppo,118,47.2,alpha,upper,-7.538736820220947 +karman_re200,ppo,118,47.2,alpha,lower,-3.252718925476074 +karman_re200,ppo,119,47.6,alpha,front,3.4673376083374023 +karman_re200,ppo,119,47.6,alpha,upper,-8.764070510864258 +karman_re200,ppo,119,47.6,alpha,lower,-4.0 +karman_re200,ppo,120,48.0,alpha,front,3.8230862617492676 +karman_re200,ppo,120,48.0,alpha,upper,-8.356281280517578 +karman_re200,ppo,120,48.0,alpha,lower,-4.0 +karman_re200,ppo,121,48.4,alpha,front,3.280749559402466 +karman_re200,ppo,121,48.4,alpha,upper,-6.888320446014404 +karman_re200,ppo,121,48.4,alpha,lower,-1.2458276748657227 +karman_re200,ppo,122,48.8,alpha,front,2.6994194984436035 +karman_re200,ppo,122,48.8,alpha,upper,-4.5942301750183105 +karman_re200,ppo,122,48.8,alpha,lower,5.65671443939209 +karman_re200,ppo,123,49.2,alpha,front,2.4311559200286865 +karman_re200,ppo,123,49.2,alpha,upper,-4.682309150695801 +karman_re200,ppo,123,49.2,alpha,lower,5.417867183685303 +karman_re200,ppo,124,49.6,alpha,front,2.5852508544921875 +karman_re200,ppo,124,49.6,alpha,upper,-5.53439998626709 +karman_re200,ppo,124,49.6,alpha,lower,2.158015727996826 +karman_re200,ppo,125,50.0,alpha,front,2.0593206882476807 +karman_re200,ppo,125,50.0,alpha,upper,-3.4947988986968994 +karman_re200,ppo,125,50.0,alpha,lower,1.5685067176818848 +karman_re200,ppo,126,50.4,alpha,front,0.08215098083019257 +karman_re200,ppo,126,50.4,alpha,upper,0.4357624053955078 +karman_re200,ppo,126,50.4,alpha,lower,6.05886697769165 +karman_re200,ppo,127,50.8,alpha,front,-1.711607813835144 +karman_re200,ppo,127,50.8,alpha,upper,2.186978816986084 +karman_re200,ppo,127,50.8,alpha,lower,9.324653625488281 +karman_re200,ppo,128,51.2,alpha,front,-2.2709286212921143 +karman_re200,ppo,128,51.2,alpha,upper,1.1198234558105469 +karman_re200,ppo,128,51.2,alpha,lower,8.753280639648438 +karman_re200,ppo,129,51.6,alpha,front,-2.6938343048095703 +karman_re200,ppo,129,51.6,alpha,upper,0.06829357147216797 +karman_re200,ppo,129,51.6,alpha,lower,8.332042694091797 +karman_re200,ppo,130,52.0,alpha,front,-2.514054298400879 +karman_re200,ppo,130,52.0,alpha,upper,-2.836853504180908 +karman_re200,ppo,130,52.0,alpha,lower,5.8036627769470215 +karman_re200,ppo,131,52.4,alpha,front,-1.692814826965332 +karman_re200,ppo,131,52.4,alpha,upper,-6.239538192749023 +karman_re200,ppo,131,52.4,alpha,lower,1.948784351348877 +karman_re200,ppo,132,52.8,alpha,front,-1.5936224460601807 +karman_re200,ppo,132,52.8,alpha,upper,-4.665172100067139 +karman_re200,ppo,132,52.8,alpha,lower,3.3995614051818848 +karman_re200,ppo,133,53.2,alpha,front,-0.21557649970054626 +karman_re200,ppo,133,53.2,alpha,upper,-4.768787860870361 +karman_re200,ppo,133,53.2,alpha,lower,1.4487836360931396 +karman_re200,ppo,134,53.6,alpha,front,2.508941411972046 +karman_re200,ppo,134,53.6,alpha,upper,-8.105122566223145 +karman_re200,ppo,134,53.6,alpha,lower,-4.0 +karman_re200,ppo,135,54.0,alpha,front,3.513852596282959 +karman_re200,ppo,135,54.0,alpha,upper,-8.399259567260742 +karman_re200,ppo,135,54.0,alpha,lower,-4.0 +karman_re200,ppo,136,54.4,alpha,front,3.7384467124938965 +karman_re200,ppo,136,54.4,alpha,upper,-7.892636299133301 +karman_re200,ppo,136,54.4,alpha,lower,-3.8812243938446045 +karman_re200,ppo,137,54.8,alpha,front,3.077918529510498 +karman_re200,ppo,137,54.8,alpha,upper,-6.303674697875977 +karman_re200,ppo,137,54.8,alpha,lower,0.41193291544914246 +karman_re200,ppo,138,55.2,alpha,front,2.49082612991333 +karman_re200,ppo,138,55.2,alpha,upper,-4.667544841766357 +karman_re200,ppo,138,55.2,alpha,lower,6.008111953735352 +karman_re200,ppo,139,55.6,alpha,front,2.4284260272979736 +karman_re200,ppo,139,55.6,alpha,upper,-4.9508771896362305 +karman_re200,ppo,139,55.6,alpha,lower,4.181133270263672 +karman_re200,ppo,140,56.0,alpha,front,2.4637465476989746 +karman_re200,ppo,140,56.0,alpha,upper,-4.5955095291137695 +karman_re200,ppo,140,56.0,alpha,lower,2.0099587440490723 +karman_re200,ppo,141,56.4,alpha,front,1.3843659162521362 +karman_re200,ppo,141,56.4,alpha,upper,-2.12838077545166 +karman_re200,ppo,141,56.4,alpha,lower,3.6708950996398926 +karman_re200,ppo,142,56.8,alpha,front,-0.6844428777694702 +karman_re200,ppo,142,56.8,alpha,upper,1.1371269226074219 +karman_re200,ppo,142,56.8,alpha,lower,7.860665798187256 +karman_re200,ppo,143,57.2,alpha,front,-1.7384345531463623 +karman_re200,ppo,143,57.2,alpha,upper,1.6841381788253784 +karman_re200,ppo,143,57.2,alpha,lower,8.736087799072266 +karman_re200,ppo,144,57.6,alpha,front,-2.176936149597168 +karman_re200,ppo,144,57.6,alpha,upper,1.0641961097717285 +karman_re200,ppo,144,57.6,alpha,lower,8.302438735961914 +karman_re200,ppo,145,58.0,alpha,front,-2.450270414352417 +karman_re200,ppo,145,58.0,alpha,upper,-0.4445834159851074 +karman_re200,ppo,145,58.0,alpha,lower,7.314352035522461 +karman_re200,ppo,146,58.4,alpha,front,-1.977392554283142 +karman_re200,ppo,146,58.4,alpha,upper,-4.177584648132324 +karman_re200,ppo,146,58.4,alpha,lower,3.654855489730835 +karman_re200,ppo,147,58.8,alpha,front,-1.2139472961425781 +karman_re200,ppo,147,58.8,alpha,upper,-6.482146263122559 +karman_re200,ppo,147,58.8,alpha,lower,1.5246977806091309 +karman_re200,ppo,148,59.2,alpha,front,-0.3245154023170471 +karman_re200,ppo,148,59.2,alpha,upper,-5.62366247177124 +karman_re200,ppo,148,59.2,alpha,lower,1.5010576248168945 +karman_re200,ppo,149,59.6,alpha,front,1.6834659576416016 +karman_re200,ppo,149,59.6,alpha,upper,-6.987874984741211 +karman_re200,ppo,149,59.6,alpha,lower,-1.325040340423584 +karman_re200,ppo,150,60.0,alpha,front,2.729066848754883 +karman_re200,ppo,150,60.0,alpha,upper,-7.601921558380127 +karman_re200,ppo,150,60.0,alpha,lower,-3.396583080291748 +karman_re200,ppo,151,60.4,alpha,front,3.3275132179260254 +karman_re200,ppo,151,60.4,alpha,upper,-7.60235071182251 +karman_re200,ppo,151,60.4,alpha,lower,-3.4139392375946045 +karman_re200,ppo,152,60.8,alpha,front,3.0923526287078857 +karman_re200,ppo,152,60.8,alpha,upper,-6.0013628005981445 +karman_re200,ppo,152,60.8,alpha,lower,-0.17012977600097656 +karman_re200,ppo,153,61.2,alpha,front,2.5892672538757324 +karman_re200,ppo,153,61.2,alpha,upper,-4.1071085929870605 +karman_re200,ppo,153,61.2,alpha,lower,5.435680389404297 +karman_re200,ppo,154,61.6,alpha,front,2.561868906021118 +karman_re200,ppo,154,61.6,alpha,upper,-5.110959053039551 +karman_re200,ppo,154,61.6,alpha,lower,4.125558853149414 +karman_re200,ppo,155,62.0,alpha,front,3.2320406436920166 +karman_re200,ppo,155,62.0,alpha,upper,-6.261520862579346 +karman_re200,ppo,155,62.0,alpha,lower,-0.033812522888183594 +karman_re200,ppo,156,62.4,alpha,front,3.2483603954315186 +karman_re200,ppo,156,62.4,alpha,upper,-4.7135396003723145 +karman_re200,ppo,156,62.4,alpha,lower,-0.3711371421813965 +karman_re200,ppo,157,62.8,alpha,front,0.197187602519989 +karman_re200,ppo,157,62.8,alpha,upper,0.7900915145874023 +karman_re200,ppo,157,62.8,alpha,lower,7.028473377227783 +karman_re200,ppo,158,63.2,alpha,front,-2.316580057144165 +karman_re200,ppo,158,63.2,alpha,upper,3.7934787273406982 +karman_re200,ppo,158,63.2,alpha,lower,12.0 +karman_re200,ppo,159,63.6,alpha,front,-2.510986328125 +karman_re200,ppo,159,63.6,alpha,upper,1.9055852890014648 +karman_re200,ppo,159,63.6,alpha,lower,10.61721420288086 +karman_re200,ppo,160,64.0,alpha,front,-2.812150001525879 +karman_re200,ppo,160,64.0,alpha,upper,1.3087067604064941 +karman_re200,ppo,160,64.0,alpha,lower,10.2607421875 +karman_re200,ppo,161,64.4,alpha,front,-2.7589406967163086 +karman_re200,ppo,161,64.4,alpha,upper,-0.8360590934753418 +karman_re200,ppo,161,64.4,alpha,lower,8.004592895507812 +karman_re200,ppo,162,64.8,alpha,front,-1.9139528274536133 +karman_re200,ppo,162,64.8,alpha,upper,-4.3925461769104 +karman_re200,ppo,162,64.8,alpha,lower,3.7006232738494873 +karman_re200,ppo,163,65.2,alpha,front,-1.612863302230835 +karman_re200,ppo,163,65.2,alpha,upper,-4.063756465911865 +karman_re200,ppo,163,65.2,alpha,lower,3.642810106277466 +karman_re200,ppo,164,65.6,alpha,front,-0.8843981623649597 +karman_re200,ppo,164,65.6,alpha,upper,-3.842587471008301 +karman_re200,ppo,164,65.6,alpha,lower,1.9185638427734375 +karman_re200,ppo,165,66.0,alpha,front,1.5796418190002441 +karman_re200,ppo,165,66.0,alpha,upper,-6.928035259246826 +karman_re200,ppo,165,66.0,alpha,lower,-2.572340965270996 +karman_re200,ppo,166,66.4,alpha,front,3.16300106048584 +karman_re200,ppo,166,66.4,alpha,upper,-8.462507247924805 +karman_re200,ppo,166,66.4,alpha,lower,-4.0 +karman_re200,ppo,167,66.8,alpha,front,3.513922691345215 +karman_re200,ppo,167,66.8,alpha,upper,-7.853649139404297 +karman_re200,ppo,167,66.8,alpha,lower,-3.6535654067993164 +karman_re200,ppo,168,67.2,alpha,front,3.2227582931518555 +karman_re200,ppo,168,67.2,alpha,upper,-7.009354591369629 +karman_re200,ppo,168,67.2,alpha,lower,-1.285010814666748 +karman_re200,ppo,169,67.6,alpha,front,2.767399549484253 +karman_re200,ppo,169,67.6,alpha,upper,-4.995208263397217 +karman_re200,ppo,169,67.6,alpha,lower,4.493372440338135 +karman_re200,ppo,170,68.0,alpha,front,2.6277995109558105 +karman_re200,ppo,170,68.0,alpha,upper,-5.202614784240723 +karman_re200,ppo,170,68.0,alpha,lower,4.5937910079956055 +karman_re200,ppo,171,68.4,alpha,front,3.0761361122131348 +karman_re200,ppo,171,68.4,alpha,upper,-6.270176887512207 +karman_re200,ppo,171,68.4,alpha,lower,0.8435931205749512 +karman_re200,ppo,172,68.8,alpha,front,2.4463446140289307 +karman_re200,ppo,172,68.8,alpha,upper,-3.677438259124756 +karman_re200,ppo,172,68.8,alpha,lower,0.9639186859130859 +karman_re200,ppo,173,69.2,alpha,front,-0.2405794858932495 +karman_re200,ppo,173,69.2,alpha,upper,1.250014305114746 +karman_re200,ppo,173,69.2,alpha,lower,7.0220255851745605 +karman_re200,ppo,174,69.6,alpha,front,-2.1489720344543457 +karman_re200,ppo,174,69.6,alpha,upper,3.207397937774658 +karman_re200,ppo,174,69.6,alpha,lower,10.9152193069458 +karman_re200,ppo,175,70.0,alpha,front,-2.571939468383789 +karman_re200,ppo,175,70.0,alpha,upper,1.7178573608398438 +karman_re200,ppo,175,70.0,alpha,lower,9.970672607421875 +karman_re200,ppo,176,70.4,alpha,front,-3.0765702724456787 +karman_re200,ppo,176,70.4,alpha,upper,1.1097841262817383 +karman_re200,ppo,176,70.4,alpha,lower,9.970288276672363 +karman_re200,ppo,177,70.8,alpha,front,-2.9560725688934326 +karman_re200,ppo,177,70.8,alpha,upper,-1.6222889423370361 +karman_re200,ppo,177,70.8,alpha,lower,7.454531669616699 +karman_re200,ppo,178,71.2,alpha,front,-2.0536253452301025 +karman_re200,ppo,178,71.2,alpha,upper,-5.316246032714844 +karman_re200,ppo,178,71.2,alpha,lower,3.182384490966797 +karman_re200,ppo,179,71.6,alpha,front,-2.059211254119873 +karman_re200,ppo,179,71.6,alpha,upper,-3.4927663803100586 +karman_re200,ppo,179,71.6,alpha,lower,4.63304328918457 +karman_re200,ppo,180,72.0,alpha,front,-0.6758983731269836 +karman_re200,ppo,180,72.0,alpha,upper,-4.05833101272583 +karman_re200,ppo,180,72.0,alpha,lower,1.5541768074035645 +karman_re200,ppo,181,72.4,alpha,front,2.0952255725860596 +karman_re200,ppo,181,72.4,alpha,upper,-7.84882116317749 +karman_re200,ppo,181,72.4,alpha,lower,-3.792555809020996 +karman_re200,ppo,182,72.8,alpha,front,3.2385077476501465 +karman_re200,ppo,182,72.8,alpha,upper,-8.702013969421387 +karman_re200,ppo,182,72.8,alpha,lower,-4.0 +karman_re200,ppo,183,73.2,alpha,front,3.5230872631073 +karman_re200,ppo,183,73.2,alpha,upper,-8.19630241394043 +karman_re200,ppo,183,73.2,alpha,lower,-3.929473876953125 +karman_re200,ppo,184,73.6,alpha,front,3.110417127609253 +karman_re200,ppo,184,73.6,alpha,upper,-7.056619167327881 +karman_re200,ppo,184,73.6,alpha,lower,-1.0328803062438965 +karman_re200,ppo,185,74.0,alpha,front,2.63749098777771 +karman_re200,ppo,185,74.0,alpha,upper,-4.913328647613525 +karman_re200,ppo,185,74.0,alpha,lower,5.258770942687988 +karman_re200,ppo,186,74.4,alpha,front,2.668851137161255 +karman_re200,ppo,186,74.4,alpha,upper,-5.280342102050781 +karman_re200,ppo,186,74.4,alpha,lower,4.005637168884277 +karman_re200,ppo,187,74.8,alpha,front,3.1428115367889404 +karman_re200,ppo,187,74.8,alpha,upper,-6.088797569274902 +karman_re200,ppo,187,74.8,alpha,lower,0.4799756705760956 +karman_re200,ppo,188,75.2,alpha,front,2.7233550548553467 +karman_re200,ppo,188,75.2,alpha,upper,-3.9327774047851562 +karman_re200,ppo,188,75.2,alpha,lower,0.865623950958252 +karman_re200,ppo,189,75.6,alpha,front,-0.317874014377594 +karman_re200,ppo,189,75.6,alpha,upper,1.383237361907959 +karman_re200,ppo,189,75.6,alpha,lower,7.732048988342285 +karman_re200,ppo,190,76.0,alpha,front,-2.3042569160461426 +karman_re200,ppo,190,76.0,alpha,upper,3.2774739265441895 +karman_re200,ppo,190,76.0,alpha,lower,11.339506149291992 +karman_re200,ppo,191,76.4,alpha,front,-2.579016923904419 +karman_re200,ppo,191,76.4,alpha,upper,1.4715299606323242 +karman_re200,ppo,191,76.4,alpha,lower,9.930007934570312 +karman_re200,ppo,192,76.8,alpha,front,-3.01941180229187 +karman_re200,ppo,192,76.8,alpha,upper,0.9983963370323181 +karman_re200,ppo,192,76.8,alpha,lower,9.935487747192383 +karman_re200,ppo,193,77.2,alpha,front,-2.834473133087158 +karman_re200,ppo,193,77.2,alpha,upper,-1.8547799587249756 +karman_re200,ppo,193,77.2,alpha,lower,6.953559398651123 +karman_re200,ppo,194,77.6,alpha,front,-1.9372847080230713 +karman_re200,ppo,194,77.6,alpha,upper,-5.417227745056152 +karman_re200,ppo,194,77.6,alpha,lower,2.7722437381744385 +karman_re200,ppo,195,78.0,alpha,front,-1.6032682657241821 +karman_re200,ppo,195,78.0,alpha,upper,-4.069974899291992 +karman_re200,ppo,195,78.0,alpha,lower,3.693572998046875 +karman_re200,ppo,196,78.4,alpha,front,0.6387929320335388 +karman_re200,ppo,196,78.4,alpha,upper,-5.920623779296875 +karman_re200,ppo,196,78.4,alpha,lower,-0.568488597869873 +karman_re200,ppo,197,78.8,alpha,front,2.7463741302490234 +karman_re200,ppo,197,78.8,alpha,upper,-8.321826934814453 +karman_re200,ppo,197,78.8,alpha,lower,-4.0 +karman_re200,ppo,198,79.2,alpha,front,3.2844083309173584 +karman_re200,ppo,198,79.2,alpha,upper,-8.29943561553955 +karman_re200,ppo,198,79.2,alpha,lower,-4.0 +karman_re200,ppo,199,79.6,alpha,front,3.593224287033081 +karman_re200,ppo,199,79.6,alpha,upper,-8.150312423706055 +karman_re200,ppo,199,79.6,alpha,lower,-3.6440041065216064 +karman_re200,ppo,0,0.0,omega,front,-0.0062280152924358845 +karman_re200,ppo,0,0.0,omega,upper,-0.0007173871854320168 +karman_re200,ppo,0,0.0,omega,lower,0.051593389362096786 +karman_re200,ppo,1,0.4,omega,front,-0.015031547285616398 +karman_re200,ppo,1,0.4,omega,upper,-0.0009985946817323565 +karman_re200,ppo,1,0.4,omega,lower,0.05192103609442711 +karman_re200,ppo,2,0.8,omega,front,-0.018332595005631447 +karman_re200,ppo,2,0.8,omega,upper,-0.012449073605239391 +karman_re200,ppo,2,0.8,omega,lower,0.04885130003094673 +karman_re200,ppo,3,1.2,omega,front,-0.01739044487476349 +karman_re200,ppo,3,1.2,omega,upper,-0.031774554401636124 +karman_re200,ppo,3,1.2,omega,lower,0.04844319075345993 +karman_re200,ppo,4,1.6,omega,front,-0.014200858771800995 +karman_re200,ppo,4,1.6,omega,upper,-0.046419572085142136 +karman_re200,ppo,4,1.6,omega,lower,0.03179968520998955 +karman_re200,ppo,5,2.0,omega,front,-0.008761156350374222 +karman_re200,ppo,5,2.0,omega,upper,-0.05264764279127121 +karman_re200,ppo,5,2.0,omega,lower,0.026504112407565117 +karman_re200,ppo,6,2.4,omega,front,-0.00467833923175931 +karman_re200,ppo,6,2.4,omega,upper,-0.044938042759895325 +karman_re200,ppo,6,2.4,omega,lower,0.022753342986106873 +karman_re200,ppo,7,2.8,omega,front,0.0033422422129660845 +karman_re200,ppo,7,2.8,omega,upper,-0.04798018932342529 +karman_re200,ppo,7,2.8,omega,lower,0.010930614545941353 +karman_re200,ppo,8,3.2,omega,front,0.014720047824084759 +karman_re200,ppo,8,3.2,omega,upper,-0.0548739992082119 +karman_re200,ppo,8,3.2,omega,lower,-0.0017785310046747327 +karman_re200,ppo,9,3.6,omega,front,0.02466645836830139 +karman_re200,ppo,9,3.6,omega,upper,-0.06272413581609726 +karman_re200,ppo,9,3.6,omega,lower,-0.010200557298958302 +karman_re200,ppo,10,4.0,omega,front,0.0286216102540493 +karman_re200,ppo,10,4.0,omega,upper,-0.06209732964634895 +karman_re200,ppo,10,4.0,omega,lower,-0.003963909111917019 +karman_re200,ppo,11,4.4,omega,front,0.026274632662534714 +karman_re200,ppo,11,4.4,omega,upper,-0.04712515324354172 +karman_re200,ppo,11,4.4,omega,lower,0.02355964668095112 +karman_re200,ppo,12,4.8,omega,front,0.02211173251271248 +karman_re200,ppo,12,4.8,omega,upper,-0.03374278545379639 +karman_re200,ppo,12,4.8,omega,lower,0.05520130693912506 +karman_re200,ppo,13,5.2,omega,front,0.019968701526522636 +karman_re200,ppo,13,5.2,omega,upper,-0.0370374470949173 +karman_re200,ppo,13,5.2,omega,lower,0.04383648931980133 +karman_re200,ppo,14,5.6,omega,front,0.017197351902723312 +karman_re200,ppo,14,5.6,omega,upper,-0.033559225499629974 +karman_re200,ppo,14,5.6,omega,lower,0.026264185085892677 +karman_re200,ppo,15,6.0,omega,front,0.010772496461868286 +karman_re200,ppo,15,6.0,omega,upper,-0.02409902773797512 +karman_re200,ppo,15,6.0,omega,lower,0.0232070442289114 +karman_re200,ppo,16,6.4,omega,front,-0.001052916282787919 +karman_re200,ppo,16,6.4,omega,upper,-0.00678658252581954 +karman_re200,ppo,16,6.4,omega,lower,0.039426226168870926 +karman_re200,ppo,17,6.8,omega,front,-0.011631171219050884 +karman_re200,ppo,17,6.8,omega,upper,0.004118137061595917 +karman_re200,ppo,17,6.8,omega,lower,0.05736422538757324 +karman_re200,ppo,18,7.2,omega,front,-0.017554987221956253 +karman_re200,ppo,18,7.2,omega,upper,0.001854534144513309 +karman_re200,ppo,18,7.2,omega,lower,0.06415607780218124 +karman_re200,ppo,19,7.6,omega,front,-0.018385078758001328 +karman_re200,ppo,19,7.6,omega,upper,-0.012842354364693165 +karman_re200,ppo,19,7.6,omega,lower,0.05835360288619995 +karman_re200,ppo,20,8.0,omega,front,-0.014813798479735851 +karman_re200,ppo,20,8.0,omega,upper,-0.03453908488154411 +karman_re200,ppo,20,8.0,omega,lower,0.038582783192396164 +karman_re200,ppo,21,8.4,omega,front,-0.009785566478967667 +karman_re200,ppo,21,8.4,omega,upper,-0.04881351441144943 +karman_re200,ppo,21,8.4,omega,lower,0.01879972405731678 +karman_re200,ppo,22,8.8,omega,front,-0.004497959744185209 +karman_re200,ppo,22,8.8,omega,upper,-0.0533016100525856 +karman_re200,ppo,22,8.8,omega,lower,0.012013215571641922 +karman_re200,ppo,23,9.2,omega,front,0.0019203473348170519 +karman_re200,ppo,23,9.2,omega,upper,-0.050777554512023926 +karman_re200,ppo,23,9.2,omega,lower,0.00900068785995245 +karman_re200,ppo,24,9.6,omega,front,0.012327694334089756 +karman_re200,ppo,24,9.6,omega,upper,-0.056623704731464386 +karman_re200,ppo,24,9.6,omega,lower,-0.0021919868886470795 +karman_re200,ppo,25,10.0,omega,front,0.02430070750415325 +karman_re200,ppo,25,10.0,omega,upper,-0.06624511629343033 +karman_re200,ppo,25,10.0,omega,lower,-0.015790142118930817 +karman_re200,ppo,26,10.4,omega,front,0.030221372842788696 +karman_re200,ppo,26,10.4,omega,upper,-0.06512508541345596 +karman_re200,ppo,26,10.4,omega,lower,-0.011228847317397594 +karman_re200,ppo,27,10.8,omega,front,0.029367545619606972 +karman_re200,ppo,27,10.8,omega,upper,-0.048878610134124756 +karman_re200,ppo,27,10.8,omega,lower,0.0172689501196146 +karman_re200,ppo,28,11.2,omega,front,0.02634439431130886 +karman_re200,ppo,28,11.2,omega,upper,-0.034506164491176605 +karman_re200,ppo,28,11.2,omega,lower,0.04804506152868271 +karman_re200,ppo,29,11.6,omega,front,0.024896323680877686 +karman_re200,ppo,29,11.6,omega,upper,-0.04033602029085159 +karman_re200,ppo,29,11.6,omega,lower,0.03915010765194893 +karman_re200,ppo,30,12.0,omega,front,0.023710398003458977 +karman_re200,ppo,30,12.0,omega,upper,-0.04205700010061264 +karman_re200,ppo,30,12.0,omega,lower,0.02144402451813221 +karman_re200,ppo,31,12.4,omega,front,0.012933554127812386 +karman_re200,ppo,31,12.4,omega,upper,-0.0262411180883646 +karman_re200,ppo,31,12.4,omega,lower,0.027080263942480087 +karman_re200,ppo,32,12.8,omega,front,-0.009009664878249168 +karman_re200,ppo,32,12.8,omega,upper,0.008364276960492134 +karman_re200,ppo,32,12.8,omega,lower,0.06313188374042511 +karman_re200,ppo,33,13.2,omega,front,-0.017431342974305153 +karman_re200,ppo,33,13.2,omega,upper,0.01405489444732666 +karman_re200,ppo,33,13.2,omega,lower,0.07562210410833359 +karman_re200,ppo,34,13.6,omega,front,-0.018774814903736115 +karman_re200,ppo,34,13.6,omega,upper,0.0007783508044667542 +karman_re200,ppo,34,13.6,omega,lower,0.07212472707033157 +karman_re200,ppo,35,14.0,omega,front,-0.01872638799250126 +karman_re200,ppo,35,14.0,omega,upper,-0.014265136793255806 +karman_re200,ppo,35,14.0,omega,lower,0.06327376514673233 +karman_re200,ppo,36,14.4,omega,front,-0.013749603182077408 +karman_re200,ppo,36,14.4,omega,upper,-0.04183617979288101 +karman_re200,ppo,36,14.4,omega,lower,0.03355393931269646 +karman_re200,ppo,37,14.8,omega,front,-0.0062500229105353355 +karman_re200,ppo,37,14.8,omega,upper,-0.06245037540793419 +karman_re200,ppo,37,14.8,omega,lower,0.009608745574951172 +karman_re200,ppo,38,15.2,omega,front,-0.0020758656319230795 +karman_re200,ppo,38,15.2,omega,upper,-0.057242341339588165 +karman_re200,ppo,38,15.2,omega,lower,0.01075788028538227 +karman_re200,ppo,39,15.6,omega,front,0.0023346836678683758 +karman_re200,ppo,39,15.6,omega,upper,-0.051482152193784714 +karman_re200,ppo,39,15.6,omega,lower,0.00867542251944542 +karman_re200,ppo,40,16.0,omega,front,0.012232977896928787 +karman_re200,ppo,40,16.0,omega,upper,-0.05877799540758133 +karman_re200,ppo,40,16.0,omega,lower,-0.010363473556935787 +karman_re200,ppo,41,16.4,omega,front,0.024902276694774628 +karman_re200,ppo,41,16.4,omega,upper,-0.06763366609811783 +karman_re200,ppo,41,16.4,omega,lower,-0.02499680407345295 +karman_re200,ppo,42,16.8,omega,front,0.02982645481824875 +karman_re200,ppo,42,16.8,omega,upper,-0.05911075323820114 +karman_re200,ppo,42,16.8,omega,lower,-0.009002719074487686 +karman_re200,ppo,43,17.2,omega,front,0.027528872713446617 +karman_re200,ppo,43,17.2,omega,upper,-0.039041705429553986 +karman_re200,ppo,43,17.2,omega,lower,0.032494354993104935 +karman_re200,ppo,44,17.6,omega,front,0.022764505818486214 +karman_re200,ppo,44,17.6,omega,upper,-0.030767301097512245 +karman_re200,ppo,44,17.6,omega,lower,0.05670372024178505 +karman_re200,ppo,45,18.0,omega,front,0.023442158475518227 +karman_re200,ppo,45,18.0,omega,upper,-0.04572616145014763 +karman_re200,ppo,45,18.0,omega,lower,0.02995390072464943 +karman_re200,ppo,46,18.4,omega,front,0.022363832220435143 +karman_re200,ppo,46,18.4,omega,upper,-0.04538781940937042 +karman_re200,ppo,46,18.4,omega,lower,0.008510265499353409 +karman_re200,ppo,47,18.8,omega,front,0.01222314778715372 +karman_re200,ppo,47,18.8,omega,upper,-0.02463953010737896 +karman_re200,ppo,47,18.8,omega,lower,0.02018371969461441 +karman_re200,ppo,48,19.2,omega,front,-0.011381219141185284 +karman_re200,ppo,48,19.2,omega,upper,0.01507224515080452 +karman_re200,ppo,48,19.2,omega,lower,0.06792817264795303 +karman_re200,ppo,49,19.6,omega,front,-0.023096101358532906 +karman_re200,ppo,49,19.6,omega,upper,0.02293560467660427 +karman_re200,ppo,49,19.6,omega,lower,0.08948265016078949 +karman_re200,ppo,50,20.0,omega,front,-0.02432805299758911 +karman_re200,ppo,50,20.0,omega,upper,0.004351496696472168 +karman_re200,ppo,50,20.0,omega,lower,0.08166410028934479 +karman_re200,ppo,51,20.4,omega,front,-0.023063676431775093 +karman_re200,ppo,51,20.4,omega,upper,-0.014026744291186333 +karman_re200,ppo,51,20.4,omega,lower,0.06618103384971619 +karman_re200,ppo,52,20.8,omega,front,-0.016564348712563515 +karman_re200,ppo,52,20.8,omega,upper,-0.04587634280323982 +karman_re200,ppo,52,20.8,omega,lower,0.03067389875650406 +karman_re200,ppo,53,21.2,omega,front,-0.00820873025804758 +karman_re200,ppo,53,21.2,omega,upper,-0.06347416341304779 +karman_re200,ppo,53,21.2,omega,lower,0.011397957801818848 +karman_re200,ppo,54,21.6,omega,front,-0.004583368077874184 +karman_re200,ppo,54,21.6,omega,upper,-0.05063780024647713 +karman_re200,ppo,54,21.6,omega,lower,0.016075696796178818 +karman_re200,ppo,55,22.0,omega,front,0.003528883447870612 +karman_re200,ppo,55,22.0,omega,upper,-0.05016493797302246 +karman_re200,ppo,55,22.0,omega,lower,0.004182014148682356 +karman_re200,ppo,56,22.4,omega,front,0.02144114300608635 +karman_re200,ppo,56,22.4,omega,upper,-0.06891294568777084 +karman_re200,ppo,56,22.4,omega,lower,-0.02979578822851181 +karman_re200,ppo,57,22.8,omega,front,0.03269769251346588 +karman_re200,ppo,57,22.8,omega,upper,-0.07458700984716415 +karman_re200,ppo,57,22.8,omega,lower,-0.038139522075653076 +karman_re200,ppo,58,23.2,omega,front,0.033837027847766876 +karman_re200,ppo,58,23.2,omega,upper,-0.060087189078330994 +karman_re200,ppo,58,23.2,omega,lower,-0.009597978554666042 +karman_re200,ppo,59,23.6,omega,front,0.02983255498111248 +karman_re200,ppo,59,23.6,omega,upper,-0.04081622138619423 +karman_re200,ppo,59,23.6,omega,lower,0.04134400188922882 +karman_re200,ppo,60,24.0,omega,front,0.025354312732815742 +karman_re200,ppo,60,24.0,omega,upper,-0.03944281116127968 +karman_re200,ppo,60,24.0,omega,lower,0.058720529079437256 +karman_re200,ppo,61,24.4,omega,front,0.027336640283465385 +karman_re200,ppo,61,24.4,omega,upper,-0.05374567210674286 +karman_re200,ppo,61,24.4,omega,lower,0.022956686094403267 +karman_re200,ppo,62,24.8,omega,front,0.0263702142983675 +karman_re200,ppo,62,24.8,omega,upper,-0.04957590997219086 +karman_re200,ppo,62,24.8,omega,lower,0.0034912251867353916 +karman_re200,ppo,63,25.2,omega,front,0.006250584498047829 +karman_re200,ppo,63,25.2,omega,upper,-0.008623387664556503 +karman_re200,ppo,63,25.2,omega,lower,0.042136989533901215 +karman_re200,ppo,64,25.6,omega,front,-0.01680353283882141 +karman_re200,ppo,64,25.6,omega,upper,0.026631945744156837 +karman_re200,ppo,64,25.6,omega,lower,0.09181409329175949 +karman_re200,ppo,65,26.0,omega,front,-0.023999439552426338 +karman_re200,ppo,65,26.0,omega,upper,0.020300034433603287 +karman_re200,ppo,65,26.0,omega,lower,0.09727809578180313 +karman_re200,ppo,66,26.4,omega,front,-0.025723766535520554 +karman_re200,ppo,66,26.4,omega,upper,0.0023421526420861483 +karman_re200,ppo,66,26.4,omega,lower,0.08841802179813385 +karman_re200,ppo,67,26.8,omega,front,-0.02456330880522728 +karman_re200,ppo,67,26.8,omega,upper,-0.02062518335878849 +karman_re200,ppo,67,26.8,omega,lower,0.06456820666790009 +karman_re200,ppo,68,27.2,omega,front,-0.015888838097453117 +karman_re200,ppo,68,27.2,omega,upper,-0.058140505105257034 +karman_re200,ppo,68,27.2,omega,lower,0.021270403638482094 +karman_re200,ppo,69,27.6,omega,front,-0.010306967422366142 +karman_re200,ppo,69,27.6,omega,upper,-0.05859549343585968 +karman_re200,ppo,69,27.6,omega,lower,0.022612009197473526 +karman_re200,ppo,70,28.0,omega,front,-0.0052147554233670235 +karman_re200,ppo,70,28.0,omega,upper,-0.04519156366586685 +karman_re200,ppo,70,28.0,omega,lower,0.0208502858877182 +karman_re200,ppo,71,28.4,omega,front,0.01777341403067112 +karman_re200,ppo,71,28.4,omega,upper,-0.0718318521976471 +karman_re200,ppo,71,28.4,omega,lower,-0.026918457821011543 +karman_re200,ppo,72,28.8,omega,front,0.03345511481165886 +karman_re200,ppo,72,28.8,omega,upper,-0.08410060405731201 +karman_re200,ppo,72,28.8,omega,lower,-0.03999999910593033 +karman_re200,ppo,73,29.2,omega,front,0.037352968007326126 +karman_re200,ppo,73,29.2,omega,upper,-0.07637403905391693 +karman_re200,ppo,73,29.2,omega,lower,-0.03929862380027771 +karman_re200,ppo,74,29.6,omega,front,0.03209918737411499 +karman_re200,ppo,74,29.6,omega,upper,-0.059302590787410736 +karman_re200,ppo,74,29.6,omega,lower,0.005439290776848793 +karman_re200,ppo,75,30.0,omega,front,0.0271516814827919 +karman_re200,ppo,75,30.0,omega,upper,-0.04484391584992409 +karman_re200,ppo,75,30.0,omega,lower,0.05874200165271759 +karman_re200,ppo,76,30.4,omega,front,0.02707349695265293 +karman_re200,ppo,76,30.4,omega,upper,-0.054086558520793915 +karman_re200,ppo,76,30.4,omega,lower,0.036407843232154846 +karman_re200,ppo,77,30.8,omega,front,0.031261611729860306 +karman_re200,ppo,77,30.8,omega,upper,-0.06095123291015625 +karman_re200,ppo,77,30.8,omega,lower,0.000731081934645772 +karman_re200,ppo,78,31.2,omega,front,0.02097083441913128 +karman_re200,ppo,78,31.2,omega,upper,-0.03168405964970589 +karman_re200,ppo,78,31.2,omega,lower,0.016473274677991867 +karman_re200,ppo,79,31.6,omega,front,-0.008566150441765785 +karman_re200,ppo,79,31.6,omega,upper,0.020955519750714302 +karman_re200,ppo,79,31.6,omega,lower,0.08381519466638565 +karman_re200,ppo,80,32.0,omega,front,-0.02450721710920334 +karman_re200,ppo,80,32.0,omega,upper,0.03278593346476555 +karman_re200,ppo,80,32.0,omega,lower,0.1122312918305397 +karman_re200,ppo,81,32.4,omega,front,-0.02797895111143589 +karman_re200,ppo,81,32.4,omega,upper,0.01362218800932169 +karman_re200,ppo,81,32.4,omega,lower,0.1025993674993515 +karman_re200,ppo,82,32.8,omega,front,-0.0308646559715271 +karman_re200,ppo,82,32.8,omega,upper,0.003763723187148571 +karman_re200,ppo,82,32.8,omega,lower,0.09469113498926163 +karman_re200,ppo,83,33.2,omega,front,-0.025314640253782272 +karman_re200,ppo,83,33.2,omega,upper,-0.033802151679992676 +karman_re200,ppo,83,33.2,omega,lower,0.05245886743068695 +karman_re200,ppo,84,33.6,omega,front,-0.01542538683861494 +karman_re200,ppo,84,33.6,omega,upper,-0.06033371761441231 +karman_re200,ppo,84,33.6,omega,lower,0.023666979745030403 +karman_re200,ppo,85,34.0,omega,front,-0.010609342716634274 +karman_re200,ppo,85,34.0,omega,upper,-0.04507385194301605 +karman_re200,ppo,85,34.0,omega,lower,0.029343174770474434 +karman_re200,ppo,86,34.4,omega,front,0.010708644986152649 +karman_re200,ppo,86,34.4,omega,upper,-0.06461387127637863 +karman_re200,ppo,86,34.4,omega,lower,-0.011790957301855087 +karman_re200,ppo,87,34.8,omega,front,0.02994231879711151 +karman_re200,ppo,87,34.8,omega,upper,-0.08675406873226166 +karman_re200,ppo,87,34.8,omega,lower,-0.03999999910593033 +karman_re200,ppo,88,35.2,omega,front,0.03597379848361015 +karman_re200,ppo,88,35.2,omega,upper,-0.08287656307220459 +karman_re200,ppo,88,35.2,omega,lower,-0.03999999910593033 +karman_re200,ppo,89,35.6,omega,front,0.03609811142086983 +karman_re200,ppo,89,35.6,omega,upper,-0.07379256188869476 +karman_re200,ppo,89,35.6,omega,lower,-0.02715642936527729 +karman_re200,ppo,90,36.0,omega,front,0.029719118028879166 +karman_re200,ppo,90,36.0,omega,upper,-0.0518840029835701 +karman_re200,ppo,90,36.0,omega,lower,0.031307317316532135 +karman_re200,ppo,91,36.4,omega,front,0.02479511871933937 +karman_re200,ppo,91,36.4,omega,upper,-0.047839872539043427 +karman_re200,ppo,91,36.4,omega,lower,0.056217726320028305 +karman_re200,ppo,92,36.8,omega,front,0.02914278768002987 +karman_re200,ppo,92,36.8,omega,upper,-0.06123155355453491 +karman_re200,ppo,92,36.8,omega,lower,0.013783332891762257 +karman_re200,ppo,93,37.2,omega,front,0.0339261069893837 +karman_re200,ppo,93,37.2,omega,upper,-0.053469218313694 +karman_re200,ppo,93,37.2,omega,lower,-0.013594841584563255 +karman_re200,ppo,94,37.6,omega,front,0.014036704786121845 +karman_re200,ppo,94,37.6,omega,upper,-0.010754198767244816 +karman_re200,ppo,94,37.6,omega,lower,0.039559151977300644 +karman_re200,ppo,95,38.0,omega,front,-0.02012980356812477 +karman_re200,ppo,95,38.0,omega,upper,0.0379583016037941 +karman_re200,ppo,95,38.0,omega,lower,0.11999999731779099 +karman_re200,ppo,96,38.4,omega,front,-0.028257645666599274 +karman_re200,ppo,96,38.4,omega,upper,0.02916862443089485 +karman_re200,ppo,96,38.4,omega,lower,0.11999999731779099 +karman_re200,ppo,97,38.8,omega,front,-0.0302540585398674 +karman_re200,ppo,97,38.8,omega,upper,0.009652203880250454 +karman_re200,ppo,97,38.8,omega,lower,0.1063007339835167 +karman_re200,ppo,98,39.2,omega,front,-0.03183126077055931 +karman_re200,ppo,98,39.2,omega,upper,-0.0013055705931037664 +karman_re200,ppo,98,39.2,omega,lower,0.08932128548622131 +karman_re200,ppo,99,39.6,omega,front,-0.02325139380991459 +karman_re200,ppo,99,39.6,omega,upper,-0.041642703115940094 +karman_re200,ppo,99,39.6,omega,lower,0.04145835340023041 +karman_re200,ppo,100,40.0,omega,front,-0.018259961158037186 +karman_re200,ppo,100,40.0,omega,upper,-0.04378821328282356 +karman_re200,ppo,100,40.0,omega,lower,0.03887522220611572 +karman_re200,ppo,101,40.4,omega,front,-0.005160751286894083 +karman_re200,ppo,101,40.4,omega,upper,-0.047021083533763885 +karman_re200,ppo,101,40.4,omega,lower,0.015090569853782654 +karman_re200,ppo,102,40.8,omega,front,0.02011161297559738 +karman_re200,ppo,102,40.8,omega,upper,-0.07568152993917465 +karman_re200,ppo,102,40.8,omega,lower,-0.031105613335967064 +karman_re200,ppo,103,41.2,omega,front,0.03278820216655731 +karman_re200,ppo,103,41.2,omega,upper,-0.0870799869298935 +karman_re200,ppo,103,41.2,omega,lower,-0.03999999910593033 +karman_re200,ppo,104,41.6,omega,front,0.03678916022181511 +karman_re200,ppo,104,41.6,omega,upper,-0.08245313167572021 +karman_re200,ppo,104,41.6,omega,lower,-0.03999999910593033 +karman_re200,ppo,105,42.0,omega,front,0.031713489443063736 +karman_re200,ppo,105,42.0,omega,upper,-0.06719464808702469 +karman_re200,ppo,105,42.0,omega,lower,-0.0105553288012743 +karman_re200,ppo,106,42.4,omega,front,0.026203693822026253 +karman_re200,ppo,106,42.4,omega,upper,-0.04646454378962517 +karman_re200,ppo,106,42.4,omega,lower,0.05534146726131439 +karman_re200,ppo,107,42.8,omega,front,0.02635462023317814 +karman_re200,ppo,107,42.8,omega,upper,-0.05182932689785957 +karman_re200,ppo,107,42.8,omega,lower,0.04255780205130577 +karman_re200,ppo,108,43.2,omega,front,0.03187348321080208 +karman_re200,ppo,108,43.2,omega,upper,-0.06373261660337448 +karman_re200,ppo,108,43.2,omega,lower,0.0019918917678296566 +karman_re200,ppo,109,43.6,omega,front,0.03379033878445625 +karman_re200,ppo,109,43.6,omega,upper,-0.05135754495859146 +karman_re200,ppo,109,43.6,omega,lower,-0.010285400785505772 +karman_re200,ppo,110,44.0,omega,front,0.006888652220368385 +karman_re200,ppo,110,44.0,omega,upper,0.0010603904956951737 +karman_re200,ppo,110,44.0,omega,lower,0.05970192700624466 +karman_re200,ppo,111,44.4,omega,front,-0.024715090170502663 +karman_re200,ppo,111,44.4,omega,upper,0.03999999910593033 +karman_re200,ppo,111,44.4,omega,lower,0.11999999731779099 +karman_re200,ppo,112,44.8,omega,front,-0.031181352213025093 +karman_re200,ppo,112,44.8,omega,upper,0.025436820462346077 +karman_re200,ppo,112,44.8,omega,lower,0.11909772455692291 +karman_re200,ppo,113,45.2,omega,front,-0.03260196000337601 +karman_re200,ppo,113,45.2,omega,upper,0.011411575600504875 +karman_re200,ppo,113,45.2,omega,lower,0.1104423850774765 +karman_re200,ppo,114,45.6,omega,front,-0.032471515238285065 +karman_re200,ppo,114,45.6,omega,upper,-0.003526213113218546 +karman_re200,ppo,114,45.6,omega,lower,0.08863020688295364 +karman_re200,ppo,115,46.0,omega,front,-0.023016242310404778 +karman_re200,ppo,115,46.0,omega,upper,-0.04504244402050972 +karman_re200,ppo,115,46.0,omega,lower,0.03798004612326622 +karman_re200,ppo,116,46.4,omega,front,-0.02022182196378708 +karman_re200,ppo,116,46.4,omega,upper,-0.03998836874961853 +karman_re200,ppo,116,46.4,omega,lower,0.04148578643798828 +karman_re200,ppo,117,46.8,omega,front,-0.006912481039762497 +karman_re200,ppo,117,46.8,omega,upper,-0.04341096803545952 +karman_re200,ppo,117,46.8,omega,lower,0.01806035451591015 +karman_re200,ppo,118,47.2,omega,front,0.019474413245916367 +karman_re200,ppo,118,47.2,omega,upper,-0.0753873661160469 +karman_re200,ppo,118,47.2,omega,lower,-0.03252718970179558 +karman_re200,ppo,119,47.6,omega,front,0.03467337414622307 +karman_re200,ppo,119,47.6,omega,upper,-0.08764070272445679 +karman_re200,ppo,119,47.6,omega,lower,-0.03999999910593033 +karman_re200,ppo,120,48.0,omega,front,0.038230862468481064 +karman_re200,ppo,120,48.0,omega,upper,-0.08356281369924545 +karman_re200,ppo,120,48.0,omega,lower,-0.03999999910593033 +karman_re200,ppo,121,48.4,omega,front,0.032807495445013046 +karman_re200,ppo,121,48.4,omega,upper,-0.06888320297002792 +karman_re200,ppo,121,48.4,omega,lower,-0.012458276934921741 +karman_re200,ppo,122,48.8,omega,front,0.026994194835424423 +karman_re200,ppo,122,48.8,omega,upper,-0.04594229906797409 +karman_re200,ppo,122,48.8,omega,lower,0.05656714364886284 +karman_re200,ppo,123,49.2,omega,front,0.02431155927479267 +karman_re200,ppo,123,49.2,omega,upper,-0.04682309180498123 +karman_re200,ppo,123,49.2,omega,lower,0.054178670048713684 +karman_re200,ppo,124,49.6,omega,front,0.0258525088429451 +karman_re200,ppo,124,49.6,omega,upper,-0.055344000458717346 +karman_re200,ppo,124,49.6,omega,lower,0.021580155938863754 +karman_re200,ppo,125,50.0,omega,front,0.020593207329511642 +karman_re200,ppo,125,50.0,omega,upper,-0.03494798764586449 +karman_re200,ppo,125,50.0,omega,lower,0.0156850665807724 +karman_re200,ppo,126,50.4,omega,front,0.0008215098059736192 +karman_re200,ppo,126,50.4,omega,upper,0.004357623867690563 +karman_re200,ppo,126,50.4,omega,lower,0.060588669031858444 +karman_re200,ppo,127,50.8,omega,front,-0.01711607724428177 +karman_re200,ppo,127,50.8,omega,upper,0.021869787946343422 +karman_re200,ppo,127,50.8,omega,lower,0.09324653446674347 +karman_re200,ppo,128,51.2,omega,front,-0.022709285840392113 +karman_re200,ppo,128,51.2,omega,upper,0.011198234744369984 +karman_re200,ppo,128,51.2,omega,lower,0.08753280341625214 +karman_re200,ppo,129,51.6,omega,front,-0.026938341557979584 +karman_re200,ppo,129,51.6,omega,upper,0.0006829357007518411 +karman_re200,ppo,129,51.6,omega,lower,0.08332042396068573 +karman_re200,ppo,130,52.0,omega,front,-0.025140542536973953 +karman_re200,ppo,130,52.0,omega,upper,-0.02836853452026844 +karman_re200,ppo,130,52.0,omega,lower,0.058036625385284424 +karman_re200,ppo,131,52.4,omega,front,-0.01692814752459526 +karman_re200,ppo,131,52.4,omega,upper,-0.062395378947257996 +karman_re200,ppo,131,52.4,omega,lower,0.019487842917442322 +karman_re200,ppo,132,52.8,omega,front,-0.015936223790049553 +karman_re200,ppo,132,52.8,omega,upper,-0.04665172100067139 +karman_re200,ppo,132,52.8,omega,lower,0.0339956134557724 +karman_re200,ppo,133,53.2,omega,front,-0.0021557649597525597 +karman_re200,ppo,133,53.2,omega,upper,-0.04768787696957588 +karman_re200,ppo,133,53.2,omega,lower,0.014487835578620434 +karman_re200,ppo,134,53.6,omega,front,0.025089412927627563 +karman_re200,ppo,134,53.6,omega,upper,-0.08105122298002243 +karman_re200,ppo,134,53.6,omega,lower,-0.03999999910593033 +karman_re200,ppo,135,54.0,omega,front,0.03513852506875992 +karman_re200,ppo,135,54.0,omega,upper,-0.08399259299039841 +karman_re200,ppo,135,54.0,omega,lower,-0.03999999910593033 +karman_re200,ppo,136,54.4,omega,front,0.03738446533679962 +karman_re200,ppo,136,54.4,omega,upper,-0.07892636209726334 +karman_re200,ppo,136,54.4,omega,lower,-0.038812242448329926 +karman_re200,ppo,137,54.8,omega,front,0.03077918477356434 +karman_re200,ppo,137,54.8,omega,upper,-0.06303674727678299 +karman_re200,ppo,137,54.8,omega,lower,0.0041193291544914246 +karman_re200,ppo,138,55.2,omega,front,0.024908261373639107 +karman_re200,ppo,138,55.2,omega,upper,-0.04667544737458229 +karman_re200,ppo,138,55.2,omega,lower,0.0600811168551445 +karman_re200,ppo,139,55.6,omega,front,0.024284260347485542 +karman_re200,ppo,139,55.6,omega,upper,-0.04950876906514168 +karman_re200,ppo,139,55.6,omega,lower,0.04181133210659027 +karman_re200,ppo,140,56.0,omega,front,0.024637464433908463 +karman_re200,ppo,140,56.0,omega,upper,-0.04595509544014931 +karman_re200,ppo,140,56.0,omega,lower,0.020099587738513947 +karman_re200,ppo,141,56.4,omega,front,0.013843659311532974 +karman_re200,ppo,141,56.4,omega,upper,-0.02128380723297596 +karman_re200,ppo,141,56.4,omega,lower,0.036708950996398926 +karman_re200,ppo,142,56.8,omega,front,-0.006844428833574057 +karman_re200,ppo,142,56.8,omega,upper,0.011371268890798092 +karman_re200,ppo,142,56.8,omega,lower,0.07860665768384933 +karman_re200,ppo,143,57.2,omega,front,-0.017384344711899757 +karman_re200,ppo,143,57.2,omega,upper,0.016841381788253784 +karman_re200,ppo,143,57.2,omega,lower,0.08736087381839752 +karman_re200,ppo,144,57.6,omega,front,-0.021769361570477486 +karman_re200,ppo,144,57.6,omega,upper,0.010641960427165031 +karman_re200,ppo,144,57.6,omega,lower,0.08302438259124756 +karman_re200,ppo,145,58.0,omega,front,-0.024502703920006752 +karman_re200,ppo,145,58.0,omega,upper,-0.004445834085345268 +karman_re200,ppo,145,58.0,omega,lower,0.07314351946115494 +karman_re200,ppo,146,58.4,omega,front,-0.019773924723267555 +karman_re200,ppo,146,58.4,omega,upper,-0.04177584499120712 +karman_re200,ppo,146,58.4,omega,lower,0.03654855489730835 +karman_re200,ppo,147,58.8,omega,front,-0.012139473110437393 +karman_re200,ppo,147,58.8,omega,upper,-0.06482145935297012 +karman_re200,ppo,147,58.8,omega,lower,0.015246977098286152 +karman_re200,ppo,148,59.2,omega,front,-0.0032451539300382137 +karman_re200,ppo,148,59.2,omega,upper,-0.0562366247177124 +karman_re200,ppo,148,59.2,omega,lower,0.015010575763881207 +karman_re200,ppo,149,59.6,omega,front,0.01683465950191021 +karman_re200,ppo,149,59.6,omega,upper,-0.06987874954938889 +karman_re200,ppo,149,59.6,omega,lower,-0.013250403106212616 +karman_re200,ppo,150,60.0,omega,front,0.027290668338537216 +karman_re200,ppo,150,60.0,omega,upper,-0.07601921260356903 +karman_re200,ppo,150,60.0,omega,lower,-0.0339658297598362 +karman_re200,ppo,151,60.4,omega,front,0.03327513113617897 +karman_re200,ppo,151,60.4,omega,upper,-0.07602350413799286 +karman_re200,ppo,151,60.4,omega,lower,-0.03413939103484154 +karman_re200,ppo,152,60.8,omega,front,0.030923524871468544 +karman_re200,ppo,152,60.8,omega,upper,-0.060013625770807266 +karman_re200,ppo,152,60.8,omega,lower,-0.0017012977041304111 +karman_re200,ppo,153,61.2,omega,front,0.025892671197652817 +karman_re200,ppo,153,61.2,omega,upper,-0.0410710833966732 +karman_re200,ppo,153,61.2,omega,lower,0.05435680225491524 +karman_re200,ppo,154,61.6,omega,front,0.025618689134716988 +karman_re200,ppo,154,61.6,omega,upper,-0.051109589636325836 +karman_re200,ppo,154,61.6,omega,lower,0.041255585849285126 +karman_re200,ppo,155,62.0,omega,front,0.032320406287908554 +karman_re200,ppo,155,62.0,omega,upper,-0.06261520832777023 +karman_re200,ppo,155,62.0,omega,lower,-0.00033812521724030375 +karman_re200,ppo,156,62.4,omega,front,0.032483603805303574 +karman_re200,ppo,156,62.4,omega,upper,-0.04713539406657219 +karman_re200,ppo,156,62.4,omega,lower,-0.003711371449753642 +karman_re200,ppo,157,62.8,omega,front,0.0019718760158866644 +karman_re200,ppo,157,62.8,omega,upper,0.00790091510862112 +karman_re200,ppo,157,62.8,omega,lower,0.07028473168611526 +karman_re200,ppo,158,63.2,omega,front,-0.02316579967737198 +karman_re200,ppo,158,63.2,omega,upper,0.037934787571430206 +karman_re200,ppo,158,63.2,omega,lower,0.11999999731779099 +karman_re200,ppo,159,63.6,omega,front,-0.02510986290872097 +karman_re200,ppo,159,63.6,omega,upper,0.01905585266649723 +karman_re200,ppo,159,63.6,omega,lower,0.10617213696241379 +karman_re200,ppo,160,64.0,omega,front,-0.028121499344706535 +karman_re200,ppo,160,64.0,omega,upper,0.013087067753076553 +karman_re200,ppo,160,64.0,omega,lower,0.10260742157697678 +karman_re200,ppo,161,64.4,omega,front,-0.027589406818151474 +karman_re200,ppo,161,64.4,omega,upper,-0.008360590785741806 +karman_re200,ppo,161,64.4,omega,lower,0.0800459235906601 +karman_re200,ppo,162,64.8,omega,front,-0.019139528274536133 +karman_re200,ppo,162,64.8,omega,upper,-0.043925460427999496 +karman_re200,ppo,162,64.8,omega,lower,0.037006232887506485 +karman_re200,ppo,163,65.2,omega,front,-0.01612863317131996 +karman_re200,ppo,163,65.2,omega,upper,-0.04063756391406059 +karman_re200,ppo,163,65.2,omega,lower,0.03642810136079788 +karman_re200,ppo,164,65.6,omega,front,-0.0088439816609025 +karman_re200,ppo,164,65.6,omega,upper,-0.03842587396502495 +karman_re200,ppo,164,65.6,omega,lower,0.019185638055205345 +karman_re200,ppo,165,66.0,omega,front,0.015796417370438576 +karman_re200,ppo,165,66.0,omega,upper,-0.06928034871816635 +karman_re200,ppo,165,66.0,omega,lower,-0.0257234089076519 +karman_re200,ppo,166,66.4,omega,front,0.0316300094127655 +karman_re200,ppo,166,66.4,omega,upper,-0.08462507277727127 +karman_re200,ppo,166,66.4,omega,lower,-0.03999999910593033 +karman_re200,ppo,167,66.8,omega,front,0.03513922542333603 +karman_re200,ppo,167,66.8,omega,upper,-0.0785364881157875 +karman_re200,ppo,167,66.8,omega,lower,-0.036535654217004776 +karman_re200,ppo,168,67.2,omega,front,0.03222758322954178 +karman_re200,ppo,168,67.2,omega,upper,-0.0700935423374176 +karman_re200,ppo,168,67.2,omega,lower,-0.012850107625126839 +karman_re200,ppo,169,67.6,omega,front,0.0276739951223135 +karman_re200,ppo,169,67.6,omega,upper,-0.049952082335948944 +karman_re200,ppo,169,67.6,omega,lower,0.04493372514843941 +karman_re200,ppo,170,68.0,omega,front,0.026277994737029076 +karman_re200,ppo,170,68.0,omega,upper,-0.05202614516019821 +karman_re200,ppo,170,68.0,omega,lower,0.0459379106760025 +karman_re200,ppo,171,68.4,omega,front,0.030761361122131348 +karman_re200,ppo,171,68.4,omega,upper,-0.0627017691731453 +karman_re200,ppo,171,68.4,omega,lower,0.0084359310567379 +karman_re200,ppo,172,68.8,omega,front,0.02446344494819641 +karman_re200,ppo,172,68.8,omega,upper,-0.03677438199520111 +karman_re200,ppo,172,68.8,omega,lower,0.009639186784625053 +karman_re200,ppo,173,69.2,omega,front,-0.0024057948030531406 +karman_re200,ppo,173,69.2,omega,upper,0.012500142678618431 +karman_re200,ppo,173,69.2,omega,lower,0.07022025436162949 +karman_re200,ppo,174,69.6,omega,front,-0.021489720791578293 +karman_re200,ppo,174,69.6,omega,upper,0.0320739783346653 +karman_re200,ppo,174,69.6,omega,lower,0.10915219038724899 +karman_re200,ppo,175,70.0,omega,front,-0.02571939490735531 +karman_re200,ppo,175,70.0,omega,upper,0.017178572714328766 +karman_re200,ppo,175,70.0,omega,lower,0.0997067242860794 +karman_re200,ppo,176,70.4,omega,front,-0.030765702947974205 +karman_re200,ppo,176,70.4,omega,upper,0.011097840964794159 +karman_re200,ppo,176,70.4,omega,lower,0.0997028797864914 +karman_re200,ppo,177,70.8,omega,front,-0.029560724273324013 +karman_re200,ppo,177,70.8,omega,upper,-0.016222888603806496 +karman_re200,ppo,177,70.8,omega,lower,0.07454531639814377 +karman_re200,ppo,178,71.2,omega,front,-0.020536253228783607 +karman_re200,ppo,178,71.2,omega,upper,-0.053162459284067154 +karman_re200,ppo,178,71.2,omega,lower,0.03182384371757507 +karman_re200,ppo,179,71.6,omega,front,-0.020592112094163895 +karman_re200,ppo,179,71.6,omega,upper,-0.03492766246199608 +karman_re200,ppo,179,71.6,omega,lower,0.04633043333888054 +karman_re200,ppo,180,72.0,omega,front,-0.006758983712643385 +karman_re200,ppo,180,72.0,omega,upper,-0.04058330878615379 +karman_re200,ppo,180,72.0,omega,lower,0.015541767701506615 +karman_re200,ppo,181,72.4,omega,front,0.0209522545337677 +karman_re200,ppo,181,72.4,omega,upper,-0.07848820835351944 +karman_re200,ppo,181,72.4,omega,lower,-0.03792555630207062 +karman_re200,ppo,182,72.8,omega,front,0.03238507732748985 +karman_re200,ppo,182,72.8,omega,upper,-0.0870201364159584 +karman_re200,ppo,182,72.8,omega,lower,-0.03999999910593033 +karman_re200,ppo,183,73.2,omega,front,0.03523087128996849 +karman_re200,ppo,183,73.2,omega,upper,-0.08196302503347397 +karman_re200,ppo,183,73.2,omega,lower,-0.039294738322496414 +karman_re200,ppo,184,73.6,omega,front,0.03110416978597641 +karman_re200,ppo,184,73.6,omega,upper,-0.07056619226932526 +karman_re200,ppo,184,73.6,omega,lower,-0.010328803211450577 +karman_re200,ppo,185,74.0,omega,front,0.02637491002678871 +karman_re200,ppo,185,74.0,omega,upper,-0.049133285880088806 +karman_re200,ppo,185,74.0,omega,lower,0.052587706595659256 +karman_re200,ppo,186,74.4,omega,front,0.026688510552048683 +karman_re200,ppo,186,74.4,omega,upper,-0.05280341953039169 +karman_re200,ppo,186,74.4,omega,lower,0.040056370198726654 +karman_re200,ppo,187,74.8,omega,front,0.03142811357975006 +karman_re200,ppo,187,74.8,omega,upper,-0.06088797375559807 +karman_re200,ppo,187,74.8,omega,lower,0.004799756687134504 +karman_re200,ppo,188,75.2,omega,front,0.02723355032503605 +karman_re200,ppo,188,75.2,omega,upper,-0.039327774196863174 +karman_re200,ppo,188,75.2,omega,lower,0.00865623913705349 +karman_re200,ppo,189,75.6,omega,front,-0.0031787401530891657 +karman_re200,ppo,189,75.6,omega,upper,0.013832373544573784 +karman_re200,ppo,189,75.6,omega,lower,0.07732048630714417 +karman_re200,ppo,190,76.0,omega,front,-0.023042568936944008 +karman_re200,ppo,190,76.0,omega,upper,0.03277473896741867 +karman_re200,ppo,190,76.0,omega,lower,0.11339505761861801 +karman_re200,ppo,191,76.4,omega,front,-0.025790167972445488 +karman_re200,ppo,191,76.4,omega,upper,0.014715299010276794 +karman_re200,ppo,191,76.4,omega,lower,0.0993000790476799 +karman_re200,ppo,192,76.8,omega,front,-0.03019411675632 +karman_re200,ppo,192,76.8,omega,upper,0.009983963333070278 +karman_re200,ppo,192,76.8,omega,lower,0.09935487806797028 +karman_re200,ppo,193,77.2,omega,front,-0.02834472991526127 +karman_re200,ppo,193,77.2,omega,upper,-0.018547799438238144 +karman_re200,ppo,193,77.2,omega,lower,0.06953559070825577 +karman_re200,ppo,194,77.6,omega,front,-0.0193728469312191 +karman_re200,ppo,194,77.6,omega,upper,-0.05417227745056152 +karman_re200,ppo,194,77.6,omega,lower,0.02772243693470955 +karman_re200,ppo,195,78.0,omega,front,-0.016032682731747627 +karman_re200,ppo,195,78.0,omega,upper,-0.04069974645972252 +karman_re200,ppo,195,78.0,omega,lower,0.036935728043317795 +karman_re200,ppo,196,78.4,omega,front,0.00638792896643281 +karman_re200,ppo,196,78.4,omega,upper,-0.05920623615384102 +karman_re200,ppo,196,78.4,omega,lower,-0.005684885662049055 +karman_re200,ppo,197,78.8,omega,front,0.027463741600513458 +karman_re200,ppo,197,78.8,omega,upper,-0.08321826905012131 +karman_re200,ppo,197,78.8,omega,lower,-0.03999999910593033 +karman_re200,ppo,198,79.2,omega,front,0.03284408152103424 +karman_re200,ppo,198,79.2,omega,upper,-0.08299435675144196 +karman_re200,ppo,198,79.2,omega,lower,-0.03999999910593033 +karman_re200,ppo,199,79.6,omega,front,0.03593224287033081 +karman_re200,ppo,199,79.6,omega,upper,-0.08150312304496765 +karman_re200,ppo,199,79.6,omega,lower,-0.03644004091620445 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_manifest.json new file mode 100644 index 0000000..d3bf8f9 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re200", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re200/controlled.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_wide.csv new file mode 100644 index 0000000..96a7a23 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re200,ppo,0,0.0,0.8998950719833374,-0.22428524494171143,0.9940553903579712,-0.2651898264884949,1.233524203300476,-0.12603864073753357,-0.0003988382522948086,-0.005316844675689936,0.006122389808297157,0.005452316254377365,-0.007748854346573353,-0.002878145081922412,-0.6228015422821045,-0.07173871994018555,5.15933895111084,-0.0062280152924358845,-0.0007173871854320168,0.051593389362096786 +karman_re200,ppo,1,0.4,0.9510888457298279,-0.3047756254673004,1.0013774633407593,-0.4294683337211609,1.1550174951553345,-0.2583763301372528,0.001221952959895134,-0.003685109317302704,0.005111530888825655,0.005265690851956606,-0.009419985115528107,-0.0035197478719055653,-1.5031547546386719,-0.09985946863889694,5.192103862762451,-0.015031547285616398,-0.0009985946817323565,0.05192103609442711 +karman_re200,ppo,2,0.8,1.0141762495040894,-0.337396502494812,1.0089491605758667,-0.46324774622917175,1.072494626045227,-0.31343400478363037,0.0047850413247942924,-0.0023263979237526655,0.0037916165310889482,0.00510427076369524,-0.010832775384187698,-0.00408854940906167,-1.8332595825195312,-1.2449073791503906,4.885129928588867,-0.018332595005631447,-0.012449073605239391,0.04885130003094673 +karman_re200,ppo,3,1.2,1.0756816864013672,-0.36083194613456726,1.0087084770202637,-0.46962130069732666,1.008845567703247,-0.3216666281223297,0.0035518272779881954,-0.0013579735532402992,0.003367109689861536,0.004881001077592373,-0.009447714313864708,-0.006503139156848192,-1.7390445470809937,-3.177455425262451,4.8443193435668945,-0.01739044487476349,-0.031774554401636124,0.04844319075345993 +karman_re200,ppo,4,1.6,1.1364656686782837,-0.35248976945877075,0.9974466562271118,-0.4538664221763611,0.9579305052757263,-0.3018237054347992,0.0025811600498855114,0.0008925175643526018,0.00186295120511204,0.0049044545739889145,-0.0038893213495612144,-0.007127102464437485,-1.4200859069824219,-4.6419572830200195,3.1799685955047607,-0.014200858771800995,-0.046419572085142136,0.03179968520998955 +karman_re200,ppo,5,2.0,1.2079800367355347,-0.3190653622150421,0.9685810804367065,-0.39849093556404114,0.9199088215827942,-0.24761894345283508,0.00023605162277817726,0.0029629296623170376,-3.55020456481725e-05,0.005434904247522354,-0.00016163843974936754,-0.00603101123124361,-0.8761156797409058,-5.264764308929443,2.650411367416382,-0.008761156350374222,-0.05264764279127121,0.026504112407565117 +karman_re200,ppo,6,2.4,1.2698920965194702,-0.20139369368553162,0.9350675940513611,-0.22454576194286346,0.8935754895210266,-0.14559707045555115,-0.0012198538752272725,0.004096799064427614,-0.0015978396404534578,0.00548841618001461,0.0023863553069531918,-0.0060774642042815685,-0.467833936214447,-4.493804454803467,2.275334358215332,-0.00467833923175931,-0.044938042759895325,0.022753342986106873 +karman_re200,ppo,7,2.8,1.276492953300476,-0.001987211871892214,0.9396016001701355,0.041012249886989594,0.8739466071128845,0.019488850608468056,-0.0013042631326243281,0.004316967912018299,-0.0032630725763738155,0.004831623286008835,0.004079735837876797,-0.006059771403670311,0.33422422409057617,-4.798018932342529,1.0930614471435547,0.0033422422129660845,-0.04798018932342529,0.010930614545941353 +karman_re200,ppo,8,3.2,1.2516652345657349,0.15421532094478607,0.9652247428894043,0.2691305875778198,0.8832982778549194,0.19380739331245422,0.0003088954254053533,0.004307630937546492,-0.0054944646544754505,0.0037086450029164553,0.004742945544421673,-0.005839893594384193,1.472004771232605,-5.487400054931641,-0.17785310745239258,0.014720047824084759,-0.0548739992082119,-0.0017785310046747327 +karman_re200,ppo,9,3.6,1.1645212173461914,0.29210415482521057,0.9844967126846313,0.43761059641838074,0.9345192909240723,0.27694451808929443,0.003819552017375827,0.003345387987792492,-0.008109219372272491,0.0026466231793165207,0.004305184818804264,-0.005176173523068428,2.4666459560394287,-6.272413730621338,-1.0200557708740234,0.02466645836830139,-0.06272413581609726,-0.010200557298958302 +karman_re200,ppo,10,4.0,1.082424283027649,0.3436315655708313,1.0012720823287964,0.4721568822860718,0.9968566298484802,0.3146049380302429,0.006337540689855814,0.0020767785608768463,-0.009920532815158367,0.003381414106115699,0.004293805919587612,-0.0035974280908703804,2.862161159515381,-6.209733009338379,-0.3963909149169922,0.0286216102540493,-0.06209732964634895,-0.003963909111917019 +karman_re200,ppo,11,4.4,1.0226569175720215,0.3509787619113922,1.0107239484786987,0.47024935483932495,1.0575882196426392,0.3413645029067993,0.005674056243151426,-8.60506042954512e-05,-0.007400944363325834,0.006387773901224136,0.0037013047840446234,-0.0028060362674295902,2.6274633407592773,-4.712515354156494,2.3559646606445312,0.026274632662534714,-0.04712515324354172,0.02355964668095112 +karman_re200,ppo,12,4.8,0.9809382557868958,0.3266327977180481,1.0111494064331055,0.44407880306243896,1.1173961162567139,0.3347955048084259,0.0040677315555512905,-0.0015299621736630797,-0.0028647547587752342,0.005889140535145998,0.002201256575062871,-0.003633915213868022,2.2111732959747314,-3.3742785453796387,5.520130634307861,0.02211173251271248,-0.03374278545379639,0.05520130693912506 +karman_re200,ppo,13,5.2,0.9493526220321655,0.2569063901901245,0.9925389885902405,0.3748483955860138,1.1812843084335327,0.30477139353752136,0.0009571907576173544,-0.003754463978111744,9.206763024849351e-06,0.004448086488991976,6.61411031614989e-05,-0.005057047586888075,1.9968701601028442,-3.703744888305664,4.383648872375488,0.019968701526522636,-0.0370374470949173,0.04383648931980133 +karman_re200,ppo,14,5.6,0.914745569229126,0.10816149413585663,0.9585051536560059,0.19502079486846924,1.242448091506958,0.22538751363754272,-0.0016934684244915843,-0.004213887266814709,0.0013921078061684966,0.004256729502230883,-0.00015959807205945253,-0.005645209923386574,1.7197352647781372,-3.3559226989746094,2.6264185905456543,0.017197351902723312,-0.033559225499629974,0.026264185085892677 +karman_re200,ppo,15,6.0,0.8908949494361877,-0.10741172730922699,0.9490335583686829,-0.06902313232421875,1.2432820796966553,0.045016560703516006,-0.0027616911102086306,-0.0049066985957324505,0.0023637597914785147,0.004729796666651964,-0.0013520884094759822,-0.004946581553667784,1.0772496461868286,-2.409902811050415,2.320704460144043,0.010772496461868286,-0.02409902773797512,0.0232070442289114 +karman_re200,ppo,16,6.4,0.9094306230545044,-0.2684662342071533,0.9483522772789001,-0.3177577555179596,1.191707968711853,-0.12112287431955338,-0.0022534190211445093,-0.0047195483930408955,0.003139100968837738,0.0053611136972904205,-0.0023917926009744406,-0.0039057934191077948,-0.10529162734746933,-0.6786582469940186,3.942622661590576,-0.001052916282787919,-0.00678658252581954,0.039426226168870926 +karman_re200,ppo,17,6.8,0.9657301902770996,-0.32009780406951904,0.9523962140083313,-0.4492759704589844,1.095005750656128,-0.2621208429336548,-0.00029515509959310293,-0.0034804996103048325,0.0036945322062820196,0.005605114158242941,-0.0035030096769332886,-0.0030598361045122147,-1.1631171703338623,0.4118137061595917,5.736422538757324,-0.011631171219050884,0.004118137061595917,0.05736422538757324 +karman_re200,ppo,18,7.2,1.027988314628601,-0.3579159080982208,0.9605187773704529,-0.48111870884895325,1.0078880786895752,-0.3200860321521759,0.0020781392231583595,-0.0012294630287215114,0.0037522551137953997,0.0056697903200984,-0.004762677010148764,-0.0026433884631842375,-1.7554987668991089,0.1854534149169922,6.415607929229736,-0.017554987221956253,0.001854534144513309,0.06415607780218124 +karman_re200,ppo,19,7.6,1.0877563953399658,-0.3769296705722809,0.9555813670158386,-0.48980703949928284,0.9457239508628845,-0.3183024525642395,0.003276477800682187,0.0011876601492986083,0.003054989967495203,0.005057910457253456,-0.005829969421029091,-0.0034051775000989437,-1.838507890701294,-1.2842354774475098,5.835360527038574,-0.018385078758001328,-0.012842354364693165,0.05835360288619995 +karman_re200,ppo,20,8.0,1.1514613628387451,-0.3661528527736664,0.9355918765068054,-0.47543400526046753,0.8983800411224365,-0.27973806858062744,0.0014861572999507189,0.00222877599298954,0.0018412868957966566,0.004797539208084345,-0.0044487230479717255,-0.005979655310511589,-1.4813798666000366,-3.453908681869507,3.858278512954712,-0.014813798479735851,-0.03453908488154411,0.038582783192396164 +karman_re200,ppo,21,8.4,1.229141354560852,-0.3352474868297577,0.8895828127861023,-0.4146876931190491,0.8618685007095337,-0.20363856852054596,-0.0003791947674471885,0.0038180160336196423,0.00010371779353590682,0.005503027234226465,-0.0005365396500565112,-0.007150901947170496,-0.9785566926002502,-4.881351470947266,1.8799724578857422,-0.009785566478967667,-0.04881351441144943,0.01879972405731678 +karman_re200,ppo,22,8.8,1.3000353574752808,-0.2442573606967926,0.8284677267074585,-0.22938112914562225,0.840848982334137,-0.08492540568113327,-0.001566579332575202,0.004619208164513111,-0.001445271074771881,0.006088280584663153,0.0021770948078483343,-0.006605278700590134,-0.44979599118232727,-5.330161094665527,1.2013216018676758,-0.004497959744185209,-0.0533016100525856,0.012013215571641922 +karman_re200,ppo,23,9.2,1.304603934288025,-0.055199433118104935,0.7862431406974792,0.06753866374492645,0.8447523713111877,0.06977906823158264,-0.001400039647705853,0.004804426338523626,-0.0022888879757374525,0.005677955690771341,0.0035525166895240545,-0.006035335827618837,0.1920347362756729,-5.077755451202393,0.9000688195228577,0.0019203473348170519,-0.050777554512023926,0.00900068785995245 +karman_re200,ppo,24,9.6,1.2389551401138306,0.17780178785324097,0.7917512655258179,0.37667787075042725,0.8753359317779541,0.2211390733718872,2.75541369774146e-05,0.0044761230237782,-0.0035535739734768867,0.004225120414048433,0.004140819422900677,-0.005627346690744162,1.23276948928833,-5.662370681762695,-0.21919868886470795,0.012327694334089756,-0.056623704731464386,-0.0021919868886470795 +karman_re200,ppo,25,10.0,1.1195977926254272,0.3733256161212921,0.8375132083892822,0.5784127712249756,0.9436401128768921,0.2989959716796875,0.0029444473329931498,0.0033131877426058054,-0.005524809472262859,0.0030271101277321577,0.004208714235574007,-0.00470517436042428,2.4300708770751953,-6.62451171875,-1.5790143013000488,0.02430070750415325,-0.06624511629343033,-0.015790142118930817 +karman_re200,ppo,26,10.4,0.999377965927124,0.4569172263145447,0.889234721660614,0.6467837691307068,1.0218253135681152,0.3489629030227661,0.005485568195581436,0.0014088309835642576,-0.007071517873555422,0.0034359183628112078,0.004450101405382156,-0.002952511887997389,3.022137403488159,-6.512508869171143,-1.122884750366211,0.030221372842788696,-0.06512508541345596,-0.011228847317397594 +karman_re200,ppo,27,10.8,0.9000943899154663,0.4528927206993103,0.9305673837661743,0.675280749797821,1.0994060039520264,0.3586976230144501,0.004944161977618933,-0.0007692038780078292,-0.00542282173410058,0.0060788230039179325,0.004377451259642839,-0.0020838638301938772,2.9367547035217285,-4.887861251831055,1.7268950939178467,0.029367545619606972,-0.048878610134124756,0.0172689501196146 +karman_re200,ppo,28,11.2,0.8142690062522888,0.3910525441169739,0.9785693883895874,0.669971764087677,1.1802124977111816,0.3233332931995392,0.0033663460053503513,-0.002148349303752184,-0.0017927461303770542,0.006231953389942646,0.0026044142432510853,-0.0033598977606743574,2.634439468383789,-3.4506165981292725,4.804506301879883,0.02634439431130886,-0.034506164491176605,0.04804506152868271 +karman_re200,ppo,29,11.6,0.740949809551239,0.26815715432167053,1.0621860027313232,0.6307822465896606,1.2447423934936523,0.2264334112405777,0.0009079581359401345,-0.004033061675727367,0.00030016523669473827,0.004669196903705597,0.0003923401527572423,-0.004654244054108858,2.4896323680877686,-4.033602237701416,3.915010929107666,0.024896323680877686,-0.04033602029085159,0.03915010765194893 +karman_re200,ppo,30,12.0,0.7037364840507507,0.09057153016328812,1.1405150890350342,0.2863110601902008,1.2388406991958618,0.038967110216617584,-0.0016568697756156325,-0.004569589160382748,0.0009919714648276567,0.004318948369473219,-0.00026010884903371334,-0.0050934236496686935,2.371039867401123,-4.205699920654297,2.144402503967285,0.023710398003458977,-0.04205700010061264,0.02144402451813221 +karman_re200,ppo,31,12.4,0.7284371256828308,-0.0953722670674324,1.1259270906448364,-0.3986295461654663,1.2349486351013184,-0.08117450028657913,-0.0027054513338953257,-0.004895046819001436,0.0014366059331223369,0.005085295531898737,-0.001014563487842679,-0.004470084328204393,1.2933554649353027,-2.6241118907928467,2.70802640914917,0.012933554127812386,-0.0262411180883646,0.027080263942480087 +karman_re200,ppo,32,12.8,0.7970094084739685,-0.2452317774295807,1.06181001663208,-0.6220481991767883,1.2047533988952637,-0.16457556188106537,-0.002061057835817337,-0.004173389635980129,0.002008780837059021,0.0057989452034235,-0.0017797381151467562,-0.0038398182950913906,-0.9009665250778198,0.8364276885986328,6.313188552856445,-0.009009664878249168,0.008364276960492134,0.06313188374042511 +karman_re200,ppo,33,13.2,0.8794994354248047,-0.3408704400062561,1.0171585083007812,-0.5974361896514893,1.1261513233184814,-0.22961866855621338,0.00026962056290358305,-0.002939097583293915,0.002958552911877632,0.005770983640104532,-0.0021851782221347094,-0.0037260961253196,-1.7431343793869019,1.405489444732666,7.562210559844971,-0.017431342974305153,0.01405489444732666,0.07562210410833359 +karman_re200,ppo,34,13.6,0.967180073261261,-0.3950577974319458,0.9894084334373474,-0.5733836889266968,1.0465400218963623,-0.2705897390842438,0.0026508825831115246,-0.0004379519377835095,0.0034692648332566023,0.005775551777333021,-0.003440029686316848,-0.00268974294885993,-1.8774815797805786,0.0778350830078125,7.212472915649414,-0.018774814903736115,0.0007783508044667542,0.07212472707033157 +karman_re200,ppo,35,14.0,1.0505443811416626,-0.41859257221221924,0.961659848690033,-0.5512306094169617,0.9893975853919983,-0.27379709482192993,0.0034268207382410765,0.00122411351185292,0.002864174311980605,0.004550458397716284,-0.005692430771887302,-0.004626831505447626,-1.8726388216018677,-1.426513671875,6.327376842498779,-0.01872638799250126,-0.014265136793255806,0.06327376514673233 +karman_re200,ppo,36,14.4,1.1341407299041748,-0.4083320200443268,0.9188809394836426,-0.5200172662734985,0.9441970586776733,-0.22985021770000458,0.0010049594566226006,0.0023537222295999527,0.0011934072244912386,0.004329505376517773,-0.002544804010540247,-0.008748618885874748,-1.3749603033065796,-4.183618068695068,3.355394124984741,-0.013749603182077408,-0.04183617979288101,0.03355393931269646 +karman_re200,ppo,37,14.8,1.2264739274978638,-0.37191322445869446,0.8502609133720398,-0.4431858956813812,0.9100213050842285,-0.1465877890586853,-0.0004537206841632724,0.0037388664204627275,-0.0006930232630111277,0.004931463859975338,0.0016613549087196589,-0.0083143450319767,-0.6250023245811462,-6.24503755569458,0.9608745574951172,-0.0062500229105353355,-0.06245037540793419,0.009608745574951172 +karman_re200,ppo,38,15.2,1.320051908493042,-0.293849915266037,0.7635692358016968,-0.25256016850471497,0.8873841166496277,-0.029389357194304466,-0.001503816805779934,0.004309645388275385,-0.0015112502733245492,0.005575679708272219,0.0034109961707144976,-0.007176484912633896,-0.20758657157421112,-5.724234104156494,1.0757880210876465,-0.0020758656319230795,-0.057242341339588165,0.01075788028538227 +karman_re200,ppo,39,15.6,1.4126019477844238,-0.153234601020813,0.6714681386947632,0.044863101094961166,0.8663692474365234,0.11435189843177795,-0.0010988444555550814,0.004231729544699192,-0.0020051856990903616,0.004060737323015928,0.004091514274477959,-0.006541168782860041,0.23346836864948273,-5.148215293884277,0.8675422668457031,0.0023346836678683758,-0.051482152193784714,0.00867542251944542 +karman_re200,ppo,40,16.0,1.3734561204910278,0.13901787996292114,0.6619011163711548,0.36714884638786316,0.8910683989524841,0.22077412903308868,0.0006178872426971793,0.0038053966127336025,-0.0037875354755669832,0.002178807044401765,0.004456314258277416,-0.00593864731490612,1.2232978343963623,-5.8777995109558105,-1.0363473892211914,0.012232977896928787,-0.05877799540758133,-0.010363473556935787 +karman_re200,ppo,41,16.4,1.2046685218811035,0.3713493049144745,0.7222836017608643,0.5588952898979187,0.9501181840896606,0.2981567978858948,0.003437607316300273,0.0024470363277941942,-0.0061593069694936275,0.0018141713226214051,0.004767280071973801,-0.004319797269999981,2.490227699279785,-6.76336669921875,-2.499680519104004,0.024902276694774628,-0.06763366609811783,-0.02499680407345295 +karman_re200,ppo,42,16.8,1.053991436958313,0.44647303223609924,0.780659556388855,0.6373046636581421,1.0195289850234985,0.36057814955711365,0.005289145745337009,0.0007833325653336942,-0.00674069207161665,0.004192919936031103,0.00593313854187727,-0.0021950812079012394,2.9826455116271973,-5.911075592041016,-0.9002719521522522,0.02982645481824875,-0.05911075323820114,-0.009002719074487686 +karman_re200,ppo,43,17.2,0.9421260356903076,0.42381954193115234,0.8047322630882263,0.6729869246482849,1.0943812131881714,0.3780343234539032,0.004299547988921404,-0.0011749289697036147,-0.003146405564621091,0.007331314031034708,0.0052956873551011086,-0.002171081490814686,2.75288724899292,-3.904170513153076,3.2494356632232666,0.027528872713446617,-0.039041705429553986,0.032494354993104935 +karman_re200,ppo,44,17.6,0.8563447594642639,0.34405025839805603,0.7995109558105469,0.6711927056312561,1.1772854328155518,0.35171589255332947,0.0028515150770545006,-0.0024528708308935165,-8.766131031734403e-06,0.00579955754801631,0.002479898277670145,-0.0043945605866611,2.2764506340026855,-3.076730251312256,5.670372009277344,0.022764505818486214,-0.030767301097512245,0.05670372024178505 +karman_re200,ppo,45,18.0,0.7970131635665894,0.21876460313796997,0.7437017560005188,0.6342722773551941,1.2366647720336914,0.2101479023694992,-0.0002938887046184391,-0.004440193064510822,0.0011466732248663902,0.003927623387426138,-0.00033488014014437795,-0.005752216093242168,2.3442158699035645,-4.572616100311279,2.9953901767730713,0.023442158475518227,-0.04572616145014763,0.02995390072464943 +karman_re200,ppo,46,18.4,0.7735918164253235,0.06690138578414917,0.5896114110946655,0.3623797297477722,1.3073010444641113,0.0369110070168972,-0.0023132816422730684,-0.004800265654921532,0.0012769155437126756,0.0038856512401252985,-0.0004666997119784355,-0.0050740367732942104,2.2363831996917725,-4.538782119750977,0.8510265946388245,0.022363832220435143,-0.04538781940937042,0.008510265499353409 +karman_re200,ppo,47,18.8,0.7918771505355835,-0.08489059656858444,0.5676249265670776,-0.3302331864833832,1.345365285873413,-0.13292083144187927,-0.0028385177720338106,-0.005481190513819456,0.0014748034300282598,0.005357288755476475,-0.0013382607139647007,-0.0040407259948551655,1.2223148345947266,-2.4639530181884766,2.018372058868408,0.01222314778715372,-0.02463953010737896,0.02018371969461441 +karman_re200,ppo,48,19.2,0.8327118754386902,-0.22497129440307617,0.705211341381073,-0.7028136253356934,1.274833083152771,-0.2912844717502594,-0.0018151344265788794,-0.0044626337476074696,0.002125048078596592,0.006527685094624758,-0.0019497183384373784,-0.00343779893592,-1.1381219625473022,1.5072245597839355,6.79281759262085,-0.011381219141185284,0.01507224515080452,0.06792817264795303 +karman_re200,ppo,49,19.6,0.9013506174087524,-0.32256489992141724,0.8114560842514038,-0.7213150262832642,1.172055721282959,-0.37269356846809387,0.0006908648647367954,-0.0028182619716972113,0.0035238172858953476,0.006272649392485619,-0.002209128811955452,-0.0039062383584678173,-2.30961012840271,2.29356050491333,8.948265075683594,-0.023096101358532906,0.02293560467660427,0.08948265016078949 +karman_re200,ppo,50,20.0,0.9826056957244873,-0.3927118182182312,0.8493850231170654,-0.6922522187232971,1.075244426727295,-0.3935326635837555,0.003004992613568902,8.958658145274967e-05,0.004427711013704538,0.005724927876144648,-0.0030213361606001854,-0.0028542084619402885,-2.432805299758911,0.4351496696472168,8.166410446166992,-0.02432805299758911,0.004351496696472168,0.08166410028934479 +karman_re200,ppo,51,20.4,1.0730000734329224,-0.41301918029785156,0.8450900316238403,-0.6668527126312256,0.9953916668891907,-0.3597570061683655,0.003199879312887788,0.0016847216757014394,0.0034650093875825405,0.0043868799693882465,-0.005187260918319225,-0.00582776078954339,-2.3063676357269287,-1.4026744365692139,6.618103504180908,-0.023063676431775093,-0.014026744291186333,0.06618103384971619 +karman_re200,ppo,52,20.8,1.1745011806488037,-0.3955957293510437,0.8009697198867798,-0.6221424341201782,0.933027982711792,-0.28221797943115234,0.0008172430680133402,0.0029262371826916933,0.001059653819538653,0.004319535102695227,-0.0008248747326433659,-0.009663463570177555,-1.6564348936080933,-4.587634563446045,3.067389965057373,-0.016564348712563515,-0.04587634280323982,0.03067389875650406 +karman_re200,ppo,53,21.2,1.2541121244430542,-0.28142237663269043,0.6979488134384155,-0.4931636452674866,0.8892806172370911,-0.15831944346427917,-0.0007134859333746135,0.003988662734627724,-0.0007090949220582843,0.005175373051315546,0.0024239886552095413,-0.00807467196136713,-0.8208730220794678,-6.347416400909424,1.1397957801818848,-0.00820873025804758,-0.06347416341304779,0.011397957801818848 +karman_re200,ppo,54,21.6,1.3135849237442017,-0.09941590577363968,0.5449478626251221,-0.1460869461297989,0.8523542284965515,0.018741028383374214,-0.0018991214456036687,0.004251515492796898,-0.0009032727684825659,0.005642760545015335,0.0032943296246230602,-0.00705498643219471,-0.45833683013916016,-5.063780307769775,1.607569694519043,-0.004583368077874184,-0.05063780024647713,0.016075696796178818 +karman_re200,ppo,55,22.0,1.3109744787216187,0.1204456314444542,0.549618124961853,0.36778339743614197,0.8370591998100281,0.20028777420520782,-0.0014649747172370553,0.0039848764427006245,-0.001273843226954341,0.0033962619490921497,0.003745910245925188,-0.0066698212176561356,0.3528883457183838,-5.016493797302246,0.41820141673088074,0.003528883447870612,-0.05016493797302246,0.004182014148682356 +karman_re200,ppo,56,22.4,1.1992406845092773,0.3325522243976593,0.6828094720840454,0.638232946395874,0.8909170031547546,0.29245084524154663,0.0004818682500626892,0.003561340505257249,-0.003291417146101594,0.0015173600986599922,0.0048310947604477406,-0.00578043470159173,2.1441142559051514,-6.891294956207275,-2.979578971862793,0.02144114300608635,-0.06891294568777084,-0.02979578822851181 +karman_re200,ppo,57,22.8,1.0612305402755737,0.4415839910507202,0.7876800298690796,0.7380152940750122,0.9713355302810669,0.3551495671272278,0.004323503468185663,0.001921068993397057,-0.006389998365193605,0.0013341490412130952,0.006081249099224806,-0.003980651963502169,3.2697694301605225,-7.458701133728027,-3.8139522075653076,0.03269769251346588,-0.07458700984716415,-0.038139522075653076 +karman_re200,ppo,58,23.2,0.921599268913269,0.45794975757598877,0.862000584602356,0.779216468334198,1.0522990226745605,0.39102962613105774,0.0058125946670770645,0.0006446106708608568,-0.007306438870728016,0.005385564640164375,0.008504129946231842,-0.002757385140284896,3.3837027549743652,-6.008718967437744,-0.9597978591918945,0.033837027847766876,-0.060087189078330994,-0.009597978554666042 +karman_re200,ppo,59,23.6,0.7780218720436096,0.4102623760700226,0.930318295955658,0.7843328714370728,1.1265887022018433,0.3777875006198883,0.00484755914658308,-0.001305294455960393,-0.0029142529238015413,0.008268449455499649,0.005883048754185438,-0.0030035176314413548,2.983255624771118,-4.081622123718262,4.134400367736816,0.02983255498111248,-0.04081622138619423,0.04134400188922882 +karman_re200,ppo,60,24.0,0.6400914192199707,0.3159417510032654,1.030793309211731,0.7410212159156799,1.1889843940734863,0.31814658641815186,0.0034067516680806875,-0.002695290371775627,-0.0005793659947812557,0.0050184037536382675,0.000981763587333262,-0.004336949437856674,2.535431385040283,-3.9442811012268066,5.872053146362305,0.025354312732815742,-0.03944281116127968,0.058720529079437256 +karman_re200,ppo,61,24.4,0.5435666441917419,0.16060610115528107,1.1559087038040161,0.6465939283370972,1.1907674074172974,0.13216428458690643,-0.0003273230395279825,-0.0044817132875323296,0.00018459567218087614,0.002582163317129016,-0.0005490483017638326,-0.005203068256378174,2.733664035797119,-5.37456750869751,2.295668601989746,0.027336640283465385,-0.05374567210674286,0.022956686094403267 +karman_re200,ppo,62,24.8,0.5390944480895996,-0.026766924187541008,1.2009172439575195,-0.007421852555125952,1.190244436264038,-0.05039837956428528,-0.002106047933921218,-0.005179684143513441,-0.0005805881228297949,0.0030563250184059143,-0.00032573737553320825,-0.00410905946046114,2.637021541595459,-4.9575910568237305,0.3491225242614746,0.0263702142983675,-0.04957590997219086,0.0034912251867353916 +karman_re200,ppo,63,25.2,0.6504400372505188,-0.17040319740772247,1.1169720888137817,-0.6816537976264954,1.2059441804885864,-0.16764339804649353,-0.0024570035748183727,-0.0056082927621901035,-0.0006251231534406543,0.005724004004150629,-0.0009455189574509859,-0.003675408661365509,0.6250584721565247,-0.8623387813568115,4.213698863983154,0.006250584498047829,-0.008623387664556503,0.042136989533901215 +karman_re200,ppo,64,25.6,0.7855331301689148,-0.28284719586372375,1.0111438035964966,-0.8406761288642883,1.1441411972045898,-0.2855977416038513,-0.0010586099233478308,-0.0036888315808027983,0.0009170565172098577,0.006983510684221983,-0.0011878387304022908,-0.0038005306851118803,-1.6803532838821411,2.6631946563720703,9.18140983581543,-0.01680353283882141,0.026631945744156837,0.09181409329175949 +karman_re200,ppo,65,26.0,0.8975996375083923,-0.3812166154384613,0.9560005068778992,-0.7893842458724976,1.0560238361358643,-0.3561224043369293,0.0010777191491797566,-0.0023563308641314507,0.003811401082202792,0.00686596380546689,-0.0005125064635649323,-0.004353352356702089,-2.3999440670013428,2.030003547668457,9.72780990600586,-0.023999439552426338,0.020300034433603287,0.09727809578180313 +karman_re200,ppo,66,26.4,1.0064703226089478,-0.4292792081832886,0.9275338053703308,-0.7770577073097229,0.9668300747871399,-0.3764433264732361,0.0037327397149056196,0.000691611843649298,0.004442631732672453,0.0058093382976949215,-0.0038736469577997923,-0.0035188335459679365,-2.5723767280578613,0.23421527445316315,8.841802597045898,-0.025723766535520554,0.0023421526420861483,0.08841802179813385 +karman_re200,ppo,67,26.8,1.1118862628936768,-0.41595184803009033,0.9010260701179504,-0.7717679738998413,0.8876358270645142,-0.34225255250930786,0.0025174703914672136,0.0014236560091376305,0.003331099171191454,0.003924073185771704,-0.004230421036481857,-0.009168248623609543,-2.4563310146331787,-2.062518358230591,6.456820964813232,-0.02456330880522728,-0.02062518335878849,0.06456820666790009 +karman_re200,ppo,68,27.2,1.207296371459961,-0.3484164774417877,0.8562278151512146,-0.7712417840957642,0.827046811580658,-0.25730565190315247,0.0009885963518172503,0.0028928525280207396,0.0002806413685902953,0.004322439432144165,0.0016667527379468083,-0.010513341054320335,-1.588883876800537,-5.814050674438477,2.127040386199951,-0.015888838097453117,-0.058140505105257034,0.021270403638482094 +karman_re200,ppo,69,27.6,1.2477625608444214,-0.1858992725610733,0.7585775852203369,-0.516588568687439,0.7937780022621155,-0.11786697059869766,-0.001114111626520753,0.0039116088300943375,-0.0007930632564239204,0.005488550756126642,0.0031099978368729353,-0.00803722720593214,-1.0306967496871948,-5.859549522399902,2.2612009048461914,-0.010306967422366142,-0.05859549343585968,0.022612009197473526 +karman_re200,ppo,70,28.0,1.2677477598190308,-0.016931310296058655,0.7214778065681458,0.27337905764579773,0.7866817712783813,0.06451000273227692,-0.002130343811586499,0.003932524472475052,-0.0004271348880138248,0.00415260624140501,0.00329801207408309,-0.007600600831210613,-0.5214755535125732,-4.519156455993652,2.085028648376465,-0.0052147554233670235,-0.04519156366586685,0.0208502858877182 +karman_re200,ppo,71,28.4,1.212775468826294,0.17168813943862915,0.7885090112686157,0.7105434536933899,0.8030958771705627,0.2610231041908264,-0.0012118322774767876,0.003528112545609474,-0.0015691472217440605,0.0014190137153491378,0.004360147751867771,-0.00691797211766243,1.7773414850234985,-7.183185577392578,-2.6918458938598633,0.01777341403067112,-0.0718318521976471,-0.026918457821011543 +karman_re200,ppo,72,28.8,1.1081316471099854,0.3248596489429474,0.8502984642982483,0.7703506946563721,0.880984365940094,0.35670575499534607,0.0016704886220395565,0.0028607698623090982,-0.004583308007568121,0.0002398150390945375,0.0063682738691568375,-0.00568626681342721,3.3455116748809814,-8.41006088256836,-4.0,0.03345511481165886,-0.08410060405731201,-0.03999999910593033 +karman_re200,ppo,73,29.2,1.0078359842300415,0.37274375557899475,0.8894705176353455,0.7982009053230286,0.9790728092193604,0.41028881072998047,0.006658943835645914,0.0016138592036440969,-0.008847661316394806,0.0022307236213237047,0.00822540558874607,-0.0052297418005764484,3.7352969646453857,-7.637403964996338,-3.9298624992370605,0.037352968007326126,-0.07637403905391693,-0.03929862380027771 +karman_re200,ppo,74,29.6,0.8850522637367249,0.3352449834346771,0.9291120767593384,0.8237689733505249,1.0717029571533203,0.42356425523757935,0.006106998771429062,-0.00013120965741109103,-0.006881715264171362,0.008372636511921883,0.008214099332690239,-0.004343059379607439,3.209918737411499,-5.9302592277526855,0.5439291000366211,0.03209918737411499,-0.059302590787410736,0.005439290776848793 +karman_re200,ppo,75,30.0,0.7282188534736633,0.26610711216926575,0.9919326305389404,0.8047823309898376,1.1480170488357544,0.38847190141677856,0.005113658495247364,-0.0010974491015076637,-0.0022478546015918255,0.006804467644542456,0.002800212474539876,-0.0036305608227849007,2.7151682376861572,-4.484391689300537,5.874200344085693,0.0271516814827919,-0.04484391584992409,0.05874200165271759 +karman_re200,ppo,76,30.4,0.5913724899291992,0.17359821498394012,1.099522590637207,0.8211442828178406,1.189774751663208,0.28770318627357483,0.002918260172009468,-0.0036346560809761286,-0.0005952013307251036,0.0021680162753909826,-0.0003009955398738384,-0.004402377177029848,2.7073497772216797,-5.408656120300293,3.640784502029419,0.02707349695265293,-0.054086558520793915,0.036407843232154846 +karman_re200,ppo,77,30.8,0.5479171276092529,0.04750039428472519,1.1720378398895264,0.3730586767196655,1.157362937927246,0.06202828511595726,-0.0005024965503253043,-0.004800983238965273,-0.0019431698601692915,0.001195441698655486,-0.00021528992510866374,-0.0039652269333601,3.1261613368988037,-6.095123291015625,0.07310819625854492,0.031261611729860306,-0.06095123291015625,0.000731081934645772 +karman_re200,ppo,78,31.2,0.6357311606407166,-0.07315295934677124,1.116859793663025,-0.4802202582359314,1.173592209815979,-0.10801278054714203,-0.0017256863648071885,-0.005886862985789776,-0.0028685424476861954,0.004653335548937321,-0.0006347188609652221,-0.0035223800223320723,2.097083568572998,-3.1684060096740723,1.6473275423049927,0.02097083441913128,-0.03168405964970589,0.016473274677991867 +karman_re200,ppo,79,31.6,0.77037513256073,-0.1949135959148407,1.0054974555969238,-0.8734877109527588,1.1730962991714478,-0.2353937178850174,-0.0019225615542382002,-0.004759362433105707,-0.0006614185986109078,0.008093294687569141,-0.0006211735308170319,-0.0036922013387084007,-0.8566150665283203,2.0955519676208496,8.381519317626953,-0.008566150441765785,0.020955519750714302,0.08381519466638565 +karman_re200,ppo,80,32.0,0.8748300671577454,-0.32418712973594666,0.9446833729743958,-0.8470543026924133,1.097161054611206,-0.331099271774292,-0.0008596862899139524,-0.003975458908826113,0.0033488739281892776,0.008436799980700016,-2.2034602807252668e-05,-0.005656572058796883,-2.4507217407226562,3.2785933017730713,11.223129272460938,-0.02450721710920334,0.03278593346476555,0.1122312918305397 +karman_re200,ppo,81,32.4,0.9803646206855774,-0.39686575531959534,0.9249425530433655,-0.8232013583183289,0.9923621416091919,-0.3719843924045563,0.002991695888340473,-0.0019561436492949724,0.006009700708091259,0.0071663339622318745,-0.0014568231999874115,-0.003005190985277295,-2.7978951930999756,1.3622188568115234,10.259937286376953,-0.02797895111143589,0.01362218800932169,0.1025993674993515 +karman_re200,ppo,82,32.8,1.0757125616073608,-0.40351545810699463,0.9247979521751404,-0.8317394852638245,0.8841261863708496,-0.3594464361667633,0.00457975547760725,0.0003212337614968419,0.005187390372157097,0.005074475426226854,-0.006248351186513901,-0.005487962160259485,-3.08646559715271,0.3763723373413086,9.46911334991455,-0.0308646559715271,0.003763723187148571,0.09469113498926163 +karman_re200,ppo,83,33.2,1.1594359874725342,-0.3557312786579132,0.954745888710022,-0.8782874345779419,0.7881025075912476,-0.29676303267478943,0.0028749152552336454,0.0017484427662566304,0.002721079858019948,0.0034614920150488615,-0.001705033821053803,-0.010389616712927818,-2.531464099884033,-3.3802151679992676,5.24588680267334,-0.025314640253782272,-0.033802151679992676,0.05245886743068695 +karman_re200,ppo,84,33.6,1.2070817947387695,-0.2423696517944336,1.0169832706451416,-0.7252103686332703,0.7216939330101013,-0.1798253208398819,0.0013229731703177094,0.00300283869728446,0.00042902742279693484,0.0042383973486721516,0.0014460247475653887,-0.00787702202796936,-1.5425387620925903,-6.033371925354004,2.3666980266571045,-0.01542538683861494,-0.06033371761441231,0.023666979745030403 +karman_re200,ppo,85,34.0,1.2384593486785889,-0.09835074096918106,1.0370270013809204,0.06910137832164764,0.7061255574226379,-0.020502952858805656,-0.0014441971434280276,0.0038442278746515512,-0.00017953450151253492,0.004965686704963446,0.001432466902770102,-0.006993075832724571,-1.06093430519104,-4.50738525390625,2.9343175888061523,-0.010609342716634274,-0.04507385194301605,0.029343174770474434 +karman_re200,ppo,86,34.4,1.2350891828536987,0.06603474915027618,0.9789013862609863,0.6753366589546204,0.7349643707275391,0.1548897624015808,-0.0017565202433615923,0.0034800595603883266,-0.0006131295231170952,0.0028756395913660526,0.0023892028257250786,-0.007504824548959732,1.0708645582199097,-6.4613871574401855,-1.17909574508667,0.010708644986152649,-0.06461387127637863,-0.011790957301855087 +karman_re200,ppo,87,34.8,1.1402366161346436,0.2715376317501068,0.9338560700416565,0.7478051781654358,0.7967551946640015,0.32063430547714233,-0.00038884818786755204,0.00322495074942708,-0.0025043832138180733,0.00120292860083282,0.005026744678616524,-0.0067741721868515015,2.994231939315796,-8.675407409667969,-4.0,0.02994231879711151,-0.08675406873226166,-0.03999999910593033 +karman_re200,ppo,88,35.2,1.0234131813049316,0.4037771224975586,0.9331604838371277,0.7832515835762024,0.8979262709617615,0.39278945326805115,0.0043894099071621895,0.002362980740144849,-0.0074280486442148685,0.0003058658621739596,0.006904552690684795,-0.006576900370419025,3.5973799228668213,-8.287656784057617,-4.0,0.03597379848361015,-0.08287656307220459,-0.03999999910593033 +karman_re200,ppo,89,35.6,0.9022305011749268,0.4449767768383026,0.958228349685669,0.8016855120658875,0.9984635710716248,0.4344641864299774,0.006744463928043842,0.0024107727222144604,-0.010503989644348621,0.005874170456081629,0.009200207889080048,-0.0052863978780806065,3.609811305999756,-7.379256248474121,-2.7156429290771484,0.03609811142086983,-0.07379256188869476,-0.02715642936527729 +karman_re200,ppo,90,36.0,0.7811694145202637,0.4184509217739105,0.9997035264968872,0.8026238083839417,1.0867658853530884,0.43120723962783813,0.007366649340838194,-8.802121737971902e-05,-0.004237240646034479,0.008221937343478203,0.005517368204891682,-0.0034207096323370934,2.971911907196045,-5.1884002685546875,3.1307318210601807,0.029719118028879166,-0.0518840029835701,0.031307317316532135 +karman_re200,ppo,91,36.4,0.6661003828048706,0.33445560932159424,1.0767704248428345,0.7955038547515869,1.1600245237350464,0.39037591218948364,0.00580168329179287,-0.0009230091236531734,-0.0014966008020564914,0.003972996026277542,0.0009533815900795162,-0.0033022603020071983,2.4795119762420654,-4.783987522125244,5.621772766113281,0.02479511871933937,-0.047839872539043427,0.056217726320028305 +karman_re200,ppo,92,36.8,0.5825005173683167,0.177512526512146,1.233628749847412,0.7801644206047058,1.189344882965088,0.28513628244400024,0.0015749456360936165,-0.0037683197297155857,-0.0013775952393189073,-0.0007661841809749603,8.899022213881835e-05,-0.003016364760696888,2.914278745651245,-6.12315559387207,1.378333330154419,0.02914278768002987,-0.06123155355453491,0.013783332891762257 +karman_re200,ppo,93,37.2,0.5747025609016418,-0.016495922580361366,1.3232438564300537,0.08006508648395538,1.1298960447311401,0.04205889627337456,-0.0004568567092064768,-0.004971395246684551,-0.004840581212192774,0.001266835373826325,-0.0004378470475785434,-0.0028820717707276344,3.392610788345337,-5.346921920776367,-1.3594841957092285,0.0339261069893837,-0.053469218313694,-0.013594841584563255 +karman_re200,ppo,94,37.6,0.6741890907287598,-0.1685144454240799,1.205315351486206,-0.7533721923828125,1.1161246299743652,-0.15052613615989685,-0.0010806232457980514,-0.006628815550357103,-0.004115380346775055,0.007628780789673328,-0.0009149547549895942,-0.0031971153803169727,1.4036705493927002,-1.0754199028015137,3.9559152126312256,0.014036704786121845,-0.010754198767244816,0.039559151977300644 +karman_re200,ppo,95,38.0,0.7949082255363464,-0.29995226860046387,1.0557256937026978,-0.8752724528312683,1.1045806407928467,-0.2600387930870056,-0.0016098992200568318,-0.0040485248900949955,0.00053419079631567,0.01005167979747057,-0.000604153610765934,-0.003925977740436792,-2.0129804611206055,3.795830249786377,12.0,-0.02012980356812477,0.0379583016037941,0.11999999731779099 +karman_re200,ppo,96,38.4,0.9092861413955688,-0.39352214336395264,0.9835571050643921,-0.794269859790802,1.027762532234192,-0.3373587429523468,-0.00014003175601828843,-0.0039492021314799786,0.006680311635136604,0.00901765562593937,0.0024906378239393234,-0.00570068322122097,-2.8257646560668945,2.9168624877929688,12.0,-0.028257645666599274,0.02916862443089485,0.11999999731779099 +karman_re200,ppo,97,38.8,1.0171887874603271,-0.432702898979187,0.9514103531837463,-0.8088081479072571,0.9300585985183716,-0.36583957076072693,0.004117188975214958,-0.0013912369031459093,0.007367515936493874,0.0067665306851267815,-0.0024178645107895136,-0.002346084685996175,-3.0254058837890625,0.9652203917503357,10.630073547363281,-0.0302540585398674,0.009652203880250454,0.1063007339835167 +karman_re200,ppo,98,39.2,1.1146597862243652,-0.4102497100830078,0.9474522471427917,-0.8368181586265564,0.834738552570343,-0.3410615622997284,0.004002777393907309,0.00029353416175581515,0.005289421882480383,0.004331686068326235,-0.0053464979864656925,-0.007016999181360006,-3.183126211166382,-0.13055706024169922,8.93212890625,-0.03183126077055931,-0.0013055705931037664,0.08932128548622131 +karman_re200,ppo,99,39.6,1.192845106124878,-0.3369721472263336,0.966623067855835,-0.9296392798423767,0.7532989382743835,-0.26731595396995544,0.003086320823058486,0.0017616200493648648,0.0020191511139273643,0.0036804648116230965,-0.0006946726934984326,-0.00836609024554491,-2.3251395225524902,-4.164270401000977,4.1458353996276855,-0.02325139380991459,-0.041642703115940094,0.04145835340023041 +karman_re200,ppo,100,40.0,1.222376823425293,-0.19962230324745178,1.0116842985153198,-0.5318812727928162,0.7032586932182312,-0.1382683664560318,0.0009411004139110446,0.003764393040910363,0.00020818486518692225,0.003601039992645383,0.0008747537503950298,-0.006241051945835352,-1.8259961605072021,-4.37882137298584,3.8875222206115723,-0.018259961158037186,-0.04378821328282356,0.03887522220611572 +karman_re200,ppo,101,40.4,1.245190978050232,-0.05822981894016266,1.0199825763702393,0.3950726389884949,0.7106085419654846,0.019691400229930878,-0.0014600498834624887,0.003211207687854767,-0.0004369164234958589,0.003819650737568736,0.0008134313393384218,-0.0069673568941652775,-0.5160751342773438,-4.702108383178711,1.5090570449829102,-0.005160751286894083,-0.047021083533763885,0.015090569853782654 +karman_re200,ppo,102,40.8,1.218700885772705,0.11362127214670181,0.9715015292167664,0.7497535943984985,0.7518386244773865,0.21354940533638,-0.0020977191161364317,0.0033871070481836796,-0.0013300756691023707,0.0031808025669306517,0.0034561820793896914,-0.007831258699297905,2.0111613273620605,-7.568153381347656,-3.1105613708496094,0.02011161297559738,-0.07568152993917465,-0.031105613335967064 +karman_re200,ppo,103,41.2,1.1181634664535522,0.2934541702270508,0.9305175542831421,0.7503964900970459,0.8221408128738403,0.37156450748443604,0.0007146592251956463,0.0033621257171034813,-0.0035058772191405296,0.0011391297448426485,0.006488500628620386,-0.0068408590741455555,3.278820276260376,-8.707999229431152,-4.0,0.03278820216655731,-0.0870799869298935,-0.03999999910593033 +karman_re200,ppo,104,41.6,1.0090302228927612,0.39244967699050903,0.9217782020568848,0.7876772284507751,0.9288684129714966,0.4329783618450165,0.007174707483500242,0.0021684288512915373,-0.00986393727362156,0.001028598751872778,0.007569835055619478,-0.006890740245580673,3.6789162158966064,-8.24531364440918,-4.0,0.03678916022181511,-0.08245313167572021,-0.03999999910593033 +karman_re200,ppo,105,42.0,0.9005542993545532,0.40332114696502686,0.925315797328949,0.8107817769050598,1.0300536155700684,0.46549493074417114,0.007316286675632,0.0010835160501301289,-0.009451771154999733,0.008336767554283142,0.007891800254583359,-0.004973877687007189,3.171349048614502,-6.7194647789001465,-1.0555329322814941,0.031713489443063736,-0.06719464808702469,-0.0105553288012743 +karman_re200,ppo,106,42.4,0.7902542948722839,0.35732901096343994,0.9353311657905579,0.8294249773025513,1.1166348457336426,0.45066070556640625,0.007182361092418432,-4.198942770017311e-05,-0.004274256993085146,0.007081680465489626,0.003235075855627656,-0.003022522432729602,2.6203694343566895,-4.646454334259033,5.534146785736084,0.026203693822026253,-0.04646454378962517,0.05534146726131439 +karman_re200,ppo,107,42.8,0.6939277648925781,0.259461909532547,0.9639493823051453,0.8586673736572266,1.1905628442764282,0.39512911438941956,0.005611348897218704,-0.0019881578627973795,-0.0016739650163799524,0.00213858881033957,0.000601515406742692,-0.003523979103192687,2.6354620456695557,-5.1829328536987305,4.255780220031738,0.02635462023317814,-0.05182932689785957,0.04255780205130577 +karman_re200,ppo,108,43.2,0.6333954334259033,0.1103576272726059,0.952667236328125,0.7882441878318787,1.202729344367981,0.24719808995723724,0.0006845678435638547,-0.004563465248793364,-0.0025892590638250113,-0.00015137832087930292,-0.00045004868297837675,-0.003837582655251026,3.1873483657836914,-6.37326192855835,0.1991891860961914,0.03187348321080208,-0.06373261660337448,0.0019918917678296566 +karman_re200,ppo,109,43.6,0.6537976861000061,-0.039046335965394974,0.888080894947052,-0.026761846616864204,1.1663416624069214,0.0077328975312411785,-0.0010457936441525817,-0.005792245734483004,-0.0049302843399345875,0.0034280947875231504,-0.0007352636894211173,-0.0035432386212050915,3.3790340423583984,-5.135754585266113,-1.0285401344299316,0.03379033878445625,-0.05135754495859146,-0.010285400785505772 +karman_re200,ppo,110,44.0,0.7435299158096313,-0.16571682691574097,0.8516362905502319,-0.8387048244476318,1.1943812370300293,-0.16196835041046143,-0.0013505390379577875,-0.00626525841653347,-0.002753194887191057,0.008828709833323956,-0.0007968910504132509,-0.003487412352114916,0.6888652443885803,0.10603905469179153,5.970192909240723,0.006888652220368385,0.0010603904956951737,0.05970192700624466 +karman_re200,ppo,111,44.4,0.8204010128974915,-0.3041033446788788,0.8693023920059204,-0.9407545328140259,1.126667857170105,-0.3059883713722229,-0.001618791720829904,-0.00440902728587389,0.0019275954691693187,0.009999772533774376,-0.0010449733817949891,-0.005232674535363913,-2.4715089797973633,4.0,12.0,-0.024715090170502663,0.03999999910593033,0.11999999731779099 +karman_re200,ppo,112,44.8,0.9222679138183594,-0.38927242159843445,0.8935617804527283,-0.8535993099212646,1.020603895187378,-0.39462339878082275,0.0005218109581619501,-0.0036368367727845907,0.0067404466681182384,0.008907802402973175,0.0026003869716078043,-0.005317029543220997,-3.1181352138519287,2.543682098388672,11.909772872924805,-0.031181352213025093,0.025436820462346077,0.11909772455692291 +karman_re200,ppo,113,45.2,1.0259240865707397,-0.4281974136829376,0.909273087978363,-0.8599516153335571,0.9146310687065125,-0.4229918420314789,0.004609846044331789,-0.0007974556647241116,0.006623879075050354,0.006581119727343321,-0.003056339221075177,-0.002315941732376814,-3.2601959705352783,1.141157627105713,11.044239044189453,-0.03260196000337601,0.011411575600504875,0.1104423850774765 +karman_re200,ppo,114,45.6,1.118871808052063,-0.40824273228645325,0.9337762594223022,-0.8823338150978088,0.8082999587059021,-0.39499109983444214,0.004004769027233124,0.0008860084926709533,0.005047500133514404,0.003932836931198835,-0.004752811975777149,-0.007341388612985611,-3.2471516132354736,-0.35262131690979004,8.863020896911621,-0.032471515238285065,-0.003526213113218546,0.08863020688295364 +karman_re200,ppo,115,46.0,1.1961015462875366,-0.33258533477783203,0.9875940084457397,-0.9782664775848389,0.7193987369537354,-0.3112454116344452,0.002705859951674938,0.001938902190886438,0.0022227177396416664,0.0038828623946756124,-0.0005288959946483374,-0.008159621618688107,-2.301624298095703,-4.504244327545166,3.798004627227783,-0.023016242310404778,-0.04504244402050972,0.03798004612326622 +karman_re200,ppo,116,46.4,1.2244657278060913,-0.186228409409523,1.071605920791626,-0.6054633259773254,0.6610040068626404,-0.16637784242630005,0.0008694251882843673,0.0041040293872356415,-0.0003547317464835942,0.003602120792493224,0.0006222884403541684,-0.005945893470197916,-2.0221822261810303,-3.9988369941711426,4.148578643798828,-0.02022182196378708,-0.03998836874961853,0.04148578643798828 +karman_re200,ppo,117,46.8,1.250695824623108,-0.03767138347029686,1.0938342809677124,0.3765653669834137,0.6660992503166199,0.003581262892112136,-0.0018562226323410869,0.0032580248080193996,-0.00035820985794998705,0.003826856380328536,0.0006716804346069694,-0.007204918656498194,-0.6912481188774109,-4.341096878051758,1.8060355186462402,-0.006912481039762497,-0.04341096803545952,0.01806035451591015 +karman_re200,ppo,118,47.2,1.200848937034607,0.1677713543176651,1.0382064580917358,0.8266476988792419,0.7300282120704651,0.183303564786911,-0.0021647741086781025,0.0034089565742760897,-0.0014048418961465359,0.002896654885262251,0.003694743849337101,-0.007510270457714796,1.9474413394927979,-7.538736820220947,-3.252718925476074,0.019474413245916367,-0.0753873661160469,-0.03252718970179558 +karman_re200,ppo,119,47.6,1.0938115119934082,0.34822142124176025,1.0025346279144287,0.8195068836212158,0.8089463114738464,0.3462463617324829,0.00047538074431940913,0.003212406300008297,-0.0033490618225187063,0.0011784195667132735,0.006594785489141941,-0.006941414903849363,3.4673376083374023,-8.764070510864258,-4.0,0.03467337414622307,-0.08764070272445679,-0.03999999910593033 +karman_re200,ppo,120,48.0,0.9633066654205322,0.44081687927246094,1.0280681848526,0.8279842138290405,0.9152981638908386,0.4077477753162384,0.006743387784808874,0.0016886667581275105,-0.009662390686571598,0.0010882248170673847,0.007456869352608919,-0.007493956480175257,3.8230862617492676,-8.356281280517578,-4.0,0.038230862468481064,-0.08356281369924545,-0.03999999910593033 +karman_re200,ppo,121,48.4,0.8044169545173645,0.4599398672580719,1.094226598739624,0.8008389472961426,1.0100284814834595,0.42617306113243103,0.006767666898667812,0.0005969859194010496,-0.009698683395981789,0.008356870152056217,0.007789488881826401,-0.005437192507088184,3.280749559402466,-6.888320446014404,-1.2458276748657227,0.032807495445013046,-0.06888320297002792,-0.012458276934921741 +karman_re200,ppo,122,48.8,0.6200383901596069,0.43061286211013794,1.1844875812530518,0.7051206231117249,1.076522946357727,0.4067467749118805,0.006600511260330677,-0.0006252377643249929,-0.004220511764287949,0.007594516966491938,0.0031422763131558895,-0.0033763230312615633,2.6994194984436035,-4.5942301750183105,5.65671443939209,0.026994194835424423,-0.04594229906797409,0.05656714364886284 +karman_re200,ppo,123,49.2,0.4452676475048065,0.2988537549972534,1.3427554368972778,0.5713407397270203,1.1240214109420776,0.36068791151046753,0.004989731125533581,-0.00252824486233294,-0.0013342179590836167,0.00290897348895669,0.00020331185078248382,-0.004080865532159805,2.4311559200286865,-4.682309150695801,5.417867183685303,0.02431155927479267,-0.04682309180498123,0.054178670048713684 +karman_re200,ppo,124,49.6,0.34908032417297363,0.02867102436721325,1.4729313850402832,0.23347438871860504,1.1372671127319336,0.2822660803794861,-0.0001990518212551251,-0.004634547047317028,-0.0019027568632736802,0.0005186519701965153,-0.00023519416572526097,-0.004784486256539822,2.5852508544921875,-5.53439998626709,2.158015727996826,0.0258525088429451,-0.055344000458717346,0.021580155938863754 +karman_re200,ppo,125,50.0,0.43127888441085815,-0.25639522075653076,1.370200514793396,-0.2817005515098572,1.0660009384155273,0.11111127585172653,-0.0018404221627861261,-0.004943022970110178,-0.003482597880065441,0.0027367144357413054,-5.604504985967651e-05,-0.0033545433543622494,2.0593206882476807,-3.4947988986968994,1.5685067176818848,0.020593207329511642,-0.03494798764586449,0.0156850665807724 +karman_re200,ppo,126,50.4,0.6654576063156128,-0.3622977137565613,1.162009835243225,-0.5643579363822937,0.9308406710624695,-0.15911373496055603,-0.0024559174198657274,-0.005048805847764015,-0.0010630452306941152,0.0065069664269685745,-0.0007421650225296617,-0.0033853482455015182,0.08215098083019257,0.4357624053955078,6.05886697769165,0.0008215098059736192,0.004357623867690563,0.060588669031858444 +karman_re200,ppo,127,50.8,0.8491963148117065,-0.42071524262428284,1.0256396532058716,-0.6482499837875366,0.9035105109214783,-0.31401243805885315,-0.0009581507765688002,-0.003980867564678192,0.0020272433757781982,0.0065941172651946545,-0.0013498920015990734,-0.003950553014874458,-1.711607813835144,2.186978816986084,9.324653625488281,-0.01711607724428177,0.021869787946343422,0.09324653446674347 +karman_re200,ppo,128,51.2,0.9823364019393921,-0.46952828764915466,0.9607558250427246,-0.7124395966529846,0.8909792900085449,-0.36512625217437744,0.0019846204668283463,-0.0025377445854246616,0.004482681397348642,0.006199571304023266,-0.002450932515785098,-0.0032710700761526823,-2.2709286212921143,1.1198234558105469,8.753280639648438,-0.022709285840392113,0.011198234744369984,0.08753280341625214 +karman_re200,ppo,129,51.6,1.0961378812789917,-0.47184035181999207,0.9237791299819946,-0.7628234028816223,0.832319438457489,-0.3639749586582184,0.005089966580271721,2.9209344575065188e-05,0.003998479340225458,0.005067568272352219,-0.007171032018959522,-0.004057817626744509,-2.6938343048095703,0.06829357147216797,8.332042694091797,-0.026938341557979584,0.0006829357007518411,0.08332042396068573 +karman_re200,ppo,130,52.0,1.1933311223983765,-0.426436185836792,0.8960214853286743,-0.8259118795394897,0.761997401714325,-0.32312580943107605,0.003194413846358657,0.0010617547668516636,0.0027048829942941666,0.0034500150941312313,-0.005250369198620319,-0.010218309238553047,-2.514054298400879,-2.836853504180908,5.8036627769470215,-0.025140542536973953,-0.02836853452026844,0.058036625385284424 +karman_re200,ppo,131,52.4,1.2586570978164673,-0.31162065267562866,0.8364838361740112,-0.901893675327301,0.7063919305801392,-0.2351972758769989,0.0018626251257956028,0.0024437173269689083,0.00030510209035128355,0.003985160496085882,0.0007417100132443011,-0.009475336410105228,-1.692814826965332,-6.239538192749023,1.948784351348877,-0.01692814752459526,-0.062395378947257996,0.019487842917442322 +karman_re200,ppo,132,52.8,1.2933220863342285,-0.15031760931015015,0.7883185744285583,-0.31208503246307373,0.6880589127540588,-0.10683237016201019,-0.000933704839553684,0.0037669583689421415,-0.0004222592106088996,0.005593976937234402,0.0020598929841071367,-0.007092676591128111,-1.5936224460601807,-4.665172100067139,3.3995614051818848,-0.015936223790049553,-0.04665172100067139,0.0339956134557724 +karman_re200,ppo,133,53.2,1.29683256149292,0.018120119348168373,0.8185356259346008,0.6098050475120544,0.7197598218917847,0.03366249054670334,-0.0020939717069268227,0.003869036678224802,-0.00017404818208888173,0.003917192108929157,0.002261343877762556,-0.00685052340850234,-0.21557649970054626,-4.768787860870361,1.4487836360931396,-0.0021557649597525597,-0.04768787696957588,0.014487835578620434 +karman_re200,ppo,134,53.6,1.2072643041610718,0.23254287242889404,0.8866936564445496,0.8365513682365417,0.7785036563873291,0.20267000794410706,-0.0012272311141714454,0.003418741514906287,-0.0015233948361128569,0.001987732946872711,0.0035900697112083435,-0.0062627000734210014,2.508941411972046,-8.105122566223145,-4.0,0.025089412927627563,-0.08105122298002243,-0.03999999910593033 +karman_re200,ppo,135,54.0,1.1003206968307495,0.3936525583267212,0.9452564120292664,0.8050881028175354,0.8561285138130188,0.33773118257522583,0.0018999897874891758,0.0030926114413887262,-0.004553915932774544,0.0009781870758160949,0.005867526400834322,-0.006095363292843103,3.513852596282959,-8.399259567260742,-4.0,0.03513852506875992,-0.08399259299039841,-0.03999999910593033 +karman_re200,ppo,136,54.4,0.9533544778823853,0.46993228793144226,1.0146538019180298,0.8153981566429138,0.9524463415145874,0.3838956952095032,0.007094189524650574,0.002370536560192704,-0.009245088323950768,0.003189981682226062,0.007592659443616867,-0.00614084443077445,3.7384467124938965,-7.892636299133301,-3.8812243938446045,0.03738446533679962,-0.07892636209726334,-0.038812242448329926 +karman_re200,ppo,137,54.8,0.7637252807617188,0.48922431468963623,1.1140377521514893,0.7689160108566284,1.0396744012832642,0.3922778069972992,0.006827977951616049,0.00037990938290022314,-0.005717364139854908,0.008795011788606644,0.0070474701933562756,-0.004319091327488422,3.077918529510498,-6.303674697875977,0.41193291544914246,0.03077918477356434,-0.06303674727678299,0.0041193291544914246 +karman_re200,ppo,138,55.2,0.548931896686554,0.45617106556892395,1.2216585874557495,0.6168592572212219,1.1004313230514526,0.36073189973831177,0.005755859427154064,-0.0005786502151750028,-0.00242263893596828,0.006152207963168621,0.0024060732685029507,-0.0033066854812204838,2.49082612991333,-4.667544841766357,6.008111953735352,0.024908261373639107,-0.04667544737458229,0.0600811168551445 +karman_re200,ppo,139,55.6,0.3645475506782532,0.2797664403915405,1.3873234987258911,0.43114998936653137,1.1362544298171997,0.29742902517318726,0.003331589512526989,-0.003110199933871627,-0.001340661197900772,0.0015481174923479557,0.00032937529613263905,-0.003580805379897356,2.4284260272979736,-4.9508771896362305,4.181133270263672,0.024284260347485542,-0.04950876906514168,0.04181133210659027 +karman_re200,ppo,140,56.0,0.3261740505695343,-0.057633087038993835,1.4261430501937866,0.029479239135980606,1.1165447235107422,0.16118036210536957,-3.0299581339932047e-05,-0.004112424794584513,-0.0031681982800364494,0.001461113104596734,-7.842233753763139e-05,-0.0036164247430860996,2.4637465476989746,-4.5955095291137695,2.0099587440490723,0.024637464433908463,-0.04595509544014931,0.020099587738513947 +karman_re200,ppo,141,56.4,0.5004356503486633,-0.32577893137931824,1.2934132814407349,-0.3373993933200836,1.009859561920166,-0.09307046979665756,-0.0020820777863264084,-0.004804741591215134,-0.0025273356586694717,0.005138772539794445,-0.00021920034487266093,-0.0030451202765107155,1.3843659162521362,-2.12838077545166,3.6708950996398926,0.013843659311532974,-0.02128380723297596,0.036708950996398926 +karman_re200,ppo,142,56.8,0.7479958534240723,-0.3751952648162842,1.1545923948287964,-0.5085769891738892,0.9674193859100342,-0.24553117156028748,-0.0019113547168672085,-0.004108489025384188,0.0003722643887158483,0.006643048953264952,-0.0008155716932378709,-0.0028058644384145737,-0.6844428777694702,1.1371269226074219,7.860665798187256,-0.006844428833574057,0.011371268890798092,0.07860665768384933 +karman_re200,ppo,143,57.2,0.916312575340271,-0.424243688583374,1.0681756734848022,-0.5825290679931641,0.9847736954689026,-0.27256259322166443,-0.0001597767841303721,-0.003689558245241642,0.0031282745767384768,0.0061677368357777596,-0.0014164140447974205,-0.0028543078806251287,-1.7384345531463623,1.6841381788253784,8.736087799072266,-0.017384344711899757,0.016841381788253784,0.08736087381839752 +karman_re200,ppo,144,57.6,1.0399399995803833,-0.44130611419677734,0.9986159801483154,-0.6284310221672058,0.9450023174285889,-0.28147879242897034,0.0033172774128615856,-0.0014034243067726493,0.004636041820049286,0.005813713651150465,-0.004636644385755062,-0.00172321533318609,-2.176936149597168,1.0641961097717285,8.302438735961914,-0.021769361570477486,0.010641960427165031,0.08302438259124756 +karman_re200,ppo,145,58.0,1.1455854177474976,-0.4162513315677643,0.9334736466407776,-0.6747509241104126,0.8862603902816772,-0.26192912459373474,0.004825367592275143,-9.790947660803795e-05,0.004296926781535149,0.0039869858883321285,-0.008094490505754948,-0.005521293263882399,-2.450270414352417,-0.4445834159851074,7.314352035522461,-0.024502703920006752,-0.004445834085345268,0.07314351946115494 +karman_re200,ppo,146,58.4,1.227616310119629,-0.33561956882476807,0.832834780216217,-0.7285810708999634,0.8382834792137146,-0.20767660439014435,0.0027563718613237143,0.0016069784760475159,0.0022840071469545364,0.00355472881346941,-0.002748569007962942,-0.010504416190087795,-1.977392554283142,-4.177584648132324,3.654855489730835,-0.019773924723267555,-0.04177584499120712,0.03654855489730835 +karman_re200,ppo,147,58.8,1.2479311227798462,-0.19200371205806732,0.687714159488678,-0.4055755138397217,0.8175632953643799,-0.11726713180541992,0.0009404258453287184,0.0030478578992187977,0.00010988887515850365,0.004549636039882898,0.0014945004368200898,-0.008236822672188282,-1.2139472961425781,-6.482146263122559,1.5246977806091309,-0.012139473110437393,-0.06482145935297012,0.015246977098286152 +karman_re200,ppo,148,59.2,1.2332779169082642,-0.04349353909492493,0.7033207416534424,0.37960484623908997,0.8208439350128174,0.02536906488239765,-0.001400414970703423,0.0037100589834153652,-0.0004775194393005222,0.0060716355219483376,0.0023307872470468283,-0.006751345004886389,-0.3245154023170471,-5.62366247177124,1.5010576248168945,-0.0032451539300382137,-0.0562366247177124,0.015010575763881207 +karman_re200,ppo,149,59.6,1.2109757661819458,0.08629107475280762,0.8209084272384644,0.6431989073753357,0.8199926614761353,0.2450316995382309,-0.0015851068310439587,0.0035220040008425713,-0.0005765161477029324,0.004340434446930885,0.00286527699790895,-0.006217408925294876,1.6834659576416016,-6.987874984741211,-1.325040340423584,0.01683465950191021,-0.06987874954938889,-0.013250403106212616 +karman_re200,ppo,150,60.0,1.1229352951049805,0.230285182595253,0.8765891194343567,0.6648958325386047,0.8807141184806824,0.3566986322402954,0.001232624868862331,0.0036304877139627934,-0.00340770254842937,0.0018473508534952998,0.004418272990733385,-0.005234049167484045,2.729066848754883,-7.601921558380127,-3.396583080291748,0.027290668338537216,-0.07601921260356903,-0.0339658297598362 +karman_re200,ppo,151,60.4,1.0034775733947754,0.34745368361473083,0.8984660506248474,0.7244857549667358,0.9743494987487793,0.40527796745300293,0.007076798006892204,0.0029964970890432596,-0.00892671663314104,0.0016826668288558722,0.005979978013783693,-0.0038063330575823784,3.3275132179260254,-7.60235071182251,-3.4139392375946045,0.03327513113617897,-0.07602350413799286,-0.03413939103484154 +karman_re200,ppo,152,60.8,0.8869384527206421,0.3829370141029358,0.9199160933494568,0.7630519866943359,1.061356544494629,0.43226006627082825,0.0076509942300617695,0.002061392180621624,-0.008732815273106098,0.0074516101740300655,0.00743062375113368,-0.002333446405827999,3.0923526287078857,-6.0013628005981445,-0.17012977600097656,0.030923524871468544,-0.060013625770807266,-0.0017012977041304111 +karman_re200,ppo,153,61.2,0.7772880792617798,0.3555171489715576,0.9557890295982361,0.7934859395027161,1.1376631259918213,0.41453129053115845,0.007871423847973347,0.0011659945594146848,-0.004126377869397402,0.006672060117125511,0.003996517043560743,-0.001921995310112834,2.5892672538757324,-4.1071085929870605,5.435680389404297,0.025892671197652817,-0.0410710833966732,0.05435680225491524 +karman_re200,ppo,154,61.6,0.6810048818588257,0.2720419764518738,1.041113257408142,0.8683747053146362,1.1964163780212402,0.3524119257926941,0.00633541215211153,-0.001107668154872954,-0.002525705611333251,0.0015773039776831865,0.00048149400390684605,-0.00238901493139565,2.561868906021118,-5.110959053039551,4.125558853149414,0.025618689134716988,-0.051109589636325836,0.041255585849285126 +karman_re200,ppo,155,62.0,0.6220608353614807,0.13871008157730103,1.1547887325286865,0.7031990885734558,1.195335030555725,0.21923106908798218,0.001525665051303804,-0.0035474884789437056,-0.0035070818848907948,-8.165284089045599e-05,-0.0004375112184789032,-0.0026467549614608288,3.2320406436920166,-6.261520862579346,-0.033812522888183594,0.032320406287908554,-0.06261520832777023,-0.00033812521724030375 +karman_re200,ppo,156,62.4,0.6447648406028748,-0.00263245333917439,1.17592191696167,-0.21773551404476166,1.1293532848358154,0.00010389258386567235,-0.00033332168823108077,-0.0053099943324923515,-0.0049920398741960526,0.0036736021284013987,-0.0011238135630264878,-0.002927274676039815,3.2483603954315186,-4.7135396003723145,-0.3711371421813965,0.032483603805303574,-0.04713539406657219,-0.003711371449753642 +karman_re200,ppo,157,62.8,0.7292630672454834,-0.12907004356384277,1.0832786560058594,-0.8289821743965149,1.1387120485305786,-0.16632626950740814,-0.0010261061834171414,-0.005388400051742792,-0.0027389186434447765,0.008450377732515335,-0.0010140928206965327,-0.0029206466861069202,0.197187602519989,0.7900915145874023,7.028473377227783,0.0019718760158866644,0.00790091510862112,0.07028473168611526 +karman_re200,ppo,158,63.2,0.8042484521865845,-0.27314242720603943,1.000728964805603,-0.7549275159835815,1.1340186595916748,-0.2726210057735443,-0.0017073513008654118,-0.0042446088045835495,0.001840148470364511,0.009261736646294594,-0.0007793426630087197,-0.004944786429405212,-2.316580057144165,3.7934787273406982,12.0,-0.02316579967737198,0.037934787571430206,0.11999999731779099 +karman_re200,ppo,159,63.6,0.904430091381073,-0.3606506288051605,0.962004542350769,-0.6929657459259033,1.067793607711792,-0.343540221452713,0.0007235864759422839,-0.0037806981708854437,0.006395640783011913,0.008072752505540848,0.001360828522592783,-0.0035367831587791443,-2.510986328125,1.9055852890014648,10.61721420288086,-0.02510986290872097,0.01905585266649723,0.10617213696241379 +karman_re200,ppo,160,64.0,1.0081322193145752,-0.4018157124519348,0.9357658624649048,-0.7058491706848145,0.9888300895690918,-0.35940802097320557,0.00478637358173728,-0.0015243958914652467,0.0061546145007014275,0.006018372252583504,-0.004308216739445925,-0.0022946647368371487,-2.812150001525879,1.3087067604064941,10.2607421875,-0.028121499344706535,0.013087067753076553,0.10260742157697678 +karman_re200,ppo,161,64.4,1.1084901094436646,-0.39719486236572266,0.9047249555587769,-0.7334142327308655,0.9160386919975281,-0.3335567116737366,0.004568017553538084,0.00020732113625854254,0.004802907817065716,0.00342469266615808,-0.00464688241481781,-0.006333973258733749,-2.7589406967163086,-0.8360590934753418,8.004592895507812,-0.027589406818151474,-0.008360590785741806,0.0800459235906601 +karman_re200,ppo,162,64.8,1.2002904415130615,-0.3322235941886902,0.846585750579834,-0.7853503227233887,0.8612948656082153,-0.2641526460647583,0.003214506432414055,0.00173699960578233,0.0020948981400579214,0.003470020368695259,-0.0010306778131052852,-0.006769642233848572,-1.9139528274536133,-4.3925461769104,3.7006232738494873,-0.019139528274536133,-0.043925460427999496,0.037006232887506485 +karman_re200,ppo,163,65.2,1.2339595556259155,-0.19849619269371033,0.7287989854812622,-0.5816197395324707,0.8300012350082397,-0.15261676907539368,0.0005626728525385261,0.0035561651457101107,0.00026117084780707955,0.0037573075387626886,-5.9495228924788535e-05,-0.0056499880738556385,-1.612863302230835,-4.063756465911865,3.642810106277466,-0.01612863317131996,-0.04063756391406059,0.03642810136079788 +karman_re200,ppo,164,65.6,1.2246779203414917,-0.04730065166950226,0.7013253569602966,0.23607668280601501,0.8286378979682922,0.005323543678969145,-0.001500287209637463,0.0036172440741211176,-0.0006435512914322317,0.003786915447562933,0.0006978923338465393,-0.006668337155133486,-0.8843981623649597,-3.842587471008301,1.9185638427734375,-0.0088439816609025,-0.03842587396502495,0.019185638055205345 +karman_re200,ppo,165,66.0,1.2052085399627686,0.08799508213996887,0.7975462079048157,0.6995657086372375,0.8286591172218323,0.2286851704120636,-0.0021248538978397846,0.0036295182071626186,-0.0015443405136466026,0.0031944075599312782,0.0035027628764510155,-0.00748238991945982,1.5796418190002441,-6.928035259246826,-2.572340965270996,0.015796417370438576,-0.06928034871816635,-0.0257234089076519 +karman_re200,ppo,166,66.4,1.1162139177322388,0.21415181457996368,0.8693036437034607,0.7137819528579712,0.8815706372261047,0.3468143343925476,0.000382724916562438,0.003589014057070017,-0.0035870838910341263,0.0020406758412718773,0.005807423964142799,-0.006041723303496838,3.16300106048584,-8.462507247924805,-4.0,0.0316300094127655,-0.08462507277727127,-0.03999999910593033 +karman_re200,ppo,167,66.8,1.0082069635391235,0.27836012840270996,0.8978177905082703,0.7451590895652771,0.9722549319267273,0.4016699194908142,0.006337005645036697,0.002100348239764571,-0.008774717338383198,0.0010847386438399553,0.006218243855983019,-0.006386937573552132,3.513922691345215,-7.853649139404297,-3.6535654067993164,0.03513922542333603,-0.0785364881157875,-0.036535654217004776 +karman_re200,ppo,168,67.2,0.8766646385192871,0.27196553349494934,0.9182336926460266,0.7840925455093384,1.0589370727539062,0.42135849595069885,0.006796212401241064,0.0015342016704380512,-0.00992977898567915,0.007170494645833969,0.0074127609841525555,-0.004682998172938824,3.2227582931518555,-7.009354591369629,-1.285010814666748,0.03222758322954178,-0.0700935423374176,-0.012850107625126839 +karman_re200,ppo,169,67.6,0.7081778645515442,0.26166749000549316,0.9587091207504272,0.8439247608184814,1.1262134313583374,0.39295142889022827,0.007210938725620508,2.326648245798424e-05,-0.00450065266340971,0.0072556668892502785,0.0035447152331471443,-0.002669933717697859,2.767399549484253,-4.995208263397217,4.493372440338135,0.0276739951223135,-0.049952082335948944,0.04493372514843941 +karman_re200,ppo,170,68.0,0.5791128277778625,0.22172507643699646,1.0936400890350342,0.8418933749198914,1.1673952341079712,0.32293957471847534,0.005754066631197929,-0.0014783750521019101,-0.001805268693715334,0.002709455555304885,0.0007438194588758051,-0.002895711688324809,2.6277995109558105,-5.202614784240723,4.5937910079956055,0.026277994737029076,-0.05202614516019821,0.0459379106760025 +karman_re200,ppo,171,68.4,0.5347499847412109,0.11346288025379181,1.2179677486419678,0.4089408218860626,1.147659420967102,0.21214735507965088,0.0012197468895465136,-0.004002043511718512,-0.002144227270036936,-0.00012039101420668885,-9.142097405856475e-05,-0.0029775581788271666,3.0761361122131348,-6.270176887512207,0.8435931205749512,0.030761361122131348,-0.0627017691731453,0.0084359310567379 +karman_re200,ppo,172,68.8,0.5916315317153931,-0.03339993581175804,1.1600958108901978,-0.3974394202232361,1.0517890453338623,0.028461093083024025,-0.0008599182474426925,-0.005265213083475828,-0.004130866378545761,0.0028217786457389593,-0.0006028310162946582,-0.003221893683075905,2.4463446140289307,-3.677438259124756,0.9639186859130859,0.02446344494819641,-0.03677438199520111,0.009639186784625053 +karman_re200,ppo,173,69.2,0.7133663892745972,-0.1768093854188919,1.0192689895629883,-0.7716130018234253,0.9927603006362915,-0.16762329638004303,-0.0018388245953246951,-0.004963661544024944,-0.0019253380596637726,0.007397317793220282,-0.0006149558466859162,-0.0033431854099035263,-0.2405794858932495,1.250014305114746,7.0220255851745605,-0.0024057948030531406,0.012500142678618431,0.07022025436162949 +karman_re200,ppo,174,69.6,0.8172014355659485,-0.3178522288799286,0.933533251285553,-0.777432918548584,1.0023608207702637,-0.28913888335227966,-0.0015126769430935383,-0.004145556595176458,0.0021624199580401182,0.007919924333691597,-0.0005926793091930449,-0.004844560753554106,-2.1489720344543457,3.207397937774658,10.9152193069458,-0.021489720791578293,0.0320739783346653,0.10915219038724899 +karman_re200,ppo,175,70.0,0.9310743808746338,-0.4032694697380066,0.895915687084198,-0.7801406383514404,0.9479939341545105,-0.3773898780345917,0.001732428791001439,-0.0034301963169127703,0.00571822514757514,0.0071616508066654205,-0.000847924267873168,-0.003261788282543421,-2.571939468383789,1.7178573608398438,9.970672607421875,-0.02571939490735531,0.017178572714328766,0.0997067242860794 +karman_re200,ppo,176,70.4,1.0430686473846436,-0.43297234177589417,0.8755207061767578,-0.8087751269340515,0.8714516162872314,-0.4025605022907257,0.0055532436817884445,-0.001135394093580544,0.0054301549680531025,0.0054025244899094105,-0.006266160402446985,-0.0032735473942011595,-3.0765702724456787,1.1097841262817383,9.970288276672363,-0.030765702947974205,0.011097840964794159,0.0997028797864914 +karman_re200,ppo,177,70.8,1.143776535987854,-0.40422192215919495,0.8592813014984131,-0.8677536249160767,0.7929221391677856,-0.37967801094055176,0.004546435084193945,0.0005058142123743892,0.004085000604391098,0.003025504993274808,-0.004774462431669235,-0.008565125055611134,-2.9560725688934326,-1.6222889423370361,7.454531669616699,-0.029560724273324013,-0.016222888603806496,0.07454531639814377 +karman_re200,ppo,178,71.2,1.2137095928192139,-0.3047369122505188,0.8372133374214172,-0.9609053134918213,0.7263448238372803,-0.3014562129974365,0.003239481709897518,0.0017623640596866608,0.001551167224533856,0.003514445386826992,-0.0002024988061748445,-0.00736534409224987,-2.0536253452301025,-5.316246032714844,3.182384490966797,-0.020536253228783607,-0.053162459284067154,0.03182384371757507 +karman_re200,ppo,179,71.6,1.2272343635559082,-0.15593816339969635,0.833588182926178,-0.5055190920829773,0.6852611303329468,-0.1757233589887619,0.00036832166370004416,0.0038492793682962656,-2.1950598238618113e-05,0.0037820814177393913,-0.00015837607497815043,-0.0053413198329508305,-2.059211254119873,-3.4927663803100586,4.63304328918457,-0.020592112094163895,-0.03492766246199608,0.04633043333888054 +karman_re200,ppo,180,72.0,1.253656268119812,-0.0277141984552145,0.8844708800315857,0.443048894405365,0.6932064890861511,-0.02465250715613365,-0.0014907227596268058,0.0034887436777353287,-0.00043637535418383777,0.003395952982828021,8.011156023712829e-05,-0.00678087817505002,-0.6758983731269836,-4.05833101272583,1.5541768074035645,-0.006758983712643385,-0.04058330878615379,0.015541767701506615 +karman_re200,ppo,181,72.4,1.2402468919754028,0.11706540733575821,0.9248868823051453,0.7585303783416748,0.7459724545478821,0.14272800087928772,-0.0020997149404138327,0.0032892629969865084,-0.0012488893698900938,0.0028756726533174515,0.003042193129658699,-0.007662641815841198,2.0952255725860596,-7.84882116317749,-3.792555809020996,0.0209522545337677,-0.07848820835351944,-0.03792555630207062 +karman_re200,ppo,182,72.8,1.1496312618255615,0.2745569050312042,0.9348718523979187,0.722597599029541,0.8092081546783447,0.33387768268585205,0.0007023728103376925,0.003532486967742443,-0.0033838015515357256,0.0018218106124550104,0.0060198185965418816,-0.006799967493861914,3.2385077476501465,-8.702013969421387,-4.0,0.03238507732748985,-0.0870201364159584,-0.03999999910593033 +karman_re200,ppo,183,73.2,1.0465893745422363,0.36344006657600403,0.9421266317367554,0.7686101794242859,0.9097710251808167,0.4115242660045624,0.006856028456240892,0.0020102527923882008,-0.008862456306815147,0.0016063462244346738,0.006633327808231115,-0.007208610884845257,3.5230872631073,-8.19630241394043,-3.929473876953125,0.03523087128996849,-0.08196302503347397,-0.039294738322496414 +karman_re200,ppo,184,73.6,0.9311652183532715,0.36660030484199524,0.9579094052314758,0.7942000031471252,1.012376070022583,0.43579423427581787,0.006706856656819582,0.0008857165230438113,-0.008174993097782135,0.008360709063708782,0.00732019729912281,-0.004989566281437874,3.110417127609253,-7.056619167327881,-1.0328803062438965,0.03110416978597641,-0.07056619226932526,-0.010328803211450577 +karman_re200,ppo,185,74.0,0.7980883121490479,0.3274267315864563,0.991934061050415,0.824757993221283,1.0949537754058838,0.41761407256126404,0.006538875866681337,-0.00035108611336909235,-0.003592998720705509,0.006926161702722311,0.0031643640249967575,-0.003157187718898058,2.63749098777771,-4.913328647613525,5.258770942687988,0.02637491002678871,-0.049133285880088806,0.052587706595659256 +karman_re200,ppo,186,74.4,0.6777946352958679,0.23798736929893494,1.0869578123092651,0.8293800354003906,1.1545501947402954,0.35253480076789856,0.004750935360789299,-0.0022272763308137655,-0.001581541495397687,0.0023133992217481136,0.0009371151681989431,-0.003505672561004758,2.668851137161255,-5.280342102050781,4.005637168884277,0.026688510552048683,-0.05280341953039169,0.040056370198726654 +karman_re200,ppo,187,74.8,0.6178068518638611,0.1023450642824173,1.1898112297058105,0.5651971697807312,1.163355827331543,0.22712263464927673,0.0007427678210660815,-0.004571898374706507,-0.0028862589970231056,0.0009021296864375472,-0.0007014197763055563,-0.00353767117485404,3.1428115367889404,-6.088797569274902,0.4799756705760956,0.03142811357975006,-0.06088797375559807,0.004799756687134504 +karman_re200,ppo,188,75.2,0.6579063534736633,-0.05214425548911095,1.157507300376892,-0.29344189167022705,1.0875377655029297,-0.011256923899054527,-0.0013292005751281977,-0.005624113138765097,-0.003725206945091486,0.0047052581794559956,-0.0006986143416725099,-0.003422629553824663,2.7233550548553467,-3.9327774047851562,0.865623950958252,0.02723355032503605,-0.039327774196863174,0.00865623913705349 +karman_re200,ppo,189,75.6,0.7623220086097717,-0.19469688832759857,1.0357882976531982,-0.7707528471946716,1.0862305164337158,-0.1848662793636322,-0.0018122692126780748,-0.004967495799064636,-0.001124944188632071,0.00839902088046074,-0.000767061545047909,-0.0033534569665789604,-0.317874014377594,1.383237361907959,7.732048988342285,-0.0031787401530891657,0.013832373544573784,0.07732048630714417 +karman_re200,ppo,190,76.0,0.8576639294624329,-0.3349034786224365,0.960788905620575,-0.7763930559158325,1.0794272422790527,-0.28561973571777344,-0.001546841231174767,-0.0041769715026021,0.0026716249994933605,0.00838152039796114,-0.0004972508759237826,-0.0053971195593476295,-2.3042569160461426,3.2774739265441895,11.339506149291992,-0.023042568936944008,0.03277473896741867,0.11339505761861801 +karman_re200,ppo,191,76.4,0.9679381847381592,-0.40741783380508423,0.9213235974311829,-0.7681533694267273,0.9968564510345459,-0.34664055705070496,0.0018660249188542366,-0.0028557172045111656,0.005827563814818859,0.007572249975055456,-0.00044830457773059607,-0.0030699698254466057,-2.579016923904419,1.4715299606323242,9.930007934570312,-0.025790167972445488,0.014715299010276794,0.0993000790476799 +karman_re200,ppo,192,76.8,1.0759952068328857,-0.4208453297615051,0.8884625434875488,-0.7992666363716125,0.9039692878723145,-0.3512512147426605,0.005128413438796997,-0.0005124675808474422,0.005317832808941603,0.005652862600982189,-0.006260007619857788,-0.0034516053274273872,-3.01941180229187,0.9983963370323181,9.935487747192383,-0.03019411675632,0.009983963333070278,0.09935487806797028 +karman_re200,ppo,193,77.2,1.1711251735687256,-0.3685797452926636,0.8484801650047302,-0.8761836886405945,0.822306752204895,-0.3111937940120697,0.0038374708965420723,0.0011483537964522839,0.0038760583847761154,0.0033061588183045387,-0.004111261572688818,-0.00895962305366993,-2.834473133087158,-1.8547799587249756,6.953559398651123,-0.02834472991526127,-0.018547799438238144,0.06953559070825577 +karman_re200,ppo,194,77.6,1.21611750125885,-0.2446659654378891,0.786500096321106,-0.8322375416755676,0.7633046507835388,-0.22035926580429077,0.002320815110579133,0.0022496317978948355,0.0012835182715207338,0.0038751643151044846,0.0005209589726291597,-0.007901154458522797,-1.9372847080230713,-5.417227745056152,2.7722437381744385,-0.0193728469312191,-0.05417227745056152,0.02772243693470955 +karman_re200,ppo,195,78.0,1.2216588258743286,-0.10365030914545059,0.7872428894042969,-0.04711407795548439,0.745110273361206,-0.0933871641755104,-0.00047967818682082,0.0039658877067267895,-0.00013216552906669676,0.004347017966210842,0.0008152223308570683,-0.006049771793186665,-1.6032682657241821,-4.069974899291992,3.693572998046875,-0.016032682731747627,-0.04069974645972252,0.036935728043317795 +karman_re200,ppo,196,78.4,1.2398606538772583,0.019835561513900757,0.8533066511154175,0.6664581894874573,0.764278769493103,0.0725579634308815,-0.0015708996215835214,0.003407915122807026,-0.0007674042717553675,0.0035319707822054625,0.0013212610501796007,-0.006752479821443558,0.6387929320335388,-5.920623779296875,-0.568488597869873,0.00638792896643281,-0.05920623615384102,-0.005684885662049055 +karman_re200,ppo,197,78.8,1.1874514818191528,0.1710532009601593,0.9024556875228882,0.7118546366691589,0.794735312461853,0.27746060490608215,-0.0014223840553313494,0.003266766434535384,-0.0017467247089371085,0.0027265476528555155,0.003779195947572589,-0.007227993570268154,2.7463741302490234,-8.321826934814453,-4.0,0.027463741600513458,-0.08321826905012131,-0.03999999910593033 +karman_re200,ppo,198,79.2,1.0754976272583008,0.31641972064971924,0.9229133725166321,0.7368345856666565,0.8781017065048218,0.3817964196205139,0.002951705828309059,0.0031545814126729965,-0.005602891556918621,0.0007541839731857181,0.006088497117161751,-0.007007690612226725,3.2844083309173584,-8.29943561553955,-4.0,0.03284408152103424,-0.08299435675144196,-0.03999999910593033 +karman_re200,ppo,199,79.6,0.9615001082420349,0.37533214688301086,0.947110652923584,0.770409107208252,0.9760763049125671,0.4214988648891449,0.007723832502961159,0.0031622627284377813,-0.010648873634636402,0.003790436079725623,0.008514493703842163,-0.00594718474894762,3.593224287033081,-8.150312423706055,-3.6440041065216064,0.03593224287033081,-0.08150312304496765,-0.03644004091620445 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv new file mode 100644 index 0000000..b1591d7 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re200,sr,60,24.0,30,0.8725605110353273,6,0.9129509965578715,0.923751145399486,0.7412811557451884,0.8166837671150764,0.910058319568634,0.9306376818257074 +karman_re200,sr,90,36.0,30,0.856733894878481,4,0.8951017737388611,0.9233163781153659,0.7296254674593607,0.7829932334522406,0.8922252635161082,0.9171412529889494 +karman_re200,sr,120,48.0,30,0.8548920122880695,2,0.8951526343822479,0.9240590287838131,0.7231071054935455,0.7803078128335377,0.889964880545934,0.9167606116893391 +karman_re200,sr,150,60.0,30,0.8578120658368183,1,0.8990720311800638,0.9259831736717994,0.726746000846227,0.7841988384723664,0.894128934542338,0.916743416308115 +karman_re200,sr,180,72.0,30,0.857036279845569,0,0.9005327105522156,0.9213765569962561,0.727202969789505,0.7767272129034003,0.8932217260201772,0.923156502811859 +karman_re200,sr,200,80.0,30,0.8560309972096647,4,0.8941423873106639,0.9268932865001261,0.721358698606491,0.7802774014572302,0.8943212985992431,0.9191929107842346 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_long.csv new file mode 100644 index 0000000..3a15078 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,sr,0,0.0,velocity,upper_ux,1.1116604804992676 +karman_re200,sr,0,0.0,velocity,upper_uy,0.2913402318954468 +karman_re200,sr,0,0.0,velocity,center_ux,1.0067689418792725 +karman_re200,sr,0,0.0,velocity,center_uy,0.45077061653137207 +karman_re200,sr,0,0.0,velocity,lower_ux,0.9823883175849915 +karman_re200,sr,0,0.0,velocity,lower_uy,0.3228631317615509 +karman_re200,sr,1,0.4,velocity,upper_ux,1.0397015810012817 +karman_re200,sr,1,0.4,velocity,upper_uy,0.31608039140701294 +karman_re200,sr,1,0.4,velocity,center_ux,1.0097661018371582 +karman_re200,sr,1,0.4,velocity,center_uy,0.4659765660762787 +karman_re200,sr,1,0.4,velocity,lower_ux,1.044013500213623 +karman_re200,sr,1,0.4,velocity,lower_uy,0.3537726104259491 +karman_re200,sr,2,0.8,velocity,upper_ux,0.9833889007568359 +karman_re200,sr,2,0.8,velocity,upper_uy,0.30929136276245117 +karman_re200,sr,2,0.8,velocity,center_ux,1.0035476684570312 +karman_re200,sr,2,0.8,velocity,center_uy,0.4605099856853485 +karman_re200,sr,2,0.8,velocity,lower_ux,1.103630781173706 +karman_re200,sr,2,0.8,velocity,lower_uy,0.3610314130783081 +karman_re200,sr,3,1.2,velocity,upper_ux,0.9407623410224915 +karman_re200,sr,3,1.2,velocity,upper_uy,0.27143675088882446 +karman_re200,sr,3,1.2,velocity,center_ux,0.9846223592758179 +karman_re200,sr,3,1.2,velocity,center_uy,0.4292444884777069 +karman_re200,sr,3,1.2,velocity,lower_ux,1.1683834791183472 +karman_re200,sr,3,1.2,velocity,lower_uy,0.33917415142059326 +karman_re200,sr,4,1.6,velocity,upper_ux,0.9109740257263184 +karman_re200,sr,4,1.6,velocity,upper_uy,0.19634009897708893 +karman_re200,sr,4,1.6,velocity,center_ux,0.947691798210144 +karman_re200,sr,4,1.6,velocity,center_uy,0.327419638633728 +karman_re200,sr,4,1.6,velocity,lower_ux,1.245143175125122 +karman_re200,sr,4,1.6,velocity,lower_uy,0.28066080808639526 +karman_re200,sr,5,2.0,velocity,upper_ux,0.8837512135505676 +karman_re200,sr,5,2.0,velocity,upper_uy,0.0644649863243103 +karman_re200,sr,5,2.0,velocity,center_ux,0.9234367609024048 +karman_re200,sr,5,2.0,velocity,center_uy,0.0908089354634285 +karman_re200,sr,5,2.0,velocity,lower_ux,1.2716646194458008 +karman_re200,sr,5,2.0,velocity,lower_uy,0.09437479078769684 +karman_re200,sr,6,2.4,velocity,upper_ux,0.8760082721710205 +karman_re200,sr,6,2.4,velocity,upper_uy,-0.11263827979564667 +karman_re200,sr,6,2.4,velocity,center_ux,0.9428457021713257 +karman_re200,sr,6,2.4,velocity,center_uy,-0.15998901426792145 +karman_re200,sr,6,2.4,velocity,lower_ux,1.271299958229065 +karman_re200,sr,6,2.4,velocity,lower_uy,-0.0748618096113205 +karman_re200,sr,7,2.8,velocity,upper_ux,0.9085723161697388 +karman_re200,sr,7,2.8,velocity,upper_uy,-0.24762004613876343 +karman_re200,sr,7,2.8,velocity,center_ux,0.9666978716850281 +karman_re200,sr,7,2.8,velocity,center_uy,-0.37208375334739685 +karman_re200,sr,7,2.8,velocity,lower_ux,1.2092394828796387 +karman_re200,sr,7,2.8,velocity,lower_uy,-0.23839826881885529 +karman_re200,sr,8,3.2,velocity,upper_ux,0.9715722799301147 +karman_re200,sr,8,3.2,velocity,upper_uy,-0.2965755760669708 +karman_re200,sr,8,3.2,velocity,center_ux,0.9870283603668213 +karman_re200,sr,8,3.2,velocity,center_uy,-0.4748254418373108 +karman_re200,sr,8,3.2,velocity,lower_ux,1.1178507804870605 +karman_re200,sr,8,3.2,velocity,lower_uy,-0.33965981006622314 +karman_re200,sr,9,3.6,velocity,upper_ux,1.0374376773834229 +karman_re200,sr,9,3.6,velocity,upper_uy,-0.3314094841480255 +karman_re200,sr,9,3.6,velocity,center_ux,1.0061455965042114 +karman_re200,sr,9,3.6,velocity,center_uy,-0.4868294596672058 +karman_re200,sr,9,3.6,velocity,lower_ux,1.0479073524475098 +karman_re200,sr,9,3.6,velocity,lower_uy,-0.36579740047454834 +karman_re200,sr,10,4.0,velocity,upper_ux,1.0997576713562012 +karman_re200,sr,10,4.0,velocity,upper_uy,-0.3367098867893219 +karman_re200,sr,10,4.0,velocity,center_ux,1.0143948793411255 +karman_re200,sr,10,4.0,velocity,center_uy,-0.4737146496772766 +karman_re200,sr,10,4.0,velocity,lower_ux,0.9958338141441345 +karman_re200,sr,10,4.0,velocity,lower_uy,-0.35619866847991943 +karman_re200,sr,11,4.4,velocity,upper_ux,1.16373872756958 +karman_re200,sr,11,4.4,velocity,upper_uy,-0.3104960322380066 +karman_re200,sr,11,4.4,velocity,center_ux,1.0083043575286865 +karman_re200,sr,11,4.4,velocity,center_uy,-0.4342651069164276 +karman_re200,sr,11,4.4,velocity,lower_ux,0.9571254253387451 +karman_re200,sr,11,4.4,velocity,lower_uy,-0.3121921420097351 +karman_re200,sr,12,4.8,velocity,upper_ux,1.2350831031799316 +karman_re200,sr,12,4.8,velocity,upper_uy,-0.2509011924266815 +karman_re200,sr,12,4.8,velocity,center_ux,0.9836418628692627 +karman_re200,sr,12,4.8,velocity,center_uy,-0.31402209401130676 +karman_re200,sr,12,4.8,velocity,lower_ux,0.9277738332748413 +karman_re200,sr,12,4.8,velocity,lower_uy,-0.21756164729595184 +karman_re200,sr,13,5.2,velocity,upper_ux,1.260117769241333 +karman_re200,sr,13,5.2,velocity,upper_uy,-0.08975174278020859 +karman_re200,sr,13,5.2,velocity,center_ux,0.9709721207618713 +karman_re200,sr,13,5.2,velocity,center_uy,-0.0632845014333725 +karman_re200,sr,13,5.2,velocity,lower_ux,0.8954675793647766 +karman_re200,sr,13,5.2,velocity,lower_uy,-0.03770124167203903 +karman_re200,sr,14,5.6,velocity,upper_ux,1.2464669942855835 +karman_re200,sr,14,5.6,velocity,upper_uy,0.07390062510967255 +karman_re200,sr,14,5.6,velocity,center_ux,0.9851139783859253 +karman_re200,sr,14,5.6,velocity,center_uy,0.1919192522764206 +karman_re200,sr,14,5.6,velocity,lower_ux,0.8875181078910828 +karman_re200,sr,14,5.6,velocity,lower_uy,0.18118157982826233 +karman_re200,sr,15,6.0,velocity,upper_ux,1.1925227642059326 +karman_re200,sr,15,6.0,velocity,upper_uy,0.2045702189207077 +karman_re200,sr,15,6.0,velocity,center_ux,0.9896596670150757 +karman_re200,sr,15,6.0,velocity,center_uy,0.401601105928421 +karman_re200,sr,15,6.0,velocity,lower_ux,0.9297524094581604 +karman_re200,sr,15,6.0,velocity,lower_uy,0.3021825850009918 +karman_re200,sr,16,6.4,velocity,upper_ux,1.1025211811065674 +karman_re200,sr,16,6.4,velocity,upper_uy,0.28437748551368713 +karman_re200,sr,16,6.4,velocity,center_ux,0.9915844798088074 +karman_re200,sr,16,6.4,velocity,center_uy,0.46360301971435547 +karman_re200,sr,16,6.4,velocity,lower_ux,0.99402916431427 +karman_re200,sr,16,6.4,velocity,lower_uy,0.3385518193244934 +karman_re200,sr,17,6.8,velocity,upper_ux,1.0341092348098755 +karman_re200,sr,17,6.8,velocity,upper_uy,0.3039852976799011 +karman_re200,sr,17,6.8,velocity,center_ux,0.9867866635322571 +karman_re200,sr,17,6.8,velocity,center_uy,0.4787076711654663 +karman_re200,sr,17,6.8,velocity,lower_ux,1.0598081350326538 +karman_re200,sr,17,6.8,velocity,lower_uy,0.36762234568595886 +karman_re200,sr,18,7.2,velocity,upper_ux,0.9855332374572754 +karman_re200,sr,18,7.2,velocity,upper_uy,0.2876709997653961 +karman_re200,sr,18,7.2,velocity,center_ux,0.9690181612968445 +karman_re200,sr,18,7.2,velocity,center_uy,0.47668004035949707 +karman_re200,sr,18,7.2,velocity,lower_ux,1.1278282403945923 +karman_re200,sr,18,7.2,velocity,lower_uy,0.36217907071113586 +karman_re200,sr,19,7.6,velocity,upper_ux,0.9486334323883057 +karman_re200,sr,19,7.6,velocity,upper_uy,0.2361646592617035 +karman_re200,sr,19,7.6,velocity,center_ux,0.9268463850021362 +karman_re200,sr,19,7.6,velocity,center_uy,0.45639485120773315 +karman_re200,sr,19,7.6,velocity,lower_ux,1.202776312828064 +karman_re200,sr,19,7.6,velocity,lower_uy,0.3195565938949585 +karman_re200,sr,20,8.0,velocity,upper_ux,0.9252208471298218 +karman_re200,sr,20,8.0,velocity,upper_uy,0.15227514505386353 +karman_re200,sr,20,8.0,velocity,center_ux,0.860405445098877 +karman_re200,sr,20,8.0,velocity,center_uy,0.35518282651901245 +karman_re200,sr,20,8.0,velocity,lower_ux,1.2731823921203613 +karman_re200,sr,20,8.0,velocity,lower_uy,0.2335444837808609 +karman_re200,sr,21,8.4,velocity,upper_ux,0.9118699431419373 +karman_re200,sr,21,8.4,velocity,upper_uy,0.03393873572349548 +karman_re200,sr,21,8.4,velocity,center_ux,0.7973281145095825 +karman_re200,sr,21,8.4,velocity,center_uy,0.09971339255571365 +karman_re200,sr,21,8.4,velocity,lower_ux,1.342128038406372 +karman_re200,sr,21,8.4,velocity,lower_uy,0.15785248577594757 +karman_re200,sr,22,8.8,velocity,upper_ux,0.8966085314750671 +karman_re200,sr,22,8.8,velocity,upper_uy,-0.11849325150251389 +karman_re200,sr,22,8.8,velocity,center_ux,0.8024567365646362 +karman_re200,sr,22,8.8,velocity,center_uy,-0.20382724702358246 +karman_re200,sr,22,8.8,velocity,lower_ux,1.3387551307678223 +karman_re200,sr,22,8.8,velocity,lower_uy,0.07155068218708038 +karman_re200,sr,23,9.2,velocity,upper_ux,0.9200095534324646 +karman_re200,sr,23,9.2,velocity,upper_uy,-0.21994690597057343 +karman_re200,sr,23,9.2,velocity,center_ux,0.8558069467544556 +karman_re200,sr,23,9.2,velocity,center_uy,-0.38393253087997437 +karman_re200,sr,23,9.2,velocity,lower_ux,1.2081149816513062 +karman_re200,sr,23,9.2,velocity,lower_uy,-0.147115558385849 +karman_re200,sr,24,9.6,velocity,upper_ux,0.9728437662124634 +karman_re200,sr,24,9.6,velocity,upper_uy,-0.277106910943985 +karman_re200,sr,24,9.6,velocity,center_ux,0.9003826975822449 +karman_re200,sr,24,9.6,velocity,center_uy,-0.4704355299472809 +karman_re200,sr,24,9.6,velocity,lower_ux,1.1166505813598633 +karman_re200,sr,24,9.6,velocity,lower_uy,-0.32697147130966187 +karman_re200,sr,25,10.0,velocity,upper_ux,1.035967469215393 +karman_re200,sr,25,10.0,velocity,upper_uy,-0.3208758234977722 +karman_re200,sr,25,10.0,velocity,center_ux,0.9339990019798279 +karman_re200,sr,25,10.0,velocity,center_uy,-0.5049284100532532 +karman_re200,sr,25,10.0,velocity,lower_ux,1.0592210292816162 +karman_re200,sr,25,10.0,velocity,lower_uy,-0.3888676166534424 +karman_re200,sr,26,10.4,velocity,upper_ux,1.0982823371887207 +karman_re200,sr,26,10.4,velocity,upper_uy,-0.3207554519176483 +karman_re200,sr,26,10.4,velocity,center_ux,0.9511874318122864 +karman_re200,sr,26,10.4,velocity,center_uy,-0.5096834301948547 +karman_re200,sr,26,10.4,velocity,lower_ux,1.0091445446014404 +karman_re200,sr,26,10.4,velocity,lower_uy,-0.36906278133392334 +karman_re200,sr,27,10.8,velocity,upper_ux,1.1622849702835083 +karman_re200,sr,27,10.8,velocity,upper_uy,-0.2819976210594177 +karman_re200,sr,27,10.8,velocity,center_ux,0.9551045298576355 +karman_re200,sr,27,10.8,velocity,center_uy,-0.49101969599723816 +karman_re200,sr,27,10.8,velocity,lower_ux,0.9643440246582031 +karman_re200,sr,27,10.8,velocity,lower_uy,-0.3022429049015045 +karman_re200,sr,28,11.2,velocity,upper_ux,1.219591498374939 +karman_re200,sr,28,11.2,velocity,upper_uy,-0.2136930674314499 +karman_re200,sr,28,11.2,velocity,center_ux,0.9446563720703125 +karman_re200,sr,28,11.2,velocity,center_uy,-0.4039857089519501 +karman_re200,sr,28,11.2,velocity,lower_ux,0.9249096512794495 +karman_re200,sr,28,11.2,velocity,lower_uy,-0.1987316906452179 +karman_re200,sr,29,11.6,velocity,upper_ux,1.2738767862319946 +karman_re200,sr,29,11.6,velocity,upper_uy,-0.14131665229797363 +karman_re200,sr,29,11.6,velocity,center_ux,0.8667047023773193 +karman_re200,sr,29,11.6,velocity,center_uy,-0.22368505597114563 +karman_re200,sr,29,11.6,velocity,lower_ux,0.8963532447814941 +karman_re200,sr,29,11.6,velocity,lower_uy,-0.05666128545999527 +karman_re200,sr,30,12.0,velocity,upper_ux,1.3181096315383911 +karman_re200,sr,30,12.0,velocity,upper_uy,-0.09702491760253906 +karman_re200,sr,30,12.0,velocity,center_ux,0.8196156024932861 +karman_re200,sr,30,12.0,velocity,center_uy,0.14319980144500732 +karman_re200,sr,30,12.0,velocity,lower_ux,0.8736388683319092 +karman_re200,sr,30,12.0,velocity,lower_uy,0.11551113426685333 +karman_re200,sr,31,12.4,velocity,upper_ux,1.234991192817688 +karman_re200,sr,31,12.4,velocity,upper_uy,0.005895944777876139 +karman_re200,sr,31,12.4,velocity,center_ux,0.8546782732009888 +karman_re200,sr,31,12.4,velocity,center_uy,0.39401867985725403 +karman_re200,sr,31,12.4,velocity,lower_ux,0.8996490240097046 +karman_re200,sr,31,12.4,velocity,lower_uy,0.2288101762533188 +karman_re200,sr,32,12.8,velocity,upper_ux,1.0864986181259155 +karman_re200,sr,32,12.8,velocity,upper_uy,0.23501090705394745 +karman_re200,sr,32,12.8,velocity,center_ux,0.8895165324211121 +karman_re200,sr,32,12.8,velocity,center_uy,0.500540554523468 +karman_re200,sr,32,12.8,velocity,lower_ux,0.9586565494537354 +karman_re200,sr,32,12.8,velocity,lower_uy,0.2935500144958496 +karman_re200,sr,33,13.2,velocity,upper_ux,1.0111894607543945 +karman_re200,sr,33,13.2,velocity,upper_uy,0.3549853265285492 +karman_re200,sr,33,13.2,velocity,center_ux,0.9149802923202515 +karman_re200,sr,33,13.2,velocity,center_uy,0.5320210456848145 +karman_re200,sr,33,13.2,velocity,lower_ux,1.0231305360794067 +karman_re200,sr,33,13.2,velocity,lower_uy,0.33862030506134033 +karman_re200,sr,34,13.6,velocity,upper_ux,0.9585633873939514 +karman_re200,sr,34,13.6,velocity,upper_uy,0.36224520206451416 +karman_re200,sr,34,13.6,velocity,center_ux,0.9307906627655029 +karman_re200,sr,34,13.6,velocity,center_uy,0.5392858982086182 +karman_re200,sr,34,13.6,velocity,lower_ux,1.0902857780456543 +karman_re200,sr,34,13.6,velocity,lower_uy,0.33860766887664795 +karman_re200,sr,35,14.0,velocity,upper_ux,0.9089023470878601 +karman_re200,sr,35,14.0,velocity,upper_uy,0.31284499168395996 +karman_re200,sr,35,14.0,velocity,center_ux,0.9384575486183167 +karman_re200,sr,35,14.0,velocity,center_uy,0.5260884761810303 +karman_re200,sr,35,14.0,velocity,lower_ux,1.1564791202545166 +karman_re200,sr,35,14.0,velocity,lower_uy,0.3010042905807495 +karman_re200,sr,36,14.4,velocity,upper_ux,0.8623908758163452 +karman_re200,sr,36,14.4,velocity,upper_uy,0.22451400756835938 +karman_re200,sr,36,14.4,velocity,center_ux,0.9550034403800964 +karman_re200,sr,36,14.4,velocity,center_uy,0.43396031856536865 +karman_re200,sr,36,14.4,velocity,lower_ux,1.20885169506073 +karman_re200,sr,36,14.4,velocity,lower_uy,0.23802663385868073 +karman_re200,sr,37,14.8,velocity,upper_ux,0.8386271595954895 +karman_re200,sr,37,14.8,velocity,upper_uy,0.10393214970827103 +karman_re200,sr,37,14.8,velocity,center_ux,0.9035478234291077 +karman_re200,sr,37,14.8,velocity,center_uy,0.3189420998096466 +karman_re200,sr,37,14.8,velocity,lower_ux,1.255265712738037 +karman_re200,sr,37,14.8,velocity,lower_uy,0.20235897600650787 +karman_re200,sr,38,15.2,velocity,upper_ux,0.8401508331298828 +karman_re200,sr,38,15.2,velocity,upper_uy,-0.037613943219184875 +karman_re200,sr,38,15.2,velocity,center_ux,0.8191074132919312 +karman_re200,sr,38,15.2,velocity,center_uy,-0.041056886315345764 +karman_re200,sr,38,15.2,velocity,lower_ux,1.2773737907409668 +karman_re200,sr,38,15.2,velocity,lower_uy,0.2335783988237381 +karman_re200,sr,39,15.6,velocity,upper_ux,0.862506628036499 +karman_re200,sr,39,15.6,velocity,upper_uy,-0.1771361380815506 +karman_re200,sr,39,15.6,velocity,center_ux,0.8283946514129639 +karman_re200,sr,39,15.6,velocity,center_uy,-0.3716527819633484 +karman_re200,sr,39,15.6,velocity,lower_ux,1.171791434288025 +karman_re200,sr,39,15.6,velocity,lower_uy,-0.05312895402312279 +karman_re200,sr,40,16.0,velocity,upper_ux,0.9219353199005127 +karman_re200,sr,40,16.0,velocity,upper_uy,-0.2603982388973236 +karman_re200,sr,40,16.0,velocity,center_ux,0.8726831674575806 +karman_re200,sr,40,16.0,velocity,center_uy,-0.5145738124847412 +karman_re200,sr,40,16.0,velocity,lower_ux,1.1232495307922363 +karman_re200,sr,40,16.0,velocity,lower_uy,-0.34003394842147827 +karman_re200,sr,41,16.4,velocity,upper_ux,0.9915278553962708 +karman_re200,sr,41,16.4,velocity,upper_uy,-0.3101780116558075 +karman_re200,sr,41,16.4,velocity,center_ux,0.9163368940353394 +karman_re200,sr,41,16.4,velocity,center_uy,-0.5611602663993835 +karman_re200,sr,41,16.4,velocity,lower_ux,1.071282148361206 +karman_re200,sr,41,16.4,velocity,lower_uy,-0.43948879837989807 +karman_re200,sr,42,16.8,velocity,upper_ux,1.0614134073257446 +karman_re200,sr,42,16.8,velocity,upper_uy,-0.3132155239582062 +karman_re200,sr,42,16.8,velocity,center_ux,0.9548328518867493 +karman_re200,sr,42,16.8,velocity,center_uy,-0.5626580715179443 +karman_re200,sr,42,16.8,velocity,lower_ux,1.0155447721481323 +karman_re200,sr,42,16.8,velocity,lower_uy,-0.42952287197113037 +karman_re200,sr,43,17.2,velocity,upper_ux,1.1259846687316895 +karman_re200,sr,43,17.2,velocity,upper_uy,-0.27516594529151917 +karman_re200,sr,43,17.2,velocity,center_ux,0.9896486401557922 +karman_re200,sr,43,17.2,velocity,center_uy,-0.5341711640357971 +karman_re200,sr,43,17.2,velocity,lower_ux,0.9593921899795532 +karman_re200,sr,43,17.2,velocity,lower_uy,-0.3619326651096344 +karman_re200,sr,44,17.6,velocity,upper_ux,1.178817868232727 +karman_re200,sr,44,17.6,velocity,upper_uy,-0.215703085064888 +karman_re200,sr,44,17.6,velocity,center_ux,1.0272098779678345 +karman_re200,sr,44,17.6,velocity,center_uy,-0.43685123324394226 +karman_re200,sr,44,17.6,velocity,lower_ux,0.9062389135360718 +karman_re200,sr,44,17.6,velocity,lower_uy,-0.2520381808280945 +karman_re200,sr,45,18.0,velocity,upper_ux,1.2273752689361572 +karman_re200,sr,45,18.0,velocity,upper_uy,-0.17513076961040497 +karman_re200,sr,45,18.0,velocity,center_ux,0.9929656386375427 +karman_re200,sr,45,18.0,velocity,center_uy,-0.32908549904823303 +karman_re200,sr,45,18.0,velocity,lower_ux,0.872951328754425 +karman_re200,sr,45,18.0,velocity,lower_uy,-0.10067471861839294 +karman_re200,sr,46,18.4,velocity,upper_ux,1.278517246246338 +karman_re200,sr,46,18.4,velocity,upper_uy,-0.21653161942958832 +karman_re200,sr,46,18.4,velocity,center_ux,0.9194663763046265 +karman_re200,sr,46,18.4,velocity,center_uy,0.0550711490213871 +karman_re200,sr,46,18.4,velocity,lower_ux,0.8606850504875183 +karman_re200,sr,46,18.4,velocity,lower_uy,0.07917498797178268 +karman_re200,sr,47,18.8,velocity,upper_ux,1.1948151588439941 +karman_re200,sr,47,18.8,velocity,upper_uy,0.022140569984912872 +karman_re200,sr,47,18.8,velocity,center_ux,0.9059164524078369 +karman_re200,sr,47,18.8,velocity,center_uy,0.36890387535095215 +karman_re200,sr,47,18.8,velocity,lower_ux,0.8847918510437012 +karman_re200,sr,47,18.8,velocity,lower_uy,0.22073686122894287 +karman_re200,sr,48,19.2,velocity,upper_ux,1.1211838722229004 +karman_re200,sr,48,19.2,velocity,upper_uy,0.31286343932151794 +karman_re200,sr,48,19.2,velocity,center_ux,0.923794686794281 +karman_re200,sr,48,19.2,velocity,center_uy,0.5004551410675049 +karman_re200,sr,48,19.2,velocity,lower_ux,0.9502171874046326 +karman_re200,sr,48,19.2,velocity,lower_uy,0.2897476851940155 +karman_re200,sr,49,19.6,velocity,upper_ux,1.0674583911895752 +karman_re200,sr,49,19.6,velocity,upper_uy,0.38976627588272095 +karman_re200,sr,49,19.6,velocity,center_ux,0.9477990865707397 +karman_re200,sr,49,19.6,velocity,center_uy,0.5306916236877441 +karman_re200,sr,49,19.6,velocity,lower_ux,1.019394040107727 +karman_re200,sr,49,19.6,velocity,lower_uy,0.32890042662620544 +karman_re200,sr,50,20.0,velocity,upper_ux,1.011772632598877 +karman_re200,sr,50,20.0,velocity,upper_uy,0.3665264844894409 +karman_re200,sr,50,20.0,velocity,center_ux,0.9658117890357971 +karman_re200,sr,50,20.0,velocity,center_uy,0.5253384113311768 +karman_re200,sr,50,20.0,velocity,lower_ux,1.085774302482605 +karman_re200,sr,50,20.0,velocity,lower_uy,0.32077446579933167 +karman_re200,sr,51,20.4,velocity,upper_ux,0.9598522782325745 +karman_re200,sr,51,20.4,velocity,upper_uy,0.29657790064811707 +karman_re200,sr,51,20.4,velocity,center_ux,0.978881299495697 +karman_re200,sr,51,20.4,velocity,center_uy,0.49470099806785583 +karman_re200,sr,51,20.4,velocity,lower_ux,1.1477138996124268 +karman_re200,sr,51,20.4,velocity,lower_uy,0.27636653184890747 +karman_re200,sr,52,20.8,velocity,upper_ux,0.914746105670929 +karman_re200,sr,52,20.8,velocity,upper_uy,0.19248971343040466 +karman_re200,sr,52,20.8,velocity,center_ux,1.0052624940872192 +karman_re200,sr,52,20.8,velocity,center_uy,0.37154412269592285 +karman_re200,sr,52,20.8,velocity,lower_ux,1.1948704719543457 +karman_re200,sr,52,20.8,velocity,lower_uy,0.2172679901123047 +karman_re200,sr,53,21.2,velocity,upper_ux,0.8862857818603516 +karman_re200,sr,53,21.2,velocity,upper_uy,0.05439414456486702 +karman_re200,sr,53,21.2,velocity,center_ux,0.9749113321304321 +karman_re200,sr,53,21.2,velocity,center_uy,0.21295610070228577 +karman_re200,sr,53,21.2,velocity,lower_ux,1.2421711683273315 +karman_re200,sr,53,21.2,velocity,lower_uy,0.21037046611309052 +karman_re200,sr,54,21.6,velocity,upper_ux,0.8742740154266357 +karman_re200,sr,54,21.6,velocity,upper_uy,-0.10557172447443008 +karman_re200,sr,54,21.6,velocity,center_ux,0.893251895904541 +karman_re200,sr,54,21.6,velocity,center_uy,-0.08379286527633667 +karman_re200,sr,54,21.6,velocity,lower_ux,1.2804468870162964 +karman_re200,sr,54,21.6,velocity,lower_uy,0.2505823075771332 +karman_re200,sr,55,22.0,velocity,upper_ux,0.9037167429924011 +karman_re200,sr,55,22.0,velocity,upper_uy,-0.21358007192611694 +karman_re200,sr,55,22.0,velocity,center_ux,0.8719678521156311 +karman_re200,sr,55,22.0,velocity,center_uy,-0.3486032783985138 +karman_re200,sr,55,22.0,velocity,lower_ux,1.2023509740829468 +karman_re200,sr,55,22.0,velocity,lower_uy,-0.12296387553215027 +karman_re200,sr,56,22.4,velocity,upper_ux,0.9633790850639343 +karman_re200,sr,56,22.4,velocity,upper_uy,-0.27602851390838623 +karman_re200,sr,56,22.4,velocity,center_ux,0.8967674970626831 +karman_re200,sr,56,22.4,velocity,center_uy,-0.4768008887767792 +karman_re200,sr,56,22.4,velocity,lower_ux,1.1478121280670166 +karman_re200,sr,56,22.4,velocity,lower_uy,-0.3571641445159912 +karman_re200,sr,57,22.8,velocity,upper_ux,1.0265735387802124 +karman_re200,sr,57,22.8,velocity,upper_uy,-0.31144240498542786 +karman_re200,sr,57,22.8,velocity,center_ux,0.9317228198051453 +karman_re200,sr,57,22.8,velocity,center_uy,-0.5121365189552307 +karman_re200,sr,57,22.8,velocity,lower_ux,1.0846763849258423 +karman_re200,sr,57,22.8,velocity,lower_uy,-0.4183574616909027 +karman_re200,sr,58,23.2,velocity,upper_ux,1.088704228401184 +karman_re200,sr,58,23.2,velocity,upper_uy,-0.30020177364349365 +karman_re200,sr,58,23.2,velocity,center_ux,0.9590391516685486 +karman_re200,sr,58,23.2,velocity,center_uy,-0.5086391568183899 +karman_re200,sr,58,23.2,velocity,lower_ux,1.0276319980621338 +karman_re200,sr,58,23.2,velocity,lower_uy,-0.38052985072135925 +karman_re200,sr,59,23.6,velocity,upper_ux,1.147620439529419 +karman_re200,sr,59,23.6,velocity,upper_uy,-0.2555975615978241 +karman_re200,sr,59,23.6,velocity,center_ux,0.9797703623771667 +karman_re200,sr,59,23.6,velocity,center_uy,-0.4750775098800659 +karman_re200,sr,59,23.6,velocity,lower_ux,0.9768714308738708 +karman_re200,sr,59,23.6,velocity,lower_uy,-0.29832348227500916 +karman_re200,sr,60,24.0,velocity,upper_ux,1.1932185888290405 +karman_re200,sr,60,24.0,velocity,upper_uy,-0.19709599018096924 +karman_re200,sr,60,24.0,velocity,center_ux,1.0079214572906494 +karman_re200,sr,60,24.0,velocity,center_uy,-0.3512175381183624 +karman_re200,sr,60,24.0,velocity,lower_ux,0.9320431351661682 +karman_re200,sr,60,24.0,velocity,lower_uy,-0.18348389863967896 +karman_re200,sr,61,24.4,velocity,upper_ux,1.2434544563293457 +karman_re200,sr,61,24.4,velocity,upper_uy,-0.1884055882692337 +karman_re200,sr,61,24.4,velocity,center_ux,0.9724077582359314 +karman_re200,sr,61,24.4,velocity,center_uy,-0.1845802664756775 +karman_re200,sr,61,24.4,velocity,lower_ux,0.8972318768501282 +karman_re200,sr,61,24.4,velocity,lower_uy,-0.03236225247383118 +karman_re200,sr,62,24.8,velocity,upper_ux,1.2924809455871582 +karman_re200,sr,62,24.8,velocity,upper_uy,-0.22522501647472382 +karman_re200,sr,62,24.8,velocity,center_ux,0.8958247900009155 +karman_re200,sr,62,24.8,velocity,center_uy,0.11085325479507446 +karman_re200,sr,62,24.8,velocity,lower_ux,0.8820464611053467 +karman_re200,sr,62,24.8,velocity,lower_uy,0.12777473032474518 +karman_re200,sr,63,25.2,velocity,upper_ux,1.211676001548767 +karman_re200,sr,63,25.2,velocity,upper_uy,0.11880459636449814 +karman_re200,sr,63,25.2,velocity,center_ux,0.8778267502784729 +karman_re200,sr,63,25.2,velocity,center_uy,0.3532625436782837 +karman_re200,sr,63,25.2,velocity,lower_ux,0.9174104928970337 +karman_re200,sr,63,25.2,velocity,lower_uy,0.22248035669326782 +karman_re200,sr,64,25.6,velocity,upper_ux,1.1442772150039673 +karman_re200,sr,64,25.6,velocity,upper_uy,0.33737754821777344 +karman_re200,sr,64,25.6,velocity,center_ux,0.8979856371879578 +karman_re200,sr,64,25.6,velocity,center_uy,0.46764546632766724 +karman_re200,sr,64,25.6,velocity,lower_ux,0.9750916361808777 +karman_re200,sr,64,25.6,velocity,lower_uy,0.28305792808532715 +karman_re200,sr,65,26.0,velocity,upper_ux,1.0783946514129639 +karman_re200,sr,65,26.0,velocity,upper_uy,0.38989484310150146 +karman_re200,sr,65,26.0,velocity,center_ux,0.9275927543640137 +karman_re200,sr,65,26.0,velocity,center_uy,0.49619060754776 +karman_re200,sr,65,26.0,velocity,lower_ux,1.0375415086746216 +karman_re200,sr,65,26.0,velocity,lower_uy,0.3134848475456238 +karman_re200,sr,66,26.4,velocity,upper_ux,1.02130925655365 +karman_re200,sr,66,26.4,velocity,upper_uy,0.34955745935440063 +karman_re200,sr,66,26.4,velocity,center_ux,0.9458644390106201 +karman_re200,sr,66,26.4,velocity,center_uy,0.49053317308425903 +karman_re200,sr,66,26.4,velocity,lower_ux,1.0995416641235352 +karman_re200,sr,66,26.4,velocity,lower_uy,0.2982434928417206 +karman_re200,sr,67,26.8,velocity,upper_ux,0.972471296787262 +karman_re200,sr,67,26.8,velocity,upper_uy,0.2686742842197418 +karman_re200,sr,67,26.8,velocity,center_ux,0.951632022857666 +karman_re200,sr,67,26.8,velocity,center_uy,0.4559873342514038 +karman_re200,sr,67,26.8,velocity,lower_ux,1.1588037014007568 +karman_re200,sr,67,26.8,velocity,lower_uy,0.25154200196266174 +karman_re200,sr,68,27.2,velocity,upper_ux,0.930469810962677 +karman_re200,sr,68,27.2,velocity,upper_uy,0.15777193009853363 +karman_re200,sr,68,27.2,velocity,center_ux,0.9625545740127563 +karman_re200,sr,68,27.2,velocity,center_uy,0.32398682832717896 +karman_re200,sr,68,27.2,velocity,lower_ux,1.2013771533966064 +karman_re200,sr,68,27.2,velocity,lower_uy,0.19494619965553284 +karman_re200,sr,69,27.6,velocity,upper_ux,0.8972750902175903 +karman_re200,sr,69,27.6,velocity,upper_uy,0.01351335272192955 +karman_re200,sr,69,27.6,velocity,center_ux,0.936105489730835 +karman_re200,sr,69,27.6,velocity,center_uy,0.1255693882703781 +karman_re200,sr,69,27.6,velocity,lower_ux,1.2512226104736328 +karman_re200,sr,69,27.6,velocity,lower_uy,0.21798132359981537 +karman_re200,sr,70,28.0,velocity,upper_ux,0.8875553011894226 +karman_re200,sr,70,28.0,velocity,upper_uy,-0.13064248859882355 +karman_re200,sr,70,28.0,velocity,center_ux,0.8734050989151001 +karman_re200,sr,70,28.0,velocity,center_uy,-0.14468830823898315 +karman_re200,sr,70,28.0,velocity,lower_ux,1.2662174701690674 +karman_re200,sr,70,28.0,velocity,lower_uy,0.19687756896018982 +karman_re200,sr,71,28.4,velocity,upper_ux,0.9258837699890137 +karman_re200,sr,71,28.4,velocity,upper_uy,-0.21597328782081604 +karman_re200,sr,71,28.4,velocity,center_ux,0.8626790642738342 +karman_re200,sr,71,28.4,velocity,center_uy,-0.357273131608963 +karman_re200,sr,71,28.4,velocity,lower_ux,1.1987146139144897 +karman_re200,sr,71,28.4,velocity,lower_uy,-0.17865566909313202 +karman_re200,sr,72,28.8,velocity,upper_ux,0.9808944463729858 +karman_re200,sr,72,28.8,velocity,upper_uy,-0.27598005533218384 +karman_re200,sr,72,28.8,velocity,center_ux,0.8878152370452881 +karman_re200,sr,72,28.8,velocity,center_uy,-0.46301719546318054 +karman_re200,sr,72,28.8,velocity,lower_ux,1.1377911567687988 +karman_re200,sr,72,28.8,velocity,lower_uy,-0.36751267313957214 +karman_re200,sr,73,29.2,velocity,upper_ux,1.041236400604248 +karman_re200,sr,73,29.2,velocity,upper_uy,-0.3025115728378296 +karman_re200,sr,73,29.2,velocity,center_ux,0.9216873049736023 +karman_re200,sr,73,29.2,velocity,center_uy,-0.49145328998565674 +karman_re200,sr,73,29.2,velocity,lower_ux,1.0757042169570923 +karman_re200,sr,73,29.2,velocity,lower_uy,-0.406933069229126 +karman_re200,sr,74,29.6,velocity,upper_ux,1.1008667945861816 +karman_re200,sr,74,29.6,velocity,upper_uy,-0.28464189171791077 +karman_re200,sr,74,29.6,velocity,center_ux,0.9439218044281006 +karman_re200,sr,74,29.6,velocity,center_uy,-0.48513877391815186 +karman_re200,sr,74,29.6,velocity,lower_ux,1.021021842956543 +karman_re200,sr,74,29.6,velocity,lower_uy,-0.35730472207069397 +karman_re200,sr,75,30.0,velocity,upper_ux,1.1558772325515747 +karman_re200,sr,75,30.0,velocity,upper_uy,-0.23691007494926453 +karman_re200,sr,75,30.0,velocity,center_ux,0.9541932940483093 +karman_re200,sr,75,30.0,velocity,center_uy,-0.4440957307815552 +karman_re200,sr,75,30.0,velocity,lower_ux,0.972068727016449 +karman_re200,sr,75,30.0,velocity,lower_uy,-0.26826798915863037 +karman_re200,sr,76,30.4,velocity,upper_ux,1.2002774477005005 +karman_re200,sr,76,30.4,velocity,upper_uy,-0.18166615068912506 +karman_re200,sr,76,30.4,velocity,center_ux,0.9721213579177856 +karman_re200,sr,76,30.4,velocity,center_uy,-0.30719274282455444 +karman_re200,sr,76,30.4,velocity,lower_ux,0.9323909282684326 +karman_re200,sr,76,30.4,velocity,lower_uy,-0.14888107776641846 +karman_re200,sr,77,30.8,velocity,upper_ux,1.2533619403839111 +karman_re200,sr,77,30.8,velocity,upper_uy,-0.20088350772857666 +karman_re200,sr,77,30.8,velocity,center_ux,0.9331559538841248 +karman_re200,sr,77,30.8,velocity,center_uy,-0.10958420485258102 +karman_re200,sr,77,30.8,velocity,lower_ux,0.8971814513206482 +karman_re200,sr,77,30.8,velocity,lower_uy,0.005014427471905947 +karman_re200,sr,78,31.2,velocity,upper_ux,1.2680851221084595 +karman_re200,sr,78,31.2,velocity,upper_uy,-0.1779269427061081 +karman_re200,sr,78,31.2,velocity,center_ux,0.8705865740776062 +karman_re200,sr,78,31.2,velocity,center_uy,0.16829177737236023 +karman_re200,sr,78,31.2,velocity,lower_ux,0.8901165723800659 +karman_re200,sr,78,31.2,velocity,lower_uy,0.14641287922859192 +karman_re200,sr,79,31.6,velocity,upper_ux,1.1889992952346802 +karman_re200,sr,79,31.6,velocity,upper_uy,0.17977367341518402 +karman_re200,sr,79,31.6,velocity,center_ux,0.8644694685935974 +karman_re200,sr,79,31.6,velocity,center_uy,0.3719358444213867 +karman_re200,sr,79,31.6,velocity,lower_ux,0.9320446252822876 +karman_re200,sr,79,31.6,velocity,lower_uy,0.22694283723831177 +karman_re200,sr,80,32.0,velocity,upper_ux,1.124626874923706 +karman_re200,sr,80,32.0,velocity,upper_uy,0.35808318853378296 +karman_re200,sr,80,32.0,velocity,center_ux,0.8884919881820679 +karman_re200,sr,80,32.0,velocity,center_uy,0.46703779697418213 +karman_re200,sr,80,32.0,velocity,lower_ux,0.9875328540802002 +karman_re200,sr,80,32.0,velocity,lower_uy,0.2852504253387451 +karman_re200,sr,81,32.4,velocity,upper_ux,1.0616745948791504 +karman_re200,sr,81,32.4,velocity,upper_uy,0.3905511498451233 +karman_re200,sr,81,32.4,velocity,center_ux,0.9180216789245605 +karman_re200,sr,81,32.4,velocity,center_uy,0.49002283811569214 +karman_re200,sr,81,32.4,velocity,lower_ux,1.0482172966003418 +karman_re200,sr,81,32.4,velocity,lower_uy,0.3067823648452759 +karman_re200,sr,82,32.8,velocity,upper_ux,1.0075507164001465 +karman_re200,sr,82,32.8,velocity,upper_uy,0.3402657210826874 +karman_re200,sr,82,32.8,velocity,center_ux,0.9344397783279419 +karman_re200,sr,82,32.8,velocity,center_uy,0.4821453094482422 +karman_re200,sr,82,32.8,velocity,lower_ux,1.1092015504837036 +karman_re200,sr,82,32.8,velocity,lower_uy,0.28583890199661255 +karman_re200,sr,83,33.2,velocity,upper_ux,0.9596325159072876 +karman_re200,sr,83,33.2,velocity,upper_uy,0.2525518536567688 +karman_re200,sr,83,33.2,velocity,center_ux,0.9372197985649109 +karman_re200,sr,83,33.2,velocity,center_uy,0.43612179160118103 +karman_re200,sr,83,33.2,velocity,lower_ux,1.1645231246948242 +karman_re200,sr,83,33.2,velocity,lower_uy,0.23552276194095612 +karman_re200,sr,84,33.6,velocity,upper_ux,0.922625720500946 +karman_re200,sr,84,33.6,velocity,upper_uy,0.1359294205904007 +karman_re200,sr,84,33.6,velocity,center_ux,0.9493907690048218 +karman_re200,sr,84,33.6,velocity,center_uy,0.2890315055847168 +karman_re200,sr,84,33.6,velocity,lower_ux,1.207543134689331 +karman_re200,sr,84,33.6,velocity,lower_uy,0.18603138625621796 +karman_re200,sr,85,34.0,velocity,upper_ux,0.8914631605148315 +karman_re200,sr,85,34.0,velocity,upper_uy,-0.012963121756911278 +karman_re200,sr,85,34.0,velocity,center_ux,0.9088037610054016 +karman_re200,sr,85,34.0,velocity,center_uy,0.07805771380662918 +karman_re200,sr,85,34.0,velocity,lower_ux,1.2581148147583008 +karman_re200,sr,85,34.0,velocity,lower_uy,0.2349618673324585 +karman_re200,sr,86,34.4,velocity,upper_ux,0.8893305063247681 +karman_re200,sr,86,34.4,velocity,upper_uy,-0.14753510057926178 +karman_re200,sr,86,34.4,velocity,center_ux,0.8542088866233826 +karman_re200,sr,86,34.4,velocity,center_uy,-0.19412802159786224 +karman_re200,sr,86,34.4,velocity,lower_ux,1.239518642425537 +karman_re200,sr,86,34.4,velocity,lower_uy,0.1260170191526413 +karman_re200,sr,87,34.8,velocity,upper_ux,0.9342823028564453 +karman_re200,sr,87,34.8,velocity,upper_uy,-0.22635704278945923 +karman_re200,sr,87,34.8,velocity,center_ux,0.8575313091278076 +karman_re200,sr,87,34.8,velocity,center_uy,-0.38569092750549316 +karman_re200,sr,87,34.8,velocity,lower_ux,1.1797375679016113 +karman_re200,sr,87,34.8,velocity,lower_uy,-0.22947393357753754 +karman_re200,sr,88,35.2,velocity,upper_ux,0.9905807375907898 +karman_re200,sr,88,35.2,velocity,upper_uy,-0.28305983543395996 +karman_re200,sr,88,35.2,velocity,center_ux,0.8874555826187134 +karman_re200,sr,88,35.2,velocity,center_uy,-0.47445470094680786 +karman_re200,sr,88,35.2,velocity,lower_ux,1.1192755699157715 +karman_re200,sr,88,35.2,velocity,lower_uy,-0.3861077129840851 +karman_re200,sr,89,35.6,velocity,upper_ux,1.0501816272735596 +karman_re200,sr,89,35.6,velocity,upper_uy,-0.30036503076553345 +karman_re200,sr,89,35.6,velocity,center_ux,0.9194552898406982 +karman_re200,sr,89,35.6,velocity,center_uy,-0.49485576152801514 +karman_re200,sr,89,35.6,velocity,lower_ux,1.0587767362594604 +karman_re200,sr,89,35.6,velocity,lower_uy,-0.40442875027656555 +karman_re200,sr,90,36.0,velocity,upper_ux,1.110693335533142 +karman_re200,sr,90,36.0,velocity,upper_uy,-0.27598708868026733 +karman_re200,sr,90,36.0,velocity,center_ux,0.9400015473365784 +karman_re200,sr,90,36.0,velocity,center_uy,-0.48446139693260193 +karman_re200,sr,90,36.0,velocity,lower_ux,1.0061005353927612 +karman_re200,sr,90,36.0,velocity,lower_uy,-0.34559303522109985 +karman_re200,sr,91,36.4,velocity,upper_ux,1.1639862060546875 +karman_re200,sr,91,36.4,velocity,upper_uy,-0.22399111092090607 +karman_re200,sr,91,36.4,velocity,center_ux,0.951102077960968 +karman_re200,sr,91,36.4,velocity,center_uy,-0.4277404844760895 +karman_re200,sr,91,36.4,velocity,lower_ux,0.9582788348197937 +karman_re200,sr,91,36.4,velocity,lower_uy,-0.25087201595306396 +karman_re200,sr,92,36.8,velocity,upper_ux,1.2073041200637817 +karman_re200,sr,92,36.8,velocity,upper_uy,-0.1765718311071396 +karman_re200,sr,92,36.8,velocity,center_ux,0.9667892456054688 +karman_re200,sr,92,36.8,velocity,center_uy,-0.2768939435482025 +karman_re200,sr,92,36.8,velocity,lower_ux,0.9205017685890198 +karman_re200,sr,92,36.8,velocity,lower_uy,-0.12540531158447266 +karman_re200,sr,93,37.2,velocity,upper_ux,1.263522982597351 +karman_re200,sr,93,37.2,velocity,upper_uy,-0.22547607123851776 +karman_re200,sr,93,37.2,velocity,center_ux,0.9117178320884705 +karman_re200,sr,93,37.2,velocity,center_uy,-0.06075797975063324 +karman_re200,sr,93,37.2,velocity,lower_ux,0.8892648816108704 +karman_re200,sr,93,37.2,velocity,lower_uy,0.032183967530727386 +karman_re200,sr,94,37.6,velocity,upper_ux,1.241945743560791 +karman_re200,sr,94,37.6,velocity,upper_uy,-0.09990324079990387 +karman_re200,sr,94,37.6,velocity,center_ux,0.8597903251647949 +karman_re200,sr,94,37.6,velocity,center_uy,0.22066663205623627 +karman_re200,sr,94,37.6,velocity,lower_ux,0.8925901651382446 +karman_re200,sr,94,37.6,velocity,lower_uy,0.16380977630615234 +karman_re200,sr,95,38.0,velocity,upper_ux,1.17351233959198 +karman_re200,sr,95,38.0,velocity,upper_uy,0.24147866666316986 +karman_re200,sr,95,38.0,velocity,center_ux,0.8655232191085815 +karman_re200,sr,95,38.0,velocity,center_uy,0.4034980833530426 +karman_re200,sr,95,38.0,velocity,lower_ux,0.9402655959129333 +karman_re200,sr,95,38.0,velocity,lower_uy,0.23905952274799347 +karman_re200,sr,96,38.4,velocity,upper_ux,1.1100844144821167 +karman_re200,sr,96,38.4,velocity,upper_uy,0.3821055591106415 +karman_re200,sr,96,38.4,velocity,center_ux,0.8939464092254639 +karman_re200,sr,96,38.4,velocity,center_uy,0.4803609848022461 +karman_re200,sr,96,38.4,velocity,lower_ux,0.99739670753479 +karman_re200,sr,96,38.4,velocity,lower_uy,0.29242780804634094 +karman_re200,sr,97,38.8,velocity,upper_ux,1.0489903688430786 +karman_re200,sr,97,38.8,velocity,upper_uy,0.3896207809448242 +karman_re200,sr,97,38.8,velocity,center_ux,0.9217787981033325 +karman_re200,sr,97,38.8,velocity,center_uy,0.49419692158699036 +karman_re200,sr,97,38.8,velocity,lower_ux,1.0576311349868774 +karman_re200,sr,97,38.8,velocity,lower_uy,0.30368807911872864 +karman_re200,sr,98,39.2,velocity,upper_ux,0.9974534511566162 +karman_re200,sr,98,39.2,velocity,upper_uy,0.32784929871559143 +karman_re200,sr,98,39.2,velocity,center_ux,0.9377550482749939 +karman_re200,sr,98,39.2,velocity,center_uy,0.4805058538913727 +karman_re200,sr,98,39.2,velocity,lower_ux,1.1196445226669312 +karman_re200,sr,98,39.2,velocity,lower_uy,0.27531349658966064 +karman_re200,sr,99,39.6,velocity,upper_ux,0.951184868812561 +karman_re200,sr,99,39.6,velocity,upper_uy,0.23249551653862 +karman_re200,sr,99,39.6,velocity,center_ux,0.9442318677902222 +karman_re200,sr,99,39.6,velocity,center_uy,0.41413187980651855 +karman_re200,sr,99,39.6,velocity,lower_ux,1.1723699569702148 +karman_re200,sr,99,39.6,velocity,lower_uy,0.22052837908267975 +karman_re200,sr,100,40.0,velocity,upper_ux,0.9156513810157776 +karman_re200,sr,100,40.0,velocity,upper_uy,0.10691864043474197 +karman_re200,sr,100,40.0,velocity,center_ux,0.9546988010406494 +karman_re200,sr,100,40.0,velocity,center_uy,0.2518966495990753 +karman_re200,sr,100,40.0,velocity,lower_ux,1.2155787944793701 +karman_re200,sr,100,40.0,velocity,lower_uy,0.1815178096294403 +karman_re200,sr,101,40.4,velocity,upper_ux,0.886222243309021 +karman_re200,sr,101,40.4,velocity,upper_uy,-0.04828803241252899 +karman_re200,sr,101,40.4,velocity,center_ux,0.8974080085754395 +karman_re200,sr,101,40.4,velocity,center_uy,0.02230929769575596 +karman_re200,sr,101,40.4,velocity,lower_ux,1.2657355070114136 +karman_re200,sr,101,40.4,velocity,lower_uy,0.24778245389461517 +karman_re200,sr,102,40.8,velocity,upper_ux,0.8958332538604736 +karman_re200,sr,102,40.8,velocity,upper_uy,-0.1706376075744629 +karman_re200,sr,102,40.8,velocity,center_ux,0.8529030084609985 +karman_re200,sr,102,40.8,velocity,center_uy,-0.24727602303028107 +karman_re200,sr,102,40.8,velocity,lower_ux,1.2218801975250244 +karman_re200,sr,102,40.8,velocity,lower_uy,0.04107516631484032 +karman_re200,sr,103,41.2,velocity,upper_ux,0.9451705813407898 +karman_re200,sr,103,41.2,velocity,upper_uy,-0.2426808774471283 +karman_re200,sr,103,41.2,velocity,center_ux,0.8639224171638489 +karman_re200,sr,103,41.2,velocity,center_uy,-0.4152144491672516 +karman_re200,sr,103,41.2,velocity,lower_ux,1.1652858257293701 +karman_re200,sr,103,41.2,velocity,lower_uy,-0.2756115198135376 +karman_re200,sr,104,41.6,velocity,upper_ux,1.0034527778625488 +karman_re200,sr,104,41.6,velocity,upper_uy,-0.29281508922576904 +karman_re200,sr,104,41.6,velocity,center_ux,0.8960725665092468 +karman_re200,sr,104,41.6,velocity,center_uy,-0.4839717745780945 +karman_re200,sr,104,41.6,velocity,lower_ux,1.1033179759979248 +karman_re200,sr,104,41.6,velocity,lower_uy,-0.39869222044944763 +karman_re200,sr,105,42.0,velocity,upper_ux,1.0637551546096802 +karman_re200,sr,105,42.0,velocity,upper_uy,-0.29918721318244934 +karman_re200,sr,105,42.0,velocity,center_ux,0.9253373742103577 +karman_re200,sr,105,42.0,velocity,center_uy,-0.4949697256088257 +karman_re200,sr,105,42.0,velocity,lower_ux,1.0449391603469849 +karman_re200,sr,105,42.0,velocity,lower_uy,-0.3942258358001709 +karman_re200,sr,106,42.4,velocity,upper_ux,1.1240442991256714 +karman_re200,sr,106,42.4,velocity,upper_uy,-0.26747292280197144 +karman_re200,sr,106,42.4,velocity,center_ux,0.9419146180152893 +karman_re200,sr,106,42.4,velocity,center_uy,-0.4787004888057709 +karman_re200,sr,106,42.4,velocity,lower_ux,0.9937217831611633 +karman_re200,sr,106,42.4,velocity,lower_uy,-0.3258446455001831 +karman_re200,sr,107,42.8,velocity,upper_ux,1.1746042966842651 +karman_re200,sr,107,42.8,velocity,upper_uy,-0.2114603966474533 +karman_re200,sr,107,42.8,velocity,center_ux,0.9538739919662476 +karman_re200,sr,107,42.8,velocity,center_uy,-0.3999212384223938 +karman_re200,sr,107,42.8,velocity,lower_ux,0.9479281902313232 +karman_re200,sr,107,42.8,velocity,lower_uy,-0.22489005327224731 +karman_re200,sr,108,43.2,velocity,upper_ux,1.2174924612045288 +karman_re200,sr,108,43.2,velocity,upper_uy,-0.1773342341184616 +karman_re200,sr,108,43.2,velocity,center_ux,0.9588932991027832 +karman_re200,sr,108,43.2,velocity,center_uy,-0.23644256591796875 +karman_re200,sr,108,43.2,velocity,lower_ux,0.9113155603408813 +karman_re200,sr,108,43.2,velocity,lower_uy,-0.09236335009336472 +karman_re200,sr,109,43.6,velocity,upper_ux,1.272592306137085 +karman_re200,sr,109,43.6,velocity,upper_uy,-0.24353677034378052 +karman_re200,sr,109,43.6,velocity,center_ux,0.8946298956871033 +karman_re200,sr,109,43.6,velocity,center_uy,0.004003112204372883 +karman_re200,sr,109,43.6,velocity,lower_ux,0.8848931193351746 +karman_re200,sr,109,43.6,velocity,lower_uy,0.06692355871200562 +karman_re200,sr,110,44.0,velocity,upper_ux,1.2206822633743286 +karman_re200,sr,110,44.0,velocity,upper_uy,-0.006199277471750975 +karman_re200,sr,110,44.0,velocity,center_ux,0.8561573028564453 +karman_re200,sr,110,44.0,velocity,center_uy,0.27225589752197266 +karman_re200,sr,110,44.0,velocity,lower_ux,0.9007799625396729 +karman_re200,sr,110,44.0,velocity,lower_uy,0.183231920003891 +karman_re200,sr,111,44.4,velocity,upper_ux,1.1593691110610962 +karman_re200,sr,111,44.4,velocity,upper_uy,0.2892143428325653 +karman_re200,sr,111,44.4,velocity,center_ux,0.8692531585693359 +karman_re200,sr,111,44.4,velocity,center_uy,0.4290650188922882 +karman_re200,sr,111,44.4,velocity,lower_ux,0.9516095519065857 +karman_re200,sr,111,44.4,velocity,lower_uy,0.2526932656764984 +karman_re200,sr,112,44.8,velocity,upper_ux,1.0954152345657349 +karman_re200,sr,112,44.8,velocity,upper_uy,0.39582130312919617 +karman_re200,sr,112,44.8,velocity,center_ux,0.9007724523544312 +karman_re200,sr,112,44.8,velocity,center_uy,0.4873451292514801 +karman_re200,sr,112,44.8,velocity,lower_ux,1.0106205940246582 +karman_re200,sr,112,44.8,velocity,lower_uy,0.29870182275772095 +karman_re200,sr,113,45.2,velocity,upper_ux,1.0367804765701294 +karman_re200,sr,113,45.2,velocity,upper_uy,0.3822522461414337 +karman_re200,sr,113,45.2,velocity,center_ux,0.9267338514328003 +karman_re200,sr,113,45.2,velocity,center_uy,0.4937288165092468 +karman_re200,sr,113,45.2,velocity,lower_ux,1.0711804628372192 +karman_re200,sr,113,45.2,velocity,lower_uy,0.29955312609672546 +karman_re200,sr,114,45.6,velocity,upper_ux,0.9855861067771912 +karman_re200,sr,114,45.6,velocity,upper_uy,0.3111015558242798 +karman_re200,sr,114,45.6,velocity,center_ux,0.9389889240264893 +karman_re200,sr,114,45.6,velocity,center_uy,0.4740752875804901 +karman_re200,sr,114,45.6,velocity,lower_ux,1.1312512159347534 +karman_re200,sr,114,45.6,velocity,lower_uy,0.2642937898635864 +karman_re200,sr,115,46.0,velocity,upper_ux,0.9421467781066895 +karman_re200,sr,115,46.0,velocity,upper_uy,0.2089117169380188 +karman_re200,sr,115,46.0,velocity,center_ux,0.9499605298042297 +karman_re200,sr,115,46.0,velocity,center_uy,0.38386303186416626 +karman_re200,sr,115,46.0,velocity,lower_ux,1.1813470125198364 +karman_re200,sr,115,46.0,velocity,lower_uy,0.2071150839328766 +karman_re200,sr,116,46.4,velocity,upper_ux,0.9072510004043579 +karman_re200,sr,116,46.4,velocity,upper_uy,0.07456152886152267 +karman_re200,sr,116,46.4,velocity,center_ux,0.9488261342048645 +karman_re200,sr,116,46.4,velocity,center_uy,0.21084745228290558 +karman_re200,sr,116,46.4,velocity,lower_ux,1.225306749343872 +karman_re200,sr,116,46.4,velocity,lower_uy,0.18505984544754028 +karman_re200,sr,117,46.8,velocity,upper_ux,0.8831741213798523 +karman_re200,sr,117,46.8,velocity,upper_uy,-0.08184576779603958 +karman_re200,sr,117,46.8,velocity,center_ux,0.8834627270698547 +karman_re200,sr,117,46.8,velocity,center_uy,-0.03983251750469208 +karman_re200,sr,117,46.8,velocity,lower_ux,1.270787000656128 +karman_re200,sr,117,46.8,velocity,lower_uy,0.25046050548553467 +karman_re200,sr,118,47.2,velocity,upper_ux,0.904846727848053 +karman_re200,sr,118,47.2,velocity,upper_uy,-0.1899394541978836 +karman_re200,sr,118,47.2,velocity,center_ux,0.852504551410675 +karman_re200,sr,118,47.2,velocity,center_uy,-0.2953396737575531 +karman_re200,sr,118,47.2,velocity,lower_ux,1.2069209814071655 +karman_re200,sr,118,47.2,velocity,lower_uy,-0.049814753234386444 +karman_re200,sr,119,47.6,velocity,upper_ux,0.9569839239120483 +karman_re200,sr,119,47.6,velocity,upper_uy,-0.2571522295475006 +karman_re200,sr,119,47.6,velocity,center_ux,0.8699527978897095 +karman_re200,sr,119,47.6,velocity,center_uy,-0.4392147958278656 +karman_re200,sr,119,47.6,velocity,lower_ux,1.1515167951583862 +karman_re200,sr,119,47.6,velocity,lower_uy,-0.31525900959968567 +karman_re200,sr,120,48.0,velocity,upper_ux,1.0168548822402954 +karman_re200,sr,120,48.0,velocity,upper_uy,-0.29919469356536865 +karman_re200,sr,120,48.0,velocity,center_ux,0.9037460088729858 +karman_re200,sr,120,48.0,velocity,center_uy,-0.4901265799999237 +karman_re200,sr,120,48.0,velocity,lower_ux,1.0889698266983032 +karman_re200,sr,120,48.0,velocity,lower_uy,-0.40514615178108215 +karman_re200,sr,121,48.4,velocity,upper_ux,1.0776548385620117 +karman_re200,sr,121,48.4,velocity,upper_uy,-0.29544001817703247 +karman_re200,sr,121,48.4,velocity,center_ux,0.930275559425354 +karman_re200,sr,121,48.4,velocity,center_uy,-0.49370625615119934 +karman_re200,sr,121,48.4,velocity,lower_ux,1.0323632955551147 +karman_re200,sr,121,48.4,velocity,lower_uy,-0.3816039264202118 +karman_re200,sr,122,48.8,velocity,upper_ux,1.1362638473510742 +karman_re200,sr,122,48.8,velocity,upper_uy,-0.25712448358535767 +karman_re200,sr,122,48.8,velocity,center_ux,0.9427191019058228 +karman_re200,sr,122,48.8,velocity,center_uy,-0.4703754782676697 +karman_re200,sr,122,48.8,velocity,lower_ux,0.9815099835395813 +karman_re200,sr,122,48.8,velocity,lower_uy,-0.30532488226890564 +karman_re200,sr,123,49.2,velocity,upper_ux,1.1845881938934326 +karman_re200,sr,123,49.2,velocity,upper_uy,-0.19972720742225647 +karman_re200,sr,123,49.2,velocity,center_ux,0.958197832107544 +karman_re200,sr,123,49.2,velocity,center_uy,-0.3672936260700226 +karman_re200,sr,123,49.2,velocity,lower_ux,0.938718318939209 +karman_re200,sr,123,49.2,velocity,lower_uy,-0.19831804931163788 +karman_re200,sr,124,49.6,velocity,upper_ux,1.2306102514266968 +karman_re200,sr,124,49.6,velocity,upper_uy,-0.18626351654529572 +karman_re200,sr,124,49.6,velocity,center_ux,0.9481849670410156 +karman_re200,sr,124,49.6,velocity,center_uy,-0.19290122389793396 +karman_re200,sr,124,49.6,velocity,lower_ux,0.9037801623344421 +karman_re200,sr,124,49.6,velocity,lower_uy,-0.05809761956334114 +karman_re200,sr,125,50.0,velocity,upper_ux,1.273137092590332 +karman_re200,sr,125,50.0,velocity,upper_uy,-0.23953506350517273 +karman_re200,sr,125,50.0,velocity,center_ux,0.8790901899337769 +karman_re200,sr,125,50.0,velocity,center_uy,0.06938355416059494 +karman_re200,sr,125,50.0,velocity,lower_ux,0.8822141289710999 +karman_re200,sr,125,50.0,velocity,lower_uy,0.09868305176496506 +karman_re200,sr,126,50.4,velocity,upper_ux,1.2055860757827759 +karman_re200,sr,126,50.4,velocity,upper_uy,0.08550715446472168 +karman_re200,sr,126,50.4,velocity,center_ux,0.8566740155220032 +karman_re200,sr,126,50.4,velocity,center_uy,0.3176911473274231 +karman_re200,sr,126,50.4,velocity,lower_ux,0.9116952419281006 +karman_re200,sr,126,50.4,velocity,lower_uy,0.20049455761909485 +karman_re200,sr,127,50.8,velocity,upper_ux,1.1462502479553223 +karman_re200,sr,127,50.8,velocity,upper_uy,0.3273131251335144 +karman_re200,sr,127,50.8,velocity,center_ux,0.8753559589385986 +karman_re200,sr,127,50.8,velocity,center_uy,0.4497867226600647 +karman_re200,sr,127,50.8,velocity,lower_ux,0.96437668800354 +karman_re200,sr,127,50.8,velocity,lower_uy,0.2654654383659363 +karman_re200,sr,128,51.2,velocity,upper_ux,1.081711769104004 +karman_re200,sr,128,51.2,velocity,upper_uy,0.4015282094478607 +karman_re200,sr,128,51.2,velocity,center_ux,0.907347559928894 +karman_re200,sr,128,51.2,velocity,center_uy,0.49208083748817444 +karman_re200,sr,128,51.2,velocity,lower_ux,1.0238701105117798 +karman_re200,sr,128,51.2,velocity,lower_uy,0.30258119106292725 +karman_re200,sr,129,51.6,velocity,upper_ux,1.0251144170761108 +karman_re200,sr,129,51.6,velocity,upper_uy,0.3703562617301941 +karman_re200,sr,129,51.6,velocity,center_ux,0.9309991598129272 +karman_re200,sr,129,51.6,velocity,center_uy,0.4920344948768616 +karman_re200,sr,129,51.6,velocity,lower_ux,1.0849343538284302 +karman_re200,sr,129,51.6,velocity,lower_uy,0.2938987612724304 +karman_re200,sr,130,52.0,velocity,upper_ux,0.9746478199958801 +karman_re200,sr,130,52.0,velocity,upper_uy,0.29125726222991943 +karman_re200,sr,130,52.0,velocity,center_ux,0.9402956962585449 +karman_re200,sr,130,52.0,velocity,center_uy,0.46400752663612366 +karman_re200,sr,130,52.0,velocity,lower_ux,1.143246054649353 +karman_re200,sr,130,52.0,velocity,lower_uy,0.25218552350997925 +karman_re200,sr,131,52.4,velocity,upper_ux,0.933565616607666 +karman_re200,sr,131,52.4,velocity,upper_uy,0.18228279054164886 +karman_re200,sr,131,52.4,velocity,center_ux,0.9554192423820496 +karman_re200,sr,131,52.4,velocity,center_uy,0.34860050678253174 +karman_re200,sr,131,52.4,velocity,lower_ux,1.1904140710830688 +karman_re200,sr,131,52.4,velocity,lower_uy,0.1953907012939453 +karman_re200,sr,132,52.8,velocity,upper_ux,0.901272714138031 +karman_re200,sr,132,52.8,velocity,upper_uy,0.03976115956902504 +karman_re200,sr,132,52.8,velocity,center_ux,0.9389047026634216 +karman_re200,sr,132,52.8,velocity,center_uy,0.16466659307479858 +karman_re200,sr,132,52.8,velocity,lower_ux,1.2400712966918945 +karman_re200,sr,132,52.8,velocity,lower_uy,0.1987604945898056 +karman_re200,sr,133,53.2,velocity,upper_ux,0.8827787041664124 +karman_re200,sr,133,53.2,velocity,upper_uy,-0.1126173883676529 +karman_re200,sr,133,53.2,velocity,center_ux,0.8709702491760254 +karman_re200,sr,133,53.2,velocity,center_uy,-0.10500986874103546 +karman_re200,sr,133,53.2,velocity,lower_ux,1.2656041383743286 +karman_re200,sr,133,53.2,velocity,lower_uy,0.2240770161151886 +karman_re200,sr,134,53.6,velocity,upper_ux,0.9160076379776001 +karman_re200,sr,134,53.6,velocity,upper_uy,-0.206898033618927 +karman_re200,sr,134,53.6,velocity,center_ux,0.8550166487693787 +karman_re200,sr,134,53.6,velocity,center_uy,-0.3379468619823456 +karman_re200,sr,134,53.6,velocity,lower_ux,1.1949015855789185 +karman_re200,sr,134,53.6,velocity,lower_uy,-0.13445042073726654 +karman_re200,sr,135,54.0,velocity,upper_ux,0.9704369306564331 +karman_re200,sr,135,54.0,velocity,upper_uy,-0.26993146538734436 +karman_re200,sr,135,54.0,velocity,center_ux,0.8780233263969421 +karman_re200,sr,135,54.0,velocity,center_uy,-0.45793020725250244 +karman_re200,sr,135,54.0,velocity,lower_ux,1.1385772228240967 +karman_re200,sr,135,54.0,velocity,lower_uy,-0.3485092520713806 +karman_re200,sr,136,54.4,velocity,upper_ux,1.0298434495925903 +karman_re200,sr,136,54.4,velocity,upper_uy,-0.30216944217681885 +karman_re200,sr,136,54.4,velocity,center_ux,0.910646915435791 +karman_re200,sr,136,54.4,velocity,center_uy,-0.4934913218021393 +karman_re200,sr,136,54.4,velocity,lower_ux,1.0752747058868408 +karman_re200,sr,136,54.4,velocity,lower_uy,-0.4060165286064148 +karman_re200,sr,137,54.8,velocity,upper_ux,1.0916138887405396 +karman_re200,sr,137,54.8,velocity,upper_uy,-0.28904250264167786 +karman_re200,sr,137,54.8,velocity,center_ux,0.9349801540374756 +karman_re200,sr,137,54.8,velocity,center_uy,-0.49046990275382996 +karman_re200,sr,137,54.8,velocity,lower_ux,1.0210506916046143 +karman_re200,sr,137,54.8,velocity,lower_uy,-0.36599066853523254 +karman_re200,sr,138,55.2,velocity,upper_ux,1.148808240890503 +karman_re200,sr,138,55.2,velocity,upper_uy,-0.24435974657535553 +karman_re200,sr,138,55.2,velocity,center_ux,0.945152759552002 +karman_re200,sr,138,55.2,velocity,center_uy,-0.45647549629211426 +karman_re200,sr,138,55.2,velocity,lower_ux,0.9715333580970764 +karman_re200,sr,138,55.2,velocity,lower_uy,-0.2821011543273926 +karman_re200,sr,139,55.6,velocity,upper_ux,1.1935924291610718 +karman_re200,sr,139,55.6,velocity,upper_uy,-0.18853718042373657 +karman_re200,sr,139,55.6,velocity,center_ux,0.9621435403823853 +karman_re200,sr,139,55.6,velocity,center_uy,-0.32938915491104126 +karman_re200,sr,139,55.6,velocity,lower_ux,0.9303646683692932 +karman_re200,sr,139,55.6,velocity,lower_uy,-0.16823460161685944 +karman_re200,sr,140,56.0,velocity,upper_ux,1.244031548500061 +karman_re200,sr,140,56.0,velocity,upper_uy,-0.2013772577047348 +karman_re200,sr,140,56.0,velocity,center_ux,0.9335871338844299 +karman_re200,sr,140,56.0,velocity,center_uy,-0.14055046439170837 +karman_re200,sr,140,56.0,velocity,lower_ux,0.8968722820281982 +karman_re200,sr,140,56.0,velocity,lower_uy,-0.020086895674467087 +karman_re200,sr,141,56.4,velocity,upper_ux,1.2631415128707886 +karman_re200,sr,141,56.4,velocity,upper_uy,-0.20067910850048065 +karman_re200,sr,141,56.4,velocity,center_ux,0.8679368495941162 +karman_re200,sr,141,56.4,velocity,center_uy,0.13609597086906433 +karman_re200,sr,141,56.4,velocity,lower_ux,0.8840482831001282 +karman_re200,sr,141,56.4,velocity,lower_uy,0.1287735402584076 +karman_re200,sr,142,56.8,velocity,upper_ux,1.189691424369812 +karman_re200,sr,142,56.8,velocity,upper_uy,0.16106437146663666 +karman_re200,sr,142,56.8,velocity,center_ux,0.8578630089759827 +karman_re200,sr,142,56.8,velocity,center_uy,0.3566799461841583 +karman_re200,sr,142,56.8,velocity,lower_ux,0.922214150428772 +karman_re200,sr,142,56.8,velocity,lower_uy,0.21662399172782898 +karman_re200,sr,143,57.2,velocity,upper_ux,1.13101327419281 +karman_re200,sr,143,57.2,velocity,upper_uy,0.35620203614234924 +karman_re200,sr,143,57.2,velocity,center_ux,0.8824465870857239 +karman_re200,sr,143,57.2,velocity,center_uy,0.46507957577705383 +karman_re200,sr,143,57.2,velocity,lower_ux,0.9780929684638977 +karman_re200,sr,143,57.2,velocity,lower_uy,0.27752867341041565 +karman_re200,sr,144,57.6,velocity,upper_ux,1.0674238204956055 +karman_re200,sr,144,57.6,velocity,upper_uy,0.40035223960876465 +karman_re200,sr,144,57.6,velocity,center_ux,0.9134053587913513 +karman_re200,sr,144,57.6,velocity,center_uy,0.4939250648021698 +karman_re200,sr,144,57.6,velocity,lower_ux,1.0378589630126953 +karman_re200,sr,144,57.6,velocity,lower_uy,0.3042706549167633 +karman_re200,sr,145,58.0,velocity,upper_ux,1.0130987167358398 +karman_re200,sr,145,58.0,velocity,upper_uy,0.3545686602592468 +karman_re200,sr,145,58.0,velocity,center_ux,0.9342126250267029 +karman_re200,sr,145,58.0,velocity,center_uy,0.4882551431655884 +karman_re200,sr,145,58.0,velocity,lower_ux,1.099480390548706 +karman_re200,sr,145,58.0,velocity,lower_uy,0.2868543565273285 +karman_re200,sr,146,58.4,velocity,upper_ux,0.9640593528747559 +karman_re200,sr,146,58.4,velocity,upper_uy,0.2683519124984741 +karman_re200,sr,146,58.4,velocity,center_ux,0.9414002299308777 +karman_re200,sr,146,58.4,velocity,center_uy,0.44787129759788513 +karman_re200,sr,146,58.4,velocity,lower_ux,1.1557697057724 +karman_re200,sr,146,58.4,velocity,lower_uy,0.2390516996383667 +karman_re200,sr,147,58.8,velocity,upper_ux,0.9243361949920654 +karman_re200,sr,147,58.8,velocity,upper_uy,0.1526191085577011 +karman_re200,sr,147,58.8,velocity,center_ux,0.9569067358970642 +karman_re200,sr,147,58.8,velocity,center_uy,0.3097941279411316 +karman_re200,sr,147,58.8,velocity,lower_ux,1.1991770267486572 +karman_re200,sr,147,58.8,velocity,lower_uy,0.1862553060054779 +karman_re200,sr,148,59.2,velocity,upper_ux,0.893378734588623 +karman_re200,sr,148,59.2,velocity,upper_uy,0.0033602637704461813 +karman_re200,sr,148,59.2,velocity,center_ux,0.9215896129608154 +karman_re200,sr,148,59.2,velocity,center_uy,0.10983631014823914 +karman_re200,sr,148,59.2,velocity,lower_ux,1.2518551349639893 +karman_re200,sr,148,59.2,velocity,lower_uy,0.2195596843957901 +karman_re200,sr,149,59.6,velocity,upper_ux,0.8862942457199097 +karman_re200,sr,149,59.6,velocity,upper_uy,-0.13917012512683868 +karman_re200,sr,149,59.6,velocity,center_ux,0.8613794445991516 +karman_re200,sr,149,59.6,velocity,center_uy,-0.16816610097885132 +karman_re200,sr,149,59.6,velocity,lower_ux,1.2505203485488892 +karman_re200,sr,149,59.6,velocity,lower_uy,0.16217342019081116 +karman_re200,sr,150,60.0,velocity,upper_ux,0.9274634718894958 +karman_re200,sr,150,60.0,velocity,upper_uy,-0.22220966219902039 +karman_re200,sr,150,60.0,velocity,center_ux,0.857795238494873 +karman_re200,sr,150,60.0,velocity,center_uy,-0.3744170069694519 +karman_re200,sr,150,60.0,velocity,lower_ux,1.1834285259246826 +karman_re200,sr,150,60.0,velocity,lower_uy,-0.20314304530620575 +karman_re200,sr,151,60.4,velocity,upper_ux,0.9838844537734985 +karman_re200,sr,151,60.4,velocity,upper_uy,-0.2807185649871826 +karman_re200,sr,151,60.4,velocity,center_ux,0.8856303691864014 +karman_re200,sr,151,60.4,velocity,center_uy,-0.47146618366241455 +karman_re200,sr,151,60.4,velocity,lower_ux,1.1247552633285522 +karman_re200,sr,151,60.4,velocity,lower_uy,-0.3742721974849701 +karman_re200,sr,152,60.8,velocity,upper_ux,1.0436980724334717 +karman_re200,sr,152,60.8,velocity,upper_uy,-0.3021225333213806 +karman_re200,sr,152,60.8,velocity,center_ux,0.9172627329826355 +karman_re200,sr,152,60.8,velocity,center_uy,-0.494815468788147 +karman_re200,sr,152,60.8,velocity,lower_ux,1.063023328781128 +karman_re200,sr,152,60.8,velocity,lower_uy,-0.40270864963531494 +karman_re200,sr,153,61.2,velocity,upper_ux,1.1047824621200562 +karman_re200,sr,153,61.2,velocity,upper_uy,-0.28071755170822144 +karman_re200,sr,153,61.2,velocity,center_ux,0.9379376173019409 +karman_re200,sr,153,61.2,velocity,center_uy,-0.48610827326774597 +karman_re200,sr,153,61.2,velocity,lower_ux,1.0096969604492188 +karman_re200,sr,153,61.2,velocity,lower_uy,-0.349193811416626 +karman_re200,sr,154,61.6,velocity,upper_ux,1.160090446472168 +karman_re200,sr,154,61.6,velocity,upper_uy,-0.23030465841293335 +karman_re200,sr,154,61.6,velocity,center_ux,0.9476215839385986 +karman_re200,sr,154,61.6,velocity,center_uy,-0.4367713928222656 +karman_re200,sr,154,61.6,velocity,lower_ux,0.96192467212677 +karman_re200,sr,154,61.6,velocity,lower_uy,-0.25797155499458313 +karman_re200,sr,155,62.0,velocity,upper_ux,1.202641248703003 +karman_re200,sr,155,62.0,velocity,upper_uy,-0.1798730343580246 +karman_re200,sr,155,62.0,velocity,center_ux,0.9634426236152649 +karman_re200,sr,155,62.0,velocity,center_uy,-0.2901309132575989 +karman_re200,sr,155,62.0,velocity,lower_ux,0.922730565071106 +karman_re200,sr,155,62.0,velocity,lower_uy,-0.13667483627796173 +karman_re200,sr,156,62.4,velocity,upper_ux,1.2567412853240967 +karman_re200,sr,156,62.4,velocity,upper_uy,-0.22069427371025085 +karman_re200,sr,156,62.4,velocity,center_ux,0.9170169830322266 +karman_re200,sr,156,62.4,velocity,center_uy,-0.08193285763263702 +karman_re200,sr,156,62.4,velocity,lower_ux,0.8909119963645935 +karman_re200,sr,156,62.4,velocity,lower_uy,0.017921509221196175 +karman_re200,sr,157,62.8,velocity,upper_ux,1.2453622817993164 +karman_re200,sr,157,62.8,velocity,upper_uy,-0.1317271739244461 +karman_re200,sr,157,62.8,velocity,center_ux,0.8606952428817749 +karman_re200,sr,157,62.8,velocity,center_uy,0.1975078135728836 +karman_re200,sr,157,62.8,velocity,lower_ux,0.8895604014396667 +karman_re200,sr,157,62.8,velocity,lower_uy,0.1540711373090744 +karman_re200,sr,158,63.2,velocity,upper_ux,1.1758896112442017 +karman_re200,sr,158,63.2,velocity,upper_uy,0.2219846546649933 +karman_re200,sr,158,63.2,velocity,center_ux,0.8613275289535522 +karman_re200,sr,158,63.2,velocity,center_uy,0.3900146186351776 +karman_re200,sr,158,63.2,velocity,lower_ux,0.934130072593689 +karman_re200,sr,158,63.2,velocity,lower_uy,0.23193542659282684 +karman_re200,sr,159,63.6,velocity,upper_ux,1.116989016532898 +karman_re200,sr,159,63.6,velocity,upper_uy,0.3778839111328125 +karman_re200,sr,159,63.6,velocity,center_ux,0.8911394476890564 +karman_re200,sr,159,63.6,velocity,center_uy,0.47630631923675537 +karman_re200,sr,159,63.6,velocity,lower_ux,0.9931784272193909 +karman_re200,sr,159,63.6,velocity,lower_uy,0.288025438785553 +karman_re200,sr,160,64.0,velocity,upper_ux,1.0544474124908447 +karman_re200,sr,160,64.0,velocity,upper_uy,0.3947022557258606 +karman_re200,sr,160,64.0,velocity,center_ux,0.9194198846817017 +karman_re200,sr,160,64.0,velocity,center_uy,0.49383774399757385 +karman_re200,sr,160,64.0,velocity,lower_ux,1.05228853225708 +karman_re200,sr,160,64.0,velocity,lower_uy,0.3034471273422241 +karman_re200,sr,161,64.4,velocity,upper_ux,1.001169204711914 +karman_re200,sr,161,64.4,velocity,upper_uy,0.33684834837913513 +karman_re200,sr,161,64.4,velocity,center_ux,0.9358441233634949 +karman_re200,sr,161,64.4,velocity,center_uy,0.48281925916671753 +karman_re200,sr,161,64.4,velocity,lower_ux,1.1129975318908691 +karman_re200,sr,161,64.4,velocity,lower_uy,0.27824288606643677 +karman_re200,sr,162,64.8,velocity,upper_ux,0.954639196395874 +karman_re200,sr,162,64.8,velocity,upper_uy,0.24383416771888733 +karman_re200,sr,162,64.8,velocity,center_ux,0.9429495930671692 +karman_re200,sr,162,64.8,velocity,center_uy,0.42496609687805176 +karman_re200,sr,162,64.8,velocity,lower_ux,1.1672406196594238 +karman_re200,sr,162,64.8,velocity,lower_uy,0.22526861727237701 +karman_re200,sr,163,65.2,velocity,upper_ux,0.9172345995903015 +karman_re200,sr,163,65.2,velocity,upper_uy,0.12080035358667374 +karman_re200,sr,163,65.2,velocity,center_ux,0.9553623199462891 +karman_re200,sr,163,65.2,velocity,center_uy,0.2688296139240265 +karman_re200,sr,163,65.2,velocity,lower_ux,1.2091858386993408 +karman_re200,sr,163,65.2,velocity,lower_uy,0.1811085194349289 +karman_re200,sr,164,65.6,velocity,upper_ux,0.8886479139328003 +karman_re200,sr,164,65.6,velocity,upper_uy,-0.033443618565797806 +karman_re200,sr,164,65.6,velocity,center_ux,0.9050438404083252 +karman_re200,sr,164,65.6,velocity,center_uy,0.04881732538342476 +karman_re200,sr,164,65.6,velocity,lower_ux,1.263880729675293 +karman_re200,sr,164,65.6,velocity,lower_uy,0.240996852517128 +karman_re200,sr,165,66.0,velocity,upper_ux,0.8928627967834473 +karman_re200,sr,165,66.0,velocity,upper_uy,-0.16219297051429749 +karman_re200,sr,165,66.0,velocity,center_ux,0.8551046252250671 +karman_re200,sr,165,66.0,velocity,center_uy,-0.2254062443971634 +karman_re200,sr,165,66.0,velocity,lower_ux,1.2311831712722778 +karman_re200,sr,165,66.0,velocity,lower_uy,0.0774458646774292 +karman_re200,sr,166,66.4,velocity,upper_ux,0.9399458169937134 +karman_re200,sr,166,66.4,velocity,upper_uy,-0.23685333132743835 +karman_re200,sr,166,66.4,velocity,center_ux,0.8618978261947632 +karman_re200,sr,166,66.4,velocity,center_uy,-0.4041760563850403 +karman_re200,sr,166,66.4,velocity,lower_ux,1.1714489459991455 +karman_re200,sr,166,66.4,velocity,lower_uy,-0.25607240200042725 +karman_re200,sr,167,66.8,velocity,upper_ux,0.9976452589035034 +karman_re200,sr,167,66.8,velocity,upper_uy,-0.2896951735019684 +karman_re200,sr,167,66.8,velocity,center_ux,0.892751932144165 +karman_re200,sr,167,66.8,velocity,center_uy,-0.48061710596084595 +karman_re200,sr,167,66.8,velocity,lower_ux,1.1098219156265259 +karman_re200,sr,167,66.8,velocity,lower_uy,-0.39188671112060547 +karman_re200,sr,168,67.2,velocity,upper_ux,1.0578705072402954 +karman_re200,sr,168,67.2,velocity,upper_uy,-0.3000229001045227 +karman_re200,sr,168,67.2,velocity,center_ux,0.9225404262542725 +karman_re200,sr,168,67.2,velocity,center_uy,-0.4944504201412201 +karman_re200,sr,168,67.2,velocity,lower_ux,1.050257921218872 +karman_re200,sr,168,67.2,velocity,lower_uy,-0.39573776721954346 +karman_re200,sr,169,67.6,velocity,upper_ux,1.1178405284881592 +karman_re200,sr,169,67.6,velocity,upper_uy,-0.27120497822761536 +karman_re200,sr,169,67.6,velocity,center_ux,0.9390692710876465 +karman_re200,sr,169,67.6,velocity,center_uy,-0.4803702235221863 +karman_re200,sr,169,67.6,velocity,lower_ux,0.9977675080299377 +karman_re200,sr,169,67.6,velocity,lower_uy,-0.33131805062294006 +karman_re200,sr,170,68.0,velocity,upper_ux,1.1708070039749146 +karman_re200,sr,170,68.0,velocity,upper_uy,-0.21640431880950928 +karman_re200,sr,170,68.0,velocity,center_ux,0.9500080347061157 +karman_re200,sr,170,68.0,velocity,center_uy,-0.4108465611934662 +karman_re200,sr,170,68.0,velocity,lower_ux,0.9524157047271729 +karman_re200,sr,170,68.0,velocity,lower_uy,-0.23330402374267578 +karman_re200,sr,171,68.4,velocity,upper_ux,1.2133994102478027 +karman_re200,sr,171,68.4,velocity,upper_uy,-0.1768939346075058 +karman_re200,sr,171,68.4,velocity,center_ux,0.9594431519508362 +karman_re200,sr,171,68.4,velocity,center_uy,-0.24970795214176178 +karman_re200,sr,171,68.4,velocity,lower_ux,0.9153739809989929 +karman_re200,sr,171,68.4,velocity,lower_uy,-0.10401299595832825 +karman_re200,sr,172,68.8,velocity,upper_ux,1.2672476768493652 +karman_re200,sr,172,68.8,velocity,upper_uy,-0.24033524096012115 +karman_re200,sr,172,68.8,velocity,center_ux,0.8988878130912781 +karman_re200,sr,172,68.8,velocity,center_uy,-0.01836514286696911 +karman_re200,sr,172,68.8,velocity,lower_ux,0.8857906460762024 +karman_re200,sr,172,68.8,velocity,lower_uy,0.05419531837105751 +karman_re200,sr,173,69.2,velocity,upper_ux,1.2249335050582886 +karman_re200,sr,173,69.2,velocity,upper_uy,-0.04023778811097145 +karman_re200,sr,173,69.2,velocity,center_ux,0.8560611605644226 +karman_re200,sr,173,69.2,velocity,center_uy,0.25276118516921997 +karman_re200,sr,173,69.2,velocity,lower_ux,0.8976629376411438 +karman_re200,sr,173,69.2,velocity,lower_uy,0.17528153955936432 +karman_re200,sr,174,69.6,velocity,upper_ux,1.1631786823272705 +karman_re200,sr,174,69.6,velocity,upper_uy,0.27330341935157776 +karman_re200,sr,174,69.6,velocity,center_ux,0.8662604689598083 +karman_re200,sr,174,69.6,velocity,center_uy,0.41835808753967285 +karman_re200,sr,174,69.6,velocity,lower_ux,0.947050929069519 +karman_re200,sr,174,69.6,velocity,lower_uy,0.2464286983013153 +karman_re200,sr,175,70.0,velocity,upper_ux,1.099843978881836 +karman_re200,sr,175,70.0,velocity,upper_uy,0.39282122254371643 +karman_re200,sr,175,70.0,velocity,center_ux,0.8967552781105042 +karman_re200,sr,175,70.0,velocity,center_uy,0.48382487893104553 +karman_re200,sr,175,70.0,velocity,lower_ux,1.0050687789916992 +karman_re200,sr,175,70.0,velocity,lower_uy,0.2954901456832886 +karman_re200,sr,176,70.4,velocity,upper_ux,1.0418131351470947 +karman_re200,sr,176,70.4,velocity,upper_uy,0.38670074939727783 +karman_re200,sr,176,70.4,velocity,center_ux,0.9247003793716431 +karman_re200,sr,176,70.4,velocity,center_uy,0.49326443672180176 +karman_re200,sr,176,70.4,velocity,lower_ux,1.0663304328918457 +karman_re200,sr,176,70.4,velocity,lower_uy,0.30030256509780884 +karman_re200,sr,177,70.8,velocity,upper_ux,0.9901506304740906 +karman_re200,sr,177,70.8,velocity,upper_uy,0.3187047839164734 +karman_re200,sr,177,70.8,velocity,center_ux,0.9379220604896545 +karman_re200,sr,177,70.8,velocity,center_uy,0.47636115550994873 +karman_re200,sr,177,70.8,velocity,lower_ux,1.1264102458953857 +karman_re200,sr,177,70.8,velocity,lower_uy,0.267853707075119 +karman_re200,sr,178,71.2,velocity,upper_ux,0.9455955028533936 +karman_re200,sr,178,71.2,velocity,upper_uy,0.21874837577342987 +karman_re200,sr,178,71.2,velocity,center_ux,0.947093665599823 +karman_re200,sr,178,71.2,velocity,center_uy,0.39557769894599915 +karman_re200,sr,178,71.2,velocity,lower_ux,1.1773172616958618 +karman_re200,sr,178,71.2,velocity,lower_uy,0.21140322089195251 +karman_re200,sr,179,71.6,velocity,upper_ux,0.9101455211639404 +karman_re200,sr,179,71.6,velocity,upper_uy,0.08728447556495667 +karman_re200,sr,179,71.6,velocity,center_ux,0.9509241580963135 +karman_re200,sr,179,71.6,velocity,center_uy,0.22656290233135223 +karman_re200,sr,179,71.6,velocity,lower_ux,1.220393180847168 +karman_re200,sr,179,71.6,velocity,lower_uy,0.1819680780172348 +karman_re200,sr,180,72.0,velocity,upper_ux,0.8834981322288513 +karman_re200,sr,180,72.0,velocity,upper_uy,-0.06955067813396454 +karman_re200,sr,180,72.0,velocity,center_ux,0.8876922726631165 +karman_re200,sr,180,72.0,velocity,center_uy,-0.015761012211441994 +karman_re200,sr,180,72.0,velocity,lower_ux,1.2694118022918701 +karman_re200,sr,180,72.0,velocity,lower_uy,0.25085121393203735 +karman_re200,sr,181,72.4,velocity,upper_ux,0.9017174243927002 +karman_re200,sr,181,72.4,velocity,upper_uy,-0.18306726217269897 +karman_re200,sr,181,72.4,velocity,center_ux,0.8524881601333618 +karman_re200,sr,181,72.4,velocity,center_uy,-0.27760782837867737 +karman_re200,sr,181,72.4,velocity,lower_ux,1.2132805585861206 +karman_re200,sr,181,72.4,velocity,lower_uy,-0.015928275883197784 +karman_re200,sr,182,72.8,velocity,upper_ux,0.9530737400054932 +karman_re200,sr,182,72.8,velocity,upper_uy,-0.25189995765686035 +karman_re200,sr,182,72.8,velocity,center_ux,0.8677365183830261 +karman_re200,sr,182,72.8,velocity,center_uy,-0.43045884370803833 +karman_re200,sr,182,72.8,velocity,lower_ux,1.1575040817260742 +karman_re200,sr,182,72.8,velocity,lower_uy,-0.2999715805053711 +karman_re200,sr,183,73.2,velocity,upper_ux,1.0112967491149902 +karman_re200,sr,183,73.2,velocity,upper_uy,-0.297082781791687 +karman_re200,sr,183,73.2,velocity,center_ux,0.8997499942779541 +karman_re200,sr,183,73.2,velocity,center_uy,-0.48775848746299744 +karman_re200,sr,183,73.2,velocity,lower_ux,1.093630313873291 +karman_re200,sr,183,73.2,velocity,lower_uy,-0.4019868075847626 +karman_re200,sr,184,73.6,velocity,upper_ux,1.0738126039505005 +karman_re200,sr,184,73.6,velocity,upper_uy,-0.2971651256084442 +karman_re200,sr,184,73.6,velocity,center_ux,0.9286525845527649 +karman_re200,sr,184,73.6,velocity,center_uy,-0.4944099485874176 +karman_re200,sr,184,73.6,velocity,lower_ux,1.0380021333694458 +karman_re200,sr,184,73.6,velocity,lower_uy,-0.38568365573883057 +karman_re200,sr,185,74.0,velocity,upper_ux,1.1316651105880737 +karman_re200,sr,185,74.0,velocity,upper_uy,-0.26093804836273193 +karman_re200,sr,185,74.0,velocity,center_ux,0.9405789971351624 +karman_re200,sr,185,74.0,velocity,center_uy,-0.4733228385448456 +karman_re200,sr,185,74.0,velocity,lower_ux,0.9854724407196045 +karman_re200,sr,185,74.0,velocity,lower_uy,-0.3119543492794037 +karman_re200,sr,186,74.4,velocity,upper_ux,1.1820769309997559 +karman_re200,sr,186,74.4,velocity,upper_uy,-0.20410864055156708 +karman_re200,sr,186,74.4,velocity,center_ux,0.9547146558761597 +karman_re200,sr,186,74.4,velocity,center_uy,-0.3797603249549866 +karman_re200,sr,186,74.4,velocity,lower_ux,0.9426032304763794 +karman_re200,sr,186,74.4,velocity,lower_uy,-0.20777833461761475 +karman_re200,sr,187,74.8,velocity,upper_ux,1.226263403892517 +karman_re200,sr,187,74.8,velocity,upper_uy,-0.1833004355430603 +karman_re200,sr,187,74.8,velocity,center_ux,0.9507693648338318 +karman_re200,sr,187,74.8,velocity,center_uy,-0.2074204981327057 +karman_re200,sr,187,74.8,velocity,lower_ux,0.9070577025413513 +karman_re200,sr,187,74.8,velocity,lower_uy,-0.07040555775165558 +karman_re200,sr,188,75.2,velocity,upper_ux,1.2724428176879883 +karman_re200,sr,188,75.2,velocity,upper_uy,-0.24544984102249146 +karman_re200,sr,188,75.2,velocity,center_ux,0.8831197619438171 +karman_re200,sr,188,75.2,velocity,center_uy,0.04748223349452019 +karman_re200,sr,188,75.2,velocity,lower_ux,0.8830035328865051 +karman_re200,sr,188,75.2,velocity,lower_uy,0.08740410208702087 +karman_re200,sr,189,75.6,velocity,upper_ux,1.2071123123168945 +karman_re200,sr,189,75.6,velocity,upper_uy,0.0579834021627903 +karman_re200,sr,189,75.6,velocity,center_ux,0.8543856739997864 +karman_re200,sr,189,75.6,velocity,center_uy,0.3019265830516815 +karman_re200,sr,189,75.6,velocity,lower_ux,0.9067036509513855 +karman_re200,sr,189,75.6,velocity,lower_uy,0.19369882345199585 +karman_re200,sr,190,76.0,velocity,upper_ux,1.1502164602279663 +karman_re200,sr,190,76.0,velocity,upper_uy,0.3167506456375122 +karman_re200,sr,190,76.0,velocity,center_ux,0.8724896311759949 +karman_re200,sr,190,76.0,velocity,center_uy,0.4425220489501953 +karman_re200,sr,190,76.0,velocity,lower_ux,0.9596951007843018 +karman_re200,sr,190,76.0,velocity,lower_uy,0.2601948380470276 +karman_re200,sr,191,76.4,velocity,upper_ux,1.0856735706329346 +karman_re200,sr,191,76.4,velocity,upper_uy,0.4018484950065613 +karman_re200,sr,191,76.4,velocity,center_ux,0.904350996017456 +karman_re200,sr,191,76.4,velocity,center_uy,0.4904121458530426 +karman_re200,sr,191,76.4,velocity,lower_ux,1.018542766571045 +karman_re200,sr,191,76.4,velocity,lower_uy,0.300756573677063 +karman_re200,sr,192,76.8,velocity,upper_ux,1.0296111106872559 +karman_re200,sr,192,76.8,velocity,upper_uy,0.37600958347320557 +karman_re200,sr,192,76.8,velocity,center_ux,0.9299859404563904 +karman_re200,sr,192,76.8,velocity,center_uy,0.4925192594528198 +karman_re200,sr,192,76.8,velocity,lower_ux,1.0799858570098877 +karman_re200,sr,192,76.8,velocity,lower_uy,0.2952822148799896 +karman_re200,sr,193,77.2,velocity,upper_ux,0.9793559312820435 +karman_re200,sr,193,77.2,velocity,upper_uy,0.29926609992980957 +karman_re200,sr,193,77.2,velocity,center_ux,0.9410730600357056 +karman_re200,sr,193,77.2,velocity,center_uy,0.4678030014038086 +karman_re200,sr,193,77.2,velocity,lower_ux,1.139114499092102 +karman_re200,sr,193,77.2,velocity,lower_uy,0.25593656301498413 +karman_re200,sr,194,77.6,velocity,upper_ux,0.9364158511161804 +karman_re200,sr,194,77.6,velocity,upper_uy,0.192156583070755 +karman_re200,sr,194,77.6,velocity,center_ux,0.9543762803077698 +karman_re200,sr,194,77.6,velocity,center_uy,0.36097535490989685 +karman_re200,sr,194,77.6,velocity,lower_ux,1.1862599849700928 +karman_re200,sr,194,77.6,velocity,lower_uy,0.19860762357711792 +karman_re200,sr,195,78.0,velocity,upper_ux,0.9038956165313721 +karman_re200,sr,195,78.0,velocity,upper_uy,0.05183430016040802 +karman_re200,sr,195,78.0,velocity,center_ux,0.944274365901947 +karman_re200,sr,195,78.0,velocity,center_uy,0.1821749061346054 +karman_re200,sr,195,78.0,velocity,lower_ux,1.2348012924194336 +karman_re200,sr,195,78.0,velocity,lower_uy,0.19105441868305206 +karman_re200,sr,196,78.4,velocity,upper_ux,0.8824236392974854 +karman_re200,sr,196,78.4,velocity,upper_uy,-0.10302276909351349 +karman_re200,sr,196,78.4,velocity,center_ux,0.8753588199615479 +karman_re200,sr,196,78.4,velocity,center_uy,-0.08184687793254852 +karman_re200,sr,196,78.4,velocity,lower_ux,1.2693779468536377 +karman_re200,sr,196,78.4,velocity,lower_uy,0.23673154413700104 +karman_re200,sr,197,78.8,velocity,upper_ux,0.9115458726882935 +karman_re200,sr,197,78.8,velocity,upper_uy,-0.20176467299461365 +karman_re200,sr,197,78.8,velocity,center_ux,0.8535873293876648 +karman_re200,sr,197,78.8,velocity,center_uy,-0.32355156540870667 +karman_re200,sr,197,78.8,velocity,lower_ux,1.198401689529419 +karman_re200,sr,197,78.8,velocity,lower_uy,-0.10257861763238907 +karman_re200,sr,198,79.2,velocity,upper_ux,0.9664077758789062 +karman_re200,sr,198,79.2,velocity,upper_uy,-0.2662474513053894 +karman_re200,sr,198,79.2,velocity,center_ux,0.875469982624054 +karman_re200,sr,198,79.2,velocity,center_uy,-0.4519345760345459 +karman_re200,sr,198,79.2,velocity,lower_ux,1.143060564994812 +karman_re200,sr,198,79.2,velocity,lower_uy,-0.3353620171546936 +karman_re200,sr,199,79.6,velocity,upper_ux,1.0257428884506226 +karman_re200,sr,199,79.6,velocity,upper_uy,-0.30198565125465393 +karman_re200,sr,199,79.6,velocity,center_ux,0.9078560471534729 +karman_re200,sr,199,79.6,velocity,center_uy,-0.4925040900707245 +karman_re200,sr,199,79.6,velocity,lower_ux,1.0791621208190918 +karman_re200,sr,199,79.6,velocity,lower_uy,-0.4046412706375122 +karman_re200,sr,0,0.0,force,front_fx,0.0006219907663762569 +karman_re200,sr,0,0.0,force,front_fy,0.004089671187102795 +karman_re200,sr,0,0.0,force,upper_fx,-0.00907693151384592 +karman_re200,sr,0,0.0,force,upper_fy,0.002735402202233672 +karman_re200,sr,0,0.0,force,lower_fx,0.007555061485618353 +karman_re200,sr,0,0.0,force,lower_fy,-0.005517416633665562 +karman_re200,sr,1,0.4,force,front_fx,0.003449325216934085 +karman_re200,sr,1,0.4,force,front_fy,0.001988931791856885 +karman_re200,sr,1,0.4,force,upper_fx,-0.00907279271632433 +karman_re200,sr,1,0.4,force,upper_fy,0.0028095205780118704 +karman_re200,sr,1,0.4,force,lower_fx,0.005518956575542688 +karman_re200,sr,1,0.4,force,lower_fy,-0.005475772079080343 +karman_re200,sr,2,0.8,force,front_fx,0.004586732015013695 +karman_re200,sr,2,0.8,force,front_fy,-0.0004706616746261716 +karman_re200,sr,2,0.8,force,upper_fx,-0.008603401482105255 +karman_re200,sr,2,0.8,force,upper_fy,0.001314715133048594 +karman_re200,sr,2,0.8,force,lower_fx,0.0037344542797654867 +karman_re200,sr,2,0.8,force,lower_fy,-0.005036988761276007 +karman_re200,sr,3,1.2,force,front_fx,0.002376376884058118 +karman_re200,sr,3,1.2,force,front_fy,-0.0028887197840958834 +karman_re200,sr,3,1.2,force,upper_fx,-0.00805832352489233 +karman_re200,sr,3,1.2,force,upper_fy,0.0018204140942543745 +karman_re200,sr,3,1.2,force,lower_fx,0.0023708895314484835 +karman_re200,sr,3,1.2,force,lower_fy,-0.004788900259882212 +karman_re200,sr,4,1.6,force,front_fx,-0.0002081144630210474 +karman_re200,sr,4,1.6,force,front_fy,-0.004825762938708067 +karman_re200,sr,4,1.6,force,upper_fx,-0.0057053635828197 +karman_re200,sr,4,1.6,force,upper_fy,0.004814137239009142 +karman_re200,sr,4,1.6,force,lower_fx,0.0010463364887982607 +karman_re200,sr,4,1.6,force,lower_fy,-0.00502664502710104 +karman_re200,sr,5,2.0,force,front_fx,-0.0020086453296244144 +karman_re200,sr,5,2.0,force,front_fy,-0.005311309825628996 +karman_re200,sr,5,2.0,force,upper_fx,-0.0018245094688609242 +karman_re200,sr,5,2.0,force,upper_fy,0.007571363355964422 +karman_re200,sr,5,2.0,force,lower_fx,2.837058127624914e-05 +karman_re200,sr,5,2.0,force,lower_fy,-0.005269081797450781 +karman_re200,sr,6,2.4,force,front_fx,-0.002472967142239213 +karman_re200,sr,6,2.4,force,front_fy,-0.004996501840651035 +karman_re200,sr,6,2.4,force,upper_fx,0.002138452837243676 +karman_re200,sr,6,2.4,force,upper_fy,0.008187723346054554 +karman_re200,sr,6,2.4,force,lower_fx,-0.0013361216988414526 +karman_re200,sr,6,2.4,force,lower_fy,-0.005377894267439842 +karman_re200,sr,7,2.8,force,front_fx,-0.0013231125194579363 +karman_re200,sr,7,2.8,force,front_fy,-0.00469603156670928 +karman_re200,sr,7,2.8,force,upper_fx,0.004591529257595539 +karman_re200,sr,7,2.8,force,upper_fy,0.0075709037482738495 +karman_re200,sr,7,2.8,force,lower_fx,-0.003093722742050886 +karman_re200,sr,7,2.8,force,lower_fy,-0.005309775471687317 +karman_re200,sr,8,3.2,force,front_fx,0.0009813234210014343 +karman_re200,sr,8,3.2,force,front_fy,-0.0033045904710888863 +karman_re200,sr,8,3.2,force,upper_fx,0.0053587136790156364 +karman_re200,sr,8,3.2,force,upper_fy,0.007298946380615234 +karman_re200,sr,8,3.2,force,lower_fx,-0.004800922237336636 +karman_re200,sr,8,3.2,force,lower_fy,-0.003864009864628315 +karman_re200,sr,9,3.6,force,front_fx,0.0028585391119122505 +karman_re200,sr,9,3.6,force,front_fy,-0.0006141684134490788 +karman_re200,sr,9,3.6,force,upper_fx,0.004962151404470205 +karman_re200,sr,9,3.6,force,upper_fy,0.007104497402906418 +karman_re200,sr,9,3.6,force,lower_fx,-0.00700722448527813 +karman_re200,sr,9,3.6,force,lower_fy,-0.002165799494832754 +karman_re200,sr,10,4.0,force,front_fx,0.002594666788354516 +karman_re200,sr,10,4.0,force,front_fy,0.0019857913721352816 +karman_re200,sr,10,4.0,force,upper_fx,0.0038232540246099234 +karman_re200,sr,10,4.0,force,upper_fy,0.006321468390524387 +karman_re200,sr,10,4.0,force,lower_fx,-0.00828253012150526 +karman_re200,sr,10,4.0,force,lower_fy,-0.002965773455798626 +karman_re200,sr,11,4.4,force,front_fx,0.0007686804747208953 +karman_re200,sr,11,4.4,force,front_fy,0.003990611061453819 +karman_re200,sr,11,4.4,force,upper_fx,0.002507125958800316 +karman_re200,sr,11,4.4,force,upper_fy,0.005684312433004379 +karman_re200,sr,11,4.4,force,lower_fx,-0.006181516218930483 +karman_re200,sr,11,4.4,force,lower_fy,-0.006075012497603893 +karman_re200,sr,12,4.8,force,front_fx,-0.0012202668003737926 +karman_re200,sr,12,4.8,force,front_fy,0.004805410746484995 +karman_re200,sr,12,4.8,force,upper_fx,0.0011137902038171887 +karman_re200,sr,12,4.8,force,upper_fy,0.005849506240338087 +karman_re200,sr,12,4.8,force,lower_fx,-0.0019199842354282737 +karman_re200,sr,12,4.8,force,lower_fy,-0.008005838841199875 +karman_re200,sr,13,5.2,force,front_fx,-0.002446215134114027 +karman_re200,sr,13,5.2,force,front_fy,0.005107545759528875 +karman_re200,sr,13,5.2,force,upper_fx,-0.0005610130028799176 +karman_re200,sr,13,5.2,force,upper_fy,0.006691573653370142 +karman_re200,sr,13,5.2,force,lower_fx,0.0017338708275929093 +karman_re200,sr,13,5.2,force,lower_fy,-0.007623615209013224 +karman_re200,sr,14,5.6,force,front_fx,-0.0021646444220095873 +karman_re200,sr,14,5.6,force,front_fy,0.005053635686635971 +karman_re200,sr,14,5.6,force,upper_fx,-0.0019116334151476622 +karman_re200,sr,14,5.6,force,upper_fy,0.006693853065371513 +karman_re200,sr,14,5.6,force,lower_fx,0.0037096766754984856 +karman_re200,sr,14,5.6,force,lower_fy,-0.0069534690119326115 +karman_re200,sr,15,6.0,force,front_fx,-0.0003735747595783323 +karman_re200,sr,15,6.0,force,front_fy,0.004573639947921038 +karman_re200,sr,15,6.0,force,upper_fx,-0.0034786411561071873 +karman_re200,sr,15,6.0,force,upper_fy,0.004722330719232559 +karman_re200,sr,15,6.0,force,lower_fx,0.0049630580469965935 +karman_re200,sr,15,6.0,force,lower_fy,-0.007182697765529156 +karman_re200,sr,16,6.4,force,front_fx,0.0019201311515644193 +karman_re200,sr,16,6.4,force,front_fy,0.0030056762043386698 +karman_re200,sr,16,6.4,force,upper_fx,-0.005921504460275173 +karman_re200,sr,16,6.4,force,upper_fy,0.0021919317077845335 +karman_re200,sr,16,6.4,force,lower_fx,0.005875981878489256 +karman_re200,sr,16,6.4,force,lower_fy,-0.0072486428543925285 +karman_re200,sr,17,6.8,force,front_fx,0.0031671386677771807 +karman_re200,sr,17,6.8,force,front_fy,0.0006237964262254536 +karman_re200,sr,17,6.8,force,upper_fx,-0.008614224381744862 +karman_re200,sr,17,6.8,force,upper_fy,0.0013383087934926152 +karman_re200,sr,17,6.8,force,lower_fx,0.005245499778538942 +karman_re200,sr,17,6.8,force,lower_fy,-0.006363998632878065 +karman_re200,sr,18,7.2,force,front_fx,0.002790097612887621 +karman_re200,sr,18,7.2,force,front_fy,-0.0021454612724483013 +karman_re200,sr,18,7.2,force,upper_fx,-0.00890785176306963 +karman_re200,sr,18,7.2,force,upper_fy,0.003272034926339984 +karman_re200,sr,18,7.2,force,lower_fx,0.0034053055569529533 +karman_re200,sr,18,7.2,force,lower_fy,-0.005562277045100927 +karman_re200,sr,19,7.6,force,front_fx,0.0010697526158764958 +karman_re200,sr,19,7.6,force,front_fy,-0.003867453895509243 +karman_re200,sr,19,7.6,force,upper_fx,-0.0058981627225875854 +karman_re200,sr,19,7.6,force,upper_fy,0.005937771871685982 +karman_re200,sr,19,7.6,force,lower_fx,0.0021806766744703054 +karman_re200,sr,19,7.6,force,lower_fy,-0.005057321861386299 +karman_re200,sr,20,8.0,force,front_fx,-0.0012161214835941792 +karman_re200,sr,20,8.0,force,front_fy,-0.0048231263644993305 +karman_re200,sr,20,8.0,force,upper_fx,-0.0013437828747555614 +karman_re200,sr,20,8.0,force,upper_fy,0.007372984662652016 +karman_re200,sr,20,8.0,force,lower_fx,0.0007988908910192549 +karman_re200,sr,20,8.0,force,lower_fy,-0.005618849769234657 +karman_re200,sr,21,8.4,force,front_fx,-0.0024034862872213125 +karman_re200,sr,21,8.4,force,front_fy,-0.005314633250236511 +karman_re200,sr,21,8.4,force,upper_fx,0.0022247740998864174 +karman_re200,sr,21,8.4,force,upper_fy,0.0068291788920760155 +karman_re200,sr,21,8.4,force,lower_fx,-0.0007670347113162279 +karman_re200,sr,21,8.4,force,lower_fy,-0.006568507757037878 +karman_re200,sr,22,8.8,force,front_fx,-0.0018790264148265123 +karman_re200,sr,22,8.8,force,front_fy,-0.005210389383137226 +karman_re200,sr,22,8.8,force,upper_fx,0.003992424346506596 +karman_re200,sr,22,8.8,force,upper_fy,0.006452212110161781 +karman_re200,sr,22,8.8,force,lower_fx,-0.002038270700722933 +karman_re200,sr,22,8.8,force,lower_fy,-0.006343789864331484 +karman_re200,sr,23,9.2,force,front_fx,0.00013334688264876604 +karman_re200,sr,23,9.2,force,front_fy,-0.004684861749410629 +karman_re200,sr,23,9.2,force,upper_fx,0.005433951038867235 +karman_re200,sr,23,9.2,force,upper_fy,0.00686844764277339 +karman_re200,sr,23,9.2,force,lower_fx,-0.0038778530433773994 +karman_re200,sr,23,9.2,force,lower_fy,-0.004338430240750313 +karman_re200,sr,24,9.6,force,front_fx,0.002469285624101758 +karman_re200,sr,24,9.6,force,front_fy,-0.00296906940639019 +karman_re200,sr,24,9.6,force,upper_fx,0.006383380386978388 +karman_re200,sr,24,9.6,force,upper_fy,0.006816445384174585 +karman_re200,sr,24,9.6,force,lower_fx,-0.006628221832215786 +karman_re200,sr,24,9.6,force,lower_fy,-0.00200396659784019 +karman_re200,sr,25,10.0,force,front_fx,0.0033615222200751305 +karman_re200,sr,25,10.0,force,front_fy,-0.00042328465497121215 +karman_re200,sr,25,10.0,force,upper_fx,0.005594730842858553 +karman_re200,sr,25,10.0,force,upper_fy,0.006177229341119528 +karman_re200,sr,25,10.0,force,lower_fx,-0.009270119480788708 +karman_re200,sr,25,10.0,force,lower_fy,-0.0014888332225382328 +karman_re200,sr,26,10.4,force,front_fx,0.002796030370518565 +karman_re200,sr,26,10.4,force,front_fy,0.0025481104385107756 +karman_re200,sr,26,10.4,force,upper_fx,0.0035944334231317043 +karman_re200,sr,26,10.4,force,upper_fy,0.0056784809567034245 +karman_re200,sr,26,10.4,force,lower_fx,-0.009167472831904888 +karman_re200,sr,26,10.4,force,lower_fy,-0.00344067276455462 +karman_re200,sr,27,10.8,force,front_fx,0.0008134596282616258 +karman_re200,sr,27,10.8,force,front_fy,0.004199750255793333 +karman_re200,sr,27,10.8,force,upper_fx,0.0023638904094696045 +karman_re200,sr,27,10.8,force,upper_fy,0.005380192305892706 +karman_re200,sr,27,10.8,force,lower_fx,-0.006116594187915325 +karman_re200,sr,27,10.8,force,lower_fy,-0.005997056141495705 +karman_re200,sr,28,11.2,force,front_fx,-0.0014401182997971773 +karman_re200,sr,28,11.2,force,front_fy,0.005026441067457199 +karman_re200,sr,28,11.2,force,upper_fx,0.0010033119469881058 +karman_re200,sr,28,11.2,force,upper_fy,0.005971530452370644 +karman_re200,sr,28,11.2,force,lower_fx,-0.00162892893422395 +karman_re200,sr,28,11.2,force,lower_fy,-0.007454189471900463 +karman_re200,sr,29,11.6,force,front_fx,-0.002557955915108323 +karman_re200,sr,29,11.6,force,front_fy,0.0052815587259829044 +karman_re200,sr,29,11.6,force,upper_fx,-0.0005381674272939563 +karman_re200,sr,29,11.6,force,upper_fy,0.006845722906291485 +karman_re200,sr,29,11.6,force,lower_fx,0.0018332089530304074 +karman_re200,sr,29,11.6,force,lower_fy,-0.006966239772737026 +karman_re200,sr,30,12.0,force,front_fx,-0.002017482416704297 +karman_re200,sr,30,12.0,force,front_fy,0.005080465227365494 +karman_re200,sr,30,12.0,force,upper_fx,-0.001864162739366293 +karman_re200,sr,30,12.0,force,upper_fy,0.006532360799610615 +karman_re200,sr,30,12.0,force,lower_fx,0.003684377297759056 +karman_re200,sr,30,12.0,force,lower_fy,-0.006623581517487764 +karman_re200,sr,31,12.4,force,front_fx,-0.00012849539052695036 +karman_re200,sr,31,12.4,force,front_fy,0.004449066706001759 +karman_re200,sr,31,12.4,force,upper_fx,-0.0036839761305600405 +karman_re200,sr,31,12.4,force,upper_fy,0.004632575903087854 +karman_re200,sr,31,12.4,force,lower_fx,0.0052126022055745125 +karman_re200,sr,31,12.4,force,lower_fy,-0.007069366984069347 +karman_re200,sr,32,12.8,force,front_fx,0.002060440368950367 +karman_re200,sr,32,12.8,force,front_fy,0.002660344587638974 +karman_re200,sr,32,12.8,force,upper_fx,-0.00624508922919631 +karman_re200,sr,32,12.8,force,upper_fy,0.002469930797815323 +karman_re200,sr,32,12.8,force,lower_fx,0.006197922397404909 +karman_re200,sr,32,12.8,force,lower_fy,-0.006959063000977039 +karman_re200,sr,33,13.2,force,front_fx,0.002882373286411166 +karman_re200,sr,33,13.2,force,front_fy,0.00013105900143273175 +karman_re200,sr,33,13.2,force,upper_fx,-0.008509529754519463 +karman_re200,sr,33,13.2,force,upper_fy,0.0019523603841662407 +karman_re200,sr,33,13.2,force,lower_fx,0.005411216523498297 +karman_re200,sr,33,13.2,force,lower_fy,-0.006182302720844746 +karman_re200,sr,34,13.6,force,front_fx,0.0022733118385076523 +karman_re200,sr,34,13.6,force,front_fy,-0.0026950950268656015 +karman_re200,sr,34,13.6,force,upper_fx,-0.008205309510231018 +karman_re200,sr,34,13.6,force,upper_fy,0.0035131799522787333 +karman_re200,sr,34,13.6,force,lower_fx,0.003460911801084876 +karman_re200,sr,34,13.6,force,lower_fy,-0.0056662545539438725 +karman_re200,sr,35,14.0,force,front_fx,0.0004571934696286917 +karman_re200,sr,35,14.0,force,front_fy,-0.004305331036448479 +karman_re200,sr,35,14.0,force,upper_fx,-0.005579376593232155 +karman_re200,sr,35,14.0,force,upper_fy,0.005475508980453014 +karman_re200,sr,35,14.0,force,lower_fx,0.002094101859256625 +karman_re200,sr,35,14.0,force,lower_fy,-0.005424965173006058 +karman_re200,sr,36,14.4,force,front_fx,-0.0016855266876518726 +karman_re200,sr,36,14.4,force,front_fy,-0.005133744329214096 +karman_re200,sr,36,14.4,force,upper_fx,-0.0017395621398463845 +karman_re200,sr,36,14.4,force,upper_fy,0.006944730877876282 +karman_re200,sr,36,14.4,force,lower_fx,0.0007993793697096407 +karman_re200,sr,36,14.4,force,lower_fy,-0.005950338207185268 +karman_re200,sr,37,14.8,force,front_fx,-0.0026006423868238926 +karman_re200,sr,37,14.8,force,front_fy,-0.005346554331481457 +karman_re200,sr,37,14.8,force,upper_fx,0.0016329616773873568 +karman_re200,sr,37,14.8,force,upper_fy,0.006911387667059898 +karman_re200,sr,37,14.8,force,lower_fx,-0.0006702143000438809 +karman_re200,sr,37,14.8,force,lower_fy,-0.006552532315254211 +karman_re200,sr,38,15.2,force,front_fx,-0.0018475617980584502 +karman_re200,sr,38,15.2,force,front_fy,-0.005196278914809227 +karman_re200,sr,38,15.2,force,upper_fx,0.0037383907474577427 +karman_re200,sr,38,15.2,force,upper_fy,0.006671837996691465 +karman_re200,sr,38,15.2,force,lower_fx,-0.002141692442819476 +karman_re200,sr,38,15.2,force,lower_fy,-0.006128885317593813 +karman_re200,sr,39,15.6,force,front_fx,0.00011703035852406174 +karman_re200,sr,39,15.6,force,front_fy,-0.004479644354432821 +karman_re200,sr,39,15.6,force,upper_fx,0.005290283355861902 +karman_re200,sr,39,15.6,force,upper_fy,0.006847327575087547 +karman_re200,sr,39,15.6,force,lower_fx,-0.0040452741086483 +karman_re200,sr,39,15.6,force,lower_fy,-0.004433426074683666 +karman_re200,sr,40,16.0,force,front_fx,0.002239538822323084 +karman_re200,sr,40,16.0,force,front_fy,-0.0024837455712258816 +karman_re200,sr,40,16.0,force,upper_fx,0.006019049324095249 +karman_re200,sr,40,16.0,force,upper_fy,0.006684564985334873 +karman_re200,sr,40,16.0,force,lower_fx,-0.006441716570407152 +karman_re200,sr,40,16.0,force,lower_fy,-0.002511591650545597 +karman_re200,sr,41,16.4,force,front_fx,0.0028825474437326193 +karman_re200,sr,41,16.4,force,front_fy,0.00020385101379361004 +karman_re200,sr,41,16.4,force,upper_fx,0.005181456916034222 +karman_re200,sr,41,16.4,force,upper_fy,0.006136734038591385 +karman_re200,sr,41,16.4,force,lower_fx,-0.008392575196921825 +karman_re200,sr,41,16.4,force,lower_fy,-0.002080142730847001 +karman_re200,sr,42,16.8,force,front_fx,0.00202129571698606 +karman_re200,sr,42,16.8,force,front_fy,0.0029515153728425503 +karman_re200,sr,42,16.8,force,upper_fx,0.0033912283834069967 +karman_re200,sr,42,16.8,force,upper_fy,0.00575760193169117 +karman_re200,sr,42,16.8,force,lower_fx,-0.007980944588780403 +karman_re200,sr,42,16.8,force,lower_fy,-0.003619927680119872 +karman_re200,sr,43,17.2,force,front_fx,0.00010305845353286713 +karman_re200,sr,43,17.2,force,front_fy,0.004513096995651722 +karman_re200,sr,43,17.2,force,upper_fx,0.002031262032687664 +karman_re200,sr,43,17.2,force,upper_fy,0.005609115585684776 +karman_re200,sr,43,17.2,force,lower_fx,-0.005265526939183474 +karman_re200,sr,43,17.2,force,lower_fy,-0.005668063182383776 +karman_re200,sr,44,17.6,force,front_fx,-0.0018979221349582076 +karman_re200,sr,44,17.6,force,front_fy,0.005191656295210123 +karman_re200,sr,44,17.6,force,upper_fx,0.0007167267613112926 +karman_re200,sr,44,17.6,force,upper_fy,0.006107863038778305 +karman_re200,sr,44,17.6,force,lower_fx,-0.0015566471265628934 +karman_re200,sr,44,17.6,force,lower_fy,-0.007039500866085291 +karman_re200,sr,45,18.0,force,front_fx,-0.0026497908402234316 +karman_re200,sr,45,18.0,force,front_fy,0.005283019971102476 +karman_re200,sr,45,18.0,force,upper_fx,-0.0007357880240306258 +karman_re200,sr,45,18.0,force,upper_fy,0.0065916432067751884 +karman_re200,sr,45,18.0,force,lower_fx,0.001653909683227539 +karman_re200,sr,45,18.0,force,lower_fy,-0.006982170511037111 +karman_re200,sr,46,18.4,force,front_fx,-0.0018104375340044498 +karman_re200,sr,46,18.4,force,front_fy,0.005083514377474785 +karman_re200,sr,46,18.4,force,upper_fx,-0.0022393343970179558 +karman_re200,sr,46,18.4,force,upper_fy,0.006068977061659098 +karman_re200,sr,46,18.4,force,lower_fx,0.0037154839374125004 +karman_re200,sr,46,18.4,force,lower_fy,-0.006758288014680147 +karman_re200,sr,47,18.8,force,front_fx,0.00017132205539382994 +karman_re200,sr,47,18.8,force,front_fy,0.004252887796610594 +karman_re200,sr,47,18.8,force,upper_fx,-0.00407519331201911 +karman_re200,sr,47,18.8,force,upper_fy,0.004365157335996628 +karman_re200,sr,47,18.8,force,lower_fx,0.005258150864392519 +karman_re200,sr,47,18.8,force,lower_fy,-0.006894517689943314 +karman_re200,sr,48,19.2,force,front_fx,0.0021747564896941185 +karman_re200,sr,48,19.2,force,front_fy,0.002161056501790881 +karman_re200,sr,48,19.2,force,upper_fx,-0.006360913626849651 +karman_re200,sr,48,19.2,force,upper_fy,0.0025407790672034025 +karman_re200,sr,48,19.2,force,lower_fx,0.005834253970533609 +karman_re200,sr,48,19.2,force,lower_fy,-0.0066537712700665 +karman_re200,sr,49,19.6,force,front_fx,0.002675546333193779 +karman_re200,sr,49,19.6,force,front_fy,-0.0005175723345018923 +karman_re200,sr,49,19.6,force,upper_fx,-0.00805313978344202 +karman_re200,sr,49,19.6,force,upper_fy,0.0022555619943886995 +karman_re200,sr,49,19.6,force,lower_fx,0.0048993490636348724 +karman_re200,sr,49,19.6,force,lower_fy,-0.0060521261766552925 +karman_re200,sr,50,20.0,force,front_fx,0.0017102973069995642 +karman_re200,sr,50,20.0,force,front_fy,-0.003144614165648818 +karman_re200,sr,50,20.0,force,upper_fx,-0.00744529627263546 +karman_re200,sr,50,20.0,force,upper_fy,0.0037252074107527733 +karman_re200,sr,50,20.0,force,lower_fx,0.0031166619155555964 +karman_re200,sr,50,20.0,force,lower_fy,-0.005652559455484152 +karman_re200,sr,51,20.4,force,front_fx,-0.00018694876052904874 +karman_re200,sr,51,20.4,force,front_fy,-0.004605175461620092 +karman_re200,sr,51,20.4,force,upper_fx,-0.004784282762557268 +karman_re200,sr,51,20.4,force,upper_fy,0.00558844581246376 +karman_re200,sr,51,20.4,force,lower_fx,0.001769326045177877 +karman_re200,sr,51,20.4,force,lower_fy,-0.005549397319555283 +karman_re200,sr,52,20.8,force,front_fx,-0.0020513252820819616 +karman_re200,sr,52,20.8,force,front_fy,-0.00523718073964119 +karman_re200,sr,52,20.8,force,upper_fx,-0.0012800897238776088 +karman_re200,sr,52,20.8,force,upper_fy,0.00683286739513278 +karman_re200,sr,52,20.8,force,lower_fx,0.0004700022691395134 +karman_re200,sr,52,20.8,force,lower_fy,-0.006028789095580578 +karman_re200,sr,53,21.2,force,front_fx,-0.002591769676655531 +karman_re200,sr,53,21.2,force,front_fy,-0.00531885726377368 +karman_re200,sr,53,21.2,force,upper_fx,0.0017944056307896972 +karman_re200,sr,53,21.2,force,upper_fy,0.006893120240420103 +karman_re200,sr,53,21.2,force,lower_fx,-0.0009566075168550014 +karman_re200,sr,53,21.2,force,lower_fy,-0.006374920718371868 +karman_re200,sr,54,21.6,force,front_fx,-0.0015464858151972294 +karman_re200,sr,54,21.6,force,front_fy,-0.005133498460054398 +karman_re200,sr,54,21.6,force,upper_fx,0.0038788272067904472 +karman_re200,sr,54,21.6,force,upper_fy,0.006742477882653475 +karman_re200,sr,54,21.6,force,lower_fx,-0.002518682973459363 +karman_re200,sr,54,21.6,force,lower_fy,-0.00574185885488987 +karman_re200,sr,55,22.0,force,front_fx,0.0005194730474613607 +karman_re200,sr,55,22.0,force,front_fy,-0.004154705908149481 +karman_re200,sr,55,22.0,force,upper_fx,0.0053297365084290504 +karman_re200,sr,55,22.0,force,upper_fy,0.006794646382331848 +karman_re200,sr,55,22.0,force,lower_fx,-0.004437592811882496 +karman_re200,sr,55,22.0,force,lower_fy,-0.004051166120916605 +karman_re200,sr,56,22.4,force,front_fx,0.0023879422806203365 +karman_re200,sr,56,22.4,force,front_fy,-0.0018802800914272666 +karman_re200,sr,56,22.4,force,upper_fx,0.005691381171345711 +karman_re200,sr,56,22.4,force,upper_fy,0.006522912532091141 +karman_re200,sr,56,22.4,force,lower_fx,-0.006681349128484726 +karman_re200,sr,56,22.4,force,lower_fy,-0.0023850672878324986 +karman_re200,sr,57,22.8,force,front_fx,0.0026553121861070395 +karman_re200,sr,57,22.8,force,front_fy,0.0008946263114921749 +karman_re200,sr,57,22.8,force,upper_fx,0.004626372829079628 +karman_re200,sr,57,22.8,force,upper_fy,0.00602986104786396 +karman_re200,sr,57,22.8,force,lower_fx,-0.00814651045948267 +karman_re200,sr,57,22.8,force,lower_fy,-0.002368914894759655 +karman_re200,sr,58,23.2,force,front_fx,0.0015295852208510041 +karman_re200,sr,58,23.2,force,front_fy,0.0034097495954483747 +karman_re200,sr,58,23.2,force,upper_fx,0.0029549410101026297 +karman_re200,sr,58,23.2,force,upper_fy,0.005683412775397301 +karman_re200,sr,58,23.2,force,lower_fx,-0.007227801717817783 +karman_re200,sr,58,23.2,force,lower_fy,-0.004021598491817713 +karman_re200,sr,59,23.6,force,front_fx,-0.0004877498431596905 +karman_re200,sr,59,23.6,force,front_fy,0.0047144703567028046 +karman_re200,sr,59,23.6,force,upper_fx,0.0016515874303877354 +karman_re200,sr,59,23.6,force,upper_fy,0.005656948778778315 +karman_re200,sr,59,23.6,force,lower_fx,-0.004362788982689381 +karman_re200,sr,59,23.6,force,lower_fy,-0.005991705227643251 +karman_re200,sr,60,24.0,force,front_fx,-0.0022090168204158545 +karman_re200,sr,60,24.0,force,front_fy,0.005238786339759827 +karman_re200,sr,60,24.0,force,upper_fx,0.0003155995800625533 +karman_re200,sr,60,24.0,force,upper_fy,0.006189039442688227 +karman_re200,sr,60,24.0,force,lower_fx,-0.0007703391602262855 +karman_re200,sr,60,24.0,force,lower_fy,-0.007040228229016066 +karman_re200,sr,61,24.4,force,front_fx,-0.002560109831392765 +karman_re200,sr,61,24.4,force,front_fy,0.005241056904196739 +karman_re200,sr,61,24.4,force,upper_fx,-0.001148451934568584 +karman_re200,sr,61,24.4,force,upper_fy,0.0064472914673388 +karman_re200,sr,61,24.4,force,lower_fx,0.002119890647009015 +karman_re200,sr,61,24.4,force,lower_fy,-0.006921823136508465 +karman_re200,sr,62,24.8,force,front_fx,-0.001379363820888102 +karman_re200,sr,62,24.8,force,front_fy,0.004989644978195429 +karman_re200,sr,62,24.8,force,upper_fx,-0.002695124363526702 +karman_re200,sr,62,24.8,force,upper_fy,0.0056349122896790504 +karman_re200,sr,62,24.8,force,lower_fx,0.004064076114445925 +karman_re200,sr,62,24.8,force,lower_fy,-0.0067713153548538685 +karman_re200,sr,63,25.2,force,front_fx,0.0007042072247713804 +karman_re200,sr,63,25.2,force,front_fy,0.0038776015862822533 +karman_re200,sr,63,25.2,force,upper_fx,-0.004636143799871206 +karman_re200,sr,63,25.2,force,upper_fy,0.0038185527082532644 +karman_re200,sr,63,25.2,force,lower_fx,0.005406537093222141 +karman_re200,sr,63,25.2,force,lower_fy,-0.006823852192610502 +karman_re200,sr,64,25.6,force,front_fx,0.002469878876581788 +karman_re200,sr,64,25.6,force,front_fy,0.0015518825966864824 +karman_re200,sr,64,25.6,force,upper_fx,-0.006845193915069103 +karman_re200,sr,64,25.6,force,upper_fy,0.0022404759656637907 +karman_re200,sr,64,25.6,force,lower_fx,0.005616439506411552 +karman_re200,sr,64,25.6,force,lower_fy,-0.006474171299487352 +karman_re200,sr,65,26.0,force,front_fx,0.002563141519203782 +karman_re200,sr,65,26.0,force,front_fy,-0.0011844807304441929 +karman_re200,sr,65,26.0,force,upper_fx,-0.008111228235065937 +karman_re200,sr,65,26.0,force,upper_fy,0.0024588496889919043 +karman_re200,sr,65,26.0,force,lower_fx,0.004388729576021433 +karman_re200,sr,65,26.0,force,lower_fy,-0.0059149181470274925 +karman_re200,sr,66,26.4,force,front_fx,0.0013455755542963743 +karman_re200,sr,66,26.4,force,front_fy,-0.0035915172193199396 +karman_re200,sr,66,26.4,force,upper_fx,-0.006903500761836767 +karman_re200,sr,66,26.4,force,upper_fy,0.00417430279776454 +karman_re200,sr,66,26.4,force,lower_fx,0.0027037071995437145 +karman_re200,sr,66,26.4,force,lower_fy,-0.005570867098867893 +karman_re200,sr,67,26.8,force,front_fx,-0.0007103885873220861 +karman_re200,sr,67,26.8,force,front_fy,-0.004781490657478571 +karman_re200,sr,67,26.8,force,upper_fx,-0.003950406331568956 +karman_re200,sr,67,26.8,force,upper_fy,0.006057571619749069 +karman_re200,sr,67,26.8,force,lower_fx,0.0014343303628265858 +karman_re200,sr,67,26.8,force,lower_fy,-0.005588163621723652 +karman_re200,sr,68,27.2,force,front_fx,-0.002317312639206648 +karman_re200,sr,68,27.2,force,front_fy,-0.005303464364260435 +karman_re200,sr,68,27.2,force,upper_fx,-0.0003730921889655292 +karman_re200,sr,68,27.2,force,upper_fy,0.006964747793972492 +karman_re200,sr,68,27.2,force,lower_fx,8.902326226234436e-05 +karman_re200,sr,68,27.2,force,lower_fy,-0.006142240017652512 +karman_re200,sr,69,27.6,force,front_fx,-0.0024463164154440165 +karman_re200,sr,69,27.6,force,front_fy,-0.0052739642560482025 +karman_re200,sr,69,27.6,force,upper_fx,0.002425407525151968 +karman_re200,sr,69,27.6,force,upper_fy,0.006802686490118504 +karman_re200,sr,69,27.6,force,lower_fx,-0.0013526821276172996 +karman_re200,sr,69,27.6,force,lower_fy,-0.006304655224084854 +karman_re200,sr,70,28.0,force,front_fx,-0.0011035880306735635 +karman_re200,sr,70,28.0,force,front_fy,-0.004995001945644617 +karman_re200,sr,70,28.0,force,upper_fx,0.004302742891013622 +karman_re200,sr,70,28.0,force,upper_fy,0.006720514502376318 +karman_re200,sr,70,28.0,force,lower_fx,-0.0029571973718702793 +karman_re200,sr,70,28.0,force,lower_fy,-0.0053726439364254475 +karman_re200,sr,71,28.4,force,front_fx,0.0010652396595105529 +karman_re200,sr,71,28.4,force,front_fy,-0.0037060759495943785 +karman_re200,sr,71,28.4,force,upper_fx,0.005552906543016434 +karman_re200,sr,71,28.4,force,upper_fy,0.006762509234249592 +karman_re200,sr,71,28.4,force,lower_fx,-0.004978697746992111 +karman_re200,sr,71,28.4,force,lower_fy,-0.0035147860180586576 +karman_re200,sr,72,28.8,force,front_fx,0.0026626167818903923 +karman_re200,sr,72,28.8,force,front_fy,-0.0012514793779700994 +karman_re200,sr,72,28.8,force,upper_fx,0.0055558825843036175 +karman_re200,sr,72,28.8,force,upper_fy,0.006393477786332369 +karman_re200,sr,72,28.8,force,lower_fx,-0.007219234481453896 +karman_re200,sr,72,28.8,force,lower_fy,-0.0020991747733205557 +karman_re200,sr,73,29.2,force,front_fx,0.0025251845363527536 +karman_re200,sr,73,29.2,force,front_fy,0.0015361948171630502 +karman_re200,sr,73,29.2,force,upper_fx,0.00420442083850503 +karman_re200,sr,73,29.2,force,upper_fy,0.005889349617063999 +karman_re200,sr,73,29.2,force,lower_fx,-0.008261843584477901 +karman_re200,sr,73,29.2,force,lower_fy,-0.002606932306662202 +karman_re200,sr,74,29.6,force,front_fx,0.0011452927719801664 +karman_re200,sr,74,29.6,force,front_fy,0.003812647657468915 +karman_re200,sr,74,29.6,force,upper_fx,0.002577607985585928 +karman_re200,sr,74,29.6,force,upper_fy,0.005578668788075447 +karman_re200,sr,74,29.6,force,lower_fx,-0.0067389970645308495 +karman_re200,sr,74,29.6,force,lower_fy,-0.00448907446116209 +karman_re200,sr,75,30.0,force,front_fx,-0.0009485941845923662 +karman_re200,sr,75,30.0,force,front_fy,0.004870065953582525 +karman_re200,sr,75,30.0,force,upper_fx,0.0013579130172729492 +karman_re200,sr,75,30.0,force,upper_fy,0.005688975565135479 +karman_re200,sr,75,30.0,force,lower_fx,-0.0035372236743569374 +karman_re200,sr,75,30.0,force,lower_fy,-0.006390209775418043 +karman_re200,sr,76,30.4,force,front_fx,-0.0024202000349760056 +karman_re200,sr,76,30.4,force,front_fy,0.005268821492791176 +karman_re200,sr,76,30.4,force,upper_fx,-3.70495326933451e-05 +karman_re200,sr,76,30.4,force,upper_fy,0.006293596234172583 +karman_re200,sr,76,30.4,force,lower_fx,7.004345388850197e-05 +karman_re200,sr,76,30.4,force,lower_fy,-0.00709708733484149 +karman_re200,sr,77,30.8,force,front_fx,-0.002387436106801033 +karman_re200,sr,77,30.8,force,front_fy,0.005219887010753155 +karman_re200,sr,77,30.8,force,upper_fx,-0.0014925635186955333 +karman_re200,sr,77,30.8,force,upper_fy,0.006385064218193293 +karman_re200,sr,77,30.8,force,lower_fx,0.0027027565520256758 +karman_re200,sr,77,30.8,force,lower_fy,-0.0068337093107402325 +karman_re200,sr,78,31.2,force,front_fx,-0.000925825908780098 +karman_re200,sr,78,31.2,force,front_fy,0.004859230946749449 +karman_re200,sr,78,31.2,force,upper_fx,-0.003120502457022667 +karman_re200,sr,78,31.2,force,upper_fy,0.00527367927134037 +karman_re200,sr,78,31.2,force,lower_fx,0.004456864669919014 +karman_re200,sr,78,31.2,force,lower_fy,-0.006771677639335394 +karman_re200,sr,79,31.6,force,front_fx,0.0012551764957606792 +karman_re200,sr,79,31.6,force,front_fy,0.0034186202101409435 +karman_re200,sr,79,31.6,force,upper_fx,-0.005174810998141766 +karman_re200,sr,79,31.6,force,upper_fy,0.0033316814806312323 +karman_re200,sr,79,31.6,force,lower_fx,0.005608305800706148 +karman_re200,sr,79,31.6,force,lower_fy,-0.006790065206587315 +karman_re200,sr,80,32.0,force,front_fx,0.0026925199199467897 +karman_re200,sr,80,32.0,force,front_fy,0.0009325366700068116 +karman_re200,sr,80,32.0,force,upper_fx,-0.007370498031377792 +karman_re200,sr,80,32.0,force,upper_fy,0.0020484633278101683 +karman_re200,sr,80,32.0,force,lower_fx,0.005461699329316616 +karman_re200,sr,80,32.0,force,lower_fy,-0.006328724790364504 +karman_re200,sr,81,32.4,force,front_fx,0.002378667239099741 +karman_re200,sr,81,32.4,force,front_fy,-0.0018277973867952824 +karman_re200,sr,81,32.4,force,upper_fx,-0.008147303014993668 +karman_re200,sr,81,32.4,force,upper_fy,0.0027957421261817217 +karman_re200,sr,81,32.4,force,lower_fx,0.0039963205344974995 +karman_re200,sr,81,32.4,force,lower_fy,-0.005819841753691435 +karman_re200,sr,82,32.8,force,front_fx,0.0009307967848144472 +karman_re200,sr,82,32.8,force,front_fy,-0.003964355681091547 +karman_re200,sr,82,32.8,force,upper_fx,-0.006354999728500843 +karman_re200,sr,82,32.8,force,upper_fy,0.004687064792960882 +karman_re200,sr,82,32.8,force,lower_fx,0.002401176141574979 +karman_re200,sr,82,32.8,force,lower_fy,-0.005532835144549608 +karman_re200,sr,83,33.2,force,front_fx,-0.00116463762242347 +karman_re200,sr,83,33.2,force,front_fy,-0.004942584782838821 +karman_re200,sr,83,33.2,force,upper_fx,-0.0031164775136858225 +karman_re200,sr,83,33.2,force,upper_fy,0.0064523667097091675 +karman_re200,sr,83,33.2,force,lower_fx,0.0011596840340644121 +karman_re200,sr,83,33.2,force,lower_fy,-0.005702821537852287 +karman_re200,sr,84,33.6,force,front_fx,-0.002496596658602357 +karman_re200,sr,84,33.6,force,front_fy,-0.005289052147418261 +karman_re200,sr,84,33.6,force,upper_fx,0.00039989399374462664 +karman_re200,sr,84,33.6,force,upper_fy,0.007012839429080486 +karman_re200,sr,84,33.6,force,lower_fx,-0.00023682488244958222 +karman_re200,sr,84,33.6,force,lower_fy,-0.00628078356385231 +karman_re200,sr,85,34.0,force,front_fx,-0.002268349751830101 +karman_re200,sr,85,34.0,force,front_fy,-0.005227965302765369 +karman_re200,sr,85,34.0,force,upper_fx,0.0029171090573072433 +karman_re200,sr,85,34.0,force,upper_fy,0.006754913367331028 +karman_re200,sr,85,34.0,force,lower_fx,-0.0016989876748993993 +karman_re200,sr,85,34.0,force,lower_fy,-0.006234239786863327 +karman_re200,sr,86,34.4,force,front_fx,-0.0006428310880437493 +karman_re200,sr,86,34.4,force,front_fy,-0.004807265009731054 +karman_re200,sr,86,34.4,force,upper_fx,0.004657484125345945 +karman_re200,sr,86,34.4,force,upper_fy,0.006745247635990381 +karman_re200,sr,86,34.4,force,lower_fx,-0.0033612269908189774 +karman_re200,sr,86,34.4,force,lower_fy,-0.005005888175219297 +karman_re200,sr,87,34.8,force,front_fx,0.001540742814540863 +karman_re200,sr,87,34.8,force,front_fy,-0.0032054875046014786 +karman_re200,sr,87,34.8,force,upper_fx,0.005689343437552452 +karman_re200,sr,87,34.8,force,upper_fy,0.006727518513798714 +karman_re200,sr,87,34.8,force,lower_fx,-0.005494681186974049 +karman_re200,sr,87,34.8,force,lower_fy,-0.0030850551556795835 +karman_re200,sr,88,35.2,force,front_fx,0.002787364646792412 +karman_re200,sr,88,35.2,force,front_fy,-0.0006300008972175419 +karman_re200,sr,88,35.2,force,upper_fx,0.005361142102628946 +karman_re200,sr,88,35.2,force,upper_fy,0.006268960423767567 +karman_re200,sr,88,35.2,force,lower_fx,-0.0076282089576125145 +karman_re200,sr,88,35.2,force,lower_fy,-0.0020209061913192272 +karman_re200,sr,89,35.6,force,front_fx,0.0022876530420035124 +karman_re200,sr,89,35.6,force,front_fy,0.0021472948137670755 +karman_re200,sr,89,35.6,force,upper_fx,0.003791567636653781 +karman_re200,sr,89,35.6,force,upper_fy,0.005799881648272276 +karman_re200,sr,89,35.6,force,lower_fx,-0.008145091123878956 +karman_re200,sr,89,35.6,force,lower_fy,-0.00298865744844079 +karman_re200,sr,90,36.0,force,front_fx,0.0007062949007377028 +karman_re200,sr,90,36.0,force,front_fy,0.00413349736481905 +karman_re200,sr,90,36.0,force,upper_fx,0.002279233420267701 +karman_re200,sr,90,36.0,force,upper_fy,0.005536193959414959 +karman_re200,sr,90,36.0,force,lower_fx,-0.006086543668061495 +karman_re200,sr,90,36.0,force,lower_fy,-0.0049598743207752705 +karman_re200,sr,91,36.4,force,front_fx,-0.001382959308102727 +karman_re200,sr,91,36.4,force,front_fy,0.005011190660297871 +karman_re200,sr,91,36.4,force,upper_fx,0.001039358670823276 +karman_re200,sr,91,36.4,force,upper_fy,0.005794706288725138 +karman_re200,sr,91,36.4,force,lower_fx,-0.0026908249128609896 +karman_re200,sr,91,36.4,force,lower_fy,-0.006646377965807915 +karman_re200,sr,92,36.8,force,front_fx,-0.0025591421872377396 +karman_re200,sr,92,36.8,force,front_fy,0.005282280035316944 +karman_re200,sr,92,36.8,force,upper_fx,-0.00037470817915163934 +karman_re200,sr,92,36.8,force,upper_fy,0.0063765691593289375 +karman_re200,sr,92,36.8,force,lower_fx,0.0007725260220468044 +karman_re200,sr,92,36.8,force,lower_fy,-0.007047831546515226 +karman_re200,sr,93,37.2,force,front_fx,-0.00215892237611115 +karman_re200,sr,93,37.2,force,front_fy,0.0051849158480763435 +karman_re200,sr,93,37.2,force,upper_fx,-0.0018445632886141539 +karman_re200,sr,93,37.2,force,upper_fy,0.006220604758709669 +karman_re200,sr,93,37.2,force,lower_fx,0.003152824705466628 +karman_re200,sr,93,37.2,force,lower_fy,-0.00677351513877511 +karman_re200,sr,94,37.6,force,front_fx,-0.00043634496978484094 +karman_re200,sr,94,37.6,force,front_fy,0.0046630362048745155 +karman_re200,sr,94,37.6,force,upper_fx,-0.003553922288119793 +karman_re200,sr,94,37.6,force,upper_fy,0.004848754499107599 +karman_re200,sr,94,37.6,force,lower_fx,0.004808194935321808 +karman_re200,sr,94,37.6,force,lower_fy,-0.006803525611758232 +karman_re200,sr,95,38.0,force,front_fx,0.0017178697744384408 +karman_re200,sr,95,38.0,force,front_fy,0.002913400763645768 +karman_re200,sr,95,38.0,force,upper_fx,-0.00572590809315443 +karman_re200,sr,95,38.0,force,upper_fy,0.0029037666972726583 +karman_re200,sr,95,38.0,force,lower_fx,0.00571576040238142 +karman_re200,sr,95,38.0,force,lower_fy,-0.006716481875628233 +karman_re200,sr,96,38.4,force,front_fx,0.0027721631340682507 +karman_re200,sr,96,38.4,force,front_fy,0.00031792488880455494 +karman_re200,sr,96,38.4,force,upper_fx,-0.007773473858833313 +karman_re200,sr,96,38.4,force,upper_fy,0.0020277390722185373 +karman_re200,sr,96,38.4,force,lower_fx,0.005215771030634642 +karman_re200,sr,96,38.4,force,lower_fy,-0.006190887186676264 +karman_re200,sr,97,38.8,force,front_fx,0.0021527993958443403 +karman_re200,sr,97,38.8,force,front_fy,-0.002430022694170475 +karman_re200,sr,97,38.8,force,upper_fx,-0.007966502569615841 +karman_re200,sr,97,38.8,force,upper_fy,0.0031775962561368942 +karman_re200,sr,97,38.8,force,lower_fx,0.003588148159906268 +karman_re200,sr,97,38.8,force,lower_fy,-0.0057308063842356205 +karman_re200,sr,98,39.2,force,front_fx,0.00046999414917081594 +karman_re200,sr,98,39.2,force,front_fy,-0.004265623167157173 +karman_re200,sr,98,39.2,force,upper_fx,-0.005710338242352009 +karman_re200,sr,98,39.2,force,upper_fy,0.005155281629413366 +karman_re200,sr,98,39.2,force,lower_fx,0.002120144432410598 +karman_re200,sr,98,39.2,force,lower_fy,-0.005509912967681885 +karman_re200,sr,99,39.6,force,front_fx,-0.0015813532518222928 +karman_re200,sr,99,39.6,force,front_fy,-0.005077204201370478 +karman_re200,sr,99,39.6,force,upper_fx,-0.0022557585034519434 +karman_re200,sr,99,39.6,force,upper_fy,0.00672442140057683 +karman_re200,sr,99,39.6,force,lower_fx,0.0008667949005030096 +karman_re200,sr,99,39.6,force,lower_fy,-0.005844717845320702 +karman_re200,sr,100,40.0,force,front_fx,-0.0026059644296765327 +karman_re200,sr,100,40.0,force,front_fy,-0.0053042201325297356 +karman_re200,sr,100,40.0,force,upper_fx,0.0010856189765036106 +karman_re200,sr,100,40.0,force,upper_fy,0.006995887029916048 +karman_re200,sr,100,40.0,force,lower_fx,-0.0005666731158271432 +karman_re200,sr,100,40.0,force,lower_fy,-0.006385422311723232 +karman_re200,sr,101,40.4,force,front_fx,-0.002001164946705103 +karman_re200,sr,101,40.4,force,front_fy,-0.005179153755307198 +karman_re200,sr,101,40.4,force,upper_fx,0.0033692410215735435 +karman_re200,sr,101,40.4,force,upper_fy,0.0067245508544147015 +karman_re200,sr,101,40.4,force,lower_fx,-0.002041179221123457 +karman_re200,sr,101,40.4,force,lower_fy,-0.006073764991015196 +karman_re200,sr,102,40.8,force,front_fx,-0.00015673181042075157 +karman_re200,sr,102,40.8,force,front_fy,-0.004560912027955055 +karman_re200,sr,102,40.8,force,upper_fx,0.004975495859980583 +karman_re200,sr,102,40.8,force,upper_fy,0.006774127017706633 +karman_re200,sr,102,40.8,force,lower_fx,-0.003809820394963026 +karman_re200,sr,102,40.8,force,lower_fy,-0.004581899847835302 +karman_re200,sr,103,41.2,force,front_fx,0.0019579418003559113 +karman_re200,sr,103,41.2,force,front_fy,-0.002657761564478278 +karman_re200,sr,103,41.2,force,upper_fx,0.005757545121014118 +karman_re200,sr,103,41.2,force,upper_fy,0.0066561466082930565 +karman_re200,sr,103,41.2,force,lower_fx,-0.006017623469233513 +karman_re200,sr,103,41.2,force,lower_fy,-0.002695574425160885 +karman_re200,sr,104,41.6,force,front_fx,0.002800491638481617 +karman_re200,sr,104,41.6,force,front_fy,2.307237764398451e-06 +karman_re200,sr,104,41.6,force,upper_fx,0.005079783033579588 +karman_re200,sr,104,41.6,force,upper_fy,0.006139528937637806 +karman_re200,sr,104,41.6,force,lower_fx,-0.007963431999087334 +karman_re200,sr,104,41.6,force,lower_fy,-0.0020627134945243597 +karman_re200,sr,105,42.0,force,front_fx,0.002026424277573824 +karman_re200,sr,105,42.0,force,front_fy,0.0027177741285413504 +karman_re200,sr,105,42.0,force,upper_fx,0.0034036647994071245 +karman_re200,sr,105,42.0,force,upper_fy,0.00571740698069334 +karman_re200,sr,105,42.0,force,lower_fx,-0.007855944335460663 +karman_re200,sr,105,42.0,force,lower_fy,-0.003411600599065423 +karman_re200,sr,106,42.4,force,front_fx,0.00021374777134042233 +karman_re200,sr,106,42.4,force,front_fy,0.004395465366542339 +karman_re200,sr,106,42.4,force,upper_fx,0.001992821926251054 +karman_re200,sr,106,42.4,force,upper_fy,0.005527782253921032 +karman_re200,sr,106,42.4,force,lower_fx,-0.005391594022512436 +karman_re200,sr,106,42.4,force,lower_fy,-0.005412217229604721 +karman_re200,sr,107,42.8,force,front_fx,-0.0017741858027875423 +karman_re200,sr,107,42.8,force,front_fy,0.005125232506543398 +karman_re200,sr,107,42.8,force,upper_fx,0.0007144081755541265 +karman_re200,sr,107,42.8,force,upper_fy,0.005934033542871475 +karman_re200,sr,107,42.8,force,lower_fx,-0.0018353706691414118 +karman_re200,sr,107,42.8,force,lower_fy,-0.006852645426988602 +karman_re200,sr,108,43.2,force,front_fx,-0.0026050489395856857 +karman_re200,sr,108,43.2,force,front_fy,0.005279601085931063 +karman_re200,sr,108,43.2,force,upper_fx,-0.0007092467858456075 +karman_re200,sr,108,43.2,force,upper_fy,0.006422501057386398 +karman_re200,sr,108,43.2,force,lower_fx,0.0014127945760264993 +karman_re200,sr,108,43.2,force,lower_fy,-0.006966718472540379 +karman_re200,sr,109,43.6,force,front_fx,-0.0018563073826953769 +karman_re200,sr,109,43.6,force,front_fy,0.005130136385560036 +karman_re200,sr,109,43.6,force,upper_fx,-0.0021987352520227432 +karman_re200,sr,109,43.6,force,upper_fy,0.005998856853693724 +karman_re200,sr,109,43.6,force,lower_fx,0.003576946211978793 +karman_re200,sr,109,43.6,force,lower_fy,-0.0067408145405352116 +karman_re200,sr,110,44.0,force,front_fx,7.547927089035511e-05 +karman_re200,sr,110,44.0,force,front_fy,0.004389917943626642 +karman_re200,sr,110,44.0,force,upper_fx,-0.004009844269603491 +karman_re200,sr,110,44.0,force,upper_fy,0.004391683731228113 +karman_re200,sr,110,44.0,force,lower_fx,0.005118846893310547 +karman_re200,sr,110,44.0,force,lower_fy,-0.006816101726144552 +karman_re200,sr,111,44.4,force,front_fx,0.0021161355543881655 +karman_re200,sr,111,44.4,force,front_fy,0.0023577900137752295 +karman_re200,sr,111,44.4,force,upper_fx,-0.006259909365326166 +karman_re200,sr,111,44.4,force,upper_fy,0.0025470296386629343 +karman_re200,sr,111,44.4,force,lower_fx,0.005742358975112438 +karman_re200,sr,111,44.4,force,lower_fy,-0.006624722387641668 +karman_re200,sr,112,44.8,force,front_fx,0.0027533972170203924 +karman_re200,sr,112,44.8,force,front_fy,-0.00032452470622956753 +karman_re200,sr,112,44.8,force,upper_fx,-0.008053522557020187 +karman_re200,sr,112,44.8,force,upper_fy,0.002126930980011821 +karman_re200,sr,112,44.8,force,lower_fx,0.004905069246888161 +karman_re200,sr,112,44.8,force,lower_fy,-0.006063381209969521 +karman_re200,sr,113,45.2,force,front_fx,0.001853490131907165 +karman_re200,sr,113,45.2,force,front_fy,-0.0029744869098067284 +karman_re200,sr,113,45.2,force,upper_fx,-0.007638765498995781 +karman_re200,sr,113,45.2,force,upper_fy,0.003599366173148155 +karman_re200,sr,113,45.2,force,lower_fx,0.0031939204782247543 +karman_re200,sr,113,45.2,force,lower_fy,-0.005652010906487703 +karman_re200,sr,114,45.6,force,front_fx,-2.8731581551255658e-05 +karman_re200,sr,114,45.6,force,front_fy,-0.004513763356953859 +karman_re200,sr,114,45.6,force,upper_fx,-0.004999190103262663 +karman_re200,sr,114,45.6,force,upper_fy,0.005595508962869644 +karman_re200,sr,114,45.6,force,lower_fx,0.0018482658779248595 +karman_re200,sr,114,45.6,force,lower_fy,-0.005520604085177183 +karman_re200,sr,115,46.0,force,front_fx,-0.0019447262166067958 +karman_re200,sr,115,46.0,force,front_fy,-0.005181393586099148 +karman_re200,sr,115,46.0,force,upper_fx,-0.001421103603206575 +karman_re200,sr,115,46.0,force,upper_fy,0.0069102151319384575 +karman_re200,sr,115,46.0,force,lower_fx,0.0005512307398021221 +karman_re200,sr,115,46.0,force,lower_fy,-0.005991950165480375 +karman_re200,sr,116,46.4,force,front_fx,-0.00258925324305892 +karman_re200,sr,116,46.4,force,front_fy,-0.00529042724519968 +karman_re200,sr,116,46.4,force,upper_fx,0.0017072668997570872 +karman_re200,sr,116,46.4,force,upper_fy,0.006927549373358488 +karman_re200,sr,116,46.4,force,lower_fx,-0.0008859866065904498 +karman_re200,sr,116,46.4,force,lower_fy,-0.0064177131280303 +karman_re200,sr,117,46.8,force,front_fx,-0.0016749990172684193 +karman_re200,sr,117,46.8,force,front_fy,-0.005113786552101374 +karman_re200,sr,117,46.8,force,upper_fx,0.0037679383531212807 +karman_re200,sr,117,46.8,force,upper_fy,0.0067191594280302525 +karman_re200,sr,117,46.8,force,lower_fx,-0.0024098646827042103 +karman_re200,sr,117,46.8,force,lower_fy,-0.005842100363224745 +karman_re200,sr,118,47.2,force,front_fx,0.0003544938226696104 +karman_re200,sr,118,47.2,force,front_fy,-0.004238655790686607 +karman_re200,sr,118,47.2,force,upper_fx,0.005251601804047823 +karman_re200,sr,118,47.2,force,upper_fy,0.006795121356844902 +karman_re200,sr,118,47.2,force,lower_fx,-0.004276694264262915 +karman_re200,sr,118,47.2,force,lower_fy,-0.004137845244258642 +karman_re200,sr,119,47.6,force,front_fx,0.002316218800842762 +karman_re200,sr,119,47.6,force,front_fy,-0.0020695708226412535 +karman_re200,sr,119,47.6,force,upper_fx,0.005728522315621376 +karman_re200,sr,119,47.6,force,upper_fy,0.00655255327001214 +karman_re200,sr,119,47.6,force,lower_fx,-0.006538553163409233 +karman_re200,sr,119,47.6,force,lower_fy,-0.002377448370680213 +karman_re200,sr,120,48.0,force,front_fx,0.002722810721024871 +karman_re200,sr,120,48.0,force,front_fy,0.0006558048771694303 +karman_re200,sr,120,48.0,force,upper_fx,0.004736812319606543 +karman_re200,sr,120,48.0,force,upper_fy,0.006022942252457142 +karman_re200,sr,120,48.0,force,lower_fx,-0.008168196305632591 +karman_re200,sr,120,48.0,force,lower_fy,-0.0022379241418093443 +karman_re200,sr,121,48.4,force,front_fx,0.0016877064481377602 +karman_re200,sr,121,48.4,force,front_fy,0.0032306513749063015 +karman_re200,sr,121,48.4,force,upper_fx,0.003026583231985569 +karman_re200,sr,121,48.4,force,upper_fy,0.005644031800329685 +karman_re200,sr,121,48.4,force,lower_fx,-0.007434308063238859 +karman_re200,sr,121,48.4,force,lower_fy,-0.0038648589979857206 +karman_re200,sr,122,48.8,force,front_fx,-0.0002915671793743968 +karman_re200,sr,122,48.8,force,front_fy,0.0046222456730902195 +karman_re200,sr,122,48.8,force,upper_fx,0.0017182336887344718 +karman_re200,sr,122,48.8,force,upper_fy,0.00556963961571455 +karman_re200,sr,122,48.8,force,lower_fx,-0.004622855689376593 +karman_re200,sr,122,48.8,force,lower_fy,-0.005857961252331734 +karman_re200,sr,123,49.2,force,front_fx,-0.002104120096191764 +karman_re200,sr,123,49.2,force,front_fy,0.0052037667483091354 +karman_re200,sr,123,49.2,force,upper_fx,0.0003941924369428307 +karman_re200,sr,123,49.2,force,upper_fy,0.006084104999899864 +karman_re200,sr,123,49.2,force,lower_fx,-0.0009995297295972705 +karman_re200,sr,123,49.2,force,lower_fy,-0.006984946317970753 +karman_re200,sr,124,49.6,force,front_fx,-0.0025726384483277798 +karman_re200,sr,124,49.6,force,front_fy,0.005262202117592096 +karman_re200,sr,124,49.6,force,upper_fx,-0.0010521349031478167 +karman_re200,sr,124,49.6,force,upper_fy,0.0064315334893763065 +karman_re200,sr,124,49.6,force,lower_fx,0.0019869201350957155 +karman_re200,sr,124,49.6,force,lower_fy,-0.006883525289595127 +karman_re200,sr,125,50.0,force,front_fx,-0.0014933212660253048 +karman_re200,sr,125,50.0,force,front_fy,0.005047231912612915 +karman_re200,sr,125,50.0,force,upper_fx,-0.0025741790886968374 +karman_re200,sr,125,50.0,force,upper_fy,0.005712517071515322 +karman_re200,sr,125,50.0,force,lower_fx,0.003965056501328945 +karman_re200,sr,125,50.0,force,lower_fy,-0.006729441229254007 +karman_re200,sr,126,50.4,force,front_fx,0.0005888964515179396 +karman_re200,sr,126,50.4,force,front_fy,0.004038324113935232 +karman_re200,sr,126,50.4,force,upper_fx,-0.0045007746666669846 +karman_re200,sr,126,50.4,force,upper_fy,0.003930328413844109 +karman_re200,sr,126,50.4,force,lower_fx,0.005376492161303759 +karman_re200,sr,126,50.4,force,lower_fy,-0.0068271579220891 +karman_re200,sr,127,50.8,force,front_fx,0.0024272147566080093 +karman_re200,sr,127,50.8,force,front_fy,0.0017658021533861756 +karman_re200,sr,127,50.8,force,upper_fx,-0.00676523195579648 +karman_re200,sr,127,50.8,force,upper_fy,0.002261271933093667 +karman_re200,sr,127,50.8,force,lower_fx,0.00568516505882144 +karman_re200,sr,127,50.8,force,lower_fy,-0.0065065836533904076 +karman_re200,sr,128,51.2,force,front_fx,0.002635285025462508 +karman_re200,sr,128,51.2,force,front_fy,-0.0009719689260236919 +karman_re200,sr,128,51.2,force,upper_fx,-0.008206594735383987 +karman_re200,sr,128,51.2,force,upper_fy,0.0023477328941226006 +karman_re200,sr,128,51.2,force,lower_fx,0.004525984637439251 +karman_re200,sr,128,51.2,force,lower_fy,-0.005950994323939085 +karman_re200,sr,129,51.6,force,front_fx,0.0015109068481251597 +karman_re200,sr,129,51.6,force,front_fy,-0.0034465696662664413 +karman_re200,sr,129,51.6,force,upper_fx,-0.007167967036366463 +karman_re200,sr,129,51.6,force,upper_fy,0.00404546782374382 +karman_re200,sr,129,51.6,force,lower_fx,0.002828842494636774 +karman_re200,sr,129,51.6,force,lower_fy,-0.005580758675932884 +karman_re200,sr,130,52.0,force,front_fx,-0.0005211620591580868 +karman_re200,sr,130,52.0,force,front_fy,-0.004708646330982447 +karman_re200,sr,130,52.0,force,upper_fx,-0.004237886518239975 +karman_re200,sr,130,52.0,force,upper_fy,0.005990118253976107 +karman_re200,sr,130,52.0,force,lower_fx,0.001564461155794561 +karman_re200,sr,130,52.0,force,lower_fy,-0.005566732957959175 +karman_re200,sr,131,52.4,force,front_fx,-0.0022340165451169014 +karman_re200,sr,131,52.4,force,front_fy,-0.005245840642601252 +karman_re200,sr,131,52.4,force,upper_fx,-0.0006095579010434449 +karman_re200,sr,131,52.4,force,upper_fy,0.007008769083768129 +karman_re200,sr,131,52.4,force,lower_fx,0.00023030278680380434 +karman_re200,sr,131,52.4,force,lower_fy,-0.006126610096544027 +karman_re200,sr,132,52.8,force,front_fx,-0.002513592131435871 +karman_re200,sr,132,52.8,force,front_fy,-0.00527579290792346 +karman_re200,sr,132,52.8,force,upper_fx,0.002263039583340287 +karman_re200,sr,132,52.8,force,upper_fy,0.006859260611236095 +karman_re200,sr,132,52.8,force,lower_fx,-0.0012271127197891474 +karman_re200,sr,132,52.8,force,lower_fy,-0.006395919248461723 +karman_re200,sr,133,53.2,force,front_fx,-0.0012660661013796926 +karman_re200,sr,133,53.2,force,front_fy,-0.005016503855586052 +karman_re200,sr,133,53.2,force,upper_fx,0.004160975571721792 +karman_re200,sr,133,53.2,force,upper_fy,0.0067296684719622135 +karman_re200,sr,133,53.2,force,lower_fx,-0.0027929930947721004 +karman_re200,sr,133,53.2,force,lower_fy,-0.005539541132748127 +karman_re200,sr,134,53.6,force,front_fx,0.0008749232511036098 +karman_re200,sr,134,53.6,force,front_fy,-0.003839887911453843 +karman_re200,sr,134,53.6,force,upper_fx,0.0054690046235919 +karman_re200,sr,134,53.6,force,upper_fy,0.006784123368561268 +karman_re200,sr,134,53.6,force,lower_fx,-0.004782936070114374 +karman_re200,sr,134,53.6,force,lower_fy,-0.0036817153450101614 +karman_re200,sr,135,54.0,force,front_fx,0.002578533021733165 +karman_re200,sr,135,54.0,force,front_fy,-0.0014640234876424074 +karman_re200,sr,135,54.0,force,upper_fx,0.005617076531052589 +karman_re200,sr,135,54.0,force,upper_fy,0.006432757247239351 +karman_re200,sr,135,54.0,force,lower_fx,-0.007034896407276392 +karman_re200,sr,135,54.0,force,lower_fy,-0.0021528289653360844 +karman_re200,sr,136,54.4,force,front_fx,0.0025739651173353195 +karman_re200,sr,136,54.4,force,front_fy,0.0013048526598140597 +karman_re200,sr,136,54.4,force,upper_fx,0.004348100163042545 +karman_re200,sr,136,54.4,force,upper_fy,0.005916087422519922 +karman_re200,sr,136,54.4,force,lower_fx,-0.00824805535376072 +karman_re200,sr,136,54.4,force,lower_fy,-0.002504507079720497 +karman_re200,sr,137,54.8,force,front_fx,0.001301273819990456 +karman_re200,sr,137,54.8,force,front_fy,0.0036682626232504845 +karman_re200,sr,137,54.8,force,upper_fx,0.0026878630742430687 +karman_re200,sr,137,54.8,force,upper_fy,0.005587184336036444 +karman_re200,sr,137,54.8,force,lower_fx,-0.006909945514053106 +karman_re200,sr,137,54.8,force,lower_fy,-0.0043363915756344795 +karman_re200,sr,138,55.2,force,front_fx,-0.0007785380003042519 +karman_re200,sr,138,55.2,force,front_fy,0.0048070368357002735 +karman_re200,sr,138,55.2,force,upper_fx,0.001441486761905253 +karman_re200,sr,138,55.2,force,upper_fy,0.005645138211548328 +karman_re200,sr,138,55.2,force,lower_fx,-0.0038175852969288826 +karman_re200,sr,138,55.2,force,lower_fy,-0.006242731120437384 +karman_re200,sr,139,55.6,force,front_fx,-0.0023611404467374086 +karman_re200,sr,139,55.6,force,front_fy,0.005255663767457008 +karman_re200,sr,139,55.6,force,upper_fx,5.8204986999044195e-05 +karman_re200,sr,139,55.6,force,upper_fy,0.006229659542441368 +karman_re200,sr,139,55.6,force,lower_fx,-0.00021609215764328837 +karman_re200,sr,139,55.6,force,lower_fy,-0.0070560891181230545 +karman_re200,sr,140,56.0,force,front_fx,-0.002448827028274536 +karman_re200,sr,140,56.0,force,front_fy,0.00523210596293211 +karman_re200,sr,140,56.0,force,upper_fx,-0.0013879328034818172 +karman_re200,sr,140,56.0,force,upper_fy,0.006379054393619299 +karman_re200,sr,140,56.0,force,lower_fx,0.002510094316676259 +karman_re200,sr,140,56.0,force,lower_fy,-0.006817068438977003 +karman_re200,sr,141,56.4,force,front_fx,-0.0010698322439566255 +karman_re200,sr,141,56.4,force,front_fy,0.004919813945889473 +karman_re200,sr,141,56.4,force,upper_fx,-0.002974290633574128 +karman_re200,sr,141,56.4,force,upper_fy,0.005370135419070721 +karman_re200,sr,141,56.4,force,lower_fx,0.0043315161019563675 +karman_re200,sr,141,56.4,force,lower_fy,-0.006742569617927074 +karman_re200,sr,142,56.8,force,front_fx,0.0010876746382564306 +karman_re200,sr,142,56.8,force,front_fy,0.0035993107594549656 +karman_re200,sr,142,56.8,force,upper_fx,-0.004999649710953236 +karman_re200,sr,142,56.8,force,upper_fy,0.0034681232646107674 +karman_re200,sr,142,56.8,force,lower_fx,0.005561096593737602 +karman_re200,sr,142,56.8,force,lower_fy,-0.006791831459850073 +karman_re200,sr,143,57.2,force,front_fx,0.0026449260767549276 +karman_re200,sr,143,57.2,force,front_fy,0.0011634881375357509 +karman_re200,sr,143,57.2,force,upper_fx,-0.007226818241178989 +karman_re200,sr,143,57.2,force,upper_fy,0.0020883500110358 +karman_re200,sr,143,57.2,force,lower_fx,0.0055334181524813175 +karman_re200,sr,143,57.2,force,lower_fy,-0.0063745868392288685 +karman_re200,sr,144,57.6,force,front_fx,0.0024678537156432867 +karman_re200,sr,144,57.6,force,front_fy,-0.001609053579159081 +karman_re200,sr,144,57.6,force,upper_fx,-0.008196482434868813 +karman_re200,sr,144,57.6,force,upper_fy,0.0026633150409907103 +karman_re200,sr,144,57.6,force,lower_fx,0.004133596550673246 +karman_re200,sr,144,57.6,force,lower_fy,-0.005852339789271355 +karman_re200,sr,145,58.0,force,front_fx,0.0010913786245509982 +karman_re200,sr,145,58.0,force,front_fy,-0.0038385572843253613 +karman_re200,sr,145,58.0,force,upper_fx,-0.006603683810681105 +karman_re200,sr,145,58.0,force,upper_fy,0.004508456215262413 +karman_re200,sr,145,58.0,force,lower_fx,0.002502771094441414 +karman_re200,sr,145,58.0,force,lower_fy,-0.005529239773750305 +karman_re200,sr,146,58.4,force,front_fx,-0.001005223486572504 +karman_re200,sr,146,58.4,force,front_fy,-0.004884849302470684 +karman_re200,sr,146,58.4,force,upper_fx,-0.00341828097589314 +karman_re200,sr,146,58.4,force,upper_fy,0.006336953025311232 +karman_re200,sr,146,58.4,force,lower_fx,0.0012739477679133415 +karman_re200,sr,146,58.4,force,lower_fy,-0.00565366679802537 +karman_re200,sr,147,58.8,force,front_fx,-0.00244023441337049 +karman_re200,sr,147,58.8,force,front_fy,-0.0052806357853114605 +karman_re200,sr,147,58.8,force,upper_fx,0.0001449744013370946 +karman_re200,sr,147,58.8,force,upper_fy,0.007023111451417208 +karman_re200,sr,147,58.8,force,lower_fx,-0.00010928877600235865 +karman_re200,sr,147,58.8,force,lower_fy,-0.0062454985454678535 +karman_re200,sr,148,59.2,force,front_fx,-0.0023419843055307865 +karman_re200,sr,148,59.2,force,front_fy,-0.005237423349171877 +karman_re200,sr,148,59.2,force,upper_fx,0.0027571881655603647 +karman_re200,sr,148,59.2,force,upper_fy,0.006782933603972197 +karman_re200,sr,148,59.2,force,lower_fx,-0.0015631095739081502 +karman_re200,sr,148,59.2,force,lower_fy,-0.006293711252510548 +karman_re200,sr,149,59.6,force,front_fx,-0.0008177009876817465 +karman_re200,sr,149,59.6,force,front_fy,-0.0048650112003088 +karman_re200,sr,149,59.6,force,upper_fx,0.0045226505026221275 +karman_re200,sr,149,59.6,force,upper_fy,0.006744363345205784 +karman_re200,sr,149,59.6,force,lower_fx,-0.0032011866569519043 +karman_re200,sr,149,59.6,force,lower_fy,-0.005162128247320652 +karman_re200,sr,150,60.0,force,front_fx,0.0013549324357882142 +karman_re200,sr,150,60.0,force,front_fy,-0.0033658251632004976 +karman_re200,sr,150,60.0,force,upper_fx,0.005628026556223631 +karman_re200,sr,150,60.0,force,upper_fy,0.00675927335396409 +karman_re200,sr,150,60.0,force,lower_fx,-0.00530844135209918 +karman_re200,sr,150,60.0,force,lower_fy,-0.0032402528449892998 +karman_re200,sr,151,60.4,force,front_fx,0.002739016432315111 +karman_re200,sr,151,60.4,force,front_fy,-0.0008439149241894484 +karman_re200,sr,151,60.4,force,upper_fx,0.0054281591437757015 +karman_re200,sr,151,60.4,force,upper_fy,0.006299054250121117 +karman_re200,sr,151,60.4,force,lower_fx,-0.007476396393030882 +karman_re200,sr,151,60.4,force,lower_fy,-0.0020328820683062077 +karman_re200,sr,152,60.8,force,front_fx,0.002366140950471163 +karman_re200,sr,152,60.8,force,front_fy,0.001937396707944572 +karman_re200,sr,152,60.8,force,upper_fx,0.003932662773877382 +karman_re200,sr,152,60.8,force,upper_fy,0.005820356775075197 +karman_re200,sr,152,60.8,force,lower_fx,-0.00817425362765789 +karman_re200,sr,152,60.8,force,lower_fy,-0.0028546189423650503 +karman_re200,sr,153,61.2,force,front_fx,0.0008632647222839296 +karman_re200,sr,153,61.2,force,front_fy,0.004022778477519751 +karman_re200,sr,153,61.2,force,upper_fx,0.0023762292694300413 +karman_re200,sr,153,61.2,force,upper_fy,0.00553930876776576 +karman_re200,sr,153,61.2,force,lower_fx,-0.006299852859228849 +karman_re200,sr,153,61.2,force,lower_fy,-0.004796030931174755 +karman_re200,sr,154,61.6,force,front_fx,-0.0012366994051262736 +karman_re200,sr,154,61.6,force,front_fy,0.0049610803835093975 +karman_re200,sr,154,61.6,force,upper_fx,0.0011418823851272464 +karman_re200,sr,154,61.6,force,upper_fy,0.0057500023394823074 +karman_re200,sr,154,61.6,force,lower_fx,-0.0029760547913610935 +karman_re200,sr,154,61.6,force,lower_fy,-0.006560526322573423 +karman_re200,sr,155,62.0,force,front_fx,-0.0025167595595121384 +karman_re200,sr,155,62.0,force,front_fy,0.005280226934701204 +karman_re200,sr,155,62.0,force,upper_fx,-0.0002676510775927454 +karman_re200,sr,155,62.0,force,upper_fy,0.006339778192341328 +karman_re200,sr,155,62.0,force,lower_fx,0.0005257779266685247 +karman_re200,sr,155,62.0,force,lower_fy,-0.0070553990080952644 +karman_re200,sr,156,62.4,force,front_fx,-0.0022483556531369686 +karman_re200,sr,156,62.4,force,front_fy,0.005198314320296049 +karman_re200,sr,156,62.4,force,upper_fx,-0.0017370247514918447 +karman_re200,sr,156,62.4,force,upper_fy,0.0062583074904978275 +karman_re200,sr,156,62.4,force,lower_fx,0.0029820313211530447 +karman_re200,sr,156,62.4,force,lower_fy,-0.006769661325961351 +karman_re200,sr,157,62.8,force,front_fx,-0.0006001206347718835 +karman_re200,sr,157,62.8,force,front_fy,0.004743119701743126 +karman_re200,sr,157,62.8,force,upper_fx,-0.003400894347578287 +karman_re200,sr,157,62.8,force,upper_fy,0.0049733049236238 +karman_re200,sr,157,62.8,force,lower_fx,0.004682828672230244 +karman_re200,sr,157,62.8,force,lower_fy,-0.0067681316286325455 +karman_re200,sr,158,63.2,force,front_fx,0.0015704600373283029 +karman_re200,sr,158,63.2,force,front_fy,0.0030983653850853443 +karman_re200,sr,158,63.2,force,upper_fx,-0.005534367635846138 +karman_re200,sr,158,63.2,force,upper_fy,0.003031041705980897 +karman_re200,sr,158,63.2,force,lower_fx,0.005682327318936586 +karman_re200,sr,158,63.2,force,lower_fy,-0.0067334105260670185 +karman_re200,sr,159,63.6,force,front_fx,0.002764086937531829 +karman_re200,sr,159,63.6,force,front_fy,0.0005399276851676404 +karman_re200,sr,159,63.6,force,upper_fx,-0.007645747158676386 +karman_re200,sr,159,63.6,force,upper_fy,0.0020282079931348562 +karman_re200,sr,159,63.6,force,lower_fx,0.0053211092017591 +karman_re200,sr,159,63.6,force,lower_fy,-0.006246095523238182 +karman_re200,sr,160,64.0,force,front_fx,0.0022381467279046774 +karman_re200,sr,160,64.0,force,front_fy,-0.0022261866834014654 +karman_re200,sr,160,64.0,force,upper_fx,-0.008048901334404945 +karman_re200,sr,160,64.0,force,upper_fy,0.003049786202609539 +karman_re200,sr,160,64.0,force,lower_fx,0.0037212553434073925 +karman_re200,sr,160,64.0,force,lower_fy,-0.005765540990978479 +karman_re200,sr,161,64.4,force,front_fx,0.0006296912324614823 +karman_re200,sr,161,64.4,force,front_fy,-0.004158920142799616 +karman_re200,sr,161,64.4,force,upper_fx,-0.005950965452939272 +karman_re200,sr,161,64.4,force,upper_fy,0.005001484882086515 +karman_re200,sr,161,64.4,force,lower_fx,0.00220497022382915 +karman_re200,sr,161,64.4,force,lower_fy,-0.005508522968739271 +karman_re200,sr,162,64.8,force,front_fx,-0.0014456430217251182 +karman_re200,sr,162,64.8,force,front_fy,-0.005025634542107582 +karman_re200,sr,162,64.8,force,upper_fx,-0.0025579894427210093 +karman_re200,sr,162,64.8,force,upper_fy,0.0066314577125012875 +karman_re200,sr,162,64.8,force,lower_fx,0.0009654348250478506 +karman_re200,sr,162,64.8,force,lower_fy,-0.005784967914223671 +karman_re200,sr,163,65.2,force,front_fx,-0.002565220231190324 +karman_re200,sr,163,65.2,force,front_fy,-0.005289844237267971 +karman_re200,sr,163,65.2,force,upper_fx,0.0008553293300792575 +karman_re200,sr,163,65.2,force,upper_fy,0.006995484698563814 +karman_re200,sr,163,65.2,force,lower_fx,-0.000448153936304152 +karman_re200,sr,163,65.2,force,lower_fy,-0.006345754489302635 +karman_re200,sr,164,65.6,force,front_fx,-0.0021057825069874525 +karman_re200,sr,164,65.6,force,front_fy,-0.005197648890316486 +karman_re200,sr,164,65.6,force,upper_fx,0.003218594240024686 +karman_re200,sr,164,65.6,force,upper_fy,0.006748693063855171 +karman_re200,sr,164,65.6,force,lower_fx,-0.001916060340590775 +karman_re200,sr,164,65.6,force,lower_fy,-0.006145072635263205 +karman_re200,sr,165,66.0,force,front_fx,-0.00033628472010605037 +karman_re200,sr,165,66.0,force,front_fy,-0.0046447208151221275 +karman_re200,sr,165,66.0,force,upper_fx,0.004865443799644709 +karman_re200,sr,165,66.0,force,upper_fy,0.006776161026209593 +karman_re200,sr,165,66.0,force,lower_fx,-0.003640155540779233 +karman_re200,sr,165,66.0,force,lower_fy,-0.004740588832646608 +karman_re200,sr,166,66.4,force,front_fx,0.001815020339563489 +karman_re200,sr,166,66.4,force,front_fy,-0.0028378674760460854 +karman_re200,sr,166,66.4,force,upper_fx,0.005728328134864569 +karman_re200,sr,166,66.4,force,upper_fy,0.006689798086881638 +karman_re200,sr,166,66.4,force,lower_fx,-0.005826848093420267 +karman_re200,sr,166,66.4,force,lower_fy,-0.002828409429639578 +karman_re200,sr,167,66.8,force,front_fx,0.002789594465866685 +karman_re200,sr,167,66.8,force,front_fy,-0.00021114105766173452 +karman_re200,sr,167,66.8,force,upper_fx,0.005163310095667839 +karman_re200,sr,167,66.8,force,upper_fy,0.006172697991132736 +karman_re200,sr,167,66.8,force,lower_fx,-0.007851341739296913 +karman_re200,sr,167,66.8,force,lower_fy,-0.002033516298979521 +karman_re200,sr,168,67.2,force,front_fx,0.002114542294293642 +karman_re200,sr,168,67.2,force,front_fy,0.0025293880607932806 +karman_re200,sr,168,67.2,force,upper_fx,0.0035233714152127504 +karman_re200,sr,168,67.2,force,upper_fy,0.005727676674723625 +karman_re200,sr,168,67.2,force,lower_fx,-0.007948994636535645 +karman_re200,sr,168,67.2,force,lower_fy,-0.0032523092813789845 +karman_re200,sr,169,67.6,force,front_fx,0.000385039224056527 +karman_re200,sr,169,67.6,force,front_fy,0.004312563221901655 +karman_re200,sr,169,67.6,force,upper_fx,0.0020839639473706484 +karman_re200,sr,169,67.6,force,upper_fy,0.0055189430713653564 +karman_re200,sr,169,67.6,force,lower_fx,-0.0056194704957306385 +karman_re200,sr,169,67.6,force,lower_fy,-0.005253999028354883 +karman_re200,sr,170,68.0,force,front_fx,-0.0016475726151838899 +karman_re200,sr,170,68.0,force,front_fy,0.005089573096483946 +karman_re200,sr,170,68.0,force,upper_fx,0.0008276691078208387 +karman_re200,sr,170,68.0,force,upper_fy,0.005881115794181824 +karman_re200,sr,170,68.0,force,lower_fx,-0.0021145804785192013 +karman_re200,sr,170,68.0,force,lower_fy,-0.006792294327169657 +karman_re200,sr,171,68.4,force,front_fx,-0.0025978684425354004 +karman_re200,sr,171,68.4,force,front_fy,0.005287284962832928 +karman_re200,sr,171,68.4,force,upper_fx,-0.0006070165545679629 +karman_re200,sr,171,68.4,force,upper_fy,0.00640967208892107 +karman_re200,sr,171,68.4,force,lower_fx,0.001202254556119442 +karman_re200,sr,171,68.4,force,lower_fy,-0.006999406963586807 +karman_re200,sr,172,68.8,force,front_fx,-0.00196086592040956 +karman_re200,sr,172,68.8,force,front_fy,0.005156669765710831 +karman_re200,sr,172,68.8,force,upper_fx,-0.00209091417491436 +karman_re200,sr,172,68.8,force,upper_fy,0.006071620155125856 +karman_re200,sr,172,68.8,force,lower_fx,0.0034316224046051502 +karman_re200,sr,172,68.8,force,lower_fy,-0.006746029946953058 +karman_re200,sr,173,69.2,force,front_fx,-9.101884643314406e-05 +karman_re200,sr,173,69.2,force,front_fy,0.00449559697881341 +karman_re200,sr,173,69.2,force,upper_fx,-0.003867026651278138 +karman_re200,sr,173,69.2,force,upper_fy,0.004529824946075678 +karman_re200,sr,173,69.2,force,lower_fx,0.0050117820501327515 +karman_re200,sr,173,69.2,force,lower_fy,-0.0067950957454741 +karman_re200,sr,174,69.6,force,front_fx,0.002004991052672267 +karman_re200,sr,174,69.6,force,front_fy,0.0025312062352895737 +karman_re200,sr,174,69.6,force,upper_fx,-0.006083788815885782 +karman_re200,sr,174,69.6,force,upper_fy,0.002645926084369421 +karman_re200,sr,174,69.6,force,lower_fx,0.005739718675613403 +karman_re200,sr,174,69.6,force,lower_fy,-0.006649164482951164 +karman_re200,sr,175,70.0,force,front_fx,0.00277441437356174 +karman_re200,sr,175,70.0,force,front_fy,-0.00011177021224284545 +karman_re200,sr,175,70.0,force,upper_fx,-0.007979147136211395 +karman_re200,sr,175,70.0,force,upper_fy,0.0020845767576247454 +karman_re200,sr,175,70.0,force,lower_fx,0.005015384405851364 +karman_re200,sr,175,70.0,force,lower_fy,-0.006109894718974829 +karman_re200,sr,176,70.4,force,front_fx,0.001961161382496357 +karman_re200,sr,176,70.4,force,front_fy,-0.0028005691710859537 +karman_re200,sr,176,70.4,force,upper_fx,-0.00776182534173131 +karman_re200,sr,176,70.4,force,upper_fy,0.00348072312772274 +karman_re200,sr,176,70.4,force,lower_fx,0.003327519865706563 +karman_re200,sr,176,70.4,force,lower_fy,-0.00568962749093771 +karman_re200,sr,177,70.8,force,front_fx,0.00013741654402110726 +karman_re200,sr,177,70.8,force,front_fy,-0.0044343420304358006 +karman_re200,sr,177,70.8,force,upper_fx,-0.005239689722657204 +karman_re200,sr,177,70.8,force,upper_fy,0.005475944839417934 +karman_re200,sr,177,70.8,force,lower_fx,0.0019406233914196491 +karman_re200,sr,177,70.8,force,lower_fy,-0.005521763581782579 +karman_re200,sr,178,71.2,force,front_fx,-0.0018381938571110368 +karman_re200,sr,178,71.2,force,front_fy,-0.0051380121149122715 +karman_re200,sr,178,71.2,force,upper_fx,-0.0016947294352576137 +karman_re200,sr,178,71.2,force,upper_fy,0.006863011512905359 +karman_re200,sr,178,71.2,force,lower_fx,0.0006508138030767441 +karman_re200,sr,178,71.2,force,lower_fy,-0.005946681369096041 +karman_re200,sr,179,71.6,force,front_fx,-0.002603373723104596 +karman_re200,sr,179,71.6,force,front_fy,-0.005283230450004339 +karman_re200,sr,179,71.6,force,upper_fx,0.0015077273128554225 +karman_re200,sr,179,71.6,force,upper_fy,0.006936822552233934 +karman_re200,sr,179,71.6,force,lower_fx,-0.0007802972686477005 +karman_re200,sr,179,71.6,force,lower_fy,-0.006409651134163141 +karman_re200,sr,180,72.0,force,front_fx,-0.001789691741578281 +karman_re200,sr,180,72.0,force,front_fy,-0.005128282122313976 +karman_re200,sr,180,72.0,force,upper_fx,0.0036377341020852327 +karman_re200,sr,180,72.0,force,upper_fy,0.006719840690493584 +karman_re200,sr,180,72.0,force,lower_fx,-0.002276108367368579 +karman_re200,sr,180,72.0,force,lower_fy,-0.005928750615566969 +karman_re200,sr,181,72.4,force,front_fx,0.00018110590463038534 +karman_re200,sr,181,72.4,force,front_fy,-0.004348739981651306 +karman_re200,sr,181,72.4,force,upper_fx,0.005171373952180147 +karman_re200,sr,181,72.4,force,upper_fy,0.006799333728849888 +karman_re200,sr,181,72.4,force,lower_fx,-0.004102419596165419 +karman_re200,sr,181,72.4,force,lower_fy,-0.004289827775210142 +karman_re200,sr,182,72.8,force,front_fx,0.0021941352169960737 +karman_re200,sr,182,72.8,force,front_fy,-0.0022674682550132275 +karman_re200,sr,182,72.8,force,upper_fx,0.005742008797824383 +karman_re200,sr,182,72.8,force,upper_fy,0.006596171762794256 +karman_re200,sr,182,72.8,force,lower_fx,-0.006358779035508633 +karman_re200,sr,182,72.8,force,lower_fy,-0.0024785050190985203 +karman_re200,sr,183,73.2,force,front_fx,0.0027488067280501127 +karman_re200,sr,183,73.2,force,front_fy,0.0004333068791311234 +karman_re200,sr,183,73.2,force,upper_fx,0.004849852994084358 +karman_re200,sr,183,73.2,force,upper_fy,0.006055048201233149 +karman_re200,sr,183,73.2,force,lower_fx,-0.008106364868581295 +karman_re200,sr,183,73.2,force,lower_fy,-0.0021608879324048758 +karman_re200,sr,184,73.6,force,front_fx,0.0018067205091938376 +karman_re200,sr,184,73.6,force,front_fy,0.003063609590753913 +karman_re200,sr,184,73.6,force,upper_fx,0.0031396388076245785 +karman_re200,sr,184,73.6,force,upper_fy,0.005656519904732704 +karman_re200,sr,184,73.6,force,lower_fx,-0.0075954776257276535 +karman_re200,sr,184,73.6,force,lower_fy,-0.0036908278707414865 +karman_re200,sr,185,74.0,force,front_fx,-0.0001121986351790838 +karman_re200,sr,185,74.0,force,front_fy,0.004547277465462685 +karman_re200,sr,185,74.0,force,upper_fx,0.0018078085267916322 +karman_re200,sr,185,74.0,force,upper_fy,0.0055345091968774796 +karman_re200,sr,185,74.0,force,lower_fx,-0.004885668400675058 +karman_re200,sr,185,74.0,force,lower_fy,-0.005687123630195856 +karman_re200,sr,186,74.4,force,front_fx,-0.002000711625441909 +karman_re200,sr,186,74.4,force,front_fy,0.005194563884288073 +karman_re200,sr,186,74.4,force,upper_fx,0.0005024490528739989 +karman_re200,sr,186,74.4,force,upper_fy,0.0060288188979029655 +karman_re200,sr,186,74.4,force,lower_fx,-0.001278904266655445 +karman_re200,sr,186,74.4,force,lower_fy,-0.006952296942472458 +karman_re200,sr,187,74.8,force,front_fx,-0.002587466035038233 +karman_re200,sr,187,74.8,force,front_fy,0.005278961267322302 +karman_re200,sr,187,74.8,force,upper_fx,-0.0009372748318128288 +karman_re200,sr,187,74.8,force,upper_fy,0.006427766289561987 +karman_re200,sr,187,74.8,force,lower_fx,0.0018075325060635805 +karman_re200,sr,187,74.8,force,lower_fy,-0.0069161709398031235 +karman_re200,sr,188,75.2,force,front_fx,-0.0016105264658108354 +karman_re200,sr,188,75.2,force,front_fy,0.005088576581329107 +karman_re200,sr,188,75.2,force,upper_fx,-0.0024533122777938843 +karman_re200,sr,188,75.2,force,upper_fy,0.005812502466142178 +karman_re200,sr,188,75.2,force,lower_fx,0.0038389444816857576 +karman_re200,sr,188,75.2,force,lower_fy,-0.006728004664182663 +karman_re200,sr,189,75.6,force,front_fx,0.00042361271334812045 +karman_re200,sr,189,75.6,force,front_fy,0.004167778883129358 +karman_re200,sr,189,75.6,force,upper_fx,-0.004346026107668877 +karman_re200,sr,189,75.6,force,upper_fy,0.004076102282851934 +karman_re200,sr,189,75.6,force,lower_fx,0.005286411847919226 +karman_re200,sr,189,75.6,force,lower_fy,-0.00681246817111969 +karman_re200,sr,190,76.0,force,front_fx,0.0023512234911322594 +karman_re200,sr,190,76.0,force,front_fy,0.001965948147699237 +karman_re200,sr,190,76.0,force,upper_fx,-0.006608658470213413 +karman_re200,sr,190,76.0,force,upper_fy,0.0023385032545775175 +karman_re200,sr,190,76.0,force,lower_fx,0.005710837431252003 +karman_re200,sr,190,76.0,force,lower_fy,-0.0065369619987905025 +karman_re200,sr,191,76.4,force,front_fx,0.0026413900777697563 +karman_re200,sr,191,76.4,force,front_fy,-0.000780670321546495 +karman_re200,sr,191,76.4,force,upper_fx,-0.008193678222596645 +karman_re200,sr,191,76.4,force,upper_fy,0.0022632170002907515 +karman_re200,sr,191,76.4,force,lower_fx,0.00467490591108799 +karman_re200,sr,191,76.4,force,lower_fy,-0.006000037770718336 +karman_re200,sr,192,76.8,force,front_fx,0.0016237481031566858 +karman_re200,sr,192,76.8,force,front_fy,-0.0033051639329642057 +karman_re200,sr,192,76.8,force,upper_fx,-0.0073407841846346855 +karman_re200,sr,192,76.8,force,upper_fy,0.003925120458006859 +karman_re200,sr,192,76.8,force,lower_fx,0.0029610588680952787 +karman_re200,sr,192,76.8,force,lower_fy,-0.00561806745827198 +karman_re200,sr,193,77.2,force,front_fx,-0.00036720518255606294 +karman_re200,sr,193,77.2,force,front_fy,-0.004655555821955204 +karman_re200,sr,193,77.2,force,upper_fx,-0.004485670942813158 +karman_re200,sr,193,77.2,force,upper_fy,0.005908706691116095 +karman_re200,sr,193,77.2,force,lower_fx,0.0016662721754983068 +karman_re200,sr,193,77.2,force,lower_fy,-0.00556600047275424 +karman_re200,sr,194,77.6,force,front_fx,-0.0021488810889422894 +karman_re200,sr,194,77.6,force,front_fy,-0.005222904030233622 +karman_re200,sr,194,77.6,force,upper_fx,-0.000868345785420388 +karman_re200,sr,194,77.6,force,upper_fy,0.00699659576639533 +karman_re200,sr,194,77.6,force,lower_fx,0.0003376550739631057 +karman_re200,sr,194,77.6,force,lower_fy,-0.006099156569689512 +karman_re200,sr,195,78.0,force,front_fx,-0.0025573214516043663 +karman_re200,sr,195,78.0,force,front_fy,-0.005269898567348719 +karman_re200,sr,195,78.0,force,upper_fx,0.0020760009065270424 +karman_re200,sr,195,78.0,force,upper_fy,0.00687926821410656 +karman_re200,sr,195,78.0,force,lower_fx,-0.0011145402677357197 +karman_re200,sr,195,78.0,force,lower_fy,-0.006423002574592829 +karman_re200,sr,196,78.4,force,front_fx,-0.0014155061217024922 +karman_re200,sr,196,78.4,force,front_fy,-0.005038348957896233 +karman_re200,sr,196,78.4,force,upper_fx,0.004024596884846687 +karman_re200,sr,196,78.4,force,upper_fy,0.006722824648022652 +karman_re200,sr,196,78.4,force,lower_fx,-0.0026478320360183716 +karman_re200,sr,196,78.4,force,lower_fy,-0.005649574566632509 +karman_re200,sr,197,78.8,force,front_fx,0.0006818260299041867 +karman_re200,sr,197,78.8,force,front_fy,-0.00397311570122838 +karman_re200,sr,197,78.8,force,upper_fx,0.005402113776654005 +karman_re200,sr,197,78.8,force,upper_fy,0.006803551223129034 +karman_re200,sr,197,78.8,force,lower_fx,-0.004591191653162241 +karman_re200,sr,197,78.8,force,lower_fy,-0.0038350089453160763 +karman_re200,sr,198,79.2,force,front_fx,0.0024907493498176336 +karman_re200,sr,198,79.2,force,front_fy,-0.0016718548722565174 +karman_re200,sr,198,79.2,force,upper_fx,0.005666598677635193 +karman_re200,sr,198,79.2,force,upper_fy,0.006478433031588793 +karman_re200,sr,198,79.2,force,lower_fx,-0.006852206774055958 +karman_re200,sr,198,79.2,force,lower_fy,-0.002221648348495364 +karman_re200,sr,199,79.6,force,front_fx,0.0026247664354741573 +karman_re200,sr,199,79.6,force,front_fy,0.001081902184523642 +karman_re200,sr,199,79.6,force,upper_fx,0.004472679458558559 +karman_re200,sr,199,79.6,force,upper_fy,0.005943204276263714 +karman_re200,sr,199,79.6,force,lower_fx,-0.008222361095249653 +karman_re200,sr,199,79.6,force,lower_fy,-0.0024022781290113926 +karman_re200,sr,0,0.0,alpha,front,2.9088244635452787 +karman_re200,sr,0,0.0,alpha,upper,-5.439184056224114 +karman_re200,sr,0,0.0,alpha,lower,1.423233304797118 +karman_re200,sr,1,0.4,alpha,front,3.1716498285706156 +karman_re200,sr,1,0.4,alpha,upper,-5.250342582196071 +karman_re200,sr,1,0.4,alpha,lower,1.612074778825161 +karman_re200,sr,2,0.8,alpha,front,2.7825840920920384 +karman_re200,sr,2,0.8,alpha,upper,-5.1746462562520845 +karman_re200,sr,2,0.8,alpha,lower,1.687771104769148 +karman_re200,sr,3,1.2,alpha,front,2.3527762495647253 +karman_re200,sr,3,1.2,alpha,upper,-5.8651695083029605 +karman_re200,sr,3,1.2,alpha,lower,0.9972478527182722 +karman_re200,sr,4,1.6,alpha,front,1.9888062605206258 +karman_re200,sr,4,1.6,alpha,upper,-5.372274751040837 +karman_re200,sr,4,1.6,alpha,lower,1.4901426099803954 +karman_re200,sr,5,2.0,alpha,front,1.287520285476135 +karman_re200,sr,5,2.0,alpha,upper,-3.570165587894878 +karman_re200,sr,5,2.0,alpha,lower,3.292251773126354 +karman_re200,sr,6,2.4,alpha,front,0.3533362894975227 +karman_re200,sr,6,2.4,alpha,upper,-1.9257677356332146 +karman_re200,sr,6,2.4,alpha,lower,4.936649625388018 +karman_re200,sr,7,2.8,alpha,front,-0.6625864820941898 +karman_re200,sr,7,2.8,alpha,upper,-1.5938870343325313 +karman_re200,sr,7,2.8,alpha,lower,5.268530326688701 +karman_re200,sr,8,3.2,alpha,front,-1.46554463965838 +karman_re200,sr,8,3.2,alpha,upper,-1.9526774919139147 +karman_re200,sr,8,3.2,alpha,lower,4.909739869107318 +karman_re200,sr,9,3.6,alpha,front,-1.9373990545496544 +karman_re200,sr,9,3.6,alpha,upper,-1.1851349737135601 +karman_re200,sr,9,3.6,alpha,lower,5.677282387307672 +karman_re200,sr,10,4.0,alpha,front,-2.2825087161857494 +karman_re200,sr,10,4.0,alpha,upper,-0.20183909376273634 +karman_re200,sr,10,4.0,alpha,lower,6.660578267258496 +karman_re200,sr,11,4.4,alpha,front,-2.308521186425213 +karman_re200,sr,11,4.4,alpha,upper,-1.2369503220692986 +karman_re200,sr,11,4.4,alpha,lower,5.625467038951934 +karman_re200,sr,12,4.8,alpha,front,-1.6568868490023383 +karman_re200,sr,12,4.8,alpha,upper,-3.68668389475595 +karman_re200,sr,12,4.8,alpha,lower,3.175733466265282 +karman_re200,sr,13,5.2,alpha,front,-0.5785277916161171 +karman_re200,sr,13,5.2,alpha,upper,-4.841214931095836 +karman_re200,sr,13,5.2,alpha,lower,2.021202429925397 +karman_re200,sr,14,5.6,alpha,front,0.4376245172627878 +karman_re200,sr,14,5.6,alpha,upper,-4.040662165903685 +karman_re200,sr,14,5.6,alpha,lower,2.821755195117548 +karman_re200,sr,15,6.0,alpha,front,1.0719597576739242 +karman_re200,sr,15,6.0,alpha,upper,-3.600969183717055 +karman_re200,sr,15,6.0,alpha,lower,3.261448177304177 +karman_re200,sr,16,6.4,alpha,front,1.6097958814214999 +karman_re200,sr,16,6.4,alpha,upper,-5.040020286208939 +karman_re200,sr,16,6.4,alpha,lower,1.8223970748122926 +karman_re200,sr,17,6.8,alpha,front,2.2497301150326137 +karman_re200,sr,17,6.8,alpha,upper,-6.737746049222517 +karman_re200,sr,17,6.8,alpha,lower,0.12467131179871549 +karman_re200,sr,18,7.2,alpha,front,2.642990034833232 +karman_re200,sr,18,7.2,alpha,upper,-6.717461498932069 +karman_re200,sr,18,7.2,alpha,lower,0.14495586208916356 +karman_re200,sr,19,7.6,alpha,front,2.3480663624900857 +karman_re200,sr,19,7.6,alpha,upper,-4.928777145373541 +karman_re200,sr,19,7.6,alpha,lower,1.933640215647691 +karman_re200,sr,20,8.0,alpha,front,1.5406000705720317 +karman_re200,sr,20,8.0,alpha,upper,-2.8554904367878127 +karman_re200,sr,20,8.0,alpha,lower,4.00692692423342 +karman_re200,sr,21,8.4,alpha,front,0.4085987098552379 +karman_re200,sr,21,8.4,alpha,upper,-2.2841958481212012 +karman_re200,sr,21,8.4,alpha,lower,4.578221512900031 +karman_re200,sr,22,8.8,alpha,front,-0.570525126091177 +karman_re200,sr,22,8.8,alpha,upper,-3.2607581991683476 +karman_re200,sr,22,8.8,alpha,lower,3.6016591618528846 +karman_re200,sr,23,9.2,alpha,front,-1.1500277154591934 +karman_re200,sr,23,9.2,alpha,upper,-3.3603123613332735 +karman_re200,sr,23,9.2,alpha,lower,3.502104999687959 +karman_re200,sr,24,9.6,alpha,front,-1.7757211551306964 +karman_re200,sr,24,9.6,alpha,upper,-1.7768533414890695 +karman_re200,sr,24,9.6,alpha,lower,5.085564019532162 +karman_re200,sr,25,10.0,alpha,front,-2.481256813255364 +karman_re200,sr,25,10.0,alpha,upper,-0.2843726280257801 +karman_re200,sr,25,10.0,alpha,lower,6.578044732995453 +karman_re200,sr,26,10.4,alpha,front,-2.8346632891345194 +karman_re200,sr,26,10.4,alpha,upper,-0.3655091544833584 +karman_re200,sr,26,10.4,alpha,lower,6.496908206537874 +karman_re200,sr,27,10.8,alpha,front,-2.4336408623623664 +karman_re200,sr,27,10.8,alpha,upper,-1.967926282758254 +karman_re200,sr,27,10.8,alpha,lower,4.894491078262979 +karman_re200,sr,28,11.2,alpha,front,-1.6171920899893375 +karman_re200,sr,28,11.2,alpha,upper,-3.834570325004879 +karman_re200,sr,28,11.2,alpha,lower,3.0278470360163534 +karman_re200,sr,29,11.6,alpha,front,-0.5019570619060322 +karman_re200,sr,29,11.6,alpha,upper,-4.400705911219876 +karman_re200,sr,29,11.6,alpha,lower,2.4617114498013564 +karman_re200,sr,30,12.0,alpha,front,0.45221131889452076 +karman_re200,sr,30,12.0,alpha,upper,-3.5100135619659367 +karman_re200,sr,30,12.0,alpha,lower,3.352403799055295 +karman_re200,sr,31,12.4,alpha,front,1.058082820148653 +karman_re200,sr,31,12.4,alpha,upper,-3.4908570772089025 +karman_re200,sr,31,12.4,alpha,lower,3.3715602838123298 +karman_re200,sr,32,12.8,alpha,front,1.6965393837993492 +karman_re200,sr,32,12.8,alpha,upper,-5.02460417718912 +karman_re200,sr,32,12.8,alpha,lower,1.8378131838321123 +karman_re200,sr,33,13.2,alpha,front,2.372829022576135 +karman_re200,sr,33,13.2,alpha,upper,-6.3666113468857946 +karman_re200,sr,33,13.2,alpha,lower,0.49580601413543673 +karman_re200,sr,34,13.6,alpha,front,2.654626691321492 +karman_re200,sr,34,13.6,alpha,upper,-6.197129453562094 +karman_re200,sr,34,13.6,alpha,lower,0.6652879074591382 +karman_re200,sr,35,14.0,alpha,front,2.2246984365189277 +karman_re200,sr,35,14.0,alpha,upper,-4.839084555090835 +karman_re200,sr,35,14.0,alpha,lower,2.023332805930397 +karman_re200,sr,36,14.4,alpha,front,1.4632994746426529 +karman_re200,sr,36,14.4,alpha,upper,-3.398158545109379 +karman_re200,sr,36,14.4,alpha,lower,3.4642588159118537 +karman_re200,sr,37,14.8,alpha,front,0.4841652713414182 +karman_re200,sr,37,14.8,alpha,upper,-2.780984368801883 +karman_re200,sr,37,14.8,alpha,lower,4.08143299221935 +karman_re200,sr,38,15.2,alpha,front,-0.43920579417169303 +karman_re200,sr,38,15.2,alpha,upper,-3.1965564339602666 +karman_re200,sr,38,15.2,alpha,lower,3.6658609270609652 +karman_re200,sr,39,15.6,alpha,front,-1.121306679423471 +karman_re200,sr,39,15.6,alpha,upper,-3.076176868166955 +karman_re200,sr,39,15.6,alpha,lower,3.786240492854277 +karman_re200,sr,40,16.0,alpha,front,-1.7802508233907168 +karman_re200,sr,40,16.0,alpha,upper,-1.8527804721227998 +karman_re200,sr,40,16.0,alpha,lower,5.009636888898433 +karman_re200,sr,41,16.4,alpha,front,-2.376214685421652 +karman_re200,sr,41,16.4,alpha,upper,-0.7025394189937275 +karman_re200,sr,41,16.4,alpha,lower,6.159877942027505 +karman_re200,sr,42,16.8,alpha,front,-2.5885097850543715 +karman_re200,sr,42,16.8,alpha,upper,-0.7786405666197909 +karman_re200,sr,42,16.8,alpha,lower,6.083776794401441 +karman_re200,sr,43,17.2,alpha,front,-2.168624677684469 +karman_re200,sr,43,17.2,alpha,upper,-2.033402954610076 +karman_re200,sr,43,17.2,alpha,lower,4.829014406411156 +karman_re200,sr,44,17.6,alpha,front,-1.3914664040861788 +karman_re200,sr,44,17.6,alpha,upper,-3.4697539771728043 +karman_re200,sr,44,17.6,alpha,lower,3.392663383848428 +karman_re200,sr,45,18.0,alpha,front,-0.43352266333838196 +karman_re200,sr,45,18.0,alpha,upper,-4.040398171621352 +karman_re200,sr,45,18.0,alpha,lower,2.82201918939988 +karman_re200,sr,46,18.4,alpha,front,0.45570511746878956 +karman_re200,sr,46,18.4,alpha,upper,-3.6865709283444796 +karman_re200,sr,46,18.4,alpha,lower,3.175846432676753 +karman_re200,sr,47,18.8,alpha,front,1.135558351315676 +karman_re200,sr,47,18.8,alpha,upper,-3.8819428353288927 +karman_re200,sr,47,18.8,alpha,lower,2.9804745256923395 +karman_re200,sr,48,19.2,alpha,front,1.7798287588300452 +karman_re200,sr,48,19.2,alpha,upper,-5.0851343817785635 +karman_re200,sr,48,19.2,alpha,lower,1.7772829792426688 +karman_re200,sr,49,19.6,alpha,front,2.3255662277441083 +karman_re200,sr,49,19.6,alpha,upper,-6.120656826092381 +karman_re200,sr,49,19.6,alpha,lower,0.7417605349288521 +karman_re200,sr,50,20.0,alpha,front,2.4699841463808623 +karman_re200,sr,50,20.0,alpha,upper,-5.913747425045869 +karman_re200,sr,50,20.0,alpha,lower,0.9486699359753636 +karman_re200,sr,51,20.4,alpha,front,2.014120188604288 +karman_re200,sr,51,20.4,alpha,upper,-4.691486630704086 +karman_re200,sr,51,20.4,alpha,lower,2.1709307303171466 +karman_re200,sr,52,20.8,alpha,front,1.2497451298976359 +karman_re200,sr,52,20.8,alpha,upper,-3.405675226601473 +karman_re200,sr,52,20.8,alpha,lower,3.4567421344197586 +karman_re200,sr,53,21.2,alpha,front,0.3337350472558733 +karman_re200,sr,53,21.2,alpha,upper,-2.905429202949766 +karman_re200,sr,53,21.2,alpha,lower,3.9569881580714665 +karman_re200,sr,54,21.6,alpha,front,-0.5246064244016856 +karman_re200,sr,54,21.6,alpha,upper,-3.0923627321414866 +karman_re200,sr,54,21.6,alpha,lower,3.770054628879746 +karman_re200,sr,55,22.0,alpha,front,-1.2199777902216322 +karman_re200,sr,55,22.0,alpha,upper,-2.776913010613809 +karman_re200,sr,55,22.0,alpha,lower,4.085504350407423 +karman_re200,sr,56,22.4,alpha,front,-1.8625878669716072 +karman_re200,sr,56,22.4,alpha,upper,-1.6372719216791298 +karman_re200,sr,56,22.4,alpha,lower,5.225145439342103 +karman_re200,sr,57,22.8,alpha,front,-2.3594266745826356 +karman_re200,sr,57,22.8,alpha,upper,-0.7255093574900067 +karman_re200,sr,57,22.8,alpha,lower,6.136908003531225 +karman_re200,sr,58,23.2,alpha,front,-2.4357341356400273 +karman_re200,sr,58,23.2,alpha,upper,-1.0373493302090973 +karman_re200,sr,58,23.2,alpha,lower,5.825068030812135 +karman_re200,sr,59,23.6,alpha,front,-1.9418054245470007 +karman_re200,sr,59,23.6,alpha,upper,-2.344563454156129 +karman_re200,sr,59,23.6,alpha,lower,4.517853906865103 +karman_re200,sr,60,24.0,alpha,front,-1.1469158218206095 +karman_re200,sr,60,24.0,alpha,upper,-3.6501028738899826 +karman_re200,sr,60,24.0,alpha,lower,3.21231448713125 +karman_re200,sr,61,24.4,alpha,front,-0.2070838665929108 +karman_re200,sr,61,24.4,alpha,upper,-3.987793276352019 +karman_re200,sr,61,24.4,alpha,lower,2.8746240846692133 +karman_re200,sr,62,24.8,alpha,front,0.6232589316809195 +karman_re200,sr,62,24.8,alpha,upper,-3.7415006175533794 +karman_re200,sr,62,24.8,alpha,lower,3.120916743467853 +karman_re200,sr,63,25.2,alpha,front,1.2889505808430073 +karman_re200,sr,63,25.2,alpha,upper,-4.174292295923339 +karman_re200,sr,63,25.2,alpha,lower,2.6881250650978936 +karman_re200,sr,64,25.6,alpha,front,1.9150962325438017 +karman_re200,sr,64,25.6,alpha,upper,-5.3963466449093875 +karman_re200,sr,64,25.6,alpha,lower,1.4660707161118447 +karman_re200,sr,65,26.0,alpha,front,2.3763801191007037 +karman_re200,sr,65,26.0,alpha,upper,-6.199583504217751 +karman_re200,sr,65,26.0,alpha,lower,0.6628338568034815 +karman_re200,sr,66,26.4,alpha,front,2.383688416051654 +karman_re200,sr,66,26.4,alpha,upper,-5.691100371770607 +karman_re200,sr,66,26.4,alpha,lower,1.1713169892506254 +karman_re200,sr,67,26.8,alpha,front,1.8320534096386487 +karman_re200,sr,67,26.8,alpha,upper,-4.344409358881347 +karman_re200,sr,67,26.8,alpha,lower,2.5180080021398856 +karman_re200,sr,68,27.2,alpha,front,1.0268462242755654 +karman_re200,sr,68,27.2,alpha,upper,-3.1242670653692346 +karman_re200,sr,68,27.2,alpha,lower,3.7381502956519976 +karman_re200,sr,69,27.6,alpha,front,0.08812343726418884 +karman_re200,sr,69,27.6,alpha,upper,-2.8933783359234098 +karman_re200,sr,69,27.6,alpha,lower,3.9690390250978225 +karman_re200,sr,70,28.0,alpha,front,-0.7204655148613902 +karman_re200,sr,70,28.0,alpha,upper,-3.1055505710827536 +karman_re200,sr,70,28.0,alpha,lower,3.7568667899384787 +karman_re200,sr,71,28.4,alpha,front,-1.3844395131088811 +karman_re200,sr,71,28.4,alpha,upper,-2.549848392115858 +karman_re200,sr,71,28.4,alpha,lower,4.312568968905374 +karman_re200,sr,72,28.8,alpha,front,-2.008331830229551 +karman_re200,sr,72,28.8,alpha,upper,-1.3075520455509593 +karman_re200,sr,72,28.8,alpha,lower,5.554865315470273 +karman_re200,sr,73,29.2,alpha,front,-2.436160107383672 +karman_re200,sr,73,29.2,alpha,upper,-0.6232030473194783 +karman_re200,sr,73,29.2,alpha,lower,6.239214313701754 +karman_re200,sr,74,29.6,alpha,front,-2.377263231252162 +karman_re200,sr,74,29.6,alpha,upper,-1.284865893295895 +karman_re200,sr,74,29.6,alpha,lower,5.577551467725337 +karman_re200,sr,75,30.0,alpha,front,-1.7766366791409065 +karman_re200,sr,75,30.0,alpha,upper,-2.718732872772967 +karman_re200,sr,75,30.0,alpha,lower,4.143684488248265 +karman_re200,sr,76,30.4,alpha,front,-0.933481600752102 +karman_re200,sr,76,30.4,alpha,upper,-3.889739344670426 +karman_re200,sr,76,30.4,alpha,lower,2.972678016350806 +karman_re200,sr,77,30.8,alpha,front,0.02042217385158659 +karman_re200,sr,77,30.8,alpha,upper,-3.9566041940691354 +karman_re200,sr,77,30.8,alpha,lower,2.905813166952097 +karman_re200,sr,78,31.2,alpha,front,0.8000295685267774 +karman_re200,sr,78,31.2,alpha,upper,-3.724573620841598 +karman_re200,sr,78,31.2,alpha,lower,3.137843740179634 +karman_re200,sr,79,31.6,alpha,front,1.4449714565148812 +karman_re200,sr,79,31.6,alpha,upper,-4.410736171490114 +karman_re200,sr,79,31.6,alpha,lower,2.4516811895311186 +karman_re200,sr,80,32.0,alpha,front,2.0562941884129295 +karman_re200,sr,80,32.0,alpha,upper,-5.692614304379321 +karman_re200,sr,80,32.0,alpha,lower,1.169803056641912 +karman_re200,sr,81,32.4,alpha,front,2.4470450751477393 +karman_re200,sr,81,32.4,alpha,upper,-6.2300326717300845 +karman_re200,sr,81,32.4,alpha,lower,0.6323846892911478 +karman_re200,sr,82,32.8,alpha,front,2.3157369985792053 +karman_re200,sr,82,32.8,alpha,upper,-5.408639887309142 +karman_re200,sr,82,32.8,alpha,lower,1.4537774737120903 +karman_re200,sr,83,33.2,alpha,front,1.6697652348792282 +karman_re200,sr,83,33.2,alpha,upper,-3.9842502112202847 +karman_re200,sr,83,33.2,alpha,lower,2.878167149800948 +karman_re200,sr,84,33.6,alpha,front,0.8154456919443838 +karman_re200,sr,84,33.6,alpha,upper,-2.9410879185317853 +karman_re200,sr,84,33.6,alpha,lower,3.921329442489447 +karman_re200,sr,85,34.0,alpha,front,-0.12141956256199035 +karman_re200,sr,85,34.0,alpha,upper,-2.9525240168660676 +karman_re200,sr,85,34.0,alpha,lower,3.909893344155164 +karman_re200,sr,86,34.4,alpha,front,-0.8802698756450993 +karman_re200,sr,86,34.4,alpha,upper,-3.090744967871556 +karman_re200,sr,86,34.4,alpha,lower,3.771672393149676 +karman_re200,sr,87,34.8,alpha,front,-1.5291338649409585 +karman_re200,sr,87,34.8,alpha,upper,-2.2938573689728647 +karman_re200,sr,87,34.8,alpha,lower,4.5685599920483675 +karman_re200,sr,88,35.2,alpha,front,-2.132745593643022 +karman_re200,sr,88,35.2,alpha,upper,-1.0494350615322552 +karman_re200,sr,88,35.2,alpha,lower,5.8129822994889775 +karman_re200,sr,89,35.6,alpha,front,-2.4770136125469375 +karman_re200,sr,89,35.6,alpha,upper,-0.6534447037552158 +karman_re200,sr,89,35.6,alpha,lower,6.208972657266017 +karman_re200,sr,90,36.0,alpha,front,-2.2762696997749488 +karman_re200,sr,90,36.0,alpha,upper,-1.5929747772738616 +karman_re200,sr,90,36.0,alpha,lower,5.26944258374737 +karman_re200,sr,91,36.4,alpha,front,-1.5953178593157136 +karman_re200,sr,91,36.4,alpha,upper,-3.0543585171859924 +karman_re200,sr,91,36.4,alpha,lower,3.8080588438352403 +karman_re200,sr,92,36.8,alpha,front,-0.7113300326731862 +karman_re200,sr,92,36.8,alpha,upper,-3.988109034219122 +karman_re200,sr,92,36.8,alpha,lower,2.8743083268021103 +karman_re200,sr,93,37.2,alpha,front,0.21877264845401234 +karman_re200,sr,93,37.2,alpha,upper,-3.8701410424927873 +karman_re200,sr,93,37.2,alpha,lower,2.992276318528445 +karman_re200,sr,94,37.6,alpha,front,0.9529804861773152 +karman_re200,sr,94,37.6,alpha,upper,-3.7927517428351147 +karman_re200,sr,94,37.6,alpha,lower,3.0696656181861175 +karman_re200,sr,95,38.0,alpha,front,1.5946199387572026 +karman_re200,sr,95,38.0,alpha,upper,-4.709415709518698 +karman_re200,sr,95,38.0,alpha,lower,2.1530016515025343 +karman_re200,sr,96,38.4,alpha,front,2.1818771763310014 +karman_re200,sr,96,38.4,alpha,upper,-5.924308414305846 +karman_re200,sr,96,38.4,alpha,lower,0.9381089467153858 +karman_re200,sr,97,38.8,alpha,front,2.4769933662351695 +karman_re200,sr,97,38.8,alpha,upper,-6.153453319928239 +karman_re200,sr,97,38.8,alpha,lower,0.7089640410929925 +karman_re200,sr,98,39.2,alpha,front,2.203422404438396 +karman_re200,sr,98,39.2,alpha,upper,-5.100729531903355 +karman_re200,sr,98,39.2,alpha,lower,1.7616878291178768 +karman_re200,sr,99,39.6,alpha,front,1.4932395073660725 +karman_re200,sr,99,39.6,alpha,upper,-3.663098883075922 +karman_re200,sr,99,39.6,alpha,lower,3.1993184779453108 +karman_re200,sr,100,40.0,alpha,front,0.5954575599373642 +karman_re200,sr,100,40.0,alpha,upper,-2.8559785369430353 +karman_re200,sr,100,40.0,alpha,lower,4.006438824078197 +karman_re200,sr,101,40.4,alpha,front,-0.3150850250813729 +karman_re200,sr,101,40.4,alpha,upper,-3.0320313606158984 +karman_re200,sr,101,40.4,alpha,lower,3.8303860004053334 +karman_re200,sr,102,40.8,alpha,front,-1.0317439669315436 +karman_re200,sr,102,40.8,alpha,upper,-3.0056657309586434 +karman_re200,sr,102,40.8,alpha,lower,3.856751630062589 +karman_re200,sr,103,41.2,alpha,front,-1.6753221814624415 +karman_re200,sr,103,41.2,alpha,upper,-1.9977312981318645 +karman_re200,sr,103,41.2,alpha,lower,4.864686062889367 +karman_re200,sr,104,41.6,alpha,front,-2.2454742159795256 +karman_re200,sr,104,41.6,alpha,upper,-0.8414265977843859 +karman_re200,sr,104,41.6,alpha,lower,6.0209907632368465 +karman_re200,sr,105,42.0,alpha,front,-2.4872852413838933 +karman_re200,sr,105,42.0,alpha,upper,-0.7654161886775093 +karman_re200,sr,105,42.0,alpha,lower,6.097001172343723 +karman_re200,sr,106,42.4,alpha,front,-2.147159236029371 +karman_re200,sr,106,42.4,alpha,upper,-1.9234628858983687 +karman_re200,sr,106,42.4,alpha,lower,4.938954475122864 +karman_re200,sr,107,42.8,alpha,front,-1.4081764932647722 +karman_re200,sr,107,42.8,alpha,upper,-3.3556417635285563 +karman_re200,sr,107,42.8,alpha,lower,3.5067755974926755 +karman_re200,sr,108,43.2,alpha,front,-0.4862319047351736 +karman_re200,sr,108,43.2,alpha,upper,-4.031880625993128 +karman_re200,sr,108,43.2,alpha,lower,2.830536735028105 +karman_re200,sr,109,43.6,alpha,front,0.40466419880156357 +karman_re200,sr,109,43.6,alpha,upper,-3.7870674922439123 +karman_re200,sr,109,43.6,alpha,lower,3.07534986877732 +karman_re200,sr,110,44.0,alpha,front,1.101397717385343 +karman_re200,sr,110,44.0,alpha,upper,-3.9163680551349875 +karman_re200,sr,110,44.0,alpha,lower,2.946049305886245 +karman_re200,sr,111,44.4,alpha,front,1.7408023057046136 +karman_re200,sr,111,44.4,alpha,upper,-5.016513528889417 +karman_re200,sr,111,44.4,alpha,lower,1.8459038321318146 +karman_re200,sr,112,44.8,alpha,front,2.2887811656508505 +karman_re200,sr,112,44.8,alpha,upper,-6.097574834659655 +karman_re200,sr,112,44.8,alpha,lower,0.7648425263615768 +karman_re200,sr,113,45.2,alpha,front,2.471147954109069 +karman_re200,sr,113,45.2,alpha,upper,-6.005217637727945 +karman_re200,sr,113,45.2,alpha,lower,0.8571997232932875 +karman_re200,sr,114,45.6,alpha,front,2.0657468184190253 +karman_re200,sr,114,45.6,alpha,upper,-4.773414378779472 +karman_re200,sr,114,45.6,alpha,lower,2.0890029822417606 +karman_re200,sr,115,46.0,alpha,front,1.305780527299271 +karman_re200,sr,115,46.0,alpha,upper,-3.382229063125301 +karman_re200,sr,115,46.0,alpha,lower,3.4801882978959306 +karman_re200,sr,116,46.4,alpha,front,0.37611571151388573 +karman_re200,sr,116,46.4,alpha,upper,-2.830763581326072 +karman_re200,sr,116,46.4,alpha,lower,4.03165377969516 +karman_re200,sr,117,46.8,alpha,front,-0.4945223365060485 +karman_re200,sr,117,46.8,alpha,upper,-3.0978314026267015 +karman_re200,sr,117,46.8,alpha,lower,3.7645859583945307 +karman_re200,sr,118,47.2,alpha,front,-1.1780805788067659 +karman_re200,sr,118,47.2,alpha,upper,-2.857707745166061 +karman_re200,sr,118,47.2,alpha,lower,4.004709615855171 +karman_re200,sr,119,47.6,alpha,front,-1.8170052496174836 +karman_re200,sr,119,47.6,alpha,upper,-1.6936400295613128 +karman_re200,sr,119,47.6,alpha,lower,5.1687773314599195 +karman_re200,sr,120,48.0,alpha,front,-2.339278752785878 +karman_re200,sr,120,48.0,alpha,upper,-0.7011456083508505 +karman_re200,sr,120,48.0,alpha,lower,6.161271752670382 +karman_re200,sr,121,48.4,alpha,front,-2.4609298714387626 +karman_re200,sr,121,48.4,alpha,upper,-0.9562198070600473 +karman_re200,sr,121,48.4,alpha,lower,5.906197553961185 +karman_re200,sr,122,48.8,alpha,front,-1.9948471649947843 +karman_re200,sr,122,48.8,alpha,upper,-2.267823787487332 +karman_re200,sr,122,48.8,alpha,lower,4.5945935735339 +karman_re200,sr,123,49.2,alpha,front,-1.2092185849095007 +karman_re200,sr,123,49.2,alpha,upper,-3.6197395730300332 +karman_re200,sr,123,49.2,alpha,lower,3.2426777879911985 +karman_re200,sr,124,49.6,alpha,front,-0.2657768477129808 +karman_re200,sr,124,49.6,alpha,upper,-4.0202606146870705 +karman_re200,sr,124,49.6,alpha,lower,2.8421567463341617 +karman_re200,sr,125,50.0,alpha,front,0.5795347792277352 +karman_re200,sr,125,50.0,alpha,upper,-3.726762002510709 +karman_re200,sr,125,50.0,alpha,lower,3.135655358510523 +karman_re200,sr,126,50.4,alpha,front,1.2470042188423358 +karman_re200,sr,126,50.4,alpha,upper,-4.096166126411867 +karman_re200,sr,126,50.4,alpha,lower,2.7662512346093653 +karman_re200,sr,127,50.8,alpha,front,1.8835524788092868 +karman_re200,sr,127,50.8,alpha,upper,-5.325419115335345 +karman_re200,sr,127,50.8,alpha,lower,1.5369982456858875 +karman_re200,sr,128,51.2,alpha,front,2.374237384438592 +karman_re200,sr,128,51.2,alpha,upper,-6.207179353545378 +karman_re200,sr,128,51.2,alpha,lower,0.6552380074758548 +karman_re200,sr,129,51.6,alpha,front,2.4280483515341396 +karman_re200,sr,129,51.6,alpha,upper,-5.787348515572881 +karman_re200,sr,129,51.6,alpha,lower,1.0750688454483512 +karman_re200,sr,130,52.0,alpha,front,1.9063487602646776 +karman_re200,sr,130,52.0,alpha,upper,-4.435121387292366 +karman_re200,sr,130,52.0,alpha,lower,2.4272959737288664 +karman_re200,sr,131,52.4,alpha,front,1.1064828494246912 +karman_re200,sr,131,52.4,alpha,upper,-3.1543608910966996 +karman_re200,sr,131,52.4,alpha,lower,3.708056469924532 +karman_re200,sr,132,52.8,alpha,front,0.16015783596828884 +karman_re200,sr,132,52.8,alpha,upper,-2.85437295234011 +karman_re200,sr,132,52.8,alpha,lower,4.008044408681122 +karman_re200,sr,133,53.2,alpha,front,-0.665557095548463 +karman_re200,sr,133,53.2,alpha,upper,-3.1282339829127417 +karman_re200,sr,133,53.2,alpha,lower,3.73418337810849 +karman_re200,sr,134,53.6,alpha,front,-1.3260920401831104 +karman_re200,sr,134,53.6,alpha,upper,-2.652995251555564 +karman_re200,sr,134,53.6,alpha,lower,4.2094221094656685 +karman_re200,sr,135,54.0,alpha,front,-1.9550011802408145 +karman_re200,sr,135,54.0,alpha,upper,-1.4025723266732988 +karman_re200,sr,135,54.0,alpha,lower,5.459845034347934 +karman_re200,sr,136,54.4,alpha,front,-2.412677049721204 +karman_re200,sr,136,54.4,alpha,upper,-0.6326025530846984 +karman_re200,sr,136,54.4,alpha,lower,6.229814807936534 +karman_re200,sr,137,54.8,alpha,front,-2.40203290650764 +karman_re200,sr,137,54.8,alpha,upper,-1.2004073626627214 +karman_re200,sr,137,54.8,alpha,lower,5.662009998358511 +karman_re200,sr,138,55.2,alpha,front,-1.8302609894498914 +karman_re200,sr,138,55.2,alpha,upper,-2.6133266851038455 +karman_re200,sr,138,55.2,alpha,lower,4.249090675917387 +karman_re200,sr,139,55.6,alpha,front,-1.0028825165077373 +karman_re200,sr,139,55.6,alpha,upper,-3.8219692415215745 +karman_re200,sr,139,55.6,alpha,lower,3.0404481194996578 +karman_re200,sr,140,56.0,alpha,front,-0.05230729064221503 +karman_re200,sr,140,56.0,alpha,upper,-3.9716034539857112 +karman_re200,sr,140,56.0,alpha,lower,2.890813907035521 +karman_re200,sr,141,56.4,alpha,front,0.7433370761887165 +karman_re200,sr,141,56.4,alpha,upper,-3.7176220758985323 +karman_re200,sr,141,56.4,alpha,lower,3.1447952851227 +karman_re200,sr,142,56.8,alpha,front,1.3931860529920685 +karman_re200,sr,142,56.8,alpha,upper,-4.32863090476813 +karman_re200,sr,142,56.8,alpha,lower,2.5337864562531016 +karman_re200,sr,143,57.2,alpha,front,2.0138890876114095 +karman_re200,sr,143,57.2,alpha,upper,-5.604551201296037 +karman_re200,sr,143,57.2,alpha,lower,1.257866159725196 +karman_re200,sr,144,57.6,alpha,front,2.433322426950086 +karman_re200,sr,144,57.6,alpha,upper,-6.233939908905267 +karman_re200,sr,144,57.6,alpha,lower,0.6284774521159648 +karman_re200,sr,145,58.0,alpha,front,2.3512932516275273 +karman_re200,sr,145,58.0,alpha,upper,-5.5164829218542755 +karman_re200,sr,145,58.0,alpha,lower,1.3459344391669568 +karman_re200,sr,146,58.4,alpha,front,1.736561946583804 +karman_re200,sr,146,58.4,alpha,upper,-4.0986897534152895 +karman_re200,sr,146,58.4,alpha,lower,2.7637276076059427 +karman_re200,sr,147,58.8,alpha,front,0.8947879241764534 +karman_re200,sr,147,58.8,alpha,upper,-2.984414038985085 +karman_re200,sr,147,58.8,alpha,lower,3.878003322036147 +karman_re200,sr,148,59.2,alpha,front,-0.04848689888496662 +karman_re200,sr,148,59.2,alpha,upper,-2.922734682813726 +karman_re200,sr,148,59.2,alpha,lower,3.939682678207506 +karman_re200,sr,149,59.6,alpha,front,-0.8238622746655014 +karman_re200,sr,149,59.6,alpha,upper,-3.1113106401010615 +karman_re200,sr,149,59.6,alpha,lower,3.7511067209201707 +karman_re200,sr,150,60.0,alpha,front,-1.4729026643926197 +karman_re200,sr,150,60.0,alpha,upper,-2.396599558976332 +karman_re200,sr,150,60.0,alpha,lower,4.4658178020449 +karman_re200,sr,151,60.4,alpha,front,-2.085537588172227 +karman_re200,sr,151,60.4,alpha,upper,-1.130153216428214 +karman_re200,sr,151,60.4,alpha,lower,5.732264144593018 +karman_re200,sr,152,60.8,alpha,front,-2.4608434694152965 +karman_re200,sr,152,60.8,alpha,upper,-0.6415975416595168 +karman_re200,sr,152,60.8,alpha,lower,6.220819819361715 +karman_re200,sr,153,61.2,alpha,front,-2.308737102684265 +karman_re200,sr,153,61.2,alpha,upper,-1.4919397198469735 +karman_re200,sr,153,61.2,alpha,lower,5.370477641174259 +karman_re200,sr,154,61.6,alpha,front,-1.6544917014402245 +karman_re200,sr,154,61.6,alpha,upper,-2.9451860719872704 +karman_re200,sr,154,61.6,alpha,lower,3.9172312890339613 +karman_re200,sr,155,62.0,alpha,front,-0.7852729820349551 +karman_re200,sr,155,62.0,alpha,upper,-3.9612029318385233 +karman_re200,sr,155,62.0,alpha,lower,2.901214429182709 +karman_re200,sr,156,62.4,alpha,front,0.15130351277981352 +karman_re200,sr,156,62.4,alpha,upper,-3.8991466149733616 +karman_re200,sr,156,62.4,alpha,lower,2.9632707460478707 +karman_re200,sr,157,62.8,alpha,front,0.8999037808819056 +karman_re200,sr,157,62.8,alpha,upper,-3.765578296763758 +karman_re200,sr,157,62.8,alpha,lower,3.0968390642574746 +karman_re200,sr,158,63.2,alpha,front,1.5415313565135522 +karman_re200,sr,158,63.2,alpha,upper,-4.604829517930684 +karman_re200,sr,158,63.2,alpha,lower,2.2575878430905485 +karman_re200,sr,159,63.6,alpha,front,2.1389756856927145 +karman_re200,sr,159,63.6,alpha,upper,-5.852153935526895 +karman_re200,sr,159,63.6,alpha,lower,1.0102634254943381 +karman_re200,sr,160,64.0,alpha,front,2.472723969640903 +karman_re200,sr,160,64.0,alpha,upper,-6.1892469253223386 +karman_re200,sr,160,64.0,alpha,lower,0.6731704356988937 +karman_re200,sr,161,64.4,alpha,front,2.2445184657446187 +karman_re200,sr,161,64.4,alpha,upper,-5.207016005005259 +karman_re200,sr,161,64.4,alpha,lower,1.6554013560159733 +karman_re200,sr,162,64.8,alpha,front,1.5553020009020417 +karman_re200,sr,162,64.8,alpha,upper,-3.7627562679187148 +karman_re200,sr,162,64.8,alpha,lower,3.099661093102518 +karman_re200,sr,163,65.2,alpha,front,0.6719019166981737 +karman_re200,sr,163,65.2,alpha,upper,-2.8776967101628825 +karman_re200,sr,163,65.2,alpha,lower,3.9847206508583497 +karman_re200,sr,164,65.6,alpha,front,-0.24856867595499657 +karman_re200,sr,164,65.6,alpha,upper,-3.006356013586148 +karman_re200,sr,164,65.6,alpha,lower,3.856061347435084 +karman_re200,sr,165,66.0,alpha,front,-0.9791566363034732 +karman_re200,sr,165,66.0,alpha,upper,-3.036506779256861 +karman_re200,sr,165,66.0,alpha,lower,3.8259105817643713 +karman_re200,sr,166,66.4,alpha,front,-1.6219813639180145 +karman_re200,sr,166,66.4,alpha,upper,-2.1001665605268074 +karman_re200,sr,166,66.4,alpha,lower,4.762250800494424 +karman_re200,sr,167,66.8,alpha,front,-2.203522614801686 +karman_re200,sr,167,66.8,alpha,upper,-0.9062818021272814 +karman_re200,sr,167,66.8,alpha,lower,5.956135558893951 +karman_re200,sr,168,67.2,alpha,front,-2.481838361921015 +karman_re200,sr,168,67.2,alpha,upper,-0.7246354663824026 +karman_re200,sr,168,67.2,alpha,lower,6.137781894638829 +karman_re200,sr,169,67.6,alpha,front,-2.1877310688201455 +karman_re200,sr,169,67.6,alpha,upper,-1.8125884844815445 +karman_re200,sr,169,67.6,alpha,lower,5.049828876539688 +karman_re200,sr,170,68.0,alpha,front,-1.4690119537480664 +karman_re200,sr,170,68.0,alpha,upper,-3.257964183557416 +karman_re200,sr,170,68.0,alpha,lower,3.6044531774638164 +karman_re200,sr,171,68.4,alpha,front,-0.5610743941768094 +karman_re200,sr,171,68.4,alpha,upper,-4.027020025383133 +karman_re200,sr,171,68.4,alpha,lower,2.8353973356380986 +karman_re200,sr,172,68.8,alpha,front,0.3450202515257379 +karman_re200,sr,172,68.8,alpha,upper,-3.8168309445038684 +karman_re200,sr,172,68.8,alpha,lower,3.045586416517364 +karman_re200,sr,173,69.2,alpha,front,1.0531240721585318 +karman_re200,sr,173,69.2,alpha,upper,-3.8721991017249464 +karman_re200,sr,173,69.2,alpha,lower,2.9902182592962863 +karman_re200,sr,174,69.6,alpha,front,1.6931507905666026 +karman_re200,sr,174,69.6,alpha,upper,-4.912448627049215 +karman_re200,sr,174,69.6,alpha,lower,1.9499687339720178 +karman_re200,sr,175,70.0,alpha,front,2.254692237408029 +karman_re200,sr,175,70.0,alpha,upper,-6.048889812970023 +karman_re200,sr,175,70.0,alpha,lower,0.8135275480512097 +karman_re200,sr,176,70.4,alpha,front,2.4780015082417566 +karman_re200,sr,176,70.4,alpha,upper,-6.063327437991833 +karman_re200,sr,176,70.4,alpha,lower,0.7990899230293991 +karman_re200,sr,177,70.8,alpha,front,2.1146906343252794 +karman_re200,sr,177,70.8,alpha,upper,-4.875591127742235 +karman_re200,sr,177,70.8,alpha,lower,1.9868262332789974 +karman_re200,sr,178,71.2,alpha,front,1.369254956882121 +karman_re200,sr,178,71.2,alpha,upper,-3.4611691388843777 +karman_re200,sr,178,71.2,alpha,lower,3.401248222136855 +karman_re200,sr,179,71.6,alpha,front,0.4472850493628608 +karman_re200,sr,179,71.6,alpha,upper,-2.8320287442362093 +karman_re200,sr,179,71.6,alpha,lower,4.030388616785023 +karman_re200,sr,180,72.0,alpha,front,-0.436316487863089 +karman_re200,sr,180,72.0,alpha,upper,-3.086496091036885 +karman_re200,sr,180,72.0,alpha,lower,3.7759212699843476 +karman_re200,sr,181,72.4,alpha,front,-1.1277444293682044 +karman_re200,sr,181,72.4,alpha,upper,-2.9139220847523064 +karman_re200,sr,181,72.4,alpha,lower,3.9484952762689254 +karman_re200,sr,182,72.8,alpha,front,-1.7684727091189203 +karman_re200,sr,182,72.8,alpha,upper,-1.7902655907949026 +karman_re200,sr,182,72.8,alpha,lower,5.07215177022633 +karman_re200,sr,183,73.2,alpha,front,-2.307568410977342 +karman_re200,sr,183,73.2,alpha,upper,-0.7387038952481264 +karman_re200,sr,183,73.2,alpha,lower,6.123713465773106 +karman_re200,sr,184,73.6,alpha,front,-2.4706952536819062 +karman_re200,sr,184,73.6,alpha,upper,-0.8848527437529635 +karman_re200,sr,184,73.6,alpha,lower,5.977564617268269 +karman_re200,sr,185,74.0,alpha,front,-2.0471407243030892 +karman_re200,sr,185,74.0,alpha,upper,-2.145860560491704 +karman_re200,sr,185,74.0,alpha,lower,4.716556800529528 +karman_re200,sr,186,74.4,alpha,front,-1.2764173812618194 +karman_re200,sr,186,74.4,alpha,upper,-3.531001868640514 +karman_re200,sr,186,74.4,alpha,lower,3.331415492380718 +karman_re200,sr,187,74.8,alpha,front,-0.339696448326502 +karman_re200,sr,187,74.8,alpha,upper,-4.035062563998166 +karman_re200,sr,187,74.8,alpha,lower,2.827354797023066 +karman_re200,sr,188,75.2,alpha,front,0.5234230030589535 +karman_re200,sr,188,75.2,alpha,upper,-3.7505720335386545 +karman_re200,sr,188,75.2,alpha,lower,3.111845327482578 +karman_re200,sr,189,75.6,alpha,front,1.1999064136912951 +karman_re200,sr,189,75.6,alpha,upper,-4.029847230586654 +karman_re200,sr,189,75.6,alpha,lower,2.8325701304345783 +karman_re200,sr,190,76.0,alpha,front,1.8368646614715478 +karman_re200,sr,190,76.0,alpha,upper,-5.2204934155295675 +karman_re200,sr,190,76.0,alpha,lower,1.6419239454916645 +karman_re200,sr,191,76.4,alpha,front,2.3492751028224794 +karman_re200,sr,191,76.4,alpha,upper,-6.176542619161168 +karman_re200,sr,191,76.4,alpha,lower,0.6858747418600646 +karman_re200,sr,192,76.8,alpha,front,2.4539838769089237 +karman_re200,sr,192,76.8,alpha,upper,-5.874681752110894 +karman_re200,sr,192,76.8,alpha,lower,0.987735608910338 +karman_re200,sr,193,77.2,alpha,front,1.9645173463700247 +karman_re200,sr,193,77.2,alpha,upper,-4.538211306788824 +karman_re200,sr,193,77.2,alpha,lower,2.324206054232408 +karman_re200,sr,194,77.6,alpha,front,1.1731492032973574 +karman_re200,sr,194,77.6,alpha,upper,-3.207116205253544 +karman_re200,sr,194,77.6,alpha,lower,3.6553011557676878 +karman_re200,sr,195,78.0,alpha,front,0.22997919846664672 +karman_re200,sr,195,78.0,alpha,upper,-2.844381362512613 +karman_re200,sr,195,78.0,alpha,lower,4.018035998508619 +karman_re200,sr,196,78.4,alpha,front,-0.6084225365368978 +karman_re200,sr,196,78.4,alpha,upper,-3.1328607339162406 +karman_re200,sr,196,78.4,alpha,lower,3.729556627104991 +karman_re200,sr,197,78.8,alpha,front,-1.2724036165535269 +karman_re200,sr,197,78.8,alpha,upper,-2.729420226078121 +karman_re200,sr,197,78.8,alpha,lower,4.132997134943111 +karman_re200,sr,198,79.2,alpha,front,-1.9056805431767212 +karman_re200,sr,198,79.2,alpha,upper,-1.490105918733543 +karman_re200,sr,198,79.2,alpha,lower,5.372311442287689 +karman_re200,sr,199,79.6,alpha,front,-2.3872825803885354 +karman_re200,sr,199,79.6,alpha,upper,-0.6477359415841661 +karman_re200,sr,199,79.6,alpha,lower,6.214681419437066 +karman_re200,sr,0,0.0,omega,front,0.029088244635452787 +karman_re200,sr,0,0.0,omega,upper,-0.054391840562241146 +karman_re200,sr,0,0.0,omega,lower,0.01423233304797118 +karman_re200,sr,1,0.4,omega,front,0.031716498285706156 +karman_re200,sr,1,0.4,omega,upper,-0.05250342582196071 +karman_re200,sr,1,0.4,omega,lower,0.01612074778825161 +karman_re200,sr,2,0.8,omega,front,0.027825840920920386 +karman_re200,sr,2,0.8,omega,upper,-0.05174646256252085 +karman_re200,sr,2,0.8,omega,lower,0.01687771104769148 +karman_re200,sr,3,1.2,omega,front,0.023527762495647253 +karman_re200,sr,3,1.2,omega,upper,-0.05865169508302961 +karman_re200,sr,3,1.2,omega,lower,0.009972478527182723 +karman_re200,sr,4,1.6,omega,front,0.019888062605206258 +karman_re200,sr,4,1.6,omega,upper,-0.05372274751040837 +karman_re200,sr,4,1.6,omega,lower,0.014901426099803954 +karman_re200,sr,5,2.0,omega,front,0.012875202854761349 +karman_re200,sr,5,2.0,omega,upper,-0.03570165587894878 +karman_re200,sr,5,2.0,omega,lower,0.03292251773126354 +karman_re200,sr,6,2.4,omega,front,0.003533362894975227 +karman_re200,sr,6,2.4,omega,upper,-0.019257677356332145 +karman_re200,sr,6,2.4,omega,lower,0.04936649625388018 +karman_re200,sr,7,2.8,omega,front,-0.006625864820941898 +karman_re200,sr,7,2.8,omega,upper,-0.015938870343325313 +karman_re200,sr,7,2.8,omega,lower,0.052685303266887015 +karman_re200,sr,8,3.2,omega,front,-0.0146554463965838 +karman_re200,sr,8,3.2,omega,upper,-0.019526774919139147 +karman_re200,sr,8,3.2,omega,lower,0.04909739869107318 +karman_re200,sr,9,3.6,omega,front,-0.019373990545496544 +karman_re200,sr,9,3.6,omega,upper,-0.011851349737135601 +karman_re200,sr,9,3.6,omega,lower,0.05677282387307672 +karman_re200,sr,10,4.0,omega,front,-0.022825087161857494 +karman_re200,sr,10,4.0,omega,upper,-0.0020183909376273635 +karman_re200,sr,10,4.0,omega,lower,0.06660578267258496 +karman_re200,sr,11,4.4,omega,front,-0.02308521186425213 +karman_re200,sr,11,4.4,omega,upper,-0.012369503220692985 +karman_re200,sr,11,4.4,omega,lower,0.05625467038951934 +karman_re200,sr,12,4.8,omega,front,-0.016568868490023383 +karman_re200,sr,12,4.8,omega,upper,-0.0368668389475595 +karman_re200,sr,12,4.8,omega,lower,0.03175733466265282 +karman_re200,sr,13,5.2,omega,front,-0.005785277916161171 +karman_re200,sr,13,5.2,omega,upper,-0.04841214931095836 +karman_re200,sr,13,5.2,omega,lower,0.020212024299253967 +karman_re200,sr,14,5.6,omega,front,0.004376245172627878 +karman_re200,sr,14,5.6,omega,upper,-0.04040662165903685 +karman_re200,sr,14,5.6,omega,lower,0.02821755195117548 +karman_re200,sr,15,6.0,omega,front,0.010719597576739242 +karman_re200,sr,15,6.0,omega,upper,-0.03600969183717055 +karman_re200,sr,15,6.0,omega,lower,0.03261448177304177 +karman_re200,sr,16,6.4,omega,front,0.016097958814215 +karman_re200,sr,16,6.4,omega,upper,-0.0504002028620894 +karman_re200,sr,16,6.4,omega,lower,0.018223970748122927 +karman_re200,sr,17,6.8,omega,front,0.022497301150326138 +karman_re200,sr,17,6.8,omega,upper,-0.06737746049222518 +karman_re200,sr,17,6.8,omega,lower,0.001246713117987155 +karman_re200,sr,18,7.2,omega,front,0.02642990034833232 +karman_re200,sr,18,7.2,omega,upper,-0.06717461498932069 +karman_re200,sr,18,7.2,omega,lower,0.0014495586208916355 +karman_re200,sr,19,7.6,omega,front,0.02348066362490086 +karman_re200,sr,19,7.6,omega,upper,-0.04928777145373541 +karman_re200,sr,19,7.6,omega,lower,0.01933640215647691 +karman_re200,sr,20,8.0,omega,front,0.015406000705720319 +karman_re200,sr,20,8.0,omega,upper,-0.028554904367878126 +karman_re200,sr,20,8.0,omega,lower,0.0400692692423342 +karman_re200,sr,21,8.4,omega,front,0.004085987098552379 +karman_re200,sr,21,8.4,omega,upper,-0.022841958481212014 +karman_re200,sr,21,8.4,omega,lower,0.04578221512900031 +karman_re200,sr,22,8.8,omega,front,-0.00570525126091177 +karman_re200,sr,22,8.8,omega,upper,-0.032607581991683475 +karman_re200,sr,22,8.8,omega,lower,0.03601659161852885 +karman_re200,sr,23,9.2,omega,front,-0.011500277154591934 +karman_re200,sr,23,9.2,omega,upper,-0.03360312361333274 +karman_re200,sr,23,9.2,omega,lower,0.03502104999687959 +karman_re200,sr,24,9.6,omega,front,-0.017757211551306964 +karman_re200,sr,24,9.6,omega,upper,-0.017768533414890694 +karman_re200,sr,24,9.6,omega,lower,0.05085564019532163 +karman_re200,sr,25,10.0,omega,front,-0.024812568132553642 +karman_re200,sr,25,10.0,omega,upper,-0.0028437262802578013 +karman_re200,sr,25,10.0,omega,lower,0.06578044732995453 +karman_re200,sr,26,10.4,omega,front,-0.028346632891345196 +karman_re200,sr,26,10.4,omega,upper,-0.003655091544833584 +karman_re200,sr,26,10.4,omega,lower,0.06496908206537874 +karman_re200,sr,27,10.8,omega,front,-0.024336408623623663 +karman_re200,sr,27,10.8,omega,upper,-0.01967926282758254 +karman_re200,sr,27,10.8,omega,lower,0.04894491078262979 +karman_re200,sr,28,11.2,omega,front,-0.016171920899893374 +karman_re200,sr,28,11.2,omega,upper,-0.03834570325004879 +karman_re200,sr,28,11.2,omega,lower,0.030278470360163536 +karman_re200,sr,29,11.6,omega,front,-0.005019570619060322 +karman_re200,sr,29,11.6,omega,upper,-0.04400705911219876 +karman_re200,sr,29,11.6,omega,lower,0.024617114498013563 +karman_re200,sr,30,12.0,omega,front,0.004522113188945208 +karman_re200,sr,30,12.0,omega,upper,-0.03510013561965937 +karman_re200,sr,30,12.0,omega,lower,0.03352403799055295 +karman_re200,sr,31,12.4,omega,front,0.01058082820148653 +karman_re200,sr,31,12.4,omega,upper,-0.034908570772089025 +karman_re200,sr,31,12.4,omega,lower,0.0337156028381233 +karman_re200,sr,32,12.8,omega,front,0.016965393837993493 +karman_re200,sr,32,12.8,omega,upper,-0.0502460417718912 +karman_re200,sr,32,12.8,omega,lower,0.018378131838321123 +karman_re200,sr,33,13.2,omega,front,0.02372829022576135 +karman_re200,sr,33,13.2,omega,upper,-0.06366611346885795 +karman_re200,sr,33,13.2,omega,lower,0.004958060141354368 +karman_re200,sr,34,13.6,omega,front,0.02654626691321492 +karman_re200,sr,34,13.6,omega,upper,-0.06197129453562094 +karman_re200,sr,34,13.6,omega,lower,0.006652879074591382 +karman_re200,sr,35,14.0,omega,front,0.02224698436518928 +karman_re200,sr,35,14.0,omega,upper,-0.048390845550908355 +karman_re200,sr,35,14.0,omega,lower,0.02023332805930397 +karman_re200,sr,36,14.4,omega,front,0.014632994746426528 +karman_re200,sr,36,14.4,omega,upper,-0.03398158545109379 +karman_re200,sr,36,14.4,omega,lower,0.03464258815911854 +karman_re200,sr,37,14.8,omega,front,0.004841652713414182 +karman_re200,sr,37,14.8,omega,upper,-0.02780984368801883 +karman_re200,sr,37,14.8,omega,lower,0.0408143299221935 +karman_re200,sr,38,15.2,omega,front,-0.0043920579417169306 +karman_re200,sr,38,15.2,omega,upper,-0.03196556433960267 +karman_re200,sr,38,15.2,omega,lower,0.036658609270609654 +karman_re200,sr,39,15.6,omega,front,-0.01121306679423471 +karman_re200,sr,39,15.6,omega,upper,-0.030761768681669552 +karman_re200,sr,39,15.6,omega,lower,0.03786240492854277 +karman_re200,sr,40,16.0,omega,front,-0.01780250823390717 +karman_re200,sr,40,16.0,omega,upper,-0.018527804721228 +karman_re200,sr,40,16.0,omega,lower,0.050096368888984326 +karman_re200,sr,41,16.4,omega,front,-0.02376214685421652 +karman_re200,sr,41,16.4,omega,upper,-0.007025394189937275 +karman_re200,sr,41,16.4,omega,lower,0.06159877942027505 +karman_re200,sr,42,16.8,omega,front,-0.025885097850543715 +karman_re200,sr,42,16.8,omega,upper,-0.007786405666197909 +karman_re200,sr,42,16.8,omega,lower,0.06083776794401441 +karman_re200,sr,43,17.2,omega,front,-0.02168624677684469 +karman_re200,sr,43,17.2,omega,upper,-0.020334029546100762 +karman_re200,sr,43,17.2,omega,lower,0.04829014406411156 +karman_re200,sr,44,17.6,omega,front,-0.013914664040861788 +karman_re200,sr,44,17.6,omega,upper,-0.03469753977172804 +karman_re200,sr,44,17.6,omega,lower,0.03392663383848428 +karman_re200,sr,45,18.0,omega,front,-0.0043352266333838195 +karman_re200,sr,45,18.0,omega,upper,-0.040403981716213525 +karman_re200,sr,45,18.0,omega,lower,0.028220191893998797 +karman_re200,sr,46,18.4,omega,front,0.0045570511746878956 +karman_re200,sr,46,18.4,omega,upper,-0.0368657092834448 +karman_re200,sr,46,18.4,omega,lower,0.03175846432676753 +karman_re200,sr,47,18.8,omega,front,0.011355583513156759 +karman_re200,sr,47,18.8,omega,upper,-0.03881942835328893 +karman_re200,sr,47,18.8,omega,lower,0.029804745256923396 +karman_re200,sr,48,19.2,omega,front,0.017798287588300453 +karman_re200,sr,48,19.2,omega,upper,-0.05085134381778564 +karman_re200,sr,48,19.2,omega,lower,0.017772829792426687 +karman_re200,sr,49,19.6,omega,front,0.023255662277441084 +karman_re200,sr,49,19.6,omega,upper,-0.061206568260923806 +karman_re200,sr,49,19.6,omega,lower,0.007417605349288521 +karman_re200,sr,50,20.0,omega,front,0.024699841463808624 +karman_re200,sr,50,20.0,omega,upper,-0.059137474250458684 +karman_re200,sr,50,20.0,omega,lower,0.009486699359753636 +karman_re200,sr,51,20.4,omega,front,0.02014120188604288 +karman_re200,sr,51,20.4,omega,upper,-0.04691486630704086 +karman_re200,sr,51,20.4,omega,lower,0.021709307303171468 +karman_re200,sr,52,20.8,omega,front,0.012497451298976359 +karman_re200,sr,52,20.8,omega,upper,-0.034056752266014734 +karman_re200,sr,52,20.8,omega,lower,0.03456742134419759 +karman_re200,sr,53,21.2,omega,front,0.003337350472558733 +karman_re200,sr,53,21.2,omega,upper,-0.029054292029497664 +karman_re200,sr,53,21.2,omega,lower,0.039569881580714665 +karman_re200,sr,54,21.6,omega,front,-0.005246064244016856 +karman_re200,sr,54,21.6,omega,upper,-0.030923627321414866 +karman_re200,sr,54,21.6,omega,lower,0.03770054628879746 +karman_re200,sr,55,22.0,omega,front,-0.012199777902216323 +karman_re200,sr,55,22.0,omega,upper,-0.02776913010613809 +karman_re200,sr,55,22.0,omega,lower,0.040855043504074234 +karman_re200,sr,56,22.4,omega,front,-0.018625878669716073 +karman_re200,sr,56,22.4,omega,upper,-0.016372719216791298 +karman_re200,sr,56,22.4,omega,lower,0.05225145439342103 +karman_re200,sr,57,22.8,omega,front,-0.023594266745826355 +karman_re200,sr,57,22.8,omega,upper,-0.007255093574900067 +karman_re200,sr,57,22.8,omega,lower,0.06136908003531225 +karman_re200,sr,58,23.2,omega,front,-0.024357341356400275 +karman_re200,sr,58,23.2,omega,upper,-0.010373493302090973 +karman_re200,sr,58,23.2,omega,lower,0.058250680308121354 +karman_re200,sr,59,23.6,omega,front,-0.019418054245470006 +karman_re200,sr,59,23.6,omega,upper,-0.023445634541561292 +karman_re200,sr,59,23.6,omega,lower,0.045178539068651026 +karman_re200,sr,60,24.0,omega,front,-0.011469158218206096 +karman_re200,sr,60,24.0,omega,upper,-0.03650102873889983 +karman_re200,sr,60,24.0,omega,lower,0.0321231448713125 +karman_re200,sr,61,24.4,omega,front,-0.002070838665929108 +karman_re200,sr,61,24.4,omega,upper,-0.03987793276352019 +karman_re200,sr,61,24.4,omega,lower,0.028746240846692132 +karman_re200,sr,62,24.8,omega,front,0.006232589316809195 +karman_re200,sr,62,24.8,omega,upper,-0.037415006175533796 +karman_re200,sr,62,24.8,omega,lower,0.03120916743467853 +karman_re200,sr,63,25.2,omega,front,0.012889505808430074 +karman_re200,sr,63,25.2,omega,upper,-0.04174292295923339 +karman_re200,sr,63,25.2,omega,lower,0.026881250650978936 +karman_re200,sr,64,25.6,omega,front,0.019150962325438017 +karman_re200,sr,64,25.6,omega,upper,-0.053963466449093875 +karman_re200,sr,64,25.6,omega,lower,0.014660707161118447 +karman_re200,sr,65,26.0,omega,front,0.023763801191007038 +karman_re200,sr,65,26.0,omega,upper,-0.06199583504217751 +karman_re200,sr,65,26.0,omega,lower,0.0066283385680348155 +karman_re200,sr,66,26.4,omega,front,0.02383688416051654 +karman_re200,sr,66,26.4,omega,upper,-0.05691100371770607 +karman_re200,sr,66,26.4,omega,lower,0.011713169892506255 +karman_re200,sr,67,26.8,omega,front,0.01832053409638649 +karman_re200,sr,67,26.8,omega,upper,-0.043444093588813466 +karman_re200,sr,67,26.8,omega,lower,0.025180080021398855 +karman_re200,sr,68,27.2,omega,front,0.010268462242755653 +karman_re200,sr,68,27.2,omega,upper,-0.031242670653692347 +karman_re200,sr,68,27.2,omega,lower,0.03738150295651998 +karman_re200,sr,69,27.6,omega,front,0.0008812343726418884 +karman_re200,sr,69,27.6,omega,upper,-0.0289337833592341 +karman_re200,sr,69,27.6,omega,lower,0.03969039025097822 +karman_re200,sr,70,28.0,omega,front,-0.007204655148613902 +karman_re200,sr,70,28.0,omega,upper,-0.031055505710827536 +karman_re200,sr,70,28.0,omega,lower,0.03756866789938479 +karman_re200,sr,71,28.4,omega,front,-0.013844395131088812 +karman_re200,sr,71,28.4,omega,upper,-0.02549848392115858 +karman_re200,sr,71,28.4,omega,lower,0.043125689689053746 +karman_re200,sr,72,28.8,omega,front,-0.02008331830229551 +karman_re200,sr,72,28.8,omega,upper,-0.013075520455509594 +karman_re200,sr,72,28.8,omega,lower,0.05554865315470273 +karman_re200,sr,73,29.2,omega,front,-0.024361601073836718 +karman_re200,sr,73,29.2,omega,upper,-0.006232030473194783 +karman_re200,sr,73,29.2,omega,lower,0.06239214313701754 +karman_re200,sr,74,29.6,omega,front,-0.02377263231252162 +karman_re200,sr,74,29.6,omega,upper,-0.01284865893295895 +karman_re200,sr,74,29.6,omega,lower,0.05577551467725338 +karman_re200,sr,75,30.0,omega,front,-0.017766366791409065 +karman_re200,sr,75,30.0,omega,upper,-0.02718732872772967 +karman_re200,sr,75,30.0,omega,lower,0.04143684488248266 +karman_re200,sr,76,30.4,omega,front,-0.00933481600752102 +karman_re200,sr,76,30.4,omega,upper,-0.03889739344670426 +karman_re200,sr,76,30.4,omega,lower,0.029726780163508063 +karman_re200,sr,77,30.8,omega,front,0.00020422173851586593 +karman_re200,sr,77,30.8,omega,upper,-0.039566041940691354 +karman_re200,sr,77,30.8,omega,lower,0.029058131669520967 +karman_re200,sr,78,31.2,omega,front,0.008000295685267774 +karman_re200,sr,78,31.2,omega,upper,-0.03724573620841598 +karman_re200,sr,78,31.2,omega,lower,0.03137843740179634 +karman_re200,sr,79,31.6,omega,front,0.014449714565148812 +karman_re200,sr,79,31.6,omega,upper,-0.044107361714901136 +karman_re200,sr,79,31.6,omega,lower,0.024516811895311186 +karman_re200,sr,80,32.0,omega,front,0.020562941884129295 +karman_re200,sr,80,32.0,omega,upper,-0.05692614304379321 +karman_re200,sr,80,32.0,omega,lower,0.01169803056641912 +karman_re200,sr,81,32.4,omega,front,0.024470450751477392 +karman_re200,sr,81,32.4,omega,upper,-0.06230032671730085 +karman_re200,sr,81,32.4,omega,lower,0.0063238468929114776 +karman_re200,sr,82,32.8,omega,front,0.023157369985792053 +karman_re200,sr,82,32.8,omega,upper,-0.05408639887309142 +karman_re200,sr,82,32.8,omega,lower,0.014537774737120904 +karman_re200,sr,83,33.2,omega,front,0.016697652348792284 +karman_re200,sr,83,33.2,omega,upper,-0.039842502112202846 +karman_re200,sr,83,33.2,omega,lower,0.02878167149800948 +karman_re200,sr,84,33.6,omega,front,0.008154456919443838 +karman_re200,sr,84,33.6,omega,upper,-0.029410879185317852 +karman_re200,sr,84,33.6,omega,lower,0.03921329442489447 +karman_re200,sr,85,34.0,omega,front,-0.0012141956256199035 +karman_re200,sr,85,34.0,omega,upper,-0.029525240168660677 +karman_re200,sr,85,34.0,omega,lower,0.039098933441551645 +karman_re200,sr,86,34.4,omega,front,-0.008802698756450993 +karman_re200,sr,86,34.4,omega,upper,-0.030907449678715563 +karman_re200,sr,86,34.4,omega,lower,0.03771672393149676 +karman_re200,sr,87,34.8,omega,front,-0.015291338649409585 +karman_re200,sr,87,34.8,omega,upper,-0.02293857368972865 +karman_re200,sr,87,34.8,omega,lower,0.045685599920483676 +karman_re200,sr,88,35.2,omega,front,-0.021327455936430224 +karman_re200,sr,88,35.2,omega,upper,-0.010494350615322553 +karman_re200,sr,88,35.2,omega,lower,0.05812982299488978 +karman_re200,sr,89,35.6,omega,front,-0.024770136125469376 +karman_re200,sr,89,35.6,omega,upper,-0.006534447037552158 +karman_re200,sr,89,35.6,omega,lower,0.06208972657266017 +karman_re200,sr,90,36.0,omega,front,-0.02276269699774949 +karman_re200,sr,90,36.0,omega,upper,-0.015929747772738617 +karman_re200,sr,90,36.0,omega,lower,0.052694425837473705 +karman_re200,sr,91,36.4,omega,front,-0.015953178593157136 +karman_re200,sr,91,36.4,omega,upper,-0.030543585171859924 +karman_re200,sr,91,36.4,omega,lower,0.0380805884383524 +karman_re200,sr,92,36.8,omega,front,-0.0071133003267318615 +karman_re200,sr,92,36.8,omega,upper,-0.03988109034219122 +karman_re200,sr,92,36.8,omega,lower,0.028743083268021104 +karman_re200,sr,93,37.2,omega,front,0.0021877264845401234 +karman_re200,sr,93,37.2,omega,upper,-0.038701410424927876 +karman_re200,sr,93,37.2,omega,lower,0.02992276318528445 +karman_re200,sr,94,37.6,omega,front,0.009529804861773152 +karman_re200,sr,94,37.6,omega,upper,-0.03792751742835115 +karman_re200,sr,94,37.6,omega,lower,0.030696656181861175 +karman_re200,sr,95,38.0,omega,front,0.015946199387572028 +karman_re200,sr,95,38.0,omega,upper,-0.04709415709518698 +karman_re200,sr,95,38.0,omega,lower,0.021530016515025344 +karman_re200,sr,96,38.4,omega,front,0.021818771763310013 +karman_re200,sr,96,38.4,omega,upper,-0.05924308414305846 +karman_re200,sr,96,38.4,omega,lower,0.009381089467153858 +karman_re200,sr,97,38.8,omega,front,0.024769933662351695 +karman_re200,sr,97,38.8,omega,upper,-0.06153453319928239 +karman_re200,sr,97,38.8,omega,lower,0.007089640410929925 +karman_re200,sr,98,39.2,omega,front,0.02203422404438396 +karman_re200,sr,98,39.2,omega,upper,-0.05100729531903356 +karman_re200,sr,98,39.2,omega,lower,0.017616878291178768 +karman_re200,sr,99,39.6,omega,front,0.014932395073660724 +karman_re200,sr,99,39.6,omega,upper,-0.03663098883075922 +karman_re200,sr,99,39.6,omega,lower,0.03199318477945311 +karman_re200,sr,100,40.0,omega,front,0.005954575599373642 +karman_re200,sr,100,40.0,omega,upper,-0.02855978536943035 +karman_re200,sr,100,40.0,omega,lower,0.04006438824078197 +karman_re200,sr,101,40.4,omega,front,-0.0031508502508137293 +karman_re200,sr,101,40.4,omega,upper,-0.030320313606158986 +karman_re200,sr,101,40.4,omega,lower,0.038303860004053336 +karman_re200,sr,102,40.8,omega,front,-0.010317439669315436 +karman_re200,sr,102,40.8,omega,upper,-0.030056657309586433 +karman_re200,sr,102,40.8,omega,lower,0.03856751630062589 +karman_re200,sr,103,41.2,omega,front,-0.016753221814624415 +karman_re200,sr,103,41.2,omega,upper,-0.019977312981318645 +karman_re200,sr,103,41.2,omega,lower,0.04864686062889367 +karman_re200,sr,104,41.6,omega,front,-0.022454742159795257 +karman_re200,sr,104,41.6,omega,upper,-0.008414265977843859 +karman_re200,sr,104,41.6,omega,lower,0.06020990763236846 +karman_re200,sr,105,42.0,omega,front,-0.024872852413838933 +karman_re200,sr,105,42.0,omega,upper,-0.007654161886775093 +karman_re200,sr,105,42.0,omega,lower,0.06097001172343723 +karman_re200,sr,106,42.4,omega,front,-0.02147159236029371 +karman_re200,sr,106,42.4,omega,upper,-0.019234628858983686 +karman_re200,sr,106,42.4,omega,lower,0.049389544751228635 +karman_re200,sr,107,42.8,omega,front,-0.014081764932647723 +karman_re200,sr,107,42.8,omega,upper,-0.033556417635285565 +karman_re200,sr,107,42.8,omega,lower,0.035067755974926756 +karman_re200,sr,108,43.2,omega,front,-0.004862319047351736 +karman_re200,sr,108,43.2,omega,upper,-0.04031880625993128 +karman_re200,sr,108,43.2,omega,lower,0.028305367350281052 +karman_re200,sr,109,43.6,omega,front,0.004046641988015636 +karman_re200,sr,109,43.6,omega,upper,-0.037870674922439125 +karman_re200,sr,109,43.6,omega,lower,0.0307534986877732 +karman_re200,sr,110,44.0,omega,front,0.011013977173853431 +karman_re200,sr,110,44.0,omega,upper,-0.039163680551349875 +karman_re200,sr,110,44.0,omega,lower,0.02946049305886245 +karman_re200,sr,111,44.4,omega,front,0.017408023057046137 +karman_re200,sr,111,44.4,omega,upper,-0.05016513528889417 +karman_re200,sr,111,44.4,omega,lower,0.018459038321318146 +karman_re200,sr,112,44.8,omega,front,0.022887811656508505 +karman_re200,sr,112,44.8,omega,upper,-0.06097574834659655 +karman_re200,sr,112,44.8,omega,lower,0.0076484252636157685 +karman_re200,sr,113,45.2,omega,front,0.024711479541090688 +karman_re200,sr,113,45.2,omega,upper,-0.06005217637727945 +karman_re200,sr,113,45.2,omega,lower,0.008571997232932876 +karman_re200,sr,114,45.6,omega,front,0.020657468184190255 +karman_re200,sr,114,45.6,omega,upper,-0.04773414378779472 +karman_re200,sr,114,45.6,omega,lower,0.020890029822417607 +karman_re200,sr,115,46.0,omega,front,0.01305780527299271 +karman_re200,sr,115,46.0,omega,upper,-0.03382229063125301 +karman_re200,sr,115,46.0,omega,lower,0.03480188297895931 +karman_re200,sr,116,46.4,omega,front,0.0037611571151388574 +karman_re200,sr,116,46.4,omega,upper,-0.02830763581326072 +karman_re200,sr,116,46.4,omega,lower,0.0403165377969516 +karman_re200,sr,117,46.8,omega,front,-0.004945223365060485 +karman_re200,sr,117,46.8,omega,upper,-0.030978314026267016 +karman_re200,sr,117,46.8,omega,lower,0.037645859583945306 +karman_re200,sr,118,47.2,omega,front,-0.011780805788067658 +karman_re200,sr,118,47.2,omega,upper,-0.028577077451660608 +karman_re200,sr,118,47.2,omega,lower,0.04004709615855172 +karman_re200,sr,119,47.6,omega,front,-0.018170052496174836 +karman_re200,sr,119,47.6,omega,upper,-0.01693640029561313 +karman_re200,sr,119,47.6,omega,lower,0.05168777331459919 +karman_re200,sr,120,48.0,omega,front,-0.02339278752785878 +karman_re200,sr,120,48.0,omega,upper,-0.007011456083508505 +karman_re200,sr,120,48.0,omega,lower,0.061612717526703824 +karman_re200,sr,121,48.4,omega,front,-0.024609298714387627 +karman_re200,sr,121,48.4,omega,upper,-0.009562198070600473 +karman_re200,sr,121,48.4,omega,lower,0.05906197553961185 +karman_re200,sr,122,48.8,omega,front,-0.019948471649947844 +karman_re200,sr,122,48.8,omega,upper,-0.022678237874873323 +karman_re200,sr,122,48.8,omega,lower,0.045945935735339 +karman_re200,sr,123,49.2,omega,front,-0.012092185849095008 +karman_re200,sr,123,49.2,omega,upper,-0.036197395730300334 +karman_re200,sr,123,49.2,omega,lower,0.03242677787991199 +karman_re200,sr,124,49.6,omega,front,-0.0026577684771298083 +karman_re200,sr,124,49.6,omega,upper,-0.040202606146870705 +karman_re200,sr,124,49.6,omega,lower,0.028421567463341617 +karman_re200,sr,125,50.0,omega,front,0.005795347792277352 +karman_re200,sr,125,50.0,omega,upper,-0.03726762002510709 +karman_re200,sr,125,50.0,omega,lower,0.03135655358510523 +karman_re200,sr,126,50.4,omega,front,0.01247004218842336 +karman_re200,sr,126,50.4,omega,upper,-0.04096166126411867 +karman_re200,sr,126,50.4,omega,lower,0.027662512346093654 +karman_re200,sr,127,50.8,omega,front,0.018835524788092868 +karman_re200,sr,127,50.8,omega,upper,-0.05325419115335345 +karman_re200,sr,127,50.8,omega,lower,0.015369982456858876 +karman_re200,sr,128,51.2,omega,front,0.02374237384438592 +karman_re200,sr,128,51.2,omega,upper,-0.06207179353545378 +karman_re200,sr,128,51.2,omega,lower,0.006552380074758548 +karman_re200,sr,129,51.6,omega,front,0.024280483515341397 +karman_re200,sr,129,51.6,omega,upper,-0.057873485155728814 +karman_re200,sr,129,51.6,omega,lower,0.010750688454483513 +karman_re200,sr,130,52.0,omega,front,0.019063487602646777 +karman_re200,sr,130,52.0,omega,upper,-0.04435121387292366 +karman_re200,sr,130,52.0,omega,lower,0.024272959737288664 +karman_re200,sr,131,52.4,omega,front,0.011064828494246913 +karman_re200,sr,131,52.4,omega,upper,-0.031543608910967 +karman_re200,sr,131,52.4,omega,lower,0.037080564699245325 +karman_re200,sr,132,52.8,omega,front,0.0016015783596828885 +karman_re200,sr,132,52.8,omega,upper,-0.0285437295234011 +karman_re200,sr,132,52.8,omega,lower,0.04008044408681122 +karman_re200,sr,133,53.2,omega,front,-0.00665557095548463 +karman_re200,sr,133,53.2,omega,upper,-0.03128233982912742 +karman_re200,sr,133,53.2,omega,lower,0.0373418337810849 +karman_re200,sr,134,53.6,omega,front,-0.013260920401831106 +karman_re200,sr,134,53.6,omega,upper,-0.026529952515555642 +karman_re200,sr,134,53.6,omega,lower,0.042094221094656686 +karman_re200,sr,135,54.0,omega,front,-0.019550011802408146 +karman_re200,sr,135,54.0,omega,upper,-0.014025723266732988 +karman_re200,sr,135,54.0,omega,lower,0.05459845034347934 +karman_re200,sr,136,54.4,omega,front,-0.02412677049721204 +karman_re200,sr,136,54.4,omega,upper,-0.0063260255308469834 +karman_re200,sr,136,54.4,omega,lower,0.06229814807936534 +karman_re200,sr,137,54.8,omega,front,-0.0240203290650764 +karman_re200,sr,137,54.8,omega,upper,-0.012004073626627214 +karman_re200,sr,137,54.8,omega,lower,0.05662009998358511 +karman_re200,sr,138,55.2,omega,front,-0.018302609894498913 +karman_re200,sr,138,55.2,omega,upper,-0.026133266851038454 +karman_re200,sr,138,55.2,omega,lower,0.04249090675917387 +karman_re200,sr,139,55.6,omega,front,-0.010028825165077374 +karman_re200,sr,139,55.6,omega,upper,-0.03821969241521574 +karman_re200,sr,139,55.6,omega,lower,0.03040448119499658 +karman_re200,sr,140,56.0,omega,front,-0.0005230729064221503 +karman_re200,sr,140,56.0,omega,upper,-0.039716034539857115 +karman_re200,sr,140,56.0,omega,lower,0.02890813907035521 +karman_re200,sr,141,56.4,omega,front,0.007433370761887165 +karman_re200,sr,141,56.4,omega,upper,-0.03717622075898532 +karman_re200,sr,141,56.4,omega,lower,0.031447952851227 +karman_re200,sr,142,56.8,omega,front,0.013931860529920686 +karman_re200,sr,142,56.8,omega,upper,-0.043286309047681305 +karman_re200,sr,142,56.8,omega,lower,0.025337864562531016 +karman_re200,sr,143,57.2,omega,front,0.020138890876114094 +karman_re200,sr,143,57.2,omega,upper,-0.05604551201296037 +karman_re200,sr,143,57.2,omega,lower,0.012578661597251961 +karman_re200,sr,144,57.6,omega,front,0.02433322426950086 +karman_re200,sr,144,57.6,omega,upper,-0.06233939908905267 +karman_re200,sr,144,57.6,omega,lower,0.006284774521159648 +karman_re200,sr,145,58.0,omega,front,0.023512932516275273 +karman_re200,sr,145,58.0,omega,upper,-0.05516482921854276 +karman_re200,sr,145,58.0,omega,lower,0.013459344391669568 +karman_re200,sr,146,58.4,omega,front,0.01736561946583804 +karman_re200,sr,146,58.4,omega,upper,-0.0409868975341529 +karman_re200,sr,146,58.4,omega,lower,0.02763727607605943 +karman_re200,sr,147,58.8,omega,front,0.008947879241764534 +karman_re200,sr,147,58.8,omega,upper,-0.02984414038985085 +karman_re200,sr,147,58.8,omega,lower,0.03878003322036147 +karman_re200,sr,148,59.2,omega,front,-0.0004848689888496662 +karman_re200,sr,148,59.2,omega,upper,-0.02922734682813726 +karman_re200,sr,148,59.2,omega,lower,0.03939682678207506 +karman_re200,sr,149,59.6,omega,front,-0.008238622746655015 +karman_re200,sr,149,59.6,omega,upper,-0.031113106401010615 +karman_re200,sr,149,59.6,omega,lower,0.03751106720920171 +karman_re200,sr,150,60.0,omega,front,-0.014729026643926198 +karman_re200,sr,150,60.0,omega,upper,-0.023965995589763322 +karman_re200,sr,150,60.0,omega,lower,0.044658178020449 +karman_re200,sr,151,60.4,omega,front,-0.02085537588172227 +karman_re200,sr,151,60.4,omega,upper,-0.01130153216428214 +karman_re200,sr,151,60.4,omega,lower,0.05732264144593018 +karman_re200,sr,152,60.8,omega,front,-0.024608434694152966 +karman_re200,sr,152,60.8,omega,upper,-0.006415975416595168 +karman_re200,sr,152,60.8,omega,lower,0.06220819819361715 +karman_re200,sr,153,61.2,omega,front,-0.02308737102684265 +karman_re200,sr,153,61.2,omega,upper,-0.014919397198469735 +karman_re200,sr,153,61.2,omega,lower,0.05370477641174259 +karman_re200,sr,154,61.6,omega,front,-0.016544917014402246 +karman_re200,sr,154,61.6,omega,upper,-0.029451860719872706 +karman_re200,sr,154,61.6,omega,lower,0.039172312890339615 +karman_re200,sr,155,62.0,omega,front,-0.007852729820349551 +karman_re200,sr,155,62.0,omega,upper,-0.039612029318385235 +karman_re200,sr,155,62.0,omega,lower,0.02901214429182709 +karman_re200,sr,156,62.4,omega,front,0.0015130351277981352 +karman_re200,sr,156,62.4,omega,upper,-0.03899146614973362 +karman_re200,sr,156,62.4,omega,lower,0.02963270746047871 +karman_re200,sr,157,62.8,omega,front,0.008999037808819057 +karman_re200,sr,157,62.8,omega,upper,-0.03765578296763758 +karman_re200,sr,157,62.8,omega,lower,0.030968390642574745 +karman_re200,sr,158,63.2,omega,front,0.015415313565135523 +karman_re200,sr,158,63.2,omega,upper,-0.046048295179306836 +karman_re200,sr,158,63.2,omega,lower,0.022575878430905486 +karman_re200,sr,159,63.6,omega,front,0.021389756856927147 +karman_re200,sr,159,63.6,omega,upper,-0.058521539355268944 +karman_re200,sr,159,63.6,omega,lower,0.010102634254943382 +karman_re200,sr,160,64.0,omega,front,0.02472723969640903 +karman_re200,sr,160,64.0,omega,upper,-0.061892469253223385 +karman_re200,sr,160,64.0,omega,lower,0.0067317043569889365 +karman_re200,sr,161,64.4,omega,front,0.022445184657446188 +karman_re200,sr,161,64.4,omega,upper,-0.05207016005005259 +karman_re200,sr,161,64.4,omega,lower,0.016554013560159734 +karman_re200,sr,162,64.8,omega,front,0.015553020009020417 +karman_re200,sr,162,64.8,omega,upper,-0.03762756267918715 +karman_re200,sr,162,64.8,omega,lower,0.03099661093102518 +karman_re200,sr,163,65.2,omega,front,0.006719019166981737 +karman_re200,sr,163,65.2,omega,upper,-0.028776967101628827 +karman_re200,sr,163,65.2,omega,lower,0.0398472065085835 +karman_re200,sr,164,65.6,omega,front,-0.002485686759549966 +karman_re200,sr,164,65.6,omega,upper,-0.03006356013586148 +karman_re200,sr,164,65.6,omega,lower,0.038560613474350844 +karman_re200,sr,165,66.0,omega,front,-0.009791566363034732 +karman_re200,sr,165,66.0,omega,upper,-0.03036506779256861 +karman_re200,sr,165,66.0,omega,lower,0.03825910581764371 +karman_re200,sr,166,66.4,omega,front,-0.016219813639180146 +karman_re200,sr,166,66.4,omega,upper,-0.021001665605268074 +karman_re200,sr,166,66.4,omega,lower,0.04762250800494425 +karman_re200,sr,167,66.8,omega,front,-0.02203522614801686 +karman_re200,sr,167,66.8,omega,upper,-0.009062818021272814 +karman_re200,sr,167,66.8,omega,lower,0.05956135558893951 +karman_re200,sr,168,67.2,omega,front,-0.02481838361921015 +karman_re200,sr,168,67.2,omega,upper,-0.007246354663824026 +karman_re200,sr,168,67.2,omega,lower,0.061377818946388295 +karman_re200,sr,169,67.6,omega,front,-0.021877310688201455 +karman_re200,sr,169,67.6,omega,upper,-0.018125884844815445 +karman_re200,sr,169,67.6,omega,lower,0.05049828876539688 +karman_re200,sr,170,68.0,omega,front,-0.014690119537480664 +karman_re200,sr,170,68.0,omega,upper,-0.03257964183557416 +karman_re200,sr,170,68.0,omega,lower,0.036044531774638164 +karman_re200,sr,171,68.4,omega,front,-0.005610743941768094 +karman_re200,sr,171,68.4,omega,upper,-0.04027020025383133 +karman_re200,sr,171,68.4,omega,lower,0.028353973356380985 +karman_re200,sr,172,68.8,omega,front,0.003450202515257379 +karman_re200,sr,172,68.8,omega,upper,-0.038168309445038684 +karman_re200,sr,172,68.8,omega,lower,0.030455864165173638 +karman_re200,sr,173,69.2,omega,front,0.010531240721585318 +karman_re200,sr,173,69.2,omega,upper,-0.03872199101724946 +karman_re200,sr,173,69.2,omega,lower,0.029902182592962862 +karman_re200,sr,174,69.6,omega,front,0.016931507905666027 +karman_re200,sr,174,69.6,omega,upper,-0.04912448627049215 +karman_re200,sr,174,69.6,omega,lower,0.019499687339720177 +karman_re200,sr,175,70.0,omega,front,0.02254692237408029 +karman_re200,sr,175,70.0,omega,upper,-0.06048889812970023 +karman_re200,sr,175,70.0,omega,lower,0.008135275480512098 +karman_re200,sr,176,70.4,omega,front,0.024780015082417565 +karman_re200,sr,176,70.4,omega,upper,-0.060633274379918334 +karman_re200,sr,176,70.4,omega,lower,0.007990899230293991 +karman_re200,sr,177,70.8,omega,front,0.021146906343252794 +karman_re200,sr,177,70.8,omega,upper,-0.04875591127742235 +karman_re200,sr,177,70.8,omega,lower,0.019868262332789974 +karman_re200,sr,178,71.2,omega,front,0.01369254956882121 +karman_re200,sr,178,71.2,omega,upper,-0.03461169138884378 +karman_re200,sr,178,71.2,omega,lower,0.03401248222136855 +karman_re200,sr,179,71.6,omega,front,0.004472850493628608 +karman_re200,sr,179,71.6,omega,upper,-0.028320287442362094 +karman_re200,sr,179,71.6,omega,lower,0.04030388616785024 +karman_re200,sr,180,72.0,omega,front,-0.00436316487863089 +karman_re200,sr,180,72.0,omega,upper,-0.03086496091036885 +karman_re200,sr,180,72.0,omega,lower,0.037759212699843475 +karman_re200,sr,181,72.4,omega,front,-0.011277444293682045 +karman_re200,sr,181,72.4,omega,upper,-0.029139220847523066 +karman_re200,sr,181,72.4,omega,lower,0.039484952762689256 +karman_re200,sr,182,72.8,omega,front,-0.017684727091189203 +karman_re200,sr,182,72.8,omega,upper,-0.017902655907949025 +karman_re200,sr,182,72.8,omega,lower,0.0507215177022633 +karman_re200,sr,183,73.2,omega,front,-0.023075684109773422 +karman_re200,sr,183,73.2,omega,upper,-0.007387038952481264 +karman_re200,sr,183,73.2,omega,lower,0.06123713465773106 +karman_re200,sr,184,73.6,omega,front,-0.024706952536819062 +karman_re200,sr,184,73.6,omega,upper,-0.008848527437529636 +karman_re200,sr,184,73.6,omega,lower,0.05977564617268269 +karman_re200,sr,185,74.0,omega,front,-0.020471407243030895 +karman_re200,sr,185,74.0,omega,upper,-0.021458605604917042 +karman_re200,sr,185,74.0,omega,lower,0.047165568005295276 +karman_re200,sr,186,74.4,omega,front,-0.012764173812618193 +karman_re200,sr,186,74.4,omega,upper,-0.03531001868640514 +karman_re200,sr,186,74.4,omega,lower,0.03331415492380718 +karman_re200,sr,187,74.8,omega,front,-0.0033969644832650197 +karman_re200,sr,187,74.8,omega,upper,-0.040350625639981666 +karman_re200,sr,187,74.8,omega,lower,0.02827354797023066 +karman_re200,sr,188,75.2,omega,front,0.0052342300305895356 +karman_re200,sr,188,75.2,omega,upper,-0.037505720335386544 +karman_re200,sr,188,75.2,omega,lower,0.03111845327482578 +karman_re200,sr,189,75.6,omega,front,0.011999064136912952 +karman_re200,sr,189,75.6,omega,upper,-0.04029847230586654 +karman_re200,sr,189,75.6,omega,lower,0.028325701304345783 +karman_re200,sr,190,76.0,omega,front,0.01836864661471548 +karman_re200,sr,190,76.0,omega,upper,-0.052204934155295674 +karman_re200,sr,190,76.0,omega,lower,0.016419239454916645 +karman_re200,sr,191,76.4,omega,front,0.023492751028224793 +karman_re200,sr,191,76.4,omega,upper,-0.06176542619161168 +karman_re200,sr,191,76.4,omega,lower,0.006858747418600646 +karman_re200,sr,192,76.8,omega,front,0.024539838769089238 +karman_re200,sr,192,76.8,omega,upper,-0.05874681752110894 +karman_re200,sr,192,76.8,omega,lower,0.00987735608910338 +karman_re200,sr,193,77.2,omega,front,0.019645173463700247 +karman_re200,sr,193,77.2,omega,upper,-0.045382113067888245 +karman_re200,sr,193,77.2,omega,lower,0.02324206054232408 +karman_re200,sr,194,77.6,omega,front,0.011731492032973575 +karman_re200,sr,194,77.6,omega,upper,-0.03207116205253544 +karman_re200,sr,194,77.6,omega,lower,0.03655301155767688 +karman_re200,sr,195,78.0,omega,front,0.002299791984666467 +karman_re200,sr,195,78.0,omega,upper,-0.02844381362512613 +karman_re200,sr,195,78.0,omega,lower,0.04018035998508619 +karman_re200,sr,196,78.4,omega,front,-0.0060842253653689785 +karman_re200,sr,196,78.4,omega,upper,-0.03132860733916241 +karman_re200,sr,196,78.4,omega,lower,0.037295566271049914 +karman_re200,sr,197,78.8,omega,front,-0.012724036165535269 +karman_re200,sr,197,78.8,omega,upper,-0.02729420226078121 +karman_re200,sr,197,78.8,omega,lower,0.041329971349431116 +karman_re200,sr,198,79.2,omega,front,-0.019056805431767212 +karman_re200,sr,198,79.2,omega,upper,-0.014901059187335431 +karman_re200,sr,198,79.2,omega,lower,0.05372311442287689 +karman_re200,sr,199,79.6,omega,front,-0.023872825803885354 +karman_re200,sr,199,79.6,omega,upper,-0.006477359415841662 +karman_re200,sr,199,79.6,omega,lower,0.06214681419437066 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_manifest.json new file mode 100644 index 0000000..954726c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re200", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re200__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_wide.csv new file mode 100644 index 0000000..7a34efc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re200,sr,0,0.0,1.1116604804992676,0.2913402318954468,1.0067689418792725,0.45077061653137207,0.9823883175849915,0.3228631317615509,0.0006219907663762569,0.004089671187102795,-0.00907693151384592,0.002735402202233672,0.007555061485618353,-0.005517416633665562,2.9088244635452787,-5.439184056224114,1.423233304797118,0.029088244635452787,-0.054391840562241146,0.01423233304797118 +karman_re200,sr,1,0.4,1.0397015810012817,0.31608039140701294,1.0097661018371582,0.4659765660762787,1.044013500213623,0.3537726104259491,0.003449325216934085,0.001988931791856885,-0.00907279271632433,0.0028095205780118704,0.005518956575542688,-0.005475772079080343,3.1716498285706156,-5.250342582196071,1.612074778825161,0.031716498285706156,-0.05250342582196071,0.01612074778825161 +karman_re200,sr,2,0.8,0.9833889007568359,0.30929136276245117,1.0035476684570312,0.4605099856853485,1.103630781173706,0.3610314130783081,0.004586732015013695,-0.0004706616746261716,-0.008603401482105255,0.001314715133048594,0.0037344542797654867,-0.005036988761276007,2.7825840920920384,-5.1746462562520845,1.687771104769148,0.027825840920920386,-0.05174646256252085,0.01687771104769148 +karman_re200,sr,3,1.2,0.9407623410224915,0.27143675088882446,0.9846223592758179,0.4292444884777069,1.1683834791183472,0.33917415142059326,0.002376376884058118,-0.0028887197840958834,-0.00805832352489233,0.0018204140942543745,0.0023708895314484835,-0.004788900259882212,2.3527762495647253,-5.8651695083029605,0.9972478527182722,0.023527762495647253,-0.05865169508302961,0.009972478527182723 +karman_re200,sr,4,1.6,0.9109740257263184,0.19634009897708893,0.947691798210144,0.327419638633728,1.245143175125122,0.28066080808639526,-0.0002081144630210474,-0.004825762938708067,-0.0057053635828197,0.004814137239009142,0.0010463364887982607,-0.00502664502710104,1.9888062605206258,-5.372274751040837,1.4901426099803954,0.019888062605206258,-0.05372274751040837,0.014901426099803954 +karman_re200,sr,5,2.0,0.8837512135505676,0.0644649863243103,0.9234367609024048,0.0908089354634285,1.2716646194458008,0.09437479078769684,-0.0020086453296244144,-0.005311309825628996,-0.0018245094688609242,0.007571363355964422,2.837058127624914e-05,-0.005269081797450781,1.287520285476135,-3.570165587894878,3.292251773126354,0.012875202854761349,-0.03570165587894878,0.03292251773126354 +karman_re200,sr,6,2.4,0.8760082721710205,-0.11263827979564667,0.9428457021713257,-0.15998901426792145,1.271299958229065,-0.0748618096113205,-0.002472967142239213,-0.004996501840651035,0.002138452837243676,0.008187723346054554,-0.0013361216988414526,-0.005377894267439842,0.3533362894975227,-1.9257677356332146,4.936649625388018,0.003533362894975227,-0.019257677356332145,0.04936649625388018 +karman_re200,sr,7,2.8,0.9085723161697388,-0.24762004613876343,0.9666978716850281,-0.37208375334739685,1.2092394828796387,-0.23839826881885529,-0.0013231125194579363,-0.00469603156670928,0.004591529257595539,0.0075709037482738495,-0.003093722742050886,-0.005309775471687317,-0.6625864820941898,-1.5938870343325313,5.268530326688701,-0.006625864820941898,-0.015938870343325313,0.052685303266887015 +karman_re200,sr,8,3.2,0.9715722799301147,-0.2965755760669708,0.9870283603668213,-0.4748254418373108,1.1178507804870605,-0.33965981006622314,0.0009813234210014343,-0.0033045904710888863,0.0053587136790156364,0.007298946380615234,-0.004800922237336636,-0.003864009864628315,-1.46554463965838,-1.9526774919139147,4.909739869107318,-0.0146554463965838,-0.019526774919139147,0.04909739869107318 +karman_re200,sr,9,3.6,1.0374376773834229,-0.3314094841480255,1.0061455965042114,-0.4868294596672058,1.0479073524475098,-0.36579740047454834,0.0028585391119122505,-0.0006141684134490788,0.004962151404470205,0.007104497402906418,-0.00700722448527813,-0.002165799494832754,-1.9373990545496544,-1.1851349737135601,5.677282387307672,-0.019373990545496544,-0.011851349737135601,0.05677282387307672 +karman_re200,sr,10,4.0,1.0997576713562012,-0.3367098867893219,1.0143948793411255,-0.4737146496772766,0.9958338141441345,-0.35619866847991943,0.002594666788354516,0.0019857913721352816,0.0038232540246099234,0.006321468390524387,-0.00828253012150526,-0.002965773455798626,-2.2825087161857494,-0.20183909376273634,6.660578267258496,-0.022825087161857494,-0.0020183909376273635,0.06660578267258496 +karman_re200,sr,11,4.4,1.16373872756958,-0.3104960322380066,1.0083043575286865,-0.4342651069164276,0.9571254253387451,-0.3121921420097351,0.0007686804747208953,0.003990611061453819,0.002507125958800316,0.005684312433004379,-0.006181516218930483,-0.006075012497603893,-2.308521186425213,-1.2369503220692986,5.625467038951934,-0.02308521186425213,-0.012369503220692985,0.05625467038951934 +karman_re200,sr,12,4.8,1.2350831031799316,-0.2509011924266815,0.9836418628692627,-0.31402209401130676,0.9277738332748413,-0.21756164729595184,-0.0012202668003737926,0.004805410746484995,0.0011137902038171887,0.005849506240338087,-0.0019199842354282737,-0.008005838841199875,-1.6568868490023383,-3.68668389475595,3.175733466265282,-0.016568868490023383,-0.0368668389475595,0.03175733466265282 +karman_re200,sr,13,5.2,1.260117769241333,-0.08975174278020859,0.9709721207618713,-0.0632845014333725,0.8954675793647766,-0.03770124167203903,-0.002446215134114027,0.005107545759528875,-0.0005610130028799176,0.006691573653370142,0.0017338708275929093,-0.007623615209013224,-0.5785277916161171,-4.841214931095836,2.021202429925397,-0.005785277916161171,-0.04841214931095836,0.020212024299253967 +karman_re200,sr,14,5.6,1.2464669942855835,0.07390062510967255,0.9851139783859253,0.1919192522764206,0.8875181078910828,0.18118157982826233,-0.0021646444220095873,0.005053635686635971,-0.0019116334151476622,0.006693853065371513,0.0037096766754984856,-0.0069534690119326115,0.4376245172627878,-4.040662165903685,2.821755195117548,0.004376245172627878,-0.04040662165903685,0.02821755195117548 +karman_re200,sr,15,6.0,1.1925227642059326,0.2045702189207077,0.9896596670150757,0.401601105928421,0.9297524094581604,0.3021825850009918,-0.0003735747595783323,0.004573639947921038,-0.0034786411561071873,0.004722330719232559,0.0049630580469965935,-0.007182697765529156,1.0719597576739242,-3.600969183717055,3.261448177304177,0.010719597576739242,-0.03600969183717055,0.03261448177304177 +karman_re200,sr,16,6.4,1.1025211811065674,0.28437748551368713,0.9915844798088074,0.46360301971435547,0.99402916431427,0.3385518193244934,0.0019201311515644193,0.0030056762043386698,-0.005921504460275173,0.0021919317077845335,0.005875981878489256,-0.0072486428543925285,1.6097958814214999,-5.040020286208939,1.8223970748122926,0.016097958814215,-0.0504002028620894,0.018223970748122927 +karman_re200,sr,17,6.8,1.0341092348098755,0.3039852976799011,0.9867866635322571,0.4787076711654663,1.0598081350326538,0.36762234568595886,0.0031671386677771807,0.0006237964262254536,-0.008614224381744862,0.0013383087934926152,0.005245499778538942,-0.006363998632878065,2.2497301150326137,-6.737746049222517,0.12467131179871549,0.022497301150326138,-0.06737746049222518,0.001246713117987155 +karman_re200,sr,18,7.2,0.9855332374572754,0.2876709997653961,0.9690181612968445,0.47668004035949707,1.1278282403945923,0.36217907071113586,0.002790097612887621,-0.0021454612724483013,-0.00890785176306963,0.003272034926339984,0.0034053055569529533,-0.005562277045100927,2.642990034833232,-6.717461498932069,0.14495586208916356,0.02642990034833232,-0.06717461498932069,0.0014495586208916355 +karman_re200,sr,19,7.6,0.9486334323883057,0.2361646592617035,0.9268463850021362,0.45639485120773315,1.202776312828064,0.3195565938949585,0.0010697526158764958,-0.003867453895509243,-0.0058981627225875854,0.005937771871685982,0.0021806766744703054,-0.005057321861386299,2.3480663624900857,-4.928777145373541,1.933640215647691,0.02348066362490086,-0.04928777145373541,0.01933640215647691 +karman_re200,sr,20,8.0,0.9252208471298218,0.15227514505386353,0.860405445098877,0.35518282651901245,1.2731823921203613,0.2335444837808609,-0.0012161214835941792,-0.0048231263644993305,-0.0013437828747555614,0.007372984662652016,0.0007988908910192549,-0.005618849769234657,1.5406000705720317,-2.8554904367878127,4.00692692423342,0.015406000705720319,-0.028554904367878126,0.0400692692423342 +karman_re200,sr,21,8.4,0.9118699431419373,0.03393873572349548,0.7973281145095825,0.09971339255571365,1.342128038406372,0.15785248577594757,-0.0024034862872213125,-0.005314633250236511,0.0022247740998864174,0.0068291788920760155,-0.0007670347113162279,-0.006568507757037878,0.4085987098552379,-2.2841958481212012,4.578221512900031,0.004085987098552379,-0.022841958481212014,0.04578221512900031 +karman_re200,sr,22,8.8,0.8966085314750671,-0.11849325150251389,0.8024567365646362,-0.20382724702358246,1.3387551307678223,0.07155068218708038,-0.0018790264148265123,-0.005210389383137226,0.003992424346506596,0.006452212110161781,-0.002038270700722933,-0.006343789864331484,-0.570525126091177,-3.2607581991683476,3.6016591618528846,-0.00570525126091177,-0.032607581991683475,0.03601659161852885 +karman_re200,sr,23,9.2,0.9200095534324646,-0.21994690597057343,0.8558069467544556,-0.38393253087997437,1.2081149816513062,-0.147115558385849,0.00013334688264876604,-0.004684861749410629,0.005433951038867235,0.00686844764277339,-0.0038778530433773994,-0.004338430240750313,-1.1500277154591934,-3.3603123613332735,3.502104999687959,-0.011500277154591934,-0.03360312361333274,0.03502104999687959 +karman_re200,sr,24,9.6,0.9728437662124634,-0.277106910943985,0.9003826975822449,-0.4704355299472809,1.1166505813598633,-0.32697147130966187,0.002469285624101758,-0.00296906940639019,0.006383380386978388,0.006816445384174585,-0.006628221832215786,-0.00200396659784019,-1.7757211551306964,-1.7768533414890695,5.085564019532162,-0.017757211551306964,-0.017768533414890694,0.05085564019532163 +karman_re200,sr,25,10.0,1.035967469215393,-0.3208758234977722,0.9339990019798279,-0.5049284100532532,1.0592210292816162,-0.3888676166534424,0.0033615222200751305,-0.00042328465497121215,0.005594730842858553,0.006177229341119528,-0.009270119480788708,-0.0014888332225382328,-2.481256813255364,-0.2843726280257801,6.578044732995453,-0.024812568132553642,-0.0028437262802578013,0.06578044732995453 +karman_re200,sr,26,10.4,1.0982823371887207,-0.3207554519176483,0.9511874318122864,-0.5096834301948547,1.0091445446014404,-0.36906278133392334,0.002796030370518565,0.0025481104385107756,0.0035944334231317043,0.0056784809567034245,-0.009167472831904888,-0.00344067276455462,-2.8346632891345194,-0.3655091544833584,6.496908206537874,-0.028346632891345196,-0.003655091544833584,0.06496908206537874 +karman_re200,sr,27,10.8,1.1622849702835083,-0.2819976210594177,0.9551045298576355,-0.49101969599723816,0.9643440246582031,-0.3022429049015045,0.0008134596282616258,0.004199750255793333,0.0023638904094696045,0.005380192305892706,-0.006116594187915325,-0.005997056141495705,-2.4336408623623664,-1.967926282758254,4.894491078262979,-0.024336408623623663,-0.01967926282758254,0.04894491078262979 +karman_re200,sr,28,11.2,1.219591498374939,-0.2136930674314499,0.9446563720703125,-0.4039857089519501,0.9249096512794495,-0.1987316906452179,-0.0014401182997971773,0.005026441067457199,0.0010033119469881058,0.005971530452370644,-0.00162892893422395,-0.007454189471900463,-1.6171920899893375,-3.834570325004879,3.0278470360163534,-0.016171920899893374,-0.03834570325004879,0.030278470360163536 +karman_re200,sr,29,11.6,1.2738767862319946,-0.14131665229797363,0.8667047023773193,-0.22368505597114563,0.8963532447814941,-0.05666128545999527,-0.002557955915108323,0.0052815587259829044,-0.0005381674272939563,0.006845722906291485,0.0018332089530304074,-0.006966239772737026,-0.5019570619060322,-4.400705911219876,2.4617114498013564,-0.005019570619060322,-0.04400705911219876,0.024617114498013563 +karman_re200,sr,30,12.0,1.3181096315383911,-0.09702491760253906,0.8196156024932861,0.14319980144500732,0.8736388683319092,0.11551113426685333,-0.002017482416704297,0.005080465227365494,-0.001864162739366293,0.006532360799610615,0.003684377297759056,-0.006623581517487764,0.45221131889452076,-3.5100135619659367,3.352403799055295,0.004522113188945208,-0.03510013561965937,0.03352403799055295 +karman_re200,sr,31,12.4,1.234991192817688,0.005895944777876139,0.8546782732009888,0.39401867985725403,0.8996490240097046,0.2288101762533188,-0.00012849539052695036,0.004449066706001759,-0.0036839761305600405,0.004632575903087854,0.0052126022055745125,-0.007069366984069347,1.058082820148653,-3.4908570772089025,3.3715602838123298,0.01058082820148653,-0.034908570772089025,0.0337156028381233 +karman_re200,sr,32,12.8,1.0864986181259155,0.23501090705394745,0.8895165324211121,0.500540554523468,0.9586565494537354,0.2935500144958496,0.002060440368950367,0.002660344587638974,-0.00624508922919631,0.002469930797815323,0.006197922397404909,-0.006959063000977039,1.6965393837993492,-5.02460417718912,1.8378131838321123,0.016965393837993493,-0.0502460417718912,0.018378131838321123 +karman_re200,sr,33,13.2,1.0111894607543945,0.3549853265285492,0.9149802923202515,0.5320210456848145,1.0231305360794067,0.33862030506134033,0.002882373286411166,0.00013105900143273175,-0.008509529754519463,0.0019523603841662407,0.005411216523498297,-0.006182302720844746,2.372829022576135,-6.3666113468857946,0.49580601413543673,0.02372829022576135,-0.06366611346885795,0.004958060141354368 +karman_re200,sr,34,13.6,0.9585633873939514,0.36224520206451416,0.9307906627655029,0.5392858982086182,1.0902857780456543,0.33860766887664795,0.0022733118385076523,-0.0026950950268656015,-0.008205309510231018,0.0035131799522787333,0.003460911801084876,-0.0056662545539438725,2.654626691321492,-6.197129453562094,0.6652879074591382,0.02654626691321492,-0.06197129453562094,0.006652879074591382 +karman_re200,sr,35,14.0,0.9089023470878601,0.31284499168395996,0.9384575486183167,0.5260884761810303,1.1564791202545166,0.3010042905807495,0.0004571934696286917,-0.004305331036448479,-0.005579376593232155,0.005475508980453014,0.002094101859256625,-0.005424965173006058,2.2246984365189277,-4.839084555090835,2.023332805930397,0.02224698436518928,-0.048390845550908355,0.02023332805930397 +karman_re200,sr,36,14.4,0.8623908758163452,0.22451400756835938,0.9550034403800964,0.43396031856536865,1.20885169506073,0.23802663385868073,-0.0016855266876518726,-0.005133744329214096,-0.0017395621398463845,0.006944730877876282,0.0007993793697096407,-0.005950338207185268,1.4632994746426529,-3.398158545109379,3.4642588159118537,0.014632994746426528,-0.03398158545109379,0.03464258815911854 +karman_re200,sr,37,14.8,0.8386271595954895,0.10393214970827103,0.9035478234291077,0.3189420998096466,1.255265712738037,0.20235897600650787,-0.0026006423868238926,-0.005346554331481457,0.0016329616773873568,0.006911387667059898,-0.0006702143000438809,-0.006552532315254211,0.4841652713414182,-2.780984368801883,4.08143299221935,0.004841652713414182,-0.02780984368801883,0.0408143299221935 +karman_re200,sr,38,15.2,0.8401508331298828,-0.037613943219184875,0.8191074132919312,-0.041056886315345764,1.2773737907409668,0.2335783988237381,-0.0018475617980584502,-0.005196278914809227,0.0037383907474577427,0.006671837996691465,-0.002141692442819476,-0.006128885317593813,-0.43920579417169303,-3.1965564339602666,3.6658609270609652,-0.0043920579417169306,-0.03196556433960267,0.036658609270609654 +karman_re200,sr,39,15.6,0.862506628036499,-0.1771361380815506,0.8283946514129639,-0.3716527819633484,1.171791434288025,-0.05312895402312279,0.00011703035852406174,-0.004479644354432821,0.005290283355861902,0.006847327575087547,-0.0040452741086483,-0.004433426074683666,-1.121306679423471,-3.076176868166955,3.786240492854277,-0.01121306679423471,-0.030761768681669552,0.03786240492854277 +karman_re200,sr,40,16.0,0.9219353199005127,-0.2603982388973236,0.8726831674575806,-0.5145738124847412,1.1232495307922363,-0.34003394842147827,0.002239538822323084,-0.0024837455712258816,0.006019049324095249,0.006684564985334873,-0.006441716570407152,-0.002511591650545597,-1.7802508233907168,-1.8527804721227998,5.009636888898433,-0.01780250823390717,-0.018527804721228,0.050096368888984326 +karman_re200,sr,41,16.4,0.9915278553962708,-0.3101780116558075,0.9163368940353394,-0.5611602663993835,1.071282148361206,-0.43948879837989807,0.0028825474437326193,0.00020385101379361004,0.005181456916034222,0.006136734038591385,-0.008392575196921825,-0.002080142730847001,-2.376214685421652,-0.7025394189937275,6.159877942027505,-0.02376214685421652,-0.007025394189937275,0.06159877942027505 +karman_re200,sr,42,16.8,1.0614134073257446,-0.3132155239582062,0.9548328518867493,-0.5626580715179443,1.0155447721481323,-0.42952287197113037,0.00202129571698606,0.0029515153728425503,0.0033912283834069967,0.00575760193169117,-0.007980944588780403,-0.003619927680119872,-2.5885097850543715,-0.7786405666197909,6.083776794401441,-0.025885097850543715,-0.007786405666197909,0.06083776794401441 +karman_re200,sr,43,17.2,1.1259846687316895,-0.27516594529151917,0.9896486401557922,-0.5341711640357971,0.9593921899795532,-0.3619326651096344,0.00010305845353286713,0.004513096995651722,0.002031262032687664,0.005609115585684776,-0.005265526939183474,-0.005668063182383776,-2.168624677684469,-2.033402954610076,4.829014406411156,-0.02168624677684469,-0.020334029546100762,0.04829014406411156 +karman_re200,sr,44,17.6,1.178817868232727,-0.215703085064888,1.0272098779678345,-0.43685123324394226,0.9062389135360718,-0.2520381808280945,-0.0018979221349582076,0.005191656295210123,0.0007167267613112926,0.006107863038778305,-0.0015566471265628934,-0.007039500866085291,-1.3914664040861788,-3.4697539771728043,3.392663383848428,-0.013914664040861788,-0.03469753977172804,0.03392663383848428 +karman_re200,sr,45,18.0,1.2273752689361572,-0.17513076961040497,0.9929656386375427,-0.32908549904823303,0.872951328754425,-0.10067471861839294,-0.0026497908402234316,0.005283019971102476,-0.0007357880240306258,0.0065916432067751884,0.001653909683227539,-0.006982170511037111,-0.43352266333838196,-4.040398171621352,2.82201918939988,-0.0043352266333838195,-0.040403981716213525,0.028220191893998797 +karman_re200,sr,46,18.4,1.278517246246338,-0.21653161942958832,0.9194663763046265,0.0550711490213871,0.8606850504875183,0.07917498797178268,-0.0018104375340044498,0.005083514377474785,-0.0022393343970179558,0.006068977061659098,0.0037154839374125004,-0.006758288014680147,0.45570511746878956,-3.6865709283444796,3.175846432676753,0.0045570511746878956,-0.0368657092834448,0.03175846432676753 +karman_re200,sr,47,18.8,1.1948151588439941,0.022140569984912872,0.9059164524078369,0.36890387535095215,0.8847918510437012,0.22073686122894287,0.00017132205539382994,0.004252887796610594,-0.00407519331201911,0.004365157335996628,0.005258150864392519,-0.006894517689943314,1.135558351315676,-3.8819428353288927,2.9804745256923395,0.011355583513156759,-0.03881942835328893,0.029804745256923396 +karman_re200,sr,48,19.2,1.1211838722229004,0.31286343932151794,0.923794686794281,0.5004551410675049,0.9502171874046326,0.2897476851940155,0.0021747564896941185,0.002161056501790881,-0.006360913626849651,0.0025407790672034025,0.005834253970533609,-0.0066537712700665,1.7798287588300452,-5.0851343817785635,1.7772829792426688,0.017798287588300453,-0.05085134381778564,0.017772829792426687 +karman_re200,sr,49,19.6,1.0674583911895752,0.38976627588272095,0.9477990865707397,0.5306916236877441,1.019394040107727,0.32890042662620544,0.002675546333193779,-0.0005175723345018923,-0.00805313978344202,0.0022555619943886995,0.0048993490636348724,-0.0060521261766552925,2.3255662277441083,-6.120656826092381,0.7417605349288521,0.023255662277441084,-0.061206568260923806,0.007417605349288521 +karman_re200,sr,50,20.0,1.011772632598877,0.3665264844894409,0.9658117890357971,0.5253384113311768,1.085774302482605,0.32077446579933167,0.0017102973069995642,-0.003144614165648818,-0.00744529627263546,0.0037252074107527733,0.0031166619155555964,-0.005652559455484152,2.4699841463808623,-5.913747425045869,0.9486699359753636,0.024699841463808624,-0.059137474250458684,0.009486699359753636 +karman_re200,sr,51,20.4,0.9598522782325745,0.29657790064811707,0.978881299495697,0.49470099806785583,1.1477138996124268,0.27636653184890747,-0.00018694876052904874,-0.004605175461620092,-0.004784282762557268,0.00558844581246376,0.001769326045177877,-0.005549397319555283,2.014120188604288,-4.691486630704086,2.1709307303171466,0.02014120188604288,-0.04691486630704086,0.021709307303171468 +karman_re200,sr,52,20.8,0.914746105670929,0.19248971343040466,1.0052624940872192,0.37154412269592285,1.1948704719543457,0.2172679901123047,-0.0020513252820819616,-0.00523718073964119,-0.0012800897238776088,0.00683286739513278,0.0004700022691395134,-0.006028789095580578,1.2497451298976359,-3.405675226601473,3.4567421344197586,0.012497451298976359,-0.034056752266014734,0.03456742134419759 +karman_re200,sr,53,21.2,0.8862857818603516,0.05439414456486702,0.9749113321304321,0.21295610070228577,1.2421711683273315,0.21037046611309052,-0.002591769676655531,-0.00531885726377368,0.0017944056307896972,0.006893120240420103,-0.0009566075168550014,-0.006374920718371868,0.3337350472558733,-2.905429202949766,3.9569881580714665,0.003337350472558733,-0.029054292029497664,0.039569881580714665 +karman_re200,sr,54,21.6,0.8742740154266357,-0.10557172447443008,0.893251895904541,-0.08379286527633667,1.2804468870162964,0.2505823075771332,-0.0015464858151972294,-0.005133498460054398,0.0038788272067904472,0.006742477882653475,-0.002518682973459363,-0.00574185885488987,-0.5246064244016856,-3.0923627321414866,3.770054628879746,-0.005246064244016856,-0.030923627321414866,0.03770054628879746 +karman_re200,sr,55,22.0,0.9037167429924011,-0.21358007192611694,0.8719678521156311,-0.3486032783985138,1.2023509740829468,-0.12296387553215027,0.0005194730474613607,-0.004154705908149481,0.0053297365084290504,0.006794646382331848,-0.004437592811882496,-0.004051166120916605,-1.2199777902216322,-2.776913010613809,4.085504350407423,-0.012199777902216323,-0.02776913010613809,0.040855043504074234 +karman_re200,sr,56,22.4,0.9633790850639343,-0.27602851390838623,0.8967674970626831,-0.4768008887767792,1.1478121280670166,-0.3571641445159912,0.0023879422806203365,-0.0018802800914272666,0.005691381171345711,0.006522912532091141,-0.006681349128484726,-0.0023850672878324986,-1.8625878669716072,-1.6372719216791298,5.225145439342103,-0.018625878669716073,-0.016372719216791298,0.05225145439342103 +karman_re200,sr,57,22.8,1.0265735387802124,-0.31144240498542786,0.9317228198051453,-0.5121365189552307,1.0846763849258423,-0.4183574616909027,0.0026553121861070395,0.0008946263114921749,0.004626372829079628,0.00602986104786396,-0.00814651045948267,-0.002368914894759655,-2.3594266745826356,-0.7255093574900067,6.136908003531225,-0.023594266745826355,-0.007255093574900067,0.06136908003531225 +karman_re200,sr,58,23.2,1.088704228401184,-0.30020177364349365,0.9590391516685486,-0.5086391568183899,1.0276319980621338,-0.38052985072135925,0.0015295852208510041,0.0034097495954483747,0.0029549410101026297,0.005683412775397301,-0.007227801717817783,-0.004021598491817713,-2.4357341356400273,-1.0373493302090973,5.825068030812135,-0.024357341356400275,-0.010373493302090973,0.058250680308121354 +karman_re200,sr,59,23.6,1.147620439529419,-0.2555975615978241,0.9797703623771667,-0.4750775098800659,0.9768714308738708,-0.29832348227500916,-0.0004877498431596905,0.0047144703567028046,0.0016515874303877354,0.005656948778778315,-0.004362788982689381,-0.005991705227643251,-1.9418054245470007,-2.344563454156129,4.517853906865103,-0.019418054245470006,-0.023445634541561292,0.045178539068651026 +karman_re200,sr,60,24.0,1.1932185888290405,-0.19709599018096924,1.0079214572906494,-0.3512175381183624,0.9320431351661682,-0.18348389863967896,-0.0022090168204158545,0.005238786339759827,0.0003155995800625533,0.006189039442688227,-0.0007703391602262855,-0.007040228229016066,-1.1469158218206095,-3.6501028738899826,3.21231448713125,-0.011469158218206096,-0.03650102873889983,0.0321231448713125 +karman_re200,sr,61,24.4,1.2434544563293457,-0.1884055882692337,0.9724077582359314,-0.1845802664756775,0.8972318768501282,-0.03236225247383118,-0.002560109831392765,0.005241056904196739,-0.001148451934568584,0.0064472914673388,0.002119890647009015,-0.006921823136508465,-0.2070838665929108,-3.987793276352019,2.8746240846692133,-0.002070838665929108,-0.03987793276352019,0.028746240846692132 +karman_re200,sr,62,24.8,1.2924809455871582,-0.22522501647472382,0.8958247900009155,0.11085325479507446,0.8820464611053467,0.12777473032474518,-0.001379363820888102,0.004989644978195429,-0.002695124363526702,0.0056349122896790504,0.004064076114445925,-0.0067713153548538685,0.6232589316809195,-3.7415006175533794,3.120916743467853,0.006232589316809195,-0.037415006175533796,0.03120916743467853 +karman_re200,sr,63,25.2,1.211676001548767,0.11880459636449814,0.8778267502784729,0.3532625436782837,0.9174104928970337,0.22248035669326782,0.0007042072247713804,0.0038776015862822533,-0.004636143799871206,0.0038185527082532644,0.005406537093222141,-0.006823852192610502,1.2889505808430073,-4.174292295923339,2.6881250650978936,0.012889505808430074,-0.04174292295923339,0.026881250650978936 +karman_re200,sr,64,25.6,1.1442772150039673,0.33737754821777344,0.8979856371879578,0.46764546632766724,0.9750916361808777,0.28305792808532715,0.002469878876581788,0.0015518825966864824,-0.006845193915069103,0.0022404759656637907,0.005616439506411552,-0.006474171299487352,1.9150962325438017,-5.3963466449093875,1.4660707161118447,0.019150962325438017,-0.053963466449093875,0.014660707161118447 +karman_re200,sr,65,26.0,1.0783946514129639,0.38989484310150146,0.9275927543640137,0.49619060754776,1.0375415086746216,0.3134848475456238,0.002563141519203782,-0.0011844807304441929,-0.008111228235065937,0.0024588496889919043,0.004388729576021433,-0.0059149181470274925,2.3763801191007037,-6.199583504217751,0.6628338568034815,0.023763801191007038,-0.06199583504217751,0.0066283385680348155 +karman_re200,sr,66,26.4,1.02130925655365,0.34955745935440063,0.9458644390106201,0.49053317308425903,1.0995416641235352,0.2982434928417206,0.0013455755542963743,-0.0035915172193199396,-0.006903500761836767,0.00417430279776454,0.0027037071995437145,-0.005570867098867893,2.383688416051654,-5.691100371770607,1.1713169892506254,0.02383688416051654,-0.05691100371770607,0.011713169892506255 +karman_re200,sr,67,26.8,0.972471296787262,0.2686742842197418,0.951632022857666,0.4559873342514038,1.1588037014007568,0.25154200196266174,-0.0007103885873220861,-0.004781490657478571,-0.003950406331568956,0.006057571619749069,0.0014343303628265858,-0.005588163621723652,1.8320534096386487,-4.344409358881347,2.5180080021398856,0.01832053409638649,-0.043444093588813466,0.025180080021398855 +karman_re200,sr,68,27.2,0.930469810962677,0.15777193009853363,0.9625545740127563,0.32398682832717896,1.2013771533966064,0.19494619965553284,-0.002317312639206648,-0.005303464364260435,-0.0003730921889655292,0.006964747793972492,8.902326226234436e-05,-0.006142240017652512,1.0268462242755654,-3.1242670653692346,3.7381502956519976,0.010268462242755653,-0.031242670653692347,0.03738150295651998 +karman_re200,sr,69,27.6,0.8972750902175903,0.01351335272192955,0.936105489730835,0.1255693882703781,1.2512226104736328,0.21798132359981537,-0.0024463164154440165,-0.0052739642560482025,0.002425407525151968,0.006802686490118504,-0.0013526821276172996,-0.006304655224084854,0.08812343726418884,-2.8933783359234098,3.9690390250978225,0.0008812343726418884,-0.0289337833592341,0.03969039025097822 +karman_re200,sr,70,28.0,0.8875553011894226,-0.13064248859882355,0.8734050989151001,-0.14468830823898315,1.2662174701690674,0.19687756896018982,-0.0011035880306735635,-0.004995001945644617,0.004302742891013622,0.006720514502376318,-0.0029571973718702793,-0.0053726439364254475,-0.7204655148613902,-3.1055505710827536,3.7568667899384787,-0.007204655148613902,-0.031055505710827536,0.03756866789938479 +karman_re200,sr,71,28.4,0.9258837699890137,-0.21597328782081604,0.8626790642738342,-0.357273131608963,1.1987146139144897,-0.17865566909313202,0.0010652396595105529,-0.0037060759495943785,0.005552906543016434,0.006762509234249592,-0.004978697746992111,-0.0035147860180586576,-1.3844395131088811,-2.549848392115858,4.312568968905374,-0.013844395131088812,-0.02549848392115858,0.043125689689053746 +karman_re200,sr,72,28.8,0.9808944463729858,-0.27598005533218384,0.8878152370452881,-0.46301719546318054,1.1377911567687988,-0.36751267313957214,0.0026626167818903923,-0.0012514793779700994,0.0055558825843036175,0.006393477786332369,-0.007219234481453896,-0.0020991747733205557,-2.008331830229551,-1.3075520455509593,5.554865315470273,-0.02008331830229551,-0.013075520455509594,0.05554865315470273 +karman_re200,sr,73,29.2,1.041236400604248,-0.3025115728378296,0.9216873049736023,-0.49145328998565674,1.0757042169570923,-0.406933069229126,0.0025251845363527536,0.0015361948171630502,0.00420442083850503,0.005889349617063999,-0.008261843584477901,-0.002606932306662202,-2.436160107383672,-0.6232030473194783,6.239214313701754,-0.024361601073836718,-0.006232030473194783,0.06239214313701754 +karman_re200,sr,74,29.6,1.1008667945861816,-0.28464189171791077,0.9439218044281006,-0.48513877391815186,1.021021842956543,-0.35730472207069397,0.0011452927719801664,0.003812647657468915,0.002577607985585928,0.005578668788075447,-0.0067389970645308495,-0.00448907446116209,-2.377263231252162,-1.284865893295895,5.577551467725337,-0.02377263231252162,-0.01284865893295895,0.05577551467725338 +karman_re200,sr,75,30.0,1.1558772325515747,-0.23691007494926453,0.9541932940483093,-0.4440957307815552,0.972068727016449,-0.26826798915863037,-0.0009485941845923662,0.004870065953582525,0.0013579130172729492,0.005688975565135479,-0.0035372236743569374,-0.006390209775418043,-1.7766366791409065,-2.718732872772967,4.143684488248265,-0.017766366791409065,-0.02718732872772967,0.04143684488248266 +karman_re200,sr,76,30.4,1.2002774477005005,-0.18166615068912506,0.9721213579177856,-0.30719274282455444,0.9323909282684326,-0.14888107776641846,-0.0024202000349760056,0.005268821492791176,-3.70495326933451e-05,0.006293596234172583,7.004345388850197e-05,-0.00709708733484149,-0.933481600752102,-3.889739344670426,2.972678016350806,-0.00933481600752102,-0.03889739344670426,0.029726780163508063 +karman_re200,sr,77,30.8,1.2533619403839111,-0.20088350772857666,0.9331559538841248,-0.10958420485258102,0.8971814513206482,0.005014427471905947,-0.002387436106801033,0.005219887010753155,-0.0014925635186955333,0.006385064218193293,0.0027027565520256758,-0.0068337093107402325,0.02042217385158659,-3.9566041940691354,2.905813166952097,0.00020422173851586593,-0.039566041940691354,0.029058131669520967 +karman_re200,sr,78,31.2,1.2680851221084595,-0.1779269427061081,0.8705865740776062,0.16829177737236023,0.8901165723800659,0.14641287922859192,-0.000925825908780098,0.004859230946749449,-0.003120502457022667,0.00527367927134037,0.004456864669919014,-0.006771677639335394,0.8000295685267774,-3.724573620841598,3.137843740179634,0.008000295685267774,-0.03724573620841598,0.03137843740179634 +karman_re200,sr,79,31.6,1.1889992952346802,0.17977367341518402,0.8644694685935974,0.3719358444213867,0.9320446252822876,0.22694283723831177,0.0012551764957606792,0.0034186202101409435,-0.005174810998141766,0.0033316814806312323,0.005608305800706148,-0.006790065206587315,1.4449714565148812,-4.410736171490114,2.4516811895311186,0.014449714565148812,-0.044107361714901136,0.024516811895311186 +karman_re200,sr,80,32.0,1.124626874923706,0.35808318853378296,0.8884919881820679,0.46703779697418213,0.9875328540802002,0.2852504253387451,0.0026925199199467897,0.0009325366700068116,-0.007370498031377792,0.0020484633278101683,0.005461699329316616,-0.006328724790364504,2.0562941884129295,-5.692614304379321,1.169803056641912,0.020562941884129295,-0.05692614304379321,0.01169803056641912 +karman_re200,sr,81,32.4,1.0616745948791504,0.3905511498451233,0.9180216789245605,0.49002283811569214,1.0482172966003418,0.3067823648452759,0.002378667239099741,-0.0018277973867952824,-0.008147303014993668,0.0027957421261817217,0.0039963205344974995,-0.005819841753691435,2.4470450751477393,-6.2300326717300845,0.6323846892911478,0.024470450751477392,-0.06230032671730085,0.0063238468929114776 +karman_re200,sr,82,32.8,1.0075507164001465,0.3402657210826874,0.9344397783279419,0.4821453094482422,1.1092015504837036,0.28583890199661255,0.0009307967848144472,-0.003964355681091547,-0.006354999728500843,0.004687064792960882,0.002401176141574979,-0.005532835144549608,2.3157369985792053,-5.408639887309142,1.4537774737120903,0.023157369985792053,-0.05408639887309142,0.014537774737120904 +karman_re200,sr,83,33.2,0.9596325159072876,0.2525518536567688,0.9372197985649109,0.43612179160118103,1.1645231246948242,0.23552276194095612,-0.00116463762242347,-0.004942584782838821,-0.0031164775136858225,0.0064523667097091675,0.0011596840340644121,-0.005702821537852287,1.6697652348792282,-3.9842502112202847,2.878167149800948,0.016697652348792284,-0.039842502112202846,0.02878167149800948 +karman_re200,sr,84,33.6,0.922625720500946,0.1359294205904007,0.9493907690048218,0.2890315055847168,1.207543134689331,0.18603138625621796,-0.002496596658602357,-0.005289052147418261,0.00039989399374462664,0.007012839429080486,-0.00023682488244958222,-0.00628078356385231,0.8154456919443838,-2.9410879185317853,3.921329442489447,0.008154456919443838,-0.029410879185317852,0.03921329442489447 +karman_re200,sr,85,34.0,0.8914631605148315,-0.012963121756911278,0.9088037610054016,0.07805771380662918,1.2581148147583008,0.2349618673324585,-0.002268349751830101,-0.005227965302765369,0.0029171090573072433,0.006754913367331028,-0.0016989876748993993,-0.006234239786863327,-0.12141956256199035,-2.9525240168660676,3.909893344155164,-0.0012141956256199035,-0.029525240168660677,0.039098933441551645 +karman_re200,sr,86,34.4,0.8893305063247681,-0.14753510057926178,0.8542088866233826,-0.19412802159786224,1.239518642425537,0.1260170191526413,-0.0006428310880437493,-0.004807265009731054,0.004657484125345945,0.006745247635990381,-0.0033612269908189774,-0.005005888175219297,-0.8802698756450993,-3.090744967871556,3.771672393149676,-0.008802698756450993,-0.030907449678715563,0.03771672393149676 +karman_re200,sr,87,34.8,0.9342823028564453,-0.22635704278945923,0.8575313091278076,-0.38569092750549316,1.1797375679016113,-0.22947393357753754,0.001540742814540863,-0.0032054875046014786,0.005689343437552452,0.006727518513798714,-0.005494681186974049,-0.0030850551556795835,-1.5291338649409585,-2.2938573689728647,4.5685599920483675,-0.015291338649409585,-0.02293857368972865,0.045685599920483676 +karman_re200,sr,88,35.2,0.9905807375907898,-0.28305983543395996,0.8874555826187134,-0.47445470094680786,1.1192755699157715,-0.3861077129840851,0.002787364646792412,-0.0006300008972175419,0.005361142102628946,0.006268960423767567,-0.0076282089576125145,-0.0020209061913192272,-2.132745593643022,-1.0494350615322552,5.8129822994889775,-0.021327455936430224,-0.010494350615322553,0.05812982299488978 +karman_re200,sr,89,35.6,1.0501816272735596,-0.30036503076553345,0.9194552898406982,-0.49485576152801514,1.0587767362594604,-0.40442875027656555,0.0022876530420035124,0.0021472948137670755,0.003791567636653781,0.005799881648272276,-0.008145091123878956,-0.00298865744844079,-2.4770136125469375,-0.6534447037552158,6.208972657266017,-0.024770136125469376,-0.006534447037552158,0.06208972657266017 +karman_re200,sr,90,36.0,1.110693335533142,-0.27598708868026733,0.9400015473365784,-0.48446139693260193,1.0061005353927612,-0.34559303522109985,0.0007062949007377028,0.00413349736481905,0.002279233420267701,0.005536193959414959,-0.006086543668061495,-0.0049598743207752705,-2.2762696997749488,-1.5929747772738616,5.26944258374737,-0.02276269699774949,-0.015929747772738617,0.052694425837473705 +karman_re200,sr,91,36.4,1.1639862060546875,-0.22399111092090607,0.951102077960968,-0.4277404844760895,0.9582788348197937,-0.25087201595306396,-0.001382959308102727,0.005011190660297871,0.001039358670823276,0.005794706288725138,-0.0026908249128609896,-0.006646377965807915,-1.5953178593157136,-3.0543585171859924,3.8080588438352403,-0.015953178593157136,-0.030543585171859924,0.0380805884383524 +karman_re200,sr,92,36.8,1.2073041200637817,-0.1765718311071396,0.9667892456054688,-0.2768939435482025,0.9205017685890198,-0.12540531158447266,-0.0025591421872377396,0.005282280035316944,-0.00037470817915163934,0.0063765691593289375,0.0007725260220468044,-0.007047831546515226,-0.7113300326731862,-3.988109034219122,2.8743083268021103,-0.0071133003267318615,-0.03988109034219122,0.028743083268021104 +karman_re200,sr,93,37.2,1.263522982597351,-0.22547607123851776,0.9117178320884705,-0.06075797975063324,0.8892648816108704,0.032183967530727386,-0.00215892237611115,0.0051849158480763435,-0.0018445632886141539,0.006220604758709669,0.003152824705466628,-0.00677351513877511,0.21877264845401234,-3.8701410424927873,2.992276318528445,0.0021877264845401234,-0.038701410424927876,0.02992276318528445 +karman_re200,sr,94,37.6,1.241945743560791,-0.09990324079990387,0.8597903251647949,0.22066663205623627,0.8925901651382446,0.16380977630615234,-0.00043634496978484094,0.0046630362048745155,-0.003553922288119793,0.004848754499107599,0.004808194935321808,-0.006803525611758232,0.9529804861773152,-3.7927517428351147,3.0696656181861175,0.009529804861773152,-0.03792751742835115,0.030696656181861175 +karman_re200,sr,95,38.0,1.17351233959198,0.24147866666316986,0.8655232191085815,0.4034980833530426,0.9402655959129333,0.23905952274799347,0.0017178697744384408,0.002913400763645768,-0.00572590809315443,0.0029037666972726583,0.00571576040238142,-0.006716481875628233,1.5946199387572026,-4.709415709518698,2.1530016515025343,0.015946199387572028,-0.04709415709518698,0.021530016515025344 +karman_re200,sr,96,38.4,1.1100844144821167,0.3821055591106415,0.8939464092254639,0.4803609848022461,0.99739670753479,0.29242780804634094,0.0027721631340682507,0.00031792488880455494,-0.007773473858833313,0.0020277390722185373,0.005215771030634642,-0.006190887186676264,2.1818771763310014,-5.924308414305846,0.9381089467153858,0.021818771763310013,-0.05924308414305846,0.009381089467153858 +karman_re200,sr,97,38.8,1.0489903688430786,0.3896207809448242,0.9217787981033325,0.49419692158699036,1.0576311349868774,0.30368807911872864,0.0021527993958443403,-0.002430022694170475,-0.007966502569615841,0.0031775962561368942,0.003588148159906268,-0.0057308063842356205,2.4769933662351695,-6.153453319928239,0.7089640410929925,0.024769933662351695,-0.06153453319928239,0.007089640410929925 +karman_re200,sr,98,39.2,0.9974534511566162,0.32784929871559143,0.9377550482749939,0.4805058538913727,1.1196445226669312,0.27531349658966064,0.00046999414917081594,-0.004265623167157173,-0.005710338242352009,0.005155281629413366,0.002120144432410598,-0.005509912967681885,2.203422404438396,-5.100729531903355,1.7616878291178768,0.02203422404438396,-0.05100729531903356,0.017616878291178768 +karman_re200,sr,99,39.6,0.951184868812561,0.23249551653862,0.9442318677902222,0.41413187980651855,1.1723699569702148,0.22052837908267975,-0.0015813532518222928,-0.005077204201370478,-0.0022557585034519434,0.00672442140057683,0.0008667949005030096,-0.005844717845320702,1.4932395073660725,-3.663098883075922,3.1993184779453108,0.014932395073660724,-0.03663098883075922,0.03199318477945311 +karman_re200,sr,100,40.0,0.9156513810157776,0.10691864043474197,0.9546988010406494,0.2518966495990753,1.2155787944793701,0.1815178096294403,-0.0026059644296765327,-0.0053042201325297356,0.0010856189765036106,0.006995887029916048,-0.0005666731158271432,-0.006385422311723232,0.5954575599373642,-2.8559785369430353,4.006438824078197,0.005954575599373642,-0.02855978536943035,0.04006438824078197 +karman_re200,sr,101,40.4,0.886222243309021,-0.04828803241252899,0.8974080085754395,0.02230929769575596,1.2657355070114136,0.24778245389461517,-0.002001164946705103,-0.005179153755307198,0.0033692410215735435,0.0067245508544147015,-0.002041179221123457,-0.006073764991015196,-0.3150850250813729,-3.0320313606158984,3.8303860004053334,-0.0031508502508137293,-0.030320313606158986,0.038303860004053336 +karman_re200,sr,102,40.8,0.8958332538604736,-0.1706376075744629,0.8529030084609985,-0.24727602303028107,1.2218801975250244,0.04107516631484032,-0.00015673181042075157,-0.004560912027955055,0.004975495859980583,0.006774127017706633,-0.003809820394963026,-0.004581899847835302,-1.0317439669315436,-3.0056657309586434,3.856751630062589,-0.010317439669315436,-0.030056657309586433,0.03856751630062589 +karman_re200,sr,103,41.2,0.9451705813407898,-0.2426808774471283,0.8639224171638489,-0.4152144491672516,1.1652858257293701,-0.2756115198135376,0.0019579418003559113,-0.002657761564478278,0.005757545121014118,0.0066561466082930565,-0.006017623469233513,-0.002695574425160885,-1.6753221814624415,-1.9977312981318645,4.864686062889367,-0.016753221814624415,-0.019977312981318645,0.04864686062889367 +karman_re200,sr,104,41.6,1.0034527778625488,-0.29281508922576904,0.8960725665092468,-0.4839717745780945,1.1033179759979248,-0.39869222044944763,0.002800491638481617,2.307237764398451e-06,0.005079783033579588,0.006139528937637806,-0.007963431999087334,-0.0020627134945243597,-2.2454742159795256,-0.8414265977843859,6.0209907632368465,-0.022454742159795257,-0.008414265977843859,0.06020990763236846 +karman_re200,sr,105,42.0,1.0637551546096802,-0.29918721318244934,0.9253373742103577,-0.4949697256088257,1.0449391603469849,-0.3942258358001709,0.002026424277573824,0.0027177741285413504,0.0034036647994071245,0.00571740698069334,-0.007855944335460663,-0.003411600599065423,-2.4872852413838933,-0.7654161886775093,6.097001172343723,-0.024872852413838933,-0.007654161886775093,0.06097001172343723 +karman_re200,sr,106,42.4,1.1240442991256714,-0.26747292280197144,0.9419146180152893,-0.4787004888057709,0.9937217831611633,-0.3258446455001831,0.00021374777134042233,0.004395465366542339,0.001992821926251054,0.005527782253921032,-0.005391594022512436,-0.005412217229604721,-2.147159236029371,-1.9234628858983687,4.938954475122864,-0.02147159236029371,-0.019234628858983686,0.049389544751228635 +karman_re200,sr,107,42.8,1.1746042966842651,-0.2114603966474533,0.9538739919662476,-0.3999212384223938,0.9479281902313232,-0.22489005327224731,-0.0017741858027875423,0.005125232506543398,0.0007144081755541265,0.005934033542871475,-0.0018353706691414118,-0.006852645426988602,-1.4081764932647722,-3.3556417635285563,3.5067755974926755,-0.014081764932647723,-0.033556417635285565,0.035067755974926756 +karman_re200,sr,108,43.2,1.2174924612045288,-0.1773342341184616,0.9588932991027832,-0.23644256591796875,0.9113155603408813,-0.09236335009336472,-0.0026050489395856857,0.005279601085931063,-0.0007092467858456075,0.006422501057386398,0.0014127945760264993,-0.006966718472540379,-0.4862319047351736,-4.031880625993128,2.830536735028105,-0.004862319047351736,-0.04031880625993128,0.028305367350281052 +karman_re200,sr,109,43.6,1.272592306137085,-0.24353677034378052,0.8946298956871033,0.004003112204372883,0.8848931193351746,0.06692355871200562,-0.0018563073826953769,0.005130136385560036,-0.0021987352520227432,0.005998856853693724,0.003576946211978793,-0.0067408145405352116,0.40466419880156357,-3.7870674922439123,3.07534986877732,0.004046641988015636,-0.037870674922439125,0.0307534986877732 +karman_re200,sr,110,44.0,1.2206822633743286,-0.006199277471750975,0.8561573028564453,0.27225589752197266,0.9007799625396729,0.183231920003891,7.547927089035511e-05,0.004389917943626642,-0.004009844269603491,0.004391683731228113,0.005118846893310547,-0.006816101726144552,1.101397717385343,-3.9163680551349875,2.946049305886245,0.011013977173853431,-0.039163680551349875,0.02946049305886245 +karman_re200,sr,111,44.4,1.1593691110610962,0.2892143428325653,0.8692531585693359,0.4290650188922882,0.9516095519065857,0.2526932656764984,0.0021161355543881655,0.0023577900137752295,-0.006259909365326166,0.0025470296386629343,0.005742358975112438,-0.006624722387641668,1.7408023057046136,-5.016513528889417,1.8459038321318146,0.017408023057046137,-0.05016513528889417,0.018459038321318146 +karman_re200,sr,112,44.8,1.0954152345657349,0.39582130312919617,0.9007724523544312,0.4873451292514801,1.0106205940246582,0.29870182275772095,0.0027533972170203924,-0.00032452470622956753,-0.008053522557020187,0.002126930980011821,0.004905069246888161,-0.006063381209969521,2.2887811656508505,-6.097574834659655,0.7648425263615768,0.022887811656508505,-0.06097574834659655,0.0076484252636157685 +karman_re200,sr,113,45.2,1.0367804765701294,0.3822522461414337,0.9267338514328003,0.4937288165092468,1.0711804628372192,0.29955312609672546,0.001853490131907165,-0.0029744869098067284,-0.007638765498995781,0.003599366173148155,0.0031939204782247543,-0.005652010906487703,2.471147954109069,-6.005217637727945,0.8571997232932875,0.024711479541090688,-0.06005217637727945,0.008571997232932876 +karman_re200,sr,114,45.6,0.9855861067771912,0.3111015558242798,0.9389889240264893,0.4740752875804901,1.1312512159347534,0.2642937898635864,-2.8731581551255658e-05,-0.004513763356953859,-0.004999190103262663,0.005595508962869644,0.0018482658779248595,-0.005520604085177183,2.0657468184190253,-4.773414378779472,2.0890029822417606,0.020657468184190255,-0.04773414378779472,0.020890029822417607 +karman_re200,sr,115,46.0,0.9421467781066895,0.2089117169380188,0.9499605298042297,0.38386303186416626,1.1813470125198364,0.2071150839328766,-0.0019447262166067958,-0.005181393586099148,-0.001421103603206575,0.0069102151319384575,0.0005512307398021221,-0.005991950165480375,1.305780527299271,-3.382229063125301,3.4801882978959306,0.01305780527299271,-0.03382229063125301,0.03480188297895931 +karman_re200,sr,116,46.4,0.9072510004043579,0.07456152886152267,0.9488261342048645,0.21084745228290558,1.225306749343872,0.18505984544754028,-0.00258925324305892,-0.00529042724519968,0.0017072668997570872,0.006927549373358488,-0.0008859866065904498,-0.0064177131280303,0.37611571151388573,-2.830763581326072,4.03165377969516,0.0037611571151388574,-0.02830763581326072,0.0403165377969516 +karman_re200,sr,117,46.8,0.8831741213798523,-0.08184576779603958,0.8834627270698547,-0.03983251750469208,1.270787000656128,0.25046050548553467,-0.0016749990172684193,-0.005113786552101374,0.0037679383531212807,0.0067191594280302525,-0.0024098646827042103,-0.005842100363224745,-0.4945223365060485,-3.0978314026267015,3.7645859583945307,-0.004945223365060485,-0.030978314026267016,0.037645859583945306 +karman_re200,sr,118,47.2,0.904846727848053,-0.1899394541978836,0.852504551410675,-0.2953396737575531,1.2069209814071655,-0.049814753234386444,0.0003544938226696104,-0.004238655790686607,0.005251601804047823,0.006795121356844902,-0.004276694264262915,-0.004137845244258642,-1.1780805788067659,-2.857707745166061,4.004709615855171,-0.011780805788067658,-0.028577077451660608,0.04004709615855172 +karman_re200,sr,119,47.6,0.9569839239120483,-0.2571522295475006,0.8699527978897095,-0.4392147958278656,1.1515167951583862,-0.31525900959968567,0.002316218800842762,-0.0020695708226412535,0.005728522315621376,0.00655255327001214,-0.006538553163409233,-0.002377448370680213,-1.8170052496174836,-1.6936400295613128,5.1687773314599195,-0.018170052496174836,-0.01693640029561313,0.05168777331459919 +karman_re200,sr,120,48.0,1.0168548822402954,-0.29919469356536865,0.9037460088729858,-0.4901265799999237,1.0889698266983032,-0.40514615178108215,0.002722810721024871,0.0006558048771694303,0.004736812319606543,0.006022942252457142,-0.008168196305632591,-0.0022379241418093443,-2.339278752785878,-0.7011456083508505,6.161271752670382,-0.02339278752785878,-0.007011456083508505,0.061612717526703824 +karman_re200,sr,121,48.4,1.0776548385620117,-0.29544001817703247,0.930275559425354,-0.49370625615119934,1.0323632955551147,-0.3816039264202118,0.0016877064481377602,0.0032306513749063015,0.003026583231985569,0.005644031800329685,-0.007434308063238859,-0.0038648589979857206,-2.4609298714387626,-0.9562198070600473,5.906197553961185,-0.024609298714387627,-0.009562198070600473,0.05906197553961185 +karman_re200,sr,122,48.8,1.1362638473510742,-0.25712448358535767,0.9427191019058228,-0.4703754782676697,0.9815099835395813,-0.30532488226890564,-0.0002915671793743968,0.0046222456730902195,0.0017182336887344718,0.00556963961571455,-0.004622855689376593,-0.005857961252331734,-1.9948471649947843,-2.267823787487332,4.5945935735339,-0.019948471649947844,-0.022678237874873323,0.045945935735339 +karman_re200,sr,123,49.2,1.1845881938934326,-0.19972720742225647,0.958197832107544,-0.3672936260700226,0.938718318939209,-0.19831804931163788,-0.002104120096191764,0.0052037667483091354,0.0003941924369428307,0.006084104999899864,-0.0009995297295972705,-0.006984946317970753,-1.2092185849095007,-3.6197395730300332,3.2426777879911985,-0.012092185849095008,-0.036197395730300334,0.03242677787991199 +karman_re200,sr,124,49.6,1.2306102514266968,-0.18626351654529572,0.9481849670410156,-0.19290122389793396,0.9037801623344421,-0.05809761956334114,-0.0025726384483277798,0.005262202117592096,-0.0010521349031478167,0.0064315334893763065,0.0019869201350957155,-0.006883525289595127,-0.2657768477129808,-4.0202606146870705,2.8421567463341617,-0.0026577684771298083,-0.040202606146870705,0.028421567463341617 +karman_re200,sr,125,50.0,1.273137092590332,-0.23953506350517273,0.8790901899337769,0.06938355416059494,0.8822141289710999,0.09868305176496506,-0.0014933212660253048,0.005047231912612915,-0.0025741790886968374,0.005712517071515322,0.003965056501328945,-0.006729441229254007,0.5795347792277352,-3.726762002510709,3.135655358510523,0.005795347792277352,-0.03726762002510709,0.03135655358510523 +karman_re200,sr,126,50.4,1.2055860757827759,0.08550715446472168,0.8566740155220032,0.3176911473274231,0.9116952419281006,0.20049455761909485,0.0005888964515179396,0.004038324113935232,-0.0045007746666669846,0.003930328413844109,0.005376492161303759,-0.0068271579220891,1.2470042188423358,-4.096166126411867,2.7662512346093653,0.01247004218842336,-0.04096166126411867,0.027662512346093654 +karman_re200,sr,127,50.8,1.1462502479553223,0.3273131251335144,0.8753559589385986,0.4497867226600647,0.96437668800354,0.2654654383659363,0.0024272147566080093,0.0017658021533861756,-0.00676523195579648,0.002261271933093667,0.00568516505882144,-0.0065065836533904076,1.8835524788092868,-5.325419115335345,1.5369982456858875,0.018835524788092868,-0.05325419115335345,0.015369982456858876 +karman_re200,sr,128,51.2,1.081711769104004,0.4015282094478607,0.907347559928894,0.49208083748817444,1.0238701105117798,0.30258119106292725,0.002635285025462508,-0.0009719689260236919,-0.008206594735383987,0.0023477328941226006,0.004525984637439251,-0.005950994323939085,2.374237384438592,-6.207179353545378,0.6552380074758548,0.02374237384438592,-0.06207179353545378,0.006552380074758548 +karman_re200,sr,129,51.6,1.0251144170761108,0.3703562617301941,0.9309991598129272,0.4920344948768616,1.0849343538284302,0.2938987612724304,0.0015109068481251597,-0.0034465696662664413,-0.007167967036366463,0.00404546782374382,0.002828842494636774,-0.005580758675932884,2.4280483515341396,-5.787348515572881,1.0750688454483512,0.024280483515341397,-0.057873485155728814,0.010750688454483513 +karman_re200,sr,130,52.0,0.9746478199958801,0.29125726222991943,0.9402956962585449,0.46400752663612366,1.143246054649353,0.25218552350997925,-0.0005211620591580868,-0.004708646330982447,-0.004237886518239975,0.005990118253976107,0.001564461155794561,-0.005566732957959175,1.9063487602646776,-4.435121387292366,2.4272959737288664,0.019063487602646777,-0.04435121387292366,0.024272959737288664 +karman_re200,sr,131,52.4,0.933565616607666,0.18228279054164886,0.9554192423820496,0.34860050678253174,1.1904140710830688,0.1953907012939453,-0.0022340165451169014,-0.005245840642601252,-0.0006095579010434449,0.007008769083768129,0.00023030278680380434,-0.006126610096544027,1.1064828494246912,-3.1543608910966996,3.708056469924532,0.011064828494246913,-0.031543608910967,0.037080564699245325 +karman_re200,sr,132,52.8,0.901272714138031,0.03976115956902504,0.9389047026634216,0.16466659307479858,1.2400712966918945,0.1987604945898056,-0.002513592131435871,-0.00527579290792346,0.002263039583340287,0.006859260611236095,-0.0012271127197891474,-0.006395919248461723,0.16015783596828884,-2.85437295234011,4.008044408681122,0.0016015783596828885,-0.0285437295234011,0.04008044408681122 +karman_re200,sr,133,53.2,0.8827787041664124,-0.1126173883676529,0.8709702491760254,-0.10500986874103546,1.2656041383743286,0.2240770161151886,-0.0012660661013796926,-0.005016503855586052,0.004160975571721792,0.0067296684719622135,-0.0027929930947721004,-0.005539541132748127,-0.665557095548463,-3.1282339829127417,3.73418337810849,-0.00665557095548463,-0.03128233982912742,0.0373418337810849 +karman_re200,sr,134,53.6,0.9160076379776001,-0.206898033618927,0.8550166487693787,-0.3379468619823456,1.1949015855789185,-0.13445042073726654,0.0008749232511036098,-0.003839887911453843,0.0054690046235919,0.006784123368561268,-0.004782936070114374,-0.0036817153450101614,-1.3260920401831104,-2.652995251555564,4.2094221094656685,-0.013260920401831106,-0.026529952515555642,0.042094221094656686 +karman_re200,sr,135,54.0,0.9704369306564331,-0.26993146538734436,0.8780233263969421,-0.45793020725250244,1.1385772228240967,-0.3485092520713806,0.002578533021733165,-0.0014640234876424074,0.005617076531052589,0.006432757247239351,-0.007034896407276392,-0.0021528289653360844,-1.9550011802408145,-1.4025723266732988,5.459845034347934,-0.019550011802408146,-0.014025723266732988,0.05459845034347934 +karman_re200,sr,136,54.4,1.0298434495925903,-0.30216944217681885,0.910646915435791,-0.4934913218021393,1.0752747058868408,-0.4060165286064148,0.0025739651173353195,0.0013048526598140597,0.004348100163042545,0.005916087422519922,-0.00824805535376072,-0.002504507079720497,-2.412677049721204,-0.6326025530846984,6.229814807936534,-0.02412677049721204,-0.0063260255308469834,0.06229814807936534 +karman_re200,sr,137,54.8,1.0916138887405396,-0.28904250264167786,0.9349801540374756,-0.49046990275382996,1.0210506916046143,-0.36599066853523254,0.001301273819990456,0.0036682626232504845,0.0026878630742430687,0.005587184336036444,-0.006909945514053106,-0.0043363915756344795,-2.40203290650764,-1.2004073626627214,5.662009998358511,-0.0240203290650764,-0.012004073626627214,0.05662009998358511 +karman_re200,sr,138,55.2,1.148808240890503,-0.24435974657535553,0.945152759552002,-0.45647549629211426,0.9715333580970764,-0.2821011543273926,-0.0007785380003042519,0.0048070368357002735,0.001441486761905253,0.005645138211548328,-0.0038175852969288826,-0.006242731120437384,-1.8302609894498914,-2.6133266851038455,4.249090675917387,-0.018302609894498913,-0.026133266851038454,0.04249090675917387 +karman_re200,sr,139,55.6,1.1935924291610718,-0.18853718042373657,0.9621435403823853,-0.32938915491104126,0.9303646683692932,-0.16823460161685944,-0.0023611404467374086,0.005255663767457008,5.8204986999044195e-05,0.006229659542441368,-0.00021609215764328837,-0.0070560891181230545,-1.0028825165077373,-3.8219692415215745,3.0404481194996578,-0.010028825165077374,-0.03821969241521574,0.03040448119499658 +karman_re200,sr,140,56.0,1.244031548500061,-0.2013772577047348,0.9335871338844299,-0.14055046439170837,0.8968722820281982,-0.020086895674467087,-0.002448827028274536,0.00523210596293211,-0.0013879328034818172,0.006379054393619299,0.002510094316676259,-0.006817068438977003,-0.05230729064221503,-3.9716034539857112,2.890813907035521,-0.0005230729064221503,-0.039716034539857115,0.02890813907035521 +karman_re200,sr,141,56.4,1.2631415128707886,-0.20067910850048065,0.8679368495941162,0.13609597086906433,0.8840482831001282,0.1287735402584076,-0.0010698322439566255,0.004919813945889473,-0.002974290633574128,0.005370135419070721,0.0043315161019563675,-0.006742569617927074,0.7433370761887165,-3.7176220758985323,3.1447952851227,0.007433370761887165,-0.03717622075898532,0.031447952851227 +karman_re200,sr,142,56.8,1.189691424369812,0.16106437146663666,0.8578630089759827,0.3566799461841583,0.922214150428772,0.21662399172782898,0.0010876746382564306,0.0035993107594549656,-0.004999649710953236,0.0034681232646107674,0.005561096593737602,-0.006791831459850073,1.3931860529920685,-4.32863090476813,2.5337864562531016,0.013931860529920686,-0.043286309047681305,0.025337864562531016 +karman_re200,sr,143,57.2,1.13101327419281,0.35620203614234924,0.8824465870857239,0.46507957577705383,0.9780929684638977,0.27752867341041565,0.0026449260767549276,0.0011634881375357509,-0.007226818241178989,0.0020883500110358,0.0055334181524813175,-0.0063745868392288685,2.0138890876114095,-5.604551201296037,1.257866159725196,0.020138890876114094,-0.05604551201296037,0.012578661597251961 +karman_re200,sr,144,57.6,1.0674238204956055,0.40035223960876465,0.9134053587913513,0.4939250648021698,1.0378589630126953,0.3042706549167633,0.0024678537156432867,-0.001609053579159081,-0.008196482434868813,0.0026633150409907103,0.004133596550673246,-0.005852339789271355,2.433322426950086,-6.233939908905267,0.6284774521159648,0.02433322426950086,-0.06233939908905267,0.006284774521159648 +karman_re200,sr,145,58.0,1.0130987167358398,0.3545686602592468,0.9342126250267029,0.4882551431655884,1.099480390548706,0.2868543565273285,0.0010913786245509982,-0.0038385572843253613,-0.006603683810681105,0.004508456215262413,0.002502771094441414,-0.005529239773750305,2.3512932516275273,-5.5164829218542755,1.3459344391669568,0.023512932516275273,-0.05516482921854276,0.013459344391669568 +karman_re200,sr,146,58.4,0.9640593528747559,0.2683519124984741,0.9414002299308777,0.44787129759788513,1.1557697057724,0.2390516996383667,-0.001005223486572504,-0.004884849302470684,-0.00341828097589314,0.006336953025311232,0.0012739477679133415,-0.00565366679802537,1.736561946583804,-4.0986897534152895,2.7637276076059427,0.01736561946583804,-0.0409868975341529,0.02763727607605943 +karman_re200,sr,147,58.8,0.9243361949920654,0.1526191085577011,0.9569067358970642,0.3097941279411316,1.1991770267486572,0.1862553060054779,-0.00244023441337049,-0.0052806357853114605,0.0001449744013370946,0.007023111451417208,-0.00010928877600235865,-0.0062454985454678535,0.8947879241764534,-2.984414038985085,3.878003322036147,0.008947879241764534,-0.02984414038985085,0.03878003322036147 +karman_re200,sr,148,59.2,0.893378734588623,0.0033602637704461813,0.9215896129608154,0.10983631014823914,1.2518551349639893,0.2195596843957901,-0.0023419843055307865,-0.005237423349171877,0.0027571881655603647,0.006782933603972197,-0.0015631095739081502,-0.006293711252510548,-0.04848689888496662,-2.922734682813726,3.939682678207506,-0.0004848689888496662,-0.02922734682813726,0.03939682678207506 +karman_re200,sr,149,59.6,0.8862942457199097,-0.13917012512683868,0.8613794445991516,-0.16816610097885132,1.2505203485488892,0.16217342019081116,-0.0008177009876817465,-0.0048650112003088,0.0045226505026221275,0.006744363345205784,-0.0032011866569519043,-0.005162128247320652,-0.8238622746655014,-3.1113106401010615,3.7511067209201707,-0.008238622746655015,-0.031113106401010615,0.03751106720920171 +karman_re200,sr,150,60.0,0.9274634718894958,-0.22220966219902039,0.857795238494873,-0.3744170069694519,1.1834285259246826,-0.20314304530620575,0.0013549324357882142,-0.0033658251632004976,0.005628026556223631,0.00675927335396409,-0.00530844135209918,-0.0032402528449892998,-1.4729026643926197,-2.396599558976332,4.4658178020449,-0.014729026643926198,-0.023965995589763322,0.044658178020449 +karman_re200,sr,151,60.4,0.9838844537734985,-0.2807185649871826,0.8856303691864014,-0.47146618366241455,1.1247552633285522,-0.3742721974849701,0.002739016432315111,-0.0008439149241894484,0.0054281591437757015,0.006299054250121117,-0.007476396393030882,-0.0020328820683062077,-2.085537588172227,-1.130153216428214,5.732264144593018,-0.02085537588172227,-0.01130153216428214,0.05732264144593018 +karman_re200,sr,152,60.8,1.0436980724334717,-0.3021225333213806,0.9172627329826355,-0.494815468788147,1.063023328781128,-0.40270864963531494,0.002366140950471163,0.001937396707944572,0.003932662773877382,0.005820356775075197,-0.00817425362765789,-0.0028546189423650503,-2.4608434694152965,-0.6415975416595168,6.220819819361715,-0.024608434694152966,-0.006415975416595168,0.06220819819361715 +karman_re200,sr,153,61.2,1.1047824621200562,-0.28071755170822144,0.9379376173019409,-0.48610827326774597,1.0096969604492188,-0.349193811416626,0.0008632647222839296,0.004022778477519751,0.0023762292694300413,0.00553930876776576,-0.006299852859228849,-0.004796030931174755,-2.308737102684265,-1.4919397198469735,5.370477641174259,-0.02308737102684265,-0.014919397198469735,0.05370477641174259 +karman_re200,sr,154,61.6,1.160090446472168,-0.23030465841293335,0.9476215839385986,-0.4367713928222656,0.96192467212677,-0.25797155499458313,-0.0012366994051262736,0.0049610803835093975,0.0011418823851272464,0.0057500023394823074,-0.0029760547913610935,-0.006560526322573423,-1.6544917014402245,-2.9451860719872704,3.9172312890339613,-0.016544917014402246,-0.029451860719872706,0.039172312890339615 +karman_re200,sr,155,62.0,1.202641248703003,-0.1798730343580246,0.9634426236152649,-0.2901309132575989,0.922730565071106,-0.13667483627796173,-0.0025167595595121384,0.005280226934701204,-0.0002676510775927454,0.006339778192341328,0.0005257779266685247,-0.0070553990080952644,-0.7852729820349551,-3.9612029318385233,2.901214429182709,-0.007852729820349551,-0.039612029318385235,0.02901214429182709 +karman_re200,sr,156,62.4,1.2567412853240967,-0.22069427371025085,0.9170169830322266,-0.08193285763263702,0.8909119963645935,0.017921509221196175,-0.0022483556531369686,0.005198314320296049,-0.0017370247514918447,0.0062583074904978275,0.0029820313211530447,-0.006769661325961351,0.15130351277981352,-3.8991466149733616,2.9632707460478707,0.0015130351277981352,-0.03899146614973362,0.02963270746047871 +karman_re200,sr,157,62.8,1.2453622817993164,-0.1317271739244461,0.8606952428817749,0.1975078135728836,0.8895604014396667,0.1540711373090744,-0.0006001206347718835,0.004743119701743126,-0.003400894347578287,0.0049733049236238,0.004682828672230244,-0.0067681316286325455,0.8999037808819056,-3.765578296763758,3.0968390642574746,0.008999037808819057,-0.03765578296763758,0.030968390642574745 +karman_re200,sr,158,63.2,1.1758896112442017,0.2219846546649933,0.8613275289535522,0.3900146186351776,0.934130072593689,0.23193542659282684,0.0015704600373283029,0.0030983653850853443,-0.005534367635846138,0.003031041705980897,0.005682327318936586,-0.0067334105260670185,1.5415313565135522,-4.604829517930684,2.2575878430905485,0.015415313565135523,-0.046048295179306836,0.022575878430905486 +karman_re200,sr,159,63.6,1.116989016532898,0.3778839111328125,0.8911394476890564,0.47630631923675537,0.9931784272193909,0.288025438785553,0.002764086937531829,0.0005399276851676404,-0.007645747158676386,0.0020282079931348562,0.0053211092017591,-0.006246095523238182,2.1389756856927145,-5.852153935526895,1.0102634254943381,0.021389756856927147,-0.058521539355268944,0.010102634254943382 +karman_re200,sr,160,64.0,1.0544474124908447,0.3947022557258606,0.9194198846817017,0.49383774399757385,1.05228853225708,0.3034471273422241,0.0022381467279046774,-0.0022261866834014654,-0.008048901334404945,0.003049786202609539,0.0037212553434073925,-0.005765540990978479,2.472723969640903,-6.1892469253223386,0.6731704356988937,0.02472723969640903,-0.061892469253223385,0.0067317043569889365 +karman_re200,sr,161,64.4,1.001169204711914,0.33684834837913513,0.9358441233634949,0.48281925916671753,1.1129975318908691,0.27824288606643677,0.0006296912324614823,-0.004158920142799616,-0.005950965452939272,0.005001484882086515,0.00220497022382915,-0.005508522968739271,2.2445184657446187,-5.207016005005259,1.6554013560159733,0.022445184657446188,-0.05207016005005259,0.016554013560159734 +karman_re200,sr,162,64.8,0.954639196395874,0.24383416771888733,0.9429495930671692,0.42496609687805176,1.1672406196594238,0.22526861727237701,-0.0014456430217251182,-0.005025634542107582,-0.0025579894427210093,0.0066314577125012875,0.0009654348250478506,-0.005784967914223671,1.5553020009020417,-3.7627562679187148,3.099661093102518,0.015553020009020417,-0.03762756267918715,0.03099661093102518 +karman_re200,sr,163,65.2,0.9172345995903015,0.12080035358667374,0.9553623199462891,0.2688296139240265,1.2091858386993408,0.1811085194349289,-0.002565220231190324,-0.005289844237267971,0.0008553293300792575,0.006995484698563814,-0.000448153936304152,-0.006345754489302635,0.6719019166981737,-2.8776967101628825,3.9847206508583497,0.006719019166981737,-0.028776967101628827,0.0398472065085835 +karman_re200,sr,164,65.6,0.8886479139328003,-0.033443618565797806,0.9050438404083252,0.04881732538342476,1.263880729675293,0.240996852517128,-0.0021057825069874525,-0.005197648890316486,0.003218594240024686,0.006748693063855171,-0.001916060340590775,-0.006145072635263205,-0.24856867595499657,-3.006356013586148,3.856061347435084,-0.002485686759549966,-0.03006356013586148,0.038560613474350844 +karman_re200,sr,165,66.0,0.8928627967834473,-0.16219297051429749,0.8551046252250671,-0.2254062443971634,1.2311831712722778,0.0774458646774292,-0.00033628472010605037,-0.0046447208151221275,0.004865443799644709,0.006776161026209593,-0.003640155540779233,-0.004740588832646608,-0.9791566363034732,-3.036506779256861,3.8259105817643713,-0.009791566363034732,-0.03036506779256861,0.03825910581764371 +karman_re200,sr,166,66.4,0.9399458169937134,-0.23685333132743835,0.8618978261947632,-0.4041760563850403,1.1714489459991455,-0.25607240200042725,0.001815020339563489,-0.0028378674760460854,0.005728328134864569,0.006689798086881638,-0.005826848093420267,-0.002828409429639578,-1.6219813639180145,-2.1001665605268074,4.762250800494424,-0.016219813639180146,-0.021001665605268074,0.04762250800494425 +karman_re200,sr,167,66.8,0.9976452589035034,-0.2896951735019684,0.892751932144165,-0.48061710596084595,1.1098219156265259,-0.39188671112060547,0.002789594465866685,-0.00021114105766173452,0.005163310095667839,0.006172697991132736,-0.007851341739296913,-0.002033516298979521,-2.203522614801686,-0.9062818021272814,5.956135558893951,-0.02203522614801686,-0.009062818021272814,0.05956135558893951 +karman_re200,sr,168,67.2,1.0578705072402954,-0.3000229001045227,0.9225404262542725,-0.4944504201412201,1.050257921218872,-0.39573776721954346,0.002114542294293642,0.0025293880607932806,0.0035233714152127504,0.005727676674723625,-0.007948994636535645,-0.0032523092813789845,-2.481838361921015,-0.7246354663824026,6.137781894638829,-0.02481838361921015,-0.007246354663824026,0.061377818946388295 +karman_re200,sr,169,67.6,1.1178405284881592,-0.27120497822761536,0.9390692710876465,-0.4803702235221863,0.9977675080299377,-0.33131805062294006,0.000385039224056527,0.004312563221901655,0.0020839639473706484,0.0055189430713653564,-0.0056194704957306385,-0.005253999028354883,-2.1877310688201455,-1.8125884844815445,5.049828876539688,-0.021877310688201455,-0.018125884844815445,0.05049828876539688 +karman_re200,sr,170,68.0,1.1708070039749146,-0.21640431880950928,0.9500080347061157,-0.4108465611934662,0.9524157047271729,-0.23330402374267578,-0.0016475726151838899,0.005089573096483946,0.0008276691078208387,0.005881115794181824,-0.0021145804785192013,-0.006792294327169657,-1.4690119537480664,-3.257964183557416,3.6044531774638164,-0.014690119537480664,-0.03257964183557416,0.036044531774638164 +karman_re200,sr,171,68.4,1.2133994102478027,-0.1768939346075058,0.9594431519508362,-0.24970795214176178,0.9153739809989929,-0.10401299595832825,-0.0025978684425354004,0.005287284962832928,-0.0006070165545679629,0.00640967208892107,0.001202254556119442,-0.006999406963586807,-0.5610743941768094,-4.027020025383133,2.8353973356380986,-0.005610743941768094,-0.04027020025383133,0.028353973356380985 +karman_re200,sr,172,68.8,1.2672476768493652,-0.24033524096012115,0.8988878130912781,-0.01836514286696911,0.8857906460762024,0.05419531837105751,-0.00196086592040956,0.005156669765710831,-0.00209091417491436,0.006071620155125856,0.0034316224046051502,-0.006746029946953058,0.3450202515257379,-3.8168309445038684,3.045586416517364,0.003450202515257379,-0.038168309445038684,0.030455864165173638 +karman_re200,sr,173,69.2,1.2249335050582886,-0.04023778811097145,0.8560611605644226,0.25276118516921997,0.8976629376411438,0.17528153955936432,-9.101884643314406e-05,0.00449559697881341,-0.003867026651278138,0.004529824946075678,0.0050117820501327515,-0.0067950957454741,1.0531240721585318,-3.8721991017249464,2.9902182592962863,0.010531240721585318,-0.03872199101724946,0.029902182592962862 +karman_re200,sr,174,69.6,1.1631786823272705,0.27330341935157776,0.8662604689598083,0.41835808753967285,0.947050929069519,0.2464286983013153,0.002004991052672267,0.0025312062352895737,-0.006083788815885782,0.002645926084369421,0.005739718675613403,-0.006649164482951164,1.6931507905666026,-4.912448627049215,1.9499687339720178,0.016931507905666027,-0.04912448627049215,0.019499687339720177 +karman_re200,sr,175,70.0,1.099843978881836,0.39282122254371643,0.8967552781105042,0.48382487893104553,1.0050687789916992,0.2954901456832886,0.00277441437356174,-0.00011177021224284545,-0.007979147136211395,0.0020845767576247454,0.005015384405851364,-0.006109894718974829,2.254692237408029,-6.048889812970023,0.8135275480512097,0.02254692237408029,-0.06048889812970023,0.008135275480512098 +karman_re200,sr,176,70.4,1.0418131351470947,0.38670074939727783,0.9247003793716431,0.49326443672180176,1.0663304328918457,0.30030256509780884,0.001961161382496357,-0.0028005691710859537,-0.00776182534173131,0.00348072312772274,0.003327519865706563,-0.00568962749093771,2.4780015082417566,-6.063327437991833,0.7990899230293991,0.024780015082417565,-0.060633274379918334,0.007990899230293991 +karman_re200,sr,177,70.8,0.9901506304740906,0.3187047839164734,0.9379220604896545,0.47636115550994873,1.1264102458953857,0.267853707075119,0.00013741654402110726,-0.0044343420304358006,-0.005239689722657204,0.005475944839417934,0.0019406233914196491,-0.005521763581782579,2.1146906343252794,-4.875591127742235,1.9868262332789974,0.021146906343252794,-0.04875591127742235,0.019868262332789974 +karman_re200,sr,178,71.2,0.9455955028533936,0.21874837577342987,0.947093665599823,0.39557769894599915,1.1773172616958618,0.21140322089195251,-0.0018381938571110368,-0.0051380121149122715,-0.0016947294352576137,0.006863011512905359,0.0006508138030767441,-0.005946681369096041,1.369254956882121,-3.4611691388843777,3.401248222136855,0.01369254956882121,-0.03461169138884378,0.03401248222136855 +karman_re200,sr,179,71.6,0.9101455211639404,0.08728447556495667,0.9509241580963135,0.22656290233135223,1.220393180847168,0.1819680780172348,-0.002603373723104596,-0.005283230450004339,0.0015077273128554225,0.006936822552233934,-0.0007802972686477005,-0.006409651134163141,0.4472850493628608,-2.8320287442362093,4.030388616785023,0.004472850493628608,-0.028320287442362094,0.04030388616785024 +karman_re200,sr,180,72.0,0.8834981322288513,-0.06955067813396454,0.8876922726631165,-0.015761012211441994,1.2694118022918701,0.25085121393203735,-0.001789691741578281,-0.005128282122313976,0.0036377341020852327,0.006719840690493584,-0.002276108367368579,-0.005928750615566969,-0.436316487863089,-3.086496091036885,3.7759212699843476,-0.00436316487863089,-0.03086496091036885,0.037759212699843475 +karman_re200,sr,181,72.4,0.9017174243927002,-0.18306726217269897,0.8524881601333618,-0.27760782837867737,1.2132805585861206,-0.015928275883197784,0.00018110590463038534,-0.004348739981651306,0.005171373952180147,0.006799333728849888,-0.004102419596165419,-0.004289827775210142,-1.1277444293682044,-2.9139220847523064,3.9484952762689254,-0.011277444293682045,-0.029139220847523066,0.039484952762689256 +karman_re200,sr,182,72.8,0.9530737400054932,-0.25189995765686035,0.8677365183830261,-0.43045884370803833,1.1575040817260742,-0.2999715805053711,0.0021941352169960737,-0.0022674682550132275,0.005742008797824383,0.006596171762794256,-0.006358779035508633,-0.0024785050190985203,-1.7684727091189203,-1.7902655907949026,5.07215177022633,-0.017684727091189203,-0.017902655907949025,0.0507215177022633 +karman_re200,sr,183,73.2,1.0112967491149902,-0.297082781791687,0.8997499942779541,-0.48775848746299744,1.093630313873291,-0.4019868075847626,0.0027488067280501127,0.0004333068791311234,0.004849852994084358,0.006055048201233149,-0.008106364868581295,-0.0021608879324048758,-2.307568410977342,-0.7387038952481264,6.123713465773106,-0.023075684109773422,-0.007387038952481264,0.06123713465773106 +karman_re200,sr,184,73.6,1.0738126039505005,-0.2971651256084442,0.9286525845527649,-0.4944099485874176,1.0380021333694458,-0.38568365573883057,0.0018067205091938376,0.003063609590753913,0.0031396388076245785,0.005656519904732704,-0.0075954776257276535,-0.0036908278707414865,-2.4706952536819062,-0.8848527437529635,5.977564617268269,-0.024706952536819062,-0.008848527437529636,0.05977564617268269 +karman_re200,sr,185,74.0,1.1316651105880737,-0.26093804836273193,0.9405789971351624,-0.4733228385448456,0.9854724407196045,-0.3119543492794037,-0.0001121986351790838,0.004547277465462685,0.0018078085267916322,0.0055345091968774796,-0.004885668400675058,-0.005687123630195856,-2.0471407243030892,-2.145860560491704,4.716556800529528,-0.020471407243030895,-0.021458605604917042,0.047165568005295276 +karman_re200,sr,186,74.4,1.1820769309997559,-0.20410864055156708,0.9547146558761597,-0.3797603249549866,0.9426032304763794,-0.20777833461761475,-0.002000711625441909,0.005194563884288073,0.0005024490528739989,0.0060288188979029655,-0.001278904266655445,-0.006952296942472458,-1.2764173812618194,-3.531001868640514,3.331415492380718,-0.012764173812618193,-0.03531001868640514,0.03331415492380718 +karman_re200,sr,187,74.8,1.226263403892517,-0.1833004355430603,0.9507693648338318,-0.2074204981327057,0.9070577025413513,-0.07040555775165558,-0.002587466035038233,0.005278961267322302,-0.0009372748318128288,0.006427766289561987,0.0018075325060635805,-0.0069161709398031235,-0.339696448326502,-4.035062563998166,2.827354797023066,-0.0033969644832650197,-0.040350625639981666,0.02827354797023066 +karman_re200,sr,188,75.2,1.2724428176879883,-0.24544984102249146,0.8831197619438171,0.04748223349452019,0.8830035328865051,0.08740410208702087,-0.0016105264658108354,0.005088576581329107,-0.0024533122777938843,0.005812502466142178,0.0038389444816857576,-0.006728004664182663,0.5234230030589535,-3.7505720335386545,3.111845327482578,0.0052342300305895356,-0.037505720335386544,0.03111845327482578 +karman_re200,sr,189,75.6,1.2071123123168945,0.0579834021627903,0.8543856739997864,0.3019265830516815,0.9067036509513855,0.19369882345199585,0.00042361271334812045,0.004167778883129358,-0.004346026107668877,0.004076102282851934,0.005286411847919226,-0.00681246817111969,1.1999064136912951,-4.029847230586654,2.8325701304345783,0.011999064136912952,-0.04029847230586654,0.028325701304345783 +karman_re200,sr,190,76.0,1.1502164602279663,0.3167506456375122,0.8724896311759949,0.4425220489501953,0.9596951007843018,0.2601948380470276,0.0023512234911322594,0.001965948147699237,-0.006608658470213413,0.0023385032545775175,0.005710837431252003,-0.0065369619987905025,1.8368646614715478,-5.2204934155295675,1.6419239454916645,0.01836864661471548,-0.052204934155295674,0.016419239454916645 +karman_re200,sr,191,76.4,1.0856735706329346,0.4018484950065613,0.904350996017456,0.4904121458530426,1.018542766571045,0.300756573677063,0.0026413900777697563,-0.000780670321546495,-0.008193678222596645,0.0022632170002907515,0.00467490591108799,-0.006000037770718336,2.3492751028224794,-6.176542619161168,0.6858747418600646,0.023492751028224793,-0.06176542619161168,0.006858747418600646 +karman_re200,sr,192,76.8,1.0296111106872559,0.37600958347320557,0.9299859404563904,0.4925192594528198,1.0799858570098877,0.2952822148799896,0.0016237481031566858,-0.0033051639329642057,-0.0073407841846346855,0.003925120458006859,0.0029610588680952787,-0.00561806745827198,2.4539838769089237,-5.874681752110894,0.987735608910338,0.024539838769089238,-0.05874681752110894,0.00987735608910338 +karman_re200,sr,193,77.2,0.9793559312820435,0.29926609992980957,0.9410730600357056,0.4678030014038086,1.139114499092102,0.25593656301498413,-0.00036720518255606294,-0.004655555821955204,-0.004485670942813158,0.005908706691116095,0.0016662721754983068,-0.00556600047275424,1.9645173463700247,-4.538211306788824,2.324206054232408,0.019645173463700247,-0.045382113067888245,0.02324206054232408 +karman_re200,sr,194,77.6,0.9364158511161804,0.192156583070755,0.9543762803077698,0.36097535490989685,1.1862599849700928,0.19860762357711792,-0.0021488810889422894,-0.005222904030233622,-0.000868345785420388,0.00699659576639533,0.0003376550739631057,-0.006099156569689512,1.1731492032973574,-3.207116205253544,3.6553011557676878,0.011731492032973575,-0.03207116205253544,0.03655301155767688 +karman_re200,sr,195,78.0,0.9038956165313721,0.05183430016040802,0.944274365901947,0.1821749061346054,1.2348012924194336,0.19105441868305206,-0.0025573214516043663,-0.005269898567348719,0.0020760009065270424,0.00687926821410656,-0.0011145402677357197,-0.006423002574592829,0.22997919846664672,-2.844381362512613,4.018035998508619,0.002299791984666467,-0.02844381362512613,0.04018035998508619 +karman_re200,sr,196,78.4,0.8824236392974854,-0.10302276909351349,0.8753588199615479,-0.08184687793254852,1.2693779468536377,0.23673154413700104,-0.0014155061217024922,-0.005038348957896233,0.004024596884846687,0.006722824648022652,-0.0026478320360183716,-0.005649574566632509,-0.6084225365368978,-3.1328607339162406,3.729556627104991,-0.0060842253653689785,-0.03132860733916241,0.037295566271049914 +karman_re200,sr,197,78.8,0.9115458726882935,-0.20176467299461365,0.8535873293876648,-0.32355156540870667,1.198401689529419,-0.10257861763238907,0.0006818260299041867,-0.00397311570122838,0.005402113776654005,0.006803551223129034,-0.004591191653162241,-0.0038350089453160763,-1.2724036165535269,-2.729420226078121,4.132997134943111,-0.012724036165535269,-0.02729420226078121,0.041329971349431116 +karman_re200,sr,198,79.2,0.9664077758789062,-0.2662474513053894,0.875469982624054,-0.4519345760345459,1.143060564994812,-0.3353620171546936,0.0024907493498176336,-0.0016718548722565174,0.005666598677635193,0.006478433031588793,-0.006852206774055958,-0.002221648348495364,-1.9056805431767212,-1.490105918733543,5.372311442287689,-0.019056805431767212,-0.014901059187335431,0.05372311442287689 +karman_re200,sr,199,79.6,1.0257428884506226,-0.30198565125465393,0.9078560471534729,-0.4925040900707245,1.0791621208190918,-0.4046412706375122,0.0026247664354741573,0.001081902184523642,0.004472679458558559,0.005943204276263714,-0.008222361095249653,-0.0024022781290113926,-2.3872825803885354,-0.6477359415841661,6.214681419437066,-0.023872825803885354,-0.006477359415841662,0.06214681419437066 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_long.csv new file mode 100644 index 0000000..483beb6 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re200,target,0,0.0,velocity,upper_ux,1.0061203241348267 +karman_re200,target,0,0.0,velocity,upper_uy,-0.4202466607093811 +karman_re200,target,0,0.0,velocity,center_ux,1.1459112167358398 +karman_re200,target,0,0.0,velocity,center_uy,-0.7315125465393066 +karman_re200,target,0,0.0,velocity,lower_ux,1.099542498588562 +karman_re200,target,0,0.0,velocity,lower_uy,-0.40402889251708984 +karman_re200,target,1,0.4,velocity,upper_ux,1.1314979791641235 +karman_re200,target,1,0.4,velocity,upper_uy,-0.41448092460632324 +karman_re200,target,1,0.4,velocity,center_ux,1.1496598720550537 +karman_re200,target,1,0.4,velocity,center_uy,-0.7556675672531128 +karman_re200,target,1,0.4,velocity,lower_ux,0.9769209027290344 +karman_re200,target,1,0.4,velocity,lower_uy,-0.4430030882358551 +karman_re200,target,2,0.8,velocity,upper_ux,1.2457191944122314 +karman_re200,target,2,0.8,velocity,upper_uy,-0.38774630427360535 +karman_re200,target,2,0.8,velocity,center_ux,1.1718828678131104 +karman_re200,target,2,0.8,velocity,center_uy,-0.7651585936546326 +karman_re200,target,2,0.8,velocity,lower_ux,0.8424526453018188 +karman_re200,target,2,0.8,velocity,lower_uy,-0.4332864284515381 +karman_re200,target,3,1.2,velocity,upper_ux,1.3409302234649658 +karman_re200,target,3,1.2,velocity,upper_uy,-0.28695446252822876 +karman_re200,target,3,1.2,velocity,center_ux,1.2053757905960083 +karman_re200,target,3,1.2,velocity,center_uy,-0.627693772315979 +karman_re200,target,3,1.2,velocity,lower_ux,0.7147693037986755 +karman_re200,target,3,1.2,velocity,lower_uy,-0.33215153217315674 +karman_re200,target,4,1.6,velocity,upper_ux,1.4029152393341064 +karman_re200,target,4,1.6,velocity,upper_uy,-0.12560489773750305 +karman_re200,target,4,1.6,velocity,center_ux,1.2267842292785645 +karman_re200,target,4,1.6,velocity,center_uy,-0.23285011947155 +karman_re200,target,4,1.6,velocity,lower_ux,0.6375792026519775 +karman_re200,target,4,1.6,velocity,lower_uy,-0.12260714173316956 +karman_re200,target,5,2.0,velocity,upper_ux,1.3938909769058228 +karman_re200,target,5,2.0,velocity,upper_uy,0.0722707062959671 +karman_re200,target,5,2.0,velocity,center_ux,1.2188420295715332 +karman_re200,target,5,2.0,velocity,center_uy,0.2724592983722687 +karman_re200,target,5,2.0,velocity,lower_ux,0.6527271866798401 +karman_re200,target,5,2.0,velocity,lower_uy,0.13190880417823792 +karman_re200,target,6,2.4,velocity,upper_ux,1.3151382207870483 +karman_re200,target,6,2.4,velocity,upper_uy,0.24408535659313202 +karman_re200,target,6,2.4,velocity,center_ux,1.188063383102417 +karman_re200,target,6,2.4,velocity,center_uy,0.6225897073745728 +karman_re200,target,6,2.4,velocity,lower_ux,0.7541947960853577 +karman_re200,target,6,2.4,velocity,lower_uy,0.322236567735672 +karman_re200,target,7,2.8,velocity,upper_ux,1.201866626739502 +karman_re200,target,7,2.8,velocity,upper_uy,0.352737158536911 +karman_re200,target,7,2.8,velocity,center_ux,1.1554250717163086 +karman_re200,target,7,2.8,velocity,center_uy,0.7300110459327698 +karman_re200,target,7,2.8,velocity,lower_ux,0.8894740343093872 +karman_re200,target,7,2.8,velocity,lower_uy,0.40647074580192566 +karman_re200,target,8,3.2,velocity,upper_ux,1.0820727348327637 +karman_re200,target,8,3.2,velocity,upper_uy,0.4151631295681 +karman_re200,target,8,3.2,velocity,center_ux,1.1401690244674683 +karman_re200,target,8,3.2,velocity,center_uy,0.7340755462646484 +karman_re200,target,8,3.2,velocity,lower_ux,1.02138090133667 +karman_re200,target,8,3.2,velocity,lower_uy,0.41494032740592957 +karman_re200,target,9,3.6,velocity,upper_ux,0.9590825438499451 +karman_re200,target,9,3.6,velocity,upper_uy,0.44945603609085083 +karman_re200,target,9,3.6,velocity,center_ux,1.1504639387130737 +karman_re200,target,9,3.6,velocity,center_uy,0.7611984014511108 +karman_re200,target,9,3.6,velocity,lower_ux,1.1468000411987305 +karman_re200,target,9,3.6,velocity,lower_uy,0.41083499789237976 +karman_re200,target,10,4.0,velocity,upper_ux,0.8254351615905762 +karman_re200,target,10,4.0,velocity,upper_uy,0.4296531677246094 +karman_re200,target,10,4.0,velocity,center_ux,1.1794705390930176 +karman_re200,target,10,4.0,velocity,center_uy,0.7595317363739014 +karman_re200,target,10,4.0,velocity,lower_ux,1.2611180543899536 +karman_re200,target,10,4.0,velocity,lower_uy,0.3752613067626953 +karman_re200,target,11,4.4,velocity,upper_ux,0.7000367641448975 +karman_re200,target,11,4.4,velocity,upper_uy,0.31234806776046753 +karman_re200,target,11,4.4,velocity,center_ux,1.2141673564910889 +karman_re200,target,11,4.4,velocity,center_uy,0.5873796939849854 +karman_re200,target,11,4.4,velocity,lower_ux,1.3521695137023926 +karman_re200,target,11,4.4,velocity,lower_uy,0.2649742364883423 +karman_re200,target,12,4.8,velocity,upper_ux,0.6321656703948975 +karman_re200,target,12,4.8,velocity,upper_uy,0.08879470825195312 +karman_re200,target,12,4.8,velocity,center_ux,1.2323132753372192 +karman_re200,target,12,4.8,velocity,center_uy,0.16179963946342468 +karman_re200,target,12,4.8,velocity,lower_ux,1.404578685760498 +karman_re200,target,12,4.8,velocity,lower_uy,0.09682059288024902 +karman_re200,target,13,5.2,velocity,upper_ux,0.6606960892677307 +karman_re200,target,13,5.2,velocity,upper_uy,-0.16505712270736694 +karman_re200,target,13,5.2,velocity,center_ux,1.2208526134490967 +karman_re200,target,13,5.2,velocity,center_uy,-0.3361932039260864 +karman_re200,target,13,5.2,velocity,lower_ux,1.3847543001174927 +karman_re200,target,13,5.2,velocity,lower_uy,-0.10019093751907349 +karman_re200,target,14,5.6,velocity,upper_ux,0.7703366875648499 +karman_re200,target,14,5.6,velocity,upper_uy,-0.341712087392807 +karman_re200,target,14,5.6,velocity,center_ux,1.1863658428192139 +karman_re200,target,14,5.6,velocity,center_uy,-0.6501986980438232 +karman_re200,target,14,5.6,velocity,lower_ux,1.2978401184082031 +karman_re200,target,14,5.6,velocity,lower_uy,-0.2628037929534912 +karman_re200,target,15,6.0,velocity,upper_ux,0.9092807173728943 +karman_re200,target,15,6.0,velocity,upper_uy,-0.4129713773727417 +karman_re200,target,15,6.0,velocity,center_ux,1.156559705734253 +karman_re200,target,15,6.0,velocity,center_uy,-0.7323466539382935 +karman_re200,target,15,6.0,velocity,lower_ux,1.1855684518814087 +karman_re200,target,15,6.0,velocity,lower_uy,-0.36289647221565247 +karman_re200,target,16,6.4,velocity,upper_ux,1.0429860353469849 +karman_re200,target,16,6.4,velocity,upper_uy,-0.4153308868408203 +karman_re200,target,16,6.4,velocity,center_ux,1.1466107368469238 +karman_re200,target,16,6.4,velocity,center_uy,-0.7364956736564636 +karman_re200,target,16,6.4,velocity,lower_ux,1.0683244466781616 +karman_re200,target,16,6.4,velocity,lower_uy,-0.42218804359436035 +karman_re200,target,17,6.8,velocity,upper_ux,1.164581298828125 +karman_re200,target,17,6.8,velocity,upper_uy,-0.4098494350910187 +karman_re200,target,17,6.8,velocity,center_ux,1.1567883491516113 +karman_re200,target,17,6.8,velocity,center_uy,-0.7647659182548523 +karman_re200,target,17,6.8,velocity,lower_ux,0.9406366944313049 +karman_re200,target,17,6.8,velocity,lower_uy,-0.45097264647483826 +karman_re200,target,18,7.2,velocity,upper_ux,1.2745637893676758 +karman_re200,target,18,7.2,velocity,upper_uy,-0.3635888397693634 +karman_re200,target,18,7.2,velocity,center_ux,1.1869657039642334 +karman_re200,target,18,7.2,velocity,center_uy,-0.748338520526886 +karman_re200,target,18,7.2,velocity,lower_ux,0.8049766421318054 +karman_re200,target,18,7.2,velocity,lower_uy,-0.41927844285964966 +karman_re200,target,19,7.6,velocity,upper_ux,1.3600529432296753 +karman_re200,target,19,7.6,velocity,upper_uy,-0.24413421750068665 +karman_re200,target,19,7.6,velocity,center_ux,1.2199102640151978 +karman_re200,target,19,7.6,velocity,center_uy,-0.5385381579399109 +karman_re200,target,19,7.6,velocity,lower_ux,0.6836235523223877 +karman_re200,target,19,7.6,velocity,lower_uy,-0.28481191396713257 +karman_re200,target,20,8.0,velocity,upper_ux,1.4044378995895386 +karman_re200,target,20,8.0,velocity,upper_uy,-0.06996555626392365 +karman_re200,target,20,8.0,velocity,center_ux,1.23489511013031 +karman_re200,target,20,8.0,velocity,center_uy,-0.08724331110715866 +karman_re200,target,20,8.0,velocity,lower_ux,0.6297321915626526 +karman_re200,target,20,8.0,velocity,lower_uy,-0.0496249720454216 +karman_re200,target,21,8.4,velocity,upper_ux,1.3744488954544067 +karman_re200,target,21,8.4,velocity,upper_uy,0.1247779056429863 +karman_re200,target,21,8.4,velocity,center_ux,1.2190824747085571 +karman_re200,target,21,8.4,velocity,center_uy,0.39620763063430786 +karman_re200,target,21,8.4,velocity,lower_ux,0.6742334961891174 +karman_re200,target,21,8.4,velocity,lower_uy,0.19912700355052948 +karman_re200,target,22,8.8,velocity,upper_ux,1.2827049493789673 +karman_re200,target,22,8.8,velocity,upper_uy,0.2783447802066803 +karman_re200,target,22,8.8,velocity,center_ux,1.183049201965332 +karman_re200,target,22,8.8,velocity,center_uy,0.6726399064064026 +karman_re200,target,22,8.8,velocity,lower_ux,0.7922616600990295 +karman_re200,target,22,8.8,velocity,lower_uy,0.36004894971847534 +karman_re200,target,23,9.2,velocity,upper_ux,1.1675591468811035 +karman_re200,target,23,9.2,velocity,upper_uy,0.3701147437095642 +karman_re200,target,23,9.2,velocity,center_ux,1.152409553527832 +karman_re200,target,23,9.2,velocity,center_uy,0.7319865226745605 +karman_re200,target,23,9.2,velocity,lower_ux,0.9297799468040466 +karman_re200,target,23,9.2,velocity,lower_uy,0.418117493391037 +karman_re200,target,24,9.6,velocity,upper_ux,1.0474786758422852 +karman_re200,target,24,9.6,velocity,upper_uy,0.4244083762168884 +karman_re200,target,24,9.6,velocity,center_ux,1.1416367292404175 +karman_re200,target,24,9.6,velocity,center_uy,0.7371789813041687 +karman_re200,target,24,9.6,velocity,lower_ux,1.0590004920959473 +karman_re200,target,24,9.6,velocity,lower_uy,0.4156007468700409 +karman_re200,target,25,10.0,velocity,upper_ux,0.9202739000320435 +karman_re200,target,25,10.0,velocity,upper_uy,0.4475153982639313 +karman_re200,target,25,10.0,velocity,center_ux,1.1542975902557373 +karman_re200,target,25,10.0,velocity,center_uy,0.767738938331604 +karman_re200,target,25,10.0,velocity,lower_ux,1.1807606220245361 +karman_re200,target,25,10.0,velocity,lower_uy,0.41036635637283325 +karman_re200,target,26,10.4,velocity,upper_ux,0.7873950004577637 +karman_re200,target,26,10.4,velocity,upper_uy,0.4044739007949829 +karman_re200,target,26,10.4,velocity,center_ux,1.1858620643615723 +karman_re200,target,26,10.4,velocity,center_uy,0.7365329265594482 +karman_re200,target,26,10.4,velocity,lower_ux,1.2905795574188232 +karman_re200,target,26,10.4,velocity,lower_uy,0.3536716103553772 +karman_re200,target,27,10.8,velocity,upper_ux,0.673668622970581 +karman_re200,target,27,10.8,velocity,upper_uy,0.25623881816864014 +karman_re200,target,27,10.8,velocity,center_ux,1.2165898084640503 +karman_re200,target,27,10.8,velocity,center_uy,0.49082520604133606 +karman_re200,target,27,10.8,velocity,lower_ux,1.3750957250595093 +karman_re200,target,27,10.8,velocity,lower_uy,0.22524221241474152 +karman_re200,target,28,11.2,velocity,upper_ux,0.6308085918426514 +karman_re200,target,28,11.2,velocity,upper_uy,0.015350966714322567 +karman_re200,target,28,11.2,velocity,center_ux,1.2255024909973145 +karman_re200,target,28,11.2,velocity,center_uy,0.01707409881055355 +karman_re200,target,28,11.2,velocity,lower_ux,1.4096111059188843 +karman_re200,target,28,11.2,velocity,lower_uy,0.04245686158537865 +karman_re200,target,29,11.6,velocity,upper_ux,0.6863319277763367 +karman_re200,target,29,11.6,velocity,upper_uy,-0.22368963062763214 +karman_re200,target,29,11.6,velocity,center_ux,1.2064553499221802 +karman_re200,target,29,11.6,velocity,center_uy,-0.45121634006500244 +karman_re200,target,29,11.6,velocity,lower_ux,1.367546558380127 +karman_re200,target,29,11.6,velocity,lower_uy,-0.15298691391944885 +karman_re200,target,30,12.0,velocity,upper_ux,0.8081796765327454 +karman_re200,target,30,12.0,velocity,upper_uy,-0.3683508038520813 +karman_re200,target,30,12.0,velocity,center_ux,1.1718859672546387 +karman_re200,target,30,12.0,velocity,center_uy,-0.6932443976402283 +karman_re200,target,30,12.0,velocity,lower_ux,1.2684704065322876 +karman_re200,target,30,12.0,velocity,lower_uy,-0.29940953850746155 +karman_re200,target,31,12.4,velocity,upper_ux,0.9459755420684814 +karman_re200,target,31,12.4,velocity,upper_uy,-0.4155504107475281 +karman_re200,target,31,12.4,velocity,center_ux,1.14774489402771 +karman_re200,target,31,12.4,velocity,center_uy,-0.7351407408714294 +karman_re200,target,31,12.4,velocity,lower_ux,1.152463436126709 +karman_re200,target,31,12.4,velocity,lower_uy,-0.3849140405654907 +karman_re200,target,32,12.8,velocity,upper_ux,1.0764412879943848 +karman_re200,target,32,12.8,velocity,upper_uy,-0.4106856882572174 +karman_re200,target,32,12.8,velocity,center_ux,1.1455292701721191 +karman_re200,target,32,12.8,velocity,center_uy,-0.7427115440368652 +karman_re200,target,32,12.8,velocity,lower_ux,1.0331016778945923 +karman_re200,target,32,12.8,velocity,lower_uy,-0.43614235520362854 +karman_re200,target,33,13.2,velocity,upper_ux,1.19695246219635 +karman_re200,target,33,13.2,velocity,upper_uy,-0.40255001187324524 +karman_re200,target,33,13.2,velocity,center_ux,1.1643877029418945 +karman_re200,target,33,13.2,velocity,center_uy,-0.769832968711853 +karman_re200,target,33,13.2,velocity,lower_ux,0.9034332036972046 +karman_re200,target,33,13.2,velocity,lower_uy,-0.45283007621765137 +karman_re200,target,34,13.6,velocity,upper_ux,1.3010923862457275 +karman_re200,target,34,13.6,velocity,upper_uy,-0.33461272716522217 +karman_re200,target,34,13.6,velocity,center_ux,1.1998295783996582 +karman_re200,target,34,13.6,velocity,center_uy,-0.7160637378692627 +karman_re200,target,34,13.6,velocity,lower_ux,0.7682178616523743 +karman_re200,target,34,13.6,velocity,lower_uy,-0.39574170112609863 +karman_re200,target,35,14.0,velocity,upper_ux,1.3777161836624146 +karman_re200,target,35,14.0,velocity,upper_uy,-0.19870293140411377 +karman_re200,target,35,14.0,velocity,center_ux,1.2307361364364624 +karman_re200,target,35,14.0,velocity,center_uy,-0.43054068088531494 +karman_re200,target,35,14.0,velocity,lower_ux,0.6593339443206787 +karman_re200,target,35,14.0,velocity,lower_uy,-0.2282770276069641 +karman_re200,target,36,14.4,velocity,upper_ux,1.401091456413269 +karman_re200,target,36,14.4,velocity,upper_uy,-0.013879950158298016 +karman_re200,target,36,14.4,velocity,center_ux,1.2362041473388672 +karman_re200,target,36,14.4,velocity,center_uy,0.058274589478969574 +karman_re200,target,36,14.4,velocity,lower_ux,0.6302459836006165 +karman_re200,target,36,14.4,velocity,lower_uy,0.024102605879306793 +karman_re200,target,37,14.8,velocity,upper_ux,1.351647973060608 +karman_re200,target,37,14.8,velocity,upper_uy,0.1736230105161667 +karman_re200,target,37,14.8,velocity,center_ux,1.2132289409637451 +karman_re200,target,37,14.8,velocity,center_uy,0.5003538727760315 +karman_re200,target,37,14.8,velocity,lower_ux,0.7013585567474365 +karman_re200,target,37,14.8,velocity,lower_uy,0.2570909857749939 +karman_re200,target,38,15.2,velocity,upper_ux,1.2507925033569336 +karman_re200,target,38,15.2,velocity,upper_uy,0.30854570865631104 +karman_re200,target,38,15.2,velocity,center_ux,1.1757792234420776 +karman_re200,target,38,15.2,velocity,center_uy,0.7042331099510193 +karman_re200,target,38,15.2,velocity,lower_ux,0.831095814704895 +karman_re200,target,38,15.2,velocity,lower_uy,0.38691815733909607 +karman_re200,target,39,15.6,velocity,upper_ux,1.1340986490249634 +karman_re200,target,39,15.6,velocity,upper_uy,0.3867541253566742 +karman_re200,target,39,15.6,velocity,center_ux,1.1488568782806396 +karman_re200,target,39,15.6,velocity,center_uy,0.7313383221626282 +karman_re200,target,39,15.6,velocity,lower_ux,0.9675085544586182 +karman_re200,target,39,15.6,velocity,lower_uy,0.4220350682735443 +karman_re200,target,40,16.0,velocity,upper_ux,1.0137499570846558 +karman_re200,target,40,16.0,velocity,upper_uy,0.4339534640312195 +karman_re200,target,40,16.0,velocity,center_ux,1.1451175212860107 +karman_re200,target,40,16.0,velocity,center_uy,0.7451016902923584 +karman_re200,target,40,16.0,velocity,lower_ux,1.0951727628707886 +karman_re200,target,40,16.0,velocity,lower_uy,0.415554016828537 +karman_re200,target,41,16.4,velocity,upper_ux,0.8825502991676331 +karman_re200,target,41,16.4,velocity,upper_uy,0.4429272413253784 +karman_re200,target,41,16.4,velocity,center_ux,1.1616445779800415 +karman_re200,target,41,16.4,velocity,center_uy,0.770118236541748 +karman_re200,target,41,16.4,velocity,lower_ux,1.2133851051330566 +karman_re200,target,41,16.4,velocity,lower_uy,0.4033616781234741 +karman_re200,target,42,16.8,velocity,upper_ux,0.7506463527679443 +karman_re200,target,42,16.8,velocity,upper_uy,0.3733823299407959 +karman_re200,target,42,16.8,velocity,center_ux,1.1942534446716309 +karman_re200,target,42,16.8,velocity,center_uy,0.6951748132705688 +karman_re200,target,42,16.8,velocity,lower_ux,1.3161468505859375 +karman_re200,target,42,16.8,velocity,lower_uy,0.3246815800666809 +karman_re200,target,43,17.2,velocity,upper_ux,0.6527177691459656 +karman_re200,target,43,17.2,velocity,upper_uy,0.19420643150806427 +karman_re200,target,43,17.2,velocity,center_ux,1.2211723327636719 +karman_re200,target,43,17.2,velocity,center_uy,0.3739197552204132 +karman_re200,target,43,17.2,velocity,lower_ux,1.3918195962905884 +karman_re200,target,43,17.2,velocity,lower_uy,0.17956525087356567 +karman_re200,target,44,17.6,velocity,upper_ux,0.6375666260719299 +karman_re200,target,44,17.6,velocity,upper_uy,-0.057723142206668854 +karman_re200,target,44,17.6,velocity,center_ux,1.2218372821807861 +karman_re200,target,44,17.6,velocity,center_uy,-0.1276477426290512 +karman_re200,target,44,17.6,velocity,lower_ux,1.4059205055236816 +karman_re200,target,44,17.6,velocity,lower_uy,-0.013579784892499447 +karman_re200,target,45,18.0,velocity,upper_ux,0.7174422740936279 +karman_re200,target,45,18.0,velocity,upper_uy,-0.27584704756736755 +karman_re200,target,45,18.0,velocity,center_ux,1.1966134309768677 +karman_re200,target,45,18.0,velocity,center_uy,-0.5461786389350891 +karman_re200,target,45,18.0,velocity,lower_ux,1.3445532321929932 +karman_re200,target,45,18.0,velocity,lower_uy,-0.20030471682548523 +karman_re200,target,46,18.4,velocity,upper_ux,0.847872257232666 +karman_re200,target,46,18.4,velocity,upper_uy,-0.3897981643676758 +karman_re200,target,46,18.4,velocity,center_ux,1.1625674962997437 +karman_re200,target,46,18.4,velocity,center_uy,-0.7179054021835327 +karman_re200,target,46,18.4,velocity,lower_ux,1.237105369567871 +karman_re200,target,46,18.4,velocity,lower_uy,-0.3281518816947937 +karman_re200,target,47,18.8,velocity,upper_ux,0.9826736450195312 +karman_re200,target,47,18.8,velocity,upper_uy,-0.4160315990447998 +karman_re200,target,47,18.8,velocity,center_ux,1.142143964767456 +karman_re200,target,47,18.8,velocity,center_uy,-0.7341145873069763 +karman_re200,target,47,18.8,velocity,lower_ux,1.1180930137634277 +karman_re200,target,47,18.8,velocity,lower_uy,-0.401210755109787 +karman_re200,target,48,19.2,velocity,upper_ux,1.1119368076324463 +karman_re200,target,48,19.2,velocity,upper_uy,-0.4109160602092743 +karman_re200,target,48,19.2,velocity,center_ux,1.1481564044952393 +karman_re200,target,48,19.2,velocity,center_uy,-0.7525647878646851 +karman_re200,target,48,19.2,velocity,lower_ux,0.998892068862915 +karman_re200,target,48,19.2,velocity,lower_uy,-0.4452706277370453 +karman_re200,target,49,19.6,velocity,upper_ux,1.2288569211959839 +karman_re200,target,49,19.6,velocity,upper_uy,-0.3924413323402405 +karman_re200,target,49,19.6,velocity,center_ux,1.171181321144104 +karman_re200,target,49,19.6,velocity,center_uy,-0.7693881988525391 +karman_re200,target,49,19.6,velocity,lower_ux,0.8657803535461426 +karman_re200,target,49,19.6,velocity,lower_uy,-0.44552847743034363 +karman_re200,target,50,20.0,velocity,upper_ux,1.3267039060592651 +karman_re200,target,50,20.0,velocity,upper_uy,-0.30303627252578735 +karman_re200,target,50,20.0,velocity,center_ux,1.2073442935943604 +karman_re200,target,50,20.0,velocity,center_uy,-0.6651919484138489 +karman_re200,target,50,20.0,velocity,lower_ux,0.7333171963691711 +karman_re200,target,50,20.0,velocity,lower_uy,-0.3603616952896118 +karman_re200,target,51,20.4,velocity,upper_ux,1.3937307596206665 +karman_re200,target,51,20.4,velocity,upper_uy,-0.15110644698143005 +karman_re200,target,51,20.4,velocity,center_ux,1.23323392868042 +karman_re200,target,51,20.4,velocity,center_uy,-0.3066662847995758 +karman_re200,target,51,20.4,velocity,lower_ux,0.6424577236175537 +karman_re200,target,51,20.4,velocity,lower_uy,-0.16322317719459534 +karman_re200,target,52,20.8,velocity,upper_ux,1.3953665494918823 +karman_re200,target,52,20.8,velocity,upper_uy,0.04223483055830002 +karman_re200,target,52,20.8,velocity,center_ux,1.2292051315307617 +karman_re200,target,52,20.8,velocity,center_uy,0.19861984252929688 +karman_re200,target,52,20.8,velocity,lower_ux,0.6406348943710327 +karman_re200,target,52,20.8,velocity,lower_uy,0.09497687965631485 +karman_re200,target,53,21.2,velocity,upper_ux,1.326870322227478 +karman_re200,target,53,21.2,velocity,upper_uy,0.21954357624053955 +karman_re200,target,53,21.2,velocity,center_ux,1.2000786066055298 +karman_re200,target,53,21.2,velocity,center_uy,0.5840315222740173 +karman_re200,target,53,21.2,velocity,lower_ux,0.7326827049255371 +karman_re200,target,53,21.2,velocity,lower_uy,0.30296459794044495 +karman_re200,target,54,21.6,velocity,upper_ux,1.219455599784851 +karman_re200,target,54,21.6,velocity,upper_uy,0.3370937407016754 +karman_re200,target,54,21.6,velocity,center_ux,1.1657097339630127 +karman_re200,target,54,21.6,velocity,center_uy,0.7231999039649963 +karman_re200,target,54,21.6,velocity,lower_ux,0.8691731095314026 +karman_re200,target,54,21.6,velocity,lower_uy,0.4029320776462555 +karman_re200,target,55,22.0,velocity,upper_ux,1.1019364595413208 +karman_re200,target,55,22.0,velocity,upper_uy,0.4048072397708893 +karman_re200,target,55,22.0,velocity,center_ux,1.1461493968963623 +karman_re200,target,55,22.0,velocity,center_uy,0.7321878671646118 +karman_re200,target,55,22.0,velocity,lower_ux,1.0039118528366089 +karman_re200,target,55,22.0,velocity,lower_uy,0.41921496391296387 +karman_re200,target,56,22.4,velocity,upper_ux,0.9788103699684143 +karman_re200,target,56,22.4,velocity,upper_uy,0.44441208243370056 +karman_re200,target,56,22.4,velocity,center_ux,1.1501349210739136 +karman_re200,target,56,22.4,velocity,center_uy,0.755568265914917 +karman_re200,target,56,22.4,velocity,lower_ux,1.1293193101882935 +karman_re200,target,56,22.4,velocity,lower_uy,0.41334086656570435 +karman_re200,target,57,22.8,velocity,upper_ux,0.8450515866279602 +karman_re200,target,57,22.8,velocity,upper_uy,0.43559661507606506 +karman_re200,target,57,22.8,velocity,center_ux,1.1739203929901123 +karman_re200,target,57,22.8,velocity,center_uy,0.7654556035995483 +karman_re200,target,57,22.8,velocity,lower_ux,1.2444207668304443 +karman_re200,target,57,22.8,velocity,lower_uy,0.3873451352119446 +karman_re200,target,58,23.2,velocity,upper_ux,0.7156000733375549 +karman_re200,target,58,23.2,velocity,upper_uy,0.3353787362575531 +karman_re200,target,58,23.2,velocity,center_ux,1.207456111907959 +karman_re200,target,58,23.2,velocity,center_uy,0.6304119229316711 +karman_re200,target,58,23.2,velocity,lower_ux,1.338577151298523 +karman_re200,target,58,23.2,velocity,lower_uy,0.28747424483299255 +karman_re200,target,59,23.6,velocity,upper_ux,0.6371737122535706 +karman_re200,target,59,23.6,velocity,upper_uy,0.12600842118263245 +karman_re200,target,59,23.6,velocity,center_ux,1.2297172546386719 +karman_re200,target,59,23.6,velocity,center_uy,0.23854587972164154 +karman_re200,target,59,23.6,velocity,lower_ux,1.4006538391113281 +karman_re200,target,59,23.6,velocity,lower_uy,0.12735505402088165 +karman_re200,target,60,24.0,velocity,upper_ux,0.6517125964164734 +karman_re200,target,60,24.0,velocity,upper_uy,-0.1298316866159439 +karman_re200,target,60,24.0,velocity,center_ux,1.2225568294525146 +karman_re200,target,60,24.0,velocity,center_uy,-0.2665444612503052 +karman_re200,target,60,24.0,velocity,lower_ux,1.393170952796936 +karman_re200,target,60,24.0,velocity,lower_uy,-0.0693708211183548 +karman_re200,target,61,24.4,velocity,upper_ux,0.752532422542572 +karman_re200,target,61,24.4,velocity,upper_uy,-0.32213521003723145 +karman_re200,target,61,24.4,velocity,center_ux,1.1909433603286743 +karman_re200,target,61,24.4,velocity,center_uy,-0.6191661953926086 +karman_re200,target,61,24.4,velocity,lower_ux,1.315279245376587 +karman_re200,target,61,24.4,velocity,lower_uy,-0.24105475842952728 +karman_re200,target,62,24.8,velocity,upper_ux,0.8885083794593811 +karman_re200,target,62,24.8,velocity,upper_uy,-0.4075084626674652 +karman_re200,target,62,24.8,velocity,center_ux,1.1576461791992188 +karman_re200,target,62,24.8,velocity,center_uy,-0.7287958264350891 +karman_re200,target,62,24.8,velocity,lower_ux,1.203163504600525 +karman_re200,target,62,24.8,velocity,lower_uy,-0.350127249956131 +karman_re200,target,63,25.2,velocity,upper_ux,1.0217252969741821 +karman_re200,target,63,25.2,velocity,upper_uy,-0.4168928265571594 +karman_re200,target,63,25.2,velocity,center_ux,1.1425868272781372 +karman_re200,target,63,25.2,velocity,center_uy,-0.734215259552002 +karman_re200,target,63,25.2,velocity,lower_ux,1.085143804550171 +karman_re200,target,63,25.2,velocity,lower_uy,-0.4133896231651306 +karman_re200,target,64,25.6,velocity,upper_ux,1.1449174880981445 +karman_re200,target,64,25.6,velocity,upper_uy,-0.4120800793170929 +karman_re200,target,64,25.6,velocity,center_ux,1.1491873264312744 +karman_re200,target,64,25.6,velocity,center_uy,-0.7604718208312988 +karman_re200,target,64,25.6,velocity,lower_ux,0.9598924517631531 +karman_re200,target,64,25.6,velocity,lower_uy,-0.44763362407684326 +karman_re200,target,65,26.0,velocity,upper_ux,1.261643886566162 +karman_re200,target,65,26.0,velocity,upper_uy,-0.3779408931732178 +karman_re200,target,65,26.0,velocity,center_ux,1.1790704727172852 +karman_re200,target,65,26.0,velocity,center_uy,-0.7613368034362793 +karman_re200,target,65,26.0,velocity,lower_ux,0.8282116055488586 +karman_re200,target,65,26.0,velocity,lower_uy,-0.42947861552238464 +karman_re200,target,66,26.4,velocity,upper_ux,1.3521968126296997 +karman_re200,target,66,26.4,velocity,upper_uy,-0.26794859766960144 +karman_re200,target,66,26.4,velocity,center_ux,1.2118003368377686 +karman_re200,target,66,26.4,velocity,center_uy,-0.5919644832611084 +karman_re200,target,66,26.4,velocity,lower_ux,0.7019073963165283 +karman_re200,target,66,26.4,velocity,lower_uy,-0.3135497570037842 +karman_re200,target,67,26.8,velocity,upper_ux,1.4053394794464111 +karman_re200,target,67,26.8,velocity,upper_uy,-0.10006710886955261 +karman_re200,target,67,26.8,velocity,center_ux,1.2293950319290161 +karman_re200,target,67,26.8,velocity,center_uy,-0.16931980848312378 +karman_re200,target,67,26.8,velocity,lower_ux,0.6326839923858643 +karman_re200,target,67,26.8,velocity,lower_uy,-0.09214387834072113 +karman_re200,target,68,27.2,velocity,upper_ux,1.385643720626831 +karman_re200,target,68,27.2,velocity,upper_uy,0.09779281914234161 +karman_re200,target,68,27.2,velocity,center_ux,1.2177488803863525 +karman_re200,target,68,27.2,velocity,center_uy,0.32995444536209106 +karman_re200,target,68,27.2,velocity,lower_ux,0.6597872376441956 +karman_re200,target,68,27.2,velocity,lower_uy,0.1610279679298401 +karman_re200,target,69,27.6,velocity,upper_ux,1.2999528646469116 +karman_re200,target,69,27.6,velocity,upper_uy,0.2619152069091797 +karman_re200,target,69,27.6,velocity,center_ux,1.1847224235534668 +karman_re200,target,69,27.6,velocity,center_uy,0.6481886506080627 +karman_re200,target,69,27.6,velocity,lower_ux,0.7682920694351196 +karman_re200,target,69,27.6,velocity,lower_uy,0.33879658579826355 +karman_re200,target,70,28.0,velocity,upper_ux,1.1871641874313354 +karman_re200,target,70,28.0,velocity,upper_uy,0.3630036413669586 +karman_re200,target,70,28.0,velocity,center_ux,1.155191421508789 +karman_re200,target,70,28.0,velocity,center_uy,0.7327533960342407 +karman_re200,target,70,28.0,velocity,lower_ux,0.9065823554992676 +karman_re200,target,70,28.0,velocity,lower_uy,0.41135188937187195 +karman_re200,target,71,28.4,velocity,upper_ux,1.069145679473877 +karman_re200,target,71,28.4,velocity,upper_uy,0.4220825135707855 +karman_re200,target,71,28.4,velocity,center_ux,1.1447166204452515 +karman_re200,target,71,28.4,velocity,center_uy,0.7357403635978699 +karman_re200,target,71,28.4,velocity,lower_ux,1.0394136905670166 +karman_re200,target,71,28.4,velocity,lower_uy,0.413943886756897 +karman_re200,target,72,28.8,velocity,upper_ux,0.9426110982894897 +karman_re200,target,72,28.8,velocity,upper_uy,0.4520453214645386 +karman_re200,target,72,28.8,velocity,center_ux,1.1566290855407715 +karman_re200,target,72,28.8,velocity,center_uy,0.7645737528800964 +karman_re200,target,72,28.8,velocity,lower_ux,1.1625860929489136 +karman_re200,target,72,28.8,velocity,lower_uy,0.4091102182865143 +karman_re200,target,73,29.2,velocity,upper_ux,0.8071735501289368 +karman_re200,target,73,29.2,velocity,upper_uy,0.42156052589416504 +karman_re200,target,73,29.2,velocity,center_ux,1.1875879764556885 +karman_re200,target,73,29.2,velocity,center_uy,0.7495121955871582 +karman_re200,target,73,29.2,velocity,lower_ux,1.2730673551559448 +karman_re200,target,73,29.2,velocity,lower_uy,0.36396658420562744 +karman_re200,target,74,29.6,velocity,upper_ux,0.6852220892906189 +karman_re200,target,74,29.6,velocity,upper_uy,0.2883439064025879 +karman_re200,target,74,29.6,velocity,center_ux,1.2215509414672852 +karman_re200,target,74,29.6,velocity,center_uy,0.5431302189826965 +karman_re200,target,74,29.6,velocity,lower_ux,1.359013319015503 +karman_re200,target,74,29.6,velocity,lower_uy,0.24543136358261108 +karman_re200,target,75,30.0,velocity,upper_ux,0.6296064257621765 +karman_re200,target,75,30.0,velocity,upper_uy,0.05358375981450081 +karman_re200,target,75,30.0,velocity,center_ux,1.2377055883407593 +karman_re200,target,75,30.0,velocity,center_uy,0.094445139169693 +karman_re200,target,75,30.0,velocity,lower_ux,1.4047045707702637 +karman_re200,target,75,30.0,velocity,lower_uy,0.07239814102649689 +karman_re200,target,76,30.4,velocity,upper_ux,0.6724912524223328 +karman_re200,target,76,30.4,velocity,upper_uy,-0.19660474359989166 +karman_re200,target,76,30.4,velocity,center_ux,1.221103549003601 +karman_re200,target,76,30.4,velocity,center_uy,-0.3904680907726288 +karman_re200,target,76,30.4,velocity,lower_ux,1.3744984865188599 +karman_re200,target,76,30.4,velocity,lower_uy,-0.12207785248756409 +karman_re200,target,77,30.8,velocity,upper_ux,0.7903012633323669 +karman_re200,target,77,30.8,velocity,upper_uy,-0.3592815101146698 +karman_re200,target,77,30.8,velocity,center_ux,1.1851640939712524 +karman_re200,target,77,30.8,velocity,center_uy,-0.6700721979141235 +karman_re200,target,77,30.8,velocity,lower_ux,1.2840759754180908 +karman_re200,target,77,30.8,velocity,lower_uy,-0.2759625315666199 +karman_re200,target,78,31.2,velocity,upper_ux,0.9277896285057068 +karman_re200,target,78,31.2,velocity,upper_uy,-0.4186011254787445 +karman_re200,target,78,31.2,velocity,center_ux,1.153418779373169 +karman_re200,target,78,31.2,velocity,center_uy,-0.7315514087677002 +karman_re200,target,78,31.2,velocity,lower_ux,1.1688511371612549 +karman_re200,target,78,31.2,velocity,lower_uy,-0.3684799075126648 +karman_re200,target,79,31.6,velocity,upper_ux,1.058003306388855 +karman_re200,target,79,31.6,velocity,upper_uy,-0.41627952456474304 +karman_re200,target,79,31.6,velocity,center_ux,1.1427254676818848 +karman_re200,target,79,31.6,velocity,center_uy,-0.736601710319519 +karman_re200,target,79,31.6,velocity,lower_ux,1.049797773361206 +karman_re200,target,79,31.6,velocity,lower_uy,-0.42321160435676575 +karman_re200,target,80,32.0,velocity,upper_ux,1.179205298423767 +karman_re200,target,80,32.0,velocity,upper_uy,-0.4110609292984009 +karman_re200,target,80,32.0,velocity,center_ux,1.1540882587432861 +karman_re200,target,80,32.0,velocity,center_uy,-0.767279863357544 +karman_re200,target,80,32.0,velocity,lower_ux,0.9220704436302185 +karman_re200,target,80,32.0,velocity,lower_uy,-0.4469248652458191 +karman_re200,target,81,32.4,velocity,upper_ux,1.2886607646942139 +karman_re200,target,81,32.4,velocity,upper_uy,-0.35553622245788574 +karman_re200,target,81,32.4,velocity,center_ux,1.1845730543136597 +karman_re200,target,81,32.4,velocity,center_uy,-0.7380309104919434 +karman_re200,target,81,32.4,velocity,lower_ux,0.7887726426124573 +karman_re200,target,81,32.4,velocity,lower_uy,-0.40518420934677124 +karman_re200,target,82,32.8,velocity,upper_ux,1.3742423057556152 +karman_re200,target,82,32.8,velocity,upper_uy,-0.22791574895381927 +karman_re200,target,82,32.8,velocity,center_ux,1.2157443761825562 +karman_re200,target,82,32.8,velocity,center_uy,-0.4962759017944336 +karman_re200,target,82,32.8,velocity,lower_ux,0.6750509738922119 +karman_re200,target,82,32.8,velocity,lower_uy,-0.2586243450641632 +karman_re200,target,83,33.2,velocity,upper_ux,1.4099029302597046 +karman_re200,target,83,33.2,velocity,upper_uy,-0.045736826956272125 +karman_re200,target,83,33.2,velocity,center_ux,1.2249236106872559 +karman_re200,target,83,33.2,velocity,center_uy,-0.024723341688513756 +karman_re200,target,83,33.2,velocity,lower_ux,0.6310122013092041 +karman_re200,target,83,33.2,velocity,lower_uy,-0.01886902004480362 +karman_re200,target,84,33.6,velocity,upper_ux,1.3690539598464966 +karman_re200,target,84,33.6,velocity,upper_uy,0.15009789168834686 +karman_re200,target,84,33.6,velocity,center_ux,1.2062873840332031 +karman_re200,target,84,33.6,velocity,center_uy,0.4455276429653168 +karman_re200,target,84,33.6,velocity,lower_ux,0.6852558851242065 +karman_re200,target,84,33.6,velocity,lower_uy,0.22065331041812897 +karman_re200,target,85,34.0,velocity,upper_ux,1.2708122730255127 +karman_re200,target,85,34.0,velocity,upper_uy,0.29762229323387146 +karman_re200,target,85,34.0,velocity,center_ux,1.1721919775009155 +karman_re200,target,85,34.0,velocity,center_uy,0.6914715766906738 +karman_re200,target,85,34.0,velocity,lower_ux,0.8068369030952454 +karman_re200,target,85,34.0,velocity,lower_uy,0.366841197013855 +karman_re200,target,86,34.4,velocity,upper_ux,1.153623104095459 +karman_re200,target,86,34.4,velocity,upper_uy,0.38382500410079956 +karman_re200,target,86,34.4,velocity,center_ux,1.1467112302780151 +karman_re200,target,86,34.4,velocity,center_uy,0.7350943684577942 +karman_re200,target,86,34.4,velocity,lower_ux,0.9434764385223389 +karman_re200,target,86,34.4,velocity,lower_uy,0.41525694727897644 +karman_re200,target,87,34.8,velocity,upper_ux,1.034733533859253 +karman_re200,target,87,34.8,velocity,upper_uy,0.43530404567718506 +karman_re200,target,87,34.8,velocity,center_ux,1.1444138288497925 +karman_re200,target,87,34.8,velocity,center_uy,0.7422714829444885 +karman_re200,target,87,34.8,velocity,lower_ux,1.0742360353469849 +karman_re200,target,87,34.8,velocity,lower_uy,0.4108043313026428 +karman_re200,target,88,35.2,velocity,upper_ux,0.9056580066680908 +karman_re200,target,88,35.2,velocity,upper_uy,0.45271241664886475 +karman_re200,target,88,35.2,velocity,center_ux,1.1632261276245117 +karman_re200,target,88,35.2,velocity,center_uy,0.7698184847831726 +karman_re200,target,88,35.2,velocity,lower_ux,1.1954177618026733 +karman_re200,target,88,35.2,velocity,lower_uy,0.4031636416912079 +karman_re200,target,89,35.6,velocity,upper_ux,0.7701370716094971 +karman_re200,target,89,35.6,velocity,upper_uy,0.3972446918487549 +karman_re200,target,89,35.6,velocity,center_ux,1.197996735572815 +karman_re200,target,89,35.6,velocity,center_uy,0.7187037467956543 +karman_re200,target,89,35.6,velocity,lower_ux,1.2997868061065674 +karman_re200,target,89,35.6,velocity,lower_uy,0.33646899461746216 +karman_re200,target,90,36.0,velocity,upper_ux,0.6611505150794983 +karman_re200,target,90,36.0,velocity,upper_uy,0.2317156344652176 +karman_re200,target,90,36.0,velocity,center_ux,1.2296894788742065 +karman_re200,target,90,36.0,velocity,center_uy,0.4371611773967743 +karman_re200,target,90,36.0,velocity,lower_ux,1.377913236618042 +karman_re200,target,90,36.0,velocity,lower_uy,0.20124311745166779 +karman_re200,target,91,36.4,velocity,upper_ux,0.6300160884857178 +karman_re200,target,91,36.4,velocity,upper_uy,-0.019332820549607277 +karman_re200,target,91,36.4,velocity,center_ux,1.235211730003357 +karman_re200,target,91,36.4,velocity,center_uy,-0.04979700595140457 +karman_re200,target,91,36.4,velocity,lower_ux,1.4019293785095215 +karman_re200,target,91,36.4,velocity,lower_uy,0.016817504540085793 +karman_re200,target,92,36.8,velocity,upper_ux,0.6988568902015686 +karman_re200,target,92,36.8,velocity,upper_uy,-0.2533515989780426 +karman_re200,target,92,36.8,velocity,center_ux,1.2122517824172974 +karman_re200,target,92,36.8,velocity,center_uy,-0.4951646327972412 +karman_re200,target,92,36.8,velocity,lower_ux,1.3527332544326782 +karman_re200,target,92,36.8,velocity,lower_uy,-0.17160217463970184 +karman_re200,target,93,37.2,velocity,upper_ux,0.8285494446754456 +karman_re200,target,93,37.2,velocity,upper_uy,-0.3849405348300934 +karman_re200,target,93,37.2,velocity,center_ux,1.1759305000305176 +karman_re200,target,93,37.2,velocity,center_uy,-0.7032528519630432 +karman_re200,target,93,37.2,velocity,lower_ux,1.2529147863388062 +karman_re200,target,93,37.2,velocity,lower_uy,-0.30770763754844666 +karman_re200,target,94,37.6,velocity,upper_ux,0.9654036164283752 +karman_re200,target,94,37.6,velocity,upper_uy,-0.4214187264442444 +karman_re200,target,94,37.6,velocity,center_ux,1.1493194103240967 +karman_re200,target,94,37.6,velocity,center_uy,-0.7318649888038635 +karman_re200,target,94,37.6,velocity,lower_ux,1.136244297027588 +karman_re200,target,94,37.6,velocity,lower_uy,-0.38680019974708557 +karman_re200,target,95,38.0,velocity,upper_ux,1.0931564569473267 +karman_re200,target,95,38.0,velocity,upper_uy,-0.4149501919746399 +karman_re200,target,95,38.0,velocity,center_ux,1.1456403732299805 +karman_re200,target,95,38.0,velocity,center_uy,-0.7449166774749756 +karman_re200,target,95,38.0,velocity,lower_ux,1.0158593654632568 +karman_re200,target,95,38.0,velocity,lower_uy,-0.434489905834198 +karman_re200,target,96,38.4,velocity,upper_ux,1.2121548652648926 +karman_re200,target,96,38.4,velocity,upper_uy,-0.403107225894928 +karman_re200,target,96,38.4,velocity,center_ux,1.1630048751831055 +karman_re200,target,96,38.4,velocity,center_uy,-0.7700828313827515 +karman_re200,target,96,38.4,velocity,lower_ux,0.8849519491195679 +karman_re200,target,96,38.4,velocity,lower_uy,-0.4442514181137085 +karman_re200,target,97,38.8,velocity,upper_ux,1.3139196634292603 +karman_re200,target,97,38.8,velocity,upper_uy,-0.325400710105896 +karman_re200,target,97,38.8,velocity,center_ux,1.195159673690796 +karman_re200,target,97,38.8,velocity,center_uy,-0.6970141530036926 +karman_re200,target,97,38.8,velocity,lower_ux,0.7516453266143799 +karman_re200,target,97,38.8,velocity,lower_uy,-0.3757374882698059 +karman_re200,target,98,39.2,velocity,upper_ux,1.3897857666015625 +karman_re200,target,98,39.2,velocity,upper_uy,-0.18147464096546173 +karman_re200,target,98,39.2,velocity,center_ux,1.2229379415512085 +karman_re200,target,98,39.2,velocity,center_uy,-0.379565954208374 +karman_re200,target,98,39.2,velocity,lower_ux,0.6530919671058655 +karman_re200,target,98,39.2,velocity,lower_uy,-0.19760756194591522 +karman_re200,target,99,39.6,velocity,upper_ux,1.4071046113967896 +karman_re200,target,99,39.6,velocity,upper_uy,0.010497271083295345 +karman_re200,target,99,39.6,velocity,center_ux,1.226029396057129 +karman_re200,target,99,39.6,velocity,center_uy,0.1207100972533226 +karman_re200,target,99,39.6,velocity,lower_ux,0.6378764510154724 +karman_re200,target,99,39.6,velocity,lower_uy,0.05472809448838234 +karman_re200,target,100,40.0,velocity,upper_ux,1.3448057174682617 +karman_re200,target,100,40.0,velocity,upper_uy,0.19731907546520233 +karman_re200,target,100,40.0,velocity,center_ux,1.1987900733947754 +karman_re200,target,100,40.0,velocity,center_uy,0.5418711304664612 +karman_re200,target,100,40.0,velocity,lower_ux,0.715945839881897 +karman_re200,target,100,40.0,velocity,lower_uy,0.27474966645240784 +karman_re200,target,101,40.4,velocity,upper_ux,1.2384634017944336 +karman_re200,target,101,40.4,velocity,upper_uy,0.32574164867401123 +karman_re200,target,101,40.4,velocity,center_ux,1.1644632816314697 +karman_re200,target,101,40.4,velocity,center_uy,0.7164311408996582 +karman_re200,target,101,40.4,velocity,lower_ux,0.8469335436820984 +karman_re200,target,101,40.4,velocity,lower_uy,0.39015793800354004 +karman_re200,target,102,40.8,velocity,upper_ux,1.1194807291030884 +karman_re200,target,102,40.8,velocity,upper_uy,0.3991674780845642 +karman_re200,target,102,40.8,velocity,center_ux,1.1427685022354126 +karman_re200,target,102,40.8,velocity,center_uy,0.7335611581802368 +karman_re200,target,102,40.8,velocity,lower_ux,0.9814994931221008 +karman_re200,target,102,40.8,velocity,lower_uy,0.41709762811660767 +karman_re200,target,103,41.2,velocity,upper_ux,0.9984327554702759 +karman_re200,target,103,41.2,velocity,upper_uy,0.4429665505886078 +karman_re200,target,103,41.2,velocity,center_ux,1.1454875469207764 +karman_re200,target,103,41.2,velocity,center_uy,0.7508708834648132 +karman_re200,target,103,41.2,velocity,lower_ux,1.1085928678512573 +karman_re200,target,103,41.2,velocity,lower_uy,0.4113878011703491 +karman_re200,target,104,41.6,velocity,upper_ux,0.8674507737159729 +karman_re200,target,104,41.6,velocity,upper_uy,0.44462600350379944 +karman_re200,target,104,41.6,velocity,center_ux,1.1695339679718018 +karman_re200,target,104,41.6,velocity,center_uy,0.7696846723556519 +karman_re200,target,104,41.6,velocity,lower_ux,1.2277792692184448 +karman_re200,target,104,41.6,velocity,lower_uy,0.39409908652305603 +karman_re200,target,105,42.0,velocity,upper_ux,0.7353729009628296 +karman_re200,target,105,42.0,velocity,upper_uy,0.36128926277160645 +karman_re200,target,105,42.0,velocity,center_ux,1.205022931098938 +karman_re200,target,105,42.0,velocity,center_uy,0.6688188314437866 +karman_re200,target,105,42.0,velocity,lower_ux,1.3263908624649048 +karman_re200,target,105,42.0,velocity,lower_uy,0.3057464361190796 +karman_re200,target,106,42.4,velocity,upper_ux,0.6434735059738159 +karman_re200,target,106,42.4,velocity,upper_uy,0.16632825136184692 +karman_re200,target,106,42.4,velocity,center_ux,1.230461835861206 +karman_re200,target,106,42.4,velocity,center_uy,0.313788503408432 +karman_re200,target,106,42.4,velocity,lower_ux,1.3942794799804688 +karman_re200,target,106,42.4,velocity,lower_uy,0.15418235957622528 +karman_re200,target,107,42.8,velocity,upper_ux,0.6407359838485718 +karman_re200,target,107,42.8,velocity,upper_uy,-0.09077037870883942 +karman_re200,target,107,42.8,velocity,center_ux,1.2274644374847412 +karman_re200,target,107,42.8,velocity,center_uy,-0.19166868925094604 +karman_re200,target,107,42.8,velocity,lower_ux,1.3976272344589233 +karman_re200,target,107,42.8,velocity,lower_uy,-0.039699286222457886 +karman_re200,target,108,43.2,velocity,upper_ux,0.7306630611419678 +karman_re200,target,108,43.2,velocity,upper_uy,-0.29965078830718994 +karman_re200,target,108,43.2,velocity,center_ux,1.1982367038726807 +karman_re200,target,108,43.2,velocity,center_uy,-0.5810656547546387 +karman_re200,target,108,43.2,velocity,lower_ux,1.3286868333816528 +karman_re200,target,108,43.2,velocity,lower_uy,-0.2185419201850891 +karman_re200,target,109,43.6,velocity,upper_ux,0.8665558099746704 +karman_re200,target,109,43.6,velocity,upper_uy,-0.4008864164352417 +karman_re200,target,109,43.6,velocity,center_ux,1.164628028869629 +karman_re200,target,109,43.6,velocity,center_uy,-0.723315954208374 +karman_re200,target,109,43.6,velocity,lower_ux,1.2212762832641602 +karman_re200,target,109,43.6,velocity,lower_uy,-0.3371944725513458 +karman_re200,target,110,44.0,velocity,upper_ux,1.0032483339309692 +karman_re200,target,110,44.0,velocity,upper_uy,-0.4187255799770355 +karman_re200,target,110,44.0,velocity,center_ux,1.1474722623825073 +karman_re200,target,110,44.0,velocity,center_uy,-0.7336922287940979 +karman_re200,target,110,44.0,velocity,lower_ux,1.105279803276062 +karman_re200,target,110,44.0,velocity,lower_uy,-0.40606066584587097 +karman_re200,target,111,44.4,velocity,upper_ux,1.1271543502807617 +karman_re200,target,111,44.4,velocity,upper_uy,-0.4122815430164337 +karman_re200,target,111,44.4,velocity,center_ux,1.150349497795105 +karman_re200,target,111,44.4,velocity,center_uy,-0.7553433179855347 +karman_re200,target,111,44.4,velocity,lower_ux,0.980854868888855 +karman_re200,target,111,44.4,velocity,lower_uy,-0.4455535411834717 +karman_re200,target,112,44.8,velocity,upper_ux,1.242807149887085 +karman_re200,target,112,44.8,velocity,upper_uy,-0.38711631298065186 +karman_re200,target,112,44.8,velocity,center_ux,1.1751459836959839 +karman_re200,target,112,44.8,velocity,center_uy,-0.7658312916755676 +karman_re200,target,112,44.8,velocity,lower_ux,0.8473809957504272 +karman_re200,target,112,44.8,velocity,lower_uy,-0.4377521872520447 +karman_re200,target,113,45.2,velocity,upper_ux,1.336987018585205 +karman_re200,target,113,45.2,velocity,upper_uy,-0.2882254123687744 +karman_re200,target,113,45.2,velocity,center_ux,1.2095627784729004 +karman_re200,target,113,45.2,velocity,center_uy,-0.6335060000419617 +karman_re200,target,113,45.2,velocity,lower_ux,0.7171857357025146 +karman_re200,target,113,45.2,velocity,lower_uy,-0.33864569664001465 +karman_re200,target,114,45.6,velocity,upper_ux,1.3984891176223755 +karman_re200,target,114,45.6,velocity,upper_uy,-0.12915879487991333 +karman_re200,target,114,45.6,velocity,center_ux,1.2318247556686401 +karman_re200,target,114,45.6,velocity,center_uy,-0.2444581836462021 +karman_re200,target,114,45.6,velocity,lower_ux,0.6366008520126343 +karman_re200,target,114,45.6,velocity,lower_uy,-0.1295522153377533 +karman_re200,target,115,46.0,velocity,upper_ux,1.3925787210464478 +karman_re200,target,115,46.0,velocity,upper_uy,0.06651175767183304 +karman_re200,target,115,46.0,velocity,center_ux,1.2255629301071167 +karman_re200,target,115,46.0,velocity,center_uy,0.2603011727333069 +karman_re200,target,115,46.0,velocity,lower_ux,0.650429368019104 +karman_re200,target,115,46.0,velocity,lower_uy,0.1273219883441925 +karman_re200,target,116,46.4,velocity,upper_ux,1.3159370422363281 +karman_re200,target,116,46.4,velocity,upper_uy,0.23826222121715546 +karman_re200,target,116,46.4,velocity,center_ux,1.1937506198883057 +karman_re200,target,116,46.4,velocity,center_uy,0.6157658100128174 +karman_re200,target,116,46.4,velocity,lower_ux,0.7509946227073669 +karman_re200,target,116,46.4,velocity,lower_uy,0.32164597511291504 +karman_re200,target,117,46.8,velocity,upper_ux,1.2041529417037964 +karman_re200,target,117,46.8,velocity,upper_uy,0.3478359878063202 +karman_re200,target,117,46.8,velocity,center_ux,1.1592354774475098 +karman_re200,target,117,46.8,velocity,center_uy,0.7277486324310303 +karman_re200,target,117,46.8,velocity,lower_ux,0.886889636516571 +karman_re200,target,117,46.8,velocity,lower_uy,0.4082416892051697 +karman_re200,target,118,47.2,velocity,upper_ux,1.085486888885498 +karman_re200,target,118,47.2,velocity,upper_uy,0.41106683015823364 +karman_re200,target,118,47.2,velocity,center_ux,1.142307162284851 +karman_re200,target,118,47.2,velocity,center_uy,0.7326557636260986 +karman_re200,target,118,47.2,velocity,lower_ux,1.0198227167129517 +karman_re200,target,118,47.2,velocity,lower_uy,0.41753166913986206 +karman_re200,target,119,47.6,velocity,upper_ux,0.9613037705421448 +karman_re200,target,119,47.6,velocity,upper_uy,0.4461672902107239 +karman_re200,target,119,47.6,velocity,center_ux,1.1486073732376099 +karman_re200,target,119,47.6,velocity,center_uy,0.7597392797470093 +karman_re200,target,119,47.6,velocity,lower_ux,1.1433537006378174 +karman_re200,target,119,47.6,velocity,lower_uy,0.41304686665534973 +karman_re200,target,120,48.0,velocity,upper_ux,0.8286058902740479 +karman_re200,target,120,48.0,velocity,upper_uy,0.4285667836666107 +karman_re200,target,120,48.0,velocity,center_ux,1.1758451461791992 +karman_re200,target,120,48.0,velocity,center_uy,0.761098325252533 +karman_re200,target,120,48.0,velocity,lower_ux,1.2585262060165405 +karman_re200,target,120,48.0,velocity,lower_uy,0.37939608097076416 +karman_re200,target,121,48.4,velocity,upper_ux,0.7036588191986084 +karman_re200,target,121,48.4,velocity,upper_uy,0.31501147150993347 +karman_re200,target,121,48.4,velocity,center_ux,1.2099281549453735 +karman_re200,target,121,48.4,velocity,center_uy,0.596459150314331 +karman_re200,target,121,48.4,velocity,lower_ux,1.3517268896102905 +karman_re200,target,121,48.4,velocity,lower_uy,0.2707557678222656 +karman_re200,target,122,48.8,velocity,upper_ux,0.6333559155464172 +karman_re200,target,122,48.8,velocity,upper_uy,0.09536248445510864 +karman_re200,target,122,48.8,velocity,center_ux,1.2274051904678345 +karman_re200,target,122,48.8,velocity,center_uy,0.17661188542842865 +karman_re200,target,122,48.8,velocity,lower_ux,1.4058854579925537 +karman_re200,target,122,48.8,velocity,lower_uy,0.10324689000844955 +karman_re200,target,123,49.2,velocity,upper_ux,0.6600056290626526 +karman_re200,target,123,49.2,velocity,upper_uy,-0.1573546677827835 +karman_re200,target,123,49.2,velocity,center_ux,1.2179564237594604 +karman_re200,target,123,49.2,velocity,center_uy,-0.3237065076828003 +karman_re200,target,123,49.2,velocity,lower_ux,1.389305591583252 +karman_re200,target,123,49.2,velocity,lower_uy,-0.09507619589567184 +karman_re200,target,124,49.6,velocity,upper_ux,0.7668589949607849 +karman_re200,target,124,49.6,velocity,upper_uy,-0.3362666964530945 +karman_re200,target,124,49.6,velocity,center_ux,1.1840225458145142 +karman_re200,target,124,49.6,velocity,center_uy,-0.645857036113739 +karman_re200,target,124,49.6,velocity,lower_ux,1.3023792505264282 +karman_re200,target,124,49.6,velocity,lower_uy,-0.26053759455680847 +karman_re200,target,125,50.0,velocity,upper_ux,0.9039013385772705 +karman_re200,target,125,50.0,velocity,upper_uy,-0.4101232886314392 +karman_re200,target,125,50.0,velocity,center_ux,1.1538522243499756 +karman_re200,target,125,50.0,velocity,center_uy,-0.7328752279281616 +karman_re200,target,125,50.0,velocity,lower_ux,1.1885448694229126 +karman_re200,target,125,50.0,velocity,lower_uy,-0.3625582754611969 +karman_re200,target,126,50.4,velocity,upper_ux,1.0372898578643799 +karman_re200,target,126,50.4,velocity,upper_uy,-0.4134593605995178 +karman_re200,target,126,50.4,velocity,center_ux,1.1439071893692017 +karman_re200,target,126,50.4,velocity,center_uy,-0.7357728481292725 +karman_re200,target,126,50.4,velocity,lower_ux,1.0708273649215698 +karman_re200,target,126,50.4,velocity,lower_uy,-0.4220084249973297 +karman_re200,target,127,50.8,velocity,upper_ux,1.1607236862182617 +karman_re200,target,127,50.8,velocity,upper_uy,-0.4088309407234192 +karman_re200,target,127,50.8,velocity,center_ux,1.1561143398284912 +karman_re200,target,127,50.8,velocity,center_uy,-0.7642973065376282 +karman_re200,target,127,50.8,velocity,lower_ux,0.9449203014373779 +karman_re200,target,127,50.8,velocity,lower_uy,-0.4524579346179962 +karman_re200,target,128,51.2,velocity,upper_ux,1.271374225616455 +karman_re200,target,128,51.2,velocity,upper_uy,-0.364863783121109 +karman_re200,target,128,51.2,velocity,center_ux,1.1869224309921265 +karman_re200,target,128,51.2,velocity,center_uy,-0.7508654594421387 +karman_re200,target,128,51.2,velocity,lower_ux,0.8091638088226318 +karman_re200,target,128,51.2,velocity,lower_uy,-0.4232823848724365 +karman_re200,target,129,51.6,velocity,upper_ux,1.3582955598831177 +karman_re200,target,129,51.6,velocity,upper_uy,-0.24736331403255463 +karman_re200,target,129,51.6,velocity,center_ux,1.2218674421310425 +karman_re200,target,129,51.6,velocity,center_uy,-0.5485369563102722 +karman_re200,target,129,51.6,velocity,lower_ux,0.6872100830078125 +karman_re200,target,129,51.6,velocity,lower_uy,-0.2918289303779602 +karman_re200,target,130,52.0,velocity,upper_ux,1.4025344848632812 +karman_re200,target,130,52.0,velocity,upper_uy,-0.0748256966471672 +karman_re200,target,130,52.0,velocity,center_ux,1.2364861965179443 +karman_re200,target,130,52.0,velocity,center_uy,-0.10182210057973862 +karman_re200,target,130,52.0,velocity,lower_ux,0.6286730766296387 +karman_re200,target,130,52.0,velocity,lower_uy,-0.05764621123671532 +karman_re200,target,131,52.4,velocity,upper_ux,1.3747682571411133 +karman_re200,target,131,52.4,velocity,upper_uy,0.11953894793987274 +karman_re200,target,131,52.4,velocity,center_ux,1.2215365171432495 +karman_re200,target,131,52.4,velocity,center_uy,0.3843681812286377 +karman_re200,target,131,52.4,velocity,lower_ux,0.6704578995704651 +karman_re200,target,131,52.4,velocity,lower_uy,0.19329933822155 +karman_re200,target,132,52.8,velocity,upper_ux,1.2856618165969849 +karman_re200,target,132,52.8,velocity,upper_uy,0.2741446793079376 +karman_re200,target,132,52.8,velocity,center_ux,1.186276912689209 +karman_re200,target,132,52.8,velocity,center_uy,0.6677452325820923 +karman_re200,target,132,52.8,velocity,lower_ux,0.7880907654762268 +karman_re200,target,132,52.8,velocity,lower_uy,0.3577485680580139 +karman_re200,target,133,53.2,velocity,upper_ux,1.1708494424819946 +karman_re200,target,133,53.2,velocity,upper_uy,0.3674088716506958 +karman_re200,target,133,53.2,velocity,center_ux,1.1543285846710205 +karman_re200,target,133,53.2,velocity,center_uy,0.731488049030304 +karman_re200,target,133,53.2,velocity,lower_ux,0.9256188869476318 +karman_re200,target,133,53.2,velocity,lower_uy,0.41841426491737366 +karman_re200,target,134,53.6,velocity,upper_ux,1.053216814994812 +karman_re200,target,134,53.6,velocity,upper_uy,0.4232105314731598 +karman_re200,target,134,53.6,velocity,center_ux,1.1447645425796509 +karman_re200,target,134,53.6,velocity,center_uy,0.7372259497642517 +karman_re200,target,134,53.6,velocity,lower_ux,1.0575573444366455 +karman_re200,target,134,53.6,velocity,lower_uy,0.41696667671203613 +karman_re200,target,135,54.0,velocity,upper_ux,0.9244616031646729 +karman_re200,target,135,54.0,velocity,upper_uy,0.4470650851726532 +karman_re200,target,135,54.0,velocity,center_ux,1.1546801328659058 +karman_re200,target,135,54.0,velocity,center_uy,0.7669320702552795 +karman_re200,target,135,54.0,velocity,lower_ux,1.1778396368026733 +karman_re200,target,135,54.0,velocity,lower_uy,0.41124457120895386 +karman_re200,target,136,54.4,velocity,upper_ux,0.7900410294532776 +karman_re200,target,136,54.4,velocity,upper_uy,0.40645480155944824 +karman_re200,target,136,54.4,velocity,center_ux,1.1841508150100708 +karman_re200,target,136,54.4,velocity,center_uy,0.7392711043357849 +karman_re200,target,136,54.4,velocity,lower_ux,1.2866075038909912 +karman_re200,target,136,54.4,velocity,lower_uy,0.35675933957099915 +karman_re200,target,137,54.8,velocity,upper_ux,0.6762039661407471 +karman_re200,target,137,54.8,velocity,upper_uy,0.26157456636428833 +karman_re200,target,137,54.8,velocity,center_ux,1.2158541679382324 +karman_re200,target,137,54.8,velocity,center_uy,0.5017211437225342 +karman_re200,target,137,54.8,velocity,lower_ux,1.3726609945297241 +karman_re200,target,137,54.8,velocity,lower_uy,0.23024865984916687 +karman_re200,target,138,55.2,velocity,upper_ux,0.6319699287414551 +karman_re200,target,138,55.2,velocity,upper_uy,0.022256571799516678 +karman_re200,target,138,55.2,velocity,center_ux,1.2273187637329102 +karman_re200,target,138,55.2,velocity,center_uy,0.031991031020879745 +karman_re200,target,138,55.2,velocity,lower_ux,1.4114630222320557 +karman_re200,target,138,55.2,velocity,lower_uy,0.048808857798576355 +karman_re200,target,139,55.6,velocity,upper_ux,0.6840167045593262 +karman_re200,target,139,55.6,velocity,upper_uy,-0.21826912462711334 +karman_re200,target,139,55.6,velocity,center_ux,1.207096815109253 +karman_re200,target,139,55.6,velocity,center_uy,-0.44012516736984253 +karman_re200,target,139,55.6,velocity,lower_ux,1.3697495460510254 +karman_re200,target,139,55.6,velocity,lower_uy,-0.1471855789422989 +karman_re200,target,140,56.0,velocity,upper_ux,0.80663001537323 +karman_re200,target,140,56.0,velocity,upper_uy,-0.3664456903934479 +karman_re200,target,140,56.0,velocity,center_ux,1.1747430562973022 +karman_re200,target,140,56.0,velocity,center_uy,-0.6903789043426514 +karman_re200,target,140,56.0,velocity,lower_ux,1.274206519126892 +karman_re200,target,140,56.0,velocity,lower_uy,-0.295854389667511 +karman_re200,target,141,56.4,velocity,upper_ux,0.9417510032653809 +karman_re200,target,141,56.4,velocity,upper_uy,-0.41548678278923035 +karman_re200,target,141,56.4,velocity,center_ux,1.1467888355255127 +karman_re200,target,141,56.4,velocity,center_uy,-0.734804630279541 +karman_re200,target,141,56.4,velocity,lower_ux,1.1551233530044556 +karman_re200,target,141,56.4,velocity,lower_uy,-0.38227206468582153 +karman_re200,target,142,56.8,velocity,upper_ux,1.0719921588897705 +karman_re200,target,142,56.8,velocity,upper_uy,-0.41130530834198 +karman_re200,target,142,56.8,velocity,center_ux,1.1432499885559082 +karman_re200,target,142,56.8,velocity,center_uy,-0.7416938543319702 +karman_re200,target,142,56.8,velocity,lower_ux,1.035821557044983 +karman_re200,target,142,56.8,velocity,lower_uy,-0.43400895595550537 +karman_re200,target,143,57.2,velocity,upper_ux,1.1938637495040894 +karman_re200,target,143,57.2,velocity,upper_uy,-0.40411698818206787 +karman_re200,target,143,57.2,velocity,center_ux,1.1619248390197754 +karman_re200,target,143,57.2,velocity,center_uy,-0.7697393298149109 +karman_re200,target,143,57.2,velocity,lower_ux,0.9076728224754333 +karman_re200,target,143,57.2,velocity,lower_uy,-0.4521189033985138 +karman_re200,target,144,57.6,velocity,upper_ux,1.298912525177002 +karman_re200,target,144,57.6,velocity,upper_uy,-0.3386199176311493 +karman_re200,target,144,57.6,velocity,center_ux,1.1961804628372192 +karman_re200,target,144,57.6,velocity,center_uy,-0.7212405204772949 +karman_re200,target,144,57.6,velocity,lower_ux,0.7723525166511536 +karman_re200,target,144,57.6,velocity,lower_uy,-0.3982457220554352 +karman_re200,target,145,58.0,velocity,upper_ux,1.3778724670410156 +karman_re200,target,145,58.0,velocity,upper_uy,-0.20404303073883057 +karman_re200,target,145,58.0,velocity,center_ux,1.2276910543441772 +karman_re200,target,145,58.0,velocity,center_uy,-0.4437674582004547 +karman_re200,target,145,58.0,velocity,lower_ux,0.662595808506012 +karman_re200,target,145,58.0,velocity,lower_uy,-0.23481211066246033 +karman_re200,target,146,58.4,velocity,upper_ux,1.4033770561218262 +karman_re200,target,146,58.4,velocity,upper_uy,-0.01930643431842327 +karman_re200,target,146,58.4,velocity,center_ux,1.233953833580017 +karman_re200,target,146,58.4,velocity,center_uy,0.04275932163000107 +karman_re200,target,146,58.4,velocity,lower_ux,0.6303136348724365 +karman_re200,target,146,58.4,velocity,lower_uy,0.015369472093880177 +karman_re200,target,147,58.8,velocity,upper_ux,1.3541167974472046 +karman_re200,target,147,58.8,velocity,upper_uy,0.169929638504982 +karman_re200,target,147,58.8,velocity,center_ux,1.2108454704284668 +karman_re200,target,147,58.8,velocity,center_uy,0.4905569851398468 +karman_re200,target,147,58.8,velocity,lower_ux,0.696811854839325 +karman_re200,target,147,58.8,velocity,lower_uy,0.24972358345985413 +karman_re200,target,148,59.2,velocity,upper_ux,1.254770278930664 +karman_re200,target,148,59.2,velocity,upper_uy,0.30724072456359863 +karman_re200,target,148,59.2,velocity,center_ux,1.1753926277160645 +karman_re200,target,148,59.2,velocity,center_uy,0.702505886554718 +karman_re200,target,148,59.2,velocity,lower_ux,0.8260251879692078 +karman_re200,target,148,59.2,velocity,lower_uy,0.38279902935028076 +karman_re200,target,149,59.6,velocity,upper_ux,1.1383918523788452 +karman_re200,target,149,59.6,velocity,upper_uy,0.38711127638816833 +karman_re200,target,149,59.6,velocity,center_ux,1.1495440006256104 +karman_re200,target,149,59.6,velocity,center_uy,0.732490599155426 +karman_re200,target,149,59.6,velocity,lower_ux,0.9633418321609497 +karman_re200,target,149,59.6,velocity,lower_uy,0.420537531375885 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_wide.csv new file mode 100644 index 0000000..5cfac3e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re200/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re200,target,0,0.0,1.0061203241348267,-0.4202466607093811,1.1459112167358398,-0.7315125465393066,1.099542498588562,-0.40402889251708984 +karman_re200,target,1,0.4,1.1314979791641235,-0.41448092460632324,1.1496598720550537,-0.7556675672531128,0.9769209027290344,-0.4430030882358551 +karman_re200,target,2,0.8,1.2457191944122314,-0.38774630427360535,1.1718828678131104,-0.7651585936546326,0.8424526453018188,-0.4332864284515381 +karman_re200,target,3,1.2,1.3409302234649658,-0.28695446252822876,1.2053757905960083,-0.627693772315979,0.7147693037986755,-0.33215153217315674 +karman_re200,target,4,1.6,1.4029152393341064,-0.12560489773750305,1.2267842292785645,-0.23285011947155,0.6375792026519775,-0.12260714173316956 +karman_re200,target,5,2.0,1.3938909769058228,0.0722707062959671,1.2188420295715332,0.2724592983722687,0.6527271866798401,0.13190880417823792 +karman_re200,target,6,2.4,1.3151382207870483,0.24408535659313202,1.188063383102417,0.6225897073745728,0.7541947960853577,0.322236567735672 +karman_re200,target,7,2.8,1.201866626739502,0.352737158536911,1.1554250717163086,0.7300110459327698,0.8894740343093872,0.40647074580192566 +karman_re200,target,8,3.2,1.0820727348327637,0.4151631295681,1.1401690244674683,0.7340755462646484,1.02138090133667,0.41494032740592957 +karman_re200,target,9,3.6,0.9590825438499451,0.44945603609085083,1.1504639387130737,0.7611984014511108,1.1468000411987305,0.41083499789237976 +karman_re200,target,10,4.0,0.8254351615905762,0.4296531677246094,1.1794705390930176,0.7595317363739014,1.2611180543899536,0.3752613067626953 +karman_re200,target,11,4.4,0.7000367641448975,0.31234806776046753,1.2141673564910889,0.5873796939849854,1.3521695137023926,0.2649742364883423 +karman_re200,target,12,4.8,0.6321656703948975,0.08879470825195312,1.2323132753372192,0.16179963946342468,1.404578685760498,0.09682059288024902 +karman_re200,target,13,5.2,0.6606960892677307,-0.16505712270736694,1.2208526134490967,-0.3361932039260864,1.3847543001174927,-0.10019093751907349 +karman_re200,target,14,5.6,0.7703366875648499,-0.341712087392807,1.1863658428192139,-0.6501986980438232,1.2978401184082031,-0.2628037929534912 +karman_re200,target,15,6.0,0.9092807173728943,-0.4129713773727417,1.156559705734253,-0.7323466539382935,1.1855684518814087,-0.36289647221565247 +karman_re200,target,16,6.4,1.0429860353469849,-0.4153308868408203,1.1466107368469238,-0.7364956736564636,1.0683244466781616,-0.42218804359436035 +karman_re200,target,17,6.8,1.164581298828125,-0.4098494350910187,1.1567883491516113,-0.7647659182548523,0.9406366944313049,-0.45097264647483826 +karman_re200,target,18,7.2,1.2745637893676758,-0.3635888397693634,1.1869657039642334,-0.748338520526886,0.8049766421318054,-0.41927844285964966 +karman_re200,target,19,7.6,1.3600529432296753,-0.24413421750068665,1.2199102640151978,-0.5385381579399109,0.6836235523223877,-0.28481191396713257 +karman_re200,target,20,8.0,1.4044378995895386,-0.06996555626392365,1.23489511013031,-0.08724331110715866,0.6297321915626526,-0.0496249720454216 +karman_re200,target,21,8.4,1.3744488954544067,0.1247779056429863,1.2190824747085571,0.39620763063430786,0.6742334961891174,0.19912700355052948 +karman_re200,target,22,8.8,1.2827049493789673,0.2783447802066803,1.183049201965332,0.6726399064064026,0.7922616600990295,0.36004894971847534 +karman_re200,target,23,9.2,1.1675591468811035,0.3701147437095642,1.152409553527832,0.7319865226745605,0.9297799468040466,0.418117493391037 +karman_re200,target,24,9.6,1.0474786758422852,0.4244083762168884,1.1416367292404175,0.7371789813041687,1.0590004920959473,0.4156007468700409 +karman_re200,target,25,10.0,0.9202739000320435,0.4475153982639313,1.1542975902557373,0.767738938331604,1.1807606220245361,0.41036635637283325 +karman_re200,target,26,10.4,0.7873950004577637,0.4044739007949829,1.1858620643615723,0.7365329265594482,1.2905795574188232,0.3536716103553772 +karman_re200,target,27,10.8,0.673668622970581,0.25623881816864014,1.2165898084640503,0.49082520604133606,1.3750957250595093,0.22524221241474152 +karman_re200,target,28,11.2,0.6308085918426514,0.015350966714322567,1.2255024909973145,0.01707409881055355,1.4096111059188843,0.04245686158537865 +karman_re200,target,29,11.6,0.6863319277763367,-0.22368963062763214,1.2064553499221802,-0.45121634006500244,1.367546558380127,-0.15298691391944885 +karman_re200,target,30,12.0,0.8081796765327454,-0.3683508038520813,1.1718859672546387,-0.6932443976402283,1.2684704065322876,-0.29940953850746155 +karman_re200,target,31,12.4,0.9459755420684814,-0.4155504107475281,1.14774489402771,-0.7351407408714294,1.152463436126709,-0.3849140405654907 +karman_re200,target,32,12.8,1.0764412879943848,-0.4106856882572174,1.1455292701721191,-0.7427115440368652,1.0331016778945923,-0.43614235520362854 +karman_re200,target,33,13.2,1.19695246219635,-0.40255001187324524,1.1643877029418945,-0.769832968711853,0.9034332036972046,-0.45283007621765137 +karman_re200,target,34,13.6,1.3010923862457275,-0.33461272716522217,1.1998295783996582,-0.7160637378692627,0.7682178616523743,-0.39574170112609863 +karman_re200,target,35,14.0,1.3777161836624146,-0.19870293140411377,1.2307361364364624,-0.43054068088531494,0.6593339443206787,-0.2282770276069641 +karman_re200,target,36,14.4,1.401091456413269,-0.013879950158298016,1.2362041473388672,0.058274589478969574,0.6302459836006165,0.024102605879306793 +karman_re200,target,37,14.8,1.351647973060608,0.1736230105161667,1.2132289409637451,0.5003538727760315,0.7013585567474365,0.2570909857749939 +karman_re200,target,38,15.2,1.2507925033569336,0.30854570865631104,1.1757792234420776,0.7042331099510193,0.831095814704895,0.38691815733909607 +karman_re200,target,39,15.6,1.1340986490249634,0.3867541253566742,1.1488568782806396,0.7313383221626282,0.9675085544586182,0.4220350682735443 +karman_re200,target,40,16.0,1.0137499570846558,0.4339534640312195,1.1451175212860107,0.7451016902923584,1.0951727628707886,0.415554016828537 +karman_re200,target,41,16.4,0.8825502991676331,0.4429272413253784,1.1616445779800415,0.770118236541748,1.2133851051330566,0.4033616781234741 +karman_re200,target,42,16.8,0.7506463527679443,0.3733823299407959,1.1942534446716309,0.6951748132705688,1.3161468505859375,0.3246815800666809 +karman_re200,target,43,17.2,0.6527177691459656,0.19420643150806427,1.2211723327636719,0.3739197552204132,1.3918195962905884,0.17956525087356567 +karman_re200,target,44,17.6,0.6375666260719299,-0.057723142206668854,1.2218372821807861,-0.1276477426290512,1.4059205055236816,-0.013579784892499447 +karman_re200,target,45,18.0,0.7174422740936279,-0.27584704756736755,1.1966134309768677,-0.5461786389350891,1.3445532321929932,-0.20030471682548523 +karman_re200,target,46,18.4,0.847872257232666,-0.3897981643676758,1.1625674962997437,-0.7179054021835327,1.237105369567871,-0.3281518816947937 +karman_re200,target,47,18.8,0.9826736450195312,-0.4160315990447998,1.142143964767456,-0.7341145873069763,1.1180930137634277,-0.401210755109787 +karman_re200,target,48,19.2,1.1119368076324463,-0.4109160602092743,1.1481564044952393,-0.7525647878646851,0.998892068862915,-0.4452706277370453 +karman_re200,target,49,19.6,1.2288569211959839,-0.3924413323402405,1.171181321144104,-0.7693881988525391,0.8657803535461426,-0.44552847743034363 +karman_re200,target,50,20.0,1.3267039060592651,-0.30303627252578735,1.2073442935943604,-0.6651919484138489,0.7333171963691711,-0.3603616952896118 +karman_re200,target,51,20.4,1.3937307596206665,-0.15110644698143005,1.23323392868042,-0.3066662847995758,0.6424577236175537,-0.16322317719459534 +karman_re200,target,52,20.8,1.3953665494918823,0.04223483055830002,1.2292051315307617,0.19861984252929688,0.6406348943710327,0.09497687965631485 +karman_re200,target,53,21.2,1.326870322227478,0.21954357624053955,1.2000786066055298,0.5840315222740173,0.7326827049255371,0.30296459794044495 +karman_re200,target,54,21.6,1.219455599784851,0.3370937407016754,1.1657097339630127,0.7231999039649963,0.8691731095314026,0.4029320776462555 +karman_re200,target,55,22.0,1.1019364595413208,0.4048072397708893,1.1461493968963623,0.7321878671646118,1.0039118528366089,0.41921496391296387 +karman_re200,target,56,22.4,0.9788103699684143,0.44441208243370056,1.1501349210739136,0.755568265914917,1.1293193101882935,0.41334086656570435 +karman_re200,target,57,22.8,0.8450515866279602,0.43559661507606506,1.1739203929901123,0.7654556035995483,1.2444207668304443,0.3873451352119446 +karman_re200,target,58,23.2,0.7156000733375549,0.3353787362575531,1.207456111907959,0.6304119229316711,1.338577151298523,0.28747424483299255 +karman_re200,target,59,23.6,0.6371737122535706,0.12600842118263245,1.2297172546386719,0.23854587972164154,1.4006538391113281,0.12735505402088165 +karman_re200,target,60,24.0,0.6517125964164734,-0.1298316866159439,1.2225568294525146,-0.2665444612503052,1.393170952796936,-0.0693708211183548 +karman_re200,target,61,24.4,0.752532422542572,-0.32213521003723145,1.1909433603286743,-0.6191661953926086,1.315279245376587,-0.24105475842952728 +karman_re200,target,62,24.8,0.8885083794593811,-0.4075084626674652,1.1576461791992188,-0.7287958264350891,1.203163504600525,-0.350127249956131 +karman_re200,target,63,25.2,1.0217252969741821,-0.4168928265571594,1.1425868272781372,-0.734215259552002,1.085143804550171,-0.4133896231651306 +karman_re200,target,64,25.6,1.1449174880981445,-0.4120800793170929,1.1491873264312744,-0.7604718208312988,0.9598924517631531,-0.44763362407684326 +karman_re200,target,65,26.0,1.261643886566162,-0.3779408931732178,1.1790704727172852,-0.7613368034362793,0.8282116055488586,-0.42947861552238464 +karman_re200,target,66,26.4,1.3521968126296997,-0.26794859766960144,1.2118003368377686,-0.5919644832611084,0.7019073963165283,-0.3135497570037842 +karman_re200,target,67,26.8,1.4053394794464111,-0.10006710886955261,1.2293950319290161,-0.16931980848312378,0.6326839923858643,-0.09214387834072113 +karman_re200,target,68,27.2,1.385643720626831,0.09779281914234161,1.2177488803863525,0.32995444536209106,0.6597872376441956,0.1610279679298401 +karman_re200,target,69,27.6,1.2999528646469116,0.2619152069091797,1.1847224235534668,0.6481886506080627,0.7682920694351196,0.33879658579826355 +karman_re200,target,70,28.0,1.1871641874313354,0.3630036413669586,1.155191421508789,0.7327533960342407,0.9065823554992676,0.41135188937187195 +karman_re200,target,71,28.4,1.069145679473877,0.4220825135707855,1.1447166204452515,0.7357403635978699,1.0394136905670166,0.413943886756897 +karman_re200,target,72,28.8,0.9426110982894897,0.4520453214645386,1.1566290855407715,0.7645737528800964,1.1625860929489136,0.4091102182865143 +karman_re200,target,73,29.2,0.8071735501289368,0.42156052589416504,1.1875879764556885,0.7495121955871582,1.2730673551559448,0.36396658420562744 +karman_re200,target,74,29.6,0.6852220892906189,0.2883439064025879,1.2215509414672852,0.5431302189826965,1.359013319015503,0.24543136358261108 +karman_re200,target,75,30.0,0.6296064257621765,0.05358375981450081,1.2377055883407593,0.094445139169693,1.4047045707702637,0.07239814102649689 +karman_re200,target,76,30.4,0.6724912524223328,-0.19660474359989166,1.221103549003601,-0.3904680907726288,1.3744984865188599,-0.12207785248756409 +karman_re200,target,77,30.8,0.7903012633323669,-0.3592815101146698,1.1851640939712524,-0.6700721979141235,1.2840759754180908,-0.2759625315666199 +karman_re200,target,78,31.2,0.9277896285057068,-0.4186011254787445,1.153418779373169,-0.7315514087677002,1.1688511371612549,-0.3684799075126648 +karman_re200,target,79,31.6,1.058003306388855,-0.41627952456474304,1.1427254676818848,-0.736601710319519,1.049797773361206,-0.42321160435676575 +karman_re200,target,80,32.0,1.179205298423767,-0.4110609292984009,1.1540882587432861,-0.767279863357544,0.9220704436302185,-0.4469248652458191 +karman_re200,target,81,32.4,1.2886607646942139,-0.35553622245788574,1.1845730543136597,-0.7380309104919434,0.7887726426124573,-0.40518420934677124 +karman_re200,target,82,32.8,1.3742423057556152,-0.22791574895381927,1.2157443761825562,-0.4962759017944336,0.6750509738922119,-0.2586243450641632 +karman_re200,target,83,33.2,1.4099029302597046,-0.045736826956272125,1.2249236106872559,-0.024723341688513756,0.6310122013092041,-0.01886902004480362 +karman_re200,target,84,33.6,1.3690539598464966,0.15009789168834686,1.2062873840332031,0.4455276429653168,0.6852558851242065,0.22065331041812897 +karman_re200,target,85,34.0,1.2708122730255127,0.29762229323387146,1.1721919775009155,0.6914715766906738,0.8068369030952454,0.366841197013855 +karman_re200,target,86,34.4,1.153623104095459,0.38382500410079956,1.1467112302780151,0.7350943684577942,0.9434764385223389,0.41525694727897644 +karman_re200,target,87,34.8,1.034733533859253,0.43530404567718506,1.1444138288497925,0.7422714829444885,1.0742360353469849,0.4108043313026428 +karman_re200,target,88,35.2,0.9056580066680908,0.45271241664886475,1.1632261276245117,0.7698184847831726,1.1954177618026733,0.4031636416912079 +karman_re200,target,89,35.6,0.7701370716094971,0.3972446918487549,1.197996735572815,0.7187037467956543,1.2997868061065674,0.33646899461746216 +karman_re200,target,90,36.0,0.6611505150794983,0.2317156344652176,1.2296894788742065,0.4371611773967743,1.377913236618042,0.20124311745166779 +karman_re200,target,91,36.4,0.6300160884857178,-0.019332820549607277,1.235211730003357,-0.04979700595140457,1.4019293785095215,0.016817504540085793 +karman_re200,target,92,36.8,0.6988568902015686,-0.2533515989780426,1.2122517824172974,-0.4951646327972412,1.3527332544326782,-0.17160217463970184 +karman_re200,target,93,37.2,0.8285494446754456,-0.3849405348300934,1.1759305000305176,-0.7032528519630432,1.2529147863388062,-0.30770763754844666 +karman_re200,target,94,37.6,0.9654036164283752,-0.4214187264442444,1.1493194103240967,-0.7318649888038635,1.136244297027588,-0.38680019974708557 +karman_re200,target,95,38.0,1.0931564569473267,-0.4149501919746399,1.1456403732299805,-0.7449166774749756,1.0158593654632568,-0.434489905834198 +karman_re200,target,96,38.4,1.2121548652648926,-0.403107225894928,1.1630048751831055,-0.7700828313827515,0.8849519491195679,-0.4442514181137085 +karman_re200,target,97,38.8,1.3139196634292603,-0.325400710105896,1.195159673690796,-0.6970141530036926,0.7516453266143799,-0.3757374882698059 +karman_re200,target,98,39.2,1.3897857666015625,-0.18147464096546173,1.2229379415512085,-0.379565954208374,0.6530919671058655,-0.19760756194591522 +karman_re200,target,99,39.6,1.4071046113967896,0.010497271083295345,1.226029396057129,0.1207100972533226,0.6378764510154724,0.05472809448838234 +karman_re200,target,100,40.0,1.3448057174682617,0.19731907546520233,1.1987900733947754,0.5418711304664612,0.715945839881897,0.27474966645240784 +karman_re200,target,101,40.4,1.2384634017944336,0.32574164867401123,1.1644632816314697,0.7164311408996582,0.8469335436820984,0.39015793800354004 +karman_re200,target,102,40.8,1.1194807291030884,0.3991674780845642,1.1427685022354126,0.7335611581802368,0.9814994931221008,0.41709762811660767 +karman_re200,target,103,41.2,0.9984327554702759,0.4429665505886078,1.1454875469207764,0.7508708834648132,1.1085928678512573,0.4113878011703491 +karman_re200,target,104,41.6,0.8674507737159729,0.44462600350379944,1.1695339679718018,0.7696846723556519,1.2277792692184448,0.39409908652305603 +karman_re200,target,105,42.0,0.7353729009628296,0.36128926277160645,1.205022931098938,0.6688188314437866,1.3263908624649048,0.3057464361190796 +karman_re200,target,106,42.4,0.6434735059738159,0.16632825136184692,1.230461835861206,0.313788503408432,1.3942794799804688,0.15418235957622528 +karman_re200,target,107,42.8,0.6407359838485718,-0.09077037870883942,1.2274644374847412,-0.19166868925094604,1.3976272344589233,-0.039699286222457886 +karman_re200,target,108,43.2,0.7306630611419678,-0.29965078830718994,1.1982367038726807,-0.5810656547546387,1.3286868333816528,-0.2185419201850891 +karman_re200,target,109,43.6,0.8665558099746704,-0.4008864164352417,1.164628028869629,-0.723315954208374,1.2212762832641602,-0.3371944725513458 +karman_re200,target,110,44.0,1.0032483339309692,-0.4187255799770355,1.1474722623825073,-0.7336922287940979,1.105279803276062,-0.40606066584587097 +karman_re200,target,111,44.4,1.1271543502807617,-0.4122815430164337,1.150349497795105,-0.7553433179855347,0.980854868888855,-0.4455535411834717 +karman_re200,target,112,44.8,1.242807149887085,-0.38711631298065186,1.1751459836959839,-0.7658312916755676,0.8473809957504272,-0.4377521872520447 +karman_re200,target,113,45.2,1.336987018585205,-0.2882254123687744,1.2095627784729004,-0.6335060000419617,0.7171857357025146,-0.33864569664001465 +karman_re200,target,114,45.6,1.3984891176223755,-0.12915879487991333,1.2318247556686401,-0.2444581836462021,0.6366008520126343,-0.1295522153377533 +karman_re200,target,115,46.0,1.3925787210464478,0.06651175767183304,1.2255629301071167,0.2603011727333069,0.650429368019104,0.1273219883441925 +karman_re200,target,116,46.4,1.3159370422363281,0.23826222121715546,1.1937506198883057,0.6157658100128174,0.7509946227073669,0.32164597511291504 +karman_re200,target,117,46.8,1.2041529417037964,0.3478359878063202,1.1592354774475098,0.7277486324310303,0.886889636516571,0.4082416892051697 +karman_re200,target,118,47.2,1.085486888885498,0.41106683015823364,1.142307162284851,0.7326557636260986,1.0198227167129517,0.41753166913986206 +karman_re200,target,119,47.6,0.9613037705421448,0.4461672902107239,1.1486073732376099,0.7597392797470093,1.1433537006378174,0.41304686665534973 +karman_re200,target,120,48.0,0.8286058902740479,0.4285667836666107,1.1758451461791992,0.761098325252533,1.2585262060165405,0.37939608097076416 +karman_re200,target,121,48.4,0.7036588191986084,0.31501147150993347,1.2099281549453735,0.596459150314331,1.3517268896102905,0.2707557678222656 +karman_re200,target,122,48.8,0.6333559155464172,0.09536248445510864,1.2274051904678345,0.17661188542842865,1.4058854579925537,0.10324689000844955 +karman_re200,target,123,49.2,0.6600056290626526,-0.1573546677827835,1.2179564237594604,-0.3237065076828003,1.389305591583252,-0.09507619589567184 +karman_re200,target,124,49.6,0.7668589949607849,-0.3362666964530945,1.1840225458145142,-0.645857036113739,1.3023792505264282,-0.26053759455680847 +karman_re200,target,125,50.0,0.9039013385772705,-0.4101232886314392,1.1538522243499756,-0.7328752279281616,1.1885448694229126,-0.3625582754611969 +karman_re200,target,126,50.4,1.0372898578643799,-0.4134593605995178,1.1439071893692017,-0.7357728481292725,1.0708273649215698,-0.4220084249973297 +karman_re200,target,127,50.8,1.1607236862182617,-0.4088309407234192,1.1561143398284912,-0.7642973065376282,0.9449203014373779,-0.4524579346179962 +karman_re200,target,128,51.2,1.271374225616455,-0.364863783121109,1.1869224309921265,-0.7508654594421387,0.8091638088226318,-0.4232823848724365 +karman_re200,target,129,51.6,1.3582955598831177,-0.24736331403255463,1.2218674421310425,-0.5485369563102722,0.6872100830078125,-0.2918289303779602 +karman_re200,target,130,52.0,1.4025344848632812,-0.0748256966471672,1.2364861965179443,-0.10182210057973862,0.6286730766296387,-0.05764621123671532 +karman_re200,target,131,52.4,1.3747682571411133,0.11953894793987274,1.2215365171432495,0.3843681812286377,0.6704578995704651,0.19329933822155 +karman_re200,target,132,52.8,1.2856618165969849,0.2741446793079376,1.186276912689209,0.6677452325820923,0.7880907654762268,0.3577485680580139 +karman_re200,target,133,53.2,1.1708494424819946,0.3674088716506958,1.1543285846710205,0.731488049030304,0.9256188869476318,0.41841426491737366 +karman_re200,target,134,53.6,1.053216814994812,0.4232105314731598,1.1447645425796509,0.7372259497642517,1.0575573444366455,0.41696667671203613 +karman_re200,target,135,54.0,0.9244616031646729,0.4470650851726532,1.1546801328659058,0.7669320702552795,1.1778396368026733,0.41124457120895386 +karman_re200,target,136,54.4,0.7900410294532776,0.40645480155944824,1.1841508150100708,0.7392711043357849,1.2866075038909912,0.35675933957099915 +karman_re200,target,137,54.8,0.6762039661407471,0.26157456636428833,1.2158541679382324,0.5017211437225342,1.3726609945297241,0.23024865984916687 +karman_re200,target,138,55.2,0.6319699287414551,0.022256571799516678,1.2273187637329102,0.031991031020879745,1.4114630222320557,0.048808857798576355 +karman_re200,target,139,55.6,0.6840167045593262,-0.21826912462711334,1.207096815109253,-0.44012516736984253,1.3697495460510254,-0.1471855789422989 +karman_re200,target,140,56.0,0.80663001537323,-0.3664456903934479,1.1747430562973022,-0.6903789043426514,1.274206519126892,-0.295854389667511 +karman_re200,target,141,56.4,0.9417510032653809,-0.41548678278923035,1.1467888355255127,-0.734804630279541,1.1551233530044556,-0.38227206468582153 +karman_re200,target,142,56.8,1.0719921588897705,-0.41130530834198,1.1432499885559082,-0.7416938543319702,1.035821557044983,-0.43400895595550537 +karman_re200,target,143,57.2,1.1938637495040894,-0.40411698818206787,1.1619248390197754,-0.7697393298149109,0.9076728224754333,-0.4521189033985138 +karman_re200,target,144,57.6,1.298912525177002,-0.3386199176311493,1.1961804628372192,-0.7212405204772949,0.7723525166511536,-0.3982457220554352 +karman_re200,target,145,58.0,1.3778724670410156,-0.20404303073883057,1.2276910543441772,-0.4437674582004547,0.662595808506012,-0.23481211066246033 +karman_re200,target,146,58.4,1.4033770561218262,-0.01930643431842327,1.233953833580017,0.04275932163000107,0.6303136348724365,0.015369472093880177 +karman_re200,target,147,58.8,1.3541167974472046,0.169929638504982,1.2108454704284668,0.4905569851398468,0.696811854839325,0.24972358345985413 +karman_re200,target,148,59.2,1.254770278930664,0.30724072456359863,1.1753926277160645,0.702505886554718,0.8260251879692078,0.38279902935028076 +karman_re200,target,149,59.6,1.1383918523788452,0.38711127638816833,1.1495440006256104,0.732490599155426,0.9633418321609497,0.420537531375885 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_dtw_convergence.csv new file mode 100644 index 0000000..0e55fd4 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re400,ppo,60,24.0,30,0.8039943393711534,9,0.9049980541070303,0.8243752323401471,0.6011611890203009,0.7621358950721818,0.8482281458874543,0.8830675197998061 +karman_re400,ppo,90,36.0,30,0.7823698226427142,9,0.9197987794876099,0.8833369256307682,0.34704164514938995,0.8004117638959238,0.8695678412914276,0.8740619804011658 +karman_re400,ppo,120,48.0,30,0.7704759978171852,9,0.9003907481829325,0.8791562211389343,0.25181636313597366,0.7988075971603393,0.8960946559906006,0.8965904012943308 +karman_re400,ppo,150,60.0,30,0.7763262817066993,-5,0.8923853615919749,0.8965057142389318,0.26601808567841845,0.8438679629315933,0.8810401678085327,0.8781403979907433 +karman_re400,ppo,180,72.0,30,0.7770882304848378,-3,0.8971249659856161,0.887099880593208,0.30522881696621573,0.8400845183680454,0.8711098293463388,0.861881371649603 +karman_re400,ppo,200,80.0,30,0.7772853368207708,2,0.894382506608963,0.8702748806836704,0.32024414439996085,0.8318432049748177,0.8632368981838227,0.8837303860733906 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_long.csv new file mode 100644 index 0000000..9dff280 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,ppo,0,0.0,velocity,upper_ux,1.2945877313613892 +karman_re400,ppo,0,0.0,velocity,upper_uy,-0.007552334573119879 +karman_re400,ppo,0,0.0,velocity,center_ux,0.9618828296661377 +karman_re400,ppo,0,0.0,velocity,center_uy,0.2384451925754547 +karman_re400,ppo,0,0.0,velocity,lower_ux,0.9797600507736206 +karman_re400,ppo,0,0.0,velocity,lower_uy,0.20209911465644836 +karman_re400,ppo,1,0.4,velocity,upper_ux,1.2029876708984375 +karman_re400,ppo,1,0.4,velocity,upper_uy,0.1543925255537033 +karman_re400,ppo,1,0.4,velocity,center_ux,1.0082988739013672 +karman_re400,ppo,1,0.4,velocity,center_uy,0.43940412998199463 +karman_re400,ppo,1,0.4,velocity,lower_ux,0.9903221726417542 +karman_re400,ppo,1,0.4,velocity,lower_uy,0.30786004662513733 +karman_re400,ppo,2,0.8,velocity,upper_ux,1.061565637588501 +karman_re400,ppo,2,0.8,velocity,upper_uy,0.2815289795398712 +karman_re400,ppo,2,0.8,velocity,center_ux,1.029922366142273 +karman_re400,ppo,2,0.8,velocity,center_uy,0.46695175766944885 +karman_re400,ppo,2,0.8,velocity,lower_ux,1.0382505655288696 +karman_re400,ppo,2,0.8,velocity,lower_uy,0.32796233892440796 +karman_re400,ppo,3,1.2,velocity,upper_ux,0.9878283739089966 +karman_re400,ppo,3,1.2,velocity,upper_uy,0.33410489559173584 +karman_re400,ppo,3,1.2,velocity,center_ux,1.0323195457458496 +karman_re400,ppo,3,1.2,velocity,center_uy,0.4657195806503296 +karman_re400,ppo,3,1.2,velocity,lower_ux,1.0988198518753052 +karman_re400,ppo,3,1.2,velocity,lower_uy,0.3440730571746826 +karman_re400,ppo,4,1.6,velocity,upper_ux,0.9530096650123596 +karman_re400,ppo,4,1.6,velocity,upper_uy,0.3446415960788727 +karman_re400,ppo,4,1.6,velocity,center_ux,1.0099246501922607 +karman_re400,ppo,4,1.6,velocity,center_uy,0.46917834877967834 +karman_re400,ppo,4,1.6,velocity,lower_ux,1.1644738912582397 +karman_re400,ppo,4,1.6,velocity,lower_uy,0.32023704051971436 +karman_re400,ppo,5,2.0,velocity,upper_ux,0.9409485459327698 +karman_re400,ppo,5,2.0,velocity,upper_uy,0.3297271728515625 +karman_re400,ppo,5,2.0,velocity,center_ux,0.9383397102355957 +karman_re400,ppo,5,2.0,velocity,center_uy,0.47054049372673035 +karman_re400,ppo,5,2.0,velocity,lower_ux,1.242544412612915 +karman_re400,ppo,5,2.0,velocity,lower_uy,0.2622535228729248 +karman_re400,ppo,6,2.4,velocity,upper_ux,0.9629225134849548 +karman_re400,ppo,6,2.4,velocity,upper_uy,0.22432272136211395 +karman_re400,ppo,6,2.4,velocity,center_ux,0.8956461548805237 +karman_re400,ppo,6,2.4,velocity,center_uy,0.21161901950836182 +karman_re400,ppo,6,2.4,velocity,lower_ux,1.2806036472320557 +karman_re400,ppo,6,2.4,velocity,lower_uy,0.13597525656223297 +karman_re400,ppo,7,2.8,velocity,upper_ux,0.9509938955307007 +karman_re400,ppo,7,2.8,velocity,upper_uy,-0.10989580303430557 +karman_re400,ppo,7,2.8,velocity,center_ux,0.9433658719062805 +karman_re400,ppo,7,2.8,velocity,center_uy,-0.1697004735469818 +karman_re400,ppo,7,2.8,velocity,lower_ux,1.2978366613388062 +karman_re400,ppo,7,2.8,velocity,lower_uy,0.05150219053030014 +karman_re400,ppo,8,3.2,velocity,upper_ux,0.9360213279724121 +karman_re400,ppo,8,3.2,velocity,upper_uy,-0.3133436441421509 +karman_re400,ppo,8,3.2,velocity,center_ux,0.9918474555015564 +karman_re400,ppo,8,3.2,velocity,center_uy,-0.3824121356010437 +karman_re400,ppo,8,3.2,velocity,lower_ux,1.2463754415512085 +karman_re400,ppo,8,3.2,velocity,lower_uy,-0.06889840960502625 +karman_re400,ppo,9,3.6,velocity,upper_ux,0.9764372110366821 +karman_re400,ppo,9,3.6,velocity,upper_uy,-0.33459118008613586 +karman_re400,ppo,9,3.6,velocity,center_ux,1.0087532997131348 +karman_re400,ppo,9,3.6,velocity,center_uy,-0.45228612422943115 +karman_re400,ppo,9,3.6,velocity,lower_ux,1.1087074279785156 +karman_re400,ppo,9,3.6,velocity,lower_uy,-0.21288402378559113 +karman_re400,ppo,10,4.0,velocity,upper_ux,1.0332534313201904 +karman_re400,ppo,10,4.0,velocity,upper_uy,-0.3571506440639496 +karman_re400,ppo,10,4.0,velocity,center_ux,1.0132272243499756 +karman_re400,ppo,10,4.0,velocity,center_uy,-0.44735461473464966 +karman_re400,ppo,10,4.0,velocity,lower_ux,1.021337866783142 +karman_re400,ppo,10,4.0,velocity,lower_uy,-0.27608853578567505 +karman_re400,ppo,11,4.4,velocity,upper_ux,1.0903476476669312 +karman_re400,ppo,11,4.4,velocity,upper_uy,-0.3615429997444153 +karman_re400,ppo,11,4.4,velocity,center_ux,0.9952223896980286 +karman_re400,ppo,11,4.4,velocity,center_uy,-0.4333096742630005 +karman_re400,ppo,11,4.4,velocity,lower_ux,0.9705037474632263 +karman_re400,ppo,11,4.4,velocity,lower_uy,-0.2888203561306 +karman_re400,ppo,12,4.8,velocity,upper_ux,1.158592700958252 +karman_re400,ppo,12,4.8,velocity,upper_uy,-0.3369537591934204 +karman_re400,ppo,12,4.8,velocity,center_ux,0.9475677609443665 +karman_re400,ppo,12,4.8,velocity,center_uy,-0.4300837218761444 +karman_re400,ppo,12,4.8,velocity,lower_ux,0.9388188123703003 +karman_re400,ppo,12,4.8,velocity,lower_uy,-0.2666848599910736 +karman_re400,ppo,13,5.2,velocity,upper_ux,1.2299121618270874 +karman_re400,ppo,13,5.2,velocity,upper_uy,-0.2767459750175476 +karman_re400,ppo,13,5.2,velocity,center_ux,0.8473767638206482 +karman_re400,ppo,13,5.2,velocity,center_uy,-0.37347152829170227 +karman_re400,ppo,13,5.2,velocity,lower_ux,0.9045126438140869 +karman_re400,ppo,13,5.2,velocity,lower_uy,-0.21095703542232513 +karman_re400,ppo,14,5.6,velocity,upper_ux,1.2531484365463257 +karman_re400,ppo,14,5.6,velocity,upper_uy,-0.1636696606874466 +karman_re400,ppo,14,5.6,velocity,center_ux,0.7688860297203064 +karman_re400,ppo,14,5.6,velocity,center_uy,-0.09718357771635056 +karman_re400,ppo,14,5.6,velocity,lower_ux,0.8592604994773865 +karman_re400,ppo,14,5.6,velocity,lower_uy,0.053090911358594894 +karman_re400,ppo,15,6.0,velocity,upper_ux,1.2712312936782837 +karman_re400,ppo,15,6.0,velocity,upper_uy,-0.09058189392089844 +karman_re400,ppo,15,6.0,velocity,center_ux,0.7663136124610901 +karman_re400,ppo,15,6.0,velocity,center_uy,0.22371460497379303 +karman_re400,ppo,15,6.0,velocity,lower_ux,0.8680256605148315 +karman_re400,ppo,15,6.0,velocity,lower_uy,0.2863808274269104 +karman_re400,ppo,16,6.4,velocity,upper_ux,1.2352362871170044 +karman_re400,ppo,16,6.4,velocity,upper_uy,-0.03320012241601944 +karman_re400,ppo,16,6.4,velocity,center_ux,0.7723770141601562 +karman_re400,ppo,16,6.4,velocity,center_uy,0.4180503189563751 +karman_re400,ppo,16,6.4,velocity,lower_ux,0.9210410118103027 +karman_re400,ppo,16,6.4,velocity,lower_uy,0.3475176692008972 +karman_re400,ppo,17,6.8,velocity,upper_ux,1.0803461074829102 +karman_re400,ppo,17,6.8,velocity,upper_uy,0.06625694036483765 +karman_re400,ppo,17,6.8,velocity,center_ux,0.752284824848175 +karman_re400,ppo,17,6.8,velocity,center_uy,0.5161434412002563 +karman_re400,ppo,17,6.8,velocity,lower_ux,0.9783899784088135 +karman_re400,ppo,17,6.8,velocity,lower_uy,0.4150761365890503 +karman_re400,ppo,18,7.2,velocity,upper_ux,0.9588268399238586 +karman_re400,ppo,18,7.2,velocity,upper_uy,0.20988255739212036 +karman_re400,ppo,18,7.2,velocity,center_ux,0.7199466824531555 +karman_re400,ppo,18,7.2,velocity,center_uy,0.5364031791687012 +karman_re400,ppo,18,7.2,velocity,lower_ux,1.0383403301239014 +karman_re400,ppo,18,7.2,velocity,lower_uy,0.4553094506263733 +karman_re400,ppo,19,7.6,velocity,upper_ux,0.9036639332771301 +karman_re400,ppo,19,7.6,velocity,upper_uy,0.22734548151493073 +karman_re400,ppo,19,7.6,velocity,center_ux,0.6581007242202759 +karman_re400,ppo,19,7.6,velocity,center_uy,0.5310183167457581 +karman_re400,ppo,19,7.6,velocity,lower_ux,1.1126697063446045 +karman_re400,ppo,19,7.6,velocity,lower_uy,0.5028014779090881 +karman_re400,ppo,20,8.0,velocity,upper_ux,0.8836416602134705 +karman_re400,ppo,20,8.0,velocity,upper_uy,0.15759526193141937 +karman_re400,ppo,20,8.0,velocity,center_ux,0.5909980535507202 +karman_re400,ppo,20,8.0,velocity,center_uy,0.42517322301864624 +karman_re400,ppo,20,8.0,velocity,lower_ux,1.2076791524887085 +karman_re400,ppo,20,8.0,velocity,lower_uy,0.525130033493042 +karman_re400,ppo,21,8.4,velocity,upper_ux,0.8793610334396362 +karman_re400,ppo,21,8.4,velocity,upper_uy,0.06001695245504379 +karman_re400,ppo,21,8.4,velocity,center_ux,0.5167574882507324 +karman_re400,ppo,21,8.4,velocity,center_uy,0.21522842347621918 +karman_re400,ppo,21,8.4,velocity,lower_ux,1.3514695167541504 +karman_re400,ppo,21,8.4,velocity,lower_uy,0.5129855871200562 +karman_re400,ppo,22,8.8,velocity,upper_ux,0.8697643876075745 +karman_re400,ppo,22,8.8,velocity,upper_uy,-0.07559230178594589 +karman_re400,ppo,22,8.8,velocity,center_ux,0.4323701858520508 +karman_re400,ppo,22,8.8,velocity,center_uy,-0.04542352259159088 +karman_re400,ppo,22,8.8,velocity,lower_ux,1.6753708124160767 +karman_re400,ppo,22,8.8,velocity,lower_uy,0.4163963198661804 +karman_re400,ppo,23,9.2,velocity,upper_ux,0.8889505863189697 +karman_re400,ppo,23,9.2,velocity,upper_uy,-0.20787867903709412 +karman_re400,ppo,23,9.2,velocity,center_ux,0.40113362669944763 +karman_re400,ppo,23,9.2,velocity,center_uy,-0.3359532058238983 +karman_re400,ppo,23,9.2,velocity,lower_ux,1.7013936042785645 +karman_re400,ppo,23,9.2,velocity,lower_uy,-0.27522650361061096 +karman_re400,ppo,24,9.6,velocity,upper_ux,0.9347988367080688 +karman_re400,ppo,24,9.6,velocity,upper_uy,-0.3119686245918274 +karman_re400,ppo,24,9.6,velocity,center_ux,0.42423737049102783 +karman_re400,ppo,24,9.6,velocity,center_uy,-0.5709481239318848 +karman_re400,ppo,24,9.6,velocity,lower_ux,1.3564871549606323 +karman_re400,ppo,24,9.6,velocity,lower_uy,-0.7452791333198547 +karman_re400,ppo,25,10.0,velocity,upper_ux,1.0040267705917358 +karman_re400,ppo,25,10.0,velocity,upper_uy,-0.3801387548446655 +karman_re400,ppo,25,10.0,velocity,center_ux,0.4758201539516449 +karman_re400,ppo,25,10.0,velocity,center_uy,-0.7056920528411865 +karman_re400,ppo,25,10.0,velocity,lower_ux,1.098390817642212 +karman_re400,ppo,25,10.0,velocity,lower_uy,-0.7745170593261719 +karman_re400,ppo,26,10.4,velocity,upper_ux,1.104073166847229 +karman_re400,ppo,26,10.4,velocity,upper_uy,-0.4380863606929779 +karman_re400,ppo,26,10.4,velocity,center_ux,0.4910823702812195 +karman_re400,ppo,26,10.4,velocity,center_uy,-0.7745370268821716 +karman_re400,ppo,26,10.4,velocity,lower_ux,0.9552512168884277 +karman_re400,ppo,26,10.4,velocity,lower_uy,-0.6457266807556152 +karman_re400,ppo,27,10.8,velocity,upper_ux,1.2154945135116577 +karman_re400,ppo,27,10.8,velocity,upper_uy,-0.4237079620361328 +karman_re400,ppo,27,10.8,velocity,center_ux,0.44312331080436707 +karman_re400,ppo,27,10.8,velocity,center_uy,-0.7782481908798218 +karman_re400,ppo,27,10.8,velocity,lower_ux,0.8718528151512146 +karman_re400,ppo,27,10.8,velocity,lower_uy,-0.5140237212181091 +karman_re400,ppo,28,11.2,velocity,upper_ux,1.3745976686477661 +karman_re400,ppo,28,11.2,velocity,upper_uy,-0.3705565333366394 +karman_re400,ppo,28,11.2,velocity,center_ux,0.29120856523513794 +karman_re400,ppo,28,11.2,velocity,center_uy,-0.6980564594268799 +karman_re400,ppo,28,11.2,velocity,lower_ux,0.8240928053855896 +karman_re400,ppo,28,11.2,velocity,lower_uy,-0.3517909646034241 +karman_re400,ppo,29,11.6,velocity,upper_ux,1.522789478302002 +karman_re400,ppo,29,11.6,velocity,upper_uy,-0.16642038524150848 +karman_re400,ppo,29,11.6,velocity,center_ux,0.06428109854459763 +karman_re400,ppo,29,11.6,velocity,center_uy,-0.4028189182281494 +karman_re400,ppo,29,11.6,velocity,lower_ux,0.8005425333976746 +karman_re400,ppo,29,11.6,velocity,lower_uy,-0.1719362437725067 +karman_re400,ppo,30,12.0,velocity,upper_ux,1.6047321557998657 +karman_re400,ppo,30,12.0,velocity,upper_uy,0.17414121329784393 +karman_re400,ppo,30,12.0,velocity,center_ux,-0.006034653168171644 +karman_re400,ppo,30,12.0,velocity,center_uy,0.1611604243516922 +karman_re400,ppo,30,12.0,velocity,lower_ux,0.7831825017929077 +karman_re400,ppo,30,12.0,velocity,lower_uy,0.02988564223051071 +karman_re400,ppo,31,12.4,velocity,upper_ux,1.5434622764587402 +karman_re400,ppo,31,12.4,velocity,upper_uy,0.5108751654624939 +karman_re400,ppo,31,12.4,velocity,center_ux,0.18883930146694183 +karman_re400,ppo,31,12.4,velocity,center_uy,0.6245144009590149 +karman_re400,ppo,31,12.4,velocity,lower_ux,0.8089252710342407 +karman_re400,ppo,31,12.4,velocity,lower_uy,0.1952533721923828 +karman_re400,ppo,32,12.8,velocity,upper_ux,1.3297700881958008 +karman_re400,ppo,32,12.8,velocity,upper_uy,0.6863446831703186 +karman_re400,ppo,32,12.8,velocity,center_ux,0.42651844024658203 +karman_re400,ppo,32,12.8,velocity,center_uy,0.8365367650985718 +karman_re400,ppo,32,12.8,velocity,lower_ux,0.8851203918457031 +karman_re400,ppo,32,12.8,velocity,lower_uy,0.29090169072151184 +karman_re400,ppo,33,13.2,velocity,upper_ux,1.093125820159912 +karman_re400,ppo,33,13.2,velocity,upper_uy,0.7155902981758118 +karman_re400,ppo,33,13.2,velocity,center_ux,0.5795248746871948 +karman_re400,ppo,33,13.2,velocity,center_uy,0.9641520977020264 +karman_re400,ppo,33,13.2,velocity,lower_ux,0.9833737015724182 +karman_re400,ppo,33,13.2,velocity,lower_uy,0.32959532737731934 +karman_re400,ppo,34,13.6,velocity,upper_ux,0.8751800060272217 +karman_re400,ppo,34,13.6,velocity,upper_uy,0.645722508430481 +karman_re400,ppo,34,13.6,velocity,center_ux,0.6980370283126831 +karman_re400,ppo,34,13.6,velocity,center_uy,1.0424959659576416 +karman_re400,ppo,34,13.6,velocity,lower_ux,1.1040922403335571 +karman_re400,ppo,34,13.6,velocity,lower_uy,0.33286595344543457 +karman_re400,ppo,35,14.0,velocity,upper_ux,0.6887016296386719 +karman_re400,ppo,35,14.0,velocity,upper_uy,0.518332302570343 +karman_re400,ppo,35,14.0,velocity,center_ux,0.8188632130622864 +karman_re400,ppo,35,14.0,velocity,center_uy,1.0672075748443604 +karman_re400,ppo,35,14.0,velocity,lower_ux,1.2118709087371826 +karman_re400,ppo,35,14.0,velocity,lower_uy,0.2638551592826843 +karman_re400,ppo,36,14.4,velocity,upper_ux,0.5400296449661255 +karman_re400,ppo,36,14.4,velocity,upper_uy,0.34481537342071533 +karman_re400,ppo,36,14.4,velocity,center_ux,0.9179675579071045 +karman_re400,ppo,36,14.4,velocity,center_uy,1.2253062725067139 +karman_re400,ppo,36,14.4,velocity,lower_ux,1.2226108312606812 +karman_re400,ppo,36,14.4,velocity,lower_uy,0.06401640921831131 +karman_re400,ppo,37,14.8,velocity,upper_ux,0.4630378484725952 +karman_re400,ppo,37,14.8,velocity,upper_uy,0.11973875761032104 +karman_re400,ppo,37,14.8,velocity,center_ux,0.9832708239555359 +karman_re400,ppo,37,14.8,velocity,center_uy,0.5897185802459717 +karman_re400,ppo,37,14.8,velocity,lower_ux,1.2902241945266724 +karman_re400,ppo,37,14.8,velocity,lower_uy,-0.003869620617479086 +karman_re400,ppo,38,15.2,velocity,upper_ux,0.5051117539405823 +karman_re400,ppo,38,15.2,velocity,upper_uy,-0.09512675553560257 +karman_re400,ppo,38,15.2,velocity,center_ux,0.9784529805183411 +karman_re400,ppo,38,15.2,velocity,center_uy,-0.8189487457275391 +karman_re400,ppo,38,15.2,velocity,lower_ux,1.3039783239364624 +karman_re400,ppo,38,15.2,velocity,lower_uy,-0.04956486076116562 +karman_re400,ppo,39,15.6,velocity,upper_ux,0.6700543761253357 +karman_re400,ppo,39,15.6,velocity,upper_uy,-0.18788890540599823 +karman_re400,ppo,39,15.6,velocity,center_ux,0.9893054366111755 +karman_re400,ppo,39,15.6,velocity,center_uy,-1.291040062904358 +karman_re400,ppo,39,15.6,velocity,lower_ux,1.120293378829956 +karman_re400,ppo,39,15.6,velocity,lower_uy,-0.1501324325799942 +karman_re400,ppo,40,16.0,velocity,upper_ux,0.811444103717804 +karman_re400,ppo,40,16.0,velocity,upper_uy,-0.25365281105041504 +karman_re400,ppo,40,16.0,velocity,center_ux,1.0458261966705322 +karman_re400,ppo,40,16.0,velocity,center_uy,-1.137983798980713 +karman_re400,ppo,40,16.0,velocity,lower_ux,0.8503017425537109 +karman_re400,ppo,40,16.0,velocity,lower_uy,-0.3654833137989044 +karman_re400,ppo,41,16.4,velocity,upper_ux,0.9286652207374573 +karman_re400,ppo,41,16.4,velocity,upper_uy,-0.27140557765960693 +karman_re400,ppo,41,16.4,velocity,center_ux,1.1387633085250854 +karman_re400,ppo,41,16.4,velocity,center_uy,-0.9219917058944702 +karman_re400,ppo,41,16.4,velocity,lower_ux,0.619404137134552 +karman_re400,ppo,41,16.4,velocity,lower_uy,-0.5725439190864563 +karman_re400,ppo,42,16.8,velocity,upper_ux,1.046372413635254 +karman_re400,ppo,42,16.8,velocity,upper_uy,-0.23207250237464905 +karman_re400,ppo,42,16.8,velocity,center_ux,1.2334133386611938 +karman_re400,ppo,42,16.8,velocity,center_uy,-0.639869213104248 +karman_re400,ppo,42,16.8,velocity,lower_ux,0.4327157735824585 +karman_re400,ppo,42,16.8,velocity,lower_uy,-0.610937237739563 +karman_re400,ppo,43,17.2,velocity,upper_ux,1.1467210054397583 +karman_re400,ppo,43,17.2,velocity,upper_uy,-0.10713931918144226 +karman_re400,ppo,43,17.2,velocity,center_ux,1.362494945526123 +karman_re400,ppo,43,17.2,velocity,center_uy,-0.3372308313846588 +karman_re400,ppo,43,17.2,velocity,lower_ux,0.1296721249818802 +karman_re400,ppo,43,17.2,velocity,lower_uy,-0.46416541934013367 +karman_re400,ppo,44,17.6,velocity,upper_ux,1.1716506481170654 +karman_re400,ppo,44,17.6,velocity,upper_uy,0.05486166477203369 +karman_re400,ppo,44,17.6,velocity,center_ux,1.4131550788879395 +karman_re400,ppo,44,17.6,velocity,center_uy,-0.04554692283272743 +karman_re400,ppo,44,17.6,velocity,lower_ux,-0.05352971702814102 +karman_re400,ppo,44,17.6,velocity,lower_uy,0.11405301094055176 +karman_re400,ppo,45,18.0,velocity,upper_ux,1.3112363815307617 +karman_re400,ppo,45,18.0,velocity,upper_uy,0.005412344820797443 +karman_re400,ppo,45,18.0,velocity,center_ux,1.332961082458496 +karman_re400,ppo,45,18.0,velocity,center_uy,0.22056607902050018 +karman_re400,ppo,45,18.0,velocity,lower_ux,0.21635925769805908 +karman_re400,ppo,45,18.0,velocity,lower_uy,0.5882806181907654 +karman_re400,ppo,46,18.4,velocity,upper_ux,1.4555097818374634 +karman_re400,ppo,46,18.4,velocity,upper_uy,-0.025947589427232742 +karman_re400,ppo,46,18.4,velocity,center_ux,1.18500554561615 +karman_re400,ppo,46,18.4,velocity,center_uy,0.3824236989021301 +karman_re400,ppo,46,18.4,velocity,lower_ux,0.5811022520065308 +karman_re400,ppo,46,18.4,velocity,lower_uy,0.5508230328559875 +karman_re400,ppo,47,18.8,velocity,upper_ux,1.2550865411758423 +karman_re400,ppo,47,18.8,velocity,upper_uy,0.0804920494556427 +karman_re400,ppo,47,18.8,velocity,center_ux,1.018151044845581 +karman_re400,ppo,47,18.8,velocity,center_uy,0.4860999584197998 +karman_re400,ppo,47,18.8,velocity,lower_ux,0.9073861837387085 +karman_re400,ppo,47,18.8,velocity,lower_uy,0.3633980453014374 +karman_re400,ppo,48,19.2,velocity,upper_ux,1.1013743877410889 +karman_re400,ppo,48,19.2,velocity,upper_uy,0.08718661963939667 +karman_re400,ppo,48,19.2,velocity,center_ux,0.904313862323761 +karman_re400,ppo,48,19.2,velocity,center_uy,0.6247190237045288 +karman_re400,ppo,48,19.2,velocity,lower_ux,1.0708966255187988 +karman_re400,ppo,48,19.2,velocity,lower_uy,0.33191654086112976 +karman_re400,ppo,49,19.6,velocity,upper_ux,1.0122814178466797 +karman_re400,ppo,49,19.6,velocity,upper_uy,0.06482397764921188 +karman_re400,ppo,49,19.6,velocity,center_ux,0.8936009407043457 +karman_re400,ppo,49,19.6,velocity,center_uy,0.7489950656890869 +karman_re400,ppo,49,19.6,velocity,lower_ux,1.1800470352172852 +karman_re400,ppo,49,19.6,velocity,lower_uy,0.26751822233200073 +karman_re400,ppo,50,20.0,velocity,upper_ux,0.9418869614601135 +karman_re400,ppo,50,20.0,velocity,upper_uy,0.01668931171298027 +karman_re400,ppo,50,20.0,velocity,center_ux,0.9609410762786865 +karman_re400,ppo,50,20.0,velocity,center_uy,0.6449987292289734 +karman_re400,ppo,50,20.0,velocity,lower_ux,1.252821922302246 +karman_re400,ppo,50,20.0,velocity,lower_uy,0.17067813873291016 +karman_re400,ppo,51,20.4,velocity,upper_ux,0.8872118592262268 +karman_re400,ppo,51,20.4,velocity,upper_uy,-0.06833335012197495 +karman_re400,ppo,51,20.4,velocity,center_ux,0.9379765391349792 +karman_re400,ppo,51,20.4,velocity,center_uy,-0.31940993666648865 +karman_re400,ppo,51,20.4,velocity,lower_ux,1.2276268005371094 +karman_re400,ppo,51,20.4,velocity,lower_uy,0.0006653417367488146 +karman_re400,ppo,52,20.8,velocity,upper_ux,0.8757321238517761 +karman_re400,ppo,52,20.8,velocity,upper_uy,-0.1707170158624649 +karman_re400,ppo,52,20.8,velocity,center_ux,0.8697017431259155 +karman_re400,ppo,52,20.8,velocity,center_uy,-0.8357585668563843 +karman_re400,ppo,52,20.8,velocity,lower_ux,1.1628910303115845 +karman_re400,ppo,52,20.8,velocity,lower_uy,-0.13184407353401184 +karman_re400,ppo,53,21.2,velocity,upper_ux,0.9019149541854858 +karman_re400,ppo,53,21.2,velocity,upper_uy,-0.2758866250514984 +karman_re400,ppo,53,21.2,velocity,center_ux,0.8411668539047241 +karman_re400,ppo,53,21.2,velocity,center_uy,-0.6904406547546387 +karman_re400,ppo,53,21.2,velocity,lower_ux,1.1438161134719849 +karman_re400,ppo,53,21.2,velocity,lower_uy,-0.1705724149942398 +karman_re400,ppo,54,21.6,velocity,upper_ux,0.9489721059799194 +karman_re400,ppo,54,21.6,velocity,upper_uy,-0.34378963708877563 +karman_re400,ppo,54,21.6,velocity,center_ux,0.8261995911598206 +karman_re400,ppo,54,21.6,velocity,center_uy,-0.5515131950378418 +karman_re400,ppo,54,21.6,velocity,lower_ux,1.1176140308380127 +karman_re400,ppo,54,21.6,velocity,lower_uy,-0.18626616895198822 +karman_re400,ppo,55,22.0,velocity,upper_ux,1.0092577934265137 +karman_re400,ppo,55,22.0,velocity,upper_uy,-0.381377249956131 +karman_re400,ppo,55,22.0,velocity,center_ux,0.7993350028991699 +karman_re400,ppo,55,22.0,velocity,center_uy,-0.47005805373191833 +karman_re400,ppo,55,22.0,velocity,lower_ux,1.1240787506103516 +karman_re400,ppo,55,22.0,velocity,lower_uy,-0.19702047109603882 +karman_re400,ppo,56,22.4,velocity,upper_ux,1.091426134109497 +karman_re400,ppo,56,22.4,velocity,upper_uy,-0.4254477620124817 +karman_re400,ppo,56,22.4,velocity,center_ux,0.7488340735435486 +karman_re400,ppo,56,22.4,velocity,center_uy,-0.4144868552684784 +karman_re400,ppo,56,22.4,velocity,lower_ux,1.0750654935836792 +karman_re400,ppo,56,22.4,velocity,lower_uy,-0.12139253318309784 +karman_re400,ppo,57,22.8,velocity,upper_ux,1.1985591650009155 +karman_re400,ppo,57,22.8,velocity,upper_uy,-0.4459019601345062 +karman_re400,ppo,57,22.8,velocity,center_ux,0.6607998609542847 +karman_re400,ppo,57,22.8,velocity,center_uy,-0.34606513381004333 +karman_re400,ppo,57,22.8,velocity,lower_ux,0.9811656475067139 +karman_re400,ppo,57,22.8,velocity,lower_uy,-0.030772456899285316 +karman_re400,ppo,58,23.2,velocity,upper_ux,1.413199782371521 +karman_re400,ppo,58,23.2,velocity,upper_uy,-0.5302413702011108 +karman_re400,ppo,58,23.2,velocity,center_ux,0.5504137873649597 +karman_re400,ppo,58,23.2,velocity,center_uy,-0.2124740034341812 +karman_re400,ppo,58,23.2,velocity,lower_ux,0.9206987619400024 +karman_re400,ppo,58,23.2,velocity,lower_uy,0.04354904219508171 +karman_re400,ppo,59,23.6,velocity,upper_ux,1.6984548568725586 +karman_re400,ppo,59,23.6,velocity,upper_uy,-0.43448612093925476 +karman_re400,ppo,59,23.6,velocity,center_ux,0.4400530755519867 +karman_re400,ppo,59,23.6,velocity,center_uy,0.00010156521602766588 +karman_re400,ppo,59,23.6,velocity,lower_ux,0.9092464447021484 +karman_re400,ppo,59,23.6,velocity,lower_uy,0.12205453217029572 +karman_re400,ppo,60,24.0,velocity,upper_ux,1.691666603088379 +karman_re400,ppo,60,24.0,velocity,upper_uy,0.18149778246879578 +karman_re400,ppo,60,24.0,velocity,center_ux,0.3850797712802887 +karman_re400,ppo,60,24.0,velocity,center_uy,0.26992884278297424 +karman_re400,ppo,60,24.0,velocity,lower_ux,0.927664041519165 +karman_re400,ppo,60,24.0,velocity,lower_uy,0.21032585203647614 +karman_re400,ppo,61,24.4,velocity,upper_ux,1.3521403074264526 +karman_re400,ppo,61,24.4,velocity,upper_uy,0.5875465869903564 +karman_re400,ppo,61,24.4,velocity,center_ux,0.4262982904911041 +karman_re400,ppo,61,24.4,velocity,center_uy,0.5067522525787354 +karman_re400,ppo,61,24.4,velocity,lower_ux,0.9716142416000366 +karman_re400,ppo,61,24.4,velocity,lower_uy,0.2668326497077942 +karman_re400,ppo,62,24.8,velocity,upper_ux,1.069915771484375 +karman_re400,ppo,62,24.8,velocity,upper_uy,0.6136089563369751 +karman_re400,ppo,62,24.8,velocity,center_ux,0.5217452049255371 +karman_re400,ppo,62,24.8,velocity,center_uy,0.6614376902580261 +karman_re400,ppo,62,24.8,velocity,lower_ux,1.0360019207000732 +karman_re400,ppo,62,24.8,velocity,lower_uy,0.2919617295265198 +karman_re400,ppo,63,25.2,velocity,upper_ux,0.9183995723724365 +karman_re400,ppo,63,25.2,velocity,upper_uy,0.503240704536438 +karman_re400,ppo,63,25.2,velocity,center_ux,0.6145185232162476 +karman_re400,ppo,63,25.2,velocity,center_uy,0.784629762172699 +karman_re400,ppo,63,25.2,velocity,lower_ux,1.115683674812317 +karman_re400,ppo,63,25.2,velocity,lower_uy,0.2989601790904999 +karman_re400,ppo,64,25.6,velocity,upper_ux,0.8227490186691284 +karman_re400,ppo,64,25.6,velocity,upper_uy,0.34118083119392395 +karman_re400,ppo,64,25.6,velocity,center_ux,0.7579324841499329 +karman_re400,ppo,64,25.6,velocity,center_uy,0.8437731266021729 +karman_re400,ppo,64,25.6,velocity,lower_ux,1.1858826875686646 +karman_re400,ppo,64,25.6,velocity,lower_uy,0.23578692972660065 +karman_re400,ppo,65,26.0,velocity,upper_ux,0.7542486786842346 +karman_re400,ppo,65,26.0,velocity,upper_uy,0.21104252338409424 +karman_re400,ppo,65,26.0,velocity,center_ux,0.941348135471344 +karman_re400,ppo,65,26.0,velocity,center_uy,0.9558555483818054 +karman_re400,ppo,65,26.0,velocity,lower_ux,1.2247601747512817 +karman_re400,ppo,65,26.0,velocity,lower_uy,0.09001078456640244 +karman_re400,ppo,66,26.4,velocity,upper_ux,0.7196439504623413 +karman_re400,ppo,66,26.4,velocity,upper_uy,0.12130971997976303 +karman_re400,ppo,66,26.4,velocity,center_ux,1.0686118602752686 +karman_re400,ppo,66,26.4,velocity,center_uy,0.8053579926490784 +karman_re400,ppo,66,26.4,velocity,lower_ux,1.3010581731796265 +karman_re400,ppo,66,26.4,velocity,lower_uy,0.09424477815628052 +karman_re400,ppo,67,26.8,velocity,upper_ux,0.7325073480606079 +karman_re400,ppo,67,26.8,velocity,upper_uy,0.03784453123807907 +karman_re400,ppo,67,26.8,velocity,center_ux,1.0428072214126587 +karman_re400,ppo,67,26.8,velocity,center_uy,-0.14794956147670746 +karman_re400,ppo,67,26.8,velocity,lower_ux,1.2679510116577148 +karman_re400,ppo,67,26.8,velocity,lower_uy,0.002648588502779603 +karman_re400,ppo,68,27.2,velocity,upper_ux,0.7534131407737732 +karman_re400,ppo,68,27.2,velocity,upper_uy,-0.06835965812206268 +karman_re400,ppo,68,27.2,velocity,center_ux,0.9338527917861938 +karman_re400,ppo,68,27.2,velocity,center_uy,-1.0181083679199219 +karman_re400,ppo,68,27.2,velocity,lower_ux,1.2297160625457764 +karman_re400,ppo,68,27.2,velocity,lower_uy,-0.18498432636260986 +karman_re400,ppo,69,27.6,velocity,upper_ux,0.7839522361755371 +karman_re400,ppo,69,27.6,velocity,upper_uy,-0.19082748889923096 +karman_re400,ppo,69,27.6,velocity,center_ux,0.8586105108261108 +karman_re400,ppo,69,27.6,velocity,center_uy,-1.0404613018035889 +karman_re400,ppo,69,27.6,velocity,lower_ux,1.1932271718978882 +karman_re400,ppo,69,27.6,velocity,lower_uy,-0.21564631164073944 +karman_re400,ppo,70,28.0,velocity,upper_ux,0.8611797094345093 +karman_re400,ppo,70,28.0,velocity,upper_uy,-0.26100340485572815 +karman_re400,ppo,70,28.0,velocity,center_ux,0.8178041577339172 +karman_re400,ppo,70,28.0,velocity,center_uy,-0.7423739433288574 +karman_re400,ppo,70,28.0,velocity,lower_ux,1.1121951341629028 +karman_re400,ppo,70,28.0,velocity,lower_uy,-0.2251884490251541 +karman_re400,ppo,71,28.4,velocity,upper_ux,0.9626020789146423 +karman_re400,ppo,71,28.4,velocity,upper_uy,-0.2906372547149658 +karman_re400,ppo,71,28.4,velocity,center_ux,0.7812879681587219 +karman_re400,ppo,71,28.4,velocity,center_uy,-0.6128624081611633 +karman_re400,ppo,71,28.4,velocity,lower_ux,1.039589285850525 +karman_re400,ppo,71,28.4,velocity,lower_uy,-0.19596366584300995 +karman_re400,ppo,72,28.8,velocity,upper_ux,1.0726466178894043 +karman_re400,ppo,72,28.8,velocity,upper_uy,-0.27897968888282776 +karman_re400,ppo,72,28.8,velocity,center_ux,0.6895051002502441 +karman_re400,ppo,72,28.8,velocity,center_uy,-0.562690258026123 +karman_re400,ppo,72,28.8,velocity,lower_ux,0.9814000129699707 +karman_re400,ppo,72,28.8,velocity,lower_uy,-0.1364094465970993 +karman_re400,ppo,73,29.2,velocity,upper_ux,1.1785660982131958 +karman_re400,ppo,73,29.2,velocity,upper_uy,-0.23121356964111328 +karman_re400,ppo,73,29.2,velocity,center_ux,0.5397254824638367 +karman_re400,ppo,73,29.2,velocity,center_uy,-0.518772304058075 +karman_re400,ppo,73,29.2,velocity,lower_ux,0.9335079193115234 +karman_re400,ppo,73,29.2,velocity,lower_uy,-0.05165810137987137 +karman_re400,ppo,74,29.6,velocity,upper_ux,1.302823543548584 +karman_re400,ppo,74,29.6,velocity,upper_uy,-0.2912273108959198 +karman_re400,ppo,74,29.6,velocity,center_ux,0.3227497339248657 +karman_re400,ppo,74,29.6,velocity,center_uy,-0.3680456876754761 +karman_re400,ppo,74,29.6,velocity,lower_ux,0.9027195572853088 +karman_re400,ppo,74,29.6,velocity,lower_uy,0.04267745092511177 +karman_re400,ppo,75,30.0,velocity,upper_ux,1.3520320653915405 +karman_re400,ppo,75,30.0,velocity,upper_uy,-0.2113054245710373 +karman_re400,ppo,75,30.0,velocity,center_ux,0.15190650522708893 +karman_re400,ppo,75,30.0,velocity,center_uy,0.07530777901411057 +karman_re400,ppo,75,30.0,velocity,lower_ux,0.8970198631286621 +karman_re400,ppo,75,30.0,velocity,lower_uy,0.13501358032226562 +karman_re400,ppo,76,30.4,velocity,upper_ux,1.1933406591415405 +karman_re400,ppo,76,30.4,velocity,upper_uy,0.13622456789016724 +karman_re400,ppo,76,30.4,velocity,center_ux,0.23353181779384613 +karman_re400,ppo,76,30.4,velocity,center_uy,0.5333795547485352 +karman_re400,ppo,76,30.4,velocity,lower_ux,0.919157862663269 +karman_re400,ppo,76,30.4,velocity,lower_uy,0.19475530087947845 +karman_re400,ppo,77,30.8,velocity,upper_ux,1.133026361465454 +karman_re400,ppo,77,30.8,velocity,upper_uy,0.32022425532341003 +karman_re400,ppo,77,30.8,velocity,center_ux,0.47454383969306946 +karman_re400,ppo,77,30.8,velocity,center_uy,0.6633532643318176 +karman_re400,ppo,77,30.8,velocity,lower_ux,0.9692238569259644 +karman_re400,ppo,77,30.8,velocity,lower_uy,0.23142875730991364 +karman_re400,ppo,78,31.2,velocity,upper_ux,1.014631748199463 +karman_re400,ppo,78,31.2,velocity,upper_uy,0.3736512362957001 +karman_re400,ppo,78,31.2,velocity,center_ux,0.6203933954238892 +karman_re400,ppo,78,31.2,velocity,center_uy,0.7028026580810547 +karman_re400,ppo,78,31.2,velocity,lower_ux,1.041308879852295 +karman_re400,ppo,78,31.2,velocity,lower_uy,0.2485724687576294 +karman_re400,ppo,79,31.6,velocity,upper_ux,0.8901705741882324 +karman_re400,ppo,79,31.6,velocity,upper_uy,0.33016371726989746 +karman_re400,ppo,79,31.6,velocity,center_ux,0.7048293948173523 +karman_re400,ppo,79,31.6,velocity,center_uy,0.6861379146575928 +karman_re400,ppo,79,31.6,velocity,lower_ux,1.0949671268463135 +karman_re400,ppo,79,31.6,velocity,lower_uy,0.1936650425195694 +karman_re400,ppo,80,32.0,velocity,upper_ux,0.7973641157150269 +karman_re400,ppo,80,32.0,velocity,upper_uy,0.23339898884296417 +karman_re400,ppo,80,32.0,velocity,center_ux,0.7083972096443176 +karman_re400,ppo,80,32.0,velocity,center_uy,0.7266709208488464 +karman_re400,ppo,80,32.0,velocity,lower_ux,1.15312659740448 +karman_re400,ppo,80,32.0,velocity,lower_uy,0.1677732914686203 +karman_re400,ppo,81,32.4,velocity,upper_ux,0.7485774159431458 +karman_re400,ppo,81,32.4,velocity,upper_uy,0.11332704871892929 +karman_re400,ppo,81,32.4,velocity,center_ux,0.5151030421257019 +karman_re400,ppo,81,32.4,velocity,center_uy,0.8334041833877563 +karman_re400,ppo,81,32.4,velocity,lower_ux,1.3989765644073486 +karman_re400,ppo,81,32.4,velocity,lower_uy,0.254754900932312 +karman_re400,ppo,82,32.8,velocity,upper_ux,0.7487285137176514 +karman_re400,ppo,82,32.8,velocity,upper_uy,-0.005010291934013367 +karman_re400,ppo,82,32.8,velocity,center_ux,0.23635314404964447 +karman_re400,ppo,82,32.8,velocity,center_uy,0.2648349404335022 +karman_re400,ppo,82,32.8,velocity,lower_ux,1.4440404176712036 +karman_re400,ppo,82,32.8,velocity,lower_uy,0.15428873896598816 +karman_re400,ppo,83,33.2,velocity,upper_ux,0.7742340564727783 +karman_re400,ppo,83,33.2,velocity,upper_uy,-0.11859150230884552 +karman_re400,ppo,83,33.2,velocity,center_ux,0.3007941246032715 +karman_re400,ppo,83,33.2,velocity,center_uy,-0.6669186353683472 +karman_re400,ppo,83,33.2,velocity,lower_ux,1.22135329246521 +karman_re400,ppo,83,33.2,velocity,lower_uy,-0.25720638036727905 +karman_re400,ppo,84,33.6,velocity,upper_ux,0.8250122666358948 +karman_re400,ppo,84,33.6,velocity,upper_uy,-0.2043500691652298 +karman_re400,ppo,84,33.6,velocity,center_ux,0.5737706422805786 +karman_re400,ppo,84,33.6,velocity,center_uy,-0.8659061193466187 +karman_re400,ppo,84,33.6,velocity,lower_ux,1.131615161895752 +karman_re400,ppo,84,33.6,velocity,lower_uy,-0.22108715772628784 +karman_re400,ppo,85,34.0,velocity,upper_ux,0.907422661781311 +karman_re400,ppo,85,34.0,velocity,upper_uy,-0.25178733468055725 +karman_re400,ppo,85,34.0,velocity,center_ux,0.7071220874786377 +karman_re400,ppo,85,34.0,velocity,center_uy,-0.720021665096283 +karman_re400,ppo,85,34.0,velocity,lower_ux,1.0909817218780518 +karman_re400,ppo,85,34.0,velocity,lower_uy,-0.19410425424575806 +karman_re400,ppo,86,34.4,velocity,upper_ux,1.0127795934677124 +karman_re400,ppo,86,34.4,velocity,upper_uy,-0.26115572452545166 +karman_re400,ppo,86,34.4,velocity,center_ux,0.7067385315895081 +karman_re400,ppo,86,34.4,velocity,center_uy,-0.6050503253936768 +karman_re400,ppo,86,34.4,velocity,lower_ux,1.028384804725647 +karman_re400,ppo,86,34.4,velocity,lower_uy,-0.18935559689998627 +karman_re400,ppo,87,34.8,velocity,upper_ux,1.1136260032653809 +karman_re400,ppo,87,34.8,velocity,upper_uy,-0.198811873793602 +karman_re400,ppo,87,34.8,velocity,center_ux,0.5969955921173096 +karman_re400,ppo,87,34.8,velocity,center_uy,-0.55645352602005 +karman_re400,ppo,87,34.8,velocity,lower_ux,0.9659988284111023 +karman_re400,ppo,87,34.8,velocity,lower_uy,-0.14611364901065826 +karman_re400,ppo,88,35.2,velocity,upper_ux,1.2260302305221558 +karman_re400,ppo,88,35.2,velocity,upper_uy,-0.22369928658008575 +karman_re400,ppo,88,35.2,velocity,center_ux,0.4152540862560272 +karman_re400,ppo,88,35.2,velocity,center_uy,-0.5807845592498779 +karman_re400,ppo,88,35.2,velocity,lower_ux,0.9238362312316895 +karman_re400,ppo,88,35.2,velocity,lower_uy,-0.06872420012950897 +karman_re400,ppo,89,35.6,velocity,upper_ux,1.3844656944274902 +karman_re400,ppo,89,35.6,velocity,upper_uy,-0.3008270561695099 +karman_re400,ppo,89,35.6,velocity,center_ux,0.1955021321773529 +karman_re400,ppo,89,35.6,velocity,center_uy,-0.36598774790763855 +karman_re400,ppo,89,35.6,velocity,lower_ux,0.8980421423912048 +karman_re400,ppo,89,35.6,velocity,lower_uy,0.0240255706012249 +karman_re400,ppo,90,36.0,velocity,upper_ux,1.2501060962677002 +karman_re400,ppo,90,36.0,velocity,upper_uy,0.09795086830854416 +karman_re400,ppo,90,36.0,velocity,center_ux,0.09795167297124863 +karman_re400,ppo,90,36.0,velocity,center_uy,0.2530077397823334 +karman_re400,ppo,90,36.0,velocity,lower_ux,0.8892481923103333 +karman_re400,ppo,90,36.0,velocity,lower_uy,0.10402800887823105 +karman_re400,ppo,91,36.4,velocity,upper_ux,1.2330337762832642 +karman_re400,ppo,91,36.4,velocity,upper_uy,0.21485544741153717 +karman_re400,ppo,91,36.4,velocity,center_ux,0.312674880027771 +karman_re400,ppo,91,36.4,velocity,center_uy,0.6695924997329712 +karman_re400,ppo,91,36.4,velocity,lower_ux,0.8989952802658081 +karman_re400,ppo,91,36.4,velocity,lower_uy,0.15766845643520355 +karman_re400,ppo,92,36.8,velocity,upper_ux,1.1530424356460571 +karman_re400,ppo,92,36.8,velocity,upper_uy,0.26312729716300964 +karman_re400,ppo,92,36.8,velocity,center_ux,0.6129429340362549 +karman_re400,ppo,92,36.8,velocity,center_uy,0.6833885312080383 +karman_re400,ppo,92,36.8,velocity,lower_ux,0.9443591237068176 +karman_re400,ppo,92,36.8,velocity,lower_uy,0.2249765545129776 +karman_re400,ppo,93,37.2,velocity,upper_ux,1.038567304611206 +karman_re400,ppo,93,37.2,velocity,upper_uy,0.2560197412967682 +karman_re400,ppo,93,37.2,velocity,center_ux,0.7718870639801025 +karman_re400,ppo,93,37.2,velocity,center_uy,0.7480044364929199 +karman_re400,ppo,93,37.2,velocity,lower_ux,1.0455505847930908 +karman_re400,ppo,93,37.2,velocity,lower_uy,0.25108802318573 +karman_re400,ppo,94,37.6,velocity,upper_ux,0.9396852254867554 +karman_re400,ppo,94,37.6,velocity,upper_uy,0.1979355812072754 +karman_re400,ppo,94,37.6,velocity,center_ux,0.5776560306549072 +karman_re400,ppo,94,37.6,velocity,center_uy,1.189335584640503 +karman_re400,ppo,94,37.6,velocity,lower_ux,1.1601707935333252 +karman_re400,ppo,94,37.6,velocity,lower_uy,0.16631105542182922 +karman_re400,ppo,95,38.0,velocity,upper_ux,0.8699374198913574 +karman_re400,ppo,95,38.0,velocity,upper_uy,0.10864768177270889 +karman_re400,ppo,95,38.0,velocity,center_ux,0.5307049751281738 +karman_re400,ppo,95,38.0,velocity,center_uy,0.8196092844009399 +karman_re400,ppo,95,38.0,velocity,lower_ux,1.248943567276001 +karman_re400,ppo,95,38.0,velocity,lower_uy,0.11475175619125366 +karman_re400,ppo,96,38.4,velocity,upper_ux,0.8240325450897217 +karman_re400,ppo,96,38.4,velocity,upper_uy,-0.006197091192007065 +karman_re400,ppo,96,38.4,velocity,center_ux,0.7073557376861572 +karman_re400,ppo,96,38.4,velocity,center_uy,-0.24913237988948822 +karman_re400,ppo,96,38.4,velocity,lower_ux,1.3042192459106445 +karman_re400,ppo,96,38.4,velocity,lower_uy,0.172046959400177 +karman_re400,ppo,97,38.8,velocity,upper_ux,0.813208818435669 +karman_re400,ppo,97,38.8,velocity,upper_uy,-0.12553150951862335 +karman_re400,ppo,97,38.8,velocity,center_ux,0.8239334225654602 +karman_re400,ppo,97,38.8,velocity,center_uy,-0.8175098896026611 +karman_re400,ppo,97,38.8,velocity,lower_ux,1.1625349521636963 +karman_re400,ppo,97,38.8,velocity,lower_uy,-0.02078109048306942 +karman_re400,ppo,98,39.2,velocity,upper_ux,0.8471545577049255 +karman_re400,ppo,98,39.2,velocity,upper_uy,-0.2157556116580963 +karman_re400,ppo,98,39.2,velocity,center_ux,0.8047683835029602 +karman_re400,ppo,98,39.2,velocity,center_uy,-0.7691314816474915 +karman_re400,ppo,98,39.2,velocity,lower_ux,1.0531376600265503 +karman_re400,ppo,98,39.2,velocity,lower_uy,-0.22163937985897064 +karman_re400,ppo,99,39.6,velocity,upper_ux,0.9185093641281128 +karman_re400,ppo,99,39.6,velocity,upper_uy,-0.2724281847476959 +karman_re400,ppo,99,39.6,velocity,center_ux,0.7584996223449707 +karman_re400,ppo,99,39.6,velocity,center_uy,-0.6633545160293579 +karman_re400,ppo,99,39.6,velocity,lower_ux,1.027733564376831 +karman_re400,ppo,99,39.6,velocity,lower_uy,-0.20092426240444183 +karman_re400,ppo,100,40.0,velocity,upper_ux,1.0172830820083618 +karman_re400,ppo,100,40.0,velocity,upper_uy,-0.3127761781215668 +karman_re400,ppo,100,40.0,velocity,center_ux,0.7058810591697693 +karman_re400,ppo,100,40.0,velocity,center_uy,-0.5987792015075684 +karman_re400,ppo,100,40.0,velocity,lower_ux,0.9938420057296753 +karman_re400,ppo,100,40.0,velocity,lower_uy,-0.15686491131782532 +karman_re400,ppo,101,40.4,velocity,upper_ux,1.1339703798294067 +karman_re400,ppo,101,40.4,velocity,upper_uy,-0.29868271946907043 +karman_re400,ppo,101,40.4,velocity,center_ux,0.6186649203300476 +karman_re400,ppo,101,40.4,velocity,center_uy,-0.5475648045539856 +karman_re400,ppo,101,40.4,velocity,lower_ux,0.9612563252449036 +karman_re400,ppo,101,40.4,velocity,lower_uy,-0.11072050034999847 +karman_re400,ppo,102,40.8,velocity,upper_ux,1.232264757156372 +karman_re400,ppo,102,40.8,velocity,upper_uy,-0.19642767310142517 +karman_re400,ppo,102,40.8,velocity,center_ux,0.5030294060707092 +karman_re400,ppo,102,40.8,velocity,center_uy,-0.4333517849445343 +karman_re400,ppo,102,40.8,velocity,lower_ux,0.9279235005378723 +karman_re400,ppo,102,40.8,velocity,lower_uy,-0.05044712498784065 +karman_re400,ppo,103,41.2,velocity,upper_ux,1.360299825668335 +karman_re400,ppo,103,41.2,velocity,upper_uy,-0.18716053664684296 +karman_re400,ppo,103,41.2,velocity,center_ux,0.35160893201828003 +karman_re400,ppo,103,41.2,velocity,center_uy,-0.22462429106235504 +karman_re400,ppo,103,41.2,velocity,lower_ux,0.8941587805747986 +karman_re400,ppo,103,41.2,velocity,lower_uy,0.03309480473399162 +karman_re400,ppo,104,41.6,velocity,upper_ux,1.4695793390274048 +karman_re400,ppo,104,41.6,velocity,upper_uy,-0.0651409775018692 +karman_re400,ppo,104,41.6,velocity,center_ux,0.2139723151922226 +karman_re400,ppo,104,41.6,velocity,center_uy,0.1483689397573471 +karman_re400,ppo,104,41.6,velocity,lower_ux,0.878398060798645 +karman_re400,ppo,104,41.6,velocity,lower_uy,0.1307021528482437 +karman_re400,ppo,105,42.0,velocity,upper_ux,1.4591467380523682 +karman_re400,ppo,105,42.0,velocity,upper_uy,0.18834447860717773 +karman_re400,ppo,105,42.0,velocity,center_ux,0.2976633310317993 +karman_re400,ppo,105,42.0,velocity,center_uy,0.5022338628768921 +karman_re400,ppo,105,42.0,velocity,lower_ux,0.8932004570960999 +karman_re400,ppo,105,42.0,velocity,lower_uy,0.20388567447662354 +karman_re400,ppo,106,42.4,velocity,upper_ux,1.238603949546814 +karman_re400,ppo,106,42.4,velocity,upper_uy,0.384581983089447 +karman_re400,ppo,106,42.4,velocity,center_ux,0.4992789924144745 +karman_re400,ppo,106,42.4,velocity,center_uy,0.5686508417129517 +karman_re400,ppo,106,42.4,velocity,lower_ux,0.9396341443061829 +karman_re400,ppo,106,42.4,velocity,lower_uy,0.25785398483276367 +karman_re400,ppo,107,42.8,velocity,upper_ux,1.012028455734253 +karman_re400,ppo,107,42.8,velocity,upper_uy,0.3388829827308655 +karman_re400,ppo,107,42.8,velocity,center_ux,0.5723410248756409 +karman_re400,ppo,107,42.8,velocity,center_uy,0.564944326877594 +karman_re400,ppo,107,42.8,velocity,lower_ux,1.0103280544281006 +karman_re400,ppo,107,42.8,velocity,lower_uy,0.2973218858242035 +karman_re400,ppo,108,43.2,velocity,upper_ux,0.9300150871276855 +karman_re400,ppo,108,43.2,velocity,upper_uy,0.22097568213939667 +karman_re400,ppo,108,43.2,velocity,center_ux,0.5526836514472961 +karman_re400,ppo,108,43.2,velocity,center_uy,0.5647224187850952 +karman_re400,ppo,108,43.2,velocity,lower_ux,1.094891905784607 +karman_re400,ppo,108,43.2,velocity,lower_uy,0.29522162675857544 +karman_re400,ppo,109,43.6,velocity,upper_ux,0.8967732787132263 +karman_re400,ppo,109,43.6,velocity,upper_uy,0.1425744742155075 +karman_re400,ppo,109,43.6,velocity,center_ux,0.4778535068035126 +karman_re400,ppo,109,43.6,velocity,center_uy,0.533092737197876 +karman_re400,ppo,109,43.6,velocity,lower_ux,1.151440143585205 +karman_re400,ppo,109,43.6,velocity,lower_uy,0.3156181573867798 +karman_re400,ppo,110,44.0,velocity,upper_ux,0.8800681829452515 +karman_re400,ppo,110,44.0,velocity,upper_uy,0.0667390525341034 +karman_re400,ppo,110,44.0,velocity,center_ux,0.3629702627658844 +karman_re400,ppo,110,44.0,velocity,center_uy,0.4339067041873932 +karman_re400,ppo,110,44.0,velocity,lower_ux,1.139206051826477 +karman_re400,ppo,110,44.0,velocity,lower_uy,0.47148674726486206 +karman_re400,ppo,111,44.4,velocity,upper_ux,0.8729420304298401 +karman_re400,ppo,111,44.4,velocity,upper_uy,-0.01677686721086502 +karman_re400,ppo,111,44.4,velocity,center_ux,0.18302881717681885 +karman_re400,ppo,111,44.4,velocity,center_uy,0.2011505514383316 +karman_re400,ppo,111,44.4,velocity,lower_ux,1.1329035758972168 +karman_re400,ppo,111,44.4,velocity,lower_uy,-0.030853448435664177 +karman_re400,ppo,112,44.8,velocity,upper_ux,0.874637246131897 +karman_re400,ppo,112,44.8,velocity,upper_uy,-0.09784575551748276 +karman_re400,ppo,112,44.8,velocity,center_ux,0.0816568061709404 +karman_re400,ppo,112,44.8,velocity,center_uy,-0.2363782525062561 +karman_re400,ppo,112,44.8,velocity,lower_ux,1.372792363166809 +karman_re400,ppo,112,44.8,velocity,lower_uy,-0.19759689271450043 +karman_re400,ppo,113,45.2,velocity,upper_ux,0.8997007012367249 +karman_re400,ppo,113,45.2,velocity,upper_uy,-0.14262521266937256 +karman_re400,ppo,113,45.2,velocity,center_ux,0.21161803603172302 +karman_re400,ppo,113,45.2,velocity,center_uy,-0.5884035229682922 +karman_re400,ppo,113,45.2,velocity,lower_ux,1.4139890670776367 +karman_re400,ppo,113,45.2,velocity,lower_uy,-0.35037341713905334 +karman_re400,ppo,114,45.6,velocity,upper_ux,0.9463839530944824 +karman_re400,ppo,114,45.6,velocity,upper_uy,-0.1792260706424713 +karman_re400,ppo,114,45.6,velocity,center_ux,0.4805006682872772 +karman_re400,ppo,114,45.6,velocity,center_uy,-0.6349331736564636 +karman_re400,ppo,114,45.6,velocity,lower_ux,1.2541990280151367 +karman_re400,ppo,114,45.6,velocity,lower_uy,-0.4734739661216736 +karman_re400,ppo,115,46.0,velocity,upper_ux,1.0150063037872314 +karman_re400,ppo,115,46.0,velocity,upper_uy,-0.1868150681257248 +karman_re400,ppo,115,46.0,velocity,center_ux,0.6458961367607117 +karman_re400,ppo,115,46.0,velocity,center_uy,-0.6486976742744446 +karman_re400,ppo,115,46.0,velocity,lower_ux,1.0624992847442627 +karman_re400,ppo,115,46.0,velocity,lower_uy,-0.4536625146865845 +karman_re400,ppo,116,46.4,velocity,upper_ux,1.1002976894378662 +karman_re400,ppo,116,46.4,velocity,upper_uy,-0.13093851506710052 +karman_re400,ppo,116,46.4,velocity,center_ux,0.6591281294822693 +karman_re400,ppo,116,46.4,velocity,center_uy,-0.8092374205589294 +karman_re400,ppo,116,46.4,velocity,lower_ux,0.9245808124542236 +karman_re400,ppo,116,46.4,velocity,lower_uy,-0.34818223118782043 +karman_re400,ppo,117,46.8,velocity,upper_ux,1.1824126243591309 +karman_re400,ppo,117,46.8,velocity,upper_uy,-0.07667651772499084 +karman_re400,ppo,117,46.8,velocity,center_ux,0.5194294452667236 +karman_re400,ppo,117,46.8,velocity,center_uy,-0.9285964965820312 +karman_re400,ppo,117,46.8,velocity,lower_ux,0.8349659442901611 +karman_re400,ppo,117,46.8,velocity,lower_uy,-0.21243497729301453 +karman_re400,ppo,118,47.2,velocity,upper_ux,1.3362667560577393 +karman_re400,ppo,118,47.2,velocity,upper_uy,-0.1876193881034851 +karman_re400,ppo,118,47.2,velocity,center_ux,0.4666798710823059 +karman_re400,ppo,118,47.2,velocity,center_uy,-0.2714707553386688 +karman_re400,ppo,118,47.2,velocity,lower_ux,0.7843159437179565 +karman_re400,ppo,118,47.2,velocity,lower_uy,-0.06055067479610443 +karman_re400,ppo,119,47.6,velocity,upper_ux,1.3127636909484863 +karman_re400,ppo,119,47.6,velocity,upper_uy,-0.12404948472976685 +karman_re400,ppo,119,47.6,velocity,center_ux,0.5840942859649658 +karman_re400,ppo,119,47.6,velocity,center_uy,0.635166347026825 +karman_re400,ppo,119,47.6,velocity,lower_ux,0.773255467414856 +karman_re400,ppo,119,47.6,velocity,lower_uy,0.0857928916811943 +karman_re400,ppo,120,48.0,velocity,upper_ux,1.0924321413040161 +karman_re400,ppo,120,48.0,velocity,upper_uy,0.2204364389181137 +karman_re400,ppo,120,48.0,velocity,center_ux,0.6990144848823547 +karman_re400,ppo,120,48.0,velocity,center_uy,0.8076727390289307 +karman_re400,ppo,120,48.0,velocity,lower_ux,0.8152018785476685 +karman_re400,ppo,120,48.0,velocity,lower_uy,0.18988128006458282 +karman_re400,ppo,121,48.4,velocity,upper_ux,1.066447138786316 +karman_re400,ppo,121,48.4,velocity,upper_uy,0.20639406144618988 +karman_re400,ppo,121,48.4,velocity,center_ux,0.7054204344749451 +karman_re400,ppo,121,48.4,velocity,center_uy,0.725757360458374 +karman_re400,ppo,121,48.4,velocity,lower_ux,0.9013680815696716 +karman_re400,ppo,121,48.4,velocity,lower_uy,0.24443313479423523 +karman_re400,ppo,122,48.8,velocity,upper_ux,1.0175607204437256 +karman_re400,ppo,122,48.8,velocity,upper_uy,0.1845005750656128 +karman_re400,ppo,122,48.8,velocity,center_ux,0.6598982810974121 +karman_re400,ppo,122,48.8,velocity,center_uy,0.7145249247550964 +karman_re400,ppo,122,48.8,velocity,lower_ux,1.011162519454956 +karman_re400,ppo,122,48.8,velocity,lower_uy,0.2601497173309326 +karman_re400,ppo,123,49.2,velocity,upper_ux,0.9728747010231018 +karman_re400,ppo,123,49.2,velocity,upper_uy,0.1508459895849228 +karman_re400,ppo,123,49.2,velocity,center_ux,0.6098873019218445 +karman_re400,ppo,123,49.2,velocity,center_uy,0.7655754685401917 +karman_re400,ppo,123,49.2,velocity,lower_ux,1.1279622316360474 +karman_re400,ppo,123,49.2,velocity,lower_uy,0.21575157344341278 +karman_re400,ppo,124,49.6,velocity,upper_ux,0.9382175207138062 +karman_re400,ppo,124,49.6,velocity,upper_uy,0.10107751190662384 +karman_re400,ppo,124,49.6,velocity,center_ux,0.5847978591918945 +karman_re400,ppo,124,49.6,velocity,center_uy,0.7918574810028076 +karman_re400,ppo,124,49.6,velocity,lower_ux,1.2329295873641968 +karman_re400,ppo,124,49.6,velocity,lower_uy,0.14580851793289185 +karman_re400,ppo,125,50.0,velocity,upper_ux,0.8985113501548767 +karman_re400,ppo,125,50.0,velocity,upper_uy,0.026797108352184296 +karman_re400,ppo,125,50.0,velocity,center_ux,0.49936631321907043 +karman_re400,ppo,125,50.0,velocity,center_uy,0.545888364315033 +karman_re400,ppo,125,50.0,velocity,lower_ux,1.3064682483673096 +karman_re400,ppo,125,50.0,velocity,lower_uy,0.2142188847064972 +karman_re400,ppo,126,50.4,velocity,upper_ux,0.8636424541473389 +karman_re400,ppo,126,50.4,velocity,upper_uy,-0.07464570552110672 +karman_re400,ppo,126,50.4,velocity,center_ux,0.41225746273994446 +karman_re400,ppo,126,50.4,velocity,center_uy,-0.28912457823753357 +karman_re400,ppo,126,50.4,velocity,lower_ux,1.2110508680343628 +karman_re400,ppo,126,50.4,velocity,lower_uy,0.059375546872615814 +karman_re400,ppo,127,50.8,velocity,upper_ux,0.8655258417129517 +karman_re400,ppo,127,50.8,velocity,upper_uy,-0.16874685883522034 +karman_re400,ppo,127,50.8,velocity,center_ux,0.4653243124485016 +karman_re400,ppo,127,50.8,velocity,center_uy,-0.841768741607666 +karman_re400,ppo,127,50.8,velocity,lower_ux,1.0978013277053833 +karman_re400,ppo,127,50.8,velocity,lower_uy,-0.19706526398658752 +karman_re400,ppo,128,51.2,velocity,upper_ux,0.9144407510757446 +karman_re400,ppo,128,51.2,velocity,upper_uy,-0.2378784567117691 +karman_re400,ppo,128,51.2,velocity,center_ux,0.5733404159545898 +karman_re400,ppo,128,51.2,velocity,center_uy,-0.8071895837783813 +karman_re400,ppo,128,51.2,velocity,lower_ux,1.078407883644104 +karman_re400,ppo,128,51.2,velocity,lower_uy,-0.21507616341114044 +karman_re400,ppo,129,51.6,velocity,upper_ux,0.9963064789772034 +karman_re400,ppo,129,51.6,velocity,upper_uy,-0.2899293005466461 +karman_re400,ppo,129,51.6,velocity,center_ux,0.6265828609466553 +karman_re400,ppo,129,51.6,velocity,center_uy,-0.6720278263092041 +karman_re400,ppo,129,51.6,velocity,lower_ux,1.022179126739502 +karman_re400,ppo,129,51.6,velocity,lower_uy,-0.2022562474012375 +karman_re400,ppo,130,52.0,velocity,upper_ux,1.1055936813354492 +karman_re400,ppo,130,52.0,velocity,upper_uy,-0.29465556144714355 +karman_re400,ppo,130,52.0,velocity,center_ux,0.5998884439468384 +karman_re400,ppo,130,52.0,velocity,center_uy,-0.6051362752914429 +karman_re400,ppo,130,52.0,velocity,lower_ux,0.9569137096405029 +karman_re400,ppo,130,52.0,velocity,lower_uy,-0.1619955450296402 +karman_re400,ppo,131,52.4,velocity,upper_ux,1.2082914113998413 +karman_re400,ppo,131,52.4,velocity,upper_uy,-0.31275853514671326 +karman_re400,ppo,131,52.4,velocity,center_ux,0.5221044421195984 +karman_re400,ppo,131,52.4,velocity,center_uy,-0.5146542191505432 +karman_re400,ppo,131,52.4,velocity,lower_ux,0.9141164422035217 +karman_re400,ppo,131,52.4,velocity,lower_uy,-0.10149554908275604 +karman_re400,ppo,132,52.8,velocity,upper_ux,1.2545872926712036 +karman_re400,ppo,132,52.8,velocity,upper_uy,-0.404005229473114 +karman_re400,ppo,132,52.8,velocity,center_ux,0.427501916885376 +karman_re400,ppo,132,52.8,velocity,center_uy,-0.3318375051021576 +karman_re400,ppo,132,52.8,velocity,lower_ux,0.8894345164299011 +karman_re400,ppo,132,52.8,velocity,lower_uy,-0.02270796336233616 +karman_re400,ppo,133,53.2,velocity,upper_ux,1.374815821647644 +karman_re400,ppo,133,53.2,velocity,upper_uy,-0.05844008922576904 +karman_re400,ppo,133,53.2,velocity,center_ux,0.2976781725883484 +karman_re400,ppo,133,53.2,velocity,center_uy,-0.04679194465279579 +karman_re400,ppo,133,53.2,velocity,lower_ux,0.8749480247497559 +karman_re400,ppo,133,53.2,velocity,lower_uy,0.07206133008003235 +karman_re400,ppo,134,53.6,velocity,upper_ux,1.554195523262024 +karman_re400,ppo,134,53.6,velocity,upper_uy,0.16977658867835999 +karman_re400,ppo,134,53.6,velocity,center_ux,0.2565908133983612 +karman_re400,ppo,134,53.6,velocity,center_uy,0.3355807065963745 +karman_re400,ppo,134,53.6,velocity,lower_ux,0.8859002590179443 +karman_re400,ppo,134,53.6,velocity,lower_uy,0.14612574875354767 +karman_re400,ppo,135,54.0,velocity,upper_ux,1.4175877571105957 +karman_re400,ppo,135,54.0,velocity,upper_uy,0.45046359300613403 +karman_re400,ppo,135,54.0,velocity,center_ux,0.3922758102416992 +karman_re400,ppo,135,54.0,velocity,center_uy,0.5728948712348938 +karman_re400,ppo,135,54.0,velocity,lower_ux,0.9269830584526062 +karman_re400,ppo,135,54.0,velocity,lower_uy,0.19106857478618622 +karman_re400,ppo,136,54.4,velocity,upper_ux,1.1590049266815186 +karman_re400,ppo,136,54.4,velocity,upper_uy,0.5070303082466125 +karman_re400,ppo,136,54.4,velocity,center_ux,0.5483248829841614 +karman_re400,ppo,136,54.4,velocity,center_uy,0.6251943707466125 +karman_re400,ppo,136,54.4,velocity,lower_ux,0.9914477467536926 +karman_re400,ppo,136,54.4,velocity,lower_uy,0.22243589162826538 +karman_re400,ppo,137,54.8,velocity,upper_ux,0.9862700700759888 +karman_re400,ppo,137,54.8,velocity,upper_uy,0.3814558684825897 +karman_re400,ppo,137,54.8,velocity,center_ux,0.6259629726409912 +karman_re400,ppo,137,54.8,velocity,center_uy,0.6533511877059937 +karman_re400,ppo,137,54.8,velocity,lower_ux,1.0775337219238281 +karman_re400,ppo,137,54.8,velocity,lower_uy,0.2151164412498474 +karman_re400,ppo,138,55.2,velocity,upper_ux,0.9047977924346924 +karman_re400,ppo,138,55.2,velocity,upper_uy,0.2547105848789215 +karman_re400,ppo,138,55.2,velocity,center_ux,0.66070157289505 +karman_re400,ppo,138,55.2,velocity,center_uy,0.6784276366233826 +karman_re400,ppo,138,55.2,velocity,lower_ux,1.1603890657424927 +karman_re400,ppo,138,55.2,velocity,lower_uy,0.1610458344221115 +karman_re400,ppo,139,55.6,velocity,upper_ux,0.8531996011734009 +karman_re400,ppo,139,55.6,velocity,upper_uy,0.13246329128742218 +karman_re400,ppo,139,55.6,velocity,center_ux,0.5962799191474915 +karman_re400,ppo,139,55.6,velocity,center_uy,0.7370575666427612 +karman_re400,ppo,139,55.6,velocity,lower_ux,1.258736252784729 +karman_re400,ppo,139,55.6,velocity,lower_uy,0.3050341308116913 +karman_re400,ppo,140,56.0,velocity,upper_ux,0.8214653134346008 +karman_re400,ppo,140,56.0,velocity,upper_uy,0.004685205407440662 +karman_re400,ppo,140,56.0,velocity,center_ux,0.3815953731536865 +karman_re400,ppo,140,56.0,velocity,center_uy,0.45915940403938293 +karman_re400,ppo,140,56.0,velocity,lower_ux,1.2459675073623657 +karman_re400,ppo,140,56.0,velocity,lower_uy,0.22256633639335632 +karman_re400,ppo,141,56.4,velocity,upper_ux,0.8183082342147827 +karman_re400,ppo,141,56.4,velocity,upper_uy,-0.11481686681509018 +karman_re400,ppo,141,56.4,velocity,center_ux,0.24931387603282928 +karman_re400,ppo,141,56.4,velocity,center_uy,-0.37225472927093506 +karman_re400,ppo,141,56.4,velocity,lower_ux,1.203052282333374 +karman_re400,ppo,141,56.4,velocity,lower_uy,-0.21123118698596954 +karman_re400,ppo,142,56.8,velocity,upper_ux,0.859402060508728 +karman_re400,ppo,142,56.8,velocity,upper_uy,-0.1881660521030426 +karman_re400,ppo,142,56.8,velocity,center_ux,0.39251407980918884 +karman_re400,ppo,142,56.8,velocity,center_uy,-0.858808696269989 +karman_re400,ppo,142,56.8,velocity,lower_ux,1.1819144487380981 +karman_re400,ppo,142,56.8,velocity,lower_uy,-0.23429132997989655 +karman_re400,ppo,143,57.2,velocity,upper_ux,0.932945728302002 +karman_re400,ppo,143,57.2,velocity,upper_uy,-0.23209209740161896 +karman_re400,ppo,143,57.2,velocity,center_ux,0.575179934501648 +karman_re400,ppo,143,57.2,velocity,center_uy,-0.8069575428962708 +karman_re400,ppo,143,57.2,velocity,lower_ux,1.0819610357284546 +karman_re400,ppo,143,57.2,velocity,lower_uy,-0.2688840925693512 +karman_re400,ppo,144,57.6,velocity,upper_ux,1.0276058912277222 +karman_re400,ppo,144,57.6,velocity,upper_uy,-0.24442929029464722 +karman_re400,ppo,144,57.6,velocity,center_ux,0.6426171660423279 +karman_re400,ppo,144,57.6,velocity,center_uy,-0.7402520179748535 +karman_re400,ppo,144,57.6,velocity,lower_ux,0.9907821416854858 +karman_re400,ppo,144,57.6,velocity,lower_uy,-0.25118812918663025 +karman_re400,ppo,145,58.0,velocity,upper_ux,1.124738335609436 +karman_re400,ppo,145,58.0,velocity,upper_uy,-0.1974542737007141 +karman_re400,ppo,145,58.0,velocity,center_ux,0.6541175842285156 +karman_re400,ppo,145,58.0,velocity,center_uy,-0.6885138750076294 +karman_re400,ppo,145,58.0,velocity,lower_ux,0.9204847812652588 +karman_re400,ppo,145,58.0,velocity,lower_uy,-0.19552837312221527 +karman_re400,ppo,146,58.4,velocity,upper_ux,1.230523943901062 +karman_re400,ppo,146,58.4,velocity,upper_uy,-0.1474160999059677 +karman_re400,ppo,146,58.4,velocity,center_ux,0.5965753793716431 +karman_re400,ppo,146,58.4,velocity,center_uy,-0.6419448852539062 +karman_re400,ppo,146,58.4,velocity,lower_ux,0.8728874921798706 +karman_re400,ppo,146,58.4,velocity,lower_uy,-0.11780402809381485 +karman_re400,ppo,147,58.8,velocity,upper_ux,1.416398286819458 +karman_re400,ppo,147,58.8,velocity,upper_uy,-0.2679276168346405 +karman_re400,ppo,147,58.8,velocity,center_ux,0.3479336202144623 +karman_re400,ppo,147,58.8,velocity,center_uy,-0.5009122490882874 +karman_re400,ppo,147,58.8,velocity,lower_ux,0.8389832377433777 +karman_re400,ppo,147,58.8,velocity,lower_uy,-0.01967349834740162 +karman_re400,ppo,148,59.2,velocity,upper_ux,1.357955813407898 +karman_re400,ppo,148,59.2,velocity,upper_uy,-0.02108139917254448 +karman_re400,ppo,148,59.2,velocity,center_ux,0.15053491294384003 +karman_re400,ppo,148,59.2,velocity,center_uy,0.12106943875551224 +karman_re400,ppo,148,59.2,velocity,lower_ux,0.826826810836792 +karman_re400,ppo,148,59.2,velocity,lower_uy,0.09333069622516632 +karman_re400,ppo,149,59.6,velocity,upper_ux,1.266939401626587 +karman_re400,ppo,149,59.6,velocity,upper_uy,0.25454336404800415 +karman_re400,ppo,149,59.6,velocity,center_ux,0.281497597694397 +karman_re400,ppo,149,59.6,velocity,center_uy,0.6745455265045166 +karman_re400,ppo,149,59.6,velocity,lower_ux,0.8577218055725098 +karman_re400,ppo,149,59.6,velocity,lower_uy,0.17635656893253326 +karman_re400,ppo,150,60.0,velocity,upper_ux,1.1392205953598022 +karman_re400,ppo,150,60.0,velocity,upper_uy,0.3028700649738312 +karman_re400,ppo,150,60.0,velocity,center_ux,0.4868942201137543 +karman_re400,ppo,150,60.0,velocity,center_uy,0.772950291633606 +karman_re400,ppo,150,60.0,velocity,lower_ux,0.9278035163879395 +karman_re400,ppo,150,60.0,velocity,lower_uy,0.22454200685024261 +karman_re400,ppo,151,60.4,velocity,upper_ux,1.0488892793655396 +karman_re400,ppo,151,60.4,velocity,upper_uy,0.2792966365814209 +karman_re400,ppo,151,60.4,velocity,center_ux,0.5882558226585388 +karman_re400,ppo,151,60.4,velocity,center_uy,0.767102837562561 +karman_re400,ppo,151,60.4,velocity,lower_ux,1.0195245742797852 +karman_re400,ppo,151,60.4,velocity,lower_uy,0.2404015213251114 +karman_re400,ppo,152,60.8,velocity,upper_ux,0.9846212267875671 +karman_re400,ppo,152,60.8,velocity,upper_uy,0.22573736310005188 +karman_re400,ppo,152,60.8,velocity,center_ux,0.6305943131446838 +karman_re400,ppo,152,60.8,velocity,center_uy,0.8006480932235718 +karman_re400,ppo,152,60.8,velocity,lower_ux,1.1077667474746704 +karman_re400,ppo,152,60.8,velocity,lower_uy,0.20165430009365082 +karman_re400,ppo,153,61.2,velocity,upper_ux,0.9483551979064941 +karman_re400,ppo,153,61.2,velocity,upper_uy,0.1692485362291336 +karman_re400,ppo,153,61.2,velocity,center_ux,0.7067329287528992 +karman_re400,ppo,153,61.2,velocity,center_uy,0.7924774289131165 +karman_re400,ppo,153,61.2,velocity,lower_ux,1.1683320999145508 +karman_re400,ppo,153,61.2,velocity,lower_uy,0.2339434176683426 +karman_re400,ppo,154,61.6,velocity,upper_ux,0.9003633260726929 +karman_re400,ppo,154,61.6,velocity,upper_uy,0.1133880540728569 +karman_re400,ppo,154,61.6,velocity,center_ux,0.7496809363365173 +karman_re400,ppo,154,61.6,velocity,center_uy,0.6886748671531677 +karman_re400,ppo,154,61.6,velocity,lower_ux,1.1719311475753784 +karman_re400,ppo,154,61.6,velocity,lower_uy,0.35168370604515076 +karman_re400,ppo,155,62.0,velocity,upper_ux,0.8398552536964417 +karman_re400,ppo,155,62.0,velocity,upper_uy,0.019721029326319695 +karman_re400,ppo,155,62.0,velocity,center_ux,0.6767991781234741 +karman_re400,ppo,155,62.0,velocity,center_uy,-0.058227408677339554 +karman_re400,ppo,155,62.0,velocity,lower_ux,1.0973396301269531 +karman_re400,ppo,155,62.0,velocity,lower_uy,-0.17372575402259827 +karman_re400,ppo,156,62.4,velocity,upper_ux,0.8228752613067627 +karman_re400,ppo,156,62.4,velocity,upper_uy,-0.10043945908546448 +karman_re400,ppo,156,62.4,velocity,center_ux,0.6157484650611877 +karman_re400,ppo,156,62.4,velocity,center_uy,-0.8281590342521667 +karman_re400,ppo,156,62.4,velocity,lower_ux,1.1398844718933105 +karman_re400,ppo,156,62.4,velocity,lower_uy,-0.23828458786010742 +karman_re400,ppo,157,62.8,velocity,upper_ux,0.8727973103523254 +karman_re400,ppo,157,62.8,velocity,upper_uy,-0.18480941653251648 +karman_re400,ppo,157,62.8,velocity,center_ux,0.6483713388442993 +karman_re400,ppo,157,62.8,velocity,center_uy,-0.9252092242240906 +karman_re400,ppo,157,62.8,velocity,lower_ux,1.118789792060852 +karman_re400,ppo,157,62.8,velocity,lower_uy,-0.2307633012533188 +karman_re400,ppo,158,63.2,velocity,upper_ux,0.9622148275375366 +karman_re400,ppo,158,63.2,velocity,upper_uy,-0.23376810550689697 +karman_re400,ppo,158,63.2,velocity,center_ux,0.6772303581237793 +karman_re400,ppo,158,63.2,velocity,center_uy,-0.8126335144042969 +karman_re400,ppo,158,63.2,velocity,lower_ux,1.055294394493103 +karman_re400,ppo,158,63.2,velocity,lower_uy,-0.21561859548091888 +karman_re400,ppo,159,63.6,velocity,upper_ux,1.076087474822998 +karman_re400,ppo,159,63.6,velocity,upper_uy,-0.22914808988571167 +karman_re400,ppo,159,63.6,velocity,center_ux,0.6666821837425232 +karman_re400,ppo,159,63.6,velocity,center_uy,-0.7645955681800842 +karman_re400,ppo,159,63.6,velocity,lower_ux,0.9952000975608826 +karman_re400,ppo,159,63.6,velocity,lower_uy,-0.1738888919353485 +karman_re400,ppo,160,64.0,velocity,upper_ux,1.181235909461975 +karman_re400,ppo,160,64.0,velocity,upper_uy,-0.1578555852174759 +karman_re400,ppo,160,64.0,velocity,center_ux,0.6365852952003479 +karman_re400,ppo,160,64.0,velocity,center_uy,-0.6799526214599609 +karman_re400,ppo,160,64.0,velocity,lower_ux,0.9499046206474304 +karman_re400,ppo,160,64.0,velocity,lower_uy,-0.11048975586891174 +karman_re400,ppo,161,64.4,velocity,upper_ux,1.2648402452468872 +karman_re400,ppo,161,64.4,velocity,upper_uy,-0.2438567578792572 +karman_re400,ppo,161,64.4,velocity,center_ux,0.4594460725784302 +karman_re400,ppo,161,64.4,velocity,center_uy,-0.5896931290626526 +karman_re400,ppo,161,64.4,velocity,lower_ux,0.9071986675262451 +karman_re400,ppo,161,64.4,velocity,lower_uy,-0.025567907840013504 +karman_re400,ppo,162,64.8,velocity,upper_ux,1.1983532905578613 +karman_re400,ppo,162,64.8,velocity,upper_uy,-0.03212011232972145 +karman_re400,ppo,162,64.8,velocity,center_ux,0.21694141626358032 +karman_re400,ppo,162,64.8,velocity,center_uy,-0.0471125990152359 +karman_re400,ppo,162,64.8,velocity,lower_ux,0.8800289034843445 +karman_re400,ppo,162,64.8,velocity,lower_uy,0.07372895628213882 +karman_re400,ppo,163,65.2,velocity,upper_ux,1.2259132862091064 +karman_re400,ppo,163,65.2,velocity,upper_uy,0.1909533441066742 +karman_re400,ppo,163,65.2,velocity,center_ux,0.2713993489742279 +karman_re400,ppo,163,65.2,velocity,center_uy,0.6268026828765869 +karman_re400,ppo,163,65.2,velocity,lower_ux,0.8877498507499695 +karman_re400,ppo,163,65.2,velocity,lower_uy,0.15147072076797485 +karman_re400,ppo,164,65.6,velocity,upper_ux,1.1733535528182983 +karman_re400,ppo,164,65.6,velocity,upper_uy,0.257038950920105 +karman_re400,ppo,164,65.6,velocity,center_ux,0.48359474539756775 +karman_re400,ppo,164,65.6,velocity,center_uy,0.8028503656387329 +karman_re400,ppo,164,65.6,velocity,lower_ux,0.9343324303627014 +karman_re400,ppo,164,65.6,velocity,lower_uy,0.1987529695034027 +karman_re400,ppo,165,66.0,velocity,upper_ux,1.0622377395629883 +karman_re400,ppo,165,66.0,velocity,upper_uy,0.26524996757507324 +karman_re400,ppo,165,66.0,velocity,center_ux,0.6377290487289429 +karman_re400,ppo,165,66.0,velocity,center_uy,0.7343318462371826 +karman_re400,ppo,165,66.0,velocity,lower_ux,1.008923053741455 +karman_re400,ppo,165,66.0,velocity,lower_uy,0.22752194106578827 +karman_re400,ppo,166,66.4,velocity,upper_ux,0.9697557091712952 +karman_re400,ppo,166,66.4,velocity,upper_uy,0.21485763788223267 +karman_re400,ppo,166,66.4,velocity,center_ux,0.6929710507392883 +karman_re400,ppo,166,66.4,velocity,center_uy,0.7153065204620361 +karman_re400,ppo,166,66.4,velocity,lower_ux,1.0953789949417114 +karman_re400,ppo,166,66.4,velocity,lower_uy,0.20517300069332123 +karman_re400,ppo,167,66.8,velocity,upper_ux,0.9052865505218506 +karman_re400,ppo,167,66.8,velocity,upper_uy,0.13610965013504028 +karman_re400,ppo,167,66.8,velocity,center_ux,0.6702338457107544 +karman_re400,ppo,167,66.8,velocity,center_uy,0.7445175051689148 +karman_re400,ppo,167,66.8,velocity,lower_ux,1.1592963933944702 +karman_re400,ppo,167,66.8,velocity,lower_uy,0.11644258350133896 +karman_re400,ppo,168,67.2,velocity,upper_ux,0.8554393649101257 +karman_re400,ppo,168,67.2,velocity,upper_uy,0.03358371555805206 +karman_re400,ppo,168,67.2,velocity,center_ux,0.46367785334587097 +karman_re400,ppo,168,67.2,velocity,center_uy,0.6809616088867188 +karman_re400,ppo,168,67.2,velocity,lower_ux,1.2905117273330688 +karman_re400,ppo,168,67.2,velocity,lower_uy,0.1158394068479538 +karman_re400,ppo,169,67.6,velocity,upper_ux,0.8291522264480591 +karman_re400,ppo,169,67.6,velocity,upper_uy,-0.08535207062959671 +karman_re400,ppo,169,67.6,velocity,center_ux,0.26816651225090027 +karman_re400,ppo,169,67.6,velocity,center_uy,-0.07974106073379517 +karman_re400,ppo,169,67.6,velocity,lower_ux,1.4161304235458374 +karman_re400,ppo,169,67.6,velocity,lower_uy,0.16491597890853882 +karman_re400,ppo,170,68.0,velocity,upper_ux,0.8420730829238892 +karman_re400,ppo,170,68.0,velocity,upper_uy,-0.19312483072280884 +karman_re400,ppo,170,68.0,velocity,center_ux,0.3772558271884918 +karman_re400,ppo,170,68.0,velocity,center_uy,-0.7828003764152527 +karman_re400,ppo,170,68.0,velocity,lower_ux,1.1969645023345947 +karman_re400,ppo,170,68.0,velocity,lower_uy,-0.08545266091823578 +karman_re400,ppo,171,68.4,velocity,upper_ux,0.8929154872894287 +karman_re400,ppo,171,68.4,velocity,upper_uy,-0.2579300105571747 +karman_re400,ppo,171,68.4,velocity,center_ux,0.5801393389701843 +karman_re400,ppo,171,68.4,velocity,center_uy,-0.8072660565376282 +karman_re400,ppo,171,68.4,velocity,lower_ux,1.070391058921814 +karman_re400,ppo,171,68.4,velocity,lower_uy,-0.23656342923641205 +karman_re400,ppo,172,68.8,velocity,upper_ux,0.9718660116195679 +karman_re400,ppo,172,68.8,velocity,upper_uy,-0.3024178147315979 +karman_re400,ppo,172,68.8,velocity,center_ux,0.6617727875709534 +karman_re400,ppo,172,68.8,velocity,center_uy,-0.6817081570625305 +karman_re400,ppo,172,68.8,velocity,lower_ux,1.0102152824401855 +karman_re400,ppo,172,68.8,velocity,lower_uy,-0.2311192750930786 +karman_re400,ppo,173,69.2,velocity,upper_ux,1.0760706663131714 +karman_re400,ppo,173,69.2,velocity,upper_uy,-0.3198888301849365 +karman_re400,ppo,173,69.2,velocity,center_ux,0.6516960859298706 +karman_re400,ppo,173,69.2,velocity,center_uy,-0.6347107887268066 +karman_re400,ppo,173,69.2,velocity,lower_ux,0.948818027973175 +karman_re400,ppo,173,69.2,velocity,lower_uy,-0.19835050404071808 +karman_re400,ppo,174,69.6,velocity,upper_ux,1.189170241355896 +karman_re400,ppo,174,69.6,velocity,upper_uy,-0.2665899693965912 +karman_re400,ppo,174,69.6,velocity,center_ux,0.5939728617668152 +karman_re400,ppo,174,69.6,velocity,center_uy,-0.5771190524101257 +karman_re400,ppo,174,69.6,velocity,lower_ux,0.9016353487968445 +karman_re400,ppo,174,69.6,velocity,lower_uy,-0.14211013913154602 +karman_re400,ppo,175,70.0,velocity,upper_ux,1.3227827548980713 +karman_re400,ppo,175,70.0,velocity,upper_uy,-0.307588666677475 +karman_re400,ppo,175,70.0,velocity,center_ux,0.532708466053009 +karman_re400,ppo,175,70.0,velocity,center_uy,-0.431808739900589 +karman_re400,ppo,175,70.0,velocity,lower_ux,0.874057948589325 +karman_re400,ppo,175,70.0,velocity,lower_uy,-0.07000187784433365 +karman_re400,ppo,176,70.4,velocity,upper_ux,1.4161278009414673 +karman_re400,ppo,176,70.4,velocity,upper_uy,-0.3480195701122284 +karman_re400,ppo,176,70.4,velocity,center_ux,0.3697654604911804 +karman_re400,ppo,176,70.4,velocity,center_uy,-0.23531007766723633 +karman_re400,ppo,176,70.4,velocity,lower_ux,0.8544508218765259 +karman_re400,ppo,176,70.4,velocity,lower_uy,0.02090287394821644 +karman_re400,ppo,177,70.8,velocity,upper_ux,1.4837532043457031 +karman_re400,ppo,177,70.8,velocity,upper_uy,0.0014493332710117102 +karman_re400,ppo,177,70.8,velocity,center_ux,0.23343591392040253 +karman_re400,ppo,177,70.8,velocity,center_uy,0.15457986295223236 +karman_re400,ppo,177,70.8,velocity,lower_ux,0.8503172993659973 +karman_re400,ppo,177,70.8,velocity,lower_uy,0.11941066384315491 +karman_re400,ppo,178,71.2,velocity,upper_ux,1.4766746759414673 +karman_re400,ppo,178,71.2,velocity,upper_uy,0.3675789535045624 +karman_re400,ppo,178,71.2,velocity,center_ux,0.3111599087715149 +karman_re400,ppo,178,71.2,velocity,center_uy,0.5248731374740601 +karman_re400,ppo,178,71.2,velocity,lower_ux,0.8823904395103455 +karman_re400,ppo,178,71.2,velocity,lower_uy,0.1859954595565796 +karman_re400,ppo,179,71.6,velocity,upper_ux,1.2171838283538818 +karman_re400,ppo,179,71.6,velocity,upper_uy,0.5689795017242432 +karman_re400,ppo,179,71.6,velocity,center_ux,0.4805351495742798 +karman_re400,ppo,179,71.6,velocity,center_uy,0.6344872117042542 +karman_re400,ppo,179,71.6,velocity,lower_ux,0.9468184113502502 +karman_re400,ppo,179,71.6,velocity,lower_uy,0.22948019206523895 +karman_re400,ppo,180,72.0,velocity,upper_ux,1.041412591934204 +karman_re400,ppo,180,72.0,velocity,upper_uy,0.42143580317497253 +karman_re400,ppo,180,72.0,velocity,center_ux,0.57120281457901 +karman_re400,ppo,180,72.0,velocity,center_uy,0.6888332366943359 +karman_re400,ppo,180,72.0,velocity,lower_ux,1.025526762008667 +karman_re400,ppo,180,72.0,velocity,lower_uy,0.238789901137352 +karman_re400,ppo,181,72.4,velocity,upper_ux,0.9565852284431458 +karman_re400,ppo,181,72.4,velocity,upper_uy,0.3166218400001526 +karman_re400,ppo,181,72.4,velocity,center_ux,0.6314500570297241 +karman_re400,ppo,181,72.4,velocity,center_uy,0.7458741068840027 +karman_re400,ppo,181,72.4,velocity,lower_ux,1.0899685621261597 +karman_re400,ppo,181,72.4,velocity,lower_uy,0.20782747864723206 +karman_re400,ppo,182,72.8,velocity,upper_ux,0.9074633121490479 +karman_re400,ppo,182,72.8,velocity,upper_uy,0.2232670933008194 +karman_re400,ppo,182,72.8,velocity,center_ux,0.7217531800270081 +karman_re400,ppo,182,72.8,velocity,center_uy,0.8034433126449585 +karman_re400,ppo,182,72.8,velocity,lower_ux,1.1274925470352173 +karman_re400,ppo,182,72.8,velocity,lower_uy,0.2756344676017761 +karman_re400,ppo,183,73.2,velocity,upper_ux,0.8660836815834045 +karman_re400,ppo,183,73.2,velocity,upper_uy,0.13145442306995392 +karman_re400,ppo,183,73.2,velocity,center_ux,0.8223313689231873 +karman_re400,ppo,183,73.2,velocity,center_uy,0.7007606029510498 +karman_re400,ppo,183,73.2,velocity,lower_ux,1.0938721895217896 +karman_re400,ppo,183,73.2,velocity,lower_uy,0.37961819767951965 +karman_re400,ppo,184,73.6,velocity,upper_ux,0.8253028988838196 +karman_re400,ppo,184,73.6,velocity,upper_uy,0.024015232920646667 +karman_re400,ppo,184,73.6,velocity,center_ux,0.7986226677894592 +karman_re400,ppo,184,73.6,velocity,center_uy,0.000840724678710103 +karman_re400,ppo,184,73.6,velocity,lower_ux,1.0847420692443848 +karman_re400,ppo,184,73.6,velocity,lower_uy,-0.23766811192035675 +karman_re400,ppo,185,74.0,velocity,upper_ux,0.8173003196716309 +karman_re400,ppo,185,74.0,velocity,upper_uy,-0.09341781586408615 +karman_re400,ppo,185,74.0,velocity,center_ux,0.678936779499054 +karman_re400,ppo,185,74.0,velocity,center_uy,-0.8122531771659851 +karman_re400,ppo,185,74.0,velocity,lower_ux,1.1521532535552979 +karman_re400,ppo,185,74.0,velocity,lower_uy,-0.2579093277454376 +karman_re400,ppo,186,74.4,velocity,upper_ux,0.8669499754905701 +karman_re400,ppo,186,74.4,velocity,upper_uy,-0.16764149069786072 +karman_re400,ppo,186,74.4,velocity,center_ux,0.6669901013374329 +karman_re400,ppo,186,74.4,velocity,center_uy,-0.9490490555763245 +karman_re400,ppo,186,74.4,velocity,lower_ux,1.1232101917266846 +karman_re400,ppo,186,74.4,velocity,lower_uy,-0.2389223277568817 +karman_re400,ppo,187,74.8,velocity,upper_ux,0.9541919231414795 +karman_re400,ppo,187,74.8,velocity,upper_uy,-0.20565293729305267 +karman_re400,ppo,187,74.8,velocity,center_ux,0.7177574038505554 +karman_re400,ppo,187,74.8,velocity,center_uy,-0.8252323865890503 +karman_re400,ppo,187,74.8,velocity,lower_ux,1.0534723997116089 +karman_re400,ppo,187,74.8,velocity,lower_uy,-0.22444328665733337 +karman_re400,ppo,188,75.2,velocity,upper_ux,1.0559688806533813 +karman_re400,ppo,188,75.2,velocity,upper_uy,-0.1929483413696289 +karman_re400,ppo,188,75.2,velocity,center_ux,0.7444735169410706 +karman_re400,ppo,188,75.2,velocity,center_uy,-0.7706726789474487 +karman_re400,ppo,188,75.2,velocity,lower_ux,0.9896613955497742 +karman_re400,ppo,188,75.2,velocity,lower_uy,-0.1812191754579544 +karman_re400,ppo,189,75.6,velocity,upper_ux,1.1404235363006592 +karman_re400,ppo,189,75.6,velocity,upper_uy,-0.1057405024766922 +karman_re400,ppo,189,75.6,velocity,center_ux,0.7375320196151733 +karman_re400,ppo,189,75.6,velocity,center_uy,-0.7451977729797363 +karman_re400,ppo,189,75.6,velocity,lower_ux,0.9367210268974304 +karman_re400,ppo,189,75.6,velocity,lower_uy,-0.11409113556146622 +karman_re400,ppo,190,76.0,velocity,upper_ux,1.2471232414245605 +karman_re400,ppo,190,76.0,velocity,upper_uy,-0.07119414955377579 +karman_re400,ppo,190,76.0,velocity,center_ux,0.5650613307952881 +karman_re400,ppo,190,76.0,velocity,center_uy,-0.6717914342880249 +karman_re400,ppo,190,76.0,velocity,lower_ux,0.8855857849121094 +karman_re400,ppo,190,76.0,velocity,lower_uy,-0.01983395777642727 +karman_re400,ppo,191,76.4,velocity,upper_ux,1.395430326461792 +karman_re400,ppo,191,76.4,velocity,upper_uy,-0.07019144296646118 +karman_re400,ppo,191,76.4,velocity,center_ux,0.3866392970085144 +karman_re400,ppo,191,76.4,velocity,center_uy,0.13954387605190277 +karman_re400,ppo,191,76.4,velocity,lower_ux,0.8576397895812988 +karman_re400,ppo,191,76.4,velocity,lower_uy,0.09231149405241013 +karman_re400,ppo,192,76.8,velocity,upper_ux,1.2840240001678467 +karman_re400,ppo,192,76.8,velocity,upper_uy,0.06373883038759232 +karman_re400,ppo,192,76.8,velocity,center_ux,0.48424050211906433 +karman_re400,ppo,192,76.8,velocity,center_uy,0.813174843788147 +karman_re400,ppo,192,76.8,velocity,lower_ux,0.8721137046813965 +karman_re400,ppo,192,76.8,velocity,lower_uy,0.1785871684551239 +karman_re400,ppo,193,77.2,velocity,upper_ux,1.1161775588989258 +karman_re400,ppo,193,77.2,velocity,upper_uy,0.1699339747428894 +karman_re400,ppo,193,77.2,velocity,center_ux,0.6579713225364685 +karman_re400,ppo,193,77.2,velocity,center_uy,0.7744303941726685 +karman_re400,ppo,193,77.2,velocity,lower_ux,0.9257221817970276 +karman_re400,ppo,193,77.2,velocity,lower_uy,0.23152828216552734 +karman_re400,ppo,194,77.6,velocity,upper_ux,1.0229912996292114 +karman_re400,ppo,194,77.6,velocity,upper_uy,0.17698469758033752 +karman_re400,ppo,194,77.6,velocity,center_ux,0.7159508466720581 +karman_re400,ppo,194,77.6,velocity,center_uy,0.6529529094696045 +karman_re400,ppo,194,77.6,velocity,lower_ux,1.0031063556671143 +karman_re400,ppo,194,77.6,velocity,lower_uy,0.2655990421772003 +karman_re400,ppo,195,78.0,velocity,upper_ux,0.9589207172393799 +karman_re400,ppo,195,78.0,velocity,upper_uy,0.144004225730896 +karman_re400,ppo,195,78.0,velocity,center_ux,0.6951565742492676 +karman_re400,ppo,195,78.0,velocity,center_uy,0.6037784814834595 +karman_re400,ppo,195,78.0,velocity,lower_ux,1.0873286724090576 +karman_re400,ppo,195,78.0,velocity,lower_uy,0.25669509172439575 +karman_re400,ppo,196,78.4,velocity,upper_ux,0.9082731604576111 +karman_re400,ppo,196,78.4,velocity,upper_uy,0.08128153532743454 +karman_re400,ppo,196,78.4,velocity,center_ux,0.569451093673706 +karman_re400,ppo,196,78.4,velocity,center_uy,0.592923641204834 +karman_re400,ppo,196,78.4,velocity,lower_ux,1.1858112812042236 +karman_re400,ppo,196,78.4,velocity,lower_uy,0.18884965777397156 +karman_re400,ppo,197,78.8,velocity,upper_ux,0.869640052318573 +karman_re400,ppo,197,78.8,velocity,upper_uy,-0.008871900849044323 +karman_re400,ppo,197,78.8,velocity,center_ux,0.2980690598487854 +karman_re400,ppo,197,78.8,velocity,center_uy,0.4255637228488922 +karman_re400,ppo,197,78.8,velocity,lower_ux,1.3779605627059937 +karman_re400,ppo,197,78.8,velocity,lower_uy,0.19486431777477264 +karman_re400,ppo,198,79.2,velocity,upper_ux,0.855396032333374 +karman_re400,ppo,198,79.2,velocity,upper_uy,-0.11531960219144821 +karman_re400,ppo,198,79.2,velocity,center_ux,0.14650942385196686 +karman_re400,ppo,198,79.2,velocity,center_uy,-0.1343487799167633 +karman_re400,ppo,198,79.2,velocity,lower_ux,1.3914378881454468 +karman_re400,ppo,198,79.2,velocity,lower_uy,0.027346165850758553 +karman_re400,ppo,199,79.6,velocity,upper_ux,0.8732836246490479 +karman_re400,ppo,199,79.6,velocity,upper_uy,-0.20643413066864014 +karman_re400,ppo,199,79.6,velocity,center_ux,0.3211035430431366 +karman_re400,ppo,199,79.6,velocity,center_uy,-0.579387366771698 +karman_re400,ppo,199,79.6,velocity,lower_ux,1.1846628189086914 +karman_re400,ppo,199,79.6,velocity,lower_uy,-0.21358923614025116 +karman_re400,ppo,0,0.0,force,front_fx,0.0004468884435482323 +karman_re400,ppo,0,0.0,force,front_fy,0.004954597447067499 +karman_re400,ppo,0,0.0,force,upper_fx,-0.01140286959707737 +karman_re400,ppo,0,0.0,force,upper_fy,0.003116866108030081 +karman_re400,ppo,0,0.0,force,lower_fx,0.007727595511823893 +karman_re400,ppo,0,0.0,force,lower_fy,-0.005553109105676413 +karman_re400,ppo,1,0.4,force,front_fx,0.0041487617418169975 +karman_re400,ppo,1,0.4,force,front_fy,0.0011178625281900167 +karman_re400,ppo,1,0.4,force,upper_fx,-0.01267625018954277 +karman_re400,ppo,1,0.4,force,upper_fy,0.003478371538221836 +karman_re400,ppo,1,0.4,force,lower_fx,0.0029715909622609615 +karman_re400,ppo,1,0.4,force,lower_fy,-0.00414391839876771 +karman_re400,ppo,2,0.8,force,front_fx,0.005441469606012106 +karman_re400,ppo,2,0.8,force,front_fy,-0.000512586731929332 +karman_re400,ppo,2,0.8,force,upper_fx,-0.012547146528959274 +karman_re400,ppo,2,0.8,force,upper_fy,0.006794353015720844 +karman_re400,ppo,2,0.8,force,lower_fx,0.004094996955245733 +karman_re400,ppo,2,0.8,force,lower_fy,-0.005429479293525219 +karman_re400,ppo,3,1.2,force,front_fx,0.0017095879884436727 +karman_re400,ppo,3,1.2,force,front_fy,-0.004645042587071657 +karman_re400,ppo,3,1.2,force,upper_fx,-0.005187602713704109 +karman_re400,ppo,3,1.2,force,upper_fy,0.011404654011130333 +karman_re400,ppo,3,1.2,force,lower_fx,0.0036974898539483547 +karman_re400,ppo,3,1.2,force,lower_fy,-0.004109353292733431 +karman_re400,ppo,4,1.6,force,front_fx,-0.0013923968654125929 +karman_re400,ppo,4,1.6,force,front_fy,-0.005161458160728216 +karman_re400,ppo,4,1.6,force,upper_fx,-0.0008492876659147441 +karman_re400,ppo,4,1.6,force,upper_fy,0.013443556614220142 +karman_re400,ppo,4,1.6,force,lower_fx,0.0024648034013807774 +karman_re400,ppo,4,1.6,force,lower_fy,-0.0034059169702231884 +karman_re400,ppo,5,2.0,force,front_fx,-0.0022442336194217205 +karman_re400,ppo,5,2.0,force,front_fy,-0.005622385069727898 +karman_re400,ppo,5,2.0,force,upper_fx,0.0035668881610035896 +karman_re400,ppo,5,2.0,force,upper_fy,0.01167949941009283 +karman_re400,ppo,5,2.0,force,lower_fx,-0.00042483911965973675 +karman_re400,ppo,5,2.0,force,lower_fy,-0.004797026049345732 +karman_re400,ppo,6,2.4,force,front_fx,-0.0021790789905935526 +karman_re400,ppo,6,2.4,force,front_fy,-0.006404522806406021 +karman_re400,ppo,6,2.4,force,upper_fx,0.006218256428837776 +karman_re400,ppo,6,2.4,force,upper_fy,0.007789588533341885 +karman_re400,ppo,6,2.4,force,lower_fx,-0.0030962792225182056 +karman_re400,ppo,6,2.4,force,lower_fy,-0.005699404515326023 +karman_re400,ppo,7,2.8,force,front_fx,0.0007023646030575037 +karman_re400,ppo,7,2.8,force,front_fy,-0.005586670711636543 +karman_re400,ppo,7,2.8,force,upper_fx,0.006217470858246088 +karman_re400,ppo,7,2.8,force,upper_fy,0.005153901409357786 +karman_re400,ppo,7,2.8,force,lower_fx,-0.0013532929588109255 +karman_re400,ppo,7,2.8,force,lower_fy,-0.006202210206538439 +karman_re400,ppo,8,3.2,force,front_fx,0.0035155306104570627 +karman_re400,ppo,8,3.2,force,front_fy,-0.0021350274328142405 +karman_re400,ppo,8,3.2,force,upper_fx,0.004977010656148195 +karman_re400,ppo,8,3.2,force,upper_fy,0.002898522885516286 +karman_re400,ppo,8,3.2,force,lower_fx,-0.001073900843039155 +karman_re400,ppo,8,3.2,force,lower_fy,-0.001179015962406993 +karman_re400,ppo,9,3.6,force,front_fx,0.0034337479155510664 +karman_re400,ppo,9,3.6,force,front_fy,0.0011825752444565296 +karman_re400,ppo,9,3.6,force,upper_fx,0.0022896381560713053 +karman_re400,ppo,9,3.6,force,upper_fy,0.0025473874993622303 +karman_re400,ppo,9,3.6,force,lower_fx,-0.0036272460129112005 +karman_re400,ppo,9,3.6,force,lower_fy,-0.0022236632648855448 +karman_re400,ppo,10,4.0,force,front_fx,0.0006059081642888486 +karman_re400,ppo,10,4.0,force,front_fy,0.00311918742954731 +karman_re400,ppo,10,4.0,force,upper_fx,0.0007577396463602781 +karman_re400,ppo,10,4.0,force,upper_fy,0.0032737627625465393 +karman_re400,ppo,10,4.0,force,lower_fx,-0.0008093690266832709 +karman_re400,ppo,10,4.0,force,lower_fy,-0.00636625662446022 +karman_re400,ppo,11,4.4,force,front_fx,-0.0009574128780514002 +karman_re400,ppo,11,4.4,force,front_fy,0.004218047019094229 +karman_re400,ppo,11,4.4,force,upper_fx,-0.000415660411817953 +karman_re400,ppo,11,4.4,force,upper_fy,0.003458351129665971 +karman_re400,ppo,11,4.4,force,lower_fx,0.0030116999987512827 +karman_re400,ppo,11,4.4,force,lower_fy,-0.008016017265617847 +karman_re400,ppo,12,4.8,force,front_fx,-0.0012742966646328568 +karman_re400,ppo,12,4.8,force,front_fy,0.0048186383210122585 +karman_re400,ppo,12,4.8,force,upper_fx,-0.002019509905949235 +karman_re400,ppo,12,4.8,force,upper_fy,0.0037963567301630974 +karman_re400,ppo,12,4.8,force,lower_fx,0.00524195795878768 +karman_re400,ppo,12,4.8,force,lower_fy,-0.008357458747923374 +karman_re400,ppo,13,5.2,force,front_fx,-0.00021178821043577045 +karman_re400,ppo,13,5.2,force,front_fy,0.005214150529354811 +karman_re400,ppo,13,5.2,force,upper_fx,-0.003794749965891242 +karman_re400,ppo,13,5.2,force,upper_fy,0.003942841663956642 +karman_re400,ppo,13,5.2,force,lower_fx,0.006611013785004616 +karman_re400,ppo,13,5.2,force,lower_fy,-0.007133583538234234 +karman_re400,ppo,14,5.6,force,front_fx,0.002181312534958124 +karman_re400,ppo,14,5.6,force,front_fy,0.0042096213437616825 +karman_re400,ppo,14,5.6,force,upper_fx,-0.004211103543639183 +karman_re400,ppo,14,5.6,force,upper_fy,0.0028320206329226494 +karman_re400,ppo,14,5.6,force,lower_fx,0.00652221217751503 +karman_re400,ppo,14,5.6,force,lower_fy,-0.005312400404363871 +karman_re400,ppo,15,6.0,force,front_fx,0.004829376004636288 +karman_re400,ppo,15,6.0,force,front_fy,0.0019884579814970493 +karman_re400,ppo,15,6.0,force,upper_fx,-0.005262140184640884 +karman_re400,ppo,15,6.0,force,upper_fy,0.00041034474270418286 +karman_re400,ppo,15,6.0,force,lower_fx,0.006567807402461767 +karman_re400,ppo,15,6.0,force,lower_fy,-0.002807706594467163 +karman_re400,ppo,16,6.4,force,front_fx,0.004152426030486822 +karman_re400,ppo,16,6.4,force,front_fy,-0.00090025580720976 +karman_re400,ppo,16,6.4,force,upper_fx,-0.0053213234059512615 +karman_re400,ppo,16,6.4,force,upper_fy,0.002596173668280244 +karman_re400,ppo,16,6.4,force,lower_fx,0.005918584298342466 +karman_re400,ppo,16,6.4,force,lower_fy,-0.0006421607686206698 +karman_re400,ppo,17,6.8,force,front_fx,0.0022517337929457426 +karman_re400,ppo,17,6.8,force,front_fy,-0.00301844603382051 +karman_re400,ppo,17,6.8,force,upper_fx,-0.0010452985297888517 +karman_re400,ppo,17,6.8,force,upper_fy,0.005261919926851988 +karman_re400,ppo,17,6.8,force,lower_fx,0.004876517225056887 +karman_re400,ppo,17,6.8,force,lower_fy,-0.00017686834326013923 +karman_re400,ppo,18,7.2,force,front_fx,-0.0004292450030334294 +karman_re400,ppo,18,7.2,force,front_fy,-0.004355199635028839 +karman_re400,ppo,18,7.2,force,upper_fx,0.0025692388880997896 +karman_re400,ppo,18,7.2,force,upper_fy,0.005752258934080601 +karman_re400,ppo,18,7.2,force,lower_fx,0.00317676761187613 +karman_re400,ppo,18,7.2,force,lower_fy,-0.0021672577131539583 +karman_re400,ppo,19,7.6,force,front_fx,-0.002021289896219969 +karman_re400,ppo,19,7.6,force,front_fy,-0.005176017992198467 +karman_re400,ppo,19,7.6,force,upper_fx,0.003916998393833637 +karman_re400,ppo,19,7.6,force,upper_fy,0.006269348785281181 +karman_re400,ppo,19,7.6,force,lower_fx,0.002153298817574978 +karman_re400,ppo,19,7.6,force,lower_fy,-0.004734349437057972 +karman_re400,ppo,20,8.0,force,front_fx,-0.0024680609349161386 +karman_re400,ppo,20,8.0,force,front_fy,-0.005903175566345453 +karman_re400,ppo,20,8.0,force,upper_fx,0.00490151671692729 +karman_re400,ppo,20,8.0,force,upper_fy,0.006711104419082403 +karman_re400,ppo,20,8.0,force,lower_fx,-0.0014710010727867484 +karman_re400,ppo,20,8.0,force,lower_fy,-0.0051529286429286 +karman_re400,ppo,21,8.4,force,front_fx,0.00021490194194484502 +karman_re400,ppo,21,8.4,force,front_fy,-0.00566027220338583 +karman_re400,ppo,21,8.4,force,upper_fx,0.005634348373860121 +karman_re400,ppo,21,8.4,force,upper_fy,0.006411271635442972 +karman_re400,ppo,21,8.4,force,lower_fx,-0.003784205997362733 +karman_re400,ppo,21,8.4,force,lower_fy,-0.004178394563496113 +karman_re400,ppo,22,8.8,force,front_fx,0.0032404151279479265 +karman_re400,ppo,22,8.8,force,front_fy,-0.003323677694424987 +karman_re400,ppo,22,8.8,force,upper_fx,0.005252906121313572 +karman_re400,ppo,22,8.8,force,upper_fy,0.005669009871780872 +karman_re400,ppo,22,8.8,force,lower_fx,-0.006228808779269457 +karman_re400,ppo,22,8.8,force,lower_fy,-0.0011958618415519595 +karman_re400,ppo,23,9.2,force,front_fx,0.005237868521362543 +karman_re400,ppo,23,9.2,force,front_fy,-0.0003014355315826833 +karman_re400,ppo,23,9.2,force,upper_fx,0.005168365780264139 +karman_re400,ppo,23,9.2,force,upper_fy,0.004098043777048588 +karman_re400,ppo,23,9.2,force,lower_fx,-0.009063535369932652 +karman_re400,ppo,23,9.2,force,lower_fy,-0.00017447788559366018 +karman_re400,ppo,24,9.6,force,front_fx,0.002581147477030754 +karman_re400,ppo,24,9.6,force,front_fy,0.0024916892871260643 +karman_re400,ppo,24,9.6,force,upper_fx,0.005730475299060345 +karman_re400,ppo,24,9.6,force,upper_fy,0.0029195661190897226 +karman_re400,ppo,24,9.6,force,lower_fx,-0.008226887322962284 +karman_re400,ppo,24,9.6,force,lower_fy,-0.005004301201552153 +karman_re400,ppo,25,10.0,force,front_fx,0.0002924608124885708 +karman_re400,ppo,25,10.0,force,front_fy,0.004775755573064089 +karman_re400,ppo,25,10.0,force,upper_fx,0.005021542776376009 +karman_re400,ppo,25,10.0,force,upper_fy,0.0023286244831979275 +karman_re400,ppo,25,10.0,force,lower_fx,-0.0020089619792997837 +karman_re400,ppo,25,10.0,force,lower_fy,-0.008598512969911098 +karman_re400,ppo,26,10.4,force,front_fx,-0.0023244500625878572 +karman_re400,ppo,26,10.4,force,front_fy,0.0055423034355044365 +karman_re400,ppo,26,10.4,force,upper_fx,0.002412787638604641 +karman_re400,ppo,26,10.4,force,upper_fy,0.003656343324109912 +karman_re400,ppo,26,10.4,force,lower_fx,0.0037961953785270452 +karman_re400,ppo,26,10.4,force,lower_fy,-0.009232855401933193 +karman_re400,ppo,27,10.8,force,front_fx,-0.0030948242638260126 +karman_re400,ppo,27,10.8,force,front_fy,0.006093268282711506 +karman_re400,ppo,27,10.8,force,upper_fx,0.00034681824035942554 +karman_re400,ppo,27,10.8,force,upper_fy,0.006061025895178318 +karman_re400,ppo,27,10.8,force,lower_fx,0.005954789463430643 +karman_re400,ppo,27,10.8,force,lower_fy,-0.008008908480405807 +karman_re400,ppo,28,11.2,force,front_fx,-0.0017548581818118691 +karman_re400,ppo,28,11.2,force,front_fy,0.006259964779019356 +karman_re400,ppo,28,11.2,force,upper_fx,-0.0034722599666565657 +karman_re400,ppo,28,11.2,force,upper_fy,0.007207661401480436 +karman_re400,ppo,28,11.2,force,lower_fx,0.005959851201623678 +karman_re400,ppo,28,11.2,force,lower_fy,-0.0063689774833619595 +karman_re400,ppo,29,11.6,force,front_fx,0.0023439230863004923 +karman_re400,ppo,29,11.6,force,front_fy,0.004357566125690937 +karman_re400,ppo,29,11.6,force,upper_fx,-0.006287300959229469 +karman_re400,ppo,29,11.6,force,upper_fy,0.0053743598982691765 +karman_re400,ppo,29,11.6,force,lower_fx,0.004644939675927162 +karman_re400,ppo,29,11.6,force,lower_fy,-0.005285282153636217 +karman_re400,ppo,30,12.0,force,front_fx,0.004555892199277878 +karman_re400,ppo,30,12.0,force,front_fy,0.001607449958100915 +karman_re400,ppo,30,12.0,force,upper_fx,-0.008596645668148994 +karman_re400,ppo,30,12.0,force,upper_fy,0.004203541204333305 +karman_re400,ppo,30,12.0,force,lower_fx,0.004469429608434439 +karman_re400,ppo,30,12.0,force,lower_fy,-0.0044203875586390495 +karman_re400,ppo,31,12.4,force,front_fx,0.0026366866659373045 +karman_re400,ppo,31,12.4,force,front_fy,-0.0016153312753885984 +karman_re400,ppo,31,12.4,force,upper_fx,-0.007908537052571774 +karman_re400,ppo,31,12.4,force,upper_fy,0.0074844942428171635 +karman_re400,ppo,31,12.4,force,lower_fx,0.004669749643653631 +karman_re400,ppo,31,12.4,force,lower_fy,-0.0037923259660601616 +karman_re400,ppo,32,12.8,force,front_fx,0.0008319318294525146 +karman_re400,ppo,32,12.8,force,front_fy,-0.0037307366728782654 +karman_re400,ppo,32,12.8,force,upper_fx,-0.003278565127402544 +karman_re400,ppo,32,12.8,force,upper_fy,0.00925020594149828 +karman_re400,ppo,32,12.8,force,lower_fx,0.003442092565819621 +karman_re400,ppo,32,12.8,force,lower_fy,-0.0029628071933984756 +karman_re400,ppo,33,13.2,force,front_fx,-0.0014401391381397843 +karman_re400,ppo,33,13.2,force,front_fy,-0.0047164298593997955 +karman_re400,ppo,33,13.2,force,upper_fx,0.0008563246810808778 +karman_re400,ppo,33,13.2,force,upper_fy,0.009844559244811535 +karman_re400,ppo,33,13.2,force,lower_fx,0.0008507852326147258 +karman_re400,ppo,33,13.2,force,lower_fy,-0.0035424111410975456 +karman_re400,ppo,34,13.6,force,front_fx,-0.0021010106429457664 +karman_re400,ppo,34,13.6,force,front_fy,-0.005131779704242945 +karman_re400,ppo,34,13.6,force,upper_fx,0.004055453464388847 +karman_re400,ppo,34,13.6,force,upper_fy,0.008820198476314545 +karman_re400,ppo,34,13.6,force,lower_fx,-0.0012549738166853786 +karman_re400,ppo,34,13.6,force,lower_fy,-0.004214709158986807 +karman_re400,ppo,35,14.0,force,front_fx,-0.0015225893585011363 +karman_re400,ppo,35,14.0,force,front_fy,-0.005638852249830961 +karman_re400,ppo,35,14.0,force,upper_fx,0.0054699634201824665 +karman_re400,ppo,35,14.0,force,upper_fy,0.006659686099737883 +karman_re400,ppo,35,14.0,force,lower_fx,-0.004022966604679823 +karman_re400,ppo,35,14.0,force,lower_fy,-0.00587278138846159 +karman_re400,ppo,36,14.4,force,front_fx,0.001227056491188705 +karman_re400,ppo,36,14.4,force,front_fy,-0.005002647638320923 +karman_re400,ppo,36,14.4,force,upper_fx,0.005414253566414118 +karman_re400,ppo,36,14.4,force,upper_fy,0.0049759745597839355 +karman_re400,ppo,36,14.4,force,lower_fx,-0.005516262724995613 +karman_re400,ppo,36,14.4,force,lower_fy,-0.006228545680642128 +karman_re400,ppo,37,14.8,force,front_fx,0.004268711432814598 +karman_re400,ppo,37,14.8,force,front_fy,-0.0023838256020098925 +karman_re400,ppo,37,14.8,force,upper_fx,0.004142216872423887 +karman_re400,ppo,37,14.8,force,upper_fy,0.0043223886750638485 +karman_re400,ppo,37,14.8,force,lower_fx,-0.006289515644311905 +karman_re400,ppo,37,14.8,force,lower_fy,-0.004855560604482889 +karman_re400,ppo,38,15.2,force,front_fx,0.003928039222955704 +karman_re400,ppo,38,15.2,force,front_fy,0.0003535848227329552 +karman_re400,ppo,38,15.2,force,upper_fx,0.003299359930679202 +karman_re400,ppo,38,15.2,force,upper_fy,0.0029632956720888615 +karman_re400,ppo,38,15.2,force,lower_fx,-0.00669604167342186 +karman_re400,ppo,38,15.2,force,lower_fy,-0.004189337603747845 +karman_re400,ppo,39,15.6,force,front_fx,0.0021881521679461002 +karman_re400,ppo,39,15.6,force,front_fy,0.002955400152131915 +karman_re400,ppo,39,15.6,force,upper_fx,0.0018799538956955075 +karman_re400,ppo,39,15.6,force,upper_fy,0.001816850621253252 +karman_re400,ppo,39,15.6,force,lower_fx,-0.004164872691035271 +karman_re400,ppo,39,15.6,force,lower_fy,-0.005817807279527187 +karman_re400,ppo,40,16.0,force,front_fx,-0.0004079485952388495 +karman_re400,ppo,40,16.0,force,front_fy,0.004200824536383152 +karman_re400,ppo,40,16.0,force,upper_fx,0.0006372805801220238 +karman_re400,ppo,40,16.0,force,upper_fy,0.0021149355452507734 +karman_re400,ppo,40,16.0,force,lower_fx,-0.00033515048562549055 +karman_re400,ppo,40,16.0,force,lower_fy,-0.007089936640113592 +karman_re400,ppo,41,16.4,force,front_fx,-0.0020132053177803755 +karman_re400,ppo,41,16.4,force,front_fy,0.005114353261888027 +karman_re400,ppo,41,16.4,force,upper_fx,-0.0004111874441150576 +karman_re400,ppo,41,16.4,force,upper_fy,0.003518217708915472 +karman_re400,ppo,41,16.4,force,lower_fx,0.002704089507460594 +karman_re400,ppo,41,16.4,force,lower_fy,-0.007185423746705055 +karman_re400,ppo,42,16.8,force,front_fx,-0.0019282907014712691 +karman_re400,ppo,42,16.8,force,front_fy,0.005496297497302294 +karman_re400,ppo,42,16.8,force,upper_fx,-0.0018120715394616127 +karman_re400,ppo,42,16.8,force,upper_fy,0.004326565656810999 +karman_re400,ppo,42,16.8,force,lower_fx,0.004132234025746584 +karman_re400,ppo,42,16.8,force,lower_fy,-0.0066722058691084385 +karman_re400,ppo,43,17.2,force,front_fx,0.000595423043705523 +karman_re400,ppo,43,17.2,force,front_fy,0.004986057989299297 +karman_re400,ppo,43,17.2,force,upper_fx,-0.0034794965758919716 +karman_re400,ppo,43,17.2,force,upper_fy,0.0038478306960314512 +karman_re400,ppo,43,17.2,force,lower_fx,0.004319638479501009 +karman_re400,ppo,43,17.2,force,lower_fy,-0.005746596958488226 +karman_re400,ppo,44,17.6,force,front_fx,0.004359413869678974 +karman_re400,ppo,44,17.6,force,front_fy,0.0022689304314553738 +karman_re400,ppo,44,17.6,force,upper_fx,-0.005347194150090218 +karman_re400,ppo,44,17.6,force,upper_fy,0.0014622965827584267 +karman_re400,ppo,44,17.6,force,lower_fx,0.0037760233972221613 +karman_re400,ppo,44,17.6,force,lower_fy,-0.004612279590219259 +karman_re400,ppo,45,18.0,force,front_fx,0.004101784434169531 +karman_re400,ppo,45,18.0,force,front_fy,-0.00011627525236690417 +karman_re400,ppo,45,18.0,force,upper_fx,-0.0075715165585279465 +karman_re400,ppo,45,18.0,force,upper_fy,0.001365029951557517 +karman_re400,ppo,45,18.0,force,lower_fx,0.004206467419862747 +karman_re400,ppo,45,18.0,force,lower_fy,-0.002894841367378831 +karman_re400,ppo,46,18.4,force,front_fx,0.002412260975688696 +karman_re400,ppo,46,18.4,force,front_fy,-0.003012838074937463 +karman_re400,ppo,46,18.4,force,upper_fx,-0.005819106008857489 +karman_re400,ppo,46,18.4,force,upper_fy,0.005260608624666929 +karman_re400,ppo,46,18.4,force,lower_fx,0.003839086974039674 +karman_re400,ppo,46,18.4,force,lower_fy,-0.001525202882476151 +karman_re400,ppo,47,18.8,force,front_fx,-0.00014329011901281774 +karman_re400,ppo,47,18.8,force,front_fy,-0.004749910905957222 +karman_re400,ppo,47,18.8,force,upper_fx,-0.0009787590242922306 +karman_re400,ppo,47,18.8,force,upper_fy,0.00746246799826622 +karman_re400,ppo,47,18.8,force,lower_fx,0.0031590366270393133 +karman_re400,ppo,47,18.8,force,lower_fy,-0.0013651966582983732 +karman_re400,ppo,48,19.2,force,front_fx,-0.002342232270166278 +karman_re400,ppo,48,19.2,force,front_fy,-0.005432901903986931 +karman_re400,ppo,48,19.2,force,upper_fx,0.002638012869283557 +karman_re400,ppo,48,19.2,force,upper_fy,0.008060775697231293 +karman_re400,ppo,48,19.2,force,lower_fx,0.001366467447951436 +karman_re400,ppo,48,19.2,force,lower_fy,-0.0030580847524106503 +karman_re400,ppo,49,19.6,force,front_fx,-0.002777306130155921 +karman_re400,ppo,49,19.6,force,front_fy,-0.006101891398429871 +karman_re400,ppo,49,19.6,force,upper_fx,0.0042791469022631645 +karman_re400,ppo,49,19.6,force,upper_fy,0.007320059463381767 +karman_re400,ppo,49,19.6,force,lower_fx,-0.0009013978415168822 +karman_re400,ppo,49,19.6,force,lower_fy,-0.004428750369697809 +karman_re400,ppo,50,20.0,force,front_fx,-0.001465133624151349 +karman_re400,ppo,50,20.0,force,front_fy,-0.006028221920132637 +karman_re400,ppo,50,20.0,force,upper_fx,0.004794204141944647 +karman_re400,ppo,50,20.0,force,upper_fy,0.006103949621319771 +karman_re400,ppo,50,20.0,force,lower_fx,-0.0038131875917315483 +karman_re400,ppo,50,20.0,force,lower_fy,-0.005941805429756641 +karman_re400,ppo,51,20.4,force,front_fx,0.001813922543078661 +karman_re400,ppo,51,20.4,force,front_fy,-0.0044049364514648914 +karman_re400,ppo,51,20.4,force,upper_fx,0.004868370480835438 +karman_re400,ppo,51,20.4,force,upper_fy,0.004594605881720781 +karman_re400,ppo,51,20.4,force,lower_fx,-0.005310901906341314 +karman_re400,ppo,51,20.4,force,lower_fy,-0.005615446716547012 +karman_re400,ppo,52,20.8,force,front_fx,0.0035413724835962057 +karman_re400,ppo,52,20.8,force,front_fy,-0.0007460173219442368 +karman_re400,ppo,52,20.8,force,upper_fx,0.004004828166216612 +karman_re400,ppo,52,20.8,force,upper_fy,0.00420311139896512 +karman_re400,ppo,52,20.8,force,lower_fx,-0.0057502733543515205 +karman_re400,ppo,52,20.8,force,lower_fy,-0.004620474763214588 +karman_re400,ppo,53,21.2,force,front_fx,0.002072395756840706 +karman_re400,ppo,53,21.2,force,front_fy,0.0019065163796767592 +karman_re400,ppo,53,21.2,force,upper_fx,0.0030972182285040617 +karman_re400,ppo,53,21.2,force,upper_fy,0.003701060079038143 +karman_re400,ppo,53,21.2,force,lower_fx,-0.005570480599999428 +karman_re400,ppo,53,21.2,force,lower_fy,-0.005238065496087074 +karman_re400,ppo,54,21.6,force,front_fx,-7.580454257549718e-05 +karman_re400,ppo,54,21.6,force,front_fy,0.0038984762504696846 +karman_re400,ppo,54,21.6,force,upper_fx,0.0012504513142630458 +karman_re400,ppo,54,21.6,force,upper_fy,0.0032819800544530153 +karman_re400,ppo,54,21.6,force,lower_fx,-0.002605524379760027 +karman_re400,ppo,54,21.6,force,lower_fy,-0.007004012353718281 +karman_re400,ppo,55,22.0,force,front_fx,-0.001697983592748642 +karman_re400,ppo,55,22.0,force,front_fy,0.0048101902939379215 +karman_re400,ppo,55,22.0,force,upper_fx,-0.00028394913533702493 +karman_re400,ppo,55,22.0,force,upper_fy,0.0035716595593839884 +karman_re400,ppo,55,22.0,force,lower_fx,0.0012452994706109166 +karman_re400,ppo,55,22.0,force,lower_fy,-0.007832037284970284 +karman_re400,ppo,56,22.4,force,front_fx,-0.0020400702487677336 +karman_re400,ppo,56,22.4,force,front_fy,0.005127578508108854 +karman_re400,ppo,56,22.4,force,upper_fx,-0.0015459455316886306 +karman_re400,ppo,56,22.4,force,upper_fy,0.003919288050383329 +karman_re400,ppo,56,22.4,force,lower_fx,0.004001645836979151 +karman_re400,ppo,56,22.4,force,lower_fy,-0.007294665556401014 +karman_re400,ppo,57,22.8,force,front_fx,-0.000971645291429013 +karman_re400,ppo,57,22.8,force,front_fy,0.005372436251491308 +karman_re400,ppo,57,22.8,force,upper_fx,-0.003355729393661022 +karman_re400,ppo,57,22.8,force,upper_fy,0.004461084958165884 +karman_re400,ppo,57,22.8,force,lower_fx,0.005428176373243332 +karman_re400,ppo,57,22.8,force,lower_fy,-0.006108213681727648 +karman_re400,ppo,58,23.2,force,front_fx,0.0015406912425532937 +karman_re400,ppo,58,23.2,force,front_fy,0.004133016336709261 +karman_re400,ppo,58,23.2,force,upper_fx,-0.005051969084888697 +karman_re400,ppo,58,23.2,force,upper_fy,0.003870680695399642 +karman_re400,ppo,58,23.2,force,lower_fx,0.005161451641470194 +karman_re400,ppo,58,23.2,force,lower_fy,-0.004968763794749975 +karman_re400,ppo,59,23.6,force,front_fx,0.004122002515941858 +karman_re400,ppo,59,23.6,force,front_fy,0.0011788720730692148 +karman_re400,ppo,59,23.6,force,upper_fx,-0.006903182715177536 +karman_re400,ppo,59,23.6,force,upper_fy,0.0025768852792680264 +karman_re400,ppo,59,23.6,force,lower_fx,0.00438332837074995 +karman_re400,ppo,59,23.6,force,lower_fy,-0.004087209235876799 +karman_re400,ppo,60,24.0,force,front_fx,0.0029529070015996695 +karman_re400,ppo,60,24.0,force,front_fy,-0.001175368670374155 +karman_re400,ppo,60,24.0,force,upper_fx,-0.007360999006778002 +karman_re400,ppo,60,24.0,force,upper_fy,0.004057595040649176 +karman_re400,ppo,60,24.0,force,lower_fx,0.004378513433039188 +karman_re400,ppo,60,24.0,force,lower_fy,-0.0028886720538139343 +karman_re400,ppo,61,24.4,force,front_fx,0.0011625929037109017 +karman_re400,ppo,61,24.4,force,front_fy,-0.0036072616931051016 +karman_re400,ppo,61,24.4,force,upper_fx,-0.003711757715791464 +karman_re400,ppo,61,24.4,force,upper_fy,0.00690476456657052 +karman_re400,ppo,61,24.4,force,lower_fx,0.00353277288377285 +karman_re400,ppo,61,24.4,force,lower_fy,-0.0019474204163998365 +karman_re400,ppo,62,24.8,force,front_fx,-0.0012010243954136968 +karman_re400,ppo,62,24.8,force,front_fy,-0.00472036050632596 +karman_re400,ppo,62,24.8,force,upper_fx,0.000655822514090687 +karman_re400,ppo,62,24.8,force,upper_fy,0.00788947194814682 +karman_re400,ppo,62,24.8,force,lower_fx,0.0017128045437857509 +karman_re400,ppo,62,24.8,force,lower_fy,-0.002448483370244503 +karman_re400,ppo,63,25.2,force,front_fx,-0.0023056992795318365 +karman_re400,ppo,63,25.2,force,front_fy,-0.005397328641265631 +karman_re400,ppo,63,25.2,force,upper_fx,0.00342407519929111 +karman_re400,ppo,63,25.2,force,upper_fy,0.00750923715531826 +karman_re400,ppo,63,25.2,force,lower_fx,-0.00039042465505190194 +karman_re400,ppo,63,25.2,force,lower_fy,-0.004028353840112686 +karman_re400,ppo,64,25.6,force,front_fx,-0.0017561614513397217 +karman_re400,ppo,64,25.6,force,front_fy,-0.006027741823345423 +karman_re400,ppo,64,25.6,force,upper_fx,0.00462679099291563 +karman_re400,ppo,64,25.6,force,upper_fy,0.006274821236729622 +karman_re400,ppo,64,25.6,force,lower_fx,-0.003388171549886465 +karman_re400,ppo,64,25.6,force,lower_fy,-0.005082863382995129 +karman_re400,ppo,65,26.0,force,front_fx,0.001002274570055306 +karman_re400,ppo,65,26.0,force,front_fy,-0.005504244472831488 +karman_re400,ppo,65,26.0,force,upper_fx,0.004964766092598438 +karman_re400,ppo,65,26.0,force,upper_fy,0.004809861537069082 +karman_re400,ppo,65,26.0,force,lower_fx,-0.004892135504633188 +karman_re400,ppo,65,26.0,force,lower_fy,-0.005393374711275101 +karman_re400,ppo,66,26.4,force,front_fx,0.003815061179921031 +karman_re400,ppo,66,26.4,force,front_fy,-0.0025243335403501987 +karman_re400,ppo,66,26.4,force,upper_fx,0.003962672781199217 +karman_re400,ppo,66,26.4,force,upper_fy,0.00420657591894269 +karman_re400,ppo,66,26.4,force,lower_fx,-0.00656121363863349 +karman_re400,ppo,66,26.4,force,lower_fy,-0.003932515159249306 +karman_re400,ppo,67,26.8,force,front_fx,0.00392794469371438 +karman_re400,ppo,67,26.8,force,front_fy,0.0003207986301276833 +karman_re400,ppo,67,26.8,force,upper_fx,0.003631315194070339 +karman_re400,ppo,67,26.8,force,upper_fy,0.0036911561619490385 +karman_re400,ppo,67,26.8,force,lower_fx,-0.007831673137843609 +karman_re400,ppo,67,26.8,force,lower_fy,-0.003611077321693301 +karman_re400,ppo,68,27.2,force,front_fx,0.001707256305962801 +karman_re400,ppo,68,27.2,force,front_fy,0.0030321714002639055 +karman_re400,ppo,68,27.2,force,upper_fx,0.002641635946929455 +karman_re400,ppo,68,27.2,force,upper_fy,0.0027207150124013424 +karman_re400,ppo,68,27.2,force,lower_fx,-0.005775642581284046 +karman_re400,ppo,68,27.2,force,lower_fy,-0.006570503581315279 +karman_re400,ppo,69,27.6,force,front_fx,-0.0006712637841701508 +karman_re400,ppo,69,27.6,force,front_fy,0.004555003251880407 +karman_re400,ppo,69,27.6,force,upper_fx,0.0014972561039030552 +karman_re400,ppo,69,27.6,force,upper_fy,0.0025067341048270464 +karman_re400,ppo,69,27.6,force,lower_fx,-0.0013074747985228896 +karman_re400,ppo,69,27.6,force,lower_fy,-0.008075663819909096 +karman_re400,ppo,70,28.0,force,front_fx,-0.002292732708156109 +karman_re400,ppo,70,28.0,force,front_fy,0.0051871235482394695 +karman_re400,ppo,70,28.0,force,upper_fx,-0.00021552872203756124 +karman_re400,ppo,70,28.0,force,upper_fy,0.003506991546601057 +karman_re400,ppo,70,28.0,force,lower_fx,0.002350828843191266 +karman_re400,ppo,70,28.0,force,lower_fy,-0.008327680639922619 +karman_re400,ppo,71,28.4,force,front_fx,-0.0022737467661499977 +karman_re400,ppo,71,28.4,force,front_fy,0.005607143044471741 +karman_re400,ppo,71,28.4,force,upper_fx,-0.0021382675040513277 +karman_re400,ppo,71,28.4,force,upper_fy,0.004163727629929781 +karman_re400,ppo,71,28.4,force,lower_fx,0.004524501506239176 +karman_re400,ppo,71,28.4,force,lower_fy,-0.007298688404262066 +karman_re400,ppo,72,28.8,force,front_fx,-0.00043672454194165766 +karman_re400,ppo,72,28.8,force,front_fy,0.005345955491065979 +karman_re400,ppo,72,28.8,force,upper_fx,-0.003951373975723982 +karman_re400,ppo,72,28.8,force,upper_fy,0.004922231659293175 +karman_re400,ppo,72,28.8,force,lower_fx,0.005222663749009371 +karman_re400,ppo,72,28.8,force,lower_fy,-0.005769708659499884 +karman_re400,ppo,73,29.2,force,front_fx,0.002533810446038842 +karman_re400,ppo,73,29.2,force,front_fy,0.0029560986440628767 +karman_re400,ppo,73,29.2,force,upper_fx,-0.005726465955376625 +karman_re400,ppo,73,29.2,force,upper_fy,0.004025263246148825 +karman_re400,ppo,73,29.2,force,lower_fx,0.004720122087746859 +karman_re400,ppo,73,29.2,force,lower_fy,-0.0046742623671889305 +karman_re400,ppo,74,29.6,force,front_fx,0.0035415426827967167 +karman_re400,ppo,74,29.6,force,front_fy,-7.344991172431037e-05 +karman_re400,ppo,74,29.6,force,upper_fx,-0.007084790617227554 +karman_re400,ppo,74,29.6,force,upper_fy,0.003941822797060013 +karman_re400,ppo,74,29.6,force,lower_fx,0.0039899046532809734 +karman_re400,ppo,74,29.6,force,lower_fy,-0.004017624072730541 +karman_re400,ppo,75,30.0,force,front_fx,0.0014791705179959536 +karman_re400,ppo,75,30.0,force,front_fy,-0.0025945899542421103 +karman_re400,ppo,75,30.0,force,upper_fx,-0.0057313996367156506 +karman_re400,ppo,75,30.0,force,upper_fy,0.006464304402470589 +karman_re400,ppo,75,30.0,force,lower_fx,0.003334029810503125 +karman_re400,ppo,75,30.0,force,lower_fy,-0.003196620848029852 +karman_re400,ppo,76,30.4,force,front_fx,-0.0004801314207725227 +karman_re400,ppo,76,30.4,force,front_fy,-0.004283488728106022 +karman_re400,ppo,76,30.4,force,upper_fx,-0.001328704529441893 +karman_re400,ppo,76,30.4,force,upper_fy,0.008141014724969864 +karman_re400,ppo,76,30.4,force,lower_fx,0.0019154463661834598 +karman_re400,ppo,76,30.4,force,lower_fy,-0.0026251794770359993 +karman_re400,ppo,77,30.8,force,front_fx,-0.002057404024526477 +karman_re400,ppo,77,30.8,force,front_fy,-0.005012345965951681 +karman_re400,ppo,77,30.8,force,upper_fx,0.002167212311178446 +karman_re400,ppo,77,30.8,force,upper_fy,0.0082528842613101 +karman_re400,ppo,77,30.8,force,lower_fx,-0.00015038602577988058 +karman_re400,ppo,77,30.8,force,lower_fy,-0.0035740192979574203 +karman_re400,ppo,78,31.2,force,front_fx,-0.0020807739347219467 +karman_re400,ppo,78,31.2,force,front_fy,-0.005624123848974705 +karman_re400,ppo,78,31.2,force,upper_fx,0.004220963921397924 +karman_re400,ppo,78,31.2,force,upper_fy,0.007119474932551384 +karman_re400,ppo,78,31.2,force,lower_fx,-0.002326433779671788 +karman_re400,ppo,78,31.2,force,lower_fy,-0.004218922462314367 +karman_re400,ppo,79,31.6,force,front_fx,-0.0003741449909284711 +karman_re400,ppo,79,31.6,force,front_fy,-0.0056466590613126755 +karman_re400,ppo,79,31.6,force,upper_fx,0.0052490015514194965 +karman_re400,ppo,79,31.6,force,upper_fy,0.0055988323874771595 +karman_re400,ppo,79,31.6,force,lower_fx,-0.004008823540061712 +karman_re400,ppo,79,31.6,force,lower_fy,-0.005419263616204262 +karman_re400,ppo,80,32.0,force,front_fx,0.0023535166401416063 +karman_re400,ppo,80,32.0,force,front_fy,-0.0041206637397408485 +karman_re400,ppo,80,32.0,force,upper_fx,0.005047446582466364 +karman_re400,ppo,80,32.0,force,upper_fy,0.004409374203532934 +karman_re400,ppo,80,32.0,force,lower_fx,-0.005076291039586067 +karman_re400,ppo,80,32.0,force,lower_fy,-0.004829163663089275 +karman_re400,ppo,81,32.4,force,front_fx,0.004313335753977299 +karman_re400,ppo,81,32.4,force,front_fy,-0.0007101079681888223 +karman_re400,ppo,81,32.4,force,upper_fx,0.003686741925776005 +karman_re400,ppo,81,32.4,force,upper_fy,0.004041614942252636 +karman_re400,ppo,81,32.4,force,lower_fx,-0.006628481671214104 +karman_re400,ppo,81,32.4,force,lower_fy,-0.003288316074758768 +karman_re400,ppo,82,32.8,force,front_fx,0.00269480817951262 +karman_re400,ppo,82,32.8,force,front_fy,0.001655441359616816 +karman_re400,ppo,82,32.8,force,upper_fx,0.002907420741394162 +karman_re400,ppo,82,32.8,force,upper_fy,0.0027946464251726866 +karman_re400,ppo,82,32.8,force,lower_fx,-0.006837836466729641 +karman_re400,ppo,82,32.8,force,lower_fy,-0.005308335646986961 +karman_re400,ppo,83,33.2,force,front_fx,0.0005405183765105903 +karman_re400,ppo,83,33.2,force,front_fy,0.003900335170328617 +karman_re400,ppo,83,33.2,force,upper_fx,0.0018873452208936214 +karman_re400,ppo,83,33.2,force,upper_fy,0.0021523809991776943 +karman_re400,ppo,83,33.2,force,lower_fx,-0.0028276548255234957 +karman_re400,ppo,83,33.2,force,lower_fy,-0.007542273495346308 +karman_re400,ppo,84,33.6,force,front_fx,-0.0017033731564879417 +karman_re400,ppo,84,33.6,force,front_fy,0.00480631785467267 +karman_re400,ppo,84,33.6,force,upper_fx,0.0005945764714851975 +karman_re400,ppo,84,33.6,force,upper_fy,0.0027405607979744673 +karman_re400,ppo,84,33.6,force,lower_fx,0.001161321415565908 +karman_re400,ppo,84,33.6,force,lower_fy,-0.008305585011839867 +karman_re400,ppo,85,34.0,force,front_fx,-0.002754227491095662 +karman_re400,ppo,85,34.0,force,front_fy,0.00521831214427948 +karman_re400,ppo,85,34.0,force,upper_fx,-0.0007867901585996151 +karman_re400,ppo,85,34.0,force,upper_fy,0.003909416031092405 +karman_re400,ppo,85,34.0,force,lower_fx,0.003655258333310485 +karman_re400,ppo,85,34.0,force,lower_fy,-0.0077395313419401646 +karman_re400,ppo,86,34.4,force,front_fx,-0.0022824169136583805 +karman_re400,ppo,86,34.4,force,front_fy,0.005446314811706543 +karman_re400,ppo,86,34.4,force,upper_fx,-0.002794137690216303 +karman_re400,ppo,86,34.4,force,upper_fy,0.0052612340077757835 +karman_re400,ppo,86,34.4,force,lower_fx,0.004708192776888609 +karman_re400,ppo,86,34.4,force,lower_fy,-0.0064732772298157215 +karman_re400,ppo,87,34.8,force,front_fx,0.0003362573916092515 +karman_re400,ppo,87,34.8,force,front_fy,0.004399233032017946 +karman_re400,ppo,87,34.8,force,upper_fx,-0.004276556428521872 +karman_re400,ppo,87,34.8,force,upper_fy,0.004846088122576475 +karman_re400,ppo,87,34.8,force,lower_fx,0.00440099835395813 +karman_re400,ppo,87,34.8,force,lower_fy,-0.005205280147492886 +karman_re400,ppo,88,35.2,force,front_fx,0.0031587027478963137 +karman_re400,ppo,88,35.2,force,front_fy,0.0015458619454875588 +karman_re400,ppo,88,35.2,force,upper_fx,-0.0055866907350718975 +karman_re400,ppo,88,35.2,force,upper_fy,0.003338057082146406 +karman_re400,ppo,88,35.2,force,lower_fx,0.003559523494914174 +karman_re400,ppo,88,35.2,force,lower_fy,-0.0044242809526622295 +karman_re400,ppo,89,35.6,force,front_fx,0.002515179105103016 +karman_re400,ppo,89,35.6,force,front_fy,-0.00076928740600124 +karman_re400,ppo,89,35.6,force,upper_fx,-0.006350008770823479 +karman_re400,ppo,89,35.6,force,upper_fy,0.0034307599999010563 +karman_re400,ppo,89,35.6,force,lower_fx,0.003159059677273035 +karman_re400,ppo,89,35.6,force,lower_fy,-0.003438618965446949 +karman_re400,ppo,90,36.0,force,front_fx,0.0007707263575866818 +karman_re400,ppo,90,36.0,force,front_fy,-0.0031935349106788635 +karman_re400,ppo,90,36.0,force,upper_fx,-0.003807586617767811 +karman_re400,ppo,90,36.0,force,upper_fy,0.0061500114388763905 +karman_re400,ppo,90,36.0,force,lower_fx,0.002138944575563073 +karman_re400,ppo,90,36.0,force,lower_fy,-0.0025542359799146652 +karman_re400,ppo,91,36.4,force,front_fx,-0.001101310714147985 +karman_re400,ppo,91,36.4,force,front_fy,-0.004509303253144026 +karman_re400,ppo,91,36.4,force,upper_fx,0.0003899365256074816 +karman_re400,ppo,91,36.4,force,upper_fy,0.007265070453286171 +karman_re400,ppo,91,36.4,force,lower_fx,0.0007763418834656477 +karman_re400,ppo,91,36.4,force,lower_fy,-0.002603471977636218 +karman_re400,ppo,92,36.8,force,front_fx,-0.0019813801627606153 +karman_re400,ppo,92,36.8,force,front_fy,-0.005240757018327713 +karman_re400,ppo,92,36.8,force,upper_fx,0.0033669809345155954 +karman_re400,ppo,92,36.8,force,upper_fy,0.007141181733459234 +karman_re400,ppo,92,36.8,force,lower_fx,-0.0007188370800577104 +karman_re400,ppo,92,36.8,force,lower_fy,-0.0035476682242006063 +karman_re400,ppo,93,37.2,force,front_fx,-0.001264442689716816 +karman_re400,ppo,93,37.2,force,front_fy,-0.005749099887907505 +karman_re400,ppo,93,37.2,force,upper_fx,0.004934740252792835 +karman_re400,ppo,93,37.2,force,upper_fy,0.006105019245296717 +karman_re400,ppo,93,37.2,force,lower_fx,-0.003119851928204298 +karman_re400,ppo,93,37.2,force,lower_fy,-0.004217637702822685 +karman_re400,ppo,94,37.6,force,front_fx,0.001133778947405517 +karman_re400,ppo,94,37.6,force,front_fy,-0.0051275924779474735 +karman_re400,ppo,94,37.6,force,upper_fx,0.005285869352519512 +karman_re400,ppo,94,37.6,force,upper_fy,0.004888439085334539 +karman_re400,ppo,94,37.6,force,lower_fx,-0.005035558249801397 +karman_re400,ppo,94,37.6,force,lower_fy,-0.004765298217535019 +karman_re400,ppo,95,38.0,force,front_fx,0.0036522767040878534 +karman_re400,ppo,95,38.0,force,front_fy,-0.001968938857316971 +karman_re400,ppo,95,38.0,force,upper_fx,0.004239475354552269 +karman_re400,ppo,95,38.0,force,upper_fy,0.0043958150781691074 +karman_re400,ppo,95,38.0,force,lower_fx,-0.006916424725204706 +karman_re400,ppo,95,38.0,force,lower_fy,-0.004030798561871052 +karman_re400,ppo,96,38.4,force,front_fx,0.0035774281714111567 +karman_re400,ppo,96,38.4,force,front_fy,0.0007843445055186749 +karman_re400,ppo,96,38.4,force,upper_fx,0.004051874857395887 +karman_re400,ppo,96,38.4,force,upper_fy,0.003783854655921459 +karman_re400,ppo,96,38.4,force,lower_fx,-0.0073960996232926846 +karman_re400,ppo,96,38.4,force,lower_fy,-0.004358568694442511 +karman_re400,ppo,97,38.8,force,front_fx,0.001299821538850665 +karman_re400,ppo,97,38.8,force,front_fy,0.003569830907508731 +karman_re400,ppo,97,38.8,force,upper_fx,0.003184911794960499 +karman_re400,ppo,97,38.8,force,upper_fy,0.0028084879741072655 +karman_re400,ppo,97,38.8,force,lower_fx,-0.004651457071304321 +karman_re400,ppo,97,38.8,force,lower_fy,-0.006805972661823034 +karman_re400,ppo,98,39.2,force,front_fx,-0.0010773164685815573 +karman_re400,ppo,98,39.2,force,front_fy,0.0048584360629320145 +karman_re400,ppo,98,39.2,force,upper_fx,0.001660214620642364 +karman_re400,ppo,98,39.2,force,upper_fy,0.0027361521497368813 +karman_re400,ppo,98,39.2,force,lower_fx,-0.00031723862048238516 +karman_re400,ppo,98,39.2,force,lower_fy,-0.007992388680577278 +karman_re400,ppo,99,39.6,force,front_fx,-0.0024883875157684088 +karman_re400,ppo,99,39.6,force,front_fy,0.005369263701140881 +karman_re400,ppo,99,39.6,force,upper_fx,-0.00015683281526435167 +karman_re400,ppo,99,39.6,force,upper_fy,0.004041213076561689 +karman_re400,ppo,99,39.6,force,lower_fx,0.0029803928919136524 +karman_re400,ppo,99,39.6,force,lower_fy,-0.007993132807314396 +karman_re400,ppo,100,40.0,force,front_fx,-0.002328689908608794 +karman_re400,ppo,100,40.0,force,front_fy,0.0057743145152926445 +karman_re400,ppo,100,40.0,force,upper_fx,-0.0022847959771752357 +karman_re400,ppo,100,40.0,force,upper_fy,0.004980674013495445 +karman_re400,ppo,100,40.0,force,lower_fx,0.004639920778572559 +karman_re400,ppo,100,40.0,force,lower_fy,-0.0070047276094555855 +karman_re400,ppo,101,40.4,force,front_fx,-0.0002778769703581929 +karman_re400,ppo,101,40.4,force,front_fy,0.005403259303420782 +karman_re400,ppo,101,40.4,force,upper_fx,-0.0038384399376809597 +karman_re400,ppo,101,40.4,force,upper_fy,0.005261285230517387 +karman_re400,ppo,101,40.4,force,lower_fx,0.0052056265994906425 +karman_re400,ppo,101,40.4,force,lower_fy,-0.005606210790574551 +karman_re400,ppo,102,40.8,force,front_fx,0.002611280418932438 +karman_re400,ppo,102,40.8,force,front_fy,0.003037017770111561 +karman_re400,ppo,102,40.8,force,upper_fx,-0.005656228866428137 +karman_re400,ppo,102,40.8,force,upper_fy,0.003782493993639946 +karman_re400,ppo,102,40.8,force,lower_fx,0.004627739544957876 +karman_re400,ppo,102,40.8,force,lower_fy,-0.004605981521308422 +karman_re400,ppo,103,41.2,force,front_fx,0.003687516553327441 +karman_re400,ppo,103,41.2,force,front_fy,0.00014313735300675035 +karman_re400,ppo,103,41.2,force,upper_fx,-0.007241476327180862 +karman_re400,ppo,103,41.2,force,upper_fy,0.0032436861656606197 +karman_re400,ppo,103,41.2,force,lower_fx,0.004122165963053703 +karman_re400,ppo,103,41.2,force,lower_fy,-0.0038161971606314182 +karman_re400,ppo,104,41.6,force,front_fx,0.0017246772767975926 +karman_re400,ppo,104,41.6,force,front_fy,-0.00229220581240952 +karman_re400,ppo,104,41.6,force,upper_fx,-0.006352903321385384 +karman_re400,ppo,104,41.6,force,upper_fy,0.006086478941142559 +karman_re400,ppo,104,41.6,force,lower_fx,0.0033910837955772877 +karman_re400,ppo,104,41.6,force,lower_fy,-0.0029408985283225775 +karman_re400,ppo,105,42.0,force,front_fx,-0.00021931876835878938 +karman_re400,ppo,105,42.0,force,front_fy,-0.004091094247996807 +karman_re400,ppo,105,42.0,force,upper_fx,-0.0017604668391868472 +karman_re400,ppo,105,42.0,force,upper_fy,0.008255071938037872 +karman_re400,ppo,105,42.0,force,lower_fx,0.002165605081245303 +karman_re400,ppo,105,42.0,force,lower_fy,-0.002412531990557909 +karman_re400,ppo,106,42.4,force,front_fx,-0.0020040180534124374 +karman_re400,ppo,106,42.4,force,front_fy,-0.004844703245908022 +karman_re400,ppo,106,42.4,force,upper_fx,0.002004704438149929 +karman_re400,ppo,106,42.4,force,upper_fy,0.008474146015942097 +karman_re400,ppo,106,42.4,force,lower_fx,0.00023344362853094935 +karman_re400,ppo,106,42.4,force,lower_fy,-0.0033205009531229734 +karman_re400,ppo,107,42.8,force,front_fx,-0.002365994267165661 +karman_re400,ppo,107,42.8,force,front_fy,-0.005381471011787653 +karman_re400,ppo,107,42.8,force,upper_fx,0.004191884305328131 +karman_re400,ppo,107,42.8,force,upper_fy,0.007404735777527094 +karman_re400,ppo,107,42.8,force,lower_fx,-0.0018401427660137415 +karman_re400,ppo,107,42.8,force,lower_fy,-0.00390314101241529 +karman_re400,ppo,108,43.2,force,front_fx,-0.0011132777435705066 +karman_re400,ppo,108,43.2,force,front_fy,-0.005524326115846634 +karman_re400,ppo,108,43.2,force,upper_fx,0.005260920617729425 +karman_re400,ppo,108,43.2,force,upper_fy,0.00579639058560133 +karman_re400,ppo,108,43.2,force,lower_fx,-0.0039468915201723576 +karman_re400,ppo,108,43.2,force,lower_fy,-0.005310698878020048 +karman_re400,ppo,109,43.6,force,front_fx,0.0016465666703879833 +karman_re400,ppo,109,43.6,force,front_fy,-0.004263490904122591 +karman_re400,ppo,109,43.6,force,upper_fx,0.00519597576931119 +karman_re400,ppo,109,43.6,force,upper_fy,0.004431884735822678 +karman_re400,ppo,109,43.6,force,lower_fx,-0.004999425727874041 +karman_re400,ppo,109,43.6,force,lower_fy,-0.005118115339428186 +karman_re400,ppo,110,44.0,force,front_fx,0.0038853592704981565 +karman_re400,ppo,110,44.0,force,front_fy,-0.0009780366672202945 +karman_re400,ppo,110,44.0,force,upper_fx,0.003925400786101818 +karman_re400,ppo,110,44.0,force,upper_fy,0.004086257889866829 +karman_re400,ppo,110,44.0,force,lower_fx,-0.005925324745476246 +karman_re400,ppo,110,44.0,force,lower_fy,-0.0036059373524039984 +karman_re400,ppo,111,44.4,force,front_fx,0.0026216567493975163 +karman_re400,ppo,111,44.4,force,front_fy,0.001436237944290042 +karman_re400,ppo,111,44.4,force,upper_fx,0.0030145258642733097 +karman_re400,ppo,111,44.4,force,upper_fy,0.0030230474658310413 +karman_re400,ppo,111,44.4,force,lower_fx,-0.006481654476374388 +karman_re400,ppo,111,44.4,force,lower_fy,-0.004336180631071329 +karman_re400,ppo,112,44.8,force,front_fx,0.0005424133851192892 +karman_re400,ppo,112,44.8,force,front_fy,0.0037763381842523813 +karman_re400,ppo,112,44.8,force,upper_fx,0.0017120783450081944 +karman_re400,ppo,112,44.8,force,upper_fy,0.002359233796596527 +karman_re400,ppo,112,44.8,force,lower_fx,-0.0032980996184051037 +karman_re400,ppo,112,44.8,force,lower_fy,-0.006654803641140461 +karman_re400,ppo,113,45.2,force,front_fx,-0.0016633026534691453 +karman_re400,ppo,113,45.2,force,front_fy,0.004808023106306791 +karman_re400,ppo,113,45.2,force,upper_fx,0.0004563688416965306 +karman_re400,ppo,113,45.2,force,upper_fy,0.0027240687049925327 +karman_re400,ppo,113,45.2,force,lower_fx,0.0007755898404866457 +karman_re400,ppo,113,45.2,force,lower_fy,-0.007658179383724928 +karman_re400,ppo,114,45.6,force,front_fx,-0.00268575013615191 +karman_re400,ppo,114,45.6,force,front_fy,0.005345153622329235 +karman_re400,ppo,114,45.6,force,upper_fx,-0.0007780902087688446 +karman_re400,ppo,114,45.6,force,upper_fy,0.0037106394302099943 +karman_re400,ppo,114,45.6,force,lower_fx,0.0036386074498295784 +karman_re400,ppo,114,45.6,force,lower_fy,-0.007324738893657923 +karman_re400,ppo,115,46.0,force,front_fx,-0.002088243141770363 +karman_re400,ppo,115,46.0,force,front_fy,0.005615875590592623 +karman_re400,ppo,115,46.0,force,upper_fx,-0.0027317150961607695 +karman_re400,ppo,115,46.0,force,upper_fy,0.004687401931732893 +karman_re400,ppo,115,46.0,force,lower_fx,0.0049230181612074375 +karman_re400,ppo,115,46.0,force,lower_fy,-0.0062939999625086784 +karman_re400,ppo,116,46.4,force,front_fx,0.0006041636224836111 +karman_re400,ppo,116,46.4,force,front_fy,0.004596302751451731 +karman_re400,ppo,116,46.4,force,upper_fx,-0.004534513223916292 +karman_re400,ppo,116,46.4,force,upper_fy,0.004701334051787853 +karman_re400,ppo,116,46.4,force,lower_fx,0.004715127870440483 +karman_re400,ppo,116,46.4,force,lower_fy,-0.005119648762047291 +karman_re400,ppo,117,46.8,force,front_fx,0.0033025655429810286 +karman_re400,ppo,117,46.8,force,front_fy,0.0012947330251336098 +karman_re400,ppo,117,46.8,force,upper_fx,-0.006248367950320244 +karman_re400,ppo,117,46.8,force,upper_fy,0.0035239311400800943 +karman_re400,ppo,117,46.8,force,lower_fx,0.0037174755707383156 +karman_re400,ppo,117,46.8,force,lower_fy,-0.004566137678921223 +karman_re400,ppo,118,47.2,force,front_fx,0.0024994320701807737 +karman_re400,ppo,118,47.2,force,front_fy,-0.0011853143805637956 +karman_re400,ppo,118,47.2,force,upper_fx,-0.006751495413482189 +karman_re400,ppo,118,47.2,force,upper_fy,0.004105480387806892 +karman_re400,ppo,118,47.2,force,lower_fx,0.003575867973268032 +karman_re400,ppo,118,47.2,force,lower_fy,-0.0038157848175615072 +karman_re400,ppo,119,47.6,force,front_fx,0.0004011743585579097 +karman_re400,ppo,119,47.6,force,front_fy,-0.0036397213116288185 +karman_re400,ppo,119,47.6,force,upper_fx,-0.003715674625709653 +karman_re400,ppo,119,47.6,force,upper_fy,0.0069448696449398994 +karman_re400,ppo,119,47.6,force,lower_fx,0.002629813738167286 +karman_re400,ppo,119,47.6,force,lower_fy,-0.0030113807879388332 +karman_re400,ppo,120,48.0,force,front_fx,-0.001533634029328823 +karman_re400,ppo,120,48.0,force,front_fy,-0.0048248437233269215 +karman_re400,ppo,120,48.0,force,upper_fx,0.000682189071085304 +karman_re400,ppo,120,48.0,force,upper_fy,0.00786773581057787 +karman_re400,ppo,120,48.0,force,lower_fx,0.0010381416650488973 +karman_re400,ppo,120,48.0,force,lower_fy,-0.0030581788159906864 +karman_re400,ppo,121,48.4,force,front_fx,-0.002444437937811017 +karman_re400,ppo,121,48.4,force,front_fy,-0.005342206917703152 +karman_re400,ppo,121,48.4,force,upper_fx,0.003569121705368161 +karman_re400,ppo,121,48.4,force,upper_fy,0.007576966192573309 +karman_re400,ppo,121,48.4,force,lower_fx,-0.0006522514740936458 +karman_re400,ppo,121,48.4,force,lower_fy,-0.004088918678462505 +karman_re400,ppo,122,48.8,force,front_fx,-0.001755037810653448 +karman_re400,ppo,122,48.8,force,front_fy,-0.0058797444216907024 +karman_re400,ppo,122,48.8,force,upper_fx,0.005128837656229734 +karman_re400,ppo,122,48.8,force,upper_fy,0.006397679913789034 +karman_re400,ppo,122,48.8,force,lower_fx,-0.003173617646098137 +karman_re400,ppo,122,48.8,force,lower_fy,-0.005116496235132217 +karman_re400,ppo,123,49.2,force,front_fx,0.0007322965539060533 +karman_re400,ppo,123,49.2,force,front_fy,-0.005315823946148157 +karman_re400,ppo,123,49.2,force,upper_fx,0.005590843968093395 +karman_re400,ppo,123,49.2,force,upper_fy,0.005000484175980091 +karman_re400,ppo,123,49.2,force,lower_fx,-0.004653364419937134 +karman_re400,ppo,123,49.2,force,lower_fy,-0.005494092591106892 +karman_re400,ppo,124,49.6,force,front_fx,0.0033486024476587772 +karman_re400,ppo,124,49.6,force,front_fy,-0.0023026238195598125 +karman_re400,ppo,124,49.6,force,upper_fx,0.004563335794955492 +karman_re400,ppo,124,49.6,force,upper_fy,0.004393225535750389 +karman_re400,ppo,124,49.6,force,lower_fx,-0.006013872567564249 +karman_re400,ppo,124,49.6,force,lower_fy,-0.004157206974923611 +karman_re400,ppo,125,50.0,force,front_fx,0.003656400367617607 +karman_re400,ppo,125,50.0,force,front_fy,0.0004933009040541947 +karman_re400,ppo,125,50.0,force,upper_fx,0.003995371982455254 +karman_re400,ppo,125,50.0,force,upper_fy,0.0036183916963636875 +karman_re400,ppo,125,50.0,force,lower_fx,-0.007154092658311129 +karman_re400,ppo,125,50.0,force,lower_fy,-0.003383413190022111 +karman_re400,ppo,126,50.4,force,front_fx,0.0013238689862191677 +karman_re400,ppo,126,50.4,force,front_fy,0.0031763152219355106 +karman_re400,ppo,126,50.4,force,upper_fx,0.002745783654972911 +karman_re400,ppo,126,50.4,force,upper_fy,0.0027475478127598763 +karman_re400,ppo,126,50.4,force,lower_fx,-0.005346781108528376 +karman_re400,ppo,126,50.4,force,lower_fy,-0.006243990734219551 +karman_re400,ppo,127,50.8,force,front_fx,-0.0008983107400126755 +karman_re400,ppo,127,50.8,force,front_fy,0.004596180748194456 +karman_re400,ppo,127,50.8,force,upper_fx,0.0017038702499121428 +karman_re400,ppo,127,50.8,force,upper_fy,0.00249650445766747 +karman_re400,ppo,127,50.8,force,lower_fx,-0.0005687180673703551 +karman_re400,ppo,127,50.8,force,lower_fy,-0.008078599348664284 +karman_re400,ppo,128,51.2,force,front_fx,-0.002513410057872534 +karman_re400,ppo,128,51.2,force,front_fy,0.005167483817785978 +karman_re400,ppo,128,51.2,force,upper_fx,0.00019709653861355036 +karman_re400,ppo,128,51.2,force,upper_fy,0.0037292176857590675 +karman_re400,ppo,128,51.2,force,lower_fx,0.0031444854103028774 +karman_re400,ppo,128,51.2,force,lower_fy,-0.00819475669413805 +karman_re400,ppo,129,51.6,force,front_fx,-0.002541240770369768 +karman_re400,ppo,129,51.6,force,front_fy,0.0054594348184764385 +karman_re400,ppo,129,51.6,force,upper_fx,-0.0017290491377934813 +karman_re400,ppo,129,51.6,force,upper_fy,0.00463457964360714 +karman_re400,ppo,129,51.6,force,lower_fx,0.004837926477193832 +karman_re400,ppo,129,51.6,force,lower_fy,-0.007205662317574024 +karman_re400,ppo,130,52.0,force,front_fx,-0.0008013854967430234 +karman_re400,ppo,130,52.0,force,front_fy,0.005233498755842447 +karman_re400,ppo,130,52.0,force,upper_fx,-0.0038687465712428093 +karman_re400,ppo,130,52.0,force,upper_fy,0.005300935357809067 +karman_re400,ppo,130,52.0,force,lower_fx,0.005208962596952915 +karman_re400,ppo,130,52.0,force,lower_fy,-0.005819900427013636 +karman_re400,ppo,131,52.4,force,front_fx,0.00224831560626626 +karman_re400,ppo,131,52.4,force,front_fy,0.0030256465543061495 +karman_re400,ppo,131,52.4,force,upper_fx,-0.00573811074718833 +karman_re400,ppo,131,52.4,force,upper_fy,0.003965439274907112 +karman_re400,ppo,131,52.4,force,lower_fx,0.0044851480051875114 +karman_re400,ppo,131,52.4,force,lower_fy,-0.004881436936557293 +karman_re400,ppo,132,52.8,force,front_fx,0.0035484859254211187 +karman_re400,ppo,132,52.8,force,front_fy,0.0003500298480503261 +karman_re400,ppo,132,52.8,force,upper_fx,-0.006895212922245264 +karman_re400,ppo,132,52.8,force,upper_fy,0.0030259822960942984 +karman_re400,ppo,132,52.8,force,lower_fx,0.004172010812908411 +karman_re400,ppo,132,52.8,force,lower_fy,-0.0039524780586361885 +karman_re400,ppo,133,53.2,force,front_fx,0.0017003389075398445 +karman_re400,ppo,133,53.2,force,front_fy,-0.0022429293021559715 +karman_re400,ppo,133,53.2,force,upper_fx,-0.006139862351119518 +karman_re400,ppo,133,53.2,force,upper_fy,0.005379455629736185 +karman_re400,ppo,133,53.2,force,lower_fx,0.0035347978118807077 +karman_re400,ppo,133,53.2,force,lower_fy,-0.003066020319238305 +karman_re400,ppo,134,53.6,force,front_fx,-0.0001525550032965839 +karman_re400,ppo,134,53.6,force,front_fy,-0.004129199311137199 +karman_re400,ppo,134,53.6,force,upper_fx,-0.0018530342495068908 +karman_re400,ppo,134,53.6,force,upper_fy,0.007462280802428722 +karman_re400,ppo,134,53.6,force,lower_fx,0.00224800081923604 +karman_re400,ppo,134,53.6,force,lower_fy,-0.0025111380964517593 +karman_re400,ppo,135,54.0,force,front_fx,-0.0020258338190615177 +karman_re400,ppo,135,54.0,force,front_fy,-0.00492859585210681 +karman_re400,ppo,135,54.0,force,upper_fx,0.0020047377329319715 +karman_re400,ppo,135,54.0,force,upper_fy,0.007950326427817345 +karman_re400,ppo,135,54.0,force,lower_fx,0.00034706643782556057 +karman_re400,ppo,135,54.0,force,lower_fy,-0.003349781734868884 +karman_re400,ppo,136,54.4,force,front_fx,-0.002383085200563073 +karman_re400,ppo,136,54.4,force,front_fy,-0.005544746294617653 +karman_re400,ppo,136,54.4,force,upper_fx,0.004319238476455212 +karman_re400,ppo,136,54.4,force,upper_fy,0.0070807854644954205 +karman_re400,ppo,136,54.4,force,lower_fx,-0.0015744541306048632 +karman_re400,ppo,136,54.4,force,lower_fy,-0.004067433997988701 +karman_re400,ppo,137,54.8,force,front_fx,-0.0009579570032656193 +karman_re400,ppo,137,54.8,force,front_fy,-0.005665672942996025 +karman_re400,ppo,137,54.8,force,upper_fx,0.005242886021733284 +karman_re400,ppo,137,54.8,force,upper_fy,0.005775586236268282 +karman_re400,ppo,137,54.8,force,lower_fx,-0.0039605130441486835 +karman_re400,ppo,137,54.8,force,lower_fy,-0.005274767987430096 +karman_re400,ppo,138,55.2,force,front_fx,0.002060031984001398 +karman_re400,ppo,138,55.2,force,front_fy,-0.004169332329183817 +karman_re400,ppo,138,55.2,force,upper_fx,0.0048439656384289265 +karman_re400,ppo,138,55.2,force,upper_fy,0.004616697784513235 +karman_re400,ppo,138,55.2,force,lower_fx,-0.005686240736395121 +karman_re400,ppo,138,55.2,force,lower_fy,-0.005057265982031822 +karman_re400,ppo,139,55.6,force,front_fx,0.004096950404345989 +karman_re400,ppo,139,55.6,force,front_fy,-0.0007785361958667636 +karman_re400,ppo,139,55.6,force,upper_fx,0.003832935355603695 +karman_re400,ppo,139,55.6,force,upper_fy,0.004301429260522127 +karman_re400,ppo,139,55.6,force,lower_fx,-0.006848766002804041 +karman_re400,ppo,139,55.6,force,lower_fy,-0.0040594772435724735 +karman_re400,ppo,140,56.0,force,front_fx,0.0024340911768376827 +karman_re400,ppo,140,56.0,force,front_fy,0.001848867628723383 +karman_re400,ppo,140,56.0,force,upper_fx,0.003382517723366618 +karman_re400,ppo,140,56.0,force,upper_fy,0.0033923748414963484 +karman_re400,ppo,140,56.0,force,lower_fx,-0.006695997901260853 +karman_re400,ppo,140,56.0,force,lower_fy,-0.0052730427123606205 +karman_re400,ppo,141,56.4,force,front_fx,0.0003062165342271328 +karman_re400,ppo,141,56.4,force,front_fy,0.004107148386538029 +karman_re400,ppo,141,56.4,force,upper_fx,0.002079531317576766 +karman_re400,ppo,141,56.4,force,upper_fy,0.00264061545021832 +karman_re400,ppo,141,56.4,force,lower_fx,-0.0030826819129288197 +karman_re400,ppo,141,56.4,force,lower_fy,-0.007338888477534056 +karman_re400,ppo,142,56.8,force,front_fx,-0.001926960307173431 +karman_re400,ppo,142,56.8,force,front_fy,0.005063188262283802 +karman_re400,ppo,142,56.8,force,upper_fx,0.0006583721260540187 +karman_re400,ppo,142,56.8,force,upper_fy,0.003074825508520007 +karman_re400,ppo,142,56.8,force,lower_fx,0.001110524288378656 +karman_re400,ppo,142,56.8,force,lower_fy,-0.008235728368163109 +karman_re400,ppo,143,57.2,force,front_fx,-0.002773757791146636 +karman_re400,ppo,143,57.2,force,front_fy,0.005443626083433628 +karman_re400,ppo,143,57.2,force,upper_fx,-0.0007499692728742957 +karman_re400,ppo,143,57.2,force,upper_fy,0.0041406466625630856 +karman_re400,ppo,143,57.2,force,lower_fx,0.003873129142448306 +karman_re400,ppo,143,57.2,force,lower_fy,-0.00773691525682807 +karman_re400,ppo,144,57.6,force,front_fx,-0.0019184030825272202 +karman_re400,ppo,144,57.6,force,front_fy,0.0057326555252075195 +karman_re400,ppo,144,57.6,force,upper_fx,-0.0028901260811835527 +karman_re400,ppo,144,57.6,force,upper_fy,0.005225162021815777 +karman_re400,ppo,144,57.6,force,lower_fx,0.005132534075528383 +karman_re400,ppo,144,57.6,force,lower_fy,-0.006520572118461132 +karman_re400,ppo,145,58.0,force,front_fx,0.0009940871968865395 +karman_re400,ppo,145,58.0,force,front_fy,0.0045305220410227776 +karman_re400,ppo,145,58.0,force,upper_fx,-0.004803712014108896 +karman_re400,ppo,145,58.0,force,upper_fy,0.004835990257561207 +karman_re400,ppo,145,58.0,force,lower_fx,0.0048412783071398735 +karman_re400,ppo,145,58.0,force,lower_fy,-0.005223308689892292 +karman_re400,ppo,146,58.4,force,front_fx,0.003545984858646989 +karman_re400,ppo,146,58.4,force,front_fy,0.001201618928462267 +karman_re400,ppo,146,58.4,force,upper_fx,-0.00665076682344079 +karman_re400,ppo,146,58.4,force,upper_fy,0.003603653982281685 +karman_re400,ppo,146,58.4,force,lower_fx,0.00396256148815155 +karman_re400,ppo,146,58.4,force,lower_fy,-0.004522750619798899 +karman_re400,ppo,147,58.8,force,front_fx,0.0025082784704864025 +karman_re400,ppo,147,58.8,force,front_fy,-0.0012004575692117214 +karman_re400,ppo,147,58.8,force,upper_fx,-0.007216144818812609 +karman_re400,ppo,147,58.8,force,upper_fy,0.00453282380476594 +karman_re400,ppo,147,58.8,force,lower_fx,0.003788440255448222 +karman_re400,ppo,147,58.8,force,lower_fy,-0.0036977138370275497 +karman_re400,ppo,148,59.2,force,front_fx,0.0004973756149411201 +karman_re400,ppo,148,59.2,force,front_fy,-0.00362098659388721 +karman_re400,ppo,148,59.2,force,upper_fx,-0.003949194680899382 +karman_re400,ppo,148,59.2,force,upper_fy,0.0075545404106378555 +karman_re400,ppo,148,59.2,force,lower_fx,0.0027716646436601877 +karman_re400,ppo,148,59.2,force,lower_fy,-0.002895265817642212 +karman_re400,ppo,149,59.6,force,front_fx,-0.0015038098208606243 +karman_re400,ppo,149,59.6,force,front_fy,-0.004696240648627281 +karman_re400,ppo,149,59.6,force,upper_fx,0.0006205248646438122 +karman_re400,ppo,149,59.6,force,upper_fy,0.008586407639086246 +karman_re400,ppo,149,59.6,force,lower_fx,0.0011789776617661119 +karman_re400,ppo,149,59.6,force,lower_fy,-0.0029373220168054104 +karman_re400,ppo,150,60.0,force,front_fx,-0.0024394821375608444 +karman_re400,ppo,150,60.0,force,front_fy,-0.005219467915594578 +karman_re400,ppo,150,60.0,force,upper_fx,0.003586527658626437 +karman_re400,ppo,150,60.0,force,upper_fy,0.008105185814201832 +karman_re400,ppo,150,60.0,force,lower_fx,-0.0006682751118205488 +karman_re400,ppo,150,60.0,force,lower_fy,-0.004057181999087334 +karman_re400,ppo,151,60.4,force,front_fx,-0.0018783726263791323 +karman_re400,ppo,151,60.4,force,front_fy,-0.005708055570721626 +karman_re400,ppo,151,60.4,force,upper_fx,0.005171970929950476 +karman_re400,ppo,151,60.4,force,upper_fy,0.006634501740336418 +karman_re400,ppo,151,60.4,force,lower_fx,-0.003333464963361621 +karman_re400,ppo,151,60.4,force,lower_fy,-0.005145137198269367 +karman_re400,ppo,152,60.8,force,front_fx,0.0004997095093131065 +karman_re400,ppo,152,60.8,force,front_fy,-0.005275196395814419 +karman_re400,ppo,152,60.8,force,upper_fx,0.005650998558849096 +karman_re400,ppo,152,60.8,force,upper_fy,0.004989003762602806 +karman_re400,ppo,152,60.8,force,lower_fx,-0.004679834004491568 +karman_re400,ppo,152,60.8,force,lower_fy,-0.005678867921233177 +karman_re400,ppo,153,61.2,force,front_fx,0.003222533268854022 +karman_re400,ppo,153,61.2,force,front_fy,-0.0024830864276736975 +karman_re400,ppo,153,61.2,force,upper_fx,0.004652428440749645 +karman_re400,ppo,153,61.2,force,upper_fy,0.004346530884504318 +karman_re400,ppo,153,61.2,force,lower_fx,-0.005569615866988897 +karman_re400,ppo,153,61.2,force,lower_fy,-0.004211404826492071 +karman_re400,ppo,154,61.6,force,front_fx,0.0037292081397026777 +karman_re400,ppo,154,61.6,force,front_fy,0.0002762664225883782 +karman_re400,ppo,154,61.6,force,upper_fx,0.003777740290388465 +karman_re400,ppo,154,61.6,force,upper_fy,0.0035123161505907774 +karman_re400,ppo,154,61.6,force,lower_fx,-0.006889494601637125 +karman_re400,ppo,154,61.6,force,lower_fy,-0.00287771038711071 +karman_re400,ppo,155,62.0,force,front_fx,0.0015224273083731532 +karman_re400,ppo,155,62.0,force,front_fy,0.0029043075628578663 +karman_re400,ppo,155,62.0,force,upper_fx,0.0024273341987282038 +karman_re400,ppo,155,62.0,force,upper_fy,0.0025057366583496332 +karman_re400,ppo,155,62.0,force,lower_fx,-0.005432025995105505 +karman_re400,ppo,155,62.0,force,lower_fy,-0.005789082031697035 +karman_re400,ppo,156,62.4,force,front_fx,-0.0007049468695186079 +karman_re400,ppo,156,62.4,force,front_fy,0.004414623137563467 +karman_re400,ppo,156,62.4,force,upper_fx,0.001464946661144495 +karman_re400,ppo,156,62.4,force,upper_fy,0.002256794134154916 +karman_re400,ppo,156,62.4,force,lower_fx,-0.0007131003658287227 +karman_re400,ppo,156,62.4,force,lower_fy,-0.007757927291095257 +karman_re400,ppo,157,62.8,force,front_fx,-0.0023117954842746258 +karman_re400,ppo,157,62.8,force,front_fy,0.005043892655521631 +karman_re400,ppo,157,62.8,force,upper_fx,0.00013260255218483508 +karman_re400,ppo,157,62.8,force,upper_fy,0.0033689066767692566 +karman_re400,ppo,157,62.8,force,lower_fx,0.0031351163052022457 +karman_re400,ppo,157,62.8,force,lower_fy,-0.007985209114849567 +karman_re400,ppo,158,63.2,force,front_fx,-0.0023603634908795357 +karman_re400,ppo,158,63.2,force,front_fy,0.005417562555521727 +karman_re400,ppo,158,63.2,force,upper_fx,-0.0016599163645878434 +karman_re400,ppo,158,63.2,force,upper_fy,0.004330432042479515 +karman_re400,ppo,158,63.2,force,lower_fx,0.004820163361728191 +karman_re400,ppo,158,63.2,force,lower_fy,-0.00695243664085865 +karman_re400,ppo,159,63.6,force,front_fx,-0.0006481999298557639 +karman_re400,ppo,159,63.6,force,front_fy,0.005206161644309759 +karman_re400,ppo,159,63.6,force,upper_fx,-0.0039906888268888 +karman_re400,ppo,159,63.6,force,upper_fy,0.005136561580002308 +karman_re400,ppo,159,63.6,force,lower_fx,0.005006091203540564 +karman_re400,ppo,159,63.6,force,lower_fy,-0.005664642434567213 +karman_re400,ppo,160,64.0,force,front_fx,0.0025108850095421076 +karman_re400,ppo,160,64.0,force,front_fy,0.0028539556078612804 +karman_re400,ppo,160,64.0,force,upper_fx,-0.005994876846671104 +karman_re400,ppo,160,64.0,force,upper_fy,0.003820243291556835 +karman_re400,ppo,160,64.0,force,lower_fx,0.0040669371373951435 +karman_re400,ppo,160,64.0,force,lower_fy,-0.004916798323392868 +karman_re400,ppo,161,64.4,force,front_fx,0.0034775715321302414 +karman_re400,ppo,161,64.4,force,front_fy,0.00031881601898930967 +karman_re400,ppo,161,64.4,force,upper_fx,-0.007122851442545652 +karman_re400,ppo,161,64.4,force,upper_fy,0.003161804750561714 +karman_re400,ppo,161,64.4,force,lower_fx,0.0038746772333979607 +karman_re400,ppo,161,64.4,force,lower_fy,-0.004011333454400301 +karman_re400,ppo,162,64.8,force,front_fx,0.001629468402825296 +karman_re400,ppo,162,64.8,force,front_fy,-0.00251623778603971 +karman_re400,ppo,162,64.8,force,upper_fx,-0.005685980897396803 +karman_re400,ppo,162,64.8,force,upper_fy,0.005601854529231787 +karman_re400,ppo,162,64.8,force,lower_fx,0.0034272875636816025 +karman_re400,ppo,162,64.8,force,lower_fy,-0.003055584616959095 +karman_re400,ppo,163,65.2,force,front_fx,-0.00030928978230804205 +karman_re400,ppo,163,65.2,force,front_fy,-0.004277428612112999 +karman_re400,ppo,163,65.2,force,upper_fx,-0.0012569539248943329 +karman_re400,ppo,163,65.2,force,upper_fy,0.007321354933083057 +karman_re400,ppo,163,65.2,force,lower_fx,0.0022061034105718136 +karman_re400,ppo,163,65.2,force,lower_fy,-0.0024916641414165497 +karman_re400,ppo,164,65.6,force,front_fx,-0.0020084527786821127 +karman_re400,ppo,164,65.6,force,front_fy,-0.005106911528855562 +karman_re400,ppo,164,65.6,force,upper_fx,0.0025115609169006348 +karman_re400,ppo,164,65.6,force,upper_fy,0.007633523549884558 +karman_re400,ppo,164,65.6,force,lower_fx,0.00025445088976994157 +karman_re400,ppo,164,65.6,force,lower_fy,-0.00357958790846169 +karman_re400,ppo,165,66.0,force,front_fx,-0.002043723128736019 +karman_re400,ppo,165,66.0,force,front_fy,-0.005749295931309462 +karman_re400,ppo,165,66.0,force,upper_fx,0.004572173580527306 +karman_re400,ppo,165,66.0,force,upper_fy,0.006748039275407791 +karman_re400,ppo,165,66.0,force,lower_fx,-0.0018955097766593099 +karman_re400,ppo,165,66.0,force,lower_fy,-0.0043289619497954845 +karman_re400,ppo,166,66.4,force,front_fx,-0.00022231170441955328 +karman_re400,ppo,166,66.4,force,front_fy,-0.005784618202596903 +karman_re400,ppo,166,66.4,force,upper_fx,0.005379545036703348 +karman_re400,ppo,166,66.4,force,upper_fy,0.005465979687869549 +karman_re400,ppo,166,66.4,force,lower_fx,-0.00418606773018837 +karman_re400,ppo,166,66.4,force,lower_fy,-0.005296390037983656 +karman_re400,ppo,167,66.8,force,front_fx,0.0026946277357637882 +karman_re400,ppo,167,66.8,force,front_fy,-0.0038609588518738747 +karman_re400,ppo,167,66.8,force,upper_fx,0.004682785831391811 +karman_re400,ppo,167,66.8,force,upper_fy,0.004516493063420057 +karman_re400,ppo,167,66.8,force,lower_fx,-0.00631110742688179 +karman_re400,ppo,167,66.8,force,lower_fy,-0.004597056657075882 +karman_re400,ppo,168,67.2,force,front_fx,0.00432294188067317 +karman_re400,ppo,168,67.2,force,front_fy,-0.0005742133362218738 +karman_re400,ppo,168,67.2,force,upper_fx,0.003982380498200655 +karman_re400,ppo,168,67.2,force,upper_fy,0.004236432723701 +karman_re400,ppo,168,67.2,force,lower_fx,-0.007807527668774128 +karman_re400,ppo,168,67.2,force,lower_fy,-0.004054739605635405 +karman_re400,ppo,169,67.6,force,front_fx,0.0024369710590690374 +karman_re400,ppo,169,67.6,force,front_fy,0.0021542024333029985 +karman_re400,ppo,169,67.6,force,upper_fx,0.0036696884781122208 +karman_re400,ppo,169,67.6,force,upper_fy,0.00326922838576138 +karman_re400,ppo,169,67.6,force,lower_fx,-0.006877690553665161 +karman_re400,ppo,169,67.6,force,lower_fy,-0.006285133305937052 +karman_re400,ppo,170,68.0,force,front_fx,0.0002433384070172906 +karman_re400,ppo,170,68.0,force,front_fy,0.004285603296011686 +karman_re400,ppo,170,68.0,force,upper_fx,0.0025585803668946028 +karman_re400,ppo,170,68.0,force,upper_fy,0.002640778198838234 +karman_re400,ppo,170,68.0,force,lower_fx,-0.0025932409334927797 +karman_re400,ppo,170,68.0,force,lower_fy,-0.008027099072933197 +karman_re400,ppo,171,68.4,force,front_fx,-0.0020258782897144556 +karman_re400,ppo,171,68.4,force,front_fy,0.005095141474157572 +karman_re400,ppo,171,68.4,force,upper_fx,0.0007359220762737095 +karman_re400,ppo,171,68.4,force,upper_fy,0.0033777612261474133 +karman_re400,ppo,171,68.4,force,lower_fx,0.0014397777849808335 +karman_re400,ppo,171,68.4,force,lower_fy,-0.008708355948328972 +karman_re400,ppo,172,68.8,force,front_fx,-0.0028550131246447563 +karman_re400,ppo,172,68.8,force,front_fy,0.0054788244888186455 +karman_re400,ppo,172,68.8,force,upper_fx,-0.0009157566237263381 +karman_re400,ppo,172,68.8,force,upper_fy,0.004590027499943972 +karman_re400,ppo,172,68.8,force,lower_fx,0.003992936108261347 +karman_re400,ppo,172,68.8,force,lower_fy,-0.007938082329928875 +karman_re400,ppo,173,69.2,force,front_fx,-0.0020729429088532925 +karman_re400,ppo,173,69.2,force,front_fy,0.005621845833957195 +karman_re400,ppo,173,69.2,force,upper_fx,-0.002945302752777934 +karman_re400,ppo,173,69.2,force,upper_fy,0.0057061403058469296 +karman_re400,ppo,173,69.2,force,lower_fx,0.005047002341598272 +karman_re400,ppo,173,69.2,force,lower_fy,-0.006535115651786327 +karman_re400,ppo,174,69.6,force,front_fx,0.0008450682507827878 +karman_re400,ppo,174,69.6,force,front_fy,0.0044413404539227486 +karman_re400,ppo,174,69.6,force,upper_fx,-0.004647322464734316 +karman_re400,ppo,174,69.6,force,upper_fy,0.00496731698513031 +karman_re400,ppo,174,69.6,force,lower_fx,0.004697670228779316 +karman_re400,ppo,174,69.6,force,lower_fy,-0.005181090906262398 +karman_re400,ppo,175,70.0,force,front_fx,0.0035765713546425104 +karman_re400,ppo,175,70.0,force,front_fy,0.001411405042745173 +karman_re400,ppo,175,70.0,force,upper_fx,-0.0063711837865412235 +karman_re400,ppo,175,70.0,force,upper_fy,0.0034969979897141457 +karman_re400,ppo,175,70.0,force,lower_fx,0.003889024956151843 +karman_re400,ppo,175,70.0,force,lower_fy,-0.0043471320532262325 +karman_re400,ppo,176,70.4,force,front_fx,0.0025750785134732723 +karman_re400,ppo,176,70.4,force,front_fy,-0.000928020803257823 +karman_re400,ppo,176,70.4,force,upper_fx,-0.007242353167384863 +karman_re400,ppo,176,70.4,force,upper_fy,0.004407304339110851 +karman_re400,ppo,176,70.4,force,lower_fx,0.003540444653481245 +karman_re400,ppo,176,70.4,force,lower_fy,-0.0034882936161011457 +karman_re400,ppo,177,70.8,force,front_fx,0.0008359336643479764 +karman_re400,ppo,177,70.8,force,front_fy,-0.0033167803194373846 +karman_re400,ppo,177,70.8,force,upper_fx,-0.004101111087948084 +karman_re400,ppo,177,70.8,force,upper_fy,0.007368496153503656 +karman_re400,ppo,177,70.8,force,lower_fx,0.002543357200920582 +karman_re400,ppo,177,70.8,force,lower_fy,-0.002607783768326044 +karman_re400,ppo,178,71.2,force,front_fx,-0.0012551989639177918 +karman_re400,ppo,178,71.2,force,front_fy,-0.0045299106277525425 +karman_re400,ppo,178,71.2,force,upper_fx,0.00023971799237187952 +karman_re400,ppo,178,71.2,force,upper_fy,0.008372393436729908 +karman_re400,ppo,178,71.2,force,lower_fx,0.0010671353666111827 +karman_re400,ppo,178,71.2,force,lower_fy,-0.00266476534307003 +karman_re400,ppo,179,71.6,force,front_fx,-0.002344726584851742 +karman_re400,ppo,179,71.6,force,front_fy,-0.005103594623506069 +karman_re400,ppo,179,71.6,force,upper_fx,0.00322472071275115 +karman_re400,ppo,179,71.6,force,upper_fy,0.008027019910514355 +karman_re400,ppo,179,71.6,force,lower_fx,-0.0006857343832962215 +karman_re400,ppo,179,71.6,force,lower_fy,-0.0036801830865442753 +karman_re400,ppo,180,72.0,force,front_fx,-0.0019753803499042988 +karman_re400,ppo,180,72.0,force,front_fy,-0.005607875529676676 +karman_re400,ppo,180,72.0,force,upper_fx,0.004882635083049536 +karman_re400,ppo,180,72.0,force,upper_fy,0.006616954691708088 +karman_re400,ppo,180,72.0,force,lower_fx,-0.0033140217419713736 +karman_re400,ppo,180,72.0,force,lower_fy,-0.004556595813483 +karman_re400,ppo,181,72.4,force,front_fx,0.000371010071830824 +karman_re400,ppo,181,72.4,force,front_fy,-0.00523034855723381 +karman_re400,ppo,181,72.4,force,upper_fx,0.005531578790396452 +karman_re400,ppo,181,72.4,force,upper_fy,0.004983996041119099 +karman_re400,ppo,181,72.4,force,lower_fx,-0.004656964913010597 +karman_re400,ppo,181,72.4,force,lower_fy,-0.005446618888527155 +karman_re400,ppo,182,72.8,force,front_fx,0.0031211001332849264 +karman_re400,ppo,182,72.8,force,front_fy,-0.002532274229452014 +karman_re400,ppo,182,72.8,force,upper_fx,0.004714589565992355 +karman_re400,ppo,182,72.8,force,upper_fy,0.0042579337023198605 +karman_re400,ppo,182,72.8,force,lower_fx,-0.005496216006577015 +karman_re400,ppo,182,72.8,force,lower_fy,-0.004500244278460741 +karman_re400,ppo,183,73.2,force,front_fx,0.0037021643947809935 +karman_re400,ppo,183,73.2,force,front_fy,0.00039021915290504694 +karman_re400,ppo,183,73.2,force,upper_fx,0.003741325344890356 +karman_re400,ppo,183,73.2,force,upper_fy,0.0036489320918917656 +karman_re400,ppo,183,73.2,force,lower_fx,-0.006461955141276121 +karman_re400,ppo,183,73.2,force,lower_fy,-0.0031721240375190973 +karman_re400,ppo,184,73.6,force,front_fx,0.0014331607380881906 +karman_re400,ppo,184,73.6,force,front_fy,0.0029942651744931936 +karman_re400,ppo,184,73.6,force,upper_fx,0.002301928121596575 +karman_re400,ppo,184,73.6,force,upper_fy,0.002619581762701273 +karman_re400,ppo,184,73.6,force,lower_fx,-0.005176426377147436 +karman_re400,ppo,184,73.6,force,lower_fy,-0.005683164577931166 +karman_re400,ppo,185,74.0,force,front_fx,-0.000772703904658556 +karman_re400,ppo,185,74.0,force,front_fy,0.004488215781748295 +karman_re400,ppo,185,74.0,force,upper_fx,0.0012111322721466422 +karman_re400,ppo,185,74.0,force,upper_fy,0.0023307621013373137 +karman_re400,ppo,185,74.0,force,lower_fx,-0.0007478775805793703 +karman_re400,ppo,185,74.0,force,lower_fy,-0.007519295439124107 +karman_re400,ppo,186,74.4,force,front_fx,-0.0022905974183231592 +karman_re400,ppo,186,74.4,force,front_fy,0.0051547931507229805 +karman_re400,ppo,186,74.4,force,upper_fx,-0.0001553060137666762 +karman_re400,ppo,186,74.4,force,upper_fy,0.0033027639146894217 +karman_re400,ppo,186,74.4,force,lower_fx,0.0029302272014319897 +karman_re400,ppo,186,74.4,force,lower_fy,-0.007758840918540955 +karman_re400,ppo,187,74.8,force,front_fx,-0.002108233980834484 +karman_re400,ppo,187,74.8,force,front_fy,0.005551770329475403 +karman_re400,ppo,187,74.8,force,upper_fx,-0.001933169667609036 +karman_re400,ppo,187,74.8,force,upper_fy,0.004183602053672075 +karman_re400,ppo,187,74.8,force,lower_fx,0.004672003444284201 +karman_re400,ppo,187,74.8,force,lower_fy,-0.006799895316362381 +karman_re400,ppo,188,75.2,force,front_fx,-0.00024655534070916474 +karman_re400,ppo,188,75.2,force,front_fy,0.0053128874860703945 +karman_re400,ppo,188,75.2,force,upper_fx,-0.0039997706189751625 +karman_re400,ppo,188,75.2,force,upper_fy,0.004982324317097664 +karman_re400,ppo,188,75.2,force,lower_fx,0.005015691742300987 +karman_re400,ppo,188,75.2,force,lower_fy,-0.005564240273088217 +karman_re400,ppo,189,75.6,force,front_fx,0.0027521448209881783 +karman_re400,ppo,189,75.6,force,front_fy,0.0027802588883787394 +karman_re400,ppo,189,75.6,force,upper_fx,-0.006012348923832178 +karman_re400,ppo,189,75.6,force,upper_fy,0.0037646412383764982 +karman_re400,ppo,189,75.6,force,lower_fx,0.00405257660895586 +karman_re400,ppo,189,75.6,force,lower_fy,-0.0048109181225299835 +karman_re400,ppo,190,76.0,force,front_fx,0.003534869756549597 +karman_re400,ppo,190,76.0,force,front_fy,1.1733483006537426e-05 +karman_re400,ppo,190,76.0,force,upper_fx,-0.0072740898467600346 +karman_re400,ppo,190,76.0,force,upper_fy,0.0033555179834365845 +karman_re400,ppo,190,76.0,force,lower_fx,0.003774425480514765 +karman_re400,ppo,190,76.0,force,lower_fy,-0.003975467756390572 +karman_re400,ppo,191,76.4,force,front_fx,0.0015028599882498384 +karman_re400,ppo,191,76.4,force,front_fy,-0.0027103303000330925 +karman_re400,ppo,191,76.4,force,upper_fx,-0.005624290555715561 +karman_re400,ppo,191,76.4,force,upper_fy,0.006098323967307806 +karman_re400,ppo,191,76.4,force,lower_fx,0.003376054810360074 +karman_re400,ppo,191,76.4,force,lower_fy,-0.0029832220170646906 +karman_re400,ppo,192,76.8,force,front_fx,-0.000505783420521766 +karman_re400,ppo,192,76.8,force,front_fy,-0.0043775299564003944 +karman_re400,ppo,192,76.8,force,upper_fx,-0.000967135711107403 +karman_re400,ppo,192,76.8,force,upper_fy,0.007779013365507126 +karman_re400,ppo,192,76.8,force,lower_fx,0.002181539312005043 +karman_re400,ppo,192,76.8,force,lower_fy,-0.0024887763429433107 +karman_re400,ppo,193,77.2,force,front_fx,-0.00217955163680017 +karman_re400,ppo,193,77.2,force,front_fy,-0.005104687996208668 +karman_re400,ppo,193,77.2,force,upper_fx,0.0026280072052031755 +karman_re400,ppo,193,77.2,force,upper_fy,0.00796453095972538 +karman_re400,ppo,193,77.2,force,lower_fx,0.00017809300334192812 +karman_re400,ppo,193,77.2,force,lower_fy,-0.0036404600832611322 +karman_re400,ppo,194,77.6,force,front_fx,-0.002272518817335367 +karman_re400,ppo,194,77.6,force,front_fy,-0.005678845103830099 +karman_re400,ppo,194,77.6,force,upper_fx,0.004581448622047901 +karman_re400,ppo,194,77.6,force,upper_fy,0.007028728723526001 +karman_re400,ppo,194,77.6,force,lower_fx,-0.0020030876621603966 +karman_re400,ppo,194,77.6,force,lower_fy,-0.004469473846256733 +karman_re400,ppo,195,78.0,force,front_fx,-0.0006468319916166365 +karman_re400,ppo,195,78.0,force,front_fy,-0.005707992240786552 +karman_re400,ppo,195,78.0,force,upper_fx,0.005410435609519482 +karman_re400,ppo,195,78.0,force,upper_fy,0.005593789741396904 +karman_re400,ppo,195,78.0,force,lower_fx,-0.0040056235156953335 +karman_re400,ppo,195,78.0,force,lower_fy,-0.005537782795727253 +karman_re400,ppo,196,78.4,force,front_fx,0.0022040694020688534 +karman_re400,ppo,196,78.4,force,front_fy,-0.004029483068734407 +karman_re400,ppo,196,78.4,force,upper_fx,0.005018359981477261 +karman_re400,ppo,196,78.4,force,upper_fy,0.0044511412270367146 +karman_re400,ppo,196,78.4,force,lower_fx,-0.0055297077633440495 +karman_re400,ppo,196,78.4,force,lower_fy,-0.004825134761631489 +karman_re400,ppo,197,78.8,force,front_fx,0.004062236752361059 +karman_re400,ppo,197,78.8,force,front_fy,-0.0007377477013505995 +karman_re400,ppo,197,78.8,force,upper_fx,0.004101686179637909 +karman_re400,ppo,197,78.8,force,upper_fy,0.004093630705028772 +karman_re400,ppo,197,78.8,force,lower_fx,-0.006841785274446011 +karman_re400,ppo,197,78.8,force,lower_fy,-0.0035742339678108692 +karman_re400,ppo,198,79.2,force,front_fx,0.0024414958897978067 +karman_re400,ppo,198,79.2,force,front_fy,0.0018036391120404005 +karman_re400,ppo,198,79.2,force,upper_fx,0.0033777449280023575 +karman_re400,ppo,198,79.2,force,upper_fy,0.0031209299340844154 +karman_re400,ppo,198,79.2,force,lower_fx,-0.006713198497891426 +karman_re400,ppo,198,79.2,force,lower_fy,-0.005313137546181679 +karman_re400,ppo,199,79.6,force,front_fx,0.0003569100808817893 +karman_re400,ppo,199,79.6,force,front_fy,0.004021841567009687 +karman_re400,ppo,199,79.6,force,upper_fx,0.002150461310520768 +karman_re400,ppo,199,79.6,force,upper_fy,0.002508884761482477 +karman_re400,ppo,199,79.6,force,lower_fx,-0.002810579026117921 +karman_re400,ppo,199,79.6,force,lower_fy,-0.0073993029072880745 +karman_re400,ppo,0,0.0,alpha,front,2.1930055618286133 +karman_re400,ppo,0,0.0,alpha,upper,-7.6689133644104 +karman_re400,ppo,0,0.0,alpha,lower,-3.6831250190734863 +karman_re400,ppo,1,0.4,alpha,front,2.452056884765625 +karman_re400,ppo,1,0.4,alpha,upper,-7.3714189529418945 +karman_re400,ppo,1,0.4,alpha,lower,-3.820882797241211 +karman_re400,ppo,2,0.8,alpha,front,1.8302044868469238 +karman_re400,ppo,2,0.8,alpha,upper,-4.680788040161133 +karman_re400,ppo,2,0.8,alpha,lower,-2.395571231842041 +karman_re400,ppo,3,1.2,alpha,front,1.5959364175796509 +karman_re400,ppo,3,1.2,alpha,upper,-4.448609828948975 +karman_re400,ppo,3,1.2,alpha,lower,-1.3726816177368164 +karman_re400,ppo,4,1.6,alpha,front,0.6880942583084106 +karman_re400,ppo,4,1.6,alpha,upper,-1.2617790699005127 +karman_re400,ppo,4,1.6,alpha,lower,3.8584580421447754 +karman_re400,ppo,5,2.0,alpha,front,0.12426899373531342 +karman_re400,ppo,5,2.0,alpha,upper,0.4134817123413086 +karman_re400,ppo,5,2.0,alpha,lower,6.294703483581543 +karman_re400,ppo,6,2.4,alpha,front,-0.8247596621513367 +karman_re400,ppo,6,2.4,alpha,upper,1.0183982849121094 +karman_re400,ppo,6,2.4,alpha,lower,7.596898078918457 +karman_re400,ppo,7,2.8,alpha,front,-1.455910325050354 +karman_re400,ppo,7,2.8,alpha,upper,1.097907543182373 +karman_re400,ppo,7,2.8,alpha,lower,7.940784454345703 +karman_re400,ppo,8,3.2,alpha,front,-1.3214879035949707 +karman_re400,ppo,8,3.2,alpha,upper,-0.630061149597168 +karman_re400,ppo,8,3.2,alpha,lower,6.560962677001953 +karman_re400,ppo,9,3.6,alpha,front,-0.7634793519973755 +karman_re400,ppo,9,3.6,alpha,upper,-0.908266007900238 +karman_re400,ppo,9,3.6,alpha,lower,4.717955112457275 +karman_re400,ppo,10,4.0,alpha,front,-0.5188012719154358 +karman_re400,ppo,10,4.0,alpha,upper,-1.3171796798706055 +karman_re400,ppo,10,4.0,alpha,lower,2.7311840057373047 +karman_re400,ppo,11,4.4,alpha,front,0.02390999346971512 +karman_re400,ppo,11,4.4,alpha,upper,-3.7491371631622314 +karman_re400,ppo,11,4.4,alpha,lower,1.0440335273742676 +karman_re400,ppo,12,4.8,alpha,front,0.6429749131202698 +karman_re400,ppo,12,4.8,alpha,upper,-5.809557914733887 +karman_re400,ppo,12,4.8,alpha,lower,-0.21613122522830963 +karman_re400,ppo,13,5.2,alpha,front,1.116302490234375 +karman_re400,ppo,13,5.2,alpha,upper,-6.832691669464111 +karman_re400,ppo,13,5.2,alpha,lower,-1.0964879989624023 +karman_re400,ppo,14,5.6,alpha,front,1.5021454095840454 +karman_re400,ppo,14,5.6,alpha,upper,-7.164400100708008 +karman_re400,ppo,14,5.6,alpha,lower,-1.7713675498962402 +karman_re400,ppo,15,6.0,alpha,front,1.4655095338821411 +karman_re400,ppo,15,6.0,alpha,upper,-6.7069220542907715 +karman_re400,ppo,15,6.0,alpha,lower,-1.6736012697219849 +karman_re400,ppo,16,6.4,alpha,front,1.5131089687347412 +karman_re400,ppo,16,6.4,alpha,upper,-6.179040908813477 +karman_re400,ppo,16,6.4,alpha,lower,-1.6189899444580078 +karman_re400,ppo,17,6.8,alpha,front,1.459781527519226 +karman_re400,ppo,17,6.8,alpha,upper,-4.123866081237793 +karman_re400,ppo,17,6.8,alpha,lower,0.22530460357666016 +karman_re400,ppo,18,7.2,alpha,front,0.6917064785957336 +karman_re400,ppo,18,7.2,alpha,upper,-2.053460121154785 +karman_re400,ppo,18,7.2,alpha,lower,3.364860773086548 +karman_re400,ppo,19,7.6,alpha,front,-0.12056054919958115 +karman_re400,ppo,19,7.6,alpha,upper,-1.1638360023498535 +karman_re400,ppo,19,7.6,alpha,lower,5.340305328369141 +karman_re400,ppo,20,8.0,alpha,front,-0.5772757530212402 +karman_re400,ppo,20,8.0,alpha,upper,-1.0278105735778809 +karman_re400,ppo,20,8.0,alpha,lower,6.1091508865356445 +karman_re400,ppo,21,8.4,alpha,front,-1.1283310651779175 +karman_re400,ppo,21,8.4,alpha,upper,0.4900178909301758 +karman_re400,ppo,21,8.4,alpha,lower,7.106048107147217 +karman_re400,ppo,22,8.8,alpha,front,-1.5833854675292969 +karman_re400,ppo,22,8.8,alpha,upper,1.3007612228393555 +karman_re400,ppo,22,8.8,alpha,lower,7.35707950592041 +karman_re400,ppo,23,9.2,alpha,front,-1.8362922668457031 +karman_re400,ppo,23,9.2,alpha,upper,2.018301010131836 +karman_re400,ppo,23,9.2,alpha,lower,6.668835163116455 +karman_re400,ppo,24,9.6,alpha,front,-2.037409543991089 +karman_re400,ppo,24,9.6,alpha,upper,1.9270200729370117 +karman_re400,ppo,24,9.6,alpha,lower,5.486135959625244 +karman_re400,ppo,25,10.0,alpha,front,-1.8508952856063843 +karman_re400,ppo,25,10.0,alpha,upper,-0.48968052864074707 +karman_re400,ppo,25,10.0,alpha,lower,3.853804588317871 +karman_re400,ppo,26,10.4,alpha,front,-0.9235603213310242 +karman_re400,ppo,26,10.4,alpha,upper,-4.374137878417969 +karman_re400,ppo,26,10.4,alpha,lower,1.5986825227737427 +karman_re400,ppo,27,10.8,alpha,front,0.3083631098270416 +karman_re400,ppo,27,10.8,alpha,upper,-6.525234222412109 +karman_re400,ppo,27,10.8,alpha,lower,0.15908074378967285 +karman_re400,ppo,28,11.2,alpha,front,1.0062377452850342 +karman_re400,ppo,28,11.2,alpha,upper,-6.581709861755371 +karman_re400,ppo,28,11.2,alpha,lower,-0.19822977483272552 +karman_re400,ppo,29,11.6,alpha,front,1.5623940229415894 +karman_re400,ppo,29,11.6,alpha,upper,-6.141887664794922 +karman_re400,ppo,29,11.6,alpha,lower,-1.049168586730957 +karman_re400,ppo,30,12.0,alpha,front,1.5033855438232422 +karman_re400,ppo,30,12.0,alpha,upper,-5.646021366119385 +karman_re400,ppo,30,12.0,alpha,lower,-1.5090641975402832 +karman_re400,ppo,31,12.4,alpha,front,1.4975247383117676 +karman_re400,ppo,31,12.4,alpha,upper,-5.117255210876465 +karman_re400,ppo,31,12.4,alpha,lower,-1.3706631660461426 +karman_re400,ppo,32,12.8,alpha,front,1.3379127979278564 +karman_re400,ppo,32,12.8,alpha,upper,-3.3169846534729004 +karman_re400,ppo,32,12.8,alpha,lower,0.9822917580604553 +karman_re400,ppo,33,13.2,alpha,front,0.5324419140815735 +karman_re400,ppo,33,13.2,alpha,upper,-1.270728588104248 +karman_re400,ppo,33,13.2,alpha,lower,4.074484825134277 +karman_re400,ppo,34,13.6,alpha,front,-0.3528852164745331 +karman_re400,ppo,34,13.6,alpha,upper,0.2774629592895508 +karman_re400,ppo,34,13.6,alpha,lower,6.250301361083984 +karman_re400,ppo,35,14.0,alpha,front,-1.095350742340088 +karman_re400,ppo,35,14.0,alpha,upper,0.9000663757324219 +karman_re400,ppo,35,14.0,alpha,lower,7.294172763824463 +karman_re400,ppo,36,14.4,alpha,front,-1.7638734579086304 +karman_re400,ppo,36,14.4,alpha,upper,1.0844879150390625 +karman_re400,ppo,36,14.4,alpha,lower,7.453790664672852 +karman_re400,ppo,37,14.8,alpha,front,-2.087751626968384 +karman_re400,ppo,37,14.8,alpha,upper,0.8601722717285156 +karman_re400,ppo,37,14.8,alpha,lower,6.771042346954346 +karman_re400,ppo,38,15.2,alpha,front,-1.9509605169296265 +karman_re400,ppo,38,15.2,alpha,upper,0.4321284294128418 +karman_re400,ppo,38,15.2,alpha,lower,5.307940483093262 +karman_re400,ppo,39,15.6,alpha,front,-1.5147016048431396 +karman_re400,ppo,39,15.6,alpha,upper,-0.4734489619731903 +karman_re400,ppo,39,15.6,alpha,lower,3.7684364318847656 +karman_re400,ppo,40,16.0,alpha,front,-0.7244692444801331 +karman_re400,ppo,40,16.0,alpha,upper,-2.816588878631592 +karman_re400,ppo,40,16.0,alpha,lower,1.6329827308654785 +karman_re400,ppo,41,16.4,alpha,front,0.16961590945720673 +karman_re400,ppo,41,16.4,alpha,upper,-4.731656074523926 +karman_re400,ppo,41,16.4,alpha,lower,0.33957362174987793 +karman_re400,ppo,42,16.8,alpha,front,0.9053112864494324 +karman_re400,ppo,42,16.8,alpha,upper,-5.725146293640137 +karman_re400,ppo,42,16.8,alpha,lower,-0.30934810638427734 +karman_re400,ppo,43,17.2,alpha,front,1.406120777130127 +karman_re400,ppo,43,17.2,alpha,upper,-6.041696548461914 +karman_re400,ppo,43,17.2,alpha,lower,-0.8243284225463867 +karman_re400,ppo,44,17.6,alpha,front,1.723812222480774 +karman_re400,ppo,44,17.6,alpha,upper,-5.983953952789307 +karman_re400,ppo,44,17.6,alpha,lower,-1.3163657188415527 +karman_re400,ppo,45,18.0,alpha,front,1.7685611248016357 +karman_re400,ppo,45,18.0,alpha,upper,-5.514436721801758 +karman_re400,ppo,45,18.0,alpha,lower,-1.442866325378418 +karman_re400,ppo,46,18.4,alpha,front,2.0609073638916016 +karman_re400,ppo,46,18.4,alpha,upper,-4.649646282196045 +karman_re400,ppo,46,18.4,alpha,lower,-1.183260440826416 +karman_re400,ppo,47,18.8,alpha,front,1.7059117555618286 +karman_re400,ppo,47,18.8,alpha,upper,-2.4003520011901855 +karman_re400,ppo,47,18.8,alpha,lower,1.5454142093658447 +karman_re400,ppo,48,19.2,alpha,front,0.7016224265098572 +karman_re400,ppo,48,19.2,alpha,upper,-0.741879940032959 +karman_re400,ppo,48,19.2,alpha,lower,4.634184837341309 +karman_re400,ppo,49,19.6,alpha,front,-0.16787850856781006 +karman_re400,ppo,49,19.6,alpha,upper,0.0929422378540039 +karman_re400,ppo,49,19.6,alpha,lower,6.341413497924805 +karman_re400,ppo,50,20.0,alpha,front,-0.7917929887771606 +karman_re400,ppo,50,20.0,alpha,upper,0.6178345680236816 +karman_re400,ppo,50,20.0,alpha,lower,7.028162479400635 +karman_re400,ppo,51,20.4,alpha,front,-1.3454396724700928 +karman_re400,ppo,51,20.4,alpha,upper,0.8639478087425232 +karman_re400,ppo,51,20.4,alpha,lower,6.953232765197754 +karman_re400,ppo,52,20.8,alpha,front,-1.5339354276657104 +karman_re400,ppo,52,20.8,alpha,upper,0.4088134467601776 +karman_re400,ppo,52,20.8,alpha,lower,6.073112487792969 +karman_re400,ppo,53,21.2,alpha,front,-1.307793140411377 +karman_re400,ppo,53,21.2,alpha,upper,-0.3418080806732178 +karman_re400,ppo,53,21.2,alpha,lower,4.441543102264404 +karman_re400,ppo,54,21.6,alpha,front,-1.0075995922088623 +karman_re400,ppo,54,21.6,alpha,upper,-1.2349684238433838 +karman_re400,ppo,54,21.6,alpha,lower,3.0377683639526367 +karman_re400,ppo,55,22.0,alpha,front,-0.34000518918037415 +karman_re400,ppo,55,22.0,alpha,upper,-3.343649387359619 +karman_re400,ppo,55,22.0,alpha,lower,1.173011302947998 +karman_re400,ppo,56,22.4,alpha,front,0.34846314787864685 +karman_re400,ppo,56,22.4,alpha,upper,-5.127974033355713 +karman_re400,ppo,56,22.4,alpha,lower,-0.03527688980102539 +karman_re400,ppo,57,22.8,alpha,front,0.9204627871513367 +karman_re400,ppo,57,22.8,alpha,upper,-5.9937238693237305 +karman_re400,ppo,57,22.8,alpha,lower,-0.7183279991149902 +karman_re400,ppo,58,23.2,alpha,front,1.395890712738037 +karman_re400,ppo,58,23.2,alpha,upper,-6.226719379425049 +karman_re400,ppo,58,23.2,alpha,lower,-1.3382720947265625 +karman_re400,ppo,59,23.6,alpha,front,1.6018346548080444 +karman_re400,ppo,59,23.6,alpha,upper,-5.850415229797363 +karman_re400,ppo,59,23.6,alpha,lower,-1.602891445159912 +karman_re400,ppo,60,24.0,alpha,front,1.6479905843734741 +karman_re400,ppo,60,24.0,alpha,upper,-5.1591033935546875 +karman_re400,ppo,60,24.0,alpha,lower,-1.3835864067077637 +karman_re400,ppo,61,24.4,alpha,front,1.5228214263916016 +karman_re400,ppo,61,24.4,alpha,upper,-3.9127745628356934 +karman_re400,ppo,61,24.4,alpha,lower,0.1000356674194336 +karman_re400,ppo,62,24.8,alpha,front,0.6925185918807983 +karman_re400,ppo,62,24.8,alpha,upper,-1.7176542282104492 +karman_re400,ppo,62,24.8,alpha,lower,3.3684022426605225 +karman_re400,ppo,63,25.2,alpha,front,-0.17426052689552307 +karman_re400,ppo,63,25.2,alpha,upper,-0.24389506876468658 +karman_re400,ppo,63,25.2,alpha,lower,5.734882354736328 +karman_re400,ppo,64,25.6,alpha,front,-0.8550863265991211 +karman_re400,ppo,64,25.6,alpha,upper,0.3758702278137207 +karman_re400,ppo,64,25.6,alpha,lower,6.806817054748535 +karman_re400,ppo,65,26.0,alpha,front,-1.410834550857544 +karman_re400,ppo,65,26.0,alpha,upper,1.0422801971435547 +karman_re400,ppo,65,26.0,alpha,lower,7.200657844543457 +karman_re400,ppo,66,26.4,alpha,front,-1.7449835538864136 +karman_re400,ppo,66,26.4,alpha,upper,0.899327278137207 +karman_re400,ppo,66,26.4,alpha,lower,6.709697246551514 +karman_re400,ppo,67,26.8,alpha,front,-1.7485179901123047 +karman_re400,ppo,67,26.8,alpha,upper,0.849119246006012 +karman_re400,ppo,67,26.8,alpha,lower,5.373626708984375 +karman_re400,ppo,68,27.2,alpha,front,-1.5990418195724487 +karman_re400,ppo,68,27.2,alpha,upper,0.41223955154418945 +karman_re400,ppo,68,27.2,alpha,lower,4.272273063659668 +karman_re400,ppo,69,27.6,alpha,front,-1.1158195734024048 +karman_re400,ppo,69,27.6,alpha,upper,-2.1386451721191406 +karman_re400,ppo,69,27.6,alpha,lower,2.258610248565674 +karman_re400,ppo,70,28.0,alpha,front,-0.36118414998054504 +karman_re400,ppo,70,28.0,alpha,upper,-4.535285949707031 +karman_re400,ppo,70,28.0,alpha,lower,0.6945343017578125 +karman_re400,ppo,71,28.4,alpha,front,0.3913383185863495 +karman_re400,ppo,71,28.4,alpha,upper,-5.798250198364258 +karman_re400,ppo,71,28.4,alpha,lower,-0.22860002517700195 +karman_re400,ppo,72,28.8,alpha,front,1.0092662572860718 +karman_re400,ppo,72,28.8,alpha,upper,-6.318297386169434 +karman_re400,ppo,72,28.8,alpha,lower,-0.9785236716270447 +karman_re400,ppo,73,29.2,alpha,front,1.3428852558135986 +karman_re400,ppo,73,29.2,alpha,upper,-6.096965789794922 +karman_re400,ppo,73,29.2,alpha,lower,-1.2881989479064941 +karman_re400,ppo,74,29.6,alpha,front,1.3702257871627808 +karman_re400,ppo,74,29.6,alpha,upper,-5.511904716491699 +karman_re400,ppo,74,29.6,alpha,lower,-1.1734657287597656 +karman_re400,ppo,75,30.0,alpha,front,1.3913111686706543 +karman_re400,ppo,75,30.0,alpha,upper,-4.4556779861450195 +karman_re400,ppo,75,30.0,alpha,lower,-0.4791392982006073 +karman_re400,ppo,76,30.4,alpha,front,1.145285725593567 +karman_re400,ppo,76,30.4,alpha,upper,-2.4918034076690674 +karman_re400,ppo,76,30.4,alpha,lower,1.7614679336547852 +karman_re400,ppo,77,30.8,alpha,front,0.2761392593383789 +karman_re400,ppo,77,30.8,alpha,upper,-0.529207706451416 +karman_re400,ppo,77,30.8,alpha,lower,4.72241735458374 +karman_re400,ppo,78,31.2,alpha,front,-0.4345681965351105 +karman_re400,ppo,78,31.2,alpha,upper,0.42584228515625 +karman_re400,ppo,78,31.2,alpha,lower,6.365705490112305 +karman_re400,ppo,79,31.6,alpha,front,-1.037143349647522 +karman_re400,ppo,79,31.6,alpha,upper,0.9968738555908203 +karman_re400,ppo,79,31.6,alpha,lower,7.126004219055176 +karman_re400,ppo,80,32.0,alpha,front,-1.5573043823242188 +karman_re400,ppo,80,32.0,alpha,upper,0.8723549842834473 +karman_re400,ppo,80,32.0,alpha,lower,7.061666965484619 +karman_re400,ppo,81,32.4,alpha,front,-1.7658759355545044 +karman_re400,ppo,81,32.4,alpha,upper,0.6659879684448242 +karman_re400,ppo,81,32.4,alpha,lower,6.228294372558594 +karman_re400,ppo,82,32.8,alpha,front,-1.8377857208251953 +karman_re400,ppo,82,32.8,alpha,upper,0.6566753387451172 +karman_re400,ppo,82,32.8,alpha,lower,4.772398948669434 +karman_re400,ppo,83,33.2,alpha,front,-1.7264574766159058 +karman_re400,ppo,83,33.2,alpha,upper,-0.7001354694366455 +karman_re400,ppo,83,33.2,alpha,lower,3.2798731327056885 +karman_re400,ppo,84,33.6,alpha,front,-0.8694216012954712 +karman_re400,ppo,84,33.6,alpha,upper,-3.6806063652038574 +karman_re400,ppo,84,33.6,alpha,lower,1.2870540618896484 +karman_re400,ppo,85,34.0,alpha,front,0.020639590919017792 +karman_re400,ppo,85,34.0,alpha,upper,-5.4343767166137695 +karman_re400,ppo,85,34.0,alpha,lower,0.16297101974487305 +karman_re400,ppo,86,34.4,alpha,front,0.6591155529022217 +karman_re400,ppo,86,34.4,alpha,upper,-6.00868034362793 +karman_re400,ppo,86,34.4,alpha,lower,-0.36646366119384766 +karman_re400,ppo,87,34.8,alpha,front,1.152735710144043 +karman_re400,ppo,87,34.8,alpha,upper,-5.903075218200684 +karman_re400,ppo,87,34.8,alpha,lower,-0.792607307434082 +karman_re400,ppo,88,35.2,alpha,front,1.241119384765625 +karman_re400,ppo,88,35.2,alpha,upper,-5.5146074295043945 +karman_re400,ppo,88,35.2,alpha,lower,-0.9313459992408752 +karman_re400,ppo,89,35.6,alpha,front,1.1759289503097534 +karman_re400,ppo,89,35.6,alpha,upper,-4.895390033721924 +karman_re400,ppo,89,35.6,alpha,lower,-0.6696748733520508 +karman_re400,ppo,90,36.0,alpha,front,1.302158236503601 +karman_re400,ppo,90,36.0,alpha,upper,-3.8382692337036133 +karman_re400,ppo,90,36.0,alpha,lower,0.08482837677001953 +karman_re400,ppo,91,36.4,alpha,front,0.6484752893447876 +karman_re400,ppo,91,36.4,alpha,upper,-1.6122413873672485 +karman_re400,ppo,91,36.4,alpha,lower,2.9578089714050293 +karman_re400,ppo,92,36.8,alpha,front,-0.016537152230739594 +karman_re400,ppo,92,36.8,alpha,upper,-0.11197804659605026 +karman_re400,ppo,92,36.8,alpha,lower,5.3271050453186035 +karman_re400,ppo,93,37.2,alpha,front,-0.5689693689346313 +karman_re400,ppo,93,37.2,alpha,upper,0.4934253692626953 +karman_re400,ppo,93,37.2,alpha,lower,6.565720558166504 +karman_re400,ppo,94,37.6,alpha,front,-1.166558027267456 +karman_re400,ppo,94,37.6,alpha,upper,1.0784244537353516 +karman_re400,ppo,94,37.6,alpha,lower,7.117388725280762 +karman_re400,ppo,95,38.0,alpha,front,-1.7440669536590576 +karman_re400,ppo,95,38.0,alpha,upper,1.1636357307434082 +karman_re400,ppo,95,38.0,alpha,lower,6.7922234535217285 +karman_re400,ppo,96,38.4,alpha,front,-1.8425570726394653 +karman_re400,ppo,96,38.4,alpha,upper,0.9610309600830078 +karman_re400,ppo,96,38.4,alpha,lower,5.41136360168457 +karman_re400,ppo,97,38.8,alpha,front,-1.6572593450546265 +karman_re400,ppo,97,38.8,alpha,upper,0.07117271423339844 +karman_re400,ppo,97,38.8,alpha,lower,4.1812543869018555 +karman_re400,ppo,98,39.2,alpha,front,-1.0060440301895142 +karman_re400,ppo,98,39.2,alpha,upper,-2.55476975440979 +karman_re400,ppo,98,39.2,alpha,lower,2.1163861751556396 +karman_re400,ppo,99,39.6,alpha,front,-0.17119953036308289 +karman_re400,ppo,99,39.6,alpha,upper,-4.785025596618652 +karman_re400,ppo,99,39.6,alpha,lower,0.5942249298095703 +karman_re400,ppo,100,40.0,alpha,front,0.5377872586250305 +karman_re400,ppo,100,40.0,alpha,upper,-5.803140640258789 +karman_re400,ppo,100,40.0,alpha,lower,-0.18301963806152344 +karman_re400,ppo,101,40.4,alpha,front,1.1011817455291748 +karman_re400,ppo,101,40.4,alpha,upper,-6.111189842224121 +karman_re400,ppo,101,40.4,alpha,lower,-0.8839245438575745 +karman_re400,ppo,102,40.8,alpha,front,1.3563801050186157 +karman_re400,ppo,102,40.8,alpha,upper,-5.968730449676514 +karman_re400,ppo,102,40.8,alpha,lower,-1.1960968971252441 +karman_re400,ppo,103,41.2,alpha,front,1.3548376560211182 +karman_re400,ppo,103,41.2,alpha,upper,-5.519233226776123 +karman_re400,ppo,103,41.2,alpha,lower,-1.2082014083862305 +karman_re400,ppo,104,41.6,alpha,front,1.4291621446609497 +karman_re400,ppo,104,41.6,alpha,upper,-4.663410186767578 +karman_re400,ppo,104,41.6,alpha,lower,-0.7256107330322266 +karman_re400,ppo,105,42.0,alpha,front,1.2737982273101807 +karman_re400,ppo,105,42.0,alpha,upper,-2.671252965927124 +karman_re400,ppo,105,42.0,alpha,lower,1.4112496376037598 +karman_re400,ppo,106,42.4,alpha,front,0.5146023631095886 +karman_re400,ppo,106,42.4,alpha,upper,-0.6589748859405518 +karman_re400,ppo,106,42.4,alpha,lower,4.480446815490723 +karman_re400,ppo,107,42.8,alpha,front,-0.293136328458786 +karman_re400,ppo,107,42.8,alpha,upper,0.3327336311340332 +karman_re400,ppo,107,42.8,alpha,lower,6.294238567352295 +karman_re400,ppo,108,43.2,alpha,front,-0.9136529564857483 +karman_re400,ppo,108,43.2,alpha,upper,0.9360705018043518 +karman_re400,ppo,108,43.2,alpha,lower,7.088402271270752 +karman_re400,ppo,109,43.6,alpha,front,-1.4680452346801758 +karman_re400,ppo,109,43.6,alpha,upper,0.9698724746704102 +karman_re400,ppo,109,43.6,alpha,lower,7.081775665283203 +karman_re400,ppo,110,44.0,alpha,front,-1.7144896984100342 +karman_re400,ppo,110,44.0,alpha,upper,0.6763668060302734 +karman_re400,ppo,110,44.0,alpha,lower,6.309425354003906 +karman_re400,ppo,111,44.4,alpha,front,-1.575506567955017 +karman_re400,ppo,111,44.4,alpha,upper,0.4595918655395508 +karman_re400,ppo,111,44.4,alpha,lower,4.832918167114258 +karman_re400,ppo,112,44.8,alpha,front,-1.437228798866272 +karman_re400,ppo,112,44.8,alpha,upper,-0.459654301404953 +karman_re400,ppo,112,44.8,alpha,lower,3.478233575820923 +karman_re400,ppo,113,45.2,alpha,front,-0.9914641380310059 +karman_re400,ppo,113,45.2,alpha,upper,-3.082848072052002 +karman_re400,ppo,113,45.2,alpha,lower,1.5358188152313232 +karman_re400,ppo,114,45.6,alpha,front,-0.24513253569602966 +karman_re400,ppo,114,45.6,alpha,upper,-5.103748321533203 +karman_re400,ppo,114,45.6,alpha,lower,0.33467888832092285 +karman_re400,ppo,115,46.0,alpha,front,0.4965803623199463 +karman_re400,ppo,115,46.0,alpha,upper,-6.024824142456055 +karman_re400,ppo,115,46.0,alpha,lower,-0.3345308303833008 +karman_re400,ppo,116,46.4,alpha,front,1.1018908023834229 +karman_re400,ppo,116,46.4,alpha,upper,-6.1909332275390625 +karman_re400,ppo,116,46.4,alpha,lower,-0.933619499206543 +karman_re400,ppo,117,46.8,alpha,front,1.323891043663025 +karman_re400,ppo,117,46.8,alpha,upper,-5.819750785827637 +karman_re400,ppo,117,46.8,alpha,lower,-1.131960391998291 +karman_re400,ppo,118,47.2,alpha,front,1.2815521955490112 +karman_re400,ppo,118,47.2,alpha,upper,-5.052876949310303 +karman_re400,ppo,118,47.2,alpha,lower,-0.7311697006225586 +karman_re400,ppo,119,47.6,alpha,front,1.4210094213485718 +karman_re400,ppo,119,47.6,alpha,upper,-3.901859760284424 +karman_re400,ppo,119,47.6,alpha,lower,0.17602086067199707 +karman_re400,ppo,120,48.0,alpha,front,0.930380642414093 +karman_re400,ppo,120,48.0,alpha,upper,-1.558969259262085 +karman_re400,ppo,120,48.0,alpha,lower,3.036072254180908 +karman_re400,ppo,121,48.4,alpha,front,0.028983529657125473 +karman_re400,ppo,121,48.4,alpha,upper,-0.07406282424926758 +karman_re400,ppo,121,48.4,alpha,lower,5.565718650817871 +karman_re400,ppo,122,48.8,alpha,front,-0.5756622552871704 +karman_re400,ppo,122,48.8,alpha,upper,0.49405908584594727 +karman_re400,ppo,122,48.8,alpha,lower,6.686887264251709 +karman_re400,ppo,123,49.2,alpha,front,-1.2221518754959106 +karman_re400,ppo,123,49.2,alpha,upper,1.0007572174072266 +karman_re400,ppo,123,49.2,alpha,lower,7.207309722900391 +karman_re400,ppo,124,49.6,alpha,front,-1.6731053590774536 +karman_re400,ppo,124,49.6,alpha,upper,0.8743739128112793 +karman_re400,ppo,124,49.6,alpha,lower,6.846085548400879 +karman_re400,ppo,125,50.0,alpha,front,-1.7343580722808838 +karman_re400,ppo,125,50.0,alpha,upper,0.7118067741394043 +karman_re400,ppo,125,50.0,alpha,lower,5.507455825805664 +karman_re400,ppo,126,50.4,alpha,front,-1.687899112701416 +karman_re400,ppo,126,50.4,alpha,upper,0.46120786666870117 +karman_re400,ppo,126,50.4,alpha,lower,4.362327575683594 +karman_re400,ppo,127,50.8,alpha,front,-1.184587001800537 +karman_re400,ppo,127,50.8,alpha,upper,-1.923607349395752 +karman_re400,ppo,127,50.8,alpha,lower,2.358553886413574 +karman_re400,ppo,128,51.2,alpha,front,-0.3442099392414093 +karman_re400,ppo,128,51.2,alpha,upper,-4.700272560119629 +karman_re400,ppo,128,51.2,alpha,lower,0.7376606464385986 +karman_re400,ppo,129,51.6,alpha,front,0.4129757285118103 +karman_re400,ppo,129,51.6,alpha,upper,-5.944427490234375 +karman_re400,ppo,129,51.6,alpha,lower,-0.06160354241728783 +karman_re400,ppo,130,52.0,alpha,front,0.9910364747047424 +karman_re400,ppo,130,52.0,alpha,upper,-6.226015090942383 +karman_re400,ppo,130,52.0,alpha,lower,-0.6862797737121582 +karman_re400,ppo,131,52.4,alpha,front,1.3565856218338013 +karman_re400,ppo,131,52.4,alpha,upper,-5.9724016189575195 +karman_re400,ppo,131,52.4,alpha,lower,-1.1237678527832031 +karman_re400,ppo,132,52.8,alpha,front,1.3970674276351929 +karman_re400,ppo,132,52.8,alpha,upper,-5.4946393966674805 +karman_re400,ppo,132,52.8,alpha,lower,-1.2336230278015137 +karman_re400,ppo,133,53.2,alpha,front,1.4470620155334473 +karman_re400,ppo,133,53.2,alpha,upper,-4.796726226806641 +karman_re400,ppo,133,53.2,alpha,lower,-0.8459320664405823 +karman_re400,ppo,134,53.6,alpha,front,1.2556699514389038 +karman_re400,ppo,134,53.6,alpha,upper,-2.980093002319336 +karman_re400,ppo,134,53.6,alpha,lower,1.2636537551879883 +karman_re400,ppo,135,54.0,alpha,front,0.5912666916847229 +karman_re400,ppo,135,54.0,alpha,upper,-0.9527804255485535 +karman_re400,ppo,135,54.0,alpha,lower,4.22676944732666 +karman_re400,ppo,136,54.4,alpha,front,-0.24187202751636505 +karman_re400,ppo,136,54.4,alpha,upper,0.16268634796142578 +karman_re400,ppo,136,54.4,alpha,lower,6.204689979553223 +karman_re400,ppo,137,54.8,alpha,front,-0.9054875373840332 +karman_re400,ppo,137,54.8,alpha,upper,0.7337236404418945 +karman_re400,ppo,137,54.8,alpha,lower,7.116855621337891 +karman_re400,ppo,138,55.2,alpha,front,-1.4864755868911743 +karman_re400,ppo,138,55.2,alpha,upper,0.9677858352661133 +karman_re400,ppo,138,55.2,alpha,lower,7.163269996643066 +karman_re400,ppo,139,55.6,alpha,front,-1.7657060623168945 +karman_re400,ppo,139,55.6,alpha,upper,0.8689241409301758 +karman_re400,ppo,139,55.6,alpha,lower,6.283315181732178 +karman_re400,ppo,140,56.0,alpha,front,-1.761622428894043 +karman_re400,ppo,140,56.0,alpha,upper,0.615234375 +karman_re400,ppo,140,56.0,alpha,lower,4.819914817810059 +karman_re400,ppo,141,56.4,alpha,front,-1.5904144048690796 +karman_re400,ppo,141,56.4,alpha,upper,-0.5395760536193848 +karman_re400,ppo,141,56.4,alpha,lower,3.464695453643799 +karman_re400,ppo,142,56.8,alpha,front,-0.9048214554786682 +karman_re400,ppo,142,56.8,alpha,upper,-3.3552918434143066 +karman_re400,ppo,142,56.8,alpha,lower,1.4688935279846191 +karman_re400,ppo,143,57.2,alpha,front,-0.040229640901088715 +karman_re400,ppo,143,57.2,alpha,upper,-5.34986686706543 +karman_re400,ppo,143,57.2,alpha,lower,0.2359025478363037 +karman_re400,ppo,144,57.6,alpha,front,0.6610097885131836 +karman_re400,ppo,144,57.6,alpha,upper,-6.107329845428467 +karman_re400,ppo,144,57.6,alpha,lower,-0.37775373458862305 +karman_re400,ppo,145,58.0,alpha,front,1.2061551809310913 +karman_re400,ppo,145,58.0,alpha,upper,-6.204589366912842 +karman_re400,ppo,145,58.0,alpha,lower,-0.9882239699363708 +karman_re400,ppo,146,58.4,alpha,front,1.3717739582061768 +karman_re400,ppo,146,58.4,alpha,upper,-5.817384719848633 +karman_re400,ppo,146,58.4,alpha,lower,-1.2378344535827637 +karman_re400,ppo,147,58.8,alpha,front,1.367691159248352 +karman_re400,ppo,147,58.8,alpha,upper,-5.056492805480957 +karman_re400,ppo,147,58.8,alpha,lower,-0.8880157470703125 +karman_re400,ppo,148,59.2,alpha,front,1.530912160873413 +karman_re400,ppo,148,59.2,alpha,upper,-3.895921230316162 +karman_re400,ppo,148,59.2,alpha,lower,0.09926128387451172 +karman_re400,ppo,149,59.6,alpha,front,0.861208975315094 +karman_re400,ppo,149,59.6,alpha,upper,-1.534376621246338 +karman_re400,ppo,149,59.6,alpha,lower,3.204362154006958 +karman_re400,ppo,150,60.0,alpha,front,0.0033791661262512207 +karman_re400,ppo,150,60.0,alpha,upper,0.03181934356689453 +karman_re400,ppo,150,60.0,alpha,lower,5.720905780792236 +karman_re400,ppo,151,60.4,alpha,front,-0.6531449556350708 +karman_re400,ppo,151,60.4,alpha,upper,0.6033287048339844 +karman_re400,ppo,151,60.4,alpha,lower,6.840093612670898 +karman_re400,ppo,152,60.8,alpha,front,-1.279382586479187 +karman_re400,ppo,152,60.8,alpha,upper,1.0682954788208008 +karman_re400,ppo,152,60.8,alpha,lower,7.281451225280762 +karman_re400,ppo,153,61.2,alpha,front,-1.6860872507095337 +karman_re400,ppo,153,61.2,alpha,upper,0.8313170075416565 +karman_re400,ppo,153,61.2,alpha,lower,6.869892120361328 +karman_re400,ppo,154,61.6,alpha,front,-1.6471291780471802 +karman_re400,ppo,154,61.6,alpha,upper,0.590703010559082 +karman_re400,ppo,154,61.6,alpha,lower,5.546701431274414 +karman_re400,ppo,155,62.0,alpha,front,-1.5047544240951538 +karman_re400,ppo,155,62.0,alpha,upper,0.5597772598266602 +karman_re400,ppo,155,62.0,alpha,lower,4.360933303833008 +karman_re400,ppo,156,62.4,alpha,front,-1.08560311794281 +karman_re400,ppo,156,62.4,alpha,upper,-1.8287373781204224 +karman_re400,ppo,156,62.4,alpha,lower,2.338024616241455 +karman_re400,ppo,157,62.8,alpha,front,-0.35207149386405945 +karman_re400,ppo,157,62.8,alpha,upper,-4.632295608520508 +karman_re400,ppo,157,62.8,alpha,lower,0.7254886627197266 +karman_re400,ppo,158,63.2,alpha,front,0.39161771535873413 +karman_re400,ppo,158,63.2,alpha,upper,-5.9980926513671875 +karman_re400,ppo,158,63.2,alpha,lower,-0.09025955200195312 +karman_re400,ppo,159,63.6,alpha,front,0.9596328735351562 +karman_re400,ppo,159,63.6,alpha,upper,-6.261660099029541 +karman_re400,ppo,159,63.6,alpha,lower,-0.67779541015625 +karman_re400,ppo,160,64.0,alpha,front,1.328938603401184 +karman_re400,ppo,160,64.0,alpha,upper,-5.9539337158203125 +karman_re400,ppo,160,64.0,alpha,lower,-1.1345782279968262 +karman_re400,ppo,161,64.4,alpha,front,1.329626202583313 +karman_re400,ppo,161,64.4,alpha,upper,-5.442336082458496 +karman_re400,ppo,161,64.4,alpha,lower,-1.2020392417907715 +karman_re400,ppo,162,64.8,alpha,front,1.4214791059494019 +karman_re400,ppo,162,64.8,alpha,upper,-4.749961853027344 +karman_re400,ppo,162,64.8,alpha,lower,-0.7792959213256836 +karman_re400,ppo,163,65.2,alpha,front,1.0587382316589355 +karman_re400,ppo,163,65.2,alpha,upper,-2.767601490020752 +karman_re400,ppo,163,65.2,alpha,lower,1.6366018056869507 +karman_re400,ppo,164,65.6,alpha,front,0.3149734139442444 +karman_re400,ppo,164,65.6,alpha,upper,-0.7974259853363037 +karman_re400,ppo,164,65.6,alpha,lower,4.535414695739746 +karman_re400,ppo,165,66.0,alpha,front,-0.3937113583087921 +karman_re400,ppo,165,66.0,alpha,upper,0.20125055313110352 +karman_re400,ppo,165,66.0,alpha,lower,6.278038024902344 +karman_re400,ppo,166,66.4,alpha,front,-0.9728901982307434 +karman_re400,ppo,166,66.4,alpha,upper,0.7862233519554138 +karman_re400,ppo,166,66.4,alpha,lower,7.071483135223389 +karman_re400,ppo,167,66.8,alpha,front,-1.5237764120101929 +karman_re400,ppo,167,66.8,alpha,upper,0.9857974052429199 +karman_re400,ppo,167,66.8,alpha,lower,7.07699728012085 +karman_re400,ppo,168,67.2,alpha,front,-1.771217942237854 +karman_re400,ppo,168,67.2,alpha,upper,1.095573902130127 +karman_re400,ppo,168,67.2,alpha,lower,6.12998104095459 +karman_re400,ppo,169,67.6,alpha,front,-1.9029957056045532 +karman_re400,ppo,169,67.6,alpha,upper,0.8514671921730042 +karman_re400,ppo,169,67.6,alpha,lower,4.846771717071533 +karman_re400,ppo,170,68.0,alpha,front,-1.7367842197418213 +karman_re400,ppo,170,68.0,alpha,upper,-0.9655233025550842 +karman_re400,ppo,170,68.0,alpha,lower,3.296995162963867 +karman_re400,ppo,171,68.4,alpha,front,-0.8208981156349182 +karman_re400,ppo,171,68.4,alpha,upper,-3.8012490272521973 +karman_re400,ppo,171,68.4,alpha,lower,1.3510513305664062 +karman_re400,ppo,172,68.8,alpha,front,0.11044815182685852 +karman_re400,ppo,172,68.8,alpha,upper,-5.52547550201416 +karman_re400,ppo,172,68.8,alpha,lower,0.15324091911315918 +karman_re400,ppo,173,69.2,alpha,front,0.7825253009796143 +karman_re400,ppo,173,69.2,alpha,upper,-6.078378677368164 +karman_re400,ppo,173,69.2,alpha,lower,-0.4274168014526367 +karman_re400,ppo,174,69.6,alpha,front,1.2748684883117676 +karman_re400,ppo,174,69.6,alpha,upper,-5.993819713592529 +karman_re400,ppo,174,69.6,alpha,lower,-0.8881149291992188 +karman_re400,ppo,175,70.0,alpha,front,1.3868969678878784 +karman_re400,ppo,175,70.0,alpha,upper,-5.639919281005859 +karman_re400,ppo,175,70.0,alpha,lower,-1.1354403495788574 +karman_re400,ppo,176,70.4,alpha,front,1.4030301570892334 +karman_re400,ppo,176,70.4,alpha,upper,-4.967533111572266 +karman_re400,ppo,176,70.4,alpha,lower,-0.9498938918113708 +karman_re400,ppo,177,70.8,alpha,front,1.5262346267700195 +karman_re400,ppo,177,70.8,alpha,upper,-3.7744181156158447 +karman_re400,ppo,177,70.8,alpha,lower,-0.020401954650878906 +karman_re400,ppo,178,71.2,alpha,front,0.9305480122566223 +karman_re400,ppo,178,71.2,alpha,upper,-1.5261685848236084 +karman_re400,ppo,178,71.2,alpha,lower,3.0154619216918945 +karman_re400,ppo,179,71.6,alpha,front,0.1278526335954666 +karman_re400,ppo,179,71.6,alpha,upper,-0.03553199768066406 +karman_re400,ppo,179,71.6,alpha,lower,5.529978275299072 +karman_re400,ppo,180,72.0,alpha,front,-0.6360697150230408 +karman_re400,ppo,180,72.0,alpha,upper,0.5863399505615234 +karman_re400,ppo,180,72.0,alpha,lower,6.8212761878967285 +karman_re400,ppo,181,72.4,alpha,front,-1.247590184211731 +karman_re400,ppo,181,72.4,alpha,upper,1.1604371070861816 +karman_re400,ppo,181,72.4,alpha,lower,7.292390823364258 +karman_re400,ppo,182,72.8,alpha,front,-1.6739232540130615 +karman_re400,ppo,182,72.8,alpha,upper,0.8633394241333008 +karman_re400,ppo,182,72.8,alpha,lower,6.892729759216309 +karman_re400,ppo,183,73.2,alpha,front,-1.670619010925293 +karman_re400,ppo,183,73.2,alpha,upper,0.4979862868785858 +karman_re400,ppo,183,73.2,alpha,lower,5.557626247406006 +karman_re400,ppo,184,73.6,alpha,front,-1.432365894317627 +karman_re400,ppo,184,73.6,alpha,upper,0.34180641174316406 +karman_re400,ppo,184,73.6,alpha,lower,4.260510444641113 +karman_re400,ppo,185,74.0,alpha,front,-1.007154941558838 +karman_re400,ppo,185,74.0,alpha,upper,-1.906830906867981 +karman_re400,ppo,185,74.0,alpha,lower,2.2608084678649902 +karman_re400,ppo,186,74.4,alpha,front,-0.29919755458831787 +karman_re400,ppo,186,74.4,alpha,upper,-4.573884963989258 +karman_re400,ppo,186,74.4,alpha,lower,0.664379358291626 +karman_re400,ppo,187,74.8,alpha,front,0.4204683005809784 +karman_re400,ppo,187,74.8,alpha,upper,-5.928781986236572 +karman_re400,ppo,187,74.8,alpha,lower,-0.18173789978027344 +karman_re400,ppo,188,75.2,alpha,front,0.9790377616882324 +karman_re400,ppo,188,75.2,alpha,upper,-6.27052640914917 +karman_re400,ppo,188,75.2,alpha,lower,-0.8156743049621582 +karman_re400,ppo,189,75.6,alpha,front,1.320953130722046 +karman_re400,ppo,189,75.6,alpha,upper,-6.026289939880371 +karman_re400,ppo,189,75.6,alpha,lower,-1.21458101272583 +karman_re400,ppo,190,76.0,alpha,front,1.3257560729980469 +karman_re400,ppo,190,76.0,alpha,upper,-5.445034980773926 +karman_re400,ppo,190,76.0,alpha,lower,-1.1831121444702148 +karman_re400,ppo,191,76.4,alpha,front,1.4051936864852905 +karman_re400,ppo,191,76.4,alpha,upper,-4.6465349197387695 +karman_re400,ppo,191,76.4,alpha,lower,-0.6063218116760254 +karman_re400,ppo,192,76.8,alpha,front,1.201551079750061 +karman_re400,ppo,192,76.8,alpha,upper,-2.541323184967041 +karman_re400,ppo,192,76.8,alpha,lower,1.7793875932693481 +karman_re400,ppo,193,77.2,alpha,front,0.40399131178855896 +karman_re400,ppo,193,77.2,alpha,upper,-0.5986499786376953 +karman_re400,ppo,193,77.2,alpha,lower,4.674962997436523 +karman_re400,ppo,194,77.6,alpha,front,-0.35196369886398315 +karman_re400,ppo,194,77.6,alpha,upper,0.29966259002685547 +karman_re400,ppo,194,77.6,alpha,lower,6.335939407348633 +karman_re400,ppo,195,78.0,alpha,front,-0.9336960911750793 +karman_re400,ppo,195,78.0,alpha,upper,0.8459587097167969 +karman_re400,ppo,195,78.0,alpha,lower,7.073475360870361 +karman_re400,ppo,196,78.4,alpha,front,-1.4617228507995605 +karman_re400,ppo,196,78.4,alpha,upper,0.8958120346069336 +karman_re400,ppo,196,78.4,alpha,lower,7.036468029022217 +karman_re400,ppo,197,78.8,alpha,front,-1.7328482866287231 +karman_re400,ppo,197,78.8,alpha,upper,0.8281460404396057 +karman_re400,ppo,197,78.8,alpha,lower,6.190195083618164 +karman_re400,ppo,198,79.2,alpha,front,-1.8303329944610596 +karman_re400,ppo,198,79.2,alpha,upper,0.6509990692138672 +karman_re400,ppo,198,79.2,alpha,lower,4.883406639099121 +karman_re400,ppo,199,79.6,alpha,front,-1.634837031364441 +karman_re400,ppo,199,79.6,alpha,upper,-0.7512271404266357 +karman_re400,ppo,199,79.6,alpha,lower,3.383319616317749 +karman_re400,ppo,0,0.0,omega,front,0.02193005569279194 +karman_re400,ppo,0,0.0,omega,upper,-0.07668913155794144 +karman_re400,ppo,0,0.0,omega,lower,-0.03683124855160713 +karman_re400,ppo,1,0.4,omega,front,0.024520568549633026 +karman_re400,ppo,1,0.4,omega,upper,-0.07371418923139572 +karman_re400,ppo,1,0.4,omega,lower,-0.03820882737636566 +karman_re400,ppo,2,0.8,omega,front,0.01830204389989376 +karman_re400,ppo,2,0.8,omega,upper,-0.04680787771940231 +karman_re400,ppo,2,0.8,omega,lower,-0.023955712094902992 +karman_re400,ppo,3,1.2,omega,front,0.01595936343073845 +karman_re400,ppo,3,1.2,omega,upper,-0.04448609799146652 +karman_re400,ppo,3,1.2,omega,lower,-0.013726815581321716 +karman_re400,ppo,4,1.6,omega,front,0.006880942266434431 +karman_re400,ppo,4,1.6,omega,upper,-0.012617790140211582 +karman_re400,ppo,4,1.6,omega,lower,0.03858457878232002 +karman_re400,ppo,5,2.0,omega,front,0.001242689904756844 +karman_re400,ppo,5,2.0,omega,upper,0.00413481704890728 +karman_re400,ppo,5,2.0,omega,lower,0.06294703483581543 +karman_re400,ppo,6,2.4,omega,front,-0.008247596211731434 +karman_re400,ppo,6,2.4,omega,upper,0.01018398255109787 +karman_re400,ppo,6,2.4,omega,lower,0.07596898078918457 +karman_re400,ppo,7,2.8,omega,front,-0.014559103175997734 +karman_re400,ppo,7,2.8,omega,upper,0.010979074984788895 +karman_re400,ppo,7,2.8,omega,lower,0.07940784096717834 +karman_re400,ppo,8,3.2,omega,front,-0.013214878737926483 +karman_re400,ppo,8,3.2,omega,upper,-0.006300611421465874 +karman_re400,ppo,8,3.2,omega,lower,0.06560962647199631 +karman_re400,ppo,9,3.6,omega,front,-0.007634793408215046 +karman_re400,ppo,9,3.6,omega,upper,-0.00908266007900238 +karman_re400,ppo,9,3.6,omega,lower,0.04717954993247986 +karman_re400,ppo,10,4.0,omega,front,-0.00518801249563694 +karman_re400,ppo,10,4.0,omega,upper,-0.013171796686947346 +karman_re400,ppo,10,4.0,omega,lower,0.027311839163303375 +karman_re400,ppo,11,4.4,omega,front,0.0002390999288763851 +karman_re400,ppo,11,4.4,omega,upper,-0.03749136999249458 +karman_re400,ppo,11,4.4,omega,lower,0.010440334677696228 +karman_re400,ppo,12,4.8,omega,front,0.006429749075323343 +karman_re400,ppo,12,4.8,omega,upper,-0.058095578104257584 +karman_re400,ppo,12,4.8,omega,lower,-0.002161312149837613 +karman_re400,ppo,13,5.2,omega,front,0.011163024231791496 +karman_re400,ppo,13,5.2,omega,upper,-0.0683269128203392 +karman_re400,ppo,13,5.2,omega,lower,-0.010964879766106606 +karman_re400,ppo,14,5.6,omega,front,0.015021453611552715 +karman_re400,ppo,14,5.6,omega,upper,-0.07164400070905685 +karman_re400,ppo,14,5.6,omega,lower,-0.017713675275444984 +karman_re400,ppo,15,6.0,omega,front,0.014655094593763351 +karman_re400,ppo,15,6.0,omega,upper,-0.06706921756267548 +karman_re400,ppo,15,6.0,omega,lower,-0.01673601195216179 +karman_re400,ppo,16,6.4,omega,front,0.01513108890503645 +karman_re400,ppo,16,6.4,omega,upper,-0.061790406703948975 +karman_re400,ppo,16,6.4,omega,lower,-0.016189899295568466 +karman_re400,ppo,17,6.8,omega,front,0.014597814530134201 +karman_re400,ppo,17,6.8,omega,upper,-0.041238658130168915 +karman_re400,ppo,17,6.8,omega,lower,0.002253046026453376 +karman_re400,ppo,18,7.2,omega,front,0.006917064543813467 +karman_re400,ppo,18,7.2,omega,upper,-0.02053460106253624 +karman_re400,ppo,18,7.2,omega,lower,0.03364860638976097 +karman_re400,ppo,19,7.6,omega,front,-0.0012056054547429085 +karman_re400,ppo,19,7.6,omega,upper,-0.011638360098004341 +karman_re400,ppo,19,7.6,omega,lower,0.05340305343270302 +karman_re400,ppo,20,8.0,omega,front,-0.005772757343947887 +karman_re400,ppo,20,8.0,omega,upper,-0.010278105735778809 +karman_re400,ppo,20,8.0,omega,lower,0.06109150871634483 +karman_re400,ppo,21,8.4,omega,front,-0.011283310130238533 +karman_re400,ppo,21,8.4,omega,upper,0.004900178872048855 +karman_re400,ppo,21,8.4,omega,lower,0.07106047868728638 +karman_re400,ppo,22,8.8,omega,front,-0.01583385467529297 +karman_re400,ppo,22,8.8,omega,upper,0.013007611967623234 +karman_re400,ppo,22,8.8,omega,lower,0.07357079535722733 +karman_re400,ppo,23,9.2,omega,front,-0.018362922593951225 +karman_re400,ppo,23,9.2,omega,upper,0.020183010026812553 +karman_re400,ppo,23,9.2,omega,lower,0.06668835133314133 +karman_re400,ppo,24,9.6,omega,front,-0.02037409506738186 +karman_re400,ppo,24,9.6,omega,upper,0.01927020028233528 +karman_re400,ppo,24,9.6,omega,lower,0.05486135929822922 +karman_re400,ppo,25,10.0,omega,front,-0.018508952111005783 +karman_re400,ppo,25,10.0,omega,upper,-0.00489680515602231 +karman_re400,ppo,25,10.0,omega,lower,0.038538046181201935 +karman_re400,ppo,26,10.4,omega,front,-0.009235602803528309 +karman_re400,ppo,26,10.4,omega,upper,-0.0437413789331913 +karman_re400,ppo,26,10.4,omega,lower,0.01598682440817356 +karman_re400,ppo,27,10.8,omega,front,0.003083630930632353 +karman_re400,ppo,27,10.8,omega,upper,-0.06525234133005142 +karman_re400,ppo,27,10.8,omega,lower,0.00159080745652318 +karman_re400,ppo,28,11.2,omega,front,0.010062376968562603 +karman_re400,ppo,28,11.2,omega,upper,-0.06581709533929825 +karman_re400,ppo,28,11.2,omega,lower,-0.0019822977483272552 +karman_re400,ppo,29,11.6,omega,front,0.015623940154910088 +karman_re400,ppo,29,11.6,omega,upper,-0.06141887605190277 +karman_re400,ppo,29,11.6,omega,lower,-0.010491685941815376 +karman_re400,ppo,30,12.0,omega,front,0.015033855102956295 +karman_re400,ppo,30,12.0,omega,upper,-0.05646021291613579 +karman_re400,ppo,30,12.0,omega,lower,-0.0150906415656209 +karman_re400,ppo,31,12.4,omega,front,0.014975246973335743 +karman_re400,ppo,31,12.4,omega,upper,-0.05117255076766014 +karman_re400,ppo,31,12.4,omega,lower,-0.013706631027162075 +karman_re400,ppo,32,12.8,omega,front,0.013379127718508244 +karman_re400,ppo,32,12.8,omega,upper,-0.03316984698176384 +karman_re400,ppo,32,12.8,omega,lower,0.00982291717082262 +karman_re400,ppo,33,13.2,omega,front,0.005324419122189283 +karman_re400,ppo,33,13.2,omega,upper,-0.012707285583019257 +karman_re400,ppo,33,13.2,omega,lower,0.040744848549366 +karman_re400,ppo,34,13.6,omega,front,-0.003528852015733719 +karman_re400,ppo,34,13.6,omega,upper,0.002774629509076476 +karman_re400,ppo,34,13.6,omega,lower,0.06250301003456116 +karman_re400,ppo,35,14.0,omega,front,-0.010953507386147976 +karman_re400,ppo,35,14.0,omega,upper,0.00900066364556551 +karman_re400,ppo,35,14.0,omega,lower,0.07294172793626785 +karman_re400,ppo,36,14.4,omega,front,-0.017638733610510826 +karman_re400,ppo,36,14.4,omega,upper,0.010844878852367401 +karman_re400,ppo,36,14.4,omega,lower,0.07453790307044983 +karman_re400,ppo,37,14.8,omega,front,-0.020877515897154808 +karman_re400,ppo,37,14.8,omega,upper,0.008601722307503223 +karman_re400,ppo,37,14.8,omega,lower,0.06771042197942734 +karman_re400,ppo,38,15.2,omega,front,-0.019509604200720787 +karman_re400,ppo,38,15.2,omega,upper,0.0043212841264903545 +karman_re400,ppo,38,15.2,omega,lower,0.053079403936862946 +karman_re400,ppo,39,15.6,omega,front,-0.015147015452384949 +karman_re400,ppo,39,15.6,omega,upper,-0.004734489601105452 +karman_re400,ppo,39,15.6,omega,lower,0.0376843623816967 +karman_re400,ppo,40,16.0,omega,front,-0.00724469218403101 +karman_re400,ppo,40,16.0,omega,upper,-0.02816588804125786 +karman_re400,ppo,40,16.0,omega,lower,0.016329826787114143 +karman_re400,ppo,41,16.4,omega,front,0.0016961590154096484 +karman_re400,ppo,41,16.4,omega,upper,-0.04731655865907669 +karman_re400,ppo,41,16.4,omega,lower,0.0033957362174987793 +karman_re400,ppo,42,16.8,omega,front,0.00905311293900013 +karman_re400,ppo,42,16.8,omega,upper,-0.0572514608502388 +karman_re400,ppo,42,16.8,omega,lower,-0.0030934810638427734 +karman_re400,ppo,43,17.2,omega,front,0.014061207883059978 +karman_re400,ppo,43,17.2,omega,upper,-0.06041696295142174 +karman_re400,ppo,43,17.2,omega,lower,-0.008243284188210964 +karman_re400,ppo,44,17.6,omega,front,0.01723812147974968 +karman_re400,ppo,44,17.6,omega,upper,-0.05983953922986984 +karman_re400,ppo,44,17.6,omega,lower,-0.013163656927645206 +karman_re400,ppo,45,18.0,omega,front,0.01768561080098152 +karman_re400,ppo,45,18.0,omega,upper,-0.05514436587691307 +karman_re400,ppo,45,18.0,omega,lower,-0.014428663067519665 +karman_re400,ppo,46,18.4,omega,front,0.020609073340892792 +karman_re400,ppo,46,18.4,omega,upper,-0.04649646207690239 +karman_re400,ppo,46,18.4,omega,lower,-0.011832604184746742 +karman_re400,ppo,47,18.8,omega,front,0.017059117555618286 +karman_re400,ppo,47,18.8,omega,upper,-0.024003518745303154 +karman_re400,ppo,47,18.8,omega,lower,0.015454141423106194 +karman_re400,ppo,48,19.2,omega,front,0.007016224320977926 +karman_re400,ppo,48,19.2,omega,upper,-0.007418799214065075 +karman_re400,ppo,48,19.2,omega,lower,0.046341847628355026 +karman_re400,ppo,49,19.6,omega,front,-0.0016787850763648748 +karman_re400,ppo,49,19.6,omega,upper,0.0009294223855249584 +karman_re400,ppo,49,19.6,omega,lower,0.06341413408517838 +karman_re400,ppo,50,20.0,omega,front,-0.00791792944073677 +karman_re400,ppo,50,20.0,omega,upper,0.0061783455312252045 +karman_re400,ppo,50,20.0,omega,lower,0.07028162479400635 +karman_re400,ppo,51,20.4,omega,front,-0.013454396277666092 +karman_re400,ppo,51,20.4,omega,upper,0.008639478124678135 +karman_re400,ppo,51,20.4,omega,lower,0.06953232735395432 +karman_re400,ppo,52,20.8,omega,front,-0.015339354053139687 +karman_re400,ppo,52,20.8,omega,upper,0.004088134504854679 +karman_re400,ppo,52,20.8,omega,lower,0.06073112413287163 +karman_re400,ppo,53,21.2,omega,front,-0.013077931478619576 +karman_re400,ppo,53,21.2,omega,upper,-0.0034180807415395975 +karman_re400,ppo,53,21.2,omega,lower,0.0444154292345047 +karman_re400,ppo,54,21.6,omega,front,-0.010075995698571205 +karman_re400,ppo,54,21.6,omega,upper,-0.012349683791399002 +karman_re400,ppo,54,21.6,omega,lower,0.03037768229842186 +karman_re400,ppo,55,22.0,omega,front,-0.0034000517334789038 +karman_re400,ppo,55,22.0,omega,upper,-0.03343649208545685 +karman_re400,ppo,55,22.0,omega,lower,0.011730113066732883 +karman_re400,ppo,56,22.4,omega,front,0.003484631422907114 +karman_re400,ppo,56,22.4,omega,upper,-0.051279738545417786 +karman_re400,ppo,56,22.4,omega,lower,-0.0003527688968461007 +karman_re400,ppo,57,22.8,omega,front,0.009204627946019173 +karman_re400,ppo,57,22.8,omega,upper,-0.059937238693237305 +karman_re400,ppo,57,22.8,omega,lower,-0.00718327984213829 +karman_re400,ppo,58,23.2,omega,front,0.013958906754851341 +karman_re400,ppo,58,23.2,omega,upper,-0.06226719170808792 +karman_re400,ppo,58,23.2,omega,lower,-0.01338272076100111 +karman_re400,ppo,59,23.6,omega,front,0.016018345952033997 +karman_re400,ppo,59,23.6,omega,upper,-0.058504149317741394 +karman_re400,ppo,59,23.6,omega,lower,-0.016028914600610733 +karman_re400,ppo,60,24.0,omega,front,0.01647990569472313 +karman_re400,ppo,60,24.0,omega,upper,-0.05159103125333786 +karman_re400,ppo,60,24.0,omega,lower,-0.013835864141583443 +karman_re400,ppo,61,24.4,omega,front,0.015228213742375374 +karman_re400,ppo,61,24.4,omega,upper,-0.03912774473428726 +karman_re400,ppo,61,24.4,omega,lower,0.0010003566276282072 +karman_re400,ppo,62,24.8,omega,front,0.006925185676664114 +karman_re400,ppo,62,24.8,omega,upper,-0.017176542431116104 +karman_re400,ppo,62,24.8,omega,lower,0.03368402272462845 +karman_re400,ppo,63,25.2,omega,front,-0.0017426052363589406 +karman_re400,ppo,63,25.2,omega,upper,-0.0024389505852013826 +karman_re400,ppo,63,25.2,omega,lower,0.0573488213121891 +karman_re400,ppo,64,25.6,omega,front,-0.008550862781703472 +karman_re400,ppo,64,25.6,omega,upper,0.0037587021943181753 +karman_re400,ppo,64,25.6,omega,lower,0.06806816905736923 +karman_re400,ppo,65,26.0,omega,front,-0.014108344912528992 +karman_re400,ppo,65,26.0,omega,upper,0.010422801598906517 +karman_re400,ppo,65,26.0,omega,lower,0.07200657576322556 +karman_re400,ppo,66,26.4,omega,front,-0.017449835315346718 +karman_re400,ppo,66,26.4,omega,upper,0.008993272669613361 +karman_re400,ppo,66,26.4,omega,lower,0.06709697097539902 +karman_re400,ppo,67,26.8,omega,front,-0.017485179007053375 +karman_re400,ppo,67,26.8,omega,upper,0.008491192013025284 +karman_re400,ppo,67,26.8,omega,lower,0.05373626574873924 +karman_re400,ppo,68,27.2,omega,front,-0.015990417450666428 +karman_re400,ppo,68,27.2,omega,upper,0.004122395534068346 +karman_re400,ppo,68,27.2,omega,lower,0.04272272810339928 +karman_re400,ppo,69,27.6,omega,front,-0.011158195324242115 +karman_re400,ppo,69,27.6,omega,upper,-0.02138645201921463 +karman_re400,ppo,69,27.6,omega,lower,0.022586101666092873 +karman_re400,ppo,70,28.0,omega,front,-0.003611841471865773 +karman_re400,ppo,70,28.0,omega,upper,-0.04535285755991936 +karman_re400,ppo,70,28.0,omega,lower,0.006945342756807804 +karman_re400,ppo,71,28.4,omega,front,0.00391338299959898 +karman_re400,ppo,71,28.4,omega,upper,-0.05798250064253807 +karman_re400,ppo,71,28.4,omega,lower,-0.0022860001772642136 +karman_re400,ppo,72,28.8,omega,front,0.010092662647366524 +karman_re400,ppo,72,28.8,omega,upper,-0.06318297237157822 +karman_re400,ppo,72,28.8,omega,lower,-0.009785236790776253 +karman_re400,ppo,73,29.2,omega,front,0.013428851962089539 +karman_re400,ppo,73,29.2,omega,upper,-0.06096965819597244 +karman_re400,ppo,73,29.2,omega,lower,-0.01288198959082365 +karman_re400,ppo,74,29.6,omega,front,0.01370225753635168 +karman_re400,ppo,74,29.6,omega,upper,-0.055119045078754425 +karman_re400,ppo,74,29.6,omega,lower,-0.011734656989574432 +karman_re400,ppo,75,30.0,omega,front,0.013913111761212349 +karman_re400,ppo,75,30.0,omega,upper,-0.04455677792429924 +karman_re400,ppo,75,30.0,omega,lower,-0.00479139294475317 +karman_re400,ppo,76,30.4,omega,front,0.011452857404947281 +karman_re400,ppo,76,30.4,omega,upper,-0.024918032810091972 +karman_re400,ppo,76,30.4,omega,lower,0.017614679411053658 +karman_re400,ppo,77,30.8,omega,front,0.0027613926213234663 +karman_re400,ppo,77,30.8,omega,upper,-0.005292077083140612 +karman_re400,ppo,77,30.8,omega,lower,0.047224171459674835 +karman_re400,ppo,78,31.2,omega,front,-0.004345681983977556 +karman_re400,ppo,78,31.2,omega,upper,0.004258422646671534 +karman_re400,ppo,78,31.2,omega,lower,0.06365705281496048 +karman_re400,ppo,79,31.6,omega,front,-0.010371433570981026 +karman_re400,ppo,79,31.6,omega,upper,0.009968738071620464 +karman_re400,ppo,79,31.6,omega,lower,0.07126004248857498 +karman_re400,ppo,80,32.0,omega,front,-0.015573043376207352 +karman_re400,ppo,80,32.0,omega,upper,0.008723549544811249 +karman_re400,ppo,80,32.0,omega,lower,0.07061666995286942 +karman_re400,ppo,81,32.4,omega,front,-0.017658758908510208 +karman_re400,ppo,81,32.4,omega,upper,0.006659879349172115 +karman_re400,ppo,81,32.4,omega,lower,0.06228294223546982 +karman_re400,ppo,82,32.8,omega,front,-0.01837785728275776 +karman_re400,ppo,82,32.8,omega,upper,0.0065667531453073025 +karman_re400,ppo,82,32.8,omega,lower,0.04772398993372917 +karman_re400,ppo,83,33.2,omega,front,-0.017264574766159058 +karman_re400,ppo,83,33.2,omega,upper,-0.007001354359090328 +karman_re400,ppo,83,33.2,omega,lower,0.032798729836940765 +karman_re400,ppo,84,33.6,omega,front,-0.008694215677678585 +karman_re400,ppo,84,33.6,omega,upper,-0.03680606186389923 +karman_re400,ppo,84,33.6,omega,lower,0.012870539911091328 +karman_re400,ppo,85,34.0,omega,front,0.00020639591093640774 +karman_re400,ppo,85,34.0,omega,upper,-0.05434376746416092 +karman_re400,ppo,85,34.0,omega,lower,0.0016297101974487305 +karman_re400,ppo,86,34.4,omega,front,0.00659115519374609 +karman_re400,ppo,86,34.4,omega,upper,-0.060086801648139954 +karman_re400,ppo,86,34.4,omega,lower,-0.003664636518806219 +karman_re400,ppo,87,34.8,omega,front,0.011527356691658497 +karman_re400,ppo,87,34.8,omega,upper,-0.05903075262904167 +karman_re400,ppo,87,34.8,omega,lower,-0.007926072925329208 +karman_re400,ppo,88,35.2,omega,front,0.012411193922162056 +karman_re400,ppo,88,35.2,omega,upper,-0.055146072059869766 +karman_re400,ppo,88,35.2,omega,lower,-0.009313459508121014 +karman_re400,ppo,89,35.6,omega,front,0.011759289540350437 +karman_re400,ppo,89,35.6,omega,upper,-0.04895389825105667 +karman_re400,ppo,89,35.6,omega,lower,-0.006696748547255993 +karman_re400,ppo,90,36.0,omega,front,0.013021581806242466 +karman_re400,ppo,90,36.0,omega,upper,-0.03838269039988518 +karman_re400,ppo,90,36.0,omega,lower,0.0008482837583869696 +karman_re400,ppo,91,36.4,omega,front,0.006484752520918846 +karman_re400,ppo,91,36.4,omega,upper,-0.01612241379916668 +karman_re400,ppo,91,36.4,omega,lower,0.029578089714050293 +karman_re400,ppo,92,36.8,omega,front,-0.00016537151532247663 +karman_re400,ppo,92,36.8,omega,upper,-0.0011197804706171155 +karman_re400,ppo,92,36.8,omega,lower,0.05327104777097702 +karman_re400,ppo,93,37.2,omega,front,-0.0056896936148405075 +karman_re400,ppo,93,37.2,omega,upper,0.004934253636747599 +karman_re400,ppo,93,37.2,omega,lower,0.06565720587968826 +karman_re400,ppo,94,37.6,omega,front,-0.011665579862892628 +karman_re400,ppo,94,37.6,omega,upper,0.010784244164824486 +karman_re400,ppo,94,37.6,omega,lower,0.07117388397455215 +karman_re400,ppo,95,38.0,omega,front,-0.017440669238567352 +karman_re400,ppo,95,38.0,omega,upper,0.011636356823146343 +karman_re400,ppo,95,38.0,omega,lower,0.06792223453521729 +karman_re400,ppo,96,38.4,omega,front,-0.01842557080090046 +karman_re400,ppo,96,38.4,omega,upper,0.009610309265553951 +karman_re400,ppo,96,38.4,omega,lower,0.054113633930683136 +karman_re400,ppo,97,38.8,omega,front,-0.01657259277999401 +karman_re400,ppo,97,38.8,omega,upper,0.0007117271306924522 +karman_re400,ppo,97,38.8,omega,lower,0.04181254282593727 +karman_re400,ppo,98,39.2,omega,front,-0.010060439817607403 +karman_re400,ppo,98,39.2,omega,upper,-0.0255476962774992 +karman_re400,ppo,98,39.2,omega,lower,0.021163862198591232 +karman_re400,ppo,99,39.6,omega,front,-0.00171199522446841 +karman_re400,ppo,99,39.6,omega,upper,-0.04785025492310524 +karman_re400,ppo,99,39.6,omega,lower,0.005942249204963446 +karman_re400,ppo,100,40.0,omega,front,0.005377872381359339 +karman_re400,ppo,100,40.0,omega,upper,-0.05803140625357628 +karman_re400,ppo,100,40.0,omega,lower,-0.00183019635733217 +karman_re400,ppo,101,40.4,omega,front,0.011011817492544651 +karman_re400,ppo,101,40.4,omega,upper,-0.061111897230148315 +karman_re400,ppo,101,40.4,omega,lower,-0.008839244954288006 +karman_re400,ppo,102,40.8,omega,front,0.013563800603151321 +karman_re400,ppo,102,40.8,omega,upper,-0.0596873015165329 +karman_re400,ppo,102,40.8,omega,lower,-0.011960968375205994 +karman_re400,ppo,103,41.2,omega,front,0.01354837603867054 +karman_re400,ppo,103,41.2,omega,upper,-0.055192332714796066 +karman_re400,ppo,103,41.2,omega,lower,-0.012082014232873917 +karman_re400,ppo,104,41.6,omega,front,0.014291620813310146 +karman_re400,ppo,104,41.6,omega,upper,-0.04663410037755966 +karman_re400,ppo,104,41.6,omega,lower,-0.007256106939166784 +karman_re400,ppo,105,42.0,omega,front,0.012737981975078583 +karman_re400,ppo,105,42.0,omega,upper,-0.026712529361248016 +karman_re400,ppo,105,42.0,omega,lower,0.014112495817244053 +karman_re400,ppo,106,42.4,omega,front,0.005146023351699114 +karman_re400,ppo,106,42.4,omega,upper,-0.0065897488966584206 +karman_re400,ppo,106,42.4,omega,lower,0.044804468750953674 +karman_re400,ppo,107,42.8,omega,front,-0.002931363182142377 +karman_re400,ppo,107,42.8,omega,upper,0.00332733616232872 +karman_re400,ppo,107,42.8,omega,lower,0.06294238567352295 +karman_re400,ppo,108,43.2,omega,front,-0.009136529639363289 +karman_re400,ppo,108,43.2,omega,upper,0.009360704571008682 +karman_re400,ppo,108,43.2,omega,lower,0.07088401913642883 +karman_re400,ppo,109,43.6,omega,front,-0.014680451713502407 +karman_re400,ppo,109,43.6,omega,upper,0.009698724374175072 +karman_re400,ppo,109,43.6,omega,lower,0.07081775367259979 +karman_re400,ppo,110,44.0,omega,front,-0.01714489609003067 +karman_re400,ppo,110,44.0,omega,upper,0.0067636677995324135 +karman_re400,ppo,110,44.0,omega,lower,0.06309425085783005 +karman_re400,ppo,111,44.4,omega,front,-0.0157550647854805 +karman_re400,ppo,111,44.4,omega,upper,0.004595918580889702 +karman_re400,ppo,111,44.4,omega,lower,0.0483291819691658 +karman_re400,ppo,112,44.8,omega,front,-0.014372287318110466 +karman_re400,ppo,112,44.8,omega,upper,-0.0045965430326759815 +karman_re400,ppo,112,44.8,omega,lower,0.03478233516216278 +karman_re400,ppo,113,45.2,omega,front,-0.00991464126855135 +karman_re400,ppo,113,45.2,omega,upper,-0.030828479677438736 +karman_re400,ppo,113,45.2,omega,lower,0.015358188189566135 +karman_re400,ppo,114,45.6,omega,front,-0.002451325301080942 +karman_re400,ppo,114,45.6,omega,upper,-0.05103748291730881 +karman_re400,ppo,114,45.6,omega,lower,0.0033467886969447136 +karman_re400,ppo,115,46.0,omega,front,0.00496580358594656 +karman_re400,ppo,115,46.0,omega,upper,-0.0602482408285141 +karman_re400,ppo,115,46.0,omega,lower,-0.0033453081268817186 +karman_re400,ppo,116,46.4,omega,front,0.011018907651305199 +karman_re400,ppo,116,46.4,omega,upper,-0.061909329146146774 +karman_re400,ppo,116,46.4,omega,lower,-0.009336194954812527 +karman_re400,ppo,117,46.8,omega,front,0.013238910585641861 +karman_re400,ppo,117,46.8,omega,upper,-0.0581975057721138 +karman_re400,ppo,117,46.8,omega,lower,-0.011319603770971298 +karman_re400,ppo,118,47.2,omega,front,0.012815522029995918 +karman_re400,ppo,118,47.2,omega,upper,-0.050528768450021744 +karman_re400,ppo,118,47.2,omega,lower,-0.007311696652323008 +karman_re400,ppo,119,47.6,omega,front,0.014210093766450882 +karman_re400,ppo,119,47.6,omega,upper,-0.039018597453832626 +karman_re400,ppo,119,47.6,omega,lower,0.0017602085135877132 +karman_re400,ppo,120,48.0,omega,front,0.009303806349635124 +karman_re400,ppo,120,48.0,omega,upper,-0.015589692629873753 +karman_re400,ppo,120,48.0,omega,lower,0.030360721051692963 +karman_re400,ppo,121,48.4,omega,front,0.00028983529773540795 +karman_re400,ppo,121,48.4,omega,upper,-0.0007406282238662243 +karman_re400,ppo,121,48.4,omega,lower,0.05565718561410904 +karman_re400,ppo,122,48.8,omega,front,-0.0057566226460039616 +karman_re400,ppo,122,48.8,omega,upper,0.00494059082120657 +karman_re400,ppo,122,48.8,omega,lower,0.0668688714504242 +karman_re400,ppo,123,49.2,omega,front,-0.012221518903970718 +karman_re400,ppo,123,49.2,omega,upper,0.01000757236033678 +karman_re400,ppo,123,49.2,omega,lower,0.07207309454679489 +karman_re400,ppo,124,49.6,omega,front,-0.016731053590774536 +karman_re400,ppo,124,49.6,omega,upper,0.008743738755583763 +karman_re400,ppo,124,49.6,omega,lower,0.0684608519077301 +karman_re400,ppo,125,50.0,omega,front,-0.017343580722808838 +karman_re400,ppo,125,50.0,omega,upper,0.00711806770414114 +karman_re400,ppo,125,50.0,omega,lower,0.05507455766201019 +karman_re400,ppo,126,50.4,omega,front,-0.016878990456461906 +karman_re400,ppo,126,50.4,omega,upper,0.004612078424543142 +karman_re400,ppo,126,50.4,omega,lower,0.04362327605485916 +karman_re400,ppo,127,50.8,omega,front,-0.011845869943499565 +karman_re400,ppo,127,50.8,omega,upper,-0.019236072897911072 +karman_re400,ppo,127,50.8,omega,lower,0.02358553744852543 +karman_re400,ppo,128,51.2,omega,front,-0.003442099317908287 +karman_re400,ppo,128,51.2,omega,upper,-0.047002725303173065 +karman_re400,ppo,128,51.2,omega,lower,0.007376606110483408 +karman_re400,ppo,129,51.6,omega,front,0.004129757173359394 +karman_re400,ppo,129,51.6,omega,upper,-0.05944427475333214 +karman_re400,ppo,129,51.6,omega,lower,-0.0006160354241728783 +karman_re400,ppo,130,52.0,omega,front,0.009910364635288715 +karman_re400,ppo,130,52.0,omega,upper,-0.06226015090942383 +karman_re400,ppo,130,52.0,omega,lower,-0.006862797774374485 +karman_re400,ppo,131,52.4,omega,front,0.013565856032073498 +karman_re400,ppo,131,52.4,omega,upper,-0.05972401425242424 +karman_re400,ppo,131,52.4,omega,lower,-0.011237678118050098 +karman_re400,ppo,132,52.8,omega,front,0.013970674015581608 +karman_re400,ppo,132,52.8,omega,upper,-0.05494639277458191 +karman_re400,ppo,132,52.8,omega,lower,-0.012336229905486107 +karman_re400,ppo,133,53.2,omega,front,0.014470620080828667 +karman_re400,ppo,133,53.2,omega,upper,-0.04796726256608963 +karman_re400,ppo,133,53.2,omega,lower,-0.008459320291876793 +karman_re400,ppo,134,53.6,omega,front,0.012556699104607105 +karman_re400,ppo,134,53.6,omega,upper,-0.029800929129123688 +karman_re400,ppo,134,53.6,omega,lower,0.012636537663638592 +karman_re400,ppo,135,54.0,omega,front,0.00591266667470336 +karman_re400,ppo,135,54.0,omega,upper,-0.00952780432999134 +karman_re400,ppo,135,54.0,omega,lower,0.04226769506931305 +karman_re400,ppo,136,54.4,omega,front,-0.0024187201634049416 +karman_re400,ppo,136,54.4,omega,upper,0.0016268634935840964 +karman_re400,ppo,136,54.4,omega,lower,0.062046896666288376 +karman_re400,ppo,137,54.8,omega,front,-0.009054875001311302 +karman_re400,ppo,137,54.8,omega,upper,0.007337236311286688 +karman_re400,ppo,137,54.8,omega,lower,0.07116855680942535 +karman_re400,ppo,138,55.2,omega,front,-0.014864755794405937 +karman_re400,ppo,138,55.2,omega,upper,0.009677858091890812 +karman_re400,ppo,138,55.2,omega,lower,0.07163269817829132 +karman_re400,ppo,139,55.6,omega,front,-0.01765706017613411 +karman_re400,ppo,139,55.6,omega,upper,0.008689241483807564 +karman_re400,ppo,139,55.6,omega,lower,0.06283315271139145 +karman_re400,ppo,140,56.0,omega,front,-0.01761622354388237 +karman_re400,ppo,140,56.0,omega,upper,0.006152343470603228 +karman_re400,ppo,140,56.0,omega,lower,0.04819914698600769 +karman_re400,ppo,141,56.4,omega,front,-0.015904143452644348 +karman_re400,ppo,141,56.4,omega,upper,-0.005395760294049978 +karman_re400,ppo,141,56.4,omega,lower,0.034646954387426376 +karman_re400,ppo,142,56.8,omega,front,-0.009048214182257652 +karman_re400,ppo,142,56.8,omega,upper,-0.03355291858315468 +karman_re400,ppo,142,56.8,omega,lower,0.01468893513083458 +karman_re400,ppo,143,57.2,omega,front,-0.0004022963985335082 +karman_re400,ppo,143,57.2,omega,upper,-0.05349866673350334 +karman_re400,ppo,143,57.2,omega,lower,0.002359025413170457 +karman_re400,ppo,144,57.6,omega,front,0.0066100978292524815 +karman_re400,ppo,144,57.6,omega,upper,-0.06107329577207565 +karman_re400,ppo,144,57.6,omega,lower,-0.0037775372620671988 +karman_re400,ppo,145,58.0,omega,front,0.012061551213264465 +karman_re400,ppo,145,58.0,omega,upper,-0.06204589083790779 +karman_re400,ppo,145,58.0,omega,lower,-0.009882239624857903 +karman_re400,ppo,146,58.4,omega,front,0.013717738911509514 +karman_re400,ppo,146,58.4,omega,upper,-0.05817384645342827 +karman_re400,ppo,146,58.4,omega,lower,-0.012378344312310219 +karman_re400,ppo,147,58.8,omega,front,0.01367691159248352 +karman_re400,ppo,147,58.8,omega,upper,-0.050564926117658615 +karman_re400,ppo,147,58.8,omega,lower,-0.00888015702366829 +karman_re400,ppo,148,59.2,omega,front,0.015309121459722519 +karman_re400,ppo,148,59.2,omega,upper,-0.038959212601184845 +karman_re400,ppo,148,59.2,omega,lower,0.0009926127968356013 +karman_re400,ppo,149,59.6,omega,front,0.008612089790403843 +karman_re400,ppo,149,59.6,omega,upper,-0.01534376572817564 +karman_re400,ppo,149,59.6,omega,lower,0.03204362094402313 +karman_re400,ppo,150,60.0,omega,front,3.379166082595475e-05 +karman_re400,ppo,150,60.0,omega,upper,0.0003181934298481792 +karman_re400,ppo,150,60.0,omega,lower,0.05720905587077141 +karman_re400,ppo,151,60.4,omega,front,-0.0065314495004713535 +karman_re400,ppo,151,60.4,omega,upper,0.006033286917954683 +karman_re400,ppo,151,60.4,omega,lower,0.06840093433856964 +karman_re400,ppo,152,60.8,omega,front,-0.012793825939297676 +karman_re400,ppo,152,60.8,omega,upper,0.010682954452931881 +karman_re400,ppo,152,60.8,omega,lower,0.07281450927257538 +karman_re400,ppo,153,61.2,omega,front,-0.016860872507095337 +karman_re400,ppo,153,61.2,omega,upper,0.008313169702887535 +karman_re400,ppo,153,61.2,omega,lower,0.06869892030954361 +karman_re400,ppo,154,61.6,omega,front,-0.016471290960907936 +karman_re400,ppo,154,61.6,omega,upper,0.005907029844820499 +karman_re400,ppo,154,61.6,omega,lower,0.05546701326966286 +karman_re400,ppo,155,62.0,omega,front,-0.015047543682157993 +karman_re400,ppo,155,62.0,omega,upper,0.005597772542387247 +karman_re400,ppo,155,62.0,omega,lower,0.04360933229327202 +karman_re400,ppo,156,62.4,omega,front,-0.010856030508875847 +karman_re400,ppo,156,62.4,omega,upper,-0.018287373706698418 +karman_re400,ppo,156,62.4,omega,lower,0.02338024601340294 +karman_re400,ppo,157,62.8,omega,front,-0.0035207148175686598 +karman_re400,ppo,157,62.8,omega,upper,-0.046322956681251526 +karman_re400,ppo,157,62.8,omega,lower,0.007254886440932751 +karman_re400,ppo,158,63.2,omega,front,0.003916176967322826 +karman_re400,ppo,158,63.2,omega,upper,-0.05998092517256737 +karman_re400,ppo,158,63.2,omega,lower,-0.0009025955223478377 +karman_re400,ppo,159,63.6,omega,front,0.009596328251063824 +karman_re400,ppo,159,63.6,omega,upper,-0.06261660158634186 +karman_re400,ppo,159,63.6,omega,lower,-0.006777953822165728 +karman_re400,ppo,160,64.0,omega,front,0.013289385475218296 +karman_re400,ppo,160,64.0,omega,upper,-0.05953933671116829 +karman_re400,ppo,160,64.0,omega,lower,-0.011345782317221165 +karman_re400,ppo,161,64.4,omega,front,0.013296261429786682 +karman_re400,ppo,161,64.4,omega,upper,-0.05442335829138756 +karman_re400,ppo,161,64.4,omega,lower,-0.012020392343401909 +karman_re400,ppo,162,64.8,omega,front,0.014214790426194668 +karman_re400,ppo,162,64.8,omega,upper,-0.04749961569905281 +karman_re400,ppo,162,64.8,omega,lower,-0.007792958989739418 +karman_re400,ppo,163,65.2,omega,front,0.01058738213032484 +karman_re400,ppo,163,65.2,omega,upper,-0.027676014229655266 +karman_re400,ppo,163,65.2,omega,lower,0.0163660179823637 +karman_re400,ppo,164,65.6,omega,front,0.0031497341115027666 +karman_re400,ppo,164,65.6,omega,upper,-0.007974259555339813 +karman_re400,ppo,164,65.6,omega,lower,0.045354146510362625 +karman_re400,ppo,165,66.0,omega,front,-0.00393711356446147 +karman_re400,ppo,165,66.0,omega,upper,0.002012505428865552 +karman_re400,ppo,165,66.0,omega,lower,0.06278038024902344 +karman_re400,ppo,166,66.4,omega,front,-0.009728902019560337 +karman_re400,ppo,166,66.4,omega,upper,0.007862233556807041 +karman_re400,ppo,166,66.4,omega,lower,0.07071483135223389 +karman_re400,ppo,167,66.8,omega,front,-0.015237763524055481 +karman_re400,ppo,167,66.8,omega,upper,0.009857974015176296 +karman_re400,ppo,167,66.8,omega,lower,0.07076997309923172 +karman_re400,ppo,168,67.2,omega,front,-0.017712179571390152 +karman_re400,ppo,168,67.2,omega,upper,0.010955738835036755 +karman_re400,ppo,168,67.2,omega,lower,0.06129980832338333 +karman_re400,ppo,169,67.6,omega,front,-0.019029956310987473 +karman_re400,ppo,169,67.6,omega,upper,0.008514671586453915 +karman_re400,ppo,169,67.6,omega,lower,0.048467714339494705 +karman_re400,ppo,170,68.0,omega,front,-0.01736784167587757 +karman_re400,ppo,170,68.0,omega,upper,-0.009655232541263103 +karman_re400,ppo,170,68.0,omega,lower,0.03296995162963867 +karman_re400,ppo,171,68.4,omega,front,-0.008208980783820152 +karman_re400,ppo,171,68.4,omega,upper,-0.038012489676475525 +karman_re400,ppo,171,68.4,omega,lower,0.013510513119399548 +karman_re400,ppo,172,68.8,omega,front,0.0011044815182685852 +karman_re400,ppo,172,68.8,omega,upper,-0.055254753679037094 +karman_re400,ppo,172,68.8,omega,lower,0.00153240910731256 +karman_re400,ppo,173,69.2,omega,front,0.00782525260001421 +karman_re400,ppo,173,69.2,omega,upper,-0.060783784836530685 +karman_re400,ppo,173,69.2,omega,lower,-0.00427416805177927 +karman_re400,ppo,174,69.6,omega,front,0.012748684734106064 +karman_re400,ppo,174,69.6,omega,upper,-0.05993819609284401 +karman_re400,ppo,174,69.6,omega,lower,-0.008881148882210255 +karman_re400,ppo,175,70.0,omega,front,0.013868968933820724 +karman_re400,ppo,175,70.0,omega,upper,-0.05639919266104698 +karman_re400,ppo,175,70.0,omega,lower,-0.01135440357029438 +karman_re400,ppo,176,70.4,omega,front,0.01403030101209879 +karman_re400,ppo,176,70.4,omega,upper,-0.04967533051967621 +karman_re400,ppo,176,70.4,omega,lower,-0.009498938918113708 +karman_re400,ppo,177,70.8,omega,front,0.015262345783412457 +karman_re400,ppo,177,70.8,omega,upper,-0.037744179368019104 +karman_re400,ppo,177,70.8,omega,lower,-0.00020401953952386975 +karman_re400,ppo,178,71.2,omega,front,0.009305479936301708 +karman_re400,ppo,178,71.2,omega,upper,-0.015261685475707054 +karman_re400,ppo,178,71.2,omega,lower,0.030154619365930557 +karman_re400,ppo,179,71.6,omega,front,0.001278526266105473 +karman_re400,ppo,179,71.6,omega,upper,-0.0003553199640009552 +karman_re400,ppo,179,71.6,omega,lower,0.0552997812628746 +karman_re400,ppo,180,72.0,omega,front,-0.006360697094351053 +karman_re400,ppo,180,72.0,omega,upper,0.0058633992448449135 +karman_re400,ppo,180,72.0,omega,lower,0.06821276247501373 +karman_re400,ppo,181,72.4,omega,front,-0.012475901283323765 +karman_re400,ppo,181,72.4,omega,upper,0.011604370549321175 +karman_re400,ppo,181,72.4,omega,lower,0.07292390614748001 +karman_re400,ppo,182,72.8,omega,front,-0.01673923246562481 +karman_re400,ppo,182,72.8,omega,upper,0.008633393794298172 +karman_re400,ppo,182,72.8,omega,lower,0.06892729550600052 +karman_re400,ppo,183,73.2,omega,front,-0.016706189140677452 +karman_re400,ppo,183,73.2,omega,upper,0.004979862831532955 +karman_re400,ppo,183,73.2,omega,lower,0.05557626113295555 +karman_re400,ppo,184,73.6,omega,front,-0.014323658309876919 +karman_re400,ppo,184,73.6,omega,upper,0.0034180639777332544 +karman_re400,ppo,184,73.6,omega,lower,0.04260510206222534 +karman_re400,ppo,185,74.0,omega,front,-0.01007154956459999 +karman_re400,ppo,185,74.0,omega,upper,-0.019068308174610138 +karman_re400,ppo,185,74.0,omega,lower,0.022608084604144096 +karman_re400,ppo,186,74.4,omega,front,-0.0029919755179435015 +karman_re400,ppo,186,74.4,omega,upper,-0.04573884978890419 +karman_re400,ppo,186,74.4,omega,lower,0.006643793545663357 +karman_re400,ppo,187,74.8,omega,front,0.004204683005809784 +karman_re400,ppo,187,74.8,omega,upper,-0.059287820011377335 +karman_re400,ppo,187,74.8,omega,lower,-0.0018173789139837027 +karman_re400,ppo,188,75.2,omega,front,0.00979037769138813 +karman_re400,ppo,188,75.2,omega,upper,-0.06270526349544525 +karman_re400,ppo,188,75.2,omega,lower,-0.00815674290060997 +karman_re400,ppo,189,75.6,omega,front,0.013209531083703041 +karman_re400,ppo,189,75.6,omega,upper,-0.06026289984583855 +karman_re400,ppo,189,75.6,omega,lower,-0.012145809829235077 +karman_re400,ppo,190,76.0,omega,front,0.013257560320198536 +karman_re400,ppo,190,76.0,omega,upper,-0.054450348019599915 +karman_re400,ppo,190,76.0,omega,lower,-0.011831121519207954 +karman_re400,ppo,191,76.4,omega,front,0.014051936566829681 +karman_re400,ppo,191,76.4,omega,upper,-0.046465348452329636 +karman_re400,ppo,191,76.4,omega,lower,-0.0060632177628576756 +karman_re400,ppo,192,76.8,omega,front,0.012015510350465775 +karman_re400,ppo,192,76.8,omega,upper,-0.025413231924176216 +karman_re400,ppo,192,76.8,omega,lower,0.017793875187635422 +karman_re400,ppo,193,77.2,omega,front,0.004039912950247526 +karman_re400,ppo,193,77.2,omega,upper,-0.005986499600112438 +karman_re400,ppo,193,77.2,omega,lower,0.04674962908029556 +karman_re400,ppo,194,77.6,omega,front,-0.0035196368116885424 +karman_re400,ppo,194,77.6,omega,upper,0.0029966258443892 +karman_re400,ppo,194,77.6,omega,lower,0.06335939466953278 +karman_re400,ppo,195,78.0,omega,front,-0.00933696050196886 +karman_re400,ppo,195,78.0,omega,upper,0.008459586650133133 +karman_re400,ppo,195,78.0,omega,lower,0.07073475420475006 +karman_re400,ppo,196,78.4,omega,front,-0.01461722794920206 +karman_re400,ppo,196,78.4,omega,upper,0.0089581198990345 +karman_re400,ppo,196,78.4,omega,lower,0.07036467641592026 +karman_re400,ppo,197,78.8,omega,front,-0.017328482121229172 +karman_re400,ppo,197,78.8,omega,upper,0.008281460031867027 +karman_re400,ppo,197,78.8,omega,lower,0.06190194934606552 +karman_re400,ppo,198,79.2,omega,front,-0.01830332912504673 +karman_re400,ppo,198,79.2,omega,upper,0.006509990431368351 +karman_re400,ppo,198,79.2,omega,lower,0.04883406683802605 +karman_re400,ppo,199,79.6,omega,front,-0.016348369419574738 +karman_re400,ppo,199,79.6,omega,upper,-0.007512271404266357 +karman_re400,ppo,199,79.6,omega,lower,0.03383319452404976 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_manifest.json new file mode 100644 index 0000000..e8e1d61 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re400", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re400/controlled.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_wide.csv new file mode 100644 index 0000000..a863554 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re400,ppo,0,0.0,1.2945877313613892,-0.007552334573119879,0.9618828296661377,0.2384451925754547,0.9797600507736206,0.20209911465644836,0.0004468884435482323,0.004954597447067499,-0.01140286959707737,0.003116866108030081,0.007727595511823893,-0.005553109105676413,2.1930055618286133,-7.6689133644104,-3.6831250190734863,0.02193005569279194,-0.07668913155794144,-0.03683124855160713 +karman_re400,ppo,1,0.4,1.2029876708984375,0.1543925255537033,1.0082988739013672,0.43940412998199463,0.9903221726417542,0.30786004662513733,0.0041487617418169975,0.0011178625281900167,-0.01267625018954277,0.003478371538221836,0.0029715909622609615,-0.00414391839876771,2.452056884765625,-7.3714189529418945,-3.820882797241211,0.024520568549633026,-0.07371418923139572,-0.03820882737636566 +karman_re400,ppo,2,0.8,1.061565637588501,0.2815289795398712,1.029922366142273,0.46695175766944885,1.0382505655288696,0.32796233892440796,0.005441469606012106,-0.000512586731929332,-0.012547146528959274,0.006794353015720844,0.004094996955245733,-0.005429479293525219,1.8302044868469238,-4.680788040161133,-2.395571231842041,0.01830204389989376,-0.04680787771940231,-0.023955712094902992 +karman_re400,ppo,3,1.2,0.9878283739089966,0.33410489559173584,1.0323195457458496,0.4657195806503296,1.0988198518753052,0.3440730571746826,0.0017095879884436727,-0.004645042587071657,-0.005187602713704109,0.011404654011130333,0.0036974898539483547,-0.004109353292733431,1.5959364175796509,-4.448609828948975,-1.3726816177368164,0.01595936343073845,-0.04448609799146652,-0.013726815581321716 +karman_re400,ppo,4,1.6,0.9530096650123596,0.3446415960788727,1.0099246501922607,0.46917834877967834,1.1644738912582397,0.32023704051971436,-0.0013923968654125929,-0.005161458160728216,-0.0008492876659147441,0.013443556614220142,0.0024648034013807774,-0.0034059169702231884,0.6880942583084106,-1.2617790699005127,3.8584580421447754,0.006880942266434431,-0.012617790140211582,0.03858457878232002 +karman_re400,ppo,5,2.0,0.9409485459327698,0.3297271728515625,0.9383397102355957,0.47054049372673035,1.242544412612915,0.2622535228729248,-0.0022442336194217205,-0.005622385069727898,0.0035668881610035896,0.01167949941009283,-0.00042483911965973675,-0.004797026049345732,0.12426899373531342,0.4134817123413086,6.294703483581543,0.001242689904756844,0.00413481704890728,0.06294703483581543 +karman_re400,ppo,6,2.4,0.9629225134849548,0.22432272136211395,0.8956461548805237,0.21161901950836182,1.2806036472320557,0.13597525656223297,-0.0021790789905935526,-0.006404522806406021,0.006218256428837776,0.007789588533341885,-0.0030962792225182056,-0.005699404515326023,-0.8247596621513367,1.0183982849121094,7.596898078918457,-0.008247596211731434,0.01018398255109787,0.07596898078918457 +karman_re400,ppo,7,2.8,0.9509938955307007,-0.10989580303430557,0.9433658719062805,-0.1697004735469818,1.2978366613388062,0.05150219053030014,0.0007023646030575037,-0.005586670711636543,0.006217470858246088,0.005153901409357786,-0.0013532929588109255,-0.006202210206538439,-1.455910325050354,1.097907543182373,7.940784454345703,-0.014559103175997734,0.010979074984788895,0.07940784096717834 +karman_re400,ppo,8,3.2,0.9360213279724121,-0.3133436441421509,0.9918474555015564,-0.3824121356010437,1.2463754415512085,-0.06889840960502625,0.0035155306104570627,-0.0021350274328142405,0.004977010656148195,0.002898522885516286,-0.001073900843039155,-0.001179015962406993,-1.3214879035949707,-0.630061149597168,6.560962677001953,-0.013214878737926483,-0.006300611421465874,0.06560962647199631 +karman_re400,ppo,9,3.6,0.9764372110366821,-0.33459118008613586,1.0087532997131348,-0.45228612422943115,1.1087074279785156,-0.21288402378559113,0.0034337479155510664,0.0011825752444565296,0.0022896381560713053,0.0025473874993622303,-0.0036272460129112005,-0.0022236632648855448,-0.7634793519973755,-0.908266007900238,4.717955112457275,-0.007634793408215046,-0.00908266007900238,0.04717954993247986 +karman_re400,ppo,10,4.0,1.0332534313201904,-0.3571506440639496,1.0132272243499756,-0.44735461473464966,1.021337866783142,-0.27608853578567505,0.0006059081642888486,0.00311918742954731,0.0007577396463602781,0.0032737627625465393,-0.0008093690266832709,-0.00636625662446022,-0.5188012719154358,-1.3171796798706055,2.7311840057373047,-0.00518801249563694,-0.013171796686947346,0.027311839163303375 +karman_re400,ppo,11,4.4,1.0903476476669312,-0.3615429997444153,0.9952223896980286,-0.4333096742630005,0.9705037474632263,-0.2888203561306,-0.0009574128780514002,0.004218047019094229,-0.000415660411817953,0.003458351129665971,0.0030116999987512827,-0.008016017265617847,0.02390999346971512,-3.7491371631622314,1.0440335273742676,0.0002390999288763851,-0.03749136999249458,0.010440334677696228 +karman_re400,ppo,12,4.8,1.158592700958252,-0.3369537591934204,0.9475677609443665,-0.4300837218761444,0.9388188123703003,-0.2666848599910736,-0.0012742966646328568,0.0048186383210122585,-0.002019509905949235,0.0037963567301630974,0.00524195795878768,-0.008357458747923374,0.6429749131202698,-5.809557914733887,-0.21613122522830963,0.006429749075323343,-0.058095578104257584,-0.002161312149837613 +karman_re400,ppo,13,5.2,1.2299121618270874,-0.2767459750175476,0.8473767638206482,-0.37347152829170227,0.9045126438140869,-0.21095703542232513,-0.00021178821043577045,0.005214150529354811,-0.003794749965891242,0.003942841663956642,0.006611013785004616,-0.007133583538234234,1.116302490234375,-6.832691669464111,-1.0964879989624023,0.011163024231791496,-0.0683269128203392,-0.010964879766106606 +karman_re400,ppo,14,5.6,1.2531484365463257,-0.1636696606874466,0.7688860297203064,-0.09718357771635056,0.8592604994773865,0.053090911358594894,0.002181312534958124,0.0042096213437616825,-0.004211103543639183,0.0028320206329226494,0.00652221217751503,-0.005312400404363871,1.5021454095840454,-7.164400100708008,-1.7713675498962402,0.015021453611552715,-0.07164400070905685,-0.017713675275444984 +karman_re400,ppo,15,6.0,1.2712312936782837,-0.09058189392089844,0.7663136124610901,0.22371460497379303,0.8680256605148315,0.2863808274269104,0.004829376004636288,0.0019884579814970493,-0.005262140184640884,0.00041034474270418286,0.006567807402461767,-0.002807706594467163,1.4655095338821411,-6.7069220542907715,-1.6736012697219849,0.014655094593763351,-0.06706921756267548,-0.01673601195216179 +karman_re400,ppo,16,6.4,1.2352362871170044,-0.03320012241601944,0.7723770141601562,0.4180503189563751,0.9210410118103027,0.3475176692008972,0.004152426030486822,-0.00090025580720976,-0.0053213234059512615,0.002596173668280244,0.005918584298342466,-0.0006421607686206698,1.5131089687347412,-6.179040908813477,-1.6189899444580078,0.01513108890503645,-0.061790406703948975,-0.016189899295568466 +karman_re400,ppo,17,6.8,1.0803461074829102,0.06625694036483765,0.752284824848175,0.5161434412002563,0.9783899784088135,0.4150761365890503,0.0022517337929457426,-0.00301844603382051,-0.0010452985297888517,0.005261919926851988,0.004876517225056887,-0.00017686834326013923,1.459781527519226,-4.123866081237793,0.22530460357666016,0.014597814530134201,-0.041238658130168915,0.002253046026453376 +karman_re400,ppo,18,7.2,0.9588268399238586,0.20988255739212036,0.7199466824531555,0.5364031791687012,1.0383403301239014,0.4553094506263733,-0.0004292450030334294,-0.004355199635028839,0.0025692388880997896,0.005752258934080601,0.00317676761187613,-0.0021672577131539583,0.6917064785957336,-2.053460121154785,3.364860773086548,0.006917064543813467,-0.02053460106253624,0.03364860638976097 +karman_re400,ppo,19,7.6,0.9036639332771301,0.22734548151493073,0.6581007242202759,0.5310183167457581,1.1126697063446045,0.5028014779090881,-0.002021289896219969,-0.005176017992198467,0.003916998393833637,0.006269348785281181,0.002153298817574978,-0.004734349437057972,-0.12056054919958115,-1.1638360023498535,5.340305328369141,-0.0012056054547429085,-0.011638360098004341,0.05340305343270302 +karman_re400,ppo,20,8.0,0.8836416602134705,0.15759526193141937,0.5909980535507202,0.42517322301864624,1.2076791524887085,0.525130033493042,-0.0024680609349161386,-0.005903175566345453,0.00490151671692729,0.006711104419082403,-0.0014710010727867484,-0.0051529286429286,-0.5772757530212402,-1.0278105735778809,6.1091508865356445,-0.005772757343947887,-0.010278105735778809,0.06109150871634483 +karman_re400,ppo,21,8.4,0.8793610334396362,0.06001695245504379,0.5167574882507324,0.21522842347621918,1.3514695167541504,0.5129855871200562,0.00021490194194484502,-0.00566027220338583,0.005634348373860121,0.006411271635442972,-0.003784205997362733,-0.004178394563496113,-1.1283310651779175,0.4900178909301758,7.106048107147217,-0.011283310130238533,0.004900178872048855,0.07106047868728638 +karman_re400,ppo,22,8.8,0.8697643876075745,-0.07559230178594589,0.4323701858520508,-0.04542352259159088,1.6753708124160767,0.4163963198661804,0.0032404151279479265,-0.003323677694424987,0.005252906121313572,0.005669009871780872,-0.006228808779269457,-0.0011958618415519595,-1.5833854675292969,1.3007612228393555,7.35707950592041,-0.01583385467529297,0.013007611967623234,0.07357079535722733 +karman_re400,ppo,23,9.2,0.8889505863189697,-0.20787867903709412,0.40113362669944763,-0.3359532058238983,1.7013936042785645,-0.27522650361061096,0.005237868521362543,-0.0003014355315826833,0.005168365780264139,0.004098043777048588,-0.009063535369932652,-0.00017447788559366018,-1.8362922668457031,2.018301010131836,6.668835163116455,-0.018362922593951225,0.020183010026812553,0.06668835133314133 +karman_re400,ppo,24,9.6,0.9347988367080688,-0.3119686245918274,0.42423737049102783,-0.5709481239318848,1.3564871549606323,-0.7452791333198547,0.002581147477030754,0.0024916892871260643,0.005730475299060345,0.0029195661190897226,-0.008226887322962284,-0.005004301201552153,-2.037409543991089,1.9270200729370117,5.486135959625244,-0.02037409506738186,0.01927020028233528,0.05486135929822922 +karman_re400,ppo,25,10.0,1.0040267705917358,-0.3801387548446655,0.4758201539516449,-0.7056920528411865,1.098390817642212,-0.7745170593261719,0.0002924608124885708,0.004775755573064089,0.005021542776376009,0.0023286244831979275,-0.0020089619792997837,-0.008598512969911098,-1.8508952856063843,-0.48968052864074707,3.853804588317871,-0.018508952111005783,-0.00489680515602231,0.038538046181201935 +karman_re400,ppo,26,10.4,1.104073166847229,-0.4380863606929779,0.4910823702812195,-0.7745370268821716,0.9552512168884277,-0.6457266807556152,-0.0023244500625878572,0.0055423034355044365,0.002412787638604641,0.003656343324109912,0.0037961953785270452,-0.009232855401933193,-0.9235603213310242,-4.374137878417969,1.5986825227737427,-0.009235602803528309,-0.0437413789331913,0.01598682440817356 +karman_re400,ppo,27,10.8,1.2154945135116577,-0.4237079620361328,0.44312331080436707,-0.7782481908798218,0.8718528151512146,-0.5140237212181091,-0.0030948242638260126,0.006093268282711506,0.00034681824035942554,0.006061025895178318,0.005954789463430643,-0.008008908480405807,0.3083631098270416,-6.525234222412109,0.15908074378967285,0.003083630930632353,-0.06525234133005142,0.00159080745652318 +karman_re400,ppo,28,11.2,1.3745976686477661,-0.3705565333366394,0.29120856523513794,-0.6980564594268799,0.8240928053855896,-0.3517909646034241,-0.0017548581818118691,0.006259964779019356,-0.0034722599666565657,0.007207661401480436,0.005959851201623678,-0.0063689774833619595,1.0062377452850342,-6.581709861755371,-0.19822977483272552,0.010062376968562603,-0.06581709533929825,-0.0019822977483272552 +karman_re400,ppo,29,11.6,1.522789478302002,-0.16642038524150848,0.06428109854459763,-0.4028189182281494,0.8005425333976746,-0.1719362437725067,0.0023439230863004923,0.004357566125690937,-0.006287300959229469,0.0053743598982691765,0.004644939675927162,-0.005285282153636217,1.5623940229415894,-6.141887664794922,-1.049168586730957,0.015623940154910088,-0.06141887605190277,-0.010491685941815376 +karman_re400,ppo,30,12.0,1.6047321557998657,0.17414121329784393,-0.006034653168171644,0.1611604243516922,0.7831825017929077,0.02988564223051071,0.004555892199277878,0.001607449958100915,-0.008596645668148994,0.004203541204333305,0.004469429608434439,-0.0044203875586390495,1.5033855438232422,-5.646021366119385,-1.5090641975402832,0.015033855102956295,-0.05646021291613579,-0.0150906415656209 +karman_re400,ppo,31,12.4,1.5434622764587402,0.5108751654624939,0.18883930146694183,0.6245144009590149,0.8089252710342407,0.1952533721923828,0.0026366866659373045,-0.0016153312753885984,-0.007908537052571774,0.0074844942428171635,0.004669749643653631,-0.0037923259660601616,1.4975247383117676,-5.117255210876465,-1.3706631660461426,0.014975246973335743,-0.05117255076766014,-0.013706631027162075 +karman_re400,ppo,32,12.8,1.3297700881958008,0.6863446831703186,0.42651844024658203,0.8365367650985718,0.8851203918457031,0.29090169072151184,0.0008319318294525146,-0.0037307366728782654,-0.003278565127402544,0.00925020594149828,0.003442092565819621,-0.0029628071933984756,1.3379127979278564,-3.3169846534729004,0.9822917580604553,0.013379127718508244,-0.03316984698176384,0.00982291717082262 +karman_re400,ppo,33,13.2,1.093125820159912,0.7155902981758118,0.5795248746871948,0.9641520977020264,0.9833737015724182,0.32959532737731934,-0.0014401391381397843,-0.0047164298593997955,0.0008563246810808778,0.009844559244811535,0.0008507852326147258,-0.0035424111410975456,0.5324419140815735,-1.270728588104248,4.074484825134277,0.005324419122189283,-0.012707285583019257,0.040744848549366 +karman_re400,ppo,34,13.6,0.8751800060272217,0.645722508430481,0.6980370283126831,1.0424959659576416,1.1040922403335571,0.33286595344543457,-0.0021010106429457664,-0.005131779704242945,0.004055453464388847,0.008820198476314545,-0.0012549738166853786,-0.004214709158986807,-0.3528852164745331,0.2774629592895508,6.250301361083984,-0.003528852015733719,0.002774629509076476,0.06250301003456116 +karman_re400,ppo,35,14.0,0.6887016296386719,0.518332302570343,0.8188632130622864,1.0672075748443604,1.2118709087371826,0.2638551592826843,-0.0015225893585011363,-0.005638852249830961,0.0054699634201824665,0.006659686099737883,-0.004022966604679823,-0.00587278138846159,-1.095350742340088,0.9000663757324219,7.294172763824463,-0.010953507386147976,0.00900066364556551,0.07294172793626785 +karman_re400,ppo,36,14.4,0.5400296449661255,0.34481537342071533,0.9179675579071045,1.2253062725067139,1.2226108312606812,0.06401640921831131,0.001227056491188705,-0.005002647638320923,0.005414253566414118,0.0049759745597839355,-0.005516262724995613,-0.006228545680642128,-1.7638734579086304,1.0844879150390625,7.453790664672852,-0.017638733610510826,0.010844878852367401,0.07453790307044983 +karman_re400,ppo,37,14.8,0.4630378484725952,0.11973875761032104,0.9832708239555359,0.5897185802459717,1.2902241945266724,-0.003869620617479086,0.004268711432814598,-0.0023838256020098925,0.004142216872423887,0.0043223886750638485,-0.006289515644311905,-0.004855560604482889,-2.087751626968384,0.8601722717285156,6.771042346954346,-0.020877515897154808,0.008601722307503223,0.06771042197942734 +karman_re400,ppo,38,15.2,0.5051117539405823,-0.09512675553560257,0.9784529805183411,-0.8189487457275391,1.3039783239364624,-0.04956486076116562,0.003928039222955704,0.0003535848227329552,0.003299359930679202,0.0029632956720888615,-0.00669604167342186,-0.004189337603747845,-1.9509605169296265,0.4321284294128418,5.307940483093262,-0.019509604200720787,0.0043212841264903545,0.053079403936862946 +karman_re400,ppo,39,15.6,0.6700543761253357,-0.18788890540599823,0.9893054366111755,-1.291040062904358,1.120293378829956,-0.1501324325799942,0.0021881521679461002,0.002955400152131915,0.0018799538956955075,0.001816850621253252,-0.004164872691035271,-0.005817807279527187,-1.5147016048431396,-0.4734489619731903,3.7684364318847656,-0.015147015452384949,-0.004734489601105452,0.0376843623816967 +karman_re400,ppo,40,16.0,0.811444103717804,-0.25365281105041504,1.0458261966705322,-1.137983798980713,0.8503017425537109,-0.3654833137989044,-0.0004079485952388495,0.004200824536383152,0.0006372805801220238,0.0021149355452507734,-0.00033515048562549055,-0.007089936640113592,-0.7244692444801331,-2.816588878631592,1.6329827308654785,-0.00724469218403101,-0.02816588804125786,0.016329826787114143 +karman_re400,ppo,41,16.4,0.9286652207374573,-0.27140557765960693,1.1387633085250854,-0.9219917058944702,0.619404137134552,-0.5725439190864563,-0.0020132053177803755,0.005114353261888027,-0.0004111874441150576,0.003518217708915472,0.002704089507460594,-0.007185423746705055,0.16961590945720673,-4.731656074523926,0.33957362174987793,0.0016961590154096484,-0.04731655865907669,0.0033957362174987793 +karman_re400,ppo,42,16.8,1.046372413635254,-0.23207250237464905,1.2334133386611938,-0.639869213104248,0.4327157735824585,-0.610937237739563,-0.0019282907014712691,0.005496297497302294,-0.0018120715394616127,0.004326565656810999,0.004132234025746584,-0.0066722058691084385,0.9053112864494324,-5.725146293640137,-0.30934810638427734,0.00905311293900013,-0.0572514608502388,-0.0030934810638427734 +karman_re400,ppo,43,17.2,1.1467210054397583,-0.10713931918144226,1.362494945526123,-0.3372308313846588,0.1296721249818802,-0.46416541934013367,0.000595423043705523,0.004986057989299297,-0.0034794965758919716,0.0038478306960314512,0.004319638479501009,-0.005746596958488226,1.406120777130127,-6.041696548461914,-0.8243284225463867,0.014061207883059978,-0.06041696295142174,-0.008243284188210964 +karman_re400,ppo,44,17.6,1.1716506481170654,0.05486166477203369,1.4131550788879395,-0.04554692283272743,-0.05352971702814102,0.11405301094055176,0.004359413869678974,0.0022689304314553738,-0.005347194150090218,0.0014622965827584267,0.0037760233972221613,-0.004612279590219259,1.723812222480774,-5.983953952789307,-1.3163657188415527,0.01723812147974968,-0.05983953922986984,-0.013163656927645206 +karman_re400,ppo,45,18.0,1.3112363815307617,0.005412344820797443,1.332961082458496,0.22056607902050018,0.21635925769805908,0.5882806181907654,0.004101784434169531,-0.00011627525236690417,-0.0075715165585279465,0.001365029951557517,0.004206467419862747,-0.002894841367378831,1.7685611248016357,-5.514436721801758,-1.442866325378418,0.01768561080098152,-0.05514436587691307,-0.014428663067519665 +karman_re400,ppo,46,18.4,1.4555097818374634,-0.025947589427232742,1.18500554561615,0.3824236989021301,0.5811022520065308,0.5508230328559875,0.002412260975688696,-0.003012838074937463,-0.005819106008857489,0.005260608624666929,0.003839086974039674,-0.001525202882476151,2.0609073638916016,-4.649646282196045,-1.183260440826416,0.020609073340892792,-0.04649646207690239,-0.011832604184746742 +karman_re400,ppo,47,18.8,1.2550865411758423,0.0804920494556427,1.018151044845581,0.4860999584197998,0.9073861837387085,0.3633980453014374,-0.00014329011901281774,-0.004749910905957222,-0.0009787590242922306,0.00746246799826622,0.0031590366270393133,-0.0013651966582983732,1.7059117555618286,-2.4003520011901855,1.5454142093658447,0.017059117555618286,-0.024003518745303154,0.015454141423106194 +karman_re400,ppo,48,19.2,1.1013743877410889,0.08718661963939667,0.904313862323761,0.6247190237045288,1.0708966255187988,0.33191654086112976,-0.002342232270166278,-0.005432901903986931,0.002638012869283557,0.008060775697231293,0.001366467447951436,-0.0030580847524106503,0.7016224265098572,-0.741879940032959,4.634184837341309,0.007016224320977926,-0.007418799214065075,0.046341847628355026 +karman_re400,ppo,49,19.6,1.0122814178466797,0.06482397764921188,0.8936009407043457,0.7489950656890869,1.1800470352172852,0.26751822233200073,-0.002777306130155921,-0.006101891398429871,0.0042791469022631645,0.007320059463381767,-0.0009013978415168822,-0.004428750369697809,-0.16787850856781006,0.0929422378540039,6.341413497924805,-0.0016787850763648748,0.0009294223855249584,0.06341413408517838 +karman_re400,ppo,50,20.0,0.9418869614601135,0.01668931171298027,0.9609410762786865,0.6449987292289734,1.252821922302246,0.17067813873291016,-0.001465133624151349,-0.006028221920132637,0.004794204141944647,0.006103949621319771,-0.0038131875917315483,-0.005941805429756641,-0.7917929887771606,0.6178345680236816,7.028162479400635,-0.00791792944073677,0.0061783455312252045,0.07028162479400635 +karman_re400,ppo,51,20.4,0.8872118592262268,-0.06833335012197495,0.9379765391349792,-0.31940993666648865,1.2276268005371094,0.0006653417367488146,0.001813922543078661,-0.0044049364514648914,0.004868370480835438,0.004594605881720781,-0.005310901906341314,-0.005615446716547012,-1.3454396724700928,0.8639478087425232,6.953232765197754,-0.013454396277666092,0.008639478124678135,0.06953232735395432 +karman_re400,ppo,52,20.8,0.8757321238517761,-0.1707170158624649,0.8697017431259155,-0.8357585668563843,1.1628910303115845,-0.13184407353401184,0.0035413724835962057,-0.0007460173219442368,0.004004828166216612,0.00420311139896512,-0.0057502733543515205,-0.004620474763214588,-1.5339354276657104,0.4088134467601776,6.073112487792969,-0.015339354053139687,0.004088134504854679,0.06073112413287163 +karman_re400,ppo,53,21.2,0.9019149541854858,-0.2758866250514984,0.8411668539047241,-0.6904406547546387,1.1438161134719849,-0.1705724149942398,0.002072395756840706,0.0019065163796767592,0.0030972182285040617,0.003701060079038143,-0.005570480599999428,-0.005238065496087074,-1.307793140411377,-0.3418080806732178,4.441543102264404,-0.013077931478619576,-0.0034180807415395975,0.0444154292345047 +karman_re400,ppo,54,21.6,0.9489721059799194,-0.34378963708877563,0.8261995911598206,-0.5515131950378418,1.1176140308380127,-0.18626616895198822,-7.580454257549718e-05,0.0038984762504696846,0.0012504513142630458,0.0032819800544530153,-0.002605524379760027,-0.007004012353718281,-1.0075995922088623,-1.2349684238433838,3.0377683639526367,-0.010075995698571205,-0.012349683791399002,0.03037768229842186 +karman_re400,ppo,55,22.0,1.0092577934265137,-0.381377249956131,0.7993350028991699,-0.47005805373191833,1.1240787506103516,-0.19702047109603882,-0.001697983592748642,0.0048101902939379215,-0.00028394913533702493,0.0035716595593839884,0.0012452994706109166,-0.007832037284970284,-0.34000518918037415,-3.343649387359619,1.173011302947998,-0.0034000517334789038,-0.03343649208545685,0.011730113066732883 +karman_re400,ppo,56,22.4,1.091426134109497,-0.4254477620124817,0.7488340735435486,-0.4144868552684784,1.0750654935836792,-0.12139253318309784,-0.0020400702487677336,0.005127578508108854,-0.0015459455316886306,0.003919288050383329,0.004001645836979151,-0.007294665556401014,0.34846314787864685,-5.127974033355713,-0.03527688980102539,0.003484631422907114,-0.051279738545417786,-0.0003527688968461007 +karman_re400,ppo,57,22.8,1.1985591650009155,-0.4459019601345062,0.6607998609542847,-0.34606513381004333,0.9811656475067139,-0.030772456899285316,-0.000971645291429013,0.005372436251491308,-0.003355729393661022,0.004461084958165884,0.005428176373243332,-0.006108213681727648,0.9204627871513367,-5.9937238693237305,-0.7183279991149902,0.009204627946019173,-0.059937238693237305,-0.00718327984213829 +karman_re400,ppo,58,23.2,1.413199782371521,-0.5302413702011108,0.5504137873649597,-0.2124740034341812,0.9206987619400024,0.04354904219508171,0.0015406912425532937,0.004133016336709261,-0.005051969084888697,0.003870680695399642,0.005161451641470194,-0.004968763794749975,1.395890712738037,-6.226719379425049,-1.3382720947265625,0.013958906754851341,-0.06226719170808792,-0.01338272076100111 +karman_re400,ppo,59,23.6,1.6984548568725586,-0.43448612093925476,0.4400530755519867,0.00010156521602766588,0.9092464447021484,0.12205453217029572,0.004122002515941858,0.0011788720730692148,-0.006903182715177536,0.0025768852792680264,0.00438332837074995,-0.004087209235876799,1.6018346548080444,-5.850415229797363,-1.602891445159912,0.016018345952033997,-0.058504149317741394,-0.016028914600610733 +karman_re400,ppo,60,24.0,1.691666603088379,0.18149778246879578,0.3850797712802887,0.26992884278297424,0.927664041519165,0.21032585203647614,0.0029529070015996695,-0.001175368670374155,-0.007360999006778002,0.004057595040649176,0.004378513433039188,-0.0028886720538139343,1.6479905843734741,-5.1591033935546875,-1.3835864067077637,0.01647990569472313,-0.05159103125333786,-0.013835864141583443 +karman_re400,ppo,61,24.4,1.3521403074264526,0.5875465869903564,0.4262982904911041,0.5067522525787354,0.9716142416000366,0.2668326497077942,0.0011625929037109017,-0.0036072616931051016,-0.003711757715791464,0.00690476456657052,0.00353277288377285,-0.0019474204163998365,1.5228214263916016,-3.9127745628356934,0.1000356674194336,0.015228213742375374,-0.03912774473428726,0.0010003566276282072 +karman_re400,ppo,62,24.8,1.069915771484375,0.6136089563369751,0.5217452049255371,0.6614376902580261,1.0360019207000732,0.2919617295265198,-0.0012010243954136968,-0.00472036050632596,0.000655822514090687,0.00788947194814682,0.0017128045437857509,-0.002448483370244503,0.6925185918807983,-1.7176542282104492,3.3684022426605225,0.006925185676664114,-0.017176542431116104,0.03368402272462845 +karman_re400,ppo,63,25.2,0.9183995723724365,0.503240704536438,0.6145185232162476,0.784629762172699,1.115683674812317,0.2989601790904999,-0.0023056992795318365,-0.005397328641265631,0.00342407519929111,0.00750923715531826,-0.00039042465505190194,-0.004028353840112686,-0.17426052689552307,-0.24389506876468658,5.734882354736328,-0.0017426052363589406,-0.0024389505852013826,0.0573488213121891 +karman_re400,ppo,64,25.6,0.8227490186691284,0.34118083119392395,0.7579324841499329,0.8437731266021729,1.1858826875686646,0.23578692972660065,-0.0017561614513397217,-0.006027741823345423,0.00462679099291563,0.006274821236729622,-0.003388171549886465,-0.005082863382995129,-0.8550863265991211,0.3758702278137207,6.806817054748535,-0.008550862781703472,0.0037587021943181753,0.06806816905736923 +karman_re400,ppo,65,26.0,0.7542486786842346,0.21104252338409424,0.941348135471344,0.9558555483818054,1.2247601747512817,0.09001078456640244,0.001002274570055306,-0.005504244472831488,0.004964766092598438,0.004809861537069082,-0.004892135504633188,-0.005393374711275101,-1.410834550857544,1.0422801971435547,7.200657844543457,-0.014108344912528992,0.010422801598906517,0.07200657576322556 +karman_re400,ppo,66,26.4,0.7196439504623413,0.12130971997976303,1.0686118602752686,0.8053579926490784,1.3010581731796265,0.09424477815628052,0.003815061179921031,-0.0025243335403501987,0.003962672781199217,0.00420657591894269,-0.00656121363863349,-0.003932515159249306,-1.7449835538864136,0.899327278137207,6.709697246551514,-0.017449835315346718,0.008993272669613361,0.06709697097539902 +karman_re400,ppo,67,26.8,0.7325073480606079,0.03784453123807907,1.0428072214126587,-0.14794956147670746,1.2679510116577148,0.002648588502779603,0.00392794469371438,0.0003207986301276833,0.003631315194070339,0.0036911561619490385,-0.007831673137843609,-0.003611077321693301,-1.7485179901123047,0.849119246006012,5.373626708984375,-0.017485179007053375,0.008491192013025284,0.05373626574873924 +karman_re400,ppo,68,27.2,0.7534131407737732,-0.06835965812206268,0.9338527917861938,-1.0181083679199219,1.2297160625457764,-0.18498432636260986,0.001707256305962801,0.0030321714002639055,0.002641635946929455,0.0027207150124013424,-0.005775642581284046,-0.006570503581315279,-1.5990418195724487,0.41223955154418945,4.272273063659668,-0.015990417450666428,0.004122395534068346,0.04272272810339928 +karman_re400,ppo,69,27.6,0.7839522361755371,-0.19082748889923096,0.8586105108261108,-1.0404613018035889,1.1932271718978882,-0.21564631164073944,-0.0006712637841701508,0.004555003251880407,0.0014972561039030552,0.0025067341048270464,-0.0013074747985228896,-0.008075663819909096,-1.1158195734024048,-2.1386451721191406,2.258610248565674,-0.011158195324242115,-0.02138645201921463,0.022586101666092873 +karman_re400,ppo,70,28.0,0.8611797094345093,-0.26100340485572815,0.8178041577339172,-0.7423739433288574,1.1121951341629028,-0.2251884490251541,-0.002292732708156109,0.0051871235482394695,-0.00021552872203756124,0.003506991546601057,0.002350828843191266,-0.008327680639922619,-0.36118414998054504,-4.535285949707031,0.6945343017578125,-0.003611841471865773,-0.04535285755991936,0.006945342756807804 +karman_re400,ppo,71,28.4,0.9626020789146423,-0.2906372547149658,0.7812879681587219,-0.6128624081611633,1.039589285850525,-0.19596366584300995,-0.0022737467661499977,0.005607143044471741,-0.0021382675040513277,0.004163727629929781,0.004524501506239176,-0.007298688404262066,0.3913383185863495,-5.798250198364258,-0.22860002517700195,0.00391338299959898,-0.05798250064253807,-0.0022860001772642136 +karman_re400,ppo,72,28.8,1.0726466178894043,-0.27897968888282776,0.6895051002502441,-0.562690258026123,0.9814000129699707,-0.1364094465970993,-0.00043672454194165766,0.005345955491065979,-0.003951373975723982,0.004922231659293175,0.005222663749009371,-0.005769708659499884,1.0092662572860718,-6.318297386169434,-0.9785236716270447,0.010092662647366524,-0.06318297237157822,-0.009785236790776253 +karman_re400,ppo,73,29.2,1.1785660982131958,-0.23121356964111328,0.5397254824638367,-0.518772304058075,0.9335079193115234,-0.05165810137987137,0.002533810446038842,0.0029560986440628767,-0.005726465955376625,0.004025263246148825,0.004720122087746859,-0.0046742623671889305,1.3428852558135986,-6.096965789794922,-1.2881989479064941,0.013428851962089539,-0.06096965819597244,-0.01288198959082365 +karman_re400,ppo,74,29.6,1.302823543548584,-0.2912273108959198,0.3227497339248657,-0.3680456876754761,0.9027195572853088,0.04267745092511177,0.0035415426827967167,-7.344991172431037e-05,-0.007084790617227554,0.003941822797060013,0.0039899046532809734,-0.004017624072730541,1.3702257871627808,-5.511904716491699,-1.1734657287597656,0.01370225753635168,-0.055119045078754425,-0.011734656989574432 +karman_re400,ppo,75,30.0,1.3520320653915405,-0.2113054245710373,0.15190650522708893,0.07530777901411057,0.8970198631286621,0.13501358032226562,0.0014791705179959536,-0.0025945899542421103,-0.0057313996367156506,0.006464304402470589,0.003334029810503125,-0.003196620848029852,1.3913111686706543,-4.4556779861450195,-0.4791392982006073,0.013913111761212349,-0.04455677792429924,-0.00479139294475317 +karman_re400,ppo,76,30.4,1.1933406591415405,0.13622456789016724,0.23353181779384613,0.5333795547485352,0.919157862663269,0.19475530087947845,-0.0004801314207725227,-0.004283488728106022,-0.001328704529441893,0.008141014724969864,0.0019154463661834598,-0.0026251794770359993,1.145285725593567,-2.4918034076690674,1.7614679336547852,0.011452857404947281,-0.024918032810091972,0.017614679411053658 +karman_re400,ppo,77,30.8,1.133026361465454,0.32022425532341003,0.47454383969306946,0.6633532643318176,0.9692238569259644,0.23142875730991364,-0.002057404024526477,-0.005012345965951681,0.002167212311178446,0.0082528842613101,-0.00015038602577988058,-0.0035740192979574203,0.2761392593383789,-0.529207706451416,4.72241735458374,0.0027613926213234663,-0.005292077083140612,0.047224171459674835 +karman_re400,ppo,78,31.2,1.014631748199463,0.3736512362957001,0.6203933954238892,0.7028026580810547,1.041308879852295,0.2485724687576294,-0.0020807739347219467,-0.005624123848974705,0.004220963921397924,0.007119474932551384,-0.002326433779671788,-0.004218922462314367,-0.4345681965351105,0.42584228515625,6.365705490112305,-0.004345681983977556,0.004258422646671534,0.06365705281496048 +karman_re400,ppo,79,31.6,0.8901705741882324,0.33016371726989746,0.7048293948173523,0.6861379146575928,1.0949671268463135,0.1936650425195694,-0.0003741449909284711,-0.0056466590613126755,0.0052490015514194965,0.0055988323874771595,-0.004008823540061712,-0.005419263616204262,-1.037143349647522,0.9968738555908203,7.126004219055176,-0.010371433570981026,0.009968738071620464,0.07126004248857498 +karman_re400,ppo,80,32.0,0.7973641157150269,0.23339898884296417,0.7083972096443176,0.7266709208488464,1.15312659740448,0.1677732914686203,0.0023535166401416063,-0.0041206637397408485,0.005047446582466364,0.004409374203532934,-0.005076291039586067,-0.004829163663089275,-1.5573043823242188,0.8723549842834473,7.061666965484619,-0.015573043376207352,0.008723549544811249,0.07061666995286942 +karman_re400,ppo,81,32.4,0.7485774159431458,0.11332704871892929,0.5151030421257019,0.8334041833877563,1.3989765644073486,0.254754900932312,0.004313335753977299,-0.0007101079681888223,0.003686741925776005,0.004041614942252636,-0.006628481671214104,-0.003288316074758768,-1.7658759355545044,0.6659879684448242,6.228294372558594,-0.017658758908510208,0.006659879349172115,0.06228294223546982 +karman_re400,ppo,82,32.8,0.7487285137176514,-0.005010291934013367,0.23635314404964447,0.2648349404335022,1.4440404176712036,0.15428873896598816,0.00269480817951262,0.001655441359616816,0.002907420741394162,0.0027946464251726866,-0.006837836466729641,-0.005308335646986961,-1.8377857208251953,0.6566753387451172,4.772398948669434,-0.01837785728275776,0.0065667531453073025,0.04772398993372917 +karman_re400,ppo,83,33.2,0.7742340564727783,-0.11859150230884552,0.3007941246032715,-0.6669186353683472,1.22135329246521,-0.25720638036727905,0.0005405183765105903,0.003900335170328617,0.0018873452208936214,0.0021523809991776943,-0.0028276548255234957,-0.007542273495346308,-1.7264574766159058,-0.7001354694366455,3.2798731327056885,-0.017264574766159058,-0.007001354359090328,0.032798729836940765 +karman_re400,ppo,84,33.6,0.8250122666358948,-0.2043500691652298,0.5737706422805786,-0.8659061193466187,1.131615161895752,-0.22108715772628784,-0.0017033731564879417,0.00480631785467267,0.0005945764714851975,0.0027405607979744673,0.001161321415565908,-0.008305585011839867,-0.8694216012954712,-3.6806063652038574,1.2870540618896484,-0.008694215677678585,-0.03680606186389923,0.012870539911091328 +karman_re400,ppo,85,34.0,0.907422661781311,-0.25178733468055725,0.7071220874786377,-0.720021665096283,1.0909817218780518,-0.19410425424575806,-0.002754227491095662,0.00521831214427948,-0.0007867901585996151,0.003909416031092405,0.003655258333310485,-0.0077395313419401646,0.020639590919017792,-5.4343767166137695,0.16297101974487305,0.00020639591093640774,-0.05434376746416092,0.0016297101974487305 +karman_re400,ppo,86,34.4,1.0127795934677124,-0.26115572452545166,0.7067385315895081,-0.6050503253936768,1.028384804725647,-0.18935559689998627,-0.0022824169136583805,0.005446314811706543,-0.002794137690216303,0.0052612340077757835,0.004708192776888609,-0.0064732772298157215,0.6591155529022217,-6.00868034362793,-0.36646366119384766,0.00659115519374609,-0.060086801648139954,-0.003664636518806219 +karman_re400,ppo,87,34.8,1.1136260032653809,-0.198811873793602,0.5969955921173096,-0.55645352602005,0.9659988284111023,-0.14611364901065826,0.0003362573916092515,0.004399233032017946,-0.004276556428521872,0.004846088122576475,0.00440099835395813,-0.005205280147492886,1.152735710144043,-5.903075218200684,-0.792607307434082,0.011527356691658497,-0.05903075262904167,-0.007926072925329208 +karman_re400,ppo,88,35.2,1.2260302305221558,-0.22369928658008575,0.4152540862560272,-0.5807845592498779,0.9238362312316895,-0.06872420012950897,0.0031587027478963137,0.0015458619454875588,-0.0055866907350718975,0.003338057082146406,0.003559523494914174,-0.0044242809526622295,1.241119384765625,-5.5146074295043945,-0.9313459992408752,0.012411193922162056,-0.055146072059869766,-0.009313459508121014 +karman_re400,ppo,89,35.6,1.3844656944274902,-0.3008270561695099,0.1955021321773529,-0.36598774790763855,0.8980421423912048,0.0240255706012249,0.002515179105103016,-0.00076928740600124,-0.006350008770823479,0.0034307599999010563,0.003159059677273035,-0.003438618965446949,1.1759289503097534,-4.895390033721924,-0.6696748733520508,0.011759289540350437,-0.04895389825105667,-0.006696748547255993 +karman_re400,ppo,90,36.0,1.2501060962677002,0.09795086830854416,0.09795167297124863,0.2530077397823334,0.8892481923103333,0.10402800887823105,0.0007707263575866818,-0.0031935349106788635,-0.003807586617767811,0.0061500114388763905,0.002138944575563073,-0.0025542359799146652,1.302158236503601,-3.8382692337036133,0.08482837677001953,0.013021581806242466,-0.03838269039988518,0.0008482837583869696 +karman_re400,ppo,91,36.4,1.2330337762832642,0.21485544741153717,0.312674880027771,0.6695924997329712,0.8989952802658081,0.15766845643520355,-0.001101310714147985,-0.004509303253144026,0.0003899365256074816,0.007265070453286171,0.0007763418834656477,-0.002603471977636218,0.6484752893447876,-1.6122413873672485,2.9578089714050293,0.006484752520918846,-0.01612241379916668,0.029578089714050293 +karman_re400,ppo,92,36.8,1.1530424356460571,0.26312729716300964,0.6129429340362549,0.6833885312080383,0.9443591237068176,0.2249765545129776,-0.0019813801627606153,-0.005240757018327713,0.0033669809345155954,0.007141181733459234,-0.0007188370800577104,-0.0035476682242006063,-0.016537152230739594,-0.11197804659605026,5.3271050453186035,-0.00016537151532247663,-0.0011197804706171155,0.05327104777097702 +karman_re400,ppo,93,37.2,1.038567304611206,0.2560197412967682,0.7718870639801025,0.7480044364929199,1.0455505847930908,0.25108802318573,-0.001264442689716816,-0.005749099887907505,0.004934740252792835,0.006105019245296717,-0.003119851928204298,-0.004217637702822685,-0.5689693689346313,0.4934253692626953,6.565720558166504,-0.0056896936148405075,0.004934253636747599,0.06565720587968826 +karman_re400,ppo,94,37.6,0.9396852254867554,0.1979355812072754,0.5776560306549072,1.189335584640503,1.1601707935333252,0.16631105542182922,0.001133778947405517,-0.0051275924779474735,0.005285869352519512,0.004888439085334539,-0.005035558249801397,-0.004765298217535019,-1.166558027267456,1.0784244537353516,7.117388725280762,-0.011665579862892628,0.010784244164824486,0.07117388397455215 +karman_re400,ppo,95,38.0,0.8699374198913574,0.10864768177270889,0.5307049751281738,0.8196092844009399,1.248943567276001,0.11475175619125366,0.0036522767040878534,-0.001968938857316971,0.004239475354552269,0.0043958150781691074,-0.006916424725204706,-0.004030798561871052,-1.7440669536590576,1.1636357307434082,6.7922234535217285,-0.017440669238567352,0.011636356823146343,0.06792223453521729 +karman_re400,ppo,96,38.4,0.8240325450897217,-0.006197091192007065,0.7073557376861572,-0.24913237988948822,1.3042192459106445,0.172046959400177,0.0035774281714111567,0.0007843445055186749,0.004051874857395887,0.003783854655921459,-0.0073960996232926846,-0.004358568694442511,-1.8425570726394653,0.9610309600830078,5.41136360168457,-0.01842557080090046,0.009610309265553951,0.054113633930683136 +karman_re400,ppo,97,38.8,0.813208818435669,-0.12553150951862335,0.8239334225654602,-0.8175098896026611,1.1625349521636963,-0.02078109048306942,0.001299821538850665,0.003569830907508731,0.003184911794960499,0.0028084879741072655,-0.004651457071304321,-0.006805972661823034,-1.6572593450546265,0.07117271423339844,4.1812543869018555,-0.01657259277999401,0.0007117271306924522,0.04181254282593727 +karman_re400,ppo,98,39.2,0.8471545577049255,-0.2157556116580963,0.8047683835029602,-0.7691314816474915,1.0531376600265503,-0.22163937985897064,-0.0010773164685815573,0.0048584360629320145,0.001660214620642364,0.0027361521497368813,-0.00031723862048238516,-0.007992388680577278,-1.0060440301895142,-2.55476975440979,2.1163861751556396,-0.010060439817607403,-0.0255476962774992,0.021163862198591232 +karman_re400,ppo,99,39.6,0.9185093641281128,-0.2724281847476959,0.7584996223449707,-0.6633545160293579,1.027733564376831,-0.20092426240444183,-0.0024883875157684088,0.005369263701140881,-0.00015683281526435167,0.004041213076561689,0.0029803928919136524,-0.007993132807314396,-0.17119953036308289,-4.785025596618652,0.5942249298095703,-0.00171199522446841,-0.04785025492310524,0.005942249204963446 +karman_re400,ppo,100,40.0,1.0172830820083618,-0.3127761781215668,0.7058810591697693,-0.5987792015075684,0.9938420057296753,-0.15686491131782532,-0.002328689908608794,0.0057743145152926445,-0.0022847959771752357,0.004980674013495445,0.004639920778572559,-0.0070047276094555855,0.5377872586250305,-5.803140640258789,-0.18301963806152344,0.005377872381359339,-0.05803140625357628,-0.00183019635733217 +karman_re400,ppo,101,40.4,1.1339703798294067,-0.29868271946907043,0.6186649203300476,-0.5475648045539856,0.9612563252449036,-0.11072050034999847,-0.0002778769703581929,0.005403259303420782,-0.0038384399376809597,0.005261285230517387,0.0052056265994906425,-0.005606210790574551,1.1011817455291748,-6.111189842224121,-0.8839245438575745,0.011011817492544651,-0.061111897230148315,-0.008839244954288006 +karman_re400,ppo,102,40.8,1.232264757156372,-0.19642767310142517,0.5030294060707092,-0.4333517849445343,0.9279235005378723,-0.05044712498784065,0.002611280418932438,0.003037017770111561,-0.005656228866428137,0.003782493993639946,0.004627739544957876,-0.004605981521308422,1.3563801050186157,-5.968730449676514,-1.1960968971252441,0.013563800603151321,-0.0596873015165329,-0.011960968375205994 +karman_re400,ppo,103,41.2,1.360299825668335,-0.18716053664684296,0.35160893201828003,-0.22462429106235504,0.8941587805747986,0.03309480473399162,0.003687516553327441,0.00014313735300675035,-0.007241476327180862,0.0032436861656606197,0.004122165963053703,-0.0038161971606314182,1.3548376560211182,-5.519233226776123,-1.2082014083862305,0.01354837603867054,-0.055192332714796066,-0.012082014232873917 +karman_re400,ppo,104,41.6,1.4695793390274048,-0.0651409775018692,0.2139723151922226,0.1483689397573471,0.878398060798645,0.1307021528482437,0.0017246772767975926,-0.00229220581240952,-0.006352903321385384,0.006086478941142559,0.0033910837955772877,-0.0029408985283225775,1.4291621446609497,-4.663410186767578,-0.7256107330322266,0.014291620813310146,-0.04663410037755966,-0.007256106939166784 +karman_re400,ppo,105,42.0,1.4591467380523682,0.18834447860717773,0.2976633310317993,0.5022338628768921,0.8932004570960999,0.20388567447662354,-0.00021931876835878938,-0.004091094247996807,-0.0017604668391868472,0.008255071938037872,0.002165605081245303,-0.002412531990557909,1.2737982273101807,-2.671252965927124,1.4112496376037598,0.012737981975078583,-0.026712529361248016,0.014112495817244053 +karman_re400,ppo,106,42.4,1.238603949546814,0.384581983089447,0.4992789924144745,0.5686508417129517,0.9396341443061829,0.25785398483276367,-0.0020040180534124374,-0.004844703245908022,0.002004704438149929,0.008474146015942097,0.00023344362853094935,-0.0033205009531229734,0.5146023631095886,-0.6589748859405518,4.480446815490723,0.005146023351699114,-0.0065897488966584206,0.044804468750953674 +karman_re400,ppo,107,42.8,1.012028455734253,0.3388829827308655,0.5723410248756409,0.564944326877594,1.0103280544281006,0.2973218858242035,-0.002365994267165661,-0.005381471011787653,0.004191884305328131,0.007404735777527094,-0.0018401427660137415,-0.00390314101241529,-0.293136328458786,0.3327336311340332,6.294238567352295,-0.002931363182142377,0.00332733616232872,0.06294238567352295 +karman_re400,ppo,108,43.2,0.9300150871276855,0.22097568213939667,0.5526836514472961,0.5647224187850952,1.094891905784607,0.29522162675857544,-0.0011132777435705066,-0.005524326115846634,0.005260920617729425,0.00579639058560133,-0.0039468915201723576,-0.005310698878020048,-0.9136529564857483,0.9360705018043518,7.088402271270752,-0.009136529639363289,0.009360704571008682,0.07088401913642883 +karman_re400,ppo,109,43.6,0.8967732787132263,0.1425744742155075,0.4778535068035126,0.533092737197876,1.151440143585205,0.3156181573867798,0.0016465666703879833,-0.004263490904122591,0.00519597576931119,0.004431884735822678,-0.004999425727874041,-0.005118115339428186,-1.4680452346801758,0.9698724746704102,7.081775665283203,-0.014680451713502407,0.009698724374175072,0.07081775367259979 +karman_re400,ppo,110,44.0,0.8800681829452515,0.0667390525341034,0.3629702627658844,0.4339067041873932,1.139206051826477,0.47148674726486206,0.0038853592704981565,-0.0009780366672202945,0.003925400786101818,0.004086257889866829,-0.005925324745476246,-0.0036059373524039984,-1.7144896984100342,0.6763668060302734,6.309425354003906,-0.01714489609003067,0.0067636677995324135,0.06309425085783005 +karman_re400,ppo,111,44.4,0.8729420304298401,-0.01677686721086502,0.18302881717681885,0.2011505514383316,1.1329035758972168,-0.030853448435664177,0.0026216567493975163,0.001436237944290042,0.0030145258642733097,0.0030230474658310413,-0.006481654476374388,-0.004336180631071329,-1.575506567955017,0.4595918655395508,4.832918167114258,-0.0157550647854805,0.004595918580889702,0.0483291819691658 +karman_re400,ppo,112,44.8,0.874637246131897,-0.09784575551748276,0.0816568061709404,-0.2363782525062561,1.372792363166809,-0.19759689271450043,0.0005424133851192892,0.0037763381842523813,0.0017120783450081944,0.002359233796596527,-0.0032980996184051037,-0.006654803641140461,-1.437228798866272,-0.459654301404953,3.478233575820923,-0.014372287318110466,-0.0045965430326759815,0.03478233516216278 +karman_re400,ppo,113,45.2,0.8997007012367249,-0.14262521266937256,0.21161803603172302,-0.5884035229682922,1.4139890670776367,-0.35037341713905334,-0.0016633026534691453,0.004808023106306791,0.0004563688416965306,0.0027240687049925327,0.0007755898404866457,-0.007658179383724928,-0.9914641380310059,-3.082848072052002,1.5358188152313232,-0.00991464126855135,-0.030828479677438736,0.015358188189566135 +karman_re400,ppo,114,45.6,0.9463839530944824,-0.1792260706424713,0.4805006682872772,-0.6349331736564636,1.2541990280151367,-0.4734739661216736,-0.00268575013615191,0.005345153622329235,-0.0007780902087688446,0.0037106394302099943,0.0036386074498295784,-0.007324738893657923,-0.24513253569602966,-5.103748321533203,0.33467888832092285,-0.002451325301080942,-0.05103748291730881,0.0033467886969447136 +karman_re400,ppo,115,46.0,1.0150063037872314,-0.1868150681257248,0.6458961367607117,-0.6486976742744446,1.0624992847442627,-0.4536625146865845,-0.002088243141770363,0.005615875590592623,-0.0027317150961607695,0.004687401931732893,0.0049230181612074375,-0.0062939999625086784,0.4965803623199463,-6.024824142456055,-0.3345308303833008,0.00496580358594656,-0.0602482408285141,-0.0033453081268817186 +karman_re400,ppo,116,46.4,1.1002976894378662,-0.13093851506710052,0.6591281294822693,-0.8092374205589294,0.9245808124542236,-0.34818223118782043,0.0006041636224836111,0.004596302751451731,-0.004534513223916292,0.004701334051787853,0.004715127870440483,-0.005119648762047291,1.1018908023834229,-6.1909332275390625,-0.933619499206543,0.011018907651305199,-0.061909329146146774,-0.009336194954812527 +karman_re400,ppo,117,46.8,1.1824126243591309,-0.07667651772499084,0.5194294452667236,-0.9285964965820312,0.8349659442901611,-0.21243497729301453,0.0033025655429810286,0.0012947330251336098,-0.006248367950320244,0.0035239311400800943,0.0037174755707383156,-0.004566137678921223,1.323891043663025,-5.819750785827637,-1.131960391998291,0.013238910585641861,-0.0581975057721138,-0.011319603770971298 +karman_re400,ppo,118,47.2,1.3362667560577393,-0.1876193881034851,0.4666798710823059,-0.2714707553386688,0.7843159437179565,-0.06055067479610443,0.0024994320701807737,-0.0011853143805637956,-0.006751495413482189,0.004105480387806892,0.003575867973268032,-0.0038157848175615072,1.2815521955490112,-5.052876949310303,-0.7311697006225586,0.012815522029995918,-0.050528768450021744,-0.007311696652323008 +karman_re400,ppo,119,47.6,1.3127636909484863,-0.12404948472976685,0.5840942859649658,0.635166347026825,0.773255467414856,0.0857928916811943,0.0004011743585579097,-0.0036397213116288185,-0.003715674625709653,0.0069448696449398994,0.002629813738167286,-0.0030113807879388332,1.4210094213485718,-3.901859760284424,0.17602086067199707,0.014210093766450882,-0.039018597453832626,0.0017602085135877132 +karman_re400,ppo,120,48.0,1.0924321413040161,0.2204364389181137,0.6990144848823547,0.8076727390289307,0.8152018785476685,0.18988128006458282,-0.001533634029328823,-0.0048248437233269215,0.000682189071085304,0.00786773581057787,0.0010381416650488973,-0.0030581788159906864,0.930380642414093,-1.558969259262085,3.036072254180908,0.009303806349635124,-0.015589692629873753,0.030360721051692963 +karman_re400,ppo,121,48.4,1.066447138786316,0.20639406144618988,0.7054204344749451,0.725757360458374,0.9013680815696716,0.24443313479423523,-0.002444437937811017,-0.005342206917703152,0.003569121705368161,0.007576966192573309,-0.0006522514740936458,-0.004088918678462505,0.028983529657125473,-0.07406282424926758,5.565718650817871,0.00028983529773540795,-0.0007406282238662243,0.05565718561410904 +karman_re400,ppo,122,48.8,1.0175607204437256,0.1845005750656128,0.6598982810974121,0.7145249247550964,1.011162519454956,0.2601497173309326,-0.001755037810653448,-0.0058797444216907024,0.005128837656229734,0.006397679913789034,-0.003173617646098137,-0.005116496235132217,-0.5756622552871704,0.49405908584594727,6.686887264251709,-0.0057566226460039616,0.00494059082120657,0.0668688714504242 +karman_re400,ppo,123,49.2,0.9728747010231018,0.1508459895849228,0.6098873019218445,0.7655754685401917,1.1279622316360474,0.21575157344341278,0.0007322965539060533,-0.005315823946148157,0.005590843968093395,0.005000484175980091,-0.004653364419937134,-0.005494092591106892,-1.2221518754959106,1.0007572174072266,7.207309722900391,-0.012221518903970718,0.01000757236033678,0.07207309454679489 +karman_re400,ppo,124,49.6,0.9382175207138062,0.10107751190662384,0.5847978591918945,0.7918574810028076,1.2329295873641968,0.14580851793289185,0.0033486024476587772,-0.0023026238195598125,0.004563335794955492,0.004393225535750389,-0.006013872567564249,-0.004157206974923611,-1.6731053590774536,0.8743739128112793,6.846085548400879,-0.016731053590774536,0.008743738755583763,0.0684608519077301 +karman_re400,ppo,125,50.0,0.8985113501548767,0.026797108352184296,0.49936631321907043,0.545888364315033,1.3064682483673096,0.2142188847064972,0.003656400367617607,0.0004933009040541947,0.003995371982455254,0.0036183916963636875,-0.007154092658311129,-0.003383413190022111,-1.7343580722808838,0.7118067741394043,5.507455825805664,-0.017343580722808838,0.00711806770414114,0.05507455766201019 +karman_re400,ppo,126,50.4,0.8636424541473389,-0.07464570552110672,0.41225746273994446,-0.28912457823753357,1.2110508680343628,0.059375546872615814,0.0013238689862191677,0.0031763152219355106,0.002745783654972911,0.0027475478127598763,-0.005346781108528376,-0.006243990734219551,-1.687899112701416,0.46120786666870117,4.362327575683594,-0.016878990456461906,0.004612078424543142,0.04362327605485916 +karman_re400,ppo,127,50.8,0.8655258417129517,-0.16874685883522034,0.4653243124485016,-0.841768741607666,1.0978013277053833,-0.19706526398658752,-0.0008983107400126755,0.004596180748194456,0.0017038702499121428,0.00249650445766747,-0.0005687180673703551,-0.008078599348664284,-1.184587001800537,-1.923607349395752,2.358553886413574,-0.011845869943499565,-0.019236072897911072,0.02358553744852543 +karman_re400,ppo,128,51.2,0.9144407510757446,-0.2378784567117691,0.5733404159545898,-0.8071895837783813,1.078407883644104,-0.21507616341114044,-0.002513410057872534,0.005167483817785978,0.00019709653861355036,0.0037292176857590675,0.0031444854103028774,-0.00819475669413805,-0.3442099392414093,-4.700272560119629,0.7376606464385986,-0.003442099317908287,-0.047002725303173065,0.007376606110483408 +karman_re400,ppo,129,51.6,0.9963064789772034,-0.2899293005466461,0.6265828609466553,-0.6720278263092041,1.022179126739502,-0.2022562474012375,-0.002541240770369768,0.0054594348184764385,-0.0017290491377934813,0.00463457964360714,0.004837926477193832,-0.007205662317574024,0.4129757285118103,-5.944427490234375,-0.06160354241728783,0.004129757173359394,-0.05944427475333214,-0.0006160354241728783 +karman_re400,ppo,130,52.0,1.1055936813354492,-0.29465556144714355,0.5998884439468384,-0.6051362752914429,0.9569137096405029,-0.1619955450296402,-0.0008013854967430234,0.005233498755842447,-0.0038687465712428093,0.005300935357809067,0.005208962596952915,-0.005819900427013636,0.9910364747047424,-6.226015090942383,-0.6862797737121582,0.009910364635288715,-0.06226015090942383,-0.006862797774374485 +karman_re400,ppo,131,52.4,1.2082914113998413,-0.31275853514671326,0.5221044421195984,-0.5146542191505432,0.9141164422035217,-0.10149554908275604,0.00224831560626626,0.0030256465543061495,-0.00573811074718833,0.003965439274907112,0.0044851480051875114,-0.004881436936557293,1.3565856218338013,-5.9724016189575195,-1.1237678527832031,0.013565856032073498,-0.05972401425242424,-0.011237678118050098 +karman_re400,ppo,132,52.8,1.2545872926712036,-0.404005229473114,0.427501916885376,-0.3318375051021576,0.8894345164299011,-0.02270796336233616,0.0035484859254211187,0.0003500298480503261,-0.006895212922245264,0.0030259822960942984,0.004172010812908411,-0.0039524780586361885,1.3970674276351929,-5.4946393966674805,-1.2336230278015137,0.013970674015581608,-0.05494639277458191,-0.012336229905486107 +karman_re400,ppo,133,53.2,1.374815821647644,-0.05844008922576904,0.2976781725883484,-0.04679194465279579,0.8749480247497559,0.07206133008003235,0.0017003389075398445,-0.0022429293021559715,-0.006139862351119518,0.005379455629736185,0.0035347978118807077,-0.003066020319238305,1.4470620155334473,-4.796726226806641,-0.8459320664405823,0.014470620080828667,-0.04796726256608963,-0.008459320291876793 +karman_re400,ppo,134,53.6,1.554195523262024,0.16977658867835999,0.2565908133983612,0.3355807065963745,0.8859002590179443,0.14612574875354767,-0.0001525550032965839,-0.004129199311137199,-0.0018530342495068908,0.007462280802428722,0.00224800081923604,-0.0025111380964517593,1.2556699514389038,-2.980093002319336,1.2636537551879883,0.012556699104607105,-0.029800929129123688,0.012636537663638592 +karman_re400,ppo,135,54.0,1.4175877571105957,0.45046359300613403,0.3922758102416992,0.5728948712348938,0.9269830584526062,0.19106857478618622,-0.0020258338190615177,-0.00492859585210681,0.0020047377329319715,0.007950326427817345,0.00034706643782556057,-0.003349781734868884,0.5912666916847229,-0.9527804255485535,4.22676944732666,0.00591266667470336,-0.00952780432999134,0.04226769506931305 +karman_re400,ppo,136,54.4,1.1590049266815186,0.5070303082466125,0.5483248829841614,0.6251943707466125,0.9914477467536926,0.22243589162826538,-0.002383085200563073,-0.005544746294617653,0.004319238476455212,0.0070807854644954205,-0.0015744541306048632,-0.004067433997988701,-0.24187202751636505,0.16268634796142578,6.204689979553223,-0.0024187201634049416,0.0016268634935840964,0.062046896666288376 +karman_re400,ppo,137,54.8,0.9862700700759888,0.3814558684825897,0.6259629726409912,0.6533511877059937,1.0775337219238281,0.2151164412498474,-0.0009579570032656193,-0.005665672942996025,0.005242886021733284,0.005775586236268282,-0.0039605130441486835,-0.005274767987430096,-0.9054875373840332,0.7337236404418945,7.116855621337891,-0.009054875001311302,0.007337236311286688,0.07116855680942535 +karman_re400,ppo,138,55.2,0.9047977924346924,0.2547105848789215,0.66070157289505,0.6784276366233826,1.1603890657424927,0.1610458344221115,0.002060031984001398,-0.004169332329183817,0.0048439656384289265,0.004616697784513235,-0.005686240736395121,-0.005057265982031822,-1.4864755868911743,0.9677858352661133,7.163269996643066,-0.014864755794405937,0.009677858091890812,0.07163269817829132 +karman_re400,ppo,139,55.6,0.8531996011734009,0.13246329128742218,0.5962799191474915,0.7370575666427612,1.258736252784729,0.3050341308116913,0.004096950404345989,-0.0007785361958667636,0.003832935355603695,0.004301429260522127,-0.006848766002804041,-0.0040594772435724735,-1.7657060623168945,0.8689241409301758,6.283315181732178,-0.01765706017613411,0.008689241483807564,0.06283315271139145 +karman_re400,ppo,140,56.0,0.8214653134346008,0.004685205407440662,0.3815953731536865,0.45915940403938293,1.2459675073623657,0.22256633639335632,0.0024340911768376827,0.001848867628723383,0.003382517723366618,0.0033923748414963484,-0.006695997901260853,-0.0052730427123606205,-1.761622428894043,0.615234375,4.819914817810059,-0.01761622354388237,0.006152343470603228,0.04819914698600769 +karman_re400,ppo,141,56.4,0.8183082342147827,-0.11481686681509018,0.24931387603282928,-0.37225472927093506,1.203052282333374,-0.21123118698596954,0.0003062165342271328,0.004107148386538029,0.002079531317576766,0.00264061545021832,-0.0030826819129288197,-0.007338888477534056,-1.5904144048690796,-0.5395760536193848,3.464695453643799,-0.015904143452644348,-0.005395760294049978,0.034646954387426376 +karman_re400,ppo,142,56.8,0.859402060508728,-0.1881660521030426,0.39251407980918884,-0.858808696269989,1.1819144487380981,-0.23429132997989655,-0.001926960307173431,0.005063188262283802,0.0006583721260540187,0.003074825508520007,0.001110524288378656,-0.008235728368163109,-0.9048214554786682,-3.3552918434143066,1.4688935279846191,-0.009048214182257652,-0.03355291858315468,0.01468893513083458 +karman_re400,ppo,143,57.2,0.932945728302002,-0.23209209740161896,0.575179934501648,-0.8069575428962708,1.0819610357284546,-0.2688840925693512,-0.002773757791146636,0.005443626083433628,-0.0007499692728742957,0.0041406466625630856,0.003873129142448306,-0.00773691525682807,-0.040229640901088715,-5.34986686706543,0.2359025478363037,-0.0004022963985335082,-0.05349866673350334,0.002359025413170457 +karman_re400,ppo,144,57.6,1.0276058912277222,-0.24442929029464722,0.6426171660423279,-0.7402520179748535,0.9907821416854858,-0.25118812918663025,-0.0019184030825272202,0.0057326555252075195,-0.0028901260811835527,0.005225162021815777,0.005132534075528383,-0.006520572118461132,0.6610097885131836,-6.107329845428467,-0.37775373458862305,0.0066100978292524815,-0.06107329577207565,-0.0037775372620671988 +karman_re400,ppo,145,58.0,1.124738335609436,-0.1974542737007141,0.6541175842285156,-0.6885138750076294,0.9204847812652588,-0.19552837312221527,0.0009940871968865395,0.0045305220410227776,-0.004803712014108896,0.004835990257561207,0.0048412783071398735,-0.005223308689892292,1.2061551809310913,-6.204589366912842,-0.9882239699363708,0.012061551213264465,-0.06204589083790779,-0.009882239624857903 +karman_re400,ppo,146,58.4,1.230523943901062,-0.1474160999059677,0.5965753793716431,-0.6419448852539062,0.8728874921798706,-0.11780402809381485,0.003545984858646989,0.001201618928462267,-0.00665076682344079,0.003603653982281685,0.00396256148815155,-0.004522750619798899,1.3717739582061768,-5.817384719848633,-1.2378344535827637,0.013717738911509514,-0.05817384645342827,-0.012378344312310219 +karman_re400,ppo,147,58.8,1.416398286819458,-0.2679276168346405,0.3479336202144623,-0.5009122490882874,0.8389832377433777,-0.01967349834740162,0.0025082784704864025,-0.0012004575692117214,-0.007216144818812609,0.00453282380476594,0.003788440255448222,-0.0036977138370275497,1.367691159248352,-5.056492805480957,-0.8880157470703125,0.01367691159248352,-0.050564926117658615,-0.00888015702366829 +karman_re400,ppo,148,59.2,1.357955813407898,-0.02108139917254448,0.15053491294384003,0.12106943875551224,0.826826810836792,0.09333069622516632,0.0004973756149411201,-0.00362098659388721,-0.003949194680899382,0.0075545404106378555,0.0027716646436601877,-0.002895265817642212,1.530912160873413,-3.895921230316162,0.09926128387451172,0.015309121459722519,-0.038959212601184845,0.0009926127968356013 +karman_re400,ppo,149,59.6,1.266939401626587,0.25454336404800415,0.281497597694397,0.6745455265045166,0.8577218055725098,0.17635656893253326,-0.0015038098208606243,-0.004696240648627281,0.0006205248646438122,0.008586407639086246,0.0011789776617661119,-0.0029373220168054104,0.861208975315094,-1.534376621246338,3.204362154006958,0.008612089790403843,-0.01534376572817564,0.03204362094402313 +karman_re400,ppo,150,60.0,1.1392205953598022,0.3028700649738312,0.4868942201137543,0.772950291633606,0.9278035163879395,0.22454200685024261,-0.0024394821375608444,-0.005219467915594578,0.003586527658626437,0.008105185814201832,-0.0006682751118205488,-0.004057181999087334,0.0033791661262512207,0.03181934356689453,5.720905780792236,3.379166082595475e-05,0.0003181934298481792,0.05720905587077141 +karman_re400,ppo,151,60.4,1.0488892793655396,0.2792966365814209,0.5882558226585388,0.767102837562561,1.0195245742797852,0.2404015213251114,-0.0018783726263791323,-0.005708055570721626,0.005171970929950476,0.006634501740336418,-0.003333464963361621,-0.005145137198269367,-0.6531449556350708,0.6033287048339844,6.840093612670898,-0.0065314495004713535,0.006033286917954683,0.06840093433856964 +karman_re400,ppo,152,60.8,0.9846212267875671,0.22573736310005188,0.6305943131446838,0.8006480932235718,1.1077667474746704,0.20165430009365082,0.0004997095093131065,-0.005275196395814419,0.005650998558849096,0.004989003762602806,-0.004679834004491568,-0.005678867921233177,-1.279382586479187,1.0682954788208008,7.281451225280762,-0.012793825939297676,0.010682954452931881,0.07281450927257538 +karman_re400,ppo,153,61.2,0.9483551979064941,0.1692485362291336,0.7067329287528992,0.7924774289131165,1.1683320999145508,0.2339434176683426,0.003222533268854022,-0.0024830864276736975,0.004652428440749645,0.004346530884504318,-0.005569615866988897,-0.004211404826492071,-1.6860872507095337,0.8313170075416565,6.869892120361328,-0.016860872507095337,0.008313169702887535,0.06869892030954361 +karman_re400,ppo,154,61.6,0.9003633260726929,0.1133880540728569,0.7496809363365173,0.6886748671531677,1.1719311475753784,0.35168370604515076,0.0037292081397026777,0.0002762664225883782,0.003777740290388465,0.0035123161505907774,-0.006889494601637125,-0.00287771038711071,-1.6471291780471802,0.590703010559082,5.546701431274414,-0.016471290960907936,0.005907029844820499,0.05546701326966286 +karman_re400,ppo,155,62.0,0.8398552536964417,0.019721029326319695,0.6767991781234741,-0.058227408677339554,1.0973396301269531,-0.17372575402259827,0.0015224273083731532,0.0029043075628578663,0.0024273341987282038,0.0025057366583496332,-0.005432025995105505,-0.005789082031697035,-1.5047544240951538,0.5597772598266602,4.360933303833008,-0.015047543682157993,0.005597772542387247,0.04360933229327202 +karman_re400,ppo,156,62.4,0.8228752613067627,-0.10043945908546448,0.6157484650611877,-0.8281590342521667,1.1398844718933105,-0.23828458786010742,-0.0007049468695186079,0.004414623137563467,0.001464946661144495,0.002256794134154916,-0.0007131003658287227,-0.007757927291095257,-1.08560311794281,-1.8287373781204224,2.338024616241455,-0.010856030508875847,-0.018287373706698418,0.02338024601340294 +karman_re400,ppo,157,62.8,0.8727973103523254,-0.18480941653251648,0.6483713388442993,-0.9252092242240906,1.118789792060852,-0.2307633012533188,-0.0023117954842746258,0.005043892655521631,0.00013260255218483508,0.0033689066767692566,0.0031351163052022457,-0.007985209114849567,-0.35207149386405945,-4.632295608520508,0.7254886627197266,-0.0035207148175686598,-0.046322956681251526,0.007254886440932751 +karman_re400,ppo,158,63.2,0.9622148275375366,-0.23376810550689697,0.6772303581237793,-0.8126335144042969,1.055294394493103,-0.21561859548091888,-0.0023603634908795357,0.005417562555521727,-0.0016599163645878434,0.004330432042479515,0.004820163361728191,-0.00695243664085865,0.39161771535873413,-5.9980926513671875,-0.09025955200195312,0.003916176967322826,-0.05998092517256737,-0.0009025955223478377 +karman_re400,ppo,159,63.6,1.076087474822998,-0.22914808988571167,0.6666821837425232,-0.7645955681800842,0.9952000975608826,-0.1738888919353485,-0.0006481999298557639,0.005206161644309759,-0.0039906888268888,0.005136561580002308,0.005006091203540564,-0.005664642434567213,0.9596328735351562,-6.261660099029541,-0.67779541015625,0.009596328251063824,-0.06261660158634186,-0.006777953822165728 +karman_re400,ppo,160,64.0,1.181235909461975,-0.1578555852174759,0.6365852952003479,-0.6799526214599609,0.9499046206474304,-0.11048975586891174,0.0025108850095421076,0.0028539556078612804,-0.005994876846671104,0.003820243291556835,0.0040669371373951435,-0.004916798323392868,1.328938603401184,-5.9539337158203125,-1.1345782279968262,0.013289385475218296,-0.05953933671116829,-0.011345782317221165 +karman_re400,ppo,161,64.4,1.2648402452468872,-0.2438567578792572,0.4594460725784302,-0.5896931290626526,0.9071986675262451,-0.025567907840013504,0.0034775715321302414,0.00031881601898930967,-0.007122851442545652,0.003161804750561714,0.0038746772333979607,-0.004011333454400301,1.329626202583313,-5.442336082458496,-1.2020392417907715,0.013296261429786682,-0.05442335829138756,-0.012020392343401909 +karman_re400,ppo,162,64.8,1.1983532905578613,-0.03212011232972145,0.21694141626358032,-0.0471125990152359,0.8800289034843445,0.07372895628213882,0.001629468402825296,-0.00251623778603971,-0.005685980897396803,0.005601854529231787,0.0034272875636816025,-0.003055584616959095,1.4214791059494019,-4.749961853027344,-0.7792959213256836,0.014214790426194668,-0.04749961569905281,-0.007792958989739418 +karman_re400,ppo,163,65.2,1.2259132862091064,0.1909533441066742,0.2713993489742279,0.6268026828765869,0.8877498507499695,0.15147072076797485,-0.00030928978230804205,-0.004277428612112999,-0.0012569539248943329,0.007321354933083057,0.0022061034105718136,-0.0024916641414165497,1.0587382316589355,-2.767601490020752,1.6366018056869507,0.01058738213032484,-0.027676014229655266,0.0163660179823637 +karman_re400,ppo,164,65.6,1.1733535528182983,0.257038950920105,0.48359474539756775,0.8028503656387329,0.9343324303627014,0.1987529695034027,-0.0020084527786821127,-0.005106911528855562,0.0025115609169006348,0.007633523549884558,0.00025445088976994157,-0.00357958790846169,0.3149734139442444,-0.7974259853363037,4.535414695739746,0.0031497341115027666,-0.007974259555339813,0.045354146510362625 +karman_re400,ppo,165,66.0,1.0622377395629883,0.26524996757507324,0.6377290487289429,0.7343318462371826,1.008923053741455,0.22752194106578827,-0.002043723128736019,-0.005749295931309462,0.004572173580527306,0.006748039275407791,-0.0018955097766593099,-0.0043289619497954845,-0.3937113583087921,0.20125055313110352,6.278038024902344,-0.00393711356446147,0.002012505428865552,0.06278038024902344 +karman_re400,ppo,166,66.4,0.9697557091712952,0.21485763788223267,0.6929710507392883,0.7153065204620361,1.0953789949417114,0.20517300069332123,-0.00022231170441955328,-0.005784618202596903,0.005379545036703348,0.005465979687869549,-0.00418606773018837,-0.005296390037983656,-0.9728901982307434,0.7862233519554138,7.071483135223389,-0.009728902019560337,0.007862233556807041,0.07071483135223389 +karman_re400,ppo,167,66.8,0.9052865505218506,0.13610965013504028,0.6702338457107544,0.7445175051689148,1.1592963933944702,0.11644258350133896,0.0026946277357637882,-0.0038609588518738747,0.004682785831391811,0.004516493063420057,-0.00631110742688179,-0.004597056657075882,-1.5237764120101929,0.9857974052429199,7.07699728012085,-0.015237763524055481,0.009857974015176296,0.07076997309923172 +karman_re400,ppo,168,67.2,0.8554393649101257,0.03358371555805206,0.46367785334587097,0.6809616088867188,1.2905117273330688,0.1158394068479538,0.00432294188067317,-0.0005742133362218738,0.003982380498200655,0.004236432723701,-0.007807527668774128,-0.004054739605635405,-1.771217942237854,1.095573902130127,6.12998104095459,-0.017712179571390152,0.010955738835036755,0.06129980832338333 +karman_re400,ppo,169,67.6,0.8291522264480591,-0.08535207062959671,0.26816651225090027,-0.07974106073379517,1.4161304235458374,0.16491597890853882,0.0024369710590690374,0.0021542024333029985,0.0036696884781122208,0.00326922838576138,-0.006877690553665161,-0.006285133305937052,-1.9029957056045532,0.8514671921730042,4.846771717071533,-0.019029956310987473,0.008514671586453915,0.048467714339494705 +karman_re400,ppo,170,68.0,0.8420730829238892,-0.19312483072280884,0.3772558271884918,-0.7828003764152527,1.1969645023345947,-0.08545266091823578,0.0002433384070172906,0.004285603296011686,0.0025585803668946028,0.002640778198838234,-0.0025932409334927797,-0.008027099072933197,-1.7367842197418213,-0.9655233025550842,3.296995162963867,-0.01736784167587757,-0.009655232541263103,0.03296995162963867 +karman_re400,ppo,171,68.4,0.8929154872894287,-0.2579300105571747,0.5801393389701843,-0.8072660565376282,1.070391058921814,-0.23656342923641205,-0.0020258782897144556,0.005095141474157572,0.0007359220762737095,0.0033777612261474133,0.0014397777849808335,-0.008708355948328972,-0.8208981156349182,-3.8012490272521973,1.3510513305664062,-0.008208980783820152,-0.038012489676475525,0.013510513119399548 +karman_re400,ppo,172,68.8,0.9718660116195679,-0.3024178147315979,0.6617727875709534,-0.6817081570625305,1.0102152824401855,-0.2311192750930786,-0.0028550131246447563,0.0054788244888186455,-0.0009157566237263381,0.004590027499943972,0.003992936108261347,-0.007938082329928875,0.11044815182685852,-5.52547550201416,0.15324091911315918,0.0011044815182685852,-0.055254753679037094,0.00153240910731256 +karman_re400,ppo,173,69.2,1.0760706663131714,-0.3198888301849365,0.6516960859298706,-0.6347107887268066,0.948818027973175,-0.19835050404071808,-0.0020729429088532925,0.005621845833957195,-0.002945302752777934,0.0057061403058469296,0.005047002341598272,-0.006535115651786327,0.7825253009796143,-6.078378677368164,-0.4274168014526367,0.00782525260001421,-0.060783784836530685,-0.00427416805177927 +karman_re400,ppo,174,69.6,1.189170241355896,-0.2665899693965912,0.5939728617668152,-0.5771190524101257,0.9016353487968445,-0.14211013913154602,0.0008450682507827878,0.0044413404539227486,-0.004647322464734316,0.00496731698513031,0.004697670228779316,-0.005181090906262398,1.2748684883117676,-5.993819713592529,-0.8881149291992188,0.012748684734106064,-0.05993819609284401,-0.008881148882210255 +karman_re400,ppo,175,70.0,1.3227827548980713,-0.307588666677475,0.532708466053009,-0.431808739900589,0.874057948589325,-0.07000187784433365,0.0035765713546425104,0.001411405042745173,-0.0063711837865412235,0.0034969979897141457,0.003889024956151843,-0.0043471320532262325,1.3868969678878784,-5.639919281005859,-1.1354403495788574,0.013868968933820724,-0.05639919266104698,-0.01135440357029438 +karman_re400,ppo,176,70.4,1.4161278009414673,-0.3480195701122284,0.3697654604911804,-0.23531007766723633,0.8544508218765259,0.02090287394821644,0.0025750785134732723,-0.000928020803257823,-0.007242353167384863,0.004407304339110851,0.003540444653481245,-0.0034882936161011457,1.4030301570892334,-4.967533111572266,-0.9498938918113708,0.01403030101209879,-0.04967533051967621,-0.009498938918113708 +karman_re400,ppo,177,70.8,1.4837532043457031,0.0014493332710117102,0.23343591392040253,0.15457986295223236,0.8503172993659973,0.11941066384315491,0.0008359336643479764,-0.0033167803194373846,-0.004101111087948084,0.007368496153503656,0.002543357200920582,-0.002607783768326044,1.5262346267700195,-3.7744181156158447,-0.020401954650878906,0.015262345783412457,-0.037744179368019104,-0.00020401953952386975 +karman_re400,ppo,178,71.2,1.4766746759414673,0.3675789535045624,0.3111599087715149,0.5248731374740601,0.8823904395103455,0.1859954595565796,-0.0012551989639177918,-0.0045299106277525425,0.00023971799237187952,0.008372393436729908,0.0010671353666111827,-0.00266476534307003,0.9305480122566223,-1.5261685848236084,3.0154619216918945,0.009305479936301708,-0.015261685475707054,0.030154619365930557 +karman_re400,ppo,179,71.6,1.2171838283538818,0.5689795017242432,0.4805351495742798,0.6344872117042542,0.9468184113502502,0.22948019206523895,-0.002344726584851742,-0.005103594623506069,0.00322472071275115,0.008027019910514355,-0.0006857343832962215,-0.0036801830865442753,0.1278526335954666,-0.03553199768066406,5.529978275299072,0.001278526266105473,-0.0003553199640009552,0.0552997812628746 +karman_re400,ppo,180,72.0,1.041412591934204,0.42143580317497253,0.57120281457901,0.6888332366943359,1.025526762008667,0.238789901137352,-0.0019753803499042988,-0.005607875529676676,0.004882635083049536,0.006616954691708088,-0.0033140217419713736,-0.004556595813483,-0.6360697150230408,0.5863399505615234,6.8212761878967285,-0.006360697094351053,0.0058633992448449135,0.06821276247501373 +karman_re400,ppo,181,72.4,0.9565852284431458,0.3166218400001526,0.6314500570297241,0.7458741068840027,1.0899685621261597,0.20782747864723206,0.000371010071830824,-0.00523034855723381,0.005531578790396452,0.004983996041119099,-0.004656964913010597,-0.005446618888527155,-1.247590184211731,1.1604371070861816,7.292390823364258,-0.012475901283323765,0.011604370549321175,0.07292390614748001 +karman_re400,ppo,182,72.8,0.9074633121490479,0.2232670933008194,0.7217531800270081,0.8034433126449585,1.1274925470352173,0.2756344676017761,0.0031211001332849264,-0.002532274229452014,0.004714589565992355,0.0042579337023198605,-0.005496216006577015,-0.004500244278460741,-1.6739232540130615,0.8633394241333008,6.892729759216309,-0.01673923246562481,0.008633393794298172,0.06892729550600052 +karman_re400,ppo,183,73.2,0.8660836815834045,0.13145442306995392,0.8223313689231873,0.7007606029510498,1.0938721895217896,0.37961819767951965,0.0037021643947809935,0.00039021915290504694,0.003741325344890356,0.0036489320918917656,-0.006461955141276121,-0.0031721240375190973,-1.670619010925293,0.4979862868785858,5.557626247406006,-0.016706189140677452,0.004979862831532955,0.05557626113295555 +karman_re400,ppo,184,73.6,0.8253028988838196,0.024015232920646667,0.7986226677894592,0.000840724678710103,1.0847420692443848,-0.23766811192035675,0.0014331607380881906,0.0029942651744931936,0.002301928121596575,0.002619581762701273,-0.005176426377147436,-0.005683164577931166,-1.432365894317627,0.34180641174316406,4.260510444641113,-0.014323658309876919,0.0034180639777332544,0.04260510206222534 +karman_re400,ppo,185,74.0,0.8173003196716309,-0.09341781586408615,0.678936779499054,-0.8122531771659851,1.1521532535552979,-0.2579093277454376,-0.000772703904658556,0.004488215781748295,0.0012111322721466422,0.0023307621013373137,-0.0007478775805793703,-0.007519295439124107,-1.007154941558838,-1.906830906867981,2.2608084678649902,-0.01007154956459999,-0.019068308174610138,0.022608084604144096 +karman_re400,ppo,186,74.4,0.8669499754905701,-0.16764149069786072,0.6669901013374329,-0.9490490555763245,1.1232101917266846,-0.2389223277568817,-0.0022905974183231592,0.0051547931507229805,-0.0001553060137666762,0.0033027639146894217,0.0029302272014319897,-0.007758840918540955,-0.29919755458831787,-4.573884963989258,0.664379358291626,-0.0029919755179435015,-0.04573884978890419,0.006643793545663357 +karman_re400,ppo,187,74.8,0.9541919231414795,-0.20565293729305267,0.7177574038505554,-0.8252323865890503,1.0534723997116089,-0.22444328665733337,-0.002108233980834484,0.005551770329475403,-0.001933169667609036,0.004183602053672075,0.004672003444284201,-0.006799895316362381,0.4204683005809784,-5.928781986236572,-0.18173789978027344,0.004204683005809784,-0.059287820011377335,-0.0018173789139837027 +karman_re400,ppo,188,75.2,1.0559688806533813,-0.1929483413696289,0.7444735169410706,-0.7706726789474487,0.9896613955497742,-0.1812191754579544,-0.00024655534070916474,0.0053128874860703945,-0.0039997706189751625,0.004982324317097664,0.005015691742300987,-0.005564240273088217,0.9790377616882324,-6.27052640914917,-0.8156743049621582,0.00979037769138813,-0.06270526349544525,-0.00815674290060997 +karman_re400,ppo,189,75.6,1.1404235363006592,-0.1057405024766922,0.7375320196151733,-0.7451977729797363,0.9367210268974304,-0.11409113556146622,0.0027521448209881783,0.0027802588883787394,-0.006012348923832178,0.0037646412383764982,0.00405257660895586,-0.0048109181225299835,1.320953130722046,-6.026289939880371,-1.21458101272583,0.013209531083703041,-0.06026289984583855,-0.012145809829235077 +karman_re400,ppo,190,76.0,1.2471232414245605,-0.07119414955377579,0.5650613307952881,-0.6717914342880249,0.8855857849121094,-0.01983395777642727,0.003534869756549597,1.1733483006537426e-05,-0.0072740898467600346,0.0033555179834365845,0.003774425480514765,-0.003975467756390572,1.3257560729980469,-5.445034980773926,-1.1831121444702148,0.013257560320198536,-0.054450348019599915,-0.011831121519207954 +karman_re400,ppo,191,76.4,1.395430326461792,-0.07019144296646118,0.3866392970085144,0.13954387605190277,0.8576397895812988,0.09231149405241013,0.0015028599882498384,-0.0027103303000330925,-0.005624290555715561,0.006098323967307806,0.003376054810360074,-0.0029832220170646906,1.4051936864852905,-4.6465349197387695,-0.6063218116760254,0.014051936566829681,-0.046465348452329636,-0.0060632177628576756 +karman_re400,ppo,192,76.8,1.2840240001678467,0.06373883038759232,0.48424050211906433,0.813174843788147,0.8721137046813965,0.1785871684551239,-0.000505783420521766,-0.0043775299564003944,-0.000967135711107403,0.007779013365507126,0.002181539312005043,-0.0024887763429433107,1.201551079750061,-2.541323184967041,1.7793875932693481,0.012015510350465775,-0.025413231924176216,0.017793875187635422 +karman_re400,ppo,193,77.2,1.1161775588989258,0.1699339747428894,0.6579713225364685,0.7744303941726685,0.9257221817970276,0.23152828216552734,-0.00217955163680017,-0.005104687996208668,0.0026280072052031755,0.00796453095972538,0.00017809300334192812,-0.0036404600832611322,0.40399131178855896,-0.5986499786376953,4.674962997436523,0.004039912950247526,-0.005986499600112438,0.04674962908029556 +karman_re400,ppo,194,77.6,1.0229912996292114,0.17698469758033752,0.7159508466720581,0.6529529094696045,1.0031063556671143,0.2655990421772003,-0.002272518817335367,-0.005678845103830099,0.004581448622047901,0.007028728723526001,-0.0020030876621603966,-0.004469473846256733,-0.35196369886398315,0.29966259002685547,6.335939407348633,-0.0035196368116885424,0.0029966258443892,0.06335939466953278 +karman_re400,ppo,195,78.0,0.9589207172393799,0.144004225730896,0.6951565742492676,0.6037784814834595,1.0873286724090576,0.25669509172439575,-0.0006468319916166365,-0.005707992240786552,0.005410435609519482,0.005593789741396904,-0.0040056235156953335,-0.005537782795727253,-0.9336960911750793,0.8459587097167969,7.073475360870361,-0.00933696050196886,0.008459586650133133,0.07073475420475006 +karman_re400,ppo,196,78.4,0.9082731604576111,0.08128153532743454,0.569451093673706,0.592923641204834,1.1858112812042236,0.18884965777397156,0.0022040694020688534,-0.004029483068734407,0.005018359981477261,0.0044511412270367146,-0.0055297077633440495,-0.004825134761631489,-1.4617228507995605,0.8958120346069336,7.036468029022217,-0.01461722794920206,0.0089581198990345,0.07036467641592026 +karman_re400,ppo,197,78.8,0.869640052318573,-0.008871900849044323,0.2980690598487854,0.4255637228488922,1.3779605627059937,0.19486431777477264,0.004062236752361059,-0.0007377477013505995,0.004101686179637909,0.004093630705028772,-0.006841785274446011,-0.0035742339678108692,-1.7328482866287231,0.8281460404396057,6.190195083618164,-0.017328482121229172,0.008281460031867027,0.06190194934606552 +karman_re400,ppo,198,79.2,0.855396032333374,-0.11531960219144821,0.14650942385196686,-0.1343487799167633,1.3914378881454468,0.027346165850758553,0.0024414958897978067,0.0018036391120404005,0.0033777449280023575,0.0031209299340844154,-0.006713198497891426,-0.005313137546181679,-1.8303329944610596,0.6509990692138672,4.883406639099121,-0.01830332912504673,0.006509990431368351,0.04883406683802605 +karman_re400,ppo,199,79.6,0.8732836246490479,-0.20643413066864014,0.3211035430431366,-0.579387366771698,1.1846628189086914,-0.21358923614025116,0.0003569100808817893,0.004021841567009687,0.002150461310520768,0.002508884761482477,-0.002810579026117921,-0.0073993029072880745,-1.634837031364441,-0.7512271404266357,3.383319616317749,-0.016348369419574738,-0.007512271404266357,0.03383319452404976 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv new file mode 100644 index 0000000..2caad85 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re400,sr,60,24.0,30,0.8081745972339478,-6,0.8644525110721588,0.9032938838625948,0.6968807260195414,0.6014530597875516,0.8721559047698975,0.9108114978919426 +karman_re400,sr,90,36.0,30,0.7909748405321603,-5,0.8679869115352631,0.9024529228607814,0.6219794313112894,0.5587266285593311,0.8785971204439799,0.9161060284823179 +karman_re400,sr,120,48.0,30,0.7864022110019707,-4,0.8823726018269857,0.8790397533215583,0.6092098752657573,0.5615904552241167,0.8769112348556518,0.9092893455177545 +karman_re400,sr,150,60.0,30,0.7882289124562197,-3,0.8848376313845316,0.8855428858660161,0.6066123763720195,0.5670807468394439,0.878660120566686,0.9066397137086217 +karman_re400,sr,180,72.0,30,0.7828301363909204,-2,0.8779954532782237,0.8813789398564646,0.6011458814144135,0.5610259240493178,0.8755893766880035,0.8998452430590987 +karman_re400,sr,200,80.0,30,0.7826801380478882,3,0.8825860738754272,0.9030919977929444,0.5968757390975952,0.5579024016857147,0.8755418141682942,0.8800828016673525 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_long.csv new file mode 100644 index 0000000..caf11fb --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,sr,0,0.0,velocity,upper_ux,0.9741191864013672 +karman_re400,sr,0,0.0,velocity,upper_uy,-0.23163685202598572 +karman_re400,sr,0,0.0,velocity,center_ux,0.9583567976951599 +karman_re400,sr,0,0.0,velocity,center_uy,-0.2649235427379608 +karman_re400,sr,0,0.0,velocity,lower_ux,1.2946528196334839 +karman_re400,sr,0,0.0,velocity,lower_uy,-0.006273637525737286 +karman_re400,sr,1,0.4,velocity,upper_ux,0.9920588135719299 +karman_re400,sr,1,0.4,velocity,upper_uy,-0.3066158592700958 +karman_re400,sr,1,0.4,velocity,center_ux,1.0027843713760376 +karman_re400,sr,1,0.4,velocity,center_uy,-0.44941529631614685 +karman_re400,sr,1,0.4,velocity,lower_ux,1.1849479675292969 +karman_re400,sr,1,0.4,velocity,lower_uy,-0.17843544483184814 +karman_re400,sr,2,0.8,velocity,upper_ux,1.0442887544631958 +karman_re400,sr,2,0.8,velocity,upper_uy,-0.3276767432689667 +karman_re400,sr,2,0.8,velocity,center_ux,1.0272293090820312 +karman_re400,sr,2,0.8,velocity,center_uy,-0.47001659870147705 +karman_re400,sr,2,0.8,velocity,lower_ux,1.0501904487609863 +karman_re400,sr,2,0.8,velocity,lower_uy,-0.2991275191307068 +karman_re400,sr,3,1.2,velocity,upper_ux,1.1057454347610474 +karman_re400,sr,3,1.2,velocity,upper_uy,-0.3366646468639374 +karman_re400,sr,3,1.2,velocity,center_ux,1.0308425426483154 +karman_re400,sr,3,1.2,velocity,center_uy,-0.46334078907966614 +karman_re400,sr,3,1.2,velocity,lower_ux,0.9865139126777649 +karman_re400,sr,3,1.2,velocity,lower_uy,-0.34437844157218933 +karman_re400,sr,4,1.6,velocity,upper_ux,1.1727321147918701 +karman_re400,sr,4,1.6,velocity,upper_uy,-0.30372118949890137 +karman_re400,sr,4,1.6,velocity,center_ux,1.0069137811660767 +karman_re400,sr,4,1.6,velocity,center_uy,-0.4666403532028198 +karman_re400,sr,4,1.6,velocity,lower_ux,0.9622600674629211 +karman_re400,sr,4,1.6,velocity,lower_uy,-0.347280889749527 +karman_re400,sr,5,2.0,velocity,upper_ux,1.2477408647537231 +karman_re400,sr,5,2.0,velocity,upper_uy,-0.23395460844039917 +karman_re400,sr,5,2.0,velocity,center_ux,0.9335981607437134 +karman_re400,sr,5,2.0,velocity,center_uy,-0.44187527894973755 +karman_re400,sr,5,2.0,velocity,lower_ux,0.9636988043785095 +karman_re400,sr,5,2.0,velocity,lower_uy,-0.31680575013160706 +karman_re400,sr,6,2.4,velocity,upper_ux,1.2769711017608643 +karman_re400,sr,6,2.4,velocity,upper_uy,-0.10483342409133911 +karman_re400,sr,6,2.4,velocity,center_ux,0.9017742872238159 +karman_re400,sr,6,2.4,velocity,center_uy,-0.13090558350086212 +karman_re400,sr,6,2.4,velocity,lower_ux,0.9885048866271973 +karman_re400,sr,6,2.4,velocity,lower_uy,-0.16797278821468353 +karman_re400,sr,7,2.8,velocity,upper_ux,1.2981541156768799 +karman_re400,sr,7,2.8,velocity,upper_uy,-0.019903426989912987 +karman_re400,sr,7,2.8,velocity,center_ux,0.9611609578132629 +karman_re400,sr,7,2.8,velocity,center_uy,0.224420428276062 +karman_re400,sr,7,2.8,velocity,lower_ux,0.9673287868499756 +karman_re400,sr,7,2.8,velocity,lower_uy,0.1811501532793045 +karman_re400,sr,8,3.2,velocity,upper_ux,1.2243754863739014 +karman_re400,sr,8,3.2,velocity,upper_uy,0.127237468957901 +karman_re400,sr,8,3.2,velocity,center_ux,1.0058798789978027 +karman_re400,sr,8,3.2,velocity,center_uy,0.43079617619514465 +karman_re400,sr,8,3.2,velocity,lower_ux,0.9674519896507263 +karman_re400,sr,8,3.2,velocity,lower_uy,0.3216160833835602 +karman_re400,sr,9,3.6,velocity,upper_ux,1.0863533020019531 +karman_re400,sr,9,3.6,velocity,upper_uy,0.26011568307876587 +karman_re400,sr,9,3.6,velocity,center_ux,1.0270404815673828 +karman_re400,sr,9,3.6,velocity,center_uy,0.46932461857795715 +karman_re400,sr,9,3.6,velocity,lower_ux,1.017723560333252 +karman_re400,sr,9,3.6,velocity,lower_uy,0.3374141454696655 +karman_re400,sr,10,4.0,velocity,upper_ux,1.008995532989502 +karman_re400,sr,10,4.0,velocity,upper_uy,0.31019434332847595 +karman_re400,sr,10,4.0,velocity,center_ux,1.0305761098861694 +karman_re400,sr,10,4.0,velocity,center_uy,0.46676039695739746 +karman_re400,sr,10,4.0,velocity,lower_ux,1.0792995691299438 +karman_re400,sr,10,4.0,velocity,lower_uy,0.3557218909263611 +karman_re400,sr,11,4.4,velocity,upper_ux,0.9647074341773987 +karman_re400,sr,11,4.4,velocity,upper_uy,0.3166373372077942 +karman_re400,sr,11,4.4,velocity,center_ux,1.0120739936828613 +karman_re400,sr,11,4.4,velocity,center_uy,0.45885810256004333 +karman_re400,sr,11,4.4,velocity,lower_ux,1.142553687095642 +karman_re400,sr,11,4.4,velocity,lower_uy,0.3379443883895874 +karman_re400,sr,12,4.8,velocity,upper_ux,0.936347484588623 +karman_re400,sr,12,4.8,velocity,upper_uy,0.3000321090221405 +karman_re400,sr,12,4.8,velocity,center_ux,0.9513248205184937 +karman_re400,sr,12,4.8,velocity,center_uy,0.47029179334640503 +karman_re400,sr,12,4.8,velocity,lower_ux,1.219542145729065 +karman_re400,sr,12,4.8,velocity,lower_uy,0.291919469833374 +karman_re400,sr,13,5.2,velocity,upper_ux,0.9195914268493652 +karman_re400,sr,13,5.2,velocity,upper_uy,0.24088403582572937 +karman_re400,sr,13,5.2,velocity,center_ux,0.8803046345710754 +karman_re400,sr,13,5.2,velocity,center_uy,0.3046936094760895 +karman_re400,sr,13,5.2,velocity,lower_ux,1.2680953741073608 +karman_re400,sr,13,5.2,velocity,lower_uy,0.18544653058052063 +karman_re400,sr,14,5.6,velocity,upper_ux,0.902296781539917 +karman_re400,sr,14,5.6,velocity,upper_uy,-0.04304160550236702 +karman_re400,sr,14,5.6,velocity,center_ux,0.8783964514732361 +karman_re400,sr,14,5.6,velocity,center_uy,-0.08629641681909561 +karman_re400,sr,14,5.6,velocity,lower_ux,1.270309567451477 +karman_re400,sr,14,5.6,velocity,lower_uy,0.08985944092273712 +karman_re400,sr,15,6.0,velocity,upper_ux,0.9178075194358826 +karman_re400,sr,15,6.0,velocity,upper_uy,-0.2767731249332428 +karman_re400,sr,15,6.0,velocity,center_ux,0.9442564249038696 +karman_re400,sr,15,6.0,velocity,center_uy,-0.3407936096191406 +karman_re400,sr,15,6.0,velocity,lower_ux,1.2365851402282715 +karman_re400,sr,15,6.0,velocity,lower_uy,0.011457529850304127 +karman_re400,sr,16,6.4,velocity,upper_ux,0.9790241122245789 +karman_re400,sr,16,6.4,velocity,upper_uy,-0.3077033758163452 +karman_re400,sr,16,6.4,velocity,center_ux,0.9761718511581421 +karman_re400,sr,16,6.4,velocity,center_uy,-0.47978806495666504 +karman_re400,sr,16,6.4,velocity,lower_ux,1.0848561525344849 +karman_re400,sr,16,6.4,velocity,lower_uy,-0.19785192608833313 +karman_re400,sr,17,6.8,velocity,upper_ux,1.0454065799713135 +karman_re400,sr,17,6.8,velocity,upper_uy,-0.32745251059532166 +karman_re400,sr,17,6.8,velocity,center_ux,1.0018856525421143 +karman_re400,sr,17,6.8,velocity,center_uy,-0.4995942711830139 +karman_re400,sr,17,6.8,velocity,lower_ux,1.007768988609314 +karman_re400,sr,17,6.8,velocity,lower_uy,-0.3662741482257843 +karman_re400,sr,18,7.2,velocity,upper_ux,1.1082432270050049 +karman_re400,sr,18,7.2,velocity,upper_uy,-0.31518813967704773 +karman_re400,sr,18,7.2,velocity,center_ux,1.0202486515045166 +karman_re400,sr,18,7.2,velocity,center_uy,-0.5074617862701416 +karman_re400,sr,18,7.2,velocity,lower_ux,0.9854623675346375 +karman_re400,sr,18,7.2,velocity,lower_uy,-0.3698779046535492 +karman_re400,sr,19,7.6,velocity,upper_ux,1.1643933057785034 +karman_re400,sr,19,7.6,velocity,upper_uy,-0.2797181010246277 +karman_re400,sr,19,7.6,velocity,center_ux,1.0439085960388184 +karman_re400,sr,19,7.6,velocity,center_uy,-0.517886221408844 +karman_re400,sr,19,7.6,velocity,lower_ux,0.9564658403396606 +karman_re400,sr,19,7.6,velocity,lower_uy,-0.31383803486824036 +karman_re400,sr,20,8.0,velocity,upper_ux,1.2181267738342285 +karman_re400,sr,20,8.0,velocity,upper_uy,-0.25600966811180115 +karman_re400,sr,20,8.0,velocity,center_ux,1.0853872299194336 +karman_re400,sr,20,8.0,velocity,center_uy,-0.5239604711532593 +karman_re400,sr,20,8.0,velocity,lower_ux,0.9246496558189392 +karman_re400,sr,20,8.0,velocity,lower_uy,-0.22792892158031464 +karman_re400,sr,21,8.4,velocity,upper_ux,1.3312430381774902 +karman_re400,sr,21,8.4,velocity,upper_uy,-0.4314924478530884 +karman_re400,sr,21,8.4,velocity,center_ux,1.0777273178100586 +karman_re400,sr,21,8.4,velocity,center_uy,-0.2419055998325348 +karman_re400,sr,21,8.4,velocity,lower_ux,0.9008815884590149 +karman_re400,sr,21,8.4,velocity,lower_uy,-0.09680281579494476 +karman_re400,sr,22,8.8,velocity,upper_ux,1.4514014720916748 +karman_re400,sr,22,8.8,velocity,upper_uy,0.04375940188765526 +karman_re400,sr,22,8.8,velocity,center_ux,0.9895317554473877 +karman_re400,sr,22,8.8,velocity,center_uy,0.21700520813465118 +karman_re400,sr,22,8.8,velocity,lower_ux,0.8773258924484253 +karman_re400,sr,22,8.8,velocity,lower_uy,0.10427336394786835 +karman_re400,sr,23,9.2,velocity,upper_ux,1.340133547782898 +karman_re400,sr,23,9.2,velocity,upper_uy,0.3247898519039154 +karman_re400,sr,23,9.2,velocity,center_ux,0.9637300968170166 +karman_re400,sr,23,9.2,velocity,center_uy,0.43143221735954285 +karman_re400,sr,23,9.2,velocity,lower_ux,0.9118110537528992 +karman_re400,sr,23,9.2,velocity,lower_uy,0.23290981352329254 +karman_re400,sr,24,9.6,velocity,upper_ux,1.2389143705368042 +karman_re400,sr,24,9.6,velocity,upper_uy,0.40582141280174255 +karman_re400,sr,24,9.6,velocity,center_ux,0.991261899471283 +karman_re400,sr,24,9.6,velocity,center_uy,0.5304463505744934 +karman_re400,sr,24,9.6,velocity,lower_ux,0.9853403568267822 +karman_re400,sr,24,9.6,velocity,lower_uy,0.28001222014427185 +karman_re400,sr,25,10.0,velocity,upper_ux,1.1414915323257446 +karman_re400,sr,25,10.0,velocity,upper_uy,0.36155951023101807 +karman_re400,sr,25,10.0,velocity,center_ux,1.027888536453247 +karman_re400,sr,25,10.0,velocity,center_uy,0.5255413055419922 +karman_re400,sr,25,10.0,velocity,lower_ux,1.0523415803909302 +karman_re400,sr,25,10.0,velocity,lower_uy,0.29257717728614807 +karman_re400,sr,26,10.4,velocity,upper_ux,1.0602587461471558 +karman_re400,sr,26,10.4,velocity,upper_uy,0.2887613773345947 +karman_re400,sr,26,10.4,velocity,center_ux,1.0641565322875977 +karman_re400,sr,26,10.4,velocity,center_uy,0.5231664776802063 +karman_re400,sr,26,10.4,velocity,lower_ux,1.1095995903015137 +karman_re400,sr,26,10.4,velocity,lower_uy,0.2553318440914154 +karman_re400,sr,27,10.8,velocity,upper_ux,0.9866824150085449 +karman_re400,sr,27,10.8,velocity,upper_uy,0.20004305243492126 +karman_re400,sr,27,10.8,velocity,center_ux,1.0955919027328491 +karman_re400,sr,27,10.8,velocity,center_uy,0.5438786149024963 +karman_re400,sr,27,10.8,velocity,lower_ux,1.1546474695205688 +karman_re400,sr,27,10.8,velocity,lower_uy,0.20358964800834656 +karman_re400,sr,28,11.2,velocity,upper_ux,0.9221269488334656 +karman_re400,sr,28,11.2,velocity,upper_uy,0.07997159659862518 +karman_re400,sr,28,11.2,velocity,center_ux,1.1220996379852295 +karman_re400,sr,28,11.2,velocity,center_uy,0.5115381479263306 +karman_re400,sr,28,11.2,velocity,lower_ux,1.1831566095352173 +karman_re400,sr,28,11.2,velocity,lower_uy,0.15319329500198364 +karman_re400,sr,29,11.6,velocity,upper_ux,0.879534900188446 +karman_re400,sr,29,11.6,velocity,upper_uy,-0.07055539637804031 +karman_re400,sr,29,11.6,velocity,center_ux,1.0763756036758423 +karman_re400,sr,29,11.6,velocity,center_uy,-0.06602220237255096 +karman_re400,sr,29,11.6,velocity,lower_ux,1.2819362878799438 +karman_re400,sr,29,11.6,velocity,lower_uy,0.207590714097023 +karman_re400,sr,30,12.0,velocity,upper_ux,0.9004572033882141 +karman_re400,sr,30,12.0,velocity,upper_uy,-0.17876319587230682 +karman_re400,sr,30,12.0,velocity,center_ux,0.9788922667503357 +karman_re400,sr,30,12.0,velocity,center_uy,-0.39963898062705994 +karman_re400,sr,30,12.0,velocity,lower_ux,1.4921079874038696 +karman_re400,sr,30,12.0,velocity,lower_uy,0.12502869963645935 +karman_re400,sr,31,12.4,velocity,upper_ux,0.9609829187393188 +karman_re400,sr,31,12.4,velocity,upper_uy,-0.24665158987045288 +karman_re400,sr,31,12.4,velocity,center_ux,0.9684908986091614 +karman_re400,sr,31,12.4,velocity,center_uy,-0.4682965576648712 +karman_re400,sr,31,12.4,velocity,lower_ux,1.2804045677185059 +karman_re400,sr,31,12.4,velocity,lower_uy,-0.24293118715286255 +karman_re400,sr,32,12.8,velocity,upper_ux,1.024623155593872 +karman_re400,sr,32,12.8,velocity,upper_uy,-0.28654050827026367 +karman_re400,sr,32,12.8,velocity,center_ux,0.9881329536437988 +karman_re400,sr,32,12.8,velocity,center_uy,-0.4751092195510864 +karman_re400,sr,32,12.8,velocity,lower_ux,1.1424652338027954 +karman_re400,sr,32,12.8,velocity,lower_uy,-0.29134291410446167 +karman_re400,sr,33,13.2,velocity,upper_ux,1.081027865409851 +karman_re400,sr,33,13.2,velocity,upper_uy,-0.27699145674705505 +karman_re400,sr,33,13.2,velocity,center_ux,1.0055493116378784 +karman_re400,sr,33,13.2,velocity,center_uy,-0.4621061682701111 +karman_re400,sr,33,13.2,velocity,lower_ux,1.053450107574463 +karman_re400,sr,33,13.2,velocity,lower_uy,-0.2770596742630005 +karman_re400,sr,34,13.6,velocity,upper_ux,1.1416915655136108 +karman_re400,sr,34,13.6,velocity,upper_uy,-0.2572663426399231 +karman_re400,sr,34,13.6,velocity,center_ux,1.0248156785964966 +karman_re400,sr,34,13.6,velocity,center_uy,-0.4639629125595093 +karman_re400,sr,34,13.6,velocity,lower_ux,0.9925890564918518 +karman_re400,sr,34,13.6,velocity,lower_uy,-0.22174544632434845 +karman_re400,sr,35,14.0,velocity,upper_ux,1.2333893775939941 +karman_re400,sr,35,14.0,velocity,upper_uy,-0.24500755965709686 +karman_re400,sr,35,14.0,velocity,center_ux,1.0778053998947144 +karman_re400,sr,35,14.0,velocity,center_uy,-0.35586845874786377 +karman_re400,sr,35,14.0,velocity,lower_ux,0.9452504515647888 +karman_re400,sr,35,14.0,velocity,lower_uy,-0.14555436372756958 +karman_re400,sr,36,14.4,velocity,upper_ux,1.515087604522705 +karman_re400,sr,36,14.4,velocity,upper_uy,-0.345702588558197 +karman_re400,sr,36,14.4,velocity,center_ux,1.0565682649612427 +karman_re400,sr,36,14.4,velocity,center_uy,-0.32709041237831116 +karman_re400,sr,36,14.4,velocity,lower_ux,0.9065431952476501 +karman_re400,sr,36,14.4,velocity,lower_uy,-0.04251747950911522 +karman_re400,sr,37,14.8,velocity,upper_ux,1.6060305833816528 +karman_re400,sr,37,14.8,velocity,upper_uy,-0.051818374544382095 +karman_re400,sr,37,14.8,velocity,center_ux,0.9223839640617371 +karman_re400,sr,37,14.8,velocity,center_uy,-0.036167774349451065 +karman_re400,sr,37,14.8,velocity,lower_ux,0.8890261054039001 +karman_re400,sr,37,14.8,velocity,lower_uy,0.07802412658929825 +karman_re400,sr,38,15.2,velocity,upper_ux,1.4730497598648071 +karman_re400,sr,38,15.2,velocity,upper_uy,0.16696664690971375 +karman_re400,sr,38,15.2,velocity,center_ux,0.8380227088928223 +karman_re400,sr,38,15.2,velocity,center_uy,0.3504514694213867 +karman_re400,sr,38,15.2,velocity,lower_ux,0.9192882776260376 +karman_re400,sr,38,15.2,velocity,lower_uy,0.16464677453041077 +karman_re400,sr,39,15.6,velocity,upper_ux,1.3196134567260742 +karman_re400,sr,39,15.6,velocity,upper_uy,0.27423256635665894 +karman_re400,sr,39,15.6,velocity,center_ux,0.8918465375900269 +karman_re400,sr,39,15.6,velocity,center_uy,0.4608381688594818 +karman_re400,sr,39,15.6,velocity,lower_ux,0.9692963361740112 +karman_re400,sr,39,15.6,velocity,lower_uy,0.23058587312698364 +karman_re400,sr,40,16.0,velocity,upper_ux,1.1883453130722046 +karman_re400,sr,40,16.0,velocity,upper_uy,0.29195892810821533 +karman_re400,sr,40,16.0,velocity,center_ux,0.9437156915664673 +karman_re400,sr,40,16.0,velocity,center_uy,0.4625954031944275 +karman_re400,sr,40,16.0,velocity,lower_ux,1.0217266082763672 +karman_re400,sr,40,16.0,velocity,lower_uy,0.25010132789611816 +karman_re400,sr,41,16.4,velocity,upper_ux,1.0912429094314575 +karman_re400,sr,41,16.4,velocity,upper_uy,0.23986715078353882 +karman_re400,sr,41,16.4,velocity,center_ux,0.9726734757423401 +karman_re400,sr,41,16.4,velocity,center_uy,0.4376722574234009 +karman_re400,sr,41,16.4,velocity,lower_ux,1.0772675275802612 +karman_re400,sr,41,16.4,velocity,lower_uy,0.24667465686798096 +karman_re400,sr,42,16.8,velocity,upper_ux,1.021891474723816 +karman_re400,sr,42,16.8,velocity,upper_uy,0.16225029528141022 +karman_re400,sr,42,16.8,velocity,center_ux,0.99590003490448 +karman_re400,sr,42,16.8,velocity,center_uy,0.41230452060699463 +karman_re400,sr,42,16.8,velocity,lower_ux,1.158360242843628 +karman_re400,sr,42,16.8,velocity,lower_uy,0.2568929195404053 +karman_re400,sr,43,17.2,velocity,upper_ux,0.9607488512992859 +karman_re400,sr,43,17.2,velocity,upper_uy,0.06315465271472931 +karman_re400,sr,43,17.2,velocity,center_ux,1.0306209325790405 +karman_re400,sr,43,17.2,velocity,center_uy,0.2923697829246521 +karman_re400,sr,43,17.2,velocity,lower_ux,1.358098030090332 +karman_re400,sr,43,17.2,velocity,lower_uy,0.3622831702232361 +karman_re400,sr,44,17.6,velocity,upper_ux,0.9247398972511292 +karman_re400,sr,44,17.6,velocity,upper_uy,-0.04271158576011658 +karman_re400,sr,44,17.6,velocity,center_ux,0.9768336415290833 +karman_re400,sr,44,17.6,velocity,center_uy,0.13741861283779144 +karman_re400,sr,44,17.6,velocity,lower_ux,1.6013225317001343 +karman_re400,sr,44,17.6,velocity,lower_uy,0.13533426821231842 +karman_re400,sr,45,18.0,velocity,upper_ux,0.9386932253837585 +karman_re400,sr,45,18.0,velocity,upper_uy,-0.12795640528202057 +karman_re400,sr,45,18.0,velocity,center_ux,0.8555430769920349 +karman_re400,sr,45,18.0,velocity,center_uy,-0.16906185448169708 +karman_re400,sr,45,18.0,velocity,lower_ux,1.525984287261963 +karman_re400,sr,45,18.0,velocity,lower_uy,-0.16247789561748505 +karman_re400,sr,46,18.4,velocity,upper_ux,0.971726655960083 +karman_re400,sr,46,18.4,velocity,upper_uy,-0.1975821852684021 +karman_re400,sr,46,18.4,velocity,center_ux,0.8483265042304993 +karman_re400,sr,46,18.4,velocity,center_uy,-0.3679850399494171 +karman_re400,sr,46,18.4,velocity,lower_ux,1.3976123332977295 +karman_re400,sr,46,18.4,velocity,lower_uy,-0.2713509202003479 +karman_re400,sr,47,18.8,velocity,upper_ux,1.0109055042266846 +karman_re400,sr,47,18.8,velocity,upper_uy,-0.2226313203573227 +karman_re400,sr,47,18.8,velocity,center_ux,0.8986299633979797 +karman_re400,sr,47,18.8,velocity,center_uy,-0.4122932553291321 +karman_re400,sr,47,18.8,velocity,lower_ux,1.249423861503601 +karman_re400,sr,47,18.8,velocity,lower_uy,-0.28447556495666504 +karman_re400,sr,48,19.2,velocity,upper_ux,1.054715633392334 +karman_re400,sr,48,19.2,velocity,upper_uy,-0.2222938984632492 +karman_re400,sr,48,19.2,velocity,center_ux,0.9388277530670166 +karman_re400,sr,48,19.2,velocity,center_uy,-0.393045037984848 +karman_re400,sr,48,19.2,velocity,lower_ux,1.13579261302948 +karman_re400,sr,48,19.2,velocity,lower_uy,-0.24007199704647064 +karman_re400,sr,49,19.6,velocity,upper_ux,1.0993282794952393 +karman_re400,sr,49,19.6,velocity,upper_uy,-0.2277233749628067 +karman_re400,sr,49,19.6,velocity,center_ux,0.9467566013336182 +karman_re400,sr,49,19.6,velocity,center_uy,-0.3826591968536377 +karman_re400,sr,49,19.6,velocity,lower_ux,1.0485297441482544 +karman_re400,sr,49,19.6,velocity,lower_uy,-0.16138388216495514 +karman_re400,sr,50,20.0,velocity,upper_ux,1.1580551862716675 +karman_re400,sr,50,20.0,velocity,upper_uy,-0.26858052611351013 +karman_re400,sr,50,20.0,velocity,center_ux,0.9443862438201904 +karman_re400,sr,50,20.0,velocity,center_uy,-0.3335845172405243 +karman_re400,sr,50,20.0,velocity,lower_ux,0.9744791984558105 +karman_re400,sr,50,20.0,velocity,lower_uy,-0.06057843565940857 +karman_re400,sr,51,20.4,velocity,upper_ux,1.2565616369247437 +karman_re400,sr,51,20.4,velocity,upper_uy,-0.43395352363586426 +karman_re400,sr,51,20.4,velocity,center_ux,0.9051988124847412 +karman_re400,sr,51,20.4,velocity,center_uy,-0.1540326178073883 +karman_re400,sr,51,20.4,velocity,lower_ux,0.9358537793159485 +karman_re400,sr,51,20.4,velocity,lower_uy,0.03574562817811966 +karman_re400,sr,52,20.8,velocity,upper_ux,1.3615286350250244 +karman_re400,sr,52,20.8,velocity,upper_uy,0.07873165607452393 +karman_re400,sr,52,20.8,velocity,center_ux,0.8142409324645996 +karman_re400,sr,52,20.8,velocity,center_uy,0.13458338379859924 +karman_re400,sr,52,20.8,velocity,lower_ux,0.9422432780265808 +karman_re400,sr,52,20.8,velocity,lower_uy,0.11342130601406097 +karman_re400,sr,53,21.2,velocity,upper_ux,1.3256850242614746 +karman_re400,sr,53,21.2,velocity,upper_uy,0.29876619577407837 +karman_re400,sr,53,21.2,velocity,center_ux,0.8036025166511536 +karman_re400,sr,53,21.2,velocity,center_uy,0.3259938955307007 +karman_re400,sr,53,21.2,velocity,lower_ux,0.9684184789657593 +karman_re400,sr,53,21.2,velocity,lower_uy,0.18686698377132416 +karman_re400,sr,54,21.6,velocity,upper_ux,1.2105103731155396 +karman_re400,sr,54,21.6,velocity,upper_uy,0.3097887635231018 +karman_re400,sr,54,21.6,velocity,center_ux,0.8445020318031311 +karman_re400,sr,54,21.6,velocity,center_uy,0.4027925133705139 +karman_re400,sr,54,21.6,velocity,lower_ux,1.0044164657592773 +karman_re400,sr,54,21.6,velocity,lower_uy,0.2258966565132141 +karman_re400,sr,55,22.0,velocity,upper_ux,1.0950161218643188 +karman_re400,sr,55,22.0,velocity,upper_uy,0.30184993147850037 +karman_re400,sr,55,22.0,velocity,center_ux,0.886451244354248 +karman_re400,sr,55,22.0,velocity,center_uy,0.41156649589538574 +karman_re400,sr,55,22.0,velocity,lower_ux,1.0433592796325684 +karman_re400,sr,55,22.0,velocity,lower_uy,0.23408932983875275 +karman_re400,sr,56,22.4,velocity,upper_ux,1.0129626989364624 +karman_re400,sr,56,22.4,velocity,upper_uy,0.24947763979434967 +karman_re400,sr,56,22.4,velocity,center_ux,0.9116202592849731 +karman_re400,sr,56,22.4,velocity,center_uy,0.41397276520729065 +karman_re400,sr,56,22.4,velocity,lower_ux,1.0950939655303955 +karman_re400,sr,56,22.4,velocity,lower_uy,0.24924783408641815 +karman_re400,sr,57,22.8,velocity,upper_ux,0.9613130688667297 +karman_re400,sr,57,22.8,velocity,upper_uy,0.17178253829479218 +karman_re400,sr,57,22.8,velocity,center_ux,0.9433364868164062 +karman_re400,sr,57,22.8,velocity,center_uy,0.37310507893562317 +karman_re400,sr,57,22.8,velocity,lower_ux,1.1872581243515015 +karman_re400,sr,57,22.8,velocity,lower_uy,0.29646795988082886 +karman_re400,sr,58,23.2,velocity,upper_ux,0.921272873878479 +karman_re400,sr,58,23.2,velocity,upper_uy,0.07666661590337753 +karman_re400,sr,58,23.2,velocity,center_ux,0.960995614528656 +karman_re400,sr,58,23.2,velocity,center_uy,0.2634343206882477 +karman_re400,sr,58,23.2,velocity,lower_ux,1.3989962339401245 +karman_re400,sr,58,23.2,velocity,lower_uy,0.40103259682655334 +karman_re400,sr,59,23.6,velocity,upper_ux,0.9005402326583862 +karman_re400,sr,59,23.6,velocity,upper_uy,-0.0325203463435173 +karman_re400,sr,59,23.6,velocity,center_ux,0.9035845398902893 +karman_re400,sr,59,23.6,velocity,center_uy,0.11319651454687119 +karman_re400,sr,59,23.6,velocity,lower_ux,1.5776543617248535 +karman_re400,sr,59,23.6,velocity,lower_uy,0.1092812791466713 +karman_re400,sr,60,24.0,velocity,upper_ux,0.9138151407241821 +karman_re400,sr,60,24.0,velocity,upper_uy,-0.1271689087152481 +karman_re400,sr,60,24.0,velocity,center_ux,0.7894020080566406 +karman_re400,sr,60,24.0,velocity,center_uy,-0.18194210529327393 +karman_re400,sr,60,24.0,velocity,lower_ux,1.4886306524276733 +karman_re400,sr,60,24.0,velocity,lower_uy,-0.18599063158035278 +karman_re400,sr,61,24.4,velocity,upper_ux,0.9478550553321838 +karman_re400,sr,61,24.4,velocity,upper_uy,-0.20106221735477448 +karman_re400,sr,61,24.4,velocity,center_ux,0.782802402973175 +karman_re400,sr,61,24.4,velocity,center_uy,-0.3920195400714874 +karman_re400,sr,61,24.4,velocity,lower_ux,1.3498997688293457 +karman_re400,sr,61,24.4,velocity,lower_uy,-0.3261779546737671 +karman_re400,sr,62,24.8,velocity,upper_ux,0.9943431615829468 +karman_re400,sr,62,24.8,velocity,upper_uy,-0.2306145876646042 +karman_re400,sr,62,24.8,velocity,center_ux,0.8400101661682129 +karman_re400,sr,62,24.8,velocity,center_uy,-0.4458742141723633 +karman_re400,sr,62,24.8,velocity,lower_ux,1.2025623321533203 +karman_re400,sr,62,24.8,velocity,lower_uy,-0.34925028681755066 +karman_re400,sr,63,25.2,velocity,upper_ux,1.0542042255401611 +karman_re400,sr,63,25.2,velocity,upper_uy,-0.2515524625778198 +karman_re400,sr,63,25.2,velocity,center_ux,0.8833155632019043 +karman_re400,sr,63,25.2,velocity,center_uy,-0.43372151255607605 +karman_re400,sr,63,25.2,velocity,lower_ux,1.0892155170440674 +karman_re400,sr,63,25.2,velocity,lower_uy,-0.30258098244667053 +karman_re400,sr,64,25.6,velocity,upper_ux,1.161165714263916 +karman_re400,sr,64,25.6,velocity,upper_uy,-0.2986637055873871 +karman_re400,sr,64,25.6,velocity,center_ux,0.9052823781967163 +karman_re400,sr,64,25.6,velocity,center_uy,-0.4086453318595886 +karman_re400,sr,64,25.6,velocity,lower_ux,1.0116667747497559 +karman_re400,sr,64,25.6,velocity,lower_uy,-0.22087374329566956 +karman_re400,sr,65,26.0,velocity,upper_ux,1.4039981365203857 +karman_re400,sr,65,26.0,velocity,upper_uy,-0.4133182168006897 +karman_re400,sr,65,26.0,velocity,center_ux,0.916461169719696 +karman_re400,sr,65,26.0,velocity,center_uy,-0.31368303298950195 +karman_re400,sr,65,26.0,velocity,lower_ux,0.9556990265846252 +karman_re400,sr,65,26.0,velocity,lower_uy,-0.12461121380329132 +karman_re400,sr,66,26.4,velocity,upper_ux,1.6279159784317017 +karman_re400,sr,66,26.4,velocity,upper_uy,-0.1304703950881958 +karman_re400,sr,66,26.4,velocity,center_ux,0.8924486041069031 +karman_re400,sr,66,26.4,velocity,center_uy,-0.18904338777065277 +karman_re400,sr,66,26.4,velocity,lower_ux,0.9140569567680359 +karman_re400,sr,66,26.4,velocity,lower_uy,-0.014972858130931854 +karman_re400,sr,67,26.8,velocity,upper_ux,1.5678540468215942 +karman_re400,sr,67,26.8,velocity,upper_uy,0.1635218858718872 +karman_re400,sr,67,26.8,velocity,center_ux,0.8427382111549377 +karman_re400,sr,67,26.8,velocity,center_uy,0.02406999096274376 +karman_re400,sr,67,26.8,velocity,lower_ux,0.9110791087150574 +karman_re400,sr,67,26.8,velocity,lower_uy,0.08585619181394577 +karman_re400,sr,68,27.2,velocity,upper_ux,1.427915096282959 +karman_re400,sr,68,27.2,velocity,upper_uy,0.28423917293548584 +karman_re400,sr,68,27.2,velocity,center_ux,0.7935684323310852 +karman_re400,sr,68,27.2,velocity,center_uy,0.3170715272426605 +karman_re400,sr,68,27.2,velocity,lower_ux,0.9364172220230103 +karman_re400,sr,68,27.2,velocity,lower_uy,0.16534295678138733 +karman_re400,sr,69,27.6,velocity,upper_ux,1.2757374048233032 +karman_re400,sr,69,27.6,velocity,upper_uy,0.3151044547557831 +karman_re400,sr,69,27.6,velocity,center_ux,0.8417630791664124 +karman_re400,sr,69,27.6,velocity,center_uy,0.4163505434989929 +karman_re400,sr,69,27.6,velocity,lower_ux,0.9726823568344116 +karman_re400,sr,69,27.6,velocity,lower_uy,0.2003542184829712 +karman_re400,sr,70,28.0,velocity,upper_ux,1.1509751081466675 +karman_re400,sr,70,28.0,velocity,upper_uy,0.2733081877231598 +karman_re400,sr,70,28.0,velocity,center_ux,0.8953385949134827 +karman_re400,sr,70,28.0,velocity,center_uy,0.4072748124599457 +karman_re400,sr,70,28.0,velocity,lower_ux,1.0157829523086548 +karman_re400,sr,70,28.0,velocity,lower_uy,0.2098940908908844 +karman_re400,sr,71,28.4,velocity,upper_ux,1.0604327917099 +karman_re400,sr,71,28.4,velocity,upper_uy,0.195057675242424 +karman_re400,sr,71,28.4,velocity,center_ux,0.9244344234466553 +karman_re400,sr,71,28.4,velocity,center_uy,0.38621315360069275 +karman_re400,sr,71,28.4,velocity,lower_ux,1.0655723810195923 +karman_re400,sr,71,28.4,velocity,lower_uy,0.22869400680065155 +karman_re400,sr,72,28.8,velocity,upper_ux,0.9820278882980347 +karman_re400,sr,72,28.8,velocity,upper_uy,0.09428680688142776 +karman_re400,sr,72,28.8,velocity,center_ux,0.9403749704360962 +karman_re400,sr,72,28.8,velocity,center_uy,0.3430540859699249 +karman_re400,sr,72,28.8,velocity,lower_ux,1.1270859241485596 +karman_re400,sr,72,28.8,velocity,lower_uy,0.28739285469055176 +karman_re400,sr,73,29.2,velocity,upper_ux,0.9342166781425476 +karman_re400,sr,73,29.2,velocity,upper_uy,-0.007837947458028793 +karman_re400,sr,73,29.2,velocity,center_ux,0.9269090890884399 +karman_re400,sr,73,29.2,velocity,center_uy,0.23515795171260834 +karman_re400,sr,73,29.2,velocity,lower_ux,1.227075219154358 +karman_re400,sr,73,29.2,velocity,lower_uy,0.42495471239089966 +karman_re400,sr,74,29.6,velocity,upper_ux,0.9322482943534851 +karman_re400,sr,74,29.6,velocity,upper_uy,-0.09315887093544006 +karman_re400,sr,74,29.6,velocity,center_ux,0.832184910774231 +karman_re400,sr,74,29.6,velocity,center_uy,-0.029245851561427116 +karman_re400,sr,74,29.6,velocity,lower_ux,1.36319899559021 +karman_re400,sr,74,29.6,velocity,lower_uy,-0.08149971067905426 +karman_re400,sr,75,30.0,velocity,upper_ux,0.9531723260879517 +karman_re400,sr,75,30.0,velocity,upper_uy,-0.16966812312602997 +karman_re400,sr,75,30.0,velocity,center_ux,0.7813551425933838 +karman_re400,sr,75,30.0,velocity,center_uy,-0.28569552302360535 +karman_re400,sr,75,30.0,velocity,lower_ux,1.3403805494308472 +karman_re400,sr,75,30.0,velocity,lower_uy,-0.2786317765712738 +karman_re400,sr,76,30.4,velocity,upper_ux,0.9867321252822876 +karman_re400,sr,76,30.4,velocity,upper_uy,-0.20774227380752563 +karman_re400,sr,76,30.4,velocity,center_ux,0.8131292462348938 +karman_re400,sr,76,30.4,velocity,center_uy,-0.38877665996551514 +karman_re400,sr,76,30.4,velocity,lower_ux,1.2420862913131714 +karman_re400,sr,76,30.4,velocity,lower_uy,-0.302972674369812 +karman_re400,sr,77,30.8,velocity,upper_ux,1.025779366493225 +karman_re400,sr,77,30.8,velocity,upper_uy,-0.2217377871274948 +karman_re400,sr,77,30.8,velocity,center_ux,0.8537104725837708 +karman_re400,sr,77,30.8,velocity,center_uy,-0.4026038646697998 +karman_re400,sr,77,30.8,velocity,lower_ux,1.1275744438171387 +karman_re400,sr,77,30.8,velocity,lower_uy,-0.29043975472450256 +karman_re400,sr,78,31.2,velocity,upper_ux,1.0762434005737305 +karman_re400,sr,78,31.2,velocity,upper_uy,-0.24755629897117615 +karman_re400,sr,78,31.2,velocity,center_ux,0.8735394477844238 +karman_re400,sr,78,31.2,velocity,center_uy,-0.3991427719593048 +karman_re400,sr,78,31.2,velocity,lower_ux,1.040037751197815 +karman_re400,sr,78,31.2,velocity,lower_uy,-0.23352579772472382 +karman_re400,sr,79,31.6,velocity,upper_ux,1.1547422409057617 +karman_re400,sr,79,31.6,velocity,upper_uy,-0.32713377475738525 +karman_re400,sr,79,31.6,velocity,center_ux,0.8798631429672241 +karman_re400,sr,79,31.6,velocity,center_uy,-0.37939533591270447 +karman_re400,sr,79,31.6,velocity,lower_ux,0.9826409816741943 +karman_re400,sr,79,31.6,velocity,lower_uy,-0.15314450860023499 +karman_re400,sr,80,32.0,velocity,upper_ux,1.3266127109527588 +karman_re400,sr,80,32.0,velocity,upper_uy,-0.39514845609664917 +karman_re400,sr,80,32.0,velocity,center_ux,0.8972052931785583 +karman_re400,sr,80,32.0,velocity,center_uy,-0.25848105549812317 +karman_re400,sr,80,32.0,velocity,lower_ux,0.9383305907249451 +karman_re400,sr,80,32.0,velocity,lower_uy,-0.0589139498770237 +karman_re400,sr,81,32.4,velocity,upper_ux,1.490515947341919 +karman_re400,sr,81,32.4,velocity,upper_uy,0.06153053417801857 +karman_re400,sr,81,32.4,velocity,center_ux,0.8354033827781677 +karman_re400,sr,81,32.4,velocity,center_uy,-0.04159991443157196 +karman_re400,sr,81,32.4,velocity,lower_ux,0.9187899827957153 +karman_re400,sr,81,32.4,velocity,lower_uy,0.039709702134132385 +karman_re400,sr,82,32.8,velocity,upper_ux,1.3897426128387451 +karman_re400,sr,82,32.8,velocity,upper_uy,0.2431154102087021 +karman_re400,sr,82,32.8,velocity,center_ux,0.7603225708007812 +karman_re400,sr,82,32.8,velocity,center_uy,0.23734277486801147 +karman_re400,sr,82,32.8,velocity,lower_ux,0.9315128326416016 +karman_re400,sr,82,32.8,velocity,lower_uy,0.12591256201267242 +karman_re400,sr,83,33.2,velocity,upper_ux,1.3003242015838623 +karman_re400,sr,83,33.2,velocity,upper_uy,0.31875529885292053 +karman_re400,sr,83,33.2,velocity,center_ux,0.7911131381988525 +karman_re400,sr,83,33.2,velocity,center_uy,0.37383124232292175 +karman_re400,sr,83,33.2,velocity,lower_ux,0.9598084092140198 +karman_re400,sr,83,33.2,velocity,lower_uy,0.18501125276088715 +karman_re400,sr,84,33.6,velocity,upper_ux,1.1790950298309326 +karman_re400,sr,84,33.6,velocity,upper_uy,0.31386786699295044 +karman_re400,sr,84,33.6,velocity,center_ux,0.8441219925880432 +karman_re400,sr,84,33.6,velocity,center_uy,0.40685030817985535 +karman_re400,sr,84,33.6,velocity,lower_ux,0.998450517654419 +karman_re400,sr,84,33.6,velocity,lower_uy,0.20212657749652863 +karman_re400,sr,85,34.0,velocity,upper_ux,1.0822970867156982 +karman_re400,sr,85,34.0,velocity,upper_uy,0.2617481052875519 +karman_re400,sr,85,34.0,velocity,center_ux,0.8822386264801025 +karman_re400,sr,85,34.0,velocity,center_uy,0.39600539207458496 +karman_re400,sr,85,34.0,velocity,lower_ux,1.0464311838150024 +karman_re400,sr,85,34.0,velocity,lower_uy,0.22137486934661865 +karman_re400,sr,86,34.4,velocity,upper_ux,1.0096006393432617 +karman_re400,sr,86,34.4,velocity,upper_uy,0.17927123606204987 +karman_re400,sr,86,34.4,velocity,center_ux,0.8981063365936279 +karman_re400,sr,86,34.4,velocity,center_uy,0.38059383630752563 +karman_re400,sr,86,34.4,velocity,lower_ux,1.1124963760375977 +karman_re400,sr,86,34.4,velocity,lower_uy,0.2640753984451294 +karman_re400,sr,87,34.8,velocity,upper_ux,0.9520300030708313 +karman_re400,sr,87,34.8,velocity,upper_uy,0.07838177680969238 +karman_re400,sr,87,34.8,velocity,center_ux,0.9198373556137085 +karman_re400,sr,87,34.8,velocity,center_uy,0.3074086308479309 +karman_re400,sr,87,34.8,velocity,lower_ux,1.2500996589660645 +karman_re400,sr,87,34.8,velocity,lower_uy,0.4067504405975342 +karman_re400,sr,88,35.2,velocity,upper_ux,0.9189971089363098 +karman_re400,sr,88,35.2,velocity,upper_uy,-0.02521233819425106 +karman_re400,sr,88,35.2,velocity,center_ux,0.8832947015762329 +karman_re400,sr,88,35.2,velocity,center_uy,0.14435817301273346 +karman_re400,sr,88,35.2,velocity,lower_ux,1.4817934036254883 +karman_re400,sr,88,35.2,velocity,lower_uy,0.14153032004833221 +karman_re400,sr,89,35.6,velocity,upper_ux,0.9275488257408142 +karman_re400,sr,89,35.6,velocity,upper_uy,-0.1135169193148613 +karman_re400,sr,89,35.6,velocity,center_ux,0.7858132123947144 +karman_re400,sr,89,35.6,velocity,center_uy,-0.14848273992538452 +karman_re400,sr,89,35.6,velocity,lower_ux,1.4571744203567505 +karman_re400,sr,89,35.6,velocity,lower_uy,-0.22430312633514404 +karman_re400,sr,90,36.0,velocity,upper_ux,0.9529212713241577 +karman_re400,sr,90,36.0,velocity,upper_uy,-0.18144872784614563 +karman_re400,sr,90,36.0,velocity,center_ux,0.7780146598815918 +karman_re400,sr,90,36.0,velocity,center_uy,-0.34574151039123535 +karman_re400,sr,90,36.0,velocity,lower_ux,1.3144361972808838 +karman_re400,sr,90,36.0,velocity,lower_uy,-0.2545636296272278 +karman_re400,sr,91,36.4,velocity,upper_ux,0.9886369109153748 +karman_re400,sr,91,36.4,velocity,upper_uy,-0.20586994290351868 +karman_re400,sr,91,36.4,velocity,center_ux,0.822823166847229 +karman_re400,sr,91,36.4,velocity,center_uy,-0.4084264039993286 +karman_re400,sr,91,36.4,velocity,lower_ux,1.1906356811523438 +karman_re400,sr,91,36.4,velocity,lower_uy,-0.30649006366729736 +karman_re400,sr,92,36.8,velocity,upper_ux,1.0344618558883667 +karman_re400,sr,92,36.8,velocity,upper_uy,-0.22449615597724915 +karman_re400,sr,92,36.8,velocity,center_ux,0.8652489185333252 +karman_re400,sr,92,36.8,velocity,center_uy,-0.40478289127349854 +karman_re400,sr,92,36.8,velocity,lower_ux,1.0849686861038208 +karman_re400,sr,92,36.8,velocity,lower_uy,-0.2826489806175232 +karman_re400,sr,93,37.2,velocity,upper_ux,1.0980517864227295 +karman_re400,sr,93,37.2,velocity,upper_uy,-0.2637898325920105 +karman_re400,sr,93,37.2,velocity,center_ux,0.8861903548240662 +karman_re400,sr,93,37.2,velocity,center_uy,-0.39748644828796387 +karman_re400,sr,93,37.2,velocity,lower_ux,1.0105173587799072 +karman_re400,sr,93,37.2,velocity,lower_uy,-0.21593031287193298 +karman_re400,sr,94,37.6,velocity,upper_ux,1.217149257659912 +karman_re400,sr,94,37.6,velocity,upper_uy,-0.3916216790676117 +karman_re400,sr,94,37.6,velocity,center_ux,0.909099817276001 +karman_re400,sr,94,37.6,velocity,center_uy,-0.34569305181503296 +karman_re400,sr,94,37.6,velocity,lower_ux,0.956268310546875 +karman_re400,sr,94,37.6,velocity,lower_uy,-0.12589554488658905 +karman_re400,sr,95,38.0,velocity,upper_ux,1.4483202695846558 +karman_re400,sr,95,38.0,velocity,upper_uy,-0.27265241742134094 +karman_re400,sr,95,38.0,velocity,center_ux,0.9027467370033264 +karman_re400,sr,95,38.0,velocity,center_uy,-0.21956434845924377 +karman_re400,sr,95,38.0,velocity,lower_ux,0.9156227707862854 +karman_re400,sr,95,38.0,velocity,lower_uy,-0.020419947803020477 +karman_re400,sr,96,38.4,velocity,upper_ux,1.498295545578003 +karman_re400,sr,96,38.4,velocity,upper_uy,0.20286303758621216 +karman_re400,sr,96,38.4,velocity,center_ux,0.8122920393943787 +karman_re400,sr,96,38.4,velocity,center_uy,0.046136051416397095 +karman_re400,sr,96,38.4,velocity,lower_ux,0.9102072715759277 +karman_re400,sr,96,38.4,velocity,lower_uy,0.07731117308139801 +karman_re400,sr,97,38.8,velocity,upper_ux,1.3446847200393677 +karman_re400,sr,97,38.8,velocity,upper_uy,0.22203658521175385 +karman_re400,sr,97,38.8,velocity,center_ux,0.766415536403656 +karman_re400,sr,97,38.8,velocity,center_uy,0.30658090114593506 +karman_re400,sr,97,38.8,velocity,lower_ux,0.9322476983070374 +karman_re400,sr,97,38.8,velocity,lower_uy,0.15768195688724518 +karman_re400,sr,98,39.2,velocity,upper_ux,1.2326347827911377 +karman_re400,sr,98,39.2,velocity,upper_uy,0.29704758524894714 +karman_re400,sr,98,39.2,velocity,center_ux,0.8080486059188843 +karman_re400,sr,98,39.2,velocity,center_uy,0.4023183584213257 +karman_re400,sr,98,39.2,velocity,lower_ux,0.9686669111251831 +karman_re400,sr,98,39.2,velocity,lower_uy,0.19704791903495789 +karman_re400,sr,99,39.6,velocity,upper_ux,1.1192269325256348 +karman_re400,sr,99,39.6,velocity,upper_uy,0.2959102988243103 +karman_re400,sr,99,39.6,velocity,center_ux,0.8536007404327393 +karman_re400,sr,99,39.6,velocity,center_uy,0.4130686819553375 +karman_re400,sr,99,39.6,velocity,lower_ux,1.0132837295532227 +karman_re400,sr,99,39.6,velocity,lower_uy,0.21291615068912506 +karman_re400,sr,100,40.0,velocity,upper_ux,1.0341976881027222 +karman_re400,sr,100,40.0,velocity,upper_uy,0.2422080785036087 +karman_re400,sr,100,40.0,velocity,center_ux,0.8822017908096313 +karman_re400,sr,100,40.0,velocity,center_uy,0.4015687108039856 +karman_re400,sr,100,40.0,velocity,lower_ux,1.0759996175765991 +karman_re400,sr,100,40.0,velocity,lower_uy,0.24170073866844177 +karman_re400,sr,101,40.4,velocity,upper_ux,0.9752638339996338 +karman_re400,sr,101,40.4,velocity,upper_uy,0.15815573930740356 +karman_re400,sr,101,40.4,velocity,center_ux,0.9044614434242249 +karman_re400,sr,101,40.4,velocity,center_uy,0.36527198553085327 +karman_re400,sr,101,40.4,velocity,lower_ux,1.1945849657058716 +karman_re400,sr,101,40.4,velocity,lower_uy,0.3319346308708191 +karman_re400,sr,102,40.8,velocity,upper_ux,0.927570104598999 +karman_re400,sr,102,40.8,velocity,upper_uy,0.05649876594543457 +karman_re400,sr,102,40.8,velocity,center_ux,0.9157959222793579 +karman_re400,sr,102,40.8,velocity,center_uy,0.2692836821079254 +karman_re400,sr,102,40.8,velocity,lower_ux,1.4400922060012817 +karman_re400,sr,102,40.8,velocity,lower_uy,0.35296452045440674 +karman_re400,sr,103,41.2,velocity,upper_ux,0.9091722369194031 +karman_re400,sr,103,41.2,velocity,upper_uy,-0.046180419623851776 +karman_re400,sr,103,41.2,velocity,center_ux,0.8561125993728638 +karman_re400,sr,103,41.2,velocity,center_uy,0.07480092346668243 +karman_re400,sr,103,41.2,velocity,lower_ux,1.5608311891555786 +karman_re400,sr,103,41.2,velocity,lower_uy,-0.10571877658367157 +karman_re400,sr,104,41.6,velocity,upper_ux,0.9241414070129395 +karman_re400,sr,104,41.6,velocity,upper_uy,-0.1332235038280487 +karman_re400,sr,104,41.6,velocity,center_ux,0.7725100517272949 +karman_re400,sr,104,41.6,velocity,center_uy,-0.23014278709888458 +karman_re400,sr,104,41.6,velocity,lower_ux,1.4079387187957764 +karman_re400,sr,104,41.6,velocity,lower_uy,-0.1891884058713913 +karman_re400,sr,105,42.0,velocity,upper_ux,0.9552421569824219 +karman_re400,sr,105,42.0,velocity,upper_uy,-0.18464933335781097 +karman_re400,sr,105,42.0,velocity,center_ux,0.7943880558013916 +karman_re400,sr,105,42.0,velocity,center_uy,-0.3795146644115448 +karman_re400,sr,105,42.0,velocity,lower_ux,1.2947349548339844 +karman_re400,sr,105,42.0,velocity,lower_uy,-0.2674880027770996 +karman_re400,sr,106,42.4,velocity,upper_ux,0.9936046004295349 +karman_re400,sr,106,42.4,velocity,upper_uy,-0.20184019207954407 +karman_re400,sr,106,42.4,velocity,center_ux,0.8414813280105591 +karman_re400,sr,106,42.4,velocity,center_uy,-0.4078848958015442 +karman_re400,sr,106,42.4,velocity,lower_ux,1.1691261529922485 +karman_re400,sr,106,42.4,velocity,lower_uy,-0.2823932468891144 +karman_re400,sr,107,42.8,velocity,upper_ux,1.0416920185089111 +karman_re400,sr,107,42.8,velocity,upper_uy,-0.22603219747543335 +karman_re400,sr,107,42.8,velocity,center_ux,0.8762474060058594 +karman_re400,sr,107,42.8,velocity,center_uy,-0.3923056125640869 +karman_re400,sr,107,42.8,velocity,lower_ux,1.0738935470581055 +karman_re400,sr,107,42.8,velocity,lower_uy,-0.2404298037290573 +karman_re400,sr,108,43.2,velocity,upper_ux,1.0975254774093628 +karman_re400,sr,108,43.2,velocity,upper_uy,-0.2828674614429474 +karman_re400,sr,108,43.2,velocity,center_ux,0.8877103328704834 +karman_re400,sr,108,43.2,velocity,center_uy,-0.3729195296764374 +karman_re400,sr,108,43.2,velocity,lower_ux,1.002629041671753 +karman_re400,sr,108,43.2,velocity,lower_uy,-0.16251139342784882 +karman_re400,sr,109,43.6,velocity,upper_ux,1.1702555418014526 +karman_re400,sr,109,43.6,velocity,upper_uy,-0.4424102008342743 +karman_re400,sr,109,43.6,velocity,center_ux,0.8967766761779785 +karman_re400,sr,109,43.6,velocity,center_uy,-0.3040558099746704 +karman_re400,sr,109,43.6,velocity,lower_ux,0.9484715461730957 +karman_re400,sr,109,43.6,velocity,lower_uy,-0.06558352708816528 +karman_re400,sr,110,44.0,velocity,upper_ux,1.34950590133667 +karman_re400,sr,110,44.0,velocity,upper_uy,0.060259655117988586 +karman_re400,sr,110,44.0,velocity,center_ux,0.8405357599258423 +karman_re400,sr,110,44.0,velocity,center_uy,-0.11884607374668121 +karman_re400,sr,110,44.0,velocity,lower_ux,0.9228830933570862 +karman_re400,sr,110,44.0,velocity,lower_uy,0.032099124044179916 +karman_re400,sr,111,44.4,velocity,upper_ux,1.3931820392608643 +karman_re400,sr,111,44.4,velocity,upper_uy,0.24819640815258026 +karman_re400,sr,111,44.4,velocity,center_ux,0.7622053027153015 +karman_re400,sr,111,44.4,velocity,center_uy,0.18707308173179626 +karman_re400,sr,111,44.4,velocity,lower_ux,0.9332526326179504 +karman_re400,sr,111,44.4,velocity,lower_uy,0.11713120341300964 +karman_re400,sr,112,44.8,velocity,upper_ux,1.3137571811676025 +karman_re400,sr,112,44.8,velocity,upper_uy,0.2658107578754425 +karman_re400,sr,112,44.8,velocity,center_ux,0.7836506366729736 +karman_re400,sr,112,44.8,velocity,center_uy,0.35194846987724304 +karman_re400,sr,112,44.8,velocity,lower_ux,0.9599228501319885 +karman_re400,sr,112,44.8,velocity,lower_uy,0.17353318631649017 +karman_re400,sr,113,45.2,velocity,upper_ux,1.1889851093292236 +karman_re400,sr,113,45.2,velocity,upper_uy,0.265996515750885 +karman_re400,sr,113,45.2,velocity,center_ux,0.8288165330886841 +karman_re400,sr,113,45.2,velocity,center_uy,0.39408645033836365 +karman_re400,sr,113,45.2,velocity,lower_ux,0.9937486052513123 +karman_re400,sr,113,45.2,velocity,lower_uy,0.18982861936092377 +karman_re400,sr,114,45.6,velocity,upper_ux,1.0861088037490845 +karman_re400,sr,114,45.6,velocity,upper_uy,0.2335597425699234 +karman_re400,sr,114,45.6,velocity,center_ux,0.863511323928833 +karman_re400,sr,114,45.6,velocity,center_uy,0.3845701217651367 +karman_re400,sr,114,45.6,velocity,lower_ux,1.0381985902786255 +karman_re400,sr,114,45.6,velocity,lower_uy,0.20808935165405273 +karman_re400,sr,115,46.0,velocity,upper_ux,1.0140135288238525 +karman_re400,sr,115,46.0,velocity,upper_uy,0.1690235733985901 +karman_re400,sr,115,46.0,velocity,center_ux,0.8709607124328613 +karman_re400,sr,115,46.0,velocity,center_uy,0.3773951232433319 +karman_re400,sr,115,46.0,velocity,lower_ux,1.0962140560150146 +karman_re400,sr,115,46.0,velocity,lower_uy,0.2459336817264557 +karman_re400,sr,116,46.4,velocity,upper_ux,0.9599903225898743 +karman_re400,sr,116,46.4,velocity,upper_uy,0.0844210833311081 +karman_re400,sr,116,46.4,velocity,center_ux,0.8735653162002563 +karman_re400,sr,116,46.4,velocity,center_uy,0.31535112857818604 +karman_re400,sr,116,46.4,velocity,lower_ux,1.1898643970489502 +karman_re400,sr,116,46.4,velocity,lower_uy,0.38671067357063293 +karman_re400,sr,117,46.8,velocity,upper_ux,0.9290910363197327 +karman_re400,sr,117,46.8,velocity,upper_uy,-0.0101167568936944 +karman_re400,sr,117,46.8,velocity,center_ux,0.8371723890304565 +karman_re400,sr,117,46.8,velocity,center_uy,0.13495729863643646 +karman_re400,sr,117,46.8,velocity,lower_ux,1.3837039470672607 +karman_re400,sr,117,46.8,velocity,lower_uy,0.1471145749092102 +karman_re400,sr,118,47.2,velocity,upper_ux,0.9317453503608704 +karman_re400,sr,118,47.2,velocity,upper_uy,-0.09843434393405914 +karman_re400,sr,118,47.2,velocity,center_ux,0.7580342292785645 +karman_re400,sr,118,47.2,velocity,center_uy,-0.14901578426361084 +karman_re400,sr,118,47.2,velocity,lower_ux,1.413116455078125 +karman_re400,sr,118,47.2,velocity,lower_uy,-0.23887844383716583 +karman_re400,sr,119,47.6,velocity,upper_ux,0.9529140591621399 +karman_re400,sr,119,47.6,velocity,upper_uy,-0.1661442220211029 +karman_re400,sr,119,47.6,velocity,center_ux,0.7636368274688721 +karman_re400,sr,119,47.6,velocity,center_uy,-0.3306295871734619 +karman_re400,sr,119,47.6,velocity,lower_ux,1.311254620552063 +karman_re400,sr,119,47.6,velocity,lower_uy,-0.23119406402111053 +karman_re400,sr,120,48.0,velocity,upper_ux,0.9869438409805298 +karman_re400,sr,120,48.0,velocity,upper_uy,-0.1906755417585373 +karman_re400,sr,120,48.0,velocity,center_ux,0.8113000392913818 +karman_re400,sr,120,48.0,velocity,center_uy,-0.38975659012794495 +karman_re400,sr,120,48.0,velocity,lower_ux,1.1978182792663574 +karman_re400,sr,120,48.0,velocity,lower_uy,-0.2817574739456177 +karman_re400,sr,121,48.4,velocity,upper_ux,1.0287156105041504 +karman_re400,sr,121,48.4,velocity,upper_uy,-0.2100607305765152 +karman_re400,sr,121,48.4,velocity,center_ux,0.8494051098823547 +karman_re400,sr,121,48.4,velocity,center_uy,-0.38944491744041443 +karman_re400,sr,121,48.4,velocity,lower_ux,1.0950323343276978 +karman_re400,sr,121,48.4,velocity,lower_uy,-0.2624093294143677 +karman_re400,sr,122,48.8,velocity,upper_ux,1.0838693380355835 +karman_re400,sr,122,48.8,velocity,upper_uy,-0.24822302162647247 +karman_re400,sr,122,48.8,velocity,center_ux,0.8622652292251587 +karman_re400,sr,122,48.8,velocity,center_uy,-0.38434627652168274 +karman_re400,sr,122,48.8,velocity,lower_ux,1.0203204154968262 +karman_re400,sr,122,48.8,velocity,lower_uy,-0.204493910074234 +karman_re400,sr,123,49.2,velocity,upper_ux,1.168797254562378 +karman_re400,sr,123,49.2,velocity,upper_uy,-0.3790147006511688 +karman_re400,sr,123,49.2,velocity,center_ux,0.8676510453224182 +karman_re400,sr,123,49.2,velocity,center_uy,-0.34362873435020447 +karman_re400,sr,123,49.2,velocity,lower_ux,0.9656028151512146 +karman_re400,sr,123,49.2,velocity,lower_uy,-0.11866328120231628 +karman_re400,sr,124,49.6,velocity,upper_ux,1.3407626152038574 +karman_re400,sr,124,49.6,velocity,upper_uy,-0.26688987016677856 +karman_re400,sr,124,49.6,velocity,center_ux,0.8505616784095764 +karman_re400,sr,124,49.6,velocity,center_uy,-0.19969478249549866 +karman_re400,sr,124,49.6,velocity,lower_ux,0.9244324564933777 +karman_re400,sr,124,49.6,velocity,lower_uy,-0.017379917204380035 +karman_re400,sr,125,50.0,velocity,upper_ux,1.4222184419631958 +karman_re400,sr,125,50.0,velocity,upper_uy,0.22993314266204834 +karman_re400,sr,125,50.0,velocity,center_ux,0.7704432010650635 +karman_re400,sr,125,50.0,velocity,center_uy,0.07454269379377365 +karman_re400,sr,125,50.0,velocity,lower_ux,0.92119300365448 +karman_re400,sr,125,50.0,velocity,lower_uy,0.07608520239591599 +karman_re400,sr,126,50.4,velocity,upper_ux,1.3219387531280518 +karman_re400,sr,126,50.4,velocity,upper_uy,0.22831283509731293 +karman_re400,sr,126,50.4,velocity,center_ux,0.7526717185974121 +karman_re400,sr,126,50.4,velocity,center_uy,0.3059855103492737 +karman_re400,sr,126,50.4,velocity,lower_ux,0.9419272541999817 +karman_re400,sr,126,50.4,velocity,lower_uy,0.15389011800289154 +karman_re400,sr,127,50.8,velocity,upper_ux,1.2184027433395386 +karman_re400,sr,127,50.8,velocity,upper_uy,0.2988378405570984 +karman_re400,sr,127,50.8,velocity,center_ux,0.7975712418556213 +karman_re400,sr,127,50.8,velocity,center_uy,0.3923279643058777 +karman_re400,sr,127,50.8,velocity,lower_ux,0.9733827710151672 +karman_re400,sr,127,50.8,velocity,lower_uy,0.18930061161518097 +karman_re400,sr,128,51.2,velocity,upper_ux,1.1116787195205688 +karman_re400,sr,128,51.2,velocity,upper_uy,0.291829377412796 +karman_re400,sr,128,51.2,velocity,center_ux,0.8422131538391113 +karman_re400,sr,128,51.2,velocity,center_uy,0.40498316287994385 +karman_re400,sr,128,51.2,velocity,lower_ux,1.0168455839157104 +karman_re400,sr,128,51.2,velocity,lower_uy,0.2067922204732895 +karman_re400,sr,129,51.6,velocity,upper_ux,1.0305542945861816 +karman_re400,sr,129,51.6,velocity,upper_uy,0.23784379661083221 +karman_re400,sr,129,51.6,velocity,center_ux,0.8680270910263062 +karman_re400,sr,129,51.6,velocity,center_uy,0.3973360061645508 +karman_re400,sr,129,51.6,velocity,lower_ux,1.0782768726348877 +karman_re400,sr,129,51.6,velocity,lower_uy,0.23815150558948517 +karman_re400,sr,130,52.0,velocity,upper_ux,0.9721983075141907 +karman_re400,sr,130,52.0,velocity,upper_uy,0.1537667214870453 +karman_re400,sr,130,52.0,velocity,center_ux,0.8849480152130127 +karman_re400,sr,130,52.0,velocity,center_uy,0.3645678460597992 +karman_re400,sr,130,52.0,velocity,lower_ux,1.1889393329620361 +karman_re400,sr,130,52.0,velocity,lower_uy,0.3418896198272705 +karman_re400,sr,131,52.4,velocity,upper_ux,0.9265588521957397 +karman_re400,sr,131,52.4,velocity,upper_uy,0.051368702203035355 +karman_re400,sr,131,52.4,velocity,center_ux,0.896852970123291 +karman_re400,sr,131,52.4,velocity,center_uy,0.2525130808353424 +karman_re400,sr,131,52.4,velocity,lower_ux,1.4132599830627441 +karman_re400,sr,131,52.4,velocity,lower_uy,0.34727993607521057 +karman_re400,sr,132,52.8,velocity,upper_ux,0.9098407626152039 +karman_re400,sr,132,52.8,velocity,upper_uy,-0.04982670396566391 +karman_re400,sr,132,52.8,velocity,center_ux,0.829603374004364 +karman_re400,sr,132,52.8,velocity,center_uy,0.033128172159194946 +karman_re400,sr,132,52.8,velocity,lower_ux,1.5153052806854248 +karman_re400,sr,132,52.8,velocity,lower_uy,-0.12623053789138794 +karman_re400,sr,133,53.2,velocity,upper_ux,0.9259234666824341 +karman_re400,sr,133,53.2,velocity,upper_uy,-0.13504046201705933 +karman_re400,sr,133,53.2,velocity,center_ux,0.7600966691970825 +karman_re400,sr,133,53.2,velocity,center_uy,-0.25223803520202637 +karman_re400,sr,133,53.2,velocity,lower_ux,1.367871880531311 +karman_re400,sr,133,53.2,velocity,lower_uy,-0.21106071770191193 +karman_re400,sr,134,53.6,velocity,upper_ux,0.9588770270347595 +karman_re400,sr,134,53.6,velocity,upper_uy,-0.1852322816848755 +karman_re400,sr,134,53.6,velocity,center_ux,0.7923401594161987 +karman_re400,sr,134,53.6,velocity,center_uy,-0.3834373950958252 +karman_re400,sr,134,53.6,velocity,lower_ux,1.2708325386047363 +karman_re400,sr,134,53.6,velocity,lower_uy,-0.2921464741230011 +karman_re400,sr,135,54.0,velocity,upper_ux,0.9978591799736023 +karman_re400,sr,135,54.0,velocity,upper_uy,-0.20111721754074097 +karman_re400,sr,135,54.0,velocity,center_ux,0.8390085101127625 +karman_re400,sr,135,54.0,velocity,center_uy,-0.4111616015434265 +karman_re400,sr,135,54.0,velocity,lower_ux,1.151464581489563 +karman_re400,sr,135,54.0,velocity,lower_uy,-0.3007028102874756 +karman_re400,sr,136,54.4,velocity,upper_ux,1.0507768392562866 +karman_re400,sr,136,54.4,velocity,upper_uy,-0.22413258254528046 +karman_re400,sr,136,54.4,velocity,center_ux,0.8738188743591309 +karman_re400,sr,136,54.4,velocity,center_uy,-0.3989734649658203 +karman_re400,sr,136,54.4,velocity,lower_ux,1.0585012435913086 +karman_re400,sr,136,54.4,velocity,lower_uy,-0.25315314531326294 +karman_re400,sr,137,54.8,velocity,upper_ux,1.1342273950576782 +karman_re400,sr,137,54.8,velocity,upper_uy,-0.2815871238708496 +karman_re400,sr,137,54.8,velocity,center_ux,0.8936641216278076 +karman_re400,sr,137,54.8,velocity,center_uy,-0.3779464662075043 +karman_re400,sr,137,54.8,velocity,lower_ux,0.992448627948761 +karman_re400,sr,137,54.8,velocity,lower_uy,-0.17185169458389282 +karman_re400,sr,138,55.2,velocity,upper_ux,1.3132039308547974 +karman_re400,sr,138,55.2,velocity,upper_uy,-0.4210400879383087 +karman_re400,sr,138,55.2,velocity,center_ux,0.9128215909004211 +karman_re400,sr,138,55.2,velocity,center_uy,-0.2955402433872223 +karman_re400,sr,138,55.2,velocity,lower_ux,0.9380035400390625 +karman_re400,sr,138,55.2,velocity,lower_uy,-0.0723641887307167 +karman_re400,sr,139,55.6,velocity,upper_ux,1.5295233726501465 +karman_re400,sr,139,55.6,velocity,upper_uy,-0.013346432708203793 +karman_re400,sr,139,55.6,velocity,center_ux,0.8674152493476868 +karman_re400,sr,139,55.6,velocity,center_uy,-0.1230771616101265 +karman_re400,sr,139,55.6,velocity,lower_ux,0.9111409187316895 +karman_re400,sr,139,55.6,velocity,lower_uy,0.02980176918208599 +karman_re400,sr,140,56.0,velocity,upper_ux,1.4305355548858643 +karman_re400,sr,140,56.0,velocity,upper_uy,0.2042524665594101 +karman_re400,sr,140,56.0,velocity,center_ux,0.7731127738952637 +karman_re400,sr,140,56.0,velocity,center_uy,0.1749306321144104 +karman_re400,sr,140,56.0,velocity,lower_ux,0.9219585657119751 +karman_re400,sr,140,56.0,velocity,lower_uy,0.1175362765789032 +karman_re400,sr,141,56.4,velocity,upper_ux,1.304895043373108 +karman_re400,sr,141,56.4,velocity,upper_uy,0.2562544047832489 +karman_re400,sr,141,56.4,velocity,center_ux,0.7758010029792786 +karman_re400,sr,141,56.4,velocity,center_uy,0.35777974128723145 +karman_re400,sr,141,56.4,velocity,lower_ux,0.9487972259521484 +karman_re400,sr,141,56.4,velocity,lower_uy,0.1792648881673813 +karman_re400,sr,142,56.8,velocity,upper_ux,1.1804227828979492 +karman_re400,sr,142,56.8,velocity,upper_uy,0.2953670918941498 +karman_re400,sr,142,56.8,velocity,center_ux,0.8231170177459717 +karman_re400,sr,142,56.8,velocity,center_uy,0.40833455324172974 +karman_re400,sr,142,56.8,velocity,lower_ux,0.9868366718292236 +karman_re400,sr,142,56.8,velocity,lower_uy,0.19947467744350433 +karman_re400,sr,143,57.2,velocity,upper_ux,1.0780260562896729 +karman_re400,sr,143,57.2,velocity,upper_uy,0.26572978496551514 +karman_re400,sr,143,57.2,velocity,center_ux,0.8626970052719116 +karman_re400,sr,143,57.2,velocity,center_uy,0.40030384063720703 +karman_re400,sr,143,57.2,velocity,lower_ux,1.0341975688934326 +karman_re400,sr,143,57.2,velocity,lower_uy,0.2209394872188568 +karman_re400,sr,144,57.6,velocity,upper_ux,1.0058097839355469 +karman_re400,sr,144,57.6,velocity,upper_uy,0.1960878223180771 +karman_re400,sr,144,57.6,velocity,center_ux,0.8804630041122437 +karman_re400,sr,144,57.6,velocity,center_uy,0.3894488513469696 +karman_re400,sr,144,57.6,velocity,lower_ux,1.0999716520309448 +karman_re400,sr,144,57.6,velocity,lower_uy,0.2670859396457672 +karman_re400,sr,145,58.0,velocity,upper_ux,0.9523350596427917 +karman_re400,sr,145,58.0,velocity,upper_uy,0.10489770025014877 +karman_re400,sr,145,58.0,velocity,center_ux,0.9019439220428467 +karman_re400,sr,145,58.0,velocity,center_uy,0.3302735388278961 +karman_re400,sr,145,58.0,velocity,lower_ux,1.2241251468658447 +karman_re400,sr,145,58.0,velocity,lower_uy,0.4115602374076843 +karman_re400,sr,146,58.4,velocity,upper_ux,0.915703535079956 +karman_re400,sr,146,58.4,velocity,upper_uy,0.001672990620136261 +karman_re400,sr,146,58.4,velocity,center_ux,0.8796922564506531 +karman_re400,sr,146,58.4,velocity,center_uy,0.18783944845199585 +karman_re400,sr,146,58.4,velocity,lower_ux,1.4584603309631348 +karman_re400,sr,146,58.4,velocity,lower_uy,0.12194065004587173 +karman_re400,sr,147,58.8,velocity,upper_ux,0.9166693091392517 +karman_re400,sr,147,58.8,velocity,upper_uy,-0.09081122279167175 +karman_re400,sr,147,58.8,velocity,center_ux,0.7855046987533569 +karman_re400,sr,147,58.8,velocity,center_uy,-0.0997074618935585 +karman_re400,sr,147,58.8,velocity,lower_ux,1.459628701210022 +karman_re400,sr,147,58.8,velocity,lower_uy,-0.2199813723564148 +karman_re400,sr,148,59.2,velocity,upper_ux,0.9402351975440979 +karman_re400,sr,148,59.2,velocity,upper_uy,-0.1624525636434555 +karman_re400,sr,148,59.2,velocity,center_ux,0.7671715617179871 +karman_re400,sr,148,59.2,velocity,center_uy,-0.3254852294921875 +karman_re400,sr,148,59.2,velocity,lower_ux,1.3411948680877686 +karman_re400,sr,148,59.2,velocity,lower_uy,-0.22807912528514862 +karman_re400,sr,149,59.6,velocity,upper_ux,0.9744365811347961 +karman_re400,sr,149,59.6,velocity,upper_uy,-0.18975037336349487 +karman_re400,sr,149,59.6,velocity,center_ux,0.8115403056144714 +karman_re400,sr,149,59.6,velocity,center_uy,-0.3975260853767395 +karman_re400,sr,149,59.6,velocity,lower_ux,1.2165309190750122 +karman_re400,sr,149,59.6,velocity,lower_uy,-0.27956053614616394 +karman_re400,sr,150,60.0,velocity,upper_ux,1.0179755687713623 +karman_re400,sr,150,60.0,velocity,upper_uy,-0.2082049548625946 +karman_re400,sr,150,60.0,velocity,center_ux,0.8538672924041748 +karman_re400,sr,150,60.0,velocity,center_uy,-0.3970711827278137 +karman_re400,sr,150,60.0,velocity,lower_ux,1.106733798980713 +karman_re400,sr,150,60.0,velocity,lower_uy,-0.2652003765106201 +karman_re400,sr,151,60.4,velocity,upper_ux,1.074914574623108 +karman_re400,sr,151,60.4,velocity,upper_uy,-0.24425218999385834 +karman_re400,sr,151,60.4,velocity,center_ux,0.8747202157974243 +karman_re400,sr,151,60.4,velocity,center_uy,-0.3868430256843567 +karman_re400,sr,151,60.4,velocity,lower_ux,1.0277183055877686 +karman_re400,sr,151,60.4,velocity,lower_uy,-0.20788726210594177 +karman_re400,sr,152,60.8,velocity,upper_ux,1.1591792106628418 +karman_re400,sr,152,60.8,velocity,upper_uy,-0.3641831576824188 +karman_re400,sr,152,60.8,velocity,center_ux,0.8876053690910339 +karman_re400,sr,152,60.8,velocity,center_uy,-0.34798353910446167 +karman_re400,sr,152,60.8,velocity,lower_ux,0.9689403772354126 +karman_re400,sr,152,60.8,velocity,lower_uy,-0.12298714369535446 +karman_re400,sr,153,61.2,velocity,upper_ux,1.3366197347640991 +karman_re400,sr,153,61.2,velocity,upper_uy,-0.26358723640441895 +karman_re400,sr,153,61.2,velocity,center_ux,0.878519594669342 +karman_re400,sr,153,61.2,velocity,center_uy,-0.2288825362920761 +karman_re400,sr,153,61.2,velocity,lower_ux,0.928192675113678 +karman_re400,sr,153,61.2,velocity,lower_uy,-0.02292306162416935 +karman_re400,sr,154,61.6,velocity,upper_ux,1.4443840980529785 +karman_re400,sr,154,61.6,velocity,upper_uy,0.23514476418495178 +karman_re400,sr,154,61.6,velocity,center_ux,0.7939555644989014 +karman_re400,sr,154,61.6,velocity,center_uy,0.03857478126883507 +karman_re400,sr,154,61.6,velocity,lower_ux,0.9206017255783081 +karman_re400,sr,154,61.6,velocity,lower_uy,0.07124116271734238 +karman_re400,sr,155,62.0,velocity,upper_ux,1.3552708625793457 +karman_re400,sr,155,62.0,velocity,upper_uy,0.2114715427160263 +karman_re400,sr,155,62.0,velocity,center_ux,0.7601938843727112 +karman_re400,sr,155,62.0,velocity,center_uy,0.2913352847099304 +karman_re400,sr,155,62.0,velocity,lower_ux,0.9385994672775269 +karman_re400,sr,155,62.0,velocity,lower_uy,0.1488184928894043 +karman_re400,sr,156,62.4,velocity,upper_ux,1.2411282062530518 +karman_re400,sr,156,62.4,velocity,upper_uy,0.26121580600738525 +karman_re400,sr,156,62.4,velocity,center_ux,0.8019614219665527 +karman_re400,sr,156,62.4,velocity,center_uy,0.3822789788246155 +karman_re400,sr,156,62.4,velocity,lower_ux,0.9705141186714172 +karman_re400,sr,156,62.4,velocity,lower_uy,0.18339772522449493 +karman_re400,sr,157,62.8,velocity,upper_ux,1.1273845434188843 +karman_re400,sr,157,62.8,velocity,upper_uy,0.2597378194332123 +karman_re400,sr,157,62.8,velocity,center_ux,0.8438569903373718 +karman_re400,sr,157,62.8,velocity,center_uy,0.39280688762664795 +karman_re400,sr,157,62.8,velocity,lower_ux,1.0107134580612183 +karman_re400,sr,157,62.8,velocity,lower_uy,0.19995351135730743 +karman_re400,sr,158,63.2,velocity,upper_ux,1.0426403284072876 +karman_re400,sr,158,63.2,velocity,upper_uy,0.21462354063987732 +karman_re400,sr,158,63.2,velocity,center_ux,0.8657976388931274 +karman_re400,sr,158,63.2,velocity,center_uy,0.3818611204624176 +karman_re400,sr,158,63.2,velocity,lower_ux,1.0626988410949707 +karman_re400,sr,158,63.2,velocity,lower_uy,0.22845593094825745 +karman_re400,sr,159,63.6,velocity,upper_ux,0.9826480746269226 +karman_re400,sr,159,63.6,velocity,upper_uy,0.13774240016937256 +karman_re400,sr,159,63.6,velocity,center_ux,0.8708918690681458 +karman_re400,sr,159,63.6,velocity,center_uy,0.358450710773468 +karman_re400,sr,159,63.6,velocity,lower_ux,1.136992335319519 +karman_re400,sr,159,63.6,velocity,lower_uy,0.31689679622650146 +karman_re400,sr,160,64.0,velocity,upper_ux,0.9358938336372375 +karman_re400,sr,160,64.0,velocity,upper_uy,0.041981615126132965 +karman_re400,sr,160,64.0,velocity,center_ux,0.8631559610366821 +karman_re400,sr,160,64.0,velocity,center_uy,0.2569100558757782 +karman_re400,sr,160,64.0,velocity,lower_ux,1.2647804021835327 +karman_re400,sr,160,64.0,velocity,lower_uy,0.38315609097480774 +karman_re400,sr,161,64.4,velocity,upper_ux,0.9218515753746033 +karman_re400,sr,161,64.4,velocity,upper_uy,-0.05221431702375412 +karman_re400,sr,161,64.4,velocity,center_ux,0.7909915447235107 +karman_re400,sr,161,64.4,velocity,center_uy,0.016894182190299034 +karman_re400,sr,161,64.4,velocity,lower_ux,1.4150989055633545 +karman_re400,sr,161,64.4,velocity,lower_uy,-0.18399544060230255 +karman_re400,sr,162,64.8,velocity,upper_ux,0.9365440607070923 +karman_re400,sr,162,64.8,velocity,upper_uy,-0.1345331072807312 +karman_re400,sr,162,64.8,velocity,center_ux,0.7453570365905762 +karman_re400,sr,162,64.8,velocity,center_uy,-0.25620022416114807 +karman_re400,sr,162,64.8,velocity,lower_ux,1.3589935302734375 +karman_re400,sr,162,64.8,velocity,lower_uy,-0.21024015545845032 +karman_re400,sr,163,65.2,velocity,upper_ux,0.96445631980896 +karman_re400,sr,163,65.2,velocity,upper_uy,-0.17958486080169678 +karman_re400,sr,163,65.2,velocity,center_ux,0.7841550707817078 +karman_re400,sr,163,65.2,velocity,center_uy,-0.37185946106910706 +karman_re400,sr,163,65.2,velocity,lower_ux,1.2574700117111206 +karman_re400,sr,163,65.2,velocity,lower_uy,-0.26318392157554626 +karman_re400,sr,164,65.6,velocity,upper_ux,1.0028407573699951 +karman_re400,sr,164,65.6,velocity,upper_uy,-0.19609828293323517 +karman_re400,sr,164,65.6,velocity,center_ux,0.8298208713531494 +karman_re400,sr,164,65.6,velocity,center_uy,-0.39791443943977356 +karman_re400,sr,164,65.6,velocity,lower_ux,1.142316460609436 +karman_re400,sr,164,65.6,velocity,lower_uy,-0.27407050132751465 +karman_re400,sr,165,66.0,velocity,upper_ux,1.0534284114837646 +karman_re400,sr,165,66.0,velocity,upper_uy,-0.22116880118846893 +karman_re400,sr,165,66.0,velocity,center_ux,0.8597639203071594 +karman_re400,sr,165,66.0,velocity,center_uy,-0.38892805576324463 +karman_re400,sr,165,66.0,velocity,lower_ux,1.0535988807678223 +karman_re400,sr,165,66.0,velocity,lower_uy,-0.23732973635196686 +karman_re400,sr,166,66.4,velocity,upper_ux,1.126562476158142 +karman_re400,sr,166,66.4,velocity,upper_uy,-0.28547412157058716 +karman_re400,sr,166,66.4,velocity,center_ux,0.867575466632843 +karman_re400,sr,166,66.4,velocity,center_uy,-0.37502673268318176 +karman_re400,sr,166,66.4,velocity,lower_ux,0.9901162981987 +karman_re400,sr,166,66.4,velocity,lower_uy,-0.1654442548751831 +karman_re400,sr,167,66.8,velocity,upper_ux,1.2747890949249268 +karman_re400,sr,167,66.8,velocity,upper_uy,-0.42467212677001953 +karman_re400,sr,167,66.8,velocity,center_ux,0.8777855038642883 +karman_re400,sr,167,66.8,velocity,center_uy,-0.28913697600364685 +karman_re400,sr,167,66.8,velocity,lower_ux,0.9414787292480469 +karman_re400,sr,167,66.8,velocity,lower_uy,-0.072412870824337 +karman_re400,sr,168,67.2,velocity,upper_ux,1.4714457988739014 +karman_re400,sr,168,67.2,velocity,upper_uy,0.03940042480826378 +karman_re400,sr,168,67.2,velocity,center_ux,0.8269262909889221 +karman_re400,sr,168,67.2,velocity,center_uy,-0.09093816578388214 +karman_re400,sr,168,67.2,velocity,lower_ux,0.9168510437011719 +karman_re400,sr,168,67.2,velocity,lower_uy,0.02696908637881279 +karman_re400,sr,169,67.6,velocity,upper_ux,1.3894915580749512 +karman_re400,sr,169,67.6,velocity,upper_uy,0.21422012150287628 +karman_re400,sr,169,67.6,velocity,center_ux,0.7497501373291016 +karman_re400,sr,169,67.6,velocity,center_uy,0.19781005382537842 +karman_re400,sr,169,67.6,velocity,lower_ux,0.9260528683662415 +karman_re400,sr,169,67.6,velocity,lower_uy,0.11421428620815277 +karman_re400,sr,170,68.0,velocity,upper_ux,1.291172742843628 +karman_re400,sr,170,68.0,velocity,upper_uy,0.2689516246318817 +karman_re400,sr,170,68.0,velocity,center_ux,0.7708039283752441 +karman_re400,sr,170,68.0,velocity,center_uy,0.35703423619270325 +karman_re400,sr,170,68.0,velocity,lower_ux,0.9528446197509766 +karman_re400,sr,170,68.0,velocity,lower_uy,0.17371927201747894 +karman_re400,sr,171,68.4,velocity,upper_ux,1.173922061920166 +karman_re400,sr,171,68.4,velocity,upper_uy,0.2974734902381897 +karman_re400,sr,171,68.4,velocity,center_ux,0.8190324306488037 +karman_re400,sr,171,68.4,velocity,center_uy,0.4032403826713562 +karman_re400,sr,171,68.4,velocity,lower_ux,0.9892262816429138 +karman_re400,sr,171,68.4,velocity,lower_uy,0.1931375116109848 +karman_re400,sr,172,68.8,velocity,upper_ux,1.0755739212036133 +karman_re400,sr,172,68.8,velocity,upper_uy,0.2636781930923462 +karman_re400,sr,172,68.8,velocity,center_ux,0.8576741218566895 +karman_re400,sr,172,68.8,velocity,center_uy,0.3964557945728302 +karman_re400,sr,172,68.8,velocity,lower_ux,1.0369144678115845 +karman_re400,sr,172,68.8,velocity,lower_uy,0.21482765674591064 +karman_re400,sr,173,69.2,velocity,upper_ux,1.0053894519805908 +karman_re400,sr,173,69.2,velocity,upper_uy,0.19255851209163666 +karman_re400,sr,173,69.2,velocity,center_ux,0.8744539618492126 +karman_re400,sr,173,69.2,velocity,center_uy,0.38674023747444153 +karman_re400,sr,173,69.2,velocity,lower_ux,1.1052477359771729 +karman_re400,sr,173,69.2,velocity,lower_uy,0.26130998134613037 +karman_re400,sr,174,69.6,velocity,upper_ux,0.9502797722816467 +karman_re400,sr,174,69.6,velocity,upper_uy,0.0990784615278244 +karman_re400,sr,174,69.6,velocity,center_ux,0.8939045071601868 +karman_re400,sr,174,69.6,velocity,center_uy,0.3199372887611389 +karman_re400,sr,174,69.6,velocity,lower_ux,1.236764669418335 +karman_re400,sr,174,69.6,velocity,lower_uy,0.40488436818122864 +karman_re400,sr,175,70.0,velocity,upper_ux,0.9153562784194946 +karman_re400,sr,175,70.0,velocity,upper_uy,-0.004107040818780661 +karman_re400,sr,175,70.0,velocity,center_ux,0.8698382377624512 +karman_re400,sr,175,70.0,velocity,center_uy,0.16251520812511444 +karman_re400,sr,175,70.0,velocity,lower_ux,1.4706283807754517 +karman_re400,sr,175,70.0,velocity,lower_uy,0.13436612486839294 +karman_re400,sr,176,70.4,velocity,upper_ux,0.9191461801528931 +karman_re400,sr,176,70.4,velocity,upper_uy,-0.095527783036232 +karman_re400,sr,176,70.4,velocity,center_ux,0.7786003947257996 +karman_re400,sr,176,70.4,velocity,center_uy,-0.12104056030511856 +karman_re400,sr,176,70.4,velocity,lower_ux,1.4489270448684692 +karman_re400,sr,176,70.4,velocity,lower_uy,-0.21805401146411896 +karman_re400,sr,177,70.8,velocity,upper_ux,0.9423490762710571 +karman_re400,sr,177,70.8,velocity,upper_uy,-0.16598403453826904 +karman_re400,sr,177,70.8,velocity,center_ux,0.7648489475250244 +karman_re400,sr,177,70.8,velocity,center_uy,-0.3306920528411865 +karman_re400,sr,177,70.8,velocity,lower_ux,1.31960129737854 +karman_re400,sr,177,70.8,velocity,lower_uy,-0.24078083038330078 +karman_re400,sr,178,71.2,velocity,upper_ux,0.9778850674629211 +karman_re400,sr,178,71.2,velocity,upper_uy,-0.19277845323085785 +karman_re400,sr,178,71.2,velocity,center_ux,0.8099836111068726 +karman_re400,sr,178,71.2,velocity,center_uy,-0.40062373876571655 +karman_re400,sr,178,71.2,velocity,lower_ux,1.203718900680542 +karman_re400,sr,178,71.2,velocity,lower_uy,-0.2980748414993286 +karman_re400,sr,179,71.6,velocity,upper_ux,1.0232998132705688 +karman_re400,sr,179,71.6,velocity,upper_uy,-0.21195077896118164 +karman_re400,sr,179,71.6,velocity,center_ux,0.8525300025939941 +karman_re400,sr,179,71.6,velocity,center_uy,-0.4008859395980835 +karman_re400,sr,179,71.6,velocity,lower_ux,1.0970406532287598 +karman_re400,sr,179,71.6,velocity,lower_uy,-0.27830639481544495 +karman_re400,sr,180,72.0,velocity,upper_ux,1.0856595039367676 +karman_re400,sr,180,72.0,velocity,upper_uy,-0.25050756335258484 +karman_re400,sr,180,72.0,velocity,center_ux,0.8734052777290344 +karman_re400,sr,180,72.0,velocity,center_uy,-0.3922847807407379 +karman_re400,sr,180,72.0,velocity,lower_ux,1.0192334651947021 +karman_re400,sr,180,72.0,velocity,lower_uy,-0.21530450880527496 +karman_re400,sr,181,72.4,velocity,upper_ux,1.1979495286941528 +karman_re400,sr,181,72.4,velocity,upper_uy,-0.3763396739959717 +karman_re400,sr,181,72.4,velocity,center_ux,0.8926956057548523 +karman_re400,sr,181,72.4,velocity,center_uy,-0.3465527296066284 +karman_re400,sr,181,72.4,velocity,lower_ux,0.9626020789146423 +karman_re400,sr,181,72.4,velocity,lower_uy,-0.12646090984344482 +karman_re400,sr,182,72.8,velocity,upper_ux,1.4217050075531006 +karman_re400,sr,182,72.8,velocity,upper_uy,-0.25764769315719604 +karman_re400,sr,182,72.8,velocity,center_ux,0.8870756030082703 +karman_re400,sr,182,72.8,velocity,center_uy,-0.22241860628128052 +karman_re400,sr,182,72.8,velocity,lower_ux,0.9196275472640991 +karman_re400,sr,182,72.8,velocity,lower_uy,-0.022900141775608063 +karman_re400,sr,183,73.2,velocity,upper_ux,1.4814361333847046 +karman_re400,sr,183,73.2,velocity,upper_uy,0.206077441573143 +karman_re400,sr,183,73.2,velocity,center_ux,0.8023887872695923 +karman_re400,sr,183,73.2,velocity,center_uy,0.038318559527397156 +karman_re400,sr,183,73.2,velocity,lower_ux,0.9136062860488892 +karman_re400,sr,183,73.2,velocity,lower_uy,0.07277710735797882 +karman_re400,sr,184,73.6,velocity,upper_ux,1.3457403182983398 +karman_re400,sr,184,73.6,velocity,upper_uy,0.21130920946598053 +karman_re400,sr,184,73.6,velocity,center_ux,0.7609478831291199 +karman_re400,sr,184,73.6,velocity,center_uy,0.2960270345211029 +karman_re400,sr,184,73.6,velocity,lower_ux,0.9342381358146667 +karman_re400,sr,184,73.6,velocity,lower_uy,0.1516280472278595 +karman_re400,sr,185,74.0,velocity,upper_ux,1.2333786487579346 +karman_re400,sr,185,74.0,velocity,upper_uy,0.2826231122016907 +karman_re400,sr,185,74.0,velocity,center_ux,0.8002206683158875 +karman_re400,sr,185,74.0,velocity,center_uy,0.39172911643981934 +karman_re400,sr,185,74.0,velocity,lower_ux,0.9667937755584717 +karman_re400,sr,185,74.0,velocity,lower_uy,0.1883680373430252 +karman_re400,sr,186,74.4,velocity,upper_ux,1.1213088035583496 +karman_re400,sr,186,74.4,velocity,upper_uy,0.28204137086868286 +karman_re400,sr,186,74.4,velocity,center_ux,0.8446170091629028 +karman_re400,sr,186,74.4,velocity,center_uy,0.4037666618824005 +karman_re400,sr,186,74.4,velocity,lower_ux,1.0098077058792114 +karman_re400,sr,186,74.4,velocity,lower_uy,0.2053884118795395 +karman_re400,sr,187,74.8,velocity,upper_ux,1.0379078388214111 +karman_re400,sr,187,74.8,velocity,upper_uy,0.2313987910747528 +karman_re400,sr,187,74.8,velocity,center_ux,0.871778130531311 +karman_re400,sr,187,74.8,velocity,center_uy,0.3929862678050995 +karman_re400,sr,187,74.8,velocity,lower_ux,1.0686854124069214 +karman_re400,sr,187,74.8,velocity,lower_uy,0.23584112524986267 +karman_re400,sr,188,75.2,velocity,upper_ux,0.976803719997406 +karman_re400,sr,188,75.2,velocity,upper_uy,0.14932461082935333 +karman_re400,sr,188,75.2,velocity,center_ux,0.8859043121337891 +karman_re400,sr,188,75.2,velocity,center_uy,0.36409980058670044 +karman_re400,sr,188,75.2,velocity,lower_ux,1.1647552251815796 +karman_re400,sr,188,75.2,velocity,lower_uy,0.33127361536026 +karman_re400,sr,189,75.6,velocity,upper_ux,0.9292641282081604 +karman_re400,sr,189,75.6,velocity,upper_uy,0.049135204404592514 +karman_re400,sr,189,75.6,velocity,center_ux,0.8914922475814819 +karman_re400,sr,189,75.6,velocity,center_uy,0.26773279905319214 +karman_re400,sr,189,75.6,velocity,lower_ux,1.3614099025726318 +karman_re400,sr,189,75.6,velocity,lower_uy,0.36565902829170227 +karman_re400,sr,190,76.0,velocity,upper_ux,0.913236677646637 +karman_re400,sr,190,76.0,velocity,upper_uy,-0.04965794458985329 +karman_re400,sr,190,76.0,velocity,center_ux,0.822822630405426 +karman_re400,sr,190,76.0,velocity,center_uy,0.04575604945421219 +karman_re400,sr,190,76.0,velocity,lower_ux,1.4953536987304688 +karman_re400,sr,190,76.0,velocity,lower_uy,-0.16129355132579803 +karman_re400,sr,191,76.4,velocity,upper_ux,0.9278286695480347 +karman_re400,sr,191,76.4,velocity,upper_uy,-0.13386040925979614 +karman_re400,sr,191,76.4,velocity,center_ux,0.7562614679336548 +karman_re400,sr,191,76.4,velocity,center_uy,-0.24647440016269684 +karman_re400,sr,191,76.4,velocity,lower_ux,1.3781628608703613 +karman_re400,sr,191,76.4,velocity,lower_uy,-0.19559669494628906 +karman_re400,sr,192,76.8,velocity,upper_ux,0.9577754735946655 +karman_re400,sr,192,76.8,velocity,upper_uy,-0.1819273829460144 +karman_re400,sr,192,76.8,velocity,center_ux,0.7877039313316345 +karman_re400,sr,192,76.8,velocity,center_uy,-0.37640056014060974 +karman_re400,sr,192,76.8,velocity,lower_ux,1.2697269916534424 +karman_re400,sr,192,76.8,velocity,lower_uy,-0.26135414838790894 +karman_re400,sr,193,77.2,velocity,upper_ux,0.9969898462295532 +karman_re400,sr,193,77.2,velocity,upper_uy,-0.19866131246089935 +karman_re400,sr,193,77.2,velocity,center_ux,0.8335720896720886 +karman_re400,sr,193,77.2,velocity,center_uy,-0.4036990702152252 +karman_re400,sr,193,77.2,velocity,lower_ux,1.1510878801345825 +karman_re400,sr,193,77.2,velocity,lower_uy,-0.27764102816581726 +karman_re400,sr,194,77.6,velocity,upper_ux,1.0473836660385132 +karman_re400,sr,194,77.6,velocity,upper_uy,-0.22382475435733795 +karman_re400,sr,194,77.6,velocity,center_ux,0.8653954863548279 +karman_re400,sr,194,77.6,velocity,center_uy,-0.3913361430168152 +karman_re400,sr,194,77.6,velocity,lower_ux,1.0593937635421753 +karman_re400,sr,194,77.6,velocity,lower_uy,-0.24015529453754425 +karman_re400,sr,195,78.0,velocity,upper_ux,1.1204190254211426 +karman_re400,sr,195,78.0,velocity,upper_uy,-0.2875658869743347 +karman_re400,sr,195,78.0,velocity,center_ux,0.8783526420593262 +karman_re400,sr,195,78.0,velocity,center_uy,-0.37500813603401184 +karman_re400,sr,195,78.0,velocity,lower_ux,0.9956662654876709 +karman_re400,sr,195,78.0,velocity,lower_uy,-0.1665877103805542 +karman_re400,sr,196,78.4,velocity,upper_ux,1.2526345252990723 +karman_re400,sr,196,78.4,velocity,upper_uy,-0.43253785371780396 +karman_re400,sr,196,78.4,velocity,center_ux,0.8876945972442627 +karman_re400,sr,196,78.4,velocity,center_uy,-0.2995662987232208 +karman_re400,sr,196,78.4,velocity,lower_ux,0.9438022375106812 +karman_re400,sr,196,78.4,velocity,lower_uy,-0.07220423966646194 +karman_re400,sr,197,78.8,velocity,upper_ux,1.451672077178955 +karman_re400,sr,197,78.8,velocity,upper_uy,0.06988395005464554 +karman_re400,sr,197,78.8,velocity,center_ux,0.8350059986114502 +karman_re400,sr,197,78.8,velocity,center_uy,-0.11186477541923523 +karman_re400,sr,197,78.8,velocity,lower_ux,0.9174022078514099 +karman_re400,sr,197,78.8,velocity,lower_uy,0.027156563475728035 +karman_re400,sr,198,79.2,velocity,upper_ux,1.4041643142700195 +karman_re400,sr,198,79.2,velocity,upper_uy,0.21175886690616608 +karman_re400,sr,198,79.2,velocity,center_ux,0.7555798292160034 +karman_re400,sr,198,79.2,velocity,center_uy,0.18772104382514954 +karman_re400,sr,198,79.2,velocity,lower_ux,0.927192211151123 +karman_re400,sr,198,79.2,velocity,lower_uy,0.11399389058351517 +karman_re400,sr,199,79.6,velocity,upper_ux,1.301914930343628 +karman_re400,sr,199,79.6,velocity,upper_uy,0.25052839517593384 +karman_re400,sr,199,79.6,velocity,center_ux,0.7731754779815674 +karman_re400,sr,199,79.6,velocity,center_uy,0.35387158393859863 +karman_re400,sr,199,79.6,velocity,lower_ux,0.9521974325180054 +karman_re400,sr,199,79.6,velocity,lower_uy,0.172066330909729 +karman_re400,sr,0,0.0,force,front_fx,0.0008178300922736526 +karman_re400,sr,0,0.0,force,front_fy,-0.004863977897912264 +karman_re400,sr,0,0.0,force,upper_fx,0.00836911890655756 +karman_re400,sr,0,0.0,force,upper_fy,0.006121380720287561 +karman_re400,sr,0,0.0,force,lower_fx,-0.010903283022344112 +karman_re400,sr,0,0.0,force,lower_fy,-0.002868085168302059 +karman_re400,sr,1,0.4,force,front_fx,0.0035746314097195864 +karman_re400,sr,1,0.4,force,front_fy,-0.0025817283894866705 +karman_re400,sr,1,0.4,force,upper_fx,0.0063948179595172405 +karman_re400,sr,1,0.4,force,upper_fy,0.006043979432433844 +karman_re400,sr,1,0.4,force,lower_fx,-0.011333486065268517 +karman_re400,sr,1,0.4,force,lower_fy,-0.0033091942314058542 +karman_re400,sr,2,0.8,force,front_fx,0.003871027147397399 +karman_re400,sr,2,0.8,force,front_fy,0.0010376842692494392 +karman_re400,sr,2,0.8,force,upper_fx,0.004535936284810305 +karman_re400,sr,2,0.8,force,upper_fy,0.005344688426703215 +karman_re400,sr,2,0.8,force,lower_fx,-0.009563852101564407 +karman_re400,sr,2,0.8,force,lower_fy,-0.002471423940733075 +karman_re400,sr,3,1.2,force,front_fx,0.0008647855138406157 +karman_re400,sr,3,1.2,force,front_fy,0.004148915410041809 +karman_re400,sr,3,1.2,force,upper_fx,0.0028747280593961477 +karman_re400,sr,3,1.2,force,upper_fy,0.005100801587104797 +karman_re400,sr,3,1.2,force,lower_fx,-0.007709504570811987 +karman_re400,sr,3,1.2,force,lower_fy,-0.0028728130273520947 +karman_re400,sr,4,1.6,force,front_fx,-0.0023202761076390743 +karman_re400,sr,4,1.6,force,front_fy,0.006218876224011183 +karman_re400,sr,4,1.6,force,upper_fx,0.0010858559980988503 +karman_re400,sr,4,1.6,force,upper_fy,0.005785975605249405 +karman_re400,sr,4,1.6,force,lower_fx,-0.00408425135537982 +karman_re400,sr,4,1.6,force,lower_fy,-0.005467209033668041 +karman_re400,sr,5,2.0,force,front_fx,-0.004369745962321758 +karman_re400,sr,5,2.0,force,front_fy,0.006780335213989019 +karman_re400,sr,5,2.0,force,upper_fx,-0.00032915917108766735 +karman_re400,sr,5,2.0,force,upper_fy,0.006408834829926491 +karman_re400,sr,5,2.0,force,lower_fx,-0.0002659135789144784 +karman_re400,sr,5,2.0,force,lower_fy,-0.007150582503527403 +karman_re400,sr,6,2.4,force,front_fx,-0.0036745674442499876 +karman_re400,sr,6,2.4,force,front_fy,0.006321704480797052 +karman_re400,sr,6,2.4,force,upper_fx,-0.0016022418858483434 +karman_re400,sr,6,2.4,force,upper_fy,0.005963612347841263 +karman_re400,sr,6,2.4,force,lower_fx,0.002862450433894992 +karman_re400,sr,6,2.4,force,lower_fy,-0.00769924558699131 +karman_re400,sr,7,2.8,force,front_fx,-0.0005114134983159602 +karman_re400,sr,7,2.8,force,front_fy,0.005271909758448601 +karman_re400,sr,7,2.8,force,upper_fx,-0.003866613609716296 +karman_re400,sr,7,2.8,force,upper_fy,0.004431015346199274 +karman_re400,sr,7,2.8,force,lower_fx,0.005335476249456406 +karman_re400,sr,7,2.8,force,lower_fy,-0.007984158582985401 +karman_re400,sr,8,3.2,force,front_fx,0.0018244992243126035 +karman_re400,sr,8,3.2,force,front_fy,0.002080520149320364 +karman_re400,sr,8,3.2,force,upper_fx,-0.006630271207541227 +karman_re400,sr,8,3.2,force,upper_fy,0.00274588237516582 +karman_re400,sr,8,3.2,force,lower_fx,0.006523421499878168 +karman_re400,sr,8,3.2,force,lower_fy,-0.007803662214428186 +karman_re400,sr,9,3.6,force,front_fx,0.0018217184115201235 +karman_re400,sr,9,3.6,force,front_fy,-0.0022593929897993803 +karman_re400,sr,9,3.6,force,upper_fx,-0.00784521084278822 +karman_re400,sr,9,3.6,force,upper_fy,0.002495834603905678 +karman_re400,sr,9,3.6,force,lower_fx,0.005326572805643082 +karman_re400,sr,9,3.6,force,lower_fy,-0.007039625197649002 +karman_re400,sr,10,4.0,force,front_fx,0.0004257615946698934 +karman_re400,sr,10,4.0,force,front_fy,-0.005427622236311436 +karman_re400,sr,10,4.0,force,upper_fx,-0.006840094458311796 +karman_re400,sr,10,4.0,force,upper_fy,0.0034608386922627687 +karman_re400,sr,10,4.0,force,lower_fx,0.0031953982543200254 +karman_re400,sr,10,4.0,force,lower_fy,-0.0063817924819886684 +karman_re400,sr,11,4.4,force,front_fx,-0.002014369470998645 +karman_re400,sr,11,4.4,force,front_fy,-0.006163903046399355 +karman_re400,sr,11,4.4,force,upper_fx,-0.005078693851828575 +karman_re400,sr,11,4.4,force,upper_fy,0.005386324133723974 +karman_re400,sr,11,4.4,force,lower_fx,0.0019722552970051765 +karman_re400,sr,11,4.4,force,lower_fy,-0.0059793186374008656 +karman_re400,sr,12,4.8,force,front_fx,-0.004525644704699516 +karman_re400,sr,12,4.8,force,front_fy,-0.006412718910723925 +karman_re400,sr,12,4.8,force,upper_fx,-0.0017091616755351424 +karman_re400,sr,12,4.8,force,upper_fy,0.008653421886265278 +karman_re400,sr,12,4.8,force,lower_fx,0.0005732436547987163 +karman_re400,sr,12,4.8,force,lower_fy,-0.006599682383239269 +karman_re400,sr,13,5.2,force,front_fx,-0.004344590939581394 +karman_re400,sr,13,5.2,force,front_fy,-0.0061323558911681175 +karman_re400,sr,13,5.2,force,upper_fx,0.0032955792266875505 +karman_re400,sr,13,5.2,force,upper_fy,0.009258602745831013 +karman_re400,sr,13,5.2,force,lower_fx,-0.0013821283355355263 +karman_re400,sr,13,5.2,force,lower_fy,-0.006723848171532154 +karman_re400,sr,14,5.6,force,front_fx,-0.0021497434936463833 +karman_re400,sr,14,5.6,force,front_fy,-0.005842423066496849 +karman_re400,sr,14,5.6,force,upper_fx,0.006021999754011631 +karman_re400,sr,14,5.6,force,upper_fy,0.0077680498361587524 +karman_re400,sr,14,5.6,force,lower_fx,-0.003714991267770529 +karman_re400,sr,14,5.6,force,lower_fy,-0.006412709131836891 +karman_re400,sr,15,6.0,force,front_fx,0.0012123589403927326 +karman_re400,sr,15,6.0,force,front_fy,-0.003493576543405652 +karman_re400,sr,15,6.0,force,upper_fx,0.00629487494006753 +karman_re400,sr,15,6.0,force,upper_fy,0.006875384598970413 +karman_re400,sr,15,6.0,force,lower_fx,-0.005001917947083712 +karman_re400,sr,15,6.0,force,lower_fy,-0.004959133453667164 +karman_re400,sr,16,6.4,force,front_fx,0.0028246548026800156 +karman_re400,sr,16,6.4,force,front_fy,0.000887949310708791 +karman_re400,sr,16,6.4,force,upper_fx,0.00507309241220355 +karman_re400,sr,16,6.4,force,upper_fy,0.006606570445001125 +karman_re400,sr,16,6.4,force,lower_fx,-0.006398337427526712 +karman_re400,sr,16,6.4,force,lower_fy,-0.0024391026236116886 +karman_re400,sr,17,6.8,force,front_fx,0.0010989767033606768 +karman_re400,sr,17,6.8,force,front_fy,0.003282277612015605 +karman_re400,sr,17,6.8,force,upper_fx,0.0038892703596502542 +karman_re400,sr,17,6.8,force,upper_fy,0.0056997728534042835 +karman_re400,sr,17,6.8,force,lower_fx,-0.007085736375302076 +karman_re400,sr,17,6.8,force,lower_fy,-0.0019338541897013783 +karman_re400,sr,18,7.2,force,front_fx,-0.0016743210144340992 +karman_re400,sr,18,7.2,force,front_fy,0.005518853664398193 +karman_re400,sr,18,7.2,force,upper_fx,0.0021321203093975782 +karman_re400,sr,18,7.2,force,upper_fy,0.005673875100910664 +karman_re400,sr,18,7.2,force,lower_fx,-0.005318392999470234 +karman_re400,sr,18,7.2,force,lower_fy,-0.004175502806901932 +karman_re400,sr,19,7.6,force,front_fx,-0.0036233942955732346 +karman_re400,sr,19,7.6,force,front_fy,0.006771123968064785 +karman_re400,sr,19,7.6,force,upper_fx,0.0005584469763562083 +karman_re400,sr,19,7.6,force,upper_fy,0.005982079543173313 +karman_re400,sr,19,7.6,force,lower_fx,-0.0021254667080938816 +karman_re400,sr,19,7.6,force,lower_fy,-0.005904476623982191 +karman_re400,sr,20,8.0,force,front_fx,-0.0043793474324047565 +karman_re400,sr,20,8.0,force,front_fy,0.0066106258891522884 +karman_re400,sr,20,8.0,force,upper_fx,-0.000792044447734952 +karman_re400,sr,20,8.0,force,upper_fy,0.0061575984582304955 +karman_re400,sr,20,8.0,force,lower_fx,0.0005532495561055839 +karman_re400,sr,20,8.0,force,lower_fy,-0.006776720285415649 +karman_re400,sr,21,8.4,force,front_fx,-0.00277254288084805 +karman_re400,sr,21,8.4,force,front_fy,0.006074862089008093 +karman_re400,sr,21,8.4,force,upper_fx,-0.002325154608115554 +karman_re400,sr,21,8.4,force,upper_fy,0.005595799069851637 +karman_re400,sr,21,8.4,force,lower_fx,0.0033503433223813772 +karman_re400,sr,21,8.4,force,lower_fy,-0.007261120248585939 +karman_re400,sr,22,8.8,force,front_fx,0.00042554433457553387 +karman_re400,sr,22,8.8,force,front_fy,0.004410152323544025 +karman_re400,sr,22,8.8,force,upper_fx,-0.0043903435580432415 +karman_re400,sr,22,8.8,force,upper_fy,0.004104213789105415 +karman_re400,sr,22,8.8,force,lower_fx,0.005472136195749044 +karman_re400,sr,22,8.8,force,lower_fy,-0.006966776214540005 +karman_re400,sr,23,9.2,force,front_fx,0.0018105763010680676 +karman_re400,sr,23,9.2,force,front_fy,0.0009199062478728592 +karman_re400,sr,23,9.2,force,upper_fx,-0.006165191065520048 +karman_re400,sr,23,9.2,force,upper_fy,0.0029936067294329405 +karman_re400,sr,23,9.2,force,lower_fx,0.005789614748209715 +karman_re400,sr,23,9.2,force,lower_fy,-0.006303648464381695 +karman_re400,sr,24,9.6,force,front_fx,0.001179728889837861 +karman_re400,sr,24,9.6,force,front_fy,-0.002811651909723878 +karman_re400,sr,24,9.6,force,upper_fx,-0.006077638827264309 +karman_re400,sr,24,9.6,force,upper_fy,0.0028281917329877615 +karman_re400,sr,24,9.6,force,lower_fx,0.004301917273551226 +karman_re400,sr,24,9.6,force,lower_fy,-0.0057123396545648575 +karman_re400,sr,25,10.0,force,front_fx,-0.0008638830622658134 +karman_re400,sr,25,10.0,force,front_fy,-0.005228380672633648 +karman_re400,sr,25,10.0,force,upper_fx,-0.0045506772585213184 +karman_re400,sr,25,10.0,force,upper_fy,0.0033664596267044544 +karman_re400,sr,25,10.0,force,lower_fx,0.002415295457467437 +karman_re400,sr,25,10.0,force,lower_fy,-0.005558171309530735 +karman_re400,sr,26,10.4,force,front_fx,-0.003091219114139676 +karman_re400,sr,26,10.4,force,front_fy,-0.006427511107176542 +karman_re400,sr,26,10.4,force,upper_fx,-0.002819921588525176 +karman_re400,sr,26,10.4,force,upper_fy,0.004217717796564102 +karman_re400,sr,26,10.4,force,lower_fx,0.0009146617376245558 +karman_re400,sr,26,10.4,force,lower_fy,-0.005915710236877203 +karman_re400,sr,27,10.8,force,front_fx,-0.004288991913199425 +karman_re400,sr,27,10.8,force,front_fy,-0.006624395959079266 +karman_re400,sr,27,10.8,force,upper_fx,-0.000960611505433917 +karman_re400,sr,27,10.8,force,upper_fy,0.005611766595393419 +karman_re400,sr,27,10.8,force,lower_fx,-0.00016120974032673985 +karman_re400,sr,27,10.8,force,lower_fy,-0.006140274927020073 +karman_re400,sr,28,11.2,force,front_fx,-0.003185381880030036 +karman_re400,sr,28,11.2,force,front_fy,-0.006246886216104031 +karman_re400,sr,28,11.2,force,upper_fx,0.0017822354566305876 +karman_re400,sr,28,11.2,force,upper_fy,0.006820667535066605 +karman_re400,sr,28,11.2,force,lower_fx,-0.0015308884903788567 +karman_re400,sr,28,11.2,force,lower_fy,-0.005212096497416496 +karman_re400,sr,29,11.6,force,front_fx,-0.00028627493884414434 +karman_re400,sr,29,11.6,force,front_fy,-0.004945374559611082 +karman_re400,sr,29,11.6,force,upper_fx,0.0044448114931583405 +karman_re400,sr,29,11.6,force,upper_fy,0.006747452076524496 +karman_re400,sr,29,11.6,force,lower_fx,-0.003796106670051813 +karman_re400,sr,29,11.6,force,lower_fy,-0.003742760978639126 +karman_re400,sr,30,12.0,force,front_fx,0.0014913654886186123 +karman_re400,sr,30,12.0,force,front_fy,-0.0019410705426707864 +karman_re400,sr,30,12.0,force,upper_fx,0.005346376448869705 +karman_re400,sr,30,12.0,force,upper_fy,0.005925758276134729 +karman_re400,sr,30,12.0,force,lower_fx,-0.005666225682944059 +karman_re400,sr,30,12.0,force,lower_fy,-0.0029637771658599377 +karman_re400,sr,31,12.4,force,front_fx,0.0010380987077951431 +karman_re400,sr,31,12.4,force,front_fy,0.0019171680323779583 +karman_re400,sr,31,12.4,force,upper_fx,0.004223208408802748 +karman_re400,sr,31,12.4,force,upper_fy,0.005493051838129759 +karman_re400,sr,31,12.4,force,lower_fx,-0.005380851682275534 +karman_re400,sr,31,12.4,force,lower_fy,-0.003300261218100786 +karman_re400,sr,32,12.8,force,front_fx,-0.0008199391304515302 +karman_re400,sr,32,12.8,force,front_fy,0.0046912203542888165 +karman_re400,sr,32,12.8,force,upper_fx,0.0023692126851528883 +karman_re400,sr,32,12.8,force,upper_fy,0.005566549487411976 +karman_re400,sr,32,12.8,force,lower_fx,-0.0034239927772432566 +karman_re400,sr,32,12.8,force,lower_fy,-0.003644886426627636 +karman_re400,sr,33,13.2,force,front_fx,-0.002959887497127056 +karman_re400,sr,33,13.2,force,front_fy,0.005884167738258839 +karman_re400,sr,33,13.2,force,upper_fx,0.000719934469088912 +karman_re400,sr,33,13.2,force,upper_fy,0.006135251373052597 +karman_re400,sr,33,13.2,force,lower_fx,-0.001838047755882144 +karman_re400,sr,33,13.2,force,lower_fy,-0.0039037757087498903 +karman_re400,sr,34,13.6,force,front_fx,-0.0038785962387919426 +karman_re400,sr,34,13.6,force,front_fy,0.006145330145955086 +karman_re400,sr,34,13.6,force,upper_fx,-0.0002425011625746265 +karman_re400,sr,34,13.6,force,upper_fy,0.006180442404001951 +karman_re400,sr,34,13.6,force,lower_fx,-0.0005468245362862945 +karman_re400,sr,34,13.6,force,lower_fy,-0.004657424055039883 +karman_re400,sr,35,14.0,force,front_fx,-0.002977191237732768 +karman_re400,sr,35,14.0,force,front_fy,0.006092193070799112 +karman_re400,sr,35,14.0,force,upper_fx,-0.0015227037947624922 +karman_re400,sr,35,14.0,force,upper_fy,0.004778357222676277 +karman_re400,sr,35,14.0,force,lower_fx,0.0015621590428054333 +karman_re400,sr,35,14.0,force,lower_fy,-0.005760238040238619 +karman_re400,sr,36,14.4,force,front_fx,-0.0005321999196894467 +karman_re400,sr,36,14.4,force,front_fy,0.005316287744790316 +karman_re400,sr,36,14.4,force,upper_fx,-0.0036665189545601606 +karman_re400,sr,36,14.4,force,upper_fy,0.0028324106242507696 +karman_re400,sr,36,14.4,force,lower_fx,0.0041013662703335285 +karman_re400,sr,36,14.4,force,lower_fy,-0.0061017596162855625 +karman_re400,sr,37,14.8,force,front_fx,0.0015462565934285522 +karman_re400,sr,37,14.8,force,front_fy,0.0029724184423685074 +karman_re400,sr,37,14.8,force,upper_fx,-0.0060657630674541 +karman_re400,sr,37,14.8,force,upper_fy,0.0013077332405373454 +karman_re400,sr,37,14.8,force,lower_fx,0.005328627303242683 +karman_re400,sr,37,14.8,force,lower_fy,-0.005558372009545565 +karman_re400,sr,38,15.2,force,front_fx,0.0014877434587106109 +karman_re400,sr,38,15.2,force,front_fy,-0.0007530066650360823 +karman_re400,sr,38,15.2,force,upper_fx,-0.0067037916742265224 +karman_re400,sr,38,15.2,force,upper_fy,0.0016519996570423245 +karman_re400,sr,38,15.2,force,lower_fx,0.004563051741570234 +karman_re400,sr,38,15.2,force,lower_fy,-0.005247313529253006 +karman_re400,sr,39,15.6,force,front_fx,0.00013177550863474607 +karman_re400,sr,39,15.6,force,front_fy,-0.004360144957900047 +karman_re400,sr,39,15.6,force,upper_fx,-0.0049278936348855495 +karman_re400,sr,39,15.6,force,upper_fy,0.002549123717471957 +karman_re400,sr,39,15.6,force,lower_fx,0.0026498364750295877 +karman_re400,sr,39,15.6,force,lower_fy,-0.0053034289740026 +karman_re400,sr,40,16.0,force,front_fx,-0.0018342252587899566 +karman_re400,sr,40,16.0,force,front_fy,-0.006101449020206928 +karman_re400,sr,40,16.0,force,upper_fx,-0.0032357603777199984 +karman_re400,sr,40,16.0,force,upper_fy,0.003204775508493185 +karman_re400,sr,40,16.0,force,lower_fx,0.0010359701700508595 +karman_re400,sr,40,16.0,force,lower_fy,-0.005555611103773117 +karman_re400,sr,41,16.4,force,front_fx,-0.003648693673312664 +karman_re400,sr,41,16.4,force,front_fy,-0.006306040100753307 +karman_re400,sr,41,16.4,force,upper_fx,-0.001834959490224719 +karman_re400,sr,41,16.4,force,upper_fy,0.0046419077552855015 +karman_re400,sr,41,16.4,force,lower_fx,0.00015591279952786863 +karman_re400,sr,41,16.4,force,lower_fy,-0.0057950192131102085 +karman_re400,sr,42,16.8,force,front_fx,-0.003915524110198021 +karman_re400,sr,42,16.8,force,front_fy,-0.006077062338590622 +karman_re400,sr,42,16.8,force,upper_fx,0.0006389639456756413 +karman_re400,sr,42,16.8,force,upper_fy,0.006399303209036589 +karman_re400,sr,42,16.8,force,lower_fx,-0.0008140233694575727 +karman_re400,sr,42,16.8,force,lower_fy,-0.0052846139296889305 +karman_re400,sr,43,17.2,force,front_fx,-0.001829141634516418 +karman_re400,sr,43,17.2,force,front_fy,-0.005655631422996521 +karman_re400,sr,43,17.2,force,upper_fx,0.003867841325700283 +karman_re400,sr,43,17.2,force,upper_fy,0.00692230649292469 +karman_re400,sr,43,17.2,force,lower_fx,-0.002846056828275323 +karman_re400,sr,43,17.2,force,lower_fy,-0.003981758374720812 +karman_re400,sr,44,17.6,force,front_fx,0.0007333063404075801 +karman_re400,sr,44,17.6,force,front_fy,-0.003967517986893654 +karman_re400,sr,44,17.6,force,upper_fx,0.005811478476971388 +karman_re400,sr,44,17.6,force,upper_fy,0.006078347098082304 +karman_re400,sr,44,17.6,force,lower_fx,-0.0052849953062832355 +karman_re400,sr,44,17.6,force,lower_fy,-0.0027937369886785746 +karman_re400,sr,45,18.0,force,front_fx,0.001616524183191359 +karman_re400,sr,45,18.0,force,front_fy,-0.0003014530229847878 +karman_re400,sr,45,18.0,force,upper_fx,0.005367429926991463 +karman_re400,sr,45,18.0,force,upper_fy,0.0054275705479085445 +karman_re400,sr,45,18.0,force,lower_fx,-0.00620702188462019 +karman_re400,sr,45,18.0,force,lower_fy,-0.0023585716262459755 +karman_re400,sr,46,18.4,force,front_fx,0.0007295791292563081 +karman_re400,sr,46,18.4,force,front_fy,0.0035100586246699095 +karman_re400,sr,46,18.4,force,upper_fx,0.0034737084060907364 +karman_re400,sr,46,18.4,force,upper_fy,0.00529190618544817 +karman_re400,sr,46,18.4,force,lower_fx,-0.005079907365143299 +karman_re400,sr,46,18.4,force,lower_fy,-0.002150679240003228 +karman_re400,sr,47,18.8,force,front_fx,-0.0012899369467049837 +karman_re400,sr,47,18.8,force,front_fy,0.005627751350402832 +karman_re400,sr,47,18.8,force,upper_fx,0.0017528156749904156 +karman_re400,sr,47,18.8,force,upper_fy,0.005480423104017973 +karman_re400,sr,47,18.8,force,lower_fx,-0.0036962227895855904 +karman_re400,sr,47,18.8,force,lower_fy,-0.002220077905803919 +karman_re400,sr,48,19.2,force,front_fx,-0.003425853792577982 +karman_re400,sr,48,19.2,force,front_fy,0.006459774449467659 +karman_re400,sr,48,19.2,force,upper_fx,0.0006812746287323534 +karman_re400,sr,48,19.2,force,upper_fy,0.005882632918655872 +karman_re400,sr,48,19.2,force,lower_fx,-0.0025604707188904285 +karman_re400,sr,48,19.2,force,lower_fy,-0.003368759760633111 +karman_re400,sr,49,19.6,force,front_fx,-0.004121898207813501 +karman_re400,sr,49,19.6,force,front_fy,0.006623579654842615 +karman_re400,sr,49,19.6,force,upper_fx,-0.00013218482490628958 +karman_re400,sr,49,19.6,force,upper_fy,0.0055330730974674225 +karman_re400,sr,49,19.6,force,lower_fx,-0.0006732500623911619 +karman_re400,sr,49,19.6,force,lower_fy,-0.005227627698332071 +karman_re400,sr,50,20.0,force,front_fx,-0.0026330705732107162 +karman_re400,sr,50,20.0,force,front_fy,0.0062455241568386555 +karman_re400,sr,50,20.0,force,upper_fx,-0.0017193822422996163 +karman_re400,sr,50,20.0,force,upper_fy,0.004254139494150877 +karman_re400,sr,50,20.0,force,lower_fx,0.0022528902627527714 +karman_re400,sr,50,20.0,force,lower_fy,-0.006407622247934341 +karman_re400,sr,51,20.4,force,front_fx,0.00017344107618555427 +karman_re400,sr,51,20.4,force,front_fy,0.004678985103964806 +karman_re400,sr,51,20.4,force,upper_fx,-0.0041152359917759895 +karman_re400,sr,51,20.4,force,upper_fy,0.002992090070620179 +karman_re400,sr,51,20.4,force,lower_fx,0.00468968553468585 +karman_re400,sr,51,20.4,force,lower_fy,-0.006105024833232164 +karman_re400,sr,52,20.8,force,front_fx,0.001456440077163279 +karman_re400,sr,52,20.8,force,front_fy,0.0014809153508394957 +karman_re400,sr,52,20.8,force,upper_fx,-0.00559659767895937 +karman_re400,sr,52,20.8,force,upper_fy,0.0027151117101311684 +karman_re400,sr,52,20.8,force,lower_fx,0.005201354157179594 +karman_re400,sr,52,20.8,force,lower_fy,-0.005374989006668329 +karman_re400,sr,53,21.2,force,front_fx,0.0006404168088920414 +karman_re400,sr,53,21.2,force,front_fy,-0.002388200955465436 +karman_re400,sr,53,21.2,force,upper_fx,-0.004490864463150501 +karman_re400,sr,53,21.2,force,upper_fy,0.003234488656744361 +karman_re400,sr,53,21.2,force,lower_fx,0.003842001548036933 +karman_re400,sr,53,21.2,force,lower_fy,-0.005166118033230305 +karman_re400,sr,54,21.6,force,front_fx,-0.001461175736039877 +karman_re400,sr,54,21.6,force,front_fy,-0.004828289151191711 +karman_re400,sr,54,21.6,force,upper_fx,-0.0023354352451860905 +karman_re400,sr,54,21.6,force,upper_fy,0.0032661110162734985 +karman_re400,sr,54,21.6,force,lower_fx,0.0019129683496430516 +karman_re400,sr,54,21.6,force,lower_fy,-0.005516350734978914 +karman_re400,sr,55,22.0,force,front_fx,-0.003347955644130707 +karman_re400,sr,55,22.0,force,front_fy,-0.00574682280421257 +karman_re400,sr,55,22.0,force,upper_fx,-0.0010414451826363802 +karman_re400,sr,55,22.0,force,upper_fy,0.00328280427493155 +karman_re400,sr,55,22.0,force,lower_fx,0.0003988969838246703 +karman_re400,sr,55,22.0,force,lower_fy,-0.0063195438124239445 +karman_re400,sr,56,22.4,force,front_fx,-0.003648448968306184 +karman_re400,sr,56,22.4,force,front_fy,-0.006020771339535713 +karman_re400,sr,56,22.4,force,upper_fx,2.4373852284043096e-05 +karman_re400,sr,56,22.4,force,upper_fy,0.004000130109488964 +karman_re400,sr,56,22.4,force,lower_fx,-0.0004373683768790215 +karman_re400,sr,56,22.4,force,lower_fy,-0.005806082393974066 +karman_re400,sr,57,22.8,force,front_fx,-0.0023662238381803036 +karman_re400,sr,57,22.8,force,front_fy,-0.006020584609359503 +karman_re400,sr,57,22.8,force,upper_fx,0.0021637422032654285 +karman_re400,sr,57,22.8,force,upper_fy,0.005096712615340948 +karman_re400,sr,57,22.8,force,lower_fx,-0.0018824052531272173 +karman_re400,sr,57,22.8,force,lower_fy,-0.00396488793194294 +karman_re400,sr,58,23.2,force,front_fx,9.136350126937032e-05 +karman_re400,sr,58,23.2,force,front_fy,-0.005002838559448719 +karman_re400,sr,58,23.2,force,upper_fx,0.004382589366286993 +karman_re400,sr,58,23.2,force,upper_fy,0.005221792031079531 +karman_re400,sr,58,23.2,force,lower_fx,-0.0040731909684836864 +karman_re400,sr,58,23.2,force,lower_fy,-0.0018406786257401109 +karman_re400,sr,59,23.6,force,front_fx,0.0016295723617076874 +karman_re400,sr,59,23.6,force,front_fy,-0.0026026442646980286 +karman_re400,sr,59,23.6,force,upper_fx,0.005248553119599819 +karman_re400,sr,59,23.6,force,upper_fy,0.004721465054899454 +karman_re400,sr,59,23.6,force,lower_fx,-0.006288365926593542 +karman_re400,sr,59,23.6,force,lower_fy,-0.0005290526314638555 +karman_re400,sr,60,24.0,force,front_fx,0.0012645925162360072 +karman_re400,sr,60,24.0,force,front_fy,0.0012459824793040752 +karman_re400,sr,60,24.0,force,upper_fx,0.004177903290838003 +karman_re400,sr,60,24.0,force,upper_fy,0.004555252380669117 +karman_re400,sr,60,24.0,force,lower_fx,-0.006543975323438644 +karman_re400,sr,60,24.0,force,lower_fy,-0.0013817308936268091 +karman_re400,sr,61,24.4,force,front_fx,-0.0004014903388451785 +karman_re400,sr,61,24.4,force,front_fy,0.004600608255714178 +karman_re400,sr,61,24.4,force,upper_fx,0.0021718863863497972 +karman_re400,sr,61,24.4,force,upper_fy,0.00484866788610816 +karman_re400,sr,61,24.4,force,lower_fx,-0.004385633394122124 +karman_re400,sr,61,24.4,force,lower_fy,-0.002460472984239459 +karman_re400,sr,62,24.8,force,front_fx,-0.0023812090512365103 +karman_re400,sr,62,24.8,force,front_fy,0.006133544258773327 +karman_re400,sr,62,24.8,force,upper_fx,0.0006441064761020243 +karman_re400,sr,62,24.8,force,upper_fy,0.005443771369755268 +karman_re400,sr,62,24.8,force,lower_fx,-0.002785810735076666 +karman_re400,sr,62,24.8,force,lower_fy,-0.00291041168384254 +karman_re400,sr,63,25.2,force,front_fx,-0.00376368616707623 +karman_re400,sr,63,25.2,force,front_fy,0.006295559927821159 +karman_re400,sr,63,25.2,force,upper_fx,-3.504636697471142e-05 +karman_re400,sr,63,25.2,force,upper_fy,0.005606170743703842 +karman_re400,sr,63,25.2,force,lower_fx,-0.0016768340719863772 +karman_re400,sr,63,25.2,force,lower_fy,-0.004172695800662041 +karman_re400,sr,64,25.6,force,front_fx,-0.0035198337864130735 +karman_re400,sr,64,25.6,force,front_fy,0.006117063574492931 +karman_re400,sr,64,25.6,force,upper_fx,-0.0009930948726832867 +karman_re400,sr,64,25.6,force,upper_fy,0.004722089972347021 +karman_re400,sr,64,25.6,force,lower_fx,0.000646875356324017 +karman_re400,sr,64,25.6,force,lower_fy,-0.005915400572121143 +karman_re400,sr,65,26.0,force,front_fx,-0.0011372664012014866 +karman_re400,sr,65,26.0,force,front_fy,0.00545711163431406 +karman_re400,sr,65,26.0,force,upper_fx,-0.0031347405165433884 +karman_re400,sr,65,26.0,force,upper_fy,0.003179720602929592 +karman_re400,sr,65,26.0,force,lower_fx,0.00367006310261786 +karman_re400,sr,65,26.0,force,lower_fy,-0.006491280626505613 +karman_re400,sr,66,26.4,force,front_fx,0.0010647992603480816 +karman_re400,sr,66,26.4,force,front_fy,0.0033078351989388466 +karman_re400,sr,66,26.4,force,upper_fx,-0.0054962169378995895 +karman_re400,sr,66,26.4,force,upper_fy,0.0021736714988946915 +karman_re400,sr,66,26.4,force,lower_fx,0.005408818833529949 +karman_re400,sr,66,26.4,force,lower_fy,-0.0057563320733606815 +karman_re400,sr,67,26.8,force,front_fx,0.0013436522567644715 +karman_re400,sr,67,26.8,force,front_fy,-0.0005104683805257082 +karman_re400,sr,67,26.8,force,upper_fx,-0.005944511853158474 +karman_re400,sr,67,26.8,force,upper_fy,0.0024544699117541313 +karman_re400,sr,67,26.8,force,lower_fx,0.004740630276501179 +karman_re400,sr,67,26.8,force,lower_fy,-0.005165347829461098 +karman_re400,sr,68,27.2,force,front_fx,-3.17922567774076e-05 +karman_re400,sr,68,27.2,force,front_fy,-0.004050740506500006 +karman_re400,sr,68,27.2,force,upper_fx,-0.0041377972811460495 +karman_re400,sr,68,27.2,force,upper_fy,0.0028027985244989395 +karman_re400,sr,68,27.2,force,lower_fx,0.002836760599166155 +karman_re400,sr,68,27.2,force,lower_fy,-0.005191978998482227 +karman_re400,sr,69,27.6,force,front_fx,-0.0021342700347304344 +karman_re400,sr,69,27.6,force,front_fy,-0.0057593416422605515 +karman_re400,sr,69,27.6,force,upper_fx,-0.0025993851013481617 +karman_re400,sr,69,27.6,force,upper_fy,0.0029600446578115225 +karman_re400,sr,69,27.6,force,lower_fx,0.0011321313213557005 +karman_re400,sr,69,27.6,force,lower_fy,-0.005675178021192551 +karman_re400,sr,70,28.0,force,front_fx,-0.003693214152008295 +karman_re400,sr,70,28.0,force,front_fy,-0.0061661433428525925 +karman_re400,sr,70,28.0,force,upper_fx,-0.0015134760178625584 +karman_re400,sr,70,28.0,force,upper_fy,0.003855366725474596 +karman_re400,sr,70,28.0,force,lower_fx,0.00021329772425815463 +karman_re400,sr,70,28.0,force,lower_fy,-0.00600818358361721 +karman_re400,sr,71,28.4,force,front_fx,-0.003639412112534046 +karman_re400,sr,71,28.4,force,front_fy,-0.006164835765957832 +karman_re400,sr,71,28.4,force,upper_fx,0.0003793038194999099 +karman_re400,sr,71,28.4,force,upper_fy,0.005293575115501881 +karman_re400,sr,71,28.4,force,lower_fx,-0.0007236882811412215 +karman_re400,sr,71,28.4,force,lower_fy,-0.005083949770778418 +karman_re400,sr,72,28.8,force,front_fx,-0.001686643110588193 +karman_re400,sr,72,28.8,force,front_fy,-0.005729599390178919 +karman_re400,sr,72,28.8,force,upper_fx,0.003058305010199547 +karman_re400,sr,72,28.8,force,upper_fy,0.006033627316355705 +karman_re400,sr,72,28.8,force,lower_fx,-0.0026161731220781803 +karman_re400,sr,72,28.8,force,lower_fy,-0.003404132090508938 +karman_re400,sr,73,29.2,force,front_fx,0.0008317019673995674 +karman_re400,sr,73,29.2,force,front_fy,-0.003958125598728657 +karman_re400,sr,73,29.2,force,upper_fx,0.004959273152053356 +karman_re400,sr,73,29.2,force,upper_fy,0.005613680463284254 +karman_re400,sr,73,29.2,force,lower_fx,-0.0049796984530985355 +karman_re400,sr,73,29.2,force,lower_fy,-0.0018935539992526174 +karman_re400,sr,74,29.6,force,front_fx,0.0014779933262616396 +karman_re400,sr,74,29.6,force,front_fy,-0.000572653254494071 +karman_re400,sr,74,29.6,force,upper_fx,0.0049214535392820835 +karman_re400,sr,74,29.6,force,upper_fy,0.005043170414865017 +karman_re400,sr,74,29.6,force,lower_fx,-0.00617570523172617 +karman_re400,sr,74,29.6,force,lower_fy,-0.0016863372875377536 +karman_re400,sr,75,30.0,force,front_fx,0.00041577135561965406 +karman_re400,sr,75,30.0,force,front_fy,0.0032188626937568188 +karman_re400,sr,75,30.0,force,upper_fx,0.0032932052854448557 +karman_re400,sr,75,30.0,force,upper_fy,0.0049758837558329105 +karman_re400,sr,75,30.0,force,lower_fx,-0.004776200279593468 +karman_re400,sr,75,30.0,force,lower_fy,-0.0024690423160791397 +karman_re400,sr,76,30.4,force,front_fx,-0.0017049734015017748 +karman_re400,sr,76,30.4,force,front_fy,0.005491228308528662 +karman_re400,sr,76,30.4,force,upper_fx,0.0014194004470482469 +karman_re400,sr,76,30.4,force,upper_fy,0.005412306170910597 +karman_re400,sr,76,30.4,force,lower_fx,-0.00280255195684731 +karman_re400,sr,76,30.4,force,lower_fy,-0.002809116616845131 +karman_re400,sr,77,30.8,force,front_fx,-0.0034646294079720974 +karman_re400,sr,77,30.8,force,front_fy,0.006203287281095982 +karman_re400,sr,77,30.8,force,upper_fx,0.00029225743492133915 +karman_re400,sr,77,30.8,force,upper_fy,0.006001824047416449 +karman_re400,sr,77,30.8,force,lower_fx,-0.0016356557607650757 +karman_re400,sr,77,30.8,force,lower_fy,-0.0034583096858114004 +karman_re400,sr,78,31.2,force,front_fx,-0.003791272407397628 +karman_re400,sr,78,31.2,force,front_fy,0.006211134605109692 +karman_re400,sr,78,31.2,force,upper_fx,-0.0004771401872858405 +karman_re400,sr,78,31.2,force,upper_fy,0.00539054349064827 +karman_re400,sr,78,31.2,force,lower_fx,-0.00011857150821015239 +karman_re400,sr,78,31.2,force,lower_fy,-0.004755208268761635 +karman_re400,sr,79,31.6,force,front_fx,-0.00221936940215528 +karman_re400,sr,79,31.6,force,front_fy,0.005945221055299044 +karman_re400,sr,79,31.6,force,upper_fx,-0.002056337194517255 +karman_re400,sr,79,31.6,force,upper_fy,0.003785736858844757 +karman_re400,sr,79,31.6,force,lower_fx,0.002504898002371192 +karman_re400,sr,79,31.6,force,lower_fy,-0.0057805730029940605 +karman_re400,sr,80,32.0,force,front_fx,0.000414040288887918 +karman_re400,sr,80,32.0,force,front_fy,0.004614321514964104 +karman_re400,sr,80,32.0,force,upper_fx,-0.004466054495424032 +karman_re400,sr,80,32.0,force,upper_fy,0.0020594533998519182 +karman_re400,sr,80,32.0,force,lower_fx,0.00476168654859066 +karman_re400,sr,80,32.0,force,lower_fy,-0.005608236417174339 +karman_re400,sr,81,32.4,force,front_fx,0.0015265739057213068 +karman_re400,sr,81,32.4,force,front_fy,0.0016375075792893767 +karman_re400,sr,81,32.4,force,upper_fx,-0.006226174999028444 +karman_re400,sr,81,32.4,force,upper_fy,0.0013902082573622465 +karman_re400,sr,81,32.4,force,lower_fx,0.005307307466864586 +karman_re400,sr,81,32.4,force,lower_fy,-0.005014751106500626 +karman_re400,sr,82,32.8,force,front_fx,0.0008618004503659904 +karman_re400,sr,82,32.8,force,front_fy,-0.002324172295629978 +karman_re400,sr,82,32.8,force,upper_fx,-0.005499498452991247 +karman_re400,sr,82,32.8,force,upper_fy,0.002158048562705517 +karman_re400,sr,82,32.8,force,lower_fx,0.003907712176442146 +karman_re400,sr,82,32.8,force,lower_fy,-0.004858120810240507 +karman_re400,sr,83,33.2,force,front_fx,-0.0011386934202164412 +karman_re400,sr,83,33.2,force,front_fy,-0.005092683248221874 +karman_re400,sr,83,33.2,force,upper_fx,-0.0034157102927565575 +karman_re400,sr,83,33.2,force,upper_fy,0.002614334225654602 +karman_re400,sr,83,33.2,force,lower_fx,0.0019437092123553157 +karman_re400,sr,83,33.2,force,lower_fy,-0.005231228657066822 +karman_re400,sr,84,33.6,force,front_fx,-0.003124798182398081 +karman_re400,sr,84,33.6,force,front_fy,-0.006159184034913778 +karman_re400,sr,84,33.6,force,upper_fx,-0.002130880020558834 +karman_re400,sr,84,33.6,force,upper_fy,0.003030547173693776 +karman_re400,sr,84,33.6,force,lower_fx,0.000598404323682189 +karman_re400,sr,84,33.6,force,lower_fy,-0.0059213899075984955 +karman_re400,sr,85,34.0,force,front_fx,-0.0039500887505710125 +karman_re400,sr,85,34.0,force,front_fy,-0.006272450089454651 +karman_re400,sr,85,34.0,force,upper_fx,-0.000962735852226615 +karman_re400,sr,85,34.0,force,upper_fy,0.0042841145768761635 +karman_re400,sr,85,34.0,force,lower_fx,-7.770327647449449e-05 +karman_re400,sr,85,34.0,force,lower_fy,-0.005698877386748791 +karman_re400,sr,86,34.4,force,front_fx,-0.003014795482158661 +karman_re400,sr,86,34.4,force,front_fy,-0.006075405515730381 +karman_re400,sr,86,34.4,force,upper_fx,0.0014671568060293794 +karman_re400,sr,86,34.4,force,upper_fy,0.005678268149495125 +karman_re400,sr,86,34.4,force,lower_fx,-0.0012998032616451383 +karman_re400,sr,86,34.4,force,lower_fy,-0.0043443236500024796 +karman_re400,sr,87,34.8,force,front_fx,-0.00047755136620253325 +karman_re400,sr,87,34.8,force,front_fy,-0.005085660610347986 +karman_re400,sr,87,34.8,force,upper_fx,0.004030740819871426 +karman_re400,sr,87,34.8,force,upper_fy,0.005873401649296284 +karman_re400,sr,87,34.8,force,lower_fx,-0.003554096445441246 +karman_re400,sr,87,34.8,force,lower_fy,-0.002650204813107848 +karman_re400,sr,88,35.2,force,front_fx,0.0013235576916486025 +karman_re400,sr,88,35.2,force,front_fy,-0.0025759923737496138 +karman_re400,sr,88,35.2,force,upper_fx,0.005212462041527033 +karman_re400,sr,88,35.2,force,upper_fy,0.0051722340285778046 +karman_re400,sr,88,35.2,force,lower_fx,-0.005621905438601971 +karman_re400,sr,88,35.2,force,lower_fy,-0.001714815036393702 +karman_re400,sr,89,35.6,force,front_fx,0.001111912657506764 +karman_re400,sr,89,35.6,force,front_fy,0.0012532285181805491 +karman_re400,sr,89,35.6,force,upper_fx,0.004280855879187584 +karman_re400,sr,89,35.6,force,upper_fy,0.0047567132860422134 +karman_re400,sr,89,35.6,force,lower_fx,-0.005573502741754055 +karman_re400,sr,89,35.6,force,lower_fy,-0.0022484257351607084 +karman_re400,sr,90,36.0,force,front_fx,-0.0006768127786926925 +karman_re400,sr,90,36.0,force,front_fy,0.004340646788477898 +karman_re400,sr,90,36.0,force,upper_fx,0.0023737053852528334 +karman_re400,sr,90,36.0,force,upper_fy,0.004903652239590883 +karman_re400,sr,90,36.0,force,lower_fx,-0.003420827444642782 +karman_re400,sr,90,36.0,force,lower_fy,-0.002818269422277808 +karman_re400,sr,91,36.4,force,front_fx,-0.002861008048057556 +karman_re400,sr,91,36.4,force,front_fy,0.005778434220701456 +karman_re400,sr,91,36.4,force,upper_fx,0.0006795568624511361 +karman_re400,sr,91,36.4,force,upper_fy,0.005685280077159405 +karman_re400,sr,91,36.4,force,lower_fx,-0.0018016822868958116 +karman_re400,sr,91,36.4,force,lower_fy,-0.002955111674964428 +karman_re400,sr,92,36.8,force,front_fx,-0.0038115065544843674 +karman_re400,sr,92,36.8,force,front_fy,0.006105499807745218 +karman_re400,sr,92,36.8,force,upper_fx,-0.00013558492355514318 +karman_re400,sr,92,36.8,force,upper_fy,0.005880590528249741 +karman_re400,sr,92,36.8,force,lower_fx,-0.0007948379497975111 +karman_re400,sr,92,36.8,force,lower_fy,-0.003693442093208432 +karman_re400,sr,93,37.2,force,front_fx,-0.003039749339222908 +karman_re400,sr,93,37.2,force,front_fy,0.006117148324847221 +karman_re400,sr,93,37.2,force,upper_fx,-0.0012088875519111753 +karman_re400,sr,93,37.2,force,upper_fy,0.0045111775398254395 +karman_re400,sr,93,37.2,force,lower_fx,0.0010526209371164441 +karman_re400,sr,93,37.2,force,lower_fy,-0.0049332017078995705 +karman_re400,sr,94,37.6,force,front_fx,-0.0007229245966300368 +karman_re400,sr,94,37.6,force,front_fy,0.005463606212288141 +karman_re400,sr,94,37.6,force,upper_fx,-0.0032597326207906008 +karman_re400,sr,94,37.6,force,upper_fy,0.00254881102591753 +karman_re400,sr,94,37.6,force,lower_fx,0.0035728150978684425 +karman_re400,sr,94,37.6,force,lower_fy,-0.005458352621644735 +karman_re400,sr,95,38.0,force,front_fx,0.0013281223364174366 +karman_re400,sr,95,38.0,force,front_fy,0.0033347466960549355 +karman_re400,sr,95,38.0,force,upper_fx,-0.00559899490326643 +karman_re400,sr,95,38.0,force,upper_fy,0.0010366049828007817 +karman_re400,sr,95,38.0,force,lower_fx,0.005043161101639271 +karman_re400,sr,95,38.0,force,lower_fy,-0.005007421597838402 +karman_re400,sr,96,38.4,force,front_fx,0.0013704965822398663 +karman_re400,sr,96,38.4,force,front_fy,-0.0002591984230093658 +karman_re400,sr,96,38.4,force,upper_fx,-0.006447506137192249 +karman_re400,sr,96,38.4,force,upper_fy,0.0014054443454369903 +karman_re400,sr,96,38.4,force,lower_fx,0.004571729339659214 +karman_re400,sr,96,38.4,force,lower_fy,-0.004640746396034956 +karman_re400,sr,97,38.8,force,front_fx,-4.402000558911823e-05 +karman_re400,sr,97,38.8,force,front_fy,-0.003875672584399581 +karman_re400,sr,97,38.8,force,upper_fx,-0.004573057405650616 +karman_re400,sr,97,38.8,force,upper_fy,0.0026303925551474094 +karman_re400,sr,97,38.8,force,lower_fx,0.0027462958823889494 +karman_re400,sr,97,38.8,force,lower_fy,-0.004789771977812052 +karman_re400,sr,98,39.2,force,front_fx,-0.002188522834330797 +karman_re400,sr,98,39.2,force,front_fy,-0.005762903485447168 +karman_re400,sr,98,39.2,force,upper_fx,-0.002659217454493046 +karman_re400,sr,98,39.2,force,upper_fy,0.003075071843340993 +karman_re400,sr,98,39.2,force,lower_fx,0.0009683931129984558 +karman_re400,sr,98,39.2,force,lower_fy,-0.0054125296883285046 +karman_re400,sr,99,39.6,force,front_fx,-0.003647859673947096 +karman_re400,sr,99,39.6,force,front_fy,-0.006174902897328138 +karman_re400,sr,99,39.6,force,upper_fx,-0.0015926563646644354 +karman_re400,sr,99,39.6,force,upper_fy,0.0038222072180360556 +karman_re400,sr,99,39.6,force,lower_fx,7.21932592568919e-05 +karman_re400,sr,99,39.6,force,lower_fy,-0.005880746059119701 +karman_re400,sr,100,40.0,force,front_fx,-0.003652723738923669 +karman_re400,sr,100,40.0,force,front_fy,-0.006043978501111269 +karman_re400,sr,100,40.0,force,upper_fx,0.0001160181054729037 +karman_re400,sr,100,40.0,force,upper_fy,0.005223758984357119 +karman_re400,sr,100,40.0,force,lower_fx,-0.0007644270081073046 +karman_re400,sr,100,40.0,force,lower_fy,-0.0050250147469341755 +karman_re400,sr,101,40.4,force,front_fx,-0.0017467791913077235 +karman_re400,sr,101,40.4,force,front_fy,-0.005618229042738676 +karman_re400,sr,101,40.4,force,upper_fx,0.002875532489269972 +karman_re400,sr,101,40.4,force,upper_fy,0.006081818137317896 +karman_re400,sr,101,40.4,force,lower_fx,-0.002554425038397312 +karman_re400,sr,101,40.4,force,lower_fy,-0.003388741286471486 +karman_re400,sr,102,40.8,force,front_fx,0.000724721176084131 +karman_re400,sr,102,40.8,force,front_fy,-0.003935679327696562 +karman_re400,sr,102,40.8,force,upper_fx,0.004902894143015146 +karman_re400,sr,102,40.8,force,upper_fy,0.00568640511482954 +karman_re400,sr,102,40.8,force,lower_fx,-0.004974116571247578 +karman_re400,sr,102,40.8,force,lower_fy,-0.0018860186683014035 +karman_re400,sr,103,41.2,force,front_fx,0.0014183524763211608 +karman_re400,sr,103,41.2,force,front_fy,-0.0006002744776196778 +karman_re400,sr,103,41.2,force,upper_fx,0.004900631494820118 +karman_re400,sr,103,41.2,force,upper_fy,0.005022644996643066 +karman_re400,sr,103,41.2,force,lower_fx,-0.00620677787810564 +karman_re400,sr,103,41.2,force,lower_fy,-0.0017266880022361875 +karman_re400,sr,104,41.6,force,front_fx,0.0004731167573481798 +karman_re400,sr,104,41.6,force,front_fy,0.003212293377146125 +karman_re400,sr,104,41.6,force,upper_fx,0.003225720487535 +karman_re400,sr,104,41.6,force,upper_fy,0.004870879929512739 +karman_re400,sr,104,41.6,force,lower_fx,-0.004878184292465448 +karman_re400,sr,104,41.6,force,lower_fy,-0.0024817567318677902 +karman_re400,sr,105,42.0,force,front_fx,-0.0015891401562839746 +karman_re400,sr,105,42.0,force,front_fy,0.0054890769533813 +karman_re400,sr,105,42.0,force,upper_fx,0.0013621051330119371 +karman_re400,sr,105,42.0,force,upper_fy,0.005255128722637892 +karman_re400,sr,105,42.0,force,lower_fx,-0.0030242695938795805 +karman_re400,sr,105,42.0,force,lower_fy,-0.0028810349758714437 +karman_re400,sr,106,42.4,force,front_fx,-0.003407800104469061 +karman_re400,sr,106,42.4,force,front_fy,0.0061438921838998795 +karman_re400,sr,106,42.4,force,upper_fx,0.00022548803826794028 +karman_re400,sr,106,42.4,force,upper_fy,0.005814379081130028 +karman_re400,sr,106,42.4,force,lower_fx,-0.0018354370258748531 +karman_re400,sr,106,42.4,force,lower_fy,-0.0036219425965100527 +karman_re400,sr,107,42.8,force,front_fx,-0.0038075789343565702 +karman_re400,sr,107,42.8,force,front_fy,0.006161099765449762 +karman_re400,sr,107,42.8,force,upper_fx,-0.0005341229843907058 +karman_re400,sr,107,42.8,force,upper_fy,0.005304114893078804 +karman_re400,sr,107,42.8,force,lower_fx,-0.00021740222291555256 +karman_re400,sr,107,42.8,force,lower_fy,-0.00495218625292182 +karman_re400,sr,108,43.2,force,front_fx,-0.0022433167323470116 +karman_re400,sr,108,43.2,force,front_fy,0.0058745406568050385 +karman_re400,sr,108,43.2,force,upper_fx,-0.002126426436007023 +karman_re400,sr,108,43.2,force,upper_fy,0.003758329199627042 +karman_re400,sr,108,43.2,force,lower_fx,0.0024068739730864763 +karman_re400,sr,108,43.2,force,lower_fy,-0.005954215303063393 +karman_re400,sr,109,43.6,force,front_fx,0.00038452353328466415 +karman_re400,sr,109,43.6,force,front_fy,0.0045343744568526745 +karman_re400,sr,109,43.6,force,upper_fx,-0.004524771589785814 +karman_re400,sr,109,43.6,force,upper_fy,0.0021106095518916845 +karman_re400,sr,109,43.6,force,lower_fx,0.004660478327423334 +karman_re400,sr,109,43.6,force,lower_fy,-0.005779643543064594 +karman_re400,sr,110,44.0,force,front_fx,0.001515749841928482 +karman_re400,sr,110,44.0,force,front_fy,0.0015004384331405163 +karman_re400,sr,110,44.0,force,upper_fx,-0.006209679413586855 +karman_re400,sr,110,44.0,force,upper_fy,0.001501966849900782 +karman_re400,sr,110,44.0,force,lower_fx,0.005153317004442215 +karman_re400,sr,110,44.0,force,lower_fy,-0.005152557976543903 +karman_re400,sr,111,44.4,force,front_fx,0.0008608332136645913 +karman_re400,sr,111,44.4,force,front_fy,-0.002478301292285323 +karman_re400,sr,111,44.4,force,upper_fx,-0.005484005901962519 +karman_re400,sr,111,44.4,force,upper_fy,0.002199714072048664 +karman_re400,sr,111,44.4,force,lower_fx,0.003712076460942626 +karman_re400,sr,111,44.4,force,lower_fy,-0.004964988678693771 +karman_re400,sr,112,44.8,force,front_fx,-0.0010552896419540048 +karman_re400,sr,112,44.8,force,front_fy,-0.0052106366492807865 +karman_re400,sr,112,44.8,force,upper_fx,-0.0035525828134268522 +karman_re400,sr,112,44.8,force,upper_fy,0.00268901651725173 +karman_re400,sr,112,44.8,force,lower_fx,0.0018256180919706821 +karman_re400,sr,112,44.8,force,lower_fy,-0.005233017727732658 +karman_re400,sr,113,45.2,force,front_fx,-0.003055864479392767 +karman_re400,sr,113,45.2,force,front_fy,-0.00620836578309536 +karman_re400,sr,113,45.2,force,upper_fx,-0.0022572046145796776 +karman_re400,sr,113,45.2,force,upper_fy,0.0033752992749214172 +karman_re400,sr,113,45.2,force,lower_fx,0.000504357973113656 +karman_re400,sr,113,45.2,force,lower_fy,-0.005805123597383499 +karman_re400,sr,114,45.6,force,front_fx,-0.003919284325093031 +karman_re400,sr,114,45.6,force,front_fy,-0.006263792980462313 +karman_re400,sr,114,45.6,force,upper_fx,-0.0008105267770588398 +karman_re400,sr,114,45.6,force,upper_fy,0.004741877783089876 +karman_re400,sr,114,45.6,force,lower_fx,-0.00020076875807717443 +karman_re400,sr,114,45.6,force,lower_fy,-0.005607376806437969 +karman_re400,sr,115,46.0,force,front_fx,-0.0029075676575303078 +karman_re400,sr,115,46.0,force,front_fy,-0.006037652958184481 +karman_re400,sr,115,46.0,force,upper_fx,0.0017422856763005257 +karman_re400,sr,115,46.0,force,upper_fy,0.005979219451546669 +karman_re400,sr,115,46.0,force,lower_fx,-0.0015468153869733214 +karman_re400,sr,115,46.0,force,lower_fy,-0.004329071380198002 +karman_re400,sr,116,46.4,force,front_fx,-0.000288388371700421 +karman_re400,sr,116,46.4,force,front_fy,-0.005024822894483805 +karman_re400,sr,116,46.4,force,upper_fx,0.004293707199394703 +karman_re400,sr,116,46.4,force,upper_fy,0.006033578887581825 +karman_re400,sr,116,46.4,force,lower_fx,-0.003858306910842657 +karman_re400,sr,116,46.4,force,lower_fy,-0.00270818080753088 +karman_re400,sr,117,46.8,force,front_fx,0.001392135745845735 +karman_re400,sr,117,46.8,force,front_fy,-0.002393049420788884 +karman_re400,sr,117,46.8,force,upper_fx,0.0053071677684783936 +karman_re400,sr,117,46.8,force,upper_fy,0.005320436786860228 +karman_re400,sr,117,46.8,force,lower_fx,-0.005858327727764845 +karman_re400,sr,117,46.8,force,lower_fy,-0.0018085044575855136 +karman_re400,sr,118,47.2,force,front_fx,0.0011373618617653847 +karman_re400,sr,118,47.2,force,front_fy,0.0015458239940926433 +karman_re400,sr,118,47.2,force,upper_fx,0.004249112214893103 +karman_re400,sr,118,47.2,force,upper_fy,0.004984387196600437 +karman_re400,sr,118,47.2,force,lower_fx,-0.005654776468873024 +karman_re400,sr,118,47.2,force,lower_fy,-0.0022144580725580454 +karman_re400,sr,119,47.6,force,front_fx,-0.0006290529854595661 +karman_re400,sr,119,47.6,force,front_fy,0.004608318209648132 +karman_re400,sr,119,47.6,force,upper_fx,0.0023449717555195093 +karman_re400,sr,119,47.6,force,upper_fy,0.0051437742076814175 +karman_re400,sr,119,47.6,force,lower_fx,-0.0037351923529058695 +karman_re400,sr,119,47.6,force,lower_fy,-0.002629833295941353 +karman_re400,sr,120,48.0,force,front_fx,-0.002757454290986061 +karman_re400,sr,120,48.0,force,front_fy,0.005964479874819517 +karman_re400,sr,120,48.0,force,upper_fx,0.0007963552488945425 +karman_re400,sr,120,48.0,force,upper_fy,0.00577301811426878 +karman_re400,sr,120,48.0,force,lower_fx,-0.002287019044160843 +karman_re400,sr,120,48.0,force,lower_fy,-0.003032261971384287 +karman_re400,sr,121,48.4,force,front_fx,-0.003880513599142432 +karman_re400,sr,121,48.4,force,front_fy,0.006220114417374134 +karman_re400,sr,121,48.4,force,upper_fx,1.3569427210313734e-05 +karman_re400,sr,121,48.4,force,upper_fy,0.005841491278260946 +karman_re400,sr,121,48.4,force,lower_fx,-0.0011035603238269687 +karman_re400,sr,121,48.4,force,lower_fy,-0.004092525225132704 +karman_re400,sr,122,48.8,force,front_fx,-0.0033236793242394924 +karman_re400,sr,122,48.8,force,front_fy,0.006122072227299213 +karman_re400,sr,122,48.8,force,upper_fx,-0.001098884386010468 +karman_re400,sr,122,48.8,force,upper_fy,0.004659021273255348 +karman_re400,sr,122,48.8,force,lower_fx,0.0010234443470835686 +karman_re400,sr,122,48.8,force,lower_fy,-0.005439590197056532 +karman_re400,sr,123,49.2,force,front_fx,-0.000997432740405202 +karman_re400,sr,123,49.2,force,front_fy,0.00542956730350852 +karman_re400,sr,123,49.2,force,upper_fx,-0.003160528838634491 +karman_re400,sr,123,49.2,force,upper_fy,0.0029228567145764828 +karman_re400,sr,123,49.2,force,lower_fx,0.003649869468063116 +karman_re400,sr,123,49.2,force,lower_fy,-0.005862772464752197 +karman_re400,sr,124,49.6,force,front_fx,0.0011880462989211082 +karman_re400,sr,124,49.6,force,front_fy,0.0032762913033366203 +karman_re400,sr,124,49.6,force,upper_fx,-0.005424526520073414 +karman_re400,sr,124,49.6,force,upper_fy,0.0016048791585490108 +karman_re400,sr,124,49.6,force,lower_fx,0.0051439497619867325 +karman_re400,sr,124,49.6,force,lower_fy,-0.005309815984219313 +karman_re400,sr,125,50.0,force,front_fx,0.0013595852069556713 +karman_re400,sr,125,50.0,force,front_fy,-0.00037892197724431753 +karman_re400,sr,125,50.0,force,upper_fx,-0.006037426646798849 +karman_re400,sr,125,50.0,force,upper_fy,0.0017853272147476673 +karman_re400,sr,125,50.0,force,lower_fx,0.004651140887290239 +karman_re400,sr,125,50.0,force,lower_fy,-0.004848858341574669 +karman_re400,sr,126,50.4,force,front_fx,-9.406463505001739e-05 +karman_re400,sr,126,50.4,force,front_fy,-0.003879898227751255 +karman_re400,sr,126,50.4,force,upper_fx,-0.004235570318996906 +karman_re400,sr,126,50.4,force,upper_fy,0.002522657858207822 +karman_re400,sr,126,50.4,force,lower_fx,0.002833461854606867 +karman_re400,sr,126,50.4,force,lower_fy,-0.004891233053058386 +karman_re400,sr,127,50.8,force,front_fx,-0.0022773686796426773 +karman_re400,sr,127,50.8,force,front_fy,-0.005718545522540808 +karman_re400,sr,127,50.8,force,upper_fx,-0.002428686711937189 +karman_re400,sr,127,50.8,force,upper_fy,0.0028368874918669462 +karman_re400,sr,127,50.8,force,lower_fx,0.0010614433558657765 +karman_re400,sr,127,50.8,force,lower_fy,-0.005482892971485853 +karman_re400,sr,128,51.2,force,front_fx,-0.0037372661754488945 +karman_re400,sr,128,51.2,force,front_fy,-0.006204542703926563 +karman_re400,sr,128,51.2,force,upper_fx,-0.001366293290629983 +karman_re400,sr,128,51.2,force,upper_fy,0.0035892967134714127 +karman_re400,sr,128,51.2,force,lower_fx,0.00011392775195417926 +karman_re400,sr,128,51.2,force,lower_fy,-0.005936481524258852 +karman_re400,sr,129,51.6,force,front_fx,-0.003575451672077179 +karman_re400,sr,129,51.6,force,front_fy,-0.006169809028506279 +karman_re400,sr,129,51.6,force,upper_fx,0.00034035209682770073 +karman_re400,sr,129,51.6,force,upper_fy,0.004929730203002691 +karman_re400,sr,129,51.6,force,lower_fx,-0.0007444620132446289 +karman_re400,sr,129,51.6,force,lower_fy,-0.004998525604605675 +karman_re400,sr,130,52.0,force,front_fx,-0.0015820841072127223 +karman_re400,sr,130,52.0,force,front_fy,-0.005728980991989374 +karman_re400,sr,130,52.0,force,upper_fx,0.0029744890052825212 +karman_re400,sr,130,52.0,force,upper_fy,0.005719655193388462 +karman_re400,sr,130,52.0,force,lower_fx,-0.002550096483901143 +karman_re400,sr,130,52.0,force,lower_fy,-0.0032531009055674076 +karman_re400,sr,131,52.4,force,front_fx,0.000876526755746454 +karman_re400,sr,131,52.4,force,front_fy,-0.003967696335166693 +karman_re400,sr,131,52.4,force,upper_fx,0.0048852707259356976 +karman_re400,sr,131,52.4,force,upper_fy,0.005381792783737183 +karman_re400,sr,131,52.4,force,lower_fx,-0.0049434686079621315 +karman_re400,sr,131,52.4,force,lower_fy,-0.0016713644145056605 +karman_re400,sr,132,52.8,force,front_fx,0.0014616574626415968 +karman_re400,sr,132,52.8,force,front_fy,-0.0006465243641287088 +karman_re400,sr,132,52.8,force,upper_fx,0.004937369376420975 +karman_re400,sr,132,52.8,force,upper_fy,0.004820855800062418 +karman_re400,sr,132,52.8,force,lower_fx,-0.00620667077600956 +karman_re400,sr,132,52.8,force,lower_fy,-0.0014901830581948161 +karman_re400,sr,133,53.2,force,front_fx,0.00038170619518496096 +karman_re400,sr,133,53.2,force,front_fy,0.0031411400996148586 +karman_re400,sr,133,53.2,force,upper_fx,0.0032892460003495216 +karman_re400,sr,133,53.2,force,upper_fy,0.004754628986120224 +karman_re400,sr,133,53.2,force,lower_fx,-0.00483147706836462 +karman_re400,sr,133,53.2,force,lower_fy,-0.002476444933563471 +karman_re400,sr,134,53.6,force,front_fx,-0.0017914531053975224 +karman_re400,sr,134,53.6,force,front_fy,0.005418283864855766 +karman_re400,sr,134,53.6,force,upper_fx,0.001396871404722333 +karman_re400,sr,134,53.6,force,upper_fy,0.005268467590212822 +karman_re400,sr,134,53.6,force,lower_fx,-0.002760846633464098 +karman_re400,sr,134,53.6,force,lower_fy,-0.0028735764790326357 +karman_re400,sr,135,54.0,force,front_fx,-0.0035187900066375732 +karman_re400,sr,135,54.0,force,front_fy,0.00612266780808568 +karman_re400,sr,135,54.0,force,upper_fx,0.0002319888590136543 +karman_re400,sr,135,54.0,force,upper_fy,0.00595948938280344 +karman_re400,sr,135,54.0,force,lower_fx,-0.0016287286998704076 +karman_re400,sr,135,54.0,force,lower_fy,-0.0033841768745332956 +karman_re400,sr,136,54.4,force,front_fx,-0.003753270721063018 +karman_re400,sr,136,54.4,force,front_fy,0.006147058680653572 +karman_re400,sr,136,54.4,force,upper_fx,-0.00048328802222386 +karman_re400,sr,136,54.4,force,upper_fy,0.005336171016097069 +karman_re400,sr,136,54.4,force,lower_fx,-0.00024641217896714807 +karman_re400,sr,136,54.4,force,lower_fy,-0.004606344737112522 +karman_re400,sr,137,54.8,force,front_fx,-0.0021933438256382942 +karman_re400,sr,137,54.8,force,front_fy,0.005880018696188927 +karman_re400,sr,137,54.8,force,upper_fx,-0.0020425228867679834 +karman_re400,sr,137,54.8,force,upper_fy,0.0036888790782541037 +karman_re400,sr,137,54.8,force,lower_fx,0.002292802557349205 +karman_re400,sr,137,54.8,force,lower_fy,-0.005684052128344774 +karman_re400,sr,138,55.2,force,front_fx,0.00039203549386002123 +karman_re400,sr,138,55.2,force,front_fy,0.004513757769018412 +karman_re400,sr,138,55.2,force,upper_fx,-0.004412415903061628 +karman_re400,sr,138,55.2,force,upper_fy,0.001947354874573648 +karman_re400,sr,138,55.2,force,lower_fx,0.004520931746810675 +karman_re400,sr,138,55.2,force,lower_fy,-0.005557980388402939 +karman_re400,sr,139,55.6,force,front_fx,0.0014686076901853085 +karman_re400,sr,139,55.6,force,front_fy,0.0015761919785290956 +karman_re400,sr,139,55.6,force,upper_fx,-0.0061678197234869 +karman_re400,sr,139,55.6,force,upper_fy,0.0013444435317069292 +karman_re400,sr,139,55.6,force,lower_fx,0.005071316845715046 +karman_re400,sr,139,55.6,force,lower_fy,-0.0049217697232961655 +karman_re400,sr,140,56.0,force,front_fx,0.0008085918379947543 +karman_re400,sr,140,56.0,force,front_fy,-0.002345375018194318 +karman_re400,sr,140,56.0,force,upper_fx,-0.005400775000452995 +karman_re400,sr,140,56.0,force,upper_fy,0.002275758422911167 +karman_re400,sr,140,56.0,force,lower_fx,0.003684981958940625 +karman_re400,sr,140,56.0,force,lower_fy,-0.004722209647297859 +karman_re400,sr,141,56.4,force,front_fx,-0.001208894420415163 +karman_re400,sr,141,56.4,force,front_fy,-0.005041010212153196 +karman_re400,sr,141,56.4,force,upper_fx,-0.003262260928750038 +karman_re400,sr,141,56.4,force,upper_fy,0.00284808361902833 +karman_re400,sr,141,56.4,force,lower_fx,0.0017639416037127376 +karman_re400,sr,141,56.4,force,lower_fy,-0.005068172235041857 +karman_re400,sr,142,56.8,force,front_fx,-0.0031752195209264755 +karman_re400,sr,142,56.8,force,front_fy,-0.006047587841749191 +karman_re400,sr,142,56.8,force,upper_fx,-0.0019474280998110771 +karman_re400,sr,142,56.8,force,upper_fy,0.003298058407381177 +karman_re400,sr,142,56.8,force,lower_fx,0.00038712858804501593 +karman_re400,sr,142,56.8,force,lower_fy,-0.005808061920106411 +karman_re400,sr,143,57.2,force,front_fx,-0.0038440937642008066 +karman_re400,sr,143,57.2,force,front_fy,-0.0061296625062823296 +karman_re400,sr,143,57.2,force,upper_fx,-0.0006997493910603225 +karman_re400,sr,143,57.2,force,upper_fy,0.004413815215229988 +karman_re400,sr,143,57.2,force,lower_fx,-0.0002979920827783644 +karman_re400,sr,143,57.2,force,lower_fy,-0.005564105696976185 +karman_re400,sr,144,57.6,force,front_fx,-0.0027640198823064566 +karman_re400,sr,144,57.6,force,front_fy,-0.005967860110104084 +karman_re400,sr,144,57.6,force,upper_fx,0.0016698372783139348 +karman_re400,sr,144,57.6,force,upper_fy,0.00564790703356266 +karman_re400,sr,144,57.6,force,lower_fx,-0.0016203803243115544 +karman_re400,sr,144,57.6,force,lower_fy,-0.004136905539780855 +karman_re400,sr,145,58.0,force,front_fx,-0.00021383620332926512 +karman_re400,sr,145,58.0,force,front_fy,-0.00497135054320097 +karman_re400,sr,145,58.0,force,upper_fx,0.004140691831707954 +karman_re400,sr,145,58.0,force,upper_fy,0.005765163339674473 +karman_re400,sr,145,58.0,force,lower_fx,-0.0038896892219781876 +karman_re400,sr,145,58.0,force,lower_fy,-0.0023363924119621515 +karman_re400,sr,146,58.4,force,front_fx,0.0014077764935791492 +karman_re400,sr,146,58.4,force,front_fy,-0.002415230730548501 +karman_re400,sr,146,58.4,force,upper_fx,0.0051665171049535275 +karman_re400,sr,146,58.4,force,upper_fy,0.005133946426212788 +karman_re400,sr,146,58.4,force,lower_fx,-0.005961909890174866 +karman_re400,sr,146,58.4,force,lower_fy,-0.0013404692290350795 +karman_re400,sr,147,58.8,force,front_fx,0.0011488674208521843 +karman_re400,sr,147,58.8,force,front_fy,0.0014873428735882044 +karman_re400,sr,147,58.8,force,upper_fx,0.0041159153915941715 +karman_re400,sr,147,58.8,force,upper_fy,0.004808387253433466 +karman_re400,sr,147,58.8,force,lower_fx,-0.005888183601200581 +karman_re400,sr,147,58.8,force,lower_fy,-0.0019483511568978429 +karman_re400,sr,148,59.2,force,front_fx,-0.0005822903476655483 +karman_re400,sr,148,59.2,force,front_fy,0.004622245207428932 +karman_re400,sr,148,59.2,force,upper_fx,0.002215639455243945 +karman_re400,sr,148,59.2,force,upper_fy,0.004991030786186457 +karman_re400,sr,148,59.2,force,lower_fx,-0.0039016795344650745 +karman_re400,sr,148,59.2,force,lower_fy,-0.0026322745252400637 +karman_re400,sr,149,59.6,force,front_fx,-0.002667807275429368 +karman_re400,sr,149,59.6,force,front_fy,0.006009587552398443 +karman_re400,sr,149,59.6,force,upper_fx,0.0006735881906934083 +karman_re400,sr,149,59.6,force,upper_fy,0.005607878789305687 +karman_re400,sr,149,59.6,force,lower_fx,-0.002427341416478157 +karman_re400,sr,149,59.6,force,lower_fy,-0.003156907157972455 +karman_re400,sr,150,60.0,force,front_fx,-0.0038375472649931908 +karman_re400,sr,150,60.0,force,front_fy,0.006206291727721691 +karman_re400,sr,150,60.0,force,upper_fx,-8.80721490830183e-05 +karman_re400,sr,150,60.0,force,upper_fy,0.0057185934856534 +karman_re400,sr,150,60.0,force,lower_fx,-0.0011949579929932952 +karman_re400,sr,150,60.0,force,lower_fy,-0.0042866189032793045 +karman_re400,sr,151,60.4,force,front_fx,-0.0032879177015274763 +karman_re400,sr,151,60.4,force,front_fy,0.006063900422304869 +karman_re400,sr,151,60.4,force,upper_fx,-0.0011725777294486761 +karman_re400,sr,151,60.4,force,upper_fy,0.004608205985277891 +karman_re400,sr,151,60.4,force,lower_fx,0.0010190181201323867 +karman_re400,sr,151,60.4,force,lower_fy,-0.0056202709674835205 +karman_re400,sr,152,60.8,force,front_fx,-0.000920008635148406 +karman_re400,sr,152,60.8,force,front_fy,0.005369256716221571 +karman_re400,sr,152,60.8,force,upper_fx,-0.003296696348115802 +karman_re400,sr,152,60.8,force,upper_fy,0.0029297771397978067 +karman_re400,sr,152,60.8,force,lower_fx,0.0036738389171659946 +karman_re400,sr,152,60.8,force,lower_fy,-0.006008961703628302 +karman_re400,sr,153,61.2,force,front_fx,0.001199201913550496 +karman_re400,sr,153,61.2,force,front_fy,0.003177157836034894 +karman_re400,sr,153,61.2,force,upper_fx,-0.005548202898353338 +karman_re400,sr,153,61.2,force,upper_fy,0.0017004061955958605 +karman_re400,sr,153,61.2,force,lower_fx,0.0051809074357151985 +karman_re400,sr,153,61.2,force,lower_fy,-0.005436754319816828 +karman_re400,sr,154,61.6,force,front_fx,0.001347044832073152 +karman_re400,sr,154,61.6,force,front_fy,-0.0005672173574566841 +karman_re400,sr,154,61.6,force,upper_fx,-0.0060551967471838 +karman_re400,sr,154,61.6,force,upper_fy,0.0018926053307950497 +karman_re400,sr,154,61.6,force,lower_fx,0.004568976350128651 +karman_re400,sr,154,61.6,force,lower_fy,-0.004965679720044136 +karman_re400,sr,155,62.0,force,front_fx,-8.555808017263189e-05 +karman_re400,sr,155,62.0,force,front_fy,-0.004056589212268591 +karman_re400,sr,155,62.0,force,upper_fx,-0.004312716890126467 +karman_re400,sr,155,62.0,force,upper_fy,0.002532730810344219 +karman_re400,sr,155,62.0,force,lower_fx,0.0027474781963974237 +karman_re400,sr,155,62.0,force,lower_fy,-0.005008451174944639 +karman_re400,sr,156,62.4,force,front_fx,-0.002229918958619237 +karman_re400,sr,156,62.4,force,front_fy,-0.0058202315121889114 +karman_re400,sr,156,62.4,force,upper_fx,-0.002677908632904291 +karman_re400,sr,156,62.4,force,upper_fy,0.0029606614261865616 +karman_re400,sr,156,62.4,force,lower_fx,0.0010263283038511872 +karman_re400,sr,156,62.4,force,lower_fy,-0.005512529984116554 +karman_re400,sr,157,62.8,force,front_fx,-0.0037122645881026983 +karman_re400,sr,157,62.8,force,front_fy,-0.006233700085431337 +karman_re400,sr,157,62.8,force,upper_fx,-0.0014979897532612085 +karman_re400,sr,157,62.8,force,upper_fy,0.003926096949726343 +karman_re400,sr,157,62.8,force,lower_fx,0.0001224481238750741 +karman_re400,sr,157,62.8,force,lower_fy,-0.005874448921531439 +karman_re400,sr,158,63.2,force,front_fx,-0.003621442709118128 +karman_re400,sr,158,63.2,force,front_fy,-0.006152356043457985 +karman_re400,sr,158,63.2,force,upper_fx,0.00041600147960707545 +karman_re400,sr,158,63.2,force,upper_fy,0.005295987240970135 +karman_re400,sr,158,63.2,force,lower_fx,-0.0007914743619039655 +karman_re400,sr,158,63.2,force,lower_fy,-0.004992961883544922 +karman_re400,sr,159,63.6,force,front_fx,-0.0016059264307841659 +karman_re400,sr,159,63.6,force,front_fy,-0.005674375221133232 +karman_re400,sr,159,63.6,force,upper_fx,0.0030978163704276085 +karman_re400,sr,159,63.6,force,upper_fy,0.006002187728881836 +karman_re400,sr,159,63.6,force,lower_fx,-0.0026661234442144632 +karman_re400,sr,159,63.6,force,lower_fy,-0.0033618053421378136 +karman_re400,sr,160,64.0,force,front_fx,0.0008744288934394717 +karman_re400,sr,160,64.0,force,front_fy,-0.003880030009895563 +karman_re400,sr,160,64.0,force,upper_fx,0.00499152485281229 +karman_re400,sr,160,64.0,force,upper_fy,0.005578986834734678 +karman_re400,sr,160,64.0,force,lower_fx,-0.005036500282585621 +karman_re400,sr,160,64.0,force,lower_fy,-0.001888821367174387 +karman_re400,sr,161,64.4,force,front_fx,0.001459879451431334 +karman_re400,sr,161,64.4,force,front_fy,-0.0004556103376671672 +karman_re400,sr,161,64.4,force,upper_fx,0.004910541232675314 +karman_re400,sr,161,64.4,force,upper_fy,0.005010676570236683 +karman_re400,sr,161,64.4,force,lower_fx,-0.006158816162496805 +karman_re400,sr,161,64.4,force,lower_fy,-0.0017182203009724617 +karman_re400,sr,162,64.8,force,front_fx,0.00037421929300762713 +karman_re400,sr,162,64.8,force,front_fy,0.0033020731061697006 +karman_re400,sr,162,64.8,force,upper_fx,0.0032532336190342903 +karman_re400,sr,162,64.8,force,upper_fy,0.004917909856885672 +karman_re400,sr,162,64.8,force,lower_fx,-0.00475967675447464 +karman_re400,sr,162,64.8,force,lower_fy,-0.0024418726097792387 +karman_re400,sr,163,65.2,force,front_fx,-0.0017609653295949101 +karman_re400,sr,163,65.2,force,front_fy,0.005514460150152445 +karman_re400,sr,163,65.2,force,upper_fx,0.0013899921905249357 +karman_re400,sr,163,65.2,force,upper_fy,0.005353841930627823 +karman_re400,sr,163,65.2,force,lower_fx,-0.002891169162467122 +karman_re400,sr,163,65.2,force,lower_fy,-0.0028074816800653934 +karman_re400,sr,164,65.6,force,front_fx,-0.003505916567519307 +karman_re400,sr,164,65.6,force,front_fy,0.006195046938955784 +karman_re400,sr,164,65.6,force,upper_fx,0.00028598171775229275 +karman_re400,sr,164,65.6,force,upper_fy,0.005933397449553013 +karman_re400,sr,164,65.6,force,lower_fx,-0.0017226971685886383 +karman_re400,sr,164,65.6,force,lower_fy,-0.0035056353081017733 +karman_re400,sr,165,66.0,force,front_fx,-0.003804995911195874 +karman_re400,sr,165,66.0,force,front_fy,0.006199301686137915 +karman_re400,sr,165,66.0,force,upper_fx,-0.0004940753569826484 +karman_re400,sr,165,66.0,force,upper_fy,0.005326464772224426 +karman_re400,sr,165,66.0,force,lower_fx,-0.00017770826525520533 +karman_re400,sr,165,66.0,force,lower_fy,-0.004822330549359322 +karman_re400,sr,166,66.4,force,front_fx,-0.0022152988240122795 +karman_re400,sr,166,66.4,force,front_fy,0.005900378804653883 +karman_re400,sr,166,66.4,force,upper_fx,-0.0020844789687544107 +karman_re400,sr,166,66.4,force,upper_fy,0.00374681712128222 +karman_re400,sr,166,66.4,force,lower_fx,0.002447750186547637 +karman_re400,sr,166,66.4,force,lower_fy,-0.005840335972607136 +karman_re400,sr,167,66.8,force,front_fx,0.0004018331237602979 +karman_re400,sr,167,66.8,force,front_fy,0.004495770670473576 +karman_re400,sr,167,66.8,force,upper_fx,-0.004473604261875153 +karman_re400,sr,167,66.8,force,upper_fy,0.002078922465443611 +karman_re400,sr,167,66.8,force,lower_fx,0.00465091597288847 +karman_re400,sr,167,66.8,force,lower_fy,-0.005651587620377541 +karman_re400,sr,168,67.2,force,front_fx,0.001501888153143227 +karman_re400,sr,168,67.2,force,front_fy,0.0014760596677660942 +karman_re400,sr,168,67.2,force,upper_fx,-0.00612445967271924 +karman_re400,sr,168,67.2,force,upper_fy,0.0014995080418884754 +karman_re400,sr,168,67.2,force,lower_fx,0.0051488494500517845 +karman_re400,sr,168,67.2,force,lower_fy,-0.005015027709305286 +karman_re400,sr,169,67.6,force,front_fx,0.0007828034576959908 +karman_re400,sr,169,67.6,force,front_fy,-0.0024444072041660547 +karman_re400,sr,169,67.6,force,upper_fx,-0.005298342555761337 +karman_re400,sr,169,67.6,force,upper_fy,0.0022674323990941048 +karman_re400,sr,169,67.6,force,lower_fx,0.0037230411544442177 +karman_re400,sr,169,67.6,force,lower_fy,-0.004815520253032446 +karman_re400,sr,170,68.0,force,front_fx,-0.0012434128439053893 +karman_re400,sr,170,68.0,force,front_fy,-0.005096796900033951 +karman_re400,sr,170,68.0,force,upper_fx,-0.0032286294735968113 +karman_re400,sr,170,68.0,force,upper_fy,0.0027331167366355658 +karman_re400,sr,170,68.0,force,lower_fx,0.0018071384401991963 +karman_re400,sr,170,68.0,force,lower_fy,-0.005164174363017082 +karman_re400,sr,171,68.4,force,front_fx,-0.0032037226483225822 +karman_re400,sr,171,68.4,force,front_fy,-0.006093749776482582 +karman_re400,sr,171,68.4,force,upper_fx,-0.0019457049202173948 +karman_re400,sr,171,68.4,force,upper_fy,0.003203541273251176 +karman_re400,sr,171,68.4,force,lower_fx,0.000465978606371209 +karman_re400,sr,171,68.4,force,lower_fy,-0.0058754123747348785 +karman_re400,sr,172,68.8,force,front_fx,-0.0038815138395875692 +karman_re400,sr,172,68.8,force,front_fy,-0.006189127452671528 +karman_re400,sr,172,68.8,force,upper_fx,-0.0006886284681968391 +karman_re400,sr,172,68.8,force,upper_fy,0.004384883679449558 +karman_re400,sr,172,68.8,force,lower_fx,-0.0002431638858979568 +karman_re400,sr,172,68.8,force,lower_fy,-0.005597415380179882 +karman_re400,sr,173,69.2,force,front_fx,-0.0027842840645462275 +karman_re400,sr,173,69.2,force,front_fy,-0.006011345889419317 +karman_re400,sr,173,69.2,force,upper_fx,0.0017087714513763785 +karman_re400,sr,173,69.2,force,upper_fy,0.005614057183265686 +karman_re400,sr,173,69.2,force,lower_fx,-0.0015644330997020006 +karman_re400,sr,173,69.2,force,lower_fy,-0.004158477298915386 +karman_re400,sr,174,69.6,force,front_fx,-0.00022047125094104558 +karman_re400,sr,174,69.6,force,front_fy,-0.004982450045645237 +karman_re400,sr,174,69.6,force,upper_fx,0.004163943696767092 +karman_re400,sr,174,69.6,force,upper_fy,0.005728201940655708 +karman_re400,sr,174,69.6,force,lower_fx,-0.0038410467095673084 +karman_re400,sr,174,69.6,force,lower_fy,-0.0023966217413544655 +karman_re400,sr,175,70.0,force,front_fx,0.0014137666439637542 +karman_re400,sr,175,70.0,force,front_fy,-0.00239975331351161 +karman_re400,sr,175,70.0,force,upper_fx,0.005192335229367018 +karman_re400,sr,175,70.0,force,upper_fy,0.005079332739114761 +karman_re400,sr,175,70.0,force,lower_fx,-0.005862870719283819 +karman_re400,sr,175,70.0,force,lower_fy,-0.0014209875371307135 +karman_re400,sr,176,70.4,force,front_fx,0.0011084630386903882 +karman_re400,sr,176,70.4,force,front_fy,0.0014795820461586118 +karman_re400,sr,176,70.4,force,upper_fx,0.004158062860369682 +karman_re400,sr,176,70.4,force,upper_fy,0.004752759356051683 +karman_re400,sr,176,70.4,force,lower_fx,-0.005738868843764067 +karman_re400,sr,176,70.4,force,lower_fy,-0.002029397990554571 +karman_re400,sr,177,70.8,force,front_fx,-0.0006998811732046306 +karman_re400,sr,177,70.8,force,front_fy,0.004559805616736412 +karman_re400,sr,177,70.8,force,upper_fx,0.002255863044410944 +karman_re400,sr,177,70.8,force,upper_fy,0.004959865007549524 +karman_re400,sr,177,70.8,force,lower_fx,-0.003653501160442829 +karman_re400,sr,177,70.8,force,lower_fy,-0.002677147975191474 +karman_re400,sr,178,71.2,force,front_fx,-0.002824237337335944 +karman_re400,sr,178,71.2,force,front_fy,0.005933037493377924 +karman_re400,sr,178,71.2,force,upper_fx,0.0006656309706158936 +karman_re400,sr,178,71.2,force,upper_fy,0.0056737069971859455 +karman_re400,sr,178,71.2,force,lower_fx,-0.002144596306607127 +karman_re400,sr,178,71.2,force,lower_fy,-0.0030442008282989264 +karman_re400,sr,179,71.6,force,front_fx,-0.0038442695513367653 +karman_re400,sr,179,71.6,force,front_fy,0.006184884812682867 +karman_re400,sr,179,71.6,force,upper_fx,-8.951873314799741e-05 +karman_re400,sr,179,71.6,force,upper_fy,0.005778919439762831 +karman_re400,sr,179,71.6,force,lower_fx,-0.0010215870570391417 +karman_re400,sr,179,71.6,force,lower_fy,-0.0040053026750683784 +karman_re400,sr,180,72.0,force,front_fx,-0.0031852000392973423 +karman_re400,sr,180,72.0,force,front_fy,0.0060876719653606415 +karman_re400,sr,180,72.0,force,upper_fx,-0.0011842132080346346 +karman_re400,sr,180,72.0,force,upper_fy,0.004529193975031376 +karman_re400,sr,180,72.0,force,lower_fx,0.0010360188316553831 +karman_re400,sr,180,72.0,force,lower_fy,-0.005314941518008709 +karman_re400,sr,181,72.4,force,front_fx,-0.0008146142354235053 +karman_re400,sr,181,72.4,force,front_fy,0.005375578533858061 +karman_re400,sr,181,72.4,force,upper_fx,-0.0032716577406972647 +karman_re400,sr,181,72.4,force,upper_fy,0.002726559527218342 +karman_re400,sr,181,72.4,force,lower_fx,0.0036258462350815535 +karman_re400,sr,181,72.4,force,lower_fy,-0.005742670968174934 +karman_re400,sr,182,72.8,force,front_fx,0.001253883121535182 +karman_re400,sr,182,72.8,force,front_fy,0.0031739091500639915 +karman_re400,sr,182,72.8,force,upper_fx,-0.0055446685291826725 +karman_re400,sr,182,72.8,force,upper_fy,0.0014054664643481374 +karman_re400,sr,182,72.8,force,lower_fx,0.0050932858139276505 +karman_re400,sr,182,72.8,force,lower_fy,-0.005220525898039341 +karman_re400,sr,183,73.2,force,front_fx,0.0013240973930805922 +karman_re400,sr,183,73.2,force,front_fy,-0.0005112418439239264 +karman_re400,sr,183,73.2,force,upper_fx,-0.006125166546553373 +karman_re400,sr,183,73.2,force,upper_fy,0.0017293593846261501 +karman_re400,sr,183,73.2,force,lower_fx,0.004523236770182848 +karman_re400,sr,183,73.2,force,lower_fy,-0.00478717964142561 +karman_re400,sr,184,73.6,force,front_fx,-0.00015882104344200343 +karman_re400,sr,184,73.6,force,front_fy,-0.004000453278422356 +karman_re400,sr,184,73.6,force,upper_fx,-0.004268237855285406 +karman_re400,sr,184,73.6,force,upper_fy,0.002595470519736409 +karman_re400,sr,184,73.6,force,lower_fx,0.0026983555871993303 +karman_re400,sr,184,73.6,force,lower_fy,-0.0048678875900805 +karman_re400,sr,185,74.0,force,front_fx,-0.002322638873010874 +karman_re400,sr,185,74.0,force,front_fy,-0.005776083096861839 +karman_re400,sr,185,74.0,force,upper_fx,-0.002505545038729906 +karman_re400,sr,185,74.0,force,upper_fy,0.003011092310771346 +karman_re400,sr,185,74.0,force,lower_fx,0.0009516454301774502 +karman_re400,sr,185,74.0,force,lower_fy,-0.005471182521432638 +karman_re400,sr,186,74.4,force,front_fx,-0.003720301203429699 +karman_re400,sr,186,74.4,force,front_fy,-0.006178904790431261 +karman_re400,sr,186,74.4,force,upper_fx,-0.001397875719703734 +karman_re400,sr,186,74.4,force,upper_fy,0.00383037724532187 +karman_re400,sr,186,74.4,force,lower_fx,5.810601942357607e-05 +karman_re400,sr,186,74.4,force,lower_fy,-0.005885561928153038 +karman_re400,sr,187,74.8,force,front_fx,-0.003538108430802822 +karman_re400,sr,187,74.8,force,front_fy,-0.006099808029830456 +karman_re400,sr,187,74.8,force,upper_fx,0.0004054293385706842 +karman_re400,sr,187,74.8,force,upper_fy,0.00515972264111042 +karman_re400,sr,187,74.8,force,lower_fx,-0.0008352029253728688 +karman_re400,sr,187,74.8,force,lower_fy,-0.004942107945680618 +karman_re400,sr,188,75.2,force,front_fx,-0.0015072369715198874 +karman_re400,sr,188,75.2,force,front_fy,-0.005631064064800739 +karman_re400,sr,188,75.2,force,upper_fx,0.0030655136797577143 +karman_re400,sr,188,75.2,force,upper_fy,0.005883309058845043 +karman_re400,sr,188,75.2,force,lower_fx,-0.002700849436223507 +karman_re400,sr,188,75.2,force,lower_fy,-0.0032305335626006126 +karman_re400,sr,189,75.6,force,front_fx,0.0008941023261286318 +karman_re400,sr,189,75.6,force,front_fy,-0.003845241852104664 +karman_re400,sr,189,75.6,force,upper_fx,0.004934181924909353 +karman_re400,sr,189,75.6,force,upper_fy,0.0054860482923686504 +karman_re400,sr,189,75.6,force,lower_fx,-0.005092664156109095 +karman_re400,sr,189,75.6,force,lower_fy,-0.0017102002166211605 +karman_re400,sr,190,76.0,force,front_fx,0.0014525220030918717 +karman_re400,sr,190,76.0,force,front_fy,-0.0004365712811704725 +karman_re400,sr,190,76.0,force,upper_fx,0.004861115477979183 +karman_re400,sr,190,76.0,force,upper_fy,0.0049215080216526985 +karman_re400,sr,190,76.0,force,lower_fx,-0.00623939698562026 +karman_re400,sr,190,76.0,force,lower_fy,-0.0015804989961907268 +karman_re400,sr,191,76.4,force,front_fx,0.0003573673602659255 +karman_re400,sr,191,76.4,force,front_fy,0.0033293224405497313 +karman_re400,sr,191,76.4,force,upper_fx,0.00316783064045012 +karman_re400,sr,191,76.4,force,upper_fy,0.004845209885388613 +karman_re400,sr,191,76.4,force,lower_fx,-0.004844322334975004 +karman_re400,sr,191,76.4,force,lower_fy,-0.0024348602164536715 +karman_re400,sr,192,76.8,force,front_fx,-0.0017560916021466255 +karman_re400,sr,192,76.8,force,front_fy,0.005533523391932249 +karman_re400,sr,192,76.8,force,upper_fx,0.0013281985884532332 +karman_re400,sr,192,76.8,force,upper_fy,0.005299344193190336 +karman_re400,sr,192,76.8,force,lower_fx,-0.0029336335137486458 +karman_re400,sr,192,76.8,force,lower_fy,-0.0028772782534360886 +karman_re400,sr,193,77.2,force,front_fx,-0.0034872626420110464 +karman_re400,sr,193,77.2,force,front_fy,0.006175905466079712 +karman_re400,sr,193,77.2,force,upper_fx,0.00022813520627096295 +karman_re400,sr,193,77.2,force,upper_fy,0.005879596341401339 +karman_re400,sr,193,77.2,force,lower_fx,-0.001772931544110179 +karman_re400,sr,193,77.2,force,lower_fy,-0.003605326171964407 +karman_re400,sr,194,77.6,force,front_fx,-0.003789844224229455 +karman_re400,sr,194,77.6,force,front_fy,0.006147509440779686 +karman_re400,sr,194,77.6,force,upper_fx,-0.0005299263284541667 +karman_re400,sr,194,77.6,force,upper_fy,0.0052808611653745174 +karman_re400,sr,194,77.6,force,lower_fx,-0.0001830945402616635 +karman_re400,sr,194,77.6,force,lower_fy,-0.004932065960019827 +karman_re400,sr,195,78.0,force,front_fx,-0.002207563491538167 +karman_re400,sr,195,78.0,force,front_fy,0.005842301063239574 +karman_re400,sr,195,78.0,force,upper_fx,-0.0021517565473914146 +karman_re400,sr,195,78.0,force,upper_fy,0.0037242586258798838 +karman_re400,sr,195,78.0,force,lower_fx,0.002447144128382206 +karman_re400,sr,195,78.0,force,lower_fy,-0.0059278057888150215 +karman_re400,sr,196,78.4,force,front_fx,0.0004142453253734857 +karman_re400,sr,196,78.4,force,front_fy,0.0044408319517970085 +karman_re400,sr,196,78.4,force,upper_fx,-0.004543207585811615 +karman_re400,sr,196,78.4,force,upper_fy,0.0020861809607595205 +karman_re400,sr,196,78.4,force,lower_fx,0.004668767098337412 +karman_re400,sr,196,78.4,force,lower_fy,-0.005723229143768549 +karman_re400,sr,197,78.8,force,front_fx,0.001486090011894703 +karman_re400,sr,197,78.8,force,front_fy,0.0013913284055888653 +karman_re400,sr,197,78.8,force,upper_fx,-0.00615403288975358 +karman_re400,sr,197,78.8,force,upper_fy,0.0015408243052661419 +karman_re400,sr,197,78.8,force,lower_fx,0.005111038684844971 +karman_re400,sr,197,78.8,force,lower_fy,-0.005056785419583321 +karman_re400,sr,198,79.2,force,front_fx,0.0007846365333534777 +karman_re400,sr,198,79.2,force,front_fy,-0.0025369543582201004 +karman_re400,sr,198,79.2,force,upper_fx,-0.00529472716152668 +karman_re400,sr,198,79.2,force,upper_fy,0.0022687562741339207 +karman_re400,sr,198,79.2,force,lower_fx,0.0036590336821973324 +karman_re400,sr,198,79.2,force,lower_fy,-0.004860621877014637 +karman_re400,sr,199,79.6,force,front_fx,-0.001199872000142932 +karman_re400,sr,199,79.6,force,front_fy,-0.005165689624845982 +karman_re400,sr,199,79.6,force,upper_fx,-0.0033292612060904503 +karman_re400,sr,199,79.6,force,upper_fy,0.002721111522987485 +karman_re400,sr,199,79.6,force,lower_fx,0.0017506149597465992 +karman_re400,sr,199,79.6,force,lower_fy,-0.005164118018001318 +karman_re400,sr,0,0.0,alpha,front,-3.179288460081991 +karman_re400,sr,0,0.0,alpha,upper,-1.1839364944802746 +karman_re400,sr,0,0.0,alpha,lower,5.678480866540958 +karman_re400,sr,1,0.4,alpha,front,-3.6751645022886845 +karman_re400,sr,1,0.4,alpha,upper,-1.303908345920596 +karman_re400,sr,1,0.4,alpha,lower,5.558509015100636 +karman_re400,sr,2,0.8,alpha,front,-3.3807116454937565 +karman_re400,sr,2,0.8,alpha,upper,-1.6429575424828704 +karman_re400,sr,2,0.8,alpha,lower,5.219459818538362 +karman_re400,sr,3,1.2,alpha,front,-2.688769254530576 +karman_re400,sr,3,1.2,alpha,upper,-1.5524071991513417 +karman_re400,sr,3,1.2,alpha,lower,5.31001016186989 +karman_re400,sr,4,1.6,alpha,front,-2.018367829293365 +karman_re400,sr,4,1.6,alpha,upper,-1.9743472509574171 +karman_re400,sr,4,1.6,alpha,lower,4.888070110063815 +karman_re400,sr,5,2.0,alpha,front,-0.9859173282408481 +karman_re400,sr,5,2.0,alpha,upper,-3.2227701222716347 +karman_re400,sr,5,2.0,alpha,lower,3.639647238749598 +karman_re400,sr,6,2.4,alpha,front,0.012060663540467035 +karman_re400,sr,6,2.4,alpha,upper,-3.9162307293895067 +karman_re400,sr,6,2.4,alpha,lower,2.9461866316317256 +karman_re400,sr,7,2.8,alpha,front,0.8513977026680213 +karman_re400,sr,7,2.8,alpha,upper,-4.566123449664031 +karman_re400,sr,7,2.8,alpha,lower,2.2962939113572016 +karman_re400,sr,8,3.2,alpha,front,1.7547991227074586 +karman_re400,sr,8,3.2,alpha,upper,-5.754576685562706 +karman_re400,sr,8,3.2,alpha,lower,1.107840675458526 +karman_re400,sr,9,3.6,alpha,front,2.508352860772673 +karman_re400,sr,9,3.6,alpha,upper,-6.738444857616925 +karman_re400,sr,9,3.6,alpha,lower,0.12397250340430777 +karman_re400,sr,10,4.0,alpha,front,2.5118027257384017 +karman_re400,sr,10,4.0,alpha,upper,-6.402351970728423 +karman_re400,sr,10,4.0,alpha,lower,0.4600653902928098 +karman_re400,sr,11,4.4,alpha,front,1.9137254773174575 +karman_re400,sr,11,4.4,alpha,upper,-5.341193763302622 +karman_re400,sr,11,4.4,alpha,lower,1.5212235977186104 +karman_re400,sr,12,4.8,alpha,front,1.344585802788579 +karman_re400,sr,12,4.8,alpha,upper,-3.8189623862297317 +karman_re400,sr,12,4.8,alpha,lower,3.0434549747915005 +karman_re400,sr,13,5.2,alpha,front,0.43524492073290405 +karman_re400,sr,13,5.2,alpha,upper,-2.0882871223135453 +karman_re400,sr,13,5.2,alpha,lower,4.774130238707687 +karman_re400,sr,14,5.6,alpha,front,-0.8920187970441169 +karman_re400,sr,14,5.6,alpha,upper,-1.7737557476780397 +karman_re400,sr,14,5.6,alpha,lower,5.088661613343192 +karman_re400,sr,15,6.0,alpha,front,-1.8568024833839065 +karman_re400,sr,15,6.0,alpha,upper,-2.5449637366635294 +karman_re400,sr,15,6.0,alpha,lower,4.317453624357703 +karman_re400,sr,16,6.4,alpha,front,-2.1542500183282347 +karman_re400,sr,16,6.4,alpha,upper,-2.178189507360412 +karman_re400,sr,16,6.4,alpha,lower,4.68422785366082 +karman_re400,sr,17,6.8,alpha,front,-2.1875525371981737 +karman_re400,sr,17,6.8,alpha,upper,-0.7061394240687107 +karman_re400,sr,17,6.8,alpha,lower,6.156277936952522 +karman_re400,sr,18,7.2,alpha,front,-2.0928867773449715 +karman_re400,sr,18,7.2,alpha,upper,-0.9687087614839869 +karman_re400,sr,18,7.2,alpha,lower,5.893708599537245 +karman_re400,sr,19,7.6,alpha,front,-1.42078097673531 +karman_re400,sr,19,7.6,alpha,upper,-2.4514366827159946 +karman_re400,sr,19,7.6,alpha,lower,4.410980678305237 +karman_re400,sr,20,8.0,alpha,front,-0.5118108441639344 +karman_re400,sr,20,8.0,alpha,upper,-3.3804648383596367 +karman_re400,sr,20,8.0,alpha,lower,3.481952522661596 +karman_re400,sr,21,8.4,alpha,front,0.2565418045086568 +karman_re400,sr,21,8.4,alpha,upper,-3.836046805137552 +karman_re400,sr,21,8.4,alpha,lower,3.0263705558836804 +karman_re400,sr,22,8.8,alpha,front,1.0822931466417338 +karman_re400,sr,22,8.8,alpha,upper,-4.520147033670457 +karman_re400,sr,22,8.8,alpha,lower,2.342270327350775 +karman_re400,sr,23,9.2,alpha,front,1.8807326470979175 +karman_re400,sr,23,9.2,alpha,upper,-5.303012181946368 +karman_re400,sr,23,9.2,alpha,lower,1.5594051790748638 +karman_re400,sr,24,9.6,alpha,front,2.279730265094046 +karman_re400,sr,24,9.6,alpha,upper,-5.59561482736868 +karman_re400,sr,24,9.6,alpha,lower,1.266802533652553 +karman_re400,sr,25,10.0,alpha,front,1.9793368917874765 +karman_re400,sr,25,10.0,alpha,upper,-5.317126741300873 +karman_re400,sr,25,10.0,alpha,lower,1.545290619720359 +karman_re400,sr,26,10.4,alpha,front,1.328381161007281 +karman_re400,sr,26,10.4,alpha,upper,-4.864348990605007 +karman_re400,sr,26,10.4,alpha,lower,1.9980683704162259 +karman_re400,sr,27,10.8,alpha,front,0.7121690447168301 +karman_re400,sr,27,10.8,alpha,upper,-4.541510474088786 +karman_re400,sr,27,10.8,alpha,lower,2.3209068869324465 +karman_re400,sr,28,11.2,alpha,front,0.1524424926912183 +karman_re400,sr,28,11.2,alpha,upper,-3.7767954655836258 +karman_re400,sr,28,11.2,alpha,lower,3.085621895437606 +karman_re400,sr,29,11.6,alpha,front,-0.6317985462658731 +karman_re400,sr,29,11.6,alpha,upper,-2.3793787277980565 +karman_re400,sr,29,11.6,alpha,lower,4.483038633223176 +karman_re400,sr,30,12.0,alpha,front,-1.571507797078309 +karman_re400,sr,30,12.0,alpha,upper,-1.4664685344853934 +karman_re400,sr,30,12.0,alpha,lower,5.395948826535839 +karman_re400,sr,31,12.4,alpha,front,-2.100056058501743 +karman_re400,sr,31,12.4,alpha,upper,-1.494396206436031 +karman_re400,sr,31,12.4,alpha,lower,5.368021154585201 +karman_re400,sr,32,12.8,alpha,front,-1.8314531242546508 +karman_re400,sr,32,12.8,alpha,upper,-1.9973628632049651 +karman_re400,sr,32,12.8,alpha,lower,4.865054497816267 +karman_re400,sr,33,13.2,alpha,front,-1.1047394688222227 +karman_re400,sr,33,13.2,alpha,upper,-2.1746507051121284 +karman_re400,sr,33,13.2,alpha,lower,4.687766655909104 +karman_re400,sr,34,13.6,alpha,front,-0.48779625421784734 +karman_re400,sr,34,13.6,alpha,upper,-1.9720670650482564 +karman_re400,sr,34,13.6,alpha,lower,4.890350295972976 +karman_re400,sr,35,14.0,alpha,front,-0.05803316392050748 +karman_re400,sr,35,14.0,alpha,upper,-2.4353208518267415 +karman_re400,sr,35,14.0,alpha,lower,4.427096509194491 +karman_re400,sr,36,14.4,alpha,front,0.5882701303596825 +karman_re400,sr,36,14.4,alpha,upper,-4.07325160540046 +karman_re400,sr,36,14.4,alpha,lower,2.789165755620772 +karman_re400,sr,37,14.8,alpha,front,1.481302441786974 +karman_re400,sr,37,14.8,alpha,upper,-5.569006213354676 +karman_re400,sr,37,14.8,alpha,lower,1.2934111476665566 +karman_re400,sr,38,15.2,alpha,front,2.172861440420952 +karman_re400,sr,38,15.2,alpha,upper,-6.21066266218587 +karman_re400,sr,38,15.2,alpha,lower,0.6517546988353624 +karman_re400,sr,39,15.6,alpha,front,2.1485387824174036 +karman_re400,sr,39,15.6,alpha,upper,-5.7821516800306325 +karman_re400,sr,39,15.6,alpha,lower,1.0802656809905997 +karman_re400,sr,40,16.0,alpha,front,1.4450406758132284 +karman_re400,sr,40,16.0,alpha,upper,-5.232223805067857 +karman_re400,sr,40,16.0,alpha,lower,1.6301935559533753 +karman_re400,sr,41,16.4,alpha,front,0.8146007192267161 +karman_re400,sr,41,16.4,alpha,upper,-4.968398667861453 +karman_re400,sr,41,16.4,alpha,lower,1.8940186931597793 +karman_re400,sr,42,16.8,alpha,front,0.3796508185581351 +karman_re400,sr,42,16.8,alpha,upper,-4.185217761718439 +karman_re400,sr,42,16.8,alpha,lower,2.6771995993027935 +karman_re400,sr,43,17.2,alpha,front,-0.27707845771135037 +karman_re400,sr,43,17.2,alpha,upper,-2.702323511908895 +karman_re400,sr,43,17.2,alpha,lower,4.160093849112337 +karman_re400,sr,44,17.6,alpha,front,-1.2803116216909904 +karman_re400,sr,44,17.6,alpha,upper,-1.5084110447669328 +karman_re400,sr,44,17.6,alpha,lower,5.354006316254299 +karman_re400,sr,45,18.0,alpha,front,-2.116050023201157 +karman_re400,sr,45,18.0,alpha,upper,-1.2834320419977394 +karman_re400,sr,45,18.0,alpha,lower,5.578985319023493 +karman_re400,sr,46,18.4,alpha,front,-2.207198385982931 +karman_re400,sr,46,18.4,alpha,upper,-1.4244182341508602 +karman_re400,sr,46,18.4,alpha,lower,5.437999126870372 +karman_re400,sr,47,18.8,alpha,front,-1.6311378916145038 +karman_re400,sr,47,18.8,alpha,upper,-1.3771889871599918 +karman_re400,sr,47,18.8,alpha,lower,5.48522837386124 +karman_re400,sr,48,19.2,alpha,front,-1.0391082964383076 +karman_re400,sr,48,19.2,alpha,upper,-1.2992986464509038 +karman_re400,sr,48,19.2,alpha,lower,5.5631187145703285 +karman_re400,sr,49,19.6,alpha,front,-0.6181869530842495 +karman_re400,sr,49,19.6,alpha,upper,-1.787409915619758 +karman_re400,sr,49,19.6,alpha,lower,5.075007445401474 +karman_re400,sr,50,20.0,alpha,front,-0.10317882335386327 +karman_re400,sr,50,20.0,alpha,upper,-3.2314807156218883 +karman_re400,sr,50,20.0,alpha,lower,3.6309366453993444 +karman_re400,sr,51,20.4,alpha,front,0.7574953530879304 +karman_re400,sr,51,20.4,alpha,upper,-4.83935144204408 +karman_re400,sr,51,20.4,alpha,lower,2.0230659189771516 +karman_re400,sr,52,20.8,alpha,front,1.6790608227697026 +karman_re400,sr,52,20.8,alpha,upper,-5.466728373155771 +karman_re400,sr,52,20.8,alpha,lower,1.3956889878654608 +karman_re400,sr,53,21.2,alpha,front,2.0591231664844396 +karman_re400,sr,53,21.2,alpha,upper,-5.170478221957159 +karman_re400,sr,53,21.2,alpha,lower,1.6919391390640737 +karman_re400,sr,54,21.6,alpha,front,1.5890418578660914 +karman_re400,sr,54,21.6,alpha,upper,-4.694283538985931 +karman_re400,sr,54,21.6,alpha,lower,2.1681338220353013 +karman_re400,sr,55,22.0,alpha,front,0.810152369212316 +karman_re400,sr,55,22.0,alpha,upper,-4.9026199402679085 +karman_re400,sr,55,22.0,alpha,lower,1.9597974207533237 +karman_re400,sr,56,22.4,alpha,front,0.27466708201995793 +karman_re400,sr,56,22.4,alpha,upper,-5.41690500933869 +karman_re400,sr,56,22.4,alpha,lower,1.4455123516825423 +karman_re400,sr,57,22.8,alpha,front,-0.08805226541497581 +karman_re400,sr,57,22.8,alpha,upper,-4.612104433032731 +karman_re400,sr,57,22.8,alpha,lower,2.2503129279885012 +karman_re400,sr,58,23.2,alpha,front,-0.7715829898949889 +karman_re400,sr,58,23.2,alpha,upper,-2.6911188272477067 +karman_re400,sr,58,23.2,alpha,lower,4.171298533773526 +karman_re400,sr,59,23.6,alpha,front,-1.6124810929195352 +karman_re400,sr,59,23.6,alpha,upper,-1.2203294156139348 +karman_re400,sr,59,23.6,alpha,lower,5.642087945407297 +karman_re400,sr,60,24.0,alpha,front,-2.2000410483741106 +karman_re400,sr,60,24.0,alpha,upper,-0.6898283759542441 +karman_re400,sr,60,24.0,alpha,lower,6.172588985066988 +karman_re400,sr,61,24.4,alpha,front,-2.044616328904229 +karman_re400,sr,61,24.4,alpha,upper,-1.3560718805068381 +karman_re400,sr,61,24.4,alpha,lower,5.506345480514394 +karman_re400,sr,62,24.8,alpha,front,-1.2504909356474663 +karman_re400,sr,62,24.8,alpha,upper,-1.8695897828021464 +karman_re400,sr,62,24.8,alpha,lower,4.992827578219086 +karman_re400,sr,63,25.2,alpha,front,-0.6540705215061539 +karman_re400,sr,63,25.2,alpha,upper,-1.7746678524908714 +karman_re400,sr,63,25.2,alpha,lower,5.087749508530361 +karman_re400,sr,64,25.6,alpha,front,-0.313081883410925 +karman_re400,sr,64,25.6,alpha,upper,-2.493872469511234 +karman_re400,sr,64,25.6,alpha,lower,4.368544891509998 +karman_re400,sr,65,26.0,alpha,front,0.3127352985213179 +karman_re400,sr,65,26.0,alpha,upper,-4.211503614556811 +karman_re400,sr,65,26.0,alpha,lower,2.650913746464421 +karman_re400,sr,66,26.4,alpha,front,1.2976469045450334 +karman_re400,sr,66,26.4,alpha,upper,-5.596607622475419 +karman_re400,sr,66,26.4,alpha,lower,1.2658097385458134 +karman_re400,sr,67,26.8,alpha,front,2.079543614293548 +karman_re400,sr,67,26.8,alpha,upper,-5.773877803865425 +karman_re400,sr,67,26.8,alpha,lower,1.0885395571558076 +karman_re400,sr,68,27.2,alpha,front,2.0376108386336687 +karman_re400,sr,68,27.2,alpha,upper,-5.203827063691692 +karman_re400,sr,68,27.2,alpha,lower,1.65859029732954 +karman_re400,sr,69,27.6,alpha,front,1.3300183150726774 +karman_re400,sr,69,27.6,alpha,upper,-4.993472034849485 +karman_re400,sr,69,27.6,alpha,lower,1.8689453261717475 +karman_re400,sr,70,28.0,alpha,front,0.7115841993655454 +karman_re400,sr,70,28.0,alpha,upper,-5.206609660864807 +karman_re400,sr,70,28.0,alpha,lower,1.6558077001564255 +karman_re400,sr,71,28.4,alpha,front,0.32928835668424156 +karman_re400,sr,71,28.4,alpha,upper,-4.838916018948654 +karman_re400,sr,71,28.4,alpha,lower,2.023501342072578 +karman_re400,sr,72,28.8,alpha,front,-0.21033586937090884 +karman_re400,sr,72,28.8,alpha,upper,-3.2941365765953674 +karman_re400,sr,72,28.8,alpha,lower,3.5682807844258644 +karman_re400,sr,73,29.2,alpha,front,-1.0820986754892254 +karman_re400,sr,73,29.2,alpha,upper,-1.7118056984074959 +karman_re400,sr,73,29.2,alpha,lower,5.150611662613736 +karman_re400,sr,74,29.6,alpha,front,-1.8953193155302306 +karman_re400,sr,74,29.6,alpha,upper,-0.9986518638322658 +karman_re400,sr,74,29.6,alpha,lower,5.863765497188966 +karman_re400,sr,75,30.0,alpha,front,-2.116180647431906 +karman_re400,sr,75,30.0,alpha,upper,-1.2362060682923786 +karman_re400,sr,75,30.0,alpha,lower,5.626211292728854 +karman_re400,sr,76,30.4,alpha,front,-1.538801079211911 +karman_re400,sr,76,30.4,alpha,upper,-1.792007892159958 +karman_re400,sr,76,30.4,alpha,lower,5.070409468861274 +karman_re400,sr,77,30.8,alpha,front,-0.8051082403942786 +karman_re400,sr,77,30.8,alpha,upper,-1.7290067376268887 +karman_re400,sr,77,30.8,alpha,lower,5.133410623394344 +karman_re400,sr,78,31.2,alpha,front,-0.36764478897957703 +karman_re400,sr,78,31.2,alpha,upper,-1.768027802531457 +karman_re400,sr,78,31.2,alpha,lower,5.094389558489775 +karman_re400,sr,79,31.6,alpha,front,0.06837751131556093 +karman_re400,sr,79,31.6,alpha,upper,-3.015768764739236 +karman_re400,sr,79,31.6,alpha,lower,3.8466485962819963 +karman_re400,sr,80,32.0,alpha,front,0.8698080158371568 +karman_re400,sr,80,32.0,alpha,upper,-4.735613868754635 +karman_re400,sr,80,32.0,alpha,lower,2.126803492266597 +karman_re400,sr,81,32.4,alpha,front,1.759690693790332 +karman_re400,sr,81,32.4,alpha,upper,-5.75172557776269 +karman_re400,sr,81,32.4,alpha,lower,1.110691783258543 +karman_re400,sr,82,32.8,alpha,front,2.1993857072300416 +karman_re400,sr,82,32.8,alpha,upper,-5.80126424186353 +karman_re400,sr,82,32.8,alpha,lower,1.061153119157702 +karman_re400,sr,83,33.2,alpha,front,1.793914775044166 +karman_re400,sr,83,33.2,alpha,upper,-5.196761334370455 +karman_re400,sr,83,33.2,alpha,lower,1.6656560266507774 +karman_re400,sr,84,33.6,alpha,front,1.0220183447151288 +karman_re400,sr,84,33.6,alpha,upper,-5.142372117884898 +karman_re400,sr,84,33.6,alpha,lower,1.7200452431363336 +karman_re400,sr,85,34.0,alpha,front,0.5204628346591615 +karman_re400,sr,85,34.0,alpha,upper,-5.321504418114122 +karman_re400,sr,85,34.0,alpha,lower,1.5409129429071107 +karman_re400,sr,86,34.4,alpha,front,0.16877192151620307 +karman_re400,sr,86,34.4,alpha,upper,-4.356309198036842 +karman_re400,sr,86,34.4,alpha,lower,2.50610816298439 +karman_re400,sr,87,34.8,alpha,front,-0.5276474337491783 +karman_re400,sr,87,34.8,alpha,upper,-2.5589545201520965 +karman_re400,sr,87,34.8,alpha,lower,4.303462840869136 +karman_re400,sr,88,35.2,alpha,front,-1.4463959799069075 +karman_re400,sr,88,35.2,alpha,upper,-1.3235896220797057 +karman_re400,sr,88,35.2,alpha,lower,5.538827738941526 +karman_re400,sr,89,35.6,alpha,front,-2.066067473821631 +karman_re400,sr,89,35.6,alpha,upper,-1.1704338872698488 +karman_re400,sr,89,35.6,alpha,lower,5.6919834737513835 +karman_re400,sr,90,36.0,alpha,front,-1.879183981846893 +karman_re400,sr,90,36.0,alpha,upper,-1.7910622932628624 +karman_re400,sr,90,36.0,alpha,lower,5.07135506775837 +karman_re400,sr,91,36.4,alpha,front,-1.104992592119129 +karman_re400,sr,91,36.4,alpha,upper,-2.0675958472680516 +karman_re400,sr,91,36.4,alpha,lower,4.794821513753181 +karman_re400,sr,92,36.8,alpha,front,-0.473161678394311 +karman_re400,sr,92,36.8,alpha,upper,-1.6459764251958808 +karman_re400,sr,92,36.8,alpha,lower,5.216440935825352 +karman_re400,sr,93,37.2,alpha,front,-0.12571672846024018 +karman_re400,sr,93,37.2,alpha,upper,-2.001052236586597 +karman_re400,sr,93,37.2,alpha,lower,4.861365124434635 +karman_re400,sr,94,37.6,alpha,front,0.4312599825989873 +karman_re400,sr,94,37.6,alpha,upper,-3.7071664407581464 +karman_re400,sr,94,37.6,alpha,lower,3.1552509202630854 +karman_re400,sr,95,38.0,alpha,front,1.3029375854886136 +karman_re400,sr,95,38.0,alpha,upper,-5.3337314335745365 +karman_re400,sr,95,38.0,alpha,lower,1.5286859274466955 +karman_re400,sr,96,38.4,alpha,front,2.0294135687568007 +karman_re400,sr,96,38.4,alpha,upper,-6.027689503966641 +karman_re400,sr,96,38.4,alpha,lower,0.8347278570545914 +karman_re400,sr,97,38.8,alpha,front,2.1013210089891765 +karman_re400,sr,97,38.8,alpha,upper,-5.546743228405115 +karman_re400,sr,97,38.8,alpha,lower,1.315674132616118 +karman_re400,sr,98,39.2,alpha,front,1.3957693225343595 +karman_re400,sr,98,39.2,alpha,upper,-4.843207220126168 +karman_re400,sr,98,39.2,alpha,lower,2.0192101408950647 +karman_re400,sr,99,39.6,alpha,front,0.6917697978153294 +karman_re400,sr,99,39.6,alpha,upper,-4.959651078772672 +karman_re400,sr,99,39.6,alpha,lower,1.90276628224856 +karman_re400,sr,100,40.0,alpha,front,0.3174796925705785 +karman_re400,sr,100,40.0,alpha,upper,-4.7772684821573455 +karman_re400,sr,100,40.0,alpha,lower,2.085148878863887 +karman_re400,sr,101,40.4,alpha,front,-0.16789711212856154 +karman_re400,sr,101,40.4,alpha,upper,-3.301251633567975 +karman_re400,sr,101,40.4,alpha,lower,3.5611657274532575 +karman_re400,sr,102,40.8,alpha,front,-1.0354696434953041 +karman_re400,sr,102,40.8,alpha,upper,-1.6702302528403177 +karman_re400,sr,102,40.8,alpha,lower,5.192187108180915 +karman_re400,sr,103,41.2,alpha,front,-1.8835036390221271 +karman_re400,sr,103,41.2,alpha,upper,-0.9461705921830328 +karman_re400,sr,103,41.2,alpha,lower,5.916246768838199 +karman_re400,sr,104,41.6,alpha,front,-2.118135393313259 +karman_re400,sr,104,41.6,alpha,upper,-1.27601241722709 +karman_re400,sr,104,41.6,alpha,lower,5.586404943794142 +karman_re400,sr,105,42.0,alpha,front,-1.5453799317417292 +karman_re400,sr,105,42.0,alpha,upper,-1.8689827786477877 +karman_re400,sr,105,42.0,alpha,lower,4.993434582373444 +karman_re400,sr,106,42.4,alpha,front,-0.8364628731529696 +karman_re400,sr,106,42.4,alpha,upper,-1.8788103997082313 +karman_re400,sr,106,42.4,alpha,lower,4.983606961313001 +karman_re400,sr,107,42.8,alpha,front,-0.3930095825915704 +karman_re400,sr,107,42.8,alpha,upper,-1.9975944291238965 +karman_re400,sr,107,42.8,alpha,lower,4.8648229318973355 +karman_re400,sr,108,43.2,alpha,front,0.060397292667798815 +karman_re400,sr,108,43.2,alpha,upper,-3.2010857476277264 +karman_re400,sr,108,43.2,alpha,lower,3.661331613393506 +karman_re400,sr,109,43.6,alpha,front,0.8644809714520458 +karman_re400,sr,109,43.6,alpha,upper,-4.86707860622665 +karman_re400,sr,109,43.6,alpha,lower,1.9953387547945831 +karman_re400,sr,110,44.0,alpha,front,1.7515878179021016 +karman_re400,sr,110,44.0,alpha,upper,-5.830356594471515 +karman_re400,sr,110,44.0,alpha,lower,1.0320607665497175 +karman_re400,sr,111,44.4,alpha,front,2.1668747481105406 +karman_re400,sr,111,44.4,alpha,upper,-5.818296973309499 +karman_re400,sr,111,44.4,alpha,lower,1.0441203877117338 +karman_re400,sr,112,44.8,alpha,front,1.7536535188999203 +karman_re400,sr,112,44.8,alpha,upper,-5.2393965632129 +karman_re400,sr,112,44.8,alpha,lower,1.6230207978083322 +karman_re400,sr,113,45.2,alpha,front,1.025599877307059 +karman_re400,sr,113,45.2,alpha,upper,-5.094707904536117 +karman_re400,sr,113,45.2,alpha,lower,1.7677094564851157 +karman_re400,sr,114,45.6,alpha,front,0.526618157434693 +karman_re400,sr,114,45.6,alpha,upper,-5.0200486772376 +karman_re400,sr,114,45.6,alpha,lower,1.8423686837836322 +karman_re400,sr,115,46.0,alpha,front,0.11627824256750534 +karman_re400,sr,115,46.0,alpha,upper,-3.9971506100202343 +karman_re400,sr,115,46.0,alpha,lower,2.865266751000998 +karman_re400,sr,116,46.4,alpha,front,-0.6272174852298185 +karman_re400,sr,116,46.4,alpha,upper,-2.352191884092994 +karman_re400,sr,116,46.4,alpha,lower,4.510225476928238 +karman_re400,sr,117,46.8,alpha,front,-1.5545541749610152 +karman_re400,sr,117,46.8,alpha,upper,-1.2567611594361732 +karman_re400,sr,117,46.8,alpha,lower,5.6056562015850595 +karman_re400,sr,118,47.2,alpha,front,-2.129212168241444 +karman_re400,sr,118,47.2,alpha,upper,-1.1347881125840225 +karman_re400,sr,118,47.2,alpha,lower,5.72762924843721 +karman_re400,sr,119,47.6,alpha,front,-1.888629152685495 +karman_re400,sr,119,47.6,alpha,upper,-1.6199772512696369 +karman_re400,sr,119,47.6,alpha,lower,5.242440109751596 +karman_re400,sr,120,48.0,alpha,front,-1.1594612535484905 +karman_re400,sr,120,48.0,alpha,upper,-1.7873656120810277 +karman_re400,sr,120,48.0,alpha,lower,5.075051748940204 +karman_re400,sr,121,48.4,alpha,front,-0.5879862712967205 +karman_re400,sr,121,48.4,alpha,upper,-1.6390531979786012 +karman_re400,sr,121,48.4,alpha,lower,5.223364163042631 +karman_re400,sr,122,48.8,alpha,front,-0.2130318587485371 +karman_re400,sr,122,48.8,alpha,upper,-2.2875757057150703 +karman_re400,sr,122,48.8,alpha,lower,4.574841655306162 +karman_re400,sr,123,49.2,alpha,front,0.40471899926274696 +karman_re400,sr,123,49.2,alpha,upper,-3.941615591361189 +karman_re400,sr,123,49.2,alpha,lower,2.9208017696600432 +karman_re400,sr,124,49.6,alpha,front,1.2987137874956316 +karman_re400,sr,124,49.6,alpha,upper,-5.353592816559482 +karman_re400,sr,124,49.6,alpha,lower,1.5088245444617503 +karman_re400,sr,125,50.0,alpha,front,2.0153631611874996 +karman_re400,sr,125,50.0,alpha,upper,-5.85383313099228 +karman_re400,sr,125,50.0,alpha,lower,1.0085842300289518 +karman_re400,sr,126,50.4,alpha,front,2.038264048587025 +karman_re400,sr,126,50.4,alpha,upper,-5.434423785621074 +karman_re400,sr,126,50.4,alpha,lower,1.4279935754001585 +karman_re400,sr,127,50.8,alpha,front,1.3480341581608861 +karman_re400,sr,127,50.8,alpha,upper,-4.979998430471114 +karman_re400,sr,127,50.8,alpha,lower,1.8824189305501182 +karman_re400,sr,128,51.2,alpha,front,0.6655528553669414 +karman_re400,sr,128,51.2,alpha,upper,-5.1614075672010715 +karman_re400,sr,128,51.2,alpha,lower,1.7010097938201605 +karman_re400,sr,129,51.6,alpha,front,0.28227181289156966 +karman_re400,sr,129,51.6,alpha,upper,-4.966011453128486 +karman_re400,sr,129,51.6,alpha,lower,1.896405907892746 +karman_re400,sr,130,52.0,alpha,front,-0.206869404427522 +karman_re400,sr,130,52.0,alpha,upper,-3.476193367118313 +karman_re400,sr,130,52.0,alpha,lower,3.3862239939029197 +karman_re400,sr,131,52.4,alpha,front,-1.0535147904558086 +karman_re400,sr,131,52.4,alpha,upper,-1.818351293924929 +karman_re400,sr,131,52.4,alpha,lower,5.044066067096304 +karman_re400,sr,132,52.8,alpha,front,-1.874298493537511 +karman_re400,sr,132,52.8,alpha,upper,-1.0049933597042222 +karman_re400,sr,132,52.8,alpha,lower,5.8574240013170105 +karman_re400,sr,133,53.2,alpha,front,-2.125120726071665 +karman_re400,sr,133,53.2,alpha,upper,-1.2533121061091324 +karman_re400,sr,133,53.2,alpha,lower,5.6091052549121 +karman_re400,sr,134,53.6,alpha,front,-1.5485871073650808 +karman_re400,sr,134,53.6,alpha,upper,-1.9415248753291723 +karman_re400,sr,134,53.6,alpha,lower,4.92089248569206 +karman_re400,sr,135,54.0,alpha,front,-0.7928590219755208 +karman_re400,sr,135,54.0,alpha,upper,-1.8652111925138726 +karman_re400,sr,135,54.0,alpha,lower,4.997206168507359 +karman_re400,sr,136,54.4,alpha,front,-0.35483086884674986 +karman_re400,sr,136,54.4,alpha,upper,-1.7472352840039846 +karman_re400,sr,136,54.4,alpha,lower,5.115182077017248 +karman_re400,sr,137,54.8,alpha,front,0.04517120874701366 +karman_re400,sr,137,54.8,alpha,upper,-2.953981923006558 +karman_re400,sr,137,54.8,alpha,lower,3.908435438014674 +karman_re400,sr,138,55.2,alpha,front,0.8267279935768979 +karman_re400,sr,138,55.2,alpha,upper,-4.735834168481587 +karman_re400,sr,138,55.2,alpha,lower,2.1265831925396457 +karman_re400,sr,139,55.6,alpha,front,1.7035511344426275 +karman_re400,sr,139,55.6,alpha,upper,-5.7921638230462005 +karman_re400,sr,139,55.6,alpha,lower,1.0702535379750318 +karman_re400,sr,140,56.0,alpha,front,2.143255205442865 +karman_re400,sr,140,56.0,alpha,upper,-5.770389699481049 +karman_re400,sr,140,56.0,alpha,lower,1.092027661540183 +karman_re400,sr,141,56.4,alpha,front,1.7326149369845971 +karman_re400,sr,141,56.4,alpha,upper,-5.030920856989553 +karman_re400,sr,141,56.4,alpha,lower,1.8314965040316786 +karman_re400,sr,142,56.8,alpha,front,0.9584752952313194 +karman_re400,sr,142,56.8,alpha,upper,-4.882904408795348 +karman_re400,sr,142,56.8,alpha,lower,1.9795129522258847 +karman_re400,sr,143,57.2,alpha,front,0.44518996124310917 +karman_re400,sr,143,57.2,alpha,upper,-5.072477119581199 +karman_re400,sr,143,57.2,alpha,lower,1.7899402414400327 +karman_re400,sr,144,57.6,alpha,front,0.07661339792413983 +karman_re400,sr,144,57.6,alpha,upper,-4.183373151150541 +karman_re400,sr,144,57.6,alpha,lower,2.679044209870691 +karman_re400,sr,145,58.0,alpha,front,-0.6274304045019311 +karman_re400,sr,145,58.0,alpha,upper,-2.443178563994975 +karman_re400,sr,145,58.0,alpha,lower,4.419238797026257 +karman_re400,sr,146,58.4,alpha,front,-1.531359272042789 +karman_re400,sr,146,58.4,alpha,upper,-1.1891665957380306 +karman_re400,sr,146,58.4,alpha,lower,5.673250765283202 +karman_re400,sr,147,58.8,alpha,front,-2.1221433638468024 +karman_re400,sr,147,58.8,alpha,upper,-0.950688487412675 +karman_re400,sr,147,58.8,alpha,lower,5.911728873608557 +karman_re400,sr,148,59.2,alpha,front,-1.9077388294068531 +karman_re400,sr,148,59.2,alpha,upper,-1.5610571225353267 +karman_re400,sr,148,59.2,alpha,lower,5.3013602384859055 +karman_re400,sr,149,59.6,alpha,front,-1.1665465302713471 +karman_re400,sr,149,59.6,alpha,upper,-1.8888394420117687 +karman_re400,sr,149,59.6,alpha,lower,4.973577919009464 +karman_re400,sr,150,60.0,alpha,front,-0.5913339945075755 +karman_re400,sr,150,60.0,alpha,upper,-1.828540651095419 +karman_re400,sr,150,60.0,alpha,lower,5.0338767099258135 +karman_re400,sr,151,60.4,alpha,front,-0.2110783895350576 +karman_re400,sr,151,60.4,alpha,upper,-2.494853541688481 +karman_re400,sr,151,60.4,alpha,lower,4.367563819332751 +karman_re400,sr,152,60.8,alpha,front,0.41792794169909436 +karman_re400,sr,152,60.8,alpha,upper,-4.092988755781955 +karman_re400,sr,152,60.8,alpha,lower,2.769428605239277 +karman_re400,sr,153,61.2,alpha,front,1.329251219615626 +karman_re400,sr,153,61.2,alpha,upper,-5.444659425526183 +karman_re400,sr,153,61.2,alpha,lower,1.4177579354950498 +karman_re400,sr,154,61.6,alpha,front,2.0459953868943903 +karman_re400,sr,154,61.6,alpha,upper,-5.874372693060645 +karman_re400,sr,154,61.6,alpha,lower,0.9880446679605881 +karman_re400,sr,155,62.0,alpha,front,2.025984305301292 +karman_re400,sr,155,62.0,alpha,upper,-5.440664038011052 +karman_re400,sr,155,62.0,alpha,lower,1.4217533230101806 +karman_re400,sr,156,62.4,alpha,front,1.3463489635048473 +karman_re400,sr,156,62.4,alpha,upper,-5.050059681229431 +karman_re400,sr,156,62.4,alpha,lower,1.812357679791801 +karman_re400,sr,157,62.8,alpha,front,0.7063821182358533 +karman_re400,sr,157,62.8,alpha,upper,-5.099852291387325 +karman_re400,sr,157,62.8,alpha,lower,1.7625650696339068 +karman_re400,sr,158,63.2,alpha,front,0.3090105626784576 +karman_re400,sr,158,63.2,alpha,upper,-4.705218291777123 +karman_re400,sr,158,63.2,alpha,lower,2.1571990692441094 +karman_re400,sr,159,63.6,alpha,front,-0.23026047124087953 +karman_re400,sr,159,63.6,alpha,upper,-3.233063158857505 +karman_re400,sr,159,63.6,alpha,lower,3.629354202163728 +karman_re400,sr,160,64.0,alpha,front,-1.0991586351431077 +karman_re400,sr,160,64.0,alpha,upper,-1.7046866830431124 +karman_re400,sr,160,64.0,alpha,lower,5.15773067797812 +karman_re400,sr,161,64.4,alpha,front,-1.9123014423233031 +karman_re400,sr,161,64.4,alpha,upper,-1.0182430865784577 +karman_re400,sr,161,64.4,alpha,lower,5.844174274442775 +karman_re400,sr,162,64.8,alpha,front,-2.1108790441359244 +karman_re400,sr,162,64.8,alpha,upper,-1.2783015095177483 +karman_re400,sr,162,64.8,alpha,lower,5.584115851503483 +karman_re400,sr,163,65.2,alpha,front,-1.5280276881616 +karman_re400,sr,163,65.2,alpha,upper,-1.8121504732068798 +karman_re400,sr,163,65.2,alpha,lower,5.050266887814352 +karman_re400,sr,164,65.6,alpha,front,-0.8163991333893522 +karman_re400,sr,164,65.6,alpha,upper,-1.7661669016589407 +karman_re400,sr,164,65.6,alpha,lower,5.096250459362292 +karman_re400,sr,165,66.0,alpha,front,-0.3830464602601647 +karman_re400,sr,165,66.0,alpha,upper,-1.8437171251669162 +karman_re400,sr,165,66.0,alpha,lower,5.0187002358543165 +karman_re400,sr,166,66.4,alpha,front,0.060329849361712054 +karman_re400,sr,166,66.4,alpha,upper,-3.101559903188587 +karman_re400,sr,166,66.4,alpha,lower,3.7608574578326452 +karman_re400,sr,167,66.8,alpha,front,0.8642766879422991 +karman_re400,sr,167,66.8,alpha,upper,-4.800141592300935 +karman_re400,sr,167,66.8,alpha,lower,2.062275768720297 +karman_re400,sr,168,67.2,alpha,front,1.7400069275708165 +karman_re400,sr,168,67.2,alpha,upper,-5.767341890058902 +karman_re400,sr,168,67.2,alpha,lower,1.09507547096233 +karman_re400,sr,169,67.6,alpha,front,2.1497717650441515 +karman_re400,sr,169,67.6,alpha,upper,-5.729974976179442 +karman_re400,sr,169,67.6,alpha,lower,1.132442384841791 +karman_re400,sr,170,68.0,alpha,front,1.720339234081257 +karman_re400,sr,170,68.0,alpha,upper,-5.097380123476999 +karman_re400,sr,170,68.0,alpha,lower,1.7650372375442331 +karman_re400,sr,171,68.4,alpha,front,0.9602993724821176 +karman_re400,sr,171,68.4,alpha,upper,-5.020855123439164 +karman_re400,sr,171,68.4,alpha,lower,1.8415622375820684 +karman_re400,sr,172,68.8,alpha,front,0.4598977190477234 +karman_re400,sr,172,68.8,alpha,upper,-5.178320861787473 +karman_re400,sr,172,68.8,alpha,lower,1.6840964992337593 +karman_re400,sr,173,69.2,alpha,front,0.08494818787670486 +karman_re400,sr,173,69.2,alpha,upper,-4.224072117430877 +karman_re400,sr,173,69.2,alpha,lower,2.6383452435903547 +karman_re400,sr,174,69.6,alpha,front,-0.6241860884404349 +karman_re400,sr,174,69.6,alpha,upper,-2.479418249693129 +karman_re400,sr,174,69.6,alpha,lower,4.382999111328103 +karman_re400,sr,175,70.0,alpha,front,-1.5265173843433988 +karman_re400,sr,175,70.0,alpha,upper,-1.252718727957236 +karman_re400,sr,175,70.0,alpha,lower,5.609698633063996 +karman_re400,sr,176,70.4,alpha,front,-2.1081804238963238 +karman_re400,sr,176,70.4,alpha,upper,-1.0390500684604986 +karman_re400,sr,176,70.4,alpha,lower,5.823367292560734 +karman_re400,sr,177,70.8,alpha,front,-1.8873024864670143 +karman_re400,sr,177,70.8,alpha,upper,-1.6504274845028337 +karman_re400,sr,177,70.8,alpha,lower,5.211989876518398 +karman_re400,sr,178,71.2,alpha,front,-1.1268904434898155 +karman_re400,sr,178,71.2,alpha,upper,-1.9385608011176838 +karman_re400,sr,178,71.2,alpha,lower,4.923856559903548 +karman_re400,sr,179,71.6,alpha,front,-0.535898305292454 +karman_re400,sr,179,71.6,alpha,upper,-1.7117985428531306 +karman_re400,sr,179,71.6,alpha,lower,5.150618818168102 +karman_re400,sr,180,72.0,alpha,front,-0.17774143722767738 +karman_re400,sr,180,72.0,alpha,upper,-2.271456829909066 +karman_re400,sr,180,72.0,alpha,lower,4.590960531112167 +karman_re400,sr,181,72.4,alpha,front,0.42338874050131303 +karman_re400,sr,181,72.4,alpha,upper,-3.945001843280236 +karman_re400,sr,181,72.4,alpha,lower,2.9174155177409964 +karman_re400,sr,182,72.8,alpha,front,1.315324465507452 +karman_re400,sr,182,72.8,alpha,upper,-5.403416484868239 +karman_re400,sr,182,72.8,alpha,lower,1.4590008761529936 +karman_re400,sr,183,73.2,alpha,front,2.028612329848544 +karman_re400,sr,183,73.2,alpha,upper,-5.925841301521336 +karman_re400,sr,183,73.2,alpha,lower,0.9365760594998962 +karman_re400,sr,184,73.6,alpha,front,2.0306049043650427 +karman_re400,sr,184,73.6,alpha,upper,-5.430689499717361 +karman_re400,sr,184,73.6,alpha,lower,1.4317278613038713 +karman_re400,sr,185,74.0,alpha,front,1.3284995308914334 +karman_re400,sr,185,74.0,alpha,upper,-4.917121508541495 +karman_re400,sr,185,74.0,alpha,lower,1.945295852479737 +karman_re400,sr,186,74.4,alpha,front,0.6592714149410219 +karman_re400,sr,186,74.4,alpha,upper,-5.039839265908078 +karman_re400,sr,186,74.4,alpha,lower,1.8225780951131534 +karman_re400,sr,187,74.8,alpha,front,0.2776494815416182 +karman_re400,sr,187,74.8,alpha,upper,-4.775075228621432 +karman_re400,sr,187,74.8,alpha,lower,2.0873421323998 +karman_re400,sr,188,75.2,alpha,front,-0.2365832589866102 +karman_re400,sr,188,75.2,alpha,upper,-3.2889124129252765 +karman_re400,sr,188,75.2,alpha,lower,3.5735049480959553 +karman_re400,sr,189,75.6,alpha,front,-1.0996207483292506 +karman_re400,sr,189,75.6,alpha,upper,-1.6965829416013798 +karman_re400,sr,189,75.6,alpha,lower,5.165834419419852 +karman_re400,sr,190,76.0,alpha,front,-1.912076601703143 +karman_re400,sr,190,76.0,alpha,upper,-0.9622160093724131 +karman_re400,sr,190,76.0,alpha,lower,5.900201351648819 +karman_re400,sr,191,76.4,alpha,front,-2.1168201822448576 +karman_re400,sr,191,76.4,alpha,upper,-1.2465533043964196 +karman_re400,sr,191,76.4,alpha,lower,5.615864056624813 +karman_re400,sr,192,76.8,alpha,front,-1.527883255591027 +karman_re400,sr,192,76.8,alpha,upper,-1.855102982374803 +karman_re400,sr,192,76.8,alpha,lower,5.007314378646429 +karman_re400,sr,193,77.2,alpha,front,-0.8127131280527071 +karman_re400,sr,193,77.2,alpha,upper,-1.8474418195828624 +karman_re400,sr,193,77.2,alpha,lower,5.014975541438369 +karman_re400,sr,194,77.6,alpha,front,-0.38159485853614405 +karman_re400,sr,194,77.6,alpha,upper,-1.9440841278585839 +karman_re400,sr,194,77.6,alpha,lower,4.918333233162649 +karman_re400,sr,195,78.0,alpha,front,0.06613933649437113 +karman_re400,sr,195,78.0,alpha,upper,-3.2031346721096314 +karman_re400,sr,195,78.0,alpha,lower,3.6592826889116012 +karman_re400,sr,196,78.4,alpha,front,0.8769906613356871 +karman_re400,sr,196,78.4,alpha,upper,-4.872088103265779 +karman_re400,sr,196,78.4,alpha,lower,1.9903292577554539 +karman_re400,sr,197,78.8,alpha,front,1.7566841164927869 +karman_re400,sr,197,78.8,alpha,upper,-5.809441365798968 +karman_re400,sr,197,78.8,alpha,lower,1.0529759952222646 +karman_re400,sr,198,79.2,alpha,front,2.1482008998898725 +karman_re400,sr,198,79.2,alpha,upper,-5.730263634287458 +karman_re400,sr,198,79.2,alpha,lower,1.1321537267337742 +karman_re400,sr,199,79.6,alpha,front,1.7074438430784737 +karman_re400,sr,199,79.6,alpha,upper,-5.126005994838694 +karman_re400,sr,199,79.6,alpha,lower,1.736411366182538 +karman_re400,sr,0,0.0,omega,front,-0.03179288460081991 +karman_re400,sr,0,0.0,omega,upper,-0.011839364944802746 +karman_re400,sr,0,0.0,omega,lower,0.05678480866540958 +karman_re400,sr,1,0.4,omega,front,-0.036751645022886845 +karman_re400,sr,1,0.4,omega,upper,-0.01303908345920596 +karman_re400,sr,1,0.4,omega,lower,0.055585090151006364 +karman_re400,sr,2,0.8,omega,front,-0.033807116454937565 +karman_re400,sr,2,0.8,omega,upper,-0.016429575424828705 +karman_re400,sr,2,0.8,omega,lower,0.05219459818538362 +karman_re400,sr,3,1.2,omega,front,-0.02688769254530576 +karman_re400,sr,3,1.2,omega,upper,-0.015524071991513417 +karman_re400,sr,3,1.2,omega,lower,0.0531001016186989 +karman_re400,sr,4,1.6,omega,front,-0.020183678292933653 +karman_re400,sr,4,1.6,omega,upper,-0.019743472509574173 +karman_re400,sr,4,1.6,omega,lower,0.04888070110063815 +karman_re400,sr,5,2.0,omega,front,-0.009859173282408481 +karman_re400,sr,5,2.0,omega,upper,-0.03222770122271635 +karman_re400,sr,5,2.0,omega,lower,0.03639647238749598 +karman_re400,sr,6,2.4,omega,front,0.00012060663540467036 +karman_re400,sr,6,2.4,omega,upper,-0.03916230729389507 +karman_re400,sr,6,2.4,omega,lower,0.029461866316317257 +karman_re400,sr,7,2.8,omega,front,0.008513977026680213 +karman_re400,sr,7,2.8,omega,upper,-0.04566123449664031 +karman_re400,sr,7,2.8,omega,lower,0.022962939113572018 +karman_re400,sr,8,3.2,omega,front,0.017547991227074587 +karman_re400,sr,8,3.2,omega,upper,-0.05754576685562707 +karman_re400,sr,8,3.2,omega,lower,0.01107840675458526 +karman_re400,sr,9,3.6,omega,front,0.02508352860772673 +karman_re400,sr,9,3.6,omega,upper,-0.06738444857616925 +karman_re400,sr,9,3.6,omega,lower,0.0012397250340430777 +karman_re400,sr,10,4.0,omega,front,0.025118027257384018 +karman_re400,sr,10,4.0,omega,upper,-0.06402351970728423 +karman_re400,sr,10,4.0,omega,lower,0.004600653902928098 +karman_re400,sr,11,4.4,omega,front,0.019137254773174576 +karman_re400,sr,11,4.4,omega,upper,-0.053411937633026214 +karman_re400,sr,11,4.4,omega,lower,0.015212235977186104 +karman_re400,sr,12,4.8,omega,front,0.01344585802788579 +karman_re400,sr,12,4.8,omega,upper,-0.038189623862297316 +karman_re400,sr,12,4.8,omega,lower,0.030434549747915006 +karman_re400,sr,13,5.2,omega,front,0.004352449207329041 +karman_re400,sr,13,5.2,omega,upper,-0.020882871223135452 +karman_re400,sr,13,5.2,omega,lower,0.04774130238707687 +karman_re400,sr,14,5.6,omega,front,-0.00892018797044117 +karman_re400,sr,14,5.6,omega,upper,-0.017737557476780397 +karman_re400,sr,14,5.6,omega,lower,0.05088661613343193 +karman_re400,sr,15,6.0,omega,front,-0.018568024833839066 +karman_re400,sr,15,6.0,omega,upper,-0.025449637366635296 +karman_re400,sr,15,6.0,omega,lower,0.043174536243577026 +karman_re400,sr,16,6.4,omega,front,-0.021542500183282347 +karman_re400,sr,16,6.4,omega,upper,-0.021781895073604122 +karman_re400,sr,16,6.4,omega,lower,0.0468422785366082 +karman_re400,sr,17,6.8,omega,front,-0.021875525371981737 +karman_re400,sr,17,6.8,omega,upper,-0.007061394240687107 +karman_re400,sr,17,6.8,omega,lower,0.06156277936952522 +karman_re400,sr,18,7.2,omega,front,-0.020928867773449714 +karman_re400,sr,18,7.2,omega,upper,-0.009687087614839869 +karman_re400,sr,18,7.2,omega,lower,0.05893708599537245 +karman_re400,sr,19,7.6,omega,front,-0.0142078097673531 +karman_re400,sr,19,7.6,omega,upper,-0.024514366827159947 +karman_re400,sr,19,7.6,omega,lower,0.044109806783052374 +karman_re400,sr,20,8.0,omega,front,-0.005118108441639345 +karman_re400,sr,20,8.0,omega,upper,-0.03380464838359637 +karman_re400,sr,20,8.0,omega,lower,0.03481952522661596 +karman_re400,sr,21,8.4,omega,front,0.0025654180450865685 +karman_re400,sr,21,8.4,omega,upper,-0.03836046805137552 +karman_re400,sr,21,8.4,omega,lower,0.030263705558836805 +karman_re400,sr,22,8.8,omega,front,0.010822931466417338 +karman_re400,sr,22,8.8,omega,upper,-0.045201470336704574 +karman_re400,sr,22,8.8,omega,lower,0.02342270327350775 +karman_re400,sr,23,9.2,omega,front,0.018807326470979175 +karman_re400,sr,23,9.2,omega,upper,-0.053030121819463684 +karman_re400,sr,23,9.2,omega,lower,0.015594051790748638 +karman_re400,sr,24,9.6,omega,front,0.02279730265094046 +karman_re400,sr,24,9.6,omega,upper,-0.0559561482736868 +karman_re400,sr,24,9.6,omega,lower,0.01266802533652553 +karman_re400,sr,25,10.0,omega,front,0.019793368917874764 +karman_re400,sr,25,10.0,omega,upper,-0.05317126741300873 +karman_re400,sr,25,10.0,omega,lower,0.015452906197203591 +karman_re400,sr,26,10.4,omega,front,0.013283811610072811 +karman_re400,sr,26,10.4,omega,upper,-0.048643489906050066 +karman_re400,sr,26,10.4,omega,lower,0.01998068370416226 +karman_re400,sr,27,10.8,omega,front,0.007121690447168301 +karman_re400,sr,27,10.8,omega,upper,-0.045415104740887856 +karman_re400,sr,27,10.8,omega,lower,0.023209068869324466 +karman_re400,sr,28,11.2,omega,front,0.001524424926912183 +karman_re400,sr,28,11.2,omega,upper,-0.03776795465583626 +karman_re400,sr,28,11.2,omega,lower,0.030856218954376062 +karman_re400,sr,29,11.6,omega,front,-0.006317985462658731 +karman_re400,sr,29,11.6,omega,upper,-0.023793787277980566 +karman_re400,sr,29,11.6,omega,lower,0.044830386332231756 +karman_re400,sr,30,12.0,omega,front,-0.01571507797078309 +karman_re400,sr,30,12.0,omega,upper,-0.014664685344853934 +karman_re400,sr,30,12.0,omega,lower,0.05395948826535839 +karman_re400,sr,31,12.4,omega,front,-0.02100056058501743 +karman_re400,sr,31,12.4,omega,upper,-0.01494396206436031 +karman_re400,sr,31,12.4,omega,lower,0.053680211545852015 +karman_re400,sr,32,12.8,omega,front,-0.01831453124254651 +karman_re400,sr,32,12.8,omega,upper,-0.019973628632049652 +karman_re400,sr,32,12.8,omega,lower,0.04865054497816267 +karman_re400,sr,33,13.2,omega,front,-0.011047394688222228 +karman_re400,sr,33,13.2,omega,upper,-0.021746507051121286 +karman_re400,sr,33,13.2,omega,lower,0.046877666559091036 +karman_re400,sr,34,13.6,omega,front,-0.004877962542178474 +karman_re400,sr,34,13.6,omega,upper,-0.019720670650482563 +karman_re400,sr,34,13.6,omega,lower,0.048903502959729755 +karman_re400,sr,35,14.0,omega,front,-0.0005803316392050748 +karman_re400,sr,35,14.0,omega,upper,-0.024353208518267416 +karman_re400,sr,35,14.0,omega,lower,0.044270965091944905 +karman_re400,sr,36,14.4,omega,front,0.0058827013035968245 +karman_re400,sr,36,14.4,omega,upper,-0.0407325160540046 +karman_re400,sr,36,14.4,omega,lower,0.02789165755620772 +karman_re400,sr,37,14.8,omega,front,0.01481302441786974 +karman_re400,sr,37,14.8,omega,upper,-0.05569006213354676 +karman_re400,sr,37,14.8,omega,lower,0.012934111476665566 +karman_re400,sr,38,15.2,omega,front,0.02172861440420952 +karman_re400,sr,38,15.2,omega,upper,-0.0621066266218587 +karman_re400,sr,38,15.2,omega,lower,0.006517546988353625 +karman_re400,sr,39,15.6,omega,front,0.021485387824174036 +karman_re400,sr,39,15.6,omega,upper,-0.057821516800306325 +karman_re400,sr,39,15.6,omega,lower,0.010802656809905997 +karman_re400,sr,40,16.0,omega,front,0.014450406758132283 +karman_re400,sr,40,16.0,omega,upper,-0.05232223805067857 +karman_re400,sr,40,16.0,omega,lower,0.016301935559533753 +karman_re400,sr,41,16.4,omega,front,0.00814600719226716 +karman_re400,sr,41,16.4,omega,upper,-0.04968398667861453 +karman_re400,sr,41,16.4,omega,lower,0.018940186931597793 +karman_re400,sr,42,16.8,omega,front,0.003796508185581351 +karman_re400,sr,42,16.8,omega,upper,-0.04185217761718439 +karman_re400,sr,42,16.8,omega,lower,0.026771995993027934 +karman_re400,sr,43,17.2,omega,front,-0.0027707845771135038 +karman_re400,sr,43,17.2,omega,upper,-0.02702323511908895 +karman_re400,sr,43,17.2,omega,lower,0.04160093849112337 +karman_re400,sr,44,17.6,omega,front,-0.012803116216909905 +karman_re400,sr,44,17.6,omega,upper,-0.015084110447669328 +karman_re400,sr,44,17.6,omega,lower,0.05354006316254299 +karman_re400,sr,45,18.0,omega,front,-0.021160500232011572 +karman_re400,sr,45,18.0,omega,upper,-0.012834320419977395 +karman_re400,sr,45,18.0,omega,lower,0.05578985319023493 +karman_re400,sr,46,18.4,omega,front,-0.02207198385982931 +karman_re400,sr,46,18.4,omega,upper,-0.014244182341508602 +karman_re400,sr,46,18.4,omega,lower,0.054379991268703715 +karman_re400,sr,47,18.8,omega,front,-0.01631137891614504 +karman_re400,sr,47,18.8,omega,upper,-0.013771889871599918 +karman_re400,sr,47,18.8,omega,lower,0.0548522837386124 +karman_re400,sr,48,19.2,omega,front,-0.010391082964383076 +karman_re400,sr,48,19.2,omega,upper,-0.012992986464509039 +karman_re400,sr,48,19.2,omega,lower,0.05563118714570329 +karman_re400,sr,49,19.6,omega,front,-0.006181869530842495 +karman_re400,sr,49,19.6,omega,upper,-0.01787409915619758 +karman_re400,sr,49,19.6,omega,lower,0.05075007445401474 +karman_re400,sr,50,20.0,omega,front,-0.0010317882335386327 +karman_re400,sr,50,20.0,omega,upper,-0.032314807156218886 +karman_re400,sr,50,20.0,omega,lower,0.03630936645399344 +karman_re400,sr,51,20.4,omega,front,0.007574953530879304 +karman_re400,sr,51,20.4,omega,upper,-0.048393514420440806 +karman_re400,sr,51,20.4,omega,lower,0.020230659189771516 +karman_re400,sr,52,20.8,omega,front,0.016790608227697026 +karman_re400,sr,52,20.8,omega,upper,-0.054667283731557714 +karman_re400,sr,52,20.8,omega,lower,0.013956889878654608 +karman_re400,sr,53,21.2,omega,front,0.020591231664844396 +karman_re400,sr,53,21.2,omega,upper,-0.05170478221957159 +karman_re400,sr,53,21.2,omega,lower,0.016919391390640737 +karman_re400,sr,54,21.6,omega,front,0.015890418578660914 +karman_re400,sr,54,21.6,omega,upper,-0.046942835389859314 +karman_re400,sr,54,21.6,omega,lower,0.02168133822035301 +karman_re400,sr,55,22.0,omega,front,0.00810152369212316 +karman_re400,sr,55,22.0,omega,upper,-0.049026199402679084 +karman_re400,sr,55,22.0,omega,lower,0.019597974207533238 +karman_re400,sr,56,22.4,omega,front,0.0027466708201995794 +karman_re400,sr,56,22.4,omega,upper,-0.0541690500933869 +karman_re400,sr,56,22.4,omega,lower,0.014455123516825423 +karman_re400,sr,57,22.8,omega,front,-0.0008805226541497581 +karman_re400,sr,57,22.8,omega,upper,-0.046121044330327314 +karman_re400,sr,57,22.8,omega,lower,0.02250312927988501 +karman_re400,sr,58,23.2,omega,front,-0.007715829898949889 +karman_re400,sr,58,23.2,omega,upper,-0.026911188272477068 +karman_re400,sr,58,23.2,omega,lower,0.04171298533773526 +karman_re400,sr,59,23.6,omega,front,-0.016124810929195352 +karman_re400,sr,59,23.6,omega,upper,-0.012203294156139348 +karman_re400,sr,59,23.6,omega,lower,0.056420879454072974 +karman_re400,sr,60,24.0,omega,front,-0.022000410483741108 +karman_re400,sr,60,24.0,omega,upper,-0.006898283759542441 +karman_re400,sr,60,24.0,omega,lower,0.06172588985066988 +karman_re400,sr,61,24.4,omega,front,-0.020446163289042293 +karman_re400,sr,61,24.4,omega,upper,-0.013560718805068381 +karman_re400,sr,61,24.4,omega,lower,0.05506345480514394 +karman_re400,sr,62,24.8,omega,front,-0.012504909356474664 +karman_re400,sr,62,24.8,omega,upper,-0.018695897828021463 +karman_re400,sr,62,24.8,omega,lower,0.04992827578219086 +karman_re400,sr,63,25.2,omega,front,-0.006540705215061539 +karman_re400,sr,63,25.2,omega,upper,-0.017746678524908716 +karman_re400,sr,63,25.2,omega,lower,0.050877495085303606 +karman_re400,sr,64,25.6,omega,front,-0.0031308188341092505 +karman_re400,sr,64,25.6,omega,upper,-0.02493872469511234 +karman_re400,sr,64,25.6,omega,lower,0.043685448915099984 +karman_re400,sr,65,26.0,omega,front,0.0031273529852131787 +karman_re400,sr,65,26.0,omega,upper,-0.042115036145568115 +karman_re400,sr,65,26.0,omega,lower,0.02650913746464421 +karman_re400,sr,66,26.4,omega,front,0.012976469045450334 +karman_re400,sr,66,26.4,omega,upper,-0.05596607622475419 +karman_re400,sr,66,26.4,omega,lower,0.012658097385458134 +karman_re400,sr,67,26.8,omega,front,0.020795436142935483 +karman_re400,sr,67,26.8,omega,upper,-0.057738778038654244 +karman_re400,sr,67,26.8,omega,lower,0.010885395571558076 +karman_re400,sr,68,27.2,omega,front,0.020376108386336685 +karman_re400,sr,68,27.2,omega,upper,-0.052038270636916927 +karman_re400,sr,68,27.2,omega,lower,0.016585902973295402 +karman_re400,sr,69,27.6,omega,front,0.013300183150726775 +karman_re400,sr,69,27.6,omega,upper,-0.049934720348494846 +karman_re400,sr,69,27.6,omega,lower,0.018689453261717476 +karman_re400,sr,70,28.0,omega,front,0.007115841993655454 +karman_re400,sr,70,28.0,omega,upper,-0.05206609660864807 +karman_re400,sr,70,28.0,omega,lower,0.016558077001564257 +karman_re400,sr,71,28.4,omega,front,0.003292883566842416 +karman_re400,sr,71,28.4,omega,upper,-0.048389160189486545 +karman_re400,sr,71,28.4,omega,lower,0.02023501342072578 +karman_re400,sr,72,28.8,omega,front,-0.0021033586937090885 +karman_re400,sr,72,28.8,omega,upper,-0.032941365765953676 +karman_re400,sr,72,28.8,omega,lower,0.035682807844258646 +karman_re400,sr,73,29.2,omega,front,-0.010820986754892254 +karman_re400,sr,73,29.2,omega,upper,-0.01711805698407496 +karman_re400,sr,73,29.2,omega,lower,0.05150611662613736 +karman_re400,sr,74,29.6,omega,front,-0.018953193155302306 +karman_re400,sr,74,29.6,omega,upper,-0.009986518638322658 +karman_re400,sr,74,29.6,omega,lower,0.05863765497188966 +karman_re400,sr,75,30.0,omega,front,-0.021161806474319058 +karman_re400,sr,75,30.0,omega,upper,-0.012362060682923786 +karman_re400,sr,75,30.0,omega,lower,0.05626211292728854 +karman_re400,sr,76,30.4,omega,front,-0.015388010792119109 +karman_re400,sr,76,30.4,omega,upper,-0.01792007892159958 +karman_re400,sr,76,30.4,omega,lower,0.05070409468861274 +karman_re400,sr,77,30.8,omega,front,-0.008051082403942787 +karman_re400,sr,77,30.8,omega,upper,-0.017290067376268887 +karman_re400,sr,77,30.8,omega,lower,0.05133410623394344 +karman_re400,sr,78,31.2,omega,front,-0.0036764478897957703 +karman_re400,sr,78,31.2,omega,upper,-0.01768027802531457 +karman_re400,sr,78,31.2,omega,lower,0.05094389558489775 +karman_re400,sr,79,31.6,omega,front,0.0006837751131556093 +karman_re400,sr,79,31.6,omega,upper,-0.03015768764739236 +karman_re400,sr,79,31.6,omega,lower,0.038466485962819964 +karman_re400,sr,80,32.0,omega,front,0.008698080158371568 +karman_re400,sr,80,32.0,omega,upper,-0.04735613868754635 +karman_re400,sr,80,32.0,omega,lower,0.02126803492266597 +karman_re400,sr,81,32.4,omega,front,0.01759690693790332 +karman_re400,sr,81,32.4,omega,upper,-0.0575172557776269 +karman_re400,sr,81,32.4,omega,lower,0.01110691783258543 +karman_re400,sr,82,32.8,omega,front,0.021993857072300418 +karman_re400,sr,82,32.8,omega,upper,-0.058012642418635296 +karman_re400,sr,82,32.8,omega,lower,0.01061153119157702 +karman_re400,sr,83,33.2,omega,front,0.01793914775044166 +karman_re400,sr,83,33.2,omega,upper,-0.051967613343704554 +karman_re400,sr,83,33.2,omega,lower,0.016656560266507775 +karman_re400,sr,84,33.6,omega,front,0.010220183447151287 +karman_re400,sr,84,33.6,omega,upper,-0.05142372117884898 +karman_re400,sr,84,33.6,omega,lower,0.017200452431363335 +karman_re400,sr,85,34.0,omega,front,0.005204628346591616 +karman_re400,sr,85,34.0,omega,upper,-0.05321504418114122 +karman_re400,sr,85,34.0,omega,lower,0.015409129429071107 +karman_re400,sr,86,34.4,omega,front,0.0016877192151620308 +karman_re400,sr,86,34.4,omega,upper,-0.04356309198036842 +karman_re400,sr,86,34.4,omega,lower,0.0250610816298439 +karman_re400,sr,87,34.8,omega,front,-0.005276474337491783 +karman_re400,sr,87,34.8,omega,upper,-0.025589545201520965 +karman_re400,sr,87,34.8,omega,lower,0.04303462840869136 +karman_re400,sr,88,35.2,omega,front,-0.014463959799069075 +karman_re400,sr,88,35.2,omega,upper,-0.013235896220797056 +karman_re400,sr,88,35.2,omega,lower,0.055388277389415264 +karman_re400,sr,89,35.6,omega,front,-0.02066067473821631 +karman_re400,sr,89,35.6,omega,upper,-0.011704338872698488 +karman_re400,sr,89,35.6,omega,lower,0.05691983473751384 +karman_re400,sr,90,36.0,omega,front,-0.01879183981846893 +karman_re400,sr,90,36.0,omega,upper,-0.017910622932628625 +karman_re400,sr,90,36.0,omega,lower,0.0507135506775837 +karman_re400,sr,91,36.4,omega,front,-0.01104992592119129 +karman_re400,sr,91,36.4,omega,upper,-0.020675958472680517 +karman_re400,sr,91,36.4,omega,lower,0.047948215137531815 +karman_re400,sr,92,36.8,omega,front,-0.00473161678394311 +karman_re400,sr,92,36.8,omega,upper,-0.01645976425195881 +karman_re400,sr,92,36.8,omega,lower,0.05216440935825352 +karman_re400,sr,93,37.2,omega,front,-0.0012571672846024018 +karman_re400,sr,93,37.2,omega,upper,-0.020010522365865972 +karman_re400,sr,93,37.2,omega,lower,0.048613651244346356 +karman_re400,sr,94,37.6,omega,front,0.004312599825989873 +karman_re400,sr,94,37.6,omega,upper,-0.037071664407581466 +karman_re400,sr,94,37.6,omega,lower,0.031552509202630856 +karman_re400,sr,95,38.0,omega,front,0.013029375854886137 +karman_re400,sr,95,38.0,omega,upper,-0.053337314335745366 +karman_re400,sr,95,38.0,omega,lower,0.015286859274466956 +karman_re400,sr,96,38.4,omega,front,0.020294135687568007 +karman_re400,sr,96,38.4,omega,upper,-0.06027689503966641 +karman_re400,sr,96,38.4,omega,lower,0.008347278570545914 +karman_re400,sr,97,38.8,omega,front,0.021013210089891765 +karman_re400,sr,97,38.8,omega,upper,-0.05546743228405115 +karman_re400,sr,97,38.8,omega,lower,0.013156741326161181 +karman_re400,sr,98,39.2,omega,front,0.013957693225343595 +karman_re400,sr,98,39.2,omega,upper,-0.048432072201261674 +karman_re400,sr,98,39.2,omega,lower,0.020192101408950648 +karman_re400,sr,99,39.6,omega,front,0.006917697978153295 +karman_re400,sr,99,39.6,omega,upper,-0.04959651078772672 +karman_re400,sr,99,39.6,omega,lower,0.0190276628224856 +karman_re400,sr,100,40.0,omega,front,0.003174796925705785 +karman_re400,sr,100,40.0,omega,upper,-0.04777268482157346 +karman_re400,sr,100,40.0,omega,lower,0.020851488788638867 +karman_re400,sr,101,40.4,omega,front,-0.0016789711212856155 +karman_re400,sr,101,40.4,omega,upper,-0.033012516335679754 +karman_re400,sr,101,40.4,omega,lower,0.035611657274532575 +karman_re400,sr,102,40.8,omega,front,-0.01035469643495304 +karman_re400,sr,102,40.8,omega,upper,-0.016702302528403178 +karman_re400,sr,102,40.8,omega,lower,0.051921871081809144 +karman_re400,sr,103,41.2,omega,front,-0.01883503639022127 +karman_re400,sr,103,41.2,omega,upper,-0.009461705921830328 +karman_re400,sr,103,41.2,omega,lower,0.059162467688381994 +karman_re400,sr,104,41.6,omega,front,-0.02118135393313259 +karman_re400,sr,104,41.6,omega,upper,-0.0127601241722709 +karman_re400,sr,104,41.6,omega,lower,0.055864049437941425 +karman_re400,sr,105,42.0,omega,front,-0.015453799317417293 +karman_re400,sr,105,42.0,omega,upper,-0.01868982778647788 +karman_re400,sr,105,42.0,omega,lower,0.04993434582373445 +karman_re400,sr,106,42.4,omega,front,-0.008364628731529697 +karman_re400,sr,106,42.4,omega,upper,-0.018788103997082313 +karman_re400,sr,106,42.4,omega,lower,0.04983606961313001 +karman_re400,sr,107,42.8,omega,front,-0.0039300958259157045 +karman_re400,sr,107,42.8,omega,upper,-0.019975944291238966 +karman_re400,sr,107,42.8,omega,lower,0.048648229318973356 +karman_re400,sr,108,43.2,omega,front,0.0006039729266779882 +karman_re400,sr,108,43.2,omega,upper,-0.032010857476277264 +karman_re400,sr,108,43.2,omega,lower,0.03661331613393506 +karman_re400,sr,109,43.6,omega,front,0.008644809714520458 +karman_re400,sr,109,43.6,omega,upper,-0.0486707860622665 +karman_re400,sr,109,43.6,omega,lower,0.01995338754794583 +karman_re400,sr,110,44.0,omega,front,0.017515878179021015 +karman_re400,sr,110,44.0,omega,upper,-0.05830356594471515 +karman_re400,sr,110,44.0,omega,lower,0.010320607665497175 +karman_re400,sr,111,44.4,omega,front,0.021668747481105408 +karman_re400,sr,111,44.4,omega,upper,-0.05818296973309499 +karman_re400,sr,111,44.4,omega,lower,0.010441203877117338 +karman_re400,sr,112,44.8,omega,front,0.017536535188999204 +karman_re400,sr,112,44.8,omega,upper,-0.052393965632128996 +karman_re400,sr,112,44.8,omega,lower,0.016230207978083323 +karman_re400,sr,113,45.2,omega,front,0.010255998773070589 +karman_re400,sr,113,45.2,omega,upper,-0.050947079045361165 +karman_re400,sr,113,45.2,omega,lower,0.017677094564851156 +karman_re400,sr,114,45.6,omega,front,0.00526618157434693 +karman_re400,sr,114,45.6,omega,upper,-0.050200486772376006 +karman_re400,sr,114,45.6,omega,lower,0.018423686837836323 +karman_re400,sr,115,46.0,omega,front,0.0011627824256750534 +karman_re400,sr,115,46.0,omega,upper,-0.03997150610020234 +karman_re400,sr,115,46.0,omega,lower,0.02865266751000998 +karman_re400,sr,116,46.4,omega,front,-0.0062721748522981844 +karman_re400,sr,116,46.4,omega,upper,-0.02352191884092994 +karman_re400,sr,116,46.4,omega,lower,0.04510225476928238 +karman_re400,sr,117,46.8,omega,front,-0.015545541749610153 +karman_re400,sr,117,46.8,omega,upper,-0.012567611594361733 +karman_re400,sr,117,46.8,omega,lower,0.056056562015850596 +karman_re400,sr,118,47.2,omega,front,-0.02129212168241444 +karman_re400,sr,118,47.2,omega,upper,-0.011347881125840224 +karman_re400,sr,118,47.2,omega,lower,0.0572762924843721 +karman_re400,sr,119,47.6,omega,front,-0.01888629152685495 +karman_re400,sr,119,47.6,omega,upper,-0.01619977251269637 +karman_re400,sr,119,47.6,omega,lower,0.052424401097515956 +karman_re400,sr,120,48.0,omega,front,-0.011594612535484905 +karman_re400,sr,120,48.0,omega,upper,-0.017873656120810277 +karman_re400,sr,120,48.0,omega,lower,0.05075051748940204 +karman_re400,sr,121,48.4,omega,front,-0.005879862712967206 +karman_re400,sr,121,48.4,omega,upper,-0.016390531979786013 +karman_re400,sr,121,48.4,omega,lower,0.05223364163042631 +karman_re400,sr,122,48.8,omega,front,-0.002130318587485371 +karman_re400,sr,122,48.8,omega,upper,-0.022875757057150704 +karman_re400,sr,122,48.8,omega,lower,0.045748416553061624 +karman_re400,sr,123,49.2,omega,front,0.0040471899926274695 +karman_re400,sr,123,49.2,omega,upper,-0.03941615591361189 +karman_re400,sr,123,49.2,omega,lower,0.029208017696600433 +karman_re400,sr,124,49.6,omega,front,0.012987137874956317 +karman_re400,sr,124,49.6,omega,upper,-0.053535928165594826 +karman_re400,sr,124,49.6,omega,lower,0.015088245444617503 +karman_re400,sr,125,50.0,omega,front,0.020153631611874997 +karman_re400,sr,125,50.0,omega,upper,-0.0585383313099228 +karman_re400,sr,125,50.0,omega,lower,0.010085842300289518 +karman_re400,sr,126,50.4,omega,front,0.02038264048587025 +karman_re400,sr,126,50.4,omega,upper,-0.05434423785621074 +karman_re400,sr,126,50.4,omega,lower,0.014279935754001586 +karman_re400,sr,127,50.8,omega,front,0.013480341581608862 +karman_re400,sr,127,50.8,omega,upper,-0.049799984304711144 +karman_re400,sr,127,50.8,omega,lower,0.01882418930550118 +karman_re400,sr,128,51.2,omega,front,0.006655528553669414 +karman_re400,sr,128,51.2,omega,upper,-0.05161407567201071 +karman_re400,sr,128,51.2,omega,lower,0.017010097938201605 +karman_re400,sr,129,51.6,omega,front,0.002822718128915697 +karman_re400,sr,129,51.6,omega,upper,-0.04966011453128486 +karman_re400,sr,129,51.6,omega,lower,0.01896405907892746 +karman_re400,sr,130,52.0,omega,front,-0.00206869404427522 +karman_re400,sr,130,52.0,omega,upper,-0.03476193367118313 +karman_re400,sr,130,52.0,omega,lower,0.0338622399390292 +karman_re400,sr,131,52.4,omega,front,-0.010535147904558086 +karman_re400,sr,131,52.4,omega,upper,-0.01818351293924929 +karman_re400,sr,131,52.4,omega,lower,0.05044066067096303 +karman_re400,sr,132,52.8,omega,front,-0.01874298493537511 +karman_re400,sr,132,52.8,omega,upper,-0.010049933597042222 +karman_re400,sr,132,52.8,omega,lower,0.058574240013170104 +karman_re400,sr,133,53.2,omega,front,-0.02125120726071665 +karman_re400,sr,133,53.2,omega,upper,-0.012533121061091324 +karman_re400,sr,133,53.2,omega,lower,0.056091052549121 +karman_re400,sr,134,53.6,omega,front,-0.015485871073650808 +karman_re400,sr,134,53.6,omega,upper,-0.019415248753291724 +karman_re400,sr,134,53.6,omega,lower,0.049208924856920605 +karman_re400,sr,135,54.0,omega,front,-0.007928590219755208 +karman_re400,sr,135,54.0,omega,upper,-0.018652111925138725 +karman_re400,sr,135,54.0,omega,lower,0.04997206168507359 +karman_re400,sr,136,54.4,omega,front,-0.0035483086884674987 +karman_re400,sr,136,54.4,omega,upper,-0.017472352840039847 +karman_re400,sr,136,54.4,omega,lower,0.051151820770172475 +karman_re400,sr,137,54.8,omega,front,0.00045171208747013655 +karman_re400,sr,137,54.8,omega,upper,-0.02953981923006558 +karman_re400,sr,137,54.8,omega,lower,0.03908435438014674 +karman_re400,sr,138,55.2,omega,front,0.008267279935768979 +karman_re400,sr,138,55.2,omega,upper,-0.04735834168481587 +karman_re400,sr,138,55.2,omega,lower,0.021265831925396456 +karman_re400,sr,139,55.6,omega,front,0.017035511344426275 +karman_re400,sr,139,55.6,omega,upper,-0.05792163823046201 +karman_re400,sr,139,55.6,omega,lower,0.010702535379750317 +karman_re400,sr,140,56.0,omega,front,0.02143255205442865 +karman_re400,sr,140,56.0,omega,upper,-0.05770389699481049 +karman_re400,sr,140,56.0,omega,lower,0.01092027661540183 +karman_re400,sr,141,56.4,omega,front,0.017326149369845972 +karman_re400,sr,141,56.4,omega,upper,-0.050309208569895535 +karman_re400,sr,141,56.4,omega,lower,0.018314965040316787 +karman_re400,sr,142,56.8,omega,front,0.009584752952313194 +karman_re400,sr,142,56.8,omega,upper,-0.04882904408795348 +karman_re400,sr,142,56.8,omega,lower,0.01979512952225885 +karman_re400,sr,143,57.2,omega,front,0.0044518996124310916 +karman_re400,sr,143,57.2,omega,upper,-0.05072477119581199 +karman_re400,sr,143,57.2,omega,lower,0.01789940241440033 +karman_re400,sr,144,57.6,omega,front,0.0007661339792413984 +karman_re400,sr,144,57.6,omega,upper,-0.04183373151150541 +karman_re400,sr,144,57.6,omega,lower,0.02679044209870691 +karman_re400,sr,145,58.0,omega,front,-0.006274304045019311 +karman_re400,sr,145,58.0,omega,upper,-0.024431785639949747 +karman_re400,sr,145,58.0,omega,lower,0.04419238797026258 +karman_re400,sr,146,58.4,omega,front,-0.015313592720427892 +karman_re400,sr,146,58.4,omega,upper,-0.011891665957380306 +karman_re400,sr,146,58.4,omega,lower,0.05673250765283202 +karman_re400,sr,147,58.8,omega,front,-0.021221433638468023 +karman_re400,sr,147,58.8,omega,upper,-0.00950688487412675 +karman_re400,sr,147,58.8,omega,lower,0.05911728873608557 +karman_re400,sr,148,59.2,omega,front,-0.01907738829406853 +karman_re400,sr,148,59.2,omega,upper,-0.015610571225353267 +karman_re400,sr,148,59.2,omega,lower,0.053013602384859054 +karman_re400,sr,149,59.6,omega,front,-0.011665465302713472 +karman_re400,sr,149,59.6,omega,upper,-0.018888394420117686 +karman_re400,sr,149,59.6,omega,lower,0.04973577919009464 +karman_re400,sr,150,60.0,omega,front,-0.005913339945075756 +karman_re400,sr,150,60.0,omega,upper,-0.01828540651095419 +karman_re400,sr,150,60.0,omega,lower,0.050338767099258136 +karman_re400,sr,151,60.4,omega,front,-0.002110783895350576 +karman_re400,sr,151,60.4,omega,upper,-0.024948535416884812 +karman_re400,sr,151,60.4,omega,lower,0.04367563819332751 +karman_re400,sr,152,60.8,omega,front,0.004179279416990944 +karman_re400,sr,152,60.8,omega,upper,-0.04092988755781955 +karman_re400,sr,152,60.8,omega,lower,0.02769428605239277 +karman_re400,sr,153,61.2,omega,front,0.01329251219615626 +karman_re400,sr,153,61.2,omega,upper,-0.054446594255261827 +karman_re400,sr,153,61.2,omega,lower,0.014177579354950499 +karman_re400,sr,154,61.6,omega,front,0.020459953868943902 +karman_re400,sr,154,61.6,omega,upper,-0.05874372693060645 +karman_re400,sr,154,61.6,omega,lower,0.009880446679605881 +karman_re400,sr,155,62.0,omega,front,0.02025984305301292 +karman_re400,sr,155,62.0,omega,upper,-0.05440664038011052 +karman_re400,sr,155,62.0,omega,lower,0.014217533230101807 +karman_re400,sr,156,62.4,omega,front,0.013463489635048474 +karman_re400,sr,156,62.4,omega,upper,-0.05050059681229431 +karman_re400,sr,156,62.4,omega,lower,0.018123576797918012 +karman_re400,sr,157,62.8,omega,front,0.007063821182358533 +karman_re400,sr,157,62.8,omega,upper,-0.05099852291387325 +karman_re400,sr,157,62.8,omega,lower,0.01762565069633907 +karman_re400,sr,158,63.2,omega,front,0.003090105626784576 +karman_re400,sr,158,63.2,omega,upper,-0.04705218291777123 +karman_re400,sr,158,63.2,omega,lower,0.021571990692441093 +karman_re400,sr,159,63.6,omega,front,-0.0023026047124087953 +karman_re400,sr,159,63.6,omega,upper,-0.03233063158857505 +karman_re400,sr,159,63.6,omega,lower,0.03629354202163728 +karman_re400,sr,160,64.0,omega,front,-0.010991586351431078 +karman_re400,sr,160,64.0,omega,upper,-0.017046866830431124 +karman_re400,sr,160,64.0,omega,lower,0.0515773067797812 +karman_re400,sr,161,64.4,omega,front,-0.019123014423233033 +karman_re400,sr,161,64.4,omega,upper,-0.010182430865784577 +karman_re400,sr,161,64.4,omega,lower,0.05844174274442775 +karman_re400,sr,162,64.8,omega,front,-0.021108790441359243 +karman_re400,sr,162,64.8,omega,upper,-0.012783015095177484 +karman_re400,sr,162,64.8,omega,lower,0.055841158515034836 +karman_re400,sr,163,65.2,omega,front,-0.015280276881616 +karman_re400,sr,163,65.2,omega,upper,-0.018121504732068798 +karman_re400,sr,163,65.2,omega,lower,0.050502668878143524 +karman_re400,sr,164,65.6,omega,front,-0.008163991333893523 +karman_re400,sr,164,65.6,omega,upper,-0.01766166901658941 +karman_re400,sr,164,65.6,omega,lower,0.05096250459362292 +karman_re400,sr,165,66.0,omega,front,-0.003830464602601647 +karman_re400,sr,165,66.0,omega,upper,-0.018437171251669163 +karman_re400,sr,165,66.0,omega,lower,0.05018700235854317 +karman_re400,sr,166,66.4,omega,front,0.0006032984936171205 +karman_re400,sr,166,66.4,omega,upper,-0.03101559903188587 +karman_re400,sr,166,66.4,omega,lower,0.037608574578326455 +karman_re400,sr,167,66.8,omega,front,0.00864276687942299 +karman_re400,sr,167,66.8,omega,upper,-0.048001415923009355 +karman_re400,sr,167,66.8,omega,lower,0.02062275768720297 +karman_re400,sr,168,67.2,omega,front,0.017400069275708165 +karman_re400,sr,168,67.2,omega,upper,-0.057673418900589024 +karman_re400,sr,168,67.2,omega,lower,0.010950754709623301 +karman_re400,sr,169,67.6,omega,front,0.021497717650441516 +karman_re400,sr,169,67.6,omega,upper,-0.057299749761794416 +karman_re400,sr,169,67.6,omega,lower,0.01132442384841791 +karman_re400,sr,170,68.0,omega,front,0.01720339234081257 +karman_re400,sr,170,68.0,omega,upper,-0.05097380123476999 +karman_re400,sr,170,68.0,omega,lower,0.01765037237544233 +karman_re400,sr,171,68.4,omega,front,0.009602993724821176 +karman_re400,sr,171,68.4,omega,upper,-0.05020855123439164 +karman_re400,sr,171,68.4,omega,lower,0.018415622375820683 +karman_re400,sr,172,68.8,omega,front,0.004598977190477234 +karman_re400,sr,172,68.8,omega,upper,-0.05178320861787473 +karman_re400,sr,172,68.8,omega,lower,0.016840964992337594 +karman_re400,sr,173,69.2,omega,front,0.0008494818787670486 +karman_re400,sr,173,69.2,omega,upper,-0.04224072117430877 +karman_re400,sr,173,69.2,omega,lower,0.026383452435903548 +karman_re400,sr,174,69.6,omega,front,-0.006241860884404349 +karman_re400,sr,174,69.6,omega,upper,-0.024794182496931293 +karman_re400,sr,174,69.6,omega,lower,0.04382999111328103 +karman_re400,sr,175,70.0,omega,front,-0.015265173843433988 +karman_re400,sr,175,70.0,omega,upper,-0.01252718727957236 +karman_re400,sr,175,70.0,omega,lower,0.05609698633063996 +karman_re400,sr,176,70.4,omega,front,-0.021081804238963237 +karman_re400,sr,176,70.4,omega,upper,-0.010390500684604986 +karman_re400,sr,176,70.4,omega,lower,0.05823367292560734 +karman_re400,sr,177,70.8,omega,front,-0.018873024864670143 +karman_re400,sr,177,70.8,omega,upper,-0.01650427484502834 +karman_re400,sr,177,70.8,omega,lower,0.05211989876518398 +karman_re400,sr,178,71.2,omega,front,-0.011268904434898155 +karman_re400,sr,178,71.2,omega,upper,-0.01938560801117684 +karman_re400,sr,178,71.2,omega,lower,0.049238565599035486 +karman_re400,sr,179,71.6,omega,front,-0.00535898305292454 +karman_re400,sr,179,71.6,omega,upper,-0.017117985428531306 +karman_re400,sr,179,71.6,omega,lower,0.05150618818168102 +karman_re400,sr,180,72.0,omega,front,-0.0017774143722767738 +karman_re400,sr,180,72.0,omega,upper,-0.02271456829909066 +karman_re400,sr,180,72.0,omega,lower,0.04590960531112167 +karman_re400,sr,181,72.4,omega,front,0.00423388740501313 +karman_re400,sr,181,72.4,omega,upper,-0.03945001843280236 +karman_re400,sr,181,72.4,omega,lower,0.029174155177409965 +karman_re400,sr,182,72.8,omega,front,0.01315324465507452 +karman_re400,sr,182,72.8,omega,upper,-0.05403416484868239 +karman_re400,sr,182,72.8,omega,lower,0.014590008761529936 +karman_re400,sr,183,73.2,omega,front,0.02028612329848544 +karman_re400,sr,183,73.2,omega,upper,-0.05925841301521336 +karman_re400,sr,183,73.2,omega,lower,0.009365760594998962 +karman_re400,sr,184,73.6,omega,front,0.020306049043650427 +karman_re400,sr,184,73.6,omega,upper,-0.05430689499717361 +karman_re400,sr,184,73.6,omega,lower,0.014317278613038713 +karman_re400,sr,185,74.0,omega,front,0.013284995308914334 +karman_re400,sr,185,74.0,omega,upper,-0.04917121508541495 +karman_re400,sr,185,74.0,omega,lower,0.01945295852479737 +karman_re400,sr,186,74.4,omega,front,0.00659271414941022 +karman_re400,sr,186,74.4,omega,upper,-0.05039839265908078 +karman_re400,sr,186,74.4,omega,lower,0.018225780951131535 +karman_re400,sr,187,74.8,omega,front,0.0027764948154161825 +karman_re400,sr,187,74.8,omega,upper,-0.047750752286214324 +karman_re400,sr,187,74.8,omega,lower,0.020873421323998 +karman_re400,sr,188,75.2,omega,front,-0.002365832589866102 +karman_re400,sr,188,75.2,omega,upper,-0.03288912412925277 +karman_re400,sr,188,75.2,omega,lower,0.035735049480959555 +karman_re400,sr,189,75.6,omega,front,-0.010996207483292506 +karman_re400,sr,189,75.6,omega,upper,-0.016965829416013798 +karman_re400,sr,189,75.6,omega,lower,0.05165834419419852 +karman_re400,sr,190,76.0,omega,front,-0.01912076601703143 +karman_re400,sr,190,76.0,omega,upper,-0.009622160093724132 +karman_re400,sr,190,76.0,omega,lower,0.0590020135164882 +karman_re400,sr,191,76.4,omega,front,-0.021168201822448576 +karman_re400,sr,191,76.4,omega,upper,-0.012465533043964196 +karman_re400,sr,191,76.4,omega,lower,0.05615864056624813 +karman_re400,sr,192,76.8,omega,front,-0.01527883255591027 +karman_re400,sr,192,76.8,omega,upper,-0.01855102982374803 +karman_re400,sr,192,76.8,omega,lower,0.05007314378646429 +karman_re400,sr,193,77.2,omega,front,-0.008127131280527071 +karman_re400,sr,193,77.2,omega,upper,-0.018474418195828624 +karman_re400,sr,193,77.2,omega,lower,0.0501497554143837 +karman_re400,sr,194,77.6,omega,front,-0.0038159485853614407 +karman_re400,sr,194,77.6,omega,upper,-0.01944084127858584 +karman_re400,sr,194,77.6,omega,lower,0.049183332331626486 +karman_re400,sr,195,78.0,omega,front,0.0006613933649437113 +karman_re400,sr,195,78.0,omega,upper,-0.03203134672109632 +karman_re400,sr,195,78.0,omega,lower,0.03659282688911601 +karman_re400,sr,196,78.4,omega,front,0.008769906613356871 +karman_re400,sr,196,78.4,omega,upper,-0.04872088103265779 +karman_re400,sr,196,78.4,omega,lower,0.01990329257755454 +karman_re400,sr,197,78.8,omega,front,0.01756684116492787 +karman_re400,sr,197,78.8,omega,upper,-0.058094413657989674 +karman_re400,sr,197,78.8,omega,lower,0.010529759952222646 +karman_re400,sr,198,79.2,omega,front,0.021482008998898725 +karman_re400,sr,198,79.2,omega,upper,-0.05730263634287458 +karman_re400,sr,198,79.2,omega,lower,0.011321537267337742 +karman_re400,sr,199,79.6,omega,front,0.01707443843078474 +karman_re400,sr,199,79.6,omega,upper,-0.05126005994838694 +karman_re400,sr,199,79.6,omega,lower,0.01736411366182538 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_manifest.json new file mode 100644 index 0000000..191af4e --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re400", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re400__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_wide.csv new file mode 100644 index 0000000..24b22e5 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re400,sr,0,0.0,0.9741191864013672,-0.23163685202598572,0.9583567976951599,-0.2649235427379608,1.2946528196334839,-0.006273637525737286,0.0008178300922736526,-0.004863977897912264,0.00836911890655756,0.006121380720287561,-0.010903283022344112,-0.002868085168302059,-3.179288460081991,-1.1839364944802746,5.678480866540958,-0.03179288460081991,-0.011839364944802746,0.05678480866540958 +karman_re400,sr,1,0.4,0.9920588135719299,-0.3066158592700958,1.0027843713760376,-0.44941529631614685,1.1849479675292969,-0.17843544483184814,0.0035746314097195864,-0.0025817283894866705,0.0063948179595172405,0.006043979432433844,-0.011333486065268517,-0.0033091942314058542,-3.6751645022886845,-1.303908345920596,5.558509015100636,-0.036751645022886845,-0.01303908345920596,0.055585090151006364 +karman_re400,sr,2,0.8,1.0442887544631958,-0.3276767432689667,1.0272293090820312,-0.47001659870147705,1.0501904487609863,-0.2991275191307068,0.003871027147397399,0.0010376842692494392,0.004535936284810305,0.005344688426703215,-0.009563852101564407,-0.002471423940733075,-3.3807116454937565,-1.6429575424828704,5.219459818538362,-0.033807116454937565,-0.016429575424828705,0.05219459818538362 +karman_re400,sr,3,1.2,1.1057454347610474,-0.3366646468639374,1.0308425426483154,-0.46334078907966614,0.9865139126777649,-0.34437844157218933,0.0008647855138406157,0.004148915410041809,0.0028747280593961477,0.005100801587104797,-0.007709504570811987,-0.0028728130273520947,-2.688769254530576,-1.5524071991513417,5.31001016186989,-0.02688769254530576,-0.015524071991513417,0.0531001016186989 +karman_re400,sr,4,1.6,1.1727321147918701,-0.30372118949890137,1.0069137811660767,-0.4666403532028198,0.9622600674629211,-0.347280889749527,-0.0023202761076390743,0.006218876224011183,0.0010858559980988503,0.005785975605249405,-0.00408425135537982,-0.005467209033668041,-2.018367829293365,-1.9743472509574171,4.888070110063815,-0.020183678292933653,-0.019743472509574173,0.04888070110063815 +karman_re400,sr,5,2.0,1.2477408647537231,-0.23395460844039917,0.9335981607437134,-0.44187527894973755,0.9636988043785095,-0.31680575013160706,-0.004369745962321758,0.006780335213989019,-0.00032915917108766735,0.006408834829926491,-0.0002659135789144784,-0.007150582503527403,-0.9859173282408481,-3.2227701222716347,3.639647238749598,-0.009859173282408481,-0.03222770122271635,0.03639647238749598 +karman_re400,sr,6,2.4,1.2769711017608643,-0.10483342409133911,0.9017742872238159,-0.13090558350086212,0.9885048866271973,-0.16797278821468353,-0.0036745674442499876,0.006321704480797052,-0.0016022418858483434,0.005963612347841263,0.002862450433894992,-0.00769924558699131,0.012060663540467035,-3.9162307293895067,2.9461866316317256,0.00012060663540467036,-0.03916230729389507,0.029461866316317257 +karman_re400,sr,7,2.8,1.2981541156768799,-0.019903426989912987,0.9611609578132629,0.224420428276062,0.9673287868499756,0.1811501532793045,-0.0005114134983159602,0.005271909758448601,-0.003866613609716296,0.004431015346199274,0.005335476249456406,-0.007984158582985401,0.8513977026680213,-4.566123449664031,2.2962939113572016,0.008513977026680213,-0.04566123449664031,0.022962939113572018 +karman_re400,sr,8,3.2,1.2243754863739014,0.127237468957901,1.0058798789978027,0.43079617619514465,0.9674519896507263,0.3216160833835602,0.0018244992243126035,0.002080520149320364,-0.006630271207541227,0.00274588237516582,0.006523421499878168,-0.007803662214428186,1.7547991227074586,-5.754576685562706,1.107840675458526,0.017547991227074587,-0.05754576685562707,0.01107840675458526 +karman_re400,sr,9,3.6,1.0863533020019531,0.26011568307876587,1.0270404815673828,0.46932461857795715,1.017723560333252,0.3374141454696655,0.0018217184115201235,-0.0022593929897993803,-0.00784521084278822,0.002495834603905678,0.005326572805643082,-0.007039625197649002,2.508352860772673,-6.738444857616925,0.12397250340430777,0.02508352860772673,-0.06738444857616925,0.0012397250340430777 +karman_re400,sr,10,4.0,1.008995532989502,0.31019434332847595,1.0305761098861694,0.46676039695739746,1.0792995691299438,0.3557218909263611,0.0004257615946698934,-0.005427622236311436,-0.006840094458311796,0.0034608386922627687,0.0031953982543200254,-0.0063817924819886684,2.5118027257384017,-6.402351970728423,0.4600653902928098,0.025118027257384018,-0.06402351970728423,0.004600653902928098 +karman_re400,sr,11,4.4,0.9647074341773987,0.3166373372077942,1.0120739936828613,0.45885810256004333,1.142553687095642,0.3379443883895874,-0.002014369470998645,-0.006163903046399355,-0.005078693851828575,0.005386324133723974,0.0019722552970051765,-0.0059793186374008656,1.9137254773174575,-5.341193763302622,1.5212235977186104,0.019137254773174576,-0.053411937633026214,0.015212235977186104 +karman_re400,sr,12,4.8,0.936347484588623,0.3000321090221405,0.9513248205184937,0.47029179334640503,1.219542145729065,0.291919469833374,-0.004525644704699516,-0.006412718910723925,-0.0017091616755351424,0.008653421886265278,0.0005732436547987163,-0.006599682383239269,1.344585802788579,-3.8189623862297317,3.0434549747915005,0.01344585802788579,-0.038189623862297316,0.030434549747915006 +karman_re400,sr,13,5.2,0.9195914268493652,0.24088403582572937,0.8803046345710754,0.3046936094760895,1.2680953741073608,0.18544653058052063,-0.004344590939581394,-0.0061323558911681175,0.0032955792266875505,0.009258602745831013,-0.0013821283355355263,-0.006723848171532154,0.43524492073290405,-2.0882871223135453,4.774130238707687,0.004352449207329041,-0.020882871223135452,0.04774130238707687 +karman_re400,sr,14,5.6,0.902296781539917,-0.04304160550236702,0.8783964514732361,-0.08629641681909561,1.270309567451477,0.08985944092273712,-0.0021497434936463833,-0.005842423066496849,0.006021999754011631,0.0077680498361587524,-0.003714991267770529,-0.006412709131836891,-0.8920187970441169,-1.7737557476780397,5.088661613343192,-0.00892018797044117,-0.017737557476780397,0.05088661613343193 +karman_re400,sr,15,6.0,0.9178075194358826,-0.2767731249332428,0.9442564249038696,-0.3407936096191406,1.2365851402282715,0.011457529850304127,0.0012123589403927326,-0.003493576543405652,0.00629487494006753,0.006875384598970413,-0.005001917947083712,-0.004959133453667164,-1.8568024833839065,-2.5449637366635294,4.317453624357703,-0.018568024833839066,-0.025449637366635296,0.043174536243577026 +karman_re400,sr,16,6.4,0.9790241122245789,-0.3077033758163452,0.9761718511581421,-0.47978806495666504,1.0848561525344849,-0.19785192608833313,0.0028246548026800156,0.000887949310708791,0.00507309241220355,0.006606570445001125,-0.006398337427526712,-0.0024391026236116886,-2.1542500183282347,-2.178189507360412,4.68422785366082,-0.021542500183282347,-0.021781895073604122,0.0468422785366082 +karman_re400,sr,17,6.8,1.0454065799713135,-0.32745251059532166,1.0018856525421143,-0.4995942711830139,1.007768988609314,-0.3662741482257843,0.0010989767033606768,0.003282277612015605,0.0038892703596502542,0.0056997728534042835,-0.007085736375302076,-0.0019338541897013783,-2.1875525371981737,-0.7061394240687107,6.156277936952522,-0.021875525371981737,-0.007061394240687107,0.06156277936952522 +karman_re400,sr,18,7.2,1.1082432270050049,-0.31518813967704773,1.0202486515045166,-0.5074617862701416,0.9854623675346375,-0.3698779046535492,-0.0016743210144340992,0.005518853664398193,0.0021321203093975782,0.005673875100910664,-0.005318392999470234,-0.004175502806901932,-2.0928867773449715,-0.9687087614839869,5.893708599537245,-0.020928867773449714,-0.009687087614839869,0.05893708599537245 +karman_re400,sr,19,7.6,1.1643933057785034,-0.2797181010246277,1.0439085960388184,-0.517886221408844,0.9564658403396606,-0.31383803486824036,-0.0036233942955732346,0.006771123968064785,0.0005584469763562083,0.005982079543173313,-0.0021254667080938816,-0.005904476623982191,-1.42078097673531,-2.4514366827159946,4.410980678305237,-0.0142078097673531,-0.024514366827159947,0.044109806783052374 +karman_re400,sr,20,8.0,1.2181267738342285,-0.25600966811180115,1.0853872299194336,-0.5239604711532593,0.9246496558189392,-0.22792892158031464,-0.0043793474324047565,0.0066106258891522884,-0.000792044447734952,0.0061575984582304955,0.0005532495561055839,-0.006776720285415649,-0.5118108441639344,-3.3804648383596367,3.481952522661596,-0.005118108441639345,-0.03380464838359637,0.03481952522661596 +karman_re400,sr,21,8.4,1.3312430381774902,-0.4314924478530884,1.0777273178100586,-0.2419055998325348,0.9008815884590149,-0.09680281579494476,-0.00277254288084805,0.006074862089008093,-0.002325154608115554,0.005595799069851637,0.0033503433223813772,-0.007261120248585939,0.2565418045086568,-3.836046805137552,3.0263705558836804,0.0025654180450865685,-0.03836046805137552,0.030263705558836805 +karman_re400,sr,22,8.8,1.4514014720916748,0.04375940188765526,0.9895317554473877,0.21700520813465118,0.8773258924484253,0.10427336394786835,0.00042554433457553387,0.004410152323544025,-0.0043903435580432415,0.004104213789105415,0.005472136195749044,-0.006966776214540005,1.0822931466417338,-4.520147033670457,2.342270327350775,0.010822931466417338,-0.045201470336704574,0.02342270327350775 +karman_re400,sr,23,9.2,1.340133547782898,0.3247898519039154,0.9637300968170166,0.43143221735954285,0.9118110537528992,0.23290981352329254,0.0018105763010680676,0.0009199062478728592,-0.006165191065520048,0.0029936067294329405,0.005789614748209715,-0.006303648464381695,1.8807326470979175,-5.303012181946368,1.5594051790748638,0.018807326470979175,-0.053030121819463684,0.015594051790748638 +karman_re400,sr,24,9.6,1.2389143705368042,0.40582141280174255,0.991261899471283,0.5304463505744934,0.9853403568267822,0.28001222014427185,0.001179728889837861,-0.002811651909723878,-0.006077638827264309,0.0028281917329877615,0.004301917273551226,-0.0057123396545648575,2.279730265094046,-5.59561482736868,1.266802533652553,0.02279730265094046,-0.0559561482736868,0.01266802533652553 +karman_re400,sr,25,10.0,1.1414915323257446,0.36155951023101807,1.027888536453247,0.5255413055419922,1.0523415803909302,0.29257717728614807,-0.0008638830622658134,-0.005228380672633648,-0.0045506772585213184,0.0033664596267044544,0.002415295457467437,-0.005558171309530735,1.9793368917874765,-5.317126741300873,1.545290619720359,0.019793368917874764,-0.05317126741300873,0.015452906197203591 +karman_re400,sr,26,10.4,1.0602587461471558,0.2887613773345947,1.0641565322875977,0.5231664776802063,1.1095995903015137,0.2553318440914154,-0.003091219114139676,-0.006427511107176542,-0.002819921588525176,0.004217717796564102,0.0009146617376245558,-0.005915710236877203,1.328381161007281,-4.864348990605007,1.9980683704162259,0.013283811610072811,-0.048643489906050066,0.01998068370416226 +karman_re400,sr,27,10.8,0.9866824150085449,0.20004305243492126,1.0955919027328491,0.5438786149024963,1.1546474695205688,0.20358964800834656,-0.004288991913199425,-0.006624395959079266,-0.000960611505433917,0.005611766595393419,-0.00016120974032673985,-0.006140274927020073,0.7121690447168301,-4.541510474088786,2.3209068869324465,0.007121690447168301,-0.045415104740887856,0.023209068869324466 +karman_re400,sr,28,11.2,0.9221269488334656,0.07997159659862518,1.1220996379852295,0.5115381479263306,1.1831566095352173,0.15319329500198364,-0.003185381880030036,-0.006246886216104031,0.0017822354566305876,0.006820667535066605,-0.0015308884903788567,-0.005212096497416496,0.1524424926912183,-3.7767954655836258,3.085621895437606,0.001524424926912183,-0.03776795465583626,0.030856218954376062 +karman_re400,sr,29,11.6,0.879534900188446,-0.07055539637804031,1.0763756036758423,-0.06602220237255096,1.2819362878799438,0.207590714097023,-0.00028627493884414434,-0.004945374559611082,0.0044448114931583405,0.006747452076524496,-0.003796106670051813,-0.003742760978639126,-0.6317985462658731,-2.3793787277980565,4.483038633223176,-0.006317985462658731,-0.023793787277980566,0.044830386332231756 +karman_re400,sr,30,12.0,0.9004572033882141,-0.17876319587230682,0.9788922667503357,-0.39963898062705994,1.4921079874038696,0.12502869963645935,0.0014913654886186123,-0.0019410705426707864,0.005346376448869705,0.005925758276134729,-0.005666225682944059,-0.0029637771658599377,-1.571507797078309,-1.4664685344853934,5.395948826535839,-0.01571507797078309,-0.014664685344853934,0.05395948826535839 +karman_re400,sr,31,12.4,0.9609829187393188,-0.24665158987045288,0.9684908986091614,-0.4682965576648712,1.2804045677185059,-0.24293118715286255,0.0010380987077951431,0.0019171680323779583,0.004223208408802748,0.005493051838129759,-0.005380851682275534,-0.003300261218100786,-2.100056058501743,-1.494396206436031,5.368021154585201,-0.02100056058501743,-0.01494396206436031,0.053680211545852015 +karman_re400,sr,32,12.8,1.024623155593872,-0.28654050827026367,0.9881329536437988,-0.4751092195510864,1.1424652338027954,-0.29134291410446167,-0.0008199391304515302,0.0046912203542888165,0.0023692126851528883,0.005566549487411976,-0.0034239927772432566,-0.003644886426627636,-1.8314531242546508,-1.9973628632049651,4.865054497816267,-0.01831453124254651,-0.019973628632049652,0.04865054497816267 +karman_re400,sr,33,13.2,1.081027865409851,-0.27699145674705505,1.0055493116378784,-0.4621061682701111,1.053450107574463,-0.2770596742630005,-0.002959887497127056,0.005884167738258839,0.000719934469088912,0.006135251373052597,-0.001838047755882144,-0.0039037757087498903,-1.1047394688222227,-2.1746507051121284,4.687766655909104,-0.011047394688222228,-0.021746507051121286,0.046877666559091036 +karman_re400,sr,34,13.6,1.1416915655136108,-0.2572663426399231,1.0248156785964966,-0.4639629125595093,0.9925890564918518,-0.22174544632434845,-0.0038785962387919426,0.006145330145955086,-0.0002425011625746265,0.006180442404001951,-0.0005468245362862945,-0.004657424055039883,-0.48779625421784734,-1.9720670650482564,4.890350295972976,-0.004877962542178474,-0.019720670650482563,0.048903502959729755 +karman_re400,sr,35,14.0,1.2333893775939941,-0.24500755965709686,1.0778053998947144,-0.35586845874786377,0.9452504515647888,-0.14555436372756958,-0.002977191237732768,0.006092193070799112,-0.0015227037947624922,0.004778357222676277,0.0015621590428054333,-0.005760238040238619,-0.05803316392050748,-2.4353208518267415,4.427096509194491,-0.0005803316392050748,-0.024353208518267416,0.044270965091944905 +karman_re400,sr,36,14.4,1.515087604522705,-0.345702588558197,1.0565682649612427,-0.32709041237831116,0.9065431952476501,-0.04251747950911522,-0.0005321999196894467,0.005316287744790316,-0.0036665189545601606,0.0028324106242507696,0.0041013662703335285,-0.0061017596162855625,0.5882701303596825,-4.07325160540046,2.789165755620772,0.0058827013035968245,-0.0407325160540046,0.02789165755620772 +karman_re400,sr,37,14.8,1.6060305833816528,-0.051818374544382095,0.9223839640617371,-0.036167774349451065,0.8890261054039001,0.07802412658929825,0.0015462565934285522,0.0029724184423685074,-0.0060657630674541,0.0013077332405373454,0.005328627303242683,-0.005558372009545565,1.481302441786974,-5.569006213354676,1.2934111476665566,0.01481302441786974,-0.05569006213354676,0.012934111476665566 +karman_re400,sr,38,15.2,1.4730497598648071,0.16696664690971375,0.8380227088928223,0.3504514694213867,0.9192882776260376,0.16464677453041077,0.0014877434587106109,-0.0007530066650360823,-0.0067037916742265224,0.0016519996570423245,0.004563051741570234,-0.005247313529253006,2.172861440420952,-6.21066266218587,0.6517546988353624,0.02172861440420952,-0.0621066266218587,0.006517546988353625 +karman_re400,sr,39,15.6,1.3196134567260742,0.27423256635665894,0.8918465375900269,0.4608381688594818,0.9692963361740112,0.23058587312698364,0.00013177550863474607,-0.004360144957900047,-0.0049278936348855495,0.002549123717471957,0.0026498364750295877,-0.0053034289740026,2.1485387824174036,-5.7821516800306325,1.0802656809905997,0.021485387824174036,-0.057821516800306325,0.010802656809905997 +karman_re400,sr,40,16.0,1.1883453130722046,0.29195892810821533,0.9437156915664673,0.4625954031944275,1.0217266082763672,0.25010132789611816,-0.0018342252587899566,-0.006101449020206928,-0.0032357603777199984,0.003204775508493185,0.0010359701700508595,-0.005555611103773117,1.4450406758132284,-5.232223805067857,1.6301935559533753,0.014450406758132283,-0.05232223805067857,0.016301935559533753 +karman_re400,sr,41,16.4,1.0912429094314575,0.23986715078353882,0.9726734757423401,0.4376722574234009,1.0772675275802612,0.24667465686798096,-0.003648693673312664,-0.006306040100753307,-0.001834959490224719,0.0046419077552855015,0.00015591279952786863,-0.0057950192131102085,0.8146007192267161,-4.968398667861453,1.8940186931597793,0.00814600719226716,-0.04968398667861453,0.018940186931597793 +karman_re400,sr,42,16.8,1.021891474723816,0.16225029528141022,0.99590003490448,0.41230452060699463,1.158360242843628,0.2568929195404053,-0.003915524110198021,-0.006077062338590622,0.0006389639456756413,0.006399303209036589,-0.0008140233694575727,-0.0052846139296889305,0.3796508185581351,-4.185217761718439,2.6771995993027935,0.003796508185581351,-0.04185217761718439,0.026771995993027934 +karman_re400,sr,43,17.2,0.9607488512992859,0.06315465271472931,1.0306209325790405,0.2923697829246521,1.358098030090332,0.3622831702232361,-0.001829141634516418,-0.005655631422996521,0.003867841325700283,0.00692230649292469,-0.002846056828275323,-0.003981758374720812,-0.27707845771135037,-2.702323511908895,4.160093849112337,-0.0027707845771135038,-0.02702323511908895,0.04160093849112337 +karman_re400,sr,44,17.6,0.9247398972511292,-0.04271158576011658,0.9768336415290833,0.13741861283779144,1.6013225317001343,0.13533426821231842,0.0007333063404075801,-0.003967517986893654,0.005811478476971388,0.006078347098082304,-0.0052849953062832355,-0.0027937369886785746,-1.2803116216909904,-1.5084110447669328,5.354006316254299,-0.012803116216909905,-0.015084110447669328,0.05354006316254299 +karman_re400,sr,45,18.0,0.9386932253837585,-0.12795640528202057,0.8555430769920349,-0.16906185448169708,1.525984287261963,-0.16247789561748505,0.001616524183191359,-0.0003014530229847878,0.005367429926991463,0.0054275705479085445,-0.00620702188462019,-0.0023585716262459755,-2.116050023201157,-1.2834320419977394,5.578985319023493,-0.021160500232011572,-0.012834320419977395,0.05578985319023493 +karman_re400,sr,46,18.4,0.971726655960083,-0.1975821852684021,0.8483265042304993,-0.3679850399494171,1.3976123332977295,-0.2713509202003479,0.0007295791292563081,0.0035100586246699095,0.0034737084060907364,0.00529190618544817,-0.005079907365143299,-0.002150679240003228,-2.207198385982931,-1.4244182341508602,5.437999126870372,-0.02207198385982931,-0.014244182341508602,0.054379991268703715 +karman_re400,sr,47,18.8,1.0109055042266846,-0.2226313203573227,0.8986299633979797,-0.4122932553291321,1.249423861503601,-0.28447556495666504,-0.0012899369467049837,0.005627751350402832,0.0017528156749904156,0.005480423104017973,-0.0036962227895855904,-0.002220077905803919,-1.6311378916145038,-1.3771889871599918,5.48522837386124,-0.01631137891614504,-0.013771889871599918,0.0548522837386124 +karman_re400,sr,48,19.2,1.054715633392334,-0.2222938984632492,0.9388277530670166,-0.393045037984848,1.13579261302948,-0.24007199704647064,-0.003425853792577982,0.006459774449467659,0.0006812746287323534,0.005882632918655872,-0.0025604707188904285,-0.003368759760633111,-1.0391082964383076,-1.2992986464509038,5.5631187145703285,-0.010391082964383076,-0.012992986464509039,0.05563118714570329 +karman_re400,sr,49,19.6,1.0993282794952393,-0.2277233749628067,0.9467566013336182,-0.3826591968536377,1.0485297441482544,-0.16138388216495514,-0.004121898207813501,0.006623579654842615,-0.00013218482490628958,0.0055330730974674225,-0.0006732500623911619,-0.005227627698332071,-0.6181869530842495,-1.787409915619758,5.075007445401474,-0.006181869530842495,-0.01787409915619758,0.05075007445401474 +karman_re400,sr,50,20.0,1.1580551862716675,-0.26858052611351013,0.9443862438201904,-0.3335845172405243,0.9744791984558105,-0.06057843565940857,-0.0026330705732107162,0.0062455241568386555,-0.0017193822422996163,0.004254139494150877,0.0022528902627527714,-0.006407622247934341,-0.10317882335386327,-3.2314807156218883,3.6309366453993444,-0.0010317882335386327,-0.032314807156218886,0.03630936645399344 +karman_re400,sr,51,20.4,1.2565616369247437,-0.43395352363586426,0.9051988124847412,-0.1540326178073883,0.9358537793159485,0.03574562817811966,0.00017344107618555427,0.004678985103964806,-0.0041152359917759895,0.002992090070620179,0.00468968553468585,-0.006105024833232164,0.7574953530879304,-4.83935144204408,2.0230659189771516,0.007574953530879304,-0.048393514420440806,0.020230659189771516 +karman_re400,sr,52,20.8,1.3615286350250244,0.07873165607452393,0.8142409324645996,0.13458338379859924,0.9422432780265808,0.11342130601406097,0.001456440077163279,0.0014809153508394957,-0.00559659767895937,0.0027151117101311684,0.005201354157179594,-0.005374989006668329,1.6790608227697026,-5.466728373155771,1.3956889878654608,0.016790608227697026,-0.054667283731557714,0.013956889878654608 +karman_re400,sr,53,21.2,1.3256850242614746,0.29876619577407837,0.8036025166511536,0.3259938955307007,0.9684184789657593,0.18686698377132416,0.0006404168088920414,-0.002388200955465436,-0.004490864463150501,0.003234488656744361,0.003842001548036933,-0.005166118033230305,2.0591231664844396,-5.170478221957159,1.6919391390640737,0.020591231664844396,-0.05170478221957159,0.016919391390640737 +karman_re400,sr,54,21.6,1.2105103731155396,0.3097887635231018,0.8445020318031311,0.4027925133705139,1.0044164657592773,0.2258966565132141,-0.001461175736039877,-0.004828289151191711,-0.0023354352451860905,0.0032661110162734985,0.0019129683496430516,-0.005516350734978914,1.5890418578660914,-4.694283538985931,2.1681338220353013,0.015890418578660914,-0.046942835389859314,0.02168133822035301 +karman_re400,sr,55,22.0,1.0950161218643188,0.30184993147850037,0.886451244354248,0.41156649589538574,1.0433592796325684,0.23408932983875275,-0.003347955644130707,-0.00574682280421257,-0.0010414451826363802,0.00328280427493155,0.0003988969838246703,-0.0063195438124239445,0.810152369212316,-4.9026199402679085,1.9597974207533237,0.00810152369212316,-0.049026199402679084,0.019597974207533238 +karman_re400,sr,56,22.4,1.0129626989364624,0.24947763979434967,0.9116202592849731,0.41397276520729065,1.0950939655303955,0.24924783408641815,-0.003648448968306184,-0.006020771339535713,2.4373852284043096e-05,0.004000130109488964,-0.0004373683768790215,-0.005806082393974066,0.27466708201995793,-5.41690500933869,1.4455123516825423,0.0027466708201995794,-0.0541690500933869,0.014455123516825423 +karman_re400,sr,57,22.8,0.9613130688667297,0.17178253829479218,0.9433364868164062,0.37310507893562317,1.1872581243515015,0.29646795988082886,-0.0023662238381803036,-0.006020584609359503,0.0021637422032654285,0.005096712615340948,-0.0018824052531272173,-0.00396488793194294,-0.08805226541497581,-4.612104433032731,2.2503129279885012,-0.0008805226541497581,-0.046121044330327314,0.02250312927988501 +karman_re400,sr,58,23.2,0.921272873878479,0.07666661590337753,0.960995614528656,0.2634343206882477,1.3989962339401245,0.40103259682655334,9.136350126937032e-05,-0.005002838559448719,0.004382589366286993,0.005221792031079531,-0.0040731909684836864,-0.0018406786257401109,-0.7715829898949889,-2.6911188272477067,4.171298533773526,-0.007715829898949889,-0.026911188272477068,0.04171298533773526 +karman_re400,sr,59,23.6,0.9005402326583862,-0.0325203463435173,0.9035845398902893,0.11319651454687119,1.5776543617248535,0.1092812791466713,0.0016295723617076874,-0.0026026442646980286,0.005248553119599819,0.004721465054899454,-0.006288365926593542,-0.0005290526314638555,-1.6124810929195352,-1.2203294156139348,5.642087945407297,-0.016124810929195352,-0.012203294156139348,0.056420879454072974 +karman_re400,sr,60,24.0,0.9138151407241821,-0.1271689087152481,0.7894020080566406,-0.18194210529327393,1.4886306524276733,-0.18599063158035278,0.0012645925162360072,0.0012459824793040752,0.004177903290838003,0.004555252380669117,-0.006543975323438644,-0.0013817308936268091,-2.2000410483741106,-0.6898283759542441,6.172588985066988,-0.022000410483741108,-0.006898283759542441,0.06172588985066988 +karman_re400,sr,61,24.4,0.9478550553321838,-0.20106221735477448,0.782802402973175,-0.3920195400714874,1.3498997688293457,-0.3261779546737671,-0.0004014903388451785,0.004600608255714178,0.0021718863863497972,0.00484866788610816,-0.004385633394122124,-0.002460472984239459,-2.044616328904229,-1.3560718805068381,5.506345480514394,-0.020446163289042293,-0.013560718805068381,0.05506345480514394 +karman_re400,sr,62,24.8,0.9943431615829468,-0.2306145876646042,0.8400101661682129,-0.4458742141723633,1.2025623321533203,-0.34925028681755066,-0.0023812090512365103,0.006133544258773327,0.0006441064761020243,0.005443771369755268,-0.002785810735076666,-0.00291041168384254,-1.2504909356474663,-1.8695897828021464,4.992827578219086,-0.012504909356474664,-0.018695897828021463,0.04992827578219086 +karman_re400,sr,63,25.2,1.0542042255401611,-0.2515524625778198,0.8833155632019043,-0.43372151255607605,1.0892155170440674,-0.30258098244667053,-0.00376368616707623,0.006295559927821159,-3.504636697471142e-05,0.005606170743703842,-0.0016768340719863772,-0.004172695800662041,-0.6540705215061539,-1.7746678524908714,5.087749508530361,-0.006540705215061539,-0.017746678524908716,0.050877495085303606 +karman_re400,sr,64,25.6,1.161165714263916,-0.2986637055873871,0.9052823781967163,-0.4086453318595886,1.0116667747497559,-0.22087374329566956,-0.0035198337864130735,0.006117063574492931,-0.0009930948726832867,0.004722089972347021,0.000646875356324017,-0.005915400572121143,-0.313081883410925,-2.493872469511234,4.368544891509998,-0.0031308188341092505,-0.02493872469511234,0.043685448915099984 +karman_re400,sr,65,26.0,1.4039981365203857,-0.4133182168006897,0.916461169719696,-0.31368303298950195,0.9556990265846252,-0.12461121380329132,-0.0011372664012014866,0.00545711163431406,-0.0031347405165433884,0.003179720602929592,0.00367006310261786,-0.006491280626505613,0.3127352985213179,-4.211503614556811,2.650913746464421,0.0031273529852131787,-0.042115036145568115,0.02650913746464421 +karman_re400,sr,66,26.4,1.6279159784317017,-0.1304703950881958,0.8924486041069031,-0.18904338777065277,0.9140569567680359,-0.014972858130931854,0.0010647992603480816,0.0033078351989388466,-0.0054962169378995895,0.0021736714988946915,0.005408818833529949,-0.0057563320733606815,1.2976469045450334,-5.596607622475419,1.2658097385458134,0.012976469045450334,-0.05596607622475419,0.012658097385458134 +karman_re400,sr,67,26.8,1.5678540468215942,0.1635218858718872,0.8427382111549377,0.02406999096274376,0.9110791087150574,0.08585619181394577,0.0013436522567644715,-0.0005104683805257082,-0.005944511853158474,0.0024544699117541313,0.004740630276501179,-0.005165347829461098,2.079543614293548,-5.773877803865425,1.0885395571558076,0.020795436142935483,-0.057738778038654244,0.010885395571558076 +karman_re400,sr,68,27.2,1.427915096282959,0.28423917293548584,0.7935684323310852,0.3170715272426605,0.9364172220230103,0.16534295678138733,-3.17922567774076e-05,-0.004050740506500006,-0.0041377972811460495,0.0028027985244989395,0.002836760599166155,-0.005191978998482227,2.0376108386336687,-5.203827063691692,1.65859029732954,0.020376108386336685,-0.052038270636916927,0.016585902973295402 +karman_re400,sr,69,27.6,1.2757374048233032,0.3151044547557831,0.8417630791664124,0.4163505434989929,0.9726823568344116,0.2003542184829712,-0.0021342700347304344,-0.0057593416422605515,-0.0025993851013481617,0.0029600446578115225,0.0011321313213557005,-0.005675178021192551,1.3300183150726774,-4.993472034849485,1.8689453261717475,0.013300183150726775,-0.049934720348494846,0.018689453261717476 +karman_re400,sr,70,28.0,1.1509751081466675,0.2733081877231598,0.8953385949134827,0.4072748124599457,1.0157829523086548,0.2098940908908844,-0.003693214152008295,-0.0061661433428525925,-0.0015134760178625584,0.003855366725474596,0.00021329772425815463,-0.00600818358361721,0.7115841993655454,-5.206609660864807,1.6558077001564255,0.007115841993655454,-0.05206609660864807,0.016558077001564257 +karman_re400,sr,71,28.4,1.0604327917099,0.195057675242424,0.9244344234466553,0.38621315360069275,1.0655723810195923,0.22869400680065155,-0.003639412112534046,-0.006164835765957832,0.0003793038194999099,0.005293575115501881,-0.0007236882811412215,-0.005083949770778418,0.32928835668424156,-4.838916018948654,2.023501342072578,0.003292883566842416,-0.048389160189486545,0.02023501342072578 +karman_re400,sr,72,28.8,0.9820278882980347,0.09428680688142776,0.9403749704360962,0.3430540859699249,1.1270859241485596,0.28739285469055176,-0.001686643110588193,-0.005729599390178919,0.003058305010199547,0.006033627316355705,-0.0026161731220781803,-0.003404132090508938,-0.21033586937090884,-3.2941365765953674,3.5682807844258644,-0.0021033586937090885,-0.032941365765953676,0.035682807844258646 +karman_re400,sr,73,29.2,0.9342166781425476,-0.007837947458028793,0.9269090890884399,0.23515795171260834,1.227075219154358,0.42495471239089966,0.0008317019673995674,-0.003958125598728657,0.004959273152053356,0.005613680463284254,-0.0049796984530985355,-0.0018935539992526174,-1.0820986754892254,-1.7118056984074959,5.150611662613736,-0.010820986754892254,-0.01711805698407496,0.05150611662613736 +karman_re400,sr,74,29.6,0.9322482943534851,-0.09315887093544006,0.832184910774231,-0.029245851561427116,1.36319899559021,-0.08149971067905426,0.0014779933262616396,-0.000572653254494071,0.0049214535392820835,0.005043170414865017,-0.00617570523172617,-0.0016863372875377536,-1.8953193155302306,-0.9986518638322658,5.863765497188966,-0.018953193155302306,-0.009986518638322658,0.05863765497188966 +karman_re400,sr,75,30.0,0.9531723260879517,-0.16966812312602997,0.7813551425933838,-0.28569552302360535,1.3403805494308472,-0.2786317765712738,0.00041577135561965406,0.0032188626937568188,0.0032932052854448557,0.0049758837558329105,-0.004776200279593468,-0.0024690423160791397,-2.116180647431906,-1.2362060682923786,5.626211292728854,-0.021161806474319058,-0.012362060682923786,0.05626211292728854 +karman_re400,sr,76,30.4,0.9867321252822876,-0.20774227380752563,0.8131292462348938,-0.38877665996551514,1.2420862913131714,-0.302972674369812,-0.0017049734015017748,0.005491228308528662,0.0014194004470482469,0.005412306170910597,-0.00280255195684731,-0.002809116616845131,-1.538801079211911,-1.792007892159958,5.070409468861274,-0.015388010792119109,-0.01792007892159958,0.05070409468861274 +karman_re400,sr,77,30.8,1.025779366493225,-0.2217377871274948,0.8537104725837708,-0.4026038646697998,1.1275744438171387,-0.29043975472450256,-0.0034646294079720974,0.006203287281095982,0.00029225743492133915,0.006001824047416449,-0.0016356557607650757,-0.0034583096858114004,-0.8051082403942786,-1.7290067376268887,5.133410623394344,-0.008051082403942787,-0.017290067376268887,0.05133410623394344 +karman_re400,sr,78,31.2,1.0762434005737305,-0.24755629897117615,0.8735394477844238,-0.3991427719593048,1.040037751197815,-0.23352579772472382,-0.003791272407397628,0.006211134605109692,-0.0004771401872858405,0.00539054349064827,-0.00011857150821015239,-0.004755208268761635,-0.36764478897957703,-1.768027802531457,5.094389558489775,-0.0036764478897957703,-0.01768027802531457,0.05094389558489775 +karman_re400,sr,79,31.6,1.1547422409057617,-0.32713377475738525,0.8798631429672241,-0.37939533591270447,0.9826409816741943,-0.15314450860023499,-0.00221936940215528,0.005945221055299044,-0.002056337194517255,0.003785736858844757,0.002504898002371192,-0.0057805730029940605,0.06837751131556093,-3.015768764739236,3.8466485962819963,0.0006837751131556093,-0.03015768764739236,0.038466485962819964 +karman_re400,sr,80,32.0,1.3266127109527588,-0.39514845609664917,0.8972052931785583,-0.25848105549812317,0.9383305907249451,-0.0589139498770237,0.000414040288887918,0.004614321514964104,-0.004466054495424032,0.0020594533998519182,0.00476168654859066,-0.005608236417174339,0.8698080158371568,-4.735613868754635,2.126803492266597,0.008698080158371568,-0.04735613868754635,0.02126803492266597 +karman_re400,sr,81,32.4,1.490515947341919,0.06153053417801857,0.8354033827781677,-0.04159991443157196,0.9187899827957153,0.039709702134132385,0.0015265739057213068,0.0016375075792893767,-0.006226174999028444,0.0013902082573622465,0.005307307466864586,-0.005014751106500626,1.759690693790332,-5.75172557776269,1.110691783258543,0.01759690693790332,-0.0575172557776269,0.01110691783258543 +karman_re400,sr,82,32.8,1.3897426128387451,0.2431154102087021,0.7603225708007812,0.23734277486801147,0.9315128326416016,0.12591256201267242,0.0008618004503659904,-0.002324172295629978,-0.005499498452991247,0.002158048562705517,0.003907712176442146,-0.004858120810240507,2.1993857072300416,-5.80126424186353,1.061153119157702,0.021993857072300418,-0.058012642418635296,0.01061153119157702 +karman_re400,sr,83,33.2,1.3003242015838623,0.31875529885292053,0.7911131381988525,0.37383124232292175,0.9598084092140198,0.18501125276088715,-0.0011386934202164412,-0.005092683248221874,-0.0034157102927565575,0.002614334225654602,0.0019437092123553157,-0.005231228657066822,1.793914775044166,-5.196761334370455,1.6656560266507774,0.01793914775044166,-0.051967613343704554,0.016656560266507775 +karman_re400,sr,84,33.6,1.1790950298309326,0.31386786699295044,0.8441219925880432,0.40685030817985535,0.998450517654419,0.20212657749652863,-0.003124798182398081,-0.006159184034913778,-0.002130880020558834,0.003030547173693776,0.000598404323682189,-0.0059213899075984955,1.0220183447151288,-5.142372117884898,1.7200452431363336,0.010220183447151287,-0.05142372117884898,0.017200452431363335 +karman_re400,sr,85,34.0,1.0822970867156982,0.2617481052875519,0.8822386264801025,0.39600539207458496,1.0464311838150024,0.22137486934661865,-0.0039500887505710125,-0.006272450089454651,-0.000962735852226615,0.0042841145768761635,-7.770327647449449e-05,-0.005698877386748791,0.5204628346591615,-5.321504418114122,1.5409129429071107,0.005204628346591616,-0.05321504418114122,0.015409129429071107 +karman_re400,sr,86,34.4,1.0096006393432617,0.17927123606204987,0.8981063365936279,0.38059383630752563,1.1124963760375977,0.2640753984451294,-0.003014795482158661,-0.006075405515730381,0.0014671568060293794,0.005678268149495125,-0.0012998032616451383,-0.0043443236500024796,0.16877192151620307,-4.356309198036842,2.50610816298439,0.0016877192151620308,-0.04356309198036842,0.0250610816298439 +karman_re400,sr,87,34.8,0.9520300030708313,0.07838177680969238,0.9198373556137085,0.3074086308479309,1.2500996589660645,0.4067504405975342,-0.00047755136620253325,-0.005085660610347986,0.004030740819871426,0.005873401649296284,-0.003554096445441246,-0.002650204813107848,-0.5276474337491783,-2.5589545201520965,4.303462840869136,-0.005276474337491783,-0.025589545201520965,0.04303462840869136 +karman_re400,sr,88,35.2,0.9189971089363098,-0.02521233819425106,0.8832947015762329,0.14435817301273346,1.4817934036254883,0.14153032004833221,0.0013235576916486025,-0.0025759923737496138,0.005212462041527033,0.0051722340285778046,-0.005621905438601971,-0.001714815036393702,-1.4463959799069075,-1.3235896220797057,5.538827738941526,-0.014463959799069075,-0.013235896220797056,0.055388277389415264 +karman_re400,sr,89,35.6,0.9275488257408142,-0.1135169193148613,0.7858132123947144,-0.14848273992538452,1.4571744203567505,-0.22430312633514404,0.001111912657506764,0.0012532285181805491,0.004280855879187584,0.0047567132860422134,-0.005573502741754055,-0.0022484257351607084,-2.066067473821631,-1.1704338872698488,5.6919834737513835,-0.02066067473821631,-0.011704338872698488,0.05691983473751384 +karman_re400,sr,90,36.0,0.9529212713241577,-0.18144872784614563,0.7780146598815918,-0.34574151039123535,1.3144361972808838,-0.2545636296272278,-0.0006768127786926925,0.004340646788477898,0.0023737053852528334,0.004903652239590883,-0.003420827444642782,-0.002818269422277808,-1.879183981846893,-1.7910622932628624,5.07135506775837,-0.01879183981846893,-0.017910622932628625,0.0507135506775837 +karman_re400,sr,91,36.4,0.9886369109153748,-0.20586994290351868,0.822823166847229,-0.4084264039993286,1.1906356811523438,-0.30649006366729736,-0.002861008048057556,0.005778434220701456,0.0006795568624511361,0.005685280077159405,-0.0018016822868958116,-0.002955111674964428,-1.104992592119129,-2.0675958472680516,4.794821513753181,-0.01104992592119129,-0.020675958472680517,0.047948215137531815 +karman_re400,sr,92,36.8,1.0344618558883667,-0.22449615597724915,0.8652489185333252,-0.40478289127349854,1.0849686861038208,-0.2826489806175232,-0.0038115065544843674,0.006105499807745218,-0.00013558492355514318,0.005880590528249741,-0.0007948379497975111,-0.003693442093208432,-0.473161678394311,-1.6459764251958808,5.216440935825352,-0.00473161678394311,-0.01645976425195881,0.05216440935825352 +karman_re400,sr,93,37.2,1.0980517864227295,-0.2637898325920105,0.8861903548240662,-0.39748644828796387,1.0105173587799072,-0.21593031287193298,-0.003039749339222908,0.006117148324847221,-0.0012088875519111753,0.0045111775398254395,0.0010526209371164441,-0.0049332017078995705,-0.12571672846024018,-2.001052236586597,4.861365124434635,-0.0012571672846024018,-0.020010522365865972,0.048613651244346356 +karman_re400,sr,94,37.6,1.217149257659912,-0.3916216790676117,0.909099817276001,-0.34569305181503296,0.956268310546875,-0.12589554488658905,-0.0007229245966300368,0.005463606212288141,-0.0032597326207906008,0.00254881102591753,0.0035728150978684425,-0.005458352621644735,0.4312599825989873,-3.7071664407581464,3.1552509202630854,0.004312599825989873,-0.037071664407581466,0.031552509202630856 +karman_re400,sr,95,38.0,1.4483202695846558,-0.27265241742134094,0.9027467370033264,-0.21956434845924377,0.9156227707862854,-0.020419947803020477,0.0013281223364174366,0.0033347466960549355,-0.00559899490326643,0.0010366049828007817,0.005043161101639271,-0.005007421597838402,1.3029375854886136,-5.3337314335745365,1.5286859274466955,0.013029375854886137,-0.053337314335745366,0.015286859274466956 +karman_re400,sr,96,38.4,1.498295545578003,0.20286303758621216,0.8122920393943787,0.046136051416397095,0.9102072715759277,0.07731117308139801,0.0013704965822398663,-0.0002591984230093658,-0.006447506137192249,0.0014054443454369903,0.004571729339659214,-0.004640746396034956,2.0294135687568007,-6.027689503966641,0.8347278570545914,0.020294135687568007,-0.06027689503966641,0.008347278570545914 +karman_re400,sr,97,38.8,1.3446847200393677,0.22203658521175385,0.766415536403656,0.30658090114593506,0.9322476983070374,0.15768195688724518,-4.402000558911823e-05,-0.003875672584399581,-0.004573057405650616,0.0026303925551474094,0.0027462958823889494,-0.004789771977812052,2.1013210089891765,-5.546743228405115,1.315674132616118,0.021013210089891765,-0.05546743228405115,0.013156741326161181 +karman_re400,sr,98,39.2,1.2326347827911377,0.29704758524894714,0.8080486059188843,0.4023183584213257,0.9686669111251831,0.19704791903495789,-0.002188522834330797,-0.005762903485447168,-0.002659217454493046,0.003075071843340993,0.0009683931129984558,-0.0054125296883285046,1.3957693225343595,-4.843207220126168,2.0192101408950647,0.013957693225343595,-0.048432072201261674,0.020192101408950648 +karman_re400,sr,99,39.6,1.1192269325256348,0.2959102988243103,0.8536007404327393,0.4130686819553375,1.0132837295532227,0.21291615068912506,-0.003647859673947096,-0.006174902897328138,-0.0015926563646644354,0.0038222072180360556,7.21932592568919e-05,-0.005880746059119701,0.6917697978153294,-4.959651078772672,1.90276628224856,0.006917697978153295,-0.04959651078772672,0.0190276628224856 +karman_re400,sr,100,40.0,1.0341976881027222,0.2422080785036087,0.8822017908096313,0.4015687108039856,1.0759996175765991,0.24170073866844177,-0.003652723738923669,-0.006043978501111269,0.0001160181054729037,0.005223758984357119,-0.0007644270081073046,-0.0050250147469341755,0.3174796925705785,-4.7772684821573455,2.085148878863887,0.003174796925705785,-0.04777268482157346,0.020851488788638867 +karman_re400,sr,101,40.4,0.9752638339996338,0.15815573930740356,0.9044614434242249,0.36527198553085327,1.1945849657058716,0.3319346308708191,-0.0017467791913077235,-0.005618229042738676,0.002875532489269972,0.006081818137317896,-0.002554425038397312,-0.003388741286471486,-0.16789711212856154,-3.301251633567975,3.5611657274532575,-0.0016789711212856155,-0.033012516335679754,0.035611657274532575 +karman_re400,sr,102,40.8,0.927570104598999,0.05649876594543457,0.9157959222793579,0.2692836821079254,1.4400922060012817,0.35296452045440674,0.000724721176084131,-0.003935679327696562,0.004902894143015146,0.00568640511482954,-0.004974116571247578,-0.0018860186683014035,-1.0354696434953041,-1.6702302528403177,5.192187108180915,-0.01035469643495304,-0.016702302528403178,0.051921871081809144 +karman_re400,sr,103,41.2,0.9091722369194031,-0.046180419623851776,0.8561125993728638,0.07480092346668243,1.5608311891555786,-0.10571877658367157,0.0014183524763211608,-0.0006002744776196778,0.004900631494820118,0.005022644996643066,-0.00620677787810564,-0.0017266880022361875,-1.8835036390221271,-0.9461705921830328,5.916246768838199,-0.01883503639022127,-0.009461705921830328,0.059162467688381994 +karman_re400,sr,104,41.6,0.9241414070129395,-0.1332235038280487,0.7725100517272949,-0.23014278709888458,1.4079387187957764,-0.1891884058713913,0.0004731167573481798,0.003212293377146125,0.003225720487535,0.004870879929512739,-0.004878184292465448,-0.0024817567318677902,-2.118135393313259,-1.27601241722709,5.586404943794142,-0.02118135393313259,-0.0127601241722709,0.055864049437941425 +karman_re400,sr,105,42.0,0.9552421569824219,-0.18464933335781097,0.7943880558013916,-0.3795146644115448,1.2947349548339844,-0.2674880027770996,-0.0015891401562839746,0.0054890769533813,0.0013621051330119371,0.005255128722637892,-0.0030242695938795805,-0.0028810349758714437,-1.5453799317417292,-1.8689827786477877,4.993434582373444,-0.015453799317417293,-0.01868982778647788,0.04993434582373445 +karman_re400,sr,106,42.4,0.9936046004295349,-0.20184019207954407,0.8414813280105591,-0.4078848958015442,1.1691261529922485,-0.2823932468891144,-0.003407800104469061,0.0061438921838998795,0.00022548803826794028,0.005814379081130028,-0.0018354370258748531,-0.0036219425965100527,-0.8364628731529696,-1.8788103997082313,4.983606961313001,-0.008364628731529697,-0.018788103997082313,0.04983606961313001 +karman_re400,sr,107,42.8,1.0416920185089111,-0.22603219747543335,0.8762474060058594,-0.3923056125640869,1.0738935470581055,-0.2404298037290573,-0.0038075789343565702,0.006161099765449762,-0.0005341229843907058,0.005304114893078804,-0.00021740222291555256,-0.00495218625292182,-0.3930095825915704,-1.9975944291238965,4.8648229318973355,-0.0039300958259157045,-0.019975944291238966,0.048648229318973356 +karman_re400,sr,108,43.2,1.0975254774093628,-0.2828674614429474,0.8877103328704834,-0.3729195296764374,1.002629041671753,-0.16251139342784882,-0.0022433167323470116,0.0058745406568050385,-0.002126426436007023,0.003758329199627042,0.0024068739730864763,-0.005954215303063393,0.060397292667798815,-3.2010857476277264,3.661331613393506,0.0006039729266779882,-0.032010857476277264,0.03661331613393506 +karman_re400,sr,109,43.6,1.1702555418014526,-0.4424102008342743,0.8967766761779785,-0.3040558099746704,0.9484715461730957,-0.06558352708816528,0.00038452353328466415,0.0045343744568526745,-0.004524771589785814,0.0021106095518916845,0.004660478327423334,-0.005779643543064594,0.8644809714520458,-4.86707860622665,1.9953387547945831,0.008644809714520458,-0.0486707860622665,0.01995338754794583 +karman_re400,sr,110,44.0,1.34950590133667,0.060259655117988586,0.8405357599258423,-0.11884607374668121,0.9228830933570862,0.032099124044179916,0.001515749841928482,0.0015004384331405163,-0.006209679413586855,0.001501966849900782,0.005153317004442215,-0.005152557976543903,1.7515878179021016,-5.830356594471515,1.0320607665497175,0.017515878179021015,-0.05830356594471515,0.010320607665497175 +karman_re400,sr,111,44.4,1.3931820392608643,0.24819640815258026,0.7622053027153015,0.18707308173179626,0.9332526326179504,0.11713120341300964,0.0008608332136645913,-0.002478301292285323,-0.005484005901962519,0.002199714072048664,0.003712076460942626,-0.004964988678693771,2.1668747481105406,-5.818296973309499,1.0441203877117338,0.021668747481105408,-0.05818296973309499,0.010441203877117338 +karman_re400,sr,112,44.8,1.3137571811676025,0.2658107578754425,0.7836506366729736,0.35194846987724304,0.9599228501319885,0.17353318631649017,-0.0010552896419540048,-0.0052106366492807865,-0.0035525828134268522,0.00268901651725173,0.0018256180919706821,-0.005233017727732658,1.7536535188999203,-5.2393965632129,1.6230207978083322,0.017536535188999204,-0.052393965632128996,0.016230207978083323 +karman_re400,sr,113,45.2,1.1889851093292236,0.265996515750885,0.8288165330886841,0.39408645033836365,0.9937486052513123,0.18982861936092377,-0.003055864479392767,-0.00620836578309536,-0.0022572046145796776,0.0033752992749214172,0.000504357973113656,-0.005805123597383499,1.025599877307059,-5.094707904536117,1.7677094564851157,0.010255998773070589,-0.050947079045361165,0.017677094564851156 +karman_re400,sr,114,45.6,1.0861088037490845,0.2335597425699234,0.863511323928833,0.3845701217651367,1.0381985902786255,0.20808935165405273,-0.003919284325093031,-0.006263792980462313,-0.0008105267770588398,0.004741877783089876,-0.00020076875807717443,-0.005607376806437969,0.526618157434693,-5.0200486772376,1.8423686837836322,0.00526618157434693,-0.050200486772376006,0.018423686837836323 +karman_re400,sr,115,46.0,1.0140135288238525,0.1690235733985901,0.8709607124328613,0.3773951232433319,1.0962140560150146,0.2459336817264557,-0.0029075676575303078,-0.006037652958184481,0.0017422856763005257,0.005979219451546669,-0.0015468153869733214,-0.004329071380198002,0.11627824256750534,-3.9971506100202343,2.865266751000998,0.0011627824256750534,-0.03997150610020234,0.02865266751000998 +karman_re400,sr,116,46.4,0.9599903225898743,0.0844210833311081,0.8735653162002563,0.31535112857818604,1.1898643970489502,0.38671067357063293,-0.000288388371700421,-0.005024822894483805,0.004293707199394703,0.006033578887581825,-0.003858306910842657,-0.00270818080753088,-0.6272174852298185,-2.352191884092994,4.510225476928238,-0.0062721748522981844,-0.02352191884092994,0.04510225476928238 +karman_re400,sr,117,46.8,0.9290910363197327,-0.0101167568936944,0.8371723890304565,0.13495729863643646,1.3837039470672607,0.1471145749092102,0.001392135745845735,-0.002393049420788884,0.0053071677684783936,0.005320436786860228,-0.005858327727764845,-0.0018085044575855136,-1.5545541749610152,-1.2567611594361732,5.6056562015850595,-0.015545541749610153,-0.012567611594361733,0.056056562015850596 +karman_re400,sr,118,47.2,0.9317453503608704,-0.09843434393405914,0.7580342292785645,-0.14901578426361084,1.413116455078125,-0.23887844383716583,0.0011373618617653847,0.0015458239940926433,0.004249112214893103,0.004984387196600437,-0.005654776468873024,-0.0022144580725580454,-2.129212168241444,-1.1347881125840225,5.72762924843721,-0.02129212168241444,-0.011347881125840224,0.0572762924843721 +karman_re400,sr,119,47.6,0.9529140591621399,-0.1661442220211029,0.7636368274688721,-0.3306295871734619,1.311254620552063,-0.23119406402111053,-0.0006290529854595661,0.004608318209648132,0.0023449717555195093,0.0051437742076814175,-0.0037351923529058695,-0.002629833295941353,-1.888629152685495,-1.6199772512696369,5.242440109751596,-0.01888629152685495,-0.01619977251269637,0.052424401097515956 +karman_re400,sr,120,48.0,0.9869438409805298,-0.1906755417585373,0.8113000392913818,-0.38975659012794495,1.1978182792663574,-0.2817574739456177,-0.002757454290986061,0.005964479874819517,0.0007963552488945425,0.00577301811426878,-0.002287019044160843,-0.003032261971384287,-1.1594612535484905,-1.7873656120810277,5.075051748940204,-0.011594612535484905,-0.017873656120810277,0.05075051748940204 +karman_re400,sr,121,48.4,1.0287156105041504,-0.2100607305765152,0.8494051098823547,-0.38944491744041443,1.0950323343276978,-0.2624093294143677,-0.003880513599142432,0.006220114417374134,1.3569427210313734e-05,0.005841491278260946,-0.0011035603238269687,-0.004092525225132704,-0.5879862712967205,-1.6390531979786012,5.223364163042631,-0.005879862712967206,-0.016390531979786013,0.05223364163042631 +karman_re400,sr,122,48.8,1.0838693380355835,-0.24822302162647247,0.8622652292251587,-0.38434627652168274,1.0203204154968262,-0.204493910074234,-0.0033236793242394924,0.006122072227299213,-0.001098884386010468,0.004659021273255348,0.0010234443470835686,-0.005439590197056532,-0.2130318587485371,-2.2875757057150703,4.574841655306162,-0.002130318587485371,-0.022875757057150704,0.045748416553061624 +karman_re400,sr,123,49.2,1.168797254562378,-0.3790147006511688,0.8676510453224182,-0.34362873435020447,0.9656028151512146,-0.11866328120231628,-0.000997432740405202,0.00542956730350852,-0.003160528838634491,0.0029228567145764828,0.003649869468063116,-0.005862772464752197,0.40471899926274696,-3.941615591361189,2.9208017696600432,0.0040471899926274695,-0.03941615591361189,0.029208017696600433 +karman_re400,sr,124,49.6,1.3407626152038574,-0.26688987016677856,0.8505616784095764,-0.19969478249549866,0.9244324564933777,-0.017379917204380035,0.0011880462989211082,0.0032762913033366203,-0.005424526520073414,0.0016048791585490108,0.0051439497619867325,-0.005309815984219313,1.2987137874956316,-5.353592816559482,1.5088245444617503,0.012987137874956317,-0.053535928165594826,0.015088245444617503 +karman_re400,sr,125,50.0,1.4222184419631958,0.22993314266204834,0.7704432010650635,0.07454269379377365,0.92119300365448,0.07608520239591599,0.0013595852069556713,-0.00037892197724431753,-0.006037426646798849,0.0017853272147476673,0.004651140887290239,-0.004848858341574669,2.0153631611874996,-5.85383313099228,1.0085842300289518,0.020153631611874997,-0.0585383313099228,0.010085842300289518 +karman_re400,sr,126,50.4,1.3219387531280518,0.22831283509731293,0.7526717185974121,0.3059855103492737,0.9419272541999817,0.15389011800289154,-9.406463505001739e-05,-0.003879898227751255,-0.004235570318996906,0.002522657858207822,0.002833461854606867,-0.004891233053058386,2.038264048587025,-5.434423785621074,1.4279935754001585,0.02038264048587025,-0.05434423785621074,0.014279935754001586 +karman_re400,sr,127,50.8,1.2184027433395386,0.2988378405570984,0.7975712418556213,0.3923279643058777,0.9733827710151672,0.18930061161518097,-0.0022773686796426773,-0.005718545522540808,-0.002428686711937189,0.0028368874918669462,0.0010614433558657765,-0.005482892971485853,1.3480341581608861,-4.979998430471114,1.8824189305501182,0.013480341581608862,-0.049799984304711144,0.01882418930550118 +karman_re400,sr,128,51.2,1.1116787195205688,0.291829377412796,0.8422131538391113,0.40498316287994385,1.0168455839157104,0.2067922204732895,-0.0037372661754488945,-0.006204542703926563,-0.001366293290629983,0.0035892967134714127,0.00011392775195417926,-0.005936481524258852,0.6655528553669414,-5.1614075672010715,1.7010097938201605,0.006655528553669414,-0.05161407567201071,0.017010097938201605 +karman_re400,sr,129,51.6,1.0305542945861816,0.23784379661083221,0.8680270910263062,0.3973360061645508,1.0782768726348877,0.23815150558948517,-0.003575451672077179,-0.006169809028506279,0.00034035209682770073,0.004929730203002691,-0.0007444620132446289,-0.004998525604605675,0.28227181289156966,-4.966011453128486,1.896405907892746,0.002822718128915697,-0.04966011453128486,0.01896405907892746 +karman_re400,sr,130,52.0,0.9721983075141907,0.1537667214870453,0.8849480152130127,0.3645678460597992,1.1889393329620361,0.3418896198272705,-0.0015820841072127223,-0.005728980991989374,0.0029744890052825212,0.005719655193388462,-0.002550096483901143,-0.0032531009055674076,-0.206869404427522,-3.476193367118313,3.3862239939029197,-0.00206869404427522,-0.03476193367118313,0.0338622399390292 +karman_re400,sr,131,52.4,0.9265588521957397,0.051368702203035355,0.896852970123291,0.2525130808353424,1.4132599830627441,0.34727993607521057,0.000876526755746454,-0.003967696335166693,0.0048852707259356976,0.005381792783737183,-0.0049434686079621315,-0.0016713644145056605,-1.0535147904558086,-1.818351293924929,5.044066067096304,-0.010535147904558086,-0.01818351293924929,0.05044066067096303 +karman_re400,sr,132,52.8,0.9098407626152039,-0.04982670396566391,0.829603374004364,0.033128172159194946,1.5153052806854248,-0.12623053789138794,0.0014616574626415968,-0.0006465243641287088,0.004937369376420975,0.004820855800062418,-0.00620667077600956,-0.0014901830581948161,-1.874298493537511,-1.0049933597042222,5.8574240013170105,-0.01874298493537511,-0.010049933597042222,0.058574240013170104 +karman_re400,sr,133,53.2,0.9259234666824341,-0.13504046201705933,0.7600966691970825,-0.25223803520202637,1.367871880531311,-0.21106071770191193,0.00038170619518496096,0.0031411400996148586,0.0032892460003495216,0.004754628986120224,-0.00483147706836462,-0.002476444933563471,-2.125120726071665,-1.2533121061091324,5.6091052549121,-0.02125120726071665,-0.012533121061091324,0.056091052549121 +karman_re400,sr,134,53.6,0.9588770270347595,-0.1852322816848755,0.7923401594161987,-0.3834373950958252,1.2708325386047363,-0.2921464741230011,-0.0017914531053975224,0.005418283864855766,0.001396871404722333,0.005268467590212822,-0.002760846633464098,-0.0028735764790326357,-1.5485871073650808,-1.9415248753291723,4.92089248569206,-0.015485871073650808,-0.019415248753291724,0.049208924856920605 +karman_re400,sr,135,54.0,0.9978591799736023,-0.20111721754074097,0.8390085101127625,-0.4111616015434265,1.151464581489563,-0.3007028102874756,-0.0035187900066375732,0.00612266780808568,0.0002319888590136543,0.00595948938280344,-0.0016287286998704076,-0.0033841768745332956,-0.7928590219755208,-1.8652111925138726,4.997206168507359,-0.007928590219755208,-0.018652111925138725,0.04997206168507359 +karman_re400,sr,136,54.4,1.0507768392562866,-0.22413258254528046,0.8738188743591309,-0.3989734649658203,1.0585012435913086,-0.25315314531326294,-0.003753270721063018,0.006147058680653572,-0.00048328802222386,0.005336171016097069,-0.00024641217896714807,-0.004606344737112522,-0.35483086884674986,-1.7472352840039846,5.115182077017248,-0.0035483086884674987,-0.017472352840039847,0.051151820770172475 +karman_re400,sr,137,54.8,1.1342273950576782,-0.2815871238708496,0.8936641216278076,-0.3779464662075043,0.992448627948761,-0.17185169458389282,-0.0021933438256382942,0.005880018696188927,-0.0020425228867679834,0.0036888790782541037,0.002292802557349205,-0.005684052128344774,0.04517120874701366,-2.953981923006558,3.908435438014674,0.00045171208747013655,-0.02953981923006558,0.03908435438014674 +karman_re400,sr,138,55.2,1.3132039308547974,-0.4210400879383087,0.9128215909004211,-0.2955402433872223,0.9380035400390625,-0.0723641887307167,0.00039203549386002123,0.004513757769018412,-0.004412415903061628,0.001947354874573648,0.004520931746810675,-0.005557980388402939,0.8267279935768979,-4.735834168481587,2.1265831925396457,0.008267279935768979,-0.04735834168481587,0.021265831925396456 +karman_re400,sr,139,55.6,1.5295233726501465,-0.013346432708203793,0.8674152493476868,-0.1230771616101265,0.9111409187316895,0.02980176918208599,0.0014686076901853085,0.0015761919785290956,-0.0061678197234869,0.0013444435317069292,0.005071316845715046,-0.0049217697232961655,1.7035511344426275,-5.7921638230462005,1.0702535379750318,0.017035511344426275,-0.05792163823046201,0.010702535379750317 +karman_re400,sr,140,56.0,1.4305355548858643,0.2042524665594101,0.7731127738952637,0.1749306321144104,0.9219585657119751,0.1175362765789032,0.0008085918379947543,-0.002345375018194318,-0.005400775000452995,0.002275758422911167,0.003684981958940625,-0.004722209647297859,2.143255205442865,-5.770389699481049,1.092027661540183,0.02143255205442865,-0.05770389699481049,0.01092027661540183 +karman_re400,sr,141,56.4,1.304895043373108,0.2562544047832489,0.7758010029792786,0.35777974128723145,0.9487972259521484,0.1792648881673813,-0.001208894420415163,-0.005041010212153196,-0.003262260928750038,0.00284808361902833,0.0017639416037127376,-0.005068172235041857,1.7326149369845971,-5.030920856989553,1.8314965040316786,0.017326149369845972,-0.050309208569895535,0.018314965040316787 +karman_re400,sr,142,56.8,1.1804227828979492,0.2953670918941498,0.8231170177459717,0.40833455324172974,0.9868366718292236,0.19947467744350433,-0.0031752195209264755,-0.006047587841749191,-0.0019474280998110771,0.003298058407381177,0.00038712858804501593,-0.005808061920106411,0.9584752952313194,-4.882904408795348,1.9795129522258847,0.009584752952313194,-0.04882904408795348,0.01979512952225885 +karman_re400,sr,143,57.2,1.0780260562896729,0.26572978496551514,0.8626970052719116,0.40030384063720703,1.0341975688934326,0.2209394872188568,-0.0038440937642008066,-0.0061296625062823296,-0.0006997493910603225,0.004413815215229988,-0.0002979920827783644,-0.005564105696976185,0.44518996124310917,-5.072477119581199,1.7899402414400327,0.0044518996124310916,-0.05072477119581199,0.01789940241440033 +karman_re400,sr,144,57.6,1.0058097839355469,0.1960878223180771,0.8804630041122437,0.3894488513469696,1.0999716520309448,0.2670859396457672,-0.0027640198823064566,-0.005967860110104084,0.0016698372783139348,0.00564790703356266,-0.0016203803243115544,-0.004136905539780855,0.07661339792413983,-4.183373151150541,2.679044209870691,0.0007661339792413984,-0.04183373151150541,0.02679044209870691 +karman_re400,sr,145,58.0,0.9523350596427917,0.10489770025014877,0.9019439220428467,0.3302735388278961,1.2241251468658447,0.4115602374076843,-0.00021383620332926512,-0.00497135054320097,0.004140691831707954,0.005765163339674473,-0.0038896892219781876,-0.0023363924119621515,-0.6274304045019311,-2.443178563994975,4.419238797026257,-0.006274304045019311,-0.024431785639949747,0.04419238797026258 +karman_re400,sr,146,58.4,0.915703535079956,0.001672990620136261,0.8796922564506531,0.18783944845199585,1.4584603309631348,0.12194065004587173,0.0014077764935791492,-0.002415230730548501,0.0051665171049535275,0.005133946426212788,-0.005961909890174866,-0.0013404692290350795,-1.531359272042789,-1.1891665957380306,5.673250765283202,-0.015313592720427892,-0.011891665957380306,0.05673250765283202 +karman_re400,sr,147,58.8,0.9166693091392517,-0.09081122279167175,0.7855046987533569,-0.0997074618935585,1.459628701210022,-0.2199813723564148,0.0011488674208521843,0.0014873428735882044,0.0041159153915941715,0.004808387253433466,-0.005888183601200581,-0.0019483511568978429,-2.1221433638468024,-0.950688487412675,5.911728873608557,-0.021221433638468023,-0.00950688487412675,0.05911728873608557 +karman_re400,sr,148,59.2,0.9402351975440979,-0.1624525636434555,0.7671715617179871,-0.3254852294921875,1.3411948680877686,-0.22807912528514862,-0.0005822903476655483,0.004622245207428932,0.002215639455243945,0.004991030786186457,-0.0039016795344650745,-0.0026322745252400637,-1.9077388294068531,-1.5610571225353267,5.3013602384859055,-0.01907738829406853,-0.015610571225353267,0.053013602384859054 +karman_re400,sr,149,59.6,0.9744365811347961,-0.18975037336349487,0.8115403056144714,-0.3975260853767395,1.2165309190750122,-0.27956053614616394,-0.002667807275429368,0.006009587552398443,0.0006735881906934083,0.005607878789305687,-0.002427341416478157,-0.003156907157972455,-1.1665465302713471,-1.8888394420117687,4.973577919009464,-0.011665465302713472,-0.018888394420117686,0.04973577919009464 +karman_re400,sr,150,60.0,1.0179755687713623,-0.2082049548625946,0.8538672924041748,-0.3970711827278137,1.106733798980713,-0.2652003765106201,-0.0038375472649931908,0.006206291727721691,-8.80721490830183e-05,0.0057185934856534,-0.0011949579929932952,-0.0042866189032793045,-0.5913339945075755,-1.828540651095419,5.0338767099258135,-0.005913339945075756,-0.01828540651095419,0.050338767099258136 +karman_re400,sr,151,60.4,1.074914574623108,-0.24425218999385834,0.8747202157974243,-0.3868430256843567,1.0277183055877686,-0.20788726210594177,-0.0032879177015274763,0.006063900422304869,-0.0011725777294486761,0.004608205985277891,0.0010190181201323867,-0.0056202709674835205,-0.2110783895350576,-2.494853541688481,4.367563819332751,-0.002110783895350576,-0.024948535416884812,0.04367563819332751 +karman_re400,sr,152,60.8,1.1591792106628418,-0.3641831576824188,0.8876053690910339,-0.34798353910446167,0.9689403772354126,-0.12298714369535446,-0.000920008635148406,0.005369256716221571,-0.003296696348115802,0.0029297771397978067,0.0036738389171659946,-0.006008961703628302,0.41792794169909436,-4.092988755781955,2.769428605239277,0.004179279416990944,-0.04092988755781955,0.02769428605239277 +karman_re400,sr,153,61.2,1.3366197347640991,-0.26358723640441895,0.878519594669342,-0.2288825362920761,0.928192675113678,-0.02292306162416935,0.001199201913550496,0.003177157836034894,-0.005548202898353338,0.0017004061955958605,0.0051809074357151985,-0.005436754319816828,1.329251219615626,-5.444659425526183,1.4177579354950498,0.01329251219615626,-0.054446594255261827,0.014177579354950499 +karman_re400,sr,154,61.6,1.4443840980529785,0.23514476418495178,0.7939555644989014,0.03857478126883507,0.9206017255783081,0.07124116271734238,0.001347044832073152,-0.0005672173574566841,-0.0060551967471838,0.0018926053307950497,0.004568976350128651,-0.004965679720044136,2.0459953868943903,-5.874372693060645,0.9880446679605881,0.020459953868943902,-0.05874372693060645,0.009880446679605881 +karman_re400,sr,155,62.0,1.3552708625793457,0.2114715427160263,0.7601938843727112,0.2913352847099304,0.9385994672775269,0.1488184928894043,-8.555808017263189e-05,-0.004056589212268591,-0.004312716890126467,0.002532730810344219,0.0027474781963974237,-0.005008451174944639,2.025984305301292,-5.440664038011052,1.4217533230101806,0.02025984305301292,-0.05440664038011052,0.014217533230101807 +karman_re400,sr,156,62.4,1.2411282062530518,0.26121580600738525,0.8019614219665527,0.3822789788246155,0.9705141186714172,0.18339772522449493,-0.002229918958619237,-0.0058202315121889114,-0.002677908632904291,0.0029606614261865616,0.0010263283038511872,-0.005512529984116554,1.3463489635048473,-5.050059681229431,1.812357679791801,0.013463489635048474,-0.05050059681229431,0.018123576797918012 +karman_re400,sr,157,62.8,1.1273845434188843,0.2597378194332123,0.8438569903373718,0.39280688762664795,1.0107134580612183,0.19995351135730743,-0.0037122645881026983,-0.006233700085431337,-0.0014979897532612085,0.003926096949726343,0.0001224481238750741,-0.005874448921531439,0.7063821182358533,-5.099852291387325,1.7625650696339068,0.007063821182358533,-0.05099852291387325,0.01762565069633907 +karman_re400,sr,158,63.2,1.0426403284072876,0.21462354063987732,0.8657976388931274,0.3818611204624176,1.0626988410949707,0.22845593094825745,-0.003621442709118128,-0.006152356043457985,0.00041600147960707545,0.005295987240970135,-0.0007914743619039655,-0.004992961883544922,0.3090105626784576,-4.705218291777123,2.1571990692441094,0.003090105626784576,-0.04705218291777123,0.021571990692441093 +karman_re400,sr,159,63.6,0.9826480746269226,0.13774240016937256,0.8708918690681458,0.358450710773468,1.136992335319519,0.31689679622650146,-0.0016059264307841659,-0.005674375221133232,0.0030978163704276085,0.006002187728881836,-0.0026661234442144632,-0.0033618053421378136,-0.23026047124087953,-3.233063158857505,3.629354202163728,-0.0023026047124087953,-0.03233063158857505,0.03629354202163728 +karman_re400,sr,160,64.0,0.9358938336372375,0.041981615126132965,0.8631559610366821,0.2569100558757782,1.2647804021835327,0.38315609097480774,0.0008744288934394717,-0.003880030009895563,0.00499152485281229,0.005578986834734678,-0.005036500282585621,-0.001888821367174387,-1.0991586351431077,-1.7046866830431124,5.15773067797812,-0.010991586351431078,-0.017046866830431124,0.0515773067797812 +karman_re400,sr,161,64.4,0.9218515753746033,-0.05221431702375412,0.7909915447235107,0.016894182190299034,1.4150989055633545,-0.18399544060230255,0.001459879451431334,-0.0004556103376671672,0.004910541232675314,0.005010676570236683,-0.006158816162496805,-0.0017182203009724617,-1.9123014423233031,-1.0182430865784577,5.844174274442775,-0.019123014423233033,-0.010182430865784577,0.05844174274442775 +karman_re400,sr,162,64.8,0.9365440607070923,-0.1345331072807312,0.7453570365905762,-0.25620022416114807,1.3589935302734375,-0.21024015545845032,0.00037421929300762713,0.0033020731061697006,0.0032532336190342903,0.004917909856885672,-0.00475967675447464,-0.0024418726097792387,-2.1108790441359244,-1.2783015095177483,5.584115851503483,-0.021108790441359243,-0.012783015095177484,0.055841158515034836 +karman_re400,sr,163,65.2,0.96445631980896,-0.17958486080169678,0.7841550707817078,-0.37185946106910706,1.2574700117111206,-0.26318392157554626,-0.0017609653295949101,0.005514460150152445,0.0013899921905249357,0.005353841930627823,-0.002891169162467122,-0.0028074816800653934,-1.5280276881616,-1.8121504732068798,5.050266887814352,-0.015280276881616,-0.018121504732068798,0.050502668878143524 +karman_re400,sr,164,65.6,1.0028407573699951,-0.19609828293323517,0.8298208713531494,-0.39791443943977356,1.142316460609436,-0.27407050132751465,-0.003505916567519307,0.006195046938955784,0.00028598171775229275,0.005933397449553013,-0.0017226971685886383,-0.0035056353081017733,-0.8163991333893522,-1.7661669016589407,5.096250459362292,-0.008163991333893523,-0.01766166901658941,0.05096250459362292 +karman_re400,sr,165,66.0,1.0534284114837646,-0.22116880118846893,0.8597639203071594,-0.38892805576324463,1.0535988807678223,-0.23732973635196686,-0.003804995911195874,0.006199301686137915,-0.0004940753569826484,0.005326464772224426,-0.00017770826525520533,-0.004822330549359322,-0.3830464602601647,-1.8437171251669162,5.0187002358543165,-0.003830464602601647,-0.018437171251669163,0.05018700235854317 +karman_re400,sr,166,66.4,1.126562476158142,-0.28547412157058716,0.867575466632843,-0.37502673268318176,0.9901162981987,-0.1654442548751831,-0.0022152988240122795,0.005900378804653883,-0.0020844789687544107,0.00374681712128222,0.002447750186547637,-0.005840335972607136,0.060329849361712054,-3.101559903188587,3.7608574578326452,0.0006032984936171205,-0.03101559903188587,0.037608574578326455 +karman_re400,sr,167,66.8,1.2747890949249268,-0.42467212677001953,0.8777855038642883,-0.28913697600364685,0.9414787292480469,-0.072412870824337,0.0004018331237602979,0.004495770670473576,-0.004473604261875153,0.002078922465443611,0.00465091597288847,-0.005651587620377541,0.8642766879422991,-4.800141592300935,2.062275768720297,0.00864276687942299,-0.048001415923009355,0.02062275768720297 +karman_re400,sr,168,67.2,1.4714457988739014,0.03940042480826378,0.8269262909889221,-0.09093816578388214,0.9168510437011719,0.02696908637881279,0.001501888153143227,0.0014760596677660942,-0.00612445967271924,0.0014995080418884754,0.0051488494500517845,-0.005015027709305286,1.7400069275708165,-5.767341890058902,1.09507547096233,0.017400069275708165,-0.057673418900589024,0.010950754709623301 +karman_re400,sr,169,67.6,1.3894915580749512,0.21422012150287628,0.7497501373291016,0.19781005382537842,0.9260528683662415,0.11421428620815277,0.0007828034576959908,-0.0024444072041660547,-0.005298342555761337,0.0022674323990941048,0.0037230411544442177,-0.004815520253032446,2.1497717650441515,-5.729974976179442,1.132442384841791,0.021497717650441516,-0.057299749761794416,0.01132442384841791 +karman_re400,sr,170,68.0,1.291172742843628,0.2689516246318817,0.7708039283752441,0.35703423619270325,0.9528446197509766,0.17371927201747894,-0.0012434128439053893,-0.005096796900033951,-0.0032286294735968113,0.0027331167366355658,0.0018071384401991963,-0.005164174363017082,1.720339234081257,-5.097380123476999,1.7650372375442331,0.01720339234081257,-0.05097380123476999,0.01765037237544233 +karman_re400,sr,171,68.4,1.173922061920166,0.2974734902381897,0.8190324306488037,0.4032403826713562,0.9892262816429138,0.1931375116109848,-0.0032037226483225822,-0.006093749776482582,-0.0019457049202173948,0.003203541273251176,0.000465978606371209,-0.0058754123747348785,0.9602993724821176,-5.020855123439164,1.8415622375820684,0.009602993724821176,-0.05020855123439164,0.018415622375820683 +karman_re400,sr,172,68.8,1.0755739212036133,0.2636781930923462,0.8576741218566895,0.3964557945728302,1.0369144678115845,0.21482765674591064,-0.0038815138395875692,-0.006189127452671528,-0.0006886284681968391,0.004384883679449558,-0.0002431638858979568,-0.005597415380179882,0.4598977190477234,-5.178320861787473,1.6840964992337593,0.004598977190477234,-0.05178320861787473,0.016840964992337594 +karman_re400,sr,173,69.2,1.0053894519805908,0.19255851209163666,0.8744539618492126,0.38674023747444153,1.1052477359771729,0.26130998134613037,-0.0027842840645462275,-0.006011345889419317,0.0017087714513763785,0.005614057183265686,-0.0015644330997020006,-0.004158477298915386,0.08494818787670486,-4.224072117430877,2.6383452435903547,0.0008494818787670486,-0.04224072117430877,0.026383452435903548 +karman_re400,sr,174,69.6,0.9502797722816467,0.0990784615278244,0.8939045071601868,0.3199372887611389,1.236764669418335,0.40488436818122864,-0.00022047125094104558,-0.004982450045645237,0.004163943696767092,0.005728201940655708,-0.0038410467095673084,-0.0023966217413544655,-0.6241860884404349,-2.479418249693129,4.382999111328103,-0.006241860884404349,-0.024794182496931293,0.04382999111328103 +karman_re400,sr,175,70.0,0.9153562784194946,-0.004107040818780661,0.8698382377624512,0.16251520812511444,1.4706283807754517,0.13436612486839294,0.0014137666439637542,-0.00239975331351161,0.005192335229367018,0.005079332739114761,-0.005862870719283819,-0.0014209875371307135,-1.5265173843433988,-1.252718727957236,5.609698633063996,-0.015265173843433988,-0.01252718727957236,0.05609698633063996 +karman_re400,sr,176,70.4,0.9191461801528931,-0.095527783036232,0.7786003947257996,-0.12104056030511856,1.4489270448684692,-0.21805401146411896,0.0011084630386903882,0.0014795820461586118,0.004158062860369682,0.004752759356051683,-0.005738868843764067,-0.002029397990554571,-2.1081804238963238,-1.0390500684604986,5.823367292560734,-0.021081804238963237,-0.010390500684604986,0.05823367292560734 +karman_re400,sr,177,70.8,0.9423490762710571,-0.16598403453826904,0.7648489475250244,-0.3306920528411865,1.31960129737854,-0.24078083038330078,-0.0006998811732046306,0.004559805616736412,0.002255863044410944,0.004959865007549524,-0.003653501160442829,-0.002677147975191474,-1.8873024864670143,-1.6504274845028337,5.211989876518398,-0.018873024864670143,-0.01650427484502834,0.05211989876518398 +karman_re400,sr,178,71.2,0.9778850674629211,-0.19277845323085785,0.8099836111068726,-0.40062373876571655,1.203718900680542,-0.2980748414993286,-0.002824237337335944,0.005933037493377924,0.0006656309706158936,0.0056737069971859455,-0.002144596306607127,-0.0030442008282989264,-1.1268904434898155,-1.9385608011176838,4.923856559903548,-0.011268904434898155,-0.01938560801117684,0.049238565599035486 +karman_re400,sr,179,71.6,1.0232998132705688,-0.21195077896118164,0.8525300025939941,-0.4008859395980835,1.0970406532287598,-0.27830639481544495,-0.0038442695513367653,0.006184884812682867,-8.951873314799741e-05,0.005778919439762831,-0.0010215870570391417,-0.0040053026750683784,-0.535898305292454,-1.7117985428531306,5.150618818168102,-0.00535898305292454,-0.017117985428531306,0.05150618818168102 +karman_re400,sr,180,72.0,1.0856595039367676,-0.25050756335258484,0.8734052777290344,-0.3922847807407379,1.0192334651947021,-0.21530450880527496,-0.0031852000392973423,0.0060876719653606415,-0.0011842132080346346,0.004529193975031376,0.0010360188316553831,-0.005314941518008709,-0.17774143722767738,-2.271456829909066,4.590960531112167,-0.0017774143722767738,-0.02271456829909066,0.04590960531112167 +karman_re400,sr,181,72.4,1.1979495286941528,-0.3763396739959717,0.8926956057548523,-0.3465527296066284,0.9626020789146423,-0.12646090984344482,-0.0008146142354235053,0.005375578533858061,-0.0032716577406972647,0.002726559527218342,0.0036258462350815535,-0.005742670968174934,0.42338874050131303,-3.945001843280236,2.9174155177409964,0.00423388740501313,-0.03945001843280236,0.029174155177409965 +karman_re400,sr,182,72.8,1.4217050075531006,-0.25764769315719604,0.8870756030082703,-0.22241860628128052,0.9196275472640991,-0.022900141775608063,0.001253883121535182,0.0031739091500639915,-0.0055446685291826725,0.0014054664643481374,0.0050932858139276505,-0.005220525898039341,1.315324465507452,-5.403416484868239,1.4590008761529936,0.01315324465507452,-0.05403416484868239,0.014590008761529936 +karman_re400,sr,183,73.2,1.4814361333847046,0.206077441573143,0.8023887872695923,0.038318559527397156,0.9136062860488892,0.07277710735797882,0.0013240973930805922,-0.0005112418439239264,-0.006125166546553373,0.0017293593846261501,0.004523236770182848,-0.00478717964142561,2.028612329848544,-5.925841301521336,0.9365760594998962,0.02028612329848544,-0.05925841301521336,0.009365760594998962 +karman_re400,sr,184,73.6,1.3457403182983398,0.21130920946598053,0.7609478831291199,0.2960270345211029,0.9342381358146667,0.1516280472278595,-0.00015882104344200343,-0.004000453278422356,-0.004268237855285406,0.002595470519736409,0.0026983555871993303,-0.0048678875900805,2.0306049043650427,-5.430689499717361,1.4317278613038713,0.020306049043650427,-0.05430689499717361,0.014317278613038713 +karman_re400,sr,185,74.0,1.2333786487579346,0.2826231122016907,0.8002206683158875,0.39172911643981934,0.9667937755584717,0.1883680373430252,-0.002322638873010874,-0.005776083096861839,-0.002505545038729906,0.003011092310771346,0.0009516454301774502,-0.005471182521432638,1.3284995308914334,-4.917121508541495,1.945295852479737,0.013284995308914334,-0.04917121508541495,0.01945295852479737 +karman_re400,sr,186,74.4,1.1213088035583496,0.28204137086868286,0.8446170091629028,0.4037666618824005,1.0098077058792114,0.2053884118795395,-0.003720301203429699,-0.006178904790431261,-0.001397875719703734,0.00383037724532187,5.810601942357607e-05,-0.005885561928153038,0.6592714149410219,-5.039839265908078,1.8225780951131534,0.00659271414941022,-0.05039839265908078,0.018225780951131535 +karman_re400,sr,187,74.8,1.0379078388214111,0.2313987910747528,0.871778130531311,0.3929862678050995,1.0686854124069214,0.23584112524986267,-0.003538108430802822,-0.006099808029830456,0.0004054293385706842,0.00515972264111042,-0.0008352029253728688,-0.004942107945680618,0.2776494815416182,-4.775075228621432,2.0873421323998,0.0027764948154161825,-0.047750752286214324,0.020873421323998 +karman_re400,sr,188,75.2,0.976803719997406,0.14932461082935333,0.8859043121337891,0.36409980058670044,1.1647552251815796,0.33127361536026,-0.0015072369715198874,-0.005631064064800739,0.0030655136797577143,0.005883309058845043,-0.002700849436223507,-0.0032305335626006126,-0.2365832589866102,-3.2889124129252765,3.5735049480959553,-0.002365832589866102,-0.03288912412925277,0.035735049480959555 +karman_re400,sr,189,75.6,0.9292641282081604,0.049135204404592514,0.8914922475814819,0.26773279905319214,1.3614099025726318,0.36565902829170227,0.0008941023261286318,-0.003845241852104664,0.004934181924909353,0.0054860482923686504,-0.005092664156109095,-0.0017102002166211605,-1.0996207483292506,-1.6965829416013798,5.165834419419852,-0.010996207483292506,-0.016965829416013798,0.05165834419419852 +karman_re400,sr,190,76.0,0.913236677646637,-0.04965794458985329,0.822822630405426,0.04575604945421219,1.4953536987304688,-0.16129355132579803,0.0014525220030918717,-0.0004365712811704725,0.004861115477979183,0.0049215080216526985,-0.00623939698562026,-0.0015804989961907268,-1.912076601703143,-0.9622160093724131,5.900201351648819,-0.01912076601703143,-0.009622160093724132,0.0590020135164882 +karman_re400,sr,191,76.4,0.9278286695480347,-0.13386040925979614,0.7562614679336548,-0.24647440016269684,1.3781628608703613,-0.19559669494628906,0.0003573673602659255,0.0033293224405497313,0.00316783064045012,0.004845209885388613,-0.004844322334975004,-0.0024348602164536715,-2.1168201822448576,-1.2465533043964196,5.615864056624813,-0.021168201822448576,-0.012465533043964196,0.05615864056624813 +karman_re400,sr,192,76.8,0.9577754735946655,-0.1819273829460144,0.7877039313316345,-0.37640056014060974,1.2697269916534424,-0.26135414838790894,-0.0017560916021466255,0.005533523391932249,0.0013281985884532332,0.005299344193190336,-0.0029336335137486458,-0.0028772782534360886,-1.527883255591027,-1.855102982374803,5.007314378646429,-0.01527883255591027,-0.01855102982374803,0.05007314378646429 +karman_re400,sr,193,77.2,0.9969898462295532,-0.19866131246089935,0.8335720896720886,-0.4036990702152252,1.1510878801345825,-0.27764102816581726,-0.0034872626420110464,0.006175905466079712,0.00022813520627096295,0.005879596341401339,-0.001772931544110179,-0.003605326171964407,-0.8127131280527071,-1.8474418195828624,5.014975541438369,-0.008127131280527071,-0.018474418195828624,0.0501497554143837 +karman_re400,sr,194,77.6,1.0473836660385132,-0.22382475435733795,0.8653954863548279,-0.3913361430168152,1.0593937635421753,-0.24015529453754425,-0.003789844224229455,0.006147509440779686,-0.0005299263284541667,0.0052808611653745174,-0.0001830945402616635,-0.004932065960019827,-0.38159485853614405,-1.9440841278585839,4.918333233162649,-0.0038159485853614407,-0.01944084127858584,0.049183332331626486 +karman_re400,sr,195,78.0,1.1204190254211426,-0.2875658869743347,0.8783526420593262,-0.37500813603401184,0.9956662654876709,-0.1665877103805542,-0.002207563491538167,0.005842301063239574,-0.0021517565473914146,0.0037242586258798838,0.002447144128382206,-0.0059278057888150215,0.06613933649437113,-3.2031346721096314,3.6592826889116012,0.0006613933649437113,-0.03203134672109632,0.03659282688911601 +karman_re400,sr,196,78.4,1.2526345252990723,-0.43253785371780396,0.8876945972442627,-0.2995662987232208,0.9438022375106812,-0.07220423966646194,0.0004142453253734857,0.0044408319517970085,-0.004543207585811615,0.0020861809607595205,0.004668767098337412,-0.005723229143768549,0.8769906613356871,-4.872088103265779,1.9903292577554539,0.008769906613356871,-0.04872088103265779,0.01990329257755454 +karman_re400,sr,197,78.8,1.451672077178955,0.06988395005464554,0.8350059986114502,-0.11186477541923523,0.9174022078514099,0.027156563475728035,0.001486090011894703,0.0013913284055888653,-0.00615403288975358,0.0015408243052661419,0.005111038684844971,-0.005056785419583321,1.7566841164927869,-5.809441365798968,1.0529759952222646,0.01756684116492787,-0.058094413657989674,0.010529759952222646 +karman_re400,sr,198,79.2,1.4041643142700195,0.21175886690616608,0.7555798292160034,0.18772104382514954,0.927192211151123,0.11399389058351517,0.0007846365333534777,-0.0025369543582201004,-0.00529472716152668,0.0022687562741339207,0.0036590336821973324,-0.004860621877014637,2.1482008998898725,-5.730263634287458,1.1321537267337742,0.021482008998898725,-0.05730263634287458,0.011321537267337742 +karman_re400,sr,199,79.6,1.301914930343628,0.25052839517593384,0.7731754779815674,0.35387158393859863,0.9521974325180054,0.172066330909729,-0.001199872000142932,-0.005165689624845982,-0.0033292612060904503,0.002721111522987485,0.0017506149597465992,-0.005164118018001318,1.7074438430784737,-5.126005994838694,1.736411366182538,0.01707443843078474,-0.05126005994838694,0.01736411366182538 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_long.csv new file mode 100644 index 0000000..ecf7db4 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re400,target,0,0.0,velocity,upper_ux,1.3085145950317383 +karman_re400,target,0,0.0,velocity,upper_uy,-0.3571373224258423 +karman_re400,target,0,0.0,velocity,center_ux,1.2351140975952148 +karman_re400,target,0,0.0,velocity,center_uy,-0.9329142570495605 +karman_re400,target,0,0.0,velocity,lower_ux,0.7564209699630737 +karman_re400,target,0,0.0,velocity,lower_uy,-0.39820563793182373 +karman_re400,target,1,0.4,velocity,upper_ux,1.409063458442688 +karman_re400,target,1,0.4,velocity,upper_uy,-0.22015082836151123 +karman_re400,target,1,0.4,velocity,center_ux,1.2989274263381958 +karman_re400,target,1,0.4,velocity,center_uy,-0.6645610928535461 +karman_re400,target,1,0.4,velocity,lower_ux,0.6040205955505371 +karman_re400,target,1,0.4,velocity,lower_uy,-0.24691146612167358 +karman_re400,target,2,0.8,velocity,upper_ux,1.4359593391418457 +karman_re400,target,2,0.8,velocity,upper_uy,-0.021865114569664 +karman_re400,target,2,0.8,velocity,center_ux,1.3200181722640991 +karman_re400,target,2,0.8,velocity,center_uy,0.04793955758213997 +karman_re400,target,2,0.8,velocity,lower_ux,0.5444077849388123 +karman_re400,target,2,0.8,velocity,lower_uy,0.013337481766939163 +karman_re400,target,3,1.2,velocity,upper_ux,1.377623438835144 +karman_re400,target,3,1.2,velocity,upper_uy,0.17419835925102234 +karman_re400,target,3,1.2,velocity,center_ux,1.2791377305984497 +karman_re400,target,3,1.2,velocity,center_uy,0.7064710259437561 +karman_re400,target,3,1.2,velocity,lower_ux,0.6289743185043335 +karman_re400,target,3,1.2,velocity,lower_uy,0.2632085084915161 +karman_re400,target,4,1.6,velocity,upper_ux,1.2637306451797485 +karman_re400,target,4,1.6,velocity,upper_uy,0.31156206130981445 +karman_re400,target,4,1.6,velocity,center_ux,1.2103615999221802 +karman_re400,target,4,1.6,velocity,center_uy,0.9076759815216064 +karman_re400,target,4,1.6,velocity,lower_ux,0.7966300249099731 +karman_re400,target,4,1.6,velocity,lower_uy,0.39729878306388855 +karman_re400,target,5,2.0,velocity,upper_ux,1.1244471073150635 +karman_re400,target,5,2.0,velocity,upper_uy,0.38730284571647644 +karman_re400,target,5,2.0,velocity,center_ux,1.1620690822601318 +karman_re400,target,5,2.0,velocity,center_uy,0.8670728802680969 +karman_re400,target,5,2.0,velocity,lower_ux,0.9669462442398071 +karman_re400,target,5,2.0,velocity,lower_uy,0.42700356245040894 +karman_re400,target,6,2.4,velocity,upper_ux,0.977877676486969 +karman_re400,target,6,2.4,velocity,upper_uy,0.42965611815452576 +karman_re400,target,6,2.4,velocity,center_ux,1.1541603803634644 +karman_re400,target,6,2.4,velocity,center_uy,0.8785855770111084 +karman_re400,target,6,2.4,velocity,lower_ux,1.125063180923462 +karman_re400,target,6,2.4,velocity,lower_uy,0.4204954206943512 +karman_re400,target,7,2.8,velocity,upper_ux,0.8171126842498779 +karman_re400,target,7,2.8,velocity,upper_uy,0.4171876609325409 +karman_re400,target,7,2.8,velocity,center_ux,1.1761202812194824 +karman_re400,target,7,2.8,velocity,center_uy,0.9373810291290283 +karman_re400,target,7,2.8,velocity,lower_ux,1.2662653923034668 +karman_re400,target,7,2.8,velocity,lower_uy,0.38903892040252686 +karman_re400,target,8,3.2,velocity,upper_ux,0.6594882011413574 +karman_re400,target,8,3.2,velocity,upper_uy,0.3097687065601349 +karman_re400,target,8,3.2,velocity,center_ux,1.2245060205459595 +karman_re400,target,8,3.2,velocity,center_uy,0.8194769024848938 +karman_re400,target,8,3.2,velocity,lower_ux,1.383988618850708 +karman_re400,target,8,3.2,velocity,lower_uy,0.27530598640441895 +karman_re400,target,9,3.6,velocity,upper_ux,0.5681757926940918 +karman_re400,target,9,3.6,velocity,upper_uy,0.08792588859796524 +karman_re400,target,9,3.6,velocity,center_ux,1.2627646923065186 +karman_re400,target,9,3.6,velocity,center_uy,0.21989259123802185 +karman_re400,target,9,3.6,velocity,lower_ux,1.4473055601119995 +karman_re400,target,9,3.6,velocity,lower_uy,0.0851595401763916 +karman_re400,target,10,4.0,velocity,upper_ux,0.6051244139671326 +karman_re400,target,10,4.0,velocity,upper_uy,-0.17264585196971893 +karman_re400,target,10,4.0,velocity,center_ux,1.2525873184204102 +karman_re400,target,10,4.0,velocity,center_uy,-0.5384258031845093 +karman_re400,target,10,4.0,velocity,lower_ux,1.4142743349075317 +karman_re400,target,10,4.0,velocity,lower_uy,-0.13199058175086975 +karman_re400,target,11,4.4,velocity,upper_ux,0.7485953569412231 +karman_re400,target,11,4.4,velocity,upper_uy,-0.345773309469223 +karman_re400,target,11,4.4,velocity,center_ux,1.2054812908172607 +karman_re400,target,11,4.4,velocity,center_uy,-0.904664933681488 +karman_re400,target,11,4.4,velocity,lower_ux,1.3053650856018066 +karman_re400,target,11,4.4,velocity,lower_uy,-0.2988112270832062 +karman_re400,target,12,4.8,velocity,upper_ux,0.9201911091804504 +karman_re400,target,12,4.8,velocity,upper_uy,-0.4064708650112152 +karman_re400,target,12,4.8,velocity,center_ux,1.167740821838379 +karman_re400,target,12,4.8,velocity,center_uy,-0.9023884534835815 +karman_re400,target,12,4.8,velocity,lower_ux,1.1650618314743042 +karman_re400,target,12,4.8,velocity,lower_uy,-0.3960038423538208 +karman_re400,target,13,5.2,velocity,upper_ux,1.0790287256240845 +karman_re400,target,13,5.2,velocity,upper_uy,-0.4020403325557709 +karman_re400,target,13,5.2,velocity,center_ux,1.163571834564209 +karman_re400,target,13,5.2,velocity,center_uy,-0.888028085231781 +karman_re400,target,13,5.2,velocity,lower_ux,1.0108088254928589 +karman_re400,target,13,5.2,velocity,lower_uy,-0.4498954713344574 +karman_re400,target,14,5.6,velocity,upper_ux,1.22614324092865 +karman_re400,target,14,5.6,velocity,upper_uy,-0.3809657394886017 +karman_re400,target,14,5.6,velocity,center_ux,1.2026313543319702 +karman_re400,target,14,5.6,velocity,center_uy,-0.937812328338623 +karman_re400,target,14,5.6,velocity,lower_ux,0.8450696468353271 +karman_re400,target,14,5.6,velocity,lower_uy,-0.4543899595737457 +karman_re400,target,15,6.0,velocity,upper_ux,1.3481330871582031 +karman_re400,target,15,6.0,velocity,upper_uy,-0.280754029750824 +karman_re400,target,15,6.0,velocity,center_ux,1.282973051071167 +karman_re400,target,15,6.0,velocity,center_uy,-0.8626605272293091 +karman_re400,target,15,6.0,velocity,lower_ux,0.6738433837890625 +karman_re400,target,15,6.0,velocity,lower_uy,-0.36273661255836487 +karman_re400,target,16,6.4,velocity,upper_ux,1.417466163635254 +karman_re400,target,16,6.4,velocity,upper_uy,-0.10870837420225143 +karman_re400,target,16,6.4,velocity,center_ux,1.3510442972183228 +karman_re400,target,16,6.4,velocity,center_uy,-0.32515186071395874 +karman_re400,target,16,6.4,velocity,lower_ux,0.5535178184509277 +karman_re400,target,16,6.4,velocity,lower_uy,-0.13768182694911957 +karman_re400,target,17,6.8,velocity,upper_ux,1.3983852863311768 +karman_re400,target,17,6.8,velocity,upper_uy,0.09683641791343689 +karman_re400,target,17,6.8,velocity,center_ux,1.3481037616729736 +karman_re400,target,17,6.8,velocity,center_uy,0.4417992830276489 +karman_re400,target,17,6.8,velocity,lower_ux,0.5714768171310425 +karman_re400,target,17,6.8,velocity,lower_uy,0.1528332680463791 +karman_re400,target,18,7.2,velocity,upper_ux,1.30426025390625 +karman_re400,target,18,7.2,velocity,upper_uy,0.2639733552932739 +karman_re400,target,18,7.2,velocity,center_ux,1.2790324687957764 +karman_re400,target,18,7.2,velocity,center_uy,0.8663166165351868 +karman_re400,target,18,7.2,velocity,lower_ux,0.7164385318756104 +karman_re400,target,18,7.2,velocity,lower_uy,0.35653212666511536 +karman_re400,target,19,7.6,velocity,upper_ux,1.1711418628692627 +karman_re400,target,19,7.6,velocity,upper_uy,0.36616191267967224 +karman_re400,target,19,7.6,velocity,center_ux,1.207149863243103 +karman_re400,target,19,7.6,velocity,center_uy,0.8881078362464905 +karman_re400,target,19,7.6,velocity,lower_ux,0.8938612341880798 +karman_re400,target,19,7.6,velocity,lower_uy,0.42666739225387573 +karman_re400,target,20,8.0,velocity,upper_ux,1.0288506746292114 +karman_re400,target,20,8.0,velocity,upper_uy,0.4274666905403137 +karman_re400,target,20,8.0,velocity,center_ux,1.1866153478622437 +karman_re400,target,20,8.0,velocity,center_uy,0.8677662014961243 +karman_re400,target,20,8.0,velocity,lower_ux,1.0628461837768555 +karman_re400,target,20,8.0,velocity,lower_uy,0.4188697338104248 +karman_re400,target,21,8.4,velocity,upper_ux,0.8687223196029663 +karman_re400,target,21,8.4,velocity,upper_uy,0.4441407322883606 +karman_re400,target,21,8.4,velocity,center_ux,1.2113502025604248 +karman_re400,target,21,8.4,velocity,center_uy,0.9178210496902466 +karman_re400,target,21,8.4,velocity,lower_ux,1.2134279012680054 +karman_re400,target,21,8.4,velocity,lower_uy,0.3995591402053833 +karman_re400,target,22,8.8,velocity,upper_ux,0.6963803172111511 +karman_re400,target,22,8.8,velocity,upper_uy,0.37262341380119324 +karman_re400,target,22,8.8,velocity,center_ux,1.2796056270599365 +karman_re400,target,22,8.8,velocity,center_uy,0.8947521448135376 +karman_re400,target,22,8.8,velocity,lower_ux,1.3373560905456543 +karman_re400,target,22,8.8,velocity,lower_uy,0.3122086226940155 +karman_re400,target,23,9.2,velocity,upper_ux,0.562372624874115 +karman_re400,target,23,9.2,velocity,upper_uy,0.17259597778320312 +karman_re400,target,23,9.2,velocity,center_ux,1.3487579822540283 +karman_re400,target,23,9.2,velocity,center_uy,0.45317450165748596 +karman_re400,target,23,9.2,velocity,lower_ux,1.418951153755188 +karman_re400,target,23,9.2,velocity,lower_uy,0.15471455454826355 +karman_re400,target,24,9.6,velocity,upper_ux,0.5507239103317261 +karman_re400,target,24,9.6,velocity,upper_uy,-0.11273720860481262 +karman_re400,target,24,9.6,velocity,center_ux,1.348781704902649 +karman_re400,target,24,9.6,velocity,center_uy,-0.310320109128952 +karman_re400,target,24,9.6,velocity,lower_ux,1.414362907409668 +karman_re400,target,24,9.6,velocity,lower_uy,-0.04725278913974762 +karman_re400,target,25,10.0,velocity,upper_ux,0.6769605278968811 +karman_re400,target,25,10.0,velocity,upper_uy,-0.33439353108406067 +karman_re400,target,25,10.0,velocity,center_ux,1.281002402305603 +karman_re400,target,25,10.0,velocity,center_uy,-0.8191845417022705 +karman_re400,target,25,10.0,velocity,lower_ux,1.3328111171722412 +karman_re400,target,25,10.0,velocity,lower_uy,-0.2221730649471283 +karman_re400,target,26,10.4,velocity,upper_ux,0.8557254672050476 +karman_re400,target,26,10.4,velocity,upper_uy,-0.4267515242099762 +karman_re400,target,26,10.4,velocity,center_ux,1.203881859779358 +karman_re400,target,26,10.4,velocity,center_uy,-0.8894383311271667 +karman_re400,target,26,10.4,velocity,lower_ux,1.210721492767334 +karman_re400,target,26,10.4,velocity,lower_uy,-0.33410656452178955 +karman_re400,target,27,10.8,velocity,upper_ux,1.0257458686828613 +karman_re400,target,27,10.8,velocity,upper_uy,-0.431898295879364 +karman_re400,target,27,10.8,velocity,center_ux,1.164911150932312 +karman_re400,target,27,10.8,velocity,center_uy,-0.8528926372528076 +karman_re400,target,27,10.8,velocity,lower_ux,1.0743223428726196 +karman_re400,target,27,10.8,velocity,lower_uy,-0.39731982350349426 +karman_re400,target,28,11.2,velocity,upper_ux,1.1778810024261475 +karman_re400,target,28,11.2,velocity,upper_uy,-0.42373034358024597 +karman_re400,target,28,11.2,velocity,center_ux,1.1617087125778198 +karman_re400,target,28,11.2,velocity,center_uy,-0.8931939005851746 +karman_re400,target,28,11.2,velocity,lower_ux,0.9237760901451111 +karman_re400,target,28,11.2,velocity,lower_uy,-0.42641302943229675 +karman_re400,target,29,11.6,velocity,upper_ux,1.3133271932601929 +karman_re400,target,29,11.6,velocity,upper_uy,-0.36446139216423035 +karman_re400,target,29,11.6,velocity,center_ux,1.1908226013183594 +karman_re400,target,29,11.6,velocity,center_uy,-0.9356545209884644 +karman_re400,target,29,11.6,velocity,lower_ux,0.7630974054336548 +karman_re400,target,29,11.6,velocity,lower_uy,-0.38659030199050903 +karman_re400,target,30,12.0,velocity,upper_ux,1.4195994138717651 +karman_re400,target,30,12.0,velocity,upper_uy,-0.22586725652217865 +karman_re400,target,30,12.0,velocity,center_ux,1.236088514328003 +karman_re400,target,30,12.0,velocity,center_uy,-0.6765270829200745 +karman_re400,target,30,12.0,velocity,lower_ux,0.6190075278282166 +karman_re400,target,30,12.0,velocity,lower_uy,-0.24283571541309357 +karman_re400,target,31,12.4,velocity,upper_ux,1.4517695903778076 +karman_re400,target,31,12.4,velocity,upper_uy,-0.016804164275527 +karman_re400,target,31,12.4,velocity,center_ux,1.2548269033432007 +karman_re400,target,31,12.4,velocity,center_uy,0.03945834934711456 +karman_re400,target,31,12.4,velocity,lower_ux,0.5654041767120361 +karman_re400,target,31,12.4,velocity,lower_uy,0.002720397664234042 +karman_re400,target,32,12.8,velocity,upper_ux,1.3902838230133057 +karman_re400,target,32,12.8,velocity,upper_uy,0.19102764129638672 +karman_re400,target,32,12.8,velocity,center_ux,1.2288861274719238 +karman_re400,target,32,12.8,velocity,center_uy,0.7136432528495789 +karman_re400,target,32,12.8,velocity,lower_ux,0.6441952586174011 +karman_re400,target,32,12.8,velocity,lower_uy,0.24192292988300323 +karman_re400,target,33,13.2,velocity,upper_ux,1.266632318496704 +karman_re400,target,33,13.2,velocity,upper_uy,0.334756076335907 +karman_re400,target,33,13.2,velocity,center_ux,1.1811929941177368 +karman_re400,target,33,13.2,velocity,center_uy,0.9244821667671204 +karman_re400,target,33,13.2,velocity,lower_ux,0.8024790287017822 +karman_re400,target,33,13.2,velocity,lower_uy,0.37474438548088074 +karman_re400,target,34,13.6,velocity,upper_ux,1.1223942041397095 +karman_re400,target,34,13.6,velocity,upper_uy,0.41350799798965454 +karman_re400,target,34,13.6,velocity,center_ux,1.154763102531433 +karman_re400,target,34,13.6,velocity,center_uy,0.8864061236381531 +karman_re400,target,34,13.6,velocity,lower_ux,0.9712328314781189 +karman_re400,target,34,13.6,velocity,lower_uy,0.4078036844730377 +karman_re400,target,35,14.0,velocity,upper_ux,0.9653937816619873 +karman_re400,target,35,14.0,velocity,upper_uy,0.4554295837879181 +karman_re400,target,35,14.0,velocity,center_ux,1.1613950729370117 +karman_re400,target,35,14.0,velocity,center_uy,0.8984017372131348 +karman_re400,target,35,14.0,velocity,lower_ux,1.1257565021514893 +karman_re400,target,35,14.0,velocity,lower_uy,0.40213996171951294 +karman_re400,target,36,14.4,velocity,upper_ux,0.7969576120376587 +karman_re400,target,36,14.4,velocity,upper_uy,0.43646439909935 +karman_re400,target,36,14.4,velocity,center_ux,1.20761239528656 +karman_re400,target,36,14.4,velocity,center_uy,0.94599449634552 +karman_re400,target,36,14.4,velocity,lower_ux,1.265579104423523 +karman_re400,target,36,14.4,velocity,lower_uy,0.36299553513526917 +karman_re400,target,37,14.8,velocity,upper_ux,0.6329971551895142 +karman_re400,target,37,14.8,velocity,upper_uy,0.3086336851119995 +karman_re400,target,37,14.8,velocity,center_ux,1.2876410484313965 +karman_re400,target,37,14.8,velocity,center_uy,0.7638344764709473 +karman_re400,target,37,14.8,velocity,lower_ux,1.3805636167526245 +karman_re400,target,37,14.8,velocity,lower_uy,0.23964650928974152 +karman_re400,target,38,15.2,velocity,upper_ux,0.5481277704238892 +karman_re400,target,38,15.2,velocity,upper_uy,0.0594341903924942 +karman_re400,target,38,15.2,velocity,center_ux,1.3358383178710938 +karman_re400,target,38,15.2,velocity,center_uy,0.1120673343539238 +karman_re400,target,38,15.2,velocity,lower_ux,1.4268800020217896 +karman_re400,target,38,15.2,velocity,lower_uy,0.050438035279512405 +karman_re400,target,39,15.6,velocity,upper_ux,0.6060505509376526 +karman_re400,target,39,15.6,velocity,upper_uy,-0.21569763123989105 +karman_re400,target,39,15.6,velocity,center_ux,1.3144023418426514 +karman_re400,target,39,15.6,velocity,center_uy,-0.6130836009979248 +karman_re400,target,39,15.6,velocity,lower_ux,1.3826769590377808 +karman_re400,target,39,15.6,velocity,lower_uy,-0.15380507707595825 +karman_re400,target,40,16.0,velocity,upper_ux,0.7670212388038635 +karman_re400,target,40,16.0,velocity,upper_uy,-0.3790891170501709 +karman_re400,target,40,16.0,velocity,center_ux,1.245010495185852 +karman_re400,target,40,16.0,velocity,center_uy,-0.9038017392158508 +karman_re400,target,40,16.0,velocity,lower_ux,1.2723764181137085 +karman_re400,target,40,16.0,velocity,lower_uy,-0.3048034608364105 +karman_re400,target,41,16.4,velocity,upper_ux,0.9419438242912292 +karman_re400,target,41,16.4,velocity,upper_uy,-0.4231274425983429 +karman_re400,target,41,16.4,velocity,center_ux,1.1914050579071045 +karman_re400,target,41,16.4,velocity,center_uy,-0.8834188580513 +karman_re400,target,41,16.4,velocity,lower_ux,1.133102536201477 +karman_re400,target,41,16.4,velocity,lower_uy,-0.3938737213611603 +karman_re400,target,42,16.8,velocity,upper_ux,1.1053004264831543 +karman_re400,target,42,16.8,velocity,upper_uy,-0.4096328020095825 +karman_re400,target,42,16.8,velocity,center_ux,1.1889451742172241 +karman_re400,target,42,16.8,velocity,center_uy,-0.8849933743476868 +karman_re400,target,42,16.8,velocity,lower_ux,0.983838677406311 +karman_re400,target,42,16.8,velocity,lower_uy,-0.4459853768348694 +karman_re400,target,43,17.2,velocity,upper_ux,1.2502692937850952 +karman_re400,target,43,17.2,velocity,upper_uy,-0.37718620896339417 +karman_re400,target,43,17.2,velocity,center_ux,1.2327014207839966 +karman_re400,target,43,17.2,velocity,center_uy,-0.934785783290863 +karman_re400,target,43,17.2,velocity,lower_ux,0.8167896270751953 +karman_re400,target,43,17.2,velocity,lower_uy,-0.4407101571559906 +karman_re400,target,44,17.6,velocity,upper_ux,1.3656089305877686 +karman_re400,target,44,17.6,velocity,upper_uy,-0.26652753353118896 +karman_re400,target,44,17.6,velocity,center_ux,1.3167880773544312 +karman_re400,target,44,17.6,velocity,center_uy,-0.8133021593093872 +karman_re400,target,44,17.6,velocity,lower_ux,0.6460376977920532 +karman_re400,target,44,17.6,velocity,lower_uy,-0.3316257894039154 +karman_re400,target,45,18.0,velocity,upper_ux,1.4219218492507935 +karman_re400,target,45,18.0,velocity,upper_uy,-0.08940128237009048 +karman_re400,target,45,18.0,velocity,center_ux,1.3733404874801636 +karman_re400,target,45,18.0,velocity,center_uy,-0.21723277866840363 +karman_re400,target,45,18.0,velocity,lower_ux,0.5404145121574402 +karman_re400,target,45,18.0,velocity,lower_uy,-0.08758307248353958 +karman_re400,target,46,18.4,velocity,upper_ux,1.3912973403930664 +karman_re400,target,46,18.4,velocity,upper_uy,0.11005087196826935 +karman_re400,target,46,18.4,velocity,center_ux,1.3504687547683716 +karman_re400,target,46,18.4,velocity,center_uy,0.5243600606918335 +karman_re400,target,46,18.4,velocity,lower_ux,0.579083263874054 +karman_re400,target,46,18.4,velocity,lower_uy,0.19916118681430817 +karman_re400,target,47,18.8,velocity,upper_ux,1.2901091575622559 +karman_re400,target,47,18.8,velocity,upper_uy,0.26480215787887573 +karman_re400,target,47,18.8,velocity,center_ux,1.2649797201156616 +karman_re400,target,47,18.8,velocity,center_uy,0.8737044334411621 +karman_re400,target,47,18.8,velocity,lower_ux,0.7329109907150269 +karman_re400,target,47,18.8,velocity,lower_uy,0.3809240758419037 +karman_re400,target,48,19.2,velocity,upper_ux,1.1630620956420898 +karman_re400,target,48,19.2,velocity,upper_uy,0.35760563611984253 +karman_re400,target,48,19.2,velocity,center_ux,1.1947568655014038 +karman_re400,target,48,19.2,velocity,center_uy,0.870402991771698 +karman_re400,target,48,19.2,velocity,lower_ux,0.9136728048324585 +karman_re400,target,48,19.2,velocity,lower_uy,0.43767422437667847 +karman_re400,target,49,19.6,velocity,upper_ux,1.0223922729492188 +karman_re400,target,49,19.6,velocity,upper_uy,0.4119476079940796 +karman_re400,target,49,19.6,velocity,center_ux,1.1676756143569946 +karman_re400,target,49,19.6,velocity,center_uy,0.8562734127044678 +karman_re400,target,49,19.6,velocity,lower_ux,1.0780529975891113 +karman_re400,target,49,19.6,velocity,lower_uy,0.42837852239608765 +karman_re400,target,50,20.0,velocity,upper_ux,0.8678216338157654 +karman_re400,target,50,20.0,velocity,upper_uy,0.4237498939037323 +karman_re400,target,50,20.0,velocity,center_ux,1.1783117055892944 +karman_re400,target,50,20.0,velocity,center_uy,0.914273738861084 +karman_re400,target,50,20.0,velocity,lower_ux,1.2265816926956177 +karman_re400,target,50,20.0,velocity,lower_uy,0.4127959907054901 +karman_re400,target,51,20.4,velocity,upper_ux,0.7062122821807861 +karman_re400,target,51,20.4,velocity,upper_uy,0.3518907427787781 +karman_re400,target,51,20.4,velocity,center_ux,1.2219526767730713 +karman_re400,target,51,20.4,velocity,center_uy,0.9004908204078674 +karman_re400,target,51,20.4,velocity,lower_ux,1.3537293672561646 +karman_re400,target,51,20.4,velocity,lower_uy,0.3244396150112152 +karman_re400,target,52,20.8,velocity,upper_ux,0.5799527764320374 +karman_re400,target,52,20.8,velocity,upper_uy,0.16576820611953735 +karman_re400,target,52,20.8,velocity,center_ux,1.2644977569580078 +karman_re400,target,52,20.8,velocity,center_uy,0.46540752053260803 +karman_re400,target,52,20.8,velocity,lower_ux,1.4371970891952515 +karman_re400,target,52,20.8,velocity,lower_uy,0.1607106328010559 +karman_re400,target,53,21.2,velocity,upper_ux,0.5714412927627563 +karman_re400,target,53,21.2,velocity,upper_uy,-0.09640764445066452 +karman_re400,target,53,21.2,velocity,center_ux,1.267243504524231 +karman_re400,target,53,21.2,velocity,center_uy,-0.30450618267059326 +karman_re400,target,53,21.2,velocity,lower_ux,1.437376856803894 +karman_re400,target,53,21.2,velocity,lower_uy,-0.053837355226278305 +karman_re400,target,54,21.6,velocity,upper_ux,0.6889928579330444 +karman_re400,target,54,21.6,velocity,upper_uy,-0.3068252205848694 +karman_re400,target,54,21.6,velocity,center_ux,1.2236542701721191 +karman_re400,target,54,21.6,velocity,center_uy,-0.8343424201011658 +karman_re400,target,54,21.6,velocity,lower_ux,1.3518667221069336 +karman_re400,target,54,21.6,velocity,lower_uy,-0.2406681627035141 +karman_re400,target,55,22.0,velocity,upper_ux,0.8572165966033936 +karman_re400,target,55,22.0,velocity,upper_uy,-0.4016987085342407 +karman_re400,target,55,22.0,velocity,center_ux,1.1722562313079834 +karman_re400,target,55,22.0,velocity,center_uy,-0.9130256175994873 +karman_re400,target,55,22.0,velocity,lower_ux,1.2200489044189453 +karman_re400,target,55,22.0,velocity,lower_uy,-0.3582380712032318 +karman_re400,target,56,22.4,velocity,upper_ux,1.0231258869171143 +karman_re400,target,56,22.4,velocity,upper_uy,-0.4116145372390747 +karman_re400,target,56,22.4,velocity,center_ux,1.1512742042541504 +karman_re400,target,56,22.4,velocity,center_uy,-0.8727850317955017 +karman_re400,target,56,22.4,velocity,lower_ux,1.075039029121399 +karman_re400,target,56,22.4,velocity,lower_uy,-0.4216046631336212 +karman_re400,target,57,22.8,velocity,upper_ux,1.17415452003479 +karman_re400,target,57,22.8,velocity,upper_uy,-0.40578600764274597 +karman_re400,target,57,22.8,velocity,center_ux,1.16350519657135 +karman_re400,target,57,22.8,velocity,center_uy,-0.9107839465141296 +karman_re400,target,57,22.8,velocity,lower_ux,0.9171633720397949 +karman_re400,target,57,22.8,velocity,lower_uy,-0.449249267578125 +karman_re400,target,58,23.2,velocity,upper_ux,1.3068952560424805 +karman_re400,target,58,23.2,velocity,upper_uy,-0.34156617522239685 +karman_re400,target,58,23.2,velocity,center_ux,1.2117189168930054 +karman_re400,target,58,23.2,velocity,center_uy,-0.9377371072769165 +karman_re400,target,58,23.2,velocity,lower_ux,0.7490613460540771 +karman_re400,target,58,23.2,velocity,lower_uy,-0.4034441113471985 +karman_re400,target,59,23.6,velocity,upper_ux,1.4094494581222534 +karman_re400,target,59,23.6,velocity,upper_uy,-0.1978263258934021 +karman_re400,target,59,23.6,velocity,center_ux,1.279471755027771 +karman_re400,target,59,23.6,velocity,center_uy,-0.6282666921615601 +karman_re400,target,59,23.6,velocity,lower_ux,0.6039149761199951 +karman_re400,target,59,23.6,velocity,lower_uy,-0.24375471472740173 +karman_re400,target,60,24.0,velocity,upper_ux,1.4321720600128174 +karman_re400,target,60,24.0,velocity,upper_uy,0.009549805894494057 +karman_re400,target,60,24.0,velocity,center_ux,1.306347370147705 +karman_re400,target,60,24.0,velocity,center_uy,0.11318975687026978 +karman_re400,target,60,24.0,velocity,lower_ux,0.5570236444473267 +karman_re400,target,60,24.0,velocity,lower_uy,0.021894725039601326 +karman_re400,target,61,24.4,velocity,upper_ux,1.3638572692871094 +karman_re400,target,61,24.4,velocity,upper_uy,0.20727680623531342 +karman_re400,target,61,24.4,velocity,center_ux,1.271448016166687 +karman_re400,target,61,24.4,velocity,center_uy,0.7508394122123718 +karman_re400,target,61,24.4,velocity,lower_ux,0.6499220132827759 +karman_re400,target,61,24.4,velocity,lower_uy,0.2678419351577759 +karman_re400,target,62,24.8,velocity,upper_ux,1.2406914234161377 +karman_re400,target,62,24.8,velocity,upper_uy,0.3414109945297241 +karman_re400,target,62,24.8,velocity,center_ux,1.2108891010284424 +karman_re400,target,62,24.8,velocity,center_uy,0.9184513688087463 +karman_re400,target,62,24.8,velocity,lower_ux,0.8190705180168152 +karman_re400,target,62,24.8,velocity,lower_uy,0.3925020694732666 +karman_re400,target,63,25.2,velocity,upper_ux,1.0950500965118408 +karman_re400,target,63,25.2,velocity,upper_uy,0.41788214445114136 +karman_re400,target,63,25.2,velocity,center_ux,1.176454782485962 +karman_re400,target,63,25.2,velocity,center_uy,0.8804898262023926 +karman_re400,target,63,25.2,velocity,lower_ux,0.9885243773460388 +karman_re400,target,63,25.2,velocity,lower_uy,0.4144701659679413 +karman_re400,target,64,25.6,velocity,upper_ux,0.938981294631958 +karman_re400,target,64,25.6,velocity,upper_uy,0.4576905071735382 +karman_re400,target,64,25.6,velocity,center_ux,1.1900856494903564 +karman_re400,target,64,25.6,velocity,center_uy,0.9037601351737976 +karman_re400,target,64,25.6,velocity,lower_ux,1.1459101438522339 +karman_re400,target,64,25.6,velocity,lower_uy,0.4018692672252655 +karman_re400,target,65,26.0,velocity,upper_ux,0.7674859762191772 +karman_re400,target,65,26.0,velocity,upper_uy,0.4269919991493225 +karman_re400,target,65,26.0,velocity,center_ux,1.2503832578659058 +karman_re400,target,65,26.0,velocity,center_uy,0.9376956224441528 +karman_re400,target,65,26.0,velocity,lower_ux,1.2837611436843872 +karman_re400,target,65,26.0,velocity,lower_uy,0.34900566935539246 +karman_re400,target,66,26.4,velocity,upper_ux,0.6052980422973633 +karman_re400,target,66,26.4,velocity,upper_uy,0.27821943163871765 +karman_re400,target,66,26.4,velocity,center_ux,1.3383506536483765 +karman_re400,target,66,26.4,velocity,center_uy,0.6884070634841919 +karman_re400,target,66,26.4,velocity,lower_ux,1.3880337476730347 +karman_re400,target,66,26.4,velocity,lower_uy,0.2179107517004013 +karman_re400,target,67,26.8,velocity,upper_ux,0.536733090877533 +karman_re400,target,67,26.8,velocity,upper_uy,0.0037846947088837624 +karman_re400,target,67,26.8,velocity,center_ux,1.3765661716461182 +karman_re400,target,67,26.8,velocity,center_uy,-0.015596901066601276 +karman_re400,target,67,26.8,velocity,lower_ux,1.4190348386764526 +karman_re400,target,67,26.8,velocity,lower_uy,0.02546047419309616 +karman_re400,target,68,27.2,velocity,upper_ux,0.6183749437332153 +karman_re400,target,68,27.2,velocity,upper_uy,-0.2659420371055603 +karman_re400,target,68,27.2,velocity,center_ux,1.331568956375122 +karman_re400,target,68,27.2,velocity,center_uy,-0.6827479600906372 +karman_re400,target,68,27.2,velocity,lower_ux,1.3628838062286377 +karman_re400,target,68,27.2,velocity,lower_uy,-0.16684935986995697 +karman_re400,target,69,27.6,velocity,upper_ux,0.7886586785316467 +karman_re400,target,69,27.6,velocity,upper_uy,-0.4073392450809479 +karman_re400,target,69,27.6,velocity,center_ux,1.2442878484725952 +karman_re400,target,69,27.6,velocity,center_uy,-0.8936831951141357 +karman_re400,target,69,27.6,velocity,lower_ux,1.249770998954773 +karman_re400,target,69,27.6,velocity,lower_uy,-0.3031793534755707 +karman_re400,target,70,28.0,velocity,upper_ux,0.9671373963356018 +karman_re400,target,70,28.0,velocity,upper_uy,-0.43589919805526733 +karman_re400,target,70,28.0,velocity,center_ux,1.1882691383361816 +karman_re400,target,70,28.0,velocity,center_uy,-0.8604286909103394 +karman_re400,target,70,28.0,velocity,lower_ux,1.1174724102020264 +karman_re400,target,70,28.0,velocity,lower_uy,-0.38260772824287415 +karman_re400,target,71,28.4,velocity,upper_ux,1.1269173622131348 +karman_re400,target,71,28.4,velocity,upper_uy,-0.422193706035614 +karman_re400,target,71,28.4,velocity,center_ux,1.17808198928833 +karman_re400,target,71,28.4,velocity,center_uy,-0.8748716711997986 +karman_re400,target,71,28.4,velocity,lower_ux,0.9714246392250061 +karman_re400,target,71,28.4,velocity,lower_uy,-0.4286492168903351 +karman_re400,target,72,28.8,velocity,upper_ux,1.2691727876663208 +karman_re400,target,72,28.8,velocity,upper_uy,-0.3871316611766815 +karman_re400,target,72,28.8,velocity,center_ux,1.207156777381897 +karman_re400,target,72,28.8,velocity,center_uy,-0.9325215816497803 +karman_re400,target,72,28.8,velocity,lower_ux,0.8097041249275208 +karman_re400,target,72,28.8,velocity,lower_uy,-0.41712796688079834 +karman_re400,target,73,29.2,velocity,upper_ux,1.3866184949874878 +karman_re400,target,73,29.2,velocity,upper_uy,-0.2728649079799652 +karman_re400,target,73,29.2,velocity,center_ux,1.269421100616455 +karman_re400,target,73,29.2,velocity,center_uy,-0.8083610534667969 +karman_re400,target,73,29.2,velocity,lower_ux,0.6497323513031006 +karman_re400,target,73,29.2,velocity,lower_uy,-0.306883841753006 +karman_re400,target,74,29.6,velocity,upper_ux,1.440456748008728 +karman_re400,target,74,29.6,velocity,upper_uy,-0.08818081021308899 +karman_re400,target,74,29.6,velocity,center_ux,1.305332064628601 +karman_re400,target,74,29.6,velocity,center_uy,-0.2044180929660797 +karman_re400,target,74,29.6,velocity,lower_ux,0.5517613887786865 +karman_re400,target,74,29.6,velocity,lower_uy,-0.0761963427066803 +karman_re400,target,75,30.0,velocity,upper_ux,1.4075192213058472 +karman_re400,target,75,30.0,velocity,upper_uy,0.11968059837818146 +karman_re400,target,75,30.0,velocity,center_ux,1.285215139389038 +karman_re400,target,75,30.0,velocity,center_uy,0.5410903692245483 +karman_re400,target,75,30.0,velocity,lower_ux,0.5922788381576538 +karman_re400,target,75,30.0,velocity,lower_uy,0.190183624625206 +karman_re400,target,76,30.4,velocity,upper_ux,1.3064007759094238 +karman_re400,target,76,30.4,velocity,upper_uy,0.27985867857933044 +karman_re400,target,76,30.4,velocity,center_ux,1.2243996858596802 +karman_re400,target,76,30.4,velocity,center_uy,0.8937498331069946 +karman_re400,target,76,30.4,velocity,lower_ux,0.7425024509429932 +karman_re400,target,76,30.4,velocity,lower_uy,0.3632802665233612 +karman_re400,target,77,30.8,velocity,upper_ux,1.169307827949524 +karman_re400,target,77,30.8,velocity,upper_uy,0.3731396198272705 +karman_re400,target,77,30.8,velocity,center_ux,1.1691341400146484 +karman_re400,target,77,30.8,velocity,center_uy,0.8863261938095093 +karman_re400,target,77,30.8,velocity,lower_ux,0.9147434830665588 +karman_re400,target,77,30.8,velocity,lower_uy,0.4217272102832794 +karman_re400,target,78,31.2,velocity,upper_ux,1.0242304801940918 +karman_re400,target,78,31.2,velocity,upper_uy,0.42507386207580566 +karman_re400,target,78,31.2,velocity,center_ux,1.152745246887207 +karman_re400,target,78,31.2,velocity,center_uy,0.8688924312591553 +karman_re400,target,78,31.2,velocity,lower_ux,1.0767728090286255 +karman_re400,target,78,31.2,velocity,lower_uy,0.4175419509410858 +karman_re400,target,79,31.6,velocity,upper_ux,0.8658630847930908 +karman_re400,target,79,31.6,velocity,upper_uy,0.4341093897819519 +karman_re400,target,79,31.6,velocity,center_ux,1.1692520380020142 +karman_re400,target,79,31.6,velocity,center_uy,0.9246989488601685 +karman_re400,target,79,31.6,velocity,lower_ux,1.2241145372390747 +karman_re400,target,79,31.6,velocity,lower_uy,0.4037056863307953 +karman_re400,target,80,32.0,velocity,upper_ux,0.7019622325897217 +karman_re400,target,80,32.0,velocity,upper_uy,0.35829976201057434 +karman_re400,target,80,32.0,velocity,center_ux,1.216647744178772 +karman_re400,target,80,32.0,velocity,center_uy,0.8985231518745422 +karman_re400,target,80,32.0,velocity,lower_ux,1.3490533828735352 +karman_re400,target,80,32.0,velocity,lower_uy,0.31339797377586365 +karman_re400,target,81,32.4,velocity,upper_ux,0.5809781551361084 +karman_re400,target,81,32.4,velocity,upper_uy,0.1653325855731964 +karman_re400,target,81,32.4,velocity,center_ux,1.268168568611145 +karman_re400,target,81,32.4,velocity,center_uy,0.43736496567726135 +karman_re400,target,81,32.4,velocity,lower_ux,1.4343341588974 +karman_re400,target,81,32.4,velocity,lower_uy,0.14509189128875732 +karman_re400,target,82,32.8,velocity,upper_ux,0.5774239897727966 +karman_re400,target,82,32.8,velocity,upper_uy,-0.10224296897649765 +karman_re400,target,82,32.8,velocity,center_ux,1.2741039991378784 +karman_re400,target,82,32.8,velocity,center_uy,-0.34046804904937744 +karman_re400,target,82,32.8,velocity,lower_ux,1.4292892217636108 +karman_re400,target,82,32.8,velocity,lower_uy,-0.07186158001422882 +karman_re400,target,83,33.2,velocity,upper_ux,0.6990910172462463 +karman_re400,target,83,33.2,velocity,upper_uy,-0.31119439005851746 +karman_re400,target,83,33.2,velocity,center_ux,1.2311770915985107 +karman_re400,target,83,33.2,velocity,center_uy,-0.8495562076568604 +karman_re400,target,83,33.2,velocity,lower_ux,1.338698148727417 +karman_re400,target,83,33.2,velocity,lower_uy,-0.2563791573047638 +karman_re400,target,84,33.6,velocity,upper_ux,0.8707716464996338 +karman_re400,target,84,33.6,velocity,upper_uy,-0.40127813816070557 +karman_re400,target,84,33.6,velocity,center_ux,1.182464838027954 +karman_re400,target,84,33.6,velocity,center_uy,-0.9147396683692932 +karman_re400,target,84,33.6,velocity,lower_ux,1.2049182653427124 +karman_re400,target,84,33.6,velocity,lower_uy,-0.37195727229118347 +karman_re400,target,85,34.0,velocity,upper_ux,1.034980297088623 +karman_re400,target,85,34.0,velocity,upper_uy,-0.40635693073272705 +karman_re400,target,85,34.0,velocity,center_ux,1.1654179096221924 +karman_re400,target,85,34.0,velocity,center_uy,-0.8809053301811218 +karman_re400,target,85,34.0,velocity,lower_ux,1.0547462701797485 +karman_re400,target,85,34.0,velocity,lower_uy,-0.4362920820713043 +karman_re400,target,86,34.4,velocity,upper_ux,1.1866750717163086 +karman_re400,target,86,34.4,velocity,upper_uy,-0.3941217064857483 +karman_re400,target,86,34.4,velocity,center_ux,1.1916831731796265 +karman_re400,target,86,34.4,velocity,center_uy,-0.9220172166824341 +karman_re400,target,86,34.4,velocity,lower_ux,0.8927514553070068 +karman_re400,target,86,34.4,velocity,lower_uy,-0.4600156545639038 +karman_re400,target,87,34.8,velocity,upper_ux,1.317026972770691 +karman_re400,target,87,34.8,velocity,upper_uy,-0.31727537512779236 +karman_re400,target,87,34.8,velocity,center_ux,1.2634929418563843 +karman_re400,target,87,34.8,velocity,center_uy,-0.9182605147361755 +karman_re400,target,87,34.8,velocity,lower_ux,0.7201786637306213 +karman_re400,target,87,34.8,velocity,lower_uy,-0.4005899727344513 +karman_re400,target,88,35.2,velocity,upper_ux,1.4055901765823364 +karman_re400,target,88,35.2,velocity,upper_uy,-0.16548945009708405 +karman_re400,target,88,35.2,velocity,center_ux,1.3432235717773438 +karman_re400,target,88,35.2,velocity,center_uy,-0.5249561071395874 +karman_re400,target,88,35.2,velocity,lower_ux,0.5748801827430725 +karman_re400,target,88,35.2,velocity,lower_uy,-0.21294745802879333 +karman_re400,target,89,35.6,velocity,upper_ux,1.4124003648757935 +karman_re400,target,89,35.6,velocity,upper_uy,0.037152986973524094 +karman_re400,target,89,35.6,velocity,center_ux,1.3619294166564941 +karman_re400,target,89,35.6,velocity,center_uy,0.23632901906967163 +karman_re400,target,89,35.6,velocity,lower_ux,0.5485828518867493 +karman_re400,target,89,35.6,velocity,lower_uy,0.07531709969043732 +karman_re400,target,90,36.0,velocity,upper_ux,1.3355624675750732 +karman_re400,target,90,36.0,velocity,upper_uy,0.21897023916244507 +karman_re400,target,90,36.0,velocity,center_ux,1.3034344911575317 +karman_re400,target,90,36.0,velocity,center_uy,0.7948658466339111 +karman_re400,target,90,36.0,velocity,lower_ux,0.6652673482894897 +karman_re400,target,90,36.0,velocity,lower_uy,0.3150618076324463 +karman_re400,target,91,36.4,velocity,upper_ux,1.2112562656402588 +karman_re400,target,91,36.4,velocity,upper_uy,0.33853408694267273 +karman_re400,target,91,36.4,velocity,center_ux,1.2230180501937866 +karman_re400,target,91,36.4,velocity,center_uy,0.8971636295318604 +karman_re400,target,91,36.4,velocity,lower_ux,0.8422595858573914 +karman_re400,target,91,36.4,velocity,lower_uy,0.41954439878463745 +karman_re400,target,92,36.8,velocity,upper_ux,1.0732512474060059 +karman_re400,target,92,36.8,velocity,upper_uy,0.40825405716896057 +karman_re400,target,92,36.8,velocity,center_ux,1.1851742267608643 +karman_re400,target,92,36.8,velocity,center_uy,0.8614924550056458 +karman_re400,target,92,36.8,velocity,lower_ux,1.0156078338623047 +karman_re400,target,92,36.8,velocity,lower_uy,0.4266758859157562 +karman_re400,target,93,37.2,velocity,upper_ux,0.9211071133613586 +karman_re400,target,93,37.2,velocity,upper_uy,0.4427591562271118 +karman_re400,target,93,37.2,velocity,center_ux,1.1953989267349243 +karman_re400,target,93,37.2,velocity,center_uy,0.899359941482544 +karman_re400,target,93,37.2,velocity,lower_ux,1.1728417873382568 +karman_re400,target,93,37.2,velocity,lower_uy,0.412520170211792 +karman_re400,target,94,37.6,velocity,upper_ux,0.750954806804657 +karman_re400,target,94,37.6,velocity,upper_uy,0.40242302417755127 +karman_re400,target,94,37.6,velocity,center_ux,1.2453444004058838 +karman_re400,target,94,37.6,velocity,center_uy,0.9305505156517029 +karman_re400,target,94,37.6,velocity,lower_ux,1.3050495386123657 +karman_re400,target,94,37.6,velocity,lower_uy,0.35048550367355347 +karman_re400,target,95,38.0,velocity,upper_ux,0.5977475643157959 +karman_re400,target,95,38.0,velocity,upper_uy,0.2463039606809616 +karman_re400,target,95,38.0,velocity,center_ux,1.3174153566360474 +karman_re400,target,95,38.0,velocity,center_uy,0.6489982604980469 +karman_re400,target,95,38.0,velocity,lower_ux,1.405089259147644 +karman_re400,target,95,38.0,velocity,lower_uy,0.21301884949207306 +karman_re400,target,96,38.4,velocity,upper_ux,0.5412843227386475 +karman_re400,target,96,38.4,velocity,upper_uy,-0.02126418426632881 +karman_re400,target,96,38.4,velocity,center_ux,1.3408504724502563 +karman_re400,target,96,38.4,velocity,center_uy,-0.06951428204774857 +karman_re400,target,96,38.4,velocity,lower_ux,1.4299952983856201 +karman_re400,target,96,38.4,velocity,lower_uy,0.016202550381422043 +karman_re400,target,97,38.8,velocity,upper_ux,0.629439115524292 +karman_re400,target,97,38.8,velocity,upper_uy,-0.27362778782844543 +karman_re400,target,97,38.8,velocity,center_ux,1.2937774658203125 +karman_re400,target,97,38.8,velocity,center_uy,-0.7151727080345154 +karman_re400,target,97,38.8,velocity,lower_ux,1.3688713312149048 +karman_re400,target,97,38.8,velocity,lower_uy,-0.1761205792427063 +karman_re400,target,98,39.2,velocity,upper_ux,0.8010286092758179 +karman_re400,target,98,39.2,velocity,upper_uy,-0.40502455830574036 +karman_re400,target,98,39.2,velocity,center_ux,1.2192959785461426 +karman_re400,target,98,39.2,velocity,center_uy,-0.9026815891265869 +karman_re400,target,98,39.2,velocity,lower_ux,1.2561578750610352 +karman_re400,target,98,39.2,velocity,lower_uy,-0.31021490693092346 +karman_re400,target,99,39.6,velocity,upper_ux,0.9728120565414429 +karman_re400,target,99,39.6,velocity,upper_uy,-0.43121299147605896 +karman_re400,target,99,39.6,velocity,center_ux,1.1676214933395386 +karman_re400,target,99,39.6,velocity,center_uy,-0.8618550896644592 +karman_re400,target,99,39.6,velocity,lower_ux,1.1182560920715332 +karman_re400,target,99,39.6,velocity,lower_uy,-0.384786456823349 +karman_re400,target,100,40.0,velocity,upper_ux,1.1302268505096436 +karman_re400,target,100,40.0,velocity,upper_uy,-0.42324694991111755 +karman_re400,target,100,40.0,velocity,center_ux,1.157617449760437 +karman_re400,target,100,40.0,velocity,center_uy,-0.8773884773254395 +karman_re400,target,100,40.0,velocity,lower_ux,0.9717910289764404 +karman_re400,target,100,40.0,velocity,lower_uy,-0.4266873896121979 +karman_re400,target,101,40.4,velocity,upper_ux,1.2723525762557983 +karman_re400,target,101,40.4,velocity,upper_uy,-0.38928523659706116 +karman_re400,target,101,40.4,velocity,center_ux,1.180159568786621 +karman_re400,target,101,40.4,velocity,center_uy,-0.9364343881607056 +karman_re400,target,101,40.4,velocity,lower_ux,0.8127207159996033 +karman_re400,target,101,40.4,velocity,lower_uy,-0.41235315799713135 +karman_re400,target,102,40.8,velocity,upper_ux,1.388759732246399 +karman_re400,target,102,40.8,velocity,upper_uy,-0.2732621133327484 +karman_re400,target,102,40.8,velocity,center_ux,1.2267509698867798 +karman_re400,target,102,40.8,velocity,center_uy,-0.809305727481842 +karman_re400,target,102,40.8,velocity,lower_ux,0.6554570198059082 +karman_re400,target,102,40.8,velocity,lower_uy,-0.30209362506866455 +karman_re400,target,103,41.2,velocity,upper_ux,1.44892156124115 +karman_re400,target,103,41.2,velocity,upper_uy,-0.08196166902780533 +karman_re400,target,103,41.2,velocity,center_ux,1.261184573173523 +karman_re400,target,103,41.2,velocity,center_uy,-0.2008075714111328 +karman_re400,target,103,41.2,velocity,lower_ux,0.5663750171661377 +karman_re400,target,103,41.2,velocity,lower_uy,-0.07899129390716553 +karman_re400,target,104,41.6,velocity,upper_ux,1.4144339561462402 +karman_re400,target,104,41.6,velocity,upper_uy,0.13460946083068848 +karman_re400,target,104,41.6,velocity,center_ux,1.2490266561508179 +karman_re400,target,104,41.6,velocity,center_uy,0.5525487661361694 +karman_re400,target,104,41.6,velocity,lower_ux,0.6072317361831665 +karman_re400,target,104,41.6,velocity,lower_uy,0.17934578657150269 +karman_re400,target,105,42.0,velocity,upper_ux,1.3063517808914185 +karman_re400,target,105,42.0,velocity,upper_uy,0.299930214881897 +karman_re400,target,105,42.0,velocity,center_ux,1.2028403282165527 +karman_re400,target,105,42.0,velocity,center_uy,0.9074398279190063 +karman_re400,target,105,42.0,velocity,lower_ux,0.752643346786499 +karman_re400,target,105,42.0,velocity,lower_uy,0.34904739260673523 +karman_re400,target,106,42.4,velocity,upper_ux,1.1641604900360107 +karman_re400,target,106,42.4,velocity,upper_uy,0.394999623298645 +karman_re400,target,106,42.4,velocity,center_ux,1.163719892501831 +karman_re400,target,106,42.4,velocity,center_uy,0.8998421430587769 +karman_re400,target,106,42.4,velocity,lower_ux,0.9222824573516846 +karman_re400,target,106,42.4,velocity,lower_uy,0.407321572303772 +karman_re400,target,107,42.8,velocity,upper_ux,1.0112292766571045 +karman_re400,target,107,42.8,velocity,upper_uy,0.44772869348526 +karman_re400,target,107,42.8,velocity,center_ux,1.1601037979125977 +karman_re400,target,107,42.8,velocity,center_uy,0.8860495090484619 +karman_re400,target,107,42.8,velocity,lower_ux,1.0819597244262695 +karman_re400,target,107,42.8,velocity,lower_uy,0.4032054841518402 +karman_re400,target,108,43.2,velocity,upper_ux,0.8452123403549194 +karman_re400,target,108,43.2,velocity,upper_uy,0.45159557461738586 +karman_re400,target,108,43.2,velocity,center_ux,1.1954983472824097 +karman_re400,target,108,43.2,velocity,center_uy,0.9373401403427124 +karman_re400,target,108,43.2,velocity,lower_ux,1.2274836301803589 +karman_re400,target,108,43.2,velocity,lower_uy,0.38286343216896057 +karman_re400,target,109,43.6,velocity,upper_ux,0.6760172843933105 +karman_re400,target,109,43.6,velocity,upper_uy,0.36068809032440186 +karman_re400,target,109,43.6,velocity,center_ux,1.2720614671707153 +karman_re400,target,109,43.6,velocity,center_uy,0.8656474351882935 +karman_re400,target,109,43.6,velocity,lower_ux,1.3503239154815674 +karman_re400,target,109,43.6,velocity,lower_uy,0.28292691707611084 +karman_re400,target,110,44.0,velocity,upper_ux,0.5569491386413574 +karman_re400,target,110,44.0,velocity,upper_uy,0.13912580907344818 +karman_re400,target,110,44.0,velocity,center_ux,1.3375027179718018 +karman_re400,target,110,44.0,velocity,center_uy,0.3316318988800049 +karman_re400,target,110,44.0,velocity,lower_ux,1.4208635091781616 +karman_re400,target,110,44.0,velocity,lower_uy,0.11019877344369888 +karman_re400,target,111,44.4,velocity,upper_ux,0.573066771030426 +karman_re400,target,111,44.4,velocity,upper_uy,-0.14780622720718384 +karman_re400,target,111,44.4,velocity,center_ux,1.3354671001434326 +karman_re400,target,111,44.4,velocity,center_uy,-0.4377842843532562 +karman_re400,target,111,44.4,velocity,lower_ux,1.401879072189331 +karman_re400,target,111,44.4,velocity,lower_uy,-0.097239188849926 +karman_re400,target,112,44.8,velocity,upper_ux,0.7155638337135315 +karman_re400,target,112,44.8,velocity,upper_uy,-0.35033583641052246 +karman_re400,target,112,44.8,velocity,center_ux,1.270399808883667 +karman_re400,target,112,44.8,velocity,center_uy,-0.8674827814102173 +karman_re400,target,112,44.8,velocity,lower_ux,1.3068767786026 +karman_re400,target,112,44.8,velocity,lower_uy,-0.2656019628047943 +karman_re400,target,113,45.2,velocity,upper_ux,0.8930078148841858 +karman_re400,target,113,45.2,velocity,upper_uy,-0.4228268563747406 +karman_re400,target,113,45.2,velocity,center_ux,1.2034412622451782 +karman_re400,target,113,45.2,velocity,center_uy,-0.8930238485336304 +karman_re400,target,113,45.2,velocity,lower_ux,1.1736671924591064 +karman_re400,target,113,45.2,velocity,lower_uy,-0.36948731541633606 +karman_re400,target,114,45.6,velocity,upper_ux,1.060486912727356 +karman_re400,target,114,45.6,velocity,upper_uy,-0.41623806953430176 +karman_re400,target,114,45.6,velocity,center_ux,1.184040904045105 +karman_re400,target,114,45.6,velocity,center_uy,-0.8715612292289734 +karman_re400,target,114,45.6,velocity,lower_ux,1.029220700263977 +karman_re400,target,114,45.6,velocity,lower_uy,-0.4307821989059448 +karman_re400,target,115,46.0,velocity,upper_ux,1.2116683721542358 +karman_re400,target,115,46.0,velocity,upper_uy,-0.397247850894928 +karman_re400,target,115,46.0,velocity,center_ux,1.2113916873931885 +karman_re400,target,115,46.0,velocity,center_uy,-0.9204407334327698 +karman_re400,target,115,46.0,velocity,lower_ux,0.8690000176429749 +karman_re400,target,115,46.0,velocity,lower_uy,-0.4473387897014618 +karman_re400,target,116,46.4,velocity,upper_ux,1.336032748222351 +karman_re400,target,116,46.4,velocity,upper_uy,-0.30917245149612427 +karman_re400,target,116,46.4,velocity,center_ux,1.282313346862793 +karman_re400,target,116,46.4,velocity,center_uy,-0.8935244083404541 +karman_re400,target,116,46.4,velocity,lower_ux,0.6955406665802002 +karman_re400,target,116,46.4,velocity,lower_uy,-0.3746267557144165 +karman_re400,target,117,46.8,velocity,upper_ux,1.4164271354675293 +karman_re400,target,117,46.8,velocity,upper_uy,-0.1508730798959732 +karman_re400,target,117,46.8,velocity,center_ux,1.3529343605041504 +karman_re400,target,117,46.8,velocity,center_uy,-0.44474902749061584 +karman_re400,target,117,46.8,velocity,lower_ux,0.5610958933830261 +karman_re400,target,117,46.8,velocity,lower_uy,-0.17203183472156525 +karman_re400,target,118,47.2,velocity,upper_ux,1.4119220972061157 +karman_re400,target,118,47.2,velocity,upper_uy,0.05099077522754669 +karman_re400,target,118,47.2,velocity,center_ux,1.3545972108840942 +karman_re400,target,118,47.2,velocity,center_uy,0.3190363049507141 +karman_re400,target,118,47.2,velocity,lower_ux,0.5523353815078735 +karman_re400,target,118,47.2,velocity,lower_uy,0.11539506912231445 +karman_re400,target,119,47.6,velocity,upper_ux,1.328474521636963 +karman_re400,target,119,47.6,velocity,upper_uy,0.22502633929252625 +karman_re400,target,119,47.6,velocity,center_ux,1.2847470045089722 +karman_re400,target,119,47.6,velocity,center_uy,0.8215270042419434 +karman_re400,target,119,47.6,velocity,lower_ux,0.6792774796485901 +karman_re400,target,119,47.6,velocity,lower_uy,0.33696651458740234 +karman_re400,target,120,48.0,velocity,upper_ux,1.2062842845916748 +karman_re400,target,120,48.0,velocity,upper_uy,0.3363356292247772 +karman_re400,target,120,48.0,velocity,center_ux,1.2071188688278198 +karman_re400,target,120,48.0,velocity,center_uy,0.8880462050437927 +karman_re400,target,120,48.0,velocity,lower_ux,0.8589926958084106 +karman_re400,target,120,48.0,velocity,lower_uy,0.4277490973472595 +karman_re400,target,121,48.4,velocity,upper_ux,1.0685433149337769 +karman_re400,target,121,48.4,velocity,upper_uy,0.39932405948638916 +karman_re400,target,121,48.4,velocity,center_ux,1.1678032875061035 +karman_re400,target,121,48.4,velocity,center_uy,0.852199375629425 +karman_re400,target,121,48.4,velocity,lower_ux,1.0282589197158813 +karman_re400,target,121,48.4,velocity,lower_uy,0.43073228001594543 +karman_re400,target,122,48.8,velocity,upper_ux,0.9179152846336365 +karman_re400,target,122,48.8,velocity,upper_uy,0.428436815738678 +karman_re400,target,122,48.8,velocity,center_ux,1.1681596040725708 +karman_re400,target,122,48.8,velocity,center_uy,0.8952252268791199 +karman_re400,target,122,48.8,velocity,lower_ux,1.1814322471618652 +karman_re400,target,122,48.8,velocity,lower_uy,0.421629399061203 +karman_re400,target,123,49.2,velocity,upper_ux,0.7573875188827515 +karman_re400,target,123,49.2,velocity,upper_uy,0.38660237193107605 +karman_re400,target,123,49.2,velocity,center_ux,1.2039790153503418 +karman_re400,target,123,49.2,velocity,center_uy,0.934750497341156 +karman_re400,target,123,49.2,velocity,lower_ux,1.3180785179138184 +karman_re400,target,123,49.2,velocity,lower_uy,0.35988861322402954 +karman_re400,target,124,49.6,velocity,upper_ux,0.6111352443695068 +karman_re400,target,124,49.6,velocity,upper_uy,0.23679056763648987 +karman_re400,target,124,49.6,velocity,center_ux,1.2504665851593018 +karman_re400,target,124,49.6,velocity,center_uy,0.6564494967460632 +karman_re400,target,124,49.6,velocity,lower_ux,1.418485164642334 +karman_re400,target,124,49.6,velocity,lower_uy,0.2187160700559616 +karman_re400,target,125,50.0,velocity,upper_ux,0.5604503154754639 +karman_re400,target,125,50.0,velocity,upper_uy,-0.012980585917830467 +karman_re400,target,125,50.0,velocity,center_ux,1.2690943479537964 +karman_re400,target,125,50.0,velocity,center_uy,-0.06459954380989075 +karman_re400,target,125,50.0,velocity,lower_ux,1.4475444555282593 +karman_re400,target,125,50.0,velocity,lower_uy,0.011674157343804836 +karman_re400,target,126,50.4,velocity,upper_ux,0.6446285247802734 +karman_re400,target,126,50.4,velocity,upper_uy,-0.25227639079093933 +karman_re400,target,126,50.4,velocity,center_ux,1.2390543222427368 +karman_re400,target,126,50.4,velocity,center_uy,-0.7252671122550964 +karman_re400,target,126,50.4,velocity,lower_ux,1.3850473165512085 +karman_re400,target,126,50.4,velocity,lower_uy,-0.19207879900932312 +karman_re400,target,127,50.8,velocity,upper_ux,0.8056514859199524 +karman_re400,target,127,50.8,velocity,upper_uy,-0.3819698989391327 +karman_re400,target,127,50.8,velocity,center_ux,1.1860032081604004 +karman_re400,target,127,50.8,velocity,center_uy,-0.921110212802887 +karman_re400,target,127,50.8,velocity,lower_ux,1.262041449546814 +karman_re400,target,127,50.8,velocity,lower_uy,-0.33214256167411804 +karman_re400,target,128,51.2,velocity,upper_ux,0.9744250774383545 +karman_re400,target,128,51.2,velocity,upper_uy,-0.4122161865234375 +karman_re400,target,128,51.2,velocity,center_ux,1.1553844213485718 +karman_re400,target,128,51.2,velocity,center_uy,-0.8812474608421326 +karman_re400,target,128,51.2,velocity,lower_ux,1.1186399459838867 +karman_re400,target,128,51.2,velocity,lower_uy,-0.40886229276657104 +karman_re400,target,129,51.6,velocity,upper_ux,1.130242943763733 +karman_re400,target,129,51.6,velocity,upper_uy,-0.4064779281616211 +karman_re400,target,129,51.6,velocity,center_ux,1.1601028442382812 +karman_re400,target,129,51.6,velocity,center_uy,-0.895615816116333 +karman_re400,target,129,51.6,velocity,lower_ux,0.9642684459686279 +karman_re400,target,129,51.6,velocity,lower_uy,-0.4498157203197479 +karman_re400,target,130,52.0,velocity,upper_ux,1.2708468437194824 +karman_re400,target,130,52.0,velocity,upper_uy,-0.3672676086425781 +karman_re400,target,130,52.0,velocity,center_ux,1.202254056930542 +karman_re400,target,130,52.0,velocity,center_uy,-0.946308434009552 +karman_re400,target,130,52.0,velocity,lower_ux,0.7975857257843018 +karman_re400,target,130,52.0,velocity,lower_uy,-0.4304780066013336 +karman_re400,target,131,52.4,velocity,upper_ux,1.3834495544433594 +karman_re400,target,131,52.4,velocity,upper_uy,-0.24500040709972382 +karman_re400,target,131,52.4,velocity,center_ux,1.2731338739395142 +karman_re400,target,131,52.4,velocity,center_uy,-0.7701056599617004 +karman_re400,target,131,52.4,velocity,lower_ux,0.637046217918396 +karman_re400,target,131,52.4,velocity,lower_uy,-0.30546069145202637 +karman_re400,target,132,52.8,velocity,upper_ux,1.4320807456970215 +karman_re400,target,132,52.8,velocity,upper_uy,-0.05226123705506325 +karman_re400,target,132,52.8,velocity,center_ux,1.3185439109802246 +karman_re400,target,132,52.8,velocity,center_uy,-0.11493271589279175 +karman_re400,target,132,52.8,velocity,lower_ux,0.5523688793182373 +karman_re400,target,132,52.8,velocity,lower_uy,-0.05863213539123535 +karman_re400,target,133,53.2,velocity,upper_ux,1.3877737522125244 +karman_re400,target,133,53.2,velocity,upper_uy,0.15411214530467987 +karman_re400,target,133,53.2,velocity,center_ux,1.2984639406204224 +karman_re400,target,133,53.2,velocity,center_uy,0.6119300723075867 +karman_re400,target,133,53.2,velocity,lower_ux,0.608704686164856 +karman_re400,target,133,53.2,velocity,lower_uy,0.21128089725971222 +karman_re400,target,134,53.6,velocity,upper_ux,1.2766401767730713 +karman_re400,target,134,53.6,velocity,upper_uy,0.30707377195358276 +karman_re400,target,134,53.6,velocity,center_ux,1.234471082687378 +karman_re400,target,134,53.6,velocity,center_uy,0.9072654843330383 +karman_re400,target,134,53.6,velocity,lower_ux,0.7677004933357239 +karman_re400,target,134,53.6,velocity,lower_uy,0.37385308742523193 +karman_re400,target,135,54.0,velocity,upper_ux,1.1364731788635254 +karman_re400,target,135,54.0,velocity,upper_uy,0.396391898393631 +karman_re400,target,135,54.0,velocity,center_ux,1.1852813959121704 +karman_re400,target,135,54.0,velocity,center_uy,0.8868972659111023 +karman_re400,target,135,54.0,velocity,lower_ux,0.9414913654327393 +karman_re400,target,135,54.0,velocity,lower_uy,0.41932034492492676 +karman_re400,target,136,54.4,velocity,upper_ux,0.9850872755050659 +karman_re400,target,136,54.4,velocity,upper_uy,0.44802573323249817 +karman_re400,target,136,54.4,velocity,center_ux,1.183194875717163 +karman_re400,target,136,54.4,velocity,center_uy,0.8871394395828247 +karman_re400,target,136,54.4,velocity,lower_ux,1.1031770706176758 +karman_re400,target,136,54.4,velocity,lower_uy,0.40757066011428833 +karman_re400,target,137,54.8,velocity,upper_ux,0.8187689185142517 +karman_re400,target,137,54.8,velocity,upper_uy,0.4428301751613617 +karman_re400,target,137,54.8,velocity,center_ux,1.227840781211853 +karman_re400,target,137,54.8,velocity,center_uy,0.9367232322692871 +karman_re400,target,137,54.8,velocity,lower_ux,1.2486469745635986 +karman_re400,target,137,54.8,velocity,lower_uy,0.3761645555496216 +karman_re400,target,138,55.2,velocity,upper_ux,0.6472582221031189 +karman_re400,target,138,55.2,velocity,upper_uy,0.3336212933063507 +karman_re400,target,138,55.2,velocity,center_ux,1.3103621006011963 +karman_re400,target,138,55.2,velocity,center_uy,0.8144927024841309 +karman_re400,target,138,55.2,velocity,lower_ux,1.363181710243225 +karman_re400,target,138,55.2,velocity,lower_uy,0.2652234435081482 +karman_re400,target,139,55.6,velocity,upper_ux,0.5417996048927307 +karman_re400,target,139,55.6,velocity,upper_uy,0.09079790860414505 +karman_re400,target,139,55.6,velocity,center_ux,1.368901252746582 +karman_re400,target,139,55.6,velocity,center_uy,0.21937471628189087 +karman_re400,target,139,55.6,velocity,lower_ux,1.4209816455841064 +karman_re400,target,139,55.6,velocity,lower_uy,0.08774032443761826 +karman_re400,target,140,56.0,velocity,upper_ux,0.5804010629653931 +karman_re400,target,140,56.0,velocity,upper_uy,-0.19587165117263794 +karman_re400,target,140,56.0,velocity,center_ux,1.3477582931518555 +karman_re400,target,140,56.0,velocity,center_uy,-0.5237281322479248 +karman_re400,target,140,56.0,velocity,lower_ux,1.389769434928894 +karman_re400,target,140,56.0,velocity,lower_uy,-0.11268728971481323 +karman_re400,target,141,56.4,velocity,upper_ux,0.7362867593765259 +karman_re400,target,141,56.4,velocity,upper_uy,-0.3801753520965576 +karman_re400,target,141,56.4,velocity,center_ux,1.2643295526504517 +karman_re400,target,141,56.4,velocity,center_uy,-0.8775899410247803 +karman_re400,target,141,56.4,velocity,lower_ux,1.2875087261199951 +karman_re400,target,141,56.4,velocity,lower_uy,-0.270071417093277 +karman_re400,target,142,56.8,velocity,upper_ux,0.9147665500640869 +karman_re400,target,142,56.8,velocity,upper_uy,-0.4355197846889496 +karman_re400,target,142,56.8,velocity,center_ux,1.1965280771255493 +karman_re400,target,142,56.8,velocity,center_uy,-0.8731487393379211 +karman_re400,target,142,56.8,velocity,lower_ux,1.1604092121124268 +karman_re400,target,142,56.8,velocity,lower_uy,-0.3621250092983246 +karman_re400,target,143,57.2,velocity,upper_ux,1.0796833038330078 +karman_re400,target,143,57.2,velocity,upper_uy,-0.4255174994468689 +karman_re400,target,143,57.2,velocity,center_ux,1.1727015972137451 +karman_re400,target,143,57.2,velocity,center_uy,-0.8602387309074402 +karman_re400,target,143,57.2,velocity,lower_ux,1.0190398693084717 +karman_re400,target,143,57.2,velocity,lower_uy,-0.41715967655181885 +karman_re400,target,144,57.6,velocity,upper_ux,1.2296847105026245 +karman_re400,target,144,57.6,velocity,upper_uy,-0.4083346128463745 +karman_re400,target,144,57.6,velocity,center_ux,1.189610481262207 +karman_re400,target,144,57.6,velocity,center_uy,-0.9186641573905945 +karman_re400,target,144,57.6,velocity,lower_ux,0.8633017539978027 +karman_re400,target,144,57.6,velocity,lower_uy,-0.428542822599411 +karman_re400,target,145,58.0,velocity,upper_ux,1.353622555732727 +karman_re400,target,145,58.0,velocity,upper_uy,-0.3169090747833252 +karman_re400,target,145,58.0,velocity,center_ux,1.2393269538879395 +karman_re400,target,145,58.0,velocity,center_uy,-0.8934416770935059 +karman_re400,target,145,58.0,velocity,lower_ux,0.698211669921875 +karman_re400,target,145,58.0,velocity,lower_uy,-0.3526621162891388 +karman_re400,target,146,58.4,velocity,upper_ux,1.4341961145401 +karman_re400,target,146,58.4,velocity,upper_uy,-0.1524500846862793 +karman_re400,target,146,58.4,velocity,center_ux,1.2878062725067139 +karman_re400,target,146,58.4,velocity,center_uy,-0.43929949402809143 +karman_re400,target,146,58.4,velocity,lower_ux,0.572528600692749 +karman_re400,target,146,58.4,velocity,lower_uy,-0.15909376740455627 +karman_re400,target,147,58.8,velocity,upper_ux,1.4295414686203003 +karman_re400,target,147,58.8,velocity,upper_uy,0.058874353766441345 +karman_re400,target,147,58.8,velocity,center_ux,1.2875114679336548 +karman_re400,target,147,58.8,velocity,center_uy,0.33023425936698914 +karman_re400,target,147,58.8,velocity,lower_ux,0.5674238801002502 +karman_re400,target,147,58.8,velocity,lower_uy,0.10910335183143616 +karman_re400,target,148,59.2,velocity,upper_ux,1.343770146369934 +karman_re400,target,148,59.2,velocity,upper_uy,0.24042926728725433 +karman_re400,target,148,59.2,velocity,center_ux,1.2372088432312012 +karman_re400,target,148,59.2,velocity,center_uy,0.8394555449485779 +karman_re400,target,148,59.2,velocity,lower_ux,0.6909787058830261 +karman_re400,target,148,59.2,velocity,lower_uy,0.31870967149734497 +karman_re400,target,149,59.6,velocity,upper_ux,1.2135605812072754 +karman_re400,target,149,59.6,velocity,upper_uy,0.35427987575531006 +karman_re400,target,149,59.6,velocity,center_ux,1.1792172193527222 +karman_re400,target,149,59.6,velocity,center_uy,0.9060418009757996 +karman_re400,target,149,59.6,velocity,lower_ux,0.8618624210357666 +karman_re400,target,149,59.6,velocity,lower_uy,0.4095951318740845 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_wide.csv new file mode 100644 index 0000000..78629fe --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re400/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re400,target,0,0.0,1.3085145950317383,-0.3571373224258423,1.2351140975952148,-0.9329142570495605,0.7564209699630737,-0.39820563793182373 +karman_re400,target,1,0.4,1.409063458442688,-0.22015082836151123,1.2989274263381958,-0.6645610928535461,0.6040205955505371,-0.24691146612167358 +karman_re400,target,2,0.8,1.4359593391418457,-0.021865114569664,1.3200181722640991,0.04793955758213997,0.5444077849388123,0.013337481766939163 +karman_re400,target,3,1.2,1.377623438835144,0.17419835925102234,1.2791377305984497,0.7064710259437561,0.6289743185043335,0.2632085084915161 +karman_re400,target,4,1.6,1.2637306451797485,0.31156206130981445,1.2103615999221802,0.9076759815216064,0.7966300249099731,0.39729878306388855 +karman_re400,target,5,2.0,1.1244471073150635,0.38730284571647644,1.1620690822601318,0.8670728802680969,0.9669462442398071,0.42700356245040894 +karman_re400,target,6,2.4,0.977877676486969,0.42965611815452576,1.1541603803634644,0.8785855770111084,1.125063180923462,0.4204954206943512 +karman_re400,target,7,2.8,0.8171126842498779,0.4171876609325409,1.1761202812194824,0.9373810291290283,1.2662653923034668,0.38903892040252686 +karman_re400,target,8,3.2,0.6594882011413574,0.3097687065601349,1.2245060205459595,0.8194769024848938,1.383988618850708,0.27530598640441895 +karman_re400,target,9,3.6,0.5681757926940918,0.08792588859796524,1.2627646923065186,0.21989259123802185,1.4473055601119995,0.0851595401763916 +karman_re400,target,10,4.0,0.6051244139671326,-0.17264585196971893,1.2525873184204102,-0.5384258031845093,1.4142743349075317,-0.13199058175086975 +karman_re400,target,11,4.4,0.7485953569412231,-0.345773309469223,1.2054812908172607,-0.904664933681488,1.3053650856018066,-0.2988112270832062 +karman_re400,target,12,4.8,0.9201911091804504,-0.4064708650112152,1.167740821838379,-0.9023884534835815,1.1650618314743042,-0.3960038423538208 +karman_re400,target,13,5.2,1.0790287256240845,-0.4020403325557709,1.163571834564209,-0.888028085231781,1.0108088254928589,-0.4498954713344574 +karman_re400,target,14,5.6,1.22614324092865,-0.3809657394886017,1.2026313543319702,-0.937812328338623,0.8450696468353271,-0.4543899595737457 +karman_re400,target,15,6.0,1.3481330871582031,-0.280754029750824,1.282973051071167,-0.8626605272293091,0.6738433837890625,-0.36273661255836487 +karman_re400,target,16,6.4,1.417466163635254,-0.10870837420225143,1.3510442972183228,-0.32515186071395874,0.5535178184509277,-0.13768182694911957 +karman_re400,target,17,6.8,1.3983852863311768,0.09683641791343689,1.3481037616729736,0.4417992830276489,0.5714768171310425,0.1528332680463791 +karman_re400,target,18,7.2,1.30426025390625,0.2639733552932739,1.2790324687957764,0.8663166165351868,0.7164385318756104,0.35653212666511536 +karman_re400,target,19,7.6,1.1711418628692627,0.36616191267967224,1.207149863243103,0.8881078362464905,0.8938612341880798,0.42666739225387573 +karman_re400,target,20,8.0,1.0288506746292114,0.4274666905403137,1.1866153478622437,0.8677662014961243,1.0628461837768555,0.4188697338104248 +karman_re400,target,21,8.4,0.8687223196029663,0.4441407322883606,1.2113502025604248,0.9178210496902466,1.2134279012680054,0.3995591402053833 +karman_re400,target,22,8.8,0.6963803172111511,0.37262341380119324,1.2796056270599365,0.8947521448135376,1.3373560905456543,0.3122086226940155 +karman_re400,target,23,9.2,0.562372624874115,0.17259597778320312,1.3487579822540283,0.45317450165748596,1.418951153755188,0.15471455454826355 +karman_re400,target,24,9.6,0.5507239103317261,-0.11273720860481262,1.348781704902649,-0.310320109128952,1.414362907409668,-0.04725278913974762 +karman_re400,target,25,10.0,0.6769605278968811,-0.33439353108406067,1.281002402305603,-0.8191845417022705,1.3328111171722412,-0.2221730649471283 +karman_re400,target,26,10.4,0.8557254672050476,-0.4267515242099762,1.203881859779358,-0.8894383311271667,1.210721492767334,-0.33410656452178955 +karman_re400,target,27,10.8,1.0257458686828613,-0.431898295879364,1.164911150932312,-0.8528926372528076,1.0743223428726196,-0.39731982350349426 +karman_re400,target,28,11.2,1.1778810024261475,-0.42373034358024597,1.1617087125778198,-0.8931939005851746,0.9237760901451111,-0.42641302943229675 +karman_re400,target,29,11.6,1.3133271932601929,-0.36446139216423035,1.1908226013183594,-0.9356545209884644,0.7630974054336548,-0.38659030199050903 +karman_re400,target,30,12.0,1.4195994138717651,-0.22586725652217865,1.236088514328003,-0.6765270829200745,0.6190075278282166,-0.24283571541309357 +karman_re400,target,31,12.4,1.4517695903778076,-0.016804164275527,1.2548269033432007,0.03945834934711456,0.5654041767120361,0.002720397664234042 +karman_re400,target,32,12.8,1.3902838230133057,0.19102764129638672,1.2288861274719238,0.7136432528495789,0.6441952586174011,0.24192292988300323 +karman_re400,target,33,13.2,1.266632318496704,0.334756076335907,1.1811929941177368,0.9244821667671204,0.8024790287017822,0.37474438548088074 +karman_re400,target,34,13.6,1.1223942041397095,0.41350799798965454,1.154763102531433,0.8864061236381531,0.9712328314781189,0.4078036844730377 +karman_re400,target,35,14.0,0.9653937816619873,0.4554295837879181,1.1613950729370117,0.8984017372131348,1.1257565021514893,0.40213996171951294 +karman_re400,target,36,14.4,0.7969576120376587,0.43646439909935,1.20761239528656,0.94599449634552,1.265579104423523,0.36299553513526917 +karman_re400,target,37,14.8,0.6329971551895142,0.3086336851119995,1.2876410484313965,0.7638344764709473,1.3805636167526245,0.23964650928974152 +karman_re400,target,38,15.2,0.5481277704238892,0.0594341903924942,1.3358383178710938,0.1120673343539238,1.4268800020217896,0.050438035279512405 +karman_re400,target,39,15.6,0.6060505509376526,-0.21569763123989105,1.3144023418426514,-0.6130836009979248,1.3826769590377808,-0.15380507707595825 +karman_re400,target,40,16.0,0.7670212388038635,-0.3790891170501709,1.245010495185852,-0.9038017392158508,1.2723764181137085,-0.3048034608364105 +karman_re400,target,41,16.4,0.9419438242912292,-0.4231274425983429,1.1914050579071045,-0.8834188580513,1.133102536201477,-0.3938737213611603 +karman_re400,target,42,16.8,1.1053004264831543,-0.4096328020095825,1.1889451742172241,-0.8849933743476868,0.983838677406311,-0.4459853768348694 +karman_re400,target,43,17.2,1.2502692937850952,-0.37718620896339417,1.2327014207839966,-0.934785783290863,0.8167896270751953,-0.4407101571559906 +karman_re400,target,44,17.6,1.3656089305877686,-0.26652753353118896,1.3167880773544312,-0.8133021593093872,0.6460376977920532,-0.3316257894039154 +karman_re400,target,45,18.0,1.4219218492507935,-0.08940128237009048,1.3733404874801636,-0.21723277866840363,0.5404145121574402,-0.08758307248353958 +karman_re400,target,46,18.4,1.3912973403930664,0.11005087196826935,1.3504687547683716,0.5243600606918335,0.579083263874054,0.19916118681430817 +karman_re400,target,47,18.8,1.2901091575622559,0.26480215787887573,1.2649797201156616,0.8737044334411621,0.7329109907150269,0.3809240758419037 +karman_re400,target,48,19.2,1.1630620956420898,0.35760563611984253,1.1947568655014038,0.870402991771698,0.9136728048324585,0.43767422437667847 +karman_re400,target,49,19.6,1.0223922729492188,0.4119476079940796,1.1676756143569946,0.8562734127044678,1.0780529975891113,0.42837852239608765 +karman_re400,target,50,20.0,0.8678216338157654,0.4237498939037323,1.1783117055892944,0.914273738861084,1.2265816926956177,0.4127959907054901 +karman_re400,target,51,20.4,0.7062122821807861,0.3518907427787781,1.2219526767730713,0.9004908204078674,1.3537293672561646,0.3244396150112152 +karman_re400,target,52,20.8,0.5799527764320374,0.16576820611953735,1.2644977569580078,0.46540752053260803,1.4371970891952515,0.1607106328010559 +karman_re400,target,53,21.2,0.5714412927627563,-0.09640764445066452,1.267243504524231,-0.30450618267059326,1.437376856803894,-0.053837355226278305 +karman_re400,target,54,21.6,0.6889928579330444,-0.3068252205848694,1.2236542701721191,-0.8343424201011658,1.3518667221069336,-0.2406681627035141 +karman_re400,target,55,22.0,0.8572165966033936,-0.4016987085342407,1.1722562313079834,-0.9130256175994873,1.2200489044189453,-0.3582380712032318 +karman_re400,target,56,22.4,1.0231258869171143,-0.4116145372390747,1.1512742042541504,-0.8727850317955017,1.075039029121399,-0.4216046631336212 +karman_re400,target,57,22.8,1.17415452003479,-0.40578600764274597,1.16350519657135,-0.9107839465141296,0.9171633720397949,-0.449249267578125 +karman_re400,target,58,23.2,1.3068952560424805,-0.34156617522239685,1.2117189168930054,-0.9377371072769165,0.7490613460540771,-0.4034441113471985 +karman_re400,target,59,23.6,1.4094494581222534,-0.1978263258934021,1.279471755027771,-0.6282666921615601,0.6039149761199951,-0.24375471472740173 +karman_re400,target,60,24.0,1.4321720600128174,0.009549805894494057,1.306347370147705,0.11318975687026978,0.5570236444473267,0.021894725039601326 +karman_re400,target,61,24.4,1.3638572692871094,0.20727680623531342,1.271448016166687,0.7508394122123718,0.6499220132827759,0.2678419351577759 +karman_re400,target,62,24.8,1.2406914234161377,0.3414109945297241,1.2108891010284424,0.9184513688087463,0.8190705180168152,0.3925020694732666 +karman_re400,target,63,25.2,1.0950500965118408,0.41788214445114136,1.176454782485962,0.8804898262023926,0.9885243773460388,0.4144701659679413 +karman_re400,target,64,25.6,0.938981294631958,0.4576905071735382,1.1900856494903564,0.9037601351737976,1.1459101438522339,0.4018692672252655 +karman_re400,target,65,26.0,0.7674859762191772,0.4269919991493225,1.2503832578659058,0.9376956224441528,1.2837611436843872,0.34900566935539246 +karman_re400,target,66,26.4,0.6052980422973633,0.27821943163871765,1.3383506536483765,0.6884070634841919,1.3880337476730347,0.2179107517004013 +karman_re400,target,67,26.8,0.536733090877533,0.0037846947088837624,1.3765661716461182,-0.015596901066601276,1.4190348386764526,0.02546047419309616 +karman_re400,target,68,27.2,0.6183749437332153,-0.2659420371055603,1.331568956375122,-0.6827479600906372,1.3628838062286377,-0.16684935986995697 +karman_re400,target,69,27.6,0.7886586785316467,-0.4073392450809479,1.2442878484725952,-0.8936831951141357,1.249770998954773,-0.3031793534755707 +karman_re400,target,70,28.0,0.9671373963356018,-0.43589919805526733,1.1882691383361816,-0.8604286909103394,1.1174724102020264,-0.38260772824287415 +karman_re400,target,71,28.4,1.1269173622131348,-0.422193706035614,1.17808198928833,-0.8748716711997986,0.9714246392250061,-0.4286492168903351 +karman_re400,target,72,28.8,1.2691727876663208,-0.3871316611766815,1.207156777381897,-0.9325215816497803,0.8097041249275208,-0.41712796688079834 +karman_re400,target,73,29.2,1.3866184949874878,-0.2728649079799652,1.269421100616455,-0.8083610534667969,0.6497323513031006,-0.306883841753006 +karman_re400,target,74,29.6,1.440456748008728,-0.08818081021308899,1.305332064628601,-0.2044180929660797,0.5517613887786865,-0.0761963427066803 +karman_re400,target,75,30.0,1.4075192213058472,0.11968059837818146,1.285215139389038,0.5410903692245483,0.5922788381576538,0.190183624625206 +karman_re400,target,76,30.4,1.3064007759094238,0.27985867857933044,1.2243996858596802,0.8937498331069946,0.7425024509429932,0.3632802665233612 +karman_re400,target,77,30.8,1.169307827949524,0.3731396198272705,1.1691341400146484,0.8863261938095093,0.9147434830665588,0.4217272102832794 +karman_re400,target,78,31.2,1.0242304801940918,0.42507386207580566,1.152745246887207,0.8688924312591553,1.0767728090286255,0.4175419509410858 +karman_re400,target,79,31.6,0.8658630847930908,0.4341093897819519,1.1692520380020142,0.9246989488601685,1.2241145372390747,0.4037056863307953 +karman_re400,target,80,32.0,0.7019622325897217,0.35829976201057434,1.216647744178772,0.8985231518745422,1.3490533828735352,0.31339797377586365 +karman_re400,target,81,32.4,0.5809781551361084,0.1653325855731964,1.268168568611145,0.43736496567726135,1.4343341588974,0.14509189128875732 +karman_re400,target,82,32.8,0.5774239897727966,-0.10224296897649765,1.2741039991378784,-0.34046804904937744,1.4292892217636108,-0.07186158001422882 +karman_re400,target,83,33.2,0.6990910172462463,-0.31119439005851746,1.2311770915985107,-0.8495562076568604,1.338698148727417,-0.2563791573047638 +karman_re400,target,84,33.6,0.8707716464996338,-0.40127813816070557,1.182464838027954,-0.9147396683692932,1.2049182653427124,-0.37195727229118347 +karman_re400,target,85,34.0,1.034980297088623,-0.40635693073272705,1.1654179096221924,-0.8809053301811218,1.0547462701797485,-0.4362920820713043 +karman_re400,target,86,34.4,1.1866750717163086,-0.3941217064857483,1.1916831731796265,-0.9220172166824341,0.8927514553070068,-0.4600156545639038 +karman_re400,target,87,34.8,1.317026972770691,-0.31727537512779236,1.2634929418563843,-0.9182605147361755,0.7201786637306213,-0.4005899727344513 +karman_re400,target,88,35.2,1.4055901765823364,-0.16548945009708405,1.3432235717773438,-0.5249561071395874,0.5748801827430725,-0.21294745802879333 +karman_re400,target,89,35.6,1.4124003648757935,0.037152986973524094,1.3619294166564941,0.23632901906967163,0.5485828518867493,0.07531709969043732 +karman_re400,target,90,36.0,1.3355624675750732,0.21897023916244507,1.3034344911575317,0.7948658466339111,0.6652673482894897,0.3150618076324463 +karman_re400,target,91,36.4,1.2112562656402588,0.33853408694267273,1.2230180501937866,0.8971636295318604,0.8422595858573914,0.41954439878463745 +karman_re400,target,92,36.8,1.0732512474060059,0.40825405716896057,1.1851742267608643,0.8614924550056458,1.0156078338623047,0.4266758859157562 +karman_re400,target,93,37.2,0.9211071133613586,0.4427591562271118,1.1953989267349243,0.899359941482544,1.1728417873382568,0.412520170211792 +karman_re400,target,94,37.6,0.750954806804657,0.40242302417755127,1.2453444004058838,0.9305505156517029,1.3050495386123657,0.35048550367355347 +karman_re400,target,95,38.0,0.5977475643157959,0.2463039606809616,1.3174153566360474,0.6489982604980469,1.405089259147644,0.21301884949207306 +karman_re400,target,96,38.4,0.5412843227386475,-0.02126418426632881,1.3408504724502563,-0.06951428204774857,1.4299952983856201,0.016202550381422043 +karman_re400,target,97,38.8,0.629439115524292,-0.27362778782844543,1.2937774658203125,-0.7151727080345154,1.3688713312149048,-0.1761205792427063 +karman_re400,target,98,39.2,0.8010286092758179,-0.40502455830574036,1.2192959785461426,-0.9026815891265869,1.2561578750610352,-0.31021490693092346 +karman_re400,target,99,39.6,0.9728120565414429,-0.43121299147605896,1.1676214933395386,-0.8618550896644592,1.1182560920715332,-0.384786456823349 +karman_re400,target,100,40.0,1.1302268505096436,-0.42324694991111755,1.157617449760437,-0.8773884773254395,0.9717910289764404,-0.4266873896121979 +karman_re400,target,101,40.4,1.2723525762557983,-0.38928523659706116,1.180159568786621,-0.9364343881607056,0.8127207159996033,-0.41235315799713135 +karman_re400,target,102,40.8,1.388759732246399,-0.2732621133327484,1.2267509698867798,-0.809305727481842,0.6554570198059082,-0.30209362506866455 +karman_re400,target,103,41.2,1.44892156124115,-0.08196166902780533,1.261184573173523,-0.2008075714111328,0.5663750171661377,-0.07899129390716553 +karman_re400,target,104,41.6,1.4144339561462402,0.13460946083068848,1.2490266561508179,0.5525487661361694,0.6072317361831665,0.17934578657150269 +karman_re400,target,105,42.0,1.3063517808914185,0.299930214881897,1.2028403282165527,0.9074398279190063,0.752643346786499,0.34904739260673523 +karman_re400,target,106,42.4,1.1641604900360107,0.394999623298645,1.163719892501831,0.8998421430587769,0.9222824573516846,0.407321572303772 +karman_re400,target,107,42.8,1.0112292766571045,0.44772869348526,1.1601037979125977,0.8860495090484619,1.0819597244262695,0.4032054841518402 +karman_re400,target,108,43.2,0.8452123403549194,0.45159557461738586,1.1954983472824097,0.9373401403427124,1.2274836301803589,0.38286343216896057 +karman_re400,target,109,43.6,0.6760172843933105,0.36068809032440186,1.2720614671707153,0.8656474351882935,1.3503239154815674,0.28292691707611084 +karman_re400,target,110,44.0,0.5569491386413574,0.13912580907344818,1.3375027179718018,0.3316318988800049,1.4208635091781616,0.11019877344369888 +karman_re400,target,111,44.4,0.573066771030426,-0.14780622720718384,1.3354671001434326,-0.4377842843532562,1.401879072189331,-0.097239188849926 +karman_re400,target,112,44.8,0.7155638337135315,-0.35033583641052246,1.270399808883667,-0.8674827814102173,1.3068767786026,-0.2656019628047943 +karman_re400,target,113,45.2,0.8930078148841858,-0.4228268563747406,1.2034412622451782,-0.8930238485336304,1.1736671924591064,-0.36948731541633606 +karman_re400,target,114,45.6,1.060486912727356,-0.41623806953430176,1.184040904045105,-0.8715612292289734,1.029220700263977,-0.4307821989059448 +karman_re400,target,115,46.0,1.2116683721542358,-0.397247850894928,1.2113916873931885,-0.9204407334327698,0.8690000176429749,-0.4473387897014618 +karman_re400,target,116,46.4,1.336032748222351,-0.30917245149612427,1.282313346862793,-0.8935244083404541,0.6955406665802002,-0.3746267557144165 +karman_re400,target,117,46.8,1.4164271354675293,-0.1508730798959732,1.3529343605041504,-0.44474902749061584,0.5610958933830261,-0.17203183472156525 +karman_re400,target,118,47.2,1.4119220972061157,0.05099077522754669,1.3545972108840942,0.3190363049507141,0.5523353815078735,0.11539506912231445 +karman_re400,target,119,47.6,1.328474521636963,0.22502633929252625,1.2847470045089722,0.8215270042419434,0.6792774796485901,0.33696651458740234 +karman_re400,target,120,48.0,1.2062842845916748,0.3363356292247772,1.2071188688278198,0.8880462050437927,0.8589926958084106,0.4277490973472595 +karman_re400,target,121,48.4,1.0685433149337769,0.39932405948638916,1.1678032875061035,0.852199375629425,1.0282589197158813,0.43073228001594543 +karman_re400,target,122,48.8,0.9179152846336365,0.428436815738678,1.1681596040725708,0.8952252268791199,1.1814322471618652,0.421629399061203 +karman_re400,target,123,49.2,0.7573875188827515,0.38660237193107605,1.2039790153503418,0.934750497341156,1.3180785179138184,0.35988861322402954 +karman_re400,target,124,49.6,0.6111352443695068,0.23679056763648987,1.2504665851593018,0.6564494967460632,1.418485164642334,0.2187160700559616 +karman_re400,target,125,50.0,0.5604503154754639,-0.012980585917830467,1.2690943479537964,-0.06459954380989075,1.4475444555282593,0.011674157343804836 +karman_re400,target,126,50.4,0.6446285247802734,-0.25227639079093933,1.2390543222427368,-0.7252671122550964,1.3850473165512085,-0.19207879900932312 +karman_re400,target,127,50.8,0.8056514859199524,-0.3819698989391327,1.1860032081604004,-0.921110212802887,1.262041449546814,-0.33214256167411804 +karman_re400,target,128,51.2,0.9744250774383545,-0.4122161865234375,1.1553844213485718,-0.8812474608421326,1.1186399459838867,-0.40886229276657104 +karman_re400,target,129,51.6,1.130242943763733,-0.4064779281616211,1.1601028442382812,-0.895615816116333,0.9642684459686279,-0.4498157203197479 +karman_re400,target,130,52.0,1.2708468437194824,-0.3672676086425781,1.202254056930542,-0.946308434009552,0.7975857257843018,-0.4304780066013336 +karman_re400,target,131,52.4,1.3834495544433594,-0.24500040709972382,1.2731338739395142,-0.7701056599617004,0.637046217918396,-0.30546069145202637 +karman_re400,target,132,52.8,1.4320807456970215,-0.05226123705506325,1.3185439109802246,-0.11493271589279175,0.5523688793182373,-0.05863213539123535 +karman_re400,target,133,53.2,1.3877737522125244,0.15411214530467987,1.2984639406204224,0.6119300723075867,0.608704686164856,0.21128089725971222 +karman_re400,target,134,53.6,1.2766401767730713,0.30707377195358276,1.234471082687378,0.9072654843330383,0.7677004933357239,0.37385308742523193 +karman_re400,target,135,54.0,1.1364731788635254,0.396391898393631,1.1852813959121704,0.8868972659111023,0.9414913654327393,0.41932034492492676 +karman_re400,target,136,54.4,0.9850872755050659,0.44802573323249817,1.183194875717163,0.8871394395828247,1.1031770706176758,0.40757066011428833 +karman_re400,target,137,54.8,0.8187689185142517,0.4428301751613617,1.227840781211853,0.9367232322692871,1.2486469745635986,0.3761645555496216 +karman_re400,target,138,55.2,0.6472582221031189,0.3336212933063507,1.3103621006011963,0.8144927024841309,1.363181710243225,0.2652234435081482 +karman_re400,target,139,55.6,0.5417996048927307,0.09079790860414505,1.368901252746582,0.21937471628189087,1.4209816455841064,0.08774032443761826 +karman_re400,target,140,56.0,0.5804010629653931,-0.19587165117263794,1.3477582931518555,-0.5237281322479248,1.389769434928894,-0.11268728971481323 +karman_re400,target,141,56.4,0.7362867593765259,-0.3801753520965576,1.2643295526504517,-0.8775899410247803,1.2875087261199951,-0.270071417093277 +karman_re400,target,142,56.8,0.9147665500640869,-0.4355197846889496,1.1965280771255493,-0.8731487393379211,1.1604092121124268,-0.3621250092983246 +karman_re400,target,143,57.2,1.0796833038330078,-0.4255174994468689,1.1727015972137451,-0.8602387309074402,1.0190398693084717,-0.41715967655181885 +karman_re400,target,144,57.6,1.2296847105026245,-0.4083346128463745,1.189610481262207,-0.9186641573905945,0.8633017539978027,-0.428542822599411 +karman_re400,target,145,58.0,1.353622555732727,-0.3169090747833252,1.2393269538879395,-0.8934416770935059,0.698211669921875,-0.3526621162891388 +karman_re400,target,146,58.4,1.4341961145401,-0.1524500846862793,1.2878062725067139,-0.43929949402809143,0.572528600692749,-0.15909376740455627 +karman_re400,target,147,58.8,1.4295414686203003,0.058874353766441345,1.2875114679336548,0.33023425936698914,0.5674238801002502,0.10910335183143616 +karman_re400,target,148,59.2,1.343770146369934,0.24042926728725433,1.2372088432312012,0.8394555449485779,0.6909787058830261,0.31870967149734497 +karman_re400,target,149,59.6,1.2135605812072754,0.35427987575531006,1.1792172193527222,0.9060418009757996,0.8618624210357666,0.4095951318740845 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_dtw_convergence.csv new file mode 100644 index 0000000..724de79 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re50,ppo,60,24.0,30,0.9580537492047166,-1,0.9690873324871063,0.9817988037131726,0.9288964052995046,0.9453242217501004,0.9536842087904612,0.9695315231879552 +karman_re50,ppo,90,36.0,30,0.9571080100418636,6,0.9475220441818237,0.9728142880718224,0.9296379506587982,0.9508011943350235,0.96819336215655,0.9736792208471646 +karman_re50,ppo,120,48.0,30,0.9583594774180609,-8,0.9552570283412933,0.9674883571763834,0.9562696536382039,0.9475159582526733,0.9586224536101023,0.9650034134897093 +karman_re50,ppo,150,60.0,30,0.9582531690521541,0,0.9667727947235107,0.9799069088573257,0.9458721101284027,0.9391561585400875,0.9527955909570058,0.965015451106592 +karman_re50,ppo,180,72.0,30,0.951254112027689,6,0.9410631279150645,0.9611064007816216,0.9274695614973704,0.9495079047977925,0.9659324566523234,0.9624452205219617 +karman_re50,ppo,200,80.0,30,0.9560975831726358,4,0.9551547865072886,0.9753624126315117,0.9312210083007812,0.9438270055999358,0.9657359222571055,0.9652843637391925 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_long.csv new file mode 100644 index 0000000..c7dce05 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,ppo,0,0.0,velocity,upper_ux,1.0512721538543701 +karman_re50,ppo,0,0.0,velocity,upper_uy,0.1397138237953186 +karman_re50,ppo,0,0.0,velocity,center_ux,0.9508710503578186 +karman_re50,ppo,0,0.0,velocity,center_uy,0.1316177397966385 +karman_re50,ppo,0,0.0,velocity,lower_ux,0.9657716155052185 +karman_re50,ppo,0,0.0,velocity,lower_uy,0.101104736328125 +karman_re50,ppo,1,0.4,velocity,upper_ux,1.0367038249969482 +karman_re50,ppo,1,0.4,velocity,upper_uy,0.18362033367156982 +karman_re50,ppo,1,0.4,velocity,center_ux,0.9633804559707642 +karman_re50,ppo,1,0.4,velocity,center_uy,0.17917633056640625 +karman_re50,ppo,1,0.4,velocity,lower_ux,0.9803779125213623 +karman_re50,ppo,1,0.4,velocity,lower_uy,0.14428430795669556 +karman_re50,ppo,2,0.8,velocity,upper_ux,1.028641939163208 +karman_re50,ppo,2,0.8,velocity,upper_uy,0.20482942461967468 +karman_re50,ppo,2,0.8,velocity,center_ux,0.9724262356758118 +karman_re50,ppo,2,0.8,velocity,center_uy,0.2161182463169098 +karman_re50,ppo,2,0.8,velocity,lower_ux,0.9989591836929321 +karman_re50,ppo,2,0.8,velocity,lower_uy,0.1879262924194336 +karman_re50,ppo,3,1.2,velocity,upper_ux,1.0221099853515625 +karman_re50,ppo,3,1.2,velocity,upper_uy,0.2127651423215866 +karman_re50,ppo,3,1.2,velocity,center_ux,0.975220263004303 +karman_re50,ppo,3,1.2,velocity,center_uy,0.24500882625579834 +karman_re50,ppo,3,1.2,velocity,lower_ux,1.018213152885437 +karman_re50,ppo,3,1.2,velocity,lower_uy,0.23281587660312653 +karman_re50,ppo,4,1.6,velocity,upper_ux,1.013725757598877 +karman_re50,ppo,4,1.6,velocity,upper_uy,0.21196487545967102 +karman_re50,ppo,4,1.6,velocity,center_ux,0.9694984555244446 +karman_re50,ppo,4,1.6,velocity,center_uy,0.26550808548927307 +karman_re50,ppo,4,1.6,velocity,lower_ux,1.0368083715438843 +karman_re50,ppo,4,1.6,velocity,lower_uy,0.27521494030952454 +karman_re50,ppo,5,2.0,velocity,upper_ux,1.0028676986694336 +karman_re50,ppo,5,2.0,velocity,upper_uy,0.20113646984100342 +karman_re50,ppo,5,2.0,velocity,center_ux,0.9553852677345276 +karman_re50,ppo,5,2.0,velocity,center_uy,0.27034705877304077 +karman_re50,ppo,5,2.0,velocity,lower_ux,1.0541077852249146 +karman_re50,ppo,5,2.0,velocity,lower_uy,0.30279168486595154 +karman_re50,ppo,6,2.4,velocity,upper_ux,0.9906448125839233 +karman_re50,ppo,6,2.4,velocity,upper_uy,0.1765332967042923 +karman_re50,ppo,6,2.4,velocity,center_ux,0.9367379546165466 +karman_re50,ppo,6,2.4,velocity,center_uy,0.24892127513885498 +karman_re50,ppo,6,2.4,velocity,lower_ux,1.069878101348877 +karman_re50,ppo,6,2.4,velocity,lower_uy,0.2971411347389221 +karman_re50,ppo,7,2.8,velocity,upper_ux,0.9771513938903809 +karman_re50,ppo,7,2.8,velocity,upper_uy,0.13516056537628174 +karman_re50,ppo,7,2.8,velocity,center_ux,0.9191303849220276 +karman_re50,ppo,7,2.8,velocity,center_uy,0.19495098292827606 +karman_re50,ppo,7,2.8,velocity,lower_ux,1.0826289653778076 +karman_re50,ppo,7,2.8,velocity,lower_uy,0.2476988285779953 +karman_re50,ppo,8,3.2,velocity,upper_ux,0.9635012149810791 +karman_re50,ppo,8,3.2,velocity,upper_uy,0.0785071924328804 +karman_re50,ppo,8,3.2,velocity,center_ux,0.9094288349151611 +karman_re50,ppo,8,3.2,velocity,center_uy,0.11439239233732224 +karman_re50,ppo,8,3.2,velocity,lower_ux,1.0897823572158813 +karman_re50,ppo,8,3.2,velocity,lower_uy,0.16258132457733154 +karman_re50,ppo,9,3.6,velocity,upper_ux,0.9532129168510437 +karman_re50,ppo,9,3.6,velocity,upper_uy,0.015633760020136833 +karman_re50,ppo,9,3.6,velocity,center_ux,0.9120951890945435 +karman_re50,ppo,9,3.6,velocity,center_uy,0.026135291904211044 +karman_re50,ppo,9,3.6,velocity,lower_ux,1.0874170064926147 +karman_re50,ppo,9,3.6,velocity,lower_uy,0.06103803589940071 +karman_re50,ppo,10,4.0,velocity,upper_ux,0.9503843188285828 +karman_re50,ppo,10,4.0,velocity,upper_uy,-0.04347378760576248 +karman_re50,ppo,10,4.0,velocity,center_ux,0.9248284101486206 +karman_re50,ppo,10,4.0,velocity,center_uy,-0.053309615701436996 +karman_re50,ppo,10,4.0,velocity,lower_ux,1.0740643739700317 +karman_re50,ppo,10,4.0,velocity,lower_uy,-0.03892871364951134 +karman_re50,ppo,11,4.4,velocity,upper_ux,0.9572097063064575 +karman_re50,ppo,11,4.4,velocity,upper_uy,-0.09315957129001617 +karman_re50,ppo,11,4.4,velocity,center_ux,0.9406425356864929 +karman_re50,ppo,11,4.4,velocity,center_uy,-0.116830013692379 +karman_re50,ppo,11,4.4,velocity,lower_ux,1.056229829788208 +karman_re50,ppo,11,4.4,velocity,lower_uy,-0.11730358004570007 +karman_re50,ppo,12,4.8,velocity,upper_ux,0.97132408618927 +karman_re50,ppo,12,4.8,velocity,upper_uy,-0.13679486513137817 +karman_re50,ppo,12,4.8,velocity,center_ux,0.9539679884910583 +karman_re50,ppo,12,4.8,velocity,center_uy,-0.16574998199939728 +karman_re50,ppo,12,4.8,velocity,lower_ux,1.0422008037567139 +karman_re50,ppo,12,4.8,velocity,lower_uy,-0.16499167680740356 +karman_re50,ppo,13,5.2,velocity,upper_ux,0.9887338280677795 +karman_re50,ppo,13,5.2,velocity,upper_uy,-0.1799623668193817 +karman_re50,ppo,13,5.2,velocity,center_ux,0.9626220464706421 +karman_re50,ppo,13,5.2,velocity,center_uy,-0.20288856327533722 +karman_re50,ppo,13,5.2,velocity,lower_ux,1.0336254835128784 +karman_re50,ppo,13,5.2,velocity,lower_uy,-0.1876218020915985 +karman_re50,ppo,14,5.6,velocity,upper_ux,1.0069581270217896 +karman_re50,ppo,14,5.6,velocity,upper_uy,-0.22499021887779236 +karman_re50,ppo,14,5.6,velocity,center_ux,0.9648808836936951 +karman_re50,ppo,14,5.6,velocity,center_uy,-0.23162467777729034 +karman_re50,ppo,14,5.6,velocity,lower_ux,1.0277655124664307 +karman_re50,ppo,14,5.6,velocity,lower_uy,-0.1952793300151825 +karman_re50,ppo,15,6.0,velocity,upper_ux,1.0245035886764526 +karman_re50,ppo,15,6.0,velocity,upper_uy,-0.2686939239501953 +karman_re50,ppo,15,6.0,velocity,center_ux,0.9582645893096924 +karman_re50,ppo,15,6.0,velocity,center_uy,-0.25221723318099976 +karman_re50,ppo,15,6.0,velocity,lower_ux,1.0214018821716309 +karman_re50,ppo,15,6.0,velocity,lower_uy,-0.19306838512420654 +karman_re50,ppo,16,6.4,velocity,upper_ux,1.0407328605651855 +karman_re50,ppo,16,6.4,velocity,upper_uy,-0.300372451543808 +karman_re50,ppo,16,6.4,velocity,center_ux,0.9420997500419617 +karman_re50,ppo,16,6.4,velocity,center_uy,-0.25881993770599365 +karman_re50,ppo,16,6.4,velocity,lower_ux,1.013564109802246 +karman_re50,ppo,16,6.4,velocity,lower_uy,-0.18033292889595032 +karman_re50,ppo,17,6.8,velocity,upper_ux,1.0556094646453857 +karman_re50,ppo,17,6.8,velocity,upper_uy,-0.3017958104610443 +karman_re50,ppo,17,6.8,velocity,center_ux,0.9189395904541016 +karman_re50,ppo,17,6.8,velocity,center_uy,-0.2409611940383911 +karman_re50,ppo,17,6.8,velocity,lower_ux,1.004753589630127 +karman_re50,ppo,17,6.8,velocity,lower_uy,-0.15348395705223083 +karman_re50,ppo,18,7.2,velocity,upper_ux,1.0682467222213745 +karman_re50,ppo,18,7.2,velocity,upper_uy,-0.2597751021385193 +karman_re50,ppo,18,7.2,velocity,center_ux,0.8934431672096252 +karman_re50,ppo,18,7.2,velocity,center_uy,-0.19063454866409302 +karman_re50,ppo,18,7.2,velocity,lower_ux,0.9950999617576599 +karman_re50,ppo,18,7.2,velocity,lower_uy,-0.11084914207458496 +karman_re50,ppo,19,7.6,velocity,upper_ux,1.0775854587554932 +karman_re50,ppo,19,7.6,velocity,upper_uy,-0.17971999943256378 +karman_re50,ppo,19,7.6,velocity,center_ux,0.8710460066795349 +karman_re50,ppo,19,7.6,velocity,center_uy,-0.10907122492790222 +karman_re50,ppo,19,7.6,velocity,lower_ux,0.9857874512672424 +karman_re50,ppo,19,7.6,velocity,lower_uy,-0.05636553838849068 +karman_re50,ppo,20,8.0,velocity,upper_ux,1.0816072225570679 +karman_re50,ppo,20,8.0,velocity,upper_uy,-0.07965054363012314 +karman_re50,ppo,20,8.0,velocity,center_ux,0.8574624061584473 +karman_re50,ppo,20,8.0,velocity,center_uy,-0.007624209392815828 +karman_re50,ppo,20,8.0,velocity,lower_ux,0.9802634716033936 +karman_re50,ppo,20,8.0,velocity,lower_uy,0.0009336109505966306 +karman_re50,ppo,21,8.4,velocity,upper_ux,1.0759748220443726 +karman_re50,ppo,21,8.4,velocity,upper_uy,0.022281374782323837 +karman_re50,ppo,21,8.4,velocity,center_ux,0.859549880027771 +karman_re50,ppo,21,8.4,velocity,center_uy,0.09246481209993362 +karman_re50,ppo,21,8.4,velocity,lower_ux,0.9817479848861694 +karman_re50,ppo,21,8.4,velocity,lower_uy,0.051945656538009644 +karman_re50,ppo,22,8.8,velocity,upper_ux,1.055302619934082 +karman_re50,ppo,22,8.8,velocity,upper_uy,0.11939331144094467 +karman_re50,ppo,22,8.8,velocity,center_ux,0.8823735117912292 +karman_re50,ppo,22,8.8,velocity,center_uy,0.16939450800418854 +karman_re50,ppo,22,8.8,velocity,lower_ux,0.9908931851387024 +karman_re50,ppo,22,8.8,velocity,lower_uy,0.09545258432626724 +karman_re50,ppo,23,9.2,velocity,upper_ux,1.0201290845870972 +karman_re50,ppo,23,9.2,velocity,upper_uy,0.20479106903076172 +karman_re50,ppo,23,9.2,velocity,center_ux,0.920240581035614 +karman_re50,ppo,23,9.2,velocity,center_uy,0.2149689644575119 +karman_re50,ppo,23,9.2,velocity,lower_ux,1.005571722984314 +karman_re50,ppo,23,9.2,velocity,lower_uy,0.13592390716075897 +karman_re50,ppo,24,9.6,velocity,upper_ux,0.9829432964324951 +karman_re50,ppo,24,9.6,velocity,upper_uy,0.25947800278663635 +karman_re50,ppo,24,9.6,velocity,center_ux,0.9573675394058228 +karman_re50,ppo,24,9.6,velocity,center_uy,0.2384946644306183 +karman_re50,ppo,24,9.6,velocity,lower_ux,1.0225063562393188 +karman_re50,ppo,24,9.6,velocity,lower_uy,0.1771424263715744 +karman_re50,ppo,25,10.0,velocity,upper_ux,0.9569416642189026 +karman_re50,ppo,25,10.0,velocity,upper_uy,0.2707473039627075 +karman_re50,ppo,25,10.0,velocity,center_ux,0.9799973368644714 +karman_re50,ppo,25,10.0,velocity,center_uy,0.25135698914527893 +karman_re50,ppo,25,10.0,velocity,lower_ux,1.038265347480774 +karman_re50,ppo,25,10.0,velocity,lower_uy,0.2189044952392578 +karman_re50,ppo,26,10.4,velocity,upper_ux,0.9468874931335449 +karman_re50,ppo,26,10.4,velocity,upper_uy,0.24846887588500977 +karman_re50,ppo,26,10.4,velocity,center_ux,0.9864270687103271 +karman_re50,ppo,26,10.4,velocity,center_uy,0.25587064027786255 +karman_re50,ppo,26,10.4,velocity,lower_ux,1.053356647491455 +karman_re50,ppo,26,10.4,velocity,lower_uy,0.2575455605983734 +karman_re50,ppo,27,10.8,velocity,upper_ux,0.9448661208152771 +karman_re50,ppo,27,10.8,velocity,upper_uy,0.20828966796398163 +karman_re50,ppo,27,10.8,velocity,center_ux,0.9774261713027954 +karman_re50,ppo,27,10.8,velocity,center_uy,0.24419334530830383 +karman_re50,ppo,27,10.8,velocity,lower_ux,1.0642600059509277 +karman_re50,ppo,27,10.8,velocity,lower_uy,0.28229495882987976 +karman_re50,ppo,28,11.2,velocity,upper_ux,0.9443560838699341 +karman_re50,ppo,28,11.2,velocity,upper_uy,0.15718084573745728 +karman_re50,ppo,28,11.2,velocity,center_ux,0.9589613080024719 +karman_re50,ppo,28,11.2,velocity,center_uy,0.20685017108917236 +karman_re50,ppo,28,11.2,velocity,lower_ux,1.069319725036621 +karman_re50,ppo,28,11.2,velocity,lower_uy,0.27659425139427185 +karman_re50,ppo,29,11.6,velocity,upper_ux,0.9422139525413513 +karman_re50,ppo,29,11.6,velocity,upper_uy,0.0940849557518959 +karman_re50,ppo,29,11.6,velocity,center_ux,0.9394468069076538 +karman_re50,ppo,29,11.6,velocity,center_uy,0.14055663347244263 +karman_re50,ppo,29,11.6,velocity,lower_ux,1.068135380744934 +karman_re50,ppo,29,11.6,velocity,lower_uy,0.22810478508472443 +karman_re50,ppo,30,12.0,velocity,upper_ux,0.9355658888816833 +karman_re50,ppo,30,12.0,velocity,upper_uy,0.021091172471642494 +karman_re50,ppo,30,12.0,velocity,center_ux,0.923247754573822 +karman_re50,ppo,30,12.0,velocity,center_uy,0.05247223749756813 +karman_re50,ppo,30,12.0,velocity,lower_ux,1.0555652379989624 +karman_re50,ppo,30,12.0,velocity,lower_uy,0.13768494129180908 +karman_re50,ppo,31,12.4,velocity,upper_ux,0.9352172613143921 +karman_re50,ppo,31,12.4,velocity,upper_uy,-0.04945336654782295 +karman_re50,ppo,31,12.4,velocity,center_ux,0.9210520386695862 +karman_re50,ppo,31,12.4,velocity,center_uy,-0.040126193314790726 +karman_re50,ppo,31,12.4,velocity,lower_ux,1.0378652811050415 +karman_re50,ppo,31,12.4,velocity,lower_uy,0.0211632139980793 +karman_re50,ppo,32,12.8,velocity,upper_ux,0.9412160515785217 +karman_re50,ppo,32,12.8,velocity,upper_uy,-0.10602450370788574 +karman_re50,ppo,32,12.8,velocity,center_ux,0.926699697971344 +karman_re50,ppo,32,12.8,velocity,center_uy,-0.12246781587600708 +karman_re50,ppo,32,12.8,velocity,lower_ux,1.0146386623382568 +karman_re50,ppo,32,12.8,velocity,lower_uy,-0.09858433902263641 +karman_re50,ppo,33,13.2,velocity,upper_ux,0.9569213390350342 +karman_re50,ppo,33,13.2,velocity,upper_uy,-0.149423286318779 +karman_re50,ppo,33,13.2,velocity,center_ux,0.9383240342140198 +karman_re50,ppo,33,13.2,velocity,center_uy,-0.18890215456485748 +karman_re50,ppo,33,13.2,velocity,lower_ux,0.9987556338310242 +karman_re50,ppo,33,13.2,velocity,lower_uy,-0.19625768065452576 +karman_re50,ppo,34,13.6,velocity,upper_ux,0.9780186414718628 +karman_re50,ppo,34,13.6,velocity,upper_uy,-0.18836335837841034 +karman_re50,ppo,34,13.6,velocity,center_ux,0.9522607922554016 +karman_re50,ppo,34,13.6,velocity,center_uy,-0.23899215459823608 +karman_re50,ppo,34,13.6,velocity,lower_ux,0.9942042827606201 +karman_re50,ppo,34,13.6,velocity,lower_uy,-0.25835251808166504 +karman_re50,ppo,35,14.0,velocity,upper_ux,1.001290202140808 +karman_re50,ppo,35,14.0,velocity,upper_uy,-0.22925715148448944 +karman_re50,ppo,35,14.0,velocity,center_ux,0.965839684009552 +karman_re50,ppo,35,14.0,velocity,center_uy,-0.2766675651073456 +karman_re50,ppo,35,14.0,velocity,lower_ux,0.9954947829246521 +karman_re50,ppo,35,14.0,velocity,lower_uy,-0.2898731827735901 +karman_re50,ppo,36,14.4,velocity,upper_ux,1.025300145149231 +karman_re50,ppo,36,14.4,velocity,upper_uy,-0.2732809782028198 +karman_re50,ppo,36,14.4,velocity,center_ux,0.9747545123100281 +karman_re50,ppo,36,14.4,velocity,center_uy,-0.30650413036346436 +karman_re50,ppo,36,14.4,velocity,lower_ux,0.9936342835426331 +karman_re50,ppo,36,14.4,velocity,lower_uy,-0.29836055636405945 +karman_re50,ppo,37,14.8,velocity,upper_ux,1.0488812923431396 +karman_re50,ppo,37,14.8,velocity,upper_uy,-0.31593266129493713 +karman_re50,ppo,37,14.8,velocity,center_ux,0.9747869372367859 +karman_re50,ppo,37,14.8,velocity,center_uy,-0.3261083662509918 +karman_re50,ppo,37,14.8,velocity,lower_ux,0.9831401109695435 +karman_re50,ppo,37,14.8,velocity,lower_uy,-0.28321757912635803 +karman_re50,ppo,38,15.2,velocity,upper_ux,1.071608543395996 +karman_re50,ppo,38,15.2,velocity,upper_uy,-0.3442818522453308 +karman_re50,ppo,38,15.2,velocity,center_ux,0.9650027751922607 +karman_re50,ppo,38,15.2,velocity,center_uy,-0.32508769631385803 +karman_re50,ppo,38,15.2,velocity,lower_ux,0.9647377729415894 +karman_re50,ppo,38,15.2,velocity,lower_uy,-0.2430678904056549 +karman_re50,ppo,39,15.6,velocity,upper_ux,1.0878210067749023 +karman_re50,ppo,39,15.6,velocity,upper_uy,-0.33628135919570923 +karman_re50,ppo,39,15.6,velocity,center_ux,0.9438828825950623 +karman_re50,ppo,39,15.6,velocity,center_uy,-0.28851374983787537 +karman_re50,ppo,39,15.6,velocity,lower_ux,0.9412224292755127 +karman_re50,ppo,39,15.6,velocity,lower_uy,-0.18186067044734955 +karman_re50,ppo,40,16.0,velocity,upper_ux,1.0997498035430908 +karman_re50,ppo,40,16.0,velocity,upper_uy,-0.2802070081233978 +karman_re50,ppo,40,16.0,velocity,center_ux,0.9199584722518921 +karman_re50,ppo,40,16.0,velocity,center_uy,-0.20936255156993866 +karman_re50,ppo,40,16.0,velocity,lower_ux,0.9257975816726685 +karman_re50,ppo,40,16.0,velocity,lower_uy,-0.1105753630399704 +karman_re50,ppo,41,16.4,velocity,upper_ux,1.1039409637451172 +karman_re50,ppo,41,16.4,velocity,upper_uy,-0.18435268104076385 +karman_re50,ppo,41,16.4,velocity,center_ux,0.8978020548820496 +karman_re50,ppo,41,16.4,velocity,center_uy,-0.09188484400510788 +karman_re50,ppo,41,16.4,velocity,lower_ux,0.9226426482200623 +karman_re50,ppo,41,16.4,velocity,lower_uy,-0.03850891813635826 +karman_re50,ppo,42,16.8,velocity,upper_ux,1.0963208675384521 +karman_re50,ppo,42,16.8,velocity,upper_uy,-0.06667773425579071 +karman_re50,ppo,42,16.8,velocity,center_ux,0.8862495422363281 +karman_re50,ppo,42,16.8,velocity,center_uy,0.044874902814626694 +karman_re50,ppo,42,16.8,velocity,lower_ux,0.9308422207832336 +karman_re50,ppo,42,16.8,velocity,lower_uy,0.028791237622499466 +karman_re50,ppo,43,17.2,velocity,upper_ux,1.0674339532852173 +karman_re50,ppo,43,17.2,velocity,upper_uy,0.06398839503526688 +karman_re50,ppo,43,17.2,velocity,center_ux,0.8975748419761658 +karman_re50,ppo,43,17.2,velocity,center_uy,0.16558699309825897 +karman_re50,ppo,43,17.2,velocity,lower_ux,0.9472997188568115 +karman_re50,ppo,43,17.2,velocity,lower_uy,0.08476867526769638 +karman_re50,ppo,44,17.6,velocity,upper_ux,1.0138574838638306 +karman_re50,ppo,44,17.6,velocity,upper_uy,0.19953079521656036 +karman_re50,ppo,44,17.6,velocity,center_ux,0.934511125087738 +karman_re50,ppo,44,17.6,velocity,center_uy,0.24122478067874908 +karman_re50,ppo,44,17.6,velocity,lower_ux,0.9699341058731079 +karman_re50,ppo,44,17.6,velocity,lower_uy,0.12602156400680542 +karman_re50,ppo,45,18.0,velocity,upper_ux,0.956745982170105 +karman_re50,ppo,45,18.0,velocity,upper_uy,0.3022870123386383 +karman_re50,ppo,45,18.0,velocity,center_ux,0.9825872778892517 +karman_re50,ppo,45,18.0,velocity,center_uy,0.2737264335155487 +karman_re50,ppo,45,18.0,velocity,lower_ux,0.9959809184074402 +karman_re50,ppo,45,18.0,velocity,lower_uy,0.15740303695201874 +karman_re50,ppo,46,18.4,velocity,upper_ux,0.9242752194404602 +karman_re50,ppo,46,18.4,velocity,upper_uy,0.33579882979393005 +karman_re50,ppo,46,18.4,velocity,center_ux,1.0263854265213013 +karman_re50,ppo,46,18.4,velocity,center_uy,0.2812153100967407 +karman_re50,ppo,46,18.4,velocity,lower_ux,1.0233312845230103 +karman_re50,ppo,46,18.4,velocity,lower_uy,0.18665625154972076 +karman_re50,ppo,47,18.8,velocity,upper_ux,0.9168188571929932 +karman_re50,ppo,47,18.8,velocity,upper_uy,0.3056910037994385 +karman_re50,ppo,47,18.8,velocity,center_ux,1.052247166633606 +karman_re50,ppo,47,18.8,velocity,center_uy,0.27516865730285645 +karman_re50,ppo,47,18.8,velocity,lower_ux,1.0457878112792969 +karman_re50,ppo,47,18.8,velocity,lower_uy,0.21596133708953857 +karman_re50,ppo,48,19.2,velocity,upper_ux,0.9249422550201416 +karman_re50,ppo,48,19.2,velocity,upper_uy,0.24573785066604614 +karman_re50,ppo,48,19.2,velocity,center_ux,1.0604346990585327 +karman_re50,ppo,48,19.2,velocity,center_uy,0.2598746418952942 +karman_re50,ppo,48,19.2,velocity,lower_ux,1.0656658411026 +karman_re50,ppo,48,19.2,velocity,lower_uy,0.24428516626358032 +karman_re50,ppo,49,19.6,velocity,upper_ux,0.936103105545044 +karman_re50,ppo,49,19.6,velocity,upper_uy,0.1835397183895111 +karman_re50,ppo,49,19.6,velocity,center_ux,1.0506160259246826 +karman_re50,ppo,49,19.6,velocity,center_uy,0.23259113729000092 +karman_re50,ppo,49,19.6,velocity,lower_ux,1.0793936252593994 +karman_re50,ppo,49,19.6,velocity,lower_uy,0.264370322227478 +karman_re50,ppo,50,20.0,velocity,upper_ux,0.9445536136627197 +karman_re50,ppo,50,20.0,velocity,upper_uy,0.12644757330417633 +karman_re50,ppo,50,20.0,velocity,center_ux,1.029608964920044 +karman_re50,ppo,50,20.0,velocity,center_uy,0.1887241154909134 +karman_re50,ppo,50,20.0,velocity,lower_ux,1.0850471258163452 +karman_re50,ppo,50,20.0,velocity,lower_uy,0.262452632188797 +karman_re50,ppo,51,20.4,velocity,upper_ux,0.9477989077568054 +karman_re50,ppo,51,20.4,velocity,upper_uy,0.06623741239309311 +karman_re50,ppo,51,20.4,velocity,center_ux,1.0068881511688232 +karman_re50,ppo,51,20.4,velocity,center_uy,0.1269465982913971 +karman_re50,ppo,51,20.4,velocity,lower_ux,1.0807749032974243 +karman_re50,ppo,51,20.4,velocity,lower_uy,0.2239045947790146 +karman_re50,ppo,52,20.8,velocity,upper_ux,0.9474211931228638 +karman_re50,ppo,52,20.8,velocity,upper_uy,-0.0012857923284173012 +karman_re50,ppo,52,20.8,velocity,center_ux,0.9901986122131348 +karman_re50,ppo,52,20.8,velocity,center_uy,0.05193711444735527 +karman_re50,ppo,52,20.8,velocity,lower_ux,1.0658628940582275 +karman_re50,ppo,52,20.8,velocity,lower_uy,0.14459386467933655 +karman_re50,ppo,53,21.2,velocity,upper_ux,0.9492133855819702 +karman_re50,ppo,53,21.2,velocity,upper_uy,-0.06692519783973694 +karman_re50,ppo,53,21.2,velocity,center_ux,0.9811860918998718 +karman_re50,ppo,53,21.2,velocity,center_uy,-0.02898801863193512 +karman_re50,ppo,53,21.2,velocity,lower_ux,1.0428600311279297 +karman_re50,ppo,53,21.2,velocity,lower_uy,0.035950616002082825 +karman_re50,ppo,54,21.6,velocity,upper_ux,0.958780825138092 +karman_re50,ppo,54,21.6,velocity,upper_uy,-0.11910524219274521 +karman_re50,ppo,54,21.6,velocity,center_ux,0.9779287576675415 +karman_re50,ppo,54,21.6,velocity,center_uy,-0.1083928644657135 +karman_re50,ppo,54,21.6,velocity,lower_ux,1.0211632251739502 +karman_re50,ppo,54,21.6,velocity,lower_uy,-0.07801784574985504 +karman_re50,ppo,55,22.0,velocity,upper_ux,0.9725889563560486 +karman_re50,ppo,55,22.0,velocity,upper_uy,-0.15712302923202515 +karman_re50,ppo,55,22.0,velocity,center_ux,0.9765554666519165 +karman_re50,ppo,55,22.0,velocity,center_uy,-0.17608559131622314 +karman_re50,ppo,55,22.0,velocity,lower_ux,1.007469654083252 +karman_re50,ppo,55,22.0,velocity,lower_uy,-0.1708720177412033 +karman_re50,ppo,56,22.4,velocity,upper_ux,0.9920981526374817 +karman_re50,ppo,56,22.4,velocity,upper_uy,-0.19060677289962769 +karman_re50,ppo,56,22.4,velocity,center_ux,0.9825108051300049 +karman_re50,ppo,56,22.4,velocity,center_uy,-0.22648033499717712 +karman_re50,ppo,56,22.4,velocity,lower_ux,1.0066313743591309 +karman_re50,ppo,56,22.4,velocity,lower_uy,-0.2331845909357071 +karman_re50,ppo,57,22.8,velocity,upper_ux,1.0137271881103516 +karman_re50,ppo,57,22.8,velocity,upper_uy,-0.22681139409542084 +karman_re50,ppo,57,22.8,velocity,center_ux,0.991371750831604 +karman_re50,ppo,57,22.8,velocity,center_uy,-0.26290780305862427 +karman_re50,ppo,57,22.8,velocity,lower_ux,1.0088205337524414 +karman_re50,ppo,57,22.8,velocity,lower_uy,-0.26782792806625366 +karman_re50,ppo,58,23.2,velocity,upper_ux,1.0361422300338745 +karman_re50,ppo,58,23.2,velocity,upper_uy,-0.26742538809776306 +karman_re50,ppo,58,23.2,velocity,center_ux,0.9969019293785095 +karman_re50,ppo,58,23.2,velocity,center_uy,-0.29153814911842346 +karman_re50,ppo,58,23.2,velocity,lower_ux,1.0067543983459473 +karman_re50,ppo,58,23.2,velocity,lower_uy,-0.2771587669849396 +karman_re50,ppo,59,23.6,velocity,upper_ux,1.058110237121582 +karman_re50,ppo,59,23.6,velocity,upper_uy,-0.30907484889030457 +karman_re50,ppo,59,23.6,velocity,center_ux,0.9940125942230225 +karman_re50,ppo,59,23.6,velocity,center_uy,-0.31187161803245544 +karman_re50,ppo,59,23.6,velocity,lower_ux,0.9966726899147034 +karman_re50,ppo,59,23.6,velocity,lower_uy,-0.26268914341926575 +karman_re50,ppo,60,24.0,velocity,upper_ux,1.0777987241744995 +karman_re50,ppo,60,24.0,velocity,upper_uy,-0.3410404920578003 +karman_re50,ppo,60,24.0,velocity,center_ux,0.9801203012466431 +karman_re50,ppo,60,24.0,velocity,center_uy,-0.3152226507663727 +karman_re50,ppo,60,24.0,velocity,lower_ux,0.9780526757240295 +karman_re50,ppo,60,24.0,velocity,lower_uy,-0.22808536887168884 +karman_re50,ppo,61,24.4,velocity,upper_ux,1.0934315919876099 +karman_re50,ppo,61,24.4,velocity,upper_uy,-0.34343594312667847 +karman_re50,ppo,61,24.4,velocity,center_ux,0.9568917155265808 +karman_re50,ppo,61,24.4,velocity,center_uy,-0.2885686159133911 +karman_re50,ppo,61,24.4,velocity,lower_ux,0.955738365650177 +karman_re50,ppo,61,24.4,velocity,lower_uy,-0.17832468450069427 +karman_re50,ppo,62,24.8,velocity,upper_ux,1.1031768321990967 +karman_re50,ppo,62,24.8,velocity,upper_uy,-0.2979471981525421 +karman_re50,ppo,62,24.8,velocity,center_ux,0.9298486113548279 +karman_re50,ppo,62,24.8,velocity,center_uy,-0.22196760773658752 +karman_re50,ppo,62,24.8,velocity,lower_ux,0.9370626211166382 +karman_re50,ppo,62,24.8,velocity,lower_uy,-0.11786948144435883 +karman_re50,ppo,63,25.2,velocity,upper_ux,1.1053266525268555 +karman_re50,ppo,63,25.2,velocity,upper_uy,-0.2049163430929184 +karman_re50,ppo,63,25.2,velocity,center_ux,0.9058685898780823 +karman_re50,ppo,63,25.2,velocity,center_uy,-0.11603087186813354 +karman_re50,ppo,63,25.2,velocity,lower_ux,0.9267251491546631 +karman_re50,ppo,63,25.2,velocity,lower_uy,-0.05013985186815262 +karman_re50,ppo,64,25.6,velocity,upper_ux,1.0971659421920776 +karman_re50,ppo,64,25.6,velocity,upper_uy,-0.0787358283996582 +karman_re50,ppo,64,25.6,velocity,center_ux,0.894034206867218 +karman_re50,ppo,64,25.6,velocity,center_uy,0.014178426004946232 +karman_re50,ppo,64,25.6,velocity,lower_ux,0.9264852404594421 +karman_re50,ppo,64,25.6,velocity,lower_uy,0.01913764886558056 +karman_re50,ppo,65,26.0,velocity,upper_ux,1.071463942527771 +karman_re50,ppo,65,26.0,velocity,upper_uy,0.07132811844348907 +karman_re50,ppo,65,26.0,velocity,center_ux,0.9044718742370605 +karman_re50,ppo,65,26.0,velocity,center_uy,0.13764111697673798 +karman_re50,ppo,65,26.0,velocity,lower_ux,0.9364784955978394 +karman_re50,ppo,65,26.0,velocity,lower_uy,0.08041670173406601 +karman_re50,ppo,66,26.4,velocity,upper_ux,1.0282012224197388 +karman_re50,ppo,66,26.4,velocity,upper_uy,0.2283763438463211 +karman_re50,ppo,66,26.4,velocity,center_ux,0.9373432993888855 +karman_re50,ppo,66,26.4,velocity,center_uy,0.22378015518188477 +karman_re50,ppo,66,26.4,velocity,lower_ux,0.9555413722991943 +karman_re50,ppo,66,26.4,velocity,lower_uy,0.1268349140882492 +karman_re50,ppo,67,26.8,velocity,upper_ux,0.9923657178878784 +karman_re50,ppo,67,26.8,velocity,upper_uy,0.3379189670085907 +karman_re50,ppo,67,26.8,velocity,center_ux,0.9790287017822266 +karman_re50,ppo,67,26.8,velocity,center_uy,0.26867130398750305 +karman_re50,ppo,67,26.8,velocity,lower_ux,0.9805706739425659 +karman_re50,ppo,67,26.8,velocity,lower_uy,0.16177919507026672 +karman_re50,ppo,68,27.2,velocity,upper_ux,0.9839909076690674 +karman_re50,ppo,68,27.2,velocity,upper_uy,0.3679145574569702 +karman_re50,ppo,68,27.2,velocity,center_ux,1.0171599388122559 +karman_re50,ppo,68,27.2,velocity,center_uy,0.2882716655731201 +karman_re50,ppo,68,27.2,velocity,lower_ux,1.009037971496582 +karman_re50,ppo,68,27.2,velocity,lower_uy,0.19371208548545837 +karman_re50,ppo,69,27.6,velocity,upper_ux,0.9901865124702454 +karman_re50,ppo,69,27.6,velocity,upper_uy,0.3422744870185852 +karman_re50,ppo,69,27.6,velocity,center_ux,1.0419578552246094 +karman_re50,ppo,69,27.6,velocity,center_uy,0.29698827862739563 +karman_re50,ppo,69,27.6,velocity,lower_ux,1.0358469486236572 +karman_re50,ppo,69,27.6,velocity,lower_uy,0.22668349742889404 +karman_re50,ppo,70,28.0,velocity,upper_ux,0.9931029677391052 +karman_re50,ppo,70,28.0,velocity,upper_uy,0.29223331809043884 +karman_re50,ppo,70,28.0,velocity,center_ux,1.0509353876113892 +karman_re50,ppo,70,28.0,velocity,center_uy,0.2992187440395355 +karman_re50,ppo,70,28.0,velocity,lower_ux,1.0594565868377686 +karman_re50,ppo,70,28.0,velocity,lower_uy,0.25978192687034607 +karman_re50,ppo,71,28.4,velocity,upper_ux,0.9867221117019653 +karman_re50,ppo,71,28.4,velocity,upper_uy,0.2327955812215805 +karman_re50,ppo,71,28.4,velocity,center_ux,1.0468528270721436 +karman_re50,ppo,71,28.4,velocity,center_uy,0.29022321105003357 +karman_re50,ppo,71,28.4,velocity,lower_ux,1.0806145668029785 +karman_re50,ppo,71,28.4,velocity,lower_uy,0.2875775396823883 +karman_re50,ppo,72,28.8,velocity,upper_ux,0.9719352126121521 +karman_re50,ppo,72,28.8,velocity,upper_uy,0.16860562562942505 +karman_re50,ppo,72,28.8,velocity,center_ux,1.0318690538406372 +karman_re50,ppo,72,28.8,velocity,center_uy,0.2593541443347931 +karman_re50,ppo,72,28.8,velocity,lower_ux,1.0959545373916626 +karman_re50,ppo,72,28.8,velocity,lower_uy,0.29559552669525146 +karman_re50,ppo,73,29.2,velocity,upper_ux,0.9552746415138245 +karman_re50,ppo,73,29.2,velocity,upper_uy,0.09982308745384216 +karman_re50,ppo,73,29.2,velocity,center_ux,1.0121703147888184 +karman_re50,ppo,73,29.2,velocity,center_uy,0.19919931888580322 +karman_re50,ppo,73,29.2,velocity,lower_ux,1.1028863191604614 +karman_re50,ppo,73,29.2,velocity,lower_uy,0.2653214931488037 +karman_re50,ppo,74,29.6,velocity,upper_ux,0.9426777362823486 +karman_re50,ppo,74,29.6,velocity,upper_uy,0.027790410444140434 +karman_re50,ppo,74,29.6,velocity,center_ux,0.9947962760925293 +karman_re50,ppo,74,29.6,velocity,center_uy,0.11444451659917831 +karman_re50,ppo,74,29.6,velocity,lower_ux,1.0989283323287964 +karman_re50,ppo,74,29.6,velocity,lower_uy,0.1895117312669754 +karman_re50,ppo,75,30.0,velocity,upper_ux,0.9375212788581848 +karman_re50,ppo,75,30.0,velocity,upper_uy,-0.044715240597724915 +karman_re50,ppo,75,30.0,velocity,center_ux,0.982394814491272 +karman_re50,ppo,75,30.0,velocity,center_uy,0.014405892230570316 +karman_re50,ppo,75,30.0,velocity,lower_ux,1.0844634771347046 +karman_re50,ppo,75,30.0,velocity,lower_uy,0.0769326314330101 +karman_re50,ppo,76,30.4,velocity,upper_ux,0.9419994950294495 +karman_re50,ppo,76,30.4,velocity,upper_uy,-0.10629630833864212 +karman_re50,ppo,76,30.4,velocity,center_ux,0.9751131534576416 +karman_re50,ppo,76,30.4,velocity,center_uy,-0.08528021723031998 +karman_re50,ppo,76,30.4,velocity,lower_ux,1.0657669305801392 +karman_re50,ppo,76,30.4,velocity,lower_uy,-0.045967403799295425 +karman_re50,ppo,77,30.8,velocity,upper_ux,0.955456554889679 +karman_re50,ppo,77,30.8,velocity,upper_uy,-0.1517227292060852 +karman_re50,ppo,77,30.8,velocity,center_ux,0.9740903973579407 +karman_re50,ppo,77,30.8,velocity,center_uy,-0.1690969467163086 +karman_re50,ppo,77,30.8,velocity,lower_ux,1.0525168180465698 +karman_re50,ppo,77,30.8,velocity,lower_uy,-0.15061122179031372 +karman_re50,ppo,78,31.2,velocity,upper_ux,0.9751813411712646 +karman_re50,ppo,78,31.2,velocity,upper_uy,-0.1863533854484558 +karman_re50,ppo,78,31.2,velocity,center_ux,0.9807712435722351 +karman_re50,ppo,78,31.2,velocity,center_uy,-0.22698578238487244 +karman_re50,ppo,78,31.2,velocity,lower_ux,1.0467462539672852 +karman_re50,ppo,78,31.2,velocity,lower_uy,-0.22299884259700775 +karman_re50,ppo,79,31.6,velocity,upper_ux,0.9979966878890991 +karman_re50,ppo,79,31.6,velocity,upper_uy,-0.22000747919082642 +karman_re50,ppo,79,31.6,velocity,center_ux,0.9916869401931763 +karman_re50,ppo,79,31.6,velocity,center_uy,-0.263888955116272 +karman_re50,ppo,79,31.6,velocity,lower_ux,1.0430043935775757 +karman_re50,ppo,79,31.6,velocity,lower_uy,-0.26380735635757446 +karman_re50,ppo,80,32.0,velocity,upper_ux,1.0217152833938599 +karman_re50,ppo,80,32.0,velocity,upper_uy,-0.25757285952568054 +karman_re50,ppo,80,32.0,velocity,center_ux,1.0002247095108032 +karman_re50,ppo,80,32.0,velocity,center_uy,-0.29050830006599426 +karman_re50,ppo,80,32.0,velocity,lower_ux,1.0365643501281738 +karman_re50,ppo,80,32.0,velocity,lower_uy,-0.2760455310344696 +karman_re50,ppo,81,32.4,velocity,upper_ux,1.0451489686965942 +karman_re50,ppo,81,32.4,velocity,upper_uy,-0.2985093593597412 +karman_re50,ppo,81,32.4,velocity,center_ux,1.0009386539459229 +karman_re50,ppo,81,32.4,velocity,center_uy,-0.311152845621109 +karman_re50,ppo,81,32.4,velocity,lower_ux,1.0237764120101929 +karman_re50,ppo,81,32.4,velocity,lower_uy,-0.26422157883644104 +karman_re50,ppo,82,32.8,velocity,upper_ux,1.0668197870254517 +karman_re50,ppo,82,32.8,velocity,upper_uy,-0.33572638034820557 +karman_re50,ppo,82,32.8,velocity,center_ux,0.9904701709747314 +karman_re50,ppo,82,32.8,velocity,center_uy,-0.31988316774368286 +karman_re50,ppo,82,32.8,velocity,lower_ux,1.0030159950256348 +karman_re50,ppo,82,32.8,velocity,lower_uy,-0.23310352861881256 +karman_re50,ppo,83,33.2,velocity,upper_ux,1.0849323272705078 +karman_re50,ppo,83,33.2,velocity,upper_uy,-0.3525885343551636 +karman_re50,ppo,83,33.2,velocity,center_ux,0.9688689708709717 +karman_re50,ppo,83,33.2,velocity,center_uy,-0.30397549271583557 +karman_re50,ppo,83,33.2,velocity,lower_ux,0.9779417514801025 +karman_re50,ppo,83,33.2,velocity,lower_uy,-0.18708175420761108 +karman_re50,ppo,84,33.6,velocity,upper_ux,1.097536563873291 +karman_re50,ppo,84,33.6,velocity,upper_uy,-0.3278588354587555 +karman_re50,ppo,84,33.6,velocity,center_ux,0.9399756789207458 +karman_re50,ppo,84,33.6,velocity,center_uy,-0.2503020763397217 +karman_re50,ppo,84,33.6,velocity,lower_ux,0.9554688334465027 +karman_re50,ppo,84,33.6,velocity,lower_uy,-0.12918415665626526 +karman_re50,ppo,85,34.0,velocity,upper_ux,1.1026637554168701 +karman_re50,ppo,85,34.0,velocity,upper_uy,-0.2539171278476715 +karman_re50,ppo,85,34.0,velocity,center_ux,0.9102182984352112 +karman_re50,ppo,85,34.0,velocity,center_uy,-0.1541428118944168 +karman_re50,ppo,85,34.0,velocity,lower_ux,0.940977931022644 +karman_re50,ppo,85,34.0,velocity,lower_uy,-0.06243392080068588 +karman_re50,ppo,86,34.4,velocity,upper_ux,1.0976855754852295 +karman_re50,ppo,86,34.4,velocity,upper_uy,-0.141847163438797 +karman_re50,ppo,86,34.4,velocity,center_ux,0.8883291482925415 +karman_re50,ppo,86,34.4,velocity,center_uy,-0.024356745183467865 +karman_re50,ppo,86,34.4,velocity,lower_ux,0.9367626309394836 +karman_re50,ppo,86,34.4,velocity,lower_uy,0.007725640665739775 +karman_re50,ppo,87,34.8,velocity,upper_ux,1.0744757652282715 +karman_re50,ppo,87,34.8,velocity,upper_uy,-0.0010494174202904105 +karman_re50,ppo,87,34.8,velocity,center_ux,0.8871710896492004 +karman_re50,ppo,87,34.8,velocity,center_uy,0.1115994080901146 +karman_re50,ppo,87,34.8,velocity,lower_ux,0.9436934590339661 +karman_re50,ppo,87,34.8,velocity,lower_uy,0.07136499136686325 +karman_re50,ppo,88,35.2,velocity,upper_ux,1.0247104167938232 +karman_re50,ppo,88,35.2,velocity,upper_uy,0.1659172773361206 +karman_re50,ppo,88,35.2,velocity,center_ux,0.9142561554908752 +karman_re50,ppo,88,35.2,velocity,center_uy,0.21637015044689178 +karman_re50,ppo,88,35.2,velocity,lower_ux,0.9609546065330505 +karman_re50,ppo,88,35.2,velocity,lower_uy,0.1203610971570015 +karman_re50,ppo,89,35.6,velocity,upper_ux,0.9678906202316284 +karman_re50,ppo,89,35.6,velocity,upper_uy,0.317079097032547 +karman_re50,ppo,89,35.6,velocity,center_ux,0.9590784311294556 +karman_re50,ppo,89,35.6,velocity,center_uy,0.27593523263931274 +karman_re50,ppo,89,35.6,velocity,lower_ux,0.9854438900947571 +karman_re50,ppo,89,35.6,velocity,lower_uy,0.15705396234989166 +karman_re50,ppo,90,36.0,velocity,upper_ux,0.9379477500915527 +karman_re50,ppo,90,36.0,velocity,upper_uy,0.3899443745613098 +karman_re50,ppo,90,36.0,velocity,center_ux,1.004523515701294 +karman_re50,ppo,90,36.0,velocity,center_uy,0.3035445809364319 +karman_re50,ppo,90,36.0,velocity,lower_ux,1.0131638050079346 +karman_re50,ppo,90,36.0,velocity,lower_uy,0.1892957091331482 +karman_re50,ppo,91,36.4,velocity,upper_ux,0.9366102814674377 +karman_re50,ppo,91,36.4,velocity,upper_uy,0.3826453685760498 +karman_re50,ppo,91,36.4,velocity,center_ux,1.039923906326294 +karman_re50,ppo,91,36.4,velocity,center_uy,0.3152714669704437 +karman_re50,ppo,91,36.4,velocity,lower_ux,1.0411239862442017 +karman_re50,ppo,91,36.4,velocity,lower_uy,0.22172988951206207 +karman_re50,ppo,92,36.8,velocity,upper_ux,0.9427659511566162 +karman_re50,ppo,92,36.8,velocity,upper_uy,0.329511821269989 +karman_re50,ppo,92,36.8,velocity,center_ux,1.060714602470398 +karman_re50,ppo,92,36.8,velocity,center_uy,0.3161907196044922 +karman_re50,ppo,92,36.8,velocity,lower_ux,1.0674850940704346 +karman_re50,ppo,92,36.8,velocity,lower_uy,0.25389131903648376 +karman_re50,ppo,93,37.2,velocity,upper_ux,0.9425111413002014 +karman_re50,ppo,93,37.2,velocity,upper_uy,0.256124883890152 +karman_re50,ppo,93,37.2,velocity,center_ux,1.0650945901870728 +karman_re50,ppo,93,37.2,velocity,center_uy,0.3014935851097107 +karman_re50,ppo,93,37.2,velocity,lower_ux,1.0896522998809814 +karman_re50,ppo,93,37.2,velocity,lower_uy,0.2803577482700348 +karman_re50,ppo,94,37.6,velocity,upper_ux,0.9354381561279297 +karman_re50,ppo,94,37.6,velocity,upper_uy,0.1766970455646515 +karman_re50,ppo,94,37.6,velocity,center_ux,1.0549213886260986 +karman_re50,ppo,94,37.6,velocity,center_uy,0.2627828121185303 +karman_re50,ppo,94,37.6,velocity,lower_ux,1.1048157215118408 +karman_re50,ppo,94,37.6,velocity,lower_uy,0.2893078029155731 +karman_re50,ppo,95,38.0,velocity,upper_ux,0.9272746443748474 +karman_re50,ppo,95,38.0,velocity,upper_uy,0.09907374531030655 +karman_re50,ppo,95,38.0,velocity,center_ux,1.0359748601913452 +karman_re50,ppo,95,38.0,velocity,center_uy,0.1954508274793625 +karman_re50,ppo,95,38.0,velocity,lower_ux,1.1096646785736084 +karman_re50,ppo,95,38.0,velocity,lower_uy,0.2635272741317749 +karman_re50,ppo,96,38.4,velocity,upper_ux,0.9225795865058899 +karman_re50,ppo,96,38.4,velocity,upper_uy,0.024522405117750168 +karman_re50,ppo,96,38.4,velocity,center_ux,1.0160629749298096 +karman_re50,ppo,96,38.4,velocity,center_uy,0.105476014316082 +karman_re50,ppo,96,38.4,velocity,lower_ux,1.1015844345092773 +karman_re50,ppo,96,38.4,velocity,lower_uy,0.19308307766914368 +karman_re50,ppo,97,38.8,velocity,upper_ux,0.9237052798271179 +karman_re50,ppo,97,38.8,velocity,upper_uy,-0.04698262736201286 +karman_re50,ppo,97,38.8,velocity,center_ux,1.0009689331054688 +karman_re50,ppo,97,38.8,velocity,center_uy,0.006261039525270462 +karman_re50,ppo,97,38.8,velocity,lower_ux,1.081392765045166 +karman_re50,ppo,97,38.8,velocity,lower_uy,0.0851840078830719 +karman_re50,ppo,98,39.2,velocity,upper_ux,0.9321205019950867 +karman_re50,ppo,98,39.2,velocity,upper_uy,-0.10868216305971146 +karman_re50,ppo,98,39.2,velocity,center_ux,0.9918180108070374 +karman_re50,ppo,98,39.2,velocity,center_uy,-0.08855599164962769 +karman_re50,ppo,98,39.2,velocity,lower_ux,1.0565351247787476 +karman_re50,ppo,98,39.2,velocity,lower_uy,-0.03632471710443497 +karman_re50,ppo,99,39.6,velocity,upper_ux,0.9475891590118408 +karman_re50,ppo,99,39.6,velocity,upper_uy,-0.1538187563419342 +karman_re50,ppo,99,39.6,velocity,center_ux,0.9884929656982422 +karman_re50,ppo,99,39.6,velocity,center_uy,-0.1671868860721588 +karman_re50,ppo,99,39.6,velocity,lower_ux,1.039223074913025 +karman_re50,ppo,99,39.6,velocity,lower_uy,-0.14143319427967072 +karman_re50,ppo,100,40.0,velocity,upper_ux,0.9681793451309204 +karman_re50,ppo,100,40.0,velocity,upper_uy,-0.18603463470935822 +karman_re50,ppo,100,40.0,velocity,center_ux,0.9922093152999878 +karman_re50,ppo,100,40.0,velocity,center_uy,-0.2221873253583908 +karman_re50,ppo,100,40.0,velocity,lower_ux,1.033814787864685 +karman_re50,ppo,100,40.0,velocity,lower_uy,-0.21466632187366486 +karman_re50,ppo,101,40.4,velocity,upper_ux,0.9913210272789001 +karman_re50,ppo,101,40.4,velocity,upper_uy,-0.21548627316951752 +karman_re50,ppo,101,40.4,velocity,center_ux,1.0012173652648926 +karman_re50,ppo,101,40.4,velocity,center_uy,-0.25708478689193726 +karman_re50,ppo,101,40.4,velocity,lower_ux,1.033719539642334 +karman_re50,ppo,101,40.4,velocity,lower_uy,-0.2573383152484894 +karman_re50,ppo,102,40.8,velocity,upper_ux,1.015053391456604 +karman_re50,ppo,102,40.8,velocity,upper_uy,-0.24877406656742096 +karman_re50,ppo,102,40.8,velocity,center_ux,1.00985848903656 +karman_re50,ppo,102,40.8,velocity,center_uy,-0.2817694842815399 +karman_re50,ppo,102,40.8,velocity,lower_ux,1.0314996242523193 +karman_re50,ppo,102,40.8,velocity,lower_uy,-0.27256619930267334 +karman_re50,ppo,103,41.2,velocity,upper_ux,1.0383312702178955 +karman_re50,ppo,103,41.2,velocity,upper_uy,-0.28665807843208313 +karman_re50,ppo,103,41.2,velocity,center_ux,1.0123080015182495 +karman_re50,ppo,103,41.2,velocity,center_uy,-0.30108314752578735 +karman_re50,ppo,103,41.2,velocity,lower_ux,1.0224095582962036 +karman_re50,ppo,103,41.2,velocity,lower_uy,-0.26183581352233887 +karman_re50,ppo,104,41.6,velocity,upper_ux,1.0599544048309326 +karman_re50,ppo,104,41.6,velocity,upper_uy,-0.3242451846599579 +karman_re50,ppo,104,41.6,velocity,center_ux,1.0043092966079712 +karman_re50,ppo,104,41.6,velocity,center_uy,-0.3108561336994171 +karman_re50,ppo,104,41.6,velocity,lower_ux,1.0046167373657227 +karman_re50,ppo,104,41.6,velocity,lower_uy,-0.22931808233261108 +karman_re50,ppo,105,42.0,velocity,upper_ux,1.078346610069275 +karman_re50,ppo,105,42.0,velocity,upper_uy,-0.3483312129974365 +karman_re50,ppo,105,42.0,velocity,center_ux,0.9842826128005981 +karman_re50,ppo,105,42.0,velocity,center_uy,-0.3001183569431305 +karman_re50,ppo,105,42.0,velocity,lower_ux,0.9817458987236023 +karman_re50,ppo,105,42.0,velocity,lower_uy,-0.18229185044765472 +karman_re50,ppo,106,42.4,velocity,upper_ux,1.0916106700897217 +karman_re50,ppo,106,42.4,velocity,upper_uy,-0.3384334444999695 +karman_re50,ppo,106,42.4,velocity,center_ux,0.9546271562576294 +karman_re50,ppo,106,42.4,velocity,center_uy,-0.25628387928009033 +karman_re50,ppo,106,42.4,velocity,lower_ux,0.9615160226821899 +karman_re50,ppo,106,42.4,velocity,lower_uy,-0.12747350335121155 +karman_re50,ppo,107,42.8,velocity,upper_ux,1.098067283630371 +karman_re50,ppo,107,42.8,velocity,upper_uy,-0.28137362003326416 +karman_re50,ppo,107,42.8,velocity,center_ux,0.9211377501487732 +karman_re50,ppo,107,42.8,velocity,center_uy,-0.1723421812057495 +karman_re50,ppo,107,42.8,velocity,lower_ux,0.9497214555740356 +karman_re50,ppo,107,42.8,velocity,lower_uy,-0.06735942512750626 +karman_re50,ppo,108,43.2,velocity,upper_ux,1.0961649417877197 +karman_re50,ppo,108,43.2,velocity,upper_uy,-0.18496406078338623 +karman_re50,ppo,108,43.2,velocity,center_ux,0.8921064734458923 +karman_re50,ppo,108,43.2,velocity,center_uy,-0.05396219342947006 +karman_re50,ppo,108,43.2,velocity,lower_ux,0.9476345777511597 +karman_re50,ppo,108,43.2,velocity,lower_uy,-0.00399270374327898 +karman_re50,ppo,109,43.6,velocity,upper_ux,1.0810374021530151 +karman_re50,ppo,109,43.6,velocity,upper_uy,-0.0644671693444252 +karman_re50,ppo,109,43.6,velocity,center_ux,0.8795585036277771 +karman_re50,ppo,109,43.6,velocity,center_uy,0.0789245143532753 +karman_re50,ppo,109,43.6,velocity,lower_ux,0.9550615549087524 +karman_re50,ppo,109,43.6,velocity,lower_uy,0.05622825771570206 +karman_re50,ppo,110,44.0,velocity,upper_ux,1.0411736965179443 +karman_re50,ppo,110,44.0,velocity,upper_uy,0.07486502826213837 +karman_re50,ppo,110,44.0,velocity,center_ux,0.8959847092628479 +karman_re50,ppo,110,44.0,velocity,center_uy,0.1922224462032318 +karman_re50,ppo,110,44.0,velocity,lower_ux,0.9716518521308899 +karman_re50,ppo,110,44.0,velocity,lower_uy,0.10391176491975784 +karman_re50,ppo,111,44.4,velocity,upper_ux,0.9746959209442139 +karman_re50,ppo,111,44.4,velocity,upper_uy,0.22382749617099762 +karman_re50,ppo,111,44.4,velocity,center_ux,0.9389963746070862 +karman_re50,ppo,111,44.4,velocity,center_uy,0.26356077194213867 +karman_re50,ppo,111,44.4,velocity,lower_ux,0.9952536225318909 +karman_re50,ppo,111,44.4,velocity,lower_uy,0.13840222358703613 +karman_re50,ppo,112,44.8,velocity,upper_ux,0.9095655083656311 +karman_re50,ppo,112,44.8,velocity,upper_uy,0.3350009024143219 +karman_re50,ppo,112,44.8,velocity,center_ux,0.992165207862854 +karman_re50,ppo,112,44.8,velocity,center_uy,0.2967280447483063 +karman_re50,ppo,112,44.8,velocity,lower_ux,1.022214412689209 +karman_re50,ppo,112,44.8,velocity,lower_uy,0.1664855182170868 +karman_re50,ppo,113,45.2,velocity,upper_ux,0.874777615070343 +karman_re50,ppo,113,45.2,velocity,upper_uy,0.3657945990562439 +karman_re50,ppo,113,45.2,velocity,center_ux,1.040428638458252 +karman_re50,ppo,113,45.2,velocity,center_uy,0.30396565794944763 +karman_re50,ppo,113,45.2,velocity,lower_ux,1.049182653427124 +karman_re50,ppo,113,45.2,velocity,lower_uy,0.19325466454029083 +karman_re50,ppo,114,45.6,velocity,upper_ux,0.8694689273834229 +karman_re50,ppo,114,45.6,velocity,upper_uy,0.32371726632118225 +karman_re50,ppo,114,45.6,velocity,center_ux,1.0737684965133667 +karman_re50,ppo,114,45.6,velocity,center_uy,0.29114830493927 +karman_re50,ppo,114,45.6,velocity,lower_ux,1.0734374523162842 +karman_re50,ppo,114,45.6,velocity,lower_uy,0.21921266615390778 +karman_re50,ppo,115,46.0,velocity,upper_ux,0.8793971538543701 +karman_re50,ppo,115,46.0,velocity,upper_uy,0.24290527403354645 +karman_re50,ppo,115,46.0,velocity,center_ux,1.0857264995574951 +karman_re50,ppo,115,46.0,velocity,center_uy,0.25874221324920654 +karman_re50,ppo,115,46.0,velocity,lower_ux,1.0921601057052612 +karman_re50,ppo,115,46.0,velocity,lower_uy,0.24124260246753693 +karman_re50,ppo,116,46.4,velocity,upper_ux,0.8955777883529663 +karman_re50,ppo,116,46.4,velocity,upper_uy,0.15925998985767365 +karman_re50,ppo,116,46.4,velocity,center_ux,1.075745701789856 +karman_re50,ppo,116,46.4,velocity,center_uy,0.20802125334739685 +karman_re50,ppo,116,46.4,velocity,lower_ux,1.1022953987121582 +karman_re50,ppo,116,46.4,velocity,lower_uy,0.2520211935043335 +karman_re50,ppo,117,46.8,velocity,upper_ux,0.9123142957687378 +karman_re50,ppo,117,46.8,velocity,upper_uy,0.09077948331832886 +karman_re50,ppo,117,46.8,velocity,center_ux,1.0523638725280762 +karman_re50,ppo,117,46.8,velocity,center_uy,0.14411339163780212 +karman_re50,ppo,117,46.8,velocity,lower_ux,1.101180911064148 +karman_re50,ppo,117,46.8,velocity,lower_uy,0.23879820108413696 +karman_re50,ppo,118,47.2,velocity,upper_ux,0.9250752329826355 +karman_re50,ppo,118,47.2,velocity,upper_uy,0.029853783547878265 +karman_re50,ppo,118,47.2,velocity,center_ux,1.0291755199432373 +karman_re50,ppo,118,47.2,velocity,center_uy,0.07466879487037659 +karman_re50,ppo,118,47.2,velocity,lower_ux,1.0874422788619995 +karman_re50,ppo,118,47.2,velocity,lower_uy,0.19030889868736267 +karman_re50,ppo,119,47.6,velocity,upper_ux,0.9339852333068848 +karman_re50,ppo,119,47.6,velocity,upper_uy,-0.03344746679067612 +karman_re50,ppo,119,47.6,velocity,center_ux,1.014428973197937 +karman_re50,ppo,119,47.6,velocity,center_uy,0.004321088548749685 +karman_re50,ppo,119,47.6,velocity,lower_ux,1.0621980428695679 +karman_re50,ppo,119,47.6,velocity,lower_uy,0.10599071532487869 +karman_re50,ppo,120,48.0,velocity,upper_ux,0.9435552358627319 +karman_re50,ppo,120,48.0,velocity,upper_uy,-0.09296444803476334 +karman_re50,ppo,120,48.0,velocity,center_ux,1.0058579444885254 +karman_re50,ppo,120,48.0,velocity,center_uy,-0.06680550426244736 +karman_re50,ppo,120,48.0,velocity,lower_ux,1.0309447050094604 +karman_re50,ppo,120,48.0,velocity,lower_uy,-0.0002841705281753093 +karman_re50,ppo,121,48.4,velocity,upper_ux,0.9572197794914246 +karman_re50,ppo,121,48.4,velocity,upper_uy,-0.13810262084007263 +karman_re50,ppo,121,48.4,velocity,center_ux,0.9994537234306335 +karman_re50,ppo,121,48.4,velocity,center_uy,-0.13508403301239014 +karman_re50,ppo,121,48.4,velocity,lower_ux,1.0051366090774536 +karman_re50,ppo,121,48.4,velocity,lower_uy,-0.10379333794116974 +karman_re50,ppo,122,48.8,velocity,upper_ux,0.9751071929931641 +karman_re50,ppo,122,48.8,velocity,upper_uy,-0.17053231596946716 +karman_re50,ppo,122,48.8,velocity,center_ux,0.9973127245903015 +karman_re50,ppo,122,48.8,velocity,center_uy,-0.19151712954044342 +karman_re50,ppo,122,48.8,velocity,lower_ux,0.9947230815887451 +karman_re50,ppo,122,48.8,velocity,lower_uy,-0.18374799191951752 +karman_re50,ppo,123,49.2,velocity,upper_ux,0.9956279993057251 +karman_re50,ppo,123,49.2,velocity,upper_uy,-0.199677512049675 +karman_re50,ppo,123,49.2,velocity,center_ux,1.0014467239379883 +karman_re50,ppo,123,49.2,velocity,center_uy,-0.23188713192939758 +karman_re50,ppo,123,49.2,velocity,lower_ux,0.9971768856048584 +karman_re50,ppo,123,49.2,velocity,lower_uy,-0.23446063697338104 +karman_re50,ppo,124,49.6,velocity,upper_ux,1.0174250602722168 +karman_re50,ppo,124,49.6,velocity,upper_uy,-0.23281051218509674 +karman_re50,ppo,124,49.6,velocity,center_ux,1.0080398321151733 +karman_re50,ppo,124,49.6,velocity,center_uy,-0.2618373930454254 +karman_re50,ppo,124,49.6,velocity,lower_ux,1.0018101930618286 +karman_re50,ppo,124,49.6,velocity,lower_uy,-0.2595418095588684 +karman_re50,ppo,125,50.0,velocity,upper_ux,1.0392814874649048 +karman_re50,ppo,125,50.0,velocity,upper_uy,-0.2708183228969574 +karman_re50,ppo,125,50.0,velocity,center_ux,1.0108134746551514 +karman_re50,ppo,125,50.0,velocity,center_uy,-0.2858845591545105 +karman_re50,ppo,125,50.0,velocity,lower_ux,1.000820517539978 +karman_re50,ppo,125,50.0,velocity,lower_uy,-0.25972309708595276 +karman_re50,ppo,126,50.4,velocity,upper_ux,1.0600898265838623 +karman_re50,ppo,126,50.4,velocity,upper_uy,-0.31034332513809204 +karman_re50,ppo,126,50.4,velocity,center_ux,1.004738211631775 +karman_re50,ppo,126,50.4,velocity,center_uy,-0.3021372854709625 +karman_re50,ppo,126,50.4,velocity,lower_ux,0.990822434425354 +karman_re50,ppo,126,50.4,velocity,lower_uy,-0.23737287521362305 +karman_re50,ppo,127,50.8,velocity,upper_ux,1.0781869888305664 +karman_re50,ppo,127,50.8,velocity,upper_uy,-0.3404521048069 +karman_re50,ppo,127,50.8,velocity,center_ux,0.987403392791748 +karman_re50,ppo,127,50.8,velocity,center_uy,-0.30147111415863037 +karman_re50,ppo,127,50.8,velocity,lower_ux,0.9731235504150391 +karman_re50,ppo,127,50.8,velocity,lower_uy,-0.19865459203720093 +karman_re50,ppo,128,51.2,velocity,upper_ux,1.093194842338562 +karman_re50,ppo,128,51.2,velocity,upper_uy,-0.3421004116535187 +karman_re50,ppo,128,51.2,velocity,center_ux,0.9616040587425232 +karman_re50,ppo,128,51.2,velocity,center_uy,-0.27194663882255554 +karman_re50,ppo,128,51.2,velocity,lower_ux,0.9552015066146851 +karman_re50,ppo,128,51.2,velocity,lower_uy,-0.15074370801448822 +karman_re50,ppo,129,51.6,velocity,upper_ux,1.0996017456054688 +karman_re50,ppo,129,51.6,velocity,upper_uy,-0.2962728440761566 +karman_re50,ppo,129,51.6,velocity,center_ux,0.9294307827949524 +karman_re50,ppo,129,51.6,velocity,center_uy,-0.20321069657802582 +karman_re50,ppo,129,51.6,velocity,lower_ux,0.9407427310943604 +karman_re50,ppo,129,51.6,velocity,lower_uy,-0.09639633446931839 +karman_re50,ppo,130,52.0,velocity,upper_ux,1.100294589996338 +karman_re50,ppo,130,52.0,velocity,upper_uy,-0.20544923841953278 +karman_re50,ppo,130,52.0,velocity,center_ux,0.9021031856536865 +karman_re50,ppo,130,52.0,velocity,center_uy,-0.09748383611440659 +karman_re50,ppo,130,52.0,velocity,lower_ux,0.9365705847740173 +karman_re50,ppo,130,52.0,velocity,lower_uy,-0.03680066019296646 +karman_re50,ppo,131,52.4,velocity,upper_ux,1.0909953117370605 +karman_re50,ppo,131,52.4,velocity,upper_uy,-0.08518977463245392 +karman_re50,ppo,131,52.4,velocity,center_ux,0.8880220055580139 +karman_re50,ppo,131,52.4,velocity,center_uy,0.030326437205076218 +karman_re50,ppo,131,52.4,velocity,lower_ux,0.9412940740585327 +karman_re50,ppo,131,52.4,velocity,lower_uy,0.024599092081189156 +karman_re50,ppo,132,52.8,velocity,upper_ux,1.0635360479354858 +karman_re50,ppo,132,52.8,velocity,upper_uy,0.05302579700946808 +karman_re50,ppo,132,52.8,velocity,center_ux,0.8986808657646179 +karman_re50,ppo,132,52.8,velocity,center_uy,0.14991289377212524 +karman_re50,ppo,132,52.8,velocity,lower_ux,0.9545503258705139 +karman_re50,ppo,132,52.8,velocity,lower_uy,0.07844889909029007 +karman_re50,ppo,133,53.2,velocity,upper_ux,1.0122156143188477 +karman_re50,ppo,133,53.2,velocity,upper_uy,0.20037022233009338 +karman_re50,ppo,133,53.2,velocity,center_ux,0.9360056519508362 +karman_re50,ppo,133,53.2,velocity,center_uy,0.23202966153621674 +karman_re50,ppo,133,53.2,velocity,lower_ux,0.9753158688545227 +karman_re50,ppo,133,53.2,velocity,lower_uy,0.1182156354188919 +karman_re50,ppo,134,53.6,velocity,upper_ux,0.9568275213241577 +karman_re50,ppo,134,53.6,velocity,upper_uy,0.31562843918800354 +karman_re50,ppo,134,53.6,velocity,center_ux,0.9864627718925476 +karman_re50,ppo,134,53.6,velocity,center_uy,0.27139151096343994 +karman_re50,ppo,134,53.6,velocity,lower_ux,1.0004709959030151 +karman_re50,ppo,134,53.6,velocity,lower_uy,0.14747990667819977 +karman_re50,ppo,135,54.0,velocity,upper_ux,0.9258149862289429 +karman_re50,ppo,135,54.0,velocity,upper_uy,0.35417473316192627 +karman_re50,ppo,135,54.0,velocity,center_ux,1.0343067646026611 +karman_re50,ppo,135,54.0,velocity,center_uy,0.2797408401966095 +karman_re50,ppo,135,54.0,velocity,lower_ux,1.0263779163360596 +karman_re50,ppo,135,54.0,velocity,lower_uy,0.17350557446479797 +karman_re50,ppo,136,54.4,velocity,upper_ux,0.922147274017334 +karman_re50,ppo,136,54.4,velocity,upper_uy,0.32116496562957764 +karman_re50,ppo,136,54.4,velocity,center_ux,1.0682895183563232 +karman_re50,ppo,136,54.4,velocity,center_uy,0.2698112726211548 +karman_re50,ppo,136,54.4,velocity,lower_ux,1.05029296875 +karman_re50,ppo,136,54.4,velocity,lower_uy,0.20018236339092255 +karman_re50,ppo,137,54.8,velocity,upper_ux,0.9321830868721008 +karman_re50,ppo,137,54.8,velocity,upper_uy,0.25234776735305786 +karman_re50,ppo,137,54.8,velocity,center_ux,1.081811785697937 +karman_re50,ppo,137,54.8,velocity,center_uy,0.24973700940608978 +karman_re50,ppo,137,54.8,velocity,lower_ux,1.0701093673706055 +karman_re50,ppo,137,54.8,velocity,lower_uy,0.2269258052110672 +karman_re50,ppo,138,55.2,velocity,upper_ux,0.9444536566734314 +karman_re50,ppo,138,55.2,velocity,upper_uy,0.18198572099208832 +karman_re50,ppo,138,55.2,velocity,center_ux,1.0748043060302734 +karman_re50,ppo,138,55.2,velocity,center_uy,0.2224956899881363 +karman_re50,ppo,138,55.2,velocity,lower_ux,1.0840059518814087 +karman_re50,ppo,138,55.2,velocity,lower_uy,0.24915137887001038 +karman_re50,ppo,139,55.6,velocity,upper_ux,0.9530061483383179 +karman_re50,ppo,139,55.6,velocity,upper_uy,0.12388032674789429 +karman_re50,ppo,139,55.6,velocity,center_ux,1.0543900728225708 +karman_re50,ppo,139,55.6,velocity,center_uy,0.18603068590164185 +karman_re50,ppo,139,55.6,velocity,lower_ux,1.0903984308242798 +karman_re50,ppo,139,55.6,velocity,lower_uy,0.2559833228588104 +karman_re50,ppo,140,56.0,velocity,upper_ux,0.9559189081192017 +karman_re50,ppo,140,56.0,velocity,upper_uy,0.06939610838890076 +karman_re50,ppo,140,56.0,velocity,center_ux,1.0312319993972778 +karman_re50,ppo,140,56.0,velocity,center_uy,0.13653557002544403 +karman_re50,ppo,140,56.0,velocity,lower_ux,1.0878344774246216 +karman_re50,ppo,140,56.0,velocity,lower_uy,0.23248954117298126 +karman_re50,ppo,141,56.4,velocity,upper_ux,0.9549738168716431 +karman_re50,ppo,141,56.4,velocity,upper_uy,0.008101562038064003 +karman_re50,ppo,141,56.4,velocity,center_ux,1.0133626461029053 +karman_re50,ppo,141,56.4,velocity,center_uy,0.07309939712285995 +karman_re50,ppo,141,56.4,velocity,lower_ux,1.0753071308135986 +karman_re50,ppo,141,56.4,velocity,lower_uy,0.16959461569786072 +karman_re50,ppo,142,56.8,velocity,upper_ux,0.9549977779388428 +karman_re50,ppo,142,56.8,velocity,upper_uy,-0.05560136213898659 +karman_re50,ppo,142,56.8,velocity,center_ux,1.0015636682510376 +karman_re50,ppo,142,56.8,velocity,center_uy,-0.001441220985725522 +karman_re50,ppo,142,56.8,velocity,lower_ux,1.0535262823104858 +karman_re50,ppo,142,56.8,velocity,lower_uy,0.0726999044418335 +karman_re50,ppo,143,57.2,velocity,upper_ux,0.9605026841163635 +karman_re50,ppo,143,57.2,velocity,upper_uy,-0.10912183672189713 +karman_re50,ppo,143,57.2,velocity,center_ux,0.9925678968429565 +karman_re50,ppo,143,57.2,velocity,center_uy,-0.08026745170354843 +karman_re50,ppo,143,57.2,velocity,lower_ux,1.0280715227127075 +karman_re50,ppo,143,57.2,velocity,lower_uy,-0.03843969479203224 +karman_re50,ppo,144,57.6,velocity,upper_ux,0.9725778698921204 +karman_re50,ppo,144,57.6,velocity,upper_uy,-0.14853666722774506 +karman_re50,ppo,144,57.6,velocity,center_ux,0.9869760274887085 +karman_re50,ppo,144,57.6,velocity,center_uy,-0.15161174535751343 +karman_re50,ppo,144,57.6,velocity,lower_ux,1.0102695226669312 +karman_re50,ppo,144,57.6,velocity,lower_uy,-0.13672974705696106 +karman_re50,ppo,145,58.0,velocity,upper_ux,0.9895520806312561 +karman_re50,ppo,145,58.0,velocity,upper_uy,-0.18086494505405426 +karman_re50,ppo,145,58.0,velocity,center_ux,0.9879681468009949 +karman_re50,ppo,145,58.0,velocity,center_uy,-0.20542314648628235 +karman_re50,ppo,145,58.0,velocity,lower_ux,1.0060542821884155 +karman_re50,ppo,145,58.0,velocity,lower_uy,-0.20431463420391083 +karman_re50,ppo,146,58.4,velocity,upper_ux,1.0094590187072754 +karman_re50,ppo,146,58.4,velocity,upper_uy,-0.2149139642715454 +karman_re50,ppo,146,58.4,velocity,center_ux,0.9937965273857117 +karman_re50,ppo,146,58.4,velocity,center_uy,-0.2438346892595291 +karman_re50,ppo,146,58.4,velocity,lower_ux,1.008678913116455 +karman_re50,ppo,146,58.4,velocity,lower_uy,-0.24200019240379333 +karman_re50,ppo,147,58.8,velocity,upper_ux,1.0306742191314697 +karman_re50,ppo,147,58.8,velocity,upper_uy,-0.25387126207351685 +karman_re50,ppo,147,58.8,velocity,center_ux,0.9983177185058594 +karman_re50,ppo,147,58.8,velocity,center_uy,-0.27398979663848877 +karman_re50,ppo,147,58.8,velocity,lower_ux,1.0087828636169434 +karman_re50,ppo,147,58.8,velocity,lower_uy,-0.2549457848072052 +karman_re50,ppo,148,59.2,velocity,upper_ux,1.0517624616622925 +karman_re50,ppo,148,59.2,velocity,upper_uy,-0.29609063267707825 +karman_re50,ppo,148,59.2,velocity,center_ux,0.9957131743431091 +karman_re50,ppo,148,59.2,velocity,center_uy,-0.2981915771961212 +karman_re50,ppo,148,59.2,velocity,lower_ux,1.001121997833252 +karman_re50,ppo,148,59.2,velocity,lower_uy,-0.2474888563156128 +karman_re50,ppo,149,59.6,velocity,upper_ux,1.071211576461792 +karman_re50,ppo,149,59.6,velocity,upper_uy,-0.33389055728912354 +karman_re50,ppo,149,59.6,velocity,center_ux,0.9826693534851074 +karman_re50,ppo,149,59.6,velocity,center_uy,-0.3103150427341461 +karman_re50,ppo,149,59.6,velocity,lower_ux,0.9847073554992676 +karman_re50,ppo,149,59.6,velocity,lower_uy,-0.2236005663871765 +karman_re50,ppo,150,60.0,velocity,upper_ux,1.0873037576675415 +karman_re50,ppo,150,60.0,velocity,upper_uy,-0.3497418463230133 +karman_re50,ppo,150,60.0,velocity,center_ux,0.959700345993042 +karman_re50,ppo,150,60.0,velocity,center_uy,-0.2978776693344116 +karman_re50,ppo,150,60.0,velocity,lower_ux,0.963402509689331 +karman_re50,ppo,150,60.0,velocity,lower_uy,-0.18618179857730865 +karman_re50,ppo,151,60.4,velocity,upper_ux,1.0986462831497192 +karman_re50,ppo,151,60.4,velocity,upper_uy,-0.32236847281455994 +karman_re50,ppo,151,60.4,velocity,center_ux,0.9313746690750122 +karman_re50,ppo,151,60.4,velocity,center_uy,-0.248240128159523 +karman_re50,ppo,151,60.4,velocity,lower_ux,0.9439195990562439 +karman_re50,ppo,151,60.4,velocity,lower_uy,-0.13637268543243408 +karman_re50,ppo,152,60.8,velocity,upper_ux,1.103907823562622 +karman_re50,ppo,152,60.8,velocity,upper_uy,-0.2445891946554184 +karman_re50,ppo,152,60.8,velocity,center_ux,0.904457151889801 +karman_re50,ppo,152,60.8,velocity,center_uy,-0.15659309923648834 +karman_re50,ppo,152,60.8,velocity,lower_ux,0.9316567778587341 +karman_re50,ppo,152,60.8,velocity,lower_uy,-0.0755067840218544 +karman_re50,ppo,153,61.2,velocity,upper_ux,1.1006438732147217 +karman_re50,ppo,153,61.2,velocity,upper_uy,-0.128263458609581 +karman_re50,ppo,153,61.2,velocity,center_ux,0.8866269588470459 +karman_re50,ppo,153,61.2,velocity,center_uy,-0.03125442564487457 +karman_re50,ppo,153,61.2,velocity,lower_ux,0.9286531805992126 +karman_re50,ppo,153,61.2,velocity,lower_uy,-0.008325097151100636 +karman_re50,ppo,154,61.6,velocity,upper_ux,1.0817961692810059 +karman_re50,ppo,154,61.6,velocity,upper_uy,0.014916517771780491 +karman_re50,ppo,154,61.6,velocity,center_ux,0.8888887763023376 +karman_re50,ppo,154,61.6,velocity,center_uy,0.10195886343717575 +karman_re50,ppo,154,61.6,velocity,lower_ux,0.9355220794677734 +karman_re50,ppo,154,61.6,velocity,lower_uy,0.055455729365348816 +karman_re50,ppo,155,62.0,velocity,upper_ux,1.0399153232574463 +karman_re50,ppo,155,62.0,velocity,upper_uy,0.17776304483413696 +karman_re50,ppo,155,62.0,velocity,center_ux,0.918138325214386 +karman_re50,ppo,155,62.0,velocity,center_uy,0.20469552278518677 +karman_re50,ppo,155,62.0,velocity,lower_ux,0.9519408345222473 +karman_re50,ppo,155,62.0,velocity,lower_uy,0.10582508146762848 +karman_re50,ppo,156,62.4,velocity,upper_ux,0.992418646812439 +karman_re50,ppo,156,62.4,velocity,upper_uy,0.3168034255504608 +karman_re50,ppo,156,62.4,velocity,center_ux,0.9640300273895264 +karman_re50,ppo,156,62.4,velocity,center_uy,0.2603504955768585 +karman_re50,ppo,156,62.4,velocity,lower_ux,0.9753172993659973 +karman_re50,ppo,156,62.4,velocity,lower_uy,0.14287927746772766 +karman_re50,ppo,157,62.8,velocity,upper_ux,0.9699414968490601 +karman_re50,ppo,157,62.8,velocity,upper_uy,0.37457379698753357 +karman_re50,ppo,157,62.8,velocity,center_ux,1.0090054273605347 +karman_re50,ppo,157,62.8,velocity,center_uy,0.28117263317108154 +karman_re50,ppo,157,62.8,velocity,lower_ux,1.0018208026885986 +karman_re50,ppo,157,62.8,velocity,lower_uy,0.17406511306762695 +karman_re50,ppo,158,63.2,velocity,upper_ux,0.9735805988311768 +karman_re50,ppo,158,63.2,velocity,upper_uy,0.35701942443847656 +karman_re50,ppo,158,63.2,velocity,center_ux,1.0418612957000732 +karman_re50,ppo,158,63.2,velocity,center_uy,0.28630051016807556 +karman_re50,ppo,158,63.2,velocity,lower_ux,1.0283758640289307 +karman_re50,ppo,158,63.2,velocity,lower_uy,0.20539556443691254 +karman_re50,ppo,159,63.6,velocity,upper_ux,0.9836688041687012 +karman_re50,ppo,159,63.6,velocity,upper_uy,0.3037239611148834 +karman_re50,ppo,159,63.6,velocity,center_ux,1.0582563877105713 +karman_re50,ppo,159,63.6,velocity,center_uy,0.2859823703765869 +karman_re50,ppo,159,63.6,velocity,lower_ux,1.0530657768249512 +karman_re50,ppo,159,63.6,velocity,lower_uy,0.23793192207813263 +karman_re50,ppo,160,64.0,velocity,upper_ux,0.9859458208084106 +karman_re50,ppo,160,64.0,velocity,upper_uy,0.24134239554405212 +karman_re50,ppo,160,64.0,velocity,center_ux,1.0581955909729004 +karman_re50,ppo,160,64.0,velocity,center_uy,0.27901482582092285 +karman_re50,ppo,160,64.0,velocity,lower_ux,1.074156403541565 +karman_re50,ppo,160,64.0,velocity,lower_uy,0.26791897416114807 +karman_re50,ppo,161,64.4,velocity,upper_ux,0.978198766708374 +karman_re50,ppo,161,64.4,velocity,upper_uy,0.1789216548204422 +karman_re50,ppo,161,64.4,velocity,center_ux,1.045105218887329 +karman_re50,ppo,161,64.4,velocity,center_uy,0.25679704546928406 +karman_re50,ppo,161,64.4,velocity,lower_ux,1.0901978015899658 +karman_re50,ppo,161,64.4,velocity,lower_uy,0.2855009436607361 +karman_re50,ppo,162,64.8,velocity,upper_ux,0.9656935334205627 +karman_re50,ppo,162,64.8,velocity,upper_uy,0.11737312376499176 +karman_re50,ppo,162,64.8,velocity,center_ux,1.0258985757827759 +karman_re50,ppo,162,64.8,velocity,center_uy,0.211231991648674 +karman_re50,ppo,162,64.8,velocity,lower_ux,1.098860740661621 +karman_re50,ppo,162,64.8,velocity,lower_uy,0.27349644899368286 +karman_re50,ppo,163,65.2,velocity,upper_ux,0.9537391066551208 +karman_re50,ppo,163,65.2,velocity,upper_uy,0.050641585141420364 +karman_re50,ppo,163,65.2,velocity,center_ux,1.007509469985962 +karman_re50,ppo,163,65.2,velocity,center_uy,0.1402921825647354 +karman_re50,ppo,163,65.2,velocity,lower_ux,1.098067283630371 +karman_re50,ppo,163,65.2,velocity,lower_uy,0.21859818696975708 +karman_re50,ppo,164,65.6,velocity,upper_ux,0.9463825225830078 +karman_re50,ppo,164,65.6,velocity,upper_uy,-0.020129473879933357 +karman_re50,ppo,164,65.6,velocity,center_ux,0.9941191077232361 +karman_re50,ppo,164,65.6,velocity,center_uy,0.051503702998161316 +karman_re50,ppo,164,65.6,velocity,lower_ux,1.0863021612167358 +karman_re50,ppo,164,65.6,velocity,lower_uy,0.12244074791669846 +karman_re50,ppo,165,66.0,velocity,upper_ux,0.9466226100921631 +karman_re50,ppo,165,66.0,velocity,upper_uy,-0.08502599596977234 +karman_re50,ppo,165,66.0,velocity,center_ux,0.9848366379737854 +karman_re50,ppo,165,66.0,velocity,center_uy,-0.043517567217350006 +karman_re50,ppo,165,66.0,velocity,lower_ux,1.0664653778076172 +karman_re50,ppo,165,66.0,velocity,lower_uy,0.004019468557089567 +karman_re50,ppo,166,66.4,velocity,upper_ux,0.9556373357772827 +karman_re50,ppo,166,66.4,velocity,upper_uy,-0.13493947684764862 +karman_re50,ppo,166,66.4,velocity,center_ux,0.9793245196342468 +karman_re50,ppo,166,66.4,velocity,center_uy,-0.1309899389743805 +karman_re50,ppo,166,66.4,velocity,lower_ux,1.048680305480957 +karman_re50,ppo,166,66.4,velocity,lower_uy,-0.10710462927818298 +karman_re50,ppo,167,66.8,velocity,upper_ux,0.9718194603919983 +karman_re50,ppo,167,66.8,velocity,upper_uy,-0.17185601592063904 +karman_re50,ppo,167,66.8,velocity,center_ux,0.9803643226623535 +karman_re50,ppo,167,66.8,velocity,center_uy,-0.19783292710781097 +karman_re50,ppo,167,66.8,velocity,lower_ux,1.0407135486602783 +karman_re50,ppo,167,66.8,velocity,lower_uy,-0.1887742429971695 +karman_re50,ppo,168,67.2,velocity,upper_ux,0.9924065470695496 +karman_re50,ppo,168,67.2,velocity,upper_uy,-0.20519667863845825 +karman_re50,ppo,168,67.2,velocity,center_ux,0.9878055453300476 +karman_re50,ppo,168,67.2,velocity,center_uy,-0.24225331842899323 +karman_re50,ppo,168,67.2,velocity,lower_ux,1.0386680364608765 +karman_re50,ppo,168,67.2,velocity,lower_uy,-0.23838800191879272 +karman_re50,ppo,169,67.6,velocity,upper_ux,1.0149632692337036 +karman_re50,ppo,169,67.6,velocity,upper_uy,-0.2418060153722763 +karman_re50,ppo,169,67.6,velocity,center_ux,0.9961124658584595 +karman_re50,ppo,169,67.6,velocity,center_uy,-0.2731843590736389 +karman_re50,ppo,169,67.6,velocity,lower_ux,1.0351935625076294 +karman_re50,ppo,169,67.6,velocity,lower_uy,-0.2603003978729248 +karman_re50,ppo,170,68.0,velocity,upper_ux,1.0376359224319458 +karman_re50,ppo,170,68.0,velocity,upper_uy,-0.28273507952690125 +karman_re50,ppo,170,68.0,velocity,center_ux,0.9985752105712891 +karman_re50,ppo,170,68.0,velocity,center_uy,-0.297662615776062 +karman_re50,ppo,170,68.0,velocity,lower_ux,1.0256266593933105 +karman_re50,ppo,170,68.0,velocity,lower_uy,-0.2585596442222595 +karman_re50,ppo,171,68.4,velocity,upper_ux,1.0589747428894043 +karman_re50,ppo,171,68.4,velocity,upper_uy,-0.32361751794815063 +karman_re50,ppo,171,68.4,velocity,center_ux,0.9907147884368896 +karman_re50,ppo,171,68.4,velocity,center_uy,-0.31363552808761597 +karman_re50,ppo,171,68.4,velocity,lower_ux,1.0080063343048096 +karman_re50,ppo,171,68.4,velocity,lower_uy,-0.2377481460571289 +karman_re50,ppo,172,68.8,velocity,upper_ux,1.0775110721588135 +karman_re50,ppo,172,68.8,velocity,upper_uy,-0.3510996103286743 +karman_re50,ppo,172,68.8,velocity,center_ux,0.9714981913566589 +karman_re50,ppo,172,68.8,velocity,center_uy,-0.31046050786972046 +karman_re50,ppo,172,68.8,velocity,lower_ux,0.9846321940422058 +karman_re50,ppo,172,68.8,velocity,lower_uy,-0.20177188515663147 +karman_re50,ppo,173,69.2,velocity,upper_ux,1.09165620803833 +karman_re50,ppo,173,69.2,velocity,upper_uy,-0.3439876437187195 +karman_re50,ppo,173,69.2,velocity,center_ux,0.9438299536705017 +karman_re50,ppo,173,69.2,velocity,center_uy,-0.2745559811592102 +karman_re50,ppo,173,69.2,velocity,lower_ux,0.961455762386322 +karman_re50,ppo,173,69.2,velocity,lower_uy,-0.15303847193717957 +karman_re50,ppo,174,69.6,velocity,upper_ux,1.099941611289978 +karman_re50,ppo,174,69.6,velocity,upper_uy,-0.28751805424690247 +karman_re50,ppo,174,69.6,velocity,center_ux,0.9135998487472534 +karman_re50,ppo,174,69.6,velocity,center_uy,-0.19679635763168335 +karman_re50,ppo,174,69.6,velocity,lower_ux,0.9443459510803223 +karman_re50,ppo,174,69.6,velocity,lower_uy,-0.0928807258605957 +karman_re50,ppo,175,70.0,velocity,upper_ux,1.1003024578094482 +karman_re50,ppo,175,70.0,velocity,upper_uy,-0.18732590973377228 +karman_re50,ppo,175,70.0,velocity,center_ux,0.8882099986076355 +karman_re50,ppo,175,70.0,velocity,center_uy,-0.07983735203742981 +karman_re50,ppo,175,70.0,velocity,lower_ux,0.9362899661064148 +karman_re50,ppo,175,70.0,velocity,lower_uy,-0.025110159069299698 +karman_re50,ppo,176,70.4,velocity,upper_ux,1.086803674697876 +karman_re50,ppo,176,70.4,velocity,upper_uy,-0.056361909955739975 +karman_re50,ppo,176,70.4,velocity,center_ux,0.8784129619598389 +karman_re50,ppo,176,70.4,velocity,center_uy,0.05736283212900162 +karman_re50,ppo,176,70.4,velocity,lower_ux,0.9384049773216248 +karman_re50,ppo,176,70.4,velocity,lower_uy,0.04162617772817612 +karman_re50,ppo,177,70.8,velocity,upper_ux,1.0484365224838257 +karman_re50,ppo,177,70.8,velocity,upper_uy,0.10395479947328568 +karman_re50,ppo,177,70.8,velocity,center_ux,0.8960486650466919 +karman_re50,ppo,177,70.8,velocity,center_uy,0.17784327268600464 +karman_re50,ppo,177,70.8,velocity,lower_ux,0.9511120319366455 +karman_re50,ppo,177,70.8,velocity,lower_uy,0.09672406315803528 +karman_re50,ppo,178,71.2,velocity,upper_ux,0.9919378757476807 +karman_re50,ppo,178,71.2,velocity,upper_uy,0.27100321650505066 +karman_re50,ppo,178,71.2,velocity,center_ux,0.9378792643547058 +karman_re50,ppo,178,71.2,velocity,center_uy,0.25359272956848145 +karman_re50,ppo,178,71.2,velocity,lower_ux,0.9724634289741516 +karman_re50,ppo,178,71.2,velocity,lower_uy,0.13762223720550537 +karman_re50,ppo,179,71.6,velocity,upper_ux,0.9522645473480225 +karman_re50,ppo,179,71.6,velocity,upper_uy,0.37668007612228394 +karman_re50,ppo,179,71.6,velocity,center_ux,0.9862905740737915 +karman_re50,ppo,179,71.6,velocity,center_uy,0.2892415523529053 +karman_re50,ppo,179,71.6,velocity,lower_ux,0.9986645579338074 +karman_re50,ppo,179,71.6,velocity,lower_uy,0.17092645168304443 +karman_re50,ppo,180,72.0,velocity,upper_ux,0.9458492994308472 +karman_re50,ppo,180,72.0,velocity,upper_uy,0.3924408257007599 +karman_re50,ppo,180,72.0,velocity,center_ux,1.0272101163864136 +karman_re50,ppo,180,72.0,velocity,center_uy,0.30343449115753174 +karman_re50,ppo,180,72.0,velocity,lower_ux,1.0264804363250732 +karman_re50,ppo,180,72.0,velocity,lower_uy,0.20332105457782745 +karman_re50,ppo,181,72.4,velocity,upper_ux,0.956322193145752 +karman_re50,ppo,181,72.4,velocity,upper_uy,0.3506559431552887 +karman_re50,ppo,181,72.4,velocity,center_ux,1.0546988248825073 +karman_re50,ppo,181,72.4,velocity,center_uy,0.30800583958625793 +karman_re50,ppo,181,72.4,velocity,lower_ux,1.054459571838379 +karman_re50,ppo,181,72.4,velocity,lower_uy,0.236554816365242 +karman_re50,ppo,182,72.8,velocity,upper_ux,0.9602720737457275 +karman_re50,ppo,182,72.8,velocity,upper_uy,0.2837657928466797 +karman_re50,ppo,182,72.8,velocity,center_ux,1.0627800226211548 +karman_re50,ppo,182,72.8,velocity,center_uy,0.30173128843307495 +karman_re50,ppo,182,72.8,velocity,lower_ux,1.076631784439087 +karman_re50,ppo,182,72.8,velocity,lower_uy,0.26694491505622864 +karman_re50,ppo,183,73.2,velocity,upper_ux,0.9556350708007812 +karman_re50,ppo,183,73.2,velocity,upper_uy,0.2102069854736328 +karman_re50,ppo,183,73.2,velocity,center_ux,1.0569151639938354 +karman_re50,ppo,183,73.2,velocity,center_uy,0.27851754426956177 +karman_re50,ppo,183,73.2,velocity,lower_ux,1.094890832901001 +karman_re50,ppo,183,73.2,velocity,lower_uy,0.28704360127449036 +karman_re50,ppo,184,73.6,velocity,upper_ux,0.945494532585144 +karman_re50,ppo,184,73.6,velocity,upper_uy,0.13666807115077972 +karman_re50,ppo,184,73.6,velocity,center_ux,1.0407942533493042 +karman_re50,ppo,184,73.6,velocity,center_uy,0.2299654632806778 +karman_re50,ppo,184,73.6,velocity,lower_ux,1.105245590209961 +karman_re50,ppo,184,73.6,velocity,lower_uy,0.28078073263168335 +karman_re50,ppo,185,74.0,velocity,upper_ux,0.9361166954040527 +karman_re50,ppo,185,74.0,velocity,upper_uy,0.06395570188760757 +karman_re50,ppo,185,74.0,velocity,center_ux,1.021924376487732 +karman_re50,ppo,185,74.0,velocity,center_uy,0.15528954565525055 +karman_re50,ppo,185,74.0,velocity,lower_ux,1.1048805713653564 +karman_re50,ppo,185,74.0,velocity,lower_uy,0.23300370573997498 +karman_re50,ppo,186,74.4,velocity,upper_ux,0.9314267635345459 +karman_re50,ppo,186,74.4,velocity,upper_uy,-0.009049452841281891 +karman_re50,ppo,186,74.4,velocity,center_ux,1.0062527656555176 +karman_re50,ppo,186,74.4,velocity,center_uy,0.06292244791984558 +karman_re50,ppo,186,74.4,velocity,lower_ux,1.0922188758850098 +karman_re50,ppo,186,74.4,velocity,lower_uy,0.1420704871416092 +karman_re50,ppo,187,74.8,velocity,upper_ux,0.9335759878158569 +karman_re50,ppo,187,74.8,velocity,upper_uy,-0.07700031995773315 +karman_re50,ppo,187,74.8,velocity,center_ux,0.9950556755065918 +karman_re50,ppo,187,74.8,velocity,center_uy,-0.03434183821082115 +karman_re50,ppo,187,74.8,velocity,lower_ux,1.0700706243515015 +karman_re50,ppo,187,74.8,velocity,lower_uy,0.02459803968667984 +karman_re50,ppo,188,75.2,velocity,upper_ux,0.9436461925506592 +karman_re50,ppo,188,75.2,velocity,upper_uy,-0.13069821894168854 +karman_re50,ppo,188,75.2,velocity,center_ux,0.9881120324134827 +karman_re50,ppo,188,75.2,velocity,center_uy,-0.12352986633777618 +karman_re50,ppo,188,75.2,velocity,lower_ux,1.048987627029419 +karman_re50,ppo,188,75.2,velocity,lower_uy,-0.0905221551656723 +karman_re50,ppo,189,75.6,velocity,upper_ux,0.9605319499969482 +karman_re50,ppo,189,75.6,velocity,upper_uy,-0.16861706972122192 +karman_re50,ppo,189,75.6,velocity,center_ux,0.9875117540359497 +karman_re50,ppo,189,75.6,velocity,center_uy,-0.19214767217636108 +karman_re50,ppo,189,75.6,velocity,lower_ux,1.0389902591705322 +karman_re50,ppo,189,75.6,velocity,lower_uy,-0.17827974259853363 +karman_re50,ppo,190,76.0,velocity,upper_ux,0.9816825985908508 +karman_re50,ppo,190,76.0,velocity,upper_uy,-0.19922442734241486 +karman_re50,ppo,190,76.0,velocity,center_ux,0.9939653277397156 +karman_re50,ppo,190,76.0,velocity,center_uy,-0.23688636720180511 +karman_re50,ppo,190,76.0,velocity,lower_ux,1.037663459777832 +karman_re50,ppo,190,76.0,velocity,lower_uy,-0.23336103558540344 +karman_re50,ppo,191,76.4,velocity,upper_ux,1.0047954320907593 +karman_re50,ppo,191,76.4,velocity,upper_uy,-0.23162108659744263 +karman_re50,ppo,191,76.4,velocity,center_ux,1.0031046867370605 +karman_re50,ppo,191,76.4,velocity,center_uy,-0.26631733775138855 +karman_re50,ppo,191,76.4,velocity,lower_ux,1.0368046760559082 +karman_re50,ppo,191,76.4,velocity,lower_uy,-0.2598886787891388 +karman_re50,ppo,192,76.8,velocity,upper_ux,1.029178261756897 +karman_re50,ppo,192,76.8,velocity,upper_uy,-0.2690723240375519 +karman_re50,ppo,192,76.8,velocity,center_ux,1.009475827217102 +karman_re50,ppo,192,76.8,velocity,center_uy,-0.2891072928905487 +karman_re50,ppo,192,76.8,velocity,lower_ux,1.0318063497543335 +karman_re50,ppo,192,76.8,velocity,lower_uy,-0.2606792747974396 +karman_re50,ppo,193,77.2,velocity,upper_ux,1.0495871305465698 +karman_re50,ppo,193,77.2,velocity,upper_uy,-0.3083018958568573 +karman_re50,ppo,193,77.2,velocity,center_ux,1.0040115118026733 +karman_re50,ppo,193,77.2,velocity,center_uy,-0.30449309945106506 +karman_re50,ppo,193,77.2,velocity,lower_ux,1.0158610343933105 +karman_re50,ppo,193,77.2,velocity,lower_uy,-0.23876413702964783 +karman_re50,ppo,194,77.6,velocity,upper_ux,1.068793535232544 +karman_re50,ppo,194,77.6,velocity,upper_uy,-0.3409656584262848 +karman_re50,ppo,194,77.6,velocity,center_ux,0.9880622029304504 +karman_re50,ppo,194,77.6,velocity,center_uy,-0.30536484718322754 +karman_re50,ppo,194,77.6,velocity,lower_ux,0.9944589734077454 +karman_re50,ppo,194,77.6,velocity,lower_uy,-0.20109844207763672 +karman_re50,ppo,195,78.0,velocity,upper_ux,1.0839366912841797 +karman_re50,ppo,195,78.0,velocity,upper_uy,-0.3481840491294861 +karman_re50,ppo,195,78.0,velocity,center_ux,0.9614222645759583 +karman_re50,ppo,195,78.0,velocity,center_uy,-0.27875813841819763 +karman_re50,ppo,195,78.0,velocity,lower_ux,0.9724666476249695 +karman_re50,ppo,195,78.0,velocity,lower_uy,-0.15310578048229218 +karman_re50,ppo,196,78.4,velocity,upper_ux,1.0935543775558472 +karman_re50,ppo,196,78.4,velocity,upper_uy,-0.31127944588661194 +karman_re50,ppo,196,78.4,velocity,center_ux,0.9288747906684875 +karman_re50,ppo,196,78.4,velocity,center_uy,-0.21405668556690216 +karman_re50,ppo,196,78.4,velocity,lower_ux,0.9564177989959717 +karman_re50,ppo,196,78.4,velocity,lower_uy,-0.09727059304714203 +karman_re50,ppo,197,78.8,velocity,upper_ux,1.0962183475494385 +karman_re50,ppo,197,78.8,velocity,upper_uy,-0.22913362085819244 +karman_re50,ppo,197,78.8,velocity,center_ux,0.8975135087966919 +karman_re50,ppo,197,78.8,velocity,center_uy,-0.11036743223667145 +karman_re50,ppo,197,78.8,velocity,lower_ux,0.9492020606994629 +karman_re50,ppo,197,78.8,velocity,lower_uy,-0.03497789800167084 +karman_re50,ppo,198,79.2,velocity,upper_ux,1.0884768962860107 +karman_re50,ppo,198,79.2,velocity,upper_uy,-0.11695237457752228 +karman_re50,ppo,198,79.2,velocity,center_ux,0.8769550323486328 +karman_re50,ppo,198,79.2,velocity,center_uy,0.01901896297931671 +karman_re50,ppo,198,79.2,velocity,lower_ux,0.9510075449943542 +karman_re50,ppo,198,79.2,velocity,lower_uy,0.028174730017781258 +karman_re50,ppo,199,79.6,velocity,upper_ux,1.0609180927276611 +karman_re50,ppo,199,79.6,velocity,upper_uy,0.015422370284795761 +karman_re50,ppo,199,79.6,velocity,center_ux,0.8807324767112732 +karman_re50,ppo,199,79.6,velocity,center_uy,0.14472518861293793 +karman_re50,ppo,199,79.6,velocity,lower_ux,0.9622682929039001 +karman_re50,ppo,199,79.6,velocity,lower_uy,0.08229023218154907 +karman_re50,ppo,0,0.0,force,front_fx,0.00047457448090426624 +karman_re50,ppo,0,0.0,force,front_fy,-0.0006213981541804969 +karman_re50,ppo,0,0.0,force,upper_fx,0.002900071209296584 +karman_re50,ppo,0,0.0,force,upper_fy,0.003809114918112755 +karman_re50,ppo,0,0.0,force,lower_fx,-0.003070834558457136 +karman_re50,ppo,0,0.0,force,lower_fy,-0.0023510660976171494 +karman_re50,ppo,1,0.4,force,front_fx,0.0012296107597649097 +karman_re50,ppo,1,0.4,force,front_fy,0.0007673801737837493 +karman_re50,ppo,1,0.4,force,upper_fx,0.0020498353987932205 +karman_re50,ppo,1,0.4,force,upper_fy,0.0042841932736337185 +karman_re50,ppo,1,0.4,force,lower_fx,-0.003103154944255948 +karman_re50,ppo,1,0.4,force,lower_fy,-0.0023019681684672832 +karman_re50,ppo,2,0.8,force,front_fx,0.0017865439876914024 +karman_re50,ppo,2,0.8,force,front_fy,0.0011939260875806212 +karman_re50,ppo,2,0.8,force,upper_fx,0.0018141483888030052 +karman_re50,ppo,2,0.8,force,upper_fy,0.004562596790492535 +karman_re50,ppo,2,0.8,force,lower_fx,-0.0035246729385107756 +karman_re50,ppo,2,0.8,force,lower_fy,-0.0024509630165994167 +karman_re50,ppo,3,1.2,force,front_fx,0.0019157924689352512 +karman_re50,ppo,3,1.2,force,front_fy,0.0017359214834868908 +karman_re50,ppo,3,1.2,force,upper_fx,0.0016278109978884459 +karman_re50,ppo,3,1.2,force,upper_fy,0.0043874322436749935 +karman_re50,ppo,3,1.2,force,lower_fx,-0.0034982257056981325 +karman_re50,ppo,3,1.2,force,lower_fy,-0.002770314458757639 +karman_re50,ppo,4,1.6,force,front_fx,0.0017382405931130052 +karman_re50,ppo,4,1.6,force,front_fy,0.0022293294314295053 +karman_re50,ppo,4,1.6,force,upper_fx,0.0015342257684096694 +karman_re50,ppo,4,1.6,force,upper_fy,0.00429881876334548 +karman_re50,ppo,4,1.6,force,lower_fx,-0.0031495625153183937 +karman_re50,ppo,4,1.6,force,lower_fy,-0.0028888776432722807 +karman_re50,ppo,5,2.0,force,front_fx,0.0013981356751173735 +karman_re50,ppo,5,2.0,force,front_fy,0.0024580261670053005 +karman_re50,ppo,5,2.0,force,upper_fx,0.0015934460097923875 +karman_re50,ppo,5,2.0,force,upper_fy,0.004370727576315403 +karman_re50,ppo,5,2.0,force,lower_fx,-0.002911509247496724 +karman_re50,ppo,5,2.0,force,lower_fy,-0.0028073936700820923 +karman_re50,ppo,6,2.4,force,front_fx,0.001103803631849587 +karman_re50,ppo,6,2.4,force,front_fy,0.002438979223370552 +karman_re50,ppo,6,2.4,force,upper_fx,0.001679251785390079 +karman_re50,ppo,6,2.4,force,upper_fy,0.004449053201824427 +karman_re50,ppo,6,2.4,force,lower_fx,-0.002894254866987467 +karman_re50,ppo,6,2.4,force,lower_fy,-0.0027453729417175055 +karman_re50,ppo,7,2.8,force,front_fx,0.0009352514753118157 +karman_re50,ppo,7,2.8,force,front_fy,0.002242635004222393 +karman_re50,ppo,7,2.8,force,upper_fx,0.0017292513512074947 +karman_re50,ppo,7,2.8,force,upper_fy,0.0044661881402134895 +karman_re50,ppo,7,2.8,force,lower_fx,-0.00299707124941051 +karman_re50,ppo,7,2.8,force,lower_fy,-0.0027621795888990164 +karman_re50,ppo,8,3.2,force,front_fx,0.0009288566652685404 +karman_re50,ppo,8,3.2,force,front_fy,0.0018505214247852564 +karman_re50,ppo,8,3.2,force,upper_fx,0.001782695297151804 +karman_re50,ppo,8,3.2,force,upper_fy,0.0044679585844278336 +karman_re50,ppo,8,3.2,force,lower_fx,-0.0031322166323661804 +karman_re50,ppo,8,3.2,force,lower_fy,-0.0027934443205595016 +karman_re50,ppo,9,3.6,force,front_fx,0.0011582756415009499 +karman_re50,ppo,9,3.6,force,front_fy,0.0011892940383404493 +karman_re50,ppo,9,3.6,force,upper_fx,0.001873869332484901 +karman_re50,ppo,9,3.6,force,upper_fy,0.004467553924769163 +karman_re50,ppo,9,3.6,force,lower_fx,-0.0032762186601758003 +karman_re50,ppo,9,3.6,force,lower_fy,-0.0027920075226575136 +karman_re50,ppo,10,4.0,force,front_fx,0.0015476176049560308 +karman_re50,ppo,10,4.0,force,front_fy,0.0002989938366226852 +karman_re50,ppo,10,4.0,force,upper_fx,0.0020563395228236914 +karman_re50,ppo,10,4.0,force,upper_fy,0.004511388950049877 +karman_re50,ppo,10,4.0,force,lower_fx,-0.0034309399779886007 +karman_re50,ppo,10,4.0,force,lower_fy,-0.0027389146853238344 +karman_re50,ppo,11,4.4,force,front_fx,0.0019318790873512626 +karman_re50,ppo,11,4.4,force,front_fy,-0.0006985461222939193 +karman_re50,ppo,11,4.4,force,upper_fx,0.0023045027628540993 +karman_re50,ppo,11,4.4,force,upper_fy,0.004633377306163311 +karman_re50,ppo,11,4.4,force,lower_fx,-0.003567550564184785 +karman_re50,ppo,11,4.4,force,lower_fy,-0.00271438667550683 +karman_re50,ppo,12,4.8,force,front_fx,0.002078923862427473 +karman_re50,ppo,12,4.8,force,front_fy,-0.0016208396991714835 +karman_re50,ppo,12,4.8,force,upper_fx,0.0026052852626889944 +karman_re50,ppo,12,4.8,force,upper_fy,0.0048240358009934425 +karman_re50,ppo,12,4.8,force,lower_fx,-0.0036606770008802414 +karman_re50,ppo,12,4.8,force,lower_fy,-0.0028217292856425047 +karman_re50,ppo,13,5.2,force,front_fx,0.0019088637782260776 +karman_re50,ppo,13,5.2,force,front_fy,-0.0023744874633848667 +karman_re50,ppo,13,5.2,force,upper_fx,0.0029143437277525663 +karman_re50,ppo,13,5.2,force,upper_fy,0.005028841085731983 +karman_re50,ppo,13,5.2,force,lower_fx,-0.00372165790759027 +karman_re50,ppo,13,5.2,force,lower_fy,-0.0030237617902457714 +karman_re50,ppo,14,5.6,force,front_fx,0.0014996373793110251 +karman_re50,ppo,14,5.6,force,front_fy,-0.00294288108125329 +karman_re50,ppo,14,5.6,force,upper_fx,0.0032005233224481344 +karman_re50,ppo,14,5.6,force,upper_fy,0.0051961420103907585 +karman_re50,ppo,14,5.6,force,lower_fx,-0.0037679190281778574 +karman_re50,ppo,14,5.6,force,lower_fy,-0.003187642665579915 +karman_re50,ppo,15,6.0,force,front_fx,0.000985767343081534 +karman_re50,ppo,15,6.0,force,front_fy,-0.0032984500285238028 +karman_re50,ppo,15,6.0,force,upper_fx,0.003443269757553935 +karman_re50,ppo,15,6.0,force,upper_fy,0.005306165665388107 +karman_re50,ppo,15,6.0,force,lower_fx,-0.003765096887946129 +karman_re50,ppo,15,6.0,force,lower_fy,-0.003184989094734192 +karman_re50,ppo,16,6.4,force,front_fx,0.0004281451110728085 +karman_re50,ppo,16,6.4,force,front_fy,-0.0034570235293358564 +karman_re50,ppo,16,6.4,force,upper_fx,0.0036478263791650534 +karman_re50,ppo,16,6.4,force,upper_fy,0.005289633292704821 +karman_re50,ppo,16,6.4,force,lower_fx,-0.0036602613981813192 +karman_re50,ppo,16,6.4,force,lower_fy,-0.003008931642398238 +karman_re50,ppo,17,6.8,force,front_fx,-0.0001293452805839479 +karman_re50,ppo,17,6.8,force,front_fy,-0.0033964768517762423 +karman_re50,ppo,17,6.8,force,upper_fx,0.0037778732366859913 +karman_re50,ppo,17,6.8,force,upper_fy,0.0050789471715688705 +karman_re50,ppo,17,6.8,force,lower_fx,-0.003389717312529683 +karman_re50,ppo,17,6.8,force,lower_fy,-0.002703691367059946 +karman_re50,ppo,18,7.2,force,front_fx,-0.0005958564579486847 +karman_re50,ppo,18,7.2,force,front_fy,-0.0031344399321824312 +karman_re50,ppo,18,7.2,force,upper_fx,0.0037548495456576347 +karman_re50,ppo,18,7.2,force,upper_fy,0.004623104818165302 +karman_re50,ppo,18,7.2,force,lower_fx,-0.0029629752971231937 +karman_re50,ppo,18,7.2,force,lower_fy,-0.0023362489882856607 +karman_re50,ppo,19,7.6,force,front_fx,-0.0008497951203025877 +karman_re50,ppo,19,7.6,force,front_fy,-0.0026705521158874035 +karman_re50,ppo,19,7.6,force,upper_fx,0.003512751776725054 +karman_re50,ppo,19,7.6,force,upper_fy,0.004006705712527037 +karman_re50,ppo,19,7.6,force,lower_fx,-0.002499670023098588 +karman_re50,ppo,19,7.6,force,lower_fy,-0.0018785815918818116 +karman_re50,ppo,20,8.0,force,front_fx,-0.0007286870968528092 +karman_re50,ppo,20,8.0,force,front_fy,-0.0020615230314433575 +karman_re50,ppo,20,8.0,force,upper_fx,0.0030659472104161978 +karman_re50,ppo,20,8.0,force,upper_fy,0.003490533446893096 +karman_re50,ppo,20,8.0,force,lower_fx,-0.0022015077993273735 +karman_re50,ppo,20,8.0,force,lower_fy,-0.0014297077432274818 +karman_re50,ppo,21,8.4,force,front_fx,-0.00019036086450796574 +karman_re50,ppo,21,8.4,force,front_fy,-0.001393541693687439 +karman_re50,ppo,21,8.4,force,upper_fx,0.0025253817439079285 +karman_re50,ppo,21,8.4,force,upper_fy,0.0033670207485556602 +karman_re50,ppo,21,8.4,force,lower_fx,-0.0022352924570441246 +karman_re50,ppo,21,8.4,force,lower_fy,-0.0012132686097174883 +karman_re50,ppo,22,8.8,force,front_fx,0.000641950755380094 +karman_re50,ppo,22,8.8,force,front_fy,-0.000703965371940285 +karman_re50,ppo,22,8.8,force,upper_fx,0.0020200558938086033 +karman_re50,ppo,22,8.8,force,upper_fy,0.0037059893365949392 +karman_re50,ppo,22,8.8,force,lower_fx,-0.002547066193073988 +karman_re50,ppo,22,8.8,force,lower_fy,-0.0014002509415149689 +karman_re50,ppo,23,9.2,force,front_fx,0.0015363863203674555 +karman_re50,ppo,23,9.2,force,front_fy,2.5400902813998982e-05 +karman_re50,ppo,23,9.2,force,upper_fx,0.001620958442799747 +karman_re50,ppo,23,9.2,force,upper_fy,0.0041656047105789185 +karman_re50,ppo,23,9.2,force,lower_fx,-0.0028681044932454824 +karman_re50,ppo,23,9.2,force,lower_fy,-0.0019139859359711409 +karman_re50,ppo,24,9.6,force,front_fx,0.0021495092660188675 +karman_re50,ppo,24,9.6,force,front_fy,0.0007973619503900409 +karman_re50,ppo,24,9.6,force,upper_fx,0.001339545357041061 +karman_re50,ppo,24,9.6,force,upper_fy,0.004331144504249096 +karman_re50,ppo,24,9.6,force,lower_fx,-0.0029130089096724987 +karman_re50,ppo,24,9.6,force,lower_fy,-0.0024821970146149397 +karman_re50,ppo,25,10.0,force,front_fx,0.0022519154008477926 +karman_re50,ppo,25,10.0,force,front_fy,0.0015520912129431963 +karman_re50,ppo,25,10.0,force,upper_fx,0.0012568077072501183 +karman_re50,ppo,25,10.0,force,upper_fy,0.00421141367405653 +karman_re50,ppo,25,10.0,force,lower_fx,-0.00260892603546381 +karman_re50,ppo,25,10.0,force,lower_fy,-0.0028016886208206415 +karman_re50,ppo,26,10.4,force,front_fx,0.0019403339829295874 +karman_re50,ppo,26,10.4,force,front_fy,0.0021652481518685818 +karman_re50,ppo,26,10.4,force,upper_fx,0.0013786186464130878 +karman_re50,ppo,26,10.4,force,upper_fy,0.004114372655749321 +karman_re50,ppo,26,10.4,force,lower_fx,-0.0022693597711622715 +karman_re50,ppo,26,10.4,force,lower_fy,-0.00278031756170094 +karman_re50,ppo,27,10.8,force,front_fx,0.0015659966738894582 +karman_re50,ppo,27,10.8,force,front_fy,0.002451758598908782 +karman_re50,ppo,27,10.8,force,upper_fx,0.001591699430719018 +karman_re50,ppo,27,10.8,force,upper_fy,0.004103986546397209 +karman_re50,ppo,27,10.8,force,lower_fx,-0.0021843076683580875 +karman_re50,ppo,27,10.8,force,lower_fy,-0.0026416636537760496 +karman_re50,ppo,28,11.2,force,front_fx,0.001206768094561994 +karman_re50,ppo,28,11.2,force,front_fy,0.002433729125186801 +karman_re50,ppo,28,11.2,force,upper_fx,0.001782944891601801 +karman_re50,ppo,28,11.2,force,upper_fy,0.004155588336288929 +karman_re50,ppo,28,11.2,force,lower_fx,-0.0023898601066321135 +karman_re50,ppo,28,11.2,force,lower_fy,-0.0025539982598274946 +karman_re50,ppo,29,11.6,force,front_fx,0.0009115191060118377 +karman_re50,ppo,29,11.6,force,front_fy,0.0022313909139484167 +karman_re50,ppo,29,11.6,force,upper_fx,0.001914587919600308 +karman_re50,ppo,29,11.6,force,upper_fy,0.004232760518789291 +karman_re50,ppo,29,11.6,force,lower_fx,-0.0026821799110621214 +karman_re50,ppo,29,11.6,force,lower_fy,-0.002553942147642374 +karman_re50,ppo,30,12.0,force,front_fx,0.0007069794228300452 +karman_re50,ppo,30,12.0,force,front_fy,0.0018926258198916912 +karman_re50,ppo,30,12.0,force,upper_fx,0.0019873303826898336 +karman_re50,ppo,30,12.0,force,upper_fy,0.004299444146454334 +karman_re50,ppo,30,12.0,force,lower_fx,-0.0029399574268609285 +karman_re50,ppo,30,12.0,force,lower_fy,-0.0025933748111128807 +karman_re50,ppo,31,12.4,force,front_fx,0.000640148064121604 +karman_re50,ppo,31,12.4,force,front_fy,0.0013863247586414218 +karman_re50,ppo,31,12.4,force,upper_fx,0.002034048782661557 +karman_re50,ppo,31,12.4,force,upper_fy,0.004346184898167849 +karman_re50,ppo,31,12.4,force,lower_fx,-0.0031355309765785933 +karman_re50,ppo,31,12.4,force,lower_fy,-0.002674673218280077 +karman_re50,ppo,32,12.8,force,front_fx,0.000768227328080684 +karman_re50,ppo,32,12.8,force,front_fy,0.000683946069329977 +karman_re50,ppo,32,12.8,force,upper_fx,0.0019977425690740347 +karman_re50,ppo,32,12.8,force,upper_fy,0.004338905215263367 +karman_re50,ppo,32,12.8,force,lower_fx,-0.003131551668047905 +karman_re50,ppo,32,12.8,force,lower_fy,-0.0028950294945389032 +karman_re50,ppo,33,13.2,force,front_fx,0.0008753256406635046 +karman_re50,ppo,33,13.2,force,front_fy,-0.00011166500189574435 +karman_re50,ppo,33,13.2,force,upper_fx,0.0018944640178233385 +karman_re50,ppo,33,13.2,force,upper_fy,0.004401298705488443 +karman_re50,ppo,33,13.2,force,lower_fx,-0.002856277860701084 +karman_re50,ppo,33,13.2,force,lower_fy,-0.003302224911749363 +karman_re50,ppo,34,13.6,force,front_fx,0.0008271711994893849 +karman_re50,ppo,34,13.6,force,front_fy,-0.0009371946798637509 +karman_re50,ppo,34,13.6,force,upper_fx,0.0017606732435524464 +karman_re50,ppo,34,13.6,force,upper_fy,0.004557931330054998 +karman_re50,ppo,34,13.6,force,lower_fx,-0.0023239448200911283 +karman_re50,ppo,34,13.6,force,lower_fy,-0.003801578190177679 +karman_re50,ppo,35,14.0,force,front_fx,0.0005991653888486326 +karman_re50,ppo,35,14.0,force,front_fy,-0.0016789189539849758 +karman_re50,ppo,35,14.0,force,upper_fx,0.0016109159914776683 +karman_re50,ppo,35,14.0,force,upper_fy,0.004748597741127014 +karman_re50,ppo,35,14.0,force,lower_fx,-0.0017118023242801428 +karman_re50,ppo,35,14.0,force,lower_fy,-0.004144826903939247 +karman_re50,ppo,36,14.4,force,front_fx,0.00030520057771354914 +karman_re50,ppo,36,14.4,force,front_fy,-0.002197990659624338 +karman_re50,ppo,36,14.4,force,upper_fx,0.0013986207777634263 +karman_re50,ppo,36,14.4,force,upper_fy,0.004864139948040247 +karman_re50,ppo,36,14.4,force,lower_fx,-0.0012209025444462895 +karman_re50,ppo,36,14.4,force,lower_fy,-0.0041543710976839066 +karman_re50,ppo,37,14.8,force,front_fx,6.31149232503958e-05 +karman_re50,ppo,37,14.8,force,front_fy,-0.0023797214962542057 +karman_re50,ppo,37,14.8,force,upper_fx,0.0010979032376781106 +karman_re50,ppo,37,14.8,force,upper_fy,0.00480639236047864 +karman_re50,ppo,37,14.8,force,lower_fx,-0.0008947493624873459 +karman_re50,ppo,37,14.8,force,lower_fy,-0.003866810817271471 +karman_re50,ppo,38,15.2,force,front_fx,-0.00012167487875558436 +karman_re50,ppo,38,15.2,force,front_fy,-0.002256595529615879 +karman_re50,ppo,38,15.2,force,upper_fx,0.0007312821107916534 +karman_re50,ppo,38,15.2,force,upper_fy,0.004504466895014048 +karman_re50,ppo,38,15.2,force,lower_fx,-0.0006212862790562212 +karman_re50,ppo,38,15.2,force,lower_fy,-0.00347449560649693 +karman_re50,ppo,39,15.6,force,front_fx,-0.0003051740350201726 +karman_re50,ppo,39,15.6,force,front_fy,-0.0019283569417893887 +karman_re50,ppo,39,15.6,force,upper_fx,0.0003186599933542311 +karman_re50,ppo,39,15.6,force,upper_fy,0.003914356231689453 +karman_re50,ppo,39,15.6,force,lower_fx,-0.0002547943440731615 +karman_re50,ppo,39,15.6,force,lower_fy,-0.0031110059935599566 +karman_re50,ppo,40,16.0,force,front_fx,-0.0004708129563368857 +karman_re50,ppo,40,16.0,force,front_fy,-0.0014776604948565364 +karman_re50,ppo,40,16.0,force,upper_fx,-0.00013929374108556658 +karman_re50,ppo,40,16.0,force,upper_fy,0.0031431594397872686 +karman_re50,ppo,40,16.0,force,lower_fx,0.00023473400506190956 +karman_re50,ppo,40,16.0,force,lower_fy,-0.0027894878294318914 +karman_re50,ppo,41,16.4,force,front_fx,-0.0005855771596543491 +karman_re50,ppo,41,16.4,force,front_fy,-0.0010039812186732888 +karman_re50,ppo,41,16.4,force,upper_fx,-0.0006403342704288661 +karman_re50,ppo,41,16.4,force,upper_fy,0.002441032323986292 +karman_re50,ppo,41,16.4,force,lower_fx,0.0006900802254676819 +karman_re50,ppo,41,16.4,force,lower_fy,-0.0024663605727255344 +karman_re50,ppo,42,16.8,force,front_fx,-0.000525275943800807 +karman_re50,ppo,42,16.8,force,front_fy,-0.0005923396092839539 +karman_re50,ppo,42,16.8,force,upper_fx,-0.001020361203700304 +karman_re50,ppo,42,16.8,force,upper_fy,0.002268341602757573 +karman_re50,ppo,42,16.8,force,lower_fx,0.0008858207729645073 +karman_re50,ppo,42,16.8,force,lower_fy,-0.0022035371512174606 +karman_re50,ppo,43,17.2,force,front_fx,-0.0003137641469947994 +karman_re50,ppo,43,17.2,force,front_fy,-0.00025119580095633864 +karman_re50,ppo,43,17.2,force,upper_fx,-0.0010339405853301287 +karman_re50,ppo,43,17.2,force,upper_fy,0.002885261084884405 +karman_re50,ppo,43,17.2,force,lower_fx,0.0006915820995345712 +karman_re50,ppo,43,17.2,force,lower_fy,-0.002144664293155074 +karman_re50,ppo,44,17.6,force,front_fx,-1.8814376744558103e-05 +karman_re50,ppo,44,17.6,force,front_fy,0.00015227148833218962 +karman_re50,ppo,44,17.6,force,upper_fx,-0.0005191910313442349 +karman_re50,ppo,44,17.6,force,upper_fy,0.003971749916672707 +karman_re50,ppo,44,17.6,force,lower_fx,0.00023682165192440152 +karman_re50,ppo,44,17.6,force,lower_fy,-0.002323465421795845 +karman_re50,ppo,45,18.0,force,front_fx,0.0003994758299086243 +karman_re50,ppo,45,18.0,force,front_fy,0.0007080648792907596 +karman_re50,ppo,45,18.0,force,upper_fx,0.000243412796407938 +karman_re50,ppo,45,18.0,force,upper_fy,0.004761159885674715 +karman_re50,ppo,45,18.0,force,lower_fx,-0.00034408026840537786 +karman_re50,ppo,45,18.0,force,lower_fy,-0.0026967411395162344 +karman_re50,ppo,46,18.4,force,front_fx,0.000990863423794508 +karman_re50,ppo,46,18.4,force,front_fy,0.0013346661580726504 +karman_re50,ppo,46,18.4,force,upper_fx,0.0006727683357894421 +karman_re50,ppo,46,18.4,force,upper_fy,0.004868155345320702 +karman_re50,ppo,46,18.4,force,lower_fx,-0.0009828126057982445 +karman_re50,ppo,46,18.4,force,lower_fy,-0.0032585200387984514 +karman_re50,ppo,47,18.8,force,front_fx,0.0015442365547642112 +karman_re50,ppo,47,18.8,force,front_fy,0.0017809595447033644 +karman_re50,ppo,47,18.8,force,upper_fx,0.0006861072615720332 +karman_re50,ppo,47,18.8,force,upper_fy,0.004470607731491327 +karman_re50,ppo,47,18.8,force,lower_fx,-0.0014399137580767274 +karman_re50,ppo,47,18.8,force,lower_fy,-0.0038321223109960556 +karman_re50,ppo,48,19.2,force,front_fx,0.0017071636393666267 +karman_re50,ppo,48,19.2,force,front_fy,0.002063607331365347 +karman_re50,ppo,48,19.2,force,upper_fx,0.0006991736008785665 +karman_re50,ppo,48,19.2,force,upper_fy,0.0040727113373577595 +karman_re50,ppo,48,19.2,force,lower_fx,-0.00151328113861382 +karman_re50,ppo,48,19.2,force,lower_fy,-0.0040600537322461605 +karman_re50,ppo,49,19.6,force,front_fx,0.0014410059666261077 +karman_re50,ppo,49,19.6,force,front_fy,0.0021566858049482107 +karman_re50,ppo,49,19.6,force,upper_fx,0.0009130227845162153 +karman_re50,ppo,49,19.6,force,upper_fy,0.003968610428273678 +karman_re50,ppo,49,19.6,force,lower_fx,-0.001470389193855226 +karman_re50,ppo,49,19.6,force,lower_fy,-0.0038226735778152943 +karman_re50,ppo,50,20.0,force,front_fx,0.0010048046242445707 +karman_re50,ppo,50,20.0,force,front_fy,0.0020230021327733994 +karman_re50,ppo,50,20.0,force,upper_fx,0.001237724907696247 +karman_re50,ppo,50,20.0,force,upper_fy,0.004059142898768187 +karman_re50,ppo,50,20.0,force,lower_fx,-0.0016158027574419975 +karman_re50,ppo,50,20.0,force,lower_fy,-0.003438581246882677 +karman_re50,ppo,51,20.4,force,front_fx,0.0005860824603587389 +karman_re50,ppo,51,20.4,force,front_fy,0.00180378882214427 +karman_re50,ppo,51,20.4,force,upper_fx,0.0015284019755199552 +karman_re50,ppo,51,20.4,force,upper_fy,0.004096804652363062 +karman_re50,ppo,51,20.4,force,lower_fx,-0.0019132435554638505 +karman_re50,ppo,51,20.4,force,lower_fy,-0.0031500456389039755 +karman_re50,ppo,52,20.8,force,front_fx,0.00028464270872063935 +karman_re50,ppo,52,20.8,force,front_fy,0.0015644264640286565 +karman_re50,ppo,52,20.8,force,upper_fx,0.00170778704341501 +karman_re50,ppo,52,20.8,force,upper_fy,0.0040023126639425755 +karman_re50,ppo,52,20.8,force,lower_fx,-0.0021931903902441263 +karman_re50,ppo,52,20.8,force,lower_fy,-0.0030315362382680178 +karman_re50,ppo,53,21.2,force,front_fx,0.00013191283505875617 +karman_re50,ppo,53,21.2,force,front_fy,0.0012239370262250304 +karman_re50,ppo,53,21.2,force,upper_fx,0.001771830371581018 +karman_re50,ppo,53,21.2,force,upper_fy,0.0038616887759417295 +karman_re50,ppo,53,21.2,force,lower_fx,-0.0023490421008318663 +karman_re50,ppo,53,21.2,force,lower_fy,-0.0030638277530670166 +karman_re50,ppo,54,21.6,force,front_fx,0.0001467683759983629 +karman_re50,ppo,54,21.6,force,front_fy,0.0006936827558092773 +karman_re50,ppo,54,21.6,force,upper_fx,0.001735340221785009 +karman_re50,ppo,54,21.6,force,upper_fy,0.0037368375342339277 +karman_re50,ppo,54,21.6,force,lower_fx,-0.002276522573083639 +karman_re50,ppo,54,21.6,force,lower_fy,-0.0032500617671757936 +karman_re50,ppo,55,22.0,force,front_fx,0.00026965283905155957 +karman_re50,ppo,55,22.0,force,front_fy,1.734850047796499e-05 +karman_re50,ppo,55,22.0,force,upper_fx,0.0015699933283030987 +karman_re50,ppo,55,22.0,force,upper_fy,0.003672246588394046 +karman_re50,ppo,55,22.0,force,lower_fx,-0.0019428443629294634 +karman_re50,ppo,55,22.0,force,lower_fy,-0.0035459098871797323 +karman_re50,ppo,56,22.4,force,front_fx,0.0003434555255807936 +karman_re50,ppo,56,22.4,force,front_fy,-0.0007401531329378486 +karman_re50,ppo,56,22.4,force,upper_fx,0.001348489779047668 +karman_re50,ppo,56,22.4,force,upper_fy,0.003745350521057844 +karman_re50,ppo,56,22.4,force,lower_fx,-0.0014314219588413835 +karman_re50,ppo,56,22.4,force,lower_fy,-0.0038509706500917673 +karman_re50,ppo,57,22.8,force,front_fx,0.00032942023244686425 +karman_re50,ppo,57,22.8,force,front_fy,-0.0014361031353473663 +karman_re50,ppo,57,22.8,force,upper_fx,0.0010980555089190602 +karman_re50,ppo,57,22.8,force,upper_fy,0.003949621692299843 +karman_re50,ppo,57,22.8,force,lower_fx,-0.0009666327969171107 +karman_re50,ppo,57,22.8,force,lower_fy,-0.003988679498434067 +karman_re50,ppo,58,23.2,force,front_fx,0.00028129611746408045 +karman_re50,ppo,58,23.2,force,front_fy,-0.0019224535208195448 +karman_re50,ppo,58,23.2,force,upper_fx,0.0008182889432646334 +karman_re50,ppo,58,23.2,force,upper_fy,0.004173093941062689 +karman_re50,ppo,58,23.2,force,lower_fx,-0.0007279364508576691 +karman_re50,ppo,58,23.2,force,lower_fy,-0.0039034432265907526 +karman_re50,ppo,59,23.6,force,front_fx,0.00020368063997011632 +karman_re50,ppo,59,23.6,force,front_fy,-0.002116541611030698 +karman_re50,ppo,59,23.6,force,upper_fx,0.0005390918231569231 +karman_re50,ppo,59,23.6,force,upper_fy,0.004293362610042095 +karman_re50,ppo,59,23.6,force,lower_fx,-0.000664255756419152 +karman_re50,ppo,59,23.6,force,lower_fy,-0.003674556268379092 +karman_re50,ppo,60,24.0,force,front_fx,8.016482024686411e-05 +karman_re50,ppo,60,24.0,force,front_fy,-0.002070849761366844 +karman_re50,ppo,60,24.0,force,upper_fx,0.00029861778602935374 +karman_re50,ppo,60,24.0,force,upper_fy,0.004216053988784552 +karman_re50,ppo,60,24.0,force,lower_fx,-0.00060075189685449 +karman_re50,ppo,60,24.0,force,lower_fy,-0.0033851368352770805 +karman_re50,ppo,61,24.4,force,front_fx,-0.00010157797805732116 +karman_re50,ppo,61,24.4,force,front_fy,-0.0018650130368769169 +karman_re50,ppo,61,24.4,force,upper_fx,0.00011171619553351775 +karman_re50,ppo,61,24.4,force,upper_fy,0.003898769849911332 +karman_re50,ppo,61,24.4,force,lower_fx,-0.00042765415855683386 +karman_re50,ppo,61,24.4,force,lower_fy,-0.00309381284750998 +karman_re50,ppo,62,24.8,force,front_fx,-0.00032903411192819476 +karman_re50,ppo,62,24.8,force,front_fy,-0.0015551792457699776 +karman_re50,ppo,62,24.8,force,upper_fx,-5.298442192724906e-05 +karman_re50,ppo,62,24.8,force,upper_fy,0.0033808609005063772 +karman_re50,ppo,62,24.8,force,lower_fx,-0.00011290921975160018 +karman_re50,ppo,62,24.8,force,lower_fy,-0.0028381573501974344 +karman_re50,ppo,63,25.2,force,front_fx,-0.0005478734965436161 +karman_re50,ppo,63,25.2,force,front_fy,-0.0011948106111958623 +karman_re50,ppo,63,25.2,force,upper_fx,-0.00024805680732242763 +karman_re50,ppo,63,25.2,force,upper_fy,0.0028207399882376194 +karman_re50,ppo,63,25.2,force,lower_fx,0.00026662484742701054 +karman_re50,ppo,63,25.2,force,lower_fy,-0.0025849295780062675 +karman_re50,ppo,64,25.6,force,front_fx,-0.0006337734521366656 +karman_re50,ppo,64,25.6,force,front_fy,-0.0008381748921237886 +karman_re50,ppo,64,25.6,force,upper_fx,-0.0004261643043719232 +karman_re50,ppo,64,25.6,force,upper_fy,0.0025858748704195023 +karman_re50,ppo,64,25.6,force,lower_fx,0.0004828103701584041 +karman_re50,ppo,64,25.6,force,lower_fy,-0.002331930911168456 +karman_re50,ppo,65,26.0,force,front_fx,-0.0005146171897649765 +karman_re50,ppo,65,26.0,force,front_fy,-0.0005114955711178482 +karman_re50,ppo,65,26.0,force,upper_fx,-0.0003725803690031171 +karman_re50,ppo,65,26.0,force,upper_fy,0.0029697748832404613 +karman_re50,ppo,65,26.0,force,lower_fx,0.0003568608080968261 +karman_re50,ppo,65,26.0,force,lower_fy,-0.002197831869125366 +karman_re50,ppo,66,26.4,force,front_fx,-0.00019410015374887735 +karman_re50,ppo,66,26.4,force,front_fy,-0.00014940844266675413 +karman_re50,ppo,66,26.4,force,upper_fx,7.335704867728055e-05 +karman_re50,ppo,66,26.4,force,upper_fy,0.003836418967694044 +karman_re50,ppo,66,26.4,force,lower_fx,-0.0001109310396714136 +karman_re50,ppo,66,26.4,force,lower_fy,-0.0022727050818502903 +karman_re50,ppo,67,26.8,force,front_fx,0.00040006302879191935 +karman_re50,ppo,67,26.8,force,front_fy,0.00033193736453540623 +karman_re50,ppo,67,26.8,force,upper_fx,0.0007240156992338598 +karman_re50,ppo,67,26.8,force,upper_fy,0.00462898937985301 +karman_re50,ppo,67,26.8,force,lower_fx,-0.0008119528065435588 +karman_re50,ppo,67,26.8,force,lower_fy,-0.0026085632853209972 +karman_re50,ppo,68,27.2,force,front_fx,0.0012814007932320237 +karman_re50,ppo,68,27.2,force,front_fy,0.0009269920992664993 +karman_re50,ppo,68,27.2,force,upper_fx,0.0010799425654113293 +karman_re50,ppo,68,27.2,force,upper_fy,0.004813787993043661 +karman_re50,ppo,68,27.2,force,lower_fx,-0.0015658995835110545 +karman_re50,ppo,68,27.2,force,lower_fy,-0.0031857574358582497 +karman_re50,ppo,69,27.6,force,front_fx,0.002082124352455139 +karman_re50,ppo,69,27.6,force,front_fy,0.0014581999275833368 +karman_re50,ppo,69,27.6,force,upper_fx,0.001019025919958949 +karman_re50,ppo,69,27.6,force,upper_fy,0.004358792677521706 +karman_re50,ppo,69,27.6,force,lower_fx,-0.0020183343440294266 +karman_re50,ppo,69,27.6,force,lower_fy,-0.003796542529016733 +karman_re50,ppo,70,28.0,force,front_fx,0.002292376011610031 +karman_re50,ppo,70,28.0,force,front_fy,0.001891218707896769 +karman_re50,ppo,70,28.0,force,upper_fx,0.0009990218095481396 +karman_re50,ppo,70,28.0,force,upper_fy,0.003842894919216633 +karman_re50,ppo,70,28.0,force,lower_fx,-0.0018913933308795094 +karman_re50,ppo,70,28.0,force,lower_fy,-0.0040176501497626305 +karman_re50,ppo,71,28.4,force,front_fx,0.0019917322788387537 +karman_re50,ppo,71,28.4,force,front_fy,0.0021830580662935972 +karman_re50,ppo,71,28.4,force,upper_fx,0.0011778890620917082 +karman_re50,ppo,71,28.4,force,upper_fy,0.003719544969499111 +karman_re50,ppo,71,28.4,force,lower_fx,-0.0016470493283122778 +karman_re50,ppo,71,28.4,force,lower_fy,-0.0037100291810929775 +karman_re50,ppo,72,28.8,force,front_fx,0.001502352301031351 +karman_re50,ppo,72,28.8,force,front_fy,0.0021752917673438787 +karman_re50,ppo,72,28.8,force,upper_fx,0.0014766056556254625 +karman_re50,ppo,72,28.8,force,upper_fy,0.00385511526837945 +karman_re50,ppo,72,28.8,force,lower_fx,-0.0017366217216476798 +karman_re50,ppo,72,28.8,force,lower_fy,-0.003281122073531151 +karman_re50,ppo,73,29.2,force,front_fx,0.00107489968650043 +karman_re50,ppo,73,29.2,force,front_fy,0.001984229777008295 +karman_re50,ppo,73,29.2,force,upper_fx,0.001766288303770125 +karman_re50,ppo,73,29.2,force,upper_fy,0.003966396674513817 +karman_re50,ppo,73,29.2,force,lower_fx,-0.00215896125882864 +karman_re50,ppo,73,29.2,force,lower_fy,-0.002930567367002368 +karman_re50,ppo,74,29.6,force,front_fx,0.0007242009160108864 +karman_re50,ppo,74,29.6,force,front_fy,0.0016840300522744656 +karman_re50,ppo,74,29.6,force,upper_fx,0.0020430579315871 +karman_re50,ppo,74,29.6,force,upper_fy,0.0040440126322209835 +karman_re50,ppo,74,29.6,force,lower_fx,-0.0025281256530433893 +karman_re50,ppo,74,29.6,force,lower_fy,-0.002773667685687542 +karman_re50,ppo,75,30.0,force,front_fx,0.0005316800088621676 +karman_re50,ppo,75,30.0,force,front_fy,0.0013049024855718017 +karman_re50,ppo,75,30.0,force,upper_fx,0.002278228523209691 +karman_re50,ppo,75,30.0,force,upper_fy,0.00406969478353858 +karman_re50,ppo,75,30.0,force,lower_fx,-0.0029315995052456856 +karman_re50,ppo,75,30.0,force,lower_fy,-0.0025892662815749645 +karman_re50,ppo,76,30.4,force,front_fx,0.0005386348348110914 +karman_re50,ppo,76,30.4,force,front_fy,0.0007737802807241678 +karman_re50,ppo,76,30.4,force,upper_fx,0.0024371654726564884 +karman_re50,ppo,76,30.4,force,upper_fy,0.004041814245283604 +karman_re50,ppo,76,30.4,force,lower_fx,-0.0032316402066498995 +karman_re50,ppo,76,30.4,force,lower_fy,-0.002518627094104886 +karman_re50,ppo,77,30.8,force,front_fx,0.0006976534496061504 +karman_re50,ppo,77,30.8,force,front_fy,0.00014578003901988268 +karman_re50,ppo,77,30.8,force,upper_fx,0.0024418754037469625 +karman_re50,ppo,77,30.8,force,upper_fy,0.004060138016939163 +karman_re50,ppo,77,30.8,force,lower_fx,-0.003311005188152194 +karman_re50,ppo,77,30.8,force,lower_fy,-0.0026975602377206087 +karman_re50,ppo,78,31.2,force,front_fx,0.0008237407309934497 +karman_re50,ppo,78,31.2,force,front_fy,-0.0005669853999279439 +karman_re50,ppo,78,31.2,force,upper_fx,0.0023754676803946495 +karman_re50,ppo,78,31.2,force,upper_fy,0.00425918260589242 +karman_re50,ppo,78,31.2,force,lower_fx,-0.003070153295993805 +karman_re50,ppo,78,31.2,force,lower_fy,-0.003120278939604759 +karman_re50,ppo,79,31.6,force,front_fx,0.0007835766882635653 +karman_re50,ppo,79,31.6,force,front_fy,-0.0013152612373232841 +karman_re50,ppo,79,31.6,force,upper_fx,0.0023312801495194435 +karman_re50,ppo,79,31.6,force,upper_fy,0.004603042732924223 +karman_re50,ppo,79,31.6,force,lower_fx,-0.0026479638181626797 +karman_re50,ppo,79,31.6,force,lower_fy,-0.0035312045365571976 +karman_re50,ppo,80,32.0,force,front_fx,0.0005695692962035537 +karman_re50,ppo,80,32.0,force,front_fy,-0.00196339120157063 +karman_re50,ppo,80,32.0,force,upper_fx,0.0022998321801424026 +karman_re50,ppo,80,32.0,force,upper_fy,0.00492568826302886 +karman_re50,ppo,80,32.0,force,lower_fx,-0.0022588411811739206 +karman_re50,ppo,80,32.0,force,lower_fy,-0.0037305084988474846 +karman_re50,ppo,81,32.4,force,front_fx,0.0002579129359219223 +karman_re50,ppo,81,32.4,force,front_fy,-0.002361300168558955 +karman_re50,ppo,81,32.4,force,upper_fx,0.002228188095614314 +karman_re50,ppo,81,32.4,force,upper_fy,0.005063439719378948 +karman_re50,ppo,81,32.4,force,lower_fx,-0.0019631306640803814 +karman_re50,ppo,81,32.4,force,lower_fy,-0.00369418878108263 +karman_re50,ppo,82,32.8,force,front_fx,-6.878290878375992e-05 +karman_re50,ppo,82,32.8,force,front_fy,-0.002450611675158143 +karman_re50,ppo,82,32.8,force,upper_fx,0.0020607225596904755 +karman_re50,ppo,82,32.8,force,upper_fy,0.004915622062981129 +karman_re50,ppo,82,32.8,force,lower_fx,-0.0016800230368971825 +karman_re50,ppo,82,32.8,force,lower_fy,-0.003449787851423025 +karman_re50,ppo,83,33.2,force,front_fx,-0.000416339113144204 +karman_re50,ppo,83,33.2,force,front_fy,-0.0022947215475142 +karman_re50,ppo,83,33.2,force,upper_fx,0.0018136213766410947 +karman_re50,ppo,83,33.2,force,upper_fy,0.0044263508170843124 +karman_re50,ppo,83,33.2,force,lower_fx,-0.0012944871559739113 +karman_re50,ppo,83,33.2,force,lower_fy,-0.0030635439325124025 +karman_re50,ppo,84,33.6,force,front_fx,-0.0007349292864091694 +karman_re50,ppo,84,33.6,force,front_fy,-0.0019687742460519075 +karman_re50,ppo,84,33.6,force,upper_fx,0.0014756094897165895 +karman_re50,ppo,84,33.6,force,upper_fy,0.003621412441134453 +karman_re50,ppo,84,33.6,force,lower_fx,-0.0007638768875040114 +karman_re50,ppo,84,33.6,force,lower_fy,-0.0026144564617425203 +karman_re50,ppo,85,34.0,force,front_fx,-0.0009915600530803204 +karman_re50,ppo,85,34.0,force,front_fy,-0.0015553559642285109 +karman_re50,ppo,85,34.0,force,upper_fx,0.0010061829816550016 +karman_re50,ppo,85,34.0,force,upper_fy,0.002689673798158765 +karman_re50,ppo,85,34.0,force,lower_fx,-0.00017012677562888712 +karman_re50,ppo,85,34.0,force,lower_fy,-0.0021562695037573576 +karman_re50,ppo,86,34.4,force,front_fx,-0.0010637581581249833 +karman_re50,ppo,86,34.4,force,front_fy,-0.0011391908628866076 +karman_re50,ppo,86,34.4,force,upper_fx,0.0004665883898269385 +karman_re50,ppo,86,34.4,force,upper_fy,0.0020556116942316294 +karman_re50,ppo,86,34.4,force,lower_fx,0.0002533689548727125 +karman_re50,ppo,86,34.4,force,lower_fy,-0.0017286045476794243 +karman_re50,ppo,87,34.8,force,front_fx,-0.0008838648209348321 +karman_re50,ppo,87,34.8,force,front_fy,-0.0007952051819302142 +karman_re50,ppo,87,34.8,force,upper_fx,0.00010559013753663749 +karman_re50,ppo,87,34.8,force,upper_fy,0.0022084014490246773 +karman_re50,ppo,87,34.8,force,lower_fx,0.00025317122344858944 +karman_re50,ppo,87,34.8,force,lower_fy,-0.0014826958067715168 +karman_re50,ppo,88,35.2,force,front_fx,-0.00045251913252286613 +karman_re50,ppo,88,35.2,force,front_fy,-0.0004966447595506907 +karman_re50,ppo,88,35.2,force,upper_fx,0.0002208929363405332 +karman_re50,ppo,88,35.2,force,upper_fy,0.003213230287656188 +karman_re50,ppo,88,35.2,force,lower_fx,-0.0002395470510236919 +karman_re50,ppo,88,35.2,force,lower_fy,-0.0015435990644618869 +karman_re50,ppo,89,35.6,force,front_fx,0.00023578434775117785 +karman_re50,ppo,89,35.6,force,front_fy,-8.085562876658514e-05 +karman_re50,ppo,89,35.6,force,upper_fx,0.0007994289044290781 +karman_re50,ppo,89,35.6,force,upper_fy,0.00444061029702425 +karman_re50,ppo,89,35.6,force,lower_fx,-0.001044618315063417 +karman_re50,ppo,89,35.6,force,lower_fy,-0.0018992385594174266 +karman_re50,ppo,90,36.0,force,front_fx,0.0012570498511195183 +karman_re50,ppo,90,36.0,force,front_fy,0.0005401296075433493 +karman_re50,ppo,90,36.0,force,upper_fx,0.0012989884708076715 +karman_re50,ppo,90,36.0,force,upper_fy,0.0049982876516878605 +karman_re50,ppo,90,36.0,force,lower_fx,-0.0019276548409834504 +karman_re50,ppo,90,36.0,force,lower_fy,-0.0024990367237478495 +karman_re50,ppo,91,36.4,force,front_fx,0.0023224903270602226 +karman_re50,ppo,91,36.4,force,front_fy,0.0012038773857057095 +karman_re50,ppo,91,36.4,force,upper_fx,0.00132798682898283 +karman_re50,ppo,91,36.4,force,upper_fy,0.004593787714838982 +karman_re50,ppo,91,36.4,force,lower_fx,-0.00250333733856678 +karman_re50,ppo,91,36.4,force,lower_fy,-0.003165209200233221 +karman_re50,ppo,92,36.8,force,front_fx,0.00275037856772542 +karman_re50,ppo,92,36.8,force,front_fy,0.0018169381655752659 +karman_re50,ppo,92,36.8,force,upper_fx,0.001336325891315937 +karman_re50,ppo,92,36.8,force,upper_fy,0.003921534400433302 +karman_re50,ppo,92,36.8,force,lower_fx,-0.0023627018090337515 +karman_re50,ppo,92,36.8,force,lower_fy,-0.0034369537606835365 +karman_re50,ppo,93,37.2,force,front_fx,0.0024960653390735388 +karman_re50,ppo,93,37.2,force,front_fy,0.0022796476259827614 +karman_re50,ppo,93,37.2,force,upper_fx,0.001565989456139505 +karman_re50,ppo,93,37.2,force,upper_fy,0.0037111914716660976 +karman_re50,ppo,93,37.2,force,lower_fx,-0.0019605779089033604 +karman_re50,ppo,93,37.2,force,lower_fy,-0.003072416875511408 +karman_re50,ppo,94,37.6,force,front_fx,0.0019312857184559107 +karman_re50,ppo,94,37.6,force,front_fy,0.0023317381273955107 +karman_re50,ppo,94,37.6,force,upper_fx,0.0019342326559126377 +karman_re50,ppo,94,37.6,force,upper_fy,0.0039049405604600906 +karman_re50,ppo,94,37.6,force,lower_fx,-0.0019614677876234055 +karman_re50,ppo,94,37.6,force,lower_fy,-0.0024988623335957527 +karman_re50,ppo,95,38.0,force,front_fx,0.0013773452956229448 +karman_re50,ppo,95,38.0,force,front_fy,0.0021013114601373672 +karman_re50,ppo,95,38.0,force,upper_fx,0.002268184907734394 +karman_re50,ppo,95,38.0,force,upper_fy,0.00416647968813777 +karman_re50,ppo,95,38.0,force,lower_fx,-0.0024163054767996073 +karman_re50,ppo,95,38.0,force,lower_fy,-0.0020562815479934216 +karman_re50,ppo,96,38.4,force,front_fx,0.0009845492895692587 +karman_re50,ppo,96,38.4,force,front_fy,0.0018173811258748174 +karman_re50,ppo,96,38.4,force,upper_fx,0.0024702614173293114 +karman_re50,ppo,96,38.4,force,upper_fy,0.004299763590097427 +karman_re50,ppo,96,38.4,force,lower_fx,-0.0030214732978492975 +karman_re50,ppo,96,38.4,force,lower_fy,-0.0017622377490624785 +karman_re50,ppo,97,38.8,force,front_fx,0.0007323850877583027 +karman_re50,ppo,97,38.8,force,front_fy,0.001550711807794869 +karman_re50,ppo,97,38.8,force,upper_fx,0.0025639799423515797 +karman_re50,ppo,97,38.8,force,upper_fy,0.004343247506767511 +karman_re50,ppo,97,38.8,force,lower_fx,-0.0035449694842100143 +karman_re50,ppo,97,38.8,force,lower_fy,-0.0016094261081889272 +karman_re50,ppo,98,39.2,force,front_fx,0.0006627015536651015 +karman_re50,ppo,98,39.2,force,front_fy,0.001232092035934329 +karman_re50,ppo,98,39.2,force,upper_fx,0.002544645918533206 +karman_re50,ppo,98,39.2,force,upper_fy,0.0043757883831858635 +karman_re50,ppo,98,39.2,force,lower_fx,-0.0038675705436617136 +karman_re50,ppo,98,39.2,force,lower_fy,-0.0016951295547187328 +karman_re50,ppo,99,39.6,force,front_fx,0.0007673483924008906 +karman_re50,ppo,99,39.6,force,front_fy,0.0007600851240567863 +karman_re50,ppo,99,39.6,force,upper_fx,0.002420156029984355 +karman_re50,ppo,99,39.6,force,upper_fy,0.0044444771483540535 +karman_re50,ppo,99,39.6,force,lower_fx,-0.003882321994751692 +karman_re50,ppo,99,39.6,force,lower_fy,-0.0021525986958295107 +karman_re50,ppo,100,40.0,force,front_fx,0.0008915124926716089 +karman_re50,ppo,100,40.0,force,front_fy,0.00010212244524154812 +karman_re50,ppo,100,40.0,force,upper_fx,0.0022239224053919315 +karman_re50,ppo,100,40.0,force,upper_fy,0.004616952501237392 +karman_re50,ppo,100,40.0,force,lower_fx,-0.003493306692689657 +karman_re50,ppo,100,40.0,force,lower_fy,-0.002914388431236148 +karman_re50,ppo,101,40.4,force,front_fx,0.0008537157555110753 +karman_re50,ppo,101,40.4,force,front_fy,-0.0006978304008953273 +karman_re50,ppo,101,40.4,force,upper_fx,0.002055090619251132 +karman_re50,ppo,101,40.4,force,upper_fy,0.004902591463178396 +karman_re50,ppo,101,40.4,force,lower_fx,-0.0027888850308954716 +karman_re50,ppo,101,40.4,force,lower_fy,-0.0036265822127461433 +karman_re50,ppo,102,40.8,force,front_fx,0.000651446811389178 +karman_re50,ppo,102,40.8,force,front_fy,-0.0014715215656906366 +karman_re50,ppo,102,40.8,force,upper_fx,0.0019175458000972867 +karman_re50,ppo,102,40.8,force,upper_fy,0.00520144822075963 +karman_re50,ppo,102,40.8,force,lower_fx,-0.0020608375780284405 +karman_re50,ppo,102,40.8,force,lower_fy,-0.003953028470277786 +karman_re50,ppo,103,41.2,force,front_fx,0.00035551772452890873 +karman_re50,ppo,103,41.2,force,front_fy,-0.0020099536050111055 +karman_re50,ppo,103,41.2,force,upper_fx,0.0017463521799072623 +karman_re50,ppo,103,41.2,force,upper_fy,0.005317059811204672 +karman_re50,ppo,103,41.2,force,lower_fx,-0.0015222884248942137 +karman_re50,ppo,103,41.2,force,lower_fy,-0.0038785506039857864 +karman_re50,ppo,104,41.6,force,front_fx,2.919284816016443e-05 +karman_re50,ppo,104,41.6,force,front_fy,-0.0021872653160244226 +karman_re50,ppo,104,41.6,force,upper_fx,0.0014808442210778594 +karman_re50,ppo,104,41.6,force,upper_fy,0.005089963786303997 +karman_re50,ppo,104,41.6,force,lower_fx,-0.0010998760117217898 +karman_re50,ppo,104,41.6,force,lower_fy,-0.0035686553455889225 +karman_re50,ppo,105,42.0,force,front_fx,-0.0002776953624561429 +karman_re50,ppo,105,42.0,force,front_fy,-0.0020545064471662045 +karman_re50,ppo,105,42.0,force,upper_fx,0.0010928461560979486 +karman_re50,ppo,105,42.0,force,upper_fy,0.004464274737983942 +karman_re50,ppo,105,42.0,force,lower_fx,-0.0006344981375150383 +karman_re50,ppo,105,42.0,force,lower_fy,-0.0031325113959610462 +karman_re50,ppo,106,42.4,force,front_fx,-0.0005735574522987008 +karman_re50,ppo,106,42.4,force,front_fy,-0.0017331200651824474 +karman_re50,ppo,106,42.4,force,upper_fx,0.0006147324456833303 +karman_re50,ppo,106,42.4,force,upper_fy,0.0035196528770029545 +karman_re50,ppo,106,42.4,force,lower_fx,-6.344790745060891e-05 +karman_re50,ppo,106,42.4,force,lower_fy,-0.0026151929050683975 +karman_re50,ppo,107,42.8,force,front_fx,-0.0007966288831084967 +karman_re50,ppo,107,42.8,force,front_fy,-0.0013385635102167726 +karman_re50,ppo,107,42.8,force,upper_fx,4.4345179048832506e-05 +karman_re50,ppo,107,42.8,force,upper_fy,0.002489464357495308 +karman_re50,ppo,107,42.8,force,lower_fx,0.0005160030559636652 +karman_re50,ppo,107,42.8,force,lower_fy,-0.002095125848427415 +karman_re50,ppo,108,43.2,force,front_fx,-0.00087354687275365 +karman_re50,ppo,108,43.2,force,front_fy,-0.000979714561253786 +karman_re50,ppo,108,43.2,force,upper_fx,-0.0005489926552399993 +karman_re50,ppo,108,43.2,force,upper_fy,0.0018256590701639652 +karman_re50,ppo,108,43.2,force,lower_fx,0.0008983015432022512 +karman_re50,ppo,108,43.2,force,lower_fy,-0.0016863570781424642 +karman_re50,ppo,109,43.6,force,front_fx,-0.000739651673939079 +karman_re50,ppo,109,43.6,force,front_fy,-0.0007169211166910827 +karman_re50,ppo,109,43.6,force,upper_fx,-0.0009636538452468812 +karman_re50,ppo,109,43.6,force,upper_fy,0.002038867911323905 +karman_re50,ppo,109,43.6,force,lower_fx,0.0008536828099749982 +karman_re50,ppo,109,43.6,force,lower_fy,-0.001507198205217719 +karman_re50,ppo,110,44.0,force,front_fx,-0.00043625992839224637 +karman_re50,ppo,110,44.0,force,front_fy,-0.0004826685762964189 +karman_re50,ppo,110,44.0,force,upper_fx,-0.0008112206123769283 +karman_re50,ppo,110,44.0,force,upper_fy,0.003185353009030223 +karman_re50,ppo,110,44.0,force,lower_fx,0.00039233642746694386 +karman_re50,ppo,110,44.0,force,lower_fy,-0.0015984050696715713 +karman_re50,ppo,111,44.4,force,front_fx,-4.3552921852096915e-05 +karman_re50,ppo,111,44.4,force,front_fy,-8.104395965347067e-05 +karman_re50,ppo,111,44.4,force,upper_fx,-1.6591446183156222e-05 +karman_re50,ppo,111,44.4,force,upper_fy,0.004525304771959782 +karman_re50,ppo,111,44.4,force,lower_fx,-0.00027024754672311246 +karman_re50,ppo,111,44.4,force,lower_fy,-0.0018863589502871037 +karman_re50,ppo,112,44.8,force,front_fx,0.0005873366608284414 +karman_re50,ppo,112,44.8,force,front_fy,0.0005323878140188754 +karman_re50,ppo,112,44.8,force,upper_fx,0.0008373020100407302 +karman_re50,ppo,112,44.8,force,upper_fy,0.005129009950906038 +karman_re50,ppo,112,44.8,force,lower_fx,-0.001039119902998209 +karman_re50,ppo,112,44.8,force,lower_fy,-0.002341346349567175 +karman_re50,ppo,113,45.2,force,front_fx,0.0014861866366118193 +karman_re50,ppo,113,45.2,force,front_fy,0.0011698330054059625 +karman_re50,ppo,113,45.2,force,upper_fx,0.0011077034287154675 +karman_re50,ppo,113,45.2,force,upper_fy,0.004931190516799688 +karman_re50,ppo,113,45.2,force,lower_fx,-0.0018166559748351574 +karman_re50,ppo,113,45.2,force,lower_fy,-0.0029818129260092974 +karman_re50,ppo,114,45.6,force,front_fx,0.002182513242587447 +karman_re50,ppo,114,45.6,force,front_fy,0.001677920576184988 +karman_re50,ppo,114,45.6,force,upper_fx,0.0010698366677388549 +karman_re50,ppo,114,45.6,force,upper_fy,0.004389375448226929 +karman_re50,ppo,114,45.6,force,lower_fx,-0.002152262255549431 +karman_re50,ppo,114,45.6,force,lower_fy,-0.0034856670536100864 +karman_re50,ppo,115,46.0,force,front_fx,0.0022390533704310656 +karman_re50,ppo,115,46.0,force,front_fy,0.0020823932718485594 +karman_re50,ppo,115,46.0,force,upper_fx,0.0012192865833640099 +karman_re50,ppo,115,46.0,force,upper_fy,0.004045738372951746 +karman_re50,ppo,115,46.0,force,lower_fx,-0.0019853138364851475 +karman_re50,ppo,115,46.0,force,lower_fy,-0.0033736613113433123 +karman_re50,ppo,116,46.4,force,front_fx,0.0018215483287349343 +karman_re50,ppo,116,46.4,force,front_fy,0.0021864199079573154 +karman_re50,ppo,116,46.4,force,upper_fx,0.0015967697836458683 +karman_re50,ppo,116,46.4,force,upper_fy,0.004118482582271099 +karman_re50,ppo,116,46.4,force,lower_fx,-0.0019380748271942139 +karman_re50,ppo,116,46.4,force,lower_fy,-0.002816774882376194 +karman_re50,ppo,117,46.8,force,front_fx,0.0012812576023861766 +karman_re50,ppo,117,46.8,force,front_fy,0.0019861471373587847 +karman_re50,ppo,117,46.8,force,upper_fx,0.002013210905715823 +karman_re50,ppo,117,46.8,force,upper_fy,0.004327232018113136 +karman_re50,ppo,117,46.8,force,lower_fx,-0.002281348453834653 +karman_re50,ppo,117,46.8,force,lower_fy,-0.00227149436250329 +karman_re50,ppo,118,47.2,force,front_fx,0.0008186761406250298 +karman_re50,ppo,118,47.2,force,front_fy,0.0017625173786655068 +karman_re50,ppo,118,47.2,force,upper_fx,0.00226682610809803 +karman_re50,ppo,118,47.2,force,upper_fy,0.004392553586512804 +karman_re50,ppo,118,47.2,force,lower_fx,-0.0028055477887392044 +karman_re50,ppo,118,47.2,force,lower_fy,-0.0019213740015402436 +karman_re50,ppo,119,47.6,force,front_fx,0.000503476127050817 +karman_re50,ppo,119,47.6,force,front_fy,0.0016533342422917485 +karman_re50,ppo,119,47.6,force,upper_fx,0.0022927194368094206 +karman_re50,ppo,119,47.6,force,upper_fy,0.004314345307648182 +karman_re50,ppo,119,47.6,force,lower_fx,-0.003227464621886611 +karman_re50,ppo,119,47.6,force,lower_fy,-0.0018621520139276981 +karman_re50,ppo,120,48.0,force,front_fx,0.0003370494523551315 +karman_re50,ppo,120,48.0,force,front_fy,0.0015016989782452583 +karman_re50,ppo,120,48.0,force,upper_fx,0.002156984293833375 +karman_re50,ppo,120,48.0,force,upper_fy,0.0042548044584691525 +karman_re50,ppo,120,48.0,force,lower_fx,-0.0034056613221764565 +karman_re50,ppo,120,48.0,force,lower_fy,-0.0021560094319283962 +karman_re50,ppo,121,48.4,force,front_fx,0.00033607680234126747 +karman_re50,ppo,121,48.4,force,front_fy,0.0011210483498871326 +karman_re50,ppo,121,48.4,force,upper_fx,0.0019273050129413605 +karman_re50,ppo,121,48.4,force,upper_fy,0.004247480537742376 +karman_re50,ppo,121,48.4,force,lower_fx,-0.0032350935507565737 +karman_re50,ppo,121,48.4,force,lower_fy,-0.0027792637702077627 +karman_re50,ppo,122,48.8,force,front_fx,0.00043309637112542987 +karman_re50,ppo,122,48.8,force,front_fy,0.00046842521987855434 +karman_re50,ppo,122,48.8,force,upper_fx,0.001632738159969449 +karman_re50,ppo,122,48.8,force,upper_fy,0.004287133924663067 +karman_re50,ppo,122,48.8,force,lower_fx,-0.002648320747539401 +karman_re50,ppo,122,48.8,force,lower_fy,-0.0035619724076241255 +karman_re50,ppo,123,49.2,force,front_fx,0.0004604624700732529 +karman_re50,ppo,123,49.2,force,front_fy,-0.00035153620410710573 +karman_re50,ppo,123,49.2,force,upper_fx,0.0013170525198802352 +karman_re50,ppo,123,49.2,force,upper_fy,0.004394971299916506 +karman_re50,ppo,123,49.2,force,lower_fx,-0.0017554350197315216 +karman_re50,ppo,123,49.2,force,lower_fy,-0.004155745264142752 +karman_re50,ppo,124,49.6,force,front_fx,0.0004048399569001049 +karman_re50,ppo,124,49.6,force,front_fy,-0.0011467642616480589 +karman_re50,ppo,124,49.6,force,upper_fx,0.000991911394521594 +karman_re50,ppo,124,49.6,force,upper_fy,0.004536435008049011 +karman_re50,ppo,124,49.6,force,lower_fx,-0.000931017566472292 +karman_re50,ppo,124,49.6,force,lower_fy,-0.004261131398379803 +karman_re50,ppo,125,50.0,force,front_fx,0.0002961907593999058 +karman_re50,ppo,125,50.0,force,front_fy,-0.0016839971067383885 +karman_re50,ppo,125,50.0,force,upper_fx,0.0006365151493810117 +karman_re50,ppo,125,50.0,force,upper_fy,0.004580398090183735 +karman_re50,ppo,125,50.0,force,lower_fx,-0.0004508567217271775 +karman_re50,ppo,125,50.0,force,lower_fy,-0.003998049534857273 +karman_re50,ppo,126,50.4,force,front_fx,0.0001833549322327599 +karman_re50,ppo,126,50.4,force,front_fy,-0.0018706124974414706 +karman_re50,ppo,126,50.4,force,upper_fx,0.00020912483159918338 +karman_re50,ppo,126,50.4,force,upper_fy,0.004382775630801916 +karman_re50,ppo,126,50.4,force,lower_fx,-0.00022018740128260106 +karman_re50,ppo,126,50.4,force,lower_fy,-0.0036448324099183083 +karman_re50,ppo,127,50.8,force,front_fx,5.672058978234418e-05 +karman_re50,ppo,127,50.8,force,front_fy,-0.0017857827479019761 +karman_re50,ppo,127,50.8,force,upper_fx,-0.0002508749603293836 +karman_re50,ppo,127,50.8,force,upper_fy,0.003940554801374674 +karman_re50,ppo,127,50.8,force,lower_fx,3.0068740670685656e-06 +karman_re50,ppo,127,50.8,force,lower_fy,-0.003268817439675331 +karman_re50,ppo,128,51.2,force,front_fx,-7.95614905655384e-05 +karman_re50,ppo,128,51.2,force,front_fy,-0.001571695669554174 +karman_re50,ppo,128,51.2,force,upper_fx,-0.0006875943508930504 +karman_re50,ppo,128,51.2,force,upper_fy,0.0033682924695312977 +karman_re50,ppo,128,51.2,force,lower_fx,0.00027692029834724963 +karman_re50,ppo,128,51.2,force,lower_fy,-0.002891341457143426 +karman_re50,ppo,129,51.6,force,front_fx,-0.0002344909153180197 +karman_re50,ppo,129,51.6,force,front_fy,-0.0012962903128936887 +karman_re50,ppo,129,51.6,force,upper_fx,-0.001052609644830227 +karman_re50,ppo,129,51.6,force,upper_fy,0.0028057233430445194 +karman_re50,ppo,129,51.6,force,lower_fx,0.0005917286034673452 +karman_re50,ppo,129,51.6,force,lower_fy,-0.0025646088179200888 +karman_re50,ppo,130,52.0,force,front_fx,-0.00034145626705139875 +karman_re50,ppo,130,52.0,force,front_fy,-0.0010209066094830632 +karman_re50,ppo,130,52.0,force,upper_fx,-0.0013484820956364274 +karman_re50,ppo,130,52.0,force,upper_fy,0.002478598617017269 +karman_re50,ppo,130,52.0,force,lower_fx,0.0008187918574549258 +karman_re50,ppo,130,52.0,force,lower_fy,-0.002338459249585867 +karman_re50,ppo,131,52.4,force,front_fx,-0.0003623297088779509 +karman_re50,ppo,131,52.4,force,front_fy,-0.0007664794684387743 +karman_re50,ppo,131,52.4,force,upper_fx,-0.0014421467203646898 +karman_re50,ppo,131,52.4,force,upper_fy,0.0026753952261060476 +karman_re50,ppo,131,52.4,force,lower_fx,0.0008334102458320558 +karman_re50,ppo,131,52.4,force,lower_fy,-0.0022154394537210464 +karman_re50,ppo,132,52.8,force,front_fx,-0.0002791807637549937 +karman_re50,ppo,132,52.8,force,front_fy,-0.0004876939347013831 +karman_re50,ppo,132,52.8,force,upper_fx,-0.001130863674916327 +karman_re50,ppo,132,52.8,force,upper_fy,0.0034568447154015303 +karman_re50,ppo,132,52.8,force,lower_fx,0.0005602348828688264 +karman_re50,ppo,132,52.8,force,lower_fy,-0.0022203195840120316 +karman_re50,ppo,133,53.2,force,front_fx,-7.710864156251773e-05 +karman_re50,ppo,133,53.2,force,front_fy,-7.752890815027058e-05 +karman_re50,ppo,133,53.2,force,upper_fx,-0.0003418024571146816 +karman_re50,ppo,133,53.2,force,upper_fy,0.0043844799511134624 +karman_re50,ppo,133,53.2,force,lower_fx,0.00010169195593334734 +karman_re50,ppo,133,53.2,force,lower_fy,-0.0023609697818756104 +karman_re50,ppo,134,53.6,force,front_fx,0.0003509506641421467 +karman_re50,ppo,134,53.6,force,front_fy,0.0004710672365035862 +karman_re50,ppo,134,53.6,force,upper_fx,0.0005136847612448037 +karman_re50,ppo,134,53.6,force,upper_fy,0.004882560111582279 +karman_re50,ppo,134,53.6,force,lower_fx,-0.0005106475437059999 +karman_re50,ppo,134,53.6,force,lower_fy,-0.002675666008144617 +karman_re50,ppo,135,54.0,force,front_fx,0.001096902065910399 +karman_re50,ppo,135,54.0,force,front_fy,0.0010427951347082853 +karman_re50,ppo,135,54.0,force,upper_fx,0.0009179295739158988 +karman_re50,ppo,135,54.0,force,upper_fy,0.004852963611483574 +karman_re50,ppo,135,54.0,force,lower_fx,-0.0012157353339716792 +karman_re50,ppo,135,54.0,force,lower_fy,-0.0032027203124016523 +karman_re50,ppo,136,54.4,force,front_fx,0.001823951955884695 +karman_re50,ppo,136,54.4,force,front_fy,0.0015218248590826988 +karman_re50,ppo,136,54.4,force,upper_fx,0.0008923003915697336 +karman_re50,ppo,136,54.4,force,upper_fy,0.004473804030567408 +karman_re50,ppo,136,54.4,force,lower_fx,-0.0016867202939465642 +karman_re50,ppo,136,54.4,force,lower_fy,-0.0037437635473906994 +karman_re50,ppo,137,54.8,force,front_fx,0.0020423056557774544 +karman_re50,ppo,137,54.8,force,front_fy,0.0018956523854285479 +karman_re50,ppo,137,54.8,force,upper_fx,0.0008899828535504639 +karman_re50,ppo,137,54.8,force,upper_fy,0.004055802710354328 +karman_re50,ppo,137,54.8,force,lower_fx,-0.001695425366051495 +karman_re50,ppo,137,54.8,force,lower_fy,-0.0038792418781667948 +karman_re50,ppo,138,55.2,force,front_fx,0.0017429052386432886 +karman_re50,ppo,138,55.2,force,front_fy,0.0021074346732348204 +karman_re50,ppo,138,55.2,force,upper_fx,0.001083542825654149 +karman_re50,ppo,138,55.2,force,upper_fy,0.003945779521018267 +karman_re50,ppo,138,55.2,force,lower_fx,-0.0015971719985827804 +karman_re50,ppo,138,55.2,force,lower_fy,-0.003554967697709799 +karman_re50,ppo,139,55.6,force,front_fx,0.0012240876676514745 +karman_re50,ppo,139,55.6,force,front_fy,0.002051208633929491 +karman_re50,ppo,139,55.6,force,upper_fx,0.001396471867337823 +karman_re50,ppo,139,55.6,force,upper_fy,0.004051628522574902 +karman_re50,ppo,139,55.6,force,lower_fx,-0.0017403592355549335 +karman_re50,ppo,139,55.6,force,lower_fy,-0.003134810132905841 +karman_re50,ppo,140,56.0,force,front_fx,0.0007408503443002701 +karman_re50,ppo,140,56.0,force,front_fy,0.001903118216432631 +karman_re50,ppo,140,56.0,force,upper_fx,0.0016435767756775022 +karman_re50,ppo,140,56.0,force,upper_fy,0.0041185407899320126 +karman_re50,ppo,140,56.0,force,lower_fx,-0.0020402397494763136 +karman_re50,ppo,140,56.0,force,lower_fy,-0.0028890890534967184 +karman_re50,ppo,141,56.4,force,front_fx,0.000369259127182886 +karman_re50,ppo,141,56.4,force,front_fy,0.0017548890318721533 +karman_re50,ppo,141,56.4,force,upper_fx,0.001774140284396708 +karman_re50,ppo,141,56.4,force,upper_fy,0.004075295757502317 +karman_re50,ppo,141,56.4,force,lower_fx,-0.0023158742114901543 +karman_re50,ppo,141,56.4,force,lower_fy,-0.0028471320401877165 +karman_re50,ppo,142,56.8,force,front_fx,0.0001292366359848529 +karman_re50,ppo,142,56.8,force,front_fy,0.0015163837233558297 +karman_re50,ppo,142,56.8,force,upper_fx,0.0018096105195581913 +karman_re50,ppo,142,56.8,force,upper_fy,0.003994828090071678 +karman_re50,ppo,142,56.8,force,lower_fx,-0.0024655049201101065 +karman_re50,ppo,142,56.8,force,lower_fy,-0.0029542353004217148 +karman_re50,ppo,143,57.2,force,front_fx,8.623961184639484e-05 +karman_re50,ppo,143,57.2,force,front_fy,0.0010633576894178987 +karman_re50,ppo,143,57.2,force,upper_fx,0.0017485193675383925 +karman_re50,ppo,143,57.2,force,upper_fy,0.0038841741625219584 +karman_re50,ppo,143,57.2,force,lower_fx,-0.002414416754618287 +karman_re50,ppo,143,57.2,force,lower_fy,-0.003167963121086359 +karman_re50,ppo,144,57.6,force,front_fx,0.00018078826542478055 +karman_re50,ppo,144,57.6,force,front_fy,0.00041625346057116985 +karman_re50,ppo,144,57.6,force,upper_fx,0.0016052130376920104 +karman_re50,ppo,144,57.6,force,upper_fy,0.003783647669479251 +karman_re50,ppo,144,57.6,force,lower_fx,-0.0020762255880981684 +karman_re50,ppo,144,57.6,force,lower_fy,-0.003480656072497368 +karman_re50,ppo,145,58.0,force,front_fx,0.00027654480072669685 +karman_re50,ppo,145,58.0,force,front_fy,-0.0003345998120494187 +karman_re50,ppo,145,58.0,force,upper_fx,0.0013309476198628545 +karman_re50,ppo,145,58.0,force,upper_fy,0.003765842877328396 +karman_re50,ppo,145,58.0,force,lower_fx,-0.0015376051887869835 +karman_re50,ppo,145,58.0,force,lower_fy,-0.0037885960191488266 +karman_re50,ppo,146,58.4,force,front_fx,0.00031896212021820247 +karman_re50,ppo,146,58.4,force,front_fy,-0.00108822132460773 +karman_re50,ppo,146,58.4,force,upper_fx,0.001035260153003037 +karman_re50,ppo,146,58.4,force,upper_fy,0.0038820833433419466 +karman_re50,ppo,146,58.4,force,lower_fx,-0.0009601701167412102 +karman_re50,ppo,146,58.4,force,lower_fy,-0.003980395384132862 +karman_re50,ppo,147,58.8,force,front_fx,0.00026945964782498777 +karman_re50,ppo,147,58.8,force,front_fy,-0.0016769780777394772 +karman_re50,ppo,147,58.8,force,upper_fx,0.0007149491575546563 +karman_re50,ppo,147,58.8,force,upper_fy,0.004062643740326166 +karman_re50,ppo,147,58.8,force,lower_fx,-0.0005975263775326312 +karman_re50,ppo,147,58.8,force,lower_fy,-0.00394135806709528 +karman_re50,ppo,148,59.2,force,front_fx,0.00019412297115195543 +karman_re50,ppo,148,59.2,force,front_fy,-0.001981062116101384 +karman_re50,ppo,148,59.2,force,upper_fx,0.000397325522499159 +karman_re50,ppo,148,59.2,force,upper_fy,0.004168251063674688 +karman_re50,ppo,148,59.2,force,lower_fx,-0.00046986810048110783 +karman_re50,ppo,148,59.2,force,lower_fy,-0.0037301192060112953 +karman_re50,ppo,149,59.6,force,front_fx,0.00010531035513849929 +karman_re50,ppo,149,59.6,force,front_fy,-0.0020067093428224325 +karman_re50,ppo,149,59.6,force,upper_fx,0.00010809900413732976 +karman_re50,ppo,149,59.6,force,upper_fy,0.004083986394107342 +karman_re50,ppo,149,59.6,force,lower_fx,-0.0004210511688143015 +karman_re50,ppo,149,59.6,force,lower_fy,-0.0034203564282506704 +karman_re50,ppo,150,60.0,force,front_fx,-4.930765862809494e-05 +karman_re50,ppo,150,60.0,force,front_fy,-0.0018617399036884308 +karman_re50,ppo,150,60.0,force,upper_fx,-0.00011136290413560346 +karman_re50,ppo,150,60.0,force,upper_fy,0.0037821566220372915 +karman_re50,ppo,150,60.0,force,lower_fx,-0.0002899185928981751 +karman_re50,ppo,150,60.0,force,lower_fy,-0.00309342541731894 +karman_re50,ppo,151,60.4,force,front_fx,-0.00024279301578644663 +karman_re50,ppo,151,60.4,force,front_fy,-0.0016091767465695739 +karman_re50,ppo,151,60.4,force,upper_fx,-0.0002999509160872549 +karman_re50,ppo,151,60.4,force,upper_fy,0.0033198194578289986 +karman_re50,ppo,151,60.4,force,lower_fx,-4.3924501369474456e-05 +karman_re50,ppo,151,60.4,force,lower_fy,-0.002818652195855975 +karman_re50,ppo,152,60.8,force,front_fx,-0.00042269352707080543 +karman_re50,ppo,152,60.8,force,front_fy,-0.0012899951543658972 +karman_re50,ppo,152,60.8,force,upper_fx,-0.000501875882036984 +karman_re50,ppo,152,60.8,force,upper_fy,0.002832558937370777 +karman_re50,ppo,152,60.8,force,lower_fx,0.0002738120383583009 +karman_re50,ppo,152,60.8,force,lower_fy,-0.002591521944850683 +karman_re50,ppo,153,61.2,force,front_fx,-0.0005316062015481293 +karman_re50,ppo,153,61.2,force,front_fy,-0.0009602943318895996 +karman_re50,ppo,153,61.2,force,upper_fx,-0.0006929111550562084 +karman_re50,ppo,153,61.2,force,upper_fy,0.0026099050883203745 +karman_re50,ppo,153,61.2,force,lower_fx,0.0004927406553179026 +karman_re50,ppo,153,61.2,force,lower_fy,-0.002402032259851694 +karman_re50,ppo,154,61.6,force,front_fx,-0.00048750583664514124 +karman_re50,ppo,154,61.6,force,front_fy,-0.0006311787874437869 +karman_re50,ppo,154,61.6,force,upper_fx,-0.0006824523443356156 +karman_re50,ppo,154,61.6,force,upper_fy,0.0029259505681693554 +karman_re50,ppo,154,61.6,force,lower_fx,0.00044351007090881467 +karman_re50,ppo,154,61.6,force,lower_fy,-0.0022765558678656816 +karman_re50,ppo,155,62.0,force,front_fx,-0.00027793581830337644 +karman_re50,ppo,155,62.0,force,front_fy,-0.0002719309413805604 +karman_re50,ppo,155,62.0,force,upper_fx,-0.00026421432266943157 +karman_re50,ppo,155,62.0,force,upper_fy,0.0037190697621554136 +karman_re50,ppo,155,62.0,force,lower_fx,8.953435462899506e-05 +karman_re50,ppo,155,62.0,force,lower_fy,-0.0022998752538114786 +karman_re50,ppo,156,62.4,force,front_fx,0.000166212601470761 +karman_re50,ppo,156,62.4,force,front_fy,0.00018791493494063616 +karman_re50,ppo,156,62.4,force,upper_fx,0.0004588953743223101 +karman_re50,ppo,156,62.4,force,upper_fy,0.004537442699074745 +karman_re50,ppo,156,62.4,force,lower_fx,-0.0005102322902530432 +karman_re50,ppo,156,62.4,force,lower_fy,-0.0025387012865394354 +karman_re50,ppo,157,62.8,force,front_fx,0.0009380792616866529 +karman_re50,ppo,157,62.8,force,front_fy,0.0007573059992864728 +karman_re50,ppo,157,62.8,force,upper_fx,0.0010132953757420182 +karman_re50,ppo,157,62.8,force,upper_fy,0.004877063445746899 +karman_re50,ppo,157,62.8,force,lower_fx,-0.0012421407736837864 +karman_re50,ppo,157,62.8,force,lower_fy,-0.00302398344501853 +karman_re50,ppo,158,63.2,force,front_fx,0.0018354475032538176 +karman_re50,ppo,158,63.2,force,front_fy,0.0013212831690907478 +karman_re50,ppo,158,63.2,force,upper_fx,0.0010705431923270226 +karman_re50,ppo,158,63.2,force,upper_fy,0.004575812723487616 +karman_re50,ppo,158,63.2,force,lower_fx,-0.0018329627346247435 +karman_re50,ppo,158,63.2,force,lower_fy,-0.003640341805294156 +karman_re50,ppo,159,63.6,force,front_fx,0.0022713569924235344 +karman_re50,ppo,159,63.6,force,front_fy,0.001773300115019083 +karman_re50,ppo,159,63.6,force,upper_fx,0.0009977068984881043 +karman_re50,ppo,159,63.6,force,upper_fy,0.003999802283942699 +karman_re50,ppo,159,63.6,force,lower_fx,-0.001890126965008676 +karman_re50,ppo,159,63.6,force,lower_fy,-0.00401142705231905 +karman_re50,ppo,160,64.0,force,front_fx,0.0020883912220597267 +karman_re50,ppo,160,64.0,force,front_fy,0.0021242257207632065 +karman_re50,ppo,160,64.0,force,upper_fx,0.0010967848356813192 +karman_re50,ppo,160,64.0,force,upper_fy,0.0037306174635887146 +karman_re50,ppo,160,64.0,force,lower_fx,-0.0016404525376856327 +karman_re50,ppo,160,64.0,force,lower_fy,-0.003833949565887451 +karman_re50,ppo,161,64.4,force,front_fx,0.001654171384871006 +karman_re50,ppo,161,64.4,force,front_fy,0.0022271196357905865 +karman_re50,ppo,161,64.4,force,upper_fx,0.0012361035915091634 +karman_re50,ppo,161,64.4,force,upper_fy,0.0038195655215531588 +karman_re50,ppo,161,64.4,force,lower_fx,-0.001633772742934525 +karman_re50,ppo,161,64.4,force,lower_fy,-0.0033925215248018503 +karman_re50,ppo,162,64.8,force,front_fx,0.0011005029082298279 +karman_re50,ppo,162,64.8,force,front_fy,0.002063627587631345 +karman_re50,ppo,162,64.8,force,upper_fx,0.0016330392099916935 +karman_re50,ppo,162,64.8,force,upper_fy,0.003965516574680805 +karman_re50,ppo,162,64.8,force,lower_fx,-0.0018691144650802016 +karman_re50,ppo,162,64.8,force,lower_fy,-0.0030853941570967436 +karman_re50,ppo,163,65.2,force,front_fx,0.0007075424655340612 +karman_re50,ppo,163,65.2,force,front_fy,0.001849249005317688 +karman_re50,ppo,163,65.2,force,upper_fx,0.0018570865504443645 +karman_re50,ppo,163,65.2,force,upper_fy,0.004048842005431652 +karman_re50,ppo,163,65.2,force,lower_fx,-0.0022479963954538107 +karman_re50,ppo,163,65.2,force,lower_fy,-0.0029096498619765043 +karman_re50,ppo,164,65.6,force,front_fx,0.00043495933641679585 +karman_re50,ppo,164,65.6,force,front_fy,0.0015360485995188355 +karman_re50,ppo,164,65.6,force,upper_fx,0.002046187175437808 +karman_re50,ppo,164,65.6,force,upper_fy,0.004039655439555645 +karman_re50,ppo,164,65.6,force,lower_fx,-0.0026185675524175167 +karman_re50,ppo,164,65.6,force,lower_fy,-0.002818450564518571 +karman_re50,ppo,165,66.0,force,front_fx,0.0003344106371514499 +karman_re50,ppo,165,66.0,force,front_fy,0.0010898311156779528 +karman_re50,ppo,165,66.0,force,upper_fx,0.0021633063443005085 +karman_re50,ppo,165,66.0,force,upper_fy,0.0039961994625627995 +karman_re50,ppo,165,66.0,force,lower_fx,-0.0028683384880423546 +karman_re50,ppo,165,66.0,force,lower_fy,-0.00277615524828434 +karman_re50,ppo,166,66.4,force,front_fx,0.0004336061829235405 +karman_re50,ppo,166,66.4,force,front_fy,0.00047968034050427377 +karman_re50,ppo,166,66.4,force,upper_fx,0.002182228956371546 +karman_re50,ppo,166,66.4,force,upper_fy,0.003955312073230743 +karman_re50,ppo,166,66.4,force,lower_fx,-0.002931292401626706 +karman_re50,ppo,166,66.4,force,lower_fy,-0.0028709545731544495 +karman_re50,ppo,167,66.8,force,front_fx,0.0005944286240264773 +karman_re50,ppo,167,66.8,force,front_fy,-0.0002412012399872765 +karman_re50,ppo,167,66.8,force,upper_fx,0.002107347594574094 +karman_re50,ppo,167,66.8,force,upper_fy,0.00402419688180089 +karman_re50,ppo,167,66.8,force,lower_fx,-0.002727861749008298 +karman_re50,ppo,167,66.8,force,lower_fy,-0.003178158774971962 +karman_re50,ppo,168,67.2,force,front_fx,0.0006278228829614818 +karman_re50,ppo,168,67.2,force,front_fy,-0.0010066046379506588 +karman_re50,ppo,168,67.2,force,upper_fx,0.0020044816192239523 +karman_re50,ppo,168,67.2,force,upper_fy,0.004259792156517506 +karman_re50,ppo,168,67.2,force,lower_fx,-0.0023256356362253428 +karman_re50,ppo,168,67.2,force,lower_fy,-0.0035578557290136814 +karman_re50,ppo,169,67.6,force,front_fx,0.0005125465104356408 +karman_re50,ppo,169,67.6,force,front_fy,-0.0017071685288101435 +karman_re50,ppo,169,67.6,force,upper_fx,0.001933345920406282 +karman_re50,ppo,169,67.6,force,upper_fy,0.004565532319247723 +karman_re50,ppo,169,67.6,force,lower_fx,-0.0019072219729423523 +karman_re50,ppo,169,67.6,force,lower_fy,-0.003773975186049938 +karman_re50,ppo,170,68.0,force,front_fx,0.00028274962096475065 +karman_re50,ppo,170,68.0,force,front_fy,-0.00219130446203053 +karman_re50,ppo,170,68.0,force,upper_fx,0.0018417006358504295 +karman_re50,ppo,170,68.0,force,upper_fy,0.004760710522532463 +karman_re50,ppo,170,68.0,force,lower_fx,-0.001634506625123322 +karman_re50,ppo,170,68.0,force,lower_fy,-0.0037374598905444145 +karman_re50,ppo,171,68.4,force,front_fx,2.1802017727168277e-05 +karman_re50,ppo,171,68.4,force,front_fy,-0.002368069486692548 +karman_re50,ppo,171,68.4,force,upper_fx,0.0016903136856853962 +karman_re50,ppo,171,68.4,force,upper_fy,0.0046973396092653275 +karman_re50,ppo,171,68.4,force,lower_fx,-0.0014545823214575648 +karman_re50,ppo,171,68.4,force,lower_fy,-0.003506527515128255 +karman_re50,ppo,172,68.8,force,front_fx,-0.0002673048584256321 +karman_re50,ppo,172,68.8,force,front_fy,-0.0022784629836678505 +karman_re50,ppo,172,68.8,force,upper_fx,0.0014825797406956553 +karman_re50,ppo,172,68.8,force,upper_fy,0.0043248687870800495 +karman_re50,ppo,172,68.8,force,lower_fx,-0.0011955129448324442 +karman_re50,ppo,172,68.8,force,lower_fy,-0.0031454346608370543 +karman_re50,ppo,173,69.2,force,front_fx,-0.0005709136021323502 +karman_re50,ppo,173,69.2,force,front_fy,-0.0020245681516826153 +karman_re50,ppo,173,69.2,force,upper_fx,0.0012037222040817142 +karman_re50,ppo,173,69.2,force,upper_fy,0.0036890520714223385 +karman_re50,ppo,173,69.2,force,lower_fx,-0.000816712505184114 +karman_re50,ppo,173,69.2,force,lower_fy,-0.002747840480878949 +karman_re50,ppo,174,69.6,force,front_fx,-0.0008090853807516396 +karman_re50,ppo,174,69.6,force,front_fy,-0.0016686987364664674 +karman_re50,ppo,174,69.6,force,upper_fx,0.0008562588482163846 +karman_re50,ppo,174,69.6,force,upper_fy,0.002930816961452365 +karman_re50,ppo,174,69.6,force,lower_fx,-0.0003269357548560947 +karman_re50,ppo,174,69.6,force,lower_fy,-0.0023639758583158255 +karman_re50,ppo,175,70.0,force,front_fx,-0.0009605096420273185 +karman_re50,ppo,175,70.0,force,front_fy,-0.0012809502659365535 +karman_re50,ppo,175,70.0,force,upper_fx,0.0004141189274378121 +karman_re50,ppo,175,70.0,force,upper_fy,0.002325159264728427 +karman_re50,ppo,175,70.0,force,lower_fx,9.042736928677186e-05 +karman_re50,ppo,175,70.0,force,lower_fy,-0.0020135364029556513 +karman_re50,ppo,176,70.4,force,front_fx,-0.0008918175008147955 +karman_re50,ppo,176,70.4,force,front_fy,-0.0009145301301032305 +karman_re50,ppo,176,70.4,force,upper_fx,6.500993185909465e-05 +karman_re50,ppo,176,70.4,force,upper_fy,0.0022779947612434626 +karman_re50,ppo,176,70.4,force,lower_fx,0.000215437903534621 +karman_re50,ppo,176,70.4,force,lower_fy,-0.001744659268297255 +karman_re50,ppo,177,70.8,force,front_fx,-0.0005983493174426258 +karman_re50,ppo,177,70.8,force,front_fy,-0.0005831897724419832 +karman_re50,ppo,177,70.8,force,upper_fx,8.193769463105127e-05 +karman_re50,ppo,177,70.8,force,upper_fy,0.0029782766941934824 +karman_re50,ppo,177,70.8,force,lower_fx,-8.771551074460149e-05 +karman_re50,ppo,177,70.8,force,lower_fy,-0.0016874176217243075 +karman_re50,ppo,178,71.2,force,front_fx,-5.706961383111775e-05 +karman_re50,ppo,178,71.2,force,front_fy,-0.00019883243658114225 +karman_re50,ppo,178,71.2,force,upper_fx,0.0005814980249851942 +karman_re50,ppo,178,71.2,force,upper_fy,0.004084260668605566 +karman_re50,ppo,178,71.2,force,lower_fx,-0.000730661500710994 +karman_re50,ppo,178,71.2,force,lower_fy,-0.0018953015096485615 +karman_re50,ppo,179,71.6,force,front_fx,0.0008071435731835663 +karman_re50,ppo,179,71.6,force,front_fy,0.0003452506789471954 +karman_re50,ppo,179,71.6,force,upper_fx,0.001176671008579433 +karman_re50,ppo,179,71.6,force,upper_fy,0.004870822187513113 +karman_re50,ppo,179,71.6,force,lower_fx,-0.0015685836551710963 +karman_re50,ppo,179,71.6,force,lower_fy,-0.0023784844670444727 +karman_re50,ppo,180,72.0,force,front_fx,0.0019175962079316378 +karman_re50,ppo,180,72.0,force,front_fy,0.0010016721207648516 +karman_re50,ppo,180,72.0,force,upper_fx,0.001349790720269084 +karman_re50,ppo,180,72.0,force,upper_fy,0.004800005815923214 +karman_re50,ppo,180,72.0,force,lower_fx,-0.002299632178619504 +karman_re50,ppo,180,72.0,force,lower_fy,-0.00304352561943233 +karman_re50,ppo,181,72.4,force,front_fx,0.0026331529952585697 +karman_re50,ppo,181,72.4,force,front_fy,0.0016090795397758484 +karman_re50,ppo,181,72.4,force,upper_fx,0.001292668399401009 +karman_re50,ppo,181,72.4,force,upper_fy,0.004141419660300016 +karman_re50,ppo,181,72.4,force,lower_fx,-0.002428715815767646 +karman_re50,ppo,181,72.4,force,lower_fy,-0.0035200384445488453 +karman_re50,ppo,182,72.8,force,front_fx,0.002588684670627117 +karman_re50,ppo,182,72.8,force,front_fy,0.002150275744497776 +karman_re50,ppo,182,72.8,force,upper_fx,0.0014078011736273766 +karman_re50,ppo,182,72.8,force,upper_fy,0.003716439940035343 +karman_re50,ppo,182,72.8,force,lower_fx,-0.0020348667167127132 +karman_re50,ppo,182,72.8,force,lower_fy,-0.0033729616552591324 +karman_re50,ppo,183,73.2,force,front_fx,0.0021102181635797024 +karman_re50,ppo,183,73.2,force,front_fy,0.002374777803197503 +karman_re50,ppo,183,73.2,force,upper_fx,0.001703212852589786 +karman_re50,ppo,183,73.2,force,upper_fy,0.0037674051709473133 +karman_re50,ppo,183,73.2,force,lower_fx,-0.0018427756149321795 +karman_re50,ppo,183,73.2,force,lower_fy,-0.002841405337676406 +karman_re50,ppo,184,73.6,force,front_fx,0.0015267698327079415 +karman_re50,ppo,184,73.6,force,front_fy,0.0022495966404676437 +karman_re50,ppo,184,73.6,force,upper_fx,0.0020406190305948257 +karman_re50,ppo,184,73.6,force,upper_fy,0.004015894141048193 +karman_re50,ppo,184,73.6,force,lower_fx,-0.002126622013747692 +karman_re50,ppo,184,73.6,force,lower_fy,-0.0023760010953992605 +karman_re50,ppo,185,74.0,force,front_fx,0.0010771144879981875 +karman_re50,ppo,185,74.0,force,front_fy,0.0020030057057738304 +karman_re50,ppo,185,74.0,force,upper_fx,0.0022622302640229464 +karman_re50,ppo,185,74.0,force,upper_fy,0.004196277353912592 +karman_re50,ppo,185,74.0,force,lower_fx,-0.0026474555488675833 +karman_re50,ppo,185,74.0,force,lower_fy,-0.0021006136666983366 +karman_re50,ppo,186,74.4,force,front_fx,0.0007732656667940319 +karman_re50,ppo,186,74.4,force,front_fy,0.0017327789682894945 +karman_re50,ppo,186,74.4,force,upper_fx,0.0023836453910917044 +karman_re50,ppo,186,74.4,force,upper_fy,0.0042713419534265995 +karman_re50,ppo,186,74.4,force,lower_fx,-0.003166630631312728 +karman_re50,ppo,186,74.4,force,lower_fy,-0.001948221935890615 +karman_re50,ppo,187,74.8,force,front_fx,0.000614036456681788 +karman_re50,ppo,187,74.8,force,front_fy,0.0014049798483029008 +karman_re50,ppo,187,74.8,force,upper_fx,0.0024268347769975662 +karman_re50,ppo,187,74.8,force,upper_fy,0.00431170966476202 +karman_re50,ppo,187,74.8,force,lower_fx,-0.003551466390490532 +karman_re50,ppo,187,74.8,force,lower_fy,-0.0019333204254508018 +karman_re50,ppo,188,75.2,force,front_fx,0.0006671645678579807 +karman_re50,ppo,188,75.2,force,front_fy,0.000936042342800647 +karman_re50,ppo,188,75.2,force,upper_fx,0.002381806029006839 +karman_re50,ppo,188,75.2,force,upper_fy,0.004347562324255705 +karman_re50,ppo,188,75.2,force,lower_fx,-0.003710424993187189 +karman_re50,ppo,188,75.2,force,lower_fy,-0.0021668823901563883 +karman_re50,ppo,189,75.6,force,front_fx,0.0008271335973404348 +karman_re50,ppo,189,75.6,force,front_fy,0.00029794848524034023 +karman_re50,ppo,189,75.6,force,upper_fx,0.002256864681839943 +karman_re50,ppo,189,75.6,force,upper_fy,0.004441631957888603 +karman_re50,ppo,189,75.6,force,lower_fx,-0.003528418019413948 +karman_re50,ppo,189,75.6,force,lower_fy,-0.002703854814171791 +karman_re50,ppo,190,76.0,force,front_fx,0.0008690402028150856 +karman_re50,ppo,190,76.0,force,front_fy,-0.0004698788688983768 +karman_re50,ppo,190,76.0,force,upper_fx,0.00211174669675529 +karman_re50,ppo,190,76.0,force,upper_fy,0.004672811832278967 +karman_re50,ppo,190,76.0,force,lower_fx,-0.003005335107445717 +karman_re50,ppo,190,76.0,force,lower_fy,-0.003367143915966153 +karman_re50,ppo,191,76.4,force,front_fx,0.0007505331886932254 +karman_re50,ppo,191,76.4,force,front_fy,-0.0012705447152256966 +karman_re50,ppo,191,76.4,force,upper_fx,0.002009006217122078 +karman_re50,ppo,191,76.4,force,upper_fy,0.004980624653398991 +karman_re50,ppo,191,76.4,force,lower_fx,-0.002339346334338188 +karman_re50,ppo,191,76.4,force,lower_fy,-0.003814252093434334 +karman_re50,ppo,192,76.8,force,front_fx,0.00047950982116162777 +karman_re50,ppo,192,76.8,force,front_fy,-0.0019186404533684254 +karman_re50,ppo,192,76.8,force,upper_fx,0.0019090537680312991 +karman_re50,ppo,192,76.8,force,upper_fy,0.005201469641178846 +karman_re50,ppo,192,76.8,force,lower_fx,-0.0018022166332229972 +karman_re50,ppo,192,76.8,force,lower_fy,-0.003893416142091155 +karman_re50,ppo,193,77.2,force,front_fx,0.00015357037773355842 +karman_re50,ppo,193,77.2,force,front_fy,-0.002242793096229434 +karman_re50,ppo,193,77.2,force,upper_fx,0.0017240284942090511 +karman_re50,ppo,193,77.2,force,upper_fy,0.0051245312206447124 +karman_re50,ppo,193,77.2,force,lower_fx,-0.001420749700628221 +karman_re50,ppo,193,77.2,force,lower_fy,-0.0036747946869581938 +karman_re50,ppo,194,77.6,force,front_fx,-0.0001865371159510687 +karman_re50,ppo,194,77.6,force,front_fy,-0.0022324486635625362 +karman_re50,ppo,194,77.6,force,upper_fx,0.0014418628998100758 +karman_re50,ppo,194,77.6,force,upper_fy,0.004689756780862808 +karman_re50,ppo,194,77.6,force,lower_fx,-0.001031231600791216 +karman_re50,ppo,194,77.6,force,lower_fy,-0.0032906043343245983 +karman_re50,ppo,195,78.0,force,front_fx,-0.0005049715982750058 +karman_re50,ppo,195,78.0,force,front_fy,-0.0019948864355683327 +karman_re50,ppo,195,78.0,force,upper_fx,0.0010698245605453849 +karman_re50,ppo,195,78.0,force,upper_fy,0.003921715077012777 +karman_re50,ppo,195,78.0,force,lower_fx,-0.0005411945166997612 +karman_re50,ppo,195,78.0,force,lower_fy,-0.0028069126419723034 +karman_re50,ppo,196,78.4,force,front_fx,-0.0007799915038049221 +karman_re50,ppo,196,78.4,force,front_fy,-0.0016391894314438105 +karman_re50,ppo,196,78.4,force,upper_fx,0.0005992063088342547 +karman_re50,ppo,196,78.4,force,upper_fy,0.0029715998098254204 +karman_re50,ppo,196,78.4,force,lower_fx,7.269597062986577e-06 +karman_re50,ppo,196,78.4,force,lower_fy,-0.002302661072462797 +karman_re50,ppo,197,78.8,force,front_fx,-0.0009384489967487752 +karman_re50,ppo,197,78.8,force,front_fy,-0.0012543057091534138 +karman_re50,ppo,197,78.8,force,upper_fx,5.195783160161227e-05 +karman_re50,ppo,197,78.8,force,upper_fy,0.002147749997675419 +karman_re50,ppo,197,78.8,force,lower_fx,0.0004838728636968881 +karman_re50,ppo,197,78.8,force,lower_fy,-0.0018534271512180567 +karman_re50,ppo,198,79.2,force,front_fx,-0.0008966969908215106 +karman_re50,ppo,198,79.2,force,front_fy,-0.0009192324359901249 +karman_re50,ppo,198,79.2,force,upper_fx,-0.00044230587081983685 +karman_re50,ppo,198,79.2,force,upper_fy,0.001936204731464386 +karman_re50,ppo,198,79.2,force,lower_fx,0.0006430288194678724 +karman_re50,ppo,198,79.2,force,lower_fy,-0.0015528186922892928 +karman_re50,ppo,199,79.6,force,front_fx,-0.0006420428398996592 +karman_re50,ppo,199,79.6,force,front_fy,-0.0006457599229179323 +karman_re50,ppo,199,79.6,force,upper_fx,-0.0005571312503889203 +karman_re50,ppo,199,79.6,force,upper_fy,0.002632872434332967 +karman_re50,ppo,199,79.6,force,lower_fx,0.00037665851414203644 +karman_re50,ppo,199,79.6,force,lower_fy,-0.0014936838997527957 +karman_re50,ppo,0,0.0,alpha,front,-1.505651593208313 +karman_re50,ppo,0,0.0,alpha,upper,-2.31614351272583 +karman_re50,ppo,0,0.0,alpha,lower,3.975478172302246 +karman_re50,ppo,1,0.4,alpha,front,-1.9955214262008667 +karman_re50,ppo,1,0.4,alpha,upper,-2.01761531829834 +karman_re50,ppo,1,0.4,alpha,lower,3.3563194274902344 +karman_re50,ppo,2,0.8,alpha,front,-2.32171893119812 +karman_re50,ppo,2,0.8,alpha,upper,-1.77297842502594 +karman_re50,ppo,2,0.8,alpha,lower,3.029510498046875 +karman_re50,ppo,3,1.2,alpha,front,-2.762601375579834 +karman_re50,ppo,3,1.2,alpha,upper,-1.8706823587417603 +karman_re50,ppo,3,1.2,alpha,lower,2.7702250480651855 +karman_re50,ppo,4,1.6,alpha,front,-3.041179895401001 +karman_re50,ppo,4,1.6,alpha,upper,-2.2382540702819824 +karman_re50,ppo,4,1.6,alpha,lower,2.7787697315216064 +karman_re50,ppo,5,2.0,alpha,front,-3.1070656776428223 +karman_re50,ppo,5,2.0,alpha,upper,-2.589663028717041 +karman_re50,ppo,5,2.0,alpha,lower,3.1175732612609863 +karman_re50,ppo,6,2.4,alpha,front,-3.0807912349700928 +karman_re50,ppo,6,2.4,alpha,upper,-2.853902578353882 +karman_re50,ppo,6,2.4,alpha,lower,3.543027877807617 +karman_re50,ppo,7,2.8,alpha,front,-3.0156149864196777 +karman_re50,ppo,7,2.8,alpha,upper,-3.0613229274749756 +karman_re50,ppo,7,2.8,alpha,lower,3.788994073867798 +karman_re50,ppo,8,3.2,alpha,front,-2.860729455947876 +karman_re50,ppo,8,3.2,alpha,upper,-3.214153289794922 +karman_re50,ppo,8,3.2,alpha,lower,3.799384117126465 +karman_re50,ppo,9,3.6,alpha,front,-2.563204050064087 +karman_re50,ppo,9,3.6,alpha,upper,-3.3150875568389893 +karman_re50,ppo,9,3.6,alpha,lower,3.632106065750122 +karman_re50,ppo,10,4.0,alpha,front,-2.1501333713531494 +karman_re50,ppo,10,4.0,alpha,upper,-3.3532824516296387 +karman_re50,ppo,10,4.0,alpha,lower,3.2918589115142822 +karman_re50,ppo,11,4.4,alpha,front,-1.6558071374893188 +karman_re50,ppo,11,4.4,alpha,upper,-3.300353527069092 +karman_re50,ppo,11,4.4,alpha,lower,2.913698196411133 +karman_re50,ppo,12,4.8,alpha,front,-1.1603037118911743 +karman_re50,ppo,12,4.8,alpha,upper,-3.253272533416748 +karman_re50,ppo,12,4.8,alpha,lower,2.6882333755493164 +karman_re50,ppo,13,5.2,alpha,front,-0.7149907946586609 +karman_re50,ppo,13,5.2,alpha,upper,-3.361656665802002 +karman_re50,ppo,13,5.2,alpha,lower,2.797311544418335 +karman_re50,ppo,14,5.6,alpha,front,-0.33165717124938965 +karman_re50,ppo,14,5.6,alpha,upper,-3.6428604125976562 +karman_re50,ppo,14,5.6,alpha,lower,3.2095704078674316 +karman_re50,ppo,15,6.0,alpha,front,-0.000474393367767334 +karman_re50,ppo,15,6.0,alpha,upper,-4.011297702789307 +karman_re50,ppo,15,6.0,alpha,lower,3.7780699729919434 +karman_re50,ppo,16,6.4,alpha,front,0.2954278886318207 +karman_re50,ppo,16,6.4,alpha,upper,-4.351243495941162 +karman_re50,ppo,16,6.4,alpha,lower,4.391265392303467 +karman_re50,ppo,17,6.8,alpha,front,0.5215449333190918 +karman_re50,ppo,17,6.8,alpha,upper,-4.581165790557861 +karman_re50,ppo,17,6.8,alpha,lower,4.955134391784668 +karman_re50,ppo,18,7.2,alpha,front,0.6098252534866333 +karman_re50,ppo,18,7.2,alpha,upper,-4.595779895782471 +karman_re50,ppo,18,7.2,alpha,lower,5.35434627532959 +karman_re50,ppo,19,7.6,alpha,front,0.4811815023422241 +karman_re50,ppo,19,7.6,alpha,upper,-4.318649768829346 +karman_re50,ppo,19,7.6,alpha,lower,5.443464279174805 +karman_re50,ppo,20,8.0,alpha,front,0.10805061459541321 +karman_re50,ppo,20,8.0,alpha,upper,-3.728344440460205 +karman_re50,ppo,20,8.0,alpha,lower,5.143645286560059 +karman_re50,ppo,21,8.4,alpha,front,-0.5032846927642822 +karman_re50,ppo,21,8.4,alpha,upper,-2.956103563308716 +karman_re50,ppo,21,8.4,alpha,lower,4.44785213470459 +karman_re50,ppo,22,8.8,alpha,front,-1.2575291395187378 +karman_re50,ppo,22,8.8,alpha,upper,-2.227811574935913 +karman_re50,ppo,22,8.8,alpha,lower,3.5359129905700684 +karman_re50,ppo,23,9.2,alpha,front,-1.9947985410690308 +karman_re50,ppo,23,9.2,alpha,upper,-1.7145365476608276 +karman_re50,ppo,23,9.2,alpha,lower,2.7123565673828125 +karman_re50,ppo,24,9.6,alpha,front,-2.6227753162384033 +karman_re50,ppo,24,9.6,alpha,upper,-1.5216996669769287 +karman_re50,ppo,24,9.6,alpha,lower,2.1079492568969727 +karman_re50,ppo,25,10.0,alpha,front,-3.0664236545562744 +karman_re50,ppo,25,10.0,alpha,upper,-1.686583161354065 +karman_re50,ppo,25,10.0,alpha,lower,1.8197654485702515 +karman_re50,ppo,26,10.4,alpha,front,-3.2425343990325928 +karman_re50,ppo,26,10.4,alpha,upper,-2.090391159057617 +karman_re50,ppo,26,10.4,alpha,lower,2.0177135467529297 +karman_re50,ppo,27,10.8,alpha,front,-3.2071714401245117 +karman_re50,ppo,27,10.8,alpha,upper,-2.532773017883301 +karman_re50,ppo,27,10.8,alpha,lower,2.613896131515503 +karman_re50,ppo,28,11.2,alpha,front,-3.111623764038086 +karman_re50,ppo,28,11.2,alpha,upper,-2.95120906829834 +karman_re50,ppo,28,11.2,alpha,lower,3.2271921634674072 +karman_re50,ppo,29,11.6,alpha,front,-2.9646382331848145 +karman_re50,ppo,29,11.6,alpha,upper,-3.2965188026428223 +karman_re50,ppo,29,11.6,alpha,lower,3.6846024990081787 +karman_re50,ppo,30,12.0,alpha,front,-2.673065185546875 +karman_re50,ppo,30,12.0,alpha,upper,-3.542456865310669 +karman_re50,ppo,30,12.0,alpha,lower,3.980541944503784 +karman_re50,ppo,31,12.4,alpha,front,-2.177324056625366 +karman_re50,ppo,31,12.4,alpha,upper,-3.670064926147461 +karman_re50,ppo,31,12.4,alpha,lower,4.096987247467041 +karman_re50,ppo,32,12.8,alpha,front,-1.5302634239196777 +karman_re50,ppo,32,12.8,alpha,upper,-3.663252353668213 +karman_re50,ppo,32,12.8,alpha,lower,3.951749324798584 +karman_re50,ppo,33,13.2,alpha,front,-0.8150572180747986 +karman_re50,ppo,33,13.2,alpha,upper,-3.6077184677124023 +karman_re50,ppo,33,13.2,alpha,lower,3.563953161239624 +karman_re50,ppo,34,13.6,alpha,front,-0.1150195375084877 +karman_re50,ppo,34,13.6,alpha,upper,-3.682227611541748 +karman_re50,ppo,34,13.6,alpha,lower,3.234206199645996 +karman_re50,ppo,35,14.0,alpha,front,0.4883061647415161 +karman_re50,ppo,35,14.0,alpha,upper,-4.000672817230225 +karman_re50,ppo,35,14.0,alpha,lower,3.133852958679199 +karman_re50,ppo,36,14.4,alpha,front,0.9922434091567993 +karman_re50,ppo,36,14.4,alpha,upper,-4.428077697753906 +karman_re50,ppo,36,14.4,alpha,lower,3.2651524543762207 +karman_re50,ppo,37,14.8,alpha,front,1.436911940574646 +karman_re50,ppo,37,14.8,alpha,upper,-4.7703328132629395 +karman_re50,ppo,37,14.8,alpha,lower,3.582191228866577 +karman_re50,ppo,38,15.2,alpha,front,1.820047378540039 +karman_re50,ppo,38,15.2,alpha,upper,-4.981116771697998 +karman_re50,ppo,38,15.2,alpha,lower,4.045426368713379 +karman_re50,ppo,39,15.6,alpha,front,2.0739176273345947 +karman_re50,ppo,39,15.6,alpha,upper,-5.101588726043701 +karman_re50,ppo,39,15.6,alpha,lower,4.53330135345459 +karman_re50,ppo,40,16.0,alpha,front,2.0992400646209717 +karman_re50,ppo,40,16.0,alpha,upper,-5.073170185089111 +karman_re50,ppo,40,16.0,alpha,lower,4.833499908447266 +karman_re50,ppo,41,16.4,alpha,front,1.842176914215088 +karman_re50,ppo,41,16.4,alpha,upper,-4.760219573974609 +karman_re50,ppo,41,16.4,alpha,lower,4.77919340133667 +karman_re50,ppo,42,16.8,alpha,front,1.2774478197097778 +karman_re50,ppo,42,16.8,alpha,upper,-4.127651691436768 +karman_re50,ppo,42,16.8,alpha,lower,4.361649513244629 +karman_re50,ppo,43,17.2,alpha,front,0.47235530614852905 +karman_re50,ppo,43,17.2,alpha,upper,-3.2766427993774414 +karman_re50,ppo,43,17.2,alpha,lower,3.818880558013916 +karman_re50,ppo,44,17.6,alpha,front,-0.4022679924964905 +karman_re50,ppo,44,17.6,alpha,upper,-2.366665840148926 +karman_re50,ppo,44,17.6,alpha,lower,3.4479081630706787 +karman_re50,ppo,45,18.0,alpha,front,-1.1916362047195435 +karman_re50,ppo,45,18.0,alpha,upper,-1.596024513244629 +karman_re50,ppo,45,18.0,alpha,lower,3.3228416442871094 +karman_re50,ppo,46,18.4,alpha,front,-1.8835701942443848 +karman_re50,ppo,46,18.4,alpha,upper,-1.2677888870239258 +karman_re50,ppo,46,18.4,alpha,lower,3.211315155029297 +karman_re50,ppo,47,18.8,alpha,front,-2.484020709991455 +karman_re50,ppo,47,18.8,alpha,upper,-1.548253059387207 +karman_re50,ppo,47,18.8,alpha,lower,2.9611728191375732 +karman_re50,ppo,48,19.2,alpha,front,-2.9106831550598145 +karman_re50,ppo,48,19.2,alpha,upper,-2.2798843383789062 +karman_re50,ppo,48,19.2,alpha,lower,2.7480268478393555 +karman_re50,ppo,49,19.6,alpha,front,-3.035226583480835 +karman_re50,ppo,49,19.6,alpha,upper,-3.0551018714904785 +karman_re50,ppo,49,19.6,alpha,lower,2.940758228302002 +karman_re50,ppo,50,20.0,alpha,front,-2.914299726486206 +karman_re50,ppo,50,20.0,alpha,upper,-3.5808281898498535 +karman_re50,ppo,50,20.0,alpha,lower,3.4791018962860107 +karman_re50,ppo,51,20.4,alpha,front,-2.6937026977539062 +karman_re50,ppo,51,20.4,alpha,upper,-3.878629207611084 +karman_re50,ppo,51,20.4,alpha,lower,4.015596389770508 +karman_re50,ppo,52,20.8,alpha,front,-2.3889949321746826 +karman_re50,ppo,52,20.8,alpha,upper,-4.054755687713623 +karman_re50,ppo,52,20.8,alpha,lower,4.344883918762207 +karman_re50,ppo,53,21.2,alpha,front,-1.9426662921905518 +karman_re50,ppo,53,21.2,alpha,upper,-4.153276443481445 +karman_re50,ppo,53,21.2,alpha,lower,4.416290760040283 +karman_re50,ppo,54,21.6,alpha,front,-1.340590000152588 +karman_re50,ppo,54,21.6,alpha,upper,-4.157736778259277 +karman_re50,ppo,54,21.6,alpha,lower,4.21762228012085 +karman_re50,ppo,55,22.0,alpha,front,-0.6629393100738525 +karman_re50,ppo,55,22.0,alpha,upper,-4.13483190536499 +karman_re50,ppo,55,22.0,alpha,lower,3.7800421714782715 +karman_re50,ppo,56,22.4,alpha,front,-0.02973291277885437 +karman_re50,ppo,56,22.4,alpha,upper,-4.19675874710083 +karman_re50,ppo,56,22.4,alpha,lower,3.2968690395355225 +karman_re50,ppo,57,22.8,alpha,front,0.5259180068969727 +karman_re50,ppo,57,22.8,alpha,upper,-4.373363018035889 +karman_re50,ppo,57,22.8,alpha,lower,3.028409719467163 +karman_re50,ppo,58,23.2,alpha,front,1.0195505619049072 +karman_re50,ppo,58,23.2,alpha,upper,-4.563307762145996 +karman_re50,ppo,58,23.2,alpha,lower,3.064202308654785 +karman_re50,ppo,59,23.6,alpha,front,1.4413633346557617 +karman_re50,ppo,59,23.6,alpha,upper,-4.716862201690674 +karman_re50,ppo,59,23.6,alpha,lower,3.3586673736572266 +karman_re50,ppo,60,24.0,alpha,front,1.7727285623550415 +karman_re50,ppo,60,24.0,alpha,upper,-4.87777853012085 +karman_re50,ppo,60,24.0,alpha,lower,3.8275249004364014 +karman_re50,ppo,61,24.4,alpha,front,1.991894006729126 +karman_re50,ppo,61,24.4,alpha,upper,-5.033751010894775 +karman_re50,ppo,61,24.4,alpha,lower,4.346889972686768 +karman_re50,ppo,62,24.8,alpha,front,2.0335581302642822 +karman_re50,ppo,62,24.8,alpha,upper,-5.062437057495117 +karman_re50,ppo,62,24.8,alpha,lower,4.737066745758057 +karman_re50,ppo,63,25.2,alpha,front,1.8197851181030273 +karman_re50,ppo,63,25.2,alpha,upper,-4.823153018951416 +karman_re50,ppo,63,25.2,alpha,lower,4.836263656616211 +karman_re50,ppo,64,25.6,alpha,front,1.3163297176361084 +karman_re50,ppo,64,25.6,alpha,upper,-4.252592086791992 +karman_re50,ppo,64,25.6,alpha,lower,4.612208366394043 +karman_re50,ppo,65,26.0,alpha,front,0.5481809377670288 +karman_re50,ppo,65,26.0,alpha,upper,-3.3859429359436035 +karman_re50,ppo,65,26.0,alpha,lower,4.176041126251221 +karman_re50,ppo,66,26.4,alpha,front,-0.3789770305156708 +karman_re50,ppo,66,26.4,alpha,upper,-2.3572583198547363 +karman_re50,ppo,66,26.4,alpha,lower,3.681213855743408 +karman_re50,ppo,67,26.8,alpha,front,-1.2807385921478271 +karman_re50,ppo,67,26.8,alpha,upper,-1.4111969470977783 +karman_re50,ppo,67,26.8,alpha,lower,3.2535698413848877 +karman_re50,ppo,68,27.2,alpha,front,-2.007840871810913 +karman_re50,ppo,68,27.2,alpha,upper,-0.9559874534606934 +karman_re50,ppo,68,27.2,alpha,lower,2.963836908340454 +karman_re50,ppo,69,27.6,alpha,front,-2.607090950012207 +karman_re50,ppo,69,27.6,alpha,upper,-1.1675851345062256 +karman_re50,ppo,69,27.6,alpha,lower,2.628624439239502 +karman_re50,ppo,70,28.0,alpha,front,-3.0889370441436768 +karman_re50,ppo,70,28.0,alpha,upper,-1.846040964126587 +karman_re50,ppo,70,28.0,alpha,lower,2.2535362243652344 +karman_re50,ppo,71,28.4,alpha,front,-3.260042905807495 +karman_re50,ppo,71,28.4,alpha,upper,-2.58608341217041 +karman_re50,ppo,71,28.4,alpha,lower,2.369270086288452 +karman_re50,ppo,72,28.8,alpha,front,-3.1907403469085693 +karman_re50,ppo,72,28.8,alpha,upper,-3.1371705532073975 +karman_re50,ppo,72,28.8,alpha,lower,2.940192222595215 +karman_re50,ppo,73,29.2,alpha,front,-3.060047149658203 +karman_re50,ppo,73,29.2,alpha,upper,-3.5647621154785156 +karman_re50,ppo,73,29.2,alpha,lower,3.5582151412963867 +karman_re50,ppo,74,29.6,alpha,front,-2.8952651023864746 +karman_re50,ppo,74,29.6,alpha,upper,-3.8684234619140625 +karman_re50,ppo,74,29.6,alpha,lower,3.8978183269500732 +karman_re50,ppo,75,30.0,alpha,front,-2.5185394287109375 +karman_re50,ppo,75,30.0,alpha,upper,-4.028477668762207 +karman_re50,ppo,75,30.0,alpha,lower,4.104448318481445 +karman_re50,ppo,76,30.4,alpha,front,-1.972583293914795 +karman_re50,ppo,76,30.4,alpha,upper,-3.972386360168457 +karman_re50,ppo,76,30.4,alpha,lower,4.007783889770508 +karman_re50,ppo,77,30.8,alpha,front,-1.337743878364563 +karman_re50,ppo,77,30.8,alpha,upper,-3.828561305999756 +karman_re50,ppo,77,30.8,alpha,lower,3.643929958343506 +karman_re50,ppo,78,31.2,alpha,front,-0.7192845344543457 +karman_re50,ppo,78,31.2,alpha,upper,-3.7636802196502686 +karman_re50,ppo,78,31.2,alpha,lower,3.2228944301605225 +karman_re50,ppo,79,31.6,alpha,front,-0.133131206035614 +karman_re50,ppo,79,31.6,alpha,upper,-3.8822617530822754 +karman_re50,ppo,79,31.6,alpha,lower,3.0617005825042725 +karman_re50,ppo,80,32.0,alpha,front,0.40849313139915466 +karman_re50,ppo,80,32.0,alpha,upper,-4.141012191772461 +karman_re50,ppo,80,32.0,alpha,lower,3.2273006439208984 +karman_re50,ppo,81,32.4,alpha,front,0.8725225329399109 +karman_re50,ppo,81,32.4,alpha,upper,-4.464076519012451 +karman_re50,ppo,81,32.4,alpha,lower,3.636108875274658 +karman_re50,ppo,82,32.8,alpha,front,1.2538537979125977 +karman_re50,ppo,82,32.8,alpha,upper,-4.803295612335205 +karman_re50,ppo,82,32.8,alpha,lower,4.183404445648193 +karman_re50,ppo,83,33.2,alpha,front,1.5547724962234497 +karman_re50,ppo,83,33.2,alpha,upper,-5.084771633148193 +karman_re50,ppo,83,33.2,alpha,lower,4.753469944000244 +karman_re50,ppo,84,33.6,alpha,front,1.721865177154541 +karman_re50,ppo,84,33.6,alpha,upper,-5.21386194229126 +karman_re50,ppo,84,33.6,alpha,lower,5.190330505371094 +karman_re50,ppo,85,34.0,alpha,front,1.6564643383026123 +karman_re50,ppo,85,34.0,alpha,upper,-5.062185287475586 +karman_re50,ppo,85,34.0,alpha,lower,5.302981376647949 +karman_re50,ppo,86,34.4,alpha,front,1.2802832126617432 +karman_re50,ppo,86,34.4,alpha,upper,-4.567865371704102 +karman_re50,ppo,86,34.4,alpha,lower,5.002811908721924 +karman_re50,ppo,87,34.8,alpha,front,0.5767936706542969 +karman_re50,ppo,87,34.8,alpha,upper,-3.7600111961364746 +karman_re50,ppo,87,34.8,alpha,lower,4.371478080749512 +karman_re50,ppo,88,35.2,alpha,front,-0.3623262047767639 +karman_re50,ppo,88,35.2,alpha,upper,-2.7397356033325195 +karman_re50,ppo,88,35.2,alpha,lower,3.6479551792144775 +karman_re50,ppo,89,35.6,alpha,front,-1.3532413244247437 +karman_re50,ppo,89,35.6,alpha,upper,-1.6582310199737549 +karman_re50,ppo,89,35.6,alpha,lower,3.0375614166259766 +karman_re50,ppo,90,36.0,alpha,front,-2.2017405033111572 +karman_re50,ppo,90,36.0,alpha,upper,-0.9039983153343201 +karman_re50,ppo,90,36.0,alpha,lower,2.6155567169189453 +karman_re50,ppo,91,36.4,alpha,front,-2.8953299522399902 +karman_re50,ppo,91,36.4,alpha,upper,-0.8548507690429688 +karman_re50,ppo,91,36.4,alpha,lower,2.1731810569763184 +karman_re50,ppo,92,36.8,alpha,front,-3.467991352081299 +karman_re50,ppo,92,36.8,alpha,upper,-1.4456610679626465 +karman_re50,ppo,92,36.8,alpha,lower,1.612628698348999 +karman_re50,ppo,93,37.2,alpha,front,-3.681290864944458 +karman_re50,ppo,93,37.2,alpha,upper,-2.234679698944092 +karman_re50,ppo,93,37.2,alpha,lower,1.6022257804870605 +karman_re50,ppo,94,37.6,alpha,front,-3.5427138805389404 +karman_re50,ppo,94,37.6,alpha,upper,-2.845181465148926 +karman_re50,ppo,94,37.6,alpha,lower,2.2649731636047363 +karman_re50,ppo,95,38.0,alpha,front,-3.3056137561798096 +karman_re50,ppo,95,38.0,alpha,upper,-3.296638250350952 +karman_re50,ppo,95,38.0,alpha,lower,3.091702461242676 +karman_re50,ppo,96,38.4,alpha,front,-3.054903507232666 +karman_re50,ppo,96,38.4,alpha,upper,-3.599372625350952 +karman_re50,ppo,96,38.4,alpha,lower,3.661302089691162 +karman_re50,ppo,97,38.8,alpha,front,-2.7088401317596436 +karman_re50,ppo,97,38.8,alpha,upper,-3.694270610809326 +karman_re50,ppo,97,38.8,alpha,lower,3.861262083053589 +karman_re50,ppo,98,39.2,alpha,front,-2.1626622676849365 +karman_re50,ppo,98,39.2,alpha,upper,-3.591442823410034 +karman_re50,ppo,98,39.2,alpha,lower,3.8369715213775635 +karman_re50,ppo,99,39.6,alpha,front,-1.4672644138336182 +karman_re50,ppo,99,39.6,alpha,upper,-3.424959659576416 +karman_re50,ppo,99,39.6,alpha,lower,3.656860113143921 +karman_re50,ppo,100,40.0,alpha,front,-0.7821140289306641 +karman_re50,ppo,100,40.0,alpha,upper,-3.4178836345672607 +karman_re50,ppo,100,40.0,alpha,lower,3.4107744693756104 +karman_re50,ppo,101,40.4,alpha,front,-0.1659805029630661 +karman_re50,ppo,101,40.4,alpha,upper,-3.6717729568481445 +karman_re50,ppo,101,40.4,alpha,lower,3.27986478805542 +karman_re50,ppo,102,40.8,alpha,front,0.40511736273765564 +karman_re50,ppo,102,40.8,alpha,upper,-4.087703704833984 +karman_re50,ppo,102,40.8,alpha,lower,3.375976324081421 +karman_re50,ppo,103,41.2,alpha,front,0.9290141463279724 +karman_re50,ppo,103,41.2,alpha,upper,-4.4844183921813965 +karman_re50,ppo,103,41.2,alpha,lower,3.703141927719116 +karman_re50,ppo,104,41.6,alpha,front,1.3712857961654663 +karman_re50,ppo,104,41.6,alpha,upper,-4.802361011505127 +karman_re50,ppo,104,41.6,alpha,lower,4.201348304748535 +karman_re50,ppo,105,42.0,alpha,front,1.7055256366729736 +karman_re50,ppo,105,42.0,alpha,upper,-5.0780463218688965 +karman_re50,ppo,105,42.0,alpha,lower,4.733867168426514 +karman_re50,ppo,106,42.4,alpha,front,1.9002270698547363 +karman_re50,ppo,106,42.4,alpha,upper,-5.253325939178467 +karman_re50,ppo,106,42.4,alpha,lower,5.113411903381348 +karman_re50,ppo,107,42.8,alpha,front,1.8841713666915894 +karman_re50,ppo,107,42.8,alpha,upper,-5.184128284454346 +karman_re50,ppo,107,42.8,alpha,lower,5.165677547454834 +karman_re50,ppo,108,43.2,alpha,front,1.5620447397232056 +karman_re50,ppo,108,43.2,alpha,upper,-4.78017520904541 +karman_re50,ppo,108,43.2,alpha,lower,4.790618896484375 +karman_re50,ppo,109,43.6,alpha,front,0.9187095165252686 +karman_re50,ppo,109,43.6,alpha,upper,-4.089522838592529 +karman_re50,ppo,109,43.6,alpha,lower,4.138816833496094 +karman_re50,ppo,110,44.0,alpha,front,0.07138970494270325 +karman_re50,ppo,110,44.0,alpha,upper,-3.1921114921569824 +karman_re50,ppo,110,44.0,alpha,lower,3.562432289123535 +karman_re50,ppo,111,44.4,alpha,front,-0.7872726917266846 +karman_re50,ppo,111,44.4,alpha,upper,-2.2014317512512207 +karman_re50,ppo,111,44.4,alpha,lower,3.3382937908172607 +karman_re50,ppo,112,44.8,alpha,front,-1.60598886013031 +karman_re50,ppo,112,44.8,alpha,upper,-1.370058536529541 +karman_re50,ppo,112,44.8,alpha,lower,3.250986337661743 +karman_re50,ppo,113,45.2,alpha,front,-2.4260330200195312 +karman_re50,ppo,113,45.2,alpha,upper,-1.073049783706665 +karman_re50,ppo,113,45.2,alpha,lower,2.838040590286255 +karman_re50,ppo,114,45.6,alpha,front,-3.1463630199432373 +karman_re50,ppo,114,45.6,alpha,upper,-1.4540820121765137 +karman_re50,ppo,114,45.6,alpha,lower,2.1732914447784424 +karman_re50,ppo,115,46.0,alpha,front,-3.5358173847198486 +karman_re50,ppo,115,46.0,alpha,upper,-2.2579469680786133 +karman_re50,ppo,115,46.0,alpha,lower,1.8724552392959595 +karman_re50,ppo,116,46.4,alpha,front,-3.4719278812408447 +karman_re50,ppo,116,46.4,alpha,upper,-3.0107054710388184 +karman_re50,ppo,116,46.4,alpha,lower,2.3139007091522217 +karman_re50,ppo,117,46.8,alpha,front,-3.167919397354126 +karman_re50,ppo,117,46.8,alpha,upper,-3.482433557510376 +karman_re50,ppo,117,46.8,alpha,lower,3.124762535095215 +karman_re50,ppo,118,47.2,alpha,front,-2.8435401916503906 +karman_re50,ppo,118,47.2,alpha,upper,-3.6937413215637207 +karman_re50,ppo,118,47.2,alpha,lower,3.7645184993743896 +karman_re50,ppo,119,47.6,alpha,front,-2.494236707687378 +karman_re50,ppo,119,47.6,alpha,upper,-3.7259902954101562 +karman_re50,ppo,119,47.6,alpha,lower,4.057556629180908 +karman_re50,ppo,120,48.0,alpha,front,-1.9988343715667725 +karman_re50,ppo,120,48.0,alpha,upper,-3.6775434017181396 +karman_re50,ppo,120,48.0,alpha,lower,4.137117862701416 +karman_re50,ppo,121,48.4,alpha,front,-1.3246170282363892 +karman_re50,ppo,121,48.4,alpha,upper,-3.633751153945923 +karman_re50,ppo,121,48.4,alpha,lower,4.101635456085205 +karman_re50,ppo,122,48.8,alpha,front,-0.609336793422699 +karman_re50,ppo,122,48.8,alpha,upper,-3.7315776348114014 +karman_re50,ppo,122,48.8,alpha,lower,3.887086868286133 +karman_re50,ppo,123,49.2,alpha,front,0.026798726990818977 +karman_re50,ppo,123,49.2,alpha,upper,-4.048786163330078 +karman_re50,ppo,123,49.2,alpha,lower,3.565990686416626 +karman_re50,ppo,124,49.6,alpha,front,0.5993986129760742 +karman_re50,ppo,124,49.6,alpha,upper,-4.450552940368652 +karman_re50,ppo,124,49.6,alpha,lower,3.371990203857422 +karman_re50,ppo,125,50.0,alpha,front,1.145518183708191 +karman_re50,ppo,125,50.0,alpha,upper,-4.700454235076904 +karman_re50,ppo,125,50.0,alpha,lower,3.44771409034729 +karman_re50,ppo,126,50.4,alpha,front,1.6011041402816772 +karman_re50,ppo,126,50.4,alpha,upper,-4.824919700622559 +karman_re50,ppo,126,50.4,alpha,lower,3.751375675201416 +karman_re50,ppo,127,50.8,alpha,front,1.9134521484375 +karman_re50,ppo,127,50.8,alpha,upper,-4.978821754455566 +karman_re50,ppo,127,50.8,alpha,lower,4.116458892822266 +karman_re50,ppo,128,51.2,alpha,front,2.094599485397339 +karman_re50,ppo,128,51.2,alpha,upper,-5.1328887939453125 +karman_re50,ppo,128,51.2,alpha,lower,4.435292720794678 +karman_re50,ppo,129,51.6,alpha,front,2.104152202606201 +karman_re50,ppo,129,51.6,alpha,upper,-5.12214469909668 +karman_re50,ppo,129,51.6,alpha,lower,4.581728458404541 +karman_re50,ppo,130,52.0,alpha,front,1.8586231470108032 +karman_re50,ppo,130,52.0,alpha,upper,-4.820830345153809 +karman_re50,ppo,130,52.0,alpha,lower,4.46914529800415 +karman_re50,ppo,131,52.4,alpha,front,1.3233311176300049 +karman_re50,ppo,131,52.4,alpha,upper,-4.208889484405518 +karman_re50,ppo,131,52.4,alpha,lower,4.14130163192749 +karman_re50,ppo,132,52.8,alpha,front,0.5735421180725098 +karman_re50,ppo,132,52.8,alpha,upper,-3.354111671447754 +karman_re50,ppo,132,52.8,alpha,lower,3.8385376930236816 +karman_re50,ppo,133,53.2,alpha,front,-0.26507294178009033 +karman_re50,ppo,133,53.2,alpha,upper,-2.385385036468506 +karman_re50,ppo,133,53.2,alpha,lower,3.6924448013305664 +karman_re50,ppo,134,53.6,alpha,front,-1.1132903099060059 +karman_re50,ppo,134,53.6,alpha,upper,-1.5289738178253174 +karman_re50,ppo,134,53.6,alpha,lower,3.5356082916259766 +karman_re50,ppo,135,54.0,alpha,front,-1.9251214265823364 +karman_re50,ppo,135,54.0,alpha,upper,-1.122175931930542 +karman_re50,ppo,135,54.0,alpha,lower,3.1531147956848145 +karman_re50,ppo,136,54.4,alpha,front,-2.5992698669433594 +karman_re50,ppo,136,54.4,alpha,upper,-1.3536484241485596 +karman_re50,ppo,136,54.4,alpha,lower,2.654973268508911 +karman_re50,ppo,137,54.8,alpha,front,-3.0256452560424805 +karman_re50,ppo,137,54.8,alpha,upper,-2.0681135654449463 +karman_re50,ppo,137,54.8,alpha,lower,2.355720043182373 +karman_re50,ppo,138,55.2,alpha,front,-3.108596086502075 +karman_re50,ppo,138,55.2,alpha,upper,-2.857555866241455 +karman_re50,ppo,138,55.2,alpha,lower,2.56740140914917 +karman_re50,ppo,139,55.6,alpha,front,-2.9482624530792236 +karman_re50,ppo,139,55.6,alpha,upper,-3.4067375659942627 +karman_re50,ppo,139,55.6,alpha,lower,3.1896166801452637 +karman_re50,ppo,140,56.0,alpha,front,-2.7369916439056396 +karman_re50,ppo,140,56.0,alpha,upper,-3.7266669273376465 +karman_re50,ppo,140,56.0,alpha,lower,3.8211829662323 +karman_re50,ppo,141,56.4,alpha,front,-2.485456705093384 +karman_re50,ppo,141,56.4,alpha,upper,-3.935478448867798 +karman_re50,ppo,141,56.4,alpha,lower,4.239401340484619 +karman_re50,ppo,142,56.8,alpha,front,-2.0974977016448975 +karman_re50,ppo,142,56.8,alpha,upper,-4.077819347381592 +karman_re50,ppo,142,56.8,alpha,lower,4.445507526397705 +karman_re50,ppo,143,57.2,alpha,front,-1.5299261808395386 +karman_re50,ppo,143,57.2,alpha,upper,-4.136744499206543 +karman_re50,ppo,143,57.2,alpha,lower,4.425127983093262 +karman_re50,ppo,144,57.6,alpha,front,-0.861994743347168 +karman_re50,ppo,144,57.6,alpha,upper,-4.137887954711914 +karman_re50,ppo,144,57.6,alpha,lower,4.087190628051758 +karman_re50,ppo,145,58.0,alpha,front,-0.2029503434896469 +karman_re50,ppo,145,58.0,alpha,upper,-4.200397968292236 +karman_re50,ppo,145,58.0,alpha,lower,3.6028716564178467 +karman_re50,ppo,146,58.4,alpha,front,0.3702332675457001 +karman_re50,ppo,146,58.4,alpha,upper,-4.360743045806885 +karman_re50,ppo,146,58.4,alpha,lower,3.236558675765991 +karman_re50,ppo,147,58.8,alpha,front,0.8782054781913757 +karman_re50,ppo,147,58.8,alpha,upper,-4.576489448547363 +karman_re50,ppo,147,58.8,alpha,lower,3.170614719390869 +karman_re50,ppo,148,59.2,alpha,front,1.3214058876037598 +karman_re50,ppo,148,59.2,alpha,upper,-4.7562055587768555 +karman_re50,ppo,148,59.2,alpha,lower,3.3893020153045654 +karman_re50,ppo,149,59.6,alpha,front,1.6798087358474731 +karman_re50,ppo,149,59.6,alpha,upper,-4.917026519775391 +karman_re50,ppo,149,59.6,alpha,lower,3.7782175540924072 +karman_re50,ppo,150,60.0,alpha,front,1.9381916522979736 +karman_re50,ppo,150,60.0,alpha,upper,-5.061725616455078 +karman_re50,ppo,150,60.0,alpha,lower,4.209649085998535 +karman_re50,ppo,151,60.4,alpha,front,2.051527738571167 +karman_re50,ppo,151,60.4,alpha,upper,-5.121814727783203 +karman_re50,ppo,151,60.4,alpha,lower,4.559552192687988 +karman_re50,ppo,152,60.8,alpha,front,1.9370574951171875 +karman_re50,ppo,152,60.8,alpha,upper,-4.957564353942871 +karman_re50,ppo,152,60.8,alpha,lower,4.684047698974609 +karman_re50,ppo,153,61.2,alpha,front,1.5378572940826416 +karman_re50,ppo,153,61.2,alpha,upper,-4.4753007888793945 +karman_re50,ppo,153,61.2,alpha,lower,4.528051853179932 +karman_re50,ppo,154,61.6,alpha,front,0.8599743247032166 +karman_re50,ppo,154,61.6,alpha,upper,-3.6878602504730225 +karman_re50,ppo,154,61.6,alpha,lower,4.191528797149658 +karman_re50,ppo,155,62.0,alpha,front,-0.017636358737945557 +karman_re50,ppo,155,62.0,alpha,upper,-2.678727149963379 +karman_re50,ppo,155,62.0,alpha,lower,3.8036675453186035 +karman_re50,ppo,156,62.4,alpha,front,-0.9507606029510498 +karman_re50,ppo,156,62.4,alpha,upper,-1.6452219486236572 +karman_re50,ppo,156,62.4,alpha,lower,3.4052510261535645 +karman_re50,ppo,157,62.8,alpha,front,-1.7692033052444458 +karman_re50,ppo,157,62.8,alpha,upper,-0.9738285541534424 +karman_re50,ppo,157,62.8,alpha,lower,3.0461318492889404 +karman_re50,ppo,158,63.2,alpha,front,-2.409710645675659 +karman_re50,ppo,158,63.2,alpha,upper,-0.9847891926765442 +karman_re50,ppo,158,63.2,alpha,lower,2.7223875522613525 +karman_re50,ppo,159,63.6,alpha,front,-2.9230313301086426 +karman_re50,ppo,159,63.6,alpha,upper,-1.584399938583374 +karman_re50,ppo,159,63.6,alpha,lower,2.3451433181762695 +karman_re50,ppo,160,64.0,alpha,front,-3.1773624420166016 +karman_re50,ppo,160,64.0,alpha,upper,-2.388355255126953 +karman_re50,ppo,160,64.0,alpha,lower,2.302454948425293 +karman_re50,ppo,161,64.4,alpha,front,-3.1394872665405273 +karman_re50,ppo,161,64.4,alpha,upper,-3.0152974128723145 +karman_re50,ppo,161,64.4,alpha,lower,2.7888083457946777 +karman_re50,ppo,162,64.8,alpha,front,-3.018695592880249 +karman_re50,ppo,162,64.8,alpha,upper,-3.4496002197265625 +karman_re50,ppo,162,64.8,alpha,lower,3.3780574798583984 +karman_re50,ppo,163,65.2,alpha,front,-2.828287124633789 +karman_re50,ppo,163,65.2,alpha,upper,-3.8012847900390625 +karman_re50,ppo,163,65.2,alpha,lower,3.9608185291290283 +karman_re50,ppo,164,65.6,alpha,front,-2.5379815101623535 +karman_re50,ppo,164,65.6,alpha,upper,-4.014886379241943 +karman_re50,ppo,164,65.6,alpha,lower,4.222311019897461 +karman_re50,ppo,165,66.0,alpha,front,-2.072749137878418 +karman_re50,ppo,165,66.0,alpha,upper,-4.076438903808594 +karman_re50,ppo,165,66.0,alpha,lower,4.227538108825684 +karman_re50,ppo,166,66.4,alpha,front,-1.4515482187271118 +karman_re50,ppo,166,66.4,alpha,upper,-3.999131202697754 +karman_re50,ppo,166,66.4,alpha,lower,3.967683792114258 +karman_re50,ppo,167,66.8,alpha,front,-0.8088232278823853 +karman_re50,ppo,167,66.8,alpha,upper,-3.919847011566162 +karman_re50,ppo,167,66.8,alpha,lower,3.526674747467041 +karman_re50,ppo,168,67.2,alpha,front,-0.2238776832818985 +karman_re50,ppo,168,67.2,alpha,upper,-3.99131178855896 +karman_re50,ppo,168,67.2,alpha,lower,3.199324369430542 +karman_re50,ppo,169,67.6,alpha,front,0.3093929588794708 +karman_re50,ppo,169,67.6,alpha,upper,-4.21461820602417 +karman_re50,ppo,169,67.6,alpha,lower,3.181762218475342 +karman_re50,ppo,170,68.0,alpha,front,0.7926231622695923 +karman_re50,ppo,170,68.0,alpha,upper,-4.498116970062256 +karman_re50,ppo,170,68.0,alpha,lower,3.4609832763671875 +karman_re50,ppo,171,68.4,alpha,front,1.1996735334396362 +karman_re50,ppo,171,68.4,alpha,upper,-4.775864601135254 +karman_re50,ppo,171,68.4,alpha,lower,3.923485040664673 +karman_re50,ppo,172,68.8,alpha,front,1.5167094469070435 +karman_re50,ppo,172,68.8,alpha,upper,-5.028544902801514 +karman_re50,ppo,172,68.8,alpha,lower,4.436134338378906 +karman_re50,ppo,173,69.2,alpha,front,1.724251627922058 +karman_re50,ppo,173,69.2,alpha,upper,-5.1936421394348145 +karman_re50,ppo,173,69.2,alpha,lower,4.8763227462768555 +karman_re50,ppo,174,69.6,alpha,front,1.7382655143737793 +karman_re50,ppo,174,69.6,alpha,upper,-5.146636009216309 +karman_re50,ppo,174,69.6,alpha,lower,5.086820125579834 +karman_re50,ppo,175,70.0,alpha,front,1.4805517196655273 +karman_re50,ppo,175,70.0,alpha,upper,-4.7795634269714355 +karman_re50,ppo,175,70.0,alpha,lower,4.968745708465576 +karman_re50,ppo,176,70.4,alpha,front,0.9103153944015503 +karman_re50,ppo,176,70.4,alpha,upper,-4.083372116088867 +karman_re50,ppo,176,70.4,alpha,lower,4.544197082519531 +karman_re50,ppo,177,70.8,alpha,front,0.06923630833625793 +karman_re50,ppo,177,70.8,alpha,upper,-3.122468948364258 +karman_re50,ppo,177,70.8,alpha,lower,3.9591872692108154 +karman_re50,ppo,178,71.2,alpha,front,-0.913093090057373 +karman_re50,ppo,178,71.2,alpha,upper,-2.0233678817749023 +karman_re50,ppo,178,71.2,alpha,lower,3.358966112136841 +karman_re50,ppo,179,71.6,alpha,front,-1.8355607986450195 +karman_re50,ppo,179,71.6,alpha,upper,-1.086087703704834 +karman_re50,ppo,179,71.6,alpha,lower,2.8408403396606445 +karman_re50,ppo,180,72.0,alpha,front,-2.576450824737549 +karman_re50,ppo,180,72.0,alpha,upper,-0.7594482898712158 +karman_re50,ppo,180,72.0,alpha,lower,2.4070358276367188 +karman_re50,ppo,181,72.4,alpha,front,-3.188551187515259 +karman_re50,ppo,181,72.4,alpha,upper,-1.1536445617675781 +karman_re50,ppo,181,72.4,alpha,lower,1.8779373168945312 +karman_re50,ppo,182,72.8,alpha,front,-3.546825408935547 +karman_re50,ppo,182,72.8,alpha,upper,-1.9290485382080078 +karman_re50,ppo,182,72.8,alpha,lower,1.6141443252563477 +karman_re50,ppo,183,73.2,alpha,front,-3.5119240283966064 +karman_re50,ppo,183,73.2,alpha,upper,-2.610661029815674 +karman_re50,ppo,183,73.2,alpha,lower,2.0616321563720703 +karman_re50,ppo,184,73.6,alpha,front,-3.316202402114868 +karman_re50,ppo,184,73.6,alpha,upper,-3.1013216972351074 +karman_re50,ppo,184,73.6,alpha,lower,2.8419687747955322 +karman_re50,ppo,185,74.0,alpha,front,-3.106471061706543 +karman_re50,ppo,185,74.0,alpha,upper,-3.4721312522888184 +karman_re50,ppo,185,74.0,alpha,lower,3.51940655708313 +karman_re50,ppo,186,74.4,alpha,front,-2.8387022018432617 +karman_re50,ppo,186,74.4,alpha,upper,-3.692692518234253 +karman_re50,ppo,186,74.4,alpha,lower,3.8679935932159424 +karman_re50,ppo,187,74.8,alpha,front,-2.3994669914245605 +karman_re50,ppo,187,74.8,alpha,upper,-3.7179009914398193 +karman_re50,ppo,187,74.8,alpha,lower,3.947164297103882 +karman_re50,ppo,188,75.2,alpha,front,-1.7665876150131226 +karman_re50,ppo,188,75.2,alpha,upper,-3.600170612335205 +karman_re50,ppo,188,75.2,alpha,lower,3.8411812782287598 +karman_re50,ppo,189,75.6,alpha,front,-1.0795766115188599 +karman_re50,ppo,189,75.6,alpha,upper,-3.5138862133026123 +karman_re50,ppo,189,75.6,alpha,lower,3.565777063369751 +karman_re50,ppo,190,76.0,alpha,front,-0.4536656439304352 +karman_re50,ppo,190,76.0,alpha,upper,-3.629563570022583 +karman_re50,ppo,190,76.0,alpha,lower,3.3128843307495117 +karman_re50,ppo,191,76.4,alpha,front,0.11967867612838745 +karman_re50,ppo,191,76.4,alpha,upper,-3.948840618133545 +karman_re50,ppo,191,76.4,alpha,lower,3.296977996826172 +karman_re50,ppo,192,76.8,alpha,front,0.6528098583221436 +karman_re50,ppo,192,76.8,alpha,upper,-4.333642482757568 +karman_re50,ppo,192,76.8,alpha,lower,3.5386605262756348 +karman_re50,ppo,193,77.2,alpha,front,1.1159915924072266 +karman_re50,ppo,193,77.2,alpha,upper,-4.67836332321167 +karman_re50,ppo,193,77.2,alpha,lower,3.9860639572143555 +karman_re50,ppo,194,77.6,alpha,front,1.4773141145706177 +karman_re50,ppo,194,77.6,alpha,upper,-4.971581935882568 +karman_re50,ppo,194,77.6,alpha,lower,4.504830360412598 +karman_re50,ppo,195,78.0,alpha,front,1.731536626815796 +karman_re50,ppo,195,78.0,alpha,upper,-5.200878143310547 +karman_re50,ppo,195,78.0,alpha,lower,4.958564281463623 +karman_re50,ppo,196,78.4,alpha,front,1.8187564611434937 +karman_re50,ppo,196,78.4,alpha,upper,-5.243125915527344 +karman_re50,ppo,196,78.4,alpha,lower,5.175965309143066 +karman_re50,ppo,197,78.8,alpha,front,1.6421165466308594 +karman_re50,ppo,197,78.8,alpha,upper,-4.978818416595459 +karman_re50,ppo,197,78.8,alpha,lower,5.021188735961914 +karman_re50,ppo,198,79.2,alpha,front,1.1455518007278442 +karman_re50,ppo,198,79.2,alpha,upper,-4.395453929901123 +karman_re50,ppo,198,79.2,alpha,lower,4.513032913208008 +karman_re50,ppo,199,79.6,alpha,front,0.37605008482933044 +karman_re50,ppo,199,79.6,alpha,upper,-3.5632236003875732 +karman_re50,ppo,199,79.6,alpha,lower,3.888484477996826 +karman_re50,ppo,0,0.0,omega,front,-0.015056516043841839 +karman_re50,ppo,0,0.0,omega,upper,-0.02316143549978733 +karman_re50,ppo,0,0.0,omega,lower,0.03975478187203407 +karman_re50,ppo,1,0.4,omega,front,-0.019955214112997055 +karman_re50,ppo,1,0.4,omega,upper,-0.020176153630018234 +karman_re50,ppo,1,0.4,omega,lower,0.033563192933797836 +karman_re50,ppo,2,0.8,omega,front,-0.02321718819439411 +karman_re50,ppo,2,0.8,omega,upper,-0.017729783430695534 +karman_re50,ppo,2,0.8,omega,lower,0.030295103788375854 +karman_re50,ppo,3,1.2,omega,front,-0.02762601338326931 +karman_re50,ppo,3,1.2,omega,upper,-0.018706822767853737 +karman_re50,ppo,3,1.2,omega,lower,0.027702249586582184 +karman_re50,ppo,4,1.6,omega,front,-0.030411798506975174 +karman_re50,ppo,4,1.6,omega,upper,-0.022382540628314018 +karman_re50,ppo,4,1.6,omega,lower,0.027787696570158005 +karman_re50,ppo,5,2.0,omega,front,-0.031070655211806297 +karman_re50,ppo,5,2.0,omega,upper,-0.025896629318594933 +karman_re50,ppo,5,2.0,omega,lower,0.031175732612609863 +karman_re50,ppo,6,2.4,omega,front,-0.030807912349700928 +karman_re50,ppo,6,2.4,omega,upper,-0.0285390242934227 +karman_re50,ppo,6,2.4,omega,lower,0.03543027862906456 +karman_re50,ppo,7,2.8,omega,front,-0.030156148597598076 +karman_re50,ppo,7,2.8,omega,upper,-0.030613228678703308 +karman_re50,ppo,7,2.8,omega,lower,0.03788993880152702 +karman_re50,ppo,8,3.2,omega,front,-0.028607293963432312 +karman_re50,ppo,8,3.2,omega,upper,-0.03214153274893761 +karman_re50,ppo,8,3.2,omega,lower,0.037993840873241425 +karman_re50,ppo,9,3.6,omega,front,-0.025632040575146675 +karman_re50,ppo,9,3.6,omega,upper,-0.03315087407827377 +karman_re50,ppo,9,3.6,omega,lower,0.03632105886936188 +karman_re50,ppo,10,4.0,omega,front,-0.0215013325214386 +karman_re50,ppo,10,4.0,omega,upper,-0.033532824367284775 +karman_re50,ppo,10,4.0,omega,lower,0.03291858732700348 +karman_re50,ppo,11,4.4,omega,front,-0.016558071598410606 +karman_re50,ppo,11,4.4,omega,upper,-0.033003535121679306 +karman_re50,ppo,11,4.4,omega,lower,0.029136981815099716 +karman_re50,ppo,12,4.8,omega,front,-0.011603036895394325 +karman_re50,ppo,12,4.8,omega,upper,-0.03253272548317909 +karman_re50,ppo,12,4.8,omega,lower,0.026882333680987358 +karman_re50,ppo,13,5.2,omega,front,-0.007149907760322094 +karman_re50,ppo,13,5.2,omega,upper,-0.0336165651679039 +karman_re50,ppo,13,5.2,omega,lower,0.02797311544418335 +karman_re50,ppo,14,5.6,omega,front,-0.0033165717031806707 +karman_re50,ppo,14,5.6,omega,upper,-0.036428604274988174 +karman_re50,ppo,14,5.6,omega,lower,0.03209570422768593 +karman_re50,ppo,15,6.0,omega,front,-4.743933459394611e-06 +karman_re50,ppo,15,6.0,omega,upper,-0.04011297598481178 +karman_re50,ppo,15,6.0,omega,lower,0.037780698388814926 +karman_re50,ppo,16,6.4,omega,front,0.002954278839752078 +karman_re50,ppo,16,6.4,omega,upper,-0.043512433767318726 +karman_re50,ppo,16,6.4,omega,lower,0.043912652879953384 +karman_re50,ppo,17,6.8,omega,front,0.005215449258685112 +karman_re50,ppo,17,6.8,omega,upper,-0.04581165686249733 +karman_re50,ppo,17,6.8,omega,lower,0.0495513416826725 +karman_re50,ppo,18,7.2,omega,front,0.006098252255469561 +karman_re50,ppo,18,7.2,omega,upper,-0.04595779627561569 +karman_re50,ppo,18,7.2,omega,lower,0.053543463349342346 +karman_re50,ppo,19,7.6,omega,front,0.004811814986169338 +karman_re50,ppo,19,7.6,omega,upper,-0.0431864969432354 +karman_re50,ppo,19,7.6,omega,lower,0.0544346421957016 +karman_re50,ppo,20,8.0,omega,front,0.0010805061319842935 +karman_re50,ppo,20,8.0,omega,upper,-0.03728344291448593 +karman_re50,ppo,20,8.0,omega,lower,0.05143645033240318 +karman_re50,ppo,21,8.4,omega,front,-0.005032846704125404 +karman_re50,ppo,21,8.4,omega,upper,-0.029561035335063934 +karman_re50,ppo,21,8.4,omega,lower,0.04447852075099945 +karman_re50,ppo,22,8.8,omega,front,-0.012575291097164154 +karman_re50,ppo,22,8.8,omega,upper,-0.022278115153312683 +karman_re50,ppo,22,8.8,omega,lower,0.035359129309654236 +karman_re50,ppo,23,9.2,omega,front,-0.01994798518717289 +karman_re50,ppo,23,9.2,omega,upper,-0.017145365476608276 +karman_re50,ppo,23,9.2,omega,lower,0.02712356485426426 +karman_re50,ppo,24,9.6,omega,front,-0.02622775174677372 +karman_re50,ppo,24,9.6,omega,upper,-0.01521699596196413 +karman_re50,ppo,24,9.6,omega,lower,0.021079491823911667 +karman_re50,ppo,25,10.0,omega,front,-0.03066423535346985 +karman_re50,ppo,25,10.0,omega,upper,-0.01686583086848259 +karman_re50,ppo,25,10.0,omega,lower,0.01819765381515026 +karman_re50,ppo,26,10.4,omega,front,-0.03242534399032593 +karman_re50,ppo,26,10.4,omega,upper,-0.02090391144156456 +karman_re50,ppo,26,10.4,omega,lower,0.02017713524401188 +karman_re50,ppo,27,10.8,omega,front,-0.032071713358163834 +karman_re50,ppo,27,10.8,omega,upper,-0.02532772906124592 +karman_re50,ppo,27,10.8,omega,lower,0.02613896131515503 +karman_re50,ppo,28,11.2,omega,front,-0.031116237863898277 +karman_re50,ppo,28,11.2,omega,upper,-0.029512090608477592 +karman_re50,ppo,28,11.2,omega,lower,0.03227192163467407 +karman_re50,ppo,29,11.6,omega,front,-0.029646381735801697 +karman_re50,ppo,29,11.6,omega,upper,-0.03296518698334694 +karman_re50,ppo,29,11.6,omega,lower,0.03684602305293083 +karman_re50,ppo,30,12.0,omega,front,-0.026730651035904884 +karman_re50,ppo,30,12.0,omega,upper,-0.03542456775903702 +karman_re50,ppo,30,12.0,omega,lower,0.039805419743061066 +karman_re50,ppo,31,12.4,omega,front,-0.021773239597678185 +karman_re50,ppo,31,12.4,omega,upper,-0.036700647324323654 +karman_re50,ppo,31,12.4,omega,lower,0.04096987098455429 +karman_re50,ppo,32,12.8,omega,front,-0.015302633866667747 +karman_re50,ppo,32,12.8,omega,upper,-0.03663252294063568 +karman_re50,ppo,32,12.8,omega,lower,0.039517492055892944 +karman_re50,ppo,33,13.2,omega,front,-0.008150571957230568 +karman_re50,ppo,33,13.2,omega,upper,-0.03607718273997307 +karman_re50,ppo,33,13.2,omega,lower,0.035639531910419464 +karman_re50,ppo,34,13.6,omega,front,-0.0011501953704282641 +karman_re50,ppo,34,13.6,omega,upper,-0.03682227432727814 +karman_re50,ppo,34,13.6,omega,lower,0.03234206140041351 +karman_re50,ppo,35,14.0,omega,front,0.00488306162878871 +karman_re50,ppo,35,14.0,omega,upper,-0.04000672698020935 +karman_re50,ppo,35,14.0,omega,lower,0.03133852779865265 +karman_re50,ppo,36,14.4,omega,front,0.009922433644533157 +karman_re50,ppo,36,14.4,omega,upper,-0.044280774891376495 +karman_re50,ppo,36,14.4,omega,lower,0.03265152499079704 +karman_re50,ppo,37,14.8,omega,front,0.014369118958711624 +karman_re50,ppo,37,14.8,omega,upper,-0.047703325748443604 +karman_re50,ppo,37,14.8,omega,lower,0.035821910947561264 +karman_re50,ppo,38,15.2,omega,front,0.018200473859906197 +karman_re50,ppo,38,15.2,omega,upper,-0.049811165779829025 +karman_re50,ppo,38,15.2,omega,lower,0.040454261004924774 +karman_re50,ppo,39,15.6,omega,front,0.020739175379276276 +karman_re50,ppo,39,15.6,omega,upper,-0.051015887409448624 +karman_re50,ppo,39,15.6,omega,lower,0.04533301293849945 +karman_re50,ppo,40,16.0,omega,front,0.020992400124669075 +karman_re50,ppo,40,16.0,omega,upper,-0.05073169991374016 +karman_re50,ppo,40,16.0,omega,lower,0.0483349971473217 +karman_re50,ppo,41,16.4,omega,front,0.01842176914215088 +karman_re50,ppo,41,16.4,omega,upper,-0.04760219529271126 +karman_re50,ppo,41,16.4,omega,lower,0.04779193177819252 +karman_re50,ppo,42,16.8,omega,front,0.01277447771281004 +karman_re50,ppo,42,16.8,omega,upper,-0.041276514530181885 +karman_re50,ppo,42,16.8,omega,lower,0.04361649230122566 +karman_re50,ppo,43,17.2,omega,front,0.004723553080111742 +karman_re50,ppo,43,17.2,omega,upper,-0.0327664278447628 +karman_re50,ppo,43,17.2,omega,lower,0.03818880394101143 +karman_re50,ppo,44,17.6,omega,front,-0.004022679757326841 +karman_re50,ppo,44,17.6,omega,upper,-0.023666657507419586 +karman_re50,ppo,44,17.6,omega,lower,0.03447908163070679 +karman_re50,ppo,45,18.0,omega,front,-0.01191636174917221 +karman_re50,ppo,45,18.0,omega,upper,-0.015960244461894035 +karman_re50,ppo,45,18.0,omega,lower,0.03322841599583626 +karman_re50,ppo,46,18.4,omega,front,-0.018835701048374176 +karman_re50,ppo,46,18.4,omega,upper,-0.012677888385951519 +karman_re50,ppo,46,18.4,omega,lower,0.032113149762153625 +karman_re50,ppo,47,18.8,omega,front,-0.024840205907821655 +karman_re50,ppo,47,18.8,omega,upper,-0.015482529997825623 +karman_re50,ppo,47,18.8,omega,lower,0.029611727222800255 +karman_re50,ppo,48,19.2,omega,front,-0.029106831178069115 +karman_re50,ppo,48,19.2,omega,upper,-0.022798843681812286 +karman_re50,ppo,48,19.2,omega,lower,0.027480266988277435 +karman_re50,ppo,49,19.6,omega,front,-0.030352264642715454 +karman_re50,ppo,49,19.6,omega,upper,-0.030551018193364143 +karman_re50,ppo,49,19.6,omega,lower,0.029407581314444542 +karman_re50,ppo,50,20.0,omega,front,-0.029142996296286583 +karman_re50,ppo,50,20.0,omega,upper,-0.03580828011035919 +karman_re50,ppo,50,20.0,omega,lower,0.034791018813848495 +karman_re50,ppo,51,20.4,omega,front,-0.026937026530504227 +karman_re50,ppo,51,20.4,omega,upper,-0.03878629207611084 +karman_re50,ppo,51,20.4,omega,lower,0.040155962109565735 +karman_re50,ppo,52,20.8,omega,front,-0.023889949545264244 +karman_re50,ppo,52,20.8,omega,upper,-0.040547557175159454 +karman_re50,ppo,52,20.8,omega,lower,0.04344883933663368 +karman_re50,ppo,53,21.2,omega,front,-0.019426662474870682 +karman_re50,ppo,53,21.2,omega,upper,-0.041532762348651886 +karman_re50,ppo,53,21.2,omega,lower,0.04416290670633316 +karman_re50,ppo,54,21.6,omega,front,-0.01340589951723814 +karman_re50,ppo,54,21.6,omega,upper,-0.04157736524939537 +karman_re50,ppo,54,21.6,omega,lower,0.04217622056603432 +karman_re50,ppo,55,22.0,omega,front,-0.006629392970353365 +karman_re50,ppo,55,22.0,omega,upper,-0.04134831950068474 +karman_re50,ppo,55,22.0,omega,lower,0.037800420075654984 +karman_re50,ppo,56,22.4,omega,front,-0.0002973291266243905 +karman_re50,ppo,56,22.4,omega,upper,-0.04196758568286896 +karman_re50,ppo,56,22.4,omega,lower,0.03296868875622749 +karman_re50,ppo,57,22.8,omega,front,0.005259179975837469 +karman_re50,ppo,57,22.8,omega,upper,-0.0437336303293705 +karman_re50,ppo,57,22.8,omega,lower,0.03028409741818905 +karman_re50,ppo,58,23.2,omega,front,0.010195505805313587 +karman_re50,ppo,58,23.2,omega,upper,-0.04563307762145996 +karman_re50,ppo,58,23.2,omega,lower,0.03064202331006527 +karman_re50,ppo,59,23.6,omega,front,0.01441363338381052 +karman_re50,ppo,59,23.6,omega,upper,-0.04716861993074417 +karman_re50,ppo,59,23.6,omega,lower,0.03358667343854904 +karman_re50,ppo,60,24.0,omega,front,0.017727285623550415 +karman_re50,ppo,60,24.0,omega,upper,-0.048777785152196884 +karman_re50,ppo,60,24.0,omega,lower,0.03827524930238724 +karman_re50,ppo,61,24.4,omega,front,0.019918939098715782 +karman_re50,ppo,61,24.4,omega,upper,-0.05033750832080841 +karman_re50,ppo,61,24.4,omega,lower,0.0434689000248909 +karman_re50,ppo,62,24.8,omega,front,0.02033558115363121 +karman_re50,ppo,62,24.8,omega,upper,-0.05062437057495117 +karman_re50,ppo,62,24.8,omega,lower,0.04737066477537155 +karman_re50,ppo,63,25.2,omega,front,0.01819785125553608 +karman_re50,ppo,63,25.2,omega,upper,-0.04823153093457222 +karman_re50,ppo,63,25.2,omega,lower,0.04836263507604599 +karman_re50,ppo,64,25.6,omega,front,0.01316329650580883 +karman_re50,ppo,64,25.6,omega,upper,-0.042525921016931534 +karman_re50,ppo,64,25.6,omega,lower,0.04612208157777786 +karman_re50,ppo,65,26.0,omega,front,0.005481809377670288 +karman_re50,ppo,65,26.0,omega,upper,-0.03385942801833153 +karman_re50,ppo,65,26.0,omega,lower,0.041760411113500595 +karman_re50,ppo,66,26.4,omega,front,-0.003789770184084773 +karman_re50,ppo,66,26.4,omega,upper,-0.023572582751512527 +karman_re50,ppo,66,26.4,omega,lower,0.03681213781237602 +karman_re50,ppo,67,26.8,omega,front,-0.012807385995984077 +karman_re50,ppo,67,26.8,omega,upper,-0.014111969619989395 +karman_re50,ppo,67,26.8,omega,lower,0.032535698264837265 +karman_re50,ppo,68,27.2,omega,front,-0.02007840760052204 +karman_re50,ppo,68,27.2,omega,upper,-0.009559874422848225 +karman_re50,ppo,68,27.2,omega,lower,0.029638368636369705 +karman_re50,ppo,69,27.6,omega,front,-0.026070909574627876 +karman_re50,ppo,69,27.6,omega,upper,-0.011675851419568062 +karman_re50,ppo,69,27.6,omega,lower,0.02628624439239502 +karman_re50,ppo,70,28.0,omega,front,-0.030889369547367096 +karman_re50,ppo,70,28.0,omega,upper,-0.018460409715771675 +karman_re50,ppo,70,28.0,omega,lower,0.022535361349582672 +karman_re50,ppo,71,28.4,omega,front,-0.03260042890906334 +karman_re50,ppo,71,28.4,omega,upper,-0.025860833004117012 +karman_re50,ppo,71,28.4,omega,lower,0.023692701011896133 +karman_re50,ppo,72,28.8,omega,front,-0.031907401978969574 +karman_re50,ppo,72,28.8,omega,upper,-0.03137170523405075 +karman_re50,ppo,72,28.8,omega,lower,0.02940192073583603 +karman_re50,ppo,73,29.2,omega,front,-0.030600471422076225 +karman_re50,ppo,73,29.2,omega,upper,-0.035647619515657425 +karman_re50,ppo,73,29.2,omega,lower,0.035582151263952255 +karman_re50,ppo,74,29.6,omega,front,-0.028952650725841522 +karman_re50,ppo,74,29.6,omega,upper,-0.03868423402309418 +karman_re50,ppo,74,29.6,omega,lower,0.03897818177938461 +karman_re50,ppo,75,30.0,omega,front,-0.025185393169522285 +karman_re50,ppo,75,30.0,omega,upper,-0.04028477519750595 +karman_re50,ppo,75,30.0,omega,lower,0.041044481098651886 +karman_re50,ppo,76,30.4,omega,front,-0.01972583308815956 +karman_re50,ppo,76,30.4,omega,upper,-0.03972386196255684 +karman_re50,ppo,76,30.4,omega,lower,0.04007783904671669 +karman_re50,ppo,77,30.8,omega,front,-0.013377438299357891 +karman_re50,ppo,77,30.8,omega,upper,-0.03828561305999756 +karman_re50,ppo,77,30.8,omega,lower,0.03643929958343506 +karman_re50,ppo,78,31.2,omega,front,-0.007192844990640879 +karman_re50,ppo,78,31.2,omega,upper,-0.03763680160045624 +karman_re50,ppo,78,31.2,omega,lower,0.03222894296050072 +karman_re50,ppo,79,31.6,omega,front,-0.0013313119998201728 +karman_re50,ppo,79,31.6,omega,upper,-0.03882261738181114 +karman_re50,ppo,79,31.6,omega,lower,0.0306170042604208 +karman_re50,ppo,80,32.0,omega,front,0.004084931220859289 +karman_re50,ppo,80,32.0,omega,upper,-0.04141012206673622 +karman_re50,ppo,80,32.0,omega,lower,0.032273005694150925 +karman_re50,ppo,81,32.4,omega,front,0.008725224994122982 +karman_re50,ppo,81,32.4,omega,upper,-0.044640764594078064 +karman_re50,ppo,81,32.4,omega,lower,0.03636108711361885 +karman_re50,ppo,82,32.8,omega,front,0.012538537383079529 +karman_re50,ppo,82,32.8,omega,upper,-0.04803295433521271 +karman_re50,ppo,82,32.8,omega,lower,0.04183404520153999 +karman_re50,ppo,83,33.2,omega,front,0.015547724440693855 +karman_re50,ppo,83,33.2,omega,upper,-0.05084771662950516 +karman_re50,ppo,83,33.2,omega,lower,0.047534696757793427 +karman_re50,ppo,84,33.6,omega,front,0.01721865125000477 +karman_re50,ppo,84,33.6,omega,upper,-0.052138619124889374 +karman_re50,ppo,84,33.6,omega,lower,0.05190330371260643 +karman_re50,ppo,85,34.0,omega,front,0.016564643010497093 +karman_re50,ppo,85,34.0,omega,upper,-0.05062185227870941 +karman_re50,ppo,85,34.0,omega,lower,0.05302981287240982 +karman_re50,ppo,86,34.4,omega,front,0.012802831828594208 +karman_re50,ppo,86,34.4,omega,upper,-0.045678652822971344 +karman_re50,ppo,86,34.4,omega,lower,0.05002811923623085 +karman_re50,ppo,87,34.8,omega,front,0.00576793635264039 +karman_re50,ppo,87,34.8,omega,upper,-0.037600111216306686 +karman_re50,ppo,87,34.8,omega,lower,0.04371478036046028 +karman_re50,ppo,88,35.2,omega,front,-0.003623262047767639 +karman_re50,ppo,88,35.2,omega,upper,-0.027397355064749718 +karman_re50,ppo,88,35.2,omega,lower,0.03647955134510994 +karman_re50,ppo,89,35.6,omega,front,-0.01353241316974163 +karman_re50,ppo,89,35.6,omega,upper,-0.01658231019973755 +karman_re50,ppo,89,35.6,omega,lower,0.030375612899661064 +karman_re50,ppo,90,36.0,omega,front,-0.022017404437065125 +karman_re50,ppo,90,36.0,omega,upper,-0.0090399831533432 +karman_re50,ppo,90,36.0,omega,lower,0.026155566796660423 +karman_re50,ppo,91,36.4,omega,front,-0.028953298926353455 +karman_re50,ppo,91,36.4,omega,upper,-0.00854850746691227 +karman_re50,ppo,91,36.4,omega,lower,0.02173181064426899 +karman_re50,ppo,92,36.8,omega,front,-0.03467991203069687 +karman_re50,ppo,92,36.8,omega,upper,-0.014456610195338726 +karman_re50,ppo,92,36.8,omega,lower,0.01612628623843193 +karman_re50,ppo,93,37.2,omega,front,-0.036812908947467804 +karman_re50,ppo,93,37.2,omega,upper,-0.022346796467900276 +karman_re50,ppo,93,37.2,omega,lower,0.01602225750684738 +karman_re50,ppo,94,37.6,omega,front,-0.03542713820934296 +karman_re50,ppo,94,37.6,omega,upper,-0.028451813384890556 +karman_re50,ppo,94,37.6,omega,lower,0.02264973148703575 +karman_re50,ppo,95,38.0,omega,front,-0.03305613622069359 +karman_re50,ppo,95,38.0,omega,upper,-0.032966382801532745 +karman_re50,ppo,95,38.0,omega,lower,0.030917024239897728 +karman_re50,ppo,96,38.4,omega,front,-0.030549034476280212 +karman_re50,ppo,96,38.4,omega,upper,-0.035993725061416626 +karman_re50,ppo,96,38.4,omega,lower,0.03661302104592323 +karman_re50,ppo,97,38.8,omega,front,-0.027088399976491928 +karman_re50,ppo,97,38.8,omega,upper,-0.036942705512046814 +karman_re50,ppo,97,38.8,omega,lower,0.038612619042396545 +karman_re50,ppo,98,39.2,omega,front,-0.02162662148475647 +karman_re50,ppo,98,39.2,omega,upper,-0.035914428532123566 +karman_re50,ppo,98,39.2,omega,lower,0.038369715213775635 +karman_re50,ppo,99,39.6,omega,front,-0.014672643505036831 +karman_re50,ppo,99,39.6,omega,upper,-0.034249596297740936 +karman_re50,ppo,99,39.6,omega,lower,0.03656860068440437 +karman_re50,ppo,100,40.0,omega,front,-0.007821139879524708 +karman_re50,ppo,100,40.0,omega,upper,-0.03417883440852165 +karman_re50,ppo,100,40.0,omega,lower,0.034107744693756104 +karman_re50,ppo,101,40.4,omega,front,-0.001659804955124855 +karman_re50,ppo,101,40.4,omega,upper,-0.0367177277803421 +karman_re50,ppo,101,40.4,omega,lower,0.0327986478805542 +karman_re50,ppo,102,40.8,omega,front,0.004051173571497202 +karman_re50,ppo,102,40.8,omega,upper,-0.04087703675031662 +karman_re50,ppo,102,40.8,omega,lower,0.03375976160168648 +karman_re50,ppo,103,41.2,omega,front,0.009290141053497791 +karman_re50,ppo,103,41.2,omega,upper,-0.04484418407082558 +karman_re50,ppo,103,41.2,omega,lower,0.037031419575214386 +karman_re50,ppo,104,41.6,omega,front,0.013712857849895954 +karman_re50,ppo,104,41.6,omega,upper,-0.04802360758185387 +karman_re50,ppo,104,41.6,omega,lower,0.04201348125934601 +karman_re50,ppo,105,42.0,omega,front,0.01705525629222393 +karman_re50,ppo,105,42.0,omega,upper,-0.050780460238456726 +karman_re50,ppo,105,42.0,omega,lower,0.04733867198228836 +karman_re50,ppo,106,42.4,omega,front,0.019002269953489304 +karman_re50,ppo,106,42.4,omega,upper,-0.05253325775265694 +karman_re50,ppo,106,42.4,omega,lower,0.05113411694765091 +karman_re50,ppo,107,42.8,omega,front,0.018841713666915894 +karman_re50,ppo,107,42.8,omega,upper,-0.05184128135442734 +karman_re50,ppo,107,42.8,omega,lower,0.051656775176525116 +karman_re50,ppo,108,43.2,omega,front,0.015620446763932705 +karman_re50,ppo,108,43.2,omega,upper,-0.047801751643419266 +karman_re50,ppo,108,43.2,omega,lower,0.04790618643164635 +karman_re50,ppo,109,43.6,omega,front,0.009187094867229462 +karman_re50,ppo,109,43.6,omega,upper,-0.04089522734284401 +karman_re50,ppo,109,43.6,omega,lower,0.041388168931007385 +karman_re50,ppo,110,44.0,omega,front,0.0007138970540836453 +karman_re50,ppo,110,44.0,omega,upper,-0.03192111477255821 +karman_re50,ppo,110,44.0,omega,lower,0.035624321550130844 +karman_re50,ppo,111,44.4,omega,front,-0.007872726768255234 +karman_re50,ppo,111,44.4,omega,upper,-0.0220143161714077 +karman_re50,ppo,111,44.4,omega,lower,0.03338293731212616 +karman_re50,ppo,112,44.8,omega,front,-0.016059888526797295 +karman_re50,ppo,112,44.8,omega,upper,-0.013700584881007671 +karman_re50,ppo,112,44.8,omega,lower,0.03250986337661743 +karman_re50,ppo,113,45.2,omega,front,-0.024260329082608223 +karman_re50,ppo,113,45.2,omega,upper,-0.010730497539043427 +karman_re50,ppo,113,45.2,omega,lower,0.02838040515780449 +karman_re50,ppo,114,45.6,omega,front,-0.0314636304974556 +karman_re50,ppo,114,45.6,omega,upper,-0.014540819451212883 +karman_re50,ppo,114,45.6,omega,lower,0.021732913330197334 +karman_re50,ppo,115,46.0,omega,front,-0.03535817191004753 +karman_re50,ppo,115,46.0,omega,upper,-0.02257946878671646 +karman_re50,ppo,115,46.0,omega,lower,0.018724551424384117 +karman_re50,ppo,116,46.4,omega,front,-0.034719277173280716 +karman_re50,ppo,116,46.4,omega,upper,-0.030107054859399796 +karman_re50,ppo,116,46.4,omega,lower,0.02313900738954544 +karman_re50,ppo,117,46.8,omega,front,-0.031679194420576096 +karman_re50,ppo,117,46.8,omega,upper,-0.03482433408498764 +karman_re50,ppo,117,46.8,omega,lower,0.03124762512743473 +karman_re50,ppo,118,47.2,omega,front,-0.028435401618480682 +karman_re50,ppo,118,47.2,omega,upper,-0.0369374118745327 +karman_re50,ppo,118,47.2,omega,lower,0.03764518350362778 +karman_re50,ppo,119,47.6,omega,front,-0.024942366406321526 +karman_re50,ppo,119,47.6,omega,upper,-0.03725990280508995 +karman_re50,ppo,119,47.6,omega,lower,0.04057556390762329 +karman_re50,ppo,120,48.0,omega,front,-0.019988343119621277 +karman_re50,ppo,120,48.0,omega,upper,-0.03677543252706528 +karman_re50,ppo,120,48.0,omega,lower,0.0413711778819561 +karman_re50,ppo,121,48.4,omega,front,-0.013246170245110989 +karman_re50,ppo,121,48.4,omega,upper,-0.036337509751319885 +karman_re50,ppo,121,48.4,omega,lower,0.0410163551568985 +karman_re50,ppo,122,48.8,omega,front,-0.00609336793422699 +karman_re50,ppo,122,48.8,omega,upper,-0.03731577470898628 +karman_re50,ppo,122,48.8,omega,lower,0.03887086734175682 +karman_re50,ppo,123,49.2,omega,front,0.00026798725593835115 +karman_re50,ppo,123,49.2,omega,upper,-0.0404878593981266 +karman_re50,ppo,123,49.2,omega,lower,0.03565990552306175 +karman_re50,ppo,124,49.6,omega,front,0.005993986036628485 +karman_re50,ppo,124,49.6,omega,upper,-0.0445055291056633 +karman_re50,ppo,124,49.6,omega,lower,0.033719900995492935 +karman_re50,ppo,125,50.0,omega,front,0.011455181986093521 +karman_re50,ppo,125,50.0,omega,upper,-0.047004539519548416 +karman_re50,ppo,125,50.0,omega,lower,0.03447714075446129 +karman_re50,ppo,126,50.4,omega,front,0.016011040657758713 +karman_re50,ppo,126,50.4,omega,upper,-0.048249196261167526 +karman_re50,ppo,126,50.4,omega,lower,0.03751375526189804 +karman_re50,ppo,127,50.8,omega,front,0.019134521484375 +karman_re50,ppo,127,50.8,omega,upper,-0.0497882179915905 +karman_re50,ppo,127,50.8,omega,lower,0.0411645881831646 +karman_re50,ppo,128,51.2,omega,front,0.020945994183421135 +karman_re50,ppo,128,51.2,omega,upper,-0.051328886300325394 +karman_re50,ppo,128,51.2,omega,lower,0.044352926313877106 +karman_re50,ppo,129,51.6,omega,front,0.021041521802544594 +karman_re50,ppo,129,51.6,omega,upper,-0.051221445202827454 +karman_re50,ppo,129,51.6,omega,lower,0.04581728205084801 +karman_re50,ppo,130,52.0,omega,front,0.018586231395602226 +karman_re50,ppo,130,52.0,omega,upper,-0.04820830374956131 +karman_re50,ppo,130,52.0,omega,lower,0.04469145089387894 +karman_re50,ppo,131,52.4,omega,front,0.013233310543000698 +karman_re50,ppo,131,52.4,omega,upper,-0.04208889231085777 +karman_re50,ppo,131,52.4,omega,lower,0.041413016617298126 +karman_re50,ppo,132,52.8,omega,front,0.00573542108759284 +karman_re50,ppo,132,52.8,omega,upper,-0.03354111686348915 +karman_re50,ppo,132,52.8,omega,lower,0.03838537633419037 +karman_re50,ppo,133,53.2,omega,front,-0.0026507293805480003 +karman_re50,ppo,133,53.2,omega,upper,-0.023853849619627 +karman_re50,ppo,133,53.2,omega,lower,0.03692444786429405 +karman_re50,ppo,134,53.6,omega,front,-0.011132902465760708 +karman_re50,ppo,134,53.6,omega,upper,-0.015289737842977047 +karman_re50,ppo,134,53.6,omega,lower,0.035356082022190094 +karman_re50,ppo,135,54.0,omega,front,-0.01925121434032917 +karman_re50,ppo,135,54.0,omega,upper,-0.011221759021282196 +karman_re50,ppo,135,54.0,omega,lower,0.03153114765882492 +karman_re50,ppo,136,54.4,omega,front,-0.025992698967456818 +karman_re50,ppo,136,54.4,omega,upper,-0.013536483980715275 +karman_re50,ppo,136,54.4,omega,lower,0.02654973231256008 +karman_re50,ppo,137,54.8,omega,front,-0.030256452038884163 +karman_re50,ppo,137,54.8,omega,upper,-0.02068113535642624 +karman_re50,ppo,137,54.8,omega,lower,0.02355719916522503 +karman_re50,ppo,138,55.2,omega,front,-0.031085960566997528 +karman_re50,ppo,138,55.2,omega,upper,-0.028575558215379715 +karman_re50,ppo,138,55.2,omega,lower,0.025674013420939445 +karman_re50,ppo,139,55.6,omega,front,-0.02948262356221676 +karman_re50,ppo,139,55.6,omega,upper,-0.03406737372279167 +karman_re50,ppo,139,55.6,omega,lower,0.03189616650342941 +karman_re50,ppo,140,56.0,omega,front,-0.027369916439056396 +karman_re50,ppo,140,56.0,omega,upper,-0.03726666793227196 +karman_re50,ppo,140,56.0,omega,lower,0.03821182996034622 +karman_re50,ppo,141,56.4,omega,front,-0.024854566901922226 +karman_re50,ppo,141,56.4,omega,upper,-0.03935478255152702 +karman_re50,ppo,141,56.4,omega,lower,0.042394012212753296 +karman_re50,ppo,142,56.8,omega,front,-0.02097497694194317 +karman_re50,ppo,142,56.8,omega,upper,-0.04077819362282753 +karman_re50,ppo,142,56.8,omega,lower,0.04445507377386093 +karman_re50,ppo,143,57.2,omega,front,-0.015299261547625065 +karman_re50,ppo,143,57.2,omega,upper,-0.04136744514107704 +karman_re50,ppo,143,57.2,omega,lower,0.044251278042793274 +karman_re50,ppo,144,57.6,omega,front,-0.008619947358965874 +karman_re50,ppo,144,57.6,omega,upper,-0.04137887805700302 +karman_re50,ppo,144,57.6,omega,lower,0.04087190702557564 +karman_re50,ppo,145,58.0,omega,front,-0.0020295034628361464 +karman_re50,ppo,145,58.0,omega,upper,-0.04200397804379463 +karman_re50,ppo,145,58.0,omega,lower,0.03602871671319008 +karman_re50,ppo,146,58.4,omega,front,0.0037023324985057116 +karman_re50,ppo,146,58.4,omega,upper,-0.043607428669929504 +karman_re50,ppo,146,58.4,omega,lower,0.0323655866086483 +karman_re50,ppo,147,58.8,omega,front,0.008782054297626019 +karman_re50,ppo,147,58.8,omega,upper,-0.04576489329338074 +karman_re50,ppo,147,58.8,omega,lower,0.03170614689588547 +karman_re50,ppo,148,59.2,omega,front,0.013214058242738247 +karman_re50,ppo,148,59.2,omega,upper,-0.04756205528974533 +karman_re50,ppo,148,59.2,omega,lower,0.03389301896095276 +karman_re50,ppo,149,59.6,omega,front,0.01679808646440506 +karman_re50,ppo,149,59.6,omega,upper,-0.04917026311159134 +karman_re50,ppo,149,59.6,omega,lower,0.03778217360377312 +karman_re50,ppo,150,60.0,omega,front,0.019381916150450706 +karman_re50,ppo,150,60.0,omega,upper,-0.05061725527048111 +karman_re50,ppo,150,60.0,omega,lower,0.04209648817777634 +karman_re50,ppo,151,60.4,omega,front,0.02051527611911297 +karman_re50,ppo,151,60.4,omega,upper,-0.051218144595623016 +karman_re50,ppo,151,60.4,omega,lower,0.04559551924467087 +karman_re50,ppo,152,60.8,omega,front,0.01937057450413704 +karman_re50,ppo,152,60.8,omega,upper,-0.04957564175128937 +karman_re50,ppo,152,60.8,omega,lower,0.04684047773480415 +karman_re50,ppo,153,61.2,omega,front,0.015378572978079319 +karman_re50,ppo,153,61.2,omega,upper,-0.04475300759077072 +karman_re50,ppo,153,61.2,omega,lower,0.045280516147613525 +karman_re50,ppo,154,61.6,omega,front,0.008599743247032166 +karman_re50,ppo,154,61.6,omega,upper,-0.03687860071659088 +karman_re50,ppo,154,61.6,omega,lower,0.04191528633236885 +karman_re50,ppo,155,62.0,omega,front,-0.00017636358097661287 +karman_re50,ppo,155,62.0,omega,upper,-0.026787271723151207 +karman_re50,ppo,155,62.0,omega,lower,0.03803667426109314 +karman_re50,ppo,156,62.4,omega,front,-0.00950760580599308 +karman_re50,ppo,156,62.4,omega,upper,-0.01645221933722496 +karman_re50,ppo,156,62.4,omega,lower,0.03405250981450081 +karman_re50,ppo,157,62.8,omega,front,-0.01769203320145607 +karman_re50,ppo,157,62.8,omega,upper,-0.009738285094499588 +karman_re50,ppo,157,62.8,omega,lower,0.03046131692826748 +karman_re50,ppo,158,63.2,omega,front,-0.024097105488181114 +karman_re50,ppo,158,63.2,omega,upper,-0.009847891516983509 +karman_re50,ppo,158,63.2,omega,lower,0.027223875746130943 +karman_re50,ppo,159,63.6,omega,front,-0.029230313375592232 +karman_re50,ppo,159,63.6,omega,upper,-0.01584399864077568 +karman_re50,ppo,159,63.6,omega,lower,0.023451432585716248 +karman_re50,ppo,160,64.0,omega,front,-0.03177362307906151 +karman_re50,ppo,160,64.0,omega,upper,-0.023883551359176636 +karman_re50,ppo,160,64.0,omega,lower,0.023024549707770348 +karman_re50,ppo,161,64.4,omega,front,-0.031394872814416885 +karman_re50,ppo,161,64.4,omega,upper,-0.030152972787618637 +karman_re50,ppo,161,64.4,omega,lower,0.027888081967830658 +karman_re50,ppo,162,64.8,omega,front,-0.030186954885721207 +karman_re50,ppo,162,64.8,omega,upper,-0.0344960018992424 +karman_re50,ppo,162,64.8,omega,lower,0.033780574798583984 +karman_re50,ppo,163,65.2,omega,front,-0.02828287146985531 +karman_re50,ppo,163,65.2,omega,upper,-0.03801284730434418 +karman_re50,ppo,163,65.2,omega,lower,0.039608184248209 +karman_re50,ppo,164,65.6,omega,front,-0.025379814207553864 +karman_re50,ppo,164,65.6,omega,upper,-0.040148861706256866 +karman_re50,ppo,164,65.6,omega,lower,0.04222311079502106 +karman_re50,ppo,165,66.0,omega,front,-0.02072749100625515 +karman_re50,ppo,165,66.0,omega,upper,-0.04076438769698143 +karman_re50,ppo,165,66.0,omega,lower,0.042275380343198776 +karman_re50,ppo,166,66.4,omega,front,-0.014515481889247894 +karman_re50,ppo,166,66.4,omega,upper,-0.039991311728954315 +karman_re50,ppo,166,66.4,omega,lower,0.039676837623119354 +karman_re50,ppo,167,66.8,omega,front,-0.008088232018053532 +karman_re50,ppo,167,66.8,omega,upper,-0.03919846937060356 +karman_re50,ppo,167,66.8,omega,lower,0.03526674583554268 +karman_re50,ppo,168,67.2,omega,front,-0.0022387767676264048 +karman_re50,ppo,168,67.2,omega,upper,-0.0399131178855896 +karman_re50,ppo,168,67.2,omega,lower,0.03199324384331703 +karman_re50,ppo,169,67.6,omega,front,0.003093929495662451 +karman_re50,ppo,169,67.6,omega,upper,-0.04214617982506752 +karman_re50,ppo,169,67.6,omega,lower,0.03181762248277664 +karman_re50,ppo,170,68.0,omega,front,0.007926231250166893 +karman_re50,ppo,170,68.0,omega,upper,-0.04498117044568062 +karman_re50,ppo,170,68.0,omega,lower,0.0346098318696022 +karman_re50,ppo,171,68.4,omega,front,0.011996734887361526 +karman_re50,ppo,171,68.4,omega,upper,-0.04775864630937576 +karman_re50,ppo,171,68.4,omega,lower,0.03923485055565834 +karman_re50,ppo,172,68.8,omega,front,0.015167093835771084 +karman_re50,ppo,172,68.8,omega,upper,-0.050285447388887405 +karman_re50,ppo,172,68.8,omega,lower,0.04436134174466133 +karman_re50,ppo,173,69.2,omega,front,0.017242515459656715 +karman_re50,ppo,173,69.2,omega,upper,-0.051936421543359756 +karman_re50,ppo,173,69.2,omega,lower,0.048763226717710495 +karman_re50,ppo,174,69.6,omega,front,0.017382655292749405 +karman_re50,ppo,174,69.6,omega,upper,-0.051466360688209534 +karman_re50,ppo,174,69.6,omega,lower,0.0508681982755661 +karman_re50,ppo,175,70.0,omega,front,0.01480551715940237 +karman_re50,ppo,175,70.0,omega,upper,-0.04779563471674919 +karman_re50,ppo,175,70.0,omega,lower,0.0496874563395977 +karman_re50,ppo,176,70.4,omega,front,0.009103153832256794 +karman_re50,ppo,176,70.4,omega,upper,-0.040833719074726105 +karman_re50,ppo,176,70.4,omega,lower,0.045441970229148865 +karman_re50,ppo,177,70.8,omega,front,0.0006923630717210472 +karman_re50,ppo,177,70.8,omega,upper,-0.0312246885150671 +karman_re50,ppo,177,70.8,omega,lower,0.039591871201992035 +karman_re50,ppo,178,71.2,omega,front,-0.0091309305280447 +karman_re50,ppo,178,71.2,omega,upper,-0.020233677700161934 +karman_re50,ppo,178,71.2,omega,lower,0.03358966112136841 +karman_re50,ppo,179,71.6,omega,front,-0.018355607986450195 +karman_re50,ppo,179,71.6,omega,upper,-0.010860877111554146 +karman_re50,ppo,179,71.6,omega,lower,0.02840840257704258 +karman_re50,ppo,180,72.0,omega,front,-0.025764508172869682 +karman_re50,ppo,180,72.0,omega,upper,-0.007594482507556677 +karman_re50,ppo,180,72.0,omega,lower,0.024070357903838158 +karman_re50,ppo,181,72.4,omega,front,-0.03188551217317581 +karman_re50,ppo,181,72.4,omega,upper,-0.01153644546866417 +karman_re50,ppo,181,72.4,omega,lower,0.018779372796416283 +karman_re50,ppo,182,72.8,omega,front,-0.03546825423836708 +karman_re50,ppo,182,72.8,omega,upper,-0.019290484488010406 +karman_re50,ppo,182,72.8,omega,lower,0.016141442582011223 +karman_re50,ppo,183,73.2,omega,front,-0.03511923924088478 +karman_re50,ppo,183,73.2,omega,upper,-0.026106609031558037 +karman_re50,ppo,183,73.2,omega,lower,0.02061632089316845 +karman_re50,ppo,184,73.6,omega,front,-0.03316202387213707 +karman_re50,ppo,184,73.6,omega,upper,-0.031013216823339462 +karman_re50,ppo,184,73.6,omega,lower,0.02841968648135662 +karman_re50,ppo,185,74.0,omega,front,-0.031064709648489952 +karman_re50,ppo,185,74.0,omega,upper,-0.034721311181783676 +karman_re50,ppo,185,74.0,omega,lower,0.03519406542181969 +karman_re50,ppo,186,74.4,omega,front,-0.028387021273374557 +karman_re50,ppo,186,74.4,omega,upper,-0.03692692518234253 +karman_re50,ppo,186,74.4,omega,lower,0.03867993503808975 +karman_re50,ppo,187,74.8,omega,front,-0.023994669318199158 +karman_re50,ppo,187,74.8,omega,upper,-0.03717900812625885 +karman_re50,ppo,187,74.8,omega,lower,0.039471641182899475 +karman_re50,ppo,188,75.2,omega,front,-0.01766587607562542 +karman_re50,ppo,188,75.2,omega,upper,-0.03600170463323593 +karman_re50,ppo,188,75.2,omega,lower,0.038411810994148254 +karman_re50,ppo,189,75.6,omega,front,-0.010795765556395054 +karman_re50,ppo,189,75.6,omega,upper,-0.03513886034488678 +karman_re50,ppo,189,75.6,omega,lower,0.035657770931720734 +karman_re50,ppo,190,76.0,omega,front,-0.004536656197160482 +karman_re50,ppo,190,76.0,omega,upper,-0.036295633763074875 +karman_re50,ppo,190,76.0,omega,lower,0.03312884271144867 +karman_re50,ppo,191,76.4,omega,front,0.0011967867612838745 +karman_re50,ppo,191,76.4,omega,upper,-0.039488404989242554 +karman_re50,ppo,191,76.4,omega,lower,0.03296978026628494 +karman_re50,ppo,192,76.8,omega,front,0.006528098601847887 +karman_re50,ppo,192,76.8,omega,upper,-0.043336424976587296 +karman_re50,ppo,192,76.8,omega,lower,0.03538660332560539 +karman_re50,ppo,193,77.2,omega,front,0.01115991547703743 +karman_re50,ppo,193,77.2,omega,upper,-0.04678363353013992 +karman_re50,ppo,193,77.2,omega,lower,0.03986063972115517 +karman_re50,ppo,194,77.6,omega,front,0.014773140661418438 +karman_re50,ppo,194,77.6,omega,upper,-0.04971581697463989 +karman_re50,ppo,194,77.6,omega,lower,0.0450483039021492 +karman_re50,ppo,195,78.0,omega,front,0.017315365374088287 +karman_re50,ppo,195,78.0,omega,upper,-0.05200878158211708 +karman_re50,ppo,195,78.0,omega,lower,0.04958564043045044 +karman_re50,ppo,196,78.4,omega,front,0.018187563866376877 +karman_re50,ppo,196,78.4,omega,upper,-0.05243125930428505 +karman_re50,ppo,196,78.4,omega,lower,0.05175965279340744 +karman_re50,ppo,197,78.8,omega,front,0.016421165317296982 +karman_re50,ppo,197,78.8,omega,upper,-0.049788184463977814 +karman_re50,ppo,197,78.8,omega,lower,0.050211887806653976 +karman_re50,ppo,198,79.2,omega,front,0.011455518193542957 +karman_re50,ppo,198,79.2,omega,upper,-0.04395454004406929 +karman_re50,ppo,198,79.2,omega,lower,0.045130327343940735 +karman_re50,ppo,199,79.6,omega,front,0.0037605008110404015 +karman_re50,ppo,199,79.6,omega,upper,-0.03563223406672478 +karman_re50,ppo,199,79.6,omega,lower,0.03888484463095665 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_manifest.json new file mode 100644 index 0000000..f0d999d --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re50", + "source": "ppo", + "input": "src/SR_analysis/data/runs/article-joint-data-karman-20260718/karman/karman_re50/controlled.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_wide.csv new file mode 100644 index 0000000..5f513f0 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/ppo_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re50,ppo,0,0.0,1.0512721538543701,0.1397138237953186,0.9508710503578186,0.1316177397966385,0.9657716155052185,0.101104736328125,0.00047457448090426624,-0.0006213981541804969,0.002900071209296584,0.003809114918112755,-0.003070834558457136,-0.0023510660976171494,-1.505651593208313,-2.31614351272583,3.975478172302246,-0.015056516043841839,-0.02316143549978733,0.03975478187203407 +karman_re50,ppo,1,0.4,1.0367038249969482,0.18362033367156982,0.9633804559707642,0.17917633056640625,0.9803779125213623,0.14428430795669556,0.0012296107597649097,0.0007673801737837493,0.0020498353987932205,0.0042841932736337185,-0.003103154944255948,-0.0023019681684672832,-1.9955214262008667,-2.01761531829834,3.3563194274902344,-0.019955214112997055,-0.020176153630018234,0.033563192933797836 +karman_re50,ppo,2,0.8,1.028641939163208,0.20482942461967468,0.9724262356758118,0.2161182463169098,0.9989591836929321,0.1879262924194336,0.0017865439876914024,0.0011939260875806212,0.0018141483888030052,0.004562596790492535,-0.0035246729385107756,-0.0024509630165994167,-2.32171893119812,-1.77297842502594,3.029510498046875,-0.02321718819439411,-0.017729783430695534,0.030295103788375854 +karman_re50,ppo,3,1.2,1.0221099853515625,0.2127651423215866,0.975220263004303,0.24500882625579834,1.018213152885437,0.23281587660312653,0.0019157924689352512,0.0017359214834868908,0.0016278109978884459,0.0043874322436749935,-0.0034982257056981325,-0.002770314458757639,-2.762601375579834,-1.8706823587417603,2.7702250480651855,-0.02762601338326931,-0.018706822767853737,0.027702249586582184 +karman_re50,ppo,4,1.6,1.013725757598877,0.21196487545967102,0.9694984555244446,0.26550808548927307,1.0368083715438843,0.27521494030952454,0.0017382405931130052,0.0022293294314295053,0.0015342257684096694,0.00429881876334548,-0.0031495625153183937,-0.0028888776432722807,-3.041179895401001,-2.2382540702819824,2.7787697315216064,-0.030411798506975174,-0.022382540628314018,0.027787696570158005 +karman_re50,ppo,5,2.0,1.0028676986694336,0.20113646984100342,0.9553852677345276,0.27034705877304077,1.0541077852249146,0.30279168486595154,0.0013981356751173735,0.0024580261670053005,0.0015934460097923875,0.004370727576315403,-0.002911509247496724,-0.0028073936700820923,-3.1070656776428223,-2.589663028717041,3.1175732612609863,-0.031070655211806297,-0.025896629318594933,0.031175732612609863 +karman_re50,ppo,6,2.4,0.9906448125839233,0.1765332967042923,0.9367379546165466,0.24892127513885498,1.069878101348877,0.2971411347389221,0.001103803631849587,0.002438979223370552,0.001679251785390079,0.004449053201824427,-0.002894254866987467,-0.0027453729417175055,-3.0807912349700928,-2.853902578353882,3.543027877807617,-0.030807912349700928,-0.0285390242934227,0.03543027862906456 +karman_re50,ppo,7,2.8,0.9771513938903809,0.13516056537628174,0.9191303849220276,0.19495098292827606,1.0826289653778076,0.2476988285779953,0.0009352514753118157,0.002242635004222393,0.0017292513512074947,0.0044661881402134895,-0.00299707124941051,-0.0027621795888990164,-3.0156149864196777,-3.0613229274749756,3.788994073867798,-0.030156148597598076,-0.030613228678703308,0.03788993880152702 +karman_re50,ppo,8,3.2,0.9635012149810791,0.0785071924328804,0.9094288349151611,0.11439239233732224,1.0897823572158813,0.16258132457733154,0.0009288566652685404,0.0018505214247852564,0.001782695297151804,0.0044679585844278336,-0.0031322166323661804,-0.0027934443205595016,-2.860729455947876,-3.214153289794922,3.799384117126465,-0.028607293963432312,-0.03214153274893761,0.037993840873241425 +karman_re50,ppo,9,3.6,0.9532129168510437,0.015633760020136833,0.9120951890945435,0.026135291904211044,1.0874170064926147,0.06103803589940071,0.0011582756415009499,0.0011892940383404493,0.001873869332484901,0.004467553924769163,-0.0032762186601758003,-0.0027920075226575136,-2.563204050064087,-3.3150875568389893,3.632106065750122,-0.025632040575146675,-0.03315087407827377,0.03632105886936188 +karman_re50,ppo,10,4.0,0.9503843188285828,-0.04347378760576248,0.9248284101486206,-0.053309615701436996,1.0740643739700317,-0.03892871364951134,0.0015476176049560308,0.0002989938366226852,0.0020563395228236914,0.004511388950049877,-0.0034309399779886007,-0.0027389146853238344,-2.1501333713531494,-3.3532824516296387,3.2918589115142822,-0.0215013325214386,-0.033532824367284775,0.03291858732700348 +karman_re50,ppo,11,4.4,0.9572097063064575,-0.09315957129001617,0.9406425356864929,-0.116830013692379,1.056229829788208,-0.11730358004570007,0.0019318790873512626,-0.0006985461222939193,0.0023045027628540993,0.004633377306163311,-0.003567550564184785,-0.00271438667550683,-1.6558071374893188,-3.300353527069092,2.913698196411133,-0.016558071598410606,-0.033003535121679306,0.029136981815099716 +karman_re50,ppo,12,4.8,0.97132408618927,-0.13679486513137817,0.9539679884910583,-0.16574998199939728,1.0422008037567139,-0.16499167680740356,0.002078923862427473,-0.0016208396991714835,0.0026052852626889944,0.0048240358009934425,-0.0036606770008802414,-0.0028217292856425047,-1.1603037118911743,-3.253272533416748,2.6882333755493164,-0.011603036895394325,-0.03253272548317909,0.026882333680987358 +karman_re50,ppo,13,5.2,0.9887338280677795,-0.1799623668193817,0.9626220464706421,-0.20288856327533722,1.0336254835128784,-0.1876218020915985,0.0019088637782260776,-0.0023744874633848667,0.0029143437277525663,0.005028841085731983,-0.00372165790759027,-0.0030237617902457714,-0.7149907946586609,-3.361656665802002,2.797311544418335,-0.007149907760322094,-0.0336165651679039,0.02797311544418335 +karman_re50,ppo,14,5.6,1.0069581270217896,-0.22499021887779236,0.9648808836936951,-0.23162467777729034,1.0277655124664307,-0.1952793300151825,0.0014996373793110251,-0.00294288108125329,0.0032005233224481344,0.0051961420103907585,-0.0037679190281778574,-0.003187642665579915,-0.33165717124938965,-3.6428604125976562,3.2095704078674316,-0.0033165717031806707,-0.036428604274988174,0.03209570422768593 +karman_re50,ppo,15,6.0,1.0245035886764526,-0.2686939239501953,0.9582645893096924,-0.25221723318099976,1.0214018821716309,-0.19306838512420654,0.000985767343081534,-0.0032984500285238028,0.003443269757553935,0.005306165665388107,-0.003765096887946129,-0.003184989094734192,-0.000474393367767334,-4.011297702789307,3.7780699729919434,-4.743933459394611e-06,-0.04011297598481178,0.037780698388814926 +karman_re50,ppo,16,6.4,1.0407328605651855,-0.300372451543808,0.9420997500419617,-0.25881993770599365,1.013564109802246,-0.18033292889595032,0.0004281451110728085,-0.0034570235293358564,0.0036478263791650534,0.005289633292704821,-0.0036602613981813192,-0.003008931642398238,0.2954278886318207,-4.351243495941162,4.391265392303467,0.002954278839752078,-0.043512433767318726,0.043912652879953384 +karman_re50,ppo,17,6.8,1.0556094646453857,-0.3017958104610443,0.9189395904541016,-0.2409611940383911,1.004753589630127,-0.15348395705223083,-0.0001293452805839479,-0.0033964768517762423,0.0037778732366859913,0.0050789471715688705,-0.003389717312529683,-0.002703691367059946,0.5215449333190918,-4.581165790557861,4.955134391784668,0.005215449258685112,-0.04581165686249733,0.0495513416826725 +karman_re50,ppo,18,7.2,1.0682467222213745,-0.2597751021385193,0.8934431672096252,-0.19063454866409302,0.9950999617576599,-0.11084914207458496,-0.0005958564579486847,-0.0031344399321824312,0.0037548495456576347,0.004623104818165302,-0.0029629752971231937,-0.0023362489882856607,0.6098252534866333,-4.595779895782471,5.35434627532959,0.006098252255469561,-0.04595779627561569,0.053543463349342346 +karman_re50,ppo,19,7.6,1.0775854587554932,-0.17971999943256378,0.8710460066795349,-0.10907122492790222,0.9857874512672424,-0.05636553838849068,-0.0008497951203025877,-0.0026705521158874035,0.003512751776725054,0.004006705712527037,-0.002499670023098588,-0.0018785815918818116,0.4811815023422241,-4.318649768829346,5.443464279174805,0.004811814986169338,-0.0431864969432354,0.0544346421957016 +karman_re50,ppo,20,8.0,1.0816072225570679,-0.07965054363012314,0.8574624061584473,-0.007624209392815828,0.9802634716033936,0.0009336109505966306,-0.0007286870968528092,-0.0020615230314433575,0.0030659472104161978,0.003490533446893096,-0.0022015077993273735,-0.0014297077432274818,0.10805061459541321,-3.728344440460205,5.143645286560059,0.0010805061319842935,-0.03728344291448593,0.05143645033240318 +karman_re50,ppo,21,8.4,1.0759748220443726,0.022281374782323837,0.859549880027771,0.09246481209993362,0.9817479848861694,0.051945656538009644,-0.00019036086450796574,-0.001393541693687439,0.0025253817439079285,0.0033670207485556602,-0.0022352924570441246,-0.0012132686097174883,-0.5032846927642822,-2.956103563308716,4.44785213470459,-0.005032846704125404,-0.029561035335063934,0.04447852075099945 +karman_re50,ppo,22,8.8,1.055302619934082,0.11939331144094467,0.8823735117912292,0.16939450800418854,0.9908931851387024,0.09545258432626724,0.000641950755380094,-0.000703965371940285,0.0020200558938086033,0.0037059893365949392,-0.002547066193073988,-0.0014002509415149689,-1.2575291395187378,-2.227811574935913,3.5359129905700684,-0.012575291097164154,-0.022278115153312683,0.035359129309654236 +karman_re50,ppo,23,9.2,1.0201290845870972,0.20479106903076172,0.920240581035614,0.2149689644575119,1.005571722984314,0.13592390716075897,0.0015363863203674555,2.5400902813998982e-05,0.001620958442799747,0.0041656047105789185,-0.0028681044932454824,-0.0019139859359711409,-1.9947985410690308,-1.7145365476608276,2.7123565673828125,-0.01994798518717289,-0.017145365476608276,0.02712356485426426 +karman_re50,ppo,24,9.6,0.9829432964324951,0.25947800278663635,0.9573675394058228,0.2384946644306183,1.0225063562393188,0.1771424263715744,0.0021495092660188675,0.0007973619503900409,0.001339545357041061,0.004331144504249096,-0.0029130089096724987,-0.0024821970146149397,-2.6227753162384033,-1.5216996669769287,2.1079492568969727,-0.02622775174677372,-0.01521699596196413,0.021079491823911667 +karman_re50,ppo,25,10.0,0.9569416642189026,0.2707473039627075,0.9799973368644714,0.25135698914527893,1.038265347480774,0.2189044952392578,0.0022519154008477926,0.0015520912129431963,0.0012568077072501183,0.00421141367405653,-0.00260892603546381,-0.0028016886208206415,-3.0664236545562744,-1.686583161354065,1.8197654485702515,-0.03066423535346985,-0.01686583086848259,0.01819765381515026 +karman_re50,ppo,26,10.4,0.9468874931335449,0.24846887588500977,0.9864270687103271,0.25587064027786255,1.053356647491455,0.2575455605983734,0.0019403339829295874,0.0021652481518685818,0.0013786186464130878,0.004114372655749321,-0.0022693597711622715,-0.00278031756170094,-3.2425343990325928,-2.090391159057617,2.0177135467529297,-0.03242534399032593,-0.02090391144156456,0.02017713524401188 +karman_re50,ppo,27,10.8,0.9448661208152771,0.20828966796398163,0.9774261713027954,0.24419334530830383,1.0642600059509277,0.28229495882987976,0.0015659966738894582,0.002451758598908782,0.001591699430719018,0.004103986546397209,-0.0021843076683580875,-0.0026416636537760496,-3.2071714401245117,-2.532773017883301,2.613896131515503,-0.032071713358163834,-0.02532772906124592,0.02613896131515503 +karman_re50,ppo,28,11.2,0.9443560838699341,0.15718084573745728,0.9589613080024719,0.20685017108917236,1.069319725036621,0.27659425139427185,0.001206768094561994,0.002433729125186801,0.001782944891601801,0.004155588336288929,-0.0023898601066321135,-0.0025539982598274946,-3.111623764038086,-2.95120906829834,3.2271921634674072,-0.031116237863898277,-0.029512090608477592,0.03227192163467407 +karman_re50,ppo,29,11.6,0.9422139525413513,0.0940849557518959,0.9394468069076538,0.14055663347244263,1.068135380744934,0.22810478508472443,0.0009115191060118377,0.0022313909139484167,0.001914587919600308,0.004232760518789291,-0.0026821799110621214,-0.002553942147642374,-2.9646382331848145,-3.2965188026428223,3.6846024990081787,-0.029646381735801697,-0.03296518698334694,0.03684602305293083 +karman_re50,ppo,30,12.0,0.9355658888816833,0.021091172471642494,0.923247754573822,0.05247223749756813,1.0555652379989624,0.13768494129180908,0.0007069794228300452,0.0018926258198916912,0.0019873303826898336,0.004299444146454334,-0.0029399574268609285,-0.0025933748111128807,-2.673065185546875,-3.542456865310669,3.980541944503784,-0.026730651035904884,-0.03542456775903702,0.039805419743061066 +karman_re50,ppo,31,12.4,0.9352172613143921,-0.04945336654782295,0.9210520386695862,-0.040126193314790726,1.0378652811050415,0.0211632139980793,0.000640148064121604,0.0013863247586414218,0.002034048782661557,0.004346184898167849,-0.0031355309765785933,-0.002674673218280077,-2.177324056625366,-3.670064926147461,4.096987247467041,-0.021773239597678185,-0.036700647324323654,0.04096987098455429 +karman_re50,ppo,32,12.8,0.9412160515785217,-0.10602450370788574,0.926699697971344,-0.12246781587600708,1.0146386623382568,-0.09858433902263641,0.000768227328080684,0.000683946069329977,0.0019977425690740347,0.004338905215263367,-0.003131551668047905,-0.0028950294945389032,-1.5302634239196777,-3.663252353668213,3.951749324798584,-0.015302633866667747,-0.03663252294063568,0.039517492055892944 +karman_re50,ppo,33,13.2,0.9569213390350342,-0.149423286318779,0.9383240342140198,-0.18890215456485748,0.9987556338310242,-0.19625768065452576,0.0008753256406635046,-0.00011166500189574435,0.0018944640178233385,0.004401298705488443,-0.002856277860701084,-0.003302224911749363,-0.8150572180747986,-3.6077184677124023,3.563953161239624,-0.008150571957230568,-0.03607718273997307,0.035639531910419464 +karman_re50,ppo,34,13.6,0.9780186414718628,-0.18836335837841034,0.9522607922554016,-0.23899215459823608,0.9942042827606201,-0.25835251808166504,0.0008271711994893849,-0.0009371946798637509,0.0017606732435524464,0.004557931330054998,-0.0023239448200911283,-0.003801578190177679,-0.1150195375084877,-3.682227611541748,3.234206199645996,-0.0011501953704282641,-0.03682227432727814,0.03234206140041351 +karman_re50,ppo,35,14.0,1.001290202140808,-0.22925715148448944,0.965839684009552,-0.2766675651073456,0.9954947829246521,-0.2898731827735901,0.0005991653888486326,-0.0016789189539849758,0.0016109159914776683,0.004748597741127014,-0.0017118023242801428,-0.004144826903939247,0.4883061647415161,-4.000672817230225,3.133852958679199,0.00488306162878871,-0.04000672698020935,0.03133852779865265 +karman_re50,ppo,36,14.4,1.025300145149231,-0.2732809782028198,0.9747545123100281,-0.30650413036346436,0.9936342835426331,-0.29836055636405945,0.00030520057771354914,-0.002197990659624338,0.0013986207777634263,0.004864139948040247,-0.0012209025444462895,-0.0041543710976839066,0.9922434091567993,-4.428077697753906,3.2651524543762207,0.009922433644533157,-0.044280774891376495,0.03265152499079704 +karman_re50,ppo,37,14.8,1.0488812923431396,-0.31593266129493713,0.9747869372367859,-0.3261083662509918,0.9831401109695435,-0.28321757912635803,6.31149232503958e-05,-0.0023797214962542057,0.0010979032376781106,0.00480639236047864,-0.0008947493624873459,-0.003866810817271471,1.436911940574646,-4.7703328132629395,3.582191228866577,0.014369118958711624,-0.047703325748443604,0.035821910947561264 +karman_re50,ppo,38,15.2,1.071608543395996,-0.3442818522453308,0.9650027751922607,-0.32508769631385803,0.9647377729415894,-0.2430678904056549,-0.00012167487875558436,-0.002256595529615879,0.0007312821107916534,0.004504466895014048,-0.0006212862790562212,-0.00347449560649693,1.820047378540039,-4.981116771697998,4.045426368713379,0.018200473859906197,-0.049811165779829025,0.040454261004924774 +karman_re50,ppo,39,15.6,1.0878210067749023,-0.33628135919570923,0.9438828825950623,-0.28851374983787537,0.9412224292755127,-0.18186067044734955,-0.0003051740350201726,-0.0019283569417893887,0.0003186599933542311,0.003914356231689453,-0.0002547943440731615,-0.0031110059935599566,2.0739176273345947,-5.101588726043701,4.53330135345459,0.020739175379276276,-0.051015887409448624,0.04533301293849945 +karman_re50,ppo,40,16.0,1.0997498035430908,-0.2802070081233978,0.9199584722518921,-0.20936255156993866,0.9257975816726685,-0.1105753630399704,-0.0004708129563368857,-0.0014776604948565364,-0.00013929374108556658,0.0031431594397872686,0.00023473400506190956,-0.0027894878294318914,2.0992400646209717,-5.073170185089111,4.833499908447266,0.020992400124669075,-0.05073169991374016,0.0483349971473217 +karman_re50,ppo,41,16.4,1.1039409637451172,-0.18435268104076385,0.8978020548820496,-0.09188484400510788,0.9226426482200623,-0.03850891813635826,-0.0005855771596543491,-0.0010039812186732888,-0.0006403342704288661,0.002441032323986292,0.0006900802254676819,-0.0024663605727255344,1.842176914215088,-4.760219573974609,4.77919340133667,0.01842176914215088,-0.04760219529271126,0.04779193177819252 +karman_re50,ppo,42,16.8,1.0963208675384521,-0.06667773425579071,0.8862495422363281,0.044874902814626694,0.9308422207832336,0.028791237622499466,-0.000525275943800807,-0.0005923396092839539,-0.001020361203700304,0.002268341602757573,0.0008858207729645073,-0.0022035371512174606,1.2774478197097778,-4.127651691436768,4.361649513244629,0.01277447771281004,-0.041276514530181885,0.04361649230122566 +karman_re50,ppo,43,17.2,1.0674339532852173,0.06398839503526688,0.8975748419761658,0.16558699309825897,0.9472997188568115,0.08476867526769638,-0.0003137641469947994,-0.00025119580095633864,-0.0010339405853301287,0.002885261084884405,0.0006915820995345712,-0.002144664293155074,0.47235530614852905,-3.2766427993774414,3.818880558013916,0.004723553080111742,-0.0327664278447628,0.03818880394101143 +karman_re50,ppo,44,17.6,1.0138574838638306,0.19953079521656036,0.934511125087738,0.24122478067874908,0.9699341058731079,0.12602156400680542,-1.8814376744558103e-05,0.00015227148833218962,-0.0005191910313442349,0.003971749916672707,0.00023682165192440152,-0.002323465421795845,-0.4022679924964905,-2.366665840148926,3.4479081630706787,-0.004022679757326841,-0.023666657507419586,0.03447908163070679 +karman_re50,ppo,45,18.0,0.956745982170105,0.3022870123386383,0.9825872778892517,0.2737264335155487,0.9959809184074402,0.15740303695201874,0.0003994758299086243,0.0007080648792907596,0.000243412796407938,0.004761159885674715,-0.00034408026840537786,-0.0026967411395162344,-1.1916362047195435,-1.596024513244629,3.3228416442871094,-0.01191636174917221,-0.015960244461894035,0.03322841599583626 +karman_re50,ppo,46,18.4,0.9242752194404602,0.33579882979393005,1.0263854265213013,0.2812153100967407,1.0233312845230103,0.18665625154972076,0.000990863423794508,0.0013346661580726504,0.0006727683357894421,0.004868155345320702,-0.0009828126057982445,-0.0032585200387984514,-1.8835701942443848,-1.2677888870239258,3.211315155029297,-0.018835701048374176,-0.012677888385951519,0.032113149762153625 +karman_re50,ppo,47,18.8,0.9168188571929932,0.3056910037994385,1.052247166633606,0.27516865730285645,1.0457878112792969,0.21596133708953857,0.0015442365547642112,0.0017809595447033644,0.0006861072615720332,0.004470607731491327,-0.0014399137580767274,-0.0038321223109960556,-2.484020709991455,-1.548253059387207,2.9611728191375732,-0.024840205907821655,-0.015482529997825623,0.029611727222800255 +karman_re50,ppo,48,19.2,0.9249422550201416,0.24573785066604614,1.0604346990585327,0.2598746418952942,1.0656658411026,0.24428516626358032,0.0017071636393666267,0.002063607331365347,0.0006991736008785665,0.0040727113373577595,-0.00151328113861382,-0.0040600537322461605,-2.9106831550598145,-2.2798843383789062,2.7480268478393555,-0.029106831178069115,-0.022798843681812286,0.027480266988277435 +karman_re50,ppo,49,19.6,0.936103105545044,0.1835397183895111,1.0506160259246826,0.23259113729000092,1.0793936252593994,0.264370322227478,0.0014410059666261077,0.0021566858049482107,0.0009130227845162153,0.003968610428273678,-0.001470389193855226,-0.0038226735778152943,-3.035226583480835,-3.0551018714904785,2.940758228302002,-0.030352264642715454,-0.030551018193364143,0.029407581314444542 +karman_re50,ppo,50,20.0,0.9445536136627197,0.12644757330417633,1.029608964920044,0.1887241154909134,1.0850471258163452,0.262452632188797,0.0010048046242445707,0.0020230021327733994,0.001237724907696247,0.004059142898768187,-0.0016158027574419975,-0.003438581246882677,-2.914299726486206,-3.5808281898498535,3.4791018962860107,-0.029142996296286583,-0.03580828011035919,0.034791018813848495 +karman_re50,ppo,51,20.4,0.9477989077568054,0.06623741239309311,1.0068881511688232,0.1269465982913971,1.0807749032974243,0.2239045947790146,0.0005860824603587389,0.00180378882214427,0.0015284019755199552,0.004096804652363062,-0.0019132435554638505,-0.0031500456389039755,-2.6937026977539062,-3.878629207611084,4.015596389770508,-0.026937026530504227,-0.03878629207611084,0.040155962109565735 +karman_re50,ppo,52,20.8,0.9474211931228638,-0.0012857923284173012,0.9901986122131348,0.05193711444735527,1.0658628940582275,0.14459386467933655,0.00028464270872063935,0.0015644264640286565,0.00170778704341501,0.0040023126639425755,-0.0021931903902441263,-0.0030315362382680178,-2.3889949321746826,-4.054755687713623,4.344883918762207,-0.023889949545264244,-0.040547557175159454,0.04344883933663368 +karman_re50,ppo,53,21.2,0.9492133855819702,-0.06692519783973694,0.9811860918998718,-0.02898801863193512,1.0428600311279297,0.035950616002082825,0.00013191283505875617,0.0012239370262250304,0.001771830371581018,0.0038616887759417295,-0.0023490421008318663,-0.0030638277530670166,-1.9426662921905518,-4.153276443481445,4.416290760040283,-0.019426662474870682,-0.041532762348651886,0.04416290670633316 +karman_re50,ppo,54,21.6,0.958780825138092,-0.11910524219274521,0.9779287576675415,-0.1083928644657135,1.0211632251739502,-0.07801784574985504,0.0001467683759983629,0.0006936827558092773,0.001735340221785009,0.0037368375342339277,-0.002276522573083639,-0.0032500617671757936,-1.340590000152588,-4.157736778259277,4.21762228012085,-0.01340589951723814,-0.04157736524939537,0.04217622056603432 +karman_re50,ppo,55,22.0,0.9725889563560486,-0.15712302923202515,0.9765554666519165,-0.17608559131622314,1.007469654083252,-0.1708720177412033,0.00026965283905155957,1.734850047796499e-05,0.0015699933283030987,0.003672246588394046,-0.0019428443629294634,-0.0035459098871797323,-0.6629393100738525,-4.13483190536499,3.7800421714782715,-0.006629392970353365,-0.04134831950068474,0.037800420075654984 +karman_re50,ppo,56,22.4,0.9920981526374817,-0.19060677289962769,0.9825108051300049,-0.22648033499717712,1.0066313743591309,-0.2331845909357071,0.0003434555255807936,-0.0007401531329378486,0.001348489779047668,0.003745350521057844,-0.0014314219588413835,-0.0038509706500917673,-0.02973291277885437,-4.19675874710083,3.2968690395355225,-0.0002973291266243905,-0.04196758568286896,0.03296868875622749 +karman_re50,ppo,57,22.8,1.0137271881103516,-0.22681139409542084,0.991371750831604,-0.26290780305862427,1.0088205337524414,-0.26782792806625366,0.00032942023244686425,-0.0014361031353473663,0.0010980555089190602,0.003949621692299843,-0.0009666327969171107,-0.003988679498434067,0.5259180068969727,-4.373363018035889,3.028409719467163,0.005259179975837469,-0.0437336303293705,0.03028409741818905 +karman_re50,ppo,58,23.2,1.0361422300338745,-0.26742538809776306,0.9969019293785095,-0.29153814911842346,1.0067543983459473,-0.2771587669849396,0.00028129611746408045,-0.0019224535208195448,0.0008182889432646334,0.004173093941062689,-0.0007279364508576691,-0.0039034432265907526,1.0195505619049072,-4.563307762145996,3.064202308654785,0.010195505805313587,-0.04563307762145996,0.03064202331006527 +karman_re50,ppo,59,23.6,1.058110237121582,-0.30907484889030457,0.9940125942230225,-0.31187161803245544,0.9966726899147034,-0.26268914341926575,0.00020368063997011632,-0.002116541611030698,0.0005390918231569231,0.004293362610042095,-0.000664255756419152,-0.003674556268379092,1.4413633346557617,-4.716862201690674,3.3586673736572266,0.01441363338381052,-0.04716861993074417,0.03358667343854904 +karman_re50,ppo,60,24.0,1.0777987241744995,-0.3410404920578003,0.9801203012466431,-0.3152226507663727,0.9780526757240295,-0.22808536887168884,8.016482024686411e-05,-0.002070849761366844,0.00029861778602935374,0.004216053988784552,-0.00060075189685449,-0.0033851368352770805,1.7727285623550415,-4.87777853012085,3.8275249004364014,0.017727285623550415,-0.048777785152196884,0.03827524930238724 +karman_re50,ppo,61,24.4,1.0934315919876099,-0.34343594312667847,0.9568917155265808,-0.2885686159133911,0.955738365650177,-0.17832468450069427,-0.00010157797805732116,-0.0018650130368769169,0.00011171619553351775,0.003898769849911332,-0.00042765415855683386,-0.00309381284750998,1.991894006729126,-5.033751010894775,4.346889972686768,0.019918939098715782,-0.05033750832080841,0.0434689000248909 +karman_re50,ppo,62,24.8,1.1031768321990967,-0.2979471981525421,0.9298486113548279,-0.22196760773658752,0.9370626211166382,-0.11786948144435883,-0.00032903411192819476,-0.0015551792457699776,-5.298442192724906e-05,0.0033808609005063772,-0.00011290921975160018,-0.0028381573501974344,2.0335581302642822,-5.062437057495117,4.737066745758057,0.02033558115363121,-0.05062437057495117,0.04737066477537155 +karman_re50,ppo,63,25.2,1.1053266525268555,-0.2049163430929184,0.9058685898780823,-0.11603087186813354,0.9267251491546631,-0.05013985186815262,-0.0005478734965436161,-0.0011948106111958623,-0.00024805680732242763,0.0028207399882376194,0.00026662484742701054,-0.0025849295780062675,1.8197851181030273,-4.823153018951416,4.836263656616211,0.01819785125553608,-0.04823153093457222,0.04836263507604599 +karman_re50,ppo,64,25.6,1.0971659421920776,-0.0787358283996582,0.894034206867218,0.014178426004946232,0.9264852404594421,0.01913764886558056,-0.0006337734521366656,-0.0008381748921237886,-0.0004261643043719232,0.0025858748704195023,0.0004828103701584041,-0.002331930911168456,1.3163297176361084,-4.252592086791992,4.612208366394043,0.01316329650580883,-0.042525921016931534,0.04612208157777786 +karman_re50,ppo,65,26.0,1.071463942527771,0.07132811844348907,0.9044718742370605,0.13764111697673798,0.9364784955978394,0.08041670173406601,-0.0005146171897649765,-0.0005114955711178482,-0.0003725803690031171,0.0029697748832404613,0.0003568608080968261,-0.002197831869125366,0.5481809377670288,-3.3859429359436035,4.176041126251221,0.005481809377670288,-0.03385942801833153,0.041760411113500595 +karman_re50,ppo,66,26.4,1.0282012224197388,0.2283763438463211,0.9373432993888855,0.22378015518188477,0.9555413722991943,0.1268349140882492,-0.00019410015374887735,-0.00014940844266675413,7.335704867728055e-05,0.003836418967694044,-0.0001109310396714136,-0.0022727050818502903,-0.3789770305156708,-2.3572583198547363,3.681213855743408,-0.003789770184084773,-0.023572582751512527,0.03681213781237602 +karman_re50,ppo,67,26.8,0.9923657178878784,0.3379189670085907,0.9790287017822266,0.26867130398750305,0.9805706739425659,0.16177919507026672,0.00040006302879191935,0.00033193736453540623,0.0007240156992338598,0.00462898937985301,-0.0008119528065435588,-0.0026085632853209972,-1.2807385921478271,-1.4111969470977783,3.2535698413848877,-0.012807385995984077,-0.014111969619989395,0.032535698264837265 +karman_re50,ppo,68,27.2,0.9839909076690674,0.3679145574569702,1.0171599388122559,0.2882716655731201,1.009037971496582,0.19371208548545837,0.0012814007932320237,0.0009269920992664993,0.0010799425654113293,0.004813787993043661,-0.0015658995835110545,-0.0031857574358582497,-2.007840871810913,-0.9559874534606934,2.963836908340454,-0.02007840760052204,-0.009559874422848225,0.029638368636369705 +karman_re50,ppo,69,27.6,0.9901865124702454,0.3422744870185852,1.0419578552246094,0.29698827862739563,1.0358469486236572,0.22668349742889404,0.002082124352455139,0.0014581999275833368,0.001019025919958949,0.004358792677521706,-0.0020183343440294266,-0.003796542529016733,-2.607090950012207,-1.1675851345062256,2.628624439239502,-0.026070909574627876,-0.011675851419568062,0.02628624439239502 +karman_re50,ppo,70,28.0,0.9931029677391052,0.29223331809043884,1.0509353876113892,0.2992187440395355,1.0594565868377686,0.25978192687034607,0.002292376011610031,0.001891218707896769,0.0009990218095481396,0.003842894919216633,-0.0018913933308795094,-0.0040176501497626305,-3.0889370441436768,-1.846040964126587,2.2535362243652344,-0.030889369547367096,-0.018460409715771675,0.022535361349582672 +karman_re50,ppo,71,28.4,0.9867221117019653,0.2327955812215805,1.0468528270721436,0.29022321105003357,1.0806145668029785,0.2875775396823883,0.0019917322788387537,0.0021830580662935972,0.0011778890620917082,0.003719544969499111,-0.0016470493283122778,-0.0037100291810929775,-3.260042905807495,-2.58608341217041,2.369270086288452,-0.03260042890906334,-0.025860833004117012,0.023692701011896133 +karman_re50,ppo,72,28.8,0.9719352126121521,0.16860562562942505,1.0318690538406372,0.2593541443347931,1.0959545373916626,0.29559552669525146,0.001502352301031351,0.0021752917673438787,0.0014766056556254625,0.00385511526837945,-0.0017366217216476798,-0.003281122073531151,-3.1907403469085693,-3.1371705532073975,2.940192222595215,-0.031907401978969574,-0.03137170523405075,0.02940192073583603 +karman_re50,ppo,73,29.2,0.9552746415138245,0.09982308745384216,1.0121703147888184,0.19919931888580322,1.1028863191604614,0.2653214931488037,0.00107489968650043,0.001984229777008295,0.001766288303770125,0.003966396674513817,-0.00215896125882864,-0.002930567367002368,-3.060047149658203,-3.5647621154785156,3.5582151412963867,-0.030600471422076225,-0.035647619515657425,0.035582151263952255 +karman_re50,ppo,74,29.6,0.9426777362823486,0.027790410444140434,0.9947962760925293,0.11444451659917831,1.0989283323287964,0.1895117312669754,0.0007242009160108864,0.0016840300522744656,0.0020430579315871,0.0040440126322209835,-0.0025281256530433893,-0.002773667685687542,-2.8952651023864746,-3.8684234619140625,3.8978183269500732,-0.028952650725841522,-0.03868423402309418,0.03897818177938461 +karman_re50,ppo,75,30.0,0.9375212788581848,-0.044715240597724915,0.982394814491272,0.014405892230570316,1.0844634771347046,0.0769326314330101,0.0005316800088621676,0.0013049024855718017,0.002278228523209691,0.00406969478353858,-0.0029315995052456856,-0.0025892662815749645,-2.5185394287109375,-4.028477668762207,4.104448318481445,-0.025185393169522285,-0.04028477519750595,0.041044481098651886 +karman_re50,ppo,76,30.4,0.9419994950294495,-0.10629630833864212,0.9751131534576416,-0.08528021723031998,1.0657669305801392,-0.045967403799295425,0.0005386348348110914,0.0007737802807241678,0.0024371654726564884,0.004041814245283604,-0.0032316402066498995,-0.002518627094104886,-1.972583293914795,-3.972386360168457,4.007783889770508,-0.01972583308815956,-0.03972386196255684,0.04007783904671669 +karman_re50,ppo,77,30.8,0.955456554889679,-0.1517227292060852,0.9740903973579407,-0.1690969467163086,1.0525168180465698,-0.15061122179031372,0.0006976534496061504,0.00014578003901988268,0.0024418754037469625,0.004060138016939163,-0.003311005188152194,-0.0026975602377206087,-1.337743878364563,-3.828561305999756,3.643929958343506,-0.013377438299357891,-0.03828561305999756,0.03643929958343506 +karman_re50,ppo,78,31.2,0.9751813411712646,-0.1863533854484558,0.9807712435722351,-0.22698578238487244,1.0467462539672852,-0.22299884259700775,0.0008237407309934497,-0.0005669853999279439,0.0023754676803946495,0.00425918260589242,-0.003070153295993805,-0.003120278939604759,-0.7192845344543457,-3.7636802196502686,3.2228944301605225,-0.007192844990640879,-0.03763680160045624,0.03222894296050072 +karman_re50,ppo,79,31.6,0.9979966878890991,-0.22000747919082642,0.9916869401931763,-0.263888955116272,1.0430043935775757,-0.26380735635757446,0.0007835766882635653,-0.0013152612373232841,0.0023312801495194435,0.004603042732924223,-0.0026479638181626797,-0.0035312045365571976,-0.133131206035614,-3.8822617530822754,3.0617005825042725,-0.0013313119998201728,-0.03882261738181114,0.0306170042604208 +karman_re50,ppo,80,32.0,1.0217152833938599,-0.25757285952568054,1.0002247095108032,-0.29050830006599426,1.0365643501281738,-0.2760455310344696,0.0005695692962035537,-0.00196339120157063,0.0022998321801424026,0.00492568826302886,-0.0022588411811739206,-0.0037305084988474846,0.40849313139915466,-4.141012191772461,3.2273006439208984,0.004084931220859289,-0.04141012206673622,0.032273005694150925 +karman_re50,ppo,81,32.4,1.0451489686965942,-0.2985093593597412,1.0009386539459229,-0.311152845621109,1.0237764120101929,-0.26422157883644104,0.0002579129359219223,-0.002361300168558955,0.002228188095614314,0.005063439719378948,-0.0019631306640803814,-0.00369418878108263,0.8725225329399109,-4.464076519012451,3.636108875274658,0.008725224994122982,-0.044640764594078064,0.03636108711361885 +karman_re50,ppo,82,32.8,1.0668197870254517,-0.33572638034820557,0.9904701709747314,-0.31988316774368286,1.0030159950256348,-0.23310352861881256,-6.878290878375992e-05,-0.002450611675158143,0.0020607225596904755,0.004915622062981129,-0.0016800230368971825,-0.003449787851423025,1.2538537979125977,-4.803295612335205,4.183404445648193,0.012538537383079529,-0.04803295433521271,0.04183404520153999 +karman_re50,ppo,83,33.2,1.0849323272705078,-0.3525885343551636,0.9688689708709717,-0.30397549271583557,0.9779417514801025,-0.18708175420761108,-0.000416339113144204,-0.0022947215475142,0.0018136213766410947,0.0044263508170843124,-0.0012944871559739113,-0.0030635439325124025,1.5547724962234497,-5.084771633148193,4.753469944000244,0.015547724440693855,-0.05084771662950516,0.047534696757793427 +karman_re50,ppo,84,33.6,1.097536563873291,-0.3278588354587555,0.9399756789207458,-0.2503020763397217,0.9554688334465027,-0.12918415665626526,-0.0007349292864091694,-0.0019687742460519075,0.0014756094897165895,0.003621412441134453,-0.0007638768875040114,-0.0026144564617425203,1.721865177154541,-5.21386194229126,5.190330505371094,0.01721865125000477,-0.052138619124889374,0.05190330371260643 +karman_re50,ppo,85,34.0,1.1026637554168701,-0.2539171278476715,0.9102182984352112,-0.1541428118944168,0.940977931022644,-0.06243392080068588,-0.0009915600530803204,-0.0015553559642285109,0.0010061829816550016,0.002689673798158765,-0.00017012677562888712,-0.0021562695037573576,1.6564643383026123,-5.062185287475586,5.302981376647949,0.016564643010497093,-0.05062185227870941,0.05302981287240982 +karman_re50,ppo,86,34.4,1.0976855754852295,-0.141847163438797,0.8883291482925415,-0.024356745183467865,0.9367626309394836,0.007725640665739775,-0.0010637581581249833,-0.0011391908628866076,0.0004665883898269385,0.0020556116942316294,0.0002533689548727125,-0.0017286045476794243,1.2802832126617432,-4.567865371704102,5.002811908721924,0.012802831828594208,-0.045678652822971344,0.05002811923623085 +karman_re50,ppo,87,34.8,1.0744757652282715,-0.0010494174202904105,0.8871710896492004,0.1115994080901146,0.9436934590339661,0.07136499136686325,-0.0008838648209348321,-0.0007952051819302142,0.00010559013753663749,0.0022084014490246773,0.00025317122344858944,-0.0014826958067715168,0.5767936706542969,-3.7600111961364746,4.371478080749512,0.00576793635264039,-0.037600111216306686,0.04371478036046028 +karman_re50,ppo,88,35.2,1.0247104167938232,0.1659172773361206,0.9142561554908752,0.21637015044689178,0.9609546065330505,0.1203610971570015,-0.00045251913252286613,-0.0004966447595506907,0.0002208929363405332,0.003213230287656188,-0.0002395470510236919,-0.0015435990644618869,-0.3623262047767639,-2.7397356033325195,3.6479551792144775,-0.003623262047767639,-0.027397355064749718,0.03647955134510994 +karman_re50,ppo,89,35.6,0.9678906202316284,0.317079097032547,0.9590784311294556,0.27593523263931274,0.9854438900947571,0.15705396234989166,0.00023578434775117785,-8.085562876658514e-05,0.0007994289044290781,0.00444061029702425,-0.001044618315063417,-0.0018992385594174266,-1.3532413244247437,-1.6582310199737549,3.0375614166259766,-0.01353241316974163,-0.01658231019973755,0.030375612899661064 +karman_re50,ppo,90,36.0,0.9379477500915527,0.3899443745613098,1.004523515701294,0.3035445809364319,1.0131638050079346,0.1892957091331482,0.0012570498511195183,0.0005401296075433493,0.0012989884708076715,0.0049982876516878605,-0.0019276548409834504,-0.0024990367237478495,-2.2017405033111572,-0.9039983153343201,2.6155567169189453,-0.022017404437065125,-0.0090399831533432,0.026155566796660423 +karman_re50,ppo,91,36.4,0.9366102814674377,0.3826453685760498,1.039923906326294,0.3152714669704437,1.0411239862442017,0.22172988951206207,0.0023224903270602226,0.0012038773857057095,0.00132798682898283,0.004593787714838982,-0.00250333733856678,-0.003165209200233221,-2.8953299522399902,-0.8548507690429688,2.1731810569763184,-0.028953298926353455,-0.00854850746691227,0.02173181064426899 +karman_re50,ppo,92,36.8,0.9427659511566162,0.329511821269989,1.060714602470398,0.3161907196044922,1.0674850940704346,0.25389131903648376,0.00275037856772542,0.0018169381655752659,0.001336325891315937,0.003921534400433302,-0.0023627018090337515,-0.0034369537606835365,-3.467991352081299,-1.4456610679626465,1.612628698348999,-0.03467991203069687,-0.014456610195338726,0.01612628623843193 +karman_re50,ppo,93,37.2,0.9425111413002014,0.256124883890152,1.0650945901870728,0.3014935851097107,1.0896522998809814,0.2803577482700348,0.0024960653390735388,0.0022796476259827614,0.001565989456139505,0.0037111914716660976,-0.0019605779089033604,-0.003072416875511408,-3.681290864944458,-2.234679698944092,1.6022257804870605,-0.036812908947467804,-0.022346796467900276,0.01602225750684738 +karman_re50,ppo,94,37.6,0.9354381561279297,0.1766970455646515,1.0549213886260986,0.2627828121185303,1.1048157215118408,0.2893078029155731,0.0019312857184559107,0.0023317381273955107,0.0019342326559126377,0.0039049405604600906,-0.0019614677876234055,-0.0024988623335957527,-3.5427138805389404,-2.845181465148926,2.2649731636047363,-0.03542713820934296,-0.028451813384890556,0.02264973148703575 +karman_re50,ppo,95,38.0,0.9272746443748474,0.09907374531030655,1.0359748601913452,0.1954508274793625,1.1096646785736084,0.2635272741317749,0.0013773452956229448,0.0021013114601373672,0.002268184907734394,0.00416647968813777,-0.0024163054767996073,-0.0020562815479934216,-3.3056137561798096,-3.296638250350952,3.091702461242676,-0.03305613622069359,-0.032966382801532745,0.030917024239897728 +karman_re50,ppo,96,38.4,0.9225795865058899,0.024522405117750168,1.0160629749298096,0.105476014316082,1.1015844345092773,0.19308307766914368,0.0009845492895692587,0.0018173811258748174,0.0024702614173293114,0.004299763590097427,-0.0030214732978492975,-0.0017622377490624785,-3.054903507232666,-3.599372625350952,3.661302089691162,-0.030549034476280212,-0.035993725061416626,0.03661302104592323 +karman_re50,ppo,97,38.8,0.9237052798271179,-0.04698262736201286,1.0009689331054688,0.006261039525270462,1.081392765045166,0.0851840078830719,0.0007323850877583027,0.001550711807794869,0.0025639799423515797,0.004343247506767511,-0.0035449694842100143,-0.0016094261081889272,-2.7088401317596436,-3.694270610809326,3.861262083053589,-0.027088399976491928,-0.036942705512046814,0.038612619042396545 +karman_re50,ppo,98,39.2,0.9321205019950867,-0.10868216305971146,0.9918180108070374,-0.08855599164962769,1.0565351247787476,-0.03632471710443497,0.0006627015536651015,0.001232092035934329,0.002544645918533206,0.0043757883831858635,-0.0038675705436617136,-0.0016951295547187328,-2.1626622676849365,-3.591442823410034,3.8369715213775635,-0.02162662148475647,-0.035914428532123566,0.038369715213775635 +karman_re50,ppo,99,39.6,0.9475891590118408,-0.1538187563419342,0.9884929656982422,-0.1671868860721588,1.039223074913025,-0.14143319427967072,0.0007673483924008906,0.0007600851240567863,0.002420156029984355,0.0044444771483540535,-0.003882321994751692,-0.0021525986958295107,-1.4672644138336182,-3.424959659576416,3.656860113143921,-0.014672643505036831,-0.034249596297740936,0.03656860068440437 +karman_re50,ppo,100,40.0,0.9681793451309204,-0.18603463470935822,0.9922093152999878,-0.2221873253583908,1.033814787864685,-0.21466632187366486,0.0008915124926716089,0.00010212244524154812,0.0022239224053919315,0.004616952501237392,-0.003493306692689657,-0.002914388431236148,-0.7821140289306641,-3.4178836345672607,3.4107744693756104,-0.007821139879524708,-0.03417883440852165,0.034107744693756104 +karman_re50,ppo,101,40.4,0.9913210272789001,-0.21548627316951752,1.0012173652648926,-0.25708478689193726,1.033719539642334,-0.2573383152484894,0.0008537157555110753,-0.0006978304008953273,0.002055090619251132,0.004902591463178396,-0.0027888850308954716,-0.0036265822127461433,-0.1659805029630661,-3.6717729568481445,3.27986478805542,-0.001659804955124855,-0.0367177277803421,0.0327986478805542 +karman_re50,ppo,102,40.8,1.015053391456604,-0.24877406656742096,1.00985848903656,-0.2817694842815399,1.0314996242523193,-0.27256619930267334,0.000651446811389178,-0.0014715215656906366,0.0019175458000972867,0.00520144822075963,-0.0020608375780284405,-0.003953028470277786,0.40511736273765564,-4.087703704833984,3.375976324081421,0.004051173571497202,-0.04087703675031662,0.03375976160168648 +karman_re50,ppo,103,41.2,1.0383312702178955,-0.28665807843208313,1.0123080015182495,-0.30108314752578735,1.0224095582962036,-0.26183581352233887,0.00035551772452890873,-0.0020099536050111055,0.0017463521799072623,0.005317059811204672,-0.0015222884248942137,-0.0038785506039857864,0.9290141463279724,-4.4844183921813965,3.703141927719116,0.009290141053497791,-0.04484418407082558,0.037031419575214386 +karman_re50,ppo,104,41.6,1.0599544048309326,-0.3242451846599579,1.0043092966079712,-0.3108561336994171,1.0046167373657227,-0.22931808233261108,2.919284816016443e-05,-0.0021872653160244226,0.0014808442210778594,0.005089963786303997,-0.0010998760117217898,-0.0035686553455889225,1.3712857961654663,-4.802361011505127,4.201348304748535,0.013712857849895954,-0.04802360758185387,0.04201348125934601 +karman_re50,ppo,105,42.0,1.078346610069275,-0.3483312129974365,0.9842826128005981,-0.3001183569431305,0.9817458987236023,-0.18229185044765472,-0.0002776953624561429,-0.0020545064471662045,0.0010928461560979486,0.004464274737983942,-0.0006344981375150383,-0.0031325113959610462,1.7055256366729736,-5.0780463218688965,4.733867168426514,0.01705525629222393,-0.050780460238456726,0.04733867198228836 +karman_re50,ppo,106,42.4,1.0916106700897217,-0.3384334444999695,0.9546271562576294,-0.25628387928009033,0.9615160226821899,-0.12747350335121155,-0.0005735574522987008,-0.0017331200651824474,0.0006147324456833303,0.0035196528770029545,-6.344790745060891e-05,-0.0026151929050683975,1.9002270698547363,-5.253325939178467,5.113411903381348,0.019002269953489304,-0.05253325775265694,0.05113411694765091 +karman_re50,ppo,107,42.8,1.098067283630371,-0.28137362003326416,0.9211377501487732,-0.1723421812057495,0.9497214555740356,-0.06735942512750626,-0.0007966288831084967,-0.0013385635102167726,4.4345179048832506e-05,0.002489464357495308,0.0005160030559636652,-0.002095125848427415,1.8841713666915894,-5.184128284454346,5.165677547454834,0.018841713666915894,-0.05184128135442734,0.051656775176525116 +karman_re50,ppo,108,43.2,1.0961649417877197,-0.18496406078338623,0.8921064734458923,-0.05396219342947006,0.9476345777511597,-0.00399270374327898,-0.00087354687275365,-0.000979714561253786,-0.0005489926552399993,0.0018256590701639652,0.0008983015432022512,-0.0016863570781424642,1.5620447397232056,-4.78017520904541,4.790618896484375,0.015620446763932705,-0.047801751643419266,0.04790618643164635 +karman_re50,ppo,109,43.6,1.0810374021530151,-0.0644671693444252,0.8795585036277771,0.0789245143532753,0.9550615549087524,0.05622825771570206,-0.000739651673939079,-0.0007169211166910827,-0.0009636538452468812,0.002038867911323905,0.0008536828099749982,-0.001507198205217719,0.9187095165252686,-4.089522838592529,4.138816833496094,0.009187094867229462,-0.04089522734284401,0.041388168931007385 +karman_re50,ppo,110,44.0,1.0411736965179443,0.07486502826213837,0.8959847092628479,0.1922224462032318,0.9716518521308899,0.10391176491975784,-0.00043625992839224637,-0.0004826685762964189,-0.0008112206123769283,0.003185353009030223,0.00039233642746694386,-0.0015984050696715713,0.07138970494270325,-3.1921114921569824,3.562432289123535,0.0007138970540836453,-0.03192111477255821,0.035624321550130844 +karman_re50,ppo,111,44.4,0.9746959209442139,0.22382749617099762,0.9389963746070862,0.26356077194213867,0.9952536225318909,0.13840222358703613,-4.3552921852096915e-05,-8.104395965347067e-05,-1.6591446183156222e-05,0.004525304771959782,-0.00027024754672311246,-0.0018863589502871037,-0.7872726917266846,-2.2014317512512207,3.3382937908172607,-0.007872726768255234,-0.0220143161714077,0.03338293731212616 +karman_re50,ppo,112,44.8,0.9095655083656311,0.3350009024143219,0.992165207862854,0.2967280447483063,1.022214412689209,0.1664855182170868,0.0005873366608284414,0.0005323878140188754,0.0008373020100407302,0.005129009950906038,-0.001039119902998209,-0.002341346349567175,-1.60598886013031,-1.370058536529541,3.250986337661743,-0.016059888526797295,-0.013700584881007671,0.03250986337661743 +karman_re50,ppo,113,45.2,0.874777615070343,0.3657945990562439,1.040428638458252,0.30396565794944763,1.049182653427124,0.19325466454029083,0.0014861866366118193,0.0011698330054059625,0.0011077034287154675,0.004931190516799688,-0.0018166559748351574,-0.0029818129260092974,-2.4260330200195312,-1.073049783706665,2.838040590286255,-0.024260329082608223,-0.010730497539043427,0.02838040515780449 +karman_re50,ppo,114,45.6,0.8694689273834229,0.32371726632118225,1.0737684965133667,0.29114830493927,1.0734374523162842,0.21921266615390778,0.002182513242587447,0.001677920576184988,0.0010698366677388549,0.004389375448226929,-0.002152262255549431,-0.0034856670536100864,-3.1463630199432373,-1.4540820121765137,2.1732914447784424,-0.0314636304974556,-0.014540819451212883,0.021732913330197334 +karman_re50,ppo,115,46.0,0.8793971538543701,0.24290527403354645,1.0857264995574951,0.25874221324920654,1.0921601057052612,0.24124260246753693,0.0022390533704310656,0.0020823932718485594,0.0012192865833640099,0.004045738372951746,-0.0019853138364851475,-0.0033736613113433123,-3.5358173847198486,-2.2579469680786133,1.8724552392959595,-0.03535817191004753,-0.02257946878671646,0.018724551424384117 +karman_re50,ppo,116,46.4,0.8955777883529663,0.15925998985767365,1.075745701789856,0.20802125334739685,1.1022953987121582,0.2520211935043335,0.0018215483287349343,0.0021864199079573154,0.0015967697836458683,0.004118482582271099,-0.0019380748271942139,-0.002816774882376194,-3.4719278812408447,-3.0107054710388184,2.3139007091522217,-0.034719277173280716,-0.030107054859399796,0.02313900738954544 +karman_re50,ppo,117,46.8,0.9123142957687378,0.09077948331832886,1.0523638725280762,0.14411339163780212,1.101180911064148,0.23879820108413696,0.0012812576023861766,0.0019861471373587847,0.002013210905715823,0.004327232018113136,-0.002281348453834653,-0.00227149436250329,-3.167919397354126,-3.482433557510376,3.124762535095215,-0.031679194420576096,-0.03482433408498764,0.03124762512743473 +karman_re50,ppo,118,47.2,0.9250752329826355,0.029853783547878265,1.0291755199432373,0.07466879487037659,1.0874422788619995,0.19030889868736267,0.0008186761406250298,0.0017625173786655068,0.00226682610809803,0.004392553586512804,-0.0028055477887392044,-0.0019213740015402436,-2.8435401916503906,-3.6937413215637207,3.7645184993743896,-0.028435401618480682,-0.0369374118745327,0.03764518350362778 +karman_re50,ppo,119,47.6,0.9339852333068848,-0.03344746679067612,1.014428973197937,0.004321088548749685,1.0621980428695679,0.10599071532487869,0.000503476127050817,0.0016533342422917485,0.0022927194368094206,0.004314345307648182,-0.003227464621886611,-0.0018621520139276981,-2.494236707687378,-3.7259902954101562,4.057556629180908,-0.024942366406321526,-0.03725990280508995,0.04057556390762329 +karman_re50,ppo,120,48.0,0.9435552358627319,-0.09296444803476334,1.0058579444885254,-0.06680550426244736,1.0309447050094604,-0.0002841705281753093,0.0003370494523551315,0.0015016989782452583,0.002156984293833375,0.0042548044584691525,-0.0034056613221764565,-0.0021560094319283962,-1.9988343715667725,-3.6775434017181396,4.137117862701416,-0.019988343119621277,-0.03677543252706528,0.0413711778819561 +karman_re50,ppo,121,48.4,0.9572197794914246,-0.13810262084007263,0.9994537234306335,-0.13508403301239014,1.0051366090774536,-0.10379333794116974,0.00033607680234126747,0.0011210483498871326,0.0019273050129413605,0.004247480537742376,-0.0032350935507565737,-0.0027792637702077627,-1.3246170282363892,-3.633751153945923,4.101635456085205,-0.013246170245110989,-0.036337509751319885,0.0410163551568985 +karman_re50,ppo,122,48.8,0.9751071929931641,-0.17053231596946716,0.9973127245903015,-0.19151712954044342,0.9947230815887451,-0.18374799191951752,0.00043309637112542987,0.00046842521987855434,0.001632738159969449,0.004287133924663067,-0.002648320747539401,-0.0035619724076241255,-0.609336793422699,-3.7315776348114014,3.887086868286133,-0.00609336793422699,-0.03731577470898628,0.03887086734175682 +karman_re50,ppo,123,49.2,0.9956279993057251,-0.199677512049675,1.0014467239379883,-0.23188713192939758,0.9971768856048584,-0.23446063697338104,0.0004604624700732529,-0.00035153620410710573,0.0013170525198802352,0.004394971299916506,-0.0017554350197315216,-0.004155745264142752,0.026798726990818977,-4.048786163330078,3.565990686416626,0.00026798725593835115,-0.0404878593981266,0.03565990552306175 +karman_re50,ppo,124,49.6,1.0174250602722168,-0.23281051218509674,1.0080398321151733,-0.2618373930454254,1.0018101930618286,-0.2595418095588684,0.0004048399569001049,-0.0011467642616480589,0.000991911394521594,0.004536435008049011,-0.000931017566472292,-0.004261131398379803,0.5993986129760742,-4.450552940368652,3.371990203857422,0.005993986036628485,-0.0445055291056633,0.033719900995492935 +karman_re50,ppo,125,50.0,1.0392814874649048,-0.2708183228969574,1.0108134746551514,-0.2858845591545105,1.000820517539978,-0.25972309708595276,0.0002961907593999058,-0.0016839971067383885,0.0006365151493810117,0.004580398090183735,-0.0004508567217271775,-0.003998049534857273,1.145518183708191,-4.700454235076904,3.44771409034729,0.011455181986093521,-0.047004539519548416,0.03447714075446129 +karman_re50,ppo,126,50.4,1.0600898265838623,-0.31034332513809204,1.004738211631775,-0.3021372854709625,0.990822434425354,-0.23737287521362305,0.0001833549322327599,-0.0018706124974414706,0.00020912483159918338,0.004382775630801916,-0.00022018740128260106,-0.0036448324099183083,1.6011041402816772,-4.824919700622559,3.751375675201416,0.016011040657758713,-0.048249196261167526,0.03751375526189804 +karman_re50,ppo,127,50.8,1.0781869888305664,-0.3404521048069,0.987403392791748,-0.30147111415863037,0.9731235504150391,-0.19865459203720093,5.672058978234418e-05,-0.0017857827479019761,-0.0002508749603293836,0.003940554801374674,3.0068740670685656e-06,-0.003268817439675331,1.9134521484375,-4.978821754455566,4.116458892822266,0.019134521484375,-0.0497882179915905,0.0411645881831646 +karman_re50,ppo,128,51.2,1.093194842338562,-0.3421004116535187,0.9616040587425232,-0.27194663882255554,0.9552015066146851,-0.15074370801448822,-7.95614905655384e-05,-0.001571695669554174,-0.0006875943508930504,0.0033682924695312977,0.00027692029834724963,-0.002891341457143426,2.094599485397339,-5.1328887939453125,4.435292720794678,0.020945994183421135,-0.051328886300325394,0.044352926313877106 +karman_re50,ppo,129,51.6,1.0996017456054688,-0.2962728440761566,0.9294307827949524,-0.20321069657802582,0.9407427310943604,-0.09639633446931839,-0.0002344909153180197,-0.0012962903128936887,-0.001052609644830227,0.0028057233430445194,0.0005917286034673452,-0.0025646088179200888,2.104152202606201,-5.12214469909668,4.581728458404541,0.021041521802544594,-0.051221445202827454,0.04581728205084801 +karman_re50,ppo,130,52.0,1.100294589996338,-0.20544923841953278,0.9021031856536865,-0.09748383611440659,0.9365705847740173,-0.03680066019296646,-0.00034145626705139875,-0.0010209066094830632,-0.0013484820956364274,0.002478598617017269,0.0008187918574549258,-0.002338459249585867,1.8586231470108032,-4.820830345153809,4.46914529800415,0.018586231395602226,-0.04820830374956131,0.04469145089387894 +karman_re50,ppo,131,52.4,1.0909953117370605,-0.08518977463245392,0.8880220055580139,0.030326437205076218,0.9412940740585327,0.024599092081189156,-0.0003623297088779509,-0.0007664794684387743,-0.0014421467203646898,0.0026753952261060476,0.0008334102458320558,-0.0022154394537210464,1.3233311176300049,-4.208889484405518,4.14130163192749,0.013233310543000698,-0.04208889231085777,0.041413016617298126 +karman_re50,ppo,132,52.8,1.0635360479354858,0.05302579700946808,0.8986808657646179,0.14991289377212524,0.9545503258705139,0.07844889909029007,-0.0002791807637549937,-0.0004876939347013831,-0.001130863674916327,0.0034568447154015303,0.0005602348828688264,-0.0022203195840120316,0.5735421180725098,-3.354111671447754,3.8385376930236816,0.00573542108759284,-0.03354111686348915,0.03838537633419037 +karman_re50,ppo,133,53.2,1.0122156143188477,0.20037022233009338,0.9360056519508362,0.23202966153621674,0.9753158688545227,0.1182156354188919,-7.710864156251773e-05,-7.752890815027058e-05,-0.0003418024571146816,0.0043844799511134624,0.00010169195593334734,-0.0023609697818756104,-0.26507294178009033,-2.385385036468506,3.6924448013305664,-0.0026507293805480003,-0.023853849619627,0.03692444786429405 +karman_re50,ppo,134,53.6,0.9568275213241577,0.31562843918800354,0.9864627718925476,0.27139151096343994,1.0004709959030151,0.14747990667819977,0.0003509506641421467,0.0004710672365035862,0.0005136847612448037,0.004882560111582279,-0.0005106475437059999,-0.002675666008144617,-1.1132903099060059,-1.5289738178253174,3.5356082916259766,-0.011132902465760708,-0.015289737842977047,0.035356082022190094 +karman_re50,ppo,135,54.0,0.9258149862289429,0.35417473316192627,1.0343067646026611,0.2797408401966095,1.0263779163360596,0.17350557446479797,0.001096902065910399,0.0010427951347082853,0.0009179295739158988,0.004852963611483574,-0.0012157353339716792,-0.0032027203124016523,-1.9251214265823364,-1.122175931930542,3.1531147956848145,-0.01925121434032917,-0.011221759021282196,0.03153114765882492 +karman_re50,ppo,136,54.4,0.922147274017334,0.32116496562957764,1.0682895183563232,0.2698112726211548,1.05029296875,0.20018236339092255,0.001823951955884695,0.0015218248590826988,0.0008923003915697336,0.004473804030567408,-0.0016867202939465642,-0.0037437635473906994,-2.5992698669433594,-1.3536484241485596,2.654973268508911,-0.025992698967456818,-0.013536483980715275,0.02654973231256008 +karman_re50,ppo,137,54.8,0.9321830868721008,0.25234776735305786,1.081811785697937,0.24973700940608978,1.0701093673706055,0.2269258052110672,0.0020423056557774544,0.0018956523854285479,0.0008899828535504639,0.004055802710354328,-0.001695425366051495,-0.0038792418781667948,-3.0256452560424805,-2.0681135654449463,2.355720043182373,-0.030256452038884163,-0.02068113535642624,0.02355719916522503 +karman_re50,ppo,138,55.2,0.9444536566734314,0.18198572099208832,1.0748043060302734,0.2224956899881363,1.0840059518814087,0.24915137887001038,0.0017429052386432886,0.0021074346732348204,0.001083542825654149,0.003945779521018267,-0.0015971719985827804,-0.003554967697709799,-3.108596086502075,-2.857555866241455,2.56740140914917,-0.031085960566997528,-0.028575558215379715,0.025674013420939445 +karman_re50,ppo,139,55.6,0.9530061483383179,0.12388032674789429,1.0543900728225708,0.18603068590164185,1.0903984308242798,0.2559833228588104,0.0012240876676514745,0.002051208633929491,0.001396471867337823,0.004051628522574902,-0.0017403592355549335,-0.003134810132905841,-2.9482624530792236,-3.4067375659942627,3.1896166801452637,-0.02948262356221676,-0.03406737372279167,0.03189616650342941 +karman_re50,ppo,140,56.0,0.9559189081192017,0.06939610838890076,1.0312319993972778,0.13653557002544403,1.0878344774246216,0.23248954117298126,0.0007408503443002701,0.001903118216432631,0.0016435767756775022,0.0041185407899320126,-0.0020402397494763136,-0.0028890890534967184,-2.7369916439056396,-3.7266669273376465,3.8211829662323,-0.027369916439056396,-0.03726666793227196,0.03821182996034622 +karman_re50,ppo,141,56.4,0.9549738168716431,0.008101562038064003,1.0133626461029053,0.07309939712285995,1.0753071308135986,0.16959461569786072,0.000369259127182886,0.0017548890318721533,0.001774140284396708,0.004075295757502317,-0.0023158742114901543,-0.0028471320401877165,-2.485456705093384,-3.935478448867798,4.239401340484619,-0.024854566901922226,-0.03935478255152702,0.042394012212753296 +karman_re50,ppo,142,56.8,0.9549977779388428,-0.05560136213898659,1.0015636682510376,-0.001441220985725522,1.0535262823104858,0.0726999044418335,0.0001292366359848529,0.0015163837233558297,0.0018096105195581913,0.003994828090071678,-0.0024655049201101065,-0.0029542353004217148,-2.0974977016448975,-4.077819347381592,4.445507526397705,-0.02097497694194317,-0.04077819362282753,0.04445507377386093 +karman_re50,ppo,143,57.2,0.9605026841163635,-0.10912183672189713,0.9925678968429565,-0.08026745170354843,1.0280715227127075,-0.03843969479203224,8.623961184639484e-05,0.0010633576894178987,0.0017485193675383925,0.0038841741625219584,-0.002414416754618287,-0.003167963121086359,-1.5299261808395386,-4.136744499206543,4.425127983093262,-0.015299261547625065,-0.04136744514107704,0.044251278042793274 +karman_re50,ppo,144,57.6,0.9725778698921204,-0.14853666722774506,0.9869760274887085,-0.15161174535751343,1.0102695226669312,-0.13672974705696106,0.00018078826542478055,0.00041625346057116985,0.0016052130376920104,0.003783647669479251,-0.0020762255880981684,-0.003480656072497368,-0.861994743347168,-4.137887954711914,4.087190628051758,-0.008619947358965874,-0.04137887805700302,0.04087190702557564 +karman_re50,ppo,145,58.0,0.9895520806312561,-0.18086494505405426,0.9879681468009949,-0.20542314648628235,1.0060542821884155,-0.20431463420391083,0.00027654480072669685,-0.0003345998120494187,0.0013309476198628545,0.003765842877328396,-0.0015376051887869835,-0.0037885960191488266,-0.2029503434896469,-4.200397968292236,3.6028716564178467,-0.0020295034628361464,-0.04200397804379463,0.03602871671319008 +karman_re50,ppo,146,58.4,1.0094590187072754,-0.2149139642715454,0.9937965273857117,-0.2438346892595291,1.008678913116455,-0.24200019240379333,0.00031896212021820247,-0.00108822132460773,0.001035260153003037,0.0038820833433419466,-0.0009601701167412102,-0.003980395384132862,0.3702332675457001,-4.360743045806885,3.236558675765991,0.0037023324985057116,-0.043607428669929504,0.0323655866086483 +karman_re50,ppo,147,58.8,1.0306742191314697,-0.25387126207351685,0.9983177185058594,-0.27398979663848877,1.0087828636169434,-0.2549457848072052,0.00026945964782498777,-0.0016769780777394772,0.0007149491575546563,0.004062643740326166,-0.0005975263775326312,-0.00394135806709528,0.8782054781913757,-4.576489448547363,3.170614719390869,0.008782054297626019,-0.04576489329338074,0.03170614689588547 +karman_re50,ppo,148,59.2,1.0517624616622925,-0.29609063267707825,0.9957131743431091,-0.2981915771961212,1.001121997833252,-0.2474888563156128,0.00019412297115195543,-0.001981062116101384,0.000397325522499159,0.004168251063674688,-0.00046986810048110783,-0.0037301192060112953,1.3214058876037598,-4.7562055587768555,3.3893020153045654,0.013214058242738247,-0.04756205528974533,0.03389301896095276 +karman_re50,ppo,149,59.6,1.071211576461792,-0.33389055728912354,0.9826693534851074,-0.3103150427341461,0.9847073554992676,-0.2236005663871765,0.00010531035513849929,-0.0020067093428224325,0.00010809900413732976,0.004083986394107342,-0.0004210511688143015,-0.0034203564282506704,1.6798087358474731,-4.917026519775391,3.7782175540924072,0.01679808646440506,-0.04917026311159134,0.03778217360377312 +karman_re50,ppo,150,60.0,1.0873037576675415,-0.3497418463230133,0.959700345993042,-0.2978776693344116,0.963402509689331,-0.18618179857730865,-4.930765862809494e-05,-0.0018617399036884308,-0.00011136290413560346,0.0037821566220372915,-0.0002899185928981751,-0.00309342541731894,1.9381916522979736,-5.061725616455078,4.209649085998535,0.019381916150450706,-0.05061725527048111,0.04209648817777634 +karman_re50,ppo,151,60.4,1.0986462831497192,-0.32236847281455994,0.9313746690750122,-0.248240128159523,0.9439195990562439,-0.13637268543243408,-0.00024279301578644663,-0.0016091767465695739,-0.0002999509160872549,0.0033198194578289986,-4.3924501369474456e-05,-0.002818652195855975,2.051527738571167,-5.121814727783203,4.559552192687988,0.02051527611911297,-0.051218144595623016,0.04559551924467087 +karman_re50,ppo,152,60.8,1.103907823562622,-0.2445891946554184,0.904457151889801,-0.15659309923648834,0.9316567778587341,-0.0755067840218544,-0.00042269352707080543,-0.0012899951543658972,-0.000501875882036984,0.002832558937370777,0.0002738120383583009,-0.002591521944850683,1.9370574951171875,-4.957564353942871,4.684047698974609,0.01937057450413704,-0.04957564175128937,0.04684047773480415 +karman_re50,ppo,153,61.2,1.1006438732147217,-0.128263458609581,0.8866269588470459,-0.03125442564487457,0.9286531805992126,-0.008325097151100636,-0.0005316062015481293,-0.0009602943318895996,-0.0006929111550562084,0.0026099050883203745,0.0004927406553179026,-0.002402032259851694,1.5378572940826416,-4.4753007888793945,4.528051853179932,0.015378572978079319,-0.04475300759077072,0.045280516147613525 +karman_re50,ppo,154,61.6,1.0817961692810059,0.014916517771780491,0.8888887763023376,0.10195886343717575,0.9355220794677734,0.055455729365348816,-0.00048750583664514124,-0.0006311787874437869,-0.0006824523443356156,0.0029259505681693554,0.00044351007090881467,-0.0022765558678656816,0.8599743247032166,-3.6878602504730225,4.191528797149658,0.008599743247032166,-0.03687860071659088,0.04191528633236885 +karman_re50,ppo,155,62.0,1.0399153232574463,0.17776304483413696,0.918138325214386,0.20469552278518677,0.9519408345222473,0.10582508146762848,-0.00027793581830337644,-0.0002719309413805604,-0.00026421432266943157,0.0037190697621554136,8.953435462899506e-05,-0.0022998752538114786,-0.017636358737945557,-2.678727149963379,3.8036675453186035,-0.00017636358097661287,-0.026787271723151207,0.03803667426109314 +karman_re50,ppo,156,62.4,0.992418646812439,0.3168034255504608,0.9640300273895264,0.2603504955768585,0.9753172993659973,0.14287927746772766,0.000166212601470761,0.00018791493494063616,0.0004588953743223101,0.004537442699074745,-0.0005102322902530432,-0.0025387012865394354,-0.9507606029510498,-1.6452219486236572,3.4052510261535645,-0.00950760580599308,-0.01645221933722496,0.03405250981450081 +karman_re50,ppo,157,62.8,0.9699414968490601,0.37457379698753357,1.0090054273605347,0.28117263317108154,1.0018208026885986,0.17406511306762695,0.0009380792616866529,0.0007573059992864728,0.0010132953757420182,0.004877063445746899,-0.0012421407736837864,-0.00302398344501853,-1.7692033052444458,-0.9738285541534424,3.0461318492889404,-0.01769203320145607,-0.009738285094499588,0.03046131692826748 +karman_re50,ppo,158,63.2,0.9735805988311768,0.35701942443847656,1.0418612957000732,0.28630051016807556,1.0283758640289307,0.20539556443691254,0.0018354475032538176,0.0013212831690907478,0.0010705431923270226,0.004575812723487616,-0.0018329627346247435,-0.003640341805294156,-2.409710645675659,-0.9847891926765442,2.7223875522613525,-0.024097105488181114,-0.009847891516983509,0.027223875746130943 +karman_re50,ppo,159,63.6,0.9836688041687012,0.3037239611148834,1.0582563877105713,0.2859823703765869,1.0530657768249512,0.23793192207813263,0.0022713569924235344,0.001773300115019083,0.0009977068984881043,0.003999802283942699,-0.001890126965008676,-0.00401142705231905,-2.9230313301086426,-1.584399938583374,2.3451433181762695,-0.029230313375592232,-0.01584399864077568,0.023451432585716248 +karman_re50,ppo,160,64.0,0.9859458208084106,0.24134239554405212,1.0581955909729004,0.27901482582092285,1.074156403541565,0.26791897416114807,0.0020883912220597267,0.0021242257207632065,0.0010967848356813192,0.0037306174635887146,-0.0016404525376856327,-0.003833949565887451,-3.1773624420166016,-2.388355255126953,2.302454948425293,-0.03177362307906151,-0.023883551359176636,0.023024549707770348 +karman_re50,ppo,161,64.4,0.978198766708374,0.1789216548204422,1.045105218887329,0.25679704546928406,1.0901978015899658,0.2855009436607361,0.001654171384871006,0.0022271196357905865,0.0012361035915091634,0.0038195655215531588,-0.001633772742934525,-0.0033925215248018503,-3.1394872665405273,-3.0152974128723145,2.7888083457946777,-0.031394872814416885,-0.030152972787618637,0.027888081967830658 +karman_re50,ppo,162,64.8,0.9656935334205627,0.11737312376499176,1.0258985757827759,0.211231991648674,1.098860740661621,0.27349644899368286,0.0011005029082298279,0.002063627587631345,0.0016330392099916935,0.003965516574680805,-0.0018691144650802016,-0.0030853941570967436,-3.018695592880249,-3.4496002197265625,3.3780574798583984,-0.030186954885721207,-0.0344960018992424,0.033780574798583984 +karman_re50,ppo,163,65.2,0.9537391066551208,0.050641585141420364,1.007509469985962,0.1402921825647354,1.098067283630371,0.21859818696975708,0.0007075424655340612,0.001849249005317688,0.0018570865504443645,0.004048842005431652,-0.0022479963954538107,-0.0029096498619765043,-2.828287124633789,-3.8012847900390625,3.9608185291290283,-0.02828287146985531,-0.03801284730434418,0.039608184248209 +karman_re50,ppo,164,65.6,0.9463825225830078,-0.020129473879933357,0.9941191077232361,0.051503702998161316,1.0863021612167358,0.12244074791669846,0.00043495933641679585,0.0015360485995188355,0.002046187175437808,0.004039655439555645,-0.0026185675524175167,-0.002818450564518571,-2.5379815101623535,-4.014886379241943,4.222311019897461,-0.025379814207553864,-0.040148861706256866,0.04222311079502106 +karman_re50,ppo,165,66.0,0.9466226100921631,-0.08502599596977234,0.9848366379737854,-0.043517567217350006,1.0664653778076172,0.004019468557089567,0.0003344106371514499,0.0010898311156779528,0.0021633063443005085,0.0039961994625627995,-0.0028683384880423546,-0.00277615524828434,-2.072749137878418,-4.076438903808594,4.227538108825684,-0.02072749100625515,-0.04076438769698143,0.042275380343198776 +karman_re50,ppo,166,66.4,0.9556373357772827,-0.13493947684764862,0.9793245196342468,-0.1309899389743805,1.048680305480957,-0.10710462927818298,0.0004336061829235405,0.00047968034050427377,0.002182228956371546,0.003955312073230743,-0.002931292401626706,-0.0028709545731544495,-1.4515482187271118,-3.999131202697754,3.967683792114258,-0.014515481889247894,-0.039991311728954315,0.039676837623119354 +karman_re50,ppo,167,66.8,0.9718194603919983,-0.17185601592063904,0.9803643226623535,-0.19783292710781097,1.0407135486602783,-0.1887742429971695,0.0005944286240264773,-0.0002412012399872765,0.002107347594574094,0.00402419688180089,-0.002727861749008298,-0.003178158774971962,-0.8088232278823853,-3.919847011566162,3.526674747467041,-0.008088232018053532,-0.03919846937060356,0.03526674583554268 +karman_re50,ppo,168,67.2,0.9924065470695496,-0.20519667863845825,0.9878055453300476,-0.24225331842899323,1.0386680364608765,-0.23838800191879272,0.0006278228829614818,-0.0010066046379506588,0.0020044816192239523,0.004259792156517506,-0.0023256356362253428,-0.0035578557290136814,-0.2238776832818985,-3.99131178855896,3.199324369430542,-0.0022387767676264048,-0.0399131178855896,0.03199324384331703 +karman_re50,ppo,169,67.6,1.0149632692337036,-0.2418060153722763,0.9961124658584595,-0.2731843590736389,1.0351935625076294,-0.2603003978729248,0.0005125465104356408,-0.0017071685288101435,0.001933345920406282,0.004565532319247723,-0.0019072219729423523,-0.003773975186049938,0.3093929588794708,-4.21461820602417,3.181762218475342,0.003093929495662451,-0.04214617982506752,0.03181762248277664 +karman_re50,ppo,170,68.0,1.0376359224319458,-0.28273507952690125,0.9985752105712891,-0.297662615776062,1.0256266593933105,-0.2585596442222595,0.00028274962096475065,-0.00219130446203053,0.0018417006358504295,0.004760710522532463,-0.001634506625123322,-0.0037374598905444145,0.7926231622695923,-4.498116970062256,3.4609832763671875,0.007926231250166893,-0.04498117044568062,0.0346098318696022 +karman_re50,ppo,171,68.4,1.0589747428894043,-0.32361751794815063,0.9907147884368896,-0.31363552808761597,1.0080063343048096,-0.2377481460571289,2.1802017727168277e-05,-0.002368069486692548,0.0016903136856853962,0.0046973396092653275,-0.0014545823214575648,-0.003506527515128255,1.1996735334396362,-4.775864601135254,3.923485040664673,0.011996734887361526,-0.04775864630937576,0.03923485055565834 +karman_re50,ppo,172,68.8,1.0775110721588135,-0.3510996103286743,0.9714981913566589,-0.31046050786972046,0.9846321940422058,-0.20177188515663147,-0.0002673048584256321,-0.0022784629836678505,0.0014825797406956553,0.0043248687870800495,-0.0011955129448324442,-0.0031454346608370543,1.5167094469070435,-5.028544902801514,4.436134338378906,0.015167093835771084,-0.050285447388887405,0.04436134174466133 +karman_re50,ppo,173,69.2,1.09165620803833,-0.3439876437187195,0.9438299536705017,-0.2745559811592102,0.961455762386322,-0.15303847193717957,-0.0005709136021323502,-0.0020245681516826153,0.0012037222040817142,0.0036890520714223385,-0.000816712505184114,-0.002747840480878949,1.724251627922058,-5.1936421394348145,4.8763227462768555,0.017242515459656715,-0.051936421543359756,0.048763226717710495 +karman_re50,ppo,174,69.6,1.099941611289978,-0.28751805424690247,0.9135998487472534,-0.19679635763168335,0.9443459510803223,-0.0928807258605957,-0.0008090853807516396,-0.0016686987364664674,0.0008562588482163846,0.002930816961452365,-0.0003269357548560947,-0.0023639758583158255,1.7382655143737793,-5.146636009216309,5.086820125579834,0.017382655292749405,-0.051466360688209534,0.0508681982755661 +karman_re50,ppo,175,70.0,1.1003024578094482,-0.18732590973377228,0.8882099986076355,-0.07983735203742981,0.9362899661064148,-0.025110159069299698,-0.0009605096420273185,-0.0012809502659365535,0.0004141189274378121,0.002325159264728427,9.042736928677186e-05,-0.0020135364029556513,1.4805517196655273,-4.7795634269714355,4.968745708465576,0.01480551715940237,-0.04779563471674919,0.0496874563395977 +karman_re50,ppo,176,70.4,1.086803674697876,-0.056361909955739975,0.8784129619598389,0.05736283212900162,0.9384049773216248,0.04162617772817612,-0.0008918175008147955,-0.0009145301301032305,6.500993185909465e-05,0.0022779947612434626,0.000215437903534621,-0.001744659268297255,0.9103153944015503,-4.083372116088867,4.544197082519531,0.009103153832256794,-0.040833719074726105,0.045441970229148865 +karman_re50,ppo,177,70.8,1.0484365224838257,0.10395479947328568,0.8960486650466919,0.17784327268600464,0.9511120319366455,0.09672406315803528,-0.0005983493174426258,-0.0005831897724419832,8.193769463105127e-05,0.0029782766941934824,-8.771551074460149e-05,-0.0016874176217243075,0.06923630833625793,-3.122468948364258,3.9591872692108154,0.0006923630717210472,-0.0312246885150671,0.039591871201992035 +karman_re50,ppo,178,71.2,0.9919378757476807,0.27100321650505066,0.9378792643547058,0.25359272956848145,0.9724634289741516,0.13762223720550537,-5.706961383111775e-05,-0.00019883243658114225,0.0005814980249851942,0.004084260668605566,-0.000730661500710994,-0.0018953015096485615,-0.913093090057373,-2.0233678817749023,3.358966112136841,-0.0091309305280447,-0.020233677700161934,0.03358966112136841 +karman_re50,ppo,179,71.6,0.9522645473480225,0.37668007612228394,0.9862905740737915,0.2892415523529053,0.9986645579338074,0.17092645168304443,0.0008071435731835663,0.0003452506789471954,0.001176671008579433,0.004870822187513113,-0.0015685836551710963,-0.0023784844670444727,-1.8355607986450195,-1.086087703704834,2.8408403396606445,-0.018355607986450195,-0.010860877111554146,0.02840840257704258 +karman_re50,ppo,180,72.0,0.9458492994308472,0.3924408257007599,1.0272101163864136,0.30343449115753174,1.0264804363250732,0.20332105457782745,0.0019175962079316378,0.0010016721207648516,0.001349790720269084,0.004800005815923214,-0.002299632178619504,-0.00304352561943233,-2.576450824737549,-0.7594482898712158,2.4070358276367188,-0.025764508172869682,-0.007594482507556677,0.024070357903838158 +karman_re50,ppo,181,72.4,0.956322193145752,0.3506559431552887,1.0546988248825073,0.30800583958625793,1.054459571838379,0.236554816365242,0.0026331529952585697,0.0016090795397758484,0.001292668399401009,0.004141419660300016,-0.002428715815767646,-0.0035200384445488453,-3.188551187515259,-1.1536445617675781,1.8779373168945312,-0.03188551217317581,-0.01153644546866417,0.018779372796416283 +karman_re50,ppo,182,72.8,0.9602720737457275,0.2837657928466797,1.0627800226211548,0.30173128843307495,1.076631784439087,0.26694491505622864,0.002588684670627117,0.002150275744497776,0.0014078011736273766,0.003716439940035343,-0.0020348667167127132,-0.0033729616552591324,-3.546825408935547,-1.9290485382080078,1.6141443252563477,-0.03546825423836708,-0.019290484488010406,0.016141442582011223 +karman_re50,ppo,183,73.2,0.9556350708007812,0.2102069854736328,1.0569151639938354,0.27851754426956177,1.094890832901001,0.28704360127449036,0.0021102181635797024,0.002374777803197503,0.001703212852589786,0.0037674051709473133,-0.0018427756149321795,-0.002841405337676406,-3.5119240283966064,-2.610661029815674,2.0616321563720703,-0.03511923924088478,-0.026106609031558037,0.02061632089316845 +karman_re50,ppo,184,73.6,0.945494532585144,0.13666807115077972,1.0407942533493042,0.2299654632806778,1.105245590209961,0.28078073263168335,0.0015267698327079415,0.0022495966404676437,0.0020406190305948257,0.004015894141048193,-0.002126622013747692,-0.0023760010953992605,-3.316202402114868,-3.1013216972351074,2.8419687747955322,-0.03316202387213707,-0.031013216823339462,0.02841968648135662 +karman_re50,ppo,185,74.0,0.9361166954040527,0.06395570188760757,1.021924376487732,0.15528954565525055,1.1048805713653564,0.23300370573997498,0.0010771144879981875,0.0020030057057738304,0.0022622302640229464,0.004196277353912592,-0.0026474555488675833,-0.0021006136666983366,-3.106471061706543,-3.4721312522888184,3.51940655708313,-0.031064709648489952,-0.034721311181783676,0.03519406542181969 +karman_re50,ppo,186,74.4,0.9314267635345459,-0.009049452841281891,1.0062527656555176,0.06292244791984558,1.0922188758850098,0.1420704871416092,0.0007732656667940319,0.0017327789682894945,0.0023836453910917044,0.0042713419534265995,-0.003166630631312728,-0.001948221935890615,-2.8387022018432617,-3.692692518234253,3.8679935932159424,-0.028387021273374557,-0.03692692518234253,0.03867993503808975 +karman_re50,ppo,187,74.8,0.9335759878158569,-0.07700031995773315,0.9950556755065918,-0.03434183821082115,1.0700706243515015,0.02459803968667984,0.000614036456681788,0.0014049798483029008,0.0024268347769975662,0.00431170966476202,-0.003551466390490532,-0.0019333204254508018,-2.3994669914245605,-3.7179009914398193,3.947164297103882,-0.023994669318199158,-0.03717900812625885,0.039471641182899475 +karman_re50,ppo,188,75.2,0.9436461925506592,-0.13069821894168854,0.9881120324134827,-0.12352986633777618,1.048987627029419,-0.0905221551656723,0.0006671645678579807,0.000936042342800647,0.002381806029006839,0.004347562324255705,-0.003710424993187189,-0.0021668823901563883,-1.7665876150131226,-3.600170612335205,3.8411812782287598,-0.01766587607562542,-0.03600170463323593,0.038411810994148254 +karman_re50,ppo,189,75.6,0.9605319499969482,-0.16861706972122192,0.9875117540359497,-0.19214767217636108,1.0389902591705322,-0.17827974259853363,0.0008271335973404348,0.00029794848524034023,0.002256864681839943,0.004441631957888603,-0.003528418019413948,-0.002703854814171791,-1.0795766115188599,-3.5138862133026123,3.565777063369751,-0.010795765556395054,-0.03513886034488678,0.035657770931720734 +karman_re50,ppo,190,76.0,0.9816825985908508,-0.19922442734241486,0.9939653277397156,-0.23688636720180511,1.037663459777832,-0.23336103558540344,0.0008690402028150856,-0.0004698788688983768,0.00211174669675529,0.004672811832278967,-0.003005335107445717,-0.003367143915966153,-0.4536656439304352,-3.629563570022583,3.3128843307495117,-0.004536656197160482,-0.036295633763074875,0.03312884271144867 +karman_re50,ppo,191,76.4,1.0047954320907593,-0.23162108659744263,1.0031046867370605,-0.26631733775138855,1.0368046760559082,-0.2598886787891388,0.0007505331886932254,-0.0012705447152256966,0.002009006217122078,0.004980624653398991,-0.002339346334338188,-0.003814252093434334,0.11967867612838745,-3.948840618133545,3.296977996826172,0.0011967867612838745,-0.039488404989242554,0.03296978026628494 +karman_re50,ppo,192,76.8,1.029178261756897,-0.2690723240375519,1.009475827217102,-0.2891072928905487,1.0318063497543335,-0.2606792747974396,0.00047950982116162777,-0.0019186404533684254,0.0019090537680312991,0.005201469641178846,-0.0018022166332229972,-0.003893416142091155,0.6528098583221436,-4.333642482757568,3.5386605262756348,0.006528098601847887,-0.043336424976587296,0.03538660332560539 +karman_re50,ppo,193,77.2,1.0495871305465698,-0.3083018958568573,1.0040115118026733,-0.30449309945106506,1.0158610343933105,-0.23876413702964783,0.00015357037773355842,-0.002242793096229434,0.0017240284942090511,0.0051245312206447124,-0.001420749700628221,-0.0036747946869581938,1.1159915924072266,-4.67836332321167,3.9860639572143555,0.01115991547703743,-0.04678363353013992,0.03986063972115517 +karman_re50,ppo,194,77.6,1.068793535232544,-0.3409656584262848,0.9880622029304504,-0.30536484718322754,0.9944589734077454,-0.20109844207763672,-0.0001865371159510687,-0.0022324486635625362,0.0014418628998100758,0.004689756780862808,-0.001031231600791216,-0.0032906043343245983,1.4773141145706177,-4.971581935882568,4.504830360412598,0.014773140661418438,-0.04971581697463989,0.0450483039021492 +karman_re50,ppo,195,78.0,1.0839366912841797,-0.3481840491294861,0.9614222645759583,-0.27875813841819763,0.9724666476249695,-0.15310578048229218,-0.0005049715982750058,-0.0019948864355683327,0.0010698245605453849,0.003921715077012777,-0.0005411945166997612,-0.0028069126419723034,1.731536626815796,-5.200878143310547,4.958564281463623,0.017315365374088287,-0.05200878158211708,0.04958564043045044 +karman_re50,ppo,196,78.4,1.0935543775558472,-0.31127944588661194,0.9288747906684875,-0.21405668556690216,0.9564177989959717,-0.09727059304714203,-0.0007799915038049221,-0.0016391894314438105,0.0005992063088342547,0.0029715998098254204,7.269597062986577e-06,-0.002302661072462797,1.8187564611434937,-5.243125915527344,5.175965309143066,0.018187563866376877,-0.05243125930428505,0.05175965279340744 +karman_re50,ppo,197,78.8,1.0962183475494385,-0.22913362085819244,0.8975135087966919,-0.11036743223667145,0.9492020606994629,-0.03497789800167084,-0.0009384489967487752,-0.0012543057091534138,5.195783160161227e-05,0.002147749997675419,0.0004838728636968881,-0.0018534271512180567,1.6421165466308594,-4.978818416595459,5.021188735961914,0.016421165317296982,-0.049788184463977814,0.050211887806653976 +karman_re50,ppo,198,79.2,1.0884768962860107,-0.11695237457752228,0.8769550323486328,0.01901896297931671,0.9510075449943542,0.028174730017781258,-0.0008966969908215106,-0.0009192324359901249,-0.00044230587081983685,0.001936204731464386,0.0006430288194678724,-0.0015528186922892928,1.1455518007278442,-4.395453929901123,4.513032913208008,0.011455518193542957,-0.04395454004406929,0.045130327343940735 +karman_re50,ppo,199,79.6,1.0609180927276611,0.015422370284795761,0.8807324767112732,0.14472518861293793,0.9622682929039001,0.08229023218154907,-0.0006420428398996592,-0.0006457599229179323,-0.0005571312503889203,0.002632872434332967,0.00037665851414203644,-0.0014936838997527957,0.37605008482933044,-3.5632236003875732,3.888484477996826,0.0037605008110404015,-0.03563223406672478,0.03888484463095665 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv new file mode 100644 index 0000000..9f6a8df --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_dtw_convergence.csv @@ -0,0 +1,7 @@ +scene,source,end_step,t_D,conv_len,similarity,lag,channel_0,channel_1,channel_2,channel_3,channel_4,channel_5 +karman_re50,sr,60,24.0,30,0.9586402853200626,-1,0.9676601390043894,0.9685951759883513,0.9584803144137065,0.9405810547992587,0.9567783196767171,0.9597467080379526 +karman_re50,sr,90,36.0,30,0.9556040033322964,6,0.936600532134374,0.973597704692899,0.9544998407363892,0.9385172671289184,0.9687907139460246,0.9616179613551746 +karman_re50,sr,120,48.0,30,0.9564031874243583,-8,0.9565979560216268,0.965501467573146,0.9628639400005341,0.9375311377768715,0.9550972004731496,0.9608274227008223 +karman_re50,sr,150,60.0,30,0.9590841698059295,0,0.9647300561269124,0.9720414840150624,0.9640872776508331,0.9363378953111048,0.9516293068726858,0.9656789988589783 +karman_re50,sr,180,72.0,30,0.9568246701771083,7,0.9409873286883036,0.9710153080367794,0.9535145958264669,0.9417142116387064,0.9700028300285339,0.9637137468438596 +karman_re50,sr,200,80.0,30,0.9542647435047709,4,0.9457357048988342,0.9668876960097502,0.9563833932081859,0.9367514126623671,0.9596255481243133,0.9602047061251748 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_long.csv new file mode 100644 index 0000000..14f9dc1 --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_long.csv @@ -0,0 +1,3601 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,sr,0,0.0,velocity,upper_ux,1.0347927808761597 +karman_re50,sr,0,0.0,velocity,upper_uy,0.18947777152061462 +karman_re50,sr,0,0.0,velocity,center_ux,0.9657396078109741 +karman_re50,sr,0,0.0,velocity,center_uy,0.187363401055336 +karman_re50,sr,0,0.0,velocity,lower_ux,0.9841383099555969 +karman_re50,sr,0,0.0,velocity,lower_uy,0.15281841158866882 +karman_re50,sr,1,0.4,velocity,upper_ux,1.026302456855774 +karman_re50,sr,1,0.4,velocity,upper_uy,0.2070094645023346 +karman_re50,sr,1,0.4,velocity,center_ux,0.9727262258529663 +karman_re50,sr,1,0.4,velocity,center_uy,0.2220402956008911 +karman_re50,sr,1,0.4,velocity,lower_ux,1.001910924911499 +karman_re50,sr,1,0.4,velocity,lower_uy,0.19618690013885498 +karman_re50,sr,2,0.8,velocity,upper_ux,1.019659161567688 +karman_re50,sr,2,0.8,velocity,upper_uy,0.2132832109928131 +karman_re50,sr,2,0.8,velocity,center_ux,0.9740936756134033 +karman_re50,sr,2,0.8,velocity,center_uy,0.2495044320821762 +karman_re50,sr,2,0.8,velocity,lower_ux,1.021131157875061 +karman_re50,sr,2,0.8,velocity,lower_uy,0.24091647565364838 +karman_re50,sr,3,1.2,velocity,upper_ux,1.011366605758667 +karman_re50,sr,3,1.2,velocity,upper_uy,0.21051019430160522 +karman_re50,sr,3,1.2,velocity,center_ux,0.9671639204025269 +karman_re50,sr,3,1.2,velocity,center_uy,0.26711079478263855 +karman_re50,sr,3,1.2,velocity,lower_ux,1.0397685766220093 +karman_re50,sr,3,1.2,velocity,lower_uy,0.2808440327644348 +karman_re50,sr,4,1.6,velocity,upper_ux,1.0021051168441772 +karman_re50,sr,4,1.6,velocity,upper_uy,0.19713574647903442 +karman_re50,sr,4,1.6,velocity,center_ux,0.9535056352615356 +karman_re50,sr,4,1.6,velocity,center_uy,0.2670413851737976 +karman_re50,sr,4,1.6,velocity,lower_ux,1.058182716369629 +karman_re50,sr,4,1.6,velocity,lower_uy,0.30262860655784607 +karman_re50,sr,5,2.0,velocity,upper_ux,0.9885818362236023 +karman_re50,sr,5,2.0,velocity,upper_uy,0.1684589385986328 +karman_re50,sr,5,2.0,velocity,center_ux,0.9333779215812683 +karman_re50,sr,5,2.0,velocity,center_uy,0.23774997889995575 +karman_re50,sr,5,2.0,velocity,lower_ux,1.071448802947998 +karman_re50,sr,5,2.0,velocity,lower_uy,0.2868765592575073 +karman_re50,sr,6,2.4,velocity,upper_ux,0.9755039215087891 +karman_re50,sr,6,2.4,velocity,upper_uy,0.12318721413612366 +karman_re50,sr,6,2.4,velocity,center_ux,0.9173256754875183 +karman_re50,sr,6,2.4,velocity,center_uy,0.17651021480560303 +karman_re50,sr,6,2.4,velocity,lower_ux,1.0828303098678589 +karman_re50,sr,6,2.4,velocity,lower_uy,0.22809047996997833 +karman_re50,sr,7,2.8,velocity,upper_ux,0.962637186050415 +karman_re50,sr,7,2.8,velocity,upper_uy,0.06415171921253204 +karman_re50,sr,7,2.8,velocity,center_ux,0.910402774810791 +karman_re50,sr,7,2.8,velocity,center_uy,0.09218297898769379 +karman_re50,sr,7,2.8,velocity,lower_ux,1.0875905752182007 +karman_re50,sr,7,2.8,velocity,lower_uy,0.1373893767595291 +karman_re50,sr,8,3.2,velocity,upper_ux,0.9538475275039673 +karman_re50,sr,8,3.2,velocity,upper_uy,0.000801670947112143 +karman_re50,sr,8,3.2,velocity,center_ux,0.9159681797027588 +karman_re50,sr,8,3.2,velocity,center_uy,0.004044915549457073 +karman_re50,sr,8,3.2,velocity,lower_ux,1.081834316253662 +karman_re50,sr,8,3.2,velocity,lower_uy,0.03330812603235245 +karman_re50,sr,9,3.6,velocity,upper_ux,0.9536345601081848 +karman_re50,sr,9,3.6,velocity,upper_uy,-0.05622771382331848 +karman_re50,sr,9,3.6,velocity,center_ux,0.9306338429450989 +karman_re50,sr,9,3.6,velocity,center_uy,-0.07202509045600891 +karman_re50,sr,9,3.6,velocity,lower_ux,1.0662704706192017 +karman_re50,sr,9,3.6,velocity,lower_uy,-0.06423601508140564 +karman_re50,sr,10,4.0,velocity,upper_ux,0.9623543620109558 +karman_re50,sr,10,4.0,velocity,upper_uy,-0.10411342978477478 +karman_re50,sr,10,4.0,velocity,center_ux,0.9462552070617676 +karman_re50,sr,10,4.0,velocity,center_uy,-0.13255462050437927 +karman_re50,sr,10,4.0,velocity,lower_ux,1.047968864440918 +karman_re50,sr,10,4.0,velocity,lower_uy,-0.1372002810239792 +karman_re50,sr,11,4.4,velocity,upper_ux,0.9774775505065918 +karman_re50,sr,11,4.4,velocity,upper_uy,-0.1469264179468155 +karman_re50,sr,11,4.4,velocity,center_ux,0.9587993621826172 +karman_re50,sr,11,4.4,velocity,center_uy,-0.17901481688022614 +karman_re50,sr,11,4.4,velocity,lower_ux,1.0346766710281372 +karman_re50,sr,11,4.4,velocity,lower_uy,-0.179298996925354 +karman_re50,sr,12,4.8,velocity,upper_ux,0.9956207871437073 +karman_re50,sr,12,4.8,velocity,upper_uy,-0.19010508060455322 +karman_re50,sr,12,4.8,velocity,center_ux,0.9670304656028748 +karman_re50,sr,12,4.8,velocity,center_uy,-0.21470656991004944 +karman_re50,sr,12,4.8,velocity,lower_ux,1.0267982482910156 +karman_re50,sr,12,4.8,velocity,lower_uy,-0.1988745480775833 +karman_re50,sr,13,5.2,velocity,upper_ux,1.0141137838363647 +karman_re50,sr,13,5.2,velocity,upper_uy,-0.23466110229492188 +karman_re50,sr,13,5.2,velocity,center_ux,0.9685507416725159 +karman_re50,sr,13,5.2,velocity,center_uy,-0.24263495206832886 +karman_re50,sr,13,5.2,velocity,lower_ux,1.019931435585022 +karman_re50,sr,13,5.2,velocity,lower_uy,-0.2055501788854599 +karman_re50,sr,14,5.6,velocity,upper_ux,1.0321879386901855 +karman_re50,sr,14,5.6,velocity,upper_uy,-0.2763121724128723 +karman_re50,sr,14,5.6,velocity,center_ux,0.9617548584938049 +karman_re50,sr,14,5.6,velocity,center_uy,-0.26197871565818787 +karman_re50,sr,14,5.6,velocity,lower_ux,1.011599063873291 +karman_re50,sr,14,5.6,velocity,lower_uy,-0.20340359210968018 +karman_re50,sr,15,6.0,velocity,upper_ux,1.0489859580993652 +karman_re50,sr,15,6.0,velocity,upper_uy,-0.30222660303115845 +karman_re50,sr,15,6.0,velocity,center_ux,0.9466285705566406 +karman_re50,sr,15,6.0,velocity,center_uy,-0.2650325298309326 +karman_re50,sr,15,6.0,velocity,lower_ux,1.0010325908660889 +karman_re50,sr,15,6.0,velocity,lower_uy,-0.19074256718158722 +karman_re50,sr,16,6.4,velocity,upper_ux,1.0635415315628052 +karman_re50,sr,16,6.4,velocity,upper_uy,-0.29406747221946716 +karman_re50,sr,16,6.4,velocity,center_ux,0.9263368844985962 +karman_re50,sr,16,6.4,velocity,center_uy,-0.24090451002120972 +karman_re50,sr,16,6.4,velocity,lower_ux,0.9886882901191711 +karman_re50,sr,16,6.4,velocity,lower_uy,-0.16330571472644806 +karman_re50,sr,17,6.8,velocity,upper_ux,1.0751309394836426 +karman_re50,sr,17,6.8,velocity,upper_uy,-0.24214020371437073 +karman_re50,sr,17,6.8,velocity,center_ux,0.9069976806640625 +karman_re50,sr,17,6.8,velocity,center_uy,-0.18325629830360413 +karman_re50,sr,17,6.8,velocity,lower_ux,0.9755550622940063 +karman_re50,sr,17,6.8,velocity,lower_uy,-0.11783871054649353 +karman_re50,sr,18,7.2,velocity,upper_ux,1.080946922302246 +karman_re50,sr,18,7.2,velocity,upper_uy,-0.15533854067325592 +karman_re50,sr,18,7.2,velocity,center_ux,0.8942924737930298 +karman_re50,sr,18,7.2,velocity,center_uy,-0.09719733148813248 +karman_re50,sr,18,7.2,velocity,lower_ux,0.9631132483482361 +karman_re50,sr,18,7.2,velocity,lower_uy,-0.056856755167245865 +karman_re50,sr,19,7.6,velocity,upper_ux,1.0770978927612305 +karman_re50,sr,19,7.6,velocity,upper_uy,-0.05184977874159813 +karman_re50,sr,19,7.6,velocity,center_ux,0.8922032117843628 +karman_re50,sr,19,7.6,velocity,center_uy,0.0013792566023766994 +karman_re50,sr,19,7.6,velocity,lower_ux,0.9556465148925781 +karman_re50,sr,19,7.6,velocity,lower_uy,0.008925694972276688 +karman_re50,sr,20,8.0,velocity,upper_ux,1.0616240501403809 +karman_re50,sr,20,8.0,velocity,upper_uy,0.051701728254556656 +karman_re50,sr,20,8.0,velocity,center_ux,0.9015998244285583 +karman_re50,sr,20,8.0,velocity,center_uy,0.09512241184711456 +karman_re50,sr,20,8.0,velocity,lower_ux,0.9579674005508423 +karman_re50,sr,20,8.0,velocity,lower_uy,0.06781285256147385 +karman_re50,sr,21,8.4,velocity,upper_ux,1.0359326601028442 +karman_re50,sr,21,8.4,velocity,upper_uy,0.14198645949363708 +karman_re50,sr,21,8.4,velocity,center_ux,0.919745683670044 +karman_re50,sr,21,8.4,velocity,center_uy,0.17163339257240295 +karman_re50,sr,21,8.4,velocity,lower_ux,0.9701253771781921 +karman_re50,sr,21,8.4,velocity,lower_uy,0.11640280485153198 +karman_re50,sr,22,8.8,velocity,upper_ux,1.005324363708496 +karman_re50,sr,22,8.8,velocity,upper_uy,0.2095133662223816 +karman_re50,sr,22,8.8,velocity,center_ux,0.9428461194038391 +karman_re50,sr,22,8.8,velocity,center_uy,0.22640621662139893 +karman_re50,sr,22,8.8,velocity,lower_ux,0.9890111684799194 +karman_re50,sr,22,8.8,velocity,lower_uy,0.15961894392967224 +karman_re50,sr,23,9.2,velocity,upper_ux,0.9757241606712341 +karman_re50,sr,23,9.2,velocity,upper_uy,0.24760057032108307 +karman_re50,sr,23,9.2,velocity,center_ux,0.9651758670806885 +karman_re50,sr,23,9.2,velocity,center_uy,0.2634449899196625 +karman_re50,sr,23,9.2,velocity,lower_ux,1.0112109184265137 +karman_re50,sr,23,9.2,velocity,lower_uy,0.20217439532279968 +karman_re50,sr,24,9.6,velocity,upper_ux,0.9496560096740723 +karman_re50,sr,24,9.6,velocity,upper_uy,0.2542690932750702 +karman_re50,sr,24,9.6,velocity,center_ux,0.9802245497703552 +karman_re50,sr,24,9.6,velocity,center_uy,0.2881847321987152 +karman_re50,sr,24,9.6,velocity,lower_ux,1.0336629152297974 +karman_re50,sr,24,9.6,velocity,lower_uy,0.24447683990001678 +karman_re50,sr,25,10.0,velocity,upper_ux,0.9272705912590027 +karman_re50,sr,25,10.0,velocity,upper_uy,0.23170149326324463 +karman_re50,sr,25,10.0,velocity,center_ux,0.984728991985321 +karman_re50,sr,25,10.0,velocity,center_uy,0.2972790002822876 +karman_re50,sr,25,10.0,velocity,lower_ux,1.0545260906219482 +karman_re50,sr,25,10.0,velocity,lower_uy,0.2805687189102173 +karman_re50,sr,26,10.4,velocity,upper_ux,0.9099873304367065 +karman_re50,sr,26,10.4,velocity,upper_uy,0.18544280529022217 +karman_re50,sr,26,10.4,velocity,center_ux,0.9782047867774963 +karman_re50,sr,26,10.4,velocity,center_uy,0.27965644001960754 +karman_re50,sr,26,10.4,velocity,lower_ux,1.0713868141174316 +karman_re50,sr,26,10.4,velocity,lower_uy,0.2965478003025055 +karman_re50,sr,27,10.8,velocity,upper_ux,0.902815043926239 +karman_re50,sr,27,10.8,velocity,upper_uy,0.12530632317066193 +karman_re50,sr,27,10.8,velocity,center_ux,0.9625653028488159 +karman_re50,sr,27,10.8,velocity,center_uy,0.22398647665977478 +karman_re50,sr,27,10.8,velocity,lower_ux,1.0814591646194458 +karman_re50,sr,27,10.8,velocity,lower_uy,0.27417847514152527 +karman_re50,sr,28,11.2,velocity,upper_ux,0.9089940786361694 +karman_re50,sr,28,11.2,velocity,upper_uy,0.06250011175870895 +karman_re50,sr,28,11.2,velocity,center_ux,0.9417388439178467 +karman_re50,sr,28,11.2,velocity,center_uy,0.12807106971740723 +karman_re50,sr,28,11.2,velocity,lower_ux,1.0828778743743896 +karman_re50,sr,28,11.2,velocity,lower_uy,0.2056354284286499 +karman_re50,sr,29,11.6,velocity,upper_ux,0.923249363899231 +karman_re50,sr,29,11.6,velocity,upper_uy,0.0013316483236849308 +karman_re50,sr,29,11.6,velocity,center_ux,0.9218058586120605 +karman_re50,sr,29,11.6,velocity,center_uy,0.006141694262623787 +karman_re50,sr,29,11.6,velocity,lower_ux,1.073350191116333 +karman_re50,sr,29,11.6,velocity,lower_uy,0.10117226839065552 +karman_re50,sr,30,12.0,velocity,upper_ux,0.9394964575767517 +karman_re50,sr,30,12.0,velocity,upper_uy,-0.05704858899116516 +karman_re50,sr,30,12.0,velocity,center_ux,0.9151376485824585 +karman_re50,sr,30,12.0,velocity,center_uy,-0.10891259461641312 +karman_re50,sr,30,12.0,velocity,lower_ux,1.051647663116455 +karman_re50,sr,30,12.0,velocity,lower_uy,-0.018736500293016434 +karman_re50,sr,31,12.4,velocity,upper_ux,0.9582075476646423 +karman_re50,sr,31,12.4,velocity,upper_uy,-0.10707248747348785 +karman_re50,sr,31,12.4,velocity,center_ux,0.9298332333564758 +karman_re50,sr,31,12.4,velocity,center_uy,-0.18889270722866058 +karman_re50,sr,31,12.4,velocity,lower_ux,1.019762396812439 +karman_re50,sr,31,12.4,velocity,lower_uy,-0.13178327679634094 +karman_re50,sr,32,12.8,velocity,upper_ux,0.9804351925849915 +karman_re50,sr,32,12.8,velocity,upper_uy,-0.147378072142601 +karman_re50,sr,32,12.8,velocity,center_ux,0.9572011828422546 +karman_re50,sr,32,12.8,velocity,center_uy,-0.23701918125152588 +karman_re50,sr,32,12.8,velocity,lower_ux,0.9832019805908203 +karman_re50,sr,32,12.8,velocity,lower_uy,-0.21860210597515106 +karman_re50,sr,33,13.2,velocity,upper_ux,1.0052101612091064 +karman_re50,sr,33,13.2,velocity,upper_uy,-0.18315191566944122 +karman_re50,sr,33,13.2,velocity,center_ux,0.9858770966529846 +karman_re50,sr,33,13.2,velocity,center_uy,-0.2684009075164795 +karman_re50,sr,33,13.2,velocity,lower_ux,0.9511563181877136 +karman_re50,sr,33,13.2,velocity,lower_uy,-0.2663806676864624 +karman_re50,sr,34,13.6,velocity,upper_ux,1.0308204889297485 +karman_re50,sr,34,13.6,velocity,upper_uy,-0.21906618773937225 +karman_re50,sr,34,13.6,velocity,center_ux,1.0099955797195435 +karman_re50,sr,34,13.6,velocity,center_uy,-0.2910621166229248 +karman_re50,sr,34,13.6,velocity,lower_ux,0.9270814657211304 +karman_re50,sr,34,13.6,velocity,lower_uy,-0.27555611729621887 +karman_re50,sr,35,14.0,velocity,upper_ux,1.0548725128173828 +karman_re50,sr,35,14.0,velocity,upper_uy,-0.25445565581321716 +karman_re50,sr,35,14.0,velocity,center_ux,1.02517831325531 +karman_re50,sr,35,14.0,velocity,center_uy,-0.3033124804496765 +karman_re50,sr,35,14.0,velocity,lower_ux,0.9067739248275757 +karman_re50,sr,35,14.0,velocity,lower_uy,-0.2524254024028778 +karman_re50,sr,36,14.4,velocity,upper_ux,1.075303554534912 +karman_re50,sr,36,14.4,velocity,upper_uy,-0.28327760100364685 +karman_re50,sr,36,14.4,velocity,center_ux,1.0282033681869507 +karman_re50,sr,36,14.4,velocity,center_uy,-0.29603394865989685 +karman_re50,sr,36,14.4,velocity,lower_ux,0.888876736164093 +karman_re50,sr,36,14.4,velocity,lower_uy,-0.2030578851699829 +karman_re50,sr,37,14.8,velocity,upper_ux,1.089077115058899 +karman_re50,sr,37,14.8,velocity,upper_uy,-0.29175081849098206 +karman_re50,sr,37,14.8,velocity,center_ux,1.0169591903686523 +karman_re50,sr,37,14.8,velocity,center_uy,-0.2567822337150574 +karman_re50,sr,37,14.8,velocity,lower_ux,0.879292905330658 +karman_re50,sr,37,14.8,velocity,lower_uy,-0.13836528360843658 +karman_re50,sr,38,15.2,velocity,upper_ux,1.092840552330017 +karman_re50,sr,38,15.2,velocity,upper_uy,-0.26295238733291626 +karman_re50,sr,38,15.2,velocity,center_ux,0.991929292678833 +karman_re50,sr,38,15.2,velocity,center_uy,-0.17801536619663239 +karman_re50,sr,38,15.2,velocity,lower_ux,0.8849981427192688 +karman_re50,sr,38,15.2,velocity,lower_uy,-0.07528945058584213 +karman_re50,sr,39,15.6,velocity,upper_ux,1.084912657737732 +karman_re50,sr,39,15.6,velocity,upper_uy,-0.19044871628284454 +karman_re50,sr,39,15.6,velocity,center_ux,0.959460973739624 +karman_re50,sr,39,15.6,velocity,center_uy,-0.0664990246295929 +karman_re50,sr,39,15.6,velocity,lower_ux,0.904202401638031 +karman_re50,sr,39,15.6,velocity,lower_uy,-0.022039158269762993 +karman_re50,sr,40,16.0,velocity,upper_ux,1.0641026496887207 +karman_re50,sr,40,16.0,velocity,upper_uy,-0.08447534590959549 +karman_re50,sr,40,16.0,velocity,center_ux,0.9346544146537781 +karman_re50,sr,40,16.0,velocity,center_uy,0.05066733434796333 +karman_re50,sr,40,16.0,velocity,lower_ux,0.9262509346008301 +karman_re50,sr,40,16.0,velocity,lower_uy,0.028494402766227722 +karman_re50,sr,41,16.4,velocity,upper_ux,1.030766487121582 +karman_re50,sr,41,16.4,velocity,upper_uy,0.03464838117361069 +karman_re50,sr,41,16.4,velocity,center_ux,0.9329788684844971 +karman_re50,sr,41,16.4,velocity,center_uy,0.14148922264575958 +karman_re50,sr,41,16.4,velocity,lower_ux,0.9456472992897034 +karman_re50,sr,41,16.4,velocity,lower_uy,0.07942262291908264 +karman_re50,sr,42,16.8,velocity,upper_ux,0.9897551536560059 +karman_re50,sr,42,16.8,velocity,upper_uy,0.1445227563381195 +karman_re50,sr,42,16.8,velocity,center_ux,0.9523072838783264 +karman_re50,sr,42,16.8,velocity,center_uy,0.20045827329158783 +karman_re50,sr,42,16.8,velocity,lower_ux,0.9656720161437988 +karman_re50,sr,42,16.8,velocity,lower_uy,0.12318774312734604 +karman_re50,sr,43,17.2,velocity,upper_ux,0.9498462677001953 +karman_re50,sr,43,17.2,velocity,upper_uy,0.22501271963119507 +karman_re50,sr,43,17.2,velocity,center_ux,0.9789913892745972 +karman_re50,sr,43,17.2,velocity,center_uy,0.24036885797977448 +karman_re50,sr,43,17.2,velocity,lower_ux,0.9884142279624939 +karman_re50,sr,43,17.2,velocity,lower_uy,0.1571970134973526 +karman_re50,sr,44,17.6,velocity,upper_ux,0.9194463491439819 +karman_re50,sr,44,17.6,velocity,upper_uy,0.26611822843551636 +karman_re50,sr,44,17.6,velocity,center_ux,1.0056196451187134 +karman_re50,sr,44,17.6,velocity,center_uy,0.2694227695465088 +karman_re50,sr,44,17.6,velocity,lower_ux,1.013122320175171 +karman_re50,sr,44,17.6,velocity,lower_uy,0.18763330578804016 +karman_re50,sr,45,18.0,velocity,upper_ux,0.8985031247138977 +karman_re50,sr,45,18.0,velocity,upper_uy,0.2697419226169586 +karman_re50,sr,45,18.0,velocity,center_ux,1.0287632942199707 +karman_re50,sr,45,18.0,velocity,center_uy,0.29001355171203613 +karman_re50,sr,45,18.0,velocity,lower_ux,1.0384104251861572 +karman_re50,sr,45,18.0,velocity,lower_uy,0.21903127431869507 +karman_re50,sr,46,18.4,velocity,upper_ux,0.8813384175300598 +karman_re50,sr,46,18.4,velocity,upper_uy,0.241409033536911 +karman_re50,sr,46,18.4,velocity,center_ux,1.043647050857544 +karman_re50,sr,46,18.4,velocity,center_uy,0.2994121015071869 +karman_re50,sr,46,18.4,velocity,lower_ux,1.0620840787887573 +karman_re50,sr,46,18.4,velocity,lower_uy,0.2510225474834442 +karman_re50,sr,47,18.8,velocity,upper_ux,0.8674120306968689 +karman_re50,sr,47,18.8,velocity,upper_uy,0.1873815953731537 +karman_re50,sr,47,18.8,velocity,center_ux,1.0457422733306885 +karman_re50,sr,47,18.8,velocity,center_uy,0.2885323464870453 +karman_re50,sr,47,18.8,velocity,lower_ux,1.0819274187088013 +karman_re50,sr,47,18.8,velocity,lower_uy,0.27805691957473755 +karman_re50,sr,48,19.2,velocity,upper_ux,0.8645312786102295 +karman_re50,sr,48,19.2,velocity,upper_uy,0.12132732570171356 +karman_re50,sr,48,19.2,velocity,center_ux,1.0331244468688965 +karman_re50,sr,48,19.2,velocity,center_uy,0.24621091783046722 +karman_re50,sr,48,19.2,velocity,lower_ux,1.0962867736816406 +karman_re50,sr,48,19.2,velocity,lower_uy,0.28796499967575073 +karman_re50,sr,49,19.6,velocity,upper_ux,0.8757742047309875 +karman_re50,sr,49,19.6,velocity,upper_uy,0.061955858021974564 +karman_re50,sr,49,19.6,velocity,center_ux,1.001978874206543 +karman_re50,sr,49,19.6,velocity,center_uy,0.16584599018096924 +karman_re50,sr,49,19.6,velocity,lower_ux,1.0974987745285034 +karman_re50,sr,49,19.6,velocity,lower_uy,0.26334214210510254 +karman_re50,sr,50,20.0,velocity,upper_ux,0.9009208083152771 +karman_re50,sr,50,20.0,velocity,upper_uy,0.016230883076786995 +karman_re50,sr,50,20.0,velocity,center_ux,0.9640954732894897 +karman_re50,sr,50,20.0,velocity,center_uy,0.05690717324614525 +karman_re50,sr,50,20.0,velocity,lower_ux,1.0879008769989014 +karman_re50,sr,50,20.0,velocity,lower_uy,0.19674564898014069 +karman_re50,sr,51,20.4,velocity,upper_ux,0.9267162084579468 +karman_re50,sr,51,20.4,velocity,upper_uy,-0.02723493054509163 +karman_re50,sr,51,20.4,velocity,center_ux,0.9356185793876648 +karman_re50,sr,51,20.4,velocity,center_uy,-0.05360975116491318 +karman_re50,sr,51,20.4,velocity,lower_ux,1.0653562545776367 +karman_re50,sr,51,20.4,velocity,lower_uy,0.09596340358257294 +karman_re50,sr,52,20.8,velocity,upper_ux,0.9471429586410522 +karman_re50,sr,52,20.8,velocity,upper_uy,-0.07508140057325363 +karman_re50,sr,52,20.8,velocity,center_ux,0.932456910610199 +karman_re50,sr,52,20.8,velocity,center_uy,-0.13768722116947174 +karman_re50,sr,52,20.8,velocity,lower_ux,1.0304875373840332 +karman_re50,sr,52,20.8,velocity,lower_uy,-0.020252162590622902 +karman_re50,sr,53,21.2,velocity,upper_ux,0.9664755463600159 +karman_re50,sr,53,21.2,velocity,upper_uy,-0.11859998106956482 +karman_re50,sr,53,21.2,velocity,center_ux,0.951407790184021 +karman_re50,sr,53,21.2,velocity,center_uy,-0.1928926706314087 +karman_re50,sr,53,21.2,velocity,lower_ux,0.9879611730575562 +karman_re50,sr,53,21.2,velocity,lower_uy,-0.13006789982318878 +karman_re50,sr,54,21.6,velocity,upper_ux,0.9881659746170044 +karman_re50,sr,54,21.6,velocity,upper_uy,-0.15277479588985443 +karman_re50,sr,54,21.6,velocity,center_ux,0.9778708815574646 +karman_re50,sr,54,21.6,velocity,center_uy,-0.23225438594818115 +karman_re50,sr,54,21.6,velocity,lower_ux,0.946515679359436 +karman_re50,sr,54,21.6,velocity,lower_uy,-0.21334503591060638 +karman_re50,sr,55,22.0,velocity,upper_ux,1.0120034217834473 +karman_re50,sr,55,22.0,velocity,upper_uy,-0.18262559175491333 +karman_re50,sr,55,22.0,velocity,center_ux,1.004274606704712 +karman_re50,sr,55,22.0,velocity,center_uy,-0.2620226740837097 +karman_re50,sr,55,22.0,velocity,lower_ux,0.9147791862487793 +karman_re50,sr,55,22.0,velocity,lower_uy,-0.2586154639720917 +karman_re50,sr,56,22.4,velocity,upper_ux,1.0366250276565552 +karman_re50,sr,56,22.4,velocity,upper_uy,-0.2132672518491745 +karman_re50,sr,56,22.4,velocity,center_ux,1.027624249458313 +karman_re50,sr,56,22.4,velocity,center_uy,-0.28354403376579285 +karman_re50,sr,56,22.4,velocity,lower_ux,0.8935750722885132 +karman_re50,sr,56,22.4,velocity,lower_uy,-0.2664391100406647 +karman_re50,sr,57,22.8,velocity,upper_ux,1.0599013566970825 +karman_re50,sr,57,22.8,velocity,upper_uy,-0.2450518161058426 +karman_re50,sr,57,22.8,velocity,center_ux,1.0433905124664307 +karman_re50,sr,57,22.8,velocity,center_uy,-0.2945840358734131 +karman_re50,sr,57,22.8,velocity,lower_ux,0.8772165775299072 +karman_re50,sr,57,22.8,velocity,lower_uy,-0.24216099083423615 +karman_re50,sr,58,23.2,velocity,upper_ux,1.0809367895126343 +karman_re50,sr,58,23.2,velocity,upper_uy,-0.27354422211647034 +karman_re50,sr,58,23.2,velocity,center_ux,1.0481255054473877 +karman_re50,sr,58,23.2,velocity,center_uy,-0.28721562027931213 +karman_re50,sr,58,23.2,velocity,lower_ux,0.8651201128959656 +karman_re50,sr,58,23.2,velocity,lower_uy,-0.1918967366218567 +karman_re50,sr,59,23.6,velocity,upper_ux,1.092872142791748 +karman_re50,sr,59,23.6,velocity,upper_uy,-0.2865666449069977 +karman_re50,sr,59,23.6,velocity,center_ux,1.034468650817871 +karman_re50,sr,59,23.6,velocity,center_uy,-0.24947389960289001 +karman_re50,sr,59,23.6,velocity,lower_ux,0.8598314523696899 +karman_re50,sr,59,23.6,velocity,lower_uy,-0.12753674387931824 +karman_re50,sr,60,24.0,velocity,upper_ux,1.0962926149368286 +karman_re50,sr,60,24.0,velocity,upper_uy,-0.2687407433986664 +karman_re50,sr,60,24.0,velocity,center_ux,1.0058852434158325 +karman_re50,sr,60,24.0,velocity,center_uy,-0.1755768209695816 +karman_re50,sr,60,24.0,velocity,lower_ux,0.8711627721786499 +karman_re50,sr,60,24.0,velocity,lower_uy,-0.06825759261846542 +karman_re50,sr,61,24.4,velocity,upper_ux,1.0878808498382568 +karman_re50,sr,61,24.4,velocity,upper_uy,-0.2093120515346527 +karman_re50,sr,61,24.4,velocity,center_ux,0.9678424000740051 +karman_re50,sr,61,24.4,velocity,center_uy,-0.07151133567094803 +karman_re50,sr,61,24.4,velocity,lower_ux,0.8959778547286987 +karman_re50,sr,61,24.4,velocity,lower_uy,-0.022730832919478416 +karman_re50,sr,62,24.8,velocity,upper_ux,1.0668283700942993 +karman_re50,sr,62,24.8,velocity,upper_uy,-0.1134873479604721 +karman_re50,sr,62,24.8,velocity,center_ux,0.9366561770439148 +karman_re50,sr,62,24.8,velocity,center_uy,0.038629960268735886 +karman_re50,sr,62,24.8,velocity,lower_ux,0.9226341247558594 +karman_re50,sr,62,24.8,velocity,lower_uy,0.019202740862965584 +karman_re50,sr,63,25.2,velocity,upper_ux,1.0333969593048096 +karman_re50,sr,63,25.2,velocity,upper_uy,0.001121767912991345 +karman_re50,sr,63,25.2,velocity,center_ux,0.9294416904449463 +karman_re50,sr,63,25.2,velocity,center_uy,0.12591683864593506 +karman_re50,sr,63,25.2,velocity,lower_ux,0.9436830878257751 +karman_re50,sr,63,25.2,velocity,lower_uy,0.06618990004062653 +karman_re50,sr,64,25.6,velocity,upper_ux,0.991573691368103 +karman_re50,sr,64,25.6,velocity,upper_uy,0.11318676918745041 +karman_re50,sr,64,25.6,velocity,center_ux,0.9460279941558838 +karman_re50,sr,64,25.6,velocity,center_uy,0.18413038551807404 +karman_re50,sr,64,25.6,velocity,lower_ux,0.9626348614692688 +karman_re50,sr,64,25.6,velocity,lower_uy,0.11090337485074997 +karman_re50,sr,65,26.0,velocity,upper_ux,0.9495032429695129 +karman_re50,sr,65,26.0,velocity,upper_uy,0.20196932554244995 +karman_re50,sr,65,26.0,velocity,center_ux,0.9721580743789673 +karman_re50,sr,65,26.0,velocity,center_uy,0.22533012926578522 +karman_re50,sr,65,26.0,velocity,lower_ux,0.9837635159492493 +karman_re50,sr,65,26.0,velocity,lower_uy,0.14634151756763458 +karman_re50,sr,66,26.4,velocity,upper_ux,0.9163122773170471 +karman_re50,sr,66,26.4,velocity,upper_uy,0.25405511260032654 +karman_re50,sr,66,26.4,velocity,center_ux,0.9989702701568604 +karman_re50,sr,66,26.4,velocity,center_uy,0.2566656768321991 +karman_re50,sr,66,26.4,velocity,lower_ux,1.0072780847549438 +karman_re50,sr,66,26.4,velocity,lower_uy,0.1763613373041153 +karman_re50,sr,67,26.8,velocity,upper_ux,0.8942375779151917 +karman_re50,sr,67,26.8,velocity,upper_uy,0.2682204246520996 +karman_re50,sr,67,26.8,velocity,center_ux,1.0233571529388428 +karman_re50,sr,67,26.8,velocity,center_uy,0.2798099219799042 +karman_re50,sr,67,26.8,velocity,lower_ux,1.0319136381149292 +karman_re50,sr,67,26.8,velocity,lower_uy,0.2067176252603531 +karman_re50,sr,68,27.2,velocity,upper_ux,0.877917468547821 +karman_re50,sr,68,27.2,velocity,upper_uy,0.2493065446615219 +karman_re50,sr,68,27.2,velocity,center_ux,1.0409907102584839 +karman_re50,sr,68,27.2,velocity,center_uy,0.29325687885284424 +karman_re50,sr,68,27.2,velocity,lower_ux,1.0555695295333862 +karman_re50,sr,68,27.2,velocity,lower_uy,0.2384764552116394 +karman_re50,sr,69,27.6,velocity,upper_ux,0.8643975257873535 +karman_re50,sr,69,27.6,velocity,upper_uy,0.2029382586479187 +karman_re50,sr,69,27.6,velocity,center_ux,1.0470091104507446 +karman_re50,sr,69,27.6,velocity,center_uy,0.2899278998374939 +karman_re50,sr,69,27.6,velocity,lower_ux,1.0760419368743896 +karman_re50,sr,69,27.6,velocity,lower_uy,0.26800820231437683 +karman_re50,sr,70,28.0,velocity,upper_ux,0.8583869338035583 +karman_re50,sr,70,28.0,velocity,upper_uy,0.13996584713459015 +karman_re50,sr,70,28.0,velocity,center_ux,1.0377416610717773 +karman_re50,sr,70,28.0,velocity,center_uy,0.2588536739349365 +karman_re50,sr,70,28.0,velocity,lower_ux,1.0907858610153198 +karman_re50,sr,70,28.0,velocity,lower_uy,0.2853108048439026 +karman_re50,sr,71,28.4,velocity,upper_ux,0.8670896887779236 +karman_re50,sr,71,28.4,velocity,upper_uy,0.07872020453214645 +karman_re50,sr,71,28.4,velocity,center_ux,1.0119731426239014 +karman_re50,sr,71,28.4,velocity,center_uy,0.19199493527412415 +karman_re50,sr,71,28.4,velocity,lower_ux,1.0963705778121948 +karman_re50,sr,71,28.4,velocity,lower_uy,0.27468106150627136 +karman_re50,sr,72,28.8,velocity,upper_ux,0.8917163610458374 +karman_re50,sr,72,28.8,velocity,upper_uy,0.031183458864688873 +karman_re50,sr,72,28.8,velocity,center_ux,0.9760557413101196 +karman_re50,sr,72,28.8,velocity,center_uy,0.09256277233362198 +karman_re50,sr,72,28.8,velocity,lower_ux,1.0918354988098145 +karman_re50,sr,72,28.8,velocity,lower_uy,0.2236475944519043 +karman_re50,sr,73,29.2,velocity,upper_ux,0.9181371927261353 +karman_re50,sr,73,29.2,velocity,upper_uy,-0.01010076329112053 +karman_re50,sr,73,29.2,velocity,center_ux,0.9408899545669556 +karman_re50,sr,73,29.2,velocity,center_uy,-0.018646888434886932 +karman_re50,sr,73,29.2,velocity,lower_ux,1.072009563446045 +karman_re50,sr,73,29.2,velocity,lower_uy,0.13367897272109985 +karman_re50,sr,74,29.6,velocity,upper_ux,0.9402679204940796 +karman_re50,sr,74,29.6,velocity,upper_uy,-0.05644386634230614 +karman_re50,sr,74,29.6,velocity,center_ux,0.9284584522247314 +karman_re50,sr,74,29.6,velocity,center_uy,-0.11149279773235321 +karman_re50,sr,74,29.6,velocity,lower_ux,1.0408411026000977 +karman_re50,sr,74,29.6,velocity,lower_uy,0.021291466429829597 +karman_re50,sr,75,30.0,velocity,upper_ux,0.959013044834137 +karman_re50,sr,75,30.0,velocity,upper_uy,-0.10269587486982346 +karman_re50,sr,75,30.0,velocity,center_ux,0.94145667552948 +karman_re50,sr,75,30.0,velocity,center_uy,-0.17428576946258545 +karman_re50,sr,75,30.0,velocity,lower_ux,1.0001552104949951 +karman_re50,sr,75,30.0,velocity,lower_uy,-0.09253337234258652 +karman_re50,sr,76,30.4,velocity,upper_ux,0.9794477820396423 +karman_re50,sr,76,30.4,velocity,upper_uy,-0.14015845954418182 +karman_re50,sr,76,30.4,velocity,center_ux,0.9667208790779114 +karman_re50,sr,76,30.4,velocity,center_uy,-0.21786147356033325 +karman_re50,sr,76,30.4,velocity,lower_ux,0.9573547840118408 +karman_re50,sr,76,30.4,velocity,lower_uy,-0.18686702847480774 +karman_re50,sr,77,30.8,velocity,upper_ux,1.0024830102920532 +karman_re50,sr,77,30.8,velocity,upper_uy,-0.17088665068149567 +karman_re50,sr,77,30.8,velocity,center_ux,0.9936263561248779 +karman_re50,sr,77,30.8,velocity,center_uy,-0.25090575218200684 +karman_re50,sr,77,30.8,velocity,lower_ux,0.9220009446144104 +karman_re50,sr,77,30.8,velocity,lower_uy,-0.24620485305786133 +karman_re50,sr,78,31.2,velocity,upper_ux,1.026958703994751 +karman_re50,sr,78,31.2,velocity,upper_uy,-0.20106840133666992 +karman_re50,sr,78,31.2,velocity,center_ux,1.0186347961425781 +karman_re50,sr,78,31.2,velocity,center_uy,-0.2755550444126129 +karman_re50,sr,78,31.2,velocity,lower_ux,0.898053765296936 +karman_re50,sr,78,31.2,velocity,lower_uy,-0.2671560049057007 +karman_re50,sr,79,31.6,velocity,upper_ux,1.050774097442627 +karman_re50,sr,79,31.6,velocity,upper_uy,-0.23288463056087494 +karman_re50,sr,79,31.6,velocity,center_ux,1.0376936197280884 +karman_re50,sr,79,31.6,velocity,center_uy,-0.2912288308143616 +karman_re50,sr,79,31.6,velocity,lower_ux,0.8809805512428284 +karman_re50,sr,79,31.6,velocity,lower_uy,-0.2542119026184082 +karman_re50,sr,80,32.0,velocity,upper_ux,1.0717225074768066 +karman_re50,sr,80,32.0,velocity,upper_uy,-0.26342400908470154 +karman_re50,sr,80,32.0,velocity,center_ux,1.0459303855895996 +karman_re50,sr,80,32.0,velocity,center_uy,-0.29177916049957275 +karman_re50,sr,80,32.0,velocity,lower_ux,0.8667536973953247 +karman_re50,sr,80,32.0,velocity,lower_uy,-0.21265344321727753 +karman_re50,sr,81,32.4,velocity,upper_ux,1.088850498199463 +karman_re50,sr,81,32.4,velocity,upper_uy,-0.2845613956451416 +karman_re50,sr,81,32.4,velocity,center_ux,1.040798544883728 +karman_re50,sr,81,32.4,velocity,center_uy,-0.26717740297317505 +karman_re50,sr,81,32.4,velocity,lower_ux,0.8598412275314331 +karman_re50,sr,81,32.4,velocity,lower_uy,-0.15222124755382538 +karman_re50,sr,82,32.8,velocity,upper_ux,1.0947648286819458 +karman_re50,sr,82,32.8,velocity,upper_uy,-0.27993422746658325 +karman_re50,sr,82,32.8,velocity,center_ux,1.016607642173767 +karman_re50,sr,82,32.8,velocity,center_uy,-0.20705994963645935 +karman_re50,sr,82,32.8,velocity,lower_ux,0.8643703460693359 +karman_re50,sr,82,32.8,velocity,lower_uy,-0.08946973830461502 +karman_re50,sr,83,33.2,velocity,upper_ux,1.0910005569458008 +karman_re50,sr,83,33.2,velocity,upper_uy,-0.23643842339515686 +karman_re50,sr,83,33.2,velocity,center_ux,0.9809372425079346 +karman_re50,sr,83,33.2,velocity,center_uy,-0.11291363835334778 +karman_re50,sr,83,33.2,velocity,lower_ux,0.8855969905853271 +karman_re50,sr,83,33.2,velocity,lower_uy,-0.03950073570013046 +karman_re50,sr,84,33.6,velocity,upper_ux,1.0748968124389648 +karman_re50,sr,84,33.6,velocity,upper_uy,-0.15273143351078033 +karman_re50,sr,84,33.6,velocity,center_ux,0.9450934529304504 +karman_re50,sr,84,33.6,velocity,center_uy,-0.0018139478052034974 +karman_re50,sr,84,33.6,velocity,lower_ux,0.9131595492362976 +karman_re50,sr,84,33.6,velocity,lower_uy,0.0019557452760636806 +karman_re50,sr,85,34.0,velocity,upper_ux,1.045986294746399 +karman_re50,sr,85,34.0,velocity,upper_uy,-0.04284726455807686 +karman_re50,sr,85,34.0,velocity,center_ux,0.9277158379554749 +karman_re50,sr,85,34.0,velocity,center_uy,0.09622818231582642 +karman_re50,sr,85,34.0,velocity,lower_ux,0.9362324476242065 +karman_re50,sr,85,34.0,velocity,lower_uy,0.047309860587120056 +karman_re50,sr,86,34.4,velocity,upper_ux,1.0079506635665894 +karman_re50,sr,86,34.4,velocity,upper_uy,0.0727541372179985 +karman_re50,sr,86,34.4,velocity,center_ux,0.937802791595459 +karman_re50,sr,86,34.4,velocity,center_uy,0.1646440476179123 +karman_re50,sr,86,34.4,velocity,lower_ux,0.9562442302703857 +karman_re50,sr,86,34.4,velocity,lower_uy,0.0945492684841156 +karman_re50,sr,87,34.8,velocity,upper_ux,0.9637160301208496 +karman_re50,sr,87,34.8,velocity,upper_uy,0.17236009240150452 +karman_re50,sr,87,34.8,velocity,center_ux,0.9606868028640747 +karman_re50,sr,87,34.8,velocity,center_uy,0.21085487306118011 +karman_re50,sr,87,34.8,velocity,lower_ux,0.9749587774276733 +karman_re50,sr,87,34.8,velocity,lower_uy,0.13365767896175385 +karman_re50,sr,88,35.2,velocity,upper_ux,0.9266489148139954 +karman_re50,sr,88,35.2,velocity,upper_uy,0.23912860453128815 +karman_re50,sr,88,35.2,velocity,center_ux,0.9878272414207458 +karman_re50,sr,88,35.2,velocity,center_uy,0.24572545289993286 +karman_re50,sr,88,35.2,velocity,lower_ux,0.9976890683174133 +karman_re50,sr,88,35.2,velocity,lower_uy,0.16514421999454498 +karman_re50,sr,89,35.6,velocity,upper_ux,0.9021630883216858 +karman_re50,sr,89,35.6,velocity,upper_uy,0.26757967472076416 +karman_re50,sr,89,35.6,velocity,center_ux,1.0148999691009521 +karman_re50,sr,89,35.6,velocity,center_uy,0.27239125967025757 +karman_re50,sr,89,35.6,velocity,lower_ux,1.0234230756759644 +karman_re50,sr,89,35.6,velocity,lower_uy,0.19547733664512634 +karman_re50,sr,90,36.0,velocity,upper_ux,0.8833267688751221 +karman_re50,sr,90,36.0,velocity,upper_uy,0.26029253005981445 +karman_re50,sr,90,36.0,velocity,center_ux,1.0343387126922607 +karman_re50,sr,90,36.0,velocity,center_uy,0.28977370262145996 +karman_re50,sr,90,36.0,velocity,lower_ux,1.046328067779541 +karman_re50,sr,90,36.0,velocity,lower_uy,0.22685804963111877 +karman_re50,sr,91,36.4,velocity,upper_ux,0.868584394454956 +karman_re50,sr,91,36.4,velocity,upper_uy,0.22360795736312866 +karman_re50,sr,91,36.4,velocity,center_ux,1.0450503826141357 +karman_re50,sr,91,36.4,velocity,center_uy,0.29403984546661377 +karman_re50,sr,91,36.4,velocity,lower_ux,1.0680159330368042 +karman_re50,sr,91,36.4,velocity,lower_uy,0.2581661343574524 +karman_re50,sr,92,36.8,velocity,upper_ux,0.8598806262016296 +karman_re50,sr,92,36.8,velocity,upper_uy,0.16535121202468872 +karman_re50,sr,92,36.8,velocity,center_ux,1.0430251359939575 +karman_re50,sr,92,36.8,velocity,center_uy,0.27506566047668457 +karman_re50,sr,92,36.8,velocity,lower_ux,1.086411714553833 +karman_re50,sr,92,36.8,velocity,lower_uy,0.28206270933151245 +karman_re50,sr,93,37.2,velocity,upper_ux,0.8613245487213135 +karman_re50,sr,93,37.2,velocity,upper_uy,0.10108035802841187 +karman_re50,sr,93,37.2,velocity,center_ux,1.0220237970352173 +karman_re50,sr,93,37.2,velocity,center_uy,0.22178000211715698 +karman_re50,sr,93,37.2,velocity,lower_ux,1.0942996740341187 +karman_re50,sr,93,37.2,velocity,lower_uy,0.28338396549224854 +karman_re50,sr,94,37.6,velocity,upper_ux,0.8801120519638062 +karman_re50,sr,94,37.6,velocity,upper_uy,0.04803703725337982 +karman_re50,sr,94,37.6,velocity,center_ux,0.988297700881958 +karman_re50,sr,94,37.6,velocity,center_uy,0.13306047022342682 +karman_re50,sr,94,37.6,velocity,lower_ux,1.0929425954818726 +karman_re50,sr,94,37.6,velocity,lower_uy,0.247733935713768 +karman_re50,sr,95,38.0,velocity,upper_ux,0.907734215259552 +karman_re50,sr,95,38.0,velocity,upper_uy,0.005925468634814024 +karman_re50,sr,95,38.0,velocity,center_ux,0.9511813521385193 +karman_re50,sr,95,38.0,velocity,center_uy,0.022616198286414146 +karman_re50,sr,95,38.0,velocity,lower_ux,1.079379677772522 +karman_re50,sr,95,38.0,velocity,lower_uy,0.1707693636417389 +karman_re50,sr,96,38.4,velocity,upper_ux,0.932166576385498 +karman_re50,sr,96,38.4,velocity,upper_uy,-0.03830718994140625 +karman_re50,sr,96,38.4,velocity,center_ux,0.9291031360626221 +karman_re50,sr,96,38.4,velocity,center_uy,-0.08020874857902527 +karman_re50,sr,96,38.4,velocity,lower_ux,1.052825927734375 +karman_re50,sr,96,38.4,velocity,lower_uy,0.0643027052283287 +karman_re50,sr,97,38.8,velocity,upper_ux,0.9513931274414062 +karman_re50,sr,97,38.8,velocity,upper_uy,-0.08609834313392639 +karman_re50,sr,97,38.8,velocity,center_ux,0.9334716796875 +karman_re50,sr,97,38.8,velocity,center_uy,-0.15403228998184204 +karman_re50,sr,97,38.8,velocity,lower_ux,1.0150166749954224 +karman_re50,sr,97,38.8,velocity,lower_uy,-0.051803916692733765 +karman_re50,sr,98,39.2,velocity,upper_ux,0.9708132147789001 +karman_re50,sr,98,39.2,velocity,upper_uy,-0.12725073099136353 +karman_re50,sr,98,39.2,velocity,center_ux,0.955810546875 +karman_re50,sr,98,39.2,velocity,center_uy,-0.20338274538516998 +karman_re50,sr,98,39.2,velocity,lower_ux,0.9719581007957458 +karman_re50,sr,98,39.2,velocity,lower_uy,-0.15578687191009521 +karman_re50,sr,99,39.6,velocity,upper_ux,0.9930940866470337 +karman_re50,sr,99,39.6,velocity,upper_uy,-0.1598709225654602 +karman_re50,sr,99,39.6,velocity,center_ux,0.9828380346298218 +karman_re50,sr,99,39.6,velocity,center_uy,-0.24009588360786438 +karman_re50,sr,99,39.6,velocity,lower_ux,0.9330305457115173 +karman_re50,sr,99,39.6,velocity,lower_uy,-0.22946539521217346 +karman_re50,sr,100,40.0,velocity,upper_ux,1.0174314975738525 +karman_re50,sr,100,40.0,velocity,upper_uy,-0.18979789316654205 +karman_re50,sr,100,40.0,velocity,center_ux,1.00910484790802 +karman_re50,sr,100,40.0,velocity,center_uy,-0.26781198382377625 +karman_re50,sr,100,40.0,velocity,lower_ux,0.9053167104721069 +karman_re50,sr,100,40.0,velocity,lower_uy,-0.2644382417201996 +karman_re50,sr,101,40.4,velocity,upper_ux,1.0418238639831543 +karman_re50,sr,101,40.4,velocity,upper_uy,-0.22117315232753754 +karman_re50,sr,101,40.4,velocity,center_ux,1.0310368537902832 +karman_re50,sr,101,40.4,velocity,center_uy,-0.28727397322654724 +karman_re50,sr,101,40.4,velocity,lower_ux,0.8865402340888977 +karman_re50,sr,101,40.4,velocity,lower_uy,-0.2635398209095001 +karman_re50,sr,102,40.8,velocity,upper_ux,1.0640403032302856 +karman_re50,sr,102,40.8,velocity,upper_uy,-0.2528812289237976 +karman_re50,sr,102,40.8,velocity,center_ux,1.0438069105148315 +karman_re50,sr,102,40.8,velocity,center_uy,-0.2945559024810791 +karman_re50,sr,102,40.8,velocity,lower_ux,0.8712111115455627 +karman_re50,sr,102,40.8,velocity,lower_uy,-0.23186519742012024 +karman_re50,sr,103,41.2,velocity,upper_ux,1.0820002555847168 +karman_re50,sr,103,41.2,velocity,upper_uy,-0.27871173620224 +karman_re50,sr,103,41.2,velocity,center_ux,1.0431731939315796 +karman_re50,sr,103,41.2,velocity,center_uy,-0.2803420126438141 +karman_re50,sr,103,41.2,velocity,lower_ux,0.8599392175674438 +karman_re50,sr,103,41.2,velocity,lower_uy,-0.17650729417800903 +karman_re50,sr,104,41.6,velocity,upper_ux,1.0942292213439941 +karman_re50,sr,104,41.6,velocity,upper_uy,-0.28590306639671326 +karman_re50,sr,104,41.6,velocity,center_ux,1.0274593830108643 +karman_re50,sr,104,41.6,velocity,center_uy,-0.23372511565685272 +karman_re50,sr,104,41.6,velocity,lower_ux,0.8607609272003174 +karman_re50,sr,104,41.6,velocity,lower_uy,-0.11164262890815735 +karman_re50,sr,105,42.0,velocity,upper_ux,1.0934618711471558 +karman_re50,sr,105,42.0,velocity,upper_uy,-0.2574162185192108 +karman_re50,sr,105,42.0,velocity,center_ux,0.9947697520256042 +karman_re50,sr,105,42.0,velocity,center_uy,-0.15127506852149963 +karman_re50,sr,105,42.0,velocity,lower_ux,0.8756526112556458 +karman_re50,sr,105,42.0,velocity,lower_uy,-0.056434404104948044 +karman_re50,sr,106,42.4,velocity,upper_ux,1.0821727514266968 +karman_re50,sr,106,42.4,velocity,upper_uy,-0.18740123510360718 +karman_re50,sr,106,42.4,velocity,center_ux,0.9571121335029602 +karman_re50,sr,106,42.4,velocity,center_uy,-0.042950186878442764 +karman_re50,sr,106,42.4,velocity,lower_ux,0.9026129841804504 +karman_re50,sr,106,42.4,velocity,lower_uy,-0.013263051398098469 +karman_re50,sr,107,42.8,velocity,upper_ux,1.0578933954238892 +karman_re50,sr,107,42.8,velocity,upper_uy,-0.08478596061468124 +karman_re50,sr,107,42.8,velocity,center_ux,0.9309684038162231 +karman_re50,sr,107,42.8,velocity,center_uy,0.06352248787879944 +karman_re50,sr,107,42.8,velocity,lower_ux,0.9280893206596375 +karman_re50,sr,107,42.8,velocity,lower_uy,0.029933111742138863 +karman_re50,sr,108,43.2,velocity,upper_ux,1.021733283996582 +karman_re50,sr,108,43.2,velocity,upper_uy,0.031370680779218674 +karman_re50,sr,108,43.2,velocity,center_ux,0.9306202530860901 +karman_re50,sr,108,43.2,velocity,center_uy,0.1429983377456665 +karman_re50,sr,108,43.2,velocity,lower_ux,0.9478670358657837 +karman_re50,sr,108,43.2,velocity,lower_uy,0.07773429900407791 +karman_re50,sr,109,43.6,velocity,upper_ux,0.9790226817131042 +karman_re50,sr,109,43.6,velocity,upper_uy,0.1391727775335312 +karman_re50,sr,109,43.6,velocity,center_ux,0.9508296847343445 +karman_re50,sr,109,43.6,velocity,center_uy,0.19575665891170502 +karman_re50,sr,109,43.6,velocity,lower_ux,0.9668808579444885 +karman_re50,sr,109,43.6,velocity,lower_uy,0.12054185569286346 +karman_re50,sr,110,44.0,velocity,upper_ux,0.9387621879577637 +karman_re50,sr,110,44.0,velocity,upper_uy,0.21936336159706116 +karman_re50,sr,110,44.0,velocity,center_ux,0.9776297807693481 +karman_re50,sr,110,44.0,velocity,center_uy,0.23425628244876862 +karman_re50,sr,110,44.0,velocity,lower_ux,0.9886645674705505 +karman_re50,sr,110,44.0,velocity,lower_uy,0.1542394757270813 +karman_re50,sr,111,44.4,velocity,upper_ux,0.9090762138366699 +karman_re50,sr,111,44.4,velocity,upper_uy,0.26151835918426514 +karman_re50,sr,111,44.4,velocity,center_ux,1.0043988227844238 +karman_re50,sr,111,44.4,velocity,center_uy,0.263589084148407 +karman_re50,sr,111,44.4,velocity,lower_ux,1.012870192527771 +karman_re50,sr,111,44.4,velocity,lower_uy,0.18424440920352936 +karman_re50,sr,112,44.8,velocity,upper_ux,0.8892881274223328 +karman_re50,sr,112,44.8,velocity,upper_uy,0.26675185561180115 +karman_re50,sr,112,44.8,velocity,center_ux,1.027573823928833 +karman_re50,sr,112,44.8,velocity,center_uy,0.2846815586090088 +karman_re50,sr,112,44.8,velocity,lower_ux,1.0374996662139893 +karman_re50,sr,112,44.8,velocity,lower_uy,0.21526795625686646 +karman_re50,sr,113,45.2,velocity,upper_ux,0.8735831379890442 +karman_re50,sr,113,45.2,velocity,upper_uy,0.2402661293745041 +karman_re50,sr,113,45.2,velocity,center_ux,1.0424296855926514 +karman_re50,sr,113,45.2,velocity,center_uy,0.29480841755867004 +karman_re50,sr,113,45.2,velocity,lower_ux,1.0602962970733643 +karman_re50,sr,113,45.2,velocity,lower_uy,0.2472209334373474 +karman_re50,sr,114,45.6,velocity,upper_ux,0.8611490726470947 +karman_re50,sr,114,45.6,velocity,upper_uy,0.18825210630893707 +karman_re50,sr,114,45.6,velocity,center_ux,1.0445468425750732 +karman_re50,sr,114,45.6,velocity,center_uy,0.2853526473045349 +karman_re50,sr,114,45.6,velocity,lower_ux,1.079246997833252 +karman_re50,sr,114,45.6,velocity,lower_uy,0.2748683989048004 +karman_re50,sr,115,46.0,velocity,upper_ux,0.8582120537757874 +karman_re50,sr,115,46.0,velocity,upper_uy,0.12389081716537476 +karman_re50,sr,115,46.0,velocity,center_ux,1.0308563709259033 +karman_re50,sr,115,46.0,velocity,center_uy,0.24547797441482544 +karman_re50,sr,115,46.0,velocity,lower_ux,1.091644525527954 +karman_re50,sr,115,46.0,velocity,lower_uy,0.2864340841770172 +karman_re50,sr,116,46.4,velocity,upper_ux,0.8713383674621582 +karman_re50,sr,116,46.4,velocity,upper_uy,0.06557392328977585 +karman_re50,sr,116,46.4,velocity,center_ux,1.0016456842422485 +karman_re50,sr,116,46.4,velocity,center_uy,0.1690947562456131 +karman_re50,sr,116,46.4,velocity,lower_ux,1.0944652557373047 +karman_re50,sr,116,46.4,velocity,lower_uy,0.2656640410423279 +karman_re50,sr,117,46.8,velocity,upper_ux,0.8973735570907593 +karman_re50,sr,117,46.8,velocity,upper_uy,0.02075001783668995 +karman_re50,sr,117,46.8,velocity,center_ux,0.9640294909477234 +karman_re50,sr,117,46.8,velocity,center_uy,0.06364136189222336 +karman_re50,sr,117,46.8,velocity,lower_ux,1.085586428642273 +karman_re50,sr,117,46.8,velocity,lower_uy,0.2030697613954544 +karman_re50,sr,118,47.2,velocity,upper_ux,0.9239341616630554 +karman_re50,sr,118,47.2,velocity,upper_uy,-0.021498162299394608 +karman_re50,sr,118,47.2,velocity,center_ux,0.934276282787323 +karman_re50,sr,118,47.2,velocity,center_uy,-0.045622359961271286 +karman_re50,sr,118,47.2,velocity,lower_ux,1.063718318939209 +karman_re50,sr,118,47.2,velocity,lower_uy,0.10521136224269867 +karman_re50,sr,119,47.6,velocity,upper_ux,0.9444940686225891 +karman_re50,sr,119,47.6,velocity,upper_uy,-0.06897997111082077 +karman_re50,sr,119,47.6,velocity,center_ux,0.9289141893386841 +karman_re50,sr,119,47.6,velocity,center_uy,-0.1307387799024582 +karman_re50,sr,119,47.6,velocity,lower_ux,1.0294766426086426 +karman_re50,sr,119,47.6,velocity,lower_uy,-0.009877967648208141 +karman_re50,sr,120,48.0,velocity,upper_ux,0.9632163047790527 +karman_re50,sr,120,48.0,velocity,upper_uy,-0.11346544325351715 +karman_re50,sr,120,48.0,velocity,center_ux,0.9464176893234253 +karman_re50,sr,120,48.0,velocity,center_uy,-0.18735939264297485 +karman_re50,sr,120,48.0,velocity,lower_ux,0.9872779846191406 +karman_re50,sr,120,48.0,velocity,lower_uy,-0.12073922157287598 +karman_re50,sr,121,48.4,velocity,upper_ux,0.9844242334365845 +karman_re50,sr,121,48.4,velocity,upper_uy,-0.14865168929100037 +karman_re50,sr,121,48.4,velocity,center_ux,0.972693681716919 +karman_re50,sr,121,48.4,velocity,center_uy,-0.22784851491451263 +karman_re50,sr,121,48.4,velocity,lower_ux,0.9457802772521973 +karman_re50,sr,121,48.4,velocity,lower_uy,-0.20702342689037323 +karman_re50,sr,122,48.8,velocity,upper_ux,1.0096137523651123 +karman_re50,sr,122,48.8,velocity,upper_uy,-0.17906421422958374 +karman_re50,sr,122,48.8,velocity,center_ux,1.0009455680847168 +karman_re50,sr,122,48.8,velocity,center_uy,-0.2590270936489105 +karman_re50,sr,122,48.8,velocity,lower_ux,0.9150615930557251 +karman_re50,sr,122,48.8,velocity,lower_uy,-0.2565397620201111 +karman_re50,sr,123,49.2,velocity,upper_ux,1.033083200454712 +karman_re50,sr,123,49.2,velocity,upper_uy,-0.20957115292549133 +karman_re50,sr,123,49.2,velocity,center_ux,1.0238038301467896 +karman_re50,sr,123,49.2,velocity,center_uy,-0.2813543677330017 +karman_re50,sr,123,49.2,velocity,lower_ux,0.892687976360321 +karman_re50,sr,123,49.2,velocity,lower_uy,-0.267821341753006 +karman_re50,sr,124,49.6,velocity,upper_ux,1.0563122034072876 +karman_re50,sr,124,49.6,velocity,upper_uy,-0.24159763753414154 +karman_re50,sr,124,49.6,velocity,center_ux,1.040441632270813 +karman_re50,sr,124,49.6,velocity,center_uy,-0.2939431369304657 +karman_re50,sr,124,49.6,velocity,lower_ux,0.87642502784729 +karman_re50,sr,124,49.6,velocity,lower_uy,-0.2467871904373169 +karman_re50,sr,125,50.0,velocity,upper_ux,1.0760246515274048 +karman_re50,sr,125,50.0,velocity,upper_uy,-0.2706696391105652 +karman_re50,sr,125,50.0,velocity,center_ux,1.0450493097305298 +karman_re50,sr,125,50.0,velocity,center_uy,-0.2888515591621399 +karman_re50,sr,125,50.0,velocity,lower_ux,0.8629993200302124 +karman_re50,sr,125,50.0,velocity,lower_uy,-0.19886110723018646 +karman_re50,sr,126,50.4,velocity,upper_ux,1.0897631645202637 +karman_re50,sr,126,50.4,velocity,upper_uy,-0.2863469421863556 +karman_re50,sr,126,50.4,velocity,center_ux,1.034271240234375 +karman_re50,sr,126,50.4,velocity,center_uy,-0.25522589683532715 +karman_re50,sr,126,50.4,velocity,lower_ux,0.8576553463935852 +karman_re50,sr,126,50.4,velocity,lower_uy,-0.13551336526870728 +karman_re50,sr,127,50.8,velocity,upper_ux,1.0944809913635254 +karman_re50,sr,127,50.8,velocity,upper_uy,-0.27245819568634033 +karman_re50,sr,127,50.8,velocity,center_ux,1.0076237916946411 +karman_re50,sr,127,50.8,velocity,center_uy,-0.18542346358299255 +karman_re50,sr,127,50.8,velocity,lower_ux,0.867719829082489 +karman_re50,sr,127,50.8,velocity,lower_uy,-0.07503008097410202 +karman_re50,sr,128,51.2,velocity,upper_ux,1.087837815284729 +karman_re50,sr,128,51.2,velocity,upper_uy,-0.21736915409564972 +karman_re50,sr,128,51.2,velocity,center_ux,0.9706434011459351 +karman_re50,sr,128,51.2,velocity,center_uy,-0.08387985825538635 +karman_re50,sr,128,51.2,velocity,lower_ux,0.8922325968742371 +karman_re50,sr,128,51.2,velocity,lower_uy,-0.028208499774336815 +karman_re50,sr,129,51.6,velocity,upper_ux,1.0683363676071167 +karman_re50,sr,129,51.6,velocity,upper_uy,-0.12468927353620529 +karman_re50,sr,129,51.6,velocity,center_ux,0.9380256533622742 +karman_re50,sr,129,51.6,velocity,center_uy,0.02706220932304859 +karman_re50,sr,129,51.6,velocity,lower_ux,0.9194867610931396 +karman_re50,sr,129,51.6,velocity,lower_uy,0.013497217558324337 +karman_re50,sr,130,52.0,velocity,upper_ux,1.0360873937606812 +karman_re50,sr,130,52.0,velocity,upper_uy,-0.011064362712204456 +karman_re50,sr,130,52.0,velocity,center_ux,0.9276791214942932 +karman_re50,sr,130,52.0,velocity,center_uy,0.11778269708156586 +karman_re50,sr,130,52.0,velocity,lower_ux,0.9409842491149902 +karman_re50,sr,130,52.0,velocity,lower_uy,0.06027868390083313 +karman_re50,sr,131,52.4,velocity,upper_ux,0.994758665561676 +karman_re50,sr,131,52.4,velocity,upper_uy,0.10232609510421753 +karman_re50,sr,131,52.4,velocity,center_ux,0.9420163631439209 +karman_re50,sr,131,52.4,velocity,center_uy,0.17883600294589996 +karman_re50,sr,131,52.4,velocity,lower_ux,0.9595763683319092 +karman_re50,sr,131,52.4,velocity,lower_uy,0.10610940307378769 +karman_re50,sr,132,52.8,velocity,upper_ux,0.9524086117744446 +karman_re50,sr,132,52.8,velocity,upper_uy,0.19435785710811615 +karman_re50,sr,132,52.8,velocity,center_ux,0.9676166772842407 +karman_re50,sr,132,52.8,velocity,center_uy,0.22147037088871002 +karman_re50,sr,132,52.8,velocity,lower_ux,0.9802412390708923 +karman_re50,sr,132,52.8,velocity,lower_uy,0.14281411468982697 +karman_re50,sr,133,53.2,velocity,upper_ux,0.9196857213973999 +karman_re50,sr,133,53.2,velocity,upper_uy,0.2509809732437134 +karman_re50,sr,133,53.2,velocity,center_ux,0.9961187243461609 +karman_re50,sr,133,53.2,velocity,center_uy,0.2542210519313812 +karman_re50,sr,133,53.2,velocity,lower_ux,1.0051183700561523 +karman_re50,sr,133,53.2,velocity,lower_uy,0.17360693216323853 +karman_re50,sr,134,53.6,velocity,upper_ux,0.8958332538604736 +karman_re50,sr,134,53.6,velocity,upper_uy,0.2687291204929352 +karman_re50,sr,134,53.6,velocity,center_ux,1.0199068784713745 +karman_re50,sr,134,53.6,velocity,center_uy,0.2780166566371918 +karman_re50,sr,134,53.6,velocity,lower_ux,1.028681993484497 +karman_re50,sr,134,53.6,velocity,lower_uy,0.20381350815296173 +karman_re50,sr,135,54.0,velocity,upper_ux,0.880204439163208 +karman_re50,sr,135,54.0,velocity,upper_uy,0.2534872591495514 +karman_re50,sr,135,54.0,velocity,center_ux,1.0395911931991577 +karman_re50,sr,135,54.0,velocity,center_uy,0.29317352175712585 +karman_re50,sr,135,54.0,velocity,lower_ux,1.0536624193191528 +karman_re50,sr,135,54.0,velocity,lower_uy,0.23603087663650513 +karman_re50,sr,136,54.4,velocity,upper_ux,0.8649665713310242 +karman_re50,sr,136,54.4,velocity,upper_uy,0.2094164341688156 +karman_re50,sr,136,54.4,velocity,center_ux,1.0453754663467407 +karman_re50,sr,136,54.4,velocity,center_uy,0.2917276620864868 +karman_re50,sr,136,54.4,velocity,lower_ux,1.0728578567504883 +karman_re50,sr,136,54.4,velocity,lower_uy,0.2659327983856201 +karman_re50,sr,137,54.8,velocity,upper_ux,0.8575415015220642 +karman_re50,sr,137,54.8,velocity,upper_uy,0.14743401110172272 +karman_re50,sr,137,54.8,velocity,center_ux,1.0375394821166992 +karman_re50,sr,137,54.8,velocity,center_uy,0.26400792598724365 +karman_re50,sr,137,54.8,velocity,lower_ux,1.0879226922988892 +karman_re50,sr,137,54.8,velocity,lower_uy,0.2851170599460602 +karman_re50,sr,138,55.2,velocity,upper_ux,0.8645654916763306 +karman_re50,sr,138,55.2,velocity,upper_uy,0.08504922688007355 +karman_re50,sr,138,55.2,velocity,center_ux,1.0136083364486694 +karman_re50,sr,138,55.2,velocity,center_uy,0.20088344812393188 +karman_re50,sr,138,55.2,velocity,lower_ux,1.0945661067962646 +karman_re50,sr,138,55.2,velocity,lower_uy,0.27781856060028076 +karman_re50,sr,139,55.6,velocity,upper_ux,0.8883166313171387 +karman_re50,sr,139,55.6,velocity,upper_uy,0.03591202199459076 +karman_re50,sr,139,55.6,velocity,center_ux,0.9790060520172119 +karman_re50,sr,139,55.6,velocity,center_uy,0.10411214828491211 +karman_re50,sr,139,55.6,velocity,lower_ux,1.0915887355804443 +karman_re50,sr,139,55.6,velocity,lower_uy,0.2307741492986679 +karman_re50,sr,140,56.0,velocity,upper_ux,0.9149828553199768 +karman_re50,sr,140,56.0,velocity,upper_uy,-0.005612989887595177 +karman_re50,sr,140,56.0,velocity,center_ux,0.9428832530975342 +karman_re50,sr,140,56.0,velocity,center_uy,-0.007645206991583109 +karman_re50,sr,140,56.0,velocity,lower_ux,1.0731489658355713 +karman_re50,sr,140,56.0,velocity,lower_uy,0.14368894696235657 +karman_re50,sr,141,56.4,velocity,upper_ux,0.9375834465026855 +karman_re50,sr,141,56.4,velocity,upper_uy,-0.051497574895620346 +karman_re50,sr,141,56.4,velocity,center_ux,0.9276123642921448 +karman_re50,sr,141,56.4,velocity,center_uy,-0.10365412384271622 +karman_re50,sr,141,56.4,velocity,lower_ux,1.043046474456787 +karman_re50,sr,141,56.4,velocity,lower_uy,0.03236464783549309 +karman_re50,sr,142,56.8,velocity,upper_ux,0.95618736743927 +karman_re50,sr,142,56.8,velocity,upper_uy,-0.09835952520370483 +karman_re50,sr,142,56.8,velocity,center_ux,0.9382265210151672 +karman_re50,sr,142,56.8,velocity,center_uy,-0.1694505363702774 +karman_re50,sr,142,56.8,velocity,lower_ux,1.0028595924377441 +karman_re50,sr,142,56.8,velocity,lower_uy,-0.08257892727851868 +karman_re50,sr,143,57.2,velocity,upper_ux,0.9762651324272156 +karman_re50,sr,143,57.2,velocity,upper_uy,-0.13683177530765533 +karman_re50,sr,143,57.2,velocity,center_ux,0.9627562761306763 +karman_re50,sr,143,57.2,velocity,center_uy,-0.21451161801815033 +karman_re50,sr,143,57.2,velocity,lower_ux,0.959892988204956 +karman_re50,sr,143,57.2,velocity,lower_uy,-0.17981499433517456 +karman_re50,sr,144,57.6,velocity,upper_ux,0.9994910955429077 +karman_re50,sr,144,57.6,velocity,upper_uy,-0.16806644201278687 +karman_re50,sr,144,57.6,velocity,center_ux,0.9900904893875122 +karman_re50,sr,144,57.6,velocity,center_uy,-0.24860268831253052 +karman_re50,sr,144,57.6,velocity,lower_ux,0.9239363074302673 +karman_re50,sr,144,57.6,velocity,lower_uy,-0.24315868318080902 +karman_re50,sr,145,58.0,velocity,upper_ux,1.024278163909912 +karman_re50,sr,145,58.0,velocity,upper_uy,-0.19821807742118835 +karman_re50,sr,145,58.0,velocity,center_ux,1.0157874822616577 +karman_re50,sr,145,58.0,velocity,center_uy,-0.2741355001926422 +karman_re50,sr,145,58.0,velocity,lower_ux,0.8994873762130737 +karman_re50,sr,145,58.0,velocity,lower_uy,-0.26778697967529297 +karman_re50,sr,146,58.4,velocity,upper_ux,1.048267126083374 +karman_re50,sr,146,58.4,velocity,upper_uy,-0.22998245060443878 +karman_re50,sr,146,58.4,velocity,center_ux,1.035667061805725 +karman_re50,sr,146,58.4,velocity,center_uy,-0.29092124104499817 +karman_re50,sr,146,58.4,velocity,lower_ux,0.8820721507072449 +karman_re50,sr,146,58.4,velocity,lower_uy,-0.25793686509132385 +karman_re50,sr,147,58.8,velocity,upper_ux,1.0694314241409302 +karman_re50,sr,147,58.8,velocity,upper_uy,-0.26095065474510193 +karman_re50,sr,147,58.8,velocity,center_ux,1.0450266599655151 +karman_re50,sr,147,58.8,velocity,center_uy,-0.29340991377830505 +karman_re50,sr,147,58.8,velocity,lower_ux,0.8673248291015625 +karman_re50,sr,147,58.8,velocity,lower_uy,-0.21879221498966217 +karman_re50,sr,148,59.2,velocity,upper_ux,1.0869766473770142 +karman_re50,sr,148,59.2,velocity,upper_uy,-0.28350400924682617 +karman_re50,sr,148,59.2,velocity,center_ux,1.0413066148757935 +karman_re50,sr,148,59.2,velocity,center_uy,-0.2716674506664276 +karman_re50,sr,148,59.2,velocity,lower_ux,0.8591419458389282 +karman_re50,sr,148,59.2,velocity,lower_uy,-0.15927185118198395 +karman_re50,sr,149,59.6,velocity,upper_ux,1.0939558744430542 +karman_re50,sr,149,59.6,velocity,upper_uy,-0.2818378508090973 +karman_re50,sr,149,59.6,velocity,center_ux,1.0188770294189453 +karman_re50,sr,149,59.6,velocity,center_uy,-0.2149094194173813 +karman_re50,sr,149,59.6,velocity,lower_ux,0.8620562553405762 +karman_re50,sr,149,59.6,velocity,lower_uy,-0.09546776115894318 +karman_re50,sr,150,60.0,velocity,upper_ux,1.0917463302612305 +karman_re50,sr,150,60.0,velocity,upper_uy,-0.24215087294578552 +karman_re50,sr,150,60.0,velocity,center_ux,0.9845700860023499 +karman_re50,sr,150,60.0,velocity,center_uy,-0.12322998046875 +karman_re50,sr,150,60.0,velocity,lower_ux,0.8824029564857483 +karman_re50,sr,150,60.0,velocity,lower_uy,-0.04374777153134346 +karman_re50,sr,151,60.4,velocity,upper_ux,1.0770305395126343 +karman_re50,sr,151,60.4,velocity,upper_uy,-0.16162557899951935 +karman_re50,sr,151,60.4,velocity,center_ux,0.9481615424156189 +karman_re50,sr,151,60.4,velocity,center_uy,-0.012080862186849117 +karman_re50,sr,151,60.4,velocity,lower_ux,0.9102249145507812 +karman_re50,sr,151,60.4,velocity,lower_uy,-0.001944506075233221 +karman_re50,sr,152,60.8,velocity,upper_ux,1.0491211414337158 +karman_re50,sr,152,60.8,velocity,upper_uy,-0.05318177118897438 +karman_re50,sr,152,60.8,velocity,center_ux,0.9282679557800293 +karman_re50,sr,152,60.8,velocity,center_uy,0.08865302801132202 +karman_re50,sr,152,60.8,velocity,lower_ux,0.9339526891708374 +karman_re50,sr,152,60.8,velocity,lower_uy,0.04288899898529053 +karman_re50,sr,153,61.2,velocity,upper_ux,1.0103094577789307 +karman_re50,sr,153,61.2,velocity,upper_uy,0.06272892653942108 +karman_re50,sr,153,61.2,velocity,center_ux,0.9347531199455261 +karman_re50,sr,153,61.2,velocity,center_uy,0.15960995852947235 +karman_re50,sr,153,61.2,velocity,lower_ux,0.9527797102928162 +karman_re50,sr,153,61.2,velocity,lower_uy,0.09039078652858734 +karman_re50,sr,154,61.6,velocity,upper_ux,0.9671173095703125 +karman_re50,sr,154,61.6,velocity,upper_uy,0.16463667154312134 +karman_re50,sr,154,61.6,velocity,center_ux,0.9578498601913452 +karman_re50,sr,154,61.6,velocity,center_uy,0.20742137730121613 +karman_re50,sr,154,61.6,velocity,lower_ux,0.9723267555236816 +karman_re50,sr,154,61.6,velocity,lower_uy,0.13060829043388367 +karman_re50,sr,155,62.0,velocity,upper_ux,0.9293972253799438 +karman_re50,sr,155,62.0,velocity,upper_uy,0.23477055132389069 +karman_re50,sr,155,62.0,velocity,center_ux,0.9851294755935669 +karman_re50,sr,155,62.0,velocity,center_uy,0.2431572675704956 +karman_re50,sr,155,62.0,velocity,lower_ux,0.9950745105743408 +karman_re50,sr,155,62.0,velocity,lower_uy,0.16261255741119385 +karman_re50,sr,156,62.4,velocity,upper_ux,0.9030859470367432 +karman_re50,sr,156,62.4,velocity,upper_uy,0.26625412702560425 +karman_re50,sr,156,62.4,velocity,center_ux,1.0114704370498657 +karman_re50,sr,156,62.4,velocity,center_uy,0.2701956629753113 +karman_re50,sr,156,62.4,velocity,lower_ux,1.019816279411316 +karman_re50,sr,156,62.4,velocity,lower_uy,0.19263234734535217 +karman_re50,sr,157,62.8,velocity,upper_ux,0.8848938941955566 +karman_re50,sr,157,62.8,velocity,upper_uy,0.262218713760376 +karman_re50,sr,157,62.8,velocity,center_ux,1.0327975749969482 +karman_re50,sr,157,62.8,velocity,center_uy,0.2887771725654602 +karman_re50,sr,157,62.8,velocity,lower_ux,1.0441359281539917 +karman_re50,sr,157,62.8,velocity,lower_uy,0.22412878274917603 +karman_re50,sr,158,63.2,velocity,upper_ux,0.8707748651504517 +karman_re50,sr,158,63.2,velocity,upper_uy,0.22820614278316498 +karman_re50,sr,158,63.2,velocity,center_ux,1.0456910133361816 +karman_re50,sr,158,63.2,velocity,center_uy,0.2949191927909851 +karman_re50,sr,158,63.2,velocity,lower_ux,1.0672812461853027 +karman_re50,sr,158,63.2,velocity,lower_uy,0.25597846508026123 +karman_re50,sr,159,63.6,velocity,upper_ux,0.8588782548904419 +karman_re50,sr,159,63.6,velocity,upper_uy,0.17080716788768768 +karman_re50,sr,159,63.6,velocity,center_ux,1.0421606302261353 +karman_re50,sr,159,63.6,velocity,center_uy,0.2777033746242523 +karman_re50,sr,159,63.6,velocity,lower_ux,1.0832200050354004 +karman_re50,sr,159,63.6,velocity,lower_uy,0.28033357858657837 +karman_re50,sr,160,64.0,velocity,upper_ux,0.8599717617034912 +karman_re50,sr,160,64.0,velocity,upper_uy,0.10643985867500305 +karman_re50,sr,160,64.0,velocity,center_ux,1.0239299535751343 +karman_re50,sr,160,64.0,velocity,center_uy,0.22795850038528442 +karman_re50,sr,160,64.0,velocity,lower_ux,1.0932319164276123 +karman_re50,sr,160,64.0,velocity,lower_uy,0.2845624089241028 +karman_re50,sr,161,64.4,velocity,upper_ux,0.8777511119842529 +karman_re50,sr,161,64.4,velocity,upper_uy,0.05202774703502655 +karman_re50,sr,161,64.4,velocity,center_ux,0.9915229082107544 +karman_re50,sr,161,64.4,velocity,center_uy,0.1420172154903412 +karman_re50,sr,161,64.4,velocity,lower_ux,1.0931795835494995 +karman_re50,sr,161,64.4,velocity,lower_uy,0.25250759720802307 +karman_re50,sr,162,64.8,velocity,upper_ux,0.9053006768226624 +karman_re50,sr,162,64.8,velocity,upper_uy,0.009443267248570919 +karman_re50,sr,162,64.8,velocity,center_ux,0.9542205929756165 +karman_re50,sr,162,64.8,velocity,center_uy,0.03237007558345795 +karman_re50,sr,162,64.8,velocity,lower_ux,1.0808701515197754 +karman_re50,sr,162,64.8,velocity,lower_uy,0.17882022261619568 +karman_re50,sr,163,65.2,velocity,upper_ux,0.9313697814941406 +karman_re50,sr,163,65.2,velocity,upper_uy,-0.03429491072893143 +karman_re50,sr,163,65.2,velocity,center_ux,0.9311912059783936 +karman_re50,sr,163,65.2,velocity,center_uy,-0.07245571911334991 +karman_re50,sr,163,65.2,velocity,lower_ux,1.0566320419311523 +karman_re50,sr,163,65.2,velocity,lower_uy,0.07421291619539261 +karman_re50,sr,164,65.6,velocity,upper_ux,0.9506914019584656 +karman_re50,sr,164,65.6,velocity,upper_uy,-0.08218006789684296 +karman_re50,sr,164,65.6,velocity,center_ux,0.933116614818573 +karman_re50,sr,164,65.6,velocity,center_uy,-0.1490580141544342 +karman_re50,sr,164,65.6,velocity,lower_ux,1.0193432569503784 +karman_re50,sr,164,65.6,velocity,lower_uy,-0.04212512820959091 +karman_re50,sr,165,66.0,velocity,upper_ux,0.9685561656951904 +karman_re50,sr,165,66.0,velocity,upper_uy,-0.1240677610039711 +karman_re50,sr,165,66.0,velocity,center_ux,0.9531388878822327 +karman_re50,sr,165,66.0,velocity,center_uy,-0.19979700446128845 +karman_re50,sr,165,66.0,velocity,lower_ux,0.9749431014060974 +karman_re50,sr,165,66.0,velocity,lower_uy,-0.1479864865541458 +karman_re50,sr,166,66.4,velocity,upper_ux,0.9920070171356201 +karman_re50,sr,166,66.4,velocity,upper_uy,-0.1573772430419922 +karman_re50,sr,166,66.4,velocity,center_ux,0.9814409613609314 +karman_re50,sr,166,66.4,velocity,center_uy,-0.23761729896068573 +karman_re50,sr,166,66.4,velocity,lower_ux,0.9367073774337769 +karman_re50,sr,166,66.4,velocity,lower_uy,-0.22505544126033783 +karman_re50,sr,167,66.8,velocity,upper_ux,1.015336275100708 +karman_re50,sr,167,66.8,velocity,upper_uy,-0.1871291697025299 +karman_re50,sr,167,66.8,velocity,center_ux,1.0069900751113892 +karman_re50,sr,167,66.8,velocity,center_uy,-0.26579341292381287 +karman_re50,sr,167,66.8,velocity,lower_ux,0.9071771502494812 +karman_re50,sr,167,66.8,velocity,lower_uy,-0.2631451189517975 +karman_re50,sr,168,67.2,velocity,upper_ux,1.0398870706558228 +karman_re50,sr,168,67.2,velocity,upper_uy,-0.2183566689491272 +karman_re50,sr,168,67.2,velocity,center_ux,1.0295374393463135 +karman_re50,sr,168,67.2,velocity,center_uy,-0.28605785965919495 +karman_re50,sr,168,67.2,velocity,lower_ux,0.8879707455635071 +karman_re50,sr,168,67.2,velocity,lower_uy,-0.2651433050632477 +karman_re50,sr,169,67.6,velocity,upper_ux,1.0622503757476807 +karman_re50,sr,169,67.6,velocity,upper_uy,-0.2502110004425049 +karman_re50,sr,169,67.6,velocity,center_ux,1.043152093887329 +karman_re50,sr,169,67.6,velocity,center_uy,-0.2947235703468323 +karman_re50,sr,169,67.6,velocity,lower_ux,0.8723139762878418 +karman_re50,sr,169,67.6,velocity,lower_uy,-0.23588024079799652 +karman_re50,sr,170,68.0,velocity,upper_ux,1.0804572105407715 +karman_re50,sr,170,68.0,velocity,upper_uy,-0.2769417464733124 +karman_re50,sr,170,68.0,velocity,center_ux,1.0435941219329834 +karman_re50,sr,170,68.0,velocity,center_uy,-0.28284114599227905 +karman_re50,sr,170,68.0,velocity,lower_ux,0.8602361083030701 +karman_re50,sr,170,68.0,velocity,lower_uy,-0.1821030080318451 +karman_re50,sr,171,68.4,velocity,upper_ux,1.091975450515747 +karman_re50,sr,171,68.4,velocity,upper_uy,-0.286101758480072 +karman_re50,sr,171,68.4,velocity,center_ux,1.028243899345398 +karman_re50,sr,171,68.4,velocity,center_uy,-0.23961253464221954 +karman_re50,sr,171,68.4,velocity,lower_ux,0.8585858345031738 +karman_re50,sr,171,68.4,velocity,lower_uy,-0.11765269190073013 +karman_re50,sr,172,68.8,velocity,upper_ux,1.0953174829483032 +karman_re50,sr,172,68.8,velocity,upper_uy,-0.26179039478302 +karman_re50,sr,172,68.8,velocity,center_ux,0.9992722868919373 +karman_re50,sr,172,68.8,velocity,center_uy,-0.16009126603603363 +karman_re50,sr,172,68.8,velocity,lower_ux,0.8746045827865601 +karman_re50,sr,172,68.8,velocity,lower_uy,-0.0608065240085125 +karman_re50,sr,173,69.2,velocity,upper_ux,1.0839760303497314 +karman_re50,sr,173,69.2,velocity,upper_uy,-0.1948857456445694 +karman_re50,sr,173,69.2,velocity,center_ux,0.9604905843734741 +karman_re50,sr,173,69.2,velocity,center_uy,-0.05275961011648178 +karman_re50,sr,173,69.2,velocity,lower_ux,0.9002710580825806 +karman_re50,sr,173,69.2,velocity,lower_uy,-0.016829714179039 +karman_re50,sr,174,69.6,velocity,upper_ux,1.0607686042785645 +karman_re50,sr,174,69.6,velocity,upper_uy,-0.0944209098815918 +karman_re50,sr,174,69.6,velocity,center_ux,0.9325147271156311 +karman_re50,sr,174,69.6,velocity,center_uy,0.05519358813762665 +karman_re50,sr,174,69.6,velocity,lower_ux,0.926220715045929 +karman_re50,sr,174,69.6,velocity,lower_uy,0.02588844858109951 +karman_re50,sr,175,70.0,velocity,upper_ux,1.025312900543213 +karman_re50,sr,175,70.0,velocity,upper_uy,0.02133043482899666 +karman_re50,sr,175,70.0,velocity,center_ux,0.9296386241912842 +karman_re50,sr,175,70.0,velocity,center_uy,0.13736331462860107 +karman_re50,sr,175,70.0,velocity,lower_ux,0.9461723566055298 +karman_re50,sr,175,70.0,velocity,lower_uy,0.0735788568854332 +karman_re50,sr,176,70.4,velocity,upper_ux,0.98261559009552 +karman_re50,sr,176,70.4,velocity,upper_uy,0.1306740641593933 +karman_re50,sr,176,70.4,velocity,center_ux,0.9484500288963318 +karman_re50,sr,176,70.4,velocity,center_uy,0.19190236926078796 +karman_re50,sr,176,70.4,velocity,lower_ux,0.9648494124412537 +karman_re50,sr,176,70.4,velocity,lower_uy,0.11722402274608612 +karman_re50,sr,177,70.8,velocity,upper_ux,0.9418503642082214 +karman_re50,sr,177,70.8,velocity,upper_uy,0.2137642800807953 +karman_re50,sr,177,70.8,velocity,center_ux,0.9751421213150024 +karman_re50,sr,177,70.8,velocity,center_uy,0.23129726946353912 +karman_re50,sr,177,70.8,velocity,lower_ux,0.9864794015884399 +karman_re50,sr,177,70.8,velocity,lower_uy,0.15159501135349274 +karman_re50,sr,178,71.2,velocity,upper_ux,0.911421537399292 +karman_re50,sr,178,71.2,velocity,upper_uy,0.25921711325645447 +karman_re50,sr,178,71.2,velocity,center_ux,1.0023036003112793 +karman_re50,sr,178,71.2,velocity,center_uy,0.2613416314125061 +karman_re50,sr,178,71.2,velocity,lower_ux,1.0108435153961182 +karman_re50,sr,178,71.2,velocity,lower_uy,0.18167993426322937 +karman_re50,sr,179,71.6,velocity,upper_ux,0.8921592831611633 +karman_re50,sr,179,71.6,velocity,upper_uy,0.2677317261695862 +karman_re50,sr,179,71.6,velocity,center_ux,1.0272822380065918 +karman_re50,sr,179,71.6,velocity,center_uy,0.2835303246974945 +karman_re50,sr,179,71.6,velocity,lower_ux,1.036900281906128 +karman_re50,sr,179,71.6,velocity,lower_uy,0.21283692121505737 +karman_re50,sr,180,72.0,velocity,upper_ux,0.8749654293060303 +karman_re50,sr,180,72.0,velocity,upper_uy,0.24343277513980865 +karman_re50,sr,180,72.0,velocity,center_ux,1.041581392288208 +karman_re50,sr,180,72.0,velocity,center_uy,0.29449430108070374 +karman_re50,sr,180,72.0,velocity,lower_ux,1.0584925413131714 +karman_re50,sr,180,72.0,velocity,lower_uy,0.24457283318042755 +karman_re50,sr,181,72.4,velocity,upper_ux,0.8618254065513611 +karman_re50,sr,181,72.4,velocity,upper_uy,0.19328981637954712 +karman_re50,sr,181,72.4,velocity,center_ux,1.044673204421997 +karman_re50,sr,181,72.4,velocity,center_uy,0.2871377468109131 +karman_re50,sr,181,72.4,velocity,lower_ux,1.0776046514511108 +karman_re50,sr,181,72.4,velocity,lower_uy,0.2729288339614868 +karman_re50,sr,182,72.8,velocity,upper_ux,0.8576339483261108 +karman_re50,sr,182,72.8,velocity,upper_uy,0.1293090134859085 +karman_re50,sr,182,72.8,velocity,center_ux,1.032271146774292 +karman_re50,sr,182,72.8,velocity,center_uy,0.250204473733902 +karman_re50,sr,182,72.8,velocity,lower_ux,1.0905604362487793 +karman_re50,sr,182,72.8,velocity,lower_uy,0.28646981716156006 +karman_re50,sr,183,73.2,velocity,upper_ux,0.8695524334907532 +karman_re50,sr,183,73.2,velocity,upper_uy,0.06994137167930603 +karman_re50,sr,183,73.2,velocity,center_ux,1.004481315612793 +karman_re50,sr,183,73.2,velocity,center_uy,0.17687083780765533 +karman_re50,sr,183,73.2,velocity,lower_ux,1.094509482383728 +karman_re50,sr,183,73.2,velocity,lower_uy,0.2689605951309204 +karman_re50,sr,184,73.6,velocity,upper_ux,0.8951218128204346 +karman_re50,sr,184,73.6,velocity,upper_uy,0.024209169670939445 +karman_re50,sr,184,73.6,velocity,center_ux,0.9672955870628357 +karman_re50,sr,184,73.6,velocity,center_uy,0.07308695465326309 +karman_re50,sr,184,73.6,velocity,lower_ux,1.086869478225708 +karman_re50,sr,184,73.6,velocity,lower_uy,0.20982883870601654 +karman_re50,sr,185,74.0,velocity,upper_ux,0.9231769442558289 +karman_re50,sr,185,74.0,velocity,upper_uy,-0.017766153439879417 +karman_re50,sr,185,74.0,velocity,center_ux,0.9372656345367432 +karman_re50,sr,185,74.0,velocity,center_uy,-0.03719237446784973 +karman_re50,sr,185,74.0,velocity,lower_ux,1.0673946142196655 +karman_re50,sr,185,74.0,velocity,lower_uy,0.1144421175122261 +karman_re50,sr,186,74.4,velocity,upper_ux,0.9428582787513733 +karman_re50,sr,186,74.4,velocity,upper_uy,-0.06495664268732071 +karman_re50,sr,186,74.4,velocity,center_ux,0.9282634258270264 +karman_re50,sr,186,74.4,velocity,center_uy,-0.12493588775396347 +karman_re50,sr,186,74.4,velocity,lower_ux,1.032548427581787 +karman_re50,sr,186,74.4,velocity,lower_uy,-0.0002352222363697365 +karman_re50,sr,187,74.8,velocity,upper_ux,0.9613087177276611 +karman_re50,sr,187,74.8,velocity,upper_uy,-0.1100819781422615 +karman_re50,sr,187,74.8,velocity,center_ux,0.944173276424408 +karman_re50,sr,187,74.8,velocity,center_uy,-0.18352092802524567 +karman_re50,sr,187,74.8,velocity,lower_ux,0.9905171394348145 +karman_re50,sr,187,74.8,velocity,lower_uy,-0.11232785880565643 +karman_re50,sr,188,75.2,velocity,upper_ux,0.9823253750801086 +karman_re50,sr,188,75.2,velocity,upper_uy,-0.1459600329399109 +karman_re50,sr,188,75.2,velocity,center_ux,0.9702343940734863 +karman_re50,sr,188,75.2,velocity,center_uy,-0.22495827078819275 +karman_re50,sr,188,75.2,velocity,lower_ux,0.9486286044120789 +karman_re50,sr,188,75.2,velocity,lower_uy,-0.20133161544799805 +karman_re50,sr,189,75.6,velocity,upper_ux,1.0063856840133667 +karman_re50,sr,189,75.6,velocity,upper_uy,-0.17630980908870697 +karman_re50,sr,189,75.6,velocity,center_ux,0.9976308941841125 +karman_re50,sr,189,75.6,velocity,center_uy,-0.25652265548706055 +karman_re50,sr,189,75.6,velocity,lower_ux,0.9160643815994263 +karman_re50,sr,189,75.6,velocity,lower_uy,-0.2538183629512787 +karman_re50,sr,190,76.0,velocity,upper_ux,1.0314075946807861 +karman_re50,sr,190,76.0,velocity,upper_uy,-0.20707878470420837 +karman_re50,sr,190,76.0,velocity,center_ux,1.0223894119262695 +karman_re50,sr,190,76.0,velocity,center_uy,-0.27997198700904846 +karman_re50,sr,190,76.0,velocity,lower_ux,0.8941506743431091 +karman_re50,sr,190,76.0,velocity,lower_uy,-0.2683282792568207 +karman_re50,sr,191,76.4,velocity,upper_ux,1.054600477218628 +karman_re50,sr,191,76.4,velocity,upper_uy,-0.23887500166893005 +karman_re50,sr,191,76.4,velocity,center_ux,1.039629340171814 +karman_re50,sr,191,76.4,velocity,center_uy,-0.2934632897377014 +karman_re50,sr,191,76.4,velocity,lower_ux,0.8777160048484802 +karman_re50,sr,191,76.4,velocity,lower_uy,-0.24979081749916077 +karman_re50,sr,192,76.8,velocity,upper_ux,1.0744982957839966 +karman_re50,sr,192,76.8,velocity,upper_uy,-0.2685019373893738 +karman_re50,sr,192,76.8,velocity,center_ux,1.0451949834823608 +karman_re50,sr,192,76.8,velocity,center_uy,-0.29025745391845703 +karman_re50,sr,192,76.8,velocity,lower_ux,0.8637603521347046 +karman_re50,sr,192,76.8,velocity,lower_uy,-0.2037215679883957 +karman_re50,sr,193,77.2,velocity,upper_ux,1.0887404680252075 +karman_re50,sr,193,77.2,velocity,upper_uy,-0.28586137294769287 +karman_re50,sr,193,77.2,velocity,center_ux,1.035658597946167 +karman_re50,sr,193,77.2,velocity,center_uy,-0.25939276814460754 +karman_re50,sr,193,77.2,velocity,lower_ux,0.8573183417320251 +karman_re50,sr,193,77.2,velocity,lower_uy,-0.14094668626785278 +karman_re50,sr,194,77.6,velocity,upper_ux,1.0945335626602173 +karman_re50,sr,194,77.6,velocity,upper_uy,-0.2750808298587799 +karman_re50,sr,194,77.6,velocity,center_ux,1.010430932044983 +karman_re50,sr,194,77.6,velocity,center_uy,-0.1926756054162979 +karman_re50,sr,194,77.6,velocity,lower_ux,0.8661665916442871 +karman_re50,sr,194,77.6,velocity,lower_uy,-0.07957464456558228 +karman_re50,sr,195,78.0,velocity,upper_ux,1.0891525745391846 +karman_re50,sr,195,78.0,velocity,upper_uy,-0.2235751897096634 +karman_re50,sr,195,78.0,velocity,center_ux,0.974113941192627 +karman_re50,sr,195,78.0,velocity,center_uy,-0.09317024052143097 +karman_re50,sr,195,78.0,velocity,lower_ux,0.8900697231292725 +karman_re50,sr,195,78.0,velocity,lower_uy,-0.03171410784125328 +karman_re50,sr,196,78.4,velocity,upper_ux,1.0707497596740723 +karman_re50,sr,196,78.4,velocity,upper_uy,-0.13354305922985077 +karman_re50,sr,196,78.4,velocity,center_ux,0.9403506517410278 +karman_re50,sr,196,78.4,velocity,center_uy,0.018227264285087585 +karman_re50,sr,196,78.4,velocity,lower_ux,0.9176027774810791 +karman_re50,sr,196,78.4,velocity,lower_uy,0.00982289295643568 +karman_re50,sr,197,78.8,velocity,upper_ux,1.039320707321167 +karman_re50,sr,197,78.8,velocity,upper_uy,-0.020879914984107018 +karman_re50,sr,197,78.8,velocity,center_ux,0.9275946021080017 +karman_re50,sr,197,78.8,velocity,center_uy,0.11142297089099884 +karman_re50,sr,197,78.8,velocity,lower_ux,0.9394602179527283 +karman_re50,sr,197,78.8,velocity,lower_uy,0.05622547119855881 +karman_re50,sr,198,79.2,velocity,upper_ux,0.9982962608337402 +karman_re50,sr,198,79.2,velocity,upper_uy,0.09325632452964783 +karman_re50,sr,198,79.2,velocity,center_ux,0.9400866031646729 +karman_re50,sr,198,79.2,velocity,center_uy,0.17455166578292847 +karman_re50,sr,198,79.2,velocity,lower_ux,0.9578293561935425 +karman_re50,sr,198,79.2,velocity,lower_uy,0.10255280137062073 +karman_re50,sr,199,79.6,velocity,upper_ux,0.9556305408477783 +karman_re50,sr,199,79.6,velocity,upper_uy,0.18773742020130157 +karman_re50,sr,199,79.6,velocity,center_ux,0.9652408361434937 +karman_re50,sr,199,79.6,velocity,center_uy,0.21825413405895233 +karman_re50,sr,199,79.6,velocity,lower_ux,0.9782293438911438 +karman_re50,sr,199,79.6,velocity,lower_uy,0.14005637168884277 +karman_re50,sr,0,0.0,force,front_fx,0.0003898449649568647 +karman_re50,sr,0,0.0,force,front_fy,0.0008654326084069908 +karman_re50,sr,0,0.0,force,upper_fx,0.0017600004794076085 +karman_re50,sr,0,0.0,force,upper_fy,0.003403826616704464 +karman_re50,sr,0,0.0,force,lower_fx,-0.001987553434446454 +karman_re50,sr,0,0.0,force,lower_fy,-0.0025089450646191835 +karman_re50,sr,1,0.4,force,front_fx,0.00043457382707856596 +karman_re50,sr,1,0.4,force,front_fy,0.002053141826763749 +karman_re50,sr,1,0.4,force,upper_fx,0.0007238270482048392 +karman_re50,sr,1,0.4,force,upper_fy,0.0036734878085553646 +karman_re50,sr,1,0.4,force,lower_fx,-0.0014930948382243514 +karman_re50,sr,1,0.4,force,lower_fy,-0.0027876102831214666 +karman_re50,sr,2,0.8,force,front_fx,0.0003588977560866624 +karman_re50,sr,2,0.8,force,front_fy,0.002080979524180293 +karman_re50,sr,2,0.8,force,upper_fx,0.0003048250509891659 +karman_re50,sr,2,0.8,force,upper_fy,0.0037214148323982954 +karman_re50,sr,2,0.8,force,lower_fx,-0.0011819301871582866 +karman_re50,sr,2,0.8,force,lower_fy,-0.0032310893293470144 +karman_re50,sr,3,1.2,force,front_fx,0.0002059840044239536 +karman_re50,sr,3,1.2,force,front_fy,0.0024148717056959867 +karman_re50,sr,3,1.2,force,upper_fx,-0.00042846077121794224 +karman_re50,sr,3,1.2,force,upper_fy,0.0033790646120905876 +karman_re50,sr,3,1.2,force,lower_fx,-0.00024578464217484 +karman_re50,sr,3,1.2,force,lower_fy,-0.003979858942329884 +karman_re50,sr,4,1.6,force,front_fx,0.00012488767970353365 +karman_re50,sr,4,1.6,force,front_fy,0.002719620242714882 +karman_re50,sr,4,1.6,force,upper_fx,-0.0014086680021137 +karman_re50,sr,4,1.6,force,upper_fy,0.0031345707830041647 +karman_re50,sr,4,1.6,force,lower_fx,0.001060140784829855 +karman_re50,sr,4,1.6,force,lower_fy,-0.004423628095537424 +karman_re50,sr,5,2.0,force,front_fx,0.00031867335201241076 +karman_re50,sr,5,2.0,force,front_fy,0.0028982670046389103 +karman_re50,sr,5,2.0,force,upper_fx,-0.002509491750970483 +karman_re50,sr,5,2.0,force,upper_fy,0.003054931992664933 +karman_re50,sr,5,2.0,force,lower_fx,0.0021154398564249277 +karman_re50,sr,5,2.0,force,lower_fy,-0.004479593131691217 +karman_re50,sr,6,2.4,force,front_fx,0.0009862396400421858 +karman_re50,sr,6,2.4,force,front_fy,0.003240022575482726 +karman_re50,sr,6,2.4,force,upper_fx,-0.0037455775309354067 +karman_re50,sr,6,2.4,force,upper_fy,0.0030487277545034885 +karman_re50,sr,6,2.4,force,lower_fx,0.002832937752828002 +karman_re50,sr,6,2.4,force,lower_fy,-0.004530621692538261 +karman_re50,sr,7,2.8,force,front_fx,0.0018717312486842275 +karman_re50,sr,7,2.8,force,front_fy,0.0035345270298421383 +karman_re50,sr,7,2.8,force,upper_fx,-0.004834603983908892 +karman_re50,sr,7,2.8,force,upper_fy,0.003010757267475128 +karman_re50,sr,7,2.8,force,lower_fx,0.003274947637692094 +karman_re50,sr,7,2.8,force,lower_fy,-0.004540290683507919 +karman_re50,sr,8,3.2,force,front_fx,0.0026457258500158787 +karman_re50,sr,8,3.2,force,front_fy,0.0034520241897553205 +karman_re50,sr,8,3.2,force,upper_fx,-0.005489063449203968 +karman_re50,sr,8,3.2,force,upper_fy,0.0029641392175108194 +karman_re50,sr,8,3.2,force,lower_fx,0.0033919287379831076 +karman_re50,sr,8,3.2,force,lower_fy,-0.004359837621450424 +karman_re50,sr,9,3.6,force,front_fx,0.003101743059232831 +karman_re50,sr,9,3.6,force,front_fy,0.0029044232796877623 +karman_re50,sr,9,3.6,force,upper_fx,-0.005595810245722532 +karman_re50,sr,9,3.6,force,upper_fy,0.002911886665970087 +karman_re50,sr,9,3.6,force,lower_fx,0.003185619367286563 +karman_re50,sr,9,3.6,force,lower_fy,-0.00404294952750206 +karman_re50,sr,10,4.0,force,front_fx,0.003053871914744377 +karman_re50,sr,10,4.0,force,front_fy,0.0020328050013631582 +karman_re50,sr,10,4.0,force,upper_fx,-0.00515249976888299 +karman_re50,sr,10,4.0,force,upper_fy,0.002922911662608385 +karman_re50,sr,10,4.0,force,lower_fx,0.002743476303294301 +karman_re50,sr,10,4.0,force,lower_fy,-0.0037087935488671064 +karman_re50,sr,11,4.4,force,front_fx,0.00251681637018919 +karman_re50,sr,11,4.4,force,front_fy,0.0009913946269080043 +karman_re50,sr,11,4.4,force,upper_fx,-0.004287632182240486 +karman_re50,sr,11,4.4,force,upper_fy,0.0030669583939015865 +karman_re50,sr,11,4.4,force,lower_fx,0.0021607973612844944 +karman_re50,sr,11,4.4,force,lower_fy,-0.0034745715092867613 +karman_re50,sr,12,4.8,force,front_fx,0.001706112758256495 +karman_re50,sr,12,4.8,force,front_fy,-2.5305022063548677e-05 +karman_re50,sr,12,4.8,force,upper_fx,-0.003139382228255272 +karman_re50,sr,12,4.8,force,upper_fy,0.003365667536854744 +karman_re50,sr,12,4.8,force,lower_fx,0.0015110507374629378 +karman_re50,sr,12,4.8,force,lower_fy,-0.0033630323596298695 +karman_re50,sr,13,5.2,force,front_fx,0.000916130084078759 +karman_re50,sr,13,5.2,force,front_fy,-0.0008829167345538735 +karman_re50,sr,13,5.2,force,upper_fx,-0.0018665534444153309 +karman_re50,sr,13,5.2,force,upper_fy,0.003730676369741559 +karman_re50,sr,13,5.2,force,lower_fx,0.0008141914731822908 +karman_re50,sr,13,5.2,force,lower_fy,-0.0032975375652313232 +karman_re50,sr,14,5.6,force,front_fx,0.0003576310118660331 +karman_re50,sr,14,5.6,force,front_fy,-0.0015619088662788272 +karman_re50,sr,14,5.6,force,upper_fx,-0.0005836907657794654 +karman_re50,sr,14,5.6,force,upper_fy,0.004058672580868006 +karman_re50,sr,14,5.6,force,lower_fx,4.914533201372251e-05 +karman_re50,sr,14,5.6,force,lower_fy,-0.0032183732837438583 +karman_re50,sr,15,6.0,force,front_fx,0.0001283361780224368 +karman_re50,sr,15,6.0,force,front_fy,-0.002117384923622012 +karman_re50,sr,15,6.0,force,upper_fx,0.0006035641417838633 +karman_re50,sr,15,6.0,force,upper_fy,0.004314924590289593 +karman_re50,sr,15,6.0,force,lower_fx,-0.0008126821485348046 +karman_re50,sr,15,6.0,force,lower_fy,-0.0031239965464919806 +karman_re50,sr,16,6.4,force,front_fx,0.0002632686519064009 +karman_re50,sr,16,6.4,force,front_fy,-0.0026228579226881266 +karman_re50,sr,16,6.4,force,upper_fx,0.0015987121732905507 +karman_re50,sr,16,6.4,force,upper_fy,0.004505133256316185 +karman_re50,sr,16,6.4,force,lower_fx,-0.0017857621423900127 +karman_re50,sr,16,6.4,force,lower_fy,-0.0030669677071273327 +karman_re50,sr,17,6.8,force,front_fx,0.0007367379148490727 +karman_re50,sr,17,6.8,force,front_fy,-0.0030468215700238943 +karman_re50,sr,17,6.8,force,upper_fx,0.002326760906726122 +karman_re50,sr,17,6.8,force,upper_fy,0.004629981704056263 +karman_re50,sr,17,6.8,force,lower_fx,-0.0028126477263867855 +karman_re50,sr,17,6.8,force,lower_fy,-0.00305627821944654 +karman_re50,sr,18,7.2,force,front_fx,0.0014211637899279594 +karman_re50,sr,18,7.2,force,front_fy,-0.0033178329467773438 +karman_re50,sr,18,7.2,force,upper_fx,0.0027452236972749233 +karman_re50,sr,18,7.2,force,upper_fy,0.004614255856722593 +karman_re50,sr,18,7.2,force,lower_fx,-0.0037447670474648476 +karman_re50,sr,18,7.2,force,lower_fy,-0.0031184933613985777 +karman_re50,sr,19,7.6,force,front_fx,0.00209212233312428 +karman_re50,sr,19,7.6,force,front_fy,-0.003283401718363166 +karman_re50,sr,19,7.6,force,upper_fx,0.002857823856174946 +karman_re50,sr,19,7.6,force,upper_fy,0.004427039530128241 +karman_re50,sr,19,7.6,force,lower_fx,-0.004352133721113205 +karman_re50,sr,19,7.6,force,lower_fy,-0.0032115825451910496 +karman_re50,sr,20,8.0,force,front_fx,0.002492754254490137 +karman_re50,sr,20,8.0,force,front_fy,-0.00286104972474277 +karman_re50,sr,20,8.0,force,upper_fx,0.002707670908421278 +karman_re50,sr,20,8.0,force,upper_fy,0.004106039181351662 +karman_re50,sr,20,8.0,force,lower_fx,-0.004447188228368759 +karman_re50,sr,20,8.0,force,lower_fy,-0.003271880093961954 +karman_re50,sr,21,8.4,force,front_fx,0.002461940050125122 +karman_re50,sr,21,8.4,force,front_fy,-0.002063047606498003 +karman_re50,sr,21,8.4,force,upper_fx,0.0023439282085746527 +karman_re50,sr,21,8.4,force,upper_fy,0.003758287988603115 +karman_re50,sr,21,8.4,force,lower_fx,-0.004030467476695776 +karman_re50,sr,21,8.4,force,lower_fy,-0.003286452032625675 +karman_re50,sr,22,8.8,force,front_fx,0.0020141222048550844 +karman_re50,sr,22,8.8,force,front_fy,-0.001042638556100428 +karman_re50,sr,22,8.8,force,upper_fx,0.0018173157004639506 +karman_re50,sr,22,8.8,force,upper_fy,0.003478057449683547 +karman_re50,sr,22,8.8,force,lower_fx,-0.0032522501423954964 +karman_re50,sr,22,8.8,force,lower_fy,-0.0033554336987435818 +karman_re50,sr,23,9.2,force,front_fx,0.0013470039702951908 +karman_re50,sr,23,9.2,force,front_fy,-8.830078854771273e-07 +karman_re50,sr,23,9.2,force,upper_fx,0.0011862051906064153 +karman_re50,sr,23,9.2,force,upper_fy,0.0032987629529088736 +karman_re50,sr,23,9.2,force,lower_fx,-0.0022622626274824142 +karman_re50,sr,23,9.2,force,lower_fy,-0.0035594389773905277 +karman_re50,sr,24,9.6,force,front_fx,0.0007171488832682371 +karman_re50,sr,24,9.6,force,front_fy,0.0009019742719829082 +karman_re50,sr,24,9.6,force,upper_fx,0.000482592498883605 +karman_re50,sr,24,9.6,force,upper_fy,0.0031731082126498222 +karman_re50,sr,24,9.6,force,lower_fx,-0.0011701318435370922 +karman_re50,sr,24,9.6,force,lower_fy,-0.0038423293735831976 +karman_re50,sr,25,10.0,force,front_fx,0.0003213647869415581 +karman_re50,sr,25,10.0,force,front_fy,0.0016232746420428157 +karman_re50,sr,25,10.0,force,upper_fx,-0.0002941545390058309 +karman_re50,sr,25,10.0,force,upper_fy,0.0030555734410881996 +karman_re50,sr,25,10.0,force,lower_fx,-7.208690658444539e-05 +karman_re50,sr,25,10.0,force,lower_fy,-0.004098766483366489 +karman_re50,sr,26,10.4,force,front_fx,0.0002480983966961503 +karman_re50,sr,26,10.4,force,front_fy,0.00222772266715765 +karman_re50,sr,26,10.4,force,upper_fx,-0.0011743297800421715 +karman_re50,sr,26,10.4,force,upper_fy,0.0029686405323445797 +karman_re50,sr,26,10.4,force,lower_fx,0.0009366418235003948 +karman_re50,sr,26,10.4,force,lower_fy,-0.004286798648536205 +karman_re50,sr,27,10.8,force,front_fx,0.000508830591570586 +karman_re50,sr,27,10.8,force,front_fy,0.002770643914118409 +karman_re50,sr,27,10.8,force,upper_fx,-0.002145105740055442 +karman_re50,sr,27,10.8,force,upper_fy,0.0029509819578379393 +karman_re50,sr,27,10.8,force,lower_fx,0.0017715117428451777 +karman_re50,sr,27,10.8,force,lower_fy,-0.004438901320099831 +karman_re50,sr,28,11.2,force,front_fx,0.0010419792961329222 +karman_re50,sr,28,11.2,force,front_fy,0.003255888121202588 +karman_re50,sr,28,11.2,force,upper_fx,-0.003128789598122239 +karman_re50,sr,28,11.2,force,upper_fy,0.003020466770976782 +karman_re50,sr,28,11.2,force,lower_fx,0.002383309882134199 +karman_re50,sr,28,11.2,force,lower_fy,-0.004532730206847191 +karman_re50,sr,29,11.6,force,front_fx,0.001703806803561747 +karman_re50,sr,29,11.6,force,front_fy,0.0035664576571434736 +karman_re50,sr,29,11.6,force,upper_fx,-0.003962414804846048 +karman_re50,sr,29,11.6,force,upper_fy,0.0031295218504965305 +karman_re50,sr,29,11.6,force,lower_fx,0.002750544808804989 +karman_re50,sr,29,11.6,force,lower_fy,-0.004522219765931368 +karman_re50,sr,30,12.0,force,front_fx,0.002286291681230068 +karman_re50,sr,30,12.0,force,front_fy,0.003566945204511285 +karman_re50,sr,30,12.0,force,upper_fx,-0.004466199781745672 +karman_re50,sr,30,12.0,force,upper_fy,0.003206804394721985 +karman_re50,sr,30,12.0,force,lower_fx,0.0028713326901197433 +karman_re50,sr,30,12.0,force,lower_fy,-0.004360025282949209 +karman_re50,sr,31,12.4,force,front_fx,0.0026082159020006657 +karman_re50,sr,31,12.4,force,front_fy,0.0031537883915007114 +karman_re50,sr,31,12.4,force,upper_fx,-0.0045351325534284115 +karman_re50,sr,31,12.4,force,upper_fy,0.0032100616954267025 +karman_re50,sr,31,12.4,force,lower_fx,0.002754095708951354 +karman_re50,sr,31,12.4,force,lower_fy,-0.0040626139380037785 +karman_re50,sr,32,12.8,force,front_fx,0.0025581843219697475 +karman_re50,sr,32,12.8,force,front_fy,0.0023355677258223295 +karman_re50,sr,32,12.8,force,upper_fx,-0.004168134182691574 +karman_re50,sr,32,12.8,force,upper_fy,0.0031898124143481255 +karman_re50,sr,32,12.8,force,lower_fx,0.0024170945398509502 +karman_re50,sr,32,12.8,force,lower_fy,-0.003718271851539612 +karman_re50,sr,33,13.2,force,front_fx,0.0021384628489613533 +karman_re50,sr,33,13.2,force,front_fy,0.001292580971494317 +karman_re50,sr,33,13.2,force,upper_fx,-0.0034651344176381826 +karman_re50,sr,33,13.2,force,upper_fy,0.0032714218832552433 +karman_re50,sr,33,13.2,force,lower_fx,0.0019050000701099634 +karman_re50,sr,33,13.2,force,lower_fy,-0.00342182582244277 +karman_re50,sr,34,13.6,force,front_fx,0.0014846596168354154 +karman_re50,sr,34,13.6,force,front_fy,0.0002213273401139304 +karman_re50,sr,34,13.6,force,upper_fx,-0.0025151444133371115 +karman_re50,sr,34,13.6,force,upper_fy,0.0034910247195512056 +karman_re50,sr,34,13.6,force,lower_fx,0.0012941100867465138 +karman_re50,sr,34,13.6,force,lower_fy,-0.0032348535023629665 +karman_re50,sr,35,14.0,force,front_fx,0.0008237266447395086 +karman_re50,sr,35,14.0,force,front_fy,-0.00070550775853917 +karman_re50,sr,35,14.0,force,upper_fx,-0.001435351325199008 +karman_re50,sr,35,14.0,force,upper_fy,0.003775343531742692 +karman_re50,sr,35,14.0,force,lower_fx,0.0006290391320362687 +karman_re50,sr,35,14.0,force,lower_fy,-0.0031185767147690058 +karman_re50,sr,36,14.4,force,front_fx,0.00036940912832506 +karman_re50,sr,36,14.4,force,front_fy,-0.0014643556205555797 +karman_re50,sr,36,14.4,force,upper_fx,-0.00033234196598641574 +karman_re50,sr,36,14.4,force,upper_fy,0.004020486027002335 +karman_re50,sr,36,14.4,force,lower_fx,-0.00011040167737519369 +karman_re50,sr,36,14.4,force,lower_fy,-0.0030265117529779673 +karman_re50,sr,37,14.8,force,front_fx,0.00023165858874563128 +karman_re50,sr,37,14.8,force,front_fy,-0.0021005815360695124 +karman_re50,sr,37,14.8,force,upper_fx,0.0006863020826131105 +karman_re50,sr,37,14.8,force,upper_fy,0.004208974074572325 +karman_re50,sr,37,14.8,force,lower_fx,-0.000953584210947156 +karman_re50,sr,37,14.8,force,lower_fy,-0.0029586146119982004 +karman_re50,sr,38,15.2,force,front_fx,0.0004193806671537459 +karman_re50,sr,38,15.2,force,front_fy,-0.002666266867890954 +karman_re50,sr,38,15.2,force,upper_fx,0.0015471238875761628 +karman_re50,sr,38,15.2,force,upper_fy,0.00437328964471817 +karman_re50,sr,38,15.2,force,lower_fx,-0.001887806341983378 +karman_re50,sr,38,15.2,force,lower_fy,-0.002950983587652445 +karman_re50,sr,39,15.6,force,front_fx,0.0008855683263391256 +karman_re50,sr,39,15.6,force,front_fy,-0.0031641980167478323 +karman_re50,sr,39,15.6,force,upper_fx,0.0022056561429053545 +karman_re50,sr,39,15.6,force,upper_fy,0.004493206273764372 +karman_re50,sr,39,15.6,force,lower_fx,-0.002841672860085964 +karman_re50,sr,39,15.6,force,lower_fy,-0.0030095435213297606 +karman_re50,sr,40,16.0,force,front_fx,0.0015033094678074121 +karman_re50,sr,40,16.0,force,front_fy,-0.0035050520673394203 +karman_re50,sr,40,16.0,force,upper_fx,0.0026220595464110374 +karman_re50,sr,40,16.0,force,upper_fy,0.004510929342359304 +karman_re50,sr,40,16.0,force,lower_fx,-0.003691107966005802 +karman_re50,sr,40,16.0,force,lower_fy,-0.003117052372545004 +karman_re50,sr,41,16.4,force,front_fx,0.0020930056925863028 +karman_re50,sr,41,16.4,force,front_fy,-0.0035575893707573414 +karman_re50,sr,41,16.4,force,upper_fx,0.002792356302961707 +karman_re50,sr,41,16.4,force,upper_fy,0.004377441015094519 +karman_re50,sr,41,16.4,force,lower_fx,-0.004266135394573212 +karman_re50,sr,41,16.4,force,lower_fy,-0.0032039263751357794 +karman_re50,sr,42,16.8,force,front_fx,0.0024661722127348185 +karman_re50,sr,42,16.8,force,front_fy,-0.0032110181637108326 +karman_re50,sr,42,16.8,force,upper_fx,0.0027230295818299055 +karman_re50,sr,42,16.8,force,upper_fy,0.00410388084128499 +karman_re50,sr,42,16.8,force,lower_fx,-0.004422461614012718 +karman_re50,sr,42,16.8,force,lower_fy,-0.0032223572488874197 +karman_re50,sr,43,17.2,force,front_fx,0.0025000369641929865 +karman_re50,sr,43,17.2,force,front_fy,-0.0024643107317388058 +karman_re50,sr,43,17.2,force,upper_fx,0.002432973822578788 +karman_re50,sr,43,17.2,force,upper_fy,0.0037585878744721413 +karman_re50,sr,43,17.2,force,lower_fx,-0.0041450392454862595 +karman_re50,sr,43,17.2,force,lower_fy,-0.003206276800483465 +karman_re50,sr,44,17.6,force,front_fx,0.002158251591026783 +karman_re50,sr,44,17.6,force,front_fy,-0.0014481402467936277 +karman_re50,sr,44,17.6,force,upper_fx,0.0019574768375605345 +karman_re50,sr,44,17.6,force,upper_fy,0.0034509729593992233 +karman_re50,sr,44,17.6,force,lower_fx,-0.0035041379742324352 +karman_re50,sr,44,17.6,force,lower_fy,-0.003263323102146387 +karman_re50,sr,45,18.0,force,front_fx,0.0015516531420871615 +karman_re50,sr,45,18.0,force,front_fy,-0.0003789460752159357 +karman_re50,sr,45,18.0,force,upper_fx,0.001369586680084467 +karman_re50,sr,45,18.0,force,upper_fy,0.0032432288862764835 +karman_re50,sr,45,18.0,force,lower_fx,-0.002608000999316573 +karman_re50,sr,45,18.0,force,lower_fy,-0.0034538120962679386 +karman_re50,sr,46,18.4,force,front_fx,0.0008961883140727878 +karman_re50,sr,46,18.4,force,front_fy,0.00058101856848225 +karman_re50,sr,46,18.4,force,upper_fx,0.0007141020614653826 +karman_re50,sr,46,18.4,force,upper_fy,0.0031199539080262184 +karman_re50,sr,46,18.4,force,lower_fx,-0.0015633542789146304 +karman_re50,sr,46,18.4,force,lower_fy,-0.003717832500115037 +karman_re50,sr,47,18.8,force,front_fx,0.00041534833144396544 +karman_re50,sr,47,18.8,force,front_fy,0.0013680250849574804 +karman_re50,sr,47,18.8,force,upper_fx,-1.2448178495105822e-05 +karman_re50,sr,47,18.8,force,upper_fy,0.0030221708584576845 +karman_re50,sr,47,18.8,force,lower_fx,-0.0004786033241543919 +karman_re50,sr,47,18.8,force,lower_fy,-0.003965124953538179 +karman_re50,sr,48,19.2,force,front_fx,0.0002224489871878177 +karman_re50,sr,48,19.2,force,front_fy,0.0020238556899130344 +karman_re50,sr,48,19.2,force,upper_fx,-0.0008352053118869662 +karman_re50,sr,48,19.2,force,upper_fy,0.002951723290607333 +karman_re50,sr,48,19.2,force,lower_fx,0.0005430816672742367 +karman_re50,sr,48,19.2,force,lower_fy,-0.00416679447516799 +karman_re50,sr,49,19.6,force,front_fx,0.00038308874354697764 +karman_re50,sr,49,19.6,force,front_fy,0.0025989175774157047 +karman_re50,sr,49,19.6,force,upper_fx,-0.0017535202205181122 +karman_re50,sr,49,19.6,force,upper_fy,0.00292935105971992 +karman_re50,sr,49,19.6,force,lower_fx,0.0014285299694165587 +karman_re50,sr,49,19.6,force,lower_fy,-0.0043317093513906 +karman_re50,sr,50,20.0,force,front_fx,0.0008133379160426557 +karman_re50,sr,50,20.0,force,front_fy,0.0031095289159566164 +karman_re50,sr,50,20.0,force,upper_fx,-0.0027116069104522467 +karman_re50,sr,50,20.0,force,upper_fy,0.0029871598817408085 +karman_re50,sr,50,20.0,force,lower_fx,0.0021122610196471214 +karman_re50,sr,50,20.0,force,lower_fy,-0.004465898498892784 +karman_re50,sr,51,20.4,force,front_fx,0.0014178059063851833 +karman_re50,sr,51,20.4,force,front_fy,0.003487987909466028 +karman_re50,sr,51,20.4,force,upper_fx,-0.003591093234717846 +karman_re50,sr,51,20.4,force,upper_fy,0.0030935979448258877 +karman_re50,sr,51,20.4,force,lower_fx,0.0025711541529744864 +karman_re50,sr,51,20.4,force,lower_fy,-0.004504722077399492 +karman_re50,sr,52,20.8,force,front_fx,0.0020199224818497896 +karman_re50,sr,52,20.8,force,front_fy,0.00360086839646101 +karman_re50,sr,52,20.8,force,upper_fx,-0.004218960180878639 +karman_re50,sr,52,20.8,force,upper_fy,0.003185543231666088 +karman_re50,sr,52,20.8,force,lower_fx,0.0027840363327413797 +karman_re50,sr,52,20.8,force,lower_fy,-0.004402608145028353 +karman_re50,sr,53,21.2,force,front_fx,0.002441858872771263 +karman_re50,sr,53,21.2,force,front_fy,0.0033282414078712463 +karman_re50,sr,53,21.2,force,upper_fx,-0.004454892594367266 +karman_re50,sr,53,21.2,force,upper_fy,0.0032097173389047384 +karman_re50,sr,53,21.2,force,lower_fx,0.002760406816378236 +karman_re50,sr,53,21.2,force,lower_fy,-0.004151062574237585 +karman_re50,sr,54,21.6,force,front_fx,0.002539659384638071 +karman_re50,sr,54,21.6,force,front_fy,0.002638648496940732 +karman_re50,sr,54,21.6,force,upper_fx,-0.00425250269472599 +karman_re50,sr,54,21.6,force,upper_fy,0.003190615214407444 +karman_re50,sr,54,21.6,force,lower_fx,0.0025089869741350412 +karman_re50,sr,54,21.6,force,lower_fy,-0.003814662341028452 +karman_re50,sr,55,22.0,force,front_fx,0.0022685255389660597 +karman_re50,sr,55,22.0,force,front_fy,0.001655582687817514 +karman_re50,sr,55,22.0,force,upper_fx,-0.003668199758976698 +karman_re50,sr,55,22.0,force,upper_fy,0.003236598102375865 +karman_re50,sr,55,22.0,force,lower_fx,0.0020656578708440065 +karman_re50,sr,55,22.0,force,lower_fy,-0.0034942757338285446 +karman_re50,sr,56,22.4,force,front_fx,0.0016870037652552128 +karman_re50,sr,56,22.4,force,front_fy,0.0005762593355029821 +karman_re50,sr,56,22.4,force,upper_fx,-0.002814200008288026 +karman_re50,sr,56,22.4,force,upper_fy,0.003405842464417219 +karman_re50,sr,56,22.4,force,lower_fx,0.0014918181113898754 +karman_re50,sr,56,22.4,force,lower_fy,-0.003274819813668728 +karman_re50,sr,57,22.8,force,front_fx,0.0010140020167455077 +karman_re50,sr,57,22.8,force,front_fy,-0.0004084121319465339 +karman_re50,sr,57,22.8,force,upper_fx,-0.001786255743354559 +karman_re50,sr,57,22.8,force,upper_fy,0.0036656802985817194 +karman_re50,sr,57,22.8,force,lower_fx,0.0008500656695105135 +karman_re50,sr,57,22.8,force,lower_fy,-0.003139106323942542 +karman_re50,sr,58,23.2,force,front_fx,0.0004858172032982111 +karman_re50,sr,58,23.2,force,front_fy,-0.0012305073905736208 +karman_re50,sr,58,23.2,force,upper_fx,-0.0007005914812907577 +karman_re50,sr,58,23.2,force,upper_fy,0.003924155607819557 +karman_re50,sr,58,23.2,force,lower_fx,0.00013882089115213603 +karman_re50,sr,58,23.2,force,lower_fy,-0.0030461973510682583 +karman_re50,sr,59,23.6,force,front_fx,0.00024160508473869413 +karman_re50,sr,59,23.6,force,front_fy,-0.0018989014206454158 +karman_re50,sr,59,23.6,force,upper_fx,0.0003438857675064355 +karman_re50,sr,59,23.6,force,upper_fy,0.0041249776259064674 +karman_re50,sr,59,23.6,force,lower_fx,-0.000661780999507755 +karman_re50,sr,59,23.6,force,lower_fy,-0.0029606311582028866 +karman_re50,sr,60,24.0,force,front_fx,0.0003258645301684737 +karman_re50,sr,60,24.0,force,front_fy,-0.0024865935556590557 +karman_re50,sr,60,24.0,force,upper_fx,0.0012623016955330968 +karman_re50,sr,60,24.0,force,upper_fy,0.004299171268939972 +karman_re50,sr,60,24.0,force,lower_fx,-0.0015587039524689317 +karman_re50,sr,60,24.0,force,lower_fy,-0.0029318949673324823 +karman_re50,sr,61,24.4,force,front_fx,0.0007040753844194114 +karman_re50,sr,61,24.4,force,front_fy,-0.003010648535564542 +karman_re50,sr,61,24.4,force,upper_fx,0.001992523204535246 +karman_re50,sr,61,24.4,force,upper_fy,0.004444578662514687 +karman_re50,sr,61,24.4,force,lower_fx,-0.002513111336156726 +karman_re50,sr,61,24.4,force,lower_fy,-0.002977017080411315 +karman_re50,sr,62,24.8,force,front_fx,0.0012848498299717903 +karman_re50,sr,62,24.8,force,front_fy,-0.0034187722485512495 +karman_re50,sr,62,24.8,force,upper_fx,0.002497501438483596 +karman_re50,sr,62,24.8,force,upper_fy,0.004511889535933733 +karman_re50,sr,62,24.8,force,lower_fx,-0.0034115342423319817 +karman_re50,sr,62,24.8,force,lower_fy,-0.003078873734921217 +karman_re50,sr,63,25.2,force,front_fx,0.0018961461028084159 +karman_re50,sr,63,25.2,force,front_fy,-0.0035893809981644154 +karman_re50,sr,63,25.2,force,upper_fx,0.002751585328951478 +karman_re50,sr,63,25.2,force,upper_fy,0.004429821856319904 +karman_re50,sr,63,25.2,force,lower_fx,-0.004106573294848204 +karman_re50,sr,63,25.2,force,lower_fy,-0.0031728018075227737 +karman_re50,sr,64,25.6,force,front_fx,0.0023627399932593107 +karman_re50,sr,64,25.6,force,front_fy,-0.0033905974123626947 +karman_re50,sr,64,25.6,force,upper_fx,0.002769703045487404 +karman_re50,sr,64,25.6,force,upper_fy,0.004203788470476866 +karman_re50,sr,64,25.6,force,lower_fx,-0.004421694204211235 +karman_re50,sr,64,25.6,force,lower_fy,-0.0032073655165731907 +karman_re50,sr,65,26.0,force,front_fx,0.0025288353208452463 +karman_re50,sr,65,26.0,force,front_fy,-0.0027748900465667248 +karman_re50,sr,65,26.0,force,upper_fx,0.002559963148087263 +karman_re50,sr,65,26.0,force,upper_fy,0.0038716369308531284 +karman_re50,sr,65,26.0,force,lower_fx,-0.004297554958611727 +karman_re50,sr,65,26.0,force,lower_fy,-0.0031937030144035816 +karman_re50,sr,66,26.4,force,front_fx,0.0023220127914100885 +karman_re50,sr,66,26.4,force,front_fy,-0.0018298941431567073 +karman_re50,sr,66,26.4,force,upper_fx,0.0021471474319696426 +karman_re50,sr,66,26.4,force,upper_fy,0.0035450002178549767 +karman_re50,sr,66,26.4,force,lower_fx,-0.003777897683903575 +karman_re50,sr,66,26.4,force,lower_fy,-0.0032190512865781784 +karman_re50,sr,67,26.8,force,front_fx,0.0017906129360198975 +karman_re50,sr,67,26.8,force,front_fy,-0.0007598432130180299 +karman_re50,sr,67,26.8,force,upper_fx,0.0015934188850224018 +karman_re50,sr,67,26.8,force,upper_fy,0.0033014777582138777 +karman_re50,sr,67,26.8,force,lower_fx,-0.0029628670308738947 +karman_re50,sr,67,26.8,force,lower_fy,-0.003367949742823839 +karman_re50,sr,68,27.2,force,front_fx,0.001122623565606773 +karman_re50,sr,68,27.2,force,front_fy,0.0002515892556402832 +karman_re50,sr,68,27.2,force,upper_fx,0.0009581903577782214 +karman_re50,sr,68,27.2,force,upper_fy,0.003154959063977003 +karman_re50,sr,68,27.2,force,lower_fx,-0.0019617124926298857 +karman_re50,sr,68,27.2,force,lower_fy,-0.003615632886067033 +karman_re50,sr,69,27.6,force,front_fx,0.0005566274630837142 +karman_re50,sr,69,27.6,force,front_fy,0.0011005717096850276 +karman_re50,sr,69,27.6,force,upper_fx,0.0002549432101659477 +karman_re50,sr,69,27.6,force,upper_fy,0.0030500399880111217 +karman_re50,sr,69,27.6,force,lower_fx,-0.0008831259328871965 +karman_re50,sr,69,27.6,force,lower_fy,-0.0038697237614542246 +karman_re50,sr,70,28.0,force,front_fx,0.000259733060374856 +karman_re50,sr,70,28.0,force,front_fy,0.0017939636018127203 +karman_re50,sr,70,28.0,force,upper_fx,-0.0005245108623057604 +karman_re50,sr,70,28.0,force,upper_fy,0.002961347345262766 +karman_re50,sr,70,28.0,force,lower_fx,0.00017519891844131052 +karman_re50,sr,70,28.0,force,lower_fy,-0.004083150532096624 +karman_re50,sr,71,28.4,force,front_fx,0.00029103763517923653 +karman_re50,sr,71,28.4,force,front_fy,0.002395831048488617 +karman_re50,sr,71,28.4,force,upper_fx,-0.0014075766084715724 +karman_re50,sr,71,28.4,force,upper_fy,0.0029205307364463806 +karman_re50,sr,71,28.4,force,lower_fx,0.0011224308982491493 +karman_re50,sr,71,28.4,force,lower_fy,-0.004263087175786495 +karman_re50,sr,72,28.8,force,front_fx,0.0006269823061302304 +karman_re50,sr,72,28.8,force,front_fy,0.002935592317953706 +karman_re50,sr,72,28.8,force,upper_fx,-0.002361154183745384 +karman_re50,sr,72,28.8,force,upper_fy,0.0029577005188912153 +karman_re50,sr,72,28.8,force,lower_fx,0.0018913382664322853 +karman_re50,sr,72,28.8,force,lower_fy,-0.004424549639225006 +karman_re50,sr,73,29.2,force,front_fx,0.0011826129630208015 +karman_re50,sr,73,29.2,force,front_fy,0.003370719961822033 +karman_re50,sr,73,29.2,force,upper_fx,-0.003284731414169073 +karman_re50,sr,73,29.2,force,upper_fy,0.0030498725827783346 +karman_re50,sr,73,29.2,force,lower_fx,0.002432367531582713 +karman_re50,sr,73,29.2,force,lower_fy,-0.004501563496887684 +karman_re50,sr,74,29.6,force,front_fx,0.001807962660677731 +karman_re50,sr,74,29.6,force,front_fy,0.0035932380706071854 +karman_re50,sr,74,29.6,force,upper_fx,-0.004029450006783009 +karman_re50,sr,74,29.6,force,upper_fy,0.0031497289892286062 +karman_re50,sr,74,29.6,force,lower_fx,0.002729346975684166 +karman_re50,sr,74,29.6,force,lower_fy,-0.004453048575669527 +karman_re50,sr,75,30.0,force,front_fx,0.0023137847892940044 +karman_re50,sr,75,30.0,force,front_fy,0.003472949843853712 +karman_re50,sr,75,30.0,force,upper_fx,-0.004421729128807783 +karman_re50,sr,75,30.0,force,upper_fy,0.0031970099080353975 +karman_re50,sr,75,30.0,force,lower_fx,0.00279115024022758 +karman_re50,sr,75,30.0,force,lower_fy,-0.004248935729265213 +karman_re50,sr,76,30.4,force,front_fx,0.002541931578889489 +karman_re50,sr,76,30.4,force,front_fy,0.0029266925994306803 +karman_re50,sr,76,30.4,force,upper_fx,-0.004374618176370859 +karman_re50,sr,76,30.4,force,upper_fy,0.003184487111866474 +karman_re50,sr,76,30.4,force,lower_fx,0.0026217354461550713 +karman_re50,sr,76,30.4,force,lower_fy,-0.003931446932256222 +karman_re50,sr,77,30.8,force,front_fx,0.0024036597460508347 +karman_re50,sr,77,30.8,force,front_fy,0.002030386123806238 +karman_re50,sr,77,30.8,force,upper_fx,-0.003916378132998943 +karman_re50,sr,77,30.8,force,upper_fy,0.0032002816442400217 +karman_re50,sr,77,30.8,force,lower_fx,0.002242566552013159 +karman_re50,sr,77,30.8,force,lower_fy,-0.0035969659220427275 +karman_re50,sr,78,31.2,force,front_fx,0.0019184049451723695 +karman_re50,sr,78,31.2,force,front_fy,0.0009638917981646955 +karman_re50,sr,78,31.2,force,upper_fx,-0.003146175527945161 +karman_re50,sr,78,31.2,force,upper_fy,0.003328514052554965 +karman_re50,sr,78,31.2,force,lower_fx,0.001707751420326531 +karman_re50,sr,78,31.2,force,lower_fy,-0.003337763249874115 +karman_re50,sr,79,31.6,force,front_fx,0.0012517822906374931 +karman_re50,sr,79,31.6,force,front_fy,-7.040438504191115e-05 +karman_re50,sr,79,31.6,force,upper_fx,-0.002167172497138381 +karman_re50,sr,79,31.6,force,upper_fy,0.003566307947039604 +karman_re50,sr,79,31.6,force,lower_fx,0.001083259005099535 +karman_re50,sr,79,31.6,force,lower_fy,-0.0031782204750925303 +karman_re50,sr,80,32.0,force,front_fx,0.0006450688815675676 +karman_re50,sr,80,32.0,force,front_fy,-0.0009506926871836185 +karman_re50,sr,80,32.0,force,upper_fx,-0.0010917417239397764 +karman_re50,sr,80,32.0,force,upper_fy,0.0038265117909759283 +karman_re50,sr,80,32.0,force,lower_fx,0.0003967798256780952 +karman_re50,sr,80,32.0,force,lower_fy,-0.0030684650409966707 +karman_re50,sr,81,32.4,force,front_fx,0.00029300543246790767 +karman_re50,sr,81,32.4,force,front_fy,-0.0016742837615311146 +karman_re50,sr,81,32.4,force,upper_fx,-1.9296003301860765e-05 +karman_re50,sr,81,32.4,force,upper_fy,0.004050732124596834 +karman_re50,sr,81,32.4,force,lower_fx,-0.00037018218426965177 +karman_re50,sr,81,32.4,force,lower_fy,-0.002980547957122326 +karman_re50,sr,82,32.8,force,front_fx,0.0002592439705040306 +karman_re50,sr,82,32.8,force,front_fy,-0.0022829638328403234 +karman_re50,sr,82,32.8,force,upper_fx,0.0009555805590935051 +karman_re50,sr,82,32.8,force,upper_fy,0.004232269711792469 +karman_re50,sr,82,32.8,force,lower_fx,-0.0012311027385294437 +karman_re50,sr,82,32.8,force,lower_fy,-0.0029228529892861843 +karman_re50,sr,83,33.2,force,front_fx,0.0005396951455622911 +karman_re50,sr,83,33.2,force,front_fy,-0.0028338164556771517 +karman_re50,sr,83,33.2,force,upper_fx,0.0017655016854405403 +karman_re50,sr,83,33.2,force,upper_fy,0.004395002033561468 +karman_re50,sr,83,33.2,force,lower_fx,-0.0021706027910113335 +karman_re50,sr,83,33.2,force,lower_fy,-0.002942988183349371 +karman_re50,sr,84,33.6,force,front_fx,0.0010653454810380936 +karman_re50,sr,84,33.6,force,front_fy,-0.0032940504606813192 +karman_re50,sr,84,33.6,force,upper_fx,0.0023477557115256786 +karman_re50,sr,84,33.6,force,upper_fy,0.0044984230771660805 +karman_re50,sr,84,33.6,force,lower_fx,-0.0031133710872381926 +karman_re50,sr,84,33.6,force,lower_fy,-0.003032092470675707 +karman_re50,sr,85,34.0,force,front_fx,0.0016884211217984557 +karman_re50,sr,85,34.0,force,front_fy,-0.0035684260074049234 +karman_re50,sr,85,34.0,force,upper_fx,0.0026888998690992594 +karman_re50,sr,85,34.0,force,upper_fy,0.0044738538563251495 +karman_re50,sr,85,34.0,force,lower_fx,-0.0039049226325005293 +karman_re50,sr,85,34.0,force,lower_fy,-0.0031362504232674837 +karman_re50,sr,86,34.4,force,front_fx,0.002231583232060075 +karman_re50,sr,86,34.4,force,front_fy,-0.0035207972396165133 +karman_re50,sr,86,34.4,force,upper_fx,0.002794118132442236 +karman_re50,sr,86,34.4,force,upper_fy,0.0043008457869291306 +karman_re50,sr,86,34.4,force,lower_fx,-0.0043771397322416306 +karman_re50,sr,86,34.4,force,lower_fy,-0.00319705274887383 +karman_re50,sr,87,34.8,force,front_fx,0.0025184773840010166 +karman_re50,sr,87,34.8,force,front_fy,-0.003048629267141223 +karman_re50,sr,87,34.8,force,upper_fx,0.002662212587893009 +karman_re50,sr,87,34.8,force,upper_fy,0.003992271143943071 +karman_re50,sr,87,34.8,force,lower_fx,-0.004403135273605585 +karman_re50,sr,87,34.8,force,lower_fy,-0.003189047798514366 +karman_re50,sr,88,35.2,force,front_fx,0.002450506202876568 +karman_re50,sr,88,35.2,force,front_fy,-0.0022047851234674454 +karman_re50,sr,88,35.2,force,upper_fx,0.002319854684174061 +karman_re50,sr,88,35.2,force,upper_fy,0.0036525109317153692 +karman_re50,sr,88,35.2,force,lower_fx,-0.004013532772660255 +karman_re50,sr,88,35.2,force,lower_fy,-0.003192422678694129 +karman_re50,sr,89,35.6,force,front_fx,0.002021537162363529 +karman_re50,sr,89,35.6,force,front_fy,-0.0011563592124730349 +karman_re50,sr,89,35.6,force,upper_fx,0.0018100873567163944 +karman_re50,sr,89,35.6,force,upper_fy,0.003380205249413848 +karman_re50,sr,89,35.6,force,lower_fx,-0.003295266069471836 +karman_re50,sr,89,35.6,force,lower_fy,-0.0033027983736246824 +karman_re50,sr,90,36.0,force,front_fx,0.0013697338290512562 +karman_re50,sr,90,36.0,force,front_fy,-0.00010375531564932317 +karman_re50,sr,90,36.0,force,upper_fx,0.0011958874529227614 +karman_re50,sr,90,36.0,force,upper_fy,0.003199636237695813 +karman_re50,sr,90,36.0,force,lower_fx,-0.0023435107432305813 +karman_re50,sr,90,36.0,force,lower_fy,-0.0035210035275667906 +karman_re50,sr,91,36.4,force,front_fx,0.0007356805144809186 +karman_re50,sr,91,36.4,force,front_fy,0.0008087083697319031 +karman_re50,sr,91,36.4,force,upper_fx,0.0005181083688512444 +karman_re50,sr,91,36.4,force,upper_fy,0.003083684714511037 +karman_re50,sr,91,36.4,force,lower_fx,-0.001279164687730372 +karman_re50,sr,91,36.4,force,lower_fy,-0.0037792378570884466 +karman_re50,sr,92,36.8,force,front_fx,0.00032923606340773404 +karman_re50,sr,92,36.8,force,front_fy,0.0015556970611214638 +karman_re50,sr,92,36.8,force,upper_fx,-0.00023160972341429442 +karman_re50,sr,92,36.8,force,upper_fy,0.0029898122884333134 +karman_re50,sr,92,36.8,force,lower_fx,-0.00020226002379786223 +karman_re50,sr,92,36.8,force,lower_fy,-0.004010956734418869 +karman_re50,sr,93,37.2,force,front_fx,0.0002417984651401639 +karman_re50,sr,93,37.2,force,front_fy,0.002183026634156704 +karman_re50,sr,93,37.2,force,upper_fx,-0.0010763179743662477 +karman_re50,sr,93,37.2,force,upper_fy,0.0029225207399576902 +karman_re50,sr,93,37.2,force,lower_fx,0.000797028187662363 +karman_re50,sr,93,37.2,force,lower_fy,-0.0041968682780861855 +karman_re50,sr,94,37.6,force,front_fx,0.0004742183955386281 +karman_re50,sr,94,37.6,force,front_fy,0.0027431140188127756 +karman_re50,sr,94,37.6,force,upper_fx,-0.0020064532291144133 +karman_re50,sr,94,37.6,force,upper_fy,0.002930476563051343 +karman_re50,sr,94,37.6,force,lower_fx,0.0016390788368880749 +karman_re50,sr,94,37.6,force,lower_fy,-0.004368321970105171 +karman_re50,sr,95,38.0,force,front_fx,0.0009642174700275064 +karman_re50,sr,95,38.0,force,front_fy,0.0032276443671435118 +karman_re50,sr,95,38.0,force,upper_fx,-0.0029578921385109425 +karman_re50,sr,95,38.0,force,upper_fy,0.0030112776439636946 +karman_re50,sr,95,38.0,force,lower_fx,0.002265399321913719 +karman_re50,sr,95,38.0,force,lower_fy,-0.0044860332272946835 +karman_re50,sr,96,38.4,force,front_fx,0.001583512406796217 +karman_re50,sr,96,38.4,force,front_fy,0.003545245621353388 +karman_re50,sr,96,38.4,force,upper_fx,-0.0037923017516732216 +karman_re50,sr,96,38.4,force,upper_fy,0.0031167748384177685 +karman_re50,sr,96,38.4,force,lower_fx,0.0026482120156288147 +karman_re50,sr,96,38.4,force,lower_fy,-0.004490332677960396 +karman_re50,sr,97,38.8,force,front_fx,0.0021543027833104134 +karman_re50,sr,97,38.8,force,front_fy,0.0035638841800391674 +karman_re50,sr,97,38.8,force,upper_fx,-0.004328661132603884 +karman_re50,sr,97,38.8,force,upper_fy,0.0031845790799707174 +karman_re50,sr,97,38.8,force,lower_fx,0.002792396815493703 +karman_re50,sr,97,38.8,force,lower_fy,-0.004336938727647066 +karman_re50,sr,98,39.2,force,front_fx,0.00249899597838521 +karman_re50,sr,98,39.2,force,front_fy,0.003171762451529503 +karman_re50,sr,98,39.2,force,upper_fx,-0.004442276433110237 +karman_re50,sr,98,39.2,force,upper_fy,0.003188326256349683 +karman_re50,sr,98,39.2,force,lower_fx,0.0027050762437283993 +karman_re50,sr,98,39.2,force,lower_fy,-0.00405169976875186 +karman_re50,sr,99,39.6,force,front_fx,0.002501714276149869 +karman_re50,sr,99,39.6,force,front_fy,0.002389306901022792 +karman_re50,sr,99,39.6,force,upper_fx,-0.004116717725992203 +karman_re50,sr,99,39.6,force,upper_fy,0.0031824365723878145 +karman_re50,sr,99,39.6,force,lower_fx,0.0024028378538787365 +karman_re50,sr,99,39.6,force,lower_fy,-0.0037049532402306795 +karman_re50,sr,100,40.0,force,front_fx,0.0021259149070829153 +karman_re50,sr,100,40.0,force,front_fy,0.0013564283726736903 +karman_re50,sr,100,40.0,force,upper_fx,-0.0034487671218812466 +karman_re50,sr,100,40.0,force,upper_fy,0.003269803710281849 +karman_re50,sr,100,40.0,force,lower_fx,0.0019145405385643244 +karman_re50,sr,100,40.0,force,lower_fy,-0.003419809974730015 +karman_re50,sr,101,40.4,force,front_fx,0.0014967898605391383 +karman_re50,sr,101,40.4,force,front_fy,0.00029092151089571416 +karman_re50,sr,101,40.4,force,upper_fx,-0.002532940823584795 +karman_re50,sr,101,40.4,force,upper_fy,0.0034734297078102827 +karman_re50,sr,101,40.4,force,lower_fx,0.0013165704440325499 +karman_re50,sr,101,40.4,force,lower_fy,-0.0032288730144500732 +karman_re50,sr,102,40.8,force,front_fx,0.0008401197846978903 +karman_re50,sr,102,40.8,force,front_fy,-0.0006527940859086812 +karman_re50,sr,102,40.8,force,upper_fx,-0.0014840496005490422 +karman_re50,sr,102,40.8,force,upper_fy,0.003733599092811346 +karman_re50,sr,102,40.8,force,lower_fx,0.0006490921950899065 +karman_re50,sr,102,40.8,force,lower_fy,-0.00310459709726274 +karman_re50,sr,103,41.2,force,front_fx,0.00038019020576030016 +karman_re50,sr,103,41.2,force,front_fy,-0.0014279058668762445 +karman_re50,sr,103,41.2,force,upper_fx,-0.00040051332325674593 +karman_re50,sr,103,41.2,force,upper_fy,0.0039670285768806934 +karman_re50,sr,103,41.2,force,lower_fx,-8.563382289139554e-05 +karman_re50,sr,103,41.2,force,lower_fy,-0.0030039800330996513 +karman_re50,sr,104,41.6,force,front_fx,0.00022720287961419672 +karman_re50,sr,104,41.6,force,front_fy,-0.0020800342317670584 +karman_re50,sr,104,41.6,force,upper_fx,0.0006108481902629137 +karman_re50,sr,104,41.6,force,upper_fy,0.004127528052777052 +karman_re50,sr,104,41.6,force,lower_fx,-0.0009393335203640163 +karman_re50,sr,104,41.6,force,lower_fy,-0.00290064699947834 +karman_re50,sr,105,42.0,force,front_fx,0.00040911859832704067 +karman_re50,sr,105,42.0,force,front_fy,-0.0026432874146848917 +karman_re50,sr,105,42.0,force,upper_fx,0.0014983286382630467 +karman_re50,sr,105,42.0,force,upper_fy,0.004341282416135073 +karman_re50,sr,105,42.0,force,lower_fx,-0.0018265933031216264 +karman_re50,sr,105,42.0,force,lower_fy,-0.002925075823441148 +karman_re50,sr,106,42.4,force,front_fx,0.0008587545016780496 +karman_re50,sr,106,42.4,force,front_fy,-0.0031431165989488363 +karman_re50,sr,106,42.4,force,upper_fx,0.0021693038288503885 +karman_re50,sr,106,42.4,force,upper_fy,0.00447685644030571 +karman_re50,sr,106,42.4,force,lower_fx,-0.002783756237477064 +karman_re50,sr,106,42.4,force,lower_fy,-0.002991616493090987 +karman_re50,sr,107,42.8,force,front_fx,0.0014653977705165744 +karman_re50,sr,107,42.8,force,front_fy,-0.0035002308432012796 +karman_re50,sr,107,42.8,force,upper_fx,0.002595945494249463 +karman_re50,sr,107,42.8,force,upper_fy,0.004501229152083397 +karman_re50,sr,107,42.8,force,lower_fx,-0.0036548154894262552 +karman_re50,sr,107,42.8,force,lower_fy,-0.0030968128703534603 +karman_re50,sr,108,43.2,force,front_fx,0.0020611665677279234 +karman_re50,sr,108,43.2,force,front_fy,-0.0035815343726426363 +karman_re50,sr,108,43.2,force,upper_fx,0.0027779387310147285 +karman_re50,sr,108,43.2,force,upper_fy,0.004371250979602337 +karman_re50,sr,108,43.2,force,lower_fx,-0.004264746326953173 +karman_re50,sr,108,43.2,force,lower_fy,-0.003175781574100256 +karman_re50,sr,109,43.6,force,front_fx,0.0024569369852542877 +karman_re50,sr,109,43.6,force,front_fy,-0.003270295914262533 +karman_re50,sr,109,43.6,force,upper_fx,0.0027339679654687643 +karman_re50,sr,109,43.6,force,upper_fy,0.004108033142983913 +karman_re50,sr,109,43.6,force,lower_fx,-0.004452073946595192 +karman_re50,sr,109,43.6,force,lower_fy,-0.0031930243130773306 +karman_re50,sr,110,44.0,force,front_fx,0.0025239286478608847 +karman_re50,sr,110,44.0,force,front_fy,-0.002549773780629039 +karman_re50,sr,110,44.0,force,upper_fx,0.002469385042786598 +karman_re50,sr,110,44.0,force,upper_fy,0.003770838025957346 +karman_re50,sr,110,44.0,force,lower_fx,-0.004201245494186878 +karman_re50,sr,110,44.0,force,lower_fy,-0.0031809480860829353 +karman_re50,sr,111,44.4,force,front_fx,0.0022143321111798286 +karman_re50,sr,111,44.4,force,front_fy,-0.0015467054909095168 +karman_re50,sr,111,44.4,force,upper_fx,0.0020118835382163525 +karman_re50,sr,111,44.4,force,upper_fy,0.003466589841991663 +karman_re50,sr,111,44.4,force,lower_fx,-0.0035836633760482073 +karman_re50,sr,111,44.4,force,lower_fy,-0.003244358114898205 +karman_re50,sr,112,44.8,force,front_fx,0.0016172698233276606 +karman_re50,sr,112,44.8,force,front_fy,-0.00047424371587112546 +karman_re50,sr,112,44.8,force,upper_fx,0.0014277802547439933 +karman_re50,sr,112,44.8,force,upper_fy,0.0032556536607444286 +karman_re50,sr,112,44.8,force,lower_fx,-0.0027068813797086477 +karman_re50,sr,112,44.8,force,lower_fy,-0.0034321527928113937 +karman_re50,sr,113,45.2,force,front_fx,0.0009477787534706295 +karman_re50,sr,113,45.2,force,front_fy,0.0004984050174243748 +karman_re50,sr,113,45.2,force,upper_fx,0.0007695049280300736 +karman_re50,sr,113,45.2,force,upper_fy,0.0031234906055033207 +karman_re50,sr,113,45.2,force,lower_fx,-0.0016746532637625933 +karman_re50,sr,113,45.2,force,lower_fy,-0.0036874006036669016 +karman_re50,sr,114,45.6,force,front_fx,0.00044419444748200476 +karman_re50,sr,114,45.6,force,front_fy,0.001300235977396369 +karman_re50,sr,114,45.6,force,upper_fx,4.290241849957965e-05 +karman_re50,sr,114,45.6,force,upper_fy,0.0030169731471687555 +karman_re50,sr,114,45.6,force,lower_fx,-0.0005734064034186304 +karman_re50,sr,114,45.6,force,lower_fy,-0.003928216639906168 +karman_re50,sr,115,46.0,force,front_fx,0.00023555217194370925 +karman_re50,sr,115,46.0,force,front_fy,0.001963365124538541 +karman_re50,sr,115,46.0,force,upper_fx,-0.0007589482702314854 +karman_re50,sr,115,46.0,force,upper_fy,0.0029361846391111612 +karman_re50,sr,115,46.0,force,lower_fx,0.0004484312958084047 +karman_re50,sr,115,46.0,force,lower_fy,-0.004128778353333473 +karman_re50,sr,116,46.4,force,front_fx,0.000358735240297392 +karman_re50,sr,116,46.4,force,front_fy,0.002545339986681938 +karman_re50,sr,116,46.4,force,upper_fx,-0.0016619345406070352 +karman_re50,sr,116,46.4,force,upper_fy,0.002916192403063178 +karman_re50,sr,116,46.4,force,lower_fx,0.0013595005730167031 +karman_re50,sr,116,46.4,force,lower_fy,-0.004310537129640579 +karman_re50,sr,117,46.8,force,front_fx,0.0007657507085241377 +karman_re50,sr,117,46.8,force,front_fy,0.003065102966502309 +karman_re50,sr,117,46.8,force,upper_fx,-0.002619677223265171 +karman_re50,sr,117,46.8,force,upper_fy,0.0029772166162729263 +karman_re50,sr,117,46.8,force,lower_fx,0.0020697975996881723 +karman_re50,sr,117,46.8,force,lower_fy,-0.004455744754523039 +karman_re50,sr,118,47.2,force,front_fx,0.0013576082419604063 +karman_re50,sr,118,47.2,force,front_fy,0.0034592074807733297 +karman_re50,sr,118,47.2,force,upper_fx,-0.003518766490742564 +karman_re50,sr,118,47.2,force,upper_fy,0.003083219286054373 +karman_re50,sr,118,47.2,force,lower_fx,0.002538477536290884 +karman_re50,sr,118,47.2,force,lower_fy,-0.004506004974246025 +karman_re50,sr,119,47.6,force,front_fx,0.001965011702850461 +karman_re50,sr,119,47.6,force,front_fy,0.003600672585889697 +karman_re50,sr,119,47.6,force,upper_fx,-0.004182830918580294 +karman_re50,sr,119,47.6,force,upper_fy,0.00316707044839859 +karman_re50,sr,119,47.6,force,lower_fx,0.0027646655216813087 +karman_re50,sr,119,47.6,force,lower_fy,-0.004409011919051409 +karman_re50,sr,120,48.0,force,front_fx,0.002409286331385374 +karman_re50,sr,120,48.0,force,front_fy,0.003364105708897114 +karman_re50,sr,120,48.0,force,upper_fx,-0.004455887246876955 +karman_re50,sr,120,48.0,force,upper_fy,0.003188361180946231 +karman_re50,sr,120,48.0,force,lower_fx,0.002761753275990486 +karman_re50,sr,120,48.0,force,lower_fy,-0.004163555335253477 +karman_re50,sr,121,48.4,force,front_fx,0.0025431010872125626 +karman_re50,sr,121,48.4,force,front_fy,0.0027075838297605515 +karman_re50,sr,121,48.4,force,upper_fx,-0.0042827073484659195 +karman_re50,sr,121,48.4,force,upper_fy,0.003176293335855007 +karman_re50,sr,121,48.4,force,lower_fx,0.00253484258428216 +karman_re50,sr,121,48.4,force,lower_fy,-0.0038328340742737055 +karman_re50,sr,122,48.8,force,front_fx,0.002304206835106015 +karman_re50,sr,122,48.8,force,front_fy,0.0017468406585976481 +karman_re50,sr,122,48.8,force,upper_fx,-0.0037296763621270657 +karman_re50,sr,122,48.8,force,upper_fy,0.0032296115532517433 +karman_re50,sr,122,48.8,force,lower_fx,0.0021118316799402237 +karman_re50,sr,122,48.8,force,lower_fy,-0.0035192931536585093 +karman_re50,sr,123,49.2,force,front_fx,0.0017432330641895533 +karman_re50,sr,123,49.2,force,front_fy,0.0006675792974419892 +karman_re50,sr,123,49.2,force,upper_fx,-0.002885570516809821 +karman_re50,sr,123,49.2,force,upper_fy,0.003393607446923852 +karman_re50,sr,123,49.2,force,lower_fx,0.0015422740252688527 +karman_re50,sr,123,49.2,force,lower_fy,-0.003288271836936474 +karman_re50,sr,124,49.6,force,front_fx,0.0010658015962690115 +karman_re50,sr,124,49.6,force,front_fy,-0.00032935678609646857 +karman_re50,sr,124,49.6,force,upper_fx,-0.0018734558252617717 +karman_re50,sr,124,49.6,force,upper_fy,0.003641872899606824 +karman_re50,sr,124,49.6,force,lower_fx,0.0008958668913692236 +karman_re50,sr,124,49.6,force,lower_fy,-0.0031443117186427116 +karman_re50,sr,125,50.0,force,front_fx,0.000513006467372179 +karman_re50,sr,125,50.0,force,front_fy,-0.0011632491368800402 +karman_re50,sr,125,50.0,force,upper_fx,-0.0007922447985038161 +karman_re50,sr,125,50.0,force,upper_fy,0.003884990466758609 +karman_re50,sr,125,50.0,force,lower_fx,0.00018779179663397372 +karman_re50,sr,125,50.0,force,lower_fy,-0.0030364664271473885 +karman_re50,sr,126,50.4,force,front_fx,0.00024722423404455185 +karman_re50,sr,126,50.4,force,front_fy,-0.0018484863685443997 +karman_re50,sr,126,50.4,force,upper_fx,0.0002633775002323091 +karman_re50,sr,126,50.4,force,upper_fy,0.0040918863378465176 +karman_re50,sr,126,50.4,force,lower_fx,-0.0006014350801706314 +karman_re50,sr,126,50.4,force,lower_fy,-0.00294830952771008 +karman_re50,sr,127,50.8,force,front_fx,0.00031023696647025645 +karman_re50,sr,127,50.8,force,front_fy,-0.00244291964918375 +karman_re50,sr,127,50.8,force,upper_fx,0.0012033403618261218 +karman_re50,sr,127,50.8,force,upper_fy,0.00427808566018939 +karman_re50,sr,127,50.8,force,lower_fx,-0.0014846123522147536 +karman_re50,sr,127,50.8,force,lower_fy,-0.0029168841429054737 +karman_re50,sr,128,51.2,force,front_fx,0.0006701711099594831 +karman_re50,sr,128,51.2,force,front_fy,-0.002974092960357666 +karman_re50,sr,128,51.2,force,upper_fx,0.001954300096258521 +karman_re50,sr,128,51.2,force,upper_fy,0.00443572923541069 +karman_re50,sr,128,51.2,force,lower_fx,-0.0024362073745578527 +karman_re50,sr,128,51.2,force,lower_fy,-0.0029648991767317057 +karman_re50,sr,129,51.6,force,front_fx,0.0012362223351374269 +karman_re50,sr,129,51.6,force,front_fy,-0.003396060084924102 +karman_re50,sr,129,51.6,force,upper_fx,0.0024682567454874516 +karman_re50,sr,129,51.6,force,upper_fy,0.004509059712290764 +karman_re50,sr,129,51.6,force,lower_fx,-0.0033558360300958157 +karman_re50,sr,129,51.6,force,lower_fy,-0.0030640712939202785 +karman_re50,sr,130,52.0,force,front_fx,0.001853911322541535 +karman_re50,sr,130,52.0,force,front_fy,-0.0035965582355856895 +karman_re50,sr,130,52.0,force,upper_fx,0.0027374126948416233 +karman_re50,sr,130,52.0,force,upper_fy,0.0044390177354216576 +karman_re50,sr,130,52.0,force,lower_fx,-0.00408070906996727 +karman_re50,sr,130,52.0,force,lower_fy,-0.0031552680302411318 +karman_re50,sr,131,52.4,force,front_fx,0.002325559500604868 +karman_re50,sr,131,52.4,force,front_fy,-0.0034287050366401672 +karman_re50,sr,131,52.4,force,upper_fx,0.002777291228994727 +karman_re50,sr,131,52.4,force,upper_fy,0.0042183892801404 +karman_re50,sr,131,52.4,force,lower_fx,-0.004434897098690271 +karman_re50,sr,131,52.4,force,lower_fy,-0.0031878873705863953 +karman_re50,sr,132,52.8,force,front_fx,0.002544248942285776 +karman_re50,sr,132,52.8,force,front_fy,-0.0028503108769655228 +karman_re50,sr,132,52.8,force,upper_fx,0.00258920737542212 +karman_re50,sr,132,52.8,force,upper_fy,0.0038930410519242287 +karman_re50,sr,132,52.8,force,lower_fx,-0.004337727557867765 +karman_re50,sr,132,52.8,force,lower_fy,-0.0031802046578377485 +karman_re50,sr,133,53.2,force,front_fx,0.0023725698702037334 +karman_re50,sr,133,53.2,force,front_fy,-0.00193008070345968 +karman_re50,sr,133,53.2,force,upper_fx,0.0021985324565321207 +karman_re50,sr,133,53.2,force,upper_fy,0.00357177946716547 +karman_re50,sr,133,53.2,force,lower_fx,-0.003846928244456649 +karman_re50,sr,133,53.2,force,lower_fy,-0.003216711338609457 +karman_re50,sr,134,53.6,force,front_fx,0.0018563346238806844 +karman_re50,sr,134,53.6,force,front_fy,-0.0008591838413849473 +karman_re50,sr,134,53.6,force,upper_fx,0.001650586142204702 +karman_re50,sr,134,53.6,force,upper_fy,0.003322041593492031 +karman_re50,sr,134,53.6,force,lower_fx,-0.003045314457267523 +karman_re50,sr,134,53.6,force,lower_fy,-0.003358784131705761 +karman_re50,sr,135,54.0,force,front_fx,0.0011838244972750545 +karman_re50,sr,135,54.0,force,front_fy,0.00016343235620297492 +karman_re50,sr,135,54.0,force,upper_fx,0.0010160403326153755 +karman_re50,sr,135,54.0,force,upper_fy,0.0031718469690531492 +karman_re50,sr,135,54.0,force,lower_fx,-0.0020609425846487284 +karman_re50,sr,135,54.0,force,lower_fy,-0.0035988015588372946 +karman_re50,sr,136,54.4,force,front_fx,0.00059196149231866 +karman_re50,sr,136,54.4,force,front_fy,0.0010279349517077208 +karman_re50,sr,136,54.4,force,upper_fx,0.00031695517827756703 +karman_re50,sr,136,54.4,force,upper_fy,0.003053510095924139 +karman_re50,sr,136,54.4,force,lower_fx,-0.0009838626720011234 +karman_re50,sr,136,54.4,force,lower_fy,-0.0038419857155531645 +karman_re50,sr,137,54.8,force,front_fx,0.0002702285419218242 +karman_re50,sr,137,54.8,force,front_fy,0.0017363674705848098 +karman_re50,sr,137,54.8,force,upper_fx,-0.0004555275954771787 +karman_re50,sr,137,54.8,force,upper_fy,0.0029590909834951162 +karman_re50,sr,137,54.8,force,lower_fx,8.162605809047818e-05 +karman_re50,sr,137,54.8,force,lower_fy,-0.004054884426295757 +karman_re50,sr,138,55.2,force,front_fx,0.0002785331744235009 +karman_re50,sr,138,55.2,force,front_fy,0.002342919586226344 +karman_re50,sr,138,55.2,force,upper_fx,-0.0013166143326088786 +karman_re50,sr,138,55.2,force,upper_fy,0.002916218712925911 +karman_re50,sr,138,55.2,force,lower_fx,0.0010543171083554626 +karman_re50,sr,138,55.2,force,lower_fy,-0.004245889373123646 +karman_re50,sr,139,55.6,force,front_fx,0.0005887544248253107 +karman_re50,sr,139,55.6,force,front_fy,0.0028890385292470455 +karman_re50,sr,139,55.6,force,upper_fx,-0.002267199568450451 +karman_re50,sr,139,55.6,force,upper_fy,0.0029539340175688267 +karman_re50,sr,139,55.6,force,lower_fx,0.001840204931795597 +karman_re50,sr,139,55.6,force,lower_fy,-0.004417961463332176 +karman_re50,sr,140,56.0,force,front_fx,0.0011279855389147997 +karman_re50,sr,140,56.0,force,front_fy,0.0033349746372550726 +karman_re50,sr,140,56.0,force,upper_fx,-0.003203451866284013 +karman_re50,sr,140,56.0,force,upper_fy,0.003044991521164775 +karman_re50,sr,140,56.0,force,lower_fx,0.002396117663010955 +karman_re50,sr,140,56.0,force,lower_fy,-0.00450551975518465 +karman_re50,sr,141,56.4,force,front_fx,0.001750944647938013 +karman_re50,sr,141,56.4,force,front_fy,0.0035842943470925093 +karman_re50,sr,141,56.4,force,upper_fx,-0.003978752065449953 +karman_re50,sr,141,56.4,force,upper_fy,0.003141740569844842 +karman_re50,sr,141,56.4,force,lower_fx,0.0027067307382822037 +karman_re50,sr,141,56.4,force,lower_fy,-0.004462927579879761 +karman_re50,sr,142,56.8,force,front_fx,0.0022744066081941128 +karman_re50,sr,142,56.8,force,front_fy,0.0034973779693245888 +karman_re50,sr,142,56.8,force,upper_fx,-0.004408062901347876 +karman_re50,sr,142,56.8,force,upper_fy,0.0031866503413766623 +karman_re50,sr,142,56.8,force,lower_fx,0.002785872435197234 +karman_re50,sr,142,56.8,force,lower_fy,-0.004265152383595705 +karman_re50,sr,143,57.2,force,front_fx,0.0025349208153784275 +karman_re50,sr,143,57.2,force,front_fy,0.002987546380609274 +karman_re50,sr,143,57.2,force,upper_fx,-0.004392426460981369 +karman_re50,sr,143,57.2,force,upper_fy,0.0031789096537977457 +karman_re50,sr,143,57.2,force,lower_fx,0.0026405074167996645 +karman_re50,sr,143,57.2,force,lower_fy,-0.003954949788749218 +karman_re50,sr,144,57.6,force,front_fx,0.0024314371403306723 +karman_re50,sr,144,57.6,force,front_fy,0.0021138046868145466 +karman_re50,sr,144,57.6,force,upper_fx,-0.003959458786994219 +karman_re50,sr,144,57.6,force,upper_fy,0.003197646699845791 +karman_re50,sr,144,57.6,force,lower_fx,0.002282349392771721 +karman_re50,sr,144,57.6,force,lower_fy,-0.0036212841514497995 +karman_re50,sr,145,58.0,force,front_fx,0.0019711493514478207 +karman_re50,sr,145,58.0,force,front_fy,0.0010536075569689274 +karman_re50,sr,145,58.0,force,upper_fx,-0.003212514566257596 +karman_re50,sr,145,58.0,force,upper_fy,0.003321764525026083 +karman_re50,sr,145,58.0,force,lower_fx,0.0017549532931298018 +karman_re50,sr,145,58.0,force,lower_fy,-0.0033607587683945894 +karman_re50,sr,146,58.4,force,front_fx,0.0013050308916717768 +karman_re50,sr,146,58.4,force,front_fy,1.3361203855311032e-05 +karman_re50,sr,146,58.4,force,upper_fx,-0.002249278360977769 +karman_re50,sr,146,58.4,force,upper_fy,0.0035511357709765434 +karman_re50,sr,146,58.4,force,lower_fx,0.0011356811737641692 +karman_re50,sr,146,58.4,force,lower_fy,-0.0031910166144371033 +karman_re50,sr,147,58.8,force,front_fx,0.0006827331962995231 +karman_re50,sr,147,58.8,force,front_fy,-0.0008831111481413245 +karman_re50,sr,147,58.8,force,upper_fx,-0.0011833878234028816 +karman_re50,sr,147,58.8,force,upper_fy,0.003801003796979785 +karman_re50,sr,147,58.8,force,lower_fx,0.0004477233160287142 +karman_re50,sr,147,58.8,force,lower_fy,-0.0030730576254427433 +karman_re50,sr,148,59.2,force,front_fx,0.00030534318648278713 +karman_re50,sr,148,59.2,force,front_fy,-0.0016174293123185635 +karman_re50,sr,148,59.2,force,upper_fx,-0.00010766400373540819 +karman_re50,sr,148,59.2,force,upper_fy,0.004023291636258364 +karman_re50,sr,148,59.2,force,lower_fx,-0.00030931984656490386 +karman_re50,sr,148,59.2,force,lower_fy,-0.0029775656294077635 +karman_re50,sr,149,59.6,force,front_fx,0.00025157176423817873 +karman_re50,sr,149,59.6,force,front_fy,-0.002236355561763048 +karman_re50,sr,149,59.6,force,upper_fx,0.0008845554548315704 +karman_re50,sr,149,59.6,force,upper_fy,0.004211234860122204 +karman_re50,sr,149,59.6,force,lower_fx,-0.0011564444284886122 +karman_re50,sr,149,59.6,force,lower_fy,-0.0029179591219872236 +karman_re50,sr,150,60.0,force,front_fx,0.0005120860878378153 +karman_re50,sr,150,60.0,force,front_fy,-0.0027919451240450144 +karman_re50,sr,150,60.0,force,upper_fx,0.0017115229275077581 +karman_re50,sr,150,60.0,force,upper_fy,0.004385633859783411 +karman_re50,sr,150,60.0,force,lower_fx,-0.002089097863063216 +karman_re50,sr,150,60.0,force,lower_fy,-0.002941563492640853 +karman_re50,sr,151,60.4,force,front_fx,0.0010181060060858727 +karman_re50,sr,151,60.4,force,front_fy,-0.0032635489478707314 +karman_re50,sr,151,60.4,force,upper_fx,0.002312866970896721 +karman_re50,sr,151,60.4,force,upper_fy,0.004498669877648354 +karman_re50,sr,151,60.4,force,lower_fx,-0.003037194022908807 +karman_re50,sr,151,60.4,force,lower_fy,-0.003027857281267643 +karman_re50,sr,152,60.8,force,front_fx,0.0016394117847085 +karman_re50,sr,152,60.8,force,front_fy,-0.00356006296351552 +karman_re50,sr,152,60.8,force,upper_fx,0.002663952764123678 +karman_re50,sr,152,60.8,force,upper_fy,0.004482361953705549 +karman_re50,sr,152,60.8,force,lower_fx,-0.00386014929972589 +karman_re50,sr,152,60.8,force,lower_fy,-0.003128219163045287 +karman_re50,sr,153,61.2,force,front_fx,0.00219129491597414 +karman_re50,sr,153,61.2,force,front_fy,-0.0035396944731473923 +karman_re50,sr,153,61.2,force,upper_fx,0.002786622615531087 +karman_re50,sr,153,61.2,force,upper_fy,0.004311727359890938 +karman_re50,sr,153,61.2,force,lower_fx,-0.004359296523034573 +karman_re50,sr,153,61.2,force,lower_fy,-0.0031811378430575132 +karman_re50,sr,154,61.6,force,front_fx,0.0025103844236582518 +karman_re50,sr,154,61.6,force,front_fy,-0.003107883268967271 +karman_re50,sr,154,61.6,force,upper_fx,0.002682138467207551 +karman_re50,sr,154,61.6,force,upper_fy,0.004014990758150816 +karman_re50,sr,154,61.6,force,lower_fx,-0.004426036030054092 +karman_re50,sr,154,61.6,force,lower_fy,-0.0031802442390471697 +karman_re50,sr,155,62.0,force,front_fx,0.0024770956952124834 +karman_re50,sr,155,62.0,force,front_fy,-0.0022892646957188845 +karman_re50,sr,155,62.0,force,upper_fx,0.002361300867050886 +karman_re50,sr,155,62.0,force,upper_fy,0.003679310902953148 +karman_re50,sr,155,62.0,force,lower_fx,-0.00406276248395443 +karman_re50,sr,155,62.0,force,lower_fy,-0.0031890871468931437 +karman_re50,sr,156,62.4,force,front_fx,0.0020737983286380768 +karman_re50,sr,156,62.4,force,front_fy,-0.001248811953701079 +karman_re50,sr,156,62.4,force,upper_fx,0.0018625594675540924 +karman_re50,sr,156,62.4,force,upper_fy,0.0034004219342023134 +karman_re50,sr,156,62.4,force,lower_fx,-0.0033606484066694975 +karman_re50,sr,156,62.4,force,lower_fy,-0.003294214606285095 +karman_re50,sr,157,62.8,force,front_fx,0.0014289312530308962 +karman_re50,sr,157,62.8,force,front_fy,-0.00019281698041595519 +karman_re50,sr,157,62.8,force,upper_fx,0.0012520727468654513 +karman_re50,sr,157,62.8,force,upper_fy,0.0032172752544283867 +karman_re50,sr,157,62.8,force,lower_fx,-0.0024311630986630917 +karman_re50,sr,157,62.8,force,lower_fy,-0.0035067445132881403 +karman_re50,sr,158,63.2,force,front_fx,0.0007812677067704499 +karman_re50,sr,158,63.2,force,front_fy,0.0007358895381912589 +karman_re50,sr,158,63.2,force,upper_fx,0.0005751877324655652 +karman_re50,sr,158,63.2,force,upper_fy,0.0030965888872742653 +karman_re50,sr,158,63.2,force,lower_fx,-0.001379682100377977 +karman_re50,sr,158,63.2,force,lower_fy,-0.003759770654141903 +karman_re50,sr,159,63.6,force,front_fx,0.0003499472513794899 +karman_re50,sr,159,63.6,force,front_fy,0.001494591822847724 +karman_re50,sr,159,63.6,force,upper_fx,-0.00016867395606823266 +karman_re50,sr,159,63.6,force,upper_fy,0.0029868597630411386 +karman_re50,sr,159,63.6,force,lower_fx,-0.0002981454017572105 +karman_re50,sr,159,63.6,force,lower_fy,-0.003978346474468708 +karman_re50,sr,160,64.0,force,front_fx,0.0002370748989051208 +karman_re50,sr,160,64.0,force,front_fy,0.0021320688538253307 +karman_re50,sr,160,64.0,force,upper_fx,-0.0009977316949516535 +karman_re50,sr,160,64.0,force,upper_fy,0.0029218075796961784 +karman_re50,sr,160,64.0,force,lower_fx,0.0007170318276621401 +karman_re50,sr,160,64.0,force,lower_fy,-0.004176286514848471 +karman_re50,sr,161,64.4,force,front_fx,0.0004448422114364803 +karman_re50,sr,161,64.4,force,front_fy,0.002696727402508259 +karman_re50,sr,161,64.4,force,upper_fx,-0.0019165505655109882 +karman_re50,sr,161,64.4,force,upper_fy,0.0029296744614839554 +karman_re50,sr,161,64.4,force,lower_fx,0.0015793696511536837 +karman_re50,sr,161,64.4,force,lower_fy,-0.004357907921075821 +karman_re50,sr,162,64.8,force,front_fx,0.0009147450909949839 +karman_re50,sr,162,64.8,force,front_fy,0.0031897604931145906 +karman_re50,sr,162,64.8,force,upper_fx,-0.002871992066502571 +karman_re50,sr,162,64.8,force,upper_fy,0.003009304404258728 +karman_re50,sr,162,64.8,force,lower_fx,0.002224163617938757 +karman_re50,sr,162,64.8,force,lower_fy,-0.004486395511776209 +karman_re50,sr,163,65.2,force,front_fx,0.0015275889309123158 +karman_re50,sr,163,65.2,force,front_fy,0.003530581947416067 +karman_re50,sr,163,65.2,force,upper_fx,-0.0037341031711548567 +karman_re50,sr,163,65.2,force,upper_fy,0.003115016268566251 +karman_re50,sr,163,65.2,force,lower_fx,0.0026249708607792854 +karman_re50,sr,163,65.2,force,lower_fy,-0.004505212418735027 +karman_re50,sr,164,65.6,force,front_fx,0.002109230263158679 +karman_re50,sr,164,65.6,force,front_fy,0.003581664292141795 +karman_re50,sr,164,65.6,force,upper_fx,-0.004308701492846012 +karman_re50,sr,164,65.6,force,upper_fy,0.0031798516865819693 +karman_re50,sr,164,65.6,force,lower_fx,0.002785168820992112 +karman_re50,sr,164,65.6,force,lower_fy,-0.004357035271823406 +karman_re50,sr,165,66.0,force,front_fx,0.0024812810588628054 +karman_re50,sr,165,66.0,force,front_fy,0.003217687364667654 +karman_re50,sr,165,66.0,force,upper_fx,-0.004452292807400227 +karman_re50,sr,165,66.0,force,upper_fy,0.003182829823344946 +karman_re50,sr,165,66.0,force,lower_fx,0.0027170060202479362 +karman_re50,sr,165,66.0,force,lower_fy,-0.004072626121342182 +karman_re50,sr,166,66.4,force,front_fx,0.002519923495128751 +karman_re50,sr,166,66.4,force,front_fy,0.0024663228541612625 +karman_re50,sr,166,66.4,force,upper_fx,-0.00416499562561512 +karman_re50,sr,166,66.4,force,upper_fy,0.0031844282057136297 +karman_re50,sr,166,66.4,force,lower_fx,0.0024387880694121122 +karman_re50,sr,166,66.4,force,lower_fy,-0.00374015630222857 +karman_re50,sr,167,66.8,force,front_fx,0.0021732423920184374 +karman_re50,sr,167,66.8,force,front_fy,0.0014465127605944872 +karman_re50,sr,167,66.8,force,upper_fx,-0.0035103007685393095 +karman_re50,sr,167,66.8,force,upper_fy,0.003265396924689412 +karman_re50,sr,167,66.8,force,lower_fx,0.001965754199773073 +karman_re50,sr,167,66.8,force,lower_fy,-0.003444337286055088 +karman_re50,sr,168,67.2,force,front_fx,0.0015550671378150582 +karman_re50,sr,168,67.2,force,front_fy,0.0003767989983316511 +karman_re50,sr,168,67.2,force,upper_fx,-0.0026150376070290804 +karman_re50,sr,168,67.2,force,upper_fy,0.003461817279458046 +karman_re50,sr,168,67.2,force,lower_fx,0.0013689002953469753 +karman_re50,sr,168,67.2,force,lower_fy,-0.00324553856626153 +karman_re50,sr,169,67.6,force,front_fx,0.0008858772343955934 +karman_re50,sr,169,67.6,force,front_fy,-0.0005788732087239623 +karman_re50,sr,169,67.6,force,upper_fx,-0.0015775730134919286 +karman_re50,sr,169,67.6,force,upper_fy,0.0037106703966856003 +karman_re50,sr,169,67.6,force,lower_fx,0.0007025681552477181 +karman_re50,sr,169,67.6,force,lower_fy,-0.0031129703857004642 +karman_re50,sr,170,68.0,force,front_fx,0.0004049852432217449 +karman_re50,sr,170,68.0,force,front_fy,-0.0013669590698555112 +karman_re50,sr,170,68.0,force,upper_fx,-0.0004942653467878699 +karman_re50,sr,170,68.0,force,upper_fy,0.003941388335078955 +karman_re50,sr,170,68.0,force,lower_fx,-2.6295008865417913e-05 +karman_re50,sr,170,68.0,force,lower_fy,-0.003005045000463724 +karman_re50,sr,171,68.4,force,front_fx,0.00023269472876563668 +karman_re50,sr,171,68.4,force,front_fy,-0.0020209425128996372 +karman_re50,sr,171,68.4,force,upper_fx,0.0005401877569966018 +karman_re50,sr,171,68.4,force,upper_fy,0.004142523743212223 +karman_re50,sr,171,68.4,force,lower_fx,-0.0008377725025638938 +karman_re50,sr,171,68.4,force,lower_fy,-0.002927960129454732 +karman_re50,sr,172,68.8,force,front_fx,0.00038564219721592963 +karman_re50,sr,172,68.8,force,front_fy,-0.0026007965207099915 +karman_re50,sr,172,68.8,force,upper_fx,0.0014391058357432485 +karman_re50,sr,172,68.8,force,upper_fy,0.004333116114139557 +karman_re50,sr,172,68.8,force,lower_fx,-0.001744340406730771 +karman_re50,sr,172,68.8,force,lower_fy,-0.002926651854068041 +karman_re50,sr,173,69.2,force,front_fx,0.0008148747147060931 +karman_re50,sr,173,69.2,force,front_fy,-0.003106036689132452 +karman_re50,sr,173,69.2,force,upper_fx,0.0021252676378935575 +karman_re50,sr,173,69.2,force,upper_fy,0.00447081821039319 +karman_re50,sr,173,69.2,force,lower_fx,-0.0026979593094438314 +karman_re50,sr,173,69.2,force,lower_fy,-0.0029930751770734787 +karman_re50,sr,174,69.6,force,front_fx,0.0014114407822489738 +karman_re50,sr,174,69.6,force,front_fy,-0.003481148276478052 +karman_re50,sr,174,69.6,force,upper_fx,0.0025661077816039324 +karman_re50,sr,174,69.6,force,upper_fy,0.004506755154579878 +karman_re50,sr,174,69.6,force,lower_fx,-0.003587692277505994 +karman_re50,sr,174,69.6,force,lower_fy,-0.00309561425819993 +karman_re50,sr,175,70.0,force,front_fx,0.002010185504332185 +karman_re50,sr,175,70.0,force,front_fy,-0.0035923784598708153 +karman_re50,sr,175,70.0,force,upper_fx,0.002767737489193678 +karman_re50,sr,175,70.0,force,upper_fy,0.004389564972370863 +karman_re50,sr,175,70.0,force,lower_fx,-0.00422638189047575 +karman_re50,sr,175,70.0,force,lower_fy,-0.0031678348314017057 +karman_re50,sr,176,70.4,force,front_fx,0.0024242105428129435 +karman_re50,sr,176,70.4,force,front_fy,-0.0033135602716356516 +karman_re50,sr,176,70.4,force,upper_fx,0.0027442392893135548 +karman_re50,sr,176,70.4,force,upper_fy,0.004130410961806774 +karman_re50,sr,176,70.4,force,lower_fx,-0.004454845562577248 +karman_re50,sr,176,70.4,force,lower_fy,-0.0031835518311709166 +karman_re50,sr,177,70.8,force,front_fx,0.002534400438889861 +karman_re50,sr,177,70.8,force,front_fy,-0.0026216679252684116 +karman_re50,sr,177,70.8,force,upper_fx,0.0025009261444211006 +karman_re50,sr,177,70.8,force,upper_fy,0.003797917626798153 +karman_re50,sr,177,70.8,force,lower_fx,-0.004237258341163397 +karman_re50,sr,177,70.8,force,lower_fy,-0.0031793287489563227 +karman_re50,sr,178,71.2,force,front_fx,0.0022578262723982334 +karman_re50,sr,178,71.2,force,front_fy,-0.0016372714890167117 +karman_re50,sr,178,71.2,force,upper_fx,0.002060370985418558 +karman_re50,sr,178,71.2,force,upper_fy,0.0034913280978798866 +karman_re50,sr,178,71.2,force,lower_fx,-0.003643527626991272 +karman_re50,sr,178,71.2,force,lower_fy,-0.003243941580876708 +karman_re50,sr,179,71.6,force,front_fx,0.001678411033935845 +karman_re50,sr,179,71.6,force,front_fy,-0.0005651453393511474 +karman_re50,sr,179,71.6,force,upper_fx,0.0014836362097412348 +karman_re50,sr,179,71.6,force,upper_fy,0.0032793483696877956 +karman_re50,sr,179,71.6,force,lower_fx,-0.0027886072639375925 +karman_re50,sr,179,71.6,force,lower_fy,-0.003427143208682537 +karman_re50,sr,180,72.0,force,front_fx,0.000994902802631259 +karman_re50,sr,180,72.0,force,front_fy,0.00041688489727675915 +karman_re50,sr,180,72.0,force,upper_fx,0.0008244810742326081 +karman_re50,sr,180,72.0,force,upper_fy,0.003134628292173147 +karman_re50,sr,180,72.0,force,lower_fx,-0.0017667472129687667 +karman_re50,sr,180,72.0,force,lower_fy,-0.00366646284237504 +karman_re50,sr,181,72.4,force,front_fx,0.00046989190741442144 +karman_re50,sr,181,72.4,force,front_fy,0.0012373633217066526 +karman_re50,sr,181,72.4,force,upper_fx,0.00010833343549165875 +karman_re50,sr,181,72.4,force,upper_fy,0.003022212767973542 +karman_re50,sr,181,72.4,force,lower_fx,-0.000686092593241483 +karman_re50,sr,181,72.4,force,lower_fy,-0.0039007188752293587 +karman_re50,sr,182,72.8,force,front_fx,0.00023946813598740846 +karman_re50,sr,182,72.8,force,front_fy,0.0019115782342851162 +karman_re50,sr,182,72.8,force,upper_fx,-0.0006861836300231516 +karman_re50,sr,182,72.8,force,upper_fy,0.0029373690485954285 +karman_re50,sr,182,72.8,force,lower_fx,0.00036328297574073076 +karman_re50,sr,182,72.8,force,lower_fy,-0.004105383530259132 +karman_re50,sr,183,73.2,force,front_fx,0.0003360797418281436 +karman_re50,sr,183,73.2,force,front_fy,0.0024993440601974726 +karman_re50,sr,183,73.2,force,upper_fx,-0.0015743395779281855 +karman_re50,sr,183,73.2,force,upper_fy,0.0029171325732022524 +karman_re50,sr,183,73.2,force,lower_fx,0.0012912368401885033 +karman_re50,sr,183,73.2,force,lower_fy,-0.004296142607927322 +karman_re50,sr,184,73.6,force,front_fx,0.0007205345318652689 +karman_re50,sr,184,73.6,force,front_fy,0.003023058408871293 +karman_re50,sr,184,73.6,force,upper_fx,-0.002527587115764618 +karman_re50,sr,184,73.6,force,upper_fy,0.002976660616695881 +karman_re50,sr,184,73.6,force,lower_fx,0.0020202379673719406 +karman_re50,sr,184,73.6,force,lower_fy,-0.0044515542685985565 +karman_re50,sr,185,74.0,force,front_fx,0.001300542033277452 +karman_re50,sr,185,74.0,force,front_fy,0.003434121608734131 +karman_re50,sr,185,74.0,force,upper_fx,-0.003447009716182947 +karman_re50,sr,185,74.0,force,upper_fy,0.00308117363601923 +karman_re50,sr,185,74.0,force,lower_fx,0.002508749021217227 +karman_re50,sr,185,74.0,force,lower_fy,-0.004517595283687115 +karman_re50,sr,186,74.4,force,front_fx,0.0019103840459138155 +karman_re50,sr,186,74.4,force,front_fy,0.0036012688651680946 +karman_re50,sr,186,74.4,force,upper_fx,-0.004140735138207674 +karman_re50,sr,186,74.4,force,upper_fy,0.0031584040261805058 +karman_re50,sr,186,74.4,force,lower_fx,0.002748575760051608 +karman_re50,sr,186,74.4,force,lower_fy,-0.004421924706548452 +karman_re50,sr,187,74.8,force,front_fx,0.002379720564931631 +karman_re50,sr,187,74.8,force,front_fy,0.0033966703340411186 +karman_re50,sr,187,74.8,force,upper_fx,-0.004451892804354429 +karman_re50,sr,187,74.8,force,upper_fy,0.003183082677423954 +karman_re50,sr,187,74.8,force,lower_fx,0.0027646964881569147 +karman_re50,sr,187,74.8,force,lower_fy,-0.004184423014521599 +karman_re50,sr,188,75.2,force,front_fx,0.0025463830679655075 +karman_re50,sr,188,75.2,force,front_fy,0.0027754874899983406 +karman_re50,sr,188,75.2,force,upper_fx,-0.0043106782250106335 +karman_re50,sr,188,75.2,force,upper_fy,0.003176250495016575 +karman_re50,sr,188,75.2,force,lower_fx,0.0025620893575251102 +karman_re50,sr,188,75.2,force,lower_fy,-0.0038584088906645775 +karman_re50,sr,189,75.6,force,front_fx,0.0023370792623609304 +karman_re50,sr,189,75.6,force,front_fy,0.0018300807569175959 +karman_re50,sr,189,75.6,force,upper_fx,-0.0037761705461889505 +karman_re50,sr,189,75.6,force,upper_fy,0.0032244848553091288 +karman_re50,sr,189,75.6,force,lower_fx,0.0021538950968533754 +karman_re50,sr,189,75.6,force,lower_fy,-0.003541237208992243 +karman_re50,sr,190,76.0,force,front_fx,0.0018189746187999845 +karman_re50,sr,190,76.0,force,front_fy,0.0007569476147182286 +karman_re50,sr,190,76.0,force,upper_fx,-0.002932928502559662 +karman_re50,sr,190,76.0,force,upper_fy,0.0033856371883302927 +karman_re50,sr,190,76.0,force,lower_fx,0.0016077650943771005 +karman_re50,sr,190,76.0,force,lower_fy,-0.003293721005320549 +karman_re50,sr,191,76.4,force,front_fx,0.0011173810344189405 +karman_re50,sr,191,76.4,force,front_fy,-0.000250876386417076 +karman_re50,sr,191,76.4,force,upper_fx,-0.0019593993201851845 +karman_re50,sr,191,76.4,force,upper_fy,0.0036214618012309074 +karman_re50,sr,191,76.4,force,lower_fx,0.0009483254980295897 +karman_re50,sr,191,76.4,force,lower_fy,-0.003158168401569128 +karman_re50,sr,192,76.8,force,front_fx,0.0005440004169940948 +karman_re50,sr,192,76.8,force,front_fy,-0.0010997179197147489 +karman_re50,sr,192,76.8,force,upper_fx,-0.0008821910014376044 +karman_re50,sr,192,76.8,force,upper_fy,0.0038543378468602896 +karman_re50,sr,192,76.8,force,lower_fx,0.00024493614910170436 +karman_re50,sr,192,76.8,force,lower_fy,-0.0030429307371377945 +karman_re50,sr,193,77.2,force,front_fx,0.0002557713305577636 +karman_re50,sr,193,77.2,force,front_fy,-0.001801345031708479 +karman_re50,sr,193,77.2,force,upper_fx,0.00017967777966987342 +karman_re50,sr,193,77.2,force,upper_fy,0.00406654505059123 +karman_re50,sr,193,77.2,force,lower_fx,-0.0005249662208370864 +karman_re50,sr,193,77.2,force,lower_fy,-0.0029388396069407463 +karman_re50,sr,194,77.6,force,front_fx,0.0002949157205875963 +karman_re50,sr,194,77.6,force,front_fy,-0.0024000774137675762 +karman_re50,sr,194,77.6,force,upper_fx,0.0011355278547853231 +karman_re50,sr,194,77.6,force,upper_fy,0.004260896705091 +karman_re50,sr,194,77.6,force,lower_fx,-0.0014063471462577581 +karman_re50,sr,194,77.6,force,lower_fy,-0.002916345838457346 +karman_re50,sr,195,78.0,force,front_fx,0.0006324691930785775 +karman_re50,sr,195,78.0,force,front_fy,-0.0029335247818380594 +karman_re50,sr,195,78.0,force,upper_fx,0.0019026288064196706 +karman_re50,sr,195,78.0,force,upper_fy,0.004425765480846167 +karman_re50,sr,195,78.0,force,lower_fx,-0.00235077110119164 +karman_re50,sr,195,78.0,force,lower_fy,-0.0029656814876943827 +karman_re50,sr,196,78.4,force,front_fx,0.0011841546511277556 +karman_re50,sr,196,78.4,force,front_fy,-0.0033707472030073404 +karman_re50,sr,196,78.4,force,upper_fx,0.0024337575305253267 +karman_re50,sr,196,78.4,force,upper_fy,0.004509959369897842 +karman_re50,sr,196,78.4,force,lower_fx,-0.0032825323287397623 +karman_re50,sr,196,78.4,force,lower_fy,-0.003061535768210888 +karman_re50,sr,197,78.8,force,front_fx,0.0018008429324254394 +karman_re50,sr,197,78.8,force,front_fy,-0.003593333065509796 +karman_re50,sr,197,78.8,force,upper_fx,0.0027203455101698637 +karman_re50,sr,197,78.8,force,upper_fy,0.0044501181691884995 +karman_re50,sr,197,78.8,force,lower_fx,-0.004037404898554087 +karman_re50,sr,197,78.8,force,lower_fy,-0.003148698480799794 +karman_re50,sr,198,79.2,force,front_fx,0.0023067728616297245 +karman_re50,sr,198,79.2,force,front_fy,-0.003463200991973281 +karman_re50,sr,198,79.2,force,upper_fx,0.002777339890599251 +karman_re50,sr,198,79.2,force,upper_fy,0.004236532840877771 +karman_re50,sr,198,79.2,force,lower_fx,-0.004425092600286007 +karman_re50,sr,198,79.2,force,lower_fy,-0.0031789562199264765 +karman_re50,sr,199,79.6,force,front_fx,0.0025393699761480093 +karman_re50,sr,199,79.6,force,front_fy,-0.0029133076313883066 +karman_re50,sr,199,79.6,force,upper_fx,0.0026145856827497482 +karman_re50,sr,199,79.6,force,upper_fy,0.003919837065041065 +karman_re50,sr,199,79.6,force,lower_fx,-0.004368210211396217 +karman_re50,sr,199,79.6,force,lower_fy,-0.0031753014773130417 +karman_re50,sr,0,0.0,alpha,front,-1.0503044624461948 +karman_re50,sr,0,0.0,alpha,upper,-2.529673991688886 +karman_re50,sr,0,0.0,alpha,lower,4.332743369332347 +karman_re50,sr,1,0.4,alpha,front,-0.7146424802377701 +karman_re50,sr,1,0.4,alpha,upper,-2.8460537830382275 +karman_re50,sr,1,0.4,alpha,lower,4.016363577983005 +karman_re50,sr,2,0.8,alpha,front,-0.42275750845217835 +karman_re50,sr,2,0.8,alpha,upper,-2.851941434068413 +karman_re50,sr,2,0.8,alpha,lower,4.01047592695282 +karman_re50,sr,3,1.2,alpha,front,-0.28351785599890045 +karman_re50,sr,3,1.2,alpha,upper,-3.1105892993226942 +karman_re50,sr,3,1.2,alpha,lower,3.751828061698538 +karman_re50,sr,4,1.6,alpha,front,0.03483555538907221 +karman_re50,sr,4,1.6,alpha,upper,-3.824062621788048 +karman_re50,sr,4,1.6,alpha,lower,3.038354739233185 +karman_re50,sr,5,2.0,alpha,front,0.47079126152442297 +karman_re50,sr,5,2.0,alpha,upper,-4.274111518091459 +karman_re50,sr,5,2.0,alpha,lower,2.588305842929773 +karman_re50,sr,6,2.4,alpha,front,0.8819546485029763 +karman_re50,sr,6,2.4,alpha,upper,-4.362781625329101 +karman_re50,sr,6,2.4,alpha,lower,2.499635735692131 +karman_re50,sr,7,2.8,alpha,front,1.2544946881993913 +karman_re50,sr,7,2.8,alpha,upper,-4.400205631397648 +karman_re50,sr,7,2.8,alpha,lower,2.462211729623584 +karman_re50,sr,8,3.2,alpha,front,1.5464567602489854 +karman_re50,sr,8,3.2,alpha,upper,-4.431356652221141 +karman_re50,sr,8,3.2,alpha,lower,2.431060708800091 +karman_re50,sr,9,3.6,alpha,front,1.6935671719520418 +karman_re50,sr,9,3.6,alpha,upper,-4.343843156611455 +karman_re50,sr,9,3.6,alpha,lower,2.518574204409777 +karman_re50,sr,10,4.0,alpha,front,1.6745810154923912 +karman_re50,sr,10,4.0,alpha,upper,-4.170800385393024 +karman_re50,sr,10,4.0,alpha,lower,2.6916169756282082 +karman_re50,sr,11,4.4,alpha,front,1.5057288177385264 +karman_re50,sr,11,4.4,alpha,upper,-3.9450896891285088 +karman_re50,sr,11,4.4,alpha,lower,2.9173276718927235 +karman_re50,sr,12,4.8,alpha,front,1.229687894705672 +karman_re50,sr,12,4.8,alpha,upper,-3.6977431846422673 +karman_re50,sr,12,4.8,alpha,lower,3.164674176378965 +karman_re50,sr,13,5.2,alpha,front,0.8868176483103615 +karman_re50,sr,13,5.2,alpha,upper,-3.4294855621210933 +karman_re50,sr,13,5.2,alpha,lower,3.4329317989001393 +karman_re50,sr,14,5.6,alpha,front,0.5112065738973022 +karman_re50,sr,14,5.6,alpha,upper,-3.1479831607154036 +karman_re50,sr,14,5.6,alpha,lower,3.7144342003058286 +karman_re50,sr,15,6.0,alpha,front,0.12067913335122936 +karman_re50,sr,15,6.0,alpha,upper,-2.8817446224919725 +karman_re50,sr,15,6.0,alpha,lower,3.9806727385292597 +karman_re50,sr,16,6.4,alpha,front,-0.27007210164456286 +karman_re50,sr,16,6.4,alpha,upper,-2.6524716781201896 +karman_re50,sr,16,6.4,alpha,lower,4.209945682901043 +karman_re50,sr,17,6.8,alpha,front,-0.6454047559709574 +karman_re50,sr,17,6.8,alpha,upper,-2.4908053248677167 +karman_re50,sr,17,6.8,alpha,lower,4.371612036153516 +karman_re50,sr,18,7.2,alpha,front,-0.9800632137526717 +karman_re50,sr,18,7.2,alpha,upper,-2.4021783032021045 +karman_re50,sr,18,7.2,alpha,lower,4.460239057819128 +karman_re50,sr,19,7.6,alpha,front,-1.2376134377667065 +karman_re50,sr,19,7.6,alpha,upper,-2.4531432063092233 +karman_re50,sr,19,7.6,alpha,lower,4.4092741547120085 +karman_re50,sr,20,8.0,alpha,front,-1.3749080290464257 +karman_re50,sr,20,8.0,alpha,upper,-2.63643242688723 +karman_re50,sr,20,8.0,alpha,lower,4.225984934134003 +karman_re50,sr,21,8.4,alpha,front,-1.3644009924353606 +karman_re50,sr,21,8.4,alpha,upper,-2.885759649720149 +karman_re50,sr,21,8.4,alpha,lower,3.9766577113010833 +karman_re50,sr,22,8.8,alpha,front,-1.2155699550306713 +karman_re50,sr,22,8.8,alpha,upper,-3.122679445775142 +karman_re50,sr,22,8.8,alpha,lower,3.739737915246091 +karman_re50,sr,23,9.2,alpha,front,-0.9667444927947315 +karman_re50,sr,23,9.2,alpha,upper,-3.3510261264711994 +karman_re50,sr,23,9.2,alpha,lower,3.5113912345500324 +karman_re50,sr,24,9.6,alpha,front,-0.657608042789882 +karman_re50,sr,24,9.6,alpha,upper,-3.6016623590154735 +karman_re50,sr,24,9.6,alpha,lower,3.2607550020057587 +karman_re50,sr,25,10.0,alpha,front,-0.31516745332215634 +karman_re50,sr,25,10.0,alpha,upper,-3.868806303234884 +karman_re50,sr,25,10.0,alpha,lower,2.993611057786348 +karman_re50,sr,26,10.4,alpha,front,0.04234734636570953 +karman_re50,sr,26,10.4,alpha,upper,-4.113343110788925 +karman_re50,sr,26,10.4,alpha,lower,2.749074250232307 +karman_re50,sr,27,10.8,alpha,front,0.4025532433009607 +karman_re50,sr,27,10.8,alpha,upper,-4.293140268590779 +karman_re50,sr,27,10.8,alpha,lower,2.5692770924304527 +karman_re50,sr,28,11.2,alpha,front,0.7468821787394061 +karman_re50,sr,28,11.2,alpha,upper,-4.404145601427906 +karman_re50,sr,28,11.2,alpha,lower,2.458271759593326 +karman_re50,sr,29,11.6,alpha,front,1.051133762032165 +karman_re50,sr,29,11.6,alpha,upper,-4.420063969465842 +karman_re50,sr,29,11.6,alpha,lower,2.4423533915553906 +karman_re50,sr,30,12.0,alpha,front,1.2801326460709537 +karman_re50,sr,30,12.0,alpha,upper,-4.341881164502798 +karman_re50,sr,30,12.0,alpha,lower,2.5205361965184343 +karman_re50,sr,31,12.4,alpha,front,1.3992360150267547 +karman_re50,sr,31,12.4,alpha,upper,-4.185289317262093 +karman_re50,sr,31,12.4,alpha,lower,2.677128043759139 +karman_re50,sr,32,12.8,alpha,front,1.3900246091694208 +karman_re50,sr,32,12.8,alpha,upper,-3.98868482797678 +karman_re50,sr,32,12.8,alpha,lower,2.873732533044452 +karman_re50,sr,33,13.2,alpha,front,1.255774912220264 +karman_re50,sr,33,13.2,alpha,upper,-3.776763493957738 +karman_re50,sr,33,13.2,alpha,lower,3.085653867063494 +karman_re50,sr,34,13.6,alpha,front,1.0240616460105638 +karman_re50,sr,34,13.6,alpha,upper,-3.5295564466587033 +karman_re50,sr,34,13.6,alpha,lower,3.3328609143625285 +karman_re50,sr,35,14.0,alpha,front,0.7264085177621968 +karman_re50,sr,35,14.0,alpha,upper,-3.2637006544709015 +karman_re50,sr,35,14.0,alpha,lower,3.5987167065503303 +karman_re50,sr,36,14.4,alpha,front,0.39367041821169485 +karman_re50,sr,36,14.4,alpha,upper,-3.0017548398833593 +karman_re50,sr,36,14.4,alpha,lower,3.8606625211378733 +karman_re50,sr,37,14.8,alpha,front,0.04232306244653716 +karman_re50,sr,37,14.8,alpha,upper,-2.781257954571981 +karman_re50,sr,37,14.8,alpha,lower,4.081159406449251 +karman_re50,sr,38,15.2,alpha,front,-0.31271929239107144 +karman_re50,sr,38,15.2,alpha,upper,-2.613610014607548 +karman_re50,sr,38,15.2,alpha,lower,4.248807346413685 +karman_re50,sr,39,15.6,alpha,front,-0.6550264826401417 +karman_re50,sr,39,15.6,alpha,upper,-2.5011757023390673 +karman_re50,sr,39,15.6,alpha,lower,4.361241658682165 +karman_re50,sr,40,16.0,alpha,front,-0.9625040226744054 +karman_re50,sr,40,16.0,alpha,upper,-2.4610551179956284 +karman_re50,sr,40,16.0,alpha,lower,4.401362243025604 +karman_re50,sr,41,16.4,alpha,front,-1.2038940047136508 +karman_re50,sr,41,16.4,alpha,upper,-2.5197652235970223 +karman_re50,sr,41,16.4,alpha,lower,4.34265213742421 +karman_re50,sr,42,16.8,alpha,front,-1.3460241345204293 +karman_re50,sr,42,16.8,alpha,upper,-2.6638581443114266 +karman_re50,sr,42,16.8,alpha,lower,4.198559216709805 +karman_re50,sr,43,17.2,alpha,front,-1.3626145662204818 +karman_re50,sr,43,17.2,alpha,upper,-2.854788431230816 +karman_re50,sr,43,17.2,alpha,lower,4.007628929790417 +karman_re50,sr,44,17.6,alpha,front,-1.2543989178167518 +karman_re50,sr,44,17.6,alpha,upper,-3.0700574989720013 +karman_re50,sr,44,17.6,alpha,lower,3.7923598620492314 +karman_re50,sr,45,18.0,alpha,front,-1.0415065519868767 +karman_re50,sr,45,18.0,alpha,upper,-3.308506147727789 +karman_re50,sr,45,18.0,alpha,lower,3.5539112132934436 +karman_re50,sr,46,18.4,alpha,front,-0.7585089340708149 +karman_re50,sr,46,18.4,alpha,upper,-3.568907123801593 +karman_re50,sr,46,18.4,alpha,lower,3.293510237219639 +karman_re50,sr,47,18.8,alpha,front,-0.4343011695457061 +karman_re50,sr,47,18.8,alpha,upper,-3.822156047164263 +karman_re50,sr,47,18.8,alpha,lower,3.0402613138569694 +karman_re50,sr,48,19.2,alpha,front,-0.08889378968985905 +karman_re50,sr,48,19.2,alpha,upper,-4.047797776064362 +karman_re50,sr,48,19.2,alpha,lower,2.81461958495687 +karman_re50,sr,49,19.6,alpha,front,0.26283342359021844 +karman_re50,sr,49,19.6,alpha,upper,-4.225732662781162 +karman_re50,sr,49,19.6,alpha,lower,2.6366846982400696 +karman_re50,sr,50,20.0,alpha,front,0.6068033421932342 +karman_re50,sr,50,20.0,alpha,upper,-4.348197996549069 +karman_re50,sr,50,20.0,alpha,lower,2.5142193644721633 +karman_re50,sr,51,20.4,alpha,front,0.9198909531791989 +karman_re50,sr,51,20.4,alpha,upper,-4.398142395807012 +karman_re50,sr,51,20.4,alpha,lower,2.46427496521422 +karman_re50,sr,52,20.8,alpha,front,1.175114183334111 +karman_re50,sr,52,20.8,alpha,upper,-4.3539299000874285 +karman_re50,sr,52,20.8,alpha,lower,2.5084874609338037 +karman_re50,sr,53,21.2,alpha,front,1.3354414406390733 +karman_re50,sr,53,21.2,alpha,upper,-4.227036343888203 +karman_re50,sr,53,21.2,alpha,lower,2.635381017133029 +karman_re50,sr,54,21.6,alpha,front,1.3759266938071555 +karman_re50,sr,54,21.6,alpha,upper,-4.0467457573268115 +karman_re50,sr,54,21.6,alpha,lower,2.815671603694421 +karman_re50,sr,55,22.0,alpha,front,1.289387119740601 +karman_re50,sr,55,22.0,alpha,upper,-3.8392674135853317 +karman_re50,sr,55,22.0,alpha,lower,3.023149947435901 +karman_re50,sr,56,22.4,alpha,front,1.0934220913425667 +karman_re50,sr,56,22.4,alpha,upper,-3.5997017371193545 +karman_re50,sr,56,22.4,alpha,lower,3.262715623901878 +karman_re50,sr,57,22.8,alpha,front,0.8211392123324178 +karman_re50,sr,57,22.8,alpha,upper,-3.345534162372837 +karman_re50,sr,57,22.8,alpha,lower,3.5168831986483955 +karman_re50,sr,58,23.2,alpha,front,0.5027352018149526 +karman_re50,sr,58,23.2,alpha,upper,-3.0868867538560685 +karman_re50,sr,58,23.2,alpha,lower,3.7755306071651638 +karman_re50,sr,59,23.6,alpha,front,0.16007234414085628 +karman_re50,sr,59,23.6,alpha,upper,-2.857119771741398 +karman_re50,sr,59,23.6,alpha,lower,4.005297589279834 +karman_re50,sr,60,24.0,alpha,front,-0.1917763451020249 +karman_re50,sr,60,24.0,alpha,upper,-2.669853128657093 +karman_re50,sr,60,24.0,alpha,lower,4.192564232364139 +karman_re50,sr,61,24.4,alpha,front,-0.537953694435211 +karman_re50,sr,61,24.4,alpha,upper,-2.537159158292605 +karman_re50,sr,61,24.4,alpha,lower,4.325258202728627 +karman_re50,sr,62,24.8,alpha,front,-0.8592052088434523 +karman_re50,sr,62,24.8,alpha,upper,-2.471583526646368 +karman_re50,sr,62,24.8,alpha,lower,4.390833834374864 +karman_re50,sr,63,25.2,alpha,front,-1.1268277953628316 +karman_re50,sr,63,25.2,alpha,upper,-2.4941726983029056 +karman_re50,sr,63,25.2,alpha,lower,4.368244662718327 +karman_re50,sr,64,25.6,alpha,front,-1.307821475404961 +karman_re50,sr,64,25.6,alpha,upper,-2.609254717932421 +karman_re50,sr,64,25.6,alpha,lower,4.253162643088811 +karman_re50,sr,65,26.0,alpha,front,-1.3713686540707757 +karman_re50,sr,65,26.0,alpha,upper,-2.779656785098345 +karman_re50,sr,65,26.0,alpha,lower,4.082760575922887 +karman_re50,sr,66,26.4,alpha,front,-1.3076993315372556 +karman_re50,sr,66,26.4,alpha,upper,-2.987913866298953 +karman_re50,sr,66,26.4,alpha,lower,3.87450349472228 +karman_re50,sr,67,26.8,alpha,front,-1.129880726058372 +karman_re50,sr,67,26.8,alpha,upper,-3.2180736426745327 +karman_re50,sr,67,26.8,alpha,lower,3.644343718346699 +karman_re50,sr,68,27.2,alpha,front,-0.8688642091502007 +karman_re50,sr,68,27.2,alpha,upper,-3.474674105905285 +karman_re50,sr,68,27.2,alpha,lower,3.387743255115948 +karman_re50,sr,69,27.6,alpha,front,-0.5568129673478112 +karman_re50,sr,69,27.6,alpha,upper,-3.7324390975475463 +karman_re50,sr,69,27.6,alpha,lower,3.129978263473686 +karman_re50,sr,70,28.0,alpha,front,-0.21702491112053005 +karman_re50,sr,70,28.0,alpha,upper,-3.9671924353340375 +karman_re50,sr,70,28.0,alpha,lower,2.895224925687195 +karman_re50,sr,71,28.4,alpha,front,0.13343165826411263 +karman_re50,sr,71,28.4,alpha,upper,-4.164745568433196 +karman_re50,sr,71,28.4,alpha,lower,2.697671792588036 +karman_re50,sr,72,28.8,alpha,front,0.48246159526592003 +karman_re50,sr,72,28.8,alpha,upper,-4.309094109908867 +karman_re50,sr,72,28.8,alpha,lower,2.5533232511123654 +karman_re50,sr,73,29.2,alpha,front,0.8109320964143192 +karman_re50,sr,73,29.2,alpha,upper,-4.390367962111926 +karman_re50,sr,73,29.2,alpha,lower,2.4720493989093066 +karman_re50,sr,74,29.6,alpha,front,1.0902262820696813 +karman_re50,sr,74,29.6,alpha,upper,-4.380456149103311 +karman_re50,sr,74,29.6,alpha,lower,2.4819612119179215 +karman_re50,sr,75,30.0,alpha,front,1.2888736359783275 +karman_re50,sr,75,30.0,alpha,upper,-4.283437489117137 +karman_re50,sr,75,30.0,alpha,lower,2.5789798719040955 +karman_re50,sr,76,30.4,alpha,front,1.3754652022183038 +karman_re50,sr,76,30.4,alpha,upper,-4.119053395418351 +karman_re50,sr,76,30.4,alpha,lower,2.7433639656028816 +karman_re50,sr,77,30.8,alpha,front,1.3341746697595729 +karman_re50,sr,77,30.8,alpha,upper,-3.9196389047091618 +karman_re50,sr,77,30.8,alpha,lower,2.94277845631207 +karman_re50,sr,78,31.2,alpha,front,1.1744843720787845 +karman_re50,sr,78,31.2,alpha,upper,-3.6905969172729596 +karman_re50,sr,78,31.2,alpha,lower,3.171820443748272 +karman_re50,sr,79,31.6,alpha,front,0.9256230791989922 +karman_re50,sr,79,31.6,alpha,upper,-3.437256646407754 +karman_re50,sr,79,31.6,alpha,lower,3.4251607146134786 +karman_re50,sr,80,32.0,alpha,front,0.6198433655657192 +karman_re50,sr,80,32.0,alpha,upper,-3.177441816808561 +karman_re50,sr,80,32.0,alpha,lower,3.6849755442126706 +karman_re50,sr,81,32.4,alpha,front,0.2838546840310273 +karman_re50,sr,81,32.4,alpha,upper,-2.9355288140190585 +karman_re50,sr,81,32.4,alpha,lower,3.926888547002174 +karman_re50,sr,82,32.8,alpha,front,-0.06691249183126395 +karman_re50,sr,82,32.8,alpha,upper,-2.731424999267133 +karman_re50,sr,82,32.8,alpha,lower,4.1309923617541 +karman_re50,sr,83,33.2,alpha,front,-0.416991139081615 +karman_re50,sr,83,33.2,alpha,upper,-2.5749930101558682 +karman_re50,sr,83,33.2,alpha,lower,4.287424350865364 +karman_re50,sr,84,33.6,alpha,front,-0.7505982649449608 +karman_re50,sr,84,33.6,alpha,upper,-2.4817500469412237 +karman_re50,sr,84,33.6,alpha,lower,4.380667314080009 +karman_re50,sr,85,34.0,alpha,front,-1.0414134899924345 +karman_re50,sr,85,34.0,alpha,upper,-2.4723884503895563 +karman_re50,sr,85,34.0,alpha,lower,4.390028910631676 +karman_re50,sr,86,34.4,alpha,front,-1.2574137090785011 +karman_re50,sr,86,34.4,alpha,upper,-2.5565619768148147 +karman_re50,sr,86,34.4,alpha,lower,4.305855384206417 +karman_re50,sr,87,34.8,alpha,front,-1.3675281596073836 +karman_re50,sr,87,34.8,alpha,upper,-2.7094484648609436 +karman_re50,sr,87,34.8,alpha,lower,4.152968896160289 +karman_re50,sr,88,35.2,alpha,front,-1.347331575622692 +karman_re50,sr,88,35.2,alpha,upper,-2.9059882496652927 +karman_re50,sr,88,35.2,alpha,lower,3.95642911135594 +karman_re50,sr,89,35.6,alpha,front,-1.207749861510095 +karman_re50,sr,89,35.6,alpha,upper,-3.130361161755153 +karman_re50,sr,89,35.6,alpha,lower,3.732056199266079 +karman_re50,sr,90,36.0,alpha,front,-0.9735690316538658 +karman_re50,sr,90,36.0,alpha,upper,-3.3805930293548636 +karman_re50,sr,90,36.0,alpha,lower,3.4818243316663686 +karman_re50,sr,91,36.4,alpha,front,-0.6749480764232214 +karman_re50,sr,91,36.4,alpha,upper,-3.641347824755161 +karman_re50,sr,91,36.4,alpha,lower,3.221069536266071 +karman_re50,sr,92,36.8,alpha,front,-0.34273227399658485 +karman_re50,sr,92,36.8,alpha,upper,-3.886024546233921 +karman_re50,sr,92,36.8,alpha,lower,2.976392814787311 +karman_re50,sr,93,37.2,alpha,front,0.005596862009264591 +karman_re50,sr,93,37.2,alpha,upper,-4.09892573446351 +karman_re50,sr,93,37.2,alpha,lower,2.7634916265577223 +karman_re50,sr,94,37.6,alpha,front,0.35723908937689225 +karman_re50,sr,94,37.6,alpha,upper,-4.2644929305659875 +karman_re50,sr,94,37.6,alpha,lower,2.5979244304552442 +karman_re50,sr,95,38.0,alpha,front,0.6951873508218711 +karman_re50,sr,95,38.0,alpha,upper,-4.371402698126868 +karman_re50,sr,95,38.0,alpha,lower,2.4910146628943637 +karman_re50,sr,96,38.4,alpha,front,0.9960593096427983 +karman_re50,sr,96,38.4,alpha,upper,-4.395537926263845 +karman_re50,sr,96,38.4,alpha,lower,2.4668794347573875 +karman_re50,sr,97,38.8,alpha,front,1.2281783900839882 +karman_re50,sr,97,38.8,alpha,upper,-4.3293656431802034 +karman_re50,sr,97,38.8,alpha,lower,2.5330517178410292 +karman_re50,sr,98,39.2,alpha,front,1.3579552505254555 +karman_re50,sr,98,39.2,alpha,upper,-4.184726159908952 +karman_re50,sr,98,39.2,alpha,lower,2.67769120111228 +karman_re50,sr,99,39.6,alpha,front,1.362969542673519 +karman_re50,sr,99,39.6,alpha,upper,-3.995760757769134 +karman_re50,sr,99,39.6,alpha,lower,2.8666566032520984 +karman_re50,sr,100,40.0,alpha,front,1.2432513251971853 +karman_re50,sr,100,40.0,alpha,upper,-3.772877571199815 +karman_re50,sr,100,40.0,alpha,lower,3.089539789821418 +karman_re50,sr,101,40.4,alpha,front,1.0227597992839212 +karman_re50,sr,101,40.4,alpha,upper,-3.529296410768148 +karman_re50,sr,101,40.4,alpha,lower,3.3331209502530843 +karman_re50,sr,102,40.8,alpha,front,0.7340853109072661 +karman_re50,sr,102,40.8,alpha,upper,-3.271295285831828 +karman_re50,sr,102,40.8,alpha,lower,3.591122075189404 +karman_re50,sr,103,41.2,alpha,front,0.4067810039766737 +karman_re50,sr,103,41.2,alpha,upper,-3.019910003766751 +karman_re50,sr,103,41.2,alpha,lower,3.8425073572544814 +karman_re50,sr,104,41.6,alpha,front,0.06004617206045801 +karman_re50,sr,104,41.6,alpha,upper,-2.80148000794611 +karman_re50,sr,104,41.6,alpha,lower,4.060937353075122 +karman_re50,sr,105,42.0,alpha,front,-0.295613012639049 +karman_re50,sr,105,42.0,alpha,upper,-2.628962332621429 +karman_re50,sr,105,42.0,alpha,lower,4.233455028399803 +karman_re50,sr,106,42.4,alpha,front,-0.6340483732612835 +karman_re50,sr,106,42.4,alpha,upper,-2.5051640865456704 +karman_re50,sr,106,42.4,alpha,lower,4.357253274475562 +karman_re50,sr,107,42.8,alpha,front,-0.9445273402155374 +karman_re50,sr,107,42.8,alpha,upper,-2.4600238046919856 +karman_re50,sr,107,42.8,alpha,lower,4.402393556329247 +karman_re50,sr,108,43.2,alpha,front,-1.1919933469758897 +karman_re50,sr,108,43.2,alpha,upper,-2.5128736635139557 +karman_re50,sr,108,43.2,alpha,lower,4.3495436975072765 +karman_re50,sr,109,43.6,alpha,front,-1.3430098760563582 +karman_re50,sr,109,43.6,alpha,upper,-2.649502123058549 +karman_re50,sr,109,43.6,alpha,lower,4.212915237962683 +karman_re50,sr,110,44.0,alpha,front,-1.3703474141212684 +karman_re50,sr,110,44.0,alpha,upper,-2.8328927393643717 +karman_re50,sr,110,44.0,alpha,lower,4.0295246216568605 +karman_re50,sr,111,44.4,alpha,front,-1.2720606724480534 +karman_re50,sr,111,44.4,alpha,upper,-3.045485020789548 +karman_re50,sr,111,44.4,alpha,lower,3.8169323402316846 +karman_re50,sr,112,44.8,alpha,front,-1.06704683028412 +karman_re50,sr,112,44.8,alpha,upper,-3.285893377966429 +karman_re50,sr,112,44.8,alpha,lower,3.576523983054803 +karman_re50,sr,113,45.2,alpha,front,-0.7884622645362839 +karman_re50,sr,113,45.2,alpha,upper,-3.54661985564094 +karman_re50,sr,113,45.2,alpha,lower,3.3157975053802917 +karman_re50,sr,114,45.6,alpha,front,-0.4660904986100208 +karman_re50,sr,114,45.6,alpha,upper,-3.7999442929390406 +karman_re50,sr,114,45.6,alpha,lower,3.0624730680821917 +karman_re50,sr,115,46.0,alpha,front,-0.11752745262978476 +karman_re50,sr,115,46.0,alpha,upper,-4.027062501971813 +karman_re50,sr,115,46.0,alpha,lower,2.835354859049419 +karman_re50,sr,116,46.4,alpha,front,0.23024211192088817 +karman_re50,sr,116,46.4,alpha,upper,-4.211034849622959 +karman_re50,sr,116,46.4,alpha,lower,2.651382511398273 +karman_re50,sr,117,46.8,alpha,front,0.5761747350705739 +karman_re50,sr,117,46.8,alpha,upper,-4.342957999311872 +karman_re50,sr,117,46.8,alpha,lower,2.5194593617093606 +karman_re50,sr,118,47.2,alpha,front,0.8942627632650682 +karman_re50,sr,118,47.2,alpha,upper,-4.398004765569857 +karman_re50,sr,118,47.2,alpha,lower,2.4644125954513756 +karman_re50,sr,119,47.6,alpha,front,1.1550904921959644 +karman_re50,sr,119,47.6,alpha,upper,-4.361555285107542 +karman_re50,sr,119,47.6,alpha,lower,2.50086207591369 +karman_re50,sr,120,48.0,alpha,front,1.3248578143617806 +karman_re50,sr,120,48.0,alpha,upper,-4.243302898156642 +karman_re50,sr,120,48.0,alpha,lower,2.61911446286459 +karman_re50,sr,121,48.4,alpha,front,1.3763731338616008 +karman_re50,sr,121,48.4,alpha,upper,-4.068879257191527 +karman_re50,sr,121,48.4,alpha,lower,2.7935381038297056 +karman_re50,sr,122,48.8,alpha,front,1.3000775719523538 +karman_re50,sr,122,48.8,alpha,upper,-3.8605146904296004 +karman_re50,sr,122,48.8,alpha,lower,3.001902670591632 +karman_re50,sr,123,49.2,alpha,front,1.113950563880911 +karman_re50,sr,123,49.2,alpha,upper,-3.6206288409672314 +karman_re50,sr,123,49.2,alpha,lower,3.2417885200540013 +karman_re50,sr,124,49.6,alpha,front,0.8443709892899495 +karman_re50,sr,124,49.6,alpha,upper,-3.3623306844018286 +karman_re50,sr,124,49.6,alpha,lower,3.5000866766194036 +karman_re50,sr,125,50.0,alpha,front,0.5280979807857257 +karman_re50,sr,125,50.0,alpha,upper,-3.1058579554287906 +karman_re50,sr,125,50.0,alpha,lower,3.7565594055924416 +karman_re50,sr,126,50.4,alpha,front,0.1868887811016889 +karman_re50,sr,126,50.4,alpha,upper,-2.8763665382801067 +karman_re50,sr,126,50.4,alpha,lower,3.986050822741126 +karman_re50,sr,127,50.8,alpha,front,-0.16491605500730117 +karman_re50,sr,127,50.8,alpha,upper,-2.683434218596781 +karman_re50,sr,127,50.8,alpha,lower,4.1789831424244515 +karman_re50,sr,128,51.2,alpha,front,-0.5125810698073446 +karman_re50,sr,128,51.2,alpha,upper,-2.541131404440427 +karman_re50,sr,128,51.2,alpha,lower,4.321285956580805 +karman_re50,sr,129,51.6,alpha,front,-0.8372509697184995 +karman_re50,sr,129,51.6,alpha,upper,-2.469446299578677 +karman_re50,sr,129,51.6,alpha,lower,4.392971061442555 +karman_re50,sr,130,52.0,alpha,front,-1.110629547153671 +karman_re50,sr,130,52.0,alpha,upper,-2.486343912843809 +karman_re50,sr,130,52.0,alpha,lower,4.376073448177423 +karman_re50,sr,131,52.4,alpha,front,-1.3001866178771393 +karman_re50,sr,131,52.4,alpha,upper,-2.591776439042829 +karman_re50,sr,131,52.4,alpha,lower,4.270640921978403 +karman_re50,sr,132,52.8,alpha,front,-1.3753334235925858 +karman_re50,sr,132,52.8,alpha,upper,-2.7573728663461186 +karman_re50,sr,132,52.8,alpha,lower,4.105044494675114 +karman_re50,sr,133,53.2,alpha,front,-1.3209368230491882 +karman_re50,sr,133,53.2,alpha,upper,-2.9650914540192708 +karman_re50,sr,133,53.2,alpha,lower,3.897325907001962 +karman_re50,sr,134,53.6,alpha,front,-1.152843462388364 +karman_re50,sr,134,53.6,alpha,upper,-3.199032864754045 +karman_re50,sr,134,53.6,alpha,lower,3.663384496267188 +karman_re50,sr,135,54.0,alpha,front,-0.8954881313249993 +karman_re50,sr,135,54.0,alpha,upper,-3.455234291644548 +karman_re50,sr,135,54.0,alpha,lower,3.407183069376684 +karman_re50,sr,136,54.4,alpha,front,-0.586767463308201 +karman_re50,sr,136,54.4,alpha,upper,-3.710390398614353 +karman_re50,sr,136,54.4,alpha,lower,3.1520269624068793 +karman_re50,sr,137,54.8,alpha,front,-0.24806039252006046 +karman_re50,sr,137,54.8,alpha,upper,-3.946785707758946 +karman_re50,sr,137,54.8,alpha,lower,2.9156316532622863 +karman_re50,sr,138,55.2,alpha,front,0.10243290105454078 +karman_re50,sr,138,55.2,alpha,upper,-4.1477380336733445 +karman_re50,sr,138,55.2,alpha,lower,2.7146793273478877 +karman_re50,sr,139,55.6,alpha,front,0.45212647086428265 +karman_re50,sr,139,55.6,alpha,upper,-4.300668216274854 +karman_re50,sr,139,55.6,alpha,lower,2.5617491447463783 +karman_re50,sr,140,56.0,alpha,front,0.7832644457880164 +karman_re50,sr,140,56.0,alpha,upper,-4.388522894806516 +karman_re50,sr,140,56.0,alpha,lower,2.4738944662147166 +karman_re50,sr,141,56.4,alpha,front,1.0678139257411714 +karman_re50,sr,141,56.4,alpha,upper,-4.386234792113801 +karman_re50,sr,141,56.4,alpha,lower,2.476182568907431 +karman_re50,sr,142,56.8,alpha,front,1.2748929361052455 +karman_re50,sr,142,56.8,alpha,upper,-4.29512083469162 +karman_re50,sr,142,56.8,alpha,lower,2.567296526329613 +karman_re50,sr,143,57.2,alpha,front,1.3718526563615274 +karman_re50,sr,143,57.2,alpha,upper,-4.1364313443009895 +karman_re50,sr,143,57.2,alpha,lower,2.7259860167202428 +karman_re50,sr,144,57.6,alpha,front,1.341150367759966 +karman_re50,sr,144,57.6,alpha,upper,-3.938654257574777 +karman_re50,sr,144,57.6,alpha,lower,2.923763103446455 +karman_re50,sr,145,58.0,alpha,front,1.190286085616016 +karman_re50,sr,145,58.0,alpha,upper,-3.7082213521666123 +karman_re50,sr,145,58.0,alpha,lower,3.1541960088546204 +karman_re50,sr,146,58.4,alpha,front,0.9472748446421042 +karman_re50,sr,146,58.4,alpha,upper,-3.456706661139607 +karman_re50,sr,146,58.4,alpha,lower,3.4057106998816247 +karman_re50,sr,147,58.8,alpha,front,0.6454972851677215 +karman_re50,sr,147,58.8,alpha,upper,-3.195730043553982 +karman_re50,sr,147,58.8,alpha,lower,3.66668731746725 +karman_re50,sr,148,59.2,alpha,front,0.3110459080835639 +karman_re50,sr,148,59.2,alpha,upper,-2.9552113081448685 +karman_re50,sr,148,59.2,alpha,lower,3.9072060528763637 +karman_re50,sr,149,59.6,alpha,front,-0.03845490551619606 +karman_re50,sr,149,59.6,alpha,upper,-2.747417967765474 +karman_re50,sr,149,59.6,alpha,lower,4.114999393255759 +karman_re50,sr,150,60.0,alpha,front,-0.3892099359501663 +karman_re50,sr,150,60.0,alpha,upper,-2.585547452844831 +karman_re50,sr,150,60.0,alpha,lower,4.276869908176401 +karman_re50,sr,151,60.4,alpha,front,-0.7247621063371433 +karman_re50,sr,151,60.4,alpha,upper,-2.486944218181315 +karman_re50,sr,151,60.4,alpha,lower,4.375473142839917 +karman_re50,sr,152,60.8,alpha,front,-1.0202337166924136 +karman_re50,sr,152,60.8,alpha,upper,-2.4694577180164945 +karman_re50,sr,152,60.8,alpha,lower,4.392959643004738 +karman_re50,sr,153,61.2,alpha,front,-1.2441183202188812 +karman_re50,sr,153,61.2,alpha,upper,-2.545747041497784 +karman_re50,sr,153,61.2,alpha,lower,4.316670319523448 +karman_re50,sr,154,61.6,alpha,front,-1.3626961730648448 +karman_re50,sr,154,61.6,alpha,upper,-2.691926491415971 +karman_re50,sr,154,61.6,alpha,lower,4.170490869605261 +karman_re50,sr,155,62.0,alpha,front,-1.3554984316321015 +karman_re50,sr,155,62.0,alpha,upper,-2.8853755334719806 +karman_re50,sr,155,62.0,alpha,lower,3.977041827549252 +karman_re50,sr,156,62.4,alpha,front,-1.2250413661549204 +karman_re50,sr,156,62.4,alpha,upper,-3.110655830753709 +karman_re50,sr,156,62.4,alpha,lower,3.7517615302675233 +karman_re50,sr,157,62.8,alpha,front,-0.9960433701122617 +karman_re50,sr,157,62.8,alpha,upper,-3.3617606759859973 +karman_re50,sr,157,62.8,alpha,lower,3.5006566850352345 +karman_re50,sr,158,63.2,alpha,front,-0.7023773000885722 +karman_re50,sr,158,63.2,alpha,upper,-3.6204899927633747 +karman_re50,sr,158,63.2,alpha,lower,3.2419273682578575 +karman_re50,sr,159,63.6,alpha,front,-0.3727853042275691 +karman_re50,sr,159,63.6,alpha,upper,-3.864857198454372 +karman_re50,sr,159,63.6,alpha,lower,2.9975601625668604 +karman_re50,sr,160,64.0,alpha,front,-0.024689650154221643 +karman_re50,sr,160,64.0,alpha,upper,-4.079532811920743 +karman_re50,sr,160,64.0,alpha,lower,2.78288454910049 +karman_re50,sr,161,64.4,alpha,front,0.3269980592651984 +karman_re50,sr,161,64.4,alpha,upper,-4.2515010320176625 +karman_re50,sr,161,64.4,alpha,lower,2.6109163290035693 +karman_re50,sr,162,64.8,alpha,front,0.6666570119551037 +karman_re50,sr,162,64.8,alpha,upper,-4.36511753321481 +karman_re50,sr,162,64.8,alpha,lower,2.4972998278064225 +karman_re50,sr,163,65.2,alpha,front,0.9718150616975448 +karman_re50,sr,163,65.2,alpha,upper,-4.397065104260426 +karman_re50,sr,163,65.2,alpha,lower,2.4653522567608066 +karman_re50,sr,164,65.6,alpha,front,1.212648181363558 +karman_re50,sr,164,65.6,alpha,upper,-4.340245282978198 +karman_re50,sr,164,65.6,alpha,lower,2.5221720780430346 +karman_re50,sr,165,66.0,alpha,front,1.352770685119431 +karman_re50,sr,165,66.0,alpha,upper,-4.200958306618102 +karman_re50,sr,165,66.0,alpha,lower,2.66145905440313 +karman_re50,sr,166,66.4,alpha,front,1.3671545796354192 +karman_re50,sr,166,66.4,alpha,upper,-4.01303837664482 +karman_re50,sr,166,66.4,alpha,lower,2.849378984376412 +karman_re50,sr,167,66.8,alpha,front,1.2593132660003643 +karman_re50,sr,167,66.8,alpha,upper,-3.794594221961286 +karman_re50,sr,167,66.8,alpha,lower,3.0678231390599464 +karman_re50,sr,168,67.2,alpha,front,1.0442602279865483 +karman_re50,sr,168,67.2,alpha,upper,-3.548216153247774 +karman_re50,sr,168,67.2,alpha,lower,3.314201207773458 +karman_re50,sr,169,67.6,alpha,front,0.759719894393534 +karman_re50,sr,169,67.6,alpha,upper,-3.289785999541205 +karman_re50,sr,169,67.6,alpha,lower,3.5726313614800267 +karman_re50,sr,170,68.0,alpha,front,0.43481315481450983 +karman_re50,sr,170,68.0,alpha,upper,-3.0403780864143792 +karman_re50,sr,170,68.0,alpha,lower,3.822039274606853 +karman_re50,sr,171,68.4,alpha,front,0.08923993907980157 +karman_re50,sr,171,68.4,alpha,upper,-2.8189423010227586 +karman_re50,sr,171,68.4,alpha,lower,4.043475059998474 +karman_re50,sr,172,68.8,alpha,front,-0.26277111956173504 +karman_re50,sr,172,68.8,alpha,upper,-2.6370165941659542 +karman_re50,sr,172,68.8,alpha,lower,4.225400766855278 +karman_re50,sr,173,69.2,alpha,front,-0.6070695634330605 +karman_re50,sr,173,69.2,alpha,upper,-2.511534509126763 +karman_re50,sr,173,69.2,alpha,lower,4.350882851894469 +karman_re50,sr,174,69.6,alpha,front,-0.9197687205118802 +karman_re50,sr,174,69.6,alpha,upper,-2.464925968415634 +karman_re50,sr,174,69.6,alpha,lower,4.397491392605598 +karman_re50,sr,175,70.0,alpha,front,-1.1735033139541677 +karman_re50,sr,175,70.0,alpha,upper,-2.5084764992334994 +karman_re50,sr,175,70.0,alpha,lower,4.353940861787732 +karman_re50,sr,176,70.4,alpha,front,-1.333748609216315 +karman_re50,sr,176,70.4,alpha,upper,-2.632330467285806 +karman_re50,sr,176,70.4,alpha,lower,4.230086893735426 +karman_re50,sr,177,70.8,alpha,front,-1.3728346468820811 +karman_re50,sr,177,70.8,alpha,upper,-2.8120661177692856 +karman_re50,sr,177,70.8,alpha,lower,4.050351243251947 +karman_re50,sr,178,71.2,alpha,front,-1.2849429211081096 +karman_re50,sr,178,71.2,alpha,upper,-3.026719046605859 +karman_re50,sr,178,71.2,alpha,lower,3.8356983144153736 +karman_re50,sr,179,71.6,alpha,front,-1.0877090350396688 +karman_re50,sr,179,71.6,alpha,upper,-3.269444889922104 +karman_re50,sr,179,71.6,alpha,lower,3.592972471099129 +karman_re50,sr,180,72.0,alpha,front,-0.8146985320004547 +karman_re50,sr,180,72.0,alpha,upper,-3.527850379802987 +karman_re50,sr,180,72.0,alpha,lower,3.3345669812182446 +karman_re50,sr,181,72.4,alpha,front,-0.4941361358890839 +karman_re50,sr,181,72.4,alpha,upper,-3.7789704496190324 +karman_re50,sr,181,72.4,alpha,lower,3.0834469114022 +karman_re50,sr,182,72.8,alpha,front,-0.15149364107624763 +karman_re50,sr,182,72.8,alpha,upper,-4.0056558237356175 +karman_re50,sr,182,72.8,alpha,lower,2.856761537285615 +karman_re50,sr,183,73.2,alpha,front,0.20012878675266504 +karman_re50,sr,183,73.2,alpha,upper,-4.194962713289086 +karman_re50,sr,183,73.2,alpha,lower,2.667454647732146 +karman_re50,sr,184,73.6,alpha,front,0.5464531493951774 +karman_re50,sr,184,73.6,alpha,upper,-4.332930783958385 +karman_re50,sr,184,73.6,alpha,lower,2.5294865770628476 +karman_re50,sr,185,74.0,alpha,front,0.8672507645814799 +karman_re50,sr,185,74.0,alpha,upper,-4.395628208045519 +karman_re50,sr,185,74.0,alpha,lower,2.4667891529757133 +karman_re50,sr,186,74.4,alpha,front,1.1357376821341647 +karman_re50,sr,186,74.4,alpha,upper,-4.370471714830179 +karman_re50,sr,186,74.4,alpha,lower,2.4919456461910534 +karman_re50,sr,187,74.8,alpha,front,1.3137620807162163 +karman_re50,sr,187,74.8,alpha,upper,-4.257413346873533 +karman_re50,sr,187,74.8,alpha,lower,2.6050040141476996 +karman_re50,sr,188,75.2,alpha,front,1.376172668735214 +karman_re50,sr,188,75.2,alpha,upper,-4.08597600801219 +karman_re50,sr,188,75.2,alpha,lower,2.7764413530090426 +karman_re50,sr,189,75.6,alpha,front,1.3106073412643513 +karman_re50,sr,189,75.6,alpha,upper,-3.877265843198998 +karman_re50,sr,189,75.6,alpha,lower,2.985151517822234 +karman_re50,sr,190,76.0,alpha,front,1.1308381190861199 +karman_re50,sr,190,76.0,alpha,upper,-3.6383301600088513 +karman_re50,sr,190,76.0,alpha,lower,3.224087201012381 +karman_re50,sr,191,76.4,alpha,front,0.8658908207080207 +karman_re50,sr,191,76.4,alpha,upper,-3.371105525495533 +karman_re50,sr,191,76.4,alpha,lower,3.4913118355257 +karman_re50,sr,192,76.8,alpha,front,0.554490668768227 +karman_re50,sr,192,76.8,alpha,upper,-3.12826534555528 +karman_re50,sr,192,76.8,alpha,lower,3.734152015465953 +karman_re50,sr,193,77.2,alpha,front,0.21493832001374902 +karman_re50,sr,193,77.2,alpha,upper,-2.9006369607208375 +karman_re50,sr,193,77.2,alpha,lower,3.961780400300395 +karman_re50,sr,194,77.6,alpha,front,-0.1343725928385852 +karman_re50,sr,194,77.6,alpha,upper,-2.6938123606058477 +karman_re50,sr,194,77.6,alpha,lower,4.1686050004153845 +karman_re50,sr,195,78.0,alpha,front,-0.48472467560357324 +karman_re50,sr,195,78.0,alpha,upper,-2.552019113267812 +karman_re50,sr,195,78.0,alpha,lower,4.310398247753421 +karman_re50,sr,196,78.4,alpha,front,-0.8111051446601869 +karman_re50,sr,196,78.4,alpha,upper,-2.4764730539654987 +karman_re50,sr,196,78.4,alpha,lower,4.385944307055734 +karman_re50,sr,197,78.8,alpha,front,-1.0900719927420635 +karman_re50,sr,197,78.8,alpha,upper,-2.4840976777564245 +karman_re50,sr,197,78.8,alpha,lower,4.378319683264808 +karman_re50,sr,198,79.2,alpha,front,-1.288674058848071 +karman_re50,sr,198,79.2,alpha,upper,-2.580222197938599 +karman_re50,sr,198,79.2,alpha,lower,4.282195163082633 +karman_re50,sr,199,79.6,alpha,front,-1.3734730273000635 +karman_re50,sr,199,79.6,alpha,upper,-2.73966895912526 +karman_re50,sr,199,79.6,alpha,lower,4.122748401895972 +karman_re50,sr,0,0.0,omega,front,-0.010503044624461949 +karman_re50,sr,0,0.0,omega,upper,-0.02529673991688886 +karman_re50,sr,0,0.0,omega,lower,0.04332743369332347 +karman_re50,sr,1,0.4,omega,front,-0.007146424802377701 +karman_re50,sr,1,0.4,omega,upper,-0.028460537830382274 +karman_re50,sr,1,0.4,omega,lower,0.04016363577983005 +karman_re50,sr,2,0.8,omega,front,-0.004227575084521784 +karman_re50,sr,2,0.8,omega,upper,-0.02851941434068413 +karman_re50,sr,2,0.8,omega,lower,0.0401047592695282 +karman_re50,sr,3,1.2,omega,front,-0.0028351785599890046 +karman_re50,sr,3,1.2,omega,upper,-0.031105892993226945 +karman_re50,sr,3,1.2,omega,lower,0.03751828061698538 +karman_re50,sr,4,1.6,omega,front,0.0003483555538907221 +karman_re50,sr,4,1.6,omega,upper,-0.03824062621788048 +karman_re50,sr,4,1.6,omega,lower,0.030383547392331848 +karman_re50,sr,5,2.0,omega,front,0.0047079126152442296 +karman_re50,sr,5,2.0,omega,upper,-0.04274111518091459 +karman_re50,sr,5,2.0,omega,lower,0.025883058429297733 +karman_re50,sr,6,2.4,omega,front,0.008819546485029764 +karman_re50,sr,6,2.4,omega,upper,-0.04362781625329101 +karman_re50,sr,6,2.4,omega,lower,0.02499635735692131 +karman_re50,sr,7,2.8,omega,front,0.012544946881993913 +karman_re50,sr,7,2.8,omega,upper,-0.044002056313976474 +karman_re50,sr,7,2.8,omega,lower,0.02462211729623584 +karman_re50,sr,8,3.2,omega,front,0.015464567602489853 +karman_re50,sr,8,3.2,omega,upper,-0.04431356652221141 +karman_re50,sr,8,3.2,omega,lower,0.02431060708800091 +karman_re50,sr,9,3.6,omega,front,0.01693567171952042 +karman_re50,sr,9,3.6,omega,upper,-0.04343843156611455 +karman_re50,sr,9,3.6,omega,lower,0.02518574204409777 +karman_re50,sr,10,4.0,omega,front,0.016745810154923914 +karman_re50,sr,10,4.0,omega,upper,-0.04170800385393024 +karman_re50,sr,10,4.0,omega,lower,0.026916169756282082 +karman_re50,sr,11,4.4,omega,front,0.015057288177385265 +karman_re50,sr,11,4.4,omega,upper,-0.03945089689128509 +karman_re50,sr,11,4.4,omega,lower,0.029173276718927235 +karman_re50,sr,12,4.8,omega,front,0.01229687894705672 +karman_re50,sr,12,4.8,omega,upper,-0.03697743184642267 +karman_re50,sr,12,4.8,omega,lower,0.03164674176378965 +karman_re50,sr,13,5.2,omega,front,0.008868176483103615 +karman_re50,sr,13,5.2,omega,upper,-0.034294855621210936 +karman_re50,sr,13,5.2,omega,lower,0.03432931798900139 +karman_re50,sr,14,5.6,omega,front,0.0051120657389730215 +karman_re50,sr,14,5.6,omega,upper,-0.031479831607154035 +karman_re50,sr,14,5.6,omega,lower,0.03714434200305829 +karman_re50,sr,15,6.0,omega,front,0.0012067913335122935 +karman_re50,sr,15,6.0,omega,upper,-0.028817446224919725 +karman_re50,sr,15,6.0,omega,lower,0.039806727385292597 +karman_re50,sr,16,6.4,omega,front,-0.002700721016445629 +karman_re50,sr,16,6.4,omega,upper,-0.026524716781201895 +karman_re50,sr,16,6.4,omega,lower,0.04209945682901043 +karman_re50,sr,17,6.8,omega,front,-0.006454047559709574 +karman_re50,sr,17,6.8,omega,upper,-0.02490805324867717 +karman_re50,sr,17,6.8,omega,lower,0.04371612036153515 +karman_re50,sr,18,7.2,omega,front,-0.009800632137526718 +karman_re50,sr,18,7.2,omega,upper,-0.024021783032021043 +karman_re50,sr,18,7.2,omega,lower,0.04460239057819128 +karman_re50,sr,19,7.6,omega,front,-0.012376134377667065 +karman_re50,sr,19,7.6,omega,upper,-0.024531432063092235 +karman_re50,sr,19,7.6,omega,lower,0.04409274154712008 +karman_re50,sr,20,8.0,omega,front,-0.013749080290464257 +karman_re50,sr,20,8.0,omega,upper,-0.0263643242688723 +karman_re50,sr,20,8.0,omega,lower,0.04225984934134003 +karman_re50,sr,21,8.4,omega,front,-0.013644009924353606 +karman_re50,sr,21,8.4,omega,upper,-0.02885759649720149 +karman_re50,sr,21,8.4,omega,lower,0.039766577113010834 +karman_re50,sr,22,8.8,omega,front,-0.012155699550306714 +karman_re50,sr,22,8.8,omega,upper,-0.03122679445775142 +karman_re50,sr,22,8.8,omega,lower,0.037397379152460906 +karman_re50,sr,23,9.2,omega,front,-0.009667444927947315 +karman_re50,sr,23,9.2,omega,upper,-0.033510261264711995 +karman_re50,sr,23,9.2,omega,lower,0.03511391234550033 +karman_re50,sr,24,9.6,omega,front,-0.00657608042789882 +karman_re50,sr,24,9.6,omega,upper,-0.036016623590154735 +karman_re50,sr,24,9.6,omega,lower,0.03260755002005759 +karman_re50,sr,25,10.0,omega,front,-0.0031516745332215634 +karman_re50,sr,25,10.0,omega,upper,-0.03868806303234884 +karman_re50,sr,25,10.0,omega,lower,0.02993611057786348 +karman_re50,sr,26,10.4,omega,front,0.00042347346365709536 +karman_re50,sr,26,10.4,omega,upper,-0.04113343110788925 +karman_re50,sr,26,10.4,omega,lower,0.02749074250232307 +karman_re50,sr,27,10.8,omega,front,0.004025532433009607 +karman_re50,sr,27,10.8,omega,upper,-0.04293140268590779 +karman_re50,sr,27,10.8,omega,lower,0.025692770924304525 +karman_re50,sr,28,11.2,omega,front,0.007468821787394061 +karman_re50,sr,28,11.2,omega,upper,-0.044041456014279064 +karman_re50,sr,28,11.2,omega,lower,0.024582717595933258 +karman_re50,sr,29,11.6,omega,front,0.01051133762032165 +karman_re50,sr,29,11.6,omega,upper,-0.04420063969465842 +karman_re50,sr,29,11.6,omega,lower,0.024423533915553908 +karman_re50,sr,30,12.0,omega,front,0.012801326460709537 +karman_re50,sr,30,12.0,omega,upper,-0.04341881164502798 +karman_re50,sr,30,12.0,omega,lower,0.025205361965184345 +karman_re50,sr,31,12.4,omega,front,0.013992360150267547 +karman_re50,sr,31,12.4,omega,upper,-0.041852893172620934 +karman_re50,sr,31,12.4,omega,lower,0.02677128043759139 +karman_re50,sr,32,12.8,omega,front,0.01390024609169421 +karman_re50,sr,32,12.8,omega,upper,-0.0398868482797678 +karman_re50,sr,32,12.8,omega,lower,0.02873732533044452 +karman_re50,sr,33,13.2,omega,front,0.01255774912220264 +karman_re50,sr,33,13.2,omega,upper,-0.03776763493957738 +karman_re50,sr,33,13.2,omega,lower,0.030856538670634943 +karman_re50,sr,34,13.6,omega,front,0.010240616460105639 +karman_re50,sr,34,13.6,omega,upper,-0.035295564466587034 +karman_re50,sr,34,13.6,omega,lower,0.03332860914362529 +karman_re50,sr,35,14.0,omega,front,0.007264085177621968 +karman_re50,sr,35,14.0,omega,upper,-0.03263700654470902 +karman_re50,sr,35,14.0,omega,lower,0.035987167065503305 +karman_re50,sr,36,14.4,omega,front,0.003936704182116948 +karman_re50,sr,36,14.4,omega,upper,-0.030017548398833593 +karman_re50,sr,36,14.4,omega,lower,0.03860662521137873 +karman_re50,sr,37,14.8,omega,front,0.00042323062446537164 +karman_re50,sr,37,14.8,omega,upper,-0.02781257954571981 +karman_re50,sr,37,14.8,omega,lower,0.04081159406449251 +karman_re50,sr,38,15.2,omega,front,-0.0031271929239107144 +karman_re50,sr,38,15.2,omega,upper,-0.02613610014607548 +karman_re50,sr,38,15.2,omega,lower,0.04248807346413685 +karman_re50,sr,39,15.6,omega,front,-0.006550264826401418 +karman_re50,sr,39,15.6,omega,upper,-0.025011757023390674 +karman_re50,sr,39,15.6,omega,lower,0.043612416586821655 +karman_re50,sr,40,16.0,omega,front,-0.009625040226744054 +karman_re50,sr,40,16.0,omega,upper,-0.024610551179956284 +karman_re50,sr,40,16.0,omega,lower,0.04401362243025604 +karman_re50,sr,41,16.4,omega,front,-0.012038940047136508 +karman_re50,sr,41,16.4,omega,upper,-0.025197652235970223 +karman_re50,sr,41,16.4,omega,lower,0.0434265213742421 +karman_re50,sr,42,16.8,omega,front,-0.013460241345204293 +karman_re50,sr,42,16.8,omega,upper,-0.026638581443114265 +karman_re50,sr,42,16.8,omega,lower,0.04198559216709805 +karman_re50,sr,43,17.2,omega,front,-0.013626145662204818 +karman_re50,sr,43,17.2,omega,upper,-0.02854788431230816 +karman_re50,sr,43,17.2,omega,lower,0.04007628929790417 +karman_re50,sr,44,17.6,omega,front,-0.012543989178167519 +karman_re50,sr,44,17.6,omega,upper,-0.030700574989720012 +karman_re50,sr,44,17.6,omega,lower,0.03792359862049231 +karman_re50,sr,45,18.0,omega,front,-0.010415065519868767 +karman_re50,sr,45,18.0,omega,upper,-0.03308506147727789 +karman_re50,sr,45,18.0,omega,lower,0.03553911213293444 +karman_re50,sr,46,18.4,omega,front,-0.007585089340708149 +karman_re50,sr,46,18.4,omega,upper,-0.03568907123801593 +karman_re50,sr,46,18.4,omega,lower,0.03293510237219639 +karman_re50,sr,47,18.8,omega,front,-0.004343011695457061 +karman_re50,sr,47,18.8,omega,upper,-0.03822156047164263 +karman_re50,sr,47,18.8,omega,lower,0.030402613138569696 +karman_re50,sr,48,19.2,omega,front,-0.0008889378968985905 +karman_re50,sr,48,19.2,omega,upper,-0.04047797776064362 +karman_re50,sr,48,19.2,omega,lower,0.028146195849568702 +karman_re50,sr,49,19.6,omega,front,0.0026283342359021845 +karman_re50,sr,49,19.6,omega,upper,-0.04225732662781162 +karman_re50,sr,49,19.6,omega,lower,0.026366846982400695 +karman_re50,sr,50,20.0,omega,front,0.006068033421932342 +karman_re50,sr,50,20.0,omega,upper,-0.04348197996549069 +karman_re50,sr,50,20.0,omega,lower,0.025142193644721634 +karman_re50,sr,51,20.4,omega,front,0.009198909531791989 +karman_re50,sr,51,20.4,omega,upper,-0.04398142395807012 +karman_re50,sr,51,20.4,omega,lower,0.024642749652142203 +karman_re50,sr,52,20.8,omega,front,0.011751141833341111 +karman_re50,sr,52,20.8,omega,upper,-0.04353929900087428 +karman_re50,sr,52,20.8,omega,lower,0.02508487460933804 +karman_re50,sr,53,21.2,omega,front,0.013354414406390734 +karman_re50,sr,53,21.2,omega,upper,-0.04227036343888203 +karman_re50,sr,53,21.2,omega,lower,0.02635381017133029 +karman_re50,sr,54,21.6,omega,front,0.013759266938071555 +karman_re50,sr,54,21.6,omega,upper,-0.04046745757326812 +karman_re50,sr,54,21.6,omega,lower,0.028156716036944213 +karman_re50,sr,55,22.0,omega,front,0.012893871197406011 +karman_re50,sr,55,22.0,omega,upper,-0.038392674135853316 +karman_re50,sr,55,22.0,omega,lower,0.03023149947435901 +karman_re50,sr,56,22.4,omega,front,0.010934220913425668 +karman_re50,sr,56,22.4,omega,upper,-0.03599701737119355 +karman_re50,sr,56,22.4,omega,lower,0.03262715623901878 +karman_re50,sr,57,22.8,omega,front,0.008211392123324179 +karman_re50,sr,57,22.8,omega,upper,-0.033455341623728374 +karman_re50,sr,57,22.8,omega,lower,0.035168831986483955 +karman_re50,sr,58,23.2,omega,front,0.005027352018149526 +karman_re50,sr,58,23.2,omega,upper,-0.030868867538560687 +karman_re50,sr,58,23.2,omega,lower,0.03775530607165164 +karman_re50,sr,59,23.6,omega,front,0.0016007234414085628 +karman_re50,sr,59,23.6,omega,upper,-0.02857119771741398 +karman_re50,sr,59,23.6,omega,lower,0.04005297589279835 +karman_re50,sr,60,24.0,omega,front,-0.001917763451020249 +karman_re50,sr,60,24.0,omega,upper,-0.026698531286570928 +karman_re50,sr,60,24.0,omega,lower,0.0419256423236414 +karman_re50,sr,61,24.4,omega,front,-0.00537953694435211 +karman_re50,sr,61,24.4,omega,upper,-0.025371591582926054 +karman_re50,sr,61,24.4,omega,lower,0.04325258202728627 +karman_re50,sr,62,24.8,omega,front,-0.008592052088434523 +karman_re50,sr,62,24.8,omega,upper,-0.024715835266463683 +karman_re50,sr,62,24.8,omega,lower,0.04390833834374864 +karman_re50,sr,63,25.2,omega,front,-0.011268277953628317 +karman_re50,sr,63,25.2,omega,upper,-0.024941726983029055 +karman_re50,sr,63,25.2,omega,lower,0.04368244662718327 +karman_re50,sr,64,25.6,omega,front,-0.01307821475404961 +karman_re50,sr,64,25.6,omega,upper,-0.026092547179324212 +karman_re50,sr,64,25.6,omega,lower,0.04253162643088811 +karman_re50,sr,65,26.0,omega,front,-0.013713686540707757 +karman_re50,sr,65,26.0,omega,upper,-0.02779656785098345 +karman_re50,sr,65,26.0,omega,lower,0.04082760575922887 +karman_re50,sr,66,26.4,omega,front,-0.013076993315372556 +karman_re50,sr,66,26.4,omega,upper,-0.029879138662989527 +karman_re50,sr,66,26.4,omega,lower,0.0387450349472228 +karman_re50,sr,67,26.8,omega,front,-0.01129880726058372 +karman_re50,sr,67,26.8,omega,upper,-0.03218073642674533 +karman_re50,sr,67,26.8,omega,lower,0.036443437183466994 +karman_re50,sr,68,27.2,omega,front,-0.008688642091502007 +karman_re50,sr,68,27.2,omega,upper,-0.03474674105905285 +karman_re50,sr,68,27.2,omega,lower,0.03387743255115948 +karman_re50,sr,69,27.6,omega,front,-0.005568129673478112 +karman_re50,sr,69,27.6,omega,upper,-0.03732439097547546 +karman_re50,sr,69,27.6,omega,lower,0.03129978263473686 +karman_re50,sr,70,28.0,omega,front,-0.0021702491112053006 +karman_re50,sr,70,28.0,omega,upper,-0.039671924353340375 +karman_re50,sr,70,28.0,omega,lower,0.028952249256871954 +karman_re50,sr,71,28.4,omega,front,0.0013343165826411264 +karman_re50,sr,71,28.4,omega,upper,-0.041647455684331966 +karman_re50,sr,71,28.4,omega,lower,0.02697671792588036 +karman_re50,sr,72,28.8,omega,front,0.004824615952659201 +karman_re50,sr,72,28.8,omega,upper,-0.04309094109908867 +karman_re50,sr,72,28.8,omega,lower,0.025533232511123653 +karman_re50,sr,73,29.2,omega,front,0.008109320964143192 +karman_re50,sr,73,29.2,omega,upper,-0.043903679621119254 +karman_re50,sr,73,29.2,omega,lower,0.024720493989093067 +karman_re50,sr,74,29.6,omega,front,0.010902262820696814 +karman_re50,sr,74,29.6,omega,upper,-0.04380456149103311 +karman_re50,sr,74,29.6,omega,lower,0.024819612119179216 +karman_re50,sr,75,30.0,omega,front,0.012888736359783276 +karman_re50,sr,75,30.0,omega,upper,-0.042834374891171374 +karman_re50,sr,75,30.0,omega,lower,0.025789798719040954 +karman_re50,sr,76,30.4,omega,front,0.01375465202218304 +karman_re50,sr,76,30.4,omega,upper,-0.041190533954183504 +karman_re50,sr,76,30.4,omega,lower,0.027433639656028817 +karman_re50,sr,77,30.8,omega,front,0.01334174669759573 +karman_re50,sr,77,30.8,omega,upper,-0.03919638904709162 +karman_re50,sr,77,30.8,omega,lower,0.0294277845631207 +karman_re50,sr,78,31.2,omega,front,0.011744843720787846 +karman_re50,sr,78,31.2,omega,upper,-0.0369059691727296 +karman_re50,sr,78,31.2,omega,lower,0.031718204437482724 +karman_re50,sr,79,31.6,omega,front,0.009256230791989922 +karman_re50,sr,79,31.6,omega,upper,-0.03437256646407754 +karman_re50,sr,79,31.6,omega,lower,0.03425160714613479 +karman_re50,sr,80,32.0,omega,front,0.0061984336556571915 +karman_re50,sr,80,32.0,omega,upper,-0.031774418168085614 +karman_re50,sr,80,32.0,omega,lower,0.03684975544212671 +karman_re50,sr,81,32.4,omega,front,0.002838546840310273 +karman_re50,sr,81,32.4,omega,upper,-0.029355288140190585 +karman_re50,sr,81,32.4,omega,lower,0.03926888547002174 +karman_re50,sr,82,32.8,omega,front,-0.0006691249183126395 +karman_re50,sr,82,32.8,omega,upper,-0.027314249992671333 +karman_re50,sr,82,32.8,omega,lower,0.041309923617540996 +karman_re50,sr,83,33.2,omega,front,-0.00416991139081615 +karman_re50,sr,83,33.2,omega,upper,-0.025749930101558682 +karman_re50,sr,83,33.2,omega,lower,0.04287424350865364 +karman_re50,sr,84,33.6,omega,front,-0.007505982649449608 +karman_re50,sr,84,33.6,omega,upper,-0.024817500469412238 +karman_re50,sr,84,33.6,omega,lower,0.04380667314080009 +karman_re50,sr,85,34.0,omega,front,-0.010414134899924345 +karman_re50,sr,85,34.0,omega,upper,-0.024723884503895566 +karman_re50,sr,85,34.0,omega,lower,0.04390028910631676 +karman_re50,sr,86,34.4,omega,front,-0.012574137090785012 +karman_re50,sr,86,34.4,omega,upper,-0.025565619768148147 +karman_re50,sr,86,34.4,omega,lower,0.043058553842064175 +karman_re50,sr,87,34.8,omega,front,-0.013675281596073837 +karman_re50,sr,87,34.8,omega,upper,-0.027094484648609436 +karman_re50,sr,87,34.8,omega,lower,0.04152968896160289 +karman_re50,sr,88,35.2,omega,front,-0.013473315756226921 +karman_re50,sr,88,35.2,omega,upper,-0.029059882496652926 +karman_re50,sr,88,35.2,omega,lower,0.0395642911135594 +karman_re50,sr,89,35.6,omega,front,-0.01207749861510095 +karman_re50,sr,89,35.6,omega,upper,-0.03130361161755153 +karman_re50,sr,89,35.6,omega,lower,0.03732056199266079 +karman_re50,sr,90,36.0,omega,front,-0.009735690316538658 +karman_re50,sr,90,36.0,omega,upper,-0.033805930293548635 +karman_re50,sr,90,36.0,omega,lower,0.03481824331666369 +karman_re50,sr,91,36.4,omega,front,-0.006749480764232214 +karman_re50,sr,91,36.4,omega,upper,-0.03641347824755161 +karman_re50,sr,91,36.4,omega,lower,0.03221069536266071 +karman_re50,sr,92,36.8,omega,front,-0.0034273227399658486 +karman_re50,sr,92,36.8,omega,upper,-0.03886024546233921 +karman_re50,sr,92,36.8,omega,lower,0.02976392814787311 +karman_re50,sr,93,37.2,omega,front,5.596862009264591e-05 +karman_re50,sr,93,37.2,omega,upper,-0.0409892573446351 +karman_re50,sr,93,37.2,omega,lower,0.027634916265577222 +karman_re50,sr,94,37.6,omega,front,0.0035723908937689225 +karman_re50,sr,94,37.6,omega,upper,-0.04264492930565988 +karman_re50,sr,94,37.6,omega,lower,0.025979244304552444 +karman_re50,sr,95,38.0,omega,front,0.006951873508218711 +karman_re50,sr,95,38.0,omega,upper,-0.04371402698126868 +karman_re50,sr,95,38.0,omega,lower,0.024910146628943638 +karman_re50,sr,96,38.4,omega,front,0.009960593096427984 +karman_re50,sr,96,38.4,omega,upper,-0.043955379262638455 +karman_re50,sr,96,38.4,omega,lower,0.024668794347573877 +karman_re50,sr,97,38.8,omega,front,0.012281783900839883 +karman_re50,sr,97,38.8,omega,upper,-0.04329365643180204 +karman_re50,sr,97,38.8,omega,lower,0.025330517178410294 +karman_re50,sr,98,39.2,omega,front,0.013579552505254555 +karman_re50,sr,98,39.2,omega,upper,-0.041847261599089525 +karman_re50,sr,98,39.2,omega,lower,0.0267769120111228 +karman_re50,sr,99,39.6,omega,front,0.013629695426735191 +karman_re50,sr,99,39.6,omega,upper,-0.03995760757769134 +karman_re50,sr,99,39.6,omega,lower,0.028666566032520983 +karman_re50,sr,100,40.0,omega,front,0.012432513251971852 +karman_re50,sr,100,40.0,omega,upper,-0.03772877571199815 +karman_re50,sr,100,40.0,omega,lower,0.030895397898214178 +karman_re50,sr,101,40.4,omega,front,0.010227597992839213 +karman_re50,sr,101,40.4,omega,upper,-0.03529296410768148 +karman_re50,sr,101,40.4,omega,lower,0.033331209502530844 +karman_re50,sr,102,40.8,omega,front,0.007340853109072662 +karman_re50,sr,102,40.8,omega,upper,-0.03271295285831828 +karman_re50,sr,102,40.8,omega,lower,0.03591122075189404 +karman_re50,sr,103,41.2,omega,front,0.0040678100397667375 +karman_re50,sr,103,41.2,omega,upper,-0.030199100037667508 +karman_re50,sr,103,41.2,omega,lower,0.038425073572544814 +karman_re50,sr,104,41.6,omega,front,0.0006004617206045801 +karman_re50,sr,104,41.6,omega,upper,-0.028014800079461104 +karman_re50,sr,104,41.6,omega,lower,0.04060937353075122 +karman_re50,sr,105,42.0,omega,front,-0.00295613012639049 +karman_re50,sr,105,42.0,omega,upper,-0.02628962332621429 +karman_re50,sr,105,42.0,omega,lower,0.042334550283998025 +karman_re50,sr,106,42.4,omega,front,-0.006340483732612835 +karman_re50,sr,106,42.4,omega,upper,-0.025051640865456703 +karman_re50,sr,106,42.4,omega,lower,0.04357253274475562 +karman_re50,sr,107,42.8,omega,front,-0.009445273402155374 +karman_re50,sr,107,42.8,omega,upper,-0.024600238046919857 +karman_re50,sr,107,42.8,omega,lower,0.04402393556329247 +karman_re50,sr,108,43.2,omega,front,-0.011919933469758897 +karman_re50,sr,108,43.2,omega,upper,-0.025128736635139558 +karman_re50,sr,108,43.2,omega,lower,0.043495436975072764 +karman_re50,sr,109,43.6,omega,front,-0.013430098760563582 +karman_re50,sr,109,43.6,omega,upper,-0.026495021230585492 +karman_re50,sr,109,43.6,omega,lower,0.04212915237962683 +karman_re50,sr,110,44.0,omega,front,-0.013703474141212684 +karman_re50,sr,110,44.0,omega,upper,-0.02832892739364372 +karman_re50,sr,110,44.0,omega,lower,0.0402952462165686 +karman_re50,sr,111,44.4,omega,front,-0.012720606724480535 +karman_re50,sr,111,44.4,omega,upper,-0.03045485020789548 +karman_re50,sr,111,44.4,omega,lower,0.038169323402316845 +karman_re50,sr,112,44.8,omega,front,-0.0106704683028412 +karman_re50,sr,112,44.8,omega,upper,-0.03285893377966429 +karman_re50,sr,112,44.8,omega,lower,0.03576523983054803 +karman_re50,sr,113,45.2,omega,front,-0.007884622645362839 +karman_re50,sr,113,45.2,omega,upper,-0.0354661985564094 +karman_re50,sr,113,45.2,omega,lower,0.03315797505380292 +karman_re50,sr,114,45.6,omega,front,-0.004660904986100208 +karman_re50,sr,114,45.6,omega,upper,-0.037999442929390406 +karman_re50,sr,114,45.6,omega,lower,0.03062473068082192 +karman_re50,sr,115,46.0,omega,front,-0.0011752745262978476 +karman_re50,sr,115,46.0,omega,upper,-0.040270625019718134 +karman_re50,sr,115,46.0,omega,lower,0.028353548590494188 +karman_re50,sr,116,46.4,omega,front,0.0023024211192088817 +karman_re50,sr,116,46.4,omega,upper,-0.04211034849622959 +karman_re50,sr,116,46.4,omega,lower,0.02651382511398273 +karman_re50,sr,117,46.8,omega,front,0.005761747350705739 +karman_re50,sr,117,46.8,omega,upper,-0.043429579993118715 +karman_re50,sr,117,46.8,omega,lower,0.025194593617093607 +karman_re50,sr,118,47.2,omega,front,0.008942627632650682 +karman_re50,sr,118,47.2,omega,upper,-0.043980047655698566 +karman_re50,sr,118,47.2,omega,lower,0.024644125954513756 +karman_re50,sr,119,47.6,omega,front,0.011550904921959645 +karman_re50,sr,119,47.6,omega,upper,-0.04361555285107542 +karman_re50,sr,119,47.6,omega,lower,0.0250086207591369 +karman_re50,sr,120,48.0,omega,front,0.013248578143617807 +karman_re50,sr,120,48.0,omega,upper,-0.04243302898156642 +karman_re50,sr,120,48.0,omega,lower,0.0261911446286459 +karman_re50,sr,121,48.4,omega,front,0.013763731338616008 +karman_re50,sr,121,48.4,omega,upper,-0.04068879257191527 +karman_re50,sr,121,48.4,omega,lower,0.027935381038297055 +karman_re50,sr,122,48.8,omega,front,0.013000775719523539 +karman_re50,sr,122,48.8,omega,upper,-0.038605146904296006 +karman_re50,sr,122,48.8,omega,lower,0.03001902670591632 +karman_re50,sr,123,49.2,omega,front,0.01113950563880911 +karman_re50,sr,123,49.2,omega,upper,-0.03620628840967231 +karman_re50,sr,123,49.2,omega,lower,0.032417885200540016 +karman_re50,sr,124,49.6,omega,front,0.008443709892899495 +karman_re50,sr,124,49.6,omega,upper,-0.033623306844018284 +karman_re50,sr,124,49.6,omega,lower,0.03500086676619404 +karman_re50,sr,125,50.0,omega,front,0.005280979807857257 +karman_re50,sr,125,50.0,omega,upper,-0.031058579554287907 +karman_re50,sr,125,50.0,omega,lower,0.03756559405592442 +karman_re50,sr,126,50.4,omega,front,0.0018688878110168891 +karman_re50,sr,126,50.4,omega,upper,-0.028763665382801066 +karman_re50,sr,126,50.4,omega,lower,0.03986050822741126 +karman_re50,sr,127,50.8,omega,front,-0.0016491605500730117 +karman_re50,sr,127,50.8,omega,upper,-0.02683434218596781 +karman_re50,sr,127,50.8,omega,lower,0.041789831424244514 +karman_re50,sr,128,51.2,omega,front,-0.005125810698073447 +karman_re50,sr,128,51.2,omega,upper,-0.02541131404440427 +karman_re50,sr,128,51.2,omega,lower,0.04321285956580805 +karman_re50,sr,129,51.6,omega,front,-0.008372509697184996 +karman_re50,sr,129,51.6,omega,upper,-0.02469446299578677 +karman_re50,sr,129,51.6,omega,lower,0.043929710614425556 +karman_re50,sr,130,52.0,omega,front,-0.01110629547153671 +karman_re50,sr,130,52.0,omega,upper,-0.02486343912843809 +karman_re50,sr,130,52.0,omega,lower,0.043760734481774234 +karman_re50,sr,131,52.4,omega,front,-0.013001866178771393 +karman_re50,sr,131,52.4,omega,upper,-0.02591776439042829 +karman_re50,sr,131,52.4,omega,lower,0.04270640921978403 +karman_re50,sr,132,52.8,omega,front,-0.013753334235925858 +karman_re50,sr,132,52.8,omega,upper,-0.027573728663461188 +karman_re50,sr,132,52.8,omega,lower,0.041050444946751134 +karman_re50,sr,133,53.2,omega,front,-0.013209368230491883 +karman_re50,sr,133,53.2,omega,upper,-0.029650914540192707 +karman_re50,sr,133,53.2,omega,lower,0.03897325907001962 +karman_re50,sr,134,53.6,omega,front,-0.011528434623883642 +karman_re50,sr,134,53.6,omega,upper,-0.03199032864754045 +karman_re50,sr,134,53.6,omega,lower,0.03663384496267188 +karman_re50,sr,135,54.0,omega,front,-0.008954881313249993 +karman_re50,sr,135,54.0,omega,upper,-0.03455234291644548 +karman_re50,sr,135,54.0,omega,lower,0.03407183069376684 +karman_re50,sr,136,54.4,omega,front,-0.005867674633082009 +karman_re50,sr,136,54.4,omega,upper,-0.03710390398614353 +karman_re50,sr,136,54.4,omega,lower,0.03152026962406879 +karman_re50,sr,137,54.8,omega,front,-0.0024806039252006046 +karman_re50,sr,137,54.8,omega,upper,-0.03946785707758946 +karman_re50,sr,137,54.8,omega,lower,0.029156316532622864 +karman_re50,sr,138,55.2,omega,front,0.001024329010545408 +karman_re50,sr,138,55.2,omega,upper,-0.04147738033673345 +karman_re50,sr,138,55.2,omega,lower,0.027146793273478877 +karman_re50,sr,139,55.6,omega,front,0.004521264708642826 +karman_re50,sr,139,55.6,omega,upper,-0.04300668216274854 +karman_re50,sr,139,55.6,omega,lower,0.025617491447463784 +karman_re50,sr,140,56.0,omega,front,0.007832644457880164 +karman_re50,sr,140,56.0,omega,upper,-0.04388522894806516 +karman_re50,sr,140,56.0,omega,lower,0.024738944662147166 +karman_re50,sr,141,56.4,omega,front,0.010678139257411715 +karman_re50,sr,141,56.4,omega,upper,-0.043862347921138016 +karman_re50,sr,141,56.4,omega,lower,0.024761825689074313 +karman_re50,sr,142,56.8,omega,front,0.012748929361052454 +karman_re50,sr,142,56.8,omega,upper,-0.042951208346916195 +karman_re50,sr,142,56.8,omega,lower,0.02567296526329613 +karman_re50,sr,143,57.2,omega,front,0.013718526563615274 +karman_re50,sr,143,57.2,omega,upper,-0.04136431344300989 +karman_re50,sr,143,57.2,omega,lower,0.02725986016720243 +karman_re50,sr,144,57.6,omega,front,0.013411503677599662 +karman_re50,sr,144,57.6,omega,upper,-0.03938654257574777 +karman_re50,sr,144,57.6,omega,lower,0.029237631034464553 +karman_re50,sr,145,58.0,omega,front,0.01190286085616016 +karman_re50,sr,145,58.0,omega,upper,-0.03708221352166612 +karman_re50,sr,145,58.0,omega,lower,0.031541960088546206 +karman_re50,sr,146,58.4,omega,front,0.009472748446421042 +karman_re50,sr,146,58.4,omega,upper,-0.03456706661139607 +karman_re50,sr,146,58.4,omega,lower,0.03405710699881625 +karman_re50,sr,147,58.8,omega,front,0.0064549728516772155 +karman_re50,sr,147,58.8,omega,upper,-0.03195730043553982 +karman_re50,sr,147,58.8,omega,lower,0.0366668731746725 +karman_re50,sr,148,59.2,omega,front,0.0031104590808356393 +karman_re50,sr,148,59.2,omega,upper,-0.029552113081448686 +karman_re50,sr,148,59.2,omega,lower,0.039072060528763636 +karman_re50,sr,149,59.6,omega,front,-0.00038454905516196065 +karman_re50,sr,149,59.6,omega,upper,-0.02747417967765474 +karman_re50,sr,149,59.6,omega,lower,0.04114999393255759 +karman_re50,sr,150,60.0,omega,front,-0.003892099359501663 +karman_re50,sr,150,60.0,omega,upper,-0.02585547452844831 +karman_re50,sr,150,60.0,omega,lower,0.04276869908176401 +karman_re50,sr,151,60.4,omega,front,-0.007247621063371433 +karman_re50,sr,151,60.4,omega,upper,-0.02486944218181315 +karman_re50,sr,151,60.4,omega,lower,0.043754731428399175 +karman_re50,sr,152,60.8,omega,front,-0.010202337166924137 +karman_re50,sr,152,60.8,omega,upper,-0.024694577180164944 +karman_re50,sr,152,60.8,omega,lower,0.04392959643004738 +karman_re50,sr,153,61.2,omega,front,-0.012441183202188812 +karman_re50,sr,153,61.2,omega,upper,-0.02545747041497784 +karman_re50,sr,153,61.2,omega,lower,0.04316670319523448 +karman_re50,sr,154,61.6,omega,front,-0.013626961730648448 +karman_re50,sr,154,61.6,omega,upper,-0.02691926491415971 +karman_re50,sr,154,61.6,omega,lower,0.04170490869605261 +karman_re50,sr,155,62.0,omega,front,-0.013554984316321015 +karman_re50,sr,155,62.0,omega,upper,-0.028853755334719806 +karman_re50,sr,155,62.0,omega,lower,0.03977041827549252 +karman_re50,sr,156,62.4,omega,front,-0.012250413661549204 +karman_re50,sr,156,62.4,omega,upper,-0.03110655830753709 +karman_re50,sr,156,62.4,omega,lower,0.037517615302675236 +karman_re50,sr,157,62.8,omega,front,-0.009960433701122618 +karman_re50,sr,157,62.8,omega,upper,-0.033617606759859975 +karman_re50,sr,157,62.8,omega,lower,0.03500656685035235 +karman_re50,sr,158,63.2,omega,front,-0.007023773000885723 +karman_re50,sr,158,63.2,omega,upper,-0.036204899927633746 +karman_re50,sr,158,63.2,omega,lower,0.032419273682578575 +karman_re50,sr,159,63.6,omega,front,-0.0037278530422756914 +karman_re50,sr,159,63.6,omega,upper,-0.03864857198454372 +karman_re50,sr,159,63.6,omega,lower,0.029975601625668605 +karman_re50,sr,160,64.0,omega,front,-0.0002468965015422164 +karman_re50,sr,160,64.0,omega,upper,-0.04079532811920743 +karman_re50,sr,160,64.0,omega,lower,0.0278288454910049 +karman_re50,sr,161,64.4,omega,front,0.0032699805926519844 +karman_re50,sr,161,64.4,omega,upper,-0.04251501032017663 +karman_re50,sr,161,64.4,omega,lower,0.026109163290035695 +karman_re50,sr,162,64.8,omega,front,0.006666570119551038 +karman_re50,sr,162,64.8,omega,upper,-0.0436511753321481 +karman_re50,sr,162,64.8,omega,lower,0.024972998278064224 +karman_re50,sr,163,65.2,omega,front,0.009718150616975448 +karman_re50,sr,163,65.2,omega,upper,-0.04397065104260426 +karman_re50,sr,163,65.2,omega,lower,0.024653522567608065 +karman_re50,sr,164,65.6,omega,front,0.012126481813635579 +karman_re50,sr,164,65.6,omega,upper,-0.04340245282978198 +karman_re50,sr,164,65.6,omega,lower,0.025221720780430345 +karman_re50,sr,165,66.0,omega,front,0.01352770685119431 +karman_re50,sr,165,66.0,omega,upper,-0.04200958306618102 +karman_re50,sr,165,66.0,omega,lower,0.0266145905440313 +karman_re50,sr,166,66.4,omega,front,0.013671545796354193 +karman_re50,sr,166,66.4,omega,upper,-0.0401303837664482 +karman_re50,sr,166,66.4,omega,lower,0.028493789843764123 +karman_re50,sr,167,66.8,omega,front,0.012593132660003644 +karman_re50,sr,167,66.8,omega,upper,-0.03794594221961286 +karman_re50,sr,167,66.8,omega,lower,0.030678231390599466 +karman_re50,sr,168,67.2,omega,front,0.010442602279865484 +karman_re50,sr,168,67.2,omega,upper,-0.03548216153247774 +karman_re50,sr,168,67.2,omega,lower,0.03314201207773458 +karman_re50,sr,169,67.6,omega,front,0.007597198943935341 +karman_re50,sr,169,67.6,omega,upper,-0.03289785999541205 +karman_re50,sr,169,67.6,omega,lower,0.03572631361480027 +karman_re50,sr,170,68.0,omega,front,0.004348131548145099 +karman_re50,sr,170,68.0,omega,upper,-0.030403780864143793 +karman_re50,sr,170,68.0,omega,lower,0.03822039274606853 +karman_re50,sr,171,68.4,omega,front,0.0008923993907980158 +karman_re50,sr,171,68.4,omega,upper,-0.028189423010227588 +karman_re50,sr,171,68.4,omega,lower,0.04043475059998474 +karman_re50,sr,172,68.8,omega,front,-0.0026277111956173505 +karman_re50,sr,172,68.8,omega,upper,-0.026370165941659543 +karman_re50,sr,172,68.8,omega,lower,0.042254007668552786 +karman_re50,sr,173,69.2,omega,front,-0.0060706956343306055 +karman_re50,sr,173,69.2,omega,upper,-0.025115345091267633 +karman_re50,sr,173,69.2,omega,lower,0.04350882851894469 +karman_re50,sr,174,69.6,omega,front,-0.009197687205118802 +karman_re50,sr,174,69.6,omega,upper,-0.02464925968415634 +karman_re50,sr,174,69.6,omega,lower,0.043974913926055986 +karman_re50,sr,175,70.0,omega,front,-0.011735033139541677 +karman_re50,sr,175,70.0,omega,upper,-0.025084764992334994 +karman_re50,sr,175,70.0,omega,lower,0.04353940861787733 +karman_re50,sr,176,70.4,omega,front,-0.013337486092163151 +karman_re50,sr,176,70.4,omega,upper,-0.026323304672858063 +karman_re50,sr,176,70.4,omega,lower,0.04230086893735426 +karman_re50,sr,177,70.8,omega,front,-0.013728346468820811 +karman_re50,sr,177,70.8,omega,upper,-0.028120661177692855 +karman_re50,sr,177,70.8,omega,lower,0.04050351243251947 +karman_re50,sr,178,71.2,omega,front,-0.012849429211081096 +karman_re50,sr,178,71.2,omega,upper,-0.03026719046605859 +karman_re50,sr,178,71.2,omega,lower,0.038356983144153735 +karman_re50,sr,179,71.6,omega,front,-0.010877090350396688 +karman_re50,sr,179,71.6,omega,upper,-0.03269444889922104 +karman_re50,sr,179,71.6,omega,lower,0.03592972471099129 +karman_re50,sr,180,72.0,omega,front,-0.008146985320004548 +karman_re50,sr,180,72.0,omega,upper,-0.035278503798029874 +karman_re50,sr,180,72.0,omega,lower,0.03334566981218245 +karman_re50,sr,181,72.4,omega,front,-0.004941361358890839 +karman_re50,sr,181,72.4,omega,upper,-0.037789704496190325 +karman_re50,sr,181,72.4,omega,lower,0.030834469114022 +karman_re50,sr,182,72.8,omega,front,-0.0015149364107624763 +karman_re50,sr,182,72.8,omega,upper,-0.040056558237356175 +karman_re50,sr,182,72.8,omega,lower,0.028567615372856153 +karman_re50,sr,183,73.2,omega,front,0.0020012878675266504 +karman_re50,sr,183,73.2,omega,upper,-0.04194962713289086 +karman_re50,sr,183,73.2,omega,lower,0.02667454647732146 +karman_re50,sr,184,73.6,omega,front,0.005464531493951774 +karman_re50,sr,184,73.6,omega,upper,-0.043329307839583844 +karman_re50,sr,184,73.6,omega,lower,0.025294865770628477 +karman_re50,sr,185,74.0,omega,front,0.008672507645814799 +karman_re50,sr,185,74.0,omega,upper,-0.04395628208045519 +karman_re50,sr,185,74.0,omega,lower,0.024667891529757135 +karman_re50,sr,186,74.4,omega,front,0.011357376821341648 +karman_re50,sr,186,74.4,omega,upper,-0.04370471714830179 +karman_re50,sr,186,74.4,omega,lower,0.024919456461910534 +karman_re50,sr,187,74.8,omega,front,0.013137620807162163 +karman_re50,sr,187,74.8,omega,upper,-0.042574133468735335 +karman_re50,sr,187,74.8,omega,lower,0.026050040141476997 +karman_re50,sr,188,75.2,omega,front,0.01376172668735214 +karman_re50,sr,188,75.2,omega,upper,-0.0408597600801219 +karman_re50,sr,188,75.2,omega,lower,0.027764413530090428 +karman_re50,sr,189,75.6,omega,front,0.013106073412643512 +karman_re50,sr,189,75.6,omega,upper,-0.03877265843198998 +karman_re50,sr,189,75.6,omega,lower,0.029851515178222342 +karman_re50,sr,190,76.0,omega,front,0.0113083811908612 +karman_re50,sr,190,76.0,omega,upper,-0.03638330160008851 +karman_re50,sr,190,76.0,omega,lower,0.03224087201012381 +karman_re50,sr,191,76.4,omega,front,0.008658908207080207 +karman_re50,sr,191,76.4,omega,upper,-0.03371105525495533 +karman_re50,sr,191,76.4,omega,lower,0.034913118355257 +karman_re50,sr,192,76.8,omega,front,0.005544906687682269 +karman_re50,sr,192,76.8,omega,upper,-0.0312826534555528 +karman_re50,sr,192,76.8,omega,lower,0.03734152015465953 +karman_re50,sr,193,77.2,omega,front,0.0021493832001374903 +karman_re50,sr,193,77.2,omega,upper,-0.029006369607208374 +karman_re50,sr,193,77.2,omega,lower,0.03961780400300395 +karman_re50,sr,194,77.6,omega,front,-0.001343725928385852 +karman_re50,sr,194,77.6,omega,upper,-0.02693812360605848 +karman_re50,sr,194,77.6,omega,lower,0.041686050004153846 +karman_re50,sr,195,78.0,omega,front,-0.004847246756035733 +karman_re50,sr,195,78.0,omega,upper,-0.02552019113267812 +karman_re50,sr,195,78.0,omega,lower,0.043103982477534206 +karman_re50,sr,196,78.4,omega,front,-0.00811105144660187 +karman_re50,sr,196,78.4,omega,upper,-0.024764730539654986 +karman_re50,sr,196,78.4,omega,lower,0.04385944307055734 +karman_re50,sr,197,78.8,omega,front,-0.010900719927420635 +karman_re50,sr,197,78.8,omega,upper,-0.024840976777564246 +karman_re50,sr,197,78.8,omega,lower,0.04378319683264808 +karman_re50,sr,198,79.2,omega,front,-0.01288674058848071 +karman_re50,sr,198,79.2,omega,upper,-0.02580222197938599 +karman_re50,sr,198,79.2,omega,lower,0.04282195163082633 +karman_re50,sr,199,79.6,omega,front,-0.013734730273000635 +karman_re50,sr,199,79.6,omega,upper,-0.0273966895912526 +karman_re50,sr,199,79.6,omega,lower,0.041227484018959724 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_manifest.json b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_manifest.json new file mode 100644 index 0000000..6fc778c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_manifest.json @@ -0,0 +1,14 @@ +{ + "scene": "karman_re50", + "source": "sr", + "input": "src/SR_analysis/results/runs/article-L3-karman-20260718/telemetry/karman_re50__pysr__f-a678f2019e0d__si-800.npz", + "sample_interval": 800, + "conv_len": 30, + "rows": { + "sensors": 200, + "forces": 200, + "actions_alpha": 200, + "actions_omega": 200, + "target_sensors": 150 + } +} diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_wide.csv new file mode 100644 index 0000000..1e6d0dc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/sr_wide.csv @@ -0,0 +1,201 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy,forces_front_fx,forces_front_fy,forces_upper_fx,forces_upper_fy,forces_lower_fx,forces_lower_fy,actions_alpha_front,actions_alpha_upper,actions_alpha_lower,actions_omega_front,actions_omega_upper,actions_omega_lower +karman_re50,sr,0,0.0,1.0347927808761597,0.18947777152061462,0.9657396078109741,0.187363401055336,0.9841383099555969,0.15281841158866882,0.0003898449649568647,0.0008654326084069908,0.0017600004794076085,0.003403826616704464,-0.001987553434446454,-0.0025089450646191835,-1.0503044624461948,-2.529673991688886,4.332743369332347,-0.010503044624461949,-0.02529673991688886,0.04332743369332347 +karman_re50,sr,1,0.4,1.026302456855774,0.2070094645023346,0.9727262258529663,0.2220402956008911,1.001910924911499,0.19618690013885498,0.00043457382707856596,0.002053141826763749,0.0007238270482048392,0.0036734878085553646,-0.0014930948382243514,-0.0027876102831214666,-0.7146424802377701,-2.8460537830382275,4.016363577983005,-0.007146424802377701,-0.028460537830382274,0.04016363577983005 +karman_re50,sr,2,0.8,1.019659161567688,0.2132832109928131,0.9740936756134033,0.2495044320821762,1.021131157875061,0.24091647565364838,0.0003588977560866624,0.002080979524180293,0.0003048250509891659,0.0037214148323982954,-0.0011819301871582866,-0.0032310893293470144,-0.42275750845217835,-2.851941434068413,4.01047592695282,-0.004227575084521784,-0.02851941434068413,0.0401047592695282 +karman_re50,sr,3,1.2,1.011366605758667,0.21051019430160522,0.9671639204025269,0.26711079478263855,1.0397685766220093,0.2808440327644348,0.0002059840044239536,0.0024148717056959867,-0.00042846077121794224,0.0033790646120905876,-0.00024578464217484,-0.003979858942329884,-0.28351785599890045,-3.1105892993226942,3.751828061698538,-0.0028351785599890046,-0.031105892993226945,0.03751828061698538 +karman_re50,sr,4,1.6,1.0021051168441772,0.19713574647903442,0.9535056352615356,0.2670413851737976,1.058182716369629,0.30262860655784607,0.00012488767970353365,0.002719620242714882,-0.0014086680021137,0.0031345707830041647,0.001060140784829855,-0.004423628095537424,0.03483555538907221,-3.824062621788048,3.038354739233185,0.0003483555538907221,-0.03824062621788048,0.030383547392331848 +karman_re50,sr,5,2.0,0.9885818362236023,0.1684589385986328,0.9333779215812683,0.23774997889995575,1.071448802947998,0.2868765592575073,0.00031867335201241076,0.0028982670046389103,-0.002509491750970483,0.003054931992664933,0.0021154398564249277,-0.004479593131691217,0.47079126152442297,-4.274111518091459,2.588305842929773,0.0047079126152442296,-0.04274111518091459,0.025883058429297733 +karman_re50,sr,6,2.4,0.9755039215087891,0.12318721413612366,0.9173256754875183,0.17651021480560303,1.0828303098678589,0.22809047996997833,0.0009862396400421858,0.003240022575482726,-0.0037455775309354067,0.0030487277545034885,0.002832937752828002,-0.004530621692538261,0.8819546485029763,-4.362781625329101,2.499635735692131,0.008819546485029764,-0.04362781625329101,0.02499635735692131 +karman_re50,sr,7,2.8,0.962637186050415,0.06415171921253204,0.910402774810791,0.09218297898769379,1.0875905752182007,0.1373893767595291,0.0018717312486842275,0.0035345270298421383,-0.004834603983908892,0.003010757267475128,0.003274947637692094,-0.004540290683507919,1.2544946881993913,-4.400205631397648,2.462211729623584,0.012544946881993913,-0.044002056313976474,0.02462211729623584 +karman_re50,sr,8,3.2,0.9538475275039673,0.000801670947112143,0.9159681797027588,0.004044915549457073,1.081834316253662,0.03330812603235245,0.0026457258500158787,0.0034520241897553205,-0.005489063449203968,0.0029641392175108194,0.0033919287379831076,-0.004359837621450424,1.5464567602489854,-4.431356652221141,2.431060708800091,0.015464567602489853,-0.04431356652221141,0.02431060708800091 +karman_re50,sr,9,3.6,0.9536345601081848,-0.05622771382331848,0.9306338429450989,-0.07202509045600891,1.0662704706192017,-0.06423601508140564,0.003101743059232831,0.0029044232796877623,-0.005595810245722532,0.002911886665970087,0.003185619367286563,-0.00404294952750206,1.6935671719520418,-4.343843156611455,2.518574204409777,0.01693567171952042,-0.04343843156611455,0.02518574204409777 +karman_re50,sr,10,4.0,0.9623543620109558,-0.10411342978477478,0.9462552070617676,-0.13255462050437927,1.047968864440918,-0.1372002810239792,0.003053871914744377,0.0020328050013631582,-0.00515249976888299,0.002922911662608385,0.002743476303294301,-0.0037087935488671064,1.6745810154923912,-4.170800385393024,2.6916169756282082,0.016745810154923914,-0.04170800385393024,0.026916169756282082 +karman_re50,sr,11,4.4,0.9774775505065918,-0.1469264179468155,0.9587993621826172,-0.17901481688022614,1.0346766710281372,-0.179298996925354,0.00251681637018919,0.0009913946269080043,-0.004287632182240486,0.0030669583939015865,0.0021607973612844944,-0.0034745715092867613,1.5057288177385264,-3.9450896891285088,2.9173276718927235,0.015057288177385265,-0.03945089689128509,0.029173276718927235 +karman_re50,sr,12,4.8,0.9956207871437073,-0.19010508060455322,0.9670304656028748,-0.21470656991004944,1.0267982482910156,-0.1988745480775833,0.001706112758256495,-2.5305022063548677e-05,-0.003139382228255272,0.003365667536854744,0.0015110507374629378,-0.0033630323596298695,1.229687894705672,-3.6977431846422673,3.164674176378965,0.01229687894705672,-0.03697743184642267,0.03164674176378965 +karman_re50,sr,13,5.2,1.0141137838363647,-0.23466110229492188,0.9685507416725159,-0.24263495206832886,1.019931435585022,-0.2055501788854599,0.000916130084078759,-0.0008829167345538735,-0.0018665534444153309,0.003730676369741559,0.0008141914731822908,-0.0032975375652313232,0.8868176483103615,-3.4294855621210933,3.4329317989001393,0.008868176483103615,-0.034294855621210936,0.03432931798900139 +karman_re50,sr,14,5.6,1.0321879386901855,-0.2763121724128723,0.9617548584938049,-0.26197871565818787,1.011599063873291,-0.20340359210968018,0.0003576310118660331,-0.0015619088662788272,-0.0005836907657794654,0.004058672580868006,4.914533201372251e-05,-0.0032183732837438583,0.5112065738973022,-3.1479831607154036,3.7144342003058286,0.0051120657389730215,-0.031479831607154035,0.03714434200305829 +karman_re50,sr,15,6.0,1.0489859580993652,-0.30222660303115845,0.9466285705566406,-0.2650325298309326,1.0010325908660889,-0.19074256718158722,0.0001283361780224368,-0.002117384923622012,0.0006035641417838633,0.004314924590289593,-0.0008126821485348046,-0.0031239965464919806,0.12067913335122936,-2.8817446224919725,3.9806727385292597,0.0012067913335122935,-0.028817446224919725,0.039806727385292597 +karman_re50,sr,16,6.4,1.0635415315628052,-0.29406747221946716,0.9263368844985962,-0.24090451002120972,0.9886882901191711,-0.16330571472644806,0.0002632686519064009,-0.0026228579226881266,0.0015987121732905507,0.004505133256316185,-0.0017857621423900127,-0.0030669677071273327,-0.27007210164456286,-2.6524716781201896,4.209945682901043,-0.002700721016445629,-0.026524716781201895,0.04209945682901043 +karman_re50,sr,17,6.8,1.0751309394836426,-0.24214020371437073,0.9069976806640625,-0.18325629830360413,0.9755550622940063,-0.11783871054649353,0.0007367379148490727,-0.0030468215700238943,0.002326760906726122,0.004629981704056263,-0.0028126477263867855,-0.00305627821944654,-0.6454047559709574,-2.4908053248677167,4.371612036153516,-0.006454047559709574,-0.02490805324867717,0.04371612036153515 +karman_re50,sr,18,7.2,1.080946922302246,-0.15533854067325592,0.8942924737930298,-0.09719733148813248,0.9631132483482361,-0.056856755167245865,0.0014211637899279594,-0.0033178329467773438,0.0027452236972749233,0.004614255856722593,-0.0037447670474648476,-0.0031184933613985777,-0.9800632137526717,-2.4021783032021045,4.460239057819128,-0.009800632137526718,-0.024021783032021043,0.04460239057819128 +karman_re50,sr,19,7.6,1.0770978927612305,-0.05184977874159813,0.8922032117843628,0.0013792566023766994,0.9556465148925781,0.008925694972276688,0.00209212233312428,-0.003283401718363166,0.002857823856174946,0.004427039530128241,-0.004352133721113205,-0.0032115825451910496,-1.2376134377667065,-2.4531432063092233,4.4092741547120085,-0.012376134377667065,-0.024531432063092235,0.04409274154712008 +karman_re50,sr,20,8.0,1.0616240501403809,0.051701728254556656,0.9015998244285583,0.09512241184711456,0.9579674005508423,0.06781285256147385,0.002492754254490137,-0.00286104972474277,0.002707670908421278,0.004106039181351662,-0.004447188228368759,-0.003271880093961954,-1.3749080290464257,-2.63643242688723,4.225984934134003,-0.013749080290464257,-0.0263643242688723,0.04225984934134003 +karman_re50,sr,21,8.4,1.0359326601028442,0.14198645949363708,0.919745683670044,0.17163339257240295,0.9701253771781921,0.11640280485153198,0.002461940050125122,-0.002063047606498003,0.0023439282085746527,0.003758287988603115,-0.004030467476695776,-0.003286452032625675,-1.3644009924353606,-2.885759649720149,3.9766577113010833,-0.013644009924353606,-0.02885759649720149,0.039766577113010834 +karman_re50,sr,22,8.8,1.005324363708496,0.2095133662223816,0.9428461194038391,0.22640621662139893,0.9890111684799194,0.15961894392967224,0.0020141222048550844,-0.001042638556100428,0.0018173157004639506,0.003478057449683547,-0.0032522501423954964,-0.0033554336987435818,-1.2155699550306713,-3.122679445775142,3.739737915246091,-0.012155699550306714,-0.03122679445775142,0.037397379152460906 +karman_re50,sr,23,9.2,0.9757241606712341,0.24760057032108307,0.9651758670806885,0.2634449899196625,1.0112109184265137,0.20217439532279968,0.0013470039702951908,-8.830078854771273e-07,0.0011862051906064153,0.0032987629529088736,-0.0022622626274824142,-0.0035594389773905277,-0.9667444927947315,-3.3510261264711994,3.5113912345500324,-0.009667444927947315,-0.033510261264711995,0.03511391234550033 +karman_re50,sr,24,9.6,0.9496560096740723,0.2542690932750702,0.9802245497703552,0.2881847321987152,1.0336629152297974,0.24447683990001678,0.0007171488832682371,0.0009019742719829082,0.000482592498883605,0.0031731082126498222,-0.0011701318435370922,-0.0038423293735831976,-0.657608042789882,-3.6016623590154735,3.2607550020057587,-0.00657608042789882,-0.036016623590154735,0.03260755002005759 +karman_re50,sr,25,10.0,0.9272705912590027,0.23170149326324463,0.984728991985321,0.2972790002822876,1.0545260906219482,0.2805687189102173,0.0003213647869415581,0.0016232746420428157,-0.0002941545390058309,0.0030555734410881996,-7.208690658444539e-05,-0.004098766483366489,-0.31516745332215634,-3.868806303234884,2.993611057786348,-0.0031516745332215634,-0.03868806303234884,0.02993611057786348 +karman_re50,sr,26,10.4,0.9099873304367065,0.18544280529022217,0.9782047867774963,0.27965644001960754,1.0713868141174316,0.2965478003025055,0.0002480983966961503,0.00222772266715765,-0.0011743297800421715,0.0029686405323445797,0.0009366418235003948,-0.004286798648536205,0.04234734636570953,-4.113343110788925,2.749074250232307,0.00042347346365709536,-0.04113343110788925,0.02749074250232307 +karman_re50,sr,27,10.8,0.902815043926239,0.12530632317066193,0.9625653028488159,0.22398647665977478,1.0814591646194458,0.27417847514152527,0.000508830591570586,0.002770643914118409,-0.002145105740055442,0.0029509819578379393,0.0017715117428451777,-0.004438901320099831,0.4025532433009607,-4.293140268590779,2.5692770924304527,0.004025532433009607,-0.04293140268590779,0.025692770924304525 +karman_re50,sr,28,11.2,0.9089940786361694,0.06250011175870895,0.9417388439178467,0.12807106971740723,1.0828778743743896,0.2056354284286499,0.0010419792961329222,0.003255888121202588,-0.003128789598122239,0.003020466770976782,0.002383309882134199,-0.004532730206847191,0.7468821787394061,-4.404145601427906,2.458271759593326,0.007468821787394061,-0.044041456014279064,0.024582717595933258 +karman_re50,sr,29,11.6,0.923249363899231,0.0013316483236849308,0.9218058586120605,0.006141694262623787,1.073350191116333,0.10117226839065552,0.001703806803561747,0.0035664576571434736,-0.003962414804846048,0.0031295218504965305,0.002750544808804989,-0.004522219765931368,1.051133762032165,-4.420063969465842,2.4423533915553906,0.01051133762032165,-0.04420063969465842,0.024423533915553908 +karman_re50,sr,30,12.0,0.9394964575767517,-0.05704858899116516,0.9151376485824585,-0.10891259461641312,1.051647663116455,-0.018736500293016434,0.002286291681230068,0.003566945204511285,-0.004466199781745672,0.003206804394721985,0.0028713326901197433,-0.004360025282949209,1.2801326460709537,-4.341881164502798,2.5205361965184343,0.012801326460709537,-0.04341881164502798,0.025205361965184345 +karman_re50,sr,31,12.4,0.9582075476646423,-0.10707248747348785,0.9298332333564758,-0.18889270722866058,1.019762396812439,-0.13178327679634094,0.0026082159020006657,0.0031537883915007114,-0.0045351325534284115,0.0032100616954267025,0.002754095708951354,-0.0040626139380037785,1.3992360150267547,-4.185289317262093,2.677128043759139,0.013992360150267547,-0.041852893172620934,0.02677128043759139 +karman_re50,sr,32,12.8,0.9804351925849915,-0.147378072142601,0.9572011828422546,-0.23701918125152588,0.9832019805908203,-0.21860210597515106,0.0025581843219697475,0.0023355677258223295,-0.004168134182691574,0.0031898124143481255,0.0024170945398509502,-0.003718271851539612,1.3900246091694208,-3.98868482797678,2.873732533044452,0.01390024609169421,-0.0398868482797678,0.02873732533044452 +karman_re50,sr,33,13.2,1.0052101612091064,-0.18315191566944122,0.9858770966529846,-0.2684009075164795,0.9511563181877136,-0.2663806676864624,0.0021384628489613533,0.001292580971494317,-0.0034651344176381826,0.0032714218832552433,0.0019050000701099634,-0.00342182582244277,1.255774912220264,-3.776763493957738,3.085653867063494,0.01255774912220264,-0.03776763493957738,0.030856538670634943 +karman_re50,sr,34,13.6,1.0308204889297485,-0.21906618773937225,1.0099955797195435,-0.2910621166229248,0.9270814657211304,-0.27555611729621887,0.0014846596168354154,0.0002213273401139304,-0.0025151444133371115,0.0034910247195512056,0.0012941100867465138,-0.0032348535023629665,1.0240616460105638,-3.5295564466587033,3.3328609143625285,0.010240616460105639,-0.035295564466587034,0.03332860914362529 +karman_re50,sr,35,14.0,1.0548725128173828,-0.25445565581321716,1.02517831325531,-0.3033124804496765,0.9067739248275757,-0.2524254024028778,0.0008237266447395086,-0.00070550775853917,-0.001435351325199008,0.003775343531742692,0.0006290391320362687,-0.0031185767147690058,0.7264085177621968,-3.2637006544709015,3.5987167065503303,0.007264085177621968,-0.03263700654470902,0.035987167065503305 +karman_re50,sr,36,14.4,1.075303554534912,-0.28327760100364685,1.0282033681869507,-0.29603394865989685,0.888876736164093,-0.2030578851699829,0.00036940912832506,-0.0014643556205555797,-0.00033234196598641574,0.004020486027002335,-0.00011040167737519369,-0.0030265117529779673,0.39367041821169485,-3.0017548398833593,3.8606625211378733,0.003936704182116948,-0.030017548398833593,0.03860662521137873 +karman_re50,sr,37,14.8,1.089077115058899,-0.29175081849098206,1.0169591903686523,-0.2567822337150574,0.879292905330658,-0.13836528360843658,0.00023165858874563128,-0.0021005815360695124,0.0006863020826131105,0.004208974074572325,-0.000953584210947156,-0.0029586146119982004,0.04232306244653716,-2.781257954571981,4.081159406449251,0.00042323062446537164,-0.02781257954571981,0.04081159406449251 +karman_re50,sr,38,15.2,1.092840552330017,-0.26295238733291626,0.991929292678833,-0.17801536619663239,0.8849981427192688,-0.07528945058584213,0.0004193806671537459,-0.002666266867890954,0.0015471238875761628,0.00437328964471817,-0.001887806341983378,-0.002950983587652445,-0.31271929239107144,-2.613610014607548,4.248807346413685,-0.0031271929239107144,-0.02613610014607548,0.04248807346413685 +karman_re50,sr,39,15.6,1.084912657737732,-0.19044871628284454,0.959460973739624,-0.0664990246295929,0.904202401638031,-0.022039158269762993,0.0008855683263391256,-0.0031641980167478323,0.0022056561429053545,0.004493206273764372,-0.002841672860085964,-0.0030095435213297606,-0.6550264826401417,-2.5011757023390673,4.361241658682165,-0.006550264826401418,-0.025011757023390674,0.043612416586821655 +karman_re50,sr,40,16.0,1.0641026496887207,-0.08447534590959549,0.9346544146537781,0.05066733434796333,0.9262509346008301,0.028494402766227722,0.0015033094678074121,-0.0035050520673394203,0.0026220595464110374,0.004510929342359304,-0.003691107966005802,-0.003117052372545004,-0.9625040226744054,-2.4610551179956284,4.401362243025604,-0.009625040226744054,-0.024610551179956284,0.04401362243025604 +karman_re50,sr,41,16.4,1.030766487121582,0.03464838117361069,0.9329788684844971,0.14148922264575958,0.9456472992897034,0.07942262291908264,0.0020930056925863028,-0.0035575893707573414,0.002792356302961707,0.004377441015094519,-0.004266135394573212,-0.0032039263751357794,-1.2038940047136508,-2.5197652235970223,4.34265213742421,-0.012038940047136508,-0.025197652235970223,0.0434265213742421 +karman_re50,sr,42,16.8,0.9897551536560059,0.1445227563381195,0.9523072838783264,0.20045827329158783,0.9656720161437988,0.12318774312734604,0.0024661722127348185,-0.0032110181637108326,0.0027230295818299055,0.00410388084128499,-0.004422461614012718,-0.0032223572488874197,-1.3460241345204293,-2.6638581443114266,4.198559216709805,-0.013460241345204293,-0.026638581443114265,0.04198559216709805 +karman_re50,sr,43,17.2,0.9498462677001953,0.22501271963119507,0.9789913892745972,0.24036885797977448,0.9884142279624939,0.1571970134973526,0.0025000369641929865,-0.0024643107317388058,0.002432973822578788,0.0037585878744721413,-0.0041450392454862595,-0.003206276800483465,-1.3626145662204818,-2.854788431230816,4.007628929790417,-0.013626145662204818,-0.02854788431230816,0.04007628929790417 +karman_re50,sr,44,17.6,0.9194463491439819,0.26611822843551636,1.0056196451187134,0.2694227695465088,1.013122320175171,0.18763330578804016,0.002158251591026783,-0.0014481402467936277,0.0019574768375605345,0.0034509729593992233,-0.0035041379742324352,-0.003263323102146387,-1.2543989178167518,-3.0700574989720013,3.7923598620492314,-0.012543989178167519,-0.030700574989720012,0.03792359862049231 +karman_re50,sr,45,18.0,0.8985031247138977,0.2697419226169586,1.0287632942199707,0.29001355171203613,1.0384104251861572,0.21903127431869507,0.0015516531420871615,-0.0003789460752159357,0.001369586680084467,0.0032432288862764835,-0.002608000999316573,-0.0034538120962679386,-1.0415065519868767,-3.308506147727789,3.5539112132934436,-0.010415065519868767,-0.03308506147727789,0.03553911213293444 +karman_re50,sr,46,18.4,0.8813384175300598,0.241409033536911,1.043647050857544,0.2994121015071869,1.0620840787887573,0.2510225474834442,0.0008961883140727878,0.00058101856848225,0.0007141020614653826,0.0031199539080262184,-0.0015633542789146304,-0.003717832500115037,-0.7585089340708149,-3.568907123801593,3.293510237219639,-0.007585089340708149,-0.03568907123801593,0.03293510237219639 +karman_re50,sr,47,18.8,0.8674120306968689,0.1873815953731537,1.0457422733306885,0.2885323464870453,1.0819274187088013,0.27805691957473755,0.00041534833144396544,0.0013680250849574804,-1.2448178495105822e-05,0.0030221708584576845,-0.0004786033241543919,-0.003965124953538179,-0.4343011695457061,-3.822156047164263,3.0402613138569694,-0.004343011695457061,-0.03822156047164263,0.030402613138569696 +karman_re50,sr,48,19.2,0.8645312786102295,0.12132732570171356,1.0331244468688965,0.24621091783046722,1.0962867736816406,0.28796499967575073,0.0002224489871878177,0.0020238556899130344,-0.0008352053118869662,0.002951723290607333,0.0005430816672742367,-0.00416679447516799,-0.08889378968985905,-4.047797776064362,2.81461958495687,-0.0008889378968985905,-0.04047797776064362,0.028146195849568702 +karman_re50,sr,49,19.6,0.8757742047309875,0.061955858021974564,1.001978874206543,0.16584599018096924,1.0974987745285034,0.26334214210510254,0.00038308874354697764,0.0025989175774157047,-0.0017535202205181122,0.00292935105971992,0.0014285299694165587,-0.0043317093513906,0.26283342359021844,-4.225732662781162,2.6366846982400696,0.0026283342359021845,-0.04225732662781162,0.026366846982400695 +karman_re50,sr,50,20.0,0.9009208083152771,0.016230883076786995,0.9640954732894897,0.05690717324614525,1.0879008769989014,0.19674564898014069,0.0008133379160426557,0.0031095289159566164,-0.0027116069104522467,0.0029871598817408085,0.0021122610196471214,-0.004465898498892784,0.6068033421932342,-4.348197996549069,2.5142193644721633,0.006068033421932342,-0.04348197996549069,0.025142193644721634 +karman_re50,sr,51,20.4,0.9267162084579468,-0.02723493054509163,0.9356185793876648,-0.05360975116491318,1.0653562545776367,0.09596340358257294,0.0014178059063851833,0.003487987909466028,-0.003591093234717846,0.0030935979448258877,0.0025711541529744864,-0.004504722077399492,0.9198909531791989,-4.398142395807012,2.46427496521422,0.009198909531791989,-0.04398142395807012,0.024642749652142203 +karman_re50,sr,52,20.8,0.9471429586410522,-0.07508140057325363,0.932456910610199,-0.13768722116947174,1.0304875373840332,-0.020252162590622902,0.0020199224818497896,0.00360086839646101,-0.004218960180878639,0.003185543231666088,0.0027840363327413797,-0.004402608145028353,1.175114183334111,-4.3539299000874285,2.5084874609338037,0.011751141833341111,-0.04353929900087428,0.02508487460933804 +karman_re50,sr,53,21.2,0.9664755463600159,-0.11859998106956482,0.951407790184021,-0.1928926706314087,0.9879611730575562,-0.13006789982318878,0.002441858872771263,0.0033282414078712463,-0.004454892594367266,0.0032097173389047384,0.002760406816378236,-0.004151062574237585,1.3354414406390733,-4.227036343888203,2.635381017133029,0.013354414406390734,-0.04227036343888203,0.02635381017133029 +karman_re50,sr,54,21.6,0.9881659746170044,-0.15277479588985443,0.9778708815574646,-0.23225438594818115,0.946515679359436,-0.21334503591060638,0.002539659384638071,0.002638648496940732,-0.00425250269472599,0.003190615214407444,0.0025089869741350412,-0.003814662341028452,1.3759266938071555,-4.0467457573268115,2.815671603694421,0.013759266938071555,-0.04046745757326812,0.028156716036944213 +karman_re50,sr,55,22.0,1.0120034217834473,-0.18262559175491333,1.004274606704712,-0.2620226740837097,0.9147791862487793,-0.2586154639720917,0.0022685255389660597,0.001655582687817514,-0.003668199758976698,0.003236598102375865,0.0020656578708440065,-0.0034942757338285446,1.289387119740601,-3.8392674135853317,3.023149947435901,0.012893871197406011,-0.038392674135853316,0.03023149947435901 +karman_re50,sr,56,22.4,1.0366250276565552,-0.2132672518491745,1.027624249458313,-0.28354403376579285,0.8935750722885132,-0.2664391100406647,0.0016870037652552128,0.0005762593355029821,-0.002814200008288026,0.003405842464417219,0.0014918181113898754,-0.003274819813668728,1.0934220913425667,-3.5997017371193545,3.262715623901878,0.010934220913425668,-0.03599701737119355,0.03262715623901878 +karman_re50,sr,57,22.8,1.0599013566970825,-0.2450518161058426,1.0433905124664307,-0.2945840358734131,0.8772165775299072,-0.24216099083423615,0.0010140020167455077,-0.0004084121319465339,-0.001786255743354559,0.0036656802985817194,0.0008500656695105135,-0.003139106323942542,0.8211392123324178,-3.345534162372837,3.5168831986483955,0.008211392123324179,-0.033455341623728374,0.035168831986483955 +karman_re50,sr,58,23.2,1.0809367895126343,-0.27354422211647034,1.0481255054473877,-0.28721562027931213,0.8651201128959656,-0.1918967366218567,0.0004858172032982111,-0.0012305073905736208,-0.0007005914812907577,0.003924155607819557,0.00013882089115213603,-0.0030461973510682583,0.5027352018149526,-3.0868867538560685,3.7755306071651638,0.005027352018149526,-0.030868867538560687,0.03775530607165164 +karman_re50,sr,59,23.6,1.092872142791748,-0.2865666449069977,1.034468650817871,-0.24947389960289001,0.8598314523696899,-0.12753674387931824,0.00024160508473869413,-0.0018989014206454158,0.0003438857675064355,0.0041249776259064674,-0.000661780999507755,-0.0029606311582028866,0.16007234414085628,-2.857119771741398,4.005297589279834,0.0016007234414085628,-0.02857119771741398,0.04005297589279835 +karman_re50,sr,60,24.0,1.0962926149368286,-0.2687407433986664,1.0058852434158325,-0.1755768209695816,0.8711627721786499,-0.06825759261846542,0.0003258645301684737,-0.0024865935556590557,0.0012623016955330968,0.004299171268939972,-0.0015587039524689317,-0.0029318949673324823,-0.1917763451020249,-2.669853128657093,4.192564232364139,-0.001917763451020249,-0.026698531286570928,0.0419256423236414 +karman_re50,sr,61,24.4,1.0878808498382568,-0.2093120515346527,0.9678424000740051,-0.07151133567094803,0.8959778547286987,-0.022730832919478416,0.0007040753844194114,-0.003010648535564542,0.001992523204535246,0.004444578662514687,-0.002513111336156726,-0.002977017080411315,-0.537953694435211,-2.537159158292605,4.325258202728627,-0.00537953694435211,-0.025371591582926054,0.04325258202728627 +karman_re50,sr,62,24.8,1.0668283700942993,-0.1134873479604721,0.9366561770439148,0.038629960268735886,0.9226341247558594,0.019202740862965584,0.0012848498299717903,-0.0034187722485512495,0.002497501438483596,0.004511889535933733,-0.0034115342423319817,-0.003078873734921217,-0.8592052088434523,-2.471583526646368,4.390833834374864,-0.008592052088434523,-0.024715835266463683,0.04390833834374864 +karman_re50,sr,63,25.2,1.0333969593048096,0.001121767912991345,0.9294416904449463,0.12591683864593506,0.9436830878257751,0.06618990004062653,0.0018961461028084159,-0.0035893809981644154,0.002751585328951478,0.004429821856319904,-0.004106573294848204,-0.0031728018075227737,-1.1268277953628316,-2.4941726983029056,4.368244662718327,-0.011268277953628317,-0.024941726983029055,0.04368244662718327 +karman_re50,sr,64,25.6,0.991573691368103,0.11318676918745041,0.9460279941558838,0.18413038551807404,0.9626348614692688,0.11090337485074997,0.0023627399932593107,-0.0033905974123626947,0.002769703045487404,0.004203788470476866,-0.004421694204211235,-0.0032073655165731907,-1.307821475404961,-2.609254717932421,4.253162643088811,-0.01307821475404961,-0.026092547179324212,0.04253162643088811 +karman_re50,sr,65,26.0,0.9495032429695129,0.20196932554244995,0.9721580743789673,0.22533012926578522,0.9837635159492493,0.14634151756763458,0.0025288353208452463,-0.0027748900465667248,0.002559963148087263,0.0038716369308531284,-0.004297554958611727,-0.0031937030144035816,-1.3713686540707757,-2.779656785098345,4.082760575922887,-0.013713686540707757,-0.02779656785098345,0.04082760575922887 +karman_re50,sr,66,26.4,0.9163122773170471,0.25405511260032654,0.9989702701568604,0.2566656768321991,1.0072780847549438,0.1763613373041153,0.0023220127914100885,-0.0018298941431567073,0.0021471474319696426,0.0035450002178549767,-0.003777897683903575,-0.0032190512865781784,-1.3076993315372556,-2.987913866298953,3.87450349472228,-0.013076993315372556,-0.029879138662989527,0.0387450349472228 +karman_re50,sr,67,26.8,0.8942375779151917,0.2682204246520996,1.0233571529388428,0.2798099219799042,1.0319136381149292,0.2067176252603531,0.0017906129360198975,-0.0007598432130180299,0.0015934188850224018,0.0033014777582138777,-0.0029628670308738947,-0.003367949742823839,-1.129880726058372,-3.2180736426745327,3.644343718346699,-0.01129880726058372,-0.03218073642674533,0.036443437183466994 +karman_re50,sr,68,27.2,0.877917468547821,0.2493065446615219,1.0409907102584839,0.29325687885284424,1.0555695295333862,0.2384764552116394,0.001122623565606773,0.0002515892556402832,0.0009581903577782214,0.003154959063977003,-0.0019617124926298857,-0.003615632886067033,-0.8688642091502007,-3.474674105905285,3.387743255115948,-0.008688642091502007,-0.03474674105905285,0.03387743255115948 +karman_re50,sr,69,27.6,0.8643975257873535,0.2029382586479187,1.0470091104507446,0.2899278998374939,1.0760419368743896,0.26800820231437683,0.0005566274630837142,0.0011005717096850276,0.0002549432101659477,0.0030500399880111217,-0.0008831259328871965,-0.0038697237614542246,-0.5568129673478112,-3.7324390975475463,3.129978263473686,-0.005568129673478112,-0.03732439097547546,0.03129978263473686 +karman_re50,sr,70,28.0,0.8583869338035583,0.13996584713459015,1.0377416610717773,0.2588536739349365,1.0907858610153198,0.2853108048439026,0.000259733060374856,0.0017939636018127203,-0.0005245108623057604,0.002961347345262766,0.00017519891844131052,-0.004083150532096624,-0.21702491112053005,-3.9671924353340375,2.895224925687195,-0.0021702491112053006,-0.039671924353340375,0.028952249256871954 +karman_re50,sr,71,28.4,0.8670896887779236,0.07872020453214645,1.0119731426239014,0.19199493527412415,1.0963705778121948,0.27468106150627136,0.00029103763517923653,0.002395831048488617,-0.0014075766084715724,0.0029205307364463806,0.0011224308982491493,-0.004263087175786495,0.13343165826411263,-4.164745568433196,2.697671792588036,0.0013343165826411264,-0.041647455684331966,0.02697671792588036 +karman_re50,sr,72,28.8,0.8917163610458374,0.031183458864688873,0.9760557413101196,0.09256277233362198,1.0918354988098145,0.2236475944519043,0.0006269823061302304,0.002935592317953706,-0.002361154183745384,0.0029577005188912153,0.0018913382664322853,-0.004424549639225006,0.48246159526592003,-4.309094109908867,2.5533232511123654,0.004824615952659201,-0.04309094109908867,0.025533232511123653 +karman_re50,sr,73,29.2,0.9181371927261353,-0.01010076329112053,0.9408899545669556,-0.018646888434886932,1.072009563446045,0.13367897272109985,0.0011826129630208015,0.003370719961822033,-0.003284731414169073,0.0030498725827783346,0.002432367531582713,-0.004501563496887684,0.8109320964143192,-4.390367962111926,2.4720493989093066,0.008109320964143192,-0.043903679621119254,0.024720493989093067 +karman_re50,sr,74,29.6,0.9402679204940796,-0.05644386634230614,0.9284584522247314,-0.11149279773235321,1.0408411026000977,0.021291466429829597,0.001807962660677731,0.0035932380706071854,-0.004029450006783009,0.0031497289892286062,0.002729346975684166,-0.004453048575669527,1.0902262820696813,-4.380456149103311,2.4819612119179215,0.010902262820696814,-0.04380456149103311,0.024819612119179216 +karman_re50,sr,75,30.0,0.959013044834137,-0.10269587486982346,0.94145667552948,-0.17428576946258545,1.0001552104949951,-0.09253337234258652,0.0023137847892940044,0.003472949843853712,-0.004421729128807783,0.0031970099080353975,0.00279115024022758,-0.004248935729265213,1.2888736359783275,-4.283437489117137,2.5789798719040955,0.012888736359783276,-0.042834374891171374,0.025789798719040954 +karman_re50,sr,76,30.4,0.9794477820396423,-0.14015845954418182,0.9667208790779114,-0.21786147356033325,0.9573547840118408,-0.18686702847480774,0.002541931578889489,0.0029266925994306803,-0.004374618176370859,0.003184487111866474,0.0026217354461550713,-0.003931446932256222,1.3754652022183038,-4.119053395418351,2.7433639656028816,0.01375465202218304,-0.041190533954183504,0.027433639656028817 +karman_re50,sr,77,30.8,1.0024830102920532,-0.17088665068149567,0.9936263561248779,-0.25090575218200684,0.9220009446144104,-0.24620485305786133,0.0024036597460508347,0.002030386123806238,-0.003916378132998943,0.0032002816442400217,0.002242566552013159,-0.0035969659220427275,1.3341746697595729,-3.9196389047091618,2.94277845631207,0.01334174669759573,-0.03919638904709162,0.0294277845631207 +karman_re50,sr,78,31.2,1.026958703994751,-0.20106840133666992,1.0186347961425781,-0.2755550444126129,0.898053765296936,-0.2671560049057007,0.0019184049451723695,0.0009638917981646955,-0.003146175527945161,0.003328514052554965,0.001707751420326531,-0.003337763249874115,1.1744843720787845,-3.6905969172729596,3.171820443748272,0.011744843720787846,-0.0369059691727296,0.031718204437482724 +karman_re50,sr,79,31.6,1.050774097442627,-0.23288463056087494,1.0376936197280884,-0.2912288308143616,0.8809805512428284,-0.2542119026184082,0.0012517822906374931,-7.040438504191115e-05,-0.002167172497138381,0.003566307947039604,0.001083259005099535,-0.0031782204750925303,0.9256230791989922,-3.437256646407754,3.4251607146134786,0.009256230791989922,-0.03437256646407754,0.03425160714613479 +karman_re50,sr,80,32.0,1.0717225074768066,-0.26342400908470154,1.0459303855895996,-0.29177916049957275,0.8667536973953247,-0.21265344321727753,0.0006450688815675676,-0.0009506926871836185,-0.0010917417239397764,0.0038265117909759283,0.0003967798256780952,-0.0030684650409966707,0.6198433655657192,-3.177441816808561,3.6849755442126706,0.0061984336556571915,-0.031774418168085614,0.03684975544212671 +karman_re50,sr,81,32.4,1.088850498199463,-0.2845613956451416,1.040798544883728,-0.26717740297317505,0.8598412275314331,-0.15222124755382538,0.00029300543246790767,-0.0016742837615311146,-1.9296003301860765e-05,0.004050732124596834,-0.00037018218426965177,-0.002980547957122326,0.2838546840310273,-2.9355288140190585,3.926888547002174,0.002838546840310273,-0.029355288140190585,0.03926888547002174 +karman_re50,sr,82,32.8,1.0947648286819458,-0.27993422746658325,1.016607642173767,-0.20705994963645935,0.8643703460693359,-0.08946973830461502,0.0002592439705040306,-0.0022829638328403234,0.0009555805590935051,0.004232269711792469,-0.0012311027385294437,-0.0029228529892861843,-0.06691249183126395,-2.731424999267133,4.1309923617541,-0.0006691249183126395,-0.027314249992671333,0.041309923617540996 +karman_re50,sr,83,33.2,1.0910005569458008,-0.23643842339515686,0.9809372425079346,-0.11291363835334778,0.8855969905853271,-0.03950073570013046,0.0005396951455622911,-0.0028338164556771517,0.0017655016854405403,0.004395002033561468,-0.0021706027910113335,-0.002942988183349371,-0.416991139081615,-2.5749930101558682,4.287424350865364,-0.00416991139081615,-0.025749930101558682,0.04287424350865364 +karman_re50,sr,84,33.6,1.0748968124389648,-0.15273143351078033,0.9450934529304504,-0.0018139478052034974,0.9131595492362976,0.0019557452760636806,0.0010653454810380936,-0.0032940504606813192,0.0023477557115256786,0.0044984230771660805,-0.0031133710872381926,-0.003032092470675707,-0.7505982649449608,-2.4817500469412237,4.380667314080009,-0.007505982649449608,-0.024817500469412238,0.04380667314080009 +karman_re50,sr,85,34.0,1.045986294746399,-0.04284726455807686,0.9277158379554749,0.09622818231582642,0.9362324476242065,0.047309860587120056,0.0016884211217984557,-0.0035684260074049234,0.0026888998690992594,0.0044738538563251495,-0.0039049226325005293,-0.0031362504232674837,-1.0414134899924345,-2.4723884503895563,4.390028910631676,-0.010414134899924345,-0.024723884503895566,0.04390028910631676 +karman_re50,sr,86,34.4,1.0079506635665894,0.0727541372179985,0.937802791595459,0.1646440476179123,0.9562442302703857,0.0945492684841156,0.002231583232060075,-0.0035207972396165133,0.002794118132442236,0.0043008457869291306,-0.0043771397322416306,-0.00319705274887383,-1.2574137090785011,-2.5565619768148147,4.305855384206417,-0.012574137090785012,-0.025565619768148147,0.043058553842064175 +karman_re50,sr,87,34.8,0.9637160301208496,0.17236009240150452,0.9606868028640747,0.21085487306118011,0.9749587774276733,0.13365767896175385,0.0025184773840010166,-0.003048629267141223,0.002662212587893009,0.003992271143943071,-0.004403135273605585,-0.003189047798514366,-1.3675281596073836,-2.7094484648609436,4.152968896160289,-0.013675281596073837,-0.027094484648609436,0.04152968896160289 +karman_re50,sr,88,35.2,0.9266489148139954,0.23912860453128815,0.9878272414207458,0.24572545289993286,0.9976890683174133,0.16514421999454498,0.002450506202876568,-0.0022047851234674454,0.002319854684174061,0.0036525109317153692,-0.004013532772660255,-0.003192422678694129,-1.347331575622692,-2.9059882496652927,3.95642911135594,-0.013473315756226921,-0.029059882496652926,0.0395642911135594 +karman_re50,sr,89,35.6,0.9021630883216858,0.26757967472076416,1.0148999691009521,0.27239125967025757,1.0234230756759644,0.19547733664512634,0.002021537162363529,-0.0011563592124730349,0.0018100873567163944,0.003380205249413848,-0.003295266069471836,-0.0033027983736246824,-1.207749861510095,-3.130361161755153,3.732056199266079,-0.01207749861510095,-0.03130361161755153,0.03732056199266079 +karman_re50,sr,90,36.0,0.8833267688751221,0.26029253005981445,1.0343387126922607,0.28977370262145996,1.046328067779541,0.22685804963111877,0.0013697338290512562,-0.00010375531564932317,0.0011958874529227614,0.003199636237695813,-0.0023435107432305813,-0.0035210035275667906,-0.9735690316538658,-3.3805930293548636,3.4818243316663686,-0.009735690316538658,-0.033805930293548635,0.03481824331666369 +karman_re50,sr,91,36.4,0.868584394454956,0.22360795736312866,1.0450503826141357,0.29403984546661377,1.0680159330368042,0.2581661343574524,0.0007356805144809186,0.0008087083697319031,0.0005181083688512444,0.003083684714511037,-0.001279164687730372,-0.0037792378570884466,-0.6749480764232214,-3.641347824755161,3.221069536266071,-0.006749480764232214,-0.03641347824755161,0.03221069536266071 +karman_re50,sr,92,36.8,0.8598806262016296,0.16535121202468872,1.0430251359939575,0.27506566047668457,1.086411714553833,0.28206270933151245,0.00032923606340773404,0.0015556970611214638,-0.00023160972341429442,0.0029898122884333134,-0.00020226002379786223,-0.004010956734418869,-0.34273227399658485,-3.886024546233921,2.976392814787311,-0.0034273227399658486,-0.03886024546233921,0.02976392814787311 +karman_re50,sr,93,37.2,0.8613245487213135,0.10108035802841187,1.0220237970352173,0.22178000211715698,1.0942996740341187,0.28338396549224854,0.0002417984651401639,0.002183026634156704,-0.0010763179743662477,0.0029225207399576902,0.000797028187662363,-0.0041968682780861855,0.005596862009264591,-4.09892573446351,2.7634916265577223,5.596862009264591e-05,-0.0409892573446351,0.027634916265577222 +karman_re50,sr,94,37.6,0.8801120519638062,0.04803703725337982,0.988297700881958,0.13306047022342682,1.0929425954818726,0.247733935713768,0.0004742183955386281,0.0027431140188127756,-0.0020064532291144133,0.002930476563051343,0.0016390788368880749,-0.004368321970105171,0.35723908937689225,-4.2644929305659875,2.5979244304552442,0.0035723908937689225,-0.04264492930565988,0.025979244304552444 +karman_re50,sr,95,38.0,0.907734215259552,0.005925468634814024,0.9511813521385193,0.022616198286414146,1.079379677772522,0.1707693636417389,0.0009642174700275064,0.0032276443671435118,-0.0029578921385109425,0.0030112776439636946,0.002265399321913719,-0.0044860332272946835,0.6951873508218711,-4.371402698126868,2.4910146628943637,0.006951873508218711,-0.04371402698126868,0.024910146628943638 +karman_re50,sr,96,38.4,0.932166576385498,-0.03830718994140625,0.9291031360626221,-0.08020874857902527,1.052825927734375,0.0643027052283287,0.001583512406796217,0.003545245621353388,-0.0037923017516732216,0.0031167748384177685,0.0026482120156288147,-0.004490332677960396,0.9960593096427983,-4.395537926263845,2.4668794347573875,0.009960593096427984,-0.043955379262638455,0.024668794347573877 +karman_re50,sr,97,38.8,0.9513931274414062,-0.08609834313392639,0.9334716796875,-0.15403228998184204,1.0150166749954224,-0.051803916692733765,0.0021543027833104134,0.0035638841800391674,-0.004328661132603884,0.0031845790799707174,0.002792396815493703,-0.004336938727647066,1.2281783900839882,-4.3293656431802034,2.5330517178410292,0.012281783900839883,-0.04329365643180204,0.025330517178410294 +karman_re50,sr,98,39.2,0.9708132147789001,-0.12725073099136353,0.955810546875,-0.20338274538516998,0.9719581007957458,-0.15578687191009521,0.00249899597838521,0.003171762451529503,-0.004442276433110237,0.003188326256349683,0.0027050762437283993,-0.00405169976875186,1.3579552505254555,-4.184726159908952,2.67769120111228,0.013579552505254555,-0.041847261599089525,0.0267769120111228 +karman_re50,sr,99,39.6,0.9930940866470337,-0.1598709225654602,0.9828380346298218,-0.24009588360786438,0.9330305457115173,-0.22946539521217346,0.002501714276149869,0.002389306901022792,-0.004116717725992203,0.0031824365723878145,0.0024028378538787365,-0.0037049532402306795,1.362969542673519,-3.995760757769134,2.8666566032520984,0.013629695426735191,-0.03995760757769134,0.028666566032520983 +karman_re50,sr,100,40.0,1.0174314975738525,-0.18979789316654205,1.00910484790802,-0.26781198382377625,0.9053167104721069,-0.2644382417201996,0.0021259149070829153,0.0013564283726736903,-0.0034487671218812466,0.003269803710281849,0.0019145405385643244,-0.003419809974730015,1.2432513251971853,-3.772877571199815,3.089539789821418,0.012432513251971852,-0.03772877571199815,0.030895397898214178 +karman_re50,sr,101,40.4,1.0418238639831543,-0.22117315232753754,1.0310368537902832,-0.28727397322654724,0.8865402340888977,-0.2635398209095001,0.0014967898605391383,0.00029092151089571416,-0.002532940823584795,0.0034734297078102827,0.0013165704440325499,-0.0032288730144500732,1.0227597992839212,-3.529296410768148,3.3331209502530843,0.010227597992839213,-0.03529296410768148,0.033331209502530844 +karman_re50,sr,102,40.8,1.0640403032302856,-0.2528812289237976,1.0438069105148315,-0.2945559024810791,0.8712111115455627,-0.23186519742012024,0.0008401197846978903,-0.0006527940859086812,-0.0014840496005490422,0.003733599092811346,0.0006490921950899065,-0.00310459709726274,0.7340853109072661,-3.271295285831828,3.591122075189404,0.007340853109072662,-0.03271295285831828,0.03591122075189404 +karman_re50,sr,103,41.2,1.0820002555847168,-0.27871173620224,1.0431731939315796,-0.2803420126438141,0.8599392175674438,-0.17650729417800903,0.00038019020576030016,-0.0014279058668762445,-0.00040051332325674593,0.0039670285768806934,-8.563382289139554e-05,-0.0030039800330996513,0.4067810039766737,-3.019910003766751,3.8425073572544814,0.0040678100397667375,-0.030199100037667508,0.038425073572544814 +karman_re50,sr,104,41.6,1.0942292213439941,-0.28590306639671326,1.0274593830108643,-0.23372511565685272,0.8607609272003174,-0.11164262890815735,0.00022720287961419672,-0.0020800342317670584,0.0006108481902629137,0.004127528052777052,-0.0009393335203640163,-0.00290064699947834,0.06004617206045801,-2.80148000794611,4.060937353075122,0.0006004617206045801,-0.028014800079461104,0.04060937353075122 +karman_re50,sr,105,42.0,1.0934618711471558,-0.2574162185192108,0.9947697520256042,-0.15127506852149963,0.8756526112556458,-0.056434404104948044,0.00040911859832704067,-0.0026432874146848917,0.0014983286382630467,0.004341282416135073,-0.0018265933031216264,-0.002925075823441148,-0.295613012639049,-2.628962332621429,4.233455028399803,-0.00295613012639049,-0.02628962332621429,0.042334550283998025 +karman_re50,sr,106,42.4,1.0821727514266968,-0.18740123510360718,0.9571121335029602,-0.042950186878442764,0.9026129841804504,-0.013263051398098469,0.0008587545016780496,-0.0031431165989488363,0.0021693038288503885,0.00447685644030571,-0.002783756237477064,-0.002991616493090987,-0.6340483732612835,-2.5051640865456704,4.357253274475562,-0.006340483732612835,-0.025051640865456703,0.04357253274475562 +karman_re50,sr,107,42.8,1.0578933954238892,-0.08478596061468124,0.9309684038162231,0.06352248787879944,0.9280893206596375,0.029933111742138863,0.0014653977705165744,-0.0035002308432012796,0.002595945494249463,0.004501229152083397,-0.0036548154894262552,-0.0030968128703534603,-0.9445273402155374,-2.4600238046919856,4.402393556329247,-0.009445273402155374,-0.024600238046919857,0.04402393556329247 +karman_re50,sr,108,43.2,1.021733283996582,0.031370680779218674,0.9306202530860901,0.1429983377456665,0.9478670358657837,0.07773429900407791,0.0020611665677279234,-0.0035815343726426363,0.0027779387310147285,0.004371250979602337,-0.004264746326953173,-0.003175781574100256,-1.1919933469758897,-2.5128736635139557,4.3495436975072765,-0.011919933469758897,-0.025128736635139558,0.043495436975072764 +karman_re50,sr,109,43.6,0.9790226817131042,0.1391727775335312,0.9508296847343445,0.19575665891170502,0.9668808579444885,0.12054185569286346,0.0024569369852542877,-0.003270295914262533,0.0027339679654687643,0.004108033142983913,-0.004452073946595192,-0.0031930243130773306,-1.3430098760563582,-2.649502123058549,4.212915237962683,-0.013430098760563582,-0.026495021230585492,0.04212915237962683 +karman_re50,sr,110,44.0,0.9387621879577637,0.21936336159706116,0.9776297807693481,0.23425628244876862,0.9886645674705505,0.1542394757270813,0.0025239286478608847,-0.002549773780629039,0.002469385042786598,0.003770838025957346,-0.004201245494186878,-0.0031809480860829353,-1.3703474141212684,-2.8328927393643717,4.0295246216568605,-0.013703474141212684,-0.02832892739364372,0.0402952462165686 +karman_re50,sr,111,44.4,0.9090762138366699,0.26151835918426514,1.0043988227844238,0.263589084148407,1.012870192527771,0.18424440920352936,0.0022143321111798286,-0.0015467054909095168,0.0020118835382163525,0.003466589841991663,-0.0035836633760482073,-0.003244358114898205,-1.2720606724480534,-3.045485020789548,3.8169323402316846,-0.012720606724480535,-0.03045485020789548,0.038169323402316845 +karman_re50,sr,112,44.8,0.8892881274223328,0.26675185561180115,1.027573823928833,0.2846815586090088,1.0374996662139893,0.21526795625686646,0.0016172698233276606,-0.00047424371587112546,0.0014277802547439933,0.0032556536607444286,-0.0027068813797086477,-0.0034321527928113937,-1.06704683028412,-3.285893377966429,3.576523983054803,-0.0106704683028412,-0.03285893377966429,0.03576523983054803 +karman_re50,sr,113,45.2,0.8735831379890442,0.2402661293745041,1.0424296855926514,0.29480841755867004,1.0602962970733643,0.2472209334373474,0.0009477787534706295,0.0004984050174243748,0.0007695049280300736,0.0031234906055033207,-0.0016746532637625933,-0.0036874006036669016,-0.7884622645362839,-3.54661985564094,3.3157975053802917,-0.007884622645362839,-0.0354661985564094,0.03315797505380292 +karman_re50,sr,114,45.6,0.8611490726470947,0.18825210630893707,1.0445468425750732,0.2853526473045349,1.079246997833252,0.2748683989048004,0.00044419444748200476,0.001300235977396369,4.290241849957965e-05,0.0030169731471687555,-0.0005734064034186304,-0.003928216639906168,-0.4660904986100208,-3.7999442929390406,3.0624730680821917,-0.004660904986100208,-0.037999442929390406,0.03062473068082192 +karman_re50,sr,115,46.0,0.8582120537757874,0.12389081716537476,1.0308563709259033,0.24547797441482544,1.091644525527954,0.2864340841770172,0.00023555217194370925,0.001963365124538541,-0.0007589482702314854,0.0029361846391111612,0.0004484312958084047,-0.004128778353333473,-0.11752745262978476,-4.027062501971813,2.835354859049419,-0.0011752745262978476,-0.040270625019718134,0.028353548590494188 +karman_re50,sr,116,46.4,0.8713383674621582,0.06557392328977585,1.0016456842422485,0.1690947562456131,1.0944652557373047,0.2656640410423279,0.000358735240297392,0.002545339986681938,-0.0016619345406070352,0.002916192403063178,0.0013595005730167031,-0.004310537129640579,0.23024211192088817,-4.211034849622959,2.651382511398273,0.0023024211192088817,-0.04211034849622959,0.02651382511398273 +karman_re50,sr,117,46.8,0.8973735570907593,0.02075001783668995,0.9640294909477234,0.06364136189222336,1.085586428642273,0.2030697613954544,0.0007657507085241377,0.003065102966502309,-0.002619677223265171,0.0029772166162729263,0.0020697975996881723,-0.004455744754523039,0.5761747350705739,-4.342957999311872,2.5194593617093606,0.005761747350705739,-0.043429579993118715,0.025194593617093607 +karman_re50,sr,118,47.2,0.9239341616630554,-0.021498162299394608,0.934276282787323,-0.045622359961271286,1.063718318939209,0.10521136224269867,0.0013576082419604063,0.0034592074807733297,-0.003518766490742564,0.003083219286054373,0.002538477536290884,-0.004506004974246025,0.8942627632650682,-4.398004765569857,2.4644125954513756,0.008942627632650682,-0.043980047655698566,0.024644125954513756 +karman_re50,sr,119,47.6,0.9444940686225891,-0.06897997111082077,0.9289141893386841,-0.1307387799024582,1.0294766426086426,-0.009877967648208141,0.001965011702850461,0.003600672585889697,-0.004182830918580294,0.00316707044839859,0.0027646655216813087,-0.004409011919051409,1.1550904921959644,-4.361555285107542,2.50086207591369,0.011550904921959645,-0.04361555285107542,0.0250086207591369 +karman_re50,sr,120,48.0,0.9632163047790527,-0.11346544325351715,0.9464176893234253,-0.18735939264297485,0.9872779846191406,-0.12073922157287598,0.002409286331385374,0.003364105708897114,-0.004455887246876955,0.003188361180946231,0.002761753275990486,-0.004163555335253477,1.3248578143617806,-4.243302898156642,2.61911446286459,0.013248578143617807,-0.04243302898156642,0.0261911446286459 +karman_re50,sr,121,48.4,0.9844242334365845,-0.14865168929100037,0.972693681716919,-0.22784851491451263,0.9457802772521973,-0.20702342689037323,0.0025431010872125626,0.0027075838297605515,-0.0042827073484659195,0.003176293335855007,0.00253484258428216,-0.0038328340742737055,1.3763731338616008,-4.068879257191527,2.7935381038297056,0.013763731338616008,-0.04068879257191527,0.027935381038297055 +karman_re50,sr,122,48.8,1.0096137523651123,-0.17906421422958374,1.0009455680847168,-0.2590270936489105,0.9150615930557251,-0.2565397620201111,0.002304206835106015,0.0017468406585976481,-0.0037296763621270657,0.0032296115532517433,0.0021118316799402237,-0.0035192931536585093,1.3000775719523538,-3.8605146904296004,3.001902670591632,0.013000775719523539,-0.038605146904296006,0.03001902670591632 +karman_re50,sr,123,49.2,1.033083200454712,-0.20957115292549133,1.0238038301467896,-0.2813543677330017,0.892687976360321,-0.267821341753006,0.0017432330641895533,0.0006675792974419892,-0.002885570516809821,0.003393607446923852,0.0015422740252688527,-0.003288271836936474,1.113950563880911,-3.6206288409672314,3.2417885200540013,0.01113950563880911,-0.03620628840967231,0.032417885200540016 +karman_re50,sr,124,49.6,1.0563122034072876,-0.24159763753414154,1.040441632270813,-0.2939431369304657,0.87642502784729,-0.2467871904373169,0.0010658015962690115,-0.00032935678609646857,-0.0018734558252617717,0.003641872899606824,0.0008958668913692236,-0.0031443117186427116,0.8443709892899495,-3.3623306844018286,3.5000866766194036,0.008443709892899495,-0.033623306844018284,0.03500086676619404 +karman_re50,sr,125,50.0,1.0760246515274048,-0.2706696391105652,1.0450493097305298,-0.2888515591621399,0.8629993200302124,-0.19886110723018646,0.000513006467372179,-0.0011632491368800402,-0.0007922447985038161,0.003884990466758609,0.00018779179663397372,-0.0030364664271473885,0.5280979807857257,-3.1058579554287906,3.7565594055924416,0.005280979807857257,-0.031058579554287907,0.03756559405592442 +karman_re50,sr,126,50.4,1.0897631645202637,-0.2863469421863556,1.034271240234375,-0.25522589683532715,0.8576553463935852,-0.13551336526870728,0.00024722423404455185,-0.0018484863685443997,0.0002633775002323091,0.0040918863378465176,-0.0006014350801706314,-0.00294830952771008,0.1868887811016889,-2.8763665382801067,3.986050822741126,0.0018688878110168891,-0.028763665382801066,0.03986050822741126 +karman_re50,sr,127,50.8,1.0944809913635254,-0.27245819568634033,1.0076237916946411,-0.18542346358299255,0.867719829082489,-0.07503008097410202,0.00031023696647025645,-0.00244291964918375,0.0012033403618261218,0.00427808566018939,-0.0014846123522147536,-0.0029168841429054737,-0.16491605500730117,-2.683434218596781,4.1789831424244515,-0.0016491605500730117,-0.02683434218596781,0.041789831424244514 +karman_re50,sr,128,51.2,1.087837815284729,-0.21736915409564972,0.9706434011459351,-0.08387985825538635,0.8922325968742371,-0.028208499774336815,0.0006701711099594831,-0.002974092960357666,0.001954300096258521,0.00443572923541069,-0.0024362073745578527,-0.0029648991767317057,-0.5125810698073446,-2.541131404440427,4.321285956580805,-0.005125810698073447,-0.02541131404440427,0.04321285956580805 +karman_re50,sr,129,51.6,1.0683363676071167,-0.12468927353620529,0.9380256533622742,0.02706220932304859,0.9194867610931396,0.013497217558324337,0.0012362223351374269,-0.003396060084924102,0.0024682567454874516,0.004509059712290764,-0.0033558360300958157,-0.0030640712939202785,-0.8372509697184995,-2.469446299578677,4.392971061442555,-0.008372509697184996,-0.02469446299578677,0.043929710614425556 +karman_re50,sr,130,52.0,1.0360873937606812,-0.011064362712204456,0.9276791214942932,0.11778269708156586,0.9409842491149902,0.06027868390083313,0.001853911322541535,-0.0035965582355856895,0.0027374126948416233,0.0044390177354216576,-0.00408070906996727,-0.0031552680302411318,-1.110629547153671,-2.486343912843809,4.376073448177423,-0.01110629547153671,-0.02486343912843809,0.043760734481774234 +karman_re50,sr,131,52.4,0.994758665561676,0.10232609510421753,0.9420163631439209,0.17883600294589996,0.9595763683319092,0.10610940307378769,0.002325559500604868,-0.0034287050366401672,0.002777291228994727,0.0042183892801404,-0.004434897098690271,-0.0031878873705863953,-1.3001866178771393,-2.591776439042829,4.270640921978403,-0.013001866178771393,-0.02591776439042829,0.04270640921978403 +karman_re50,sr,132,52.8,0.9524086117744446,0.19435785710811615,0.9676166772842407,0.22147037088871002,0.9802412390708923,0.14281411468982697,0.002544248942285776,-0.0028503108769655228,0.00258920737542212,0.0038930410519242287,-0.004337727557867765,-0.0031802046578377485,-1.3753334235925858,-2.7573728663461186,4.105044494675114,-0.013753334235925858,-0.027573728663461188,0.041050444946751134 +karman_re50,sr,133,53.2,0.9196857213973999,0.2509809732437134,0.9961187243461609,0.2542210519313812,1.0051183700561523,0.17360693216323853,0.0023725698702037334,-0.00193008070345968,0.0021985324565321207,0.00357177946716547,-0.003846928244456649,-0.003216711338609457,-1.3209368230491882,-2.9650914540192708,3.897325907001962,-0.013209368230491883,-0.029650914540192707,0.03897325907001962 +karman_re50,sr,134,53.6,0.8958332538604736,0.2687291204929352,1.0199068784713745,0.2780166566371918,1.028681993484497,0.20381350815296173,0.0018563346238806844,-0.0008591838413849473,0.001650586142204702,0.003322041593492031,-0.003045314457267523,-0.003358784131705761,-1.152843462388364,-3.199032864754045,3.663384496267188,-0.011528434623883642,-0.03199032864754045,0.03663384496267188 +karman_re50,sr,135,54.0,0.880204439163208,0.2534872591495514,1.0395911931991577,0.29317352175712585,1.0536624193191528,0.23603087663650513,0.0011838244972750545,0.00016343235620297492,0.0010160403326153755,0.0031718469690531492,-0.0020609425846487284,-0.0035988015588372946,-0.8954881313249993,-3.455234291644548,3.407183069376684,-0.008954881313249993,-0.03455234291644548,0.03407183069376684 +karman_re50,sr,136,54.4,0.8649665713310242,0.2094164341688156,1.0453754663467407,0.2917276620864868,1.0728578567504883,0.2659327983856201,0.00059196149231866,0.0010279349517077208,0.00031695517827756703,0.003053510095924139,-0.0009838626720011234,-0.0038419857155531645,-0.586767463308201,-3.710390398614353,3.1520269624068793,-0.005867674633082009,-0.03710390398614353,0.03152026962406879 +karman_re50,sr,137,54.8,0.8575415015220642,0.14743401110172272,1.0375394821166992,0.26400792598724365,1.0879226922988892,0.2851170599460602,0.0002702285419218242,0.0017363674705848098,-0.0004555275954771787,0.0029590909834951162,8.162605809047818e-05,-0.004054884426295757,-0.24806039252006046,-3.946785707758946,2.9156316532622863,-0.0024806039252006046,-0.03946785707758946,0.029156316532622864 +karman_re50,sr,138,55.2,0.8645654916763306,0.08504922688007355,1.0136083364486694,0.20088344812393188,1.0945661067962646,0.27781856060028076,0.0002785331744235009,0.002342919586226344,-0.0013166143326088786,0.002916218712925911,0.0010543171083554626,-0.004245889373123646,0.10243290105454078,-4.1477380336733445,2.7146793273478877,0.001024329010545408,-0.04147738033673345,0.027146793273478877 +karman_re50,sr,139,55.6,0.8883166313171387,0.03591202199459076,0.9790060520172119,0.10411214828491211,1.0915887355804443,0.2307741492986679,0.0005887544248253107,0.0028890385292470455,-0.002267199568450451,0.0029539340175688267,0.001840204931795597,-0.004417961463332176,0.45212647086428265,-4.300668216274854,2.5617491447463783,0.004521264708642826,-0.04300668216274854,0.025617491447463784 +karman_re50,sr,140,56.0,0.9149828553199768,-0.005612989887595177,0.9428832530975342,-0.007645206991583109,1.0731489658355713,0.14368894696235657,0.0011279855389147997,0.0033349746372550726,-0.003203451866284013,0.003044991521164775,0.002396117663010955,-0.00450551975518465,0.7832644457880164,-4.388522894806516,2.4738944662147166,0.007832644457880164,-0.04388522894806516,0.024738944662147166 +karman_re50,sr,141,56.4,0.9375834465026855,-0.051497574895620346,0.9276123642921448,-0.10365412384271622,1.043046474456787,0.03236464783549309,0.001750944647938013,0.0035842943470925093,-0.003978752065449953,0.003141740569844842,0.0027067307382822037,-0.004462927579879761,1.0678139257411714,-4.386234792113801,2.476182568907431,0.010678139257411715,-0.043862347921138016,0.024761825689074313 +karman_re50,sr,142,56.8,0.95618736743927,-0.09835952520370483,0.9382265210151672,-0.1694505363702774,1.0028595924377441,-0.08257892727851868,0.0022744066081941128,0.0034973779693245888,-0.004408062901347876,0.0031866503413766623,0.002785872435197234,-0.004265152383595705,1.2748929361052455,-4.29512083469162,2.567296526329613,0.012748929361052454,-0.042951208346916195,0.02567296526329613 +karman_re50,sr,143,57.2,0.9762651324272156,-0.13683177530765533,0.9627562761306763,-0.21451161801815033,0.959892988204956,-0.17981499433517456,0.0025349208153784275,0.002987546380609274,-0.004392426460981369,0.0031789096537977457,0.0026405074167996645,-0.003954949788749218,1.3718526563615274,-4.1364313443009895,2.7259860167202428,0.013718526563615274,-0.04136431344300989,0.02725986016720243 +karman_re50,sr,144,57.6,0.9994910955429077,-0.16806644201278687,0.9900904893875122,-0.24860268831253052,0.9239363074302673,-0.24315868318080902,0.0024314371403306723,0.0021138046868145466,-0.003959458786994219,0.003197646699845791,0.002282349392771721,-0.0036212841514497995,1.341150367759966,-3.938654257574777,2.923763103446455,0.013411503677599662,-0.03938654257574777,0.029237631034464553 +karman_re50,sr,145,58.0,1.024278163909912,-0.19821807742118835,1.0157874822616577,-0.2741355001926422,0.8994873762130737,-0.26778697967529297,0.0019711493514478207,0.0010536075569689274,-0.003212514566257596,0.003321764525026083,0.0017549532931298018,-0.0033607587683945894,1.190286085616016,-3.7082213521666123,3.1541960088546204,0.01190286085616016,-0.03708221352166612,0.031541960088546206 +karman_re50,sr,146,58.4,1.048267126083374,-0.22998245060443878,1.035667061805725,-0.29092124104499817,0.8820721507072449,-0.25793686509132385,0.0013050308916717768,1.3361203855311032e-05,-0.002249278360977769,0.0035511357709765434,0.0011356811737641692,-0.0031910166144371033,0.9472748446421042,-3.456706661139607,3.4057106998816247,0.009472748446421042,-0.03456706661139607,0.03405710699881625 +karman_re50,sr,147,58.8,1.0694314241409302,-0.26095065474510193,1.0450266599655151,-0.29340991377830505,0.8673248291015625,-0.21879221498966217,0.0006827331962995231,-0.0008831111481413245,-0.0011833878234028816,0.003801003796979785,0.0004477233160287142,-0.0030730576254427433,0.6454972851677215,-3.195730043553982,3.66668731746725,0.0064549728516772155,-0.03195730043553982,0.0366668731746725 +karman_re50,sr,148,59.2,1.0869766473770142,-0.28350400924682617,1.0413066148757935,-0.2716674506664276,0.8591419458389282,-0.15927185118198395,0.00030534318648278713,-0.0016174293123185635,-0.00010766400373540819,0.004023291636258364,-0.00030931984656490386,-0.0029775656294077635,0.3110459080835639,-2.9552113081448685,3.9072060528763637,0.0031104590808356393,-0.029552113081448686,0.039072060528763636 +karman_re50,sr,149,59.6,1.0939558744430542,-0.2818378508090973,1.0188770294189453,-0.2149094194173813,0.8620562553405762,-0.09546776115894318,0.00025157176423817873,-0.002236355561763048,0.0008845554548315704,0.004211234860122204,-0.0011564444284886122,-0.0029179591219872236,-0.03845490551619606,-2.747417967765474,4.114999393255759,-0.00038454905516196065,-0.02747417967765474,0.04114999393255759 +karman_re50,sr,150,60.0,1.0917463302612305,-0.24215087294578552,0.9845700860023499,-0.12322998046875,0.8824029564857483,-0.04374777153134346,0.0005120860878378153,-0.0027919451240450144,0.0017115229275077581,0.004385633859783411,-0.002089097863063216,-0.002941563492640853,-0.3892099359501663,-2.585547452844831,4.276869908176401,-0.003892099359501663,-0.02585547452844831,0.04276869908176401 +karman_re50,sr,151,60.4,1.0770305395126343,-0.16162557899951935,0.9481615424156189,-0.012080862186849117,0.9102249145507812,-0.001944506075233221,0.0010181060060858727,-0.0032635489478707314,0.002312866970896721,0.004498669877648354,-0.003037194022908807,-0.003027857281267643,-0.7247621063371433,-2.486944218181315,4.375473142839917,-0.007247621063371433,-0.02486944218181315,0.043754731428399175 +karman_re50,sr,152,60.8,1.0491211414337158,-0.05318177118897438,0.9282679557800293,0.08865302801132202,0.9339526891708374,0.04288899898529053,0.0016394117847085,-0.00356006296351552,0.002663952764123678,0.004482361953705549,-0.00386014929972589,-0.003128219163045287,-1.0202337166924136,-2.4694577180164945,4.392959643004738,-0.010202337166924137,-0.024694577180164944,0.04392959643004738 +karman_re50,sr,153,61.2,1.0103094577789307,0.06272892653942108,0.9347531199455261,0.15960995852947235,0.9527797102928162,0.09039078652858734,0.00219129491597414,-0.0035396944731473923,0.002786622615531087,0.004311727359890938,-0.004359296523034573,-0.0031811378430575132,-1.2441183202188812,-2.545747041497784,4.316670319523448,-0.012441183202188812,-0.02545747041497784,0.04316670319523448 +karman_re50,sr,154,61.6,0.9671173095703125,0.16463667154312134,0.9578498601913452,0.20742137730121613,0.9723267555236816,0.13060829043388367,0.0025103844236582518,-0.003107883268967271,0.002682138467207551,0.004014990758150816,-0.004426036030054092,-0.0031802442390471697,-1.3626961730648448,-2.691926491415971,4.170490869605261,-0.013626961730648448,-0.02691926491415971,0.04170490869605261 +karman_re50,sr,155,62.0,0.9293972253799438,0.23477055132389069,0.9851294755935669,0.2431572675704956,0.9950745105743408,0.16261255741119385,0.0024770956952124834,-0.0022892646957188845,0.002361300867050886,0.003679310902953148,-0.00406276248395443,-0.0031890871468931437,-1.3554984316321015,-2.8853755334719806,3.977041827549252,-0.013554984316321015,-0.028853755334719806,0.03977041827549252 +karman_re50,sr,156,62.4,0.9030859470367432,0.26625412702560425,1.0114704370498657,0.2701956629753113,1.019816279411316,0.19263234734535217,0.0020737983286380768,-0.001248811953701079,0.0018625594675540924,0.0034004219342023134,-0.0033606484066694975,-0.003294214606285095,-1.2250413661549204,-3.110655830753709,3.7517615302675233,-0.012250413661549204,-0.03110655830753709,0.037517615302675236 +karman_re50,sr,157,62.8,0.8848938941955566,0.262218713760376,1.0327975749969482,0.2887771725654602,1.0441359281539917,0.22412878274917603,0.0014289312530308962,-0.00019281698041595519,0.0012520727468654513,0.0032172752544283867,-0.0024311630986630917,-0.0035067445132881403,-0.9960433701122617,-3.3617606759859973,3.5006566850352345,-0.009960433701122618,-0.033617606759859975,0.03500656685035235 +karman_re50,sr,158,63.2,0.8707748651504517,0.22820614278316498,1.0456910133361816,0.2949191927909851,1.0672812461853027,0.25597846508026123,0.0007812677067704499,0.0007358895381912589,0.0005751877324655652,0.0030965888872742653,-0.001379682100377977,-0.003759770654141903,-0.7023773000885722,-3.6204899927633747,3.2419273682578575,-0.007023773000885723,-0.036204899927633746,0.032419273682578575 +karman_re50,sr,159,63.6,0.8588782548904419,0.17080716788768768,1.0421606302261353,0.2777033746242523,1.0832200050354004,0.28033357858657837,0.0003499472513794899,0.001494591822847724,-0.00016867395606823266,0.0029868597630411386,-0.0002981454017572105,-0.003978346474468708,-0.3727853042275691,-3.864857198454372,2.9975601625668604,-0.0037278530422756914,-0.03864857198454372,0.029975601625668605 +karman_re50,sr,160,64.0,0.8599717617034912,0.10643985867500305,1.0239299535751343,0.22795850038528442,1.0932319164276123,0.2845624089241028,0.0002370748989051208,0.0021320688538253307,-0.0009977316949516535,0.0029218075796961784,0.0007170318276621401,-0.004176286514848471,-0.024689650154221643,-4.079532811920743,2.78288454910049,-0.0002468965015422164,-0.04079532811920743,0.0278288454910049 +karman_re50,sr,161,64.4,0.8777511119842529,0.05202774703502655,0.9915229082107544,0.1420172154903412,1.0931795835494995,0.25250759720802307,0.0004448422114364803,0.002696727402508259,-0.0019165505655109882,0.0029296744614839554,0.0015793696511536837,-0.004357907921075821,0.3269980592651984,-4.2515010320176625,2.6109163290035693,0.0032699805926519844,-0.04251501032017663,0.026109163290035695 +karman_re50,sr,162,64.8,0.9053006768226624,0.009443267248570919,0.9542205929756165,0.03237007558345795,1.0808701515197754,0.17882022261619568,0.0009147450909949839,0.0031897604931145906,-0.002871992066502571,0.003009304404258728,0.002224163617938757,-0.004486395511776209,0.6666570119551037,-4.36511753321481,2.4972998278064225,0.006666570119551038,-0.0436511753321481,0.024972998278064224 +karman_re50,sr,163,65.2,0.9313697814941406,-0.03429491072893143,0.9311912059783936,-0.07245571911334991,1.0566320419311523,0.07421291619539261,0.0015275889309123158,0.003530581947416067,-0.0037341031711548567,0.003115016268566251,0.0026249708607792854,-0.004505212418735027,0.9718150616975448,-4.397065104260426,2.4653522567608066,0.009718150616975448,-0.04397065104260426,0.024653522567608065 +karman_re50,sr,164,65.6,0.9506914019584656,-0.08218006789684296,0.933116614818573,-0.1490580141544342,1.0193432569503784,-0.04212512820959091,0.002109230263158679,0.003581664292141795,-0.004308701492846012,0.0031798516865819693,0.002785168820992112,-0.004357035271823406,1.212648181363558,-4.340245282978198,2.5221720780430346,0.012126481813635579,-0.04340245282978198,0.025221720780430345 +karman_re50,sr,165,66.0,0.9685561656951904,-0.1240677610039711,0.9531388878822327,-0.19979700446128845,0.9749431014060974,-0.1479864865541458,0.0024812810588628054,0.003217687364667654,-0.004452292807400227,0.003182829823344946,0.0027170060202479362,-0.004072626121342182,1.352770685119431,-4.200958306618102,2.66145905440313,0.01352770685119431,-0.04200958306618102,0.0266145905440313 +karman_re50,sr,166,66.4,0.9920070171356201,-0.1573772430419922,0.9814409613609314,-0.23761729896068573,0.9367073774337769,-0.22505544126033783,0.002519923495128751,0.0024663228541612625,-0.00416499562561512,0.0031844282057136297,0.0024387880694121122,-0.00374015630222857,1.3671545796354192,-4.01303837664482,2.849378984376412,0.013671545796354193,-0.0401303837664482,0.028493789843764123 +karman_re50,sr,167,66.8,1.015336275100708,-0.1871291697025299,1.0069900751113892,-0.26579341292381287,0.9071771502494812,-0.2631451189517975,0.0021732423920184374,0.0014465127605944872,-0.0035103007685393095,0.003265396924689412,0.001965754199773073,-0.003444337286055088,1.2593132660003643,-3.794594221961286,3.0678231390599464,0.012593132660003644,-0.03794594221961286,0.030678231390599466 +karman_re50,sr,168,67.2,1.0398870706558228,-0.2183566689491272,1.0295374393463135,-0.28605785965919495,0.8879707455635071,-0.2651433050632477,0.0015550671378150582,0.0003767989983316511,-0.0026150376070290804,0.003461817279458046,0.0013689002953469753,-0.00324553856626153,1.0442602279865483,-3.548216153247774,3.314201207773458,0.010442602279865484,-0.03548216153247774,0.03314201207773458 +karman_re50,sr,169,67.6,1.0622503757476807,-0.2502110004425049,1.043152093887329,-0.2947235703468323,0.8723139762878418,-0.23588024079799652,0.0008858772343955934,-0.0005788732087239623,-0.0015775730134919286,0.0037106703966856003,0.0007025681552477181,-0.0031129703857004642,0.759719894393534,-3.289785999541205,3.5726313614800267,0.007597198943935341,-0.03289785999541205,0.03572631361480027 +karman_re50,sr,170,68.0,1.0804572105407715,-0.2769417464733124,1.0435941219329834,-0.28284114599227905,0.8602361083030701,-0.1821030080318451,0.0004049852432217449,-0.0013669590698555112,-0.0004942653467878699,0.003941388335078955,-2.6295008865417913e-05,-0.003005045000463724,0.43481315481450983,-3.0403780864143792,3.822039274606853,0.004348131548145099,-0.030403780864143793,0.03822039274606853 +karman_re50,sr,171,68.4,1.091975450515747,-0.286101758480072,1.028243899345398,-0.23961253464221954,0.8585858345031738,-0.11765269190073013,0.00023269472876563668,-0.0020209425128996372,0.0005401877569966018,0.004142523743212223,-0.0008377725025638938,-0.002927960129454732,0.08923993907980157,-2.8189423010227586,4.043475059998474,0.0008923993907980158,-0.028189423010227588,0.04043475059998474 +karman_re50,sr,172,68.8,1.0953174829483032,-0.26179039478302,0.9992722868919373,-0.16009126603603363,0.8746045827865601,-0.0608065240085125,0.00038564219721592963,-0.0026007965207099915,0.0014391058357432485,0.004333116114139557,-0.001744340406730771,-0.002926651854068041,-0.26277111956173504,-2.6370165941659542,4.225400766855278,-0.0026277111956173505,-0.026370165941659543,0.042254007668552786 +karman_re50,sr,173,69.2,1.0839760303497314,-0.1948857456445694,0.9604905843734741,-0.05275961011648178,0.9002710580825806,-0.016829714179039,0.0008148747147060931,-0.003106036689132452,0.0021252676378935575,0.00447081821039319,-0.0026979593094438314,-0.0029930751770734787,-0.6070695634330605,-2.511534509126763,4.350882851894469,-0.0060706956343306055,-0.025115345091267633,0.04350882851894469 +karman_re50,sr,174,69.6,1.0607686042785645,-0.0944209098815918,0.9325147271156311,0.05519358813762665,0.926220715045929,0.02588844858109951,0.0014114407822489738,-0.003481148276478052,0.0025661077816039324,0.004506755154579878,-0.003587692277505994,-0.00309561425819993,-0.9197687205118802,-2.464925968415634,4.397491392605598,-0.009197687205118802,-0.02464925968415634,0.043974913926055986 +karman_re50,sr,175,70.0,1.025312900543213,0.02133043482899666,0.9296386241912842,0.13736331462860107,0.9461723566055298,0.0735788568854332,0.002010185504332185,-0.0035923784598708153,0.002767737489193678,0.004389564972370863,-0.00422638189047575,-0.0031678348314017057,-1.1735033139541677,-2.5084764992334994,4.353940861787732,-0.011735033139541677,-0.025084764992334994,0.04353940861787733 +karman_re50,sr,176,70.4,0.98261559009552,0.1306740641593933,0.9484500288963318,0.19190236926078796,0.9648494124412537,0.11722402274608612,0.0024242105428129435,-0.0033135602716356516,0.0027442392893135548,0.004130410961806774,-0.004454845562577248,-0.0031835518311709166,-1.333748609216315,-2.632330467285806,4.230086893735426,-0.013337486092163151,-0.026323304672858063,0.04230086893735426 +karman_re50,sr,177,70.8,0.9418503642082214,0.2137642800807953,0.9751421213150024,0.23129726946353912,0.9864794015884399,0.15159501135349274,0.002534400438889861,-0.0026216679252684116,0.0025009261444211006,0.003797917626798153,-0.004237258341163397,-0.0031793287489563227,-1.3728346468820811,-2.8120661177692856,4.050351243251947,-0.013728346468820811,-0.028120661177692855,0.04050351243251947 +karman_re50,sr,178,71.2,0.911421537399292,0.25921711325645447,1.0023036003112793,0.2613416314125061,1.0108435153961182,0.18167993426322937,0.0022578262723982334,-0.0016372714890167117,0.002060370985418558,0.0034913280978798866,-0.003643527626991272,-0.003243941580876708,-1.2849429211081096,-3.026719046605859,3.8356983144153736,-0.012849429211081096,-0.03026719046605859,0.038356983144153735 +karman_re50,sr,179,71.6,0.8921592831611633,0.2677317261695862,1.0272822380065918,0.2835303246974945,1.036900281906128,0.21283692121505737,0.001678411033935845,-0.0005651453393511474,0.0014836362097412348,0.0032793483696877956,-0.0027886072639375925,-0.003427143208682537,-1.0877090350396688,-3.269444889922104,3.592972471099129,-0.010877090350396688,-0.03269444889922104,0.03592972471099129 +karman_re50,sr,180,72.0,0.8749654293060303,0.24343277513980865,1.041581392288208,0.29449430108070374,1.0584925413131714,0.24457283318042755,0.000994902802631259,0.00041688489727675915,0.0008244810742326081,0.003134628292173147,-0.0017667472129687667,-0.00366646284237504,-0.8146985320004547,-3.527850379802987,3.3345669812182446,-0.008146985320004548,-0.035278503798029874,0.03334566981218245 +karman_re50,sr,181,72.4,0.8618254065513611,0.19328981637954712,1.044673204421997,0.2871377468109131,1.0776046514511108,0.2729288339614868,0.00046989190741442144,0.0012373633217066526,0.00010833343549165875,0.003022212767973542,-0.000686092593241483,-0.0039007188752293587,-0.4941361358890839,-3.7789704496190324,3.0834469114022,-0.004941361358890839,-0.037789704496190325,0.030834469114022 +karman_re50,sr,182,72.8,0.8576339483261108,0.1293090134859085,1.032271146774292,0.250204473733902,1.0905604362487793,0.28646981716156006,0.00023946813598740846,0.0019115782342851162,-0.0006861836300231516,0.0029373690485954285,0.00036328297574073076,-0.004105383530259132,-0.15149364107624763,-4.0056558237356175,2.856761537285615,-0.0015149364107624763,-0.040056558237356175,0.028567615372856153 +karman_re50,sr,183,73.2,0.8695524334907532,0.06994137167930603,1.004481315612793,0.17687083780765533,1.094509482383728,0.2689605951309204,0.0003360797418281436,0.0024993440601974726,-0.0015743395779281855,0.0029171325732022524,0.0012912368401885033,-0.004296142607927322,0.20012878675266504,-4.194962713289086,2.667454647732146,0.0020012878675266504,-0.04194962713289086,0.02667454647732146 +karman_re50,sr,184,73.6,0.8951218128204346,0.024209169670939445,0.9672955870628357,0.07308695465326309,1.086869478225708,0.20982883870601654,0.0007205345318652689,0.003023058408871293,-0.002527587115764618,0.002976660616695881,0.0020202379673719406,-0.0044515542685985565,0.5464531493951774,-4.332930783958385,2.5294865770628476,0.005464531493951774,-0.043329307839583844,0.025294865770628477 +karman_re50,sr,185,74.0,0.9231769442558289,-0.017766153439879417,0.9372656345367432,-0.03719237446784973,1.0673946142196655,0.1144421175122261,0.001300542033277452,0.003434121608734131,-0.003447009716182947,0.00308117363601923,0.002508749021217227,-0.004517595283687115,0.8672507645814799,-4.395628208045519,2.4667891529757133,0.008672507645814799,-0.04395628208045519,0.024667891529757135 +karman_re50,sr,186,74.4,0.9428582787513733,-0.06495664268732071,0.9282634258270264,-0.12493588775396347,1.032548427581787,-0.0002352222363697365,0.0019103840459138155,0.0036012688651680946,-0.004140735138207674,0.0031584040261805058,0.002748575760051608,-0.004421924706548452,1.1357376821341647,-4.370471714830179,2.4919456461910534,0.011357376821341648,-0.04370471714830179,0.024919456461910534 +karman_re50,sr,187,74.8,0.9613087177276611,-0.1100819781422615,0.944173276424408,-0.18352092802524567,0.9905171394348145,-0.11232785880565643,0.002379720564931631,0.0033966703340411186,-0.004451892804354429,0.003183082677423954,0.0027646964881569147,-0.004184423014521599,1.3137620807162163,-4.257413346873533,2.6050040141476996,0.013137620807162163,-0.042574133468735335,0.026050040141476997 +karman_re50,sr,188,75.2,0.9823253750801086,-0.1459600329399109,0.9702343940734863,-0.22495827078819275,0.9486286044120789,-0.20133161544799805,0.0025463830679655075,0.0027754874899983406,-0.0043106782250106335,0.003176250495016575,0.0025620893575251102,-0.0038584088906645775,1.376172668735214,-4.08597600801219,2.7764413530090426,0.01376172668735214,-0.0408597600801219,0.027764413530090428 +karman_re50,sr,189,75.6,1.0063856840133667,-0.17630980908870697,0.9976308941841125,-0.25652265548706055,0.9160643815994263,-0.2538183629512787,0.0023370792623609304,0.0018300807569175959,-0.0037761705461889505,0.0032244848553091288,0.0021538950968533754,-0.003541237208992243,1.3106073412643513,-3.877265843198998,2.985151517822234,0.013106073412643512,-0.03877265843198998,0.029851515178222342 +karman_re50,sr,190,76.0,1.0314075946807861,-0.20707878470420837,1.0223894119262695,-0.27997198700904846,0.8941506743431091,-0.2683282792568207,0.0018189746187999845,0.0007569476147182286,-0.002932928502559662,0.0033856371883302927,0.0016077650943771005,-0.003293721005320549,1.1308381190861199,-3.6383301600088513,3.224087201012381,0.0113083811908612,-0.03638330160008851,0.03224087201012381 +karman_re50,sr,191,76.4,1.054600477218628,-0.23887500166893005,1.039629340171814,-0.2934632897377014,0.8777160048484802,-0.24979081749916077,0.0011173810344189405,-0.000250876386417076,-0.0019593993201851845,0.0036214618012309074,0.0009483254980295897,-0.003158168401569128,0.8658908207080207,-3.371105525495533,3.4913118355257,0.008658908207080207,-0.03371105525495533,0.034913118355257 +karman_re50,sr,192,76.8,1.0744982957839966,-0.2685019373893738,1.0451949834823608,-0.29025745391845703,0.8637603521347046,-0.2037215679883957,0.0005440004169940948,-0.0010997179197147489,-0.0008821910014376044,0.0038543378468602896,0.00024493614910170436,-0.0030429307371377945,0.554490668768227,-3.12826534555528,3.734152015465953,0.005544906687682269,-0.0312826534555528,0.03734152015465953 +karman_re50,sr,193,77.2,1.0887404680252075,-0.28586137294769287,1.035658597946167,-0.25939276814460754,0.8573183417320251,-0.14094668626785278,0.0002557713305577636,-0.001801345031708479,0.00017967777966987342,0.00406654505059123,-0.0005249662208370864,-0.0029388396069407463,0.21493832001374902,-2.9006369607208375,3.961780400300395,0.0021493832001374903,-0.029006369607208374,0.03961780400300395 +karman_re50,sr,194,77.6,1.0945335626602173,-0.2750808298587799,1.010430932044983,-0.1926756054162979,0.8661665916442871,-0.07957464456558228,0.0002949157205875963,-0.0024000774137675762,0.0011355278547853231,0.004260896705091,-0.0014063471462577581,-0.002916345838457346,-0.1343725928385852,-2.6938123606058477,4.1686050004153845,-0.001343725928385852,-0.02693812360605848,0.041686050004153846 +karman_re50,sr,195,78.0,1.0891525745391846,-0.2235751897096634,0.974113941192627,-0.09317024052143097,0.8900697231292725,-0.03171410784125328,0.0006324691930785775,-0.0029335247818380594,0.0019026288064196706,0.004425765480846167,-0.00235077110119164,-0.0029656814876943827,-0.48472467560357324,-2.552019113267812,4.310398247753421,-0.004847246756035733,-0.02552019113267812,0.043103982477534206 +karman_re50,sr,196,78.4,1.0707497596740723,-0.13354305922985077,0.9403506517410278,0.018227264285087585,0.9176027774810791,0.00982289295643568,0.0011841546511277556,-0.0033707472030073404,0.0024337575305253267,0.004509959369897842,-0.0032825323287397623,-0.003061535768210888,-0.8111051446601869,-2.4764730539654987,4.385944307055734,-0.00811105144660187,-0.024764730539654986,0.04385944307055734 +karman_re50,sr,197,78.8,1.039320707321167,-0.020879914984107018,0.9275946021080017,0.11142297089099884,0.9394602179527283,0.05622547119855881,0.0018008429324254394,-0.003593333065509796,0.0027203455101698637,0.0044501181691884995,-0.004037404898554087,-0.003148698480799794,-1.0900719927420635,-2.4840976777564245,4.378319683264808,-0.010900719927420635,-0.024840976777564246,0.04378319683264808 +karman_re50,sr,198,79.2,0.9982962608337402,0.09325632452964783,0.9400866031646729,0.17455166578292847,0.9578293561935425,0.10255280137062073,0.0023067728616297245,-0.003463200991973281,0.002777339890599251,0.004236532840877771,-0.004425092600286007,-0.0031789562199264765,-1.288674058848071,-2.580222197938599,4.282195163082633,-0.01288674058848071,-0.02580222197938599,0.04282195163082633 +karman_re50,sr,199,79.6,0.9556305408477783,0.18773742020130157,0.9652408361434937,0.21825413405895233,0.9782293438911438,0.14005637168884277,0.0025393699761480093,-0.0029133076313883066,0.0026145856827497482,0.003919837065041065,-0.004368210211396217,-0.0031753014773130417,-1.3734730273000635,-2.73966895912526,4.122748401895972,-0.013734730273000635,-0.0273966895912526,0.041227484018959724 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_long.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_long.csv new file mode 100644 index 0000000..9774d9c --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_long.csv @@ -0,0 +1,901 @@ +scene,source,step,t_D,channel_group,channel_name,value +karman_re50,target,0,0.0,velocity,upper_ux,1.0077309608459473 +karman_re50,target,0,0.0,velocity,upper_uy,0.31268900632858276 +karman_re50,target,0,0.0,velocity,center_ux,1.032367467880249 +karman_re50,target,0,0.0,velocity,center_uy,0.38565218448638916 +karman_re50,target,0,0.0,velocity,lower_ux,1.0744714736938477 +karman_re50,target,0,0.0,velocity,lower_uy,0.31084343791007996 +karman_re50,target,1,0.4,velocity,upper_ux,0.9752272963523865 +karman_re50,target,1,0.4,velocity,upper_uy,0.31278347969055176 +karman_re50,target,1,0.4,velocity,center_ux,1.028232216835022 +karman_re50,target,1,0.4,velocity,center_uy,0.4061947166919708 +karman_re50,target,1,0.4,velocity,lower_ux,1.1129587888717651 +karman_re50,target,1,0.4,velocity,lower_uy,0.34444481134414673 +karman_re50,target,2,0.8,velocity,upper_ux,0.9404404163360596 +karman_re50,target,2,0.8,velocity,upper_uy,0.28842318058013916 +karman_re50,target,2,0.8,velocity,center_ux,1.018612265586853 +karman_re50,target,2,0.8,velocity,center_uy,0.3901177942752838 +karman_re50,target,2,0.8,velocity,lower_ux,1.1485111713409424 +karman_re50,target,2,0.8,velocity,lower_uy,0.35052192211151123 +karman_re50,target,3,1.2,velocity,upper_ux,0.9088469743728638 +karman_re50,target,3,1.2,velocity,upper_uy,0.23062294721603394 +karman_re50,target,3,1.2,velocity,center_ux,1.007595419883728 +karman_re50,target,3,1.2,velocity,center_uy,0.3140614628791809 +karman_re50,target,3,1.2,velocity,lower_ux,1.1731038093566895 +karman_re50,target,3,1.2,velocity,lower_uy,0.29963257908821106 +karman_re50,target,4,1.6,velocity,upper_ux,0.8895705938339233 +karman_re50,target,4,1.6,velocity,upper_uy,0.14141683280467987 +karman_re50,target,4,1.6,velocity,center_ux,1.002601981163025 +karman_re50,target,4,1.6,velocity,center_uy,0.182588592171669 +karman_re50,target,4,1.6,velocity,lower_ux,1.1834471225738525 +karman_re50,target,4,1.6,velocity,lower_uy,0.1890764981508255 +karman_re50,target,5,2.0,velocity,upper_ux,0.8841860890388489 +karman_re50,target,5,2.0,velocity,upper_uy,0.03419071435928345 +karman_re50,target,5,2.0,velocity,center_ux,1.0019114017486572 +karman_re50,target,5,2.0,velocity,center_uy,0.02574985660612583 +karman_re50,target,5,2.0,velocity,lower_ux,1.176062822341919 +karman_re50,target,5,2.0,velocity,lower_uy,0.05076853930950165 +karman_re50,target,6,2.4,velocity,upper_ux,0.8963819146156311 +karman_re50,target,6,2.4,velocity,upper_uy,-0.0689723864197731 +karman_re50,target,6,2.4,velocity,center_ux,1.0073328018188477 +karman_re50,target,6,2.4,velocity,center_uy,-0.11840152740478516 +karman_re50,target,6,2.4,velocity,lower_ux,1.158385992050171 +karman_re50,target,6,2.4,velocity,lower_uy,-0.07662329077720642 +karman_re50,target,7,2.8,velocity,upper_ux,0.9220305681228638 +karman_re50,target,7,2.8,velocity,upper_uy,-0.14861394464969635 +karman_re50,target,7,2.8,velocity,center_ux,1.014836311340332 +karman_re50,target,7,2.8,velocity,center_uy,-0.22410747408866882 +karman_re50,target,7,2.8,velocity,lower_ux,1.133054256439209 +karman_re50,target,7,2.8,velocity,lower_uy,-0.17192429304122925 +karman_re50,target,8,3.2,velocity,upper_ux,0.9556723237037659 +karman_re50,target,8,3.2,velocity,upper_uy,-0.1984201818704605 +karman_re50,target,8,3.2,velocity,center_ux,1.0223488807678223 +karman_re50,target,8,3.2,velocity,center_uy,-0.28568312525749207 +karman_re50,target,8,3.2,velocity,lower_ux,1.1045842170715332 +karman_re50,target,8,3.2,velocity,lower_uy,-0.23210445046424866 +karman_re50,target,9,3.6,velocity,upper_ux,0.9922119975090027 +karman_re50,target,9,3.6,velocity,upper_uy,-0.23059363663196564 +karman_re50,target,9,3.6,velocity,center_ux,1.029402494430542 +karman_re50,target,9,3.6,velocity,center_uy,-0.318838506937027 +karman_re50,target,9,3.6,velocity,lower_ux,1.0765469074249268 +karman_re50,target,9,3.6,velocity,lower_uy,-0.26738664507865906 +karman_re50,target,10,4.0,velocity,upper_ux,1.0306323766708374 +karman_re50,target,10,4.0,velocity,upper_uy,-0.2620929181575775 +karman_re50,target,10,4.0,velocity,center_ux,1.0366642475128174 +karman_re50,target,10,4.0,velocity,center_uy,-0.3461267352104187 +karman_re50,target,10,4.0,velocity,lower_ux,1.0508241653442383 +karman_re50,target,10,4.0,velocity,lower_uy,-0.29083487391471863 +karman_re50,target,11,4.4,velocity,upper_ux,1.0670619010925293 +karman_re50,target,11,4.4,velocity,upper_uy,-0.29812490940093994 +karman_re50,target,11,4.4,velocity,center_ux,1.038124442100525 +karman_re50,target,11,4.4,velocity,center_uy,-0.37628471851348877 +karman_re50,target,11,4.4,velocity,lower_ux,1.0209250450134277 +karman_re50,target,11,4.4,velocity,lower_uy,-0.30708372592926025 +karman_re50,target,12,4.8,velocity,upper_ux,1.1060634851455688 +karman_re50,target,12,4.8,velocity,upper_uy,-0.3340187072753906 +karman_re50,target,12,4.8,velocity,center_ux,1.035738468170166 +karman_re50,target,12,4.8,velocity,center_uy,-0.4024990200996399 +karman_re50,target,12,4.8,velocity,lower_ux,0.9886313676834106 +karman_re50,target,12,4.8,velocity,lower_uy,-0.31320980191230774 +karman_re50,target,13,5.2,velocity,upper_ux,1.1439363956451416 +karman_re50,target,13,5.2,velocity,upper_uy,-0.3502766788005829 +karman_re50,target,13,5.2,velocity,center_ux,1.0277838706970215 +karman_re50,target,13,5.2,velocity,center_uy,-0.3999009430408478 +karman_re50,target,13,5.2,velocity,lower_ux,0.9532766938209534 +karman_re50,target,13,5.2,velocity,lower_uy,-0.2979300022125244 +karman_re50,target,14,5.6,velocity,upper_ux,1.1730700731277466 +karman_re50,target,14,5.6,velocity,upper_uy,-0.31664028763771057 +karman_re50,target,14,5.6,velocity,center_ux,1.017236590385437 +karman_re50,target,14,5.6,velocity,center_uy,-0.3410341739654541 +karman_re50,target,14,5.6,velocity,lower_ux,0.9194557666778564 +karman_re50,target,14,5.6,velocity,lower_uy,-0.25039252638816833 +karman_re50,target,15,6.0,velocity,upper_ux,1.1883978843688965 +karman_re50,target,15,6.0,velocity,upper_uy,-0.22058480978012085 +karman_re50,target,15,6.0,velocity,center_ux,1.011395812034607 +karman_re50,target,15,6.0,velocity,center_uy,-0.22175732254981995 +karman_re50,target,15,6.0,velocity,lower_ux,0.8962686061859131 +karman_re50,target,15,6.0,velocity,lower_uy,-0.1689416468143463 +karman_re50,target,16,6.4,velocity,upper_ux,1.1849288940429688 +karman_re50,target,16,6.4,velocity,upper_uy,-0.08717484772205353 +karman_re50,target,16,6.4,velocity,center_ux,1.009433388710022 +karman_re50,target,16,6.4,velocity,center_uy,-0.06757096946239471 +karman_re50,target,16,6.4,velocity,lower_ux,0.8864444494247437 +karman_re50,target,16,6.4,velocity,lower_uy,-0.06425153464078903 +karman_re50,target,17,6.8,velocity,upper_ux,1.16986083984375 +karman_re50,target,17,6.8,velocity,upper_uy,0.04375701770186424 +karman_re50,target,17,6.8,velocity,center_ux,1.013740062713623 +karman_re50,target,17,6.8,velocity,center_uy,0.08287535607814789 +karman_re50,target,17,6.8,velocity,lower_ux,0.8947130441665649 +karman_re50,target,17,6.8,velocity,lower_uy,0.042603589594364166 +karman_re50,target,18,7.2,velocity,upper_ux,1.1456360816955566 +karman_re50,target,18,7.2,velocity,upper_uy,0.146937757730484 +karman_re50,target,18,7.2,velocity,center_ux,1.020347237586975 +karman_re50,target,18,7.2,velocity,center_uy,0.19989383220672607 +karman_re50,target,18,7.2,velocity,lower_ux,0.9175280928611755 +karman_re50,target,18,7.2,velocity,lower_uy,0.13053452968597412 +karman_re50,target,19,7.6,velocity,upper_ux,1.1169698238372803 +karman_re50,target,19,7.6,velocity,upper_uy,0.2151496857404709 +karman_re50,target,19,7.6,velocity,center_ux,1.0270673036575317 +karman_re50,target,19,7.6,velocity,center_uy,0.27213799953460693 +karman_re50,target,19,7.6,velocity,lower_ux,0.9497470259666443 +karman_re50,target,19,7.6,velocity,lower_uy,0.18827567994594574 +karman_re50,target,20,8.0,velocity,upper_ux,1.0893604755401611 +karman_re50,target,20,8.0,velocity,upper_uy,0.2563757300376892 +karman_re50,target,20,8.0,velocity,center_ux,1.0347108840942383 +karman_re50,target,20,8.0,velocity,center_uy,0.31116983294487 +karman_re50,target,20,8.0,velocity,lower_ux,0.987260639667511 +karman_re50,target,20,8.0,velocity,lower_uy,0.22379052639007568 +karman_re50,target,21,8.4,velocity,upper_ux,1.060178279876709 +karman_re50,target,21,8.4,velocity,upper_uy,0.28232166171073914 +karman_re50,target,21,8.4,velocity,center_ux,1.039188265800476 +karman_re50,target,21,8.4,velocity,center_uy,0.33816295862197876 +karman_re50,target,21,8.4,velocity,lower_ux,1.0233412981033325 +karman_re50,target,21,8.4,velocity,lower_uy,0.25362879037857056 +karman_re50,target,22,8.8,velocity,upper_ux,1.0314701795578003 +karman_re50,target,22,8.8,velocity,upper_uy,0.301550954580307 +karman_re50,target,22,8.8,velocity,center_ux,1.0425441265106201 +karman_re50,target,22,8.8,velocity,center_uy,0.368370920419693 +karman_re50,target,22,8.8,velocity,lower_ux,1.0611547231674194 +karman_re50,target,22,8.8,velocity,lower_uy,0.28833600878715515 +karman_re50,target,23,9.2,velocity,upper_ux,0.9993841052055359 +karman_re50,target,23,9.2,velocity,upper_uy,0.31184643507003784 +karman_re50,target,23,9.2,velocity,center_ux,1.0413984060287476 +karman_re50,target,23,9.2,velocity,center_uy,0.3976716101169586 +karman_re50,target,23,9.2,velocity,lower_ux,1.1003283262252808 +karman_re50,target,23,9.2,velocity,lower_uy,0.3249409794807434 +karman_re50,target,24,9.6,velocity,upper_ux,0.9638025760650635 +karman_re50,target,24,9.6,velocity,upper_uy,0.30327704548835754 +karman_re50,target,24,9.6,velocity,center_ux,1.0348204374313354 +karman_re50,target,24,9.6,velocity,center_uy,0.4044625461101532 +karman_re50,target,24,9.6,velocity,lower_ux,1.1395442485809326 +karman_re50,target,24,9.6,velocity,lower_uy,0.3476041853427887 +karman_re50,target,25,10.0,velocity,upper_ux,0.9285237789154053 +karman_re50,target,25,10.0,velocity,upper_uy,0.2640073299407959 +karman_re50,target,25,10.0,velocity,center_ux,1.0248610973358154 +karman_re50,target,25,10.0,velocity,center_uy,0.3593921959400177 +karman_re50,target,25,10.0,velocity,lower_ux,1.1719257831573486 +karman_re50,target,25,10.0,velocity,lower_uy,0.3269805908203125 +karman_re50,target,26,10.4,velocity,upper_ux,0.9012553691864014 +karman_re50,target,26,10.4,velocity,upper_uy,0.1894393116235733 +karman_re50,target,26,10.4,velocity,center_ux,1.0171961784362793 +karman_re50,target,26,10.4,velocity,center_uy,0.2512984871864319 +karman_re50,target,26,10.4,velocity,lower_ux,1.1898168325424194 +karman_re50,target,26,10.4,velocity,lower_uy,0.2436230480670929 +karman_re50,target,27,10.8,velocity,upper_ux,0.8889168500900269 +karman_re50,target,27,10.8,velocity,upper_uy,0.0882202610373497 +karman_re50,target,27,10.8,velocity,center_ux,1.0155017375946045 +karman_re50,target,27,10.8,velocity,center_uy,0.10143450647592545 +karman_re50,target,27,10.8,velocity,lower_ux,1.191236138343811 +karman_re50,target,27,10.8,velocity,lower_uy,0.11618269234895706 +karman_re50,target,28,11.2,velocity,upper_ux,0.8938252329826355 +karman_re50,target,28,11.2,velocity,upper_uy,-0.02033458650112152 +karman_re50,target,28,11.2,velocity,center_ux,1.018898844718933 +karman_re50,target,28,11.2,velocity,center_uy,-0.05262472480535507 +karman_re50,target,28,11.2,velocity,lower_ux,1.1785542964935303 +karman_re50,target,28,11.2,velocity,lower_uy,-0.016406692564487457 +karman_re50,target,29,11.6,velocity,upper_ux,0.914091944694519 +karman_re50,target,29,11.6,velocity,upper_uy,-0.11411905288696289 +karman_re50,target,29,11.6,velocity,center_ux,1.0247907638549805 +karman_re50,target,29,11.6,velocity,center_uy,-0.17807656526565552 +karman_re50,target,29,11.6,velocity,lower_ux,1.1555812358856201 +karman_re50,target,29,11.6,velocity,lower_uy,-0.12535345554351807 +karman_re50,target,30,12.0,velocity,upper_ux,0.9449324607849121 +karman_re50,target,30,12.0,velocity,upper_uy,-0.1787344515323639 +karman_re50,target,30,12.0,velocity,center_ux,1.0309253931045532 +karman_re50,target,30,12.0,velocity,center_uy,-0.2594573497772217 +karman_re50,target,30,12.0,velocity,lower_ux,1.1270185708999634 +karman_re50,target,30,12.0,velocity,lower_uy,-0.20023185014724731 +karman_re50,target,31,12.4,velocity,upper_ux,0.9808159470558167 +karman_re50,target,31,12.4,velocity,upper_uy,-0.21752430498600006 +karman_re50,target,31,12.4,velocity,center_ux,1.0366859436035156 +karman_re50,target,31,12.4,velocity,center_uy,-0.3035808503627777 +karman_re50,target,31,12.4,velocity,lower_ux,1.097407341003418 +karman_re50,target,31,12.4,velocity,lower_uy,-0.24609722197055817 +karman_re50,target,32,12.8,velocity,upper_ux,1.0182090997695923 +karman_re50,target,32,12.8,velocity,upper_uy,-0.24735954403877258 +karman_re50,target,32,12.8,velocity,center_ux,1.0421764850616455 +karman_re50,target,32,12.8,velocity,center_uy,-0.33201849460601807 +karman_re50,target,32,12.8,velocity,lower_ux,1.0689315795898438 +karman_re50,target,32,12.8,velocity,lower_uy,-0.2752079367637634 +karman_re50,target,33,13.2,velocity,upper_ux,1.0560741424560547 +karman_re50,target,33,13.2,velocity,upper_uy,-0.2806274890899658 +karman_re50,target,33,13.2,velocity,center_ux,1.0458661317825317 +karman_re50,target,33,13.2,velocity,center_uy,-0.3617214262485504 +karman_re50,target,33,13.2,velocity,lower_ux,1.0400677919387817 +karman_re50,target,33,13.2,velocity,lower_uy,-0.29647165536880493 +karman_re50,target,34,13.6,velocity,upper_ux,1.0952383279800415 +karman_re50,target,34,13.6,velocity,upper_uy,-0.3172092139720917 +karman_re50,target,34,13.6,velocity,center_ux,1.0456302165985107 +karman_re50,target,34,13.6,velocity,center_uy,-0.39268553256988525 +karman_re50,target,34,13.6,velocity,lower_ux,1.0082051753997803 +karman_re50,target,34,13.6,velocity,lower_uy,-0.3097909688949585 +karman_re50,target,35,14.0,velocity,upper_ux,1.1351851224899292 +karman_re50,target,35,14.0,velocity,upper_uy,-0.344072163105011 +karman_re50,target,35,14.0,velocity,center_ux,1.0401959419250488 +karman_re50,target,35,14.0,velocity,center_uy,-0.40624740719795227 +karman_re50,target,35,14.0,velocity,lower_ux,0.972635805606842 +karman_re50,target,35,14.0,velocity,lower_uy,-0.30637669563293457 +karman_re50,target,36,14.4,velocity,upper_ux,1.1714152097702026 +karman_re50,target,36,14.4,velocity,upper_uy,-0.3339965045452118 +karman_re50,target,36,14.4,velocity,center_ux,1.0321406126022339 +karman_re50,target,36,14.4,velocity,center_uy,-0.3730076253414154 +karman_re50,target,36,14.4,velocity,lower_ux,0.9375696778297424 +karman_re50,target,36,14.4,velocity,lower_uy,-0.27429360151290894 +karman_re50,target,37,14.8,velocity,upper_ux,1.191221833229065 +karman_re50,target,37,14.8,velocity,upper_uy,-0.26173868775367737 +karman_re50,target,37,14.8,velocity,center_ux,1.022792935371399 +karman_re50,target,37,14.8,velocity,center_uy,-0.2750328779220581 +karman_re50,target,37,14.8,velocity,lower_ux,0.906806230545044 +karman_re50,target,37,14.8,velocity,lower_uy,-0.20578452944755554 +karman_re50,target,38,15.2,velocity,upper_ux,1.1956652402877808 +karman_re50,target,38,15.2,velocity,upper_uy,-0.140220046043396 +karman_re50,target,38,15.2,velocity,center_ux,1.020254373550415 +karman_re50,target,38,15.2,velocity,center_uy,-0.12984192371368408 +karman_re50,target,38,15.2,velocity,lower_ux,0.8913743495941162 +karman_re50,target,38,15.2,velocity,lower_uy,-0.10804779082536697 +karman_re50,target,39,15.6,velocity,upper_ux,1.1851998567581177 +karman_re50,target,39,15.6,velocity,upper_uy,-0.007142216432839632 +karman_re50,target,39,15.6,velocity,center_ux,1.0228785276412964 +karman_re50,target,39,15.6,velocity,center_uy,0.02608337439596653 +karman_re50,target,39,15.6,velocity,lower_ux,0.8933064341545105 +karman_re50,target,39,15.6,velocity,lower_uy,0.0009969607926905155 +karman_re50,target,40,16.0,velocity,upper_ux,1.1635135412216187 +karman_re50,target,40,16.0,velocity,upper_uy,0.10636044293642044 +karman_re50,target,40,16.0,velocity,center_ux,1.0281955003738403 +karman_re50,target,40,16.0,velocity,center_uy,0.1581934243440628 +karman_re50,target,40,16.0,velocity,lower_ux,0.9112529158592224 +karman_re50,target,40,16.0,velocity,lower_uy,0.09912622720003128 +karman_re50,target,41,16.4,velocity,upper_ux,1.1367148160934448 +karman_re50,target,41,16.4,velocity,upper_uy,0.18710236251354218 +karman_re50,target,41,16.4,velocity,center_ux,1.0351935625076294 +karman_re50,target,41,16.4,velocity,center_uy,0.24774420261383057 +karman_re50,target,41,16.4,velocity,lower_ux,0.9418942928314209 +karman_re50,target,41,16.4,velocity,lower_uy,0.1698002815246582 +karman_re50,target,42,16.8,velocity,upper_ux,1.1066583395004272 +karman_re50,target,42,16.8,velocity,upper_uy,0.2375148981809616 +karman_re50,target,42,16.8,velocity,center_ux,1.0405068397521973 +karman_re50,target,42,16.8,velocity,center_uy,0.2972911596298218 +karman_re50,target,42,16.8,velocity,lower_ux,0.977349042892456 +karman_re50,target,42,16.8,velocity,lower_uy,0.21237657964229584 +karman_re50,target,43,17.2,velocity,upper_ux,1.0762686729431152 +karman_re50,target,43,17.2,velocity,upper_uy,0.26891857385635376 +karman_re50,target,43,17.2,velocity,center_ux,1.044399380683899 +karman_re50,target,43,17.2,velocity,center_uy,0.32676783204078674 +karman_re50,target,43,17.2,velocity,lower_ux,1.013490080833435 +karman_re50,target,43,17.2,velocity,lower_uy,0.2422141432762146 +karman_re50,target,44,17.6,velocity,upper_ux,1.0472686290740967 +karman_re50,target,44,17.6,velocity,upper_uy,0.29184961318969727 +karman_re50,target,44,17.6,velocity,center_ux,1.0482839345932007 +karman_re50,target,44,17.6,velocity,center_uy,0.355979323387146 +karman_re50,target,44,17.6,velocity,lower_ux,1.0513609647750854 +karman_re50,target,44,17.6,velocity,lower_uy,0.2742753326892853 +karman_re50,target,45,18.0,velocity,upper_ux,1.0156413316726685 +karman_re50,target,45,18.0,velocity,upper_uy,0.3074697256088257 +karman_re50,target,45,18.0,velocity,center_ux,1.0487473011016846 +karman_re50,target,45,18.0,velocity,center_uy,0.38779106736183167 +karman_re50,target,45,18.0,velocity,lower_ux,1.0904340744018555 +karman_re50,target,45,18.0,velocity,lower_uy,0.3105018734931946 +karman_re50,target,46,18.4,velocity,upper_ux,0.9802128076553345 +karman_re50,target,46,18.4,velocity,upper_uy,0.3081558346748352 +karman_re50,target,46,18.4,velocity,center_ux,1.0442700386047363 +karman_re50,target,46,18.4,velocity,center_uy,0.4064066410064697 +karman_re50,target,46,18.4,velocity,lower_ux,1.1307679414749146 +karman_re50,target,46,18.4,velocity,lower_uy,0.3402513861656189 +karman_re50,target,47,18.8,velocity,upper_ux,0.9433308243751526 +karman_re50,target,47,18.8,velocity,upper_uy,0.2815181612968445 +karman_re50,target,47,18.8,velocity,center_ux,1.0355175733566284 +karman_re50,target,47,18.8,velocity,center_uy,0.3822541832923889 +karman_re50,target,47,18.8,velocity,lower_ux,1.1673216819763184 +karman_re50,target,47,18.8,velocity,lower_uy,0.3378625214099884 +karman_re50,target,48,19.2,velocity,upper_ux,0.9119047522544861 +karman_re50,target,48,19.2,velocity,upper_uy,0.2192472517490387 +karman_re50,target,48,19.2,velocity,center_ux,1.0271868705749512 +karman_re50,target,48,19.2,velocity,center_uy,0.2946729362010956 +karman_re50,target,48,19.2,velocity,lower_ux,1.191462755203247 +karman_re50,target,48,19.2,velocity,lower_uy,0.2764136791229248 +karman_re50,target,49,19.6,velocity,upper_ux,0.8937856554985046 +karman_re50,target,49,19.6,velocity,upper_uy,0.12525542080402374 +karman_re50,target,49,19.6,velocity,center_ux,1.0238934755325317 +karman_re50,target,49,19.6,velocity,center_uy,0.15479475259780884 +karman_re50,target,49,19.6,velocity,lower_ux,1.1986750364303589 +karman_re50,target,49,19.6,velocity,lower_uy,0.16113173961639404 +karman_re50,target,50,20.0,velocity,upper_ux,0.892983078956604 +karman_re50,target,50,20.0,velocity,upper_uy,0.016374148428440094 +karman_re50,target,50,20.0,velocity,center_ux,1.0258327722549438 +karman_re50,target,50,20.0,velocity,center_uy,-0.001996970036998391 +karman_re50,target,50,20.0,velocity,lower_ux,1.1903109550476074 +karman_re50,target,50,20.0,velocity,lower_uy,0.02817978896200657 +karman_re50,target,51,20.4,velocity,upper_ux,0.9090068340301514 +karman_re50,target,51,20.4,velocity,upper_uy,-0.08626902848482132 +karman_re50,target,51,20.4,velocity,center_ux,1.0307422876358032 +karman_re50,target,51,20.4,velocity,center_uy,-0.14112325012683868 +karman_re50,target,51,20.4,velocity,lower_ux,1.1696349382400513 +karman_re50,target,51,20.4,velocity,lower_uy,-0.09044397622346878 +karman_re50,target,52,20.8,velocity,upper_ux,0.9368330240249634 +karman_re50,target,52,20.8,velocity,upper_uy,-0.16066408157348633 +karman_re50,target,52,20.8,velocity,center_ux,1.036059856414795 +karman_re50,target,52,20.8,velocity,center_uy,-0.23583896458148956 +karman_re50,target,52,20.8,velocity,lower_ux,1.1422001123428345 +karman_re50,target,52,20.8,velocity,lower_uy,-0.17462946474552155 +karman_re50,target,53,21.2,velocity,upper_ux,0.9729005694389343 +karman_re50,target,53,21.2,velocity,upper_uy,-0.2071990966796875 +karman_re50,target,53,21.2,velocity,center_ux,1.042338490486145 +karman_re50,target,53,21.2,velocity,center_uy,-0.290899395942688 +karman_re50,target,53,21.2,velocity,lower_ux,1.1133732795715332 +karman_re50,target,53,21.2,velocity,lower_uy,-0.22939151525497437 +karman_re50,target,54,21.6,velocity,upper_ux,1.0089665651321411 +karman_re50,target,54,21.6,velocity,upper_uy,-0.23775573074817657 +karman_re50,target,54,21.6,velocity,center_ux,1.0459660291671753 +karman_re50,target,54,21.6,velocity,center_uy,-0.32210543751716614 +karman_re50,target,54,21.6,velocity,lower_ux,1.0825412273406982 +karman_re50,target,54,21.6,velocity,lower_uy,-0.26326000690460205 +karman_re50,target,55,22.0,velocity,upper_ux,1.0468122959136963 +karman_re50,target,55,22.0,velocity,upper_uy,-0.268839955329895 +karman_re50,target,55,22.0,velocity,center_ux,1.049967646598816 +karman_re50,target,55,22.0,velocity,center_uy,-0.35090628266334534 +karman_re50,target,55,22.0,velocity,lower_ux,1.0534310340881348 +karman_re50,target,55,22.0,velocity,lower_uy,-0.2876231372356415 +karman_re50,target,56,22.4,velocity,upper_ux,1.085774540901184 +karman_re50,target,56,22.4,velocity,upper_uy,-0.3045651912689209 +karman_re50,target,56,22.4,velocity,center_ux,1.050988793373108 +karman_re50,target,56,22.4,velocity,center_uy,-0.3830755352973938 +karman_re50,target,56,22.4,velocity,lower_ux,1.0220310688018799 +karman_re50,target,56,22.4,velocity,lower_uy,-0.3050633370876312 +karman_re50,target,57,22.8,velocity,upper_ux,1.1262469291687012 +karman_re50,target,57,22.8,velocity,upper_uy,-0.33633100986480713 +karman_re50,target,57,22.8,velocity,center_ux,1.0473381280899048 +karman_re50,target,57,22.8,velocity,center_uy,-0.4055234491825104 +karman_re50,target,57,22.8,velocity,lower_ux,0.9868588447570801 +karman_re50,target,57,22.8,velocity,lower_uy,-0.30909937620162964 +karman_re50,target,58,23.2,velocity,upper_ux,1.1641225814819336 +karman_re50,target,58,23.2,velocity,upper_uy,-0.34063807129859924 +karman_re50,target,58,23.2,velocity,center_ux,1.0391770601272583 +karman_re50,target,58,23.2,velocity,center_uy,-0.38965529203414917 +karman_re50,target,58,23.2,velocity,lower_ux,0.9496231079101562 +karman_re50,target,58,23.2,velocity,lower_uy,-0.28754228353500366 +karman_re50,target,59,23.6,velocity,upper_ux,1.1907721757888794 +karman_re50,target,59,23.6,velocity,upper_uy,-0.2886927127838135 +karman_re50,target,59,23.6,velocity,center_ux,1.0306414365768433 +karman_re50,target,59,23.6,velocity,center_uy,-0.3114507794380188 +karman_re50,target,59,23.6,velocity,lower_ux,0.91668701171875 +karman_re50,target,59,23.6,velocity,lower_uy,-0.2307434231042862 +karman_re50,target,60,24.0,velocity,upper_ux,1.2005728483200073 +karman_re50,target,60,24.0,velocity,upper_uy,-0.17982015013694763 +karman_re50,target,60,24.0,velocity,center_ux,1.0266547203063965 +karman_re50,target,60,24.0,velocity,center_uy,-0.17727769911289215 +karman_re50,target,60,24.0,velocity,lower_ux,0.8961740732192993 +karman_re50,target,60,24.0,velocity,lower_uy,-0.1406124085187912 +karman_re50,target,61,24.4,velocity,upper_ux,1.1957528591156006 +karman_re50,target,61,24.4,velocity,upper_uy,-0.04762698709964752 +karman_re50,target,61,24.4,velocity,center_ux,1.0292420387268066 +karman_re50,target,61,24.4,velocity,center_uy,-0.020510710775852203 +karman_re50,target,61,24.4,velocity,lower_ux,0.8939207196235657 +karman_re50,target,61,24.4,velocity,lower_uy,-0.03247760608792305 +karman_re50,target,62,24.8,velocity,upper_ux,1.1752729415893555 +karman_re50,target,62,24.8,velocity,upper_uy,0.07281430065631866 +karman_re50,target,62,24.8,velocity,center_ux,1.0323727130889893 +karman_re50,target,62,24.8,velocity,center_uy,0.12150230258703232 +karman_re50,target,62,24.8,velocity,lower_ux,0.9063898324966431 +karman_re50,target,62,24.8,velocity,lower_uy,0.07150217890739441 +karman_re50,target,63,25.2,velocity,upper_ux,1.1481338739395142 +karman_re50,target,63,25.2,velocity,upper_uy,0.16299621760845184 +karman_re50,target,63,25.2,velocity,center_ux,1.037530779838562 +karman_re50,target,63,25.2,velocity,center_uy,0.22428344190120697 +karman_re50,target,63,25.2,velocity,lower_ux,0.9331002831459045 +karman_re50,target,63,25.2,velocity,lower_uy,0.15168219804763794 +karman_re50,target,64,25.6,velocity,upper_ux,1.117828130722046 +karman_re50,target,64,25.6,velocity,upper_uy,0.2214830070734024 +karman_re50,target,64,25.6,velocity,center_ux,1.04227876663208 +karman_re50,target,64,25.6,velocity,center_uy,0.28422364592552185 +karman_re50,target,64,25.6,velocity,lower_ux,0.9673502445220947 +karman_re50,target,64,25.6,velocity,lower_uy,0.20179644227027893 +karman_re50,target,65,26.0,velocity,upper_ux,1.0880255699157715 +karman_re50,target,65,26.0,velocity,upper_uy,0.2580534815788269 +karman_re50,target,65,26.0,velocity,center_ux,1.046993613243103 +karman_re50,target,65,26.0,velocity,center_uy,0.3178173899650574 +karman_re50,target,65,26.0,velocity,lower_ux,1.0045255422592163 +karman_re50,target,65,26.0,velocity,lower_uy,0.23370401561260223 +karman_re50,target,66,26.4,velocity,upper_ux,1.0588243007659912 +karman_re50,target,66,26.4,velocity,upper_uy,0.2837057113647461 +karman_re50,target,66,26.4,velocity,center_ux,1.051069736480713 +karman_re50,target,66,26.4,velocity,center_uy,0.3463238775730133 +karman_re50,target,66,26.4,velocity,lower_ux,1.0423228740692139 +karman_re50,target,66,26.4,velocity,lower_uy,0.26402273774147034 +karman_re50,target,67,26.8,velocity,upper_ux,1.0276880264282227 +karman_re50,target,67,26.8,velocity,upper_uy,0.30261409282684326 +karman_re50,target,67,26.8,velocity,center_ux,1.0525598526000977 +karman_re50,target,67,26.8,velocity,center_uy,0.37848761677742004 +karman_re50,target,67,26.8,velocity,lower_ux,1.0811209678649902 +karman_re50,target,67,26.8,velocity,lower_uy,0.29912716150283813 +karman_re50,target,68,27.2,velocity,upper_ux,0.9928274750709534 +karman_re50,target,68,27.2,velocity,upper_uy,0.30946916341781616 +karman_re50,target,68,27.2,velocity,center_ux,1.049638032913208 +karman_re50,target,68,27.2,velocity,center_uy,0.4039071202278137 +karman_re50,target,68,27.2,velocity,lower_ux,1.12160325050354 +karman_re50,target,68,27.2,velocity,lower_uy,0.33234703540802 +karman_re50,target,69,27.6,velocity,upper_ux,0.955420732498169 +karman_re50,target,69,27.6,velocity,upper_uy,0.2924269735813141 +karman_re50,target,69,27.6,velocity,center_ux,1.0420582294464111 +karman_re50,target,69,27.6,velocity,center_uy,0.3952958583831787 +karman_re50,target,69,27.6,velocity,lower_ux,1.160478949546814 +karman_re50,target,69,27.6,velocity,lower_uy,0.3422817885875702 +karman_re50,target,70,28.0,velocity,upper_ux,0.9212458729743958 +karman_re50,target,70,28.0,velocity,upper_uy,0.24078600108623505 +karman_re50,target,70,28.0,velocity,center_ux,1.03338623046875 +karman_re50,target,70,28.0,velocity,center_uy,0.3260457515716553 +karman_re50,target,70,28.0,velocity,lower_ux,1.1893450021743774 +karman_re50,target,70,28.0,velocity,lower_uy,0.2991337478160858 +karman_re50,target,71,28.4,velocity,upper_ux,0.8985814452171326 +karman_re50,target,71,28.4,velocity,upper_uy,0.1546410322189331 +karman_re50,target,71,28.4,velocity,center_ux,1.0287501811981201 +karman_re50,target,71,28.4,velocity,center_uy,0.19796346127986908 +karman_re50,target,71,28.4,velocity,lower_ux,1.201606035232544 +karman_re50,target,71,28.4,velocity,lower_uy,0.19688482582569122 +karman_re50,target,72,28.8,velocity,upper_ux,0.8927551507949829 +karman_re50,target,72,28.8,velocity,upper_uy,0.047618065029382706 +karman_re50,target,72,28.8,velocity,center_ux,1.0294272899627686 +karman_re50,target,72,28.8,velocity,center_uy,0.041913241147994995 +karman_re50,target,72,28.8,velocity,lower_ux,1.1972994804382324 +karman_re50,target,72,28.8,velocity,lower_uy,0.06586337089538574 +karman_re50,target,73,29.2,velocity,upper_ux,0.905358076095581 +karman_re50,target,73,29.2,velocity,upper_uy,-0.058344487100839615 +karman_re50,target,73,29.2,velocity,center_ux,1.0347648859024048 +karman_re50,target,73,29.2,velocity,center_uy,-0.10397431254386902 +karman_re50,target,73,29.2,velocity,lower_ux,1.1812171936035156 +karman_re50,target,73,29.2,velocity,lower_uy,-0.05729410797357559 +karman_re50,target,74,29.6,velocity,upper_ux,0.9294992089271545 +karman_re50,target,74,29.6,velocity,upper_uy,-0.14258524775505066 +karman_re50,target,74,29.6,velocity,center_ux,1.0384544134140015 +karman_re50,target,74,29.6,velocity,center_uy,-0.21265248954296112 +karman_re50,target,74,29.6,velocity,lower_ux,1.1533095836639404 +karman_re50,target,74,29.6,velocity,lower_uy,-0.15174376964569092 +karman_re50,target,75,30.0,velocity,upper_ux,0.963073194026947 +karman_re50,target,75,30.0,velocity,upper_uy,-0.19654136896133423 +karman_re50,target,75,30.0,velocity,center_ux,1.0430582761764526 +karman_re50,target,75,30.0,velocity,center_uy,-0.27782389521598816 +karman_re50,target,75,30.0,velocity,lower_ux,1.1230535507202148 +karman_re50,target,75,30.0,velocity,lower_uy,-0.21412993967533112 +karman_re50,target,76,30.4,velocity,upper_ux,1.0000640153884888 +karman_re50,target,76,30.4,velocity,upper_uy,-0.22984129190444946 +karman_re50,target,76,30.4,velocity,center_ux,1.0475963354110718 +karman_re50,target,76,30.4,velocity,center_uy,-0.3137083649635315 +karman_re50,target,76,30.4,velocity,lower_ux,1.092976689338684 +karman_re50,target,76,30.4,velocity,lower_uy,-0.2531023919582367 +karman_re50,target,77,30.8,velocity,upper_ux,1.0391368865966797 +karman_re50,target,77,30.8,velocity,upper_uy,-0.25994789600372314 +karman_re50,target,77,30.8,velocity,center_ux,1.0530455112457275 +karman_re50,target,77,30.8,velocity,center_uy,-0.34252461791038513 +karman_re50,target,77,30.8,velocity,lower_ux,1.0650025606155396 +karman_re50,target,77,30.8,velocity,lower_uy,-0.2803567051887512 +karman_re50,target,78,31.2,velocity,upper_ux,1.0764597654342651 +karman_re50,target,78,31.2,velocity,upper_uy,-0.2940531075000763 +karman_re50,target,78,31.2,velocity,center_ux,1.053614616394043 +karman_re50,target,78,31.2,velocity,center_uy,-0.3740232586860657 +karman_re50,target,78,31.2,velocity,lower_ux,1.03279709815979 +karman_re50,target,78,31.2,velocity,lower_uy,-0.30014246702194214 +karman_re50,target,79,31.6,velocity,upper_ux,1.1168687343597412 +karman_re50,target,79,31.6,velocity,upper_uy,-0.3283084034919739 +karman_re50,target,79,31.6,velocity,center_ux,1.0513570308685303 +karman_re50,target,79,31.6,velocity,center_uy,-0.4017423689365387 +karman_re50,target,79,31.6,velocity,lower_ux,0.9982854723930359 +karman_re50,target,79,31.6,velocity,lower_uy,-0.3094078600406647 +karman_re50,target,80,32.0,velocity,upper_ux,1.1564772129058838 +karman_re50,target,80,32.0,velocity,upper_uy,-0.34302347898483276 +karman_re50,target,80,32.0,velocity,center_ux,1.0443576574325562 +karman_re50,target,80,32.0,velocity,center_uy,-0.39954912662506104 +karman_re50,target,80,32.0,velocity,lower_ux,0.960866391658783 +karman_re50,target,80,32.0,velocity,lower_uy,-0.2964411973953247 +karman_re50,target,81,32.4,velocity,upper_ux,1.1872917413711548 +karman_re50,target,81,32.4,velocity,upper_uy,-0.3081832528114319 +karman_re50,target,81,32.4,velocity,center_ux,1.0356242656707764 +karman_re50,target,81,32.4,velocity,center_uy,-0.3390337824821472 +karman_re50,target,81,32.4,velocity,lower_ux,0.9257128238677979 +karman_re50,target,81,32.4,velocity,lower_uy,-0.24980050325393677 +karman_re50,target,82,32.8,velocity,upper_ux,1.2019351720809937 +karman_re50,target,82,32.8,velocity,upper_uy,-0.21272405982017517 +karman_re50,target,82,32.8,velocity,center_ux,1.0303672552108765 +karman_re50,target,82,32.8,velocity,center_uy,-0.21731042861938477 +karman_re50,target,82,32.8,velocity,lower_ux,0.9010581970214844 +karman_re50,target,82,32.8,velocity,lower_uy,-0.16769205033779144 +karman_re50,target,83,33.2,velocity,upper_ux,1.1996499300003052 +karman_re50,target,83,33.2,velocity,upper_uy,-0.08351527899503708 +karman_re50,target,83,33.2,velocity,center_ux,1.030428409576416 +karman_re50,target,83,33.2,velocity,center_uy,-0.06274111568927765 +karman_re50,target,83,33.2,velocity,lower_ux,0.8928700089454651 +karman_re50,target,83,33.2,velocity,lower_uy,-0.06225714832544327 +karman_re50,target,84,33.6,velocity,upper_ux,1.183549165725708 +karman_re50,target,84,33.6,velocity,upper_uy,0.0419522225856781 +karman_re50,target,84,33.6,velocity,center_ux,1.0341061353683472 +karman_re50,target,84,33.6,velocity,center_uy,0.08626106381416321 +karman_re50,target,84,33.6,velocity,lower_ux,0.9022186398506165 +karman_re50,target,84,33.6,velocity,lower_uy,0.04516284540295601 +karman_re50,target,85,34.0,velocity,upper_ux,1.1579211950302124 +karman_re50,target,85,34.0,velocity,upper_uy,0.1406230628490448 +karman_re50,target,85,34.0,velocity,center_ux,1.0389565229415894 +karman_re50,target,85,34.0,velocity,center_uy,0.200774148106575 +karman_re50,target,85,34.0,velocity,lower_ux,0.9260104298591614 +karman_re50,target,85,34.0,velocity,lower_uy,0.13326998054981232 +karman_re50,target,86,34.4,velocity,upper_ux,1.1292413473129272 +karman_re50,target,86,34.4,velocity,upper_uy,0.20712588727474213 +karman_re50,target,86,34.4,velocity,center_ux,1.0447874069213867 +karman_re50,target,86,34.4,velocity,center_uy,0.27154770493507385 +karman_re50,target,86,34.4,velocity,lower_ux,0.9600358009338379 +karman_re50,target,86,34.4,velocity,lower_uy,0.19131851196289062 +karman_re50,target,87,34.8,velocity,upper_ux,1.0975310802459717 +karman_re50,target,87,34.8,velocity,upper_uy,0.2483038455247879 +karman_re50,target,87,34.8,velocity,center_ux,1.0478811264038086 +karman_re50,target,87,34.8,velocity,center_uy,0.3096844553947449 +karman_re50,target,87,34.8,velocity,lower_ux,0.9955992102622986 +karman_re50,target,87,34.8,velocity,lower_uy,0.22607290744781494 +karman_re50,target,88,35.2,velocity,upper_ux,1.0680946111679077 +karman_re50,target,88,35.2,velocity,upper_uy,0.2764659821987152 +karman_re50,target,88,35.2,velocity,center_ux,1.0520501136779785 +karman_re50,target,88,35.2,velocity,center_uy,0.33815228939056396 +karman_re50,target,88,35.2,velocity,lower_ux,1.0333619117736816 +karman_re50,target,88,35.2,velocity,lower_uy,0.2555353045463562 +karman_re50,target,89,35.6,velocity,upper_ux,1.037482738494873 +karman_re50,target,89,35.6,velocity,upper_uy,0.29765570163726807 +karman_re50,target,89,35.6,velocity,center_ux,1.0542904138565063 +karman_re50,target,89,35.6,velocity,center_uy,0.3696883022785187 +karman_re50,target,89,35.6,velocity,lower_ux,1.071812629699707 +karman_re50,target,89,35.6,velocity,lower_uy,0.2892625033855438 +karman_re50,target,90,36.0,velocity,upper_ux,1.0046550035476685 +karman_re50,target,90,36.0,velocity,upper_uy,0.3093867599964142 +karman_re50,target,90,36.0,velocity,center_ux,1.0539649724960327 +karman_re50,target,90,36.0,velocity,center_uy,0.3996296226978302 +karman_re50,target,90,36.0,velocity,lower_ux,1.1134326457977295 +karman_re50,target,90,36.0,velocity,lower_uy,0.3245891332626343 +karman_re50,target,91,36.4,velocity,upper_ux,0.966067373752594 +karman_re50,target,91,36.4,velocity,upper_uy,0.29975470900535583 +karman_re50,target,91,36.4,velocity,center_ux,1.0462273359298706 +karman_re50,target,91,36.4,velocity,center_uy,0.4026532471179962 +karman_re50,target,91,36.4,velocity,lower_ux,1.152191162109375 +karman_re50,target,91,36.4,velocity,lower_uy,0.34300222992897034 +karman_re50,target,92,36.8,velocity,upper_ux,0.9301112294197083 +karman_re50,target,92,36.8,velocity,upper_uy,0.2578960359096527 +karman_re50,target,92,36.8,velocity,center_ux,1.037498116493225 +karman_re50,target,92,36.8,velocity,center_uy,0.3505437970161438 +karman_re50,target,92,36.8,velocity,lower_ux,1.1847506761550903 +karman_re50,target,92,36.8,velocity,lower_uy,0.31594565510749817 +karman_re50,target,93,37.2,velocity,upper_ux,0.9036421775817871 +karman_re50,target,93,37.2,velocity,upper_uy,0.17994506657123566 +karman_re50,target,93,37.2,velocity,center_ux,1.0316575765609741 +karman_re50,target,93,37.2,velocity,center_uy,0.23553819954395294 +karman_re50,target,93,37.2,velocity,lower_ux,1.2017030715942383 +karman_re50,target,93,37.2,velocity,lower_uy,0.22752320766448975 +karman_re50,target,94,37.6,velocity,upper_ux,0.8931617736816406 +karman_re50,target,94,37.6,velocity,upper_uy,0.07637195289134979 +karman_re50,target,94,37.6,velocity,center_ux,1.0311012268066406 +karman_re50,target,94,37.6,velocity,center_uy,0.08296997100114822 +karman_re50,target,94,37.6,velocity,lower_ux,1.2014387845993042 +karman_re50,target,94,37.6,velocity,lower_uy,0.10056771337985992 +karman_re50,target,95,38.0,velocity,upper_ux,0.900389552116394 +karman_re50,target,95,38.0,velocity,upper_uy,-0.03210722282528877 +karman_re50,target,95,38.0,velocity,center_ux,1.0344151258468628 +karman_re50,target,95,38.0,velocity,center_uy,-0.06864593178033829 +karman_re50,target,95,38.0,velocity,lower_ux,1.1868507862091064 +karman_re50,target,95,38.0,velocity,lower_uy,-0.02683928795158863 +karman_re50,target,96,38.4,velocity,upper_ux,0.9237774610519409 +karman_re50,target,96,38.4,velocity,upper_uy,-0.12377510219812393 +karman_re50,target,96,38.4,velocity,center_ux,1.0404468774795532 +karman_re50,target,96,38.4,velocity,center_uy,-0.18870402872562408 +karman_re50,target,96,38.4,velocity,lower_ux,1.1635851860046387 +karman_re50,target,96,38.4,velocity,lower_uy,-0.129564106464386 +karman_re50,target,97,38.8,velocity,upper_ux,0.9546407461166382 +karman_re50,target,97,38.8,velocity,upper_uy,-0.1853521168231964 +karman_re50,target,97,38.8,velocity,center_ux,1.0436320304870605 +karman_re50,target,97,38.8,velocity,center_uy,-0.26428914070129395 +karman_re50,target,97,38.8,velocity,lower_ux,1.1322641372680664 +karman_re50,target,97,38.8,velocity,lower_uy,-0.1995692104101181 +karman_re50,target,98,39.2,velocity,upper_ux,0.9911322593688965 +karman_re50,target,98,39.2,velocity,upper_uy,-0.22231553494930267 +karman_re50,target,98,39.2,velocity,center_ux,1.047936201095581 +karman_re50,target,98,39.2,velocity,center_uy,-0.3056510090827942 +karman_re50,target,98,39.2,velocity,lower_ux,1.1018091440200806 +karman_re50,target,98,39.2,velocity,lower_uy,-0.24355587363243103 +karman_re50,target,99,39.6,velocity,upper_ux,1.0288201570510864 +karman_re50,target,99,39.6,velocity,upper_uy,-0.2516142725944519 +karman_re50,target,99,39.6,velocity,center_ux,1.052126169204712 +karman_re50,target,99,39.6,velocity,center_uy,-0.33436232805252075 +karman_re50,target,99,39.6,velocity,lower_ux,1.0722846984863281 +karman_re50,target,99,39.6,velocity,lower_uy,-0.2729719579219818 +karman_re50,target,100,40.0,velocity,upper_ux,1.0671451091766357 +karman_re50,target,100,40.0,velocity,upper_uy,-0.2846563458442688 +karman_re50,target,100,40.0,velocity,center_ux,1.0546810626983643 +karman_re50,target,100,40.0,velocity,center_uy,-0.3654399514198303 +karman_re50,target,100,40.0,velocity,lower_ux,1.0418862104415894 +karman_re50,target,100,40.0,velocity,lower_uy,-0.29512640833854675 +karman_re50,target,101,40.4,velocity,upper_ux,1.107189655303955 +karman_re50,target,101,40.4,velocity,upper_uy,-0.32000625133514404 +karman_re50,target,101,40.4,velocity,center_ux,1.053602933883667 +karman_re50,target,101,40.4,velocity,center_uy,-0.3961751163005829 +karman_re50,target,101,40.4,velocity,lower_ux,1.0082036256790161 +karman_re50,target,101,40.4,velocity,lower_uy,-0.30829358100891113 +karman_re50,target,102,40.8,velocity,upper_ux,1.1477084159851074 +karman_re50,target,102,40.8,velocity,upper_uy,-0.3423168659210205 +karman_re50,target,102,40.8,velocity,center_ux,1.0477720499038696 +karman_re50,target,102,40.8,velocity,center_uy,-0.4047542214393616 +karman_re50,target,102,40.8,velocity,lower_ux,0.9710691571235657 +karman_re50,target,102,40.8,velocity,lower_uy,-0.30245381593704224 +karman_re50,target,103,41.2,velocity,upper_ux,1.1820108890533447 +karman_re50,target,103,41.2,velocity,upper_uy,-0.32222312688827515 +karman_re50,target,103,41.2,velocity,center_ux,1.0390583276748657 +karman_re50,target,103,41.2,velocity,center_uy,-0.36022594571113586 +karman_re50,target,103,41.2,velocity,lower_ux,0.9342452883720398 +karman_re50,target,103,41.2,velocity,lower_uy,-0.26482146978378296 +karman_re50,target,104,41.6,velocity,upper_ux,1.2009941339492798 +karman_re50,target,104,41.6,velocity,upper_uy,-0.24142321944236755 +karman_re50,target,104,41.6,velocity,center_ux,1.0327389240264893 +karman_re50,target,104,41.6,velocity,center_uy,-0.2528190612792969 +karman_re50,target,104,41.6,velocity,lower_ux,0.9063665866851807 +karman_re50,target,104,41.6,velocity,lower_uy,-0.19153839349746704 +karman_re50,target,105,42.0,velocity,upper_ux,1.2027766704559326 +karman_re50,target,105,42.0,velocity,upper_uy,-0.11730198562145233 +karman_re50,target,105,42.0,velocity,center_ux,1.0315561294555664 +karman_re50,target,105,42.0,velocity,center_uy,-0.10289917141199112 +karman_re50,target,105,42.0,velocity,lower_ux,0.8936620950698853 +karman_re50,target,105,42.0,velocity,lower_uy,-0.09017970412969589 +karman_re50,target,106,42.4,velocity,upper_ux,1.1897581815719604 +karman_re50,target,106,42.4,velocity,upper_uy,0.011660351417958736 +karman_re50,target,106,42.4,velocity,center_ux,1.0344913005828857 +karman_re50,target,106,42.4,velocity,center_uy,0.05079803988337517 +karman_re50,target,106,42.4,velocity,lower_ux,0.898743212223053 +karman_re50,target,106,42.4,velocity,lower_uy,0.01896943338215351 +karman_re50,target,107,42.8,velocity,upper_ux,1.1660023927688599 +karman_re50,target,107,42.8,velocity,upper_uy,0.11802452802658081 +karman_re50,target,107,42.8,velocity,center_ux,1.0391044616699219 +karman_re50,target,107,42.8,velocity,center_uy,0.17573177814483643 +karman_re50,target,107,42.8,velocity,lower_ux,0.9193622469902039 +karman_re50,target,107,42.8,velocity,lower_uy,0.11366153508424759 +karman_re50,target,108,43.2,velocity,upper_ux,1.1364717483520508 +karman_re50,target,108,43.2,velocity,upper_uy,0.1921054720878601 +karman_re50,target,108,43.2,velocity,center_ux,1.043588399887085 +karman_re50,target,108,43.2,velocity,center_uy,0.2569625675678253 +karman_re50,target,108,43.2,velocity,lower_ux,0.9504894018173218 +karman_re50,target,108,43.2,velocity,lower_uy,0.17929038405418396 +karman_re50,target,109,43.6,velocity,upper_ux,1.10588538646698 +karman_re50,target,109,43.6,velocity,upper_uy,0.23878984153270721 +karman_re50,target,109,43.6,velocity,center_ux,1.047827959060669 +karman_re50,target,109,43.6,velocity,center_uy,0.3015437424182892 +karman_re50,target,109,43.6,velocity,lower_ux,0.9866836667060852 +karman_re50,target,109,43.6,velocity,lower_uy,0.2185177356004715 +karman_re50,target,110,44.0,velocity,upper_ux,1.0762561559677124 +karman_re50,target,110,44.0,velocity,upper_uy,0.2695294916629791 +karman_re50,target,110,44.0,velocity,center_ux,1.0520304441452026 +karman_re50,target,110,44.0,velocity,center_uy,0.33073940873146057 +karman_re50,target,110,44.0,velocity,lower_ux,1.0243005752563477 +karman_re50,target,110,44.0,velocity,lower_uy,0.2478708028793335 +karman_re50,target,111,44.4,velocity,upper_ux,1.046048641204834 +karman_re50,target,111,44.4,velocity,upper_uy,0.2925684452056885 +karman_re50,target,111,44.4,velocity,center_ux,1.0548622608184814 +karman_re50,target,111,44.4,velocity,center_uy,0.36131009459495544 +karman_re50,target,111,44.4,velocity,lower_ux,1.0625085830688477 +karman_re50,target,111,44.4,velocity,lower_uy,0.2802332937717438 +karman_re50,target,112,44.8,velocity,upper_ux,1.0128190517425537 +karman_re50,target,112,44.8,velocity,upper_uy,0.3073291480541229 +karman_re50,target,112,44.8,velocity,center_ux,1.054319977760315 +karman_re50,target,112,44.8,velocity,center_uy,0.39292633533477783 +karman_re50,target,112,44.8,velocity,lower_ux,1.1023032665252686 +karman_re50,target,112,44.8,velocity,lower_uy,0.3157508969306946 +karman_re50,target,113,45.2,velocity,upper_ux,0.9759486317634583 +karman_re50,target,113,45.2,velocity,upper_uy,0.30462443828582764 +karman_re50,target,113,45.2,velocity,center_ux,1.0490795373916626 +karman_re50,target,113,45.2,velocity,center_uy,0.4059816598892212 +karman_re50,target,113,45.2,velocity,lower_ux,1.1430555582046509 +karman_re50,target,113,45.2,velocity,lower_uy,0.3410373032093048 +karman_re50,target,114,45.6,velocity,upper_ux,0.9388958215713501 +karman_re50,target,114,45.6,velocity,upper_uy,0.2718484103679657 +karman_re50,target,114,45.6,velocity,center_ux,1.0405726432800293 +karman_re50,target,114,45.6,velocity,center_uy,0.36981654167175293 +karman_re50,target,114,45.6,velocity,lower_ux,1.1785149574279785 +karman_re50,target,114,45.6,velocity,lower_uy,0.3281412124633789 +karman_re50,target,115,46.0,velocity,upper_ux,0.909229576587677 +karman_re50,target,115,46.0,velocity,upper_uy,0.20244641602039337 +karman_re50,target,115,46.0,velocity,center_ux,1.0336941480636597 +karman_re50,target,115,46.0,velocity,center_uy,0.26908424496650696 +karman_re50,target,115,46.0,velocity,lower_ux,1.1998896598815918 +karman_re50,target,115,46.0,velocity,lower_uy,0.254362553358078 +karman_re50,target,116,46.4,velocity,upper_ux,0.8943660855293274 +karman_re50,target,116,46.4,velocity,upper_uy,0.103407122194767 +karman_re50,target,116,46.4,velocity,center_ux,1.0318784713745117 +karman_re50,target,116,46.4,velocity,center_uy,0.12211356312036514 +karman_re50,target,116,46.4,velocity,lower_ux,1.2037246227264404 +karman_re50,target,116,46.4,velocity,lower_uy,0.13338778913021088 +karman_re50,target,117,46.8,velocity,upper_ux,0.897309422492981 +karman_re50,target,117,46.8,velocity,upper_uy,-0.00583877507597208 +karman_re50,target,117,46.8,velocity,center_ux,1.0344167947769165 +karman_re50,target,117,46.8,velocity,center_uy,-0.03282942622900009 +karman_re50,target,117,46.8,velocity,lower_ux,1.1923226118087769 +karman_re50,target,117,46.8,velocity,lower_uy,0.0035314944107085466 +karman_re50,target,118,47.2,velocity,upper_ux,0.9162498712539673 +karman_re50,target,118,47.2,velocity,upper_uy,-0.10336058586835861 +karman_re50,target,118,47.2,velocity,center_ux,1.0389043092727661 +karman_re50,target,118,47.2,velocity,center_uy,-0.16249819099903107 +karman_re50,target,118,47.2,velocity,lower_ux,1.1696194410324097 +karman_re50,target,118,47.2,velocity,lower_uy,-0.10638866573572159 +karman_re50,target,119,47.6,velocity,upper_ux,0.9463950395584106 +karman_re50,target,119,47.6,velocity,upper_uy,-0.1728551834821701 +karman_re50,target,119,47.6,velocity,center_ux,1.043401837348938 +karman_re50,target,119,47.6,velocity,center_uy,-0.2491629719734192 +karman_re50,target,119,47.6,velocity,lower_ux,1.1405092477798462 +karman_re50,target,119,47.6,velocity,lower_uy,-0.18439333140850067 +karman_re50,target,120,48.0,velocity,upper_ux,0.9822366833686829 +karman_re50,target,120,48.0,velocity,upper_uy,-0.21460886299610138 +karman_re50,target,120,48.0,velocity,center_ux,1.047603726387024 +karman_re50,target,120,48.0,velocity,center_uy,-0.297276109457016 +karman_re50,target,120,48.0,velocity,lower_ux,1.1098415851593018 +karman_re50,target,120,48.0,velocity,lower_uy,-0.23391515016555786 +karman_re50,target,121,48.4,velocity,upper_ux,1.0197937488555908 +karman_re50,target,121,48.4,velocity,upper_uy,-0.24425335228443146 +karman_re50,target,121,48.4,velocity,center_ux,1.0518124103546143 +karman_re50,target,121,48.4,velocity,center_uy,-0.32722923159599304 +karman_re50,target,121,48.4,velocity,lower_ux,1.0800799131393433 +karman_re50,target,121,48.4,velocity,lower_uy,-0.2660881280899048 +karman_re50,target,122,48.8,velocity,upper_ux,1.057863712310791 +karman_re50,target,122,48.8,velocity,upper_uy,-0.2759270966053009 +karman_re50,target,122,48.8,velocity,center_ux,1.0548865795135498 +karman_re50,target,122,48.8,velocity,center_uy,-0.3572567403316498 +karman_re50,target,122,48.8,velocity,lower_ux,1.0500637292861938 +karman_re50,target,122,48.8,velocity,lower_uy,-0.2899479866027832 +karman_re50,target,123,49.2,velocity,upper_ux,1.097452998161316 +karman_re50,target,123,49.2,velocity,upper_uy,-0.311471164226532 +karman_re50,target,123,49.2,velocity,center_ux,1.054847002029419 +karman_re50,target,123,49.2,velocity,center_uy,-0.38946861028671265 +karman_re50,target,123,49.2,velocity,lower_ux,1.017238974571228 +karman_re50,target,123,49.2,velocity,lower_uy,-0.3061363995075226 +karman_re50,target,124,49.6,velocity,upper_ux,1.1383118629455566 +karman_re50,target,124,49.6,velocity,upper_uy,-0.3392418622970581 +karman_re50,target,124,49.6,velocity,center_ux,1.0501962900161743 +karman_re50,target,124,49.6,velocity,center_uy,-0.4064243733882904 +karman_re50,target,124,49.6,velocity,lower_ux,0.980699360370636 +karman_re50,target,124,49.6,velocity,lower_uy,-0.3063034117221832 +karman_re50,target,125,50.0,velocity,upper_ux,1.1749634742736816 +karman_re50,target,125,50.0,velocity,upper_uy,-0.33269307017326355 +karman_re50,target,125,50.0,velocity,center_ux,1.0418989658355713 +karman_re50,target,125,50.0,velocity,center_uy,-0.37770718336105347 +karman_re50,target,125,50.0,velocity,lower_ux,0.9432991743087769 +karman_re50,target,125,50.0,velocity,lower_uy,-0.2778025269508362 +karman_re50,target,126,50.4,velocity,upper_ux,1.1984137296676636 +karman_re50,target,126,50.4,velocity,upper_uy,-0.2665765881538391 +karman_re50,target,126,50.4,velocity,center_ux,1.034589409828186 +karman_re50,target,126,50.4,velocity,center_uy,-0.2846388518810272 +karman_re50,target,126,50.4,velocity,lower_ux,0.9122867584228516 +karman_re50,target,126,50.4,velocity,lower_uy,-0.21288952231407166 +karman_re50,target,127,50.8,velocity,upper_ux,1.2043532133102417 +karman_re50,target,127,50.8,velocity,upper_uy,-0.1497213989496231 +karman_re50,target,127,50.8,velocity,center_ux,1.0321271419525146 +karman_re50,target,127,50.8,velocity,center_uy,-0.14167791604995728 +karman_re50,target,127,50.8,velocity,lower_ux,0.8953315615653992 +karman_re50,target,127,50.8,velocity,lower_uy,-0.11678943783044815 +karman_re50,target,128,51.2,velocity,upper_ux,1.194607138633728 +karman_re50,target,128,51.2,velocity,upper_uy,-0.018872952088713646 +karman_re50,target,128,51.2,velocity,center_ux,1.0342434644699097 +karman_re50,target,128,51.2,velocity,center_uy,0.01461002603173256 +karman_re50,target,128,51.2,velocity,lower_ux,0.8960906267166138 +karman_re50,target,128,51.2,velocity,lower_uy,-0.0073739392682909966 +karman_re50,target,129,51.6,velocity,upper_ux,1.1730085611343384 +karman_re50,target,129,51.6,velocity,upper_uy,0.0945013016462326 +karman_re50,target,129,51.6,velocity,center_ux,1.03859543800354 +karman_re50,target,129,51.6,velocity,center_uy,0.14881198108196259 +karman_re50,target,129,51.6,velocity,lower_ux,0.9133057594299316 +karman_re50,target,129,51.6,velocity,lower_uy,0.09276790916919708 +karman_re50,target,130,52.0,velocity,upper_ux,1.1458410024642944 +karman_re50,target,130,52.0,velocity,upper_uy,0.1766240894794464 +karman_re50,target,130,52.0,velocity,center_ux,1.0444227457046509 +karman_re50,target,130,52.0,velocity,center_uy,0.2411765307188034 +karman_re50,target,130,52.0,velocity,lower_ux,0.9435654282569885 +karman_re50,target,130,52.0,velocity,lower_uy,0.16625307500362396 +karman_re50,target,131,52.4,velocity,upper_ux,1.1137279272079468 +karman_re50,target,131,52.4,velocity,upper_uy,0.2288646697998047 +karman_re50,target,131,52.4,velocity,center_ux,1.0472973585128784 +karman_re50,target,131,52.4,velocity,center_uy,0.29277503490448 +karman_re50,target,131,52.4,velocity,lower_ux,0.9777885675430298 +karman_re50,target,131,52.4,velocity,lower_uy,0.21053162217140198 +karman_re50,target,132,52.8,velocity,upper_ux,1.0838333368301392 +karman_re50,target,132,52.8,velocity,upper_uy,0.26258742809295654 +karman_re50,target,132,52.8,velocity,center_ux,1.051505208015442 +karman_re50,target,132,52.8,velocity,center_uy,0.3237655758857727 +karman_re50,target,132,52.8,velocity,lower_ux,1.0152631998062134 +karman_re50,target,132,52.8,velocity,lower_uy,0.240697979927063 +karman_re50,target,133,53.2,velocity,upper_ux,1.0539456605911255 +karman_re50,target,133,53.2,velocity,upper_uy,0.28728094696998596 +karman_re50,target,133,53.2,velocity,center_ux,1.054795503616333 +karman_re50,target,133,53.2,velocity,center_uy,0.35331183671951294 +karman_re50,target,133,53.2,velocity,lower_ux,1.0532509088516235 +karman_re50,target,133,53.2,velocity,lower_uy,0.2717550992965698 +karman_re50,target,134,53.6,velocity,upper_ux,1.0215256214141846 +karman_re50,target,134,53.6,velocity,upper_uy,0.3047359585762024 +karman_re50,target,134,53.6,velocity,center_ux,1.0552271604537964 +karman_re50,target,134,53.6,velocity,center_uy,0.3858332931995392 +karman_re50,target,134,53.6,velocity,lower_ux,1.0926194190979004 +karman_re50,target,134,53.6,velocity,lower_uy,0.30715450644493103 +karman_re50,target,135,54.0,velocity,upper_ux,0.9853794574737549 +karman_re50,target,135,54.0,velocity,upper_uy,0.30754354596138 +karman_re50,target,135,54.0,velocity,center_ux,1.05116868019104 +karman_re50,target,135,54.0,velocity,center_uy,0.40616557002067566 +karman_re50,target,135,54.0,velocity,lower_ux,1.133475661277771 +karman_re50,target,135,54.0,velocity,lower_uy,0.33697494864463806 +karman_re50,target,136,54.4,velocity,upper_ux,0.9477443099021912 +karman_re50,target,136,54.4,velocity,upper_uy,0.283162385225296 +karman_re50,target,136,54.4,velocity,center_ux,1.043144702911377 +karman_re50,target,136,54.4,velocity,center_uy,0.3845502734184265 +karman_re50,target,136,54.4,velocity,lower_ux,1.1711623668670654 +karman_re50,target,136,54.4,velocity,lower_uy,0.3363122045993805 +karman_re50,target,137,54.8,velocity,upper_ux,0.9154908657073975 +karman_re50,target,137,54.8,velocity,upper_uy,0.22269171476364136 +karman_re50,target,137,54.8,velocity,center_ux,1.0354591608047485 +karman_re50,target,137,54.8,velocity,center_uy,0.29919320344924927 +karman_re50,target,137,54.8,velocity,lower_ux,1.1966259479522705 +karman_re50,target,137,54.8,velocity,lower_uy,0.2778262197971344 +karman_re50,target,138,55.2,velocity,upper_ux,0.896523118019104 +karman_re50,target,138,55.2,velocity,upper_uy,0.1296391636133194 +karman_re50,target,138,55.2,velocity,center_ux,1.0323601961135864 +karman_re50,target,138,55.2,velocity,center_uy,0.16056892275810242 +karman_re50,target,138,55.2,velocity,lower_ux,1.2046724557876587 +karman_re50,target,138,55.2,velocity,lower_uy,0.1654483675956726 +karman_re50,target,139,55.6,velocity,upper_ux,0.8951039910316467 +karman_re50,target,139,55.6,velocity,upper_uy,0.020632531493902206 +karman_re50,target,139,55.6,velocity,center_ux,1.0340180397033691 +karman_re50,target,139,55.6,velocity,center_uy,0.0038161359261721373 +karman_re50,target,139,55.6,velocity,lower_ux,1.1966376304626465 +karman_re50,target,139,55.6,velocity,lower_uy,0.034349437803030014 +karman_re50,target,140,56.0,velocity,upper_ux,0.9105058908462524 +karman_re50,target,140,56.0,velocity,upper_uy,-0.08172175288200378 +karman_re50,target,140,56.0,velocity,center_ux,1.0382068157196045 +karman_re50,target,140,56.0,velocity,center_uy,-0.1344430297613144 +karman_re50,target,140,56.0,velocity,lower_ux,1.1762433052062988 +karman_re50,target,140,56.0,velocity,lower_uy,-0.08213884383440018 +karman_re50,target,141,56.4,velocity,upper_ux,0.9384689927101135 +karman_re50,target,141,56.4,velocity,upper_uy,-0.1588401049375534 +karman_re50,target,141,56.4,velocity,center_ux,1.0427533388137817 +karman_re50,target,141,56.4,velocity,center_uy,-0.23205704987049103 +karman_re50,target,141,56.4,velocity,lower_ux,1.1481837034225464 +karman_re50,target,141,56.4,velocity,lower_uy,-0.16808611154556274 +karman_re50,target,142,56.8,velocity,upper_ux,0.9746041297912598 +karman_re50,target,142,56.8,velocity,upper_uy,-0.20653867721557617 +karman_re50,target,142,56.8,velocity,center_ux,1.048251986503601 +karman_re50,target,142,56.8,velocity,center_uy,-0.2883848547935486 +karman_re50,target,142,56.8,velocity,lower_ux,1.1189470291137695 +karman_re50,target,142,56.8,velocity,lower_uy,-0.22391121089458466 +karman_re50,target,143,57.2,velocity,upper_ux,1.0107636451721191 +karman_re50,target,143,57.2,velocity,upper_uy,-0.23721545934677124 +karman_re50,target,143,57.2,velocity,center_ux,1.0511399507522583 +karman_re50,target,143,57.2,velocity,center_uy,-0.3203483819961548 +karman_re50,target,143,57.2,velocity,lower_ux,1.0875070095062256 +karman_re50,target,143,57.2,velocity,lower_uy,-0.25903409719467163 +karman_re50,target,144,57.6,velocity,upper_ux,1.0486619472503662 +karman_re50,target,144,57.6,velocity,upper_uy,-0.2676999270915985 +karman_re50,target,144,57.6,velocity,center_ux,1.0546164512634277 +karman_re50,target,144,57.6,velocity,center_uy,-0.3494662940502167 +karman_re50,target,144,57.6,velocity,lower_ux,1.0577290058135986 +karman_re50,target,144,57.6,velocity,lower_uy,-0.28455621004104614 +karman_re50,target,145,58.0,velocity,upper_ux,1.0877671241760254 +karman_re50,target,145,58.0,velocity,upper_uy,-0.3027780055999756 +karman_re50,target,145,58.0,velocity,center_ux,1.0554893016815186 +karman_re50,target,145,58.0,velocity,center_uy,-0.38202598690986633 +karman_re50,target,145,58.0,velocity,lower_ux,1.025739073753357 +karman_re50,target,145,58.0,velocity,lower_uy,-0.303129643201828 +karman_re50,target,146,58.4,velocity,upper_ux,1.1300148963928223 +karman_re50,target,146,58.4,velocity,upper_uy,-0.33472880721092224 +karman_re50,target,146,58.4,velocity,center_ux,1.0533350706100464 +karman_re50,target,146,58.4,velocity,center_uy,-0.40579238533973694 +karman_re50,target,146,58.4,velocity,lower_ux,0.9912155270576477 +karman_re50,target,146,58.4,velocity,lower_uy,-0.30875885486602783 +karman_re50,target,147,58.8,velocity,upper_ux,1.1671380996704102 +karman_re50,target,147,58.8,velocity,upper_uy,-0.3390437960624695 +karman_re50,target,147,58.8,velocity,center_ux,1.0443283319473267 +karman_re50,target,147,58.8,velocity,center_uy,-0.3903892934322357 +karman_re50,target,147,58.8,velocity,lower_ux,0.9522334933280945 +karman_re50,target,147,58.8,velocity,lower_uy,-0.2879561483860016 +karman_re50,target,148,59.2,velocity,upper_ux,1.1945297718048096 +karman_re50,target,148,59.2,velocity,upper_uy,-0.2882328927516937 +karman_re50,target,148,59.2,velocity,center_ux,1.036336898803711 +karman_re50,target,148,59.2,velocity,center_uy,-0.3129142224788666 +karman_re50,target,148,59.2,velocity,lower_ux,0.9188764095306396 +karman_re50,target,148,59.2,velocity,lower_uy,-0.23197990655899048 +karman_re50,target,149,59.6,velocity,upper_ux,1.2047147750854492 +karman_re50,target,149,59.6,velocity,upper_uy,-0.1808193027973175 +karman_re50,target,149,59.6,velocity,center_ux,1.0325924158096313 +karman_re50,target,149,59.6,velocity,center_uy,-0.17909392714500427 +karman_re50,target,149,59.6,velocity,lower_ux,0.8979575634002686 +karman_re50,target,149,59.6,velocity,lower_uy,-0.14217650890350342 diff --git a/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_wide.csv b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_wide.csv new file mode 100644 index 0000000..34aeffc --- /dev/null +++ b/src/SR_analysis/results/runs/article2-timeseries-csv-20260720/karman_re50/target_wide.csv @@ -0,0 +1,151 @@ +scene,source,step,t_D,sensors_upper_ux,sensors_upper_uy,sensors_center_ux,sensors_center_uy,sensors_lower_ux,sensors_lower_uy +karman_re50,target,0,0.0,1.0077309608459473,0.31268900632858276,1.032367467880249,0.38565218448638916,1.0744714736938477,0.31084343791007996 +karman_re50,target,1,0.4,0.9752272963523865,0.31278347969055176,1.028232216835022,0.4061947166919708,1.1129587888717651,0.34444481134414673 +karman_re50,target,2,0.8,0.9404404163360596,0.28842318058013916,1.018612265586853,0.3901177942752838,1.1485111713409424,0.35052192211151123 +karman_re50,target,3,1.2,0.9088469743728638,0.23062294721603394,1.007595419883728,0.3140614628791809,1.1731038093566895,0.29963257908821106 +karman_re50,target,4,1.6,0.8895705938339233,0.14141683280467987,1.002601981163025,0.182588592171669,1.1834471225738525,0.1890764981508255 +karman_re50,target,5,2.0,0.8841860890388489,0.03419071435928345,1.0019114017486572,0.02574985660612583,1.176062822341919,0.05076853930950165 +karman_re50,target,6,2.4,0.8963819146156311,-0.0689723864197731,1.0073328018188477,-0.11840152740478516,1.158385992050171,-0.07662329077720642 +karman_re50,target,7,2.8,0.9220305681228638,-0.14861394464969635,1.014836311340332,-0.22410747408866882,1.133054256439209,-0.17192429304122925 +karman_re50,target,8,3.2,0.9556723237037659,-0.1984201818704605,1.0223488807678223,-0.28568312525749207,1.1045842170715332,-0.23210445046424866 +karman_re50,target,9,3.6,0.9922119975090027,-0.23059363663196564,1.029402494430542,-0.318838506937027,1.0765469074249268,-0.26738664507865906 +karman_re50,target,10,4.0,1.0306323766708374,-0.2620929181575775,1.0366642475128174,-0.3461267352104187,1.0508241653442383,-0.29083487391471863 +karman_re50,target,11,4.4,1.0670619010925293,-0.29812490940093994,1.038124442100525,-0.37628471851348877,1.0209250450134277,-0.30708372592926025 +karman_re50,target,12,4.8,1.1060634851455688,-0.3340187072753906,1.035738468170166,-0.4024990200996399,0.9886313676834106,-0.31320980191230774 +karman_re50,target,13,5.2,1.1439363956451416,-0.3502766788005829,1.0277838706970215,-0.3999009430408478,0.9532766938209534,-0.2979300022125244 +karman_re50,target,14,5.6,1.1730700731277466,-0.31664028763771057,1.017236590385437,-0.3410341739654541,0.9194557666778564,-0.25039252638816833 +karman_re50,target,15,6.0,1.1883978843688965,-0.22058480978012085,1.011395812034607,-0.22175732254981995,0.8962686061859131,-0.1689416468143463 +karman_re50,target,16,6.4,1.1849288940429688,-0.08717484772205353,1.009433388710022,-0.06757096946239471,0.8864444494247437,-0.06425153464078903 +karman_re50,target,17,6.8,1.16986083984375,0.04375701770186424,1.013740062713623,0.08287535607814789,0.8947130441665649,0.042603589594364166 +karman_re50,target,18,7.2,1.1456360816955566,0.146937757730484,1.020347237586975,0.19989383220672607,0.9175280928611755,0.13053452968597412 +karman_re50,target,19,7.6,1.1169698238372803,0.2151496857404709,1.0270673036575317,0.27213799953460693,0.9497470259666443,0.18827567994594574 +karman_re50,target,20,8.0,1.0893604755401611,0.2563757300376892,1.0347108840942383,0.31116983294487,0.987260639667511,0.22379052639007568 +karman_re50,target,21,8.4,1.060178279876709,0.28232166171073914,1.039188265800476,0.33816295862197876,1.0233412981033325,0.25362879037857056 +karman_re50,target,22,8.8,1.0314701795578003,0.301550954580307,1.0425441265106201,0.368370920419693,1.0611547231674194,0.28833600878715515 +karman_re50,target,23,9.2,0.9993841052055359,0.31184643507003784,1.0413984060287476,0.3976716101169586,1.1003283262252808,0.3249409794807434 +karman_re50,target,24,9.6,0.9638025760650635,0.30327704548835754,1.0348204374313354,0.4044625461101532,1.1395442485809326,0.3476041853427887 +karman_re50,target,25,10.0,0.9285237789154053,0.2640073299407959,1.0248610973358154,0.3593921959400177,1.1719257831573486,0.3269805908203125 +karman_re50,target,26,10.4,0.9012553691864014,0.1894393116235733,1.0171961784362793,0.2512984871864319,1.1898168325424194,0.2436230480670929 +karman_re50,target,27,10.8,0.8889168500900269,0.0882202610373497,1.0155017375946045,0.10143450647592545,1.191236138343811,0.11618269234895706 +karman_re50,target,28,11.2,0.8938252329826355,-0.02033458650112152,1.018898844718933,-0.05262472480535507,1.1785542964935303,-0.016406692564487457 +karman_re50,target,29,11.6,0.914091944694519,-0.11411905288696289,1.0247907638549805,-0.17807656526565552,1.1555812358856201,-0.12535345554351807 +karman_re50,target,30,12.0,0.9449324607849121,-0.1787344515323639,1.0309253931045532,-0.2594573497772217,1.1270185708999634,-0.20023185014724731 +karman_re50,target,31,12.4,0.9808159470558167,-0.21752430498600006,1.0366859436035156,-0.3035808503627777,1.097407341003418,-0.24609722197055817 +karman_re50,target,32,12.8,1.0182090997695923,-0.24735954403877258,1.0421764850616455,-0.33201849460601807,1.0689315795898438,-0.2752079367637634 +karman_re50,target,33,13.2,1.0560741424560547,-0.2806274890899658,1.0458661317825317,-0.3617214262485504,1.0400677919387817,-0.29647165536880493 +karman_re50,target,34,13.6,1.0952383279800415,-0.3172092139720917,1.0456302165985107,-0.39268553256988525,1.0082051753997803,-0.3097909688949585 +karman_re50,target,35,14.0,1.1351851224899292,-0.344072163105011,1.0401959419250488,-0.40624740719795227,0.972635805606842,-0.30637669563293457 +karman_re50,target,36,14.4,1.1714152097702026,-0.3339965045452118,1.0321406126022339,-0.3730076253414154,0.9375696778297424,-0.27429360151290894 +karman_re50,target,37,14.8,1.191221833229065,-0.26173868775367737,1.022792935371399,-0.2750328779220581,0.906806230545044,-0.20578452944755554 +karman_re50,target,38,15.2,1.1956652402877808,-0.140220046043396,1.020254373550415,-0.12984192371368408,0.8913743495941162,-0.10804779082536697 +karman_re50,target,39,15.6,1.1851998567581177,-0.007142216432839632,1.0228785276412964,0.02608337439596653,0.8933064341545105,0.0009969607926905155 +karman_re50,target,40,16.0,1.1635135412216187,0.10636044293642044,1.0281955003738403,0.1581934243440628,0.9112529158592224,0.09912622720003128 +karman_re50,target,41,16.4,1.1367148160934448,0.18710236251354218,1.0351935625076294,0.24774420261383057,0.9418942928314209,0.1698002815246582 +karman_re50,target,42,16.8,1.1066583395004272,0.2375148981809616,1.0405068397521973,0.2972911596298218,0.977349042892456,0.21237657964229584 +karman_re50,target,43,17.2,1.0762686729431152,0.26891857385635376,1.044399380683899,0.32676783204078674,1.013490080833435,0.2422141432762146 +karman_re50,target,44,17.6,1.0472686290740967,0.29184961318969727,1.0482839345932007,0.355979323387146,1.0513609647750854,0.2742753326892853 +karman_re50,target,45,18.0,1.0156413316726685,0.3074697256088257,1.0487473011016846,0.38779106736183167,1.0904340744018555,0.3105018734931946 +karman_re50,target,46,18.4,0.9802128076553345,0.3081558346748352,1.0442700386047363,0.4064066410064697,1.1307679414749146,0.3402513861656189 +karman_re50,target,47,18.8,0.9433308243751526,0.2815181612968445,1.0355175733566284,0.3822541832923889,1.1673216819763184,0.3378625214099884 +karman_re50,target,48,19.2,0.9119047522544861,0.2192472517490387,1.0271868705749512,0.2946729362010956,1.191462755203247,0.2764136791229248 +karman_re50,target,49,19.6,0.8937856554985046,0.12525542080402374,1.0238934755325317,0.15479475259780884,1.1986750364303589,0.16113173961639404 +karman_re50,target,50,20.0,0.892983078956604,0.016374148428440094,1.0258327722549438,-0.001996970036998391,1.1903109550476074,0.02817978896200657 +karman_re50,target,51,20.4,0.9090068340301514,-0.08626902848482132,1.0307422876358032,-0.14112325012683868,1.1696349382400513,-0.09044397622346878 +karman_re50,target,52,20.8,0.9368330240249634,-0.16066408157348633,1.036059856414795,-0.23583896458148956,1.1422001123428345,-0.17462946474552155 +karman_re50,target,53,21.2,0.9729005694389343,-0.2071990966796875,1.042338490486145,-0.290899395942688,1.1133732795715332,-0.22939151525497437 +karman_re50,target,54,21.6,1.0089665651321411,-0.23775573074817657,1.0459660291671753,-0.32210543751716614,1.0825412273406982,-0.26326000690460205 +karman_re50,target,55,22.0,1.0468122959136963,-0.268839955329895,1.049967646598816,-0.35090628266334534,1.0534310340881348,-0.2876231372356415 +karman_re50,target,56,22.4,1.085774540901184,-0.3045651912689209,1.050988793373108,-0.3830755352973938,1.0220310688018799,-0.3050633370876312 +karman_re50,target,57,22.8,1.1262469291687012,-0.33633100986480713,1.0473381280899048,-0.4055234491825104,0.9868588447570801,-0.30909937620162964 +karman_re50,target,58,23.2,1.1641225814819336,-0.34063807129859924,1.0391770601272583,-0.38965529203414917,0.9496231079101562,-0.28754228353500366 +karman_re50,target,59,23.6,1.1907721757888794,-0.2886927127838135,1.0306414365768433,-0.3114507794380188,0.91668701171875,-0.2307434231042862 +karman_re50,target,60,24.0,1.2005728483200073,-0.17982015013694763,1.0266547203063965,-0.17727769911289215,0.8961740732192993,-0.1406124085187912 +karman_re50,target,61,24.4,1.1957528591156006,-0.04762698709964752,1.0292420387268066,-0.020510710775852203,0.8939207196235657,-0.03247760608792305 +karman_re50,target,62,24.8,1.1752729415893555,0.07281430065631866,1.0323727130889893,0.12150230258703232,0.9063898324966431,0.07150217890739441 +karman_re50,target,63,25.2,1.1481338739395142,0.16299621760845184,1.037530779838562,0.22428344190120697,0.9331002831459045,0.15168219804763794 +karman_re50,target,64,25.6,1.117828130722046,0.2214830070734024,1.04227876663208,0.28422364592552185,0.9673502445220947,0.20179644227027893 +karman_re50,target,65,26.0,1.0880255699157715,0.2580534815788269,1.046993613243103,0.3178173899650574,1.0045255422592163,0.23370401561260223 +karman_re50,target,66,26.4,1.0588243007659912,0.2837057113647461,1.051069736480713,0.3463238775730133,1.0423228740692139,0.26402273774147034 +karman_re50,target,67,26.8,1.0276880264282227,0.30261409282684326,1.0525598526000977,0.37848761677742004,1.0811209678649902,0.29912716150283813 +karman_re50,target,68,27.2,0.9928274750709534,0.30946916341781616,1.049638032913208,0.4039071202278137,1.12160325050354,0.33234703540802 +karman_re50,target,69,27.6,0.955420732498169,0.2924269735813141,1.0420582294464111,0.3952958583831787,1.160478949546814,0.3422817885875702 +karman_re50,target,70,28.0,0.9212458729743958,0.24078600108623505,1.03338623046875,0.3260457515716553,1.1893450021743774,0.2991337478160858 +karman_re50,target,71,28.4,0.8985814452171326,0.1546410322189331,1.0287501811981201,0.19796346127986908,1.201606035232544,0.19688482582569122 +karman_re50,target,72,28.8,0.8927551507949829,0.047618065029382706,1.0294272899627686,0.041913241147994995,1.1972994804382324,0.06586337089538574 +karman_re50,target,73,29.2,0.905358076095581,-0.058344487100839615,1.0347648859024048,-0.10397431254386902,1.1812171936035156,-0.05729410797357559 +karman_re50,target,74,29.6,0.9294992089271545,-0.14258524775505066,1.0384544134140015,-0.21265248954296112,1.1533095836639404,-0.15174376964569092 +karman_re50,target,75,30.0,0.963073194026947,-0.19654136896133423,1.0430582761764526,-0.27782389521598816,1.1230535507202148,-0.21412993967533112 +karman_re50,target,76,30.4,1.0000640153884888,-0.22984129190444946,1.0475963354110718,-0.3137083649635315,1.092976689338684,-0.2531023919582367 +karman_re50,target,77,30.8,1.0391368865966797,-0.25994789600372314,1.0530455112457275,-0.34252461791038513,1.0650025606155396,-0.2803567051887512 +karman_re50,target,78,31.2,1.0764597654342651,-0.2940531075000763,1.053614616394043,-0.3740232586860657,1.03279709815979,-0.30014246702194214 +karman_re50,target,79,31.6,1.1168687343597412,-0.3283084034919739,1.0513570308685303,-0.4017423689365387,0.9982854723930359,-0.3094078600406647 +karman_re50,target,80,32.0,1.1564772129058838,-0.34302347898483276,1.0443576574325562,-0.39954912662506104,0.960866391658783,-0.2964411973953247 +karman_re50,target,81,32.4,1.1872917413711548,-0.3081832528114319,1.0356242656707764,-0.3390337824821472,0.9257128238677979,-0.24980050325393677 +karman_re50,target,82,32.8,1.2019351720809937,-0.21272405982017517,1.0303672552108765,-0.21731042861938477,0.9010581970214844,-0.16769205033779144 +karman_re50,target,83,33.2,1.1996499300003052,-0.08351527899503708,1.030428409576416,-0.06274111568927765,0.8928700089454651,-0.06225714832544327 +karman_re50,target,84,33.6,1.183549165725708,0.0419522225856781,1.0341061353683472,0.08626106381416321,0.9022186398506165,0.04516284540295601 +karman_re50,target,85,34.0,1.1579211950302124,0.1406230628490448,1.0389565229415894,0.200774148106575,0.9260104298591614,0.13326998054981232 +karman_re50,target,86,34.4,1.1292413473129272,0.20712588727474213,1.0447874069213867,0.27154770493507385,0.9600358009338379,0.19131851196289062 +karman_re50,target,87,34.8,1.0975310802459717,0.2483038455247879,1.0478811264038086,0.3096844553947449,0.9955992102622986,0.22607290744781494 +karman_re50,target,88,35.2,1.0680946111679077,0.2764659821987152,1.0520501136779785,0.33815228939056396,1.0333619117736816,0.2555353045463562 +karman_re50,target,89,35.6,1.037482738494873,0.29765570163726807,1.0542904138565063,0.3696883022785187,1.071812629699707,0.2892625033855438 +karman_re50,target,90,36.0,1.0046550035476685,0.3093867599964142,1.0539649724960327,0.3996296226978302,1.1134326457977295,0.3245891332626343 +karman_re50,target,91,36.4,0.966067373752594,0.29975470900535583,1.0462273359298706,0.4026532471179962,1.152191162109375,0.34300222992897034 +karman_re50,target,92,36.8,0.9301112294197083,0.2578960359096527,1.037498116493225,0.3505437970161438,1.1847506761550903,0.31594565510749817 +karman_re50,target,93,37.2,0.9036421775817871,0.17994506657123566,1.0316575765609741,0.23553819954395294,1.2017030715942383,0.22752320766448975 +karman_re50,target,94,37.6,0.8931617736816406,0.07637195289134979,1.0311012268066406,0.08296997100114822,1.2014387845993042,0.10056771337985992 +karman_re50,target,95,38.0,0.900389552116394,-0.03210722282528877,1.0344151258468628,-0.06864593178033829,1.1868507862091064,-0.02683928795158863 +karman_re50,target,96,38.4,0.9237774610519409,-0.12377510219812393,1.0404468774795532,-0.18870402872562408,1.1635851860046387,-0.129564106464386 +karman_re50,target,97,38.8,0.9546407461166382,-0.1853521168231964,1.0436320304870605,-0.26428914070129395,1.1322641372680664,-0.1995692104101181 +karman_re50,target,98,39.2,0.9911322593688965,-0.22231553494930267,1.047936201095581,-0.3056510090827942,1.1018091440200806,-0.24355587363243103 +karman_re50,target,99,39.6,1.0288201570510864,-0.2516142725944519,1.052126169204712,-0.33436232805252075,1.0722846984863281,-0.2729719579219818 +karman_re50,target,100,40.0,1.0671451091766357,-0.2846563458442688,1.0546810626983643,-0.3654399514198303,1.0418862104415894,-0.29512640833854675 +karman_re50,target,101,40.4,1.107189655303955,-0.32000625133514404,1.053602933883667,-0.3961751163005829,1.0082036256790161,-0.30829358100891113 +karman_re50,target,102,40.8,1.1477084159851074,-0.3423168659210205,1.0477720499038696,-0.4047542214393616,0.9710691571235657,-0.30245381593704224 +karman_re50,target,103,41.2,1.1820108890533447,-0.32222312688827515,1.0390583276748657,-0.36022594571113586,0.9342452883720398,-0.26482146978378296 +karman_re50,target,104,41.6,1.2009941339492798,-0.24142321944236755,1.0327389240264893,-0.2528190612792969,0.9063665866851807,-0.19153839349746704 +karman_re50,target,105,42.0,1.2027766704559326,-0.11730198562145233,1.0315561294555664,-0.10289917141199112,0.8936620950698853,-0.09017970412969589 +karman_re50,target,106,42.4,1.1897581815719604,0.011660351417958736,1.0344913005828857,0.05079803988337517,0.898743212223053,0.01896943338215351 +karman_re50,target,107,42.8,1.1660023927688599,0.11802452802658081,1.0391044616699219,0.17573177814483643,0.9193622469902039,0.11366153508424759 +karman_re50,target,108,43.2,1.1364717483520508,0.1921054720878601,1.043588399887085,0.2569625675678253,0.9504894018173218,0.17929038405418396 +karman_re50,target,109,43.6,1.10588538646698,0.23878984153270721,1.047827959060669,0.3015437424182892,0.9866836667060852,0.2185177356004715 +karman_re50,target,110,44.0,1.0762561559677124,0.2695294916629791,1.0520304441452026,0.33073940873146057,1.0243005752563477,0.2478708028793335 +karman_re50,target,111,44.4,1.046048641204834,0.2925684452056885,1.0548622608184814,0.36131009459495544,1.0625085830688477,0.2802332937717438 +karman_re50,target,112,44.8,1.0128190517425537,0.3073291480541229,1.054319977760315,0.39292633533477783,1.1023032665252686,0.3157508969306946 +karman_re50,target,113,45.2,0.9759486317634583,0.30462443828582764,1.0490795373916626,0.4059816598892212,1.1430555582046509,0.3410373032093048 +karman_re50,target,114,45.6,0.9388958215713501,0.2718484103679657,1.0405726432800293,0.36981654167175293,1.1785149574279785,0.3281412124633789 +karman_re50,target,115,46.0,0.909229576587677,0.20244641602039337,1.0336941480636597,0.26908424496650696,1.1998896598815918,0.254362553358078 +karman_re50,target,116,46.4,0.8943660855293274,0.103407122194767,1.0318784713745117,0.12211356312036514,1.2037246227264404,0.13338778913021088 +karman_re50,target,117,46.8,0.897309422492981,-0.00583877507597208,1.0344167947769165,-0.03282942622900009,1.1923226118087769,0.0035314944107085466 +karman_re50,target,118,47.2,0.9162498712539673,-0.10336058586835861,1.0389043092727661,-0.16249819099903107,1.1696194410324097,-0.10638866573572159 +karman_re50,target,119,47.6,0.9463950395584106,-0.1728551834821701,1.043401837348938,-0.2491629719734192,1.1405092477798462,-0.18439333140850067 +karman_re50,target,120,48.0,0.9822366833686829,-0.21460886299610138,1.047603726387024,-0.297276109457016,1.1098415851593018,-0.23391515016555786 +karman_re50,target,121,48.4,1.0197937488555908,-0.24425335228443146,1.0518124103546143,-0.32722923159599304,1.0800799131393433,-0.2660881280899048 +karman_re50,target,122,48.8,1.057863712310791,-0.2759270966053009,1.0548865795135498,-0.3572567403316498,1.0500637292861938,-0.2899479866027832 +karman_re50,target,123,49.2,1.097452998161316,-0.311471164226532,1.054847002029419,-0.38946861028671265,1.017238974571228,-0.3061363995075226 +karman_re50,target,124,49.6,1.1383118629455566,-0.3392418622970581,1.0501962900161743,-0.4064243733882904,0.980699360370636,-0.3063034117221832 +karman_re50,target,125,50.0,1.1749634742736816,-0.33269307017326355,1.0418989658355713,-0.37770718336105347,0.9432991743087769,-0.2778025269508362 +karman_re50,target,126,50.4,1.1984137296676636,-0.2665765881538391,1.034589409828186,-0.2846388518810272,0.9122867584228516,-0.21288952231407166 +karman_re50,target,127,50.8,1.2043532133102417,-0.1497213989496231,1.0321271419525146,-0.14167791604995728,0.8953315615653992,-0.11678943783044815 +karman_re50,target,128,51.2,1.194607138633728,-0.018872952088713646,1.0342434644699097,0.01461002603173256,0.8960906267166138,-0.0073739392682909966 +karman_re50,target,129,51.6,1.1730085611343384,0.0945013016462326,1.03859543800354,0.14881198108196259,0.9133057594299316,0.09276790916919708 +karman_re50,target,130,52.0,1.1458410024642944,0.1766240894794464,1.0444227457046509,0.2411765307188034,0.9435654282569885,0.16625307500362396 +karman_re50,target,131,52.4,1.1137279272079468,0.2288646697998047,1.0472973585128784,0.29277503490448,0.9777885675430298,0.21053162217140198 +karman_re50,target,132,52.8,1.0838333368301392,0.26258742809295654,1.051505208015442,0.3237655758857727,1.0152631998062134,0.240697979927063 +karman_re50,target,133,53.2,1.0539456605911255,0.28728094696998596,1.054795503616333,0.35331183671951294,1.0532509088516235,0.2717550992965698 +karman_re50,target,134,53.6,1.0215256214141846,0.3047359585762024,1.0552271604537964,0.3858332931995392,1.0926194190979004,0.30715450644493103 +karman_re50,target,135,54.0,0.9853794574737549,0.30754354596138,1.05116868019104,0.40616557002067566,1.133475661277771,0.33697494864463806 +karman_re50,target,136,54.4,0.9477443099021912,0.283162385225296,1.043144702911377,0.3845502734184265,1.1711623668670654,0.3363122045993805 +karman_re50,target,137,54.8,0.9154908657073975,0.22269171476364136,1.0354591608047485,0.29919320344924927,1.1966259479522705,0.2778262197971344 +karman_re50,target,138,55.2,0.896523118019104,0.1296391636133194,1.0323601961135864,0.16056892275810242,1.2046724557876587,0.1654483675956726 +karman_re50,target,139,55.6,0.8951039910316467,0.020632531493902206,1.0340180397033691,0.0038161359261721373,1.1966376304626465,0.034349437803030014 +karman_re50,target,140,56.0,0.9105058908462524,-0.08172175288200378,1.0382068157196045,-0.1344430297613144,1.1762433052062988,-0.08213884383440018 +karman_re50,target,141,56.4,0.9384689927101135,-0.1588401049375534,1.0427533388137817,-0.23205704987049103,1.1481837034225464,-0.16808611154556274 +karman_re50,target,142,56.8,0.9746041297912598,-0.20653867721557617,1.048251986503601,-0.2883848547935486,1.1189470291137695,-0.22391121089458466 +karman_re50,target,143,57.2,1.0107636451721191,-0.23721545934677124,1.0511399507522583,-0.3203483819961548,1.0875070095062256,-0.25903409719467163 +karman_re50,target,144,57.6,1.0486619472503662,-0.2676999270915985,1.0546164512634277,-0.3494662940502167,1.0577290058135986,-0.28455621004104614 +karman_re50,target,145,58.0,1.0877671241760254,-0.3027780055999756,1.0554893016815186,-0.38202598690986633,1.025739073753357,-0.303129643201828 +karman_re50,target,146,58.4,1.1300148963928223,-0.33472880721092224,1.0533350706100464,-0.40579238533973694,0.9912155270576477,-0.30875885486602783 +karman_re50,target,147,58.8,1.1671380996704102,-0.3390437960624695,1.0443283319473267,-0.3903892934322357,0.9522334933280945,-0.2879561483860016 +karman_re50,target,148,59.2,1.1945297718048096,-0.2882328927516937,1.036336898803711,-0.3129142224788666,0.9188764095306396,-0.23197990655899048 +karman_re50,target,149,59.6,1.2047147750854492,-0.1808193027973175,1.0325924158096313,-0.17909392714500427,0.8979575634002686,-0.14217650890350342 diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..d508304 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-raw-all-independent-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_F/(-1.4058288) + target_Cl*0.075971335 - 0.007171501*v_hat_C","deployment_expression_hash":"6b36e279f40bba6626666340069d6982315691b8984edafc6b023b7cab96c634","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_F/(-1.4058288) + target_Cl*0.075971335 - 0.007171501*v_hat_C","fitted_expression_hash":"6b36e279f40bba6626666340069d6982315691b8984edafc6b023b7cab96c634","g_metadata":{"fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-raw-all-independent-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode independent --seed 0 --niterations 40","created_at":"2026-07-17T08:57:51.898474+00:00","diagnostic_metrics":{"mae":0.07209896233663744,"r2":0.9446410759443026},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":197,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"independent"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-illusion-1L-raw-all-independent-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..54da246 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-raw-all-independent-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-raw-all-independent-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-3.392616/Cd_F + (Cd_F + Cl_F + v_hat_C/u_hat_B)/Cd_B","deployment_expression_hash":"80905df2672e79709b44389cddd625d57b9694ad3428a03d9a5a150728b92060","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-3.392616/Cd_F + (Cd_F + Cl_F + v_hat_C/u_hat_B)/Cd_B","fitted_expression_hash":"80905df2672e79709b44389cddd625d57b9694ad3428a03d9a5a150728b92060","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-raw-all-independent-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode independent --seed 0 --niterations 40","created_at":"2026-07-17T08:58:09.807286+00:00","diagnostic_metrics":{"mae":0.09276870228424791,"r2":0.6219485919143575},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":197,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"independent"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-illusion-1L-raw-all-independent-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..74d7e0b --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-reduced-all-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_tot/Cl_diff","deployment_expression_hash":"6be96d964ed050d73115c179bef4be6de63874f4fb664cfa13aaf073b575da83","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_tot/Cl_diff","fitted_expression_hash":"6be96d964ed050d73115c179bef4be6de63874f4fb664cfa13aaf073b575da83","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-reduced-all-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:08:02.671694+00:00","diagnostic_metrics":{"mae":0.37492379642862095,"r2":0.30621805334469454},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-illusion-1L-reduced-all-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..bc7af45 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-reduced-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-reduced-all-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.868768630000000","deployment_expression_hash":"f9d1b90ad3d9076371ee6ea106e8b629f7c980ba4aed470da75cc50dd9668bd8","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.868768630000000","fitted_expression_hash":"f9d1b90ad3d9076371ee6ea106e8b629f7c980ba4aed470da75cc50dd9668bd8","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-reduced-all-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:08:24.092303+00:00","diagnostic_metrics":{"mae":0.2079947531684188,"r2":-3.788125368942019e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-illusion-1L-reduced-all-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/audit_report.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/audit_report.json new file mode 100644 index 0000000..52fb7a6 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"77326cc4c55d9308c1239ccb5a98f9da346fd5c050dfcc74e6f33a552068b385"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"c33473020eaffa3295323d86cd78bb85b3c4a0e0096c247e290a1740a1362abd"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"428ae7c28f36082b2dcfb20d2e0f06713f96ac1540ef4ec991152e62e6eb4511"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"8992231d8691e4585f1f4a7effef8abb7f6bc2d4e1d2a1ccf0ece29d7a5fc9cb"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"5ca6ccacbc7011c4094115ec5a7b348378512ecf57b51d19fa900aa296d494de"},{"kind":"formula","path":"results/formulas/illusion_1L_front.json","sha256":"c26a3dd69cf1c00e1acc51e03984271aed100fec2ec6902db9707522961c351d"},{"kind":"formula","path":"results/formulas/illusion_1L_rear_shared_upper.json","sha256":"8c3b1d5f92909db492c8ca6ea218ef7a60fecac2e8531df42ef04d239bcc1302"}],"data_run_id":"trusted-baseline-illusion-1L-20260717","errors":[{"code":"artifact_kind_missing","message":"run has no validation artifact"},{"code":"artifact_kind_missing","message":"run has no telemetry artifact"}],"generated_at":"2026-07-17T16:28:46.735816+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"rebuild-illusion-1L-safe-mapped-20260717","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"fail","strict_failure":true,"summary":{"artifact_count":9,"candidate_count":2,"error_count":2,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json new file mode 100644 index 0000000..7f5051f --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-front_odd-anchor-upper","path":"results/formulas/illusion_1L_front.json","run_id":"rebuild-illusion-1L-safe-mapped-20260717","sha256":"c26a3dd69cf1c00e1acc51e03984271aed100fec2ec6902db9707522961c351d","status":"candidate"},{"artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-rear_shared-anchor-upper","path":"results/formulas/illusion_1L_rear_shared_upper.json","run_id":"rebuild-illusion-1L-safe-mapped-20260717","sha256":"8c3b1d5f92909db492c8ca6ea218ef7a60fecac2e8531df42ef04d239bcc1302","status":"candidate"}],"diagnostic_reason":null,"promotion_eligible":true,"run_id":"rebuild-illusion-1L-safe-mapped-20260717","schema_version":"sr-candidate-registry-v1","status":"candidate"} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..4c6aefe --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cl_F + Cl_F - Cl_rear_s - (-0.019382002)*v_c)*(-0.28730434)","deployment_expression_hash":"4a8d2c1b1ebfaac28436ee3d2f5c2ba560d48ed81308d354c2c5306451350e09","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"(Cl_F + Cl_F - Cl_rear_s - (-0.019382002)*v_c)*(-0.28730434)","fitted_expression_hash":"4a8d2c1b1ebfaac28436ee3d2f5c2ba560d48ed81308d354c2c5306451350e09","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-safe-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:13:46.752712+00:00","diagnostic_metrics":{"mae":0.07535531300849606,"r2":0.9672326956262202},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-illusion-1L-safe-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..1748e66 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"(-Cd_F + Cl_err + Cl_rear_a)**2*0.2596029 - 1*1.0869426","deployment_expression_hash":"e52a26692a0f10b3b58db8ec4d78f0a9f2bba017cb3cb37f5fc77a07dd69f1df","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"(-Cd_F + Cl_err + Cl_rear_a)**2*0.2596029 - 1*1.0869426","fitted_expression_hash":"e52a26692a0f10b3b58db8ec4d78f0a9f2bba017cb3cb37f5fc77a07dd69f1df","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-safe-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:14:08.662852+00:00","diagnostic_metrics":{"mae":0.1567033526894439,"r2":0.37650470418131277},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-illusion-1L-safe-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..e72d7ba --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-sym-all-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"-0.67174566*Cl_F + v_s*(-0.015214683)","deployment_expression_hash":"6191b47c73ee15c0ea40e77f4b052db8553b51b098643cfc3cc6da7e4f08cbd9","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.67174566*Cl_F + v_s*(-0.015214683)","fitted_expression_hash":"6191b47c73ee15c0ea40e77f4b052db8553b51b098643cfc3cc6da7e4f08cbd9","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-sym-all-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T08:59:09.258203+00:00","diagnostic_metrics":{"mae":0.08162473260546461,"r2":0.9561744967757728},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-illusion-1L-sym-all-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..d93e5d0 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-illusion-1L-sym-all-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-illusion-1L-sym-all-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.868768630000000","deployment_expression_hash":"f9d1b90ad3d9076371ee6ea106e8b629f7c980ba4aed470da75cc50dd9668bd8","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.868768630000000","fitted_expression_hash":"f9d1b90ad3d9076371ee6ea106e8b629f7c980ba4aed470da75cc50dd9668bd8","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id rebuild-illusion-1L-sym-all-mapped-20260717 --data-root src/SR_analysis/data/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T08:59:30.979537+00:00","diagnostic_metrics":{"mae":0.2079947531684188,"r2":-3.788125368942019e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-illusion-1L-sym-all-mapped-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..d3350ce --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-raw-all-independent-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cd_T + Cl_F - (Cd_B + Cl_F/(Cl_B**2)))*(-0.19499622)","deployment_expression_hash":"c95e18d910c3fe2a8eb1a1fc8b5340a4f739077e15dff7f214848b22997bd5e1","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"(Cd_T + Cl_F - (Cd_B + Cl_F/(Cl_B**2)))*(-0.19499622)","fitted_expression_hash":"c95e18d910c3fe2a8eb1a1fc8b5340a4f739077e15dff7f214848b22997bd5e1","g_metadata":{"fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-raw-all-independent-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode independent --seed 0 --niterations 40","created_at":"2026-07-17T08:55:26.239317+00:00","diagnostic_metrics":{"mae":0.20011465156730698,"r2":0.965032055879422},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":197,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"independent"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-karman-re100-raw-all-independent-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..474d8c9 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-raw-all-independent-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-raw-all-independent-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-Cl_F + (Cd_F + Cl_F)*0.24044888 - 1*4.615575","deployment_expression_hash":"6e9010f04dca6917a6180880dc6b72b927a141d574e722f4439e138d86b36fad","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-Cl_F + (Cd_F + Cl_F)*0.24044888 - 1*4.615575","fitted_expression_hash":"6e9010f04dca6917a6180880dc6b72b927a141d574e722f4439e138d86b36fad","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-raw-all-independent-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode independent --seed 0 --niterations 40","created_at":"2026-07-17T08:55:43.156131+00:00","diagnostic_metrics":{"mae":0.21806554200937794,"r2":0.9852900556852973},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":197,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"independent"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-karman-re100-raw-all-independent-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..8b21bc2 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-reduced-all-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.6056067)/Cl_diff","deployment_expression_hash":"51ef0ab679373c3be5e4dad7c5c57ec6b64a601c43fd3d9fb702d963d6997980","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.6056067)/Cl_diff","fitted_expression_hash":"51ef0ab679373c3be5e4dad7c5c57ec6b64a601c43fd3d9fb702d963d6997980","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-reduced-all-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:06:43.741301+00:00","diagnostic_metrics":{"mae":0.5393869470497098,"r2":0.7577038726525279},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-karman-re100-reduced-all-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..b47bde9 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-reduced-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-reduced-all-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-Cl_tot - 0.48142132*(Cd_rear*Cl_tot + Cl_diff)","deployment_expression_hash":"f7f4a7d7fa20da81e9b971255f368b8fb5f3a826668ebcd3ecedd96ca2526cc1","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-Cl_tot - 0.48142132*(Cd_rear*Cl_tot + Cl_diff)","fitted_expression_hash":"f7f4a7d7fa20da81e9b971255f368b8fb5f3a826668ebcd3ecedd96ca2526cc1","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-reduced-all-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:07:06.039192+00:00","diagnostic_metrics":{"mae":1.2438189362755026,"r2":0.4129558323645751},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-karman-re100-reduced-all-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..0c32f48 --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-safe-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cd_rear_a + (0.0023709254716225*Cl_rear_a**2)*v_s)*(-0.40304103)","deployment_expression_hash":"f3de01e361569e512db37dc82e8c6ca812761a658909aa0d0c740137d98de7de","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(Cd_rear_a + (0.0023709254716225*Cl_rear_a**2)*v_s)*(-0.40304103)","fitted_expression_hash":"f3de01e361569e512db37dc82e8c6ca812761a658909aa0d0c740137d98de7de","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-safe-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:12:27.183787+00:00","diagnostic_metrics":{"mae":0.16357562861218297,"r2":0.9783780696184516},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-karman-re100-safe-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..25da0bb --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-safe-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-Cl_rear_a + (Cd_rear_s + Cl_F*Cl_rear_a)*(-0.16505978)","deployment_expression_hash":"fb695b9d0c60183a3abe0ac2cabaa8de1aff1d41fbba15883ccc81a2bd32b5a1","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"-Cl_rear_a + (Cd_rear_s + Cl_F*Cl_rear_a)*(-0.16505978)","fitted_expression_hash":"fb695b9d0c60183a3abe0ac2cabaa8de1aff1d41fbba15883ccc81a2bd32b5a1","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-safe-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T09:12:48.791413+00:00","diagnostic_metrics":{"mae":0.3848153189760414,"r2":0.9434366249143291},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-karman-re100-safe-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..686e56b --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-sym-all-mapped-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cd_rear_a + Cl_F*Cl_rear_a/(-12.924667 + u_s/Cl_rear_a))*(-0.37679496)","deployment_expression_hash":"d89687c393fc91f7299f9b93077afd323b109ad39d1db8d1643a8ed7dbf294c0","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"(Cd_rear_a + Cl_F*Cl_rear_a/(-12.924667 + u_s/Cl_rear_a))*(-0.37679496)","fitted_expression_hash":"d89687c393fc91f7299f9b93077afd323b109ad39d1db8d1643a8ed7dbf294c0","g_metadata":{"fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-sym-all-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T08:56:39.320954+00:00","diagnostic_metrics":{"mae":0.1659532668252007,"r2":0.9772105120115346},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"rebuild-karman-re100-sym-all-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..8d2ff9c --- /dev/null +++ b/src/SR_analysis/results/runs/rebuild-karman-re100-sym-all-mapped-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"rebuild-karman-re100-sym-all-mapped-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"Cl_F/(-0.0232808913737929*Cd_rear_a**2 - 1.0119004) - Cl_rear_a","deployment_expression_hash":"142dfd1f24ba9a14de07adc296ed51977bcf5f7c3410e51879bfa57d91068b24","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cl_F/(-0.0232808913737929*Cd_rear_a**2 - 1.0119004) - Cl_rear_a","fitted_expression_hash":"142dfd1f24ba9a14de07adc296ed51977bcf5f7c3410e51879bfa57d91068b24","g_metadata":{"fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id rebuild-karman-re100-sym-all-mapped-20260717 --data-root src/SR_analysis/data/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 40","created_at":"2026-07-17T08:56:59.872404+00:00","diagnostic_metrics":{"mae":0.41810900878725576,"r2":0.9354763910184829},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197,"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"rebuild-karman-re100-sym-all-mapped-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/audit_report.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/audit_report.json new file mode 100644 index 0000000..1eadadc --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_0.75L/config.json","sha256":"7fa56b93e89693b4a3a7ea410e07f472227ff05d5ed860daba3520f3af10868d"},{"kind":"npz","path":"data/illusion/illusion_0.75L/controlled.npz","sha256":"7c03259e77449c3a612aee2fce38d2687f93af3afe52b55017e603e262e70853"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/manifest.json","sha256":"874173fbaf327de137869f19d580b57b6398cab314e777b1ca47e7ecf253e93d"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/norm.json","sha256":"37a81b4a3f6b93c60566c7d0e57431b1c87edb0fca5ef2af85cd13e2bfa52ad9"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/result.json","sha256":"bf9181c368385fab396c6039da806db4f8c3643fd7b279f653fdb8e34fe109ef"},{"kind":"npz","path":"data/illusion/illusion_0.75L/target.npz","sha256":"dd83f7f5b29fd9aec95bed48c4dd2d7069053f02d09901224e7d9f0b086fb25f"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/target_harmonics.json","sha256":"62d9c62319e63444f2a28c2a65d19a6e621ab3c955ac243463463cb3812897cc"},{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"2b338c40bf175af670045c3682173d94939a4429120ce6fff92c49c114c49561"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"f9e993799830f1bcd1e92d81043d3e197bd9f3674a0bcf88e3e17f6d8db57f98"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"196c215cfdb2984dd0456c22a2a5a4aa5fb9bc78187a04cf73d89d6a25fe6b9d"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"24624e538c2a9f1e26c701a1299d0668b1d1109f29774ca683306bd97346052b"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"aeefdf0f010b90bd94099b26e187f791440ef40c9b6a477fb3c021b108e2f4a1"},{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"7eedb82583858b2b001bae5e1bb8a176dbe0c9aadbb43464fff705893de9df21"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"c6def2b8e406d15e2b6c55ea961a26925f5ee2d6e4079a1cb0f02b60e1e8f384"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"e6dc236a6980621f8b8f8626351e00dba8c6fd78f26a1696d3036cd7974f8c09"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"3dfc0bc3bf0099b198ca9d109e139d9591ee2d3f967c233964230e56a2299f9b"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"b2b9c3af7ee5069519033a58cbd414f0b57cc07266578e32c4bce28913c6691a"},{"kind":"metadata","path":"data/karman/karman_re200/config.json","sha256":"198bf1edcbb99254292b3768782dfc5ff381697552ffc522b1d26c9d250735b1"},{"kind":"npz","path":"data/karman/karman_re200/controlled.npz","sha256":"c58337e43aaa89d68662df69971960c4b0d0653bc3e403b14d8e808a9c94e924"},{"kind":"metadata","path":"data/karman/karman_re200/manifest.json","sha256":"82c73056ae0bc6ef87e2f4abcb3fda8d8130ad18285725f209b20b5501797aab"},{"kind":"metadata","path":"data/karman/karman_re200/norm.json","sha256":"18937021022f3326a4ad3fb710b232a6dc1c67d805547dd44a1b8b99b5438e0a"},{"kind":"metadata","path":"data/karman/karman_re200/result.json","sha256":"a4fa4a754ed322ad93de36dfc2fd23980da5b1b2fef92015aedcdcce35653496"},{"kind":"npz","path":"data/karman/karman_re200/target.npz","sha256":"278236860c3b95186514484930a4c29cbcb6be63d3fba7e2c3e99b6e6d3a08b4"},{"kind":"npz","path":"data/karman/karman_re200/uncontrolled.npz","sha256":"aa9c61e56665b9eaa1105d472b6cd3d787a9cf0d77f244e9c9f297f21c12aa6f"},{"kind":"metadata","path":"data/karman/karman_re400/config.json","sha256":"9fde1c9c73e77a3e84c17ab8e0c2d43c314a51afc5e984d2c98304588ef71c2d"},{"kind":"npz","path":"data/karman/karman_re400/controlled.npz","sha256":"69618c04c9398ef17ae3b606ce0971752999b49f1c3e89034809d5bc283a34e5"},{"kind":"metadata","path":"data/karman/karman_re400/manifest.json","sha256":"93be7fc9a938fc9851e29b1fb136bc1a520006eb2e766b5398408bf5238f75f6"},{"kind":"metadata","path":"data/karman/karman_re400/norm.json","sha256":"b86dbb27e04f7ac58b9cbc9cb92ade1143f3c73261ff2bb30ef9e53d44d021d9"},{"kind":"metadata","path":"data/karman/karman_re400/result.json","sha256":"57e06c646250b4109d3d5d31b55a3e691eba9be1169c6565676a532b19176c07"},{"kind":"npz","path":"data/karman/karman_re400/target.npz","sha256":"fdd661b3ffec39c8fc85d59b95cac5f26bfdae2cd02ba4627358574c544630ea"},{"kind":"npz","path":"data/karman/karman_re400/uncontrolled.npz","sha256":"0adf1b648248e7e5a46d7376cae629867fc377f020932efae0dfb0e98388bb3a"},{"kind":"metadata","path":"data/karman/karman_re50/config.json","sha256":"70a19fa37f72e95dae47b1bd69fb984885f6df7e6506ac117f5718ab77a01c51"},{"kind":"npz","path":"data/karman/karman_re50/controlled.npz","sha256":"72d6625cb2f83a9fc3c3c81e28cde3c380eb120632b3e93ebe5d5f10b2c0f459"},{"kind":"metadata","path":"data/karman/karman_re50/manifest.json","sha256":"de05541804cd9bdca37c95d2d0f0dc2486526f5f2673da82936d60e6302e03e6"},{"kind":"metadata","path":"data/karman/karman_re50/norm.json","sha256":"05a8d8ffc97ca52143252ffed4df5227ffd18e65e06a5eb7d9d620670f0e86b4"},{"kind":"metadata","path":"data/karman/karman_re50/result.json","sha256":"19ee6bf1b6751a61334802057700a2ea065436c9b589537a395840fc935c7727"},{"kind":"npz","path":"data/karman/karman_re50/target.npz","sha256":"9c679f147f45e76aaf7d05cc78c4fcd3d9d6448796ec6cbf40156714803bf726"},{"kind":"npz","path":"data/karman/karman_re50/uncontrolled.npz","sha256":"b308c19dd75b9c70b260d428b0a97796ca03880484a91fde5405ed42f5f47f16"},{"kind":"formula","path":"results/formulas/illusion_1L_front.json","sha256":"e9e5a27f2ae1b3a8afc31e461f876a4a8d266021606455035e39ba4d1421d004"},{"kind":"formula","path":"results/formulas/illusion_1L_rear_shared_upper.json","sha256":"d997f9d803d2dd2d320f943d65ea9ca32c02c3000fea5f779b006b17054836f7"},{"kind":"telemetry","path":"results/telemetry/illusion_1L__pysr__f-b097927baeb7__si-600.npz","sha256":"ba29ae525161d33a01c373880615dcf5e6428aa27087b3e2bb55d5f47182f406"},{"kind":"validation","path":"results/validations/illusion_1L__pysr__f-b097927baeb7__si-600.json","sha256":"739a8e211825cd20c6e2d7439280a969d7dfd8d5ee847df97a7f23bee636aa68"}],"data_run_id":"round1-legacy-v2-20260716","errors":[],"generated_at":"2026-07-16T17:19:00.084943+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"round1-legacy-v2-20260716-illusion-1L","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":46,"candidate_count":3,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/candidate_registry.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/candidate_registry.json new file mode 100644 index 0000000..9d4dd13 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"round1-legacy-v2-20260716-illusion-1L-per-scene-front_odd-anchor-upper","path":"results/formulas/illusion_1L_front.json","run_id":"round1-legacy-v2-20260716-illusion-1L","sha256":"e9e5a27f2ae1b3a8afc31e461f876a4a8d266021606455035e39ba4d1421d004","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-illusion-1L-per-scene-rear_shared-anchor-upper","path":"results/formulas/illusion_1L_rear_shared_upper.json","run_id":"round1-legacy-v2-20260716-illusion-1L","sha256":"d997f9d803d2dd2d320f943d65ea9ca32c02c3000fea5f779b006b17054836f7","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-illusion-1L-illusion_1L__pysr__f-b097927baeb7__si-600","path":"results/validations/illusion_1L__pysr__f-b097927baeb7__si-600.json","run_id":"round1-legacy-v2-20260716-illusion-1L","sha256":"739a8e211825cd20c6e2d7439280a969d7dfd8d5ee847df97a7f23bee636aa68","status":"diagnostic_candidate"}],"run_id":"round1-legacy-v2-20260716-illusion-1L","schema_version":"sr-candidate-registry-v1","status":"diagnostic_candidate"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_front.json new file mode 100644 index 0000000..88a3954 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-1L-per-scene-front_odd-anchor-upper","deployment_expression":"(du_a_dt + u_a)*0.011988904","deployment_expression_hash":"3147bf8a288cb16321ac5e89e6cef7007772ecdeb945d7fdc1ed3c877e0035c6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"(du_a_dt + u_a)*0.011988904","fitted_expression_hash":"3147bf8a288cb16321ac5e89e6cef7007772ecdeb945d7fdc1ed3c877e0035c6","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"1476ae06718b61e98126d3d9b5f3c7349bf28a47a194dda1d9c23b7456003981","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.32791055573604966,"r2":0.5250044985778324},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-illusion-1L","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..a5f5c6a --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-1L-per-scene-rear_shared-anchor-upper","deployment_expression":"dCl_tot_dt*(-0.11239353) - 0.8703797","deployment_expression_hash":"dfd39dba0ec7b2fe1caf6d22fe0a3903e46ff38e8a3492e6490eab4bba49d414","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"dCl_tot_dt*(-0.11239353) - 0.8703797","fitted_expression_hash":"dfd39dba0ec7b2fe1caf6d22fe0a3903e46ff38e8a3492e6490eab4bba49d414","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"1476ae06718b61e98126d3d9b5f3c7349bf28a47a194dda1d9c23b7456003981","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.18570260769465913,"r2":0.2876761956733701},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-illusion-1L","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/validations/illusion_1L__pysr__f-b097927baeb7__si-600.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/validations/illusion_1L__pysr__f-b097927baeb7__si-600.json new file mode 100644 index 0000000..e3c487c --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/validations/illusion_1L__pysr__f-b097927baeb7__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.6380282577739675,-0.6653395313105055,1.0754198686894945],"min":[-0.6362620663433977,-1.075946305761841,0.664813094238159]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.006380282577739676,-0.006653395313105055,0.010754198686894945],"min":[-0.006362620663433976,-0.01075946305761841,0.006648130942381591]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-illusion-1L-illusion_1L__pysr__f-b097927baeb7__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-16T16:22:08.427693+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"14d6df9cf1933beab520084e422e4898cb5deda4681365bf76dd7278aa83b45e"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"b097927baeb72207600e5be5db63dcb69271def2a8f00cba6d362483d063cc8b","formula_hashes":{"front_deployment_expression":"3147bf8a288cb16321ac5e89e6cef7007772ecdeb945d7fdc1ed3c877e0035c6","front_source":"e9e5a27f2ae1b3a8afc31e461f876a4a8d266021606455035e39ba4d1421d004","pair":"b097927baeb72207600e5be5db63dcb69271def2a8f00cba6d362483d063cc8b","rear_deployment_expression":"dfd39dba0ec7b2fe1caf6d22fe0a3903e46ff38e8a3492e6490eab4bba49d414","rear_source":"d997f9d803d2dd2d320f943d65ea9ca32c02c3000fea5f779b006b17054836f7"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-9,"similarity":0.9727256775475798},"lag":-9,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9771196958091524,"1":0.9701417810930353,"2":0.9895184983809789,"3":0.9501474671479728,"4":0.97812852760156,"5":0.9712980952527788},"tail":{"lag":-9,"n_samples":72,"similarity":0.9727256775475798}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/formulas/illusion_1L_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-illusion-1L","created_at":"2026-07-16T16:22:08.427665+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"5d35295f8ad573e6f16a5939e9273a748a38087a9210ed8a711ebb151ab747d7","run_id":"round1-legacy-v2-20260716-illusion-1L","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-1L/telemetry/illusion_1L__pysr__f-b097927baeb7__si-600.npz","sha256":"ba29ae525161d33a01c373880615dcf5e6428aa27087b3e2bb55d5f47182f406","telemetry_hash":"ba29ae525161d33a01c373880615dcf5e6428aa27087b3e2bb55d5f47182f406"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/audit_report.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/audit_report.json new file mode 100644 index 0000000..420b721 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_0.75L/config.json","sha256":"7fa56b93e89693b4a3a7ea410e07f472227ff05d5ed860daba3520f3af10868d"},{"kind":"npz","path":"data/illusion/illusion_0.75L/controlled.npz","sha256":"7c03259e77449c3a612aee2fce38d2687f93af3afe52b55017e603e262e70853"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/manifest.json","sha256":"874173fbaf327de137869f19d580b57b6398cab314e777b1ca47e7ecf253e93d"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/norm.json","sha256":"37a81b4a3f6b93c60566c7d0e57431b1c87edb0fca5ef2af85cd13e2bfa52ad9"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/result.json","sha256":"bf9181c368385fab396c6039da806db4f8c3643fd7b279f653fdb8e34fe109ef"},{"kind":"npz","path":"data/illusion/illusion_0.75L/target.npz","sha256":"dd83f7f5b29fd9aec95bed48c4dd2d7069053f02d09901224e7d9f0b086fb25f"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/target_harmonics.json","sha256":"62d9c62319e63444f2a28c2a65d19a6e621ab3c955ac243463463cb3812897cc"},{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"2b338c40bf175af670045c3682173d94939a4429120ce6fff92c49c114c49561"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"f9e993799830f1bcd1e92d81043d3e197bd9f3674a0bcf88e3e17f6d8db57f98"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"196c215cfdb2984dd0456c22a2a5a4aa5fb9bc78187a04cf73d89d6a25fe6b9d"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"24624e538c2a9f1e26c701a1299d0668b1d1109f29774ca683306bd97346052b"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"aeefdf0f010b90bd94099b26e187f791440ef40c9b6a477fb3c021b108e2f4a1"},{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"7eedb82583858b2b001bae5e1bb8a176dbe0c9aadbb43464fff705893de9df21"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"c6def2b8e406d15e2b6c55ea961a26925f5ee2d6e4079a1cb0f02b60e1e8f384"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"e6dc236a6980621f8b8f8626351e00dba8c6fd78f26a1696d3036cd7974f8c09"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"3dfc0bc3bf0099b198ca9d109e139d9591ee2d3f967c233964230e56a2299f9b"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"b2b9c3af7ee5069519033a58cbd414f0b57cc07266578e32c4bce28913c6691a"},{"kind":"metadata","path":"data/karman/karman_re200/config.json","sha256":"198bf1edcbb99254292b3768782dfc5ff381697552ffc522b1d26c9d250735b1"},{"kind":"npz","path":"data/karman/karman_re200/controlled.npz","sha256":"c58337e43aaa89d68662df69971960c4b0d0653bc3e403b14d8e808a9c94e924"},{"kind":"metadata","path":"data/karman/karman_re200/manifest.json","sha256":"82c73056ae0bc6ef87e2f4abcb3fda8d8130ad18285725f209b20b5501797aab"},{"kind":"metadata","path":"data/karman/karman_re200/norm.json","sha256":"18937021022f3326a4ad3fb710b232a6dc1c67d805547dd44a1b8b99b5438e0a"},{"kind":"metadata","path":"data/karman/karman_re200/result.json","sha256":"a4fa4a754ed322ad93de36dfc2fd23980da5b1b2fef92015aedcdcce35653496"},{"kind":"npz","path":"data/karman/karman_re200/target.npz","sha256":"278236860c3b95186514484930a4c29cbcb6be63d3fba7e2c3e99b6e6d3a08b4"},{"kind":"npz","path":"data/karman/karman_re200/uncontrolled.npz","sha256":"aa9c61e56665b9eaa1105d472b6cd3d787a9cf0d77f244e9c9f297f21c12aa6f"},{"kind":"metadata","path":"data/karman/karman_re400/config.json","sha256":"9fde1c9c73e77a3e84c17ab8e0c2d43c314a51afc5e984d2c98304588ef71c2d"},{"kind":"npz","path":"data/karman/karman_re400/controlled.npz","sha256":"69618c04c9398ef17ae3b606ce0971752999b49f1c3e89034809d5bc283a34e5"},{"kind":"metadata","path":"data/karman/karman_re400/manifest.json","sha256":"93be7fc9a938fc9851e29b1fb136bc1a520006eb2e766b5398408bf5238f75f6"},{"kind":"metadata","path":"data/karman/karman_re400/norm.json","sha256":"b86dbb27e04f7ac58b9cbc9cb92ade1143f3c73261ff2bb30ef9e53d44d021d9"},{"kind":"metadata","path":"data/karman/karman_re400/result.json","sha256":"57e06c646250b4109d3d5d31b55a3e691eba9be1169c6565676a532b19176c07"},{"kind":"npz","path":"data/karman/karman_re400/target.npz","sha256":"fdd661b3ffec39c8fc85d59b95cac5f26bfdae2cd02ba4627358574c544630ea"},{"kind":"npz","path":"data/karman/karman_re400/uncontrolled.npz","sha256":"0adf1b648248e7e5a46d7376cae629867fc377f020932efae0dfb0e98388bb3a"},{"kind":"metadata","path":"data/karman/karman_re50/config.json","sha256":"70a19fa37f72e95dae47b1bd69fb984885f6df7e6506ac117f5718ab77a01c51"},{"kind":"npz","path":"data/karman/karman_re50/controlled.npz","sha256":"72d6625cb2f83a9fc3c3c81e28cde3c380eb120632b3e93ebe5d5f10b2c0f459"},{"kind":"metadata","path":"data/karman/karman_re50/manifest.json","sha256":"de05541804cd9bdca37c95d2d0f0dc2486526f5f2673da82936d60e6302e03e6"},{"kind":"metadata","path":"data/karman/karman_re50/norm.json","sha256":"05a8d8ffc97ca52143252ffed4df5227ffd18e65e06a5eb7d9d620670f0e86b4"},{"kind":"metadata","path":"data/karman/karman_re50/result.json","sha256":"19ee6bf1b6751a61334802057700a2ea065436c9b589537a395840fc935c7727"},{"kind":"npz","path":"data/karman/karman_re50/target.npz","sha256":"9c679f147f45e76aaf7d05cc78c4fcd3d9d6448796ec6cbf40156714803bf726"},{"kind":"npz","path":"data/karman/karman_re50/uncontrolled.npz","sha256":"b308c19dd75b9c70b260d428b0a97796ca03880484a91fde5405ed42f5f47f16"},{"kind":"formula","path":"results/formulas/joint_front.json","sha256":"395c2bf3cd49a30a6e17ee52b4d94746c5688009b82c6e29f67f5c369bd87d40"},{"kind":"formula","path":"results/formulas/joint_rear_shared_upper.json","sha256":"c7479706a985ada70ff8c915780d6da535a9a01c2380c15018eaa61f36e5c5b9"},{"kind":"telemetry","path":"results/telemetry/illusion_0p75L__pysr__f-508b04750c4f__si-400.npz","sha256":"9bf97173a6bdf4d99008b0d9503ff2b40ec266a8f845bb773f11e6384430f36b"},{"kind":"telemetry","path":"results/telemetry/illusion_1L__pysr__f-508b04750c4f__si-600.npz","sha256":"4f4587e4c8c1cfd724ca347822703775f02097443840bd9784c49f3dd2173dfb"},{"kind":"validation","path":"results/validations/illusion_0p75L__pysr__f-508b04750c4f__si-400.json","sha256":"73b8004324802a5ea72f04c438d57adde12bfe28a6bab32124fae733bbc7033c"},{"kind":"validation","path":"results/validations/illusion_1L__pysr__f-508b04750c4f__si-600.json","sha256":"ae6c6b66ee29faba7cc6c6605ae1844e4c6031a3fb8d9b1e1fb95dfc5312a671"}],"data_run_id":"round1-legacy-v2-20260716","errors":[],"generated_at":"2026-07-16T17:19:00.207703+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"round1-legacy-v2-20260716-illusion-joint-audited","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":48,"candidate_count":4,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/candidate_registry.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/candidate_registry.json new file mode 100644 index 0000000..3c313a9 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-joint-front_odd-anchor-upper","path":"results/formulas/joint_front.json","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sha256":"395c2bf3cd49a30a6e17ee52b4d94746c5688009b82c6e29f67f5c369bd87d40","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-joint-rear_shared-anchor-upper","path":"results/formulas/joint_rear_shared_upper.json","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sha256":"c7479706a985ada70ff8c915780d6da535a9a01c2380c15018eaa61f36e5c5b9","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-illusion_0p75L__pysr__f-508b04750c4f__si-400","path":"results/validations/illusion_0p75L__pysr__f-508b04750c4f__si-400.json","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sha256":"73b8004324802a5ea72f04c438d57adde12bfe28a6bab32124fae733bbc7033c","status":"rejected"},{"artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-illusion_1L__pysr__f-508b04750c4f__si-600","path":"results/validations/illusion_1L__pysr__f-508b04750c4f__si-600.json","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sha256":"ae6c6b66ee29faba7cc6c6605ae1844e4c6031a3fb8d9b1e1fb95dfc5312a671","status":"rejected"}],"run_id":"round1-legacy-v2-20260716-illusion-joint-audited","schema_version":"sr-candidate-registry-v1","status":"diagnostic_candidate"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_front.json new file mode 100644 index 0000000..97d0691 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-joint-front_odd-anchor-upper","deployment_expression":"dCd_err_dt*dCl_err_dt","deployment_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"dCd_err_dt*dCl_err_dt","fitted_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.7834719481156367,"r2":0.07215578852174154},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..d526776 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-joint-rear_shared-anchor-upper","deployment_expression":"mu_Cl_diff * (dCl_tot_dt + 8.9053)","deployment_expression_hash":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"38.046726/(Cd_tot*(-Cl_tot + dCl_tot_dt) + Cd_tot/mu_Cl_diff)","fitted_expression_hash":"8c152e60980b2806ca8002595c78e531c5ddfa1c967cbf965ae2ca9afd29e226","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.29021575138956734,"r2":0.5538396923320512},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_0p75L__pysr__f-508b04750c4f__si-400.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_0p75L__pysr__f-508b04750c4f__si-400.json new file mode 100644 index 0000000..769cf7e --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_0p75L__pysr__f-508b04750c4f__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-illusion_0p75L__pysr__f-508b04750c4f__si-400","completed_steps":172,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"04d916f83c807cc6d505839d48e2fcebf1b09b44e2b71c64a017c666c5607aee","created_utc":"2026-07-16T17:09:40.857963+00:00","dt_c":0.2,"exception_type":"FloatingPointError","failed_step":172,"formula_hash":"508b04750c4fe88e97ed4bd625be7c55ca168f30622884d165c0ce01da621f1d","formula_hashes":{"front_deployment_expression":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","front_source":"395c2bf3cd49a30a6e17ee52b4d94746c5688009b82c6e29f67f5c369bd87d40","pair":"508b04750c4fe88e97ed4bd625be7c55ca168f30622884d165c0ce01da621f1d","rear_deployment_expression":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","rear_source":"c7479706a985ada70ff8c915780d6da535a9a01c2380c15018eaa61f36e5c5b9"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-illusion-joint-audited","created_at":"2026-07-16T17:09:40.857963+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"8b41c29de98a6e0c78fda0f080ee3b2fc256190972985ee9deb18140dd473648","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/telemetry/illusion_0p75L__pysr__f-508b04750c4f__si-400.npz","sha256":"9bf97173a6bdf4d99008b0d9503ff2b40ec266a8f845bb773f11e6384430f36b","telemetry_hash":"9bf97173a6bdf4d99008b0d9503ff2b40ec266a8f845bb773f11e6384430f36b"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_1L__pysr__f-508b04750c4f__si-600.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_1L__pysr__f-508b04750c4f__si-600.json new file mode 100644 index 0000000..14cb8df --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/validations/illusion_1L__pysr__f-508b04750c4f__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-illusion-joint-audited-illusion_1L__pysr__f-508b04750c4f__si-600","completed_steps":104,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-16T17:11:53.668371+00:00","dt_c":0.3,"exception_type":"FloatingPointError","failed_step":104,"formula_hash":"508b04750c4fe88e97ed4bd625be7c55ca168f30622884d165c0ce01da621f1d","formula_hashes":{"front_deployment_expression":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","front_source":"395c2bf3cd49a30a6e17ee52b4d94746c5688009b82c6e29f67f5c369bd87d40","pair":"508b04750c4fe88e97ed4bd625be7c55ca168f30622884d165c0ce01da621f1d","rear_deployment_expression":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","rear_source":"c7479706a985ada70ff8c915780d6da535a9a01c2380c15018eaa61f36e5c5b9"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-illusion-joint-audited","created_at":"2026-07-16T17:11:53.668371+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"dbbfaf4bc1640d45bddb91088b05343fe085421e3c8fb0896016f8fbc36b98de","run_id":"round1-legacy-v2-20260716-illusion-joint-audited","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-audited/telemetry/illusion_1L__pysr__f-508b04750c4f__si-600.npz","sha256":"4f4587e4c8c1cfd724ca347822703775f02097443840bd9784c49f3dd2173dfb","telemetry_hash":"4f4587e4c8c1cfd724ca347822703775f02097443840bd9784c49f3dd2173dfb"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_0p75L__pysr__f-44891e22e744__si-400.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_0p75L__pysr__f-44891e22e744__si-400.json new file mode 100644 index 0000000..31b8b3e --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_0p75L__pysr__f-44891e22e744__si-400.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-illusion-joint-failure-record-illusion_0p75L__pysr__f-44891e22e744__si-400","completed_steps":175,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.2,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_075L_2U_400S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":400,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":0.75,"target_force_slice":[0,2],"target_radius":0.75,"target_radius_lattice":15.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"04d916f83c807cc6d505839d48e2fcebf1b09b44e2b71c64a017c666c5607aee","created_utc":"2026-07-16T17:01:36.771268+00:00","dt_c":0.2,"exception_type":"FloatingPointError","failed_step":175,"formula_hash":"44891e22e744640c5ac6f8d5ffbf183b3caf8041b6f49d7bab7e4368d2ea7cbb","formula_hashes":{"front_deployment_expression":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","front_source":"47a1164f8479dfac9c44bf83c745c631a839455103f831dba5a3fb6b2bc6d424","pair":"44891e22e744640c5ac6f8d5ffbf183b3caf8041b6f49d7bab7e4368d2ea7cbb","rear_deployment_expression":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","rear_source":"85baab3641841605d82393765e8736d4bfd7a46e9d28f75e3049d6e48047f77a"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-illusion-joint-failure-record","created_at":"2026-07-16T17:01:36.771268+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"3c0f78317f9b877bc0096e160fddd9fcca4e5b4be157178b86d007733cb4d62c","run_id":"round1-legacy-v2-20260716-illusion-joint-failure-record","sample_interval":400,"scene":"illusion_0.75L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":400,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/telemetry/illusion_0p75L__pysr__f-44891e22e744__si-400.npz","sha256":"9405d02d9214e10e2b10f9c20179703f148756f9d3f37f2b21250bfc1993e932","telemetry_hash":"9405d02d9214e10e2b10f9c20179703f148756f9d3f37f2b21250bfc1993e932"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_1L__pysr__f-44891e22e744__si-600.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_1L__pysr__f-44891e22e744__si-600.json new file mode 100644 index 0000000..e1bb683 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/validations/illusion_1L__pysr__f-44891e22e744__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-illusion-joint-failure-record-illusion_1L__pysr__f-44891e22e744__si-600","completed_steps":134,"config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-16T17:03:52.922914+00:00","dt_c":0.3,"exception_type":"FloatingPointError","failed_step":134,"formula_hash":"44891e22e744640c5ac6f8d5ffbf183b3caf8041b6f49d7bab7e4368d2ea7cbb","formula_hashes":{"front_deployment_expression":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","front_source":"47a1164f8479dfac9c44bf83c745c631a839455103f831dba5a3fb6b2bc6d424","pair":"44891e22e744640c5ac6f8d5ffbf183b3caf8041b6f49d7bab7e4368d2ea7cbb","rear_deployment_expression":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","rear_source":"85baab3641841605d82393765e8736d4bfd7a46e9d28f75e3049d6e48047f77a"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group illusion_0.75L,illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-illusion-joint-failure-record","created_at":"2026-07-16T17:03:52.922914+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"c887340e90da6a2d48f4c1a89ab8797b05a738216aa31b457dead3db70d3ca31","run_id":"round1-legacy-v2-20260716-illusion-joint-failure-record","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-failure-record/telemetry/illusion_1L__pysr__f-44891e22e744__si-600.npz","sha256":"e1a667d81c50ac2d25283c248f03ade8acd13b73c98fe6bc49ecda6b21c62d84","telemetry_hash":"e1a667d81c50ac2d25283c248f03ade8acd13b73c98fe6bc49ecda6b21c62d84"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_front.json new file mode 100644 index 0000000..a4d95c6 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-safe-joint-front_odd-anchor-upper","deployment_expression":"dCd_err_dt*dCl_err_dt","deployment_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"dCd_err_dt*dCl_err_dt","fitted_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.7834719481156367,"r2":0.07215578852174154},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-illusion-joint-safe","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..71b9a86 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint-safe/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-safe-joint-rear_shared-anchor-upper","deployment_expression":"mu_Cl_diff * (dCl_tot_dt + 8.9053)","deployment_expression_hash":"f343bebafe2b2508a80eddaecfd46edb5dcf9d1f0191e372529077530b81f50a","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"38.046726/(Cd_tot*(-Cl_tot + dCl_tot_dt) + Cd_tot/mu_Cl_diff)","fitted_expression_hash":"8c152e60980b2806ca8002595c78e531c5ddfa1c967cbf965ae2ca9afd29e226","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.29021575138956734,"r2":0.5538396923320512},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-illusion-joint-safe","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_front.json new file mode 100644 index 0000000..30b4c82 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-joint-front_odd-anchor-upper","deployment_expression":"dCd_err_dt*dCl_err_dt","deployment_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"dCd_err_dt*dCl_err_dt","fitted_expression_hash":"31af16bd3510fd399c1c9cfbc618fd816089f00d53ebb20a71bf384e36afca6e","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.7834719481156367,"r2":0.07215578852174154},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-illusion-joint","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..a8037dc --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-illusion-joint/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-illusion-joint-joint-rear_shared-anchor-upper","deployment_expression":"38.046726/(Cd_tot*(-Cl_tot + dCl_tot_dt) + Cd_tot/mu_Cl_diff)","deployment_expression_hash":"8c152e60980b2806ca8002595c78e531c5ddfa1c967cbf965ae2ca9afd29e226","dt_c_metadata":{"per_scene":{"illusion_0.75L":0.2,"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"38.046726/(Cd_tot*(-Cl_tot + dCl_tot_dt) + Cd_tot/mu_Cl_diff)","fitted_expression_hash":"8c152e60980b2806ca8002595c78e531c5ddfa1c967cbf965ae2ca9afd29e226","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"6bde2c6231eedf8822b87ce7d0dbe71b550c6e314cd5018f8cbd2e5952dbc47f","paths":{"illusion_0.75L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_0.75L/controlled.npz","illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_0.75L":"f37e78bf0dbaa96dd33a503ddc2bbf00156723c735446d713c5699aabac02bc0","illusion_1L":"b1ab16b9089547e2825d150dca5e9060d050691d5ac6f49991f68ac367113541"}},"fit":{"diagnostic_metrics":{"mae":0.29021575138956734,"r2":0.5538396923320512},"g_augmented":true,"mode":"joint","n_samples":788,"niterations":40,"scene_augmented_sample_counts":{"illusion_0.75L":394,"illusion_1L":394},"scene_sample_counts":{"illusion_0.75L":197,"illusion_1L":197},"seed":0,"smoke":false,"source_n_samples":394},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-illusion-joint","schema_version":"1.0","training_scenes":["illusion_0.75L","illusion_1L"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/audit_report.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/audit_report.json new file mode 100644 index 0000000..251f3ca --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_0.75L/config.json","sha256":"7fa56b93e89693b4a3a7ea410e07f472227ff05d5ed860daba3520f3af10868d"},{"kind":"npz","path":"data/illusion/illusion_0.75L/controlled.npz","sha256":"7c03259e77449c3a612aee2fce38d2687f93af3afe52b55017e603e262e70853"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/manifest.json","sha256":"874173fbaf327de137869f19d580b57b6398cab314e777b1ca47e7ecf253e93d"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/norm.json","sha256":"37a81b4a3f6b93c60566c7d0e57431b1c87edb0fca5ef2af85cd13e2bfa52ad9"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/result.json","sha256":"bf9181c368385fab396c6039da806db4f8c3643fd7b279f653fdb8e34fe109ef"},{"kind":"npz","path":"data/illusion/illusion_0.75L/target.npz","sha256":"dd83f7f5b29fd9aec95bed48c4dd2d7069053f02d09901224e7d9f0b086fb25f"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/target_harmonics.json","sha256":"62d9c62319e63444f2a28c2a65d19a6e621ab3c955ac243463463cb3812897cc"},{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"2b338c40bf175af670045c3682173d94939a4429120ce6fff92c49c114c49561"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"f9e993799830f1bcd1e92d81043d3e197bd9f3674a0bcf88e3e17f6d8db57f98"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"196c215cfdb2984dd0456c22a2a5a4aa5fb9bc78187a04cf73d89d6a25fe6b9d"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"24624e538c2a9f1e26c701a1299d0668b1d1109f29774ca683306bd97346052b"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"aeefdf0f010b90bd94099b26e187f791440ef40c9b6a477fb3c021b108e2f4a1"},{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"7eedb82583858b2b001bae5e1bb8a176dbe0c9aadbb43464fff705893de9df21"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"c6def2b8e406d15e2b6c55ea961a26925f5ee2d6e4079a1cb0f02b60e1e8f384"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"e6dc236a6980621f8b8f8626351e00dba8c6fd78f26a1696d3036cd7974f8c09"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"3dfc0bc3bf0099b198ca9d109e139d9591ee2d3f967c233964230e56a2299f9b"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"b2b9c3af7ee5069519033a58cbd414f0b57cc07266578e32c4bce28913c6691a"},{"kind":"metadata","path":"data/karman/karman_re200/config.json","sha256":"198bf1edcbb99254292b3768782dfc5ff381697552ffc522b1d26c9d250735b1"},{"kind":"npz","path":"data/karman/karman_re200/controlled.npz","sha256":"c58337e43aaa89d68662df69971960c4b0d0653bc3e403b14d8e808a9c94e924"},{"kind":"metadata","path":"data/karman/karman_re200/manifest.json","sha256":"82c73056ae0bc6ef87e2f4abcb3fda8d8130ad18285725f209b20b5501797aab"},{"kind":"metadata","path":"data/karman/karman_re200/norm.json","sha256":"18937021022f3326a4ad3fb710b232a6dc1c67d805547dd44a1b8b99b5438e0a"},{"kind":"metadata","path":"data/karman/karman_re200/result.json","sha256":"a4fa4a754ed322ad93de36dfc2fd23980da5b1b2fef92015aedcdcce35653496"},{"kind":"npz","path":"data/karman/karman_re200/target.npz","sha256":"278236860c3b95186514484930a4c29cbcb6be63d3fba7e2c3e99b6e6d3a08b4"},{"kind":"npz","path":"data/karman/karman_re200/uncontrolled.npz","sha256":"aa9c61e56665b9eaa1105d472b6cd3d787a9cf0d77f244e9c9f297f21c12aa6f"},{"kind":"metadata","path":"data/karman/karman_re400/config.json","sha256":"9fde1c9c73e77a3e84c17ab8e0c2d43c314a51afc5e984d2c98304588ef71c2d"},{"kind":"npz","path":"data/karman/karman_re400/controlled.npz","sha256":"69618c04c9398ef17ae3b606ce0971752999b49f1c3e89034809d5bc283a34e5"},{"kind":"metadata","path":"data/karman/karman_re400/manifest.json","sha256":"93be7fc9a938fc9851e29b1fb136bc1a520006eb2e766b5398408bf5238f75f6"},{"kind":"metadata","path":"data/karman/karman_re400/norm.json","sha256":"b86dbb27e04f7ac58b9cbc9cb92ade1143f3c73261ff2bb30ef9e53d44d021d9"},{"kind":"metadata","path":"data/karman/karman_re400/result.json","sha256":"57e06c646250b4109d3d5d31b55a3e691eba9be1169c6565676a532b19176c07"},{"kind":"npz","path":"data/karman/karman_re400/target.npz","sha256":"fdd661b3ffec39c8fc85d59b95cac5f26bfdae2cd02ba4627358574c544630ea"},{"kind":"npz","path":"data/karman/karman_re400/uncontrolled.npz","sha256":"0adf1b648248e7e5a46d7376cae629867fc377f020932efae0dfb0e98388bb3a"},{"kind":"metadata","path":"data/karman/karman_re50/config.json","sha256":"70a19fa37f72e95dae47b1bd69fb984885f6df7e6506ac117f5718ab77a01c51"},{"kind":"npz","path":"data/karman/karman_re50/controlled.npz","sha256":"72d6625cb2f83a9fc3c3c81e28cde3c380eb120632b3e93ebe5d5f10b2c0f459"},{"kind":"metadata","path":"data/karman/karman_re50/manifest.json","sha256":"de05541804cd9bdca37c95d2d0f0dc2486526f5f2673da82936d60e6302e03e6"},{"kind":"metadata","path":"data/karman/karman_re50/norm.json","sha256":"05a8d8ffc97ca52143252ffed4df5227ffd18e65e06a5eb7d9d620670f0e86b4"},{"kind":"metadata","path":"data/karman/karman_re50/result.json","sha256":"19ee6bf1b6751a61334802057700a2ea065436c9b589537a395840fc935c7727"},{"kind":"npz","path":"data/karman/karman_re50/target.npz","sha256":"9c679f147f45e76aaf7d05cc78c4fcd3d9d6448796ec6cbf40156714803bf726"},{"kind":"npz","path":"data/karman/karman_re50/uncontrolled.npz","sha256":"b308c19dd75b9c70b260d428b0a97796ca03880484a91fde5405ed42f5f47f16"},{"kind":"formula","path":"results/formulas/joint_front.json","sha256":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968"},{"kind":"formula","path":"results/formulas/joint_rear_shared_upper.json","sha256":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81"},{"kind":"telemetry","path":"results/telemetry/karman_re100__pysr__f-d2b16c777e41__si-800.npz","sha256":"b67af1968864d03142a7f528f48ad16a8c8badd2058cbcade15c4101997b5341"},{"kind":"telemetry","path":"results/telemetry/karman_re200__pysr__f-d2b16c777e41__si-800.npz","sha256":"13435dcb6df73c82c98c329a43ceab596452764885648476e4e3ff08695713b2"},{"kind":"telemetry","path":"results/telemetry/karman_re400__pysr__f-d2b16c777e41__si-800.npz","sha256":"1d59d58c752aea8f6d99b0bdbb8e20fbc3bb695db7ebe73087988e47b260c5af"},{"kind":"telemetry","path":"results/telemetry/karman_re50__pysr__f-d2b16c777e41__si-800.npz","sha256":"2b7ed34da1415756c629dd475639f2f1c9c190776ba526876835cec1c0b53af3"},{"kind":"validation","path":"results/validations/karman_re100__pysr__f-d2b16c777e41__si-800.json","sha256":"aeae03ac98e42e4728dd8b15b7e052bd78693af52dee0202ec173d7f904d242d"},{"kind":"validation","path":"results/validations/karman_re200__pysr__f-d2b16c777e41__si-800.json","sha256":"297c74f2b52bc1de80bf8b341135a872168dbfdc2f3f846139d2a2f76760260f"},{"kind":"validation","path":"results/validations/karman_re400__pysr__f-d2b16c777e41__si-800.json","sha256":"983691c148329c7d75df819d65a55b82c8bb87d8473ccb7167e86e55b5db1597"},{"kind":"validation","path":"results/validations/karman_re50__pysr__f-d2b16c777e41__si-800.json","sha256":"6117d4fb35639557340f4d2b42515a0d0cf944de27b4021579595cf08d7dbe68"}],"data_run_id":"round1-legacy-v2-20260716","errors":[],"generated_at":"2026-07-16T17:19:00.193242+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"round1-legacy-v2-20260716-karman-joint","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":52,"candidate_count":6,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/candidate_registry.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/candidate_registry.json new file mode 100644 index 0000000..4a3acbb --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"round1-legacy-v2-20260716-karman-joint-joint-front_odd-anchor-upper","path":"results/formulas/joint_front.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-joint-joint-rear_shared-anchor-upper","path":"results/formulas/joint_rear_shared_upper.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re100__pysr__f-d2b16c777e41__si-800","path":"results/validations/karman_re100__pysr__f-d2b16c777e41__si-800.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"aeae03ac98e42e4728dd8b15b7e052bd78693af52dee0202ec173d7f904d242d","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re200__pysr__f-d2b16c777e41__si-800","path":"results/validations/karman_re200__pysr__f-d2b16c777e41__si-800.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"297c74f2b52bc1de80bf8b341135a872168dbfdc2f3f846139d2a2f76760260f","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re400__pysr__f-d2b16c777e41__si-800","path":"results/validations/karman_re400__pysr__f-d2b16c777e41__si-800.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"983691c148329c7d75df819d65a55b82c8bb87d8473ccb7167e86e55b5db1597","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re50__pysr__f-d2b16c777e41__si-800","path":"results/validations/karman_re50__pysr__f-d2b16c777e41__si-800.json","run_id":"round1-legacy-v2-20260716-karman-joint","sha256":"6117d4fb35639557340f4d2b42515a0d0cf944de27b4021579595cf08d7dbe68","status":"diagnostic_candidate"}],"run_id":"round1-legacy-v2-20260716-karman-joint","schema_version":"sr-candidate-registry-v1","status":"diagnostic_candidate"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json new file mode 100644 index 0000000..f549832 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-karman-joint-joint-front_odd-anchor-upper","deployment_expression":"Cl_tot*mu/(-0.053511776) - du_a_dt*mu_Cd_tot","deployment_expression_hash":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"Cl_tot*mu/(-0.053511776) - du_a_dt*mu_Cd_tot","fitted_expression_hash":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"a723f3b6d29db457455f857590f06721ce1834260fc11eb670d6a665455567d8","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"7e7f3da4adc721135dfda9bfa21b7f850a7fc1207c9348faae15f40a6a490c32","karman_re200":"a483ec4f7feaff30eaad472ecc44ce78ecf769ea5c539b8d641e155a73417227","karman_re400":"3e9f8f1d2e555ebbb0e1779b596d08ed641dbe7c7d22e76ff8bc074f52cb7841","karman_re50":"c20cf5306c3db026b6ae15af3170eeb7c89c030ab2144b50b161c0a24f3e7d00"}},"fit":{"diagnostic_metrics":{"mae":1.2831923716237206,"r2":0.35582248179889864},"g_augmented":true,"mode":"joint","n_samples":1576,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"smoke":false,"source_n_samples":788},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-karman-joint","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json new file mode 100644 index 0000000..390ed0d --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-karman-joint-joint-rear_shared-anchor-upper","deployment_expression":"-3.43056750000000","deployment_expression_hash":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","dt_c_metadata":{"per_scene":{"karman_re100":0.4,"karman_re200":0.4,"karman_re400":0.4,"karman_re50":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","mu","mu_u_a","mu_v_a","mu_Cd_tot","mu_Cl_diff"],"fitted_expression":"-3.43056750000000","fitted_expression_hash":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"a723f3b6d29db457455f857590f06721ce1834260fc11eb670d6a665455567d8","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/controlled.npz","karman_re200":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re200/controlled.npz","karman_re400":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re400/controlled.npz","karman_re50":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re50/controlled.npz"},"per_scene_hashes":{"karman_re100":"7e7f3da4adc721135dfda9bfa21b7f850a7fc1207c9348faae15f40a6a490c32","karman_re200":"a483ec4f7feaff30eaad472ecc44ce78ecf769ea5c539b8d641e155a73417227","karman_re400":"3e9f8f1d2e555ebbb0e1779b596d08ed641dbe7c7d22e76ff8bc074f52cb7841","karman_re50":"c20cf5306c3db026b6ae15af3170eeb7c89c030ab2144b50b161c0a24f3e7d00"}},"fit":{"diagnostic_metrics":{"mae":2.176017977075931,"r2":-1.7723222889287626e-10},"g_augmented":true,"mode":"joint","n_samples":1576,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394,"karman_re200":394,"karman_re400":394,"karman_re50":394},"scene_sample_counts":{"karman_re100":197,"karman_re200":197,"karman_re400":197,"karman_re50":197},"seed":0,"smoke":false,"source_n_samples":788},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-karman-joint","schema_version":"1.0","training_scenes":["karman_re50","karman_re100","karman_re200","karman_re400"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re100__pysr__f-d2b16c777e41__si-800.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re100__pysr__f-d2b16c777e41__si-800.json new file mode 100644 index 0000000..34a10dc --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re100__pysr__f-d2b16c777e41__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.3591195460177832,-3.4305675,3.4305675],"min":[-12.201844032359874,-3.4305675,3.4305675]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.013591195460177832,-0.034305675,0.034305675],"min":[-0.12201844032359875,-0.034305675,0.034305675]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re100__pysr__f-d2b16c777e41__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-16T16:34:03.780082+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2d75dffd7cf8788a2f5fccdbe2e1b6ea3f958731b39f98e647c32dea0398b4bd"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","formula_hashes":{"front_deployment_expression":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","front_source":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968","pair":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","rear_deployment_expression":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","rear_source":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":12,"similarity":0.8092264115189512},"lag":12,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.8389486064513525,"1":0.9141011452612777,"2":0.6981913447380066,"3":0.7625417606284222,"4":0.8942429522673289,"5":0.7473326597673198},"tail":{"lag":12,"n_samples":60,"similarity":0.8092264115189512}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_trained --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-karman-joint","created_at":"2026-07-16T16:34:03.780059+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"85058dfef33fc911454490be62f29f9d19466704b8eec441053ee379044e30f8","run_id":"round1-legacy-v2-20260716-karman-joint","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/telemetry/karman_re100__pysr__f-d2b16c777e41__si-800.npz","sha256":"b67af1968864d03142a7f528f48ad16a8c8badd2058cbcade15c4101997b5341","telemetry_hash":"b67af1968864d03142a7f528f48ad16a8c8badd2058cbcade15c4101997b5341"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re200__pysr__f-d2b16c777e41__si-800.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re200__pysr__f-d2b16c777e41__si-800.json new file mode 100644 index 0000000..8e98de0 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re200__pysr__f-d2b16c777e41__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.6203863864338413,-3.4305675,3.4305675],"min":[-1.6427800140095639,-3.4305675,3.4305675]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.016203863864338412,-0.034305675,0.034305675],"min":[-0.01642780014009564,-0.034305675,0.034305675]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re200__pysr__f-d2b16c777e41__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re200","mu":0.01,"n_objects_env":7,"nu":0.002,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":200,"re_d":100.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"28a6b32cb685515921fe0ef13d18115528e1c8ae14db2f9413bbf02a300ac997","created_utc":"2026-07-16T16:36:41.816646+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"de2d55178399ac10ad5b435311ba4a6802e5457d56282aa1a92bee2d3a173aeb"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","formula_hashes":{"front_deployment_expression":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","front_source":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968","pair":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","rear_deployment_expression":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","rear_source":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":5,"similarity":0.8542460241665443},"lag":5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.8625610788663228,"1":0.9402269681294759,"2":0.7880543331305185,"3":0.7298097154746452,"4":0.8900150934855143,"5":0.9148089559127888},"tail":{"lag":5,"n_samples":60,"similarity":0.8542460241665443}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_trained --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-karman-joint","created_at":"2026-07-16T16:36:41.816628+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"c87eb10c3bf03fafaf028a64318774293cd5b85e95b3cc9b94ebafafea4b32e1","run_id":"round1-legacy-v2-20260716-karman-joint","sample_interval":800,"scene":"karman_re200","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/telemetry/karman_re200__pysr__f-d2b16c777e41__si-800.npz","sha256":"13435dcb6df73c82c98c329a43ceab596452764885648476e4e3ff08695713b2","telemetry_hash":"13435dcb6df73c82c98c329a43ceab596452764885648476e4e3ff08695713b2"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re400__pysr__f-d2b16c777e41__si-800.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re400__pysr__f-d2b16c777e41__si-800.json new file mode 100644 index 0000000..984ad66 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re400__pysr__f-d2b16c777e41__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.581291394608373,-3.4305675,3.4305675],"min":[-0.586736423149763,-3.4305675,3.4305675]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.00581291394608373,-0.034305675,0.034305675],"min":[-0.005867364231497631,-0.034305675,0.034305675]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re400__pysr__f-d2b16c777e41__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re400","mu":0.005,"n_objects_env":7,"nu":0.001,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":400,"re_d":200.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"8d6e2f00a69486fd07b13ee9fccfabe3638ca41034d2987b4408b4f5fee30217","created_utc":"2026-07-16T16:39:19.304768+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"50614ada8669d947e5ce3a179b62f232eff7a48659b8937612eb90c19bd38ac5"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","formula_hashes":{"front_deployment_expression":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","front_source":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968","pair":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","rear_deployment_expression":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","rear_source":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":5,"similarity":0.8147387153223261},"lag":5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.8460744460423788,"1":0.9457543362708142,"2":0.7177880465984344,"3":0.596235987660475,"4":0.8454303999741872,"5":0.9371490753876666},"tail":{"lag":5,"n_samples":60,"similarity":0.8147387153223261}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_trained --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-karman-joint","created_at":"2026-07-16T16:39:19.304743+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"795941860d38993ae7d3d9643f19808cca71037bcc02dc5486d75af9271bb101","run_id":"round1-legacy-v2-20260716-karman-joint","sample_interval":800,"scene":"karman_re400","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/telemetry/karman_re400__pysr__f-d2b16c777e41__si-800.npz","sha256":"1d59d58c752aea8f6d99b0bdbb8e20fbc3bb695db7ebe73087988e47b260c5af","telemetry_hash":"1d59d58c752aea8f6d99b0bdbb8e20fbc3bb695db7ebe73087988e47b260c5af"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re50__pysr__f-d2b16c777e41__si-800.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re50__pysr__f-d2b16c777e41__si-800.json new file mode 100644 index 0000000..6cae8e5 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/validations/karman_re50__pysr__f-d2b16c777e41__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.0394021055488125,-3.4305675,3.4305675],"min":[-16.562939400626586,-3.4305675,3.4305675]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.010394021055488126,-0.034305675,0.034305675],"min":[-0.16562939400626586,-0.034305675,0.034305675]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-karman-joint-karman_re50__pysr__f-d2b16c777e41__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re50","mu":0.04,"n_objects_env":7,"nu":0.008,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":50,"re_d":25.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"35ab354e9c25bb771ba64276ae148d6f579144ffe0b0ab187510b651c2aa22b8","created_utc":"2026-07-16T16:31:26.963216+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"093f160d3b77ed085aece47b7cf71a3d2a542e030b2f4930e82529188c461b25"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","formula_hashes":{"front_deployment_expression":"6b35c2f1d16afca80960bc492188641ff5d8eb269496041cd25dc8b6b0a2e567","front_source":"7ebd543476ec47fc23cf8f303cd8d08810d51d355962d5eb0279b1f3868b7968","pair":"d2b16c777e41b656965ebb80965fddca77b717fcac323f8e26420ab6fca581cb","rear_deployment_expression":"ba731b18003d754605c483225d0c110ec1de2afe5b9756e773bfe4b2c76ddf9f","rear_source":"fb9465a380934aa1f4a59da042a700e889d106786713970423d60b126d0d0d81"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":6,"similarity":0.88385228309554},"lag":6,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9359687983989715,"1":0.9460507698842169,"2":0.8590314567089081,"3":0.8306668345505992,"4":0.9359015762805939,"5":0.79549426274995},"tail":{"lag":6,"n_samples":60,"similarity":0.88385228309554}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --group karman_trained --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/formulas/joint_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-karman-joint","created_at":"2026-07-16T16:31:26.963180+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"0f443e0497d4cbf7b2b18592d3c38ecbfa3b8cc1b07ceed17adc2701229f0dbf","run_id":"round1-legacy-v2-20260716-karman-joint","sample_interval":800,"scene":"karman_re50","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-joint/telemetry/karman_re50__pysr__f-d2b16c777e41__si-800.npz","sha256":"2b7ed34da1415756c629dd475639f2f1c9c190776ba526876835cec1c0b53af3","telemetry_hash":"2b7ed34da1415756c629dd475639f2f1c9c190776ba526876835cec1c0b53af3"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/audit_report.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/audit_report.json new file mode 100644 index 0000000..84aac0f --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_0.75L/config.json","sha256":"7fa56b93e89693b4a3a7ea410e07f472227ff05d5ed860daba3520f3af10868d"},{"kind":"npz","path":"data/illusion/illusion_0.75L/controlled.npz","sha256":"7c03259e77449c3a612aee2fce38d2687f93af3afe52b55017e603e262e70853"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/manifest.json","sha256":"874173fbaf327de137869f19d580b57b6398cab314e777b1ca47e7ecf253e93d"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/norm.json","sha256":"37a81b4a3f6b93c60566c7d0e57431b1c87edb0fca5ef2af85cd13e2bfa52ad9"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/result.json","sha256":"bf9181c368385fab396c6039da806db4f8c3643fd7b279f653fdb8e34fe109ef"},{"kind":"npz","path":"data/illusion/illusion_0.75L/target.npz","sha256":"dd83f7f5b29fd9aec95bed48c4dd2d7069053f02d09901224e7d9f0b086fb25f"},{"kind":"metadata","path":"data/illusion/illusion_0.75L/target_harmonics.json","sha256":"62d9c62319e63444f2a28c2a65d19a6e621ab3c955ac243463463cb3812897cc"},{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"2b338c40bf175af670045c3682173d94939a4429120ce6fff92c49c114c49561"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"f9e993799830f1bcd1e92d81043d3e197bd9f3674a0bcf88e3e17f6d8db57f98"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"196c215cfdb2984dd0456c22a2a5a4aa5fb9bc78187a04cf73d89d6a25fe6b9d"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"24624e538c2a9f1e26c701a1299d0668b1d1109f29774ca683306bd97346052b"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"aeefdf0f010b90bd94099b26e187f791440ef40c9b6a477fb3c021b108e2f4a1"},{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"7eedb82583858b2b001bae5e1bb8a176dbe0c9aadbb43464fff705893de9df21"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"c6def2b8e406d15e2b6c55ea961a26925f5ee2d6e4079a1cb0f02b60e1e8f384"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"e6dc236a6980621f8b8f8626351e00dba8c6fd78f26a1696d3036cd7974f8c09"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"3dfc0bc3bf0099b198ca9d109e139d9591ee2d3f967c233964230e56a2299f9b"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"b2b9c3af7ee5069519033a58cbd414f0b57cc07266578e32c4bce28913c6691a"},{"kind":"metadata","path":"data/karman/karman_re200/config.json","sha256":"198bf1edcbb99254292b3768782dfc5ff381697552ffc522b1d26c9d250735b1"},{"kind":"npz","path":"data/karman/karman_re200/controlled.npz","sha256":"c58337e43aaa89d68662df69971960c4b0d0653bc3e403b14d8e808a9c94e924"},{"kind":"metadata","path":"data/karman/karman_re200/manifest.json","sha256":"82c73056ae0bc6ef87e2f4abcb3fda8d8130ad18285725f209b20b5501797aab"},{"kind":"metadata","path":"data/karman/karman_re200/norm.json","sha256":"18937021022f3326a4ad3fb710b232a6dc1c67d805547dd44a1b8b99b5438e0a"},{"kind":"metadata","path":"data/karman/karman_re200/result.json","sha256":"a4fa4a754ed322ad93de36dfc2fd23980da5b1b2fef92015aedcdcce35653496"},{"kind":"npz","path":"data/karman/karman_re200/target.npz","sha256":"278236860c3b95186514484930a4c29cbcb6be63d3fba7e2c3e99b6e6d3a08b4"},{"kind":"npz","path":"data/karman/karman_re200/uncontrolled.npz","sha256":"aa9c61e56665b9eaa1105d472b6cd3d787a9cf0d77f244e9c9f297f21c12aa6f"},{"kind":"metadata","path":"data/karman/karman_re400/config.json","sha256":"9fde1c9c73e77a3e84c17ab8e0c2d43c314a51afc5e984d2c98304588ef71c2d"},{"kind":"npz","path":"data/karman/karman_re400/controlled.npz","sha256":"69618c04c9398ef17ae3b606ce0971752999b49f1c3e89034809d5bc283a34e5"},{"kind":"metadata","path":"data/karman/karman_re400/manifest.json","sha256":"93be7fc9a938fc9851e29b1fb136bc1a520006eb2e766b5398408bf5238f75f6"},{"kind":"metadata","path":"data/karman/karman_re400/norm.json","sha256":"b86dbb27e04f7ac58b9cbc9cb92ade1143f3c73261ff2bb30ef9e53d44d021d9"},{"kind":"metadata","path":"data/karman/karman_re400/result.json","sha256":"57e06c646250b4109d3d5d31b55a3e691eba9be1169c6565676a532b19176c07"},{"kind":"npz","path":"data/karman/karman_re400/target.npz","sha256":"fdd661b3ffec39c8fc85d59b95cac5f26bfdae2cd02ba4627358574c544630ea"},{"kind":"npz","path":"data/karman/karman_re400/uncontrolled.npz","sha256":"0adf1b648248e7e5a46d7376cae629867fc377f020932efae0dfb0e98388bb3a"},{"kind":"metadata","path":"data/karman/karman_re50/config.json","sha256":"70a19fa37f72e95dae47b1bd69fb984885f6df7e6506ac117f5718ab77a01c51"},{"kind":"npz","path":"data/karman/karman_re50/controlled.npz","sha256":"72d6625cb2f83a9fc3c3c81e28cde3c380eb120632b3e93ebe5d5f10b2c0f459"},{"kind":"metadata","path":"data/karman/karman_re50/manifest.json","sha256":"de05541804cd9bdca37c95d2d0f0dc2486526f5f2673da82936d60e6302e03e6"},{"kind":"metadata","path":"data/karman/karman_re50/norm.json","sha256":"05a8d8ffc97ca52143252ffed4df5227ffd18e65e06a5eb7d9d620670f0e86b4"},{"kind":"metadata","path":"data/karman/karman_re50/result.json","sha256":"19ee6bf1b6751a61334802057700a2ea065436c9b589537a395840fc935c7727"},{"kind":"npz","path":"data/karman/karman_re50/target.npz","sha256":"9c679f147f45e76aaf7d05cc78c4fcd3d9d6448796ec6cbf40156714803bf726"},{"kind":"npz","path":"data/karman/karman_re50/uncontrolled.npz","sha256":"b308c19dd75b9c70b260d428b0a97796ca03880484a91fde5405ed42f5f47f16"},{"kind":"formula","path":"results/formulas/karman_re100_front.json","sha256":"215fee26b0ae6b180ad0c28cd2515ed93f52e53a400254f2f12415df2d9b8457"},{"kind":"formula","path":"results/formulas/karman_re100_rear_shared_upper.json","sha256":"092eccc90d1b7f1e50b6a9768fdfaa7bcb7f99454aa37bc8fa1e34712e47ee9d"},{"kind":"telemetry","path":"results/telemetry/karman_re100__pysr__f-16231fd8a6aa__si-800.npz","sha256":"bb4f078994427cbb8f26936bf9cde79ebd1183e02b0bb43e22c8f8d342e0d041"},{"kind":"validation","path":"results/validations/karman_re100__pysr__f-16231fd8a6aa__si-800.json","sha256":"3a09ac1d1fbf12cef706db1da457073238532cc7d1643ffa9795cc8fc65c6459"}],"data_run_id":"round1-legacy-v2-20260716","errors":[],"generated_at":"2026-07-16T17:19:00.035474+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"round1-legacy-v2-20260716-karman-re100","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":46,"candidate_count":3,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/candidate_registry.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/candidate_registry.json new file mode 100644 index 0000000..5fb7da2 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"round1-legacy-v2-20260716-karman-re100-per-scene-front_odd-anchor-upper","path":"results/formulas/karman_re100_front.json","run_id":"round1-legacy-v2-20260716-karman-re100","sha256":"215fee26b0ae6b180ad0c28cd2515ed93f52e53a400254f2f12415df2d9b8457","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-re100-per-scene-rear_shared-anchor-upper","path":"results/formulas/karman_re100_rear_shared_upper.json","run_id":"round1-legacy-v2-20260716-karman-re100","sha256":"092eccc90d1b7f1e50b6a9768fdfaa7bcb7f99454aa37bc8fa1e34712e47ee9d","status":"diagnostic_candidate"},{"artifact_id":"round1-legacy-v2-20260716-karman-re100-karman_re100__pysr__f-16231fd8a6aa__si-800","path":"results/validations/karman_re100__pysr__f-16231fd8a6aa__si-800.json","run_id":"round1-legacy-v2-20260716-karman-re100","sha256":"3a09ac1d1fbf12cef706db1da457073238532cc7d1643ffa9795cc8fc65c6459","status":"diagnostic_candidate"}],"run_id":"round1-legacy-v2-20260716-karman-re100","schema_version":"sr-candidate-registry-v1","status":"diagnostic_candidate"} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_front.json new file mode 100644 index 0000000..e866bcb --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-karman-re100-per-scene-front_odd-anchor-upper","deployment_expression":"(du_a_dt + u_a)*(-0.056581482)","deployment_expression_hash":"0e367f2d19d4bc3864f761d1d630adf11d167433b34cfce9f92def77b2d8675f","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"],"fitted_expression":"(du_a_dt + u_a)*(-0.056581482)","fitted_expression_hash":"0e367f2d19d4bc3864f761d1d630adf11d167433b34cfce9f92def77b2d8675f","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c0ed6bce8cce004524470ae5084875ad402ab972fa678433f1243ce92877d2f7","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"7e7f3da4adc721135dfda9bfa21b7f850a7fc1207c9348faae15f40a6a490c32"}},"fit":{"diagnostic_metrics":{"mae":0.44199367111252524,"r2":0.8675137044193068},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"round1-legacy-v2-20260716-karman-re100","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..7355208 --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"round1-legacy-v2-20260716-karman-re100-per-scene-rear_shared-anchor-upper","deployment_expression":"(-Cd_rear + du_a_dt)*0.12813967 - 1*4.351992","deployment_expression_hash":"efa792a0a96b29a5d63dbff01d240a0bc9349e38772665df4e2e371bfc902217","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"],"fitted_expression":"(-Cd_rear + du_a_dt)*0.12813967 - 1*4.351992","fitted_expression_hash":"efa792a0a96b29a5d63dbff01d240a0bc9349e38772665df4e2e371bfc902217","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"c0ed6bce8cce004524470ae5084875ad402ab972fa678433f1243ce92877d2f7","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"7e7f3da4adc721135dfda9bfa21b7f850a7fc1207c9348faae15f40a6a490c32"}},"fit":{"diagnostic_metrics":{"mae":0.5355592685377961,"r2":0.8766127964062373},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":40,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"smoke":false,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":15,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":15,"niterations":40,"parallelism":"serial","parsimony":0.01,"population_size":33,"populations":30,"random_state":0,"tournament_selection_n":10,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"round1-legacy-v2-20260716-karman-re100","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/validations/karman_re100__pysr__f-16231fd8a6aa__si-800.json b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/validations/karman_re100__pysr__f-16231fd8a6aa__si-800.json new file mode 100644 index 0000000..ec3202f --- /dev/null +++ b/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/validations/karman_re100__pysr__f-16231fd8a6aa__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.2255359166199042,-1.3748955149451154,6.9549192316284865],"min":[-2.2532002695233078,-6.9421619427607135,1.4078097898245003]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.022255359166199043,-0.013748955149451155,0.06954919231628487],"min":[-0.02253200269523308,-0.06942161942760713,0.014078097898245004]}},"alignment":"causal_post_state_to_next_action","artifact_id":"round1-legacy-v2-20260716-karman-re100-karman_re100__pysr__f-16231fd8a6aa__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-16T16:13:21.079063+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"0d8b820e94296c2fb0248b62545d378bf82ae2afedcf13883549688e7a1cd2e2"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"16231fd8a6aa6c74889bfd6f19a08ac2fc0616950d0ca0545ec6ad17322768e5","formula_hashes":{"front_deployment_expression":"0e367f2d19d4bc3864f761d1d630adf11d167433b34cfce9f92def77b2d8675f","front_source":"215fee26b0ae6b180ad0c28cd2515ed93f52e53a400254f2f12415df2d9b8457","pair":"16231fd8a6aa6c74889bfd6f19a08ac2fc0616950d0ca0545ec6ad17322768e5","rear_deployment_expression":"efa792a0a96b29a5d63dbff01d240a0bc9349e38772665df4e2e371bfc902217","rear_source":"092eccc90d1b7f1e50b6a9768fdfaa7bcb7f99454aa37bc8fa1e34712e47ee9d"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-6,"similarity":0.9552997682153039},"lag":-6,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9795504073301952,"1":0.9588577032089234,"2":0.9116650938987731,"3":0.9435273688596983,"4":0.9789999862511952,"5":0.9591980497430389},"tail":{"lag":-6,"n_samples":60,"similarity":0.9552997682153039}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/formulas/karman_re100_rear_shared_upper.json --device 2 --steps 200 --run-id round1-legacy-v2-20260716-karman-re100","created_at":"2026-07-16T16:13:21.079034+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"b6acc24a9bfcc4110062b4d6398441a1a99ac50fe7320f4e8dd93b7ad159a497","run_id":"round1-legacy-v2-20260716-karman-re100","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/round1-legacy-v2-20260716-karman-re100/telemetry/karman_re100__pysr__f-16231fd8a6aa__si-800.npz","sha256":"bb4f078994427cbb8f26936bf9cde79ebd1183e02b0bb43e22c8f8d342e0d041","telemetry_hash":"bb4f078994427cbb8f26936bf9cde79ebd1183e02b0bb43e22c8f8d342e0d041"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/illusion_1L.json b/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/illusion_1L.json new file mode 100644 index 0000000..60d38fd --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/illusion_1L.json @@ -0,0 +1 @@ +{"comparison_semantics":{"alignment":"same recorded index; no lag optimization","metric_algorithm":"legacy_dtw_v1_abs_n_unclipped","metric_window":{"state":"last 36 recorded samples","target":"indices 36:72"},"transient_count":50},"interpretation":"Differences are reported, not auto-accepted; frequency phase is descriptive and is not a physical-delay estimate.","legacy_dtw":{"algorithm":"legacy_dtw_v1_abs_n_unclipped","candidate_with_candidate_target":0.9712801660298956,"historical_with_historical_target":0.9753732477509874,"window_label":"legacy_reference_cycle_vs_last_recorded_cycle"},"lengths":{"aligned":200,"candidate":{"actions":200,"forces":200,"sensors":200},"historical":{"actions":200,"forces":200,"sensors":200}},"scene":"illusion_1L","schema_version":"sr-trajectory-equivalence-v1","segments":{"all_recorded_steps":{"actions":{"candidate_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[-0.47359679089326256,-1.5311961303232935,-1.1603617243670292]},"candidate_mean":[0.041607311721891166,0.13034457437694072,-0.1531146464496851],"candidate_range":[0.176555335521698,0.19556482508778572,0.2900601699948311],"candidate_std":[0.04902827309962386,0.02815950315733704,0.04038029552871644],"channels":["front","upper","lower"],"max_abs_error":[0.1534826159477234,0.14608685299754143,0.17682218551635742],"n_aligned":200,"range_normalized_rmse":[0.44690088792095933,0.320773071975963,0.4320599161055488],"reference_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[-2.579826695493144,2.1520865921011163,2.768857981217888]},"reference_mean":[0.0423145005106926,0.13118245093151926,-0.15221906445920466],"reference_range":[0.18368542194366455,0.13544924184679985,0.14238572865724564],"reference_std":[0.0494625440177007,0.02573411027260616,0.0323143446611943],"rmse":[0.08208917816475976,0.043448469404013146,0.06151916597827698]},"forces":{"candidate_frequency":{"bin":[8,8,8,8,8,8],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-1.0262639102094975,1.158170625371439,1.113441866402041,0.051996892569900914,-2.454531175576503,0.35644092970114033]},"candidate_mean":[0.001999318263842724,-0.00043008386073040584,0.0013926342474587727,0.0030694994173245506,0.002078992660390213,-0.0026661110180430116],"candidate_range":[0.000664197956211865,0.0011965028679696843,0.001924926124047488,0.002138037816621363,0.0013935283059254289,0.0024597994051873684],"candidate_std":[0.000177362959917543,0.0003403004313419903,0.000471101264634434,0.0006742023248580117,0.000392609165061484,0.0007072207225177853],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.0005992088699713349,0.0011413983011152595,0.0014507027808576822,0.0020352175924926996,0.001138078747317195,0.0023498800583183765],"n_aligned":200,"range_normalized_rmse":[0.3838961696390838,0.4971502626099043,0.3941096335402722,0.5138196179365151,0.41625335247909895,0.5564845009842725],"reference_frequency":{"bin":[8,8,8,8,8,8],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[3.1119700296420008,-0.9354670463453961,-0.9626672625070453,-2.29488374113613,1.7769827444978559,-2.0371590824854344]},"reference_mean":[0.0020082284003729,-0.0004652403249323811,0.0013307585941220168,0.003011701711220667,0.002044748239568435,-0.0026337406481616197],"reference_range":[0.0007850595284253359,0.001160685540526174,0.0019178721122443676,0.0023270174860954285,0.0014736192533746362,0.0022543813101947308],"reference_std":[0.00019406821418894575,0.0003229012188467394,0.0004656307721158811,0.0006822938713956254,0.00039813192107858393,0.00068009739100518],"rmse":[0.0003013813459011519,0.0005770351212801061,0.0007558518753337355,0.001195667235637143,0.0006133989544949391,0.0012545282584319852]},"sensors":{"candidate_frequency":{"bin":[8,8,1,8,8,8],"cycles_per_sample":[0.04,0.04,0.005,0.04,0.04,0.04],"phase_rad":[-1.027002340621445,-2.994565859686226,1.3985586624194735,-2.8396485175234076,2.016358541195377,-3.0180030168943484]},"candidate_mean":[1.0022268256545066,-0.0331771002325695,0.8586813765764236,0.007557994201779366,0.9926331061124801,0.0396035377914086],"candidate_range":[0.7465243935585022,1.2229495644569397,0.703056275844574,1.4386025667190552,0.9842589795589447,1.0223555862903595],"candidate_std":[0.20998862232671872,0.29557811201086837,0.14379381797916668,0.508849121927017,0.23192303417715793,0.3223576040798681],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.6468767523765564,1.1260831356048584,0.46922212839126587,1.3547301292419434,0.6526998281478882,0.9676970541477203],"n_aligned":200,"range_normalized_rmse":[0.4744203803535448,0.43904745812539603,0.25175691394471766,0.6205884349270973,0.38983691754522537,0.5721193343595011],"reference_frequency":{"bin":[8,8,1,8,8,8],"cycles_per_sample":[0.04,0.04,0.005,0.04,0.04,0.04],"phase_rad":[-3.1222441966526286,1.1723670314156287,1.0357783625625843,1.3221796835714894,-0.002479097730412706,1.1723803188508486]},"reference_mean":[1.006383445262909,-0.03687808928079903,0.8810239711403847,0.005904864240437746,0.9848371128737926,0.04254286666226108],"reference_range":[0.753079354763031,1.1477200984954834,0.5898169577121735,1.4058889150619507,0.9505437314510345,0.9461762011051178],"reference_std":[0.21185892475507828,0.3019165543612503,0.11419240291777193,0.5117425159967779,0.22806344605485418,0.3068046646960398],"rmse":[0.35727619392307924,0.5039035918838711,0.14849049706587883,0.8724784014796507,0.3705570382608078,0.5413256983630614]}},"initial_control_segment":{"actions":{"candidate_frequency":{"bin":[2,2,2],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[0.20540580706322675,-1.600710427914061,-1.7485836831988502]},"candidate_mean":[0.03895659763365984,0.13481410831212998,-0.15949245646595955],"candidate_range":[0.16428979486227036,0.19556482508778572,0.2900601699948311],"candidate_std":[0.041677674133130706,0.04550998192525716,0.05035611511901817],"channels":["front","upper","lower"],"max_abs_error":[0.1212199404835701,0.14608685299754143,0.17682218551635742],"n_aligned":50,"range_normalized_rmse":[0.3954004520918523,0.5309614949067328,0.6275983524660228],"reference_frequency":{"bin":[2,2,2],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[-1.2880697438090456,2.2949346822427144,1.9724009929261388]},"reference_mean":[0.041022650599479675,0.13976298071444035,-0.15589562207460403],"reference_range":[0.1416231244802475,0.13544924184679985,0.10256445407867432],"reference_std":[0.0402738672471517,0.035582054151759,0.02487525416124943],"rmse":[0.05599784744615054,0.07191833193496044,0.06436928240135305]},"forces":{"candidate_frequency":{"bin":[2,2,2,2,2,2],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-0.550514576179545,1.8549535403068078,2.0568211889462997,0.2317651921058106,-1.2360181331679583,0.18118350541779457]},"candidate_mean":[0.0018933103187009693,-0.00039269084722036495,0.0012305687391199172,0.0028100793506018818,0.0017805072199553252,-0.0025017758249305188],"candidate_range":[0.0006083770422264934,0.0006065370034775697,0.0009450974757783115,0.002138037816621363,0.0007412523264065385,0.0016674958169460297],"candidate_std":[0.0001613385896415913,0.00018505071648210455,0.00023466737313127198,0.0007057461107637085,0.0001624315434142467,0.0005510953517058252],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.0005992088699713349,0.0005229282251093537,0.0008138960693031549,0.0020352175924926996,0.0007113394094631076,0.0015154381981119514],"n_aligned":50,"range_normalized_rmse":[0.501024100745877,0.32001452156759724,0.4402295698299923,0.6155159161864205,0.3761607485664162,0.6235455262056414],"reference_frequency":{"bin":[2,2,2,2,2,2],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-2.1829072363869764,0.763278035129562,0.5921056832884491,-1.8622330194257757,-2.7887352466680717,-2.1679118836981557]},"reference_mean":[0.0019189249398186804,-0.00048035474015705403,0.0011478108016308398,0.002714579589664936,0.0017514397646300494,-0.002407660421449691],"reference_range":[0.00048407353460788727,0.0008088626191238291,0.0008288410608656704,0.0018151665572077036,0.0007891248678788543,0.0015471354126930237],"reference_std":[0.00015398281316539233,0.00019989587887289423,0.0002513620347396014,0.0005758070533133926,0.0002290328371285673,0.0005062279713122829],"rmse":[0.00024253250737179486,0.0002588477840728258,0.00036488034368232857,0.0011172639064906504,0.0002968378010136841,0.0009647093650190536]},"sensors":{"candidate_frequency":{"bin":[2,2,1,2,2,1],"cycles_per_sample":[0.04,0.04,0.02,0.04,0.04,0.02],"phase_rad":[0.03763546669888113,-1.8854195073113933,-2.9859583409864228,-1.6679032694866174,3.00231659677284,0.6587157313470633]},"candidate_mean":[1.0353538084030152,-0.05692038606386632,0.8275622510910035,0.04088689368218183,1.024684615135193,0.12982685379683973],"candidate_range":[0.65294349193573,0.6866247951984406,0.5769762396812439,1.112854540348053,0.6477721333503723,0.6941570937633514],"candidate_std":[0.18191571869342255,0.19713179392605662,0.15403160410337333,0.3645066521833558,0.16901965292997473,0.1932446889816351],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.5754488110542297,0.7019837200641632,0.46922212839126587,1.080038845539093,0.5655189752578735,0.6881792843341827],"n_aligned":50,"range_normalized_rmse":[0.43905501287294335,0.4645164715173899,0.4883275041795703,0.5416587527921195,0.382406820518124,0.4337418542607882],"reference_frequency":{"bin":[2,2,4,2,2,2],"cycles_per_sample":[0.04,0.04,0.08,0.04,0.04,0.04],"phase_rad":[-1.7260447498065574,2.5742495769860385,-1.7042320207280177,2.7886374973417833,1.4708045281525486,2.561831231819096]},"reference_mean":[1.0346153712272643,-0.06373692724853754,0.9012946772575379,0.00334972582757473,1.0088738048076629,0.06613354028202593],"reference_range":[0.6570020914077759,0.6985883414745331,0.41432589292526245,1.1222357153892517,0.6623792052268982,0.6987980604171753],"reference_std":[0.18809615504914728,0.20916687262518746,0.0922457918985678,0.4169914362596838,0.1857623085690726,0.2338780706917016],"rmse":[0.28846006170059174,0.3245057914249356,0.2023267292091653,0.607868797936514,0.2532983258481401,0.3030979664791879]}},"post_initial_segment":{"actions":{"candidate_frequency":{"bin":[6,12,6],"cycles_per_sample":[0.04,0.08,0.04],"phase_rad":[-0.6244624861972253,2.4936147564075966,-0.9909732678772268]},"candidate_mean":[0.04249088308463494,0.12885472973187764,-0.1509887097775936],"candidate_range":[0.1705886274576187,0.09346843510866165,0.1335328221321106],"candidate_std":[0.051214221173228304,0.01892120831798705,0.03620450919089673],"channels":["front","upper","lower"],"max_abs_error":[0.1534826159477234,0.07568724453449249,0.11798682808876038],"n_aligned":150,"range_normalized_rmse":[0.4850923012985262,0.282765628562724,0.43170313789227466],"reference_frequency":{"bin":[6,12,6],"cycles_per_sample":[0.04,0.08,0.04],"phase_rad":[-2.8170094890127215,-1.9075576950993853,2.944017172280188]},"reference_mean":[0.04274511714776357,0.12832227433721224,-0.15099354525407155],"reference_range":[0.18368542194366455,0.0995851531624794,0.14023367315530777],"reference_std":[0.0521598935693995,0.02069402350619171,0.0343514504598048],"rmse":[0.08910438404564304,0.028159258429503634,0.06053931673930601]},"forces":{"candidate_frequency":{"bin":[6,6,6,6,6,6],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-1.141549020503181,1.0884256863395414,1.0246534283773396,-0.01359858898204311,-2.5355776708135878,0.3986394477407082]},"candidate_mean":[0.0020346542455566426,-0.00044254819856708613,0.0014466560835717246,0.003155972772898773,0.0021784878072018425,-0.0027208894157471756],"candidate_range":[0.0005982929142192006,0.0011965028679696843,0.001924926124047488,0.0019533128943294287,0.0012958234874531627,0.0024597994051873684],"candidate_std":[0.00016814354824680163,0.0003773192503275158,0.0005156408714160612,0.0006404128438818454,0.00039639727916841017,0.0007440722277893275],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.0005935163935646415,0.0011413983011152595,0.0014507027808576822,0.0018675257451832294,0.001138078747317195,0.0023498800583183765],"n_aligned":150,"range_normalized_rmse":[0.40601823870439263,0.559433882181535,0.44162334023418265,0.5542090862731961,0.5334887510152113,0.5931775907779738],"reference_frequency":{"bin":[6,6,6,6,6,6],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[2.8939254514838177,-1.113972604868772,-1.1315389859738194,-2.4072738773541222,1.5930440362739726,-2.005490919790751]},"reference_mean":[0.00203799622055764,-0.0004602021865241568,0.0013917411916190758,0.0031107424184059103,0.002142517731214563,-0.002709100723732263],"reference_range":[0.0007846718654036522,0.001160685540526174,0.0019178721122443676,0.0022025678772479296,0.0012882105074822903,0.0022543813101947308],"reference_std":[0.00019689735300489772,0.0003543998834071609,0.0005031363847197673,0.0006862548615428601,0.0003944927476658372,0.0007131417330351439],"rmse":[0.0003185910887520811,0.0006493268179285309,0.0008469770883513449,0.0012206831307042681,0.0006872458146813986,0.0013372484742762026]},"sensors":{"candidate_frequency":{"bin":[6,6,1,6,6,6],"cycles_per_sample":[0.04,0.04,0.006666666666666667,0.04,0.04,0.04],"phase_rad":[-1.248107565654053,3.1094951992538795,2.491093296194312,-3.0403840875145525,1.843989306938175,-3.1088738915446203]},"candidate_mean":[0.9911844980716705,-0.025262671622137228,0.8690544184048971,-0.003551638958354791,0.9819492697715759,0.00952909912293156],"candidate_range":[0.7465243935585022,1.2229495644569397,0.6231202483177185,1.4386025667190552,0.9842589795589447,1.0223555862903595],"candidate_std":[0.21742765949282905,0.32137884127634414,0.138671930988384,0.5481373090355599,0.2484725335214316,0.3499812030562763],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.6468767523765564,1.1260831356048584,0.38748177886009216,1.3547301292419434,0.6526998281478882,0.9676970541477203],"n_aligned":150,"range_normalized_rmse":[0.5011914446286164,0.47996842418880664,0.2238643608150968,0.671707617744472,0.42303708994408906,0.6342093490180166],"reference_frequency":{"bin":[6,6,1,6,6,6],"cycles_per_sample":[0.04,0.04,0.006666666666666667,0.04,0.04,0.04],"phase_rad":[2.872914624124355,0.9634468919410606,2.2429637488689855,1.0617961347905054,-0.2675888183769385,0.9531562582750629]},"reference_mean":[0.9969728032747904,-0.02792514329155286,0.8742670691013337,0.006756577044725418,0.9768248822291692,0.03467930878900612],"reference_range":[0.753079354763031,1.1477200984954834,0.5606717169284821,1.4058889150619507,0.9505437314510345,0.9461762011051178],"reference_std":[0.21839866472248734,0.3265485056787335,0.11986445777288221,0.5396390916852128,0.2399817745454283,0.32714697545976335],"rmse":[0.3774369297336699,0.5508694070846991,0.12551441553729753,0.9443462939496232,0.40211525401764137,0.6000737925592168]}}},"sources":{"candidate":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/controlled.npz","sha256":"2b338c40bf175af670045c3682173d94939a4429120ce6fff92c49c114c49561"},"candidate_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/illusion/illusion_1L/target.npz","sha256":"24624e538c2a9f1e26c701a1299d0668b1d1109f29774ca683306bd97346052b"},"historical":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz","sha256":"755dfc4b3ef4e251c63800025271f751ec04daf9f0ed74bffc320185cfd78a51"},"historical_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/target.npz","sha256":"33c0034102b14b340473393bf1a4ab4d564547efecd7d9af3302254e9e150bea"}},"status":"diagnostic_only"} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/karman_re100.json b/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/karman_re100.json new file mode 100644 index 0000000..70ab25d --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-equivalence-20260717/karman_re100.json @@ -0,0 +1 @@ +{"comparison_semantics":{"alignment":"same recorded index; no lag optimization","metric_algorithm":"legacy_dtw_v1_abs_n_unclipped","metric_window":{"state":"last 30 recorded samples","target":"indices 30:60"},"transient_count":50},"interpretation":"Differences are reported, not auto-accepted; frequency phase is descriptive and is not a physical-delay estimate.","legacy_dtw":{"algorithm":"legacy_dtw_v1_abs_n_unclipped","candidate_with_candidate_target":0.9454895479138941,"historical_with_historical_target":0.9538050162761161,"window_label":"legacy_reference_cycle_vs_last_recorded_cycle"},"lengths":{"aligned":200,"candidate":{"actions":200,"forces":200,"sensors":200},"historical":{"actions":200,"forces":200,"sensors":200}},"scene":"karman_re100","schema_version":"sr-trajectory-equivalence-v1","segments":{"all_recorded_steps":{"actions":{"candidate_frequency":{"bin":[11,11,11],"cycles_per_sample":[0.055,0.055,0.055],"phase_rad":[-2.3885613226357307,1.5943905498196123,1.7422687810372874]},"candidate_mean":[-0.04185709835961461,-0.02233505222480744,0.0228202354721725],"candidate_range":[0.6586743593215942,0.7807648181915283,0.7920319139957428],"candidate_std":[0.17286472336957823,0.2588494932745715,0.22805526469841272],"channels":["front","upper","lower"],"max_abs_error":[0.47088533639907837,0.7885627448558807,0.7064171135425568],"n_aligned":200,"range_normalized_rmse":[0.5283223677197108,0.5532648859010718,0.5217275475208857],"reference_frequency":{"bin":[11,11,11],"cycles_per_sample":[0.055,0.055,0.055],"phase_rad":[1.8376419298203397,-0.48071112455705756,-0.24938317571404314]},"reference_mean":[-0.04914626975543797,-0.0263767179986462,0.016117193349637092],"reference_range":[0.549119621515274,0.799270749092102,0.7201264798641205],"reference_std":[0.16832261127817727,0.2601658336556034,0.22260478544192702],"rmse":[0.29011217860030103,0.442208439800506,0.375709822244356]},"forces":{"candidate_frequency":{"bin":[22,11,11,11,11,11],"cycles_per_sample":[0.11,0.055,0.055,0.055,0.055,0.055],"phase_rad":[1.5767388135322562,-1.2438360508967774,1.3660716662424042,1.8455843450382814,-1.810821963957547,1.6299908481733532]},"candidate_mean":[0.001372037429609918,-1.7217541635545786e-05,-0.00028108546137445956,0.004443687093735207,-0.0011565413896278188,-0.004122109442250803],"candidate_range":[0.007015721872448921,0.008051060605794191,0.015236132312566042,0.0064754916238598526,0.015491401311010122,0.005249161855317652],"candidate_std":[0.0020597714765337584,0.0025710647085423906,0.003913017757352348,0.0013445244316689984,0.004526906461018706,0.0015766228977948768],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.006812587380409241,0.007836002856492996,0.011145496624521911,0.004743559518828988,0.01608308358117938,0.00507689849473536],"n_aligned":200,"range_normalized_rmse":[0.4812078272062914,0.5157693093889908,0.5329184696147846,0.4965560103148925,0.5240167388630086,0.4847824938635768],"reference_frequency":{"bin":[22,11,11,11,11,11],"cycles_per_sample":[0.11,0.055,0.055,0.055,0.055,0.055],"phase_rad":[-2.5331731659049797,2.990232586954184,-0.6482791810510494,-0.18806866491678437,2.405679342627121,-0.3831276219555834]},"reference_mean":[0.0013462766748898502,-0.00013415981802609168,-3.160206584652769e-05,0.0044492575002368535,-0.0013895798838257179,-0.004215381638496183],"reference_range":[0.0074716069502756,0.008486719569191337,0.012168195098638535,0.004188308957964182,0.014985654503107071,0.005486090900376439],"reference_std":[0.0020580022164770496,0.0025780487431812694,0.00373934963397055,0.0011618713714950262,0.004629421614849414,0.0016140830641823388],"rmse":[0.003595395746281547,0.0043771894911798495,0.006484655909940571,0.002079729986132819,0.007852733802445926,0.0026595608282467655]},"sensors":{"candidate_frequency":{"bin":[11,11,22,11,11,11],"cycles_per_sample":[0.055,0.055,0.11,0.055,0.055,0.055],"phase_rad":[0.5858159265582948,-1.1308540336772304,-2.543657811321445,-1.1025947413093276,-2.538475646201885,-1.188290780083093]},"candidate_mean":[1.0545448562502862,-0.018285725028254093,0.985243951678276,-0.0025051828846335412,1.0284247955679893,0.01488143857102841],"candidate_range":[0.5194352269172668,0.7967247068881989,0.21155840158462524,1.2153184413909912,0.6584031581878662,0.8785458505153656],"candidate_std":[0.15832287601402203,0.2721031041333068,0.0359133583802766,0.42483256939723407,0.16824885742410403,0.2733697945863057],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.41728323698043823,0.7084784805774689,0.11606252193450928,1.1648741960525513,0.5203693509101868,0.7640582025051117],"n_aligned":200,"range_normalized_rmse":[0.5253849326801283,0.5985526927579499,0.25245231872991303,0.6245794356959353,0.5134888743505198,0.5803193723199679],"reference_frequency":{"bin":[11,11,22,11,11,11],"cycles_per_sample":[0.055,0.055,0.11,0.055,0.055,0.055],"phase_rad":[-1.478406902476382,3.1029412160403966,-0.3715242318064858,3.1299469359474346,1.6901415600220246,3.0439921604207907]},"reference_mean":[1.0504455202817917,-0.019296457979944535,0.9837046203017235,-0.0040982861537486315,1.032193047106266,0.013352721758419648],"reference_range":[0.5136637687683105,0.7768682837486267,0.16875159740447998,1.1515044569969177,0.5504645705223083,0.8031053841114044],"reference_std":[0.15720035333680454,0.27342657286868793,0.03486612523630628,0.42387831937491127,0.1631527042054997,0.27191286010726656],"rmse":[0.2698712045745598,0.46499660315598756,0.042601732054137746,0.7192060039524892,0.28265743268734245,0.4660576124143169]}},"initial_control_segment":{"actions":{"candidate_frequency":{"bin":[3,3,3],"cycles_per_sample":[0.06,0.06,0.06],"phase_rad":[2.960172840364375,0.8245774947246494,0.620394682446814]},"candidate_mean":[0.005250004325062036,-0.0382029571197927,0.0321500367578119],"candidate_range":[0.6374708712100983,0.7653359770774841,0.7920319139957428],"candidate_std":[0.16060453699021343,0.24885512538380544,0.24513979190511653],"channels":["front","upper","lower"],"max_abs_error":[0.47088533639907837,0.7885627448558807,0.7064171135425568],"n_aligned":50,"range_normalized_rmse":[0.4984772645758853,0.5772277289124882,0.5158288196874996],"reference_frequency":{"bin":[3,3,3],"cycles_per_sample":[0.06,0.06,0.06],"phase_rad":[0.9715868166747443,-1.4524785716365756,-1.269340992389911]},"reference_mean":[-0.05722680609673261,-0.033685290683060885,0.008019656231626869],"reference_range":[0.549119621515274,0.7926493883132935,0.7201264798641205],"reference_std":[0.1578587293669122,0.266157104431973,0.21313602610869833],"rmse":[0.27372364685787925,0.4575392062399553,0.37146199213402326]},"forces":{"candidate_frequency":{"bin":[5,3,3,3,3,2],"cycles_per_sample":[0.1,0.06,0.06,0.06,0.06,0.04],"phase_rad":[3.0032744623577514,-2.113317415286492,0.4245273367131695,1.0625534728821737,-2.606222186704315,-1.7710977713711407]},"candidate_mean":[0.001164725841517793,0.0003729336359538138,-0.0013209230379288782,0.004269996044458821,3.0715083703398704e-05,-0.004034886979497969],"candidate_range":[0.006649552378803492,0.008037588791921735,0.015061067417263985,0.0064754916238598526,0.014086965937167406,0.004413219052366912],"candidate_std":[0.0019369285787095012,0.0026548254003003146,0.004268041243441445,0.0017844837978770879,0.0039387750027522,0.0012414908302027011],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.006553622195497155,0.007836002856492996,0.011145496624521911,0.004743559518828988,0.01608308358117938,0.004519229754805565],"n_aligned":50,"range_normalized_rmse":[0.4509594419322227,0.5534250242438282,0.5678780377797928,0.5931960816748616,0.5258127946545267,0.41950641291095914],"reference_frequency":{"bin":[6,3,3,3,3,3],"cycles_per_sample":[0.12,0.06,0.06,0.06,0.06,0.06],"phase_rad":[1.9184680730683628,2.0540154731237967,-1.5524260148721711,-1.2560260843074325,1.5434701173823986,-1.1839899209038542]},"reference_mean":[0.0013572376567935862,-9.985472424887121e-05,-4.244956180627923e-05,0.004264599699527025,-0.0015126043845521053,-0.004247092769946903],"reference_range":[0.007459776825271547,0.008486719569191337,0.012168195098638535,0.004188308957964182,0.014985654503107071,0.005251894355751574],"reference_std":[0.0020043093773067823,0.0027420280360752783,0.0038745649363198273,0.0011760654905273663,0.0048621292766187815,0.0015828823445517425],"rmse":[0.0033640567940633847,0.004696762983330287,0.0069100507559365434,0.0024844884627080754,0.007879648874005921,0.0022032033621686557]},"sensors":{"candidate_frequency":{"bin":[3,3,2,3,3,3],"cycles_per_sample":[0.06,0.06,0.04,0.06,0.06,0.06],"phase_rad":[-0.5780710639553737,-2.275977620914466,2.850084783416129,-2.2497371491278333,2.5502302351519095,-2.324092796527579]},"candidate_mean":[1.0248795568943023,-0.0015609862841665745,0.9500537133216858,0.015380267649888993,1.031234291791916,0.023770564449951053],"candidate_range":[0.480049192905426,0.7939306795597076,0.18984919786453247,1.2153184413909912,0.6584031581878662,0.8785458505153656],"candidate_std":[0.12769045617158684,0.24299932653220174,0.04197721270329121,0.38535848550161167,0.15752123865150283,0.26907583081528713],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.41728323698043823,0.70765420794487,0.11606252193450928,1.1648741960525513,0.5203693509101868,0.7640582025051117],"n_aligned":50,"range_normalized_rmse":[0.4572537802140151,0.5664687961210808,0.2969490485635579,0.5779759159579665,0.4682283803779871,0.568119734161975],"reference_frequency":{"bin":[3,3,1,3,3,3],"cycles_per_sample":[0.06,0.06,0.02,0.06,0.06,0.06],"phase_rad":[-2.6049637780243877,1.8987695149440615,0.2767969243420343,1.912465744485863,0.5557961595760834,1.8492359794701414]},"reference_mean":[1.046710776090622,-0.0016347660985775291,0.9508500480651856,0.01964407917112112,1.0137652206420897,0.02399670890532434],"reference_range":[0.485385537147522,0.7634842693805695,0.1628730297088623,1.1515044569969177,0.5313736796379089,0.8031053841114044],"reference_std":[0.130556949198202,0.25448072477471495,0.0420829187480593,0.3820825424533879,0.13691604550944908,0.2568963638390226],"rmse":[0.22194437172191467,0.4324900149333942,0.04836499120871077,0.6655418432624743,0.24880423739234947,0.45626001732542193]}},"post_initial_segment":{"actions":{"candidate_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-3.1406911682871876,0.8021614174930958,1.0655602968640012]},"candidate_mean":[-0.057559465921173496,-0.017045750593145687,0.019710301710292696],"candidate_range":[0.5339212864637375,0.7738634943962097,0.687833309173584],"candidate_std":[0.1739504343927343,0.2618827006525452,0.22198140852732776],"channels":["front","upper","lower"],"max_abs_error":[0.46801771223545074,0.7346730828285217,0.6583977043628693],"n_aligned":150,"range_normalized_rmse":[0.5583564492495344,0.5607989675170295,0.5504383008471209],"reference_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[1.0629761301648832,-1.2095866940213937,-0.9590369282115052]},"reference_mean":[-0.04645275764167309,-0.023940527103841303,0.018816372388973834],"reference_range":[0.5290044099092484,0.7792073488235474,0.6851179003715515],"reference_std":[0.17158434985219126,0.2580918566804832,0.2256081925014698],"rmse":[0.2953730239542731,0.4369786767019272,0.37711513296046384]},"forces":{"candidate_frequency":{"bin":[17,8,8,8,8,8],"cycles_per_sample":[0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-3.061478329024023,-1.9949827132241729,0.639595174773817,1.0898583984658015,-2.5959913619852255,0.8595181351025352]},"candidate_mean":[0.0014411412923072931,-0.0001472679341653323,6.552706414368003e-05,0.004501584110160669,-0.0015522935474048911,-0.004151183596501747],"candidate_range":[0.006957125500775874,0.007408018223941326,0.011494602542370558,0.003920061280950904,0.01381316315382719,0.005249161855317652],"candidate_std":[0.002094567393446697,0.002529192214970566,0.0037233037707368284,0.0011556205534115854,0.004639617177466389,0.0016724748018612187],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.006812587380409241,0.006315683946013451,0.01080907927826047,0.0035332939587533474,0.013348206877708435,0.00507689849473536],"n_aligned":150,"range_normalized_rmse":[0.5293781810504308,0.5749249676710672,0.5628236713444331,0.5056162077039514,0.5660701373783271,0.5312133738507291],"reference_frequency":{"bin":[17,8,8,8,8,8],"cycles_per_sample":[0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-0.8511216964601687,2.2735201812094172,-1.3930123803738725,-0.9229745547186011,1.6488845744499951,-1.1707887434714586]},"reference_mean":[0.0013426230142552717,-0.00014559484928516515,-2.7986233859943847e-05,0.004510810100473463,-0.0013485717169169221,-0.004204811261345942],"reference_range":[0.0069312810664996505,0.007418963825330138,0.011258436366915703,0.0038092127069830894,0.01385648362338543,0.005261861952021718],"reference_std":[0.0020755783307555118,0.0025209161310240954,0.0036931708329316962,0.0011505340247668907,0.00454846848996259,0.0016242125518899097],"rmse":[0.003669268963332875,0.004265347537430747,0.006336514489625177,0.0019259996832424928,0.00784374158827033,0.00279517144027024]},"sensors":{"candidate_frequency":{"bin":[8,8,17,8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-0.12799799598341277,-1.8412763706020119,-0.856450082060948,-1.823575118575716,3.032679034719999,-1.8984596263041673]},"candidate_mean":[1.0644332893689474,-0.02386063794294993,0.9969740311304728,-0.008466999729474385,1.0274882968266805,0.01191839661138753],"candidate_range":[0.49423283338546753,0.7746613323688507,0.09969764947891235,1.1339097023010254,0.518470287322998,0.7681869864463806],"candidate_std":[0.16611873902482208,0.2809144404575551,0.024123665329610817,0.4370366752777276,0.1716656120806304,0.2747222962847171],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.40215033292770386,0.7084784805774689,0.07876116037368774,1.0505720973014832,0.4237043857574463,0.695774257183075],"n_aligned":150,"range_normalized_rmse":[0.5725207353184962,0.6208660906505639,0.4466424642812711,0.6687901581538022,0.5742207086799846,0.61436251098226],"reference_frequency":{"bin":[8,8,17,8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-2.211772700419401,2.431528337777407,1.3664347797675418,2.442742280404438,0.9554986210349455,2.3623785924665235]},"reference_mean":[1.0516904350121816,-0.025183688607066868,0.9946561443805695,-0.012012407928705216,1.038335655927658,0.009804726042784751],"reference_range":[0.49614882469177246,0.7656053304672241,0.09067386388778687,1.1008315682411194,0.5103858709335327,0.7638454735279083],"reference_std":[0.16511015476613544,0.27920841075411534,0.02346901609800244,0.4366358701920576,0.17056419741818812,0.2766463524248761],"rmse":[0.28405548993994123,0.4753383885084185,0.04049879801274568,0.7362253186246763,0.2930741365077043,0.46927802311903916]}}},"sources":{"candidate":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/controlled.npz","sha256":"7eedb82583858b2b001bae5e1bb8a176dbe0c9aadbb43464fff705893de9df21"},"candidate_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/round1-legacy-v2-20260716/karman/karman_re100/target.npz","sha256":"3dfc0bc3bf0099b198ca9d109e139d9591ee2d3f967c233964230e56a2299f9b"},"historical":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz","sha256":"efd8eaab807dfbaa44b74514c2fa634ddf28d52c0d3e3877fa1a26489e384ddf"},"historical_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/target.npz","sha256":"c50dd977de325d605027f5332904290ce6d9b5e166b9e0530ba9fbc3eed7c1dd"}},"status":"diagnostic_only"} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-illusion-diagnostic-20260717/static_ablation.json b/src/SR_analysis/results/runs/scientific-rebuild-illusion-diagnostic-20260717/static_ablation.json new file mode 100644 index 0000000..8cd1dc2 --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-illusion-diagnostic-20260717/static_ablation.json @@ -0,0 +1 @@ +{"ablations":{"actual_only":{"coefficients":[[-1.16121446514245,-1.4155524964016757,-1.9636022361368755],[0.005089277006696147,0.9698280416228736,1.8531926712148976],[-1.42951126355614,0.7144354643153775,-0.34119768521464955],[0.302585529345911,-0.23111160824253205,0.3211118254764058],[0.5209704246175918,-0.3162996050730843,-0.25910003718079166],[-0.7863998488366074,0.15985392991407898,-0.4236050987229649],[-0.17523374145892,0.0804174398501904,-0.04365735675265758]],"feature_names":["Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"test_indices":[118,198],"test_mae":[0.10861642127303724,0.12303563714017621,0.1105722455463575],"test_r2":[0.9018705055199687,-0.041247992085434504,0.6500616218988209],"train_indices":[0,118]},"actual_target":{"coefficients":[[-0.2161363657656164,-0.15619525654503424,1.0972846331374175],[-0.28148371852344667,0.8108491501551084,1.0657113410958434],[-1.1961132365169738,0.8415120208096609,0.29864626968825453],[0.19146338253184084,-0.2874723939634636,0.01909177053664317],[0.6956430271831349,-0.21528106998584723,0.22348568579503877],[-0.6349789324005479,0.2500821721614862,-0.0035824826612761984],[0.08793591138036902,0.2506941655214024,0.6948364861691841],[-0.04645762340545183,-0.15059968042020955,-0.2064372515240821],[-0.15736175166191999,-0.09862207451160591,-0.4395648754017978]],"feature_names":["Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl"],"test_indices":[118,198],"test_mae":[0.09262490683954,0.11621301954063483,0.09920559767802016],"test_r2":[0.9239981645775122,0.04061665772625145,0.7328119959393085],"train_indices":[0,118]},"drag_only":{"coefficients":[[-2.8155957777847065,0.10844837401680617,-1.897567221248316],[1.619743385494945,-0.04732640445918812,0.8733932630831744],[0.021461858792776345,-0.13081289556352801,-0.014352637108455912],[-0.4498982196233045,0.02884256046836855,-0.1375585176515582],[0.14406336762987082,-0.151967432238174,0.21885942983627338]],"feature_names":["Cd_F","Cd_T","Cd_B","target_Cd"],"test_indices":[118,198],"test_mae":[0.16121602624958514,0.10137008985054288,0.13351479717841364],"test_r2":[0.7311429991153537,0.2982046461237452,0.536712052290631],"train_indices":[0,118]},"error_only":{"coefficients":[[0.35821305816573856,-0.9560623269870514,0.8249084740541457],[0.0020421103618637557,-0.04517332366010812,0.005497581173251442],[-0.039556629629180315,0.11841740327539918,0.3292344752627999]],"feature_names":["Cd_err","Cl_err"],"test_indices":[118,198],"test_mae":[0.3895942656345722,0.11635226081839348,0.18255172553807014],"test_r2":[-0.037638145808536416,-0.0030426755679631157,0.13081658265892704],"train_indices":[0,118]},"lift_only":{"coefficients":[[-0.285080267943437,-0.9000059025127409,0.9340370967226269],[-0.32003443031220763,-0.008421905197242023,-0.013684290214248725],[0.5688588831141336,0.045780888998552545,0.5533275521515649],[0.4635296003876383,0.07135233754762357,0.6929372517517243],[-0.24072322009029512,-0.09646622609911279,-0.5037275102461312]],"feature_names":["Cl_F","Cl_T","Cl_B","target_Cl"],"test_indices":[118,198],"test_mae":[0.0973890243276447,0.11667297342565111,0.1268829564540968],"test_r2":[0.9162249622307237,-0.008444891824531453,0.6370962077950726],"train_indices":[0,118]},"target_only":{"coefficients":[[-0.6080020939448731,-0.03827453025315068,-0.8224304569368275],[0.17017521149617454,-0.16070086621614893,0.2851975559916747],[0.14371579053197273,-0.050320301735226884,-0.016530405195457804]],"feature_names":["target_Cd","target_Cl"],"test_indices":[118,198],"test_mae":[0.25074032291709075,0.11122677444545688,0.19683530501385396],"test_r2":[0.4035249344390657,0.0708921609798816,0.021024316516199626],"train_indices":[0,118]}},"action_layout":["front","upper","lower"],"evidence_boundary":"All regressions use current-time static signals only. Differences identify statistical proxy value; they do not establish transport delay, and no cross-correlation-selected lag is used.","scene":"illusion_1L","schema_version":"sr-illusion-static-proxy-diagnostic-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz","sha256":"755dfc4b3ef4e251c63800025271f751ec04daf9f0ed74bffc320185cfd78a51"},"triggered_by":["mapped-shared rear static fit collapsed to a constant","independent rear fit selected drag terms while front selected lift/target-lift terms","PPO empirical G defect is large"]} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/illusion_1L.json b/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/illusion_1L.json new file mode 100644 index 0000000..901486c --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/illusion_1L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"body_object_ids":{"front":3,"lower":5,"upper":4},"contract_version":"legacy-pinball-order-v1","force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"geometry_order":[{"name":"front","y_offset_L":0.0},{"name":"upper","y_offset_L":0.75},{"name":"lower","y_offset_L":-0.75}],"impulse_test":{"epsilon":0.0001,"interpretation":"slot identity is exact; force magnitude is diagnostic and is not used to infer causality","responses":{"front":{"all_body_forces":{"front":[0.0015226841205731034,5.012331712350715e-06],"lower":[0.001774910488165915,-0.00026725028874352574],"upper":[0.001782964332960546,0.00029834703309461474]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0015226841205731034,5.012331712350715e-06],"nonzero_action_slots":[3]},"lower":{"all_body_forces":{"front":[0.0015226836549118161,5.033804427512223e-06],"lower":[0.001774821663275361,-0.0002672670525498688],"upper":[0.0017829624703153968,0.0002983467129524797]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.001774821663275361,-0.0002672670525498688],"nonzero_action_slots":[5]},"upper":{"all_body_forces":{"front":[0.001522684469819069,5.034432888351148e-06],"lower":[0.0017749108374118805,-0.00026725028874352574],"upper":[0.0017829614225775003,0.00029832348809577525]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0017829614225775003,0.00029832348809577525],"nonzero_action_slots":[4]}},"steps":10},"kernel_binding":"action[id_obj] and obs[2*id_obj:2*id_obj+2] share id_obj","ppo_decoder":{"action_bias":[0.0,-2.0,2.0],"action_scale":8.0,"alpha":"normalized_action * action_scale + action_bias","native_slots":[3,4,5]},"runtime_centers":{"front":[380.0,255.5,0.0],"lower":[406.0,240.5,0.0],"upper":[406.0,270.5,0.0]},"runtime_verified":true,"scene":"illusion_1L","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"]} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/karman_re100.json b/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/karman_re100.json new file mode 100644 index 0000000..698e694 --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-order-20260717/order/karman_re100.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"body_object_ids":{"front":4,"lower":6,"upper":5},"contract_version":"legacy-pinball-order-v1","force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"geometry_order":[{"name":"front","y_offset_L":0.0},{"name":"upper","y_offset_L":0.75},{"name":"lower","y_offset_L":-0.75}],"impulse_test":{"epsilon":0.0001,"interpretation":"slot identity is exact; force magnitude is diagnostic and is not used to infer causality","responses":{"front":{"all_body_forces":{"front":[0.0013980194926261902,-0.001566489925608039],"lower":[0.0005189041839912534,-0.0011644548503682017],"upper":[0.001279669813811779,-0.0007272593793459237]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0013980194926261902,-0.001566489925608039],"nonzero_action_slots":[4]},"lower":{"all_body_forces":{"front":[0.00139801821205765,-0.001566477701999247],"lower":[0.0005189077346585691,-0.0011644635815173388],"upper":[0.001279669813811779,-0.0007272592629306018]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0005189077346585691,-0.0011644635815173388],"nonzero_action_slots":[6]},"upper":{"all_body_forces":{"front":[0.0012232150183990598,-0.0013707983307540417],"lower":[0.00045402199611999094,-0.0010189164895564318],"upper":[0.001119733089581132,-0.000636397220660001]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.001119733089581132,-0.000636397220660001],"nonzero_action_slots":[5]}},"steps":10},"kernel_binding":"action[id_obj] and obs[2*id_obj:2*id_obj+2] share id_obj","ppo_decoder":{"action_bias":[0.0,-4.0,4.0],"action_scale":8.0,"alpha":"normalized_action * action_scale + action_bias","native_slots":[4,5,6]},"runtime_centers":{"front":[600.0,255.5,0.0],"lower":[626.0,240.5,0.0],"upper":[626.0,270.5,0.0]},"runtime_verified":true,"scene":"karman_re100","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"]} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/illusion_1L.json b/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/illusion_1L.json new file mode 100644 index 0000000..fb38784 --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/illusion_1L.json @@ -0,0 +1 @@ +{"defect":{"channels":["front","upper","lower"],"max_abs_error":[1.2945531606674194,1.272725909948349,1.430443823337555],"n_samples":200,"range_normalized_rmse":[0.6892437268231738,0.6502160274020001,0.825318874375683],"rmse":[1.012832157186181,0.7045701048300163,0.9259000274176866]},"g_contract":"raw state and target are mirrored before PPO normalization/evaluation","interpretation":"A nonzero defect means hard-G fitting changes the empirical PPO policy and must be reported as physical symmetrization.","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json","sha256":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc"},"scene":"illusion_1L","schema_version":"sr-ppo-g-audit-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz","sha256":"755dfc4b3ef4e251c63800025271f751ec04daf9f0ed74bffc320185cfd78a51"}} diff --git a/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/karman_re100.json b/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/karman_re100.json new file mode 100644 index 0000000..60e7809 --- /dev/null +++ b/src/SR_analysis/results/runs/scientific-rebuild-symmetry-20260717/karman_re100.json @@ -0,0 +1 @@ +{"defect":{"channels":["front","upper","lower"],"max_abs_error":[0.5571811199188232,1.8738265633583069,1.165140986442566],"n_samples":200,"range_normalized_rmse":[0.07957200835942044,0.11727133340897052,0.10143873511474984],"rmse":[0.3495564278797266,0.7498523160872108,0.58438975392043]},"g_contract":"raw state and target are mirrored before PPO normalization/evaluation","interpretation":"A nonzero defect means hard-G fitting changes the empirical PPO policy and must be reported as physical symmetrization.","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json","sha256":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0"},"scene":"karman_re100","schema_version":"sr-ppo-g-audit-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz","sha256":"efd8eaab807dfbaa44b74514c2fa634ddf28d52c0d3e3877fa1a26489e384ddf"}} diff --git a/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_front.json new file mode 100644 index 0000000..8eb05ed --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"smoke-illusion-1L-20260716-per-scene-front_odd-anchor-upper","deployment_expression":"-2.32644380000000e-6","deployment_expression_hash":"9a6d4ef87280e61b77536cb3dc80b45e73a517c372407323ea3031fd56a9ae2e","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"-2.32644380000000e-6","fitted_expression_hash":"9a6d4ef87280e61b77536cb3dc80b45e73a517c372407323ea3031fd56a9ae2e","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"diagnostic_metrics":{"mae":0.4140186945193915,"r2":-2.0231594177744228e-11},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"smoke-illusion-1L-20260716","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..5058e73 --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-illusion-1L-20260716/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"smoke-illusion-1L-20260716-per-scene-rear_shared-anchor-upper","deployment_expression":"-1*1.1395792 + 1.450458/Cd_tot","deployment_expression_hash":"0742d95e4e659f3320e89059adc195378ebea9d9df698897f8f0825310f6b073","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"-1*1.1395792 + 1.450458/Cd_tot","fitted_expression_hash":"0742d95e4e659f3320e89059adc195378ebea9d9df698897f8f0825310f6b073","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"diagnostic_metrics":{"mae":0.20504339174015934,"r2":0.008061905570089123},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"smoke-illusion-1L-20260716","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_front.json new file mode 100644 index 0000000..55e95fe --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"smoke-illusion-1L-safe-20260716-per-scene-front_odd-anchor-upper","deployment_expression":"-2.32644380000000e-6","deployment_expression_hash":"9a6d4ef87280e61b77536cb3dc80b45e73a517c372407323ea3031fd56a9ae2e","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"-2.32644380000000e-6","fitted_expression_hash":"9a6d4ef87280e61b77536cb3dc80b45e73a517c372407323ea3031fd56a9ae2e","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"diagnostic_metrics":{"mae":0.4140186945193915,"r2":-2.0231594177744228e-11},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"smoke-illusion-1L-safe-20260716","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..0db69c7 --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-illusion-1L-safe-20260716/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"warmup":2},"anchor":"upper","artifact_id":"smoke-illusion-1L-safe-20260716-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.86876","deployment_expression_hash":"29ee9e2014dbb77a6561223facad5994a0853f7762acbfe3be34e0070089edb5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear","Cd_err","Cl_err","dCd_err_dt","dCl_err_dt"],"fitted_expression":"-1*1.1395792 + 1.450458/Cd_tot","fitted_expression_hash":"0742d95e4e659f3320e89059adc195378ebea9d9df698897f8f0825310f6b073","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"2203a482bd4cbbc208f704e94e5140d9e8cb40b7a32cff6e17efcf9443c308a5","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"8575820c988fb0cb23def6c38808e7549e7e00999baacf1545c10b60595f1929"}},"fit":{"diagnostic_metrics":{"mae":0.20504339174015934,"r2":0.008061905570089123},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"smoke-illusion-1L-safe-20260716","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_front.json new file mode 100644 index 0000000..7db6c22 --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"smoke-karman-re100-20260716-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.06816871)","deployment_expression_hash":"f225e7fadac25db2c2ec90ccdaf81ce7625d8cb8ee40cb3b0c45c57824370210","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"],"fitted_expression":"u_a*(-0.06816871)","fitted_expression_hash":"f225e7fadac25db2c2ec90ccdaf81ce7625d8cb8ee40cb3b0c45c57824370210","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"diagnostic_metrics":{"mae":0.6183954736949389,"r2":0.6909057599797939},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"front_odd","run_id":"smoke-karman-re100-20260716","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..f8a07bb --- /dev/null +++ b/src/SR_analysis/results/runs/smoke-karman-re100-20260716/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"warmup":2},"anchor":"upper","artifact_id":"smoke-karman-re100-20260716-per-scene-rear_shared-anchor-upper","deployment_expression":"0.04885959*du_a_dt - 3.349438","deployment_expression_hash":"c2b61405df05a42aac6733855413b19d2ea592529eaf84e8d1c9eace7c5873a4","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"]},"feature_names":["u_a","du_a_dt","Cl_tot","dCl_tot_dt","Cd_tot","Cd_rear"],"fitted_expression":"0.04885959*du_a_dt - 3.349438","fitted_expression_hash":"c2b61405df05a42aac6733855413b19d2ea592529eaf84e8d1c9eace7c5873a4","g_metadata":{"fitted_heads":["front_odd","rear_shared_anchor_upper"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"72c1d3bf48c4d3b78baedb84c975efaa980ddefba9ffd0333e0299bcf340357e","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"ea869a4ea9097f687ea93a2b4ca0d6964da5abe30cd3d70a7decd88ec849c834"}},"fit":{"diagnostic_metrics":{"mae":1.1729478468618753,"r2":0.33569193054925195},"g_augmented":true,"mode":"per-scene","n_samples":394,"niterations":2,"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":20260716,"smoke":true,"source_n_samples":197},"pysr":{"binary_operators":["+","-","*","/"],"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*","/"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":2,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":20260716,"tournament_selection_n":4,"unary_operators":["square"]},"unary_operators":["square"]}},"role":"rear_shared","run_id":"smoke-karman-re100-20260716","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json b/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json new file mode 100644 index 0000000..51dcdae --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.6364451179703696,-4.0,4.0],"min":[-1.8994505464280023,-4.0,4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.026364451179703697,-0.04,0.04],"min":[-0.018994505464280022,-0.04,0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L2-karman-front_feedback-20260717-karman_re100__pysr__f-6769ae4d536c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-17T16:05:53.168390+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"4656c239d67d5de8ff0e2e0fa9a65d08ca45405ba7ecc1efc441f4447b646a29"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"6769ae4d536c7428043c60d4a8454edcfe1c279e3715e8c7159d130e12c025ed","formula_hashes":{"front_deployment_expression":"e15670171eb7b7a705461ddfc7877eeea4decef21c8937504293610307fbc728","front_source":"2104dde19b4548fe0cf24cdf72a9a9668580b71c8067f93a0295be66aa5a9680","pair":"6769ae4d536c7428043c60d4a8454edcfe1c279e3715e8c7159d130e12c025ed","rear_deployment_expression":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","rear_source":"2de667802aa1475ad87928dabdea1a185509429903107f1bfcacfc2a2dc044e3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-5,"similarity":0.8837241544595195},"lag":-5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9159268756707509,"1":0.9094511017824213,"2":0.8442858636379242,"3":0.8113363296414415,"4":0.9127181549866994,"5":0.9086266010378798},"tail":{"lag":-5,"n_samples":40,"similarity":0.8837241544595195}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_rear_shared_upper.json --device 0 --steps 40 --run-id trusted-L2-karman-front_feedback-20260717","created_at":"2026-07-17T16:05:53.168358+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"414ad9bc593e91410ec049fd638419cfdef9c9ae223ca92d48104c452e18e524","run_id":"trusted-L2-karman-front_feedback-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-20260717/telemetry/karman_re100__pysr__f-6769ae4d536c__si-800.npz","sha256":"98cefd87f3f24e9b5bf323dc103b92219d7c122882a9eeb64c5e8e5b0c37de1a","telemetry_hash":"98cefd87f3f24e9b5bf323dc103b92219d7c122882a9eeb64c5e8e5b0c37de1a"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-v2-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json b/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-v2-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json new file mode 100644 index 0000000..755e8f6 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-v2-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.7067936685737222,-4.0,4.0],"min":[-1.8690557984294367,-4.0,4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.017067936685737223,-0.04,0.04],"min":[-0.018690557984294368,-0.04,0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L2-karman-front_feedback-v2-20260717-karman_re100__pysr__f-6769ae4d536c__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-17T16:20:08.195103+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"2c090a2f06311b28a45bda0c51d0dd216e7fb98503223ec512f147510623c023"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"6769ae4d536c7428043c60d4a8454edcfe1c279e3715e8c7159d130e12c025ed","formula_hashes":{"front_deployment_expression":"e15670171eb7b7a705461ddfc7877eeea4decef21c8937504293610307fbc728","front_source":"2104dde19b4548fe0cf24cdf72a9a9668580b71c8067f93a0295be66aa5a9680","pair":"6769ae4d536c7428043c60d4a8454edcfe1c279e3715e8c7159d130e12c025ed","rear_deployment_expression":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","rear_source":"2de667802aa1475ad87928dabdea1a185509429903107f1bfcacfc2a2dc044e3"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-5,"similarity":0.8752182050349399},"lag":-5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9042102177937825,"1":0.915149429285278,"2":0.8168405691782633,"3":0.814498760116597,"4":0.8963045299053192,"5":0.9043057239303987},"tail":{"lag":-5,"n_samples":40,"similarity":0.8752182050349399}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_rear_shared_upper.json --device 0 --steps 40 --run-id trusted-L2-karman-front_feedback-v2-20260717","created_at":"2026-07-17T16:20:08.195071+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"d4c3335f1a09e8cc4e6ed6f9e6f0b1ff5213ca512d1dc0118e9e9919c7105f7e","run_id":"trusted-L2-karman-front_feedback-v2-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L2-karman-front_feedback-v2-20260717/telemetry/karman_re100__pysr__f-6769ae4d536c__si-800.npz","sha256":"96c7aa3e1a650b87ae1bb067207d8b4df0628a2412efe37da34393532084e781","telemetry_hash":"96c7aa3e1a650b87ae1bb067207d8b4df0628a2412efe37da34393532084e781"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-L2-karman-rear_constant-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json b/src/SR_analysis/results/runs/trusted-L2-karman-rear_constant-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json new file mode 100644 index 0000000..68f3139 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L2-karman-rear_constant-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-4.0,4.0],"min":[0.0,-4.0,4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.04,0.04],"min":[0.0,-0.04,0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L2-karman-rear_constant-20260717-karman_re100__pysr__f-ddb9ca1f4e25__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-17T16:01:02.813101+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"120ee1518def2e63e58c172d569fee0342d0437ee96a33f094e031ef72cbfc2a"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ddb9ca1f4e25ca749d149e5a4fc59aa3044e8c3b1822f6ca1c198e4b6f49c6e4","formula_hashes":{"front_deployment_expression":"8aed642bf5118b9d3c859bd4be35ecac75b6e873cce34e7b6f554b06f75550d7","front_source":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6","pair":"ddb9ca1f4e25ca749d149e5a4fc59aa3044e8c3b1822f6ca1c198e4b6f49c6e4","rear_deployment_expression":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","rear_source":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-5,"similarity":0.8966989715079157},"lag":-5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9273510217666626,"1":0.922943989528964,"2":0.8231699049472809,"3":0.8487882077693939,"4":0.9297827700773875,"5":0.9281579349578047},"tail":{"lag":-5,"n_samples":40,"similarity":0.8966989715079157}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_rear_shared_upper.json --device 0 --steps 40 --run-id trusted-L2-karman-rear_constant-20260717","created_at":"2026-07-17T16:01:02.813066+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"da32d0c2bbe917ecb05a53ab983051c466370d63fa6cec7913730919ef031c25","run_id":"trusted-L2-karman-rear_constant-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L2-karman-rear_constant-20260717/telemetry/karman_re100__pysr__f-ddb9ca1f4e25__si-800.npz","sha256":"2ed5e66e6430d249e0fe51dc368fbf949ea9c057a618e434a3dfaf7a5bcb91fb","telemetry_hash":"2ed5e66e6430d249e0fe51dc368fbf949ea9c057a618e434a3dfaf7a5bcb91fb"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-L3-illusion_1L-ppo-v2-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json b/src/SR_analysis/results/runs/trusted-L3-illusion_1L-ppo-v2-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json new file mode 100644 index 0000000..e1afc78 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L3-illusion_1L-ppo-v2-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.9443251490592957,-0.43982648849487305,1.4847553968429565],"min":[-0.36043208837509155,-1.358992874622345,0.12408280372619629]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.009443251490592957,-0.0043982648849487304,0.014847553968429565],"min":[-0.0036043208837509156,-0.01358992874622345,0.0012408280372619629]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L3-illusion_1L-ppo-v2-20260717-illusion_1L__ppo__f-ppo__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"78ea15b7fb818363cff372a848aa16a5e7f59bd3c22a061fd397515ae923b28d","created_utc":"2026-07-17T16:47:15.535160+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"90a70b93f1584eef8abcc1cd7801abb14b1dfe4be3b54b835db4e7559ac27555"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":6,"similarity":0.9695795793819276},"lag":6,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.981941325796975,"1":0.955590740725812,"2":0.9777319778998693,"3":0.9484184623126768,"4":0.9758398450083203,"5":0.977955124547912},"tail":{"lag":6,"n_samples":72,"similarity":0.9695795793819276}},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene illusion_1L --mode ppo --device 0 --steps 200 --run-id trusted-L3-illusion_1L-ppo-v2-20260717","created_at":"2026-07-17T16:47:15.535131+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"016090fe0c08bb0b880ecfe618c18b9487bb3f04ec71d194f63b85db93c9e4d0","run_id":"trusted-L3-illusion_1L-ppo-v2-20260717","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L3-illusion_1L-ppo-v2-20260717/telemetry/illusion_1L__ppo__f-ppo__si-600.npz","sha256":"a6e64d945fc16a5ec98254f1b3bfe59120506116980eb717a6a1459c19e80e61","telemetry_hash":"a6e64d945fc16a5ec98254f1b3bfe59120506116980eb717a6a1459c19e80e61"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/audit_report.json b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/audit_report.json new file mode 100644 index 0000000..caed03e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"4f91a67bc0a3cac5e34dd1888f09873e6940cf70a7d2615ea896ed0623bdf7cf"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"ad4acb3a443d63daa3760028224835ddb3079589abee535930654c7a638c2006"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"61496bb0a486139557344dc0574568a2ba14f19ccc1f1973c7e077cebe5906d4"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"f97b024977e4aadfa5e1d61ba5118a083282c4eb753916eaa56c1e70d710f85e"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"271bec10515abc9e7b09589fb84a23517151a2df3fd655498cffa4f0eb59695d"},{"kind":"telemetry","path":"results/telemetry/karman_re100__pysr__f-ddb9ca1f4e25__si-800.npz","sha256":"2987fef95e967f6850fec211233f853aa41fcd43663bcf094a0d9035fe06f666"},{"kind":"validation","path":"results/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json","sha256":"44cbcf55f00fc66fab1b50673cc86cac2c6e631357cda0edf8f99db6f5132681"},{"kind":"formula","path":"results/formulas/karman_re100_front.json","sha256":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6"},{"kind":"formula","path":"results/formulas/karman_re100_rear_shared_upper.json","sha256":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff"}],"data_run_id":"trusted-baseline-karman-re100-20260717","errors":[],"formula_run_id":"trusted-karman-baseline-rear_constant-20260717","generated_at":"2026-07-17T16:40:54.672668+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"trusted-L3-karman-rear_constant-v2-20260717","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":11,"candidate_count":3,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/candidate_registry.json b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/candidate_registry.json new file mode 100644 index 0000000..317583c --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"trusted-L3-karman-rear_constant-v2-20260717-karman_re100__pysr__f-ddb9ca1f4e25__si-800","path":"results/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json","run_id":"trusted-L3-karman-rear_constant-v2-20260717","sha256":"44cbcf55f00fc66fab1b50673cc86cac2c6e631357cda0edf8f99db6f5132681","status":"candidate"},{"artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-front_odd-anchor-upper","path":"results/formulas/karman_re100_front.json","run_id":"trusted-L3-karman-rear_constant-v2-20260717","sha256":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6","status":"candidate"},{"artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-rear_shared-anchor-upper","path":"results/formulas/karman_re100_rear_shared_upper.json","run_id":"trusted-L3-karman-rear_constant-v2-20260717","sha256":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff","status":"candidate"}],"diagnostic_reason":null,"promotion_eligible":true,"run_id":"trusted-L3-karman-rear_constant-v2-20260717","schema_version":"sr-candidate-registry-v1","status":"candidate"} diff --git a/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json new file mode 100644 index 0000000..1f9595c --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,-4.0,4.0],"min":[0.0,-4.0,4.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,-0.04,0.04],"min":[0.0,-0.04,0.04]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L3-karman-rear_constant-v2-20260717-karman_re100__pysr__f-ddb9ca1f4e25__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-17T16:25:50.738346+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"68d62d396056e08b7f161a9b47d9398f85c7166269687f31460230f3a5214338"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"ddb9ca1f4e25ca749d149e5a4fc59aa3044e8c3b1822f6ca1c198e4b6f49c6e4","formula_hashes":{"front_deployment_expression":"8aed642bf5118b9d3c859bd4be35ecac75b6e873cce34e7b6f554b06f75550d7","front_source":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6","pair":"ddb9ca1f4e25ca749d149e5a4fc59aa3044e8c3b1822f6ca1c198e4b6f49c6e4","rear_deployment_expression":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","rear_source":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff"},"formula_validation":{"deployment_semantics":"mapped_shared","front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-8,"similarity":0.8996770159755316},"lag":-8,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9208663920561473,"1":0.9382135912155112,"2":0.8279135048389434,"3":0.8594140966733297,"4":0.9216165403525034,"5":0.9300379707167545},"tail":{"lag":-8,"n_samples":60,"similarity":0.8996770159755316}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_rear_shared_upper.json --device 0 --steps 200 --run-id trusted-L3-karman-rear_constant-v2-20260717","created_at":"2026-07-17T16:25:50.738316+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"852cb99fc84cc4c78038caf60b99cc3c43d3e02ad8ec6930e5c3f7f17ab6fabd","run_id":"trusted-L3-karman-rear_constant-v2-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L3-karman-rear_constant-v2-20260717/telemetry/karman_re100__pysr__f-ddb9ca1f4e25__si-800.npz","sha256":"2987fef95e967f6850fec211233f853aa41fcd43663bcf094a0d9035fe06f666","telemetry_hash":"2987fef95e967f6850fec211233f853aa41fcd43663bcf094a0d9035fe06f666"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-L3-karman_re100-ppo-v2-20260717/validations/karman_re100__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/trusted-L3-karman_re100-ppo-v2-20260717/validations/karman_re100__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..91be191 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-L3-karman_re100-ppo-v2-20260717/validations/karman_re100__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[2.3480536937713623,-1.0825121402740479,7.69134783744812],"min":[-2.682091236114502,-7.255599737167359,1.5286951065063477]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.023480536937713625,-0.010825121402740478,0.0769134783744812],"min":[-0.02682091236114502,-0.07255599737167359,0.015286951065063477]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-L3-karman_re100-ppo-v2-20260717-karman_re100__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":0,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"400e65cc44dd385159640150d82877dccc2f841f635e2244c2e23d0937beda5c","created_utc":"2026-07-17T16:44:44.702708+00:00","data_hashes":{"harmonics":null,"norm":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0","target_sensors":"a14eb51cd5e1793ef92186bfe7c3d6d2bd4cc842ceb3a657a7b8d56b66d006ef"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-6,"similarity":0.9539500113405261},"lag":-6,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9781857510407765,"1":0.970160219015088,"2":0.8714980284372965,"3":0.9607972914973895,"4":0.9730947216351827,"5":0.9699640564174236},"tail":{"lag":-6,"n_samples":60,"similarity":0.9539500113405261}},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode ppo --device 0 --steps 200 --run-id trusted-L3-karman_re100-ppo-v2-20260717","created_at":"2026-07-17T16:44:44.702631+00:00","environment":{"conda_env":"pycuda_3_10","device":0},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"10f350a6de87953e2b632cf335b450346d82a887f0153c71a8acaef323502091","run_id":"trusted-L3-karman_re100-ppo-v2-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-L3-karman_re100-ppo-v2-20260717/telemetry/karman_re100__ppo__f-ppo__si-800.npz","sha256":"bc94fb7601fbf5f7ba27afb74fa513e281ad01b4d3dd4e3f72ff43bd8793cba6","telemetry_hash":"bc94fb7601fbf5f7ba27afb74fa513e281ad01b4d3dd4e3f72ff43bd8793cba6"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..299f294 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_diff*u_a*0.0016405138","deployment_expression_hash":"c90ef1ad5c6ea07cfefdb96efef033427f011218b94732bec7332a595e3076af","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_diff*u_a*0.0016405138","fitted_expression_hash":"c90ef1ad5c6ea07cfefdb96efef033427f011218b94732bec7332a595e3076af","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:31:36.959773+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.29175058666727066,"r2":0.2191834500467209},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3234424990921626,"r2":0.1042655796123314},"train":{"mae":0.29175058666727066,"r2":0.2191834500467209},"validation":{"mae":0.4005765754699645,"r2":0.19995672428762112}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.29046191106933883,0.43872148823818513],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.62132950000000e-7","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"u_a*0.0009861793","loss":0.16384868,"score":0.020901341105554888},{"complexity":6.0,"expression":"Cl_diff*u_a*0.0016405138","loss":0.13339718,"score":0.10280616256782917}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..dd2e557 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.004701721*u_c - 0.4721991","deployment_expression_hash":"4e1067838b9bdd4fd550121f4d0ae2a7b184101890b2910102fb1ce9fcb3c047","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-0.004701721*u_c - 0.4721991","fitted_expression_hash":"4e1067838b9bdd4fd550121f4d0ae2a7b184101890b2910102fb1ce9fcb3c047","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:31:37.579583+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23455047907284693,"r2":0.020933506344674502},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19275801764205322,"r2":0.040510742099331365},"train":{"mae":0.23455047907284693,"r2":0.020933506344674502},"validation":{"mae":0.19218434679560858,"r2":0.11462730220984896}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9422355056566596,-0.7513109302792669],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852562700000000","loss":0.08339845,"score":0.0},{"complexity":7.0,"expression":"-0.004701721*u_c - 0.4721991","loss":0.08165264,"score":0.004231114407424218}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..bff8e7c --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*0.008951574","deployment_expression_hash":"f60dbd48d7b0d0d03e93b03a6e72b1b3785238131292ad9412589111ea167fc7","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*0.008951574","fitted_expression_hash":"f60dbd48d7b0d0d03e93b03a6e72b1b3785238131292ad9412589111ea167fc7","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:32:17.604908+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2971947727718775,"r2":0.19664387024837404},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3251948890518923,"r2":0.10333442932500991},"train":{"mae":0.2971947727718775,"r2":0.19664387024837404},"validation":{"mae":0.40920443850043847,"r2":0.18280016721347314}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3418654509195864,0.3418654509195864],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-9.39971130000000e-7","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"u_a*0.008951574","loss":0.13724792,"score":0.10947853786335972},{"complexity":7.0,"expression":"u_a*0.008952298 + 3.2434872e-7","loss":0.1372479,"score":4.857390296035479e-08}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..c716bcc --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852557360000000","deployment_expression_hash":"143c5870fea8b1781209b7a62b0f34cc57049dfa91c4112004552990170cef98","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-0.852557360000000","fitted_expression_hash":"143c5870fea8b1781209b7a62b0f34cc57049dfa91c4112004552990170cef98","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:32:18.184551+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523809052092096,"r2":-2.3092638912203256e-14},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938382254044817,"r2":-0.0002328978747896393},"train":{"mae":0.23523809052092096,"r2":-2.3092638912203256e-14},"validation":{"mae":0.2089545879897249,"r2":-0.00965071484482638}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.85255736,-0.85255736],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852557360000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..1bc1719 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"-1.88127430000000e-7","deployment_expression_hash":"6ac3a0a81a84cd3730c6d274a3bc68a3b3924f0b364775bd48d5a79293d07e1f","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-1.88127430000000e-7","fitted_expression_hash":"6ac3a0a81a84cd3730c6d274a3bc68a3b3924f0b364775bd48d5a79293d07e1f","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:32:57.592744+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.3245315991847192,"r2":-2.071676163950542e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-1.5432100042289676e-13},"train":{"mae":0.3245315991847192,"r2":-2.071676163950542e-13},"validation":{"mae":0.4747171795521027,"r2":-1.1235457009206584e-13}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.8812743e-07,-1.8812743e-07],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_tot","loss":1.4517384,"score":0.0},{"complexity":2.0,"expression":"-1.88127430000000e-7","loss":0.17084317,"score":2.139771012689204},{"complexity":4.0,"expression":"u_a*0.005827271","loss":0.1413404,"score":0.09478741793033796}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..098e5e1 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_only-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852557100000000","deployment_expression_hash":"0d8fdb911ec93b69e974a3bfcbe85ddfd65a6425522f45589a3f79c33c5be945","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-0.852557100000000","fitted_expression_hash":"0d8fdb911ec93b69e974a3bfcbe85ddfd65a6425522f45589a3f79c33c5be945","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:32:58.132369+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523810153787011,"r2":-5.60218538225854e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938384204044818,"r2":-0.0002328640647706326},"train":{"mae":0.23523810153787011,"r2":-5.60218538225854e-13},"validation":{"mae":0.20895459465639157,"r2":-0.009650915444393782}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525571,-0.8525571],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852557100000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..76fe042 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*0.008951574","deployment_expression_hash":"f60dbd48d7b0d0d03e93b03a6e72b1b3785238131292ad9412589111ea167fc7","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"u_a*0.008951574","fitted_expression_hash":"f60dbd48d7b0d0d03e93b03a6e72b1b3785238131292ad9412589111ea167fc7","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:37:20.822458+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2971947727718775,"r2":0.19664387024837404},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3251948890518923,"r2":0.10333442932500991},"train":{"mae":0.2971947727718775,"r2":0.19664387024837404},"validation":{"mae":0.40920443850043847,"r2":0.18280016721347314}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.3418654509195864,0.3418654509195864],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"3.93470070000000e-5","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"u_a*0.008951574","loss":0.13724792,"score":0.10947853786335972}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_target-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..387b714 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852568700000000","deployment_expression_hash":"f7c4b7dd60d274dd0abf9c2176c77a79195cdf601a29304bf9c52d40b3cadc41","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"-0.852568700000000","fitted_expression_hash":"f7c4b7dd60d274dd0abf9c2176c77a79195cdf601a29304bf9c52d40b3cadc41","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:37:21.228527+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2352376100124464,"r2":-1.5539018960453177e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.1993829720404482,"r2":-0.0002343748996973538},"train":{"mae":0.2352376100124464,"r2":-1.5539018960453177e-09},"validation":{"mae":0.20895429722049416,"r2":-0.009641967645970695}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525687,-0.8525687],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852568700000000","loss":0.08339845,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_target-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..8ae4765 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0025842720546617*u_a","deployment_expression_hash":"accba17c08abeca3b96831cf7e9eeecc9d3b8732a1457339382aaa35c8ca4c2a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"0.0025842720546617*u_a","fitted_expression_hash":"accba17c08abeca3b96831cf7e9eeecc9d3b8732a1457339382aaa35c8ca4c2a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:37:59.509262+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.30646154680165455,"r2":0.09715087052988369},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.35975710454455473,"r2":0.06486353285367241},"train":{"mae":0.30646154680165455,"r2":0.09715087052988369},"validation":{"mae":0.45152586790771126,"r2":0.08080190298007817}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.09869474700938718,0.09869474700938718],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.47468380000000e-6","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"target_Cl*(-0.061916582)","loss":0.16259938,"score":0.024728250019909397},{"complexity":5.0,"expression":"0.0025842720546617*u_a","loss":0.15424563,"score":0.0527430523162236},{"complexity":7.0,"expression":"u_a*0.0025842720546617*Cl_diff","loss":0.14578994,"score":0.028189756593150688}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_target-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..b745ca3 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852557360000000","deployment_expression_hash":"143c5870fea8b1781209b7a62b0f34cc57049dfa91c4112004552990170cef98","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"-0.852557360000000","fitted_expression_hash":"143c5870fea8b1781209b7a62b0f34cc57049dfa91c4112004552990170cef98","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:38:00.259941+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523809052092096,"r2":-2.3092638912203256e-14},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938382254044817,"r2":-0.0002328978747896393},"train":{"mae":0.23523809052092096,"r2":-2.3092638912203256e-14},"validation":{"mae":0.2089545879897249,"r2":-0.00965071484482638}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.85255736,-0.85255736],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_m","loss":9159.1045,"score":0.0},{"complexity":2.0,"expression":"-0.852557360000000","loss":0.083398454,"score":11.606629197839942}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_target-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..b7c8f6b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0046316014414569*u_a","deployment_expression_hash":"45b3aa75054c756e1b058beddb2ba2e9a342fd786faf383c746f30eac0125c61","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"0.0046316014414569*u_a","fitted_expression_hash":"45b3aa75054c756e1b058beddb2ba2e9a342fd786faf383c746f30eac0125c61","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:38:34.810190+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2959686680560874,"r2":0.15084617036819303},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.34445176281544415,"r2":0.09606263159914219},"train":{"mae":0.2959686680560874,"r2":0.15084617036819303},"validation":{"mae":0.43393752708924155,"r2":0.12866339754000422}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.1768833632234364,0.1768833632234364],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.25246360000000e-5","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"Cl_tot*(-0.04707815)","loss":0.16824867,"score":0.00765146879219501},{"complexity":5.0,"expression":"0.0046316014414569*u_a","loss":0.14507216,"score":0.1482117897864549}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-actual_target-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..11b1aa9 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-actual_target-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-actual_target-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852525400000000","deployment_expression_hash":"7c46a926871aa15410ac029610ec04fc93c6b4d7bd568f3c0b97375eca848801","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl"],"fitted_expression":"-0.852525400000000","fitted_expression_hash":"7c46a926871aa15410ac029610ec04fc93c6b4d7bd568f3c0b97375eca848801","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-actual_target-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile actual_target --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:38:35.341999+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523944475820913,"r2":-1.2214108835451043e-08},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"actual_target","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.1993862195404482,"r2":-0.00022876023468931805},"train":{"mae":0.23523944475820913,"r2":-1.2214108835451043e-08},"validation":{"mae":0.20895540747690447,"r2":-0.00967538878355656}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525254,-0.8525254],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852525400000000","loss":0.08339845,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-actual_target-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..0388e75 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*0.00763143152054423","deployment_expression_hash":"1a429cb54d9cac78dde5f8fbabc71f0293e5f97439b7d147c758e5a04aca5239","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"u_a*0.00763143152054423","fitted_expression_hash":"1a429cb54d9cac78dde5f8fbabc71f0293e5f97439b7d147c758e5a04aca5239","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:35:26.149869+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.29369964021670164,"r2":0.19236702341694256},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3287085774390059,"r2":0.10954328686157055},"train":{"mae":0.29369964021670164,"r2":0.19236702341694256},"validation":{"mae":0.4141265058140217,"r2":0.17300212417308958}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2914484958659559,0.2914484958659559],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.72606780000000e-6","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.16730525","loss":0.15516639,"score":0.048123988078072194},{"complexity":5.0,"expression":"u_a*0.00763143152054423","loss":0.13797858,"score":0.11739956929998702}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-error_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..9940998 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852562700000000","deployment_expression_hash":"f16850dc36cf3e01353fe61393dd4225290a102ede7122dc1d2170b02aaa64c5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"-0.852562700000000","fitted_expression_hash":"f16850dc36cf3e01353fe61393dd4225290a102ede7122dc1d2170b02aaa64c5","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:35:26.716659+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523786424973456,"r2":-3.4756397759849733e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938342204044818,"r2":-0.00023359282341250953},"train":{"mae":0.23523786424973456,"r2":-3.4756397759849733e-10},"validation":{"mae":0.20895445106664803,"r2":-0.009646595299451333}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525627,-0.8525627],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":0.35924637,"score":0.0},{"complexity":2.0,"expression":"-0.852562700000000","loss":0.08339845,"score":1.46037869646385}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-error_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..a1c3a83 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"-8.62724500000000e-7","deployment_expression_hash":"3c68e88b83ab3322c8bac5e57733e87f16491d07bea1da38df250d6715106633","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"-8.62724500000000e-7","fitted_expression_hash":"3c68e88b83ab3322c8bac5e57733e87f16491d07bea1da38df250d6715106633","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:36:04.479835+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.3245315991847192,"r2":-4.356737193234039e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-3.2456259901891826e-12},"train":{"mae":0.3245315991847192,"r2":-4.356737193234039e-12},"validation":{"mae":0.4747171795521029,"r2":-2.3643309532417334e-12}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-8.627245e-07,-8.627245e-07],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_err","loss":0.5368106,"score":0.0},{"complexity":2.0,"expression":"-8.62724500000000e-7","loss":0.17084317,"score":1.1448993309347397},{"complexity":4.0,"expression":"Cl_err*0.20934872","loss":0.15450767,"score":0.05025113102802184}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-error_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..6469e47 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852562700000000","deployment_expression_hash":"f16850dc36cf3e01353fe61393dd4225290a102ede7122dc1d2170b02aaa64c5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"-0.852562700000000","fitted_expression_hash":"f16850dc36cf3e01353fe61393dd4225290a102ede7122dc1d2170b02aaa64c5","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:36:05.045672+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523786424973456,"r2":-3.4756397759849733e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938342204044818,"r2":-0.00023359282341250953},"train":{"mae":0.23523786424973456,"r2":-3.4756397759849733e-10},"validation":{"mae":0.20895445106664803,"r2":-0.009646595299451333}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525627,-0.8525627],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852562700000000","loss":0.08339845,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-error_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..7090bae --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0090319971557124*u_a","deployment_expression_hash":"d456fb9580ecccae295343e6f1b13f5caf96f3a59174a4486772b52fae18762a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"0.0090319971557124*u_a","fitted_expression_hash":"d456fb9580ecccae295343e6f1b13f5caf96f3a59174a4486772b52fae18762a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:36:42.432113+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2975207480825964,"r2":0.1966279981475162},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3250581620938892,"r2":0.10271638559642493},"train":{"mae":0.2975207480825964,"r2":0.1966279981475162},"validation":{"mae":0.408904585876841,"r2":0.18320520202953827}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.344936854718739,0.344936854718739],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.74504370000000e-6","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.1461594","loss":0.15599579,"score":0.04545849073433816},{"complexity":5.0,"expression":"0.0090319971557124*u_a","loss":0.13725065,"score":0.12802020344403914}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-error_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..c11a291 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-error_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-error_only-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852525400000000","deployment_expression_hash":"7c46a926871aa15410ac029610ec04fc93c6b4d7bd568f3c0b97375eca848801","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","Cd_err","Cl_err"],"fitted_expression":"-0.852525400000000","fitted_expression_hash":"7c46a926871aa15410ac029610ec04fc93c6b4d7bd568f3c0b97375eca848801","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-error_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile error_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:36:42.992306+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523944475820913,"r2":-1.2214108835451043e-08},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"error_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.1993862195404482,"r2":-0.00022876023468931805},"train":{"mae":0.23523944475820913,"r2":-1.2214108835451043e-08},"validation":{"mae":0.20895540747690447,"r2":-0.00967538878355656}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525254,-0.8525254],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852525400000000","loss":0.08339845,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-error_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..f230278 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.46789360000000e-6","deployment_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.46789360000000e-6","fitted_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:39:16.597633+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-9.3958174574027e-12},"train":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"validation":{"mae":0.4747171795521024,"r2":-6.844302902209165e-12}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4678936e-06,1.4678936e-06],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear","loss":10.864832,"score":0.0},{"complexity":2.0,"expression":"1.46789360000000e-6","loss":0.17084315,"score":4.152540545968608},{"complexity":4.0,"expression":"Cl_err*0.20931156","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"(0.350017714966702*Cd_err**2)*Cl_err","loss":0.14872341,"score":0.012718488991371976}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..c303dda --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852556300000000","deployment_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852556300000000","fitted_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:39:17.154750+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938390204044817,"r2":-0.00023276004933703298},"train":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"validation":{"mae":0.20895461516921215,"r2":-0.009651532686907993}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525563,-0.8525563],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852556300000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..44529ef --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*(-Cd_tot + Cl_diff)","deployment_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*(-Cd_tot + Cl_diff)","fitted_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:40:00.044602+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2989838976129138,"r2":0.14488314488853016},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.43579744880945626,"r2":-0.23664083193315077},"train":{"mae":0.2989838976129138,"r2":0.14488314488853016},"validation":{"mae":0.5193253144066831,"r2":-0.10286841775897582}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19834207548753663,1.4063250133424854],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.36272260000000e-5","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20933855","loss":0.15450767,"score":0.05025107249480349},{"complexity":5.0,"expression":"Cl_err*(-Cd_tot + Cl_diff)","loss":0.14609088,"score":0.05601484530821117}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..44233f0 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852565800000000","deployment_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852565800000000","fitted_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:40:00.559179+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938318954044817,"r2":-0.0002339967329636483},"train":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"validation":{"mae":0.20895437157946853,"r2":-0.009644204206525231}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525658,-0.8525658],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":423.0876,"score":0.0},{"complexity":2.0,"expression":"-0.852565800000000","loss":0.08339845,"score":8.531704804726266}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..8330479 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*0.20936066","deployment_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*0.20936066","fitted_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:40:37.225143+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.33218822325817815,"r2":0.09561696234652872},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.39723988675036953,"r2":-0.03698161213989448},"train":{"mae":0.33218822325817815,"r2":0.09561696234652872},"validation":{"mae":0.47071803609990653,"r2":0.03888097873316354}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2749302103858895,0.2749302103858895],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.42350550000000e-6","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20936066","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"0.04007675678724*Cl_diff*Cl_err","loss":0.15017776,"score":0.009474693330943982}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..a2a83f8 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852574100000000","deployment_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852574100000000","fitted_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile feedforward_feedback --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:40:38.398327+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"feedforward_feedback","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938256704044818,"r2":-0.00023507988585658168},"train":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"validation":{"mae":0.20895415875895568,"r2":-0.009637803707104764}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525741,-0.8525741],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.8803632,"score":0.0},{"complexity":2.0,"expression":"-0.852574100000000","loss":0.08339845,"score":3.5420419522296642},{"complexity":7.0,"expression":"0.097858846*Cl_err - 0.80893475","loss":0.077822834,"score":0.013838967958672815}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-feedforward_feedback-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..da4f899 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"6.1476858755524e-5*(target_Cd - target_Cl)**2","deployment_expression_hash":"deb68f242ddfdb1facd9cc05c4ec28f62be229f25183ca31f014e8faa1db6ed2","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"6.1476858755524e-5*(target_Cd - target_Cl)**2","fitted_expression_hash":"deb68f242ddfdb1facd9cc05c4ec28f62be229f25183ca31f014e8faa1db6ed2","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:33:34.348509+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.32439854134479884,"r2":0.0010533903580429715},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3829300556299722,"r2":-0.003043168865791701},"train":{"mae":0.32439854134479884,"r2":0.0010533903580429715},"validation":{"mae":0.47506149875087783,"r2":-0.0018821189083084722}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0008209744453069231,0.003594707161545106],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.28623260000000e-6","loss":0.17084317,"score":0.0},{"complexity":7.0,"expression":"6.1476858755524e-5*(target_Cd - target_Cl)**2","loss":0.17066324,"score":0.0002107486259471805}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-target_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..5d9620f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"target_Cl*0.018665303 - 0.8525571","deployment_expression_hash":"59ad01d1b9d788432da6cd834915339e4be679808c0a9ef3ff350a4c27f49c5a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cl*0.018665303 - 0.8525571","fitted_expression_hash":"59ad01d1b9d788432da6cd834915339e4be679808c0a9ef3ff350a4c27f49c5a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:33:34.885564+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23351352497863964,"r2":0.008982964395453541},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19318485480126488,"r2":0.03732296135647939},"train":{"mae":0.23351352497863964,"r2":0.008982964395453541},"validation":{"mae":0.208929246647065,"r2":0.022018412134990006}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.892488471367943,-0.812625728632057],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852571300000000","loss":0.08339845,"score":0.0},{"complexity":7.0,"expression":"target_Cl*0.018665303 - 0.8525571","loss":0.08264929,"score":0.001804698054317416}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-target_only-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..600a49b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"target_Cl*(-0.061915856)","deployment_expression_hash":"443273600af6de20ca558332dc7f7b30e0be6dedfb99d5a95feb7ec635e99383","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"target_Cl*(-0.061915856)","fitted_expression_hash":"443273600af6de20ca558332dc7f7b30e0be6dedfb99d5a95feb7ec635e99383","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:34:10.657926+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.3221954430995406,"r2":0.04825361694581032},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.4457850019212796,"r2":-0.3066017371558636},"train":{"mae":0.3221954430995406,"r2":0.04825361694581032},"validation":{"mae":0.517148403724893,"r2":-0.1915456113644558}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.13245887513854354,0.13245887513854354],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.36272260000000e-5","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"target_Cl*(-0.061915856)","loss":0.16259938,"score":0.024728250019909397},{"complexity":7.0,"expression":"(-target_Cl - 0.00036261394)*0.061916973","loss":0.16259937,"score":2.0500283805114226e-08}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-target_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..990cea8 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"0.07851547*target_Cd - 1*1.2978225","deployment_expression_hash":"be5de420248db0e085ac0649767fb233542bdc679ac18d73ef417f079ae5cf1a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"0.07851547*target_Cd - 1*1.2978225","fitted_expression_hash":"be5de420248db0e085ac0649767fb233542bdc679ac18d73ef417f079ae5cf1a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:34:11.260281+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23464840954962538,"r2":0.001096276598610002},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.20076875905095165,"r2":-0.02476871227564814},"train":{"mae":0.23464840954962538,"r2":0.001096276598610002},"validation":{"mae":0.21145441556157757,"r2":-0.027248372144579758}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8654067092115386,-0.8429292133975728],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852565800000000","loss":0.08339845,"score":0.0},{"complexity":7.0,"expression":"0.07851547*target_Cd - 1*1.2978225","loss":0.083307035,"score":0.00021934493436221732}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-target_only-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..3b8c409 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.47202140000000e-6","deployment_expression_hash":"ed3d619a24799dabcf67cc09a8bfd51ca9efe5ea03e190a91a3c1605fb48b38d","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"1.47202140000000e-6","fitted_expression_hash":"ed3d619a24799dabcf67cc09a8bfd51ca9efe5ea03e190a91a3c1605fb48b38d","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:34:46.711250+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.32453159918471913,"r2":-1.2683187833317788e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-9.448664073374857e-12},"train":{"mae":0.32453159918471913,"r2":-1.2683187833317788e-11},"validation":{"mae":0.4747171795521029,"r2":-6.8829386634661205e-12}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4720214e-06,1.4720214e-06],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.587517,"score":0.0},{"complexity":2.0,"expression":"1.47202140000000e-6","loss":0.17084315,"score":2.7177081234922222},{"complexity":4.0,"expression":"target_Cl*(-0.009299762)","loss":0.16855276,"score":0.006748533799604208},{"complexity":6.0,"expression":"target_Cd*target_Cl*(-0.010851857)","loss":0.1626613,"score":0.017789345835701575}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-ablation-illusion_1L-target_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..140cee6 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-ablation-illusion_1L-target_only-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-ablation-illusion_1L-target_only-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852631570000000","deployment_expression_hash":"869777b4688307398ff149382ff1b43d9f91bb9353409e4bc61581d49a6e1cf5","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["target_Cd","target_Cl"]},"feature_names":["target_Cd","target_Cl"],"fitted_expression":"-0.852631570000000","fitted_expression_hash":"869777b4688307398ff149382ff1b43d9f91bb9353409e4bc61581d49a6e1cf5","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-ablation-illusion_1L-target_only-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --feature-profile target_only --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:34:47.869124+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523494602939554,"r2":-6.61120194145326e-08},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"target_only","feature_set":"physics_reduced","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19937825679044818,"r2":-0.00024264835590526168},"train":{"mae":0.23523494602939554,"r2":-6.61120194145326e-08},"validation":{"mae":0.20895268516921214,"r2":-0.00959354431740489}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.85263157,-0.85263157],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852631570000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-ablation-illusion_1L-target_only-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/illusion_1L.json b/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/illusion_1L.json new file mode 100644 index 0000000..444f7b4 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/illusion_1L.json @@ -0,0 +1 @@ +{"comparison_semantics":{"alignment":"same recorded index; no lag optimization","metric_algorithm":"legacy_dtw_v1_abs_n_unclipped","metric_window":{"state":"last 36 recorded samples","target":"indices 36:72"},"transient_count":50},"interpretation":"Differences are reported, not auto-accepted; frequency phase is descriptive and is not a physical-delay estimate.","legacy_dtw":{"algorithm":"legacy_dtw_v1_abs_n_unclipped","candidate_with_candidate_target":0.9720213095199681,"historical_with_historical_target":0.9753732477509874,"window_label":"legacy_reference_cycle_vs_last_recorded_cycle"},"lengths":{"aligned":200,"candidate":{"actions":200,"forces":200,"sensors":200},"historical":{"actions":200,"forces":200,"sensors":200}},"scene":"illusion_1L","schema_version":"sr-trajectory-equivalence-v1","segments":{"all_recorded_steps":{"actions":{"candidate_frequency":{"bin":[9,8,8],"cycles_per_sample":[0.045,0.04,0.04],"phase_rad":[1.1227396468585926,-1.2857060880235776,-1.404264771000018]},"candidate_mean":[0.03836623625829816,0.13322472620755435,-0.15462076490744947],"candidate_range":[0.1597633957862854,0.15351365506649017,0.368330430239439],"candidate_std":[0.04256542983756725,0.026340003631551506,0.04482366947716858],"channels":["front","upper","lower"],"max_abs_error":[0.14535735547542572,0.16540831327438354,0.2145787477493286],"n_aligned":200,"range_normalized_rmse":[0.3972712660199951,0.317298047527607,0.44588751630483237],"reference_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[-2.579826695493144,2.1520865921011163,2.768857981217888]},"reference_mean":[0.0423145005106926,0.13118245093151926,-0.15221906445920466],"reference_range":[0.18368542194366455,0.13544924184679985,0.14238572865724564],"reference_std":[0.0494625440177007,0.02573411027260616,0.0323143446611943],"rmse":[0.0729729401249766,0.042977779977084234,0.06348801890823305]},"forces":{"candidate_frequency":{"bin":[9,9,9,8,9,8],"cycles_per_sample":[0.045,0.045,0.045,0.04,0.045,0.04],"phase_rad":[0.421193552846381,3.0637485748769384,2.8492741854444645,0.09674649268366345,-0.7232913689871874,0.32460352712707125]},"candidate_mean":[0.0019504636927740648,-0.00041430094155543885,0.001397262345708441,0.0030086027935612948,0.0020417753868969156,-0.002628296526381746],"candidate_range":[0.0006181825883686543,0.0011986058379989117,0.001567143714055419,0.0018984158523380756,0.0014383902307599783,0.002455054665915668],"candidate_std":[0.00014297933911711937,0.0003282306886166617,0.0004141468870088559,0.0005312635540223864,0.00037974876277966204,0.0006691977849770797],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.0005982446018606424,0.0010904112277785316,0.001366540091112256,0.001856065820902586,0.0010996622731909156,0.002412730478681624],"n_aligned":200,"range_normalized_rmse":[0.3331840643501345,0.4554123943881111,0.3522109899338232,0.4615217217005863,0.36943843881669897,0.5406475947482823],"reference_frequency":{"bin":[8,8,8,8,8,8],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[3.1119700296420008,-0.9354670463453961,-0.9626672625070453,-2.29488374113613,1.7769827444978559,-2.0371590824854344]},"reference_mean":[0.0020082284003729,-0.0004652403249323811,0.0013307585941220168,0.003011701711220667,0.002044748239568435,-0.0026337406481616197],"reference_range":[0.0007850595284253359,0.001160685540526174,0.0019178721122443676,0.0023270174860954285,0.0014736192533746362,0.0022543813101947308],"reference_std":[0.00019406821418894575,0.0003229012188467394,0.0004656307721158811,0.0006822938713956254,0.00039813192107858393,0.00068009739100518],"rmse":[0.00026156932443755334,0.0005285905811426839,0.0006754956352200613,0.0010739691166101323,0.0005444115963769552,0.0012188258330022624]},"sensors":{"candidate_frequency":{"bin":[9,9,1,9,9,9],"cycles_per_sample":[0.045,0.045,0.005,0.045,0.045,0.045],"phase_rad":[0.6336434896104587,-1.2502953789490565,1.1947491769174687,-1.1333164767223152,-2.5253019483658496,-1.296258007448239]},"candidate_mean":[1.0068304532766341,-0.033545971574203574,0.8464792966842651,0.004967746471520513,1.0187008941173554,0.04096563946979586],"candidate_range":[0.7327187657356262,0.8407626152038574,0.40607380867004395,1.3705716729164124,0.7588776350021362,1.019199401140213],"candidate_std":[0.208154587185301,0.27169519693903776,0.09336219629968975,0.5205375264881815,0.22135080204125726,0.32555205880235033],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.6271116137504578,0.7848008275032043,0.3096132278442383,1.339410662651062,0.639011561870575,0.9462900161743164],"n_aligned":200,"range_normalized_rmse":[0.4437059234121477,0.38669469675278,0.1999288633013458,0.5850408548301712,0.36501536903741755,0.5218872594195679],"reference_frequency":{"bin":[8,8,1,8,8,8],"cycles_per_sample":[0.04,0.04,0.005,0.04,0.04,0.04],"phase_rad":[-3.1222441966526286,1.1723670314156287,1.0357783625625843,1.3221796835714894,-0.002479097730412706,1.1723803188508486]},"reference_mean":[1.006383445262909,-0.03687808928079903,0.8810239711403847,0.005904864240437746,0.9848371128737926,0.04254286666226108],"reference_range":[0.753079354763031,1.1477200984954834,0.5898169577121735,1.4058889150619507,0.9505437314510345,0.9461762011051178],"reference_std":[0.21185892475507828,0.3019165543612503,0.11419240291777193,0.5117425159967779,0.22806344605485418,0.3068046646960398],"rmse":[0.33414577050775507,0.4438172754447818,0.11792143391125279,0.8225024526641056,0.3469630709218033,0.49379730452276793]}},"initial_control_segment":{"actions":{"candidate_frequency":{"bin":[2,2,2],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[1.9393919166143287,-1.5161819476274763,-2.0311661922620865]},"candidate_mean":[0.03559289015829563,0.13806366324424743,-0.16290333382785321],"candidate_range":[0.11720145493745804,0.15351365506649017,0.368330430239439],"candidate_std":[0.03187913493095037,0.03906215401270571,0.06211785891394196],"channels":["front","upper","lower"],"max_abs_error":[0.12783366441726685,0.16540831327438354,0.2145787477493286],"n_aligned":50,"range_normalized_rmse":[0.4587926233923468,0.47374389535257644,0.704970240635062],"reference_frequency":{"bin":[2,2,2],"cycles_per_sample":[0.04,0.04,0.04],"phase_rad":[-1.2880697438090456,2.2949346822427144,1.9724009929261388]},"reference_mean":[0.041022650599479675,0.13976298071444035,-0.15589562207460403],"reference_range":[0.1416231244802475,0.13544924184679985,0.10256445407867432],"reference_std":[0.0402738672471517,0.035582054151759,0.02487525416124943],"rmse":[0.06497564481331364,0.06416825145505617,0.0723048878724468]},"forces":{"candidate_frequency":{"bin":[2,2,2,2,2,2],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[0.6096199064596955,-1.711140551185997,-2.133403723235616,0.5019751055969377,0.399885286478977,0.22943806175229903]},"candidate_mean":[0.001861609756015241,-0.0003956033822032623,0.00125533070997335,0.0027874541003257034,0.0018214001646265387,-0.0024937558569945394],"candidate_range":[0.0003193402662873268,0.0007302158592210617,0.0008844758267514408,0.0012962059117853642,0.0011641229502856731,0.001768861198797822],"candidate_std":[7.853306651096408e-05,0.00021561240264528602,0.00024349098501510717,0.00037125613240098805,0.00026536855505432725,0.0005575158673493247],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.00044792250264436007,0.0007171750476118177,0.0009240776998922229,0.00150429573841393,0.0010996622731909156,0.001439009327441454],"n_aligned":50,"range_normalized_rmse":[0.4449339758053683,0.4698852836628842,0.5724356393855585,0.46910006198180293,0.5832263302899986,0.6264180409687317],"reference_frequency":{"bin":[2,2,2,2,2,2],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-2.1829072363869764,0.763278035129562,0.5921056832884491,-1.8622330194257757,-2.7887352466680717,-2.1679118836981557]},"reference_mean":[0.0019189249398186804,-0.00048035474015705403,0.0011478108016308398,0.002714579589664936,0.0017514397646300494,-0.002407660421449691],"reference_range":[0.00048407353460788727,0.0008088626191238291,0.0008288410608656704,0.0018151665572077036,0.0007891248678788543,0.0015471354126930237],"reference_std":[0.00015398281316539233,0.00019989587887289423,0.0002513620347396014,0.0005758070533133926,0.0002290328371285673,0.0005062279713122829],"rmse":[0.00021538076233524483,0.00038007264123130386,0.0004744581626256447,0.0008514947444934296,0.00046023840083356417,0.000969153534332514]},"sensors":{"candidate_frequency":{"bin":[2,2,4,2,2,2],"cycles_per_sample":[0.04,0.04,0.08,0.04,0.04,0.04],"phase_rad":[1.6948664978747434,-0.30507978830439497,-1.0226374475002615,-0.06640953954764474,-1.4987060936071241,-0.24282995047254735]},"candidate_mean":[1.016020439863205,-0.023376573584973814,0.8268630385398865,0.05460252251476049,1.037804332971573,0.08631984723964706],"candidate_range":[0.6509045362472534,0.7073006927967072,0.26416659355163574,1.1694741249084473,0.6749672889709473,0.7026771903038025],"candidate_std":[0.19836053772299125,0.23774434933309954,0.07526050275752338,0.46174950704178475,0.1961758348333239,0.235828389200232],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.6271116137504578,0.6417351365089417,0.3096132278442383,1.1226508021354675,0.639011561870575,0.6358169317245483],"n_aligned":50,"range_normalized_rmse":[0.5616118290269244,0.6070321271271963,0.311281339871141,0.7611286702280773,0.5510060031184898,0.6149317029790904],"reference_frequency":{"bin":[2,2,4,2,2,2],"cycles_per_sample":[0.04,0.04,0.08,0.04,0.04,0.04],"phase_rad":[-1.7260447498065574,2.5742495769860385,-1.7042320207280177,2.7886374973417833,1.4708045281525486,2.561831231819096]},"reference_mean":[1.0346153712272643,-0.06373692724853754,0.9012946772575379,0.00334972582757473,1.0088738048076629,0.06613354028202593],"reference_range":[0.6570020914077759,0.6985883414745331,0.41432589292526245,1.1222357153892517,0.6623792052268982,0.6987980604171753],"reference_std":[0.18809615504914728,0.20916687262518746,0.0922457918985678,0.4169914362596838,0.1857623085690726,0.2338780706917016],"rmse":[0.3689801462300356,0.424065566911546,0.1289719190930826,0.8541657777366761,0.36497491842087504,0.42971308133081887]}},"post_initial_segment":{"actions":{"candidate_frequency":{"bin":[6,13,6],"cycles_per_sample":[0.04,0.08666666666666667,0.04],"phase_rad":[-0.9906061160954532,-1.6250468698978937,-1.1730272240230077]},"candidate_mean":[0.039290684958299,0.13161174719532331,-0.15185990860064824],"candidate_range":[0.1597633957862854,0.09358274936676025,0.140950545668602],"candidate_std":[0.04553653756525083,0.020150358752815234,0.0369077636592437],"channels":["front","upper","lower"],"max_abs_error":[0.14535735547542572,0.08124691247940063,0.12365354597568512],"n_aligned":150,"range_normalized_rmse":[0.41075970650455035,0.33156704547779847,0.4297333246208353],"reference_frequency":{"bin":[6,12,6],"cycles_per_sample":[0.04,0.08,0.04],"phase_rad":[-2.8170094890127215,-1.9075576950993853,2.944017172280188]},"reference_mean":[0.04274511714776357,0.12832227433721224,-0.15099354525407155],"reference_range":[0.18368542194366455,0.0995851531624794,0.14023367315530777],"reference_std":[0.0521598935693995,0.02069402350619171,0.0343514504598048],"rmse":[0.07545057000674414,0.03301915500753733,0.060263082588821994]},"forces":{"candidate_frequency":{"bin":[6,6,6,6,6,6],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[-1.3812648431533563,0.7037990434108374,0.6885707654865615,0.015784353439745834,-2.9785941534767155,0.3489384358438789]},"candidate_mean":[0.0019800816716936728,-0.0004205334613394977,0.0014445728909534712,0.003082319024639825,0.002115233794320375,-0.0026731434161774816],"candidate_range":[0.0005605763290077448,0.0011986058379989117,0.001567143714055419,0.0018984158523380756,0.0013192855985835195,0.002455054665915668],"candidate_std":[0.00014728456246154844,0.0003577646805701079,0.00044718499676542984,0.0005555549018148639,0.0003836936146913852,0.0006967409458888902],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.0005982446018606424,0.0010904112277785316,0.001366540091112256,0.001856065820902586,0.0010228168684989214,0.002412730478681624],"n_aligned":150,"range_normalized_rmse":[0.3507816320105938,0.49070521261886646,0.38079285799806706,0.5168998998502682,0.4422509895799375,0.57282550580839],"reference_frequency":{"bin":[6,6,6,6,6,6],"cycles_per_sample":[0.04,0.04,0.04,0.04,0.04,0.04],"phase_rad":[2.8939254514838177,-1.113972604868772,-1.1315389859738194,-2.4072738773541222,1.5930440362739726,-2.005490919790751]},"reference_mean":[0.00203799622055764,-0.0004602021865241568,0.0013917411916190758,0.0031107424184059103,0.002142517731214563,-0.002709100723732263],"reference_range":[0.0007846718654036522,0.001160685540526174,0.0019178721122443676,0.0022025678772479296,0.0012882105074822903,0.0022543813101947308],"reference_std":[0.00019689735300489772,0.0003543998834071609,0.0005031363847197673,0.0006862548615428601,0.0003944927476658372,0.0007131417330351439],"rmse":[0.0002752484775390901,0.0005695544449475402,0.0007303120028963224,0.0011385071151628727,0.0005697123717213164,0.0012913671142972775]},"sensors":{"candidate_frequency":{"bin":[6,6,1,6,6,6],"cycles_per_sample":[0.04,0.04,0.006666666666666667,0.04,0.04,0.04],"phase_rad":[-1.7652712673840054,2.7087647988706767,2.040653289729345,2.776555832787736,1.2993121949195752,2.710224966805956]},"candidate_mean":[1.003767124414444,-0.036935770903946834,0.853018049399058,-0.011577178876226148,1.0123330811659494,0.025847570213178794],"candidate_range":[0.7327187657356262,0.8407626152038574,0.40607380867004395,1.3705716729164124,0.7588776350021362,1.019199401140213],"candidate_std":[0.2112295891005511,0.28202414532872894,0.09779023821682391,0.5376925528029487,0.22877438928871294,0.3490839777629661],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.6089309453964233,0.7848008275032043,0.2591097950935364,1.339410662651062,0.6087437272071838,0.9462900161743164],"n_aligned":150,"range_normalized_rmse":[0.42717567867424744,0.3922634556525935,0.20332780528820812,0.5773383397187446,0.35847652011581244,0.5425882879391573],"reference_frequency":{"bin":[6,6,1,6,6,6],"cycles_per_sample":[0.04,0.04,0.006666666666666667,0.04,0.04,0.04],"phase_rad":[2.872914624124355,0.9634468919410606,2.2429637488689855,1.0617961347905054,-0.2675888183769385,0.9531562582750629]},"reference_mean":[0.9969728032747904,-0.02792514329155286,0.8742670691013337,0.006756577044725418,0.9768248822291692,0.03467930878900612],"reference_range":[0.753079354763031,1.1477200984954834,0.5606717169284821,1.4058889150619507,0.9505437314510345,0.9461762011051178],"reference_std":[0.21839866472248734,0.3265485056787335,0.11986445777288221,0.5396390916852128,0.2399817745454283,0.32714697545976335],"rmse":[0.3216971844664621,0.4502086519577733,0.11400014969023974,0.8116735720508538,0.3407476090684662,0.5133841250464016]}}},"sources":{"candidate":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz","sha256":"77326cc4c55d9308c1239ccb5a98f9da346fd5c050dfcc74e6f33a552068b385"},"candidate_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/target.npz","sha256":"8992231d8691e4585f1f4a7effef8abb7f6bc2d4e1d2a1ccf0ece29d7a5fc9cb"},"historical":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/controlled.npz","sha256":"755dfc4b3ef4e251c63800025271f751ec04daf9f0ed74bffc320185cfd78a51"},"historical_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/target.npz","sha256":"33c0034102b14b340473393bf1a4ab4d564547efecd7d9af3302254e9e150bea"}},"status":"diagnostic_only"} diff --git a/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/karman_re100.json b/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/karman_re100.json new file mode 100644 index 0000000..92f9cd7 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-baseline-comparison-20260717/karman_re100.json @@ -0,0 +1 @@ +{"comparison_semantics":{"alignment":"same recorded index; no lag optimization","metric_algorithm":"legacy_dtw_v1_abs_n_unclipped","metric_window":{"state":"last 30 recorded samples","target":"indices 30:60"},"transient_count":50},"interpretation":"Differences are reported, not auto-accepted; frequency phase is descriptive and is not a physical-delay estimate.","legacy_dtw":{"algorithm":"legacy_dtw_v1_abs_n_unclipped","candidate_with_candidate_target":0.9533619948248897,"historical_with_historical_target":0.9538050162761161,"window_label":"legacy_reference_cycle_vs_last_recorded_cycle"},"lengths":{"aligned":200,"candidate":{"actions":200,"forces":200,"sensors":200},"historical":{"actions":200,"forces":200,"sensors":200}},"scene":"karman_re100","schema_version":"sr-trajectory-equivalence-v1","segments":{"all_recorded_steps":{"actions":{"candidate_frequency":{"bin":[11,11,11],"cycles_per_sample":[0.055,0.055,0.055],"phase_rad":[-1.2628409322441507,2.717724489415884,2.9036660187562826]},"candidate_mean":[-0.044304754002951086,-0.02467299206648022,0.016510513294488192],"candidate_range":[0.6368253529071808,0.7715695798397064,0.7726228535175323],"candidate_std":[0.17158888606093542,0.2586374574931768,0.2252594838397421],"channels":["front","upper","lower"],"max_abs_error":[0.6222594678401947,0.735149621963501,0.6077123135328293],"n_aligned":200,"range_normalized_rmse":[0.6143842334427059,0.6298804599185379,0.5601149990496986],"reference_frequency":{"bin":[11,11,11],"cycles_per_sample":[0.055,0.055,0.055],"phase_rad":[1.8376419298203397,-0.48071112455705756,-0.24938317571404314]},"reference_mean":[-0.04914626975543797,-0.0263767179986462,0.016117193349637092],"reference_range":[0.549119621515274,0.799270749092102,0.7201264798641205],"reference_std":[0.16832261127817727,0.2601658336556034,0.22260478544192702],"rmse":[0.33737043773301045,0.5034450270375675,0.4033536425847547]},"forces":{"candidate_frequency":{"bin":[22,11,11,11,11,11],"cycles_per_sample":[0.11,0.055,0.055,0.055,0.055,0.055],"phase_rad":[-2.4500812062998123,-0.12660710418136603,2.513147422214139,2.9695443686777763,-0.6807608760767162,2.7977727705216693]},"candidate_mean":[0.001383804472839074,-2.701194433029741e-05,-0.0002447275819167771,0.004481063825078308,-0.0011920356381233432,-0.004191880282014608],"candidate_range":[0.007093096850439906,0.00844153156504035,0.014328821562230587,0.005650202743709087,0.01520995981991291,0.005230063106864691],"candidate_std":[0.0020453018931421677,0.0025831233305444443,0.0038625132934464513,0.001218918306990349,0.004571654297623264,0.00158646520157685],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.003391828155145049,0.009387136436998844,0.01359042339026928,0.004308472853153944,0.014995746314525604,0.004731269786134362],"n_aligned":200,"range_normalized_rmse":[0.22636925952318834,0.607892752481418,0.6072117315438954,0.4921013231656617,0.5953196940698454,0.5225218689871781],"reference_frequency":{"bin":[22,11,11,11,11,11],"cycles_per_sample":[0.11,0.055,0.055,0.055,0.055,0.055],"phase_rad":[-2.5331731659049797,2.990232586954184,-0.6482791810510494,-0.18806866491678437,2.405679342627121,-0.3831276219555834]},"reference_mean":[0.0013462766748898502,-0.00013415981802609168,-3.160206584652769e-05,0.0044492575002368535,-0.0013895798838257179,-0.004215381638496183],"reference_range":[0.0074716069502756,0.008486719569191337,0.012168195098638535,0.004188308957964182,0.014985654503107071,0.005486090900376439],"reference_std":[0.0020580022164770496,0.0025780487431812694,0.00373934963397055,0.0011618713714950262,0.004629421614849414,0.0016140830641823388],"rmse":[0.0016913421327821952,0.005159015318453636,0.007388670815608246,0.0020610723800407677,0.008921255254226103,0.002866602470698248]},"sensors":{"candidate_frequency":{"bin":[11,11,22,11,11,11],"cycles_per_sample":[0.055,0.055,0.11,0.055,0.055,0.055],"phase_rad":[1.7090106102893767,-0.0002863029362634859,-0.24106727569209638,0.028148808245757353,-1.4148349278489447,-0.056857931352627566]},"candidate_mean":[1.052713756263256,-0.013545041639590636,0.9844746747612954,0.003835464876901824,1.0290940672159195,0.01865269317990169],"candidate_range":[0.5118919014930725,0.7900503575801849,0.1835484504699707,1.1726054549217224,0.6182600259780884,0.8229496479034424],"candidate_std":[0.15847865005995904,0.2749491630824102,0.03387119683768912,0.4272658922722009,0.16624993534318178,0.2727972861272099],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.49516814947128296,0.7761520445346832,0.10292822122573853,1.1843690276145935,0.5784665942192078,0.8131764531135559],"n_aligned":200,"range_normalized_rmse":[0.612883296885983,0.7045713161395372,0.15990523843538787,0.7384596516294955,0.5965117784452054,0.6762855354105388],"reference_frequency":{"bin":[11,11,22,11,11,11],"cycles_per_sample":[0.055,0.055,0.11,0.055,0.055,0.055],"phase_rad":[-1.478406902476382,3.1029412160403966,-0.3715242318064858,3.1299469359474346,1.6901415600220246,3.0439921604207907]},"reference_mean":[1.0504455202817917,-0.019296457979944535,0.9837046203017235,-0.0040982861537486315,1.032193047106266,0.013352721758419648],"reference_range":[0.5136637687683105,0.7768682837486267,0.16875159740447998,1.1515044569969177,0.5504645705223083,0.8031053841114044],"reference_std":[0.15720035333680454,0.27342657286868793,0.03486612523630628,0.42387831937491127,0.1631527042054997,0.27191286010726656],"rmse":[0.31481594409360136,0.5473591091478334,0.02698426441931595,0.8503395801637552,0.3283585999333383,0.5431285546848675]}},"initial_control_segment":{"actions":{"candidate_frequency":{"bin":[3,3,3],"cycles_per_sample":[0.06,0.06,0.06],"phase_rad":[-2.1295500022299167,1.8317735271932778,1.8614114965267665]},"candidate_mean":[-0.014334104526787995,-0.013678767774254084,0.03019158256240189],"candidate_range":[0.6077589988708496,0.7534213364124298,0.7726228535175323],"candidate_std":[0.1679559256265081,0.2519724719776836,0.24001085116170617],"channels":["front","upper","lower"],"max_abs_error":[0.6222594678401947,0.735149621963501,0.6077123135328293],"n_aligned":50,"range_normalized_rmse":[0.5942080301457985,0.6341813758491387,0.5745201006916424],"reference_frequency":{"bin":[3,3,3],"cycles_per_sample":[0.06,0.06,0.06],"phase_rad":[0.9715868166747443,-1.4524785716365756,-1.269340992389911]},"reference_mean":[-0.05722680609673261,-0.033685290683060885,0.008019656231626869],"reference_range":[0.549119621515274,0.7926493883132935,0.7201264798641205],"reference_std":[0.1578587293669122,0.266157104431973,0.21313602610869833],"rmse":[0.3262912886149974,0.5026834796465026,0.4137271377222525]},"forces":{"candidate_frequency":{"bin":[6,3,3,3,3,3],"cycles_per_sample":[0.12,0.06,0.06,0.06,0.06,0.06],"phase_rad":[1.9281310909201237,-1.0801876456735267,1.629584605508102,2.0461279441129867,-1.5357040205382937,1.7369312718609133]},"candidate_mean":[0.001401829902206373,-1.8246585968881847e-05,-0.0008041533626965247,0.004499862617813051,-0.0007019607610709499,-0.004033918196801096],"candidate_range":[0.0065316997934132814,0.00839589536190033,0.014133292250335217,0.005650202743709087,0.014466418884694576,0.005000504199415445],"candidate_std":[0.0018999766825717771,0.0027612033233773417,0.004334618961468803,0.0014178598206367552,0.004480666930616898,0.0014073920665575725],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.002739593153819442,0.009387136436998844,0.01359042339026928,0.004308472853153944,0.014995746314525604,0.004519055248238146],"n_aligned":50,"range_normalized_rmse":[0.18028231686109536,0.6481110262005642,0.6603765566217655,0.5395460547336643,0.606589086118736,0.5015125976432134],"reference_frequency":{"bin":[6,3,3,3,3,3],"cycles_per_sample":[0.12,0.06,0.06,0.06,0.06,0.06],"phase_rad":[1.9184680730683628,2.0540154731237967,-1.5524260148721711,-1.2560260843074325,1.5434701173823986,-1.1839899209038542]},"reference_mean":[0.0013572376567935862,-9.985472424887121e-05,-4.244956180627923e-05,0.004264599699527025,-0.0015126043845521053,-0.004247092769946903],"reference_range":[0.007459776825271547,0.008486719569191337,0.012168195098638535,0.004188308957964182,0.014985654503107071,0.005251894355751574],"reference_std":[0.0020043093773067823,0.0027420280360752783,0.0038745649363198273,0.0011760654905273663,0.0048621292766187815,0.0015828823445517425],"rmse":[0.001344865849326661,0.005500336529065007,0.00803559077954076,0.002259785574275239,0.009090134469930839,0.0026338911809007026]},"sensors":{"candidate_frequency":{"bin":[3,3,1,3,3,3],"cycles_per_sample":[0.06,0.06,0.02,0.06,0.06,0.06],"phase_rad":[0.6241288732208818,-1.2050186577568216,0.40017500205448975,-1.1858564780409842,-2.5382526421057756,-1.2351839779844238]},"candidate_mean":[1.0241139805316926,-0.023889673724770546,0.9493199551105499,-0.02276426586206071,1.0297752296924592,0.0012359211593866348],"candidate_range":[0.4774255156517029,0.7861120998859406,0.1570643186569214,1.1726054549217224,0.6182600259780884,0.8229496479034424],"candidate_std":[0.13310850966808974,0.25419672737822524,0.0359371575270852,0.39585638991543637,0.1532843730627767,0.2686759017618328],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.4821576476097107,0.7761520445346832,0.10292822122573853,1.1843690276145935,0.5784665942192078,0.8131764531135559],"n_aligned":50,"range_normalized_rmse":[0.5432778068899937,0.6650520287505507,0.21647489926887575,0.6755808331577087,0.5413160553072976,0.6526576505630977],"reference_frequency":{"bin":[3,3,1,3,3,3],"cycles_per_sample":[0.06,0.06,0.02,0.06,0.06,0.06],"phase_rad":[-2.6049637780243877,1.8987695149440615,0.2767969243420343,1.912465744485863,0.5557961595760834,1.8492359794701414]},"reference_mean":[1.046710776090622,-0.0016347660985775291,0.9508500480651856,0.01964407917112112,1.0137652206420897,0.02399670890532434],"reference_range":[0.485385537147522,0.7634842693805695,0.1628730297088623,1.1515044569969177,0.5313736796379089,0.8031053841114044],"reference_std":[0.130556949198202,0.25448072477471495,0.0420829187480593,0.3820825424533879,0.13691604550944908,0.2568963638390226],"rmse":[0.2636991901176273,0.5077567622706797,0.03525792269984258,0.7779343404427926,0.2876411041557166,0.5241528731487233]}},"post_initial_segment":{"actions":{"candidate_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-2.034747166075616,1.9619332834728425,2.2149736933442328]},"candidate_mean":[-0.05429497049500545,-0.028337733497222264,0.011950156871850292],"candidate_range":[0.5332107692956924,0.7715695798397064,0.6904655396938324],"candidate_std":[0.1716237524536121,0.26071826881555776,0.21993375468930296],"channels":["front","upper","lower"],"max_abs_error":[0.5278861820697784,0.7313046753406525,0.5844109803438187],"n_aligned":150,"range_normalized_rmse":[0.6445759140740508,0.6464243709503572,0.5836017532268287],"reference_frequency":{"bin":[8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[1.0629761301648832,-1.2095866940213937,-0.9590369282115052]},"reference_mean":[-0.04645275764167309,-0.023940527103841303,0.018816372388973834],"reference_range":[0.5290044099092484,0.7792073488235474,0.6851179003715515],"reference_std":[0.17158434985219126,0.2580918566804832,0.2256081925014698],"rmse":[0.3409835010664576,0.5036986203031572,0.39983600782392126]},"forces":{"candidate_frequency":{"bin":[17,8,8,8,8,8],"cycles_per_sample":[0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-0.8096585593639929,-0.8330545490925138,1.773179900028222,2.215763643089995,-1.4453586651610466,2.0488152453445903]},"candidate_mean":[0.001377795996383308,-2.9933730450769264e-05,-5.8252321656861266e-05,0.0044747975608333945,-0.001355393930474141,-0.004244534310419113],"candidate_range":[0.006991294329054654,0.0074328945484012365,0.011431862600147724,0.0038642273284494877,0.013931103516370058,0.005191831383854151],"candidate_std":[0.0020914663692072955,0.0025209626685172223,0.0036728661811909805,0.0011448798616270814,0.0045899703973129626,0.0016384408802030104],"channels":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"max_abs_error":[0.003391828155145049,0.0074345872271806,0.010521521791815758,0.0032425113022327423,0.013188336044549942,0.004731269786134362],"n_aligned":150,"range_normalized_rmse":[0.2585393631172475,0.6793546555776926,0.6359723016721761,0.5225308071258045,0.6397183777118336,0.5587532652277665],"reference_frequency":{"bin":[17,8,8,8,8,8],"cycles_per_sample":[0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-0.8511216964601687,2.2735201812094172,-1.3930123803738725,-0.9229745547186011,1.6488845744499951,-1.1707887434714586]},"reference_mean":[0.0013426230142552717,-0.00014559484928516515,-2.7986233859943847e-05,0.004510810100473463,-0.0013485717169169221,-0.004204811261345942],"reference_range":[0.0069312810664996505,0.007418963825330138,0.011258436366915703,0.0038092127069830894,0.01385648362338543,0.005261861952021718],"reference_std":[0.0020755783307555118,0.0025209161310240954,0.0036931708329316962,0.0011505340247668907,0.00454846848996259,0.0016242125518899097],"rmse":[0.0017920089925194556,0.005040107614300517,0.007160053689497112,0.001990430990293744,0.008864247224342717,0.002940082546869884]},"sensors":{"candidate_frequency":{"bin":[8,8,17,8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[0.9727549525697978,-0.6755516578334351,1.4313302194049733,-0.657573417003941,-2.149879767041354,-0.7364363388270719]},"candidate_mean":[1.062247014840444,-0.010096830944530667,0.9961929146448771,0.012702041789889335,1.028867013057073,0.024458283853406707],"candidate_range":[0.4982433319091797,0.7735087275505066,0.09321033954620361,1.109455168247223,0.5176199078559875,0.7530918717384338],"candidate_std":[0.16497823949848014,0.28144242219034243,0.023450279729059244,0.4368748467337495,0.1703520338770154,0.27391132293081627],"channels":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"max_abs_error":[0.49516814947128296,0.7655594050884247,0.05515211820602417,1.1054878234863281,0.5143810510635376,0.7608928978443146],"n_aligned":150,"range_normalized_rmse":[0.6653256028278552,0.7313661309817436,0.2601644720854344,0.793165308587809,0.6678317924970951,0.7191351543173106],"reference_frequency":{"bin":[8,8,17,8,8,8],"cycles_per_sample":[0.05333333333333334,0.05333333333333334,0.11333333333333333,0.05333333333333334,0.05333333333333334,0.05333333333333334],"phase_rad":[-2.211772700419401,2.431528337777407,1.3664347797675418,2.442742280404438,0.9554986210349455,2.3623785924665235]},"reference_mean":[1.0516904350121816,-0.025183688607066868,0.9946561443805695,-0.012012407928705216,1.038335655927658,0.009804726042784751],"reference_range":[0.49614882469177246,0.7656053304672241,0.09067386388778687,1.1008315682411194,0.5103858709335327,0.7638454735279083],"reference_std":[0.16511015476613544,0.27920841075411534,0.02346901609800244,0.4366358701920576,0.17056419741818812,0.2766463524248761],"rmse":[0.33010051588038536,0.5599378084028129,0.023590117930312605,0.8731414105271692,0.3408519110507322,0.5493081324800715]}}},"sources":{"candidate":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz","sha256":"4f91a67bc0a3cac5e34dd1888f09873e6940cf70a7d2615ea896ed0623bdf7cf"},"candidate_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/target.npz","sha256":"f97b024977e4aadfa5e1d61ba5118a083282c4eb753916eaa56c1e70d710f85e"},"historical":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/controlled.npz","sha256":"efd8eaab807dfbaa44b74514c2fa634ddf28d52c0d3e3877fa1a26489e384ddf"},"historical_target":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/target.npz","sha256":"c50dd977de325d605027f5332904290ce6d9b5e166b9e0530ba9fbc3eed7c1dd"}},"status":"diagnostic_only"} diff --git a/src/SR_analysis/results/runs/trusted-baseline-illusion-uncontrolled-20260717/validations/illusion_1L__uncontrolled__f-none__si-600.json b/src/SR_analysis/results/runs/trusted-baseline-illusion-uncontrolled-20260717/validations/illusion_1L__uncontrolled__f-none__si-600.json new file mode 100644 index 0000000..f722c19 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-baseline-illusion-uncontrolled-20260717/validations/illusion_1L__uncontrolled__f-none__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,0.0,0.0],"min":[0.0,0.0,0.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,0.0,0.0],"min":[0.0,0.0,0.0]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-baseline-illusion-uncontrolled-20260717-illusion_1L__uncontrolled__f-none__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-17T14:39:06.597770+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"563587b3549807398cb1b47b38a4af4ffce1280a55310be71b8701e0b0f9ebcc"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-6,"similarity":0.9182367332590123},"lag":-6,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9189573874076208,"1":0.9623637486042248,"2":0.7736764715777503,"3":0.9455193661981158,"4":0.9592853850788541,"5":0.9496180406875081},"tail":{"lag":-6,"n_samples":72,"similarity":0.9182367332590123}},"mode":"uncontrolled","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene illusion_1L --mode uncontrolled --device 2 --steps 200 --run-id trusted-baseline-illusion-uncontrolled-20260717","created_at":"2026-07-17T14:39:06.597738+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"21b301ec88cec53960ccbddd272d1575b5deb3d85c77e552e62c26e9b5c7771c","run_id":"trusted-baseline-illusion-uncontrolled-20260717","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-baseline-illusion-uncontrolled-20260717/telemetry/illusion_1L__uncontrolled__f-none__si-600.npz","sha256":"ef1e556f433f5e60e9082cce7b18f5131ab7653833eafdb857c68724b40f72ff","telemetry_hash":"ef1e556f433f5e60e9082cce7b18f5131ab7653833eafdb857c68724b40f72ff"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-baseline-karman-uncontrolled-20260717/validations/karman_re100__uncontrolled__f-none__si-800.json b/src/SR_analysis/results/runs/trusted-baseline-karman-uncontrolled-20260717/validations/karman_re100__uncontrolled__f-none__si-800.json new file mode 100644 index 0000000..ea942c7 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-baseline-karman-uncontrolled-20260717/validations/karman_re100__uncontrolled__f-none__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.0,0.0,0.0],"min":[0.0,0.0,0.0]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.0,0.0,0.0],"min":[0.0,0.0,0.0]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-baseline-karman-uncontrolled-20260717-karman_re100__uncontrolled__f-none__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-17T14:36:01.636264+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"1b904d7140d800ed78164b687c645779a6361af2d634c5e635ff0c5613ce8292"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-13,"similarity":0.6484452502401029},"lag":-13,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.6411612336834271,"1":0.7958010270105054,"2":0.15715818280975025,"3":0.7345555350650101,"4":0.7390158633391062,"5":0.8229796595328177},"tail":{"lag":-13,"n_samples":60,"similarity":0.6484452502401029}},"mode":"uncontrolled","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode uncontrolled --device 2 --steps 200 --run-id trusted-baseline-karman-uncontrolled-20260717","created_at":"2026-07-17T14:36:01.636235+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"3c26c4f34adcf6a02bc3cd4fa34af72ce87bcf48b04e5e6c4b016d3ca6d0b8e7","run_id":"trusted-baseline-karman-uncontrolled-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-baseline-karman-uncontrolled-20260717/telemetry/karman_re100__uncontrolled__f-none__si-800.npz","sha256":"af85d12747a954c947720ba061398cc575292e18ce5a0964db88dc913da42654","telemetry_hash":"af85d12747a954c947720ba061398cc575292e18ce5a0964db88dc913da42654"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/evidence_manifest.json b/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/evidence_manifest.json new file mode 100644 index 0000000..bce2c2f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/evidence_manifest.json @@ -0,0 +1,89 @@ +{ + "schema_version": "sr-trusted-evidence-v1", + "status": "manual_review_required", + "canonical_registry_updated": false, + "scope": ["karman_re100", "illusion_1L"], + "environment_contract": { + "fitting": "sr_env", + "cfd": "pycuda_3_10", + "physical_gpu": 2, + "cfd_concurrency": "serial" + }, + "metric": "legacy_dtw_v1_abs_n_unclipped", + "common_steps": 200, + "karman_re100": { + "decision": "rear_constant_is_a_supported_physical_baseline; tested_front_feedback_rejected", + "controllers": { + "uncontrolled": { + "law": ["0", "0", "0"], + "similarity": 0.6484452502401029, + "validation": "../trusted-baseline-karman-uncontrolled-20260717/validations/karman_re100__uncontrolled__f-none__si-800.json" + }, + "ppo": { + "similarity": 0.953950, + "validation": "../trusted-L3-karman_re100-ppo-v2-20260717/validations/karman_re100__ppo__f-ppo__si-800.json" + }, + "rear_constant": { + "law": ["0", "-4", "+4"], + "similarity": 0.8996770159755316, + "formula_run": "../trusted-karman-baseline-rear_constant-20260717/formulas", + "validation": "../trusted-L3-karman-rear_constant-v2-20260717/validations/karman_re100__pysr__f-ddb9ca1f4e25__si-800.json", + "audit": "../trusted-L3-karman-rear_constant-v2-20260717/audit_report.json" + }, + "front_feedback_rejected": { + "law": ["-0.3208584*Cd_rear_a", "-4", "+4"], + "short_steps": 40, + "short_similarity": 0.8752182050349399, + "reason": "stable but worse than rear_constant and PPO in L2; front alpha range expanded to [-1.8691, 1.7068]", + "validation": "../trusted-L2-karman-front_feedback-v2-20260717/validations/karman_re100__pysr__f-6769ae4d536c__si-800.json" + } + }, + "limitations": [ + "No multi-initial-condition L4 claim is made.", + "The rear constant law explains much, but not all, of PPO performance.", + "The rejected feedback result applies only to the tested Cd_rear_a term and coefficient." + ] + }, + "illusion_1L": { + "decision": "retain_existing_closed_loop_success_as_numerical_reference_only; target_mechanism_not_established", + "controllers": { + "uncontrolled": { + "law": ["0", "0", "0"], + "similarity": 0.9182367332590123, + "validation": "../trusted-baseline-illusion-uncontrolled-20260717/validations/illusion_1L__uncontrolled__f-none__si-600.json" + }, + "ppo": { + "similarity": 0.969580, + "validation": "../trusted-L3-illusion_1L-ppo-v2-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json" + }, + "numerical_reference": { + "front_law": "-0.28730434*(2*Cl_F-Cl_rear_s+0.019382002*v_c)", + "upper_law": "0.2596029*(-Cd_F+Cl_err+Cl_rear_a)^2-1.0869426", + "lower_law": "-upper(Gx)", + "similarity": 0.9753355227240483, + "formula_run": "../rebuild-illusion-1L-safe-mapped-20260717/formulas", + "validation": "../validate-rebuild-illusion-1L-safe-mapped-20260717/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json", + "audit": "../validate-rebuild-illusion-1L-safe-mapped-20260717/audit_report.json" + } + }, + "offline_ablation": { + "profiles": ["actual_only", "target_only", "error_only", "actual_target", "feedforward_feedback"], + "seeds_per_profile": 3, + "conclusion": "small-budget searches did not select target terms stably; offline action fit cannot establish target tracking" + }, + "limitations": [ + "The numerical reference is not promoted to a physical mechanism conclusion.", + "Its improvement over uncontrolled is modest because uncontrolled similarity is already high under this metric.", + "No target-amplitude/phase intervention or multi-initial-condition L4 claim is made.", + "No automatic lag optimization was used." + ] + }, + "contracts": { + "channel_order": "front, upper, lower verified by runtime ledger", + "alignment": "causal_post_state_to_next_action", + "policy_replay": "passed for both scenes", + "ppo_g_equivariance": "nonzero empirical defect; mapped_shared is physical symmetrization, not faithful PPO distillation", + "cpu_tests": "56 passed", + "split_run_audits": "0 errors, 0 warnings for both retained formula-validation chains" + } +} diff --git a/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/review_record.json b/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/review_record.json new file mode 100644 index 0000000..f790e92 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-evidence-round1-20260717/review_record.json @@ -0,0 +1,65 @@ +{ + "schema_version": "sr-stage-review-v1", + "stage": "trusted legacy Karman Re100 and Illusion 1L evidence package", + "status": "pause_for_user_review", + "generated_utc": "2026-07-17T16:50:00Z", + "code_review": { + "pass": true, + "answers": { + "parallel_entry_added": false, + "duplicate_metric_added": false, + "top_level_complexity_increased": false, + "notes": "Feature ablations were added as one Stage 2 option; audit split-run support stayed in the existing archive governance tool. No new scientific stage was introduced." + } + }, + "data_review": { + "pass": true, + "answers": { + "existing_assets_overwritten": false, + "trajectory_ids_preserved": true, + "hashes_and_shapes_recorded": true, + "transient_and_alignment_traceable": true + } + }, + "physics_review": { + "pass": true, + "answers": { + "channel_ledger_verified": true, + "g_interpretation": "physical symmetrization distinct from PPO empirical equivariance", + "karman_mechanism_evidence": "rear constant recovers similarity 0.8997 vs uncontrolled 0.6484 and PPO 0.9540; tested front feedback worsens L2", + "illusion_target_claim": "not established; retained candidate is numerical reference only", + "lag_causality_overclaimed": false + } + }, + "numerical_review": { + "pass": true, + "answers": { + "safe_grammar": ["+", "-", "*", "square"], + "finite_static_probes": true, + "action_extrema_and_termination_recorded": true, + "fitting_environment": "sr_env", + "cfd_environment": "pycuda_3_10", + "physical_gpu": 2, + "cfd_serial": true + } + }, + "result_review": { + "pass": true, + "answers": { + "same_length_l3_comparison": true, + "metric": "legacy_dtw_v1_abs_n_unclipped", + "r2_used_for_promotion": false, + "failed_and_rejected_results_retained": true, + "canonical_registry_mutated": false, + "automatic_promotion": false + } + }, + "explicit_nonclaims": [ + "No joint, unseen-Re, Vortex, 1.5L, V5, plotting, or manuscript conclusion was attempted.", + "No L4 multi-initial-condition robustness claim is made.", + "No Illusion target-tracking mechanism is claimed from the current ablation.", + "No phase lag was inferred by cross-correlation.", + "No formula is promoted solely because of offline R2." + ], + "next_decision_required": "User review of the evidence and scientific priorities before mechanism intervention or broader validation." +} diff --git a/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..3360ebf --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-illusion_1L-raw_complete-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_F*(-0.50862914)","deployment_expression_hash":"6de812c325705b748456a9e7e4e80a2e4ade94ee5d958bcef3cc58547ba19920","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_F*(-0.50862914)","fitted_expression_hash":"6de812c325705b748456a9e7e4e80a2e4ade94ee5d958bcef3cc58547ba19920","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-features-illusion_1L-raw_complete-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:41:54.476008+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.26764746493824404,"r2":0.4288028367637041},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"raw_complete","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.46069273502342123,"r2":-0.06773488550818452},"train":{"mae":0.26764746493824404,"r2":0.4288028367637041},"validation":{"mae":0.4473736720547927,"r2":0.23977878513530548}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.4782041169685696,0.4782041169685696],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.72245920000000e-6","loss":0.17084317,"score":0.0},{"complexity":4.0,"expression":"Cl_F*(-0.50862914)","loss":0.09758514,"score":0.28001038672285566},{"complexity":7.0,"expression":"-0.52962124*Cl_F - 7.785642e-7","loss":0.09746989,"score":0.00039390597758252985}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-features-illusion_1L-raw_complete-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..49aedbc --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-illusion_1L-raw_complete-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-illusion_1L-raw_complete-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"Cd_B*(-0.25082478) - 0.44445458","deployment_expression_hash":"7a4b112ef6257de212f95d6d04e94a04c63f2a6c9334fb3ea3f9a36916501a61","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cd_B*(-0.25082478) - 0.44445458","fitted_expression_hash":"7a4b112ef6257de212f95d6d04e94a04c63f2a6c9334fb3ea3f9a36916501a61","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-features-illusion_1L-raw_complete-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:41:55.099669+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.20992335411871985,"r2":0.16095211872595883},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"raw_complete","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19455340271221316,"r2":-0.19755290021272653},"train":{"mae":0.20992335411871985,"r2":0.16095211872595883},"validation":{"mae":0.2101859080002911,"r2":-0.08955622067257796}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.16283279022877,-0.6103154368898496],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852576600000000","loss":0.08339845,"score":0.0},{"complexity":7.0,"expression":"Cd_B*(-0.25082478) - 0.44445458","loss":0.069975294,"score":0.03509749743337482}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-features-illusion_1L-raw_complete-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..256ed68 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-illusion_1L-symmetry-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0040669725707524*u_a","deployment_expression_hash":"9d0298d2e68dfcb9132a9f2c2431106b0fb5ce83ce8b40d69e93fe6ea20c2f80","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.0040669725707524*u_a","fitted_expression_hash":"9d0298d2e68dfcb9132a9f2c2431106b0fb5ce83ce8b40d69e93fe6ea20c2f80","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-features-illusion_1L-symmetry-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:43:12.857211+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2984326682716865,"r2":0.13809211281881673},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3486727923537256,"r2":0.0892405942362634},"train":{"mae":0.2984326682716865,"r2":0.13809211281881673},"validation":{"mae":0.438788180373442,"r2":0.11688978030286945}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.15531988137257857,0.15531988137257857],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-3.77364730000000e-7","loss":0.17084318,"score":0.0},{"complexity":4.0,"expression":"u_a*0.0019576673","loss":0.15775572,"score":0.03984914951945913},{"complexity":5.0,"expression":"0.0040669725707524*u_a","loss":0.1472511,"score":0.06890846787644249},{"complexity":7.0,"expression":"8.4095655e-7 - 0.42574847*Cd_rear_a","loss":0.13692327,"score":0.03635929842822943}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-features-illusion_1L-symmetry-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..7671bac --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-illusion_1L-symmetry-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-illusion_1L-symmetry-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"0.05483641*Cl_tot - 0.85255474","deployment_expression_hash":"bf48f062505490ecff50bd3b13b7bd998d0e680b1336ae5c2d7d7a6094d08488","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.05483641*Cl_tot - 0.85255474","fitted_expression_hash":"bf48f062505490ecff50bd3b13b7bd998d0e680b1336ae5c2d7d7a6094d08488","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-features-illusion_1L-symmetry-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:43:13.474021+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.22705114150769684,"r2":0.08480567152933438},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19561218167802563,"r2":-0.029834276813299532},"train":{"mae":0.22705114150769684,"r2":0.08480567152933438},"validation":{"mae":0.21358913052156844,"r2":0.02842736342772545}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9778572388721409,-0.727252241127859],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852557100000000","loss":0.083398454,"score":0.0},{"complexity":7.0,"expression":"0.05483641*Cl_tot - 0.85255474","loss":0.076325804,"score":0.017723739911216098}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-features-illusion_1L-symmetry-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..a6d5597 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-karman_re100-raw_complete-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cd_T*(-0.29369712)","deployment_expression_hash":"e0a6df5d38637c2d02c0a39dd9683dd306163ef2470b9897c59bbd81d5756275","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"Cd_T*(-0.29369712)","fitted_expression_hash":"e0a6df5d38637c2d02c0a39dd9683dd306163ef2470b9897c59bbd81d5756275","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-features-karman_re100-raw_complete-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:41:16.131663+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.5025612711249852,"r2":0.8186600495815786},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"raw_complete","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.5442177922482425,"r2":0.7945213327452643},"train":{"mae":0.5025612711249852,"r2":0.8186600495815786},"validation":{"mae":0.543335889654014,"r2":0.8204646217431476}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.737673370170891,2.729448024253249],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"v_hat_B","loss":697.7445,"score":0.0},{"complexity":2.0,"expression":"7.37543160000000e-5","loss":1.9593186,"score":5.8752562301701},{"complexity":4.0,"expression":"Cd_T*(-0.29369712)","loss":0.35530275,"score":0.8536908978914473},{"complexity":6.0,"expression":"-0.29369712*(Cd_F + Cd_T)","loss":0.33835027,"score":0.024444291133472917},{"complexity":7.0,"expression":"(Cd_T + 0.8809342)*(-0.33450207)","loss":0.33633864,"score":0.005963151109117075}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-features-karman_re100-raw_complete-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..21d7178 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-karman_re100-raw_complete-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-karman_re100-raw_complete-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.054456804*Cl_F**4","deployment_expression_hash":"45640179da5995aefe30217c0845d559fcb4a0c9d97c4367e849ebd8a50baa64","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"]},"feature_names":["u_hat_T","v_hat_T","u_hat_C","v_hat_C","u_hat_B","v_hat_B","Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"fitted_expression":"-0.054456804*Cl_F**4","fitted_expression_hash":"45640179da5995aefe30217c0845d559fcb4a0c9d97c4367e849ebd8a50baa64","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-features-karman_re100-raw_complete-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set raw_complete --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:41:17.239332+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":3.812099913783087,"r2":-4.497909258809771},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"raw_complete","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":3.5787861966275285,"r2":-3.986422498073349},"train":{"mae":3.812099913783087,"r2":-4.497909258809771},"validation":{"mae":3.58492395636295,"r2":-3.9337771883820034}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-17.477475877777373,-0.0],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cl_F**8","loss":384072400.0,"score":0.0},{"complexity":6.0,"expression":"-0.054456804*Cl_F**4","loss":20.847305,"score":8.364558475575594}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-features-karman_re100-raw_complete-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..d8b115b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-karman_re100-symmetry-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cd_rear_a*(-0.3208584)","deployment_expression_hash":"dcaefcc1e4a548e36ae36aed96ab5d6fb611e82e87614056056457ae1a7d949d","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"Cd_rear_a*(-0.3208584)","fitted_expression_hash":"dcaefcc1e4a548e36ae36aed96ab5d6fb611e82e87614056056457ae1a7d949d","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-features-karman_re100-symmetry-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:42:35.971833+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.3682207122822306,"r2":0.894370012209591},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.40647110896830513,"r2":0.8777404524197846},"train":{"mae":0.3682207122822306,"r2":0.894370012209591},"validation":{"mae":0.3760490889897179,"r2":0.9097892988594056}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.2090210473228247,2.2090210473228247],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-1.47618630000000e-6","loss":1.9593186,"score":0.0},{"complexity":3.0,"expression":"Cd_tot - Cl_rear_s","loss":0.9210748,"score":0.7548107896910531},{"complexity":4.0,"expression":"Cd_rear_a*(-0.3208584)","loss":0.20696281,"score":1.4930021337384507}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-features-karman_re100-symmetry-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..c2f9fe9 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-features-karman_re100-symmetry-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-features-karman_re100-symmetry-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"8.79444826162819e-6*Cd_rear_a**2","deployment_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-features-karman_re100-symmetry-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:42:36.563861+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":4.176440765276415,"r2":-4.599996933662748},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":4.195420059010301,"r2":-4.830192499619163},"train":{"mae":4.176440765276415,"r2":-4.599996933662748},"validation":{"mae":4.075080445834007,"r2":-4.441291066836324}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0,0.00041685160582520265],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":268.4219,"score":0.0},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":21.234404,"score":1.2684686499515592}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-features-karman_re100-symmetry-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..cf785ab --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.46789360000000e-6","deployment_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.46789360000000e-6","fitted_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:07:57.677913+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-9.3958174574027e-12},"train":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"validation":{"mae":0.4747171795521024,"r2":-6.844302902209165e-12}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4678936e-06,1.4678936e-06],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear","loss":10.864832,"score":0.0},{"complexity":2.0,"expression":"1.46789360000000e-6","loss":0.17084315,"score":4.152540545968608},{"complexity":4.0,"expression":"Cl_err*0.20931156","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"(0.350017714966702*Cd_err**2)*Cl_err","loss":0.14872341,"score":0.012718488991371976}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..0a7481f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852556300000000","deployment_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852556300000000","fitted_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:07:58.229216+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938390204044817,"r2":-0.00023276004933703298},"train":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"validation":{"mae":0.20895461516921215,"r2":-0.009651532686907993}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525563,-0.8525563],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852556300000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..37023eb --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*(-Cd_tot + Cl_diff)","deployment_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*(-Cd_tot + Cl_diff)","fitted_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:08:36.353204+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2989838976129138,"r2":0.14488314488853016},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.43579744880945626,"r2":-0.23664083193315077},"train":{"mae":0.2989838976129138,"r2":0.14488314488853016},"validation":{"mae":0.5193253144066831,"r2":-0.10286841775897582}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19834207548753663,1.4063250133424854],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.36272260000000e-5","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20933855","loss":0.15450767,"score":0.05025107249480349},{"complexity":5.0,"expression":"Cl_err*(-Cd_tot + Cl_diff)","loss":0.14609088,"score":0.05601484530821117}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..7c93d25 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852565800000000","deployment_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852565800000000","fitted_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:08:36.870401+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938318954044817,"r2":-0.0002339967329636483},"train":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"validation":{"mae":0.20895437157946853,"r2":-0.009644204206525231}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525658,-0.8525658],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":423.0876,"score":0.0},{"complexity":2.0,"expression":"-0.852565800000000","loss":0.08339845,"score":8.531704804726266}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..b34dc53 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*0.20936066","deployment_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*0.20936066","fitted_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:09:12.416883+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.33218822325817815,"r2":0.09561696234652872},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.39723988675036953,"r2":-0.03698161213989448},"train":{"mae":0.33218822325817815,"r2":0.09561696234652872},"validation":{"mae":0.47071803609990653,"r2":0.03888097873316354}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2749302103858895,0.2749302103858895],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.42350550000000e-6","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20936066","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"0.04007675678724*Cl_diff*Cl_err","loss":0.15017776,"score":0.009474693330943982}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..9461962 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-mapped_shared-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852574100000000","deployment_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852574100000000","fitted_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:09:13.579039+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938256704044818,"r2":-0.00023507988585658168},"train":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"validation":{"mae":0.20895415875895568,"r2":-0.009637803707104764}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525741,-0.8525741],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.8803632,"score":0.0},{"complexity":2.0,"expression":"-0.852574100000000","loss":0.08339845,"score":3.5420419522296642},{"complexity":7.0,"expression":"0.097858846*Cl_err - 0.80893475","loss":0.077822834,"score":0.013838967958672815}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..61c49eb --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.2999922 - 0.3098106*Cd_rear","deployment_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.2999922 - 0.3098106*Cd_rear","fitted_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:06:09.194350+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.23334032966388596,"r2":0.11756284576153475},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.34112133310969667,"r2":0.057776160568218105},"train":{"mae":0.23334032966388596,"r2":0.11756284576153475},"validation":{"mae":0.37016839642298677,"r2":-0.34610130982075415}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.04346012222217177,0.44273530610236134],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291841750000000","loss":0.085671015,"score":0.0},{"complexity":6.0,"expression":"0.0121790808660228*Cl_diff**2","loss":0.0843899,"score":0.0037667068747854636},{"complexity":7.0,"expression":"1.2999922 - 0.3098106*Cd_rear","loss":0.07559928,"score":0.11000096686403822}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..c6b2b1d --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918011900000000","deployment_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918011900000000","fitted_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:06:09.557516+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936103852104188,"r2":-0.15350589214523613},"train":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"validation":{"mae":0.11129976856881164,"r2":-0.00023036508264362432}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180119,-0.9180119],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918011900000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..8752054 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0094397768426882*Cl_diff**2","deployment_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.0094397768426882*Cl_diff**2","fitted_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:06:46.345995+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.24224122091193734,"r2":0.07561246887345263},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.3863220230625245,"r2":-0.03313067621950316},"train":{"mae":0.24224122091193734,"r2":0.07561246887345263},"validation":{"mae":0.3555676097950409,"r2":-0.07498828338355357}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20289377324447197,0.46287971685780566],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291846300000000","loss":0.08567101,"score":0.0},{"complexity":5.0,"expression":"0.0094397768426882*Cl_diff**2","loss":0.07919323,"score":0.026207893320733224}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..9b87191 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918010650000000","deployment_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918010650000000","fitted_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:06:46.970373+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936153852104185,"r2":-0.15351323826901253},"train":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"validation":{"mae":0.11129980062009373,"r2":-0.00023061711511984662}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.91801065,-0.91801065],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.1577032,"score":0.0},{"complexity":2.0,"expression":"-0.918010650000000","loss":0.058044948,"score":2.992975645376163},{"complexity":7.0,"expression":"u_a*(-0.0038544992) - 0.91679966","loss":0.05181742,"score":0.022698257953033464}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..460e1e8 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.291839660000000","deployment_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.291839660000000","fitted_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:07:20.829450+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.38052598454672004,"r2":-0.014703059035816146},"train":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"validation":{"mae":0.35590100614126047,"r2":-0.10661836466095953}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.29183966,0.29183966],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.3875264,"score":0.0},{"complexity":2.0,"expression":"0.291839660000000","loss":0.085671015,"score":1.5092694218111906},{"complexity":6.0,"expression":"0.0083057176372041*Cl_diff**2","loss":0.08122776,"score":0.01331437325746681}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..fabe340 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918005200000000","deployment_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918005200000000","fitted_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:07:21.952294+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936371852104188,"r2":-0.15354526942254587},"train":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"validation":{"mae":0.11129994036368344,"r2":-0.00023171758680540222}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180052,-0.9180052],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918005200000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-illusion_1L-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..66e285d --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"1.2999922 - 0.3098106*Cd_rear","deployment_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.2999922 - 0.3098106*Cd_rear","fitted_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:04:12.863311+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.23334032966388596,"r2":0.11756284576153475},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.34112133310969667,"r2":0.057776160568218105},"train":{"mae":0.23334032966388596,"r2":0.11756284576153475},"validation":{"mae":0.37016839642298677,"r2":-0.34610130982075415}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.04346012222217177,0.44273530610236134],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291841750000000","loss":0.085671015,"score":0.0},{"complexity":6.0,"expression":"0.0121790808660228*Cl_diff**2","loss":0.0843899,"score":0.0037667068747854636},{"complexity":7.0,"expression":"1.2999922 - 0.3098106*Cd_rear","loss":0.07559928,"score":0.11000096686403822}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..f56639c --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:04:13.939286+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear","loss":6.300151,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":4.141323718955872},{"complexity":7.0,"expression":"0.92734504 - 0.043097194*Cd_rear","loss":0.099988624,"score":0.0003897483747110352}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..9cc8b6a --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918011900000000","deployment_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918011900000000","fitted_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:04:13.413661+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936103852104188,"r2":-0.15350589214523613},"train":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"validation":{"mae":0.11129976856881164,"r2":-0.00023036508264362432}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180119,-0.9180119],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918011900000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..0d4e18b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"0.0094397768426882*Cl_diff**2","deployment_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.0094397768426882*Cl_diff**2","fitted_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:04:51.288787+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24224122091193734,"r2":0.07561246887345263},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.3863220230625245,"r2":-0.03313067621950316},"train":{"mae":0.24224122091193734,"r2":0.07561246887345263},"validation":{"mae":0.3555676097950409,"r2":-0.07498828338355357}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20289377324447197,0.46287971685780566],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291846300000000","loss":0.08567101,"score":0.0},{"complexity":5.0,"expression":"0.0094397768426882*Cl_diff**2","loss":0.07919323,"score":0.026207893320733224}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..ea037dd --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:04:52.288339+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":19.287457,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":5.260205105855243}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..04c8ff2 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918010650000000","deployment_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918010650000000","fitted_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:04:51.830725+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936153852104185,"r2":-0.15351323826901253},"train":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"validation":{"mae":0.11129980062009373,"r2":-0.00023061711511984662}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.91801065,-0.91801065],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.1577032,"score":0.0},{"complexity":2.0,"expression":"-0.918010650000000","loss":0.058044948,"score":2.992975645376163},{"complexity":7.0,"expression":"u_a*(-0.0038544992) - 0.91679966","loss":0.05181742,"score":0.022698257953033464}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..fbe2d32 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"0.291839660000000","deployment_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.291839660000000","fitted_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:05:28.221305+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.38052598454672004,"r2":-0.014703059035816146},"train":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"validation":{"mae":0.35590100614126047,"r2":-0.10661836466095953}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.29183966,0.29183966],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.3875264,"score":0.0},{"complexity":2.0,"expression":"0.291839660000000","loss":0.085671015,"score":1.5092694218111906},{"complexity":6.0,"expression":"0.0083057176372041*Cl_diff**2","loss":0.08122776,"score":0.01331437325746681}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..c6fb5c2 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:05:29.966291+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.9883645,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":3.395476365374103}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..358fd9e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918005200000000","deployment_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918005200000000","fitted_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:05:29.400508+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936371852104188,"r2":-0.15354526942254587},"train":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"validation":{"mae":0.11129994036368344,"r2":-0.00023171758680540222}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180052,-0.9180052],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918005200000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..f79e3b5 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_tot*(-0.33528602)","deployment_expression_hash":"912b8a4135b66b849c1d4f7f4ec35e454746821ec6d6d3596d48f5d7d5912e56","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot*(-0.33528602)","fitted_expression_hash":"912b8a4135b66b849c1d4f7f4ec35e454746821ec6d6d3596d48f5d7d5912e56","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:02:16.253758+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.2217409514752,"r2":0.045947873103534764},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.1631583406226462,"r2":0.12602813175294203},"train":{"mae":1.2217409514752,"r2":0.045947873103534764},"validation":{"mae":1.2572011038893798,"r2":0.14482094944547752}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.3006135710532731,1.3006135710532731],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.69455690000000e-5","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"Cl_tot*(-0.33528602)","loss":1.869292,"score":0.023518505092879706}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..1061f83 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.17630000000000","deployment_expression_hash":"d70e31d64279dec243f363e135964cd3f01d5fe9e8aa9a5274e6ed77b69cf0cd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.17630000000000","fitted_expression_hash":"d70e31d64279dec243f363e135964cd3f01d5fe9e8aa9a5274e6ed77b69cf0cd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:02:16.767209+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.710525627857952,"r2":-2.1024959551141364e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6605670252847673,"r2":-9.888312495487384e-05},"train":{"mae":1.710525627857952,"r2":-2.1024959551141364e-11},"validation":{"mae":1.6655935664445929,"r2":-0.0027488678236506914}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1763,-4.1763],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17630000000000","loss":3.7918599,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..597d656 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_tot*v_a*0.23709533","deployment_expression_hash":"cdb8decbb76ad8507d415e9ab0da201b072d4b225f321657068fbb34a4cf009d","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot*v_a*0.23709533","fitted_expression_hash":"cdb8decbb76ad8507d415e9ab0da201b072d4b225f321657068fbb34a4cf009d","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:02:54.769440+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.1308591337320648,"r2":0.11528795375023104},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.0195056574652803,"r2":0.29325724651088947},"train":{"mae":1.1308591337320648,"r2":0.11528795375023104},"validation":{"mae":1.0684768206274802,"r2":0.3383233666219435}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.12250959445217992,5.475131073801048],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.69456650000000e-5","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"Cl_tot*(-0.33530742)","loss":1.8692921,"score":0.023518478344785435},{"complexity":6.0,"expression":"Cl_tot*v_a*0.23709533","loss":1.7334327,"score":0.03772807042353584}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..55b537e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.17636200000000","deployment_expression_hash":"e9caee69b8322814bf32651efa822a60cb34088da3ca0a3b9f234d8efe847c07","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.17636200000000","fitted_expression_hash":"e9caee69b8322814bf32651efa822a60cb34088da3ca0a3b9f234d8efe847c07","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:02:55.322058+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.7105314075189686,"r2":-1.3267595910804175e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6605809752847673,"r2":-9.823824130350545e-05},"train":{"mae":1.7105314075189686,"r2":-1.3267595910804175e-09},"validation":{"mae":1.6656046946497212,"r2":-0.0027522310180780885}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.176362,-4.176362],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17636200000000","loss":3.79186,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..1c44789 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cl_tot - u_a)*0.07062047","deployment_expression_hash":"6f683fc692eb9629156f86e86cac1610caeb7bad76408f919f675a5f492be4ba","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cl_tot - u_a)*0.07062047","fitted_expression_hash":"6f683fc692eb9629156f86e86cac1610caeb7bad76408f919f675a5f492be4ba","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:03:33.799094+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.6474795470420445,"r2":0.6664541223423157},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.5391998878020454,"r2":0.7494863236413957},"train":{"mae":0.6474795470420445,"r2":0.6664541223423157},"validation":{"mae":0.5855531338833693,"r2":0.7515486336524527}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7633028005139249,1.7633028005139249],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"5.24187270000000e-8","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.027371427)","loss":1.1624429,"score":0.2610365103712019},{"complexity":6.0,"expression":"(Cl_tot - u_a)*0.07062047","loss":0.65352273,"score":0.2879508517864092}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..c7397de --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-mapped_shared-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"(Cd_tot - Cl_diff)*0.4773423","deployment_expression_hash":"f01fae665f9299c11c48b8217f81285f89026ab45b3d33816b250999c80099d5","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_tot - Cl_diff)*0.4773423","fitted_expression_hash":"f01fae665f9299c11c48b8217f81285f89026ab45b3d33816b250999c80099d5","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:03:34.258307+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.7062605151732497,"r2":0.06740918845615596},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6463658289967469,"r2":0.09858426111930385},"train":{"mae":1.7062605151732497,"r2":0.06740918845615596},"validation":{"mae":1.6548747935949863,"r2":0.12372499211595978}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.776527824738752,-3.8978737017336416],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17628860000000","loss":3.79186,"score":0.0},{"complexity":6.0,"expression":"(Cd_tot - Cl_diff)*0.4773423","loss":3.536254,"score":0.017447172276312897}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..d57185f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.07227705)","deployment_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.07227705)","fitted_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:00:18.012701+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.6726600562185339,"r2":0.6488655418232294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.5650297049784287,"r2":0.7180167185863882},"train":{"mae":0.6726600562185339,"r2":0.6488655418232294},"validation":{"mae":0.6063210390596322,"r2":0.7194583551733608}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.08503658962965,1.874609344203025],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274890600000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.07227705)","loss":0.6614501,"score":0.5232929735237258}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..82c8f7e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.13851640000000","deployment_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13851640000000","fitted_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:00:18.541815+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.011685950930810929},"train":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"validation":{"mae":1.9257908030764066,"r2":-0.0028724561659814185}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1385164,-4.1385164],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13851640000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":4.0,"expression":"Cl_diff*(-0.47565216)","loss":3.7848992,"score":0.045459944944078394},{"complexity":7.0,"expression":"-0.4539123*Cl_diff - 0.19340633","loss":3.7840478,"score":7.499061658032472e-05}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..f3df1d7 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cd_rear - v_a)*0.16952632","deployment_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_rear - v_a)*0.16952632","fitted_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:00:59.160840+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.0740206434744186,"r2":0.16155921512802207},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.020718914756725,"r2":0.14529202264849816},"train":{"mae":1.0740206434744186,"r2":0.16155921512802207},"validation":{"mae":1.1266937255917822,"r2":0.10264755267625358}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.11052571850797532,0.023605123213039758],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274889440000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"Cd_rear*0.20565705","loss":1.8407321,"score":0.011550920617226478},{"complexity":5.0,"expression":"0.199834551336816*Cd_rear","loss":1.8367633,"score":0.0021584263794439257},{"complexity":6.0,"expression":"(Cd_rear - v_a)*0.16952632","loss":1.5794144,"score":0.15095080111667278}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..bfe66f6 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.13833670000000","deployment_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13833670000000","fitted_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:00:59.716152+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.01170475950171701},"train":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"validation":{"mae":1.9257769799994828,"r2":-0.00286340753409986}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1383367,-4.1383367],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13833670000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":7.0,"expression":"Cl_diff*(-0.41049647) - 0.12796947","loss":3.9833279,"score":0.007964303858261626}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..db5cb3d --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.044191584)","deployment_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.044191584)","fitted_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:01:36.677489+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.7248589511639827,"r2":0.5448328931043902},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.6384043640863204,"r2":0.5949598494878847},"train":{"mae":0.7248589511639827,"r2":0.5448328931043902},"validation":{"mae":0.7258852932950755,"r2":0.5674584585276946}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2748316318069457,1.146172350718975],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274919200000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.044191584)","loss":0.85742176,"score":0.39354528012202583}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..3f1ed6e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"Cd_tot + Cl_diff*(-0.47425228)","deployment_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cd_tot + Cl_diff*(-0.47425228)","fitted_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:01:37.284389+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.7652328900254768,"r2":0.05161171698558831},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.6525510378291681,"r2":0.20867046531677347},"train":{"mae":1.7652328900254768,"r2":0.05161171698558831},"validation":{"mae":1.6918150548991737,"r2":0.23444901775669724}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.864147201546427,-3.939259738202347],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.13831200000000","loss":4.1451507,"score":0.0},{"complexity":6.0,"expression":"Cd_tot + Cl_diff*(-0.47425228)","loss":3.9312124,"score":0.013247816987523526}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-karman_re100-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..bd520cb --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*(-0.07227705)","deployment_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.07227705)","fitted_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T14:58:22.365167+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6726600562185339,"r2":0.6488655418232294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.5650297049784287,"r2":0.7180167185863882},"train":{"mae":0.6726600562185339,"r2":0.6488655418232294},"validation":{"mae":0.6063210390596322,"r2":0.7194583551733608}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.08503658962965,1.874609344203025],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274890600000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.07227705)","loss":0.6614501,"score":0.5232929735237258}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..7440692 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"4.21424300000000","deployment_expression_hash":"cf71b9db8486751f4a06ca8cfc684a07f2c7974fe148923c59c0b0c624e8b837","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"4.21424300000000","fitted_expression_hash":"cf71b9db8486751f4a06ca8cfc684a07f2c7974fe148923c59c0b0c624e8b837","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T14:58:23.419778+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.591728770833807,"r2":-1.7608137170554983e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.4768478295204162,"r2":-0.011626620998227422},"train":{"mae":1.591728770833807,"r2":-1.7608137170554983e-13},"validation":{"mae":1.4131917708384196,"r2":-0.002681590802152689}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.214243,4.214243],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_c","loss":8778.829,"score":0.0},{"complexity":2.0,"expression":"4.21424300000000","loss":3.4356883,"score":7.845881022377724},{"complexity":4.0,"expression":"4.214243 - Cl_tot","loss":3.4107008,"score":0.0036497503406642},{"complexity":5.0,"expression":"Cl_diff*0.472533814179902","loss":3.2001386,"score":0.06372366200924069}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..8d49030 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-4.13851640000000","deployment_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13851640000000","fitted_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T14:58:22.878572+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.011685950930810929},"train":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"validation":{"mae":1.9257908030764066,"r2":-0.0028724561659814185}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1385164,-4.1385164],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13851640000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":4.0,"expression":"Cl_diff*(-0.47565216)","loss":3.7848992,"score":0.045459944944078394},{"complexity":7.0,"expression":"-0.4539123*Cl_diff - 0.19340633","loss":3.7840478,"score":7.499061658032472e-05}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..77841a8 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"(Cd_rear - v_a)*0.16952632","deployment_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_rear - v_a)*0.16952632","fitted_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T14:59:00.829815+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0740206434744186,"r2":0.16155921512802207},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.020718914756725,"r2":0.14529202264849816},"train":{"mae":1.0740206434744186,"r2":0.16155921512802207},"validation":{"mae":1.1266937255917822,"r2":0.10264755267625358}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.11052571850797532,0.023605123213039758],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274889440000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"Cd_rear*0.20565705","loss":1.8407321,"score":0.011550920617226478},{"complexity":5.0,"expression":"0.199834551336816*Cd_rear","loss":1.8367633,"score":0.0021584263794439257},{"complexity":6.0,"expression":"(Cd_rear - v_a)*0.16952632","loss":1.5794144,"score":0.15095080111667278}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..2ca5c09 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_tot**2 - 1*0.0039781894529521","deployment_expression_hash":"1410d076fb7473f8392bf51ea911648fb51a460affb4b4001e83c0441f2087aa","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot**2 - 1*0.0039781894529521","fitted_expression_hash":"1410d076fb7473f8392bf51ea911648fb51a460affb4b4001e83c0441f2087aa","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T14:59:02.018637+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.8564185812518073,"r2":-4.811760346022668},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":3.561204290810383,"r2":-4.50384306167301},"train":{"mae":3.8564185812518073,"r2":-4.811760346022668},"validation":{"mae":3.6277116212491003,"r2":-4.686309335092776}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0039104810525471614,15.04356752549236],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":5.0,"expression":"(Cl_diff + u_a**2)**2","loss":38192750000.0,"score":0.0},{"complexity":6.0,"expression":"Cl_tot**2 - 1*0.0039781894529521","loss":19.9674,"score":21.37181060031187},{"complexity":7.0,"expression":"7.80950433796e-5 + 0.977930053199972","loss":13.908899,"score":0.3615720925453824}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..4457a29 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-4.13833670000000","deployment_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13833670000000","fitted_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T14:59:01.408652+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.01170475950171701},"train":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"validation":{"mae":1.9257769799994828,"r2":-0.00286340753409986}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1383367,-4.1383367],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13833670000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":7.0,"expression":"Cl_diff*(-0.41049647) - 0.12796947","loss":3.9833279,"score":0.007964303858261626}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..a7c49fd --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*(-0.044191584)","deployment_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.044191584)","fitted_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T14:59:39.584635+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7248589511639827,"r2":0.5448328931043902},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.6384043640863204,"r2":0.5949598494878847},"train":{"mae":0.7248589511639827,"r2":0.5448328931043902},"validation":{"mae":0.7258852932950755,"r2":0.5674584585276946}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2748316318069457,1.146172350718975],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274919200000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.044191584)","loss":0.85742176,"score":0.39354528012202583}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..3080759 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"4.21424700000000","deployment_expression_hash":"ca8791e3bf3490677827fa4a310869ba2e83c94d08cd93370cc0513b13ba6bcd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"4.21424700000000","fitted_expression_hash":"ca8791e3bf3490677827fa4a310869ba2e83c94d08cd93370cc0513b13ba6bcd","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T14:59:41.326914+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.591729313206689,"r2":-6.644684802381562e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.4768494295204164,"r2":-0.011627122196862016},"train":{"mae":1.591729313206689,"r2":-6.644684802381562e-12},"validation":{"mae":1.4131928990435478,"r2":-0.0026818320637125304}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.214247,4.214247],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_diff","loss":23.879805,"score":0.0},{"complexity":2.0,"expression":"4.21424700000000","loss":3.4356885,"score":1.9388157803911277},{"complexity":4.0,"expression":"Cl_diff*0.48263463","loss":3.1922529,"score":0.03674521824919698}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..17b53d0 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_tot + Cl_diff*(-0.47425228)","deployment_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cd_tot + Cl_diff*(-0.47425228)","fitted_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T14:59:40.190875+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7652328900254768,"r2":0.05161171698558831},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.6525510378291681,"r2":0.20867046531677347},"train":{"mae":1.7652328900254768,"r2":0.05161171698558831},"validation":{"mae":1.6918150548991737,"r2":0.23444901775669724}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.864147201546427,-3.939259738202347],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.13831200000000","loss":4.1451507,"score":0.0},{"complexity":6.0,"expression":"Cd_tot + Cl_diff*(-0.47425228)","loss":3.9312124,"score":0.013247816987523526}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..93fdd96 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.46789360000000e-6","deployment_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.46789360000000e-6","fitted_expression_hash":"f2fcc4f9d8ed57758c3a4831759e2480d81d6e6ab8e86f9d3282a9ba9ddc3c77","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:16:31.132350+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.3823878513649106,"r2":-9.3958174574027e-12},"train":{"mae":0.32453159918471924,"r2":-1.2612133559741778e-11},"validation":{"mae":0.4747171795521024,"r2":-6.844302902209165e-12}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[1.4678936e-06,1.4678936e-06],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear","loss":10.864832,"score":0.0},{"complexity":2.0,"expression":"1.46789360000000e-6","loss":0.17084315,"score":4.152540545968608},{"complexity":4.0,"expression":"Cl_err*0.20931156","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"(0.350017714966702*Cd_err**2)*Cl_err","loss":0.14872341,"score":0.012718488991371976}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..68d275b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852556300000000","deployment_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852556300000000","fitted_expression_hash":"501b6a7279a9fc5ff3144bc0daf239f03540a90b64ae4e166ae72e01514196fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:16:31.707835+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938390204044817,"r2":-0.00023276004933703298},"train":{"mae":0.23523813543617528,"r2":-1.238009694759512e-11},"validation":{"mae":0.20895461516921215,"r2":-0.009651532686907993}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525563,-0.8525563],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.852556300000000","loss":0.083398454,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..f743844 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*(-Cd_tot + Cl_diff)","deployment_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*(-Cd_tot + Cl_diff)","fitted_expression_hash":"0f2cd51e5091871ba4d75da54a918bf37e728cf39918d2801ef537b479730999","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:17:07.614149+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.2989838976129138,"r2":0.14488314488853016},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.43579744880945626,"r2":-0.23664083193315077},"train":{"mae":0.2989838976129138,"r2":0.14488314488853016},"validation":{"mae":0.5193253144066831,"r2":-0.10286841775897582}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.19834207548753663,1.4063250133424854],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.36272260000000e-5","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20933855","loss":0.15450767,"score":0.05025107249480349},{"complexity":5.0,"expression":"Cl_err*(-Cd_tot + Cl_diff)","loss":0.14609088,"score":0.05601484530821117}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..ade96bf --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852565800000000","deployment_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852565800000000","fitted_expression_hash":"5bbf9fa464d7404a5efca9da762b557f7335f84941a7f6b1a4b5c81dcf9ca5af","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:17:08.108652+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938318954044817,"r2":-0.0002339967329636483},"train":{"mae":0.23523773289380234,"r2":-8.630429704226117e-10},"validation":{"mae":0.20895437157946853,"r2":-0.009644204206525231}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525658,-0.8525658],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_a","loss":423.0876,"score":0.0},{"complexity":2.0,"expression":"-0.852565800000000","loss":0.08339845,"score":8.531704804726266}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..9e1c020 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_err*0.20936066","deployment_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"Cl_err*0.20936066","fitted_expression_hash":"70a3d9471600edc817b27479ce54865176868edc1c750d01916e7d00ca6cb442","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:17:48.919945+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.33218822325817815,"r2":0.09561696234652872},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.39723988675036953,"r2":-0.03698161213989448},"train":{"mae":0.33218822325817815,"r2":0.09561696234652872},"validation":{"mae":0.47071803609990653,"r2":0.03888097873316354}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.2749302103858895,0.2749302103858895],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"2.42350550000000e-6","loss":0.17084315,"score":0.0},{"complexity":4.0,"expression":"Cl_err*0.20936066","loss":0.15450767,"score":0.05025107249480349},{"complexity":7.0,"expression":"0.04007675678724*Cl_diff*Cl_err","loss":0.15017776,"score":0.009474693330943982}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..85373c0 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.852574100000000","deployment_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.852574100000000","fitted_expression_hash":"a88f8e2d6483fdd627594e12ca29feda3d60b6acaff0a7e250706ca189a2309a","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:17:50.079231+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.19938256704044818,"r2":-0.00023507988585658168},"train":{"mae":0.23523738119888704,"r2":-3.377749413502329e-09},"validation":{"mae":0.20895415875895568,"r2":-0.009637803707104764}},"scene_augmented_sample_counts":{"illusion_1L":394},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.8525741,-0.8525741],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.8803632,"score":0.0},{"complexity":2.0,"expression":"-0.852574100000000","loss":0.08339845,"score":3.5420419522296642},{"complexity":7.0,"expression":"0.097858846*Cl_err - 0.80893475","loss":0.077822834,"score":0.013838967958672815}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..9712dfb --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"1.2999922 - 0.3098106*Cd_rear","deployment_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.2999922 - 0.3098106*Cd_rear","fitted_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:14:38.479795+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.23334032966388596,"r2":0.11756284576153475},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.34112133310969667,"r2":0.057776160568218105},"train":{"mae":0.23334032966388596,"r2":0.11756284576153475},"validation":{"mae":0.37016839642298677,"r2":-0.34610130982075415}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.04346012222217177,0.44273530610236134],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291841750000000","loss":0.085671015,"score":0.0},{"complexity":6.0,"expression":"0.0121790808660228*Cl_diff**2","loss":0.0843899,"score":0.0037667068747854636},{"complexity":7.0,"expression":"1.2999922 - 0.3098106*Cd_rear","loss":0.07559928,"score":0.11000096686403822}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..e41b6b1 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918011900000000","deployment_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918011900000000","fitted_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:14:39.061471+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936103852104188,"r2":-0.15350589214523613},"train":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"validation":{"mae":0.11129976856881164,"r2":-0.00023036508264362432}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180119,-0.9180119],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918011900000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..3cfea65 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0094397768426882*Cl_diff**2","deployment_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.0094397768426882*Cl_diff**2","fitted_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:15:15.072004+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.24224122091193734,"r2":0.07561246887345263},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.3863220230625245,"r2":-0.03313067621950316},"train":{"mae":0.24224122091193734,"r2":0.07561246887345263},"validation":{"mae":0.3555676097950409,"r2":-0.07498828338355357}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20289377324447197,0.46287971685780566],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291846300000000","loss":0.08567101,"score":0.0},{"complexity":5.0,"expression":"0.0094397768426882*Cl_diff**2","loss":0.07919323,"score":0.026207893320733224}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..ff9083f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918010650000000","deployment_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918010650000000","fitted_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:15:15.613649+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936153852104185,"r2":-0.15351323826901253},"train":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"validation":{"mae":0.11129980062009373,"r2":-0.00023061711511984662}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.91801065,-0.91801065],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.1577032,"score":0.0},{"complexity":2.0,"expression":"-0.918010650000000","loss":0.058044948,"score":2.992975645376163},{"complexity":7.0,"expression":"u_a*(-0.0038544992) - 0.91679966","loss":0.05181742,"score":0.022698257953033464}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..f99cfd1 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.291839660000000","deployment_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.291839660000000","fitted_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:15:53.644902+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.38052598454672004,"r2":-0.014703059035816146},"train":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"validation":{"mae":0.35590100614126047,"r2":-0.10661836466095953}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.29183966,0.29183966],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.3875264,"score":0.0},{"complexity":2.0,"expression":"0.291839660000000","loss":0.085671015,"score":1.5092694218111906},{"complexity":6.0,"expression":"0.0083057176372041*Cl_diff**2","loss":0.08122776,"score":0.01331437325746681}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json new file mode 100644 index 0000000..413713b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717/formulas/illusion_1L_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-0.918005200000000","deployment_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918005200000000","fitted_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:15:54.805744+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936371852104188,"r2":-0.15354526942254587},"train":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"validation":{"mae":0.11129994036368344,"r2":-0.00023171758680540222}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180052,-0.9180052],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918005200000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-illusion_1L-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..d431c1e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"1.2999922 - 0.3098106*Cd_rear","deployment_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"1.2999922 - 0.3098106*Cd_rear","fitted_expression_hash":"e8341c12f8803f9ad2dd8a2aadeb74f7f17811298c4f296173a450be5138b9f6","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:12:42.540368+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.23334032966388596,"r2":0.11756284576153475},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.34112133310969667,"r2":0.057776160568218105},"train":{"mae":0.23334032966388596,"r2":0.11756284576153475},"validation":{"mae":0.37016839642298677,"r2":-0.34610130982075415}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.04346012222217177,0.44273530610236134],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291841750000000","loss":0.085671015,"score":0.0},{"complexity":6.0,"expression":"0.0121790808660228*Cl_diff**2","loss":0.0843899,"score":0.0037667068747854636},{"complexity":7.0,"expression":"1.2999922 - 0.3098106*Cd_rear","loss":0.07559928,"score":0.11000096686403822}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..ce25748 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:12:43.651488+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_rear","loss":6.300151,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":4.141323718955872},{"complexity":7.0,"expression":"0.92734504 - 0.043097194*Cd_rear","loss":0.099988624,"score":0.0003897483747110352}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..7ca4518 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918011900000000","deployment_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918011900000000","fitted_expression_hash":"170edeaa124bca4b5d8b7efdc177bcc9fd4b5ecac6ae08acc3bad89a08767cc4","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:12:43.121775+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936103852104188,"r2":-0.15350589214523613},"train":{"mae":0.1817888781017691,"r2":-2.637579044062477e-11},"validation":{"mae":0.11129976856881164,"r2":-0.00023036508264362432}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180119,-0.9180119],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918011900000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..c1e7b99 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"0.0094397768426882*Cl_diff**2","deployment_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.0094397768426882*Cl_diff**2","fitted_expression_hash":"11bea10f9b6fc6ce57a4ff7fc91046660d54a3ac9067268fdafd0b156f5808a3","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:13:22.813210+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.24224122091193734,"r2":0.07561246887345263},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.3863220230625245,"r2":-0.03313067621950316},"train":{"mae":0.24224122091193734,"r2":0.07561246887345263},"validation":{"mae":0.3555676097950409,"r2":-0.07498828338355357}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.20289377324447197,0.46287971685780566],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"0.291846300000000","loss":0.08567101,"score":0.0},{"complexity":5.0,"expression":"0.0094397768426882*Cl_diff**2","loss":0.07919323,"score":0.026207893320733224}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..a6b4afc --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:13:23.857863+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":19.287457,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":5.260205105855243}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..c4da252 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918010650000000","deployment_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918010650000000","fitted_expression_hash":"527ba17c7bb3d12f04ddb2f93a875f6e10861c6ebe378b33ba2b504637aaa999","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:13:23.349419+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936153852104185,"r2":-0.15351323826901253},"train":{"mae":0.18178877216956582,"r2":-2.886579864025407e-15},"validation":{"mae":0.11129980062009373,"r2":-0.00023061711511984662}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.91801065,-0.91801065],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":1.1577032,"score":0.0},{"complexity":2.0,"expression":"-0.918010650000000","loss":0.058044948,"score":2.992975645376163},{"complexity":7.0,"expression":"u_a*(-0.0038544992) - 0.91679966","loss":0.05181742,"score":0.022698257953033464}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json new file mode 100644 index 0000000..380cecb --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"0.291839660000000","deployment_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.291839660000000","fitted_expression_hash":"4e98f726031c9a4057d1e218dc2f47ea188187a85d3b56c7f7bcd8b497e2ffcf","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:14:01.204589+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.38052598454672004,"r2":-0.014703059035816146},"train":{"mae":0.2571393305522835,"r2":-1.0882961198888097e-10},"validation":{"mae":0.35590100614126047,"r2":-0.10661836466095953}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.29183966,0.29183966],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_err","loss":0.3875264,"score":0.0},{"complexity":2.0,"expression":"0.291839660000000","loss":0.085671015,"score":1.5092694218111906},{"complexity":6.0,"expression":"0.0083057176372041*Cl_diff**2","loss":0.08122776,"score":0.01331437325746681}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json new file mode 100644 index 0000000..c9de006 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"0.787103830000000","deployment_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"0.787103830000000","fitted_expression_hash":"9cb8ae1f4c3fe956bf3546ebf33879f1d241a72e6a6f874d500f039f0c7cdee1","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:14:02.910814+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.21511704645163915,"r2":-0.05603521360716934},"train":{"mae":0.2715722246459848,"r2":-1.942890293094024e-13},"validation":{"mae":0.28216511599786226,"r2":-0.02205460525785341}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.78710383,0.78710383],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"target_Cl","loss":2.9883645,"score":0.0},{"complexity":2.0,"expression":"0.787103830000000","loss":0.100183666,"score":3.395476365374103}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json new file mode 100644 index 0000000..c56cfdd --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717/formulas/illusion_1L_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":true,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-0.918005200000000","deployment_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","dt_c_metadata":{"per_scene":{"illusion_1L":0.3},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff","target_Cd","target_Cl","Cd_err","Cl_err"],"fitted_expression":"-0.918005200000000","fitted_expression_hash":"d7e209852766cee6ff13e35faeb799d5a4607e12b9d703ac6a026b3c35b40e54","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"3fcb1834b1db1e3763624b2b36b5dd2dc6addef08bb8ffd656fe09c7dbc60634","paths":{"illusion_1L":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz"},"per_scene_hashes":{"illusion_1L":"844bc86d9a9cd43eb0efe943cac190607df13ffa55c151810a9548763fece52c"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene illusion_1L --mode per-scene --run-id trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:14:02.358101+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.11936371852104188,"r2":-0.15354526942254587},"train":{"mae":0.181788310305159,"r2":-5.140980974260856e-10},"validation":{"mae":0.11129994036368344,"r2":-0.00023171758680540222}},"scene_augmented_sample_counts":{"illusion_1L":197},"scene_sample_counts":{"illusion_1L":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.9180052,-0.9180052],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.918005200000000","loss":0.058044948,"score":0.0}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-illusion_1L-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["illusion_1L"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..995d45a --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_tot*(-0.33528602)","deployment_expression_hash":"912b8a4135b66b849c1d4f7f4ec35e454746821ec6d6d3596d48f5d7d5912e56","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot*(-0.33528602)","fitted_expression_hash":"912b8a4135b66b849c1d4f7f4ec35e454746821ec6d6d3596d48f5d7d5912e56","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:10:49.226218+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.2217409514752,"r2":0.045947873103534764},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.1631583406226462,"r2":0.12602813175294203},"train":{"mae":1.2217409514752,"r2":0.045947873103534764},"validation":{"mae":1.2572011038893798,"r2":0.14482094944547752}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.3006135710532731,1.3006135710532731],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.69455690000000e-5","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"Cl_tot*(-0.33528602)","loss":1.869292,"score":0.023518505092879706}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..258e7cd --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.17630000000000","deployment_expression_hash":"d70e31d64279dec243f363e135964cd3f01d5fe9e8aa9a5274e6ed77b69cf0cd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.17630000000000","fitted_expression_hash":"d70e31d64279dec243f363e135964cd3f01d5fe9e8aa9a5274e6ed77b69cf0cd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:10:49.682593+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.710525627857952,"r2":-2.1024959551141364e-11},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6605670252847673,"r2":-9.888312495487384e-05},"train":{"mae":1.710525627857952,"r2":-2.1024959551141364e-11},"validation":{"mae":1.6655935664445929,"r2":-0.0027488678236506914}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1763,-4.1763],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17630000000000","loss":3.7918599,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..733d1ed --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"Cl_tot*v_a*0.23709533","deployment_expression_hash":"cdb8decbb76ad8507d415e9ab0da201b072d4b225f321657068fbb34a4cf009d","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot*v_a*0.23709533","fitted_expression_hash":"cdb8decbb76ad8507d415e9ab0da201b072d4b225f321657068fbb34a4cf009d","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:11:27.497738+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.1308591337320648,"r2":0.11528795375023104},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.0195056574652803,"r2":0.29325724651088947},"train":{"mae":1.1308591337320648,"r2":0.11528795375023104},"validation":{"mae":1.0684768206274802,"r2":0.3383233666219435}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.12250959445217992,5.475131073801048],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"1.69456650000000e-5","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"Cl_tot*(-0.33530742)","loss":1.8692921,"score":0.023518478344785435},{"complexity":6.0,"expression":"Cl_tot*v_a*0.23709533","loss":1.7334327,"score":0.03772807042353584}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..c01034f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.17636200000000","deployment_expression_hash":"e9caee69b8322814bf32651efa822a60cb34088da3ca0a3b9f234d8efe847c07","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.17636200000000","fitted_expression_hash":"e9caee69b8322814bf32651efa822a60cb34088da3ca0a3b9f234d8efe847c07","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:11:28.105984+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.7105314075189686,"r2":-1.3267595910804175e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6605809752847673,"r2":-9.823824130350545e-05},"train":{"mae":1.7105314075189686,"r2":-1.3267595910804175e-09},"validation":{"mae":1.6656046946497212,"r2":-0.0027522310180780885}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.176362,-4.176362],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17636200000000","loss":3.79186,"score":0.0}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..e934a03 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cl_tot - u_a)*0.07062047","deployment_expression_hash":"6f683fc692eb9629156f86e86cac1610caeb7bad76408f919f675a5f492be4ba","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cl_tot - u_a)*0.07062047","fitted_expression_hash":"6f683fc692eb9629156f86e86cac1610caeb7bad76408f919f675a5f492be4ba","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:12:03.931443+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":0.6474795470420445,"r2":0.6664541223423157},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":0.5391998878020454,"r2":0.7494863236413957},"train":{"mae":0.6474795470420445,"r2":0.6664541223423157},"validation":{"mae":0.5855531338833693,"r2":0.7515486336524527}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.7633028005139249,1.7633028005139249],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"5.24187270000000e-8","loss":1.9593186,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.027371427)","loss":1.1624429,"score":0.2610365103712019},{"complexity":6.0,"expression":"(Cl_tot - u_a)*0.07062047","loss":0.65352273,"score":0.2879508517864092}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..9f650d5 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"(Cd_tot - Cl_diff)*0.4773423","deployment_expression_hash":"f01fae665f9299c11c48b8217f81285f89026ab45b3d33816b250999c80099d5","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_tot - Cl_diff)*0.4773423","fitted_expression_hash":"f01fae665f9299c11c48b8217f81285f89026ab45b3d33816b250999c80099d5","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:12:04.477894+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.7062605151732497,"r2":0.06740918845615596},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":10,"offline_metrics":{"blind":{"mae":1.6463658289967469,"r2":0.09858426111930385},"train":{"mae":1.7062605151732497,"r2":0.06740918845615596},"validation":{"mae":1.6548747935949863,"r2":0.12372499211595978}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.776527824738752,-3.8978737017336416],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.17628860000000","loss":3.79186,"score":0.0},{"complexity":6.0,"expression":"(Cd_tot - Cl_diff)*0.4773423","loss":3.536254,"score":0.017447172276312897}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-mapped_shared-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..fafef87 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.07227705)","deployment_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.07227705)","fitted_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:08:54.107723+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.6726600562185339,"r2":0.6488655418232294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.5650297049784287,"r2":0.7180167185863882},"train":{"mae":0.6726600562185339,"r2":0.6488655418232294},"validation":{"mae":0.6063210390596322,"r2":0.7194583551733608}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.08503658962965,1.874609344203025],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274890600000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.07227705)","loss":0.6614501,"score":0.5232929735237258}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..d477524 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.13851640000000","deployment_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13851640000000","fitted_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:08:54.615339+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.011685950930810929},"train":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"validation":{"mae":1.9257908030764066,"r2":-0.0028724561659814185}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1385164,-4.1385164],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13851640000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":4.0,"expression":"Cl_diff*(-0.47565216)","loss":3.7848992,"score":0.045459944944078394},{"complexity":7.0,"expression":"-0.4539123*Cl_diff - 0.19340633","loss":3.7840478,"score":7.499061658032472e-05}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..967e616 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"(Cd_rear - v_a)*0.16952632","deployment_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_rear - v_a)*0.16952632","fitted_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:09:34.349605+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.0740206434744186,"r2":0.16155921512802207},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.020718914756725,"r2":0.14529202264849816},"train":{"mae":1.0740206434744186,"r2":0.16155921512802207},"validation":{"mae":1.1266937255917822,"r2":0.10264755267625358}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.11052571850797532,0.023605123213039758],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274889440000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"Cd_rear*0.20565705","loss":1.8407321,"score":0.011550920617226478},{"complexity":5.0,"expression":"0.199834551336816*Cd_rear","loss":1.8367633,"score":0.0021584263794439257},{"complexity":6.0,"expression":"(Cd_rear - v_a)*0.16952632","loss":1.5794144,"score":0.15095080111667278}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..b2e81a3 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.13833670000000","deployment_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13833670000000","fitted_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:09:34.867489+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.01170475950171701},"train":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"validation":{"mae":1.9257769799994828,"r2":-0.00286340753409986}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1383367,-4.1383367],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13833670000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":7.0,"expression":"Cl_diff*(-0.41049647) - 0.12796947","loss":3.9833279,"score":0.007964303858261626}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..d8ff7c9 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"u_a*(-0.044191584)","deployment_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.044191584)","fitted_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["front_odd"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:10:10.828607+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":0.7248589511639827,"r2":0.5448328931043902},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.6384043640863204,"r2":0.5949598494878847},"train":{"mae":0.7248589511639827,"r2":0.5448328931043902},"validation":{"mae":0.7258852932950755,"r2":0.5674584585276946}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2748316318069457,1.146172350718975],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274919200000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.044191584)","loss":0.85742176,"score":0.39354528012202583}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..bfe8492 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"Cd_tot + Cl_diff*(-0.47425228)","deployment_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cd_tot + Cl_diff*(-0.47425228)","fitted_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","g_metadata":{"deployment_semantics":"shared_no_augmentation","fitted_heads":["rear_shared"],"front_rule":null,"rear_rule":null,"symmetry_mode":"shared_no_augmentation","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode shared_no_augmentation --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:10:11.358824+00:00","deployment_semantics":"shared_no_augmentation","diagnostic_metrics":{"mae":1.7652328900254768,"r2":0.05161171698558831},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.6525510378291681,"r2":0.20867046531677347},"train":{"mae":1.7652328900254768,"r2":0.05161171698558831},"validation":{"mae":1.6918150548991737,"r2":0.23444901775669724}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.864147201546427,-3.939259738202347],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"shared_no_augmentation"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.13831200000000","loss":4.1451507,"score":0.0},{"complexity":6.0,"expression":"Cd_tot + Cl_diff*(-0.47425228)","loss":3.9312124,"score":0.013247816987523526}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-fit-v2-karman_re100-shared_no_augmentation-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..b79de56 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*(-0.07227705)","deployment_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.07227705)","fitted_expression_hash":"23e499a5ec4815f80286e885adc8d55e056d909cd26f68639a93cca4ff096839","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:06:52.762348+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.6726600562185339,"r2":0.6488655418232294},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.5650297049784287,"r2":0.7180167185863882},"train":{"mae":0.6726600562185339,"r2":0.6488655418232294},"validation":{"mae":0.6063210390596322,"r2":0.7194583551733608}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.08503658962965,1.874609344203025],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274890600000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.07227705)","loss":0.6614501,"score":0.5232929735237258}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..62f0bf4 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"4.21424300000000","deployment_expression_hash":"cf71b9db8486751f4a06ca8cfc684a07f2c7974fe148923c59c0b0c624e8b837","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"4.21424300000000","fitted_expression_hash":"cf71b9db8486751f4a06ca8cfc684a07f2c7974fe148923c59c0b0c624e8b837","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:06:53.681683+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.591728770833807,"r2":-1.7608137170554983e-13},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.4768478295204162,"r2":-0.011626620998227422},"train":{"mae":1.591728770833807,"r2":-1.7608137170554983e-13},"validation":{"mae":1.4131917708384196,"r2":-0.002681590802152689}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.214243,4.214243],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"u_c","loss":8778.829,"score":0.0},{"complexity":2.0,"expression":"4.21424300000000","loss":3.4356883,"score":7.845881022377724},{"complexity":4.0,"expression":"4.214243 - Cl_tot","loss":3.4107008,"score":0.0036497503406642},{"complexity":5.0,"expression":"Cl_diff*0.472533814179902","loss":3.2001386,"score":0.06372366200924069}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..268365b --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-4.13851640000000","deployment_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13851640000000","fitted_expression_hash":"e5ee11d45752b92e7026285a15a7c12933c231978f808926eb7753875ff6713c","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 0 --niterations 10 --smoke","created_at":"2026-07-17T15:06:53.252763+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.011685950930810929},"train":{"mae":1.8305998422450056,"r2":-7.513595301489318e-09},"validation":{"mae":1.9257908030764066,"r2":-0.0028724561659814185}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1385164,-4.1385164],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13851640000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":4.0,"expression":"Cl_diff*(-0.47565216)","loss":3.7848992,"score":0.045459944944078394},{"complexity":7.0,"expression":"-0.4539123*Cl_diff - 0.19340633","loss":3.7840478,"score":7.499061658032472e-05}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed0-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..abc0484 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"(Cd_rear - v_a)*0.16952632","deployment_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"(Cd_rear - v_a)*0.16952632","fitted_expression_hash":"b4b08c5c19dc1d8fa7a362692611c978f32df4651af97c182032f034063e3b15","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:07:35.670760+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.0740206434744186,"r2":0.16155921512802207},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.020718914756725,"r2":0.14529202264849816},"train":{"mae":1.0740206434744186,"r2":0.16155921512802207},"validation":{"mae":1.1266937255917822,"r2":0.10264755267625358}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.11052571850797532,0.023605123213039758],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274889440000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"Cd_rear*0.20565705","loss":1.8407321,"score":0.011550920617226478},{"complexity":5.0,"expression":"0.199834551336816*Cd_rear","loss":1.8367633,"score":0.0021584263794439257},{"complexity":6.0,"expression":"(Cd_rear - v_a)*0.16952632","loss":1.5794144,"score":0.15095080111667278}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..6bc4922 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"Cl_tot**2 - 1*0.0039781894529521","deployment_expression_hash":"1410d076fb7473f8392bf51ea911648fb51a460affb4b4001e83c0441f2087aa","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cl_tot**2 - 1*0.0039781894529521","fitted_expression_hash":"1410d076fb7473f8392bf51ea911648fb51a460affb4b4001e83c0441f2087aa","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:07:36.754199+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":3.8564185812518073,"r2":-4.811760346022668},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":3.561204290810383,"r2":-4.50384306167301},"train":{"mae":3.8564185812518073,"r2":-4.811760346022668},"validation":{"mae":3.6277116212491003,"r2":-4.686309335092776}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-0.0039104810525471614,15.04356752549236],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":5.0,"expression":"(Cl_diff + u_a**2)**2","loss":38192750000.0,"score":0.0},{"complexity":6.0,"expression":"Cl_tot**2 - 1*0.0039781894529521","loss":19.9674,"score":21.37181060031187},{"complexity":7.0,"expression":"7.80950433796e-5 + 0.977930053199972","loss":13.908899,"score":0.3615720925453824}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..4a2fe85 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"-4.13833670000000","deployment_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"-4.13833670000000","fitted_expression_hash":"a16925eb840a501cc940657535580ef0ad74e3fee19f5e79cec6851dd2b9e9fe","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 1 --niterations 10 --smoke","created_at":"2026-07-17T15:07:36.178698+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.8579461038112641,"r2":-0.01170475950171701},"train":{"mae":1.8305846134314454,"r2":-2.502220652900178e-12},"validation":{"mae":1.9257769799994828,"r2":-0.00286340753409986}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":1,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.1383367,-4.1383367],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":1,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cd_tot","loss":21.314604,"score":0.0},{"complexity":2.0,"expression":"-4.13833670000000","loss":4.1451507,"score":1.6374533265956712},{"complexity":7.0,"expression":"Cl_diff*(-0.41049647) - 0.12796947","loss":3.9833279,"score":0.007964303858261626}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed1-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..d7f2e78 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717-per-scene-front_independent-anchor-upper","deployment_expression":"u_a*(-0.044191584)","deployment_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"u_a*(-0.044191584)","fitted_expression_hash":"4e50d9cd5705b838c058ac16253525ff4c4822892f705bb7d01c8b6f9bb20363","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["front_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:08:12.683783+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":0.7248589511639827,"r2":0.5448328931043902},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":0.6384043640863204,"r2":0.5949598494878847},"train":{"mae":0.7248589511639827,"r2":0.5448328931043902},"validation":{"mae":0.7258852932950755,"r2":0.5674584585276946}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-1.2748316318069457,1.146172350718975],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-0.274919200000000","loss":1.8837514,"score":0.0},{"complexity":4.0,"expression":"u_a*(-0.044191584)","loss":0.85742176,"score":0.39354528012202583}],"unary_operators":["square"]}},"role":"front_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json new file mode 100644 index 0000000..57316a4 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_lower.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717-per-scene-lower_independent-anchor-upper","deployment_expression":"4.21424700000000","deployment_expression_hash":"ca8791e3bf3490677827fa4a310869ba2e83c94d08cd93370cc0513b13ba6bcd","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"4.21424700000000","fitted_expression_hash":"ca8791e3bf3490677827fa4a310869ba2e83c94d08cd93370cc0513b13ba6bcd","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["lower_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":2,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:08:13.813013+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.591729313206689,"r2":-6.644684802381562e-12},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.4768494295204164,"r2":-0.011627122196862016},"train":{"mae":1.591729313206689,"r2":-6.644684802381562e-12},"validation":{"mae":1.4131928990435478,"r2":-0.0026818320637125304}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[4.214247,4.214247],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":1.0,"expression":"Cl_diff","loss":23.879805,"score":0.0},{"complexity":2.0,"expression":"4.21424700000000","loss":3.4356885,"score":1.9388157803911277},{"complexity":4.0,"expression":"Cl_diff*0.48263463","loss":3.1922529,"score":0.03674521824919698}],"unary_operators":["square"]}},"role":"lower_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json new file mode 100644 index 0000000..34e546c --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717/formulas/karman_re100_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717-per-scene-upper_independent-anchor-upper","deployment_expression":"Cd_tot + Cl_diff*(-0.47425228)","deployment_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"]},"feature_names":["u_m","u_a","u_c","v_a","Cd_tot","Cd_rear","Cl_tot","Cl_diff"],"fitted_expression":"Cd_tot + Cl_diff*(-0.47425228)","fitted_expression_hash":"280b99b59cadbf4e6e958e2cfb5f1ebccc996389555800a1c3c546141d0c74ef","g_metadata":{"deployment_semantics":"three_head_independent","fitted_heads":["upper_independent"],"front_rule":null,"rear_rule":null,"symmetry_mode":"three_head_independent","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set physics_reduced --sample-segment all --transient-count 50 --symmetry-mode three_head_independent --seed 2 --niterations 10 --smoke","created_at":"2026-07-17T15:08:13.065367+00:00","deployment_semantics":"three_head_independent","diagnostic_metrics":{"mae":1.7652328900254768,"r2":0.05161171698558831},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"g_augmented":false,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":118,"niterations":10,"offline_metrics":{"blind":{"mae":1.6525510378291681,"r2":0.20867046531677347},"train":{"mae":1.7652328900254768,"r2":0.05161171698558831},"validation":{"mae":1.6918150548991737,"r2":0.23444901775669724}},"scene_augmented_sample_counts":{"karman_re100":197},"scene_sample_counts":{"karman_re100":197},"seed":2,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.864147201546427,-3.939259738202347],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"three_head_independent"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":10,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":2,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":2.0,"expression":"-4.13831200000000","loss":4.1451507,"score":0.0},{"complexity":6.0,"expression":"Cd_tot + Cl_diff*(-0.47425228)","loss":3.9312124,"score":0.013247816987523526}],"unary_operators":["square"]}},"role":"upper_independent","run_id":"trusted-fit-v2-karman_re100-three_head_independent-seed2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-illusion-ablation-20260717/static_ablation.json b/src/SR_analysis/results/runs/trusted-illusion-ablation-20260717/static_ablation.json new file mode 100644 index 0000000..413fc19 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-illusion-ablation-20260717/static_ablation.json @@ -0,0 +1 @@ +{"ablations":{"actual_only":{"coefficients":[[-1.5133260119351668,-2.292611753000532,-2.5091627389564652],[0.47280568788613664,2.2029524513977887,2.4532895897707307],[-1.6324166311402006,1.9115035304031902,0.6671435641260828],[0.7204356446602527,-0.9980955423658313,0.011506234772629353],[0.20832977681110854,-0.22184171126026442,-0.14345656504971083],[-0.6704442877938794,-0.13863423262957886,-0.4600891769824377],[0.006989042230275688,-0.08501061435911594,-0.08625252463066113]],"feature_names":["Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B"],"test_indices":[118,198],"test_mae":[0.13971987719804485,0.15683307126281848,0.3111148436083847],"test_r2":[0.8208683193638179,-0.8067822235561477,-0.6876046426231459],"train_indices":[0,118]},"actual_target":{"coefficients":[[-2.748781981499405,-1.3379285565191636,3.4265316394299554],[0.1531692865369142,2.208718464092641,1.9028779461229086],[-0.9523595471316556,1.8778206237891448,1.6530039141142923],[0.30224977678263454,-0.9836889106333726,-0.6492585587416246],[0.647994335609546,-0.2493067090746517,0.4447194290716834],[-0.2468597962875838,-0.16543866336547997,0.10360099833894429],[0.7378902598044939,-0.13160471222965875,0.8834398372269715],[0.4317706550752062,-0.17463154407897985,-0.6993096946447515],[-0.42595671159156007,0.026371693208840075,-0.5718873970091897]],"feature_names":["Cd_F","Cl_F","Cd_T","Cl_T","Cd_B","Cl_B","target_Cd","target_Cl"],"test_indices":[118,198],"test_mae":[0.16168389201173133,0.1674693009733612,0.24665266702515157],"test_r2":[0.7969486172770404,-1.0165715991557382,-0.294392009640116],"train_indices":[0,118]},"drag_only":{"coefficients":[[-2.759834269357315,-1.4954576737059682,3.237988476751788],[1.7934903338662858,0.7360651964287068,1.6814766956894405],[-0.15599006855100145,-0.011415965256498323,0.2270928679130912],[-0.45348582361339285,-0.4086598579992022,-0.5699268314938908],[0.1311306304106723,-0.001607872771006047,-0.8550530295934722]],"feature_names":["Cd_F","Cd_T","Cd_B","target_Cd"],"test_indices":[118,198],"test_mae":[0.16022932710299637,0.1738977080063832,0.313201162671496],"test_r2":[0.7501498589825131,-1.120551582212225,-0.7630647307249847],"train_indices":[0,118]},"error_only":{"coefficients":[[0.2690158150434016,-0.9976271937127512,0.8418668255644277],[-0.07713545451670553,-0.16053385072205398,0.08453542470379276],[0.2021967905735626,0.05601297508800413,0.3458907973783798]],"feature_names":["Cd_err","Cl_err"],"test_indices":[118,198],"test_mae":[0.3713226245203762,0.12590608748434445,0.2708133378459076],"test_r2":[-0.04293488091965436,-0.1947226491861922,-0.1312929293558478],"train_indices":[0,118]},"lift_only":{"coefficients":[[0.1415571485457356,-1.596753487449686,0.7513747740109081],[-0.467039274720895,0.4465495203548645,0.4177384478041778],[0.7779601999036232,0.10709852103884424,0.7083987497865182],[0.90395535002692,-0.21567849928803712,0.7250186795038698],[-0.5421715510069484,0.024136436262221804,-0.5152933502507331]],"feature_names":["Cl_F","Cl_T","Cl_B","target_Cl"],"test_indices":[118,198],"test_mae":[0.14411679557214357,0.17080155162285354,0.30356164233118516],"test_r2":[0.8339982877358778,-1.029897374809095,-0.47203147916397437],"train_indices":[0,118]},"target_only":{"coefficients":[[0.42088260879176365,-0.7517262227967044,7.070800457901366],[-0.022799107036991742,-0.030165575767574018,-1.114723347361208],[-0.058100415140495916,-0.0030997511775552387,-0.05073984404877209]],"feature_names":["target_Cd","target_Cl"],"test_indices":[118,198],"test_mae":[0.42291863127461127,0.11170853251901283,0.28518540270859416],"test_r2":[-0.2749027823589898,-0.009611506433964578,-0.34167025060522915],"train_indices":[0,118]}},"action_layout":["front","upper","lower"],"evidence_boundary":"All regressions use current-time static signals only. Differences identify statistical proxy value; they do not establish transport delay, and no cross-correlation-selected lag is used.","scene":"illusion_1L","schema_version":"sr-illusion-static-proxy-diagnostic-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz","sha256":"77326cc4c55d9308c1239ccb5a98f9da346fd5c050dfcc74e6f33a552068b385"},"triggered_by":["mapped-shared rear static fit collapsed to a constant","independent rear fit selected drag terms while front selected lift/target-lift terms","PPO empirical G defect is large"]} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..df4ee96 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-karman-baseline-front_feedback-v2-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"-0.3208584*Cd_rear_a","deployment_expression_hash":"e15670171eb7b7a705461ddfc7877eeea4decef21c8937504293610307fbc728","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-karman-baseline-front_feedback-v2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 1 --smoke --front-deployment-expression=-0.3208584*Cd_rear_a --rear-deployment-expression=-4.0","created_at":"2026-07-17T15:51:25.363810+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.2113201835555798,"r2":-1.835869034572113e-08},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":1,"offline_metrics":{"blind":{"mae":1.219174907170236,"r2":-1.6484578813091844e-08},"train":{"mae":1.2113201835555798,"r2":-1.835869034572113e-08},"validation":{"mae":1.3203693135426595,"r2":-1.8095616116653446e-08}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-2.2090210473228247,2.2090210473228247],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":1,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":233.14476,"score":0.0},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":1.9593188,"score":2.389531343193987}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-karman-baseline-front_feedback-v2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..158ba1e --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-front_feedback-v2-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-karman-baseline-front_feedback-v2-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.0","deployment_expression_hash":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-karman-baseline-front_feedback-v2-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 1 --smoke --front-deployment-expression=-0.3208584*Cd_rear_a --rear-deployment-expression=-4.0","created_at":"2026-07-17T15:51:25.682158+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":4.176440765276415,"r2":-4.599996933662748},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":1,"offline_metrics":{"blind":{"mae":4.195420059010301,"r2":-4.830192499619163},"train":{"mae":4.176440765276415,"r2":-4.599996933662748},"validation":{"mae":4.075080445834007,"r2":-4.441291066836324}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.0,-4.0],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":1,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":268.4219,"score":0.0},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":21.234404,"score":1.2684686499515592}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-karman-baseline-front_feedback-v2-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/audit_report.json b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/audit_report.json new file mode 100644 index 0000000..df3113f --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/karman/karman_re100/config.json","sha256":"5e267b2bb847bc46184132db621c6e18ea84c40b68dc44b03e5890d7f42054ae"},{"kind":"npz","path":"data/karman/karman_re100/controlled.npz","sha256":"4f91a67bc0a3cac5e34dd1888f09873e6940cf70a7d2615ea896ed0623bdf7cf"},{"kind":"metadata","path":"data/karman/karman_re100/manifest.json","sha256":"ad4acb3a443d63daa3760028224835ddb3079589abee535930654c7a638c2006"},{"kind":"metadata","path":"data/karman/karman_re100/norm.json","sha256":"e2b5509203fc19eca38022a70e4fb7812d575d503fb1bf31af7e40b462cec939"},{"kind":"metadata","path":"data/karman/karman_re100/result.json","sha256":"61496bb0a486139557344dc0574568a2ba14f19ccc1f1973c7e077cebe5906d4"},{"kind":"npz","path":"data/karman/karman_re100/target.npz","sha256":"f97b024977e4aadfa5e1d61ba5118a083282c4eb753916eaa56c1e70d710f85e"},{"kind":"npz","path":"data/karman/karman_re100/uncontrolled.npz","sha256":"271bec10515abc9e7b09589fb84a23517151a2df3fd655498cffa4f0eb59695d"},{"kind":"formula","path":"results/formulas/karman_re100_front.json","sha256":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6"},{"kind":"formula","path":"results/formulas/karman_re100_rear_shared_upper.json","sha256":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff"}],"data_run_id":"trusted-baseline-karman-re100-20260717","errors":[{"code":"artifact_kind_missing","message":"run has no validation artifact"},{"code":"artifact_kind_missing","message":"run has no telemetry artifact"}],"generated_at":"2026-07-17T16:28:46.717328+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"trusted-karman-baseline-rear_constant-20260717","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"fail","strict_failure":true,"summary":{"artifact_count":9,"candidate_count":2,"error_count":2,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/candidate_registry.json b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/candidate_registry.json new file mode 100644 index 0000000..9f49315 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-front_odd-anchor-upper","path":"results/formulas/karman_re100_front.json","run_id":"trusted-karman-baseline-rear_constant-20260717","sha256":"eef5e8625b8c21ebb2377f60fa9ee68486783cae763d632e4c7f5fe40ba224f6","status":"candidate"},{"artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-rear_shared-anchor-upper","path":"results/formulas/karman_re100_rear_shared_upper.json","run_id":"trusted-karman-baseline-rear_constant-20260717","sha256":"f960b541df0fc43427173e885f6fd70131b62ad34d88e3aa4351c3467a3604ff","status":"candidate"}],"diagnostic_reason":null,"promotion_eligible":true,"run_id":"trusted-karman-baseline-rear_constant-20260717","schema_version":"sr-candidate-registry-v1","status":"candidate"} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_front.json b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_front.json new file mode 100644 index 0000000..841aae8 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_front.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-front_odd-anchor-upper","deployment_expression":"0.0","deployment_expression_hash":"8aed642bf5118b9d3c859bd4be35ecac75b6e873cce34e7b6f554b06f75550d7","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["front_odd"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":0,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-karman-baseline-rear_constant-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 1 --smoke --front-deployment-expression 0.0 --rear-deployment-expression=-4.0","created_at":"2026-07-17T15:50:08.113851+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":1.2113201835555798,"r2":-1.835869034572113e-08},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":1,"offline_metrics":{"blind":{"mae":1.219174907170236,"r2":-1.6484578813091844e-08},"train":{"mae":1.2113201835555798,"r2":-1.835869034572113e-08},"validation":{"mae":1.3203693135426595,"r2":-1.8095616116653446e-08}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[0.0,0.0],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":1,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":233.14476,"score":0.0},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":1.9593188,"score":2.389531343193987}],"unary_operators":["square"]}},"role":"front_odd","run_id":"trusted-karman-baseline-rear_constant-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_rear_shared_upper.json b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_rear_shared_upper.json new file mode 100644 index 0000000..4cc10a0 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-karman-baseline-rear_constant-20260717/formulas/karman_re100_rear_shared_upper.json @@ -0,0 +1 @@ +{"alignment_metadata":{"alignment":"causal_post_state_to_next_action","history_policy":"drop_warmup_zero_initialized","required_target":false,"sample_segments":{"steady":[50,200],"transient":[2,50]},"warmup":2},"anchor":"upper","artifact_id":"trusted-karman-baseline-rear_constant-20260717-per-scene-rear_shared-anchor-upper","deployment_expression":"-4.0","deployment_expression_hash":"1dfa6c0b80d1b260ca13e7f78fa9b39ff1ee57d603424528937fa29f9abd19ab","dt_c_metadata":{"per_scene":{"karman_re100":0.4},"unit":"D/U0"},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_metadata":{"builder":"SR_analysis.utils.data_contracts.build_batch_dataset","definitions_module":"SR_analysis.utils.feature_builder","order":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"]},"feature_names":["u_s","u_a","u_c","v_s","v_a","v_c","Cd_F","Cd_rear_s","Cd_rear_a","Cd_tot","Cl_F","Cl_rear_s","Cl_rear_a","Cl_tot"],"fitted_expression":"8.79444826162819e-6*Cd_rear_a**2","fitted_expression_hash":"52e9c98cf37f428b13ee32ab02721907e4952d34326959703774ec49a11412fd","g_metadata":{"deployment_semantics":"mapped_shared","fitted_heads":["rear_shared"],"front_rule":"front(Gx)=-front(x)","rear_rule":"lower(x)=-upper(Gx)","symmetry_mode":"mapped_shared","version":"legacy-mirror-front-odd-rear-swap-negate-v1"},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","model_type":"symbolic","output":{"definition":"cylinder_surface_tangential_velocity/U0","name":"alpha","native_action_index":1,"native_action_order":["front","upper","lower"],"unit":"dimensionless"},"provenance":{"data":{"dataset_hash":"e6cc00c83aea917da6559798c7c49bad834ace9a995f3d2da0ce51a0ee9cc753","paths":{"karman_re100":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz"},"per_scene_hashes":{"karman_re100":"f90fb816c15163fe3eba498a3a69083aaeac3fe9895d2538d73014674ee6d1eb"}},"fit":{"command":"src/SR_analysis/stage_2_fit.py --scene karman_re100 --mode per-scene --run-id trusted-karman-baseline-rear_constant-20260717 --data-root src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100 --feature-set symmetry --sample-segment all --transient-count 50 --symmetry-mode mapped_shared --seed 0 --niterations 1 --smoke --front-deployment-expression 0.0 --rear-deployment-expression=-4.0","created_at":"2026-07-17T15:50:08.341455+00:00","deployment_semantics":"mapped_shared","diagnostic_metrics":{"mae":4.176440765276415,"r2":-4.599996933662748},"environment":{"numpy":"2.2.6","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","pysr":"1.5.10","python":"3.10.20"},"feature_profile":"default","feature_set":"symmetry","g_augmented":true,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","mode":"per-scene","n_samples":236,"niterations":1,"offline_metrics":{"blind":{"mae":4.195420059010301,"r2":-4.830192499619163},"train":{"mae":4.176440765276415,"r2":-4.599996933662748},"validation":{"mae":4.075080445834007,"r2":-4.441291066836324}},"scene_augmented_sample_counts":{"karman_re100":394},"scene_sample_counts":{"karman_re100":197},"seed":0,"selection_policy":"manual_validation_required_r2_never_auto_promotes","smoke":true,"source_n_samples":197,"static_safety":{"finite":true,"grid_size":9,"observed_range":[-4.0,-4.0],"required_output_range":null,"safe":true,"within_output_range":true},"symmetry_mode":"mapped_shared"},"pysr":{"binary_operators":["+","-","*"],"candidate_limit":25,"complexity":{"maxsize":7,"parsimony":0.01},"parameters":{"batching":false,"binary_operators":["+","-","*"],"complexity_of_constants":2,"deterministic":true,"maxsize":7,"niterations":1,"parallelism":"serial","parsimony":0.01,"population_size":16,"populations":2,"random_state":0,"tournament_selection_n":4,"unary_operators":["square"]},"pareto_candidates":[{"complexity":4.0,"expression":"Cd_tot**8","loss":268.4219,"score":0.0},{"complexity":6.0,"expression":"8.79444826162819e-6*Cd_rear_a**2","loss":21.234404,"score":1.2684686499515592}],"unary_operators":["square"]}},"role":"rear_shared","run_id":"trusted-karman-baseline-rear_constant-20260717","schema_version":"1.0","training_scenes":["karman_re100"]} diff --git a/src/SR_analysis/results/runs/trusted-parity-report-20260717/illusion_1L.json b/src/SR_analysis/results/runs/trusted-parity-report-20260717/illusion_1L.json new file mode 100644 index 0000000..615c812 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-parity-report-20260717/illusion_1L.json @@ -0,0 +1,85 @@ +{ + "schema_version": "sr-stage1-stage3-parity-v1", + "scene": "illusion_1L", + "status": "failed", + "semantics": "same code/config/init path; no lag optimization", + "sources": { + "stage1": "src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/controlled.npz", + "stage3": "src/SR_analysis/results/runs/trusted-parity-stage3-illusion-20260717/telemetry/illusion_1L__ppo__f-ppo__si-600.npz" + }, + "metrics": { + "sensors": { + "max_abs": 0.35279037803411484, + "rmse": 0.10839767232511273, + "first_stage1": [ + 1.3122379779815674, + 0.026284584775567055, + 0.7453827857971191, + 0.44025105237960815, + 0.8522571921348572, + 0.15321631729602814 + ], + "first_stage3": [ + 1.132259726524353, + 0.2650761902332306, + 0.807655930519104, + 0.5201426148414612, + 0.9090766310691833, + 0.2118835300207138 + ] + }, + "forces": { + "max_abs": 0.00025208829902112484, + "rmse": 9.57015328977389e-05, + "first_stage1": [ + 0.001823351951315999, + -5.497008532984182e-05, + 0.0012461086735129356, + 0.002868582960218191, + 0.0014150862116366625, + -0.0030565292108803988 + ], + "first_stage3": [ + 0.0018366646254435182, + -7.248697511386126e-05, + 0.0012429741909727454, + 0.0027831869665533304, + 0.001424301415681839, + -0.003099400084465742 + ] + }, + "actions_alpha": { + "max_abs": 0.32692766189575195, + "rmse": 0.12334427066375304, + "first_stage1": [ + 0.6221361756324768, + -0.5725568532943726, + 0.549890398979187 + ], + "first_stage3": [ + 0.4441679120063781, + -0.4868878126144409, + 0.3625108003616333 + ] + }, + "target_forces": { + "max_abs": 7.111978629836813e-05, + "rmse": 3.375562069468476e-05, + "first_stage1": [ + 0.0056788502261042595, + -0.0008005343261174858 + ], + "first_stage3": [ + 0.005671756807714701, + -0.0007422934286296368 + ] + }, + "target_phase": { + "max_abs": 0.0, + "rmse": 0.0, + "first_stage1": 0, + "first_stage3": 0 + } + }, + "interpretation": "Exact parity is required before fitting." +} diff --git a/src/SR_analysis/results/runs/trusted-parity-report-20260717/karman_re100.json b/src/SR_analysis/results/runs/trusted-parity-report-20260717/karman_re100.json new file mode 100644 index 0000000..4161eee --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-parity-report-20260717/karman_re100.json @@ -0,0 +1,103 @@ +{ + "schema_version": "sr-stage1-stage3-parity-v1", + "scene": "karman_re100", + "status": "failed", + "semantics": "same code/config/init path; no lag optimization", + "sources": { + "stage1": "src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/controlled.npz", + "stage3": "src/SR_analysis/results/runs/trusted-parity-stage3-karman-20260717/telemetry/karman_re100__ppo__f-ppo__si-800.npz" + }, + "metrics": { + "sensors": { + "max_abs": [ + 0.2279391884803772, + 0.3543110117316246, + 0.05866581201553345, + 0.6503153294324875, + 0.2136228084564209, + 0.3317064493894577 + ], + "rmse": [ + 0.10714347923524853, + 0.1851645665106116, + 0.023884519124314108, + 0.2537035393980992, + 0.10405433484957621, + 0.17214100176039895 + ], + "first_stage1": [ + 1.036597728729248, + -0.2952796220779419, + 0.9575769305229187, + -0.3824927806854248, + 1.0319935083389282, + -0.276147723197937 + ], + "first_stage3": [ + 0.9396619200706482, + -0.18482325971126556, + 0.9492789506912231, + -0.2266545295715332, + 1.119990587234497, + -0.1391063630580902 + ] + }, + "forces": { + "max_abs": [ + 0.005839494511747034, + 0.0040340255181945395, + 0.006575434235855937, + 0.0035455776378512383, + 0.009073725901544094, + 0.0036938455887138844 + ], + "rmse": [ + 0.0027711597118044323, + 0.0021599641535497245, + 0.0030339479892200717, + 0.0012720718863325254, + 0.003884188187563126, + 0.001537923458317855 + ], + "first_stage1": [ + -0.0003235631447751075, + -0.004460558760911226, + 0.004704011604189873, + 0.0042458875104784966, + -0.0058816117234528065, + -0.002577100181952119 + ], + "first_stage3": [ + -0.0002966826723422855, + -0.004069335758686066, + 0.0014683620538562536, + 0.0037770988419651985, + -0.002618770580738783, + -0.003227406181395054 + ] + }, + "actions_alpha": { + "max_abs": [ + 2.261028617620468, + 3.8008506298065186, + 4.908625841140747 + ], + "rmse": [ + 1.1153691978137834, + 1.71581896337757, + 1.732978228660764 + ], + "first_stage1": [ + -1.0852171182632446, + -2.180814743041992, + 6.72611141204834 + ], + "first_stage3": [ + 0.26543110609054565, + -2.8842018842697144, + 5.853484392166138 + ] + } + }, + "interpretation": "Exact parity is required before fitting." +} diff --git a/src/SR_analysis/results/runs/trusted-parity-stage3-illusion-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json b/src/SR_analysis/results/runs/trusted-parity-stage3-illusion-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json new file mode 100644 index 0000000..a708791 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-parity-stage3-illusion-20260717/validations/illusion_1L__ppo__f-ppo__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.7868008613586426,-0.4868878126144409,1.4211437702178955],"min":[-0.10093626379966737,-1.4857769012451172,-0.009631156921386719]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.007868008613586426,-0.004868878126144409,0.014211437702178956],"min":[-0.0010093626379966737,-0.014857769012451172,-9.63115692138672e-05]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-parity-stage3-illusion-20260717-illusion_1L__ppo__f-ppo__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-17T14:19:27.081987+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"d1570b0cf80d73a339e2aec7c7de758a9e0ce4cfadb3d44010e003a709546946"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":4,"similarity":0.942371068631204},"lag":4,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.963749561044905,"1":0.9414997187236117,"2":0.9168774998850293,"3":0.916861630562279,"4":0.967400578988923,"5":0.947837422582476},"tail":{"lag":4,"n_samples":40,"similarity":0.942371068631204}},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene illusion_1L --mode ppo --device 2 --steps 40 --run-id trusted-parity-stage3-illusion-20260717","created_at":"2026-07-17T14:19:27.081961+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"ebcc35e8c55793269b4289cb6ef5eb98519267a66993f9b938f142aec8c07945","run_id":"trusted-parity-stage3-illusion-20260717","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-parity-stage3-illusion-20260717/telemetry/illusion_1L__ppo__f-ppo__si-600.npz","sha256":"9abc5b3c344bb602757cfc2c5fcc45b33606451d3b0aace2199cb00eeb285a59","telemetry_hash":"9abc5b3c344bb602757cfc2c5fcc45b33606451d3b0aace2199cb00eeb285a59"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-parity-stage3-karman-20260717/validations/karman_re100__ppo__f-ppo__si-800.json b/src/SR_analysis/results/runs/trusted-parity-stage3-karman-20260717/validations/karman_re100__ppo__f-ppo__si-800.json new file mode 100644 index 0000000..dfd8881 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-parity-stage3-karman-20260717/validations/karman_re100__ppo__f-ppo__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.736829996109009,-0.4371798038482666,7.387079238891602],"min":[-3.092463493347168,-7.2862160205841064,1.6133320331573486]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.01736829996109009,-0.004371798038482666,0.07387079238891602],"min":[-0.03092463493347168,-0.07286216020584106,0.016133320331573487]}},"alignment":"causal_post_state_to_next_action","artifact_id":"trusted-parity-stage3-karman-20260717-karman_re100__ppo__f-ppo__si-800","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-17T14:09:57.049406+00:00","data_hashes":{"harmonics":null,"norm":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0","target_sensors":"6120469acffc1a4b8e8afcf6eb77cf0ef719278274b72fc3fdc94966d9692d1d"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":null,"formula_hashes":null,"formula_validation":null,"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":-4,"similarity":0.9161217753283886},"lag":-4,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.940873388449351,"1":0.9466727852355689,"2":0.8105619072914123,"3":0.8995907555023829,"4":0.9519758939743042,"5":0.9470559215173125},"tail":{"lag":-4,"n_samples":40,"similarity":0.9161217753283886}},"mode":"ppo","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"n_steps":40,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode ppo --device 2 --steps 40 --run-id trusted-parity-stage3-karman-20260717","created_at":"2026-07-17T14:09:57.049380+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"596b1bddab4ff19dfb5c71bcb306cc7c79725de8fc7036fbdc7e6c46d75e73d3","run_id":"trusted-parity-stage3-karman-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/trusted-parity-stage3-karman-20260717/telemetry/karman_re100__ppo__f-ppo__si-800.npz","sha256":"8571595e4fdd6340bc9d805f68649ab9a0f37305471746e6982fcf926d048418","telemetry_hash":"8571595e4fdd6340bc9d805f68649ab9a0f37305471746e6982fcf926d048418"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/trusted-policy-replay-20260717/illusion_1L.json b/src/SR_analysis/results/runs/trusted-policy-replay-20260717/illusion_1L.json new file mode 100644 index 0000000..715748a --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-policy-replay-20260717/illusion_1L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":39,"rmse":[0.0,0.0,0.0],"scene":"illusion_1L","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json","sha256":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-parity-stage1-illusion-20260717/illusion/illusion_1L/controlled.npz","sha256":"9306d51fe4b49b2cb5e091614f63bcc7fb20f372b6f74dcc5b23d27d91ef6e7f"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/trusted-policy-replay-20260717/karman_re100.json b/src/SR_analysis/results/runs/trusted-policy-replay-20260717/karman_re100.json new file mode 100644 index 0000000..b2ccaf5 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-policy-replay-20260717/karman_re100.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"interpretation":"This checks policy observation/action wiring without requiring separately initialized CFD trajectories to be pointwise identical.","max_abs_error":[0.0,0.0,0.0],"n_compared":39,"rmse":[0.0,0.0,0.0],"scene":"karman_re100","schema_version":"sr-policy-replay-parity-v1","semantics":"recorded post-state i-1 is replayed to predict recorded normalized action i; first action is excluded because its pre-state is not stored","sources":{"model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json","sha256":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0"},"trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-parity-stage1-karman-20260717/karman/karman_re100/controlled.npz","sha256":"69ec8d77e1cedbb53189ad322708c62af622f5509c188aea1df56c362e32c942"}},"status":"passed","tolerance":2e-06} diff --git a/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/illusion_1L.json b/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/illusion_1L.json new file mode 100644 index 0000000..b0cad3a --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/illusion_1L.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"body_object_ids":{"front":3,"lower":5,"upper":4},"contract_version":"legacy-pinball-order-v1","force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"geometry_order":[{"name":"front","y_offset_L":0.0},{"name":"upper","y_offset_L":0.75},{"name":"lower","y_offset_L":-0.75}],"impulse_test":{"epsilon":0.0001,"interpretation":"slot identity is exact; force magnitude is diagnostic and is not used to infer causality","responses":{"front":{"all_body_forces":{"front":[0.0015274144243448973,-1.1145477401441894e-05],"lower":[0.0018076045671477914,-0.00029467823333106935],"upper":[0.0017758924514055252,0.0002613083634059876]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0015274144243448973,-1.1145477401441894e-05],"nonzero_action_slots":[3]},"lower":{"all_body_forces":{"front":[0.0013365340419113636,-1.0791632121254224e-05],"lower":[0.0015816548839211464,-0.00025786852347664535],"upper":[0.0015539043815806508,0.0002286436065332964]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0015816548839211464,-0.00025786852347664535],"nonzero_action_slots":[5]},"upper":{"all_body_forces":{"front":[0.00133653380908072,-1.0791867680381984e-05],"lower":[0.0015816532541066408,-0.0002578440762590617],"upper":[0.0015539027517661452,0.00022861958132125437]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0015539027517661452,0.00022861958132125437],"nonzero_action_slots":[4]}},"steps":10},"kernel_binding":"action[id_obj] and obs[2*id_obj:2*id_obj+2] share id_obj","ppo_decoder":{"action_bias":[0.0,-2.0,2.0],"action_scale":8.0,"alpha":"normalized_action * action_scale + action_bias","native_slots":[3,4,5]},"runtime_centers":{"front":[380.0,255.5,0.0],"lower":[406.0,240.5,0.0],"upper":[406.0,270.5,0.0]},"runtime_verified":true,"scene":"illusion_1L","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"]} diff --git a/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/karman_re100.json b/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/karman_re100.json new file mode 100644 index 0000000..ffd5989 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-rebuild-order-20260717/order/karman_re100.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"body_object_ids":{"front":4,"lower":6,"upper":5},"contract_version":"legacy-pinball-order-v1","force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"geometry_order":[{"name":"front","y_offset_L":0.0},{"name":"upper","y_offset_L":0.75},{"name":"lower","y_offset_L":-0.75}],"impulse_test":{"epsilon":0.0001,"interpretation":"slot identity is exact; force magnitude is diagnostic and is not used to infer causality","responses":{"front":{"all_body_forces":{"front":[0.0014951565535739064,-0.0001331098610535264],"lower":[0.0006280432571657002,-0.0007473121513612568],"upper":[0.001036409754306078,-0.0002615662233438343]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0014951565535739064,-0.0001331098610535264],"nonzero_action_slots":[4]},"lower":{"all_body_forces":{"front":[0.0013082142686471343,-0.00011663088662317023],"lower":[0.0005494258948601782,-0.000653985480312258],"upper":[0.0009084307821467519,-0.00022888471721671522]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0005494258948601782,-0.000653985480312258],"nonzero_action_slots":[6]},"upper":{"all_body_forces":{"front":[0.0014950977638363838,-0.00013307931658346206],"lower":[0.0006279910448938608,-0.0007473489386029541],"upper":[0.0010364337358623743,-0.00026161663117818534]},"command":9.999999747378752e-05,"force_at_commanded_body":[0.0010364337358623743,-0.00026161663117818534],"nonzero_action_slots":[5]}},"steps":10},"kernel_binding":"action[id_obj] and obs[2*id_obj:2*id_obj+2] share id_obj","ppo_decoder":{"action_bias":[0.0,-4.0,4.0],"action_scale":8.0,"alpha":"normalized_action * action_scale + action_bias","native_slots":[4,5,6]},"runtime_centers":{"front":[600.0,255.5,0.0],"lower":[626.0,240.5,0.0],"upper":[626.0,270.5,0.0]},"runtime_verified":true,"scene":"karman_re100","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"]} diff --git a/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/illusion_1L.json b/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/illusion_1L.json new file mode 100644 index 0000000..0c6ec33 --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/illusion_1L.json @@ -0,0 +1 @@ +{"defect":{"channels":["front","upper","lower"],"max_abs_error":[1.3432213068008423,1.396461009979248,1.5413893461227417],"n_samples":200,"range_normalized_rmse":[0.78530171221656,0.6167392779206916,0.3634879358504398],"rmse":[0.96262572345821,0.7149507566482995,0.9136201580895831]},"g_contract":"raw state and target are mirrored before PPO normalization/evaluation","interpretation":"A nonzero defect means hard-G fitting changes the empirical PPO policy and must be reported as physical symmetrization.","model":{"path":"/home/frank14f/DynamisLab/models/250525/d1a3o14_250525_imit_1L_2U_600S.zip","sha256":"570fbdb08fba1170cbab53de9ede372a9536e0bb8419dda0f0f2db20fd20583d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/illusion/illusion_1L/norm.json","sha256":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc"},"scene":"illusion_1L","schema_version":"sr-ppo-g-audit-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-illusion-1L-20260717/illusion/illusion_1L/controlled.npz","sha256":"77326cc4c55d9308c1239ccb5a98f9da346fd5c050dfcc74e6f33a552068b385"}} diff --git a/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/karman_re100.json b/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/karman_re100.json new file mode 100644 index 0000000..525582a --- /dev/null +++ b/src/SR_analysis/results/runs/trusted-symmetry-audit-20260717/karman_re100.json @@ -0,0 +1 @@ +{"defect":{"channels":["front","upper","lower"],"max_abs_error":[0.5559161603450775,1.8479570150375366,1.577765941619873],"n_samples":200,"range_normalized_rmse":[0.06780933125382194,0.11988716088623977,0.09634890809955356],"rmse":[0.3454616104489206,0.7400102908253704,0.5955309464734044]},"g_contract":"raw state and target are mirrored before PPO normalization/evaluation","interpretation":"A nonzero defect means hard-G fitting changes the empirical PPO policy and must be reported as physical symmetrization.","model":{"path":"/home/frank14f/DynamisLab/models/old/d1a3o12_re100.zip","sha256":"148240c1dcb8b11d8e5a0a9e991f6874c4e799c9744707bf0fb32a8efeb0468d"},"norm":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/karman/karman_re100/norm.json","sha256":"534fda818c030a56960e95d0f3ac1e350d887d03db7f80f1d6453195a502b7f0"},"scene":"karman_re100","schema_version":"sr-ppo-g-audit-v1","status":"diagnostic_only","trajectory":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/data/runs/trusted-baseline-karman-re100-20260717/karman/karman_re100/controlled.npz","sha256":"4f91a67bc0a3cac5e34dd1888f09873e6940cf70a7d2615ea896ed0623bdf7cf"}} diff --git a/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/audit_report.json b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/audit_report.json new file mode 100644 index 0000000..897b3e9 --- /dev/null +++ b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"metadata","path":"data/illusion/illusion_1L/config.json","sha256":"c32cd4112009d4605a5be9bc2a536d9df14e1967451354bbd1c56d577a7ab784"},{"kind":"npz","path":"data/illusion/illusion_1L/controlled.npz","sha256":"77326cc4c55d9308c1239ccb5a98f9da346fd5c050dfcc74e6f33a552068b385"},{"kind":"metadata","path":"data/illusion/illusion_1L/manifest.json","sha256":"c33473020eaffa3295323d86cd78bb85b3c4a0e0096c247e290a1740a1362abd"},{"kind":"metadata","path":"data/illusion/illusion_1L/norm.json","sha256":"061b0565948a04dcc60bc9e6539f33396f870244e04548b7efee00ab88b3bede"},{"kind":"metadata","path":"data/illusion/illusion_1L/result.json","sha256":"428ae7c28f36082b2dcfb20d2e0f06713f96ac1540ef4ec991152e62e6eb4511"},{"kind":"npz","path":"data/illusion/illusion_1L/target.npz","sha256":"8992231d8691e4585f1f4a7effef8abb7f6bc2d4e1d2a1ccf0ece29d7a5fc9cb"},{"kind":"metadata","path":"data/illusion/illusion_1L/target_harmonics.json","sha256":"5ca6ccacbc7011c4094115ec5a7b348378512ecf57b51d19fa900aa296d494de"},{"kind":"telemetry","path":"results/telemetry/illusion_1L__pysr__f-46782190a6b7__si-600.npz","sha256":"897305306165f74ec88087e1765e7ee297dc29cc6b8346704cfbc6c59048bece"},{"kind":"validation","path":"results/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json","sha256":"3177ddbfc23472973150964a457984fdb16af18fe4afcb6231b48db4be113c3a"},{"kind":"formula","path":"results/formulas/illusion_1L_front.json","sha256":"c26a3dd69cf1c00e1acc51e03984271aed100fec2ec6902db9707522961c351d"},{"kind":"formula","path":"results/formulas/illusion_1L_rear_shared_upper.json","sha256":"8c3b1d5f92909db492c8ca6ea218ef7a60fecac2e8531df42ef04d239bcc1302"}],"data_run_id":"trusted-baseline-illusion-1L-20260717","errors":[],"formula_run_id":"rebuild-illusion-1L-safe-mapped-20260717","generated_at":"2026-07-17T16:40:55.694065+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"pass","strict_failure":false,"summary":{"artifact_count":11,"candidate_count":3,"error_count":0,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json new file mode 100644 index 0000000..615b80b --- /dev/null +++ b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"validate-rebuild-illusion-1L-safe-mapped-20260717-illusion_1L__pysr__f-46782190a6b7__si-600","path":"results/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json","run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","sha256":"3177ddbfc23472973150964a457984fdb16af18fe4afcb6231b48db4be113c3a","status":"candidate"},{"artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-front_odd-anchor-upper","path":"results/formulas/illusion_1L_front.json","run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","sha256":"c26a3dd69cf1c00e1acc51e03984271aed100fec2ec6902db9707522961c351d","status":"candidate"},{"artifact_id":"rebuild-illusion-1L-safe-mapped-20260717-per-scene-rear_shared-anchor-upper","path":"results/formulas/illusion_1L_rear_shared_upper.json","run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","sha256":"8c3b1d5f92909db492c8ca6ea218ef7a60fecac2e8531df42ef04d239bcc1302","status":"candidate"}],"diagnostic_reason":null,"promotion_eligible":true,"run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","schema_version":"sr-candidate-registry-v1","status":"candidate"} diff --git a/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json new file mode 100644 index 0000000..b6a3208 --- /dev/null +++ b/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/validations/illusion_1L__pysr__f-46782190a6b7__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[0.5890250947089628,-0.4377858711706606,1.0869425086062516],"min":[-0.7109530541424756,-1.0869073267907259,0.26193429335274443]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.005890250947089629,-0.004377858711706606,0.010869425086062517],"min":[-0.007109530541424756,-0.010869073267907259,0.0026193429335274443]}},"alignment":"causal_post_state_to_next_action","artifact_id":"validate-rebuild-illusion-1L-safe-mapped-20260717-illusion_1L__pysr__f-46782190a6b7__si-600","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-17T09:21:02.606304+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"b530c492884d1dedac8210a975c641ab9fe2bf06d2dca61d730703e89cb539d2"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hash":"46782190a6b7a8362d4c231b790c44610ddeb9139303428cbf819034778150d5","formula_hashes":{"front_deployment_expression":"4a8d2c1b1ebfaac28436ee3d2f5c2ba560d48ed81308d354c2c5306451350e09","front_source":"c26a3dd69cf1c00e1acc51e03984271aed100fec2ec6902db9707522961c351d","pair":"46782190a6b7a8362d4c231b790c44610ddeb9139303428cbf819034778150d5","rear_deployment_expression":"e52a26692a0f10b3b58db8ec4d78f0a9f2bba017cb3cb37f5fc77a07dd69f1df","rear_source":"8c3b1d5f92909db492c8ca6ea218ef7a60fecac2e8531df42ef04d239bcc1302"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":{"adapter":"SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter","full":{"lag":9,"similarity":0.9753355227240483},"lag":9,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9814179440339407,"1":0.9680631437028447,"2":0.9918022718694475,"3":0.95933491928089,"4":0.9797337287002139,"5":0.9716611287569523},"tail":{"lag":9,"n_samples":72,"similarity":0.9753355227240483}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene illusion_1L --mode pysr --formula-front src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_front.json --formula-rear src/SR_analysis/results/runs/rebuild-illusion-1L-safe-mapped-20260717/formulas/illusion_1L_rear_shared_upper.json --device 2 --steps 200 --run-id validate-rebuild-illusion-1L-safe-mapped-20260717","created_at":"2026-07-17T09:21:02.606274+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"1539464a13b85f7193ef009befd8b5e1ecf87cbd0eba8e2cab85750b63c3f5e3","run_id":"validate-rebuild-illusion-1L-safe-mapped-20260717","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/validate-rebuild-illusion-1L-safe-mapped-20260717/telemetry/illusion_1L__pysr__f-46782190a6b7__si-600.npz","sha256":"897305306165f74ec88087e1765e7ee297dc29cc6b8346704cfbc6c59048bece","telemetry_hash":"897305306165f74ec88087e1765e7ee297dc29cc6b8346704cfbc6c59048bece"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/validate-rebuild-karman-re100-safe-mapped-20260717/validations/karman_re100__pysr__f-a5d2d9b2cca0__si-800.json b/src/SR_analysis/results/runs/validate-rebuild-karman-re100-safe-mapped-20260717/validations/karman_re100__pysr__f-a5d2d9b2cca0__si-800.json new file mode 100644 index 0000000..d753028 --- /dev/null +++ b/src/SR_analysis/results/runs/validate-rebuild-karman-re100-safe-mapped-20260717/validations/karman_re100__pysr__f-a5d2d9b2cca0__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":null,"alignment":"causal_post_state_to_next_action","artifact_id":"validate-rebuild-karman-re100-safe-mapped-20260717-karman_re100__pysr__f-a5d2d9b2cca0__si-800","completed_steps":55,"config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-17T09:16:57.581473+00:00","dt_c":0.4,"exception_type":"FloatingPointError","failed_step":55,"formula_hash":"a5d2d9b2cca0915f90e8a61772cc23b32c143764c9ddd10b30ff09b3ef52ffc2","formula_hashes":{"front_deployment_expression":"f3de01e361569e512db37dc82e8c6ca812761a658909aa0d0c740137d98de7de","front_source":"1bfc869eeb1e2d6feb3993ad1a2fa72bc0ee50854493cfe96e8245291de8505d","pair":"a5d2d9b2cca0915f90e8a61772cc23b32c143764c9ddd10b30ff09b3ef52ffc2","rear_deployment_expression":"fb695b9d0c60183a3abe0ac2cabaa8de1aff1d41fbba15883ccc81a2bd32b5a1","rear_source":"4c606c8e2281b695facedf1b1feb7afd13a638cbe2194242be69925a80d213a7"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metric_version":"legacy_dtw_v1_abs_n_unclipped","metrics":null,"mode":"pysr","n_steps":200,"provenance":{"command":"src/SR_analysis/stage_3_validate.py --scene karman_re100 --mode pysr --formula-front src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_front.json --formula-rear src/SR_analysis/results/runs/rebuild-karman-re100-safe-mapped-20260717/formulas/karman_re100_rear_shared_upper.json --device 2 --steps 200 --run-id validate-rebuild-karman-re100-safe-mapped-20260717","created_at":"2026-07-17T09:16:57.581473+00:00","environment":{"conda_env":"pycuda_3_10","device":2},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d"},"record_hash":"de235f30275233b7046d20046722e7a0b174801adb51ed5d2eb36865bf3ab483","run_id":"validate-rebuild-karman-re100-safe-mapped-20260717","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"failed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/validate-rebuild-karman-re100-safe-mapped-20260717/telemetry/karman_re100__pysr__f-a5d2d9b2cca0__si-800.npz","sha256":"6aea042949c619d3cc427692601fa37af3de772693ec76f011e8287a7eb47618","telemetry_hash":"6aea042949c619d3cc427692601fa37af3de772693ec76f011e8287a7eb47618"},"termination_reason":"FloatingPointError: raw observation contains non-finite values"} diff --git a/src/SR_analysis/results/runs/wiring-illusion-1L-safe-20260716/validations/illusion_1L__pysr__f-eeed591da8b0__si-600.json b/src/SR_analysis/results/runs/wiring-illusion-1L-safe-20260716/validations/illusion_1L__pysr__f-eeed591da8b0__si-600.json new file mode 100644 index 0000000..a56e0e4 --- /dev/null +++ b/src/SR_analysis/results/runs/wiring-illusion-1L-safe-20260716/validations/illusion_1L__pysr__f-eeed591da8b0__si-600.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[-2.3264438e-06,-0.86876,0.86876],"min":[-2.3264438e-06,-0.86876,0.86876]},"actions_omega":{"layout":["front","upper","lower"],"max":[-2.3264438e-08,-0.0086876,0.0086876],"min":[-2.3264438e-08,-0.0086876,0.0086876]}},"alignment":"causal_post_state_to_next_action","config":{"action_bias":[0.0,-2.0,2.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.3,"control_time_scale_steps":2000,"conv_len":36,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-1.0,1.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":false,"model_name":"d1a3o14_250525_imit_1L_2U_600S","mu":0.02,"n_objects_env":6,"nu":0.004,"obs_slice":[0,12],"pinball_front_x":19.0,"pinball_rear_x":20.3,"policy_init_action":[0.0,-1.0,1.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":14,"sample_interval":600,"scene_id":"illusion","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":30.0,"source":"PPO_inference","target_center":[20.0,12.775,0.0],"target_center_x":20.0,"target_diameter":1.0,"target_force_slice":[0,2],"target_radius":1.0,"target_radius_lattice":20.0,"target_sensor_slice":[2,8],"target_type":"periodic","u0":0.01},"config_hash":"40bdb50b4b27a115dea53c90692c7626beacd9843420d3cb8d5282c53c9068ed","created_utc":"2026-07-16T15:21:21.913507+00:00","data_hashes":{"harmonics":"f135660ee3533c81d7dd175a4530f83e728ba52ec9485738ec0ad953e4a6378d","norm":"9ec5ddbe68fb441cdb660c17b51bf84ac348ca87d565081a21cb092a5245e4fc","target_sensors":"d801b5341d75f92dc2cd39a76d28cdb18f1cf352a2d7c44c8806eb9536e969bd"},"dt_c":0.3,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hashes":{"front_deployment_expression":"9a6d4ef87280e61b77536cb3dc80b45e73a517c372407323ea3031fd56a9ae2e","front_source":"4f93338f9dd3515e02b561b2bb549d9c1d5435b0fe8ef77731f918198d8e0c40","pair":"eeed591da8b0bc5ab8f21f008e37ad2f8f57ec08664718a1ce8b5fc20e4eec72","rear_deployment_expression":"29ee9e2014dbb77a6561223facad5994a0853f7762acbfe3be34e0070089edb5","rear_source":"67b0714258f626d359eee65e7790cefa4eb0a81a529e81061d7f3fb419aa01e0"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metrics":{"adapter":"legacy_test.core.dtw_metrics+detail_adapter","full":{"lag":0,"similarity":0.9521714919397642},"lag":0,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9724518905083338,"1":0.9524964803389998,"2":0.9606742925114102,"3":0.9155733059677813,"4":0.9698646300368838,"5":0.9419683522751762},"tail":{"lag":0,"n_samples":40,"similarity":0.9521714919397642}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"record_hash":"86e0a9e257225c8ce6ce51f41b4bc01f0d81fe370b6c2693f70f2da6295caa9c","run_id":"wiring-illusion-1L-safe-20260716","sample_interval":600,"scene":"illusion_1L","scene_id":"illusion","schema_version":"sr-stage3-validation-v2","si":600,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/wiring-illusion-1L-safe-20260716/telemetry/illusion_1L__pysr__f-eeed591da8b0__si-600.npz","sha256":"d0796cc203938d4a9653a18653b8d67c5074c3d5d363ff3a6b0351243323b959"},"termination_reason":"completed"} diff --git a/src/SR_analysis/results/runs/wiring-karman-re100-20260716/audit_report.json b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/audit_report.json new file mode 100644 index 0000000..b1819a8 --- /dev/null +++ b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/audit_report.json @@ -0,0 +1 @@ +{"artifacts":[{"kind":"npz","path":"results/telemetry/karman_re100__pysr__f-536a929fa545__si-800.npz","sha256":"0a98bae6a502fc927b0207ef7d4bc772e53ec9419c45ff857038b3db3691dc58"},{"kind":"validation","path":"results/validations/karman_re100__pysr__f-536a929fa545__si-800.json","sha256":"d21c705be93358c667fc2059373b9fdd00b18bb1da33982f1bd51a7a9fa2cf14"}],"data_run_id":"wiring-karman-re100-20260716","errors":[{"code":"run_directory_missing","message":"required run directory does not exist: /home/frank14f/DynamisLab/src/SR_analysis/data/runs/wiring-karman-re100-20260716"},{"code":"validation_schema_missing","message":"validation missing ['formula_hash', 'metric_version', 'provenance']","path":"results/validations/karman_re100__pysr__f-536a929fa545__si-800.json"},{"code":"artifact_kind_missing","message":"run has no formula artifact"},{"code":"artifact_kind_missing","message":"run has no telemetry artifact"}],"generated_at":"2026-07-16T15:23:14.324556+00:00","historical":{"adjudication":"none","canonical_registry":{"path":"scene_registry.json","sha256":"0311e8580207ec33a361ba98a4d075e315b50bf137eb2edd2e94585e18362aeb"},"known_conflicts":["Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.","Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner."],"status":"historical_frozen","validation_files":["results/validations/illusion_0.5L.json","results/validations/illusion_0.6L.json","results/validations/illusion_0.75L.json","results/validations/illusion_0.75L_ppo.json","results/validations/illusion_0.8L.json","results/validations/illusion_1.2L.json","results/validations/illusion_1.5L_ppo.json","results/validations/illusion_1L.json","results/validations/illusion_1L_ppo.json","results/validations/illusion_1L_target.json","results/validations/illusion_2L.json","results/validations/karman_re100.json","results/validations/karman_re100_ppo.json","results/validations/karman_re200.json","results/validations/karman_re200_ppo.json","results/validations/karman_re400.json","results/validations/karman_re400_SI400.json","results/validations/karman_re400_ppo.json","results/validations/karman_re50.json","results/validations/karman_re50_ppo.json","results/validations/vortex_lamb.json","results/validations/vortex_lamb_ppo.json","results/validations/vortex_taylor.json","results/validations/vortex_taylor_ppo.json"]},"promotion":{"automatic":false,"required_action":"manual review before any canonical registry edit"},"run_id":"wiring-karman-re100-20260716","schema_version":"sr-round1-audit-v1","scope_exclusions":["Vortex","V5","Stage 4 figure generation"],"status":"fail","strict_failure":true,"summary":{"artifact_count":2,"candidate_count":1,"error_count":4,"warning_count":0},"warnings":[]} diff --git a/src/SR_analysis/results/runs/wiring-karman-re100-20260716/candidate_registry.json b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/candidate_registry.json new file mode 100644 index 0000000..9f73b84 --- /dev/null +++ b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/candidate_registry.json @@ -0,0 +1 @@ +{"artifacts":[{"artifact_id":"validation:d21c705be93358c6","path":"results/validations/karman_re100__pysr__f-536a929fa545__si-800.json","run_id":"wiring-karman-re100-20260716","sha256":"d21c705be93358c667fc2059373b9fdd00b18bb1da33982f1bd51a7a9fa2cf14","status":"candidate"}],"run_id":"wiring-karman-re100-20260716","schema_version":"sr-candidate-registry-v1","status":"candidate"} diff --git a/src/SR_analysis/results/runs/wiring-karman-re100-20260716/validations/karman_re100__pysr__f-536a929fa545__si-800.json b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/validations/karman_re100__pysr__f-536a929fa545__si-800.json new file mode 100644 index 0000000..2ed7760 --- /dev/null +++ b/src/SR_analysis/results/runs/wiring-karman-re100-20260716/validations/karman_re100__pysr__f-536a929fa545__si-800.json @@ -0,0 +1 @@ +{"action_layout":["front","upper","lower"],"action_ranges":{"actions_alpha":{"layout":["front","upper","lower"],"max":[1.0370114284113943,-2.8095132817329853,3.889362718267015],"min":[-0.9488304436297118,-3.8721902219551696,2.8266857780448307]},"actions_omega":{"layout":["front","upper","lower"],"max":[0.010370114284113942,-0.028095132817329855,0.03889362718267015],"min":[-0.009488304436297118,-0.0387219022195517,0.028266857780448306]}},"alignment":"causal_post_state_to_next_action","config":{"action_bias":[0.0,-4.0,4.0],"action_layout":["front","upper","lower"],"action_scale":8.0,"body_layout":["front","upper","lower"],"control_dt":0.4,"control_time_scale_steps":2000,"conv_len":30,"device_id":2,"dtw_lag_channel":1,"dtw_version":"legacy_dtw_v1_abs_n_unclipped","fifo_init_action":[0.0,-4.0,4.0],"fifo_len":150,"force_layout":["front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"has_disturbance":true,"model_name":"d1a3o12_re100","mu":0.02,"n_objects_env":7,"nu":0.004,"obs_slice":[2,14],"pinball_front_x":30.0,"pinball_rear_x":31.3,"policy_init_action":[0.0,-4.0,4.0],"raw_force_slice":[6,12],"raw_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy","front_fx","front_fy","upper_fx","upper_fy","lower_fx","lower_fy"],"raw_sensor_slice":[0,6],"re_code":100,"re_d":50.0,"s_dim":12,"sample_interval":800,"scene_id":"karman","sensor_layout":["upper_ux","upper_uy","center_ux","center_uy","lower_ux","lower_uy"],"sensor_x":40.0,"source":"PPO_inference","target_force_slice":null,"target_sensor_slice":[0,6],"target_type":"periodic","u0":0.01},"config_hash":"0db2195954a5b95078c54d81853cd8fddca125c8cb1d686416800ca08a035e3b","created_utc":"2026-07-16T15:11:03.346783+00:00","data_hashes":{"harmonics":null,"norm":null,"target_sensors":"a5ef25e1e2d6f7c725a3ae62d0c1e363848fa269dc51e6be5fbc56762137f448"},"dt_c":0.4,"environment":{"numpy":"1.26.4","platform":"Linux-6.8.0-124-generic-x86_64-with-glibc2.35","python":"3.10.13 (main, Sep 11 2023, 13:44:35) [GCC 11.2.0]"},"formula_hashes":{"front_deployment_expression":"f225e7fadac25db2c2ec90ccdaf81ce7625d8cb8ee40cb3b0c45c57824370210","front_source":"8bbf6a54f505afdd6de64f21524a0793b9b01776fe5bb0b03410dffe982d9095","pair":"536a929fa5452683d7b261160aa89cb73062fae53a9be1fef82ae756e583ace5","rear_deployment_expression":"c2b61405df05a42aac6733855413b19d2ea592529eaf84e8d1c9eace7c5873a4","rear_source":"6c5f24d27964e835c949c671ef2d9f7bae9d8de14c9f5145f1c4eae4ba9f2678"},"formula_validation":{"front":{"canonical_role":"front_odd","channel":null,"legacy":false},"rear":{"channel":null,"legacy":false}},"git_sha":"ca8ee5f238ee58eaaf48027ad026c35784f76d4d","metrics":{"adapter":"legacy_test.core.dtw_metrics+detail_adapter","full":{"lag":-5,"similarity":0.8927769988361333},"lag":-5,"metric_version":"legacy_dtw_v1_abs_n_unclipped","per_channel":{"0":0.9176726281642914,"1":0.924167433505257,"2":0.8185953140258789,"3":0.8466075963030258,"4":0.9207351982593537,"5":0.9288838227589925},"tail":{"lag":-5,"n_samples":40,"similarity":0.8927769988361333}},"mode":"pysr","model":{"path":null,"sha256":null},"n_steps":40,"record_hash":"182c9fd001b47797c95481dad9a970ceb8c94341a11cfda9c9a2a776e29cd6f6","run_id":"wiring-karman-re100-20260716","sample_interval":800,"scene":"karman_re100","scene_id":"karman","schema_version":"sr-stage3-validation-v2","si":800,"status":"completed","telemetry":{"path":"/home/frank14f/DynamisLab/src/SR_analysis/results/runs/wiring-karman-re100-20260716/telemetry/karman_re100__pysr__f-536a929fa545__si-800.npz","sha256":"0a98bae6a502fc927b0207ef7d4bc772e53ec9419c45ff857038b3db3691dc58"},"termination_reason":"completed"} diff --git a/src/SR_analysis/sr_legacy_pipeline_bf1c2e74.plan.md b/src/SR_analysis/sr_legacy_pipeline_bf1c2e74.plan.md deleted file mode 100644 index f09c5e2..0000000 --- a/src/SR_analysis/sr_legacy_pipeline_bf1c2e74.plan.md +++ /dev/null @@ -1,162 +0,0 @@ ---- -name: SR Legacy Pipeline -overview: 冻结当前 legacy 证据后,修复并版本化 Kármán 与 Illusion 的 Stage 1–3 数据、特征、公式和闭环契约;第一轮只在四个 Kármán 训练 Re 与 Illusion 0.75L/1L 上完成端到端复现并暂停复核。DTW 闭环是公式选择的最终判据,离线指标仅用于排查时序错位、共线性和部署不一致。 -todos: - - id: snapshot-baseline - content: 创建 SR 专用 Git 快照并记录 ignored 数据、模型和环境资产清单 - status: pending - - id: freeze-contracts - content: 统一 legacy 场景、layout、无量纲化、G 映射和 DTW 契约 - status: pending - - id: repair-stage1 - content: 修复并版本化 Kármán/Illusion Stage 1 数据与因果时序 - status: pending - - id: unify-features - content: 实现 Stage 2/3 共用的 stateful 特征和导数计算 - status: pending - - id: repair-stage2 - content: 实现可复现的 joint front/rear PySR 拟合与公式 schema - status: pending - - id: repair-stage3 - content: 实现公式/G 部署、versioned DTW 与完整 validation provenance - status: pending - - id: run-round1 - content: 在指定 Conda 环境和 GPU 2 完成第一轮 legacy Stage 1–3 复跑 - status: pending - - id: review-candidates - content: 审计历史与 candidate 结果并暂停等待 canonical 晋升决定 - status: pending -isProject: false ---- - -# SR Legacy 端到端完善计划 - -## 范围与原则 - -- 主体系冻结为 legacy;V5、erase、unseen-Re、Vortex、1.5L、论文绘图均不进入第一轮验收。 -- CFD、PPO 推理与闭环统一使用 `pycuda_3_10` 和 GPU 2;PySR/SINDy 使用 `sr_env`。 -- 所有新数据、公式和 validation 先写入带 `run_id` 的 staging 目录,不覆盖现有 [`data/`](src/SR_analysis/data/) 与 [`results/`](src/SR_analysis/results/) canonical 文件。 -- 离线拟合的 \(R^2\)、MAE 等只作为数据/模型诊断;公式取舍以 legacy DTW 闭环结果为最终标准。legacy DTW 固定为独立版本,不混用 V5 的 target-amplitude normalization。 -- observation、action、force 均使用实际物理无量纲量;明确 legacy action 是圆柱表面切向速度,统一定义 \(\alpha=u_{wall}/U_0\)。 -- G 映射作为结构约束:front 为 odd channel,upper/lower 交换并反号;新公式必须记录 rear shared-head 的 anchor 和镜像构造。 - -```mermaid -flowchart LR - snapshot["Git快照与资产清单"] --> contracts["冻结数据和物理契约"] - contracts --> infer["Stage1 PPO推理"] - infer --> fit["Stage2 PySR拟合"] - fit --> deploy["Stage3 CFD闭环"] - deploy --> review["结果审计与人工复核"] - review -->|"通过后"| promote["晋升canonical"] - review -->|"不通过"| diagnose["时序或公式诊断"] -``` - -## 第一阶段:冻结当前状态与建立可回滚基线 - -- 按用户选择先创建一个专用 Git 快照提交;提交前按 Git 协议核对完整 status、diff 和近期提交,只纳入当前 SR 工作及明确相关文件,不混入其他模块的无关改动。 -- 记录当前 commit、工作树状态、Conda/Python/PySR/Julia/CUDA/GPU 信息,以及 legacy 模型最终解析路径。 -- 为 ignored 的 NPZ 和 PPO 模型生成只读资产清单:路径、大小、SHA-256、NPZ keys/shape/dtype。Git 快照本身不能恢复 ignored 数据,因此第一轮脚本必须禁止覆盖这些文件;资产清单用于检测意外变化。 -- 将现有 [`scene_registry.json`](src/SR_analysis/scene_registry.json)、[`results/README.md`](src/SR_analysis/results/README.md)、formula 和 validation 标记为 `historical_frozen`,不立即判断 0.978/0.970 与 0.982/0.958 哪组为最终 canonical。 - -## 第二阶段:冻结跨 Stage 的唯一契约 - -### 场景与数据契约 - -- 在 [`configs.py`](src/SR_analysis/configs.py) 集中定义 Kármán/Illusion 的:几何、目标位置、`Re_code` 与 `Re_D`、SI、\(dt_c=SI/(D/U_0)=SI/2000\)、动作 decoder、FIFO 初始动作、sensor/force/action layout、target slices。 -- 保持 legacy 物理定义与数值:`Re_code=2Re_D`;论文输出可以转换成 `Re_D`,文件名和模型名继续保留 code Re。 -- 明确 Illusion target 契约为 `[target_fx,target_fy, six_sensor_channels]`,传感器比较使用 `[:,2:8]`,策略目标力使用 `[:,0:2]`。 -- 先核对真实 native body order,不直接交换历史 NPZ 列;新数据写显式 layout metadata,内部统一使用 `front/upper/lower`,旧 `top/bottom` 名称通过兼容映射读取。 - -### 物理特征与 G 映射 - -- 收敛 [`feature_builder.py`](src/SR_analysis/utils/feature_builder.py) 与 [`g_operator.py`](src/SR_analysis/utils/g_operator.py) 的重复实现,使所有 Stage 调用同一个 G 和无量纲化入口。 -- 增加 `G(G(x))=x`、target drag even/target lift odd、rear shared-head equivariance 测试。 -- 缺失 required feature 时默认报错,禁止再由 `build_feature_matrix` 静默补零;仅历史兼容读取可显式选择零填充。 - -### legacy DTW - -- 在 [`cfd_interface.py`](src/SR_analysis/utils/cfd_interface.py) 中固定 scene-specific metric:`legacy_dtw_v1_abs_n_unclipped`,明确 lag channel、target slice、window、无幅值归一化、无 clipping。 -- 文档明确 legacy 与 V5 DTW 不直接混用;第一轮不改变历史算法。 - -## 第三阶段:修复 Stage 1 并隔离运行产物 - -- 修改 [`stage_1_infer.py`](src/SR_analysis/stage_1_infer.py) 使路径不依赖 cwd,配置 dry-run 能在不启动 CUDA 时完成模型、target、norm 和输出路径检查。 -- 修复 Illusion 的目标位置配置、target force 索引和 `controlled.npz` 中 `target_forces` 缺失;首步 observation、target harmonic phase 与已验证 legacy 测试保持一致。 -- 明确数据采集时序并写入 metadata:哪个 observation 是 action 执行前或执行后、target phase index、action command index。先以旧推理循环和 legacy test 为事实依据,不凭数组同名假设对齐。 -- 新 NPZ 同时保存 schema/version、layout、SI、\(dt_c\)、normalization source、model hash 和 alignment;保留旧 key alias 只用于兼容。 -- Stage 1 只写 `data/runs//...`;没有显式 promotion 时拒绝覆盖历史数据。 - -## 第四阶段:让离线与在线特征严格一致 - -- 建立 stateful feature state,统一保存 previous observation、previous target force、previous actions 和 \(dt_c\)。 -- 在真实 legacy 数据上比较两种主要 alignment:当前同行 \(X_t\to a_t\) 与按控制循环推导的 \(X_t\to a_{t+1}\)。这一步是契约审计,不用较高 \(R^2\) 自动决定正确性;最终采用与 PPO 决策时刻一致的因果定义。 -- 对同一 trajectory 验证:Stage 2 批量计算与 Stage 3 逐步计算的每个 required feature 数值一致;包含 `du_a_dt`、`dCl_tot_dt`、`dCd_err_dt` 和 action derivative。 -- 将 alignment、导数定义和丢弃的初始样本数写入 formula metadata,避免未来再次产生“拟合公式与部署公式语义不同”。 - -## 第五阶段:修复 Stage 2 的双头拟合与公式记录 - -- 修改 [`stage_2_fit.py`](src/SR_analysis/stage_2_fit.py),使 per-scene 和 joint 都生成: - - front head; - - rear shared head;另一个 rear action 由 Stage 3 通过 G 构造。 -- 统一 formula JSON schema,兼容读取旧 `feature_names/feature_keys` 与 `best_sympy`,新写出至少包含:training scenes、feature order/definitions、fitted expression、deployment expression、role/anchor、G version、data hashes、alignment、\(dt_c\)、PySR seed/operators/complexity、in-sample diagnostics。 -- 固定 PySR seed并提供极短 smoke 参数;候选公式写入 `results/runs//formulas/`,不覆盖现有 formula。 -- 对 Kármán 同时保留: - - fitted expression; - - 人工物理审计后的 deployment expression,例如删除部署时恒零/共线产生的 `daB_dt` 项。 - 二者必须分别带 hash,禁止用一个公式的 DTW 给另一个公式背书。 -- SINDy/STLSQ 第一轮只作为内部筛选诊断:检查 feature 共线、lag 与支持稳定性,不作为闭环候选的自动裁决,也不写成正文核心方法。 - -## 第六阶段:修复 Stage 3 的真实部署 - -- 修改 [`stage_3_validate.py`](src/SR_analysis/stage_3_validate.py),使用统一 formula loader:有 symbolic expression 时直接编译,只有明确 linear schema 时才读取 coefficient;禁止缺 coefficient 时默认为全零。 -- 使用与 Stage 2 完全相同的 stateful feature builder 和 \(dt_c\),并按 formula metadata 构造 front 与 G-mirrored rear actions。 -- Kármán和 Illusion 共享部署核心,只在 target-force/reference 和环境 builder 上分支。 -- validation 文件按 scene、mode、formula hash 和 SI 独立命名,异常必须返回非零;不再让 PPO、SR、uncontrolled 或不同 SI 相互覆盖。 -- 每个结果记录:formula/data/model hash、Git SHA、环境、scene config、metric version、n_steps、full/tail DTW、per-channel DTW、action range、NaN/Inf、termination reason 和原始 telemetry 路径。 - -## 第七阶段:分层运行与第一轮验收 - -### 无 GPU 与短 smoke - -- 先运行 config/NPZ/formula schema、G、DTW fixture、batch-vs-step feature equivalence 测试。 -- 在 `sr_env` 中用 Kármán Re100 小样本、极少 iterations 验证 PySR/Julia 启动、front/rear 双输出和 Stage 3 可读性。 -- 在 `pycuda_3_10` 中确认 GPU 2 可用,再做 Kármán Re100 与 Illusion 1L 的最短 wiring smoke;短跑只检查 finite/actions/schema,不用 DTW 判断控制效果。 - -### 完整第一轮 - -按以下顺序运行,单场失败即停止批量扩展: - -1. Kármán Re100 Stage 1→2→3; -2. Illusion 1L Stage 1→2→3; -3. Kármán code Re 50/100/200/400 joint fit 与闭环; -4. Illusion 0.75L+1L joint fit 与各自闭环。 - -验收条件: - -- Stage 1 数据、Stage 2 formula 和 Stage 3 telemetry 均有完整 provenance; -- required features 无静默零填充,批量/在线特征一致,G 测试通过; -- 每个 formula 实际部署 expression 与 validation 中的 hash 一致; -- CFD 无 NaN/Inf 或动作异常; -- legacy DTW 可与历史结果并列比较。若结果改变,不以“必须复现旧数字”强行通过,而是通过 telemetry 定位是 target 修复、alignment 修复、导数修复还是公式变化造成; -- 第一轮结束后只生成审计报告和 candidate registry,不自动修改 canonical [`scene_registry.json`](src/SR_analysis/scene_registry.json)。到此暂停,请用户复核后再决定晋升或继续机制分析。 - -## 后续阶段:第一轮复核后再启动 - -### 机制与公式项价值 - -- Kármán:uncontrolled、constant rear、front-only、full fitted law、reduced deployment law,比较总 DTW、ux/uy、drag/lift、控制功率。 -- Illusion:target-force feedforward-only、feedback-only、error-only、phase hybrid、front-only、rear-only;重点检验当前 joint front 化简为 `target_Cd + phase term` 后是否只是周期轨道上的等价表示。 -- 做受限 lag cross-correlation、coherence/cross-spectrum、delay embedding 和 target/observed quadrature phase;候选仍由 CFD DTW 裁决。 -- 检查 Illusion PPO 与公式的完整 G-equivariance,特别是 `target_Cd` 为 even 而 front action 应为 odd 的结构冲突。 - -### 泛化与扩展 - -- 流程稳定后再补 unseen-Re;随后恢复 Kármán law 到 Lamb/Taylor 的专用 Vortex validator。 -- 重采 1.5L trajectory,分析高频/phase-state 边界;不把 lagged-action 平凡解标为 canonical。 -- 最后再引入 V5 数据、生成论文图、同步 README/registry/报告和写作。 - -## 文档与长期维护 - -- 更新 [`README.md`](src/SR_analysis/README.md)、[`PIPELINE.md`](src/SR_analysis/PIPELINE.md) 与 Stage 文档,使命令、环境、GPU、schema 和实际代码一致。 -- `scene_registry` 只索引 artifact ID/path/hash/run ID;formula 和 validation JSON 各自保存原始数值。README 与后续图表从 registry 自动生成,避免手工重复 0.978/0.970 等数字。 -- 在 SR 根目录最终保存这份长期计划,并在每轮完成后更新状态、风险和下一验收点。 \ No newline at end of file diff --git a/src/SR_analysis/stage_1_infer.py b/src/SR_analysis/stage_1_infer.py index e990297..aa8b9eb 100644 --- a/src/SR_analysis/stage_1_infer.py +++ b/src/SR_analysis/stage_1_infer.py @@ -1,465 +1,567 @@ #!/usr/bin/env python3 -"""Stage 1: Unified PPO inference pipeline for all scenes. +"""Stage 1 legacy PPO inference for Karman, Illusion, and existing Vortex entry points. -Drives LegacyCelerisLab CFD + PPO model to produce controlled.npz and -target.npz for Karman cloak, Illusion, and Vortex scenes. - -Usage: - # Single scene - conda run -n pycuda_3_10 python stage_1_infer.py --scene karman_re100 --device 2 - - # Scene group - conda run -n pycuda_3_10 python stage_1_infer.py --group illusion_trained --device 2 - - # Target only (no PPO model needed, for generalization scenes) - conda run -n pycuda_3_10 python stage_1_infer.py --scene illusion_0.6L --target-only --device 2 - - # Dry run (verify configs and model paths) - conda run -n pycuda_3_10 python stage_1_infer.py --scene karman_re100 --dry-run - -Output per scene in data/{scene_id}/{scene_name}/: - target.npz — sensor signals from target phase - controlled.npz — sensors, forces, actions (normalized [-1,1]) from controlled phase - uncontrolled.npz — (Karman only) sensors, forces from zero-action - config.json — scene parameters - norm.json — normalization factors - result.json — similarity + reward summary - target_harmonics.json — (Illusion only) FFT harmonics for target force reconstruction +Outputs are isolated under ``data/runs////``. The +module deliberately keeps LegacyCelerisLab imports inside runtime functions so +CLI validation and unit tests do not require CUDA. """ from __future__ import annotations import argparse +import hashlib import json import os +import shlex +import subprocess import sys -import time from collections import deque +from datetime import datetime, timezone from pathlib import Path +from typing import Any, Mapping, Sequence import numpy as np -_REPO = Path(__file__).resolve().parents[1] -if str(_REPO) not in sys.path: - sys.path.insert(0, str(_REPO)) -_SRC = _REPO / "src" -if str(_SRC) not in sys.path: - sys.path.insert(0, str(_SRC)) +REPO_ROOT = Path(__file__).resolve().parents[2] +SRC_ROOT = REPO_ROOT / "src" +for import_root in (REPO_ROOT, SRC_ROOT): + if str(import_root) not in sys.path: + sys.path.insert(0, str(import_root)) -from LegacyCelerisLab import FlowField - -from SR_analysis.utils.cfd_interface import ( - nu_from_re, load_legacy_configs, build_karman_cloak_env, add_pinball, - build_observation, scale_action, load_ppo_model, save_vorticity_png, - vorticity_from_ddf, compute_similarity, +from SR_analysis.configs import ( # noqa: E402 + CONV_LEN, + FIFO_LEN, + LEGACY_CFG_DIR, + get_scene, + get_scene_list, + model_path_for_scene, ) -from SR_analysis.configs import ( - SCENES, get_scene, get_scene_list, model_path_for_scene, - LEGACY_CFG_DIR, FIFO_LEN, CONV_LEN, +from SR_analysis.utils.harmonics import ( # noqa: E402 + analyze_harmonics, + gen_target_states_at, + harmonics_document, ) DATA_TYPE = np.float32 +SCHEMA_VERSION = "sr-stage1-npz-v2" +HARMONICS_SCHEMA_VERSION = "sr-target-harmonics-v2" +METRIC_ID = "legacy_similarity_v1" +ILLUSION_TARGET_CHANNELS = [ + "target_cylinder_fx", "target_cylinder_fy", + "sensor_top_ux", "sensor_top_uy", + "sensor_center_ux", "sensor_center_uy", + "sensor_bottom_ux", "sensor_bottom_uy", +] +SENSOR_CHANNELS = [ + "sensor_top_ux", "sensor_top_uy", "sensor_center_ux", + "sensor_center_uy", "sensor_bottom_ux", "sensor_bottom_uy", +] +FORCE_CHANNELS = ["front_fx", "front_fy", "top_fx", "top_fy", "bottom_fx", "bottom_fy"] +ACTION_CHANNELS = ["front_alpha", "top_alpha", "bottom_alpha"] -# ── Scene groups ────────────────────────────────────────────────────── SCENE_GROUPS = { "karman_all": lambda: get_scene_list("karman"), - "karman_trained": lambda: [s for s in get_scene_list("karman") if "re25" not in s and "re70" not in s and "re150" not in s and "re300" not in s], + "karman_trained": lambda: [s for s in get_scene_list("karman") if get_scene(s).get("model_name")], "illusion_trained": lambda: ["illusion_0.75L", "illusion_1L", "illusion_1.5L"], "illusion_generalization": lambda: ["illusion_0.5L", "illusion_0.6L", "illusion_0.8L", "illusion_1.2L", "illusion_2L"], "vortex_all": lambda: get_scene_list("vortex"), } -def _out_dir(scene_name: str) -> str: +def _jsonable(value: Any) -> Any: + if isinstance(value, np.ndarray): + return value.tolist() + if isinstance(value, Path): + return str(value) + if isinstance(value, tuple): + return list(value) + if isinstance(value, dict): + return {str(k): _jsonable(v) for k, v in value.items()} + if isinstance(value, list): + return [_jsonable(v) for v in value] + if isinstance(value, np.generic): + return value.item() + return value + + +def _write_json(path: Path, value: Any) -> None: + path.write_text(json.dumps(_jsonable(value), indent=2, sort_keys=True) + "\n", encoding="utf-8") + + +def _sha256(path: Path | None) -> str | None: + if path is None or not path.is_file(): + return None + digest = hashlib.sha256() + with path.open("rb") as stream: + for chunk in iter(lambda: stream.read(1024 * 1024), b""): + digest.update(chunk) + return digest.hexdigest() + + +def _git_sha() -> str | None: + try: + return subprocess.run( + ["git", "-C", str(REPO_ROOT), "rev-parse", "HEAD"], + check=True, capture_output=True, text=True, + ).stdout.strip() + except (OSError, subprocess.CalledProcessError): + return None + + +def default_run_id() -> str: + return datetime.now(timezone.utc).strftime("legacy-%Y%m%dT%H%M%SZ") + + +def gpu_identity(logical_device: int, cuda_visible_devices: str | None) -> dict[str, str | None]: + """Resolve identity only when visibility provides an explicit mapping.""" + visible_tokens = None if cuda_visible_devices is None else [ + token.strip() for token in cuda_visible_devices.split(",") if token.strip() + ] + if visible_tokens is not None and not 0 <= logical_device < len(visible_tokens): + return {"uuid": None, "name": None} + selector = visible_tokens[logical_device] if visible_tokens is not None else None + try: + command = ["nvidia-smi"] + if selector is not None: + command.append(f"--id={selector}") + command.extend(["--query-gpu=uuid,name", "--format=csv,noheader"]) + output = subprocess.run( + command, check=True, capture_output=True, text=True, timeout=5, + ).stdout.strip().splitlines() + if selector is None and len(output) != 1: + return {"uuid": None, "name": None} + if len(output) != 1: + return {"uuid": None, "name": None} + uuid, name = (part.strip() for part in output[0].split(",", 1)) + return {"uuid": uuid or None, "name": name or None} + except (OSError, subprocess.CalledProcessError, subprocess.TimeoutExpired, ValueError): + return {"uuid": None, "name": None} + + +def cfd_device_manifest(logical_device: int) -> dict[str, Any]: + cuda_visible_devices = os.environ.get("CUDA_VISIBLE_DEVICES") + identity = gpu_identity(logical_device, cuda_visible_devices) + return { + "cfd_device": logical_device, + "cfd_device_logical": logical_device, + "cuda_visible_devices": cuda_visible_devices, + "cfd_gpu_uuid": identity["uuid"], + "cfd_gpu_name": identity["name"], + } + + +def resolve_output_root(output_root: str | os.PathLike[str] | None) -> Path: + if output_root is None: + return REPO_ROOT / "src" / "SR_analysis" / "data" / "runs" + path = Path(output_root).expanduser() + return path.resolve() if path.is_absolute() else (REPO_ROOT / path).resolve() + + +def scene_output_dir(output_root: Path, run_id: str, scene_name: str, cfg: Mapping[str, Any]) -> Path: + if not run_id or run_id in {".", ".."} or Path(run_id).name != run_id: + raise ValueError("--run-id must be one non-empty path component") + return output_root / run_id / str(cfg["scene_id"]) / scene_name + + +def prepare_output_dir(path: Path, overwrite: bool) -> None: + if path.exists() and any(path.iterdir()) and not overwrite: + raise FileExistsError(f"Refusing to overwrite non-empty output directory: {path}") + path.mkdir(parents=True, exist_ok=True) + + +def frozen_scene_dir(scene_name: str, cfg: Mapping[str, Any]) -> Path: + return REPO_ROOT / "src" / "SR_analysis" / "data" / str(cfg["scene_id"]) / scene_name + + +def validate_norm(norm: Mapping[str, Any]) -> dict[str, Any]: + required = {"force_norm_fact", "sens_deviation", "sens_norm_fact"} + missing = required - set(norm) + if missing: + raise ValueError(f"norm missing keys: {sorted(missing)}") + force = float(norm["force_norm_fact"]) + deviation = np.asarray(norm["sens_deviation"], dtype=np.float32) + scale = np.asarray(norm["sens_norm_fact"], dtype=np.float32) + if not np.isfinite(force) or force <= 0: + raise ValueError("force_norm_fact must be finite and positive") + if deviation.shape != (6,) or scale.shape != (6,): + raise ValueError("sens_deviation and sens_norm_fact must each contain 6 values") + if not np.all(np.isfinite(deviation)) or not np.all(np.isfinite(scale)) or np.any(scale <= 0): + raise ValueError("sensor normalization values must be finite and scales positive") + result = dict(norm) + result.update(force_norm_fact=force, sens_deviation=deviation.tolist(), sens_norm_fact=scale.tolist()) + return result + + +def load_existing_norm(scene_name: str, cfg: Mapping[str, Any]) -> tuple[dict[str, Any], Path]: + path = frozen_scene_dir(scene_name, cfg) / "norm.json" + if not path.is_file(): + raise FileNotFoundError(f"Frozen normalization not found: {path}") + return validate_norm(json.loads(path.read_text(encoding="utf-8"))), path + + +def normalize_raw_observation(raw: np.ndarray, norm: Mapping[str, Any]) -> np.ndarray: + raw = np.asarray(raw, dtype=np.float32) + forces = raw[6:12] / float(norm["force_norm_fact"]) + sensors = (raw[0:6] - np.asarray(norm["sens_deviation"], dtype=np.float32)) / np.asarray(norm["sens_norm_fact"], dtype=np.float32) + return np.clip(np.hstack((forces, sensors)), -1.0, 1.0).astype(np.float32) + + +def extract_illusion_target(raw_obs: np.ndarray) -> tuple[np.ndarray, np.ndarray, np.ndarray]: + """Return canonical 8 channels, force[0:2], and sensor[2:8] channels.""" + canonical = np.asarray(raw_obs, dtype=np.float32).reshape(-1)[:8] + if canonical.shape != (8,): + raise ValueError(f"Illusion target observation requires 8 channels, got {canonical.size}") + return canonical, canonical[:2].copy(), canonical[2:8].copy() + + +def target_phase_index(step: int, *, after_action: bool = False) -> int: + if step < 0: + raise ValueError("step must be non-negative") + return step + int(after_action) + + +def illusion_observation(raw: np.ndarray, norm: Mapping[str, Any], target_force: np.ndarray) -> np.ndarray: + base = normalize_raw_observation(raw, norm) + target = np.asarray(target_force, dtype=np.float32).reshape(-1) + if target.shape != (2,): + raise ValueError("target_force must contain fx and fy") + return np.clip(np.hstack((base, target / float(norm["force_norm_fact"]))), -1.0, 1.0).astype(np.float32) + + +def _npz_metadata(scene_name: str, cfg: Mapping[str, Any], layout: Sequence[str], alignment: str) -> dict[str, np.ndarray]: + dt_c = float(cfg["sample_interval"]) * float(cfg["u0"]) / 20.0 + return { + "schema_version": np.array(SCHEMA_VERSION), + "layout": np.asarray(layout), + "units_system": np.array("LegacyCelerisLab lattice/SI-normalized metadata"), + "sample_interval": np.array(int(cfg["sample_interval"]), dtype=np.int64), + "SI": np.array(int(cfg["sample_interval"]), dtype=np.int64), + "dt_c": np.array(dt_c, dtype=np.float64), + "alignment": np.array(alignment), + "scene": np.array(scene_name), + } + + +def save_target_npz(path: Path, scene_name: str, cfg: Mapping[str, Any], target: np.ndarray, *, illusion: bool) -> None: + target = np.asarray(target, dtype=np.float32) + layout = ILLUSION_TARGET_CHANNELS if illusion else SENSOR_CHANNELS + payload: dict[str, Any] = {"target_states": target, **_npz_metadata(scene_name, cfg, layout, "sample k is post-step k target state")} + if illusion: + payload["target_forces"] = target[:, :2] + payload["target_sensors"] = target[:, 2:8] + np.savez_compressed(path, **payload) + + +def save_controlled_npz( + path: Path, scene_name: str, cfg: Mapping[str, Any], *, sensors: np.ndarray, + forces: np.ndarray, actions_norm: np.ndarray, actions_commanded: np.ndarray, + rewards: np.ndarray | None = None, target_forces: np.ndarray | None = None, + phase_indices: np.ndarray | None = None, +) -> None: + sensors = np.asarray(sensors, dtype=np.float32) + forces = np.asarray(forces, dtype=np.float32) + actions_norm = np.asarray(actions_norm, dtype=np.float32) + payload: dict[str, Any] = { + "sensors": sensors, "forces": forces, "actions": actions_norm, + "sensors_post": sensors, "forces_post": forces, + "actions_norm": actions_norm, + "actions_alpha_commanded": np.asarray(actions_commanded, dtype=np.float32) / float(cfg["u0"]), + "actions_omega_commanded": np.asarray(actions_commanded, dtype=np.float32), + **_npz_metadata(scene_name, cfg, SENSOR_CHANNELS + FORCE_CHANNELS + ACTION_CHANNELS, + "action[k] produces sensors_post[k]/forces_post[k]"), + } + if rewards is not None: + payload["rewards"] = np.asarray(rewards, dtype=np.float32) + if target_forces is not None: + target_forces = np.asarray(target_forces, dtype=np.float32) + payload["target_forces_for_action"] = target_forces + payload["target_forces"] = target_forces + if phase_indices is not None: + payload["target_phase_index"] = np.asarray(phase_indices, dtype=np.int64) + np.savez_compressed(path, **payload) + + +def _runtime_imports(): + from LegacyCelerisLab import FlowField + from SR_analysis.utils.cfd_interface import ( + add_pinball, build_karman_cloak_env, compute_similarity, load_legacy_configs, + load_ppo_model, scale_action, + ) + return FlowField, add_pinball, build_karman_cloak_env, compute_similarity, load_legacy_configs, load_ppo_model, scale_action + + +def _compute_norm(samples: np.ndarray) -> dict[str, Any]: + samples = np.asarray(samples, dtype=np.float32) + force_scale = 6.0 * float(np.max(np.abs(samples[:, 6:12]))) + deviation = np.mean(samples[:, 0:6], axis=0) + sensor_scale = 5.0 * np.max(np.abs(samples[:, 0:6] - deviation), axis=0) + return validate_norm({"force_norm_fact": force_scale, "sens_deviation": deviation, "sens_norm_fact": sensor_scale}) + + +def infer_karman( + scene_name: str, device_id: int, out_dir: Path, n_steps: int, + norm_source: str, model_device: str = "cpu", +) -> dict[str, Any]: + FlowField, add_pinball, build_env, similarity, load_cfg, load_model, scale_action = _runtime_imports() cfg = get_scene(scene_name) - return os.path.join("src", "SR_analysis", "data", cfg["scene_id"], scene_name) - - -# ── Karman inference ────────────────────────────────────────────────── -def infer_karman(scene_name: str, device_id: int, out_dir: str, n_steps: int) -> dict: - cfg = get_scene(scene_name) - nu, u0, l0 = cfg["nu"], cfg["u0"], 20.0 - si, action_scale, action_bias = cfg["sample_interval"], cfg["action_scale"], cfg["action_bias"] - n_obj_total = cfg["n_objects_env"] - - os.makedirs(out_dir, exist_ok=True) - json.dump({k: v for k, v in cfg.items() if k != "action_bias"}, open(os.path.join(out_dir, "config.json"), "w"), indent=2, default=str) - - cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) - field_cfg = field_cfg._replace(viscosity=float(nu)) - + cuda_cfg, field_cfg = load_cfg(LEGACY_CFG_DIR) + field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - target_states, _ = build_karman_cloak_env(ff, u0=u0, l0=l0, sample_interval=si, fifo_len=FIFO_LEN, data_type=DATA_TYPE) - np.savez(os.path.join(out_dir, "target.npz"), target_states=target_states) + target, _ = build_env(ff, u0=cfg["u0"], l0=20.0, sample_interval=cfg["sample_interval"], fifo_len=FIFO_LEN, data_type=DATA_TYPE) + save_target_npz(out_dir / "target.npz", scene_name, cfg, target, illusion=False) + computed_norm = add_pinball(ff, l0=20.0, u0=cfg["u0"], sample_interval=cfg["sample_interval"], fifo_len=FIFO_LEN, + data_type=DATA_TYPE, action_bias=cfg["action_bias"], pinball_front_x=cfg["pinball_front_x"], + pinball_rear_x=cfg["pinball_rear_x"], obs_slice_start=cfg["obs_slice"][0], obs_slice_end=cfg["obs_slice"][1]) + norm, norm_path = (load_existing_norm(scene_name, cfg) if norm_source == "existing" else (validate_norm(computed_norm), None)) + _write_json(out_dir / "norm.json", norm) - norm = add_pinball(ff, l0=l0, u0=u0, sample_interval=si, fifo_len=FIFO_LEN, data_type=DATA_TYPE, - action_bias=action_bias, pinball_front_x=cfg["pinball_front_x"], pinball_rear_x=cfg["pinball_rear_x"], - obs_slice_start=cfg["obs_slice"][0], obs_slice_end=cfg["obs_slice"][1]) - json.dump({k: v for k, v in norm.items() if not isinstance(v, np.ndarray)}, open(os.path.join(out_dir, "norm.json"), "w"), indent=2, default=str) - - # Uncontrolled ff.restore_ddf(); ff.apply_ddf() - sens_u, forc_u = [], [] + sensors_u, forces_u = [], [] for _ in range(n_steps): - ff.run(si, np.zeros(n_obj_total, dtype=DATA_TYPE)) - o = ff.obs.copy()[2:14]; sens_u.append(o[0:6]); forc_u.append(o[6:12]) - np.savez(os.path.join(out_dir, "uncontrolled.npz"), sensors=np.array(sens_u, dtype=np.float32), forces=np.array(forc_u, dtype=np.float32)) + ff.run(cfg["sample_interval"], np.zeros(cfg["n_objects_env"], dtype=DATA_TYPE)) + raw = ff.obs.copy()[2:14]; sensors_u.append(raw[:6]); forces_u.append(raw[6:12]) + np.savez_compressed(out_dir / "uncontrolled.npz", sensors=np.asarray(sensors_u, dtype=np.float32), forces=np.asarray(forces_u, dtype=np.float32), + **_npz_metadata(scene_name, cfg, SENSOR_CHANNELS + FORCE_CHANNELS, "all samples are post-step states")) - # Controlled - result = {"scene": scene_name, "controlled": False} model_path = model_path_for_scene(scene_name) + result: dict[str, Any] = {"scene": scene_name, "controlled": False, "metric_id": METRIC_ID, "norm_source": norm_source, + "norm_source_path": str(norm_path) if norm_path else None} if model_path: - model = load_ppo_model(model_path, device=f"cuda:{device_id}", s_dim=cfg.get("s_dim", 12)) + model = load_model(model_path, device=model_device, s_dim=cfg.get("s_dim", 12)) ff.restore_ddf(); ff.apply_ddf() - fifo = deque(maxlen=FIFO_LEN) - ba = scale_action(np.zeros(3, dtype=np.float32), scale=action_scale, bias=action_bias, u0=u0, n_total_bodies=n_obj_total) - for _ in range(FIFO_LEN): - ff.context.push(); ff.run(si, ba); ff.context.pop() - fifo.append(ff.obs.copy()[2:14]) - - s_c, f_c, a_c, r_c = [], [], [], [] - obs = np.zeros(12, dtype=np.float32) + fifo: deque[np.ndarray] = deque( + (np.asarray(row, dtype=np.float32) for row in computed_norm["save_states"]), + maxlen=FIFO_LEN, + ) + obs = normalize_raw_observation(fifo[-1], norm) + sensors, forces, actions, commanded, rewards = [], [], [], [], [] for _ in range(n_steps): - act, _ = model.predict(obs, deterministic=True) - act = act.astype(np.float32).flatten(); a_c.append(act.copy()) - ff.context.push(); ff.run(si, scale_action(act, scale=action_scale, bias=action_bias, u0=u0, n_total_bodies=n_obj_total)); ff.context.pop() - osl = ff.obs.copy()[2:14]; fifo.append(osl) - s_c.append(osl[0:6]); f_c.append(osl[6:12]); obs = build_observation(osl, norm) + action, _ = model.predict(obs, deterministic=True); action = np.asarray(action, dtype=np.float32).flatten() + alpha = (action * float(cfg["action_scale"]) + np.asarray(cfg["action_bias"], dtype=np.float32)) * float(cfg["u0"]) + omega = scale_action(action, scale=cfg["action_scale"], bias=cfg["action_bias"], u0=cfg["u0"], n_total_bodies=cfg["n_objects_env"]) + ff.context.push(); ff.run(cfg["sample_interval"], omega); ff.context.pop() + raw = ff.obs.copy()[2:14]; fifo.append(raw); sensors.append(raw[:6]); forces.append(raw[6:12]); actions.append(action); commanded.append(alpha) + obs = normalize_raw_observation(raw, norm) if len(fifo) >= CONV_LEN: - sa = np.array(list(fifo), dtype=np.float32) - cd = float((sa[-1,0] + sa[-1,2] + sa[-1,4]) / 3 / norm["force_norm_fact"]) - cl = float((sa[-1,1] + sa[-1,3] + sa[-1,5]) / 3 / norm["force_norm_fact"]) - sim = compute_similarity(target_states, sa[:,0:6], CONV_LEN) - r_c.append(float(min(0.3*np.exp(-abs(cd*20))+0.4*np.exp(-abs(cl*80))+0.3*np.exp(-10*abs(sim-1)), 1.0))) - - np.savez(os.path.join(out_dir, "controlled.npz"), sensors=np.array(s_c, dtype=np.float32), forces=np.array(f_c, dtype=np.float32), actions=np.array(a_c, dtype=np.float32), rewards=np.array(r_c, dtype=np.float32)) - result["controlled"] = True - result["similarity"] = float(compute_similarity(target_states, np.array(s_c, dtype=np.float32), CONV_LEN)) - if r_c: result["avg_reward_last100"] = float(np.mean(r_c[-100:])) - else: - print(f" No model for {scene_name}, skipping controlled") - + sa = np.asarray(fifo, dtype=np.float32) + cd = float(np.mean(sa[-1, [0, 2, 4]]) / norm["force_norm_fact"]) + cl = float(np.mean(sa[-1, [1, 3, 5]]) / norm["force_norm_fact"]) + sim = similarity(target, sa[:, :6], CONV_LEN) + rewards.append(min(0.3*np.exp(-abs(cd*20))+0.4*np.exp(-abs(cl*80))+0.3*np.exp(-10*abs(sim-1)), 1.0)) + save_controlled_npz(out_dir / "controlled.npz", scene_name, cfg, sensors=np.asarray(sensors), forces=np.asarray(forces), + actions_norm=np.asarray(actions), actions_commanded=np.asarray(commanded), rewards=np.asarray(rewards)) + result.update(controlled=True, similarity=float(similarity(target, np.asarray(sensors), CONV_LEN))) + if rewards: result["avg_reward_last100"] = float(np.mean(rewards[-100:])) del ff - json.dump(result, open(os.path.join(out_dir, "result.json"), "w"), indent=2) - print(f" {scene_name}: similarity={result.get('similarity', 'N/A'):.4f}" if result["controlled"] else f" {scene_name}: target only") return result -# ── Illusion inference ──────────────────────────────────────────────── -def analyze_harmonics(states, n_harmonics=5): - N, D = states.shape - result = [] - for d in range(D): - y = states[:, d]; fft = np.fft.rfft(y); freqs = np.fft.rfftfreq(N, d=1) - amps = 2*np.abs(fft)/N; phases = np.angle(fft) - idx = np.argsort(amps[1:])[::-1][:n_harmonics] + 1 - result.append({"dc": float(np.real(fft[0])/N), "amps": amps[idx].tolist(), "freqs": freqs[idx].tolist(), "phases": phases[idx].tolist()}) - return result - - -def gen_target_states_at(t, harmonics): - t = np.asarray(t); D = len(harmonics) - result = np.zeros((t.size, D), dtype=np.float32) - for d, h in enumerate(harmonics): - val = np.full(t.shape, h["dc"], dtype=np.float32) - for amp, freq, phase in zip(h["amps"], h["freqs"], h["phases"]): - val += amp * np.cos(2*np.pi*freq*t + phase) - result[:, d] = val - return result[0] if result.shape[0] == 1 else result - - -def infer_illusion(scene_name: str, device_id: int, out_dir: str, n_steps: int, target_only: bool) -> dict: - """Run PPO inference for illusion scene. - - Output target.npz layout (8 columns): - [cyl_fx, cyl_fy, s0_ux, s0_uy, s1_ux, s1_uy, s2_ux, s2_uy] - Consumers should use target[:, 2:8] for pure sensor signals. - """ - cfg = get_scene(scene_name) - nu, u0, si, l0 = cfg["nu"], cfg["u0"], cfg["sample_interval"], 20.0 - action_scale, action_bias = cfg["action_scale"], np.array(cfg["action_bias"]) - n_obj_total = cfg["n_objects_env"] - obs_sl = slice(*cfg["obs_slice"]) - target_diam_l0 = cfg["target_diameter"] - target_x_l0 = cfg["target_center_x"] / l0 - - os.makedirs(out_dir, exist_ok=True) - json.dump({k: v for k, v in cfg.items() if k != "action_bias"}, open(os.path.join(out_dir, "config.json"), "w"), indent=2, default=str) - - cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) - field_cfg = field_cfg._replace(viscosity=float(nu)) - - # Phase 1: Record target cylinder signals - ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - cy = (ff.FIELD_SHAPE[1] - 1) / 2 - nx, ny = ff.FIELD_SHAPE[:2] - ff.add_cylinder((target_x_l0 * l0, cy, 0.0), target_diam_l0 * l0) - sensor_y_grid = [cy + 2*l0, cy, cy - 2*l0] - sensor_x_l0 = cfg["sensor_x"] - for yo in sensor_y_grid: - ff.add_sensor((sensor_x_l0 * l0, yo, 0.0), 5.0) - - warmup = int(4 * nx / u0) - ff.run(warmup, np.zeros(4, dtype=DATA_TYPE)) - - # Target layout: 8 columns = [cyl_fx,cyl_fy,s0_ux,s0_uy,s1_ux,s1_uy,s2_ux,s2_uy] - # obs comes from: 1 target cylinder + 3 sensors added to FlowField - target_states = [] +def infer_illusion( + scene_name: str, device_id: int, out_dir: Path, n_steps: int, + target_only: bool, norm_source: str, model_device: str = "cpu", +) -> dict[str, Any]: + FlowField, _, _, similarity, load_cfg, load_model, _ = _runtime_imports() + cfg = get_scene(scene_name); l0 = 20.0; u0 = float(cfg["u0"]); si = int(cfg["sample_interval"]) + cuda_cfg, field_cfg = load_cfg(LEGACY_CFG_DIR); field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) + ff = FlowField(field_cfg, cuda_cfg, device_id=device_id); cy = (ff.FIELD_SHAPE[1] - 1) / 2 + # Legacy add_cylinder's final argument is radius; target_diameter is expressed in L0 units historically. + ff.add_cylinder((20.0 * l0, cy, 0.0), float(cfg["target_diameter"]) * l0) + sensor_y = [cy + 2*l0, cy, cy - 2*l0] + for y in sensor_y: ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + warmup = int(4 * ff.FIELD_SHAPE[0] / u0); ff.run(warmup, np.zeros(4, dtype=DATA_TYPE)) + rows = [] for _ in range(FIFO_LEN): - ff.run(si, np.zeros(4, dtype=DATA_TYPE)) - target_states.append(ff.obs.copy()[0:8]) - target_arr = np.array(target_states, dtype=np.float32) - # BUGFIX (2026-07-14): was target_arr[:, :6] which omitted s2 (bottom sensor) and - # mixed cylinder force (col0-1) with sensor channels. The 8-column layout is the - # canonical format — consumers use target[:, 2:8] to extract the 6 pure-sensor - # channels. Historical note: the old gen_illusion_target.py already wrote 8 columns, - # so on-disk files were correct via that path, but re-running this script would - # overwrite them with truncated data. - np.savez(os.path.join(out_dir, "target.npz"), target_states=target_arr[:, :]) - harmonics = analyze_harmonics(target_arr, n_harmonics=5) - json.dump(harmonics, open(os.path.join(out_dir, "target_harmonics.json"), "w"), indent=2) - + ff.run(si, np.zeros(4, dtype=DATA_TYPE)); rows.append(extract_illusion_target(ff.obs.copy())[0]) + target = np.asarray(rows, dtype=np.float32) + save_target_npz(out_dir / "target.npz", scene_name, cfg, target, illusion=True) + harmonics = analyze_harmonics(target, n_harmonics=5) + _write_json(out_dir / "target_harmonics.json", harmonics_document(harmonics, ILLUSION_TARGET_CHANNELS, schema_version=HARMONICS_SCHEMA_VERSION)) + result: dict[str, Any] = {"scene": scene_name, "target_only": target_only, "controlled": False, "metric_id": METRIC_ID, "norm_source": norm_source} if target_only: del ff - json.dump({"scene": scene_name, "target_only": True}, open(os.path.join(out_dir, "result.json"), "w"), indent=2) - print(f" {scene_name}: target only") - return {"scene": scene_name, "target_only": True} + return result - # Phase 2: Pinball env - del ff - ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - # Add sensors - for yo in sensor_y_grid: - ff.add_sensor((sensor_x_l0 * l0, yo, 0.0), 5.0) - # Add pinball - pf_x = cfg["pinball_front_x"] * l0 - pr_x = cfg["pinball_rear_x"] * l0 - py_span = cfg.get("pinball_y_span", 0.75 * l0) - ff.add_cylinder((pf_x, cy, 0.0), 10.0) - ff.add_cylinder((pr_x, cy + py_span, 0.0), 10.0) - ff.add_cylinder((pr_x, cy - py_span, 0.0), 10.0) + del ff; ff = FlowField(field_cfg, cuda_cfg, device_id=device_id); cy = (ff.FIELD_SHAPE[1] - 1) / 2 + for y in [cy + 2*l0, cy, cy - 2*l0]: ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + ff.add_cylinder((float(cfg["pinball_front_x"])*l0, cy, 0.0), 10.0) + span = float(cfg.get("pinball_y_span", 0.75*l0)) + ff.add_cylinder((float(cfg["pinball_rear_x"])*l0, cy+span, 0.0), 10.0) + ff.add_cylinder((float(cfg["pinball_rear_x"])*l0, cy-span, 0.0), 10.0) + n_obj = ff.obs.size // 2; ff.run(warmup, np.zeros(n_obj, dtype=DATA_TYPE)); ff.get_ddf(); ff.save_ddf() + if norm_source == "existing": + norm, norm_path = load_existing_norm(scene_name, cfg) + else: + samples = [] + for _ in range(FIFO_LEN): ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)); samples.append(ff.obs.copy()[slice(*cfg["obs_slice"])]) + norm, norm_path = _compute_norm(np.asarray(samples)), None + result["norm_source_path"] = str(norm_path) if norm_path else None; _write_json(out_dir / "norm.json", norm) - n_obj = ff.obs.size // 2 - ff.run(warmup, np.zeros(n_obj, dtype=DATA_TYPE)) + ff.apply_ddf(); fifo: deque[np.ndarray] = deque(maxlen=FIFO_LEN) + bias_arr = np.zeros(n_obj, dtype=DATA_TYPE); bias_arr[-3:] = np.asarray([0.0, -u0, u0], dtype=DATA_TYPE) + for _ in range(FIFO_LEN): ff.run(si, bias_arr); fifo.append(ff.obs.copy()[slice(*cfg["obs_slice"])]) ff.get_ddf(); ff.save_ddf() - - # Norm collection - for _ in range(FIFO_LEN): - ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)) - norm_data = np.array([ff.obs.copy()[obs_sl] for _ in [0]*(FIFO_LEN)], dtype=np.float32) - # Re-do properly - fifo_temp = deque(maxlen=FIFO_LEN) - for _ in range(FIFO_LEN): - ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)) - fifo_temp.append(ff.obs.copy()[obs_sl]) - tsa = np.array(fifo_temp, dtype=np.float32) - force_norm_fact = 6.0 * float(np.max(np.abs(tsa[:, 6:12]))) - sens_deviation = np.mean(tsa[:, 0:6], axis=0) - sens_norm_fact = np.zeros(6, dtype=np.float32) - for i in range(6): - sens_norm_fact[i] = 5.0 * float(np.max(np.abs(tsa[:, i] - sens_deviation[i]))) - norm = {"force_norm_fact": force_norm_fact, "sens_deviation": sens_deviation.tolist(), "sens_norm_fact": sens_norm_fact.tolist()} - json.dump(norm, open(os.path.join(out_dir, "norm.json"), "w"), indent=2) - - # Bias FIFO: [0, -U0, U0] - ff.apply_ddf() - fifo = deque(maxlen=FIFO_LEN) - fifo_bias = np.array([0.0, -u0, u0], dtype=np.float64) - bias_arr = np.zeros(n_obj, dtype=DATA_TYPE) - bias_arr[n_obj-3:] = fifo_bias - for _ in range(FIFO_LEN): - ff.run(si, bias_arr) - fifo.append(ff.obs.copy()[obs_sl]) - - # Controlled rollout - result = {"scene": scene_name, "controlled": False} model_path = model_path_for_scene(scene_name) if model_path: - model = load_ppo_model(model_path, device=f"cuda:{device_id}", s_dim=cfg.get("s_dim", 14)) - s_c, f_c, a_c = [], [], [] - obs = np.zeros(cfg.get("s_dim", 14), dtype=np.float32) + model = load_model(model_path, device=model_device, s_dim=cfg.get("s_dim", 14)) + raw = fifo[-1].copy() + force0 = gen_target_states_at(target_phase_index(0), harmonics)[:2] + obs = illusion_observation(raw, norm, force0) + sensors, forces, actions, commanded, targets, phases = [], [], [], [], [], [] for step in range(n_steps): - act, _ = model.predict(obs, deterministic=True) - act = act.astype(np.float32).flatten(); a_c.append(act.copy()) - omega_arr = np.zeros(n_obj, dtype=DATA_TYPE) - omega = (act * action_scale + action_bias) * u0 - omega_arr[n_obj-3:] = omega - ff.context.push(); ff.run(si, omega_arr); ff.context.pop() - osl = ff.obs.copy()[obs_sl]; fifo.append(osl) - s_c.append(osl[0:6]); f_c.append(osl[6:12]) - # Build observation (14-dim for illusion) - forces_n = osl[6:12] / force_norm_fact - sens_n = (osl[0:6] - sens_deviation) / sens_norm_fact - tf = gen_target_states_at(step, harmonics) - target_cd = tf[6] / force_norm_fact - target_cl = tf[7] / force_norm_fact - obs = np.clip(np.hstack([forces_n, sens_n, target_cd, target_cl]), -1, 1).astype(np.float32) - - np.savez(os.path.join(out_dir, "controlled.npz"), - sensors=np.array(s_c, dtype=np.float32), forces=np.array(f_c, dtype=np.float32), actions=np.array(a_c, dtype=np.float32)) - result["controlled"] = True - result["similarity"] = float(compute_similarity(target_arr[:, 2:8], np.array(s_c, dtype=np.float32), cfg.get("conv_len", 36))) - else: - print(f" No model for {scene_name}") - + phase = target_phase_index(step); target_force = gen_target_states_at(phase, harmonics)[:2] + action, _ = model.predict(obs, deterministic=True); action = np.asarray(action, dtype=np.float32).flatten() + alpha = (action * float(cfg["action_scale"]) + np.asarray(cfg["action_bias"], dtype=np.float32)) * u0 + omega = np.zeros(n_obj, dtype=DATA_TYPE); omega[-3:] = alpha + ff.context.push(); ff.run(si, omega); ff.context.pop() + raw = ff.obs.copy()[slice(*cfg["obs_slice"])]; fifo.append(raw) + sensors.append(raw[:6]); forces.append(raw[6:12]); actions.append(action); commanded.append(alpha); targets.append(target_force); phases.append(phase) + next_force = gen_target_states_at(target_phase_index(step, after_action=True), harmonics)[:2] + obs = illusion_observation(raw, norm, next_force) + save_controlled_npz(out_dir / "controlled.npz", scene_name, cfg, sensors=np.asarray(sensors), forces=np.asarray(forces), + actions_norm=np.asarray(actions), actions_commanded=np.asarray(commanded), target_forces=np.asarray(targets), + phase_indices=np.asarray(phases)) + result.update(controlled=True, similarity=float(similarity(target[:, 2:8], np.asarray(sensors), cfg.get("conv_len", 36)))) del ff - json.dump(result, open(os.path.join(out_dir, "result.json"), "w"), indent=2) - print(f" {scene_name}: similarity={result.get('similarity', 'N/A'):.4f}" if result["controlled"] else f" {scene_name}: target only") return result -# ── Vortex inference ────────────────────────────────────────────────── -def infer_vortex(scene_name: str, device_id: int, out_dir: str, n_steps: int) -> dict: - cfg = get_scene(scene_name) - nu, u0, si, l0 = cfg["nu"], cfg["u0"], cfg["sample_interval"], 20.0 - action_scale, action_bias = cfg["action_scale"], np.array(cfg["action_bias"]) - n_obj_total = cfg["n_objects_env"] - n_steps = min(n_steps, cfg.get("max_steps", 150)) +def infer_vortex(scene_name: str, device_id: int, out_dir: Path, n_steps: int, norm_source: str) -> dict[str, Any]: + """Preserve the historical Vortex flow without adding a new data contract.""" + FlowField, _, _, similarity, load_cfg, load_model, _ = _runtime_imports() + cfg = get_scene(scene_name); l0 = 20.0; u0 = float(cfg["u0"]); si = int(cfg["sample_interval"]) + n_steps = min(n_steps, int(cfg.get("max_steps", 150))) + cuda_cfg, field_cfg = load_cfg(LEGACY_CFG_DIR); field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) + ff = FlowField(field_cfg, cuda_cfg, device_id=device_id); cy = (ff.FIELD_SHAPE[1] - 1) / 2 + sensor_y = [cy + 2*l0, cy, cy - 2*l0] + for y in sensor_y: ff.add_sensor((float(cfg["sensor_x"])*l0, y, 0.0), 5.0) + warmup = int(4 * ff.FIELD_SHAPE[0] / u0); ff.run(warmup, np.zeros(3, dtype=DATA_TYPE)); ff.get_ddf(); ff.save_ddf() + radius = float(cfg.get("vortex_radius", 2*l0)) + ff.add_vortex((float(cfg.get("vortex_center_x", 10*l0)), cy, 0.0), radius, + strength=cfg["vortex_strength"], vortex_type=cfg["vortex_type"]) + target = [] + for _ in range(FIFO_LEN): ff.run(si, np.zeros(3, dtype=DATA_TYPE)); target.append(ff.obs.copy()[:6]) + save_target_npz(out_dir / "target.npz", scene_name, cfg, np.asarray(target), illusion=False) - os.makedirs(out_dir, exist_ok=True) - json.dump({k: v for k, v in cfg.items() if k != "action_bias"}, open(os.path.join(out_dir, "config.json"), "w"), indent=2, default=str) - - cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) - field_cfg = field_cfg._replace(viscosity=float(nu)) - - from LegacyCelerisLab import utils as legacy_utils - # Phase 1: Target (vortex only, no pinball) - ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - cy = (ff.FIELD_SHAPE[1] - 1) / 2 - nx, ny = ff.FIELD_SHAPE[:2] - sensor_x_l0 = cfg["sensor_x"] - sensor_y_grid = [cy + 2*l0, cy, cy - 2*l0] - for yo in sensor_y_grid: - ff.add_sensor((sensor_x_l0 * l0, yo, 0.0), 5.0) - warmup = int(4 * nx / u0) - ff.run(warmup, np.zeros(3, dtype=DATA_TYPE)) - ff.get_ddf(); ff.save_ddf() - # Add vortex - vortex_x = cfg.get("vortex_center_x", 10*l0) - vortex_r = cfg.get("vortex_radius", 2*l0) - vtype = cfg["vortex_type"] - strength = cfg["vortex_strength"] - ff.add_vortex((vortex_x, cy, 0.0), vortex_r, strength=strength, vortex_type=vtype) - - target_sens = [] - for _ in range(FIFO_LEN): - ff.run(si, np.zeros(3, dtype=DATA_TYPE)) - target_sens.append(ff.obs.copy()[0:6]) - np.savez(os.path.join(out_dir, "target.npz"), target_states=np.array(target_sens, dtype=np.float32)) - - # Phase 2: Pinball + vortex - del ff - ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - for yo in sensor_y_grid: - ff.add_sensor((sensor_x_l0 * l0, yo, 0.0), 5.0) - pf_x = cfg["pinball_front_x"] * l0 - pr_x = cfg["pinball_rear_x"] * l0 - py_span = cfg.get("pinball_y_span", 0.75 * l0) - ff.add_cylinder((pf_x, cy, 0.0), 10.0) - ff.add_cylinder((pr_x, cy + py_span, 0.0), 10.0) - ff.add_cylinder((pr_x, cy - py_span, 0.0), 10.0) - n_obj = ff.obs.size // 2 - ff.run(warmup, np.zeros(n_obj, dtype=DATA_TYPE)) - ff.get_ddf(); ff.save_ddf() - # Add vortex for pinball phase - vortex_px = cfg.get("vortex_pinball_center_x", 15*l0) - ff.add_vortex((vortex_px, cy, 0.0), vortex_r, strength=strength, vortex_type=vtype) - - # Norm collection - for _ in range(FIFO_LEN): - ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)) - tsa = np.array([ff.obs.copy()[0:12] for _ in range(FIFO_LEN)], dtype=np.float32) - force_norm_fact = 6.0 * float(np.max(np.abs(tsa[:, 6:12]))) - sens_deviation = np.mean(tsa[:, 0:6], axis=0) - sens_norm_fact = np.zeros(6, dtype=np.float32) - for i in range(6): - sens_norm_fact[i] = 5.0 * float(np.max(np.abs(tsa[:, i] - sens_deviation[i]))) - norm = {"force_norm_fact": force_norm_fact, "sens_deviation": sens_deviation.tolist(), "sens_norm_fact": sens_norm_fact.tolist()} - json.dump(norm, open(os.path.join(out_dir, "norm.json"), "w"), indent=2) - - # Bias FIFO + Controlled - ff.apply_ddf() - fifo_bias_arr = np.zeros(n_obj, dtype=DATA_TYPE) - fifo_bias_arr[n_obj-3:] = np.array([0, -4*u0, 4*u0], dtype=np.float64) - for _ in range(FIFO_LEN): - ff.run(si, fifo_bias_arr) - - result = {"scene": scene_name, "controlled": False} + del ff; ff = FlowField(field_cfg, cuda_cfg, device_id=device_id); cy = (ff.FIELD_SHAPE[1] - 1) / 2 + for y in [cy + 2*l0, cy, cy - 2*l0]: ff.add_sensor((float(cfg["sensor_x"])*l0, y, 0.0), 5.0) + ff.add_cylinder((float(cfg["pinball_front_x"])*l0, cy, 0.0), 10.0) + span = float(cfg.get("pinball_y_span", 0.75*l0)) + ff.add_cylinder((float(cfg["pinball_rear_x"])*l0, cy+span, 0.0), 10.0) + ff.add_cylinder((float(cfg["pinball_rear_x"])*l0, cy-span, 0.0), 10.0) + n_obj = ff.obs.size // 2; ff.run(warmup, np.zeros(n_obj, dtype=DATA_TYPE)); ff.get_ddf(); ff.save_ddf() + ff.add_vortex((float(cfg.get("vortex_pinball_center_x", 15*l0)), cy, 0.0), radius, + strength=cfg["vortex_strength"], vortex_type=cfg["vortex_type"]) + if norm_source == "existing": norm, norm_path = load_existing_norm(scene_name, cfg) + else: + samples = [] + for _ in range(FIFO_LEN): ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)); samples.append(ff.obs.copy()[:12]) + norm, norm_path = _compute_norm(np.asarray(samples)), None + _write_json(out_dir / "norm.json", norm) + ff.apply_ddf(); bias = np.zeros(n_obj, dtype=DATA_TYPE); bias[-3:] = np.asarray([0, -4*u0, 4*u0], dtype=DATA_TYPE) + for _ in range(FIFO_LEN): ff.run(si, bias) model_path = model_path_for_scene(scene_name) + result: dict[str, Any] = {"scene": scene_name, "controlled": False, "metric_id": METRIC_ID, + "norm_source": norm_source, "norm_source_path": str(norm_path) if norm_path else None} if model_path: - model = load_ppo_model(model_path, device=f"cuda:{device_id}", s_dim=12) - s_c, f_c, a_c = [], [], [] - obs = np.zeros(12, dtype=np.float32) - for step in range(n_steps): - act, _ = model.predict(obs, deterministic=True) - act = act.astype(np.float32).flatten(); a_c.append(act.copy()) - omega_arr = np.zeros(n_obj, dtype=DATA_TYPE) - omega_arr[n_obj-3:] = (act * action_scale + action_bias) * u0 - ff.context.push(); ff.run(si, omega_arr); ff.context.pop() - osl = ff.obs.copy()[0:12]; s_c.append(osl[0:6]); f_c.append(osl[6:12]) - forces_n = osl[6:12] / force_norm_fact - sens_n = (osl[0:6] - sens_deviation) / sens_norm_fact - obs = np.clip(np.hstack([forces_n, sens_n]), -1, 1).astype(np.float32) - np.savez(os.path.join(out_dir, "controlled.npz"), sensors=np.array(s_c, dtype=np.float32), forces=np.array(f_c, dtype=np.float32), actions=np.array(a_c, dtype=np.float32)) - result["controlled"] = True - result["similarity"] = float(compute_similarity(np.array(target_sens, dtype=np.float32), np.array(s_c, dtype=np.float32), cfg.get("conv_len", 30))) + model = load_model(model_path, device=f"cuda:{device_id}", s_dim=12) + sensors, forces, actions, commanded = [], [], [], [] + obs = normalize_raw_observation(ff.obs.copy()[:12], norm) + for _ in range(n_steps): + action, _ = model.predict(obs, deterministic=True); action = np.asarray(action, dtype=np.float32).flatten() + alpha = (action * float(cfg["action_scale"]) + np.asarray(cfg["action_bias"], dtype=np.float32)) * u0 + omega = np.zeros(n_obj, dtype=DATA_TYPE); omega[-3:] = alpha + ff.context.push(); ff.run(si, omega); ff.context.pop(); raw = ff.obs.copy()[:12] + sensors.append(raw[:6]); forces.append(raw[6:12]); actions.append(action); commanded.append(alpha) + obs = normalize_raw_observation(raw, norm) + save_controlled_npz(out_dir / "controlled.npz", scene_name, cfg, sensors=np.asarray(sensors), forces=np.asarray(forces), + actions_norm=np.asarray(actions), actions_commanded=np.asarray(commanded)) + result.update(controlled=True, similarity=float(similarity(np.asarray(target), np.asarray(sensors), cfg.get("conv_len", 30)))) del ff - json.dump(result, open(os.path.join(out_dir, "result.json"), "w"), indent=2) - print(f" {scene_name}: similarity={result.get('similarity', 'N/A'):.4f}" if result["controlled"] else f" {scene_name}: target only") return result -# ── Dispatch ────────────────────────────────────────────────────────── -_INFER_FN = { - "karman": infer_karman, - "illusion": infer_illusion, - "vortex": infer_vortex, -} +def _scene_names(args: argparse.Namespace, parser: argparse.ArgumentParser) -> list[str]: + if args.scene: + return [args.scene] + if args.group in SCENE_GROUPS: + return list(SCENE_GROUPS[args.group]()) + return [item.strip() for item in args.group.split(",") if item.strip()] -def main(): - ap = argparse.ArgumentParser(description="Stage 1: Unified PPO inference") - ap.add_argument("--scene", type=str, default=None, help="Scene name (e.g. karman_re100)") - ap.add_argument("--group", type=str, default=None, help="Scene group (karman_all, illusion_trained, vortex_all...)") - ap.add_argument("--device", type=int, default=2, help="GPU device ID") - ap.add_argument("--steps", type=int, default=200, help="Inference steps per rollout") - ap.add_argument("--target-only", action="store_true", help="Only record target (no PPO, for generalization)") - ap.add_argument("--dry-run", action="store_true", help="Verify configs only, do not run CFD") - args = ap.parse_args() +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description="Stage 1 legacy PPO inference") + selection = parser.add_mutually_exclusive_group(required=True) + selection.add_argument("--scene") + selection.add_argument("--group") + parser.add_argument("--device", type=int, default=2, help="Legacy CFD GPU device") + parser.add_argument( + "--model-device", default="cpu", + help="PyTorch PPO device; CPU avoids conflicts with the active PyCUDA context", + ) + parser.add_argument("--steps", type=int, default=200) + parser.add_argument("--target-only", action="store_true") + parser.add_argument("--run-id", default=None) + parser.add_argument("--output-root", default=None) + parser.add_argument("--overwrite", action="store_true") + parser.add_argument("--norm-source", choices=("existing", "recompute"), default="existing") + parser.add_argument("--dry-run", action="store_true") + return parser - if not args.scene and not args.group: - ap.error("Must specify --scene or --group") - if args.group and args.group in SCENE_GROUPS: - scene_names = SCENE_GROUPS[args.group]() - elif args.group: - scene_names = [s.strip() for s in args.group.split(",")] - else: - scene_names = [args.scene] - - print(f"Stage 1: {len(scene_names)} scene(s), device={args.device}, steps={args.steps}") - if args.dry_run: - for sn in scene_names: - cfg = get_scene(sn) - mp = model_path_for_scene(sn) - print(f" {sn}: scene_id={cfg['scene_id']}, model={mp or 'NONE'}, SI={cfg['sample_interval']}") +def main(argv: Sequence[str] | None = None) -> int: + parser = build_parser(); args = parser.parse_args(argv) + if args.steps <= 0: parser.error("--steps must be positive") + run_id = args.run_id or default_run_id(); output_root = resolve_output_root(args.output_root) + command = [sys.executable, str(Path(__file__).resolve()), *(list(argv) if argv is not None else sys.argv[1:])] + try: + scenes = _scene_names(args, parser) + plans = [] + for scene in scenes: + cfg = get_scene(scene) + if args.target_only and cfg["scene_id"] != "illusion": + raise ValueError("--target-only is only valid for Illusion scenes") + model = Path(model_path_for_scene(scene)) if model_path_for_scene(scene) else None + out_dir = scene_output_dir(output_root, run_id, scene, cfg) + if out_dir.exists() and any(out_dir.iterdir()) and not args.overwrite: + raise FileExistsError(f"Refusing to overwrite non-empty output directory: {out_dir}") + if args.norm_source == "existing" and not args.target_only: + load_existing_norm(scene, cfg) + plans.append((scene, cfg, model, out_dir)) + if args.dry_run: + for scene, cfg, model, out_dir in plans: + print(f"{scene}: scene_id={cfg['scene_id']} model={model or 'NONE'} SI={cfg['sample_interval']} output={out_dir}") + return 0 + device_manifest = cfd_device_manifest(args.device) + for scene, cfg, model, out_dir in plans: + prepare_output_dir(out_dir, args.overwrite) + _write_json(out_dir / "config.json", cfg) + manifest = { + "schema_version": "sr-stage1-manifest-v2", "run_id": run_id, "scene": scene, + "scene_id": cfg["scene_id"], "config": cfg, "model_path": str(model) if model else None, + "model_sha256": _sha256(model), "metric_id": METRIC_ID, "command": shlex.join(command), + "git_sha": _git_sha(), "created_utc": datetime.now(timezone.utc).isoformat(), + "output_dir": str(out_dir), "norm_source": args.norm_source, + **device_manifest, "model_device": args.model_device, + } + _write_json(out_dir / "manifest.json", manifest) + if cfg["scene_id"] == "karman": + result = infer_karman( + scene, args.device, out_dir, args.steps, args.norm_source, args.model_device, + ) + elif cfg["scene_id"] == "illusion": + result = infer_illusion( + scene, args.device, out_dir, args.steps, args.target_only, + args.norm_source, args.model_device, + ) + elif cfg["scene_id"] == "vortex": result = infer_vortex(scene, args.device, out_dir, args.steps, args.norm_source) + else: raise ValueError(f"Unsupported legacy scene_id: {cfg['scene_id']}") + result.update({k: manifest[k] for k in ("run_id", "model_path", "model_sha256", "metric_id", "command", "git_sha", "config")}) + result["schema_version"] = "sr-stage1-result-v2" + _write_json(out_dir / "result.json", result) return 0 - - for sn in scene_names: - cfg = get_scene(sn) - scene_id = cfg["scene_id"] - od = _out_dir(sn) - print(f"\n-- {sn} ({scene_id}) -> {od} --") - fn = _INFER_FN.get(scene_id) - if fn is None: - print(f" ERROR: no inference function for scene_id={scene_id}") - continue - if scene_id == "illusion": - fn(sn, args.device, od, args.steps, args.target_only) - else: - fn(sn, args.device, od, args.steps) - - print("\nDone.") + except (FileNotFoundError, FileExistsError, KeyError, ValueError, NotImplementedError) as exc: + print(f"ERROR: {exc}", file=sys.stderr) + return 2 if __name__ == "__main__": - main() + raise SystemExit(main()) diff --git a/src/SR_analysis/stage_2_fit.py b/src/SR_analysis/stage_2_fit.py index 402ec45..b2c69ba 100644 --- a/src/SR_analysis/stage_2_fit.py +++ b/src/SR_analysis/stage_2_fit.py @@ -1,191 +1,1086 @@ #!/usr/bin/env python3 -"""Stage 2: Unified PySR symbolic regression fitting. +"""Stage 2 symbolic fitting with explicit trajectory and artifact contracts. -Runs PySR on controlled.npz data to discover interpretable obs→act formulas. -Supports per-scene individual fitting and cross-scene joint fitting. - -Usage: - # Per-scene (fast, niter=40) - conda run -n sr_env python stage_2_fit.py --scene karman_re100 --mode per-scene - - # Per-scene deep search (niter=120) - conda run -n sr_env python stage_2_fit.py --scene karman_re100 --mode per-scene --deep - - # Joint cross-scene (Karman: Re50-400) - conda run -n sr_env python stage_2_fit.py --scenes karman_re50,karman_re100,karman_re200,karman_re400 --mode joint - - # Joint deep - conda run -n sr_env python stage_2_fit.py --scenes illusion_0.75L,illusion_1L --mode joint --deep - -Output: JSON written to results/formulas/{scene}_{channel}.json +The module intentionally delays importing PySR so ``--prepare-only`` and unit + tests can validate all inputs without Julia being installed. """ from __future__ import annotations import argparse +import ast import json import os +import inspect +import platform +import re +import subprocess import sys +from dataclasses import dataclass +from datetime import datetime, timezone from pathlib import Path +from typing import Any, Callable, Mapping, Sequence import numpy as np +import sympy -_REPO = Path(__file__).resolve().parents[1] -if str(_REPO) not in sys.path: - sys.path.insert(0, str(_REPO)) -_SRC = _REPO / "src" -if str(_SRC) not in sys.path: - sys.path.insert(0, str(_SRC)) +REPO_ROOT = Path(__file__).resolve().parents[2] +SRC_ROOT = REPO_ROOT / "src" +SR_ROOT = SRC_ROOT / "SR_analysis" +if str(SRC_ROOT) not in sys.path: + sys.path.insert(0, str(SRC_ROOT)) -from SR_analysis.configs import get_scene -from SR_analysis.utils.feature_builder import ( - compute_dimensionless, compute_features, build_feature_matrix, - PHASE_STATE_KEYS, ILLUSION_PHASE_KEYS, CORE_FEAT_KEYS_V2, MU_FEAT_KEYS, +from SR_analysis.configs import ACTION_LAYOUT, control_dt, get_scene +from SR_analysis.utils.data_contracts import ( + ALIGNMENTS, + CAUSAL_ALIGNMENT, + BatchDataset, + build_batch_dataset, + contiguous_block_slices, ) -ALL_MU = list(MU_FEAT_KEYS) + ["mu_Cl_tot"] -PHYS = [k for k in CORE_FEAT_KEYS_V2 if not k.startswith(("aF_","aB_","aT_","daF","daB","daT"))] -PHYS_DADT = PHYS + ["daF_dt","daB_dt","daT_dt"] +from SR_analysis.utils.feature_builder import FEATURE_SET_KEYS, ILLUSION_TARGET_KEYS +from SR_analysis.utils.formula_schema import build_formula_artifact, formula_safety_report +from SR_analysis.utils.provenance import atomic_write_json, hash_file, hash_json +from SR_analysis.utils.symmetry_dataset import build_mirrored_batch_dataset -FORMULA_DIR = "src/SR_analysis/results/formulas" -os.makedirs(FORMULA_DIR, exist_ok=True) - -FIT_GROUPS = { - "karman_trained": ["karman_re50", "karman_re100", "karman_re200", "karman_re400"], - "illusion_trained": ["illusion_0.75L", "illusion_1L"], -} +DEFAULT_DATA_ROOT = SR_ROOT / "data" +DEFAULT_RESULTS_ROOT = SR_ROOT / "results" / "runs" +G_VERSION = "legacy-mirror-front-odd-rear-swap-negate-v1" +BINARY_OPERATORS = ("+", "-", "*") +UNARY_OPERATORS = ("square",) +DEPLOYMENT_ARCHITECTURES = ( + "mapped_shared", + "three_head_independent", +) +FIT_AUGMENTATIONS = ("none", "G") +FIT_PURPOSES = ("discovery", "fixed-topology-refit") +FEATURE_PROFILES = ( + "default", + "actual_only", + "target_only", + "actual_plus_target", + "actual_plus_error", +) +COMPARATIVE_FEATURE_PROFILES = FEATURE_PROFILES[1:] -def load_controlled(scene_name): - cfg = get_scene(scene_name) - sid = cfg["scene_id"] - data_dir = f"src/SR_analysis/data/{sid}/{scene_name}" - npz = np.load(os.path.join(data_dir, "controlled.npz"), allow_pickle=True) - s = npz["sensors"].astype(np.float64) - f = npz["forces"].astype(np.float64) - a = npz["actions"].astype(np.float64) - ap = (a * cfg["action_scale"] + np.array(cfg["action_bias"])) * cfg["u0"] - tf = npz["target_forces"].astype(np.float64) if "target_forces" in npz else None - return s, f, ap, tf, cfg +@dataclass(frozen=True) +class PreparedTrajectory: + trajectory_id: str + data_path: Path + config_path: Path | None + dataset: BatchDataset + mirrored_dataset: BatchDataset + data_hash: str -def build_features(scene_name, s, f, ap, tf, cfg, feat_keys): - T = s.shape[0] - a1 = np.zeros((T, 3)); a2 = np.zeros((T, 3)) - a1[1:] = ap[:-1]; a2[2:] = ap[:-2] - dim = compute_dimensionless(s, f, u0=cfg["u0"], d=20.0) - si = cfg.get("sample_interval", 800) - dt_c = si / 2000.0 - mu = cfg["mu"] - sym = compute_features(dim, a1, a2, mu, alpha_mode=False, - include_mu="mu" in feat_keys, - include_cos_sin=False, u0=cfg["u0"], - target_forces=tf, dt_c=dt_c, - sensors_raw=s, forces_raw=f) - X = build_feature_matrix(sym, feat_keys, add_bias=False)[2:] - Y = ap[2:] / cfg["u0"] - return X, Y +@dataclass(frozen=True) +class PreparedScene: + name: str + config: dict[str, Any] + data_path: Path + config_path: Path | None + dataset: BatchDataset + mirrored_dataset: BatchDataset + feature_names: tuple[str, ...] + action_layout: tuple[str, ...] + data_hash: str + trajectories: tuple[PreparedTrajectory, ...] = () -def fit(scene_name, feat_keys, niter, output_label): - s, f, ap, tf, cfg = load_controlled(scene_name) - X, Y = build_features(scene_name, s, f, ap, tf, cfg, feat_keys) +def default_run_id() -> str: + return datetime.now(timezone.utc).strftime("stage2-%Y%m%dT%H%M%SZ") + + +def resolve_repo_path(value: str | os.PathLike[str] | None, default: Path) -> Path: + if value is None: + return default.resolve() + path = Path(value).expanduser() + return (path if path.is_absolute() else REPO_ROOT / path).resolve() + + +def _safe_run_id(run_id: str) -> str: + if not re.fullmatch(r"[A-Za-z0-9][A-Za-z0-9._-]*", run_id): + raise ValueError("run_id must contain only letters, digits, '.', '_' or '-'") + return run_id + + +def formula_output_dir(results_root: Path, run_id: str) -> Path: + root = results_root.resolve() + destination = (root / _safe_run_id(run_id) / "formulas").resolve() + destination.relative_to(root) + return destination + + +def refuse_existing_output(path: Path) -> None: + if path.exists(): + raise FileExistsError(f"Refusing to overwrite existing output directory: {path}") + + +def _parse_sequence(value: Any) -> tuple[Any, ...]: + if isinstance(value, str): + value = ast.literal_eval(value) + if not isinstance(value, (list, tuple)): + raise ValueError(f"expected sequence contract, got {value!r}") + return tuple(value) + + +def _load_scene_config(scene: str, config_path: Path | None) -> dict[str, Any]: + config = get_scene(scene) + if config_path is not None: + loaded = json.loads(config_path.read_text(encoding="utf-8")) + if not isinstance(loaded, dict): + raise ValueError(f"scene config must be a JSON object: {config_path}") + config.update(loaded) + for key in ("action_bias", "action_layout", "body_layout"): + if key in config: + config[key] = _parse_sequence(config[key]) + config.setdefault("action_layout", tuple(ACTION_LAYOUT)) + return config + + +def resolve_scene_files(data_root: Path, scene: str, scene_id: str) -> tuple[Path, Path | None]: + candidates = ( + data_root / scene_id / scene, + data_root / scene, + data_root, + ) + for directory in candidates: + controlled = directory / "controlled.npz" + if controlled.is_file(): + config = directory / "config.json" + return controlled, config if config.is_file() else None + raise FileNotFoundError( + f"controlled.npz for {scene!r} not found below {data_root}; expected canonical " + f"{scene_id}/{scene}/controlled.npz or a run/scene directory" + ) + + +def feature_names_for_scene( + config: Mapping[str, Any], *, feature_set: str, joint: bool, + feature_profile: str = "default", +) -> tuple[str, ...]: + if feature_set not in FEATURE_SET_KEYS: + raise ValueError(f"unknown feature set {feature_set!r}; expected one of {tuple(FEATURE_SET_KEYS)}") + if feature_profile not in FEATURE_PROFILES: + raise ValueError(f"unknown feature profile {feature_profile!r}; expected one of {FEATURE_PROFILES}") + base = tuple(FEATURE_SET_KEYS[feature_set]) + if config.get("scene_id") != "illusion": + if feature_profile not in {"default", "actual_only"}: + raise ValueError("target/error feature profiles are only defined for Illusion") + return base + profile_features = { + # ``default`` is retained as a non-comparative compatibility profile. + "default": tuple(ILLUSION_TARGET_KEYS) + ("Cd_err", "Cl_err"), + "actual_only": (), + "target_only": tuple(ILLUSION_TARGET_KEYS), + "actual_plus_target": tuple(ILLUSION_TARGET_KEYS), + "actual_plus_error": ("Cd_err", "Cl_err"), + } + if feature_profile == "target_only": + return profile_features[feature_profile] + return base + profile_features[feature_profile] + + +def _npz_scalar(data: Mapping[str, Any], key: str, default: Any) -> Any: + if key not in data: + return default + value = np.asarray(data[key]) + return value.item() if value.shape == () else default + + +def prepare_scene( + scene: str, data_root: Path, *, alignment: str, joint: bool, + feature_set: str = "physics_reduced", feature_profile: str = "default", + sample_segment: str = "all", transient_count: int = 50, +) -> PreparedScene: + baseline = get_scene(scene) + data_path, config_path = resolve_scene_files(data_root, scene, str(baseline["scene_id"])) + config = _load_scene_config(scene, config_path) + feature_names = feature_names_for_scene( + config, feature_set=feature_set, joint=joint, feature_profile=feature_profile, + ) + with np.load(data_path, allow_pickle=False) as data: + sensors_key = "sensors_post" if "sensors_post" in data else "sensors" + forces_key = "forces_post" if "forces_post" in data else "forces" + if "actions_alpha_commanded" in data: + actions = np.asarray(data["actions_alpha_commanded"]) + action_mode = "alpha" + elif "actions_norm" in data: + actions = np.asarray(data["actions_norm"]) + action_mode = "normalized" + elif "actions" in data: + actions = np.asarray(data["actions"]) + action_mode = "normalized" + else: + raise KeyError(f"controlled trajectory missing actions: {data_path}") + target = np.asarray(data["target_forces"]) if "target_forces" in data else None + dt_c = float(_npz_scalar(data, "dt_c", config.get("control_dt", control_dt(config["sample_interval"])))) + common = { + "mu": float(config["mu"]), "dt_c": dt_c, "alignment": alignment, + "action_mode": action_mode, "action_scale": float(config.get("action_scale", 1.0)), + "action_bias": config.get("action_bias", (0.0, 0.0, 0.0)), + "illusion": config.get("scene_id") == "illusion", + "u0": float(config.get("u0", 0.01)), "include_cos_sin": False, + "add_bias": False, "strict": True, "sample_segment": sample_segment, + "transient_count": transient_count, + } + sensors = np.asarray(data[sensors_key]) + forces = np.asarray(data[forces_key]) + dataset = build_batch_dataset( + sensors, forces, actions, feature_names, target_forces=target, **common, + ) + mirrored_dataset = build_mirrored_batch_dataset( + sensors, forces, actions, feature_names, target_forces=target, **common, + ) + layout = tuple(str(item).lower() for item in config.get("action_layout", ACTION_LAYOUT)) + aliases = {"top": "upper", "bottom": "lower"} + layout = tuple(aliases.get(item, item) for item in layout) + if len(layout) != 3 or set(layout) != {"front", "upper", "lower"}: + raise ValueError(f"invalid native action_layout for {scene}: {layout}") + if dataset.X.shape[0] == 0: + raise ValueError(f"no aligned samples remain for {scene}") + data_hash = hash_json({"controlled_sha256": hash_file(data_path), "config": config}) + trajectory = PreparedTrajectory( + f"{scene}:trajectory-001", data_path, config_path, dataset, mirrored_dataset, data_hash, + ) + return PreparedScene( + scene, config, data_path, config_path, dataset, mirrored_dataset, + feature_names, layout, data_hash, (trajectory,), + ) + + +def _stack_batch_datasets(datasets: Sequence[BatchDataset]) -> BatchDataset: + if not datasets: + raise ValueError("at least one trajectory dataset is required") + return BatchDataset( + X=np.vstack([dataset.X for dataset in datasets]), + Y=np.vstack([dataset.Y for dataset in datasets]), + kept_indices=np.concatenate([dataset.kept_indices for dataset in datasets]), + dropped_indices=np.concatenate([dataset.dropped_indices for dataset in datasets]), + metadata=dict(datasets[0].metadata), + features={}, + ) + + +def prepare_scene_trajectories( + scene: str, data_roots: Sequence[Path], *, alignment: str, joint: bool, + feature_set: str = "physics_reduced", feature_profile: str = "default", + sample_segment: str = "all", transient_count: int = 50, +) -> PreparedScene: + if not data_roots: + raise ValueError("at least one data root is required") + prepared = [ + prepare_scene( + scene, root, alignment=alignment, joint=joint, feature_set=feature_set, + feature_profile=feature_profile, sample_segment=sample_segment, + transient_count=transient_count, + ) + for root in data_roots + ] + first = prepared[0] + for item in prepared[1:]: + if item.feature_names != first.feature_names or item.action_layout != first.action_layout: + raise ValueError(f"trajectory contracts differ for scene {scene}") + if item.config.get("scene_id") != first.config.get("scene_id"): + raise ValueError(f"trajectory scene_id contracts differ for scene {scene}") + trajectories = tuple( + PreparedTrajectory( + f"{scene}:trajectory-{index:03d}", item.data_path, item.config_path, + item.dataset, item.mirrored_dataset, item.data_hash, + ) + for index, item in enumerate(prepared, start=1) + ) + return PreparedScene( + scene, first.config, first.data_path, first.config_path, + _stack_batch_datasets([item.dataset for item in trajectories]), + _stack_batch_datasets([item.mirrored_dataset for item in trajectories]), + first.feature_names, first.action_layout, + hash_json({item.trajectory_id: item.data_hash for item in trajectories}), trajectories, + ) + + +def _git_sha() -> str | None: + try: + return subprocess.run( + ["git", "-C", str(REPO_ROOT), "rev-parse", "HEAD"], check=True, + capture_output=True, text=True, + ).stdout.strip() + except (OSError, subprocess.CalledProcessError): + return None + + +def _environment() -> dict[str, Any]: + return { + "python": platform.python_version(), + "numpy": np.__version__, + "platform": platform.platform(), + "pysr": None, + } + + +def _regressor_factory() -> Any: from pysr import PySRRegressor - m = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], - niterations=niter, populations=30, maxsize=15, - complexity_of_constants=2, parsimony=0.01, batching=False) - # Front (no bias) - m.fit(X, Y[:, 0], variable_names=feat_keys) - front = {"scene": output_label, "channel": "front", "output": "alpha", - "feature_keys": feat_keys, "best_sympy": str(m.sympy()), - "best_score": float(m.score(X, Y[:, 0])), "niterations": niter} - json.dump(front, open(os.path.join(FORMULA_DIR, f"{output_label}_front.json"), "w"), indent=2) - print(f" Front: {front['best_sympy']} (R2={front['best_score']:.4f})") - # Top (with bias) - Xt = build_feature_matrix(dict(zip(feat_keys, [X[:, i] for i in range(len(feat_keys))])), feat_keys, add_bias=True)[0] - # Redo properly - from SR_analysis.utils.feature_builder import compute_features as cf2, compute_dimensionless as cd2, build_feature_matrix as bfm - T2 = s.shape[0]; a12 = np.zeros((T2,3)); a22 = np.zeros((T2,3)) - a12[1:]=ap[:-1]; a22[2:]=ap[:-2] - dim2 = cd2(s, f, u0=cfg["u0"], d=20.0) - sym2 = cf2(dim2, a12, a22, mu, alpha_mode=False, include_mu="mu" in feat_keys, include_cos_sin=False, u0=cfg["u0"], target_forces=tf, dt_c=cfg.get("sample_interval",800)/2000, sensors_raw=s, forces_raw=f) - Xt2 = bfm(sym2, feat_keys, add_bias=True)[2:] - m2 = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], - niterations=niter, populations=30, maxsize=15, - complexity_of_constants=2, parsimony=0.01, batching=False) - m2.fit(Xt2, Y[:, 2], variable_names=["bias"] + feat_keys) - top = {"scene": output_label, "channel": "top", "output": "alpha", - "feature_keys": ["bias"] + feat_keys, "best_sympy": str(m2.sympy()), - "best_score": float(m2.score(Xt2, Y[:, 2])), "niterations": niter} - json.dump(top, open(os.path.join(FORMULA_DIR, f"{output_label}_top.json"), "w"), indent=2) - print(f" Top: {top['best_sympy']} (R2={top['best_score']:.4f})") - return front, top + return PySRRegressor -def fit_joint(scene_names, feat_keys, niter, output_label): - Xl, Yl = [], [] - for sn in scene_names: - s, f, ap, tf, cfg = load_controlled(sn) - X, Y = build_features(sn, s, f, ap, tf, cfg, feat_keys) - Xl.append(X); Yl.append(Y[:, 0]) - X_all = np.vstack(Xl); Y_all = np.concatenate(Yl) - from pysr import PySRRegressor - m = PySRRegressor(binary_operators=["+","-","*","/"], unary_operators=["square"], - niterations=niter, populations=40, maxsize=15, - complexity_of_constants=2, parsimony=0.01, batching=False) - m.fit(X_all, Y_all, variable_names=feat_keys) - front = {"scene": output_label, "channel": "front", "output": "alpha", - "feature_keys": feat_keys, "best_sympy": str(m.sympy()), - "best_score": float(m.score(X_all, Y_all)), "niterations": niter, - "n_samples": int(X_all.shape[0])} - json.dump(front, open(os.path.join(FORMULA_DIR, f"{output_label}_front.json"), "w"), indent=2) - print(f" Joint Front: {front['best_sympy']} (R2={front['best_score']:.4f})") - return front +def regressor_parameters(*, seed: int, niterations: int, smoke: bool) -> dict[str, Any]: + return { + "binary_operators": list(BINARY_OPERATORS), + "unary_operators": list(UNARY_OPERATORS), + "niterations": int(niterations), + "populations": 2 if smoke else 30, + "population_size": 16 if smoke else 33, + "tournament_selection_n": 4 if smoke else 10, + "maxsize": 7 if smoke else 15, + "complexity_of_constants": 2, + "parsimony": 0.01, + "batching": False, + "random_state": int(seed), + "deterministic": True, + "parallelism": "serial", + } -def get_feature_keys_for_scene(scene_name): - cfg = get_scene(scene_name) - sid = cfg["scene_id"] - if sid == "illusion": - return ILLUSION_PHASE_KEYS - elif sid == "karman": - return PHYS_DADT + ALL_MU - return PHASE_STATE_KEYS +def _predict(model: Any, X: np.ndarray) -> np.ndarray: + prediction = np.asarray(model.predict(X), dtype=np.float64).reshape(-1) + if prediction.shape != (X.shape[0],): + raise ValueError(f"regressor prediction has invalid shape {prediction.shape}") + return prediction -def main(): - ap = argparse.ArgumentParser(description="Stage 2: Unified PySR fitting") - ap.add_argument("--scene", type=str, default=None) - ap.add_argument("--scenes", type=str, default=None, help="Comma-separated for joint fitting") - ap.add_argument("--group", type=str, default=None) - ap.add_argument("--mode", type=str, default="per-scene", choices=["per-scene", "joint"]) - ap.add_argument("--deep", action="store_true", help="Deep search (niter=120)") - ap.add_argument("--output-label", type=str, default=None) - args = ap.parse_args() +def diagnostic_metrics(y: np.ndarray, prediction: np.ndarray) -> dict[str, float]: + residual = np.asarray(y) - np.asarray(prediction) + denominator = float(np.sum((y - np.mean(y)) ** 2)) + r2 = 1.0 - float(np.sum(residual ** 2)) / denominator if denominator > 0 else 0.0 + return { + "r2": r2, + "mae": float(np.mean(np.abs(residual))), + "rmse": float(np.sqrt(np.mean(residual ** 2))), + "max_error": float(np.max(np.abs(residual))), + } - niter = 120 if args.deep else 40 - if args.group and args.group in FIT_GROUPS: - scene_names = FIT_GROUPS[args.group] - elif args.scenes: - scene_names = [s.strip() for s in args.scenes.split(",")] - elif args.scene: - scene_names = [args.scene] +def _expression(model: Any) -> str: + expression = str(model.sympy()).strip() + if not expression: + raise ValueError("regressor returned an empty symbolic expression") + return expression + + +def _combined_data_hash(scenes: Sequence[PreparedScene]) -> str: + return hash_json({scene.name: scene.data_hash for scene in scenes}) + + +def validate_deployment_architecture(value: str) -> str: + if value not in DEPLOYMENT_ARCHITECTURES: + raise ValueError(f"deployment architecture must be one of {DEPLOYMENT_ARCHITECTURES}") + return value + + +def validate_fit_augmentation(value: str) -> str: + if value not in FIT_AUGMENTATIONS: + raise ValueError(f"fit augmentation must be one of {FIT_AUGMENTATIONS}") + return value + + +def _scene_trajectories(scene: PreparedScene) -> tuple[PreparedTrajectory, ...]: + if scene.trajectories: + return scene.trajectories + return (PreparedTrajectory( + f"{scene.name}:trajectory-001", scene.data_path, scene.config_path, + scene.dataset, scene.mirrored_dataset, scene.data_hash, + ),) + + +def _head_training_blocks( + scenes: Sequence[PreparedScene], role: str, channel_index: int, + *, fit_augmentation: str = "G", split: str | None = None, +) -> list[tuple[str, str, np.ndarray, np.ndarray]]: + augmentation = validate_fit_augmentation(fit_augmentation) + blocks = [] + for scene in scenes: + for trajectory in _scene_trajectories(scene): + X = trajectory.dataset.X + GX = trajectory.mirrored_dataset.X + if GX.shape != X.shape: + raise ValueError("raw-state mirrored dataset does not align with source dataset") + y = trajectory.dataset.Y[:, channel_index] + gy = trajectory.mirrored_dataset.Y[:, channel_index] + if role == "front_odd": + np.testing.assert_allclose(gy, -y) + elif role == "rear_shared": + lower_index = scene.action_layout.index("lower") + np.testing.assert_allclose(gy, -trajectory.dataset.Y[:, lower_index]) + elif role not in {"front_independent", "upper_independent", "lower_independent"}: + raise ValueError(f"unknown fitted head role: {role}") + block = slice(None) if split is None else contiguous_block_slices(len(X))[split] + blocks.append((scene.name, trajectory.trajectory_id, X[block], y[block])) + if augmentation == "G": + blocks.append((scene.name, trajectory.trajectory_id, GX[block], gy[block])) + return blocks + + +def _head_training_data( + scenes: Sequence[PreparedScene], role: str, channel_index: int, + *, fit_augmentation: str = "G", split: str | None = None, +) -> tuple[np.ndarray, np.ndarray]: + blocks = _head_training_blocks( + scenes, role, channel_index, fit_augmentation=fit_augmentation, split=split, + ) + return np.vstack([item[2] for item in blocks]), np.concatenate([item[3] for item in blocks]) + + +def _joint_sample_weights( + blocks: Sequence[tuple[str, str, np.ndarray, np.ndarray]], +) -> np.ndarray: + cases = tuple(dict.fromkeys(item[0] for item in blocks)) + trajectories = { + case: tuple(dict.fromkeys(item[1] for item in blocks if item[0] == case)) + for case in cases + } + weights = [] + for case, trajectory_id, X, _ in blocks: + total_for_trajectory = sum( + len(other_X) for other_case, other_id, other_X, _ in blocks + if other_case == case and other_id == trajectory_id + ) + mass = 1.0 / (len(cases) * len(trajectories[case])) + weights.append(np.full(len(X), mass / total_for_trajectory, dtype=np.float64)) + result = np.concatenate(weights) + return result * (len(result) / result.sum()) + + +def _parameterize_numeric_constants( + expression: str, feature_names: Sequence[str], +) -> tuple[ast.Expression, tuple[str, ...], np.ndarray]: + """Replace every numeric literal with a distinct optimization parameter.""" + tree = ast.parse(expression, mode="eval") + allowed_names = set(feature_names) | {"sin", "cos", "tan", "exp", "log", "sqrt", "Abs", "abs"} + parameter_names: list[str] = [] + initial_values: list[float] = [] + + class Parameterizer(ast.NodeTransformer): + def visit_Constant(self, node: ast.Constant) -> ast.AST: + if isinstance(node.value, bool) or not isinstance(node.value, (int, float)): + raise ValueError("topology expressions may contain only numeric constants") + name = f"__constant_{len(parameter_names)}" + parameter_names.append(name) + initial_values.append(float(node.value)) + return ast.copy_location(ast.Name(id=name, ctx=ast.Load()), node) + + def visit_Name(self, node: ast.Name) -> ast.AST: + if node.id not in allowed_names: + raise ValueError(f"topology expression references undeclared feature {node.id!r}") + return node + + parameterized = Parameterizer().visit(tree) + ast.fix_missing_locations(parameterized) + if not parameter_names: + raise ValueError("fixed-topology refit requires at least one numeric constant") + return parameterized, tuple(parameter_names), np.asarray(initial_values, dtype=np.float64) + + +def _topology_evaluator( + expression: str, feature_names: Sequence[str], +) -> tuple[Callable[[np.ndarray, np.ndarray], np.ndarray], ast.Expression, tuple[str, ...], np.ndarray]: + tree, parameter_names, initial = _parameterize_numeric_constants(expression, feature_names) + symbols = {name: sympy.Symbol(name) for name in (*feature_names, *parameter_names)} + parsed = sympy.sympify(ast.unparse(tree), locals=symbols, evaluate=False) + function = sympy.lambdify( + [symbols[name] for name in (*feature_names, *parameter_names)], parsed, modules="numpy", + ) + + def evaluate(X: np.ndarray, constants: np.ndarray) -> np.ndarray: + values = function( + *[X[:, index] for index in range(X.shape[1])], *[float(value) for value in constants], + ) + prediction = np.asarray(values, dtype=np.float64) + if prediction.ndim == 0: + prediction = np.full(len(X), float(prediction)) + prediction = prediction.reshape(-1) + if prediction.shape != (len(X),) or not np.all(np.isfinite(prediction)): + raise ValueError("topology expression produced invalid predictions") + return prediction + + return evaluate, tree, parameter_names, initial + + +def _render_refitted_expression( + tree: ast.Expression, parameter_names: Sequence[str], constants: Sequence[float], +) -> str: + replacements = dict(zip(parameter_names, constants)) + + class Renderer(ast.NodeTransformer): + def visit_Name(self, node: ast.Name) -> ast.AST: + if node.id not in replacements: + return node + return ast.copy_location(ast.Constant(value=float(replacements[node.id])), node) + + rendered = Renderer().visit(ast.fix_missing_locations(ast.parse(ast.unparse(tree), mode="eval"))) + rendered_text = ast.unparse(ast.fix_missing_locations(rendered)) + return str(sympy.simplify(sympy.sympify(rendered_text, evaluate=True))) + + +def _refit_metrics( + blocks: Sequence[tuple[str, str, np.ndarray, np.ndarray]], + evaluate: Callable[[np.ndarray], np.ndarray], +) -> dict[str, Any]: + aggregate_X = np.vstack([block[2] for block in blocks]) + aggregate_y = np.concatenate([block[3] for block in blocks]) + cases = tuple(dict.fromkeys(block[0] for block in blocks)) + trajectory_keys = tuple(dict.fromkeys((block[0], block[1]) for block in blocks)) + + def metrics_for(selected: Sequence[tuple[str, str, np.ndarray, np.ndarray]]) -> dict[str, float]: + X = np.vstack([block[2] for block in selected]) + y = np.concatenate([block[3] for block in selected]) + return diagnostic_metrics(y, evaluate(X)) + + return { + "aggregate": diagnostic_metrics(aggregate_y, evaluate(aggregate_X)), + "per_case": { + case: metrics_for([block for block in blocks if block[0] == case]) for case in cases + }, + "per_trajectory": { + trajectory_id: metrics_for([ + block for block in blocks if block[0] == case and block[1] == trajectory_id + ]) + for case, trajectory_id in trajectory_keys + }, + } + + +def _candidate_prediction( + record: Mapping[str, Any], expression: Any, X: np.ndarray, feature_names: Sequence[str], +) -> np.ndarray: + callable_expression = record.get("lambda_format") + if callable(callable_expression): + try: + value = callable_expression(X) + except TypeError: + value = callable_expression(*[X[:, index] for index in range(X.shape[1])]) else: - ap.error("Need --scene, --scenes, or --group") + symbols = [sympy.Symbol(name) for name in feature_names] + parsed = sympy.sympify(expression, locals=dict(zip(feature_names, symbols))) + function = sympy.lambdify(symbols, parsed, modules="numpy") + value = function(*[X[:, index] for index in range(X.shape[1])]) + prediction = np.asarray(value, dtype=np.float64) + if prediction.ndim == 0: + prediction = np.full(len(X), float(prediction)) + prediction = prediction.reshape(-1) + if prediction.shape != (len(X),) or not np.all(np.isfinite(prediction)): + raise ValueError(f"candidate prediction has invalid values or shape {prediction.shape}") + return prediction - label = args.output_label or ("_".join(scene_names) if len(scene_names) > 1 else scene_names[0]) - if args.mode == "per-scene": - for sn in scene_names: - keys = get_feature_keys_for_scene(sn) - print(f"\n=== {sn} (niter={niter}, {len(keys)} features) ===") - fit(sn, keys, niter, sn) - elif args.mode == "joint": - keys = get_feature_keys_for_scene(scene_names[0]) - print(f"\n=== Joint {label} (niter={niter}, {len(keys)} features, {len(scene_names)} scenes) ===") - fit_joint(scene_names, keys, niter, label) +def _pareto_candidates( + model: Any, split_data: Mapping[str, tuple[np.ndarray, np.ndarray]], + feature_names: Sequence[str], feature_ranges: Mapping[str, Sequence[float]], limit: int = 25, +) -> list[dict[str, Any]]: + equations = getattr(model, "equations_", None) + if equations is None: + return [] + records = equations.to_dict("records") if hasattr(equations, "to_dict") else list(equations) + candidates = [] + symbols = {name: sympy.Symbol(name) for name in feature_names} + for record in records[:limit]: + if not isinstance(record, Mapping): + continue + expression = record.get("sympy_format", record.get("equation")) + if expression is None: + continue + expression_text = str(expression) + candidate = {"expression": expression_text} + for key in ("complexity", "loss", "score"): + value = record.get(key) + if value is not None and np.isscalar(value) and np.isfinite(value): + candidate[key] = float(value) + try: + parsed = sympy.sympify(expression, locals=symbols) + candidate["used_features"] = sorted(str(symbol) for symbol in parsed.free_symbols) + candidate["static_safety"] = formula_safety_report( + {"feature_names": list(feature_names), "expression": expression_text}, feature_ranges, + ) + candidate["metrics"] = { + name: diagnostic_metrics(target, _candidate_prediction(record, expression, matrix, feature_names)) + for name, (matrix, target) in split_data.items() + } + except Exception as exc: + candidate["evaluation_error"] = f"{type(exc).__name__}: {exc}" + candidate.setdefault("used_features", []) + candidate.setdefault("static_safety", {"safe": False, "errors": [candidate["evaluation_error"]]}) + candidate["metrics"] = {name: None for name in split_data} + candidates.append(candidate) + return candidates - print("\nDone.") + +def refit_fixed_topology_head( + scenes: Sequence[PreparedScene], *, role: str, channel_index: int, run_id: str, + topology_expression: str, discovery_parent_path: Path | None, + mode: str, deployment_architecture: str, feature_set: str, feature_profile: str, + environment: Mapping[str, Any], +) -> dict[str, Any]: + try: + from scipy.optimize import least_squares + except ImportError as exc: + raise RuntimeError("fixed-topology refit requires scipy in the active environment") from exc + + architecture = validate_deployment_architecture(deployment_architecture) + augmentation = "G" if architecture == "mapped_shared" else "none" + blocks = _head_training_blocks( + scenes, role, channel_index, fit_augmentation=augmentation, split=None, + ) + X = np.vstack([block[2] for block in blocks]) + y = np.concatenate([block[3] for block in blocks]) + weights = _joint_sample_weights(blocks) + evaluate, tree, parameter_names, initial = _topology_evaluator( + topology_expression, scenes[0].feature_names, + ) + result = least_squares( + lambda constants: np.sqrt(weights) * (evaluate(X, constants) - y), initial, + ) + if not result.success or not np.all(np.isfinite(result.x)): + raise RuntimeError(f"fixed-topology least-squares refit failed: {result.message}") + fitted = _render_refitted_expression(tree, parameter_names, result.x) + predictor = lambda matrix: evaluate(matrix, result.x) + metrics = _refit_metrics(blocks, predictor) + feature_ranges = { + name: [float(X[:, index].min()), float(X[:, index].max())] + for index, name in enumerate(scenes[0].feature_names) + } + safety = formula_safety_report( + {"feature_names": list(scenes[0].feature_names), "expression": fitted}, feature_ranges, + ) + counts = {scene.name: int(scene.dataset.X.shape[0]) for scene in scenes} + parent = None if discovery_parent_path is None else discovery_parent_path.resolve() + if parent is not None and not parent.is_file(): + raise FileNotFoundError(f"discovery parent artifact not found: {parent}") + config = scenes[0].config + alignment = scenes[0].dataset.metadata + env = dict(environment) + return build_formula_artifact( + artifact_id=f"{run_id}-{mode}-{role}-anchor-upper", run_id=run_id, role=role, + anchor="upper", training_scenes=[scene.name for scene in scenes], + feature_names=scenes[0].feature_names, fitted_expression=fitted, + deployment_expression=fitted, + output={ + "name": "alpha", "definition": "cylinder_surface_tangential_velocity/U0", + "unit": "dimensionless", "native_action_index": channel_index, + "native_action_order": list(scenes[0].action_layout), + }, + feature_metadata={ + "builder": "SR_analysis.utils.data_contracts.build_batch_dataset", + "definitions_module": "SR_analysis.utils.feature_builder", + "order": list(scenes[0].feature_names), + }, + alignment_metadata={ + "alignment": alignment["alignment"], "warmup": alignment["warmup"], + "sample_segments": alignment.get("sample_segments"), + "history_policy": alignment["history_policy"], + "required_target": config.get("scene_id") == "illusion", + }, + dt_c_metadata={ + "per_scene": {scene.name: float(scene.dataset.metadata["dt_c"]) for scene in scenes}, + "unit": "D/U0", + }, + g_metadata={ + "version": G_VERSION, "deployment_architecture": architecture, + "deployment_semantics": architecture, "fit_augmentation": augmentation, + "front_rule": "front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection" if architecture == "mapped_shared" else None, + "rear_rule": "lower(x)=-upper(Gx)" if architecture == "mapped_shared" else None, + "fitted_heads": [role], + }, + fit_provenance={ + "git_sha": _git_sha(), "environment": env, "command": " ".join(sys.argv), + "created_at": datetime.now(timezone.utc).isoformat(), "mode": mode, + "fit_purpose": "fixed-topology-refit", "feature_set": feature_set, + "feature_profile": feature_profile, "n_samples": int(len(X)), + "source_n_samples": int(sum(counts.values())), "scene_sample_counts": counts, + "g_augmented": augmentation == "G", "fit_augmentation": augmentation, + "deployment_architecture": architecture, + "sample_weighting": "case_equal_trajectory_equal_within_case", + "offline_metrics": metrics, "diagnostic_metrics": metrics["aggregate"], + "optimizer": { + "name": "scipy.optimize.least_squares", "success": bool(result.success), + "cost": float(result.cost), "nfev": int(result.nfev), + "initial_constants": initial.tolist(), "refitted_constants": result.x.tolist(), + }, + "topology_expression": topology_expression, + "static_safety": safety, + }, + pysr_provenance={"used": False, "purpose": "fixed-topology-refit"}, + data_provenance={ + "dataset_hash": _combined_data_hash(scenes), + "per_scene_hashes": {scene.name: scene.data_hash for scene in scenes}, + "paths": {scene.name: str(scene.data_path) for scene in scenes}, + "trajectories": { + scene.name: [{ + "id": trajectory.trajectory_id, "path": str(trajectory.data_path), + "hash": trajectory.data_hash, + "sample_count": int(trajectory.dataset.X.shape[0]), + } for trajectory in _scene_trajectories(scene)] for scene in scenes + }, + }, + discovery_parent={ + "path": None if parent is None else str(parent), + "sha256": None if parent is None else hash_file(parent), + }, + git_sha=_git_sha(), environment=env, + ) + + +def fit_head( + scenes: Sequence[PreparedScene], *, role: str, channel_index: int, run_id: str, + seed: int, niterations: int, smoke: bool, deployment_expression: str | None, + mode: str, deployment_architecture: str, fit_augmentation: str, + feature_set: str, feature_profile: str, + regressor_factory: Callable[..., Any], environment: Mapping[str, Any], +) -> dict[str, Any]: + architecture = validate_deployment_architecture(deployment_architecture) + augmentation = validate_fit_augmentation(fit_augmentation) + split_blocks = { + name: _head_training_blocks( + scenes, role, channel_index, fit_augmentation=augmentation, split=name, + ) + for name in ("train", "validation", "blind") + } + split_data = { + name: (np.vstack([item[2] for item in blocks]), np.concatenate([item[3] for item in blocks])) + for name, blocks in split_blocks.items() + } + X, y = split_data["train"] + parameters = regressor_parameters(seed=seed, niterations=niterations, smoke=smoke) + model = regressor_factory(**parameters) + fit_kwargs: dict[str, Any] = {"variable_names": list(scenes[0].feature_names)} + weights = _joint_sample_weights(split_blocks["train"]) if mode == "joint" else None + if weights is not None: + try: + signature = inspect.signature(model.fit) + except (TypeError, ValueError): + signature = None + supports_weights = signature is None or "weights" in signature.parameters or any( + parameter.kind == inspect.Parameter.VAR_KEYWORD + for parameter in signature.parameters.values() + ) + if not supports_weights: + raise TypeError( + "joint fitting requires PySR model.fit(X, y, weights=...); " + "the configured regressor does not support explicit sample weights" + ) + fit_kwargs["weights"] = weights + model.fit(X, y, **fit_kwargs) + fitted = _expression(model) + deployment = fitted if deployment_expression is None else deployment_expression + counts = {scene.name: int(scene.dataset.X.shape[0]) for scene in scenes} + augmented_counts = {name: 2 * count for name, count in counts.items()} + metrics = { + name: diagnostic_metrics(target, _predict(model, matrix)) + for name, (matrix, target) in split_data.items() + } + all_X = np.vstack([matrix for matrix, _ in split_data.values()]) + feature_ranges = { + name: [float(all_X[:, index].min()), float(all_X[:, index].max())] + for index, name in enumerate(scenes[0].feature_names) + } + safety = formula_safety_report( + {"feature_names": list(scenes[0].feature_names), "expression": deployment}, + feature_ranges, + ) + config = scenes[0].config + alignment = scenes[0].dataset.metadata + artifact_id = f"{run_id}-{mode}-{role}-anchor-upper" + env = dict(environment) + env["pysr"] = getattr(sys.modules.get("pysr"), "__version__", env.get("pysr")) + return build_formula_artifact( + artifact_id=artifact_id, run_id=run_id, role=role, anchor="upper", + training_scenes=[scene.name for scene in scenes], feature_names=scenes[0].feature_names, + fitted_expression=fitted, deployment_expression=deployment, + output={ + "name": "alpha", + "definition": "cylinder_surface_tangential_velocity/U0", + "unit": "dimensionless", + "native_action_index": channel_index, + "native_action_order": list(scenes[0].action_layout), + }, + feature_metadata={ + "builder": "SR_analysis.utils.data_contracts.build_batch_dataset", + "definitions_module": "SR_analysis.utils.feature_builder", + "order": list(scenes[0].feature_names), + }, + alignment_metadata={ + "alignment": alignment["alignment"], "warmup": alignment["warmup"], + "sample_segments": alignment.get("sample_segments"), + "history_policy": alignment["history_policy"], "required_target": config.get("scene_id") == "illusion", + }, + dt_c_metadata={"per_scene": {scene.name: float(scene.dataset.metadata["dt_c"]) for scene in scenes}, "unit": "D/U0"}, + g_metadata={ + "version": G_VERSION, + "deployment_architecture": architecture, + "deployment_semantics": architecture, + "fit_augmentation": augmentation, + "front_rule": ( + "front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection" + if architecture == "mapped_shared" else None + ), + "rear_rule": "lower(x)=-upper(Gx)" if architecture == "mapped_shared" else None, + "fitted_heads": [role], + }, + fit_provenance={ + "git_sha": _git_sha(), + "environment": env, + "command": " ".join(sys.argv), + "created_at": datetime.now(timezone.utc).isoformat(), + "mode": mode, "seed": int(seed), "niterations": int(niterations), "smoke": bool(smoke), + "feature_set": feature_set, "feature_profile": feature_profile, + "n_samples": int(X.shape[0]), "source_n_samples": int(sum(counts.values())), + "scene_sample_counts": counts, "scene_augmented_sample_counts": ( + augmented_counts if augmentation == "G" else counts + ), + "g_augmented": augmentation == "G", + "fit_augmentation": augmentation, + "deployment_architecture": architecture, + "deployment_semantics": architecture, + "sample_weighting": ( + "case_equal_trajectory_equal_within_case" if weights is not None else "uniform" + ), + "offline_metrics": metrics, + "diagnostic_metrics": metrics["train"], + "selection_policy": "manual_validation_required_r2_never_auto_promotes", + "static_safety": safety, + }, + pysr_provenance={ + "parameters": parameters, "binary_operators": list(BINARY_OPERATORS), + "unary_operators": list(UNARY_OPERATORS), "complexity": {"maxsize": parameters["maxsize"], "parsimony": parameters["parsimony"]}, + "pareto_candidates": _pareto_candidates( + model, split_data, scenes[0].feature_names, feature_ranges, + ), + "candidate_limit": 25, + }, + data_provenance={ + "dataset_hash": _combined_data_hash(scenes), + "per_scene_hashes": {scene.name: scene.data_hash for scene in scenes}, + "paths": {scene.name: str(scene.data_path) for scene in scenes}, + "trajectories": { + scene.name: [ + { + "id": trajectory.trajectory_id, + "path": str(trajectory.data_path), + "hash": trajectory.data_hash, + "sample_count": int(trajectory.dataset.X.shape[0]), + } + for trajectory in _scene_trajectories(scene) + ] + for scene in scenes + }, + }, + git_sha=_git_sha(), environment=env, + ) + + +def _validate_joint_contract(scenes: Sequence[PreparedScene]) -> None: + first = scenes[0] + objective = first.config.get("scene_id") + for scene in scenes[1:]: + if scene.config.get("scene_id") != objective: + raise ValueError("joint scenes must belong to the same scene_id objective") + if scene.feature_names != first.feature_names: + raise ValueError("joint scenes must have identical feature definitions/order") + if scene.action_layout != first.action_layout: + raise ValueError("joint scenes must have identical native action order") + action_contract = ( + scene.dataset.metadata["action_mode"], + float(scene.config.get("action_scale", 1.0)), + tuple(scene.config.get("action_bias", (0.0, 0.0, 0.0))), + float(scene.config.get("u0", 0.01)), + ) + first_action_contract = ( + first.dataset.metadata["action_mode"], + float(first.config.get("action_scale", 1.0)), + tuple(first.config.get("action_bias", (0.0, 0.0, 0.0))), + float(first.config.get("u0", 0.01)), + ) + if action_contract != first_action_contract: + raise ValueError("joint scenes must have identical action conversion contracts") + + +def run_fit( + *, scenes: Sequence[str], mode: str, run_id: str, data_root: Path | None = None, + data_roots: Sequence[Path] | None = None, + results_root: Path = DEFAULT_RESULTS_ROOT, alignment: str = CAUSAL_ALIGNMENT, + feature_set: str = "physics_reduced", feature_profile: str = "default", + sample_segment: str = "all", transient_count: int = 50, + deployment_architecture: str = "mapped_shared", fit_augmentation: str = "G", + seed: int = 0, niterations: int = 40, + smoke: bool = False, prepare_only: bool = False, + fit_purpose: str = "discovery", + front_topology_expression: str | None = None, + rear_topology_expression: str | None = None, + front_discovery_parent_path: Path | None = None, + rear_discovery_parent_path: Path | None = None, + front_deployment_expression: str | None = None, + rear_deployment_expression: str | None = None, + regressor_factory: Callable[..., Any] | None = None, +) -> list[Path]: + if not scenes: + raise ValueError("at least one scene is required") + if mode == "joint" and len(scenes) < 2: + raise ValueError("joint mode requires at least two scenes") + if fit_purpose not in FIT_PURPOSES: + raise ValueError(f"fit purpose must be one of {FIT_PURPOSES}") + if fit_purpose == "fixed-topology-refit": + if not front_topology_expression or not rear_topology_expression: + raise ValueError("fixed-topology refit requires front and rear topology expressions") + if deployment_architecture != "mapped_shared": + raise ValueError("fixed-topology refit currently requires mapped_shared architecture") + output_dir = formula_output_dir(results_root, run_id) + refuse_existing_output(output_dir) + roots = tuple(data_roots or (() if data_root is None else (data_root,))) + if not roots: + roots = (DEFAULT_DATA_ROOT,) + prepared = [ + prepare_scene_trajectories( + name, roots, alignment=alignment, joint=mode == "joint", + feature_set=feature_set, feature_profile=feature_profile, + sample_segment=sample_segment, transient_count=transient_count, + ) + for name in scenes + ] + if mode == "joint": + _validate_joint_contract(prepared) + if prepare_only: + return [] + factory = None if fit_purpose == "fixed-topology-refit" else (regressor_factory or _regressor_factory()) + environment = _environment() + groups = [prepared] if mode == "joint" else [[scene] for scene in prepared] + artifacts: list[tuple[str, dict[str, Any]]] = [] + for group in groups: + layout = group[0].action_layout + front_index = layout.index("front") + upper_index = layout.index("upper") + label = "joint" if mode == "joint" else group[0].name + architecture = validate_deployment_architecture(deployment_architecture) + augmentation = validate_fit_augmentation(fit_augmentation) + if architecture == "three_head_independent": + head_specs = ( + ("front", "front_independent", front_index, front_deployment_expression), + ("upper", "upper_independent", upper_index, rear_deployment_expression), + ("lower", "lower_independent", layout.index("lower"), None), + ) + else: + head_specs = ( + ("front", "front_odd", front_index, front_deployment_expression), + ("rear_shared_upper", "rear_shared", upper_index, rear_deployment_expression), + ) + for filename_role, role, channel_index, deployment_expression in head_specs: + if fit_purpose == "fixed-topology-refit": + is_front = filename_role == "front" + topology_expression = front_topology_expression if is_front else rear_topology_expression + parent_path = front_discovery_parent_path if is_front else rear_discovery_parent_path + artifact = refit_fixed_topology_head( + group, role=role, channel_index=channel_index, run_id=run_id, + topology_expression=str(topology_expression), discovery_parent_path=parent_path, + mode=mode, deployment_architecture=architecture, feature_set=feature_set, + feature_profile=feature_profile, environment=environment, + ) + else: + artifact = fit_head( + group, role=role, channel_index=channel_index, run_id=run_id, seed=seed, + niterations=niterations, smoke=smoke, + deployment_expression=deployment_expression, mode=mode, + deployment_architecture=architecture, fit_augmentation=augmentation, + feature_set=feature_set, feature_profile=feature_profile, + regressor_factory=factory, environment=environment, + ) + artifacts.append((f"{label}_{filename_role}.json", artifact)) + output_dir.mkdir(parents=True, exist_ok=False) + paths = [] + for filename, artifact in artifacts: + paths.append(atomic_write_json(output_dir / filename, artifact)) + return paths + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description="Stage 2 contract-aware PySR fitting") + selection = parser.add_mutually_exclusive_group(required=True) + selection.add_argument("--scene") + selection.add_argument("--scenes", help="comma-separated scenes") + parser.add_argument("--mode", choices=("per-scene", "joint"), default="per-scene") + parser.add_argument("--run-id", default=None, help="isolated results run ID; defaults to a UTC ID") + parser.add_argument( + "--data-root", action="append", default=None, + help="repeatable canonical data root, data/runs/, or scene directory", + ) + parser.add_argument( + "--data-roots", default=None, + help="comma-separated independent trajectory roots", + ) + parser.add_argument("--results-root", default=None, help=argparse.SUPPRESS) + parser.add_argument("--alignment", choices=ALIGNMENTS, default=CAUSAL_ALIGNMENT) + parser.add_argument("--feature-set", choices=tuple(FEATURE_SET_KEYS), default="physics_reduced") + parser.add_argument("--feature-profile", choices=COMPARATIVE_FEATURE_PROFILES, default="default") + parser.add_argument("--sample-segment", choices=("all", "transient", "steady"), default="all") + parser.add_argument("--transient-count", type=int, default=50) + parser.add_argument("--deployment-architecture", choices=DEPLOYMENT_ARCHITECTURES, default="mapped_shared") + parser.add_argument("--fit-augmentation", choices=FIT_AUGMENTATIONS, default="G") + parser.add_argument("--fit-purpose", choices=FIT_PURPOSES, default="discovery") + parser.add_argument("--front-topology-expression") + parser.add_argument("--rear-topology-expression") + parser.add_argument("--front-discovery-parent-path") + parser.add_argument("--rear-discovery-parent-path") + parser.add_argument("--seed", type=int, default=0) + parser.add_argument("--niterations", type=int, default=40) + parser.add_argument("--smoke", action="store_true") + parser.add_argument("--prepare-only", action="store_true") + parser.add_argument("--front-deployment-expression") + parser.add_argument("--rear-deployment-expression") + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.niterations < 1: + parser.error("--niterations must be positive") + scenes = [args.scene] if args.scene else [item.strip() for item in args.scenes.split(",") if item.strip()] + root_values = list(args.data_root or []) + if args.data_roots: + root_values.extend(item.strip() for item in args.data_roots.split(",") if item.strip()) + data_roots = [resolve_repo_path(value, DEFAULT_DATA_ROOT) for value in root_values] + if not data_roots: + data_roots = [DEFAULT_DATA_ROOT.resolve()] + try: + paths = run_fit( + scenes=scenes, mode=args.mode, run_id=args.run_id or default_run_id(), + data_roots=data_roots, + results_root=resolve_repo_path(args.results_root, DEFAULT_RESULTS_ROOT), + alignment=args.alignment, feature_set=args.feature_set, + feature_profile=args.feature_profile, sample_segment=args.sample_segment, + transient_count=args.transient_count, + deployment_architecture=args.deployment_architecture, + fit_augmentation=args.fit_augmentation, seed=args.seed, niterations=args.niterations, + smoke=args.smoke, prepare_only=args.prepare_only, fit_purpose=args.fit_purpose, + front_topology_expression=args.front_topology_expression, + rear_topology_expression=args.rear_topology_expression, + front_discovery_parent_path=( + resolve_repo_path(args.front_discovery_parent_path, REPO_ROOT) + if args.front_discovery_parent_path else None + ), + rear_discovery_parent_path=( + resolve_repo_path(args.rear_discovery_parent_path, REPO_ROOT) + if args.rear_discovery_parent_path else None + ), + front_deployment_expression=args.front_deployment_expression, + rear_deployment_expression=args.rear_deployment_expression, + ) + except Exception as exc: + print(f"stage_2_fit: error: {exc}", file=sys.stderr) + return 1 + if args.prepare_only: + print(f"Prepared {len(scenes)} scene(s); inputs and output path validated.") + else: + for path in paths: + print(path) + return 0 if __name__ == "__main__": - main() + raise SystemExit(main()) diff --git a/src/SR_analysis/stage_3_validate.py b/src/SR_analysis/stage_3_validate.py index b080e97..214b5b4 100644 --- a/src/SR_analysis/stage_3_validate.py +++ b/src/SR_analysis/stage_3_validate.py @@ -1,404 +1,960 @@ #!/usr/bin/env python3 -"""Stage 3: Unified CFD closed-loop validation for all scenes. +"""Stage 3 legacy closed-loop validation for Karman and Illusion. -Validates PySR/SINDy control laws or PPO baselines in closed-loop CFD. -Supports Karman cloak, Illusion, and Vortex scenes via automatic dispatch. - -Usage: - # Validate a PySR formula - conda run -n pycuda_3_10 python stage_3_validate.py \\ - --scene karman_re100 --device 2 --mode pysr \\ - --formula-front results/formulas/karman_joint_front.json \\ - --formula-top results/formulas/karman_joint_top.json - - # PPO baseline - conda run -n pycuda_3_10 python stage_3_validate.py --scene illusion_1L --device 2 --mode ppo - - # Uncontrolled baseline - conda run -n pycuda_3_10 python stage_3_validate.py --scene karman_re100 --device 2 --mode uncontrolled - - # Batch generalization - conda run -n pycuda_3_10 python stage_3_validate.py \\ - --group illusion_generalization --device 2 --mode pysr \\ - --formula-front results/formulas/illusion_joint_front.json \\ - --formula-top results/formulas/illusion_joint_top.json - -Output: JSON written to results/validations/{scene_name}.json +The module is deliberately CUDA-free at import time. Runtime CFD dependencies +are imported only by the environment factories after planning has completed. """ from __future__ import annotations import argparse import json import os +import platform +import subprocess import sys +import traceback +from dataclasses import dataclass +from datetime import datetime, timezone from pathlib import Path -from collections import deque -from typing import Optional +from typing import Any, Callable, Mapping, Protocol, Sequence import numpy as np -_REPO = Path(__file__).resolve().parents[1] -if str(_REPO) not in sys.path: - sys.path.insert(0, str(_REPO)) -_SRC = _REPO / "src" -if str(_SRC) not in sys.path: - sys.path.insert(0, str(_SRC)) +REPO_ROOT = Path(__file__).resolve().parents[2] +SRC_ROOT = REPO_ROOT / "src" +for import_root in (REPO_ROOT, SRC_ROOT): + if str(import_root) not in sys.path: + sys.path.insert(0, str(import_root)) -from LegacyCelerisLab import FlowField -from SR_analysis.utils.cfd_interface import load_legacy_configs, compute_similarity, scale_action, load_ppo_model -from SR_analysis.configs import get_scene, SCENES, LEGACY_CFG_DIR, FIFO_LEN +from SR_analysis.configs import ( # noqa: E402 + FIFO_LEN, + LEGACY_CFG_DIR, + get_scene, + get_scene_list, + model_path_for_scene, +) +from SR_analysis.stage_1_infer import ( # noqa: E402 + illusion_observation, + load_existing_norm, + target_phase_index, +) +from SR_analysis.utils.data_contracts import CAUSAL_ALIGNMENT # noqa: E402 +from SR_analysis.utils.feature_state import StatefulFeatureBuilder # noqa: E402 +from SR_analysis.utils.formula_schema import evaluate_formula, load_formula # noqa: E402 +from SR_analysis.utils.g_operator import apply_G_alpha, apply_G_raw12, apply_G_target_force # noqa: E402 +from SR_analysis.utils.harmonics import gen_target_states_at # noqa: E402 +from SR_analysis.utils.metrics import LEGACY_DTW_VERSION, legacy_cycle_similarity # noqa: E402 +from SR_analysis.utils.provenance import atomic_write_json, hash_file, hash_json # noqa: E402 DATA_TYPE = np.float32 -NX = 1280 - -from SR_analysis.utils.harmonics import gen_target_states_at - -# Scene groups -VALIDATE_GROUPS = { - "karman_all": lambda: [s for s in SCENES if s.startswith("karman_re") and "re25" not in s and "re70" not in s and "re150" not in s and "re300" not in s], +METRIC_VERSION = LEGACY_DTW_VERSION +VALIDATION_VERSION = "sr-stage3-validation-v2" +TELEMETRY_VERSION = "sr-stage3-telemetry-v2" +ACTION_ORDER = ("front", "upper", "lower") +GROUPS = { + "karman_all": lambda: get_scene_list("karman"), + "karman_trained": lambda: [ + scene for scene in get_scene_list("karman") if get_scene(scene).get("model_name") + ], "illusion_trained": lambda: ["illusion_0.75L", "illusion_1L", "illusion_1.5L"], "illusion_generalization": lambda: ["illusion_0.5L", "illusion_0.6L", "illusion_0.8L", "illusion_1.2L", "illusion_2L"], - "vortex_all": lambda: ["vortex_lamb", "vortex_taylor"], - "all": lambda: list(SCENES.keys()), + "vortex_all": lambda: get_scene_list("vortex"), + "all": lambda: get_scene_list(), } -OUT_DIR = "src/SR_analysis/results/validations" + +def _jsonable(value: Any) -> Any: + if isinstance(value, np.ndarray): + return value.tolist() + if isinstance(value, np.generic): + return value.item() + if isinstance(value, Path): + return str(value) + if isinstance(value, Mapping): + return {str(key): _jsonable(item) for key, item in value.items()} + if isinstance(value, (list, tuple)): + return [_jsonable(item) for item in value] + return value -def auto_steps(sample_interval: int) -> int: - return max(160, int(2 * NX / 0.01 / sample_interval)) +def _git_sha() -> str | None: + try: + return subprocess.run( + ["git", "-C", str(REPO_ROOT), "rev-parse", "HEAD"], + check=True, + capture_output=True, + text=True, + ).stdout.strip() + except (OSError, subprocess.CalledProcessError): + return None -def _build_feature_vector(obs_slice, a_prev, a_prev2, mu, u0, add_bias, feat_keys, tf=None): - from SR_analysis.utils.feature_builder import compute_dimensionless, compute_features, build_feature_matrix - s = obs_slice[0:6].astype(np.float64).reshape(1, 6) - f = obs_slice[6:12].astype(np.float64).reshape(1, 6) - ap = a_prev.astype(np.float64).reshape(1, 3) - ap2 = a_prev2.astype(np.float64).reshape(1, 3) - dim = compute_dimensionless(s, f, u0=u0, d=20.0) - has_mu = feat_keys and "mu" in feat_keys - sym = compute_features(dim, ap, ap2, mu, alpha_mode=False, include_mu=has_mu, - include_cos_sin=False, u0=u0, - target_forces=tf.reshape(1, 2) if tf is not None else None, - sensors_raw=s, forces_raw=f) - if feat_keys is None: - from SR_analysis.utils.feature_builder import CORE_FEAT_KEYS_V2 - feat_keys = CORE_FEAT_KEYS_V2 - return build_feature_matrix(sym, feat_keys, add_bias=add_bias)[0] +def default_run_id() -> str: + return datetime.now(timezone.utc).strftime("validate-%Y%m%dT%H%M%SZ") -def validate_karman(scene_name, device_id, n_steps, mode, formula_front, formula_top) -> dict: - """Validate Karman cloak (from run_closed_loop.py).""" - from SR_analysis.utils.cfd_interface import build_karman_cloak_env, add_pinball, build_observation, action_to_physical, scale_action as _sa - from SR_analysis.utils.g_operator import apply_G_raw - - cfg = get_scene(scene_name) - u0, nu, l0 = cfg["u0"], cfg["nu"], 20.0 - si, action_scale, action_bias = cfg["sample_interval"], cfg["action_scale"], np.array(cfg["action_bias"]) - n_obj_total = cfg["n_objects_env"] - mu = cfg["mu"] - conv_len = cfg.get("conv_len", 30) - if n_steps <= 0: - n_steps = auto_steps(si) - - cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) - field_cfg = field_cfg._replace(viscosity=float(nu)) - - ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) - target_states, _ = build_karman_cloak_env(ff, u0=u0, l0=l0, sample_interval=si, fifo_len=FIFO_LEN, data_type=DATA_TYPE) - norm = add_pinball(ff, l0=l0, u0=u0, sample_interval=si, fifo_len=FIFO_LEN, data_type=DATA_TYPE, - action_bias=action_bias, pinball_front_x=cfg["pinball_front_x"], pinball_rear_x=cfg["pinball_rear_x"], - obs_slice_start=2, obs_slice_end=14) - - # Restore + bias FIFO - ff.restore_ddf(); ff.apply_ddf() - fifo = deque(maxlen=FIFO_LEN) - ba = _sa(np.zeros(3, dtype=np.float32), scale=action_scale, bias=action_bias, u0=u0, n_total_bodies=n_obj_total) - for _ in range(FIFO_LEN): - ff.context.push(); ff.run(si, ba); ff.context.pop() - fifo.append(ff.obs.copy()[2:14]) - - # Prepare formula coefficients - if mode == "pysr": - fj = json.load(open(formula_front)) - tj = json.load(open(formula_top)) - front_keys = fj["feature_names"] - top_keys_raw = tj["feature_names"] - # Strip "bias" — build_feature_matrix with add_bias=True adds it back - top_keys = [k for k in top_keys_raw if k != "bias"] - front_coef = np.array(fj.get("coef", [0]*len(front_keys))) if "coef" in fj else None - top_coef = np.array(tj.get("coef", [0]*len(top_keys_raw))) if "coef" in tj else None - if front_coef is None or len(front_coef) != len(front_keys): - # Use sympy.lambdify as fallback - import sympy - _fs = sympy.symbols(front_keys) - _fe = sympy.sympify(fj["best_sympy"]) - _ffn = sympy.lambdify(_fs, _fe, "numpy") - _ts = sympy.symbols(top_keys_raw) - _te = sympy.sympify(tj["best_sympy"]) - _tfn = sympy.lambdify(_ts, _te, "numpy") - front_coef = top_coef = None - _use_sympy = True - else: - _use_sympy = False - - elif mode == "ppo": - model = load_ppo_model(f"models/old/{cfg['model_name']}.zip", device=f"cuda:{device_id}", s_dim=cfg.get("s_dim", 12)) - - # Run - sens_list, act_list = [], [] - obs = np.zeros(12, dtype=np.float32) - a_prev = np.array([0.0, -4*u0, 4*u0]) - a_prev2 = np.array([0.0, -4*u0, 4*u0]) - - for step in range(n_steps): - if mode == "pysr": - osl = ff.obs.copy()[2:14] - if _use_sympy: - fv_f = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=False, feat_keys=front_keys) - front = float(_ffn(*fv_f)) - fv_t = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=True, feat_keys=top_keys) - top = float(_tfn(*fv_t)) - else: - fv_f = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=False, feat_keys=front_keys) - front = float(np.dot(fv_f, front_coef)) - fv_t = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=True, feat_keys=top_keys) - top = float(np.dot(fv_t, top_coef)) - G_obs, G_ap, G_ap2 = apply_G_raw(osl, a_prev, a_prev2) - if _use_sympy: - fv_b = _build_feature_vector(G_obs, G_ap, G_ap2, mu, u0, add_bias=True, feat_keys=top_keys) - bottom = -float(_tfn(*fv_b)) - else: - fv_b = _build_feature_vector(G_obs, G_ap, G_ap2, mu, u0, add_bias=True, feat_keys=top_keys) - bottom = -float(np.dot(fv_b, top_coef)) - alpha_sr = np.array([front, bottom, top]) - omega = alpha_sr * u0 # PySR alpha is already non-dim, ω = α·U₀ - elif mode == "ppo": - osl = ff.obs.copy()[2:14] - obs_n = np.clip(np.hstack([osl[6:12]/norm["force_norm_fact"], (osl[0:6]-norm["sens_deviation"])/norm["sens_norm_fact"]]), -1, 1).astype(np.float32) - act, _ = model.predict(obs_n, deterministic=True) - act = act.astype(np.float32).flatten() - omega = (act * action_scale + action_bias) * u0 - else: - omega = np.zeros(3) - - act_list.append(omega.copy()) - omega_arr = np.zeros(n_obj_total, dtype=DATA_TYPE) - omega_arr[n_obj_total-3:] = omega - ff.context.push(); ff.run(si, omega_arr); ff.context.pop() - osl = ff.obs.copy()[2:14] - a_prev2 = a_prev.copy(); a_prev = omega.copy() - fifo.append(osl.copy()); sens_list.append(osl[0:6]) - - sim = compute_similarity(target_states, np.array(sens_list, dtype=np.float32), conv_len) - result = {"scene": scene_name, "mode": mode, "similarity": sim, "n_steps": n_steps} - del ff +def _gpu_provenance(requested_logical_device: int | None) -> dict[str, Any]: + visible = os.environ.get("CUDA_VISIBLE_DEVICES") + result: dict[str, Any] = { + "requested_logical_device": requested_logical_device, + "CUDA_VISIBLE_DEVICES": visible, + "uuid": None, + "name": None, + } + if requested_logical_device is None: + return result + selector = str(requested_logical_device) + if visible is not None: + entries = [entry.strip() for entry in visible.split(",") if entry.strip()] + if requested_logical_device >= len(entries): + return result + selector = entries[requested_logical_device] + try: + output = subprocess.run( + [ + "nvidia-smi", f"--id={selector}", "--query-gpu=uuid,name", + "--format=csv,noheader,nounits", + ], + check=True, + capture_output=True, + text=True, + timeout=5, + ).stdout.strip().splitlines() + if output: + uuid, name = (part.strip() for part in output[0].split(",", 1)) + result.update({"uuid": uuid or None, "name": name or None}) + except (OSError, subprocess.CalledProcessError, subprocess.TimeoutExpired, ValueError): + pass return result -def validate_illusion(scene_name, device_id, n_steps, mode, formula_front, formula_top) -> dict: - """Validate Illusion (from run_closed_loop_illusion.py).""" - from SR_analysis.utils.cfd_interface import scale_action as _sa - from SR_analysis.utils.g_operator import apply_G_raw +def resolve_output_root(value: str | os.PathLike[str] | None) -> Path: + if value is None: + return REPO_ROOT / "src" / "SR_analysis" / "results" / "runs" + path = Path(value).expanduser() + return path.resolve() if path.is_absolute() else (REPO_ROOT / path).resolve() - cfg = get_scene(scene_name) - u0, nu, mu = cfg["u0"], cfg["nu"], cfg["mu"] - si, action_scale, action_bias = cfg["sample_interval"], cfg["action_scale"], np.array(cfg["action_bias"]) - n_obj_total = cfg["n_objects_env"] - conv_len = cfg.get("conv_len", 36) - if n_steps <= 0: - n_steps = auto_steps(si) + +def validate_run_id(run_id: str) -> str: + if not run_id or run_id in {".", ".."} or Path(run_id).name != run_id: + raise ValueError("--run-id must be one non-empty path component") + return run_id + + +def _load_json(path: Path) -> Any: + if not path.is_file(): + raise FileNotFoundError(f"Required frozen artifact not found: {path}") + return json.loads(path.read_text(encoding="utf-8")) + + +def _hash_optional(path: Path | None) -> str | None: + return hash_file(path) if path is not None and path.is_file() else None + + +@dataclass(frozen=True) +class FormulaPair: + front: dict[str, Any] + rear: dict[str, Any] + front_path: Path + rear_path: Path + pair_hash: str + compatibility: dict[str, Any] + lower: dict[str, Any] | None = None + lower_path: Path | None = None + deployment_semantics: str = "mapped_shared" + + +def _validate_formula_role(formula: Mapping[str, Any], expected: str) -> dict[str, Any]: + legacy = bool(formula.get("legacy")) + role = formula.get("role") + anchor = formula.get("anchor") + parity = formula.get("parity", formula.get("g_parity")) + channel = formula.get("channel") + notes: dict[str, Any] = {"legacy": legacy, "channel": channel} + if expected == "front": + if legacy and channel == "front": + notes["legacy_role_mapping"] = "channel=front -> role=front_odd" + elif role == "front_odd": + notes["canonical_role"] = "front_odd" + elif role == "front" and parity == "odd": + notes["compatibility_role_mapping"] = "role=front, parity=odd -> front_odd" + else: + raise ValueError("front formula requires canonical role='front_odd'") + else: + if legacy and channel == "top": + notes["legacy_role_mapping"] = "channel=top -> role=rear_shared, anchor=upper" + elif role != "rear_shared" or anchor != "upper": + raise ValueError("rear formula requires role='rear_shared' and anchor='upper'") + return notes + + +def load_formula_pair( + front_path: str | os.PathLike[str], + rear_path: str | os.PathLike[str], + lower_path: str | os.PathLike[str] | None = None, +) -> FormulaPair: + front_file = Path(front_path).expanduser().resolve() + rear_file = Path(rear_path).expanduser().resolve() + lower_file = None if lower_path is None else Path(lower_path).expanduser().resolve() + front = load_formula(front_file) + rear = load_formula(rear_file) + lower = None if lower_file is None else load_formula(lower_file) + semantics = "three_head_independent" if lower is not None else str( + front.get("g_metadata", {}).get("deployment_semantics", "mapped_shared") + ) + compatibility = { + "deployment_semantics": semantics, + "policy_mapping": ( + "exact_front_odd_projection_and_rear_g_mapping" + if lower is None + else "direct_three_head_evaluation" + ), + } + if lower is None: + compatibility.update({ + "front": _validate_formula_role(front, "front"), + "rear": _validate_formula_role(rear, "rear"), + }) + if bool(front.get("legacy")) or bool(rear.get("legacy")): + compatibility["historical_formula_compatibility"] = ( + "legacy formula schema loaded; mapped_shared deployment still applies " + "the exact current symmetry projection" + ) + else: + expected_roles = ("front_independent", "upper_independent", "lower_independent") + for name, formula, expected_role in zip(("front", "upper", "lower"), (front, rear, lower), expected_roles): + if formula.get("role") != expected_role: + raise ValueError(f"{name} formula requires role={expected_role!r}") + compatibility[name] = {"canonical_role": expected_role} + for formula in (front, rear) if lower is None else (front, rear, lower): + probe = {name: np.array([0.0]) for name in formula["feature_names"]} + value = evaluate_formula(formula, probe, expression_kind="deployment") + if not np.all(np.isfinite(value)): + raise ValueError("formula deployment expression is non-finite at the zero probe") + hashes = {"front": front["source_hash"], "rear": rear["source_hash"]} + if lower is not None: + hashes["lower"] = lower["source_hash"] + return FormulaPair( + front, rear, front_file, rear_file, hash_json(hashes), compatibility, + lower=lower, lower_path=lower_file, deployment_semantics=semantics, + ) + + +@dataclass(frozen=True) +class ValidationPlan: + scene: str + cfg: dict[str, Any] + mode: str + n_steps: int + run_id: str + validation_dir: Path + telemetry_dir: Path + stem: str + validation_path: Path + telemetry_path: Path + formula_pair: FormulaPair | None + model_path: Path | None + norm: dict[str, Any] | None + norm_path: Path | None + harmonics: Any | None + harmonics_path: Path | None + + +def _artifact_stem(scene: str, mode: str, formula_hash: str, sample_interval: int) -> str: + safe_scene = scene.replace(os.sep, "_").replace(".", "p") + return f"{safe_scene}__{mode}__f-{formula_hash[:12]}__si-{sample_interval}" + + +def prepare_plan( + *, + scene: str, + mode: str, + n_steps: int, + run_id: str, + output_root: Path, + formula_pair: FormulaPair | None, +) -> ValidationPlan: + cfg = get_scene(scene) + scene_id = cfg["scene_id"] + if scene_id == "vortex": + raise NotImplementedError("Vortex is not supported in round1; it is not a Karman substitute") + if scene_id not in {"karman", "illusion", "steady"}: + raise NotImplementedError(f"scene_id={scene_id!r} is not supported") + if tuple(cfg.get("action_layout", ())) != ACTION_ORDER: + raise ValueError(f"scene action_layout must be native {ACTION_ORDER}") + if mode == "pysr" and formula_pair is None: + raise ValueError("pysr mode requires both front and rear formulas") + + model_path = None + norm = None + norm_path = None + if mode == "ppo": + resolved = model_path_for_scene(scene) + if resolved is None: + raise FileNotFoundError(f"No PPO model found for scene {scene}") + model_path = Path(resolved).resolve() + norm, norm_path = load_existing_norm(scene, cfg) + elif scene_id == "illusion": + candidate_norm = REPO_ROOT / "src" / "SR_analysis" / "data" / "illusion" / scene / "norm.json" + if candidate_norm.is_file(): + norm, norm_path = load_existing_norm(scene, cfg) + elif cfg.get("source") != "generalization": + raise FileNotFoundError(f"Frozen normalization not found: {candidate_norm}") + + harmonics = None + harmonics_path = None + if scene_id == "illusion": + harmonics_path = REPO_ROOT / "src" / "SR_analysis" / "data" / "illusion" / scene / "target_harmonics.json" + harmonics = _load_json(harmonics_path) + + formula_hash = formula_pair.pair_hash if formula_pair is not None else ("ppo" if mode == "ppo" else "none") + validation_dir = output_root / validate_run_id(run_id) / "validations" + telemetry_dir = output_root / validate_run_id(run_id) / "telemetry" + stem = _artifact_stem(scene, mode, formula_hash, int(cfg["sample_interval"])) + validation_path = validation_dir / f"{stem}.json" + telemetry_path = telemetry_dir / f"{stem}.npz" + for path in (validation_path, telemetry_path): + if path.exists(): + raise FileExistsError(f"Refusing to overwrite existing artifact: {path}") + return ValidationPlan( + scene, cfg, mode, n_steps, run_id, validation_dir, telemetry_dir, stem, + validation_path, telemetry_path, formula_pair, model_path, norm, norm_path, + harmonics, harmonics_path, + ) + + +class RolloutEnvironment(Protocol): + current_raw: np.ndarray + target_sensors: np.ndarray + + def step(self, omega_native: np.ndarray) -> np.ndarray: ... + def close(self) -> None: ... + + +class Policy(Protocol): + def action(self, raw: np.ndarray, step: int) -> tuple[np.ndarray, np.ndarray | None, int | None]: ... + def observe(self, omega_native: np.ndarray) -> None: ... + + +class UncontrolledPolicy: + def action(self, raw: np.ndarray, step: int) -> tuple[np.ndarray, None, None]: + return np.zeros(3, dtype=np.float64), None, None + + def observe(self, omega_native: np.ndarray) -> None: + return None + + +class ConstantRotationPolicy: + def __init__(self, alpha_native: Sequence[float], u0: float): + self.omega_native = np.asarray(alpha_native, dtype=np.float64).reshape(3) * float(u0) + + def action(self, raw: np.ndarray, step: int) -> tuple[np.ndarray, None, None]: + return self.omega_native.copy(), None, None + + def observe(self, omega_native: np.ndarray) -> None: + return None + + +class PPOPolicy: + def __init__(self, model: Any, cfg: Mapping[str, Any], norm: Mapping[str, Any], harmonics: Any | None): + self.model = model + self.cfg = cfg + self.norm = norm + self.harmonics = harmonics + + def action(self, raw: np.ndarray, step: int) -> tuple[np.ndarray, np.ndarray | None, int | None]: + target_force = None + phase = None + if self.cfg["scene_id"] == "illusion": + phase = target_phase_index(step) + target_force = gen_target_states_at(phase, self.harmonics)[:2] + observation = illusion_observation(raw, self.norm, target_force) + else: + forces = raw[6:12] / float(self.norm["force_norm_fact"]) + sensors = (raw[:6] - np.asarray(self.norm["sens_deviation"])) / np.asarray(self.norm["sens_norm_fact"]) + observation = np.clip(np.hstack((forces, sensors)), -1, 1).astype(np.float32) + normalized, _ = self.model.predict(observation, deterministic=True) + normalized = np.asarray(normalized, dtype=np.float64).reshape(3) + alpha = normalized * float(self.cfg["action_scale"]) + np.asarray(self.cfg["action_bias"], dtype=np.float64) + return alpha * float(self.cfg["u0"]), target_force, phase + + def observe(self, omega_native: np.ndarray) -> None: + return None + + +class SymbolicPolicy: + def __init__(self, pair: FormulaPair, cfg: Mapping[str, Any], harmonics: Any | None): + self.pair = pair + self.cfg = cfg + self.harmonics = harmonics + self.dt_c = float(cfg["sample_interval"]) * float(cfg["u0"]) / 20.0 + common = dict( + mu=float(cfg["mu"]), dt_c=self.dt_c, u0=float(cfg["u0"]), d=20.0, + action_mode="physical", include_mu=True, include_cos_sin=True, + require_target=cfg["scene_id"] == "illusion", + ) + self.builder = StatefulFeatureBuilder(**common) + self.g_builder = StatefulFeatureBuilder(**common) + initial_alpha = np.asarray(cfg["policy_init_action"], dtype=np.float64) + initial_omega = initial_alpha * float(cfg["u0"]) + # The first evaluated state is the current post-bias FIFO observation; + # seed both action lags with the command that produced that FIFO. + for _ in range(2): + self.builder.observe_action(initial_omega) + self.g_builder.observe_action(apply_G_alpha(initial_omega)) + + @staticmethod + def _evaluate(formula: Mapping[str, Any], features: Mapping[str, Any]) -> float: + value = np.asarray(evaluate_formula(formula, features, expression_kind="deployment"), dtype=float) + if value.size != 1: + raise ValueError("controller formula must produce one scalar") + scalar = float(value.reshape(-1)[0]) + if not np.isfinite(scalar): + raise FloatingPointError("controller formula produced a non-finite action") + return scalar + + def action(self, raw: np.ndarray, step: int) -> tuple[np.ndarray, np.ndarray | None, int | None]: + phase = target_phase_index(step) if self.harmonics is not None else None + target_force = None if phase is None else gen_target_states_at(phase, self.harmonics)[:2] + features, _ = self.builder.step(raw[:6], raw[6:12], target_force=target_force) + g_raw = apply_G_raw12(raw) + g_target = None if target_force is None else apply_G_target_force(target_force) + g_features, _ = self.g_builder.step(g_raw[:6], g_raw[6:12], target_force=g_target) + if self.pair.deployment_semantics == "three_head_independent" and self.pair.lower is not None: + front = self._evaluate(self.pair.front, features) + upper = self._evaluate(self.pair.rear, features) + lower = self._evaluate(self.pair.lower, features) + else: + front = 0.5 * ( + self._evaluate(self.pair.front, features) + - self._evaluate(self.pair.front, g_features) + ) + upper = self._evaluate(self.pair.rear, features) + lower = -self._evaluate(self.pair.rear, g_features) + alpha_native = np.asarray((front, upper, lower), dtype=np.float64) + return alpha_native * float(self.cfg["u0"]), target_force, phase + + def observe(self, omega_native: np.ndarray) -> None: + self.builder.observe_action(omega_native) + self.g_builder.observe_action(apply_G_alpha(omega_native)) + + +def build_policy(plan: ValidationPlan, *, model_loader: Callable[..., Any] | None = None) -> Policy: + if plan.mode == "uncontrolled": + return UncontrolledPolicy() + if plan.mode == "constant": + return ConstantRotationPolicy(plan.cfg["constant_alpha"], plan.cfg["u0"]) + if plan.mode == "pysr": + assert plan.formula_pair is not None + return SymbolicPolicy(plan.formula_pair, plan.cfg, plan.harmonics) + if model_loader is None: + from SR_analysis.utils.cfd_interface import load_ppo_model + model_loader = load_ppo_model + assert plan.model_path is not None and plan.norm is not None + model = model_loader( + str(plan.model_path), + device=str(plan.cfg.get("model_device", "cpu")), + s_dim=int(plan.cfg["s_dim"]), + ) + return PPOPolicy(model, plan.cfg, plan.norm, plan.harmonics) + + +class _LegacyEnvironment: + def __init__(self, ff: Any, cfg: Mapping[str, Any], current_raw: np.ndarray, target_sensors: np.ndarray): + self.ff = ff + self.cfg = cfg + self.current_raw = np.asarray(current_raw, dtype=np.float64) + self.target_sensors = np.asarray(target_sensors, dtype=np.float64) + + def step(self, omega_native: np.ndarray) -> np.ndarray: + command = np.zeros(int(self.cfg["n_objects_env"]), dtype=DATA_TYPE) + command[-3:] = np.asarray(omega_native, dtype=DATA_TYPE) + self.ff.context.push() + self.ff.run(int(self.cfg["sample_interval"]), command) + self.ff.context.pop() + self.current_raw = self.ff.obs.copy()[slice(*self.cfg["obs_slice"])].astype(np.float64) + return self.current_raw.copy() + + def close(self) -> None: + del self.ff + + +def _runtime_cfd() -> tuple[Any, Any, Any, Any]: + from LegacyCelerisLab import FlowField + from SR_analysis.utils.cfd_interface import add_pinball, build_karman_cloak_env, load_legacy_configs + return FlowField, add_pinball, build_karman_cloak_env, load_legacy_configs + + +def build_karman_environment(plan: ValidationPlan, device_id: int) -> RolloutEnvironment: + FlowField, add_pinball, build_karman, load_configs = _runtime_cfd() + cfg = plan.cfg + cuda_cfg, field_cfg = load_configs(LEGACY_CFG_DIR) + ff = FlowField(field_cfg._replace(viscosity=float(cfg["nu"])), cuda_cfg, device_id=device_id) + target, _ = build_karman(ff, u0=cfg["u0"], l0=20.0, sample_interval=cfg["sample_interval"], fifo_len=FIFO_LEN, data_type=DATA_TYPE) + norm = add_pinball( + ff, l0=20.0, u0=cfg["u0"], sample_interval=cfg["sample_interval"], fifo_len=FIFO_LEN, + data_type=DATA_TYPE, action_bias=cfg["action_bias"], pinball_front_x=cfg["pinball_front_x"], + pinball_rear_x=cfg["pinball_rear_x"], obs_slice_start=cfg["obs_slice"][0], obs_slice_end=cfg["obs_slice"][1], + ) + current = np.asarray(norm["save_states"])[-1] + return _LegacyEnvironment(ff, cfg, current, target) + + +def build_illusion_environment(plan: ValidationPlan, device_id: int) -> RolloutEnvironment: + FlowField, _, _, load_configs = _runtime_cfd() + cfg = plan.cfg + cuda_cfg, field_cfg = load_configs(LEGACY_CFG_DIR) + field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) l0 = 20.0 - cuda_cfg, field_cfg = load_legacy_configs(LEGACY_CFG_DIR) - field_cfg = field_cfg._replace(viscosity=float(nu)) + # Record the canonical target sensor orbit with the exact Stage 1 phase + # construction. Frozen harmonics remain the sole force/phase source; they + # are never recomputed from this validation rollout. + target_ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) + target_cy = (target_ff.FIELD_SHAPE[1] - 1) / 2 + target_ff.add_cylinder((20.0 * l0, target_cy, 0.0), float(cfg["target_diameter"]) * l0) + for y in (target_cy + 2 * l0, target_cy, target_cy - 2 * l0): + target_ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + target_count = target_ff.obs.size // 2 + target_ff.run(int(4 * target_ff.FIELD_SHAPE[0] / float(cfg["u0"])), np.zeros(target_count, dtype=DATA_TYPE)) + target_rows = [] + for _ in range(FIFO_LEN): + target_ff.run(int(cfg["sample_interval"]), np.zeros(target_count, dtype=DATA_TYPE)) + target_rows.append(target_ff.obs.copy()[2:8]) + target_sensors = np.asarray(target_rows, dtype=np.float64) + del target_ff - # Load target - import glob - data_dir = f"src/SR_analysis/data/illusion/{scene_name}" - target = np.load(os.path.join(data_dir, "target.npz"))["target_states"] - harmonics = json.load(open(os.path.join(data_dir, "target_harmonics.json"))) - - # Build pinball env ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) cy = (ff.FIELD_SHAPE[1] - 1) / 2 - nx = ff.FIELD_SHAPE[0] - sensor_x = cfg["sensor_x"] * l0 - for yo in [cy+2*l0, cy, cy-2*l0]: - ff.add_sensor((sensor_x, yo, 0.0), 5.0) - pf_x, pr_x = cfg["pinball_front_x"]*l0, cfg["pinball_rear_x"]*l0 - py_span = cfg.get("pinball_y_span", 0.75*l0) - ff.add_cylinder((pf_x, cy, 0.0), 10.0) - ff.add_cylinder((pr_x, cy+py_span, 0.0), 10.0) - ff.add_cylinder((pr_x, cy-py_span, 0.0), 10.0) + for y in (cy + 2 * l0, cy, cy - 2 * l0): + ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + ff.add_cylinder((float(cfg["pinball_front_x"]) * l0, cy, 0.0), 10.0) + span = float(cfg.get("pinball_y_span", 0.75 * l0)) + ff.add_cylinder((float(cfg["pinball_rear_x"]) * l0, cy + span, 0.0), 10.0) + ff.add_cylinder((float(cfg["pinball_rear_x"]) * l0, cy - span, 0.0), 10.0) n_obj = ff.obs.size // 2 - warmup = int(4*nx/u0) - ff.run(warmup, np.zeros(n_obj, dtype=DATA_TYPE)) - ff.get_ddf(); ff.save_ddf() - - # Norm — collect zero-action FIFO and compute normalisation - fifo_norm = deque(maxlen=FIFO_LEN) + ff.run(int(4 * ff.FIELD_SHAPE[0] / float(cfg["u0"])), np.zeros(n_obj, dtype=DATA_TYPE)) + ff.get_ddf(); ff.save_ddf(); ff.apply_ddf() + command = np.zeros(n_obj, dtype=DATA_TYPE) + command[-3:] = np.asarray(cfg["policy_init_action"], dtype=DATA_TYPE) * float(cfg["u0"]) + current = None for _ in range(FIFO_LEN): - ff.run(si, np.zeros(n_obj, dtype=DATA_TYPE)) - fifo_norm.append(ff.obs.copy()[0:12]) - tsa = np.array(fifo_norm, dtype=np.float32) - force_norm_fact = 6.0 * float(np.max(np.abs(tsa[:, 6:12]))) - sens_deviation = np.mean(tsa[:, 0:6], axis=0).astype(np.float32) - sens_norm_fact = np.zeros(6, dtype=np.float32) - for i in range(6): - sens_norm_fact[i] = 5.0 * float(np.max(np.abs(tsa[:, i] - sens_deviation[i]))) + ff.run(int(cfg["sample_interval"]), command) + current = ff.obs.copy()[slice(*cfg["obs_slice"])] + assert current is not None + return _LegacyEnvironment(ff, cfg, current, target_sensors) - # Bias FIFO - ff.apply_ddf() - fifo = deque(maxlen=FIFO_LEN) - fifo_bias = np.array([0.0, -u0, u0]) - ba = np.zeros(n_obj, dtype=DATA_TYPE); ba[-3:] = fifo_bias + +def build_steady_environment(plan: ValidationPlan, device_id: int) -> RolloutEnvironment: + FlowField, add_pinball, _, load_configs = _runtime_cfd() + cfg = plan.cfg + cuda_cfg, field_cfg = load_configs(LEGACY_CFG_DIR) + field_cfg = field_cfg._replace(viscosity=float(cfg["nu"])) + l0 = 20.0 + + target_ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) + target_cy = (target_ff.FIELD_SHAPE[1] - 1) / 2 + for y in (target_cy + 2 * l0, target_cy, target_cy - 2 * l0): + target_ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + target_count = target_ff.obs.size // 2 + target_ff.run(int(4 * target_ff.FIELD_SHAPE[0] / float(cfg["u0"])), np.zeros(target_count, dtype=DATA_TYPE)) + target_rows = [] for _ in range(FIFO_LEN): - ff.run(si, ba) - fifo.append(ff.obs.copy()[0:12]) + target_ff.run(int(cfg["sample_interval"]), np.zeros(target_count, dtype=DATA_TYPE)) + target_rows.append(target_ff.obs.copy()[:6]) + target_sensors = np.asarray(target_rows, dtype=np.float64) + del target_ff - # Precompile formula evaluators for pysr mode - if mode == "pysr": - import sympy - fj = json.load(open(formula_front)) - tj = json.load(open(formula_top)) - # Front: no-bias, uses feature_names as-is - _front_keys = [k for k in fj["feature_names"] if k != "bias"] - _x_sym = sympy.symbols(_front_keys) - _front_expr = sympy.sympify(fj["best_sympy"]) - _front_fn = sympy.lambdify(_x_sym, _front_expr, "numpy") - # Top: formula was fitted WITH bias in feature_names, - # so sympy must include "bias" as a symbol. When building features, - # we pass feat_keys without "bias" + add_bias=True → output matches. - _top_keys_full = tj["feature_names"] # e.g. ["bias", "Cd_err", ...] - _top_keys_no_bias = [k for k in _top_keys_full if k != "bias"] - _x_t = sympy.symbols(_top_keys_full) - _top_expr = sympy.sympify(tj["best_sympy"]) - _top_fn = sympy.lambdify(_x_t, _top_expr, "numpy") + ff = FlowField(field_cfg, cuda_cfg, device_id=device_id) + cy = (ff.FIELD_SHAPE[1] - 1) / 2 + for y in (cy + 2 * l0, cy, cy - 2 * l0): + ff.add_sensor((float(cfg["sensor_x"]) * l0, y, 0.0), 5.0) + initial_alpha = np.asarray(cfg.get("constant_alpha", cfg["policy_init_action"]), dtype=np.float64) + norm = add_pinball( + ff, l0=l0, u0=cfg["u0"], sample_interval=cfg["sample_interval"], fifo_len=FIFO_LEN, + data_type=DATA_TYPE, action_bias=tuple(initial_alpha), pinball_front_x=cfg["pinball_front_x"], + pinball_rear_x=cfg["pinball_rear_x"], obs_slice_start=cfg["obs_slice"][0], + obs_slice_end=cfg["obs_slice"][1], n_objects_total=cfg["n_objects_env"], + ) + current = np.asarray(norm["save_states"])[-1] + return _LegacyEnvironment(ff, cfg, current, target_sensors) - import warnings - warnings.filterwarnings("ignore", category=RuntimeWarning) - else: - _front_fn = _top_fn = None - _front_keys = _top_keys_no_bias = _top_keys_full = [] - # Run - sens_list, act_list = [], [] - a_prev = a_prev2 = fifo_bias.copy() +def build_environment(plan: ValidationPlan, device_id: int) -> RolloutEnvironment: + if plan.cfg["scene_id"] == "karman": + return build_karman_environment(plan, device_id) + if plan.cfg["scene_id"] == "steady": + return build_steady_environment(plan, device_id) + return build_illusion_environment(plan, device_id) - for step in range(n_steps): - if mode == "pysr": - osl = ff.obs.copy()[0:12] - tf_step = gen_target_states_at(step, harmonics) - target_f = np.array([tf_step[0], tf_step[1]]) - # Front: no-bias, evaluate feature vector + formula - fv_f = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=False, - feat_keys=_front_keys, tf=target_f) - alpha_f = float(_front_fn(*fv_f)) +def _finite(name: str, values: np.ndarray) -> None: + if not np.all(np.isfinite(values)): + raise FloatingPointError(f"{name} contains non-finite values") - # Top: with-bias, shared-head. Formula sympy includes "bias" symbol, - # feature builder adds bias column via add_bias=True. - fv_t = _build_feature_vector(osl, a_prev, a_prev2, mu, u0, add_bias=True, - feat_keys=_top_keys_no_bias, tf=target_f) - alpha_t = float(_top_fn(*fv_t)) - # Bottom via G-mirror - G_obs, G_ap, G_ap2 = apply_G_raw(osl, a_prev, a_prev2) - G_tf = np.array([target_f[0], -target_f[1]]) - fv_b = _build_feature_vector(G_obs, G_ap, G_ap2, mu, u0, add_bias=True, - feat_keys=_top_keys_no_bias, tf=G_tf) - alpha_b = -float(_top_fn(*fv_b)) +class RolloutFailure(RuntimeError): + def __init__(self, message: str, *, step: int, telemetry: Mapping[str, np.ndarray]): + super().__init__(message) + self.step = step + self.telemetry = telemetry - alpha = np.array([alpha_f, alpha_b, alpha_t]) - omega = alpha * u0 # PySR output is already non-dim alpha (ω/U₀ factored out) - elif mode == "ppo": - model_path = f"models/250525/{cfg['model_name']}.zip" - model = load_ppo_model(model_path, device=f"cuda:{device_id}", s_dim=14) - osl = ff.obs.copy()[0:12] - tf_step = gen_target_states_at(step, harmonics) - target_cd_n = tf_step[0] / force_norm_fact - target_cl_n = tf_step[1] / force_norm_fact - # Build observation same way as infer_illusion.py - forces_n = osl[6:12] / force_norm_fact - sens_n = (osl[0:6] - sens_deviation) / sens_norm_fact - obs = np.clip(np.hstack([forces_n, sens_n, target_cd_n, target_cl_n]), -1, 1).astype(np.float32) - act, _ = model.predict(obs, deterministic=True) - act = act.astype(np.float32).flatten() - omega = (act * action_scale + action_bias) * u0 - else: - omega = np.zeros(3) - act_list.append(omega.copy()) - omega_arr = np.zeros(n_obj, dtype=DATA_TYPE); omega_arr[-3:] = omega - ff.context.push(); ff.run(si, omega_arr); ff.context.pop() - a_prev2 = a_prev.copy(); a_prev = omega.copy() - osl = ff.obs.copy()[0:12] - fifo.append(osl.copy()); sens_list.append(osl[0:6]) +def _telemetry_arrays( + environment: RolloutEnvironment, + sensors: list[np.ndarray], + forces: list[np.ndarray], + actions_omega: list[np.ndarray], + actions_alpha: list[np.ndarray], + target_forces: list[np.ndarray], + target_phases: list[int], + termination_reason: str, +) -> dict[str, np.ndarray]: + return { + "sensors": np.asarray(sensors, dtype=np.float64).reshape(-1, 6), + "forces": np.asarray(forces, dtype=np.float64).reshape(-1, 6), + "actions_omega": np.asarray(actions_omega, dtype=np.float64).reshape(-1, 3), + "actions_alpha": np.asarray(actions_alpha, dtype=np.float64).reshape(-1, 3), + "target_forces": np.asarray(target_forces, dtype=np.float64).reshape(-1, 2), + "target_phase": np.asarray(target_phases, dtype=np.int64), + "target_sensors": np.asarray(environment.target_sensors, dtype=np.float64).reshape(-1, 6), + "termination_reason": np.asarray(termination_reason), + } - sim = compute_similarity(target[:, 2:8], np.array(sens_list, dtype=np.float32), conv_len) - result = {"scene": scene_name, "mode": mode, "similarity_full": sim, "n_steps": n_steps} - del ff + +def run_rollout(plan: ValidationPlan, environment: RolloutEnvironment, policy: Policy) -> dict[str, Any]: + sensors: list[np.ndarray] = [] + forces: list[np.ndarray] = [] + actions_omega: list[np.ndarray] = [] + actions_alpha: list[np.ndarray] = [] + target_forces: list[np.ndarray] = [] + target_phases: list[int] = [] + raw = np.asarray(environment.current_raw, dtype=np.float64).reshape(12) + termination_reason = "completed" + for step in range(plan.n_steps): + try: + omega, target_force, phase = policy.action(raw, step) + omega = np.asarray(omega, dtype=np.float64).reshape(3) + _finite("action omega", omega) + next_raw = np.asarray(environment.step(omega), dtype=np.float64).reshape(12) + _finite("raw observation", next_raw) + except Exception as exc: + reason = f"{type(exc).__name__}: {exc}" + partial = _telemetry_arrays( + environment, sensors, forces, actions_omega, actions_alpha, + target_forces, target_phases, reason, + ) + raise RolloutFailure(reason, step=step, telemetry=partial) from exc + raw = next_raw + policy.observe(omega) + sensors.append(raw[:6].copy()) + forces.append(raw[6:].copy()) + actions_omega.append(omega.copy()) + actions_alpha.append(omega / float(plan.cfg["u0"])) + if target_force is not None: + target_forces.append(np.asarray(target_force, dtype=np.float64).reshape(2)) + if phase is not None: + target_phases.append(int(phase)) + arrays = _telemetry_arrays( + environment, sensors, forces, actions_omega, actions_alpha, + target_forces, target_phases, termination_reason, + ) + for name, values in arrays.items(): + if name not in {"termination_reason", "target_phase"}: + _finite(name, values) + return arrays + + +def _legacy_metric(target: np.ndarray, state: np.ndarray, conv_len: int) -> dict[str, Any]: + return legacy_cycle_similarity(target, state, conv_len) + + +def compute_versioned_metrics(target: np.ndarray, sensors: np.ndarray, conv_len: int) -> dict[str, Any]: + """Compute the historical reference-cycle versus final recorded-cycle metric.""" + exact = _legacy_metric(target, np.asarray(sensors, dtype=np.float64), conv_len) + return { + "metric_version": METRIC_VERSION, + "adapter": "SR_analysis.utils.cfd_interface.legacy_dtw_v1_detail_adapter", + "legacy_reference_cycle_vs_last_recorded_cycle": exact, + } + + +def _action_ranges(telemetry: Mapping[str, np.ndarray]) -> dict[str, Any]: + result = {} + for key in ("actions_omega", "actions_alpha"): + values = np.asarray(telemetry[key]) + result[key] = { + "min": values.min(axis=0).tolist(), + "max": values.max(axis=0).tolist(), + "layout": list(ACTION_ORDER), + } return result -def validate_vortex(scene_name, device_id, n_steps, mode, formula_front, formula_top) -> dict: - """Validate Vortex (from run_closed_loop_vortex.py).""" - # For simplicity, delegate to validate_karman with vortex scene config - return validate_karman(scene_name, device_id, n_steps, mode, formula_front, formula_top) +def save_outputs(plan: ValidationPlan, telemetry: Mapping[str, np.ndarray], metrics: Mapping[str, Any]) -> dict[str, Any]: + plan.validation_dir.mkdir(parents=True, exist_ok=True) + plan.telemetry_dir.mkdir(parents=True, exist_ok=True) + for path in (plan.validation_path, plan.telemetry_path): + if path.exists(): + raise FileExistsError(f"Refusing to overwrite existing artifact: {path}") + np.savez_compressed( + plan.telemetry_path, + **telemetry, + schema_version=np.asarray(TELEMETRY_VERSION), + scene=np.asarray(plan.scene), + mode=np.asarray(plan.mode), + sample_interval=np.asarray(plan.cfg["sample_interval"], dtype=np.int64), + ) + formula_hashes = None + formula_validation = None + if plan.formula_pair is not None: + formula_hashes = { + "pair": plan.formula_pair.pair_hash, + "front_source": plan.formula_pair.front["source_hash"], + "rear_source": plan.formula_pair.rear["source_hash"], + "front_deployment_expression": plan.formula_pair.front["deployment_expression_hash"], + "rear_deployment_expression": plan.formula_pair.rear["deployment_expression_hash"], + } + formula_validation = plan.formula_pair.compatibility + record = { + "schema_version": VALIDATION_VERSION, + "run_id": plan.run_id, + "scene": plan.scene, + "scene_id": plan.cfg["scene_id"], + "mode": plan.mode, + "artifact_id": f"{plan.run_id}-{plan.stem}", + "formula_hash": plan.formula_pair.pair_hash if plan.formula_pair is not None else None, + "metric_version": METRIC_VERSION, + "status": "completed", + "termination_reason": str(np.asarray(telemetry["termination_reason"]).item()), + "n_steps": plan.n_steps, + "sample_interval": int(plan.cfg["sample_interval"]), + "si": int(plan.cfg["sample_interval"]), + "dt_c": float(plan.cfg["sample_interval"]) * float(plan.cfg["u0"]) / 20.0, + "alignment": CAUSAL_ALIGNMENT, + "action_layout": list(ACTION_ORDER), + "metrics": _jsonable(metrics), + "action_ranges": _action_ranges(telemetry), + "formula_hashes": formula_hashes, + "formula_validation": formula_validation, + "data_hashes": { + "norm": _hash_optional(plan.norm_path), + "harmonics": _hash_optional(plan.harmonics_path), + "target_sensors": hash_json(np.asarray(telemetry["target_sensors"]).tolist()), + }, + "model": {"path": str(plan.model_path) if plan.model_path else None, "sha256": _hash_optional(plan.model_path)}, + "config": _jsonable(plan.cfg), + "config_hash": hash_json(_jsonable(plan.cfg)), + "environment": {"python": sys.version, "platform": platform.platform(), "numpy": np.__version__}, + "git_sha": _git_sha(), + "telemetry": { + "path": str(plan.telemetry_path), + "sha256": hash_file(plan.telemetry_path), + "telemetry_hash": hash_file(plan.telemetry_path), + }, + "provenance": { + "git_sha": _git_sha(), + "environment": { + "conda_env": os.environ.get("CONDA_DEFAULT_ENV"), + "gpu": _gpu_provenance(plan.cfg.get("device_id")), + }, + "command": " ".join(sys.argv), + "created_at": datetime.now(timezone.utc).isoformat(), + }, + "created_utc": datetime.now(timezone.utc).isoformat(), + } + record["record_hash"] = hash_json(record) + atomic_write_json(plan.validation_path, record) + return record -_VALIDATE_FN = { - "karman": validate_karman, - "illusion": validate_illusion, - "vortex": validate_vortex, -} +def save_failure_outputs( + plan: ValidationPlan, + failure: RolloutFailure, +) -> dict[str, Any]: + plan.validation_dir.mkdir(parents=True, exist_ok=True) + plan.telemetry_dir.mkdir(parents=True, exist_ok=True) + for path in (plan.validation_path, plan.telemetry_path): + if path.exists(): + raise FileExistsError(f"Refusing to overwrite existing artifact: {path}") + np.savez_compressed( + plan.telemetry_path, + **failure.telemetry, + schema_version=np.asarray(TELEMETRY_VERSION), + scene=np.asarray(plan.scene), + mode=np.asarray(plan.mode), + sample_interval=np.asarray(plan.cfg["sample_interval"], dtype=np.int64), + ) + formula_hashes = None + if plan.formula_pair is not None: + formula_hashes = { + "pair": plan.formula_pair.pair_hash, + "front_source": plan.formula_pair.front["source_hash"], + "rear_source": plan.formula_pair.rear["source_hash"], + "front_deployment_expression": plan.formula_pair.front["deployment_expression_hash"], + "rear_deployment_expression": plan.formula_pair.rear["deployment_expression_hash"], + } + created_at = datetime.now(timezone.utc).isoformat() + record = { + "schema_version": VALIDATION_VERSION, + "run_id": plan.run_id, + "scene": plan.scene, + "scene_id": plan.cfg["scene_id"], + "mode": plan.mode, + "artifact_id": f"{plan.run_id}-{plan.stem}", + "formula_hash": plan.formula_pair.pair_hash if plan.formula_pair is not None else None, + "metric_version": METRIC_VERSION, + "status": "failed", + "termination_reason": str(failure), + "exception_type": type(failure.__cause__).__name__ if failure.__cause__ else type(failure).__name__, + "failed_step": int(failure.step), + "completed_steps": int(np.asarray(failure.telemetry["sensors"]).shape[0]), + "n_steps": plan.n_steps, + "sample_interval": int(plan.cfg["sample_interval"]), + "si": int(plan.cfg["sample_interval"]), + "dt_c": float(plan.cfg["sample_interval"]) * float(plan.cfg["u0"]) / 20.0, + "alignment": CAUSAL_ALIGNMENT, + "action_layout": list(ACTION_ORDER), + "metrics": None, + "action_ranges": None, + "formula_hashes": formula_hashes, + "formula_validation": plan.formula_pair.compatibility if plan.formula_pair is not None else None, + "config": _jsonable(plan.cfg), + "config_hash": hash_json(_jsonable(plan.cfg)), + "git_sha": _git_sha(), + "telemetry": { + "path": str(plan.telemetry_path), + "sha256": hash_file(plan.telemetry_path), + "telemetry_hash": hash_file(plan.telemetry_path), + }, + "provenance": { + "git_sha": _git_sha(), + "environment": { + "conda_env": os.environ.get("CONDA_DEFAULT_ENV"), + "gpu": _gpu_provenance(plan.cfg.get("device_id")), + }, + "command": " ".join(sys.argv), + "created_at": created_at, + }, + "created_utc": created_at, + } + record["record_hash"] = hash_json(record) + atomic_write_json(plan.validation_path, record) + return record -def main(): - ap = argparse.ArgumentParser(description="Stage 3: Unified CFD closed-loop validation") - ap.add_argument("--scene", type=str, default=None) - ap.add_argument("--group", type=str, default=None) - ap.add_argument("--device", type=int, default=2) - ap.add_argument("--steps", type=int, default=0, help="0=auto") - ap.add_argument("--mode", type=str, default="pysr", choices=["pysr", "ppo", "uncontrolled"]) - ap.add_argument("--formula-front", type=str, default=None) - ap.add_argument("--formula-top", type=str, default=None) - args = ap.parse_args() - - if not args.scene and not args.group: - ap.error("Need --scene or --group") - - if args.group and args.group in VALIDATE_GROUPS: - scene_names = VALIDATE_GROUPS[args.group]() - elif args.group: - scene_names = [s.strip() for s in args.group.split(",")] - else: - scene_names = [args.scene] - - if args.mode == "pysr" and (not args.formula_front or not args.formula_top): - ap.error("--mode pysr requires --formula-front and --formula-top") - - os.makedirs(OUT_DIR, exist_ok=True) - - for sn in scene_names: - cfg = get_scene(sn) - scene_id = cfg["scene_id"] - fn = _VALIDATE_FN.get(scene_id) - if fn is None: - print(f" SKIP {sn}: unknown scene_id={scene_id}") - continue - print(f"\n--- {sn} (mode={args.mode}) ---") +def execute_plan( + plan: ValidationPlan, + device_id: int, + *, + environment_factory: Callable[[ValidationPlan, int], RolloutEnvironment] = build_environment, + model_loader: Callable[..., Any] | None = None, +) -> dict[str, Any]: + cfg = dict(plan.cfg) + cfg["device_id"] = device_id + runtime_plan = ValidationPlan(**{**plan.__dict__, "cfg": cfg}) + environment = environment_factory(runtime_plan, device_id) + try: + policy = build_policy(runtime_plan, model_loader=model_loader) try: - result = fn(sn, args.device, args.steps, args.mode, args.formula_front, args.formula_top) - json.dump(result, open(os.path.join(OUT_DIR, f"{sn}.json"), "w"), indent=2) - print(f" similarity={result.get('similarity', result.get('similarity_full', 'N/A')):.4f}") - except Exception as e: - print(f" ERROR: {e}") - import traceback; traceback.print_exc() + telemetry = run_rollout(runtime_plan, environment, policy) + except RolloutFailure as failure: + save_failure_outputs(runtime_plan, failure) + raise + metrics = compute_versioned_metrics(environment.target_sensors, telemetry["sensors"], int(cfg["conv_len"])) + return save_outputs(runtime_plan, telemetry, metrics) + finally: + environment.close() - print("\nDone.") + +def _scene_names(args: argparse.Namespace) -> list[str]: + if args.scene: + return [args.scene] + if args.group in GROUPS: + return list(GROUPS[args.group]()) + return [value.strip() for value in args.group.split(",") if value.strip()] + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description="Stage 3 legacy CFD validation (round1)") + selection = parser.add_mutually_exclusive_group(required=True) + selection.add_argument("--scene") + selection.add_argument("--group") + parser.add_argument("--mode", choices=("pysr", "ppo", "uncontrolled", "constant"), default="pysr") + parser.add_argument("--constant-alpha", nargs=3, type=float, metavar=("FRONT", "UPPER", "LOWER")) + parser.add_argument("--formula-front") + parser.add_argument("--formula-rear", "--formula-top", dest="formula_rear") + parser.add_argument("--formula-lower") + parser.add_argument("--device", type=int, default=2, help="Legacy CFD GPU device") + parser.add_argument( + "--model-device", default="cpu", + help="PyTorch PPO device; CPU avoids conflicts with the active PyCUDA context", + ) + parser.add_argument("--steps", type=int, default=200) + parser.add_argument("--run-id", default=None) + parser.add_argument("--output-root", default=None) + parser.add_argument("--dry-run", action="store_true") + parser.add_argument("--prepare-only", action="store_true") + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + parser = build_parser() + args = parser.parse_args(argv) + if args.steps <= 0: + parser.error("--steps must be positive") + if args.mode == "pysr" and (not args.formula_front or not args.formula_rear): + parser.error("--mode pysr requires --formula-front and --formula-rear/--formula-top") + if args.mode == "constant" and args.constant_alpha is None: + parser.error("--mode constant requires --constant-alpha FRONT UPPER LOWER") + run_id = args.run_id or default_run_id() + output_root = resolve_output_root(args.output_root) + failures = 0 + try: + pair = load_formula_pair(args.formula_front, args.formula_rear, args.formula_lower) if args.mode == "pysr" else None + plans = [ + prepare_plan( + scene=scene, mode=args.mode, n_steps=args.steps, run_id=run_id, + output_root=output_root, formula_pair=pair, + ) + for scene in _scene_names(args) + ] + except Exception as exc: + print(f"ERROR: {exc}", file=sys.stderr) + return 2 + + if args.dry_run or args.prepare_only: + for plan in plans: + print( + f"{plan.scene}: scene_id={plan.cfg['scene_id']} mode={plan.mode} " + f"SI={plan.cfg['sample_interval']} validation={plan.validation_path} telemetry={plan.telemetry_path}" + ) + if args.prepare_only: + for plan in plans: + plan.validation_dir.mkdir(parents=True, exist_ok=True) + plan.telemetry_dir.mkdir(parents=True, exist_ok=True) + return 0 + + plans = [ + ValidationPlan(**{**plan.__dict__, "cfg": {**plan.cfg, "model_device": args.model_device}}) + for plan in plans + ] + if args.mode == "constant": + plans = [ + ValidationPlan(**{**plan.__dict__, "cfg": {**plan.cfg, "constant_alpha": tuple(args.constant_alpha)}}) + for plan in plans + ] + for plan in plans: + try: + record = execute_plan(plan, args.device) + metric = record["metrics"]["legacy_reference_cycle_vs_last_recorded_cycle"] + print(f"{plan.scene}: legacy_reference_cycle_vs_last_recorded_cycle={metric['similarity']:.6f}") + except Exception as exc: + failures += 1 + print(f"ERROR [{plan.scene}]: {exc}", file=sys.stderr) + traceback.print_exc() + return 1 if failures else 0 if __name__ == "__main__": - main() + raise SystemExit(main()) diff --git a/src/SR_analysis/tests/test_audit_round1.py b/src/SR_analysis/tests/test_audit_round1.py new file mode 100644 index 0000000..f201d6e --- /dev/null +++ b/src/SR_analysis/tests/test_audit_round1.py @@ -0,0 +1,185 @@ +import json +from pathlib import Path + +import numpy as np + +from SR_analysis.tools import audit_round1 +from SR_analysis.tools.audit_round1 import audit_run +from SR_analysis.utils.provenance import hash_file, hash_json, sha256_text + + +def _write_json(path: Path, value: dict) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + path.write_text(json.dumps(value), encoding="utf-8") + + +def _fixture(root: Path, *, bad_expression_hash: bool = False) -> None: + data = root / "data/runs/data-one/illusion/scene" + results = root / "results/runs/result-one" + data.mkdir(parents=True) + results.mkdir(parents=True) + np.savez( + data / "controlled.npz", + schema_version=np.array("sr-stage1-npz-v2"), + sensors_post=np.zeros((3, 6)), + forces_post=np.zeros((3, 6)), + actions_norm=np.zeros((3, 3)), + dt_c=np.array(0.2), + ) + telemetry = results / "telemetry.npz" + np.savez(telemetry, schema_version=np.array("sr-telemetry-v1"), values=np.zeros(3)) + expression = "2*x" + formula = { + "schema_version": "1.0", + "artifact_id": "formula-1", + "run_id": "result-one", + "feature_names": ["x"], + "fitted_expression": expression, + "deployment_expression": expression, + "fitted_expression_hash": sha256_text(expression), + "deployment_expression_hash": "0" * 64 if bad_expression_hash else sha256_text(expression), + "alignment_metadata": {"alignment": "causal_post_state_to_next_action"}, + "dt_c_metadata": {"value": 0.2}, + "g_metadata": {"operator": "identity"}, + "git_sha": "abc", + "environment": {"conda_env": "sr_env"}, + "provenance": { + "fit": { + "mode": "per-scene", + "seed": 0, + "niterations": 1, + "scene_sample_counts": {"scene": 3}, + "diagnostic_metrics": {"r2": 1.0}, + }, + "pysr": {"version": "test"}, + "data": {"dataset_hash": hash_file(data / "controlled.npz")}, + }, + } + formula_path = results / "formula.json" + _write_json(formula_path, formula) + validation = { + "schema_version": "1.0", + "artifact_id": "validation-1", + "formula_hash": hash_file(formula_path), + "metric_version": "legacy_dtw_v1_abs_n_unclipped", + "scene": "scene", + "mode": "pysr", + "n_steps": 3, + "metrics": {"full": {}, "tail": {}, "per_channel": {}, "action_range": {}}, + "telemetry": {"path": "telemetry.npz", "telemetry_hash": hash_file(telemetry)}, + "provenance": {"git_sha": "abc", "environment": "pycuda_3_10 GPU2", "command": "validate", "created_at": "now"}, + } + validation["record_hash"] = hash_json(validation) + _write_json(results / "validation.json", validation) + + +def test_hash_mismatch_is_reported(tmp_path): + root = tmp_path / "SR_analysis" + _fixture(root, bad_expression_hash=True) + + report, _ = audit_run("result-one", "data-one", sr_root=root) + + assert report["status"] == "fail" + assert any(error["code"] == "expression_hash_mismatch" for error in report["errors"]) + assert json.loads((root / "results/runs/result-one/audit_report.json").read_text())["strict_failure"] is True + + +def test_strict_cli_returns_nonzero_for_broken_chain(tmp_path, monkeypatch): + root = tmp_path / "SR_analysis" + _fixture(root, bad_expression_hash=True) + monkeypatch.setattr(audit_round1, "SR_ROOT", root) + + assert audit_round1.main(["--run-id", "result-one", "--data-run-id", "data-one", "--strict"]) == 1 + assert audit_round1.main(["--run-id", "result-one", "--data-run-id", "data-one"]) == 0 + + +def test_failed_validation_is_registered_as_rejected(tmp_path): + root = tmp_path / "SR_analysis" + _fixture(root) + validation_path = root / "results/runs/result-one/validation.json" + validation = json.loads(validation_path.read_text()) + validation["status"] = "failed" + validation["record_hash"] = hash_json({k: v for k, v in validation.items() if k != "record_hash"}) + _write_json(validation_path, validation) + + report, registry = audit_run("result-one", "data-one", sr_root=root) + + assert report["status"] == "pass" + statuses = {item["artifact_id"]: item["status"] for item in registry["artifacts"]} + assert statuses["formula-1"] == "rejected" + assert statuses["validation-1"] == "rejected" + assert registry["status"] == "pass" + assert registry["promotion_eligible"] is False + assert registry["scientifically_eligible"] is False + + +def test_incomplete_validation_rejects_entire_chain(tmp_path): + root = tmp_path / "SR_analysis" + _fixture(root) + validation_path = root / "results/runs/result-one/validation.json" + validation = json.loads(validation_path.read_text()) + validation["status"] = "incomplete" + validation["record_hash"] = hash_json({k: v for k, v in validation.items() if k != "record_hash"}) + _write_json(validation_path, validation) + + report, registry = audit_run("result-one", "data-one", sr_root=root) + + assert report["status"] == "pass" + assert registry["scientifically_eligible"] is False + assert all(item["status"] == "rejected" for item in registry["artifacts"]) + + +def test_run_prefix_does_not_grant_scientific_promotion(tmp_path): + root = tmp_path / "SR_analysis" + _fixture(root) + source = root / "results/runs/result-one" + prefixed = root / "results/runs/round1-legacy-v2-20260716-extra" + source.rename(prefixed) + + report, registry = audit_run( + "round1-legacy-v2-20260716-extra", "data-one", sr_root=root, + ) + + assert report["status"] == "pass" + assert registry["status"] == "pass" + assert registry["promotion_eligible"] is False + assert registry["scientifically_eligible"] is True + + +def test_split_formula_and_validation_runs_are_audited_as_one_chain(tmp_path): + root = tmp_path / "SR_analysis" + _fixture(root) + source = root / "results/runs/result-one/formula.json" + formula_run = root / "results/runs/formula-one" + formula_run.mkdir() + source.rename(formula_run / source.name) + + report, registry = audit_run( + "result-one", "data-one", formula_run_id="formula-one", sr_root=root, + ) + + assert report["status"] == "pass" + assert report["formula_run_id"] == "formula-one" + assert {item["artifact_id"] for item in registry["artifacts"]} == {"formula-1", "validation-1"} + + +def test_candidate_registry_is_generated_without_canonical_mutation(tmp_path): + root = tmp_path / "SR_analysis" + root.mkdir() + canonical = root / "scene_registry.json" + canonical.write_text('{"frozen": true}\n', encoding="utf-8") + before = canonical.read_bytes() + _fixture(root) + + report, registry = audit_run("result-one", "data-one", sr_root=root) + + assert report["status"] == "pass" + assert canonical.read_bytes() == before + assert {item["artifact_id"] for item in registry["artifacts"]} == {"formula-1", "validation-1"} + assert all(set(item) == {"artifact_id", "path", "sha256", "run_id", "status"} for item in registry["artifacts"]) + assert all(item["status"] == "candidate" for item in registry["artifacts"]) + assert registry["status"] == "pass" + assert registry["promotion_eligible"] is False + assert registry["scientifically_eligible"] is True + written = json.loads((root / "results/runs/result-one/candidate_registry.json").read_text()) + assert written == registry diff --git a/src/SR_analysis/tests/test_feature_state_and_contracts.py b/src/SR_analysis/tests/test_feature_state_and_contracts.py new file mode 100644 index 0000000..df34c50 --- /dev/null +++ b/src/SR_analysis/tests/test_feature_state_and_contracts.py @@ -0,0 +1,165 @@ +import numpy as np +import pytest + +from SR_analysis.utils.data_contracts import ( + CAUSAL_ALIGNMENT, + HISTORICAL_ALIGNMENT, + actions_to_alpha, + build_batch_dataset, + contiguous_block_slices, +) +from SR_analysis.utils.feature_builder import ( + AUG_LEVEL_4_KEYS, + ILLUSION_AUG_LEVEL_3_KEYS, + build_feature_matrix, + compute_dimensionless, + compute_features, +) +from SR_analysis.utils.feature_state import StatefulFeatureBuilder + + +def synthetic_trajectory(T=8): + t = np.arange(T, dtype=np.float64) + sensors = np.column_stack([ + 0.01 + 0.001 * t, 0.002 * t, + 0.012 - 0.0002 * t, -0.001 * t, + 0.009 + 0.0004 * t, 0.0005 * t, + ]) + forces = np.column_stack([ + 0.001 + 1e-5 * t, 2e-5 * t, + 0.0007 - 2e-5 * t, -1e-5 * t, + 0.0008 + 3e-5 * t, 1.5e-5 * t, + ]) + actions = np.column_stack([0.2 * t, -0.1 * t, 0.05 * t]) + target = np.column_stack([0.002 + 2e-5 * t, -3e-5 * t]) + return sensors, forces, actions, target + + +def test_batch_and_stateful_features_match_elementwise(): + sensors, forces, alpha, target = synthetic_trajectory() + T = len(sensors) + a1 = np.zeros_like(alpha) + a2 = np.zeros_like(alpha) + a1[1:] = alpha[:-1] + a2[2:] = alpha[:-2] + dim = compute_dimensionless(sensors, forces) + batch = compute_features( + dim, a1, a2, mu=0.02, alpha_mode=True, include_mu=True, + include_cos_sin=True, dt_c=0.3, target_forces=target, + sensors_raw=sensors, forces_raw=forces, + ) + builder = StatefulFeatureBuilder( + mu=0.02, dt_c=0.3, action_mode="alpha", require_target=True, + include_mu=True, include_cos_sin=True, + ) + rows = [] + keys = list(dict.fromkeys(AUG_LEVEL_4_KEYS + ILLUSION_AUG_LEVEL_3_KEYS + [ + "sin_ua", "cos_ua", "target_Cd", "target_Cl", "daF", "daB", "daT", + ])) + for i in range(T): + previous = alpha[i - 1] if i >= 1 else np.zeros(3) + previous2 = alpha[i - 2] if i >= 2 else np.zeros(3) + _, vector = builder.step( + sensors[i], forces[i], previous_action=previous, + previous_action2=previous2, target_force=target[i], feat_keys=keys, + ) + rows.append(vector) + expected = build_feature_matrix(batch, keys, add_bias=False) + np.testing.assert_allclose(np.vstack(rows), expected, rtol=1e-12, atol=1e-12) + + +@pytest.mark.parametrize("sample_interval", [400, 600, 800]) +def test_linear_signal_derivatives_respect_dt_c(sample_interval): + dt_c = sample_interval / 2000.0 + T = 6 + t_c = np.arange(T) * dt_c + sensors = np.zeros((T, 6)) + sensors[:, 0] = 0.01 + 0.01 * 3.0 * t_c + sensors[:, 2] = 0.01 + 0.01 * 1.0 * t_c + sensors[:, 4] = 0.01 - 0.01 * 1.0 * t_c + forces = np.zeros((T, 6)) + actions = np.zeros((T, 3)) + dim = compute_dimensionless(sensors, forces) + features = compute_features( + dim, actions, actions, 0.02, alpha_mode=True, include_mu=False, + include_cos_sin=False, dt_c=dt_c, sensors_raw=sensors, forces_raw=forces, + ) + np.testing.assert_allclose(features["du_m_dt"][1:], 1.0) + np.testing.assert_allclose(features["du_a_dt"][1:], 2.0) + assert features["du_m_dt"][0] == pytest.approx(0.0) + assert features["du_a_dt"][0] == pytest.approx(0.0) + + +def test_alignment_fixture_has_explicit_state_and_target_indices(): + sensors, forces, alpha, _ = synthetic_trajectory(T=6) + keys = ["aF_lag1", "daF"] + historical = build_batch_dataset( + sensors, forces, alpha, keys, mu=0.02, dt_c=0.4, + alignment=HISTORICAL_ALIGNMENT, action_mode="alpha", warmup=2, + ) + causal = build_batch_dataset( + sensors, forces, alpha, keys, mu=0.02, dt_c=0.4, + alignment=CAUSAL_ALIGNMENT, action_mode="alpha", warmup=1, + ) + np.testing.assert_array_equal(historical.metadata["state_indices"], [2, 3, 4, 5]) + np.testing.assert_array_equal(historical.metadata["target_indices"], [2, 3, 4, 5]) + np.testing.assert_allclose(historical.X[:, 0], alpha[1:-1, 0]) + np.testing.assert_allclose(historical.Y, alpha[2:]) + np.testing.assert_array_equal(causal.metadata["state_indices"], [1, 2, 3, 4]) + np.testing.assert_array_equal(causal.metadata["target_indices"], [2, 3, 4, 5]) + np.testing.assert_allclose(causal.X[:, 0], alpha[1:-1, 0]) + np.testing.assert_allclose(causal.Y, alpha[2:]) + + +def test_missing_target_and_feature_fail_strictly(): + sensors, forces, alpha, _ = synthetic_trajectory(T=4) + with pytest.raises(ValueError, match="require target_forces"): + build_batch_dataset( + sensors, forces, alpha, ["Cd_err"], mu=0.02, dt_c=0.4, + action_mode="alpha", illusion=True, + ) + with pytest.raises(KeyError, match="missing required feature"): + build_feature_matrix({"u_m": np.ones(3)}, ["u_m", "not_computed"]) + compatible = build_feature_matrix( + {"u_m": np.ones(3)}, ["u_m", "not_computed"], strict=False + ) + np.testing.assert_array_equal(compatible[:, -1], np.zeros(3)) + + +def test_transient_and_steady_segments_are_disjoint(): + rows = 10 + sensors = np.zeros((rows, 6)) + forces = np.zeros((rows, 6)) + actions = np.arange(rows * 3, dtype=float).reshape(rows, 3) + transient = build_batch_dataset( + sensors, forces, actions, ["u_m"], mu=0.02, dt_c=0.4, + action_mode="alpha", warmup=2, sample_segment="transient", transient_count=5, + ) + steady = build_batch_dataset( + sensors, forces, actions, ["u_m"], mu=0.02, dt_c=0.4, + action_mode="alpha", warmup=2, sample_segment="steady", transient_count=5, + ) + np.testing.assert_array_equal(transient.kept_indices, [2, 3, 4]) + np.testing.assert_array_equal(steady.kept_indices, [5, 6, 7, 8, 9]) + + +def test_contiguous_offline_blocks_are_ordered_disjoint_and_complete(): + blocks = contiguous_block_slices(11) + indices = {name: np.arange(11)[block] for name, block in blocks.items()} + np.testing.assert_array_equal(indices["train"], np.arange(6)) + np.testing.assert_array_equal(indices["validation"], np.arange(6, 8)) + np.testing.assert_array_equal(indices["blind"], np.arange(8, 11)) + np.testing.assert_array_equal(np.concatenate(list(indices.values())), np.arange(11)) + + +def test_normalized_action_alpha_conversion(): + actions = np.array([[1.0, 0.0, -1.0], [0.5, -0.5, 0.25]]) + alpha = actions_to_alpha( + actions, action_mode="normalized", u0=0.01, + action_scale=12.0, action_bias=(1.0, -2.0, 3.0), + ) + np.testing.assert_allclose(alpha, actions * 12.0 + [1.0, -2.0, 3.0]) + physical = alpha * 0.01 + np.testing.assert_allclose( + actions_to_alpha(physical, action_mode="physical", u0=0.01), alpha + ) diff --git a/src/SR_analysis/tests/test_formula_provenance.py b/src/SR_analysis/tests/test_formula_provenance.py new file mode 100644 index 0000000..311f3f8 --- /dev/null +++ b/src/SR_analysis/tests/test_formula_provenance.py @@ -0,0 +1,312 @@ +import json +from pathlib import Path + +import numpy as np +import pytest + +from SR_analysis.utils.formula_schema import ( + build_coefficient_scaling_variant, + build_formula_artifact, + build_term_deletion_variant, + build_validation_record, + decompose_additive_terms, + evaluate_formula, + formula_safety_report, + load_formula, + normalize_symbolic_expression, +) +from SR_analysis.utils.provenance import atomic_write_json_below, hash_json, safe_path + + +FORMULA_DIR = Path(__file__).parents[1] / "results" / "formulas_v5" +CANONICAL_FORMULAS = ( + "ill_1L_sc_front.json", + "ill_1L_sc_top.json", + "kar_d075_sc_front.json", + "kar_d075_sc_top.json", +) + + +@pytest.mark.parametrize("filename", CANONICAL_FORMULAS) +def test_load_and_evaluate_canonical_legacy_formulas(filename): + formula = load_formula(FORMULA_DIR / filename) + values = {name: np.array([0.25, -0.5]) for name in formula["feature_names"]} + + result = evaluate_formula(formula, values) + + assert formula["legacy"] is True + assert formula["feature_names"] == formula["feature_keys"] + assert formula["fitted_expression"] == formula["best_sympy"] + assert formula["fit_score"] == formula["best_score"] + assert result.shape == (2,) + assert np.all(np.isfinite(result)) + + +def test_expression_alias_is_supported(): + formula = {"feature_names": ["x"], "expression": "2*x + 1", "best_score": 0.9} + np.testing.assert_allclose(evaluate_formula(formula, {"x": [1.0, 3.0]}), [3.0, 7.0]) + + +def test_formula_static_safety_detects_finite_and_range_failures(): + safe = formula_safety_report( + {"feature_names": ["x"], "expression": "2*x"}, {"x": [-1, 1]}, output_range=[-2, 2], + ) + assert safe["safe"] is True + out_of_range = formula_safety_report( + {"feature_names": ["x"], "expression": "10*x"}, {"x": [-1, 1]}, output_range=[-2, 2], + ) + assert out_of_range["finite"] is True + assert out_of_range["safe"] is False + nonfinite = formula_safety_report( + {"feature_names": ["x"], "expression": "1/x"}, {"x": [-1, 1]}, grid_size=3, + ) + assert nonfinite["finite"] is False + + +def test_missing_coef_never_silently_produces_zero(): + formula = { + "schema_version": "1.0", + "model_type": "linear", + "feature_names": ["x"], + "fitted_expression": None, + "deployment_expression": None, + } + + with pytest.raises(ValueError, match="requires coef"): + evaluate_formula(formula, {"x": np.array([2.0, 4.0])}) + + +def test_symbolic_expression_wins_over_incidental_coefficients(): + formula = { + "schema_version": "1.0", + "model_type": "linear", + "feature_names": ["x"], + "deployment_expression": "3*x", + "fitted_expression": "3*x", + "coef": [0.0], + } + np.testing.assert_allclose(evaluate_formula(formula, {"x": [2.0]}), [6.0]) + + +def test_build_versioned_artifact_and_validation_record(): + artifact = build_formula_artifact( + artifact_id="formula-001", + run_id="run-001", + role="controller", + anchor="front", + training_scenes=["scene-a"], + feature_names=["x"], + fitted_expression="2*x", + deployment_expression="2*x", + output={"name": "alpha", "unit": "rad"}, + feature_metadata={"version": "features-v1"}, + alignment_metadata={"policy": "same-step"}, + dt_c_metadata={"value": 0.2, "unit": "s"}, + g_metadata={"operator": "identity"}, + fit_provenance={"seed": 7}, + pysr_provenance={"version": "test"}, + data_provenance={"dataset_hash": "abc"}, + ) + record = build_validation_record( + formula=artifact, + metric_version="metrics-v1", + scene="scene-a", + mode="closed-loop", + si=True, + n_steps=100, + full_metrics={"rmse": 0.1}, + tail_metrics={"rmse": 0.05}, + per_channel_metrics={"front": {"rmse": 0.1}}, + action_range={"min": -1.0, "max": 1.0}, + telemetry={"complete": True}, + provenance={"validator": "pytest"}, + ) + + assert artifact["fitted_expression_hash"] == artifact["deployment_expression_hash"] + assert record["formula_hash"] == hash_json(artifact) + assert record["metrics"]["tail"]["rmse"] == 0.05 + assert record["record_hash"] == hash_json({k: v for k, v in record.items() if k != "record_hash"}) + + +def _variant_parent(): + return load_formula( + build_formula_artifact( + artifact_id="formula-variant-parent", + run_id="run-variant", + role="controller", + anchor="front", + training_scenes=["scene-a"], + feature_names=["x", "y"], + fitted_expression="x*(y + 2) + 3*x - 4", + deployment_expression="x*(y + 2) + 3*x - 4", + output={"name": "alpha", "unit": "rad"}, + feature_metadata={"version": "features-v1"}, + alignment_metadata={"policy": "same-step"}, + dt_c_metadata={"value": 0.2, "unit": "s"}, + g_metadata={"operator": "identity"}, + fit_provenance={"seed": 7}, + pysr_provenance={"version": "test"}, + data_provenance={"dataset_hash": "abc"}, + ) + ) + + +def test_symbolic_normalization_and_term_decomposition_are_deterministic(): + expected = "x*y + 5*x - 4" + assert normalize_symbolic_expression("3*x - 4 + x*(2 + y)", ["x", "y"]) == expected + assert normalize_symbolic_expression("x*y - 4 + 5*x", ["x", "y"]) == expected + assert decompose_additive_terms("3*x - 4 + x*(2 + y)", ["x", "y"]) == ( + "x*y", + "5*x", + "-4", + ) + + +def test_term_variants_are_immutable_validated_and_preserve_provenance(): + parent = _variant_parent() + original = json.loads(json.dumps(parent)) + term = "5*x" + + deleted = build_term_deletion_variant(parent, term) + scaled = build_coefficient_scaling_variant(parent, term, 0.5) + + assert parent == original + assert deleted["fitted_expression"] == parent["fitted_expression"] + assert deleted["fitted_expression_hash"] == parent["fitted_expression_hash"] + assert deleted["deployment_expression"] == "x*y - 4" + assert scaled["deployment_expression"] == "x*y + 2.5*x - 4" + assert deleted["deployment_expression_hash"] != parent["deployment_expression_hash"] + assert scaled["deployment_expression_hash"] != parent["deployment_expression_hash"] + assert deleted["parent_source_hash"] == parent["source_hash"] + assert deleted["parent_deployment_expression_hash"] == parent["deployment_expression_hash"] + assert deleted["variant_metadata"] == { + "type": "term_deletion", + "term_identity": term, + "scale": 0.0, + } + assert scaled["variant_metadata"] == { + "type": "coefficient_scaling", + "term_identity": term, + "scale": 0.5, + } + for key in ( + "role", + "g_metadata", + "feature_metadata", + "alignment_metadata", + "dt_c_metadata", + "provenance", + ): + assert deleted[key] == parent[key] + assert scaled[key] == parent[key] + assert load_formula(deleted)["deployment_expression_hash"] == deleted[ + "deployment_expression_hash" + ] + + +def test_zero_scaling_is_symbolically_and_numerically_equivalent_to_deletion(): + parent = _variant_parent() + term = "5*x" + deleted = build_term_deletion_variant(parent, term) + zero_scaled = build_coefficient_scaling_variant(parent, term, 0) + + assert normalize_symbolic_expression( + deleted["deployment_expression"], parent["feature_names"] + ) == normalize_symbolic_expression( + zero_scaled["deployment_expression"], parent["feature_names"] + ) + values = {"x": np.array([-2.0, 0.5, 3.0]), "y": np.array([1.0, -4.0, 2.0])} + np.testing.assert_allclose( + evaluate_formula(deleted, values), evaluate_formula(zero_scaled, values) + ) + + +def test_scaling_accepts_caller_grid_values_and_rejects_unknown_terms(): + parent = _variant_parent() + variants = [ + build_coefficient_scaling_variant(parent, "5*x", scale) + for scale in (-1.25, 0.25, 1.75) + ] + assert [variant["variant_metadata"]["scale"] for variant in variants] == [ + -1.25, + 0.25, + 1.75, + ] + with pytest.raises(ValueError, match="term identity is not present"): + build_term_deletion_variant(parent, "x") + + +def test_stage3_three_head_policy_deploys_each_formula_directly(): + from SR_analysis.stage_3_validate import FormulaPair, SymbolicPolicy + + def formula(role, expression): + return load_formula({ + "schema_version": "1.0", "feature_names": ["u_m"], + "role": role, "anchor": role, "fitted_expression": expression, + "deployment_expression": expression, + }) + + front = formula("front_independent", "1") + upper = formula("upper_independent", "2") + lower = formula("lower_independent", "3") + pair = FormulaPair( + front, upper, Path("front"), Path("upper"), "hash", {}, + lower=lower, lower_path=Path("lower"), deployment_semantics="three_head_independent", + ) + cfg = { + "mu": 0.02, "sample_interval": 800, "u0": 0.01, "scene_id": "karman", + "policy_init_action": [0, 0, 0], + } + omega, _, _ = SymbolicPolicy(pair, cfg, None).action(np.zeros(12), 0) + np.testing.assert_allclose(omega, [0.01, 0.02, 0.03]) + + +def test_stage3_rollout_failure_preserves_partial_telemetry(): + from SR_analysis.stage_3_validate import RolloutFailure, run_rollout + + class Environment: + current_raw = np.zeros(12) + target_sensors = np.zeros((72, 6)) + + def step(self, action): + return np.full(12, np.nan) + + class Policy: + def action(self, raw, step): + return np.zeros(3), None, None + + def observe(self, action): + raise AssertionError("failed observations must not update policy history") + + class Plan: + n_steps = 3 + cfg = {"u0": 0.01} + + with pytest.raises(RolloutFailure) as captured: + run_rollout(Plan(), Environment(), Policy()) + + assert captured.value.step == 0 + assert captured.value.telemetry["sensors"].shape == (0, 6) + assert "non-finite" in str(captured.value) + + +def test_stage3_karman_trained_group_matches_stage1_contract(): + from SR_analysis.stage_3_validate import GROUPS + + assert list(GROUPS["karman_trained"]()) == [ + "karman_re50", + "karman_re100", + "karman_re200", + "karman_re400", + ] + + +def test_safe_atomic_json_write_rejects_escape(tmp_path): + destination = atomic_write_json_below(tmp_path, "nested/artifact.json", {"b": 2, "a": 1}) + assert destination == safe_path(tmp_path, "nested/artifact.json") + assert json.loads(destination.read_text(encoding="utf-8")) == {"a": 1, "b": 2} + + with pytest.raises(ValueError, match="escapes"): + safe_path(tmp_path, "../outside.json") + with pytest.raises(ValueError, match="relative"): + safe_path(tmp_path, tmp_path / "absolute.json") diff --git a/src/SR_analysis/tests/test_legacy_contracts.py b/src/SR_analysis/tests/test_legacy_contracts.py new file mode 100644 index 0000000..2efaaac --- /dev/null +++ b/src/SR_analysis/tests/test_legacy_contracts.py @@ -0,0 +1,135 @@ +from __future__ import annotations + +import os + +import numpy as np +import pytest + +from SR_analysis.checks.order_contract import expected_ledger, impulse_commands +from SR_analysis.configs import ( + ILLUSION_TARGET_FORCE_SLICE, + ILLUSION_TARGET_SENSOR_SLICE, + LEGACY_CFG_DIR, + MODEL_DIR, + PROJECT_ROOT, + control_dt, + get_scene, +) +from SR_analysis.utils.cfd_interface import ( + LEGACY_DTW_VERSION, + calc_dtw_sim, + compute_similarity, + compute_similarity_illusion_legacy_v1, + compute_similarity_karman_legacy_v1, +) +from SR_analysis.utils.feature_builder import apply_G_alpha as feature_apply_G_alpha +from SR_analysis.utils.feature_builder import compute_dimensionless +from SR_analysis.utils.g_operator import ( + apply_G_alpha, + apply_G_raw12, + apply_G_target_force, +) + + +def test_project_paths_and_karman_contract() -> None: + assert PROJECT_ROOT == os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "..")) + assert MODEL_DIR == os.path.join(PROJECT_ROOT, "models") + assert LEGACY_CFG_DIR == os.path.join(PROJECT_ROOT, "configs", "legacy_configs") + + cfg = get_scene("karman_re100") + assert cfg["re_d"] == 50.0 + assert cfg["control_time_scale_steps"] == 2000 + assert cfg["control_dt"] == control_dt(800) == 0.4 + assert cfg["fifo_len"] == 150 + assert cfg["conv_len"] == 30 + assert cfg["body_layout"] == ("front", "upper", "lower") + assert cfg["force_layout"] == ( + "front_fx", "front_fy", "upper_fx", "upper_fy", "lower_fx", "lower_fy" + ) + assert cfg["fifo_init_action"] == cfg["action_bias"] + assert cfg["policy_init_action"] == cfg["action_bias"] + + +def test_illusion_target_contract_and_slices() -> None: + cfg = get_scene("illusion_1L") + target = np.arange(16).reshape(2, 8) + + assert cfg["conv_len"] == 36 + assert cfg["target_center_x"] == 20.0 + assert cfg["target_radius"] == cfg["target_diameter"] == 1.0 + assert cfg["target_radius_lattice"] == 20.0 + assert cfg["fifo_init_action"] == (0.0, -1.0, 1.0) + assert cfg["policy_init_action"] == (0.0, -1.0, 1.0) + assert cfg["target_force_slice"] == ILLUSION_TARGET_FORCE_SLICE == (0, 2) + assert cfg["target_sensor_slice"] == ILLUSION_TARGET_SENSOR_SLICE == (2, 8) + assert np.array_equal(target[:, slice(*cfg["target_force_slice"])], target[:, :2]) + assert np.array_equal(target[:, slice(*cfg["target_sensor_slice"])], target[:, 2:8]) + + +@pytest.mark.parametrize( + ("operator", "values"), + [ + (apply_G_raw12, np.arange(24, dtype=np.float32).reshape(2, 12)), + (apply_G_alpha, np.arange(6, dtype=np.float32).reshape(2, 3)), + (apply_G_target_force, np.arange(4, dtype=np.float32).reshape(2, 2)), + ], +) +def test_g_is_an_involution(operator, values) -> None: + transformed = operator(values) + assert transformed.dtype == values.dtype + np.testing.assert_array_equal(operator(transformed), values) + + +def test_g_uses_native_front_upper_lower_order() -> None: + raw = np.arange(12, dtype=np.float64) + np.testing.assert_array_equal( + apply_G_raw12(raw), + [4, -5, 2, -3, 0, -1, 6, -7, 10, -11, 8, -9], + ) + np.testing.assert_array_equal(apply_G_alpha(np.array([1.0, 2.0, 3.0])), [-1.0, -3.0, -2.0]) + np.testing.assert_array_equal(apply_G_target_force(np.array([4.0, 5.0])), [4.0, -5.0]) + + +def test_feature_builder_reexports_canonical_batch_action_g() -> None: + actions = np.arange(6, dtype=np.float32).reshape(2, 3) + transformed = feature_apply_G_alpha(actions) + np.testing.assert_array_equal(transformed, apply_G_alpha(actions)) + assert transformed.dtype == actions.dtype + + +def test_order_ledger_and_impulse_slots_follow_front_upper_lower() -> None: + karman = expected_ledger("karman_re100") + illusion = expected_ledger("illusion_1L") + assert karman["body_object_ids"] == {"front": 4, "upper": 5, "lower": 6} + assert illusion["body_object_ids"] == {"front": 3, "upper": 4, "lower": 5} + commands = impulse_commands(7, 0.125) + np.testing.assert_array_equal(np.flatnonzero(commands["front"]), [4]) + np.testing.assert_array_equal(np.flatnonzero(commands["upper"]), [5]) + np.testing.assert_array_equal(np.flatnonzero(commands["lower"]), [6]) + + +def test_dimensionless_force_columns_follow_front_upper_lower_order() -> None: + sensors = np.zeros((1, 6), dtype=np.float64) + forces = np.arange(1, 7, dtype=np.float64).reshape(1, 6) + dim = compute_dimensionless(sensors, forces, u0=1.0, d=2.0, rho=1.0) + + assert dim["Cd_F"][0] == 1.0 + assert dim["Cl_F"][0] == 2.0 + assert dim["Cd_T"][0] == 3.0 + assert dim["Cl_T"][0] == 4.0 + assert dim["Cd_B"][0] == 5.0 + assert dim["Cl_B"][0] == 6.0 + + +def test_legacy_dtw_fixture_and_scene_wrappers() -> None: + assert LEGACY_DTW_VERSION == "legacy_dtw_v1_abs_n_unclipped" + assert calc_dtw_sim(np.zeros(2), np.full(2, 3.0)) == -2.0 + + conv_len = 2 + sensors = np.arange(24, dtype=np.float64).reshape(4, 6) / 10.0 + state = sensors[2:4].copy() + illusion_target = np.column_stack((np.full(4, 99.0), np.full(4, -99.0), sensors)) + + assert compute_similarity_karman_legacy_v1(sensors, state, conv_len) == pytest.approx(1.0) + assert compute_similarity(sensors, state, conv_len) == pytest.approx(1.0) + assert compute_similarity_illusion_legacy_v1(illusion_target, state, conv_len) == pytest.approx(1.0) diff --git a/src/SR_analysis/tests/test_policy_replay.py b/src/SR_analysis/tests/test_policy_replay.py new file mode 100644 index 0000000..7bce6ec --- /dev/null +++ b/src/SR_analysis/tests/test_policy_replay.py @@ -0,0 +1,44 @@ +from pathlib import Path + +import numpy as np + +from SR_analysis.checks import policy_replay + + +class _Model: + def predict(self, observation, deterministic=True): + values = np.asarray(observation, dtype=np.float64) + return values[:3], None + + +def test_replay_uses_previous_post_state_for_next_action(tmp_path, monkeypatch): + trajectory = tmp_path / "controlled.npz" + sensors = np.arange(24, dtype=np.float32).reshape(4, 6) / 100.0 + forces = np.zeros((4, 6), dtype=np.float32) + actions = np.vstack((np.zeros(3), sensors[:-1, :3])).astype(np.float32) + np.savez(trajectory, sensors=sensors, forces=forces, actions_norm=actions) + + cfg = { + "scene_id": "karman", + "s_dim": 12, + "action_layout": ("front", "upper", "lower"), + } + norm_path = tmp_path / "norm.json" + norm_path.write_text("{}") + model_path = tmp_path / "model.zip" + model_path.write_bytes(b"model") + monkeypatch.setattr(policy_replay, "get_scene", lambda scene: cfg) + monkeypatch.setattr( + policy_replay, + "load_existing_norm", + lambda scene, config: ({"force_norm_fact": 1.0, "sens_deviation": [0] * 6, "sens_norm_fact": [1] * 6}, norm_path), + ) + monkeypatch.setattr(policy_replay, "model_path_for_scene", lambda scene: str(model_path)) + monkeypatch.setattr(policy_replay, "load_ppo_model", lambda *args, **kwargs: _Model()) + monkeypatch.setattr(policy_replay, "normalize_raw_observation", lambda raw, norm: np.asarray(raw)[:6]) + + report = policy_replay.replay("karman_re100", trajectory) + + assert report["status"] == "passed" + assert report["n_compared"] == 3 + np.testing.assert_allclose(report["max_abs_error"], 0.0) diff --git a/src/SR_analysis/tests/test_stage_1_infer.py b/src/SR_analysis/tests/test_stage_1_infer.py new file mode 100644 index 0000000..5f0e2a4 --- /dev/null +++ b/src/SR_analysis/tests/test_stage_1_infer.py @@ -0,0 +1,175 @@ +import json +import subprocess +import sys +from pathlib import Path + +import numpy as np +import pytest + +from SR_analysis import stage_1_infer as stage1 +from SR_analysis.utils.harmonics import gen_target_states_at, harmonics_document + + +def illusion_cfg(): + return { + "scene_id": "illusion", + "sample_interval": 600, + "u0": 0.01, + } + + +def test_target_extraction_uses_force_first_and_all_sensors(): + canonical, forces, sensors = stage1.extract_illusion_target(np.arange(12, dtype=np.float32)) + np.testing.assert_array_equal(canonical, np.arange(8, dtype=np.float32)) + np.testing.assert_array_equal(forces, [0, 1]) + np.testing.assert_array_equal(sensors, [2, 3, 4, 5, 6, 7]) + + +def test_target_extraction_rejects_short_observation(): + with pytest.raises(ValueError, match="8 channels"): + stage1.extract_illusion_target(np.arange(7)) + + +def test_phase_index_matches_legacy_first_and_next_observations(): + assert stage1.target_phase_index(0) == 0 + assert stage1.target_phase_index(0, after_action=True) == 1 + assert [stage1.target_phase_index(i) for i in range(4)] == [0, 1, 2, 3] + with pytest.raises(ValueError): + stage1.target_phase_index(-1) + + +def test_harmonics_loader_accepts_legacy_list_and_v2_document(): + legacy = [{"dc": 1.0, "amps": [2.0], "freqs": [0.25], "phases": [0.0]}] + document = harmonics_document(legacy, ["fx"], schema_version="test-v2") + assert document["channel_names"] == ["fx"] + np.testing.assert_allclose(gen_target_states_at(0, legacy), gen_target_states_at(0, document)) + assert gen_target_states_at(np.array([0, 1]), document).shape == (2, 1) + + +def test_gpu_identity_uses_explicit_visibility_mapping(monkeypatch): + calls = [] + + def fake_run(command, **kwargs): + calls.append((command, kwargs)) + return subprocess.CompletedProcess(command, 0, stdout="GPU-uuid, Test GPU\n", stderr="") + + monkeypatch.setattr(stage1.subprocess, "run", fake_run) + identity = stage1.gpu_identity(1, "GPU-first,GPU-second") + + assert identity == {"uuid": "GPU-uuid", "name": "Test GPU"} + assert "--id=GPU-second" in calls[0][0] + assert "--id=1" not in calls[0][0] + + +def test_gpu_identity_never_treats_logical_index_as_physical(monkeypatch): + calls = [] + + def fake_run(command, **kwargs): + calls.append(command) + return subprocess.CompletedProcess( + command, 0, stdout="GPU-a, First\nGPU-b, Second\n", stderr="", + ) + + monkeypatch.setattr(stage1.subprocess, "run", fake_run) + + assert stage1.gpu_identity(1, None) == {"uuid": None, "name": None} + assert all(not argument.startswith("--id=") for argument in calls[0]) + + +def test_device_manifest_records_environment_without_gpu_hard_failure(monkeypatch): + monkeypatch.setenv("CUDA_VISIBLE_DEVICES", "GPU-only") + + def unavailable(*args, **kwargs): + raise FileNotFoundError("nvidia-smi") + + monkeypatch.setattr(stage1.subprocess, "run", unavailable) + + assert stage1.cfd_device_manifest(0) == { + "cfd_device": 0, + "cfd_device_logical": 0, + "cuda_visible_devices": "GPU-only", + "cfd_gpu_uuid": None, + "cfd_gpu_name": None, + } + + +def test_paths_are_repo_rooted_and_do_not_depend_on_cwd(tmp_path, monkeypatch): + monkeypatch.chdir(tmp_path) + assert stage1.resolve_output_root(None) == stage1.REPO_ROOT / "src/SR_analysis/data/runs" + relative = stage1.resolve_output_root("scratch/stage1") + assert relative == stage1.REPO_ROOT / "scratch/stage1" + out = stage1.scene_output_dir(relative, "round-one", "illusion_1L", illusion_cfg()) + assert out == stage1.REPO_ROOT / "scratch/stage1/round-one/illusion/illusion_1L" + + +def test_output_refuses_overwrite(tmp_path): + out = tmp_path / "run"; out.mkdir(); (out / "result.json").write_text("{}") + with pytest.raises(FileExistsError, match="Refusing"): + stage1.prepare_output_dir(out, overwrite=False) + stage1.prepare_output_dir(out, overwrite=True) + assert (out / "result.json").exists() + + +def test_npz_v2_schema_and_legacy_aliases(tmp_path): + cfg = illusion_cfg() + controlled = tmp_path / "controlled.npz" + target = tmp_path / "target.npz" + sensors = np.ones((2, 6), dtype=np.float32) + forces = np.full((2, 6), 2, dtype=np.float32) + actions = np.full((2, 3), 0.5, dtype=np.float32) + commanded = np.full((2, 3), 0.03, dtype=np.float32) + target_forces = np.array([[1, 2], [3, 4]], dtype=np.float32) + stage1.save_controlled_npz( + controlled, "illusion_1L", cfg, sensors=sensors, forces=forces, + actions_norm=actions, actions_commanded=commanded, + target_forces=target_forces, phase_indices=np.array([0, 1]), + ) + stage1.save_target_npz(target, "illusion_1L", cfg, np.arange(16).reshape(2, 8), illusion=True) + + with np.load(controlled) as data: + assert data["schema_version"].item() == stage1.SCHEMA_VERSION + np.testing.assert_array_equal(data["actions"], data["actions_norm"]) + np.testing.assert_array_equal(data["sensors"], data["sensors_post"]) + np.testing.assert_array_equal(data["forces"], data["forces_post"]) + np.testing.assert_array_equal(data["target_forces"], data["target_forces_for_action"]) + np.testing.assert_array_equal(data["target_phase_index"], [0, 1]) + np.testing.assert_allclose(data["actions_omega_commanded"], commanded) + np.testing.assert_allclose(data["actions_alpha_commanded"], commanded / cfg["u0"]) + assert data["dt_c"].item() == pytest.approx(0.3) + with np.load(target) as data: + assert data["target_states"].shape == (2, 8) + assert data["target_forces"].shape == (2, 2) + assert data["target_sensors"].shape == (2, 6) + assert len(data["layout"]) == 8 + + +def test_norm_validation_rejects_bad_shapes_and_zeros(): + with pytest.raises(ValueError): + stage1.validate_norm({"force_norm_fact": 1, "sens_deviation": [0] * 5, "sens_norm_fact": [1] * 6}) + with pytest.raises(ValueError): + stage1.validate_norm({"force_norm_fact": 1, "sens_deviation": [0] * 6, "sens_norm_fact": [0] * 6}) + + +def test_cli_rejects_mutually_exclusive_scene_and_group(): + with pytest.raises(SystemExit) as error: + stage1.build_parser().parse_args(["--scene", "illusion_1L", "--group", "illusion_trained"]) + assert error.value.code == 2 + + +def test_dry_run_does_not_import_legacy_or_create_output(tmp_path): + script = stage1.Path(stage1.__file__) + output_root = tmp_path / "runs" + code = ( + "import runpy,sys; " + f"sys.argv={[str(script), '--scene', 'illusion_1L', '--run-id', 'dry', '--output-root', str(output_root), '--dry-run']!r}; " + f"runpy.run_path({str(script)!r}, run_name='__main__')" + ) + completed = subprocess.run([sys.executable, "-c", code], cwd=tmp_path, text=True, capture_output=True) + assert completed.returncode == 0, completed.stderr + assert "LegacyCelerisLab" not in completed.stderr + assert not output_root.exists() + + +def test_harmonics_document_is_json_serializable(): + document = harmonics_document([{"dc": 0.0, "amps": [], "freqs": [], "phases": []}], ["fx"], schema_version="v2") + assert json.loads(json.dumps(document))["schema_version"] == "v2" diff --git a/src/SR_analysis/tests/test_stage_2_fit.py b/src/SR_analysis/tests/test_stage_2_fit.py new file mode 100644 index 0000000..58f0772 --- /dev/null +++ b/src/SR_analysis/tests/test_stage_2_fit.py @@ -0,0 +1,431 @@ +import json +import subprocess +import sys +from pathlib import Path + +import numpy as np +import pytest + +from SR_analysis import stage_2_fit as stage2 + + +class MockRegressor: + instances = [] + + def __init__(self, **kwargs): + self.kwargs = kwargs + self.variable_names = None + self.target = None + self.weights = None + type(self).instances.append(self) + + def fit(self, X, y, variable_names, weights=None): + self.variable_names = list(variable_names) + self.target = np.asarray(y).copy() + self.weights = None if weights is None else np.asarray(weights).copy() + self.constant = float(np.mean(y)) + return self + + def predict(self, X): + return np.full(len(X), self.constant) + + def sympy(self): + return "0.5*u_a" + + equations_ = [ + {"equation": "u_a", "complexity": 1, "loss": 0.2, "score": 0.4}, + {"equation": "0.5*u_a", "complexity": 3, "loss": 0.1, "score": 0.5}, + ] + + +@pytest.fixture(autouse=True) +def reset_mock(): + MockRegressor.instances.clear() + + +def write_scene(root: Path, scene: str, *, offset: float = 0.0, target: bool = False) -> Path: + directory = root / "karman" / scene + directory.mkdir(parents=True) + rows = 8 + sensors = np.arange(rows * 6, dtype=np.float64).reshape(rows, 6) * 1e-5 + forces = np.arange(rows * 6, dtype=np.float64).reshape(rows, 6) * 1e-8 + actions = np.column_stack(( + np.arange(rows) + offset, + np.arange(rows) + 10 + offset, + np.arange(rows) + 20 + offset, + )).astype(np.float64) * 1e-1 + payload = {"sensors": sensors, "forces": forces, "actions_alpha_commanded": actions, "dt_c": 0.4} + if target: + payload["target_forces"] = np.zeros((rows, 2)) + np.savez_compressed(directory / "controlled.npz", **payload) + (directory / "config.json").write_text(json.dumps({ + "scene_id": "karman", "mu": 0.02, "sample_interval": 800, + "u0": 0.01, "action_layout": ["front", "upper", "lower"], + }), encoding="utf-8") + return directory + + +def load_artifacts(paths): + return [json.loads(Path(path).read_text(encoding="utf-8")) for path in paths] + + +def test_per_scene_fits_only_front_and_shared_upper_with_seed_and_schema(tmp_path): + data_root = tmp_path / "data" + write_scene(data_root, "karman_re100") + results_root = tmp_path / "results" / "runs" + + paths = stage2.run_fit( + scenes=["karman_re100"], mode="per-scene", run_id="unit", + data_root=data_root, results_root=results_root, seed=17, + niterations=3, smoke=True, regressor_factory=MockRegressor, + front_deployment_expression="u_a", rear_deployment_expression="-u_a", + ) + + assert [path.name for path in paths] == ["karman_re100_front.json", "karman_re100_rear_shared_upper.json"] + assert all(path.parent == results_root / "unit" / "formulas" for path in paths) + assert len(MockRegressor.instances) == 2 + assert all(instance.kwargs["random_state"] == 17 for instance in MockRegressor.instances) + assert all(instance.kwargs["deterministic"] is True for instance in MockRegressor.instances) + assert all(instance.kwargs["tournament_selection_n"] == 4 for instance in MockRegressor.instances) + assert all(instance.kwargs["maxsize"] == 7 for instance in MockRegressor.instances) + assert all(instance.kwargs["population_size"] == 16 for instance in MockRegressor.instances) + assert all("procs" not in instance.kwargs for instance in MockRegressor.instances) + assert MockRegressor.instances[0].target[0] == pytest.approx(0.3) + assert MockRegressor.instances[0].target[3] == pytest.approx(-0.3) + assert MockRegressor.instances[1].target[0] == pytest.approx(1.3) + assert MockRegressor.instances[1].target[3] == pytest.approx(-2.3) + + front, rear = load_artifacts(paths) + assert front["role"] == "front_odd" + assert rear["role"] == "rear_shared" + assert rear["anchor"] == "upper" + assert front["output"]["native_action_order"] == ["front", "upper", "lower"] + assert front["fitted_expression"] == "0.5*u_a" + assert front["deployment_expression"] == "u_a" + assert front["fitted_expression_hash"] != front["deployment_expression_hash"] + assert front["g_metadata"]["front_rule"] == "front(x)=0.5*(f(x)-f(Gx)); antisymmetric projection" + assert rear["g_metadata"]["rear_rule"] == "lower(x)=-upper(Gx)" + assert front["g_metadata"]["deployment_architecture"] == "mapped_shared" + assert front["g_metadata"]["fit_augmentation"] == "G" + assert set(front["provenance"]["fit"]["diagnostic_metrics"]) == {"r2", "mae", "rmse", "max_error"} + assert front["provenance"]["fit"]["source_n_samples"] == 5 + assert front["provenance"]["fit"]["n_samples"] == 6 + assert front["provenance"]["fit"]["g_augmented"] is True + assert set(front["provenance"]["fit"]["offline_metrics"]) == {"train", "validation", "blind"} + assert "manual_validation_required" in front["provenance"]["fit"]["selection_policy"] + assert front["provenance"]["fit"]["static_safety"]["safe"] is True + assert len(front["provenance"]["pysr"]["pareto_candidates"]) == 2 + candidate = front["provenance"]["pysr"]["pareto_candidates"][0] + assert candidate["used_features"] == ["u_a"] + assert candidate["static_safety"]["safe"] is True + assert set(candidate["metrics"]) == {"train", "validation", "blind"} + assert set(candidate["metrics"]["blind"]) == {"r2", "mae", "rmse", "max_error"} + + +def test_three_head_independent_emits_true_three_head_artifacts(tmp_path): + data_root = tmp_path / "data" + write_scene(data_root, "karman_re100") + paths = stage2.run_fit( + scenes=["karman_re100"], mode="per-scene", run_id="three-head", + data_root=data_root, results_root=tmp_path / "results", + deployment_architecture="three_head_independent", fit_augmentation="none", + regressor_factory=MockRegressor, + ) + assert [path.name for path in paths] == [ + "karman_re100_front.json", "karman_re100_upper.json", "karman_re100_lower.json", + ] + artifacts = load_artifacts(paths) + assert [artifact["role"] for artifact in artifacts] == [ + "front_independent", "upper_independent", "lower_independent", + ] + assert all(artifact["g_metadata"]["deployment_semantics"] == "three_head_independent" for artifact in artifacts) + assert all(artifact["provenance"]["fit"]["g_augmented"] is False for artifact in artifacts) + + +def test_feature_sets_are_complete_and_scene_specific() -> None: + karman = stage2.get_scene("karman_re100") + illusion = stage2.get_scene("illusion_1L") + raw = stage2.feature_names_for_scene(karman, feature_set="raw_complete", joint=False) + symmetry = stage2.feature_names_for_scene(karman, feature_set="symmetry", joint=False) + illusion_raw = stage2.feature_names_for_scene(illusion, feature_set="raw_complete", joint=False) + assert len(raw) == 12 + assert {"v_hat_T", "v_hat_C", "v_hat_B", "Cd_T", "Cd_B", "Cl_T", "Cl_B"} <= set(raw) + assert {"v_s", "v_a", "v_c", "Cd_rear_s", "Cd_rear_a", "Cl_rear_s", "Cl_rear_a"} <= set(symmetry) + assert {"target_Cd", "target_Cl", "Cd_err", "Cl_err"} <= set(illusion_raw) + assert "Cd_err" not in raw and "Cl_err" not in raw + + target_only = stage2.feature_names_for_scene( + illusion, feature_set="physics_reduced", joint=False, feature_profile="target_only", + ) + actual_plus_error = stage2.feature_names_for_scene( + illusion, feature_set="physics_reduced", joint=False, feature_profile="actual_plus_error", + ) + actual_plus_target = stage2.feature_names_for_scene( + illusion, feature_set="physics_reduced", joint=False, feature_profile="actual_plus_target", + ) + assert target_only == ("target_Cd", "target_Cl") + assert actual_plus_error[-2:] == ("Cd_err", "Cl_err") and "target_Cd" not in actual_plus_error + assert actual_plus_target[-2:] == ("target_Cd", "target_Cl") and "Cd_err" not in actual_plus_target + assert stage2.feature_names_for_scene( + karman, feature_set="physics_reduced", joint=False, feature_profile="actual_only", + ) == tuple(stage2.FEATURE_SET_KEYS["physics_reduced"]) + with pytest.raises(ValueError, match="only defined for Illusion"): + stage2.feature_names_for_scene( + karman, feature_set="physics_reduced", joint=False, feature_profile="actual_plus_error", + ) + + +def test_joint_merges_both_heads_and_records_scene_counts(tmp_path): + data_root = tmp_path / "run" + write_scene(data_root, "karman_re100") + write_scene(data_root, "karman_re200", offset=100) + + paths = stage2.run_fit( + scenes=["karman_re100", "karman_re200"], mode="joint", run_id="joint-run", + data_root=data_root, results_root=tmp_path / "results" / "runs", + regressor_factory=MockRegressor, + ) + assert [path.name for path in paths] == ["joint_front.json", "joint_rear_shared_upper.json"] + front, rear = load_artifacts(paths) + assert front["training_scenes"] == ["karman_re100", "karman_re200"] + assert front["provenance"]["fit"]["scene_sample_counts"] == { + "karman_re100": 5, "karman_re200": 5, + } + assert rear["g_metadata"]["rear_rule"] == "lower(x)=-upper(Gx)" + assert all(instance.weights is not None for instance in MockRegressor.instances) + for instance in MockRegressor.instances: + assert instance.weights[:3].sum() == pytest.approx(instance.weights[3:6].sum()) + + +def test_multiple_trajectories_preserve_boundaries_and_provenance(tmp_path): + first_root = tmp_path / "trajectory-a" + second_root = tmp_path / "trajectory-b" + write_scene(first_root, "karman_re100", offset=0) + write_scene(second_root, "karman_re100", offset=100) + + prepared = stage2.prepare_scene_trajectories( + "karman_re100", [first_root, second_root], alignment=stage2.CAUSAL_ALIGNMENT, + joint=False, + ) + assert prepared.dataset.X.shape[0] == 10 + assert [len(item.dataset.X) for item in prepared.trajectories] == [5, 5] + assert prepared.dataset.Y[4, 0] == pytest.approx(0.7) + assert prepared.dataset.Y[5, 0] == pytest.approx(10.3) + + paths = stage2.run_fit( + scenes=["karman_re100"], mode="per-scene", run_id="multi", + data_roots=[first_root, second_root], results_root=tmp_path / "results", + regressor_factory=MockRegressor, + ) + trajectory_records = load_artifacts(paths)[0]["provenance"]["data"]["trajectories"]["karman_re100"] + assert [record["id"] for record in trajectory_records] == [ + "karman_re100:trajectory-001", "karman_re100:trajectory-002", + ] + assert [record["sample_count"] for record in trajectory_records] == [5, 5] + assert all(len(record["hash"]) == 64 for record in trajectory_records) + assert [record["path"] for record in trajectory_records] == [ + str(first_root / "karman" / "karman_re100" / "controlled.npz"), + str(second_root / "karman" / "karman_re100" / "controlled.npz"), + ] + + +def test_refitted_expression_is_canonical_for_sign_changes(): + expression = "-1.0*x + 2.0*y" + _, tree, names, _ = stage2._topology_evaluator(expression, ("x", "y")) + rendered = stage2._render_refitted_expression(tree, names, (-2.0, -3.0)) + assert "--" not in rendered + assert "+ -" not in rendered + + +def test_fixed_topology_refit_uses_all_rows_two_cases_and_preserves_topology(tmp_path): + feature_names = ("u_a",) + scenes = [] + for case_index, name in enumerate(("case_a", "case_b")): + X = np.arange(1 + case_index, 5 + case_index, dtype=np.float64).reshape(-1, 1) + front = 2.0 * X[:, 0] + upper = -1.5 * X[:, 0] + lower = upper + dataset = stage2.BatchDataset( + X, np.column_stack((front, upper, lower)), np.arange(len(X)), + np.array([], dtype=int), + {"alignment": stage2.CAUSAL_ALIGNMENT, "warmup": 0, "history_policy": "unit", + "dt_c": 0.4, "action_mode": "alpha"}, {}, + ) + mirrored = stage2.BatchDataset( + -X, np.column_stack((-front, -lower, -upper)), np.arange(len(X)), + np.array([], dtype=int), dict(dataset.metadata), {}, + ) + trajectory = stage2.PreparedTrajectory( + f"{name}:trajectory-001", tmp_path / f"{name}.npz", None, + dataset, mirrored, f"hash-{name}", + ) + scenes.append(stage2.PreparedScene( + name, {"scene_id": "karman", "u0": 0.01}, trajectory.data_path, None, + dataset, mirrored, feature_names, ("front", "upper", "lower"), + trajectory.data_hash, (trajectory,), + )) + + front = stage2.refit_fixed_topology_head( + scenes, role="front_odd", channel_index=0, run_id="refit", + topology_expression="0.5 * u_a", discovery_parent_path=None, + mode="joint", deployment_architecture="mapped_shared", + feature_set="physics_reduced", feature_profile="actual_only", + environment={}, + ) + rear = stage2.refit_fixed_topology_head( + scenes, role="rear_shared", channel_index=1, run_id="refit", + topology_expression="0.5 * u_a", discovery_parent_path=None, + mode="joint", deployment_architecture="mapped_shared", + feature_set="physics_reduced", feature_profile="actual_only", + environment={}, + ) + + assert front["fitted_expression"].count("u_a") == 1 + assert front["fitted_expression_hash"] == front["deployment_expression_hash"] + assert front["provenance"]["fit"]["optimizer"]["refitted_constants"] == pytest.approx([2.0]) + assert rear["provenance"]["fit"]["optimizer"]["refitted_constants"] == pytest.approx([-1.5]) + assert front["provenance"]["fit"]["n_samples"] == 16 + assert front["provenance"]["fit"]["sample_weighting"] == "case_equal_trajectory_equal_within_case" + metrics = front["provenance"]["fit"]["offline_metrics"] + assert metrics["aggregate"]["rmse"] < 1e-10 + assert set(metrics["per_case"]) == {"case_a", "case_b"} + assert set(metrics["per_trajectory"]) == { + "case_a:trajectory-001", "case_b:trajectory-001", + } + assert front["g_metadata"]["fit_augmentation"] == "G" + + +def test_run_fit_fixed_topology_records_discovery_parent_hash(tmp_path, monkeypatch): + parent = tmp_path / "discovery.json" + parent.write_text('{"artifact": "discovery"}', encoding="utf-8") + prepared = [] + for case_index, name in enumerate(("karman_re100", "karman_re200")): + X = np.arange(1 + case_index, 5 + case_index, dtype=np.float64).reshape(-1, 1) + front = 2.0 * X[:, 0] + upper = -1.5 * X[:, 0] + 0.25 + dataset = stage2.BatchDataset( + X, np.column_stack((front, upper, -upper)), np.arange(len(X)), + np.array([], dtype=int), + {"alignment": stage2.CAUSAL_ALIGNMENT, "warmup": 0, "history_policy": "unit", + "dt_c": 0.4, "action_mode": "alpha"}, {}, + ) + mirrored = stage2.BatchDataset( + X.copy(), np.column_stack((-front, upper, -upper)), np.arange(len(X)), + np.array([], dtype=int), dict(dataset.metadata), {}, + ) + trajectory = stage2.PreparedTrajectory( + f"{name}:trajectory-001", tmp_path / f"{name}.npz", None, + dataset, mirrored, f"hash-{name}", + ) + prepared.append(stage2.PreparedScene( + name, {"scene_id": "karman", "u0": 0.01}, trajectory.data_path, None, + dataset, mirrored, ("u_a",), ("front", "upper", "lower"), + trajectory.data_hash, (trajectory,), + )) + monkeypatch.setattr( + stage2, "prepare_scene_trajectories", + lambda name, *args, **kwargs: prepared[("karman_re100", "karman_re200").index(name)], + ) + + paths = stage2.run_fit( + scenes=["karman_re100", "karman_re200"], mode="joint", run_id="refit-run", + results_root=tmp_path / "results", fit_purpose="fixed-topology-refit", + front_topology_expression="0.5*u_a + 0.1", + rear_topology_expression="0.5*u_a + 0.1", + front_discovery_parent_path=parent, rear_discovery_parent_path=parent, + ) + + assert [path.name for path in paths] == ["joint_front.json", "joint_rear_shared_upper.json"] + artifacts = load_artifacts(paths) + assert not MockRegressor.instances + assert all(artifact["discovery_parent"]["path"] == str(parent) for artifact in artifacts) + assert all(artifact["discovery_parent"]["sha256"] == stage2.hash_file(parent) for artifact in artifacts) + assert all(artifact["provenance"]["fit"]["fit_purpose"] == "fixed-topology-refit" for artifact in artifacts) + + +def test_joint_rejects_cross_objective_scene_id_mixing(): + first = stage2.PreparedScene( + "first", {"scene_id": "karman", "u0": 0.01}, Path("first.npz"), None, + stage2.BatchDataset(np.zeros((1, 1)), np.zeros((1, 3)), np.array([0]), np.array([], dtype=int), + {"action_mode": "alpha"}, {}), + stage2.BatchDataset(np.zeros((1, 1)), np.zeros((1, 3)), np.array([0]), np.array([], dtype=int), + {"action_mode": "alpha"}, {}), + ("u_a",), ("front", "upper", "lower"), "first-hash", + ) + second = stage2.PreparedScene( + "second", {"scene_id": "illusion", "u0": 0.01}, Path("second.npz"), None, + first.dataset, first.mirrored_dataset, first.feature_names, first.action_layout, "second-hash", + ) + with pytest.raises(ValueError, match="same scene_id objective"): + stage2._validate_joint_contract([first, second]) + + +def test_cli_exposes_only_active_architecture_and_comparative_profiles(): + parser = stage2.build_parser() + architecture = next(action for action in parser._actions if action.dest == "deployment_architecture") + augmentation = next(action for action in parser._actions if action.dest == "fit_augmentation") + profile = next(action for action in parser._actions if action.dest == "feature_profile") + assert tuple(architecture.choices) == ("mapped_shared", "three_head_independent") + assert tuple(augmentation.choices) == ("none", "G") + assert tuple(profile.choices) == ( + "actual_only", "target_only", "actual_plus_target", "actual_plus_error", + ) + assert all(action.dest != "symmetry_mode" for action in parser._actions) + parsed = parser.parse_args([ + "--scene", "karman_re100", "--data-root", "first", "--data-root", "second", + "--data-roots", "third,fourth", + ]) + assert parsed.data_root == ["first", "second"] + assert parsed.data_roots == "third,fourth" + + +def test_prepare_only_validates_without_importing_pysr_or_writing(tmp_path): + data_root = tmp_path / "data" + write_scene(data_root, "karman_re100") + results_root = tmp_path / "results" / "runs" + script = Path(stage2.__file__) + code = ( + "import runpy,sys; " + f"sys.argv={[str(script), '--scene', 'karman_re100', '--run-id', 'prepare', '--data-root', str(data_root), '--results-root', str(results_root), '--prepare-only']!r}; " + f"runpy.run_path({str(script)!r}, run_name='__main__')" + ) + completed = subprocess.run([sys.executable, "-c", code], cwd=tmp_path, capture_output=True, text=True) + assert completed.returncode == 0, completed.stderr + assert "pysr" not in sys.modules + assert not results_root.exists() + + +def test_refuses_existing_output_before_fit(tmp_path): + data_root = tmp_path / "data" + write_scene(data_root, "karman_re100") + output = tmp_path / "results" / "runs" / "same" / "formulas" + output.mkdir(parents=True) + with pytest.raises(FileExistsError, match="Refusing"): + stage2.run_fit( + scenes=["karman_re100"], mode="per-scene", run_id="same", + data_root=data_root, results_root=tmp_path / "results" / "runs", + regressor_factory=MockRegressor, + ) + assert not MockRegressor.instances + + +def test_illusion_required_target_fails_during_prepare(tmp_path): + directory = tmp_path / "data" / "illusion" / "illusion_1L" + directory.mkdir(parents=True) + np.savez_compressed( + directory / "controlled.npz", sensors=np.zeros((6, 6)), forces=np.zeros((6, 6)), + actions_alpha_commanded=np.zeros((6, 3)), + ) + with pytest.raises(ValueError, match="require target_forces"): + stage2.prepare_scene("illusion_1L", tmp_path / "data", alignment=stage2.CAUSAL_ALIGNMENT, joint=False) + + +def test_alignment_option_changes_target_pairing(tmp_path): + data_root = tmp_path / "data" + write_scene(data_root, "karman_re100") + causal = stage2.prepare_scene("karman_re100", data_root, alignment=stage2.CAUSAL_ALIGNMENT, joint=False) + historical = stage2.prepare_scene( + "karman_re100", data_root, alignment="historical_post_state_same_action", joint=False, + ) + assert causal.dataset.Y[0, 0] == pytest.approx(0.3) + assert historical.dataset.Y[0, 0] == pytest.approx(0.2) diff --git a/src/SR_analysis/tests/test_telemetry_to_csv.py b/src/SR_analysis/tests/test_telemetry_to_csv.py new file mode 100644 index 0000000..abd87b7 --- /dev/null +++ b/src/SR_analysis/tests/test_telemetry_to_csv.py @@ -0,0 +1,78 @@ +import csv +from pathlib import Path + +import numpy as np + +from SR_analysis import stage_3_validate as stage3 +from SR_analysis.tools.telemetry_to_csv import ( + canonical_arrays, + export, + legacy_similarity, + time_coordinate, +) +from SR_analysis.utils.metrics import legacy_cycle_similarity + + +def test_stage1_prefers_post_state_and_physical_actions(): + data = { + "sensors": np.zeros((2, 6)), + "sensors_post": np.ones((2, 6)), + "forces_post": np.full((2, 6), 2.0), + "actions_alpha_commanded": np.full((2, 3), 3.0), + } + arrays = canonical_arrays(data, "ppo") + assert np.all(arrays["sensors"] == 1.0) + assert np.all(arrays["forces"] == 2.0) + assert np.all(arrays["actions_alpha"] == 3.0) + + +def test_stage3_ppo_schema_preserves_physical_actions(): + data = { + "sensors": np.ones((2, 6)), + "forces": np.ones((2, 6)) * 2, + "actions_alpha": np.ones((2, 3)) * 3, + "actions_omega": np.ones((2, 3)) * 0.03, + } + arrays = canonical_arrays(data, "ppo") + assert np.all(arrays["actions_alpha"] == 3.0) + assert np.all(arrays["actions_omega"] == 0.03) + + +def test_time_coordinate_uses_d_over_u0(): + np.testing.assert_allclose(time_coordinate(3, 800), [0.0, 0.4, 0.8]) + + +def test_csv_and_stage3_share_exact_legacy_metric(): + target = np.arange(48, dtype=np.float64).reshape(8, 6) / 10.0 + state = target[4:].copy() + canonical = legacy_cycle_similarity(target, state, 4) + stage3_metric = stage3.compute_versioned_metrics(target, state, 4)[ + "legacy_reference_cycle_vs_last_recorded_cycle" + ] + csv_metric = legacy_similarity(target, state, 4) + + assert stage3_metric == canonical + assert csv_metric["similarity"] == canonical["similarity"] + assert csv_metric["lag"] == canonical["lag"] + assert csv_metric["per_channel"] == [ + canonical["per_channel"][str(index)] for index in range(6) + ] + + +def test_export_writes_wide_and_long_csv(tmp_path: Path): + trajectory = tmp_path / "trajectory.npz" + np.savez( + trajectory, + sensors=np.ones((4, 6)), + forces=np.ones((4, 6)) * 2, + actions_alpha=np.ones((4, 3)) * 3, + target_sensors=np.ones((60, 6)), + ) + output = tmp_path / "csv" + export(trajectory, output, "case", "sr", 800, 30) + assert (output / "sr_wide.csv").is_file() + assert (output / "sr_long.csv").is_file() + with (output / "sr_wide.csv").open(newline="", encoding="utf-8") as handle: + rows = list(csv.reader(handle)) + assert len(rows) == 5 + assert "sensors_upper_ux" in rows[0] diff --git a/src/SR_analysis/tools/__init__.py b/src/SR_analysis/tools/__init__.py new file mode 100644 index 0000000..72452cc --- /dev/null +++ b/src/SR_analysis/tools/__init__.py @@ -0,0 +1 @@ +"""Artifact and workflow maintenance tools.""" diff --git a/src/SR_analysis/tools/audit_round1.py b/src/SR_analysis/tools/audit_round1.py new file mode 100644 index 0000000..32c5862 --- /dev/null +++ b/src/SR_analysis/tools/audit_round1.py @@ -0,0 +1,352 @@ +#!/usr/bin/env python3 +"""Audit staged round-one SR artifacts without mutating canonical history.""" +from __future__ import annotations + +import argparse +import json +import sys +from dataclasses import dataclass +from datetime import datetime, timezone +from pathlib import Path +from typing import Any, Iterable, Mapping + +import numpy as np + +SR_ROOT = Path(__file__).resolve().parents[1] +REPO_ROOT = SR_ROOT.parents[1] +if str(REPO_ROOT / "src") not in sys.path: + sys.path.insert(0, str(REPO_ROOT / "src")) + +from SR_analysis.utils.provenance import atomic_write_json, hash_file, hash_json, sha256_text + +AUDIT_SCHEMA_VERSION = "sr-round1-audit-v1" +CANDIDATE_SCHEMA_VERSION = "sr-candidate-registry-v1" +LINK_HASH_KEYS = { + "npz_hash", "controlled_hash", "target_hash", "telemetry_hash", "validation_hash", +} +# Composite hashes are validated by their producing schema, not as file links. +PROVENANCE_KEYS = ("git_sha", "environment", "command", "created_at") +IGNORED_JSON = {"candidate_registry.json", "audit_report.json"} + + +@dataclass(frozen=True) +class Artifact: + kind: str + path: Path + relative_path: str + digest: str + document: Mapping[str, Any] | None = None + + +def _issue(code: str, message: str, path: str | None = None) -> dict[str, Any]: + result: dict[str, Any] = {"code": code, "message": message} + if path is not None: + result["path"] = path + return result + + +def _read_json(path: Path) -> Mapping[str, Any]: + value = json.loads(path.read_text(encoding="utf-8")) + if not isinstance(value, dict): + raise ValueError("JSON root must be an object") + return value + + +def _classify_json(document: Mapping[str, Any], path: Path) -> str: + if "deployment_expression" in document or "fitted_expression" in document: + return "formula" + if "record_hash" in document or ("metric_version" in document and "telemetry" in document): + return "validation" + if "telemetry" in path.name.lower() or document.get("artifact_type") == "telemetry": + return "telemetry" + return str(document.get("artifact_type", "metadata")) + + +def _artifact_id(artifact: Artifact) -> str: + if artifact.document: + value = artifact.document.get("artifact_id") + if isinstance(value, str) and value.strip(): + return value + return f"{artifact.kind}:{artifact.digest[:16]}" + + +def _path_value(value: Any) -> str | None: + if isinstance(value, str) and value: + return value + if isinstance(value, Mapping): + for key in ("path", "file", "raw_path", "telemetry_path"): + candidate = value.get(key) + if isinstance(candidate, str) and candidate: + return candidate + return None + + +def _resolve_reference(reference: str, owner: Path, roots: Iterable[Path]) -> Path | None: + candidate = Path(reference).expanduser() + attempts = [candidate] if candidate.is_absolute() else [owner.parent / candidate] + if not candidate.is_absolute(): + attempts.extend(root / candidate for root in roots) + for attempt in attempts: + resolved = attempt.resolve() + if resolved.is_file(): + return resolved + return None + + +def _walk_hash_links(value: Any, prefix: str = "") -> Iterable[tuple[str, str]]: + if isinstance(value, Mapping): + for key, child in value.items(): + name = f"{prefix}.{key}" if prefix else str(key) + if key in LINK_HASH_KEYS and isinstance(child, str): + yield name, child + yield from _walk_hash_links(child, name) + elif isinstance(value, list): + for index, child in enumerate(value): + yield from _walk_hash_links(child, f"{prefix}[{index}]") + + +def _validate_npz(artifact: Artifact, errors: list[dict[str, Any]]) -> None: + try: + with np.load(artifact.path, allow_pickle=False) as data: + keys = set(data.files) + if "schema_version" not in keys: + errors.append(_issue("npz_schema_missing", "NPZ lacks schema_version", artifact.relative_path)) + return + schema = str(np.asarray(data["schema_version"]).item()) + if not schema.strip(): + errors.append(_issue("npz_schema_invalid", "NPZ schema_version is empty", artifact.relative_path)) + if artifact.path.name == "controlled.npz": + required = {"sensors_post", "forces_post", "actions_norm", "dt_c"} + missing = sorted(required - keys) + if missing: + errors.append(_issue("npz_fields_missing", f"controlled NPZ missing {missing}", artifact.relative_path)) + elif (data["sensors_post"].ndim != 2 or data["sensors_post"].shape[1] != 6 + or data["forces_post"].shape != data["sensors_post"].shape + or data["actions_norm"].shape != (data["sensors_post"].shape[0], 3)): + errors.append(_issue("npz_shape_invalid", "controlled NPZ array shapes violate the v2 contract", artifact.relative_path)) + if "target" in artifact.path.name and not ({"target_states", "layout"} <= keys): + errors.append(_issue("npz_fields_missing", "target NPZ requires target_states and layout", artifact.relative_path)) + except Exception as exc: + errors.append(_issue("npz_unreadable", str(exc), artifact.relative_path)) + + +def _missing_provenance(provenance: Any) -> list[str]: + if not isinstance(provenance, Mapping): + return list(PROVENANCE_KEYS) + return [key for key in PROVENANCE_KEYS if not provenance.get(key)] + + +def _validate_formula(artifact: Artifact, errors: list[dict[str, Any]]) -> None: + doc = artifact.document or {} + required = { + "schema_version", "artifact_id", "run_id", "feature_names", "fitted_expression", + "deployment_expression", "fitted_expression_hash", "deployment_expression_hash", + "alignment_metadata", "dt_c_metadata", "g_metadata", "provenance", + } + missing = sorted(key for key in required if key not in doc) + if missing: + errors.append(_issue("formula_schema_missing", f"formula missing {missing}", artifact.relative_path)) + return + for expression_key in ("fitted_expression", "deployment_expression"): + expression = doc.get(expression_key) + hash_key = f"{expression_key}_hash" + if not isinstance(expression, str) or not expression.strip(): + errors.append(_issue("formula_expression_invalid", f"{expression_key} must be non-empty", artifact.relative_path)) + else: + actual = sha256_text(expression.strip()) + if doc.get(hash_key) != actual: + errors.append(_issue("expression_hash_mismatch", f"{hash_key} does not hash the actual expression", artifact.relative_path)) + provenance = doc.get("provenance") + if not isinstance(provenance, Mapping) or not all(isinstance(provenance.get(k), Mapping) for k in ("fit", "pysr", "data")): + errors.append(_issue("formula_provenance_missing", "formula provenance requires fit, pysr, and data objects", artifact.relative_path)) + else: + fit_required = ("mode", "seed", "niterations", "scene_sample_counts", "diagnostic_metrics") + missing_fit = [key for key in fit_required if key not in provenance["fit"]] + if missing_fit or not doc.get("git_sha") or not isinstance(doc.get("environment"), Mapping): + errors.append(_issue( + "required_provenance_missing", + f"formula provenance lacks top-level git/environment or fit fields {missing_fit}", + artifact.relative_path, + )) + + +def _validate_validation( + artifact: Artifact, errors: list[dict[str, Any]], roots: Iterable[Path] +) -> None: + doc = artifact.document or {} + required = {"schema_version", "formula_hash", "metric_version", "scene", "mode", "n_steps", "metrics", "telemetry", "provenance", "record_hash"} + missing = sorted(key for key in required if key not in doc) + if missing: + errors.append(_issue("validation_schema_missing", f"validation missing {missing}", artifact.relative_path)) + return + expected_record_hash = hash_json({key: value for key, value in doc.items() if key != "record_hash"}) + if doc.get("record_hash") != expected_record_hash: + errors.append(_issue("record_hash_mismatch", "validation record_hash is invalid", artifact.relative_path)) + if _missing_provenance(doc.get("provenance")): + errors.append(_issue("required_provenance_missing", "validation provenance lacks git_sha/environment/command/created_at", artifact.relative_path)) + telemetry_ref = _path_value(doc.get("telemetry")) + if telemetry_ref is None: + errors.append(_issue("telemetry_reference_missing", "validation must reference raw telemetry", artifact.relative_path)) + elif _resolve_reference(telemetry_ref, artifact.path, roots) is None: + errors.append(_issue("telemetry_missing", f"telemetry does not exist: {telemetry_ref}", artifact.relative_path)) + + +def _discover(data_dir: Path, results_dir: Path, errors: list[dict[str, Any]]) -> list[Artifact]: + artifacts: list[Artifact] = [] + for root, prefix in ((data_dir, "data"), (results_dir, "results")): + if not root.is_dir(): + errors.append(_issue("run_directory_missing", f"required run directory does not exist: {root}")) + continue + for path in sorted(item for item in root.rglob("*") if item.is_file()): + relative = f"{prefix}/{path.relative_to(root).as_posix()}" + if path.name in IGNORED_JSON: + continue + if path.suffix == ".npz": + kind = "telemetry" if any("telemetry" in part.lower() for part in path.parts) else "npz" + artifacts.append(Artifact(kind, path, relative, hash_file(path))) + elif path.suffix == ".json": + try: + document = _read_json(path) + artifacts.append(Artifact(_classify_json(document, path), path, relative, hash_file(path), document)) + except Exception as exc: + errors.append(_issue("json_unreadable", str(exc), relative)) + else: + artifacts.append(Artifact("telemetry" if "telemetry" in path.name.lower() else "artifact", path, relative, hash_file(path))) + return artifacts + + +def _historical_snapshot(sr_root: Path) -> dict[str, Any]: + registry = sr_root / "scene_registry.json" + validations = sr_root / "results" / "validations" + return { + "status": "historical_frozen", + "canonical_registry": {"path": "scene_registry.json", "sha256": hash_file(registry) if registry.is_file() else None}, + "validation_files": sorted(str(path.relative_to(sr_root)) for path in validations.glob("*.json")) if validations.is_dir() else [], + "known_conflicts": [ + "Illusion similarity numbers differ between historical README prose/tables and scene_registry.json; round one records both and does not choose a winner.", + "Karman fitted expressions and deployment expressions differ in historical artifacts/documentation; round one records both and does not choose a winner.", + ], + "adjudication": "none", + } + + +def audit_run( + run_id: str, + data_run_id: str | None = None, + *, + formula_run_id: str | None = None, + sr_root: Path = SR_ROOT, +) -> tuple[dict[str, Any], dict[str, Any]]: + if not run_id or Path(run_id).name != run_id or run_id in {".", ".."}: + raise ValueError("run_id must be one non-empty path component") + data_run_id = data_run_id or run_id + if not data_run_id or Path(data_run_id).name != data_run_id or data_run_id in {".", ".."}: + raise ValueError("data_run_id must be one non-empty path component") + formula_run_id = formula_run_id or run_id + if not formula_run_id or Path(formula_run_id).name != formula_run_id or formula_run_id in {".", ".."}: + raise ValueError("formula_run_id must be one non-empty path component") + data_dir = sr_root / "data" / "runs" / data_run_id + results_dir = sr_root / "results" / "runs" / run_id + formula_dir = sr_root / "results" / "runs" / formula_run_id + results_dir.mkdir(parents=True, exist_ok=True) + errors: list[dict[str, Any]] = [] + warnings: list[dict[str, Any]] = [] + artifacts = _discover(data_dir, results_dir, errors) + if formula_dir.resolve() != results_dir.resolve(): + formula_artifacts = _discover(data_dir, formula_dir, errors) + artifacts.extend(artifact for artifact in formula_artifacts if artifact.kind == "formula") + roots = (data_dir, results_dir, formula_dir, sr_root) + digest_index = {artifact.digest: artifact for artifact in artifacts} + + for artifact in artifacts: + if artifact.kind == "npz" or (artifact.kind == "telemetry" and artifact.path.suffix == ".npz"): + _validate_npz(artifact, errors) + elif artifact.kind == "formula": + _validate_formula(artifact, errors) + elif artifact.kind == "validation": + _validate_validation(artifact, errors, roots) + elif artifact.kind == "telemetry" and artifact.document is not None: + if not artifact.document.get("schema_version"): + errors.append(_issue("telemetry_schema_missing", "telemetry JSON lacks schema_version", artifact.relative_path)) + if artifact.document: + for key, digest in _walk_hash_links(artifact.document): + if len(digest) == 64 and digest not in digest_index: + errors.append(_issue("hash_link_broken", f"{key} references absent artifact hash {digest}", artifact.relative_path)) + + kinds = {artifact.kind for artifact in artifacts} + for kind in ("npz", "formula", "validation", "telemetry"): + if kind not in kinds: + errors.append(_issue("artifact_kind_missing", f"run has no {kind} artifact")) + + audit_passed = not errors + validation_artifacts = [artifact for artifact in artifacts if artifact.kind == "validation"] + validations_complete = bool(validation_artifacts) and all( + artifact.document is not None and artifact.document.get("status") not in {"failed", "incomplete"} + for artifact in validation_artifacts + ) + chain_scientifically_eligible = audit_passed and validations_complete + candidates = [ + { + "artifact_id": _artifact_id(artifact), + "path": artifact.relative_path, + "sha256": artifact.digest, + "run_id": run_id, + "status": ( + "candidate" + if chain_scientifically_eligible + else "rejected" + ), + } + for artifact in artifacts + if artifact.kind in {"formula", "validation"} + ] + candidate_registry = { + "schema_version": CANDIDATE_SCHEMA_VERSION, + "run_id": run_id, + "status": "pass" if audit_passed else "fail", + "promotion_eligible": False, + "scientifically_eligible": chain_scientifically_eligible, + "artifacts": candidates, + } + report = { + "schema_version": AUDIT_SCHEMA_VERSION, + "run_id": run_id, + "data_run_id": data_run_id, + "formula_run_id": formula_run_id, + "generated_at": datetime.now(timezone.utc).isoformat(), + "status": "pass" if not errors else "fail", + "strict_failure": bool(errors), + "summary": {"artifact_count": len(artifacts), "candidate_count": len(candidates), "error_count": len(errors), "warning_count": len(warnings)}, + "errors": errors, + "warnings": warnings, + "artifacts": [{"kind": a.kind, "path": a.relative_path, "sha256": a.digest} for a in artifacts], + "historical": _historical_snapshot(sr_root), + "promotion": {"automatic": False, "required_action": "manual review before any canonical registry edit"}, + "scope_exclusions": ["Vortex", "V5", "Stage 4 figure generation"], + } + atomic_write_json(results_dir / "candidate_registry.json", candidate_registry) + atomic_write_json(results_dir / "audit_report.json", report) + return report, candidate_registry + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--run-id", required=True, help="Stage 2/3 results run identifier") + parser.add_argument("--data-run-id", help="Stage 1 data run identifier; defaults to --run-id") + parser.add_argument("--formula-run-id", help="Stage 2 formula run identifier; defaults to --run-id") + parser.add_argument("--strict", action="store_true", help="return non-zero when any schema or hash chain check fails") + return parser + + +def main(argv: list[str] | None = None) -> int: + args = build_parser().parse_args(argv) + report, _ = audit_run( + args.run_id, args.data_run_id, formula_run_id=args.formula_run_id, sr_root=SR_ROOT, + ) + print(json.dumps(report["summary"], sort_keys=True)) + print(f"audit report: results/runs/{args.run_id}/audit_report.json") + return 1 if args.strict and report["strict_failure"] else 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/tools/plot_sr_diagnostics.py b/src/SR_analysis/tools/plot_sr_diagnostics.py new file mode 100644 index 0000000..cf6ce5a --- /dev/null +++ b/src/SR_analysis/tools/plot_sr_diagnostics.py @@ -0,0 +1,208 @@ +#!/usr/bin/env python3 +"""Render compact diagnostic figures from the SR plotting CSV packages.""" +from __future__ import annotations + +import argparse +import csv +from pathlib import Path +from typing import Sequence + +import matplotlib.pyplot as plt +import numpy as np + +TRAINING_SCENES = ( + "karman_re50", "karman_re100", "karman_re200", "karman_re400", + "illusion_0.75L", "illusion_1L", "illusion_1.5L", +) +LABELS = ("K50", "K100", "K200", "K400", "I0.75L", "I1L", "I1.5L") + + +def read_rows(path: Path) -> list[dict[str, str]]: + with path.open(newline="", encoding="utf-8") as handle: + return list(csv.DictReader(handle)) + + +def final_similarity(root: Path, package: str, scene: str, source: str) -> float: + rows = read_rows(root / package / scene / f"{source}_dtw_convergence.csv") + return float(rows[-1]["similarity"]) + + +def save(fig: plt.Figure, output: Path, stem: str) -> None: + output.mkdir(parents=True, exist_ok=True) + fig.savefig(output / f"{stem}.png", dpi=220, bbox_inches="tight") + fig.savefig(output / f"{stem}.pdf", bbox_inches="tight") + plt.close(fig) + + +def plot_performance(root: Path, output: Path) -> None: + standard = "article2-timeseries-csv-20260720" + long_sr = "article2-long-timeseries-csv-20260720" + ppo200 = [final_similarity(root, standard, scene, "ppo") for scene in TRAINING_SCENES] + sr200 = [final_similarity(root, standard, scene, "sr") for scene in TRAINING_SCENES] + sr400 = [final_similarity(root, long_sr, scene, "sr") for scene in TRAINING_SCENES] + long_ppo_root = root / "article2-plotting-package-20260721/long_ppo" + ppo400 = [] + for scene in TRAINING_SCENES: + path = long_ppo_root / scene / "ppo_dtw_convergence.csv" + ppo400.append(float(read_rows(path)[-1]["similarity"]) if path.is_file() else np.nan) + + x = np.arange(len(LABELS)) + width = 0.2 + fig, ax = plt.subplots(figsize=(11, 4.8)) + ax.bar(x - 1.5 * width, ppo200, width, label="PPO 200") + ax.bar(x - 0.5 * width, sr200, width, label="SR 200") + ax.bar(x + 0.5 * width, ppo400, width, label="PPO 400") + ax.bar(x + 1.5 * width, sr400, width, label="SR 400") + ax.set_ylabel("Legacy DTW similarity") + ax.set_xlabel("Training case") + ax.set_xticks(x, LABELS) + ax.set_ylim(0.65, 1.01) + ax.grid(axis="y", alpha=0.25) + ax.legend(ncol=4, frameon=False) + ax.set_title("Closed-loop PPO and symbolic-controller performance") + fig.tight_layout() + save(fig, output, "01_training_case_performance") + + +def plot_generalization(repo_root: Path, output: Path) -> None: + path = repo_root / "src/SR_analysis/results/runs/article2-generalization-summary-20260720/generalization.csv" + rows = read_rows(path) + fig, axes = plt.subplots(1, 2, figsize=(10.5, 4.2)) + for ax, objective, xlabel in zip(axes, ("karman", "illusion"), ("Code Reynolds label", "Target-size label L")): + subset = sorted((row for row in rows if row["objective"] == objective), key=lambda row: float(row["parameter"])) + interpolation = [row for row in subset if row["classification"] == "interpolation"] + extrapolation = [row for row in subset if row["classification"] == "extrapolation"] + ax.plot([float(r["parameter"]) for r in subset], [float(r["legacy_dtw"]) for r in subset], color="0.6", linewidth=1) + ax.scatter([float(r["parameter"]) for r in interpolation], [float(r["legacy_dtw"]) for r in interpolation], label="Interpolation", s=48) + ax.scatter([float(r["parameter"]) for r in extrapolation], [float(r["legacy_dtw"]) for r in extrapolation], label="Extrapolation", marker="s", s=48) + ax.set_xlabel(xlabel) + ax.set_ylabel("Legacy DTW similarity") + ax.set_ylim(0.7, 1.01) + ax.grid(alpha=0.25) + ax.legend(frameon=False) + ax.set_title("Kármán unseen Re" if objective == "karman" else "Illusion unseen target size") + fig.tight_layout() + save(fig, output, "02_pointwise_generalization") + + +def plot_steady(repo_root: Path, output: Path) -> None: + path = repo_root / "src/SR_analysis/results/runs/article2-steady-analysis-20260720/steady_rotation_sweep.csv" + rows = read_rows(path) + magnitude = np.asarray([float(row["rear_alpha_magnitude"]) for row in rows]) + similarity = np.asarray([float(row["legacy_dtw"]) for row in rows]) + error = np.asarray([float(row["mean_abs_sensor_error"]) for row in rows]) + fig, ax = plt.subplots(figsize=(7.2, 4.5)) + secondary = ax.twinx() + ax.plot(magnitude, similarity, marker="o", label="DTW similarity") + secondary.plot(magnitude, error, marker="s", linestyle="--", label="Mean sensor error", color="tab:orange") + ax.axvline(3.4312086805, linestyle=":", color="0.35", label="SR rear constant 3.4312") + ax.set_xlabel("Rear counter-rotation magnitude |α|") + ax.set_ylabel("Legacy DTW similarity") + secondary.set_ylabel("Mean absolute sensor error") + ax.set_ylim(0.6, 1.01) + ax.grid(alpha=0.25) + lines = ax.get_lines() + secondary.get_lines() + ax.legend(lines, [line.get_label() for line in lines], frameon=False, loc="center right") + ax.set_title("Steady-cloak constant-rotation calibration") + fig.tight_layout() + save(fig, output, "03_steady_rotation_calibration") + + +def plot_offline_residuals(root: Path, output: Path) -> None: + rows = read_rows(root / "article2-plotting-package-20260721/offline_predictions.csv") + rmse = {scene: [] for scene in TRAINING_SCENES} + for scene in TRAINING_SCENES: + subset = [row for row in rows if row["scene"] == scene] + for action in ("front", "upper", "lower"): + residual = np.asarray([float(row[f"residual_alpha_{action}"]) for row in subset]) + rmse[scene].append(float(np.sqrt(np.mean(residual**2)))) + fig, ax = plt.subplots(figsize=(10.5, 4.5)) + x = np.arange(len(LABELS)) + width = 0.25 + for index, action in enumerate(("Front", "Upper", "Lower")): + ax.bar(x + (index - 1) * width, [rmse[scene][index] for scene in TRAINING_SCENES], width, label=action) + ax.set_xticks(x, LABELS) + ax.set_xlabel("Training case") + ax.set_ylabel("Offline action RMSE in α") + ax.set_title("SR imitation error on PPO-visited causal states") + ax.grid(axis="y", alpha=0.25) + ax.legend(frameon=False, ncol=3) + fig.tight_layout() + save(fig, output, "04_offline_action_rmse") + + +def plot_ablation(root: Path, output: Path) -> None: + rows = read_rows(root / "article2-plotting-package-20260721/ablation_summary.csv") + karman_variants = ("k_front0", "k_rear0", "k_rear1") + karman_scenes = ("karman_re50", "karman_re100", "karman_re200", "karman_re400") + illusion_variants = ("i_front0", "i_front1", "i_rear0", "i_rear1") + illusion_scenes = ("illusion_0.75L", "illusion_1L", "illusion_1.5L") + fig, axes = plt.subplots(1, 2, figsize=(11.5, 4.5)) + for ax, variants, scenes, title in ( + (axes[0], karman_variants, karman_scenes, "Kármán 40-step term deletion"), + (axes[1], illusion_variants, illusion_scenes, "Illusion 40-step term deletion"), + ): + x = np.arange(len(scenes)) + width = 0.8 / len(variants) + for index, variant in enumerate(variants): + values = [float(next(row["similarity"] for row in rows if row["variant"] == variant and row["scene"] == scene)) for scene in scenes] + ax.bar(x + (index - (len(variants) - 1) / 2) * width, values, width, label=variant) + ax.set_xticks(x, [scene.replace("karman_", "").replace("illusion_", "") for scene in scenes]) + ax.set_xlabel("Case") + ax.set_ylabel("Legacy DTW similarity") + ax.set_ylim(0.6, 1.0) + ax.grid(axis="y", alpha=0.25) + ax.legend(frameon=False, fontsize=8) + ax.set_title(title) + fig.tight_layout() + save(fig, output, "05_term_deletion") + + +def plot_example_timeseries(root: Path, output: Path) -> None: + package = root / "article2-timeseries-csv-20260720/karman_re100" + sr = read_rows(package / "sr_wide.csv") + ppo = read_rows(package / "ppo_wide.csv") + target = read_rows(package / "target_wide.csv") + fig, axes = plt.subplots(2, 1, figsize=(10.5, 6.2), sharex=False) + axes[0].plot([float(r["t_D"]) for r in target], [float(r["sensors_center_ux"]) for r in target], label="Target reference") + axes[0].plot([float(r["t_D"]) for r in ppo], [float(r["sensors_center_ux"]) for r in ppo], label="PPO") + axes[0].plot([float(r["t_D"]) for r in sr], [float(r["sensors_center_ux"]) for r in sr], label="SR") + axes[0].set_ylabel("Center sensor ux / U0") + axes[0].set_xlabel("t U0 / D") + axes[0].legend(frameon=False, ncol=3) + axes[0].grid(alpha=0.25) + axes[0].set_title("Kármán Re100 observer signal") + for action, label in (("front", "Front"), ("upper", "Upper"), ("lower", "Lower")): + axes[1].plot([float(r["t_D"]) for r in sr], [float(r[f"actions_alpha_{action}"]) for r in sr], label=label) + axes[1].set_ylabel("SR action α") + axes[1].set_xlabel("t U0 / D") + axes[1].legend(frameon=False, ncol=3) + axes[1].grid(alpha=0.25) + fig.tight_layout() + save(fig, output, "06_example_timeseries_karman_re100") + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--repo-root", type=Path, default=Path(__file__).resolve().parents[3]) + parser.add_argument("--output-dir", type=Path, required=True) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + repo_root = args.repo_root.resolve() + run_root = repo_root / "src/SR_analysis/results/runs" + output = args.output_dir if args.output_dir.is_absolute() else repo_root / args.output_dir + plt.style.use("seaborn-v0_8-whitegrid") + plot_performance(run_root, output) + plot_generalization(repo_root, output) + plot_steady(repo_root, output) + plot_offline_residuals(run_root, output) + plot_ablation(run_root, output) + plot_example_timeseries(run_root, output) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/tools/prepare_plotting_data.py b/src/SR_analysis/tools/prepare_plotting_data.py new file mode 100644 index 0000000..64a82b2 --- /dev/null +++ b/src/SR_analysis/tools/prepare_plotting_data.py @@ -0,0 +1,363 @@ +#!/usr/bin/env python3 +"""Build plotting-ready SR datasets from immutable article artifacts.""" +from __future__ import annotations + +import argparse +import csv +import json +from copy import deepcopy +from pathlib import Path +from typing import Any, Mapping, Sequence + +import numpy as np + +from SR_analysis.configs import get_scene +from SR_analysis.stage_2_fit import prepare_scene +from SR_analysis.tools.telemetry_to_csv import export as export_trajectory +from SR_analysis.utils.data_contracts import CAUSAL_ALIGNMENT +from SR_analysis.utils.feature_state import StatefulFeatureBuilder +from SR_analysis.utils.formula_schema import ( + decompose_additive_terms, + evaluate_formula, + load_formula, +) +from SR_analysis.utils.g_operator import apply_G_alpha, apply_G_raw12, apply_G_target_force +from SR_analysis.utils.provenance import atomic_write_json, hash_file + +TRAINING_SCENES = ( + "karman_re50", + "karman_re100", + "karman_re200", + "karman_re400", + "illusion_0.75L", + "illusion_1L", + "illusion_1.5L", +) +ACTION_NAMES = ("front", "upper", "lower") +FORMULA_ROOTS = { + "karman": Path("src/SR_analysis/results/runs/article-refit-karman-topology-a-20260718/formulas"), + "illusion": Path("src/SR_analysis/results/runs/article-refit-illusion-topology-a-20260718/formulas"), +} +DATA_ROOTS = { + "karman": Path("src/SR_analysis/data/runs/article-joint-data-karman-20260718"), + "illusion": Path("src/SR_analysis/data/runs/article-joint-data-illusion-20260718"), +} +LONG_RUNS = { + "karman": Path("src/SR_analysis/results/runs/article2-long-karman-20260720"), + "illusion": Path("src/SR_analysis/results/runs/article2-long-illusion-20260720"), +} + + +def _formula_paths(scene_id: str) -> tuple[Path, Path]: + root = FORMULA_ROOTS[scene_id] + return root / "joint_front.json", root / "joint_rear_shared_upper.json" + + +def _term_formula(formula: Mapping[str, Any], expression: str) -> dict[str, Any]: + item = deepcopy(dict(formula)) + for key in ("source_path", "source_hash", "deployment_expression_hash"): + item.pop(key, None) + item["deployment_expression"] = expression + return item + + +def _mapped_predictions( + front: Mapping[str, Any], + rear: Mapping[str, Any], + X: np.ndarray, + GX: np.ndarray, +) -> tuple[np.ndarray, dict[str, np.ndarray]]: + front_x = np.asarray(evaluate_formula(front, X), dtype=float) + front_g = np.asarray(evaluate_formula(front, GX), dtype=float) + upper = np.asarray(evaluate_formula(rear, X), dtype=float) + lower = -np.asarray(evaluate_formula(rear, GX), dtype=float) + prediction = np.column_stack((0.5 * (front_x - front_g), upper, lower)) + contributions: dict[str, np.ndarray] = {} + for index, term in enumerate(decompose_additive_terms(front["deployment_expression"], front["feature_names"])): + term_formula = _term_formula(front, term) + contribution = 0.5 * ( + np.asarray(evaluate_formula(term_formula, X), dtype=float) + - np.asarray(evaluate_formula(term_formula, GX), dtype=float) + ) + contributions[f"front_t{index}_{term}"] = contribution + for index, term in enumerate(decompose_additive_terms(rear["deployment_expression"], rear["feature_names"])): + term_formula = _term_formula(rear, term) + contributions[f"upper_t{index}_{term}"] = np.asarray(evaluate_formula(term_formula, X), dtype=float) + contributions[f"lower_t{index}_{term}"] = -np.asarray(evaluate_formula(term_formula, GX), dtype=float) + return prediction, contributions + + +def _safe_name(value: str) -> str: + return "".join(character if character.isalnum() else "_" for character in value).strip("_") + + +def _write_rows(path: Path, fieldnames: Sequence[str], rows: Sequence[Mapping[str, Any]]) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.DictWriter(handle, fieldnames=fieldnames) + writer.writeheader() + writer.writerows(rows) + + +def export_offline_predictions(repo_root: Path, output_dir: Path) -> dict[str, Any]: + rows: list[dict[str, Any]] = [] + term_rows: list[dict[str, Any]] = [] + feature_names: set[str] = set() + term_names: set[str] = set() + for scene in TRAINING_SCENES: + cfg = get_scene(scene) + scene_id = str(cfg["scene_id"]) + front_path, rear_path = (repo_root / path for path in _formula_paths(scene_id)) + front, rear = load_formula(front_path), load_formula(rear_path) + prepared = prepare_scene( + scene, + repo_root / DATA_ROOTS[scene_id], + alignment=CAUSAL_ALIGNMENT, + joint=True, + feature_set="symmetry", + feature_profile="actual_plus_target" if scene_id == "illusion" else "actual_only", + ) + dataset = prepared.dataset + mirrored = prepared.mirrored_dataset + prediction, contributions = _mapped_predictions(front, rear, dataset.X, mirrored.X) + feature_names.update(prepared.feature_names) + term_names.update(_safe_name(name) for name in contributions) + target_indices = np.asarray(dataset.metadata["target_indices"], dtype=int) + for row_index, (state_index, target_index) in enumerate(zip(dataset.kept_indices, target_indices)): + base: dict[str, Any] = { + "objective": scene_id, + "scene": scene, + "state_step": int(state_index), + "target_action_step": int(target_index), + "t_D": float(state_index) * float(cfg["control_dt"]), + } + for column, name in enumerate(prepared.feature_names): + base[f"feature_{name}"] = float(dataset.X[row_index, column]) + for channel, action_name in enumerate(ACTION_NAMES): + actual = float(dataset.Y[row_index, channel]) + predicted = float(prediction[row_index, channel]) + base[f"actual_alpha_{action_name}"] = actual + base[f"predicted_alpha_{action_name}"] = predicted + base[f"residual_alpha_{action_name}"] = actual - predicted + rows.append(base) + term_base = { + "objective": scene_id, + "scene": scene, + "source": "ppo_state_offline", + "step": int(state_index), + "t_D": float(state_index) * float(cfg["control_dt"]), + } + for name, values in contributions.items(): + term_base[f"term_{_safe_name(name)}"] = float(values[row_index]) + for channel, action_name in enumerate(ACTION_NAMES): + term_base[f"predicted_alpha_{action_name}"] = float(prediction[row_index, channel]) + term_rows.append(term_base) + + offline_fields = [ + "objective", "scene", "state_step", "target_action_step", "t_D", + *(f"feature_{name}" for name in sorted(feature_names)), + *(f"actual_alpha_{name}" for name in ACTION_NAMES), + *(f"predicted_alpha_{name}" for name in ACTION_NAMES), + *(f"residual_alpha_{name}" for name in ACTION_NAMES), + ] + term_fields = [ + "objective", "scene", "source", "step", "t_D", + *(f"term_{name}" for name in sorted(term_names)), + *(f"predicted_alpha_{name}" for name in ACTION_NAMES), + ] + _write_rows(output_dir / "offline_predictions.csv", offline_fields, rows) + _write_rows(output_dir / "term_contributions_ppo_states.csv", term_fields, term_rows) + return {"offline_rows": len(rows), "offline_term_rows": len(term_rows)} + + +def _telemetry_path(run_root: Path, scene: str) -> Path: + matches = sorted((run_root / "telemetry").glob(f"{scene.replace('.', 'p')}__pysr__*.npz")) + if len(matches) != 1: + raise FileNotFoundError(f"expected one SR telemetry for {scene} below {run_root}, found {matches}") + return matches[0] + + +def export_closed_loop_terms(repo_root: Path, output_dir: Path) -> dict[str, Any]: + rows: list[dict[str, Any]] = [] + all_terms: set[str] = set() + for scene in TRAINING_SCENES: + cfg = get_scene(scene) + scene_id = str(cfg["scene_id"]) + front_path, rear_path = (repo_root / path for path in _formula_paths(scene_id)) + front, rear = load_formula(front_path), load_formula(rear_path) + telemetry_path = _telemetry_path(repo_root / LONG_RUNS[scene_id], scene) + with np.load(telemetry_path, allow_pickle=False) as data: + sensors = np.asarray(data["sensors"], dtype=float) + forces = np.asarray(data["forces"], dtype=float) + actions = np.asarray(data["actions_omega"], dtype=float) + target_forces = np.asarray(data["target_forces"], dtype=float) + common = dict( + mu=float(cfg["mu"]), dt_c=float(cfg["control_dt"]), u0=float(cfg["u0"]), + d=20.0, action_mode="physical", include_mu=True, include_cos_sin=True, + require_target=scene_id == "illusion", + ) + builder = StatefulFeatureBuilder(**common) + g_builder = StatefulFeatureBuilder(**common) + initial_omega = np.asarray(cfg["policy_init_action"], dtype=float) * float(cfg["u0"]) + for _ in range(2): + builder.observe_action(initial_omega) + g_builder.observe_action(apply_G_alpha(initial_omega)) + front_terms = decompose_additive_terms(front["deployment_expression"], front["feature_names"]) + rear_terms = decompose_additive_terms(rear["deployment_expression"], rear["feature_names"]) + for step in range(len(sensors) - 1): + # Telemetry state ``step`` is post-action ``step``; under the causal + # contract it predicts the command applied at ``step + 1``. + builder.observe_action(actions[step]) + g_builder.observe_action(apply_G_alpha(actions[step])) + raw = np.hstack((sensors[step], forces[step])) + target = target_forces[step] if len(target_forces) else None + features, _ = builder.step(raw[:6], raw[6:], target_force=target) + g_raw = apply_G_raw12(raw) + g_target = None if target is None else apply_G_target_force(target) + g_features, _ = g_builder.step(g_raw[:6], g_raw[6:], target_force=g_target) + row: dict[str, Any] = { + "objective": scene_id, + "scene": scene, + "source": "sr_closed_loop_400", + "state_step": step, + "target_action_step": step + 1, + "t_D": step * float(cfg["control_dt"]), + } + predicted = np.zeros(3, dtype=float) + for index, term in enumerate(front_terms): + formula = _term_formula(front, term) + value = 0.5 * ( + float(evaluate_formula(formula, features)) + - float(evaluate_formula(formula, g_features)) + ) + name = f"front_t{index}_{_safe_name(term)}" + row[f"term_{name}"] = value + all_terms.add(name) + predicted[0] += value + for index, term in enumerate(rear_terms): + formula = _term_formula(rear, term) + upper = float(evaluate_formula(formula, features)) + lower = -float(evaluate_formula(formula, g_features)) + upper_name = f"upper_t{index}_{_safe_name(term)}" + lower_name = f"lower_t{index}_{_safe_name(term)}" + row[f"term_{upper_name}"] = upper + row[f"term_{lower_name}"] = lower + all_terms.update((upper_name, lower_name)) + predicted[1] += upper + predicted[2] += lower + for channel, action_name in enumerate(ACTION_NAMES): + row[f"predicted_alpha_{action_name}"] = float(predicted[channel]) + target_action = float(actions[step + 1, channel] / cfg["u0"]) + row[f"target_alpha_{action_name}"] = target_action + row[f"residual_alpha_{action_name}"] = target_action - float(predicted[channel]) + rows.append(row) + fields = [ + "objective", "scene", "source", "state_step", "target_action_step", "t_D", + *(f"term_{name}" for name in sorted(all_terms)), + *(f"predicted_alpha_{name}" for name in ACTION_NAMES), + *(f"target_alpha_{name}" for name in ACTION_NAMES), + *(f"residual_alpha_{name}" for name in ACTION_NAMES), + ] + _write_rows(output_dir / "term_contributions_sr_closed_loop_400.csv", fields, rows) + return {"closed_loop_term_rows": len(rows)} + + +def export_ablation(repo_root: Path, output_dir: Path) -> dict[str, Any]: + rows: list[dict[str, Any]] = [] + for run_dir in sorted((repo_root / "src/SR_analysis/results/runs").glob("article-ablation-L2-*-20260718")): + for path in sorted((run_dir / "validations").glob("*.json")): + record = json.loads(path.read_text(encoding="utf-8")) + metric = record.get("metrics", {}).get("legacy_reference_cycle_vs_last_recorded_cycle") + rows.append({ + "run_id": run_dir.name, + "variant": run_dir.name.removeprefix("article-ablation-L2-").removesuffix("-20260718"), + "scene": record.get("scene"), + "steps": record.get("n_steps"), + "status": record.get("status"), + "similarity": None if metric is None else metric.get("similarity"), + "lag": None if metric is None else metric.get("lag"), + "termination_reason": record.get("termination_reason"), + "formula_hash": record.get("formula_hash"), + }) + fields = ("run_id", "variant", "scene", "steps", "status", "similarity", "lag", "termination_reason", "formula_hash") + _write_rows(output_dir / "ablation_summary.csv", fields, rows) + + scaling_path = repo_root / "src/SR_analysis/results/runs/article-scaling-L1-v2-20260718/summary.json" + scaling = json.loads(scaling_path.read_text(encoding="utf-8"))["rows"] + scaling_rows = [] + for item in scaling: + row = {key: item.get(key) for key in ("family", "scene", "variant", "failed", "n")} + for metric in ("action_min", "action_max", "action_rms"): + values = item.get(metric) or [None, None, None] + for index, action_name in enumerate(ACTION_NAMES): + row[f"{metric}_{action_name}"] = values[index] + scaling_rows.append(row) + scaling_fields = [ + "family", "scene", "variant", "failed", "n", + *(f"{metric}_{name}" for metric in ("action_min", "action_max", "action_rms") for name in ACTION_NAMES), + ] + _write_rows(output_dir / "scaling_summary.csv", scaling_fields, scaling_rows) + return {"ablation_rows": len(rows), "scaling_rows": len(scaling_rows)} + + +def export_steady(repo_root: Path, output_dir: Path) -> dict[str, Any]: + count = 0 + for magnitude in range(7): + run = repo_root / f"src/SR_analysis/results/runs/article2-steady-sweep-a{magnitude}-20260720" + telemetry = run / "telemetry/steady__constant__f-none__si-800.npz" + export_trajectory( + telemetry, + output_dir / "steady_timeseries" / f"alpha_{magnitude}", + "steady", + "sr", + 800, + 30, + ) + count += 1 + return {"steady_timeseries_cases": count} + + +def build_manifest(repo_root: Path, output_dir: Path, summary: Mapping[str, Any]) -> None: + artifacts = [] + for path in sorted( + candidate + for pattern in ("*.csv", "*.png", "*.pdf") + for candidate in output_dir.rglob(pattern) + ): + artifacts.append({"path": str(path.relative_to(repo_root)), "sha256": hash_file(path)}) + atomic_write_json( + output_dir / "manifest.json", + { + "schema_version": "sr-plotting-package-v1", + "source_policy": "immutable article and Article2 artifacts; no scientific refit", + "summary": dict(summary), + "artifacts": artifacts, + }, + ) + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--repo-root", type=Path, default=Path(__file__).resolve().parents[3]) + parser.add_argument("--output-dir", type=Path, required=True) + parser.add_argument("--replace", action="store_true", help="replace derived files in output-dir") + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + repo_root = args.repo_root.resolve() + output_dir = args.output_dir if args.output_dir.is_absolute() else repo_root / args.output_dir + if output_dir.exists() and any(output_dir.iterdir()) and not args.replace: + raise FileExistsError(f"refusing to overwrite non-empty plotting package: {output_dir}") + summary: dict[str, Any] = {} + summary.update(export_offline_predictions(repo_root, output_dir)) + summary.update(export_closed_loop_terms(repo_root, output_dir)) + summary.update(export_ablation(repo_root, output_dir)) + summary.update(export_steady(repo_root, output_dir)) + build_manifest(repo_root, output_dir, summary) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/tools/telemetry_to_csv.py b/src/SR_analysis/tools/telemetry_to_csv.py new file mode 100644 index 0000000..4063c50 --- /dev/null +++ b/src/SR_analysis/tools/telemetry_to_csv.py @@ -0,0 +1,162 @@ +#!/usr/bin/env python3 +"""Export Stage 1 or Stage 3 trajectories to analysis-ready CSV files.""" +from __future__ import annotations + +import argparse +import csv +import json +from pathlib import Path +from typing import Any, Mapping, Sequence + +import numpy as np + +from SR_analysis.utils.metrics import legacy_cycle_similarity + +SENSOR_NAMES = ("upper_ux", "upper_uy", "center_ux", "center_uy", "lower_ux", "lower_uy") +FORCE_NAMES = ("front_fx", "front_fy", "upper_fx", "upper_fy", "lower_fx", "lower_fy") +ACTION_NAMES = ("front", "upper", "lower") + + +def load_trajectory(path: Path) -> dict[str, np.ndarray]: + with np.load(path, allow_pickle=False) as data: + return {name: np.asarray(data[name]) for name in data.files} + + +def canonical_arrays(data: Mapping[str, np.ndarray], source: str) -> dict[str, np.ndarray]: + result: dict[str, np.ndarray] = {} + sensors_key = "sensors_post" if source == "ppo" and "sensors_post" in data else "sensors" + forces_key = "forces_post" if source == "ppo" and "forces_post" in data else "forces" + if sensors_key in data: + result["sensors"] = np.asarray(data[sensors_key], dtype=float).reshape(-1, 6) + if forces_key in data: + result["forces"] = np.asarray(data[forces_key], dtype=float).reshape(-1, 6) + if source == "ppo": + if "actions_alpha_commanded" in data: + result["actions_alpha"] = np.asarray(data["actions_alpha_commanded"], dtype=float).reshape(-1, 3) + elif "actions_alpha" in data: + result["actions_alpha"] = np.asarray(data["actions_alpha"], dtype=float).reshape(-1, 3) + elif "actions" in data: + result["actions_alpha"] = np.asarray(data["actions"], dtype=float).reshape(-1, 3) + if "actions_omega_commanded" in data: + result["actions_omega"] = np.asarray(data["actions_omega_commanded"], dtype=float).reshape(-1, 3) + elif "actions_omega" in data: + result["actions_omega"] = np.asarray(data["actions_omega"], dtype=float).reshape(-1, 3) + else: + for key in ("actions_alpha", "actions_omega"): + if key in data: + result[key] = np.asarray(data[key], dtype=float).reshape(-1, 3) + for key in ("target_sensors", "target_forces", "target_phase"): + if key in data and np.asarray(data[key]).size: + width = 6 if key == "target_sensors" else 2 if key == "target_forces" else 1 + result[key] = np.asarray(data[key]).reshape(-1, width) + if "target_states" in data: + target_states = np.asarray(data["target_states"], dtype=float) + if target_states.shape[1] == 6: + result["sensors"] = target_states + elif target_states.shape[1] == 8: + result["target_forces"] = target_states[:, :2] + result["sensors"] = target_states[:, 2:8] + else: + raise ValueError(f"unsupported target_states width: {target_states.shape[1]}") + return result + + +def time_coordinate(n: int, sample_interval: int, u0: float = 0.01, diameter: float = 20.0) -> np.ndarray: + return np.arange(n, dtype=float) * sample_interval * u0 / diameter + + +def write_wide_csv(path: Path, arrays: Mapping[str, np.ndarray], scene: str, source: str, sample_interval: int) -> None: + n = max((len(value) for key, value in arrays.items() if key != "target_sensors"), default=0) + columns: list[tuple[str, np.ndarray]] = [] + for group, names in (("sensors", SENSOR_NAMES), ("forces", FORCE_NAMES), ("actions_alpha", ACTION_NAMES), ("actions_omega", ACTION_NAMES), ("target_forces", ("target_cd", "target_cl")), ("target_phase", ("target_phase",))): + if group in arrays: + values = np.asarray(arrays[group]).reshape(len(arrays[group]), -1) + columns.extend((f"{group}_{name}", values[:, index]) for index, name in enumerate(names)) + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.writer(handle) + writer.writerow(("scene", "source", "step", "t_D", *(name for name, _ in columns))) + times = time_coordinate(n, sample_interval) + for index in range(n): + writer.writerow((scene, source, index, times[index], *(values[index] if index < len(values) else "" for _, values in columns))) + + +def write_long_csv(path: Path, arrays: Mapping[str, np.ndarray], scene: str, source: str, sample_interval: int) -> None: + groups = (("sensors", SENSOR_NAMES, "velocity"), ("forces", FORCE_NAMES, "force"), ("actions_alpha", ACTION_NAMES, "alpha"), ("actions_omega", ACTION_NAMES, "omega"), ("target_forces", ("target_cd", "target_cl"), "target_force")) + path.parent.mkdir(parents=True, exist_ok=True) + with path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.writer(handle) + writer.writerow(("scene", "source", "step", "t_D", "channel_group", "channel_name", "value")) + for key, names, group in groups: + if key not in arrays: + continue + values = np.asarray(arrays[key]).reshape(len(arrays[key]), -1) + times = time_coordinate(len(values), sample_interval) + for step, row in enumerate(values): + for channel, value in zip(names, row): + writer.writerow((scene, source, step, times[step], group, channel, float(value))) + + +def legacy_similarity(target: np.ndarray, state: np.ndarray, conv_len: int) -> dict[str, Any]: + metric = legacy_cycle_similarity(target, state, conv_len) + return { + "similarity": metric["similarity"], + "lag": metric["lag"], + "per_channel": [metric["per_channel"][str(index)] for index in range(6)], + } + + +def write_convergence_csv(path: Path, sensors: np.ndarray, target: np.ndarray, conv_len: int, scene: str, source: str, sample_interval: int) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + endpoints = list(range(max(2 * conv_len, conv_len), len(sensors) + 1, conv_len)) + if not endpoints or endpoints[-1] != len(sensors): + endpoints.append(len(sensors)) + with path.open("w", newline="", encoding="utf-8") as handle: + writer = csv.writer(handle) + writer.writerow(("scene", "source", "end_step", "t_D", "conv_len", "similarity", "lag", *(f"channel_{i}" for i in range(6)))) + for end_step in endpoints: + if end_step < conv_len or len(target) < 2 * conv_len: + continue + metric = legacy_similarity(target, sensors[:end_step], conv_len) + writer.writerow((scene, source, end_step, end_step * sample_interval * 0.01 / 20.0, conv_len, metric["similarity"], metric["lag"], *metric["per_channel"])) + + +def export(path: Path, output_dir: Path, scene: str, source: str, sample_interval: int, conv_len: int, target_path: Path | None = None) -> dict[str, Any]: + arrays = canonical_arrays(load_trajectory(path), source) + if target_path is not None: + target_data = canonical_arrays(load_trajectory(target_path), "target") + if "sensors" in target_data: + arrays["target_sensors"] = target_data["sensors"] + write_wide_csv(output_dir / f"{source}_wide.csv", arrays, scene, source, sample_interval) + write_long_csv(output_dir / f"{source}_long.csv", arrays, scene, source, sample_interval) + if "target_sensors" in arrays: + target_arrays = {"sensors": arrays["target_sensors"]} + write_wide_csv(output_dir / "target_wide.csv", target_arrays, scene, "target", sample_interval) + write_long_csv(output_dir / "target_long.csv", target_arrays, scene, "target", sample_interval) + if "sensors" in arrays: + write_convergence_csv(output_dir / f"{source}_dtw_convergence.csv", arrays["sensors"], arrays["target_sensors"], conv_len, scene, source, sample_interval) + summary = {"scene": scene, "source": source, "input": str(path), "sample_interval": sample_interval, "conv_len": conv_len, "rows": {key: len(value) for key, value in arrays.items()}} + (output_dir / f"{source}_manifest.json").write_text(json.dumps(summary, indent=2) + "\n", encoding="utf-8") + return summary + + +def build_parser() -> argparse.ArgumentParser: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument("--input", type=Path, required=True) + parser.add_argument("--output-dir", type=Path, required=True) + parser.add_argument("--scene", required=True) + parser.add_argument("--source", choices=("ppo", "sr"), required=True) + parser.add_argument("--sample-interval", type=int, required=True) + parser.add_argument("--conv-len", type=int, required=True) + parser.add_argument("--target", type=Path) + return parser + + +def main(argv: Sequence[str] | None = None) -> int: + args = build_parser().parse_args(argv) + export(args.input, args.output_dir, args.scene, args.source, args.sample_interval, args.conv_len, args.target) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/src/SR_analysis/utils/__init__.py b/src/SR_analysis/utils/__init__.py index 0b608d0..8859313 100644 --- a/src/SR_analysis/utils/__init__.py +++ b/src/SR_analysis/utils/__init__.py @@ -1,23 +1,23 @@ -"""SR_analysis utilities: feature building, SINDy fitting, harmonics, CFD interface, G-operator. +"""Shared contracts for the active three-stage SR pipeline. -All four pipeline stages (infer -> fit -> validate -> analyze) import from this package. +The current route is inference, symbolic fitting, and closed-loop validation. +Legacy SINDy helpers remain importable for historical scripts but are not part of +that article pipeline. """ from .feature_builder import ( - compute_dimensionless, compute_features, build_feature_matrix, - get_feature_names, apply_G_alpha, apply_G_x, - CORE_FEAT_KEYS, CORE_FEAT_KEYS_V2, TIME_FEAT_KEYS, - MU_FEAT_KEYS, ALL_FEAT_KEYS, ALL_FEAT_KEYS_V2, - ILLUSION_TARGET_KEYS, ILLUSION_FEAT_KEYS_V2, ILLUSION_ALL_FEAT_KEYS_V2, - PHYSICS_FEAT_KEYS, ILLUSION_ERR_KEYS, - LAG_FEAT_KEYS, DERIV_FEAT_KEYS, ACTION_LAG_KEYS, - AUG_LEVEL_1_KEYS, AUG_LEVEL_2_KEYS, AUG_LEVEL_3_KEYS, AUG_LEVEL_4_KEYS, - ILLUSION_AUG_LEVEL_1_KEYS, ILLUSION_AUG_LEVEL_2_KEYS, - ILLUSION_AUG_LEVEL_3_KEYS, ILLUSION_AUG_LEVEL_4_KEYS, - PHASE_STATE_KEYS, ILLUSION_PHASE_KEYS, KARMAN_EXPANDED_KEYS, -) -from .sindy_fitter import ( - fit_channel, fit_sindy, print_control_law, - get_active_support, get_feature_matrix_from_data, - fit_sindy_weighted, get_feature_matrix_v2, - compute_action_deriv, get_feature_matrix_deriv, + ALL_FEAT_KEYS, + ALL_FEAT_KEYS_V2, + CORE_FEAT_KEYS, + CORE_FEAT_KEYS_V2, + ILLUSION_ERR_KEYS, + ILLUSION_TARGET_KEYS, + PHYSICS_FEAT_KEYS, + build_feature_matrix, + compute_dimensionless, + compute_features, + get_feature_names, ) +from .g_operator import apply_G_alpha + +# Historical SINDy and expanded-feature APIs remain available from their +# explicit modules, but are intentionally not re-exported by the active package. diff --git a/src/SR_analysis/utils/cfd_interface.py b/src/SR_analysis/utils/cfd_interface.py index a0b0f5e..0751414 100644 --- a/src/SR_analysis/utils/cfd_interface.py +++ b/src/SR_analysis/utils/cfd_interface.py @@ -15,7 +15,7 @@ import json import os import sys from collections import deque -from typing import Any, Dict, List, Optional, Tuple +from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple import numpy as np @@ -28,8 +28,15 @@ _SRC = os.path.join(_REPO, "src") if _SRC not in sys.path: sys.path.insert(0, _SRC) -from LegacyCelerisLab import FlowField # noqa: E402 -from LegacyCelerisLab import utils as legacy_utils # noqa: E402 +if TYPE_CHECKING: + from LegacyCelerisLab import FlowField + + +def _legacy_cfd(): + """Import CUDA-backed legacy CFD only when an environment helper needs it.""" + from LegacyCelerisLab import FlowField + from LegacyCelerisLab import utils as legacy_utils + return FlowField, legacy_utils # --------------------------------------------------------------------------- # Action-smoothing constant (legacy run() internal) @@ -47,6 +54,7 @@ def nu_from_re(re_code: float, u0: float = 0.01, d_ref: float = 40.0) -> float: def load_legacy_configs(config_dir: str) -> Tuple[Any, Any]: """Load and return legacy (cuda_config, field_config) from *config_dir*.""" + _, legacy_utils = _legacy_cfd() cuda_cfg = legacy_utils.load_cuda_config( os.path.join(config_dir, "config_cuda.json") ) @@ -128,7 +136,7 @@ def add_pinball( """Add pinball cylinders, stabilize, compute norm, bias rollout. Steps: - 1. add front, bottom, top cylinders + 1. add front, upper, lower cylinders 2. stabilize run(4*NX/U0, zero-action) 3. get_ddf() + save_ddf() (checkpoint) 4. FIFO_LEN x run(SAMPLE_INTERVAL, zero) -> compute norm @@ -265,10 +273,11 @@ def scale_action( u0: float = 0.01, n_total_bodies: int = 7, ) -> np.ndarray: - """Convert normalised action ([-1,1]^3) to legacy CFD action array. + """Convert native [front, upper, lower] action to legacy CFD array. Returns array of length *n_total_bodies* with cylinders' omegas at the - last 3 slots. + last 3 slots. Historical callers may label upper/lower as top/bottom; this + function deliberately preserves native object order and never rearranges. """ a = np.zeros(n_total_bodies, dtype=np.float32) omega = (np.array(action_norm, dtype=np.float32) * scale + np.array(bias, dtype=np.float32)) * u0 @@ -322,6 +331,9 @@ def save_vorticity_png(path: str, omega: np.ndarray, title: str = ""): # DTW similarity # --------------------------------------------------------------------------- +LEGACY_DTW_VERSION = "legacy_dtw_v1_abs_n_unclipped" + + def calc_lag(target: np.ndarray, state: np.ndarray) -> int: """Find lag that maximises cross-correlation between two 1-D signals.""" t = target - np.mean(target) @@ -343,22 +355,57 @@ def calc_dtw_sim(target: np.ndarray, state: np.ndarray) -> float: return float(1.0 - dtw[n, m] / n) +def _legacy_scene_similarity( + target_states: np.ndarray, + state_series: np.ndarray, + conv_len: int, + target_sensor_start: int, +) -> float: + target = np.asarray(target_states) + state = np.asarray(state_series) + target_sensors = target[:, target_sensor_start:target_sensor_start + 6] + if target_sensors.shape[1] != 6 or state.ndim != 2 or state.shape[1] < 6: + raise ValueError("legacy DTW requires six target and state sensor channels") + if len(target) < 2 * conv_len or len(state) < conv_len: + raise ValueError("legacy DTW requires target >= 2*conv_len and state >= conv_len") + + ref = target_sensors[conv_len:2 * conv_len, 1] + cur = state[-conv_len:, 1] + lag = calc_lag(ref, cur) + return float(sum( + calc_dtw_sim( + np.roll(target_sensors[:, i], -lag)[conv_len:2 * conv_len], + state[-conv_len:, i], + ) + for i in range(6) + ) / 6.0) + + +def compute_similarity_karman_legacy_v1( + target_states: np.ndarray, + state_series: np.ndarray, + conv_len: int = 30, +) -> float: + """Karman ``legacy_dtw_v1_abs_n_unclipped`` similarity.""" + return _legacy_scene_similarity(target_states, state_series, conv_len, 0) + + +def compute_similarity_illusion_legacy_v1( + target_states: np.ndarray, + state_series: np.ndarray, + conv_len: int = 36, +) -> float: + """Illusion legacy similarity; target layout is [fx, fy, six sensors].""" + return _legacy_scene_similarity(target_states, state_series, conv_len, 2) + + def compute_similarity( target_states: np.ndarray, state_series: np.ndarray, conv_len: int, ) -> float: - """Compute lag-compensated DTW similarity over *conv_len* window.""" - ref = target_states[conv_len:2 * conv_len, 1] - cur = state_series[-conv_len:, 1] - lag = calc_lag(ref, cur) - - sim_sum = 0.0 - for i in range(6): - target_seq = np.roll(target_states[:, i], -lag)[conv_len:2 * conv_len] - state_seq = state_series[-conv_len:, i] - sim_sum += calc_dtw_sim(target_seq, state_seq) / 6.0 - return float(sim_sum) + """Backward-compatible Karman wrapper for the versioned legacy metric.""" + return compute_similarity_karman_legacy_v1(target_states, state_series, conv_len) # --------------------------------------------------------------------------- diff --git a/src/SR_analysis/utils/data_contracts.py b/src/SR_analysis/utils/data_contracts.py new file mode 100644 index 0000000..b3a4ba2 --- /dev/null +++ b/src/SR_analysis/utils/data_contracts.py @@ -0,0 +1,225 @@ +"""Validated data contracts and explicit Stage 2/3 trajectory alignment.""" +from __future__ import annotations + +from dataclasses import dataclass +from typing import Any, Dict, Mapping, Optional, Sequence, Tuple + +import numpy as np + +from .feature_builder import build_feature_matrix, compute_dimensionless, compute_features + +HISTORICAL_ALIGNMENT = "historical_post_state_same_action" +CAUSAL_ALIGNMENT = "causal_post_state_to_next_action" +ALIGNMENTS = (HISTORICAL_ALIGNMENT, CAUSAL_ALIGNMENT) +OFFLINE_SPLIT_NAMES = ("train", "validation", "blind") + + +def contiguous_block_slices( + n_samples: int, + fractions: Sequence[float] = (0.6, 0.2, 0.2), +) -> Dict[str, slice]: + """Return ordered, non-overlapping train/validation/blind blocks.""" + if n_samples < 3: + raise ValueError("at least three samples are required for offline splits") + values = np.asarray(fractions, dtype=np.float64) + if values.shape != (3,) or np.any(values <= 0) or not np.isclose(values.sum(), 1.0): + raise ValueError("split fractions must be three positive values summing to one") + train_end = max(1, min(n_samples - 2, int(np.floor(n_samples * values[0])))) + validation_count = max(1, int(np.floor(n_samples * values[1]))) + validation_end = min(n_samples - 1, train_end + validation_count) + return { + "train": slice(0, train_end), + "validation": slice(train_end, validation_end), + "blind": slice(validation_end, n_samples), + } + + +@dataclass(frozen=True) +class BatchDataset: + """Aligned symbolic-regression dataset and its provenance.""" + + X: np.ndarray + Y: np.ndarray + kept_indices: np.ndarray + dropped_indices: np.ndarray + metadata: Dict[str, Any] + features: Dict[str, np.ndarray] + + def __iter__(self): + """Allow the convenient ``X, Y = dataset`` compatibility idiom.""" + yield self.X + yield self.Y + + +def _matrix(name: str, value: np.ndarray, columns: int, rows: Optional[int] = None) -> np.ndarray: + array = np.asarray(value, dtype=np.float64) + if array.ndim != 2 or array.shape[1] != columns: + raise ValueError("{} must have shape (T, {}), got {}".format(name, columns, array.shape)) + if rows is not None and array.shape[0] != rows: + raise ValueError("{} has {} rows; expected {}".format(name, array.shape[0], rows)) + if not np.all(np.isfinite(array)): + raise ValueError("{} contains non-finite values".format(name)) + return array + + +def validate_controlled_trajectory( + sensors: np.ndarray, + forces: np.ndarray, + actions: np.ndarray, + target_forces: Optional[np.ndarray] = None, + *, + illusion: bool = False, +) -> Tuple[np.ndarray, np.ndarray, np.ndarray, Optional[np.ndarray]]: + """Validate the legacy ``controlled.npz`` array schema. + + The legacy contract is sensors ``(T,6)``, forces ``(T,6)``, actions + ``(T,3)``, and optional illusion target forces ``(T,2)``. + """ + s = _matrix("sensors", sensors, 6) + f = _matrix("forces", forces, 6, s.shape[0]) + a = _matrix("actions", actions, 3, s.shape[0]) + if illusion and target_forces is None: + raise ValueError("illusion trajectories require target_forces with shape (T, 2)") + tf = None if target_forces is None else _matrix("target_forces", target_forces, 2, s.shape[0]) + return s, f, a, tf + + +def actions_to_alpha( + actions: np.ndarray, + *, + action_mode: str, + u0: float, + action_scale: float = 1.0, + action_bias: Sequence[float] = (0.0, 0.0, 0.0), +) -> np.ndarray: + """Convert normalized, physical-omega, or alpha actions to alpha.""" + a = np.asarray(actions, dtype=np.float64) + if action_mode == "alpha": + return a.copy() + if action_mode == "physical": + return a / u0 + if action_mode == "normalized": + bias = np.asarray(action_bias, dtype=np.float64) + if bias.shape != (3,): + raise ValueError("action_bias must have shape (3,)") + return a * float(action_scale) + bias + raise ValueError("action_mode must be 'normalized', 'physical', or 'alpha'") + + +def build_batch_dataset( + sensors: np.ndarray, + forces: np.ndarray, + actions: np.ndarray, + feat_keys: Sequence[str], + *, + mu: float, + dt_c: float, + alignment: str = HISTORICAL_ALIGNMENT, + action_mode: str = "physical", + action_scale: float = 1.0, + action_bias: Sequence[float] = (0.0, 0.0, 0.0), + target_forces: Optional[np.ndarray] = None, + illusion: bool = False, + u0: float = 0.01, + d: float = 20.0, + rho: float = 1.0, + include_mu: Optional[bool] = None, + include_cos_sin: bool = False, + add_bias: bool = False, + warmup: int = 2, + sample_segment: str = "all", + transient_count: int = 50, + strict: bool = True, +) -> BatchDataset: + """Build an aligned Stage 2/3 dataset from a controlled trajectory. + + ``historical_post_state_same_action`` reproduces the legacy pairing + ``post_state[i] -> action[i]`` with action history ``i-1, i-2``. + ``causal_post_state_to_next_action`` pairs ``post_state[i] -> action[i+1]`` + and therefore uses the causally available history ``i, i-1``. + """ + if alignment not in ALIGNMENTS: + raise ValueError("unknown alignment {!r}; expected one of {}".format(alignment, ALIGNMENTS)) + if dt_c <= 0: + raise ValueError("dt_c must be positive") + if warmup < 0: + raise ValueError("warmup must be non-negative") + if sample_segment not in {"all", "transient", "steady"}: + raise ValueError("sample_segment must be 'all', 'transient', or 'steady'") + if transient_count < 0: + raise ValueError("transient_count must be non-negative") + + s, f, a_raw, tf = validate_controlled_trajectory( + sensors, forces, actions, target_forces, illusion=illusion + ) + alpha = actions_to_alpha( + a_raw, action_mode=action_mode, u0=u0, + action_scale=action_scale, action_bias=action_bias, + ) + T = s.shape[0] + a1 = np.zeros((T, 3), dtype=np.float64) + a2 = np.zeros((T, 3), dtype=np.float64) + if alignment == HISTORICAL_ALIGNMENT: + a1[1:] = alpha[:-1] + a2[2:] = alpha[:-2] + state_indices = np.arange(T, dtype=np.int64) + target_indices = state_indices.copy() + else: + a1[:] = alpha + a2[1:] = alpha[:-1] + state_indices = np.arange(max(T - 1, 0), dtype=np.int64) + target_indices = state_indices + 1 + + dim = compute_dimensionless(s, f, u0=u0, d=d, rho=rho) + features = compute_features( + dim, a1, a2, mu, alpha_mode=True, + include_mu=(any(key.startswith("mu") for key in feat_keys) if include_mu is None else include_mu), + include_cos_sin=include_cos_sin, dt_c=dt_c, u0=u0, + target_forces=tf, rho=rho, sensors_raw=s, forces_raw=f, + ) + full_X = build_feature_matrix(features, list(feat_keys), add_bias=add_bias, strict=strict) + valid = state_indices >= warmup + if sample_segment == "transient": + valid &= state_indices < transient_count + elif sample_segment == "steady": + valid &= state_indices >= transient_count + candidate = state_indices[valid] + target_candidate = target_indices[valid] + X = full_X[candidate] + Y = alpha[target_candidate] + kept = candidate + dropped = np.setdiff1d(np.arange(T, dtype=np.int64), kept, assume_unique=True) + metadata = { + "alignment": alignment, + "action_mode": action_mode, + "feature_keys": list(feat_keys), + "add_bias": bool(add_bias), + "strict": bool(strict), + "warmup": int(warmup), + "sample_segment": sample_segment, + "transient_count": int(transient_count), + "sample_segments": { + "transient": [int(warmup), int(min(transient_count, T))], + "steady": [int(max(warmup, transient_count)), int(T)], + }, + "state_indices": kept.copy(), + "target_indices": target_candidate.copy(), + "history_policy": "drop_warmup_zero_initialized", + "illusion": bool(illusion), + "dt_c": float(dt_c), + } + return BatchDataset(X, Y, kept, dropped, metadata, features) + + +def build_batch_dataset_from_mapping( + data: Mapping[str, np.ndarray], feat_keys: Sequence[str], **kwargs: Any +) -> BatchDataset: + """Build from a loaded legacy NPZ/mapping while preserving validation.""" + required = [key for key in ("sensors", "forces", "actions") if key not in data] + if required: + raise KeyError("controlled trajectory missing required array(s): {}".format(", ".join(required))) + return build_batch_dataset( + data["sensors"], data["forces"], data["actions"], feat_keys, + target_forces=data["target_forces"] if "target_forces" in data else None, + **kwargs + ) diff --git a/src/SR_analysis/utils/feature_builder.py b/src/SR_analysis/utils/feature_builder.py index 8713f50..f7f1dc8 100644 --- a/src/SR_analysis/utils/feature_builder.py +++ b/src/SR_analysis/utils/feature_builder.py @@ -11,6 +11,8 @@ from typing import Dict, List, Optional, Tuple import numpy as np +from .g_operator import apply_G_alpha + # -- Physical constants ------------------------------------------------------ U0 = 0.01 # inlet velocity (lattice units) @@ -28,15 +30,17 @@ def compute_dimensionless( ) -> Dict[str, np.ndarray]: """Convert raw lattice CFD data to dimensionless quantities. - Sensor order: [s0_ux,s0_uy, s1_ux,s1_uy, s2_ux,s2_uy] - where s0=top(y=+2L0), s1=mid(y=0), s2=bottom(y=-2L0) - Force order: [front_fx,front_fy, bottom_fx,bottom_fy, top_fx,top_fy] + Native sensor order is ``[upper_ux, upper_uy, front_ux, front_uy, + lower_ux, lower_uy]``. The historical feature aliases are intentionally + preserved: ``T=upper``, ``C=front``, and ``B=lower``. - Returns: - u_hat_B, u_hat_C, u_hat_T: nondim streamwise velocity (bottom/centre/top) - v_hat_B, v_hat_C, v_hat_T: nondim crosswise velocity - Cd_F, Cd_T, Cd_B: drag coefficient per cylinder - Cl_F, Cl_T, Cl_B: lift coefficient per cylinder + Native force order is ``[front_fx, front_fy, upper_fx, upper_fy, + lower_fx, lower_fy]`` because LegacyCelerisLab force slots follow object + insertion order. Historical coefficient aliases remain ``F=front``, + ``T=upper``, and ``B=lower``. + + Returns dimensionless velocity and force-coefficient arrays under those + historical ``T/C/B`` and ``F/T/B`` keys. """ s = np.asarray(sensors, dtype=np.float64) f = np.asarray(forces, dtype=np.float64) @@ -52,20 +56,15 @@ def compute_dimensionless( "v_hat_B": s[:, 5] / u0, "Cd_F": 2.0 * f[:, 0] / (rho * u0**2 * d), "Cl_F": 2.0 * f[:, 1] / (rho * u0**2 * d), - "Cd_B": 2.0 * f[:, 2] / (rho * u0**2 * d), - "Cl_B": 2.0 * f[:, 3] / (rho * u0**2 * d), - "Cd_T": 2.0 * f[:, 4] / (rho * u0**2 * d), - "Cl_T": 2.0 * f[:, 5] / (rho * u0**2 * d), + "Cd_T": 2.0 * f[:, 2] / (rho * u0**2 * d), + "Cl_T": 2.0 * f[:, 3] / (rho * u0**2 * d), + "Cd_B": 2.0 * f[:, 4] / (rho * u0**2 * d), + "Cl_B": 2.0 * f[:, 5] / (rho * u0**2 * d), } # -- G operator (corrected) -------------------------------------------------- -def apply_G_alpha(alpha: np.ndarray) -> np.ndarray: - """Apply mirror G to action: [aF, aT, aB] -> [-aF, -aB, -aT].""" - return np.array([-alpha[0], -alpha[2], -alpha[1]], dtype=alpha.dtype) - - def apply_G_x(dim: Dict[str, np.ndarray], a_prev: np.ndarray, a_prev2: np.ndarray) -> Tuple[Dict, np.ndarray, np.ndarray]: @@ -86,6 +85,28 @@ def apply_G_x(dim: Dict[str, np.ndarray], # -- Feature key definitions ------------------------------------------------- +RAW_COMPLETE_KEYS = [ + "u_hat_T", "v_hat_T", "u_hat_C", "v_hat_C", "u_hat_B", "v_hat_B", + "Cd_F", "Cl_F", "Cd_T", "Cl_T", "Cd_B", "Cl_B", +] + +SYMMETRY_KEYS = [ + "u_s", "u_a", "u_c", "v_s", "v_a", "v_c", + "Cd_F", "Cd_rear_s", "Cd_rear_a", "Cd_tot", + "Cl_F", "Cl_rear_s", "Cl_rear_a", "Cl_tot", +] + +PHYSICS_REDUCED_KEYS = [ + "u_m", "u_a", "u_c", "v_a", + "Cd_tot", "Cd_rear", "Cl_tot", "Cl_diff", +] + +FEATURE_SET_KEYS = { + "raw_complete": tuple(RAW_COMPLETE_KEYS), + "symmetry": tuple(SYMMETRY_KEYS), + "physics_reduced": tuple(PHYSICS_REDUCED_KEYS), +} + # Original feature set (includes sin_ua/cos_ua) CORE_FEAT_KEYS = [ "u_m", "u_a", "u_c", @@ -238,19 +259,27 @@ def compute_features( a = actions_prev.astype(np.float64) / u0 a2 = actions_prev2.astype(np.float64) / u0 - sym = {} + sym = {key: np.asarray(value, dtype=np.float64).copy() for key, value in dim.items()} - # Sensor combinations (nondim) + # Complete symmetric/antisymmetric coordinates. Under G, u_a/v_s/v_c, + # Cd_rear_a, Cl_F/Cl_rear_s/Cl_tot are odd; the complementary coordinates + # are even. + sym["u_s"] = (u_T + u_B) / 2.0 sym["u_m"] = (u_B + u_C + u_T) / 3.0 sym["u_a"] = (u_T - u_B) / 2.0 sym["u_c"] = u_C.copy() + sym["v_s"] = (v_T + v_B) / 2.0 sym["v_a"] = (v_T - v_B) / 2.0 + sym["v_c"] = v_C.copy() - # Force combinations (dimensionless Cd/Cl) sym["Cd_tot"] = Cd_F + Cd_T + Cd_B sym["Cd_rear"] = Cd_T + Cd_B + sym["Cd_rear_s"] = (Cd_T + Cd_B) / 2.0 + sym["Cd_rear_a"] = (Cd_T - Cd_B) / 2.0 sym["Cl_tot"] = Cl_F + Cl_T + Cl_B sym["Cl_diff"] = Cl_T - Cl_B + sym["Cl_rear_s"] = (Cl_T + Cl_B) / 2.0 + sym["Cl_rear_a"] = (Cl_T - Cl_B) / 2.0 # Phase (optional, may obscure linear structure) if include_cos_sin: @@ -295,9 +324,12 @@ def compute_features( if sensors_raw is not None and forces_raw is not None: sr = np.asarray(sensors_raw, dtype=np.float64) fr = np.asarray(forces_raw, dtype=np.float64) - # Lag-1 observations (shift by 1, pad first with current) - s_lag1 = np.zeros_like(sr) - f_lag1 = np.zeros_like(fr) + # Lag-1 observations: first-step history is the current observation. + # This makes first-step derivatives zero and matches online initialization. + s_lag1 = np.empty_like(sr) + f_lag1 = np.empty_like(fr) + s_lag1[0] = sr[0] + f_lag1[0] = fr[0] s_lag1[1:] = sr[:-1] f_lag1[1:] = fr[:-1] # Compute dim for lag-1 @@ -346,7 +378,8 @@ def compute_features( # Illusion error-state dynamics if target_forces is not None: tf = np.asarray(target_forces, dtype=np.float64) - tf_lag1 = np.zeros_like(tf) + tf_lag1 = np.empty_like(tf) + tf_lag1[0] = tf[0] tf_lag1[1:] = tf[:-1] tCd_1 = 2.0 * tf_lag1[:, 0] / (rho * u0**2 * D_CYL) tCl_1 = 2.0 * tf_lag1[:, 1] / (rho * u0**2 * D_CYL) @@ -362,18 +395,30 @@ def build_feature_matrix( sym: Dict[str, np.ndarray], feat_keys: List[str], add_bias: bool = True, + strict: bool = True, ) -> np.ndarray: - """Build feature matrix (T, N) from symbol dict.""" + """Build a feature matrix, failing on missing features by default. + + Set ``strict=False`` to retain the historical missing-key-as-zero behavior. + """ + if not feat_keys: + raise ValueError("feat_keys must contain at least one feature") + missing = [key for key in feat_keys if key not in sym] + if strict and missing: + raise KeyError("missing required feature(s): {}".format(", ".join(missing))) + + available = next((np.asarray(sym[key]) for key in feat_keys if key in sym), None) + if available is None: + available = np.asarray(sym.get("u_m", np.ones(1))) + T = available.shape[0] cols = [] if add_bias: - cols.append(np.ones(sym[feat_keys[0]].shape[0], dtype=np.float64)) - for k in feat_keys: - if k in sym: - cols.append(np.asarray(sym[k], dtype=np.float64)) - else: - # Missing key -> zero - T = sym.get("u_m", np.ones(1)).shape[0] - cols.append(np.zeros(T, dtype=np.float64)) + cols.append(np.ones(T, dtype=np.float64)) + for key in feat_keys: + col = np.asarray(sym[key], dtype=np.float64) if key in sym else np.zeros(T, dtype=np.float64) + if col.ndim != 1 or col.shape[0] != T: + raise ValueError("feature {!r} must have shape ({},), got {}".format(key, T, col.shape)) + cols.append(col) return np.column_stack(cols) diff --git a/src/SR_analysis/utils/feature_state.py b/src/SR_analysis/utils/feature_state.py new file mode 100644 index 0000000..c4077fc --- /dev/null +++ b/src/SR_analysis/utils/feature_state.py @@ -0,0 +1,171 @@ +"""Stateful online feature construction shared by SR Stage 2 and Stage 3.""" +from __future__ import annotations + +from dataclasses import dataclass +from typing import Dict, Optional, Sequence, Tuple + +import numpy as np + +from .data_contracts import actions_to_alpha +from .feature_builder import build_feature_matrix, compute_dimensionless, compute_features + + +@dataclass +class FeatureState: + """History required for one-step feature construction. + + The first step uses current sensors/forces/target as observation history, + making lag features equal current features and their derivatives zero. + Missing action history is initialized to zero alpha unless explicit + previous actions are supplied. + """ + + previous_sensors: Optional[np.ndarray] = None + previous_forces: Optional[np.ndarray] = None + previous_target_force: Optional[np.ndarray] = None + previous_action: Optional[np.ndarray] = None + previous_action2: Optional[np.ndarray] = None + step_index: int = 0 + + def reset(self) -> None: + self.previous_sensors = None + self.previous_forces = None + self.previous_target_force = None + self.previous_action = None + self.previous_action2 = None + self.step_index = 0 + + +class StatefulFeatureBuilder: + """Generate online features with exactly the batch ``compute_features`` semantics.""" + + def __init__( + self, + *, + mu: float, + dt_c: float, + u0: float = 0.01, + d: float = 20.0, + rho: float = 1.0, + action_mode: str = "physical", + action_scale: float = 1.0, + action_bias: Sequence[float] = (0.0, 0.0, 0.0), + include_mu: bool = True, + include_cos_sin: bool = True, + require_target: bool = False, + state: Optional[FeatureState] = None, + ) -> None: + if dt_c <= 0: + raise ValueError("dt_c must be positive") + self.mu = float(mu) + self.dt_c = float(dt_c) + self.u0 = float(u0) + self.d = float(d) + self.rho = float(rho) + self.action_mode = action_mode + self.action_scale = float(action_scale) + self.action_bias = tuple(action_bias) + self.include_mu = bool(include_mu) + self.include_cos_sin = bool(include_cos_sin) + self.require_target = bool(require_target) + self.state = state if state is not None else FeatureState() + + @staticmethod + def _row(name: str, value: np.ndarray, columns: int) -> np.ndarray: + row = np.asarray(value, dtype=np.float64) + if row.shape != (columns,): + raise ValueError("{} must have shape ({},), got {}".format(name, columns, row.shape)) + return row + + def _alpha(self, action: np.ndarray) -> np.ndarray: + row = self._row("action", action, 3).reshape(1, 3) + return actions_to_alpha( + row, action_mode=self.action_mode, u0=self.u0, + action_scale=self.action_scale, action_bias=self.action_bias, + )[0] + + def step( + self, + sensors: np.ndarray, + forces: np.ndarray, + *, + previous_action: Optional[np.ndarray] = None, + previous_action2: Optional[np.ndarray] = None, + target_force: Optional[np.ndarray] = None, + previous_target_force: Optional[np.ndarray] = None, + feat_keys: Optional[Sequence[str]] = None, + add_bias: bool = False, + strict: bool = True, + ) -> Tuple[Dict[str, np.ndarray], Optional[np.ndarray]]: + """Consume current post-state and return scalar feature dict/vector. + + ``previous_action`` means the action immediately preceding the current + state (the historical ``a_lag1``). If omitted, stored history is used. + The current action is not consumed here; call ``observe_action`` after + selecting/applying it, or pass explicit history on every call. + """ + s = self._row("sensors", sensors, 6) + f = self._row("forces", forces, 6) + if self.require_target and target_force is None: + raise ValueError("target_force is required for illusion features") + tf = None if target_force is None else self._row("target_force", target_force, 2) + + p_action = self.state.previous_action if previous_action is None else self._alpha(previous_action) + p_action2 = self.state.previous_action2 if previous_action2 is None else self._alpha(previous_action2) + a1 = np.zeros(3) if p_action is None else np.asarray(p_action, dtype=np.float64) + a2 = np.zeros(3) if p_action2 is None else np.asarray(p_action2, dtype=np.float64) + + ps = self.state.previous_sensors + pf = self.state.previous_forces + if ps is None or pf is None: + ps, pf = s, f + ptf = self.state.previous_target_force if previous_target_force is None else self._row( + "previous_target_force", previous_target_force, 2 + ) + if tf is not None and ptf is None: + ptf = tf + + sensors_raw = np.vstack([ps, s]) + forces_raw = np.vstack([pf, f]) + dim = compute_dimensionless(s.reshape(1, 6), f.reshape(1, 6), u0=self.u0, d=self.d, rho=self.rho) + target_rows = None if tf is None else np.vstack([ptf, tf]) + feature_arrays = compute_features( + dim, a1.reshape(1, 3), a2.reshape(1, 3), self.mu, + alpha_mode=True, include_mu=self.include_mu, + include_cos_sin=self.include_cos_sin, dt_c=self.dt_c, u0=self.u0, + target_forces=None if target_rows is None else target_rows[-1:], rho=self.rho, + sensors_raw=sensors_raw, forces_raw=forces_raw, + ) + + # compute_features needs both target rows to derive target-error history. + if target_rows is not None: + dim_pair = compute_dimensionless(sensors_raw, forces_raw, u0=self.u0, d=self.d, rho=self.rho) + pair = compute_features( + dim_pair, np.vstack([a2, a1]), np.vstack([np.zeros(3), a2]), self.mu, + alpha_mode=True, include_mu=self.include_mu, + include_cos_sin=self.include_cos_sin, dt_c=self.dt_c, u0=self.u0, + target_forces=target_rows, rho=self.rho, + sensors_raw=sensors_raw, forces_raw=forces_raw, + ) + for key in ("Cd_err_lag1", "Cl_err_lag1", "dCd_err_dt", "dCl_err_dt"): + feature_arrays[key] = pair[key][-1:] + + scalar_features = {key: np.asarray(value)[-1] for key, value in feature_arrays.items()} + vector = None + if feat_keys is not None: + vector = build_feature_matrix(feature_arrays, list(feat_keys), add_bias=add_bias, strict=strict)[-1] + + self.state.previous_sensors = s.copy() + self.state.previous_forces = f.copy() + self.state.previous_target_force = None if tf is None else tf.copy() + self.state.step_index += 1 + return scalar_features, vector + + def observe_action(self, action: np.ndarray) -> None: + """Advance stored action history after an action is selected/applied.""" + alpha = self._alpha(action) + self.state.previous_action2 = None if self.state.previous_action is None else self.state.previous_action.copy() + self.state.previous_action = alpha + + def reset(self) -> None: + self.state.reset() diff --git a/src/SR_analysis/utils/formula_schema.py b/src/SR_analysis/utils/formula_schema.py new file mode 100644 index 0000000..5f048e7 --- /dev/null +++ b/src/SR_analysis/utils/formula_schema.py @@ -0,0 +1,421 @@ +"""Versioned SR formula loading, evaluation, and validation provenance.""" +from __future__ import annotations + +import ast +import json +from copy import deepcopy +from numbers import Real +from pathlib import Path +from typing import Any, Dict, Mapping, Optional, Sequence, Tuple, Union + +import numpy as np +import sympy + +from .provenance import hash_file, hash_json, sha256_text + +FORMULA_SCHEMA_VERSION = "1.0" +VALIDATION_SCHEMA_VERSION = "1.0" + +FormulaSource = Union[str, Path, Mapping[str, Any]] + + +def _read_formula(source: FormulaSource) -> Tuple[Dict[str, Any], Optional[Path]]: + if isinstance(source, Mapping): + return deepcopy(dict(source)), None + path = Path(source) + with path.open("r", encoding="utf-8") as stream: + value = json.load(stream) + if not isinstance(value, dict): + raise ValueError("formula JSON must contain an object") + return value, path + + +def expression_hash(expression: str) -> str: + """Hash an expression after trimming inconsequential outer whitespace.""" + if not isinstance(expression, str) or not expression.strip(): + raise ValueError("expression must be a non-empty string") + return sha256_text(expression.strip()) + + +def _sympy_expression(expression: str, feature_names: Sequence[str]) -> sympy.Expr: + if not isinstance(expression, str) or not expression.strip(): + raise ValueError("expression must be a non-empty string") + _validate_expression_syntax(expression, feature_names) + symbols = {name: sympy.Symbol(name) for name in feature_names} + parsed = sympy.sympify(expression, locals=symbols) + unknown = sorted(str(symbol) for symbol in parsed.free_symbols if str(symbol) not in symbols) + if unknown: + raise ValueError(f"expression references undeclared features: {unknown}") + return parsed + + +def normalize_symbolic_expression(expression: str, feature_names: Sequence[str]) -> str: + """Return a deterministic expanded SymPy representation of an expression.""" + return sympy.sstr(sympy.expand(_sympy_expression(expression, feature_names)), order="lex") + + +def decompose_additive_terms(expression: str, feature_names: Sequence[str]) -> Tuple[str, ...]: + """Return deterministic top-level terms from the normalized expression.""" + normalized = _sympy_expression( + normalize_symbolic_expression(expression, feature_names), feature_names + ) + return tuple(sympy.sstr(term, order="lex") for term in normalized.as_ordered_terms()) + + +def _parent_source_hash(source: FormulaSource, loaded: Mapping[str, Any]) -> str: + if isinstance(source, Mapping) and isinstance(source.get("source_hash"), str): + return str(source["source_hash"]) + return str(loaded["source_hash"]) + + +def _term_variant( + formula_source: FormulaSource, + term_identity: str, + *, + variant_type: str, + scale: Real, +) -> Dict[str, Any]: + if isinstance(scale, bool) or not isinstance(scale, Real) or not np.isfinite(float(scale)): + raise ValueError("scale must be a finite real number") + parent = load_formula(formula_source) + deployment = parent.get("deployment_expression") + if deployment is None: + raise ValueError("formula variants require a symbolic deployment expression") + feature_names = parent["feature_names"] + terms = decompose_additive_terms(deployment, feature_names) + if term_identity not in terms: + raise ValueError(f"term identity is not present in deployment expression: {term_identity!r}") + + normalized = _sympy_expression( + normalize_symbolic_expression(deployment, feature_names), feature_names + ) + selected = _sympy_expression(term_identity, feature_names) + scaled = float(scale) + variant_expression = normalize_symbolic_expression( + sympy.sstr(normalized - selected + sympy.Float(scaled) * selected, order="lex"), + feature_names, + ) + + variant = deepcopy(parent) + variant.pop("source_path", None) + variant.pop("source_hash", None) + variant["deployment_expression"] = variant_expression + variant["deployment_expression_hash"] = expression_hash(variant_expression) + variant["parent_source_hash"] = _parent_source_hash(formula_source, parent) + variant["parent_deployment_expression_hash"] = parent["deployment_expression_hash"] + variant["variant_metadata"] = { + "type": variant_type, + "term_identity": term_identity, + "scale": scaled, + } + return load_formula(variant) + + +def build_term_deletion_variant( + formula_source: FormulaSource, term_identity: str +) -> Dict[str, Any]: + """Build an immutable deployment variant with one additive term removed.""" + return _term_variant( + formula_source, term_identity, variant_type="term_deletion", scale=0.0 + ) + + +def build_coefficient_scaling_variant( + formula_source: FormulaSource, term_identity: str, scale: Real +) -> Dict[str, Any]: + """Build an immutable deployment variant with one additive term scaled.""" + return _term_variant( + formula_source, term_identity, variant_type="coefficient_scaling", scale=scale + ) + + +def load_formula(source: FormulaSource) -> Dict[str, Any]: + """Load either a legacy formula or the versioned schema into one shape. + + Legacy aliases are retained while canonical fields are added, allowing old + consumers and provenance-aware consumers to share the same loaded object. + """ + formula, path = _read_formula(source) + raw_source_hash = hash_file(path) if path is not None else hash_json(formula) + legacy = "schema_version" not in formula + + features = formula.get("feature_names", formula.get("feature_keys")) + if not isinstance(features, list) or not all(isinstance(item, str) for item in features): + raise ValueError("formula requires string feature_names or feature_keys") + + fitted = formula.get("fitted_expression") + if fitted is None: + fitted = formula.get("best_sympy", formula.get("expression")) + deployment = formula.get("deployment_expression", fitted) + + model_type = formula.get("model_type", formula.get("schema_type", "symbolic")) + if fitted is None and model_type != "linear": + raise ValueError("symbolic formula requires an expression") + if fitted is not None and (not isinstance(fitted, str) or not fitted.strip()): + raise ValueError("fitted_expression must be a non-empty string") + if deployment is not None and (not isinstance(deployment, str) or not deployment.strip()): + raise ValueError("deployment_expression must be a non-empty string") + + formula["schema_version"] = str(formula.get("schema_version", "legacy")) + formula["feature_names"] = list(features) + formula["fitted_expression"] = fitted + formula["deployment_expression"] = deployment + formula["model_type"] = model_type + formula["fit_score"] = formula.get("fit_score", formula.get("best_score")) + formula["legacy"] = legacy + if fitted is not None: + expected = expression_hash(fitted) + if formula.get("fitted_expression_hash") not in (None, expected): + raise ValueError("fitted_expression_hash does not match expression") + formula["fitted_expression_hash"] = expected + if deployment is not None: + expected = expression_hash(deployment) + if formula.get("deployment_expression_hash") not in (None, expected): + raise ValueError("deployment_expression_hash does not match expression") + formula["deployment_expression_hash"] = expected + formula["source_path"] = str(path) if path is not None else None + formula["source_hash"] = raw_source_hash + return formula + + +def build_formula_artifact( + *, + artifact_id: str, + run_id: str, + role: str, + anchor: str, + training_scenes: Sequence[str], + feature_names: Sequence[str], + fitted_expression: str, + deployment_expression: str, + output: Mapping[str, Any], + feature_metadata: Mapping[str, Any], + alignment_metadata: Mapping[str, Any], + dt_c_metadata: Mapping[str, Any], + g_metadata: Mapping[str, Any], + fit_provenance: Mapping[str, Any], + pysr_provenance: Mapping[str, Any], + data_provenance: Mapping[str, Any], + **extra: Any, +) -> Dict[str, Any]: + """Construct a complete symbolic-formula artifact with expression hashes.""" + required_strings = { + "artifact_id": artifact_id, + "run_id": run_id, + "role": role, + "anchor": anchor, + } + for name, value in required_strings.items(): + if not isinstance(value, str) or not value.strip(): + raise ValueError(f"{name} must be a non-empty string") + if not training_scenes or not all(isinstance(item, str) and item for item in training_scenes): + raise ValueError("training_scenes must contain at least one scene") + if not feature_names or not all(isinstance(item, str) and item for item in feature_names): + raise ValueError("feature_names must contain at least one feature") + + artifact: Dict[str, Any] = { + "schema_version": FORMULA_SCHEMA_VERSION, + **required_strings, + "training_scenes": list(training_scenes), + "feature_names": list(feature_names), + "model_type": "symbolic", + "fitted_expression": fitted_expression.strip(), + "deployment_expression": deployment_expression.strip(), + "fitted_expression_hash": expression_hash(fitted_expression), + "deployment_expression_hash": expression_hash(deployment_expression), + "output": dict(output), + "feature_metadata": dict(feature_metadata), + "alignment_metadata": dict(alignment_metadata), + "dt_c_metadata": dict(dt_c_metadata), + "g_metadata": dict(g_metadata), + "provenance": { + "fit": dict(fit_provenance), + "pysr": dict(pysr_provenance), + "data": dict(data_provenance), + }, + } + artifact.update(extra) + load_formula(artifact) + return artifact + + +def _feature_columns( + feature_values: Union[Mapping[str, Any], np.ndarray, Sequence[Sequence[float]]], + feature_names: Sequence[str], +) -> Tuple[Dict[str, np.ndarray], Tuple[int, ...]]: + if isinstance(feature_values, Mapping): + missing = [name for name in feature_names if name not in feature_values] + if missing: + raise KeyError(f"missing formula features: {missing}") + raw_columns = [np.asarray(feature_values[name]) for name in feature_names] + broadcast = np.broadcast_arrays(*raw_columns) if raw_columns else [] + columns = {name: broadcast[index] for index, name in enumerate(feature_names)} + shape = broadcast[0].shape if broadcast else () + return columns, shape + matrix = np.asarray(feature_values) + if matrix.ndim == 0 or matrix.shape[-1] != len(feature_names): + raise ValueError("feature matrix final dimension must match feature_names") + return {name: matrix[..., index] for index, name in enumerate(feature_names)}, matrix.shape[:-1] + + +_ALLOWED_EXPRESSION_FUNCTIONS = {"sin", "cos", "tan", "exp", "log", "sqrt", "Abs", "abs"} +_ALLOWED_AST_NODES = ( + ast.Expression, + ast.BinOp, + ast.UnaryOp, + ast.Add, + ast.Sub, + ast.Mult, + ast.Div, + ast.Pow, + ast.Mod, + ast.USub, + ast.UAdd, + ast.Name, + ast.Load, + ast.Constant, + ast.Call, +) + + +def _validate_expression_syntax(expression: str, feature_names: Sequence[str]) -> None: + try: + tree = ast.parse(expression, mode="eval") + except SyntaxError as exc: + raise ValueError("invalid symbolic expression") from exc + allowed_names = set(feature_names) | _ALLOWED_EXPRESSION_FUNCTIONS + for node in ast.walk(tree): + if not isinstance(node, _ALLOWED_AST_NODES): + raise ValueError(f"unsupported expression syntax: {type(node).__name__}") + if isinstance(node, ast.Name) and node.id not in allowed_names: + raise ValueError(f"expression references undeclared name: {node.id}") + if isinstance(node, ast.Call): + if not isinstance(node.func, ast.Name) or node.func.id not in _ALLOWED_EXPRESSION_FUNCTIONS: + raise ValueError("expression calls an unsupported function") + if node.keywords: + raise ValueError("expression function keywords are unsupported") + + +def formula_safety_report( + formula_source: FormulaSource, + feature_ranges: Mapping[str, Sequence[float]], + *, + expression_kind: str = "deployment", + grid_size: int = 9, + output_range: Optional[Sequence[float]] = None, +) -> Dict[str, Any]: + """Statically probe a formula over declared feature ranges for deployment safety.""" + formula = load_formula(formula_source) + if grid_size < 2: + raise ValueError("grid_size must be at least two") + missing = [name for name in formula["feature_names"] if name not in feature_ranges] + if missing: + raise ValueError(f"missing feature ranges: {missing}") + probes: Dict[str, np.ndarray] = {} + for name in formula["feature_names"]: + bounds = np.asarray(feature_ranges[name], dtype=float) + if bounds.shape != (2,) or not np.all(np.isfinite(bounds)) or bounds[0] > bounds[1]: + raise ValueError(f"invalid finite range for feature {name!r}") + probes[name] = np.linspace(bounds[0], bounds[1], grid_size) + with np.errstate(all="ignore"): + values = np.asarray(evaluate_formula(formula, probes, expression_kind=expression_kind), dtype=float) + finite = bool(np.all(np.isfinite(values))) + observed = None if not finite or values.size == 0 else [float(values.min()), float(values.max())] + within_range = True + expected = None + if output_range is not None: + bounds = np.asarray(output_range, dtype=float) + if bounds.shape != (2,) or not np.all(np.isfinite(bounds)) or bounds[0] > bounds[1]: + raise ValueError("output_range must be finite ordered bounds") + expected = bounds.tolist() + within_range = finite and bool(np.all((values >= bounds[0]) & (values <= bounds[1]))) + return { + "safe": finite and within_range, + "finite": finite, + "within_output_range": within_range, + "observed_range": observed, + "required_output_range": expected, + "grid_size": int(grid_size), + } + + +def evaluate_formula( + formula_source: FormulaSource, + feature_values: Union[Mapping[str, Any], np.ndarray, Sequence[Sequence[float]]], + *, + expression_kind: str = "deployment", +) -> np.ndarray: + """Evaluate symbolic formulas first; coefficients require explicit linear type.""" + formula = load_formula(formula_source) + feature_names = formula["feature_names"] + columns, output_shape = _feature_columns(feature_values, feature_names) + expression_key = f"{expression_kind}_expression" + expression = formula.get(expression_key) + + if expression is not None: + _validate_expression_syntax(expression, feature_names) + symbols = {name: sympy.Symbol(name) for name in feature_names} + parsed = sympy.sympify(expression, locals=symbols) + unknown = sorted(str(symbol) for symbol in parsed.free_symbols if str(symbol) not in symbols) + if unknown: + raise ValueError(f"expression references undeclared features: {unknown}") + function = sympy.lambdify([symbols[name] for name in feature_names], parsed, modules="numpy") + result = np.asarray(function(*(columns[name] for name in feature_names)), dtype=float) + if result.shape == () and output_shape: + result = np.full(output_shape, float(result), dtype=float) + return result + + if formula.get("model_type") != "linear": + raise ValueError("formula has no symbolic expression and is not explicit linear schema") + coefficients = formula.get("coef", formula.get("coefficients")) + if coefficients is None: + raise ValueError("explicit linear formula requires coef or coefficients") + coefficient_array = np.asarray(coefficients, dtype=float) + if coefficient_array.shape != (len(feature_names),): + raise ValueError("linear coefficient count must match feature_names") + matrix = np.stack([np.broadcast_to(columns[name], output_shape) for name in feature_names], axis=-1) + intercept = formula.get("intercept", 0.0) + return np.asarray(matrix @ coefficient_array + float(intercept), dtype=float) + + +def build_validation_record( + *, + formula: FormulaSource, + metric_version: str, + scene: str, + mode: str, + si: bool, + n_steps: int, + full_metrics: Mapping[str, Any], + tail_metrics: Mapping[str, Any], + per_channel_metrics: Mapping[str, Any], + action_range: Mapping[str, Any], + telemetry: Mapping[str, Any], + provenance: Mapping[str, Any], + **extra: Any, +) -> Dict[str, Any]: + """Build a validation record tied to exact formula and metric semantics.""" + loaded = load_formula(formula) + if not metric_version or not scene or not mode or n_steps < 0: + raise ValueError("metric_version, scene, mode, and non-negative n_steps are required") + record: Dict[str, Any] = { + "schema_version": VALIDATION_SCHEMA_VERSION, + "formula_hash": loaded["source_hash"], + "formula_artifact_id": loaded.get("artifact_id"), + "metric_version": metric_version, + "scene": scene, + "mode": mode, + "si": bool(si), + "n_steps": int(n_steps), + "metrics": { + "full": dict(full_metrics), + "tail": dict(tail_metrics), + "per_channel": dict(per_channel_metrics), + "action_range": dict(action_range), + }, + "telemetry": dict(telemetry), + "provenance": dict(provenance), + } + record.update(extra) + record["record_hash"] = hash_json(record) + return record diff --git a/src/SR_analysis/utils/g_operator.py b/src/SR_analysis/utils/g_operator.py index 0a2f956..adfa486 100644 --- a/src/SR_analysis/utils/g_operator.py +++ b/src/SR_analysis/utils/g_operator.py @@ -9,50 +9,47 @@ from typing import Any, Dict, Optional, Tuple import numpy as np -from .feature_builder import compute_dimensionless as _compute_dimless + +def _require_last_dim(values: np.ndarray, size: int, name: str) -> np.ndarray: + array = np.asarray(values) + if array.ndim == 0 or array.shape[-1] != size: + raise ValueError(f"{name} must have last dimension {size}, got {array.shape}") + return array def apply_G_alpha(alpha: np.ndarray) -> np.ndarray: - """Apply mirror G to action: [aF, aT, aB] -> [-aF, -aB, -aT].""" - return np.array([-alpha[0], -alpha[2], -alpha[1]], dtype=alpha.dtype) + """Mirror native legacy action [..., front, upper, lower].""" + action = _require_last_dim(alpha, 3, "action") + return np.stack((-action[..., 0], -action[..., 2], -action[..., 1]), axis=-1) + + +def apply_G_target_force(target_force: np.ndarray) -> np.ndarray: + """Mirror target cylinder force [..., fx, fy] (drag even, lift odd).""" + force = _require_last_dim(target_force, 2, "target_force") + return np.stack((force[..., 0], -force[..., 1]), axis=-1) + + +def apply_G_raw12(raw: np.ndarray) -> np.ndarray: + """Mirror native raw [..., sensors(upper/center/lower), forces(front/upper/lower)].""" + values = _require_last_dim(raw, 12, "raw") + return np.stack( + ( + values[..., 4], -values[..., 5], + values[..., 2], -values[..., 3], + values[..., 0], -values[..., 1], + values[..., 6], -values[..., 7], + values[..., 10], -values[..., 11], + values[..., 8], -values[..., 9], + ), + axis=-1, + ) def apply_G_raw(obs_slice: np.ndarray, a_prev: np.ndarray, a_prev2: np.ndarray) -> Tuple[np.ndarray, np.ndarray, np.ndarray]: - """Apply G to raw obs slice [sensor(6)+force(6)] and action arrays. - - Parameters - ---------- - obs_slice : (12,) raw obs [s0_ux,uy, s1_ux,uy, s2_ux,uy, f0_fx,fy, f1_fx,fy, f2_fx,fy] - a_prev : (3,) physical omega at t-1 - a_prev2 : (3,) physical omega at t-2 - - Returns - ------- - G_obs : (12,) transformed obs slice - G_a_prev : (3,) transformed a_prev - G_a_prev2 : (3,) transformed a_prev2 - """ - G_obs = np.zeros(12, dtype=np.float64) - # sensors: swap top(0,1) <-> bottom(4,5), negate v - G_obs[0] = obs_slice[4] - G_obs[1] = -obs_slice[5] - G_obs[2] = obs_slice[2] - G_obs[3] = -obs_slice[3] - G_obs[4] = obs_slice[0] - G_obs[5] = -obs_slice[1] - # forces: swap bottom(2,3) <-> top(4,5), negate fy - G_obs[6] = obs_slice[6] - G_obs[7] = -obs_slice[7] - G_obs[8] = obs_slice[10] - G_obs[9] = -obs_slice[11] - G_obs[10] = obs_slice[8] - G_obs[11] = -obs_slice[9] - - G_a_prev = np.array([-a_prev[0], -a_prev[2], -a_prev[1]], dtype=np.float64) - G_a_prev2 = np.array([-a_prev2[0], -a_prev2[2], -a_prev2[1]], dtype=np.float64) - return G_obs, G_a_prev, G_a_prev2 + """Compatibility wrapper applying canonical G to raw data and two actions.""" + return apply_G_raw12(obs_slice), apply_G_alpha(a_prev), apply_G_alpha(a_prev2) def check_equivariance( diff --git a/src/SR_analysis/utils/harmonics.py b/src/SR_analysis/utils/harmonics.py index 9011d46..9fdfc0c 100644 --- a/src/SR_analysis/utils/harmonics.py +++ b/src/SR_analysis/utils/harmonics.py @@ -9,23 +9,58 @@ from __future__ import annotations import numpy as np -def gen_target_states_at(t: int, harmonics: list) -> np.ndarray: - """Reconstruct target forces at step t from FFT harmonics. - - Args: - t: current step index (0-based). - harmonics: list of dicts from analyze_harmonics(), one per channel. - Each dict has keys: 'dc' (float), 'amps' (list[float]), - 'freqs' (list[float]), 'phases' (list[float]). - - Returns: - ndarray of shape (D,) with reconstructed values, where D = len(harmonics). - """ - D = len(harmonics) - result = np.zeros(D, dtype=np.float32) - for d, h in enumerate(harmonics): - val = h["dc"] - for amp, freq, phase in zip(h["amps"], h["freqs"], h["phases"]): - val += amp * np.cos(2 * np.pi * freq * t + phase) - result[d] = float(val) +def analyze_harmonics(states: np.ndarray, n_harmonics: int = 5) -> list[dict]: + """Extract dominant FFT harmonics independently for each channel.""" + states = np.asarray(states) + if states.ndim != 2 or states.shape[0] < 2: + raise ValueError("states must have shape (samples, channels) with at least 2 samples") + count, channels = states.shape + result = [] + for channel in range(channels): + fft = np.fft.rfft(states[:, channel]) + frequencies = np.fft.rfftfreq(count, d=1.0) + amplitudes = 2.0 * np.abs(fft) / count + indices = np.argsort(amplitudes[1:])[::-1][:n_harmonics] + 1 + result.append({ + "dc": float(np.real(fft[0]) / count), + "amps": amplitudes[indices].tolist(), + "freqs": frequencies[indices].tolist(), + "phases": np.angle(fft)[indices].tolist(), + }) return result + + +def harmonics_document(harmonics: list[dict], channel_names: list[str], *, schema_version: str) -> dict: + """Wrap harmonics with an explicit schema while retaining list-loader support.""" + if len(harmonics) != len(channel_names): + raise ValueError("channel_names length must match harmonics") + return {"schema_version": schema_version, "channel_names": list(channel_names), "harmonics": harmonics} + + +def _channels(harmonics: list | dict) -> list: + if isinstance(harmonics, dict): + try: + harmonics = harmonics["harmonics"] + except KeyError as exc: + raise ValueError("harmonics document is missing 'harmonics'") from exc + if not isinstance(harmonics, list): + raise TypeError("harmonics must be a legacy list or a schema document") + return harmonics + + +def gen_target_states_at(t: int | np.ndarray, harmonics: list | dict) -> np.ndarray: + """Reconstruct channels at one or more phase indices. + + Both historical bare lists and v2 documents containing ``harmonics`` are + accepted. A scalar phase returns ``(channels,)``; an array returns + ``(phases, channels)``. + """ + channels = _channels(harmonics) + phases = np.atleast_1d(np.asarray(t, dtype=np.float64)) + result = np.zeros((phases.size, len(channels)), dtype=np.float32) + for index, harmonic in enumerate(channels): + values = np.full(phases.shape, float(harmonic["dc"]), dtype=np.float64) + for amplitude, frequency, phase in zip(harmonic["amps"], harmonic["freqs"], harmonic["phases"]): + values += amplitude * np.cos(2 * np.pi * frequency * phases + phase) + result[:, index] = values + return result[0] if np.asarray(t).ndim == 0 else result diff --git a/src/SR_analysis/utils/metrics.py b/src/SR_analysis/utils/metrics.py new file mode 100644 index 0000000..ea9119a --- /dev/null +++ b/src/SR_analysis/utils/metrics.py @@ -0,0 +1,52 @@ +"""Versioned similarity metrics shared by validation and data export.""" +from __future__ import annotations + +from typing import Any + +import numpy as np + +LEGACY_DTW_VERSION = "legacy_dtw_v1_abs_n_unclipped" + + +def legacy_cycle_similarity( + target: np.ndarray, + state: np.ndarray, + conv_len: int, + *, + lag_channel: int = 1, +) -> dict[str, Any]: + """Compare one target reference cycle with the final controlled cycle.""" + from SR_analysis.utils.cfd_interface import calc_dtw_sim, calc_lag + + target_array = np.asarray(target, dtype=np.float64) + state_array = np.asarray(state, dtype=np.float64) + if target_array.ndim != 2 or target_array.shape[1] != 6: + raise ValueError(f"legacy metric target must have shape (n, 6), got {target_array.shape}") + if state_array.ndim != 2 or state_array.shape[1] != 6: + raise ValueError(f"legacy metric state must have shape (n, 6), got {state_array.shape}") + if conv_len <= 0: + raise ValueError(f"conv_len must be positive, got {conv_len}") + if not 0 <= lag_channel < 6: + raise ValueError(f"lag_channel must be in [0, 5], got {lag_channel}") + if len(target_array) < 2 * conv_len or len(state_array) < conv_len: + raise ValueError( + f"legacy metric requires target >= {2 * conv_len} and state >= {conv_len} samples" + ) + + target_window = target_array[conv_len : 2 * conv_len, lag_channel] + state_window = state_array[-conv_len:, lag_channel] + lag = calc_lag(target_window, state_window) + scores = [ + float( + calc_dtw_sim( + np.roll(target_array[:, index], -lag)[conv_len : 2 * conv_len], + state_array[-conv_len:, index], + ) + ) + for index in range(6) + ] + return { + "similarity": float(np.mean(scores)), + "per_channel": {str(index): score for index, score in enumerate(scores)}, + "lag": int(lag), + } diff --git a/src/SR_analysis/utils/provenance.py b/src/SR_analysis/utils/provenance.py new file mode 100644 index 0000000..a8bb93d --- /dev/null +++ b/src/SR_analysis/utils/provenance.py @@ -0,0 +1,84 @@ +"""Deterministic hashing and durable JSON helpers for SR artifacts.""" +from __future__ import annotations + +import hashlib +import json +import os +import tempfile +from pathlib import Path +from typing import Any, Mapping, Union + +PathLike = Union[str, os.PathLike] + + +def safe_path(base_dir: PathLike, relative_path: PathLike) -> Path: + """Resolve a relative artifact path and ensure it remains below ``base_dir``.""" + base = Path(base_dir).expanduser().resolve() + candidate_input = Path(relative_path) + if candidate_input.is_absolute(): + raise ValueError("artifact path must be relative to base_dir") + candidate = (base / candidate_input).resolve() + try: + candidate.relative_to(base) + except ValueError as exc: + raise ValueError("artifact path escapes base_dir") from exc + return candidate + + +def canonical_json_bytes(value: Any) -> bytes: + """Serialize JSON data deterministically for content addressing.""" + return json.dumps( + value, + sort_keys=True, + separators=(",", ":"), + ensure_ascii=False, + allow_nan=False, + ).encode("utf-8") + + +def sha256_bytes(data: bytes) -> str: + return hashlib.sha256(data).hexdigest() + + +def sha256_text(text: str) -> str: + if not isinstance(text, str): + raise TypeError("text must be a string") + return sha256_bytes(text.encode("utf-8")) + + +def hash_json(value: Any) -> str: + return sha256_bytes(canonical_json_bytes(value)) + + +def hash_file(path: PathLike, chunk_size: int = 1024 * 1024) -> str: + digest = hashlib.sha256() + with Path(path).open("rb") as stream: + for chunk in iter(lambda: stream.read(chunk_size), b""): + digest.update(chunk) + return digest.hexdigest() + + +def atomic_write_json(path: PathLike, value: Mapping[str, Any]) -> Path: + """Atomically replace a JSON file, including an fsync of file contents.""" + destination = Path(path) + destination.parent.mkdir(parents=True, exist_ok=True) + descriptor, temporary_name = tempfile.mkstemp( + prefix=f".{destination.name}.", suffix=".tmp", dir=str(destination.parent) + ) + temporary = Path(temporary_name) + try: + with os.fdopen(descriptor, "wb") as stream: + stream.write(canonical_json_bytes(value) + b"\n") + stream.flush() + os.fsync(stream.fileno()) + os.replace(str(temporary), str(destination)) + except BaseException: + temporary.unlink(missing_ok=True) + raise + return destination + + +def atomic_write_json_below( + base_dir: PathLike, relative_path: PathLike, value: Mapping[str, Any] +) -> Path: + return atomic_write_json(safe_path(base_dir, relative_path), value) diff --git a/src/SR_analysis/utils/symmetry_dataset.py b/src/SR_analysis/utils/symmetry_dataset.py new file mode 100644 index 0000000..0039353 --- /dev/null +++ b/src/SR_analysis/utils/symmetry_dataset.py @@ -0,0 +1,49 @@ +"""Raw-state G transformations and empirical policy symmetry diagnostics.""" +from __future__ import annotations + +from typing import Any, Mapping, Optional, Sequence + +import numpy as np + +from .data_contracts import BatchDataset, build_batch_dataset +from .g_operator import apply_G_alpha, apply_G_raw12, apply_G_target_force + + +def build_mirrored_batch_dataset( + sensors: np.ndarray, + forces: np.ndarray, + actions: np.ndarray, + feat_keys: Sequence[str], + *, + target_forces: Optional[np.ndarray] = None, + **kwargs: Any, +) -> BatchDataset: + """Apply G to raw physical state/actions, then rebuild derived features.""" + raw = np.column_stack((np.asarray(sensors), np.asarray(forces))) + mirrored = apply_G_raw12(raw) + mirrored_target = None if target_forces is None else apply_G_target_force(target_forces) + return build_batch_dataset( + mirrored[:, :6], mirrored[:, 6:], apply_G_alpha(actions), feat_keys, + target_forces=mirrored_target, **kwargs, + ) + + +def empirical_equivariance_defect( + actions: np.ndarray, + mirrored_policy_actions: np.ndarray, +) -> Mapping[str, Any]: + """Compare policy actions at Gx against the exact expected G(action(x)).""" + expected = apply_G_alpha(actions) + observed = np.asarray(mirrored_policy_actions, dtype=np.float64) + if observed.shape != expected.shape: + raise ValueError(f"mirrored actions have shape {observed.shape}; expected {expected.shape}") + residual = observed - expected + scale = np.ptp(np.asarray(actions, dtype=np.float64), axis=0) + rmse = np.sqrt(np.mean(residual**2, axis=0)) + return { + "channels": ["front", "upper", "lower"], + "rmse": rmse.tolist(), + "range_normalized_rmse": (rmse / np.where(scale > 1e-12, scale, 1.0)).tolist(), + "max_abs_error": np.max(np.abs(residual), axis=0).tolist(), + "n_samples": int(len(observed)), + } diff --git a/tests/test_stage_3_validate.py b/tests/test_stage_3_validate.py new file mode 100644 index 0000000..a792cce --- /dev/null +++ b/tests/test_stage_3_validate.py @@ -0,0 +1,209 @@ +import json +from pathlib import Path + +import numpy as np +import pytest + +from SR_analysis import stage_3_validate as stage3 + + +def formula(path: Path, *, role: str, anchor: str | None = None, expression: str = "0") -> Path: + feature_names = ["u_a"] if "u_a" in expression else [] + value = { + "schema_version": "1.0", + "model_type": "symbolic", + "feature_names": feature_names, + "fitted_expression": expression, + "deployment_expression": expression, + "role": role, + "parity": "odd" if role == "front" else None, + "anchor": anchor, + } + path.write_text(json.dumps(value), encoding="utf-8") + return path + + +def formula_pair(tmp_path: Path, front_expression: str = "0", rear_expression: str = "1") -> stage3.FormulaPair: + front = formula(tmp_path / "front.json", role="front", expression=front_expression) + rear = formula(tmp_path / "rear.json", role="rear_shared", anchor="upper", expression=rear_expression) + return stage3.load_formula_pair(front, rear) + + +def karman_cfg() -> dict: + return { + "scene_id": "karman", + "sample_interval": 800, + "u0": 0.01, + "mu": 0.02, + "conv_len": 2, + "action_layout": stage3.ACTION_ORDER, + "policy_init_action": (0.0, -4.0, 4.0), + "action_scale": 8.0, + "action_bias": (0.0, -4.0, 4.0), + "s_dim": 12, + } + + +def make_plan(tmp_path: Path, *, mode: str = "pysr", pair=None, n_steps: int = 4) -> stage3.ValidationPlan: + root = tmp_path / "runs" + stem = "karman_re100__pysr__f-abc__si-800" + return stage3.ValidationPlan( + "karman_re100", karman_cfg(), mode, n_steps, "run", root / "run" / "validations", + root / "run" / "telemetry", stem, root / "run" / "validations" / f"{stem}.json", + root / "run" / "telemetry" / f"{stem}.npz", pair, None, None, None, None, None, + ) + + +class FakeEnvironment: + def __init__(self, *, nonfinite: bool = False): + self.current_raw = np.arange(12, dtype=float) + self.target_sensors = np.tile(np.arange(6, dtype=float), (8, 1)) + self.nonfinite = nonfinite + self.closed = False + + def step(self, omega_native): + self.current_raw = self.current_raw + 0.01 + if self.nonfinite: + self.current_raw[0] = np.nan + return self.current_raw.copy() + + def close(self): + self.closed = True + + +def test_formula_roles_hash_and_independent_filename(tmp_path, monkeypatch): + pair = formula_pair(tmp_path) + monkeypatch.setattr(stage3, "get_scene", lambda scene: karman_cfg()) + plan = stage3.prepare_plan( + scene="karman_re100", mode="pysr", n_steps=4, run_id="r1", + output_root=tmp_path / "out", formula_pair=pair, + ) + assert pair.front["deployment_expression_hash"] + assert pair.rear["deployment_expression_hash"] + assert "karman_re100__pysr__f-" in plan.validation_path.name + assert "__si-800.json" in plan.validation_path.name + assert plan.validation_path.parent.name == "validations" + assert plan.telemetry_path.parent.name == "telemetry" + + +def test_legacy_top_formula_is_recorded(tmp_path): + front = tmp_path / "front.json" + rear = tmp_path / "top.json" + front.write_text(json.dumps({"channel": "front", "feature_keys": [], "best_sympy": "0"}), encoding="utf-8") + rear.write_text(json.dumps({"channel": "top", "feature_keys": [], "best_sympy": "0"}), encoding="utf-8") + pair = stage3.load_formula_pair(front, rear) + assert "channel=top" in pair.compatibility["rear"]["legacy_role_mapping"] + + +def test_missing_or_wrong_formula_fails(tmp_path): + front = formula(tmp_path / "front.json", role="front") + wrong = formula(tmp_path / "wrong.json", role="rear_shared", anchor="lower") + with pytest.raises(ValueError, match="anchor='upper'"): + stage3.load_formula_pair(front, wrong) + with pytest.raises(FileNotFoundError): + stage3.load_formula_pair(front, tmp_path / "missing.json") + + +def test_symbolic_policy_uses_exact_front_odd_projection_and_rear_mapping(tmp_path, monkeypatch): + pair = formula_pair(tmp_path, rear_expression="u_a") + policy = stage3.SymbolicPolicy(pair, karman_cfg(), None) + values = iter([8.0, 2.0, 3.0, 5.0]) + monkeypatch.setattr(policy, "_evaluate", lambda formula, features: next(values)) + omega, _, _ = policy.action(np.arange(12, dtype=float), 0) + np.testing.assert_allclose(omega / 0.01, [3.0, 3.0, -5.0]) + + +def test_metric_has_single_exact_named_shape(monkeypatch): + monkeypatch.setattr( + stage3, + "_legacy_metric", + lambda target, sensors, conv_len: { + "similarity": 0.75, + "per_channel": {str(index): float(index) for index in range(6)}, + "lag": -2, + }, + ) + metrics = stage3.compute_versioned_metrics(np.zeros((4, 6)), np.zeros((4, 6)), 2) + assert set(metrics) == { + "metric_version", + "adapter", + "legacy_reference_cycle_vs_last_recorded_cycle", + } + exact = metrics["legacy_reference_cycle_vs_last_recorded_cycle"] + assert set(exact) == {"similarity", "per_channel", "lag"} + assert len(exact["per_channel"]) == 6 + assert exact["lag"] == -2 + + +def test_ppo_model_loads_once_for_rollout(tmp_path): + plan = make_plan(tmp_path, mode="ppo") + model_path = tmp_path / "model.zip" + model_path.write_bytes(b"model") + norm = {"force_norm_fact": 1.0, "sens_deviation": [0.0] * 6, "sens_norm_fact": [1.0] * 6} + plan = stage3.ValidationPlan(**{**plan.__dict__, "model_path": model_path, "norm": norm}) + calls = [] + + class Model: + def predict(self, observation, deterministic=True): + return np.zeros(3, dtype=np.float32), None + + def loader(*args, **kwargs): + calls.append((args, kwargs)) + return Model() + + environment = FakeEnvironment() + policy = stage3.build_policy(plan, model_loader=loader) + stage3.run_rollout(plan, environment, policy) + assert len(calls) == 1 + assert calls[0][1]["device"] == "cpu" + + +def test_nonfinite_rollout_raises(tmp_path): + plan = make_plan(tmp_path, mode="uncontrolled") + with pytest.raises(stage3.RolloutFailure, match="raw observation"): + stage3.run_rollout(plan, FakeEnvironment(nonfinite=True), stage3.UncontrolledPolicy()) + + +def test_execute_propagates_factory_exception(tmp_path): + plan = make_plan(tmp_path, mode="uncontrolled") + + def broken(plan, device): + raise RuntimeError("mock flow failed") + + with pytest.raises(RuntimeError, match="mock flow failed"): + stage3.execute_plan(plan, 0, environment_factory=broken) + + +def test_dry_run_requires_no_cuda_and_creates_no_artifacts(tmp_path, monkeypatch, capsys): + cfg = karman_cfg() + monkeypatch.setattr(stage3, "get_scene", lambda scene: cfg) + pair = formula_pair(tmp_path) + code = stage3.main([ + "--scene", "karman_re100", "--mode", "pysr", "--formula-front", str(pair.front_path), + "--formula-rear", str(pair.rear_path), "--run-id", "dry", "--output-root", str(tmp_path / "out"), + "--dry-run", + ]) + assert code == 0 + assert "validation=" in capsys.readouterr().out + assert not (tmp_path / "out").exists() + + +def test_vortex_is_explicit_round1_error(tmp_path, monkeypatch): + cfg = {**karman_cfg(), "scene_id": "vortex"} + monkeypatch.setattr(stage3, "get_scene", lambda scene: cfg) + with pytest.raises(NotImplementedError, match="not supported in round1"): + stage3.prepare_plan( + scene="vortex_lamb", mode="uncontrolled", n_steps=4, run_id="r", + output_root=tmp_path, formula_pair=None, + ) + + +def test_batch_failure_returns_nonzero(tmp_path, monkeypatch): + cfg = karman_cfg() + monkeypatch.setattr(stage3, "get_scene", lambda scene: cfg) + monkeypatch.setattr(stage3, "execute_plan", lambda plan, device: (_ for _ in ()).throw(RuntimeError("boom"))) + code = stage3.main([ + "--group", "a,b", "--mode", "uncontrolled", "--run-id", "r", + "--output-root", str(tmp_path), "--steps", "4", + ]) + assert code != 0